[
  {
    "path": "README.md",
    "content": "# Stanford Course CS224n - Natural Language Processing with Deep Learning (Winter 2021)\n\nThese are my solutions to the assignments of [CS224n (Natural Language Processing with Deep Learning)](http://web.stanford.edu/class/cs224n/) offered by Stanford University in Winter 2021.\nThere are five assignments in total. Here is a brief description of each one of these assignments:\n\n## Assignment 1. Word Embeddings\n\n- This assignment [[notebook](a1/exploring_word_vectors_solved.ipynb), [PDF](a1/CS224nAssignment1.pdf)] has two parts which deal with representing words with dense vectors (i.e., word vectors or word embeddings). Word vectors are often used as a fundamental component for downstream NLP tasks, e.g. question answering, text generation, translation, etc., so it is important to build some intuitions as to their strengths and weaknesses. Here, you will explore two types of word vectors: those derived from co-occurrence matrices (which uses SVD), and those derived via GloVe (based on maximum-likelihood training in ML). \n\n### 1. Count-Based Word Vectors\n\n- Many word vector implementations are driven by the idea that similar words, i.e., (near) synonyms, will be used in similar contexts. As a result, similar words will often be spoken or written along with a shared subset of words, i.e., contexts. By examining these contexts, we can try to develop embeddings for our words. With this intuition in mind, many \"old school\" approaches to constructing word vectors relied on word counts. Here we elaborate upon one of those strategies, co-occurrence matrices.\n- In this part, you will use co-occurence matrices to develop dense vectors for words. A co-occurrence matrix counts how often different terms co-occur in different documents. To derive a co-occurence matrix, we use a window with a fixed size <i>w</i>, and then slide this window over all of the documents. Then, we count how many times two different words <i>v<sub>i</sub></i> and <i>v<sub>j</sub></i> occurs with each other in a window, and put this number in the <i>(i, j)<sup>th</sup></i> entry of the matrix. We then run dimensionality reduction on the co-occurence matrix using singular value decomposition. We then select the top <i>r</i> components after the decomposition and thus, derive <i>r</i>-dimensional embeddings for words.\n\n<p align=\"center\">\n<img src=\"figures/svd.jpg\" alt=\"drawing\" width=\"400\"/>\n</p>\n\n### 2. Prediction (or Maximum Likelihood)-Based Word Vectors: Word2Vec\n\n- Prediction-based word vectors (which also utilize the benefit of counts) such as Word2Vec and GloVe have demonstrated better performance compared to co-occurence matrices. In this part, you will explore pretrained GloVe embeddings using the [Gensim](https://radimrehurek.com/gensim/) package. Initially, you'll have to reduce the dimensionality of word vectors using SVD from 300 to 2 to be able to vizualize and analyze these vectors. Next, you'll find the closest word vectors to a given word vector. You'll then get to know words with multiple meanings (polysemous words). You will also experiment with the analogy task, introduced for the first time in the Word2Vec paper [(Mikolov et al. 2013)](https://arxiv.org/pdf/1301.3781.pdf%5D). The task is simple: given words <i>x, y</i>, and <i>z</i>, you have to find a word <i>w</i> such that the following relationship holds: <i>x</i> is to <i>y</i> like <i>z</i> is to <i>w</i>. For example, Rome is to Italy like D.C. is to the United States. You will find that solving this task with Word2Vec vectors is easy and is just a simple addition and subtraction of vectors, which is a nice feature of word embeddings.\n- If you’re feeling adventurous, challenge yourself and try reading [GloVe’s original paper](https://nlp.stanford.edu/pubs/glove.pdf).\n\n<p align=\"center\">\n<img src=\"figures/analogy.jpg\" alt=\"drawing\" width=\"400\"/>\n</p>\n\n## Assignment 2. Understanding and Implementing Word2Vec\n\n- In this [assignment](a2/CS224nAssignment2.pdf), you will get familiar with the Word2Vec algorithm. The key insight behind Word2Vec is that \"a word is known by the company it keeps\". There are two models introduced by the Word2Vec paper based on this idea: (i) the skip-gram model and (ii) the Continuous Bag Of Words (CBOW) model. \n- In this assignment, you'll be implementing the skip-gram model using NumPy. You have to implement the both version of Skip-gram; the first one is with the naive Softmax loss and the second one -- which is much faster -- with the negative sampling loss. Your implementation of the first version is just sanity-checked on a small dataset, but you have to run the second version on the Stanford Sentiment Treebank dataset. \n- It is highly recommend for anyone interested in gaining a deep understanding of Word2Vec to first do the theoretical part of this assignment and only then proceed to the practical part.\n\n<p align=\"center\">\n<img src=\"figures/word2vec.jpg\" alt=\"drawing\" width=\"450\"/>\n</p>\n\n## Assignment 3. Neural Dependency Parsing\n\n- If you have take a compiler course before, you have definitely heard the term \"parsing\". This assignment is about \"dependency parsing\" where you train a model that can specify the dependencies. If you remember \"Shift-Reduce Parser\" from your Compiler class, then you will find the ideas here quite familiar. The only difference is that we shall use a neural network to find the dependencies. In this assignment, you will build a neural dependency parser using PyTorch. \n- In Part 1 of this [assignment](a3/CS224nAssignment3.pdf), you will learn about two general neural network techniques (Adam Optimization and Dropout). In Part 2 of this assignment, you will implement and train a dependency parser using the techniques from Part 1, before analyzing a few erroneous dependency parses. \n- Both the Adam optimizer and Dropout will be used in the neural dependency parser you are going to implement with PyTorch. The parser will do one of the following three moves: 1) Shift 2) Left-arc 3) Right-arc. You can read more about the details of these three moves in the [handout](a3/a3.pdf) of the assignment. What your network should do is to predict one of these moves at every step. For predicting each move, your model needs features which are going to be extracted from the stack and buffer of each stage (you maintain a stack and buffer during parsing, to know what you have already parsed and what is remaining for parsing, respectively). The good news is that the code for extracting features is given to you to help you just focus on the neural network part! There are lots of hints throughout the assignment -- as this is the first assignment in the course where students work with PyTorch -- that walk you through implementing each part. \n\n<p align=\"center\">\n<img src=\"figures/dependency-parsing.jpg\" alt=\"drawing\" width=\"450\"/>\n</p>\n\n## Assignment 4. Seq2Seq Machine Translation Model with Multiplicative Attention\n\n- This [assignment](a4/CS224nAssignment4.pdf) is split into two sections: Neural Machine Translation with RNNs and Analyzing NMT Systems. The first is primarily coding and implementation focused, whereas the second entirely consists of written, analysis questions.\n\n<p align=\"center\">\n<img src=\"figures/nmt.jpg\" alt=\"drawing\" width=\"350\"/>\n</p>\n\n## Assignment 5. Self-Attention, Transformers, and Pretraining\n\n- This [assignment](a5/CS224nAssignment5.pdf) is an investigation into Transformer self-attention building blocks, and the effects of pre- training. It covers mathematical properties of Transformers and self-attention through written questions. Further, you’ll get experience with practical system-building through repurposing an existing codebase. The assignment is split into a written (mathematical) part and a coding part, with its own written questions. Here’s a quick summary:\n  1. Mathematical exploration: What kinds of operations can self-attention easily implement? Why should we use fancier things like multi-headed self-attention? This section will use some mathematical investigations to illuminate a few of the motivations of self-attention and Transformer networks.\n  2. Extending a research codebase: In this portion of the assignment, you’ll get some experience and intuition for a cutting-edge research topic in NLP: teaching NLP models facts about the world through pretraining, and accessing that knowledge through finetuning. You’ll train a Transformer model to attempt to answer simple questions of the form “Where was person [x] born?” – without providing any input text from which to draw the answer. You’ll find that models are able to learn some facts about where people were born through pretraining, and access that information during fine-tuning to answer the questions.\n- Then, you’ll take a harder look at the system you built, and reason about the implications and concerns about relying on such implicit pretrained knowledge.\n\n<p align=\"center\">\n<img src=\"figures/attn.jpg\"/>\n</p>\n\n## Handouts\n\n - [x] Assignment 1: Intro to word vectors [`a1/exploring_word_vectors.ipynb`](a1/exploring_word_vectors.ipynb)\n - [x] Assignment 2: Training Word2Vec [`a2/a2.pdf`](a2/a2.pdf)\n - [x] Assignment 3: Dependency parsing [`a3/a3.pdf`](a3/a3.pdf)\n - [x] Assignment 4: Neural machine translation with seq2seq and attention [`a4/a4.pdf`](a4/a4.pdf)\n - [x] Assignment 5: Neural machine translation with sub-word modeling [`a5/a5.pdf`](a5/a5.pdf)\n - [x] Project: [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/) - Stanford Question Asking Dataset [`project/proposal.pdf`](project/proposal.pdf)\n\n## Prerequisites\n\n- Proficiency in Python.\n  All class assignments will be in Python (using NumPy and PyTorch). If you need to remind yourself of Python, or you're not very familiar with NumPy, attend the Python review session in week 1 (listed in the schedule). If you have a lot of programming experience but in a different language (e.g. C/C++/Matlab/Java/Javascript), you will probably be fine.\n- College Calculus, Linear Algebra (e.g. MATH51, CME100).\n  You should be comfortable taking (multivariable) derivatives and understanding matrix/vector notation and operations.\n- Basic Probability and Statistics (e.g. CS109 or equivalent)\n  You should know basics of probabilities, Gaussian distributions, mean, standard deviation, etc.\n- Foundations of Machine Learning (e.g. CS221 or CS229).\n  We will be formulating cost functions, taking derivatives and performing optimization with gradient descent. If you already have basic machine learning and/or deep learning knowledge, the course will be easier; however it is possible to take CS224n without it. There are many introductions to ML, in webpage, book, and video form. One approachable introduction is Hal Daumé's in-progress \"A Course in Machine Learning\". Reading the first 5 chapters of that book would be good background. Knowing the first 7 chapters would be even better!\n\n## Course Description\n\n- This course was formed in 2017 as a merger of the earlier [CS224n](https://web.stanford.edu/class/archive/cs/cs224n/cs224n.1162) (Natural Language Processing) and [CS224d](http://cs224d.stanford.edu/) (Natural Language Processing with Deep Learning) courses. Below you can find archived websites and student project reports.\n- Natural language processing (NLP) is one of the most important technologies of the information age, and a crucial part of artificial intelligence. Applications of NLP are everywhere because people communicate almost everything in language: web search, advertising, emails, customer service, language translation, medical reports, etc. In recent years, Deep Learning approaches have obtained very high performance across many different NLP tasks, using single end-to-end neural models that do not require traditional, task-specific feature engineering. In this course, students will gain a thorough introduction to cutting-edge research in Deep Learning for NLP. Through lectures, assignments and a final project, students will learn the necessary skills to design, implement, and understand their own neural network models. CS224n uses PyTorch.\n\n## Resources\n\nLecture notes, assignments and other materials can be downloaded from the [course webpage](http://web.stanford.edu/class/cs224n/).\n- Lectures: [YouTube](https://www.youtube.com/watch?v=8rXD5-xhemo&list=PLoROMvodv4rOhcuXMZkNm7j3fVwBBY42z)\n- Schedule: [Stanford CS224n](http://web.stanford.edu/class/cs224n/index.html#schedule)\n- Projects: [Stanford CS224n](http://web.stanford.edu/class/cs224n/project.html)\n\n## Disclaimer\n\nI recognize the hard time people spend on building intuition, understanding new concepts and debugging assignments. The solutions uploaded here are **only for reference**. They are meant to unblock you if you get stuck somewhere. Please do not copy any part of the solutions as-is (the assignments are fairly easy if you read the instructions carefully)."
  },
  {
    "path": "a1/.ipynb_checkpoints/exploring_word_vectors-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# CS224N Assignment 1: Exploring Word Vectors (25 Points)\\n\",\n    \"### <font color='blue'> Due 4:30pm, Tue Jan 19 </font>\\n\",\n    \"\\n\",\n    \"Welcome to CS224N! \\n\",\n    \"\\n\",\n    \"Before you start, make sure you read the README.txt in the same directory as this notebook for important setup information. A lot of code is provided in this notebook, and we highly encourage you to read and understand it as part of the learning :)\\n\",\n    \"\\n\",\n    \"If you aren't super familiar with Python, Numpy, or Matplotlib, we recommend you check out the review session on Friday. The session will be recorded and the material will be made available on our [website](http://web.stanford.edu/class/cs224n/index.html#schedule). The CS231N Python/Numpy [tutorial](https://cs231n.github.io/python-numpy-tutorial/) is also a great resource.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"**Assignment Notes:** Please make sure to save the notebook as you go along. Submission Instructions are located at the bottom of the notebook.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[nltk_data] Downloading package reuters to /Users/Aman/nltk_data...\\n\",\n      \"[nltk_data]   Package reuters is already up-to-date!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# All Import Statements Defined Here\\n\",\n    \"# Note: Do not add to this list.\\n\",\n    \"# ----------------\\n\",\n    \"\\n\",\n    \"import sys\\n\",\n    \"assert sys.version_info[0]==3\\n\",\n    \"assert sys.version_info[1] >= 5\\n\",\n    \"\\n\",\n    \"from gensim.models import KeyedVectors\\n\",\n    \"from gensim.test.utils import datapath\\n\",\n    \"import pprint\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"plt.rcParams['figure.figsize'] = [10, 5]\\n\",\n    \"import nltk\\n\",\n    \"nltk.download('reuters')\\n\",\n    \"from nltk.corpus import reuters\\n\",\n    \"import numpy as np\\n\",\n    \"import random\\n\",\n    \"import scipy as sp\\n\",\n    \"from sklearn.decomposition import TruncatedSVD\\n\",\n    \"from sklearn.decomposition import PCA\\n\",\n    \"\\n\",\n    \"START_TOKEN = '<START>'\\n\",\n    \"END_TOKEN = '<END>'\\n\",\n    \"\\n\",\n    \"np.random.seed(0)\\n\",\n    \"random.seed(0)\\n\",\n    \"# ----------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Word Vectors\\n\",\n    \"\\n\",\n    \"Word Vectors are often used as a fundamental component for downstream NLP tasks, e.g. question answering, text generation, translation, etc., so it is important to build some intuitions as to their strengths and weaknesses. Here, you will explore two types of word vectors: those derived from *co-occurrence matrices*, and those derived via *GloVe*. \\n\",\n    \"\\n\",\n    \"**Note on Terminology:** The terms \\\"word vectors\\\" and \\\"word embeddings\\\" are often used interchangeably. The term \\\"embedding\\\" refers to the fact that we are encoding aspects of a word's meaning in a lower dimensional space. As [Wikipedia](https://en.wikipedia.org/wiki/Word_embedding) states, \\\"*conceptually it involves a mathematical embedding from a space with one dimension per word to a continuous vector space with a much lower dimension*\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1: Count-Based Word Vectors (10 points)\\n\",\n    \"\\n\",\n    \"Most word vector models start from the following idea:\\n\",\n    \"\\n\",\n    \"*You shall know a word by the company it keeps ([Firth, J. R. 1957:11](https://en.wikipedia.org/wiki/John_Rupert_Firth))*\\n\",\n    \"\\n\",\n    \"Many word vector implementations are driven by the idea that similar words, i.e., (near) synonyms, will be used in similar contexts. As a result, similar words will often be spoken or written along with a shared subset of words, i.e., contexts. By examining these contexts, we can try to develop embeddings for our words. With this intuition in mind, many \\\"old school\\\" approaches to constructing word vectors relied on word counts. Here we elaborate upon one of those strategies, *co-occurrence matrices* (for more information, see [here](http://web.stanford.edu/class/cs124/lec/vectorsemantics.video.pdf) or [here](https://medium.com/data-science-group-iitr/word-embedding-2d05d270b285)).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Co-Occurrence\\n\",\n    \"\\n\",\n    \"A co-occurrence matrix counts how often things co-occur in some environment. Given some word $w_i$ occurring in the document, we consider the *context window* surrounding $w_i$. Supposing our fixed window size is $n$, then this is the $n$ preceding and $n$ subsequent words in that document, i.e. words $w_{i-n} \\\\dots w_{i-1}$ and $w_{i+1} \\\\dots w_{i+n}$. We build a *co-occurrence matrix* $M$, which is a symmetric word-by-word matrix in which $M_{ij}$ is the number of times $w_j$ appears inside $w_i$'s window among all documents.\\n\",\n    \"\\n\",\n    \"**Example: Co-Occurrence with Fixed Window of n=1**:\\n\",\n    \"\\n\",\n    \"Document 1: \\\"all that glitters is not gold\\\"\\n\",\n    \"\\n\",\n    \"Document 2: \\\"all is well that ends well\\\"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"|     *    | `<START>` | all | that | glitters | is   | not  | gold  | well | ends | `<END>` |\\n\",\n    \"|----------|-------|-----|------|----------|------|------|-------|------|------|-----|\\n\",\n    \"| `<START>`    | 0     | 2   | 0    | 0        | 0    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| all      | 2     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| that     | 0     | 1   | 0    | 1        | 0    | 0    | 0     | 1    | 1    | 0   |\\n\",\n    \"| glitters | 0     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| is       | 0     | 1   | 0    | 1        | 0    | 1    | 0     | 1    | 0    | 0   |\\n\",\n    \"| not      | 0     | 0   | 0    | 0        | 1    | 0    | 1     | 0    | 0    | 0   |\\n\",\n    \"| gold     | 0     | 0   | 0    | 0        | 0    | 1    | 0     | 0    | 0    | 1   |\\n\",\n    \"| well     | 0     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 1    | 1   |\\n\",\n    \"| ends     | 0     | 0   | 1    | 0        | 0    | 0    | 0     | 1    | 0    | 0   |\\n\",\n    \"| `<END>`      | 0     | 0   | 0    | 0        | 0    | 0    | 1     | 1    | 0    | 0   |\\n\",\n    \"\\n\",\n    \"**Note:** In NLP, we often add `<START>` and `<END>` tokens to represent the beginning and end of sentences, paragraphs or documents. In thise case we imagine `<START>` and `<END>` tokens encapsulating each document, e.g., \\\"`<START>` All that glitters is not gold `<END>`\\\", and include these tokens in our co-occurrence counts.\\n\",\n    \"\\n\",\n    \"The rows (or columns) of this matrix provide one type of word vectors (those based on word-word co-occurrence), but the vectors will be large in general (linear in the number of distinct words in a corpus). Thus, our next step is to run *dimensionality reduction*. In particular, we will run *SVD (Singular Value Decomposition)*, which is a kind of generalized *PCA (Principal Components Analysis)* to select the top $k$ principal components. Here's a visualization of dimensionality reduction with SVD. In this picture our co-occurrence matrix is $A$ with $n$ rows corresponding to $n$ words. We obtain a full matrix decomposition, with the singular values ordered in the diagonal $S$ matrix, and our new, shorter length-$k$ word vectors in $U_k$.\\n\",\n    \"\\n\",\n    \"![Picture of an SVD](imgs/svd.png \\\"SVD\\\")\\n\",\n    \"\\n\",\n    \"This reduced-dimensionality co-occurrence representation preserves semantic relationships between words, e.g. *doctor* and *hospital* will be closer than *doctor* and *dog*. \\n\",\n    \"\\n\",\n    \"**Notes:** If you can barely remember what an eigenvalue is, here's [a slow, friendly introduction to SVD](https://davetang.org/file/Singular_Value_Decomposition_Tutorial.pdf). If you want to learn more thoroughly about PCA or SVD, feel free to check out lectures [7](https://web.stanford.edu/class/cs168/l/l7.pdf), [8](http://theory.stanford.edu/~tim/s15/l/l8.pdf), and [9](https://web.stanford.edu/class/cs168/l/l9.pdf) of CS168. These course notes provide a great high-level treatment of these general purpose algorithms. Though, for the purpose of this class, you only need to know how to extract the k-dimensional embeddings by utilizing pre-programmed implementations of these algorithms from the numpy, scipy, or sklearn python packages. In practice, it is challenging to apply full SVD to large corpora because of the memory needed to perform PCA or SVD. However, if you only want the top $k$ vector components for relatively small $k$ — known as [Truncated SVD](https://en.wikipedia.org/wiki/Singular_value_decomposition#Truncated_SVD) — then there are reasonably scalable techniques to compute those iteratively.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Plotting Co-Occurrence Word Embeddings\\n\",\n    \"\\n\",\n    \"Here, we will be using the Reuters (business and financial news) corpus. If you haven't run the import cell at the top of this page, please run it now (click it and press SHIFT-RETURN). The corpus consists of 10,788 news documents totaling 1.3 million words. These documents span 90 categories and are split into train and test. For more details, please see https://www.nltk.org/book/ch02.html. We provide a `read_corpus` function below that pulls out only articles from the \\\"crude\\\" (i.e. news articles about oil, gas, etc.) category. The function also adds `<START>` and `<END>` tokens to each of the documents, and lowercases words. You do **not** have to perform any other kind of pre-processing.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def read_corpus(category=\\\"crude\\\"):\\n\",\n    \"    \\\"\\\"\\\" Read files from the specified Reuter's category.\\n\",\n    \"        Params:\\n\",\n    \"            category (string): category name\\n\",\n    \"        Return:\\n\",\n    \"            list of lists, with words from each of the processed files\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    files = reuters.fileids(category)\\n\",\n    \"    return [[START_TOKEN] + [w.lower() for w in list(reuters.words(f))] + [END_TOKEN] for f in files]\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's have a look what these documents are like….\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[['<START>', 'japan', 'to', 'revise', 'long', '-', 'term', 'energy', 'demand', 'downwards', 'the',\\n\",\n      \"  'ministry', 'of', 'international', 'trade', 'and', 'industry', '(', 'miti', ')', 'will', 'revise',\\n\",\n      \"  'its', 'long', '-', 'term', 'energy', 'supply', '/', 'demand', 'outlook', 'by', 'august', 'to',\\n\",\n      \"  'meet', 'a', 'forecast', 'downtrend', 'in', 'japanese', 'energy', 'demand', ',', 'ministry',\\n\",\n      \"  'officials', 'said', '.', 'miti', 'is', 'expected', 'to', 'lower', 'the', 'projection', 'for',\\n\",\n      \"  'primary', 'energy', 'supplies', 'in', 'the', 'year', '2000', 'to', '550', 'mln', 'kilolitres',\\n\",\n      \"  '(', 'kl', ')', 'from', '600', 'mln', ',', 'they', 'said', '.', 'the', 'decision', 'follows',\\n\",\n      \"  'the', 'emergence', 'of', 'structural', 'changes', 'in', 'japanese', 'industry', 'following',\\n\",\n      \"  'the', 'rise', 'in', 'the', 'value', 'of', 'the', 'yen', 'and', 'a', 'decline', 'in', 'domestic',\\n\",\n      \"  'electric', 'power', 'demand', '.', 'miti', 'is', 'planning', 'to', 'work', 'out', 'a', 'revised',\\n\",\n      \"  'energy', 'supply', '/', 'demand', 'outlook', 'through', 'deliberations', 'of', 'committee',\\n\",\n      \"  'meetings', 'of', 'the', 'agency', 'of', 'natural', 'resources', 'and', 'energy', ',', 'the',\\n\",\n      \"  'officials', 'said', '.', 'they', 'said', 'miti', 'will', 'also', 'review', 'the', 'breakdown',\\n\",\n      \"  'of', 'energy', 'supply', 'sources', ',', 'including', 'oil', ',', 'nuclear', ',', 'coal', 'and',\\n\",\n      \"  'natural', 'gas', '.', 'nuclear', 'energy', 'provided', 'the', 'bulk', 'of', 'japan', \\\"'\\\", 's',\\n\",\n      \"  'electric', 'power', 'in', 'the', 'fiscal', 'year', 'ended', 'march', '31', ',', 'supplying',\\n\",\n      \"  'an', 'estimated', '27', 'pct', 'on', 'a', 'kilowatt', '/', 'hour', 'basis', ',', 'followed',\\n\",\n      \"  'by', 'oil', '(', '23', 'pct', ')', 'and', 'liquefied', 'natural', 'gas', '(', '21', 'pct', '),',\\n\",\n      \"  'they', 'noted', '.', '<END>'],\\n\",\n      \" ['<START>', 'energy', '/', 'u', '.', 's', '.', 'petrochemical', 'industry', 'cheap', 'oil',\\n\",\n      \"  'feedstocks', ',', 'the', 'weakened', 'u', '.', 's', '.', 'dollar', 'and', 'a', 'plant',\\n\",\n      \"  'utilization', 'rate', 'approaching', '90', 'pct', 'will', 'propel', 'the', 'streamlined', 'u',\\n\",\n      \"  '.', 's', '.', 'petrochemical', 'industry', 'to', 'record', 'profits', 'this', 'year', ',',\\n\",\n      \"  'with', 'growth', 'expected', 'through', 'at', 'least', '1990', ',', 'major', 'company',\\n\",\n      \"  'executives', 'predicted', '.', 'this', 'bullish', 'outlook', 'for', 'chemical', 'manufacturing',\\n\",\n      \"  'and', 'an', 'industrywide', 'move', 'to', 'shed', 'unrelated', 'businesses', 'has', 'prompted',\\n\",\n      \"  'gaf', 'corp', '&', 'lt', ';', 'gaf', '>,', 'privately', '-', 'held', 'cain', 'chemical', 'inc',\\n\",\n      \"  ',', 'and', 'other', 'firms', 'to', 'aggressively', 'seek', 'acquisitions', 'of', 'petrochemical',\\n\",\n      \"  'plants', '.', 'oil', 'companies', 'such', 'as', 'ashland', 'oil', 'inc', '&', 'lt', ';', 'ash',\\n\",\n      \"  '>,', 'the', 'kentucky', '-', 'based', 'oil', 'refiner', 'and', 'marketer', ',', 'are', 'also',\\n\",\n      \"  'shopping', 'for', 'money', '-', 'making', 'petrochemical', 'businesses', 'to', 'buy', '.', '\\\"',\\n\",\n      \"  'i', 'see', 'us', 'poised', 'at', 'the', 'threshold', 'of', 'a', 'golden', 'period', ',\\\"', 'said',\\n\",\n      \"  'paul', 'oreffice', ',', 'chairman', 'of', 'giant', 'dow', 'chemical', 'co', '&', 'lt', ';',\\n\",\n      \"  'dow', '>,', 'adding', ',', '\\\"', 'there', \\\"'\\\", 's', 'no', 'major', 'plant', 'capacity', 'being',\\n\",\n      \"  'added', 'around', 'the', 'world', 'now', '.', 'the', 'whole', 'game', 'is', 'bringing', 'out',\\n\",\n      \"  'new', 'products', 'and', 'improving', 'the', 'old', 'ones', '.\\\"', 'analysts', 'say', 'the',\\n\",\n      \"  'chemical', 'industry', \\\"'\\\", 's', 'biggest', 'customers', ',', 'automobile', 'manufacturers',\\n\",\n      \"  'and', 'home', 'builders', 'that', 'use', 'a', 'lot', 'of', 'paints', 'and', 'plastics', ',',\\n\",\n      \"  'are', 'expected', 'to', 'buy', 'quantities', 'this', 'year', '.', 'u', '.', 's', '.',\\n\",\n      \"  'petrochemical', 'plants', 'are', 'currently', 'operating', 'at', 'about', '90', 'pct',\\n\",\n      \"  'capacity', ',', 'reflecting', 'tighter', 'supply', 'that', 'could', 'hike', 'product', 'prices',\\n\",\n      \"  'by', '30', 'to', '40', 'pct', 'this', 'year', ',', 'said', 'john', 'dosher', ',', 'managing',\\n\",\n      \"  'director', 'of', 'pace', 'consultants', 'inc', 'of', 'houston', '.', 'demand', 'for', 'some',\\n\",\n      \"  'products', 'such', 'as', 'styrene', 'could', 'push', 'profit', 'margins', 'up', 'by', 'as',\\n\",\n      \"  'much', 'as', '300', 'pct', ',', 'he', 'said', '.', 'oreffice', ',', 'speaking', 'at', 'a',\\n\",\n      \"  'meeting', 'of', 'chemical', 'engineers', 'in', 'houston', ',', 'said', 'dow', 'would', 'easily',\\n\",\n      \"  'top', 'the', '741', 'mln', 'dlrs', 'it', 'earned', 'last', 'year', 'and', 'predicted', 'it',\\n\",\n      \"  'would', 'have', 'the', 'best', 'year', 'in', 'its', 'history', '.', 'in', '1985', ',', 'when',\\n\",\n      \"  'oil', 'prices', 'were', 'still', 'above', '25', 'dlrs', 'a', 'barrel', 'and', 'chemical',\\n\",\n      \"  'exports', 'were', 'adversely', 'affected', 'by', 'the', 'strong', 'u', '.', 's', '.', 'dollar',\\n\",\n      \"  ',', 'dow', 'had', 'profits', 'of', '58', 'mln', 'dlrs', '.', '\\\"', 'i', 'believe', 'the',\\n\",\n      \"  'entire', 'chemical', 'industry', 'is', 'headed', 'for', 'a', 'record', 'year', 'or', 'close',\\n\",\n      \"  'to', 'it', ',\\\"', 'oreffice', 'said', '.', 'gaf', 'chairman', 'samuel', 'heyman', 'estimated',\\n\",\n      \"  'that', 'the', 'u', '.', 's', '.', 'chemical', 'industry', 'would', 'report', 'a', '20', 'pct',\\n\",\n      \"  'gain', 'in', 'profits', 'during', '1987', '.', 'last', 'year', ',', 'the', 'domestic',\\n\",\n      \"  'industry', 'earned', 'a', 'total', 'of', '13', 'billion', 'dlrs', ',', 'a', '54', 'pct', 'leap',\\n\",\n      \"  'from', '1985', '.', 'the', 'turn', 'in', 'the', 'fortunes', 'of', 'the', 'once', '-', 'sickly',\\n\",\n      \"  'chemical', 'industry', 'has', 'been', 'brought', 'about', 'by', 'a', 'combination', 'of', 'luck',\\n\",\n      \"  'and', 'planning', ',', 'said', 'pace', \\\"'\\\", 's', 'john', 'dosher', '.', 'dosher', 'said', 'last',\\n\",\n      \"  'year', \\\"'\\\", 's', 'fall', 'in', 'oil', 'prices', 'made', 'feedstocks', 'dramatically', 'cheaper',\\n\",\n      \"  'and', 'at', 'the', 'same', 'time', 'the', 'american', 'dollar', 'was', 'weakening', 'against',\\n\",\n      \"  'foreign', 'currencies', '.', 'that', 'helped', 'boost', 'u', '.', 's', '.', 'chemical',\\n\",\n      \"  'exports', '.', 'also', 'helping', 'to', 'bring', 'supply', 'and', 'demand', 'into', 'balance',\\n\",\n      \"  'has', 'been', 'the', 'gradual', 'market', 'absorption', 'of', 'the', 'extra', 'chemical',\\n\",\n      \"  'manufacturing', 'capacity', 'created', 'by', 'middle', 'eastern', 'oil', 'producers', 'in',\\n\",\n      \"  'the', 'early', '1980s', '.', 'finally', ',', 'virtually', 'all', 'major', 'u', '.', 's', '.',\\n\",\n      \"  'chemical', 'manufacturers', 'have', 'embarked', 'on', 'an', 'extensive', 'corporate',\\n\",\n      \"  'restructuring', 'program', 'to', 'mothball', 'inefficient', 'plants', ',', 'trim', 'the',\\n\",\n      \"  'payroll', 'and', 'eliminate', 'unrelated', 'businesses', '.', 'the', 'restructuring', 'touched',\\n\",\n      \"  'off', 'a', 'flurry', 'of', 'friendly', 'and', 'hostile', 'takeover', 'attempts', '.', 'gaf', ',',\\n\",\n      \"  'which', 'made', 'an', 'unsuccessful', 'attempt', 'in', '1985', 'to', 'acquire', 'union',\\n\",\n      \"  'carbide', 'corp', '&', 'lt', ';', 'uk', '>,', 'recently', 'offered', 'three', 'billion', 'dlrs',\\n\",\n      \"  'for', 'borg', 'warner', 'corp', '&', 'lt', ';', 'bor', '>,', 'a', 'chicago', 'manufacturer',\\n\",\n      \"  'of', 'plastics', 'and', 'chemicals', '.', 'another', 'industry', 'powerhouse', ',', 'w', '.',\\n\",\n      \"  'r', '.', 'grace', '&', 'lt', ';', 'gra', '>', 'has', 'divested', 'its', 'retailing', ',',\\n\",\n      \"  'restaurant', 'and', 'fertilizer', 'businesses', 'to', 'raise', 'cash', 'for', 'chemical',\\n\",\n      \"  'acquisitions', '.', 'but', 'some', 'experts', 'worry', 'that', 'the', 'chemical', 'industry',\\n\",\n      \"  'may', 'be', 'headed', 'for', 'trouble', 'if', 'companies', 'continue', 'turning', 'their',\\n\",\n      \"  'back', 'on', 'the', 'manufacturing', 'of', 'staple', 'petrochemical', 'commodities', ',', 'such',\\n\",\n      \"  'as', 'ethylene', ',', 'in', 'favor', 'of', 'more', 'profitable', 'specialty', 'chemicals',\\n\",\n      \"  'that', 'are', 'custom', '-', 'designed', 'for', 'a', 'small', 'group', 'of', 'buyers', '.', '\\\"',\\n\",\n      \"  'companies', 'like', 'dupont', '&', 'lt', ';', 'dd', '>', 'and', 'monsanto', 'co', '&', 'lt', ';',\\n\",\n      \"  'mtc', '>', 'spent', 'the', 'past', 'two', 'or', 'three', 'years', 'trying', 'to', 'get', 'out',\\n\",\n      \"  'of', 'the', 'commodity', 'chemical', 'business', 'in', 'reaction', 'to', 'how', 'badly', 'the',\\n\",\n      \"  'market', 'had', 'deteriorated', ',\\\"', 'dosher', 'said', '.', '\\\"', 'but', 'i', 'think', 'they',\\n\",\n      \"  'will', 'eventually', 'kill', 'the', 'margins', 'on', 'the', 'profitable', 'chemicals', 'in',\\n\",\n      \"  'the', 'niche', 'market', '.\\\"', 'some', 'top', 'chemical', 'executives', 'share', 'the',\\n\",\n      \"  'concern', '.', '\\\"', 'the', 'challenge', 'for', 'our', 'industry', 'is', 'to', 'keep', 'from',\\n\",\n      \"  'getting', 'carried', 'away', 'and', 'repeating', 'past', 'mistakes', ',\\\"', 'gaf', \\\"'\\\", 's',\\n\",\n      \"  'heyman', 'cautioned', '.', '\\\"', 'the', 'shift', 'from', 'commodity', 'chemicals', 'may', 'be',\\n\",\n      \"  'ill', '-', 'advised', '.', 'specialty', 'businesses', 'do', 'not', 'stay', 'special', 'long',\\n\",\n      \"  '.\\\"', 'houston', '-', 'based', 'cain', 'chemical', ',', 'created', 'this', 'month', 'by', 'the',\\n\",\n      \"  'sterling', 'investment', 'banking', 'group', ',', 'believes', 'it', 'can', 'generate', '700',\\n\",\n      \"  'mln', 'dlrs', 'in', 'annual', 'sales', 'by', 'bucking', 'the', 'industry', 'trend', '.',\\n\",\n      \"  'chairman', 'gordon', 'cain', ',', 'who', 'previously', 'led', 'a', 'leveraged', 'buyout', 'of',\\n\",\n      \"  'dupont', \\\"'\\\", 's', 'conoco', 'inc', \\\"'\\\", 's', 'chemical', 'business', ',', 'has', 'spent', '1',\\n\",\n      \"  '.', '1', 'billion', 'dlrs', 'since', 'january', 'to', 'buy', 'seven', 'petrochemical', 'plants',\\n\",\n      \"  'along', 'the', 'texas', 'gulf', 'coast', '.', 'the', 'plants', 'produce', 'only', 'basic',\\n\",\n      \"  'commodity', 'petrochemicals', 'that', 'are', 'the', 'building', 'blocks', 'of', 'specialty',\\n\",\n      \"  'products', '.', '\\\"', 'this', 'kind', 'of', 'commodity', 'chemical', 'business', 'will', 'never',\\n\",\n      \"  'be', 'a', 'glamorous', ',', 'high', '-', 'margin', 'business', ',\\\"', 'cain', 'said', ',',\\n\",\n      \"  'adding', 'that', 'demand', 'is', 'expected', 'to', 'grow', 'by', 'about', 'three', 'pct',\\n\",\n      \"  'annually', '.', 'garo', 'armen', ',', 'an', 'analyst', 'with', 'dean', 'witter', 'reynolds', ',',\\n\",\n      \"  'said', 'chemical', 'makers', 'have', 'also', 'benefitted', 'by', 'increasing', 'demand', 'for',\\n\",\n      \"  'plastics', 'as', 'prices', 'become', 'more', 'competitive', 'with', 'aluminum', ',', 'wood',\\n\",\n      \"  'and', 'steel', 'products', '.', 'armen', 'estimated', 'the', 'upturn', 'in', 'the', 'chemical',\\n\",\n      \"  'business', 'could', 'last', 'as', 'long', 'as', 'four', 'or', 'five', 'years', ',', 'provided',\\n\",\n      \"  'the', 'u', '.', 's', '.', 'economy', 'continues', 'its', 'modest', 'rate', 'of', 'growth', '.',\\n\",\n      \"  '<END>'],\\n\",\n      \" ['<START>', 'turkey', 'calls', 'for', 'dialogue', 'to', 'solve', 'dispute', 'turkey', 'said',\\n\",\n      \"  'today', 'its', 'disputes', 'with', 'greece', ',', 'including', 'rights', 'on', 'the',\\n\",\n      \"  'continental', 'shelf', 'in', 'the', 'aegean', 'sea', ',', 'should', 'be', 'solved', 'through',\\n\",\n      \"  'negotiations', '.', 'a', 'foreign', 'ministry', 'statement', 'said', 'the', 'latest', 'crisis',\\n\",\n      \"  'between', 'the', 'two', 'nato', 'members', 'stemmed', 'from', 'the', 'continental', 'shelf',\\n\",\n      \"  'dispute', 'and', 'an', 'agreement', 'on', 'this', 'issue', 'would', 'effect', 'the', 'security',\\n\",\n      \"  ',', 'economy', 'and', 'other', 'rights', 'of', 'both', 'countries', '.', '\\\"', 'as', 'the',\\n\",\n      \"  'issue', 'is', 'basicly', 'political', ',', 'a', 'solution', 'can', 'only', 'be', 'found', 'by',\\n\",\n      \"  'bilateral', 'negotiations', ',\\\"', 'the', 'statement', 'said', '.', 'greece', 'has', 'repeatedly',\\n\",\n      \"  'said', 'the', 'issue', 'was', 'legal', 'and', 'could', 'be', 'solved', 'at', 'the',\\n\",\n      \"  'international', 'court', 'of', 'justice', '.', 'the', 'two', 'countries', 'approached', 'armed',\\n\",\n      \"  'confrontation', 'last', 'month', 'after', 'greece', 'announced', 'it', 'planned', 'oil',\\n\",\n      \"  'exploration', 'work', 'in', 'the', 'aegean', 'and', 'turkey', 'said', 'it', 'would', 'also',\\n\",\n      \"  'search', 'for', 'oil', '.', 'a', 'face', '-', 'off', 'was', 'averted', 'when', 'turkey',\\n\",\n      \"  'confined', 'its', 'research', 'to', 'territorrial', 'waters', '.', '\\\"', 'the', 'latest',\\n\",\n      \"  'crises', 'created', 'an', 'historic', 'opportunity', 'to', 'solve', 'the', 'disputes', 'between',\\n\",\n      \"  'the', 'two', 'countries', ',\\\"', 'the', 'foreign', 'ministry', 'statement', 'said', '.', 'turkey',\\n\",\n      \"  \\\"'\\\", 's', 'ambassador', 'in', 'athens', ',', 'nazmi', 'akiman', ',', 'was', 'due', 'to', 'meet',\\n\",\n      \"  'prime', 'minister', 'andreas', 'papandreou', 'today', 'for', 'the', 'greek', 'reply', 'to', 'a',\\n\",\n      \"  'message', 'sent', 'last', 'week', 'by', 'turkish', 'prime', 'minister', 'turgut', 'ozal', '.',\\n\",\n      \"  'the', 'contents', 'of', 'the', 'message', 'were', 'not', 'disclosed', '.', '<END>']]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"reuters_corpus = read_corpus()\\n\",\n    \"pprint.pprint(reuters_corpus[:3], compact=True, width=100)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.1: Implement `distinct_words` [code] (2 points)\\n\",\n    \"\\n\",\n    \"Write a method to work out the distinct words (word types) that occur in the corpus. You can do this with `for` loops, but it's more efficient to do it with Python list comprehensions. In particular, [this](https://coderwall.com/p/rcmaea/flatten-a-list-of-lists-in-one-line-in-python) may be useful to flatten a list of lists. If you're not familiar with Python list comprehensions in general, here's [more information](https://python-3-patterns-idioms-test.readthedocs.io/en/latest/Comprehensions.html).\\n\",\n    \"\\n\",\n    \"Your returned `corpus_words` should be sorted. You can use python's `sorted` function for this.\\n\",\n    \"\\n\",\n    \"You may find it useful to use [Python sets](https://www.w3schools.com/python/python_sets.asp) to remove duplicate words.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def distinct_words(corpus):\\n\",\n    \"    \\\"\\\"\\\" Determine a list of distinct words for the corpus.\\n\",\n    \"        Params:\\n\",\n    \"            corpus (list of list of strings): corpus of documents\\n\",\n    \"        Return:\\n\",\n    \"            corpus_words (list of strings): sorted list of distinct words across the corpus\\n\",\n    \"            num_corpus_words (integer): number of distinct words across the corpus\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    corpus_words = []\\n\",\n    \"    num_corpus_words = -1\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"    corpus_words = {word for doc in corpus for word in doc}\\n\",\n    \"    corpus_words = sorted(list(corpus_words))\\n\",\n    \"    num_corpus_words = len(corpus_words)\\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    return corpus_words, num_corpus_words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Passed All Tests!\\n\",\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this not an exhaustive check for correctness.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"test_corpus_words, num_corpus_words = distinct_words(test_corpus)\\n\",\n    \"\\n\",\n    \"# Correct answers\\n\",\n    \"ans_test_corpus_words = sorted([START_TOKEN, \\\"All\\\", \\\"ends\\\", \\\"that\\\", \\\"gold\\\", \\\"All's\\\", \\\"glitters\\\", \\\"isn't\\\", \\\"well\\\", END_TOKEN])\\n\",\n    \"ans_num_corpus_words = len(ans_test_corpus_words)\\n\",\n    \"\\n\",\n    \"# Test correct number of words\\n\",\n    \"assert(num_corpus_words == ans_num_corpus_words), \\\"Incorrect number of distinct words. Correct: {}. Yours: {}\\\".format(ans_num_corpus_words, num_corpus_words)\\n\",\n    \"\\n\",\n    \"# Test correct words\\n\",\n    \"assert (test_corpus_words == ans_test_corpus_words), \\\"Incorrect corpus_words.\\\\nCorrect: {}\\\\nYours:   {}\\\".format(str(ans_test_corpus_words), str(test_corpus_words))\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.2: Implement `compute_co_occurrence_matrix` [code] (3 points)\\n\",\n    \"\\n\",\n    \"Write a method that constructs a co-occurrence matrix for a certain window-size $n$ (with a default of 4), considering words $n$ before and $n$ after the word in the center of the window. Here, we start to use `numpy (np)` to represent vectors, matrices, and tensors. If you're not familiar with NumPy, there's a NumPy tutorial in the second half of this cs231n [Python NumPy tutorial](http://cs231n.github.io/python-numpy-tutorial/).\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def compute_co_occurrence_matrix(corpus, window_size=4):\\n\",\n    \"    \\\"\\\"\\\" Compute co-occurrence matrix for the given corpus and window_size (default of 4).\\n\",\n    \"    \\n\",\n    \"        Note: Each word in a document should be at the center of a window. Words near edges will have a smaller\\n\",\n    \"              number of co-occurring words.\\n\",\n    \"              \\n\",\n    \"              For example, if we take the document \\\"<START> All that glitters is not gold <END>\\\" with window size of 4,\\n\",\n    \"              \\\"All\\\" will co-occur with \\\"<START>\\\", \\\"that\\\", \\\"glitters\\\", \\\"is\\\", and \\\"not\\\".\\n\",\n    \"    \\n\",\n    \"        Params:\\n\",\n    \"            corpus (list of list of strings): corpus of documents\\n\",\n    \"            window_size (int): size of context window\\n\",\n    \"        Return:\\n\",\n    \"            M (a symmetric numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): \\n\",\n    \"                Co-occurence matrix of word counts. \\n\",\n    \"                The ordering of the words in the rows/columns should be the same as the ordering of the words given by the distinct_words function.\\n\",\n    \"            word2ind (dict): dictionary that maps word to index (i.e. row/column number) for matrix M.\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    words, num_words = distinct_words(corpus)\\n\",\n    \"    M = None\\n\",\n    \"    word2ind = {}\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"    \\n\",\n    \"    # Build the word to index mapping.\\n\",\n    \"    word2ind = {word: i for i, word in enumerate(words)}\\n\",\n    \"    \\n\",\n    \"    # Build the co-occurrence matrix.\\n\",\n    \"    M = np.zeros((num_words, num_words))\\n\",\n    \"    for body in corpus:\\n\",\n    \"        for curr_idx, word in enumerate(body):\\n\",\n    \"            for window_idx in range(-window_size, window_size + 1):\\n\",\n    \"                neighbor_idx = curr_idx + window_idx\\n\",\n    \"                if (neighbor_idx < 0) or (neighbor_idx >= len(body)) or (curr_idx == neighbor_idx):\\n\",\n    \"                    continue\\n\",\n    \"                co_occur_word = body[neighbor_idx]\\n\",\n    \"                (word_idx, co_occur_idx) = (word2ind[word], word2ind[co_occur_word])\\n\",\n    \"                M[word_idx, co_occur_idx] += 1\\n\",\n    \"\\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    return M, word2ind\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Passed All Tests!\\n\",\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus and get student's co-occurrence matrix\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\\n\",\n    \"\\n\",\n    \"# Correct M and word2ind\\n\",\n    \"M_test_ans = np.array( \\n\",\n    \"    [[0., 0., 0., 0., 0., 0., 1., 0., 0., 1.,],\\n\",\n    \"     [0., 0., 1., 1., 0., 0., 0., 0., 0., 0.,],\\n\",\n    \"     [0., 1., 0., 0., 0., 0., 0., 0., 1., 0.,],\\n\",\n    \"     [0., 1., 0., 0., 0., 0., 0., 0., 0., 1.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 0., 0., 0., 1., 1.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 0., 0., 1., 1., 0.,],\\n\",\n    \"     [1., 0., 0., 0., 0., 0., 0., 1., 0., 0.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 1., 1., 0., 0., 0.,],\\n\",\n    \"     [0., 0., 1., 0., 1., 1., 0., 0., 0., 1.,],\\n\",\n    \"     [1., 0., 0., 1., 1., 0., 0., 0., 1., 0.,]]\\n\",\n    \")\\n\",\n    \"ans_test_corpus_words = sorted([START_TOKEN, \\\"All\\\", \\\"ends\\\", \\\"that\\\", \\\"gold\\\", \\\"All's\\\", \\\"glitters\\\", \\\"isn't\\\", \\\"well\\\", END_TOKEN])\\n\",\n    \"word2ind_ans = dict(zip(ans_test_corpus_words, range(len(ans_test_corpus_words))))\\n\",\n    \"\\n\",\n    \"# Test correct word2ind\\n\",\n    \"assert (word2ind_ans == word2ind_test), \\\"Your word2ind is incorrect:\\\\nCorrect: {}\\\\nYours: {}\\\".format(word2ind_ans, word2ind_test)\\n\",\n    \"\\n\",\n    \"# Test correct M shape\\n\",\n    \"assert (M_test.shape == M_test_ans.shape), \\\"M matrix has incorrect shape.\\\\nCorrect: {}\\\\nYours: {}\\\".format(M_test.shape, M_test_ans.shape)\\n\",\n    \"\\n\",\n    \"# Test correct M values\\n\",\n    \"for w1 in word2ind_ans.keys():\\n\",\n    \"    idx1 = word2ind_ans[w1]\\n\",\n    \"    for w2 in word2ind_ans.keys():\\n\",\n    \"        idx2 = word2ind_ans[w2]\\n\",\n    \"        student = M_test[idx1, idx2]\\n\",\n    \"        correct = M_test_ans[idx1, idx2]\\n\",\n    \"        if student != correct:\\n\",\n    \"            print(\\\"Correct M:\\\")\\n\",\n    \"            print(M_test_ans)\\n\",\n    \"            print(\\\"Your M: \\\")\\n\",\n    \"            print(M_test)\\n\",\n    \"            raise AssertionError(\\\"Incorrect count at index ({}, {})=({}, {}) in matrix M. Yours has {} but should have {}.\\\".format(idx1, idx2, w1, w2, student, correct))\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.3: Implement `reduce_to_k_dim` [code] (1 point)\\n\",\n    \"\\n\",\n    \"Construct a method that performs dimensionality reduction on the matrix to produce k-dimensional embeddings. Use SVD to take the top k components and produce a new matrix of k-dimensional embeddings. \\n\",\n    \"\\n\",\n    \"**Note:** All of numpy, scipy, and scikit-learn (`sklearn`) provide *some* implementation of SVD, but only scipy and sklearn provide an implementation of Truncated SVD, and only sklearn provides an efficient randomized algorithm for calculating large-scale Truncated SVD. So please use [sklearn.decomposition.TruncatedSVD](https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def reduce_to_k_dim(M, k=2):\\n\",\n    \"    \\\"\\\"\\\" Reduce a co-occurence count matrix of dimensionality (num_corpus_words, num_corpus_words)\\n\",\n    \"        to a matrix of dimensionality (num_corpus_words, k) using the following SVD function from Scikit-Learn:\\n\",\n    \"            - http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html\\n\",\n    \"    \\n\",\n    \"        Params:\\n\",\n    \"            M (numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): co-occurence matrix of word counts\\n\",\n    \"            k (int): embedding size of each word after dimension reduction\\n\",\n    \"        Return:\\n\",\n    \"            M_reduced (numpy matrix of shape (number of corpus words, k)): matrix of k-dimensioal word embeddings.\\n\",\n    \"                    In terms of the SVD from math class, this actually returns U * S\\n\",\n    \"    \\\"\\\"\\\"    \\n\",\n    \"    n_iters = 10     # Use this parameter in your call to `TruncatedSVD`\\n\",\n    \"    M_reduced = None\\n\",\n    \"    print(\\\"Running Truncated SVD over %i words...\\\" % (M.shape[0]))\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    svd = TruncatedSVD(n_components = k, n_iter = n_iters)\\n\",\n    \"    M_reduced = svd.fit_transform(M) \\n\",\n    \"    # or (instead of the above line)...\\n\",\n    \"    # svd.fit(M)\\n\",\n    \"    # M_reduced = svd.transform(M)\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    print(\\\"Done.\\\")\\n\",\n    \"    return M_reduced\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Running Truncated SVD over 10 words...\\n\",\n      \"Done.\\n\",\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Passed All Tests!\\n\",\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness \\n\",\n    \"# In fact we only check that your M_reduced has the right dimensions.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus and run student code\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\\n\",\n    \"M_test_reduced = reduce_to_k_dim(M_test, k=2)\\n\",\n    \"\\n\",\n    \"# Test proper dimensions\\n\",\n    \"assert (M_test_reduced.shape[0] == 10), \\\"M_reduced has {} rows; should have {}\\\".format(M_test_reduced.shape[0], 10)\\n\",\n    \"assert (M_test_reduced.shape[1] == 2), \\\"M_reduced has {} columns; should have {}\\\".format(M_test_reduced.shape[1], 2)\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.4: Implement `plot_embeddings` [code] (1 point)\\n\",\n    \"\\n\",\n    \"Here you will write a function to plot a set of 2D vectors in 2D space. For graphs, we will use Matplotlib (`plt`).\\n\",\n    \"\\n\",\n    \"For this example, you may find it useful to adapt [this code](http://web.archive.org/web/20190924160434/https://www.pythonmembers.club/2018/05/08/matplotlib-scatter-plot-annotate-set-text-at-label-each-point/). In the future, a good way to make a plot is to look at [the Matplotlib gallery](https://matplotlib.org/gallery/index.html), find a plot that looks somewhat like what you want, and adapt the code they give.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def plot_embeddings(M_reduced, word2ind, words):\\n\",\n    \"    \\\"\\\"\\\" Plot in a scatterplot the embeddings of the words specified in the list \\\"words\\\".\\n\",\n    \"        NOTE: do not plot all the words listed in M_reduced / word2ind.\\n\",\n    \"        Include a label next to each point.\\n\",\n    \"        \\n\",\n    \"        Params:\\n\",\n    \"            M_reduced (numpy matrix of shape (number of unique words in the corpus , 2)): matrix of 2-dimensioal word embeddings\\n\",\n    \"            word2ind (dict): dictionary that maps word to indices for matrix M\\n\",\n    \"            words (list of strings): words whose embeddings we want to visualize\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"\\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"    \\n\",\n    \"    # Get only the rows corresponding the words we want to plot.\\n\",\n    \"    word_idxs = [word2ind[word] for word in words]\\n\",\n    \"    word_vectors = M_reduced[word_idxs]\\n\",\n    \"    # Get 2D coordinates.\\n\",\n    \"    x_coords = [vec[0] for vec in word_vectors]\\n\",\n    \"    y_coords = [vec[1] for vec in word_vectors]\\n\",\n    \"    # Plot the scatter points in 2D.\\n\",\n    \"    for i, word in enumerate(words):\\n\",\n    \"        x = x_coords[i]\\n\",\n    \"        y = y_coords[i]\\n\",\n    \"        plt.scatter(x, y, marker='x', color='red')\\n\",\n    \"        plt.text(x, y, word, fontsize=9)\\n\",\n    \"    plt.show()\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Outputted Plot:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAmIAAAEvCAYAAADmeK3JAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAftUlEQVR4nO3df7BdZX3v8ffXBEZCHQNJiBFIoSbtAP1BPGeAigNHAc2PK1HUAVoERSfjrUhIrLdBhgYqzgUdkh7vtdLUMiRMK+MdRM4IqUDwiErxkmOBgEAICJeYCEg9IkLBkO/9Y6/Ezcn5sU/2Tp6zc96vmT17rfU8z1rPk5XF+rCevXciM5EkSdLe94bSHZAkSRqvDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUyMTSHdgdU6dOzSOOOKJ0NyRJkkbU19f3i8ycNlhZWwaxI444gvXr15fuhiRJ0ogi4qmhypyalCRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGsWH09/ezZs2aUbV58skn6enp2WX7eeedx6mnntqqrkmSpBZoxb3+pptu4qijjuKNb3zjqI9vEBtGq4LYhg0b6O/vb2HPJElSK7TiXn/SSSfxH//xHxx22GGjPr5BbKDMnYsrVqygr6+Prq4uVq9ezYIFC3j3u9/NggULeO6553jppZeYN28eJ598Ml1dXWzcuJEVK1Zwyy230NXVRV9fHwB/93d/x+c+97lSI5IkSQNV9/tW3OunTJmyW0/DoEVBLCKujYhnI+LBIcojIr4cEZsi4oGIeHtd2dyIeLQqW9aK/uy2yy6DJUt2npylS5bQ8aY30dvVxdq1a7n00ku58847WbRoEVdddRWPPPIIBx10EN/73vfo7e1l1qxZLF26lAULFtDb20tHRwe9vb384R/+IdOnTy86NEmSVKm73y9durR2vz72WNZ+6Uu7da9vRqt+0PU64H8DQz3bmwfMrl7HA18Fjo+ICcBXgNOAzcC9EdGTmT9pUb8alwn9/dDdXVtfuRI+/3l4+mno72fDhg0sW1bLidu2bWPWrFnMmTOHjo4OzjnnHKZMmcLll1++y26vvPJKbrjhBqcmJUkaCwbe7xcvho0bYd06Nhx88G7d65vRkiCWmXdFxBHDVFkIrMnMBO6JiMkRMQM4AtiUmU8ARMQNVd29H8QiauELaienu5v9gW2HHgorV3LMmWdy8cUXM2fOHABeffVVXnnlFZYuXUpEcMUVV3D99dfT0dHBtm3bAPj1r3/Nz3/+c8466yxefvllHnroIb7whS9wySWX7PXhSZIkdrnf79/dzTaAxYs5ZsuWUd/rm+5O1n0mqqkd1YLYtzPzjwcp+zZwZWb+oFpfB/wNtSA2NzM/UW3/CHB8Zl4wyD4WAYsAZs6c2fHUU0P+awHNyYQ31GZstwML5s5l0qRJnH766dx44428+OKLAJx//vkcffTRXHjhhUycOJHt27ezevVqpk6dyvz585k+fTrLly/nT/7kT4DaB/s+8YlPcMcdd+yZfkuSpMZV9/vtwAJg0hln7Pa9vr+/n8svv5y7776bd7zjHfzVX/0VZ5xxxs5DRURfZnYO1o29FcRuAf7ngCD2P4A/AN47IIgdl5mfHu5YnZ2duUf+rcnM2pzxjseVUHtkuXJlLUFLkqT2t5fv98MFsb31rcnNwOF164cBW4bZvvfVn5TFi2H79tp7d/frPsAvSZLa2Bi737fqw/oj6QEuqD4Ddjzwq8zcGhHPAbMj4kjgZ8BZwF/spT69XgRMnvz6RLxjDnnyZJ+ISZK0Lxhj9/uWTE1GxNeBLmAq8AywHNgPIDOviYig9q3KucBLwMcyc33Vdj7w98AE4NrM/MJIx9tjU5O1Dr/+JAxclyRJ7W8v3u+Hm5ps1bcmzx6hPIFPDVF2K3BrK/rREgNPgiFMkqR9zxi53/vL+pIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVEhLglhEzI2IRyNiU0QsG6T8sxFxX/V6MCJei4iDq7InI2JDVba+Ff2RJElqBxOb3UFETAC+ApwGbAbujYiezPzJjjqZ+SXgS1X99wFLMvM/63bzrsz8RbN9kSRJaieteCJ2HLApM5/IzFeBG4CFw9Q/G/h6C44rSZLU1loRxA4Fnq5b31xt20VETALmAjfWbU7gtojoi4hFLeiPJElSW2h6ahKIQbblEHXfB/xwwLTkiZm5JSIOAW6PiEcy865dDlILaYsAZs6c2WyfJUmSimvFE7HNwOF164cBW4aoexYDpiUzc0v1/ixwE7Wpzl1k5qrM7MzMzmnTpjXdaUmSpNJaEcTuBWZHxJERsT+1sNUzsFJEvBk4Gbi5btuBEfGmHcvAe4AHW9AnSZKkMa/pqcnM3BYRFwDfASYA12bmQxHxyar8mqrqB4DbMvM3dc2nAzdFxI6+/Gtm/luzfZIkSWoHkTnUx7nGrs7Ozly/3p8ckyRJY19E9GVm52Bl/rK+JElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqpCVBLCLmRsSjEbEpIpYNUt4VEb+KiPuq19822laSJGlfNbHZHUTEBOArwGnAZuDeiOjJzJ8MqPr9zPxvu9lWkiRpn9OKJ2LHAZsy84nMfBW4AVi4F9pKkiS1tVYEsUOBp+vWN1fbBvrziLg/ItZGxDGjbCtJkrTPaXpqEohBtuWA9R8Dv5+ZL0bEfOBbwOwG29YOErEIWAQwc+bM3e6sJEnSWNGKJ2KbgcPr1g8DttRXyMwXMvPFavlWYL+ImNpI27p9rMrMzszsnDZtWgu6LUmSVFYrgti9wOyIODIi9gfOAnrqK0TEWyIiquXjquM+30hbSZKkfVXTU5OZuS0iLgC+A0wArs3MhyLik1X5NcCHgP8eEduAl4GzMjOBQds22ydJkqR2ELU81F46Oztz/fr1pbshSZI0oojoy8zOwcr8ZX1JkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklRIS4JYRMyNiEcjYlNELBuk/C8j4oHqdXdE/Fld2ZMRsSEi7ouI9a3ojyRJUjuY2OwOImIC8BXgNGAzcG9E9GTmT+qq/RQ4OTN/GRHzgFXA8XXl78rMXzTbF0mSpHbSiidixwGbMvOJzHwVuAFYWF8hM+/OzF9Wq/cAh7XguJIkSW2tFUHsUODpuvXN1bahfBxYW7eewG0R0RcRi1rQH0mSpLbQ9NQkEINsy0ErRryLWhB7Z93mEzNzS0QcAtweEY9k5l2DtF0ELAKYOXNm872WJEkqrBVPxDYDh9etHwZsGVgpIv4U+BqwMDOf37E9M7dU788CN1Gb6txFZq7KzM7M7Jw2bVoLui1JklRWK4LYvcDsiDgyIvYHzgJ66itExEzgm8BHMnNj3fYDI+JNO5aB9wAPtqBPkiRJY17TU5OZuS0iLgC+A0wArs3MhyLik1X5NcDfAlOAf4gIgG2Z2QlMB26qtk0E/jUz/63ZPkmSJLWDyBz041xjWmdnZ65f70+OSZKksS8i+qoHULvwl/UlSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJlf7+ftasWTOqNk8++SQ9PT071y+77DKOOuoourq66Orq4rXXXmt1NyXtQwxiklRpRRADuOSSS+jt7aW3t5cJEya0souS9jEGMUmqrFixgr6+Prq6uli9ejULFizg3e9+NwsWLOC5557jpZdeYt68eZx88sl0dXWxceNGVqxYwS233EJXVxd9fX0AfPGLX+Sd73wnX/7ylwuPSNJY15IgFhFzI+LRiNgUEcsGKY+I+HJV/kBEvL3RtpK0x2UCsHTpUjo6Ouj97ndZu3Ytl156KXfeeSeLFi3iqquu4pFHHuGggw7ie9/7Hr29vcyaNYulS5eyYMECent76ejo4NOf/jT3338/t99+Oz09Pdx1112FBydpLJvY7A4iYgLwFeA0YDNwb0T0ZOZP6qrNA2ZXr+OBrwLHN9hWkvacyy6D/n5YufJ325YsYcOdd7Ls5z8HYNu2bcyaNYs5c+bQ0dHBOeecw5QpU7j88st32d2UKVMAOOCAAzjjjDPo6+vjpJNO2gsDkdSOmg5iwHHApsx8AiAibgAWAvVhaiGwJjMTuCciJkfEDOCIBtpK0p6RWQth3d0A7P/Zz7LtkUdg3TqOmT2bi1esYM7baw/wX331VV555RWWLl1KRHDFFVdw/fXX09HRwbZt23busr+/n8mTJ5OZ9Pb28tGPfrTAwCS1i1YEsUOBp+vWN1N76jVSnUMbbCtJe0bE756EdXfzlu5uDgA++La3cfrnPsfyyy7jxRdfBOD888/n6KOP5sILL2TixIls376d1atXM3XqVB5//HE+9KEPsXz5cq6++moeffRRMpOuri7mz59fbnySxrxWBLEYZFs2WKeRtrUdRCwCFgHMnDlzNP2TpKHtCGPd3bwBWAvw2GMQwXmDPM36wQ9+sMu273//+zuXr7vuuj3VU0n7oFZ8WH8zcHjd+mHAlgbrNNIWgMxclZmdmdk5bdq0pjstSUBtenLJktdvW7Jk5wf4JWlPakUQuxeYHRFHRsT+wFlAz4A6PcC51bcnTwB+lZlbG2wrSXvGjhDW3Q2LF8P27bX37m7DmKS9oumpyczcFhEXAN8BJgDXZuZDEfHJqvwa4FZgPrAJeAn42HBtm+2TJDUkAiZProWvlStf/5mxyZNr65K0B0W24f/xdXZ25vr160t3Q9K+IvP1oWvguiQ1ISL6MrNzsDJ/WV+SBoYuQ5ikvcQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhTQVxCLi4Ii4PSIeq94PGqTO4RHx3Yh4OCIeiojFdWWXRcTPIuK+6jW/mf5IkiS1k2afiC0D1mXmbGBdtT7QNuAzmXkUcALwqYg4uq58ZWYeW71ubbI/kiRJbaPZILYQWF0trwbeP7BCZm7NzB9Xy78GHgYObfK4kiRJba/ZIDY9M7dCLXABhwxXOSKOAOYAP6rbfEFEPBAR1w42tSlJkrSvGjGIRcQdEfHgIK+FozlQRPwecCNwUWa+UG3+KvA24FhgK3D1MO0XRcT6iFj/3HPPjebQkiRJY9LEkSpk5qlDlUXEMxExIzO3RsQM4Nkh6u1HLYT9S2Z+s27fz9TV+Sfg28P0YxWwCqCzszNH6rckSdJY1+zUZA9wXrV8HnDzwAoREcA/Aw9n5ooBZTPqVj8APNhkfyRJktpGs0HsSuC0iHgMOK1aJyLeGhE7vgF5IvAR4N2D/EzFFyNiQ0Q8ALwLWNJkfyRJktrGiFOTw8nM54FTBtm+BZhfLf8AiCHaf6SZ40uSJLUzf1lfkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQV0lQQi4iDI+L2iHisej9oiHpPRsSGiLgvItaPtr0kSdK+qNknYsuAdZk5G1hXrQ/lXZl5bGZ27mZ7SZKkfUqzQWwhsLpaXg28fy+3lyRJalvNBrHpmbkVoHo/ZIh6CdwWEX0RsWg32kuSJO1zJo5UISLuAN4ySNElozjOiZm5JSIOAW6PiEcy865RtKcKcIsAZs6cOZqmkiRJY9KIQSwzTx2qLCKeiYgZmbk1ImYAzw6xjy3V+7MRcRNwHHAX0FD7qu0qYBVAZ2dnjtRvSZKksa7Zqcke4Lxq+Tzg5oEVIuLAiHjTjmXgPcCDjbaXJEnaVzUbxK4ETouIx4DTqnUi4q0RcWtVZzrwg4i4H/i/wC2Z+W/DtZckSRoPRpyaHE5mPg+cMsj2LcD8avkJ4M9G016SJGk88Jf1JUmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIU0FsYg4OCJuj4jHqveDBqnzRxFxX93rhYi4qCq7LCJ+Vlc2v5n+SJIktZNmn4gtA9Zl5mxgXbX+Opn5aGYem5nHAh3AS8BNdVVW7ijPzFub7I8kSVLbaDaILQRWV8urgfePUP8U4PHMfKrJ40qSJLW9ZoPY9MzcClC9HzJC/bOArw/YdkFEPBAR1w42tSlJkrSvGjGIRcQdEfHgIK+FozlQROwPnA78n7rNXwXeBhwLbAWuHqb9oohYHxHrn3vuudEcWpIkaUyaOFKFzDx1qLKIeCYiZmTm1oiYATw7zK7mAT/OzGfq9r1zOSL+Cfj2MP1YBawC6OzszJH6LUmSNNY1OzXZA5xXLZ8H3DxM3bMZMC1ZhbcdPgA82GR/JEmS2kazQexK4LSIeAw4rVonIt4aETu/ARkRk6rybw5o/8WI2BARDwDvApY02R9JkqS2MeLU5HAy83lq34QcuH0LML9u/SVgyiD1PtLM8SVJktqZv6wvSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBrFh9Pf3s2bNmlG1efLJJ+np6dm5ftFFF3HCCSdwwgkncOWVV7a6i5IkqQmtuNevWLGCk046iRNPPJFzzz2X3/72tw3vyyA2jFacnE996lPcc8893H333dx88808/vjjre6mJEnaTa24119wwQXcdddd/PCHPwTgtttua3hfE0d15PEgEyKAWsLt6+ujq6uLj33sY3zjG9/g5Zdf5oADDuC6667jwAMP5IMf/CAvvfQSEcGqVatYsWIF9957L11dXVx99dV0dHQA8IY3vIEJEyYwYcKEkqOTJEmw837fynt9ZrJ9+3ZmzZo1mn7kbr+ADwMPAduBzmHqzQUeBTYBy+q2HwzcDjxWvR/UyHE7Ojpyj1i+PHPx4szt2zMz86dPPJGnHH545vLleeaZZ+a///u/Z2bmt771rfzMZz6TfX19efbZZ+9s/tprr+V3v/vd/PjHP77LrtesWZPnnnvunum3JElqXN39/qc//WmecsopmYsX55nHHLPb9/orrrgiZ82alfPmzcvf/OY3rysD1ucQmabZqckHgTOAu4aqEBETgK8A84CjgbMj4uiqeBmwLjNnA+uq9TIyob8furthyZLa+uc/D08/Df39bNiwgWXLltHV1cWXvvQlfvGLXzBnzhw6Ojo455xzWLx4MS+88MKgu77jjjtYvXo111xzzd4dkyRJer3B7vcbN0J3Nxu2bt3te/0ll1zCxo0bOfLII7nuuusa7k5TU5OZ+TBAVFN5QzgO2JSZT1R1bwAWAj+p3ruqequBXuBvmunTbouAlStry93d0N3N/sC2Qw+FlSs55swzufjii5kzZw4Ar776Kq+88gpLly4lIrjiiiu4/vrr6ejoYNu2bTt3+6Mf/YhLL72UtWvXcsABBxQYmCRJ2mnA/X7/7m62ASxezDFbtuzWvf6//uu/eOMb30hE8OY3v5lJkyY13p3aE7NmxxS9wF9n5vpByj4EzM3MT1TrHwGOz8wLIqI/MyfX1f1lZh40xDEWAYsAZs6c2fHUU0813e9BZcIbag8KtwML5s5l0qRJnH766dx44428+OKLAJx//vkcffTRXHjhhUycOJHt27ezevVqpk6dyvz585k+fTrLly/n7LPPBmDq1KkAr5tLliRJhVT3++3AAmDSGWfs9r3+mmuu4aGHHtr5+bB//Md/ZL/99tt5qIjoy8zOwboxYhCLiDuAtwxSdElm3lzV6WXoIPZh4L0Dgthxmfnp0QSxep2dnbl+/S6Hal5m7TFld/fvti1eXEvOwz/1kyRJ7WIv3++HC2IjfkYsM0/NzD8e5HVzg8ffDBxet34YsKVafiYiZlSdnAE82+A+W6/+pCxeDNu3197r55AlSVJ7G2P3+73x8xX3ArMj4kjgZ8BZwF9UZT3AecCV1Xuj4a71ImDy5Ncn4h1zyJMn+0RMkqR9wRi73zf1GbGI+ADwv4BpQD9wX2a+NyLeCnwtM+dX9eYDfw9MAK7NzC9U26cA3wBmAv8P+HBm/udIx91jU5Pwut8RG3RdkiS1v714v2/qM2Jj0R4NYpIkSS3U1GfEJEmStGcYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhbfk7YhHxHLCH/tXvnaYCv9jDxxjLxvP4x/PYYXyP37GPX+N5/ON57LB3xv/7mTltsIK2DGJ7Q0SsH+rH18aD8Tz+8Tx2GN/jd+zjc+wwvsc/nscO5cfv1KQkSVIhBjFJkqRCDGJDW1W6A4WN5/GP57HD+B6/Yx+/xvP4x/PYofD4/YyYJElSIT4RkyRJKmRcB7GI+HBEPBQR2yNiyG9MRMTciHg0IjZFxLK67QdHxO0R8Vj1ftDe6XnzGul7RPxRRNxX93ohIi6qyi6LiJ/Vlc3f64NoQqPnLiKejIgN1RjXj7b9WNTguT88Ir4bEQ9X18jiurK2O/dDXcN15RERX67KH4iItzfath00MP6/rMb9QETcHRF/Vlc26DXQLhoYe1dE/Kru7/PfNtq2HTQw/s/Wjf3BiHgtIg6uytr93F8bEc9GxINDlI+N6z4zx+0LOAr4I6AX6ByizgTgceAPgP2B+4Gjq7IvAsuq5WXAVaXHNIqxj6rv1Z/Dz6n9FgrAZcBflx7Hnh4/8CQwtdk/v7H0aqTvwAzg7dXym4CNdX/v2+rcD3cN19WZD6wFAjgB+FGjbcf6q8HxvwM4qFqet2P81fqg10A7vBocexfw7d1pO9Zfox0D8D7gzn3h3Ff9Pwl4O/DgEOVj4rof10/EMvPhzHx0hGrHAZsy84nMfBW4AVhYlS0EVlfLq4H375GO7hmj7fspwOOZuad/SHdvafbc7dPnPjO3ZuaPq+VfAw8Dh+6tDrbYcNfwDguBNVlzDzA5ImY02HasG3EMmXl3Zv6yWr0HOGwv93FPaeb8jYtzP8DZwNf3Ss/2gsy8C/jPYaqMiet+XAexBh0KPF23vpnf3ZCmZ+ZWqN24gEP2ct+aMdq+n8WuF+gF1ePca9tpaq7S6PgTuC0i+iJi0W60H4tG1feIOAKYA/yobnM7nfvhruGR6jTSdqwb7Rg+Tu0pwQ5DXQPtoNGx/3lE3B8RayPimFG2HcsaHkNETALmAjfWbW7nc9+IMXHdT9xTOx4rIuIO4C2DFF2SmTc3sotBtrXFV02HG/so97M/cDpwcd3mrwKfp/Zn8XngauD83evpntGi8Z+YmVsi4hDg9oh4pPq/rDGthef+96j9h/mizHyh2jzmz/0AjVzDQ9Vp2+u/TsNjiIh3UQti76zb3JbXQKWRsf+Y2kcuXqw+7/gtYHaDbce60YzhfcAPM7P+CVI7n/tGjInrfp8PYpl5apO72AwcXrd+GLClWn4mImZk5tbqceazTR6rpYYbe0SMpu/zgB9n5jN1+965HBH/BHy7FX1upVaMPzO3VO/PRsRN1B5Z38U4OPcRsR+1EPYvmfnNun2P+XM/wHDX8Eh19m+g7VjXyPiJiD8FvgbMy8znd2wf5hpoByOOve5/MMjMWyPiHyJiaiNt28BoxrDLrEebn/tGjInr3qnJkd0LzI6II6snQ2cBPVVZD3BetXwe0MgTtrFiNH3f5XMD1Q18hw8Ag34rZQwbcfwRcWBEvGnHMvAefjfOffrcR0QA/ww8nJkrBpS127kf7hreoQc4t/oW1QnAr6pp20bajnUjjiEiZgLfBD6SmRvrtg93DbSDRsb+lurvOxFxHLX74vONtG0DDY0hIt4MnEzdfwv2gXPfiLFx3e+pbwG0w4vaTWQz8ArwDPCdavtbgVvr6s2n9q2xx6lNae7YPgVYBzxWvR9cekyjGPugfR9k7JOo/UfpzQPaXw9sAB6o/oLOKD2mVo+f2jdm7q9eD42nc09taiqr83tf9Zrfrud+sGsY+CTwyWo5gK9U5Ruo+xb1UNd/O70aGP/XgF/Wnev11fYhr4F2eTUw9guqsd1P7YsK7xhP575a/yhww4B2+8K5/zqwFfgttXv9x8fide8v60uSJBXi1KQkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpkP8Pinu9TLhZx0QAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 720x360 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness.\\n\",\n    \"# The plot produced should look like the \\\"test solution plot\\\" depicted below. \\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print (\\\"Outputted Plot:\\\")\\n\",\n    \"\\n\",\n    \"M_reduced_plot_test = np.array([[1, 1], [-1, -1], [1, -1], [-1, 1], [0, 0]])\\n\",\n    \"word2ind_plot_test = {'test1': 0, 'test2': 1, 'test3': 2, 'test4': 3, 'test5': 4}\\n\",\n    \"words = ['test1', 'test2', 'test3', 'test4', 'test5']\\n\",\n    \"plot_embeddings(M_reduced_plot_test, word2ind_plot_test, words)\\n\",\n    \"\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<font color=red>**Test Plot Solution**</font>\\n\",\n    \"<br>\\n\",\n    \"<img src=\\\"imgs/test_plot.png\\\" width=40% style=\\\"float: left;\\\"> </img>\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.5: Co-Occurrence Plot Analysis [written] (3 points)\\n\",\n    \"\\n\",\n    \"Now we will put together all the parts you have written! We will compute the co-occurrence matrix with fixed window of 4 (the default window size), over the Reuters \\\"crude\\\" (oil) corpus. Then we will use TruncatedSVD to compute 2-dimensional embeddings of each word. TruncatedSVD returns U\\\\*S, so we need to normalize the returned vectors, so that all the vectors will appear around the unit circle (therefore closeness is directional closeness). **Note**: The line of code below that does the normalizing uses the NumPy concept of *broadcasting*. If you don't know about broadcasting, check out\\n\",\n    \"[Computation on Arrays: Broadcasting by Jake VanderPlas](https://jakevdp.github.io/PythonDataScienceHandbook/02.05-computation-on-arrays-broadcasting.html).\\n\",\n    \"\\n\",\n    \"Run the below cell to produce the plot. It'll probably take a few seconds to run. What clusters together in 2-dimensional embedding space? What doesn't cluster together that you might think should have?  **Note:** \\\"bpd\\\" stands for \\\"barrels per day\\\" and is a commonly used abbreviation in crude oil topic articles.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Running Truncated SVD over 8185 words...\\n\",\n      \"Done.\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAmgAAAEvCAYAAADxWj0AAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAArBUlEQVR4nO3de3hV1Z3H//eXm6AFoqKiIFK8gMo4yC+iUtoigtcpeClW61ikInZqNaU+bbG2mnpp7fxG09h27FgvOIO2o512wMvPFtFoHWwVFBUrqGOjBhFQAXVUFLJ+f5yTGGICCSeXneT9ep7znLPPXmvvtbMT/bDW2ntHSglJkiRlR7f2boAkSZK2ZECTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIzp0d4N2B4DBgxIQ4cObe9mSJIkbdOSJUveSCnt1pw6HTKgDR06lMWLF7d3MyRJkrYpIl5ubh2HOCVJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiRl3pw5c3j77bebXL6yspKJEye2YotalwFNkiRlXmMBbfPmze3QmtZnQJMkSW0npdqPlZWVHHbYYZx55pkUFxdTXl7Ohg0bOO200zj66KOZMGECL774Ig888ABLly5l6tSpXHDBBbX1zjrrLM4991z+/Oc/M3bsWMaNG8c//dM/kersA+DVV1/lxBNPZMKECZx44omsXbsWgP3226+2zMSJE6msrKSyspIxY8Ywffp0Ro4cyW233ca0adMYPXo0P/7xj9vmZ0QHvQ+aJEnqgEpLYf16KCuDCEiJymef5YGJE+k9Zw6HHXYYTz31FKeccgqnn346Tz31FLNnz+a3v/0to0aNYu7cuQwePLg2SC1cuJB+/fpRXFzMHXfcwbBhw/jqV7/KXXfdxSGHHFK7229/+9v84Ac/4IgjjmDevHn85Cc/4V/+5V8abebKlSt5+OGHWb9+PUOHDqWyspIBAwYwfPhwLr744tb/OWFAkyRJbSGlXDgrL88tl5XBFVcw4v336fv++9CjByNHjmTVqlWUl5fzy1/+EoAePRqOKiNHjqRfv34AbNiwgWHDhgEwduxYli9fvkVAe+aZZ5g9ezYAmzZt2qLn7OPmfdzrNmLECHr37s3AgQMZNGgQAwcOBKBPnz5s3ryZ7t27F/azaAIDmiRJan0RuVAGuZCWD2rL+/Th3SuuoPfmzSxbtozRo0czc+ZMTj75ZAA+/PBDAHr16sWmTZtqN1c3JPXv35+XXnqJYcOGsWjRIqZMmbLFrg8++GAuvvhiDj300C22WV1dzcaNG9m8eTPPPfdcnaZGg5+BTwyfthbnoEmSpLZRN6TlDT34YM6dOZMjjjiCadOmUVZWxh133MGECRM46qij+NnPfgbAKaecwjnnnMMPfvCDT2z2uuuu48wzz2TcuHH07NmTyZMnb7H+mmuu4bLLLmPChAlMmDCBO+64A4BvfOMbHHHEEZx//vkMHjy4lQ56+0RbJcGWVFxcnHwWpyRJHUxKMGtWbe9ZJTBj7725/+WXc+Gtk4qIJSml4ubUsQdNkiS1vrrhrKQEqqth+nR49dXc9x2ww6g1OQdNkiS1vggoKsqFs/xVnENvuon7+/XLfd+Je9C2h0OckiSp7aS0ZRirv9wJOcQpSZKyrX4Y6+ThbHsZ0CRJkjLGgCZJkpQxBjRJkqSMMaBJkqQO6/XXX+eiiy5qUtkZM2ZQUVHRrO3/93//N6+88sp2tKwwBjRJktRhDRw4kGuuuabVtt9YQNu8eXOr7RMMaJIkqaOpc4uwyspKJk6cSGlpKeeccw6TJ09m1KhRLF++HIA777yTUaNGceqpp/Lqq69uUadGzcPTKyoqGDNmDEcddRTTp0/nr3/9K/fddx8XXHABU6dOBWCfffbh61//OlOmTOFLX/oSTz75JAAvv/wykyZNarFD9Ea1kiSp4ygthfXra292S0rw/POwaRN9R43ipptu4vbbb+fGG2/kJz/5CZdccglLliyhd+/e/P3f//1WN/273/2OK6+8kmOOOYbq6mq6devGcccdx4wZMxg3bhwAq1atYvbs2QwZMoSFCxdy00038fOf/5xbbrmFc845p8UO0x40SZLUMaSUC2fl5R8/HuqKK3KPi/rgA/6f0aMBGDJkCG+++SZvvPEGe+yxB3379qVnz56Mzq+Pevdeq7lp/7e//W3mz5/PmWeeyS233NJgEwYNGsSQIUMAmDBhAo899hjvvfced911FyeffHKLHWqL9KBFxHFAOdAduDGldHW99ZFffwLwHnB2SumJ/LpK4B1gM7CpuXfalSRJXURErucMciEt/9B19t4bjj2W6PZxv1NKiQEDBrB69WreffddevfuzdKlSwHYeeedee2110gpsXr1alauXAnArrvuys9//nNSShxwwAFMnTqVXr16sWnTptrtdu/evU5zglNPPZWvf/3rfO5zn2OHHXZosUMtOKBFRHfgF8AkoAp4PCLmp5T+WqfY8cD++dfhwPX59xpHpZTeKLQtkiSpk6sJaTXhDOCAAxp8IkH37t25/PLLGTduHJ/+9KcZNGgQAP369eO4447jyCOPZMyYMeyxxx4AXHvttfzxj3+kurqaSZMm0a9fP/7hH/6BSy+9lAMPPJB/+7d/+8Q+pk+fzuDBg2vnorXYYRb6LM6IOBIoTSkdm1++GCCl9OM6Zf4NqEgp/Tq/vAIYn1Jale9BK25OQPNZnJIkdVEp5YY36wa0Og9gb2urV6/mjDPO4IEHHmi0THs9i3MQ8Gqd5ar8d00tk4A/RsSSiJjZAu2RJEmdUd1wVlIC1dW597pz0trQggULmDx5Mt///vdbfNstMQetobha/ye0tTKfSSm9FhG7AwsiYnlK6eFP7CQX3mYCtZPzJElSFxIBRUVb9pjVzEkrKmrzHrRJkya16K016mqJgFYF7F1neTDwWlPLpJRq3tdExO+BMcAnAlpK6QbgBsgNcbZAuyVJUkdTWprrKasJYzUhrR2GN1tTSwxxPg7sHxGfjohewOnA/Hpl5gNfiZwjgA35+Wc7RURfgIjYCTgGWNYCbZIkSZ1V/TDWycIZtEAPWkppU0R8A/gDudts3JxSejYivpZf/0vgXnK32HiR3G02puer7wH8Pn8/kh7A7Sml+wptkyRJUkdW8FWc7cGrOCVJUkfRXldxSpIkqQUZ0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJypgWCWgRcVxErIiIFyNidgPrIyKuy69/OiJGN7WuJElSV1NwQIuI7sAvgOOBg4AzIuKgesWOB/bPv2YC1zejriRJUpfSEj1oY4AXU0ovpZQ+BH4DTKlXZgrw7ynnz0BRROzZxLqSJEldSksEtEHAq3WWq/LfNaVMU+pKkiR1KS0R0KKB71ITyzSlbm4DETMjYnFELF67dm0zmyhJktS6Nm/e3GLb6tEC26gC9q6zPBh4rYllejWhLgAppRuAGwCKi4sbDHGSJEnNdfHFF7No0SI+/PBDLrnkEhYvXsyrr77K2rVreeWVV/jNb37DiBEjeOihh7j00kuJCEaMGMH111/Pyy+/zNSpUxkxYgQ9e/bkoosuYvr06ey2227suuuuDBs2DKB3RPx3SukkgIi4GbglpfSnxtrUEj1ojwP7R8SnI6IXcDowv16Z+cBX8ldzHgFsSCmtamJdSZKklpVyfT333Xcf69at46GKChYuXMgll1xCSom+ffsyf/58vvOd73DjjTeSUuKb3/wm8+fPp6Kigj59+nDPPfcAUFlZyS9+8QtuvvlmLr74Yq677jruuecedthhh5q9fQD0i4iBEfEp4O+2Fs6gBXrQUkqbIuIbwB+A7sDNKaVnI+Jr+fW/BO4FTgBeBN4Dpm+tbqFtkiRJalRpKaxfD2VlPPPMMzz00EOM33tv6NGDjb178+abb3L44YcDMGTIEBYsWMAbb7xBZWUlU6bkrmV89913GT58OCNHjmTkyJH069cPgBdffJHDDjsMgMMPP5yqqqqavd4CnA2sAf5zW01siSFOUkr3kgthdb/7ZZ3PCTi/qXUlSZJaRUq5cFZeDsDBkyZxTO/elC9fDiUlfPiTn/CjH/+YiKhTJTFgwACGDRvG3Xffzac+9SkAPvroI1auXEn37t1ry+67774sXryYww8/nMcff5w999yzZtWdwEPkOqpO21YzWySgSZIkdQgRUFaW+1xezgnl5TwKjB80iHjqKQbPmMG+++7bQLXg2muvZfLkyaSU6NatG2VlZbU9ZzV+9KMf8dWvfpUBAwbQv39/9tlnHwBSSh9ExJ+BvVJK27zaMVLqePPti4uL0+LFi9u7GZIkqaNKCbrVmYpfXZ0LbwX66KOP6NmzJwDnnnsuxx57LFOnTl2SUiqOiJ8C96SUFmxrOz6LU5IkdS0pwaxZW343a1bthQOFeOaZZ/jsZz/LkUceybvvvstJJ50EQETcCgxpSjgDhzglSVJXUhPOysuhpCQ33FmzDLnlAnrSRo8ezZ/+9MkLNFNK05qzHQOaJEnqOiKgqOjjcFZ3TlpRUYsMc7YE56BJkqSuJ6Utw1j95RYUEUtSSsXNqeMcNEmS1PXUD2MZ6TmrYUCTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJCljDGiSJEkZY0CTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJHVaV199Nc888wwA++23Xzu3pul6tHcDJEmSWsvs2bPbuwnbxR40SZLUKaSUOO+88xg3bhxjx47lscce4+yzz+aRRx5p76Y1mz1okiSp40oJIgCYN28eH334IY888ggvvfQSp59+OgcddFA7N3D7FNSDFhG7RMSCiHgh/75zI+WOi4gVEfFiRMyu831pRKyMiKX51wmFtEeSJHUhpaUwa1YupAErli9n7KuvQmkpw4YNY926de3bvgIUOsQ5G1iYUtofWJhf3kJEdAd+ARwPHAScERF142xZSmlU/nVvge2RJEldQUqwfj2Ul9eGtOH/8z8sWrgQ1q/npf/9X4qKitq7ldut0IA2Bbg1//lW4KQGyowBXkwpvZRS+hD4Tb6eJEnS9omAsjIoKcmFtG7dmHz33XQ/+GDGLV7Mmf/4j/zsZz9r71Zut0j5bsHtqhyxPqVUVGd5XUpp53plvggcl1KakV8+Czg8pfSNiCgFzgbeBhYDF6WUttkfWVxcnBYvXrzd7ZYkSZ1EStCtTn9TdXXtnLSsiIglKaXi5tTZZg9aRNwfEcsaeDW1F6yhn1JNKrwe2BcYBawCrtlKO2ZGxOKIWLx27dom7lqSJHVaKeWGN+uqMyetI9tmQEspTUwpjWzgNQ9YHRF7AuTf1zSwiSpg7zrLg4HX8ttenVLanFKqBn5Fbji0sXbckFIqTikV77bbbk0/QkmS1PnUhLPy8twwZ3X1x8OdnSCkFXqbjfnANODq/Pu8Bso8DuwfEZ8GVgKnA1+GXKhLKa3KlzsZWFZgeyRJUlcQAUVFuVBWVvbxnDTIfZ+xYc7mKnQO2q7AHcAQ4BVgakrprYjYC7gxpXRCvtwJwE+B7sDNKaWr8t//B7nhzQRUAufVCWyNcg6aJEkCtrgPWoPLGbA9c9AKCmjtxYAmSZI6ila5SECSJElty4AmSZKUMQY0SZKkjDGgSZIkZYwBTZIkKWMMaJIkSRljQJMkScoYA5okSVLGGNAkSZIyxoAmSZJa3euvv85FF13U3s3oMAxokiSp1Q0cOJBrrrlmi+82b97cTq3Jvh7t3QBJktT5VVZWMmPGDMaNG0dlZSVvvfUWZ5xxBkuXLuWxxx5jw4YNfO1rX2PmzJm8++67fOlLX2Ljxo0ccsghPPHEE1RUVLT3IbQpA5okSWodKUHEJ77eYYcdmD9/PgCTJ09mp512YuPGjfzd3/0d06dP51e/+hXjxo3j4osv5rbbbuOJJ55o65a3O4c4JUlSyysthVmzciENcu/PPw8VFYwdO7a22PXXX8+4ceM45phjWLNmDWvWrOH5559nzJgxABx++OHt0Pj2Z0CTJEktKyVYvx7Kyz8OaVdcAa++Ch98QPduufixbt06br75Zh566CH+8Ic/0L9/f1JK7L///ixevBiAxx9/vB0PpP04xClJklpWBJSV5T6Xl+deAHvvDcceWzvsWVRUxMEHH8y4ceM48MAD2XXXXQE499xzOe2001iwYAEjR45sjyNod5Fquh47kOLi4lSTrCVJUkalBN3qDNZVVzc4J60xVVVVTJ06lR122KFDXyQQEUtSSsXNqeMQpyRJankp5YY366o7J62FdbZbdjjEKUmSttvFF1/MokWL+PDDD7nkkks45JBDmDlzJu8vW0aPlStZcOGFfHXDBmb83/8xrrycucuX8+Lhh1P6wx/y3e9+d5u32KjpPXv++eeZOXMmKSUGDhzInDlz6NOnD/vssw8nnngir7zyCnfffXd7/zhajAFNkiQ1XZ1bZ9x3332se+stHnroId577z2OPPJIDjjgAL71rW9xzKJFVK9bR7ef/hSmT4cLL4RBg+CVV2rrX3rppU2+xcZ3vvMdLr/8cj73uc9x+eWX86tf/YoLL7yQVatWMXv2bIYMGdJeP5FW4RCnJElqmnq3znjm6ad56M47GT90KCeccAIbN27kr3/9K0cddRSUlubCWQQRUXvhQDr55NrNNecWG88//3zt7TnGjh3L8uXLARg0aFCnC2dgQJMkSU3RwK0zDv6f/+GYdeuoOOkkKh58kKeffpqDDz64dkJ/dT7I7bLLLlRVVUEES5YsAZp/i40DDjiARYsWAbBo0SKGDx8OQPfu3dvoB9C2vIpTkiQ1Tc3E/5rbZgA/GDOGP/XpQ0QwePBgrrrqKs4991w++OADevbsyR//+EdWrFjBGWecwZAhQxgwYABDhgzhsssu47TTTqOqqooDDzyQpUuXMn/+fPr3789pp53GRx99xMiRI1m6dCkVFRUsX76c8847j5QSu+++O//xH/9Bnz592G+//XjxxRfb8YeybdtzFacBTZIkNV2Bt87oirzNhiRJaj1tfOuMrqyggBYRu0TEgoh4If++cyPlbo6INRGxbHvqS5KkdlZ3eLOkJNdzVlKy5eOc1GIK7UGbDSxMKe0PLMwvN2QOcFwB9SVJUnuKgKKiXCgrK/v4cU4lJbnvHeZsUQXNQYuIFcD4lNKqiNgTqEgpDW+k7FDg7pTSyO2pX5dz0CRJaid17oPW4LI+oT3moO2RUloFkH/fvY3rS5KktlQ/jBnOWsU2nyQQEfcDAxtYdUnLN2er7ZgJzAQ65Q3pJEmSamwzoKWUJja2LiJWR8SedYYo1zRz/02un1K6AbgBckOczdyPJElSh1HoEOd8YFr+8zRgXhvXlyRJ6nQKDWhXA5Mi4gVgUn6ZiNgrIu6tKRQRvwYeBYZHRFVEnLO1+pIkqfkqKyuZOLHRga+CzJkzhwULFgBw3XXXtco+9DGfJCBJUidRWVnJjBkzuP/++1t1Px3h8UpZ4pMEJEkSAD//+c858MADmT59eu13++23HwBHH300b731Fs888wy9evXinXfe4fHHH2fmzJkAHHvssYwfP54xY8bw6KOPAlBaWsrcuXO5/fbbWblyJePHj+eqq65q+wPrIrZ5kYAkScqwBu5D9r3vfY9evXpx/fXXM3fu3E9UGT9+PA8++CBVVVUcf/zxPPzwwyxbtoyjjjoKgN/97nfstNNOPPfcc5x//vk88MADtXW//OUvc+mll1JRUdGqh9XVGdAkSeqoSkth/fqP7+yfEs8++ihvPfssf3755drer/qOPvpo5s6dyxtvvMFll13G3Llzee6557jlllt4//33KSkpYcWKFXTv3p2VK1e26SEpxyFOSZI6opRy4azuszCvuIKD33uPS0aP5rTTTmOXXXahqqoKgKVLl7Jp0yYAxowZw1/+8hc2btzI6NGjefbZZ3nzzTcZOHAg9913H927d+dPf/oT//qv/0pDc9V79OhBdXV1Wx5tl2MPmiRJHVHNszAhF9LKy3Of996bU+++m5533cX3vvc9+vbty+c//3k+//nP06NH7n/7PXr0YODAgYwaNQqAgQMHsv/++wNw5JFH8uMf/5iJEyfymc98psFdf/GLX+TEE0/k+OOP58ILL2zVw+yqvIpTkqSOLCXoVmdArLraxy9ljFdxSpLUlaSUG96sq2a4Ux2aAU2SpI6oJpyVl0NJSa7nrKRkyzlp6rCcgyZJUkcUAUVFuVBWcxVnzZy0oiKHOTs456BJktSR1b8PWgP3RVP7cg6aJEldTf0wZjjrFAxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMKSigRcQuEbEgIl7Iv+/cSLmbI2JNRCyr931pRKyMiKX51wmFtEeSJKkzKLQHbTawMKW0P7Awv9yQOcBxjawrSymNyr/uLbA9kiRJHV6hAW0KcGv+863ASQ0VSik9DLxV4L4kSZK6hEID2h4ppVUA+ffdt2Mb34iIp/PDoA0OkQJExMyIWBwRi9euXbu97ZUkScq8bQa0iLg/IpY18JrSAvu/HtgXGAWsAq5prGBK6YaUUnFKqXi33XZrgV1LkiRlU49tFUgpTWxsXUSsjog9U0qrImJPYE1zdp5SWl1nW78C7m5OfUmSpM6o0CHO+cC0/OdpwLzmVM6HuhonA8saKytJktRVFBrQrgYmRcQLwKT8MhGxV0TUXpEZEb8GHgWGR0RVRJyTX/XPEfFMRDwNHAXMKrA9kiRJHd42hzi3JqX0JnB0A9+/BpxQZ/mMRuqfVcj+JUmSOiOfJCBJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJapbrrrtuu+vOmTOHt99+uwVbI3VOBjRJUrMY0KTWZ0CTJJFS4rzzzmPcuHGMHTuWxx57jPHjx1NVVQXAlVdeyZw5c7j99ttZuXIl48eP56qrrqKiooJjjz2WU089lVGjRnHnnXcCcPbZZ/PII48AMHfuXEpLS3nggQdYunQpU6dO5YILLmi3Y5U6goKexSlJ6uBSggjmzZvHRx99xCN/+hMv/e1vnH766ey4446fKP7lL3+ZSy+9lIqKCgAqKipYuXIlTz75JO+//z7FxcWceuqpDe5qwoQJjBo1irlz5zJ48ODWPCqpwzOgSVJXVVoK69dDWRkrVqxg7JFHwqxZDCsqYt26dey00061RVNKjW7m0EMPpWfPnvTs2ZPdd9+dtWvXEhFNqiupYQ5xSlJXlFIunJWXw6xZDD/gABb99KdQXs5LL79MUVERu+yyS+0Q55IlS2qr9ujRg+rq6trlpUuXsmnTJt555x1Wr17NgAEDGq3bq1cvNm3a1CaHKHVk9qBJUlcUAWVluc/l5UwuL+ceYNyee7J5+XJ+9rOfsXHjRmbMmMEBBxzADjvsUFv1i1/8IieeeCLHH388hxxyCHvttRdTp07lb3/7G1deeSXdu3dnxowZnHHGGdx+++0MGDCAoqIiAE455RTOOeccxo4dyxVXXNH2xy11ENERu56Li4vT4sWL27sZktTxpQTd6gymVFfnwlsTVVRUMHfuXG688cZWaJzUOUTEkpRScXPqOMQpSV1VSjBr1pbfzZqV+15SuzKgSVJXVBPOysuhpCTXc1ZSUjsnrakhbfz48faeSa3AOWiS1BVFQFFRLpSVlW05J62oqFnDnJJannPQJKkry98HrdFlSQVzDpokqXnqhzHDmZQJBjRJkqSMMaBJkiRljAFNkiQpYwoKaBGxS0QsiIgX8u87N1Bm74h4MCKei4hnI6KkOfUlSZK6mkJ70GYDC1NK+wML88v1bQIuSikdCBwBnB8RBzWjviRJUpdSaECbAtya/3wrcFL9AimlVSmlJ/Kf3wGeAwY1tb4kSVJXU2hA2yOltApyQQzYfWuFI2IocCjwl+2pL0mS1BVs80kCEXE/MLCBVZc0Z0cR8Sngv4BvppTebk7dfP2ZwEyAIUOGNLe6JElSh7HNgJZSmtjYuohYHRF7ppRWRcSewJpGyvUkF85uSyn9rs6qJtXPt+MG4AbIPUlgW+2WJEnqqAod4pwPTMt/ngbMq18gIgK4CXgupXRtc+tLkiR1NYUGtKuBSRHxAjApv0xE7BUR9+bLfAY4C5gQEUvzrxO2Vl+SJKkr2+YQ59aklN4Ejm7g+9eAE/KfHwEafLhbY/UlSZK6Mp8kICnzKisrmTix0emwmd22JG0vA5qkTqm6unqL5c2bN7dTSySp+Qoa4pSktrJhwwbOPPNMVqxYwVlnncUhhxzC5ZdfzqZNm9hll134z//8T3r37s1+++3HaaedxqOPPsq3v/1tysvL6devH/vuuy/HH388l156KRHBiBEjuP7667fYR1lZGb/5zW/YcccdOemkkygpKWmkNZLUugxokrIrJYjcFNbKykoeWLiQ3n36cNhhhzFv3jwefPBBAL773e9yxx138JWvfIVNmzbxhS98gR/96EdUVFTw2muvcffdd9OjRw9Gjx5NRUUF/fv3Z9asWdxzzz2MHDmydne33XYbDz74IH379v1ED5wktSUDmqRsKi2F9euhrAyAESNG0PfSS6GoiJEjR/L6669z7rnnsnHjRlavXk2/fv0A6N69O0cccUTtZoqLi+nZsydr166lsrKSKVOmAPDuu+8yfPjwLQLaT3/6Uy688EI2bdrEeeedx7hx49rscCWpLgOapOxJKRfOystzyyUlLF+yhHcfeYTeF1zAsmXLKC0t5Yc//CFHHnkk3/nOd0gpd//qiCDi4wvHu3fvDsCAAQMYNmwYd999N5/61KcA+Oijj1i5cmVt2dGjRzNu3DiqqqqYMmUKS5YsaZvjlaR6DGiSsieitueM8nIoL2cocO4BB/DCokVMmzaNgQMHcs455zB8+HD69+9f24PW+CaDa6+9lsmTJ5NSolu3bpSVlW1R76yzzuKNN97ggw8+4Pzzz2+945OkbYiaf3V2JMXFxWnx4sXt3QxJrS0l6FbnYvPq6to5aZLUUUTEkpRScXPqeJsNSdmUEsyateV3s2blvpekTs6AJil7asJZeTmUlOR6zkpKcsuGNEldgHPQJGVPBBQV5UJZWdmWc9KKihzmlNTpOQdNUnbVuQ9ag8uS1AE4B01S51I/jBnOJHURBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGVNQQIuIXSJiQUS8kH/fuYEye0fEgxHxXEQ8GxElddaVRsTKiFiaf51QSHskSZI6g0J70GYDC1NK+wML88v1bQIuSikdCBwBnB8RB9VZX5ZSGpV/3VtgeyRJkjq8QgPaFODW/OdbgZPqF0gprUopPZH//A7wHDCowP1KkiR1WoUGtD1SSqsgF8SA3bdWOCKGAocCf6nz9Tci4umIuLmhIVJJkqSuZpsBLSLuj4hlDbymNGdHEfEp4L+Ab6aU3s5/fT2wLzAKWAVcs5X6MyNicUQsXrt2bXN2LUmS1KH02FaBlNLExtZFxOqI2DOltCoi9gTWNFKuJ7lwdltK6Xd1tr26TplfAXdvpR03ADcAFBcXp221W5IkqaMqdIhzPjAt/3kaMK9+gYgI4CbguZTStfXW7Vln8WRgWYHtkSRJ6vAKDWhXA5Mi4gVgUn6ZiNgrImquyPwMcBYwoYHbafxzRDwTEU8DRwGzCmyPJElSh7fNIc6tSSm9CRzdwPevASfkPz8CRCP1zypk/5IkSZ2RTxKQJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJCljDGiSJEkZY0CTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJCljDGiSJEkZY0DbisrKSiZOnNjseldeeSVz5sxp+QZJkqQuwYAmSZKUMT3auwGZkxJE1C5u2LCBM888kxUrVnDWWWfRv39/7rnnHj744AOqqqq47rrr+OxnP8vDDz/MhRdeyJAhQ9hhhx0YPHhwOx6EJEnqyOxBq6u0FGbNyoU0gJSofPZZfjlkCI8++ii33HILa9as4Z133uGuu+7i97//PbNmzQLgW9/6FvPnz2fevHls2LCh/Y5BkiR1ePag1UgJ1q+H8vLcclkZXHEFI95/n77vvw89ejBy5EhSShx22GEADB06tDaMvf322wwZMgSAMWPGtMcRSJKkTsIetBoRuVBWUpILad26wS23sLxPH9694go2bd7MsmXLiAiWLFkCwCuvvEK/fv0A6Nu3L1VVVQA8/vjj7XYYkiSp47MHra6akFbTiwYMPfhgzp05kxdeeIFp06ax8847s+OOO3LiiSfy2muvUVZWBsA111zDF77wBfbaay/69u3bXkcgSZI6AQNaXSnl5qDlDQUe/8xncqEtf+HAnDlzGDVqFN///ve3qDp+/HiefPLJNmysJEnqrBzirFETzsrLc8Oc1dUfD3fWvXBAkiSplRXUgxYRuwD/Sa6zqRI4LaW0rl6Z3sDDwA75/f02pXRZU+u3mQgoKsqFspoes/zwJUVFtT1oZ599drs0T5IkdR2RCugZioh/Bt5KKV0dEbOBnVNK361XJoCdUkrvRkRP4BGgJKX056bUb0hxcXFavHjxdrd7q+rdB+0Ty5IkSc0QEUtSSsXNqVPoEOcU4Nb851uBk+oXSDnv5hd75l81qXCb9dtc/TBmOJMkSW2s0IC2R0ppFUD+ffeGCkVE94hYCqwBFqSU/tKc+pIkSV3JNuegRcT9wMAGVl3S1J2klDYDoyKiCPh9RIxMKS1rcitz7ZgJzARqbwgrSZLUGW0zoKWUJja2LiJWR8SeKaVVEbEnuR6yrW1rfURUAMcBy4Am108p3QDcALk5aNtqtyRJUkdV6BDnfGBa/vM0YF79AhGxW77njIjoA0wElje1viRJUldTaEC7GpgUES8Ak/LLRMReEXFvvsyewIMR8TTwOLk5aHdvrb4kSVJXVtB90FJKbwJHN/D9a8AJ+c9PA4c2p74kSVJX5pMEJEmSMqagG9W2l4hYC7zc3u1oJwOAN9q7EWpRntPOyfPa+XhOO6e2OK/7pJR2a06FDhnQurKIWNzcuxEr2zynnZPntfPxnHZOWT2vDnFKkiRljAFNkiQpYwxoHc8N7d0AtTjPaefkee18PKedUybPq3PQJEmSMsYeNEmSpIwxoGVERBwXESsi4sWImN3A+p0j4vcR8XREPBYRI+usK4qI30bE8oh4LiKObNvWqzHbe14jYnhELK3zejsivtnmB6BPKPBvdVZEPBsRyyLi1xHRu21br8YUeF5L8uf0Wf9OsyMibo6INRGxrJH1ERHX5c/50xExus66rf4+tImUkq92fgHdgf8FhgG9gKeAg+qV+X+By/KfRwAL66y7FZiR/9wLKGrvY/JV+Hmtt53Xyd1Hp92Pqyu/CjmnwCDgb0Cf/PIdwNntfUy+Cj6vI4FlwI7kns5zP7B/ex+TrwTwOWA0sKyR9ScA/x8QwBHAX5r6+9AWL3vQsmEM8GJK6aWU0ofAb4Ap9cocBCwESCktB4ZGxB4R0Y/cL+FN+XUfppTWt1nLtTXbfV7rlTka+N+UUle9OXOWFHpOewB9IqIHuf+hv9Y2zdY2FHJeDwT+nFJ6L6W0CXgIOLntmq7GpJQeBt7aSpEpwL+nnD8DRRGxJ037fWh1BrRsGAS8Wme5Kv9dXU8BpwBExBhgH2AwuYS/FrglIp6MiBsjYqfWb7KaoJDzWtfpwK9bqY1qnu0+pymllcC/AK8Aq4ANKaU/tnqL1RSF/K0uAz4XEbtGxI7kemX2bvUWqyU0dt6b8vvQ6gxo2RANfFf/8tqrgZ0jYilwAfAksIncv8hHA9enlA4F/g9on/Fy1VfIec1tIKIXMBm4s5XaqObZ7nMaETuT+1f4p4G9gJ0i4h9bsa1quu0+ryml54CfAAuA+8gFuU2oI2jsvDfl96HV9WjrHapBVWz5L67B1Bv6SCm9DUyH3MRGcnNZ/kZumKQqpfSXfNHfYkDLikLOa43jgSdSSqtbt6lqokLO6bHA31JKa/PrfgeMBea2frO1DQX9raaUbiI/zSQifpTfnrKvsfPeq5Hv25Q9aNnwOLB/RHw632NyOjC/boH8lZq98oszgIdTSm+nlF4HXo2I4fl1RwN/bauGa6u2+7zWKXIGDm9mSSHn9BXgiIjYMf8/+KOB59qw7WpcQX+rEbF7/n0IuWFQ/2Y7hvnAV/JXcx5BbtrBKprw+9AW7EHLgJTSpoj4BvAHcleP3JxSejYivpZf/0tyE1H/PSI2kwtg59TZxAXAbflfpJfI/ytP7avQ85qfzzIJOK/NG68GFXJOU0p/iYjfAk+QGwJ7kozewbyraYH/Bv9XROwKfAScn1Ja17ZHoIZExK+B8cCAiKgCLgN6Qu05vZfcnMEXgffI/7+zsd+HNm9//pJSSZIkZYRDnJIkSRljQJMkScoYA5okSVLGGNAkSZIyxoAmSZKUMQY0SZKkjDGgSZIkZYwBTZIkKWP+f5E7dHoeWrAIAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 720x360 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# -----------------------------\\n\",\n    \"# Run This Cell to Produce Your Plot\\n\",\n    \"# ------------------------------\\n\",\n    \"reuters_corpus = read_corpus()\\n\",\n    \"M_co_occurrence, word2ind_co_occurrence = compute_co_occurrence_matrix(reuters_corpus)\\n\",\n    \"M_reduced_co_occurrence = reduce_to_k_dim(M_co_occurrence, k=2)\\n\",\n    \"\\n\",\n    \"# Rescale (normalize) the rows to make them each of unit-length\\n\",\n    \"M_lengths = np.linalg.norm(M_reduced_co_occurrence, axis=1)\\n\",\n    \"M_normalized = M_reduced_co_occurrence / M_lengths[:, np.newaxis] # broadcasting\\n\",\n    \"\\n\",\n    \"words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\\n\",\n    \"\\n\",\n    \"plot_embeddings(M_normalized, word2ind_co_occurrence, words)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- From the plot above, there's three clusters that we can observe:\\n\",\n    \"    - petroleum, industry\\n\",\n    \"    - energy, oil\\n\",\n    \"    - ecuador, iraq, kuwait\\n\",\n    \"- Countries that are major exporters of oil have been clustered together. This makes sense as co-occurence matrices group general topics and since oil countries likely share similar co-occurence words in the reuter articles corpus, they are expected to cluster together here. \\n\",\n    \"- \\\"bpd\\\", \\\"barrels\\\" and \\\"output\\\" should cluster together, but apparently they have less co-occurance in given datasets. Also, petroleum and oil could be clustered more closely together as crude oil and petroleum are sometimes used synonymously.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 2: Prediction-Based Word Vectors (15 points)\\n\",\n    \"\\n\",\n    \"As discussed in class, more recently prediction-based word vectors have demonstrated better performance, such as word2vec and GloVe (which also utilizes the benefit of counts). Here, we shall explore the embeddings produced by GloVe. Please revisit the class notes and lecture slides for more details on the word2vec and GloVe algorithms. If you're feeling adventurous, challenge yourself and try reading [GloVe's original paper](https://nlp.stanford.edu/pubs/glove.pdf).\\n\",\n    \"\\n\",\n    \"Then run the following cells to load the GloVe vectors into memory. **Note**: If this is your first time to run these cells, i.e. download the embedding model, it will take a couple minutes to run. If you've run these cells before, rerunning them will load the model without redownloading it, which will take about 1 to 2 minutes.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_embedding_model():\\n\",\n    \"    \\\"\\\"\\\" Load GloVe Vectors\\n\",\n    \"        Return:\\n\",\n    \"            wv_from_bin: All 400000 embeddings, each lengh 200\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    import gensim.downloader as api\\n\",\n    \"    wv_from_bin = api.load(\\\"glove-wiki-gigaword-200\\\")\\n\",\n    \"    print(\\\"Loaded vocab size %i\\\" % len(wv_from_bin.vocab.keys()))\\n\",\n    \"    return wv_from_bin\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Loaded vocab size 400000\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# -----------------------------------\\n\",\n    \"# Run Cell to Load Word Vectors\\n\",\n    \"# Note: This will take a couple minutes\\n\",\n    \"# -----------------------------------\\n\",\n    \"wv_from_bin = load_embedding_model()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Note: If you are receiving a \\\"reset by peer\\\" error, rerun the cell to restart the download. \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Reducing dimensionality of Word Embeddings\\n\",\n    \"Let's directly compare the GloVe embeddings to those of the co-occurrence matrix. In order to avoid running out of memory, we will work with a sample of 10000 GloVe vectors instead.\\n\",\n    \"Run the following cells to:\\n\",\n    \"\\n\",\n    \"1. Put 10000 Glove vectors into a matrix M\\n\",\n    \"2. Run `reduce_to_k_dim` (your Truncated SVD function) to reduce the vectors from 200-dimensional to 2-dimensional.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_matrix_of_vectors(wv_from_bin, required_words=['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']):\\n\",\n    \"    \\\"\\\"\\\" Put the GloVe vectors into a matrix M.\\n\",\n    \"        Param:\\n\",\n    \"            wv_from_bin: KeyedVectors object; the 400000 GloVe vectors loaded from file\\n\",\n    \"        Return:\\n\",\n    \"            M: numpy matrix shape (num words, 200) containing the vectors\\n\",\n    \"            word2ind: dictionary mapping each word to its row number in M\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    import random\\n\",\n    \"    words = list(wv_from_bin.vocab.keys())\\n\",\n    \"    print(\\\"Shuffling words ...\\\")\\n\",\n    \"    random.seed(224)\\n\",\n    \"    random.shuffle(words)\\n\",\n    \"    words = words[:10000]\\n\",\n    \"    print(\\\"Putting %i words into word2ind and matrix M...\\\" % len(words))\\n\",\n    \"    word2ind = {}\\n\",\n    \"    M = []\\n\",\n    \"    curInd = 0\\n\",\n    \"    for w in words:\\n\",\n    \"        try:\\n\",\n    \"            M.append(wv_from_bin.word_vec(w))\\n\",\n    \"            word2ind[w] = curInd\\n\",\n    \"            curInd += 1\\n\",\n    \"        except KeyError:\\n\",\n    \"            continue\\n\",\n    \"    for w in required_words:\\n\",\n    \"        if w in words:\\n\",\n    \"            continue\\n\",\n    \"        try:\\n\",\n    \"            M.append(wv_from_bin.word_vec(w))\\n\",\n    \"            word2ind[w] = curInd\\n\",\n    \"            curInd += 1\\n\",\n    \"        except KeyError:\\n\",\n    \"            continue\\n\",\n    \"    M = np.stack(M)\\n\",\n    \"    print(\\\"Done.\\\")\\n\",\n    \"    return M, word2ind\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Shuffling words ...\\n\",\n      \"Putting 10000 words into word2ind and matrix M...\\n\",\n      \"Done.\\n\",\n      \"Running Truncated SVD over 10010 words...\\n\",\n      \"Done.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# -----------------------------------------------------------------\\n\",\n    \"# Run Cell to Reduce 200-Dimensional Word Embeddings to k Dimensions\\n\",\n    \"# Note: This should be quick to run\\n\",\n    \"# -----------------------------------------------------------------\\n\",\n    \"M, word2ind = get_matrix_of_vectors(wv_from_bin)\\n\",\n    \"M_reduced = reduce_to_k_dim(M, k=2)\\n\",\n    \"\\n\",\n    \"# Rescale (normalize) the rows to make them each of unit-length\\n\",\n    \"M_lengths = np.linalg.norm(M_reduced, axis=1)\\n\",\n    \"M_reduced_normalized = M_reduced / M_lengths[:, np.newaxis] # broadcasting\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**Note: If you are receiving out of memory issues on your local machine, try closing other applications to free more memory on your device. You may want to try restarting your machine so that you can free up extra memory. Then immediately run the jupyter notebook and see if you can load the word vectors properly. If you still have problems with loading the embeddings onto your local machine after this, please go to office hours or contact course staff.**\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.1: GloVe Plot Analysis [written] (3 points)\\n\",\n    \"\\n\",\n    \"Run the cell below to plot the 2D GloVe embeddings for `['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']`.\\n\",\n    \"\\n\",\n    \"What clusters together in 2-dimensional embedding space? What doesn't cluster together that you think should have? How is the plot different from the one generated earlier from the co-occurrence matrix? What is a possible cause for the difference?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAmoAAAEvCAYAAAD1r+09AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAk80lEQVR4nO3deZQV1b238edHA1EJ0CpRVOQiAQcgSnhbFMRXFHAiEWOCcYgBRdH7+oYOZpmoydW+UaNZK4qNSczyehXvS4wZbgw4xDi2Q5wARcAg6tVGGlQgDBGDCPZ+/zin2wYbaTg9VDfPZ61e51TVPrV31QH6y967qiKlhCRJkrKnXUs3QJIkSfUzqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRrVv6QZ8lm7duqVevXq1dDMkSZK2ac6cOStTSl9ozH1mOqj16tWL2bNnt3QzJEmStikiFjf2Ph36lCRJyiiDmiRJUkYZ1CRJkjLKoCZJkpRRBjVJktTmvfvuu3zve99rUNnzzz+fioqK7dr/n/70J4CO29uubTGoSZKkNq979+7ccMMNjbKvjz/++FPrthbUIqKokLoipVTI55tUSUlJ8vYckiRph6QEEQBUVlYyfPhwUkqsX7+eAw44gMWLF3PUUUexceNG5s2bx6677kq/fv1YsmQJGzZsYNddd6WqqoolS5awePFiDj74YMaOHcvKlSupqqpi8eLFdOnShUGDBvHYY4/xwQcffAisSintl79Vxz+B1cAS4PqU0ksR8S/AbSmlUQ05BHvUJElS21NWBt/9bi6sAU9UVLBp5UrOPeAAxo4dy4cffsjQoUOprKzknnvuYcOGDYwaNYrf/OY3zJs3j2uvvZa7776bdu3acf/99wOwceNGfvGLX9C3b186derEQw89xNtvv83ee+9Nnz59ABYDiyKiO7AP8FFKaShwKzAh37Jzgf9s6GFk+oa3kiRJ2y0lePBBeP753PJNN/Hqz3/O6g8+YNqzz7Lre+9RM6LYqVMnVq5cyV577cX777/P2rVrqa6u5kc/+hG77LILa9asoaqqigEDBtCxY0e6dOnCpZdeymGHHcbUqVMZMWIERxxxBLNmzaqp/Q5gPLAW+H/5dY8B10XEbsBXgesaeij2qEmSpLbniCNyr1OnQrt2HDhnDnsC4wcO5IdXXMG8efMoLi4mpUS3bt1YtWoVH330EcXFxRQVFXHdddfx0EMP0aNHD8477zxWrFjBRx99BMCee+7JUUcdxaRJk7j++uv561//SlFREUAAvwe+BnQC7gRIuVT438AvgSdTShsaehiNEtQi4sSIWBQRb0TEZfVsj4iYmt8+LyIGNUa9kiRJnxIBN90EkybVrjoWKOrShWnvvce1P/kJEyZMqN1WVFTEhAkT+POf/8zpp5/Ol770Ja644grGjBnDunXrKCkp4Re/+AUdO+auFbjxxhtZtmwZo0aNYsOGDaxfv55+/foB7AuUA88B1SmlFXVadQdwFnDbdh1KoRcT5K9meA0YBVQBs4AzU0p/q1PmZOA7wMnAEUB5SumIbe3biwkkSdIOSSk3R23q1E/WTZqUC3D5CwwKsXHjRjp06ADABRdcwAknnMDYsWPnpJRKIuIm4P6U0sM15SNib+A3KaXjtqeexuhRGwy8kVJ6M6X0EXA3MGaLMmOA/0o5zwHFEbFPI9QtSZK0ufpCGuSW61xgUIj58+dz9NFHM2TIENatW8epp54KQETcCfTcIqSNAmYC12xvPY1xMcF+5C47rVFFrtdsW2X2A97ZcmcRMRGYCNCzZ89GaJ4kSdrp1FxIUNOLVhPcatYXaNCgQTz11FOfWp9SGlfPuoeBhz9VuAEaI6jV13+4ZVRtSJncypRuJXcZKyUlJdm9yZskScqmCDjxxNwFBTVDnTfdlNu2++6NMvTZXBojqFUB+9dZ7gEs24EykiRJjaOsbLMb3taGtVYU0qBx5qjNAvpGxAER0RE4g9w4bF0zgW/nr/48ElibUvrUsKckSVKj2TKUtbKQBo3Qo5ZS2hQR/xf4C1AE3J5SeiUiLspv/xXwALkrPt8g9ziFcwutV5Ikqa1rlCcTpJQeIBfG6q77VZ33Cbi4MeqSJEnaWfhkAkmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJG2nqqoqhg8f3uT1GNQkSZKaUEQU7ehnDWqSJKlNuvzyyznmmGMYMmQI9913H2+//TYnnngixxxzDCNGjKC6uprx48fz9NNPAzB9+nTKysoA+MEPfsCxxx7LoEGDuPXWWwFYt24do0ePZuTIkdx444219bz22ms1vWsHRcRvI2JXgIhYHBG/BGbs6DG039EPSpIkZU5KEMGDDz7I6tWreaKign+uX8+QIUM48MADueSSSzj++OOprq6mXbut91ddeeWVdOrUiQ0bNvClL32Jc889l//4j/9g2LBhXH755fz617/mxRdfBOD73/8+P/7xjznmmGMWAa8AFwBTgX2A61NKb+/o4dijJkmS2oayMpg8GVJi/vz5PPHEEwzff39O7tePDRs28Le//Y1jjz0WoDakRUTtx1NKte9vueUWhg0bxvHHH8/y5ctZvnw5r732GoMHDwbgiCOOqC372muvMXTo0JrFZ4CD8++XFhLSwKAmSZLagpRgzRooL+fdiRN59plnOH6XXahYupSKU09l3ssv079/fyoqKgCorq4GYI899qCqqgqAOXPmALB69Wpuv/12nnjiCf7yl7/QtWtXUkr07duX2bNnAzBr1qzaqg888ECeeeaZmsWhwKL8+48LPayomx6zpqSkJNWcEEmSpM+UUq5HrbwcgH8DntpvP6JvX/bdd1+uu+46LrjgAj788EM6dOjAQw89xKJFizjzzDPp2bMn3bp1o2fPnlx11VWcfvrpVFVVccghhzB37lxmzpxJ165dOf3009m4cSMDBgxg7ty5VFRU8Oqrr3LhhRfy5JNPrgP+ApyTUlofEW+klPoUckgGNUmS1HakRGW7dpwPDAMqx41j1apVnHnmmcydO5cXXniBtWvXctFFFzFx4kTWrVvHN7/5TTZs2MChhx7Kiy++WNvrtr0iYk5KqaQxD8eLCSRJUutX0/E0efJmqz83Zw4z582DCE455ZQGXyCQFc5RkyRJrVtZGXz3u7mf8nIYPx723x/224+hCxbUXmCwPRcIZIVBTZIktV41FxFMnQrPPw+TJuXWL1kC++1H0fHHQ3Exq9es+dQFAr/97W/Zf//9671AoD6VlZWMHDmyiQ9ocw59SpKk1isCpkzJvS8vz4U1yPWonXgi9OkD55xDcUr079+fYcOGccghh7Dnnnvy+9//njvuuIPJkyfz8MMPM2DAAAA+/vhjiop2+GECjcoeNUmS1LrVCWuVwFhg76OP5r777+fvq1axdu1avvnNb7Jq1Sp23XVXrrjiCn72s5+xcOFCzj33XPr06cNtt93G448/zsKFC7ngggt47rnnGDp0KMOGDeNf//Vf2fLiyyVLljB69GiOO+44Ro8ezYoVK/JNiTc+aVY8EhG98j8vRMQdEbEgIs6OiDsj4sWIuPyzDs0eNUmS1LpVV8Mll9QuVgKPde3KLs88w+GDB/Pyyy9z2mmnccYZZ/Dyyy9z2WWX8Yc//IGBAwcyffp0evToQWVlJUuWLKF///7cfvvtlJSU8Lvf/Y7evXtz3nnnce+993LooYfW1nHppZfyb//2bxx55JHMmDGDn/70p9tq5X7A/waK803sBawkd8+167b2IYOaJElqva66CmbOhLlzobQUJk3i4EMPpfMtt0DHjgwYMIB33nmH8vJyfvWrXwHQvn398eewww7j8ccfB2Dt2rX07t0bgKFDh/Lqq69uFtTmz5/PZZddBsCmTZvo06fe26VFnfevppQ+BN6NiKUppXcBImJ9RBSllOq9Oa5BTZIktU4pwdq1uZA2cCDceCOcfz6vfvAB6770JXbp3JkFFRUMGjSIiRMn8rWvfQ2Ajz76CICOHTuyadOm2t3VnZfWtWtX3nzzTXr37s0zzzzDmDFjNqu6f//+XH755Xz5y1+u3eedd94J0C4iPgcUAYfUbe1W3sPmgW4zBjVJktQ6bXkhQT5o9dprLy7o14/X//xnxo0bx3nnncdFF13EzTffTEqJr3zlK3zve9/jtNNOY8KECQwdOpQJEyZstuupU6dy9tlnU1RURP/+/TnllFNYvHhx7fYbbriBiy++mHXr1gFw3nnn1Wz6OfAcMBeoKvgQfTKBJElq1VKC/EPWK4HzR4zgkUceafZmNMWTCbzqU5IktV41z/es67XXPnlSQStnUJMkSa1T3Yewl5ZCdTW9Skt5ZMmS2qcRtHbOUZMkSa1TBBQX50LalCmbz1krLs4tt3LOUZMkSa1bSpuHsi2Xm0nm5qhFxB4R8XBEvJ5/3b2eMvtHxOMRsTAiXomI0kLqlCRJ2syWoawN9KTVKHSO2mXAoymlvsCj+eUtbQK+l1I6BDgSuDgi+hVYryRJUptXaFAbA9yZf38ncOqWBVJK76SUXsy/fx9YSO4xCpIkSfoMhQa1vVNK70AukAF7fVbhiOgFfBl4vsB6JUmS2rxtXvUZEY8A3evZ9MPtqSgiPg/8N/DdlNI/PqPcRGAiQM+ePbenCkmSpDZlmz1qKaWRKaUB9fzMAN6LiH0A8q/L69tHRHQgF9J+nVL64zbquzWlVJJSKvnCF76w/UckSZJ2Otdffz3z588H2NoD0lulQu+jNhMYB1yff52xZYGICOA/gYUppRsLrE+SJOlTLrusvusZW79C56hdD4yKiNeBUfllImLfiHggX+Yo4BzguIiYm/85ucB6JUnSTiqlxIUXXsiwYcMYOnQoL7zwAuPHj+fpp59u6aY1uoJ61FJKfwdG1LN+GXBy/v3TQNu5oYkkSWp+dW5iO2PGDDZ+9BFPP/00b775JmeccQb9+rXNO3/5rE9JkpRtZWWbPbtz0auvMnTJEigro3fv3qxevbpl29eEDGqSJCm7UoI1a3IPXs+HtYP++leeefRRWLOGN//nfyguLm7pVjYZg5okScqumgetl5bmwlq7dpxy330U9e/PsNmzOftb3+Lmm29u6VY2GR/KLkmSsi8laFenf6m6OnPP9MzcQ9klSZKaXEq5Yc+66sxZa8sMapIkKbtqQlp5eW74s7r6k2HQnSCsFXrDW0mSpKYTAcXFuXA2Zconc9Ygtz5jw5+NzTlqkiQp++rcR63e5QxwjpokSdo5bRnKMhbSmopBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkNZvKykpGjhzZJPueNm0aDz/8MABTp05tkjqam0FNkiS1CePHj2fUqFGAQU2SJKkgP//5zznkkEM499xza9f16dMHgBEjRrBq1Srmz59Px44def/995k1axYTJ04E4IQTTmD48OEMHjyYZ599FoCysjKmT5/OXXfdxdKlSxk+fDjXXntt8x9YI2rf0g2QJEltXEoQsdmqK664go4dO3LLLbcwffr0T31k+PDhPP7441RVVXHSSSfx5JNPsmDBAo499lgA/vjHP9KpUycWLlzIxRdfzGOPPVb72bPOOosrr7ySioqKJj2s5mBQkyRJTaesDNasgSlTcmEtJV559llWvfIKzy1eXNsbtqURI0Ywffp0Vq5cyVVXXcX06dNZuHAhd9xxB+vXr6e0tJRFixZRVFTE0qVLm/WQmpNDn5IkqWmklAtp5eUweXJu+eqr6f/Pf/LDQYM4/fTT2WOPPaiqqgJg7ty5bNq0CYDBgwfz/PPPs2HDBgYNGsQrr7zC3//+d7p3786DDz5IUVERTz31FL/85S9JKX2q6vbt21NdXd2cR9sk7FGTJElNIyLXkwa5sFZennu///58/b776HDvvVxxxRV07tyZY445hmOOOYb27XPRpH379nTv3p2BAwcC0L17d/r27QvAkCFDuO666xg5ciRHHXVUvVV/4xvfYPTo0Zx00klMmjSpSQ+zKUV9KTQrSkpK0uzZs1u6GZIkqRApQbs6g3jV1Z+as9YWRMSclFJJY+7ToU9JktR0UsoNe9ZVMwyqbTKoSZKkplET0srLobQ015NWWrr5nDV9JueoSZKkphEBxcW5cFZz1WfNnLXi4jY5/NnYnKMmSZKa1pb3UavnvmptgXPUJElS67NlKGuDIa2pGNQkSZIyyqAmSZKUUQUFtYjYIyIejojX86+7f0bZooh4KSLuK6ROSZKknUWhPWqXAY+mlPoCj+aXt6YUWFhgfZIkSTuNQoPaGODO/Ps7gVPrKxQRPYDRwG0F1idJkrTTKDSo7Z1Segcg/7rXVsrdBHwfaP1PR5UkSWom27zhbUQ8AnSvZ9MPG1JBRHwFWJ5SmhMRwxtQfiIwEaBnz54NqUKSJKlN2mZQSymN3Nq2iHgvIvZJKb0TEfsAy+spdhRwSkScDOwCdImI6Smlb22lvluBWyF3w9uGHIQkSVJbVOjQ50xgXP79OGDGlgVSSpenlHqklHoBZwCPbS2kSZIk6ROFBrXrgVER8TowKr9MROwbEQ8U2jhJkqSdWUEPZU8p/R0YUc/6ZcDJ9ayvACoKqVOSJGln4ZMJJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJEmtzNSpU3f4s9OmTeMf//hHI7ZGTcmgJklSK2NQ23kY1CRJyoCUEhdeeCHDhg1j6NChvPDCCwwfPpyqqioArrnmGqZNm8Zdd93F0qVLGT58ONdeey0VFRWccMIJfP3rX2fgwIH8/ve/B2D8+PE8/fTTAEyfPp2ysjIee+wx5s6dy9ixY/nOd77TYseqhmvf0g2QJGmnlhJEMGPGDDZu3MjTTz3Fm2+9xRlnnMFuu+32qeJnnXUWV155JRUVFQBUVFSwdOlSXnrpJdavX09JSQlf//rX663quOOOY+DAgUyfPp0ePXo05VGpkRjUJElqKWVlsGYNTJnCokWLGDpkCEyeTO/iYlavXk2nTp1qi6aUtrqbL3/5y3To0IEOHTqw1157sWLFCiKiQZ9Vtjn0KUlSS0gpF9LKy2HyZA468ECeuekmKC/nzcWLKS4uZo899qgd+pwzZ07tR9u3b091dXXt8ty5c9m0aRPvv/8+7733Ht26ddvqZzt27MimTZua5RBVOHvUJElqCREwZUrufXk5p5SXcz8wbJ99+PjVV7n55pvZsGED559/PgceeCCf+9znaj/6jW98g9GjR3PSSSdx6KGHsu+++zJ27FjeeustrrnmGoqKijj//PM588wzueuuu+jWrRvFxcUAnHbaaUyYMIGhQ4dy9dVXN/9xa7tElrtDS0pK0uzZs1u6GZIkNZ2UoF2dAa7q6lyIa6CKigqmT5/Obbfd1gSN0/aIiDkppZLG3KdDn5IktZSUYPLkzddNnpxbL1FgUIuIPSLi4Yh4Pf+6+1bKFUfEHyLi1YhYGBFDCqlXkqRWryaklZdDaWmuJ620tHbOWkPD2vDhw+1Na8MK7VG7DHg0pdQXeDS/XJ9y4MGU0sHAYcDCAuuVJKl1i4Di4lw4mzLlkzlrpaW59dsx/Km2q6A5ahGxCBieUnonIvYBKlJKB21RpgvwMtA7bWdlzlGTJLV5+fuobXVZrUYW56jtnVJ6ByD/ulc9ZXoDK4A7IuKliLgtIjrVU06SpJ3PlqHMkKY6thnUIuKRiFhQz8+YBtbRHhgE3JJS+jLwAVsfIiUiJkbE7IiYvWLFigZWIUmS1PZs8z5qKaWRW9sWEe9FxD51hj6X11OsCqhKKT2fX/4DnxHUUkq3ArdCbuhzW+2TJElqqwod+pwJjMu/HwfM2LJASuldYElE1MxdGwH8rcB6JUmS2rxCg9r1wKiIeB0YlV8mIvaNiAfqlPsO8OuImAcMBH5SYL2SJEltXkGPkEop/Z1cD9mW65cBJ9dZngs06lUQkiRJbZ1PJpAkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okqclUVlYycuTIVrdvKSsMapKkTKmurt5s+eOPP26hlkgtr31LN0CS1LatXbuWs88+m0WLFnHOOedw6KGH8uMf/5hNmzaxxx578Nvf/pZddtmFPn36cPrpp/Pss89y6aWXUl5eTpcuXfjiF7/ISSedxJVXXklEcPDBB3PLLbdsVseUKVO4++672W233Tj11FMpLS1toaOVGpdBTZLUuFKCiNrFyspKHnvsMXbZZRcOP/xwZsyYweOPPw7AD37wA373u9/x7W9/m02bNvHVr36Vn/zkJ1RUVLBs2TLuu+8+2rdvz6BBg6ioqKBr165MnjyZ+++/nwEDBtTW8etf/5rHH3+czp07f6pHTmrNDGqSpMZTVgZr1sCUKbmwlhIHd+xI5xtugLIyBgwYwLvvvssFF1zAhg0beO+99+jSpQsARUVFHHnkkbW7KikpoUOHDqxYsYLKykrGjBkDwLp16zjooIM2C2o33XQTkyZNYtOmTVx44YUMGzasOY9aajIGNUlS40gpF9LKy3PLU6bA1Vfz6rJlrFu+nF02bmTBggWUlZXx7//+7wwZMoTvf//7pJQAiAiiTk9cUVERAN26daN3797cd999fP7znwdg48aNLF26tLbsoEGDGDZsGFVVVYwZM4Y5c+Y0zzFLTcygJklqHBG5cAa5sJYPbL322osLVq/m9SFDGDduHN27d2fChAkcdNBBdO3atbZHbeu7DW688UZOOeUUUkq0a9eOKVOmbPa5c845h5UrV/Lhhx9y8cUXN9khSs0tav4nk0UlJSVp9uzZLd0MSdL2SAna1bmpQHX1ZnPWpLYqIuaklEoac5/enkOS1HhSgsmTN183eXJuvaTtZlCTJDWOmpBWXg6lpbmetNLS3LJhTdohzlGTJDWOCCguzoWzmqs+a+asFRc7/CntAOeoSZIa1xb3UfvUstRGOUdNkpR9W4YyQ5q0wwxqkiRJGWVQkyRJyqiCglpE7BERD0fE6/nX3bdSbnJEvBIRCyLiNxGxSyH1SpIk7QwK7VG7DHg0pdQXeDS/vJmI2A+YBJSklAYARcAZBdYrSZLU5hUa1MYAd+bf3wmcupVy7YFdI6I9sBuwrMB6JUmS2rxCg9reKaV3APKve21ZIKW0FPgZ8DbwDrA2pfRQgfVKkiS1edsMahHxSH5u2ZY/YxpSQX7e2hjgAGBfoFNEfOszyk+MiNkRMXvFihUNPQ5JkqQ2Z5tPJkgpjdzatoh4LyL2SSm9ExH7AMvrKTYSeCultCL/mT8CQ4HpW6nvVuBWyN3wdtuHIEmS1DYVOvQ5ExiXfz8OmFFPmbeBIyNit4gIYASwsMB6JUmS2rxCg9r1wKiIeB0YlV8mIvaNiAcAUkrPA38AXgTm5+u8tcB6JUmS2jyf9SlJktQIfNanJEnSTsSgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGpAZWUlI0eO3O7PXXPNNUybNq3xGyRJkoRBTZIkKbPat3QDWkxKEFG7uHbtWs4++2wWLVrEOeecQ9euXbn//vv58MMPqaqqYurUqRx99NE8+eSTTJo0iZ49e/K5z32OHj16tOBBSJKktqygHrWIGBsRr0REdUSUfEa5EyNiUUS8ERGXFVJnoygrg8mTc2ENICUqX3mFX/XsybPPPssdd9zB8uXLef/997n33nu55557mDx5MgCXXHIJM2fOZMaMGaxdu7bljkGSJLV5hQ59LgBOA57cWoGIKAJ+AZwE9APOjIh+Bda741KCNWugvPyTsHb11Ry8fj2d16+nQ/v2DBgwgJQShx9+OAC9evWqDWX/+Mc/6NmzJxHB4MGDW+wwJElS21dQUEspLUwpLdpGscHAGymlN1NKHwF3A2MKqbcgETBlCpSW5sJau3Zwxx28uuuurLv6ajZ9/DELFiwgIpgzZw4Ab7/9Nl26dAGgc+fOVFVVATBr1qwWOwxJktT2Nccctf2AJXWWq4AjmqHerasJa+Xltat69e/PBRMn8vrrrzNu3Dh23313dtttN0aPHs2yZcuYMmUKADfccANf/epX2XfffencuXNLHYEkSdoJbDOoRcQjQPd6Nv0wpTSjAXVEPevSZ9Q3EZgI0LNnzwbsfgeklBv2zOsFzDrqqFx4y19gMG3aNAYOHMiPfvSjzT46fPhwXnrppaZplyRJUh3bDGoppe2/wdjmqoD96yz3AJZ9Rn23ArcClJSUbDXQ7bCakFZenhv+nDLlk2XYLKxJkiS1pOYY+pwF9I2IA4ClwBnAWc1Qb/0ioLj4k5BWMwwKufX5kDZ+/PiWaqEkSRIAkdKOd1pFxNeAm4EvAGuAuSmlEyJiX+C2lNLJ+XInAzcBRcDtKaVrG7L/kpKSNHv27B1u32fa4j5qn1qWJEnaDhExJ6W01duV7YiCetRSSvcA99Szfhlwcp3lB4AHCqmr0W0ZygxpkiQpY3yElCRJUkYZ1CRJkjLKoCZJkpRRBjVJkqSMMqhJkiRllEFNkiQpowxqkiRJGVXQDW+bWkSsABa3dDsaSTdgZUs3Yifnd9CyPP8ty/Pfsjz/Lau5zv+/pJS+0Jg7zHRQa0siYnZj361Y28fvoGV5/luW579lef5bVms+/w59SpIkZZRBTZIkKaMMas3n1pZugPwOWpjnv2V5/luW579ltdrz7xw1SZKkjLJHTZIkKaMMao0sIk6MiEUR8UZEXFbP9oiIqfnt8yJiUEu0s61qwPk/O3/e50XEMxFxWEu0s63a1vmvU+7wiPg4Ir7RnO1r6xpy/iNieETMjYhXIuKJ5m5jW9eAf4O6RsS9EfFy/js4tyXa2RZFxO0RsTwiFmxle6v8/WtQa0QRUQT8AjgJ6AecGRH9tih2EtA3/zMRuKVZG9mGNfD8vwUck1I6FLiaVjxvIWsaeP5ryv0U+EvztrBta8j5j4hi4JfAKSml/sDY5m5nW9bAvwMXA39LKR0GDAduiIiOzdrQtmsacOJnbG+Vv38Nao1rMPBGSunNlNJHwN3AmC3KjAH+K+U8BxRHxD7N3dA2apvnP6X0TEppdX7xOaBHM7exLWvIn3+A7wD/DSxvzsbtBBpy/s8C/phSehsgpeR30Lga8h0koHNEBPB5YBWwqXmb2TallJ4kdz63plX+/jWoNa79gCV1lqvy67a3jHbM9p7bCcCfm7RFO5dtnv+I2A/4GvCrZmzXzqIhf/4PBHaPiIqImBMR32621u0cGvId/Bw4BFgGzAdKU0rVzdO8nV6r/P3bvqUb0MZEPeu2vKy2IWW0Yxp8biPiWHJBbViTtmjn0pDzfxPwg5TSx7kOBTWihpz/9sD/AkYAuwLPRsRzKaXXmrpxO4mGfAcnAHOB44AvAg9HxFMppX80cdvUSn//GtQaVxWwf53lHuT+17S9ZbRjGnRuI+JQ4DbgpJTS35upbTuDhpz/EuDufEjrBpwcEZtSSn9qlha2bQ3992dlSukD4IOIeBI4DDCoNY6GfAfnAten3L2x3oiIt4CDgReap4k7tVb5+9ehz8Y1C+gbEQfkJ4eeAczcosxM4Nv5q0+OBNamlN5p7oa2Uds8/xHRE/gjcI69CI1um+c/pXRASqlXSqkX8Afg/xjSGk1D/v2ZARwdEe0jYjfgCGBhM7ezLWvId/A2uR5NImJv4CDgzWZt5c6rVf7+tUetEaWUNkXE/yV3NVsRcHtK6ZWIuCi//VfAA8DJwBvAP8n970qNoIHn/0pgT+CX+V6dTa31Qb1Z08DzrybSkPOfUloYEQ8C84Bq4LaUUr23MtD2a+DfgauBaRExn9xQ3A9SSitbrNFtSET8htyVtN0iogq4CugArfv3r08mkCRJyiiHPiVJkjLKoCZJkpRRBjVJkqSMMqhJkiRllEFNkiQpowxqkiRJGWVQkyRJyiiDmiRJUkb9f4XN2TEuM67oAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 720x360 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\\n\",\n    \"plot_embeddings(M_reduced_normalized, word2ind, words)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Unlike the window-based co-occurence embeddings, these prediction-based GloVe embeddings do not cluster together countries (\\\"iraq\\\", \\\"ecuador\\\" and \\\"kuwait\\\"). For e.g., Kuwait is largely displaced from Iraq. \\n\",\n    \"- GloVe seems to cluster together \\\"energy\\\" and \\\"industry\\\" more closely than co-occurence embeddings. \\\"oil\\\" and \\\"petroleum\\\" also cluster together, which aligns well with our expectations. \\\"barrels\\\" and \\\"bpd\\\" are still far off even though they're expected to be a bit closer since barrels-per-day should be a function of the number of barrels.\\n\",\n    \"- These GloVe word vectors were trained upon a much larger corpus that covers many topics. Meanwhile, our co-occurrence word vectors were generated using a relatively smaller corpus of news articles on the topic of crude oil. As a result, the GloVe vectors contain semantic information outside the context of oil. This may explain why the countries are not clustered here.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Cosine Similarity\\n\",\n    \"Now that we have word vectors, we need a way to quantify the similarity between individual words, according to these vectors. One such metric is cosine-similarity. We will be using this to find words that are \\\"close\\\" and \\\"far\\\" from one another.\\n\",\n    \"\\n\",\n    \"We can think of n-dimensional vectors as points in n-dimensional space. If we take this perspective [L1](http://mathworld.wolfram.com/L1-Norm.html) and [L2](http://mathworld.wolfram.com/L2-Norm.html) Distances help quantify the amount of space \\\"we must travel\\\" to get between these two points. Another approach is to examine the angle between two vectors. From trigonometry we know that:\\n\",\n    \"\\n\",\n    \"<img src=\\\"imgs/inner_product.png\\\" width=20% style=\\\"float: center;\\\"></img>\\n\",\n    \"\\n\",\n    \"Instead of computing the actual angle, we can leave the similarity in terms of $similarity = cos(\\\\Theta)$. Formally the [Cosine Similarity](https://en.wikipedia.org/wiki/Cosine_similarity) $s$ between two vectors $p$ and $q$ is defined as:\\n\",\n    \"\\n\",\n    \"$$s = \\\\frac{p \\\\cdot q}{||p|| ||q||}, \\\\textrm{ where } s \\\\in [-1, 1] $$ \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.2: Words with Multiple Meanings (1.5 points) [code + written] \\n\",\n    \"Polysemes and homonyms are words that have more than one meaning (see this [wiki page](https://en.wikipedia.org/wiki/Polysemy) to learn more about the difference between polysemes and homonyms ). Find a word with *at least two different meanings* such that the top-10 most similar words (according to cosine similarity) contain related words from *both* meanings. For example, \\\"leaves\\\" has both \\\"go_away\\\" and \\\"a_structure_of_a_plant\\\" meaning in the top 10, and \\\"scoop\\\" has both \\\"handed_waffle_cone\\\" and \\\"lowdown\\\". You will probably need to try several polysemous or homonymic words before you find one. \\n\",\n    \"\\n\",\n    \"Please state the word you discover and the multiple meanings that occur in the top 10. Why do you think many of the polysemous or homonymic words you tried didn't work (i.e. the top-10 most similar words only contain **one** of the meanings of the words)?\\n\",\n    \"\\n\",\n    \"**Note**: You should use the `wv_from_bin.most_similar(word)` function to get the top 10 similar words. This function ranks all other words in the vocabulary with respect to their cosine similarity to the given word. For further assistance, please check the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.FastTextKeyedVectors.most_similar)__.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[('weapons', 0.7115006446838379),\\n\",\n       \" ('hand', 0.5853789448738098),\\n\",\n       \" ('hands', 0.582863986492157),\\n\",\n       \" ('weapon', 0.5786144733428955),\\n\",\n       \" ('embargo', 0.5249772667884827),\\n\",\n       \" ('arm', 0.5146462917327881),\\n\",\n       \" ('weaponry', 0.513433039188385),\\n\",\n       \" ('nuclear', 0.5115358829498291),\\n\",\n       \" ('disarmament', 0.5083263516426086),\\n\",\n       \" ('iraq', 0.49865245819091797)]\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    wv_from_bin.most_similar(\\\"arms\\\")\\n\",\n    \"    #wv_from_bin.most_similar(\\\"mouse\\\")\\n\",\n    \"    #wv_from_bin.most_similar(\\\"mole\\\")\\n\",\n    \"    #wv_from_bin.most_similar(\\\"tear\\\")\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Since both \\\"weapons\\\" and \\\"arms\\\" are among the top 10 meanings of the word \\\"arms\\\", this implies that the embedding has captured both meanings of \\\"arms\\\": weaponry and limb.\\n\",\n    \"- A reason why many polysemous words don't exhibit different meanings is that these GloVe vectors are built upon Wiki data in which more often than not words tend to take on the same meanings. Another reason could be that the top 10 similar words sometimes include different forms of the same word (arm) or its meanings (hand/hands).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.3: Synonyms & Antonyms (2 points) [code + written] \\n\",\n    \"\\n\",\n    \"When considering Cosine Similarity, it's often more convenient to think of Cosine Distance, which is simply 1 - Cosine Similarity.\\n\",\n    \"\\n\",\n    \"Find three words $(w_1,w_2,w_3)$ where $w_1$ and $w_2$ are synonyms and $w_1$ and $w_3$ are antonyms, but Cosine Distance $(w_1,w_3) <$ Cosine Distance $(w_1,w_2)$. \\n\",\n    \"\\n\",\n    \"As an example, $w_1$=\\\"happy\\\" is closer to $w_3$=\\\"sad\\\" than to $w_2$=\\\"cheerful\\\". Please find a different example that satisfies the above. Once you have found your example, please give a possible explanation for why this counter-intuitive result may have happened.\\n\",\n    \"\\n\",\n    \"You should use the the `wv_from_bin.distance(w1, w2)` function here in order to compute the cosine distance between two words. Please see the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.FastTextKeyedVectors.distance)__ for further assistance.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Synonyms love, affection have cosine distance: 0.42052197456359863\\n\",\n      \"Antonyms love, hate have cosine distance: 0.49353712797164917\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    w1 = \\\"love\\\" # synonym 1\\n\",\n    \"    w2 = \\\"affection\\\" # synonym 2\\n\",\n    \"    w3 = \\\"hate\\\" # antonym\\n\",\n    \"    w1_w2_dist = wv_from_bin.distance(w1, w2)\\n\",\n    \"    w1_w3_dist = wv_from_bin.distance(w1, w3)\\n\",\n    \"\\n\",\n    \"    print(\\\"Synonyms {}, {} have cosine distance: {}\\\".format(w1, w2, w1_w2_dist))\\n\",\n    \"    print(\\\"Antonyms {}, {} have cosine distance: {}\\\".format(w1, w3, w1_w3_dist))\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- The proximity of words to each other in a sequence, i.e., the context, carries more weight than their similarity in meaning/semantics in determining word embeddings.\\n\",\n    \"- Some words can be antonyms, but can still be used in the same context, so their distance is lower than a pair of synonyms. Conversely, even where two words are synonyms, they can be used in different contexts. As such, $w_1$ and $w_3$ might have appeared in more similar contexts than $w_1$ and $w_2$. This could lead to $w_1's$ and $w_3's$ vectors to be more similar to each other than $w_1's$ and $w_2's$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.4: Analogies with Word Vectors [written] (1.5 points)\\n\",\n    \"Word vectors have been shown to *sometimes* exhibit the ability to solve analogies. \\n\",\n    \"\\n\",\n    \"As an example, for the analogy \\\"man : king :: woman : x\\\" (read: man is to king as woman is to x), what is x?\\n\",\n    \"\\n\",\n    \"In the cell below, we show you how to use word vectors to find x using the `most_similar` function from the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.KeyedVectors.most_similar)__. The function finds words that are most similar to the words in the `positive` list and most dissimilar from the words in the `negative` list (while omitting the input words, which are often the most similar; see [this paper](https://www.aclweb.org/anthology/N18-2039.pdf)). The answer to the analogy will have the highest cosine similarity (largest returned numerical value).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('queen', 0.6978679299354553),\\n\",\n      \" ('princess', 0.6081743836402893),\\n\",\n      \" ('monarch', 0.5889754891395569),\\n\",\n      \" ('throne', 0.5775110125541687),\\n\",\n      \" ('prince', 0.5750998258590698),\\n\",\n      \" ('elizabeth', 0.5463595986366272),\\n\",\n      \" ('daughter', 0.5399126410484314),\\n\",\n      \" ('kingdom', 0.5318052768707275),\\n\",\n      \" ('mother', 0.5168544054031372),\\n\",\n      \" ('crown', 0.5164472460746765)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Run this cell to answer the analogy -- man : king :: woman : x\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'king'], negative=['man']))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let $m$, $k$, $w$, and $x$ denote the word vectors for `man`, `king`, `woman`, and the answer, respectively. Using **only** vectors $m$, $k$, $w$, and the vector arithmetic operators $+$ and $-$ in your answer, what is the expression in which we are maximizing cosine similarity with $x$?\\n\",\n    \"\\n\",\n    \"Hint: Recall that word vectors are simply multi-dimensional vectors that represent a word. It might help to draw out a 2D example using arbitrary locations of each vector. Where would `man` and `woman` lie in the coordinate plane relative to `king` and the answer?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"The expression in which we are maximizing cosine similarity with $x$ is:\\n\",\n    \"$$|k - m| \\\\approx |x - w|$$\\n\",\n    \"\\n\",\n    \"Programmatically, we are trying to ensure that the distance (measured using cosine similarity) between $k - m$ is as similar as possible to $x - w$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.5: Finding Analogies [code + written]  (1.5 points)\\n\",\n    \"Find an example of analogy that holds according to these vectors (i.e. the intended word is ranked top). In your solution please state the full analogy in the form x:y :: a:b. If you believe the analogy is complicated, explain why the analogy holds in one or two sentences.\\n\",\n    \"\\n\",\n    \"**Note**: You may have to try many analogies to find one that works!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('actress', 0.8572621941566467),\\n\",\n      \" ('actresses', 0.6734701991081238),\\n\",\n      \" ('actors', 0.6297088861465454),\\n\",\n      \" ('starring', 0.6084522604942322),\\n\",\n      \" ('starred', 0.5989463925361633),\\n\",\n      \" ('screenwriter', 0.595988929271698),\\n\",\n      \" ('dancer', 0.5881683230400085),\\n\",\n      \" ('comedian', 0.5791141390800476),\\n\",\n      \" ('singer', 0.5661861300468445),\\n\",\n      \" ('married', 0.5574131011962891)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=['woman','actor'], negative=['man']))\\n\",\n    \"    #pprint.pprint(wv_from_bin.most_similar(positive=['paris', 'italy'], negative=['rome']))\\n\",\n    \"    \\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Example 1:\\n\",\n    \"    - man:actor :: woman:actress\\n\",\n    \"- Example 2:\\n\",\n    \"    - rome:italy :: paris:france\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.6: Incorrect Analogy [code + written] (1.5 points)\\n\",\n    \"Find an example of analogy that does *not* hold according to these vectors. In your solution, state the intended analogy in the form x:y :: a:b, and state the (incorrect) value of b according to the word vectors.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('45,000-square', 0.4922032356262207),\\n\",\n      \" ('15,000-square', 0.4649604260921478),\\n\",\n      \" ('10,000-square', 0.45447564125061035),\\n\",\n      \" ('6,000-square', 0.44975778460502625),\\n\",\n      \" ('3,500-square', 0.4441334307193756),\\n\",\n      \" ('700-square', 0.44257500767707825),\\n\",\n      \" ('50,000-square', 0.4356396794319153),\\n\",\n      \" ('3,000-square', 0.43486514687538147),\\n\",\n      \" ('30,000-square', 0.4330596923828125),\\n\",\n      \" ('footed', 0.43236875534057617)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=[\\\"foot\\\", \\\"glove\\\"], negative=[\\\"hand\\\"]))\\n\",\n    \"    #pprint.pprint(wv_from_bin.most_similar(positive=[\\\"england\\\", \\\"india\\\"], negative=[\\\"english\\\"]))\\n\",\n    \"    #pprint.pprint(wv_from_bin.most_similar(positive=[\\\"america\\\", \\\"peacock\\\"], negative=[\\\"india\\\"]))\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Example 1:\\n\",\n    \"    - Actual: hand:glove :: foot:sock\\n\",\n    \"    - Expected: hand:glove :: foot:sock\\n\",\n    \"    - Explanation: Intended analogy is \\\"hand : glove :: foot : sock\\\" but all the returned words are related to foot (as a measurement), body parts, or other things.\\n\",\n    \"- Example 2:\\n\",\n    \"    - Actual: england:english :: india:pakistan\\n\",\n    \"    - Expected: england:english :: india:hindi\\n\",\n    \"- Example 3:\\n\",\n    \"    - Actual: india:peacock :: america:nbc\\n\",\n    \"    - Expected: india:peacock :: america:eagle \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.7: Guided Analysis of Bias in Word Vectors [written] (1 point)\\n\",\n    \"\\n\",\n    \"It's important to be cognizant of the biases (gender, race, sexual orientation etc.) implicit in our word embeddings. Bias can be dangerous because it can reinforce stereotypes through applications that employ these models.\\n\",\n    \"\\n\",\n    \"Run the cell below, to examine (a) which terms are most similar to \\\"woman\\\" and \\\"worker\\\" and most dissimilar to \\\"man\\\", and (b) which terms are most similar to \\\"man\\\" and \\\"worker\\\" and most dissimilar to \\\"woman\\\". Point out the difference between the list of female-associated words and the list of male-associated words, and explain how it is reflecting gender bias.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('employee', 0.6375863552093506),\\n\",\n      \" ('workers', 0.6068919897079468),\\n\",\n      \" ('nurse', 0.5837946534156799),\\n\",\n      \" ('pregnant', 0.536388635635376),\\n\",\n      \" ('mother', 0.5321309566497803),\\n\",\n      \" ('employer', 0.5127025842666626),\\n\",\n      \" ('teacher', 0.5099576711654663),\\n\",\n      \" ('child', 0.5096741914749146),\\n\",\n      \" ('homemaker', 0.5019454956054688),\\n\",\n      \" ('nurses', 0.4970572292804718)]\\n\",\n      \"\\n\",\n      \"[('workers', 0.611325740814209),\\n\",\n      \" ('employee', 0.5983108282089233),\\n\",\n      \" ('working', 0.5615329146385193),\\n\",\n      \" ('laborer', 0.5442320108413696),\\n\",\n      \" ('unemployed', 0.5368516445159912),\\n\",\n      \" ('job', 0.5278826951980591),\\n\",\n      \" ('work', 0.5223962664604187),\\n\",\n      \" ('mechanic', 0.5088937282562256),\\n\",\n      \" ('worked', 0.5054520964622498),\\n\",\n      \" ('factory', 0.4940453767776489)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Run this cell\\n\",\n    \"# Here `positive` indicates the list of words to be similar to and `negative` indicates the list of words to be\\n\",\n    \"# most dissimilar from.\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'worker'], negative=['man']))\\n\",\n    \"print()\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['man', 'worker'], negative=['woman']))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"There seems to be some bias in the vectors generated around occupations with respect to gender.\\n\",\n    \"\\n\",\n    \"- Nurse, teacher, homemaker are among the top 10 terms most similar to \\\"woman\\\" and \\\"worker\\\" but most disimilar to \\\"man\\\".\\n\",\n    \"- Laborer, mechanic and factory are examples of terms most similar to \\\"man\\\" and \\\"worker\\\" but most disimilar to \\\"woman\\\".\\n\",\n    \"\\n\",\n    \"The vectors thus seem to have learnt some discrepency in employment roles among genders. However, some gender-neutral words like employee, workers do show up in both cases.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.8: Independent Analysis of Bias in Word Vectors [code + written]  (1 point)\\n\",\n    \"\\n\",\n    \"Use the `most_similar` function to find another case where some bias is exhibited by the vectors. Please briefly explain the example of bias that you discover.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('professions', 0.5957457423210144),\\n\",\n      \" ('practitioner', 0.49884119629859924),\\n\",\n      \" ('teaching', 0.48292142152786255),\\n\",\n      \" ('nursing', 0.4821180999279022),\\n\",\n      \" ('vocation', 0.4788965880870819),\\n\",\n      \" ('teacher', 0.47160348296165466),\\n\",\n      \" ('practicing', 0.4693780839443207),\\n\",\n      \" ('educator', 0.46524325013160706),\\n\",\n      \" ('physicians', 0.4628995358943939),\\n\",\n      \" ('professionals', 0.4601393938064575)]\\n\",\n      \"\\n\",\n      \"[('reputation', 0.5250176191329956),\\n\",\n      \" ('professions', 0.5178037881851196),\\n\",\n      \" ('skill', 0.49046963453292847),\\n\",\n      \" ('skills', 0.49005505442619324),\\n\",\n      \" ('ethic', 0.4897659420967102),\\n\",\n      \" ('business', 0.4875851273536682),\\n\",\n      \" ('respected', 0.4859202802181244),\\n\",\n      \" ('practice', 0.4821045994758606),\\n\",\n      \" ('regarded', 0.47785723209381104),\\n\",\n      \" ('life', 0.4760662317276001)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'profession'], negative=['man']))\\n\",\n    \"    print()\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=['man', 'profession'], negative=['woman']))\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- The professions that are most similar to \\\"man\\\" but most dissimilar to \\\"woman\\\" draws up a range of careers such as physicians, educator/teacher etc. and also features keywords such as practitioner and professionals.\\n\",\n    \"- On the flipside, the embeddings that are most similar to \\\"woman\\\" and profession but most dissimilar to \\\"man\\\" are reputation, skills, ethic, business, etc. \\n\",\n    \"- This example thus exhibits a clear bias in gender-specific career choices, since careers like physicians, educator/teacher have more similarity to \\\"man\\\" than \\\"woman\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.9: Thinking About Bias [written] (2 points)\\n\",\n    \"\\n\",\n    \"Give one explanation of how bias gets into the word vectors. What is an experiment that you could do to test for or to measure this source of bias?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- \\\"Your model is only as good as the data it is trained on\\\" a.k.a. \\\"garbage in/garbage out\\\". \\n\",\n    \"- Since your model solely relies on the input data to generate its embeddings, biases inherent to society can be implicitly propagated through the data the model is trained on. This raises concerns because their widespread use often tends to amplify these biases. \\n\",\n    \"- Often news articles exhibit bias related to race, religion, gender, sexual orientation, etc. Since the training objective is to maximize the probability of prediciting the next word correctly, if the context windows within the data have implicit biases, they will likely be captured by the model. For instance, while the association between the words \\\"female\\\" and \\\"queen\\\" is desired, the association between between the words \\\"female\\\" and \\\"receptionist\\\" indicates a unhealthy gender stereotype that needs to be neutralized, i.e. not be gender-related.\\n\",\n    \"- To test or measure the source of bias, you can compute a vector $g = e_{woman}-e_{man}$, where $e_{woman}$ represents the word vector corresponding to the word \\\"woman\\\", and $e_{man}$ corresponds to the word vector corresponding to the word \\\"man\\\". The resulting vector $g$ thus roughly encodes the concept of \\\"gender\\\". Now, by comparing the distance between $g$ and a list of say, professions, we can uncover unhealthy gender stereotypes.\\n\",\n    \"- Further, using an equalization algorithm proposed by [Boliukbasi et al. (2016)](https://arxiv.org/abs/1607.06520), we can debias word vectors to some extent by modifying them to reduce gender stereotypes (but not eliminate it altogether).\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"cs224n\",\n   \"language\": \"python\",\n   \"name\": \"cs224n\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.7.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "a1/Gensim word vector visualization.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Gensim word vector visualization of various word vectors\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"\\n\",\n    \"# Get the interactive Tools for Matplotlib\\n\",\n    \"%matplotlib notebook\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"plt.style.use('ggplot')\\n\",\n    \"\\n\",\n    \"from sklearn.decomposition import PCA\\n\",\n    \"\\n\",\n    \"from gensim.test.utils import datapath, get_tmpfile\\n\",\n    \"from gensim.models import KeyedVectors\\n\",\n    \"from gensim.scripts.glove2word2vec import glove2word2vec\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"For looking at word vectors, I'll use Gensim. We also use it in hw1 for word vectors. Gensim isn't really a deep learning package. It's a package for for word and text similarity modeling, which started with (LDA-style) topic models and grew into SVD and neural word representations. But its efficient and scalable, and quite widely used.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Our homegrown Stanford offering is GloVe word vectors. Gensim doesn't give them first class support, but allows you to convert a file of GloVe vectors into word2vec format. You can download the GloVe vectors from [the Glove page](https://nlp.stanford.edu/projects/glove/). They're inside [this zip file](https://nlp.stanford.edu/data/glove.6B.zip)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"(I use the 100d vectors below as a mix between speed and smallness vs. quality. If you try out the 50d vectors, they basically work for similarity but clearly aren't as good for analogy problems. If you load the 300d vectors, they're even better than the 100d vectors.)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"glove_file = datapath('/Users/manning/Corpora/GloVe/glove.6B.100d.txt')\\n\",\n    \"word2vec_glove_file = get_tmpfile(\\\"glove.6B.100d.word2vec.txt\\\")\\n\",\n    \"glove2word2vec(glove_file, word2vec_glove_file)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = KeyedVectors.load_word2vec_format(word2vec_glove_file)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model.most_similar('obama')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model.most_similar('banana')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model.most_similar(negative='banana')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"result = model.most_similar(positive=['woman', 'king'], negative=['man'])\\n\",\n    \"print(\\\"{}: {:.4f}\\\".format(*result[0]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def analogy(x1, x2, y1):\\n\",\n    \"    result = model.most_similar(positive=[y1, x2], negative=[x1])\\n\",\n    \"    return result[0][0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"![Analogy](imgs/word2vec-king-queen-composition.png)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"analogy('japan', 'japanese', 'australia')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"analogy('australia', 'beer', 'france')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"analogy('obama', 'clinton', 'reagan')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"analogy('tall', 'tallest', 'long')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"analogy('good', 'fantastic', 'bad')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"print(model.doesnt_match(\\\"breakfast cereal dinner lunch\\\".split()))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def display_pca_scatterplot(model, words=None, sample=0):\\n\",\n    \"    if words == None:\\n\",\n    \"        if sample > 0:\\n\",\n    \"            words = np.random.choice(list(model.vocab.keys()), sample)\\n\",\n    \"        else:\\n\",\n    \"            words = [ word for word in model.vocab ]\\n\",\n    \"        \\n\",\n    \"    word_vectors = np.array([model[w] for w in words])\\n\",\n    \"\\n\",\n    \"    twodim = PCA().fit_transform(word_vectors)[:,:2]\\n\",\n    \"    \\n\",\n    \"    plt.figure(figsize=(6,6))\\n\",\n    \"    plt.scatter(twodim[:,0], twodim[:,1], edgecolors='k', c='r')\\n\",\n    \"    for word, (x,y) in zip(words, twodim):\\n\",\n    \"        plt.text(x+0.05, y+0.05, word)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"display_pca_scatterplot(model, \\n\",\n    \"                        ['coffee', 'tea', 'beer', 'wine', 'brandy', 'rum', 'champagne', 'water',\\n\",\n    \"                         'spaghetti', 'borscht', 'hamburger', 'pizza', 'falafel', 'sushi', 'meatballs',\\n\",\n    \"                         'dog', 'horse', 'cat', 'monkey', 'parrot', 'koala', 'lizard',\\n\",\n    \"                         'frog', 'toad', 'monkey', 'ape', 'kangaroo', 'wombat', 'wolf',\\n\",\n    \"                         'france', 'germany', 'hungary', 'luxembourg', 'australia', 'fiji', 'china',\\n\",\n    \"                         'homework', 'assignment', 'problem', 'exam', 'test', 'class',\\n\",\n    \"                         'school', 'college', 'university', 'institute'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"display_pca_scatterplot(model, sample=300)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.7.1\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "a1/README.txt",
    "content": "Welcome to CS224N!\n\nWe'll be using Python throughout the course. If you've got a good Python setup already, great! But make sure that it is at least Python version 3.5. If not, the easiest thing to do is to make sure you have at least 3GB free on your computer and then to head over to (https://www.anaconda.com/download/) and install the Python 3 version of Anaconda. It will work on any operating system.\n\nAfter you have installed conda, close any open terminals you might have. Then open a new terminal and run the following command:\n\n# 1. Create an environment with dependencies specified in env.yml:\n    \n    conda env create -f env.yml\n\n# 2. Activate the new environment:\n    \n    conda activate cs224n\n    \n# 3. Inside the new environment, instatll IPython kernel so we can use this environment in jupyter notebook: \n    \n    python -m ipykernel install --user --name cs224n\n\n\n# 4. Homework 1 (only) is a Jupyter Notebook. With the above done you should be able to get underway by typing:\n\n    jupyter notebook exploring_word_vectors.ipynb\n    \n# 5. To make sure we are using the right environment, go to the toolbar of exploring_word_vectors.ipynb, click on Kernel -> Change kernel, you should see and select cs224n in the drop-down menu.\n\n# To deactivate an active environment, use\n    \n    conda deactivate\n"
  },
  {
    "path": "a1/env.yml",
    "content": "name: cs224n\nchannels:\n  - defaults\n  - anaconda\ndependencies:\n  - jupyter\n  - matplotlib\n  - numpy\n  - python=3.7\n  - ipykernel\n  - scikit-learn\n  - nltk\n  - gensim\n \n"
  },
  {
    "path": "a1/exploring_word_vectors.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# CS224N Assignment 1: Exploring Word Vectors (25 Points)\\n\",\n    \"### <font color='blue'> Due 4:30pm, Tue Jan 19 </font>\\n\",\n    \"\\n\",\n    \"Welcome to CS224N! \\n\",\n    \"\\n\",\n    \"Before you start, make sure you read the README.txt in the same directory as this notebook for important setup information. A lot of code is provided in this notebook, and we highly encourage you to read and understand it as part of the learning :)\\n\",\n    \"\\n\",\n    \"If you aren't super familiar with Python, Numpy, or Matplotlib, we recommend you check out the review session on Friday. The session will be recorded and the material will be made available on our [website](http://web.stanford.edu/class/cs224n/index.html#schedule). The CS231N Python/Numpy [tutorial](https://cs231n.github.io/python-numpy-tutorial/) is also a great resource.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"**Assignment Notes:** Please make sure to save the notebook as you go along. Submission Instructions are located at the bottom of the notebook.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# All Import Statements Defined Here\\n\",\n    \"# Note: Do not add to this list.\\n\",\n    \"# ----------------\\n\",\n    \"\\n\",\n    \"import sys\\n\",\n    \"assert sys.version_info[0]==3\\n\",\n    \"assert sys.version_info[1] >= 5\\n\",\n    \"\\n\",\n    \"from gensim.models import KeyedVectors\\n\",\n    \"from gensim.test.utils import datapath\\n\",\n    \"import pprint\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"plt.rcParams['figure.figsize'] = [10, 5]\\n\",\n    \"import nltk\\n\",\n    \"nltk.download('reuters')\\n\",\n    \"from nltk.corpus import reuters\\n\",\n    \"import numpy as np\\n\",\n    \"import random\\n\",\n    \"import scipy as sp\\n\",\n    \"from sklearn.decomposition import TruncatedSVD\\n\",\n    \"from sklearn.decomposition import PCA\\n\",\n    \"\\n\",\n    \"START_TOKEN = '<START>'\\n\",\n    \"END_TOKEN = '<END>'\\n\",\n    \"\\n\",\n    \"np.random.seed(0)\\n\",\n    \"random.seed(0)\\n\",\n    \"# ----------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Word Vectors\\n\",\n    \"\\n\",\n    \"Word Vectors are often used as a fundamental component for downstream NLP tasks, e.g. question answering, text generation, translation, etc., so it is important to build some intuitions as to their strengths and weaknesses. Here, you will explore two types of word vectors: those derived from *co-occurrence matrices*, and those derived via *GloVe*. \\n\",\n    \"\\n\",\n    \"**Note on Terminology:** The terms \\\"word vectors\\\" and \\\"word embeddings\\\" are often used interchangeably. The term \\\"embedding\\\" refers to the fact that we are encoding aspects of a word's meaning in a lower dimensional space. As [Wikipedia](https://en.wikipedia.org/wiki/Word_embedding) states, \\\"*conceptually it involves a mathematical embedding from a space with one dimension per word to a continuous vector space with a much lower dimension*\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1: Count-Based Word Vectors (10 points)\\n\",\n    \"\\n\",\n    \"Most word vector models start from the following idea:\\n\",\n    \"\\n\",\n    \"*You shall know a word by the company it keeps ([Firth, J. R. 1957:11](https://en.wikipedia.org/wiki/John_Rupert_Firth))*\\n\",\n    \"\\n\",\n    \"Many word vector implementations are driven by the idea that similar words, i.e., (near) synonyms, will be used in similar contexts. As a result, similar words will often be spoken or written along with a shared subset of words, i.e., contexts. By examining these contexts, we can try to develop embeddings for our words. With this intuition in mind, many \\\"old school\\\" approaches to constructing word vectors relied on word counts. Here we elaborate upon one of those strategies, *co-occurrence matrices* (for more information, see [here](http://web.stanford.edu/class/cs124/lec/vectorsemantics.video.pdf) or [here](https://medium.com/data-science-group-iitr/word-embedding-2d05d270b285)).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Co-Occurrence\\n\",\n    \"\\n\",\n    \"A co-occurrence matrix counts how often things co-occur in some environment. Given some word $w_i$ occurring in the document, we consider the *context window* surrounding $w_i$. Supposing our fixed window size is $n$, then this is the $n$ preceding and $n$ subsequent words in that document, i.e. words $w_{i-n} \\\\dots w_{i-1}$ and $w_{i+1} \\\\dots w_{i+n}$. We build a *co-occurrence matrix* $M$, which is a symmetric word-by-word matrix in which $M_{ij}$ is the number of times $w_j$ appears inside $w_i$'s window among all documents.\\n\",\n    \"\\n\",\n    \"**Example: Co-Occurrence with Fixed Window of n=1**:\\n\",\n    \"\\n\",\n    \"Document 1: \\\"all that glitters is not gold\\\"\\n\",\n    \"\\n\",\n    \"Document 2: \\\"all is well that ends well\\\"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"|     *    | `<START>` | all | that | glitters | is   | not  | gold  | well | ends | `<END>` |\\n\",\n    \"|----------|-------|-----|------|----------|------|------|-------|------|------|-----|\\n\",\n    \"| `<START>`    | 0     | 2   | 0    | 0        | 0    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| all      | 2     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| that     | 0     | 1   | 0    | 1        | 0    | 0    | 0     | 1    | 1    | 0   |\\n\",\n    \"| glitters | 0     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| is       | 0     | 1   | 0    | 1        | 0    | 1    | 0     | 1    | 0    | 0   |\\n\",\n    \"| not      | 0     | 0   | 0    | 0        | 1    | 0    | 1     | 0    | 0    | 0   |\\n\",\n    \"| gold     | 0     | 0   | 0    | 0        | 0    | 1    | 0     | 0    | 0    | 1   |\\n\",\n    \"| well     | 0     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 1    | 1   |\\n\",\n    \"| ends     | 0     | 0   | 1    | 0        | 0    | 0    | 0     | 1    | 0    | 0   |\\n\",\n    \"| `<END>`      | 0     | 0   | 0    | 0        | 0    | 0    | 1     | 1    | 0    | 0   |\\n\",\n    \"\\n\",\n    \"**Note:** In NLP, we often add `<START>` and `<END>` tokens to represent the beginning and end of sentences, paragraphs or documents. In thise case we imagine `<START>` and `<END>` tokens encapsulating each document, e.g., \\\"`<START>` All that glitters is not gold `<END>`\\\", and include these tokens in our co-occurrence counts.\\n\",\n    \"\\n\",\n    \"The rows (or columns) of this matrix provide one type of word vectors (those based on word-word co-occurrence), but the vectors will be large in general (linear in the number of distinct words in a corpus). Thus, our next step is to run *dimensionality reduction*. In particular, we will run *SVD (Singular Value Decomposition)*, which is a kind of generalized *PCA (Principal Components Analysis)* to select the top $k$ principal components. Here's a visualization of dimensionality reduction with SVD. In this picture our co-occurrence matrix is $A$ with $n$ rows corresponding to $n$ words. We obtain a full matrix decomposition, with the singular values ordered in the diagonal $S$ matrix, and our new, shorter length-$k$ word vectors in $U_k$.\\n\",\n    \"\\n\",\n    \"![Picture of an SVD](./imgs/svd.png \\\"SVD\\\")\\n\",\n    \"\\n\",\n    \"This reduced-dimensionality co-occurrence representation preserves semantic relationships between words, e.g. *doctor* and *hospital* will be closer than *doctor* and *dog*. \\n\",\n    \"\\n\",\n    \"**Notes:** If you can barely remember what an eigenvalue is, here's [a slow, friendly introduction to SVD](https://davetang.org/file/Singular_Value_Decomposition_Tutorial.pdf). If you want to learn more thoroughly about PCA or SVD, feel free to check out lectures [7](https://web.stanford.edu/class/cs168/l/l7.pdf), [8](http://theory.stanford.edu/~tim/s15/l/l8.pdf), and [9](https://web.stanford.edu/class/cs168/l/l9.pdf) of CS168. These course notes provide a great high-level treatment of these general purpose algorithms. Though, for the purpose of this class, you only need to know how to extract the k-dimensional embeddings by utilizing pre-programmed implementations of these algorithms from the numpy, scipy, or sklearn python packages. In practice, it is challenging to apply full SVD to large corpora because of the memory needed to perform PCA or SVD. However, if you only want the top $k$ vector components for relatively small $k$ — known as [Truncated SVD](https://en.wikipedia.org/wiki/Singular_value_decomposition#Truncated_SVD) — then there are reasonably scalable techniques to compute those iteratively.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Plotting Co-Occurrence Word Embeddings\\n\",\n    \"\\n\",\n    \"Here, we will be using the Reuters (business and financial news) corpus. If you haven't run the import cell at the top of this page, please run it now (click it and press SHIFT-RETURN). The corpus consists of 10,788 news documents totaling 1.3 million words. These documents span 90 categories and are split into train and test. For more details, please see https://www.nltk.org/book/ch02.html. We provide a `read_corpus` function below that pulls out only articles from the \\\"crude\\\" (i.e. news articles about oil, gas, etc.) category. The function also adds `<START>` and `<END>` tokens to each of the documents, and lowercases words. You do **not** have to perform any other kind of pre-processing.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def read_corpus(category=\\\"crude\\\"):\\n\",\n    \"    \\\"\\\"\\\" Read files from the specified Reuter's category.\\n\",\n    \"        Params:\\n\",\n    \"            category (string): category name\\n\",\n    \"        Return:\\n\",\n    \"            list of lists, with words from each of the processed files\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    files = reuters.fileids(category)\\n\",\n    \"    return [[START_TOKEN] + [w.lower() for w in list(reuters.words(f))] + [END_TOKEN] for f in files]\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's have a look what these documents are like….\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"reuters_corpus = read_corpus()\\n\",\n    \"pprint.pprint(reuters_corpus[:3], compact=True, width=100)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.1: Implement `distinct_words` [code] (2 points)\\n\",\n    \"\\n\",\n    \"Write a method to work out the distinct words (word types) that occur in the corpus. You can do this with `for` loops, but it's more efficient to do it with Python list comprehensions. In particular, [this](https://coderwall.com/p/rcmaea/flatten-a-list-of-lists-in-one-line-in-python) may be useful to flatten a list of lists. If you're not familiar with Python list comprehensions in general, here's [more information](https://python-3-patterns-idioms-test.readthedocs.io/en/latest/Comprehensions.html).\\n\",\n    \"\\n\",\n    \"Your returned `corpus_words` should be sorted. You can use python's `sorted` function for this.\\n\",\n    \"\\n\",\n    \"You may find it useful to use [Python sets](https://www.w3schools.com/python/python_sets.asp) to remove duplicate words.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def distinct_words(corpus):\\n\",\n    \"    \\\"\\\"\\\" Determine a list of distinct words for the corpus.\\n\",\n    \"        Params:\\n\",\n    \"            corpus (list of list of strings): corpus of documents\\n\",\n    \"        Return:\\n\",\n    \"            corpus_words (list of strings): sorted list of distinct words across the corpus\\n\",\n    \"            num_corpus_words (integer): number of distinct words across the corpus\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    corpus_words = []\\n\",\n    \"    num_corpus_words = -1\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    return corpus_words, num_corpus_words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this not an exhaustive check for correctness.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"test_corpus_words, num_corpus_words = distinct_words(test_corpus)\\n\",\n    \"\\n\",\n    \"# Correct answers\\n\",\n    \"ans_test_corpus_words = sorted([START_TOKEN, \\\"All\\\", \\\"ends\\\", \\\"that\\\", \\\"gold\\\", \\\"All's\\\", \\\"glitters\\\", \\\"isn't\\\", \\\"well\\\", END_TOKEN])\\n\",\n    \"ans_num_corpus_words = len(ans_test_corpus_words)\\n\",\n    \"\\n\",\n    \"# Test correct number of words\\n\",\n    \"assert(num_corpus_words == ans_num_corpus_words), \\\"Incorrect number of distinct words. Correct: {}. Yours: {}\\\".format(ans_num_corpus_words, num_corpus_words)\\n\",\n    \"\\n\",\n    \"# Test correct words\\n\",\n    \"assert (test_corpus_words == ans_test_corpus_words), \\\"Incorrect corpus_words.\\\\nCorrect: {}\\\\nYours:   {}\\\".format(str(ans_test_corpus_words), str(test_corpus_words))\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.2: Implement `compute_co_occurrence_matrix` [code] (3 points)\\n\",\n    \"\\n\",\n    \"Write a method that constructs a co-occurrence matrix for a certain window-size $n$ (with a default of 4), considering words $n$ before and $n$ after the word in the center of the window. Here, we start to use `numpy (np)` to represent vectors, matrices, and tensors. If you're not familiar with NumPy, there's a NumPy tutorial in the second half of this cs231n [Python NumPy tutorial](http://cs231n.github.io/python-numpy-tutorial/).\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def compute_co_occurrence_matrix(corpus, window_size=4):\\n\",\n    \"    \\\"\\\"\\\" Compute co-occurrence matrix for the given corpus and window_size (default of 4).\\n\",\n    \"    \\n\",\n    \"        Note: Each word in a document should be at the center of a window. Words near edges will have a smaller\\n\",\n    \"              number of co-occurring words.\\n\",\n    \"              \\n\",\n    \"              For example, if we take the document \\\"<START> All that glitters is not gold <END>\\\" with window size of 4,\\n\",\n    \"              \\\"All\\\" will co-occur with \\\"<START>\\\", \\\"that\\\", \\\"glitters\\\", \\\"is\\\", and \\\"not\\\".\\n\",\n    \"    \\n\",\n    \"        Params:\\n\",\n    \"            corpus (list of list of strings): corpus of documents\\n\",\n    \"            window_size (int): size of context window\\n\",\n    \"        Return:\\n\",\n    \"            M (a symmetric numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): \\n\",\n    \"                Co-occurence matrix of word counts. \\n\",\n    \"                The ordering of the words in the rows/columns should be the same as the ordering of the words given by the distinct_words function.\\n\",\n    \"            word2ind (dict): dictionary that maps word to index (i.e. row/column number) for matrix M.\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    words, num_words = distinct_words(corpus)\\n\",\n    \"    M = None\\n\",\n    \"    word2ind = {}\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    return M, word2ind\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus and get student's co-occurrence matrix\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\\n\",\n    \"\\n\",\n    \"# Correct M and word2ind\\n\",\n    \"M_test_ans = np.array( \\n\",\n    \"    [[0., 0., 0., 0., 0., 0., 1., 0., 0., 1.,],\\n\",\n    \"     [0., 0., 1., 1., 0., 0., 0., 0., 0., 0.,],\\n\",\n    \"     [0., 1., 0., 0., 0., 0., 0., 0., 1., 0.,],\\n\",\n    \"     [0., 1., 0., 0., 0., 0., 0., 0., 0., 1.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 0., 0., 0., 1., 1.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 0., 0., 1., 1., 0.,],\\n\",\n    \"     [1., 0., 0., 0., 0., 0., 0., 1., 0., 0.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 1., 1., 0., 0., 0.,],\\n\",\n    \"     [0., 0., 1., 0., 1., 1., 0., 0., 0., 1.,],\\n\",\n    \"     [1., 0., 0., 1., 1., 0., 0., 0., 1., 0.,]]\\n\",\n    \")\\n\",\n    \"ans_test_corpus_words = sorted([START_TOKEN, \\\"All\\\", \\\"ends\\\", \\\"that\\\", \\\"gold\\\", \\\"All's\\\", \\\"glitters\\\", \\\"isn't\\\", \\\"well\\\", END_TOKEN])\\n\",\n    \"word2ind_ans = dict(zip(ans_test_corpus_words, range(len(ans_test_corpus_words))))\\n\",\n    \"\\n\",\n    \"# Test correct word2ind\\n\",\n    \"assert (word2ind_ans == word2ind_test), \\\"Your word2ind is incorrect:\\\\nCorrect: {}\\\\nYours: {}\\\".format(word2ind_ans, word2ind_test)\\n\",\n    \"\\n\",\n    \"# Test correct M shape\\n\",\n    \"assert (M_test.shape == M_test_ans.shape), \\\"M matrix has incorrect shape.\\\\nCorrect: {}\\\\nYours: {}\\\".format(M_test.shape, M_test_ans.shape)\\n\",\n    \"\\n\",\n    \"# Test correct M values\\n\",\n    \"for w1 in word2ind_ans.keys():\\n\",\n    \"    idx1 = word2ind_ans[w1]\\n\",\n    \"    for w2 in word2ind_ans.keys():\\n\",\n    \"        idx2 = word2ind_ans[w2]\\n\",\n    \"        student = M_test[idx1, idx2]\\n\",\n    \"        correct = M_test_ans[idx1, idx2]\\n\",\n    \"        if student != correct:\\n\",\n    \"            print(\\\"Correct M:\\\")\\n\",\n    \"            print(M_test_ans)\\n\",\n    \"            print(\\\"Your M: \\\")\\n\",\n    \"            print(M_test)\\n\",\n    \"            raise AssertionError(\\\"Incorrect count at index ({}, {})=({}, {}) in matrix M. Yours has {} but should have {}.\\\".format(idx1, idx2, w1, w2, student, correct))\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.3: Implement `reduce_to_k_dim` [code] (1 point)\\n\",\n    \"\\n\",\n    \"Construct a method that performs dimensionality reduction on the matrix to produce k-dimensional embeddings. Use SVD to take the top k components and produce a new matrix of k-dimensional embeddings. \\n\",\n    \"\\n\",\n    \"**Note:** All of numpy, scipy, and scikit-learn (`sklearn`) provide *some* implementation of SVD, but only scipy and sklearn provide an implementation of Truncated SVD, and only sklearn provides an efficient randomized algorithm for calculating large-scale Truncated SVD. So please use [sklearn.decomposition.TruncatedSVD](https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def reduce_to_k_dim(M, k=2):\\n\",\n    \"    \\\"\\\"\\\" Reduce a co-occurence count matrix of dimensionality (num_corpus_words, num_corpus_words)\\n\",\n    \"        to a matrix of dimensionality (num_corpus_words, k) using the following SVD function from Scikit-Learn:\\n\",\n    \"            - http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html\\n\",\n    \"    \\n\",\n    \"        Params:\\n\",\n    \"            M (numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): co-occurence matrix of word counts\\n\",\n    \"            k (int): embedding size of each word after dimension reduction\\n\",\n    \"        Return:\\n\",\n    \"            M_reduced (numpy matrix of shape (number of corpus words, k)): matrix of k-dimensioal word embeddings.\\n\",\n    \"                    In terms of the SVD from math class, this actually returns U * S\\n\",\n    \"    \\\"\\\"\\\"    \\n\",\n    \"    n_iters = 10     # Use this parameter in your call to `TruncatedSVD`\\n\",\n    \"    M_reduced = None\\n\",\n    \"    print(\\\"Running Truncated SVD over %i words...\\\" % (M.shape[0]))\\n\",\n    \"    \\n\",\n    \"        # ------------------\\n\",\n    \"        # Write your implementation here.\\n\",\n    \"    \\n\",\n    \"    \\n\",\n    \"        # ------------------\\n\",\n    \"\\n\",\n    \"    print(\\\"Done.\\\")\\n\",\n    \"    return M_reduced\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness \\n\",\n    \"# In fact we only check that your M_reduced has the right dimensions.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus and run student code\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\\n\",\n    \"M_test_reduced = reduce_to_k_dim(M_test, k=2)\\n\",\n    \"\\n\",\n    \"# Test proper dimensions\\n\",\n    \"assert (M_test_reduced.shape[0] == 10), \\\"M_reduced has {} rows; should have {}\\\".format(M_test_reduced.shape[0], 10)\\n\",\n    \"assert (M_test_reduced.shape[1] == 2), \\\"M_reduced has {} columns; should have {}\\\".format(M_test_reduced.shape[1], 2)\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.4: Implement `plot_embeddings` [code] (1 point)\\n\",\n    \"\\n\",\n    \"Here you will write a function to plot a set of 2D vectors in 2D space. For graphs, we will use Matplotlib (`plt`).\\n\",\n    \"\\n\",\n    \"For this example, you may find it useful to adapt [this code](http://web.archive.org/web/20190924160434/https://www.pythonmembers.club/2018/05/08/matplotlib-scatter-plot-annotate-set-text-at-label-each-point/). In the future, a good way to make a plot is to look at [the Matplotlib gallery](https://matplotlib.org/gallery/index.html), find a plot that looks somewhat like what you want, and adapt the code they give.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def plot_embeddings(M_reduced, word2ind, words):\\n\",\n    \"    \\\"\\\"\\\" Plot in a scatterplot the embeddings of the words specified in the list \\\"words\\\".\\n\",\n    \"        NOTE: do not plot all the words listed in M_reduced / word2ind.\\n\",\n    \"        Include a label next to each point.\\n\",\n    \"        \\n\",\n    \"        Params:\\n\",\n    \"            M_reduced (numpy matrix of shape (number of unique words in the corpus , 2)): matrix of 2-dimensioal word embeddings\\n\",\n    \"            word2ind (dict): dictionary that maps word to indices for matrix M\\n\",\n    \"            words (list of strings): words whose embeddings we want to visualize\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"\\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness.\\n\",\n    \"# The plot produced should look like the \\\"test solution plot\\\" depicted below. \\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print (\\\"Outputted Plot:\\\")\\n\",\n    \"\\n\",\n    \"M_reduced_plot_test = np.array([[1, 1], [-1, -1], [1, -1], [-1, 1], [0, 0]])\\n\",\n    \"word2ind_plot_test = {'test1': 0, 'test2': 1, 'test3': 2, 'test4': 3, 'test5': 4}\\n\",\n    \"words = ['test1', 'test2', 'test3', 'test4', 'test5']\\n\",\n    \"plot_embeddings(M_reduced_plot_test, word2ind_plot_test, words)\\n\",\n    \"\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<font color=red>**Test Plot Solution**</font>\\n\",\n    \"<br>\\n\",\n    \"<img src=\\\"./imgs/test_plot.png\\\" width=40% style=\\\"float: left;\\\"> </img>\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.5: Co-Occurrence Plot Analysis [written] (3 points)\\n\",\n    \"\\n\",\n    \"Now we will put together all the parts you have written! We will compute the co-occurrence matrix with fixed window of 4 (the default window size), over the Reuters \\\"crude\\\" (oil) corpus. Then we will use TruncatedSVD to compute 2-dimensional embeddings of each word. TruncatedSVD returns U\\\\*S, so we need to normalize the returned vectors, so that all the vectors will appear around the unit circle (therefore closeness is directional closeness). **Note**: The line of code below that does the normalizing uses the NumPy concept of *broadcasting*. If you don't know about broadcasting, check out\\n\",\n    \"[Computation on Arrays: Broadcasting by Jake VanderPlas](https://jakevdp.github.io/PythonDataScienceHandbook/02.05-computation-on-arrays-broadcasting.html).\\n\",\n    \"\\n\",\n    \"Run the below cell to produce the plot. It'll probably take a few seconds to run. What clusters together in 2-dimensional embedding space? What doesn't cluster together that you might think should have?  **Note:** \\\"bpd\\\" stands for \\\"barrels per day\\\" and is a commonly used abbreviation in crude oil topic articles.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# -----------------------------\\n\",\n    \"# Run This Cell to Produce Your Plot\\n\",\n    \"# ------------------------------\\n\",\n    \"reuters_corpus = read_corpus()\\n\",\n    \"M_co_occurrence, word2ind_co_occurrence = compute_co_occurrence_matrix(reuters_corpus)\\n\",\n    \"M_reduced_co_occurrence = reduce_to_k_dim(M_co_occurrence, k=2)\\n\",\n    \"\\n\",\n    \"# Rescale (normalize) the rows to make them each of unit-length\\n\",\n    \"M_lengths = np.linalg.norm(M_reduced_co_occurrence, axis=1)\\n\",\n    \"M_normalized = M_reduced_co_occurrence / M_lengths[:, np.newaxis] # broadcasting\\n\",\n    \"\\n\",\n    \"words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\\n\",\n    \"\\n\",\n    \"plot_embeddings(M_normalized, word2ind_co_occurrence, words)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 2: Prediction-Based Word Vectors (15 points)\\n\",\n    \"\\n\",\n    \"As discussed in class, more recently prediction-based word vectors have demonstrated better performance, such as word2vec and GloVe (which also utilizes the benefit of counts). Here, we shall explore the embeddings produced by GloVe. Please revisit the class notes and lecture slides for more details on the word2vec and GloVe algorithms. If you're feeling adventurous, challenge yourself and try reading [GloVe's original paper](https://nlp.stanford.edu/pubs/glove.pdf).\\n\",\n    \"\\n\",\n    \"Then run the following cells to load the GloVe vectors into memory. **Note**: If this is your first time to run these cells, i.e. download the embedding model, it will take a couple minutes to run. If you've run these cells before, rerunning them will load the model without redownloading it, which will take about 1 to 2 minutes.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_embedding_model():\\n\",\n    \"    \\\"\\\"\\\" Load GloVe Vectors\\n\",\n    \"        Return:\\n\",\n    \"            wv_from_bin: All 400000 embeddings, each lengh 200\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    import gensim.downloader as api\\n\",\n    \"    wv_from_bin = api.load(\\\"glove-wiki-gigaword-200\\\")\\n\",\n    \"    print(\\\"Loaded vocab size %i\\\" % len(wv_from_bin.vocab.keys()))\\n\",\n    \"    return wv_from_bin\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# -----------------------------------\\n\",\n    \"# Run Cell to Load Word Vectors\\n\",\n    \"# Note: This will take a couple minutes\\n\",\n    \"# -----------------------------------\\n\",\n    \"wv_from_bin = load_embedding_model()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Note: If you are receiving a \\\"reset by peer\\\" error, rerun the cell to restart the download. \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Reducing dimensionality of Word Embeddings\\n\",\n    \"Let's directly compare the GloVe embeddings to those of the co-occurrence matrix. In order to avoid running out of memory, we will work with a sample of 10000 GloVe vectors instead.\\n\",\n    \"Run the following cells to:\\n\",\n    \"\\n\",\n    \"1. Put 10000 Glove vectors into a matrix M\\n\",\n    \"2. Run `reduce_to_k_dim` (your Truncated SVD function) to reduce the vectors from 200-dimensional to 2-dimensional.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_matrix_of_vectors(wv_from_bin, required_words=['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']):\\n\",\n    \"    \\\"\\\"\\\" Put the GloVe vectors into a matrix M.\\n\",\n    \"        Param:\\n\",\n    \"            wv_from_bin: KeyedVectors object; the 400000 GloVe vectors loaded from file\\n\",\n    \"        Return:\\n\",\n    \"            M: numpy matrix shape (num words, 200) containing the vectors\\n\",\n    \"            word2ind: dictionary mapping each word to its row number in M\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    import random\\n\",\n    \"    words = list(wv_from_bin.vocab.keys())\\n\",\n    \"    print(\\\"Shuffling words ...\\\")\\n\",\n    \"    random.seed(224)\\n\",\n    \"    random.shuffle(words)\\n\",\n    \"    words = words[:10000]\\n\",\n    \"    print(\\\"Putting %i words into word2ind and matrix M...\\\" % len(words))\\n\",\n    \"    word2ind = {}\\n\",\n    \"    M = []\\n\",\n    \"    curInd = 0\\n\",\n    \"    for w in words:\\n\",\n    \"        try:\\n\",\n    \"            M.append(wv_from_bin.word_vec(w))\\n\",\n    \"            word2ind[w] = curInd\\n\",\n    \"            curInd += 1\\n\",\n    \"        except KeyError:\\n\",\n    \"            continue\\n\",\n    \"    for w in required_words:\\n\",\n    \"        if w in words:\\n\",\n    \"            continue\\n\",\n    \"        try:\\n\",\n    \"            M.append(wv_from_bin.word_vec(w))\\n\",\n    \"            word2ind[w] = curInd\\n\",\n    \"            curInd += 1\\n\",\n    \"        except KeyError:\\n\",\n    \"            continue\\n\",\n    \"    M = np.stack(M)\\n\",\n    \"    print(\\\"Done.\\\")\\n\",\n    \"    return M, word2ind\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# -----------------------------------------------------------------\\n\",\n    \"# Run Cell to Reduce 200-Dimensional Word Embeddings to k Dimensions\\n\",\n    \"# Note: This should be quick to run\\n\",\n    \"# -----------------------------------------------------------------\\n\",\n    \"M, word2ind = get_matrix_of_vectors(wv_from_bin)\\n\",\n    \"M_reduced = reduce_to_k_dim(M, k=2)\\n\",\n    \"\\n\",\n    \"# Rescale (normalize) the rows to make them each of unit-length\\n\",\n    \"M_lengths = np.linalg.norm(M_reduced, axis=1)\\n\",\n    \"M_reduced_normalized = M_reduced / M_lengths[:, np.newaxis] # broadcasting\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**Note: If you are receiving out of memory issues on your local machine, try closing other applications to free more memory on your device. You may want to try restarting your machine so that you can free up extra memory. Then immediately run the jupyter notebook and see if you can load the word vectors properly. If you still have problems with loading the embeddings onto your local machine after this, please go to office hours or contact course staff.**\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.1: GloVe Plot Analysis [written] (3 points)\\n\",\n    \"\\n\",\n    \"Run the cell below to plot the 2D GloVe embeddings for `['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']`.\\n\",\n    \"\\n\",\n    \"What clusters together in 2-dimensional embedding space? What doesn't cluster together that you think should have? How is the plot different from the one generated earlier from the co-occurrence matrix? What is a possible cause for the difference?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\\n\",\n    \"plot_embeddings(M_reduced_normalized, word2ind, words)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Cosine Similarity\\n\",\n    \"Now that we have word vectors, we need a way to quantify the similarity between individual words, according to these vectors. One such metric is cosine-similarity. We will be using this to find words that are \\\"close\\\" and \\\"far\\\" from one another.\\n\",\n    \"\\n\",\n    \"We can think of n-dimensional vectors as points in n-dimensional space. If we take this perspective [L1](http://mathworld.wolfram.com/L1-Norm.html) and [L2](http://mathworld.wolfram.com/L2-Norm.html) Distances help quantify the amount of space \\\"we must travel\\\" to get between these two points. Another approach is to examine the angle between two vectors. From trigonometry we know that:\\n\",\n    \"\\n\",\n    \"<img src=\\\"./imgs/inner_product.png\\\" width=20% style=\\\"float: center;\\\"></img>\\n\",\n    \"\\n\",\n    \"Instead of computing the actual angle, we can leave the similarity in terms of $similarity = cos(\\\\Theta)$. Formally the [Cosine Similarity](https://en.wikipedia.org/wiki/Cosine_similarity) $s$ between two vectors $p$ and $q$ is defined as:\\n\",\n    \"\\n\",\n    \"$$s = \\\\frac{p \\\\cdot q}{||p|| ||q||}, \\\\textrm{ where } s \\\\in [-1, 1] $$ \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.2: Words with Multiple Meanings (1.5 points) [code + written] \\n\",\n    \"Polysemes and homonyms are words that have more than one meaning (see this [wiki page](https://en.wikipedia.org/wiki/Polysemy) to learn more about the difference between polysemes and homonyms ). Find a word with *at least two different meanings* such that the top-10 most similar words (according to cosine similarity) contain related words from *both* meanings. For example, \\\"leaves\\\" has both \\\"go_away\\\" and \\\"a_structure_of_a_plant\\\" meaning in the top 10, and \\\"scoop\\\" has both \\\"handed_waffle_cone\\\" and \\\"lowdown\\\". You will probably need to try several polysemous or homonymic words before you find one. \\n\",\n    \"\\n\",\n    \"Please state the word you discover and the multiple meanings that occur in the top 10. Why do you think many of the polysemous or homonymic words you tried didn't work (i.e. the top-10 most similar words only contain **one** of the meanings of the words)?\\n\",\n    \"\\n\",\n    \"**Note**: You should use the `wv_from_bin.most_similar(word)` function to get the top 10 similar words. This function ranks all other words in the vocabulary with respect to their cosine similarity to the given word. For further assistance, please check the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.FastTextKeyedVectors.most_similar)__.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.3: Synonyms & Antonyms (2 points) [code + written] \\n\",\n    \"\\n\",\n    \"When considering Cosine Similarity, it's often more convenient to think of Cosine Distance, which is simply 1 - Cosine Similarity.\\n\",\n    \"\\n\",\n    \"Find three words $(w_1,w_2,w_3)$ where $w_1$ and $w_2$ are synonyms and $w_1$ and $w_3$ are antonyms, but Cosine Distance $(w_1,w_3) <$ Cosine Distance $(w_1,w_2)$. \\n\",\n    \"\\n\",\n    \"As an example, $w_1$=\\\"happy\\\" is closer to $w_3$=\\\"sad\\\" than to $w_2$=\\\"cheerful\\\". Please find a different example that satisfies the above. Once you have found your example, please give a possible explanation for why this counter-intuitive result may have happened.\\n\",\n    \"\\n\",\n    \"You should use the the `wv_from_bin.distance(w1, w2)` function here in order to compute the cosine distance between two words. Please see the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.FastTextKeyedVectors.distance)__ for further assistance.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.4: Analogies with Word Vectors [written] (1.5 points)\\n\",\n    \"Word vectors have been shown to *sometimes* exhibit the ability to solve analogies. \\n\",\n    \"\\n\",\n    \"As an example, for the analogy \\\"man : king :: woman : x\\\" (read: man is to king as woman is to x), what is x?\\n\",\n    \"\\n\",\n    \"In the cell below, we show you how to use word vectors to find x using the `most_similar` function from the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.KeyedVectors.most_similar)__. The function finds words that are most similar to the words in the `positive` list and most dissimilar from the words in the `negative` list (while omitting the input words, which are often the most similar; see [this paper](https://www.aclweb.org/anthology/N18-2039.pdf)). The answer to the analogy will have the highest cosine similarity (largest returned numerical value).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Run this cell to answer the analogy -- man : king :: woman : x\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'king'], negative=['man']))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let $m$, $k$, $w$, and $x$ denote the word vectors for `man`, `king`, `woman`, and the answer, respectively. Using **only** vectors $m$, $k$, $w$, and the vector arithmetic operators $+$ and $-$ in your answer, what is the expression in which we are maximizing cosine similarity with $x$?\\n\",\n    \"\\n\",\n    \"Hint: Recall that word vectors are simply multi-dimensional vectors that represent a word. It might help to draw out a 2D example using arbitrary locations of each vector. Where would `man` and `woman` lie in the coordinate plane relative to `king` and the answer?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.5: Finding Analogies [code + written]  (1.5 points)\\n\",\n    \"Find an example of analogy that holds according to these vectors (i.e. the intended word is ranked top). In your solution please state the full analogy in the form x:y :: a:b. If you believe the analogy is complicated, explain why the analogy holds in one or two sentences.\\n\",\n    \"\\n\",\n    \"**Note**: You may have to try many analogies to find one that works!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.6: Incorrect Analogy [code + written] (1.5 points)\\n\",\n    \"Find an example of analogy that does *not* hold according to these vectors. In your solution, state the intended analogy in the form x:y :: a:b, and state the (incorrect) value of b according to the word vectors.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.7: Guided Analysis of Bias in Word Vectors [written] (1 point)\\n\",\n    \"\\n\",\n    \"It's important to be cognizant of the biases (gender, race, sexual orientation etc.) implicit in our word embeddings. Bias can be dangerous because it can reinforce stereotypes through applications that employ these models.\\n\",\n    \"\\n\",\n    \"Run the cell below, to examine (a) which terms are most similar to \\\"woman\\\" and \\\"worker\\\" and most dissimilar to \\\"man\\\", and (b) which terms are most similar to \\\"man\\\" and \\\"worker\\\" and most dissimilar to \\\"woman\\\". Point out the difference between the list of female-associated words and the list of male-associated words, and explain how it is reflecting gender bias.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Run this cell\\n\",\n    \"# Here `positive` indicates the list of words to be similar to and `negative` indicates the list of words to be\\n\",\n    \"# most dissimilar from.\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'worker'], negative=['man']))\\n\",\n    \"print()\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['man', 'worker'], negative=['woman']))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.8: Independent Analysis of Bias in Word Vectors [code + written]  (1 point)\\n\",\n    \"\\n\",\n    \"Use the `most_similar` function to find another case where some bias is exhibited by the vectors. Please briefly explain the example of bias that you discover.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.9: Thinking About Bias [written] (2 points)\\n\",\n    \"\\n\",\n    \"Give one explanation of how bias gets into the word vectors. What is an experiment that you could do to test for or to measure this source of bias?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# <font color=\\\"blue\\\"> Submission Instructions</font>\\n\",\n    \"\\n\",\n    \"1. Click the Save button at the top of the Jupyter Notebook.\\n\",\n    \"2. Select Cell -> All Output -> Clear. This will clear all the outputs from all cells (but will keep the content of all cells). \\n\",\n    \"2. Select Cell -> Run All. This will run all the cells in order, and will take several minutes.\\n\",\n    \"3. Once you've rerun everything, select File -> Download as -> PDF via LaTeX (If you have trouble using \\\"PDF via LaTex\\\", you can also save the webpage as pdf. <font color='blue'> Make sure all your solutions especially the coding parts are displayed in the pdf</font>, it's okay if the provided codes get cut off because lines are not wrapped in code cells).\\n\",\n    \"4. Look at the PDF file and make sure all your solutions are there, displayed correctly. The PDF is the only thing your graders will see!\\n\",\n    \"5. Submit your PDF on Gradescope.\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.7.4\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "a1/exploring_word_vectors_solved.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# CS224N Assignment 1: Exploring Word Vectors (25 Points)\\n\",\n    \"### <font color='blue'> Due 4:30pm, Tue Jan 19 </font>\\n\",\n    \"\\n\",\n    \"Welcome to CS224N! \\n\",\n    \"\\n\",\n    \"Before you start, make sure you read the README.txt in the same directory as this notebook for important setup information. A lot of code is provided in this notebook, and we highly encourage you to read and understand it as part of the learning :)\\n\",\n    \"\\n\",\n    \"If you aren't super familiar with Python, Numpy, or Matplotlib, we recommend you check out the review session on Friday. The session will be recorded and the material will be made available on our [website](http://web.stanford.edu/class/cs224n/index.html#schedule). The CS231N Python/Numpy [tutorial](https://cs231n.github.io/python-numpy-tutorial/) is also a great resource.\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"**Assignment Notes:** Please make sure to save the notebook as you go along. Submission Instructions are located at the bottom of the notebook.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[nltk_data] Downloading package reuters to /Users/Aman/nltk_data...\\n\",\n      \"[nltk_data]   Package reuters is already up-to-date!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# All Import Statements Defined Here\\n\",\n    \"# Note: Do not add to this list.\\n\",\n    \"# ----------------\\n\",\n    \"\\n\",\n    \"import sys\\n\",\n    \"assert sys.version_info[0]==3\\n\",\n    \"assert sys.version_info[1] >= 5\\n\",\n    \"\\n\",\n    \"from gensim.models import KeyedVectors\\n\",\n    \"from gensim.test.utils import datapath\\n\",\n    \"import pprint\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"plt.rcParams['figure.figsize'] = [10, 5]\\n\",\n    \"import nltk\\n\",\n    \"nltk.download('reuters')\\n\",\n    \"from nltk.corpus import reuters\\n\",\n    \"import numpy as np\\n\",\n    \"import random\\n\",\n    \"import scipy as sp\\n\",\n    \"from sklearn.decomposition import TruncatedSVD\\n\",\n    \"from sklearn.decomposition import PCA\\n\",\n    \"\\n\",\n    \"START_TOKEN = '<START>'\\n\",\n    \"END_TOKEN = '<END>'\\n\",\n    \"\\n\",\n    \"np.random.seed(0)\\n\",\n    \"random.seed(0)\\n\",\n    \"# ----------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Word Vectors\\n\",\n    \"\\n\",\n    \"Word Vectors are often used as a fundamental component for downstream NLP tasks, e.g. question answering, text generation, translation, etc., so it is important to build some intuitions as to their strengths and weaknesses. Here, you will explore two types of word vectors: those derived from *co-occurrence matrices*, and those derived via *GloVe*. \\n\",\n    \"\\n\",\n    \"**Note on Terminology:** The terms \\\"word vectors\\\" and \\\"word embeddings\\\" are often used interchangeably. The term \\\"embedding\\\" refers to the fact that we are encoding aspects of a word's meaning in a lower dimensional space. As [Wikipedia](https://en.wikipedia.org/wiki/Word_embedding) states, \\\"*conceptually it involves a mathematical embedding from a space with one dimension per word to a continuous vector space with a much lower dimension*\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 1: Count-Based Word Vectors (10 points)\\n\",\n    \"\\n\",\n    \"Most word vector models start from the following idea:\\n\",\n    \"\\n\",\n    \"*You shall know a word by the company it keeps ([Firth, J. R. 1957:11](https://en.wikipedia.org/wiki/John_Rupert_Firth))*\\n\",\n    \"\\n\",\n    \"Many word vector implementations are driven by the idea that similar words, i.e., (near) synonyms, will be used in similar contexts. As a result, similar words will often be spoken or written along with a shared subset of words, i.e., contexts. By examining these contexts, we can try to develop embeddings for our words. With this intuition in mind, many \\\"old school\\\" approaches to constructing word vectors relied on word counts. Here we elaborate upon one of those strategies, *co-occurrence matrices* (for more information, see [here](http://web.stanford.edu/class/cs124/lec/vectorsemantics.video.pdf) or [here](https://medium.com/data-science-group-iitr/word-embedding-2d05d270b285)).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Co-Occurrence\\n\",\n    \"\\n\",\n    \"A co-occurrence matrix counts how often things co-occur in some environment. Given some word $w_i$ occurring in the document, we consider the *context window* surrounding $w_i$. Supposing our fixed window size is $n$, then this is the $n$ preceding and $n$ subsequent words in that document, i.e. words $w_{i-n} \\\\dots w_{i-1}$ and $w_{i+1} \\\\dots w_{i+n}$. We build a *co-occurrence matrix* $M$, which is a symmetric word-by-word matrix in which $M_{ij}$ is the number of times $w_j$ appears inside $w_i$'s window among all documents.\\n\",\n    \"\\n\",\n    \"**Example: Co-Occurrence with Fixed Window of n=1**:\\n\",\n    \"\\n\",\n    \"Document 1: \\\"all that glitters is not gold\\\"\\n\",\n    \"\\n\",\n    \"Document 2: \\\"all is well that ends well\\\"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"|     *    | `<START>` | all | that | glitters | is   | not  | gold  | well | ends | `<END>` |\\n\",\n    \"|----------|-------|-----|------|----------|------|------|-------|------|------|-----|\\n\",\n    \"| `<START>`    | 0     | 2   | 0    | 0        | 0    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| all      | 2     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| that     | 0     | 1   | 0    | 1        | 0    | 0    | 0     | 1    | 1    | 0   |\\n\",\n    \"| glitters | 0     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 0    | 0   |\\n\",\n    \"| is       | 0     | 1   | 0    | 1        | 0    | 1    | 0     | 1    | 0    | 0   |\\n\",\n    \"| not      | 0     | 0   | 0    | 0        | 1    | 0    | 1     | 0    | 0    | 0   |\\n\",\n    \"| gold     | 0     | 0   | 0    | 0        | 0    | 1    | 0     | 0    | 0    | 1   |\\n\",\n    \"| well     | 0     | 0   | 1    | 0        | 1    | 0    | 0     | 0    | 1    | 1   |\\n\",\n    \"| ends     | 0     | 0   | 1    | 0        | 0    | 0    | 0     | 1    | 0    | 0   |\\n\",\n    \"| `<END>`      | 0     | 0   | 0    | 0        | 0    | 0    | 1     | 1    | 0    | 0   |\\n\",\n    \"\\n\",\n    \"**Note:** In NLP, we often add `<START>` and `<END>` tokens to represent the beginning and end of sentences, paragraphs or documents. In thise case we imagine `<START>` and `<END>` tokens encapsulating each document, e.g., \\\"`<START>` All that glitters is not gold `<END>`\\\", and include these tokens in our co-occurrence counts.\\n\",\n    \"\\n\",\n    \"The rows (or columns) of this matrix provide one type of word vectors (those based on word-word co-occurrence), but the vectors will be large in general (linear in the number of distinct words in a corpus). Thus, our next step is to run *dimensionality reduction*. In particular, we will run *SVD (Singular Value Decomposition)*, which is a kind of generalized *PCA (Principal Components Analysis)* to select the top $k$ principal components. Here's a visualization of dimensionality reduction with SVD. In this picture our co-occurrence matrix is $A$ with $n$ rows corresponding to $n$ words. We obtain a full matrix decomposition, with the singular values ordered in the diagonal $S$ matrix, and our new, shorter length-$k$ word vectors in $U_k$.\\n\",\n    \"\\n\",\n    \"![Picture of an SVD](imgs/svd.png \\\"SVD\\\")\\n\",\n    \"\\n\",\n    \"This reduced-dimensionality co-occurrence representation preserves semantic relationships between words, e.g. *doctor* and *hospital* will be closer than *doctor* and *dog*. \\n\",\n    \"\\n\",\n    \"**Notes:** If you can barely remember what an eigenvalue is, here's [a slow, friendly introduction to SVD](https://davetang.org/file/Singular_Value_Decomposition_Tutorial.pdf). If you want to learn more thoroughly about PCA or SVD, feel free to check out lectures [7](https://web.stanford.edu/class/cs168/l/l7.pdf), [8](http://theory.stanford.edu/~tim/s15/l/l8.pdf), and [9](https://web.stanford.edu/class/cs168/l/l9.pdf) of CS168. These course notes provide a great high-level treatment of these general purpose algorithms. Though, for the purpose of this class, you only need to know how to extract the k-dimensional embeddings by utilizing pre-programmed implementations of these algorithms from the numpy, scipy, or sklearn python packages. In practice, it is challenging to apply full SVD to large corpora because of the memory needed to perform PCA or SVD. However, if you only want the top $k$ vector components for relatively small $k$ — known as [Truncated SVD](https://en.wikipedia.org/wiki/Singular_value_decomposition#Truncated_SVD) — then there are reasonably scalable techniques to compute those iteratively.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Plotting Co-Occurrence Word Embeddings\\n\",\n    \"\\n\",\n    \"Here, we will be using the Reuters (business and financial news) corpus. If you haven't run the import cell at the top of this page, please run it now (click it and press SHIFT-RETURN). The corpus consists of 10,788 news documents totaling 1.3 million words. These documents span 90 categories and are split into train and test. For more details, please see https://www.nltk.org/book/ch02.html. We provide a `read_corpus` function below that pulls out only articles from the \\\"crude\\\" (i.e. news articles about oil, gas, etc.) category. The function also adds `<START>` and `<END>` tokens to each of the documents, and lowercases words. You do **not** have to perform any other kind of pre-processing.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def read_corpus(category=\\\"crude\\\"):\\n\",\n    \"    \\\"\\\"\\\" Read files from the specified Reuter's category.\\n\",\n    \"        Params:\\n\",\n    \"            category (string): category name\\n\",\n    \"        Return:\\n\",\n    \"            list of lists, with words from each of the processed files\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    files = reuters.fileids(category)\\n\",\n    \"    return [[START_TOKEN] + [w.lower() for w in list(reuters.words(f))] + [END_TOKEN] for f in files]\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's have a look what these documents are like….\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[['<START>', 'japan', 'to', 'revise', 'long', '-', 'term', 'energy', 'demand', 'downwards', 'the',\\n\",\n      \"  'ministry', 'of', 'international', 'trade', 'and', 'industry', '(', 'miti', ')', 'will', 'revise',\\n\",\n      \"  'its', 'long', '-', 'term', 'energy', 'supply', '/', 'demand', 'outlook', 'by', 'august', 'to',\\n\",\n      \"  'meet', 'a', 'forecast', 'downtrend', 'in', 'japanese', 'energy', 'demand', ',', 'ministry',\\n\",\n      \"  'officials', 'said', '.', 'miti', 'is', 'expected', 'to', 'lower', 'the', 'projection', 'for',\\n\",\n      \"  'primary', 'energy', 'supplies', 'in', 'the', 'year', '2000', 'to', '550', 'mln', 'kilolitres',\\n\",\n      \"  '(', 'kl', ')', 'from', '600', 'mln', ',', 'they', 'said', '.', 'the', 'decision', 'follows',\\n\",\n      \"  'the', 'emergence', 'of', 'structural', 'changes', 'in', 'japanese', 'industry', 'following',\\n\",\n      \"  'the', 'rise', 'in', 'the', 'value', 'of', 'the', 'yen', 'and', 'a', 'decline', 'in', 'domestic',\\n\",\n      \"  'electric', 'power', 'demand', '.', 'miti', 'is', 'planning', 'to', 'work', 'out', 'a', 'revised',\\n\",\n      \"  'energy', 'supply', '/', 'demand', 'outlook', 'through', 'deliberations', 'of', 'committee',\\n\",\n      \"  'meetings', 'of', 'the', 'agency', 'of', 'natural', 'resources', 'and', 'energy', ',', 'the',\\n\",\n      \"  'officials', 'said', '.', 'they', 'said', 'miti', 'will', 'also', 'review', 'the', 'breakdown',\\n\",\n      \"  'of', 'energy', 'supply', 'sources', ',', 'including', 'oil', ',', 'nuclear', ',', 'coal', 'and',\\n\",\n      \"  'natural', 'gas', '.', 'nuclear', 'energy', 'provided', 'the', 'bulk', 'of', 'japan', \\\"'\\\", 's',\\n\",\n      \"  'electric', 'power', 'in', 'the', 'fiscal', 'year', 'ended', 'march', '31', ',', 'supplying',\\n\",\n      \"  'an', 'estimated', '27', 'pct', 'on', 'a', 'kilowatt', '/', 'hour', 'basis', ',', 'followed',\\n\",\n      \"  'by', 'oil', '(', '23', 'pct', ')', 'and', 'liquefied', 'natural', 'gas', '(', '21', 'pct', '),',\\n\",\n      \"  'they', 'noted', '.', '<END>'],\\n\",\n      \" ['<START>', 'energy', '/', 'u', '.', 's', '.', 'petrochemical', 'industry', 'cheap', 'oil',\\n\",\n      \"  'feedstocks', ',', 'the', 'weakened', 'u', '.', 's', '.', 'dollar', 'and', 'a', 'plant',\\n\",\n      \"  'utilization', 'rate', 'approaching', '90', 'pct', 'will', 'propel', 'the', 'streamlined', 'u',\\n\",\n      \"  '.', 's', '.', 'petrochemical', 'industry', 'to', 'record', 'profits', 'this', 'year', ',',\\n\",\n      \"  'with', 'growth', 'expected', 'through', 'at', 'least', '1990', ',', 'major', 'company',\\n\",\n      \"  'executives', 'predicted', '.', 'this', 'bullish', 'outlook', 'for', 'chemical', 'manufacturing',\\n\",\n      \"  'and', 'an', 'industrywide', 'move', 'to', 'shed', 'unrelated', 'businesses', 'has', 'prompted',\\n\",\n      \"  'gaf', 'corp', '&', 'lt', ';', 'gaf', '>,', 'privately', '-', 'held', 'cain', 'chemical', 'inc',\\n\",\n      \"  ',', 'and', 'other', 'firms', 'to', 'aggressively', 'seek', 'acquisitions', 'of', 'petrochemical',\\n\",\n      \"  'plants', '.', 'oil', 'companies', 'such', 'as', 'ashland', 'oil', 'inc', '&', 'lt', ';', 'ash',\\n\",\n      \"  '>,', 'the', 'kentucky', '-', 'based', 'oil', 'refiner', 'and', 'marketer', ',', 'are', 'also',\\n\",\n      \"  'shopping', 'for', 'money', '-', 'making', 'petrochemical', 'businesses', 'to', 'buy', '.', '\\\"',\\n\",\n      \"  'i', 'see', 'us', 'poised', 'at', 'the', 'threshold', 'of', 'a', 'golden', 'period', ',\\\"', 'said',\\n\",\n      \"  'paul', 'oreffice', ',', 'chairman', 'of', 'giant', 'dow', 'chemical', 'co', '&', 'lt', ';',\\n\",\n      \"  'dow', '>,', 'adding', ',', '\\\"', 'there', \\\"'\\\", 's', 'no', 'major', 'plant', 'capacity', 'being',\\n\",\n      \"  'added', 'around', 'the', 'world', 'now', '.', 'the', 'whole', 'game', 'is', 'bringing', 'out',\\n\",\n      \"  'new', 'products', 'and', 'improving', 'the', 'old', 'ones', '.\\\"', 'analysts', 'say', 'the',\\n\",\n      \"  'chemical', 'industry', \\\"'\\\", 's', 'biggest', 'customers', ',', 'automobile', 'manufacturers',\\n\",\n      \"  'and', 'home', 'builders', 'that', 'use', 'a', 'lot', 'of', 'paints', 'and', 'plastics', ',',\\n\",\n      \"  'are', 'expected', 'to', 'buy', 'quantities', 'this', 'year', '.', 'u', '.', 's', '.',\\n\",\n      \"  'petrochemical', 'plants', 'are', 'currently', 'operating', 'at', 'about', '90', 'pct',\\n\",\n      \"  'capacity', ',', 'reflecting', 'tighter', 'supply', 'that', 'could', 'hike', 'product', 'prices',\\n\",\n      \"  'by', '30', 'to', '40', 'pct', 'this', 'year', ',', 'said', 'john', 'dosher', ',', 'managing',\\n\",\n      \"  'director', 'of', 'pace', 'consultants', 'inc', 'of', 'houston', '.', 'demand', 'for', 'some',\\n\",\n      \"  'products', 'such', 'as', 'styrene', 'could', 'push', 'profit', 'margins', 'up', 'by', 'as',\\n\",\n      \"  'much', 'as', '300', 'pct', ',', 'he', 'said', '.', 'oreffice', ',', 'speaking', 'at', 'a',\\n\",\n      \"  'meeting', 'of', 'chemical', 'engineers', 'in', 'houston', ',', 'said', 'dow', 'would', 'easily',\\n\",\n      \"  'top', 'the', '741', 'mln', 'dlrs', 'it', 'earned', 'last', 'year', 'and', 'predicted', 'it',\\n\",\n      \"  'would', 'have', 'the', 'best', 'year', 'in', 'its', 'history', '.', 'in', '1985', ',', 'when',\\n\",\n      \"  'oil', 'prices', 'were', 'still', 'above', '25', 'dlrs', 'a', 'barrel', 'and', 'chemical',\\n\",\n      \"  'exports', 'were', 'adversely', 'affected', 'by', 'the', 'strong', 'u', '.', 's', '.', 'dollar',\\n\",\n      \"  ',', 'dow', 'had', 'profits', 'of', '58', 'mln', 'dlrs', '.', '\\\"', 'i', 'believe', 'the',\\n\",\n      \"  'entire', 'chemical', 'industry', 'is', 'headed', 'for', 'a', 'record', 'year', 'or', 'close',\\n\",\n      \"  'to', 'it', ',\\\"', 'oreffice', 'said', '.', 'gaf', 'chairman', 'samuel', 'heyman', 'estimated',\\n\",\n      \"  'that', 'the', 'u', '.', 's', '.', 'chemical', 'industry', 'would', 'report', 'a', '20', 'pct',\\n\",\n      \"  'gain', 'in', 'profits', 'during', '1987', '.', 'last', 'year', ',', 'the', 'domestic',\\n\",\n      \"  'industry', 'earned', 'a', 'total', 'of', '13', 'billion', 'dlrs', ',', 'a', '54', 'pct', 'leap',\\n\",\n      \"  'from', '1985', '.', 'the', 'turn', 'in', 'the', 'fortunes', 'of', 'the', 'once', '-', 'sickly',\\n\",\n      \"  'chemical', 'industry', 'has', 'been', 'brought', 'about', 'by', 'a', 'combination', 'of', 'luck',\\n\",\n      \"  'and', 'planning', ',', 'said', 'pace', \\\"'\\\", 's', 'john', 'dosher', '.', 'dosher', 'said', 'last',\\n\",\n      \"  'year', \\\"'\\\", 's', 'fall', 'in', 'oil', 'prices', 'made', 'feedstocks', 'dramatically', 'cheaper',\\n\",\n      \"  'and', 'at', 'the', 'same', 'time', 'the', 'american', 'dollar', 'was', 'weakening', 'against',\\n\",\n      \"  'foreign', 'currencies', '.', 'that', 'helped', 'boost', 'u', '.', 's', '.', 'chemical',\\n\",\n      \"  'exports', '.', 'also', 'helping', 'to', 'bring', 'supply', 'and', 'demand', 'into', 'balance',\\n\",\n      \"  'has', 'been', 'the', 'gradual', 'market', 'absorption', 'of', 'the', 'extra', 'chemical',\\n\",\n      \"  'manufacturing', 'capacity', 'created', 'by', 'middle', 'eastern', 'oil', 'producers', 'in',\\n\",\n      \"  'the', 'early', '1980s', '.', 'finally', ',', 'virtually', 'all', 'major', 'u', '.', 's', '.',\\n\",\n      \"  'chemical', 'manufacturers', 'have', 'embarked', 'on', 'an', 'extensive', 'corporate',\\n\",\n      \"  'restructuring', 'program', 'to', 'mothball', 'inefficient', 'plants', ',', 'trim', 'the',\\n\",\n      \"  'payroll', 'and', 'eliminate', 'unrelated', 'businesses', '.', 'the', 'restructuring', 'touched',\\n\",\n      \"  'off', 'a', 'flurry', 'of', 'friendly', 'and', 'hostile', 'takeover', 'attempts', '.', 'gaf', ',',\\n\",\n      \"  'which', 'made', 'an', 'unsuccessful', 'attempt', 'in', '1985', 'to', 'acquire', 'union',\\n\",\n      \"  'carbide', 'corp', '&', 'lt', ';', 'uk', '>,', 'recently', 'offered', 'three', 'billion', 'dlrs',\\n\",\n      \"  'for', 'borg', 'warner', 'corp', '&', 'lt', ';', 'bor', '>,', 'a', 'chicago', 'manufacturer',\\n\",\n      \"  'of', 'plastics', 'and', 'chemicals', '.', 'another', 'industry', 'powerhouse', ',', 'w', '.',\\n\",\n      \"  'r', '.', 'grace', '&', 'lt', ';', 'gra', '>', 'has', 'divested', 'its', 'retailing', ',',\\n\",\n      \"  'restaurant', 'and', 'fertilizer', 'businesses', 'to', 'raise', 'cash', 'for', 'chemical',\\n\",\n      \"  'acquisitions', '.', 'but', 'some', 'experts', 'worry', 'that', 'the', 'chemical', 'industry',\\n\",\n      \"  'may', 'be', 'headed', 'for', 'trouble', 'if', 'companies', 'continue', 'turning', 'their',\\n\",\n      \"  'back', 'on', 'the', 'manufacturing', 'of', 'staple', 'petrochemical', 'commodities', ',', 'such',\\n\",\n      \"  'as', 'ethylene', ',', 'in', 'favor', 'of', 'more', 'profitable', 'specialty', 'chemicals',\\n\",\n      \"  'that', 'are', 'custom', '-', 'designed', 'for', 'a', 'small', 'group', 'of', 'buyers', '.', '\\\"',\\n\",\n      \"  'companies', 'like', 'dupont', '&', 'lt', ';', 'dd', '>', 'and', 'monsanto', 'co', '&', 'lt', ';',\\n\",\n      \"  'mtc', '>', 'spent', 'the', 'past', 'two', 'or', 'three', 'years', 'trying', 'to', 'get', 'out',\\n\",\n      \"  'of', 'the', 'commodity', 'chemical', 'business', 'in', 'reaction', 'to', 'how', 'badly', 'the',\\n\",\n      \"  'market', 'had', 'deteriorated', ',\\\"', 'dosher', 'said', '.', '\\\"', 'but', 'i', 'think', 'they',\\n\",\n      \"  'will', 'eventually', 'kill', 'the', 'margins', 'on', 'the', 'profitable', 'chemicals', 'in',\\n\",\n      \"  'the', 'niche', 'market', '.\\\"', 'some', 'top', 'chemical', 'executives', 'share', 'the',\\n\",\n      \"  'concern', '.', '\\\"', 'the', 'challenge', 'for', 'our', 'industry', 'is', 'to', 'keep', 'from',\\n\",\n      \"  'getting', 'carried', 'away', 'and', 'repeating', 'past', 'mistakes', ',\\\"', 'gaf', \\\"'\\\", 's',\\n\",\n      \"  'heyman', 'cautioned', '.', '\\\"', 'the', 'shift', 'from', 'commodity', 'chemicals', 'may', 'be',\\n\",\n      \"  'ill', '-', 'advised', '.', 'specialty', 'businesses', 'do', 'not', 'stay', 'special', 'long',\\n\",\n      \"  '.\\\"', 'houston', '-', 'based', 'cain', 'chemical', ',', 'created', 'this', 'month', 'by', 'the',\\n\",\n      \"  'sterling', 'investment', 'banking', 'group', ',', 'believes', 'it', 'can', 'generate', '700',\\n\",\n      \"  'mln', 'dlrs', 'in', 'annual', 'sales', 'by', 'bucking', 'the', 'industry', 'trend', '.',\\n\",\n      \"  'chairman', 'gordon', 'cain', ',', 'who', 'previously', 'led', 'a', 'leveraged', 'buyout', 'of',\\n\",\n      \"  'dupont', \\\"'\\\", 's', 'conoco', 'inc', \\\"'\\\", 's', 'chemical', 'business', ',', 'has', 'spent', '1',\\n\",\n      \"  '.', '1', 'billion', 'dlrs', 'since', 'january', 'to', 'buy', 'seven', 'petrochemical', 'plants',\\n\",\n      \"  'along', 'the', 'texas', 'gulf', 'coast', '.', 'the', 'plants', 'produce', 'only', 'basic',\\n\",\n      \"  'commodity', 'petrochemicals', 'that', 'are', 'the', 'building', 'blocks', 'of', 'specialty',\\n\",\n      \"  'products', '.', '\\\"', 'this', 'kind', 'of', 'commodity', 'chemical', 'business', 'will', 'never',\\n\",\n      \"  'be', 'a', 'glamorous', ',', 'high', '-', 'margin', 'business', ',\\\"', 'cain', 'said', ',',\\n\",\n      \"  'adding', 'that', 'demand', 'is', 'expected', 'to', 'grow', 'by', 'about', 'three', 'pct',\\n\",\n      \"  'annually', '.', 'garo', 'armen', ',', 'an', 'analyst', 'with', 'dean', 'witter', 'reynolds', ',',\\n\",\n      \"  'said', 'chemical', 'makers', 'have', 'also', 'benefitted', 'by', 'increasing', 'demand', 'for',\\n\",\n      \"  'plastics', 'as', 'prices', 'become', 'more', 'competitive', 'with', 'aluminum', ',', 'wood',\\n\",\n      \"  'and', 'steel', 'products', '.', 'armen', 'estimated', 'the', 'upturn', 'in', 'the', 'chemical',\\n\",\n      \"  'business', 'could', 'last', 'as', 'long', 'as', 'four', 'or', 'five', 'years', ',', 'provided',\\n\",\n      \"  'the', 'u', '.', 's', '.', 'economy', 'continues', 'its', 'modest', 'rate', 'of', 'growth', '.',\\n\",\n      \"  '<END>'],\\n\",\n      \" ['<START>', 'turkey', 'calls', 'for', 'dialogue', 'to', 'solve', 'dispute', 'turkey', 'said',\\n\",\n      \"  'today', 'its', 'disputes', 'with', 'greece', ',', 'including', 'rights', 'on', 'the',\\n\",\n      \"  'continental', 'shelf', 'in', 'the', 'aegean', 'sea', ',', 'should', 'be', 'solved', 'through',\\n\",\n      \"  'negotiations', '.', 'a', 'foreign', 'ministry', 'statement', 'said', 'the', 'latest', 'crisis',\\n\",\n      \"  'between', 'the', 'two', 'nato', 'members', 'stemmed', 'from', 'the', 'continental', 'shelf',\\n\",\n      \"  'dispute', 'and', 'an', 'agreement', 'on', 'this', 'issue', 'would', 'effect', 'the', 'security',\\n\",\n      \"  ',', 'economy', 'and', 'other', 'rights', 'of', 'both', 'countries', '.', '\\\"', 'as', 'the',\\n\",\n      \"  'issue', 'is', 'basicly', 'political', ',', 'a', 'solution', 'can', 'only', 'be', 'found', 'by',\\n\",\n      \"  'bilateral', 'negotiations', ',\\\"', 'the', 'statement', 'said', '.', 'greece', 'has', 'repeatedly',\\n\",\n      \"  'said', 'the', 'issue', 'was', 'legal', 'and', 'could', 'be', 'solved', 'at', 'the',\\n\",\n      \"  'international', 'court', 'of', 'justice', '.', 'the', 'two', 'countries', 'approached', 'armed',\\n\",\n      \"  'confrontation', 'last', 'month', 'after', 'greece', 'announced', 'it', 'planned', 'oil',\\n\",\n      \"  'exploration', 'work', 'in', 'the', 'aegean', 'and', 'turkey', 'said', 'it', 'would', 'also',\\n\",\n      \"  'search', 'for', 'oil', '.', 'a', 'face', '-', 'off', 'was', 'averted', 'when', 'turkey',\\n\",\n      \"  'confined', 'its', 'research', 'to', 'territorrial', 'waters', '.', '\\\"', 'the', 'latest',\\n\",\n      \"  'crises', 'created', 'an', 'historic', 'opportunity', 'to', 'solve', 'the', 'disputes', 'between',\\n\",\n      \"  'the', 'two', 'countries', ',\\\"', 'the', 'foreign', 'ministry', 'statement', 'said', '.', 'turkey',\\n\",\n      \"  \\\"'\\\", 's', 'ambassador', 'in', 'athens', ',', 'nazmi', 'akiman', ',', 'was', 'due', 'to', 'meet',\\n\",\n      \"  'prime', 'minister', 'andreas', 'papandreou', 'today', 'for', 'the', 'greek', 'reply', 'to', 'a',\\n\",\n      \"  'message', 'sent', 'last', 'week', 'by', 'turkish', 'prime', 'minister', 'turgut', 'ozal', '.',\\n\",\n      \"  'the', 'contents', 'of', 'the', 'message', 'were', 'not', 'disclosed', '.', '<END>']]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"reuters_corpus = read_corpus()\\n\",\n    \"pprint.pprint(reuters_corpus[:3], compact=True, width=100)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.1: Implement `distinct_words` [code] (2 points)\\n\",\n    \"\\n\",\n    \"Write a method to work out the distinct words (word types) that occur in the corpus. You can do this with `for` loops, but it's more efficient to do it with Python list comprehensions. In particular, [this](https://coderwall.com/p/rcmaea/flatten-a-list-of-lists-in-one-line-in-python) may be useful to flatten a list of lists. If you're not familiar with Python list comprehensions in general, here's [more information](https://python-3-patterns-idioms-test.readthedocs.io/en/latest/Comprehensions.html).\\n\",\n    \"\\n\",\n    \"Your returned `corpus_words` should be sorted. You can use python's `sorted` function for this.\\n\",\n    \"\\n\",\n    \"You may find it useful to use [Python sets](https://www.w3schools.com/python/python_sets.asp) to remove duplicate words.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def distinct_words(corpus):\\n\",\n    \"    \\\"\\\"\\\" Determine a list of distinct words for the corpus.\\n\",\n    \"        Params:\\n\",\n    \"            corpus (list of list of strings): corpus of documents\\n\",\n    \"        Return:\\n\",\n    \"            corpus_words (list of strings): sorted list of distinct words across the corpus\\n\",\n    \"            num_corpus_words (integer): number of distinct words across the corpus\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    corpus_words = []\\n\",\n    \"    num_corpus_words = -1\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"    corpus_words = {word for doc in corpus for word in doc}\\n\",\n    \"    corpus_words = sorted(list(corpus_words))\\n\",\n    \"    num_corpus_words = len(corpus_words)\\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    return corpus_words, num_corpus_words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Passed All Tests!\\n\",\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this not an exhaustive check for correctness.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"test_corpus_words, num_corpus_words = distinct_words(test_corpus)\\n\",\n    \"\\n\",\n    \"# Correct answers\\n\",\n    \"ans_test_corpus_words = sorted([START_TOKEN, \\\"All\\\", \\\"ends\\\", \\\"that\\\", \\\"gold\\\", \\\"All's\\\", \\\"glitters\\\", \\\"isn't\\\", \\\"well\\\", END_TOKEN])\\n\",\n    \"ans_num_corpus_words = len(ans_test_corpus_words)\\n\",\n    \"\\n\",\n    \"# Test correct number of words\\n\",\n    \"assert(num_corpus_words == ans_num_corpus_words), \\\"Incorrect number of distinct words. Correct: {}. Yours: {}\\\".format(ans_num_corpus_words, num_corpus_words)\\n\",\n    \"\\n\",\n    \"# Test correct words\\n\",\n    \"assert (test_corpus_words == ans_test_corpus_words), \\\"Incorrect corpus_words.\\\\nCorrect: {}\\\\nYours:   {}\\\".format(str(ans_test_corpus_words), str(test_corpus_words))\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.2: Implement `compute_co_occurrence_matrix` [code] (3 points)\\n\",\n    \"\\n\",\n    \"Write a method that constructs a co-occurrence matrix for a certain window-size $n$ (with a default of 4), considering words $n$ before and $n$ after the word in the center of the window. Here, we start to use `numpy (np)` to represent vectors, matrices, and tensors. If you're not familiar with NumPy, there's a NumPy tutorial in the second half of this cs231n [Python NumPy tutorial](http://cs231n.github.io/python-numpy-tutorial/).\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def compute_co_occurrence_matrix(corpus, window_size=4):\\n\",\n    \"    \\\"\\\"\\\" Compute co-occurrence matrix for the given corpus and window_size (default of 4).\\n\",\n    \"    \\n\",\n    \"        Note: Each word in a document should be at the center of a window. Words near edges will have a smaller\\n\",\n    \"              number of co-occurring words.\\n\",\n    \"              \\n\",\n    \"              For example, if we take the document \\\"<START> All that glitters is not gold <END>\\\" with window size of 4,\\n\",\n    \"              \\\"All\\\" will co-occur with \\\"<START>\\\", \\\"that\\\", \\\"glitters\\\", \\\"is\\\", and \\\"not\\\".\\n\",\n    \"    \\n\",\n    \"        Params:\\n\",\n    \"            corpus (list of list of strings): corpus of documents\\n\",\n    \"            window_size (int): size of context window\\n\",\n    \"        Return:\\n\",\n    \"            M (a symmetric numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): \\n\",\n    \"                Co-occurence matrix of word counts. \\n\",\n    \"                The ordering of the words in the rows/columns should be the same as the ordering of the words given by the distinct_words function.\\n\",\n    \"            word2ind (dict): dictionary that maps word to index (i.e. row/column number) for matrix M.\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    words, num_words = distinct_words(corpus)\\n\",\n    \"    M = None\\n\",\n    \"    word2ind = {}\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"    \\n\",\n    \"    # Build the word to index mapping.\\n\",\n    \"    word2ind = {word: i for i, word in enumerate(words)}\\n\",\n    \"    \\n\",\n    \"    # Build the co-occurrence matrix.\\n\",\n    \"    M = np.zeros((num_words, num_words))\\n\",\n    \"    for body in corpus:\\n\",\n    \"        for curr_idx, word in enumerate(body):\\n\",\n    \"            for window_idx in range(-window_size, window_size + 1):\\n\",\n    \"                neighbor_idx = curr_idx + window_idx\\n\",\n    \"                if (neighbor_idx < 0) or (neighbor_idx >= len(body)) or (curr_idx == neighbor_idx):\\n\",\n    \"                    continue\\n\",\n    \"                co_occur_word = body[neighbor_idx]\\n\",\n    \"                (word_idx, co_occur_idx) = (word2ind[word], word2ind[co_occur_word])\\n\",\n    \"                M[word_idx, co_occur_idx] += 1\\n\",\n    \"\\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    return M, word2ind\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Passed All Tests!\\n\",\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus and get student's co-occurrence matrix\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\\n\",\n    \"\\n\",\n    \"# Correct M and word2ind\\n\",\n    \"M_test_ans = np.array( \\n\",\n    \"    [[0., 0., 0., 0., 0., 0., 1., 0., 0., 1.,],\\n\",\n    \"     [0., 0., 1., 1., 0., 0., 0., 0., 0., 0.,],\\n\",\n    \"     [0., 1., 0., 0., 0., 0., 0., 0., 1., 0.,],\\n\",\n    \"     [0., 1., 0., 0., 0., 0., 0., 0., 0., 1.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 0., 0., 0., 1., 1.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 0., 0., 1., 1., 0.,],\\n\",\n    \"     [1., 0., 0., 0., 0., 0., 0., 1., 0., 0.,],\\n\",\n    \"     [0., 0., 0., 0., 0., 1., 1., 0., 0., 0.,],\\n\",\n    \"     [0., 0., 1., 0., 1., 1., 0., 0., 0., 1.,],\\n\",\n    \"     [1., 0., 0., 1., 1., 0., 0., 0., 1., 0.,]]\\n\",\n    \")\\n\",\n    \"ans_test_corpus_words = sorted([START_TOKEN, \\\"All\\\", \\\"ends\\\", \\\"that\\\", \\\"gold\\\", \\\"All's\\\", \\\"glitters\\\", \\\"isn't\\\", \\\"well\\\", END_TOKEN])\\n\",\n    \"word2ind_ans = dict(zip(ans_test_corpus_words, range(len(ans_test_corpus_words))))\\n\",\n    \"\\n\",\n    \"# Test correct word2ind\\n\",\n    \"assert (word2ind_ans == word2ind_test), \\\"Your word2ind is incorrect:\\\\nCorrect: {}\\\\nYours: {}\\\".format(word2ind_ans, word2ind_test)\\n\",\n    \"\\n\",\n    \"# Test correct M shape\\n\",\n    \"assert (M_test.shape == M_test_ans.shape), \\\"M matrix has incorrect shape.\\\\nCorrect: {}\\\\nYours: {}\\\".format(M_test.shape, M_test_ans.shape)\\n\",\n    \"\\n\",\n    \"# Test correct M values\\n\",\n    \"for w1 in word2ind_ans.keys():\\n\",\n    \"    idx1 = word2ind_ans[w1]\\n\",\n    \"    for w2 in word2ind_ans.keys():\\n\",\n    \"        idx2 = word2ind_ans[w2]\\n\",\n    \"        student = M_test[idx1, idx2]\\n\",\n    \"        correct = M_test_ans[idx1, idx2]\\n\",\n    \"        if student != correct:\\n\",\n    \"            print(\\\"Correct M:\\\")\\n\",\n    \"            print(M_test_ans)\\n\",\n    \"            print(\\\"Your M: \\\")\\n\",\n    \"            print(M_test)\\n\",\n    \"            raise AssertionError(\\\"Incorrect count at index ({}, {})=({}, {}) in matrix M. Yours has {} but should have {}.\\\".format(idx1, idx2, w1, w2, student, correct))\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.3: Implement `reduce_to_k_dim` [code] (1 point)\\n\",\n    \"\\n\",\n    \"Construct a method that performs dimensionality reduction on the matrix to produce k-dimensional embeddings. Use SVD to take the top k components and produce a new matrix of k-dimensional embeddings. \\n\",\n    \"\\n\",\n    \"**Note:** All of numpy, scipy, and scikit-learn (`sklearn`) provide *some* implementation of SVD, but only scipy and sklearn provide an implementation of Truncated SVD, and only sklearn provides an efficient randomized algorithm for calculating large-scale Truncated SVD. So please use [sklearn.decomposition.TruncatedSVD](https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def reduce_to_k_dim(M, k=2):\\n\",\n    \"    \\\"\\\"\\\" Reduce a co-occurence count matrix of dimensionality (num_corpus_words, num_corpus_words)\\n\",\n    \"        to a matrix of dimensionality (num_corpus_words, k) using the following SVD function from Scikit-Learn:\\n\",\n    \"            - http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html\\n\",\n    \"    \\n\",\n    \"        Params:\\n\",\n    \"            M (numpy matrix of shape (number of unique words in the corpus , number of unique words in the corpus)): co-occurence matrix of word counts\\n\",\n    \"            k (int): embedding size of each word after dimension reduction\\n\",\n    \"        Return:\\n\",\n    \"            M_reduced (numpy matrix of shape (number of corpus words, k)): matrix of k-dimensioal word embeddings.\\n\",\n    \"                    In terms of the SVD from math class, this actually returns U * S\\n\",\n    \"    \\\"\\\"\\\"    \\n\",\n    \"    n_iters = 10     # Use this parameter in your call to `TruncatedSVD`\\n\",\n    \"    M_reduced = None\\n\",\n    \"    print(\\\"Running Truncated SVD over %i words...\\\" % (M.shape[0]))\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    svd = TruncatedSVD(n_components = k, n_iter = n_iters)\\n\",\n    \"    M_reduced = svd.fit_transform(M) \\n\",\n    \"    # or (instead of the above line)...\\n\",\n    \"    # svd.fit(M)\\n\",\n    \"    # M_reduced = svd.transform(M)\\n\",\n    \"    \\n\",\n    \"    # ------------------\\n\",\n    \"\\n\",\n    \"    print(\\\"Done.\\\")\\n\",\n    \"    return M_reduced\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Running Truncated SVD over 10 words...\\n\",\n      \"Done.\\n\",\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Passed All Tests!\\n\",\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness \\n\",\n    \"# In fact we only check that your M_reduced has the right dimensions.\\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"# Define toy corpus and run student code\\n\",\n    \"test_corpus = [\\\"{} All that glitters isn't gold {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\"), \\\"{} All's well that ends well {}\\\".format(START_TOKEN, END_TOKEN).split(\\\" \\\")]\\n\",\n    \"M_test, word2ind_test = compute_co_occurrence_matrix(test_corpus, window_size=1)\\n\",\n    \"M_test_reduced = reduce_to_k_dim(M_test, k=2)\\n\",\n    \"\\n\",\n    \"# Test proper dimensions\\n\",\n    \"assert (M_test_reduced.shape[0] == 10), \\\"M_reduced has {} rows; should have {}\\\".format(M_test_reduced.shape[0], 10)\\n\",\n    \"assert (M_test_reduced.shape[1] == 2), \\\"M_reduced has {} columns; should have {}\\\".format(M_test_reduced.shape[1], 2)\\n\",\n    \"\\n\",\n    \"# Print Success\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print(\\\"Passed All Tests!\\\")\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.4: Implement `plot_embeddings` [code] (1 point)\\n\",\n    \"\\n\",\n    \"Here you will write a function to plot a set of 2D vectors in 2D space. For graphs, we will use Matplotlib (`plt`).\\n\",\n    \"\\n\",\n    \"For this example, you may find it useful to adapt [this code](http://web.archive.org/web/20190924160434/https://www.pythonmembers.club/2018/05/08/matplotlib-scatter-plot-annotate-set-text-at-label-each-point/). In the future, a good way to make a plot is to look at [the Matplotlib gallery](https://matplotlib.org/gallery/index.html), find a plot that looks somewhat like what you want, and adapt the code they give.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def plot_embeddings(M_reduced, word2ind, words):\\n\",\n    \"    \\\"\\\"\\\" Plot in a scatterplot the embeddings of the words specified in the list \\\"words\\\".\\n\",\n    \"        NOTE: do not plot all the words listed in M_reduced / word2ind.\\n\",\n    \"        Include a label next to each point.\\n\",\n    \"        \\n\",\n    \"        Params:\\n\",\n    \"            M_reduced (numpy matrix of shape (number of unique words in the corpus , 2)): matrix of 2-dimensioal word embeddings\\n\",\n    \"            word2ind (dict): dictionary that maps word to indices for matrix M\\n\",\n    \"            words (list of strings): words whose embeddings we want to visualize\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"\\n\",\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"    \\n\",\n    \"    # Get only the rows corresponding the words we want to plot.\\n\",\n    \"    word_idxs = [word2ind[word] for word in words]\\n\",\n    \"    word_vectors = M_reduced[word_idxs]\\n\",\n    \"    # Get 2D coordinates.\\n\",\n    \"    x_coords = [vec[0] for vec in word_vectors]\\n\",\n    \"    y_coords = [vec[1] for vec in word_vectors]\\n\",\n    \"    # Plot the scatter points in 2D.\\n\",\n    \"    for i, word in enumerate(words):\\n\",\n    \"        x = x_coords[i]\\n\",\n    \"        y = y_coords[i]\\n\",\n    \"        plt.scatter(x, y, marker='x', color='red')\\n\",\n    \"        plt.text(x, y, word, fontsize=9)\\n\",\n    \"    plt.show()\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\",\n      \"Outputted Plot:\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAmIAAAEvCAYAAADmeK3JAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAftUlEQVR4nO3df7BdZX3v8ffXBEZCHQNJiBFIoSbtAP1BPGeAigNHAc2PK1HUAVoERSfjrUhIrLdBhgYqzgUdkh7vtdLUMiRMK+MdRM4IqUDwiErxkmOBgEAICJeYCEg9IkLBkO/9Y6/Ezcn5sU/2Tp6zc96vmT17rfU8z1rPk5XF+rCevXciM5EkSdLe94bSHZAkSRqvDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUyMTSHdgdU6dOzSOOOKJ0NyRJkkbU19f3i8ycNlhZWwaxI444gvXr15fuhiRJ0ogi4qmhypyalCRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGsWH09/ezZs2aUbV58skn6enp2WX7eeedx6mnntqqrkmSpBZoxb3+pptu4qijjuKNb3zjqI9vEBtGq4LYhg0b6O/vb2HPJElSK7TiXn/SSSfxH//xHxx22GGjPr5BbKDMnYsrVqygr6+Prq4uVq9ezYIFC3j3u9/NggULeO6553jppZeYN28eJ598Ml1dXWzcuJEVK1Zwyy230NXVRV9fHwB/93d/x+c+97lSI5IkSQNV9/tW3OunTJmyW0/DoEVBLCKujYhnI+LBIcojIr4cEZsi4oGIeHtd2dyIeLQqW9aK/uy2yy6DJUt2npylS5bQ8aY30dvVxdq1a7n00ku58847WbRoEVdddRWPPPIIBx10EN/73vfo7e1l1qxZLF26lAULFtDb20tHRwe9vb384R/+IdOnTy86NEmSVKm73y9durR2vz72WNZ+6Uu7da9vRqt+0PU64H8DQz3bmwfMrl7HA18Fjo+ICcBXgNOAzcC9EdGTmT9pUb8alwn9/dDdXVtfuRI+/3l4+mno72fDhg0sW1bLidu2bWPWrFnMmTOHjo4OzjnnHKZMmcLll1++y26vvPJKbrjhBqcmJUkaCwbe7xcvho0bYd06Nhx88G7d65vRkiCWmXdFxBHDVFkIrMnMBO6JiMkRMQM4AtiUmU8ARMQNVd29H8QiauELaienu5v9gW2HHgorV3LMmWdy8cUXM2fOHABeffVVXnnlFZYuXUpEcMUVV3D99dfT0dHBtm3bAPj1r3/Nz3/+c8466yxefvllHnroIb7whS9wySWX7PXhSZIkdrnf79/dzTaAxYs5ZsuWUd/rm+5O1n0mqqkd1YLYtzPzjwcp+zZwZWb+oFpfB/wNtSA2NzM/UW3/CHB8Zl4wyD4WAYsAZs6c2fHUU0P+awHNyYQ31GZstwML5s5l0qRJnH766dx44428+OKLAJx//vkcffTRXHjhhUycOJHt27ezevVqpk6dyvz585k+fTrLly/nT/7kT4DaB/s+8YlPcMcdd+yZfkuSpMZV9/vtwAJg0hln7Pa9vr+/n8svv5y7776bd7zjHfzVX/0VZ5xxxs5DRURfZnYO1o29FcRuAf7ngCD2P4A/AN47IIgdl5mfHu5YnZ2duUf+rcnM2pzxjseVUHtkuXJlLUFLkqT2t5fv98MFsb31rcnNwOF164cBW4bZvvfVn5TFi2H79tp7d/frPsAvSZLa2Bi737fqw/oj6QEuqD4Ddjzwq8zcGhHPAbMj4kjgZ8BZwF/spT69XgRMnvz6RLxjDnnyZJ+ISZK0Lxhj9/uWTE1GxNeBLmAq8AywHNgPIDOviYig9q3KucBLwMcyc33Vdj7w98AE4NrM/MJIx9tjU5O1Dr/+JAxclyRJ7W8v3u+Hm5ps1bcmzx6hPIFPDVF2K3BrK/rREgNPgiFMkqR9zxi53/vL+pIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVEhLglhEzI2IRyNiU0QsG6T8sxFxX/V6MCJei4iDq7InI2JDVba+Ff2RJElqBxOb3UFETAC+ApwGbAbujYiezPzJjjqZ+SXgS1X99wFLMvM/63bzrsz8RbN9kSRJaieteCJ2HLApM5/IzFeBG4CFw9Q/G/h6C44rSZLU1loRxA4Fnq5b31xt20VETALmAjfWbU7gtojoi4hFLeiPJElSW2h6ahKIQbblEHXfB/xwwLTkiZm5JSIOAW6PiEcy865dDlILaYsAZs6c2WyfJUmSimvFE7HNwOF164cBW4aoexYDpiUzc0v1/ixwE7Wpzl1k5qrM7MzMzmnTpjXdaUmSpNJaEcTuBWZHxJERsT+1sNUzsFJEvBk4Gbi5btuBEfGmHcvAe4AHW9AnSZKkMa/pqcnM3BYRFwDfASYA12bmQxHxyar8mqrqB4DbMvM3dc2nAzdFxI6+/Gtm/luzfZIkSWoHkTnUx7nGrs7Ozly/3p8ckyRJY19E9GVm52Bl/rK+JElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqpCVBLCLmRsSjEbEpIpYNUt4VEb+KiPuq19822laSJGlfNbHZHUTEBOArwGnAZuDeiOjJzJ8MqPr9zPxvu9lWkiRpn9OKJ2LHAZsy84nMfBW4AVi4F9pKkiS1tVYEsUOBp+vWN1fbBvrziLg/ItZGxDGjbCtJkrTPaXpqEohBtuWA9R8Dv5+ZL0bEfOBbwOwG29YOErEIWAQwc+bM3e6sJEnSWNGKJ2KbgcPr1g8DttRXyMwXMvPFavlWYL+ImNpI27p9rMrMzszsnDZtWgu6LUmSVFYrgti9wOyIODIi9gfOAnrqK0TEWyIiquXjquM+30hbSZKkfVXTU5OZuS0iLgC+A0wArs3MhyLik1X5NcCHgP8eEduAl4GzMjOBQds22ydJkqR2ELU81F46Oztz/fr1pbshSZI0oojoy8zOwcr8ZX1JkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklRIS4JYRMyNiEcjYlNELBuk/C8j4oHqdXdE/Fld2ZMRsSEi7ouI9a3ojyRJUjuY2OwOImIC8BXgNGAzcG9E9GTmT+qq/RQ4OTN/GRHzgFXA8XXl78rMXzTbF0mSpHbSiidixwGbMvOJzHwVuAFYWF8hM+/OzF9Wq/cAh7XguJIkSW2tFUHsUODpuvXN1bahfBxYW7eewG0R0RcRi1rQH0mSpLbQ9NQkEINsy0ErRryLWhB7Z93mEzNzS0QcAtweEY9k5l2DtF0ELAKYOXNm872WJEkqrBVPxDYDh9etHwZsGVgpIv4U+BqwMDOf37E9M7dU788CN1Gb6txFZq7KzM7M7Jw2bVoLui1JklRWK4LYvcDsiDgyIvYHzgJ66itExEzgm8BHMnNj3fYDI+JNO5aB9wAPtqBPkiRJY17TU5OZuS0iLgC+A0wArs3MhyLik1X5NcDfAlOAf4gIgG2Z2QlMB26qtk0E/jUz/63ZPkmSJLWDyBz041xjWmdnZ65f70+OSZKksS8i+qoHULvwl/UlSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJlf7+ftasWTOqNk8++SQ9PT071y+77DKOOuoourq66Orq4rXXXmt1NyXtQwxiklRpRRADuOSSS+jt7aW3t5cJEya0souS9jEGMUmqrFixgr6+Prq6uli9ejULFizg3e9+NwsWLOC5557jpZdeYt68eZx88sl0dXWxceNGVqxYwS233EJXVxd9fX0AfPGLX+Sd73wnX/7ylwuPSNJY15IgFhFzI+LRiNgUEcsGKY+I+HJV/kBEvL3RtpK0x2UCsHTpUjo6Ouj97ndZu3Ytl156KXfeeSeLFi3iqquu4pFHHuGggw7ie9/7Hr29vcyaNYulS5eyYMECent76ejo4NOf/jT3338/t99+Oz09Pdx1112FBydpLJvY7A4iYgLwFeA0YDNwb0T0ZOZP6qrNA2ZXr+OBrwLHN9hWkvacyy6D/n5YufJ325YsYcOdd7Ls5z8HYNu2bcyaNYs5c+bQ0dHBOeecw5QpU7j88st32d2UKVMAOOCAAzjjjDPo6+vjpJNO2gsDkdSOmg5iwHHApsx8AiAibgAWAvVhaiGwJjMTuCciJkfEDOCIBtpK0p6RWQth3d0A7P/Zz7LtkUdg3TqOmT2bi1esYM7baw/wX331VV555RWWLl1KRHDFFVdw/fXX09HRwbZt23busr+/n8mTJ5OZ9Pb28tGPfrTAwCS1i1YEsUOBp+vWN1N76jVSnUMbbCtJe0bE756EdXfzlu5uDgA++La3cfrnPsfyyy7jxRdfBOD888/n6KOP5sILL2TixIls376d1atXM3XqVB5//HE+9KEPsXz5cq6++moeffRRMpOuri7mz59fbnySxrxWBLEYZFs2WKeRtrUdRCwCFgHMnDlzNP2TpKHtCGPd3bwBWAvw2GMQwXmDPM36wQ9+sMu273//+zuXr7vuuj3VU0n7oFZ8WH8zcHjd+mHAlgbrNNIWgMxclZmdmdk5bdq0pjstSUBtenLJktdvW7Jk5wf4JWlPakUQuxeYHRFHRsT+wFlAz4A6PcC51bcnTwB+lZlbG2wrSXvGjhDW3Q2LF8P27bX37m7DmKS9oumpyczcFhEXAN8BJgDXZuZDEfHJqvwa4FZgPrAJeAn42HBtm+2TJDUkAiZProWvlStf/5mxyZNr65K0B0W24f/xdXZ25vr160t3Q9K+IvP1oWvguiQ1ISL6MrNzsDJ/WV+SBoYuQ5ikvcQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhTQVxCLi4Ii4PSIeq94PGqTO4RHx3Yh4OCIeiojFdWWXRcTPIuK+6jW/mf5IkiS1k2afiC0D1mXmbGBdtT7QNuAzmXkUcALwqYg4uq58ZWYeW71ubbI/kiRJbaPZILYQWF0trwbeP7BCZm7NzB9Xy78GHgYObfK4kiRJba/ZIDY9M7dCLXABhwxXOSKOAOYAP6rbfEFEPBAR1w42tSlJkrSvGjGIRcQdEfHgIK+FozlQRPwecCNwUWa+UG3+KvA24FhgK3D1MO0XRcT6iFj/3HPPjebQkiRJY9LEkSpk5qlDlUXEMxExIzO3RsQM4Nkh6u1HLYT9S2Z+s27fz9TV+Sfg28P0YxWwCqCzszNH6rckSdJY1+zUZA9wXrV8HnDzwAoREcA/Aw9n5ooBZTPqVj8APNhkfyRJktpGs0HsSuC0iHgMOK1aJyLeGhE7vgF5IvAR4N2D/EzFFyNiQ0Q8ALwLWNJkfyRJktrGiFOTw8nM54FTBtm+BZhfLf8AiCHaf6SZ40uSJLUzf1lfkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQV0lQQi4iDI+L2iHisej9oiHpPRsSGiLgvItaPtr0kSdK+qNknYsuAdZk5G1hXrQ/lXZl5bGZ27mZ7SZKkfUqzQWwhsLpaXg28fy+3lyRJalvNBrHpmbkVoHo/ZIh6CdwWEX0RsWg32kuSJO1zJo5UISLuAN4ySNElozjOiZm5JSIOAW6PiEcy865RtKcKcIsAZs6cOZqmkiRJY9KIQSwzTx2qLCKeiYgZmbk1ImYAzw6xjy3V+7MRcRNwHHAX0FD7qu0qYBVAZ2dnjtRvSZKksa7Zqcke4Lxq+Tzg5oEVIuLAiHjTjmXgPcCDjbaXJEnaVzUbxK4ETouIx4DTqnUi4q0RcWtVZzrwg4i4H/i/wC2Z+W/DtZckSRoPRpyaHE5mPg+cMsj2LcD8avkJ4M9G016SJGk88Jf1JUmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpEIOYJElSIU0FsYg4OCJuj4jHqveDBqnzRxFxX93rhYi4qCq7LCJ+Vlc2v5n+SJIktZNmn4gtA9Zl5mxgXbX+Opn5aGYem5nHAh3AS8BNdVVW7ijPzFub7I8kSVLbaDaILQRWV8urgfePUP8U4PHMfKrJ40qSJLW9ZoPY9MzcClC9HzJC/bOArw/YdkFEPBAR1w42tSlJkrSvGjGIRcQdEfHgIK+FozlQROwPnA78n7rNXwXeBhwLbAWuHqb9oohYHxHrn3vuudEcWpIkaUyaOFKFzDx1qLKIeCYiZmTm1oiYATw7zK7mAT/OzGfq9r1zOSL+Cfj2MP1YBawC6OzszJH6LUmSNNY1OzXZA5xXLZ8H3DxM3bMZMC1ZhbcdPgA82GR/JEmS2kazQexK4LSIeAw4rVonIt4aETu/ARkRk6rybw5o/8WI2BARDwDvApY02R9JkqS2MeLU5HAy83lq34QcuH0LML9u/SVgyiD1PtLM8SVJktqZv6wvSZJUiEFMkiSpEIOYJElSIQYxSZKkQgxikiRJhRjEJEmSCjGISZIkFWIQkyRJKsQgJkmSVIhBTJIkqRCDmCRJUiEGMUmSpEIMYpIkSYUYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhBrFh9Pf3s2bNmlG1efLJJ+np6dm5ftFFF3HCCSdwwgkncOWVV7a6i5IkqQmtuNevWLGCk046iRNPPJFzzz2X3/72tw3vyyA2jFacnE996lPcc8893H333dx88808/vjjre6mJEnaTa24119wwQXcdddd/PCHPwTgtttua3hfE0d15PEgEyKAWsLt6+ujq6uLj33sY3zjG9/g5Zdf5oADDuC6667jwAMP5IMf/CAvvfQSEcGqVatYsWIF9957L11dXVx99dV0dHQA8IY3vIEJEyYwYcKEkqOTJEmw837fynt9ZrJ9+3ZmzZo1mn7kbr+ADwMPAduBzmHqzQUeBTYBy+q2HwzcDjxWvR/UyHE7Ojpyj1i+PHPx4szt2zMz86dPPJGnHH545vLleeaZZ+a///u/Z2bmt771rfzMZz6TfX19efbZZ+9s/tprr+V3v/vd/PjHP77LrtesWZPnnnvunum3JElqXN39/qc//WmecsopmYsX55nHHLPb9/orrrgiZ82alfPmzcvf/OY3rysD1ucQmabZqckHgTOAu4aqEBETgK8A84CjgbMj4uiqeBmwLjNnA+uq9TIyob8furthyZLa+uc/D08/Df39bNiwgWXLltHV1cWXvvQlfvGLXzBnzhw6Ojo455xzWLx4MS+88MKgu77jjjtYvXo111xzzd4dkyRJer3B7vcbN0J3Nxu2bt3te/0ll1zCxo0bOfLII7nuuusa7k5TU5OZ+TBAVFN5QzgO2JSZT1R1bwAWAj+p3ruqequBXuBvmunTbouAlStry93d0N3N/sC2Qw+FlSs55swzufjii5kzZw4Ar776Kq+88gpLly4lIrjiiiu4/vrr6ejoYNu2bTt3+6Mf/YhLL72UtWvXcsABBxQYmCRJ2mnA/X7/7m62ASxezDFbtuzWvf6//uu/eOMb30hE8OY3v5lJkyY13p3aE7NmxxS9wF9n5vpByj4EzM3MT1TrHwGOz8wLIqI/MyfX1f1lZh40xDEWAYsAZs6c2fHUU0813e9BZcIbag8KtwML5s5l0qRJnH766dx44428+OKLAJx//vkcffTRXHjhhUycOJHt27ezevVqpk6dyvz585k+fTrLly/n7LPPBmDq1KkAr5tLliRJhVT3++3AAmDSGWfs9r3+mmuu4aGHHtr5+bB//Md/ZL/99tt5qIjoy8zOwboxYhCLiDuAtwxSdElm3lzV6WXoIPZh4L0Dgthxmfnp0QSxep2dnbl+/S6Hal5m7TFld/fvti1eXEvOwz/1kyRJ7WIv3++HC2IjfkYsM0/NzD8e5HVzg8ffDBxet34YsKVafiYiZlSdnAE82+A+W6/+pCxeDNu3197r55AlSVJ7G2P3+73x8xX3ArMj4kjgZ8BZwF9UZT3AecCV1Xuj4a71ImDy5Ncn4h1zyJMn+0RMkqR9wRi73zf1GbGI+ADwv4BpQD9wX2a+NyLeCnwtM+dX9eYDfw9MAK7NzC9U26cA3wBmAv8P+HBm/udIx91jU5Pwut8RG3RdkiS1v714v2/qM2Jj0R4NYpIkSS3U1GfEJEmStGcYxCRJkgoxiEmSJBViEJMkSSrEICZJklSIQUySJKkQg5gkSVIhbfk7YhHxHLCH/tXvnaYCv9jDxxjLxvP4x/PYYXyP37GPX+N5/ON57LB3xv/7mTltsIK2DGJ7Q0SsH+rH18aD8Tz+8Tx2GN/jd+zjc+wwvsc/nscO5cfv1KQkSVIhBjFJkqRCDGJDW1W6A4WN5/GP57HD+B6/Yx+/xvP4x/PYofD4/YyYJElSIT4RkyRJKmRcB7GI+HBEPBQR2yNiyG9MRMTciHg0IjZFxLK67QdHxO0R8Vj1ftDe6XnzGul7RPxRRNxX93ohIi6qyi6LiJ/Vlc3f64NoQqPnLiKejIgN1RjXj7b9WNTguT88Ir4bEQ9X18jiurK2O/dDXcN15RERX67KH4iItzfath00MP6/rMb9QETcHRF/Vlc26DXQLhoYe1dE/Kru7/PfNtq2HTQw/s/Wjf3BiHgtIg6uytr93F8bEc9GxINDlI+N6z4zx+0LOAr4I6AX6ByizgTgceAPgP2B+4Gjq7IvAsuq5WXAVaXHNIqxj6rv1Z/Dz6n9FgrAZcBflx7Hnh4/8CQwtdk/v7H0aqTvwAzg7dXym4CNdX/v2+rcD3cN19WZD6wFAjgB+FGjbcf6q8HxvwM4qFqet2P81fqg10A7vBocexfw7d1pO9Zfox0D8D7gzn3h3Ff9Pwl4O/DgEOVj4rof10/EMvPhzHx0hGrHAZsy84nMfBW4AVhYlS0EVlfLq4H375GO7hmj7fspwOOZuad/SHdvafbc7dPnPjO3ZuaPq+VfAw8Dh+6tDrbYcNfwDguBNVlzDzA5ImY02HasG3EMmXl3Zv6yWr0HOGwv93FPaeb8jYtzP8DZwNf3Ss/2gsy8C/jPYaqMiet+XAexBh0KPF23vpnf3ZCmZ+ZWqN24gEP2ct+aMdq+n8WuF+gF1ePca9tpaq7S6PgTuC0i+iJi0W60H4tG1feIOAKYA/yobnM7nfvhruGR6jTSdqwb7Rg+Tu0pwQ5DXQPtoNGx/3lE3B8RayPimFG2HcsaHkNETALmAjfWbW7nc9+IMXHdT9xTOx4rIuIO4C2DFF2SmTc3sotBtrXFV02HG/so97M/cDpwcd3mrwKfp/Zn8XngauD83evpntGi8Z+YmVsi4hDg9oh4pPq/rDGthef+96j9h/mizHyh2jzmz/0AjVzDQ9Vp2+u/TsNjiIh3UQti76zb3JbXQKWRsf+Y2kcuXqw+7/gtYHaDbce60YzhfcAPM7P+CVI7n/tGjInrfp8PYpl5apO72AwcXrd+GLClWn4mImZk5tbqceazTR6rpYYbe0SMpu/zgB9n5jN1+965HBH/BHy7FX1upVaMPzO3VO/PRsRN1B5Z38U4OPcRsR+1EPYvmfnNun2P+XM/wHDX8Eh19m+g7VjXyPiJiD8FvgbMy8znd2wf5hpoByOOve5/MMjMWyPiHyJiaiNt28BoxrDLrEebn/tGjInr3qnJkd0LzI6II6snQ2cBPVVZD3BetXwe0MgTtrFiNH3f5XMD1Q18hw8Ag34rZQwbcfwRcWBEvGnHMvAefjfOffrcR0QA/ww8nJkrBpS127kf7hreoQc4t/oW1QnAr6pp20bajnUjjiEiZgLfBD6SmRvrtg93DbSDRsb+lurvOxFxHLX74vONtG0DDY0hIt4MnEzdfwv2gXPfiLFx3e+pbwG0w4vaTWQz8ArwDPCdavtbgVvr6s2n9q2xx6lNae7YPgVYBzxWvR9cekyjGPugfR9k7JOo/UfpzQPaXw9sAB6o/oLOKD2mVo+f2jdm7q9eD42nc09taiqr83tf9Zrfrud+sGsY+CTwyWo5gK9U5Ruo+xb1UNd/O70aGP/XgF/Wnev11fYhr4F2eTUw9guqsd1P7YsK7xhP575a/yhww4B2+8K5/zqwFfgttXv9x8fide8v60uSJBXi1KQkSVIhBjFJkqRCDGKSJEmFGMQkSZIKMYhJkiQVYhCTJEkqxCAmSZJUiEFMkiSpkP8Pinu9TLhZx0QAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 720x360 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# ---------------------\\n\",\n    \"# Run this sanity check\\n\",\n    \"# Note that this is not an exhaustive check for correctness.\\n\",\n    \"# The plot produced should look like the \\\"test solution plot\\\" depicted below. \\n\",\n    \"# ---------------------\\n\",\n    \"\\n\",\n    \"print (\\\"-\\\" * 80)\\n\",\n    \"print (\\\"Outputted Plot:\\\")\\n\",\n    \"\\n\",\n    \"M_reduced_plot_test = np.array([[1, 1], [-1, -1], [1, -1], [-1, 1], [0, 0]])\\n\",\n    \"word2ind_plot_test = {'test1': 0, 'test2': 1, 'test3': 2, 'test4': 3, 'test5': 4}\\n\",\n    \"words = ['test1', 'test2', 'test3', 'test4', 'test5']\\n\",\n    \"plot_embeddings(M_reduced_plot_test, word2ind_plot_test, words)\\n\",\n    \"\\n\",\n    \"print (\\\"-\\\" * 80)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<font color=red>**Test Plot Solution**</font>\\n\",\n    \"<br>\\n\",\n    \"<img src=\\\"imgs/test_plot.png\\\" width=40% style=\\\"float: left;\\\"> </img>\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 1.5: Co-Occurrence Plot Analysis [written] (3 points)\\n\",\n    \"\\n\",\n    \"Now we will put together all the parts you have written! We will compute the co-occurrence matrix with fixed window of 4 (the default window size), over the Reuters \\\"crude\\\" (oil) corpus. Then we will use TruncatedSVD to compute 2-dimensional embeddings of each word. TruncatedSVD returns U\\\\*S, so we need to normalize the returned vectors, so that all the vectors will appear around the unit circle (therefore closeness is directional closeness). **Note**: The line of code below that does the normalizing uses the NumPy concept of *broadcasting*. If you don't know about broadcasting, check out\\n\",\n    \"[Computation on Arrays: Broadcasting by Jake VanderPlas](https://jakevdp.github.io/PythonDataScienceHandbook/02.05-computation-on-arrays-broadcasting.html).\\n\",\n    \"\\n\",\n    \"Run the below cell to produce the plot. It'll probably take a few seconds to run. What clusters together in 2-dimensional embedding space? What doesn't cluster together that you might think should have?  **Note:** \\\"bpd\\\" stands for \\\"barrels per day\\\" and is a commonly used abbreviation in crude oil topic articles.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Running Truncated SVD over 8185 words...\\n\",\n      \"Done.\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAmgAAAEvCAYAAADxWj0AAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAArBUlEQVR4nO3de3hV1Z3H//eXm6AFoqKiIFK8gMo4yC+iUtoigtcpeClW61ikInZqNaU+bbG2mnpp7fxG09h27FgvOIO2o512wMvPFtFoHWwVFBUrqGOjBhFQAXVUFLJ+f5yTGGICCSeXneT9ep7znLPPXmvvtbMT/bDW2ntHSglJkiRlR7f2boAkSZK2ZECTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIzp0d4N2B4DBgxIQ4cObe9mSJIkbdOSJUveSCnt1pw6HTKgDR06lMWLF7d3MyRJkrYpIl5ubh2HOCVJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiRl3pw5c3j77bebXL6yspKJEye2YotalwFNkiRlXmMBbfPmze3QmtZnQJMkSW0npdqPlZWVHHbYYZx55pkUFxdTXl7Ohg0bOO200zj66KOZMGECL774Ig888ABLly5l6tSpXHDBBbX1zjrrLM4991z+/Oc/M3bsWMaNG8c//dM/kersA+DVV1/lxBNPZMKECZx44omsXbsWgP3226+2zMSJE6msrKSyspIxY8Ywffp0Ro4cyW233ca0adMYPXo0P/7xj9vmZ0QHvQ+aJEnqgEpLYf16KCuDCEiJymef5YGJE+k9Zw6HHXYYTz31FKeccgqnn346Tz31FLNnz+a3v/0to0aNYu7cuQwePLg2SC1cuJB+/fpRXFzMHXfcwbBhw/jqV7/KXXfdxSGHHFK7229/+9v84Ac/4IgjjmDevHn85Cc/4V/+5V8abebKlSt5+OGHWb9+PUOHDqWyspIBAwYwfPhwLr744tb/OWFAkyRJbSGlXDgrL88tl5XBFVcw4v336fv++9CjByNHjmTVqlWUl5fzy1/+EoAePRqOKiNHjqRfv34AbNiwgWHDhgEwduxYli9fvkVAe+aZZ5g9ezYAmzZt2qLn7OPmfdzrNmLECHr37s3AgQMZNGgQAwcOBKBPnz5s3ryZ7t27F/azaAIDmiRJan0RuVAGuZCWD2rL+/Th3SuuoPfmzSxbtozRo0czc+ZMTj75ZAA+/PBDAHr16sWmTZtqN1c3JPXv35+XXnqJYcOGsWjRIqZMmbLFrg8++GAuvvhiDj300C22WV1dzcaNG9m8eTPPPfdcnaZGg5+BTwyfthbnoEmSpLZRN6TlDT34YM6dOZMjjjiCadOmUVZWxh133MGECRM46qij+NnPfgbAKaecwjnnnMMPfvCDT2z2uuuu48wzz2TcuHH07NmTyZMnb7H+mmuu4bLLLmPChAlMmDCBO+64A4BvfOMbHHHEEZx//vkMHjy4lQ56+0RbJcGWVFxcnHwWpyRJHUxKMGtWbe9ZJTBj7725/+WXc+Gtk4qIJSml4ubUsQdNkiS1vrrhrKQEqqth+nR49dXc9x2ww6g1OQdNkiS1vggoKsqFs/xVnENvuon7+/XLfd+Je9C2h0OckiSp7aS0ZRirv9wJOcQpSZKyrX4Y6+ThbHsZ0CRJkjLGgCZJkpQxBjRJkqSMMaBJkqQO6/XXX+eiiy5qUtkZM2ZQUVHRrO3/93//N6+88sp2tKwwBjRJktRhDRw4kGuuuabVtt9YQNu8eXOr7RMMaJIkqaOpc4uwyspKJk6cSGlpKeeccw6TJ09m1KhRLF++HIA777yTUaNGceqpp/Lqq69uUadGzcPTKyoqGDNmDEcddRTTp0/nr3/9K/fddx8XXHABU6dOBWCfffbh61//OlOmTOFLX/oSTz75JAAvv/wykyZNarFD9Ea1kiSp4ygthfXra292S0rw/POwaRN9R43ipptu4vbbb+fGG2/kJz/5CZdccglLliyhd+/e/P3f//1WN/273/2OK6+8kmOOOYbq6mq6devGcccdx4wZMxg3bhwAq1atYvbs2QwZMoSFCxdy00038fOf/5xbbrmFc845p8UO0x40SZLUMaSUC2fl5R8/HuqKK3KPi/rgA/6f0aMBGDJkCG+++SZvvPEGe+yxB3379qVnz56Mzq+Pevdeq7lp/7e//W3mz5/PmWeeyS233NJgEwYNGsSQIUMAmDBhAo899hjvvfced911FyeffHKLHWqL9KBFxHFAOdAduDGldHW99ZFffwLwHnB2SumJ/LpK4B1gM7CpuXfalSRJXURErucMciEt/9B19t4bjj2W6PZxv1NKiQEDBrB69WreffddevfuzdKlSwHYeeedee2110gpsXr1alauXAnArrvuys9//nNSShxwwAFMnTqVXr16sWnTptrtdu/evU5zglNPPZWvf/3rfO5zn2OHHXZosUMtOKBFRHfgF8AkoAp4PCLmp5T+WqfY8cD++dfhwPX59xpHpZTeKLQtkiSpk6sJaTXhDOCAAxp8IkH37t25/PLLGTduHJ/+9KcZNGgQAP369eO4447jyCOPZMyYMeyxxx4AXHvttfzxj3+kurqaSZMm0a9fP/7hH/6BSy+9lAMPPJB/+7d/+8Q+pk+fzuDBg2vnorXYYRb6LM6IOBIoTSkdm1++GCCl9OM6Zf4NqEgp/Tq/vAIYn1Jale9BK25OQPNZnJIkdVEp5YY36wa0Og9gb2urV6/mjDPO4IEHHmi0THs9i3MQ8Gqd5ar8d00tk4A/RsSSiJjZAu2RJEmdUd1wVlIC1dW597pz0trQggULmDx5Mt///vdbfNstMQetobha/ye0tTKfSSm9FhG7AwsiYnlK6eFP7CQX3mYCtZPzJElSFxIBRUVb9pjVzEkrKmrzHrRJkya16K016mqJgFYF7F1neTDwWlPLpJRq3tdExO+BMcAnAlpK6QbgBsgNcbZAuyVJUkdTWprrKasJYzUhrR2GN1tTSwxxPg7sHxGfjohewOnA/Hpl5gNfiZwjgA35+Wc7RURfgIjYCTgGWNYCbZIkSZ1V/TDWycIZtEAPWkppU0R8A/gDudts3JxSejYivpZf/0vgXnK32HiR3G02puer7wH8Pn8/kh7A7Sml+wptkyRJUkdW8FWc7cGrOCVJUkfRXldxSpIkqQUZ0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJypgWCWgRcVxErIiIFyNidgPrIyKuy69/OiJGN7WuJElSV1NwQIuI7sAvgOOBg4AzIuKgesWOB/bPv2YC1zejriRJUpfSEj1oY4AXU0ovpZQ+BH4DTKlXZgrw7ynnz0BRROzZxLqSJEldSksEtEHAq3WWq/LfNaVMU+pKkiR1KS0R0KKB71ITyzSlbm4DETMjYnFELF67dm0zmyhJktS6Nm/e3GLb6tEC26gC9q6zPBh4rYllejWhLgAppRuAGwCKi4sbDHGSJEnNdfHFF7No0SI+/PBDLrnkEhYvXsyrr77K2rVreeWVV/jNb37DiBEjeOihh7j00kuJCEaMGMH111/Pyy+/zNSpUxkxYgQ9e/bkoosuYvr06ey2227suuuuDBs2DKB3RPx3SukkgIi4GbglpfSnxtrUEj1ojwP7R8SnI6IXcDowv16Z+cBX8ldzHgFsSCmtamJdSZKklpVyfT333Xcf69at46GKChYuXMgll1xCSom+ffsyf/58vvOd73DjjTeSUuKb3/wm8+fPp6Kigj59+nDPPfcAUFlZyS9+8QtuvvlmLr74Yq677jruuecedthhh5q9fQD0i4iBEfEp4O+2Fs6gBXrQUkqbIuIbwB+A7sDNKaVnI+Jr+fW/BO4FTgBeBN4Dpm+tbqFtkiRJalRpKaxfD2VlPPPMMzz00EOM33tv6NGDjb178+abb3L44YcDMGTIEBYsWMAbb7xBZWUlU6bkrmV89913GT58OCNHjmTkyJH069cPgBdffJHDDjsMgMMPP5yqqqqavd4CnA2sAf5zW01siSFOUkr3kgthdb/7ZZ3PCTi/qXUlSZJaRUq5cFZeDsDBkyZxTO/elC9fDiUlfPiTn/CjH/+YiKhTJTFgwACGDRvG3Xffzac+9SkAPvroI1auXEn37t1ry+67774sXryYww8/nMcff5w999yzZtWdwEPkOqpO21YzWySgSZIkdQgRUFaW+1xezgnl5TwKjB80iHjqKQbPmMG+++7bQLXg2muvZfLkyaSU6NatG2VlZbU9ZzV+9KMf8dWvfpUBAwbQv39/9tlnHwBSSh9ExJ+BvVJK27zaMVLqePPti4uL0+LFi9u7GZIkqaNKCbrVmYpfXZ0LbwX66KOP6NmzJwDnnnsuxx57LFOnTl2SUiqOiJ8C96SUFmxrOz6LU5IkdS0pwaxZW343a1bthQOFeOaZZ/jsZz/LkUceybvvvstJJ50EQETcCgxpSjgDhzglSVJXUhPOysuhpCQ33FmzDLnlAnrSRo8ezZ/+9MkLNFNK05qzHQOaJEnqOiKgqOjjcFZ3TlpRUYsMc7YE56BJkqSuJ6Utw1j95RYUEUtSSsXNqeMcNEmS1PXUD2MZ6TmrYUCTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJCljDGiSJEkZY0CTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJHVaV199Nc888wwA++23Xzu3pul6tHcDJEmSWsvs2bPbuwnbxR40SZLUKaSUOO+88xg3bhxjx47lscce4+yzz+aRRx5p76Y1mz1okiSp40oJIgCYN28eH334IY888ggvvfQSp59+OgcddFA7N3D7FNSDFhG7RMSCiHgh/75zI+WOi4gVEfFiRMyu831pRKyMiKX51wmFtEeSJHUhpaUwa1YupAErli9n7KuvQmkpw4YNY926de3bvgIUOsQ5G1iYUtofWJhf3kJEdAd+ARwPHAScERF142xZSmlU/nVvge2RJEldQUqwfj2Ul9eGtOH/8z8sWrgQ1q/npf/9X4qKitq7ldut0IA2Bbg1//lW4KQGyowBXkwpvZRS+hD4Tb6eJEnS9omAsjIoKcmFtG7dmHz33XQ/+GDGLV7Mmf/4j/zsZz9r71Zut0j5bsHtqhyxPqVUVGd5XUpp53plvggcl1KakV8+Czg8pfSNiCgFzgbeBhYDF6WUttkfWVxcnBYvXrzd7ZYkSZ1EStCtTn9TdXXtnLSsiIglKaXi5tTZZg9aRNwfEcsaeDW1F6yhn1JNKrwe2BcYBawCrtlKO2ZGxOKIWLx27dom7lqSJHVaKeWGN+uqMyetI9tmQEspTUwpjWzgNQ9YHRF7AuTf1zSwiSpg7zrLg4HX8ttenVLanFKqBn5Fbji0sXbckFIqTikV77bbbk0/QkmS1PnUhLPy8twwZ3X1x8OdnSCkFXqbjfnANODq/Pu8Bso8DuwfEZ8GVgKnA1+GXKhLKa3KlzsZWFZgeyRJUlcQAUVFuVBWVvbxnDTIfZ+xYc7mKnQO2q7AHcAQ4BVgakrprYjYC7gxpXRCvtwJwE+B7sDNKaWr8t//B7nhzQRUAufVCWyNcg6aJEkCtrgPWoPLGbA9c9AKCmjtxYAmSZI6ila5SECSJElty4AmSZKUMQY0SZKkjDGgSZIkZYwBTZIkKWMMaJIkSRljQJMkScoYA5okSVLGGNAkSZIyxoAmSZJa3euvv85FF13U3s3oMAxokiSp1Q0cOJBrrrlmi+82b97cTq3Jvh7t3QBJktT5VVZWMmPGDMaNG0dlZSVvvfUWZ5xxBkuXLuWxxx5jw4YNfO1rX2PmzJm8++67fOlLX2Ljxo0ccsghPPHEE1RUVLT3IbQpA5okSWodKUHEJ77eYYcdmD9/PgCTJ09mp512YuPGjfzd3/0d06dP51e/+hXjxo3j4osv5rbbbuOJJ55o65a3O4c4JUlSyysthVmzciENcu/PPw8VFYwdO7a22PXXX8+4ceM45phjWLNmDWvWrOH5559nzJgxABx++OHt0Pj2Z0CTJEktKyVYvx7Kyz8OaVdcAa++Ch98QPduufixbt06br75Zh566CH+8Ic/0L9/f1JK7L///ixevBiAxx9/vB0PpP04xClJklpWBJSV5T6Xl+deAHvvDcceWzvsWVRUxMEHH8y4ceM48MAD2XXXXQE499xzOe2001iwYAEjR45sjyNod5Fquh47kOLi4lSTrCVJUkalBN3qDNZVVzc4J60xVVVVTJ06lR122KFDXyQQEUtSSsXNqeMQpyRJankp5YY366o7J62FdbZbdjjEKUmSttvFF1/MokWL+PDDD7nkkks45JBDmDlzJu8vW0aPlStZcOGFfHXDBmb83/8xrrycucuX8+Lhh1P6wx/y3e9+d5u32KjpPXv++eeZOXMmKSUGDhzInDlz6NOnD/vssw8nnngir7zyCnfffXd7/zhajAFNkiQ1XZ1bZ9x3332se+stHnroId577z2OPPJIDjjgAL71rW9xzKJFVK9bR7ef/hSmT4cLL4RBg+CVV2rrX3rppU2+xcZ3vvMdLr/8cj73uc9x+eWX86tf/YoLL7yQVatWMXv2bIYMGdJeP5FW4RCnJElqmnq3znjm6ad56M47GT90KCeccAIbN27kr3/9K0cddRSUlubCWQQRUXvhQDr55NrNNecWG88//3zt7TnGjh3L8uXLARg0aFCnC2dgQJMkSU3RwK0zDv6f/+GYdeuoOOkkKh58kKeffpqDDz64dkJ/dT7I7bLLLlRVVUEES5YsAZp/i40DDjiARYsWAbBo0SKGDx8OQPfu3dvoB9C2vIpTkiQ1Tc3E/5rbZgA/GDOGP/XpQ0QwePBgrrrqKs4991w++OADevbsyR//+EdWrFjBGWecwZAhQxgwYABDhgzhsssu47TTTqOqqooDDzyQpUuXMn/+fPr3789pp53GRx99xMiRI1m6dCkVFRUsX76c8847j5QSu+++O//xH/9Bnz592G+//XjxxRfb8YeybdtzFacBTZIkNV2Bt87oirzNhiRJaj1tfOuMrqyggBYRu0TEgoh4If++cyPlbo6INRGxbHvqS5KkdlZ3eLOkJNdzVlKy5eOc1GIK7UGbDSxMKe0PLMwvN2QOcFwB9SVJUnuKgKKiXCgrK/v4cU4lJbnvHeZsUQXNQYuIFcD4lNKqiNgTqEgpDW+k7FDg7pTSyO2pX5dz0CRJaid17oPW4LI+oT3moO2RUloFkH/fvY3rS5KktlQ/jBnOWsU2nyQQEfcDAxtYdUnLN2er7ZgJzAQ65Q3pJEmSamwzoKWUJja2LiJWR8SedYYo1zRz/02un1K6AbgBckOczdyPJElSh1HoEOd8YFr+8zRgXhvXlyRJ6nQKDWhXA5Mi4gVgUn6ZiNgrIu6tKRQRvwYeBYZHRFVEnLO1+pIkqfkqKyuZOLHRga+CzJkzhwULFgBw3XXXtco+9DGfJCBJUidRWVnJjBkzuP/++1t1Px3h8UpZ4pMEJEkSAD//+c858MADmT59eu13++23HwBHH300b731Fs888wy9evXinXfe4fHHH2fmzJkAHHvssYwfP54xY8bw6KOPAlBaWsrcuXO5/fbbWblyJePHj+eqq65q+wPrIrZ5kYAkScqwBu5D9r3vfY9evXpx/fXXM3fu3E9UGT9+PA8++CBVVVUcf/zxPPzwwyxbtoyjjjoKgN/97nfstNNOPPfcc5x//vk88MADtXW//OUvc+mll1JRUdGqh9XVGdAkSeqoSkth/fqP7+yfEs8++ihvPfssf3755drer/qOPvpo5s6dyxtvvMFll13G3Llzee6557jlllt4//33KSkpYcWKFXTv3p2VK1e26SEpxyFOSZI6opRy4azuszCvuIKD33uPS0aP5rTTTmOXXXahqqoKgKVLl7Jp0yYAxowZw1/+8hc2btzI6NGjefbZZ3nzzTcZOHAg9913H927d+dPf/oT//qv/0pDc9V79OhBdXV1Wx5tl2MPmiRJHVHNszAhF9LKy3Of996bU+++m5533cX3vvc9+vbty+c//3k+//nP06NH7n/7PXr0YODAgYwaNQqAgQMHsv/++wNw5JFH8uMf/5iJEyfymc98psFdf/GLX+TEE0/k+OOP58ILL2zVw+yqvIpTkqSOLCXoVmdArLraxy9ljFdxSpLUlaSUG96sq2a4Ux2aAU2SpI6oJpyVl0NJSa7nrKRkyzlp6rCcgyZJUkcUAUVFuVBWcxVnzZy0oiKHOTs456BJktSR1b8PWgP3RVP7cg6aJEldTf0wZjjrFAxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMKSigRcQuEbEgIl7Iv+/cSLmbI2JNRCyr931pRKyMiKX51wmFtEeSJKkzKLQHbTawMKW0P7Awv9yQOcBxjawrSymNyr/uLbA9kiRJHV6hAW0KcGv+863ASQ0VSik9DLxV4L4kSZK6hEID2h4ppVUA+ffdt2Mb34iIp/PDoA0OkQJExMyIWBwRi9euXbu97ZUkScq8bQa0iLg/IpY18JrSAvu/HtgXGAWsAq5prGBK6YaUUnFKqXi33XZrgV1LkiRlU49tFUgpTWxsXUSsjog9U0qrImJPYE1zdp5SWl1nW78C7m5OfUmSpM6o0CHO+cC0/OdpwLzmVM6HuhonA8saKytJktRVFBrQrgYmRcQLwKT8MhGxV0TUXpEZEb8GHgWGR0RVRJyTX/XPEfFMRDwNHAXMKrA9kiRJHd42hzi3JqX0JnB0A9+/BpxQZ/mMRuqfVcj+JUmSOiOfJCBJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJapbrrrtuu+vOmTOHt99+uwVbI3VOBjRJUrMY0KTWZ0CTJJFS4rzzzmPcuHGMHTuWxx57jPHjx1NVVQXAlVdeyZw5c7j99ttZuXIl48eP56qrrqKiooJjjz2WU089lVGjRnHnnXcCcPbZZ/PII48AMHfuXEpLS3nggQdYunQpU6dO5YILLmi3Y5U6goKexSlJ6uBSggjmzZvHRx99xCN/+hMv/e1vnH766ey4446fKP7lL3+ZSy+9lIqKCgAqKipYuXIlTz75JO+//z7FxcWceuqpDe5qwoQJjBo1irlz5zJ48ODWPCqpwzOgSVJXVVoK69dDWRkrVqxg7JFHwqxZDCsqYt26dey00061RVNKjW7m0EMPpWfPnvTs2ZPdd9+dtWvXEhFNqiupYQ5xSlJXlFIunJWXw6xZDD/gABb99KdQXs5LL79MUVERu+yyS+0Q55IlS2qr9ujRg+rq6trlpUuXsmnTJt555x1Wr17NgAEDGq3bq1cvNm3a1CaHKHVk9qBJUlcUAWVluc/l5UwuL+ceYNyee7J5+XJ+9rOfsXHjRmbMmMEBBxzADjvsUFv1i1/8IieeeCLHH388hxxyCHvttRdTp07lb3/7G1deeSXdu3dnxowZnHHGGdx+++0MGDCAoqIiAE455RTOOeccxo4dyxVXXNH2xy11ENERu56Li4vT4sWL27sZktTxpQTd6gymVFfnwlsTVVRUMHfuXG688cZWaJzUOUTEkpRScXPqOMQpSV1VSjBr1pbfzZqV+15SuzKgSVJXVBPOysuhpCTXc1ZSUjsnrakhbfz48faeSa3AOWiS1BVFQFFRLpSVlW05J62oqFnDnJJannPQJKkry98HrdFlSQVzDpokqXnqhzHDmZQJBjRJkqSMMaBJkiRljAFNkiQpYwoKaBGxS0QsiIgX8u87N1Bm74h4MCKei4hnI6KkOfUlSZK6mkJ70GYDC1NK+wML88v1bQIuSikdCBwBnB8RBzWjviRJUpdSaECbAtya/3wrcFL9AimlVSmlJ/Kf3wGeAwY1tb4kSVJXU2hA2yOltApyQQzYfWuFI2IocCjwl+2pL0mS1BVs80kCEXE/MLCBVZc0Z0cR8Sngv4BvppTebk7dfP2ZwEyAIUOGNLe6JElSh7HNgJZSmtjYuohYHRF7ppRWRcSewJpGyvUkF85uSyn9rs6qJtXPt+MG4AbIPUlgW+2WJEnqqAod4pwPTMt/ngbMq18gIgK4CXgupXRtc+tLkiR1NYUGtKuBSRHxAjApv0xE7BUR9+bLfAY4C5gQEUvzrxO2Vl+SJKkr2+YQ59aklN4Ejm7g+9eAE/KfHwEafLhbY/UlSZK6Mp8kICnzKisrmTix0emwmd22JG0vA5qkTqm6unqL5c2bN7dTSySp+Qoa4pSktrJhwwbOPPNMVqxYwVlnncUhhxzC5ZdfzqZNm9hll134z//8T3r37s1+++3HaaedxqOPPsq3v/1tysvL6devH/vuuy/HH388l156KRHBiBEjuP7667fYR1lZGb/5zW/YcccdOemkkygpKWmkNZLUugxokrIrJYjcFNbKykoeWLiQ3n36cNhhhzFv3jwefPBBAL773e9yxx138JWvfIVNmzbxhS98gR/96EdUVFTw2muvcffdd9OjRw9Gjx5NRUUF/fv3Z9asWdxzzz2MHDmydne33XYbDz74IH379v1ED5wktSUDmqRsKi2F9euhrAyAESNG0PfSS6GoiJEjR/L6669z7rnnsnHjRlavXk2/fv0A6N69O0cccUTtZoqLi+nZsydr166lsrKSKVOmAPDuu+8yfPjwLQLaT3/6Uy688EI2bdrEeeedx7hx49rscCWpLgOapOxJKRfOystzyyUlLF+yhHcfeYTeF1zAsmXLKC0t5Yc//CFHHnkk3/nOd0gpd//qiCDi4wvHu3fvDsCAAQMYNmwYd999N5/61KcA+Oijj1i5cmVt2dGjRzNu3DiqqqqYMmUKS5YsaZvjlaR6DGiSsieitueM8nIoL2cocO4BB/DCokVMmzaNgQMHcs455zB8+HD69+9f24PW+CaDa6+9lsmTJ5NSolu3bpSVlW1R76yzzuKNN97ggw8+4Pzzz2+945OkbYiaf3V2JMXFxWnx4sXt3QxJrS0l6FbnYvPq6to5aZLUUUTEkpRScXPqeJsNSdmUEsyateV3s2blvpekTs6AJil7asJZeTmUlOR6zkpKcsuGNEldgHPQJGVPBBQV5UJZWdmWc9KKihzmlNTpOQdNUnbVuQ9ag8uS1AE4B01S51I/jBnOJHURBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGWNAkyRJyhgDmiRJUsYY0CRJkjLGgCZJkpQxBjRJkqSMMaBJkiRljAFNkiQpYwxokiRJGVNQQIuIXSJiQUS8kH/fuYEye0fEgxHxXEQ8GxElddaVRsTKiFiaf51QSHskSZI6g0J70GYDC1NK+wML88v1bQIuSikdCBwBnB8RB9VZX5ZSGpV/3VtgeyRJkjq8QgPaFODW/OdbgZPqF0gprUopPZH//A7wHDCowP1KkiR1WoUGtD1SSqsgF8SA3bdWOCKGAocCf6nz9Tci4umIuLmhIVJJkqSuZpsBLSLuj4hlDbymNGdHEfEp4L+Ab6aU3s5/fT2wLzAKWAVcs5X6MyNicUQsXrt2bXN2LUmS1KH02FaBlNLExtZFxOqI2DOltCoi9gTWNFKuJ7lwdltK6Xd1tr26TplfAXdvpR03ADcAFBcXp221W5IkqaMqdIhzPjAt/3kaMK9+gYgI4CbguZTStfXW7Vln8WRgWYHtkSRJ6vAKDWhXA5Mi4gVgUn6ZiNgrImquyPwMcBYwoYHbafxzRDwTEU8DRwGzCmyPJElSh7fNIc6tSSm9CRzdwPevASfkPz8CRCP1zypk/5IkSZ2RTxKQJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJCljDGiSJEkZY0CTJEnKGAOaJElSxhjQJEmSMsaAJkmSlDEGNEmSpIwxoEmSJGWMAU2SJCljDGiSJEkZY0DbisrKSiZOnNjseldeeSVz5sxp+QZJkqQuwYAmSZKUMT3auwGZkxJE1C5u2LCBM888kxUrVnDWWWfRv39/7rnnHj744AOqqqq47rrr+OxnP8vDDz/MhRdeyJAhQ9hhhx0YPHhwOx6EJEnqyOxBq6u0FGbNyoU0gJSofPZZfjlkCI8++ii33HILa9as4Z133uGuu+7i97//PbNmzQLgW9/6FvPnz2fevHls2LCh/Y5BkiR1ePag1UgJ1q+H8vLcclkZXHEFI95/n77vvw89ejBy5EhSShx22GEADB06tDaMvf322wwZMgSAMWPGtMcRSJKkTsIetBoRuVBWUpILad26wS23sLxPH9694go2bd7MsmXLiAiWLFkCwCuvvEK/fv0A6Nu3L1VVVQA8/vjj7XYYkiSp47MHra6akFbTiwYMPfhgzp05kxdeeIFp06ax8847s+OOO3LiiSfy2muvUVZWBsA111zDF77wBfbaay/69u3bXkcgSZI6AQNaXSnl5qDlDQUe/8xncqEtf+HAnDlzGDVqFN///ve3qDp+/HiefPLJNmysJEnqrBzirFETzsrLc8Oc1dUfD3fWvXBAkiSplRXUgxYRuwD/Sa6zqRI4LaW0rl6Z3sDDwA75/f02pXRZU+u3mQgoKsqFspoes/zwJUVFtT1oZ599drs0T5IkdR2RCugZioh/Bt5KKV0dEbOBnVNK361XJoCdUkrvRkRP4BGgJKX056bUb0hxcXFavHjxdrd7q+rdB+0Ty5IkSc0QEUtSSsXNqVPoEOcU4Nb851uBk+oXSDnv5hd75l81qXCb9dtc/TBmOJMkSW2s0IC2R0ppFUD+ffeGCkVE94hYCqwBFqSU/tKc+pIkSV3JNuegRcT9wMAGVl3S1J2klDYDoyKiCPh9RIxMKS1rcitz7ZgJzARqbwgrSZLUGW0zoKWUJja2LiJWR8SeKaVVEbEnuR6yrW1rfURUAMcBy4Am108p3QDcALk5aNtqtyRJUkdV6BDnfGBa/vM0YF79AhGxW77njIjoA0wElje1viRJUldTaEC7GpgUES8Ak/LLRMReEXFvvsyewIMR8TTwOLk5aHdvrb4kSVJXVtB90FJKbwJHN/D9a8AJ+c9PA4c2p74kSVJX5pMEJEmSMqagG9W2l4hYC7zc3u1oJwOAN9q7EWpRntPOyfPa+XhOO6e2OK/7pJR2a06FDhnQurKIWNzcuxEr2zynnZPntfPxnHZOWT2vDnFKkiRljAFNkiQpYwxoHc8N7d0AtTjPaefkee18PKedUybPq3PQJEmSMsYeNEmSpIwxoGVERBwXESsi4sWImN3A+p0j4vcR8XREPBYRI+usK4qI30bE8oh4LiKObNvWqzHbe14jYnhELK3zejsivtnmB6BPKPBvdVZEPBsRyyLi1xHRu21br8YUeF5L8uf0Wf9OsyMibo6INRGxrJH1ERHX5c/50xExus66rf4+tImUkq92fgHdgf8FhgG9gKeAg+qV+X+By/KfRwAL66y7FZiR/9wLKGrvY/JV+Hmtt53Xyd1Hp92Pqyu/CjmnwCDgb0Cf/PIdwNntfUy+Cj6vI4FlwI7kns5zP7B/ex+TrwTwOWA0sKyR9ScA/x8QwBHAX5r6+9AWL3vQsmEM8GJK6aWU0ofAb4Ap9cocBCwESCktB4ZGxB4R0Y/cL+FN+XUfppTWt1nLtTXbfV7rlTka+N+UUle9OXOWFHpOewB9IqIHuf+hv9Y2zdY2FHJeDwT+nFJ6L6W0CXgIOLntmq7GpJQeBt7aSpEpwL+nnD8DRRGxJ037fWh1BrRsGAS8Wme5Kv9dXU8BpwBExBhgH2AwuYS/FrglIp6MiBsjYqfWb7KaoJDzWtfpwK9bqY1qnu0+pymllcC/AK8Aq4ANKaU/tnqL1RSF/K0uAz4XEbtGxI7kemX2bvUWqyU0dt6b8vvQ6gxo2RANfFf/8tqrgZ0jYilwAfAksIncv8hHA9enlA4F/g9on/Fy1VfIec1tIKIXMBm4s5XaqObZ7nMaETuT+1f4p4G9gJ0i4h9bsa1quu0+ryml54CfAAuA+8gFuU2oI2jsvDfl96HV9WjrHapBVWz5L67B1Bv6SCm9DUyH3MRGcnNZ/kZumKQqpfSXfNHfYkDLikLOa43jgSdSSqtbt6lqokLO6bHA31JKa/PrfgeMBea2frO1DQX9raaUbiI/zSQifpTfnrKvsfPeq5Hv25Q9aNnwOLB/RHw632NyOjC/boH8lZq98oszgIdTSm+nlF4HXo2I4fl1RwN/bauGa6u2+7zWKXIGDm9mSSHn9BXgiIjYMf8/+KOB59qw7WpcQX+rEbF7/n0IuWFQ/2Y7hvnAV/JXcx5BbtrBKprw+9AW7EHLgJTSpoj4BvAHcleP3JxSejYivpZf/0tyE1H/PSI2kwtg59TZxAXAbflfpJfI/ytP7avQ85qfzzIJOK/NG68GFXJOU0p/iYjfAk+QGwJ7kozewbyraYH/Bv9XROwKfAScn1Ja17ZHoIZExK+B8cCAiKgCLgN6Qu05vZfcnMEXgffI/7+zsd+HNm9//pJSSZIkZYRDnJIkSRljQJMkScoYA5okSVLGGNAkSZIyxoAmSZKUMQY0SZKkjDGgSZIkZYwBTZIkKWP+f5E7dHoeWrAIAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 720x360 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# -----------------------------\\n\",\n    \"# Run This Cell to Produce Your Plot\\n\",\n    \"# ------------------------------\\n\",\n    \"reuters_corpus = read_corpus()\\n\",\n    \"M_co_occurrence, word2ind_co_occurrence = compute_co_occurrence_matrix(reuters_corpus)\\n\",\n    \"M_reduced_co_occurrence = reduce_to_k_dim(M_co_occurrence, k=2)\\n\",\n    \"\\n\",\n    \"# Rescale (normalize) the rows to make them each of unit-length\\n\",\n    \"M_lengths = np.linalg.norm(M_reduced_co_occurrence, axis=1)\\n\",\n    \"M_normalized = M_reduced_co_occurrence / M_lengths[:, np.newaxis] # broadcasting\\n\",\n    \"\\n\",\n    \"words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\\n\",\n    \"\\n\",\n    \"plot_embeddings(M_normalized, word2ind_co_occurrence, words)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- From the plot above, there's three clusters that we can observe:\\n\",\n    \"    - petroleum, industry\\n\",\n    \"    - energy, oil\\n\",\n    \"    - ecuador, iraq, kuwait\\n\",\n    \"- Countries that are major exporters of oil have been clustered together. This makes sense as co-occurence matrices group general topics and since oil countries likely share similar co-occurence words in the reuter articles corpus, they are expected to cluster together here. \\n\",\n    \"- \\\"bpd\\\", \\\"barrels\\\" and \\\"output\\\" should cluster together, but apparently they have less co-occurance in given datasets. Also, petroleum and oil could be clustered more closely together as crude oil and petroleum are sometimes used synonymously.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Part 2: Prediction-Based Word Vectors (15 points)\\n\",\n    \"\\n\",\n    \"As discussed in class, more recently prediction-based word vectors have demonstrated better performance, such as word2vec and GloVe (which also utilizes the benefit of counts). Here, we shall explore the embeddings produced by GloVe. Please revisit the class notes and lecture slides for more details on the word2vec and GloVe algorithms. If you're feeling adventurous, challenge yourself and try reading [GloVe's original paper](https://nlp.stanford.edu/pubs/glove.pdf).\\n\",\n    \"\\n\",\n    \"Then run the following cells to load the GloVe vectors into memory. **Note**: If this is your first time to run these cells, i.e. download the embedding model, it will take a couple minutes to run. If you've run these cells before, rerunning them will load the model without redownloading it, which will take about 1 to 2 minutes.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_embedding_model():\\n\",\n    \"    \\\"\\\"\\\" Load GloVe Vectors\\n\",\n    \"        Return:\\n\",\n    \"            wv_from_bin: All 400000 embeddings, each lengh 200\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    import gensim.downloader as api\\n\",\n    \"    wv_from_bin = api.load(\\\"glove-wiki-gigaword-200\\\")\\n\",\n    \"    print(\\\"Loaded vocab size %i\\\" % len(wv_from_bin.key_to_index.keys()))\\n\",\n    \"    return wv_from_bin\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Loaded vocab size 400000\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# -----------------------------------\\n\",\n    \"# Run Cell to Load Word Vectors\\n\",\n    \"# Note: This will take a couple minutes\\n\",\n    \"# -----------------------------------\\n\",\n    \"wv_from_bin = load_embedding_model()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Note: If you are receiving a \\\"reset by peer\\\" error, rerun the cell to restart the download. \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Reducing dimensionality of Word Embeddings\\n\",\n    \"Let's directly compare the GloVe embeddings to those of the co-occurrence matrix. In order to avoid running out of memory, we will work with a sample of 10000 GloVe vectors instead.\\n\",\n    \"Run the following cells to:\\n\",\n    \"\\n\",\n    \"1. Put 10000 Glove vectors into a matrix M\\n\",\n    \"2. Run `reduce_to_k_dim` (your Truncated SVD function) to reduce the vectors from 200-dimensional to 2-dimensional.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_matrix_of_vectors(wv_from_bin, required_words=['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']):\\n\",\n    \"    \\\"\\\"\\\" Put the GloVe vectors into a matrix M.\\n\",\n    \"        Param:\\n\",\n    \"            wv_from_bin: KeyedVectors object; the 400000 GloVe vectors loaded from file\\n\",\n    \"        Return:\\n\",\n    \"            M: numpy matrix shape (num words, 200) containing the vectors\\n\",\n    \"            word2ind: dictionary mapping each word to its row number in M\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    import random\\n\",\n    \"    words = list(wv_from_bin.key_to_index.keys())\\n\",\n    \"    print(\\\"Shuffling words ...\\\")\\n\",\n    \"    random.seed(224)\\n\",\n    \"    random.shuffle(words)\\n\",\n    \"    words = words[:10000]\\n\",\n    \"    print(\\\"Putting %i words into word2ind and matrix M...\\\" % len(words))\\n\",\n    \"    word2ind = {}\\n\",\n    \"    M = []\\n\",\n    \"    curInd = 0\\n\",\n    \"    for w in words:\\n\",\n    \"        try:\\n\",\n    \"            M.append(wv_from_bin.word_vec(w))\\n\",\n    \"            word2ind[w] = curInd\\n\",\n    \"            curInd += 1\\n\",\n    \"        except KeyError:\\n\",\n    \"            continue\\n\",\n    \"    for w in required_words:\\n\",\n    \"        if w in words:\\n\",\n    \"            continue\\n\",\n    \"        try:\\n\",\n    \"            M.append(wv_from_bin.word_vec(w))\\n\",\n    \"            word2ind[w] = curInd\\n\",\n    \"            curInd += 1\\n\",\n    \"        except KeyError:\\n\",\n    \"            continue\\n\",\n    \"    M = np.stack(M)\\n\",\n    \"    print(\\\"Done.\\\")\\n\",\n    \"    return M, word2ind\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Shuffling words ...\\n\",\n      \"Putting 10000 words into word2ind and matrix M...\\n\",\n      \"Done.\\n\",\n      \"Running Truncated SVD over 10010 words...\\n\",\n      \"Done.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# -----------------------------------------------------------------\\n\",\n    \"# Run Cell to Reduce 200-Dimensional Word Embeddings to k Dimensions\\n\",\n    \"# Note: This should be quick to run\\n\",\n    \"# -----------------------------------------------------------------\\n\",\n    \"M, word2ind = get_matrix_of_vectors(wv_from_bin)\\n\",\n    \"M_reduced = reduce_to_k_dim(M, k=2)\\n\",\n    \"\\n\",\n    \"# Rescale (normalize) the rows to make them each of unit-length\\n\",\n    \"M_lengths = np.linalg.norm(M_reduced, axis=1)\\n\",\n    \"M_reduced_normalized = M_reduced / M_lengths[:, np.newaxis] # broadcasting\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**Note: If you are receiving out of memory issues on your local machine, try closing other applications to free more memory on your device. You may want to try restarting your machine so that you can free up extra memory. Then immediately run the jupyter notebook and see if you can load the word vectors properly. If you still have problems with loading the embeddings onto your local machine after this, please go to office hours or contact course staff.**\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.1: GloVe Plot Analysis [written] (3 points)\\n\",\n    \"\\n\",\n    \"Run the cell below to plot the 2D GloVe embeddings for `['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']`.\\n\",\n    \"\\n\",\n    \"What clusters together in 2-dimensional embedding space? What doesn't cluster together that you think should have? How is the plot different from the one generated earlier from the co-occurrence matrix? What is a possible cause for the difference?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAmoAAAEvCAYAAAD1r+09AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8vihELAAAACXBIWXMAAAsTAAALEwEAmpwYAAAk80lEQVR4nO3deZQV1b238edHA1EJ0CpRVOQiAQcgSnhbFMRXFHAiEWOCcYgBRdH7+oYOZpmoydW+UaNZK4qNSczyehXvS4wZbgw4xDi2Q5wARcAg6tVGGlQgDBGDCPZ+/zin2wYbaTg9VDfPZ61e51TVPrV31QH6y967qiKlhCRJkrKnXUs3QJIkSfUzqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRrVv6QZ8lm7duqVevXq1dDMkSZK2ac6cOStTSl9ozH1mOqj16tWL2bNnt3QzJEmStikiFjf2Ph36lCRJyiiDmiRJUkYZ1CRJkjLKoCZJkpRRBjVJktTmvfvuu3zve99rUNnzzz+fioqK7dr/n/70J4CO29uubTGoSZKkNq979+7ccMMNjbKvjz/++FPrthbUIqKokLoipVTI55tUSUlJ8vYckiRph6QEEQBUVlYyfPhwUkqsX7+eAw44gMWLF3PUUUexceNG5s2bx6677kq/fv1YsmQJGzZsYNddd6WqqoolS5awePFiDj74YMaOHcvKlSupqqpi8eLFdOnShUGDBvHYY4/xwQcffAisSintl79Vxz+B1cAS4PqU0ksR8S/AbSmlUQ05BHvUJElS21NWBt/9bi6sAU9UVLBp5UrOPeAAxo4dy4cffsjQoUOprKzknnvuYcOGDYwaNYrf/OY3zJs3j2uvvZa7776bdu3acf/99wOwceNGfvGLX9C3b186derEQw89xNtvv83ee+9Nnz59ABYDiyKiO7AP8FFKaShwKzAh37Jzgf9s6GFk+oa3kiRJ2y0lePBBeP753PJNN/Hqz3/O6g8+YNqzz7Lre+9RM6LYqVMnVq5cyV577cX777/P2rVrqa6u5kc/+hG77LILa9asoaqqigEDBtCxY0e6dOnCpZdeymGHHcbUqVMZMWIERxxxBLNmzaqp/Q5gPLAW+H/5dY8B10XEbsBXgesaeij2qEmSpLbniCNyr1OnQrt2HDhnDnsC4wcO5IdXXMG8efMoLi4mpUS3bt1YtWoVH330EcXFxRQVFXHdddfx0EMP0aNHD8477zxWrFjBRx99BMCee+7JUUcdxaRJk7j++uv561//SlFREUAAvwe+BnQC7gRIuVT438AvgSdTShsaehiNEtQi4sSIWBQRb0TEZfVsj4iYmt8+LyIGNUa9kiRJnxIBN90EkybVrjoWKOrShWnvvce1P/kJEyZMqN1WVFTEhAkT+POf/8zpp5/Ol770Ja644grGjBnDunXrKCkp4Re/+AUdO+auFbjxxhtZtmwZo0aNYsOGDaxfv55+/foB7AuUA88B1SmlFXVadQdwFnDbdh1KoRcT5K9meA0YBVQBs4AzU0p/q1PmZOA7wMnAEUB5SumIbe3biwkkSdIOSSk3R23q1E/WTZqUC3D5CwwKsXHjRjp06ADABRdcwAknnMDYsWPnpJRKIuIm4P6U0sM15SNib+A3KaXjtqeexuhRGwy8kVJ6M6X0EXA3MGaLMmOA/0o5zwHFEbFPI9QtSZK0ufpCGuSW61xgUIj58+dz9NFHM2TIENatW8epp54KQETcCfTcIqSNAmYC12xvPY1xMcF+5C47rVFFrtdsW2X2A97ZcmcRMRGYCNCzZ89GaJ4kSdrp1FxIUNOLVhPcatYXaNCgQTz11FOfWp9SGlfPuoeBhz9VuAEaI6jV13+4ZVRtSJncypRuJXcZKyUlJdm9yZskScqmCDjxxNwFBTVDnTfdlNu2++6NMvTZXBojqFUB+9dZ7gEs24EykiRJjaOsbLMb3taGtVYU0qBx5qjNAvpGxAER0RE4g9w4bF0zgW/nr/48ElibUvrUsKckSVKj2TKUtbKQBo3Qo5ZS2hQR/xf4C1AE3J5SeiUiLspv/xXwALkrPt8g9ziFcwutV5Ikqa1rlCcTpJQeIBfG6q77VZ33Cbi4MeqSJEnaWfhkAkmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJG2nqqoqhg8f3uT1GNQkSZKaUEQU7ehnDWqSJKlNuvzyyznmmGMYMmQI9913H2+//TYnnngixxxzDCNGjKC6uprx48fz9NNPAzB9+nTKysoA+MEPfsCxxx7LoEGDuPXWWwFYt24do0ePZuTIkdx444219bz22ms1vWsHRcRvI2JXgIhYHBG/BGbs6DG039EPSpIkZU5KEMGDDz7I6tWreaKign+uX8+QIUM48MADueSSSzj++OOprq6mXbut91ddeeWVdOrUiQ0bNvClL32Jc889l//4j/9g2LBhXH755fz617/mxRdfBOD73/8+P/7xjznmmGMWAa8AFwBTgX2A61NKb+/o4dijJkmS2oayMpg8GVJi/vz5PPHEEwzff39O7tePDRs28Le//Y1jjz0WoDakRUTtx1NKte9vueUWhg0bxvHHH8/y5ctZvnw5r732GoMHDwbgiCOOqC372muvMXTo0JrFZ4CD8++XFhLSwKAmSZLagpRgzRooL+fdiRN59plnOH6XXahYupSKU09l3ssv079/fyoqKgCorq4GYI899qCqqgqAOXPmALB69Wpuv/12nnjiCf7yl7/QtWtXUkr07duX2bNnAzBr1qzaqg888ECeeeaZmsWhwKL8+48LPayomx6zpqSkJNWcEEmSpM+UUq5HrbwcgH8DntpvP6JvX/bdd1+uu+46LrjgAj788EM6dOjAQw89xKJFizjzzDPp2bMn3bp1o2fPnlx11VWcfvrpVFVVccghhzB37lxmzpxJ165dOf3009m4cSMDBgxg7ty5VFRU8Oqrr3LhhRfy5JNPrgP+ApyTUlofEW+klPoUckgGNUmS1HakRGW7dpwPDAMqx41j1apVnHnmmcydO5cXXniBtWvXctFFFzFx4kTWrVvHN7/5TTZs2MChhx7Kiy++WNvrtr0iYk5KqaQxD8eLCSRJUutX0/E0efJmqz83Zw4z582DCE455ZQGXyCQFc5RkyRJrVtZGXz3u7mf8nIYPx723x/224+hCxbUXmCwPRcIZIVBTZIktV41FxFMnQrPPw+TJuXWL1kC++1H0fHHQ3Exq9es+dQFAr/97W/Zf//9671AoD6VlZWMHDmyiQ9ocw59SpKk1isCpkzJvS8vz4U1yPWonXgi9OkD55xDcUr079+fYcOGccghh7Dnnnvy+9//njvuuIPJkyfz8MMPM2DAAAA+/vhjiop2+GECjcoeNUmS1LrVCWuVwFhg76OP5r777+fvq1axdu1avvnNb7Jq1Sp23XVXrrjiCn72s5+xcOFCzj33XPr06cNtt93G448/zsKFC7ngggt47rnnGDp0KMOGDeNf//Vf2fLiyyVLljB69GiOO+44Ro8ezYoVK/JNiTc+aVY8EhG98j8vRMQdEbEgIs6OiDsj4sWIuPyzDs0eNUmS1LpVV8Mll9QuVgKPde3KLs88w+GDB/Pyyy9z2mmnccYZZ/Dyyy9z2WWX8Yc//IGBAwcyffp0evToQWVlJUuWLKF///7cfvvtlJSU8Lvf/Y7evXtz3nnnce+993LooYfW1nHppZfyb//2bxx55JHMmDGDn/70p9tq5X7A/waK803sBawkd8+167b2IYOaJElqva66CmbOhLlzobQUJk3i4EMPpfMtt0DHjgwYMIB33nmH8vJyfvWrXwHQvn398eewww7j8ccfB2Dt2rX07t0bgKFDh/Lqq69uFtTmz5/PZZddBsCmTZvo06fe26VFnfevppQ+BN6NiKUppXcBImJ9RBSllOq9Oa5BTZIktU4pwdq1uZA2cCDceCOcfz6vfvAB6770JXbp3JkFFRUMGjSIiRMn8rWvfQ2Ajz76CICOHTuyadOm2t3VnZfWtWtX3nzzTXr37s0zzzzDmDFjNqu6f//+XH755Xz5y1+u3eedd94J0C4iPgcUAYfUbe1W3sPmgW4zBjVJktQ6bXkhQT5o9dprLy7o14/X//xnxo0bx3nnncdFF13EzTffTEqJr3zlK3zve9/jtNNOY8KECQwdOpQJEyZstuupU6dy9tlnU1RURP/+/TnllFNYvHhx7fYbbriBiy++mHXr1gFw3nnn1Wz6OfAcMBeoKvgQfTKBJElq1VKC/EPWK4HzR4zgkUceafZmNMWTCbzqU5IktV41z/es67XXPnlSQStnUJMkSa1T3Yewl5ZCdTW9Skt5ZMmS2qcRtHbOUZMkSa1TBBQX50LalCmbz1krLs4tt3LOUZMkSa1bSpuHsi2Xm0nm5qhFxB4R8XBEvJ5/3b2eMvtHxOMRsTAiXomI0kLqlCRJ2syWoawN9KTVKHSO2mXAoymlvsCj+eUtbQK+l1I6BDgSuDgi+hVYryRJUptXaFAbA9yZf38ncOqWBVJK76SUXsy/fx9YSO4xCpIkSfoMhQa1vVNK70AukAF7fVbhiOgFfBl4vsB6JUmS2rxtXvUZEY8A3evZ9MPtqSgiPg/8N/DdlNI/PqPcRGAiQM+ePbenCkmSpDZlmz1qKaWRKaUB9fzMAN6LiH0A8q/L69tHRHQgF9J+nVL64zbquzWlVJJSKvnCF76w/UckSZJ2Otdffz3z588H2NoD0lulQu+jNhMYB1yff52xZYGICOA/gYUppRsLrE+SJOlTLrusvusZW79C56hdD4yKiNeBUfllImLfiHggX+Yo4BzguIiYm/85ucB6JUnSTiqlxIUXXsiwYcMYOnQoL7zwAuPHj+fpp59u6aY1uoJ61FJKfwdG1LN+GXBy/v3TQNu5oYkkSWp+dW5iO2PGDDZ+9BFPP/00b775JmeccQb9+rXNO3/5rE9JkpRtZWWbPbtz0auvMnTJEigro3fv3qxevbpl29eEDGqSJCm7UoI1a3IPXs+HtYP++leeefRRWLOGN//nfyguLm7pVjYZg5okScqumgetl5bmwlq7dpxy330U9e/PsNmzOftb3+Lmm29u6VY2GR/KLkmSsi8laFenf6m6OnPP9MzcQ9klSZKaXEq5Yc+66sxZa8sMapIkKbtqQlp5eW74s7r6k2HQnSCsFXrDW0mSpKYTAcXFuXA2Zconc9Ygtz5jw5+NzTlqkiQp++rcR63e5QxwjpokSdo5bRnKMhbSmopBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkNZvKykpGjhzZJPueNm0aDz/8MABTp05tkjqam0FNkiS1CePHj2fUqFGAQU2SJKkgP//5zznkkEM499xza9f16dMHgBEjRrBq1Srmz59Px44def/995k1axYTJ04E4IQTTmD48OEMHjyYZ599FoCysjKmT5/OXXfdxdKlSxk+fDjXXntt8x9YI2rf0g2QJEltXEoQsdmqK664go4dO3LLLbcwffr0T31k+PDhPP7441RVVXHSSSfx5JNPsmDBAo499lgA/vjHP9KpUycWLlzIxRdfzGOPPVb72bPOOosrr7ySioqKJj2s5mBQkyRJTaesDNasgSlTcmEtJV559llWvfIKzy1eXNsbtqURI0Ywffp0Vq5cyVVXXcX06dNZuHAhd9xxB+vXr6e0tJRFixZRVFTE0qVLm/WQmpNDn5IkqWmklAtp5eUweXJu+eqr6f/Pf/LDQYM4/fTT2WOPPaiqqgJg7ty5bNq0CYDBgwfz/PPPs2HDBgYNGsQrr7zC3//+d7p3786DDz5IUVERTz31FL/85S9JKX2q6vbt21NdXd2cR9sk7FGTJElNIyLXkwa5sFZennu///58/b776HDvvVxxxRV07tyZY445hmOOOYb27XPRpH379nTv3p2BAwcC0L17d/r27QvAkCFDuO666xg5ciRHHXVUvVV/4xvfYPTo0Zx00klMmjSpSQ+zKUV9KTQrSkpK0uzZs1u6GZIkqRApQbs6g3jV1Z+as9YWRMSclFJJY+7ToU9JktR0UsoNe9ZVMwyqbTKoSZKkplET0srLobQ015NWWrr5nDV9JueoSZKkphEBxcW5cFZz1WfNnLXi4jY5/NnYnKMmSZKa1pb3UavnvmptgXPUJElS67NlKGuDIa2pGNQkSZIyyqAmSZKUUQUFtYjYIyIejojX86+7f0bZooh4KSLuK6ROSZKknUWhPWqXAY+mlPoCj+aXt6YUWFhgfZIkSTuNQoPaGODO/Ps7gVPrKxQRPYDRwG0F1idJkrTTKDSo7Z1Segcg/7rXVsrdBHwfaP1PR5UkSWom27zhbUQ8AnSvZ9MPG1JBRHwFWJ5SmhMRwxtQfiIwEaBnz54NqUKSJKlN2mZQSymN3Nq2iHgvIvZJKb0TEfsAy+spdhRwSkScDOwCdImI6Smlb22lvluBWyF3w9uGHIQkSVJbVOjQ50xgXP79OGDGlgVSSpenlHqklHoBZwCPbS2kSZIk6ROFBrXrgVER8TowKr9MROwbEQ8U2jhJkqSdWUEPZU8p/R0YUc/6ZcDJ9ayvACoKqVOSJGln4ZMJJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJEmtzNSpU3f4s9OmTeMf//hHI7ZGTcmgJklSK2NQ23kY1CRJyoCUEhdeeCHDhg1j6NChvPDCCwwfPpyqqioArrnmGqZNm8Zdd93F0qVLGT58ONdeey0VFRWccMIJfP3rX2fgwIH8/ve/B2D8+PE8/fTTAEyfPp2ysjIee+wx5s6dy9ixY/nOd77TYseqhmvf0g2QJGmnlhJEMGPGDDZu3MjTTz3Fm2+9xRlnnMFuu+32qeJnnXUWV155JRUVFQBUVFSwdOlSXnrpJdavX09JSQlf//rX663quOOOY+DAgUyfPp0ePXo05VGpkRjUJElqKWVlsGYNTJnCokWLGDpkCEyeTO/iYlavXk2nTp1qi6aUtrqbL3/5y3To0IEOHTqw1157sWLFCiKiQZ9Vtjn0KUlSS0gpF9LKy2HyZA468ECeuekmKC/nzcWLKS4uZo899qgd+pwzZ07tR9u3b091dXXt8ty5c9m0aRPvv/8+7733Ht26ddvqZzt27MimTZua5RBVOHvUJElqCREwZUrufXk5p5SXcz8wbJ99+PjVV7n55pvZsGED559/PgceeCCf+9znaj/6jW98g9GjR3PSSSdx6KGHsu+++zJ27FjeeustrrnmGoqKijj//PM588wzueuuu+jWrRvFxcUAnHbaaUyYMIGhQ4dy9dVXN/9xa7tElrtDS0pK0uzZs1u6GZIkNZ2UoF2dAa7q6lyIa6CKigqmT5/Obbfd1gSN0/aIiDkppZLG3KdDn5IktZSUYPLkzddNnpxbL1FgUIuIPSLi4Yh4Pf+6+1bKFUfEHyLi1YhYGBFDCqlXkqRWryaklZdDaWmuJ620tHbOWkPD2vDhw+1Na8MK7VG7DHg0pdQXeDS/XJ9y4MGU0sHAYcDCAuuVJKl1i4Di4lw4mzLlkzlrpaW59dsx/Km2q6A5ahGxCBieUnonIvYBKlJKB21RpgvwMtA7bWdlzlGTJLV5+fuobXVZrUYW56jtnVJ6ByD/ulc9ZXoDK4A7IuKliLgtIjrVU06SpJ3PlqHMkKY6thnUIuKRiFhQz8+YBtbRHhgE3JJS+jLwAVsfIiUiJkbE7IiYvWLFigZWIUmS1PZs8z5qKaWRW9sWEe9FxD51hj6X11OsCqhKKT2fX/4DnxHUUkq3ArdCbuhzW+2TJElqqwod+pwJjMu/HwfM2LJASuldYElE1MxdGwH8rcB6JUmS2rxCg9r1wKiIeB0YlV8mIvaNiAfqlPsO8OuImAcMBH5SYL2SJEltXkGPkEop/Z1cD9mW65cBJ9dZngs06lUQkiRJbZ1PJpAkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okSVJGGdQkSZIyyqAmSZKUUQY1SZKkjDKoSZIkZZRBTZIkKaMMapIkSRllUJMkScoog5okqclUVlYycuTIVrdvKSsMapKkTKmurt5s+eOPP26hlkgtr31LN0CS1LatXbuWs88+m0WLFnHOOedw6KGH8uMf/5hNmzaxxx578Nvf/pZddtmFPn36cPrpp/Pss89y6aWXUl5eTpcuXfjiF7/ISSedxJVXXklEcPDBB3PLLbdsVseUKVO4++672W233Tj11FMpLS1toaOVGpdBTZLUuFKCiNrFyspKHnvsMXbZZRcOP/xwZsyYweOPPw7AD37wA373u9/x7W9/m02bNvHVr36Vn/zkJ1RUVLBs2TLuu+8+2rdvz6BBg6ioqKBr165MnjyZ+++/nwEDBtTW8etf/5rHH3+czp07f6pHTmrNDGqSpMZTVgZr1sCUKbmwlhIHd+xI5xtugLIyBgwYwLvvvssFF1zAhg0beO+99+jSpQsARUVFHHnkkbW7KikpoUOHDqxYsYLKykrGjBkDwLp16zjooIM2C2o33XQTkyZNYtOmTVx44YUMGzasOY9aajIGNUlS40gpF9LKy3PLU6bA1Vfz6rJlrFu+nF02bmTBggWUlZXx7//+7wwZMoTvf//7pJQAiAiiTk9cUVERAN26daN3797cd999fP7znwdg48aNLF26tLbsoEGDGDZsGFVVVYwZM4Y5c+Y0zzFLTcygJklqHBG5cAa5sJYPbL322osLVq/m9SFDGDduHN27d2fChAkcdNBBdO3atbZHbeu7DW688UZOOeUUUkq0a9eOKVOmbPa5c845h5UrV/Lhhx9y8cUXN9khSs0tav4nk0UlJSVp9uzZLd0MSdL2SAna1bmpQHX1ZnPWpLYqIuaklEoac5/enkOS1HhSgsmTN183eXJuvaTtZlCTJDWOmpBWXg6lpbmetNLS3LJhTdohzlGTJDWOCCguzoWzmqs+a+asFRc7/CntAOeoSZIa1xb3UfvUstRGOUdNkpR9W4YyQ5q0wwxqkiRJGWVQkyRJyqiCglpE7BERD0fE6/nX3bdSbnJEvBIRCyLiNxGxSyH1SpIk7QwK7VG7DHg0pdQXeDS/vJmI2A+YBJSklAYARcAZBdYrSZLU5hUa1MYAd+bf3wmcupVy7YFdI6I9sBuwrMB6JUmS2rxCg9reKaV3APKve21ZIKW0FPgZ8DbwDrA2pfRQgfVKkiS1edsMahHxSH5u2ZY/YxpSQX7e2hjgAGBfoFNEfOszyk+MiNkRMXvFihUNPQ5JkqQ2Z5tPJkgpjdzatoh4LyL2SSm9ExH7AMvrKTYSeCultCL/mT8CQ4HpW6nvVuBWyN3wdtuHIEmS1DYVOvQ5ExiXfz8OmFFPmbeBIyNit4gIYASwsMB6JUmS2rxCg9r1wKiIeB0YlV8mIvaNiAcAUkrPA38AXgTm5+u8tcB6JUmS2jyf9SlJktQIfNanJEnSTsSgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGqSJEkZZVCTJEnKKIOaJElSRhnUJEmSMsqgJkmSlFEGNUmSpIwyqEmSJGWUQU2SJCmjDGpAZWUlI0eO3O7PXXPNNUybNq3xGyRJkoRBTZIkKbPat3QDWkxKEFG7uHbtWs4++2wWLVrEOeecQ9euXbn//vv58MMPqaqqYurUqRx99NE8+eSTTJo0iZ49e/K5z32OHj16tOBBSJKktqygHrWIGBsRr0REdUSUfEa5EyNiUUS8ERGXFVJnoygrg8mTc2ENICUqX3mFX/XsybPPPssdd9zB8uXLef/997n33nu55557mDx5MgCXXHIJM2fOZMaMGaxdu7bljkGSJLV5hQ59LgBOA57cWoGIKAJ+AZwE9APOjIh+Bda741KCNWugvPyTsHb11Ry8fj2d16+nQ/v2DBgwgJQShx9+OAC9evWqDWX/+Mc/6NmzJxHB4MGDW+wwJElS21dQUEspLUwpLdpGscHAGymlN1NKHwF3A2MKqbcgETBlCpSW5sJau3Zwxx28uuuurLv6ajZ9/DELFiwgIpgzZw4Ab7/9Nl26dAGgc+fOVFVVATBr1qwWOwxJktT2Nccctf2AJXWWq4AjmqHerasJa+Xltat69e/PBRMn8vrrrzNu3Dh23313dtttN0aPHs2yZcuYMmUKADfccANf/epX2XfffencuXNLHYEkSdoJbDOoRcQjQPd6Nv0wpTSjAXVEPevSZ9Q3EZgI0LNnzwbsfgeklBv2zOsFzDrqqFx4y19gMG3aNAYOHMiPfvSjzT46fPhwXnrppaZplyRJUh3bDGoppe2/wdjmqoD96yz3AJZ9Rn23ArcClJSUbDXQ7bCakFZenhv+nDLlk2XYLKxJkiS1pOYY+pwF9I2IA4ClwBnAWc1Qb/0ioLj4k5BWMwwKufX5kDZ+/PiWaqEkSRIAkdKOd1pFxNeAm4EvAGuAuSmlEyJiX+C2lNLJ+XInAzcBRcDtKaVrG7L/kpKSNHv27B1u32fa4j5qn1qWJEnaDhExJ6W01duV7YiCetRSSvcA99Szfhlwcp3lB4AHCqmr0W0ZygxpkiQpY3yElCRJUkYZ1CRJkjLKoCZJkpRRBjVJkqSMMqhJkiRllEFNkiQpowxqkiRJGVXQDW+bWkSsABa3dDsaSTdgZUs3Yifnd9CyPP8ty/Pfsjz/Lau5zv+/pJS+0Jg7zHRQa0siYnZj361Y28fvoGV5/luW579lef5bVms+/w59SpIkZZRBTZIkKaMMas3n1pZugPwOWpjnv2V5/luW579ltdrz7xw1SZKkjLJHTZIkKaMMao0sIk6MiEUR8UZEXFbP9oiIqfnt8yJiUEu0s61qwPk/O3/e50XEMxFxWEu0s63a1vmvU+7wiPg4Ir7RnO1r6xpy/iNieETMjYhXIuKJ5m5jW9eAf4O6RsS9EfFy/js4tyXa2RZFxO0RsTwiFmxle6v8/WtQa0QRUQT8AjgJ6AecGRH9tih2EtA3/zMRuKVZG9mGNfD8vwUck1I6FLiaVjxvIWsaeP5ryv0U+EvztrBta8j5j4hi4JfAKSml/sDY5m5nW9bAvwMXA39LKR0GDAduiIiOzdrQtmsacOJnbG+Vv38Nao1rMPBGSunNlNJHwN3AmC3KjAH+K+U8BxRHxD7N3dA2apvnP6X0TEppdX7xOaBHM7exLWvIn3+A7wD/DSxvzsbtBBpy/s8C/phSehsgpeR30Lga8h0koHNEBPB5YBWwqXmb2TallJ4kdz63plX+/jWoNa79gCV1lqvy67a3jHbM9p7bCcCfm7RFO5dtnv+I2A/4GvCrZmzXzqIhf/4PBHaPiIqImBMR32621u0cGvId/Bw4BFgGzAdKU0rVzdO8nV6r/P3bvqUb0MZEPeu2vKy2IWW0Yxp8biPiWHJBbViTtmjn0pDzfxPwg5TSx7kOBTWihpz/9sD/AkYAuwLPRsRzKaXXmrpxO4mGfAcnAHOB44AvAg9HxFMppX80cdvUSn//GtQaVxWwf53lHuT+17S9ZbRjGnRuI+JQ4DbgpJTS35upbTuDhpz/EuDufEjrBpwcEZtSSn9qlha2bQ3992dlSukD4IOIeBI4DDCoNY6GfAfnAten3L2x3oiIt4CDgReap4k7tVb5+9ehz8Y1C+gbEQfkJ4eeAczcosxM4Nv5q0+OBNamlN5p7oa2Uds8/xHRE/gjcI69CI1um+c/pXRASqlXSqkX8Afg/xjSGk1D/v2ZARwdEe0jYjfgCGBhM7ezLWvId/A2uR5NImJv4CDgzWZt5c6rVf7+tUetEaWUNkXE/yV3NVsRcHtK6ZWIuCi//VfAA8DJwBvAP8n970qNoIHn/0pgT+CX+V6dTa31Qb1Z08DzrybSkPOfUloYEQ8C84Bq4LaUUr23MtD2a+DfgauBaRExn9xQ3A9SSitbrNFtSET8htyVtN0iogq4CugArfv3r08mkCRJyiiHPiVJkjLKoCZJkpRRBjVJkqSMMqhJkiRllEFNkiQpowxqkiRJGWVQkyRJyiiDmiRJUkb9f4XN2TEuM67oAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 720x360 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"words = ['barrels', 'bpd', 'ecuador', 'energy', 'industry', 'kuwait', 'oil', 'output', 'petroleum', 'iraq']\\n\",\n    \"plot_embeddings(M_reduced_normalized, word2ind, words)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Unlike the window-based co-occurence embeddings, these prediction-based GloVe embeddings do not cluster together countries (\\\"iraq\\\", \\\"ecuador\\\" and \\\"kuwait\\\"). For e.g., Kuwait is largely displaced from Iraq. \\n\",\n    \"- GloVe seems to cluster together \\\"energy\\\" and \\\"industry\\\" more closely than co-occurence embeddings. \\\"oil\\\" and \\\"petroleum\\\" also cluster together, which aligns well with our expectations. \\\"barrels\\\" and \\\"bpd\\\" are still far off even though they're expected to be a bit closer since barrels-per-day should be a function of the number of barrels.\\n\",\n    \"- These GloVe word vectors were trained upon a much larger corpus that covers many topics. Meanwhile, our co-occurrence word vectors were generated using a relatively smaller corpus of news articles on the topic of crude oil. As a result, the GloVe vectors contain semantic information outside the context of oil. This may explain why the countries are not clustered here.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Cosine Similarity\\n\",\n    \"Now that we have word vectors, we need a way to quantify the similarity between individual words, according to these vectors. One such metric is cosine-similarity. We will be using this to find words that are \\\"close\\\" and \\\"far\\\" from one another.\\n\",\n    \"\\n\",\n    \"We can think of n-dimensional vectors as points in n-dimensional space. If we take this perspective [L1](http://mathworld.wolfram.com/L1-Norm.html) and [L2](http://mathworld.wolfram.com/L2-Norm.html) Distances help quantify the amount of space \\\"we must travel\\\" to get between these two points. Another approach is to examine the angle between two vectors. From trigonometry we know that:\\n\",\n    \"\\n\",\n    \"<img src=\\\"imgs/inner_product.png\\\" width=20% style=\\\"float: center;\\\"></img>\\n\",\n    \"\\n\",\n    \"Instead of computing the actual angle, we can leave the similarity in terms of $similarity = cos(\\\\Theta)$. Formally the [Cosine Similarity](https://en.wikipedia.org/wiki/Cosine_similarity) $s$ between two vectors $p$ and $q$ is defined as:\\n\",\n    \"\\n\",\n    \"$$s = \\\\frac{p \\\\cdot q}{||p|| ||q||}, \\\\textrm{ where } s \\\\in [-1, 1] $$ \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.2: Words with Multiple Meanings (1.5 points) [code + written] \\n\",\n    \"Polysemes and homonyms are words that have more than one meaning (see this [wiki page](https://en.wikipedia.org/wiki/Polysemy) to learn more about the difference between polysemes and homonyms ). Find a word with *at least two different meanings* such that the top-10 most similar words (according to cosine similarity) contain related words from *both* meanings. For example, \\\"leaves\\\" has both \\\"go_away\\\" and \\\"a_structure_of_a_plant\\\" meaning in the top 10, and \\\"scoop\\\" has both \\\"handed_waffle_cone\\\" and \\\"lowdown\\\". You will probably need to try several polysemous or homonymic words before you find one. \\n\",\n    \"\\n\",\n    \"Please state the word you discover and the multiple meanings that occur in the top 10. Why do you think many of the polysemous or homonymic words you tried didn't work (i.e. the top-10 most similar words only contain **one** of the meanings of the words)?\\n\",\n    \"\\n\",\n    \"**Note**: You should use the `wv_from_bin.most_similar(word)` function to get the top 10 similar words. This function ranks all other words in the vocabulary with respect to their cosine similarity to the given word. For further assistance, please check the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.FastTextKeyedVectors.most_similar)__.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[('weapons', 0.7115006446838379),\\n\",\n       \" ('hand', 0.5853789448738098),\\n\",\n       \" ('hands', 0.582863986492157),\\n\",\n       \" ('weapon', 0.5786144733428955),\\n\",\n       \" ('embargo', 0.5249772667884827),\\n\",\n       \" ('arm', 0.5146462917327881),\\n\",\n       \" ('weaponry', 0.513433039188385),\\n\",\n       \" ('nuclear', 0.5115358829498291),\\n\",\n       \" ('disarmament', 0.5083263516426086),\\n\",\n       \" ('iraq', 0.49865245819091797)]\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    wv_from_bin.most_similar(\\\"arms\\\")\\n\",\n    \"    #wv_from_bin.most_similar(\\\"mouse\\\")\\n\",\n    \"    #wv_from_bin.most_similar(\\\"mole\\\")\\n\",\n    \"    #wv_from_bin.most_similar(\\\"tear\\\")\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Since both \\\"weapons\\\" and \\\"arms\\\" are among the top 10 meanings of the word \\\"arms\\\", this implies that the embedding has captured both meanings of \\\"arms\\\": weaponry and limb.\\n\",\n    \"- A reason why many polysemous words don't exhibit different meanings is that these GloVe vectors are built upon Wiki data in which more often than not words tend to take on the same meanings. Another reason could be that the top 10 similar words sometimes include different forms of the same word (arm) or its meanings (hand/hands).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.3: Synonyms & Antonyms (2 points) [code + written] \\n\",\n    \"\\n\",\n    \"When considering Cosine Similarity, it's often more convenient to think of Cosine Distance, which is simply 1 - Cosine Similarity.\\n\",\n    \"\\n\",\n    \"Find three words $(w_1,w_2,w_3)$ where $w_1$ and $w_2$ are synonyms and $w_1$ and $w_3$ are antonyms, but Cosine Distance $(w_1,w_3) <$ Cosine Distance $(w_1,w_2)$. \\n\",\n    \"\\n\",\n    \"As an example, $w_1$=\\\"happy\\\" is closer to $w_3$=\\\"sad\\\" than to $w_2$=\\\"cheerful\\\". Please find a different example that satisfies the above. Once you have found your example, please give a possible explanation for why this counter-intuitive result may have happened.\\n\",\n    \"\\n\",\n    \"You should use the the `wv_from_bin.distance(w1, w2)` function here in order to compute the cosine distance between two words. Please see the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.FastTextKeyedVectors.distance)__ for further assistance.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Synonyms love, affection have cosine distance: 0.42052197456359863\\n\",\n      \"Antonyms love, hate have cosine distance: 0.49353712797164917\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    w1 = \\\"love\\\" # synonym 1\\n\",\n    \"    w2 = \\\"affection\\\" # synonym 2\\n\",\n    \"    w3 = \\\"hate\\\" # antonym\\n\",\n    \"    w1_w2_dist = wv_from_bin.distance(w1, w2)\\n\",\n    \"    w1_w3_dist = wv_from_bin.distance(w1, w3)\\n\",\n    \"\\n\",\n    \"    print(\\\"Synonyms {}, {} have cosine distance: {}\\\".format(w1, w2, w1_w2_dist))\\n\",\n    \"    print(\\\"Antonyms {}, {} have cosine distance: {}\\\".format(w1, w3, w1_w3_dist))\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- The proximity of words to each other in a sequence, i.e., the context, carries more weight than their similarity in meaning/semantics in determining word embeddings.\\n\",\n    \"- Some words can be antonyms, but can still be used in the same context, so their distance is lower than a pair of synonyms. Conversely, even where two words are synonyms, they can be used in different contexts. As such, $w_1$ and $w_3$ might have appeared in more similar contexts than $w_1$ and $w_2$. This could lead to $w_1's$ and $w_3's$ vectors to be more similar to each other than $w_1's$ and $w_2's$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.4: Analogies with Word Vectors [written] (1.5 points)\\n\",\n    \"Word vectors have been shown to *sometimes* exhibit the ability to solve analogies. \\n\",\n    \"\\n\",\n    \"As an example, for the analogy \\\"man : king :: woman : x\\\" (read: man is to king as woman is to x), what is x?\\n\",\n    \"\\n\",\n    \"In the cell below, we show you how to use word vectors to find x using the `most_similar` function from the __[GenSim documentation](https://radimrehurek.com/gensim/models/keyedvectors.html#gensim.models.keyedvectors.KeyedVectors.most_similar)__. The function finds words that are most similar to the words in the `positive` list and most dissimilar from the words in the `negative` list (while omitting the input words, which are often the most similar; see [this paper](https://www.aclweb.org/anthology/N18-2039.pdf)). The answer to the analogy will have the highest cosine similarity (largest returned numerical value).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('queen', 0.6978679299354553),\\n\",\n      \" ('princess', 0.6081743836402893),\\n\",\n      \" ('monarch', 0.5889754891395569),\\n\",\n      \" ('throne', 0.5775110125541687),\\n\",\n      \" ('prince', 0.5750998258590698),\\n\",\n      \" ('elizabeth', 0.5463595986366272),\\n\",\n      \" ('daughter', 0.5399126410484314),\\n\",\n      \" ('kingdom', 0.5318052768707275),\\n\",\n      \" ('mother', 0.5168544054031372),\\n\",\n      \" ('crown', 0.5164472460746765)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Run this cell to answer the analogy -- man : king :: woman : x\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'king'], negative=['man']))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let $m$, $k$, $w$, and $x$ denote the word vectors for `man`, `king`, `woman`, and the answer, respectively. Using **only** vectors $m$, $k$, $w$, and the vector arithmetic operators $+$ and $-$ in your answer, what is the expression in which we are maximizing cosine similarity with $x$?\\n\",\n    \"\\n\",\n    \"Hint: Recall that word vectors are simply multi-dimensional vectors that represent a word. It might help to draw out a 2D example using arbitrary locations of each vector. Where would `man` and `woman` lie in the coordinate plane relative to `king` and the answer?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"The expression in which we are maximizing cosine similarity with $x$ is:\\n\",\n    \"$$|k - m| \\\\approx |x - w|$$\\n\",\n    \"\\n\",\n    \"Programmatically, we are trying to ensure that the distance (measured using cosine similarity) between $k - m$ is as similar as possible to $x - w$.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.5: Finding Analogies [code + written]  (1.5 points)\\n\",\n    \"Find an example of analogy that holds according to these vectors (i.e. the intended word is ranked top). In your solution please state the full analogy in the form x:y :: a:b. If you believe the analogy is complicated, explain why the analogy holds in one or two sentences.\\n\",\n    \"\\n\",\n    \"**Note**: You may have to try many analogies to find one that works!\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('actress', 0.8572621941566467),\\n\",\n      \" ('actresses', 0.6734701991081238),\\n\",\n      \" ('actors', 0.6297088861465454),\\n\",\n      \" ('starring', 0.6084522604942322),\\n\",\n      \" ('starred', 0.5989463925361633),\\n\",\n      \" ('screenwriter', 0.595988929271698),\\n\",\n      \" ('dancer', 0.5881683230400085),\\n\",\n      \" ('comedian', 0.5791141390800476),\\n\",\n      \" ('singer', 0.5661861300468445),\\n\",\n      \" ('married', 0.5574131011962891)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=['woman','actor'], negative=['man']))\\n\",\n    \"    #pprint.pprint(wv_from_bin.most_similar(positive=['paris', 'italy'], negative=['rome']))\\n\",\n    \"    \\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Example 1:\\n\",\n    \"    - man:actor :: woman:actress\\n\",\n    \"- Example 2:\\n\",\n    \"    - rome:italy :: paris:france\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.6: Incorrect Analogy [code + written] (1.5 points)\\n\",\n    \"Find an example of analogy that does *not* hold according to these vectors. In your solution, state the intended analogy in the form x:y :: a:b, and state the (incorrect) value of b according to the word vectors.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('45,000-square', 0.4922032356262207),\\n\",\n      \" ('15,000-square', 0.4649604260921478),\\n\",\n      \" ('10,000-square', 0.45447564125061035),\\n\",\n      \" ('6,000-square', 0.44975778460502625),\\n\",\n      \" ('3,500-square', 0.4441334307193756),\\n\",\n      \" ('700-square', 0.44257500767707825),\\n\",\n      \" ('50,000-square', 0.4356396794319153),\\n\",\n      \" ('3,000-square', 0.43486514687538147),\\n\",\n      \" ('30,000-square', 0.4330596923828125),\\n\",\n      \" ('footed', 0.43236875534057617)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=[\\\"foot\\\", \\\"glove\\\"], negative=[\\\"hand\\\"]))\\n\",\n    \"    #pprint.pprint(wv_from_bin.most_similar(positive=[\\\"england\\\", \\\"india\\\"], negative=[\\\"english\\\"]))\\n\",\n    \"    #pprint.pprint(wv_from_bin.most_similar(positive=[\\\"america\\\", \\\"peacock\\\"], negative=[\\\"india\\\"]))\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- Example 1:\\n\",\n    \"    - Actual: hand:glove :: foot:sock\\n\",\n    \"    - Expected: hand:glove :: foot:sock\\n\",\n    \"    - Explanation: Intended analogy is \\\"hand : glove :: foot : sock\\\" but all the returned words are related to foot (as a measurement), body parts, or other things.\\n\",\n    \"- Example 2:\\n\",\n    \"    - Actual: england:english :: india:pakistan\\n\",\n    \"    - Expected: england:english :: india:hindi\\n\",\n    \"- Example 3:\\n\",\n    \"    - Actual: india:peacock :: america:nbc\\n\",\n    \"    - Expected: india:peacock :: america:eagle \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.7: Guided Analysis of Bias in Word Vectors [written] (1 point)\\n\",\n    \"\\n\",\n    \"It's important to be cognizant of the biases (gender, race, sexual orientation etc.) implicit in our word embeddings. Bias can be dangerous because it can reinforce stereotypes through applications that employ these models.\\n\",\n    \"\\n\",\n    \"Run the cell below, to examine (a) which terms are most similar to \\\"woman\\\" and \\\"worker\\\" and most dissimilar to \\\"man\\\", and (b) which terms are most similar to \\\"man\\\" and \\\"worker\\\" and most dissimilar to \\\"woman\\\". Point out the difference between the list of female-associated words and the list of male-associated words, and explain how it is reflecting gender bias.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('employee', 0.6375863552093506),\\n\",\n      \" ('workers', 0.6068919897079468),\\n\",\n      \" ('nurse', 0.5837946534156799),\\n\",\n      \" ('pregnant', 0.536388635635376),\\n\",\n      \" ('mother', 0.5321309566497803),\\n\",\n      \" ('employer', 0.5127025842666626),\\n\",\n      \" ('teacher', 0.5099576711654663),\\n\",\n      \" ('child', 0.5096741914749146),\\n\",\n      \" ('homemaker', 0.5019454956054688),\\n\",\n      \" ('nurses', 0.4970572292804718)]\\n\",\n      \"\\n\",\n      \"[('workers', 0.611325740814209),\\n\",\n      \" ('employee', 0.5983108282089233),\\n\",\n      \" ('working', 0.5615329146385193),\\n\",\n      \" ('laborer', 0.5442320108413696),\\n\",\n      \" ('unemployed', 0.5368516445159912),\\n\",\n      \" ('job', 0.5278826951980591),\\n\",\n      \" ('work', 0.5223962664604187),\\n\",\n      \" ('mechanic', 0.5088937282562256),\\n\",\n      \" ('worked', 0.5054520964622498),\\n\",\n      \" ('factory', 0.4940453767776489)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Run this cell\\n\",\n    \"# Here `positive` indicates the list of words to be similar to and `negative` indicates the list of words to be\\n\",\n    \"# most dissimilar from.\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'worker'], negative=['man']))\\n\",\n    \"print()\\n\",\n    \"pprint.pprint(wv_from_bin.most_similar(positive=['man', 'worker'], negative=['woman']))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"There seems to be some bias in the vectors generated around occupations with respect to gender.\\n\",\n    \"\\n\",\n    \"- Nurse, teacher, homemaker are among the top 10 terms most similar to \\\"woman\\\" and \\\"worker\\\" but most disimilar to \\\"man\\\".\\n\",\n    \"- Laborer, mechanic and factory are examples of terms most similar to \\\"man\\\" and \\\"worker\\\" but most disimilar to \\\"woman\\\".\\n\",\n    \"\\n\",\n    \"The vectors thus seem to have learnt some discrepency in employment roles among genders. However, some gender-neutral words like employee, workers do show up in both cases.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.8: Independent Analysis of Bias in Word Vectors [code + written]  (1 point)\\n\",\n    \"\\n\",\n    \"Use the `most_similar` function to find another case where some bias is exhibited by the vectors. Please briefly explain the example of bias that you discover.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[('professions', 0.5957457423210144),\\n\",\n      \" ('practitioner', 0.49884119629859924),\\n\",\n      \" ('teaching', 0.48292142152786255),\\n\",\n      \" ('nursing', 0.4821180999279022),\\n\",\n      \" ('vocation', 0.4788965880870819),\\n\",\n      \" ('teacher', 0.47160348296165466),\\n\",\n      \" ('practicing', 0.4693780839443207),\\n\",\n      \" ('educator', 0.46524325013160706),\\n\",\n      \" ('physicians', 0.4628995358943939),\\n\",\n      \" ('professionals', 0.4601393938064575)]\\n\",\n      \"\\n\",\n      \"[('reputation', 0.5250176191329956),\\n\",\n      \" ('professions', 0.5178037881851196),\\n\",\n      \" ('skill', 0.49046963453292847),\\n\",\n      \" ('skills', 0.49005505442619324),\\n\",\n      \" ('ethic', 0.4897659420967102),\\n\",\n      \" ('business', 0.4875851273536682),\\n\",\n      \" ('respected', 0.4859202802181244),\\n\",\n      \" ('practice', 0.4821045994758606),\\n\",\n      \" ('regarded', 0.47785723209381104),\\n\",\n      \" ('life', 0.4760662317276001)]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"    # ------------------\\n\",\n    \"    # Write your implementation here.\\n\",\n    \"\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=['woman', 'profession'], negative=['man']))\\n\",\n    \"    print()\\n\",\n    \"    pprint.pprint(wv_from_bin.most_similar(positive=['man', 'profession'], negative=['woman']))\\n\",\n    \"\\n\",\n    \"    # ------------------\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- The professions that are most similar to \\\"man\\\" but most dissimilar to \\\"woman\\\" draws up a range of careers such as physicians, educator/teacher etc. and also features keywords such as practitioner and professionals.\\n\",\n    \"- On the flipside, the embeddings that are most similar to \\\"woman\\\" and profession but most dissimilar to \\\"man\\\" are reputation, skills, ethic, business, etc. \\n\",\n    \"- This example thus exhibits a clear bias in gender-specific career choices, since careers like physicians, educator/teacher have more similarity to \\\"man\\\" than \\\"woman\\\".\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Question 2.9: Thinking About Bias [written] (2 points)\\n\",\n    \"\\n\",\n    \"Give one explanation of how bias gets into the word vectors. What is an experiment that you could do to test for or to measure this source of bias?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### <font color=\\\"red\\\">Write your answer here.</font>\\n\",\n    \"\\n\",\n    \"- \\\"Your model is only as good as the data it is trained on\\\" a.k.a. \\\"garbage in/garbage out\\\". \\n\",\n    \"- Since your model solely relies on the input data to generate its embeddings, biases inherent to society can be implicitly propagated through the data the model is trained on. This raises concerns because their widespread use often tends to amplify these biases. \\n\",\n    \"- Often news articles exhibit bias related to race, religion, gender, sexual orientation, etc. Since the training objective is to maximize the probability of prediciting the next word correctly, if the context windows within the data have implicit biases, they will likely be captured by the model. For instance, while the association between the words \\\"female\\\" and \\\"queen\\\" is desired, the association between between the words \\\"female\\\" and \\\"receptionist\\\" indicates a unhealthy gender stereotype that needs to be neutralized, i.e. not be gender-related.\\n\",\n    \"- To test or measure the source of bias, you can compute a vector $g = e_{woman}-e_{man}$, where $e_{woman}$ represents the word vector corresponding to the word \\\"woman\\\", and $e_{man}$ corresponds to the word vector corresponding to the word \\\"man\\\". The resulting vector $g$ thus roughly encodes the concept of \\\"gender\\\". Now, by comparing the distance between $g$ and a list of say, professions, we can uncover unhealthy gender stereotypes.\\n\",\n    \"- Further, using an equalization algorithm proposed by [Boliukbasi et al. (2016)](https://arxiv.org/abs/1607.06520), we can debias word vectors to some extent by modifying them to reduce gender stereotypes (but not eliminate it altogether).\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"cs224n\",\n   \"language\": \"python\",\n   \"name\": \"cs224n\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.7.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "a2/collect_submission.sh",
    "content": "rm -f assignment2.zip\nzip -r assignment2.zip *.py *.png saved_params_40000.npy\n"
  },
  {
    "path": "a2/env.yml",
    "content": "name: a2\nchannels:\n  - defaults\n  - anaconda\ndependencies:\n  - jupyter\n  - matplotlib\n  - numpy\n  - python=3.7\n  - scikit-learn\n"
  },
  {
    "path": "a2/get_datasets.sh",
    "content": "#!/bin/bash\n\nDATASETS_DIR=\"utils/datasets\"\nmkdir -p $DATASETS_DIR\n\ncd $DATASETS_DIR\n\n# Get Stanford Sentiment Treebank\nif hash wget 2>/dev/null; then\n  wget http://nlp.stanford.edu/~socherr/stanfordSentimentTreebank.zip\nelse\n  curl -L http://nlp.stanford.edu/~socherr/stanfordSentimentTreebank.zip -o stanfordSentimentTreebank.zip\nfi\nunzip stanfordSentimentTreebank.zip\nrm stanfordSentimentTreebank.zip\n"
  },
  {
    "path": "a2/run.py",
    "content": "#!/usr/bin/env python\n\nimport random\nimport numpy as np\nfrom utils.treebank import StanfordSentiment\nimport matplotlib\nmatplotlib.use('agg')\nimport matplotlib.pyplot as plt\nimport time\n\nfrom word2vec import *\nfrom sgd import *\n\n# Check Python Version\nimport sys\nassert sys.version_info[0] == 3\nassert sys.version_info[1] >= 5\n\n# Reset the random seed to make sure that everyone gets the same results\nrandom.seed(314)\ndataset = StanfordSentiment()\ntokens = dataset.tokens()\nnWords = len(tokens)\n\n# We are going to train 10-dimensional vectors for this assignment\ndimVectors = 10\n\n# Context size\nC = 5\n\n# Reset the random seed to make sure that everyone gets the same results\nrandom.seed(31415)\nnp.random.seed(9265)\n\nstartTime=time.time()\nwordVectors = np.concatenate(\n    ((np.random.rand(nWords, dimVectors) - 0.5) /\n       dimVectors, np.zeros((nWords, dimVectors))),\n    axis=0)\nwordVectors = sgd(\n    lambda vec: word2vec_sgd_wrapper(skipgram, tokens, vec, dataset, C,\n        negSamplingLossAndGradient),\n    wordVectors, 0.3, 40000, None, True, PRINT_EVERY=10)\n# Note that normalization is not called here. This is not a bug,\n# normalizing during training loses the notion of length.\n\nprint(\"sanity check: cost at convergence should be around or below 10\")\nprint(\"training took %d seconds\" % (time.time() - startTime))\n\n# concatenate the input and output word vectors\nwordVectors = np.concatenate(\n    (wordVectors[:nWords,:], wordVectors[nWords:,:]),\n    axis=0)\n\nvisualizeWords = [\n    \"great\", \"cool\", \"brilliant\", \"wonderful\", \"well\", \"amazing\",\n    \"worth\", \"sweet\", \"enjoyable\", \"boring\", \"bad\", \"dumb\",\n    \"annoying\", \"female\", \"male\", \"queen\", \"king\", \"man\", \"woman\", \"rain\", \"snow\",\n    \"hail\", \"coffee\", \"tea\"]\n\nvisualizeIdx = [tokens[word] for word in visualizeWords]\nvisualizeVecs = wordVectors[visualizeIdx, :]\ntemp = (visualizeVecs - np.mean(visualizeVecs, axis=0))\ncovariance = 1.0 / len(visualizeIdx) * temp.T.dot(temp)\nU,S,V = np.linalg.svd(covariance)\ncoord = temp.dot(U[:,0:2])\n\nfor i in range(len(visualizeWords)):\n    plt.text(coord[i,0], coord[i,1], visualizeWords[i],\n        bbox=dict(facecolor='green', alpha=0.1))\n\nplt.xlim((np.min(coord[:,0]), np.max(coord[:,0])))\nplt.ylim((np.min(coord[:,1]), np.max(coord[:,1])))\n\nplt.savefig('word_vectors.png')\n"
  },
  {
    "path": "a2/sgd.py",
    "content": "#!/usr/bin/env python\n\n# Save parameters every a few SGD iterations as fail-safe\nSAVE_PARAMS_EVERY = 5000\n\nimport pickle\nimport glob\nimport random\nimport numpy as np\nimport os.path as op\n\ndef load_saved_params():\n    \"\"\"\n    A helper function that loads previously saved parameters and resets\n    iteration start.\n    \"\"\"\n    st = 0\n    for f in glob.glob(\"saved_params_*.npy\"):\n        iter = int(op.splitext(op.basename(f))[0].split(\"_\")[2])\n        if (iter > st):\n            st = iter\n\n    if st > 0:\n        params_file = \"saved_params_%d.npy\" % st\n        state_file = \"saved_state_%d.pickle\" % st\n        params = np.load(params_file)\n        with open(state_file, \"rb\") as f:\n            state = pickle.load(f)\n        return st, params, state\n    else:\n        return st, None, None\n\n\ndef save_params(iter, params):\n    params_file = \"saved_params_%d.npy\" % iter\n    np.save(params_file, params)\n    with open(\"saved_state_%d.pickle\" % iter, \"wb\") as f:\n        pickle.dump(random.getstate(), f)\n\n\ndef sgd(f, x0, step, iterations, postprocessing=None, useSaved=False,\n        PRINT_EVERY=10):\n    \"\"\" Stochastic Gradient Descent\n\n    Implement the stochastic gradient descent method in this function.\n\n    Arguments:\n    f -- the function to optimize, it should take a single\n         argument and yield two outputs, a loss and the gradient\n         with respect to the arguments\n    x0 -- the initial point to start SGD from\n    step -- the step size for SGD\n    iterations -- total iterations to run SGD for\n    postprocessing -- postprocessing function for the parameters\n                      if necessary. In the case of word2vec we will need to\n                      normalize the word vectors to have unit length.\n    PRINT_EVERY -- specifies how many iterations to output loss\n\n    Return:\n    x -- the parameter value after SGD finishes\n    \"\"\"\n\n    # Anneal learning rate every several iterations\n    ANNEAL_EVERY = 20000\n\n    if useSaved:\n        start_iter, oldx, state = load_saved_params()\n        if start_iter > 0:\n            x0 = oldx\n            step *= 0.5 ** (start_iter / ANNEAL_EVERY)\n\n        if state:\n            random.setstate(state)\n    else:\n        start_iter = 0\n\n    x = x0\n\n    if not postprocessing:\n        postprocessing = lambda x: x\n\n    exploss = None\n\n    for iter in range(start_iter + 1, iterations + 1):\n        # You might want to print the progress every few iterations.\n\n        loss = None\n        ### YOUR CODE HERE (~2 lines)\n        \n        # Calculate loss and gradients\n        loss, grad = f(x)\n        \n        # Take step in direction of gradient.\n        x -= step * grad\n        ### END YOUR CODE\n\n        x = postprocessing(x)\n        if iter % PRINT_EVERY == 0:\n            if not exploss:\n                exploss = loss\n            else:\n                exploss = .95 * exploss + .05 * loss\n            print(\"iter %d: %f\" % (iter, exploss))\n\n        if iter % SAVE_PARAMS_EVERY == 0 and useSaved:\n            save_params(iter, x)\n\n        if iter % ANNEAL_EVERY == 0:\n            step *= 0.5\n\n    return x\n\n\ndef sanity_check():\n    quad = lambda x: (np.sum(x ** 2), x * 2)\n\n    print(\"Running sanity checks...\")\n    t1 = sgd(quad, 0.5, 0.01, 1000, PRINT_EVERY=100)\n    print(\"test 1 result:\", t1)\n    assert abs(t1) <= 1e-6\n\n    t2 = sgd(quad, 0.0, 0.01, 1000, PRINT_EVERY=100)\n    print(\"test 2 result:\", t2)\n    assert abs(t2) <= 1e-6\n\n    t3 = sgd(quad, -1.5, 0.01, 1000, PRINT_EVERY=100)\n    print(\"test 3 result:\", t3)\n    assert abs(t3) <= 1e-6\n\n    print(\"-\" * 40)\n    print(\"ALL TESTS PASSED\")\n    print(\"-\" * 40)\n\n\nif __name__ == \"__main__\":\n    sanity_check()\n"
  },
  {
    "path": "a2/utils/__init__.py",
    "content": ""
  },
  {
    "path": "a2/utils/datasets/stanfordSentimentTreebank/README.txt",
    "content": "Stanford Sentiment Treebank V1.0\n\nThis is the dataset of the paper:\n\nRecursive Deep Models for Semantic Compositionality Over a Sentiment Treebank\nRichard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher Manning, Andrew Ng and Christopher Potts\nConference on Empirical Methods in Natural Language Processing (EMNLP 2013)\n\nIf you use this dataset in your research, please cite the above paper.\n\n@incollection{SocherEtAl2013:RNTN,\ntitle = {{Parsing With Compositional Vector Grammars}},\nauthor = {Richard Socher and Alex Perelygin and Jean Wu and Jason Chuang and Christopher Manning and Andrew Ng and Christopher Potts},\nbooktitle = {{EMNLP}},\nyear = {2013}\n}\n\nThis file includes:\n1. original_rt_snippets.txt contains 10,605 processed snippets from the original pool of Rotten Tomatoes HTML files. Please note that some snippet may contain multiple sentences.\n\n2. dictionary.txt contains all phrases and their IDs, separated by a vertical line |\n\n3. sentiment_labels.txt contains all phrase ids and the corresponding sentiment labels, separated by a vertical line.\nNote that you can recover the 5 classes by mapping the positivity probability using the following cut-offs:\n[0, 0.2], (0.2, 0.4], (0.4, 0.6], (0.6, 0.8], (0.8, 1.0]\nfor very negative, negative, neutral, positive, very positive, respectively.\nPlease note that phrase ids and sentence ids are not the same.\n\n4. SOStr.txt and STree.txt encode the structure of the parse trees. \nSTree encodes the trees in a parent pointer format. Each line corresponds to each sentence in the datasetSentences.txt file. The Matlab code of this paper will show you how to read this format if you are not familiar with it.\n\n5. datasetSentences.txt contains the sentence index, followed by the sentence string separated by a tab. These are the sentences of the train/dev/test sets.\n\n6. datasetSplit.txt contains the sentence index (corresponding to the index in datasetSentences.txt file) followed by the set label separated by a comma:\n\t1 = train\n\t2 = test\n\t3 = dev\n\nPlease note that the datasetSentences.txt file has more sentences/lines than the original_rt_snippet.txt. \nEach row in the latter represents a snippet as shown on RT, whereas the former is each sub sentence as determined by the Stanford parser.\n\nFor comparing research and training models, please use the provided train/dev/test splits.\n\n"
  },
  {
    "path": "a2/utils/datasets/stanfordSentimentTreebank/SOStr.txt",
    "content": "The|Rock|is|destined|to|be|the|21st|Century|'s|new|``|Conan|''|and|that|he|'s|going|to|make|a|splash|even|greater|than|Arnold|Schwarzenegger|,|Jean-Claud|Van|Damme|or|Steven|Segal|.\nThe|gorgeously|elaborate|continuation|of|``|The|Lord|of|the|Rings|''|trilogy|is|so|huge|that|a|column|of|words|can|not|adequately|describe|co-writer\\/director|Peter|Jackson|'s|expanded|vision|of|J.R.R.|Tolkien|'s|Middle-earth|.\nEffective|but|too-tepid|biopic\nIf|you|sometimes|like|to|go|to|the|movies|to|have|fun|,|Wasabi|is|a|good|place|to|start|.\nEmerges|as|something|rare|,|an|issue|movie|that|'s|so|honest|and|keenly|observed|that|it|does|n't|feel|like|one|.\nThe|film|provides|some|great|insight|into|the|neurotic|mindset|of|all|comics|--|even|those|who|have|reached|the|absolute|top|of|the|game|.\nOffers|that|rare|combination|of|entertainment|and|education|.\nPerhaps|no|picture|ever|made|has|more|literally|showed|that|the|road|to|hell|is|paved|with|good|intentions|.\nSteers|turns|in|a|snappy|screenplay|that|curls|at|the|edges|;|it|'s|so|clever|you|want|to|hate|it|.\nBut|he|somehow|pulls|it|off|.\nTake|Care|of|My|Cat|offers|a|refreshingly|different|slice|of|Asian|cinema|.\nThis|is|a|film|well|worth|seeing|,|talking|and|singing|heads|and|all|.\nWhat|really|surprises|about|Wisegirls|is|its|low-key|quality|and|genuine|tenderness|.\n(|Wendigo|is|)|why|we|go|to|the|cinema|:|to|be|fed|through|the|eye|,|the|heart|,|the|mind|.\nOne|of|the|greatest|family-oriented|,|fantasy-adventure|movies|ever|.\nUltimately|,|it|ponders|the|reasons|we|need|stories|so|much|.\nAn|utterly|compelling|`|who|wrote|it|'|in|which|the|reputation|of|the|most|famous|author|who|ever|lived|comes|into|question|.\nIlluminating|if|overly|talky|documentary|.\nA|masterpiece|four|years|in|the|making|.\nThe|movie|'s|ripe|,|enrapturing|beauty|will|tempt|those|willing|to|probe|its|inscrutable|mysteries|.\nOffers|a|breath|of|the|fresh|air|of|true|sophistication|.\nA|thoughtful|,|provocative|,|insistently|humanizing|film|.\nWith|a|cast|that|includes|some|of|the|top|actors|working|in|independent|film|,|Lovely|&|Amazing|involves|us|because|it|is|so|incisive|,|so|bleakly|amusing|about|how|we|go|about|our|lives|.\nA|disturbing|and|frighteningly|evocative|assembly|of|imagery|and|hypnotic|music|composed|by|Philip|Glass|.\nNot|for|everyone|,|but|for|those|with|whom|it|will|connect|,|it|'s|a|nice|departure|from|standard|moviegoing|fare|.\nScores|a|few|points|for|doing|what|it|does|with|a|dedicated|and|good-hearted|professionalism|.\nOccasionally|melodramatic|,|it|'s|also|extremely|effective|.\nAn|idealistic|love|story|that|brings|out|the|latent|15-year-old|romantic|in|everyone|.\nAt|about|95|minutes|,|Treasure|Planet|maintains|a|brisk|pace|as|it|races|through|the|familiar|story|.\nHowever|,|it|lacks|grandeur|and|that|epic|quality|often|associated|with|Stevenson|'s|tale|as|well|as|with|earlier|Disney|efforts|.\nIt|helps|that|Lil|Bow|Wow|...|tones|down|his|pint-sized|gangsta|act|to|play|someone|who|resembles|a|real|kid|.\nGuaranteed|to|move|anyone|who|ever|shook|,|rattled|,|or|rolled|.\nA|masterful|film|from|a|master|filmmaker|,|unique|in|its|deceptive|grimness|,|compelling|in|its|fatalist|worldview|.\nLight|,|cute|and|forgettable|.\nIf|there|'s|a|way|to|effectively|teach|kids|about|the|dangers|of|drugs|,|I|think|it|'s|in|projects|like|the|(|unfortunately|R-rated|)|Paid|.\nWhile|it|would|be|easy|to|give|Crush|the|new|title|of|Two|Weddings|and|a|Funeral|,|it|'s|a|far|more|thoughtful|film|than|any|slice|of|Hugh|Grant|whimsy|.\nThough|everything|might|be|literate|and|smart|,|it|never|took|off|and|always|seemed|static|.\nCantet|perfectly|captures|the|hotel|lobbies|,|two-lane|highways|,|and|roadside|cafes|that|permeate|Vincent|'s|days\nMs.|Fulford-Wierzbicki|is|almost|spooky|in|her|sulky|,|calculating|Lolita|turn|.\nThough|it|is|by|no|means|his|best|work|,|Laissez-Passer|is|a|distinguished|and|distinctive|effort|by|a|bona-fide|master|,|a|fascinating|film|replete|with|rewards|to|be|had|by|all|willing|to|make|the|effort|to|reap|them|.\nLike|most|Bond|outings|in|recent|years|,|some|of|the|stunts|are|so|outlandish|that|they|border|on|being|cartoonlike|.\nA|heavy|reliance|on|CGI|technology|is|beginning|to|creep|into|the|series|.\nNewton|draws|our|attention|like|a|magnet|,|and|acts|circles|around|her|better|known|co-star|,|Mark|Wahlberg|.\nThe|story|loses|its|bite|in|a|last-minute|happy|ending|that|'s|even|less|plausible|than|the|rest|of|the|picture|.\nMuch|of|the|way|,|though|,|this|is|a|refreshingly|novel|ride|.\nFuller|would|surely|have|called|this|gutsy|and|at|times|exhilarating|movie|a|great|yarn|.\nThe|film|makes|a|strong|case|for|the|importance|of|the|musicians|in|creating|the|Motown|sound|.\nKarmen|moves|like|rhythm|itself|,|her|lips|chanting|to|the|beat|,|her|long|,|braided|hair|doing|little|to|wipe|away|the|jeweled|beads|of|sweat|.\nGosling|provides|an|amazing|performance|that|dwarfs|everything|else|in|the|film|.\nA|real|movie|,|about|real|people|,|that|gives|us|a|rare|glimpse|into|a|culture|most|of|us|do|n't|know|.\nTender|yet|lacerating|and|darkly|funny|fable|.\nMay|be|spoofing|an|easy|target|--|those|old|'|50|'s|giant|creature|features|--|but|...|it|acknowledges|and|celebrates|their|cheesiness|as|the|reason|why|people|get|a|kick|out|of|watching|them|today|.\nAn|engaging|overview|of|Johnson|'s|eccentric|career|.\nIn|its|ragged|,|cheap|and|unassuming|way|,|the|movie|works|.\nSome|actors|have|so|much|charisma|that|you|'d|be|happy|to|listen|to|them|reading|the|phone|book|.\nHugh|Grant|and|Sandra|Bullock|are|two|such|likeable|actors|.\nSandra|Nettelbeck|beautifully|orchestrates|the|transformation|of|the|chilly|,|neurotic|,|and|self-absorbed|Martha|as|her|heart|begins|to|open|.\nBehind|the|snow|games|and|lovable|Siberian|huskies|(|plus|one|sheep|dog|)|,|the|picture|hosts|a|parka-wrapped|dose|of|heart|.\nEverytime|you|think|Undercover|Brother|has|run|out|of|steam|,|it|finds|a|new|way|to|surprise|and|amuse|.\nManages|to|be|original|,|even|though|it|rips|off|many|of|its|ideas|.\nSinger\\/composer|Bryan|Adams|contributes|a|slew|of|songs|--|a|few|potential|hits|,|a|few|more|simply|intrusive|to|the|story|--|but|the|whole|package|certainly|captures|the|intended|,|er|,|spirit|of|the|piece|.\nYou|'d|think|by|now|America|would|have|had|enough|of|plucky|British|eccentrics|with|hearts|of|gold|.\nYet|the|act|is|still|charming|here|.\nWhether|or|not|you|'re|enlightened|by|any|of|Derrida|'s|lectures|on|``|the|other|''|and|``|the|self|,|''|Derrida|is|an|undeniably|fascinating|and|playful|fellow|.\nA|pleasant|enough|movie|,|held|together|by|skilled|ensemble|actors|.\nThis|is|the|best|American|movie|about|troubled|teens|since|1998|'s|Whatever|.\nDisney|has|always|been|hit-or-miss|when|bringing|beloved|kids|'|books|to|the|screen|...|Tuck|Everlasting|is|a|little|of|both|.\nJust|the|labour|involved|in|creating|the|layered|richness|of|the|imagery|in|this|chiaroscuro|of|madness|and|light|is|astonishing|.\nThe|animated|subplot|keenly|depicts|the|inner|struggles|of|our|adolescent|heroes|-|insecure|,|uncontrolled|,|and|intense|.\nThe|invincible|Werner|Herzog|is|alive|and|well|and|living|in|LA\nMorton|is|a|great|actress|portraying|a|complex|character|,|but|Morvern|Callar|grows|less|compelling|the|farther|it|meanders|from|its|shocking|start|.\nPart|of|the|charm|of|Satin|Rouge|is|that|it|avoids|the|obvious|with|humour|and|lightness|.\nSon|of|the|Bride|may|be|a|good|half-hour|too|long|but|comes|replete|with|a|flattering|sense|of|mystery|and|quietness|.\nA|simmering|psychological|drama|in|which|the|bursts|of|sudden|violence|are|all|the|more|startling|for|the|slow|buildup|that|has|preceded|them|.\nA|taut|,|intelligent|psychological|drama|.\nA|truly|moving|experience|,|and|a|perfect|example|of|how|art|--|when|done|right|--|can|help|heal|,|clarify|,|and|comfort|.\nThis|delicately|observed|story|,|deeply|felt|and|masterfully|stylized|,|is|a|triumph|for|its|maverick|director|.\nAt|heart|the|movie|is|a|deftly|wrought|suspense|yarn|whose|richer|shadings|work|as|coloring|rather|than|substance|.\nThe|appearance|of|Treebeard|and|Gollum|'s|expanded|role|will|either|have|you|loving|what|you|'re|seeing|,|or|rolling|your|eyes|.\nI|loved|it|!\nGollum|'s|`|performance|'|is|incredible|!\na|screenplay|more|ingeniously|constructed|than|``|Memento|''\nIf|this|movie|were|a|book|,|it|would|be|a|page-turner|,|you|ca|n't|wait|to|see|what|happens|next|.\nHaneke|challenges|us|to|confront|the|reality|of|sexual|aberration|.\nAbsorbing|and|disturbing|--|perhaps|more|disturbing|than|originally|intended|--|but|a|little|clarity|would|have|gone|a|long|way|.\nIt|'s|the|best|film|of|the|year|so|far|,|the|benchmark|against|which|all|other|Best|Picture|contenders|should|be|measured|.\nPainful|to|watch|,|but|viewers|willing|to|take|a|chance|will|be|rewarded|with|two|of|the|year|'s|most|accomplished|and|riveting|film|performances|.\nThis|is|a|startling|film|that|gives|you|a|fascinating|,|albeit|depressing|view|of|Iranian|rural|life|close|to|the|Iraqi|border|.\nA|few|artsy|flourishes|aside|,|Narc|is|as|gritty|as|a|movie|gets|these|days|.\nWhile|The|Isle|is|both|preposterous|and|thoroughly|misogynistic|,|its|vistas|are|incredibly|beautiful|to|look|at|.\nTogether|,|Tok|and|O|orchestrate|a|buoyant|,|darkly|funny|dance|of|death|.\nIn|the|process|,|they|demonstrate|that|there|'s|still|a|lot|of|life|in|Hong|Kong|cinema|.\nDirector|Kapur|is|a|filmmaker|with|a|real|flair|for|epic|landscapes|and|adventure|,|and|this|is|a|better|film|than|his|earlier|English-language|movie|,|the|overpraised|Elizabeth|.\nThe|movie|is|a|blast|of|educational|energy|,|as|bouncy|animation|and|catchy|songs|escort|you|through|the|entire|85|minutes|.\nA|sports|movie|with|action|that|'s|exciting|on|the|field|and|a|story|you|care|about|off|it|.\nDoug|Liman|,|the|director|of|Bourne|,|directs|the|traffic|well|,|gets|a|nice|wintry|look|from|his|locations|,|absorbs|us|with|the|movie|'s|spycraft|and|uses|Damon|'s|ability|to|be|focused|and|sincere|.\nThe|tenderness|of|the|piece|is|still|intact|.\nKatz|uses|archival|footage|,|horrifying|documents|of|lynchings|,|still|photographs|and|charming|old|reel-to-reel|recordings|of|Meeropol|entertaining|his|children|to|create|his|song|history|,|but|most|powerful|of|all|is|the|song|itself\nLike|the|film|'s|almost|anthropologically|detailed|realization|of|early|-|'80s|suburbia|,|it|'s|significant|without|being|overstated|.\nWhile|McFarlane|'s|animation|lifts|the|film|firmly|above|the|level|of|other|coming-of-age|films|...|it|'s|also|so|jarring|that|it|'s|hard|to|get|back|into|the|boys|'|story|.\nIf|nothing|else|,|this|movie|introduces|a|promising|,|unusual|kind|of|psychological|horror|.\nIn|a|normal|screen|process|,|these|bromides|would|be|barely|enough|to|sustain|an|interstitial|program|on|the|Discovery|Channel|.\nBut|in|Imax|3-D|,|the|clichés|disappear|into|the|vertiginous|perspectives|opened|up|by|the|photography|.\nWriter-director|Burger|imaginatively|fans|the|embers|of|a|dormant|national|grief|and|curiosity|that|has|calcified|into|chronic|cynicism|and|fear|.\n...|a|roller-coaster|ride|of|a|movie\nI|enjoyed|Time|of|Favor|while|I|was|watching|it|,|but|I|was|surprised|at|how|quickly|it|faded|from|my|memory|.\nChicago|is|sophisticated|,|brash|,|sardonic|,|completely|joyful|in|its|execution|.\nSteve|Irwin|'s|method|is|Ernest|Hemmingway|at|accelerated|speed|and|volume|.\nA|refreshing|Korean|film|about|five|female|high|school|friends|who|face|an|uphill|battle|when|they|try|to|take|their|relationships|into|deeper|waters|.\nOn|the|surface|,|it|'s|a|lovers-on-the-run|crime|flick|,|but|it|has|a|lot|in|common|with|Piesiewicz|'s|and|Kieslowski|'s|earlier|work|,|films|like|The|Double|Life|of|Veronique|.\nThe|values|that|have|held|the|Enterprise|crew|together|through|previous|adventures|and|perils|do|so|again-courage|,|self-sacrifice|and|patience|under|pressure|.\nIf|it|'s|possible|for|a|sequel|to|outshine|the|original|,|then|SL2|does|just|that|.\nA|romantic|comedy|that|operates|by|the|rules|of|its|own|self-contained|universe|.\n4|friends|,|2|couples|,|2000|miles|,|and|all|the|Pabst|Blue|Ribbon|beer|they|can|drink|-|it|'s|the|ultimate|redneck|road-trip|.\nThe|film|is|often|filled|with|a|sense|of|pure|wonderment|and|excitement|not|often|seen|in|today|'s|cinema|du|sarcasm\nIt|might|be|tempting|to|regard|Mr.|Andrew|and|his|collaborators|as|oddballs|,|but|Mr.|Earnhart|'s|quizzical|,|charming|movie|allows|us|to|see|them|,|finally|,|as|artists|.\nA|feel-good|picture|in|the|best|sense|of|the|term|.\nEdited|and|shot|with|a|syncopated|style|mimicking|the|work|of|his|subjects|,|Pray|turns|the|idea|of|the|documentary|on|its|head|,|making|it|rousing|,|invigorating|fun|lacking|any|MTV|puffery|.\nA|mostly|intelligent|,|engrossing|and|psychologically|resonant|suspenser|.\nIt|'s|this|memory-as-identity|obviation|that|gives|Secret|Life|its|intermittent|unease|,|reaffirming|that|long-held|illusions|are|indeed|reality|,|and|that|erasing|them|recasts|the|self|.\nHip-hop|has|a|history|,|and|it|'s|a|metaphor|for|this|love|story|.\nIn|scope|,|ambition|and|accomplishment|,|Children|of|the|Century|...|takes|Kurys|'|career|to|a|whole|new|level|.\nThis|may|not|have|the|dramatic|gut-wrenching|impact|of|other|Holocaust|films|,|but|it|'s|a|compelling|story|,|mainly|because|of|the|way|it|'s|told|by|the|people|who|were|there|.\nBetween|the|drama|of|Cube|?\ns|personal|revelations|regarding|what|the|shop|means|in|the|big|picture|,|iconic|characters|gambol|fluidly|through|the|story|,|with|charming|results|.\nA|gentle|,|compassionate|drama|about|grief|and|healing|.\nSomewhere|short|of|Tremors|on|the|modern|B-scene|:|neither|as|funny|nor|as|clever|,|though|an|agreeably|unpretentious|way|to|spend|ninety|minutes|.\nDigital-video|documentary|about|stand-up|comedians|is|a|great|glimpse|into|a|very|different|world|.\nUnlike|most|teen|flicks|,|Swimming|takes|its|time|to|tell|its|story|,|casts|mostly|little-known|performers|in|key|roles|,|and|introduces|some|intriguing|ambiguity|.\nAn|enthralling|,|playful|film|that|constantly|frustrates|our|desire|to|know|the|`|truth|'|about|this|man|,|while|deconstructing|the|very|format|of|the|biography|in|a|manner|that|Derrida|would|doubtless|give|his|blessing|to|.\n``|Extreme|Ops|''|exceeds|expectations|.\nGood|fun|,|good|action|,|good|acting|,|good|dialogue|,|good|pace|,|good|cinematography|.\nYou|Should|Pay|Nine|Bucks|for|This|:|Because|you|can|hear|about|suffering|Afghan|refugees|on|the|news|and|still|be|unaffected|.\nDramas|like|this|make|it|human|.\nA|thunderous|ride|at|first|,|quiet|cadences|of|pure|finesse|are|few|and|far|between|;|their|shortage|dilutes|the|potency|of|otherwise|respectable|action|.\nStill|,|this|flick|is|fun|,|and|host|to|some|truly|excellent|sequences|.\nIt|'s|obviously|struck|a|responsive|chord|with|many|South|Koreans|,|and|should|work|its|magic|in|other|parts|of|the|world|.\nRun|,|do|n't|walk|,|to|see|this|barbed|and|bracing|comedy|on|the|big|screen|.\nA|classy|item|by|a|legend|who|may|have|nothing|left|to|prove|but|still|has|the|chops|and|drive|to|show|how|its|done|.\nIt|is|nature|against|progress|.\nIn|Fessenden|'s|horror|trilogy|,|this|theme|has|proved|important|to|him|and|is|especially|so|in|the|finale|.\nIt|'s|not|exactly|a|gourmet|meal|but|the|fare|is|fair|,|even|coming|from|the|drive-thru|.\nThis|is|what|IMAX|was|made|for|:|Strap|on|a|pair|of|3-D|goggles|,|shut|out|the|real|world|,|and|take|a|vicarious|voyage|to|the|last|frontier|--|space|.\nMerely|as|a|technical|,|logistical|feat|,|Russian|Ark|marks|a|cinematic|milestone|.\n(|Schweiger|is|)|talented|and|terribly|charismatic|,|qualities|essential|to|both|movie|stars|and|social|anarchists|.\nIt|'s|a|great|deal|of|sizzle|and|very|little|steak|.\nBut|what|spectacular|sizzle|it|is|!\n...|In|this|incarnation|its|fizz|is|infectious|.\nAn|original|gem|about|an|obsession|with|time|.\nIt|will|delight|newcomers|to|the|story|and|those|who|know|it|from|bygone|days|.\nGloriously|goofy|(|and|gory|)|midnight|movie|stuff|.\nThe|film|overcomes|the|regular|minefield|of|coming-of-age|cliches|with|potent|doses|of|honesty|and|sensitivity|.\nIf|your|senses|have|n't|been|dulled|by|slasher|films|and|gorefests|,|if|you|'re|a|connoisseur|of|psychological|horror|,|this|is|your|ticket|.\nIt|'s|a|minor|comedy|that|tries|to|balance|sweetness|with|coarseness|,|while|it|paints|a|sad|picture|of|the|singles|scene|.\nIt|is|intensely|personal|and|yet|--|unlike|Quills|--|deftly|shows|us|the|temper|of|the|times|.\nAs|lo-fi|as|the|special|effects|are|,|the|folks|who|cobbled|Nemesis|together|indulge|the|force|of|humanity|over|hardware|in|a|way|that|George|Lucas|has|long|forgotten|.\nLike|Mike|does|n't|win|any|points|for|originality|.\nIt|does|succeed|by|following|a|feel-good|formula|with|a|winning|style|,|and|by|offering|its|target|audience|of|urban|kids|some|welcome|role|models|and|optimism|.\nIt|'s|a|hoot|and|a|half|,|and|a|great|way|for|the|American|people|to|see|what|a|candidate|is|like|when|he|'s|not|giving|the|same|15-cent|stump|speech|.\nFar|from|perfect|,|but|its|heart|is|in|the|right|place|...|innocent|and|well-meaning|.\nA|sad|,|superior|human|comedy|played|out|on|the|back|roads|of|life|.\nWaydowntown|is|by|no|means|a|perfect|film|,|but|its|boasts|a|huge|charm|factor|and|smacks|of|originality|.\nTim|Allen|is|great|in|his|role|but|never|hogs|the|scenes|from|his|fellow|cast|,|as|there|are|plenty|of|laughs|and|good|lines|for|everyone|in|this|comedy|.\nMore|a|load|of|enjoyable|,|Conan-esque|claptrap|than|the|punishing|,|special-effects|soul|assaults|the|Mummy|pictures|represent|.\nEnormously|likable|,|partly|because|it|is|aware|of|its|own|grasp|of|the|absurd|.\nHere|'s|a|British|flick|gleefully|unconcerned|with|plausibility|,|yet|just|as|determined|to|entertain|you|.\nIt|'s|an|old|story|,|but|a|lively|script|,|sharp|acting|and|partially|animated|interludes|make|Just|a|Kiss|seem|minty|fresh|.\nMust|be|seen|to|be|believed|.\nRay|Liotta|and|Jason|Patric|do|some|of|their|best|work|in|their|underwritten|roles|,|but|do|n't|be|fooled|:|Nobody|deserves|any|prizes|here|.\nEverything|that|has|to|do|with|Yvan|and|Charlotte|,|and|everything|that|has|to|do|with|Yvan|'s|rambunctious|,|Jewish|sister|and|her|non-Jew|husband|,|feels|funny|and|true|.\nThe|year|'s|happiest|surprise|,|a|movie|that|deals|with|a|real|subject|in|an|always|surprising|way|.\nFans|of|Behan|'s|work|and|of|Irish|movies|in|general|will|be|rewarded|by|Borstal|Boy|.\nIts|mysteries|are|transparently|obvious|,|and|it|'s|too|slowly|paced|to|be|a|thriller|.\n(|But|it|'s|)|worth|recommending|because|of|two|marvelous|performances|by|Michael|Caine|and|Brendan|Fraser|.\nThe|film|is|faithful|to|what|one|presumes|are|the|book|'s|twin|premises|--|that|we|become|who|we|are|on|the|backs|of|our|parents|,|but|we|have|no|idea|who|they|were|at|our|age|;|and|that|time|is|a|fleeting|and|precious|commodity|no|matter|how|old|you|are|.\nStephen|Earnhart|'s|homespun|documentary|Mule|Skinner|Blues|has|nothing|but|love|for|its|posse|of|trailer|park|denizens|.\nA|solidly|seaworthy|chiller|.\nIf|you|can|get|past|the|fantastical|aspects|and|harsh|realities|of|``|The|Isle|''|you|'ll|get|a|sock-you-in-the-eye|flick|that|is|a|visual|tour-de-force|and|a|story|that|is|unlike|any|you|will|likely|see|anywhere|else|.\nThere|are|as|many|misses|as|hits|,|but|ultimately|,|it|finds|humor|in|the|foibles|of|human|behavior|,|and|it|'s|a|welcome|return|to|the|roots|of|a|genre|that|should|depend|on|surprises|.\nA|well-made|thriller|with|a|certain|level|of|intelligence|and|non-reactionary|morality|.\nThere|'s|enough|science|to|make|it|count|as|educational|,|and|enough|beauty|to|make|it|unforgettable|.\nRemains|a|solid|,|if|somewhat|heavy-handed|,|account|of|the|near-disaster|...|done|up|by|Howard|with|a|steady|,|if|not|very|imaginative|,|hand|.\nMakmalbaf|follows|a|resolutely|realistic|path|in|this|uncompromising|insight|into|the|harsh|existence|of|the|Kurdish|refugees|of|Iran|'s|borderlands|.\nFor|a|good|chunk|of|its|running|time|,|Trapped|is|an|effective|and|claustrophobic|thriller|.\nMost|of|Crush|is|a|clever|and|captivating|romantic|comedy|with|a|welcome|pinch|of|tartness|.\nNair|does|capture|the|complexity|of|a|big|family|and|its|trials|and|tribulations|...\nThe|seaside|splendor|and|shallow|,|beautiful|people|are|nice|to|look|at|while|you|wait|for|the|story|to|get|going|.\nRare|is|the|`|urban|comedy|'|that|even|attempts|the|insight|and|honesty|of|this|disarming|indie|.\nRanks|among|Willams|'|best|screen|work|.\nEngagingly|captures|the|maddening|and|magnetic|ebb|and|flow|of|friendship|.\nAn|experience|so|engrossing|it|is|like|being|buried|in|a|new|environment|.\nIt|'s|traditional|moviemaking|all|the|way|,|but|it|'s|done|with|a|lot|of|careful|period|attention|as|well|as|some|very|welcome|wit|.\nMaybe|it|'s|just|because|this|past|year|has|seen|the|release|of|some|of|the|worst|film|comedies|in|decades|...|But|honestly|,|Analyze|That|really|is|n't|all|that|bad|.\nA|droll|,|well-acted|,|character-driven|comedy|with|unexpected|deposits|of|feeling|.\nThis|is|simply|the|most|fun|you|'ll|ever|have|with|a|documentary|!\nA|very|funny|movie|.\nWatching|Haneke|'s|film|is|,|aptly|enough|,|a|challenge|and|a|punishment|.\nBut|watching|Huppert|,|a|great|actress|tearing|into|a|landmark|role|,|is|riveting|.\nA|cop|story|that|understands|the|medium|amazingly|well|.\nBritney|has|been|delivered|to|the|big|screen|safe|and|sound|,|the|way|we|like|our|20-year-old|superstar|girls|to|travel|on|the|fame|freeway|.\nThose|outside|show|business|will|enjoy|a|close|look|at|people|they|do|n't|really|want|to|know|.\nThe|kind|of|nervous|film|that|will|either|give|you|a|mild|headache|or|exhilarate|you|.\nWatching|Beanie|and|his|gang|put|together|his|slasher|video|from|spare|parts|and|borrowed|materials|is|as|much|fun|as|it|must|have|been|for|them|to|make|it|.\nChildren|may|not|understand|everything|that|happens|--|I|'m|not|sure|even|Miyazaki|himself|does|--|but|they|will|almost|certainly|be|fascinated|,|and|undoubtedly|delighted|.\nA|fascinating|and|fun|film|.\nTadpole|is|a|sophisticated|,|funny|and|good-natured|treat|,|slight|but|a|pleasure|.\nThis|insightful|,|Oscar-nominated|documentary|,|in|which|children|on|both|sides|of|the|ever-escalating|conflict|have|their|say|away|from|watchful|parental|eyes|,|gives|peace|yet|another|chance|.\nI|admired|this|work|a|lot|.\nWhether|you|'re|moved|and|love|it|,|or|bored|or|frustrated|by|the|film|,|you|'ll|still|feel|something|.\n...|there|are|enough|moments|of|heartbreaking|honesty|to|keep|one|glued|to|the|screen|.\nMy|goodness|,|Queen|Latifah|has|a|lot|to|offer|and|she|seemed|to|have|no|problem|flaunting|her|natural|gifts|.\nShe|must|have|a|very|strong|back|.\nA|smart|,|sweet|and|playful|romantic|comedy|.\nAustralian|actor\\/director|John|Polson|and|award-winning|English|cinematographer|Giles|Nuttgens|make|a|terrific|effort|at|disguising|the|obvious|with|energy|and|innovation|.\nWithout|heavy-handedness|,|Dong|provides|perspective|with|his|intelligent|grasp|of|human|foibles|and|contradictions|.\nSolid|,|lump-in-the-throat|family|entertainment|that|derives|its|power|by|sticking|to|the|facts|.\nAs|an|entertainment|,|the|movie|keeps|you|diverted|and|best|of|all|,|it|lightens|your|wallet|without|leaving|a|sting|.\nIt|is|interesting|and|fun|to|see|Goodall|and|her|chimpanzees|on|the|bigger-than-life|screen|.\nIt|wo|n't|bust|your|gut|--|and|it|'s|not|intended|to|--|it|'s|merely|a|blandly|cinematic|surgical|examination|of|what|makes|a|joke|a|joke|.\nA|somewhat|crudely|constructed|but|gripping|,|questing|look|at|a|person|so|racked|with|self-loathing|,|he|becomes|an|enemy|to|his|own|race|.\nIt|extends|the|writings|of|Jean|Genet|and|John|Rechy|,|the|films|of|Fassbinder|,|perhaps|even|the|nocturnal|works|of|Goya|.\nNarc|may|not|get|an|`|A|'|for|originality|,|but|it|wears|its|B-movie|heritage|like|a|badge|of|honor|.\nWith|the|film|'s|striking|ending|,|one|realizes|that|we|have|a|long|way|to|go|before|we|fully|understand|all|the|sexual|permutations|involved|.\n(|Drumline|)|is|entertaining|for|what|it|does|,|and|admirable|for|what|it|does|n't|do|.\nAt|its|best|early|on|as|it|plays|the|culture|clashes|between|the|brothers|.\nAn|unabashedly|schmaltzy|and|thoroughly|enjoyable|true|story|.\nA|thoughtful|look|at|a|painful|incident|that|made|headlines|in|1995|.\nYou|walk|out|of|The|Good|Girl|with|mixed|emotions|--|disapproval|of|Justine|combined|with|a|tinge|of|understanding|for|her|actions|.\nTsai|Ming-liang|has|taken|his|trademark|style|and|refined|it|to|a|crystalline|point|.\nPurely|propaganda|,|a|work|of|unabashed|hero|worship|,|it|is|nonetheless|--|and|likely|inadvertently|--|a|timely|and|invaluable|implicit|reminder|of|the|role|that|U.S.|foreign|policy|has|played|in|the|rise|of|Castro|.\nNow|trimmed|by|about|20|minutes|,|this|lavish|three-year-old|production|has|enough|grandeur|and|scale|to|satisfy|as|grown-up|escapism|.\nWe|get|some|truly|unique|character|studies|and|a|cross-section|of|Americana|that|Hollywood|could|n't|possibly|fictionalize|and|be|believed|.\nThough|this|film|can|be|clumsy|,|its|ambitions|are|equally|--|and|admirably|--|uncommercial|.\nDaring|,|mesmerizing|and|exceedingly|hard|to|forget|.\nMoore|'s|performance|impresses|almost|as|much|as|her|work|with|Haynes|in|1995|'s|Safe|.\nVisits|spy-movie|territory|like|a|novel|you|ca|n't|put|down|,|examines|a|footnote|to|history|seldom|brought|to|light|on|the|screen|,|and|keeps|you|guessing|from|first|frame|to|last|.\nAn|absorbing|,|slice-of-depression|life|that|touches|nerves|and|rings|true|.\nMr.|Parker|has|brilliantly|updated|his|source|and|grasped|its|essence|,|composing|a|sorrowful|and|hilarious|tone|poem|about|alienated|labor|,|or|an|absurdist|workplace|sitcom|.\nThe|result|is|something|quite|fresh|and|delightful|.\nAll|but|the|most|persnickety|preteens|should|enjoy|this|nonthreatening|but|thrilling|adventure|.\nDespite|its|many|infuriating|flaws|--|not|the|least|of|which|is|Amy|'s|self-absorbed|personality|--|Amy|'s|O|'s|honesty|will|win|you|over|.\nThis|is|one|of|Polanski|'s|best|films|.\nDay|is|not|a|great|Bond|movie|,|but|it|is|a|good|Bond|movie|,|which|still|makes|it|much|better|than|your|typical|Bond|knock-offs|.\nPolished|Korean|political-action|film|is|just|as|good|--|and|bad|--|as|Hollywood|action|epics|.\nIs|this|progress|?\nElling|,|portrayed|with|quiet|fastidiousness|by|Per|Christian|Ellefsen|,|is|a|truly|singular|character|,|one|whose|frailties|are|only|slightly|magnified|versions|of|the|ones|that|vex|nearly|everyone|.\nDenis|and|co-writer|Michele|Petin|'s|impeccable|screenplay|penetrates|with|a|rawness|that|that|is|both|unflinching|and|tantalizing|.\nLead|provocatuers|Testud|and|Parmentier|give|superlative|performances\nAn|absorbing|trip|into|the|minds|and|motivations|of|people|under|stress|as|well|as|a|keen|,|unsentimental|look|at|variations|on|the|theme|of|motherhood|.\nI|admired|it|,|particularly|that|unexpected|downer|of|an|ending|.\nThe|passions|aroused|by|the|discord|between|old|and|new|cultures|are|set|against|the|strange|,|stark|beauty|of|the|Mideast|desert|,|so|lovingly|and|perceptively|filmed|that|you|can|almost|taste|the|desiccated|air|.\nRemarkably|accessible|and|affecting|.\nNever|mind|whether|you|buy|the|stuff|about|Barris|being|a|CIA|hit|man|.\nThe|kooky|yet|shadowy|vision|Clooney|sustains|throughout|is|daring|,|inventive|and|impressive|.\nA|triumph|of|art|direction|over|narrative|,|but|what|art|direction|!\nBehan|himself|knew|how|to|spin|a|tale|and|one|ca|n't|help|but|think|he|'d|appreciate|this|attempt|to|turn|his|life|into|art|.\nJirí|Hubac|'s|script|is|a|gem|.\nHis|characters|are|engaging|,|intimate|and|the|dialogue|is|realistic|and|greatly|moving|.\nThe|scope|of|the|Silberstein|family|is|large|and|we|grow|attached|to|their|lives|,|full|of|strength|,|warmth|and|vitality|.|.\nMoore|'s|complex|and|important|film|is|also|,|believe|it|or|not|,|immensely|entertaining|,|a|David|and|Goliath|story|that|'s|still|very|much|playing|itself|out|.\nThe|additional|storyline|is|interesting|and|entertaining|,|but|it|does|n't|have|the|same|magical|quality|as|the|beginning|of|the|story|.\nI|like|the|new|footage|and|still|love|the|old|stuff|.\nThough|Mama|takes|a|bit|too|long|to|find|its|rhythm|and|a|third-act|plot|development|is|somewhat|melodramatic|,|its|ribald|humor|and|touching|nostalgia|are|sure|to|please|anyone|in|search|of|a|Jules|and|Jim|for|the|new|millennium|.\nYou|might|not|buy|the|ideas|.\nBut|you|'ll|definitely|want|the|T-shirt|.\nProvides|an|intriguing|window|into|the|imagination|and|hermetic|analysis|of|Todd|Solondz|.\nWindtalkers|is|shapelessly|gratifying|,|the|kind|of|movie|that|invites|you|to|pick|apart|its|faults|even|as|you|have|to|admit|that|somehow|it|hit|you|where|you|live|.\nPresents|an|astute|appraisal|of|Middle|American|musical|torpor|and|the|desperate|struggle|to|escape|it|.\nJust|what|makes|us|happy|,|anyway|?\nA|thoughtful|,|moving|piece|that|faces|difficult|issues|with|honesty|and|beauty|.\nOne|of|the|greatest|romantic|comedies|of|the|past|decade|.\nYou|would|n't|call|The|Good|Girl|a|date|movie|(|an|anti-date|movie|is|more|like|it|)|,|but|when|it|'s|good|,|it|'s|good|and|horrid|.\nBenefits|from|a|strong|performance|from|Zhao|,|but|it|'s|Dong|Jie|'s|face|you|remember|at|the|end|.\nThis|is|a|film|brimming|with|detail|and|nuance|and|one|that|speaks|volumes|about|the|ability|of|the|human|spirit|to|find|solace|in|events|that|could|easily|crush|it|forever|.\nThe|director|,|Steven|Shainberg|,|has|succeeded|by|focusing|intently|on|his|characters|,|making|them|quirky|individuals|rather|than|figures|of|fun|.\nIt|ultimately|stands|forth|as|an|important|chronicle|of|the|abuses|of|one|of|Latin|America|'s|most|oppressive|regimes|.\nThe|movie|has|a|soft|,|percolating|magic|,|a|deadpan|suspense|.\nA|well-made|and|often|lovely|depiction|of|the|mysteries|of|friendship|.\nUsing|his|audience|as|a|figurative|port-of-call|,|Dong|pulls|his|even-handed|ideological|ship|to|their|dock|for|unloading|,|before|he|continues|his|longer|journey|still|ahead|.\n...|understands|that|a|generation|defines|its|music|as|much|as|the|music|defines|a|generation|.\nThe|Transporter|is|as|lively|and|as|fun|as|it|is|unapologetically|dumb\nAs|a|witness|to|several|Greek-American|weddings|--|but|,|happily|,|a|victim|of|none|--|I|can|testify|to|the|comparative|accuracy|of|Ms.|Vardalos|'|memories|and|insights|.\nHas|it|ever|been|possible|to|say|that|Williams|has|truly|inhabited|a|character|?\nIt|is|now|.\nBy|presenting|an|impossible|romance|in|an|impossible|world|,|Pumpkin|dares|us|to|say|why|either|is|impossible|--|which|forces|us|to|confront|what|'s|possible|and|what|we|might|do|to|make|it|so|.\nAn|impressive|debut|for|first-time|writer-director|Mark|Romanek|,|especially|considering|his|background|is|in|music|video|.\nAn|incendiary|,|deeply|thought-provoking|look|at|one|of|the|most|peculiar|(|and|peculiarly|venomous|)|bigotries|in|our|increasingly|frightening|theocracy\nAll|the|performances|are|top|notch|and|,|once|you|get|through|the|accents|,|All|or|Nothing|becomes|an|emotional|,|though|still|positive|,|wrench|of|a|sit|.\n``|its|successes|are|also|tempered|with|elements|which|prove|the|direct|antithesis|of|what|it|gets|right|.|''\nIt|'s|solid|and|affecting|and|exactly|as|thought-provoking|as|it|should|be|.\nThis|is|such|a|dazzlingly|self-assured|directorial|debut|that|it|'s|hard|to|know|what|to|praise|first|.\nParker|holds|true|to|Wilde|'s|own|vision|of|a|pure|comedy|with|absolutely|no|meaning|,|and|no|desire|to|be|anything|but|a|polished|,|sophisticated|entertainment|that|is|in|love|with|its|own|cleverness|.\nMünch|'s|genuine|insight|makes|the|film|'s|occasional|overindulgence|forgivable|.\nThankfully|,|the|film|,|which|skirts|that|rapidly|deteriorating|line|between|fantasy|and|reality|...|takes|a|tongue-in-cheek|attitude|even|as|it|pushes|the|Croc|Hunter|agenda|.\nUltimately|,|the|message|of|Trouble|Every|Day|seems|to|be|that|all|sexual|desire|disrupts|life|'s|stasis|.\nIf|you|'re|like|me|,|a|sucker|for|a|good|old|fashion|romance|and|someone|who|shamelessly|loves|to|eat|,|then|Mostly|Martha|offers|all|the|perfect|ingredients|to|more|than|satisfy|your|appetite|.\nThe|film|has|just|enough|of|everything|--|re-enactments|,|archival|footage|,|talking-head|interviews|--|and|the|music|is|simply|sublime|.\nThere|are|a|few|stabs|at|absurdist|comedy|...|but|mostly|the|humor|is|of|the|sweet|,|gentle|and|occasionally|cloying|kind|that|has|become|an|Iranian|specialty|.\nA|wonderful|character-based|comedy|.\nIt|would|be|interesting|to|hear|from|the|other|side|,|but|in|Talk|to|Her|,|the|women|are|down|for|the|count|.\nAn|endearingly|offbeat|romantic|comedy|with|a|great|meet-cute|gimmick|.\nThe|unique|tug-of-war|with|viewer|expectations|is|undeniable|,|if|not|a|pleasure|in|its|own|right|.\nIt|uses|an|old-time|formula|,|it|'s|not|terribly|original|and|it|'s|rather|messy|--|but|you|just|have|to|love|the|big|,|dumb|,|happy|movie|My|Big|Fat|Greek|Wedding|.\nIt|'s|almost|impossible|not|to|be|moved|by|the|movie|'s|depiction|of|sacrifice|and|its|stirring|epilogue|in|post-Soviet|Russia|.\nWho|knows|what|exactly|Godard|is|on|about|in|this|film|,|but|his|words|and|images|do|n't|have|to|add|up|to|mesmerize|you|.\nThe|tone|is|balanced|,|reflective|and|reasonable|.\nThe|principals|in|this|cast|are|all|fine|,|but|Bishop|and|Stevenson|are|standouts|.\nIt|could|change|America|,|not|only|because|it|is|full|of|necessary|discussion|points|,|but|because|it|is|so|accessible|that|it|makes|complex|politics|understandable|to|viewers|looking|for|nothing|but|energetic|entertainment|.\nWhat|'s|most|striking|about|this|largely|celebratory|film|...|is|the|sense|of|isolation|that|permeates|these|bastions|of|individuality|in|an|Ikea|world|.\n...|if|you|'re|in|a|mind|set|for|goofy|comedy|,|the|troopers|will|entertain|with|their|gross|outs|,|bawdy|comedy|and|head|games|.\nSomewhat|blurred|,|but|Kinnear|'s|performance|is|razor|sharp|.\nAs|a|director|,|Mr.|Ratliff|wisely|rejects|the|temptation|to|make|fun|of|his|subjects|.\nFor|anyone|who|remembers|the|'60s|or|is|interested|in|one|man|'s|response|to|stroke|,|Ram|Dass|:|Fierce|Grace|is|worth|seeking|out|.\nIntriguing|and|beautiful|film|,|but|those|of|you|who|read|the|book|are|likely|to|be|disappointed|.\nThe|New|Guy|does|have|a|heart|.\nNow|,|if|it|only|had|a|brain|.\nA|savvy|exploration|of|paranoia|and|insecurity|in|America|'s|culture|of|fear|.\nLegendary|Irish|writer|Brendan|Behan|'s|memoir|,|Borstal|Boy|,|has|been|given|a|loving|screen|transferral|.\nThe|film|'s|greatest|asset|is|how|much|it|'s|not|just|another|connect-the-dots|,|spy-on-the-run|picture|.\nThis|clever|caper|movie|has|twists|worthy|of|David|Mamet|and|is|enormous|fun|for|thinking|audiences|.\nIt|'s|one|of|the|saddest|films|I|have|ever|seen|that|still|manages|to|be|uplifting|but|not|overly|sentimental|.\nMorton|is|,|as|usual|,|brilliant|.\nEven|with|all|those|rough|edges|safely|sanded|down|,|the|American|Insomnia|is|still|pretty|darned|good|.\nI|do|n't|know|precisely|what|to|make|of|Steven|Soderbergh|'s|Full|Frontal|,|though|that|did|n't|stop|me|from|enjoying|much|of|it|.\nThe|tug|of|war|that|ensues|is|as|much|a|snapshot|of|modern|China|in|microcosm|as|it|is|a|crash|course|in|movie|mythology|.\nNearly|surreal|,|dabbling|in|French|,|this|is|no|simple|movie|,|and|you|'ll|be|taking|a|risk|if|you|choose|to|see|it|.\nI|enjoyed|the|ride|(|bumps|and|all|)|,|creamy|depth|,|and|ultimate|theme|.\nYou|could|say|that|it|'s|slow|at|times|,|you|could|say|that|a|few|of|the|characters|act|in|ways|that|real|people|would|n't|,|but|one|thing|you|could|n't|say|is|that|Alias|Betty|is|predictable|.\nAsia|authors|herself|as|Anna|Battista|,|an|Italian|superstar|and|aspiring|directress|who|just|happens|to|be|her|own|worst|enemy|.\nRoman|Coppola|may|never|become|the|filmmaker|his|Dad|was|,|but|heck|--|few|filmmakers|will|.\nBut|based|on|CQ|,|I|'ll|certainly|be|keeping|an|eye|out|for|his|next|project|.\nAn|amusing|,|breezily|apolitical|documentary|about|life|on|the|campaign|trail|.\nHigh|on|melodrama|.\nBut|it|'s|emotionally|engrossing|,|too|,|thanks|to|strong|,|credible|performances|from|the|whole|cast|.\nFinally|,|a|genre|movie|that|delivers|--|in|a|couple|of|genres|,|no|less|.\nIt|'s|not|so|much|enjoyable|to|watch|as|it|is|enlightening|to|listen|to|new|sides|of|a|previous|reality|,|and|to|visit|with|some|of|the|people|who|were|able|to|make|an|impact|in|the|theater|world|.\nSpielberg|is|the|rare|director|who|does|not|want|to|invite|viewers|to|gawk|at|or|applaud|his|special|effects|.\nHe|just|wants|them|to|be|part|of|the|action|,|the|wallpaper|of|his|chosen|reality|.\nHere|,|thankfully|,|they|are|.\nPost|9\\/11|the|philosophical|message|of|``|Personal|Freedom|First|''|might|not|be|as|palatable|as|intended|.\nHu|and|Liu|offer|natural|,|matter-of-fact|performances|that|glint|with|sorrow|,|longing|and|love|.\nThis|bold|and|lyrical|first|feature|from|Raja|Amari|expands|the|pat|notion|that|middle-aged|women|just|wanna|have|fun|into|a|rousing|treatise|of|sensual|empowerment|.\nEasier|to|respect|than|enthuse|over|,|Andersson|'s|rigorous|personal|vision|is|not|only|distanced|but|distancing|.\nGirls|gone|wild|and|gone|civil|again\n...|Tunney|is|allowed|to|build|an|uncommonly|human|character|,|an|almost|real-live|girl|complete|with|trouble|and|hope|.\nWhile|this|film|is|not|in|the|least|surprising|,|it|is|still|ultimately|very|satisfying|.\nThink|of|it|as|a|sort|of|comfort|food|for|the|mind|.\nClever|,|brutal|and|strangely|soulful|movie|.\n...|always|remains|movingly|genuine|.\nAn|intelligent|fiction|about|learning|through|cultural|clash|.\nWill|grab|your|children|by|the|imagination|and|amaze|them|and|amuse|them|.\nA|remarkable|179-minute|meditation|on|the|nature|of|revolution|.\nThose|who|would|follow|Haneke|on|his|creepy|explorations|...|are|rewarded|by|brutal|,|committed|performances|from|Huppert|and|Magimel|.\nAn|involving|true|story|of|a|Chinese|actor|who|takes|up|drugs|and|winds|up|in|an|institution|--|acted|mostly|by|the|actual|people|involved|.\nHands|down|the|year|'s|most|thought-provoking|film|.\nBut|it|pays|a|price|for|its|intricate|intellectual|gamesmanship|.\nIt|'s|a|terrific|American|sports|movie|and|Dennis|Quaid|is|its|athletic|heart|.\nThis|is|such|a|high-energy|movie|where|the|drumming|and|the|marching|are|so|excellent|,|who|cares|if|the|story|'s|a|little|weak|.\nCompelling|revenge|thriller|,|though|somewhat|weakened|by|a|miscast|leading|lady|.\nIt|'s|amazingly|perceptive|in|its|subtle|,|supportive|but|unsentimental|look|at|the|Marks|family|.\nA|whole|lot|foul|,|freaky|and|funny|.\nAttal|mixes|comedy|with|a|serious|exploration|of|ego|and|jealousy|within|a|seemingly|serene|marriage|.\nThe|diversity|of|the|artists|represented|,|both|in|terms|of|style|and|ethnicity|,|prevents|the|proceedings|from|feeling|repetitious|,|as|does|the|appropriately|brief|40-minute|running|time|.\nThe|Pianist|is|a|fine|valedictory|work|for|Polanski|,|made|richer|by|his|own|experiences|,|making|his|other|movies|somehow|richer|in|the|bargain|.\nFoster|nails|the|role|,|giving|a|tight|,|focused|performance|illuminated|by|shards|of|feeling|.\nEven|if|you|ca|n't|pronounce|``|gyro|''|correctly|,|you|'ll|appreciate|much|of|Vardalos|'|humor|,|which|transcends|ethnic|boundaries|.\nIs|office|work|really|as|alienating|as|`|Bartleby|'|so|effectively|makes|it|?\nFarrell|...|thankfully|manages|to|outshine|the|role|and|successfully|plays|the|foil|to|Willis|'s|world-weary|colonel|.\nAudiences|conditioned|to|getting|weepy|over|saucer-eyed|,|downy-cheeked|moppets|and|their|empathetic|caretakers|will|probably|feel|emotionally|cheated|by|the|film|'s|tart|,|sugar-free|wit|.\nBennett|'s|dramatization|of|her|personal|descent|into|post-breakup|perdition|has|a|morbid|appeal|that|'s|tough|to|shake|.\nAn|intriguing|and|entertaining|introduction|to|Johnson|.\nAs|expected|,|Sayles|'|smart|wordplay|and|clever|plot|contrivances|are|as|sharp|as|ever|,|though|they|may|be|overshadowed|by|some|strong|performances|.\nA|model|of|what|films|like|this|should|be|like|.\nAs|Weber|and|Weissman|demonstrate|with|such|insight|and|celebratory|verve|,|the|Cockettes|were|n't|as|much|about|gender|,|sexual|preference|or|political|agitprop|as|they|were|simply|a|triumph|of|the|indomitable|human|will|to|rebel|,|connect|and|create|.\nYeah|,|these|flicks|are|just|that|damn|good|.\nIs|n't|it|great|?\nAn|unbelievably|fun|film|just|a|leading|man|away|from|perfection|.\nOver-the-top|and|a|bit|ostentatious|,|this|is|a|movie|that|'s|got|oodles|of|style|and|substance|.\n...|a|poignant|and|powerful|narrative|that|reveals|that|reading|writing|and|arithmetic|are|not|the|only|subjects|to|learn|in|life|.\nNicely|serves|as|an|examination|of|a|society|in|transition|.\nA|tender|and|touching|drama|,|based|on|the|true|story|of|a|troubled|African-American|'s|quest|to|come|to|terms|with|his|origins|,|reveals|the|yearning|we|all|have|in|our|hearts|for|acceptance|within|the|family|circle|.\nAs|a|randy|film|about|sexy|people|in|gorgeous|places|being|pushed|and|pulled|(|literally|and|figuratively|)|by|desire|...|(|Sex|and|Lucía|)|makes|for|an|arousing|good|time|.\nAbsorbing|character|study|by|André|Turpin|.\nCelebrated|at|Sundance|,|this|slight|comedy|of|manners|has|winning|performances|and|a|glossy|,|glib|charm|that|'s|hard|to|beat|.\nRenner|'s|performance|as|Dahmer|is|unforgettable|,|deeply|absorbing|.\nIf|no|one|singles|out|any|of|these|performances|as|award-worthy|,|it|'s|only|because|we|would|expect|nothing|less|from|this|bunch|.\nIf|you|love|reading|and\\/or|poetry|,|then|by|all|means|check|it|out|.\nYou|'ll|probably|love|it|.\nThough|of|particular|interest|to|students|and|enthusiast|of|international|dance|and|world|music|,|the|film|is|designed|to|make|viewers|of|all|ages|,|cultural|backgrounds|and|rhythmic|ability|want|to|get|up|and|dance|.\nEnergetic|and|boldly|provocative|.\nStar|Wars|is|back|in|a|major|way|.\nIt|'s|a|movie|--|and|an|album|--|you|wo|n't|want|to|miss|.\nIt|'s|rare|to|find|a|film|that|dazzles|the|eye|,|challenges|the|brain|,|AND|satisfies|our|lust|for|fast-paced|action|,|but|Minority|Report|delivers|all|that|and|a|whole|lot|more|.\nWhile|not|all|transitions|to|adulthood|are|so|fraught|,|there|'s|much|truth|and|no|small|amount|of|poetry|in|Girls|Ca|n't|Swim|.\nIf|there|'s|nothing|fresh|about|Wannabes|,|which|was|written|by|Mr.|DeMeo|,|who|produced|and|directed|the|film|with|Charles|A.|Addessi|,|much|of|the|time|the|movie|feels|authentic|.\nJacquot|'s|Tosca|is|a|treat|.\nBy|the|end|of|No|Such|Thing|the|audience|,|like|Beatrice|,|has|a|watchful|affection|for|the|monster|.\nIf|you|liked|such|movies|as|Notting|Hill|,|Four|Weddings|And|A|Funeral|,|Bridget|Jones|'|Diary|or|High|Fidelity|,|then|you|wo|n't|want|to|miss|About|A|Boy|.\n...|the|gentle|melding|of|drama|and|comedy|makes|``|What|Time|Is|It|There|?|''\nsomething|the|true|film|buff|will|enjoy|.\nRomanek|keeps|the|film|constantly|taut|...|reflecting|the|character|'s|instability|with|a|metaphorical|visual|style|and|an|unnerving|,|heartbeat-like|score|.\nI|whole-heartedly|recommend|that|everyone|see|this|movie|--|for|its|historical|significance|alone|.\nHey|,|who|else|needs|a|shower|?\nLongley|has|constructed|a|remarkably|coherent|,|horrifically|vivid|snapshot|of|those|turbulent|days|.\nAlthough|it|bangs|a|very|cliched|drum|at|times|,|this|crowd-pleaser|'s|fresh|dialogue|,|energetic|music|,|and|good-natured|spunk|are|often|infectious|.\nOften|gruelling|and|heartbreaking|to|witness|,|but|Seldahl|and|Wollter|'s|sterling|performances|raise|this|far|above|the|level|of|the|usual|maudlin|disease|movie|.\nGo|see|it|and|enjoy|.\nThe|stunning|,|dreamlike|visuals|will|impress|even|those|viewers|who|have|little|patience|for|Euro-film|pretension|.\nGeorge|Clooney|proves|he|'s|quite|a|talented|director|and|Sam|Rockwell|shows|us|he|'s|a|world-class|actor|with|Confessions|of|a|Dangerous|Mind|.\nThere|'s|a|vastness|implied|in|Metropolis|that|is|just|breathtaking|.\nMurderous|Maids|may|well|be|the|most|comprehensive|of|these|films|and|also|strike|closest|to|the|truth|.\nThe|people|in|Dogtown|and|Z-Boys|are|so|funny|,|aggressive|and|alive|,|you|have|to|watch|them|because|you|ca|n't|wait|to|see|what|they|do|next|.\nAs|green-guts|monster|movies|go|,|it|'s|a|beaut|.\nAs|Bundy|,|Michael|Reilly|Burke|(|Octopus|2|:|River|of|Fear|)|has|just|the|right|amount|of|charisma|and|menace|.\nA|deceivingly|simple|film|,|one|that|grows|in|power|in|retrospect|.\nAna|is|a|vivid|,|vibrant|individual|and|the|movie|'s|focus|upon|her|makes|it|successful|and|accessible|.\nA|slick|,|skillful|little|horror|film|.\nA|very|witty|take|on|change|,|risk|and|romance|,|and|the|film|uses|humour|to|make|its|points|about|acceptance|and|growth|.\n(|Anderson|)|uses|a|hit-or-miss|aesthetic|that|hits|often|enough|to|keep|the|film|entertaining|even|if|none|of|it|makes|a|lick|of|sense|.\nBubba|Ho-Tep|is|a|wonderful|film|with|a|bravura|lead|performance|by|Bruce|Campbell|that|does|n't|deserve|to|leave|the|building|until|everyone|is|aware|of|it|.\ndespite|the|long|running|time|,|the|pace|never|feels|slack|--|there|'s|no|scene|that|screams|``|bathroom|break|!|''\nBullock|does|a|good|job|here|of|working|against|her|natural|likability|.\nA|film|of|precious|increments|artfully|camouflaged|as|everyday|activities|.\nKinnear|gives|a|tremendous|performance|.\nThe|best|movie|of|its|kind|since|`|Brazil|.|'\nLucas|,|take|notes|.\nThis|is|how|you|use|special|effects|.\n``|Frailty|''|has|been|written|so|well|,|that|even|a|simple|``|Goddammit|!|''\nnear|the|end|takes|on|a|whole|other|meaning|.\nOne|Hour|Photo|is|an|intriguing|snapshot|of|one|man|and|his|delusions|;|it|'s|just|too|bad|it|does|n't|have|more|flashes|of|insight|.\nKaufman|creates|an|eerie|sense|of|not|only|being|there|at|the|time|of|these|events|but|the|very|night|Matthew|was|killed|.\nChalk|it|up|to|my|adoration|for|both|De|Niro|and|Murphy|,|but|I|had|a|pretty|good|time|with|this|movie|-|despite|its|myriad|flaws|.\nIts|scenes|and|sensibility|are|all|more|than|familiar|,|but|it|exudes|a|kind|of|nostalgic|spy-movie|charm|and|,|at|the|same|time|,|is|so|fresh|and|free|of|the|usual|thriller|nonsense|that|it|all|seems|to|be|happening|for|the|first|time|.\nIt|represents|better-than-average|movie-making|that|does|n't|demand|a|dumb|,|distracted|audience|.\nA|charming|yet|poignant|tale|of|the|irrevocable|ties|that|bind|.\nAn|enchanting|spectacular|for|Potter|fans|anxious|to|ride|the|Hogwarts|Express|toward|a|new|year|of|magic|and|mischief|.\nThe|talents|of|the|actors|helps|``|Moonlight|Mile|''|rise|above|its|heart-on-its-sleeve|writing|.\nIt|'s|a|humble|effort|,|but|spiced|with|wry|humor|and|genuine|pathos|,|especially|between|Morgan|and|Redgrave|.\nThis|examination|of|aquatic|life|off|the|shores|of|the|Baja|California|peninsula|of|Mexico|offers|an|engrossing|way|to|demonstrate|the|virtues|of|the|IMAX|format|.\nDark|and|disturbing|,|but|also|surprisingly|funny|.\nThe|movie|has|an|avalanche|of|eye-popping|visual|effects|.\nStarts|off|with|a|bang|,|but|then|fizzles|like|a|wet|stick|of|dynamite|at|the|very|end|.\nIt|'s|still|worth|a|look|.\nMost|impressive|,|though|,|is|the|film|'s|open-ended|finale|that|refuses|to|entirely|close|its|characters|'|emotional|wounds|.\nA|hip|ride|into|hyper-time|,|Clockstoppers|is|a|lively|and|enjoyable|adventure|for|all|ages|at|any|time|.\nGrenier|is|terrific|,|bringing|an|unforced|,|rapid-fire|delivery|to|Toback|'s|Heidegger|-|and|Nietzsche-referencing|dialogue|.\n...|a|polished|and|relatively|sincere|piece|of|escapism|.\nThe|story|wraps|back|around|on|itself|in|the|kind|of|elegant|symmetry|that|'s|rare|in|film|today|,|but|be|warned|:|It|'s|a|slow|slog|to|get|there|.\nThe|whole|cast|looks|to|be|having|so|much|fun|with|the|slapstick|antics|and|silly|street|patois|,|tossing|around|obscure|expressions|like|Bellini|and|Mullinski|,|that|the|compact|86|minutes|breezes|by|.\n...|has|freaky|scenes|where|the|crew|wonder|if|they|'re|ghosts|imagining|themselves|as|alive|.\nIt|'s|a|sly|wink|to|The|Others|without|becoming|a|postmodern|joke|,|made|creepy|by|its|``|men|in|a|sardine|can|''|warped|logic|.\nLong|after|you|leave|Justine|,|you|'ll|be|wondering|what|will|happen|to|her|and|wishing|her|the|best|--|whatever|that|might|mean|.\nStill|pretentious|and|filled|with|subtext|,|but|entertaining|enough|at|`|face|value|'|to|recommend|to|anyone|looking|for|something|different|.\nCall|me|a|wimp|,|but|I|cried|,|not|once|,|but|three|times|in|this|animated|sweet|film|.\nNotorious|C.H.O.|has|oodles|of|vulgar|highlights|.\nAn|inspiring|and|heart-affecting|film|about|the|desperate|attempts|of|Vietnamese|refugees|living|in|U.S.|relocation|camps|to|keep|their|hopes|alive|in|1975|.\nThe|level|of|maturity|displayed|by|this|33-year-old|first-time|feature|director|is|astonishing|,|considering|her|inexperience|and|her|subject|matter|.\nA|splendid|entertainment|,|young|in|spirit|but|accomplished|in|all|aspects|with|the|fullness|of|spirit|and|sense|of|ease|that|comes|only|with|experience|.\nDisney|'s|live-action|division|has|a|history|of|releasing|cinematic|flotsam|,|but|this|is|one|occasion|when|they|have|unearthed|a|rare|gem|.\nIf|the|message|seems|more|facile|than|the|earlier|films|,|the|images|have|such|a|terrible|beauty|you|may|not|care|.\nWhether|Kiss|is|a|future|cult|classic|or|destined|to|be|completely|forgotten|is|open|to|question|,|but|the|risk-takers|in|the|crowd|should|check|it|out|and|form|their|own|opinion|.\nThere|are|moments|in|this|account|of|the|life|of|artist|Frida|Kahlo|that|are|among|cinema|'s|finest|this|year|.\nUnfortunately|,|they|'re|sandwiched|in|between|the|most|impossibly|dry|account|of|Kahlo|'s|life|imaginable|.\nThere|are|moments|it|can|be|heart-rending|in|an|honest|and|unaffected|(|and|gentle|)|way|.\nStay|clear|of|reminding|yourself|that|it|'s|a|``|true|story|''|and|you|'re|likely|to|have|one|helluva|time|at|the|movies|.\nThere|are|just|enough|twists|in|the|tale|to|make|it|far|more|satisfying|than|almost|any|horror|film|in|recent|memory|.\nThe|Sundance|Film|Festival|has|become|so|buzz-obsessed|that|fans|and|producers|descend|upon|Utah|each|January|to|ferret|out|The|Next|Great|Thing|.\n`|Tadpole|'|was|one|of|the|films|so|declared|this|year|,|but|it|'s|really|more|of|The|Next|Pretty|Good|Thing|.\nWorking|from|Elliott|'s|memoir|,|Rohmer|fashions|the|sort|of|delicate|,|articulate|character|-|and|-|relationship|study|he|'s|favored|for|decades|.\nThe|story|feels|more|like|a|serious|read|,|filled|with|heavy|doses|of|always|enticing|Sayles|dialogue|.\nWhen|it|really|counts|...|Bloody|Sunday|connects|on|a|visceral|level|that|transcends|language|.\nThe|crime|matters|less|than|the|characters|,|although|the|filmmakers|supply|enough|complications|,|close|calls|and|double-crosses|to|satisfy|us|.\nThe|actors|are|fantastic|.\nThey|are|what|makes|it|worth|the|trip|to|the|theatre|.\nRanging|from|funny|to|shattering|and|featuring|some|of|the|year|'s|best|acting|,|Personal|Velocity|gathers|plenty|of|dramatic|momentum|.\nI|complain|all|the|time|about|seeing|the|same|ideas|repeated|in|films|over|and|over|again|,|but|The|Bourne|Identity|proves|that|a|fresh|take|is|always|possible|.\nRecalls|quiet|freak-outs|like|L'Avventura|and|Repulsion|.\nOnly|an|epic|documentary|could|get|it|all|down|,|and|Spike|Lee|'s|Jim|Brown|:|All|American|at|long|last|gives|its|subject|a|movie|worthy|of|his|talents|.\n...|as|the|story|congeals|you|feel|the|pieces|of|the|Star|Wars|saga|falling|into|place|in|a|way|that|makes|your|spine|tingle|with|revelation|and|excitement|.\nA|great|comedy|filmmaker|knows|great|comedy|need|n't|always|make|us|laugh|.\nTim|Story|'s|not|there|yet|-|but|`|Barbershop|'|shows|he|'s|on|his|way|.\nThe|movie|is|one|of|the|best|examples|of|artful|Large|Format|filmmaking|you|are|likely|to|see|anytime|soon|.\nLends|itself|to|the|narcotizing|bland|(|sinister|,|though|not|nearly|so|sinister|as|the|biennial|Disney|girl|movie|)|machinations|of|the|biennial|Disney|boy|movie|.\nWell-written|,|nicely|acted|and|beautifully|shot|and|scored|,|the|film|works|on|several|levels|,|openly|questioning|social|mores|while|ensnaring|the|audience|with|its|emotional|pull|.\nJason|X|has|cheesy|effects|and|a|hoary|plot|,|but|its|macabre|,|self-deprecating|sense|of|humor|makes|up|for|a|lot|.\n(|Taymor|)|utilizes|the|idea|of|making|Kahlo|'s|art|a|living|,|breathing|part|of|the|movie|,|often|catapulting|the|artist|into|her|own|work|.\nThis|is|n't|a|new|idea|.\nIt|'s|been|done|before|but|never|so|vividly|or|with|so|much|passion|.\nAn|impressive|if|flawed|effort|that|indicates|real|talent|.\nTwo|generations|within|one|family|test|boundaries|in|this|intelligent|and|restrained|coming-of-age|drama|.\nit|sounds|sick|and|twisted|,|but|the|miracle|of|Shainberg|'s|film|is|that|it|truly|is|romance\nDisturbing|and|brilliant|documentary|.\n...|mesmerizing|,|an|eye-opening|tour|of|modern|Beijing|culture|in|a|journey|of|rebellion|,|retreat|into|oblivion|and|return|.\nOne|of|the|best|examples|of|how|to|treat|a|subject|,|you|'re|not|fully|aware|is|being|examined|,|much|like|a|photo|of|yourself|you|did|n't|know|was|being|taken|.\nNot|too|far|below|the|gloss|you|can|still|feel|director|Denis|Villeneuve|'s|beating|heart|and|the|fondness|he|has|for|his|characters|.\nAs|if|to|prove|a|female|director|can|make|a|movie|with|no|soft|edges|,|Kathryn|Bigelow|offers|no|sugar-coating|or|interludes|of|lightness|.\nHer|film|is|unrelentingly|claustrophobic|and|unpleasant|.\n(|Villeneuve|)|seems|to|realize|intuitively|that|even|morality|is|reduced|to|an|option|by|the|ultimate|mysteries|of|life|and|death|.\nThe|result|is|mesmerizing|--|filled|with|menace|and|squalor|.\nFisher|has|bared|his|soul|and|confronted|his|own|shortcomings|here|in|a|way|...|that|feels|very|human|and|very|true|to|life|.\nIt|'s|fun|,|but|the|code-talk|will|fly|right|over|everyone|'s|head\nBourne|,|Jason|Bourne|.\nHe|can|scale|a|building|like|a|super|hero|,|he|can|out-stealth|any|agent|,|he|'ll|get|the|girl|.\nHe|'s|Super|Spy|!\nWhat|makes|the|movie|a|comedy|is|the|way|it|avoids|the|more|serious|emotions|involved|.\nThis|cuddly|sequel|to|the|1999|hit|is|a|little|more|visually|polished|,|a|little|funnier|,|and|a|little|more|madcap|.\nThe|pleasures|of|Super|Troopers|may|be|fleeting|,|but|they|'ll|register|strongly|with|anybody|who|still|retains|a|soft|spot|for|precollegiate|humor|.\nThe|film|is|exhilarating|to|watch|because|Sandler|,|liberated|from|the|constraints|of|formula|,|reveals|unexpected|depths|as|an|actor|.\nA|distant|,|even|sterile|,|yet|compulsively|watchable|look|at|the|sordid|life|of|Hogan|'s|Heroes|star|Bob|Crane|.\nThe|film|delivers|not|just|the|full|assault|of|Reno|'s|immense|wit|and|insight|,|but|a|time|travel|back|to|what|it|felt|like|during|those|unforgettably|uncertain|days|.\nWhat|might|have|been|a|predictably|heartwarming|tale|is|suffused|with|complexity|.\nSound|the|trumpets|:|For|the|first|time|since|Desperately|Seeking|Susan|,|Madonna|does|n't|suck|as|an|actress|.\nAlthough|very|much|like|the|first|movie|based|on|J.K.|Rowling|'s|phenomenal|fantasy|best|sellers|,|this|second|go-round|possesses|a|quite|pleasing|,|headlong|thrust|and|a|likably|delinquent|attitude|.\n(|``|Take|Care|of|My|Cat|''|)|is|an|honestly|nice|little|film|that|takes|us|on|an|examination|of|young|adult|life|in|urban|South|Korea|through|the|hearts|and|minds|of|the|five|principals|.\nAs|the|story|moves|inexorably|through|its|seven|day|timeframe|,|the|picture|becomes|increasingly|mesmerizing|.\nMaguire|is|a|surprisingly|effective|Peter\\/Spider-Man|.\nNot|a|cozy|or|ingratiating|work|,|but|it|'s|challenging|,|sometimes|clever|,|and|always|interesting|,|and|those|are|reasons|enough|to|see|it|.\nThe|film|runs|on|equal|parts|of|innocence|and|wisdom|--|wisdom|that|comes|with|experience|.\nIt|has|fun|being|grown|up|.\nLike|old|myths|and|wonder|tales|spun|afresh|.\nRarely|do|films|come|along|that|are|as|intelligent|,|exuberant|,|and|moving|as|Monsoon|Wedding|.\nOne|scarcely|needs|the|subtitles|to|enjoy|this|colorful|action|farce|.\nQuite|funny|for|the|type|of|movie|it|is|...\nIt|'s|often|infuriatingly|glib|and|posturing|,|and|yet|it|has|been|made|with|great|evident|care|and|manages|to|deliver|up|the|man|in|a|way|to|arouse|further|curiosity|in|even|the|most|unknowing|viewer|.\nOne|of|(|Herzog|'s|)|least|inspired|works|.\nThis|boisterous|comedy|serves|up|a|cruel|reminder|of|the|fate|of|hundreds|of|thousands|of|Chinese|,|one|which|can|only|qualify|as|a|terrible|tragedy|.\nElling|really|is|about|a|couple|of|crazy|guys|,|and|it|'s|therapeutic|to|laugh|along|with|them|.\nAn|irresistible|combination|of|a|rousing|good|story|set|on|a|truly|grand|scale|.\nThere|'s|no|denying|the|physically|spectacular|qualities|of|the|film|...|or|the|emotional|integrity|of|the|performances|.\nFew|films|this|year|have|been|as|resolute|in|their|emotional|nakedness|.\nExquisitely|acted|and|masterfully|if|preciously|interwoven|...|(|the|film|)|addresses|in|a|fascinating|,|intelligent|manner|the|intermingling|of|race|,|politics|and|local|commerce|.\nStevenson|'s|performance|is|at|once|clueless|and|fiercely|committed|,|a|volatile|combination|.\nThis|is|a|very|fine|movie|--|go|see|it|.\nAs|shaky|as|the|plot|is|,|Kaufman|'s|script|is|still|memorable|for|some|great|one-liners|.\nDespite|its|flaws|,|Secretary|stays|in|your|head|and|makes|you|question|your|own|firmly|held|positions|.\nOne|of|those|rare|,|exhilarating|cinematic|delights|that|gets|even|better|in|hindsight|,|as|you|mull|over|its|every|nuance|in|your|mind|.\nNot|everything|works|,|but|the|average|is|higher|than|in|Mary|and|most|other|recent|comedies|.\nA|byzantine|melodrama|that|stimulates|the|higher|brain|functions|as|well|as|the|libido|.\nA|sensitive|and|expertly|acted|crowd-pleaser|that|is|n't|above|a|little|broad|comedy|and|a|few|unabashedly|sentimental|tears|.\nThe|film|'s|sharp|,|often|mischievous|sense|of|humor|will|catch|some|off|guard|...\nDoes|what|a|fine|documentary|does|best|:|It|extends|a|warm|invitation|into|an|unfamiliar|world|,|then|illuminates|it|fully|and|allows|the|larger|implications|of|the|journey|to|sink|in|unobtrusively|.\nAlmost|every|scene|in|this|film|is|a|gem|that|could|stand|alone|,|a|perfectly|realized|observation|of|mood|,|behavior|and|intent|.\nA|psychologically|rich|and|suspenseful|moral|thriller|with|a|stellar|performance|by|Al|Pacino|.\nYou|wo|n't|believe|much|of|it|,|but|you|will|laugh|at|the|audacity|,|at|the|who|'s|who|casting|and|the|sheer|insanity|of|it|all|.\nThis|version|'s|no|classic|like|its|predecessor|,|but|its|pleasures|are|still|plentiful|.\nThe|Bourne|Identity|is|what|summer|screen|escapism|used|to|be|in|the|decades|when|it|was|geared|more|to|grownups|.\nProvide|(|s|)|nail-biting|suspense|and|credible|characters|without|relying|on|technology-of-the-moment|technique|or|pretentious|dialogue|.\nIf|it|tried|to|do|anything|more|,|it|would|fail|and|perhaps|explode|,|but|at|this|level|of|manic|whimsy|,|it|is|just|about|right|.\nToo|sincere|to|exploit|its|subjects|and|too|honest|to|manipulate|its|audience|.\nThe|saturation|bombing|of|Reggio|'s|images|and|Glass|'|evocative|music|...|ultimately|leaves|viewers|with|the|task|of|divining|meaning|.\nFor|all|its|serious|sense|of|purpose|...|(|it|)|finds|a|way|to|lay|bare|the|tragedies|of|its|setting|with|a|good|deal|of|warmth|and|humor|.\nA|depressing|confirmation|of|everything|those|of|us|who|do|n't|object|to|the|description|``|unelected|''|have|suspected|all|along|:|George|W.|Bush|is|an|incurious|,|uncharismatic|,|overgrown|frat|boy|with|a|mean|streak|a|mile|wide|.\nThis|road|movie|gives|you|emotional|whiplash|,|and|you|'ll|be|glad|you|went|along|for|the|ride|.\nSure|,|it|'s|more|of|the|same|,|but|as|the|film|proves|,|that|'s|not|always|a|bad|thing|.\nA|lighthearted|,|feel-good|film|that|embraces|the|time-honored|truth|that|the|most|powerful|thing|in|life|is|love|.\nA|bowel-curdling|,|heart-stopping|recipe|for|terror|.\nDaughter|from|Danang|is|a|film|that|should|be|seen|by|all|,|especially|those|who|are|n't|aware|of|,|or|have|forgotten|about|the|unmentioned|victims|of|war|.\nZhang|Yimou|delivers|warm|,|genuine|characters|who|lie|not|through|dishonesty|,|but|because|they|genuinely|believe|it|'s|the|only|way|to|bring|happiness|to|their|loved|ones|.\n...|breathes|surprising|new|life|into|the|familiar|by|amalgamating|genres|and|adding|true|human|complexity|to|its|not-so-stock|characters|.|'\n...|both|hokey|and|super-cool|,|and|definitely|not|in|a|hurry|,|so|sit|back|,|relax|and|have|a|few|laughs|while|the|little|ones|get|a|fuzzy|treat|.|'\nA|pleasant|romantic|comedy|.\nIt|'s|a|Count|for|our|times|.\nGreengrass|has|delivered|an|undoubted|stylistic|tour-de-force|,|and|has|managed|elements|such|as|sound|and|cinematography|with|skill\nSmith|'s|point|is|simple|and|obvious|--|people|'s|homes|are|extensions|of|themselves|,|and|particularly|eccentric|people|have|particularly|eccentric|living|spaces|--|but|his|subjects|are|charmers|.\nA|romantic|comedy|,|yes|,|but|one|with|characters|who|think|and|talk|about|their|goals|,|and|are|working|on|hard|decisions|.\nVividly|conveys|both|the|pitfalls|and|the|pleasures|of|over-the-top|love|.\n...|a|weak|,|manipulative|,|pencil-thin|story|that|is|miraculously|able|to|entertain|anyway|.\nA|pro-fat|farce|that|overcomes|much|of|its|excessive|moral|baggage|thanks|to|two|appealing|lead|performances|.\nFor|the|first|two-thirds|of|this|sparklingly|inventive|and|artful|,|always|fast|and|furious|tale|,|kids|will|go|happily|along|for|the|ride|.\nMajidi|'s|poetic|love|story|is|a|ravishing|consciousness-raiser|,|if|a|bit|draggy|at|times|.\nThe|smartest|bonehead|comedy|of|the|summer|.\nEffectively|feeds|our|senses|with|the|chilling|sights|and|sounds|from|within|the|camp|to|create|a|completely|numbing|experience|.\nI|love|the|way|that|it|took|chances|and|really|asks|you|to|take|these|great|leaps|of|faith|and|pays|off|.\nIn|his|debut|as|a|film|director|,|Denzel|Washington|delivers|a|lean|and|engaging|work|.\nOnly|two|words|will|tell|you|what|you|know|when|deciding|to|see|it|:|Anthony|.\nHopkins|.\nThe|movie|'s|quiet|affirmation|of|neighborhood|values|gives|it|an|honest|,|lived-in|glow|.\nA|teasing|drama|whose|relentless|good-deed\\/bad-deed|reversals|are|just|interesting|enough|to|make|a|sinner|like|me|pray|for|an|even|more|interesting|,|less|symmetrical|,|less|obviously|cross-shaped|creation|.\nHayek|is|stunning|as|Frida|and|...|a|star-making|project|.\nIt|'s|both|a|necessary|political|work|and|a|fascinating|documentary|...\nHilarious|,|acidic|Brit|comedy|.\nAs|a|revenge|thriller|,|the|movie|is|serviceable|,|but|it|does|n't|really|deliver|the|delicious|guilty|pleasure|of|the|better|film|versions|.\nAn|ironic|speculation|on|democracy|in|a|culture|unaccustomed|to|it|.\nIt|'s|not|life-affirming|--|its|vulgar|and|mean|,|but|I|liked|it|.\nSeveral|degrees|shy|of|the|gross-out|contests|one|expects|from|current|teen|fare|.\nThe|inherent|strength|of|the|material|as|well|as|the|integrity|of|the|filmmakers|gives|this|coming-of-age|story|restraint|as|well|as|warmth|.\nLed|by|Griffin|'s|smartly|nuanced|performance|and|enthusiasm|,|the|cast|has|a|lot|of|fun|with|the|material|.\nTuck|Everlasting|achieves|a|delicate|balance|of|romantic|innocence|and|philosophical|depth|.\nA|gentle|blend|of|present|day|testimonials|,|surviving|footage|of|Burstein|and|his|family|performing|,|historical|archives|,|and|telling|stills|.\nA|Generation|X|artifact|,|capturing|a|brief|era|of|insanity|in|the|sports|arena|that|surely|can|not|last|.\nPossession|is|Elizabeth|Barrett|Browning|meets|Nancy|Drew|,|and|it|'s|directed|by|...|Neil|LaBute|.\nHmm|.\nAn|uneven|but|intriguing|drama|that|is|part|homage|and|part|remake|of|the|Italian|masterpiece|.\nWindtalkers|celebrates|the|human|spirit|and|packs|an|emotional|wallop|.\nHaving|never|been|a|huge|fan|of|Dickens|'|800-page|novel|,|it|surprised|me|how|much|pleasure|I|had|watching|McGrath|'s|version|.\nThe|best|thing|the|film|does|is|to|show|us|not|only|what|that|mind|looks|like|,|but|how|the|creative|process|itself|operates|.\nFor|all|its|failed|connections|,|Divine|Secrets|of|the|Ya-Ya|Sisterhood|is|nurturing|,|in|a|gauzy|,|dithering|way|.\nThis|is|pretty|dicey|material|.\nBut|some|unexpected|zigs|and|zags|help|.\nThe|filmmakers|skillfully|evoke|the|sense|of|menace|that|nature|holds|for|many|urban|dwellers|.\nThe|laser-projected|paintings|provide|a|spell-casting|beauty|,|while|Russell|and|Dreyfus|are|a|romantic|pairing|of|hearts|,|preciously|exposed|as|history|corners|them|.\nYou|do|n't|have|to|be|an|especially|tough|grader|to|give|a|charitable|B-minus|to|The|Emperor|'s|Club|.\nThis|romantic|thriller|is|steeped|in|the|atmosphere|of|wartime|England|,|and|ably|captures|the|speech|patterns|,|moral|codes|and|ideals|of|the|1940s|.\nDivine|Secrets|of|the|Ya-Ya|Sisterhood|may|not|be|exactly|divine|,|but|it|'s|definitely|--|defiantly|--|ya|ya|,|what|with|all|of|those|terrific|songs|and|spirited|performances|.\nViewed|on|its|own|terms|,|Treasure|Planet|is|better-than-average|family|entertainment|,|but|true|fans|of|the|Stevenson|'s|novel|will|likely|prefer|Disney|'s|more|faithful|1950|live-action|swashbuckling|classic|.\nA|journey|through|memory|,|a|celebration|of|living|,|and|a|sobering|rumination|on|fatality|,|classism|,|and|ignorance|.\nResourceful|and|ingenious|entertainment|.\n``|Antwone|Fisher|''|is|an|earnest|,|by-the-numbers|effort|by|Washington|.\nIt|wo|n't|rock|any|boats|but|is|solid|meat-and-potatoes|filmmaking|.\nA|historical|epic|with|the|courage|of|its|convictions|about|both|scope|and|detail|.\nWe|need|(|Moore|'s|)|noisy|,|cocky|energy|,|his|passion|and|class|consciousness|;|we|need|his|shticks|,|we|need|his|stones|.\nAlthough|the|editing|might|have|been|tighter|,|Hush|!\nsympathetically|captures|the|often|futile|lifestyle|of|young|people|in|modern|Japan|.\n(|Gai|)|comes|closer|to|any|actress|I|can|remember|to|personifying|independence|in|its|purest|and|,|yes|,|most|intimidating|form|.\nThese|are|lives|worth|watching|,|paths|worth|following|.\nIt|'s|rather|like|a|Lifetime|special|--|pleasant|,|sweet|and|forgettable|.\nA|moody|horror\\/thriller|elevated|by|deft|staging|and|the|director|'s|well-known|narrative|gamesmanship|.\nAs|a|singular|character|study|,|it|'s|perfect|.\nIt|'s|also|the|year|'s|sweetest|movie|.\nA|graceful|,|contemplative|film|that|gradually|and|artfully|draws|us|into|a|world|where|the|personal|and|the|political|get|fatally|intertwined|.\nWhile|not|as|aggressively|impressive|as|its|American|counterpart|,|``|In|the|Bedroom|,|''|Moretti|'s|film|makes|its|own|,|quieter|observations\nThe|experience|of|watching|blobby|old-school|CGI|animation|in|this|superlarge|format|is|just|surreal|enough|to|be|diverting|.\nTime|Changer|may|not|be|the|most|memorable|cinema|session|but|its|profound|self-evaluation|message|about|our|fragile|existence|and|the|absence|of|spiritual|guidance|should|at|least|invade|an|abundance|of|mindsets\n``|The|Emperor|'s|New|Clothes|''|begins|with|a|simple|plan|...|Well|,|at|least|that|'s|the|plan|.\nHaynes|has|so|fanatically|fetishized|every|bizarre|old-movie|idiosyncrasy|with|such|monastic|devotion|you|'re|not|sure|if|you|should|applaud|or|look|into|having|him|committed|.\n(|Director|Peter|)|Jackson|and|his|crew|have|so|steeped|themselves|in|the|majesty|of|Tolkien|'s|writing|that|every|frame|produces|new|joys|,|whether|you|'re|a|fan|of|the|books|or|not|.\nWhile|the|glass|slipper|does|n't|quite|fit|,|Pumpkin|is|definitely|a|unique|modern|fairytale|.\nThe|drama|is|played|out|with|such|aching|beauty|and|truth|that|it|brings|tears|to|your|eyes|.\nAn|exciting|and|involving|rock|music|doc|,|a|smart|and|satisfying|look|inside|that|tumultuous|world|.\nAn|offbeat|,|sometimes|gross|and|surprisingly|appealing|animated|film|about|the|true|meaning|of|the|holidays|.\nThis|version|incarnates|the|prophetic|book|in|a|way|even|its|exacting|author|might|admire|.\nSometimes|,|nothing|satisfies|like|old-fashioned|swashbuckling|.\nAnd|in|this|regard|,|On|Guard|delivers|.\n...|ambition|is|in|short|supply|in|the|cinema|,|and|Egoyan|tackles|his|themes|and|explores|his|characters|'|crises|with|seriousness|and|compassion|.\nAn|impossible|romance|,|but|we|root|for|the|patronized|Iranian|lad|.\nLike|Dickens|with|his|passages|,|McGrath|crafts|quite|moving|scenes|throughout|his|resolutely|dramatic|variation|on|the|novel|.\nThere|'s|a|disreputable|air|about|the|whole|thing|,|and|that|'s|what|makes|it|irresistible|.\nan|exceedingly|clever|piece|of|cinema|.\nanother|great|`|what|you|do|n't|see|'|is|much|more|terrifying|than|what|you|do|see|thriller|,|coupled|with|some|arresting|effects|,|incandescent|tones|and|stupendous|performances\nA|carefully|structured|scream|of|consciousness|that|is|tortured|and|unsettling|--|but|unquestionably|alive|.\nA|quietly|reflective|and|melancholy|New|Zealand|film|about|an|eventful|summer|in|a|13-year-old|girl|'s|life|.\nCute|,|funny|,|heartwarming|digitally|animated|feature|film|with|plenty|of|slapstick|humor|for|the|kids|,|lots|of|in-jokes|for|the|adults|and|heart|enough|for|everyone|.\nvery|solid|,|very|watchable|first|feature|for|director|Peter|Sheridan\na|budget|affair|that|exposes|the|generally|sad|existence|of|the|Bedouins|while|providing|a|precious|twinkle|of|insight|into|their|lives|.\nIt|suggests|the|wide-ranging|effects|of|media|manipulation|,|from|the|kind|of|reporting|that|is|done|by|the|supposedly|liberal|media|...|to|the|intimate|and|ultimately|tragic|heartache|of|maverick|individuals|like|Hatfield|and|Hicks|.\nWorkmanlike|,|maybe|,|but|still|a|film|with|all|the|elements|that|made|the|other|three|great|,|scary|times|at|the|movies|.\nA|pleasant|enough|comedy|that|should|have|found|a|summer|place|.\nBranagh|,|in|his|most|forceful|non-Shakespeare|screen|performance|,|grounds|even|the|softest|moments|in|the|angry|revolt|of|his|wit|.\nThough|the|violence|is|far|less|sadistic|than|usual|,|the|film|is|typical|Miike|:|fast|,|furious|and|full|of|off-the-cuff|imaginative|flourishes|.\nCompelling|as|it|is|exotic|,|Fast|Runner|has|a|plot|that|rivals|Shakespeare|for|intrigue|,|treachery|and|murder|.\nWhat|it|lacks|in|originality|it|makes|up|for|in|intelligence|and|B-grade|stylishness|.\nThe|warm|presence|of|Zhao|Benshan|makes|the|preposterous|lying|hero|into|something|more|than|he|reasonably|should|be|.\nThis|is|as|powerful|a|set|of|evidence|as|you|'ll|ever|find|of|why|art|matters|,|and|how|it|can|resonate|far|beyond|museum|walls|and|through|to|the|most|painfully|marginal|lives|.\nDirector|Rob|Marshall|went|out|gunning|to|make|a|great|one|.\nSkip|work|to|see|it|at|the|first|opportunity|.\nBow|'s|best|moments|are|when|he|'s|getting|busy|on|the|basketball|court|because|that|'s|when|he|really|scores|.\nOffers|enough|playful|fun|to|entertain|the|preschool|set|while|embracing|a|wholesome|attitude|.\nIn|the|end|,|Punch-Drunk|Love|is|one|of|those|films|that|I|wanted|to|like|much|more|than|I|actually|did|.\nSometimes|,|that|'s|enough|.\nAn|intimate|,|good-humored|ethnic|comedy|like|numerous|others|but|cuts|deeper|than|expected|.\nIce|Cube|holds|the|film|together|with|an|engaging|and|warm|performance|...\nBoth|deeply|weird|and|charmingly|dear|.\nAs|blunt|as|it|is|in|depicting|child|abuse|,|El|Bola|is|a|movie|steeped|in|an|ambiguity|that|lends|its|conflicts|a|symbolic|resonance|.\nDespite|a|story|predictable|enough|to|make|The|Sound|of|Music|play|like|a|nail-biting|thriller|,|its|heart|is|so|much|in|the|right|place|it|is|difficult|to|get|really|peeved|at|it|.\nAn|incredibly|low-rent|Danish|film|,|it|brings|a|group|of|people|together|in|a|sweet|and|charming|way|,|if|a|little|convenient\nIt|'s|the|cinematic|equivalent|of|a|good|page-turner|,|and|even|if|it|'s|nonsense|,|its|claws|dig|surprisingly|deep|.\nDirector|Nalin|Pan|does|n't|do|much|to|weigh|any|arguments|one|way|or|the|other|.\nHe|simply|presents|his|point|of|view|that|Ayurveda|works|.\nNo|question|.\nWhat|``|Empire|''|lacks|in|depth|it|makes|up|for|with|its|heart|.\nClaude|Miller|airs|out|a|tight|plot|with|an|easy|pace|and|a|focus|on|character|drama|over|crime-film|complications|.\nWhat|Full|Frontal|lacks|in|thematic|coherence|it|largely|makes|up|for|as|loosey-goosey|,|experimental|entertainment|.\nStill|,|I|'m|not|quite|sure|what|the|point|is|...\nRich|in|detail|,|gorgeously|shot|and|beautifully|acted|,|Les|Destinees|is|,|in|its|quiet|,|epic|way|,|daring|,|inventive|and|refreshingly|unusual|.\n(|A|)|Hollywood|sheen|bedevils|the|film|from|the|very|beginning|...|(|but|)|Lohman|'s|moist|,|deeply|emotional|eyes|shine|through|this|bogus|veneer|...\nDo|we|really|need|a|77-minute|film|to|tell|us|exactly|why|a|romantic|relationship|between|a|15-year-old|boy|and|a|40-year-old|woman|does|n't|work|?\nFord|deserves|to|be|remembered|at|Oscar|time|for|crafting|this|wonderful|portrait|of|a|conflicted|soldier|.\nThe|film|'s|45-minute|running|time|stops|shy|of|overkill|,|though|viewers|may|be|more|exhausted|than|the|athletes|onscreen|.\nDo|n't|expect|any|surprises|in|this|checklist|of|teamwork|cliches|...\nAs|adapted|by|Kevin|Molony|from|Simon|Leys|'|novel|``|The|Death|of|Napoleon|''|and|directed|by|Alan|Taylor|,|Napoleon|'s|journey|is|interesting|but|his|Parisian|rebirth|is|stillborn\nThe|movie|addresses|a|hungry|need|for|PG-rated|,|nonthreatening|family|movies|,|but|it|does|n't|go|too|much|further|.\nThis|warm|and|gentle|romantic|comedy|has|enough|interesting|characters|to|fill|several|movies|,|and|its|ample|charms|should|win|over|the|most|hard-hearted|cynics|.\nA|yarn|that|respects|the|Marvel|version|without|becoming|ensnared|by|it|.\nThis|is|a|happy|throwback|to|the|time|when|cartoons|were|cinema|'s|most|idiosyncratic|form|instead|of|one|of|its|most|predictable|.\nComplex|,|affecting|and|uniquely|Almodóvar|,|the|film|evokes|strong|emotions|and|pushes|viewers|to|question|their|deepest|notions|of|moral|right|and|wrong|.\nGood|ol'|urban|legend|stuff|.\nNot|so|much|a|movie|as|a|picture|book|for|the|big|screen|.\nThis|is|n't|my|favorite|in|the|series|,|still|I|enjoyed|it|enough|to|recommend|.\nIt|'s|one|of|the|most|honest|films|ever|made|about|Hollywood|.\nIt|is|a|film|that|will|have|people|walking|out|halfway|through|,|will|encourage|others|to|stand|up|and|applaud|,|and|will|,|undoubtedly|,|leave|both|camps|engaged|in|a|ferocious|debate|for|years|to|come|.\nOn|its|own|cinematic|terms|,|it|successfully|showcases|the|passions|of|both|the|director|and|novelist|Byatt|.\nLight|,|silly|,|photographed|with|colour|and|depth|,|and|rather|a|good|time|.\nPray|'s|film|works|well|and|will|appeal|even|to|those|who|are|n't|too|familiar|with|turntablism|.\nGood|movie|.\nGood|actress|.\nBut|if|you|expect|light|romantic|comedy|,|good|gosh|,|will|you|be|shocked|.\nIt|has|the|courage|to|wonder|about|big|questions|with|sincerity|and|devotion|.\nIt|risks|seeming|slow|and|pretentious|,|because|it|thinks|the|gamble|is|worth|the|promise|.\nWith|youthful|high|spirits|,|Tautou|remains|captivating|throughout|Michele|'s|religious|and|romantic|quests|,|and|she|is|backed|by|a|likable|cast|.\nIt|'s|an|example|of|sophisticated|,|challenging|filmmaking|that|stands|,|despite|its|noticeable|lack|of|emotional|heft|,|in|welcome|contrast|to|the|indulgent|dead-end|experimentation|of|the|director|'s|previous|Full|Frontal|.\nA|very|funny|look|at|how|another|culture|handles|the|process|of|courting|and|marriage|.\nBut|tongue-in-cheek|preposterousness|has|always|been|part|of|For|the|most|part|Wilde|'s|droll|whimsy|helps|``|Being|Earnest|''|overcome|its|weaknesses|and|Parker|'s|creative|interference|...\nMuch|of|the|movie|'s|charm|lies|in|the|utter|cuteness|of|Stuart|and|Margolo|.\nTheir|computer-animated|faces|are|very|expressive|.\nThe|path|Ice|Age|follows|most|closely|,|though|,|is|the|one|established|by|Warner|Bros.|giant|Chuck|Jones|,|who|died|a|matter|of|weeks|before|the|movie|'s|release|.\nAnchored|by|a|terrific|performance|by|Abbass|,|Satin|Rouge|shows|that|the|idea|of|women|'s|self-actualization|knows|few|continental|divides|.\nAwkward|but|sincere|and|,|ultimately|,|it|wins|you|over|.\nSmith|profiles|five|extraordinary|American|homes|,|and|because|the|owners|seem|fully|aware|of|the|uses|and|abuses|of|fame|,|it|'s|a|pleasure|to|enjoy|their|eccentricities|.\nThough|the|plot|is|predictable|,|the|movie|never|feels|formulaic|,|because|the|attention|is|on|the|nuances|of|the|emotional|development|of|the|delicate|characters|.\nSam|Jones|became|a|very|lucky|filmmaker|the|day|Wilco|got|dropped|from|their|record|label|,|proving|that|one|man|'s|ruin|may|be|another|'s|fortune|.\nGoyer|'s|screenplay|and|direction|are|thankfully|understated|,|and|he|has|drawn|excellent|performances|from|his|cast|.\nBinoche|and|Magimel|are|perfect|in|these|roles|.\nWhen|your|leading|ladies|are|a|couple|of|screen-eating|dominatrixes|like|Goldie|Hawn|and|Susan|Sarandon|at|their|raunchy|best|,|even|hokum|goes|down|easily|.\nWhile|Undercover|Brother|is|definitely|one|for|the|masses|,|it|'s|also|full|of|sharp|,|smart|satire|.\nGets|under|the|skin|of|a|man|who|has|just|lost|his|wife|.\nNo|wonder|they|'re|talking|about|``|Talk|to|Her|.|''\nIt|'s|astonishing|.\nFor|its|seriousness|,|high|literary|aspirations|and|stunning|acting|,|the|film|can|only|be|applauded|.\nLook|,|this|is|a|terrific|flick|replete|with|dazzling|camera-work|,|dancing|and|music|.\nIt|is|inspirational|in|characterizing|how|people|from|such|diverse|cultures|share|the|same|human|and|spiritual|needs|.\nIt|'s|fairly|self-aware|in|its|dumbness|.\nA|triumph|,|relentless|and|beautiful|in|its|downbeat|darkness|.\nTailored|to|entertain|!\nA|compelling|,|moving|film|that|respects|its|audience|and|its|source|material|.\nhas|a|plot|full|of|twists|upon|knots|...|and|a|nonstop|parade|of|mock-Tarantino|scuzbag|types|that|starts|out|clever|but|veers|into|overkill|.\nA|work|of|astonishing|delicacy|and|force|.\nThe|film|benefits|greatly|from|a|less|manic|tone|than|its|predecessor|,|as|Cho|appears|to|have|settled|comfortably|into|her|skin|.\nFor|the|first|time|in|several|years|,|Mr.|Allen|has|surpassed|himself|with|the|magic|he|'s|spun|with|the|Hollywood|empress|of|Ms.|Leoni|'s|Ellie|.\nIs|n't|quite|the|equal|of|Woo|'s|best|earlier|work|,|but|it|'s|easily|his|finest|American|film|...|comes|close|to|recapturing|the|brilliance|of|his|Hong|Kong|films|.\nThe|film|hinges|on|its|performances|,|and|both|leads|are|up|to|the|task|.\nAn|intelligent|,|earnest|,|intimate|film|that|drops|the|ball|only|when|it|pauses|for|blunt|exposition|to|make|sure|you|'re|getting|its|metaphysical|point|.\nA|modest|pleasure|that|accomplishes|its|goals|with|ease|and|confidence|.\nA|breezy|,|diverting|,|conventional|,|well-acted|tale|of|two|men|locked|in|an|ongoing|game|of|cat-and-cat|.\nWhat|Jackson|has|accomplished|here|is|amazing|on|a|technical|level|.\nAs|teen|movies|go|,|``|Orange|County|''|is|a|refreshing|change\nMakes|S&M|seem|very|romantic|,|and|Maggie|Gyllenhaal|is|a|delight|.\nA|deliciously|mordant|,|bitter|black|comedy|.\nAlthough|Life|or|Something|Like|It|is|very|much|in|the|mold|of|feel-good|movies|,|the|cast|and|director|Stephen|Herek|'s|polished|direction|pour|delightfully|piquant|wine|from|aged|bottles|.\nIt|is|risky|,|intelligent|,|romantic|and|rapturous|from|start|to|finish|.\nThe|movie|sticks|much|closer|to|Hornby|'s|drop-dead|confessional|tone|than|the|film|version|of|High|Fidelity|did|.\nA|pleasant|ramble|through|the|sort|of|idoosyncratic|terrain|that|Errol|Morris|has|often|dealt|with|...|it|does|possess|a|loose|,|lackadaisical|charm|.\n...|spiced|with|humor|(|'|I|speak|fluent|flatula|,|'|advises|Denlopp|after|a|rather|,|er|,|bubbly|exchange|with|an|alien|deckhand|)|and|witty|updatings|(|Silver|'s|parrot|has|been|replaced|with|Morph|,|a|cute|alien|creature|who|mimics|everyone|and|everything|around|)\nThis|is|a|raw|and|disturbing|tale|that|took|five|years|to|make|,|and|the|trio|'s|absorbing|narrative|is|a|heart-wrenching|showcase|indeed|.\nA|beautiful|and|haunting|examination|of|the|stories|we|tell|ourselves|to|make|sense|of|the|mundane|horrors|of|the|world|.\nAside|from|being|the|funniest|movie|of|the|year|,|Simone|,|Andrew|Niccol|'s|brilliant|anti-Hollywood|satire|,|has|a|wickedly|eccentric|enchantment|to|it|.\nWatstein|handily|directs|and|edits|around|his|screenplay|'s|sappier|elements|...|and|sustains|Off|the|Hook|'s|buildup|with|remarkable|assuredness|for|a|first-timer|.\nJust|another|fish-out-of-water|story|that|barely|stays|afloat|.\nThere|'s|an|energy|to|Y|Tu|Mamá|También|.\nMuch|of|it|comes|from|the|brave|,|uninhibited|performances|by|its|lead|actors|.\nIt|'s|the|kind|of|pigeonhole-resisting|romp|that|Hollywood|too|rarely|provides|.\nReinforces|the|often|forgotten|fact|of|the|world|'s|remarkably|varying|human|population|and|mindset|,|and|its|capacity|to|heal|using|creative|,|natural|and|ancient|antidotes|.\nYou|can|feel|the|heat|that|ignites|this|gripping|tale|,|and|the|humor|and|humanity|that|root|it|in|feeling|.\nIt|'s|hard|not|to|be|seduced|by|(|Witherspoon|'s|)|charisma|,|even|in|this|run-of-the-mill|vehicle|,|because|this|girl|knows|how|to|drive|it|to|the|max|.\nA|movie|for|11-year-old|boys|with|sports|dreams|of|their|own|and|the|preteen|girls|who|worship|Lil|'|Bow|Wow|.\nA|refreshingly|authentic|coming-of-age|tale|.\nIf|you|'re|not|into|the|Pokemon|franchise|,|this|fourth|animated|movie|in|four|years|wo|n't|convert|you|--|or|even|keep|your|eyes|open|.\nBut|fans|should|have|fun|meeting|a|brand-new|Pokemon|called|Celebi|.\nFrom|the|big|giant|titles|of|the|opening|credits|to|Elmer|Bernstein|'s|perfectly|melodic|score|,|Haynes|gets|just|about|everything|right|.\nWhether|seen|on|a|10-inch|television|screen|or|at|your|local|multiplex|,|the|edge-of-your-seat|,|educational|antics|of|Steve|Irwin|are|priceless|entertainment|.\nHas|a|shambling|charm|...|a|cheerfully|inconsequential|diversion|.\nFerrara|directs|the|entire|film|with|the|kind|of|detachment|that|makes|any|given|frame|look|like|a|family|'s|custom-made|Christmas|card|.\nThe|movie|has|lots|of|dancing|and|fabulous|music|.\nThere|are|slow|and|repetitive|parts|,|but|it|has|just|enough|spice|to|keep|it|interesting|.\nAn|incredibly|clever|and|superbly|paced|caper|filled|with|scams|within|scams|within|scams|.\nThere|'s|not|much|more|to|this|adaptation|of|the|Nick|Hornby|novel|than|charm|--|effortless|,|pleasurable|,|featherweight|charm|.\nAs|a|belated|nod|to|some|neglected|all-stars|,|Standing|in|the|Shadows|of|Motown|is|cultural|history|of|the|best|kind|:|informative|,|revealing|and|richly|entertaining|.\nEven|if|the|ride|'s|a|little|bumpy|,|with|a|final|lap|that|'s|all|too|suspiciously|smooth|,|you|gotta|give|director|Roger|Michell|,|best|known|for|the|superfluous|Notting|Hill|,|credit|for|trying|.\nNot|as|distinctive|or|even|as|humorous|as|its|needs|to|be|to|stand|out|,|but|it|has|clearly|been|made|with|affection|and|care|.\nThis|is|Carion|'s|debut|feature|but|his|script|and|direction|hums|with|a|confidence|that|many|spend|entire|careers|trying|to|reach|.\nAn|intelligent|,|moving|and|invigorating|film|.\n...|one|of|the|most|ingenious|and|entertaining|thrillers|I|'ve|seen|in|quite|a|long|time|.\nA|clever|blend|of|fact|and|fiction|.\nA|vivid|cinematic|portrait|.\nHilarious|,|touching|and|wonderfully|dyspeptic|.\nTheirs|is|a|simple|and|heart-warming|story|,|full|of|mirth|that|should|charm|all|but|the|most|cynical|.\nThe|film|is|an|enjoyable|family|film|--|pretty|much|aimed|at|any|youngster|who|loves|horses|.\nA|frisky|and|fresh|romantic|comedy|exporing|sexual|politics|and|the|challenges|of|friendships|between|women|.\nIt|'s|a|good|film|--|not|a|classic|,|but|odd|,|entertaining|and|authentic|.\nFlavorful|and|romantic|,|you|could|call|this|How|Martha|Got|Her|Groove|Back|--|assuming|,|that|is|,|she|ever|had|one|to|begin|with|.\nHappily|for|Mr.|Chin|--|though|unhappily|for|his|subjects|--|the|invisible|hand|of|the|marketplace|wrote|a|script|that|no|human|screenwriter|could|have|hoped|to|match|.\nThurman|and|Lewis|are|hilarious|throughout|.\nthe|plot|is|so|amusingly|contrived|and|outlandish|in|its|coincidences|that|no|one|could|ever|mistake|it|for|anything|resembling|reality\nHits|one|out|of|the|park|for|the|`|they|do|n't|make|'em|like|that|anymore|'|department|.\nIt|dares|to|be|a|little|different|,|and|that|shading|is|what|makes|it|worthwhile|.\n(|Fessenden|)|is|much|more|into|ambiguity|and|creating|mood|than|he|is|for|on|screen|thrills\nThe|comic|performances|are|all|spot|on|,|especially|Lee|Ross|'s|turn|as|Ken|.\na|compelling|journey|...|and|``|His|Best|Friend|Remembers|''|is|up|there|with|the|finest|of|specials|.\nAt|nearly|three|hours|,|the|whole|of|Safe|Conduct|is|less|than|the|sum|of|its|parts|.\nThe|Hours|makes|you|examine|your|own|life|in|much|the|same|way|its|characters|do|,|and|the|experience|is|profound|.\nThe|Hours|is|what|movies|are|supposed|to|be|...\nA|bold|and|subversive|film|that|cuts|across|the|grain|of|what|is|popular|and|powerful|in|this|high-tech|age|,|speaking|its|truths|with|spellbinding|imagery|and|the|entrancing|music|of|Philip|Glass|.\nPretty|darn|good|,|despite|its|smarty-pants|aura|.\nSo|young|,|so|smart|,|such|talent|,|such|a|wise|\\*\\*\\*|.\nWoo|'s|fights|have|a|distinct|flair|.\nHis|warriors|collide|in|balletic|explosion|that|implies|an|underlying|order|throughout|the|chaos|.\nBarney|has|created|a|tour|de|force|that|is|weird|,|wacky|and|wonderful|.\nThe|ending|does|leave|you|unfulfilled|,|but|these|are|performances|to|enjoy|in|a|memorable|ensemble|piece|.\n...|an|agreeable|time-wasting|device|--|but|George|Pal|'s|low-tech|1960|version|still|rules|the|epochs|.\nIt|'s|a|brave|attempt|to|tap|into|the|heartbeat|of|the|world|,|a|salute|to|the|universal|language|of|rhythm|and|a|zippy|sampling|of|sounds|.\nOffers|an|unusual|opportunity|to|observe|the|inequities|in|the|death|penalty|,|not|just|the|inherent|immorality|but|also|the|haphazard|administration|of|it|and|public|misperception|of|how|the|whole|thing|works|.\nI|do|n't|think|I|'ve|been|as|entranced|and|appalled|by|an|Asian|film|since|Shinya|Tsukamoto|'s|Iron|Man|.\nIt|is|so|refreshing|to|see|Robin|Williams|turn|180|degrees|from|the|string|of|insultingly|innocuous|and|sappy|fiascoes|he|'s|been|making|for|the|last|several|years|.\nDirector|Benoit|Jacquot|,|making|his|first|opera-to-film|translation|with|Tosca|,|conveys|the|heaving|passion|of|Puccini|'s|famous|love-jealousy|-|murder-suicide|fandango|with|great|cinematic|innovation|.\nLilia|'s|transformation|from|strict|mother|to|sensual|siren|is|superficially|preposterous|,|but|Abbas|infuses|the|role|with|an|unimpeachable|core|of|emotional|truth|.\nFrida|'s|artistic|brilliance|is|undeniable|--|it|'s|among|the|most|breathtakingly|designed|films|I|'ve|ever|seen|.\nThe|perfect|film|for|those|who|like|sick|comedies|that|can|be|snide|.\n`|Charly|'|will|divide|its|audience|in|two|separate|groups|,|those|reaching|for|more|tissues|and|those|begging|for|mercy|...\nNervy|and|sensitive|,|it|taps|into|genuine|artistic|befuddlement|,|and|at|the|same|time|presents|a|scathing|indictment|of|what|drives|Hollywood|.\nA|marvellous|journey|from|childhood|idealism|to|adolescent|self-absorption|.\nThe|film|is|just|a|big|,|gorgeous|,|mind-blowing|,|breath-taking|mess|.\nSharp|,|lively|,|funny|and|ultimately|sobering|film|.\nThough|the|film|'s|scenario|is|certainly|not|earthshaking|,|this|depiction|of|fluctuating|female|sexuality|has|two|winning|lead|performances|and|charm|to|spare|.\nA|worthy|tribute|to|a|great|humanitarian|and|her|vibrant|`|co-stars|.|'\nA|recent|favourite|at|Sundance|,|this|white-trash|satire|will|inspire|the|affection|of|even|those|unlucky|people|who|never|owned|a|cassette|of|Def|Leppard|'s|Pyromania|.\nThe|recording|session|is|the|only|part|of|the|film|that|is|enlightening|--|and|how|appreciative|you|are|of|this|depends|on|your|level|of|fandom|.\nOccasionally|funny|and|consistently|odd|,|and|it|works|reasonably|well|as|a|star|vehicle|for|Zhao|.\nBright|seems|alternately|amused|and|disgusted|with|this|material|,|and|he|ca|n't|help|throwing|in|a|few|of|his|own|touches|.\nThe|3D|images|only|enhance|the|film|'s|otherworldly|quality|,|giving|it|a|strange|combo|of|you-are-there|closeness|with|the|disorienting|unreality|of|the|seemingly|broken-down|fourth|wall|of|the|movie|screen|.\nAndersson|creates|a|world|that|'s|at|once|surreal|and|disturbingly|familiar|;|absurd|,|yet|tremendously|sad|.\nIt|'s|predictable|,|but|it|jumps|through|the|expected|hoops|with|style|and|even|some|depth|.\nOften|hilarious|,|well-shot|and|,|importantly|,|entertaining|,|Hell|House|is|a|fascinating|document|of|an|event|that|has|to|be|seen|to|be|believed|.\nDe|Oliveira|creates|an|emotionally|rich|,|poetically|plump|and|visually|fulsome|,|but|never|showy|,|film|whose|bittersweet|themes|are|reinforced|and|brilliantly|personified|by|Michel|Piccoli|.\n...|an|inviting|piece|of|film|.\nThe|film|'s|real|appeal|wo|n't|be|to|Clooney|fans|or|adventure|buffs|,|but|to|moviegoers|who|enjoy|thinking|about|compelling|questions|with|no|easy|answers|.\nThe|fact|that|The|Rookie|is|a|nearly|impeccable|cinematic|experience|--|and|a|wonderful|all-ages|triumph|besides|--|is|a|miracle|akin|to|the|story|the|film|portrays|.\nA|deviant|topical|comedy|which|is|funny|from|start|to|finish|.\nA|startling|and|fresh|examination|of|how|the|bike|still|remains|an|ambiguous|icon|in|Chinese|society|.\nA|highly|intriguing|thriller|,|coupled|with|some|ingenious|plot|devices|and|some|lavishly|built|settings|.|.\nit|'s|a|worthwhile|tutorial|in|quantum|physics|and|slash-dash\nAs|Hugh|Grant|says|repeatedly|throughout|the|movie|,|`|Lovely|!\nBrilliant|!|'\nCho|'s|fearless|in|picking|apart|human|foibles|,|not|afraid|to|lay|her|life|bare|in|front|of|an|audience|.\nHer|delivery|and|timing|are|flawless|.\nWorks|because|,|for|the|most|part|,|it|avoids|the|stupid|cliches|and|formulaic|potholes|that|befall|its|brethren|.\nAt|its|best|,|The|Good|Girl|is|a|refreshingly|adult|take|on|adultery|...\nAn|amazing|and|incendiary|movie|that|dives|straight|into|the|rough|waters|of|contradiction|.\nAbout|nowhere|kids|who|appropriated|turfs|as|they|found|them|and|become|self-made|celebrity|athletes|--|a|low-down|version|of|the|American|dream|.\nOccasionally|,|in|the|course|of|reviewing|art-house|obscurities|and|slam-bam|action|flicks|,|a|jaded|critic|smacks|into|something|truly|new|.\nA|miniscule|little|bleep|on|the|film|radar|,|but|one|that|many|more|people|should|check|out\n``|13|Conversations|''|holds|its|goodwill|close|,|but|is|relatively|slow|to|come|to|the|point|.\nA|slick|,|well-oiled|machine|,|exquisitely|polished|and|upholstered|.\nDo|n't|plan|on|the|perfect|ending|,|but|Sweet|Home|Alabama|hits|the|mark|with|critics|who|escaped|from|a|small|town|life|.\nIt|has|a|subtle|way|of|getting|under|your|skin|and|sticking|with|you|long|after|it|'s|over|.\nThe|movie|stays|afloat|thanks|to|its|hallucinatory|production|design|.\nIt|helps|that|the|central|performers|are|experienced|actors|,|and|that|they|know|their|roles|so|well|.\nA|provocative|movie|about|loss|,|anger|,|greed|,|jealousy|,|sickness|and|love|.\nWorth|the|effort|to|watch|.\nThat|rara|avis|:|the|intelligent|romantic|comedy|with|actual|ideas|on|its|mind|.\nBoisterous|and|daft|documentary|.\nHawke|draws|out|the|best|from|his|large|cast|in|beautifully|articulated|portrayals|that|are|subtle|and|so|expressive|they|can|sustain|the|poetic|flights|in|Burdette|'s|dialogue|.\nA|work|of|the|utmost|subtlety|and|perception|,|it|marks|the|outstanding|feature|debut|of|writer-director|Eric|Byler|,|who|understands|the|power|of|the|implicit|and|the|virtues|of|simplicity|and|economy|.\nFull|Frontal|is|the|antidote|for|Soderbergh|fans|who|think|he|'s|gone|too|commercial|since|his|two|Oscar|nominated|films|in|2000\nIt|turns|out|to|be|a|cut|above|the|norm|,|thanks|to|some|clever|writing|and|sprightly|acting|.\nYou|might|not|want|to|hang|out|with|Samantha|,|but|you|'ll|probably|see|a|bit|of|yourself|in|her|unfinished|story|.\nA|work|of|intricate|elegance|,|literary|lyricism|and|profound|common|sense|.\nIt|'s|as|close|as|we|'ll|ever|come|to|looking|through|a|photographer|'s|viewfinder|as|he|works|.\nThoughtful|,|provocative|and|entertaining|.\nWitty|,|touching|and|well|paced|.\nLee|Jeong-Hyang|tells|it|so|lovingly|and|films|it|so|beautifully|that|I|could|n't|help|being|captivated|by|it|.\nYou|have|to|pay|attention|to|follow|all|the|stories|,|but|they|'re|each|interesting|.\nThe|movie|is|well|shot|and|very|tragic|,|and|one|to|ponder|after|the|credits|roll|.\nEnjoy|it|for|what|it|is|;|you|can|hate|yourself|later|.\nA|map|of|the|inner|rhythms|of|love|and|jealousy|and|sacrifice|drawn|with|a|master|'s|steady|stroke|.\nA|psychological|thriller|with|a|smart|script|and|an|obsessive-compulsive|'s|attention|to|detail|.\nGrant|gets|to|display|his|cadness|to|perfection|,|but|also|to|show|acting|range|that|may|surprise|some|who|thought|light-hearted|comedy|was|his|forte|.\nAt|times|funny|and|at|other|times|candidly|revealing|,|it|'s|an|intriguing|look|at|two|performers|who|put|themselves|out|there|because|they|love|what|they|do|.\nWestfeldt|and|Juergensen|exude|a|chemistry|and|comfort|level|that|'s|both|saucy|and|endearing|.\nHarsh|,|effective|documentary|on|life|in|the|Israeli-occupied|Palestinian|territories|.\nThe|film|is|all|a|little|Lit|Crit|101|,|but|it|'s|extremely|well|played|and|often|very|funny|.\nEarns|its|laughs|from|stock|redneck|`|types|'|and|from|the|many|,|many|moments|when|we|recognize|even|without|the|Elizabethan|prose|,|the|play|behind|the|thing|.\nA|real|story|about|real|people|living|their|lives|concerned|about|the|future|of|an|elderly|,|mentally|handicapped|family|member|.\nIt|'s|absolutely|spooky|how|Lillard|channels|the|Shagster|right|down|to|the|original|Casey|Kasem-furnished|voice|.\nA|dream|cast|of|solid|female|talent|who|build|a|seamless|ensemble|.\nThere|is|n't|a|weak|or|careless|performance|amongst|them|.\nSmart|science|fiction|for|grown-ups|,|with|only|a|few|false|steps|along|the|way|.\nIt|'s|a|refreshing|change|from|the|self-interest|and|paranoia|that|shape|most|American|representations|of|Castro|.\nOften|moving|and|explores|the|discomfort|inherent|in|the|contacts|between|the|American|`|hosts|'|and|their|`|guests|.|'\nThough|the|controversial|Korean|filmmaker|'s|latest|effort|is|not|for|all|tastes|,|it|offers|gorgeous|imagery|,|effective|performances|,|and|an|increasingly|unsettling|sense|of|foreboding|.\nLathan|and|Diggs|have|considerable|personal|charm|,|and|their|screen|rapport|makes|the|old|story|seem|new|.\nThe|story|may|not|be|new|,|but|Australian|director|John|Polson|,|making|his|American|feature|debut|,|jazzes|it|up|adroitly|.\nIt|'s|endearing|to|hear|Madame|D.|refer|to|her|husband|as|`|Jackie|'|--|and|he|does|make|for|excellent|company|,|not|least|as|a|self-conscious|performer|.\nThe|film|often|achieves|a|mesmerizing|poetry|.\nMore|than|makes|up|for|its|mawkish|posing|by|offering|rousing|spates|of|genuine|feeling|.\nIt|'s|neither|as|romantic|nor|as|thrilling|as|it|should|be|.\nBut|it|offers|plenty|to|ponder|and|chew|on|as|its|unusual|relationship|slowly|unfolds|.\nOccasionally|funny|,|always|very|colorful|and|enjoyably|overblown|in|the|traditional|Almodóvar|style|.\nMerchant|effectively|translates|Naipaul|'s|lively|mix|of|characters|from|the|page|to|screen|.\nSome|movies|are|like|a|tasty|hors-d'oeuvre|;|this|one|is|a|feast|.\nWhat|could|have|become|just|another|cautionary|fable|is|allowed|to|play|out|as|a|clever|,|charming|tale|--|as|pleasantly|in|its|own|way|as|its|self-dramatizing|characters|.\nDavis|has|filled|out|his|cast|with|appealing|fresh|faces|.\nAchieves|a|sort|of|filmic|epiphany|that|revels|in|the|true|potential|of|the|medium|.\nOnce|you|get|into|its|rhythm|...|the|movie|becomes|a|heady|experience|.\n``|Auto|Focus|''|works|as|an|unusual|biopic|and|document|of|male|swingers|in|the|Playboy|era\nIf|Mr.|Zhang|'s|subject|matter|is|,|to|some|degree|at|least|,|quintessentially|American|,|his|approach|to|storytelling|might|be|called|Iranian|.\nA|fast-moving|and|remarkable|film|that|appears|destined|to|become|a|landmark|in|Japanese|animation|.\n...|a|sour|little|movie|at|its|core|;|an|exploration|of|the|emptiness|that|underlay|the|relentless|gaiety|of|the|1920|'s|...|The|film|'s|ending|has|a|``|What|was|it|all|for|?|''\nfeeling|to|it|,|but|like|the|1920|'s|,|the|trip|there|is|a|great|deal|of|fun|.\nA|worthy|entry|into|a|very|difficult|genre|.\n(|Broomfield|)|uncovers|a|story|powerful|enough|to|leave|the|screen|sizzling|with|intrigue|.\nEight|Crazy|Nights|is|a|showcase|for|Sandler|'s|many|talents|.\nA|sweet-natured|reconsideration|of|one|of|San|Francisco|'s|most|vital|,|if|least|widely|recognized|,|creative|fountainheads|.\nThis|is|one|of|the|most|visually|stunning|and|thematically|moving|epics|in|recent|memory|,|and|in|spite|of|numerous|minor|flaws|,|Scorsese|'s|best|in|more|than|a|decade|.\nEverywhere|the|camera|looks|there|is|something|worth|seeing|.\nA|richly|imagined|and|admirably|mature|work|from|a|gifted|director|who|definitely|has|something|on|his|mind|.\nIt|'s|a|nicely|detailed|world|of|pawns|,|bishops|and|kings|,|of|wagers|in|dingy|backrooms|or|pristine|forests|.\nA|charming|,|quirky|and|leisurely|paced|Scottish|comedy|--|except|with|an|outrageous|central|gimmick|that|could|have|been|a|reject|from|Monty|Python|'s|Meaning|of|Life|.\nIt|never|fails|to|engage|us|.\nIts|direction|,|its|script|,|and|Weaver|'s|performance|as|a|vaguely|discontented|woman|of|substance|make|for|a|mildly|entertaining|77|minutes|,|if|that|'s|what|you|'re|in|the|mood|for|.\nA|charming|romantic|comedy|that|is|by|far|the|lightest|Dogme|film|and|among|the|most|enjoyable|.\nThis|is|the|kind|of|movie|that|used|to|be|right|at|home|at|the|Saturday|matinee|,|and|it|still|is|.\nThe|spark|of|special|anime|magic|here|is|unmistakable|and|hard|to|resist|.\nLike|its|two|predecessors|,|1983|'s|Koyaanisqatsi|and|1988|'s|Powaqqatsi|,|the|cinematic|collage|Naqoyqatsi|could|be|the|most|navel-gazing|film|ever|.\nBaran|is|n't|the|most|transporting|or|gripping|film|from|Iran|--|or|,|indeed|,|by|its|director|--|but|it|'s|a|worthy|companion|to|the|many|fine|,|focused|films|emerging|from|that|most|surprising|of|nations|.\nThe|visuals|alone|make|Metropolis|worth|seeing|.\nDark|,|resonant|,|inventively|detailed|and|packed|with|fleet|turns|of|plot|and|a|feast|of|visual|amazement|.\nA|picture|that|extols|the|virtues|of|comradeship|and|community|in|a|spunky|,|spirited|fashion|.\nA|resonant|tale|of|racism|,|revenge|and|retribution|.\nNoyce|'s|film|is|contemplative|and|mournfully|reflective|.\nHere|,|Adrian|Lyne|comes|as|close|to|profundity|as|he|is|likely|to|get|.\nEvokes|a|little|of|the|fear|that|parents|have|for|the|possible|futures|of|their|children|--|and|the|sometimes|bad|choices|mothers|and|fathers|make|in|the|interests|of|doing|them|good|.\nRain|is|a|small|treasure|,|enveloping|the|viewer|in|a|literal|and|spiritual|torpor|that|is|anything|but|cathartic|.\nAn|elegant|,|exquisitely|modulated|psychological|thriller|.\nThis|concoction|,|so|bizarre|to|the|adult|mind|,|is|actually|a|charming|triumph|where|its|intended|under-12|audience|is|concerned|.\nDroll|caper-comedy|remake|of|``|Big|Deal|on|Madonna|Street|''|that|'s|a|sly|,|amusing|,|laugh-filled|little|gem|in|which|the|ultimate|``|Bellini|''|begins|to|look|like|a|``|real|Kaputschnik|.|''\nIt|'s|a|beautifully|accomplished|lyrical|meditation|on|a|bunch|of|despondent|and|vulnerable|characters|living|in|the|renown|Chelsea|Hotel|...\nIs|it|a|total|success|?\nNo.|.\nIs|it|something|any|true|film|addict|will|want|to|check|out|?\nYou|bet|.\nZany|,|exuberantly|irreverent|animated|space|adventure|.\nDolgin|and|Franco|fashion|a|fascinating|portrait|of|a|Vietnamese-born|youngster|who|eagerly|and|easily|assimilated|as|an|all-American|girl|with|a|brand|new|name|in|southern|Tennessee|.\nThe|disarming|cornball|atmosphere|has|a|way|of|infecting|the|entire|crowd|as|the|film|rolls|on|.\nA|refreshingly|honest|and|ultimately|touching|tale|of|the|sort|of|people|usually|ignored|in|contemporary|American|film|.\nSearch|it|out|.\nEngrossing|and|affecting|,|if|ultimately|not|quite|satisfying|.\nThe|story|,|like|life|,|refuses|to|be|simple|,|and|the|result|is|a|compelling|slice|of|awkward|emotions|.\nA|sly|game|of|cat|and|mouse|that|'s|intense|and|thrilling|at|times|,|but|occasionally|stretches|believability|to|its|limits|and|relies|on|predictable|plot|contrivances|.\nFunny|and|,|at|times|,|poignant|,|the|film|from|director|George|Hickenlooper|all|takes|place|in|Pasadena|,|``|a|city|where|people|still|read|.|''\nThis|horror-comedy|does|n't|go|for|the|usual|obvious|laughs|at|the|expense|of|cheap-looking|monsters|--|unless|you|count|Elvira|'s|hooters|.\nThe|movie|'s|eventual|success|should|be|credited|to|Dennis|Quaid|,|in|fighting|trim|shape|as|an|athlete|as|well|as|an|actor\nNot|a|bad|journey|at|all|.\nSits|uneasily|as|a|horror|picture|...|but|finds|surprising|depth|in|its|look|at|the|binds|of|a|small|family|.\nWindtalkers|blows|this|way|and|that|,|but|there|'s|no|mistaking|the|filmmaker|in|the|tall|grass|,|true|to|himself|.\nThere|is|a|refreshing|absence|of|cynicism|in|Stuart|Little|2|--|quite|a|rarity|,|even|in|the|family|film|market|.\nEventually|,|it|wins|you|over|.\nNoyce|films|it|more|as|a|shocking|history|lesson|than|as|drama|.\nLike|a|south-of-the-border|Melrose|Place|.\nThose|with|an|interest|in|new|or|singular|sorts|of|film|experiences|will|find|What|Time|Is|It|There|?\nwell|worth|the|time|.\nA|wildly|funny|prison|caper|.\nHuppert|gives|Erika|a|persona|that|is|so|intriguing|that|you|find|yourself|staring|hypnotically|at|her|,|trying|to|understand|her|and|wondering|if|she|'ll|crack|.\nDespite|what|anyone|believes|about|the|goal|of|its|makers|,|the|show|...|represents|a|spectacular|piece|of|theater|,|and|there|'s|no|denying|the|talent|of|the|creative|forces|behind|it|.\nYou|'ll|be|left|with|the|sensation|of|having|just|witnessed|a|great|performance|and|,|perhaps|,|give|in|to|the|urge|to|get|on|your|feet|and|shake|it|.\nThe|actors|are|so|terrific|at|conveying|their|young|angst|,|we|do|indeed|feel|for|them|.\nThe|reason|this|picture|works|better|than|its|predecessors|is|that|Myers|is|no|longer|simply|spoofing|the|mini-mod-madness|of|'60s|spy|movies|.\nIt|is|a|kickass|,|dense|sci-fi|action|thriller|hybrid|that|delivers|and|then|some|.\nI|have|n't|seen|one|in|so|long|,|no|wonder|I|did|n't|recognize|it|at|first|.\na|compelling|portrait|of|moral|emptiness\nIn|Adobo|,|ethnicity|is|not|just|the|spice|,|but|at|the|heart|of|more|universal|concerns|.\nIt|is|ridiculous|,|of|course|...|but|it|is|also|refreshing|,|disarming|,|and|just|outright|enjoyable|despite|its|ridiculousness|.\n...|Blade|II|is|more|enjoyable|than|the|original|.\nA|film|that|takes|you|inside|the|rhythms|of|its|subject|:|You|experience|it|as|you|watch|.\nThe|movie|exists|for|its|soccer|action|and|its|fine|acting|.\nThe|movie|is|saved|from|unbearable|lightness|by|the|simplicity|of|the|storytelling|and|the|authenticity|of|the|performances|.\nThe|film|starts|out|as|competent|but|unremarkable|...|and|gradually|grows|into|something|of|considerable|power|.\nNothing|Denis|has|made|before|,|like|Beau|Travil|and|Nenette|et|Boni|,|could|prepare|us|for|this|gory|,|perverted|,|sex-soaked|riff|on|the|cannibal|genre|.\nReinforces|the|talents|of|screenwriter|Charlie|Kaufman|,|creator|of|Adaptation|and|Being|John|Malkovich|.\nGreene|delivers|a|typically|solid|performance|in|a|role|that|is|a|bit|of|a|departure|from|the|noble|characters|he|has|played|in|the|past|,|and|he|is|matched|by|Schweig|,|who|carries|the|film|on|his|broad|,|handsome|shoulders|.\nFinds|a|way|to|tell|a|simple|story|,|perhaps|the|simplest|story|of|all|,|in|a|way|that|seems|compelling|and|even|original|.\nA|stunning|piece|of|visual|poetry|that|will|,|hopefully|,|be|remembered|as|one|of|the|most|important|stories|to|be|told|in|Australia|'s|film|history|.\nThis|is|art|paying|homage|to|art|.\n...|a|joke|at|once|flaky|and|resonant|,|lightweight|and|bizarrely|original|.\nInvincible|is|a|wonderful|movie|.\n...|a|cute|and|sometimes|side-splittingly|funny|blend|of|Legally|Blonde|and|Drop|Dead|Gorgeous|,|starring|Piper|Perabo|in|what|could|be|her|breakthrough|role|.\nDazzling|and|sugar-sweet|,|a|blast|of|shallow|magnificence|that|only|sex|,|scandal|,|and|a|chorus|line|of|dangerous|damsels|can|deliver|.\nOccasionally|amateurishly|made|but|a|winsome|cast|and|nice|dialogue|keeps|it|going|.\nJapan|'s|premier|stylist|of|sex|and|blood|hits|audiences|with|what|may|be|his|most|demented|film|to|date|.\nCulkin|,|who|'s|in|virtually|every|scene|,|shines|as|a|young|man|who|uses|sarcastic|lies|like|a|shield|.\nCuts|right|through|the|B.S.|giving|a|big|middle-fingered|``|shut|up|''|to|those|who|talk|up|what|is|nothing|more|than|two|guys|beating|the|hell|outta|one|another|.\nThe|AM-radio|soundtrack|and|game|cast|--|Tierney|and|the|inimitable|Walken|especially|--|keep|this|unusual|comedy|from|choking|on|its|own|conceit|.\n...|does|such|a|fine|job|of|engulfing|you|in|its|world|and|allying|you|with|its|characters|'|choices|,|good|and|ill|,|that|its|shortcomings|are|remembered|only|as|an|afterthought|.\nMarvelous|,|merry|and|,|yes|,|melancholy|film|.\nFrom|spiritual|rebirth|to|bruising|defeat|,|Vincent|'s|odyssey|resonates|in|a|profound|way|,|comparable|to|the|classic|films|of|Jean|Renoir|.\nNovak|manages|to|capture|a|cruelly|hilarious|vein|of|black|comedy|in|the|situation|with|his|cast|of|non-actors|and|a|gritty|,|no-budget|approach|.\nInsomnia|is|involving|.\nStill|,|I|thought|it|could|have|been|more|.\nThere|was|time|on|that|second|round|to|see|the|subtleties|of|Ramsay|'s|portrait|of|grief|.\nWe|can|see|the|wheels|turning|,|and|we|might|resent|it|sometimes|,|but|this|is|still|a|nice|little|picture|,|made|by|bright|and|friendly|souls|with|a|lot|of|good|cheer|.\nA|comprehensive|and|provocative|film|--|one|that|pushes|the|boundaries|of|biography|,|and|challenges|its|audience|.\nThe|way|Coppola|professes|his|love|for|movies|--|both|colorful|pop|junk|and|the|classics|that|unequivocally|qualify|as|art|--|is|giddily|entertaining|.\nA|worthwhile|way|to|spend|two|hours|.\nFrancophiles|will|snicker|knowingly|and|you|'ll|want|to|slap|them|.\nSensitive|,|insightful|and|beautifully|rendered|film|.\nOne|of|the|best|of|the|year|.\nA|love|for|films|shines|through|each|frame|and|the|era|is|recreated|with|obvious|affection|,|scored|to|perfection|with|some|tasty|boogaloo|beats|.\nThrowing|caution|to|the|wind|with|an|invitation|to|the|hedonist|in|us|all|,|Nair|has|constructed|this|motion|picture|in|such|a|way|that|even|the|most|cynical|curmudgeon|with|find|himself|or|herself|smiling|at|one|time|or|another|.\nMakes|an|aborbing|if|arguable|case|for|the|man|'s|greatness|.\nAn|endlessly|fascinating|,|landmark|movie|that|is|as|bold|as|anything|the|cinema|has|seen|in|years|.\n...|a|haunting|vision|,|with|images|that|seem|more|like|disturbing|hallucinations|.\nIt|is|not|a|mass-market|entertainment|but|an|uncompromising|attempt|by|one|artist|to|think|about|another|.\nFrailty|is|n't|as|gory|or|explicit|.\nBut|in|its|child-centered|,|claustrophobic|context|,|it|can|be|just|as|frightening|and|disturbing|--|even|punishing|.\nMixes|likeable|personalities|,|inventive|photography|and|cutting|,|and|wall-to-wall|toe-tapping|music|to|paint|a|picture|of|a|subculture|that|is|at|once|exhilarating|,|silly|,|perverse|,|hopeful|and|always|fun|.\nThe|long-range|appeal|of|``|Minority|Report|''|should|transcend|any|awards|it|bags|.\nThis|is|one|for|the|ages|.\n(|A|)|superbly|controlled|,|passionate|adaptation|of|Graham|Greene|'s|1955|novel|.\nMuch|monkeyfun|for|all|.\nAn|enchanting|film|that|presents|an|audacious|tour|of|the|past|and|takes|within|its|warm|embrace|the|bounties|of|cultural|artifacts|inside|St.|Petersburg|'s|Hermitage|Museum|.\n(|Hawn|'s|character|)|is|so|bluntly|written|,|without|a|trace|of|sentimentality|,|and|so|blisteringly|defined|,|that|every|other|character|seems|overlooked|and|underwritten|.\nThe|heightened|symmetry|of|this|new\\/old|Cinema|Paradiso|makes|the|film|a|fuller|experience|,|like|an|old|friend|haunted|by|the|exigencies|of|time|.\nThe|Powers|team|has|fashioned|a|comedy|with|more|laughs|than|many|,|no|question|.\nBut|this|time|there|'s|some|mold|on|the|gold|.\nWhile|surprisingly|sincere|,|this|average|little|story|is|adorned|with|some|awesome|action|photography|and|surfing|.\nIt|is|far|from|the|worst|,|thanks|to|the|topical|issues|it|raises|,|the|performances|of|Stewart|and|Hardy|,|and|that|essential|feature|--|a|decent|full-on|space|battle|.\nA|film|that|is|a|portrait|of|grace|in|an|imperfect|world|.\nA|pleasurably|jacked-up|piece|of|action|moviemaking|.\nNicolas|Philibert|observes|life|inside|a|one-room|schoolhouse|in|northern|France|in|his|documentary|To|Be|and|to|Have|,|easily|one|of|the|best|films|of|the|year|.\nA|perverse|little|truffle|,|dainty|psychological|terror|on|the|outside|with|a|creamy|filling|of|familial|jealousy|and|unrepentant|domestic|psychopathy|.\nThis|ecologically|minded|,|wildlife|friendly|film|teaches|good|ethics|while|entertaining|with|its|unconventionally|wacky|but|loving|family\nAn|enjoyably|half-wit|remake|of|the|venerable|Italian|comedy|Big|Deal|on|Madonna|Street|.\nIt|takes|this|never-ending|confusion|and|hatred|,|puts|a|human|face|on|it|,|evokes|shame|among|all|who|are|party|to|it|and|even|promotes|understanding|.\nReign|of|Fire|may|be|little|more|than|another|platter|of|reheated|Aliens|,|but|it|'s|still|pretty|tasty|.\nThere|are|times|when|A|Rumor|of|Angels|plays|like|an|extended|episode|of|Touched|by|an|Angel|--|a|little|too|much|dancing|,|a|few|too|many|weeping|scenes|--|but|I|liked|its|heart|and|its|spirit|.\nTwo|hours|of|melodramatic|musical|married|to|two|hours|of|underdog|sports|intrigue|,|if|the|picture|also|shares|the|weaknesses|of|both|genres|,|more|'s|the|pity|.\nThis|cheery|,|down-to-earth|film|is|warm|with|the|cozy|feeling|of|relaxing|around|old|friends|.\nThrilling|,|provocative|and|darkly|funny|,|this|timely|sci-fi|mystery|works|on|so|many|different|levels|that|it|not|only|invites|,|it|demands|repeated|viewings|.\nA|tale|of|horror|and|revenge|that|is|nearly|perfect|in|its|relentless|descent|to|the|depths|of|one|man|'s|tortured|soul|.\nAn|epic|of|grandeur|and|scale|that|'s|been|decades|gone|from|the|popcorn|pushing|sound|stages|of|Hollywood|.\nGenuinely|touching|because|it|'s|realistic|about|all|kinds|of|love|.\nLauren|Ambrose|comes|alive|under|the|attention|from|two|strangers|in|town|-|with|honest|performances|and|realistic|interaction|between|the|characters|,|this|is|a|coming-of-age|story|with|a|twist|.\nThere|has|been|much|puzzlement|among|critics|about|what|the|election|symbolizes|.\nI|believe|the|message|is|in|the|messenger|:|The|agent|is|a|woman|.\nAn|enjoyable|film|for|the|family|,|amusing|and|cute|for|both|adults|and|kids|.\n``|The|Mothman|Prophecies|''|is|a|difficult|film|to|shake|from|your|conscience|when|night|falls|.\nThe|second|chapter|of|the|Harry|Potter|series|is|even|more|magical|than|the|first|and|simply|the|best|family|film|of|the|year|.\nMore|honest|about|Alzheimer|'s|disease|,|I|think|,|than|Iris|.\nThe|acting|alone|is|worth|the|price|of|admission|.\nAn|excellent|romp|that|boasts|both|a|heart|and|a|mind|.\nInteracting|eyeball-to-eyeball|and|toe-to-toe|,|Hopkins|and|Norton|are|a|winning|combination|--|but|Fiennes|steals|`|Red|Dragon|'|right|from|under|their|noses|.\nThis|is|a|terrific|character|study|,|a|probe|into|the|life|of|a|complex|man|.\nImpresses|you|with|its|open-endedness|and|surprises|.\nThis|is|n't|a|narrative|film|--|I|do|n't|know|if|it|'s|possible|to|make|a|narrative|film|about|September|11th|,|though|I|'m|sure|some|will|try|--|but|it|'s|as|close|as|anyone|has|dared|to|come|.\nMy|oh|my|,|is|this|an|invigorating|,|electric|movie|.\nThe|two|leads|chomp|considerably|more|scenery|with|their|acting|than|fire-breathing|monsters|barbecue|with|their|breath|...\nCedar|takes|a|very|open-minded|approach|to|this|sensitive|material|,|showing|impressive|control|,|both|visually|and|in|the|writing|.\nBiggie|and|Tupac|is|so|single-mindedly|daring|,|it|puts|far|more|polished|documentaries|to|shame|.\nSo|many|documentaries|like|this|presuppose|religious|bigotry|or|zealous|nuttiness|of|its|antagonists|,|but|Family|Fundamentals|displays|a|rare|gift|for|unflinching|impartiality|.\nThe|cast|is|uniformly|excellent|and|relaxed|.\nAfter|making|several|adaptations|of|other|writers|'|work|,|Armenian-Canadian|director|Atom|Egoyan|broached|an|original|treatment|of|a|deeply|personal|subject|.\nThe|film|is|painfully|authentic|,|and|the|performances|of|the|young|players|are|utterly|convincing|.\nIf|it|seems|like|a|minor|miracle|that|its|septuagenarian|star|is|young|enough|to|be|the|nonagenarian|filmmaker|'s|son|,|more|incredible|still|are|the|clear-eyed|boldness|and|quiet|irony|with|which|actor|and|director|take|on|life|'s|urgent|questions|.\nA|candid|and|often|fascinating|documentary|about|a|Pentecostal|church|in|Dallas|that|assembles|an|elaborate|haunted|house|each|year|to|scare|teenagers|into|attending|services|.\nFans|of|the|animated|wildlife|adventure|show|will|be|in|warthog|heaven|;|others|need|not|necessarily|apply|.\nWithout|resorting|to|hyperbole|,|I|can|state|that|Kissing|Jessica|Stein|may|be|the|best|same-sex|romance|I|have|seen|.\nNolan|bravely|treads|where|few|American|films|dare|to|delve|--|into|the|world|of|ambivalence|and|ambiguity|...\nUnlike|the|nauseating|fictions|peddled|by|such|`|Have-yourself-a-happy-little-Holocaust|'|movies|as|Life|Is|Beautiful|and|Jakob|the|Liar|,|The|Grey|Zone|is|honest|enough|to|deny|the|possibility|of|hope|in|Auschwitz|.\nA|potent|allegorical|love|story|.\nEven|those|who|would|like|to|dismiss|the|film|outright|should|find|much|to|mull|and|debate|.\nThis|is|cool|,|slick|stuff|,|ready|to|quench|the|thirst|of|an|audience|that|misses|the|summer|blockbusters|.\nThe|movie|is|full|of|fine|performances|,|led|by|Josef|Bierbichler|as|Brecht|and|Monica|Bleibtreu|as|Helene|Weigel|,|his|wife|.\nA|captivating|cross-cultural|comedy|of|manners|.\nAndy|Garcia|enjoys|one|of|his|richest|roles|in|years|and|Mick|Jagger|gives|his|best|movie|performance|since|,|well|,|Performance|.\nThe|movie|is|n't|always|easy|to|look|at|.\nBut|if|it|is|indeed|a|duty|of|art|to|reflect|life|,|than|Leigh|has|created|a|masterful|piece|of|artistry|right|here|.\nIt|'s|(|Ricci|'s|)|best|work|yet|,|this|girl-woman|who|sincerely|believes|she|can|thwart|the|world|'s|misery|with|blind|good|will|.\nHighlights|are|the|terrific|performances|by|Christopher|Plummer|,|as|the|prime|villain|,|and|Nathan|Lane|as|Vincent|Crummles|,|the|eccentric|theater|company|manager|.\n(|Howard|)|so|good|as|Leon|Barlow|...|that|he|hardly|seems|to|be|acting|.\nSuperior|genre|storytelling|,|which|gets|under|our|skin|simply|by|crossing|the|nuclear|line|.\nBy|taking|Entertainment|Tonight|subject|matter|and|giving|it|humor|and|poignancy|,|Auto|Focus|becomes|both|gut-bustingly|funny|and|crushingly|depressing|.\nIt|'s|a|bittersweet|and|lyrical|mix|of|elements|.\nSubversive|,|meditative|,|clinical|and|poetic|,|The|Piano|Teacher|is|a|daring|work|of|genius|.\nThe|weakest|of|the|four|Harry|Potter|books|has|been|transformed|into|the|stronger|of|the|two|films|by|the|thinnest|of|margins|.\nIts|gross-out|gags|and|colorful|set|pieces|...|are|of|course|stultifyingly|contrived|and|too|stylized|by|half|.\nStill|,|it|gets|the|job|done|--|a|sleepy|afternoon|rental|.\nIt|further|declares|its|director|,|Zhang|Yang|of|Shower|,|as|a|boldly|experimental|,|contemporary|stylist|with|a|bright|future|.\nSmith|'s|approach|is|never|to|tease|,|except|gently|and|in|that|way|that|makes|us|consider|our|own|eccentricities|and|how|they|are|expressed|through|our|homes|.\nFull|of|profound|,|real-life|moments|that|anyone|can|relate|to|,|it|deserves|a|wide|audience|.\nA|movie|that|will|touch|the|hearts|of|both|children|and|adults|,|as|well|as|bring|audiences|to|the|edge|of|their|seats|.\nLeave|it|to|Rohmer|,|now|82|,|to|find|a|way|to|bend|current|technique|to|the|service|of|a|vision|of|the|past|that|is|faithful|to|both|architectural|glories|and|commanding|open|spaces|of|the|city|as|it|was|more|than|two|centuries|ago|.\nFine|acting|but|there|is|no|sense|of|connecting|the|dots|,|just|dots|.\nAn|extraordinary|Swedish|film|about|the|soul|adventure|of|marriage|--|the|kind|of|intimate|and|character-driven|film|that|Bille|August|does|best|.\nA|blessed|gift|to|film|geeks|and|historians|.\nIf|the|'|70|'s|were|your|idea|of|a|good|time|at|the|movies|,|this|will|make|you|very|happy|.\nIt|took|19|predecessors|to|get|THIS|?\nThoughtful|,|even|stinging|at|times|,|and|lots|of|fun|.\nOne|of|the|most|haunting|,|viciously|honest|coming-of-age|films|in|recent|memory|.\nThe|WWII|drama|is|well|plotted|,|visually|striking|and|filled|with|enjoyably|complex|characters|who|are|never|what|they|first|appear|.\nIt|'s|a|pleasure|to|see|Seinfeld|griping|about|the|biz|with|buddies|Chris|Rock|,|Garry|Shandling|and|Colin|Quinn|.\nIf|you|love|Motown|music|,|you|'ll|love|this|documentary|.\nThis|time|out|,|(|Sade|)|is|an|unsettlingly|familiar|figure|--|in|turns|loyal|and|deceitful|,|responsible|and|reckless|,|idealistically|selfless|and|coldly|self-interested|.\nHuman|Resources|was|a|good|,|straightforward|tale|,|but|Time|Out|is|better|.\nIt|'s|haunting|.\nIt|'s|like|a|poem|.\nTo|the|film|'s|credit|,|the|acting|is|fresh|and|unselfconscious|,|and|Munch|is|a|marvel|of|reality|versus|sappy|sentiment|.\nChicago|is|,|in|many|ways|,|an|admirable|achievement|.\nShainberg|weaves|a|carefully|balanced|scenario|that|is|controlled|by|neither|character|,|is|weirdly|sympathetic|to|both|and|manages|to|be|tender|and|darkly|comic|.\nEven|when|foreign|directors|...|borrow|stuff|from|Hollywood|,|they|invariably|shake|up|the|formula|and|make|it|more|interesting|.\nA|cockamamie|tone|poem|pitched|precipitously|between|swoony|lyricism|and|violent|catastrophe|...|the|most|aggressively|nerve-wracking|and|screamingly|neurotic|romantic|comedy|in|cinema|history|.\nSturdy|,|entertaining|period|drama|...|both|Caine|and|Fraser|have|their|moments|.\nWhether|(|Binoche|and|Magimel|)|are|being|charming|or|angst-ridden|,|they|easily|fill|their|scenes|and|,|fine|judges|both|,|never|overcook|the|hysteria|.\nA|spunky|,|original|take|on|a|theme|that|will|resonate|with|singles|of|many|ages|.\nIt|'s|a|glorious|groove|that|leaves|you|wanting|more|.\nMajidi|gets|uniformly|engaging|performances|from|his|largely|amateur|cast|.\n...|a|well-observed|and|disturbing|little|movie\nFans|of|Nijinsky|will|savor|every|minute|of|Cox|'s|work|.\nEverything|you|loved|about|it|in|1982|is|still|there|,|for|everybody|who|wants|to|be|a|kid|again|,|or|show|it|to|their|own|kids|.\nJagger|the|actor|is|someone|you|want|to|see|again|.\nEscapism|in|its|purest|form|.\nThere|is|a|kind|of|attentive|concern|that|Hoffman|brings|to|his|characters|,|as|if|he|has|been|giving|them|private|lessons|,|and|now|it|is|time|for|their|first|public|recital|.\nA|comic|gem|with|some|serious|sparkles|.\nU.S.|audiences|may|find|(|Attal|and|Gainsbourg|'s|)|unfamiliar|personas|give|the|film|an|intimate|and|quaint|reality|that|is|a|little|closer|to|human|nature|than|what|Hollywood|typically|concocts|.\n``|Cremaster|3|''|should|come|with|the|warning|``|For|serious|film|buffs|only|!|''\nOnce|again|,|director|Jackson|strikes|a|rewarding|balance|between|emotion|on|the|human|scale|and|action\\/effects|on|the|spectacular|scale|.\nA|loving|little|film|of|considerable|appeal|.\nAlthough|it|'s|a|bit|smug|and|repetitive|,|this|documentary|engages|your|brain|in|a|way|few|current|films|do|.\nFlawed|but|worthy|look|at|life|in|U.S.|relocation|camps|.\nIt|'s|a|lovely|film|with|lovely|performances|by|Buy|and|Accorsi|.\nNo|one|goes|unindicted|here|,|which|is|probably|for|the|best|.\nAnd|if|you|'re|not|nearly|moved|to|tears|by|a|couple|of|scenes|,|you|'ve|got|ice|water|in|your|veins|.\nA|warm|,|funny|,|engaging|film|.\nUses|sharp|humor|and|insight|into|human|nature|to|examine|class|conflict|,|adolescent|yearning|,|the|roots|of|friendship|and|sexual|identity|.\nHalf|Submarine|flick|,|Half|Ghost|Story|,|All|in|one|criminally|neglected|film\nEntertains|by|providing|good|,|lively|company|.\nDazzles|with|its|fully-written|characters|,|its|determined|stylishness|(|which|always|relates|to|characters|and|story|)|and|Johnny|Dankworth|'s|best|soundtrack|in|years|.\nVisually|imaginative|,|thematically|instructive|and|thoroughly|delightful|,|it|takes|us|on|a|roller-coaster|ride|from|innocence|to|experience|without|even|a|hint|of|that|typical|kiddie-flick|sentimentality|.\nNothing|'s|at|stake|,|just|a|twisty|double-cross|you|can|smell|a|mile|away|--|still|,|the|derivative|Nine|Queens|is|lots|of|fun|.\nUnlike|the|speedy|wham-bam|effect|of|most|Hollywood|offerings|,|character|development|--|and|more|importantly|,|character|empathy|--|is|at|the|heart|of|Italian|for|Beginners|.\nYou|'ll|gasp|appalled|and|laugh|outraged|and|possibly|,|watching|the|spectacle|of|a|promising|young|lad|treading|desperately|in|a|nasty|sea|,|shed|an|errant|tear|.\nThe|band|'s|courage|in|the|face|of|official|repression|is|inspiring|,|especially|for|aging|hippies|(|this|one|included|)|.\nAlthough|German|cooking|does|not|come|readily|to|mind|when|considering|the|world|'s|best|cuisine|,|Mostly|Martha|could|make|Deutchland|a|popular|destination|for|hungry|tourists|.\nA|beguiling|splash|of|pastel|colors|and|prankish|comedy|from|Disney|.\nAs|surreal|as|a|dream|and|as|detailed|as|a|photograph|,|as|visually|dexterous|as|it|is|at|times|imaginatively|overwhelming|.\n(|Lawrence|bounces|)|all|over|the|stage|,|dancing|,|running|,|sweating|,|mopping|his|face|and|generally|displaying|the|wacky|talent|that|brought|him|fame|in|the|first|place|.\nThe|film|serves|as|a|valuable|time|capsule|to|remind|us|of|the|devastating|horror|suffered|by|an|entire|people|.\nWhat|'s|surprising|about|Full|Frontal|is|that|despite|its|overt|self-awareness|,|parts|of|the|movie|still|manage|to|break|past|the|artifice|and|thoroughly|engage|you|.\nWhether|you|like|rap|music|or|loathe|it|,|you|ca|n't|deny|either|the|tragic|loss|of|two|young|men|in|the|prime|of|their|talent|or|the|power|of|this|movie|.\n...|an|otherwise|intense|,|twist-and-turn|thriller|that|certainly|should|n't|hurt|talented|young|Gaghan|'s|resume|.\nIt|provides|the|grand|,|intelligent|entertainment|of|a|superior|cast|playing|smart|people|amid|a|compelling|plot|.\nThere|'s|...|tremendous|energy|from|the|cast|,|a|sense|of|playfulness|and|excitement|that|seems|appropriate|.\nIt|moves|quickly|,|adroitly|,|and|without|fuss|;|it|does|n't|give|you|time|to|reflect|on|the|inanity|--|and|the|Cold|War|datedness|--|of|its|premise|.\nA|deep|and|meaningful|film|.\nThe|film|'s|welcome|breeziness|and|some|unbelievably|hilarious|moments|--|most|portraying|the|idiocy|of|the|film|industry|--|make|it|mostly|worth|the|trip|.\nIt|'s|a|remarkably|solid|and|subtly|satirical|tour|de|force|.\nEnormously|entertaining|for|moviegoers|of|any|age|.\nA|poignant|,|artfully|crafted|meditation|on|mortality|.\nA|rarity|among|recent|Iranian|films|:|It|'s|a|comedy|full|of|gentle|humor|that|chides|the|absurdity|of|its|protagonist|'s|plight|.\nNot|only|is|Undercover|Brother|as|funny|,|if|not|more|so|,|than|both|Austin|Powers|films|,|but|it|'s|also|one|of|the|smarter|,|savvier|spoofs|to|come|along|in|some|time|.\nIn|a|way|,|the|film|feels|like|a|breath|of|fresh|air|,|but|only|to|those|that|allow|it|in|.\nWoody|Allen|'s|latest|is|an|ambling|,|broad|comedy|about|all|there|is|to|love|--|and|hate|--|about|the|movie|biz|.\nIt|'s|a|stunning|lyrical|work|of|considerable|force|and|truth|.\nThe|inhospitability|of|the|land|emphasizes|the|spare|precision|of|the|narratives|and|helps|to|give|them|an|atavistic|power|,|as|if|they|were|tales|that|had|been|handed|down|since|the|beginning|of|time|.\n(|Næs|)|directed|the|stage|version|of|Elling|,|and|gets|fine|performances|from|his|two|leads|who|originated|the|characters|on|stage|.\nMade|me|unintentionally|famous|--|as|the|queasy-stomached|critic|who|staggered|from|the|theater|and|blacked|out|in|the|lobby|.\nBut|believe|it|or|not|,|it|'s|one|of|the|most|beautiful|,|evocative|works|I|'ve|seen|.\nA|coda|in|every|sense|,|The|Pinochet|Case|splits|time|between|a|minute-by-minute|account|of|the|British|court|'s|extradition|chess|game|and|the|regime|'s|talking-head|survivors|.\nLike|Mike|is|a|winner|for|kids|,|and|no|doubt|a|winner|for|Lil|Bow|Wow|,|who|can|now|add|movies|to|the|list|of|things|he|does|well|.\n(|T|)|his|beguiling|Belgian|fable|,|very|much|its|own|droll|and|delicate|little|film|,|has|some|touching|things|to|say|about|what|is|important|in|life|and|why|.\nHere|'s|yet|another|studio|horror|franchise|mucking|up|its|storyline|with|glitches|casual|fans|could|correct|in|their|sleep|.\nBut|taken|as|a|stylish|and|energetic|one-shot|,|The|Queen|of|the|Damned|can|not|be|said|to|suck|.\nYou|wo|n't|like|Roger|,|but|you|will|quickly|recognize|him|.\nAnd|that|'s|a|big|part|of|why|we|go|to|the|movies|.\nWhile|the|stoically|delivered|hokum|of|Hart|'s|War|is|never|fun|,|it|'s|still|a|worthy|addition|to|the|growing|canon|of|post-Saving|Private|Ryan|tributes|to|the|greatest|generation|.\nWe|know|the|plot|'s|a|little|crazy|,|but|it|held|my|interest|from|start|to|finish|.\nA|sober|and|affecting|chronicle|of|the|leveling|effect|of|loss|.\nA|fast|,|funny|,|highly|enjoyable|movie|.\nA|celebration|of|quirkiness|,|eccentricity|,|and|certain|individuals|'|tendency|to|let|it|all|hang|out|,|and|damn|the|consequences|.\nWriter\\/director|Joe|Carnahan|'s|grimy|crime|drama|is|a|manual|of|precinct|cliches|,|but|it|moves|fast|enough|to|cover|its|clunky|dialogue|and|lapses|in|logic|.\nA|smart|,|witty|follow-up|.\nWhile|the|ideas|about|techno-saturation|are|far|from|novel|,|they|'re|presented|with|a|wry|dark|humor|.\nAn|infectious|cultural|fable|with|a|tasty|balance|of|family|drama|and|frenetic|comedy|.\nAlthough|occasionally|static|to|the|point|of|resembling|a|stage|play|,|the|film|delivers|a|solid|mixture|of|sweetness|and|laughs|.\nIt|provides|an|honest|look|at|a|community|striving|to|anchor|itself|in|new|grounds|.\nAdd|yet|another|hat|to|a|talented|head|,|Clooney|'s|a|good|director|.\nBuilding|slowly|and|subtly|,|the|film|,|sporting|a|breezy|spontaneity|and|realistically|drawn|characterizations|,|develops|into|a|significant|character|study|that|is|both|moving|and|wise|.\nUltimately|feels|empty|and|unsatisfying|,|like|swallowing|a|Communion|wafer|without|the|wine|.\nChilling|,|well-acted|,|and|finely|directed|:|David|Jacobson|'s|Dahmer|.\nA|swashbuckling|tale|of|love|,|betrayal|,|revenge|and|above|all|,|faith|.\nWithout|ever|becoming|didactic|,|director|Carlos|Carrera|expertly|weaves|this|novelistic|story|of|entangled|interrelationships|and|complex|morality|.\nIt|'s|a|coming-of-age|story|we|'ve|all|seen|bits|of|in|other|films|--|but|it|'s|rarely|been|told|with|such|affecting|grace|and|cultural|specificity|.\nA|literate|presentation|that|wonderfully|weaves|a|murderous|event|in|1873|with|murderous|rage|in|2002|.\nMakes|even|the|claustrophobic|on-board|quarters|seem|fun|.\nThis|is|as|respectful|a|film|as|Byatt|fans|could|hope|for|,|though|lovers|of|the|book|may|wonder|why|it|'s|necessary|.\nOne|of|the|best|films|of|the|year|with|its|exploration|of|the|obstacles|to|happiness|faced|by|five|contemporary|individuals|...|a|psychological|masterpiece|.\nNot|far|beneath|the|surface|,|this|reconfigured|tale|asks|disturbing|questions|about|those|things|we|expect|from|military|epics|.\nFor|the|most|part|Stevens|glides|through|on|some|solid|performances|and|witty|dialogue|.\nBroomfield|turns|his|distinctive|`|blundering|'|style|into|something|that|could|really|help|clear|up|the|case|.\nAgainst|all|odds|in|heaven|and|hell|,|it|creeped|me|out|just|fine|.\nIt|'s|refreshing|to|see|a|girl-power|movie|that|does|n't|feel|it|has|to|prove|anything|.\nIt|'s|worth|seeing|just|on|the|basis|of|the|wisdom|,|and|at|times|,|the|startling|optimism|,|of|the|children|.\nA|rigorously|structured|and|exquisitely|filmed|drama|about|a|father|and|son|connection|that|is|a|brief|shooting|star|of|love|.\nThis|surreal|Gilliam-esque|film|is|also|a|troubling|interpretation|of|Ecclesiastes|.\nA|rewarding|work|of|art|for|only|the|most|patient|and|challenge-hungry|moviegoers|.\nA|quiet|treasure|--|a|film|to|be|savored|.\nMay|be|far|from|the|best|of|the|series|,|but|it|'s|assured|,|wonderfully|respectful|of|its|past|and|thrilling|enough|to|make|it|abundantly|clear|that|this|movie|phenomenon|has|once|again|reinvented|itself|for|a|new|generation|.\nA|compelling|Spanish|film|about|the|withering|effects|of|jealousy|in|the|life|of|a|young|monarch|whose|sexual|passion|for|her|husband|becomes|an|obsession|.\nHuston|nails|both|the|glad-handing|and|the|choking|sense|of|hollow|despair|.\nmay|not|have|generated|many|sparks|,|but|with|his|affection|for|Astoria|and|its|people|he|has|given|his|tale|a|warm|glow|.\nA|delirious|celebration|of|the|female|orgasm|.\nExquisitely|nuanced|in|mood|tics|and|dialogue|,|this|chamber|drama|is|superbly|acted|by|the|deeply|appealing|veteran|Bouquet|and|the|chilling|but|quite|human|Berling|.\nIt|'s|fascinating|to|see|how|Bettany|and|McDowell|play|off|each|other|.\nThe|film|is|beautifully|mounted|,|but|,|more|to|the|point|,|the|issues|are|subtly|presented|,|managing|to|walk|a|fine|line|with|regard|to|the|question|of|Joan|'s|madness|.\nLeigh|'s|film|is|full|of|memorable|performances|from|top|to|bottom|.\nOne|of|the|most|significant|moviegoing|pleasures|of|the|year|.\nJose|Campanella|delivers|a|loosely|autobiographical|story|brushed|with|sentimentality|but|brimming|with|gentle|humor|,|bittersweet|pathos|,|and|lyric|moments|that|linger|like|snapshots|of|memory|.\nGenerally|,|Clockstoppers|will|fulfill|your|wildest|fantasies|about|being|a|different|kind|of|time|traveler|,|while|happily|killing|94|minutes|.\nThe|movie|is|beautiful|to|behold|and|engages|one|in|a|sense|of|epic|struggle|--|inner|and|outer|--|that|'s|all|too|rare|in|Hollywood|'s|hastier|productions|.\nNeither|Parker|nor|Donovan|is|a|typical|romantic|lead|,|but|they|bring|a|fresh|,|quirky|charm|to|the|formula|.\nIt|'s|a|much|more|emotional|journey|than|what|Shyamalan|has|given|us|in|his|past|two|movies|,|and|Gibson|,|stepping|in|for|Bruce|Willis|,|is|the|perfect|actor|to|take|us|on|the|trip|.\nNot|only|are|the|special|effects|and|narrative|flow|much|improved|,|and|Daniel|Radcliffe|more|emotionally|assertive|this|time|around|as|Harry|,|but|the|film|conjures|the|magic|of|author|J.K.|Rowling|'s|books|.\nJaglom|...|put|(|s|)|the|audience|in|the|privileged|position|of|eavesdropping|on|his|characters\nBeautifully|observed|,|miraculously|unsentimental|comedy-drama|.\nA|must-see|for|the|David|Mamet|enthusiast|and|for|anyone|who|appreciates|intelligent|,|stylish|moviemaking|.\nCrackerjack|entertainment|--|nonstop|romance|,|music|,|suspense|and|action|.\nThe|acting|,|costumes|,|music|,|cinematography|and|sound|are|all|astounding|given|the|production|'s|austere|locales|.\nGarcía|Bernal|and|Talancón|are|an|immensely|appealing|couple|,|and|even|though|their|story|is|predictable|,|you|'ll|want|things|to|work|out|.\nFar|more|imaginative|and|ambitious|than|the|trivial|,|cash-in|features|Nickelodeon|has|made|from|its|other|animated|TV|series|.\nThe|very|definition|of|the|`|small|'|movie|,|but|it|is|a|good|stepping|stone|for|director|Sprecher|.\nA|gripping|,|searing|portrait|of|a|lost|soul|trying|to|find|her|way|through|life|.\nSuffers|from|the|lack|of|a|compelling|or|comprehensible|narrative|.\nStill|,|as|a|visual|treat|,|the|film|is|almost|unsurpassed|.\nSo|unassuming|and|pure|of|heart|,|you|ca|n't|help|but|warmly|extend|your|arms|and|yell|`|Safe|!|'\nAn|intriguing|cinematic|omnibus|and|round-robin|that|occasionally|is|more|interesting|in|concept|than|in|execution|.\nSo|refreshingly|incisive|is|Grant|that|for|the|first|time|he|'ll|probably|appeal|more|to|guys|than|to|their|girlfriends|who|drag|them|to|this|movie|for|the|Hugh|factor|.\nAt|a|time|when|half|the|so-called|real|movies|are|little|more|than|live-action|cartoons|,|it|'s|refreshing|to|see|a|cartoon|that|knows|what|it|is|,|and|knows|the|form|'s|history|.\nThe|magic|of|the|film|lies|not|in|the|mysterious|spring|but|in|the|richness|of|its|performances|.\nHoffman|notches|in|the|nuances|of|pain|,|but|his|smart|,|edgy|voice|and|waddling|profile|(|emphasized|here|)|accent|the|humor|of|Wilson|'s|plight|,|and|that|saves|his|pathos|from|drippiness|.\nWhat|better|message|than|`|love|thyself|'|could|young|women|of|any|size|receive|?\nThe|second|coming|of|Harry|Potter|is|a|film|far|superior|to|its|predecessor|.\nA|movie|that|successfully|crushes|a|best|selling|novel|into|a|timeframe|that|mandates|that|you|avoid|the|Godzilla|sized|soda|.\n84|minutes|of|rolling|musical|back|beat|and|supercharged|cartoon|warfare|.\nIt|'s|also|,|clearly|,|great|fun|.\n...|takes|the|beauty|of|baseball|and|melds|it|with|a|story|that|could|touch|anyone|regardless|of|their|familiarity|with|the|sport\nSeldahl|'s|Barbara|is|a|precise|and|moving|portrait|of|someone|whose|world|is|turned|upside|down|,|first|by|passion|and|then|by|illness|.\nA|warm|but|realistic|meditation|on|friendship|,|family|and|affection|.\nByler|reveals|his|characters|in|a|way|that|intrigues|and|even|fascinates|us|,|and|he|never|reduces|the|situation|to|simple|melodrama|.\nTurns|potentially|forgettable|formula|into|something|strangely|diverting|.\nBogdanovich|tantalizes|by|offering|a|peep|show|into|the|lives|of|the|era|'s|creme|de|la|celluloid|.\nPeople|cinema|at|its|finest|.\nThe|performances|take|the|movie|to|a|higher|level|.\nwhat|really|makes|it|special|is|that|it|pulls|us|into|its|world|,|gives|us|a|hero|whose|suffering|and|triumphs|we|can|share|,|surrounds|him|with|interesting|characters|and|sends|us|out|of|the|theater|feeling|we|'ve|shared|a|great|adventure|.\n...|a|spoof|comedy|that|carries|its|share|of|laughs|--|sometimes|a|chuckle|,|sometimes|a|guffaw|and|,|to|my|great|pleasure|,|the|occasional|belly|laugh|.\nManages|to|transcend|the|sex|,|drugs|and|show-tunes|plot|into|something|far|richer|.\nDense|with|characters|and|contains|some|thrilling|moments|.\nLaPaglia|'s|ability|to|convey|grief|and|hope|works|with|Weaver|'s|sensitive|reactions|to|make|this|a|two-actor|master|class|.\nReign|of|Fire|looks|as|if|it|was|made|without|much|thought|--|and|is|best|watched|that|way|.\nAltogether|,|this|is|successful|as|a|film|,|while|at|the|same|time|being|a|most|touching|reconsideration|of|the|familiar|masterpiece|.\nWe|root|for|(|Clara|and|Paul|)|,|even|like|them|,|though|perhaps|it|'s|an|emotion|closer|to|pity|.\nThe|best|film|about|baseball|to|hit|theaters|since|Field|of|Dreams|.\nInstead|of|a|hyperbolic|beat-charged|urban|western|,|it|'s|an|unpretentious|,|sociologically|pointed|slice|of|life|.\nthe|film|tunes|into|a|grief|that|could|lead|a|man|across|centuries|.\nIf|The|Count|of|Monte|Cristo|does|n't|transform|Caviezel|into|a|movie|star|,|then|the|game|is|even|more|rigged|than|it|was|two|centuries|ago|.\n(|D|)|oes|n't|bother|being|as|cloying|or|preachy|as|equivalent|evangelical|Christian|movies|--|maybe|the|filmmakers|know|that|the|likely|audience|will|already|be|among|the|faithful|.\nAs|a|tolerable|diversion|,|the|film|suffices|;|a|Triumph|,|however|,|it|is|not|.\nIf|director|Michael|Dowse|only|superficially|understands|his|characters|,|he|does|n't|hold|them|in|contempt|.\nIf|your|taste|runs|to|`|difficult|'|films|you|absolutely|ca|n't|miss|it|.\n(|City|)|reminds|us|how|realistically|nuanced|a|Robert|De|Niro|performance|can|be|when|he|is|not|more|lucratively|engaged|in|the|shameless|self-caricature|of|`|Analyze|This|'|(|1999|)|and|`|Analyze|That|,|'|promised|(|or|threatened|)|for|later|this|year|.\n...|a|story|we|have|n't|seen|on|the|big|screen|before|,|and|it|'s|a|story|that|we|as|Americans|,|and|human|beings|,|should|know|.\nLike|Leon|,|it|'s|frustrating|and|still|oddly|likable|.\nAll|in|all|,|The|Count|of|Monte|Cristo|is|okay|,|but|it|is|surely|no|classic|,|like|the|novel|upon|which|it|is|based|.\nIf|you|can|stomach|the|rough|content|,|it|'s|worth|checking|out|for|the|performances|alone|.\nLooking|aristocratic|,|luminous|yet|careworn|in|Jane|Hamilton|'s|exemplary|costumes|,|Rampling|gives|a|performance|that|could|not|be|improved|upon|.|'\n...|Mafia|,|rap|stars|and|hood|rats|butt|their|ugly|heads|in|a|regurgitation|of|cinematic|violence|that|gives|brutal|birth|to|an|unlikely|,|but|likable|,|hero|.|'\nOn|this|tricky|topic|,|Tadpole|is|very|much|a|step|in|the|right|direction|,|with|its|blend|of|frankness|,|civility|and|compassion|.\nFun|,|flip|and|terribly|hip|bit|of|cinematic|entertainment|.\nMontias|...|pumps|a|lot|of|energy|into|his|nicely|nuanced|narrative|and|surrounds|himself|with|a|cast|of|quirky|--|but|not|stereotyped|--|street|characters|.\nFalls|neatly|into|the|category|of|Good|Stupid|Fun|.\nThe|film|'s|performances|are|thrilling|.\nEven|in|its|most|tedious|scenes|,|Russian|Ark|is|mesmerizing|.\nThe|continued|good|chemistry|between|Carmen|and|Juni|is|what|keeps|this|slightly|disappointing|sequel|going|,|with|enough|amusing|banter|--|blessedly|curse-free|--|to|keep|both|kids|and|parents|entertained|.\nReggio|'s|continual|visual|barrage|is|absorbing|as|well|as|thought-provoking|.\nUnfortunately|,|it|appears|that|(|Jackie|)|Chan|'s|US|influence|is|starting|to|show|in|his|Hong|Kong|films|.\nIt|all|adds|up|to|good|fun|.\nA|big|,|gorgeous|,|sprawling|swashbuckler|that|delivers|its|diversions|in|grand|,|uncomplicated|fashion|.\nThe|wanton|slipperiness|of|\\*|Corpus|and|its|amiable|jerking|and|reshaping|of|physical|time|and|space|would|make|it|a|great|piece|to|watch|with|kids|and|use|to|introduce|video|as|art|.\nA|stunning|and|overwhelmingly|cogent|case|for|Kissinger|as|a|calculating|war|criminal|.\nSade|is|an|engaging|look|at|the|controversial|eponymous|and|fiercely|atheistic|hero|.\na|quiet|,|pure|,|elliptical|film\nKinnear|does|n't|aim|for|our|sympathy|,|but|rather|delivers|a|performance|of|striking|skill|and|depth|.\nThe|subtle|strength|of|``|Elling|''|is|that|it|never|loses|touch|with|the|reality|of|the|grim|situation|.\nA|study|in|shades|of|gray|,|offering|itself|up|in|subtle|plot|maneuvers|...\nThe|format|gets|used|best|...|to|capture|the|dizzying|heights|achieved|by|motocross|and|BMX|riders|,|whose|balletic|hotdogging|occasionally|ends|in|bone-crushing|screwups|.\nHas|a|lot|of|the|virtues|of|Eastwood|at|his|best|.\nChilling|but|uncommercial|look|into|the|mind|of|Jeffrey|Dahmer|,|serial|killer|.\nThough|it|'s|become|almost|redundant|to|say|so|,|major|kudos|go|to|Leigh|for|actually|casting|people|who|look|working-class|.\nIt|deserves|to|be|seen|by|anyone|with|even|a|passing|interest|in|the|events|shaping|the|world|beyond|their|own|horizons|.\nA|movie|that|reminds|us|of|just|how|exciting|and|satisfying|the|fantasy|cinema|can|be|when|it|'s|approached|with|imagination|and|flair|.\nThanks|to|Scott|'s|charismatic|Roger|and|Eisenberg|'s|sweet|nephew|,|Roger|Dodger|is|one|of|the|most|compelling|variations|on|In|the|Company|of|Men|.\nNine|Queens|is|not|only|than|a|frighteningly|capable|debut|and|genre|piece|,|but|also|a|snapshot|of|a|dangerous|political|situation|on|the|verge|of|coming|to|a|head|.\nIt|'s|the|chemistry|between|the|women|and|the|droll|scene-stealing|wit|and|wolfish|pessimism|of|Anna|Chancellor|that|makes|this|``|Two|Weddings|and|a|Funeral|''|fun|.\nWill|amuse|and|provoke|adventurous|adults|in|specialty|venues|.\nYou|do|n't|have|to|know|about|music|to|appreciate|the|film|'s|easygoing|blend|of|comedy|and|romance|.\nA|film|about|a|young|man|finding|God|that|is|accessible|and|touching|to|the|marrow|.\nFor|the|first|time|in|years|,|De|Niro|digs|deep|emotionally|,|perhaps|because|he|'s|been|stirred|by|the|powerful|work|of|his|co-stars|.\nThe|film|'s|snags|and|stumblings|are|more|than|compensated|for|by|its|wryly|subversive|tone|.\nInside|the|film|'s|conflict-powered|plot|there|is|a|decent|moral|trying|to|get|out|,|but|it|'s|not|that|,|it|'s|the|tension|that|keeps|you|in|your|seat|.\nAffleck|and|Jackson|are|good|sparring|partners|.\nThe|old-world|-|meets-new|mesh|is|incarnated|in|the|movie|'s|soundtrack|,|a|joyful|effusion|of|disco|Bollywood|that|,|by|the|end|of|Monsoon|Wedding|,|sent|my|spirit|soaring|out|of|the|theater|.\nAn|effectively|creepy|,|fear-inducing|(|not|fear-reducing|)|film|from|Japanese|director|Hideo|Nakata|,|who|takes|the|superstitious|curse|on|chain|letters|and|actually|applies|it|.\nHaving|had|the|good|sense|to|cast|actors|who|are|,|generally|speaking|,|adored|by|the|movie-going|public|,|Khouri|then|gets|terrific|performances|from|them|all|.\nA|subtle|and|well-crafted|(|for|the|most|part|)|chiller|.\nWarm|Water|Under|a|Red|Bridge|is|a|quirky|and|poignant|Japanese|film|that|explores|the|fascinating|connections|between|women|,|water|,|nature|,|and|sexuality|.\nAlthough|laced|with|humor|and|a|few|fanciful|touches|,|the|film|is|a|refreshingly|serious|look|at|young|women|.\nThe|best|revenge|may|just|be|living|well|because|this|film|,|unlike|other|Dumas|adaptations|,|is|far|more|likened|to|a|treasure|than|a|lengthy|jail|sentence|.\nA|delectable|and|intriguing|thriller|filled|with|surprises|,|Read|My|Lips|is|an|original|.\nThis|is|a|story|of|two|misfits|who|do|n't|stand|a|chance|alone|,|but|together|they|are|magnificent|.\nHighbrow|self-appointed|guardians|of|culture|need|not|apply|,|but|those|who|loved|Cool|as|Ice|have|at|last|found|a|worthy|follow-up|.\nOne|of|creepiest|,|scariest|movies|to|come|along|in|a|long|,|long|time|,|easily|rivaling|Blair|Witch|or|The|Others|.\nMaud|and|Roland|'s|search|for|an|unknowable|past|makes|for|a|haunting|literary|detective|story|,|but|LaBute|pulls|off|a|neater|trick|in|Possession|:|He|makes|language|sexy|.\nPacino|is|brilliant|as|the|sleep-deprived|Dormer|,|his|increasing|weariness|as|much|existential|as|it|is|physical|.\nRare|Birds|has|more|than|enough|charm|to|make|it|memorable|.\nManages|to|be|sweet|and|wickedly|satisfying|at|the|same|time|.\nThis|Nickleby|thing|might|have|more|homosexual|undertones|than|an|Eddie|Murphy|film|.\nAnd|just|when|you|think|it|ca|n't|get|any|more|gay|,|in|pops|Nathan|Lane|.\nNo|sophomore|slump|for|director|Sam|Mendes|,|who|segues|from|Oscar|winner|to|Oscar-winning|potential|with|a|smooth|sleight|of|hand|.\nThe|movie|is|n't|just|hilarious|:|It|'s|witty|and|inventive|,|too|,|and|in|hindsight|,|it|is|n't|even|all|that|dumb|.\nOld-form|moviemaking|at|its|best|.\nAhhhh|...|revenge|is|sweet|!\nYakusho|and|Shimizu|...|create|engaging|characterizations|in|Imamura|'s|lively|and|enjoyable|cultural|mix|.\nYou|will|emerge|with|a|clearer|view|of|how|the|gears|of|justice|grind|on|and|the|death|report|comes|to|share|airtime|alongside|the|farm|report|.\nRuzowitzky|has|taken|this|mothball-y|stuff|and|made|a|rather|sturdy|,|old-fashioned|entertainment|out|of|it|.\nIn|spite|of|Good|Housekeeping|'s|unsavory|characters|and|WWF|mentality|,|this|white|trash|War|of|the|Roses|is|a|surprisingly|engaging|film|.\nCollateral|Damage|finally|delivers|the|goods|for|Schwarzenegger|fans|.\nThere|has|always|been|something|likable|about|the|Marquis|de|Sade|.\nAs|a|first-time|director|,|Paxton|has|tapped|something|in|himself|as|an|actor|that|provides|Frailty|with|its|dark|soul|.\nFor|the|most|part|,|director|Anne-Sophie|Birot|'s|first|feature|is|a|sensitive|,|extraordinarily|well-acted|drama|.\nBy|the|time|we|learn|that|Andrew|'s|Turnabout|Is|Fair|Play|is|every|bit|as|awful|as|Borchardt|'s|Coven|,|we|can|enjoy|it|anyway|.\nThis|riveting|World|War|II|moral|suspense|story|deals|with|the|shadow|side|of|American|culture|:|racial|prejudice|in|its|ugly|and|diverse|forms|.\nA|tender|,|heartfelt|family|drama|.\nA|difficult|,|absorbing|film|that|manages|to|convey|more|substance|despite|its|repetitions|and|inconsistencies|than|do|most|films|than|are|far|more|pointed|and|clear|.\nFor|the|most|part|,|it|'s|a|work|of|incendiary|genius|,|steering|clear|of|knee-jerk|reactions|and|quick|solutions|.\nIt|has|the|charm|of|the|original|American|road|movies|,|feasting|on|the|gorgeous|,|ramshackle|landscape|of|the|filmmaker|'s|motherland|.\n(|Chaiken|'s|)|talent|lies|in|an|evocative|,|accurate|observation|of|a|distinctive|milieu|and|in|the|lively|,|convincing|dialogue|she|creates|for|her|characters|.\nIn|all|,|this|is|a|watchable|movie|that|'s|not|quite|the|memorable|experience|it|might|have|been|.\nHuppert|'s|superbly|controlled|display|of|murderous|vulnerability|ensures|that|malice|has|a|very|human|face|.\nMy|thoughts|were|focused|on|the|characters|.\nThat|is|a|compliment|to|Kuras|and|Miller|.\nIf|I|had|been|thinking|about|the|visual|medium|,|they|would|have|been|doing|something|wrong|.\nOne|of|the|more|intelligent|children|'s|movies|to|hit|theaters|this|year|.\nRemember|the|kind|of|movie|we|were|hoping|``|Ecks|vs.|Sever|''|or|``|xXx|''|was|going|to|be|?\nThis|is|it|.\nNot|for|the|prurient|or|squeamish|,|it|'s|a|daring|if|overlong|examination|of|an|idolized|culture|,|self-loathing|and|sexual|politics|.\nA|cartoon|that|'s|truly|cinematic|in|scope|,|and|a|story|that|'s|compelling|and|heartfelt|--|even|if|the|heart|belongs|to|a|big|,|four-legged|herbivore|.\nThe|film|'s|almost|unbearable|portrait|of|sadness|and|grief|transcends|its|specific|story|to|speak|to|the|ways|in|which|need|,|history|and|presumption|tangle|,|and|sometimes|destroy|,|blood|ties|.\nTravels|a|fascinating|arc|from|hope|and|euphoria|to|reality|and|disillusionment|.\nThere|'s|something|auspicious|,|and|daring|,|too|,|about|the|artistic|instinct|that|pushes|a|majority-oriented|director|like|Steven|Spielberg|to|follow|A.I.|with|this|challenging|report|so|liable|to|unnerve|the|majority|.\nFor|anyone|unfamiliar|with|pentacostal|practices|in|general|and|theatrical|phenomenon|of|Hell|Houses|in|particular|,|it|'s|an|eye-opener|.\nIt|seems|like|I|have|been|waiting|my|whole|life|for|this|movie|and|now|I|ca|n't|wait|for|the|sequel|.\nIt|'s|a|bit|disappointing|that|it|only|manages|to|be|decent|instead|of|dead|brilliant|.\nAn|operatic|,|sprawling|picture|that|'s|entertainingly|acted|,|magnificently|shot|and|gripping|enough|to|sustain|most|of|its|170-minute|length|.\nThe|far|future|may|be|awesome|to|consider|,|but|from|period|detail|to|matters|of|the|heart|,|this|film|is|most|transporting|when|it|stays|put|in|the|past|.\nIt|inspires|a|continuing|and|deeply|satisfying|awareness|of|the|best|movies|as|monumental|`|picture|shows|.|'\nAwesome|creatures|,|breathtaking|scenery|,|and|epic|battle|scenes|add|up|to|another|`|spectacular|spectacle|.|'\nBy|candidly|detailing|the|politics|involved|in|the|creation|of|an|extraordinary|piece|of|music|,|(|Jones|)|calls|our|attention|to|the|inherent|conflict|between|commerce|and|creativity|.\nIt|'s|unnerving|to|see|Recoing|'s|bizzarre|reaction|to|his|unemployment|.\nGood|film|,|but|very|glum|.\nMuch|as|we|might|be|interested|in|gratuitous|sexualization|,|Haneke|has|a|different|objective|in|mind|--|namely|the|implications|of|our|craving|for|fake|stimulation|.\nDazzling|in|its|complexity|,|disturbing|for|its|extraordinary|themes|,|The|Piano|Teacher|is|a|film|that|defies|categorisation|.\nIt|haunts|,|horrifies|,|startles|and|fascinates|;|it|is|impossible|to|look|away|.\nAh|yes|,|and|then|there|'s|the|music|...\nIt|has|charm|to|spare|,|and|unlike|many|romantic|comedies|,|it|does|not|alienate|either|gender|in|the|audience|.\nAlthough|Jackson|is|doubtless|reserving|the|darkest|hours|for|The|Return|of|the|King|,|we|long|for|a|greater|sense|of|urgency|in|the|here|and|now|of|The|Two|Towers|.\nIt|is|great|summer|fun|to|watch|Arnold|and|his|buddy|Gerald|bounce|off|a|quirky|cast|of|characters|.\nBleakly|funny|,|its|characters|all|the|more|touching|for|refusing|to|pity|or|memorialize|themselves|.\nIt|will|not|appeal|to|the|impatient|,|but|those|who|like|long|books|and|movies|will|admire|the|way|it|accumulates|power|and|depth|.\nThis|flick|is|about|as|cool|and|crowd-pleasing|as|a|documentary|can|get|.\n``|The|Ring|''|is|pretty|much|an|English-language|copy|of|the|film|that|inspired|it|,|and|it|carries|the|same|strengths|and|flaws|.\nThe|Wild|Thornberrys|Movie|is|a|jolly|surprise|.\nGriffiths|proves|she|'s|that|rare|luminary|who|continually|raises|the|standard|of|her|profession|.\nPrancing|his|way|through|the|tailor-made|part|of|a|male|hooker|approaching|the|end|of|his|vitality|,|Jagger|obviously|relishes|every|self-mocking|moment|.\nOffers|much|to|enjoy|...|and|a|lot|to|mull|over|in|terms|of|love|,|loyalty|and|the|nature|of|staying|friends|.\nAn|important|movie|,|a|reminder|of|the|power|of|film|to|move|us|and|to|make|us|examine|our|values|.\nIs|this|love|or|is|it|masochism|?\nBinoche|makes|it|interesting|trying|to|find|out|.\nThe|mesmerizing|performances|of|the|leads|keep|the|film|grounded|and|keep|the|audience|riveted|.\nWorth|watching|for|Dong|Jie|'s|performance|--|and|for|the|way|it|documents|a|culture|in|the|throes|of|rapid|change|.\nTwo|hours|fly|by|--|opera|'s|a|pleasure|when|you|do|n't|have|to|endure|intermissions|--|and|even|a|novice|to|the|form|comes|away|exhilarated|.\nIt|'s|one|heck|of|a|character|study|--|not|of|Hearst|or|Davies|but|of|the|unique|relationship|between|them|.\nCandid|Camera|on|methamphetamines|.\nA|subject|like|this|should|inspire|reaction|in|its|audience|;|The|Pianist|does|not|.\nEquilibrium|is|what|George|Orwell|might|have|imagined|had|today|'s|mood-altering|drug|therapy|been|envisioned|by|chemists|in|1949|.\nCreepy|,|authentic|and|dark|.\nThis|disturbing|bio-pic|is|hard|to|forget|.\nMartin|and|Barbara|are|complex|characters|--|sometimes|tender|,|sometimes|angry|--|and|the|delicate|performances|by|Sven|Wollter|and|Viveka|Seldahl|make|their|hopes|and|frustrations|vivid|.\nA|twisty|,|moody|slice|of|Southern|Gothic|...\nIt|'s|so|good|that|you|can|practically|see|the|Hollywood|`|suits|'|trying|to|put|together|the|cast|and|filmmaking|team|for|the|all-too|-|inevitable|American|remake|.\nThe|weight|of|the|piece|,|the|unerring|professionalism|of|the|chilly|production|,|and|the|fascination|embedded|in|the|lurid|topic|prove|recommendation|enough|.\nAn|absurdist|comedy|about|alienation|,|separation|and|loss|.\n`|They|'|begins|and|ends|with|scenes|so|terrifying|I|'m|still|stunned|.\nAnd|I|'ve|decided|to|leave|a|light|on|every|night|from|now|on|.\nThis|tenth|feature|is|a|big|deal|,|indeed|--|at|least|the|third-best|,|and|maybe|even|a|notch|above|the|previous|runner-up|,|Nicholas|Meyer|'s|Star|Trek|VI|:|The|Undiscovered|Country|.\n...|with|``|The|Bourne|Identity|''|we|return|to|the|more|traditional|action|genre|.\nBeneath|Clouds|is|a|succinct|low-budget|film|whose|compelling|characters|and|intelligent|script|are|exactly|what|was|missing|from|Rabbit-Proof|Fence|.\nThe|film|is|a|contrivance|,|as|artificial|as|the|video|games|Japanese|teens|play|in|a|nightclub|sequence|,|but|it|'s|an|enjoyable|one|.\nHolm|...|embodies|the|character|with|an|effortlessly|regal|charisma|.\nIt|is|amusing|,|and|that|'s|all|it|needs|to|be|.\nAmong|the|year|'s|most|intriguing|explorations|of|alientation|.\nA|full|world|has|been|presented|onscreen|,|not|some|series|of|carefully|structured|plot|points|building|to|a|pat|resolution|.\nSeldom|has|a|movie|so|closely|matched|the|spirit|of|a|man|and|his|work|.\nAudrey|Tatou|has|a|knack|for|picking|roles|that|magnify|her|outrageous|charm|,|and|in|this|literate|French|comedy|,|she|'s|as|morning-glory|exuberant|as|she|was|in|Amélie|.\nThe|movie|has|an|infectious|exuberance|that|will|engage|anyone|with|a|passing|interest|in|the|skate\\/surf|culture|,|the|L.A.|beach|scene|and|the|imaginative|(|and|sometimes|illegal|)|ways|kids|can|make|a|playground|out|of|the|refuse|of|adults|.\nEven|if|you|do|n't|think|(|Kissinger|'s|)|any|more|guilty|of|criminal|activity|than|most|contemporary|statesmen|,|he|'d|sure|make|a|courtroom|trial|great|fun|to|watch|.\nThe|story|and|structure|are|well-honed|.\nFresnadillo|'s|dark|and|jolting|images|have|a|way|of|plying|into|your|subconscious|like|the|nightmare|you|had|a|week|ago|that|wo|n't|go|away|.\nIt|'s|made|with|deftly|unsettling|genre|flair|.\nIt|just|may|inspire|a|few|younger|moviegoers|to|read|Stevenson|'s|book|,|which|is|a|treasure|in|and|of|itself|.\nFunny|but|perilously|slight|.\nOverall|very|good|for|what|it|'s|trying|to|do|.\nForgettable|horror|--|more|gory|than|psychological|--|with|a|highly|satisfying|quotient|of|Friday-night|excitement|and|Milla|power|.\nRamsay|,|as|in|Ratcatcher|,|remains|a|filmmaker|with|an|acid|viewpoint|and|a|real|gift|for|teasing|chilly|poetry|out|of|lives|and|settings|that|might|otherwise|seem|drab|and|sordid|.\nIt|may|seem|long|at|110|minutes|if|you|'re|not|a|fan|,|because|it|includes|segments|of|12|songs|at|a|reunion|concert|.\nA|lean|,|deftly|shot|,|well-acted|,|weirdly|retro|thriller|that|recalls|a|raft|of|'60s|and|'70s|European-set|spy|pictures|.\nIt|proves|quite|compelling|as|an|intense|,|brooding|character|study|.\nThe|Son|'s|Room|is|a|triumph|of|gentility|that|earns|its|moments|of|pathos|.\nMorton|uses|her|face|and|her|body|language|to|bring|us|Morvern|'s|soul|,|even|though|the|character|is|almost|completely|deadpan|.\nThe|film|may|appear|naked|in|its|narrative|form|...|but|it|goes|deeper|than|that|,|to|fundamental|choices|that|include|the|complexity|of|the|Catholic|doctrine\nA|superbly|acted|and|funny\\/gritty|fable|of|the|humanizing|of|one|woman|at|the|hands|of|the|unseen|forces|of|fate|.\nOne|of|the|smartest|takes|on|singles|culture|I|'ve|seen|in|a|long|time|.\nThere|is|a|fabric|of|complex|ideas|here|,|and|feelings|that|profoundly|deepen|them|.\nCQ|'s|reflection|of|artists|and|the|love|of|cinema-and-self|suggests|nothing|less|than|a|new|voice|that|deserves|to|be|considered|as|a|possible|successor|to|the|best|European|directors|.\nThe|emotions|are|raw|and|will|strike|a|nerve|with|anyone|who|'s|ever|had|family|trauma|.\nHoly|mad|maniac|in|a|mask|,|Splat-Man|!\nGood|old-fashioned|slash-and-hack|is|back|!\nAs|unseemly|as|its|title|suggests|.\nThe|French|are|rather|good|at|this|kind|of|thing|,|unlike|the|Americans|,|who|have|a|passion|for|Musketeers|,|only|to|spoof|them|.\nThe|fly-on-the-wall|method|used|to|document|rural|French|school|life|is|a|refreshing|departure|from|the|now|more|prevalent|technique|of|the|docu-makers|being|a|visible|part|of|their|work|.\nIt|'s|an|offbeat|treat|that|pokes|fun|at|the|democratic|exercise|while|also|examining|its|significance|for|those|who|take|part|.\nAllows|us|to|hope|that|Nolan|is|poised|to|embark|a|major|career|as|a|commercial|yet|inventive|filmmaker|.\nManeuvers|skillfully|through|the|plot|'s|hot|brine|--|until|it|'s|undone|by|the|sogginess|of|its|contemporary|characters|,|and|actors|.\nIt|has|the|ability|to|offend|and|put|off|everyone|,|but|it|holds|you|with|its|outrageousness|.\nAnchored|by|Friel|and|Williams|'s|exceptional|performances|,|the|film|'s|power|lies|in|its|complexity|.\nNothing|is|black|and|white|.\nIt|'s|a|charming|and|often|affecting|journey|.\nNo|screen|fantasy-adventure|in|recent|memory|has|the|showmanship|of|Clones|'|last|45|minutes|.\nA|poignant|and|compelling|story|about|relationships|,|Food|of|Love|takes|us|on|a|bumpy|but|satisfying|journey|of|the|heart|.\nThe|Chateau|cleverly|probes|the|cross-cultural|differences|between|Gauls|and|Yanks|.\nNot|since|Tom|Cruise|in|Risky|Business|has|an|actor|made|such|a|strong|impression|in|his|underwear|.\nAside|from|minor|tinkering|,|this|is|the|same|movie|you|probably|loved|in|1994|,|except|that|it|looks|even|better|.\nUses|high|comedy|to|evoke|surprising|poignance|.\nIt|confirms|Fincher|'s|status|as|a|film|maker|who|artfully|bends|technical|know-how|to|the|service|of|psychological|insight|.\nVera|'s|three|actors|--|Mollà|,|Gil|and|Bardem|--|excel|in|insightful|,|empathetic|performances|.\nA|marvel|like|none|you|'ve|seen|.\nWith|tightly|organized|efficiency|,|numerous|flashbacks|and|a|constant|edge|of|tension|,|Miller|'s|film|is|one|of|2002|'s|involvingly|adult|surprises|.\nMr.|Tsai|is|a|very|original|artist|in|his|medium|,|and|What|Time|Is|It|There|?\nshould|be|seen|at|the|very|least|for|its|spasms|of|absurdist|humor|.\nWriter\\/director|Mark|Romanek|spotlights|the|underlying|caste|system|in|America|.\nIt|'s|a|scathing|portrayal|.\nThis|is|a|good|script|,|good|dialogue|,|funny|even|for|adults|.\nThe|characters|are|interesting|and|often|very|creatively|constructed|from|figure|to|backstory|.\nThe|film|will|play|equally|well|on|both|the|standard|and|giant|screens|.\nMoody|,|heartbreaking|,|and|filmed|in|a|natural|,|unforced|style|that|makes|its|characters|seem|entirely|convincing|even|when|its|script|is|not|.\nNot|a|film|to|rival|To|Live|,|but|a|fine|little|amuse-bouche|to|keep|your|appetite|whetted|.\nTrue|tale|of|courage|--|and|complicity|--|at|Auschwitz|is|a|harrowing|drama|that|tries|to|tell|of|the|unspeakable|.\nGives|you|the|steady|pulse|of|life|in|a|beautiful|city|viewed|through|the|eyes|of|a|character|who|,|in|spite|of|tragic|loss|and|increasing|decrepitude|,|knows|in|his|bones|that|he|is|one|of|the|luckiest|men|alive|.\nMacDowell|,|whose|wifty|Southern|charm|has|anchored|lighter|affairs|...|brings|an|absolutely|riveting|conviction|to|her|role|.\nWhat|Time|Is|It|There|?\nis|not|easy|.\nIt|haunts|you|,|you|ca|n't|forget|it|,|you|admire|its|conception|and|are|able|to|resolve|some|of|the|confusions|you|had|while|watching|it|.\nif|you|are|an|actor|who|can|relate|to|the|search|for|inner|peace|by|dramatically|depicting|the|lives|of|others|onstage|,|then|Esther|'s|story|is|a|compelling|quest|for|truth|.\nAlthough|the|level|of|the|comedy|declines|as|the|movie|proceeds|,|there|'s|no|denying|the|fun|of|watching|De|Niro|and|Crystal|having|fun|.\nClaude|Chabrol|has|here|a|thriller|without|thrills|,|but|that|'s|okay|.\nFor|movie|lovers|as|well|as|opera|lovers|,|Tosca|is|a|real|treat|.\nUnflinchingly|bleak|and|desperate\nMoretti|'s|compelling|anatomy|of|grief|and|the|difficult|process|of|adapting|to|loss|.\nChallenging|,|intermittently|engrossing|and|unflaggingly|creative|.\nBut|it|'s|too|long|and|too|convoluted|and|it|ends|in|a|muddle|.\nThe|vivid|lead|performances|sustain|interest|and|empathy|,|but|the|journey|is|far|more|interesting|than|the|final|destination|.\nA|painfully|funny|ode|to|bad|behavior|.\n`|Easily|my|choice|for|one|of|the|year|'s|best|films|.|'\nCharles|'|entertaining|film|chronicles|Seinfeld|'s|return|to|stand-up|comedy|after|the|wrap|of|his|legendary|sitcom|,|alongside|wannabe|comic|Adams|'|attempts|to|get|his|shot|at|the|big|time|.\nThat|dogged|good|will|of|the|parents|and|`|vain|'|Jia|'s|defoliation|of|ego|,|make|the|film|touching|despite|some|doldrums|.\nThe|movie|is|for|fans|who|ca|n't|stop|loving|anime|,|and|the|fanatical|excess|built|into|it|.\nThe|volatile|dynamics|of|female|friendship|is|the|subject|of|this|unhurried|,|low-key|film|that|is|so|off-Hollywood|that|it|seems|positively|French|in|its|rhythms|and|resonance|.\nA|densely|constructed|,|highly|referential|film|,|and|an|audacious|return|to|form|that|can|comfortably|sit|among|Jean-Luc|Godard|'s|finest|work|.\nMichael|Gerbosi|'s|script|is|economically|packed|with|telling|scenes|.\nA|strangely|compelling|and|brilliantly|acted|psychological|drama|.\nCandid|and|comfortable|;|a|film|that|deftly|balances|action|and|reflection|as|it|lets|you|grasp|and|feel|the|passion|others|have|for|their|work|.\nOpen-minded|kids|--|kids|who|read|,|kids|who|dream|--|will|be|comforted|by|the|way|it|deals|with|big|issues|like|death|and|destiny|.\nBennett|'s|naturalistic|performance|speaks|volumes|more|truth|than|any|`|reality|'|show|,|and|anybody|contemplating|their|own|drastic|life|changes|should|watch|Some|Body|first|.\n...|a|good|,|if|not|entirely|fresh|,|look|at|war|.\nThe|film|is|powerful|,|accessible|and|funny|.\nYou|wo|n't|miss|its|messages|,|but|you|'ll|be|entertained|as|well|.\n``|Frailty|''|starts|out|like|a|typical|Bible|killer|story|,|but|it|turns|out|to|be|significantly|different|(|and|better|)|than|most|films|with|this|theme|.\nIf|you|dig|on|David|Mamet|'s|mind|tricks|...|rent|this|movie|and|enjoy|!\nThe|primitive|force|of|this|film|seems|to|bubble|up|from|the|vast|collective|memory|of|the|combatants|.\nIt|'s|like|watching|a|nightmare|made|flesh|.\nIt|is|the|sheer|,|selfish|,|wound-licking|,|bar-scrapping|doggedness|of|Leon|'s|struggle|to|face|and|transmute|his|demons|that|makes|the|movie|a|spirited|and|touching|occasion|,|despite|its|patchy|construction|.\nA|gorgeous|,|high-spirited|musical|from|India|that|exquisitely|blends|music|,|dance|,|song|,|and|high|drama|.\nIt|'s|hard|to|imagine|Alan|Arkin|being|better|than|he|is|in|this|performance|.\nFor|those|who|pride|themselves|on|sophisticated|,|discerning|taste|,|this|might|not|seem|like|the|proper|cup|of|tea|,|however|it|is|almost|guaranteed|that|even|the|stuffiest|cinema|goers|will|laugh|their|\\*\\*\\*|off|for|an|hour-and-a-half|.\nDespite|the|2-D|animation|,|The|Wild|Thornberrys|Movie|makes|for|a|surprisingly|cinematic|experience|.\n...|a|fun|little|timewaster|,|helped|especially|by|the|cool|presence|of|Jean|Reno|.\n(|Majidi|)|makes|us|think|twice|about|immigrants|we|see|around|us|every|day|.\nThough|only|60|minutes|long|,|the|film|is|packed|with|information|and|impressions|.\nI|have|no|way|of|knowing|exactly|how|much|is|exaggeration|,|but|I|'ve|got|a|creepy|feeling|that|the|film|is|closer|to|the|mark|than|I|want|to|believe|.\nImmersing|us|in|the|endlessly|inventive|,|fiercely|competitive|world|of|hip-hop|DJs|,|the|project|is|sensational|and|revelatory|,|even|if|scratching|makes|you|itch|.\nFurther|proof|that|the|epicenter|of|cool|,|beautiful|,|thought-provoking|foreign|cinema|is|smack-dab|in|the|middle|of|Dubya|'s|Axis|of|Evil|.\nThere|'s|really|only|one|good|idea|in|this|movie|,|but|the|director|runs|with|it|and|presents|it|with|an|unforgettable|visual|panache|.\nA|simple|,|but|gritty|and|well-acted|ensemble|drama|that|encompasses|a|potent|metaphor|for|a|country|still|dealing|with|its|fascist|past|.\nLovely|and|poignant|.\nPuts|a|human|face|on|a|land|most|Westerners|are|unfamiliar|with|.\nI|ca|n't|say|that|I|liked|Homeboy|;|it|'d|be|more|accurate|to|say|that|I|found|it|intriguing|,|bizarre|,|Dogma-like|in|spots|-|and|quite|truthful|,|in|its|way|.\nDisplaying|about|equal|amounts|of|naiveté|,|passion|and|talent|,|Beneath|Clouds|establishes|Sen|as|a|filmmaker|of|considerable|potential|.\nThe|vitality|of|the|actors|keeps|the|intensity|of|the|film|high|,|even|as|the|strafings|blend|together|.\nNot|since|Japanese|filmmaker|Akira|Kurosawa|'s|Ran|have|the|savagery|of|combat|and|the|specter|of|death|been|visualized|with|such|operatic|grandeur|.\nWe|learn|a|lot|about|dying|coral|and|see|a|lot|of|life|on|the|reef|.\nIf|the|first|Men|in|Black|was|money|,|the|second|is|small|change|.\nBut|it|still|jingles|in|the|pocket|.\nIt|'s|fun|lite|.\nPassable|entertainment|,|but|it|'s|the|kind|of|motion|picture|that|wo|n't|make|much|of|a|splash|when|it|'s|released|,|and|will|not|be|remembered|long|afterwards|.\nI|just|loved|every|minute|of|this|film|.\nThis|is|a|winning|ensemble|comedy|that|shows|Canadians|can|put|gentle|laughs|and|equally|gentle|sentiments|on|the|button|,|just|as|easily|as|their|counterparts|anywhere|else|in|the|world|.\nJust|as|moving|,|uplifting|and|funny|as|ever|.\nMy|Wife|Is|an|Actress|is|an|utterly|charming|French|comedy|that|feels|so|American|in|sensibility|and|style|it|'s|virtually|its|own|Hollywood|remake|.\nIt|will|grip|even|viewers|who|are|n't|interested|in|rap|,|as|it|cuts|to|the|heart|of|American|society|in|an|unnerving|way|.\nA|muckraking|job|,|the|cinematic|equivalent|of|a|legal|indictment|,|and|a|fairly|effective|one|at|that|.\nA|tender|,|witty|,|captivating|film|about|friendship|,|love|,|memory|,|trust|and|loyalty|.\nBelongs|to|Daniel|Day-Lewis|as|much|as|it|belongs|to|Martin|Scorsese|;|it|'s|a|memorable|performance|in|a|big|,|brassy|,|disturbing|,|unusual|and|highly|successful|film|.\nAn|exhilarating|futuristic|thriller-noir|,|Minority|Report|twists|the|best|of|technology|around|a|gripping|story|,|delivering|a|riveting|,|pulse|intensifying|escapist|adventure|of|the|first|order\nA|psychological|thriller|with|a|genuinely|spooky|premise|and|an|above-average|cast|,|actor|Bill|Paxton|'s|directing|debut|is|a|creepy|slice|of|gothic|rural|Americana|.\nWhile|locals|will|get|a|kick|out|of|spotting|Cleveland|sites|,|the|rest|of|the|world|will|enjoy|a|fast-paced|comedy|with|quirks|that|might|make|the|award-winning|Coen|brothers|envious|.\nPumpkin|takes|an|admirable|look|at|the|hypocrisy|of|political|correctness|,|but|it|does|so|with|such|an|uneven|tone|that|you|never|know|when|humor|ends|and|tragedy|begins|.\nIf|you|'re|hard|up|for|raunchy|college|humor|,|this|is|your|ticket|right|here|.\nFew|films|capture|so|perfectly|the|hopes|and|dreams|of|little|boys|on|baseball|fields|as|well|as|the|grown|men|who|sit|in|the|stands|.\nCorny|,|schmaltzy|and|predictable|,|but|still|manages|to|be|kind|of|heartwarming|,|nonetheless|.\nIt|'s|the|perfect|kind|of|film|to|see|when|you|do|n't|want|to|use|your|brain|.\nAt|all|.\nWhile|it|regards|1967|as|the|key|turning|point|of|the|20th|century|,|and|returns|again|and|again|to|images|of|dissidents|in|the|streets|,|it|'s|alarmingly|current|.\nFeature|debuter|D.J.|Caruso|directs|a|crack|ensemble|cast|,|bringing|screenwriter|Tony|Gayton|'s|narcotics|noir|to|life|.\nEvery|dance|becomes|about|seduction|,|where|backstabbing|and|betrayals|are|celebrated|,|and|sex|is|currency|.\nHarris|commands|the|screen|,|using|his|frailty|to|suggest|the|ravages|of|a|life|of|corruption|and|ruthlessness|.\nStephen|Rea|,|Aidan|Quinn|,|and|Alan|Bates|play|Desmond|'s|legal|eagles|,|and|when|joined|by|Brosnan|,|the|sight|of|this|grandiloquent|quartet|lolling|in|pretty|Irish|settings|is|a|pleasant|enough|thing|,|`|tis|.\nDirector|of|photography|Benoit|Delhomme|shot|the|movie|in|delicious|colors|,|and|the|costumes|and|sets|are|grand|.\nThe|movie|'s|relatively|simple|plot|and|uncomplicated|morality|play|well|with|the|affable|cast|.\nThe|film|is|quiet|,|threatening|and|unforgettable|.\nThis|illuminating|documentary|transcends|our|preconceived|vision|of|the|Holy|Land|and|its|inhabitants|,|revealing|the|human|complexities|beneath|.\ndeliriously|funny|,|fast|and|loose|,|accessible|to|the|uninitiated|,|and|full|of|surprises\nTrademark|American|triteness|and|simplicity|are|tossed|out|the|window|with|the|intelligent|French|drama|that|deftly|explores|the|difficult|relationship|between|a|father|and|son|.\nOne|from|the|heart|.\nMore|concerned|with|Sade|'s|ideas|than|with|his|actions|.\nThe|movie|achieves|as|great|an|impact|by|keeping|these|thoughts|hidden|as|...|(|Quills|)|did|by|showing|them|.\nAn|entertaining|,|colorful|,|action-filled|crime|story|with|an|intimate|heart|.\nWhile|Undisputed|is|n't|exactly|a|high|,|it|is|a|gripping|,|tidy|little|movie|that|takes|Mr.|Hill|higher|than|he|'s|been|in|a|while|.\nThe|most|compelling|Wiseman|epic|of|recent|years|.\nThe|socio-histo-political|treatise|is|told|in|earnest|strides|...|(|and|)|personal|illusion|is|deconstructed|with|poignancy|.\nIt|'s|great|escapist|fun|that|recreates|a|place|and|time|that|will|never|happen|again|.\nGood|car|chases|,|great|fight|scenes|,|and|a|distinctive|blend|of|European|,|American|and|Asian|influences|.\nLiotta|put|on|30|pounds|for|the|role|,|and|has|completely|transformed|himself|from|his|smooth|,|Goodfellas|image|.\nA|woman|'s|pic|directed|with|resonance|by|Ilya|Chaiken|.\n(|Grant|'s|)|bumbling|magic|takes|over|the|film|,|and|it|turns|out|to|be|another|winning|star|vehicle|.\n...|Brian|De|Palma|is|utterly|mad|:|cinema|mad|,|set-piece|mad|,|style|mad|.\nIt|'s|a|beautiful|madness|.\nGenerally|provides|its|target|audience|of|youngsters|enough|stimulating|eye|and|ear|candy|to|make|its|moral|medicine|go|down|.\nThere|are|some|wonderfully|fresh|moments|that|smooth|the|moral|stiffness|with|human|kindness|and|hopefulness|.\nA|grimly|competent|and|stolid|and|earnest|military|courtroom|drama|.\nEscaping|the|studio|,|Piccoli|is|warmly|affecting|and|so|is|this|adroitly|minimalist|movie|.\nVery|psychoanalytical|--|provocatively|so|--|and|also|refreshingly|literary|.\nA|gorgeous|,|witty|,|seductive|movie|.\nThe|special|effects|and|many|scenes|of|weightlessness|look|as|good|or|better|than|in|the|original|,|while|the|Oscar-winning|sound|and|James|Horner|'s|rousing|score|make|good|use|of|the|hefty|audio|system|.\nOn|the|heels|of|The|Ring|comes|a|similarly|morose|and|humorless|horror|movie|that|,|although|flawed|,|is|to|be|commended|for|its|straight-ahead|approach|to|creepiness|.\nWith|Rabbit-Proof|Fence|,|Noyce|has|tailored|an|epic|tale|into|a|lean|,|economical|movie|.\n(|A|)|n|utterly|charming|and|hilarious|film|that|reminded|me|of|the|best|of|the|Disney|comedies|from|the|60s|.\nPreaches|to|two|completely|different|choirs|at|the|same|time|,|which|is|a|pretty|amazing|accomplishment|.\nThanks|to|Haynes|'|absolute|control|of|the|film|'s|mood|,|and|buoyed|by|three|terrific|performances|,|Far|From|Heaven|actually|pulls|off|this|stylistic|juggling|act|.\nBirthday|Girl|is|an|amusing|joy|ride|,|with|some|surprisingly|violent|moments|.\nMore|romantic|,|more|emotional|and|ultimately|more|satisfying|than|the|teary-eyed|original|.\nAn|appealingly|juvenile|trifle|that|delivers|its|share|of|laughs|and|smiles|.\nWriter-director|'s|Mehta|'s|effort|has|tons|of|charm|and|the|whimsy|is|in|the|mixture|,|the|intoxicating|masala|,|of|cultures|and|film|genres|.\nThe|draw|(|for|``|Big|Bad|Love|''|)|is|a|solid|performance|by|Arliss|Howard|.\nIt|gets|onto|the|screen|just|about|as|much|of|the|novella|as|one|could|reasonably|expect|,|and|is|engrossing|and|moving|in|its|own|right|.\nThe|terrific|and|bewilderingly|underrated|Campbell|Scott|gives|a|star|performance|that|is|nothing|short|of|mesmerizing|.\nCool|?\nThis|movie|is|a|snow|emergency|.\nLike|Mike|is|n't|interested|in|recycling|old|cliches|.\nIt|wants|to|tweak|them|with|a|taste|of|tangy|new|humor|.\nSmith|is|careful|not|to|make|fun|of|these|curious|owners|of|architectural|oddities|.\nInstead|,|he|shows|them|the|respect|they|are|due|.\nA|mess|when|it|comes|to|the|characters|and|writing|...|but|works|its|way|underneath|the|skin|like|few|movies|have|in|recent|memory|.\nDrops|you|into|a|dizzying|,|volatile|,|pressure-cooker|of|a|situation|that|quickly|snowballs|out|of|control|,|while|focusing|on|the|what|much|more|than|the|why|.\nZhang|...|has|done|an|amazing|job|of|getting|realistic|performances|from|his|mainly|nonprofessional|cast|.\nA|solid|examination|of|the|male|midlife|crisis|.\nIf|you|'re|in|the|mood|for|a|Bollywood|film|,|here|'s|one|for|you|.\nAs|the|two|leads|,|Lathan|and|Diggs|are|charming|and|have|chemistry|both|as|friends|and|lovers|.\nA|beguiling|,|slow-moving|parable|about|the|collision|of|past|and|present|on|a|remote|seacoast|in|Iran|.\nMy|Big|Fat|Greek|Wedding|uses|stereotypes|in|a|delightful|blend|of|sweet|romance|and|lovingly|dished|out|humor|.\nKept|aloft|largely|by|a|comically|adept|ensemble|.\nThe|sort|of|film|that|makes|me|miss|Hitchcock|,|but|also|feel|optimistic|that|there|'s|hope|for|popular|cinema|yet|.\nFirst-time|writer-director|Serry|shows|a|remarkable|gift|for|storytelling|with|this|moving|,|effective|little|film|.\nIt|cuts|to|the|core|of|what|it|actually|means|to|face|your|fears|,|to|be|a|girl|in|a|world|of|boys|,|to|be|a|boy|truly|in|love|with|a|girl|,|and|to|ride|the|big|metaphorical|wave|that|is|life|--|wherever|it|takes|you|.\nAtom|Egoyan|has|conjured|up|a|multilayered|work|that|tackles|any|number|of|fascinating|issues\nessentially|an|exceptionally|well-written|,|well-edited|,|well-directed|,|well-acted|,|bald|rip-off|of|Aliens|.\n`|De|Niro|...|is|a|veritable|source|of|sincere|passion|that|this|Hollywood|contrivance|orbits|around|.|'\nThe|whole|is|quite|entertaining|,|but|despite|its|virtues|,|there|is|an|unsettled|feeling|to|the|film|.\nWhile|its|careful|pace|and|seemingly|opaque|story|may|not|satisfy|every|moviegoer|'s|appetite|,|the|film|'s|final|scene|is|soaringly|,|transparently|moving|.\nHardly|a|masterpiece|,|but|it|introduces|viewers|to|a|good|charitable|enterprise|and|some|interesting|real|people|.\nBased|on|a|devilishly|witty|script|by|Heather|McGowan|and|Niels|Mueller|,|the|film|gets|great|laughs|,|but|never|at|the|expense|of|its|characters\nIt|'s|somewhat|clumsy|and|too|lethargically|paced|--|but|its|story|about|a|mysterious|creature|with|psychic|abilities|offers|a|solid|build-up|,|a|terrific|climax|,|and|some|nice|chills|along|the|way|.\nIf|you|'ve|ever|wondered|what|an|ending|without|the|input|of|studio|executives|or|test|audiences|would|look|like|,|here|it|is|.\nExciting|and|direct|,|with|ghost|imagery|that|shows|just|enough|to|keep|us|on|our|toes|.\nWhether|writer-director|Anne|Fontaine|'s|film|is|a|ghost|story|,|an|account|of|a|nervous|breakdown|,|a|trip|down|memory|lane|,|all|three|or|none|of|the|above|,|it|is|as|seductive|as|it|is|haunting|.\nWhat|the|film|lacks|in|general|focus|it|makes|up|for|in|compassion|,|as|Corcuera|manages|to|find|the|seeds|of|hope|in|the|form|of|collective|action|.\nIf|you|enjoy|more|thoughtful|comedies|with|interesting|conflicted|characters|;|this|one|is|for|you|.\nThe|quality|of|the|art|combined|with|the|humor|and|intelligence|of|the|script|allow|the|filmmakers|to|present|the|biblical|message|of|forgiveness|without|it|ever|becoming|preachy|or|syrupy|.\nThis|film|seems|thirsty|for|reflection|,|itself|taking|on|adolescent|qualities|.\nAnother|one|of|those|estrogen|overdose|movies|like|``|Divine|Secrets|of|the|Ya|Ya|Sisterhood|,|''|except|that|the|writing|,|acting|and|character|development|are|a|lot|better|.\nA|breezy|romantic|comedy|that|has|the|punch|of|a|good|sitcom|,|while|offering|exceptionally|well-detailed|characters|.\nA|romantic|comedy|enriched|by|a|sharp|eye|for|manners|and|mores|.\nViewers|of|``|The|Ring|''|are|more|likely|to|remember|the|haunting|images|than|the|plot|holes|.\nA|delightful|coming-of-age|story|.\nOne|of|those|energetic|surprises|,|an|original|that|pleases|almost|everyone|who|sees|it|.\nAn|exquisitely|crafted|and|acted|tale|.\nA|taut|psychological|thriller|that|does|n't|waste|a|moment|of|its|two-hour|running|time|.\nJones|...|does|offer|a|brutal|form|of|charisma|.\nDespite|its|title|,|Punch-Drunk|Love|is|never|heavy-handed|.\nThe|jabs|it|employs|are|short|,|carefully|placed|and|dead-center|.\nThere|'s|a|wickedly|subversive|bent|to|the|best|parts|of|Birthday|Girl|.\nLikely|to|expertly|drum|up|repressed|teenage|memories|in|any|viewer|.\nBlanchett|'s|performance|confirms|her|power|once|again|.\n...|a|magnificent|drama|well|worth|tracking|down|.\nA|good|piece|of|work|more|often|than|not|.\nThe|movie|understands|like|few|others|how|the|depth|and|breadth|of|emotional|intimacy|give|the|physical|act|all|of|its|meaning|and|most|of|its|pleasure|.\nWhat|distinguishes|Time|of|Favor|from|countless|other|thrillers|is|its|underlying|concern|with|the|consequences|of|words|and|with|the|complicated|emotions|fueling|terrorist|acts|.\nSmart|,|provocative|and|blisteringly|funny|.\nNothing|is|sacred|in|this|gut-buster|.\nThe|movie|occasionally|threatens|to|become|didactic|,|but|it|'s|too|grounded|in|the|reality|of|its|characters|to|go|over|the|edge|.\nA|touch|of|humor|or|an|unexpected|plot|twist|always|pulls|it|back|.\nFilmmakers|who|can|deftly|change|moods|are|treasures|and|even|marvels|.\nSo|,|too|,|is|this|comedy|about|mild|culture|clashing|in|today|'s|New|Delhi|.\nIf|Steven|Soderbergh|'s|`|Solaris|'|is|a|failure|it|is|a|glorious|failure|.\n``|Mostly|Martha|''|is|a|bright|,|light|modern|day|family|parable|that|wears|its|heart|on|its|sleeve|for|all|to|see|.\nIt|'s|a|scattershot|affair|,|but|when|it|hits|its|mark|it|'s|brilliant|.\nA|pleasant|enough|romance|with|intellectual|underpinnings|,|the|kind|of|movie|that|entertains|even|as|it|turns|maddeningly|predictable|.\nFeaturing|a|dangerously|seductive|performance|from|the|great|Daniel|Auteuil|,|``|Sade|''|covers|the|same|period|as|Kaufmann|'s|``|Quills|''|with|more|unsettlingly|realistic|results|.\nA|spellbinding|African|film|about|the|modern|condition|of|rootlessness|,|a|state|experienced|by|millions|around|the|globe|.\nIt|'s|a|work|by|an|artist|so|in|control|of|both|his|medium|and|his|message|that|he|can|improvise|like|a|jazzman|.\nA|moody|,|multi-dimensional|love|story|and|sci-fi|mystery|,|Solaris|is|a|thought-provoking|,|haunting|film|that|allows|the|seeds|of|the|imagination|to|germinate|.\nA|very|well-made|,|funny|and|entertaining|picture|.\nA|giggle-inducing|comedy|with|snappy|dialogue|and|winning|performances|by|an|unlikely|team|of|Oscar-winners|:|Susan|Sarandon|and|Goldie|Hawn|.\nIts|maker|,|Steven|Spielberg|,|has|n't|had|so|much|fun|in|two|decades|,|since|he|was|schlepping|Indiana|Jones|around|the|globe|in|search|of|a|giant|misplaced|ashtray|.\nOscar|Wilde|'s|masterpiece|,|The|Importance|of|Being|Earnest|,|may|be|the|best|play|of|the|19th|century|.\nIt|'s|so|good|that|its|relentless|,|polished|wit|can|withstand|not|only|inept|school|productions|,|but|even|Oliver|Parker|'s|movie|adaptation|.\nThe|movie|does|a|good|job|of|laying|out|some|of|the|major|issues|that|we|encounter|as|we|journey|through|life|.\nBrilliantly|explores|the|conflict|between|following|one|'s|heart|and|following|the|demands|of|tradition|.\nThis|remake|gets|all|there|is|to|get|out|of|a|peculiar|premise|with|promise|:|Al|Pacino|loathing|Robin|Williams|.\nThe|next|generation|of|mob|movie|.\nPart|low|rent|Godfather|.\nPart|Three|Stooges|.\nLan|Yu|is|at|times|too|restrained|,|yet|there|are|moments|it|captures|the|erotics|of|intimacy|in|a|way|that|makes|most|American|love|stories|look|downright|unfree|.\nA|thinly|veiled|look|at|different|aspects|of|Chinese|life|clashing|with|each|other|.\nLight|years|\\/|several|warp|speeds|\\/|levels|and|levels|of|dilithium|crystals|better|than|the|pitiful|Insurrection|.\nWhich|is|n't|to|say|that|it|'s|the|equal|of|some|of|its|predecessors|.\nIf|this|story|must|be|told|and|retold|--|and|indeed|it|must|--|then|The|Grey|Zone|is|to|be|lauded|for|finding|a|new|and|ingenious|angle|.\nThe|Lion|King|was|a|roaring|success|when|it|was|released|eight|years|ago|,|but|on|Imax|it|seems|better|,|not|just|bigger|.\nA|gripping|movie|,|played|with|performances|that|are|all|understated|and|touching|.\nThe|piece|plays|as|well|as|it|does|thanks|in|large|measure|to|Anspaugh|'s|three|lead|actresses|.\nThe|inspirational|screenplay|by|Mike|Rich|covers|a|lot|of|ground|,|perhaps|too|much|,|but|ties|things|together|,|neatly|,|by|the|end|.\nNot|the|kind|of|film|that|will|appeal|to|a|mainstream|American|audience|,|but|there|is|a|certain|charm|about|the|film|that|makes|it|a|suitable|entry|into|the|fest|circuit|.\nDirector|Andrew|Niccol|...|demonstrates|a|wry|understanding|of|the|quirks|of|fame|.\nHis|healthy|sense|of|satire|is|light|and|fun|...\nAbout|a|manga-like|heroine|who|fights|back|at|her|abusers|,|it|'s|energetic|and|satisfying|if|not|deep|and|psychological|.\nThis|is|human|comedy|at|its|most|amusing|,|interesting|and|confirming|.\nAn|artful|,|intelligent|film|that|stays|within|the|confines|of|a|well-established|genre|.\nMajidi|is|an|unconventional|storyteller|,|capable|of|finding|beauty|in|the|most|depressing|places|.\nRichard|Gere|and|Diane|Lane|put|in|fine|performances|as|does|French|actor|Oliver|Martinez|.\nThe|minor|figures|surrounding|(|Bobby|)|...|form|a|gritty|urban|mosaic|.\nThis|is|wild|surreal|stuff|,|but|brilliant|and|the|camera|just|kind|of|sits|there|and|lets|you|look|at|this|and|its|like|you|'re|going|from|one|room|to|the|next|and|none|of|them|have|any|relation|to|the|other|.\nIt|'s|a|demented|kitsch|mess|(|although|the|smeary|digital|video|does|match|the|muddled|narrative|)|,|but|it|'s|savvy|about|celebrity|and|has|more|guts|and|energy|than|much|of|what|will|open|this|year|.\nThere|is|nothing|outstanding|about|this|film|,|but|it|is|good|enough|and|will|likely|be|appreciated|most|by|sailors|and|folks|who|know|their|way|around|a|submarine|.\nAll-in-all|,|the|film|is|an|enjoyable|and|frankly|told|tale|of|a|people|who|live|among|us|,|but|not|necessarily|with|us|.\nAn|interesting|story|with|a|pertinent|(|cinematically|unique|)|message|,|told|fairly|well|and|scored|to|perfection|,|I|found|myself|struggling|to|put|my|finger|on|that|elusive|``|missing|thing|.|''\nA|movie|with|a|real|anarchic|flair|.\nA|welcome|relief|from|baseball|movies|that|try|too|hard|to|be|mythic|,|this|one|is|a|sweet|and|modest|and|ultimately|winning|story|.\nA|crisp|psychological|drama|(|and|)|a|fascinating|little|thriller|that|would|have|been|perfect|for|an|old|``|Twilight|Zone|''|episode|.\nIt|has|more|than|a|few|moments|that|are|insightful|enough|to|be|fondly|remembered|in|the|endlessly|challenging|maze|of|moviegoing|.\nOpening|with|some|contrived|banter|,|cliches|and|some|loose|ends|,|the|screenplay|only|comes|into|its|own|in|the|second|half|.\nAn|uncluttered|,|resonant|gem|that|relays|its|universal|points|without|lectures|or|confrontations|.|'\n(|The|Cockettes|)|provides|a|window|into|a|subculture|hell-bent|on|expressing|itself|in|every|way|imaginable|.|'\nA|smart|,|steamy|mix|of|road|movie|,|coming-of-age|story|and|political|satire|.\nThe|modern-day|royals|have|nothing|on|these|guys|when|it|comes|to|scandals|.\nIt|'s|only|in|fairy|tales|that|princesses|that|are|married|for|political|reason|live|happily|ever|after|.\nA|terrific|B|movie|--|in|fact|,|the|best|in|recent|memory|.\n``|Birthday|Girl|''|is|an|actor|'s|movie|first|and|foremost|.\nI|walked|away|from|this|new|version|of|E.T.|just|as|I|hoped|I|would|--|with|moist|eyes|.\nFor|devotees|of|French|cinema|,|Safe|Conduct|is|so|rich|with|period|minutiae|it|'s|like|dying|and|going|to|celluloid|heaven|.\nWhat|'s|really|so|appealing|about|the|characters|is|their|resemblance|to|everyday|children|.\nShamelessly|resorting|to|pee-related|sight|gags|that|might|even|cause|Tom|Green|a|grimace|;|still|,|Myer|'s|energy|and|the|silliness|of|it|all|eventually|prevail\nAn|absurdist|spider|web|.\nIf|you|'re|as|happy|listening|to|movies|as|you|are|watching|them|,|and|the|slow|parade|of|human|frailty|fascinates|you|,|then|you|'re|at|the|right|film|.\nThis|version|moves|beyond|the|original|'s|nostalgia|for|the|communal|film|experiences|of|yesteryear|to|a|deeper|realization|of|cinema|'s|inability|to|stand|in|for|true|,|lived|experience|.\nSome|movies|blend|together|as|they|become|distant|memories|.\nMention|``|Solaris|''|five|years|from|now|and|I|'m|sure|those|who|saw|it|will|have|an|opinion|to|share|.\nAllen|'s|funniest|and|most|likeable|movie|in|years|.\nIt|'s|a|glorious|spectacle|like|those|D.W.|Griffith|made|in|the|early|days|of|silent|film|.\nThis|comic|gem|is|as|delightful|as|it|is|derivative|.\nMore|timely|than|its|director|could|ever|have|dreamed|,|this|quietly|lyrical|tale|probes|the|ambiguous|welcome|extended|by|Iran|to|the|Afghani|refugees|who|streamed|across|its|borders|,|desperate|for|work|and|food|.\nThe|leaping|story|line|,|shaped|by|director|Peter|Kosminsky|into|sharp|slivers|and|cutting|impressions|,|shows|all|the|signs|of|rich|detail|condensed|into|a|few|evocative|images|and|striking|character|traits|.\nWith|three|excellent|principal|singers|,|a|youthful|and|good-looking|diva|and|tenor|and|richly|handsome|locations|,|it|'s|enough|to|make|you|wish|Jacquot|had|left|well|enough|alone|and|just|filmed|the|opera|without|all|these|distortions|of|perspective|.\nThe|production|has|been|made|with|an|enormous|amount|of|affection|,|so|we|believe|these|characters|love|each|other|.\nCertainly|the|performances|are|worthwhile|.\nWinds|up|being|both|revelatory|and|narcissistic|,|achieving|some|honest|insight|into|relationships|that|most|high-concept|films|candy-coat|with|pat|storylines|,|precious|circumstances|and|beautiful|stars|.\nWatching|these|eccentrics|is|both|inspiring|and|pure|joy|.\nSteven|Spielberg|brings|us|another|masterpiece\nFinally|,|the|French-produced|``|Read|My|Lips|''|is|a|movie|that|understands|characters|must|come|first|.\nMs.|Seigner|and|Mr.|Serrault|bring|fresh|,|unforced|naturalism|to|their|characters|.\nAllen|shows|he|can|outgag|any|of|those|young|whippersnappers|making|moving|pictures|today|.\nA|good|film|with|a|solid|pedigree|both|in|front|of|and|,|more|specifically|,|behind|the|camera|.\nBy|no|means|a|slam-dunk|and|sure|to|ultimately|disappoint|the|action|fans|who|will|be|moved|to|the|edge|of|their|seats|by|the|dynamic|first|act|,|it|still|comes|off|as|a|touching|,|transcendent|love|story|.\nI|encourage|young|and|old|alike|to|go|see|this|unique|and|entertaining|twist|on|the|classic|whale|'s|tale|--|you|wo|n't|be|sorry|!\nA|literary|detective|story|is|still|a|detective|story|and|aficionados|of|the|whodunit|wo|n't|be|disappointed|.\nHigh|Crimes|steals|so|freely|from|other|movies|and|combines|enough|disparate|types|of|films|that|it|ca|n't|help|but|engage|an|audience|.\nIf|you|'re|a|fan|of|the|series|you|'ll|love|it|and|probably|want|to|see|it|twice|.\nI|will|be|.\nIt|celebrates|the|group|'s|playful|spark|of|nonconformity|,|glancing|vividly|back|at|what|Hibiscus|grandly|called|his|`|angels|of|light|.|'\nThe|story|...|is|inspiring|,|ironic|,|and|revelatory|of|just|how|ridiculous|and|money-oriented|the|record|industry|really|is|.\nIt|is|also|a|testament|to|the|integrity|and|vision|of|the|band|.\nLaced|with|liberal|doses|of|dark|humor|,|gorgeous|exterior|photography|,|and|a|stable-full|of|solid|performances|,|No|Such|Thing|is|a|fascinating|little|tale|.\nHuppert|'s|show|to|steal|and|she|makes|a|meal|of|it|,|channeling|Kathy|Baker|'s|creepy|turn|as|the|repressed|mother|on|Boston|Public|just|as|much|as|8|Women|'s|Augustine|.\nNair|does|n't|treat|the|issues|lightly|.\nShe|allows|each|character|to|confront|their|problems|openly|and|honestly|.\nOne|of|the|best|silly|horror|movies|of|recent|memory|,|with|some|real|shocks|in|store|for|unwary|viewers|.\nThe|work|of|a|filmmaker|who|has|secrets|buried|at|the|heart|of|his|story|and|knows|how|to|take|time|revealing|them|.\nStrange|occurrences|build|in|the|mind|of|the|viewer|and|take|on|extreme|urgency|.\nHas|a|certain|ghoulish|fascination|,|and|generates|a|fair|amount|of|B-movie|excitement|.\nFamiliar|but|utterly|delightful|.\nA|fascinating|,|dark|thriller|that|keeps|you|hooked|on|the|delicious|pulpiness|of|its|lurid|fiction|.\nThe|film|aims|to|be|funny|,|uplifting|and|moving|,|sometimes|all|at|once|.\nThe|extent|to|which|it|succeeds|is|impressive|.\nThe|film|brilliantly|shines|on|all|the|characters|,|as|the|direction|is|intelligently|accomplished|.\nWhile|not|for|every|taste|,|this|often|very|funny|collegiate|gross-out|comedy|goes|a|long|way|toward|restoring|the|luster|of|the|National|Lampoon|film|franchise|,|too|long|reduced|to|direct-to-video|irrelevancy|.\nAs|broad|and|cartoonish|as|the|screenplay|is|,|there|is|an|accuracy|of|observation|in|the|work|of|the|director|,|Frank|Novak|,|that|keeps|the|film|grounded|in|an|undeniable|social|realism|.\nIn|addition|to|Hoffman|'s|powerful|acting|clinic|,|this|is|that|rare|drama|that|offers|a|thoughtful|and|rewarding|glimpse|into|the|sort|of|heartache|everyone|has|felt|,|or|will|feel|someday|.\nJeffrey|Tambor|'s|performance|as|the|intelligent|jazz-playing|exterminator|is|Oscar-worthy|.\nFrom|the|opening|strains|of|the|Average|White|Band|'s|``|Pick|up|the|Pieces|''|,|you|can|feel|the|love|.\nStevens|'|vibrant|creative|instincts|are|the|difference|between|this|and|countless|other|flicks|about|guys|and|dolls|.\nthat|it|'ll|probably|be|the|best|and|most|mature|comedy|of|the|2002|summer|season|speaks|more|of|the|season|than|the|picture\nOld|people|will|love|this|movie|,|and|I|mean|that|in|the|nicest|possible|way|:|Last|Orders|will|touch|the|heart|of|anyone|old|enough|to|have|earned|a|50-year|friendship|.\nMeyjes|'|provocative|film|might|be|called|an|example|of|the|haphazardness|of|evil|.\nTian|emphasizes|the|isolation|of|these|characters|by|confining|color|to|Liyan|'s|backyard|.\nThe|movie|is|pretty|funny|now|and|then|without|in|any|way|demeaning|its|subjects|.\nimagine|a|scenario|where|Bergman|approaches|Swedish|fatalism|using|Gary|Larson|'s|Far|Side|humor\nToo|damn|weird|to|pass|up|,|and|for|the|blacklight|crowd|,|way|cheaper|(|and|better|)|than|Pink|Floyd|tickets|.\nIt|is|most|remarkable|not|because|of|its|epic|scope|,|but|because|of|the|startling|intimacy|it|achieves|despite|that|breadth|.\nIt|'s|not|a|great|monster|movie|.\nBut|if|you|'ve|paid|a|matinee|price|and|bought|a|big|tub|of|popcorn|,|there|'s|guilty|fun|to|be|had|here|.\nChomp|chomp|!\nThe|Grey|Zone|gives|voice|to|a|story|that|needs|to|be|heard|in|the|sea|of|Holocaust|movies|...|but|the|film|suffers|from|its|own|difficulties|.\nOthers|,|more|attuned|to|the|anarchist|maxim|that|`|the|urge|to|destroy|is|also|a|creative|urge|'|,|or|more|willing|to|see|with|their|own|eyes|,|will|find|Morrison|'s|iconoclastic|uses|of|technology|to|be|liberating|.\nMiller|tells|this|very|compelling|tale|with|little|fuss|or|noise|,|expertly|plucking|tension|from|quiet|.\nTime|Out|is|existential|drama|without|any|of|the|pretension|associated|with|the|term|.\nIt|'s|a|sweet|,|laugh-a-minute|crowd|pleaser|that|lifts|your|spirits|as|well|as|the|corners|of|your|mouth|.\nWriter\\/director|Alexander|Payne|(|Election|)|and|his|co-writer|Jim|Taylor|brilliantly|employ|their|quirky|and|fearless|ability|to|look|American|angst|in|the|eye|and|end|up|laughing|.\nA|movie|that|at|its|best|does|n't|just|make|the|most|out|of|its|characters|'|flaws|but|insists|on|the|virtue|of|imperfection|.\nIt|'s|tough|to|watch|,|but|it|'s|a|fantastic|movie|.\nThe|best|animated|feature|to|hit|theaters|since|Beauty|and|the|Beast|11|years|ago|.\nWhat|saves|this|deeply|affecting|film|from|being|merely|a|collection|of|wrenching|cases|is|Corcuera|'s|attention|to|detail|.\nPacino|is|the|best|he|'s|been|in|years|and|Keener|is|marvelous|.\nA|solid|,|spooky|entertainment|worthy|of|the|price|of|a|ticket|.\nBy|turns|fanciful|,|grisly|and|engagingly|quixotic|.\n...|very|funny|,|very|enjoyable|...\nAdaptation|is|intricately|constructed|and|in|a|strange|way|nails|all|of|Orlean|'s|themes|without|being|a|true|adaptation|of|her|book|.\nSo|purely|enjoyable|that|you|might|not|even|notice|it|'s|a|fairly|straightforward|remake|of|Hollywood|comedies|such|as|Father|of|the|Bride|.\nMoonlight|Mile|gives|itself|the|freedom|to|feel|contradictory|things|.\nIt|is|sentimental|but|feels|free|to|offend|,|is|analytical|and|then|surrenders|to|the|illogic|of|its|characters|,|is|about|grief|and|yet|permits|laughter|.\nThe|real|triumphs|in|Igby|come|from|Philippe|,|who|makes|Oliver|far|more|interesting|than|the|character|'s|lines|would|suggest|,|and|Sarandon|,|who|could|n't|be|better|as|a|cruel|but|weirdly|likable|WASP|matron|.\nRobin|Williams|has|thankfully|ditched|the|saccharine|sentimentality|of|Bicentennial|Man|in|favour|of|an|altogether|darker|side|.\nIf|you|'re|willing|to|have|fun|with|it|,|you|wo|n't|feel|cheated|by|the|high|infidelity|of|Unfaithful|.\nAustralia|:|Land|Beyond|Time|is|an|enjoyable|Big|Movie|primarily|because|Australia|is|a|weirdly|beautiful|place|.\nHoffman|'s|performance|is|authentic|to|the|core|of|his|being|.\nTold|just|proficiently|enough|to|trounce|its|overly|comfortable|trappings|.\nAn|enthralling|aesthetic|experience|,|one|that|'s|steeped|in|mystery|and|a|ravishing|,|baroque|beauty|.\nThe|quirky|drama|touches|the|heart|and|the|funnybone|thanks|to|the|energetic|and|always|surprising|performance|by|Rachel|Griffiths|.\nA|captivating|coming-of-age|story|that|may|also|be|the|first|narrative|film|to|be|truly|informed|by|the|wireless|age|.\nWhat|could|have|been|a|daytime|soap|opera|is|actually|a|compelling|look|at|a|young|woman|'s|tragic|odyssey|.\nDuvall|is|strong|as|always|.\nA|no-holds-barred|cinematic|treat|.\nYou|'d|have|to|be|a|most|hard-hearted|person|not|to|be|moved|by|this|drama|.\nAllen|'s|underestimated|charm|delivers|more|goodies|than|lumps|of|coal|.\nMeasured|against|practically|any|like-themed|film|other|than|its|Oscar-sweeping|franchise|predecessor|The|Silence|of|the|Lambs|,|Red|Dragon|rates|as|an|exceptional|thriller|.\nAn|exhilarating|serving|of|movie|fluff|.\nMaelstrom|is|strange|and|compelling|,|engrossing|and|different|,|a|moral|tale|with|a|twisted|sense|of|humor|.\nIt|makes|you|believe|the|cast|and|crew|thoroughly|enjoyed|themselves|and|believed|in|their|small-budget|film|.\nDark|and|disturbing|,|yet|compelling|to|watch|.\nToo|often|,|Son|of|the|Bride|becomes|an|exercise|in|trying|to|predict|when|a|preordained|``|big|moment|''|will|occur|and|not|``|if|.|''\nThe|picture|uses|humor|and|a|heartfelt|conviction|to|tell|a|story|about|discovering|your|destination|in|life|,|but|also|acknowledging|the|places|,|and|the|people|,|from|whence|you|came|.\nA|solid|piece|of|journalistic|work|that|draws|a|picture|of|a|man|for|whom|political|expedience|became|a|deadly|foreign|policy|.\nA|terrific|insider|look|at|the|star-making|machinery|of|tinseltown|.\nIt|'s|a|diverting|enough|hour-and-a-half|for|the|family|audience|.\nA|party-hearty|teen|flick|that|scalds|like|acid|.\nAs|giddy|and|whimsical|and|relevant|today|as|it|was|270|years|ago|.\nThe|film|offers|an|intriguing|what-if|premise|.\nThe|Pianist|is|the|film|Roman|Polanski|may|have|been|born|to|make|.\nThis|version|does|justice|both|to|Stevenson|and|to|the|sci-fi|genre|.\nPoignant|and|delicately|complex|.\nEnough|may|pander|to|our|basest|desires|for|payback|,|but|unlike|many|revenge|fantasies|,|it|ultimately|delivers|.\nCho|'s|latest|comic|set|is|n't|as|sharp|or|as|fresh|as|I|'m|the|One|That|I|Want|...|but|it|'s|still|damn|funny|stuff|.\nIn|The|Pianist|,|Polanski|is|saying|what|he|has|long|wanted|to|say|,|confronting|the|roots|of|his|own|preoccupations|and|obsessions|,|and|he|allows|nothing|to|get|in|the|way|.\nDespite|the|film|'s|shortcomings|,|the|stories|are|quietly|moving|.\nThose|who|love|Cinema|Paradiso|will|find|the|new|scenes|interesting|,|but|few|will|find|the|movie|improved|.\nIf|you|come|from|a|family|that|eats|,|meddles|,|argues|,|laughs|,|kibbitzes|and|fights|together|,|then|go|see|this|delightful|comedy|.\nThis|bracingly|truthful|antidote|to|Hollywood|teenage|movies|that|slather|Clearasil|over|the|blemishes|of|youth|captures|the|combustible|mixture|of|a|chafing|inner|loneliness|and|desperate|grandiosity|that|tend|to|characterize|puberty|.\nThe|reason|to|see|``|Sade|''|lay|with|the|chemistry|and|complex|relationship|between|the|marquis|(|Auteil|)|and|Emilie|(|Le|Besco|)|.\nIt|'s|the|filmmakers|'|post-camp|comprehension|of|what|made|old-time|B|movies|good-bad|that|makes|Eight|Legged|Freaks|a|perfectly|entertaining|summer|diversion|.\nThe|film|'s|strength|is|n't|in|its|details|,|but|in|the|larger|picture|it|paints|-|of|a|culture|in|conflict|with|itself|,|with|the|thin|veneer|of|nationalism|that|covers|our|deepest|,|media-soaked|fears|.\n...|best|seen|as|speculative|history|,|as|much|an|exploration|of|the|paranoid|impulse|as|a|creative|sequel|to|the|Warren|Report|.\nIt|has|its|faults|,|but|it|is|a|kind|,|unapologetic|,|sweetheart|of|a|movie|,|and|Mandy|Moore|leaves|a|positive|impression|.\nThe|Saigon|of|1952|is|an|uneasy|mix|of|sensual|delights|and|simmering|violence|,|and|The|Quiet|American|brings|us|right|into|the|center|of|that|world|.\nDespite|its|shortcomings|,|Girls|Ca|n't|Swim|represents|an|engaging|and|intimate|first|feature|by|a|talented|director|to|watch|,|and|it|'s|a|worthy|entry|in|the|French|coming-of-age|genre|.\nFlawed|,|but|worth|seeing|for|Ambrose|'s|performance|.\nWith|Dirty|Deeds|,|David|Caesar|has|stepped|into|the|mainstream|of|filmmaking|with|an|assurance|worthy|of|international|acclaim|and|with|every|cinematic|tool|well|under|his|control|--|driven|by|a|natural|sense|for|what|works|on|screen|.\nThe|humor|and|humanity|of|Monsoon|Wedding|are|in|perfect|balance|.\nLookin|'|for|sin|,|American-style|?\nTry|Hell|House|,|which|documents|the|cautionary|Christian|spook-a-rama|of|the|same|name|.\nA|compelling|motion|picture|that|illustrates|an|American|tragedy|.\nAs|comedic|spotlights|go|,|Notorious|C.H.O.|hits|all|the|verbal|marks|it|should|.\nIt|'s|a|day|at|the|beach|--|with|air|conditioning|and|popcorn|.\nFrida|is|n't|that|much|different|from|many|a|Hollywood|romance|.\nWhat|sets|it|apart|is|the|vision|that|Taymor|,|the|avant|garde|director|of|Broadway|'s|The|Lion|King|and|the|film|Titus|,|brings|.\nStevens|has|a|flair|for|dialogue|comedy|,|the|film|operates|nicely|off|the|element|of|surprise|,|and|the|large|cast|is|solid|.\nExtremely|well|acted|by|the|four|primary|actors|,|this|is|a|seriously|intended|movie|that|is|not|easily|forgotten|.\nThe|film|exudes|the|urbane|sweetness|that|Woody|Allen|seems|to|have|bitterly|forsaken|.\nK-19|:|The|Widowmaker|is|derivative|,|overlong|,|and|bombastic|--|yet|surprisingly|entertaining|.\nIt|'s|good|,|hard-edged|stuff|,|violent|and|a|bit|exploitative|but|also|nicely|done|,|morally|alert|and|street-smart|.\nCineasts|will|revel|in|those|visual|in-jokes|,|as|in|the|film|'s|verbal|pokes|at|everything|from|the|likes|of|Miramax|chief|Harvey|Weinstein|'s|bluff|personal|style|to|the|stylistic|rigors|of|Denmark|'s|Dogma|movement|.\nIt|'s|a|rare|window|on|an|artistic|collaboration|.\n...|begins|with|promise|,|but|runs|aground|after|being|snared|in|its|own|tangled|plot|.\nPerhaps|the|best|sports|movie|I|'ve|ever|seen|.\nCho|'s|timing|is|priceless|.\n...|creates|a|visceral|sense|of|its|characters|'|lives|and|conflicted|emotions|that|carries|it|far|above|...|what|could|have|been|a|melodramatic|,|Lifetime|Channel-style|anthology|.\nA|sensitive|,|moving|,|brilliantly|constructed|work|.\nAn|edgy|thriller|that|delivers|a|surprising|punch|.\nA|reasonably|entertaining|sequel|to|1994|'s|surprise|family|hit|that|may|strain|adult|credibility|.\n(|Reno|)|delivers|a|monologue|that|manages|to|incorporate|both|the|horror|and|the|absurdity|of|the|situation|in|a|well-balanced|fashion|.\nthere|is|truth|here\na|confident|,|richly|acted|,|emotionally|devastating|piece|of|work|and|2002|'s|first|great|film\nA|touching|,|small-scale|story|of|family|responsibility|and|care|in|the|community|.\nArteta|directs|one|of|the|best|ensemble|casts|of|the|year\nThe|casting|of|von|Sydow|...|is|itself|Intacto|'s|luckiest|stroke|.\nNo|,|it|'s|not|as|single-minded|as|John|Carpenter|'s|original|,|but|it|'s|sure|a|lot|smarter|and|more|unnerving|than|the|sequels|.\nA|gem|of|a|romantic|crime|comedy|that|turns|out|to|be|clever|,|amusing|and|unpredictable|.\nStands|as|one|of|the|year|'s|most|intriguing|movie|experiences|,|letting|its|imagery|speak|for|it|while|it|forces|you|to|ponder|anew|what|a|movie|can|be|.\n...|the|first|2\\/3|of|the|film|are|incredibly|captivating|and|insanely|funny|,|thanks|in|part|to|interesting|cinematic|devices|(|cool|visual|backmasking|)|,|a|solid|cast|,|and|some|wickedly|sick|and|twisted|humor|...\nThis|movie|got|me|grinning|.\nThere|'s|a|part|of|us|that|can|not|help|be|entertained|by|the|sight|of|someone|getting|away|with|something|.\nAn|old-fashioned|drama|of|substance|about|a|teacher|'s|slide|down|the|slippery|slope|of|dishonesty|after|an|encounter|with|the|rich|and|the|powerful|who|have|nothing|but|disdain|for|virtue|.\nWhat|'s|not|to|like|about|a|movie|with|a|`|children|'s|'|song|that|includes|the|line|`|My|stepdad|'s|not|mean|,|he|'s|just|adjusting|'|?\nThis|English-language|version|...|does|full|honor|to|Miyazaki|'s|teeming|and|often|unsettling|landscape|,|and|to|the|conflicted|complexity|of|his|characters|.\nThe|pleasures|that|it|does|afford|may|be|enough|to|keep|many|moviegoers|occupied|amidst|some|of|the|more|serious-minded|concerns|of|other|year-end|movies|.\nNot|everyone|will|welcome|or|accept|The|Trials|of|Henry|Kissinger|as|faithful|portraiture|,|but|few|can|argue|that|the|debate|it|joins|is|a|necessary|and|timely|one|.\nThere|are|no|special|effects|,|and|no|Hollywood|endings|.\nLike|the|original|,|this|version|is|raised|a|few|notches|above|kiddie|fantasy|pablum|by|Allen|'s|astringent|wit|.\nDespite|its|Hawaiian|setting|,|the|science-fiction|trimmings|and|some|moments|of|rowdy|slapstick|,|the|basic|plot|of|``|Lilo|''|could|have|been|pulled|from|a|tear-stained|vintage|Shirley|Temple|script|.\nA|brutally|honest|documentary|about|a|much|anticipated|family|reunion|that|goes|wrong|thanks|to|culture|shock|and|a|refusal|to|empathize|with|others|.\nFilled|with|honest|performances|and|exceptional|detail|,|Baran|is|a|gentle|film|with|dramatic|punch|,|a|haunting|ode|to|humanity|.\nSparkles|in|its|deft|portrait|of|Tinseltown|'s|seasoned|veterans|of|gossip|,|wealth|,|paranoia|,|and|celebrityhood|.\nIn|its|dry|and|forceful|way|,|it|delivers|the|same|message|as|Jiri|Menzel|'s|Closely|Watched|Trains|and|Danis|Tanovic|'s|No|Man|'s|Land|.\n...|a|triumph|of|emotionally|and|narratively|complex|filmmaking|.\n(|Haynes|'|)|homage|to|such|films|as|``|All|That|Heaven|Allows|''|and|``|Imitation|of|Life|''|transcends|them|.\nSimply|put|,|``|Far|From|Heaven|''|is|a|masterpiece|.\nAn|intense|and|effective|film|about|loneliness|and|the|chilly|anonymity|of|the|environments|where|so|many|of|us|spend|so|much|of|our|time|.\nAlthough|fairly|involving|as|far|as|it|goes|,|the|film|does|n't|end|up|having|much|that|is|fresh|to|say|about|growing|up|Catholic|or|,|really|,|anything|.\nProves|mainly|that|South|Korean|filmmakers|can|make|undemanding|action|movies|with|all|the|alacrity|of|their|Hollywood|counterparts|.\nA|very|funny|romantic|comedy|about|two|skittish|New|York|middle-agers|who|stumble|into|a|relationship|and|then|struggle|furiously|with|their|fears|and|foibles|.\nTop-notch|action|powers|this|romantic|drama|.\nBeresford|nicely|mixes|in|as|much|humor|as|pathos|to|take|us|on|his|sentimental|journey|of|the|heart|.\nIt|really|is|a|shame|that|more|wo|n't|get|an|opportunity|to|embrace|small|,|sweet|`|Evelyn|.|'\nI|stopped|thinking|about|how|good|it|all|was|,|and|started|doing|nothing|but|reacting|to|it|-|feeling|a|part|of|its|grand|locations|,|thinking|urgently|as|the|protagonists|struggled|,|feeling|at|the|mercy|of|its|inventiveness|,|gasping|at|its|visual|delights|.\nProbably|the|best|case|for|Christianity|since|Chesterton|and|Lewis|.\nA|gently|funny|,|sweetly|adventurous|film|that|makes|you|feel|genuinely|good|,|that|is|to|say|,|entirely|unconned|by|false|sentiment|or|sharp|,|overmanipulative|Hollywood|practices|.\nWould|be|an|unendurable|viewing|experience|for|this|ultra-provincial|New|Yorker|if|26-year-old|Reese|Witherspoon|were|not|on|hand|to|inject|her|pure|fantasy|character|,|Melanie|Carmichael|,|with|a|massive|infusion|of|old-fashioned|Hollywood|magic|.\nVisually|fascinating|...|an|often|intense|character|study|about|fathers|and|sons|,|loyalty|and|duty|.\nA|lyrical|metaphor|for|cultural|and|personal|self-discovery|and|a|picaresque|view|of|a|little-remembered|world|.\nSchütte|'s|dramatic|snapshot|of|the|artist|three|days|before|his|death|offers|an|interesting|bit|of|speculation|as|to|the|issues|Brecht|faced|as|his|life|drew|to|a|close|.\nA|slick|,|engrossing|melodrama|.\nS1M0NE|'s|satire|is|not|subtle|,|but|it|is|effective|.\nIt|'s|a|quirky|,|off-beat|project|.\nWhile|some|will|object|to|the|idea|of|a|Vietnam|picture|with|such|a|rah-rah|,|patriotic|tone|,|Soldiers|ultimately|achieves|its|main|strategic|objective|:|dramatizing|the|human|cost|of|the|conflict|that|came|to|define|a|generation|.\nEven|if|you|do|n't|know|the|band|or|the|album|'s|songs|by|heart|,|you|will|enjoy|seeing|how|both|evolve|,|and|you|will|also|learn|a|good|deal|about|the|state|of|the|music|business|in|the|21st|Century|.\nThe|solid|filmmaking|and|convincing|characters|makes|this|a|high|water|mark|for|this|genre|.\nFilms|about|loss|,|grief|and|recovery|are|pretty|valuable|these|days|.\nSeen|in|that|light|,|Moonlight|Mile|should|strike|a|nerve|in|many|.\nIt|'s|endlessly|inventive|,|consistently|intelligent|and|sickeningly|savage|.\nIt|is|definitely|worth|seeing|.\nAn|impeccable|study|in|perversity|.\nFar|From|Heaven|is|a|dazzling|conceptual|feat|,|but|more|than|that|,|it|'s|a|work|of|enthralling|drama|.\nA|movie|that|both|thrills|the|eye|and|,|in|its|over-the-top|way|,|touches|the|heart|.\nStuffed|to|the|brim|with|ideas|,|American|instigator|Michael|Moore|'s|film|is|a|rambling|examination|of|American|gun|culture|that|uses|his|usual|modus|operandi|of|crucifixion|through|juxtaposition|.\nAffectionately|reminds|us|that|,|in|any|language|,|the|huge|stuff|in|life|can|usually|be|traced|back|to|the|little|things|.\nA|drama|of|great|power|,|yet|some|members|of|the|audience|will|leave|the|theater|believing|they|have|seen|a|comedy|.\nThe|large-frame|IMAX|camera|lends|itself|beautifully|to|filming|the|teeming|life|on|the|reefs|,|making|this|gorgeous|film|a|must|for|everyone|from|junior|scientists|to|grown-up|fish|lovers|.\nThe|result|is|more|depressing|than|liberating|,|but|it|'s|never|boring|.\nA|story|about|intelligent|high|school|students|that|deals|with|first|love|sweetly|but|also|seriously|.\nIt|is|also|beautifully|acted|.\nIt|is|n't|that|the|picture|is|unfamiliar|,|but|that|it|manages|to|find|new|avenues|of|discourse|on|old|problems|.\nSame|song|,|second|verse|,|coulda|been|better|,|but|it|coulda|been|worse|.\nIt|'s|a|technically|superb|film|,|shining|with|all|the|usual|Spielberg|flair|,|expertly|utilizing|the|talents|of|his|top-notch|creative|team|.\nWilco|fans|will|have|a|great|time|,|and|the|movie|should|win|the|band|a|few|new|converts|,|too|.\nTsai|has|a|well-deserved|reputation|as|one|of|the|cinema|world|'s|great|visual|stylists|,|and|in|this|film|,|every|shot|enhances|the|excellent|performances|.\nThe|date|movie|that|Franz|Kafka|would|have|made|.\nThe|fact|is|that|the|screen|is|most|alive|when|it|seems|most|likely|that|Broomfield|'s|interviewees|,|or|even|himself|,|will|not|be|for|much|longer|.\nLeguizamo|and|Jones|are|both|excellent|and|the|rest|of|the|cast|is|uniformly|superb|.\nI|liked|this|film|a|lot|...\n...|there|is|enough|originality|in|`|Life|'|to|distance|it|from|the|pack|of|paint-by-number|romantic|comedies|that|so|often|end|up|on|cinema|screens|.\nA|solid|and|refined|piece|of|moviemaking|imbued|with|passion|and|attitude|.\nNettelbeck|has|crafted|an|engaging|fantasy|of|flavours|and|emotions|,|one|part|romance|novel|,|one|part|recipe|book|.\nWith|or|without|the|sex|,|a|wonderful|tale|of|love|and|destiny|,|told|well|by|a|master|storyteller\nOn|the|surface|a|silly|comedy|,|Scotland|,|PA|would|be|forgettable|if|it|were|n't|such|a|clever|adaptation|of|the|bard|'s|tragic|play|.\nA|weird|,|arresting|little|ride|.\nA|fine|film|,|but|it|would|be|a|lot|better|if|it|stuck|to|Betty|Fisher|and|left|out|the|other|stories|.\nA|first-class|road|movie|that|proves|you|can|run|away|from|home|,|but|your|ego|and|all|your|problems|go|with|you|.\nYou|might|want|to|take|a|reality|check|before|you|pay|the|full|ticket|price|to|see|``|Simone|,|''|and|consider|a|DVD|rental|instead|.\nWell|cast|and|well|directed|-|a|powerful|drama|with|enough|sardonic|wit|to|keep|it|from|being|maudlin|.\nA|backstage|must-see|for|true|fans|of|comedy|.\nThere|'s|back-stabbing|,|inter-racial|desire|and|,|most|importantly|,|singing|and|dancing|.\nThe|film|sounds|like|the|stuff|of|lurid|melodrama|,|but|what|makes|it|interesting|as|a|character|study|is|the|fact|that|the|story|is|told|from|Paul|'s|perspective|.\nJones|...|makes|a|great|impression|as|the|writer-director|of|this|little|$|1.8|million|charmer|,|which|may|not|be|cutting-edge|indie|filmmaking|but|has|a|huge|heart|.\nIn|the|disturbingly|involving|family|dysfunctional|drama|How|I|Killed|My|Father|,|French|director|Anne|Fontaine|delivers|an|inspired|portrait|of|male-ridden|angst|and|the|emotional|blockage|that|accompanies|this|human|condition\nBelow|may|not|mark|Mr.|Twohy|'s|emergence|into|the|mainstream|,|but|his|promise|remains|undiminished|.\nThere|'s|no|reason|to|miss|Interview|with|the|Assassin\nHappily|stays|close|to|the|ground|in|a|spare|and|simple|manner|and|does|n't|pummel|us|with|phony|imagery|or|music|.\nIts|sheer|dynamism|is|infectious|.\nFor|his|first|attempt|at|film|noir|,|Spielberg|presents|a|fascinating|but|flawed|look|at|the|near|future|.\nit|somehow|managed|to|make|its|way|past|my|crappola|radar|and|find|a|small|place|in|my|heart\nPerhaps|it|'s|cliche|to|call|the|film|`|refreshing|,|'|but|it|is|.\n`|Drumline|'|shows|a|level|of|young|,|Black|manhood|that|is|funny|,|touching|,|smart|and|complicated|.\nIt|does|give|a|taste|of|the|Burning|Man|ethos|,|an|appealing|blend|of|counter-cultural|idealism|and|hedonistic|creativity|.\nThe|limited|sets|and|small|confined|and|dark|spaces|also|are|homages|to|a|classic|low-budget|film|noir|movie|.\nThe|movie|is|well|done|,|but|slow|.\n(|A|)|wonderfully|loopy|tale|of|love|,|longing|,|and|voting|.\nThe|fascination|comes|in|the|power|of|the|Huston|performance|,|which|seems|so|larger|than|life|and|yet|so|fragile|,|and|in|the|way|the|Ivan|character|accepts|the|news|of|his|illness|so|quickly|but|still|finds|himself|unable|to|react|.\nThe|last|scenes|of|the|film|are|anguished|,|bitter|and|truthful|.\nMr.|Koshashvili|is|a|director|to|watch|.\nPredictable|storyline|and|by-the-book|scripting|is|all|but|washed|away|by|sumptuous|ocean|visuals|and|the|cinematic|stylings|of|director|John|Stockwell|.\nAntwone|Fisher|certainly|does|the|trick|of|making|us|care|about|its|protagonist|and|celebrate|his|victories|but|,|with|few|exceptions|,|it|rarely|stoops|to|cheap|manipulation|or|corny|conventions|to|do|it|.\nOne|feels|the|dimming|of|a|certain|ambition|,|but|in|its|place|a|sweetness|,|clarity|and|emotional|openness|that|recalls|the|classics|of|early|Italian|neorealism|.\nIt|challenges|,|this|nervy|oddity|,|like|modern|art|should|.\nWhenever|you|think|you|'ve|figured|out|Late|Marriage|,|it|throws|you|for|a|loop|.\nThe|Pianist|is|Polanski|'s|best|film|.\nIt|is|a|testament|of|quiet|endurance|,|of|common|concern|,|of|reconciled|survival|.\nThis|Orange|has|some|juice|,|but|it|'s|far|from|fresh-squeezed|.\nA|sensitive|,|modest|comic|tragedy|that|works|as|both|character|study|and|symbolic|examination|of|the|huge|economic|changes|sweeping|modern|China|.\nHigh|Crimes|knows|the|mistakes|that|bad|movies|make|and|is|determined|not|to|make|them|,|and|maybe|that|is|nobility|of|a|sort|.\nCusack|'s|just|brilliant|in|this|.\nKnows|how|to|make|our|imagination|wonder|.\nJae-eun|Jeong|'s|Take|Care|of|My|Cat|brings|a|beguiling|freshness|to|a|coming-of-age|story|with|such|a|buoyant|,|expressive|flow|of|images|that|it|emerges|as|another|key|contribution|to|the|flowering|of|the|South|Korean|cinema|.\nThe|overall|fabric|is|hypnotic|,|and|Mr.|Mattei|fosters|moments|of|spontaneous|intimacy|.\nEvokes|a|palpable|sense|of|disconnection|,|made|all|the|more|poignant|by|the|incessant|use|of|cell|phones|.\nMalcolm|McDowell|is|cool|.\nPaul|Bettany|is|cool|.\nPaul|Bettany|playing|Malcolm|McDowell|?\nCool|.\nA|touching|,|sophisticated|film|that|almost|seems|like|a|documentary|in|the|way|it|captures|an|Italian|immigrant|family|on|the|brink|of|major|changes|.\n...|a|trashy|little|bit|of|fluff|stuffed|with|enjoyable|performances|and|a|bewildering|sense|of|self-importance\nAn|inventive|,|absorbing|movie|that|'s|as|hard|to|classify|as|it|is|hard|to|resist|.\nIt|made|me|want|to|get|made-up|and|go|see|this|movie|with|my|sisters|.\nI|thought|the|relationships|were|wonderful|,|the|comedy|was|funny|,|and|the|love|`|real|'|.\n(|Caine|)|proves|once|again|he|has|n't|lost|his|touch|,|bringing|off|a|superb|performance|in|an|admittedly|middling|film|.\nBogdanovich|puts|history|in|perspective|and|,|via|Kirsten|Dunst|'s|remarkable|performance|,|he|showcases|Davies|as|a|young|woman|of|great|charm|,|generosity|and|diplomacy|.\nThis|breezy|caper|movie|becomes|a|soulful|,|incisive|meditation|on|the|way|we|were|,|and|the|way|we|are|.\nA|captivating|new|film|.\nThose|who|are|n't|put|off|by|the|film|'s|austerity|will|find|it|more|than|capable|of|rewarding|them|.\nIt|'s|a|clear-eyed|portrait|of|an|intensely|lived|time|,|filled|with|nervous|energy|,|moral|ambiguity|and|great|uncertainties|.\nReveals|how|important|our|special|talents|can|be|when|put|in|service|of|of|others|.\nIt|also|shows|how|deeply|felt|emotions|can|draw|people|together|across|the|walls|that|might|otherwise|separate|them|.\nWith|the|same|sort|of|good-natured|fun|found|in|films|like|Tremors|,|Eight|Legged|Freaks|is|prime|escapist|fare|.\nA|sharp|,|amusing|study|of|the|cult|of|celebrity|.\nThe|sentimental|cliches|mar|an|otherwise|excellent|film|.\nA|powerful|performance|from|Mel|Gibson|and|a|brutal|90-minute|battle|sequence|that|does|everything|but|issue|you|a|dog-tag|and|an|M-16|.\nA|graceful|,|moving|tribute|to|the|courage|of|New|York|'s|finest|and|a|nicely|understated|expression|of|the|grief|shared|by|the|nation|at|their|sacrifice|.\nA|coming-of-age|tale|from|New|Zealand|whose|boozy|,|languid|air|is|balanced|by|a|rich|visual|clarity|and|deeply|felt|performances|across|the|board|.\nMade|to|be|Jaglomized|is|the|Cannes|Film|Festival|,|the|annual|Riviera|spree|of|flesh|,|buzz|,|blab|and|money|.\nThe|charming|result|is|Festival|in|Cannes|.\nIf|you|'re|looking|for|something|new|and|hoping|for|something|entertaining|,|you|'re|in|luck|.\nA|hugely|rewarding|experience|that|'s|every|bit|as|enlightening|,|insightful|and|entertaining|as|Grant|'s|two|best|films|--|Four|Weddings|and|a|Funeral|and|Bridget|Jones|'s|Diary|.\nA|rip-roaring|comedy|action|fest|that|'ll|put|hairs|on|your|chest|.\nIf|there|'s|no|art|here|,|it|'s|still|a|good|yarn|--|which|is|nothing|to|sneeze|at|these|days|.\nSimultaneously|heart-breaking|and|very|funny|,|The|Last|Kiss|is|really|all|about|performances|.\nThere|is|a|subversive|element|to|this|Disney|cartoon|,|providing|unexpected|fizzability|.\nAn|unforgettable|look|at|morality|,|family|,|and|social|expectation|through|the|prism|of|that|omnibus|tradition|called|marriage|.\nAn|enjoyable|,|if|occasionally|flawed|,|experiment|.\nMiyazaki|is|one|of|world|cinema|'s|most|wondrously|gifted|artists|and|storytellers|.\nIf|Ayurveda|can|help|us|return|to|a|sane|regimen|of|eating|,|sleeping|and|stress-reducing|contemplation|,|it|is|clearly|a|good|thing|.\nMeeting|,|even|exceeding|expectations|,|it|'s|the|best|sequel|since|The|Empire|Strikes|Back|...|a|majestic|achievement|,|an|epic|of|astonishing|grandeur|and|surprising|emotional|depth|.\nLeigh|is|one|of|the|rare|directors|who|feels|acting|is|the|heart|and|soul|of|cinema|.\nHe|allows|his|cast|members|to|make|creative|contributions|to|the|story|and|dialogue|.\nThis|method|almost|never|fails|him|,|and|it|works|superbly|here|.\nPoetry|in|motion|captured|on|film|.\nWhile|it|can|be|a|bit|repetitive|,|overall|it|'s|an|entertaining|and|informative|documentary|.\nDirecting|with|a|sure|and|measured|hand|,|(|Haneke|)|steers|clear|of|the|sensational|and|offers|instead|an|unflinching|and|objective|look|at|a|decidedly|perverse|pathology|.\nThe|entire|movie|establishes|a|wonderfully|creepy|mood|.\nI|found|The|Ring|moderately|absorbing|,|largely|for|its|elegantly|colorful|look|and|sound|.\nThe|filmmakers|want|nothing|else|than|to|show|us|a|good|time|,|and|in|their|cheap|,|B|movie|way|,|they|succeed|.\nAmari|has|dressed|up|this|little|parable|in|a|fairly|irresistible|package|full|of|privileged|moments|and|memorable|performances|.\nRabbit-Proof|Fence|will|probably|make|you|angry|.\nBut|it|will|just|as|likely|make|you|weep|,|and|it|will|do|so|in|a|way|that|does|n't|make|you|feel|like|a|sucker|.\nBoth|heartbreaking|and|heartwarming|...|just|a|simple|fable|done|in|an|artless|sytle|,|but|it|'s|tremendously|moving|.\nThis|masterfully|calibrated|psychological|thriller|thrives|on|its|taut|performances|and|creepy|atmosphere|even|if|the|screenplay|falls|somewhat|short|.\nThe|film|'s|sense|of|imagery|gives|it|a|terrible|strength|,|but|it|'s|propelled|by|the|acting|.\nThe|Pianist|(|is|)|a|supremely|hopeful|cautionary|tale|of|war|'s|madness|remembered|that|we|,|today|,|can|prevent|its|tragic|waste|of|life|.\nHere|is|a|divine|monument|to|a|single|man|'s|struggle|to|regain|his|life|,|his|dignity|and|his|music|.\nStrange|it|is|,|but|delightfully|so|.\nElegant|,|mannered|and|teasing|.\nAn|average|coming-of-age|tale|elevated|by|the|wholesome|twist|of|a|pesky|mother|interfering|during|her|son|'s|discovery|of|his|homosexuality|.\nThe|ingenuity|that|Parker|displays|in|freshening|the|play|is|almost|in|a|class|with|that|of|Wilde|himself|.\nDecasia|is|what|has|happened|already|to|so|many|silent|movies|,|newsreels|and|the|like|.\nThe|unexpected|thing|is|that|its|dying|,|in|this|shower|of|black-and-white|psychedelia|,|is|quite|beautiful|.\nA|droll|,|bitchy|frolic|which|pokes|fun|at|the|price|of|popularity|and|small-town|pretension|in|the|Lone|Star|State|.\nWith|each|of|her|three|protagonists|,|Miller|eloquently|captures|the|moment|when|a|woman|'s|life|,|out|of|a|deep-seated|,|emotional|need|,|is|about|to|turn|onto|a|different|path|.\nRyan|Gosling|...|is|at|22|a|powerful|young|actor|.\nA|minor|work|yet|there|'s|no|denying|the|potency|of|Miller|'s|strange|,|fleeting|brew|of|hopeful|perseverance|and|hopeless|closure|.\nAs|an|introduction|to|the|man|'s|theories|and|influence|,|Derrida|is|all|but|useless|;|as|a|portrait|of|the|artist|as|an|endlessly|inquisitive|old|man|,|however|,|it|'s|invaluable|.\nThe|film|is|a|verbal|duel|between|two|gifted|performers|.\nImperfect|?\nYes|,|but|also|intriguing|and|honorable|,|a|worthwhile|addition|to|a|distinguished|film|legacy|.\nYou|'ll|get|the|enjoyable|basic|minimum|.\nBut|not|a|whit|more|.\nWhat|a|great|way|to|spend|4|units|of|your|day|.\nThe|movie|is|hardly|a|masterpiece|,|but|it|does|mark|Ms.|Bullock|'s|best|work|in|some|time|.\nAs|simple|and|innocent|a|movie|as|you|can|imagine|.\nThis|is|a|movie|you|can|trust|.\nPassionate|,|irrational|,|long-suffering|but|cruel|as|a|tarantula|,|Helga|figures|prominently|in|this|movie|,|and|helps|keep|the|proceedings|as|funny|for|grown-ups|as|for|rugrats|.\n``|It|'s|all|about|the|image|.|''\nVividly|conveys|the|passion|,|creativity|,|and|fearlessness|of|one|of|Mexico|'s|most|colorful|and|controversial|artists|--|a|captivating|drama|that|will|speak|to|the|nonconformist|in|us|all|.\nHollywood|Ending|is|not|show-stoppingly|hilarious|,|but|scathingly|witty|nonetheless|.\nMaybe|Thomas|Wolfe|was|right|:|You|ca|n't|go|home|again|.\nA|compelling|yarn|,|but|not|quite|a|ripping|one|.\nOn|the|Granger|Movie|Gauge|of|1|to|10|,|The|Powerpuff|Girls|is|a|fast|,|frenetic|,|funny|,|even|punny|6|--|aimed|specifically|at|a|grade-school|audience|.\nThe|film|has|several|strong|performances|.\nI|'ve|never|bought|from|telemarketers|,|but|I|bought|this|movie|.\nPerfectly|pitched|between|comedy|and|tragedy|,|hope|and|despair|,|About|Schmidt|instead|comes|far|closer|than|many|movies|to|expressing|the|way|many|of|us|live|--|someplace|between|consuming|self-absorption|and|insistently|demanding|otherness|.\nThe|funny|thing|is|,|I|did|n't|mind|all|this|contrived|nonsense|a|bit|.\n(|Shyamalan|)|turns|the|goose-pimple|genre|on|its|empty|head|and|fills|it|with|spirit|,|purpose|and|emotionally|bruised|characters|who|add|up|to|more|than|body|count|.\nA|sexy|,|peculiar|and|always|entertaining|costume|drama|set|in|Renaissance|Spain|,|and|the|fact|that|it|'s|based|on|true|events|somehow|makes|it|all|the|more|compelling|.\nAn|entertaining|documentary|that|freshly|considers|arguments|the|Bard|'s|immortal|plays|were|written|by|somebody|else|.\nA|highly|spirited|,|imaginative|kid|'s|movie|that|broaches|neo-Augustinian|theology|:|Is|God|stuck|in|Heaven|because|He|'s|afraid|of|His|best-known|creation|?\nCall|it|magic|realism|or|surrealism|,|but|Miss|Wonton|floats|beyond|reality|with|a|certain|degree|of|wit|and|dignity|.\nRaimi|and|his|team|could|n't|have|done|any|better|in|bringing|the|story|of|Spider-Man|to|the|big|screen|.\nThe|director|explores|all|three|sides|of|his|story|with|a|sensitivity|and|an|inquisitiveness|reminiscent|of|Truffaut|.\nWell-acted|,|well-directed|and|,|for|all|its|moodiness|,|not|too|pretentious|.\nIt|'s|a|satisfying|summer|blockbuster|and|worth|a|look|.\nBoomers|and|their|kids|will|have|a|Barrie|good|time|.\nReal|Women|Have|Curves|wears|its|empowerment|on|its|sleeve|but|even|its|worst|harangues|are|easy|to|swallow|thanks|to|remarkable|performances|by|Ferrera|and|Ontiveros|.\nUltimately|,|``|MIB|II|''|succeeds|due|to|its|rapid-fire|delivery|and|enough|inspired|levity|that|it|ca|n't|be|dismissed|as|mindless|.\nStage|director|Sam|Mendes|showcases|Tom|Hanks|as|a|depression|era|hit-man|in|this|dark|tale|of|revenge|.\nSitting|in|the|third|row|of|the|IMAX|cinema|at|Sydney|'s|Darling|Harbour|,|but|I|sometimes|felt|as|though|I|was|in|the|tiny|two|seater|plane|that|carried|the|giant|camera|around|Australia|,|sweeping|and|gliding|,|banking|and|hovering|over|some|of|the|most|not\nThe|real|charm|of|this|trifle|is|the|deadpan|comic|face|of|its|star|,|Jean|Reno|,|who|resembles|Sly|Stallone|in|a|hot|sake|half-sleep|.\nWhat|'s|so|fun|about|this|silly|,|outrageous|,|ingenious|thriller|is|the|director|'s|talent|.\nWatching|a|Brian|DePalma|movie|is|like|watching|an|Alfred|Hitchcock|movie|after|drinking|twelve|beers|.\nStrip|it|of|all|its|excess|debris|,|and|you|'d|have|a|90-minute|,|four-star|movie|.\nAs|it|is|,|it|'s|too|long|and|unfocused|.\nAn|immensely|entertaining|look|at|some|of|the|unsung|heroes|of|20th|century|pop|music|.\nThis|familiar|rise-and-fall|tale|is|long|on|glamour|and|short|on|larger|moralistic|consequences|,|though|it|'s|told|with|sharp|ears|and|eyes|for|the|tenor|of|the|times|.\nThis|beautifully|animated|epic|is|never|dull|.\nBrian|Tufano|'s|handsome|widescreen|photography|and|Paul|Grabowsky|'s|excellent|music|turn|this|fairly|parochial|melodrama|into|something|really|rather|special|.\nIt|makes|compelling|,|provocative|and|prescient|viewing|.\nA|thoroughly|entertaining|comedy|that|uses|Grant|'s|own|twist|of|acidity|to|prevent|itself|from|succumbing|to|its|own|bathos|.\nUsing|a|stock|plot|,|About|a|Boy|injects|just|enough|freshness|into|the|proceedings|to|provide|an|enjoyable|100|minutes|in|a|movie|theater|.\nWhat|Eric|Schaeffer|has|accomplished|with|Never|Again|may|not|,|strictly|speaking|,|qualify|as|revolutionary|.\nBut|it|'s|defiantly|and|delightfully|against|the|grain|.\nThe|hard-to-predict|and|absolutely|essential|chemistry|between|the|down-to-earth|Bullock|and|the|nonchalant|Grant|proves|to|be|sensational|,|and|everything|meshes|in|this|elegant|entertainment|.\nA|positively|thrilling|combination|of|ethnography|and|all|the|intrigue|,|betrayal|,|deceit|and|murder|of|a|Shakespearean|tragedy|or|a|juicy|soap|opera|.\nMr.|Clooney|,|Mr.|Kaufman|and|all|their|collaborators|are|entitled|to|take|a|deep|bow|for|fashioning|an|engrossing|entertainment|out|of|an|almost|sure-fire|prescription|for|a|critical|and|commercial|disaster|.\nDefinitely|funny|stuff|,|but|it|'s|more|of|the|`|laughing|at|'|variety|than|the|`|laughing|with|.|'\nEasily|the|most|thoughtful|fictional|examination|of|the|root|causes|of|anti-Semitism|ever|seen|on|screen|.\nA|real|winner|--|smart|,|funny|,|subtle|,|and|resonant|.\nFamily|portrait|of|need|,|neurosis|and|nervy|negativity|is|a|rare|treat|that|shows|the|promise|of|digital|filmmaking|.\nThe|pitch|must|have|read|like|a|discarded|House|Beautiful|spread|.\nUplifting|as|only|a|document|of|the|worst|possibilities|of|mankind|can|be|,|and|among|the|best|films|of|the|year|.\nDirector|David|Jacobson|gives|Dahmer|a|consideration|that|the|murderer|never|game|his|victims|.\nThe|film|has|a|terrific|look|and|Salma|Hayek|has|a|feel|for|the|character|at|all|stages|of|her|life|.\nA|decided|lack|of|spontaneity|in|its|execution|and|a|dearth|of|real|poignancy|in|its|epiphanies|.\nThe|performances|are|remarkable|.\nIt|'s|Burns|'|visuals|,|characters|and|his|punchy|dialogue|,|not|his|plot|,|that|carry|waydowntown|.\nAs|literary|desecrations|go|,|this|makes|for|perfectly|acceptable|,|occasionally|very|enjoyable|children|'s|entertainment|.\nYou|'ll|forget|about|it|by|Monday|,|though|,|and|if|they|'re|old|enough|to|have|developed|some|taste|,|so|will|your|kids|.\nWhile|I|ca|n't|say|it|'s|on|par|with|the|first|one|,|Stuart|Little|2|is|a|light|,|fun|cheese|puff|of|a|movie|.\nStrange|,|funny|,|twisted|,|brilliant|and|macabre|.\nA|genuinely|moving|and|wisely|unsentimental|drama|.\nHeaven|is|a|haunting|dramatization|of|a|couple|'s|moral|ascension|.\nThe|Mothman|Prophecies|is|best|when|illustrating|the|demons|bedevilling|the|modern|masculine|journey|.\nPlays|out|with|a|dogged|and|eventually|winning|squareness|that|would|make|it|the|darling|of|many|a|kids-and-family-oriented|cable|channel|.\nAn|entertaining|British|hybrid|of|comedy|,|caper|thrills|and|quirky|romance|.\nAlain|Choquart|'s|camera|barely|stops|moving|,|portraying|both|the|turmoil|of|the|time|and|giving|Conduct|a|perpetual|sense|of|urgency|,|which|,|for|a|film|that|takes|nearly|three|hours|to|unspool|,|is|both|funny|and|irritating|.\nMostly|Martha|could|have|used|a|little|trimming|--|10|or|15|minutes|could|be|cut|and|no|one|would|notice|--|but|it|'s|a|pleasurable|trifle|.\nThe|only|pain|you|'ll|feel|as|the|credits|roll|is|your|stomach|grumbling|for|some|tasty|grub|.\nHardly|an|objective|documentary|,|but|it|'s|great|cinematic|polemic|...|love|Moore|or|loathe|him|,|you|'ve|got|to|admire|...|the|intensity|with|which|he|'s|willing|to|express|his|convictions|.\nThe|mark|of|a|respectable|summer|blockbuster|is|one|of|two|things|:|unadulterated|thrills|or|genuine|laughs|.\nThe|film|is|visually|dazzling|,|the|depicted|events|dramatic|,|funny|and|poignant|.\nA|directorial|tour|de|force|by|Bernard|Rose|,|ivans|xtc|.\nis|one|of|this|year|'s|very|best|pictures|.\nWhat|makes|the|movie|work|--|to|an|admittedly|limited|extent|--|is|the|commitment|of|two|genuinely|engaging|performers|.\nWeaver|and|LaPaglia|are|both|excellent|,|in|the|kind|of|low-key|way|that|allows|us|to|forget|that|they|are|actually|movie|folk|.\nEven|the|digressions|are|funny|.\nMr.|Spielberg|and|his|company|just|want|you|to|enjoy|yourselves|without|feeling|conned|.\nAnd|they|succeed|merrily|at|their|noble|endeavor|.\nMelodrama|with|a|message|.\nA|perfectly|pleasant|if|slightly|pokey|comedy|.\nCoppola|'s|directorial|debut|is|an|incredibly|layered|and|stylistic|film|that|,|despite|a|fairly|slow|paced|,|almost|humdrum|approach|to|character|development|,|still|manages|at|least|a|decent|attempt|at|meaningful|cinema|.\nAt|the|end|,|when|the|now|computerized|Yoda|finally|reveals|his|martial|artistry|,|the|film|ascends|to|a|kinetic|life|so|teeming|that|even|cranky|adults|may|rediscover|the|quivering|kid|inside|.\nWang|Xiaoshuai|directs|this|intricately|structured|and|well-realized|drama|that|presents|a|fascinating|glimpse|of|urban|life|and|the|class|warfare|that|embroils|two|young|men|.\nIt|'s|hard|to|imagine|anybody|ever|being|``|in|the|mood|''|to|view|a|movie|as|harrowing|and|painful|as|The|Grey|Zone|,|but|it|'s|equally|hard|to|imagine|anybody|being|able|to|tear|their|eyes|away|from|the|screen|once|it|'s|started|.\nBogdanovich|taps|deep|into|the|Hearst|mystique|,|entertainingly|reenacting|a|historic|scandal|.\nA|moving|tale|of|love|and|destruction|in|unexpected|places|,|unexamined|lives|.\nClooney|directs|this|film|always|keeping|the|balance|between|the|fantastic|and|the|believable|...\nEven|if|you|do|n't|understand|what|on|earth|is|going|on|,|this|is|a|movie|that|will|stimulate|hours|of|post|viewing|discussion|,|if|only|to|be|reminded|of|who|did|what|to|whom|and|why|.\n...|a|lesson|in|prehistoric|hilarity|.\nA|fantastically|vital|movie|that|manages|to|invest|real|humor|,|sensuality|,|and|sympathy|into|a|story|about|two|adolescent|boys|.\nLawrence|plumbs|personal|tragedy|and|also|the|human|comedy|.\nThough|a|capable|thriller|,|somewhere|along|the|way|K-19|jettisoned|some|crucial|drama|.\nJust|about|the|surest|bet|for|an|all-around|good|time|at|the|movies|this|summer|.\nIt|would|be|disingenuous|to|call|Reno|a|great|film|,|but|you|can|say|that|about|most|of|the|flicks|moving|in|and|out|of|the|multiplex|.\nThis|is|a|movie|that|is|what|it|is|:|a|pleasant|distraction|,|a|Friday|night|diversion|,|an|excuse|to|eat|popcorn|.\nThere|is|a|certain|sense|of|experimentation|and|improvisation|to|this|film|that|may|not|always|work|,|but|it|is|nevertheless|compelling|.\nThe|Four|Feathers|has|rewards|,|from|the|exoticism|of|its|seas|of|sand|to|the|fierce|grandeur|of|its|sweeping|battle|scenes|.\nA|delicious|,|quirky|movie|with|a|terrific|screenplay|and|fanciful|direction|by|Michael|Gondry|.\nThis|story|still|seems|timely|and|important|.\nAnd|there|'s|an|element|of|heartbreak|to|watching|it|now|,|with|older|and|wiser|eyes|,|because|we|know|what|will|happen|after|Greene|'s|story|ends|.\nThe|bodily|function|jokes|are|about|what|you|'d|expect|,|but|there|are|rich|veins|of|funny|stuff|in|this|movie|.\nThe|performances|are|amiable|and|committed|,|and|the|comedy|more|often|than|not|hits|the|bullseye|.\nThis|time|,|the|hype|is|quieter|,|and|while|the|movie|is|slightly|less|successful|than|the|first|,|it|'s|still|a|rollicking|good|time|for|the|most|part|.\nThere|'s|plenty|to|enjoy|--|in|no|small|part|thanks|to|Lau|.\nWith|a|romantic|comedy|plotline|straight|from|the|ages|,|this|Cinderella|story|does|n't|have|a|single|surprise|up|its|sleeve|.\nBut|it|does|somehow|manage|to|get|you|under|its|spell|.\nThough|few|will|argue|that|it|ranks|with|the|best|of|Herzog|'s|works|,|Invincible|shows|he|'s|back|in|form|,|with|an|astoundingly|rich|film|.\n``|Catch|Me|''|feels|capable|of|charming|the|masses|with|star|power|,|a|pop-induced|score|and|sentimental|moments|that|have|become|a|Spielberg|trademark|.\nBy|no|means|a|great|movie|,|but|it|is|a|refreshingly|forthright|one|.\nThe|casting|of|Raymond|J.|Barry|as|the|`|assassin|'|greatly|enhances|the|quality|of|Neil|Burger|'s|impressive|fake|documentary|.\nDespite|Besson|'s|high-profile|name|being|Wasabi|'s|big|selling|point|,|there|is|no|doubt|that|Krawczyk|deserves|a|huge|amount|of|the|credit|for|the|film|'s|thoroughly|winning|tone|.\nThis|documentary|is|a|dazzling|,|remarkably|unpretentious|reminder|of|what|(|Evans|)|had|,|lost|,|and|got|back|.\nA|thoughtful|movie|,|a|movie|that|is|concerned|with|souls|and|risk|and|schemes|and|the|consequences|of|one|'s|actions|.\nAs|satisfyingly|odd|and|intriguing|a|tale|as|it|was|a|century|and|a|half|ago|...|has|a|delightfully|dour|,|deadpan|tone|and|stylistic|consistency|.\nMethodical|,|measured|,|and|gently|tedious|in|its|comedy|,|Secret|Ballot|is|a|purposefully|reductive|movie|--|which|may|be|why|it|'s|so|successful|at|lodging|itself|in|the|brain|.\nA|witty|,|trenchant|,|wildly|unsentimental|but|flawed|look|at|the|ins|and|outs|of|modern|moviemaking|.\nFor|most|of|the|distance|the|picture|provides|a|satisfyingly|unsettling|ride|into|the|dark|places|of|our|national|psyche|.\nBy|the|standards|of|knucklehead|swill|,|The|Hot|Chick|is|pretty|damned|funny|.\nOne|of|the|most|gloriously|unsubtle|and|adrenalized|extreme|shockers|since|The|Evil|Dead|.\n(|Reaches|)|wholly|believable|and|heart-wrenching|depths|of|despair|.\nAn|absorbing|and|unsettling|psychological|drama|.\nThis|movie|may|not|have|the|highest|production|values|you|'ve|ever|seen|,|but|it|'s|the|work|of|an|artist|,|one|whose|view|of|America|,|history|and|the|awkwardness|of|human|life|is|generous|and|deep|.\nThough|it|'s|not|very|well|shot|or|composed|or|edited|,|the|score|is|too|insistent|and|the|dialogue|is|frequently|overwrought|and|crudely|literal|,|the|film|shatters|you|in|waves|.\nThe|entire|cast|is|extraordinarily|good|.\nYakusho|,|as|always|,|is|wonderful|as|the|long-faced|sad|sack|...|and|his|chemistry|with|Shimizu|is|very|believable|.\nYoung|Hanks|and|Fisk|,|who|vaguely|resemble|their|celebrity|parents|,|bring|fresh|good|looks|and|an|ease|in|front|of|the|camera|to|the|work|.\nA|captivatingly|quirky|hybrid|of|character|portrait|,|romantic|comedy|and|beat-the-clock|thriller|.\nThe|film|sparkles|with|the|the|wisdom|and|humor|of|its|subjects|.\nIf|(|Jaglom|'s|)|latest|effort|is|not|the|director|at|his|most|sparkling|,|some|of|its|repartee|is|still|worth|hearing|.\nLike|The|English|Patient|and|The|Unbearable|Lightness|of|Being|,|The|Hours|is|one|of|those|reputedly|``|unfilmable|''|novels|that|has|bucked|the|odds|to|emerge|as|an|exquisite|motion|picture|in|its|own|right|.\nJust|about|the|best|straight-up|,|old-school|horror|film|of|the|last|15|years|.\nA|chilling|tale|of|one|of|the|great|crimes|of|20th|Century|France|:|the|murder|of|two|rich|women|by|their|servants|in|1933|.\nAn|oddity|,|to|be|sure|,|but|one|that|you|might|wind|up|remembering|with|a|degree|of|affection|rather|than|revulsion|.\nWhile|the|film|is|not|entirely|successful|,|it|still|manages|to|string|together|enough|charming|moments|to|work|.\nA|winning|piece|of|work|filled|with|love|for|the|movies|of|the|1960s|.\nE.T.|works|because|its|flabbergasting|principals|,|14-year-old|Robert|MacNaughton|,|6-year-old|Drew|Barrymore|and|10-year-old|Henry|Thomas|,|convince|us|of|the|existence|of|the|wise|,|wizened|visitor|from|a|faraway|planet|.\nHelps|to|remind|the|First|World|that|HIV\\/AIDS|is|far|from|being|yesterday|'s|news|.\nA|heartening|tale|of|small|victories|and|enduring|hope|.\nThe|vistas|are|sweeping|and|the|acting|is|far|from|painful|.\nJackson|and|co|have|brought|back|the|value|and|respect|for|the|term|epic|cinema|.\nIt|may|be|a|somewhat|backhanded|compliment|to|say|that|the|film|makes|the|viewer|feel|like|the|movie|'s|various|victimized|audience|members|after|a|while|,|but|it|also|happens|to|be|the|movie|'s|most|admirable|quality\nCharlotte|Sometimes|is|a|brilliant|movie|.\nIt|is|about|irrational|,|unexplainable|life|and|it|seems|so|real|because|it|does|not|attempt|to|filter|out|the|complexity|.\nA|delightful|stimulus|for|the|optic|nerves|,|so|much|that|it|'s|forgivable|that|the|plot|feels|like|every|other|tale|of|a|totalitarian|tomorrow|.\nDefies|logic|,|the|laws|of|physics|and|almost|anyone|'s|willingness|to|believe|in|it|.\nBut|darned|if|it|does|n't|also|keep|us|riveted|to|our|seats|.\nA|complex|psychological|drama|about|a|father|who|returns|to|his|son|'s|home|after|decades|away|.\nWriter|and|director|Otar|Iosseliani|'s|pleasant|tale|about|a|factory|worker|who|escapes|for|a|holiday|in|Venice|reveals|how|we|all|need|a|playful|respite|from|the|grind|to|refresh|our|souls|.\nThis|is|NOT|a|retread|of|``|Dead|Poets|'|Society|.|''\nSweet|and|memorable|film|.\nA|smart|,|arch|and|rather|cold-blooded|comedy|.\nKeenly|observed|and|refreshingly|natural|,|Swimming|gets|the|details|right|,|from|its|promenade|of|barely|clad|bodies|in|Myrtle|Beach|,|S.C.|,|to|the|adrenaline|jolt|of|a|sudden|lunch|rush|at|the|diner|.\n...|begins|on|a|high|note|and|sustains|it|beautifully|.\nDavis|...|gets|vivid|performances|from|her|cast|and|pulls|off|some|deft|Ally|McBeal-style|fantasy|sequences|.\n`|it|'s|better|to|go|in|knowing|full|well|what|'s|going|to|happen|,|but|willing|to|let|the|earnestness|of|its|execution|and|skill|of|its|cast|take|you|down|a|familiar|road|with|a|few|twists|.\nCynics|need|not|apply|.|'\nFunny|,|somber|,|absurd|,|and|,|finally|,|achingly|sad|,|Bartleby|is|a|fine|,|understated|piece|of|filmmaking|.\n``|Red|Dragon|''|is|entertaining|.\nAn|obvious|copy|of|one|of|the|best|films|ever|made|,|how|could|it|not|be|?\nBut|it|is|entertaining|on|an|inferior|level|.\nIt|is|a|popcorn|film|,|not|a|must-own|,|or|even|a|must-see|.\nSucceeds|only|because|Bullock|and|Grant|were|made|to|share|the|silver|screen|.\nBoth|flawed|and|delayed|,|Martin|Scorcese|'s|Gangs|of|New|York|still|emerges|as|his|most|vital|work|since|GoodFellas|.\nAs|any|creature-feature|fan|knows|,|when|you|cross|toxic|chemicals|with|a|bunch|of|exotic|creatures|,|you|get|a|lot|of|running|around|,|screaming|and|death|.\nOn|that|score|,|the|film|certainly|does|n't|disappoint|.\nAs|the|movie|traces|Mr.|Brown|'s|athletic|exploits|,|it|is|impossible|not|to|be|awed|by|the|power|and|grace|of|one|of|the|greatest|natural|sportsmen|of|modern|times|.\nA|moving|and|solidly|entertaining|comedy\\/drama|that|should|bolster|director|and|co-writer|Juan|José|Campanella|'s|reputation|in|the|United|States|.\nThanks|to|confident|filmmaking|and|a|pair|of|fascinating|performances|,|the|way|to|that|destination|is|a|really|special|walk|in|the|woods|.\nBeautifully|shot|,|delicately|scored|and|powered|by|a|set|of|heartfelt|performances|,|it|'s|a|lyrical|endeavour|.\nA|macabre|and|very|stylized|Swedish|fillm|about|a|modern|city|where|all|the|religious|and|civic|virtues|that|hold|society|in|place|are|in|tatters|.\nA|stylistic|romp|that|'s|always|fun|to|watch|.\nInformative|,|intriguing|,|observant|,|often|touching|...|gives|a|human|face|to|what|'s|often|discussed|in|purely|abstract|terms|.\n...|once|the|true|impact|of|the|day|unfolds|,|the|power|of|this|movie|is|undeniable|.\nAn|honest|,|sensitive|story|from|a|Vietnamese|point|of|view|.\nA|buoyant|romantic|comedy|about|friendship|,|love|,|and|the|truth|that|we|'re|all|in|this|together|.\nThe|film|'s|intimate|camera|work|and|searing|performances|pull|us|deep|into|the|girls|'|confusion|and|pain|as|they|struggle|tragically|to|comprehend|the|chasm|of|knowledge|that|'s|opened|between|them|.\nIt|'s|the|perfect|star|vehicle|for|Grant|,|allowing|him|to|finally|move|away|from|his|usual|bumbling|,|tongue-tied|screen|persona|.\nGaunt|,|silver-haired|and|leonine|,|(|Harris|)|brings|a|tragic|dimension|and|savage|full-bodied|wit|and|cunning|to|the|aging|Sandeman|.\nA|disturbing|examination|of|what|appears|to|be|the|definition|of|a|`|bad|'|police|shooting|.\nIt|'s|been|made|with|an|innocent|yet|fervid|conviction|that|our|Hollywood|has|all|but|lost|.\nNot|only|a|reminder|of|how|they|used|to|make|movies|,|but|also|how|they|sometimes|still|can|be|made|.\nA|three-hour|cinema|master|class|.\nEyre|is|on|his|way|to|becoming|the|American|Indian|Spike|Lee|.\nA|witty|,|whimsical|feature|debut|.\nWarm|in|its|loving|yet|unforgivingly|inconsistent|depiction|of|everyday|people|,|relaxed|in|its|perfect|quiet|pace|and|proud|in|its|message|.\nI|loved|this|film|.\nIt|provides|a|grim|,|upsetting|glimpse|at|the|lives|of|some|of|the|1.2|million|Palestinians|who|live|in|the|crowded|cities|and|refugee|camps|of|Gaza|.\nClint|Eastwood|'s|Blood|Work|is|a|lot|like|a|well-made|PB|&|J|sandwich|:|familiar|,|fairly|uneventful|and|boasting|no|real|surprises|--|but|still|quite|tasty|and|inviting|all|the|same|.\nA|movie|that|will|surely|be|profane|,|politically|charged|music|to|the|ears|of|Cho|'s|fans|.\nMuch|of|this|slick|and|sprightly|CGI|feature|is|sufficiently|funny|to|amuse|even|the|most|resolutely|unreligious|parents|who|escort|their|little|ones|to|megaplex|screenings|.\nRarely|,|a|movie|is|more|than|a|movie|.\nGo|.\nJacquot|'s|strategy|allows|his|cast|the|benefit|of|being|able|to|give|full|performances|...|while|demonstrating|vividly|that|the|beauty|and|power|of|the|opera|reside|primarily|in|the|music|itself|.\nQuitting|delivers|a|sucker-punch|,|and|its|impact|is|all|the|greater|beause|director|Zhang|'s|last|film|,|the|cuddly|Shower|,|was|a|non-threatening|multi-character|piece|centered|around|a|public|bath|house|.\nBy|not|averting|his|eyes|,|Solondz|forces|us|to|consider|the|unthinkable|,|the|unacceptable|,|the|unmentionable|.\nOne|Hour|Photo|may|seem|disappointing|in|its|generalities|,|but|it|'s|the|little|nuances|that|perhaps|had|to|escape|from|director|Mark|Romanek|'s|self-conscious|scrutiny|to|happen|,|that|finally|get|under|your|skin|.\nWhile|general|audiences|might|not|come|away|with|a|greater|knowledge|of|the|facts|of|Cuban|music|,|they|'ll|be|treated|to|an|impressive|and|highly|entertaining|celebration|of|its|sounds|.\nA|fascinating|documentary|that|provides|a|rounded|and|revealing|overview|of|this|ancient|holistic|healing|system\nBirthday|Girl|lucks|out|with|Chaplin|and|Kidman|,|who|are|capable|of|anteing|up|some|movie|star|charisma|when|they|need|it|to|sell|us|on|this|twisted|love|story|,|but|who|can|also|negotiate|the|movie|'s|darker|turns|.\nAn|interesting|look|behind|the|scenes|of|Chicago-based|rock|group|Wilco|...\nSharp|edges|and|a|deep|vein|of|sadness|run|through|its|otherwise|comic|narrative|.\nThere|'s|lots|of|cool|stuff|packed|into|ESPN|'s|Ultimate|X.\nRock|solid|family|fun|out|of|the|gates|,|extremely|imaginative|through|out|,|but|wanes|in|the|middle\nThe|Ya-Ya|'s|have|many|secrets|and|one|is|-|the|books|are|better|.\nTranslating|complex|characters|from|novels|to|the|big|screen|is|an|impossible|task|but|they|are|true|to|the|essence|of|what|it|is|to|be|Ya-Ya|.\nThe|touch|is|generally|light|enough|and|the|performances|,|for|the|most|part|,|credible|.\nI|liked|About|Schmidt|a|lot|,|but|I|have|a|feeling|that|I|would|have|liked|it|much|more|if|Harry|&|Tonto|never|existed|.\nSteers|has|an|unexpectedly|adamant|streak|of|warm-blooded|empathy|for|all|his|disparate|Manhattan|denizens|--|especially|the|a|\\*\\*|holes|.\nThat|Storytelling|has|value|can|not|be|denied|.\nNot|even|Solondz|'s|thirst|for|controversy|,|sketchy|characters|and|immature|provocations|can|fully|succeed|at|cheapening|it|.\nOnce|the|downward|spiral|comes|to|pass|,|Auto|Focus|bears|out|as|your|typical|junkie|opera|...\nA|knowing|sense|of|humor|and|a|lot|of|warmth|ignite|Son|of|the|Bride|.\nA|rich|tale|of|our|times|,|very|well|told|with|an|appropriate|minimum|of|means|.\nThe|characters|are|complex|and|quirky|,|but|entirely|believable|as|the|remarkable|ensemble|cast|brings|them|to|life|.\nIn|all|fairness|,|I|must|report|that|the|children|of|varying|ages|in|my|audience|never|coughed|,|fidgeted|or|romped|up|and|down|the|aisles|for|bathroom|breaks|.\nAs|gory|as|the|scenes|of|torture|and|self-mutilation|may|be|,|they|are|pitted|against|shimmering|cinematography|that|lends|the|setting|the|ethereal|beauty|of|an|Asian|landscape|painting|.\nEfficient|,|suitably|anonymous|chiller|.\nGorgeous|scenes|,|masterful|performances|,|but|the|sickly|sweet|gender|normative|narrative|left|an|acrid|test|in|this|gourmet|'s|mouth|.\nThe|hot|topics|of|the|plot|are|relegated|to|the|background|--|a|welcome|step|forward|from|the|Sally|Jesse|Raphael|atmosphere|of|films|like|Philadelphia|and|American|Beauty|.\nIt|'s|usually|a|bad|sign|when|directors|abandon|their|scripts|and|go|where|the|moment|takes|them|,|but|Olympia|,|Wash.|,|based|filmmakers|Anne|de|Marcken|and|Marilyn|Freeman|did|just|that|and|it|'s|what|makes|their|project|so|interesting|.\nA|memorable|experience|that|,|like|many|of|his|works|,|presents|weighty|issues|colorfully|wrapped|up|in|his|own|idiosyncratic|strain|of|kitschy|goodwill|.\nExecuted|with|such|gentle|but|insistent|sincerity|,|with|such|good|humor|and|appreciation|of|the|daily|grind|that|only|the|most|hardhearted|Scrooge|could|fail|to|respond|.\nThe|gentle|comic|treatment|of|adolescent|sturm|und|drang|should|please|fans|of|Chris|Fuhrman|'s|posthumously|published|cult|novel|.\nDirector|Claude|Chabrol|has|become|the|master|of|innuendo|.\nIt|is|not|what|you|see|,|it|is|what|you|think|you|see|.\nA|deftly|entertaining|film|,|smartly|played|and|smartly|directed|.\nA|documentary|to|make|the|stones|weep|--|as|shameful|as|it|is|scary|.\nI|hope|the|movie|is|widely|seen|and|debated|with|appropriate|ferocity|and|thoughtfulness|.\nA|thought-provoking|look|at|how|Western|foreign|policy|-|however|well|intentioned|-|can|wreak|havoc|in|other|cultures|.\nAsks|what|truth|can|be|discerned|from|non-firsthand|experience|,|and|specifically|questions|cinema|'s|capability|for|recording|truth|.\nThe|journey|to|the|secret|'s|eventual|discovery|is|a|separate|adventure|,|and|thrill|enough|.\nA|quiet|,|disquieting|triumph|.\nDarkly|funny|and|frequently|insightful|.\n...|the|tale|of|her|passionate|,|tumultuous|affair|with|Musset|unfolds|as|Sand|'s|masculine|persona|,|with|its|love|of|life|and|beauty|,|takes|form|.\nIf|you|want|to|see|a|train|wreck|that|you|ca|n't|look|away|from|,|then|look|no|further|,|because|here|it|is|.\nThere|'s|so|much|to|look|at|in|Metropolis|you|hate|to|tear|your|eyes|away|from|the|images|long|enough|to|read|the|subtitles|.\nThe|search|for|redemption|makes|for|a|touching|love|story|,|mainly|because|Blanchett|and|Ribisi|compellingly|tap|into|a|spiritual|aspect|of|their|characters|'|suffering|.\nA|film|of|ideas|and|wry|comic|mayhem|.\nAt|its|worst|the|screenplay|is|callow|,|but|at|its|best|it|is|a|young|artist|'s|thoughtful|consideration|of|fatherhood|.\nA|worthwhile|documentary|,|whether|you|'re|into|rap|or|not|,|even|if|it|may|still|leave|you|wanting|more|answers|as|the|credits|roll|.\nFessenden|'s|narrative|is|just|as|much|about|the|ownership|and|redefinition|of|myth|as|it|is|about|a|domestic|unit|finding|their|way|to|joy|.\nThat|the|film|opens|with|maggots|crawling|on|a|dead|dog|is|not|an|out|of|place|metaphor|.\nStanley|Kwan|has|directed|not|only|one|of|the|best|gay|love|stories|ever|made|,|but|one|of|the|best|love|stories|of|any|stripe|.\nThe|concert|footage|is|stirring|,|the|recording|sessions|are|intriguing|,|and|--|on|the|way|to|striking|a|blow|for|artistic|integrity|--|this|quality|band|may|pick|up|new|admirers|.\nNorton|holds|the|film|together|.\n(|There|'s|)|quite|a|bit|of|heart|,|as|you|would|expect|from|the|directors|of|The|Little|Mermaid|and|Aladdin|.\nYou|wo|n't|have|any|trouble|getting|kids|to|eat|up|these|Veggies|.\nA|creaky|staircase|gothic|.\nEnjoyably|dumb|,|sweet|,|and|intermittently|hilarious|--|if|you|'ve|a|taste|for|the|quirky|,|steal|a|glimpse|.\nA|movie|that|sends|you|out|of|the|theater|feeling|like|you|'ve|actually|spent|time|living|in|another|community|.\nLight-years|ahead|of|paint-by-number|American|blockbusters|like|Pearl|Harbor|,|at|least|artistically|.\nA|fascinating|documentary|about|the|long|and|eventful|spiritual|journey|of|the|guru|who|helped|launch|the|New|Age|.\nIsabelle|Huppert|excels|as|the|enigmatic|Mika|and|Anna|Mouglalis|is|a|stunning|new|young|talent|in|one|of|Chabrol|'s|most|intense|psychological|mysteries|.\nPerhaps|not|since|Nelson|Eddy|crooned|his|Indian|Love|Call|to|Jeanette|MacDonald|has|there|been|a|movie|so|unabashedly|Canadian|,|not|afraid|to|risk|American|scorn|or|disinterest|.\nWedding|feels|a|bit|anachronistic|.\nStill|,|not|every|low-budget|movie|must|be|quirky|or|bleak|,|and|a|happy|ending|is|no|cinematic|sin|.\nIt|'s|still|a|comic|book|,|but|Maguire|makes|it|a|comic|book|with|soul|.\nBrings|to|a|spectacular|completion|one|of|the|most|complex|,|generous|and|subversive|artworks|of|the|last|decade|.\nAn|amusing|and|unexpectedly|insightful|examination|of|sexual|jealousy|,|resentment|and|the|fine|line|between|passion|and|pretence|.\nA|fascinating|,|bombshell|documentary|that|should|shame|Americans|,|regardless|of|whether|or|not|ultimate|blame|finally|lies|with|Kissinger|.\nShould|be|required|viewing|for|civics|classes|and|would-be|public|servants|alike|.\nAdaptation|'s|success|in|engaging|the|audience|in|the|travails|of|creating|a|screenplay|is|extraordinary|.\nA|polished|and|vastly|entertaining|caper|film|that|puts|the|sting|back|into|the|con|.\nIt|'s|no|surprise|that|as|a|director|Washington|demands|and|receives|excellent|performances|,|from|himself|and|from|newcomer|Derek|Luke|.\n...|while|each|moment|of|this|broken|character|study|is|rich|in|emotional|texture|,|the|journey|does|n't|really|go|anywhere|.\nThe|film|gets|close|to|the|chimps|the|same|way|Goodall|did|,|with|a|serious|minded|patience|,|respect|and|affection|.\nIt|'s|an|often-cute|film|but|either|needs|more|substance|to|fill|the|time|or|some|judicious|editing|.\nThis|may|be|Burns|'s|strongest|film|since|The|Brothers|McMullen|.\nWhat|makes|this|film|special|is|Serry|'s|ability|to|take|what|is|essentially|a|contained|family|conflict|and|put|it|into|a|much|larger|historical|context|.\nIt|'s|Quaid|who|anchors|the|film|with|his|effortless|performance|and|that|trademark|grin|of|his|--|so|perfect|for|a|ballplayer|.\nIt|is|OK|for|a|movie|to|be|something|of|a|sitcom|apparatus|,|if|the|lines|work|,|the|humor|has|point|and|the|actors|are|humanly|engaged|.\nThough|not|for|everyone|,|The|Guys|is|a|somber|trip|worth|taking|.\nA|sly|female|empowerment|movie|,|although|not|in|a|way|anyone|would|expect|.\nYou|really|have|to|salute|writer-director|Haneke|(|he|adapted|Elfriede|Jelinek|'s|novel|)|for|making|a|film|that|is|n't|nearly|as|graphic|but|much|more|powerful|,|brutally|shocking|and|difficult|to|watch|.\nIt|'s|a|wonderful|,|sobering|,|heart-felt|drama|.\nRuns|on|the|pure|adrenalin|of|Pacino|'s|performance|.\nThe|Paradiso|'s|rusted-out|ruin|and|ultimate|collapse|during|the|film|'s|final|(|restored|)|third|...|emotionally|belittle|a|cinema|classic|.\nSometimes|shorter|is|better|.\nPhillip|Noyce|and|all|of|his|actors|--|as|well|as|his|cinematographer|,|Christopher|Doyle|--|understand|the|delicate|forcefulness|of|Greene|'s|prose|,|and|it|'s|there|on|the|screen|in|their|version|of|The|Quiet|American|.\nThe|film|just|might|turn|on|many|people|to|opera|,|in|general|,|an|art|form|at|once|visceral|and|spiritual|,|wonderfully|vulgar|and|sublimely|lofty|--|and|as|emotionally|grand|as|life|.\nAs|a|vehicle|to|savour|Binoche|'s|skill|,|the|film|is|well|worthwhile|.\nThe|huskies|are|beautiful|,|the|border|collie|is|funny|and|the|overall|feeling|is|genial|and|decent|.\nWhatever|complaints|I|might|have|,|I|'d|take|(|its|)|earnest|errors|and|hard-won|rewards|over|the|bombastic|self-glorification|of|other|feel-good|fiascos|like|Antwone|Fisher|or|The|Emperor|'s|Club|any|time|.\nMastering|its|formidable|arithmetic|of|cameras|and|souls|,|Group|articulates|a|flood|of|emotion|.\nA|pretty|decent|kid-pleasing|,|tolerable-to-adults|lark|of|a|movie|.\nEven|during|the|climactic|hourlong|cricket|match|,|boredom|never|takes|hold|.\nCombine|the|paranoid|claustrophobia|of|a|submarine|movie|with|the|unsettling|spookiness|of|the|supernatural|--|why|did|n't|Hollywood|think|of|this|sooner|?\nLike|Kubrick|,|Soderbergh|is|n't|afraid|to|try|any|genre|and|to|do|it|his|own|way|.\nNothing|can|detract|from|the|affection|of|that|moral|favorite|:|friends|will|be|friends|through|thick|and|thin|.\nIf|the|film|has|a|problem|,|its|shortness|disappoints|:|You|want|the|story|to|go|on|and|on|.\nUnlike|most|anime|,|whose|most|ardent|fans|outside|Japan|seem|to|be|introverted|young|men|with|fantasy|fetishes|,|Metropolis|never|seems|hopelessly|juvenile|.\nThe|plot|twists|give|I|Am|Trying|to|Break|Your|Heart|an|attraction|it|desperately|needed|.\nThe|most|brilliant|and|brutal|UK|crime|film|since|Jack|Carter|went|back|to|Newcastle|,|the|first|half|of|Gangster|No.|1|drips|with|style|and|,|at|times|,|blood|.\nLike|its|New|England|characters|,|most|of|whom|wander|about|in|thick|clouds|of|denial|,|the|movie|eventually|gets|around|to|its|real|emotional|business|,|striking|deep|chords|of|sadness|.\nThe|Bai|brothers|have|taken|an|small|slice|of|history|and|opened|it|up|for|all|of|us|to|understand|,|and|they|'ve|told|a|nice|little|story|in|the|process|.\nFlamboyant|in|some|movies|and|artfully|restrained|in|others|,|65-year-old|Jack|Nicholson|could|be|looking|at|his|12th|Oscar|nomination|by|proving|that|he|'s|now|,|more|than|ever|,|choosing|his|roles|with|the|precision|of|the|insurance|actuary|.\n...|is|there|a|deeper|,|more|direct|connection|between|these|women|,|one|that|spans|time|and|reveals|meaning|?\nYou|bet|there|is|and|it|'s|what|makes|this|rather|convoluted|journey|worth|taking|.\nThe|most|amazing|super-sized|dosage|of|goofball|stunts|any|``|Jackass|''|fan|could|want|.\nReal|Women|may|have|many|agendas|,|but|it|also|will|win|you|over|,|in|a|big|way|.\nYoung|Everlyn|Sampi|,|as|the|courageous|Molly|Craig|,|simply|radiates|star-power|potential|in|this|remarkable|and|memorable|film|.\nSurprisingly|powerful|and|universal|.\nApart|from|its|own|considerable|achievement|,|Metropolis|confirms|Tezuka|'s|status|as|both|the|primary|visual|influence|on|the|animé|tradition|and|its|defining|philosophical|conscience|.\nI|'ll|put|it|this|way|:|If|you|'re|in|the|mood|for|a|melodrama|narrated|by|talking|fish|,|this|is|the|movie|for|you|.\nMorvern|Callar|confirms|Lynne|Ramsay|as|an|important|,|original|talent|in|international|cinema|.\nWell-done|supernatural|thriller|with|keen|insights|into|parapsychological|phenomena|and|the|soulful|nuances|of|the|grieving|process|.\nA|plethora|of|engaging|diatribes|on|the|meaning|of|`|home|,|'|delivered|in|grand|passion|by|the|members|of|the|various|households|.\nIt|'s|technically|sumptuous|but|also|almost|wildly|alive|.\nThis|film|puts|Wang|at|the|forefront|of|China|'s|Sixth|Generation|of|film|makers|.\nit|'s|refreshing|to|see|a|movie|that|embraces|its|old-fashioned|themes|and|in|the|process|comes|out|looking|like|something|wholly|original|.\nWiseman|is|patient|and|uncompromising|,|letting|his|camera|observe|and|record|the|lives|of|women|torn|apart|by|a|legacy|of|abuse|.\nThere|'s|none|of|the|happily-ever|-|after|spangle|of|Monsoon|Wedding|in|Late|Marriage|--|and|that|'s|part|of|what|makes|Dover|Kosashvili|'s|outstanding|feature|debut|so|potent|.\nAn|ingenious|and|often|harrowing|look|at|damaged|people|and|how|families|can|offer|either|despair|or|consolation|.\nArguably|the|best|script|that|Besson|has|written|in|years|.\nIt|'s|no|lie|--|Big|Fat|Liar|is|a|real|charmer|.\nInvigorating|,|surreal|,|and|resonant|with|a|rainbow|of|emotion|.\nDirector|Alfonso|Cuaron|gets|vivid|,|convincing|performances|from|a|fine|cast|,|and|generally|keeps|things|going|at|a|rapid|pace|,|occasionally|using|an|omniscient|voice-over|narrator|in|the|manner|of|French|New|Wave|films|.\nPray|has|really|done|his|subject|justice|.\nAn|unexpectedly|sweet|story|of|sisterhood|.\nMaintains|your|sympathy|for|this|otherwise|challenging|soul|by|letting|you|share|her|one-room|world|for|a|while|.\nA|subtle|,|humorous|,|illuminating|study|of|politics|,|power|and|social|mobility|.\nEven|if|you|have|no|interest|in|the|gang-infested|,|East-vs|.\n-|West|Coast|rap|wars|,|this|modern|mob|music|drama|never|fails|to|fascinate|.\nNair|'s|attention|to|detail|creates|an|impeccable|sense|of|place|,|while|Thurman|and|Lewis|give|what|can|easily|be|considered|career-best|performances|.\nBerry|'s|saucy|,|full-bodied|performance|gives|this|aging|series|a|much|needed|kick|,|making|``|Die|Another|Day|''|one|of|the|most|entertaining|Bonds|in|years\nRed|Dragon|is|less|baroque|and|showy|than|Hannibal|,|and|less|emotionally|affecting|than|Silence|.\nBut|,|like|Silence|,|it|'s|a|movie|that|gets|under|your|skin|.\nCaviezel|embodies|the|transformation|of|his|character|completely|.\nA|creepy|,|intermittently|powerful|study|of|a|self-destructive|man|...|about|as|unsettling|to|watch|as|an|exploratory|medical|procedure|or|an|autopsy|.\nPacino|and|Williams|seem|to|keep|upping|the|ante|on|each|other|,|just|as|their|characters|do|in|the|film|.\nWhat|results|is|the|best|performance|from|either|in|years|.\nThe|cast|is|top-notch|and|I|predict|there|will|be|plenty|of|female|audience|members|drooling|over|Michael|Idemoto|as|Michael|.\nBéart|and|Berling|are|both|superb|,|while|Huppert|...|is|magnificent|.\nAll|the|actors|are|good|in|Pauline|&|Paulette|but|van|der|Groen|,|described|as|`|Belgium|'s|national|treasure|,|'|is|especially|terrific|as|Pauline|.\nMiyazaki|has|created|such|a|vibrant|,|colorful|world|,|it|'s|almost|impossible|not|to|be|swept|away|by|the|sheer|beauty|of|his|images|.\nMuccino|seems|to|be|exploring|the|idea|of|why|human|beings|long|for|what|they|do|n't|have|,|and|how|this|gets|us|in|trouble|.\nBut|even|while|his|characters|are|acting|horribly|,|he|is|always|sympathetic|.\nWhether|or|not|you|buy|Mr.|Broomfield|'s|findings|,|the|film|acquires|an|undeniable|entertainment|value|as|the|slight|,|pale|Mr.|Broomfield|continues|to|force|himself|on|people|and|into|situations|that|would|make|lesser|men|run|for|cover|.\nOzpetek|joins|the|ranks|of|those|gay|filmmakers|who|have|used|the|emigre|experience|to|explore|same-sex|culture|in|ways|that|elude|the|more|nationally|settled|.\n...|an|eerily|suspenseful|,|deeply|absorbing|piece|that|works|as|a|treatise|on|spirituality|as|well|as|a|solid|sci-fi|thriller|.\nI|'ve|never|seen|or|heard|anything|quite|like|this|film|,|and|I|recommend|it|for|its|originality|alone|.\nNicole|Kidman|makes|it|a|party|worth|attending|.\nThe|direction|has|a|fluid|,|no-nonsense|authority|,|and|the|performances|by|Harris|,|Phifer|and|Cam|`|ron|seal|the|deal|.\nThe|Komediant|is|a|tale|worth|catching|.\nThe|writing|is|clever|and|the|cast|is|appealing|.\nThe|simplicity|of|The|Way|Home|has|few|equals|this|side|of|Aesop\nLife|on|the|rez|is|no|picnic|:|this|picture|shows|you|why|.\nSpielberg|has|managed|to|marry|science|fiction|with|film|noir|and|action|flicks|with|philosophical|inquiry|.\nIt|'s|the|type|of|film|about|growing|up|that|we|do|n't|see|often|enough|these|days|:|realistic|,|urgent|,|and|not|sugarcoated|in|the|least|.\nA|taut|,|sobering|film|.\nExudes|the|fizz|of|a|Busby|Berkeley|musical|and|the|visceral|excitement|of|a|sports|extravaganza|.\nIt|'s|full|of|cheesy|dialogue|,|but|great|trashy|fun|that|finally|returns|De|Palma|to|his|pulpy|thrillers|of|the|early|'80s|.\nThe|results|,|if|not|memorable|,|are|at|least|interesting|.\nA|quietly|moving|look|back|at|what|it|was|to|be|Iranian-American|in|1979|.\nLike|a|veteran|head|cutter|,|Barbershop|is|tuned|in|to|its|community|.\nI|'m|sure|mainstream|audiences|will|be|baffled|,|but|,|for|those|with|at|least|a|minimal|appreciation|of|Woolf|and|Clarissa|Dalloway|,|The|Hours|represents|two|of|those|well|spent|.\nYou|live|the|mood|rather|than|savour|the|story|.\nAngela|Gheorghiu|as|famous|prima|donna|Floria|Tosca|,|Roberto|Alagna|as|her|lover|Mario|Cavaradossi|,|and|Ruggero|as|the|villainous|,|lecherous|police|chief|Scarpia|,|all|sing|beautifully|and|act|adequately|.\nWhile|there|are|times|when|the|film|'s|reach|exceeds|its|grasp|,|the|production|works|more|often|than|it|does|n't|.\nWhile|Scorsese|'s|bold|images|and|generally|smart|casting|ensure|that|``|Gangs|''|is|never|lethargic|,|the|movie|is|hindered|by|a|central|plot|that|'s|peppered|with|false|starts|and|populated|by|characters|who|are|nearly|impossible|to|care|about|.\nWatching|this|gentle|,|mesmerizing|portrait|of|a|man|coming|to|terms|with|time|,|you|barely|realize|your|mind|is|being|blown|.\nThe|beautifully|choreographed|kitchen|ballet|is|simple|but|absorbing|.\nThere|'s|...|an|underlying|Old|World|sexism|to|Monday|Morning|that|undercuts|its|charm|.\n``|The|best|Disney|movie|since|the|Lion|King|''\nTranscends|its|agenda|to|deliver|awe-inspiring|,|at|times|sublime|,|visuals|and|offer|a|fascinating|glimpse|into|the|subculture|of|extreme|athletes|whose|derring-do|puts|the|X|into|the|games|.\nThink|of|it|as|Gidget|,|only|with|muscles|and|a|lot|more|smarts|,|but|just|as|endearing|and|easy|to|watch|.\nThere|is|no|solace|here|,|no|entertainment|value|,|merely|a|fierce|lesson|in|where|filmmaking|can|take|us|.\nGiggling|at|the|absurdities|and|inconsistencies|is|part|of|the|fun|.\nBut|the|talented|cast|alone|will|keep|you|watching|,|as|will|the|fight|scenes|.\nArteta|paints|a|picture|of|lives|lived|in|a|state|of|quiet|desperation|.\nDrug|abuse|,|infidelity|and|death|are|n't|usually|comedy|fare|,|but|Turpin|'s|film|allows|us|to|chuckle|through|the|angst|.\nWhile|Insomnia|is|in|many|ways|a|conventional|,|even|predictable|remake|,|Nolan|'s|penetrating|undercurrent|of|cerebral|and|cinemantic|flair|lends|(|it|)|stimulating|depth|.\nEfteriades|gives|the|neighborhood|--|scenery|,|vibe|and|all|--|the|cinematic|equivalent|of|a|big|,|tender|hug|.\nThis|is|a|nicely|handled|affair|,|a|film|about|human|darkness|but|etched|with|a|light|(|yet|unsentimental|)|touch|.\nAmazing|!\nA|college|story|that|works|even|without|vulgarity|,|sex|scenes|,|and|cussing|!\nThe|amazing|film|work|is|so|convincing|that|by|movies|'|end|you|'ll|swear|you|are|wet|in|some|places|and|feel|sand|creeping|in|others|.\nA|raunchy|and|frequently|hilarious|follow-up|to|the|gifted|Korean|American|stand-up|'s|I|'m|the|One|That|I|Want|.\nIf|you|ever|wanted|to|be|an|astronaut|,|this|is|the|ultimate|movie|experience|-|it|'s|informative|and|breathtakingly|spectacular|.\nWhile|Parker|and|co-writer|Catherine|di|Napoli|are|faithful|to|Melville|'s|plotline|,|they|and|a|fully|engaged|supporting|cast|...|have|made|the|old|boy|'s|characters|more|quick-witted|than|any|English|Lit|major|would|have|thought|possible|.\nA|smart|,|sassy|and|exceptionally|charming|romantic|comedy|.\nThere|are|flaws|,|but|also|stretches|of|impact|and|moments|of|awe|;|we|'re|wrapped|up|in|the|characters|,|how|they|make|their|choices|,|and|why|.\nA|gift|to|anyone|who|loves|both|dance|and|cinema\nIt|seems|Grant|does|n't|need|the|floppy|hair|and|the|self-deprecating|stammers|after|all|.\nA|reminder|that|beyond|all|the|hype|and|recent|digital|glitz|,|Spielberg|knows|how|to|tell|us|about|people|.\nOne|of|the|finest|,|most|humane|and|important|Holocaust|movies|ever|made|.\nAn|engrossing|and|infectiously|enthusiastic|documentary|.\nA|beautiful|,|timeless|and|universal|tale|of|heated|passions|--|jealousy|,|betrayal|,|forgiveness|and|murder|.\nA|culture-clash|comedy|that|,|in|addition|to|being|very|funny|,|captures|some|of|the|discomfort|and|embarrassment|of|being|a|bumbling|American|in|Europe|.\nShattering|,|devastating|documentary|on|two|maladjusted|teens|in|a|downward|narcotized|spiral|.\nExtraordinary|debut|from|Josh|Koury|.\nThe|most|compelling|performance|of|the|year|adds|substantial|depth|to|this|shocking|testament|to|anti-Semitism|and|neo-fascism|.\nFor|those|who|are|intrigued|by|politics|of|the|'70s|,|the|film|is|every|bit|as|fascinating|as|it|is|flawed|.\nAll|right|,|so|it|'s|not|a|brilliant|piece|of|filmmaking|,|but|it|is|a|funny|(|sometimes|hilarious|)|comedy|with|a|deft|sense|of|humor|about|itself|,|a|playful|spirit|and|a|game|cast|.\nDouglas|McGrath|'s|Nicholas|Nickleby|does|Dickens|as|it|should|be|done|cinematically|.\nIt|'s|a|lovely|,|eerie|film|that|casts|an|odd|,|rapt|spell|.\nThe|quirky|and|recessive|charms|of|co-stars|Martin|Donovan|and|Mary-Louise|Parker|help|overcome|the|problematic|script|.\nIt|'s|good|to|see|Michael|Caine|whipping|out|the|dirty|words|and|punching|people|in|the|stomach|again|.\nYou|just|know|something|terrible|is|going|to|happen|.\nBut|when|it|does|,|you|'re|entirely|unprepared|.\nIt|'s|fun|,|wispy|,|wise|and|surprisingly|inoffensive|for|a|film|about|a|teen|in|love|with|his|stepmom|.\nAble|to|provide|insight|into|a|fascinating|part|of|theater|history|.\nAn|unflinching|,|complex|portrait|of|a|modern|Israel|that|is|rarely|seen|on-screen|.\nA|Jewish|WW|II|doc|that|is|n't|trying|simply|to|out-shock|,|out-outrage|or|out-depress|its|potential|audience|!\nWho|knew|...\nIt|'s|a|familiar|story|,|but|one|that|is|presented|with|great|sympathy|and|intelligence|.\nGently|humorous|and|touching|.\nIt|wo|n't|hold|up|over|the|long|haul|,|but|in|the|moment|,|Finch|'s|tale|provides|the|forgettable|pleasures|of|a|Saturday|matinee|.\nKinnear|'s|performance|is|a|career-defining|revelation|.\nThe|film|is|predictable|in|the|reassuring|manner|of|a|beautifully|sung|holiday|carol|.\n...|hits|every|cliche|we|'ve|come|to|expect|,|including|the|assumption|that|``|crazy|''|people|are|innocent|,|childlike|and|inherently|funny|.\nThe|strong|subject|matter|continues|to|shock|throughout|the|film|.\nNot|everyone|will|play|the|dark|,|challenging|tune|taught|by|The|Piano|Teacher|.\nA|certain|sexiness|underlines|even|the|dullest|tangents|.\nYou|may|be|captivated|,|as|I|was|,|by|its|moods|,|and|by|its|subtly|transformed|star|,|and|still|wonder|why|Paul|Thomas|Anderson|ever|had|the|inclination|to|make|the|most|sincere|and|artful|movie|in|which|Adam|Sandler|will|probably|ever|appear|.\nThere|is|no|substitute|for|on-screen|chemistry|,|and|when|Friel|pulls|the|strings|that|make|Williams|sink|into|melancholia|,|the|reaction|in|Williams|is|as|visceral|as|a|gut|punch|.\nThat|old|adage|about|women|being|unknowable|gets|an|exhilarating|new|interpretation|in|Morvern|Callar|.\nA|mix|of|gritty|realism|,|crisp|storytelling|and|radiant|compassion|that|effortlessly|draws|you|in|.\nAfter|watching|it|,|you|can|only|love|the|players|it|brings|to|the|fore|for|the|gifted|but|no-nonsense|human|beings|they|are|and|for|the|still-inestimable|contribution|they|have|made|to|our|shared|history|.\nIn|his|U.S.|debut|,|Mr.|Schnitzler|proves|himself|a|deft|pace|master|and|stylist|.\nUltimate|X|is|a|ride|,|basically|the|kind|of|greatest-hits|reel|that|might|come|with|a|subscription|to|ESPN|the|Magazine|.\nRich|in|shadowy|metaphor|and|as|sharp|as|a|samurai|sword|,|Jiang|Wen|'s|Devils|on|the|Doorstep|is|a|wartime|farce|in|the|alternately|comic|and|gut-wrenching|style|of|Joseph|Heller|or|Kurt|Vonnegut|.\nOffers|a|clear-eyed|chronicle|of|a|female|friendship|that|is|more|complex|and|honest|than|anything|represented|in|a|Hollywood|film|.\nA|winning|comedy|with|its|wry|observations|about|long-lived|friendships|and|the|ways|in|which|we|all|lose|track|of|ourselves|by|trying|to|please|others|.\nIts|cast|full|of|caffeinated|comedy|performances|more|than|make|up|for|its|logical|loopholes|,|which|fly|by|so|fast|there|'s|no|time|to|think|about|them|anyway|.\nLohman|adapts|to|the|changes|required|of|her|,|but|the|actress|and|director|Peter|Kosminsky|never|get|the|audience|to|break|through|the|wall|her|character|erects\nAlthough|it|includes|a|fair|share|of|dumb|drug|jokes|and|predictable|slapstick|,|``|Orange|County|''|is|far|funnier|than|it|would|seem|to|have|any|right|to|be|.\nFor|a|movie|audience|,|The|Hours|does|n't|connect|in|a|neat|way|,|but|introduces|characters|who|illuminate|mysteries|of|sex|,|duty|and|love|.\nA|bright|,|inventive|,|thoroughly|winning|flight|of|revisionist|fancy|.\nOzpetek|'s|effort|has|the|scope|and|shape|of|an|especially|well-executed|television|movie|.\nAffirms|the|gifts|of|all|involved|,|starting|with|Spielberg|and|going|right|through|the|ranks|of|the|players|--|on-camera|and|off|--|that|he|brings|together|.\nA|delightful|little|film|that|revels|in|its|own|simplicity|,|Mostly|Martha|will|leave|you|with|a|smile|on|your|face|and|a|grumble|in|your|stomach|.\nMakes|one|thing|abundantly|clear|.\nAmerican|musical|comedy|as|we|know|it|would|n't|exist|without|the|precedent|of|Yiddish|theater|,|whose|jolly|,|fun-for-fun|'s|-|sake|communal|spirit|goes|to|the|essence|of|Broadway|.\nDeepa|Mehta|provides|an|accessible|introduction|as|well|as|some|intelligent|observations|on|the|success|of|Bollywood|in|the|Western|world|.\nIf|anything|,|the|film|is|doing|something|of|a|public|service|--|shedding|light|on|a|group|of|extremely|talented|musicians|who|might|otherwise|go|unnoticed|and|underappreciated|by|music|fans|.\nIn|addition|to|gluing|you|to|the|edge|of|your|seat|,|Changing|Lanes|is|also|a|film|of|freshness|,|imagination|and|insight|.\nPan|Nalin|'s|exposition|is|beautiful|and|mysterious|,|and|the|interviews|that|follow|,|with|the|practitioners|of|this|ancient|Indian|practice|,|are|as|subtle|and|as|enigmatic|.\nThe|mood|,|look|and|tone|of|the|film|fit|the|incredible|storyline|to|a|T.\nIt|'s|crafty|,|energetic|and|smart|--|the|kid|is|sort|of|like|a|fourteen-year|old|Ferris|Bueller|.\nA|work|of|extraordinary|journalism|,|but|it|is|also|a|work|of|deft|and|subtle|poetry|.\nIt|'s|funny|and|human|and|really|pretty|damned|wonderful|,|all|at|once|.\nAt|78|minutes|it|just|zings|along|with|vibrance|and|warmth|.\nA|strangely|stirring|experience|that|finds|warmth|in|the|coldest|environment|and|makes|each|crumb|of|emotional|comfort|feel|like|a|10-course|banquet|.\nSometimes|this|`|Blood|'|seems|as|tired|as|its|protagonist|...|Still|,|the|pulse|never|disappears|entirely|,|and|the|picture|crosses|the|finish|line|winded|but|still|game|.\nThe|stripped-down|dramatic|constructs|,|austere|imagery|and|abstract|characters|are|equal|parts|poetry|and|politics|,|obvious|at|times|but|evocative|and|heartfelt|.\nDogtown|and|Z-Boys|more|than|exposes|the|roots|of|the|skateboarding|boom|that|would|become|``|the|punk|kids|'|revolution|.|''\n...|plenty|of|warmth|to|go|around|,|with|music|and|laughter|and|the|love|of|family|.\nIt|'ll|keep|you|wide|awake|and|...|very|tense|.\nCould|use|a|little|more|humanity|,|but|it|never|lacks|in|eye-popping|visuals|.\n(|Danny|Huston|gives|)|an|astounding|performance|that|deftly|,|gradually|reveals|a|real|human|soul|buried|beneath|a|spellbinding|serpent|'s|smirk|.\nThese|three|films|form|a|remarkably|cohesive|whole|,|both|visually|and|thematically|,|through|their|consistently|sensitive|and|often|exciting|treatment|of|an|ignored|people|.\nA|funny|and|well-contructed|black|comedy|where|the|old|adage|``|be|careful|what|you|wish|for|''|is|given|a|full|workout|.\nIt|reaffirms|life|as|it|looks|in|the|face|of|death|.\nThe|film|is|reasonably|entertaining|,|though|it|begins|to|drag|two-thirds|through|,|when|the|melodramatic|aspects|start|to|overtake|the|comedy|.\nThis|is|more|fascinating|--|being|real|--|than|anything|seen|on|Jerry|Springer|.\nA|different|movie|--|sometimes|tedious|--|by|a|director|many|viewers|would|like|to|skip|but|film|buffs|should|get|to|know|.\nWilliams|plays|Sy|,|another|of|his|open-faced|,|smiling|madmen|,|like|the|killer|in|Insomnia|.\nHe|does|this|so|well|you|do|n't|have|the|slightest|difficulty|accepting|him|in|the|role|.\nTwist|open|the|Ouzo|!\nIt|'s|time|to|let|your|hair|down|--|Greek|style|.\nA|vibrant|whirlwind|of|love|,|family|and|all|that|goes|with|it|,|My|Big|Fat|Greek|Wedding|is|a|non-stop|funny|feast|of|warmth|,|colour|and|cringe|.\nThought-provoking|and|stylish|,|if|also|somewhat|hermetic|.\nBroomfield|is|energized|by|Volletta|Wallace|'s|maternal|fury|,|her|fearlessness|,|and|because|of|that|,|his|film|crackles|.\nWhile|it|has|definite|weaknesses|--|like|a|rather|unbelievable|love|interest|and|a|meandering|ending|--|this|'60s|caper|film|is|a|riveting|,|brisk|delight|.\nFunny|in|a|sick|,|twisted|sort|of|way|.\nIf|cinema|had|been|around|to|capture|the|chaos|of|France|in|the|1790|'s|,|one|imagines|the|result|would|look|like|something|like|this|.\nIt|'s|a|talking|head|documentary|,|but|a|great|one|.\nThe|Fast|Runner|'|transports|the|viewer|into|an|unusual|space\nUltimately|engages|less|for|its|story|of|actorly|existential|despair|than|for|its|boundary-hopping|formal|innovations|and|glimpse|into|another|kind|of|Chinese|`|cultural|revolution|.|'\n...|a|solid|,|well-formed|satire|.\nAs|part|of|Mr.|Dong|'s|continuing|exploration|of|homosexuality|in|America|,|Family|Fundamentals|is|an|earnest|study|in|despair|.\nMost|consumers|of|lo|mein|and|General|Tso|'s|chicken|barely|give|a|thought|to|the|folks|who|prepare|and|deliver|it|,|so|,|hopefully|,|this|film|will|attach|a|human|face|to|all|those|little|steaming|cartons|.\nHatosy|...|portrays|young|Brendan|with|his|usual|intelligence|and|subtlety|,|not|to|mention|a|convincing|brogue|.\nThe|filmmakers|'|eye|for|detail|and|the|high|standards|of|performance|convey|a|strong|sense|of|the|girls|'|environment|.\nUneven|,|self-conscious|but|often|hilarious|spoof|.\nEven|bigger|and|more|ambitious|than|the|first|installment|,|Spy|Kids|2|looks|as|if|it|were|made|by|a|highly|gifted|12-year-old|instead|of|a|grown|man|.\nThanks|to|The|Château|'s|balance|of|whimsicality|,|narrative|discipline|and|serious|improvisation|,|almost|every|relationship|and|personality|in|the|film|yields|surprises|.\nAlan|and|his|fellow|survivors|are|idiosyncratic|enough|to|lift|the|movie|above|its|playwriting|101|premise|.\nFresh|and|raw|like|a|blown-out|vein|,|Narc|takes|a|walking-dead|,|cop-flick|subgenre|and|beats|new|life|into|it|.\nThe|premise|of|Jason|X|is|silly|but|strangely|believable|.\nIt|'s|a|wise|and|powerful|tale|of|race|and|culture|forcefully|told|,|with|superb|performances|throughout|.\nAn|awfully|good|,|achingly|human|picture|.\nThe|cast|comes|through|even|when|the|movie|does|n't|.\nYou|'ll|laugh|at|either|the|obviousness|of|it|all|or|its|stupidity|or|maybe|even|its|inventiveness|,|but|the|point|is|,|you|'ll|laugh|.\nDefinitely|worth|95|minutes|of|your|time|.\nThe|film|jolts|the|laughs|from|the|audience|--|as|if|by|cattle|prod|.\nA|sexy|,|surprising|romance|...|Idemoto|and|Kim|make|a|gorgeous|pair|...|their|scenes|brim|with|sexual|possibility|and|emotional|danger|.\nToes|the|fine|line|between|cheese|and|earnestness|remarkably|well|;|everything|is|delivered|with|such|conviction|that|it|'s|hard|not|to|be|carried|away|.\nWhereas|Oliver|Stone|'s|conspiracy|thriller|JFK|was|long|,|intricate|,|star-studded|and|visually|flashy|,|Interview|with|the|Assassin|draws|its|considerable|power|from|simplicity|.\nFunny|,|sexy|,|devastating|and|incurably|romantic|.\nTriple|X|is|a|double|agent|,|and|he|'s|one|bad|dude|.\nWhen|you|'ve|got|the|wildly|popular|Vin|Diesel|in|the|equation|,|it|adds|up|to|big|box|office|bucks|all|but|guaranteed|.\nVery|well-written|and|very|well-acted|.\nA|powerful|and|telling|story|that|examines|forbidden|love|,|racial|tension|,|and|other|issues|that|are|as|valid|today|as|they|were|in|the|1950s|.\nYou|emerge|dazed|,|confused|as|to|whether|you|'ve|seen|pornography|or|documentary|.\nIt|ai|n't|art|,|by|a|long|shot|,|but|unlike|last|year|'s|lame|Musketeer|,|this|Dumas|adaptation|entertains|.\nlikeable|thanks|to|its|cast|,|its|cuisine|and|its|quirky|tunes|.\nChilling|in|its|objective|portrait|of|dreary|,|lost|twenty-first|century|America|.\nHighly|recommended|as|an|engrossing|story|about|a|horrifying|historical|event|and|the|elements|which|contributed|to|it|.\n...|there|'s|enough|cool|fun|here|to|warm|the|hearts|of|animation|enthusiasts|of|all|ages|.\nIt|manages|to|squeeze|by|on|Angelina|Jolie|'s|surprising|flair|for|self-deprecating|comedy|.\nSecretary|manages|a|neat|trick|,|bundling|the|flowers|of|perversity|,|comedy|and|romance|into|a|strangely|tempting|bouquet|of|a|movie|.\nJudith|and|Zaza|'s|extended|bedroom|sequence|...|is|so|intimate|and|sensual|and|funny|and|psychologically|self-revealing|that|it|makes|most|of|what|passes|for|sex|in|the|movies|look|like|cheap|hysterics|.\nPhotographed|with|melancholy|richness|and|eloquently|performed|yet|also|decidedly|uncinematic|.\nA|knowing|look|at|female|friendship|,|spiked|with|raw|urban|humor|.\nAs|I|settled|into|my|World|War|II|memories|,|I|found|myself|strangely|moved|by|even|the|corniest|and|most|hackneyed|contrivances|.\nThe|overall|effect|is|awe|and|affection|--|and|a|strange|urge|to|get|on|a|board|and|,|uh|,|shred|,|dude|.\nIt|'s|that|rare|family|movie|--|genuine|and|sweet|without|relying|on|animation|or|dumb|humor|.\nThe|Trinity|Assembly|approaches|the|endeavor|with|a|shocking|lack|of|irony|,|and|George|Ratliff|'s|documentary|,|Hell|House|,|reflects|their|earnestness|--|which|makes|for|a|terrifying|film|.\nConfessions|may|not|be|a|straightforward|bio|,|nor|does|it|offer|much|in|the|way|of|Barris|'|motivations|,|but|the|film|is|an|oddly|fascinating|depiction|of|an|architect|of|pop|culture|.\nA|special|kind|of|movie|,|this|melancholic|film|noir|reminded|me|a|lot|of|Memento|...\nSimple|,|poignant|and|leavened|with|humor|,|it|'s|a|film|that|affirms|the|nourishing|aspects|of|love|and|companionship|.\nTogether|,|Miller|,|Kuras|and|the|actresses|make|Personal|Velocity|into|an|intricate|,|intimate|and|intelligent|journey|.\nThe|wonder|of|Mostly|Martha|is|the|performance|of|Gedeck|,|who|makes|Martha|enormously|endearing|.\nWith|Notorious|C.H.O.|Cho|proves|she|has|the|stuff|to|stand|tall|with|Pryor|,|Carlin|and|Murphy|.\nLess|front-loaded|and|more|shapely|than|the|two-hour|version|released|here|in|1990|.\nWatching|War|Photographer|,|you|come|to|believe|that|Nachtwey|hates|the|wars|he|shows|and|empathizes|with|the|victims|he|reveals|.\n(|A|)|real|pleasure|in|its|laid-back|way|.\nSome|may|choose|to|interpret|the|film|'s|end|as|hopeful|or|optimistic|but|I|think|Payne|is|after|something|darker|.\nThough|it|runs|163|minutes|,|Safe|Conduct|is|anything|but|languorous|.\nIt|'s|packed|to|bursting|with|incident|,|and|with|scores|of|characters|,|some|fictional|,|some|from|history|.\nA|much|better|documentary|--|more|revealing|,|more|emotional|and|more|surprising|--|than|its|pedestrian|English|title|would|have|you|believe|.\nNotwithstanding|my|problem|with|the|movie|'s|final|half|hour|,|I|'m|going|to|recommend|SECRETARY|,|based|on|the|wonderful|acting|clinic|put|on|by|Spader|and|Gyllenhaal|,|and|also|the|unique|way|Shainberg|goes|about|telling|what|at|heart|is|a|sweet|little|girl|-\nA|well-crafted|film|that|is|all|the|more|remarkable|because|it|achieves|its|emotional|power|and|moments|of|revelation|with|restraint|and|a|delicate|ambiguity|.\nThe|film|has|the|uncanny|ability|to|right|itself|precisely|when|you|think|it|'s|in|danger|of|going|wrong|.\nMy|Big|Fat|Greek|Wedding|is|that|rare|animal|known|as|'|a|perfect|family|film|,|'|because|it|'s|about|family|.\nwould|make|an|excellent|companion|piece|to|the|similarly|themed|`|The|French|Lieutenant|'s|Woman|.|'\n...|with|the|gifted|Pearce|on|hand|to|keep|things|on|semi-stable|ground|dramatically|,|this|retooled|Machine|is|ultimately|effective|enough|at|achieving|the|modest|,|crowd-pleasing|goals|it|sets|for|itself|.\nA|movie|that|'s|just|plain|awful|but|still|manages|to|entertain|on|a|guilty-pleasure|,|so-bad-it|'s|-|funny|level|.\nA|disoriented|but|occasionally|disarming|saga|packed|with|moments|out|of|an|Alice|in|Wonderland|adventure|,|a|stalker|thriller|,|and|a|condensed|season|of|TV|'s|Big|Brother|.\nFunctions|as|both|a|revealing|look|at|the|collaborative|process|and|a|timely|,|tongue-in-cheek|profile|of|the|corporate|circus|that|is|the|recording|industry|in|the|current|climate|of|mergers|and|downsizing|.\nWith|a|confrontational|stance|,|Todd|Solondz|takes|aim|on|political|correctness|and|suburban|families|.\nA|mess|,|but|it|'s|a|sincere|mess|.\nThis|odd|,|distant|Portuguese|import|more|or|less|borrows|from|Bad|Lieutenant|and|Les|Vampires|,|and|comes|up|with|a|kind|of|art-house|gay|porn|film|.\nFor|a|debut|film|,|Skin|of|Man|,|Heart|of|Beast|feels|unusually|assured|.\nA|photographic|marvel|of|sorts|,|and|it|'s|certainly|an|invaluable|record|of|that|special|fishy|community|.\nIt|'s|soulful|and|unslick|,|and|that|'s|apparently|just|what|(|Aniston|)|has|always|needed|to|grow|into|a|movie|career|.\nAlthough|Olivier|Assayas|'|elegantly|appointed|period|drama|seems|,|at|times|,|padded|with|incident|in|the|way|of|a|too-conscientious|adaptation|...|its|three-hour|running|time|plays|closer|to|two|.\nA|jaw-droppingly|beautiful|work|that|upends|nearly|every|cliché|of|Japanese|animation|while|delivering|a|more|than|satisfactory|amount|of|carnage|.\nTerry|is|a|sort|of|geriatric|Dirty|Harry|,|which|will|please|Eastwood|'s|loyal|fans|--|and|suits|the|story|,|wherein|our|hero|must|ride|roughshod|over|incompetent|cops|to|get|his|man|.\nParts|seem|like|they|were|lifted|from|Terry|Gilliam|'s|subconscious|,|pressed|through|Kafka|'s|meat|grinder|and|into|Buñuel|'s|casings\n`|Like|a|child|with|an|important|message|to|tell|...|(|Skins|'|)|faults|are|easy|to|forgive|because|the|intentions|are|lofty|.|'\nA|delightful|entree|in|the|tradition|of|food|movies|.\nAn|escapist|confection|that|'s|pure|entertainment|.\nThe|Ring|is|worth|a|look|,|if|you|do|n't|demand|much|more|than|a|few|cheap|thrills|from|your|Halloween|entertainment|.\nThe|movie|ultimately|relies|a|bit|too|heavily|on|grandstanding|,|emotional|,|Rocky-like|moments|...|but|it|'s|such|a|warm|and|charming|package|that|you|'ll|feel|too|happy|to|argue|much|.\nThrowing|it|all|away|for|the|fleeting|joys|of|love|'s|brief|moment|.\nArmed|with|a|game|supporting|cast|,|from|the|pitch-perfect|Forster|to|the|always|hilarious|Meara|and|Levy|,|Like|Mike|shoots|and|scores|,|doing|its|namesake|proud|.\nA|decent-enough|nail-biter|that|stands|a|good|chance|of|being|the|big|hit|Franklin|needs|to|stay|afloat|in|Hollywood|.\nBegins|like|a|docu-drama|but|builds|its|multi-character|story|with|a|flourish|.\nOne|of|the|most|genuinely|sweet|films|to|come|along|in|quite|some|time|.\nAfter|an|uncertain|start|,|Murder|hits|and|generally|sustains|a|higher|plateau|with|Bullock|'s|memorable|first|interrogation|of|Gosling|.\nThe|story|ultimately|takes|hold|and|grips|hard|.\nA|bit|of|a|downer|and|a|little|over-dramatic|at|times|,|but|this|is|a|beautiful|film|for|people|who|like|their|romances|to|have|that|French|realism|.\nAn|emotionally|strong|and|politically|potent|piece|of|cinema|.\nEnticing|and|often|funny|documentary|.\nGoing|to|this|movie|is|a|little|like|chewing|whale|blubber|-|it|'s|an|acquired|taste|that|takes|time|to|enjoy|,|but|it|'s|worth|it|,|even|if|it|does|take|3|hours|to|get|through|.\nA|portrait|of|hell|so|shattering|it|'s|impossible|to|shake|.\nAlmodovar|is|an|imaginative|teacher|of|emotional|intelligence|in|this|engaging|film|about|two|men|who|discover|what|William|James|once|called|`|the|gift|of|tears|.|'\nBetter|than|the|tepid|Star|Trek|:|Insurrection|;|falls|short|of|First|Contact|because|the|villain|could|n't|pick|the|lint|off|Borg|Queen|Alice|Krige|'s|cape|;|and|finishes|half|a|parsec|(|a|nose|)|ahead|of|Generations|.\nAt|times|a|bit|melodramatic|and|even|a|little|dated|(|depending|upon|where|you|live|)|,|Ignorant|Fairies|is|still|quite|good-natured|and|not|a|bad|way|to|spend|an|hour|or|two|.\nTense|,|terrific|,|sweaty-palmed|fun|.\nMajidi|'s|direction|has|never|been|smoother|or|more|confident|.\nWhat|a|bewilderingly|brilliant|and|entertaining|movie|this|is|.\nHard|,|endearing|,|caring|,|warm|.\nBring|tissues|.\nA|thriller|with|an|edge|--|which|is|to|say|that|it|does|n't|follow|the|stale|,|standard|,|connect-the-dots|storyline|which|has|become|commonplace|in|movies|that|explore|the|seamy|underbelly|of|the|criminal|world|.\n``|Me|Without|You|''|is|a|probing|examination|of|a|female|friendship|set|against|a|few|dynamic|decades|.\nInherently|caustic|and|oddly|whimsical|,|the|film|chimes|in|on|the|grieving|process|and|strangely|draws|the|audience|into|the|unexplainable|pain|and|eccentricities|that|are|attached|to|the|concept|of|loss|.\nThough|Frodo|'s|quest|remains|unfulfilled|,|a|hardy|group|of|determined|New|Zealanders|has|proved|its|creative|mettle|.\nIt|'s|a|square|,|sentimental|drama|that|satisfies|,|as|comfort|food|often|can|.\nPure|cinematic|intoxication|,|a|wildly|inventive|mixture|of|comedy|and|melodrama|,|tastelessness|and|swooning|elegance|.\nRamsay|is|clearly|extraordinarily|talented|,|and|based|on|three|short|films|and|two|features|,|here|'s|betting|her|third|feature|will|be|something|to|behold|.\nI|was|impressed|by|how|many|tit-for-tat|retaliatory|responses|the|filmmakers|allow|before|pulling|the|plug|on|the|conspirators|and|averting|an|American-Russian|Armageddon|.\nA|classy|,|sprightly|spin|on|film|.\nfast|,|frantic|and|fun|,|but|also|soon|forgotten\nA|spiffy|animated|feature|about|an|unruly|adolescent|boy|who|is|yearning|for|adventure|and|a|chance|to|prove|his|worth|.\nDevos|and|Cassel|have|tremendous|chemistry|--|their|sexual|and|romantic|tension|,|while|never|really|vocalized|,|is|palpable|.\nFulfills|the|minimum|requirement|of|Disney|animation|.\nA|moving|,|if|uneven|,|success|.\nWith|one|exception|,|every|blighter|in|this|particular|South|London|housing|project|digs|into|dysfunction|like|it|'s|a|big|,|comforting|jar|of|Marmite|,|to|be|slathered|on|crackers|and|served|as|a|feast|of|bleakness|.\nWickedly|funny|,|visually|engrossing|,|never|boring|,|this|movie|challenges|us|to|think|about|the|ways|we|consume|pop|culture|.\nThere|'s|plenty|to|impress|about|E.T.\nA|chronicle|not|only|of|one|man|'s|quest|to|be|president|,|but|of|how|that|man|single-handedly|turned|a|plane|full|of|hard-bitten|,|cynical|journalists|into|what|was|essentially|,|by|campaign|'s|end|,|an|extended|publicity|department|.\nUntil|it|goes|off|the|rails|in|its|final|10|or|15|minutes|,|Wendigo|,|Larry|Fessenden|'s|spooky|new|thriller|,|is|a|refreshingly|smart|and|newfangled|variation|on|several|themes|derived|from|far|less|sophisticated|and|knowing|horror|films|.\n(|Woo|'s|)|most|resonant|film|since|The|Killer|.\nCollateral|Damage|is|trash|,|but|it|earns|extra|points|by|acting|as|if|it|were|n't|.\nA|whole|lot|of|fun|and|funny|in|the|middle|,|though|somewhat|less|hard-hitting|at|the|start|and|finish|.\nMaybe|it|is|formula|filmmaking|,|but|there|'s|nothing|wrong|with|that|if|the|film|is|well-crafted|and|this|one|is|.\n(|Fincher|'s|)|camera|sense|and|assured|pacing|make|it|an|above-average|thriller|.\nThe|film|is|insightful|about|Kissinger|'s|background|and|history|.\nAn|engrossing|portrait|of|a|man|whose|engaging|manner|and|flamboyant|style|made|him|a|truly|larger-than-life|character|.\nA|lot|of|the|credit|for|the|film|'s|winning|tone|must|go|to|Grant|,|who|has|n't|lost|a|bit|of|the|dry|humor|that|first|made|audiences|on|both|sides|of|the|Atlantic|love|him|.\nExploits|(|headbanger|)|stereotypes|in|good|fun|,|while|adding|a|bit|of|heart|and|unsettling|subject|matter|.\nA|journey|that|is|as|difficult|for|the|audience|to|take|as|it|is|for|the|protagonist|--|yet|it|'s|potentially|just|as|rewarding|.\nRatliff|'s|two|previous|titles|,|Plutonium|Circus|and|Purgatory|County|show|his|penchant|for|wry|,|contentious|configurations|,|and|this|film|is|part|of|that|delicate|canon|.\nFrom|its|invitingly|upbeat|overture|to|its|pathos-filled|but|ultimately|life-affirming|finale|,|Martin|is|a|masterfully|conducted|work|.\nPassions|,|obsessions|,|and|loneliest|dark|spots|are|pushed|to|their|most|virtuous|limits|,|lending|the|narrative|an|unusually|surreal|tone|.\nA|comedy|that|swings|and|jostles|to|the|rhythms|of|life|.\nAt|times|Auto|Focus|feels|so|distant|you|might|as|well|be|watching|it|through|a|telescope|.\nYet|in|its|own|aloof|,|unreachable|way|it|'s|so|fascinating|you|wo|n't|be|able|to|look|away|for|a|second|.\nIf|you|'re|part|of|her|targeted|audience|,|you|'ll|cheer|.\nOtherwise|,|maybe|.\nAs|animation|increasingly|emphasizes|the|computer|and|the|cool|,|this|is|a|film|that|takes|a|stand|in|favor|of|tradition|and|warmth|.\nBlade|II|merges|bits|and|pieces|from|fighting|games|,|wire|fu|,|horror|movies|,|mystery|,|James|Bond|,|wrestling|,|sci-fi|and|anime|into|one|big|bloody|stew|.\nInstead|of|hitting|the|audience|over|the|head|with|a|moral|,|Schrader|relies|on|subtle|ironies|and|visual|devices|to|convey|point|of|view|.\nK-19|will|not|go|down|in|the|annals|of|cinema|as|one|of|the|great|submarine|stories|,|but|it|is|an|engaging|and|exciting|narrative|of|Man|confronting|the|Demons|of|his|own|fear|and|paranoia|.\nContrived|as|this|may|sound|,|Mr.|Rose|'s|updating|works|surprisingly|well|.\nA|glib|but|bouncy|bit|of|sixties-style|slickness|in|which|the|hero|might|wind|up|caught|but|the|audience|gets|pure|escapism|.\nYou|do|n't|need|to|be|a|hip-hop|fan|to|appreciate|Scratch|,|and|that|'s|the|mark|of|a|documentary|that|works|.\nBetween|bursts|of|automatic|gunfire|,|the|story|offers|a|trenchant|critique|of|capitalism|.\nCombines|improbable|melodrama|(|gored|bullfighters|,|comatose|ballerinas|)|with|subtly|kinky|bedside|vigils|and|sensational|denouements|,|and|yet|at|the|end|,|we|are|undeniably|touched|.\nWhile|the|story|'s|undeniably|hard|to|follow|,|Iwai|'s|gorgeous|visuals|seduce|.\nIf|you|can|get|past|the|taboo|subject|matter|,|it|will|be|well|worth|your|time|.\nA|lovely|film|...|elegant|,|witty|and|beneath|a|prim|exterior|unabashedly|romantic|...|hugely|enjoyable|in|its|own|right|though|not|really|faithful|to|its|source|'s|complexity|.\nScooby|Doo|is|surely|everything|its|fans|are|hoping|it|will|be|,|and|in|that|sense|is|a|movie|that|deserves|recommendation|.\n(|A|)|devastatingly|powerful|and|astonishingly|vivid|Holocaust|drama|.\nA|solid|cast|,|assured|direction|and|complete|lack|of|modern|day|irony|.\nThese|characters|are|so|well|established|that|the|gang|feels|comfortable|with|taking|insane|liberties|and|doing|the|goofiest|stuff|out|of|left|field|,|and|I|'m|all|for|that|.\nA|sun-drenched|masterpiece|,|part|parlor|game|,|part|psychological|case|study|,|part|droll|social|satire|.\nWorth|a|look|as|a|curiosity|.\nYou|watch|for|that|sense|of|openness|,|the|little|surprises|.\nDirector|Peter|Kosminsky|gives|these|women|a|forum|to|demonstrate|their|acting|`|chops|'|and|they|take|full|advantage|.\nAuto|Focus|is|not|your|standard|Hollywood|bio-pic|.\nSchrader|aims|to|present|an|unflinching|look|at|one|man|'s|downfall|,|brought|about|by|his|lack|of|self-awareness|.\nThe|Bourne|Identity|should|n't|be|half|as|entertaining|as|it|is|,|but|director|Doug|Liman|and|his|colleagues|have|managed|to|pack|it|with|enough|action|to|satisfy|the|boom-bam|crowd|without|a|huge|sacrifice|of|character|and|mood|.\nFor|VeggieTales|fans|,|this|is|more|appetizing|than|a|side|dish|of|asparagus|.\nIf|you|'re|not|a|fan|,|it|might|be|like|trying|to|eat|Brussels|sprouts|.\nRemove|Spider-Man|the|movie|from|its|red|herring|surroundings|and|it|'s|apparent|that|this|is|one|summer|film|that|satisfies|.\nThe|whole|mildly|pleasant|outing|--|the|R|rating|is|for|brief|nudity|and|a|grisly|corpse|--|remains|aloft|not|on|its|own|self-referential|hot|air|,|but|on|the|inspired|performance|of|Tim|Allen|.\nA|gorgeously|strange|movie|,|Heaven|is|deeply|concerned|with|morality|,|but|it|refuses|to|spell|things|out|for|viewers|.\nThe|Emperor|'s|Club|,|ruthless|in|its|own|placid|way|,|finds|one|of|our|most|conservative|and|hidebound|movie-making|traditions|and|gives|it|new|texture|,|new|relevance|,|new|reality|.\nIt|'s|truly|awful|and|heartbreaking|subject|matter|,|but|one|whose|lessons|are|well|worth|revisiting|as|many|times|as|possible|.\nThough|intrepid|in|exploring|an|attraction|that|crosses|sexual|identity|,|Ozpetek|falls|short|in|showing|us|Antonia|'s|true|emotions|...|But|at|the|very|least|,|His|Secret|Life|will|leave|you|thinking|.\nThere|is|little|question|that|this|is|a|serious|work|by|an|important|director|who|has|something|new|to|say|about|how|,|in|the|flip-flop|of|courtship|,|we|often|reel|in|when|we|should|be|playing|out|.\nThe|message|of|such|reflections|--|intentional|or|not|--|is|that|while|no|art|grows|from|a|vacuum|,|many|artists|exist|in|one|.\nGooding|is|the|energetic|frontman|,|and|it|'s|hard|to|resist|his|enthusiasm|,|even|if|the|filmmakers|come|up|with|nothing|original|in|the|way|of|slapstick|sequences|.\nThe|otherwise|good-naturedness|of|Mr.|Deeds|,|with|its|embrace|of|sheer|goofiness|and|cameos|of|less|-|than-likely|New|York|celebrities|...|certainly|raises|the|film|above|anything|Sandler|'s|been|attached|to|before|.\nThe|movie|is|brilliant|,|really|.\nIt|is|philosophy|,|illustrated|through|everyday|events|.\nIt|'s|stylishly|directed|with|verve|...\nGives|an|intriguing|twist|to|the|French|coming-of-age|genre|.\nOffers|an|interesting|look|at|the|rapidly|changing|face|of|Beijing|.\nA|solid|,|psychological|action|film|from|Hong|Kong|.\nSee|it|now|,|before|the|inevitable|Hollywood|remake|flattens|out|all|its|odd|,|intriguing|wrinkles|.\nHolm|does|his|sly|,|intricate|magic|,|and|Iben|Hjelje|is|entirely|appealing|as|Pumpkin|.\nAn|enjoyable|feel-good|family|comedy|regardless|of|race|.\nFeatures|what|is|surely|the|funniest|and|most|accurate|depiction|of|writer|'s|block|ever|.\nIt|would|take|a|complete|moron|to|foul|up|a|screen|adaptation|of|Oscar|Wilde|'s|classic|satire|.\nIt|'s|bright|,|pristine|style|and|bold|colors|make|it|as|much|fun|as|reading|an|oversized|picture|book|before|bedtime|.\nIn|the|long|,|dishonorable|history|of|quickie|teen-pop|exploitation|,|Like|Mike|stands|out|for|its|only|partly|synthetic|decency|.\nBravo|for|history|rewritten|,|and|for|the|uncompromising|knowledge|that|the|highest|power|of|all|is|the|power|of|love|.\nLead|actress|Gaï|,|she|of|the|impossibly|long|limbs|and|sweetly|conspiratorial|smile|,|is|a|towering|siren|.\nEven|if|you|'ve|seen|``|Stomp|''|(|the|stage|show|)|,|you|still|have|to|see|this|!\n...|a|light|,|yet|engrossing|piece|.\nLux|,|now|in|her|eighties|,|does|a|great|combination|act|as|narrator|,|Jewish|grandmother|and|subject|--|taking|us|through|a|film|that|is|part|biography|,|part|entertainment|and|part|history|.\nIt|'s|a|setup|so|easy|it|borders|on|facile|,|but|keeping|the|film|from|cheap-shot|mediocrity|is|its|crack|cast|.\nRife|with|the|rueful|,|wry|humor|springing|out|of|Yiddish|culture|and|language|.\nA|time|machine|,|a|journey|back|to|your|childhood|,|when|cares|melted|away|in|the|dark|theater|,|and|films|had|the|ability|to|mesmerize|,|astonish|and|entertain|.\nRubbo|'s|humorously|tendentious|intervention|into|the|who-wrote-Shakespeare|controversy|.\nCantet|beautifully|illuminates|what|it|means|sometimes|to|be|inside|looking|out|,|and|at|other|times|outside|looking|in|.\nK-19|:|The|Widowmaker|is|a|great|yarn|.\nIt|'s|as|raw|and|action-packed|an|experience|as|a|ringside|seat|at|a|tough-man|contest|.\nEvokes|the|frustration|,|the|awkwardness|and|the|euphoria|of|growing|up|,|without|relying|on|the|usual|tropes|.\nA|brilliant|gag|at|the|expense|of|those|who|paid|for|it|and|those|who|pay|to|see|it|.\nVisually|striking|and|viscerally|repellent|.\nOvercomes|its|visual|hideousness|with|a|sharp|script|and|strong|performances|.\nAstonishingly|skillful|and|moving|...|it|could|become|a|historically|significant|work|as|well|as|a|masterfully|made|one|.\nBeautifully|crafted|and|cooly|unsettling|...|recreates|the|atmosphere|of|the|crime|expertly|.\nThe|year|2002|has|conjured|up|more|coming-of-age|stories|than|seem|possible|,|but|Take|Care|of|My|Cat|emerges|as|the|very|best|of|them|.\nAlthough|it|does|n't|always|hang|together|--|violence|and|whimsy|do|n't|combine|easily|--|``|Cherish|''|certainly|is|n't|dull|.\nThe|sight|of|the|spaceship|on|the|launching|pad|is|duly|impressive|in|IMAX|dimensions|,|as|are|shots|of|the|astronauts|floating|in|their|cabins|.\nTime|is|a|beautiful|film|to|watch|,|an|interesting|and|at|times|captivating|take|on|loss|and|loneliness|.\nAn|intriguing|look|at|the|French|film|industry|during|the|German|occupation|;|its|most|delightful|moments|come|when|various|characters|express|their|quirky|inner|selves|.\nA|fine|documentary|can|be|distinguished|from|a|mediocre|one|by|the|better|film|'s|ability|to|make|its|subject|interesting|to|those|who|are|n't|part|of|its|supposed|target|audience|.\nJudging|by|those|standards|,|`|Scratch|'|is|a|pretty|decent|little|documentary|.\nFubar|is|very|funny|,|but|not|always|in|a|laugh-out-loud|way|.\nA|diverse|and|astonishingly|articulate|cast|of|Palestinian|and|Israeli|children|.\nSlight|but|enjoyable|documentary|.\n`|The|film|is|stark|,|straightforward|and|deadly|...|an|unnatural|calm|that|'s|occasionally|shaken|by|...|blasts|of|rage|,|and|later|,|violent|jealousy|.|'\nCall|this|The|Full|Monty|on|ice|,|the|underdog|sports|team|formula|redux|.\nUnfolds|in|a|low-key|,|organic|way|that|encourages|you|to|accept|it|as|life|and|go|with|its|flow|.\nA|beguiling|evocation|of|the|quality|that|keeps|Dickens|evergreen|:|the|exuberant|openness|with|which|he|expresses|our|most|basic|emotions|.\nThe|heat|of|the|moment|prevails|.\nIt|cooks|Conduct|in|a|low|,|smoky|and|inviting|sizzle|.\nA|riveting|story|well|told|.\nDenis|forges|out|of|the|theories|of|class|-|based|rage|and|sisterly|obsession|a|razor-sided|tuning|fork|that|rings|with|cultural|,|sexual|and|social|discord|.\nA|compelling|pre-WWII|drama|with|vivid|characters|and|a|warm|,|moving|message|.\nThe|stars|may|be|college|kids|,|but|the|subject|matter|is|as|adult|as|you|can|get|:|the|temptations|of|the|flesh|are|unleashed|by|a|slightly|crazed|,|overtly|determined|young|woman|and|a|one-night|swim|turns|into|an|ocean|of|trouble|.\nPretty|good|little|movie|.\nBy|turns|touching|,|raucously|amusing|,|uncomfortable|,|and|,|yes|,|even|sexy|,|Never|Again|is|a|welcome|and|heartwarming|addition|to|the|romantic|comedy|genre|.\nIf|you|have|n't|seen|the|film|lately|,|you|may|be|surprised|at|the|variety|of|tones|in|Spielberg|'s|work|.\nMuch|of|it|is|funny|,|but|there|are|also|some|startling|,|surrealistic|moments|...\n(|The|digital|effects|)|reminded|me|of|Terry|Gilliam|'s|rudimentary|old|Monty|Python|cartoons|,|in|which|he|would|cut|out|figures|from|drawings|and|photographs|and|paste|them|together|.\nAn|entertaining|mix|of|period|drama|and|flat-out|farce|that|should|please|history|fans|.\nCanada|'s|arctic|light|shines|bright|on|this|frozen|tundra|soap|opera|that|breathes|extraordinary|life|into|the|private|existence|of|the|Inuit|people|.\nThe|fluid|motion|is|astounding|on|any|number|of|levels|--|including|the|physical|demands|made|on|Büttner|--|and|it|implies|in|its|wake|the|intractable|,|irreversible|flow|of|history|.\nAlternately|hilarious|and|sad|,|aggravating|and|soulful|,|scathing|and|joyous|.\nIt|'s|a|masterpeice|.\nThe|film|'s|messages|of|tolerance|and|diversity|are|n't|particularly|original|,|but|one|ca|n't|help|but|be|drawn|in|by|the|sympathetic|characters|.\nThough|it|lacks|the|utter|authority|of|a|genre|gem|,|there|'s|a|certain|robustness|to|this|engaging|mix|of|love|and|bloodletting|.\nA|conventional|,|but|well-crafted|film|about|a|historic|legal|battle|in|Ireland|over|a|man|'s|right|to|raise|his|own|children|.\nYes|,|it|'s|as|good|as|you|remember|.\nIn|fact|,|even|better|.\nHartley|adds|enough|quirky|and|satirical|touches|in|the|screenplay|to|keep|the|film|entertaining|.\nAn|uncomfortable|movie|,|suffocating|and|sometimes|almost|senseless|,|The|Grey|Zone|does|have|a|center|,|though|a|morbid|one|.\nThis|is|a|harrowing|movie|about|how|parents|know|where|all|the|buttons|are|,|and|how|to|push|them|.\nA|stirring|road|movie|.\nOne|of|the|best|films|I|have|ever|seen|,|constantly|pulling|the|rug|from|underneath|us|,|seeing|things|from|new|sides|,|plunging|deeper|,|getting|more|intense|.\nInsanely|hilarious|!\nI|have|n't|laughed|that|hard|in|years|!\nAnyone|who|'s|ever|suffered|under|a|martinet|music|instructor|has|no|doubt|fantasized|about|what|an|unhappy|,|repressed|and|twisted|personal|life|their|tormentor|deserved|.\nThese|people|are|really|going|to|love|The|Piano|Teacher|.\nIt|'s|a|tour|de|force|,|written|and|directed|so|quietly|that|it|'s|implosion|rather|than|explosion|you|fear|.\nIt|may|not|be|history|--|but|then|again|,|what|if|it|is|?\n--|but|it|makes|for|one|of|the|most|purely|enjoyable|and|satisfying|evenings|at|the|movies|I|'ve|had|in|a|while|.\nIf|``|Lilo|&|Stitch|''|is|n't|the|most|edgy|piece|of|Disney|animation|to|hit|the|silver|screen|,|then|this|first|film|to|use|a|watercolor|background|since|``|Dumbo|''|certainly|ranks|as|the|most|original|in|years|.\nThis|may|be|Dover|Kosashvili|'s|feature|directing|debut|,|but|it|looks|an|awful|lot|like|life|--|gritty|,|awkward|and|ironic|.\nThis|ready-made|midnight|movie|probably|wo|n't|stand|the|cold|light|of|day|,|but|under|the|right|conditions|,|it|'s|goofy|(|if|not|entirely|wholesome|)|fun|.\nSee|Scratch|for|the|history|,|see|Scratch|for|the|music|,|see|Scratch|for|a|lesson|in|scratching|,|but|,|most|of|all|,|see|it|for|the|passion|.\n...|``|Bowling|for|Columbine|''|remains|a|disquieting|and|thought-provoking|film|...\nEven|though|it|is|infused|with|the|sensibility|of|a|video|director|,|it|does|n't|make|for|completely|empty|entertainment\nBut|even|with|the|two-wrongs-make-a-right|chemistry|between|Jolie|and|Burns|...|this|otherwise|appealing|picture|loses|its|soul|to|Screenwriting|For|Dummies|conformity|.\nTalk|to|Her|is|so|darned|assured|,|we|have|absolutely|no|idea|who|the|main|characters|are|until|the|film|is|well|under|way|--|and|yet|it|'s|hard|to|stop|watching|.\nStar\\/producer|Salma|Hayek|and|director|Julie|Taymor|have|infused|Frida|with|a|visual|style|unique|and|inherent|to|the|titular|character|'s|paintings|and|in|the|process|created|a|masterful|work|of|art|of|their|own|.\nA|truly|wonderful|tale|combined|with|stunning|animation|.\nA|low-key|labor|of|love|that|strikes|a|very|resonant|chord|.\nAn|average|kid-empowerment|fantasy|with|slightly|above-average|brains|.\nConfessions|is|n't|always|coherent|,|but|it|'s|sharply|comic|and|surprisingly|touching|,|so|hold|the|gong|.\nWhile|Guzmán|frustratingly|refuses|to|give|Pinochet|'s|crimes|a|political|context|,|his|distance|from|the|material|is|mostly|admirable|.\n...|a|story|,|an|old|and|scary|one|,|about|the|monsters|we|make|,|and|the|vengeance|they|take|.\nA|sentimental|but|entirely|irresistible|portrait|of|three|aging|sisters|.\nWhite|Oleander|may|leave|you|rolling|your|eyes|in|the|dark|,|but|that|does|n't|mean|you|wo|n't|like|looking|at|it|.\nIn|painting|an|unabashedly|romantic|picture|of|a|nation|whose|songs|spring|directly|from|the|lives|of|the|people|,|the|movie|exalts|the|Marxian|dream|of|honest|working|folk|,|with|little|to|show|for|their|labor|,|living|harmoniously|,|joined|in|song|.\nThe|most|brilliant|work|in|this|genre|since|the|1984|uncut|version|of|Sergio|Leone|'s|flawed|but|staggering|Once|Upon|a|Time|in|America|.\nIt|looks|closely|,|insightfully|at|fragile|,|complex|relationships|.\nNot|a|bad|choice|here|,|assuming|that|...|the|air-conditioning|in|the|theater|is|working|properly|.\nA|fine|effort|,|an|interesting|topic|,|some|intriguing|characters|and|a|sad|ending|.\nCertainly|the|big|finish|was|n't|something|Galinsky|and|Hawley|could|have|planned|for|...|but|part|of|being|a|good|documentarian|is|being|there|when|the|rope|snaps|.\nIt|must|be|the|end|of|the|world|:|the|best|film|so|far|this|year|is|a|franchise|sequel|starring|Wesley|Snipes|.\nThere|are|moments|of|hilarity|to|be|had|.\nA|hypnotic|portrait|of|this|sad|,|compulsive|life|.\n(|While|The|Last|Metro|)|was|more|melodramatic|,|confined|to|a|single|theater|company|and|its|strategies|and|deceptions|,|while|Tavernier|is|more|concerned|with|the|entire|period|of|history|.\nOne|of|the|best|films|of|the|year|with|its|exquisite|acting|,|inventive|screenplay|,|mesmerizing|music|,|and|many|inimitable|scenes|of|tenderness|,|loss|,|discontent|,|and|yearning|.\nReturn|to|Never|Land|is|reliable|,|standard|Disney|animated|fare|,|with|enough|creative|energy|and|wit|to|entertain|all|ages|.\nMichael|Moore|'s|latest|documentary|about|America|'s|thirst|for|violence|is|his|best|film|yet|...\nSuffice|to|say|that|after|seeing|this|movie|in|IMAX|form|,|you|'ll|be|more|acquainted|with|the|tiniest|details|of|Tom|Hanks|'|face|than|his|wife|is|.\nLike|a|Tarantino|movie|with|heart|,|Alias|Betty|is|richly|detailed|,|deftly|executed|and|utterly|absorbing|.\nMarvelously|entertaining|and|deliriously|joyous|documentary|.\nA|brisk|,|reverent|,|and|subtly|different|sequel|.\nA|movie|I|loved|on|first|sight|and|,|even|more|important|,|love|in|remembrance|.\nDeserves|a|place|of|honor|next|to|Nanook|as|a|landmark|in|film|history|.\nMurderous|Maids|pulls|no|punches|in|its|depiction|of|the|lives|of|the|Papin|sister|and|the|events|that|led|to|their|notorious|rise|to|infamy|...\nThis|is|an|undeniably|intriguing|film|from|an|adventurous|young|talent|who|finds|his|inspiration|on|the|fringes|of|the|American|underground|.\nThe|Sweetest|Thing|,|a|romantic|comedy|with|outrageous|tendencies|,|may|be|a|mess|in|a|lot|of|ways|.\nBut|it|does|have|one|saving|grace|.\nA|lot|of|its|gags|and|observations|reflect|a|woman|'s|point-of-view|.\nThis|is|lightweight|filmmaking|,|to|be|sure|,|but|it|'s|pleasant|enough|--|and|oozing|with|attractive|men|.\nAt|its|most|basic|,|this|cartoon|adventure|is|that|wind-in-the-hair|exhilarating|.\nFans|of|critics|'|darling|band|Wilco|will|marvel|at|the|sometimes|murky|,|always|brooding|look|of|I|Am|Trying|to|Break|Your|Heart|.\nThe|film|presents|visceral|and|dangerously|honest|revelations|about|the|men|and|machines|behind|the|curtains|of|our|planet|.\n(|Gosling|'s|)|combination|of|explosive|physical|energy|and|convincing|intelligence|helps|create|a|complex|,|unpredictable|character|.\nConfounding|because|it|solemnly|advances|a|daringly|preposterous|thesis|.\nActing|can|not|be|acted|.\nFulford-Wierzbicki|...|deftly|captures|the|wise-beyond-her-years|teen|.\nA|wild|ride|juiced|with|enough|energy|and|excitement|for|at|least|three|films|.\nIt|'s|a|cool|event|for|the|whole|family|.\nMaybe|not|a|classic|,|but|a|movie|the|kids|will|want|to|see|over|and|over|again|.\nThe|movie|is|not|as|terrible|as|the|synergistic|impulse|that|created|it|.\nA|typically|observant|,|carefully|nuanced|and|intimate|French|coming-of-age|film|that|is|an|encouraging|debut|feature|but|has|a|needlessly|downbeat|ending|that|is|too|heavy|for|all|that|has|preceded|it|.\nLess|an|examination|of|neo-Nazism|than|a|probe|into|the|nature|of|faith|itself|.\nA|moving|and|weighty|depiction|of|one|family|'s|attempts|to|heal|after|the|death|of|a|child|.\nI|do|n't|think|most|of|the|people|who|loved|the|1989|Paradiso|will|prefer|this|new|version|.\nBut|I|do|.\nA|zinger-filled|crowd-pleaser|that|open-minded|Elvis|fans|(|but|by|no|means|all|)|will|have|fun|with|.\nDiggs|and|Lathan|are|among|the|chief|reasons|Brown|Sugar|is|such|a|sweet|and|sexy|film|.\nEntirely|suspenseful|,|extremely|well-paced|and|ultimately|...|dare|I|say|,|entertaining|!\nThe|riveting|performances|by|the|incredibly|flexible|cast|make|Love|a|joy|to|behold|.\nTerrific|as|Nadia|,|a|Russian|mail-order|bride|who|comes|to|America|speaking|not|a|word|of|English|,|it|'s|Kidman|who|holds|the|film|together|with|a|supremely|kittenish|performance|that|gradually|accumulates|more|layers|.\nWith|an|unflappable|air|of|decadent|urbanity|,|Everett|remains|a|perfect|Wildean|actor|,|and|a|relaxed|Firth|displays|impeccable|comic|skill|.\nThe|re-release|of|Ron|Howard|'s|Apollo|13|in|the|IMAX|format|proves|absolutely|that|really|,|really|,|really|good|things|can|come|in|enormous|packages|.\nVery|well|written|and|directed|with|brutal|honesty|and|respect|for|its|audience|.\nWonderful|fencing|scenes|and|an|exciting|plot|make|this|an|eminently|engrossing|film|.\nIt|'s|pretty|linear|and|only|makeup-deep|,|but|Bogdanovich|ties|it|together|with|efficiency|and|an|affection|for|the|period|.\nA|surprisingly|charming|and|even|witty|match|for|the|best|of|Hollywood|'s|comic-book|adaptations|.\nThis|is|a|superior|horror|flick|.\nAdaptation|is|simply|brilliant|.\nSmart|and|alert|,|Thirteen|Conversations|About|One|Thing|is|a|small|gem|.\nThe|pleasure|of|Read|My|Lips|is|like|seeing|a|series|of|perfect|black|pearls|clicking|together|to|form|a|string|.\nWe|'re|drawn|in|by|the|dark|luster|.\nA|haunting|tale|of|murder|and|mayhem|.\nI|love|the|opening|scenes|of|a|wintry|New|York|City|in|1899|.\nCinematic|poetry|showcases|the|city|'s|old-world|charm|before|machines|change|nearly|everything|.\nIt|'s|hard|to|imagine|anyone|managing|to|steal|a|movie|not|only|from|charismatic|rising|star|Jake|Gyllenhaal|but|also|from|accomplished|Oscar|winners|Susan|Sarandon|,|Dustin|Hoffman|and|Holly|Hunter|,|yet|newcomer|Ellen|Pompeo|pulls|off|the|feat|with|aplomb|.\nOne|of|the|best|rock|documentaries|ever|.\nWilco|is|a|phenomenal|band|with|such|an|engrossing|story|that|will|capture|the|minds|and|hearts|of|many|.\nIan|Holm|conquers|France|as|an|earthy|Napoleon\nOffers|big|,|fat|,|dumb|laughs|that|may|make|you|hate|yourself|for|giving|in|.\nAh|,|what|the|hell|.\n(|Sports|)|admirable|energy|,|full-bodied|characterizations|and|narrative|urgency|.\nA|portrait|of|an|artist|.\nDirectors|Brett|Morgen|and|Nanette|Burstein|have|put|together|a|bold|biographical|fantasia|.\nThe|subtitled|costume|drama|is|set|in|a|remote|African|empire|before|cell|phones|,|guns|,|and|the|internal|combustion|engine|,|but|the|politics|that|thump|through|it|are|as|timely|as|tomorrow|.\nA|tremendous|piece|of|work|.\nA|delightful|,|if|minor|,|pastry|of|a|movie|.\nWhile|obviously|aimed|at|kids|,|The|Country|Bears|...|should|keep|parents|amused|with|its|low|groan-to-guffaw|ratio|.\nLaBute|masterfully|balances|both|Traditional|or|Modern|stories|together|in|a|manner|that|one|never|overwhelms|the|other|.\nSomething|for|everyone|.\nIrwin|is|so|earnest|that|it|'s|hard|to|resist|his|pleas|to|spare|wildlife|and|respect|their|environs|.\nThere|are|far|worse|messages|to|teach|a|young|audience|,|which|will|probably|be|perfectly|happy|with|the|sloppy|slapstick|comedy|.\nLeigh|succeeds|in|delivering|a|dramatic|slap|in|the|face|that|'s|simultaneously|painful|and|refreshing|.\nNot|about|scares|but|a|mood|in|which|an|ominous|,|pervasive|,|and|unknown|threat|lurks|just|below|the|proceedings|and|adds|an|almost|constant|mindset|of|suspense|.\n`|Film|aficionados|can|not|help|but|love|Cinema|Paradiso|,|whether|the|original|version|or|new|Director|'s|Cut|.|'\nA|fascinating|glimpse|into|an|insular|world|that|gives|the|lie|to|many|clichés|and|showcases|a|group|of|dedicated|artists|.\nIt|'s|one|thing|to|read|about|or|rail|against|the|ongoing|-|and|unprecedented|-|construction|project|going|on|over|our|heads|.\nIt|'s|quite|another|to|feel|physically|caught|up|in|the|process|.\nContradicts|everything|we|'ve|come|to|expect|from|movies|nowadays|.\nInstead|of|simply|handling|conventional|material|in|a|conventional|way|,|Secretary|takes|the|most|unexpected|material|and|handles|it|in|the|most|unexpected|way|.\nCould|I|have|been|more|geeked|when|I|heard|that|Apollo|13|was|going|to|be|released|in|IMAX|format|?\nIn|a|word|:|No.|.\nMurderous|Maids|has|a|lot|going|for|it|,|not|least|the|brilliant|performances|by|Testud|...|and|Parmentier|.\nFilmmaker|Stacy|Peralta|has|a|flashy|editing|style|that|does|n't|always|jell|with|Sean|Penn|'s|monotone|narration|,|but|he|respects|the|material|without|sentimentalizing|it|.\nThere|are|a|couple|of|things|that|elevate|``|Glory|''|above|most|of|its|ilk|,|most|notably|the|mere|presence|of|Duvall|.\nIt|'s|light|on|the|chills|and|heavy|on|the|atmospheric|weirdness|,|and|there|are|moments|of|jaw-droppingly|odd|behavior|--|yet|I|found|it|weirdly|appealing|.\n(|Rises|)|above|its|oh-so-Hollywood|rejiggering|and|its|conventional|direction|to|give|the|film|a|soul|and|an|unabashed|sense|of|good|old-fashioned|escapism|.\nA|breezy|blend|of|art|,|history|,|esoteric|musings|and|philosophy|.\nKids|will|love|its|fantasy|and|adventure|,|and|grownups|should|appreciate|its|whimsical|humor|.\nTsai|Ming-liang|'s|ghosts|are|painfully|aware|of|their|not-being|.\nLeaping|from|one|arresting|image|to|another|,|Songs|from|the|Second|Floor|has|all|the|enjoyable|randomness|of|a|very|lively|dream|and|so|manages|to|be|compelling|,|amusing|and|unsettling|at|the|same|time|.\nSean|Penn|,|you|owe|Nicolas|Cage|an|apology|.\nThe|performances|are|uniformly|good|.\nShe|'s|all-powerful|,|a|voice|for|a|pop-cyber|culture|that|feeds|on|her|Bjorkness|.\nIt|'s|a|perfect|show|of|respect|to|just|one|of|those|underrated|professionals|who|deserve|but|rarely|receive|it|.\nFor|all|its|plot|twists|,|and|some|of|them|verge|on|the|bizarre|as|the|film|winds|down|,|Blood|Work|is|a|strong|,|character-oriented|piece|.\nThe|story|line|may|be|127|years|old|,|but|El|Crimen|del|Padre|Amaro|...|could|n't|be|more|timely|in|its|despairing|vision|of|corruption|within|the|Catholic|establishment|.\nThis|in-depth|study|of|important|developments|of|the|computer|industry|should|make|it|required|viewing|in|university|computer|science|departments|for|years|to|come|.\nIt|shows|us|a|slice|of|life|that|'s|very|different|from|our|own|and|yet|instantly|recognizable|.\nA|wonderfully|speculative|character|study|that|made|up|for|its|rather|slow|beginning|by|drawing|me|into|the|picture|.\nHas|its|share|of|arresting|images|.\nLeave|it|to|John|Sayles|to|take|on|developers|,|the|Chamber|of|Commerce|,|tourism|,|historical|pageants|,|and|commercialism|all|in|the|same|movie|...|without|neglecting|character|development|for|even|one|minute|.\nReign|of|Fire|just|might|go|down|as|one|of|the|all-time|great|apocalypse|movies|.\nA|smart|little|indie|.\nPayne|has|created|a|beautiful|canvas|,|and|Nicholson|proves|once|again|that|he|'s|the|best|brush|in|the|business|.\nTry|as|you|might|to|resist|,|if|you|'ve|got|a|place|in|your|heart|for|Smokey|Robinson|,|this|movie|will|worm|its|way|there|.\nA|riveting|profile|of|law|enforcement|,|and|a|visceral|,|nasty|journey|into|an|urban|Hades|.\nDirector|Douglas|McGrath|takes|on|Nickleby|with|all|the|halfhearted|zeal|of|an|8th|grade|boy|delving|into|required|reading|.\nStands|as|a|document|of|what|it|felt|like|to|be|a|New|Yorker|--|or|,|really|,|to|be|a|human|being|--|in|the|weeks|after|9\\/11|.\nI|am|not|generally|a|huge|fan|of|cartoons|derived|from|TV|shows|,|but|Hey|Arnold|!\nThe|Movie|is|clever|,|offbeat|and|even|gritty|enough|to|overcome|my|resistance|.\nWith|not|a|lot|of|help|from|the|screenplay|(|proficient|,|but|singularly|cursory|)|,|(|Testud|)|acts|with|the|feral|intensity|of|the|young|Bette|Davis|.\nIt|'s|a|film|that|'s|destined|to|win|a|wide|summer|audience|through|word-of-mouth|reviews|and|,|not|far|down|the|line|,|to|find|a|place|among|the|studio|'s|animated|classics|.\nSlow|and|ponderous|,|but|Rohmer|'s|drama|builds|to|an|intense|indoor|drama|about|compassion|,|sacrifice|,|and|Christian|love|in|the|face|of|political|corruption|.\nIf|you|'re|not|totally|weirded|-|out|by|the|notion|of|cinema|as|community-therapy|spectacle|,|Quitting|hits|home|with|disorienting|force|.\nAustin|Powers|for|the|most|part|is|extremely|funny|,|the|first|part|making|up|for|any|flaws|that|come|later|.\nWhile|Tattoo|borrows|heavily|from|both|Seven|and|The|Silence|of|the|Lambs|,|it|manages|to|maintain|both|a|level|of|sophisticated|intrigue|and|human-scale|characters|that|suck|the|audience|in|.\nCho|continues|her|exploration|of|the|outer|limits|of|raunch|with|considerable|brio|.\nElvira|fans|could|hardly|ask|for|more|.\nA|canny|,|derivative|,|wildly|gruesome|portrait|of|a|London|sociopath|who|'s|the|scariest|of|sadists|.\nThe|movie|should|be|credited|with|remembering|his|victims|.\nFast-paced|and|wonderfully|edited|,|the|film|is|extremely|thorough|.\nA|bracing|,|unblinking|work|that|serves|as|a|painful|elegy|and|sobering|cautionary|tale|.\nHashiguchi|uses|the|situation|to|evoke|a|Japan|bustling|atop|an|undercurrent|of|loneliness|and|isolation|.\nAs|if|trying|to|grab|a|lump|of|Play-Doh|,|the|harder|that|Liman|tries|to|squeeze|his|story|,|the|more|details|slip|out|between|his|fingers|.\nMy|Big|Fat|Greek|Wedding|is|not|only|the|best|date|movie|of|the|year|,|it|'s|also|a|--|dare|I|say|it|twice|--|delightfully|charming|--|and|totally|American|,|I|might|add|--|slice|of|comedic|bliss|.\nFew|films|have|captured|the|chaos|of|an|urban|conflagration|with|such|fury|,|and|audience|members|will|leave|feeling|as|shaken|as|Nesbitt|'s|Cooper|looks|when|the|bullets|stop|flying|.\nAnother|love|story|in|2002|'s|remarkable|procession|of|sweeping|pictures|that|have|reinvigorated|the|romance|genre|.\nIt|'s|another|retelling|of|Alexandre|Dumas|'|classic|.\nWhy|?\nWho|knows|,|but|it|works|under|the|direction|of|Kevin|Reynolds|.\n(|F|)|rom|the|performances|and|the|cinematography|to|the|outstanding|soundtrack|and|unconventional|narrative|,|the|film|is|blazingly|alive|and|admirable|on|many|levels|.\nShiri|is|an|action|film|that|delivers|on|the|promise|of|excitement|,|but|it|also|has|a|strong|dramatic|and|emotional|pull|that|gradually|sneaks|up|on|the|audience|.\nProvides|the|kind|of|`|laugh|therapy|'|I|need|from|movie|comedies|--|offbeat|humor|,|amusing|characters|,|and|a|happy|ending|.\nAfter|seeing|`|Analyze|That|,|'|I|feel|better|already|.\nA|penetrating|,|potent|exploration|of|sanctimony|,|self-awareness|,|self-hatred|and|self-determination|.\nThis|is|n't|a|retooled|genre|piece|,|the|tale|of|a|guy|and|his|gun|,|but|an|amiably|idiosyncratic|work|.\nOverall|,|it|'s|a|very|entertaining|,|thought-provoking|film|with|a|simple|message|:|God|is|love|.\nIt|may|not|be|a|great|piece|of|filmmaking|,|but|its|power|comes|from|its|soul|'s|-|eye|view|of|how|well-meaning|patronizing|masked|a|social|injustice|,|at|least|as|represented|by|this|case|.\nAlthough|mainstream|American|movies|tend|to|exploit|the|familiar|,|every|once|in|a|while|a|film|arrives|from|the|margin|that|gives|viewers|a|chance|to|learn|,|to|grow|,|to|travel|.\nJeong-Hyang|Lee|'s|film|is|deceptively|simple|,|deeply|satisfying|.\nThe|film|is|a|hoot|,|and|is|just|as|good|,|if|not|better|than|much|of|what|'s|on|Saturday|morning|TV|especially|the|pseudo-educational|stuff|we|all|ca|n't|stand|.\nGeorge|Clooney|,|in|his|first|directorial|effort|,|presents|this|utterly|ridiculous|shaggy|dog|story|as|one|of|the|most|creative|,|energetic|and|original|comedies|to|hit|the|screen|in|years|.\nEven|when|it|drags|,|we|are|forced|to|reflect|that|its|visual|imagination|is|breathtaking\nAlthough|commentary|on|Nachtwey|is|provided|...|it|'s|the|image|that|really|tells|the|tale|.\nA|life-size|reenactment|of|those|Jack|Chick|cartoon|tracts|that|always|ended|with|some|hippie|getting|tossed|into|the|lake|of|fire|.\nGrainy|photography|mars|an|otherwise|delightful|comedy|of|errors|.\nthis|film|is|not|a|love|letter|for|the|slain|rappers|,|it|'s|a|taunt|-|a|call|for|justice|for|two|crimes|from|which|many|of|us|have|not|yet|recovered|.\nThe|film|is|impressive|for|the|sights|and|sounds|of|the|wondrous|beats|the|world|has|to|offer|.\nDaily|struggles|and|simple|pleasures|usurp|the|preaching|message|so|that|,|by|the|time|the|credits|roll|across|the|pat|ending|,|a|warm|,|fuzzy|feeling|prevails|.\n...|in|no|way|original|,|or|even|all|that|memorable|,|but|as|downtown|Saturday|matinee|brain|candy|,|it|does|n't|disappoint|.\nClever|and|unflinching|in|its|comic|barbs|,|Slap|Her|is|a|small|but|rewarding|comedy|that|takes|aim|at|contemporary|southern|adolescence|and|never|lets|up|.\nCremaster|3|is|at|once|a|tough|pill|to|swallow|and|a|minor|miracle|of|self-expression|.\nSex|is|one|of|those|films|that|aims|to|confuse|.\nCompared|to|his|series|of|spectacular|belly|flops|both|on|and|off|the|screen|,|RunTelDat|is|something|of|a|triumph|.\n(|Moore|'s|)|better|at|fingering|problems|than|finding|solutions|.\nBut|though|he|only|scratches|the|surface|,|at|least|he|provides|a|strong|itch|to|explore|more|.\nThe|powerful|success|of|Read|My|Lips|with|such|provocative|material|shows|why|,|after|only|three|films|,|director\\/co-writer|Jacques|Audiard|,|though|little|known|in|this|country|,|belongs|in|the|very|top|rank|of|French|filmmakers|.\nIn|his|debut|as|a|director|,|Washington|has|a|sure|hand|.\nHis|work|with|actors|is|particularly|impressive|.\nA|generous|,|inspiring|film|that|unfolds|with|grace|and|humor|and|gradually|becomes|a|testament|to|faith|.\nDelivers|the|sexy|razzle-dazzle|that|everyone|,|especially|movie|musical|fans|,|has|been|hoping|for|.\nVincent|Gallo|is|right|at|home|in|this|French|shocker|playing|his|usual|bad|boy|weirdo|role|.\nFierce|,|glaring|and|unforgettable|.\nCletis|is|playful|but|highly|studied|and|dependent|for|its|success|on|a|patient|viewer|.\nLike|its|predecessor|,|it|'s|no|classic|,|but|it|provides|a|reasonably|attractive|holiday|contraption|,|one|that|families|looking|for|a|clean|,|kid-friendly|outing|should|investigate|.\nCampanella|gets|the|tone|just|right|--|funny|in|the|middle|of|sad|in|the|middle|of|hopeful|.\nEither|a|fascinating|study|of|the|relationship|between|mothers|and|their|children|or|a|disturbing|story|about|sociopaths|and|their|marks|.\n...|gripping|and|handsome|execution|,|(|but|)|there|is|n't|much|about|K-19|that|'s|unique|or|memorable|.\nEffective|in|all|its|aspects|,|Margarita|Happy|Hour|represents|an|auspicious|feature|debut|for|Chaiken|.\nThe|delicious|trimmings|...|arrive|early|and|stay|late|,|filling|nearly|every|minute|...|with|a|lighthearted|glow|,|some|impudent|snickers|,|and|a|glorious|dose|of|humankind|'s|liberating|ability|to|triumph|over|a|Scrooge|or|two|.\nStanding|by|Yourself|is|haunting|...|(|It|'s|)|what|punk|rock|music|used|to|be|,|and|what|the|video|medium|could|use|more|of|:|spirit|,|perception|,|conviction|.\nNot|the|best|Herzog|perhaps|,|but|unmistakably|Herzog|.\nEnjoyably|fast-moving|,|hard-hitting|documentary|.\nRehearsals|are|frequently|more|fascinating|than|the|results|.\nLast|Dance|,|whatever|its|flaws|,|fulfills|one|facet|of|its|mission|in|making|me|want|to|find|out|whether|,|in|this|case|,|that|'s|true|.\nThe|film|'s|constant|mood|of|melancholy|and|its|unhurried|narrative|are|masterfully|controlled|.\nBut|...|in|trying|to|capture|the|novel|'s|deeper|intimate|resonances|,|the|film|has|--|ironically|-|distanced|us|from|the|characters|.\nThis|is|a|stunning|film|,|a|one-of-a-kind|tour|de|force|.\n(|Cho|'s|face|is|)|an|amazing|slapstick|instrument|,|creating|a|scrapbook|of|living|mug|shots|.\nIt|'s|about|as|convincing|as|any|other|Arnie|musclefest|,|but|has|a|little|too|much|resonance|with|real|world|events|and|ultimately|comes|off|as|insultingly|simplistic|.\nWhile|not|quite|a|comedy|,|the|film|tackles|its|relatively|serious|subject|with|an|open|mind|and|considerable|good|cheer|,|and|is|never|less|than|engaging|.\nAn|extremely|funny|,|ultimately|heartbreaking|look|at|life|in|contemporary|China|.\nYour|response|to|its|new|sequel|,|Analyze|That|,|may|hinge|on|what|you|thought|of|the|first|film|.\nDavis|is|funny|,|charming|and|quirky|in|her|feature|film|acting|debut|as|Amy|.\nBloody|Sunday|has|the|grace|to|call|for|prevention|rather|than|to|place|blame|,|making|it|one|of|the|best|war|movies|ever|made|.\nIt|'s|a|movie|that|accomplishes|so|much|that|one|viewing|ca|n't|possibly|be|enough|.\nA|lively|and|engaging|examination|of|how|similar|obsessions|can|dominate|a|family|.\nIn|the|new|release|of|Cinema|Paradiso|,|the|tale|has|turned|from|sweet|to|bittersweet|,|and|when|the|tears|come|during|that|final|,|beautiful|scene|,|they|finally|feel|absolutely|earned|.\nFaithful|without|being|forceful|,|sad|without|being|shrill|,|``|A|Walk|to|Remember|''|succeeds|through|sincerity|.\nThe|film|is|a|masterpiece|of|nuance|and|characterization|,|marred|only|by|an|inexplicable|,|utterly|distracting|blunder|at|the|very|end|.\nThe|film|is|full|of|charm|.\nThe|movie|is|well|crafted|,|and|well|executed|.\nIf|you|'re|paying|attention|,|the|``|big|twists|''|are|pretty|easy|to|guess|-|but|that|does|n't|make|the|movie|any|less|entertaining|.\nOne|of|those|unassuming|films|that|sneaks|up|on|you|and|stays|with|you|long|after|you|have|left|the|theatre|.\n...|Pray|does|n't|have|a|passion|for|the|material|.\nHe|nonetheless|appreciates|the|art|and|reveals|a|music|scene|that|transcends|culture|and|race|.\nThe|one-liners|are|snappy|,|the|situations|volatile|and|the|comic|opportunities|richly|rewarded|.\nIt|'s|anchored|by|splendid|performances|from|an|honored|screen|veteran|and|a|sparkling|newcomer|who|instantly|transform|themselves|into|a|believable|mother\\/daughter|pair|.\nFathers|and|sons|,|and|the|uneasy|bonds|between|them|,|rarely|have|received|such|a|sophisticated|and|unsentimental|treatment|on|the|big|screen|as|they|do|in|this|marvelous|film|.\nThis|sci-fi|techno-sex|thriller|starts|out|bizarre|and|just|keeps|getting|weirder|.\nLast|Orders|nurtures|the|multi-layers|of|its|characters|,|allowing|us|to|remember|that|life|'s|ultimately|a|gamble|and|last|orders|are|to|be|embraced|.\nIt|'s|affecting|,|amusing|,|sad|and|reflective|.\nA|slight|but|sweet|film|.\nWriter\\/director|Walter|Hill|is|in|his|hypermasculine|element|here|,|once|again|able|to|inject|some|real|vitality|and|even|art|into|a|pulpy|concept|that|,|in|many|other|hands|would|be|completely|forgettable|.\nIt|is|a|happy|,|heady|jumble|of|thought|and|storytelling|,|an|insane|comic|undertaking|that|ultimately|coheres|into|a|sane|and|breathtakingly|creative|film|.\nThis|new|Time|Machine|is|hardly|perfect|...|yet|it|proves|surprisingly|serviceable|.\nEven|at|its|worst|,|it|'s|not|half-bad|.\nAlmost|everyone|growing|up|believes|their|family|must|look|like|``|The|Addams|Family|''|to|everyone|looking|in|...|``|My|Big|Fat|Greek|Wedding|''|comes|from|the|heart|...\nOnce|folks|started|hanging|out|at|the|barbershop|,|they|never|wanted|to|leave|.\nChances|are|you|wo|n't|,|either|.\nGeorge|Lucas|returns|as|a|visionary|with|a|tale|full|of|nuance|and|character|dimension|.\nCan|be|viewed|as|pure|composition|and|form|--|film|as|music\nAn|extraordinary|dramatic|experience|.\nEvery|individual|will|see|the|movie|through|the|prism|of|his|or|her|own|beliefs|and|prejudices|,|but|the|one|thing|most|will|take|away|is|the|sense|that|peace|is|possible|.\nThat|,|in|itself|,|is|extraordinary|.\nIf|you|can|tolerate|the|redneck-versus-blueblood|cliches|that|the|film|trades|in|,|Sweet|Home|Alabama|is|diverting|in|the|manner|of|Jeff|Foxworthy|'s|stand-up|act|.\nIt|'s|a|treat|watching|Shaw|,|a|British|stage|icon|,|melting|under|the|heat|of|Phocion|'s|attentions|.\nAll|in|all|,|an|interesting|look|at|the|life|of|the|campaign-trail|press|,|especially|ones|that|do|n't|really|care|for|the|candidate|they|'re|forced|to|follow|.\nNarc|is|a|no-bull|throwback|to|1970s|action|films|.\nIt|zips|along|with|B-movie|verve|while|adding|the|rich|details|and|go-for-broke|acting|that|heralds|something|special|.\nMe|Without|You|has|a|bracing|truth|that|'s|refreshing|after|the|phoniness|of|female-bonding|pictures|like|Divine|Secrets|of|the|Ya-Ya|Sisterhood|.\nIt|'s|a|strange|film|,|one|that|was|hard|for|me|to|warm|up|to|.\nGoes|a|long|way|on|hedonistic|gusto|.\nThe|result|puts|a|human|face|on|Derrida|,|and|makes|one|of|the|great|minds|of|our|times|interesting|and|accessible|to|people|who|normally|could|n't|care|less|.\nThe|Scorpion|King|is|more|fun|than|Conan|the|Barbarian|.\nIf|there|'s|one|big|point|to|Promises|,|it|'s|that|nothing|can|change|while|physical|and|psychological|barriers|keep|the|sides|from|speaking|even|one|word|to|each|other|.\nUnexpected|moments|of|authentically|impulsive|humor|are|the|hallmark|of|this|bittersweet|,|uncommonly|sincere|movie|that|portrays|the|frank|humanity|of|...|emotional|recovery|.\nJacquot|has|filmed|the|opera|exactly|as|the|libretto|directs|,|ideally|capturing|the|opera|'s|drama|and|lyricism|.\nThis|is|a|sincerely|crafted|picture|that|deserves|to|emerge|from|the|traffic|jam|of|holiday|movies|.\nI|liked|it|because|it|was|so|endlessly|,|grotesquely|,|inventive|.\nAudiard|successfully|maintains|suspense|on|different|levels|throughout|a|film|that|is|both|gripping|and|compelling|.\nCredit|director|Ramsay|for|taking|the|sometimes|improbable|story|and|making|it|feel|realistic|.\nThis|is|DiCaprio|'s|best|performance|in|anything|ever|,|and|easily|the|most|watchable|film|of|the|year|.\nWitherspoon|puts|to|rest|her|valley-girl|image|,|but|it|'s|Dench|who|really|steals|the|show|.\nEven|when|there|are|lulls|,|the|emotions|seem|authentic|,|and|the|picture|is|so|lovely|toward|the|end|...|you|almost|do|n't|notice|the|129-minute|running|time|.\nWhile|dutifully|pulling|on|heartstrings|,|directors|Dean|Deblois|and|Chris|Sanders|valiantly|keep|punching|up|the|mix|.\nAmbitious|,|unsettling|psychodrama|that|takes|full|,|chilling|advantage|of|its|rough-around-the-edges|,|low-budget|constraints|.\nEric|Byler|'s|nuanced|pic|avoids|easy|sentiments|and|explanations|...\nManages|to|be|wholesome|and|subversive|at|the|same|time|.\nWhen|it|'s|not|wallowing|in|hormonal|melodrama|,|``|Real|Women|Have|Curves|''|is|a|sweet|,|honest|,|and|enjoyable|comedy-drama|about|a|young|woman|who|wants|many|things|in|life|,|but|fears|she|'ll|become|her|mother|before|she|gets|to|fulfill|her|dreams|.\nThe|film|runs|on|a|little|longer|than|it|needs|to|--|Muccino|either|does|n't|notice|when|his|story|ends|or|just|ca|n't|tear|himself|away|from|the|characters|--|but|it|'s|smooth|and|professional|.\nBlithely|anachronistic|and|slyly|achronological|.\nThis|starts|off|with|a|1950|'s|Doris|Day|feel|and|it|gets|very|ugly|,|very|fast|.\nThe|first|five|minutes|will|have|you|talking|'til|the|end|of|the|year|!\nTriumph|of|Love|is|a|very|silly|movie|,|but|the|silliness|has|a|pedigree|.\nDiscursive|but|oddly|riveting|documentary|.\nThe|movie|has|no|respect|for|laws|,|political|correctness|or|common|decency|,|but|it|displays|something|more|important|:|respect|for|its|flawed|,|crazy|people|.\nOn|its|own|,|Big|Trouble|could|be|considered|a|funny|little|film|.\nAn|undeniably|gorgeous|,|terminally|smitten|document|of|a|troubadour|,|his|acolytes|,|and|the|triumph|of|his|band|.\nThis|cinema|verite|speculation|on|the|assassination|of|John|F.|Kennedy|may|have|been|inspired|by|Blair|Witch|,|but|it|takes|its|techniques|into|such|fresh|territory|that|the|film|never|feels|derivative|.\nA|beautifully|observed|character|piece|.\nA|coming-of-age|movie|that|Hollywood|would|n't|have|the|guts|to|make|.\nIt|is|quite|a|vision|.\nThere|are|laughs|aplenty|,|and|,|as|a|bonus|,|viewers|do|n't|have|to|worry|about|being|subjected|to|farts|,|urine|,|feces|,|semen|,|or|any|of|the|other|foul|substances|that|have|overrun|modern-day|comedies|.\nA|bittersweet|drama|about|the|limbo|of|grief|and|how|truth-telling|can|open|the|door|to|liberation|.\nA|strong|and|confident|work|which|works|so|well|for|the|first|89|minutes|,|but|ends|so|horrendously|confusing|in|the|final|two\nSalma|goes|native|and|she|'s|never|been|better|in|this|colorful|bio-pic|of|a|Mexican|icon|.\nFilled|with|Alexandre|Desplat|'s|haunting|and|sublime|music|,|the|movie|completely|transfixes|the|audience|.\nAs|chilling|and|fascinating|as|Philippe|Mora|'s|modern|Hitler-study|,|Snide|and|Prejudice|.\nAn|hour|and|a|half|of|joyful|solo|performance|.\nStrange|and|beautiful|film|.\nNo|worse|a|film|than|Breaking|Out|,|and|Breaking|Out|was|utterly|charming|.\nParker|can|not|sustain|the|buoyant|energy|level|of|the|film|'s|city|beginnings|into|its|country|conclusion|'\n...|Despite|lagging|near|the|finish|line|,|the|movie|runs|a|good|race|,|one|that|will|have|you|at|the|edge|of|your|seat|for|long|stretches|.|'\n...|a|guiltless|film|for|nice|evening|out|.\nDeflated|ending|aside|,|there|'s|much|to|recommend|the|film|.\nIt|'s|a|treat|--|a|delightful|,|witty|,|improbable|romantic|comedy|with|a|zippy|jazzy|score|...|Grant|and|Bullock|make|it|look|as|though|they|are|having|so|much|fun|.\nPerformances|all|around|are|tops|,|with|the|two|leads|delivering|Oscar-caliber|performances|.\nEverything|about|The|Quiet|American|is|good|,|except|its|timing|.\nA|savage|John|Waters-like|humor|that|dances|on|the|edge|of|tastelessness|without|ever|quite|falling|over|.\nAt|once|a|testament|to|the|divine|calling|of|education|and|a|demonstration|of|the|painstaking|process|of|imparting|knowledge|.\nMay|seriously|impair|your|ability|to|ever|again|maintain|a|straight|face|while|speaking|to|a|highway|patrolman|.\nIt|'s|an|interesting|effort|(|particularly|for|JFK|conspiracy|nuts|)|,|and|Barry|'s|cold-fish|act|makes|the|experience|worthwhile|.\nThey|'re|just|a|couple|of|cops|in|Copmovieland|,|these|two|,|but|in|Narc|,|they|find|new|routes|through|a|familiar|neighborhood|.\nBrings|awareness|to|an|issue|often|overlooked|--|women|'s|depression|.\nIt|'s|a|shame|the|marvelous|first|101|minutes|have|to|be|combined|with|the|misconceived|final|5|.\nIt|has|a|caffeinated|,|sloppy|brilliance|,|sparkling|with|ideas|you|wish|had|been|developed|with|more|care|,|but|animated|by|an|energy|that|puts|the|dutiful|efforts|of|more|disciplined|grade-grubbers|to|shame|.\nYou|can|almost|see|Mendes|and|company|getting|together|before|a|single|frame|had|been|shot|and|collectively|vowing|,|`|This|is|going|to|be|something|really|good|.|'\nAnd|it|is|.\nFoster|and|Whitaker|are|especially|fine|.\nShe|is|a|lioness|,|protecting|her|cub|,|and|he|a|reluctant|villain|,|incapable|of|controlling|his|crew|.\nUndoubtedly|the|scariest|movie|ever|made|about|tattoos|.\nA|movie|that|will|wear|you|out|and|make|you|misty|even|when|you|do|n't|want|to|be|.\nNot|only|better|than|its|predecessor|,|it|may|rate|as|the|most|magical|and|most|fun|family|fare|of|this|or|any|recent|holiday|season|.\nThough|the|story|...|is|hackneyed|,|the|characters|have|a|freshness|and|modesty|that|transcends|their|predicament|.\nAlthough|Frailty|fits|into|a|classic|genre|,|in|its|script|and|execution|it|is|a|remarkably|original|work|.\nIf|this|movie|leaves|you|cool|,|it|also|leaves|you|intriguingly|contemplative|.\nThe|climactic|events|are|so|well|realized|that|you|may|forget|all|about|the|original|conflict|,|just|like|the|movie|does\nA|rude|black|comedy|about|the|catalytic|effect|a|holy|fool|has|upon|those|around|him|in|the|cutthroat|world|of|children|'s|television|.\nAll|comedy|is|subversive|,|but|this|unrelenting|bleak|insistence|on|opting|out|of|any|opportunity|for|finding|meaning|in|relationships|or|work|just|becomes|sad|.\nIf|a|horror|movie|'s|primary|goal|is|to|frighten|and|disturb|,|then|They|works|spectacularly|well|...|A|shiver-inducing|,|nerve-rattling|ride|.\nA|playful|Iranian|parable|about|openness|,|particularly|the|need|for|people|of|diverse|political|perspectives|to|get|along|despite|their|ideological|differences|.\nBrilliantly|written|and|well-acted|,|Yellow|Asphalt|is|an|uncompromising|film|.\nThat|`|Alabama|'|manages|to|be|pleasant|in|spite|of|its|predictability|and|occasional|slowness|is|due|primarily|to|the|perkiness|of|Witherspoon|(|who|is|always|a|joy|to|watch|,|even|when|her|material|is|not|first-rate|)|...\nPersonal|Velocity|has|a|no-frills|docu-Dogma|plainness|,|yet|Miller|lingers|on|invisible|,|nearly|psychic|nuances|,|leaping|into|digressions|of|memory|and|desire|.\nShe|boxes|these|women|'s|souls|right|open|for|us|.\nA|fascinating|literary|mystery|story|with|multiple|strands|about|the|controversy|of|who|really|wrote|Shakespeare|'s|plays|.\nThroughout|,|Mr.|Audiard|'s|direction|is|fluid|and|quick|.\nA|dashing|and|absorbing|outing|with|one|of|France|'s|most|inventive|directors|.\nIt|'s|a|fine|,|old-fashioned-movie|movie|,|which|is|to|say|it|'s|unburdened|by|pretensions|to|great|artistic|significance|.\n...|flat-out|amusing|,|sometimes|endearing|and|often|fabulous|,|with|a|solid|cast|,|noteworthy|characters|,|delicious|dialogue|and|a|wide|supply|of|effective|sight|gags|.\nThe|Trials|of|Henry|Kissinger|is|a|remarkable|piece|of|filmmaking|...|because|you|get|it|.\nNachtwey|clears|the|cynicism|right|out|of|you|.\nHe|makes|you|realize|that|deep|inside|righteousness|can|be|found|a|tough|beauty|.\nWhat|it|lacks|in|substance|it|makes|up|for|in|heart|.\nRobert|Harmon|'s|less-is-more|approach|delivers|real|bump-in|-|the-night|chills|--|his|greatest|triumph|is|keeping|the|creepy|crawlies|hidden|in|the|film|'s|thick|shadows|.\nWith|its|hint|of|an|awkward|Hitchcockian|theme|in|tact|,|Harmon|'s|daunting|narrative|promotes|a|reasonable|landscape|of|conflict|and|pathos|to|support|the|scattershot|terrorizing|tone\nIn|Auteil|'s|less|dramatic|but|equally|incisive|performance|,|he|'s|a|charismatic|charmer|likely|to|seduce|and|conquer|.\nThe|heart|of|the|film|is|a|touching|reflection|on|aging|,|suffering|and|the|prospect|of|death|.\nWill|you|go|ape|over|this|movie|?\nWell|,|it|probably|wo|n't|have|you|swinging|from|the|trees|hooting|it|'s|praises|,|but|it|'s|definitely|worth|taking|a|look|.\nIts|director|'s|most|substantial|feature|for|some|time|.\nFontaine|'s|direction|,|especially|her|agreeably|startling|use|of|close-ups|and|her|grace|with|a|moving|camera|,|creates|sheerly|cinematic|appeal|.\nThe|Son|Of|The|Bride|'s|humour|is|born|out|of|an|engaging|storyline|,|which|also|is|n't|embarrassed|to|make|you|reach|for|the|tissues|.\nThis|movie|is|to|be|cherished|.\n...|a|visually|seductive|,|unrepentantly|trashy|take|on|Rice|'s|second|installment|of|her|Vampire|Chronicles|.\nThe|story|'s|scope|and|pageantry|are|mesmerizing|,|and|Mr.|Day-Lewis|roars|with|leonine|power|.\nP.T.|Anderson|understands|the|grandness|of|romance|and|how|love|is|the|great|equalizer|that|can|calm|us|of|our|daily|ills|and|bring|out|joys|in|our|lives|that|we|never|knew|were|possible|.\nTwenty|years|later|,|E.T.|is|still|a|cinematic|touchstone|.\nThis|fascinating|experiment|plays|as|more|of|a|poetic|than|a|strict|reality|,|creating|an|intriguing|species|of|artifice|that|gives|The|Lady|and|the|Duke|something|of|a|theatrical|air|.\nIt|'s|virtually|impossible|to|like|any|of|these|despicable|characters|.\nThis|is|mostly|well-constructed|fluff|,|which|is|all|it|seems|intended|to|be|.\nEven|through|its|flaws|,|Revolution|#|9|proves|to|be|a|compelling|,|interestingly|told|film|.\nThe|best|way|to|describe|it|is|as|a|cross|between|Paul|Thomas|Anderson|'s|Magnolia|and|David|Lynch|'s|Mulholland|Dr.\nSchepisi|,|aided|by|a|cast|that|seems|to|include|every|top-notch|British|actor|who|did|not|appear|in|Gosford|Park|(|as|well|as|one|,|Ms.|Mirren|,|who|did|)|,|has|succeeded|beyond|all|expectation|.\nWatching|this|film|,|one|is|left|with|the|inescapable|conclusion|that|Hitchens|'|obsession|with|Kissinger|is|,|at|bottom|,|a|sophisticated|flower|child|'s|desire|to|purge|the|world|of|the|tooth|and|claw|of|human|power|.\nThere|is|no|denying|the|power|of|Polanski|'s|film|...\nThe|movie|is|amateurish|,|but|it|'s|a|minor|treat|.\nThis|charming|but|slight|tale|has|warmth|,|wit|and|interesting|characters|compassionately|portrayed|.\nOffers|a|persuasive|look|at|a|defeated|but|defiant|nation|in|flux|.\nA|return|to|pure|Disney|magic|and|is|enjoyable|family|fare|.\nTakes|a|fresh|and|absorbing|look|at|a|figure|whose|legacy|had|begun|to|bronze|.\nA|triumph|of|pure|craft|and|passionate|heart|.\nGosling|creates|a|staggeringly|compelling|character|,|a|young|man|whose|sharp|intellect|is|at|the|very|root|of|his|contradictory|,|self-hating|,|self-destructive|ways|.\nWitty|and|often|surprising|,|a|dark|little|morality|tale|disguised|as|a|romantic|comedy|.\nEven|as|it|pays|earnest|homage|to|turntablists|and|beat|jugglers|,|old|schoolers|and|current|innovators|,|Scratch|is|great|fun|,|full|of|the|kind|of|energy|it|'s|documenting|.\nGot|a|David|Lynch|jones|?\nThen|you|'d|do|well|to|check|this|one|out|because|it|'s|straight|up|Twin|Peaks|action|...\nAstonishing|...|(|frames|)|profound|ethical|and|philosophical|questions|in|the|form|of|dazzling|pop|entertainment|.\nTake|Care|is|nicely|performed|by|a|quintet|of|actresses|,|but|nonetheless|it|drags|during|its|112-minute|length|.\nIt|'s|hard|to|fairly|judge|a|film|like|RINGU|when|you|'ve|seen|the|remake|first|.\nMany|of|the|effective|horror|elements|are|dampened|through|familiarity|,|(|yet|)|are|worthwhile|.\nOne|of|the|very|best|movies|ever|made|about|the|life|of|moviemaking|.\nRarely|does|such|high-profile|talent|serve|such|literate|material|.\nAn|elegant|and|sly|deadpan|comedy|.\nThe|way|the|roundelay|of|partners|functions|,|and|the|interplay|within|partnerships|and|among|partnerships|and|the|general|air|of|Gator-bashing|are|consistently|delightful|.\nLand|,|people|and|narrative|flow|together|in|a|stark|portrait|of|motherhood|deferred|and|desire|explored|.\n`|Blue|Crush|'|swims|away|with|the|Sleeper|Movie|of|the|Summer|award|.\nYou|'re|not|merely|watching|history|,|you|'re|engulfed|by|it|.\nA|chick|flick|for|guys|.\nIt|'s|mildly|entertaining|,|especially|if|you|find|comfort|in|familiarity|.\nBut|it|'s|hardly|a|necessary|enterprise|.\nThe|Quiet|American|is|n't|a|bad|film|,|it|'s|just|one|that|could|easily|wait|for|your|pay|per|view|dollar|.\nAs|home|movie|gone|haywire|,|it|'s|pretty|enjoyable|,|but|as|sexual|manifesto|,|I|'d|rather|listen|to|old|Tori|Amos|records|.\nIn|its|treatment|of|the|dehumanizing|and|ego-destroying|process|of|unemployment|,|Time|Out|offers|an|exploration|that|is|more|accurate|than|anything|I|have|seen|in|an|American|film|.\nLike|an|episode|of|MTV|'s|Undressed|,|with|20|times|the|creativity|but|without|any|more|substance|...|indulgently|entertaining|but|could|have|and|should|have|been|deeper|.\nA|sensitive|,|cultivated|treatment|of|Greene|'s|work|as|well|as|a|remarkably|faithful|one|.\nIt|'s|not|just|a|feel-good|movie|,|it|'s|a|feel|movie|.\nYou|feel|good|,|you|feel|sad|,|you|feel|pissed|off|,|but|in|the|end|,|you|feel|alive|-|which|is|what|they|did|.\nIt|'s|a|piece|of|handiwork|that|shows|its|indie|tatters|and|self-conscious|seams|in|places|,|but|has|some|quietly|moving|moments|and|an|intelligent|subtlety|.\nWhat|makes|Barbershop|so|likable|,|with|all|its|flaws|,|is|that|it|has|none|of|the|pushiness|and|decibel|volume|of|most|contemporary|comedies|.\nWatching|these|two|actors|play|against|each|other|so|intensely|,|but|with|restraint|,|is|a|treat|.\nAn|example|of|quiet|,|confident|craftsmanship|that|tells|a|sweet|,|charming|tale|of|intergalactic|friendship|.\nA|meditation|on|faith|and|madness|,|Frailty|is|blood-curdling|stuff|.\nThe|production|design|,|score|and|choreography|are|simply|intoxicating|.\nA|comedy|that|is|warm|,|inviting|,|and|surprising|.\nSo|vivid|a|portrait|of|a|woman|consumed|by|lust|and|love|and|crushed|by|betrayal|that|it|conjures|up|the|intoxicating|fumes|and|emotional|ghosts|of|a|freshly|painted|Rembrandt|.\nSuspend|your|disbelief|here|and|now|,|or|you|'ll|be|shaking|your|head|all|the|way|to|the|credits|.\nTrades|run-of-the-mill|revulsion|for|extreme|unease|.\n...|one|of|the|more|influential|works|of|the|`|Korean|New|Wave|'|.\nImplicitly|acknowledges|and|celebrates|the|glorious|chicanery|and|self-delusion|of|this|most|American|of|businesses|,|and|for|that|reason|it|may|be|the|most|oddly|honest|Hollywood|document|of|all|.\nA|beautifully|tooled|action|thriller|about|love|and|terrorism|in|Korea|.\nDirector-writer|Bille|August|...|depicts|this|relationship|with|economical|grace|,|letting|his|superb|actors|convey|Martin|'s|deterioration|and|Barbara|'s|sadness|--|and|,|occasionally|,|anger|.\nVictor|Rosa|is|Leguizamo|'s|best|movie|work|so|far|,|a|subtle|and|richly|internalized|performance|.\nBirthday|Girl|does|n't|try|to|surprise|us|with|plot|twists|,|but|rather|seems|to|enjoy|its|own|transparency|.\nsmart|,|funny|and|just|honest|enough|to|provide|the|pleasures|of|a|slightly|naughty|,|just-above-average|off|-|Broadway|play|.\nTopics|that|could|make|a|sailor|blush|-|but|lots|of|laughs|.\nMichael|Moore|has|perfected|the|art|of|highly|entertaining|,|self-aggrandizing|,|politically|motivated|documentary-making|,|and|he|'s|got|as|potent|a|topic|as|ever|here|.\nA|fine|production|with|splendid|singing|by|Angela|Gheorghiu|,|Ruggero|Raimondi|,|and|Roberto|Alagna|.\nAbout|a|Boy|vividly|recalls|the|Cary|Grant|of|Room|for|One|More|,|Houseboat|and|Father|Goose|in|its|affectionate|depiction|of|the|gentle|war|between|a|reluctant|,|irresponsible|man|and|the|kid|who|latches|onto|him|.\nNone|of|this|is|meaningful|or|memorable|,|but|frosting|is|n't|,|either|,|and|you|would|n't|turn|down|a|big|bowl|of|that|,|would|you|?\nThe|film|is|a|fierce|dance|of|destruction|.\nIts|flame-like|,|roiling|black-and-white|inspires|trembling|and|gratitude|.\nMay|lack|the|pungent|bite|of|its|title|,|but|it|'s|an|enjoyable|trifle|nonetheless|.\n...|manages|to|fall|closer|in|quality|to|Silence|than|to|the|abysmal|Hannibal|.\nYou|may|think|you|have|figured|out|the|con|and|the|players|in|this|debut|film|by|Argentine|director|Fabian|Bielinsky|,|but|while|you|were|thinking|someone|made|off|with|your|wallet|.\nDiane|Lane|works|nothing|short|of|a|minor|miracle|in|Unfaithful|.\nTakashi|Miike|keeps|pushing|the|envelope|:|Ichi|the|Killer\nA|fantastic|premise|anchors|this|movie|,|but|what|it|needs|is|either|a|more|rigid|,|Blair|Witch-style|commitment|to|its|mockumentary|format|,|or|a|more|straightforward|,|dramatic|treatment|,|with|all|the|grandiosity|that|that|implies|.\nExhilarating|but|blatantly|biased|.\nMuch|of|what|we|see|is|horrible|but|it|'s|also|undeniably|exceedingly|clever|.\nIt|understands|,|in|a|way|that|speaks|forcefully|enough|about|the|mechanisms|of|poverty|to|transcend|the|rather|simplistic|filmmaking|.\nRamsay|succeeds|primarily|with|her|typical|blend|of|unsettling|atmospherics|,|delivering|a|series|of|abrasive|,|stylized|sequences|that|burn|themselves|upon|the|viewer|'s|memory|.\n...|a|thoughtful|what-if|for|the|heart|as|well|as|the|mind|.\nLike|its|bizarre|heroine|,|it|irrigates|our|souls|.\nHawn|and|Sarandon|form|an|acting|bond|that|makes|The|Banger|Sisters|a|fascinating|character|study|with|laughs|to|spare|.\nIt|'s|a|fun|adventure|movie|for|kids|(|of|all|ages|)|that|like|adventure|.\nA|very|capable|nailbiter|.\nBecause|the|genre|is|well|established|,|what|makes|the|movie|fresh|is|smart|writing|,|skewed|characters|,|and|the|title|performance|by|Kieran|Culkin|.\n``|White|Oleander|,|''|the|movie|,|is|akin|to|a|Reader|'s|Digest|condensed|version|of|the|source|material|.\nIt|'s|like|going|to|a|house|party|and|watching|the|host|defend|himself|against|a|frothing|ex-girlfriend|.\nYou|do|n't|want|to|call|the|cops|.\nYou|want|to|call|Domino|'s|.\nWhat|'s|most|refreshing|about|Real|Women|Have|Curves|is|its|unforced|comedy-drama|and|its|relaxed|,|natural-seeming|actors|.\nThe|low-key|direction|is|pleasingly|emphatic|in|this|properly|intense|,|claustrophobic|tale|of|obsessive|love|.\nSecretary|is|just|too|original|to|be|ignored|.\nThat|rare|film|whose|real-life|basis|is|,|in|fact|,|so|interesting|that|no|embellishment|is|needed|.\nSmart|and|fun|,|but|far|more|witty|than|it|is|wise|.\nThis|is|n't|a|stand|up|and|cheer|flick|;|it|'s|a|sit|down|and|ponder|affair|.\nAnd|thanks|to|Kline|'s|superbly|nuanced|performance|,|that|pondering|is|highly|pleasurable|.\nOriginality|ai|n't|on|the|menu|,|but|there|'s|never|a|dull|moment|in|the|giant|spider|invasion|comic|chiller|.\nWalter|Hill|'s|Undisputed|is|like|a|1940s|Warner|Bros.|.\nB|picture|,|and|I|mean|that|as|a|compliment|.\nThis|one|is|not|nearly|as|dreadful|as|expected|.\nIn|fact|,|it|'s|quite|fun|in|places|.\nWith|elements|cribbed|from|Lang|'s|Metropolis|,|Welles|'|Kane|,|and|Eisenstein|'s|Potemkin|,|the|true|wonder|of|Rintarô|'s|Metropolis|is|the|number|of|lasting|images|all|its|own|.\nA|biopic|about|Crane|'s|life|in|the|classic|tradition|but|evolves|into|what|has|become|of|us|all|in|the|era|of|video|.\nThe|best|of|the|Pierce|Brosnan|James|Bond|films|to|date|.\nThanks|to|a|small|star|with|big|heart|,|this|family|film|sequel|is|plenty|of|fun|for|all|.\nWhile|the|now|72-year-old|Robert|Evans|been|slowed|down|by|a|stroke|,|he|has|at|least|one|more|story|to|tell|:|his|own|.\nIt|'s|about|individual|moments|of|mood|,|and|an|aimlessness|that|'s|actually|sort|of|amazing|.\nThe|people|in|Jessica|are|so|recognizable|and|true|that|,|as|in|real|life|,|we|'re|never|sure|how|things|will|work|out|.\nA|tone|poem|of|transgression|.\nCreeps|you|out|in|high|style|,|even|if|Nakata|did|it|better|.\nRubbo|runs|through|a|remarkable|amount|of|material|in|the|film|'s|short|90|minutes|.\nVisually|engrossing|,|seldom|hammy|,|honorably|Mexican|and|burns|its|Kahlories|with|conviction|.\nThis|is|Christmas|Future|for|a|lot|of|baby|boomers|.\nDespite|a|quieter|middle|section|,|involving|Aragorn|'s|dreams|of|Arwen|,|this|is|even|better|than|The|Fellowship|.\nThere|are|scenes|of|cinematic|perfection|that|steal|your|heart|away|.\nSpider-Man|is|in|the|same|category|as|X-Men|-|occasionally|brilliant|but|mostly|average|,|showing|signs|of|potential|for|the|sequels|,|but|not|giving|us|much|this|time|around|.\nThe|obnoxious|title|character|provides|the|drama|that|gives|added|clout|to|this|doc|.\nAnyone|who|welcomes|a|dash|of|the|avant-garde|fused|with|their|humor|should|take|pleasure|in|this|crazed|,|joyous|romp|of|a|film|.\nThe|fun|of|the|movie|is|the|chance|it|affords|to|watch|Jackson|,|who|also|served|as|executive|producer|,|take|his|smooth|,|shrewd|,|powerful|act|abroad|.\nSaddled|with|an|unwieldy|cast|of|characters|and|angles|,|but|the|payoff|is|powerful|and|revelatory|.\nIt|'s|something|of|the|ultimate|Scorsese|film|,|with|all|the|stomach-turning|violence|,|colorful|New|York|gang|lore|and|other|hallmarks|of|his|personal|cinema|painted|on|their|largest-ever|historical|canvas|.\nMr.|Caine|and|Mr.|Fraser|are|the|whole|show|here|,|with|their|memorable|and|resourceful|performances|.\nA|frustrating|yet|deeply|watchable|melodrama|that|makes|you|think|it|'s|a|tougher|picture|than|it|is|.\nA|giddy|and|provocative|sexual|romp|that|has|something|to|say|.\n(|Russell|)|makes|good|B|movies|(|The|Mask|,|The|Blob|)|,|and|The|Scorpion|King|more|than|ably|meets|those|standards|.\nOtto-Sallies|has|a|real|filmmaker|'s|eye|.\nThis|is|a|smart|movie|that|knows|its|classical|music|,|knows|its|Freud|and|knows|its|Sade|.\nThe|film|has|an|infectious|enthusiasm|and|we|'re|touched|by|the|film|'s|conviction|that|all|life|centered|on|that|place|,|that|time|and|that|sport|.\nBeautifully|reclaiming|the|story|of|Carmen|and|recreating|it|an|in|an|African|idiom|.\nThe|camera|soars|above|the|globe|in|dazzling|panoramic|shots|that|make|the|most|of|the|large-screen|format|,|before|swooping|down|on|a|string|of|exotic|locales|,|scooping|the|whole|world|up|in|a|joyous|communal|festival|of|rhythm|.\nA|flawed|but|engrossing|thriller|.\nDemonstrates|the|unusual|power|of|thoughtful|,|subjective|filmmaking|.\nExpect|no|major|discoveries|,|nor|any|stylish|sizzle|,|but|the|film|sits|with|square|conviction|and|touching|good|sense|on|the|experience|of|its|women|.\nThe|success|of|Undercover|Brother|is|found|in|its|ability|to|spoof|both|black|and|white|stereotypes|equally|.\nThis|is|the|kind|of|subject|matter|that|could|so|easily|have|been|fumbled|by|a|lesser|filmmaker|,|but|Ayres|makes|the|right|choices|at|every|turn|.\nCox|creates|a|fluid|and|mesmerizing|sequence|of|images|to|match|the|words|of|Nijinsky|'s|diaries|.\nWhat|Bloody|Sunday|lacks|in|clarity|,|it|makes|up|for|with|a|great|,|fiery|passion|.\nIts|adult|themes|of|familial|separation|and|societal|betrayal|are|head|and|shoulders|above|much|of|the|director|'s|previous|popcorn|work|.\nDirector|Nancy|Savoca|'s|no-frills|record|of|a|show|forged|in|still-raw|emotions|captures|the|unsettled|tenor|of|that|post|9-11|period|far|better|than|a|more|measured|or|polished|production|ever|could|.\nThe|film|grows|on|you|.\nAnd|how|.\nOne|thing|you|have|to|give|them|credit|for|:|The|message|of|the|movie|is|consistent|with|the|messages|espoused|in|the|company|'s|previous|video|work|.\nHalloween|:|Resurrection|is|n't|exactly|quality|cinema|,|but|it|is|n't|nearly|as|terrible|as|it|cold|have|been|.\nAs|banal|as|the|telling|may|be|--|and|at|times|,|All|My|Loved|Ones|more|than|flirts|with|kitsch|--|the|tale|commands|attention|.\nRomantic|comedy|and|Dogme|95|filmmaking|may|seem|odd|bedfellows|,|but|they|turn|out|to|be|delightfully|compatible|here|.\nThe|most|wondrous|love|story|in|years|,|it|is|a|great|film|.\nSome|movies|suck|you|in|despite|their|flaws|,|and|Heaven|is|one|such|beast|.\nMy|Wife|Is|an|Actress|works|as|well|as|it|does|because|(|the|leads|)|are|such|a|companionable|couple|.\nWith|Spy|Kids|2|:|The|Island|of|Lost|Dreams|,|however|,|Robert|Rodriguez|adorns|his|family-film|plot|with|an|elegance|and|maturity|that|even|most|contemporary|adult|movies|are|lacking|.\nBased|on|Dave|Barry|'s|popular|book|of|the|same|name|,|the|movie|benefits|from|having|a|real|writer|plot|out|all|of|the|characters|'|moves|and|overlapping|story|.\nBouquet|gives|a|performance|that|is|masterly|.\nA|poignant|comedy|that|offers|food|for|thought|.\n...|a|series|of|tales|told|with|the|intricate|preciseness|of|the|best|short|story|writing|.\nIf|you|'re|content|with|a|clever|pseudo-bio|that|manages|to|have|a|good|time|as|it|doles|out|pieces|of|the|famous|director|'s|life|,|Eisenstein|delivers|.\nThis|filmed|Tosca|--|not|the|first|,|by|the|way|--|is|a|pretty|good|job|,|if|it|'s|filmed|Tosca|that|you|want|.\nI|'ll|stay|with|the|stage|versions|,|however|,|which|bite|cleaner|,|and|deeper|.\nWhile|the|path|may|be|familiar|,|first-time|director|Denzel|Washington|and|a|top-notch|cast|manage|to|keep|things|interesting|.\nAn|engaging|criminal|romp|that|will|have|viewers|guessing|just|who|'s|being|conned|right|up|to|the|finale|.\nThe|picture|runs|a|mere|84|minutes|,|but|it|'s|no|glance|.\nIt|'s|a|head-turner|--|thoughtfully|written|,|beautifully|read|and|,|finally|,|deeply|humanizing|.\nIt|asks|nothing|of|the|audience|other|than|to|sit|back|and|enjoy|a|couple|of|great|actors|hamming|it|up|.\nIt|is|as|uncompromising|as|it|is|nonjudgmental|,|and|makes|clear|that|a|prostitute|can|be|as|lonely|and|needy|as|any|of|the|clients|.\n``|Barbershop|''|is|a|good-hearted|ensemble|comedy|with|a|variety|of|quirky|characters|and|an|engaging|story|.\nTully|is|in|many|ways|the|perfect|festival|film|:|a|calm|,|self-assured|portrait|of|small|town|regret|,|love|,|duty|and|friendship|that|appeals|to|the|storytelling|instincts|of|a|slightly|more|literate|filmgoing|audience|.\nI|like|this|movie|a|lot|.\nI|like|that|Smith|,|he|'s|not|making|fun|of|these|people|,|he|'s|not|laughing|at|them|.\n...|the|implication|is|Kissinger|may|have|decided|that|--|when|it|comes|to|truncheoning|--|it|'s|better|to|give|than|to|receive|.\n`|What|'s|the|Russian|word|for|Wow|!?|'\nKiarostami|has|crafted|a|deceptively|casual|ode|to|children|and|managed|to|convey|a|tiny|sense|of|hope|.\nI|had|more|fun|watching|Spy|than|I|had|with|most|of|the|big|summer|movies|.\nWhat|Lee|does|so|marvelously|compelling|is|present|Brown|as|a|catalyst|for|the|struggle|of|black|manhood|in|restrictive|and|chaotic|America|...|sketchy|but|nevertheless|gripping|portrait|of|Jim|Brown|,|a|celebrated|wonder|in|the|spotlight\nMurder|by|Numbers|'|is|n't|a|great|movie|,|but|it|'s|a|perfectly|acceptable|widget|.\nFor|those|of|an|indulgent|,|slightly|sunbaked|and|summery|mind|,|Sex|and|Lucia|may|well|prove|diverting|enough|.\nWhat|(|Denis|)|accomplishes|in|his|chilling|,|unnerving|film|is|a|double|portrait|of|two|young|women|whose|lives|were|as|claustrophic|,|suffocating|and|chilly|as|the|attics|to|which|they|were|inevitably|consigned|.\nA|well-done|film|of|a|self-reflexive|,|philosophical|nature|.\nTexan|director|George|Ratliff|had|unlimited|access|to|families|and|church|meetings|,|and|he|delivers|fascinating|psychological|fare|.\nThe|rich|performances|by|Friel|--|and|especially|Williams|,|an|American|actress|who|becomes|fully|English|--|round|out|the|square|edges|.\nThe|new|Insomnia|is|a|surprisingly|faithful|remake|of|its|chilly|predecessor|,|and|when|it|does|elect|to|head|off|in|its|own|direction|,|it|employs|changes|that|fit|it|well|rather|than|ones|that|were|imposed|for|the|sake|of|commercial|sensibilities|.\nA|film|in|a|class|with|Spike|Lee|'s|masterful|Do|The|Right|Thing|.\nJagger|,|Stoppard|and|director|Michael|Apted|...|deliver|a|riveting|and|surprisingly|romantic|ride|.\nGreengrass|(|working|from|Don|Mullan|'s|script|)|forgoes|the|larger|socio-political|picture|of|the|situation|in|Northern|Ireland|in|favour|of|an|approach|that|throws|one|in|the|pulsating|thick|of|a|truly|frightening|situation|.\nA|thought-provoking|and|often-funny|drama|about|isolation|.\nWhatever|one|makes|of|its|political|edge|,|this|is|beautiful|filmmaking|from|one|of|French|cinema|'s|master|craftsmen|.\nMama|Africa|pretty|much|delivers|on|that|promise|.\nIt|does|give|you|a|peek|.\nThe|main|problem|being|that|it|'s|only|a|peek|.\nRoman|Polanski|'s|autobiographical|gesture|at|redemption|is|better|than|`|Shindler|'s|List|'|-|it|is|more|than|merely|a|Holocaust|movie|.\nA|perfectly|respectable|,|perfectly|inoffensive|,|easily|forgettable|film|.\nRomanek|'s|themes|are|every|bit|as|distinctive|as|his|visuals|.\nBeyond|the|cleverness|,|the|weirdness|and|the|pristine|camerawork|,|One|Hour|Photo|is|a|sobering|meditation|on|why|we|take|pictures|.\nSeeing|Seinfeld|at|home|as|he|watches|his|own|appearance|on|Letterman|with|a|clinical|eye|reminds|you|that|the|key|to|stand-up|is|to|always|make|it|look|easy|,|even|though|the|reality|is|anything|but|.\nSpeaks|eloquently|about|the|symbiotic|relationship|between|art|and|life|.\nThe|work|of|an|artist|tormented|by|his|heritage|,|using|his|storytelling|ability|to|honor|the|many|faceless|victims|.\nThe|audacity|to|view|one|of|Shakespeare|'s|better|known|tragedies|as|a|dark|comedy|is|,|by|itself|,|deserving|of|discussion|.\nThis|is|an|exercise|in|chilling|style|,|and|Twohy|films|the|sub|,|inside|and|out|,|with|an|eye|on|preserving|a|sense|of|mystery|.\nAn|uncomfortable|experience|,|but|one|as|brave|and|challenging|as|you|could|possibly|expect|these|days|from|American|cinema|.\nHailed|as|a|clever|exercise|in|neo-Hitchcockianism|,|this|clever|and|very|satisfying|picture|is|more|accurately|Chabrolian|.\nFunny|and|also|heartwarming|without|stooping|to|gooeyness|.\nAt|the|film|'s|centre|is|a|precisely|layered|performance|by|an|actor|in|his|mid-seventies|,|Michel|Piccoli|.\nThe|viewer|takes|great|pleasure|in|watching|the|resourceful|Molly|stay|a|step|ahead|of|her|pursuers|.\nWith|amazing|finesse|,|the|film|shadows|Heidi|'s|trip|back|to|Vietnam|and|the|city|where|her|mother|,|Mai|Thi|Kim|,|still|lives|.\nDirector|Charles|Stone|III|applies|more|detail|to|the|film|'s|music|than|to|the|story|line|;|what|'s|best|about|Drumline|is|its|energy|.\nA|heroic|tale|of|persistence|that|is|sure|to|win|viewers|'|hearts|.\nIt|'s|all|a|rather|shapeless|good|time|...\nhas|far|more|energy|,|wit|and|warmth|than|should|be|expected|from|any|movie|with|a|``|2|''|at|the|end|of|its|title|.\nA|little|better|than|Sorcerer|'s|Stone|.\nA|chilling|movie|without|oppressive|gore|.\nA|uniquely|sensual|metaphorical|dramatization|of|sexual|obsession|that|spends|a|bit|too|much|time|on|its|fairly|ludicrous|plot|.\nIf|you|like|peace|,|you|'ll|like|Promises|.\nBe|prepared|to|cling|to|the|edge|of|your|seat|,|tense|with|suspense|.\nThe|Ring|never|lets|you|off|the|hook|.\nThumbs|up|to|Paxton|for|not|falling|into|the|Hollywood|trap|and|making|a|vanity|project|with|nothing|new|to|offer|.\nAt|once|disarmingly|straightforward|and|strikingly|devious|.\nIf|you|like|quirky|,|odd|movies|and\\/or|the|ironic|,|here|'s|a|fun|one|.\nSensitive|ensemble|performances|and|good|period|reconstruction|add|up|to|a|moving|tragedy|with|some|buoyant|human|moments|.\nIt|'s|not|the|least|of|Afghan|tragedies|that|this|noble|warlord|would|be|consigned|to|the|dustbin|of|history|.\nIt|'s|a|lovely|,|sad|dance|highlighted|by|Kwan|'s|unique|directing|style|.\nThe|script|by|David|Koepp|is|perfectly|serviceable|and|because|he|gives|the|story|some|soul|...|he|elevates|the|experience|to|a|more|mythic|level|.\nThis|is|a|visually|stunning|rumination|on|love|,|memory|,|history|and|the|war|between|art|and|commerce|.\nShort-story|quaint|,|touchingly|mending|a|child|'s|pain|for|his|dead|mother|via|communication|with|an|old|woman|straight|out|of|Eudora|Welty|.\nIt|'s|always|fascinating|to|watch|Marker|the|essayist|at|work|.\nA|quiet|family|drama|with|a|little|bit|of|romance|and|a|dose|of|darkness|.\nThe|tasteful|little|revision|works|wonders|,|enhancing|the|cultural|and|economic|subtext|,|bringing|richer|meaning|to|the|story|'s|morals|.\nKosminsky|...|puts|enough|salt|into|the|wounds|of|the|tortured|and|self-conscious|material|to|make|it|sting|.\nOne|of|the|greatest|films|I|'ve|ever|seen|.\nIts|gentle|,|touching|story|creeps|into|your|heart|.\nAbout|as|big|a|crowdpleaser|as|they|possibly|come|.\nBound|to|appeal|to|women|looking|for|a|howlingly|trashy|time|.\nEven|these|tales|of|just|seven|children|seem|at|times|too|many|,|although|in|reality|they|are|not|enough|.\nEvery|child|'s|story|is|what|matters|.\nThis|film|can|only|point|the|way|--|but|thank|goodness|for|this|signpost|.\nA|poignant|and|gently|humorous|parable|that|loves|its|characters|and|communicates|something|rather|beautiful|about|human|nature|.\nReal|Women|Have|Curves|does|n't|offer|any|easy|answers|.\nVampire|epic|succeeds|as|spooky|action-packed|trash|of|the|highest|order|.\nOne|of|the|funniest|motion|pictures|of|the|year|,|but|...|also|one|of|the|most|curiously|depressing|.\nWhile|somewhat|less|than|it|might|have|been|,|the|film|is|a|good|one|,|and|you|'ve|got|to|hand|it|to|director|George|Clooney|for|biting|off|such|a|big|job|the|first|time|out|.\nLike|the|chilled|breath|of|oral|storytelling|frozen|onto|film|.\nA|charmer|from|Belgium|.\nA|wild|,|endearing|,|masterful|documentary|.\nJackie|Chan|movies|are|a|guilty|pleasure|-|he|'s|easy|to|like|and|always|leaves|us|laughing|.\nBrown|Sugar|signals|director|Rick|Famuyiwa|'s|emergence|as|an|articulate|,|grown-up|voice|in|African-American|cinema|.\nWith|exquisite|craftsmanship|...|Olivier|Assayas|has|fashioned|an|absorbing|look|at|provincial|bourgeois|French|society|.\nIt|'s|rare|for|any|movie|to|be|as|subtle|and|touching|as|The|Son|'s|Room|.\nIt|has|a|way|of|seeping|into|your|consciousness|,|with|lingering|questions|about|what|the|film|is|really|getting|at|.\nMaelstrom|is|a|deliberately|unsteady|mixture|of|stylistic|elements|.\n(|Leigh|)|has|a|true|talent|for|drawing|wrenching|performances|from|his|actors|(|improvised|over|many|months|)|and|for|conveying|the|way|tiny|acts|of|kindness|make|ordinary|life|survivable|.\n(|D|)|espite|its|familiar|subject|matter|,|Ice|Age|is|consistently|amusing|and|engrossing|...\nThe|ingenious|construction|(|adapted|by|David|Hare|from|Michael|Cunningham|'s|novel|)|constantly|flows|forwards|and|back|,|weaving|themes|among|three|strands|which|allow|us|to|view|events|as|if|through|a|prism\nAssured|,|glossy|and|shot|through|with|brittle|desperation|.\nThe|bottom|line|is|the|piece|works|brilliantly|.\nIt|was|only|a|matter|of|time|before|some|savvy|producer|saw|the|potential|success|inherent|in|the|mixture|of|Bullock|Bubble|and|Hugh|Goo|.\nIt|is|Scott|'s|convincing|portrayal|of|Roger|the|sad|cad|that|really|gives|the|film|its|oomph|.\nWhile|this|movie|,|by|necessity|,|lacks|Fellowship|'s|heart|,|Two|Towers|outdoes|its|spectacle|.\nMeyjes|...|has|done|his|homework|and|soaked|up|some|jazzy|new|revisionist|theories|about|the|origins|of|Nazi|politics|and|aesthetics|.\nAside|from|Rohmer|'s|bold|choices|regarding|point|of|view|,|The|Lady|and|the|Duke|represents|the|filmmaker|'s|lifelong|concern|with|formalist|experimentation|in|cinematic|art|.\nWhat|`|Dumb|and|Dumber|'|would|have|been|without|the|vulgarity|and|with|an|intelligent|,|life-affirming|script|.\n...|a|vivid|,|thoughtful|,|unapologetically|raw|coming-of-age|tale|full|of|sex|,|drugs|and|rock|'n'|roll|.\nYou|would|n't|want|to|live|waydowntown|,|but|it|is|a|hilarious|place|to|visit|.\nFilms|are|made|of|little|moments|.\nChanging|Lanes|tries|for|more|.\nIt|does|n't|reach|them|,|but|the|effort|is|gratefully|received|.\nWhen|the|movie|mixes|the|cornpone|and|the|Cosa|Nostra|,|it|finds|a|nice|rhythm|.\nThe|story|is|a|rather|simplistic|one|:|grief|drives|her|,|love|drives|him|,|and|a|second|chance|to|find|love|in|the|most|unlikely|place|-|it|struck|a|chord|in|me|.\nTerrific|casting|and|solid|execution|give|all|three|stories|life|.\nA|hard|look|at|one|man|'s|occupational|angst|and|its|subsequent|reinvention|,|a|terrifying|study|of|bourgeois|desperation|worthy|of|Claude|Chabrol|.\n(|Ramsay|)|visually|transforms|the|dreary|expanse|of|dead-end|distaste|the|characters|inhabit|into|a|poem|of|art|,|music|and|metaphor|.\nFrequent|flurries|of|creative|belly|laughs|and|genuinely|enthusiastic|performances|...|keep|the|movie|slaloming|through|its|hackneyed|elements|with|enjoyable|ease|.\nAt|its|best|,|this|is|grand-scale|moviemaking|for|a|larger-than-life|figure|,|an|artist|who|has|been|awarded|mythic|status|in|contemporary|culture|.\nThe|plot|of|the|comeback|curlers|is|n't|very|interesting|actually|,|but|what|I|like|about|Men|With|Brooms|and|what|is|kind|of|special|is|how|the|film|knows|what|'s|unique|and|quirky|about|Canadians|.\n10|minutes|into|the|film|you|'ll|be|white-knuckled|and|unable|to|look|away|.\nIt|'s|a|beautiful|film|,|full|of|elaborate|and|twisted|characters|-|and|it|'s|also|pretty|funny|.\nCould|this|be|the|first|major|studio|production|shot|on|video|tape|instead|of|film|?\nNot|since|Ghostbusters|has|a|film|used|Manhattan|'s|architecture|in|such|a|gloriously|goofy|way|.\nAs|tricky|and|satisfying|as|any|of|David|Mamet|'s|airless|cinematic|shell|games|.\nThe|universal|theme|of|becoming|a|better|person|through|love|has|never|been|filmed|more|irresistibly|than|in|`|Baran|.|'\nCube|'s|charisma|and|chemistry|compensate|for|corniness|and|cliche|.\nWith|lesser|talents|,|High|Crimes|would|be|entertaining|,|but|forgettable|.\nWith|Freeman|and|Judd|,|I|'ll|at|least|remember|their|characters|.\nAs|a|director|,|Paxton|is|surprisingly|brilliant|,|deftly|sewing|together|what|could|have|been|a|confusing|and|horrifying|vision|into|an|intense|and|engrossing|head-trip|.\nThe|film|is|filled|with|humorous|observations|about|the|general|absurdity|of|modern|life|as|seen|through|the|eyes|outsiders|,|but|deftly|manages|to|avoid|many|of|the|condescending|stereotypes|that|so|often|plague|films|dealing|with|the|mentally|ill|.\nDaughter|From|Danang|sticks|with|its|subjects|a|little|longer|and|tells|a|deeper|story\nA|coming-of-age|film|that|avoids|the|cartoonish|clichés|and|sneering|humor|of|the|genre|as|it|provides|a|fresh|view|of|an|old|type|--|the|uncertain|girl|on|the|brink|of|womanhood|.\nThe|faithful|will|enjoy|this|sometimes|wry|adaptation|of|V.S.|Naipaul|'s|novel|,|but|newcomers|may|find|themselves|stifling|a|yawn|or|two|during|the|first|hour|.\nA|distinguished|and|thoughtful|film|,|marked|by|acute|writing|and|a|host|of|splendid|performances|.\nBarry|convinces|us|he|'s|a|dangerous|,|secretly|unhinged|guy|who|could|easily|have|killed|a|president|because|it|made|him|feel|powerful|.\nTakes|you|by|the|face|,|strokes|your|cheeks|and|coos|beseechingly|at|you|:|slow|down|,|shake|off|your|tensions|and|take|this|picture|at|its|own|breezy|,|distracted|rhythms|.\nI|do|n't|feel|the|least|bit|ashamed|in|admitting|that|my|enjoyment|came|at|the|expense|of|seeing|justice|served|,|even|if|it|'s|a|dish|that|'s|best|served|cold|.\nIt|'s|a|smart|,|solid|,|kinetically-charged|spy|flick|worthy|of|a|couple|hours|of|summertime|and|a|bucket|of|popcorn|.\nNothing|overly|original|,|mind|you|,|but|solidly|entertaining|.\nChanging|Lanes|is|an|anomaly|for|a|Hollywood|movie|;|it|'s|a|well-written|and|occasionally|challenging|social|drama|that|actually|has|something|interesting|to|say|.\nborrows|a|bit|from|the|classics|``|Wait|Until|Dark|''|and|``|Extremities|''|...|But|in|terms|of|its|style|,|the|movie|is|in|a|class|by|itself|.\nBecause|Eight|Legged|Freaks|is|partly|an|homage|to|Them|,|Tarantula|and|other|low|-|budget|B-movie|thrillers|of|the|1950s|and|'60s|,|the|movie|is|a|silly|(|but|not|sophomoric|)|romp|through|horror|and|hellish|conditions|.\nPuts|a|refreshing|and|comical|spin|on|the|all-too-familiar|saga|of|the|contemporary|single|woman|.\nIf|you|grew|up|on|Scooby|--|you|'ll|love|this|movie|.\nMatthew|Lillard|is|born|to|play|Shaggy|!\nThough|filmed|partly|in|Canada|,|Paid|in|Full|has|clever|ways|of|capturing|inner-city|life|during|the|Reagan|years|.\n``|Spider-man|is|better|than|any|summer|blockbuster|we|had|to|endure|last|summer|,|and|hopefully|,|sets|the|tone|for|a|summer|of|good|stuff|.\nIf|you|'re|a|comic|fan|,|you|ca|n't|miss|it|.\nIf|you|'re|not|,|you|'ll|still|have|a|good|time|.|''\nThis|movie|has|a|strong|message|about|never|giving|up|on|a|loved|one|,|but|it|'s|not|an|easy|movie|to|watch|and|will|probably|disturb|many|who|see|it|.\nThe|movie|is|a|trove|of|delights|.\nExcellent|performances|from|Jacqueline|Bisset|and|Martha|Plimpton|grace|this|deeply|touching|melodrama|.\nIn|a|summer|of|clones|,|Harvard|Man|is|something|rare|and|riveting|:|a|wild|ride|that|relies|on|more|than|special|effects|.\nWhile|the|humor|is|recognizably|Plympton|,|he|has|actually|bothered|to|construct|a|real|story|this|time|.\nJolting|into|Charleston|rhythms|,|the|story|has|the|sizzle|of|old|news|that|has|finally|found|the|right|vent|(|accurate|?\nWho|cares|?|)|.\nAn|overly|melodramatic|but|somewhat|insightful|French|coming-of-age|film|...\nMost|thrillers|send|audiences|out|talking|about|specific|scary|scenes|or|startling|moments|;|``|Frailty|''|leaves|us|with|the|terrifying|message|that|the|real|horror|may|be|waiting|for|us|at|home|.\nClose|enough|in|spirit|to|its|freewheeling|trash-cinema|roots|to|be|a|breath|of|fresh|air|.\nSkillfully|weaves|both|the|elements|of|the|plot|and|a|powerfully|evocative|mood|combining|heated|sexuality|with|a|haunting|sense|of|malaise|.\nDamon|brings|the|proper|conviction|to|his|role|as|(|Jason|Bourne|)|.\nFor|the|most|part|,|it|works|beautifully|as|a|movie|without|sacrificing|the|integrity|of|the|opera|.\nAs|played|by|Ryan|Gosling|,|Danny|is|a|frighteningly|fascinating|contradiction|.\nThis|is|not|Chabrol|'s|best|,|but|even|his|lesser|works|outshine|the|best|some|directors|can|offer|.\nDespite|its|flaws|,|Crazy|as|Hell|marks|an|encouraging|new|direction|for|La|Salle|.\nYou|'ll|end|up|moved|.\nIf|you|ever|wondered|what|it|would|be|like|to|be|smack|in|the|middle|of|a|war|zone|armed|with|nothing|but|a|camera|,|this|Oscar-nominated|documentary|takes|you|there|.\nThe|Woodman|seems|to|have|directly|influenced|this|girl-meets-girl|love|story|,|but|even|more|reassuring|is|how|its|makers|actually|seem|to|understand|what|made|Allen|'s|romantic|comedies|so|pertinent|and|enduring|.\nI|loved|the|look|of|this|film|.\nThose|with|a|modicum|of|patience|will|find|in|these|characters|'|foibles|a|timeless|and|unique|perspective|.\nBeautiful|to|watch|and|holds|a|certain|charm|.\n13|Conversations|may|be|a|bit|too|enigmatic|and|overly|ambitious|to|be|fully|successful|,|but|Sprecher|and|her|screenwriting|partner|and|sister|,|Karen|Sprecher|,|do|n't|seem|ever|to|run|out|of|ideas|.\nThe|movie|is|our|story|as|much|as|it|is|Schmidt|'s|,|no|matter|if|it|'s|viewed|as|a|self-reflection|or|cautionary|tale|.\nFoster|breathes|life|into|a|roll|that|could|have|otherwise|been|bland|and|run|of|the|mill|.\nQuitting|offers|piercing|domestic|drama|with|spikes|of|sly|humor|.\nSome|people|want|the|ol'|ball-and-chain|and|then|there|are|those|who|just|want|the|Ball|and|Chain|.\n(|Barry|)|gives|Assassin|a|disquieting|authority|.\nIt|'s|refreshing|to|see|a|romance|this|smart|.\nAt|its|best|(|and|it|does|have|some|very|funny|sequences|)|Looking|for|Leonard|reminds|you|just|how|comically|subversive|silence|can|be|.\nAs|improbable|as|this|premise|may|seem|,|Abbass|'s|understated|,|shining|performance|offers|us|the|sense|that|on|some|elemental|level|,|Lilia|deeply|wants|to|break|free|of|her|old|life|.\nAnyone|who|ever|fantasized|about|space|travel|but|ca|n't|afford|the|$|20|million|ticket|to|ride|a|Russian|rocket|should|catch|this|IMAX|offering|.\n``|The|turntable|is|now|outselling|the|electric|guitar|...|''\nTransforms|one|of|(|Shakespeare|'s|)|deepest|tragedies|into|a|smart|new|comedy|.\nAn|intelligent|and|deeply|felt|work|about|impossible|,|irrevocable|choices|and|the|price|of|making|them|.\nIt|may|sound|like|a|mere|disease-of|-|the-week|TV|movie|,|but|A|Song|For|Martin|is|made|infinitely|more|wrenching|by|the|performances|of|real-life|spouses|Seldahl|and|Wollter|.\nSayles|is|making|a|statement|about|the|inability|of|dreams|and|aspirations|to|carry|forward|into|the|next|generation|.\nAs|Antonia|is|assimilated|into|this|newfangled|community|,|the|film|settles|in|and|becomes|compulsively|watchable|in|a|guilty-pleasure|,|daytime-drama|sort|of|fashion|.\nevery|once|in|a|while|,|a|movie|will|come|along|that|turns|me|into|that|annoying|specimen|of|humanity|that|I|usually|dread|encountering|the|most|-|The|Fanboy\nOn|its|own|staggeringly|unoriginal|terms|,|this|gender-bending|comedy|is|generally|quite|funny|.\nIt|'s|never|dull|and|always|looks|good|.\nThe|tonal|shifts|are|jolting|,|and|though|Wen|'s|messages|are|profound|and|thoughtfully|delivered|,|more|thorough|transitions|would|have|made|the|film|more|cohesive|.\nAs|commander-in-chief|of|this|film|,|Bigelow|demonstrates|a|breadth|of|vision|and|an|attention|to|detail|that|propels|her|into|the|upper|echelons|of|the|directing|world|.\nWith|wit|and|empathy|to|spare|,|waydowntown|acknowledges|the|silent|screams|of|workaday|inertia|but|stops|short|of|indulging|its|characters|'|striving|solipsism|.\nAll|of|it|works|smoothly|under|the|direction|of|Spielberg|,|who|does|a|convincing|impersonation|here|of|a|director|enjoying|himself|immensely|.\nThe|kind|of|sweet-and-sour|insider|movie|that|film|buffs|will|eat|up|like|so|much|gelati|.\nWith|`|Bowling|for|Columbine|,|'|Michael|Moore|gives|us|the|perfect|starting|point|for|a|national|conversation|about|guns|,|violence|,|and|fear|.\nOne|of|the|year|'s|most|weirdly|engaging|and|unpredictable|character|pieces|.\nOne|of|the|best|inside-show-biz|yarns|ever|.\nNone|of|his|actors|stand|out|,|but|that|'s|less|of|a|problem|here|than|it|would|be|in|another|film|:|Characterization|matters|less|than|atmosphere|.\nA|terrifically|entertaining|specimen|of|Spielbergian|sci-fi|.\nA|rare|and|lightly|entertaining|look|behind|the|curtain|that|separates|comics|from|the|people|laughing|in|the|crowd|.\nSolondz|is|so|intent|on|hammering|home|his|message|that|he|forgets|to|make|it|entertaining|.\nWhatever|heartwarming|scene|the|impressively|discreet|filmmakers|may|have|expected|to|record|with|their|mini|DV|,|they|show|a|remarkable|ability|to|document|both|sides|of|this|emotional|car-wreck|.\nIt|establishes|its|ominous|mood|and|tension|swiftly|,|and|if|the|suspense|never|rises|to|a|higher|level|,|it|is|nevertheless|maintained|throughout|.\nAlthough|What|Time|offers|Tsai|'s|usual|style|and|themes|,|it|has|a|more|colorful|,|more|playful|tone|than|his|other|films|.\nA|moving|and|stark|reminder|that|the|casualties|of|war|reach|much|further|than|we|imagine|.\nA|thoroughly|engaging|,|surprisingly|touching|British|comedy|.\nA|sloppy|,|amusing|comedy|that|proceeds|from|a|stunningly|unoriginal|premise|.\n...|a|rich|and|intelligent|film|that|uses|its|pulpy|core|conceit|to|probe|questions|of|attraction|and|interdependence|and|how|the|heart|accomodates|practical|needs|.\nIt|is|an|unstinting|look|at|a|collaboration|between|damaged|people|that|may|or|may|not|qual\ncaptures|that|perverse|element|of|the|Kafkaesque|where|identity|,|overnight|,|is|robbed|and|replaced|with|a|persecuted|``|other|.|''\nThe|actors|are|simply|too|good|,|and|the|story|too|intriguing|,|for|technical|flaws|to|get|in|the|way|.\nAn|estrogen|opera|so|intensely|feminine|that|it|serves|as|the|antidote|(|and|cannier|doppelganger|)|to|Diesel|'s|XXX|flex-a-thon|.\nImamura|has|said|that|Warm|Water|Under|a|Red|Bridge|is|a|poem|to|the|enduring|strengths|of|women|.\nIt|may|also|be|the|best|sex|comedy|about|environmental|pollution|ever|made|.\nIt|'s|a|ripper|of|a|yarn|and|I|for|one|enjoyed|the|thrill|of|the|chill|.\nNaomi|Watts|is|terrific|as|Rachel|;|her|petite|frame|and|vulnerable|persona|emphasising|her|plight|and|isolation|.\nA|family|film|that|contains|some|hefty|thematic|material|on|time|,|death|,|eternity|,|and|what|is|needed|to|live|a|rich|and|full|life|.\nWith|Dickens|'|words|and|writer-director|Douglas|McGrath|'s|even-toned|direction|,|a|ripping|good|yarn|is|told|.\nExactly|what|its|title|implies|:|lusty|,|boisterous|and|utterly|charming|.\nThe|film|is|darkly|funny|in|its|observation|of|just|how|much|more|grueling|and|time-consuming|the|illusion|of|work|is|than|actual|work|.\nA|smart|,|compelling|drama|.\nA|must-see|for|fans|of|thoughtful|war|films|and|those|interested|in|the|sights|and|sounds|of|battle|.\nI|found|myself|liking|the|film|,|though|in|this|case|one|man|'s|treasure|could|prove|to|be|another|man|'s|garbage|.\n...|Rogers|'s|mouth|never|stops|shut|about|the|war|between|the|sexes|and|how|to|win|the|battle|.\nDeliberately|and|skillfully|uses|ambiguity|to|suggest|possibilities|which|imbue|the|theme|with|added|depth|and|resonance|.\nIt|'s|all|entertaining|enough|,|but|do|n't|look|for|any|hefty|anti-establishment|message|in|what|is|essentially|a|whip-crack|of|a|buddy|movie|that|ends|with|a|whimper|.\nNicholson|'s|understated|performance|is|wonderful|.\nAs|Warren|he|stumbles|in|search|of|all|the|emotions|and|life|experiences|he|'s|neglected|over|the|years|.\nDespite|its|old-hat|set-up|and|predictable|plot|,|Empire|still|has|enough|moments|to|keep|it|entertaining|.\nAnother|entertaining|romp|from|Robert|Rodriguez|.\nIt|'s|not|a|classic|spy-action|or|buddy|movie|,|but|it|'s|entertaining|enough|and|worth|a|look|.\nI|am|more|offended|by|his|lack|of|faith|in|his|audience|than|by|anything|on|display|here|.\nA|sharp|satire|of|desperation|and|cinematic|deception|.\nTsai|convincingly|paints|a|specifically|urban|sense|of|disassociation|here|.\nIf|you|can|swallow|its|absurdities|and|crudities|Lagaan|really|is|enormously|good|fun|.\nAn|unorthodox|little|film|noir|organized|crime|story|that|includes|one|of|the|strangest|love|stories|you|will|ever|see|.\nA|pleasing|,|often-funny|comedy|.\n(|A|)|rare|movie|that|makes|us|re-assess|the|basis|for|our|lives|and|evaluate|what|is|truly|ours|in|a|world|of|meaningless|activity|.\nAll|three|actresses|are|simply|dazzling|,|particularly|Balk|,|who|'s|finally|been|given|a|part|worthy|of|her|considerable|talents|.\nAn|Asian|neo-realist|treasure|.\nPlummer|steals|the|show|without|resorting|to|camp|as|Nicholas|'|wounded|and|wounding|Uncle|Ralph|.\nIt|'s|a|great|performance|and|a|reminder|of|Dickens|'|grandeur|.\n...|less|a|story|than|an|inexplicable|nightmare|,|right|down|to|the|population|'s|shrugging|acceptance|to|each|new|horror|.\nI|am|highly|amused|by|the|idea|that|we|have|come|to|a|point|in|society|where|it|has|been|deemed|important|enough|to|make|a|film|in|which|someone|has|to|be|hired|to|portray|Richard|Dawson|.\nA|compassionate|,|moving|portrait|of|an|American|(|and|an|America|)|always|reaching|for|something|just|outside|his|grasp|.\nAn|original|little|film|about|one|young|woman|'s|education|.\nThe|film|is|about|the|relationships|rather|than|about|the|outcome|.\nAnd|it|sees|those|relationships|,|including|that|between|the|son|and|his|wife|,|and|the|wife|and|the|father|,|and|between|the|two|brothers|,|with|incredible|subtlety|and|acumen|.\nOne|of|those|terrific|documentaries|that|collect|a|bunch|of|people|who|are|enthusiastic|about|something|and|then|figures|out|how|to|make|us|share|their|enthusiasm|.\nAn|instance|of|an|old|dog|not|only|learning|but|inventing|a|remarkable|new|trick|.\nRodriguez|has|the|chops|of|a|smart-aleck|film|school|brat|and|the|imagination|of|a|big|kid|...\nAmy|and|Matthew|have|a|bit|of|a|phony|relationship|,|but|the|film|works|in|spite|of|it|.\nGarcia|and|the|other|actors|help|make|the|wobbly|premise|work|.\nIt|'s|surprisingly|decent|,|particularly|for|a|tenth|installment|in|a|series|.\nA|fascinating|,|unnerving|examination|of|the|delusions|of|one|unstable|man|.\nIt|'s|no|accident|that|The|Accidental|Spy|is|a|solid|action|pic|that|returns|the|martial|arts|master|to|top|form|.\nLeave|it|to|the|French|to|truly|capture|the|terrifying|angst|of|the|modern|working|man|without|turning|the|film|into|a|cheap|thriller|,|a|dumb|comedy|or|a|sappy|melodrama|.\nThe|director|,|Mark|Pellington|,|does|a|terrific|job|conjuring|up|a|sinister|,|menacing|atmosphere|though|unfortunately|all|the|story|gives|us|is|flashing|red|lights|,|a|rattling|noise|,|and|a|bump|on|the|head|.\nHeartwarming|here|relies|less|on|forced|air|than|on|Petter|Næss|'|delicate|,|clever|direction|...|and|a|wonderful|,|imaginative|script|by|Axel|Hellstenius|.\nMakes|the|case|for|a|strong|education|and|good|teachers|being|more|valuable|in|the|way|they|help|increase|an|average|student|'s|self-esteem|,|and|not|strictly|in|the|knowledge|imparted|.\nSteers|refreshingly|clear|of|the|usual|cliches|.\n``|Home|Movie|''|is|a|sweet|treasure|and|something|well|worth|your|time|.\nHighly|recommended|viewing|for|its|courage|,|ideas|,|technical|proficiency|and|great|acting|.\nThe|movie|'s|thesis|--|elegant|technology|for|the|masses|--|is|surprisingly|refreshing|.\nScott|delivers|a|terrific|performance|in|this|fascinating|portrait|of|a|modern|Lothario|.\n...|Wallace|is|smart|to|vary|the|pitch|of|his|movie|,|balancing|deafening|battle|scenes|with|quieter|domestic|scenes|of|women|back|home|receiving|War|Department|telegrams|.\nCombines|sharp|comedy|,|old-fashioned|monster|movie|atmospherics|,|and|genuine|heart|to|create|a|film|that|'s|not|merely|about|kicking|undead|\\*\\*\\*|,|but|also|about|dealing|with|regret|and|,|ultimately|,|finding|redemption|.\nWhile|most|films|these|days|are|about|nothing|,|this|film|seems|to|be|about|everything|that|'s|plaguing|the|human|spirit|in|a|relentlessly|globalizing|world|.\nMarshall|puts|a|suspenseful|spin|on|standard|horror|flick|formula|.\nAs|lively|an|account|as|Seinfeld|is|deadpan|.\nThough|Lan|Yu|lacks|a|sense|of|dramatic|urgency|,|the|film|makes|up|for|it|with|a|pleasing|verisimilitude|.\nYou|may|leave|the|theater|with|more|questions|than|answers|,|but|darned|if|your|toes|wo|n't|still|be|tapping|.\nTake|any|12-year-old|boy|to|see|this|picture|,|and|he|'ll|be|your|slave|for|a|year|.\nBut|this|is|not|a|movie|about|an|inhuman|monster|;|it|'s|about|a|very|human|one|.\nAt|times|THE|GUYS|taps|into|some|powerful|emotions|,|but|this|kind|of|material|is|more|effective|on|stage|.\nIt|'s|not|a|motion|picture|;|it|'s|an|utterly|static|picture|.\nWhat|makes|it|worth|watching|is|Quaid|'s|performance|.\nSoderbergh|skims|the|fat|from|the|1972|film|.\nWhat|'s|left|is|a|rich|stew|of|longing|.\nIt|'s|the|brilliant|surfing|photography|bringing|you|right|inside|the|massive|waves|that|lifts|Blue|Crush|into|one|of|the|summer|'s|most|pleasurable|movies|.\nMore|of|the|same|from|Taiwanese|auteur|Tsai|Ming-liang|,|which|is|good|news|to|anyone|who|'s|fallen|under|the|sweet|,|melancholy|spell|of|this|unique|director|'s|previous|films|.\nHatfield|and|Hicks|make|the|oddest|of|couples|,|and|in|this|sense|the|movie|becomes|a|study|of|the|gambles|of|the|publishing|world|,|offering|a|case|study|that|exists|apart|from|all|the|movie|'s|political|ramifications|.\nBest|of|all|is|Garcia|,|who|perfectly|portrays|the|desperation|of|a|very|insecure|man|.\nThe|filmmakers|try|to|balance|pointed|,|often|incisive|satire|and|unabashed|sweetness|,|with|results|that|are|sometimes|bracing|,|sometimes|baffling|and|quite|often|,|and|in|unexpected|ways|,|touching|.\nA|sobering|and|powerful|documentary|about|the|most|severe|kind|of|personal|loss|:|rejection|by|one|'s|mother|.\nOften|overwrought|and|at|times|positively|irritating|,|the|film|turns|into|an|engrossing|thriller|almost|in|spite|of|itself|.\nHumorous|and|heartfelt|,|Douglas|McGrath|'s|version|of|`|Nicholas|Nickleby|'|left|me|feeling|refreshed|and|hopeful|.\nNot|many|movies|have|that|kind|of|impact|on|me|these|days|.\nA|poignant|lyricism|runs|through|Balzac|and|the|Little|Chinese|Seamstress|that|transforms|this|story|about|love|and|culture|into|a|cinematic|poem|.\nThis|is|SO|De|Palma|.\nIf|you|love|him|,|you|'ll|like|it|.\nIf|you|do|n't|...|well|,|skip|to|another|review|.\nRouge|is|less|about|a|superficial|midlife|crisis|than|it|is|about|the|need|to|stay|in|touch|with|your|own|skin|,|at|18|or|80|.\nThe|moral|shrapnel|and|mental|shellshock|will|linger|long|after|this|film|has|ended|.\nUnfolds|in|a|series|of|achronological|vignettes|whose|cumulative|effect|is|chilling|.\nThe|movie|enters|a|realm|where|few|non-porn|films|venture|,|and|comes|across|as|darkly|funny|,|energetic|,|and|surprisingly|gentle|.\nAlthough|the|subject|matter|may|still|be|too|close|to|recent|national|events|,|the|film|works|-|mostly|due|to|its|superior|cast|of|characters|.\nIt|'s|not|going|to|be|everyone|'s|bag|of|popcorn|,|but|it|definitely|gives|you|something|to|chew|on|.\nHuppert|and|Girardot|give|performances|of|exceptional|honesty|.\nIt|has|that|rare|quality|of|being|able|to|creep|the|living|hell|out|of|you|...\nA|cautionary|tale|about|the|grandiosity|of|a|college|student|who|sees|himself|as|impervious|to|a|fall|.\nAn|infinitely|wittier|version|of|the|Home|Alone|formula|.\nFeardotcom|'s|thrills|are|all|cheap|,|but|they|mostly|work|.\n(|Hayek|)|throws|herself|into|this|dream|Hispanic|role|with|a|teeth-clenching|gusto|,|she|strikes|a|potent|chemistry|with|Molina|and|she|gradually|makes|us|believe|she|is|Kahlo|.\nMr.|Deeds|is|,|as|comedy|goes|,|very|silly|--|and|in|the|best|way|.\nYou|could|love|Safe|Conduct|(|Laissez|Passer|)|for|being|a|subtitled|French|movie|that|is|170|minutes|long|.\nYou|could|hate|it|for|the|same|reason|.\nWith|We|Were|Soldiers|,|Hollywood|makes|a|valiant|attempt|to|tell|a|story|about|the|Vietnam|War|before|the|pathology|set|in|.\n`|Moore|is|like|a|progressive|bull|in|a|china|shop|,|a|provocateur|crashing|into|ideas|and|special-interest|groups|as|he|slaps|together|his|own|brand|of|liberalism|.|'\nBroomfield|reveals|an|ironic|manifestation|of|institutionalized|slavery|that|ties|a|black-owned|record|label|with|a|white-empowered|police|force|.\nAt|just|over|an|hour|,|Home|Movie|will|leave|you|wanting|more|,|not|to|mention|leaving|you|with|some|laughs|and|a|smile|on|your|face|.\nStuart|'s|poor-me|persona|needs|a|whole|bunch|of|Snowball|'s|cynicism|to|cut|through|the|sugar|coating|.\nBut|once|the|falcon|arrives|in|the|skies|above|Manhattan|,|the|adventure|is|on|red|alert|.\nThere|is|greatness|here|.\nBoasts|enough|funny|dialogue|and|sharp|characterizations|to|be|mildly|amusing|.\nDirector|Juan|Jose|Campanella|could|have|turned|this|into|an|Argentine|retread|of|``|Iris|''|or|``|American|Beauty|,|''|but|instead|pulls|a|little|from|each|film|and|creates|something|more|beautiful|than|either|of|those|films|.\nIf|you|love|the|music|,|and|I|do|,|its|hard|to|imagine|having|more|fun|watching|a|documentary|...\nNakata|'s|technique|is|to|imply|terror|by|suggestion|,|rather|than|the|overuse|of|special|effects|.\n``|13|Conversations|About|One|Thing|''|is|an|intelligent|flick|that|examines|many|different|ideas|from|happiness|to|guilt|in|an|intriguing|bit|of|storytelling|.\nSatin|Rouge|is|not|a|new|,|or|inventive|,|journey|,|but|it|'s|encouraging|to|see|a|three-dimensional|,|average|,|middle-aged|woman|'s|experience|of|self-discovery|handled|with|such|sensitivity|.\nThough|an|important|political|documentary|,|this|does|not|really|make|the|case|the|Kissinger|should|be|tried|as|a|war|criminal|.\nCannon|'s|confidence|and|laid-back|good|spirits|are|,|with|the|drumming|routines|,|among|the|film|'s|saving|graces|.\nIn|its|understanding|,|often|funny|way|,|it|tells|a|story|whose|restatement|is|validated|by|the|changing|composition|of|the|nation|.\nShe|may|not|be|real|,|but|the|laughs|are|.\nA|fiercely|clever|and|subtle|film|,|capturing|the|precarious|balance|between|the|extravagant|confidence|of|the|exiled|aristocracy|and|the|cruel|earnestness|of|the|victorious|revolutionaries|.\nOK|arthouse|.\nThe|power|of|this|script|,|and|the|performances|that|come|with|it|,|is|that|the|whole|damned|thing|did|n't|get|our|moral|hackles|up|.\nThe|movie|itself|is|far|from|disappointing|,|offering|an|original|take|on|courtroom|movies|,|a|few|nifty|twists|that|are|so|crucial|to|the|genre|and|another|first-rate|performance|by|top-billed|star|Bruce|Willis|.\nAbout|Schmidt|is|undoubtedly|one|of|the|finest|films|of|the|year|.\nIf|you|'re|not|deeply|touched|by|this|movie|,|check|your|pulse|.\nThe|charm|of|Revolution|OS|is|rather|the|way|it|introduces|you|to|new|,|fervently|held|ideas|and|fanciful|thinkers|.\nUntil|its|final|minutes|this|is|a|perceptive|study|of|two|families|in|crisis|--|and|of|two|girls|whose|friendship|is|severely|tested|by|bad|luck|and|their|own|immaturity|.\nOffers|the|flash|of|rock|videos|fused|with|solid|performances|and|eerie|atmosphere|.\nFilmmakers|Dana|Janklowicz-Mann|and|Amir|Mann|area|headed|east|,|Far|East|,|in|retelling|a|historically|significant|,|and|personal|,|episode|detailing|how|one|international|city|welcomed|tens|of|thousands|of|German|Jewish|refugees|while|the|world|'s|democracie\nFor|all|its|problems|...|The|Lady|and|the|Duke|surprisingly|manages|never|to|grow|boring|...|which|proves|that|Rohmer|still|has|a|sense|of|his|audience|.\nAn|edifying|glimpse|into|the|wit|and|revolutionary|spirit|of|these|performers|and|their|era|.\nCraig|Bartlett|and|director|Tuck|Tucker|should|be|commended|for|illustrating|the|merits|of|fighting|hard|for|something|that|really|matters|.\nThe|film|is|saved|from|are|n't|-|kids-cute|sentimentality|by|a|warmth|that|is|n't|faked|and|a|stately|sense|of|composition|.\nThis|is|one|of|the|year|'s|best|films|.\nA|fleet-footed|and|pleasingly|upbeat|family|diversion|.\nSorvino|is|delightful|in|the|central|role|.\nShe|nearly|glows|with|enthusiasm|,|sensuality|and|a|conniving|wit|.\nIt|'s|immensely|ambitious|,|different|than|anything|that|'s|been|done|before|and|amazingly|successful|in|terms|of|what|it|'s|trying|to|do|.\nThe|story|,|once|it|gets|rolling|,|is|nothing|short|of|a|great|one|.\nGreat|performances|,|stylish|cinematography|and|a|gritty|feel|help|make|Gangster|No.|1|a|worthwhile|moviegoing|experience|.\n``|Mr.|Deeds|''|is|suitable|summer|entertainment|that|offers|escapism|without|requiring|a|great|deal|of|thought|.\nIt|'s|an|ambitious|film|,|and|as|with|all|ambitious|films|,|it|has|some|problems|.\nBut|on|the|whole|,|you|'re|gonna|like|this|movie|.\nChaiken|ably|balances|real-time|rhythms|with|propulsive|incident|.\nThis|is|an|extraordinary|film|,|not|least|because|it|is|Japanese|and|yet|feels|universal|.\nIn|a|summer|overrun|with|movies|dominated|by|CGI|aliens|and|super|heroes|,|it|revigorates|the|mind|to|see|a|feature|that|concentrates|on|people|,|a|project|in|which|the|script|and|characters|hold|sway|.\nThere|'s|just|something|about|watching|a|squad|of|psychopathic|underdogs|whale|the|tar|out|of|unsuspecting|lawmen|that|reaches|across|time|and|distance|.\nA|funny|and|touching|film|that|is|gorgeously|acted|by|a|British|cast|to|rival|Gosford|Park|'s|.\nThere|'s|nothing|more|satisfying|during|a|summer|of|event|movies|than|a|spy|thriller|like|The|Bourne|Identity|that|'s|packed|with|just|as|much|intelligence|as|action|.\nI|'m|not|generally|a|fan|of|vegetables|but|this|batch|is|pretty|cute|.\nQutting|may|be|a|flawed|film|,|but|it|is|nothing|if|not|sincere|.\nBeautifully|crafted|,|engaging|filmmaking|that|should|attract|upscale|audiences|hungry|for|quality|and|a|nostalgic|,|twisty|yarn|that|will|keep|them|guessing|.\nA|thoughtful|and|surprisingly|affecting|portrait|of|a|screwed-up|man|who|dared|to|mess|with|some|powerful|people|,|seen|through|the|eyes|of|the|idealistic|kid|who|chooses|to|champion|his|ultimately|losing|cause|.\nA|cultural|wildcard|experience|:|wacky|,|different|,|unusual|,|even|nutty|.\nDaughter|From|Danang|reveals|that|efforts|toward|closure|only|open|new|wounds|.\nIt|does|n't|flinch|from|its|unsettling|prognosis|,|namely|,|that|the|legacy|of|war|is|a|kind|of|perpetual|pain|.\nFor|most|of|its|footage|,|the|new|thriller|proves|that|director|M.|Night|Shyamalan|can|weave|an|eerie|spell|and|that|Mel|Gibson|can|gasp|,|shudder|and|even|tremble|without|losing|his|machismo|.\nThis|is|not|an|easy|film|.\nBut|it|could|be|,|by|its|art|and|heart|,|a|necessary|one|.\nA|very|good|film|sits|in|the|place|where|a|masterpiece|should|be|.\n...|spellbinding|fun|and|deliciously|exploitative|.\nIt|'s|Jagger|'s|bone-dry|,|mournfully|brittle|delivery|that|gives|the|film|its|bittersweet|bite|.\nImpossible|as|it|may|sound|,|this|film|'s|heart|is|even|more|embracing|than|Monty|,|if|only|because|it|accepts|nasty|behavior|and|severe|flaws|as|part|of|the|human|condition|.\nDespite|the|predictable|parent|vs.|child|coming-of-age|theme|,|first-class|,|natural|acting|and|a|look|at|``|the|real|Americans|''|make|this|a|charmer|.\nOne|of|the|smarter|offerings|the|horror|genre|has|produced|in|recent|memory|,|even|if|it|'s|far|tamer|than|advertised|.\nOne|of|recent|memory|'s|most|thoughtful|films|about|art|,|ethics|,|and|the|cost|of|moral|compromise|.\nthe|film|does|n't|sustain|its|initial|promise|with|a|jarring|,|new-agey|tone|creeping|into|the|second|half\nBlade|II|is|as|estrogen-free|as|movies|get|,|so|you|might|want|to|leave|your|date|behind|for|this|one|,|or|she|'s|gonna|make|you|feel|like|you|owe|her|big-time|.\nThe|message|is|that|even|the|most|unlikely|can|link|together|to|conquer|all|kinds|of|obstacles|,|whether|they|be|of|nature|,|of|man|or|of|one|another|.\nMany|a|parent|and|their|teen|(|or|preteen|)|kid|could|bond|while|watching|A|Walk|To|Remember|.\nSo|could|young|romantics|out|on|a|date|.\nAll|leather|pants|&|augmented|boobs|,|Hawn|is|hilarious|as|she|tries|to|resuscitate|the|fun-loving|libertine|lost|somewhere|inside|the|conservative|,|handbag-clutching|Sarandon|.\nThe|members|manage|to|pronounce|KOK|exactly|as|you|think|they|might|,|thus|giving|the|cast|ample|opportunity|to|use|that|term|as|often|as|possible|.\nIt|'s|very|Beavis|and|Butthead|,|yet|always|seems|to|elicit|a|chuckle|.\nWhile|this|gentle|and|affecting|melodrama|will|have|luvvies|in|raptures|,|it|'s|far|too|slight|and|introspective|to|appeal|to|anything|wider|than|a|niche|audience|.\nChicago|offers|much|colorful|eye|candy|,|including|the|spectacle|of|Gere|in|his|dancing|shoes|,|hoofing|and|crooning|with|the|best|of|them|.\nA|difficult|but|worthy|film|that|bites|off|more|than|it|can|chew|by|linking|the|massacre|of|Armenians|in|1915|with|some|difficult|relationships|in|the|present|.\nBy|and|large|this|is|Mr.|Kilmer|'s|movie|,|and|it|'s|his|strongest|performance|since|The|Doors|.\nSome|of|the|most|ravaging|,|gut-wrenching|,|frightening|war|scenes|since|``|Saving|Private|Ryan|''|have|been|recreated|by|John|Woo|in|this|little-known|story|of|Native|Americans|and|their|role|in|the|second|great|war|.\nA|charming|but|slight|comedy|.\nHenry|Bean|'s|thoughtful|screenplay|provides|no|easy|answers|,|but|offers|a|compelling|investigation|of|faith|versus|intellect\nA|great|cast|and|a|wonderful|but|sometimes|confusing|flashback|movie|about|growing|up|in|a|dysfunctional|family|.\nPlaying|a|role|of|almost|Bergmanesque|intensity|...|Bisset|is|both|convincing|and|radiant|.\nA|smart|,|provocative|drama|that|does|the|nearly|impossible|:|It|gets|under|the|skin|of|a|man|we|only|know|as|an|evil|,|monstrous|lunatic|.\nAn|alternately|fascinating|and|frustrating|documentary|.\nGriffin|&|Co.|manage|to|be|spectacularly|outrageous|.\nNair|'s|cast|is|so|large|it|'s|Altman-esque|,|but|she|deftly|spins|the|multiple|stories|in|a|vibrant|and|intoxicating|fashion|.\nThe|movie|plays|up|the|cartoon|'s|more|obvious|strength|of|snazziness|while|neglecting|its|less|conspicuous|writing|strength|.\nPoignant|Japanese|epic|about|adolescent|anomie|and|heartbreak|.\nWe|'ve|seen|it|all|before|in|one|form|or|another|,|but|director|Hoffman|,|with|great|help|from|Kevin|Kline|,|makes|us|care|about|this|latest|reincarnation|of|the|world|'s|greatest|teacher|.\nSecretary|is|not|a|movie|about|fetishism|.\nIt|is|a|movie|about|passion|.\nEven|though|it|'s|common|knowledge|that|Park|and|his|founding|partner|,|Yong|Kang|,|lost|Kozmo|in|the|end|,|you|ca|n't|help|but|get|caught|up|in|the|thrill|of|the|company|'s|astonishing|growth|.\nAlthough|some|viewers|will|not|be|able|to|stomach|so|much|tongue-in-cheek|weirdness|,|those|who|do|will|have|found|a|cult|favorite|to|enjoy|for|a|lifetime|.\nWhat|could|have|easily|become|a|cold|,|calculated|exercise|in|postmodern|pastiche|winds|up|a|powerful|and|deeply|moving|example|of|melodramatic|moviemaking|.\nA|delightful|surprise|because|despite|all|the|backstage|drama|,|this|is|a|movie|that|tells|stories|that|work|--|is|charming|,|is|moving|,|is|funny|and|looks|professional|.\nThe|IMAX|screen|enhances|the|personal|touch|of|manual|animation|.\nDoes|an|impressive|job|of|relating|the|complicated|history|of|the|war|and|of|filling|in|the|background|.\nIt|'s|all|about|Anakin|...|and|the|lustrous|polished|visuals|rich|in|color|and|creativity|and|,|of|course|,|special|effect|.\nLacks|the|inspiration|of|the|original|and|has|a|bloated|plot|that|stretches|the|running|time|about|10|minutes|past|a|child|'s|interest|and|an|adult|'s|patience|.\nBut|it|also|has|many|of|the|things|that|made|the|first|one|charming|.\nIt|'s|funny|,|touching|,|dramatically|forceful|,|and|beautifully|shot|.\nIts|rawness|and|vitality|give|it|considerable|punch|.\nA|live-wire|film|that|never|loses|its|ability|to|shock|and|amaze|.\nThe|year|'s|greatest|adventure|,|and|Jackson|'s|limited|but|enthusiastic|adaptation|has|made|literature|literal|without|killing|its|soul|--|a|feat|any|thinking|person|is|bound|to|appreciate|.\nIt|'s|fairly|solid|--|not|to|mention|well|edited|so|that|it|certainly|does|n't|feel|like|a|film|that|strays|past|the|two|and|a|half|mark|.\nBrims|with|passion|:|for|words|,|for|its|eccentric|,|accident-prone|characters|,|and|for|the|crazy|things|that|keep|people|going|in|this|crazy|life|.\nIt|'s|secondary|to|American|Psycho|but|still|has|claws|enough|to|get|inside|you|and|stay|there|for|a|couple|of|hours|.\nThe|Hours|,|a|delicately|crafted|film|,|is|an|impressive|achievement|in|spite|of|a|river|of|sadness|that|pours|into|every|frame|.\nFudges|fact|and|fancy|with|such|confidence|that|we|feel|as|if|we|'re|seeing|something|purer|than|the|real|thing|.\nThis|is|unusual|,|food-for-thought|cinema|that|'s|as|entertaining|as|it|is|instructive|.\nWith|an|expressive|face|reminiscent|of|Gong|Li|and|a|vivid|personality|like|Zhang|Ziyi|'s|,|Dong|stakes|out|the|emotional|heart|of|Happy|.\nNohe|'s|documentary|about|the|event|is|sympathetic|without|being|gullible|:|He|is|n't|blind|to|the|silliness|,|but|also|captures|moments|of|spontaneous|creativity|and|authentic|co-operative|interaction|.\nIt|may|not|be|as|cutting|,|as|witty|or|as|true|as|back|in|the|glory|days|of|Weekend|and|Two|or|Three|Things|I|Know|About|Her|,|but|who|else|engaged|in|filmmaking|today|is|so|cognizant|of|the|cultural|and|moral|issues|involved|in|the|process|?\nSecret|Ballot|is|a|funny|,|puzzling|movie|ambiguous|enough|to|be|engaging|and|oddly|moving|.\nAlthough|devoid|of|objectivity|and|full|of|nostalgic|comments|from|the|now|middle-aged|participants|,|Dogtown|and|Z-Boys|has|a|compelling|story|to|tell|.\nIt|'s|got|some|pretentious|eye-rolling|moments|and|it|did|n't|entirely|grab|me|,|but|there|'s|stuff|here|to|like|.\nBirthday|Girl|walks|a|tricky|tightrope|between|being|wickedly|funny|and|just|plain|wicked|.\nThe|enjoyable|Undercover|Brother|,|a|zany|mix|of|Saturday|Night|Live-style|parody|,|'70s|Blaxploitation|films|and|goofball|action|comedy|gone|wild|,|dishes|out|a|ton|of|laughs|that|everyone|can|enjoy|.\nBrings|an|irresistible|blend|of|warmth|and|humor|and|a|consistent|embracing|humanity|in|the|face|of|life|'s|harshness|.\nJackson|is|always|watchable|.\nTo|the|degree|that|ivans|xtc|.\nworks|,|it|'s|thanks|to|Huston|'s|revelatory|performance|.\nA|wild|ride|of|a|movie|that|keeps|throwing|fastballs|.\nConfessions|is|without|a|doubt|a|memorable|directorial|debut|from|King|Hunk|.\nWeird|,|vulgar|comedy|that|'s|definitely|an|acquired|taste|.\nA.|.|.\ncynical|and|serious|look|at|teenage|boys|doing|what|they|do|best|-|being|teenagers|.\nThe|film|is|a|very|good|viewing|alternative|for|young|women|.\nAustralian|filmmaker|David|Flatman|uses|the|huge-screen|format|to|make|an|old-fashioned|nature|film|that|educates|viewers|with|words|and|pictures|while|entertaining|them|.\nA|dazzling|dream|of|a|documentary|.\nA|keep|-|'em|-|guessing|plot|and|an|affectionate|take|on|its|screwed-up|characters|.\nBrave|and|sweetly|rendered|love|story|.\nThe|film|proves|unrelentingly|grim|--|and|equally|engrossing|.\nA|hallmark|film|in|an|increasingly|important|film|industry|and|worth|the|look|.\nThe|Last|Kiss|will|probably|never|achieve|the|popularity|of|My|Big|Fat|Greek|Wedding|,|but|its|provocative|central|wedding|sequence|has|far|more|impact|.\nIf|you|like|blood|,|guts|and|crazy|beasts|stalking|men|with|guns|though|...|you|will|likely|enjoy|this|monster|.\nThe|difference|between|Cho|and|most|comics|is|that|her|confidence|in|her|material|is|merited|.\nSad|to|say|--|it|accurately|reflects|the|rage|and|alienation|that|fuels|the|self-destructiveness|of|many|young|people|.\nThere|is|a|strong|directorial|stamp|on|every|frame|of|this|stylish|film|that|is|able|to|visualize|schizophrenia|but|is|still|confident|enough|to|step|back|and|look|at|the|sick|character|with|a|sane|eye|.\n`|Anyone|with|a|passion|for|cinema|,|and|indeed|sex|,|should|see|it|as|soon|as|possible|.|'\nSeeks|to|transcend|its|genre|with|a|curiously|stylized|,|quasi-Shakespearean|portrait|of|pure|misogynist|evil|.\nMordantly|funny|and|intimately|knowing|...\nWhat|makes|the|movie|special|is|its|utter|sincerity|.\nFast|and|funny|,|an|action|cartoon|that|'s|suspenseful|enough|for|older|kids|but|not|too|scary|for|the|school-age|crowd|.\nOne|of|those|rare|films|that|come|by|once|in|a|while|with|flawless|amounts|of|acting|,|direction|,|story|and|pace|.\nThe|AAA|of|action|,|XXX|is|a|blast|of|adrenalin|,|rated|EEE|for|excitement|.\nAnd|Vin|Diesel|is|the|man|.\nEarnest|,|unsubtle|and|Hollywood-predictable|,|Green|Dragon|is|still|a|deeply|moving|effort|to|put|a|human|face|on|the|travail|of|thousands|of|Vietnamese|.\nAn|ambitious|movie|that|,|like|Shiner|'s|organizing|of|the|big|fight|,|pulls|off|enough|of|its|effects|to|make|up|for|the|ones|that|do|n't|come|off|.\nNair|and|writer|Laura|Cahill|dare|to|build|a|movie|around|some|flawed|but|rather|unexceptional|women|,|emerging|with|a|fine|character|study|that|'s|short|on|plot|but|rich|in|the|tiny|revelations|of|real|life|.\nThe|film|'s|unhurried|pace|is|actually|one|of|its|strengths|.\nEntirely|appropriately|,|the|tale|unfolds|like|a|lazy|summer|afternoon|and|concludes|with|the|crisp|clarity|of|a|fall|dawn|.\nDespite|its|floating|narrative|,|this|is|a|remarkably|accessible|and|haunting|film|.\nVibrantly|colored|and|beautifully|designed|,|Metropolis|is|a|feast|for|the|eyes|.\nSweetly|sexy|,|funny|and|touching|.\n...|while|Dark|Water|is|n't|a|complete|wash|(|no|pun|intended|)|,|watched|side-by-side|with|Ringu|,|it|ultimately|comes|off|as|a|pale|successor|.\nIs|truth|stranger|than|fiction|?\nIn|(|screenwriter|)|Charlie|Kaufman|'s|world|,|truth|and|fiction|are|equally|strange|,|and|his|for|the|taking|.\nFor|decades|we|'ve|marveled|at|Disney|'s|rendering|of|water|,|snow|,|flames|and|shadows|in|a|hand-drawn|animated|world|.\nPrepare|to|marvel|again|.\nA|witty|,|low-key|romantic|comedy|.\nMore|good|than|great|but|Freeman|and|Judd|make|it|work|.\nIf|you|'re|looking|for|a|smart|,|nuanced|look|at|de|Sade|and|what|might|have|happened|at|Picpus|,|Sade|is|your|film|.\nCould|have|been|crisper|and|punchier|,|but|it|'s|likely|to|please|audiences|who|like|movies|that|demand|four|hankies|.\nTogether|writer-director|Danny|Verete|'s|three|tales|comprise|a|powerful|and|reasonably|fulfilling|gestalt|.\nBursting|through|the|constraints|of|its|source|,|this|is|one|adapted|-|from-television|movie|that|actually|looks|as|if|it|belongs|on|the|big|screen|.\nIts|almost|too-spectacular|coastal|setting|distracts|slightly|from|an|eccentric|and|good-naturedly|aimless|story|.\nIn|other|words|,|it|'s|just|another|sports|drama\\/character|study|.\nYet|this|one|makes|up|for|in|heart|what|it|lacks|in|outright|newness|.\nPlus|,|like|I|already|mentioned|...|it|'s|Robert|Duvall|!\nC'mon|!\nThis|story|of|a|determined|woman|'s|courage|to|find|her|husband|in|a|war|zone|offers|winning|performances|and|some|effecting|moments|.\nLike|Shrek|,|Spirit|'s|visual|imagination|reminds|you|of|why|animation|is|such|a|perfect|medium|for|children|,|because|of|the|way|it|allows|the|mind|to|enter|and|accept|another|world|.\nA|modestly|made|but|profoundly|moving|documentary|.\nIt|irritates|and|saddens|me|that|Martin|Lawrence|'s|latest|vehicle|can|explode|obnoxiously|into|2,500|screens|while|something|of|Bubba|Ho-Tep|'s|clearly|evident|quality|may|end|up|languishing|on|a|shelf|somewhere|.\nNot|everything|in|this|ambitious|comic|escapade|works|,|but|Coppola|,|along|with|his|sister|,|Sofia|,|is|a|real|filmmaker|.\nIt|must|be|in|the|genes|.\nThe|performers|are|so|spot|on|,|it|is|hard|to|conceive|anyone|else|in|their|roles|.\nThis|slight|premise|...|works|because|of|the|ideal|casting|of|the|masterful|British|actor|Ian|Holm|as|the|aged|Napoleon|.\nHashiguchi|covers|this|territory|with|wit|and|originality|,|suggesting|that|with|his|fourth|feature|--|the|first|to|be|released|in|the|U.S.|--|a|major|director|is|emerging|in|world|cinema|.\nAlthough|the|film|boils|down|to|a|lightweight|story|about|matchmaking|,|the|characters|make|Italian|for|Beginners|worth|the|journey\nThe|dragons|are|the|real|stars|of|Reign|of|Fire|and|you|wo|n't|be|disappointed|.\nKudos|to|the|most|enchanting|film|of|the|year|.\nIt|works|well|enough|,|since|the|thrills|pop|up|frequently|,|and|the|dispatching|of|the|cast|is|as|often|imaginative|as|it|is|gory|.\nColorful|and|deceptively|buoyant|until|it|suddenly|pulls|the|rug|out|from|under|you|,|Burkinabe|filmmaker|Dani|Kouyate|'s|reworking|of|a|folk|story|whose|roots|go|back|to|7th-century|oral|traditions|is|also|a|pointed|political|allegory|.\nIt|'s|a|powerful|though|flawed|movie|,|guaranteed|to|put|a|lump|in|your|throat|while|reaffirming|Washington|as|possibly|the|best|actor|working|in|movies|today|.\nDirector|Paul|Cox|'s|unorthodox|,|abstract|approach|to|visualizing|Nijinsky|'s|diaries|is|both|stimulating|and|demanding|.\nFor|95|often|hilarious|minutes|,|(|Cho|)|riffs|on|the|diciness|of|colonics|,|on|straight|versus|gay|personal|ads|,|on|how|men|would|act|if|they|had|periods|,|and|on|the|perils|of|a|certain|outré|sexual|practice|.\nMost|of|the|things|that|made|the|original|Men|in|Black|such|a|pleasure|are|still|there|.\nMostly|honest|,|this|somber|picture|reveals|itself|slowly|,|intelligently|,|artfully|.\nBest|enjoyed|as|a|work|of|fiction|inspired|by|real-life|events|.\nThose|seeking|a|definitive|account|of|Eisenstein|'s|life|would|do|better|elsewhere|.\n(|Westbrook|)|makes|a|wonderful|subject|for|the|camera|.\nA|film|that|'s|flawed|and|brilliant|in|equal|measure|.\nEven|if|Invincible|is|not|quite|the|career|peak|that|The|Pianist|is|for|Roman|Polanski|,|it|demonstrates|that|Werner|Herzog|can|still|leave|us|with|a|sense|of|wonder|at|the|diverse|,|marvelously|twisted|shapes|history|has|taken|.\nUltimately|too|repellent|to|fully|endear|itself|to|American|art|house|audiences|,|but|it|is|notable|for|its|stylistic|austerity|and|forcefulness|.\nHardly|a|film|that|comes|along|every|day|.\nA|wild|ride|with|eight|boarders|from|Venice|Beach|that|was|a|deserved|co-winner|of|the|Audience|Award|for|documentaries|at|the|Sundance|Film|Festival|.\nThe|film|'s|only|missteps|come|from|the|script|'s|insistence|on|providing|deep|emotional|motivation|for|each|and|every|one|of|Abagnale|'s|antics|.\nA|sweet|,|tender|sermon|about|a|12-year-old|Welsh|boy|more|curious|about|God|than|girls|,|who|learns|that|believing|in|something|does|matter|.\nthe|film|belongs|to|the|marvelous|Verdu|,|a|sexy|slip|of|an|earth|mother|who|mourns|her|tragedies|in|private|and|embraces|life|in|public\nMore|intimate|than|spectacular|,|E.T.|is|carried|less|by|wow|factors|than|by|its|funny|,|moving|yarn|that|holds|up|well|after|two|decades|.\nFor|once|,|a|movie|does|not|proclaim|the|truth|about|two|love-struck|somebodies|,|but|permits|them|time|and|space|to|convince|us|of|that|all|on|their|own|.\nIf|you|'re|burnt|out|on|It|'s|a|Wonderful|Life|marathons|and|bored|with|A|Christmas|Carol|,|it|might|just|be|the|movie|you|'re|looking|for|.\nIt|depends|on|how|well|flatulence|gags|fit|into|your|holiday|concept|.\nMoonlight|Mile|does|n't|quite|go|the|distance|but|the|cast|is|impressive|and|they|all|give|life|to|these|broken|characters|who|are|trying|to|make|their|way|through|this|tragedy|.\nIt|is|an|indelible|epic|American|story|about|two|families|,|one|black|and|one|white|,|facing|change|in|both|their|inner|and|outer|lives|.\nNot|as|well-written|as|Sexy|Beast|,|not|as|gloriously|flippant|as|Lock|,|Stock|and|Two|Smoking|Barrels|,|but|stylish|and|moody|and|exceptionally|well-acted|.\nQuite|simply|,|a|joy|to|watch|and|--|especially|--|to|listen|to|.\nA|flawed|film|but|an|admirable|one|that|tries|to|immerse|us|in|a|world|of|artistic|abandon|and|political|madness|and|very|nearly|succeeds|.\nThe|filmmakers|wisely|decided|to|let|Crocodile|Hunter|Steve|Irwin|do|what|he|does|best|,|and|fashion|a|story|around|him|.\nA|winning|and|wildly|fascinating|work|.\nWe|do|get|the|distinct|impression|that|this|franchise|is|drawing|to|a|close|.\nWorth|catching|for|Griffiths|'|warm|and|winning|central|performance|.\nThe|tone|errs|on|the|shrill|side|,|tempered|by|a|soft|southern|gentility|that|speaks|of|beauty|,|grace|and|a|closet|full|of|skeletons|.\nAn|interesting|psychological|game|of|cat-and-mouse|,|three-dimensional|characters|and|believable|performances|all|add|up|to|a|satisfying|crime|drama|.\nA|meatier|deeper|beginning|and\\/or|ending|would|have|easily|tipped|this|film|into|the|``|A|''|range|,|as|is|,|it|'s|a|very|very|strong|``|B|+|.|''\nI|love|the|robust|middle|of|this|picture|.\nThe|power|of|Shanghai|Ghetto|,|a|documentary|by|Dana|Janklowicz-Mann|and|Amir|Mann|,|rests|in|the|voices|of|men|and|women|,|now|in|their|70s|,|who|lived|there|in|the|1940s|.\nMaintains|your|interest|until|the|end|and|even|leaves|you|with|a|few|lingering|animated|thoughts|.\nThere|is|a|beautiful|,|aching|sadness|to|it|all|.\nPaul|Cox|needed|to|show|it|.\nIt|is|up|to|you|to|decide|if|you|need|to|see|it|.\nIf|Divine|Secrets|of|the|Ya-Ya|Sisterhood|suffers|from|a|ploddingly|melodramatic|structure|,|it|comes|to|life|in|the|performances|.\nIf|you|ignore|the|cliches|and|concentrate|on|City|by|the|Sea|'s|interpersonal|drama|,|it|ai|n't|half-bad|.\nThere|are|n't|too|many|films|that|can|be|as|simultaneously|funny|,|offbeat|and|heartwarming|(|without|a|thick|shmear|of|the|goo|,|at|least|)|,|but|``|Elling|''|manages|to|do|all|three|quite|well|,|making|it|one|of|the|year|'s|most|enjoyable|releases|.\nReign|of|Fire|is|hardly|the|most|original|fantasy|film|ever|made|--|beyond|Road|Warrior|,|it|owes|enormous|debts|to|Aliens|and|every|previous|dragon|drama|--|but|that|barely|makes|it|any|less|entertaining|.\nAn|earnest|,|roughshod|document|,|it|serves|as|a|workable|primer|for|the|region|'s|recent|history|,|and|would|make|a|terrific|10th-grade|learning|tool|.\nSamuel|Beckett|applied|to|the|Iranian|voting|process|.\nThe|Bard|as|black|comedy|--|Willie|would|have|loved|it|.\nAnother|trumpet|blast|that|there|may|be|a|New|Mexican|Cinema|a-bornin|'|.|'\n...|the|film|'s|considered|approach|to|its|subject|matter|is|too|calm|and|thoughtful|for|agitprop|,|and|the|thinness|of|its|characterizations|makes|it|a|failure|as|straight|drama|.|'\nTadpole|may|be|one|of|the|most|appealing|movies|ever|made|about|an|otherwise|appalling|,|and|downright|creepy|,|subject|--|a|teenage|boy|in|love|with|his|stepmother|.\nThis|is|a|story|that|zings|all|the|way|through|with|originality|,|humour|and|pathos|.\nAs|underwater|ghost|stories|go|,|Below|casts|its|spooky|net|out|into|the|Atlantic|Ocean|and|spits|it|back|,|grizzled|and|charred|,|somewhere|northwest|of|the|Bermuda|Triangle|.\nIt|is|a|challenging|film|,|if|not|always|a|narratively|cohesive|one|.\nTrapped|wo|n't|score|points|for|political|correctness|,|but|it|may|cause|parents|a|few|sleepless|hours|--|a|sign|of|its|effectiveness|.\nA|rock-solid|gangster|movie|with|a|fair|amount|of|suspense|,|intriguing|characters|and|bizarre|bank|robberies|,|plus|a|heavy|dose|of|father-and-son|dynamics|.\nIt|'s|incredible|the|number|of|stories|the|Holocaust|has|generated|.\nJust|when|you|think|that|every|possible|angle|has|been|exhausted|by|documentarians|,|another|new|film|emerges|with|yet|another|remarkable|yet|shockingly|little-known|perspective|.\nAs|they|used|to|say|in|the|1950s|sci-fi|movies|,|Signs|is|a|tribute|to|Shyamalan|'s|gifts|,|which|are|such|that|we|'ll|keep|watching|the|skies|for|his|next|project|.\nThere|'s|no|conversion|effort|,|much|of|the|writing|is|genuinely|witty|and|both|stars|are|appealing|enough|to|probably|have|a|good|shot|at|a|Hollywood|career|,|if|they|want|one|.\nLike|a|skillful|fisher|,|the|director|uses|the|last|act|to|reel|in|the|audience|since|its|poignancy|hooks|us|completely|.\nA|film|with|contemporary|political|resonance|illustrated|by|a|winning|family|story|.\nKids|five|and|up|will|be|delighted|with|the|fast|,|funny|,|and|even|touching|story|.\nParents|may|even|find|that|it|goes|by|quickly|,|because|it|has|some|of|the|funniest|jokes|of|any|movie|this|year|,|including|those|intended|for|adults|.\nAn|unsettling|,|memorable|cinematic|experience|that|does|its|predecessors|proud|.\nMaid|in|Manhattan|might|not|look|so|appealing|on|third|or|fourth|viewing|down|the|road|...|But|as|a|high|concept|vehicle|for|two|bright|stars|of|the|moment|who|can|rise|to|fans|'|lofty|expectations|,|the|movie|passes|inspection|.\nMuch|of|All|About|Lily|Chou-Chou|is|mesmerizing|:|some|of|its|plaintiveness|could|make|you|weep|.\nFerrara|'s|strongest|and|most|touching|movie|of|recent|years|.\nSpielberg|'s|first|real|masterpiece|,|it|deserved|all|the|hearts|it|won|--|and|wins|still|,|20|years|later|.\nThe|screenwriters|dig|themselves|in|deeper|every|time|they|toss|logic|and|science|into|what|is|essentially|a|``|Dungeons|and|Dragons|''|fantasy|with|modern|military|weaponry|...\nMore|than|simply|a|portrait|of|early|extreme|sports|,|this|peek|into|the|1970s|skateboard|revolution|is|a|skateboard|film|as|social|anthropology|...\nWhat|I|saw|,|I|enjoyed|.\nThe|level|of|acting|elevates|the|material|above|pat|inspirational|status|and|gives|it|a|sturdiness|and|solidity|that|we|'ve|long|associated|with|Washington|the|actor|.\nA|deft|,|delightful|mix|of|sulky|teen|drama|and|overcoming-obstacles|sports-movie|triumph|.\nDaringly|perceptive|,|taut|,|piercing|and|feisty|,|Biggie|and|Tupac|is|undeniably|subversive|and|involving|in|its|bold|presentation|.\nDelivers|more|than|its|fair|share|of|saucy|hilarity|.\nA|fairly|enjoyable|mixture|of|Longest|Yard|...|and|the|1999|Guy|Ritchie|caper|Lock|Stock|and|Two|Smoking|Barrels|.\nHappily|,|some|things|are|immune|to|the|folly|of|changing|taste|and|attitude|.\nFor|proof|of|that|on|the|cinematic|front|,|look|no|further|than|this|20th|anniversary|edition|of|the|film|that|Spielberg|calls|,|retrospectively|,|his|most|personal|work|yet|.\nHugely|entertaining|from|start|to|finish|,|featuring|a|fall|from|grace|that|still|leaves|shockwaves|,|it|will|gratify|anyone|who|has|ever|suspected|Hollywood|of|being|overrun|by|corrupt|and|hedonistic|weasels|.\nIt|'s|not|like|having|a|real|film|of|Nijinsky|,|but|at|least|it|'s|better|than|that|eponymous|1980|biopic|that|used|soap|in|the|places|where|the|mysteries|lingered|.\nIt|'s|probably|worth|catching|solely|on|its|visual|merits|.\nIf|only|it|had|the|story|to|match|.\nLike|other|great|documentaries|...|this|goes|after|one|truth|(|the|Ford|administration|'s|complicity|in|tearing|`|orphans|'|from|their|mothers|)|and|stumbles|upon|others|even|more|compelling|.\n...|only|Bond|can|save|us|from|the|latest|eccentric|,|super-wealthy|megalomaniac|bent|on|world|domination|and|destruction|.\nThe|first|half|bursts|with|a|goofy|energy|previous|Disney|films|only|used|for|a|few|minutes|here|and|there|.\nIt|'s|quite|diverting|nonsense|.\nAn|old-fashioned|scary|movie|,|one|that|relies|on|lingering|terror|punctuated|by|sudden|shocks|and|not|constant|bloodshed|punctuated|by|flying|guts|.\nFor|all|the|wit|and|hoopla|,|Festival|In|Cannes|offers|rare|insight|into|the|structure|of|relationships|.\nWhat|makes|How|I|Killed|My|Father|compelling|,|besides|its|terrific|performances|,|is|Fontaine|'s|willingness|to|wander|into|the|dark|areas|of|parent-child|relationships|without|flinching|.\nRenner|?\ns|face|is|chillingly|unemotive|,|yet|he|communicates|a|great|deal|in|his|performance|.\nSee|it|for|his|performance|if|nothing|else|.\n...|the|kind|of|entertainment|that|parents|love|to|have|their|kids|see|.\nIt|'s|a|fine|,|focused|piece|of|work|that|reopens|an|interesting|controversy|and|never|succumbs|to|sensationalism|.\nIts|engaging|simplicity|is|driven|by|appealing|leads|.\nSwimming|is|above|all|about|a|young|woman|'s|face|,|and|by|casting|an|actress|whose|face|projects|that|woman|'s|doubts|and|yearnings|,|it|succeeds|.\nA|respectable|venture|on|its|own|terms|,|lacking|the|broader|vision|that|has|seen|certain|Trek|films|...|cross|over|to|a|more|mainstream|audience|.\nIt|'s|weird|,|wonderful|,|and|not|necessarily|for|kids|.\nAn|elegant|film|with|often|surprising|twists|and|an|intermingling|of|naiveté|and|sophistication|.\nBlessed|with|two|fine|,|nuanced|lead|performances|.\nWhile|this|has|the|making|of|melodrama|,|the|filmmaker|cuts|against|this|natural|grain|,|producing|a|work|that|'s|more|interested|in|asking|questions|than|in|answering|them|.\nAs|a|girl-meets-girl|romantic|comedy|,|Kissing|Jessica|Steinis|quirky|,|charming|and|often|hilarious|.\nYet|it|'s|not|quite|the|genre-busting|film|it|'s|been|hyped|to|be|because|it|plays|everything|too|safe|.\nYou|do|n't|need|to|know|your|Ice-T|'s|from|your|Cool-J|'s|to|realize|that|as|far|as|these|shootings|are|concerned|,|something|is|rotten|in|the|state|of|California|.\nTurturro|is|fabulously|funny|and|over|the|top|as|a|`|very|sneaky|'|butler|who|excels|in|the|art|of|impossible|disappearing\\/reappearing|acts\nMeant|for|Star|Wars|fans|.\nIt|is|there|to|give|them|a|good|time|.\nFrom|a|deceptively|simple|premise|,|this|deeply|moving|French|drama|develops|a|startling|story|that|works|both|as|a|detailed|personal|portrait|and|as|a|rather|frightening|examination|of|modern|times|.\nSimply|and|eloquently|articulates|the|tangled|feelings|of|particular|New|Yorkers|deeply|touched|by|an|unprecedented|tragedy|.\nProvides|a|very|moving|and|revelatory|footnote|to|the|Holocaust|.\nTerrific|performances|,|great|to|look|at|,|and|funny|.\nA|little|uneven|to|be|the|cat|'s|meow|,|but|it|'s|good|enough|to|be|the|purr|.\nIt|'s|a|compelling|and|horrifying|story|,|and|The|Laramie|Project|is|worthwhile|for|reminding|us|that|this|sort|of|thing|does|,|in|fact|,|still|happen|in|America|.\nI|like|it|.\nThere|is|a|freedom|to|watching|stunts|that|are|this|crude|,|this|fast-paced|and|this|insane|.\nThat|rare|documentary|that|incorporates|so|much|of|human|experience|--|drama|,|conflict|,|tears|and|surprise|--|that|it|transcends|the|normal|divisions|between|fiction|and|nonfiction|film|.\nThat|rare|movie|that|works|on|any|number|of|levels|--|as|a|film|of|magic|and|whimsy|for|children|,|a|heartfelt|romance|for|teenagers|and|a|compelling|argument|about|death|,|both|pro|and|con|,|for|adults|.\nIt|'s|both|degrading|and|strangely|liberating|to|see|people|working|so|hard|at|leading|lives|of|sexy|intrigue|,|only|to|be|revealed|by|the|dispassionate|Gantz|brothers|as|ordinary|,|pasty|lumpen|.\nA|sharp|and|quick|documentary|that|is|funny|and|pithy|,|while|illuminating|an|era|of|theatrical|comedy|that|,|while|past|,|really|is|n't|.\nThe|film|does|a|solid|job|of|slowly|,|steadily|building|up|to|the|climactic|burst|of|violence|.\nFred|Schepisi|'s|tale|of|four|Englishmen|facing|the|prospect|of|their|own|mortality|views|youthful|affluence|not|as|a|lost|ideal|but|a|starting|point|.\nThe|directive|to|protect|the|code|at|all|costs|also|begins|to|blur|as|the|importance|of|the|man|and|the|code|merge\nOverall|,|Cletis|Tout|is|a|winning|comedy|that|excites|the|imagination|and|tickles|the|funny|bone|.\nEasily|one|of|the|best|and|most|exciting|movies|of|the|year|.\nThe|script|manages|the|rare|trick|of|seeming|at|once|both|refreshingly|different|and|reassuringly|familiar|.\nAn|engaging|,|formulaic|sports|drama|that|carries|a|charge|of|genuine|excitement|.\nInsomnia|is|one|of|the|year|'s|best|films|and|Pacino|gives|one|of|his|most|daring|,|and|complicated|,|performances|.\nLike|Vardalos|and|Corbett|,|who|play|their|roles|with|vibrant|charm|,|the|film|,|directed|by|Joel|Zwick|,|is|heartfelt|and|hilarious|in|ways|you|ca|n't|fake|.\nI|do|n't|know|if|Frailty|will|turn|Bill|Paxton|into|an|A-list|director|,|but|he|can|rest|contentedly|with|the|knowledge|that|he|'s|made|at|least|one|damn|fine|horror|movie|.\nDespite|its|flaws|...|Belinsky|is|still|able|to|create|an|engaging|story|that|keeps|you|guessing|at|almost|every|turn|.\nEach|punch|seen|through|prison|bars|,|the|fights|become|not|so|much|a|struggle|of|man|vs.|man|as|Brother-Man|vs.|The|Man|.\nThe|evocative|imagery|and|gentle|,|lapping|rhythms|of|this|film|are|infectious|--|it|gets|under|our|skin|and|draws|us|in|long|before|the|plot|kicks|into|gear|.\nLike|the|best|of|Godard|'s|movies|...|it|is|visually|ravishing|,|penetrating|,|impenetrable|.\nHorns|and|Halos|benefits|from|serendipity|but|also|reminds|us|of|our|own|responsibility|to|question|what|is|told|as|the|truth|.\n(|Has|)|an|immediacy|and|an|intimacy|that|sucks|you|in|and|dares|you|not|to|believe|it|'s|all|true|.\nIt|treats|Ana|'s|journey|with|honesty|that|is|tragically|rare|in|the|depiction|of|young|women|in|film|.\nCaptivates|as|it|shows|excess|in|business|and|pleasure|,|allowing|us|to|find|the|small|,|human|moments|,|and|leaving|off|with|a|grand|whimper|.\nA|refreshingly|realistic|,|affectation-free|coming-of-age|tale|.\nHow|good|this|film|might|be|,|depends|if|you|believe|that|the|shocking|conclusion|is|too|much|of|a|plunge|or|not|.\nGreat|fun|both|for|sports|aficionados|and|for|ordinary|louts|whose|idea|of|exercise|is|climbing|the|steps|of|a|stadium-seat|megaplex|.\nFeatures|one|of|the|most|affecting|depictions|of|a|love|affair|ever|committed|to|film|.\nTo|honestly|address|the|flaws|inherent|in|how|medical|aid|is|made|available|to|American|workers|,|a|more|balanced|or|fair|portrayal|of|both|sides|will|be|needed|.\nOne|of|the|best|movies|of|the|year|.\nThe|usual|movie|rah-rah|,|pleasantly|and|predictably|delivered|in|low-key|style|by|director|Michael|Apted|and|writer|Tom|Stoppard|.\nA|superlative|B|movie|--|funny|,|sexy|,|and|rousing|.\nThose|prone|to|indignation|need|not|apply|;|those|susceptible|to|blue|hilarity|,|step|right|up|.\nLike|Mike|is|n't|going|to|make|box|office|money|that|makes|Michael|Jordan|jealous|,|but|it|has|some|cute|moments|,|funny|scenes|,|and|hits|the|target|audience|(|young|Bow|Wow|fans|)|-|with|nothing|but|net|.\n(|Dong|)|makes|a|valiant|effort|to|understand|everyone|'s|point|of|view|,|and|he|does|such|a|good|job|of|it|that|Family|Fundamentals|gets|you|riled|up|.\nThe|trick|when|watching|Godard|is|to|catch|the|pitch|of|his|poetics|,|savor|the|pleasure|of|his|sounds|and|images|,|and|ponder|the|historical|,|philosophical|,|and|ethical|issues|that|intersect|with|them|.\nAt|its|best|,|which|occurs|often|,|Michael|Moore|'s|Bowling|for|Columbine|rekindles|the|muckraking|,|soul-searching|spirit|of|the|`|Are|we|a|sick|society|?|'\njournalism|of|the|1960s|.\nA|modestly|surprising|movie|.\nA|headline-fresh|thriller|set|among|orthodox|Jews|on|the|West|Bank|,|Joseph|Cedar|'s|Time|Of|Favor|manages|not|only|to|find|a|compelling|dramatic|means|of|addressing|a|complex|situation|,|it|does|so|without|compromising|that|complexity|.\nThere|'s|a|spontaneity|to|The|Chateau|,|a|sense|of|light-heartedness|,|that|makes|it|attractive|throughout|.\nThe|first|Tunisian|film|I|have|ever|seen|,|and|it|'s|also|probably|the|most|good-hearted|yet|sensual|entertainment|I|'m|likely|to|see|all|year|.\nLike|any|good|romance|,|Son|of|the|Bride|,|proves|it|'s|never|too|late|to|learn|.\n(|Kline|'s|)|utterly|convincing|--|and|deeply|appealing|--|as|a|noble|teacher|who|embraces|a|strict|moral|code|,|and|as|a|flawed|human|being|who|ca|n't|quite|live|up|to|it|.\nThe|film|,|while|not|exactly|assured|in|its|execution|,|is|notable|for|its|sheer|audacity|and|openness|.\nA|thoroughly|enjoyable|,|heartfelt|coming-of-age|comedy|.\nFeeling|like|a|dope|has|rarely|been|more|fun|than|it|is|in|Nine|Queens|.\nLeigh|makes|these|lives|count|.\nAnd|he|allows|a|gawky|actor|like|Spall|--|who|could|too|easily|become|comic|relief|in|any|other|film|--|to|reveal|his|impressively|delicate|range|.\nA|lot|of|fun|,|with|an|undeniable|energy|sparked|by|two|actresses|in|their|50s|working|at|the|peak|of|their|powers|.\nPromises|is|one|film|that|'s|truly|deserving|of|its|Oscar|nomination|.\nWhat|bubbles|up|out|of|John|C.|Walsh|'s|Pipe|Dream|is|the|distinct|and|very|welcome|sense|of|watching|intelligent|people|making|a|movie|they|might|actually|want|to|watch|.\nIf|Reno|is|to|the|left|of|liberal|on|the|political|spectrum|,|her|tough|,|funny|,|rather|chaotic|show|is|n't|subversive|so|much|as|it|is|nit-picky|about|the|hypocrisies|of|our|time|.\nBeautiful|,|angry|and|sad|,|with|a|curious|sick|poetry|,|as|if|the|Marquis|de|Sade|had|gone|in|for|pastel|landscapes|.\nMs.|Hutchins|is|talented|enough|and|charismatic|enough|to|make|us|care|about|Zelda|'s|ultimate|fate|.\nMonte|Cristo|smartly|emphasizes|the|well-wrought|story|and|omits|needless|chase|scenes|and|swordfights|as|the|revenge|unfolds|.\nA|mesmerizing|cinematic|poem|from|the|first|frame|to|the|last|.\n(|It|'s|)|a|clever|thriller|with|enough|unexpected|twists|to|keep|our|interest|.\nAn|undeniably|moving|film|to|experience|,|and|ultimately|that|'s|what|makes|it|worth|a|recommendation|.\nNicole|Kidman|evolved|from|star|to|superstar|some|time|over|the|past|year|,|which|means|that|Birthday|Girl|is|the|kind|of|quirkily|appealing|minor|movie|she|might|not|make|for|a|while|.\nVividly|conveys|the|shadow|side|of|the|30-year|friendship|between|two|English|women|.\nThe|story|has|some|nice|twists|but|the|ending|and|some|of|the|back-story|is|a|little|tired|.\nThe|performances|are|all|solid|;|it|merely|lacks|originality|to|make|it|a|great|movie|.\nManages|to|please|its|intended|audience|--|children|--|without|placing|their|parents|in|a|coma-like|state|.\nWhen|you|think|you|'ve|figured|out|Bielinsky|'s|great|game|,|that|'s|when|you|'re|in|the|most|trouble|:|He|'s|the|con|,|and|you|'re|just|the|mark|.\nA|strong|first|act|and|absolutely|,|inescapably|gorgeous|,|skyscraper-trapeze|motion|of|the|amazing|Spider-Man|.\nDriven|by|a|fantastic|dual|performance|from|Ian|Holm|...|the|film|is|funny|,|insightfully|human|and|a|delightful|lark|for|history|buffs|.\nA|well-put-together|piece|of|urban|satire|.\nIt|'s|the|sweet|Cinderella|story|that|``|Pretty|Woman|''|wanted|to|be|.\nIt|will|make|you|think|twice|about|what|might|be|going|on|inside|each|trailer|park|you|drive|past|--|even|if|it|chiefly|inspires|you|to|drive|a|little|faster|.\nWhat|does|n't|this|film|have|that|an|impressionable|kid|could|n't|stand|to|hear|?\nWhat|saves|it|...|and|makes|it|one|of|the|better|video-game-based|flicks|,|is|that|the|film|acknowledges|upfront|that|the|plot|makes|no|sense|,|such|that|the|lack|of|linearity|is|the|point|of|emotional|and|moral|departure|for|protagonist|Alice|.\nA|deeply|felt|and|vividly|detailed|story|about|newcomers|in|a|strange|new|world|.\nIt|'s|a|visual|delight|and|a|decent|popcorn|adventure|,|as|long|as|you|do|n't|try|to|look|too|deep|into|the|story\nIt|'s|a|feel-good|movie|about|which|you|can|actually|feel|good|.\nA|full|experience|,|a|love|story|and|a|murder|mystery|that|expands|into|a|meditation|on|the|deep|deceptions|of|innocence|.\nThe|Powerpuff|Girls|arrive|on|the|big|screen|with|their|super-powers|,|their|super-simple|animation|and|their|super-dooper-adorability|intact|.\n(|Raimi|'s|)|matured|quite|a|bit|with|Spider-Man|,|even|though|it|'s|one|of|the|most|plain|white|toast|comic|book|films|you|'ll|ever|see|.\nA|new|film|from|Bill|Plympton|,|the|animation|master|,|is|always|welcome|.\nA|devastating|indictment|of|unbridled|greed|and|materalism|.\nWhat|makes|the|film|special|is|the|refreshingly|unhibited|enthusiasm|that|the|people|,|in|spite|of|clearly|evident|poverty|and|hardship|,|bring|to|their|music|.\nThe|film|has|a|kind|of|hard|,|cold|effect|.\nThe|gags|are|often|a|stitch|.\nThe|asylum|material|is|gripping|,|as|are|the|scenes|of|Jia|with|his|family|.\nA|bonanza|of|wacky|sight|gags|,|outlandish|color|schemes|,|and|corny|visual|puns|that|can|be|appreciated|equally|as|an|abstract|Frank|Tashlin|comedy|and|as|a|playful|recapitulation|of|the|artist|'s|career|.\nOne|ca|n't|deny|its|seriousness|and|quality|.\nGood|performances|and|a|realistic|,|non-exploitive|approach|make|Paid|in|Full|worth|seeing|.\nThis|engrossing|,|characteristically|complex|Tom|Clancy|thriller|is|shifty|in|the|manner|in|which|it|addresses|current|terrorism|anxieties|and|sidesteps|them|at|the|same|time|.\nRyan|Gosling|is|,|in|a|word|,|brilliant|as|the|conflicted|Daniel|.\n...|somehow|manages|to|escape|the|shackles|of|its|own|clichés|to|be|the|best|espionage|picture|to|come|out|in|weeks|.\nMuch|of|The|Lady|and|the|Duke|is|about|quiet|,|decisive|moments|between|members|of|the|cultural|elite|as|they|determine|how|to|proceed|as|the|world|implodes|.\nTakes|a|simple|premise|and|carries|it|to|unexpected|heights|.\nWith|few|respites|,|Marshall|keeps|the|energy|humming|,|and|his|edits|,|unlike|those|in|Moulin|Rouge|,|are|crisp|and|purposeful|without|overdoing|it|.\nIts|metaphors|are|opaque|enough|to|avoid|didacticism|,|and|the|film|succeeds|as|an|emotionally|accessible|,|almost|mystical|work|.\nProvides|a|satisfactory|overview|of|the|bizarre|world|of|extreme|athletes|as|several|daredevils|express|their|own|views|.\nInventive|,|fun|,|intoxicatingly|sexy|,|violent|,|self-indulgent|and|maddening|.\nComedian|,|like|its|subjects|,|delivers|the|goods|and|audiences|will|have|a|fun|,|no-frills|ride|.\nA|naturally|funny|film|,|Home|Movie|makes|you|crave|Chris|Smith|'s|next|movie|.\nPipe|Dream|does|have|its|charms|.\nThe|leads|are|natural|and|lovely|,|the|pace|is|serene|,|the|humor|wry|and|sprightly|.\nThose|who|want|to|be|jolted|out|of|their|gourd|should|drop|everything|and|run|to|Ichi|.\n...|enthusiastically|invokes|the|percussion|rhythm|,|the|brass|soul|and|the|sense|of|fierce|competition|that|helps|make|great|marching|bands|half|the|fun|of|college|football|games|.\nSheds|light|on|a|subject|few|are|familiar|with|,|and|makes|you|care|about|music|you|may|not|have|heard|before|.\nDespite|the|film|'s|bizarre|developments|,|Hoffman|keeps|us|riveted|with|every|painful|nuance|,|unexpected|flashes|of|dark|comedy|and|the|character|'s|gripping|humanity|.\nTo|get|at|the|root|psychology|of|this|film|would|require|many|sessions|on|the|couch|of|Dr.|Freud|.\nGreat|over-the-top|moviemaking|if|you|'re|in|a|slap-happy|mood|.\nViveka|Seldahl|and|Sven|Wollter|will|touch|you|to|the|core|in|a|film|you|will|never|forget|--|that|you|should|never|forget|.\nThe|magic|(|and|original|running|time|)|of|ace|Japanimator|Hayao|Miyazaki|'s|Spirited|Away|survives|intact|in|BV|'s|re-voiced|version|.\nFrom|the|dull|,|surreal|ache|of|mortal|awareness|emerges|a|radiant|character|portrait|.\nCaptures|the|raw|comic|energy|of|one|of|our|most|flamboyant|female|comics|.\nIt|'s|not|particularly|subtle|...|However|,|it|still|manages|to|build|to|a|terrifying|,|if|obvious|,|conclusion|.\nThe|auteur|'s|ear|for|the|way|fears|and|slights|are|telegraphed|in|the|most|blithe|exchanges|gives|the|film|its|lingering|tug|.\nBolstered|by|exceptional|performances|and|a|clear-eyed|take|on|the|economics|of|dealing|and|the|pathology|of|ghetto|fabulousness|.\nThis|enthralling|documentary|...|is|at|once|playful|and|haunting|,|an|in-depth|portrait|of|an|iconoclastic|artist|who|was|fundamentally|unknowable|even|to|his|closest|friends|.\nSome|remarkable|achival|film|about|how|Shanghai|(|of|all|places|)|served|Jews|who|escaped|the|Holocaust|.\nIn|a|movie|full|of|surprises|,|the|biggest|is|that|Secret|Ballot|is|a|comedy|,|both|gentle|and|biting|.\nThe|urban|landscapes|are|detailed|down|to|the|signs|on|the|kiosks|,|and|the|color|palette|,|with|lots|of|somber|blues|and|pinks|,|is|dreamy|and|evocative|.\nA|manically|generous|Christmas|vaudeville|.\nTony|Gayton|'s|script|does|n't|give|us|anything|we|have|n't|seen|before|,|but|director|D.J.|Caruso|'s|grimy|visual|veneer|and|Kilmer|'s|absorbing|performance|increase|the|gravitational|pull|considerably|.\nA|psychic|journey|deep|into|the|very|fabric|of|Iranian|...|life|.\nIt|'s|a|smartly|directed|,|grown-up|film|of|ideas|.\nWhile|puerile|men|dominate|the|story|,|the|women|shine|.\nUnlike|lots|of|Hollywood|fluff|,|this|has|layered|,|well-developed|characters|and|some|surprises|.\nFor|a|film|that|'s|being|advertised|as|a|comedy|,|Sweet|Home|Alabama|is|n't|as|funny|as|you|'d|hoped|.\nFor|a|film|that|'s|being|advertised|as|a|comedy|,|Sweet|Home|Alabama|is|n't|as|funny|as|you|'d|hoped|.\nVera|has|created|a|provocative|,|absorbing|drama|that|reveals|the|curse|of|a|self-hatred|instilled|by|rigid|social|mores|.\nA|French|film|with|a|more|down-home|flavor|.\nDepending|upon|your|reaction|to|this|movie|,|you|may|never|again|be|able|to|look|at|a|red|felt|Sharpie|pen|without|disgust|,|a|thrill|,|or|the|giggles|.\nWhile|Bollywood\\/Hollywood|will|undoubtedly|provide|its|keenest|pleasures|to|those|familiar|with|Bombay|musicals|,|it|also|has|plenty|for|those|(|like|me|)|who|are|n't|.\nThere|are|times|when|you|wish|that|the|movie|had|worked|a|little|harder|to|conceal|its|contrivances|,|but|Brown|Sugar|turns|out|to|be|a|sweet|and|enjoyable|fantasy|.\nFontaine|masterfully|creates|a|portrait|of|two|strong|men|in|conflict|,|inextricably|entwined|through|family|history|,|each|seeing|himself|in|the|other|,|neither|liking|what|he|sees|.\nAs|Janice|,|Eileen|Walsh|,|an|engaging|,|wide-eyed|actress|whose|teeth|are|a|little|too|big|for|her|mouth|,|infuses|the|movie|with|much|of|its|slender|,|glinting|charm|.\nSure|,|it|'s|contrived|and|predictable|,|but|its|performances|are|so|well|tuned|that|the|film|comes|off|winningly|,|even|though|it|'s|never|as|solid|as|you|want|it|to|be|.\nDong|shows|how|intolerance|has|the|power|to|deform|families|,|then|tear|them|apart|.\nThe|Chateau|belongs|to|Rudd|,|whose|portrait|of|a|therapy-dependent|flakeball|spouting|French|malapropisms|...|is|a|nonstop|hoot|.\nThe|cast|,|collectively|a|successful|example|of|the|lovable-loser|protagonist|,|shows|deft|comic|timing|.\nIt|trusts|the|story|it|sets|out|to|tell|.\nI|could|n't|recommend|this|film|more|.\nAs|a|good|old-fashioned|adventure|for|kids|,|Spirit|:|Stallion|of|the|Cimarron|is|a|winner|.\nAn|effective|portrait|of|a|life|in|stasis|--|of|the|power|of|inertia|to|arrest|development|in|a|dead-end|existence|.\nSucceeds|as|a|well-made|evocation|of|a|subculture|.\n...|an|interesting|slice|of|history|.\nMe|no|lika|da|accents|so|good|,|but|I|thoroughly|enjoyed|the|love|story|.\nScott|Baio|is|turning|in|some|delightful|work|on|indie|projects|.\nIt|'s|an|experience|in|understanding|a|unique|culture|that|is|presented|with|universal|appeal|.\nWhat|'s|surprising|is|how|well|it|holds|up|in|an|era|in|which|computer-generated|images|are|the|norm|.\nBrings|together|some|of|the|biggest|names|in|Japanese|anime|,|with|impressive|results|.\nWonder|,|hope|and|magic|can|never|escape|the|heart|of|the|boy|when|the|right|movie|comes|along|,|especially|if|it|begins|with|the|name|of|Star|Wars\nA|flick|about|our|infantilized|culture|that|is|n't|entirely|infantile|.\nAn|exceptionally|acted|,|quietly|affecting|cop|drama|.\nSensual|,|funny|and|,|in|the|end|,|very|touching|.\nAngel|presents|events|partly|from|the|perspective|of|Aurelie|and|Christelle|,|and|infuses|the|film|with|the|sensibility|of|a|particularly|nightmarish|fairytale|.\nWho|needs|mind-bending|drugs|when|they|can|see|this|,|the|final|part|of|the|`|qatsi|'|trilogy|,|directed|by|Godfrey|Reggio|,|with|music|by|Philip|Glass|?\n(|A|)|smarter|and|much|funnier|version|of|the|old|Police|Academy|flicks|.\nProof|once|again|that|if|the|filmmakers|just|follow|the|books|,|they|ca|n't|go|wrong|.\nBetter|effects|,|better|acting|and|a|hilarious|Kenneth|Branagh|.\nAn|excellent|sequel|.\nBoth|a|grand|tour|through|300|hundred|years|of|Russian|cultural|identity|and|a|stunning|technical|achievement|.\nJust|how|these|families|interact|may|surprise|you|.\nProves|that|some|movie|formulas|do|n't|need|messing|with|--|like|the|big-bug|movie|.\nA|surprisingly|funny|movie|.\nThis|new|movie|version|of|the|Alexandre|Dumas|classic|is|the|stuff|of|high|romance|,|brought|off|with|considerable|wit|.\nLike|all|of|Egoyan|'s|work|,|Ararat|is|fiercely|intelligent|and|uncommonly|ambitious|.\nIf|a|big|musical|number|like|`|Praise|the|Lord|,|He|'s|the|God|of|Second|Chances|'|does|n't|put|you|off|,|this|will|be|an|enjoyable|choice|for|younger|kids|.\n...|fuses|the|events|of|her|life|with|the|imagery|in|her|paintings|so|vividly|that|the|artist|'s|work|may|take|on|a|striking|new|significance|for|anyone|who|sees|the|film|.\n(|Clooney|'s|)|debut|can|be|accused|of|being|a|bit|undisciplined|,|but|it|has|a|tremendous|,|offbeat|sense|of|style|and|humor|that|suggests|he|was|influenced|by|some|of|the|filmmakers|who|have|directed|him|,|especially|the|Coen|brothers|and|Steven|Soderbergh|.\nAlthough|made|on|a|shoestring|and|unevenly|acted|,|conjures|a|Lynch-like|vision|of|the|rotting|underbelly|of|Middle|America|.\nA|piquant|meditation|on|the|things|that|prevent|people|from|reaching|happiness|.\nA|timely|look|back|at|civil|disobedience|,|anti-war|movements|and|the|power|of|strong|voices|.\nRifkin|'s|references|are|...|impeccable|throughout|.\nI|'d|be|lying|if|I|said|my|ribcage|did|n't|ache|by|the|end|of|Kung|Pow|.\nMore|than|their|unique|residences|,|Home|Movie|is|about|the|people|who|live|in|them|,|who|have|carved|their|own|comfortable|niche|in|the|world|and|have|been|kind|enough|to|share|it|.\nThe|movie|is|ingenious|fun|.\nSee|it|.\nThe|combination|of|lightness|and|strictness|in|this|instance|gives|Italian|for|Beginners|an|amiable|aimlessness|that|keeps|it|from|seeming|predictably|formulaic|.\nThe|script|is|smart|and|dark|-|hallelujah|for|small|favors|.\nAn|intelligent|,|multi-layered|and|profoundly|humanist|(|not|to|mention|gently|political|)|meditation|on|the|values|of|knowledge|,|education|,|and|the|affects|of|cultural|and|geographical|displacement|.\nMr.|Polanski|is|in|his|element|here|:|alone|,|abandoned|,|but|still|consoled|by|his|art|,|which|is|more|than|he|has|ever|revealed|before|about|the|source|of|his|spiritual|survival|.\nSpectacular|in|every|sense|of|the|word|,|even|if|you|don|'|t|know|an|Orc|from|a|Uruk-Hai|.\nThis|is|n't|exactly|profound|cinema|,|but|it|'s|good-natured|and|sometimes|quite|funny|.\nThis|is|a|finely|written|,|superbly|acted|offbeat|thriller|.\nTres|Greek|writer|and|star|Nia|Vardalos|has|crafted|here|a|worldly-wise|and|very|funny|script|.\nA|tasty|appetizer|that|leaves|you|wanting|more|.\nIt|gives|devastating|testimony|to|both|people|'s|capacity|for|evil|and|their|heroic|capacity|for|good|.\nThe|film|reminds|me|of|a|vastly|improved|Germanic|version|of|My|Big|Fat|Greek|Wedding|--|with|better|characters|,|some|genuine|quirkiness|and|at|least|a|measure|of|style|.\nThe|difference|is|that|I|truly|enjoyed|most|of|Mostly|Martha|while|I|ne\nMorton|deserves|an|Oscar|nomination|.\nA|colorful|,|vibrant|introduction|to|a|universal|human|impulse|,|lushly|photographed|and|beautifully|recorded|.\nThe|screenplay|never|lets|us|forget|that|Bourne|was|once|an|amoral|assassin|just|like|the|ones|who|are|pursuing|him|...|There|is|never|really|a|true|``|us|''|versus|``|them|''|.\nThe|history|is|fascinating|;|the|action|is|dazzling|.\nThey|just|do|n't|work|in|concert|.\nFor|those|in|search|of|something|different|,|Wendigo|is|a|genuinely|bone-chilling|tale|.\nA|lovely|film|for|the|holiday|season|.\nIt|remains|to|be|seen|whether|Statham|can|move|beyond|the|crime-land|action|genre|,|but|then|again|,|who|says|he|has|to|?\nA|hypnotic|cyber|hymn|and|a|cruel|story|of|youth|culture|.\nIt|'s|a|fairy|tale|that|comes|from|a|renowned|Indian|film|culture|that|allows|Americans|to|finally|revel|in|its|splendor|.\nAt|once|subtle|and|visceral|,|the|film|never|succumbs|to|the|trap|of|the|maudlin|or|tearful|,|offering|instead|with|its|unflinching|gaze|a|measure|of|faith|in|the|future|.\nThe|performances|of|the|children|,|untrained|in|acting|,|have|an|honesty|and|dignity|that|breaks|your|heart|.\nDespite|its|lavish|formalism|and|intellectual|austerity|,|the|film|manages|to|keep|you|at|the|edge|of|your|seat|with|its|shape-shifting|perils|,|political|intrigue|and|brushes|with|calamity|.\nThis|rush|to|profits|has|created|a|predictably|efficient|piece|of|business|notable|largely|for|its|overwhelming|creepiness|,|for|an|eagerness|to|create|images|you|wish|you|had|n't|seen|,|which|,|in|this|day|and|age|,|is|of|course|the|point|.\nAdams|,|with|four|scriptwriters|,|takes|care|with|the|characters|,|who|are|so|believable|that|you|feel|what|they|feel|.\nA|completely|spooky|piece|of|business|that|gets|under|your|skin|and|,|some|plot|blips|aside|,|stays|there|for|the|duration|.\nSuperbly|photographed|and|staged|by|Mendes|with|a|series|of|riveting|set|pieces|the|likes|of|which|mainstream|audiences|have|rarely|seen|.\nThe|ensemble|cast|turns|in|a|collectively|stellar|performance|,|and|the|writing|is|tight|and|truthful|,|full|of|funny|situations|and|honest|observations|.\nNot|quite|as|miraculous|as|its|DreamWorks|makers|would|have|you|believe|,|but|it|more|than|adequately|fills|the|eyes|and|stirs|the|emotions|.\nA|properly|spooky|film|about|the|power|of|spirits|to|influence|us|whether|we|believe|in|them|or|not|.\nThe|lightest|,|most|breezy|movie|Steven|Spielberg|has|made|in|more|than|a|decade|.\nAnd|the|positive|change|in|tone|here|seems|to|have|recharged|him|.\nLike|Edward|Norton|in|American|History|X|,|Ryan|Gosling|(|Murder|By|Numbers|)|delivers|a|magnetic|performance|.\nThis|is|a|very|funny|,|heartwarming|film|.\nIt|has|fun|with|the|quirks|of|family|life|,|but|it|also|treats|the|subject|with|fondness|and|respect|.\nRarely|,|indeed|almost|never|,|is|such|high-wattage|brainpower|coupled|with|pitch-perfect|acting|and|an|exquisite|,|unfakable|sense|of|cinema|.\nThe|leanest|and|meanest|of|Solondz|'s|misanthropic|comedies|.\nA|dark|,|quirky|road|movie|that|constantly|defies|expectation|.\nThere|are|some|movies|that|hit|you|from|the|first|scene|and|you|know|it|'s|going|to|be|a|trip|.\nIgby|Goes|Down|is|one|of|those|movies|.\nOften|messy|and|frustrating|,|but|very|pleasing|at|its|best|moments|,|it|'s|very|much|like|life|itself|.\nA|burst|of|color|,|music|,|and|dance|that|only|the|most|practiced|curmudgeon|could|fail|to|crack|a|smile|at|.\nAn|energetic|,|violent|movie|with|a|momentum|that|never|lets|up|.\nLasker|'s|canny|,|meditative|script|distances|sex|and|love|,|as|Byron|and|Luther|...|realize|they|ca|n't|get|no|satisfaction|without|the|latter|.\nIt|turns|out|to|be|smarter|and|more|diabolical|than|you|could|have|guessed|at|the|beginning|.\nCage|makes|an|unusual|but|pleasantly|haunting|debut|behind|the|camera|.\nNoyce|has|worked|wonders|with|the|material|.\nIt|'s|mostly|a|pleasure|to|watch|.\nAnd|the|reason|for|that|is|a|self-aware|,|often|self-mocking|,|intelligence|.\nThe|Chateau|is|a|risky|venture|that|never|quite|goes|where|you|expect|and|often|surprises|you|with|unexpected|comedy|.\nA|very|well-meaning|movie|,|and|it|will|stand|in|future|years|as|an|eloquent|memorial|to|the|World|Trade|Center|tragedy|.\nThere|are|n't|many|conclusive|answers|in|the|film|,|but|there|is|an|interesting|story|of|pointed|personalities|,|courage|,|tragedy|and|the|little|guys|vs.|the|big|guys|.\nVividly|demonstrates|that|the|director|of|such|Hollywood|blockbusters|as|Patriot|Games|can|still|turn|out|a|small|,|personal|film|with|an|emotional|wallop|.\nA|four|star|performance|from|Kevin|Kline|who|unfortunately|works|with|a|two|star|script|.\nDogtown|&|Z-Boys|evokes|the|blithe|rebel|fantasy|with|the|kind|of|insouciance|embedded|in|the|sexy|demise|of|James|Dean|.\nIf|you|do|n't|flee|,|you|might|be|seduced|.\nIf|you|do|n't|laugh|,|flee|.\nPayne|constructs|a|hilarious|ode|to|middle|America|and|middle|age|with|this|unlikely|odyssey|,|featuring|a|pathetic|,|endearing|hero|who|is|all|too|human|.\nKoury|frighteningly|and|honestly|exposes|one|teenager|'s|uncomfortable|class|resentment|and|,|in|turn|,|his|self-inflicted|retaliation|.\nThe|Santa|Clause|2|proves|itself|a|more|streamlined|and|thought|out|encounter|than|the|original|could|ever|have|hoped|to|be|.\nNow|as|a|former|Gong|Show|addict|,|I|'ll|admit|it|,|my|only|complaint|is|that|we|did|n't|get|more|re-creations|of|all|those|famous|moments|from|the|show|.\nSucceeds|where|its|recent|predecessor|miserably|fails|because|it|demands|that|you|suffer|the|dreadfulness|of|war|from|both|sides|.\nThe|first|Bond|movie|in|ages|that|is|n't|fake|fun|.\nThis|odd|,|poetic|road|movie|,|spiked|by|jolts|of|pop|music|,|pretty|much|takes|place|in|Morton|'s|ever-watchful|gaze|--|and|it|'s|a|tribute|to|the|actress|,|and|to|her|inventive|director|,|that|the|journey|is|such|a|mesmerizing|one|.\nA|film|centering|on|a|traditional|Indian|wedding|in|contemporary|New|Delhi|may|not|sound|like|specialized|fare|,|but|Mira|Nair|'s|film|is|an|absolute|delight|for|all|audiences|.\nA|weird|and|wonderful|comedy|.\nThe|movie|should|jolt|you|out|of|your|seat|a|couple|of|times|,|give|you|a|few|laughs|,|and|leave|you|feeling|like|it|was|worth|your|seven|bucks|,|even|though|it|does|turn|out|to|be|a|bit|of|a|cheat|in|the|end|.\nHas|the|capability|of|effecting|change|and|inspiring|hope|.\nA|first-class|,|thoroughly|involving|B|movie|that|effectively|combines|two|surefire|,|beloved|genres|--|the|prison|flick|and|the|fight|film|.\nLaBute|'s|careful|handling|makes|the|material|seem|genuine|rather|than|pandering|.\nIn|between|all|the|emotional|seesawing|,|it|'s|hard|to|figure|the|depth|of|these|two|literary|figures|,|and|even|the|times|in|which|they|lived|.\nBut|they|fascinate|in|their|recklessness|.\nDeath|to|Smoochy|is|often|very|funny|,|but|what|'s|even|more|remarkable|is|the|integrity|of|DeVito|'s|misanthropic|vision|.\nA|beautiful|,|entertaining|two|hours|.\nYou|get|the|idea|,|though|,|that|Kapur|intended|the|film|to|be|more|than|that|.\nA|wonderful|,|ghastly|film|.\nAmid|the|new|populist|comedies|that|underscore|the|importance|of|family|tradition|and|familial|community|,|one|would|be|hard-pressed|to|find|a|movie|with|a|bigger|,|fatter|heart|than|Barbershop|.\nParris|'|performance|is|credible|and|remarkably|mature|.\n`|Enigma|'|is|the|kind|of|engaging|historical|drama|that|Hollywood|appears|to|have|given|up|on|in|favor|of|sentimental|war|movies|in|the|vein|of|`|We|Were|Soldiers|.|'\nMunch|'s|screenplay|is|tenderly|observant|of|his|characters|.\nHe|watches|them|as|they|float|within|the|seas|of|their|personalities|.\nHis|scenes|are|short|and|often|unexpected|.\nIt|grabs|you|in|the|dark|and|shakes|you|vigorously|for|its|duration|.\nLeigh|'s|daring|here|is|that|without|once|denying|the|hardscrabble|lives|of|people|on|the|economic|fringes|of|Margaret|Thatcher|'s|ruinous|legacy|,|he|insists|on|the|importance|of|those|moments|when|people|can|connect|and|express|their|love|for|each|other|.\nHashiguchi|vividly|captures|the|way|young|Japanese|live|now|,|chafing|against|their|culture|'s|manic|mix|of|millennial|brusqueness|and|undying|,|traditional|politesse|.\nUneven|but|a|lot|of|fun|.\nI|know|that|I|'ll|never|listen|to|Marvin|Gaye|or|the|Supremes|the|same|way|again\nThe|two|leads|,|nearly|perfect|in|their|roles|,|bring|a|heart|and|reality|that|buoy|the|film|,|and|at|times|,|elevate|it|to|a|superior|crime|movie|.\nNot|as|good|as|The|Full|Monty|,|but|a|really|strong|second|effort|.\nWhenever|it|threatens|to|get|bogged|down|in|earnest|dramaturgy|,|a|stirring|visual|sequence|like|a|surge|through|swirling|rapids|or|a|leap|from|pinnacle|to|pinnacle|rouses|us|.\nIf|horses|could|fly|,|this|is|surely|what|they|'d|look|like|.\nUnfolds|as|one|of|the|most|politically|audacious|films|of|recent|decades|from|any|country|,|but|especially|from|France|.\nThis|real-life|Hollywood|fairy-tale|is|more|engaging|than|the|usual|fantasies|Hollywood|produces|.\nThe|graphic|carnage|and|re-creation|of|war-torn|Croatia|is|uncomfortably|timely|,|relevant|,|and|sickeningly|real|.\nLeft|me|with|the|visceral|sensation|of|longing|,|lasting|traces|of|Charlotte|'s|web|of|desire|and|desperation|.\nThe|characters|are|more|deeply|thought|through|than|in|most|`|right-thinking|'|films|.\nCrammed|with|incident|,|and|bristles|with|passion|and|energy|.\nIt|'s|fun|,|splashy|and|entertainingly|nasty|.\nA|simple|tale|of|an|unlikely|friendship|,|but|thanks|to|the|gorgeous|locales|and|exceptional|lead|performances|,|it|has|considerable|charm|.\nIt|might|be|`|easier|'|to|watch|on|video|at|home|,|but|that|should|n't|stop|die-hard|French|film|connoisseurs|from|going|out|and|enjoying|the|big-screen|experience|.\nThere|'s|very|little|sense|to|what|'s|going|on|here|,|but|the|makers|serve|up|the|cliches|with|considerable|dash|.\nWitty|,|contemplative|,|and|sublimely|beautiful|.\nA|surprisingly|`|solid|'|achievement|by|director|Malcolm|D.|Lee|and|writer|John|Ridley|.\nWoven|together|handsomely|,|recalling|sixties|'|rockumentary|milestones|from|Lonely|Boy|to|Do|n't|Look|Back|.\nThis|is|pure|,|exciting|moviemaking|.\nYou|wo|n't|exactly|know|what|'s|happening|but|you|'ll|be|blissfully|exhausted|.\nThe|1960s|rebellion|was|misdirected|:|you|ca|n't|fight|your|culture|.\nWorks|because|Reno|does|n't|become|smug|or|sanctimonious|towards|the|audience|.\nNettelbeck|...|has|a|pleasing|way|with|a|metaphor|.\nA|pure|participatory|event|that|malnourished|intellectuals|will|gulp|down|in|a|frenzy|.\nThe|cast|delivers|without|sham|the|raw-nerved|story|.\nSteven|Soderbergh|'s|digital|video|experiment|is|a|clever|and|cutting|,|quick|and|dirty|look|at|modern|living|and|movie|life|.\nThe|film|'s|highlight|is|definitely|its|screenplay|,|both|for|the|rhapsodic|dialogue|that|jumps|off|the|page|,|and|for|the|memorable|character|creations|.\nIt|lets|you|brush|up|against|the|humanity|of|a|psycho|,|without|making|him|any|less|psycho|.\nSillier|,|cuter|,|and|shorter|than|the|first|(|as|best|I|remember|)|,|but|still|a|very|good|time|at|the|cinema|.\nThe|film|is|bright|and|flashy|in|all|the|right|ways|.\nElegant|and|eloquent|(|meditation|)|on|death|and|that|most|elusive|of|passions|,|love|.\nCut|through|the|layers|of|soap-opera|emotion|and|you|find|a|scathing|portrayal|of|a|powerful|entity|strangling|the|life|out|of|the|people|who|want|to|believe|in|it|the|most|.\nFilmmaker|Tian|Zhuangzhuang|triumphantly|returns|to|narrative|filmmaking|with|a|visually|masterful|work|of|quiet|power|.\nIt|excels|because|,|unlike|so|many|other|Hollywood|movies|of|its|ilk|,|it|offers|hope|.\nShot|in|rich|,|shadowy|black-and-white|,|Devils|chronicles|,|with|increasingly|amused|irony|,|the|relationship|between|reluctant|captors|and|befuddled|captives|.\nThere|'s|no|clear|picture|of|who|killed|Bob|Crane|.\nBut|here|'s|a|glimpse|at|his|life|.\nSpectacularly|beautiful|,|not|to|mention|mysterious|,|sensual|,|emotionally|intense|,|and|replete|with|virtuoso|throat-singing|.\nA|summer|entertainment|adults|can|see|without|feeling|embarrassed|,|but|it|could|have|been|more|.\nSparse|but|oddly|compelling|.\nA|stirring|,|funny|and|finally|transporting|re-imagining|of|Beauty|and|the|Beast|and|1930s|horror|films\nThe|Pinochet|Case|is|a|searing|album|of|remembrance|from|those|who|,|having|survived|,|suffered|most|.\nA|sweet-tempered|comedy|that|forgoes|the|knee-jerk|misogyny|that|passes|for|humor|in|so|many|teenage|comedies|.\nArgento|,|at|only|26|,|brings|a|youthful|,|out-to-change-the-world|aggressiveness|to|the|project|,|as|if|she|'s|cut|open|a|vein|and|bled|the|raw|film|stock|.\nWith|so|many|bad|romances|out|there|,|this|is|the|kind|of|movie|that|deserves|a|chance|to|shine|.\nBrash|,|intelligent|and|erotically|perplexing|,|Haneke|'s|portrait|of|an|upper|class|Austrian|society|and|the|suppression|of|its|tucked|away|demons|is|uniquely|felt|with|a|sardonic|jolt|.\nThough|Jackson|does|n't|always|succeed|in|integrating|the|characters|in|the|foreground|into|the|extraordinarily|rich|landscape|,|it|must|be|said|that|he|is|an|imaginative|filmmaker|who|can|see|the|forest|for|the|trees|.\n``|The|Quiet|American|''|begins|in|Saigon|in|1952|.\nThat|'s|its|first|sign|of|trouble|.\nA|dazzling|thing|to|behold|--|as|long|as|you|'re|wearing|the|somewhat|cumbersome|3D|goggles|the|theater|provides|.\nBe|patient|with|the|lovely|Hush|!\nand|your|reward|will|be|a|thoughtful|,|emotional|movie|experience|.\nThe|large-format|film|is|well|suited|to|capture|these|musicians|in|full|regalia|and|the|incredible|IMAX|sound|system|lets|you|feel|the|beat|down|to|your|toes|.\nGodard|has|never|made|a|more|sheerly|beautiful|film|than|this|unexpectedly|moving|meditation|on|love|,|history|,|memory|,|resistance|and|artistic|transcendence|.\nThe|kind|of|movie|that|comes|along|only|occasionally|,|one|so|unconventional|,|gutsy|and|perfectly|executed|it|takes|your|breath|away|.\nUnlike|most|surf|movies|,|Blue|Crush|thrillingly|uses|modern|technology|to|take|the|viewer|inside|the|wave|.\nBy|the|end|you|ca|n't|help|but|feel|`|stoked|.|'\nThe|off-center|humor|is|a|constant|,|and|the|ensemble|gives|it|a|buoyant|delivery|.\nA|tasty|slice|of|droll|whimsy|.\nMike|Leigh|populates|his|movie|with|a|wonderful|ensemble|cast|of|characters|that|bring|the|routine|day|to|day|struggles|of|the|working|class|to|life\nAwesome|work|:|ineffable|,|elusive|,|yet|inexplicably|powerful\nSparkling|,|often|hilarious|romantic|jealousy|comedy|...|Attal|looks|so|much|like|a|young|Robert|DeNiro|that|it|seems|the|film|should|instead|be|called|`|My|Husband|Is|Travis|Bickle|'|.\nEven|if|you|'re|an|agnostic|carnivore|,|you|can|enjoy|much|of|Jonah|simply|,|and|gratefully|,|as|laugh-out-loud|lunacy|with|a|pronounced|Monty|Pythonesque|flavor|.\nWhere|Bowling|for|Columbine|is|at|its|most|valuable|is|in|its|examination|of|America|'s|culture|of|fear|as|a|root|cause|of|gun|violence|.\nThe|result|is|somewhat|satisfying|--|it|still|comes|from|Spielberg|,|who|has|never|made|anything|that|was|n't|at|least|watchable|.\nBut|it|'s|also|disappointing|to|a|certain|degree|.\nThe|all-French|cast|is|marveilleux|.\nThere|'s|a|lot|to|recommend|Read|My|Lips|.\nA|minor|film|with|major|pleasures|from|Portuguese|master|Manoel|de|Oliviera|...\nBrosnan|gives|a|portrayal|as|solid|and|as|perfect|as|his|outstanding|performance|as|Bond|in|Die|Another|Day|.\nAudiences|are|advised|to|sit|near|the|back|and|squint|to|avoid|noticing|some|truly|egregious|lip-non-synching|,|but|otherwise|the|production|is|suitably|elegant|.\nThe|movie|is|...|very|funny|as|you|peek|at|it|through|the|fingers|in|front|of|your|eyes|.\nNicks|sustains|the|level|of|exaggerated|,|stylized|humor|throughout|by|taking|your|expectations|and|twisting|them|just|a|bit|.\nA|refreshing|change|from|the|usual|whoopee-cushion|effort|aimed|at|the|youth|market|.\nIt|finds|its|moviegoing|pleasures|in|the|tiny|events|that|could|make|a|person|who|has|lived|her|life|half-asleep|suddenly|wake|up|and|take|notice|.\n...|an|enjoyably|frothy|`|date|movie|'|...\nThe|genius|of|the|work|speaks|volumes|,|offering|up|a|hallucinatory|dreamscape|that|frustrates|and|captivates|.\nTwo|Weeks|Notice|has|appeal|beyond|being|a|Sandra|Bullock|vehicle|or|a|standard|romantic|comedy|.\nThe|movie|'s|seams|may|show|...|but|Pellington|gives|``|Mothman|''|an|irresistibly|uncanny|ambience|that|goes|a|long|way|toward|keeping|the|picture|compelling|.\nIf|Mostly|Martha|is|mostly|unsurprising|,|it|'s|still|a|sweet|,|even|delectable|diversion|.\nA|wild|comedy|that|could|only|spring|from|the|demented|mind|of|the|writer|of|Being|John|Malkovich|.\nSchnitzler|does|a|fine|job|contrasting|the|sleekness|of|the|film|'s|present|with|the|playful|paranoia|of|the|film|'s|past|.|'\nA|fresh-faced|,|big-hearted|and|frequently|funny|thrill|ride|for|the|kiddies|,|with|enough|eye|candy|and|cheeky|wit|to|keep|parents|away|from|the|concession|stand|.|'\nMana|gives|us|compelling|,|damaged|characters|who|we|want|to|help|--|or|hurt|.\nThe|sentimental|script|has|problems|,|but|the|actors|pick|up|the|slack|.\nA|good|documentary|can|make|interesting|a|subject|you|thought|would|leave|you|cold|.\nA|case|in|point|:|Doug|Pray|'s|Scratch|.\nAbderrahmane|Sissako|'s|Heremakono|(|Waiting|for|Happiness|)|is|an|elegiac|portrait|of|a|transit|city|on|the|West|African|coast|struggling|against|foreign|influences|.\nIn|XXX|,|Diesel|is|that|rare|creature|--|an|action|hero|with|table|manners|,|and|one|who|proves|that|elegance|is|more|than|tattoo|deep|.\nAn|engrossing|and|grim|portrait|of|hookers|:|what|they|think|of|themselves|and|their|clients|.\nIt|all|plays|out|...|like|a|high-end|John|Hughes|comedy|,|a|kind|of|Elder|Bueller|'s|Time|Out|.\nThe|film|is|enriched|by|an|imaginatively|mixed|cast|of|antic|spirits|,|headed|by|Christopher|Plummer|as|the|subtlest|and|most|complexly|evil|Uncle|Ralph|I|'ve|ever|seen|in|the|many|film|and|stage|adaptations|of|the|work|.\nThis|is|one|of|the|rarest|kinds|of|films|:|a|family-oriented|non-Disney|film|that|is|actually|funny|without|hitting|below|the|belt|.\nIt|is|refreshingly|undogmatic|about|its|characters|.\nA|moving|and|important|film|.\nDeep|intelligence|and|a|warm|,|enveloping|affection|breathe|out|of|every|frame|.\nFamuyiwa|'s|feature|deals|with|its|subject|matter|in|a|tasteful|,|intelligent|manner|,|rather|than|forcing|us|to|endure|every|plot|contrivance|that|the|cliché-riddled|genre|can|offer|.\nShowtime|is|a|fine-looking|film|with|a|bouncy|score|and|a|clutch|of|lively|songs|for|deft|punctuation|.\nSweet|Home|Alabama|is|n't|going|to|win|any|Academy|Awards|,|but|this|date-night|diversion|will|definitely|win|some|hearts|.\na|cruelly|funny|twist|on|teen|comedy|packed|with|inventive|cinematic|tricks|and|an|ironically|killer|soundtrack\nA|gracious|,|eloquent|film|that|by|its|end|offers|a|ray|of|hope|to|the|refugees|able|to|look|ahead|and|resist|living|in|a|past|forever|lost|.\nEven|though|many|of|these|guys|are|less|than|adorable|(|their|lamentations|are|pretty|much|self-centered|)|,|there|'s|something|vital|about|the|movie|.\nA|tour|de|force|drama|about|the|astonishingly|pivotal|role|of|imagination|in|the|soulful|development|of|two|rowdy|teenagers|.\nIt|is|a|strength|of|a|documentary|to|disregard|available|bias|,|especially|as|temptingly|easy|as|it|would|have|been|with|this|premise|.\nWhen|twentysomething|hotsies|make|movies|about|their|lives|,|hard-driving|narcissism|is|a|given|,|but|what|a|world|we|'d|live|in|if|Argento|'s|Hollywood|counterparts|...|had|this|much|imagination|and|nerve|.\nMaryam|is|more|timely|now|than|ever|.\nAn|eloquent|,|reflective|and|beautifully|acted|meditation|on|both|the|profoundly|devastating|events|of|one|year|ago|and|the|slow|,|painful|healing|process|that|has|followed|in|their|wake|.\nPiccoli|gives|a|superb|performance|full|of|deep|feeling|.\nWhat|a|concept|,|what|an|idea|,|what|a|thrill|ride|.\nThis|is|a|more|fascinating|look|at|the|future|than|``|Bladerunner|''|and|one|of|the|most|high-concept|sci|fi|adventures|attempted|for|the|screen|.\nThe|rare|movie|that|'s|as|crisp|and|to|the|point|as|the|novel|on|which|it|'s|based|.\nA|film|of|epic|scale|with|an|intimate|feeling|,|a|saga|of|the|ups|and|downs|of|friendships|.\nSayles|has|an|eye|for|the|ways|people|of|different|ethnicities|talk|to|and|about|others|outside|the|group|.\n``|Nicholas|Nickleby|''|is|a|perfect|family|film|to|take|everyone|to|since|there|'s|no|new|``|A|Christmas|Carol|''|out|in|the|theaters|this|year|.\nCharlie|Hunnam|has|the|twinkling|eyes|,|repressed|smile|and|determined|face|needed|to|carry|out|a|Dickensian|hero|.\nNiccol|the|filmmaker|merges|his|collaborators|'|symbolic|images|with|his|words|,|insinuating|,|for|example|,|that|in|Hollywood|,|only|God|speaks|to|the|press\nKhouri|manages|,|with|terrific|flair|,|to|keep|the|extremes|of|screwball|farce|and|blood-curdling|family|intensity|on|one|continuum|.\nImpresses|as|a|skillfully|assembled|,|highly|polished|and|professional|adaptation|...|just|about|as|chilling|and|unsettling|as|`|Manhunter|'|was|.\nIt|'s|a|solid|movie|about|people|whose|lives|are|anything|but|.\nThough|a|touch|too|Arthouse|101|in|its|poetic|symbolism|,|Heaven|proves|to|be|a|good|match|of|the|sensibilities|of|two|directors|.\nI|simply|ca|n't|recommend|it|enough|.\nWiseman|reveals|the|victims|of|domestic|abuse|in|all|of|their|pity|and|terror|.\nMuccino|,|who|directed|from|his|own|screenplay|,|is|a|canny|crowd|pleaser|,|and|The|Last|Kiss|...|provides|more|than|enough|sentimental|catharsis|for|a|satisfying|evening|at|the|multiplex|.\nWe|want|the|funk|-|and|this|movie|'s|got|it|.\nWow|,|so|who|knew|Charles|Dickens|could|be|so|light-hearted|?\nMany|went|to|see|the|attraction|for|the|sole|reason|that|it|was|hot|outside|and|there|was|air|conditioning|inside|,|and|I|do|n't|think|that|A.C.|will|help|this|movie|one|bit|.\nThe|storylines|are|woven|together|skilfully|,|the|magnificent|swooping|aerial|shots|are|breathtaking|,|and|the|overall|experience|is|awesome|.\nA|miraculous|movie|,|I|'m|Going|Home|is|so|slight|,|yet|overflows|with|wisdom|and|emotion|.\nBaran|is|shockingly|devoid|of|your|typical|Majid|Majidi|shoe-loving|,|crippled|children|.\nEvery|moment|crackles|with|tension|,|and|by|the|end|of|the|flick|,|you|'re|on|the|edge|of|your|seat|.\nA|fine|,|rousing|,|G-rated|family|film|,|aimed|mainly|at|little|kids|but|with|plenty|of|entertainment|value|to|keep|grown-ups|from|squirming|in|their|seats|.\nThe|series|'|message|about|making|the|right|choice|in|the|face|of|tempting|alternatives|remains|prominent|,|as|do|the|girls|'|amusing|personalities|.\nRichly|entertaining|and|suggestive|of|any|number|of|metaphorical|readings|.\nA|compelling|allegory|about|the|last|days|of|Germany|'s|democratic|Weimar|Republic|.\nOffers|a|guilt-free|trip|into|feel-good|territory|.\nA|B-movie|you|can|sit|through|,|enjoy|on|a|certain|level|and|then|forget|.\nDevos|delivers|a|perfect|performance|that|captures|the|innocence|and|budding|demons|within|a|wallflower|.\nDisappointingly|,|the|characters|are|too|strange|and|dysfunctional|,|Tom|included|,|to|ever|get|under|the|skin|,|but|this|is|compensated|in|large|part|by|the|off-the-wall|dialogue|,|visual|playfulness|and|the|outlandishness|of|the|idea|itself|.\nDirector|Todd|Solondz|has|made|a|movie|about|critical|reaction|to|his|two|previous|movies|,|and|about|his|responsibility|to|the|characters|that|he|creates|.\nThe|word|that|comes|to|mind|,|while|watching|Eric|Rohmer|'s|tribute|to|a|courageous|Scottish|lady|,|is|painterly|.\nA|fascinating|case|study|of|flower-power|liberation|--|and|the|price|that|was|paid|for|it|.\nBluer|than|the|Atlantic|and|more|biologically|detailed|than|an|autopsy|,|the|movie|...|is|,|also|,|frequently|hilarious|.\nReally|is|a|pan-American|movie|,|with|moments|of|genuine|insight|into|the|urban|heart|.\nAn|overly|familiar|scenario|is|made|fresh|by|an|intelligent|screenplay|and|gripping|performances|in|this|low-budget|,|video-shot|,|debut|indie|effort|.\nPeppering|this|urban|study|with|references|to|Norwegian|folktales|,|Villeneuve|creates|in|Maelstrom|a|world|where|the|bizarre|is|credible|and|the|real|turns|magical|.\nOng|'s|promising|debut|is|a|warm|and|well-told|tale|of|one|recent|Chinese|immigrant|'s|experiences|in|New|York|City|.\nThat|the|real|Antwone|Fisher|was|able|to|overcome|his|personal|obstacles|and|become|a|good|man|is|a|wonderful|thing|;|that|he|has|been|able|to|share|his|story|so|compellingly|with|us|is|a|minor|miracle|.\nThere|'s|not|much|to|Fatale|,|outside|of|its|stylish|surprises|...|but|that|'s|OK|.\nWhat|redeems|the|film|is|the|cast|,|particularly|the|Ya-Yas|themselves|.\nBeautiful|,|cold|,|oddly|colorful|and|just|plain|otherworldly|,|a|freaky|bit|of|art|that|'s|there|to|scare|while|we|delight|in|the|images|.\nIt|'s|up|to|(|Watts|)|to|lend|credibility|to|this|strange|scenario|,|and|her|presence|succeeds|in|making|us|believe|.\nThe|film|is|darkly|atmospheric|,|with|Herrmann|quietly|suggesting|the|sadness|and|obsession|beneath|Hearst|'s|forced|avuncular|chortles|.\nShyamalan|takes|a|potentially|trite|and|overused|concept|(|aliens|come|to|Earth|)|and|infuses|it|into|a|rustic|,|realistic|,|and|altogether|creepy|tale|of|hidden|invasion|.\n...|the|story|,|like|Ravel|'s|Bolero|,|builds|to|a|crescendo|that|encompasses|many|more|paths|than|we|started|with|.\nIt|'s|plotless|,|shapeless|--|and|yet|,|it|must|be|admitted|,|not|entirely|humorless|.\nIndeed|,|the|more|outrageous|bits|achieve|a|shock-you-into-laughter|intensity|of|almost|Dadaist|proportions|.\nGondry|'s|direction|is|adequate|...|but|what|gives|Human|Nature|its|unique|feel|is|Kaufman|'s|script|.\nThe|film|'s|plot|may|be|shallow|,|but|you|'ve|never|seen|the|deep|like|you|see|it|in|these|harrowing|surf|shots|.\nWith|a|large|cast|representing|a|broad|cross-section|,|Tavernier|'s|film|bounds|along|with|the|rat-a-tat|energy|of|``|His|Girl|Friday|,|''|maintaining|a|light|touch|while|tackling|serious|themes|.\nThe|observations|of|this|social\\/economic\\/urban|environment|are|canny|and|spiced|with|irony|.\nRenner|carries|much|of|the|film|with|a|creepy|and|dead-on|performance|.\nJarecki|and|Gibney|do|find|enough|material|to|bring|Kissinger|'s|record|into|question|and|explain|how|the|diplomat|'s|tweaked|version|of|statecraft|may|have|cost|thousands|and|possibly|millions|of|lives|.\nThe|spaniel-eyed|Jean|Reno|infuses|Hubert|with|a|mixture|of|deadpan|cool|,|wry|humor|and|just|the|measure|of|tenderness|required|to|give|this|comic|slugfest|some|heart|.\nAniston|has|at|last|decisively|broken|with|her|Friends|image|in|an|independent|film|of|satiric|fire|and|emotional|turmoil|.\nA|mildly|enjoyable|if|toothless|adaptation|of|a|much|better|book|.\nUnexpected|,|and|often|contradictory|,|truths|emerge|.\n300|years|of|Russian|history|and|culture|compressed|into|an|evanescent|,|seamless|and|sumptuous|stream|of|consciousness|.\nIntelligent|,|caustic|take|on|a|great|writer|and|dubious|human|being|.\nMay|take|its|sweet|time|to|get|wherever|it|'s|going|,|but|if|you|have|the|patience|for|it|,|you|wo|n't|feel|like|it|'s|wasted|yours|.\nLess|the|sensational|true-crime|hell-jaunt|purists|might|like|and|more|experimental|in|its|storytelling|(|though|no|less|horrifying|for|it|)|.\nThe|film|is|one|of|the|year|'s|best|.\nEerily|accurate|depiction|of|depression|.\n...|a|delicious|crime|drama|on|par|with|the|slickest|of|Mamet|.\nCharming|and|witty|,|it|'s|also|somewhat|clumsy|.\nDirected|with|purpose|and|finesse|by|England|'s|Roger|Mitchell|,|who|handily|makes|the|move|from|pleasing|,|relatively|lightweight|commercial|fare|such|as|Notting|Hill|to|commercial|fare|with|real|thematic|heft|.\nEscapes|the|precious|trappings|of|most|romantic|comedies|,|infusing|into|the|story|very|real|,|complicated|emotions|.\nThis|big|screen|caper|has|a|good|bark|,|far|from|being|a|bow-wow|.\n(|Allen|)|manages|to|breathe|life|into|this|somewhat|tired|premise|.\nI|have|two|words|to|say|about|Reign|of|Fire|.\nGreat|dragons|!\nBy|surrounding|us|with|hyper-artificiality|,|Haynes|makes|us|see|familiar|issues|,|like|racism|and|homophobia|,|in|a|fresh|way|.\nA|deliberative|account|of|a|lifestyle|characterized|by|its|surface-obsession|--|one|that|typifies|the|delirium|of|post|,|pre|,|and|extant|stardom|.\nSuperb|production|values|&|Christian|Bale|'s|charisma|make|up|for|a|derivative|plot|.\nThe|film|has|the|courage|of|its|convictions|and|excellent|performances|on|its|side|.\nI|know|I|should|n't|have|laughed|,|but|hey|,|those|farts|got|to|my|inner|nine-year-old|.\nA|movie|that|will|thrill|you|,|touch|you|and|make|you|laugh|as|well|.\nIt|'s|a|smart|,|funny|look|at|an|arcane|area|of|popular|culture|,|and|if|it|is|n't|entirely|persuasive|,|it|does|give|exposure|to|some|talented|performers|.\nMore|vaudeville|show|than|well-constructed|narrative|,|but|on|those|terms|it|'s|inoffensive|and|actually|rather|sweet|.\nThe|case|is|a|convincing|one|,|and|should|give|anyone|with|a|conscience|reason|to|pause|.\nThe|actresses|find|their|own|rhythm|and|protect|each|other|from|the|script|'s|bad|ideas|and|awkwardness|.\nDiverting|French|comedy|in|which|a|husband|has|to|cope|with|the|pesky|moods|of|jealousy|.\nCaptivates|and|shows|how|a|skillful|filmmaker|can|impart|a|message|without|bludgeoning|the|audience|over|the|head|.\nThere|is|a|welcome|lack|of|pretension|about|the|film|,|which|very|simply|sets|out|to|entertain|and|ends|up|delivering|in|good|measure|.\nCoy|but|exhilarating|,|with|really|solid|performances|by|Ving|Rhames|and|Wesley|Snipes|.\nIt|is|a|likable|story|,|told|with|competence|.\nNot|only|does|Spider-Man|deliver|,|but|I|suspect|it|might|deliver|again|and|again|.\nTackles|the|difficult|subject|of|grief|and|loss|with|such|life-embracing|spirit|that|the|theme|does|n't|drag|an|audience|down|.\nA|small|movie|with|a|big|impact|.\nThe|movie|,|despite|its|rough|edges|and|a|tendency|to|sag|in|certain|places|,|is|wry|and|engrossing|.\nI|admire|the|closing|scenes|of|the|film|,|which|seem|to|ask|whether|our|civilization|offers|a|cure|for|Vincent|'s|complaint|.\nLike|Rudy|Yellow|Lodge|,|Eyre|needs|to|take|a|good|sweat|to|clarify|his|cinematic|vision|before|his|next|creation|and|remember|the|lessons|of|the|trickster|spider|.\na|delightful|romantic|comedy|with|plenty|of|bite|.\nIt|'s|far|from|a|frothy|piece|,|and|the|characters|are|complex|,|laden|with|plenty|of|baggage|and|tinged|with|tragic|undertones|.\nUsing|an|endearing|cast|,|writer\\/director|Dover|Kosashvili|takes|a|slightly|dark|look|at|relationships|,|both|sexual|and|kindred|.\nWhen|a|movie|has|stuck|around|for|this|long|,|you|know|there|'s|something|there|.\nIt|'s|that|good|.\nSmart|,|sassy|interpretation|of|the|Oscar|Wilde|play|.\nForget|about|one|Oscar|nomination|for|Julianne|Moore|this|year|-|she|should|get|all|five|.\nJapanese|director|Shohei|Imamura|'s|latest|film|is|an|odd|but|ultimately|satisfying|blend|of|the|sophomoric|and|the|sublime|.\nKwan|is|a|master|of|shadow|,|quietude|,|and|room|noise|,|and|Lan|Yu|is|a|disarmingly|lived-in|movie|.\nWhile|the|plot|follows|a|predictable|connect-the-dots|course|...|director|John|Schultz|colors|the|picture|in|some|evocative|shades|.\nKatz|'s|documentary|does|n't|have|much|panache|,|but|with|material|this|rich|it|does|n't|need|it|.\nWe|get|an|image|of|Big|Papa|spanning|history|,|rather|than|suspending|it|.\nEvelyn|'s|strong|cast|and|surehanded|direction|make|for|a|winning|,|heartwarming|yarn|.\nA|conventional|but|heartwarming|tale|.\nThis|is|one|of|the|outstanding|thrillers|of|recent|years|.\nSkins|has|a|desolate|air|,|but|Eyre|,|a|Native|American|raised|by|white|parents|,|manages|to|infuse|the|rocky|path|to|sibling|reconciliation|with|flashes|of|warmth|and|gentle|humor|.\nA|film|of|quiet|power|.\nMore|concerned|with|overall|feelings|,|broader|ideas|,|and|open-ended|questions|than|concrete|story|and|definitive|answers|,|Soderbergh|'s|Solaris|is|a|gorgeous|and|deceptively|minimalist|cinematic|tone|poem|.\nAn|intelligent|romantic|thriller|of|a|very|old-school|kind|of|quality|.\nThe|sword|fighting|is|well|done|and|Auteuil|is|a|goofy|pleasure|.\nYes|,|MIBII|is|rote|work|and|predictable|,|but|with|a|philosophical|visual|coming|right|at|the|end|that|extravagantly|redeems|it|.\nFilm|ca|n't|quite|maintain|its|initial|momentum|,|but|remains|sporadically|funny|throughout|.\nO|Fantasma|is|boldly|,|confidently|orchestrated|,|aesthetically|and|sexually|,|and|its|impact|is|deeply|and|rightly|disturbing|.\nIt|'s|still|Adam|Sandler|,|and|it|'s|not|Little|Nicky|.\nAnd|for|many|of|us|,|that|'s|good|enough|.\nHere|'s|yet|another|cool|crime|movie|that|actually|manages|to|bring|something|new|into|the|mix|.\nLee|'s|achievement|extends|to|his|supple|understanding|of|the|role|that|Brown|played|in|American|culture|as|an|athlete|,|a|movie|star|,|and|an|image|of|black|indomitability|.\nKaufman|and|Jonze|take|huge|risks|to|ponder|the|whole|notion|of|passion|--|our|desire|as|human|beings|for|passion|in|our|lives|and|the|emptiness|one|feels|when|it|is|missing|.\nIt|tends|to|remind|one|of|a|really|solid|Woody|Allen|film|,|with|its|excellent|use|of|New|York|locales|and|sharp|writing\nWhile|centered|on|the|life|experiences|of|a|particular|theatrical|family|,|this|marvelous|documentary|touches|--|ever|so|gracefully|--|on|the|entire|history|of|the|Yiddish|theater|,|both|in|America|and|Israel|.\nThe|film|,|despite|the|gratuitous|cinematic|distractions|impressed|upon|it|,|is|still|good|fun|.\nThe|immersive|powers|of|the|giant|screen|and|its|hyper-realistic|images|are|put|to|perfect|use|in|the|breathtakingly|beautiful|outer-space|documentary|Space|Station|3D|.\nHas|an|unmistakable|,|easy|joie|de|vivre|.\nMore|than|anything|else|,|Kissing|Jessica|Stein|injects|freshness|and|spirit|into|the|romantic|comedy|genre|,|which|has|been|held|hostage|by|generic|scripts|that|seek|to|remake|Sleepless|in|Seattle|again|and|again|.\nThis|movie|has|the|usual|impossible|stunts|...|But|it|has|just|as|many|scenes|that|are|lean|and|tough|enough|to|fit|in|any|modern|action|movie|.\nMostly|works|because|of|the|universal|themes|,|earnest|performances|...|and|excellent|use|of|music|by|India|'s|popular|Gulzar|and|Jagjit|Singh|.\n...|the|one|thing|this|Wild|film|has|that|other|Imax|films|do|n't|:|chimps|,|lots|of|chimps|,|all|blown|up|to|the|size|of|a|house|.\nThat|'s|fun|for|kids|of|any|age|.\nWriter\\/director|David|Caesar|ladles|on|the|local|flavour|with|a|hugely|enjoyable|film|about|changing|times|,|clashing|cultures|and|the|pleasures|of|a|well-made|pizza|.\nRarely|have|I|seen|a|film|so|willing|to|champion|the|fallibility|of|the|human|heart|.\nHolofcener|rejects|patent|solutions|to|dramatize|life|'s|messiness|from|inside|out|,|in|all|its|strange|quirks|.\nLike|The|Full|Monty|,|this|is|sure|to|raise|audience|'s|spirits|and|leave|them|singing|long|after|the|credits|roll|.\n...|a|gleefully|grungy|,|hilariously|wicked|black|comedy|...\nKinnear|and|Dafoe|give|what|may|be|the|performances|of|their|careers|.\nAll|in|all|,|a|great|party|.\nA|moving|story|of|determination|and|the|human|spirit|.\n``|Brown|Sugar|''|admirably|aspires|to|be|more|than|another|``|Best|Man|''|clone|by|weaving|a|theme|throughout|this|funny|film|.\n(|Gulpilil|)|is|a|commanding|screen|presence|,|and|his|character|'s|abundant|humanism|makes|him|the|film|'s|moral|compass|.\nAn|effortlessly|accomplished|and|richly|resonant|work|.\nIn|some|ways|,|Lagaan|is|quintessential|Bollywood|.\nExcept|it|'s|much|,|much|better|.\nThough|it|never|rises|to|its|full|potential|as|a|film|,|still|offers|a|great|deal|of|insight|into|the|female|condition|and|the|timeless|danger|of|emotions|repressed|.\nScotland|looks|wonderful|,|the|fans|are|often|funny|fanatics|,|the|showdown|sure|beats|a|bad|day|of|golf|.\nWhat|enlivens|this|film|,|beyond|the|astute|direction|of|Cardoso|and|beautifully|detailed|performances|by|all|of|the|actors|,|is|a|note|of|defiance|over|social|dictates|.\nThe|emotion|is|impressively|true|for|being|so|hot-blooded|,|and|both|leads|are|up|to|the|task|.\nAlthough|it|lacks|the|detail|of|the|book|,|the|film|does|pack|some|serious|suspense|.\nI|'d|watch|these|two|together|again|in|a|New|York|minute|.\nThere|'s|nothing|like|love|to|give|a|movie|a|B-12|shot|,|and|CQ|shimmers|with|it|.\nA|moving|essay|about|the|specter|of|death|,|especially|suicide|.\nThis|film|is|so|different|from|The|Apple|and|so|striking|that|it|can|only|encourage|us|to|see|Samira|Makhmalbaf|as|a|very|distinctive|sensibility|,|working|to|develop|her|own|film|language|with|conspicuous|success|.\nLike|a|less|dizzily|gorgeous|companion|to|Mr.|Wong|'s|In|the|Mood|for|Love|--|very|much|a|Hong|Kong|movie|despite|its|mainland|setting|.\n...|a|somber|film|,|almost|completely|unrelieved|by|any|comedy|beyond|the|wistful|everyday|ironies|of|the|working|poor|.\nCoral|Reef|Adventure|is|a|heavyweight|film|that|fights|a|good|fight|on|behalf|of|the|world|'s|endangered|reefs|--|and|it|lets|the|pictures|do|the|punching|.\nThe|overall|result|is|an|intelligent|,|realistic|portrayal|of|testing|boundaries|.\nPoignant|and|moving|,|A|Walk|to|Remember|is|an|inspirational|love|story|,|capturing|the|innocence|and|idealism|of|that|first|encounter|.\nWorth|a|salute|just|for|trying|to|be|more|complex|than|your|average|film|.\nHandsome|and|sophisticated|approach|to|the|workplace|romantic|comedy|.\nA|shimmeringly|lovely|coming-of-age|portrait|,|shot|in|artful|,|watery|tones|of|blue|,|green|and|brown|.\nWhile|Cherish|does|n't|completely|survive|its|tonal|transformation|from|dark|comedy|to|suspense|thriller|,|it|'s|got|just|enough|charm|and|appealing|character|quirks|to|forgive|that|still|serious|problem|.\nIn|many|ways|,|reminiscent|of|1992|'s|Unforgiven|which|also|utilized|the|scintillating|force|of|its|actors|to|draw|out|the|menace|of|its|sparse|dialogue|.\nWe|admire|this|film|for|its|harsh|objectivity|and|refusal|to|seek|our|tears|,|our|sympathies|.\nAn|often|watchable|,|though|goofy|and|lurid|,|blast|of|a|costume|drama|set|in|the|late|15th|century|.\nThe|entire|cast|is|first-rate|,|especially|Sorvino|.\nThe|Cat|'s|Meow|marks|a|return|to|form|for|director|Peter|Bogdanovich|...\nThis|one|is|strictly|a|lightweight|escapist|film|.\nThis|sensitive|,|smart|,|savvy|,|compelling|coming-of-age|drama|delves|into|the|passive-aggressive|psychology|of|co-dependence|and|the|struggle|for|self-esteem|.\nThe|culmination|of|everyone|'s|efforts|is|given|life|when|A|Selection|appears|in|its|final|form|(|in|``|Last|Dance|''|)|.\nIn|questioning|the|election|process|,|Payami|graphically|illustrates|the|problems|of|fledgling|democracies|,|but|also|the|strength|and|sense|of|freedom|the|Iranian|people|already|possess|,|with|or|without|access|to|the|ballot|box|.\nA|very|charming|and|funny|movie|.\nThis|is|a|film|that|manages|to|find|greatness|in|the|hue|of|its|drastic|iconography|.\nStreamlined|to|a|tight|,|brisk|85-minute|screwball|thriller|,|``|Big|Trouble|''|is|funny|,|harmless|and|as|substantial|as|a|tub|of|popcorn|with|extra|butter|.\nConsummate|actor|Barry|has|done|excellent|work|here|.\nThe|biggest|problem|with|this|movie|is|that|it|'s|not|nearly|long|enough|.\nWhile|not|all|that|bad|of|a|movie|,|it|'s|nowhere|near|as|good|as|the|original|.\nAli|'s|graduation|from|little|screen|to|big|is|far|less|painful|than|his|opening|scene|encounter|with|an|over-amorous|terrier|.\nI|have|always|appreciated|a|smartly|written|motion|picture|,|and|,|whatever|flaws|Igby|Goes|Down|may|possess|,|it|is|undeniably|that|.\nYou|can|sip|your|vintage|wines|and|watch|your|Merchant|Ivory|productions|;|I|'ll|settle|for|a|nice|cool|glass|of|iced|tea|and|a|Jerry|Bruckheimer|flick|any|day|of|the|week|.\nMay|be|the|most|undeserving|victim|of|critical|overkill|since|Town|and|Country|.\nA|chilly|,|brooding|but|quietly|resonant|psychological|study|of|domestic|tension|and|unhappiness|.\nThe|movie|does|its|best|to|work|us|over|,|with|second|helpings|of|love|,|romance|,|tragedy|,|false|dawns|,|real|dawns|,|comic|relief|,|two|separate|crises|during|marriage|ceremonies|,|and|the|lush|scenery|of|the|Cotswolds|.\nCold|,|nervy|and|memorable|.\nBecomes|a|fascinating|study|of|isolation|and|frustration|that|successfully|recreates|both|the|physical|setting|and|emotional|tensions|of|the|Papin|sisters|.\nSpend|your|Benjamins|on|a|matinee|.\nAll|in|all|,|it|'s|a|pretty|good|execution|of|a|story|that|'s|a|lot|richer|than|the|ones|Hollywood|action|screenwriters|usually|come|up|with|on|their|own|.\nWorth|seeing|just|for|Weaver|and|LaPaglia|.\nA|pleasant|piece|of|escapist|entertainment|.\nAmong|the|many|pleasures|are|the|lively|intelligence|of|the|artists|and|their|perceptiveness|about|their|own|situations|.\nIt|'s|consistently|funny|,|in|an|irresistible|junior-high|way|,|and|consistently|free|of|any|gag|that|would|force|you|to|give|it|a|millisecond|of|thought|.\nIt|'s|the|cute|frissons|of|discovery|and|humor|between|Chaplin|and|Kidman|that|keep|this|nicely|wound|clock|not|just|ticking|,|but|humming|.\nThe|storytelling|may|be|ordinary|,|but|the|cast|is|one|of|those|all-star|reunions|that|fans|of|Gosford|Park|have|come|to|assume|is|just|another|day|of|Brit|cinema|.\nThere|'s|something|about|a|marching|band|that|gets|me|where|I|live|.\nCuaron|repeatedly|,|perversely|undercuts|the|joie|de|vivre|even|as|he|creates|it|,|giving|the|movie|a|mournful|undercurrent|that|places|the|good-time|shenanigans|in|welcome|perspective|.\nIt|'s|definitely|an|improvement|on|the|first|Blade|,|since|it|does|n't|take|itself|so|deadly|seriously|.\nA|slam-bang|extravaganza|that|is|all|about|a|wild-and-woolly|,|wall-to-wall|good|time|.\nWhat|'s|infuriating|about|Full|Frontal|is|that|it|'s|too|close|to|real|life|to|make|sense|.\nWhat|'s|invigorating|about|it|is|that|it|does|n't|give|a|damn|.\nIs|Red|Dragon|worthy|of|a|place|alongside|the|other|Hannibal|movies|?\nAs|Hannibal|would|say|,|yes|,|`|It|'s|like|having|an|old|friend|for|dinner|'|.\nWriter-director|Juan|Carlos|Fresnadillo|makes|a|feature|debut|that|is|fully|formed|and|remarkably|assured|.\ninsightfully|written|,|delicately|performed\nPerhaps|the|grossest|movie|ever|made|.\nFunny|,|though|.\nThis|90-minute|postmodern|voyage|was|more|diverting|and|thought-provoking|than|I|'d|expected|it|to|be|.\nOne|of|those|exceedingly|rare|films|in|which|the|talk|alone|is|enough|to|keep|us|involved|.\nA|heartbreakingly|thoughtful|minor|classic|,|the|work|of|a|genuine|and|singular|artist|.\nAn|affectionately|goofy|satire|that|'s|unafraid|to|throw|elbows|when|necessary|...\nBetween|them|,|De|Niro|and|Murphy|make|Showtime|the|most|savory|and|hilarious|guilty|pleasure|of|many|a|recent|movie|season|.\nJackson|tries|to|keep|the|plates|spinning|as|best|he|can|,|but|all|the|bouncing|back|and|forth|ca|n't|help|but|become|a|bit|tedious|--|even|with|the|breathtaking|landscapes|and|villainous|varmints|there|to|distract|you|from|the|ricocheting|.\nFilmmakers|David|Weissman|and|Bill|Weber|benefit|enormously|from|the|Cockettes|'|camera|craziness|--|not|only|did|they|film|performances|,|but|they|did|the|same|at|home|.\nInteresting|both|as|a|historical|study|and|as|a|tragic|love|story|.\nA|stylish|but|steady|,|and|ultimately|very|satisfying|,|piece|of|character-driven|storytelling|.\nIt|picked|me|up|,|swung|me|around|,|and|dropped|me|back|in|my|seat|with|more|emotional|force|than|any|other|recent|film|.\nGraham|Greene|'s|novel|of|colonialism|and|empire|is|elevated|by|Michael|Caine|'s|performance|as|a|weary|journalist|in|a|changing|world|.\nThough|it|'s|equally|solipsistic|in|tone|,|the|movie|has|enough|vitality|to|justify|the|notion|of|creating|a|screen|adaptation|of|Evans|'|saga|of|Hollywood|excess|.\nCompulsively|watchable|,|no|matter|how|degraded|things|get|.\nDelivers|roughly|equal|amounts|of|beautiful|movement|and|inside|information|.\nBon|appétit|!\nJust|like|a|splendid|meal|,|Red|Dragon|satisfies|--|from|its|ripe|recipe|,|inspiring|ingredients|,|certified|cuisine|and|palatable|presentation|.\nThe|structure|is|simple|,|but|in|its|own|way|,|Rabbit-Proof|Fence|is|a|quest|story|as|grand|as|The|Lord|of|the|Rings|.\nThis|charming|,|thought-provoking|New|York|fest|of|life|and|love|has|its|rewards|.\nSome|people|march|to|the|beat|of|a|different|drum|,|and|if|you|ever|wondered|what|kind|of|houses|those|people|live|in|,|this|documentary|takes|a|look|at|5|alternative|housing|options|.\nPlayfully|profound|...|and|crazier|than|Michael|Jackson|on|the|top|floor|of|a|skyscraper|nursery|surrounded|by|open|windows|.\nA|film|that|will|enthrall|the|whole|family|.\nThe|charm|of|the|first|movie|is|still|there|,|and|the|story|feels|like|the|logical|,|unforced|continuation|of|the|careers|of|a|pair|of|spy|kids|.\nK|19|stays|afloat|as|decent|drama\\/action|flick\nIt|sends|you|away|a|believer|again|and|quite|cheered|at|just|that|.\nLike|the|best|60|Minutes|exposé|,|the|film|(|at|80|minutes|)|is|actually|quite|entertaining|.\nan|83|minute|document|of|a|project|which|started|in|a|muddle|,|seesawed|back|and|forth|between|controlling|interests|multiple|times|,|then|found|its|sweet|spot\nAn|emotionally|and|spiritually|compelling|journey|seen|through|the|right|eyes|,|with|the|right|actors|and|with|the|kind|of|visual|flair|that|shows|what|great|cinema|can|really|do|.\nNair|does|n't|use|(|Monsoon|Wedding|)|to|lament|the|loss|of|culture|.\nInstead|,|she|sees|it|as|a|chance|to|revitalize|what|is|and|always|has|been|remarkable|about|clung-to|traditions|.\nBoth|Grant|and|Hoult|carry|the|movie|because|they|are|believable|as|people|--|flawed|,|assured|of|the|wrong|things|,|and|scared|to|admit|how|much|they|may|really|need|the|company|of|others|.\nLeading|a|double|life|in|an|American|film|only|comes|to|no|good|,|but|not|here|.\nMatters|play|out|realistically|if|not|always|fairly|.\nIn|the|affable|Maid|in|Manhattan|,|Jennifer|Lopez|'s|most|aggressive|and|most|sincere|attempt|to|take|movies|by|storm|,|the|diva|shrewdly|surrounds|herself|with|a|company|of|strictly|A-list|players|.\nLike|Mike|is|a|harmlessly|naïve|slice|of|b-ball|fantasy|,|fit|for|filling|in|during|the|real|NBA|'s|off-season|.\nThough|writer\\/director|Bart|Freundlich|'s|film|ultimately|becomes|a|simplistic|story|about|a|dysfunctional|parent-child|relationship|,|it|has|some|special|qualities|and|the|soulful|gravity|of|Crudup|'s|anchoring|performance|.\nWhat|the|movie|lacks|in|action|it|more|than|makes|up|for|in|drama|,|suspense|,|revenge|,|and|romance|.\nJust|offbeat|enough|to|keep|you|interested|without|coming|close|to|bowling|you|over|.\nProbes|in|a|light-hearted|way|the|romantic|problems|of|individuals|for|whom|the|yearning|for|passion|spells|discontent|.\nWhat|elevates|the|movie|above|the|run-of-the-mill|singles|blender|is|its|surreal|sense|of|humor|and|technological|finish|.\nA|film|about|female|friendship|that|men|can|embrace|and|women|will|talk|about|for|hours|.\nThe|directing|and|story|are|disjointed|,|flaws|that|have|to|be|laid|squarely|on|Taylor|'s|doorstep|.\nBut|the|actors|make|this|worth|a|peek|.\nLight|the|candles|,|bring|out|the|cake|and|do|n't|fret|about|the|calories|because|there|'s|precious|little|substance|in|Birthday|Girl|--|it|'s|simply|,|and|surprisingly|,|a|nice|,|light|treat|.\nIt|may|be|about|drug|dealers|,|kidnapping|,|and|unsavory|folks|,|but|the|tone|and|pacing|are|shockingly|intimate|.\nMassoud|'s|story|is|an|epic|,|but|also|a|tragedy|,|the|record|of|a|tenacious|,|humane|fighter|who|was|also|the|prisoner|(|and|ultimately|the|victim|)|of|history|.\nIf|villainous|vampires|are|your|cup|of|blood|,|Blade|2|is|definitely|a|cut|above|the|rest|.\nDrumline|ably|captures|the|complicated|relationships|in|a|marching|band|.\nBecause|the|film|deliberately|lacks|irony|,|it|has|a|genuine|dramatic|impact|;|it|plays|like|a|powerful|1957|drama|we|'ve|somehow|never|seen|before|.\nDoes|point|the|way|for|adventurous|Indian|filmmakers|toward|a|crossover|into|nonethnic|markets|.\nSeems|based|on|ugly|ideas|instead|of|ugly|behavior|,|as|Happiness|was|...|Hence|,|Storytelling|is|far|more|appealing|.\n``|Sum|''|is|Jack|Ryan|'s|``|do-over|.|''\nGive|credit|to|everyone|from|Robinson|down|to|the|key|grip|that|this|bold|move|works|.\nEspecially|give|credit|to|Affleck|.\nAn|intelligently|made|(|and|beautifully|edited|)|picture|that|at|the|very|least|has|a|spark|of|life|to|it|--|more|than|you|can|say|for|plenty|of|movies|that|flow|through|the|Hollywood|pipeline|without|a|hitch|.\nA|terrific|date|movie|,|whatever|your|orientation|.\nNot|all|of|the|stories|work|and|the|ones|that|do|are|thin|and|scattered|,|but|the|film|works|well|enough|to|make|it|worth|watching|.\nWhat|it|lacks|in|originality|it|makes|up|for|in|effective|if|cheap|moments|of|fright|and|dread|.\nThe|pain|,|loneliness|and|insecurity|of|the|screenwriting|process|are|vividly|and|painfully|brought|to|slovenly|life|in|this|self-deprecating|,|biting|and|witty|feature|written|by|Charlie|Kaufman|and|his|twin|brother|,|Donald|,|and|directed|by|Spike|Jonze|.\nA|gem|of|a|movie|.\nWitty|,|vibrant|,|and|intelligent|.\nIt|'s|all|stitched|together|with|energy|,|intelligence|and|verve|,|enhanced|by|a|surplus|of|vintage|archive|footage|.\nMiller|comes|at|film|with|bracing|intelligence|and|a|vision|both|painterly|and|literary|.\nThe|film|is|moody|,|oozing|,|chilling|and|heart-warming|all|at|once|...|a|twisting|,|unpredictable|,|cat-and-mouse|thriller|.\nEight|Legged|Freaks|is|clever|and|funny|,|is|amused|by|its|special|effects|,|and|leaves|you|feeling|like|you|'ve|seen|a|movie|instead|of|an|endless|trailer|.\nThis|is|historical|filmmaking|without|the|balm|of|right-thinking|ideology|,|either|liberal|or|conservative|.\nMr.|Scorsese|'s|bravery|and|integrity|in|advancing|this|vision|can|hardly|be|underestimated|.\nA|thriller|whose|style|,|structure|and|rhythms|are|so|integrated|with|the|story|,|you|can|not|separate|them|.\nIt|'s|a|hoot|watching|The|Rock|chomp|on|jumbo|ants|,|pull|an|arrow|out|of|his|back|,|and|leap|unscathed|through|raging|fire|!\nReturning|director|Rob|Minkoff|...|and|screenwriter|Bruce|Joel|Rubin|...|have|done|a|fine|job|of|updating|White|'s|dry|wit|to|a|new|age|.\nUnfolds|with|such|a|wallop|of|you-are-there|immediacy|that|when|the|bullets|start|to|fly|,|your|first|instinct|is|to|duck|.\nA|strong|script|,|powerful|direction|and|splendid|production|design|allows|us|to|be|transported|into|the|life|of|Wladyslaw|Szpilman|,|who|is|not|only|a|pianist|,|but|a|good|human|being|.\nAn|unflinching|look|at|the|world|'s|dispossessed|.\nIf|the|film|fails|to|fulfill|its|own|ambitious|goals|,|it|nonetheless|sustains|interest|during|the|long|build-up|of|expository|material|.\nPolanski|has|found|the|perfect|material|with|which|to|address|his|own|World|War|II|experience|in|his|signature|style|.\nIt|is|life|affirming|and|heartbreaking|,|sweet|without|the|decay|factor|,|funny|and|sad|.\nAn|off-beat|and|fanciful|film|about|the|human|need|for|monsters|to|blame|for|all|that|is|amiss|in|the|world|.\nA|colorful|,|joyous|celebration|of|life|;|a|tapestry|woven|of|romance|,|dancing|,|singing|,|and|unforgettable|characters|.\nFrei|assembles|a|fascinating|profile|of|a|deeply|humanistic|artist|who|,|in|spite|of|all|that|he|'s|witnessed|,|remains|surprisingly|idealistic|,|and|retains|an|extraordinary|faith|in|the|ability|of|images|to|communicate|the|truth|of|the|world|around|him|.\nNicely|combines|the|enigmatic|features|of|`|Memento|'|with|the|hallucinatory|drug|culture|of|`|Requiem|for|a|Dream|.|'\nA|well|paced|and|satisfying|little|drama|that|deserved|better|than|a|`|direct-to-video|'|release|.\nThe|best|part|about|``|Gangs|''|was|Daniel|Day-Lewis|.\nA|treat|for|its|depiction|on|not|giving|up|on|dreams|when|you|'re|a|struggling|nobody|.\nOne|of|those|rare|films|that|seems|as|though|it|was|written|for|no|one|,|but|somehow|manages|to|convince|almost|everyone|that|it|was|put|on|the|screen|,|just|for|them|.\nA|gripping|documentary|that|reveals|how|deep|the|antagonism|lies|in|war-torn|Jerusalem|.\nDirector|Chris|Wedge|and|screenwriters|Michael|Berg|,|Michael|J.|Wilson|and|Peter|Ackerman|create|some|episodes|that|rival|vintage|Looney|Tunes|for|the|most|creative|mayhem|in|a|brief|amount|of|time|.\nOne|of|the|film|'s|most|effective|aspects|is|its|Tchaikovsky|soundtrack|of|neurasthenic|regret|.\nSolondz|creates|some|effective|moments|of|discomfort|for|character|and|viewer|alike|.\nThe|film|'s|appeal|has|a|lot|to|do|with|the|casting|of|Juliette|Binoche|as|Sand|,|who|brings|to|the|role|her|pale|,|dark|beauty|and|characteristic|warmth|.\nI|was|amused|and|entertained|by|the|unfolding|of|Bielinsky|'s|cleverly|constructed|scenario|,|and|greatly|impressed|by|the|skill|of|the|actors|involved|in|the|enterprise|.\nSomehow|Ms.|Griffiths|and|Mr.|Pryce|bring|off|this|wild|Welsh|whimsy|.\nMore|mature|than|Fatal|Attraction|,|more|complete|than|Indecent|Proposal|and|more|relevant|than|9|1\\/2|Weeks|,|Unfaithful|is|at|once|intimate|and|universal|cinema|.\nFor|all|the|dolorous|trim|,|Secretary|is|a|genial|romance|that|maintains|a|surprisingly|buoyant|tone|throughout|,|notwithstanding|some|of|the|writers|'|sporadic|dips|into|pop|Freudianism|.\nA|fanciful|drama|about|Napoleon|'s|last|years|and|his|surprising|discovery|of|love|and|humility|.\nA|highly|personal|look|at|the|effects|of|living|a|dysfunctionally|privileged|lifestyle|,|and|by|the|end|,|we|only|wish|we|could|have|spent|more|time|in|its|world|.\nEric|Schweig|and|Graham|Greene|both|exude|an|air|of|dignity|that|'s|perfect|for|the|proud|warrior|that|still|lingers|in|the|souls|of|these|characters|.\nLovely|and|Amazing|is|Holofcener|'s|deep|,|uncompromising|curtsy|to|women|she|knows|,|and|very|likely|is|.\nWhen|all|is|said|and|done|,|she|loves|them|to|pieces|--|and|so|,|I|trust|,|will|you|.\nCampbell|Scott|finds|the|ideal|outlet|for|his|flick-knife|diction|in|the|role|of|Roger|Swanson|.\n(|Fiji|diver|Rusi|Vulakoro|and|the|married|couple|Howard|and|Michelle|Hall|)|show|us|the|world|they|love|and|make|us|love|it|,|too|.\nRussian|Ark|is|a|new|treasure|of|the|Hermitage|.\nThe|animated|sequences|are|well|done|and|perfectly|constructed|to|convey|a|sense|of|childhood|imagination|and|creating|adventure|out|of|angst|.\nIt|'s|definitely|a|step|in|the|right|direction|.\nAs|the|princess|,|Sorvino|glides|gracefully|from|male|persona|to|female|without|missing|a|beat|.\nBen|Kingsley|is|truly|funny|,|playing|a|kind|of|Ghandi|gone|bad|.\nOurside|the|theatre|Roger|might|be|intolerable|company|,|but|inside|it|he|'s|well|worth|spending|some|time|with|.\nA|gem|,|captured|in|the|unhurried|,|low-key|style|favored|by|many|directors|of|the|Iranian|new|wave|.\nIn|an|era|where|big|stars|and|high|production|values|are|standard|procedure|,|Narc|strikes|a|defiantly|retro|chord|,|and|outpaces|its|contemporaries|with|daring|and|verve|.\nRanges|from|laugh-out-loud|hilarious|to|wonder-what|-|time-it-is|tedious|.\nThe|film|'s|gamble|to|occasionally|break|up|the|live-action|scenes|with|animated|sequences|pays|off|,|as|does|its|sensitive|handling|of|some|delicate|subject|matter|.\nTalk|To|Her|is|not|the|perfect|movie|many|have|made|it|out|to|be|,|but|it|'s|still|quite|worth|seeing|.\nBeating|the|Austin|Powers|films|at|their|own|game|,|this|blaxploitation|spoof|downplays|the|raunch|in|favor|of|gags|that|rely|on|the|strength|of|their|own|cleverness|as|opposed|to|the|extent|of|their|outrageousness|.\nThis|is|a|dark|,|gritty|,|sometimes|funny|little|gem|.\nFor|all|its|visual|panache|and|compelling|supporting|characters|,|the|heart|of|the|film|rests|in|the|relationship|between|Sullivan|and|his|son|.\nWhat|makes|Salton|Sea|surprisingly|engrossing|is|that|Caruso|takes|an|atypically|hypnotic|approach|to|a|world|that|'s|often|handled|in|fast-edit|,|hopped-up|fashion|.\nA|hidden-agenda|drama|that|shouts|classic|French|nuance|.\nWith|Spy|Kids|2|:|The|Island|of|Lost|Dreams|,|the|Spy|Kids|franchise|establishes|itself|as|a|durable|part|of|the|movie|landscape|:|a|James|Bond|series|for|kids|.\nAn|invaluable|historical|document|thanks|to|the|filmmaker|'s|extraordinary|access|to|Massoud|,|whose|charm|,|cultivation|and|devotion|to|his|people|are|readily|apparent|.\nThe|performances|of|the|four|main|actresses|bring|their|characters|to|life|.\nA|little|melodramatic|,|but|with|enough|hope|to|keep|you|engaged|.\nLan|Yu|seems|altogether|too|slight|to|be|called|any|kind|of|masterpiece|.\nIt|is|,|however|,|a|completely|honest|,|open-hearted|film|that|should|appeal|to|anyone|willing|to|succumb|to|it|.\nEveryone|should|be|able|to|appreciate|the|wonderful|cinematography|and|naturalistic|acting|.\nThis|often-hilarious|farce|manages|to|generate|the|belly|laughs|of|lowbrow|comedy|without|sacrificing|its|high-minded|appeal|.\nExpands|the|limits|of|what|a|film|can|be|,|taking|us|into|the|lives|of|women|to|whom|we|might|not|give|a|second|look|if|we|passed|them|on|the|street|.\nThe|farcical|elements|seemed|too|pat|and|familiar|to|hold|my|interest|,|yet|its|diverting|grim|message|is|a|good|one|.\nShanghai|Ghetto|may|not|be|as|dramatic|as|Roman|Polanski|'s|The|Pianist|,|but|its|compassionate|spirit|soars|every|bit|as|high|.\nDespite|these|annoyances|,|the|capable|Clayburgh|and|Tambor|really|do|a|great|job|of|anchoring|the|characters|in|the|emotional|realities|of|middle|age|.\nThe|underworld|urban|angst|is|derivative|of|Martin|Scorsese|'s|Taxi|Driver|and|Goodfellas|,|but|this|film|speaks|for|itself|.\nThe|film|'s|heady|yet|far|from|impenetrable|theory|suggests|that|Russians|take|comfort|in|their|closed-off|nationalist|reality|.\nDespite|modest|aspirations|its|occasional|charms|are|not|to|be|dismissed|.\nConstantly|touching|,|surprisingly|funny|,|semi-surrealist|exploration|of|the|creative|act|.\nThe|journey|is|worth|your|time|,|especially|if|you|have|Ellen|Pompeo|sitting|next|to|you|for|the|ride|.\nMerci|pour|le|movie|.\nFor|every|cheesy|scene|,|though|,|there|is|a|really|cool|bit|--|the|movie|'s|conception|of|a|future-world|holographic|librarian|(|Orlando|Jones|)|who|knows|everything|and|answers|all|questions|,|is|visually|smart|,|cleverly|written|,|and|nicely|realized|.\nWhat|sets|Ms.|Birot|'s|film|apart|from|others|in|the|genre|is|a|greater|attention|to|the|parents|--|and|particularly|the|fateful|fathers|--|in|the|emotional|evolution|of|the|two|bewitched|adolescents|.\nAll|three|women|deliver|remarkable|performances|.\nClaire|is|a|terrific|role|for|someone|like|Judd|,|who|really|ought|to|be|playing|villains|.\nIt|'s|clear|that|Mehta|simply|wanted|to|update|her|beloved|genre|for|the|thousands|of|Indians|who|fancy|themselves|too|sophisticated|for|the|cheese-laced|spectacles|that|pack|'em|in|on|the|subcontinent|.\nCompassionately|explores|the|seemingly|irreconcilable|situation|between|conservative|Christian|parents|and|their|estranged|gay|and|lesbian|children|.\nThe|soundtrack|alone|is|worth|the|price|of|admission|.\nRodriguez|does|a|splendid|job|of|racial|profiling|Hollywood|style|--|casting|excellent|Latin|actors|of|all|ages|--|a|trend|long|overdue|.\nBeneath|the|film|'s|obvious|determination|to|shock|at|any|cost|lies|considerable|skill|and|determination|,|backed|by|sheer|nerve|.\nBielinsky|is|a|filmmaker|of|impressive|talent|.\nSo|beautifully|acted|and|directed|,|it|'s|clear|that|Washington|most|certainly|has|a|new|career|ahead|of|him|if|he|so|chooses|.\nA|visual|spectacle|full|of|stunning|images|and|effects|.\nA|gentle|and|engrossing|character|study|.\nIt|'s|enough|to|watch|Huppert|scheming|,|with|her|small|,|intelligent|eyes|as|steady|as|any|noir|villain|,|and|to|enjoy|the|perfectly|pitched|web|of|tension|that|Chabrol|spins|.\nAn|engrossing|portrait|of|uncompromising|artists|trying|to|create|something|original|against|the|backdrop|of|a|corporate|music|industry|that|only|seems|to|care|about|the|bottom|line|.\nA|mischievous|visual|style|and|oodles|of|charm|make|`|Cherish|'|a|very|good|(|but|not|great|)|movie|.\nJust|as|the|recent|Argentine|film|Son|of|the|Bride|reminded|us|that|a|feel-good|movie|can|still|show|real|heart|,|Time|of|Favor|presents|us|with|an|action|movie|that|actually|has|a|brain|.\n(|A|)|strong|piece|of|work|.\nA|stirring|tribute|to|the|bravery|and|dedication|of|the|world|'s|reporters|who|willingly|walk|into|the|nightmare|of|war|not|only|to|record|the|events|for|posterity|,|but|to|help|us|clearly|see|the|world|of|our|making|.\nThe|Importance|of|Being|Earnest|,|so|thick|with|wit|it|plays|like|a|reading|from|Bartlett|'s|Familiar|Quotations\nDaring|and|beautifully|made|.\nMade|for|teens|and|reviewed|as|such|,|this|is|recommended|only|for|those|under|20|years|of|age|...|and|then|only|as|a|very|mild|rental|.\nImagine|O.|Henry|'s|The|Gift|of|the|Magi|relocated|to|the|scuzzy|underbelly|of|NYC|'s|drug|scene|.\nMerry|friggin|'|Christmas|!\nThe|film|does|give|a|pretty|good|overall|picture|of|the|situation|in|Laramie|following|the|murder|of|Matthew|Shepard|.\nBoth|lead|performances|are|Oscar-size|.\nQuaid|is|utterly|fearless|as|the|tortured|husband|living|a|painful|lie|,|and|Moore|wonderfully|underplays|the|long-suffering|heroine|with|an|unflappable|'50s|dignity|somewhere|between|Jane|Wyman|and|June|Cleaver|.\nFerrara|'s|best|film|in|years|.\nA|remarkably|insightful|look|at|the|backstage|angst|of|the|stand-up|comic|.\nNothing|short|of|wonderful|with|its|ten-year-old|female|protagonist|and|its|steadfast|refusal|to|set|up|a|dualistic|battle|between|good|and|evil|.\nDavis|'|candid|,|archly|funny|and|deeply|authentic|take|on|intimate|relationships|comes|to|fruition|in|her|sophomore|effort|.\nIt|'s|more|enjoyable|than|I|expected|,|though|,|and|that|'s|because|the|laughs|come|from|fairly|basic|comedic|constructs|.\nCinematic|pratfalls|given|a|working|over|.\nThe|cast|is|spot|on|and|the|mood|is|laid|back|.\nMatches|neorealism|'s|impact|by|showing|the|humanity|of|a|war-torn|land|filled|with|people|who|just|want|to|live|their|lives|.\nThose|moviegoers|who|would|automatically|bypass|a|hip-hop|documentary|should|give|``|Scratch|''|a|second|look|.\nBaby-faced|Renner|is|eerily|convincing|as|this|bland|blank|of|a|man|with|unimaginable|demons|within|.\nRomantic|,|riveting|and|handsomely|animated|.\nA|competent|,|unpretentious|entertainment|destined|to|fill|the|after-school|slot|at|shopping|mall|theaters|across|the|country|.\nShot|largely|in|small|rooms|,|the|film|has|a|gentle|,|unforced|intimacy|that|never|becomes|claustrophobic|.\nWhere|Janice|Beard|falters|in|its|recycled|aspects|,|implausibility|,|and|sags|in|pace|,|it|rises|in|its|courageousness|,|and|comedic|employment|.\nByler|is|too|savvy|a|filmmaker|to|let|this|morph|into|a|typical|romantic|triangle|.\nInstead|,|he|focuses|on|the|anguish|that|can|develop|when|one|mulls|leaving|the|familiar|to|traverse|uncharted|ground|.\nMcGrath|has|deftly|trimmed|Dickens|'|wonderfully|sprawling|soap|opera|,|the|better|to|focus|on|the|hero|'s|odyssey|from|cowering|poverty|to|courage|and|happiness|.\nA|chance|to|see|three|splendid|actors|turn|a|larky|chase|movie|into|an|emotionally|satisfying|exploration|of|the|very|human|need|to|be|somebody|,|and|to|belong|to|somebody|.\nMetaphors|abound|,|but|it|is|easy|to|take|this|film|at|face|value|and|enjoy|its|slightly|humorous|and|tender|story|.\nAs|directed|by|Dani|Kouyate|of|Burkina|Faso|,|Sia|lacks|visual|flair|.\nBut|Kouyate|elicits|strong|performances|from|his|cast|,|and|he|delivers|a|powerful|commentary|on|how|governments|lie|,|no|matter|who|runs|them|.\nThe|best|comedy|concert|movie|I|'ve|seen|since|Cho|'s|previous|concert|comedy|film|,|I|'m|the|One|That|I|Want|,|in|2000|.\nBroomfield|reminds|us|that|beneath|the|hype|,|the|celebrity|,|the|high|life|,|the|conspiracies|and|the|mystery|there|were|once|a|couple|of|bright|young|men|--|promising|,|talented|,|charismatic|and|tragically|doomed|.\nOffers|laughs|and|insight|into|one|of|the|toughest|ages|a|kid|can|go|through|.\nA|perceptive|,|good-natured|movie|.\nAn|amused|indictment|of|Jaglom|'s|own|profession|.\nA|small|movie|with|a|big|heart|.\nHugely|accomplished|slice|of|Hitchcockian|suspense|.\nThe|formula|is|familiar|but|enjoyable|.\nTells|a|fascinating|,|compelling|story|.\nA|triumph|,|a|film|that|hews|out|a|world|and|carries|us|effortlessly|from|darkness|to|light|.\nWhat|begins|as|a|conventional|thriller|evolves|into|a|gorgeously|atmospheric|meditation|on|life-changing|chance|encounters|.\nThe|Lady|and|the|Duke|is|a|smart|,|romantic|drama|that|dares|to|depict|the|French|Revolution|from|the|aristocrats|'|perspective|.\nMost|haunting|about|``|Fence|''|is|its|conclusion|,|when|we|hear|the|ultimate|fate|of|these|girls|and|realize|,|much|to|our|dismay|,|that|this|really|did|happen|.\nNoyce|'s|greatest|mistake|is|thinking|that|we|needed|sweeping|,|dramatic|,|Hollywood|moments|to|keep|us\nWorld|Traveler|might|not|go|anywhere|new|,|or|arrive|anyplace|special|,|but|it|'s|certainly|an|honest|attempt|to|get|at|something|.\nThere|'s|much|tongue|in|cheek|in|the|film|and|there|'s|no|doubt|the|filmmaker|is|having|fun|with|it|all|.\nThere|'s|absolutely|no|reason|why|Blue|Crush|,|a|late-summer|surfer|girl|entry|,|should|be|as|entertaining|as|it|is\nAn|action\\/thriller|of|the|finest|kind|,|evoking|memories|of|Day|of|the|Jackal|,|The|French|Connection|,|and|Heat|.\nThe|best|movie|in|many|a|moon|about|the|passions|that|sometimes|fuel|our|best|achievements|and|other|times|leave|us|stranded|with|nothing|more|than|our|lesser|appetites|.\nIn|capturing|the|understated|comedic|agony|of|an|ever-ruminating|,|genteel|yet|decadent|aristocracy|that|can|no|longer|pay|its|bills|,|the|film|could|just|as|well|be|addressing|the|turn|of|the|20th|century|into|the|21st|.\nInsomnia|does|not|become|one|of|those|rare|remakes|to|eclipse|the|original|,|but|it|does|n't|disgrace|it|,|either|.\nclassic|cinema|served|up|with|heart|and|humor\n(|Stephen|)|Earnhart|'s|film|is|more|about|the|optimism|of|a|group|of|people|who|are|struggling|to|give|themselves|a|better|lot|in|life|than|the|ones|they|currently|have|.\nThe|events|of|the|film|are|just|so|WEIRD|that|I|honestly|never|knew|what|the|hell|was|coming|next|.\nNicole|Holofcener|'s|Lovely|and|Amazing|,|from|her|own|screenplay|,|jumps|to|the|head|of|the|class|of|women|'s|films|that|manage|to|avoid|the|ghetto|of|sentimental|chick-flicks|by|treating|female|follies|with|a|satirical|style|.\nThat|Jack|Nicholson|makes|this|man|so|watchable|is|a|tribute|not|only|to|his|craft|,|but|to|his|legend|.\nHas|a|solid|emotional|impact|.\nSuccessfully|blended|satire|,|high|camp|and|yet|another|sexual|taboo|into|a|really|funny|movie|.\nMark|Pellington|'s|latest|pop|thriller|is|as|kooky|and|overeager|as|it|is|spooky|and|subtly|in|love|with|myth|.\nWhile|maintaining|the|appearance|of|clinical|objectivity|,|this|sad|,|occasionally|horrifying|but|often|inspiring|film|is|among|Wiseman|'s|warmest|.\nRaimi|crafted|a|complicated|hero|who|is|a|welcome|relief|from|the|usual|two-dimensional|offerings|.\nAn|enjoyable|above|average|summer|diversion|.\nThere|is|simply|no|doubt|that|this|film|asks|the|right|questions|at|the|right|time|in|the|history|of|our|country|.\nIf|you|'ve|the|patience|,|there|are|great|rewards|here|.\nAs|a|science|fiction|movie|,|``|Minority|Report|''|astounds|.\nWatching|E.T|now|,|in|an|era|dominated|by|cold|,|loud|special-effects-laden|extravaganzas|,|one|is|struck|less|by|its|lavish|grandeur|than|by|its|intimacy|and|precision|.\nVisually|breathtaking|,|viscerally|exciting|,|and|dramatically|moving|,|it|'s|the|very|definition|of|epic|adventure|.\nChris|Columbus|'|sequel|is|faster|,|livelier|and|a|good|deal|funnier|than|his|original|.\nWatching|this|film|,|what|we|feel|is|n't|mainly|suspense|or|excitement|.\nThe|dominant|feeling|is|something|like|nostalgia|.|'\n...|a|great|,|participatory|spectator|sport|.|'\nA|rather|brilliant|little|cult|item|:|a|pastiche|of|children|'s|entertainment|,|superhero|comics|,|and|Japanese|animation|.\nBelieves|so|fervently|in|humanity|that|it|feels|almost|anachronistic|,|and|it|is|too|cute|by|half|.\nBut|arriving|at|a|particularly|dark|moment|in|history|,|it|offers|flickering|reminders|of|the|ties|that|bind|us|.\nAdam|SANDLER|!\nIn|an|ART|FILM|!\nAs|averse|as|I|usually|am|to|feel-good|,|follow-your-dream|Hollywood|fantasies|,|this|one|got|to|me|.\nStone|seems|to|have|a|knack|for|wrapping|the|theater|in|a|cold|blanket|of|urban|desperation|.\n...|a|funny|yet|dark|and|seedy|clash|of|cultures|and|generations|.\nThe|hook|is|the|drama|within|the|drama|,|as|an|unsolved|murder|and|an|unresolved|moral|conflict|jockey|for|the|spotlight|.\nOver|the|years|,|Hollywood|has|crafted|a|solid|formula|for|successful|animated|movies|,|and|Ice|Age|only|improves|on|it|,|with|terrific|computer|graphics|,|inventive|action|sequences|and|a|droll|sense|of|humor|.\nLike|Smoke|Signals|,|the|film|is|also|imbued|with|strong|themes|of|familial|ties|and|spirituality|that|are|powerful|and|moving|without|stooping|to|base|melodrama\nOne|of|those|movies|that|make|us|pause|and|think|of|what|we|have|given|up|to|acquire|the|fast-paced|contemporary|society|.\nOne|of|the|most|original|American|productions|this|year|,|you|'ll|find|yourself|remembering|this|refreshing|visit|to|a|Sunshine|State|.\nMelds|derivative|elements|into|something|that|is|often|quite|rich|and|exciting|,|and|always|a|beauty|to|behold|.\nGives|everyone|something|to|shout|about|.\nThe|entire|movie|has|a|truncated|feeling|,|but|what|'s|available|is|lovely|and|lovable|.\n(|A|)|thoughtful|,|visually|graceful|work|.\nAdmirers|of|director|Abel|Ferrara|may|be|relieved|that|his|latest|feature|,|R|Xmas|,|marks|a|modest|if|encouraging|return|to|form|.\nThe|slam-bang|superheroics|are|kinetic|enough|to|engross|even|the|most|antsy|youngsters|.\nA|worthy|addition|to|the|cinematic|canon|,|which|,|at|last|count|,|numbered|52|different|versions|.\nDeliciously|mean-spirited|and|wryly|observant|.\nThe|kind|of|primal|storytelling|that|George|Lucas|can|only|dream|of|.\nEven|if|The|Ring|has|a|familiar|ring|,|it|'s|still|unusually|crafty|and|intelligent|for|Hollywood|horror|.\nThe|sheer|joy|and|pride|they|took|in|their|work|--|and|in|each|other|--|shines|through|every|frame|.\nA|solidly|constructed|,|entertaining|thriller|that|stops|short|of|true|inspiration|.\nThe|cast|...|keeps|this|pretty|watchable|,|and|casting|Mick|Jagger|as|director|of|the|escort|service|was|inspired|.\nAn|entertaining|,|if|somewhat|standardized|,|action|movie|.\nIt|has|a|dashing|and|resourceful|hero|;|a|lisping|,|reptilian|villain|;|big|fights|;|big|hair|;|lavish|period|scenery|;|and|a|story|just|complicated|enough|to|let|you|bask|in|your|own|cleverness|as|you|figure|it|out|.\nAn|enjoyable|comedy|of|lingual|and|cultural|differences|...|The|Château|is|a|film|--|full|of|life|and|small|delights|--|that|has|all|the|wiggling|energy|of|young|kitten|.\nIntriguing|and|downright|intoxicating|.\nAn|incredibly|thoughtful|,|deeply|meditative|picture|that|neatly|and|effectively|captures|the|debilitating|grief|felt|in|the|immediate|aftermath|of|the|terrorist|attacks|.\nWith|an|obvious|rapport|with|her|actors|and|a|striking|style|behind|the|camera|,|Hélène|Angel|is|definitely|a|director|to|watch|.\n...|could|easily|be|called|the|best|Korean|film|of|2002|.\nFull|of|detail|about|the|man|and|his|country|,|and|is|well|worth|seeing|.\nThe|banter|between|Calvin|and|his|fellow|barbers|feels|like|a|streetwise|McLaughlin|Group|...|and|never|fails|to|entertain|.\nThoroughly|engrossing|and|ultimately|tragic|.\nPeter|Jackson|and|company|once|again|dazzle|and|delight|us|,|fulfilling|practically|every|expectation|either|a|longtime|Tolkien|fan|or|a|movie-going|neophyte|could|want|.\nBill|Morrison|'s|Decasia|is|uncompromising|,|difficult|and|unbearably|beautiful|.\nFull|of|bland|hotels|,|highways|,|parking|lots|,|with|some|glimpses|of|nature|and|family|warmth|,|Time|Out|is|a|discreet|moan|of|despair|about|entrapment|in|the|maze|of|modern|life|.\nEven|with|all|its|botches|,|Enigma|offers|all|the|pleasure|of|a|handsome|and|well-made|entertainment|.\nHis|work|transcends|the|boy-meets-girl|posturing|of|typical|love|stories|.\nIf|the|real-life|story|is|genuinely|inspirational|,|the|movie|stirs|us|as|well|.\nAn|ebullient|Tunisian|film|about|the|startling|transformation|of|a|tradition-bound|widow|who|is|drawn|into|the|exotic|world|of|belly|dancing|.\nThe|dramatic|crisis|does|n't|always|succeed|in|its|quest|to|be|taken|seriously|,|but|Huppert|'s|volatile|performance|makes|for|a|riveting|movie|experience|.\nHighly|irritating|at|first|,|Mr.|Koury|'s|passive|technique|eventually|begins|to|yield|some|interesting|results|.\nAbout|Schmidt|belongs|to|Nicholson|.\nGone|are|the|flamboyant|mannerisms|that|are|the|trademark|of|several|of|his|performances|.\nAs|Schmidt|,|Nicholson|walks|with|a|slow|,|deliberate|gait|,|chooses|his|words|carefully|and|subdues|his|natural|exuberance|.\nThe|powder|blues|and|sun-splashed|whites|of|Tunis|make|an|alluring|backdrop|for|this|sensuous|and|spirited|tale|of|a|prim|widow|who|finds|an|unlikely|release|in|belly-dancing|clubs|.\nIt|does|n't|make|for|great|cinema|,|but|it|is|interesting|to|see|where|one|'s|imagination|will|lead|when|given|the|opportunity|.\nIt|'s|sobering|,|particularly|if|anyone|still|thinks|this|conflict|can|be|resolved|easily|,|or|soon|.\nIf|it|'s|not|entirely|memorable|,|the|movie|is|certainly|easy|to|watch|.\n...|by|the|time|it|'s|done|with|us|,|Mira|Nair|'s|new|movie|has|its|audience|giddy|with|the|delight|of|discovery|,|of|having|been|immersed|in|a|foreign|culture|only|to|find|that|human|nature|is|pretty|much|the|same|all|over|.\nBest|indie|of|the|year|,|so|far|.\n(|Ferrera|)|has|the|charisma|of|a|young|woman|who|knows|how|to|hold|the|screen|.\n...|the|plot|weaves|us|into|a|complex|web|.\nDo|n't|judge|this|one|too|soon|-|it|'s|a|dark|,|gritty|story|but|it|takes|off|in|totally|unexpected|directions|and|keeps|on|going|.\nIn|Death|to|Smoochy|,|we|do|n't|get|Williams|'|usual|tear|and|a|smile|,|just|sneers|and|bile|,|and|the|spectacle|is|nothing|short|of|refreshing|.\nA|serviceable|Euro-trash|action|extravaganza|,|with|a|decent|sense|of|humor|and|plenty|of|things|that|go|boom|--|handguns|,|BMWs|and|seaside|chateaus|.\nFortunately|,|Elling|never|gets|too|cloying|thanks|to|the|actors|'|perfect|comic|timing|and|sweet|,|genuine|chemistry|.\nIf|you|'ve|grown|tired|of|going|where|no|man|has|gone|before|,|but|several|movies|have|-|take|heart|.\nThis|is|the|best|Star|Trek|movie|in|a|long|time|.\nGreg|Kinnear|gives|a|mesmerizing|performance|as|a|full-fledged|sex|addict|who|is|in|complete|denial|about|his|obsessive|behavior|.\nNot|only|a|coming-of-age|story|and|cautionary|parable|,|but|also|a|perfectly|rendered|period|piece|.\nou|'ve|got|to|love|a|Disney|pic|with|as|little|cleavage|as|this|one|has|,|and|a|heroine|as|feisty|and|principled|as|Jane|.\nA|funny|,|triumphant|,|and|moving|documentary|.\nLathan|and|Diggs|carry|the|film|with|their|charisma|,|and|both|exhibit|sharp|comic|timing|that|makes|the|more|hackneyed|elements|of|the|film|easier|to|digest|.\nAbout|Schmidt|is|Nicholson|'s|goofy|,|heartfelt|,|mesmerizing|King|Lear|.\nA|confluence|of|kiddie|entertainment|,|sophisticated|wit|and|symbolic|graphic|design|.\nGay|or|straight|,|Kissing|Jessica|Stein|is|one|of|the|greatest|date|movies|in|years|.\nThis|is|a|movie|full|of|grace|and|,|ultimately|,|hope|.\nEven|better|than|the|first|one|!\nIts|compelling|mix|of|trial|movie|,|escape|movie|and|unexpected|fable|ensures|the|film|never|feels|draggy|.\nA|must|see|for|all|sides|of|the|political|spectrum\n(|Reynolds|)|takes|a|classic|story|,|casts|attractive|and|talented|actors|and|uses|a|magnificent|landscape|to|create|a|feature|film|that|is|wickedly|fun|to|watch|.\nThere|are|problems|with|this|film|that|even|3|Oscar|winners|ca|n't|overcome|,|but|it|'s|a|nice|girl-buddy|movie|once|it|gets|rock-n-rolling|.\nRich|in|atmosphere|of|the|post-war|art|world|,|it|manages|to|instruct|without|reeking|of|research|library|dust|.\nHas|the|rare|capability|to|soothe|and|break|your|heart|with|a|single|stroke|.\nIt|rapidly|develops|into|a|gut-wrenching|examination|of|the|way|cultural|differences|and|emotional|expectations|collide|.\nThough|it|flirts|with|bathos|and|pathos|and|the|further|Oprahfication|of|the|world|as|we|know|it|,|it|still|cuts|all|the|way|down|to|broken|bone|.\nThis|humbling|little|film|,|fueled|by|the|light|comedic|work|of|Zhao|Benshan|and|the|delicate|ways|of|Dong|Jie|,|is|just|the|sort|for|those|moviegoers|who|complain|that|`|they|do|n't|make|movies|like|they|used|to|anymore|.|'\nIt|will|break|your|heart|many|times|over|.\nA|straight-shooting|family|film|which|awards|animals|the|respect|they|'ve|rarely|been|given|.\nOverall|,|interesting|as|a|documentary|--|but|not|very|Imaxy|.\nThis|is|one|of|those|war|movies|that|focuses|on|human|interaction|rather|than|battle|and|action|sequences|...|and|it|'s|all|the|stronger|because|of|it|.\n``|Secretary|''|is|owned|by|its|costars|,|Spader|and|Gyllenhaal|.\nMaggie|G.|makes|an|amazing|breakthrough|in|her|first|starring|role|and|eats|up|the|screen|.\nThe|film|fits|into|a|genre|that|has|been|overexposed|,|redolent|of|a|thousand|cliches|,|and|yet|remains|uniquely|itself|,|vibrant|with|originality|.\nNot|only|is|it|a|charming|,|funny|and|beautifully|crafted|import|,|it|uses|very|little|dialogue|,|making|it|relatively|effortless|to|read|and|follow|the|action|at|the|same|time|.\nThe|kind|of|sense|of|humor|that|derives|from|a|workman|'s|grasp|of|pun|and|entendre|and|its|attendant|need|to|constantly|draw|attention|to|itself|.\nToo|much|of|Storytelling|moves|away|from|Solondz|'s|social|critique|,|casting|its|audience|as|that|of|intellectual|lector|in|contemplation|of|the|auteur|'s|professional|injuries|.\nThe|story|is|virtually|impossible|to|follow|here|,|but|there|'s|a|certain|style|and|wit|to|the|dialogue|.\nThe|music|makes|a|nice|album|,|the|food|is|enticing|and|Italy|beckons|us|all|.\nThe|film|is|an|earnest|try|at|beachcombing|verismo|,|but|it|would|be|even|more|indistinct|than|it|is|were|it|not|for|the|striking|,|quietly|vulnerable|personality|of|Ms.|Ambrose|.\nThe|film|is|small|in|scope|,|yet|perfectly|formed|.\nJones|has|delivered|a|solidly|entertaining|and|moving|family|drama|.\nHappy|Times|maintains|an|appealing|veneer|without|becoming|too|cute|about|it|.\nOliveira|seems|to|pursue|silent|film|representation|with|every|mournful|composition|.\nOne|of|the|pleasures|in|Walter|'s|documentary|...|is|the|parade|of|veteran|painters|,|confounded|dealers|,|and|miscellaneous|bohos|who|expound|upon|the|subject|'s|mysterious|personality|without|ever|explaining|him|.\nCaptures|all|the|longing|,|anguish|and|ache|,|the|confusing|sexual|messages|and|the|wish|to|be|a|part|of|that|elusive|adult|world|.\nHe|'s|the|scariest|guy|you|'ll|see|all|summer|.\n``|Frailty|''|offers|chills|much|like|those|that|you|get|when|sitting|around|a|campfire|around|midnight|,|telling|creepy|stories|to|give|each|other|the|willies|.\nAnd|,|there|'s|no|way|you|wo|n't|be|talking|about|the|film|once|you|exit|the|theater|.\nIf|I|have|to|choose|between|gorgeous|animation|and|a|lame|story|(|like|,|say|,|Treasure|Planet|)|or|so-so|animation|and|an|exciting|,|clever|story|with|a|batch|of|appealing|characters|,|I|'ll|take|the|latter|every|time|.\nQuiet|,|adult|and|just|about|more|stately|than|any|contemporary|movie|this|year|...|a|true|study|,|a|film|with|a|questioning|heart|and|mind|that|is|n't|afraid|to|admit|it|does|n't|have|all|the|answers|.\nIn|the|end|,|the|film|is|less|the|cheap|thriller|you|'d|expect|than|it|is|a|fairly|revealing|study|of|its|two|main|characters|--|damaged-goods|people|whose|orbits|will|inevitably|and|dangerously|collide|.\nSome|of|the|visual|flourishes|are|a|little|too|obvious|,|but|restrained|and|subtle|storytelling|,|and|fine|performances|make|this|delicate|coming-of-age|tale|a|treat|.\nIt|is|hard|not|to|be|especially|grateful|for|freedom|after|a|film|like|this|.\nThe|dirty|jokes|provide|the|funniest|moments|in|this|oddly|sweet|comedy|about|jokester|highway|patrolmen|.\nY|Tu|Mamá|También|is|hilariously|,|gloriously|alive|,|and|quite|often|hotter|than|Georgia|asphalt|.\n...|works|on|some|levels|and|is|certainly|worth|seeing|at|least|once|.\nYou|come|away|from|his|film|overwhelmed|,|hopeful|and|,|perhaps|paradoxically|,|illuminated|.\nIf|the|material|is|slight|and|admittedly|manipulative|,|Jacquot|preserves|Tosca|'s|intoxicating|ardor|through|his|use|of|the|camera|.\nThirteen|Conversations|About|One|Thing|lays|out|a|narrative|puzzle|that|interweaves|individual|stories|,|and|,|like|a|Mobius|strip|,|elliptically|loops|back|to|where|it|began|.\nOverall|,|it|'s|a|wacky|and|inspired|little|film|that|works|effortlessly|at|delivering|genuine|,|acerbic|laughs|.\nA|must|for|fans|of|British|cinema|,|if|only|because|so|many|titans|of|the|industry|are|along|for|the|ride|.\nTsai|has|managed|to|create|an|underplayed|melodrama|about|family|dynamics|and|dysfunction|that|harks|back|to|the|spare|,|unchecked|heartache|of|Yasujiro|Ozu|.\nUntil|(|the|)|superfluous|...|epilogue|that|leaks|suspension|of|disbelief|like|a|sieve|,|Die|Another|Day|is|as|stimulating|&|heart-rate-raising|as|any|James|Bond|thriller|.\nIt|'s|a|good|film|,|but|it|falls|short|of|its|aspiration|to|be|a|true|`|epic|'|.\nAll|the|pieces|fall|together|without|much|surprise|,|but|little|moments|give|it|a|boost|.\nThe|beauty|of|Alexander|Payne|'s|ode|to|the|Everyman|is|in|the|details|.\nA|touching|drama|about|old|age|and|grief|with|a|tour|de|force|performance|by|Michel|Piccoli|.\nThe|ending|feels|at|odds|with|the|rest|of|the|film|.\nA|tone|of|rueful|compassion|...|reverberates|throughout|this|film|,|whose|meaning|and|impact|is|sadly|heightened|by|current|world|events|.\nA|beautiful|paean|to|a|time|long|past|.\nDense|and|thoughtful|and|brimming|with|ideas|that|are|too|complex|to|be|rapidly|absorbed|.\nIf|you|thought|Tom|Hanks|was|just|an|ordinary|big-screen|star|,|wait|until|you|'ve|seen|him|eight|stories|tall|.\nWith|this|masterful|,|flawless|film|,|(|Wang|)|emerges|in|the|front|ranks|of|China|'s|now|numerous|,|world-renowned|filmmakers|.\nShyamalan|offers|copious|hints|along|the|way|--|myriad|signs|,|if|you|will|--|that|beneath|the|familiar|,|funny|surface|is|a|far|bigger|,|far|more|meaningful|story|than|one|in|which|little|green|men|come|to|Earth|for|harvesting|purposes|.\nThis|film|is|an|act|of|spiritual|faith|--|an|eloquent|,|deeply|felt|meditation|on|the|nature|of|compassion|.\nA|different|kind|of|love|story|-|one|that|is|dark|,|disturbing|,|painful|to|watch|,|yet|compelling|.\nSplendidly|illustrates|the|ability|of|the|human|spirit|to|overcome|adversity|.\nA|compelling|,|gut-clutching|piece|of|advocacy|cinema|that|carries|you|along|in|a|torrent|of|emotion|as|it|explores|the|awful|complications|of|one|terrifying|day|.\nShe|'s|as|rude|and|profane|as|ever|,|always|hilarious|and|,|most|of|the|time|,|absolutely|right|in|her|stinging|social|observations|.\nTo|those|who|have|not|read|the|book|,|the|film|is|a|much|better|mother-daughter|tale|than|last|summer|'s|`|Divine|Secrets|of|the|Ya-Ya|Sisterhood|,|'|but|that|'s|not|saying|much|.\nEven|before|it|builds|up|to|its|insanely|staged|ballroom|scene|,|in|which|3000|actors|appear|in|full|regalia|,|it|'s|waltzed|itself|into|the|art|film|pantheon|.\nA|thoughtful|,|reverent|portrait|of|what|is|essentially|a|subculture|,|with|its|own|rules|regarding|love|and|family|,|governance|and|hierarchy|.\nIt|seems|impossible|that|an|epic|four-hour|Indian|musical|about|a|cricket|game|could|be|this|good|,|but|it|is|.\nWill|certainly|appeal|to|Asian|cult|cinema|fans|and|Asiaphiles|interested|to|see|what|all|the|fuss|is|about|.\nTouches|smartly|and|wistfully|on|a|number|of|themes|,|not|least|the|notion|that|the|marginal|members|of|society|...|might|benefit|from|a|helping|hand|and|a|friendly|kick|in|the|pants|.\nA|wildly|entertaining|scan|of|Evans|'|career|.\nA|mature|,|deeply|felt|fantasy|of|a|director|'s|travel|through|300|years|of|Russian|history|.\nBoldly|engineering|a|collision|between|tawdry|B-movie|flamboyance|and|grandiose|spiritual|anomie|,|Rose|'s|film|,|true|to|its|source|material|,|provides|a|tenacious|demonstration|of|death|as|the|great|equalizer|.\nA|finely|tuned|mood|piece|,|a|model|of|menacing|atmosphere|.\nThe|Salton|Sea|has|moments|of|inspired|humour|,|though|every|scrap|is|of|the|darkest|variety|.\nBoth|a|beautifully|made|nature|film|and|a|tribute|to|a|woman|whose|passion|for|this|region|and|its|inhabitants|still|shines|in|her|quiet|blue|eyes|.\nAlthough|shot|with|little|style|,|Skins|is|heartfelt|and|achingly|real|.\nHarks|back|to|a|time|when|movies|had|more|to|do|with|imagination|than|market|research|.\nUpsetting|and|thought-provoking|,|the|film|has|an|odd|purity|that|does|n't|bring|you|into|the|characters|so|much|as|it|has|you|study|them|.\nA|very|pretty|after-school|special|.\nIt|'s|an|effort|to|watch|this|movie|,|but|it|eventually|pays|off|and|is|effective|if|you|stick|with|it|.\nA|harrowing|account|of|a|psychological|breakdown|.\nContinually|challenges|perceptions|of|guilt|and|innocence|,|of|good|guys|and|bad|,|and|asks|us|whether|a|noble|end|can|justify|evil|means|.\nIt|certainly|wo|n't|win|any|awards|in|the|plot|department|but|it|sets|out|with|no|pretensions|and|delivers|big|time|.\nDog|Soldiers|does|n't|transcend|genre|--|it|embraces|it|,|energizes|it|and|takes|big|bloody|chomps|out|of|it|.\nAt|once|emotional|and|richly|analytical|,|the|Cosby-Seinfeld|encounter|alone|confirms|the|serious|weight|behind|this|superficially|loose|,|larky|documentary|.\nIt|may|scream|low|budget|,|but|this|charmer|has|a|spirit|that|can|not|be|denied|.\n`|Alice|'s|adventure|through|the|looking|glass|and|into|zombie-land|'|is|filled|with|strange|and|wonderful|creatures|.\nWithout|(|De|Niro|)|,|City|By|The|Sea|would|slip|under|the|waves|.\nHe|drags|it|back|,|single-handed|.\nA|good|music|documentary|,|probably|one|of|the|best|since|The|Last|Waltz|.\nIf|the|plot|seems|a|bit|on|the|skinny|side|,|that|'s|because|Panic|Room|is|interested|in|nothing|more|than|sucking|you|in|...|and|making|you|sweat|.\n...|(|the|film|)|works|,|due|mostly|to|the|tongue-in-cheek|attitude|of|the|screenplay|.\nThe|film|becomes|an|overwhelming|pleasure|,|and|you|find|yourself|rooting|for|Gai|'s|character|to|avoid|the|fate|that|has|befallen|every|other|Carmen|before|her|.\nBroomfield|has|a|rather|unique|approach|to|documentary|.\nHe|thinks|the|film|is|just|as|much|a|document|about|him|as|it|is|about|the|subject|.\nAt|its|best|when|the|guarded|,|resentful|Betty|and|the|manipulative|yet|needy|Margot|are|front|and|center|.\nGloriously|straight|from|the|vagina|.\nIt|'s|excessively|quirky|and|a|little|underconfident|in|its|delivery|,|but|otherwise|this|is|the|best|`|old|neighborhood|'|project|since|Christopher|Walken|kinda|romanced|Cyndi|Lauper|in|The|Opportunists|.\nThe|film|oozes|craft|.\nRobinson|'s|web|of|suspense|matches|the|page-turning|frenzy|that|Clancy|creates|.\nManages|to|be|both|hugely|entertaining|and|uplifting|.\nA|classic|fairy|tale|that|perfectly|captures|the|wonders|and|worries|of|childhood|in|a|way|that|few|movies|have|ever|approached|.\nIt|'s|the|unsettling|images|of|a|war-ravaged|land|that|prove|more|potent|and|riveting|than|the|unlikely|story|of|Sarah|and|Harrison|.\na|wonderfully|warm|human|drama|that|remains|vividly|in|memory|long|after|viewing\nJaunty|fun|,|with|its|celeb-strewn|backdrop|well|used|.\nRecoing|'s|fantastic|performance|does|n't|exactly|reveal|what|makes|Vincent|tick|,|but|perhaps|any|definitive|explanation|for|it|would|have|felt|like|a|cheat|.\nWashington|overcomes|the|script|'s|flaws|and|envelops|the|audience|in|his|character|'s|anguish|,|anger|and|frustration|.\nThe|film|fearlessly|gets|under|the|skin|of|the|people|involved|...|This|makes|it|not|only|a|detailed|historical|document|,|but|an|engaging|and|moving|portrait|of|a|subculture|.\nA|searing|,|epic|treatment|of|a|nationwide|blight|that|seems|to|be|,|horrifyingly|,|ever|on|the|rise|.\nNot|a|film|for|the|faint|of|heart|or|conservative|of|spirit|,|but|for|the|rest|of|us|--|especially|San|Francisco|lovers|--|it|'s|a|spirited|film|and|a|must-see|.\nRead|My|Lips|is|to|be|viewed|and|treasured|for|its|extraordinary|intelligence|and|originality|as|well|as|its|lyrical|variations|on|the|game|of|love|.\nThe|color|sense|of|Stuart|Little|2|is|its|most|immediate|and|most|obvious|pleasure|,|but|it|would|count|for|very|little|if|the|movie|were|n't|as|beautifully|shaped|and|as|delicately|calibrated|in|tone|as|it|is|.\nwhile|(|Roman|Coppola|)|scores|points|for|style|,|he|staggers|in|terms|of|story|.\nAny|movie|that|makes|hard|work|seem|heroic|deserves|a|look|.\nIt|may|not|be|a|huge|cut|of|above|the|rest|,|but|I|enjoyed|Barbershop|.\nIt|'s|a|funny|little|movie|with|clever|dialogue|and|likeable|characters|.\nA|different|and|emotionally|reserved|type|of|survival|story|--|a|film|less|about|refracting|all|of|World|War|II|through|the|specific|conditions|of|one|man|,|and|more|about|that|man|lost|in|its|midst|.\nIt|'s|sweet|,|funny|,|charming|,|and|completely|delightful|.\nA|perfectly|competent|and|often|imaginative|film|that|lacks|what|little|Lilo|&|Stitch|had|in|spades|--|charisma|.\nBeautifully|shot|against|the|frozen|winter|landscapes|of|Grenoble|and|Geneva|,|the|film|unfolds|with|all|the|mounting|tension|of|an|expert|thriller|,|until|the|tragedy|beneath|it|all|gradually|reveals|itself|.\nMedem|may|have|disrobed|most|of|the|cast|,|leaving|their|bodies|exposed|,|but|the|plot|remains|as|guarded|as|a|virgin|with|a|chastity|belt|.\nThat|'s|why|Sex|and|Lucia|is|so|alluring|.\nAn|elegant|work|,|Food|of|Love|is|as|consistently|engaging|as|it|is|revealing|.\nAlthough|largely|a|heavy-handed|indictment|of|parental|failings|and|the|indifference|of|Spanish|social|workers|and|legal|system|towards|child|abuse|,|the|film|retains|ambiguities|that|make|it|well|worth|watching|.\nA|behind|the|scenes|look|at|the|training|and|dedication|that|goes|into|becoming|a|world-class|fencer|and|the|champion|that|'s|made|a|difference|to|NYC|inner-city|youth|.\nA|brain|twister|,|less|a|movie-movie|than|a|funny|and|weird|meditation|on|Hollywood|,|success|,|artistic|integrity|and|intellectual|bankruptcy|.\nA|powerful|,|inflammatory|film|about|religion|that|dares|to|question|an|ancient|faith|,|and|about|hatred|that|offers|no|easy|,|comfortable|resolution|.\nIn|its|own|floundering|way|,|it|gets|to|you|.\nJust|like|Igby|.\nReturn|to|Never|Land|may|be|another|shameless|attempt|by|Disney|to|rake|in|dough|from|baby|boomer|families|,|but|it|'s|not|half-bad|.\nWise|and|deadpan|humorous|.\nGod|bless|Crudup|and|his|aversion|to|taking|the|easy|Hollywood|road|and|cashing|in|on|his|movie-star|gorgeousness|.\nIf|Signs|is|a|good|film|,|and|it|is|,|the|essence|of|a|great|one|is|in|there|somewhere|.\nVeterans|of|the|dating|wars|will|smirk|uneasily|at|the|film|'s|nightmare|versions|of|everyday|sex-in-the-city|misadventures|.\nSchrader|examines|Crane|'s|decline|with|unblinking|candor|.\nYou|can|watch|,|giggle|and|get|an|adrenaline|boost|without|feeling|like|you|'ve|completely|lowered|your|entertainment|standards|.\nIt|thankfully|goes|easy|on|the|reel\\/real|world|dichotomy|that|(|Jaglom|)|pursued|with|such|enervating|determination|in|Venice\\/Venice|.\nThis|rich|,|bittersweet|Israeli|documentary|,|about|the|life|of|song-and-dance-man|Pasach|`|ke|Burstein|and|his|family|,|transcends|ethnic|lines|.\nSensitively|examines|general|issues|of|race|and|justice|among|the|poor|,|and|specifically|raises|serious|questions|about|the|death|penalty|and|asks|what|good|the|execution|of|a|mentally|challenged|woman|could|possibly|do|.\nCool|gadgets|and|creatures|keep|this|fresh|.\nNot|as|good|as|the|original|,|but|what|is|...\nPresents|a|side|of|contemporary|Chinese|life|that|many|outsiders|will|be|surprised|to|know|exists|,|and|does|so|with|an|artistry|that|also|smacks|of|revelation|.\n(|Jeff|'s|)|gorgeous|,|fluid|compositions|,|underlined|by|Neil|Finn|and|Edmund|McWilliams|'s|melancholy|music|,|are|charged|with|metaphor|,|but|rarely|easy|,|obvious|or|self-indulgent|.\nEngages|us|in|constant|fits|of|laughter|,|until|we|find|ourselves|surprised|at|how|much|we|care|about|the|story|,|and|end|up|walking|out|not|only|satisfied|but|also|somewhat|touched|.\na|bilingual|charmer|,|just|like|the|woman|who|inspired|it\nBlisteringly|rude|,|scarily|funny|,|sorrowfully|sympathetic|to|the|damage|it|surveys|,|the|film|has|in|Kieran|Culkin|a|pitch-perfect|Holden|.\nThe|fourth|``|Pokemon|''|is|a|diverting|--|if|predictable|--|adventure|suitable|for|a|matinee|,|with|a|message|that|cautions|children|about|disturbing|the|world|'s|delicate|ecological|balance|.\nWhat|one|is|left|with|,|even|after|the|most|awful|acts|are|committed|,|is|an|overwhelming|sadness|that|feels|as|if|it|has|made|its|way|into|your|very|bloodstream|.\n(|It|)|has|the|feel|of|a|summer|popcorn|movie|.\nNothing|too|deep|or|substantial|.\nExplosions|,|jokes|,|and|sexual|innuendoes|abound|.\nMiyazaki|'s|nonstop|images|are|so|stunning|,|and|his|imagination|so|vivid|,|that|the|only|possible|complaint|you|could|have|about|Spirited|Away|is|that|there|is|no|rest|period|,|no|timeout|.\n...|a|delightfully|unpredictable|,|hilarious|comedy|with|wonderful|performances|that|tug|at|your|heart|in|ways|that|utterly|transcend|gender|labels|.\nAssured|,|vital|and|well|wrought|,|the|film|is|,|arguably|,|the|most|accomplished|work|to|date|from|Hong|Kong|'s|versatile|Stanley|Kwan|.\nDelia|,|Greta|,|and|Paula|rank|as|three|of|the|most|multilayered|and|sympathetic|female|characters|of|the|year|.\nAs|each|of|them|searches|for|their|place|in|the|world|,|Miller|digs|into|their|very|minds|to|find|an|unblinking|,|flawed|humanity|.\nA|surprisingly|sweet|and|gentle|comedy|.\nShanghai|Ghetto|,|much|stranger|than|any|fiction|,|brings|this|unknown|slice|of|history|affectingly|to|life|.\nIt|'s|not|particularly|well|made|,|but|since|I|found|myself|howling|more|than|cringing|,|I|'d|say|the|film|works|.\nBut|this|is|Lohman|'s|film|.\nHer|performance|moves|between|heartbreak|and|rebellion|as|she|continually|tries|to|accommodate|to|fit|in|and|gain|the|unconditional|love|she|seeks|.\nThough|its|story|is|only|surface|deep|,|the|visuals|and|enveloping|sounds|of|Blue|Crush|make|this|surprisingly|decent|flick|worth|a|summertime|look-see|.\nRyosuke|has|created|a|wry|,|winning|,|if|languidly|paced|,|meditation|on|the|meaning|and|value|of|family|.\nSometimes|charming|,|sometimes|infuriating|,|this|Argentinean|`|dramedy|'|succeeds|mainly|on|the|shoulders|of|its|actors|.\nYou|may|feel|compelled|to|watch|the|film|twice|or|pick|up|a|book|on|the|subject|.\nOften|shocking|but|ultimately|worthwhile|exploration|of|motherhood|and|desperate|mothers|.\nA|venturesome|,|beautifully|realized|psychological|mood|piece|that|reveals|its|first-time|feature|director|'s|understanding|of|the|expressive|power|of|the|camera|.\nLike|The|Rugrats|movies|,|The|Wild|Thornberrys|Movie|does|n't|offer|much|more|than|the|series|,|but|its|emphasis|on|caring|for|animals|and|respecting|other|cultures|is|particularly|welcome|.\nTaken|outside|the|context|of|the|current|political|climate|(|see|:|terrorists|are|more|evil|than|ever|!|)\n,|The|Sum|of|All|Fears|is|simply|a|well-made|and|satisfying|thriller|.\nThe|setting|is|so|cool|that|it|chills|the|characters|,|reducing|our|emotional|stake|in|the|outcome|of|``|Intacto|'s|''|dangerous|and|seductively|stylish|game|.\nA|lovely|and|beautifully|photographed|romance|.\nOne|of|the|most|splendid|entertainments|to|emerge|from|the|French|film|industry|in|years|.\nIts|vision|of|that|awkward|age|when|sex|threatens|to|overwhelm|everything|else|is|acute|enough|to|make|everyone|who|has|been|there|squirm|with|recognition|.\nFor|almost|the|first|two-thirds|of|Martin|Scorsese|'s|168-minute|Gangs|of|New|York|,|I|was|entranced|.\nOpen-ended|and|composed|of|layer|upon|layer|,|Talk|to|Her|is|a|cinephile|'s|feast|,|an|invitation|to|countless|interpretations|.\nOne|of|the|most|slyly|exquisite|anti-adult|movies|ever|made|.\nWhat|makes|Esther|Kahn|so|demanding|is|that|it|progresses|in|such|a|low-key|manner|that|it|risks|monotony|.\nBut|it|'s|worth|the|concentration|.\nNeither|the|funniest|film|that|Eddie|Murphy|nor|Robert|De|Niro|has|ever|made|,|Showtime|is|nevertheless|efficiently|amusing|for|a|good|while|.\nBefore|it|collapses|into|exactly|the|kind|of|buddy|cop|comedy|it|set|out|to|lampoon|,|anyway|.\nA|clever|script|and|skilled|actors|bring|new|energy|to|the|familiar|topic|of|office|politics|.\nThe|determination|of|Pinochet|'s|victims|to|seek|justice|,|and|their|often|heartbreaking|testimony|,|spoken|directly|into|director|Patricio|Guzman|'s|camera|,|pack|a|powerful|emotional|wallop|.\nDisney|aficionados|will|notice|distinct|parallels|between|this|story|and|the|1971|musical|``|Bedknobs|and|Broomsticks|,|''|which|also|dealt|with|British|children|rediscovering|the|power|of|fantasy|during|wartime|.\nIt|'s|...|worth|the|extra|effort|to|see|an|artist|,|still|committed|to|growth|in|his|ninth|decade|,|change|while|remaining|true|to|his|principles|with|a|film|whose|very|subject|is|,|quite|pointedly|,|about|the|peril|of|such|efforts|.\nDark|and|unrepentant|,|this|excursion|into|the|epicenter|of|percolating|mental|instability|is|not|easily|dismissed|or|forgotten|.\nIt|'s|a|rollicking|adventure|for|you|and|all|your|mateys|,|regardless|of|their|ages|.\nBoasts|a|handful|of|virtuosic|set|pieces|and|offers|a|fair|amount|of|trashy|,|kinky|fun|.\n...|Myers|has|turned|his|franchise|into|the|movie|version|of|an|adolescent|dirty-joke|book|done|up|in|post-Tarantino|pop-culture|riffs|...\nIf|you|'re|down|for|a|silly|hack-and-slash|flick|,|you|can|do|no|wrong|with|Jason|X.\nThis|is|a|very|ambitious|project|for|a|fairly|inexperienced|filmmaker|,|but|good|actors|,|good|poetry|and|good|music|help|sustain|it|.\nThe|modern|master|of|the|chase|sequence|returns|with|a|chase|to|end|all|chases\nThe|messy|emotions|raging|throughout|this|three-hour|effort|are|instantly|recognizable|,|allowing|the|film|to|paradoxically|feel|familiar|and|foreign|at|the|same|time|.\n...|either|you|'re|willing|to|go|with|this|claustrophobic|concept|or|you|'re|not|.\nJust|watch|Bettany|strut|his|stuff|.\nYou|'ll|know|a|star|when|you|see|one|.\nAustin|Powers|in|Goldmember|is|a|cinematic|car|wreck|,|a|catastrophic|collision|of|tastelessness|and|gall|that|nevertheless|will|leave|fans|clamoring|for|another|ride|.\nYou|can|fire|a|torpedo|through|some|of|Clancy|'s|holes|,|and|the|scripters|do|n't|deserve|any|Oscars|.\nBut|the|nerve-raked|acting|,|the|crackle|of|lines|,|the|impressive|stagings|of|hardware|,|make|for|some|robust|and|scary|entertainment|.\ncontrasting|the|original|Ringu|with|the|current|Americanized|adaptation|is|akin|to|comparing|The|Evil|Dead|with|Evil|Dead|II\nA|small|gem|of|a|movie|that|defies|classification|and|is|as|thought-provoking|as|it|is|funny|,|scary|and|sad|.\nFor|a|long|time|the|film|succeeds|with|its|dark|,|delicate|treatment|of|these|characters|and|its|unerring|respect|for|them|.\nIt|'s|the|kind|of|effectively|creepy-scary|thriller|that|has|you|fixating|on|a|far|corner|of|the|screen|at|times|because|your|nerves|just|ca|n't|take|it|any|more|.\nLate|Marriage|is|an|in-your-face|family|drama|and|black|comedy|that|is|filled|with|raw|emotions|conveying|despair|and|love|.\nAn|ambitious|and|moving|but|bleak|film|.\nIt|'s|too|harsh|to|work|as|a|piece|of|storytelling|,|but|as|an|intellectual|exercise|--|an|unpleasant|debate|that|'s|been|given|the|drive|of|a|narrative|and|that|'s|been|acted|out|--|The|Believer|is|nothing|less|than|a|provocative|piece|of|work|.\nIt|'s|sweet|.\nIt|'s|funny|.\nIt|wears|its|heart|on|the|sleeve|of|its|gaudy|Hawaiian|shirt|.\nAnd|,|thanks|to|the|presence|of|`|the|King|,|'|it|also|rocks|.\nIt|'s|never|laugh-out-loud|funny|,|but|it|is|frequently|amusing|.\nA|bittersweet|film|,|simple|in|form|but|rich|with|human|events|.\nThe|unexplored|story|opportunities|of|``|Punch-Drunk|Love|''|may|have|worked|against|the|maker|'s|minimalist|intent|but|it|is|an|interesting|exercise|by|talented|writer\\/director|Anderson|.\n``|Punch-Drunk|Love|''|is|a|little|like|a|chocolate|milk|moustache|...\n...|digs|beyond|the|usual|portrayals|of|good|kids|and|bad|seeds|to|reveal|a|more|ambivalent|set|of|characters|and|motivations|.\nThe|beauty|of|the|piece|is|that|it|counts|heart|as|important|as|humor|.\nPiercingly|affecting|...|while|clearly|a|manipulative|film|,|emerges|as|powerful|rather|than|cloying|.\nVery|amusing|,|not|the|usual|route|in|a|thriller|,|and|the|performances|are|odd|and|pixilated|and|sometimes|both|.\nWhile|the|frequent|allusions|to|gurus|and|doshas|will|strike|some|Westerners|as|verging|on|mumbo-jumbo|...|broad|streaks|of|common|sense|emerge|with|unimpeachable|clarity|.\nThe|cast|is|phenomenal|,|especially|the|women|.\nA|marvel|of|production|design|.\nThe|byplay|and|bickering|between|the|now|spy-savvy|siblings|,|Carmen|(|Vega|)|and|Juni|(|Sabara|)|Cortez|,|anchor|the|film|in|a|very|real|and|amusing|give-and-take|.\nGood|actors|have|a|radar|for|juicy|roles|--|there|'s|a|plethora|of|characters|in|this|picture|,|and|not|one|of|them|is|flat|.\nThough|in|some|ways|similar|to|Catherine|Breillat|'s|Fat|Girl|,|Rain|is|the|far|superior|film|.\nIs|not|so|much|a|work|of|entertainment|as|it|is|a|unique|,|well-crafted|psychological|study|of|grief|.\nRemarkable|for|its|excellent|storytelling|,|its|economical|,|compressed|characterisations|and|for|its|profound|humanity|,|it|'s|an|adventure|story|and|history|lesson|all|in|one|.\nColorful|,|energetic|and|sweetly|whimsical|...|the|rare|sequel|that|'s|better|than|its|predecessor|.\nReno|himself|can|take|credit|for|most|of|the|movie|'s|success|.\nHe|'s|one|of|the|few|`|cool|'|actors|who|never|seems|aware|of|his|own|coolness|.\nSignificantly|better|than|its|2002|children|'s|-|movie|competition|.\nUB|equally|spoofs|and|celebrates|the|more|outre|aspects|of|`|black|culture|'|and|the|dorkier|aspects|of|`|white|culture|,|'|even|as|it|points|out|how|inseparable|the|two|are|.\nA|lot|smarter|than|your|average|Bond|.\n...|bright|,|intelligent|,|and|humanly|funny|film|.\nPainful|,|horrifying|and|oppressively|tragic|,|this|film|should|not|be|missed|.\nPart|of|the|film|'s|cheeky|charm|comes|from|its|vintage|schmaltz|.\nSo|unique|and|stubborn|and|charismatic|that|you|want|it|to|be|better|and|more|successful|than|it|is|.\nI|wo|n't|argue|with|anyone|who|calls|`|Slackers|'|dumb|,|insulting|,|or|childish|...|but|I|laughed|so|much|that|I|did|n't|mind|.\nIt|arrives|with|an|impeccable|pedigree|,|mongrel|pep|,|and|almost|indecipherable|plot|complications|.\nSo|fiendishly|cunning|that|even|the|most|jaded|cinema|audiences|will|leave|the|auditorium|feeling|dizzy|,|confused|,|and|totally|disorientated|.\nNot|to|mention|absolutely|refreshed|.\nA|vibrant|,|colorful|,|semimusical|rendition|.\nThe|film|sometimes|flags|...|but|there|is|enough|secondary|action|to|keep|things|moving|along|at|a|brisk|,|amusing|pace|.\nIt|'s|a|drawling|,|slobbering|,|lovable|run-on|sentence|of|a|film|,|a|Southern|Gothic|with|the|emotional|arc|of|its|raw|blues|soundtrack|.\nNolan|proves|that|he|can|cross|swords|with|the|best|of|them|and|helm|a|more|traditionally|plotted|popcorn|thriller|while|surrendering|little|of|his|intellectual|rigor|or|creative|composure|.\nIt|is|different|from|others|in|its|genre|in|that|it|is|does|not|rely|on|dumb|gags|,|anatomical|humor|,|or|character|cliches|;|it|primarily|relies|on|character|to|tell|its|story|.\nBoth|a|successful|adaptation|and|an|enjoyable|film|in|its|own|right|.\nAll|the|filmmakers|are|asking|of|us|,|is|to|believe|in|something|that|is|improbable|.\nIf|the|very|concept|makes|you|nervous|...|you|'ll|have|an|idea|of|the|film|'s|creepy|,|scary|effectiveness|.\nWorth|a|look|by|those|on|both|sides|of|the|issues|,|if|only|for|the|perspective|it|offers|,|one|the|public|rarely|sees|.\nA|mostly|believable|,|refreshingly|low-key|and|quietly|inspirational|little|sports|drama|.\nMay|be|more|genial|than|ingenious|,|but|it|gets|the|job|done|.\nA|stylish|cast|and|some|clever|scripting|solutions|help|Chicago|make|the|transition|from|stage|to|screen|with|considerable|appeal|intact|.\nExhilarating|,|funny|and|fun|.\nWhile|not|quite|``|Shrek|''|or|``|Monsters|,|Inc.|''|,|it|'s|not|too|bad|.\nIt|'s|worth|taking|the|kids|to|.\nIn|the|end|there|is|one|word|that|best|describes|this|film|:|honest|.\nWriter-director|David|Jacobson|and|his|star|,|Jeremy|Renner|,|have|made|a|remarkable|film|that|explores|the|monster|'s|psychology|not|in|order|to|excuse|him|but|rather|to|demonstrate|that|his|pathology|evolved|from|human|impulses|that|grew|hideously|twisted|.\nThe|action|sequences|are|fun|and|reminiscent|of|combat|scenes|from|the|Star|Wars|series|.\nNorton|is|magnetic|as|Graham|.\nSavvy|director|Robert|J.|Siegel|and|his|co-writers|keep|the|story|subtle|and|us|in|suspense|.\nIt|pulls|the|rug|out|from|under|you|,|just|when|you|'re|ready|to|hate|one|character|,|or|really|sympathize|with|another|character|,|something|happens|to|send|you|off|in|different|direction|.\nTwenty|years|after|its|first|release|,|E.T.|remains|the|most|wondrous|of|all|Hollywood|fantasies|--|and|the|apex|of|Steven|Spielberg|'s|misunderstood|career|.\nIt|says|a|lot|about|a|filmmaker|when|he|can|be|wacky|without|clobbering|the|audience|over|the|head|and|still|maintain|a|sense|of|urgency|and|suspense|.\nGives|us|a|lot|to|chew|on|,|but|not|all|of|it|has|been|properly|digested|.\nIt|'s|an|exhilarating|place|to|visit|,|this|laboratory|of|laughter|.\n``|Simone|''|is|a|fun|and|funky|look|into|an|artificial|creation|in|a|world|that|thrives|on|artificiality|.\nA|great|companion|piece|to|other|Napoleon|films|.\nTo|some|eyes|this|will|seem|like|a|recycling|of|clichés|,|an|assassin|'s|greatest|hits|.\nTo|others|,|it|will|remind|them|that|Hong|Kong|action|cinema|is|still|alive|and|kicking|.\nAt|the|end|of|the|movie|,|my|6-year-old|nephew|said|,|``|I|guess|I|come|from|a|broken|family|,|and|my|uncles|are|all|aliens|,|too|.|''\nCongrats|Disney|on|a|job|well|done|,|I|enjoyed|it|just|as|much|!\nA|remarkably|alluring|film|set|in|the|constrictive|Eisenhower|era|about|one|suburban|woman|'s|yearning|in|the|face|of|a|loss|that|shatters|her|cheery|and|tranquil|suburban|life|.\nBerling|and|Béart|...|continue|to|impress|,|and|Isabelle|Huppert|...|again|shows|uncanny|skill|in|getting|under|the|skin|of|her|characters|.\nUplifting|,|funny|and|wise|.\nRemarkable|for|its|intelligence|and|intensity|.\nThe|hypnotic|imagery|and|fragmentary|tale|explore|the|connections|between|place|and|personal|identity|.\nBrosnan|is|more|feral|in|this|film|than|I|'ve|seen|him|before|and|Halle|Berry|does|her|best|to|keep|up|with|him|.\nA|film|that|begins|with|the|everyday|lives|of|naval|personnel|in|San|Diego|and|ends|with|scenes|so|true|and|heartbreaking|that|tears|welled|up|in|my|eyes|both|times|I|saw|the|film|.\n``|On|Guard|!|''\nwo|n't|be|placed|in|the|pantheon|of|the|best|of|the|swashbucklers|but|it|is|a|whole|lot|of|fun|and|you|get|to|see|the|one|of|the|world|'s|best|actors|,|Daniel|Auteuil|,|have|a|whale|of|a|good|time|.\nThe|movie|starts|with|a|legend|and|ends|with|a|story|that|is|so|far-fetched|it|would|be|impossible|to|believe|if|it|were|n't|true|.\nThis|is|the|stuff|that|Disney|movies|are|made|of|.\nLike|all|great|films|about|a|life|you|never|knew|existed|,|it|offers|much|to|absorb|and|even|more|to|think|about|after|the|final|frame|.\nThat|the|e-graveyard|holds|as|many|good|ideas|as|bad|is|the|cold|comfort|that|Chin|'s|film|serves|up|with|style|and|empathy|.\nWhile|we|no|longer|possess|the|lack-of-attention|span|that|we|did|at|seventeen|,|we|had|no|trouble|sitting|for|Blade|II|.\nlike|a|poor|man|'s|You|Can|Count|On|Me\n...|a|solid|,|unassuming|drama|.\nA|seriocomic|debut|of|extravagant|promise|by|Georgian-Israeli|director|Dover|Kosashvili|.\nThanks|to|Ice|Cube|,|Benjamins|feels|an|awful|lot|like|Friday|in|Miami|.\nThe|real|star|of|this|movie|is|the|score|,|as|in|the|songs|translate|well|to|film|,|and|it|'s|really|well|directed|.\nIt|'s|rare|to|find|a|film|to|which|the|adjective|`|gentle|'|applies|,|but|the|word|perfectly|describes|Pauline|&|Paulette|.\nMy|Wife|is|an|Actress|has|its|moments|in|looking|at|the|comic|effects|of|jealousy|.\nIn|the|end|,|though|,|it|is|only|mildly|amusing|when|it|could|have|been|so|much|more|.\nBoth|Garcia|and|Jagger|turn|in|perfectly|executed|and|wonderfully|sympathetic|characters|,|who|are|alternately|touching|and|funny|.\nHumorous|,|artsy|,|and|even|cute|,|in|an|off-kilter|,|dark|,|vaguely|disturbing|way|.\nThe|more|you|think|about|the|movie|,|the|more|you|will|probably|like|it|.\n...|a|powerful|sequel|and|one|of|the|best|films|of|the|year|.\nFor|the|most|part|,|the|film|does|hold|up|pretty|well|.\nTogether|(|Time|Out|and|Human|Resources|)|establish|Mr.|Cantet|as|France|'s|foremost|cinematic|poet|of|the|workplace|.\nYou|can|take|the|grandkids|or|the|grandparents|and|never|worry|about|anyone|being|bored|...|audience|is|a|sea|of|constant|smiles|and|frequent|laughter|.\nLike|these|Russo|guys|lookin|'|for|their|Mamet|instead|found|their|Sturges|.\nThere|has|been|a|string|of|ensemble|cast|romances|recently|...|but|Peter|Mattei|'s|Love|in|the|Time|of|Money|sets|itself|apart|by|forming|a|chain|of|relationships|that|come|full|circle|to|end|on|a|positive|(|if|tragic|)|note|.\nBy|applying|definition|to|both|sides|of|the|man|,|the|picture|realizes|a|fullness|that|does|not|negate|the|subject|.\nWho|is|the|audience|for|Cletis|Tout|?\nAnybody|who|enjoys|quirky|,|fun|,|popcorn|movies|with|a|touch|of|silliness|and|a|little|bloodshed|.\n(|Cuarón|has|)|created|a|substantive|movie|out|of|several|cliched|movie|structures|:|the|road|movie|,|the|coming-of-age|movie|,|and|the|teenage|sex|comedy|.\nPuts|to|rest|any|thought|that|the|German|film|industry|can|not|make|a|delightful|comedy|centering|on|food|.\nWitty|dialog|between|realistic|characters|showing|honest|emotions|.\nIt|'s|touching|and|tender|and|proves|that|even|in|sorrow|you|can|find|humor|.\nLike|blended|shades|of|lipstick|,|these|components|combine|into|one|terrific|story|with|lots|of|laughs|.\nAsh|Wednesday|is|not|Edward|Burns|'|best|film|,|but|it|is|a|good|and|ambitious|film|.\nAnd|it|marks|him|as|one|of|the|most|interesting|writer\\/directors|working|today|.\nAfter|one|gets|the|feeling|that|the|typical|Hollywood|disregard|for|historical|truth|and|realism|is|at|work|here|,|it|'s|a|matter|of|finding|entertainment|in|the|experiences|of|Zishe|and|the|fiery|presence|of|Hanussen|.\nThe|footage|of|the|rappers|at|play|and|the|prison|interview|with|Suge|Knight|are|just|two|of|the|elements|that|will|grab|you|.\n...|it|'s|as|comprehensible|as|any|Dummies|guide|,|something|even|non-techies|can|enjoy|.\nDo|n't|wait|to|see|this|terrific|film|with|your|kids|--|if|you|do|n't|have|kids|borrow|some|.\nMoretti|...|is|the|rare|common-man|artist|who|'s|wise|enough|to|recognize|that|there|are|few|things|in|this|world|more|complex|--|and|,|as|it|turns|out|,|more|fragile|--|than|happiness|.\nThe|movie|'s|captivating|details|are|all|in|the|performances|,|from|Foreman|'s|barking-mad|Taylor|to|Thewlis|'s|smoothly|sinister|Freddie|and|Bettany\\/McDowell|'s|hard-eyed|gangster|.\nFeatures|Fincher|'s|characteristically|startling|visual|style|and|an|almost|palpable|sense|of|intensity|.\nPrecocious|smarter-than-thou|wayward|teen|struggles|to|rebel|against|his|oppressive|,|right-wing|,|propriety-obsessed|family|.\nAnyone|else|seen|this|before|?\nMoore|provides|an|invaluable|service|by|sparking|debate|and|encouraging|thought|.\nBetter|still|,|he|does|all|of|this|,|and|more|,|while|remaining|one|of|the|most|savagely|hilarious|social|critics|this|side|of|Jonathan|Swift|.\nAlternating|between|facetious|comic|parody|and|pulp|melodrama|,|this|smart-aleck|movie|...|tosses|around|some|intriguing|questions|about|the|difference|between|human|and|android|life|.\nA|cutesy|romantic|tale|with|a|twist|.\nThis|is|a|gorgeous|film|-|vivid|with|color|,|music|and|life|.\nDelight|your|senses|and|crash|this|wedding|!\nA|brutally|dry|satire|of|Middle|American|numbness|.\nMore|sophisticated|and|literate|than|such|pictures|usually|are|...|an|amusing|little|catch|.\nSmith|examines|the|intimate|,|unguarded|moments|of|folks|who|live|in|unusual|homes|--|which|pop|up|in|nearly|every|corner|of|the|country|.\nWith|an|admirably|dark|first|script|by|Brent|Hanley|,|Paxton|,|making|his|directorial|feature|debut|,|does|strong|,|measured|work|.\nA|compelling|French|psychological|drama|examining|the|encounter|of|an|aloof|father|and|his|chilly|son|after|20|years|apart|.\n...|even|if|you|'ve|never|heard|of|Chaplin|,|you|'ll|still|be|glued|to|the|screen|.\nYou|have|enough|finely|tuned|acting|to|compensate|for|the|movie|'s|failings|.\nAs|the|dominant|Christine|,|Sylvie|Testud|is|icily|brilliant|.\nAlthough|tender|and|touching|,|the|movie|would|have|benefited|from|a|little|more|dramatic|tension|and|some|more|editing|.\nThe|story|that|emerges|has|elements|of|romance|,|tragedy|and|even|silent-movie|comedy|.\n(|``|Safe|Conduct|''|)|is|a|long|movie|at|163|minutes|but|it|fills|the|time|with|drama|,|romance|,|tragedy|,|bravery|,|political|intrigue|,|partisans|and|sabotage|.\nViva|le|Resistance|!\nIt|offers|a|glimpse|of|the|Solomonic|decision|facing|Jewish|parents|in|those|turbulent|times|:|to|save|their|children|and|yet|to|lose|them|.\nThe|film|is|delicately|narrated|by|Martin|Landau|and|directed|with|sensitivity|and|skill|by|Dana|Janklowicz-Mann|.\nMartyr|gets|royally|screwed|and|comes|back|for|more|.\nA|virtual|roller-coaster|ride|of|glamour|and|sleaze|.\nan|admirable|,|sometimes|exceptional|film\nIf|you|like|an|extreme|action-packed|film|with|a|hint|of|humor|,|then|Triple|X|marks|the|spot|.\nIf|you|'re|the|kind|of|parent|who|enjoys|intentionally|introducing|your|kids|to|films|which|will|cause|loads|of|irreparable|damage|that|years|and|years|of|costly|analysis|could|never|fix|,|I|have|just|one|word|for|you|-|--|Decasia\nMay|not|be|a|breakthrough|in|filmmaking|,|but|it|is|unwavering|and|arresting|.\nThe|film|'s|images|give|a|backbone|to|the|company|and|provide|an|emotional|edge|to|its|ultimate|demise|.\nA|bodice-ripper|for|intellectuals|.\nThe|locations|go|from|stark|desert|to|gorgeous|beaches|.\nThe|story|plays|out|slowly|,|but|the|characters|are|intriguing|and|realistic|.\nCount|on|his|movie|to|work|at|the|back|of|your|neck|long|after|you|leave|the|theater|.\nNeil|Burger|here|succeeded|in|...|making|the|mystery|of|four|decades|back|the|springboard|for|a|more|immediate|mystery|in|the|present|.\nThe|complex|,|politically|charged|tapestry|of|contemporary|Chinese|life|this|exciting|new|filmmaker|has|brought|to|the|screen|is|like|nothing|we|Westerners|have|seen|before|.\nA|thriller|made|from|a|completist|'s|checklist|rather|than|with|a|cultist|'s|passion|.\nTry|as|you|might|to|scrutinize|the|ethics|of|Kaufman|'s|approach|,|somehow|it|all|comes|together|to|create|a|very|compelling|,|sensitive|,|intelligent|and|almost|cohesive|piece|of|film|entertainment|.\nAs|quiet|,|patient|and|tenacious|as|Mr.|Lopez|himself|,|who|approaches|his|difficult|,|endless|work|with|remarkable|serenity|and|discipline|.\nThough|the|film|never|veers|from|its|comic|course|,|its|unintentional|parallels|might|inadvertently|evoke|memories|and|emotions|which|are|anything|but|humorous|.\nEvokes|the|style|and|flash|of|the|double-cross|that|made|Mamet|'s|``|House|of|Games|''|and|last|fall|'s|``|Heist|''|so|much|fun|.\nSo|original|in|its|base|concept|that|you|can|not|help|but|get|caught|up|.\nIt|may|be|a|no-brainer|,|but|at|least|it|'s|a|funny|no-brainer|.\nA|lot|more|dimensional|and|complex|than|its|sunny|disposition|would|lead|you|to|believe|.\nJeffs|has|created|a|breathtakingly|assured|and|stylish|work|of|spare|dialogue|and|acute|expressiveness|.\nUnderachieves|only|in|not|taking|the|Shakespeare|parallels|quite|far|enough|.\nThe|most|audacious|,|outrageous|,|sexually|explicit|,|psychologically|probing|,|pure|libido|film|of|the|year|has|arrived|from|Portugal|.\nThe|creative|animation|work|may|not|look|as|fully|`|rendered|'|as|Pixar|'s|industry|standard|,|but|it|uses|lighting|effects|and|innovative|backgrounds|to|an|equally|impressive|degree|.\nArt-house|to|the|core|,|Read|My|Lips|is|a|genre-curling|crime|story|that|revives|the|free-wheeling|noir|spirit|of|old|French|cinema|.\nGrant|is|certainly|amusing|,|but|the|very|hollowness|of|the|character|he|plays|keeps|him|at|arms|length\nConceptually|brilliant|...|Plays|like|a|living-room|War|Of|The|Worlds|,|gaining|most|of|its|unsettling|force|from|the|suggested|and|the|unknown|.\n...|manages|to|deliver|a|fair|bit|of|vampire|fun|.\nDrama|of|temptation|,|salvation|and|good|intentions|is|a|thoughtful|examination|of|faith|,|love|and|power|.\nThe|strength|of|the|film|comes|not|from|any|cinematic|razzle-dazzle|but|from|its|recovery|of|an|historical|episode|that|,|in|the|simple|telling|,|proves|simultaneously|harrowing|and|uplifting|.\nThe|performances|are|strong|,|though|the|subject|matter|demands|acting|that|borders|on|hammy|at|times|.\nA|damn|fine|and|a|truly|distinctive|and|a|deeply|pertinent|film|.\nStill|rapturous|after|all|these|years|,|Cinema|Paradiso|stands|as|one|of|the|great|films|about|movie|love|.\nReggio|and|Glass|put|on|an|intoxicating|show|.\nMacDowell|...|gives|give|a|solid|,|anguished|performance|that|eclipses|nearly|everything|else|she|'s|ever|done|.\nThe|thing|about|guys|like|Evans|is|this|:|You|'re|never|quite|sure|where|self-promotion|ends|and|the|truth|begins|.\nBut|as|you|watch|the|movie|,|you|'re|too|interested|to|care|.\nI|liked|a|lot|of|the|smaller|scenes|.\nThe|film|will|appeal|to|Discovery|Channel|fans|and|will|surely|widen|the|perspective|of|those|of|us|who|see|the|continent|through|rose-colored|glasses|.\nAn|eye-boggling|blend|of|psychedelic|devices|,|special|effects|and|backgrounds|,|`|Spy|Kids|2|'|is|a|visual|treat|for|all|audiences|.\nStraightforward|and|old-fashioned|in|the|best|possible|senses|of|both|those|words|,|Possession|is|a|movie|that|puts|itself|squarely|in|the|service|of|the|lovers|who|inhabit|it|.\nIt|may|...|work|as|a|jaunt|down|memory|lane|for|teens|and|young|adults|who|grew|up|on|televised|Scooby-Doo|shows|or|reruns|.\nOne|of|those|movies|that|catches|you|up|in|something|bigger|than|yourself|,|namely|,|an|archetypal|desire|to|enjoy|good|trash|every|now|and|then|.\nThis|harrowing|journey|into|combat|hell|vividly|captures|the|chaotic|insanity|and|personal|tragedies|that|are|all|too|abundant|when|human|hatred|spews|forth|unchecked|.\nFar|more|successful|,|if|considerably|less|ambitious|,|than|last|year|'s|Kubrick-meets-Spielberg|exercise|.\nElling|builds|gradually|until|you|feel|fully|embraced|by|this|gentle|comedy|.\nA|fascinating|examination|of|the|joyous|,|turbulent|self-discovery|made|by|a|proper|,|middle-aged|woman|.\nHere|is|a|VH1|Behind|the|Music|special|that|has|something|a|little|more|special|behind|it|:|music|that|did|n't|sell|many|records|but|helped|change|a|nation|.\nBuy|popcorn|.\nTake|nothing|seriously|and|enjoy|the|ride|.\nCarrying|off|a|spot-on|Scottish|burr|,|Duvall|(|also|a|producer|)|peels|layers|from|this|character|that|may|well|not|have|existed|on|paper|.\nThe|acting|,|for|the|most|part|,|is|terrific|,|although|the|actors|must|struggle|with|the|fact|that|they|'re|playing|characters|who|sometimes|feel|more|like|literary|conceits|than|flesh-and-blood|humans|.\nSome|Body|will|take|you|places|you|have|n't|been|,|and|also|places|you|have|.\nVereté|has|a|whip-smart|sense|of|narrative|bluffs|.\nParts|of|the|film|feel|a|bit|too|much|like|an|infomercial|for|Ram|Dass|'s|latest|book|aimed|at|the|boomer|demographic|.\nBut|mostly|it|'s|a|work|that|,|with|humor|,|warmth|,|and|intelligence|,|captures|a|life|interestingly|lived|.\nWere|it|not|for|a|sentimental|resolution|that|explains|way|more|about|Cal|than|does|the|movie|or|the|character|any|good|,|Freundlich|'s|World|Traveler|might|have|been|one|of|the|more|daring|and|surprising|American|movies|of|the|year|.\n``|Home|Movie|''|is|the|film|equivalent|of|a|lovingly|rendered|coffee|table|book|.\nGraphic|sex|may|be|what|'s|attracting|audiences|to|Unfaithful|,|but|gripping|performances|by|Lane|and|Gere|are|what|will|keep|them|awake|.\nWhen|compared|to|the|usual|,|more|somber|festival|entries|,|Davis|'|highly|personal|brand|of|romantic|comedy|is|a|tart|,|smart|breath|of|fresh|air|that|stands|out|from|the|pack|even|if|the|picture|itself|is|somewhat|problematic|.\nBoth|damning|and|damned|compelling|.\nMuch|has|been|written|about|those|years|when|the|psychedelic|'60s|grooved|over|into|the|gay|'70s|,|but|words|do|n't|really|do|the|era|justice|.\nYou|have|to|see|it|.\nEven|if|it|pushes|its|agenda|too|forcefully|,|this|remains|a|film|about|something|,|one|that|attempts|and|often|achieves|a|level|of|connection|and|concern|.\nWhat|lifts|the|film|high|above|run-of-the-filth|gangster|flicks|is|its|refusal|to|recognise|any|of|the|signposts|,|as|if|discovering|a|way|through|to|the|bitter|end|without|a|map|.\nBoth|an|admirable|reconstruction|of|terrible|events|,|and|a|fitting|memorial|to|the|dead|of|that|day|,|and|of|the|thousands|thereafter|.\nA|sly|dissection|of|the|inanities|of|the|contemporary|music|business|and|a|rather|sad|story|of|the|difficulties|of|artistic|collaboration|.\nThe|unique|niche|of|self-critical|,|behind-the-scenes|navel-gazing|Kaufman|has|carved|from|Orleans|'|story|and|his|own|infinite|insecurity|is|a|work|of|outstanding|originality|.\nLovingly|photographed|in|the|manner|of|a|Golden|Book|sprung|to|life|,|Stuart|Little|2|manages|sweetness|largely|without|stickiness|.\nConsistently|clever|and|suspenseful|.\nIt|'s|like|a|``|Big|Chill|''|reunion|of|the|Baader-Meinhof|Gang|,|only|these|guys|are|more|harmless|pranksters|than|political|activists|.\nThe|story|gives|ample|opportunity|for|large-scale|action|and|suspense|,|which|director|Shekhar|Kapur|supplies|with|tremendous|skill|.\nFresnadillo|has|something|serious|to|say|about|the|ways|in|which|extravagant|chance|can|distort|our|perspective|and|throw|us|off|the|path|of|good|sense|.\nThrows|in|enough|clever|and|unexpected|twists|to|make|the|formula|feel|fresh|.\nWeighty|and|ponderous|but|every|bit|as|filling|as|the|treat|of|the|title|.\nA|real|audience-pleaser|that|will|strike|a|chord|with|anyone|who|'s|ever|waited|in|a|doctor|'s|office|,|emergency|room|,|hospital|bed|or|insurance|company|office|.\nGenerates|an|enormous|feeling|of|empathy|for|its|characters|.\nExposing|the|ways|we|fool|ourselves|is|One|Hour|Photo|'s|real|strength|.\nIt|'s|up|to|you|to|decide|whether|to|admire|these|people|'s|dedication|to|their|cause|or|be|repelled|by|their|dogmatism|,|manipulativeness|and|narrow|,|fearful|view|of|American|life|.\nMostly|,|(|Goldbacher|)|just|lets|her|complicated|characters|be|unruly|,|confusing|and|,|through|it|all|,|human|.\n...|quite|good|at|providing|some|good|old|fashioned|spooks|.\nAt|its|worst|,|the|movie|is|pretty|diverting|;|the|pity|is|that|it|rarely|achieves|its|best|.\nScherfig|'s|light-hearted|profile|of|emotional|desperation|is|achingly|honest|and|delightfully|cheeky|.\nA|journey|spanning|nearly|three|decades|of|bittersweet|camaraderie|and|history|,|in|which|we|feel|that|we|truly|know|what|makes|Holly|and|Marina|tick|,|and|our|hearts|go|out|to|them|as|both|continue|to|negotiate|their|imperfect|,|love-hate|relationship|.\nThe|wonderfully|lush|Morvern|Callar|is|pure|punk|existentialism|,|and|Ms.|Ramsay|and|her|co-writer|,|Liana|Dognini|,|have|dramatized|the|Alan|Warner|novel|,|which|itself|felt|like|an|answer|to|Irvine|Welsh|'s|book|Trainspotting|.\nAs|it|turns|out|,|you|can|go|home|again|.\nYou|'ve|already|seen|City|by|the|Sea|under|a|variety|of|titles|,|but|it|'s|worth|yet|another|visit|.\nThis|kind|of|hands-on|storytelling|is|ultimately|what|makes|Shanghai|Ghetto|move|beyond|a|good|,|dry|,|reliable|textbook|and|what|allows|it|to|rank|with|its|worthy|predecessors|.\nMaking|such|a|tragedy|the|backdrop|to|a|love|story|risks|trivializing|it|,|though|Chouraqui|no|doubt|intended|the|film|to|affirm|love|'s|power|to|help|people|endure|almost|unimaginable|horror|.\nGrown-up|quibbles|are|beside|the|point|here|.\nThe|little|girls|understand|,|and|McCracken|knows|that|'s|all|that|matters|.\nA|powerful|,|chilling|,|and|affecting|study|of|one|man|'s|dying|fall|.\nThis|is|a|fascinating|film|because|there|is|no|clear-cut|hero|and|no|all-out|villain|.\nA|dreadful|day|in|Irish|history|is|given|passionate|,|if|somewhat|flawed|,|treatment|.\n...|a|good|film|that|must|have|baffled|the|folks|in|the|marketing|department|.\n...|is|funny|in|the|way|that|makes|you|ache|with|sadness|(|the|way|Chekhov|is|funny|)|,|profound|without|ever|being|self-important|,|warm|without|ever|succumbing|to|sentimentality|.\nDevotees|of|Star|Trek|II|:|The|Wrath|of|Khan|will|feel|a|nagging|sense|of|deja|vu|,|and|the|grandeur|of|the|best|Next|Generation|episodes|is|lacking|.\nA|soul-stirring|documentary|about|the|Israeli\\/Palestinian|conflict|as|revealed|through|the|eyes|of|some|children|who|remain|curious|about|each|other|against|all|odds|.\nWhat|'s|so|striking|about|Jolie|'s|performance|is|that|she|never|lets|her|character|become|a|caricature|--|not|even|with|that|radioactive|hair|.\nThe|main|story|...|is|compelling|enough|,|but|it|'s|difficult|to|shrug|off|the|annoyance|of|that|chatty|fish|.\nThe|performances|are|immaculate|,|with|Roussillon|providing|comic|relief|.\nKinnear|...|gives|his|best|screen|performance|with|an|oddly|winning|portrayal|of|one|of|life|'s|ultimate|losers|.\nHugh|Grant|,|who|has|a|good|line|in|charm|,|has|never|been|more|charming|than|in|About|a|Boy|.\nThere|'s|a|lot|of|tooth|in|Roger|Dodger|.\nBut|what|'s|nice|is|that|there|'s|a|casual|intelligence|that|permeates|the|script|.\nReminiscent|of|Alfred|Hitchcock|'s|thrillers|,|most|of|the|scary|parts|in|`|Signs|'|occur|while|waiting|for|things|to|happen|.\nOne|of|the|best|looking|and|stylish|animated|movies|in|quite|a|while|...\nIts|use|of|the|thriller|form|to|examine|the|labyrinthine|ways|in|which|people|'s|lives|cross|and|change|,|buffeted|by|events|seemingly|out|of|their|control|,|is|intriguing|,|provocative|stuff|.\nDenver|should|not|get|the|first|and|last|look|at|one|of|the|most|triumphant|performances|of|Vanessa|Redgrave|'s|career|.\nIt|deserves|to|be|seen|everywhere|.\nYou|need|n't|be|steeped|in|'50s|sociology|,|pop|culture|or|movie|lore|to|appreciate|the|emotional|depth|of|Haynes|'|work|.\nThough|Haynes|'|style|apes|films|from|the|period|...|its|message|is|not|rooted|in|that|decade|.\nWaiting|for|Godard|can|be|fruitful|:|`|In|Praise|of|Love|'|is|the|director|'s|epitaph|for|himself|.\nA|gangster|movie|with|the|capacity|to|surprise|.\nThe|film|has|a|laundry|list|of|minor|shortcomings|,|but|the|numerous|scenes|of|gory|mayhem|are|worth|the|price|of|admission|...|if|``|gory|mayhem|''|is|your|idea|of|a|good|time|.\nIf|not|a|home|run|,|then|at|least|a|solid|base|hit|.\nGoldmember|is|funny|enough|to|justify|the|embarrassment|of|bringing|a|barf|bag|to|the|moviehouse|.\n...|a|fairly|disposable|yet|still|entertaining|B|picture|.\nIt|may|not|be|particularly|innovative|,|but|the|film|'s|crisp|,|unaffected|style|and|air|of|gentle|longing|make|it|unexpectedly|rewarding|.\nThe|film|truly|does|rescue|(|the|Funk|Brothers|)|from|Motown|'s|shadows|.\nIt|'s|about|time|.\nDrawing|on|an|irresistible|,|languid|romanticism|,|Byler|reveals|the|ways|in|which|a|sultry|evening|or|a|beer-fueled|afternoon|in|the|sun|can|inspire|even|the|most|retiring|heart|to|venture|forth|.\nWorks|because|we|'re|never|sure|if|Ohlinger|'s|on|the|level|or|merely|a|dying|,|delusional|man|trying|to|get|into|the|history|books|before|he|croaks|.\n(|Scherfig|)|has|made|a|movie|that|will|leave|you|wondering|about|the|characters|'|lives|after|the|clever|credits|roll|.\nA|heady|,|biting|,|be-bop|ride|through|nighttime|Manhattan|,|a|loquacious|videologue|of|the|modern|male|and|the|lengths|to|which|he|'ll|go|to|weave|a|protective|cocoon|around|his|own|ego|.\nSkin|Of|Man|gets|a|few|cheap|shocks|from|its|kids-in-peril|theatrics|,|but|it|also|taps|into|the|primal|fears|of|young|people|trying|to|cope|with|the|mysterious|and|brutal|nature|of|adults|.\nThe|Piano|Teacher|is|not|an|easy|film|.\nIt|forces|you|to|watch|people|doing|unpleasant|things|to|each|other|and|themselves|,|and|it|maintains|a|cool|distance|from|its|material|that|is|deliberately|unsettling|.\nAs|refreshing|as|a|drink|from|a|woodland|stream|.\nWilliams|absolutely|nails|Sy|'s|queasy|infatuation|and|overall|strangeness|.\nCan|I|admit|XXX|is|as|deep|as|a|Petri|dish|and|as|well-characterized|as|a|telephone|book|but|still|say|it|was|a|guilty|pleasure|?\nWhile|it|'s|nothing|we|have|n't|seen|before|from|Murphy|,|I|Spy|is|still|fun|and|enjoyable|and|so|aggressively|silly|that|it|'s|more|than|a|worthwhile|effort|.\nBy|the|time|it|ends|in|a|rush|of|sequins|,|flashbulbs|,|blaring|brass|and|back-stabbing|babes|,|it|has|said|plenty|about|how|show|business|has|infiltrated|every|corner|of|society|--|and|not|always|for|the|better|.\nAn|intimate|contemplation|of|two|marvelously|messy|lives|.\nRarely|has|skin|looked|as|beautiful|,|desirable|,|even|delectable|,|as|it|does|in|Trouble|Every|Day|.\nThis|is|one|of|those|rare|docs|that|paints|a|grand|picture|of|an|era|and|makes|the|journey|feel|like|a|party|.\nPoignant|if|familiar|story|of|a|young|person|suspended|between|two|cultures|.\nA|metaphor|for|a|modern-day|urban|China|searching|for|its|identity|.\nFor|all|its|brooding|quality|,|Ash|Wednesday|is|suspenseful|and|ultimately|unpredictable|,|with|a|sterling|ensemble|cast|.\nAn|odd|drama|set|in|the|world|of|lingerie|models|and|bar|dancers|in|the|Midwest|that|held|my|interest|precisely|because|it|did|n't|try|to|.\nThe|film|feels|uncomfortably|real|,|its|language|and|locations|bearing|the|unmistakable|stamp|of|authority|.\nDespite|its|faults|,|Gangs|excels|in|spectacle|and|pacing|.\nEntertaining|despite|its|one-joke|premise|with|the|thesis|that|women|from|Venus|and|men|from|Mars|can|indeed|get|together|.\nA|tightly|directed|,|highly|professional|film|that|'s|old-fashioned|in|all|the|best|possible|ways|.\nIt|'s|dark|but|has|wonderfully|funny|moments|;|you|care|about|the|characters|;|and|the|action|and|special|effects|are|first-rate|.\nIn|visual|fertility|Treasure|Planet|rivals|the|top|Japanese|animations|of|recent|vintage|.\nEnormously|enjoyable|,|high-adrenaline|documentary|.\nBuy|is|an|accomplished|actress|,|and|this|is|a|big|,|juicy|role|.\nIt|works|its|magic|with|such|exuberance|and|passion|that|the|film|'s|length|becomes|a|part|of|its|fun|.\nBeautifully|crafted|and|brutally|honest|,|Promises|offers|an|unexpected|window|into|the|complexities|of|the|Middle|East|struggle|and|into|the|humanity|of|its|people|.\nAn|old-fashioned|but|emotionally|stirring|adventure|tale|of|the|kind|they|rarely|make|anymore|.\nCharlotte|Sometimes|is|a|gem|.\nIt|'s|always|enthralling|.\nIn|my|opinion|,|Analyze|That|is|not|as|funny|or|entertaining|as|Analyze|This|,|but|it|is|a|respectable|sequel|.\nA|remarkable|film|by|Bernard|Rose|.\nZhuangzhuang|creates|delicate|balance|of|style|,|text|,|and|subtext|that|'s|so|simple|and|precise|that|anything|discordant|would|topple|the|balance|,|but|against|all|odds|,|nothing|does|.\nA|much|more|successful|translation|than|its|most|famous|previous|film|adaptation|,|writer-director|Anthony|Friedman|'s|similarly|updated|1970|British|production|.\nan|original|and|highly|cerebral|examination|of|the|psychopathic|mind\nMichel|Piccoli|'s|moving|performance|is|this|films|reason|for|being|.\nA|captivating|and|intimate|study|about|dying|and|loving|...\nThis|is|an|elegantly|balanced|movie|--|every|member|of|the|ensemble|has|something|fascinating|to|do|--|that|does|n't|reveal|even|a|hint|of|artifice|.\n(|Grant|)|goes|beyond|his|usual|fluttering|and|stammering|and|captures|the|soul|of|a|man|in|pain|who|gradually|comes|to|recognize|it|and|deal|with|it|.\nA|high-spirited|buddy|movie|about|the|reunion|of|Berlin|anarchists|who|face|arrest|15|years|after|their|crime|.\nAbout|the|best|thing|you|could|say|about|Narc|is|that|it|'s|a|rock-solid|little|genre|picture|.\nWhether|you|like|it|or|not|is|basically|a|matter|of|taste|.\nAn|involving|,|inspirational|drama|that|sometimes|falls|prey|to|its|sob-story|trappings|.\nSome|of|the|most|inventive|silliness|you|are|likely|to|witness|in|a|movie|theatre|for|some|time|.\nCanadian|filmmaker|Gary|Burns|'|inventive|and|mordantly|humorous|take|on|the|soullessness|of|work|in|the|city|.\nA|rollicking|ride|,|with|jaw-dropping|action|sequences|,|striking|villains|,|a|gorgeous|color|palette|,|astounding|technology|,|stirring|music|and|a|boffo|last|hour|that|leads|up|to|a|strangely|sinister|happy|ending|.\nEveryone|'s|insecure|in|Lovely|and|Amazing|,|a|poignant|and|wryly|amusing|film|about|mothers|,|daughters|and|their|relationships|.\nThe|closest|thing|to|the|experience|of|space|travel\nConnoisseurs|of|Chinese|film|will|be|pleased|to|discover|that|Tian|'s|meticulous|talent|has|not|withered|during|his|enforced|hiatus|.\nIf|you|can|push|on|through|the|slow|spots|,|you|'ll|be|rewarded|with|some|fine|acting|.\nAn|unusually|dry-eyed|,|even|analytical|approach|to|material|that|is|generally|played|for|maximum|moisture|.\nSymbolically|,|Warm|Water|Under|a|Red|Bridge|is|a|celebration|of|feminine|energy|,|a|tribute|to|the|power|of|women|to|heal|.\nSpy|Kids|2|also|happens|to|be|that|rarity|among|sequels|:|It|actually|improves|upon|the|original|hit|movie|.\nExceptionally|well|acted|by|Diane|Lane|and|Richard|Gere|.\nLike|a|precious|and|finely|cut|diamond|,|magnificent|to|behold|in|its|sparkling|beauty|yet|in|reality|it|'s|one|tough|rock|.\nIn|addition|to|scoring|high|for|originality|of|plot|--|putting|together|familiar|themes|of|family|,|forgiveness|and|love|in|a|new|way|--|Lilo|&|Stitch|has|a|number|of|other|assets|to|commend|it|to|movie|audiences|both|innocent|and|jaded|.\nMiller|has|crafted|an|intriguing|story|of|maternal|instincts|and|misguided|acts|of|affection|.\nOne|of|the|most|exciting|action|films|to|come|out|of|China|in|recent|years|.\nThis|is|a|nervy|,|risky|film|,|and|Villeneuve|has|inspired|Croze|to|give|herself|over|completely|to|the|tormented|persona|of|Bibi|.\nMY|LITTLE|EYE|is|the|best|little|``|horror|''|movie|I|'ve|seen|in|years|.\nTunney|,|brimming|with|coltish|,|neurotic|energy|,|holds|the|screen|like|a|true|star|.\nEven|if|the|Naipaul|original|remains|the|real|masterpiece|,|the|movie|possesses|its|own|languorous|charm|.\n(|The|film|)|tackles|the|topic|of|relationships|in|such|a|straightforward|,|emotionally|honest|manner|that|by|the|end|,|it|'s|impossible|to|ascertain|whether|the|film|is|,|at|its|core|,|deeply|pessimistic|or|quietly|hopeful|.\nSometimes|we|feel|as|if|the|film|careens|from|one|colorful|event|to|another|without|respite|,|but|sometimes|it|must|have|seemed|to|Frida|Kahlo|as|if|her|life|did|,|too|.\nThe|strength|of|the|film|lies|in|its|two|central|performances|by|Sven|Wollter|as|the|stricken|composer|and|Viveka|Seldahl|as|his|desperate|violinist|wife|.\nLike|the|series|,|the|movie|is|funny|,|smart|,|visually|inventive|,|and|most|of|all|,|alive|.\nIt|was|filled|with|shootings|,|beatings|,|and|more|cussing|than|you|could|shake|a|stick|at|.\nYou|do|n't|know|whether|to|admire|the|film|'s|stately|nature|and|call|it|classicism|or|be|exasperated|by|a|noticeable|lack|of|pace|.\nOr|both|.\nSure|,|I|hated|myself|in|the|morning|.\nBut|then|again|,|I|hate|myself|most|mornings|.\nI|still|like|Moonlight|Mile|,|better|judgment|be|damned|.\nTime|Out|is|as|serious|as|a|pink|slip|.\nAnd|more|than|that|,|it|'s|an|observant|,|unfussily|poetic|meditation|about|identity|and|alienation|.\nWill|assuredly|rank|as|one|of|the|cleverest|,|most|deceptively|amusing|comedies|of|the|year|.\nMaryam|is|a|small|film|,|but|it|offers|large|rewards|.\nA|highly|watchable|,|giggly|little|story|with|a|sweet|edge|to|it|.\nThe|most|consistently|funny|of|the|Austin|Powers|films|.\nAna|'s|journey|is|not|a|stereotypical|one|of|self-discovery|,|as|she|'s|already|comfortable|enough|in|her|own|skin|to|be|proud|of|her|Rubenesque|physique|...\nCockettes|has|the|glorious|,|gaudy|benefit|of|much|stock|footage|of|Those|Days|,|featuring|all|manner|of|drag|queen|,|bearded|lady|and|lactating|hippie|.\nThere|'s|something|poignant|about|an|artist|of|90-plus|years|taking|the|effort|to|share|his|impressions|of|life|and|loss|and|time|and|art|with|us|.\nThe|comedy|makes|social|commentary|more|palatable|.\nAn|ideal|love|story|for|those|intolerant|of|the|more|common|saccharine|genre|.\nOne|funny|popcorn|flick|.\nThis|New|Zealand|coming-of-age|movie|is|n't|really|about|anything|.\nWhen|it|'s|this|rich|and|luscious|,|who|cares|?\nTully|is|worth|a|look|for|its|true-to-life|characters|,|its|sensitive|acting|,|its|unadorned|view|of|rural|life|and|the|subtle|direction|of|first-timer|Hilary|Birmingham|.\nThis|gorgeous|epic|is|guaranteed|to|lift|the|spirits|of|the|whole|family|.\nThe|Wild|Thornberrys|Movie|is|pleasant|enough|and|the|message|of|our|close|ties|with|animals|can|certainly|not|be|emphasized|enough|.\nWilliams|creates|a|stunning|,|Taxi|Driver-esque|portrayal|of|a|man|teetering|on|the|edge|of|sanity|.\nIf|you|'re|in|the|right|B-movie|frame|of|mind|,|it|may|just|scare|the|pants|off|you|.\nA|movie|of|riveting|power|and|sadness|.\nBoth|a|detective|story|and|a|romance|spiced|with|the|intrigue|of|academic|skullduggery|and|politics|.\nLudicrous|,|but|director|Carl|Franklin|adds|enough|flourishes|and|freak-outs|to|make|it|entertaining|.\nDirector|Roger|Kumble|offers|just|enough|sweet|and|traditional|romantic|comedy|to|counter|the|crudity|.\nAnd|there|'s|the|inimitable|Diaz|,|holding|it|all|together|.\nSpielberg|'s|picture|is|smarter|and|subtler|than|(|Total|Recall|and|Blade|Runner|)|,|although|its|plot|may|prove|too|convoluted|for|fun-seeking|summer|audiences|.\nIt|'s|got|all|the|familiar|Bruckheimer|elements|,|and|Schumacher|does|probably|as|good|a|job|as|anyone|at|bringing|off|the|Hopkins\\/Rock|collision|of|acting|styles|and|onscreen|personas|.\nA|grittily|beautiful|film|that|looks|,|sounds|,|and|feels|more|like|an|extended|,|open-ended|poem|than|a|traditionally|structured|story|.\nThe|production|values|are|of|the|highest|and|the|performances|attractive|without|being|memorable|.\nA|well-rounded|tribute|to|a|man|whose|achievements|--|and|complexities|--|reached|far|beyond|the|end|zone|.\nfinely|crafted|,|finely|written|,|exquisitely|performed\nRamsay|and|Morton|fill|this|character|study|with|poetic|force|and|buoyant|feeling|.\nThis|submarine|drama|earns|the|right|to|be|favorably|compared|to|Das|Boot|.\nClaude|Chabrol|'s|camera|has|a|way|of|gently|swaying|back|and|forth|as|it|cradles|its|characters|,|veiling|tension|beneath|otherwise|tender|movements|.\nThere|'s|a|great|deal|of|corny|dialogue|and|preposterous|moments|.\nAnd|yet|,|it|still|works|.\nThe|film|was|immensely|enjoyable|thanks|to|great|performances|by|both|Steve|Buscemi|and|Rosario|Dawson|...\nLike|many|Western|action|films|,|this|thriller|is|too|loud|and|thoroughly|overbearing|,|but|its|heartfelt|concern|about|North|Korea|'s|recent|past|and|South|Korea|'s|future|adds|a|much|needed|moral|weight|.\nSpecial|P.O.V.|camera|mounts|on|bikes|,|skateboards|,|and|motorcycles|provide|an|intense|experience|when|splashed|across|the|immense|IMAX|screen|.\nMike|White|'s|deft|combination|of|serious|subject|matter|and|dark|,|funny|humor|make|``|The|Good|Girl|''|a|film|worth|watching|.\nThis|is|a|shrewd|and|effective|film|from|a|director|who|understands|how|to|create|and|sustain|a|mood|.\nMeant|to|reduce|Blake|'s|philosophy|into|a|tragic|coming-of-age|saga|punctuated|by|bursts|of|animator|Todd|McFarlane|'s|superhero|dystopia|.\nAssayas|'|ambitious|,|sometimes|beautiful|adaptation|of|Jacques|Chardonne|'s|novel|.\nAs|ex-Marine|Walter|,|who|may|or|may|not|have|shot|Kennedy|,|actor|Raymond|J.|Barry|is|perfectly|creepy|and|believable|.\nThose|who|do|n't|entirely|`|get|'|Godard|'s|distinctive|discourse|will|still|come|away|with|a|sense|of|his|reserved|but|existential|poignancy|.\nPete|'s|screenplay|manages|to|find|that|real|natural|,|even-flowing|tone|that|few|movies|are|able|to|accomplish|.\nLike|Brosnan|'s|performance|,|Evelyn|comes|from|the|heart|.\nIt|uses|some|of|the|figures|from|the|real-life|story|to|portray|themselves|in|the|film|.\nThe|result|is|a|powerful|,|naturally|dramatic|piece|of|low-budget|filmmaking|.\nIts|spirit|of|iconoclastic|abandon|--|however|canned|--|makes|for|unexpectedly|giddy|viewing|.\nThe|early|and|middle|passages|are|surprising|in|how|much|they|engage|and|even|touch|us|.\nThis|is|not|a|classical|dramatic|animated|feature|,|nor|a|hip|,|contemporary|,|in-jokey|one|.\nIt|'s|sort|of|in-between|,|and|it|works|.\nThis|quiet|,|introspective|and|entertaining|independent|is|worth|seeking|.\nWhether|our|action-and-popcorn|obsessed|culture|will|embrace|this|engaging|and|literate|psychodrama|is|n't|much|of|a|mystery|,|unfortunately|.\nWhether|or|not|Ram|Dass|proves|as|clear|and|reliable|an|authority|on|that|as|he|was|about|inner|consciousness|,|Fierce|Grace|reassures|us|that|he|will|once|again|be|an|honest|and|loving|one|.\nSly|,|sophisticated|and|surprising|.\nSpare|but|quietly|effective|retelling|.\nDemonstrates|a|vivid|imagination|and|an|impressive|style|that|result|in|some|terrific|setpieces|.\nBy|its|modest|,|straight-ahead|standards|,|Undisputed|scores|a|direct|hit|.\nIts|story|about|a|young|Chinese|woman|,|Ah|Na|,|who|has|come|to|New|York|City|to|replace|past|tragedy|with|the|American|Dream|is|one|that|any|art-house|moviegoer|is|likely|to|find|compelling|.\nFor|those|who|like|quirky|,|slightly|strange|French|films|,|this|is|a|must|!\nThere|are|so|few|films|about|the|plight|of|American|Indians|in|modern|America|that|Skins|comes|as|a|welcome|,|if|downbeat|,|missive|from|a|forgotten|front|.\n(|Shyamalan|)|continues|to|cut|a|swathe|through|mainstream|Hollywood|,|while|retaining|an|integrity|and|refusing|to|compromise|his|vision|.\nA|whale|of|a|good|time|for|both|children|and|parents|seeking|Christian-themed|fun|.\nWhat|begins|as|a|film|in|the|tradition|of|The|Graduate|quickly|switches|into|something|more|recyclable|than|significant|.\nMuch|smarter|and|more|attentive|than|it|first|sets|out|to|be|.\nThe|story|is|smart|and|entirely|charming|in|intent|and|execution|.\nA|movie|of|technical|skill|and|rare|depth|of|intellect|and|feeling|.\nRepresents|a|worthy|departure|from|the|culture|clash|comedies|that|have|marked|an|emerging|Indian|American|cinema|.\nDoes|n't|do|more|than|expand|a|TV|show|to|movie|length|.\nHowever|,|it|'s|pleasant|enough|and|its|ecological|,|pro-wildlife|sentiments|are|certainly|welcome|.\nIf|you|'re|looking|for|an|intelligent|movie|in|which|you|can|release|your|pent|up|anger|,|ENOUGH|is|just|the|ticket|you|need|.\nA|pointed|,|often|tender|,|examination|of|the|pros|and|cons|of|unconditional|love|and|familial|duties|.\nAs|well-acted|and|well-intentioned|as|All|or|Nothing|is|,|however|,|the|film|comes|perilously|close|to|being|too|bleak|,|too|pessimistic|and|too|unflinching|for|its|own|good|.\nA|comedy-drama|of|nearly|epic|proportions|rooted|in|a|sincere|performance|by|the|title|character|undergoing|midlife|crisis|.\nIt|'s|about|issues|most|adults|have|to|face|in|marriage|and|I|think|that|'s|what|I|liked|about|it|--|the|real|issues|tucked|between|the|silly|and|crude|storyline|.\nElegantly|produced|and|expressively|performed|,|the|six|musical|numbers|crystallize|key|plot|moments|into|minutely|detailed|wonders|of|dreamlike|ecstasy|.\nEnriched|by|a|strong|and|unforced|supporting|cast|.\nWriter|\\/|director|M.|Night|Shyamalan|'s|ability|to|pull|together|easily|accessible|stories|that|resonate|with|profundity|is|undeniable|.\nIf|you|can|keep|your|eyes|open|amid|all|the|blood|and|gore|,|you|'ll|see|Del|Toro|has|brought|unexpected|gravity|to|Blade|II|.\nNot|a|strike|against|Yang|'s|similarly|themed|Yi|Yi|,|but|I|found|What|Time|?\nto|be|more|engaging|on|an|emotional|level|,|funnier|,|and|on|the|whole|less|detached|.\nA|breathtaking|adventure|for|all|ages|,|Spirit|tells|its|poignant|and|uplifting|story|in|a|stunning|fusion|of|music|and|images|.\nA|charming|and|funny|story|of|clashing|cultures|and|a|clashing|mother\\/daughter|relationship|.\nNever|lets|go|your|emotions|,|taking|them|to|surprising|highs|,|sorrowful|lows|and|hidden|impulsive|niches|...|gorgeous|,|passionate|,|and|at|times|uncommonly|moving|.\n``|...|something|appears|to|have|been|lost|in|the|translation|this|time|.\nThe|Importance|of|Being|Earnest|movie|seems|to|be|missing|a|great|deal|of|the|acerbic|repartee|of|the|play|.|''\n(|Washington|'s|)|strong|hand|,|keen|eye|,|sweet|spirit|and|good|taste|are|reflected|in|almost|every|scene|.\nShiner|can|certainly|go|the|distance|,|but|is|n't|world|championship|material\nThe|film|'s|desire|to|be|liked|sometimes|undermines|the|possibility|for|an|exploration|of|the|thornier|aspects|of|the|nature\\/nurture|argument|in|regards|to|homosexuality|.\n...|a|quietly|introspective|portrait|of|the|self-esteem|of|employment|and|the|shame|of|losing|a|job|...\nAffable|if|not|timeless|,|Like|Mike|raises|some|worthwhile|themes|while|delivering|a|wholesome|fantasy|for|kids|.\nA|film|of|delicate|interpersonal|dances|.\nCaine|makes|us|watch|as|his|character|awakens|to|the|notion|that|to|be|human|is|eventually|to|have|to|choose|.\nIt|'s|a|sight|to|behold|.\nIt|'s|an|unusual|,|thoughtful|bio-drama|with|a|rich|subject|and|some|fantastic|moments|and|scenes|.\nSaved|from|being|merely|way-cool|by|a|basic|,|credible|compassion|.\nThe|increasingly|diverse|French|director|has|created|a|film|that|one|can|honestly|describe|as|looking|,|sounding|and|simply|feeling|like|no|other|film|in|recent|history|.\nGangs|,|despite|the|gravity|of|its|subject|matter|,|is|often|as|fun|to|watch|as|a|good|spaghetti|western|.\nPeter|Jackson|has|done|the|nearly|impossible|.\nHe|has|improved|upon|the|first|and|taken|it|a|step|further|,|richer|and|deeper|.\nWhat|Jackson|has|done|is|proven|that|no|amount|of|imagination|,|no|creature|,|no|fantasy|story|and|no|incredibly|outlandish|scenery\nThere|has|to|be|a|few|advantages|to|never|growing|old|.\nLike|being|able|to|hit|on|a|15-year|old|when|you|'re|over|100|.\nIce|Age|wo|n't|drop|your|jaw|,|but|it|will|warm|your|heart|,|and|I|'m|giving|it|a|strong|thumbs|up|.\nLike|Kissing|Jessica|Stein|,|Amy|'s|Orgasm|has|a|key|strength|in|its|willingness|to|explore|its|principal|characters|with|honesty|,|insight|and|humor|.\nThe|Lady|and|the|Duke|is|Eric|Rohmer|'s|economical|antidote|to|the|bloated|costume|drama\nOne|of|the|year|'s|best|films|,|featuring|an|Oscar-worthy|performance|by|Julianne|Moore|.\nA|small|gem|from|Belgium|.\nCombines|a|comically|dismal|social|realism|with|a|farcically|bawdy|fantasy|of|redemption|and|regeneration|.\nA|soap-opera|quality|twist|in|the|last|20|minutes|...|almost|puts|the|kibosh|on|what|is|otherwise|a|sumptuous|work|of|B-movie|imagination|.\nThe|most|ingenious|film|comedy|since|Being|John|Malkovich|.\nThere|'s|something|to|be|said|for|a|studio-produced|film|that|never|bothers|to|hand|viewers|a|suitcase|full|of|easy|answers|.\nA|movie|where|story|is|almost|an|afterthought|amidst|a|swirl|of|colors|and|inexplicable|events|.\nManages|to|accomplish|what|few|sequels|can|--|it|equals|the|original|and|in|some|ways|even|betters|it|.\nTo|call|this|one|an|eventual|cult|classic|would|be|an|understatement|,|and|woe|is|the|horror|fan|who|opts|to|overlook|this|goofily|endearing|and|well-lensed|gorefest|.\nJolie|gives|it|that|extra|little|something|that|makes|it|worth|checking|out|at|theaters|,|especially|if|you|'re|in|the|mood|for|something|more|comfortable|than|challenging|.\nAlthough|melodramatic|and|predictable|,|this|romantic|comedy|explores|the|friendship|between|five|Filipino-Americans|and|their|frantic|efforts|to|find|love|.\nI|have|a|new|favorite|musical|--|and|I|'m|not|even|a|fan|of|the|genre\nIt|'s|unlikely|we|'ll|see|a|better|thriller|this|year|.\nThere|is|a|real|subject|here|,|and|it|is|handled|with|intelligence|and|care|.\nJason|Patric|and|Ray|Liotta|make|for|one|splendidly|cast|pair|.\nNoyce|creates|a|film|of|near-hypnotic|physical|beauty|even|as|he|tells|a|story|as|horrifying|as|any|in|the|heart-breakingly|extensive|annals|of|white-on-black|racism|.\nStarts|slowly|,|but|Adrien|Brody|--|in|the|title|role|--|helps|make|the|film|'s|conclusion|powerful|and|satisfying|.\nVery|predictable|but|still|entertaining\nNothing|short|of|a|masterpiece|--|and|a|challenging|one|.\nPratfalls|aside|,|Barbershop|gets|its|greatest|play|from|the|timeless|spectacle|of|people|really|talking|to|each|other|.\nThis|amiable|picture|talks|tough|,|but|it|'s|all|bluster|--|in|the|end|it|'s|as|sweet|as|Greenfingers|...\nThis|is|one|of|Mr.|Chabrol|'s|subtlest|works|,|but|also|one|of|his|most|uncanny|.\nAn|engrossing|Iranian|film|about|two|itinerant|teachers|and|some|lost|and|desolate|people|they|encounter|in|a|place|where|war|has|savaged|the|lives|and|liberties|of|the|poor|and|the|dispossessed|.\nEven|though|we|know|the|outcome|,|the|seesawing|of|the|general|'s|fate|in|the|arguments|of|competing|lawyers|has|the|stomach-knotting|suspense|of|a|legal|thriller|,|while|the|testimony|of|witnesses|lends|the|film|a|resonant|undertone|of|tragedy|.\nWatching|Spirited|Away|is|like|watching|an|Eastern|imagination|explode|.\nAs|relationships|shift|,|director|Robert|J.|Siegel|allows|the|characters|to|inhabit|their|world|without|cleaving|to|a|narrative|arc|.\nTwohy|knows|how|to|inflate|the|mundane|into|the|scarifying|,|and|gets|full|mileage|out|of|the|rolling|of|a|stray|barrel|or|the|unexpected|blast|of|a|phonograph|record|.\nWhile|the|story|does|seem|pretty|unbelievable|at|times|,|it|'s|awfully|entertaining|to|watch|.\nA|smart|and|funny|,|albeit|sometimes|superficial|,|cautionary|tale|of|a|technology|in|search|of|an|artist|.\nExamines|its|explosive|subject|matter|as|nonjudgmentally|as|Wiseman|'s|previous|studies|of|inner-city|high|schools|,|hospitals|,|courts|and|welfare|centers|.\nI|prefer|Soderbergh|'s|concentration|on|his|two|lovers|over|Tarkovsky|'s|mostly|male|,|mostly|patriarchal|debating|societies|.\n`|If|you|are|in|the|mood|for|an|intelligent|weepy|,|it|can|easily|worm|its|way|into|your|heart|.|'\nIn|IMAX|in|short|,|it|'s|just|as|wonderful|on|the|big|screen|.\nDoes|a|good|job|of|establishing|a|time|and|place|,|and|of|telling|a|fascinating|character|'s|story|.\nI|'m|going|to|give|it|a|marginal|thumbs|up|.\nI|liked|it|just|enough|.\nThose|of|you|who|do|n't|believe|in|Santa|Claus|probably|also|think|that|sequels|can|never|capture|the|magic|of|the|original|.\nWell|,|this|movie|proves|you|wrong|on|both|counts|.\nA|deliciously|nonsensical|comedy|about|a|city|coming|apart|at|its|seams|.\nThe|rare|Imax|movie|that|you|'ll|wish|was|longer|than|an|hour|.\nMy|Wife|'s|plotting|is|nothing|special|;|it|'s|the|delivery|that|matters|here|.\nI|'ve|yet|to|find|an|actual|Vietnam|War|combat|movie|actually|produced|by|either|the|North|or|South|Vietnamese|,|but|at|least|now|we|'ve|got|something|pretty|damn|close|.\nA|moving|and|not|infrequently|breathtaking|film|.\nIt|'s|a|sharp|movie|about|otherwise|dull|subjects|.\nIt|'s|like|Rocky|and|Bullwinkle|on|Speed|,|but|that|'s|neither|completely|enlightening|,|nor|does|it|catch|the|intensity|of|the|movie|'s|strangeness|.\nAs|action-adventure|,|this|space-based|homage|to|Robert|Louis|Stevenson|'s|Treasure|Island|fires|on|all|plasma|conduits|.\nA|melancholy|,|emotional|film|.\nWhile|the|filmmaking|may|be|a|bit|disjointed|,|the|subject|matter|is|so|fascinating|that|you|wo|n't|care|.\nIntensely|romantic|,|thought-provoking|and|even|an|engaging|mystery|.\nGoofy|,|nutty|,|consistently|funny|.\nAnd|educational|!\nAnother|in|a|long|line|of|ultra-violent|war|movies|,|this|one|is|not|quite|what|it|could|have|been|as|a|film|,|but|the|story|and|theme|make|up|for|it|.\nIt|leaves|little|doubt|that|Kidman|has|become|one|of|our|best|actors|.\nThe|film|boasts|dry|humor|and|jarring|shocks|,|plus|moments|of|breathtaking|mystery|.\nBeautifully|directed|and|convincingly|acted|.\nGambling|and|throwing|a|basketball|game|for|money|is|n't|a|new|plot|--|in|fact|Toback|himself|used|it|in|Black|and|White|.\nBut|Toback|'s|deranged|immediacy|makes|it|seem|fresh|again|.\nIn|the|director|'s|cut|,|the|film|is|not|only|a|love|song|to|the|movies|but|it|also|is|more|fully|an|example|of|the|kind|of|lush|,|all-enveloping|movie|experience|it|rhapsodizes|.\nBring|on|the|sequel|.\nGraced|with|the|kind|of|social|texture|and|realism|that|would|be|foreign|in|American|teen|comedies|.\nIf|we|sometimes|need|comforting|fantasies|about|mental|illness|,|we|also|need|movies|like|Tim|McCann|'s|Revolution|No.|9|.\nThe|film|occasionally|tries|the|viewer|'s|patience|with|slow|pacing|and|a|main|character|who|sometimes|defies|sympathy|,|but|it|ultimately|satisfies|with|its|moving|story|.\nA|big-budget\\/all-star|movie|as|unblinkingly|pure|as|The|Hours|is|a|distinct|rarity|,|and|an|event|.\n...|certainly|an|entertaining|ride|,|despite|many|talky|,|slow|scenes|.\nBut|something|seems|to|be|missing|.\nA|sense|of|real|magic|,|perhaps|.\nThat|Haynes|can|both|maintain|and|dismantle|the|facades|that|his|genre|and|his|character|construct|is|a|wonderous|accomplishment|of|veracity|and|narrative|grace|.\nThe|movie|worked|for|me|right|up|to|the|final|scene|,|and|then|it|caved|in|.\n...|one|of|the|most|entertaining|monster|movies|in|ages|...\nPlunges|you|into|a|reality|that|is|,|more|often|then|not|,|difficult|and|sad|,|and|then|,|without|sentimentalizing|it|or|denying|its|brutality|,|transforms|that|reality|into|a|lyrical|and|celebratory|vision|.\nWould|you|laugh|if|a|tuba-playing|dwarf|rolled|down|a|hill|in|a|trash|can|?\nDo|you|chuckle|at|the|thought|of|an|ancient|librarian|whacking|a|certain|part|of|a|man|'s|body|?\nIf|you|answered|yes|,|by|all|means|enjoy|The|New|Guy|.\nThe|film|is|...|determined|to|treat|its|characters|,|weak|and|strong|,|as|fallible|human|beings|,|not|caricatures|,|and|to|carefully|delineate|the|cost|of|the|inevitable|conflicts|between|human|urges|and|an|institution|concerned|with|self-preservation|.\nMissteps|take|what|was|otherwise|a|fascinating|,|riveting|story|and|send|it|down|the|path|of|the|mundane|.\nAn|indispensable|peek|at|the|art|and|the|agony|of|making|people|laugh|.\nSteadfastly|uncinematic|but|powerfully|dramatic|.\nThe|engagingly|primitive|animated|special|effects|contribute|to|a|mood|that|'s|sustained|through|the|surprisingly|somber|conclusion|.\nMade-Up|lampoons|the|moviemaking|process|itself|,|while|shining|a|not|particularly|flattering|spotlight|on|America|'s|skin-deep|notions|of|pulchritude|.\nEvokes|the|19th|century|with|a|subtlety|that|is|an|object|lesson|in|period|filmmaking|.\nYa-Yas|everywhere|will|forgive|the|flaws|and|love|the|film|.\nThe|film|'s|best|trick|is|the|way|that|it|treats|conspiracy|as|a|kind|of|political|Blair|Witch|,|a|monstrous|murk|that|haunts|us|precisely|because|it|can|never|be|seen|.\nThe|artwork|is|spectacular|and|unlike|most|animaton|from|Japan|,|the|characters|move|with|grace|and|panache|.\nThe|picture|'s|fascinating|byways|are|littered|with|trenchant|satirical|jabs|at|the|peculiar|egocentricities|of|the|acting|breed|.\nThe|modern|remake|of|Dumas|'s|story|is|long|on|narrative|and|(|too|)|short|on|action|.\nFred|Schepisi|'s|film|is|paced|at|a|speed|that|is|slow|to|those|of|us|in|middle|age|and|deathly|slow|to|any|teen|.\nWith|a|cast|of|A-list|Brit|actors|,|it|is|worth|searching|out|.\nSuffers|from|its|timid|parsing|of|the|barn-side|target|of|sons|trying|to|breach|gaps|in|their|relationships|with|their|fathers|.\nNonchalantly|freaky|and|uncommonly|pleasurable|,|Warm|Water|may|well|be|the|year|'s|best|and|most|unpredictable|comedy|.\nIt|'s|like|an|old|Warner|Bros.|costumer|jived|with|sex|--|this|could|be|the|movie|Errol|Flynn|always|wanted|to|make|,|though|Bette|Davis|,|cast|as|Joan|,|would|have|killed|him|.\nIt|'s|a|great|American|adventure|and|a|wonderful|film|to|bring|to|IMAX|.\nSatisfyingly|scarifying|,|fresh|and|old-fashioned|at|the|same|time|.\nOh|,|James|!\nYour|20th|outing|shows|off|a|lot|of|stamina|and|vitality|,|and|get|this|,|Madonna|'s|cameo|does|n't|suck|!\nThat|death|is|merely|a|transition|is|a|common|tenet|in|the|world|'s|religions|.\nThis|deeply|spiritual|film|taps|into|the|meaning|and|consolation|in|afterlife|communications|.\nThere|is|something|that|is|so|meditative|and|lyrical|about|Babak|Payami|'s|boldly|quirky|Iranian|drama|Secret|Ballot|...|a|charming|and|evoking|little|ditty|that|manages|to|show|the|gentle|and|humane|side|of|Middle|Eastern|world|politics\nA|huge|box-office|hit|in|Korea|,|Shiri|is|a|must|for|genre|fans|.\nI|'m|not|a|fan|of|the|phrase|`|life|affirming|'|because|it|usually|means|`|schmaltzy|,|'|but|Real|Women|Have|Curves|truly|is|life|affirming|.\nThe|symbols|float|like|butterflies|and|the|spinning|styx|sting|like|bees|.\nI|wanted|more|.\nIf|it|'s|unnerving|suspense|you|'re|after|--|you|'ll|find|it|with|Ring|,|an|indisputably|spooky|film|;|with|a|screenplay|to|die|for|.\nThe|art|direction|and|costumes|are|gorgeous|and|finely|detailed|,|and|Kurys|'|direction|is|clever|and|insightful|.\nRed|Dragon|makes|one|appreciate|Silence|of|the|Lambs|.\nProves|a|servicable|World|War|II|drama|that|ca|n't|totally|hide|its|contrivances|,|but|it|at|least|calls|attention|to|a|problem|Hollywood|too|long|has|ignored|.\nLeigh|is|n't|breaking|new|ground|,|but|he|knows|how|a|daily|grind|can|kill|love|.\nWhile|Broomfield|'s|film|does|n't|capture|the|effect|of|these|tragic|deaths|on|hip-hop|culture|,|it|succeeds|as|a|powerful|look|at|a|failure|of|our|justice|system|.\n...|strips|Bible|stores|of|the|potential|for|sanctimoniousness|,|making|them|meaningful|for|both|kids|and|church-wary|adults|.\nLaugh-out-loud|lines|,|adorably|ditsy|but|heartfelt|performances|,|and|sparkling|,|bittersweet|dialogue|that|cuts|to|the|chase|of|the|modern|girl|'s|dilemma|.\nTends|to|pile|too|many|``|serious|issues|''|on|its|plate|at|times|,|yet|remains|fairly|light|,|always|entertaining|,|and|smartly|written|.\nA|solidly|entertaining|little|film|.\nIt|'s|an|entertaining|movie|,|and|the|effects|,|boosted|to|the|size|of|a|downtown|hotel|,|will|all|but|take|you|to|outer|space|.\nSayles|has|a|knack|for|casting|,|often|resurrecting|performers|who|rarely|work|in|movies|now|...|and|drawing|flavorful|performances|from|bland|actors|.\nDespite|an|overwrought|ending|,|the|film|works|as|well|as|it|does|because|of|the|performances|.\nA|passionately|inquisitive|film|determined|to|uncover|the|truth|and|hopefully|inspire|action|.\nThough|Nijinsky|'s|words|grow|increasingly|disturbed|,|the|film|maintains|a|beguiling|serenity|and|poise|that|make|it|accessible|for|a|non-narrative|feature|.\nA|muddle|splashed|with|bloody|beauty|as|vivid|as|any|Scorsese|has|ever|given|us|.\nFrom|both|a|great|and|a|terrible|story|,|Mr.|Nelson|has|made|a|film|that|is|an|undeniably|worthy|and|devastating|experience|.\nSpider-Man|is|about|growing|strange|hairs|,|getting|a|more|mature|body|,|and|finding|it|necessary|to|hide|new|secretions|from|the|parental|units|.\nThe|first|shocking|thing|about|Sorority|Boys|is|that|it|'s|actually|watchable|.\nEven|more|baffling|is|that|it|'s|funny|.\nHighlighted|by|a|gritty|style|and|an|excellent|cast|,|it|'s|better|than|one|might|expect|when|you|look|at|the|list|of|movies|starring|Ice-T|in|a|major|role|.\nNeither|quite|a|comedy|nor|a|romance|,|more|of|an|impish|divertissement|of|themes|that|interest|Attal|and|Gainsbourg|--|they|live|together|--|the|film|has|a|lot|of|charm|.\nFirst|and|foremost|...|the|reason|to|go|see|``|Blue|Crush|''|is|the|phenomenal|,|water-born|cinematography|by|David|Hennings|.\nA|visionary|marvel|,|but|it|'s|lacking|a|depth|in|storytelling|usually|found|in|anime|like|this|.\nThe|problems|and|characters|it|reveals|are|universal|and|involving|,|and|the|film|itself|--|as|well|its|delightful|cast|--|is|so|breezy|,|pretty|and|gifted|,|it|really|won|my|heart|.\nIn|his|latest|effort|,|Storytelling|,|Solondz|has|finally|made|a|movie|that|is|n't|just|offensive|--|it|also|happens|to|be|good|.\nHow|I|Killed|My|Father|would|be|a|rarity|in|Hollywood|.\nIt|'s|an|actor|'s|showcase|that|accomplishes|its|primary|goal|without|the|use|of|special|effects|,|but|rather|by|emphasizing|the|characters|--|including|the|supporting|ones|.\nI|just|saw|this|movie|...|well|,|it|'s|probably|not|accurate|to|call|it|a|movie|.\nWhat|'s|most|memorable|about|Circuit|is|that|it|'s|shot|on|digital|video|,|whose|tiny|camera|enables|Shafer|to|navigate|spaces|both|large|...|and|small|...|with|considerable|aplomb|.\nScherfig|,|the|writer-director|,|has|made|a|film|so|unabashedly|hopeful|that|it|actually|makes|the|heart|soar|.\nYes|,|soar|.\nA|delicious|and|delicately|funny|look|at|the|residents|of|a|Copenhagen|neighborhood|coping|with|the|befuddling|complications|life|tosses|at|them|.\n``|What|really|happened|?|''\nis|a|question|for|philosophers|,|not|filmmakers|;|all|the|filmmakers|need|to|do|is|engage|an|audience|.\nSoderbergh|,|like|Kubrick|before|him|,|may|not|touch|the|planet|'s|skin|,|but|understands|the|workings|of|its|spirit|.\nMuch|credit|must|be|given|to|the|water-camera|operating|team|of|Don|King|,|Sonny|Miller|,|and|Michael|Stewart|.\nTheir|work|is|fantastic|.\nCrush|is|so|warm|and|fuzzy|you|might|be|able|to|forgive|its|mean-spirited|second|half|.\nFranco|is|an|excellent|choice|for|the|walled-off|but|combustible|hustler|,|but|he|does|not|give|the|transcendent|performance|SONNY|needs|to|overcome|gaps|in|character|development|and|story|logic|.\nTsai|Ming-liang|'s|witty|,|wistful|new|film|,|What|Time|Is|It|There|?\n,|is|a|temporal|inquiry|that|shoulders|its|philosophical|burden|lightly|.\nThe|Pianist|lacks|the|quick|emotional|connections|of|Steven|Spielberg|'s|Schindler|'s|List|.\nBut|Mr.|Polanski|creates|images|even|more|haunting|than|those|in|Mr.|Spielberg|'s|1993|classic|.\nSteers|,|in|his|feature|film|debut|,|has|created|a|brilliant|motion|picture|.\nA|brilliant|,|absurd|collection|of|vignettes|that|,|in|their|own|idiosyncratic|way|,|sum|up|the|strange|horror|of|life|in|the|new|millennium|.\nAs|warm|as|it|is|wise|,|deftly|setting|off|uproarious|humor|with|an|underlying|seriousness|that|sneaks|up|on|the|viewer|,|providing|an|experience|that|is|richer|than|anticipated|.\nThe|film|may|not|hit|as|hard|as|some|of|the|better|drug-related|pictures|,|but|it|still|manages|to|get|a|few|punches|in|.\nOld-fashioned|but|thoroughly|satisfying|entertainment|.\nAn|energizing|,|intoxicating|documentary|charting|the|rise|of|hip-hop|culture|in|general|and|the|art|of|scratching|(|or|turntablism|)|in|particular|.\nA|fun|family|movie|that|'s|suitable|for|all|ages|--|a|movie|that|will|make|you|laugh|,|cry|and|realize|,|`|It|'s|never|too|late|to|believe|in|your|dreams|.|'\nIf|you|open|yourself|up|to|Mr.|Reggio|'s|theory|of|this|imagery|as|the|movie|'s|set|...|it|can|impart|an|almost|visceral|sense|of|dislocation|and|change|.\nI|had|a|dream|that|a|smart|comedy|would|come|along|to|rescue|me|from|a|summer|of|teen-driven|,|toilet-humor|codswallop|,|and|its|name|was|Earnest|.\nEven|though|the|film|does|n't|manage|to|hit|all|of|its|marks|,|it|'s|still|entertaining|to|watch|the|target|practice|.\nWhere|This|was|lazy|but|enjoyable|,|a|formula|comedy|redeemed|by|its|stars|,|That|is|even|lazier|and|far|less|enjoyable|.\nThe|3-D|vistas|from|orbit|,|with|the|space|station|suspended|like|a|huge|set|of|wind|chimes|over|the|great|blue|globe|,|are|stanzas|of|breathtaking|,|awe-inspiring|visual|poetry|.\nThe|attraction|between|these|two|marginal|characters|is|complex|from|the|start|--|and|,|refreshingly|,|stays|that|way|.\nFans|of|the|modern|day|Hong|Kong|action|film|finally|have|the|worthy|successor|to|A|Better|Tomorrow|and|The|Killer|which|they|have|been|patiently|waiting|for|.\nEven|when|he|'s|not|at|his|most|critically|insightful|,|Godard|can|still|be|smarter|than|any|50|other|filmmakers|still|at|work|.\nWhat|sets|this|romantic|comedy|apart|from|most|Hollywood|romantic|comedies|is|its|low-key|way|of|tackling|what|seems|like|done-to-death|material|.\nHas|enough|wit|,|energy|and|geniality|to|please|not|only|the|fanatical|adherents|on|either|side|,|but|also|people|who|know|nothing|about|the|subject|and|think|they|'re|not|interested|.\nThis|seductive|tease|of|a|thriller|gets|the|job|done|.\nIt|'s|a|scorcher|.\nBittersweet|comedy\\/drama|full|of|life|,|hand|gestures|,|and|some|really|adorable|Italian|guys|.\nWorks|as|pretty|contagious|fun|.\nThe|best|didacticism|is|one|carried|by|a|strong|sense|of|humanism|,|and|Bertrand|Tavernier|'s|oft-brilliant|Safe|Conduct|(|``|Laissez-passer|''|)|wears|its|heart|on|its|sleeve|.\nA|realistically|terrifying|movie|that|puts|another|notch|in|the|belt|of|the|long|list|of|renegade-cop|tales|.\nA|charming|,|banter-filled|comedy|...|one|of|those|airy|cinematic|bon|bons|whose|aims|--|and|by|extension|,|accomplishments|--|seem|deceptively|slight|on|the|surface|.\nA|film|with|almost|as|many|delights|for|adults|as|there|are|for|children|and|dog|lovers|.\nSerious|movie-goers|embarking|upon|this|journey|will|find|that|The|Road|to|Perdition|leads|to|a|satisfying|destination|.\nHeartwarming|and|gently|comic|even|as|the|film|breaks|your|heart|.\nCaruso|sometimes|descends|into|sub-Tarantino|cuteness|...|but|for|the|most|part|he|makes|sure|The|Salton|Sea|works|the|way|a|good|noir|should|,|keeping|it|tight|and|nasty|.\nA|``|black|Austin|Powers|?|''\nI|prefer|to|think|of|it|as|``|Pootie|Tang|with|a|budget|.|''\nSa|da|TAY|!\nOddly|,|the|film|is|n't|nearly|as|downbeat|as|it|sounds|,|but|strikes|a|tone|that|'s|alternately|melancholic|,|hopeful|and|strangely|funny|.\nI|would|be|shocked|if|there|was|actually|one|correct|interpretation|,|but|that|should|n't|make|the|movie|or|the|discussion|any|less|enjoyable|.\nChouraqui|brings|documentary-like|credibility|to|the|horrors|of|the|killing|field|and|the|barbarism|of|`|ethnic|cleansing|.|'\nThe|best|thing|I|can|say|about|this|film|is|that|I|ca|n't|wait|to|see|what|the|director|does|next|.\nSmarter|than|its|commercials|make|it|seem|.\nOne|of|the|funnier|movies|in|town|.\nCampanella|'s|competent|direction|and|his|excellent|cast|overcome|the|obstacles|of|a|predictable|outcome|and|a|screenplay|that|glosses|over|Rafael|'s|evolution|.\nBy|turns|very|dark|and|very|funny|.\nSteven|Soderbergh|does|n't|remake|Andrei|Tarkovsky|'s|Solaris|so|much|as|distill|it|.\nFor|more|than|two|decades|Mr.|Nachtwey|has|traveled|to|places|in|the|world|devastated|by|war|,|famine|and|poverty|and|documented|the|cruelty|and|suffering|he|has|found|with|an|devastating|,|eloquent|clarity|.\nSimultaneously|heartbreakingly|beautiful|and|exquisitely|sad|.\nThough|overall|an|overwhelmingly|positive|portrayal|,|the|film|does|n't|ignore|the|more|problematic|aspects|of|Brown|'s|life|.\nThe|philosophical|musings|of|the|dialogue|jar|against|the|tawdry|soap|opera|antics|of|the|film|'s|action|in|a|way|that|is|surprisingly|enjoyable|.\nNot|too|fancy|,|not|too|filling|,|not|too|fluffy|,|but|definitely|tasty|and|sweet|.\nDirector|Lee|has|a|true|cinematic|knack|,|but|it|'s|also|nice|to|see|a|movie|with|its|heart|so|thoroughly|,|unabashedly|on|its|sleeve|.\nAs|Allen|'s|execution|date|closes|in|,|the|documentary|gives|an|especially|poignant|portrait|of|her|friendship|with|the|never|flagging|legal|investigator|David|Presson|.\nJones|has|tackled|a|meaty|subject|and|drawn|engaging|characters|while|peppering|the|pages|with|memorable|zingers|.\nA|vivid|,|spicy|footnote|to|history|,|and|a|movie|that|grips|and|holds|you|in|rapt|attention|from|start|to|finish|.\nIf|S&M|seems|like|a|strange|route|to|true|love|,|maybe|it|is|,|but|it|'s|to|this|film|'s|(|and|its|makers|'|)|credit|that|we|believe|that|that|'s|exactly|what|these|two|people|need|to|find|each|other|--|and|themselves|.\nIf|the|film|'s|vision|of|sport|as|a|secular|religion|is|a|bit|cloying|,|its|through-line|of|family|and|community|is|heartening|in|the|same|way|that|each|season|marks|a|new|start|.\nOne|of|the|best|of|a|growing|strain|of|daring|films|...|that|argue|that|any|sexual|relationship|that|does|n't|hurt|anyone|and|works|for|its|participants|is|a|relationship|that|is|worthy|of|our|respect|.\n...|an|adorably|whimsical|comedy|that|deserves|more|than|a|passing|twinkle|.\nAn|engrossing|story|that|combines|psychological|drama|,|sociological|reflection|,|and|high-octane|thriller|.\nIt|'s|easy|to|be|cynical|about|documentaries|in|which|underdogs|beat|the|odds|and|the|human|spirit|triumphs|,|but|Westbrook|'s|foundation|and|Dalrymple|'s|film|earn|their|uplift|.\nMel|Gibson|fights|the|good|fight|in|Vietnam|in|director|Randall|Wallace|'s|flag-waving|war|flick|with|a|core|of|decency|.\nThere|'s|real|visual|charge|to|the|filmmaking|,|and|a|strong|erotic|spark|to|the|most|crucial|lip-reading|sequence|.\nA|brutal|and|funny|work|.\nNicole|Holofcenter|,|the|insightful|writer\\/director|responsible|for|this|illuminating|comedy|does|n't|wrap|the|proceedings|up|neatly|but|the|ideas|tie|together|beautifully|.\nThe|film|is|a|blunt|indictment|,|part|of|a|perhaps|surreal|campaign|to|bring|Kissinger|to|trial|for|crimes|against|humanity|.\nOne|of|the|most|important|and|exhilarating|forms|of|animated|filmmaking|since|old|Walt|doodled|Steamboat|Willie|.\nMove|over|Bond|;|this|girl|deserves|a|sequel|.\nThe|kind|of|trifle|that|date|nights|were|invented|for|.|.\nIt|'s|a|testament|to|the|film|'s|considerable|charm|that|it|succeeds|in|entertaining|,|despite|playing|out|like|a|feature-length|sitcom|replete|with|stereotypical|familial|quandaries|.\nThere|'s|a|sheer|unbridled|delight|in|the|way|the|story|unfurls|...\nTells|(|the|story|)|with|such|atmospheric|ballast|that|shrugging|off|the|plot|'s|persnickety|problems|is|simply|a|matter|of|(|being|)|in|a|shrugging|mood|.\nThe|film|is|hard|to|dismiss|--|moody|,|thoughtful|,|and|lit|by|flashes|of|mordant|humor|.\nIf|The|Man|from|Elysian|Fields|is|doomed|by|its|smallness|,|it|is|also|elevated|by|it|--|the|kind|of|movie|that|you|enjoy|more|because|you|'re|one|of|the|lucky|few|who|sought|it|out|.\nWhat|emerges|is|an|unsettling|picture|of|childhood|innocence|combined|with|indoctrinated|prejudice|.\nPromises|is|a|compelling|piece|that|demonstrates|just|how|well|children|can|be|trained|to|live|out|and|carry|on|their|parents|'|anguish|.\nMeticulously|uncovers|a|trail|of|outrageous|force|and|craven|concealment|.\nHey|,|Happy|!\nis|many|things|--|stoner|midnight|flick|,|sci-fi|deconstruction|,|gay|fantasia|--|but|above|all|it|'s|a|love|story|as|sanguine|as|its|title|.\nYou|wo|n't|look|at|religious|fanatics|--|or|backyard|sheds|--|the|same|way|again|.\nAt|its|best|...|Festival|in|Cannes|bubbles|with|the|excitement|of|the|festival|in|Cannes|.\nThere|is|a|general|air|of|exuberance|in|All|About|The|Benjamins|that|'s|hard|to|resist|.\nA|lovably|old-school|Hollywood|confection|.\nI|'m|happy|to|have|seen|it|--|not|as|an|alternate|version|,|but|as|the|ultimate|exercise|in|viewing|deleted|scenes|.\nBy|turns|gripping|,|amusing|,|tender|and|heart-wrenching|,|Laissez-passer|has|all|the|earmarks|of|French|cinema|at|its|best|.\nThe|warnings|to|resist|temptation|in|this|film|...|are|blunt|and|challenging|and|offer|no|easy|rewards|for|staying|clean|.\nWonder|of|wonders|--|a|teen|movie|with|a|humanistic|message|.\nA|quirky|comedy|set|in|Newfoundland|that|cleverly|captures|the|dry|wit|that|'s|so|prevalent|on|The|Rock|.\nPeppered|with|witty|dialogue|and|inventive|moments|.\nI|'d|rather|watch|a|rerun|of|The|Powerpuff|Girls\nWith|the|prospect|of|films|like|Kangaroo|Jack|about|to|burst|across|America|'s|winter|movie|screens|it|'s|a|pleasure|to|have|a|film|like|The|Hours|as|an|alternative|.\nThe|wonderful|combination|of|the|sweetness|and|the|extraordinary|technical|accomplishments|of|the|first|film|are|maintained|,|but|its|overall|impact|falls|a|little|flat|with|a|storyline|that|never|quite|delivers|the|original|magic|.\nLike|its|title|character|,|this|Nicholas|Nickleby|finds|itself|in|reduced|circumstances|--|and|,|also|like|its|hero|,|it|remains|brightly|optimistic|,|coming|through|in|the|end|.\nAs|a|thoughtful|and|unflinching|examination|of|an|alternative|lifestyle|,|Sex|with|Strangers|is|a|success|.\nunpretentious|,|charming|,|quirky|,|original\nSpinning|a|web|of|dazzling|entertainment|may|be|overstating|it|,|but|``|Spider-Man|''|certainly|delivers|the|goods|.\nOther|than|the|slightly|flawed|(|and|fairly|unbelievable|)|finale|,|everything|else|is|top|shelf|.\nThis|fascinating|look|at|Israel|in|ferment|feels|as|immediate|as|the|latest|news|footage|from|Gaza|and|,|because|of|its|heightened|,|well-shaped|dramas|,|twice|as|powerful|.\nManages|to|delight|without|much|of|a|story|.\nThere|'s|no|denying|that|Burns|is|a|filmmaker|with|a|bright|future|ahead|of|him|.\nI|have|a|confession|to|make|:|I|did|n't|particularly|like|E.T.|the|first|time|I|saw|it|as|a|young|boy|.\nThat|is|because|-|damn|it|!\n-|I|also|wanted|a|little|alien|as|a|friend|!\nFairy-tale|formula|,|serves|as|a|paper|skeleton|for|some|very|good|acting|,|dialogue|,|comedy|,|direction|and|especially|charm|.\nA|genuinely|funny|ensemble|comedy|that|also|asks|its|audience|--|in|a|heartwarming|,|nonjudgmental|kind|of|way|--|to|consider|what|we|value|in|our|daily|lives|.\nThough|the|aboriginal|aspect|lends|the|ending|an|extraordinary|poignancy|,|and|the|story|itself|could|be|played|out|in|any|working|class|community|in|the|nation|.\nAn|energetic|and|engaging|film|that|never|pretends|to|be|something|it|is|n't|.\nA|violent|initiation|rite|for|the|audience|,|as|much|as|it|is|for|Angelique|,|the|(|opening|)|dance|guarantees|Karmen|'s|enthronement|among|the|cinema|'s|memorable|women|.\nAn|animation|landmark|as|monumental|as|Disney|'s|1937|breakthrough|Snow|White|and|the|Seven|Dwarfs|.\nAn|entertaining|,|if|ultimately|minor|,|thriller|.\nSex|With|Strangers|is|fascinating|...\nA|subtle|,|poignant|picture|of|goodness|that|is|flawed|,|compromised|and|sad|.\nA|wry|,|affectionate|delight|.\nThe|acting|in|Pauline|And|Paulette|is|good|all|round|,|but|what|really|sets|the|film|apart|is|Debrauwer|'s|refusal|to|push|the|easy|emotional|buttons|.\nOne|of|those|joyous|films|that|leaps|over|national|boundaries|and|celebrates|universal|human|nature|.\nA|penetrating|glimpse|into|the|tissue-thin|ego|of|the|stand-up|comic|.\nKids|should|have|a|stirring|time|at|this|beautifully|drawn|movie|.\nAnd|adults|will|at|least|have|a|dream|image|of|the|West|to|savor|whenever|the|film|'s|lamer|instincts|are|in|the|saddle|.\nPaid|in|Full|is|remarkably|engaging|despite|being|noticeably|derivative|of|Goodfellas|and|at|least|a|half|dozen|other|trouble-in-the-ghetto|flicks|.\nLess|cinematically|powerful|than|quietly|and|deeply|moving|,|which|is|powerful|in|itself|.\nwaydowntown|manages|to|nail|the|spirit-crushing|ennui|of|denuded|urban|living|without|giving|in|to|it|.\nEach|of|these|stories|has|the|potential|for|Touched|by|an|Angel|simplicity|and|sappiness|,|but|Thirteen|Conversations|About|One|Thing|,|for|all|its|generosity|and|optimism|,|never|resorts|to|easy|feel-good|sentiments|.\nIf|Borstal|Boy|is|n't|especially|realistic|,|it|is|an|engaging|nostalgia|piece|.\nOften|demented|in|a|good|way|,|but|it|is|an|uneven|film|for|the|most|part|.\nThe|script|'s|snazzy|dialogue|establishes|a|realistic|atmosphere|that|involves|us|in|the|unfolding|crisis|,|but|the|lazy|plotting|ensures|that|little|of|our|emotional|investment|pays|off|.\nMaggie|Smith|as|the|Ya-Ya|member|with|the|O2-tank|will|absolutely|crack|you|up|with|her|crass|,|then|gasp|for|gas|,|verbal|deportment|.\nThis|is|a|movie|that|refreshes|the|mind|and|spirit|along|with|the|body|,|so|original|is|its|content|,|look|,|and|style|.\nAlthough|I|did|n't|hate|this|one|,|it|'s|not|very|good|either|.\nIt|can|be|safely|recommended|as|a|video\\/DVD|babysitter|.\nAnother|Best|of|the|Year|selection|.\nThe|film|has|the|high-buffed|gloss|and|high-octane|jolts|you|expect|of|De|Palma|,|but|what|makes|it|transporting|is|that|it|'s|also|one|of|the|smartest|,|most|pleasurable|expressions|of|pure|movie|love|to|come|from|an|American|director|in|years|.\nIt|'s|a|very|valuable|film|...\nMax|pokes|,|provokes|,|takes|expressionistic|license|and|hits|a|nerve|...|as|far|as|art|is|concerned|,|it|'s|mission|accomplished|.\nLiterary|purists|may|not|be|pleased|,|but|as|far|as|mainstream|matinee-style|entertainment|goes|,|it|does|a|bang-up|job|of|pleasing|the|crowds|.\nHere|Polanski|looks|back|on|those|places|he|saw|at|childhood|,|and|captures|them|by|freeing|them|from|artefact|,|and|by|showing|them|heartbreakingly|drably|.\nThe|story|itself|it|mostly|told|through|on-camera|interviews|with|several|survivors|,|whose|riveting|memories|are|rendered|with|such|clarity|that|it|'s|as|if|it|all|happened|only|yesterday|.\nA|compelling|story|of|musical|passion|against|governmental|odds|.\nWith|``|Ichi|the|Killer|''|,|Takashi|Miike|,|Japan|'s|wildest|filmmaker|gives|us|a|crime|fighter|carrying|more|emotional|baggage|than|Batman|...\nYou|never|know|where|Changing|Lanes|is|going|to|take|you|but|it|'s|a|heck|of|a|ride|.\nSamuel|L.|Jackson|is|one|of|the|best|actors|there|is|.\n(|Breheny|'s|)|lensing|of|the|New|Zealand|and|Cook|Island|locations|captures|both|the|beauty|of|the|land|and|the|people|.\nAn|almost|unbearably|morbid|love|story|.\nThe|Wild|Thornberrys|Movie|has|all|the|sibling|rivalry|and|general|family|chaos|to|which|anyone|can|relate|.\nA|forceful|drama|of|an|alienated|executive|who|re-invents|himself|.\nSpielberg|'s|realization|of|a|near-future|America|is|masterful|.\nThis|makes|Minority|Report|necessary|viewing|for|sci-fi|fans|,|as|the|film|has|some|of|the|best|special|effects|ever|.\nThe|gags|that|fly|at|such|a|furiously|funny|pace|that|the|only|rip|off|that|we|were|aware|of|was|the|one|we|felt|when|the|movie|ended|so|damned|soon|.\nThe|best|film|of|the|year|2002|.\nAn|enthralling|,|entertaining|feature|.\nStripped|almost|entirely|of|such|tools|as|nudity|,|profanity|and|violence|,|LaBute|does|manage|to|make|a|few|points|about|modern|man|and|his|problematic|quest|for|human|connection|.\nA|remarkable|movie|with|an|unsatisfying|ending|,|which|is|just|the|point|.\nAll|in|all|,|Brown|Sugar|is|a|satisfying|well-made|romantic|comedy|that|'s|both|charming|and|well|acted|.\nIt|will|guarantee|to|have|you|leaving|the|theater|with|a|smile|on|your|face|.\nSmith|finds|amusing|juxtapositions|that|justify|his|exercise|.\nWorking|from|a|surprisingly|sensitive|script|co-written|by|Gianni|Romoli|...|Ozpetek|avoids|most|of|the|pitfalls|you|'d|expect|in|such|a|potentially|sudsy|set-up|.\nAn|older|cad|instructs|a|younger|lad|in|Zen|and|the|art|of|getting|laid|in|this|prickly|indie|comedy|of|manners|and|misanthropy|.\n``|Austin|Powers|in|Goldmember|''|has|the|right|stuff|for|silly|summer|entertainment|and|has|enough|laughs|to|sustain|interest|to|the|end|.\nOne|of|(|Jaglom|'s|)|better|efforts|--|a|wry|and|sometime|bitter|movie|about|love|.\nSchaeffer|is|n't|in|this|film|,|which|may|be|why|it|works|as|well|as|it|does|.\nA|fresh|,|entertaining|comedy|that|looks|at|relationships|minus|traditional|gender|roles|.\nAlthough|Estela|Bravo|'s|documentary|is|cloyingly|hagiographic|in|its|portrait|of|Cuban|leader|Fidel|Castro|,|it|'s|still|a|guilty|pleasure|to|watch|.\nSurprisingly|,|the|film|is|a|hilarious|adventure|and|I|shamelessly|enjoyed|it|.\nThe|Way|Home|is|an|ode|to|unconditional|love|and|compassion|garnered|from|years|of|seeing|it|all|,|a|condition|only|the|old|are|privy|to|,|and|...|often|misconstrued|as|weakness|.\nBrutally|honest|and|told|with|humor|and|poignancy|,|which|makes|its|message|resonate|.\nIf|you|can|read|the|subtitles|(|the|opera|is|sung|in|Italian|)|and|you|like|`|Masterpiece|Theatre|'|type|costumes|,|you|'ll|enjoy|this|movie|.\nA|pretty|funny|movie|,|with|most|of|the|humor|coming|,|as|before|,|from|the|incongruous|but|chemically|perfect|teaming|of|Crystal|and|De|Niro|.\nGangster|No.|1|is|solid|,|satisfying|fare|for|adults|.\nThis|Chicago|has|hugely|imaginative|and|successful|casting|to|its|great|credit|,|as|well|as|one|terrific|score|and|attitude|to|spare|.\nHas|enough|gun|battles|and|throwaway|humor|to|cover|up|the|yawning|chasm|where|the|plot|should|be|.\nWith|its|jerky|hand-held|camera|and|documentary|feel|,|Bloody|Sunday|is|a|sobering|recount|of|a|very|bleak|day|in|Derry|.\nYou|will|likely|prefer|to|keep|on|watching|.\nInsomnia|loses|points|when|it|surrenders|to|a|formulaic|bang-bang|,|shoot-em-up|scene|at|the|conclusion|.\nBut|the|performances|of|Pacino|,|Williams|,|and|Swank|keep|the|viewer|wide-awake|all|the|way|through|.\nWhat|might|have|been|readily|dismissed|as|the|tiresome|rant|of|an|aging|filmmaker|still|thumbing|his|nose|at|convention|takes|a|surprising|,|subtle|turn|at|the|midway|point|.\nAt|a|time|when|commercialism|has|squeezed|the|life|out|of|whatever|idealism|American|moviemaking|ever|had|,|Godfrey|Reggio|'s|career|shines|like|a|lonely|beacon|.\nAn|Inuit|masterpiece|that|will|give|you|goosebumps|as|its|uncanny|tale|of|love|,|communal|discord|,|and|justice|unfolds|.\nThis|is|popcorn|movie|fun|with|equal|doses|of|action|,|cheese|,|ham|and|cheek|(|as|well|as|a|serious|debt|to|The|Road|Warrior|)|,|but|it|feels|like|unrealized|potential\nIt|'s|a|testament|to|De|Niro|and|director|Michael|Caton-Jones|that|by|movie|'s|end|,|we|accept|the|characters|and|the|film|,|flaws|and|all|.\nPerformances|are|potent|,|and|the|women|'s|stories|are|ably|intercut|and|involving|.\nAn|enormously|entertaining|movie|,|like|nothing|we|'ve|ever|seen|before|,|and|yet|completely|familiar|.\nLan|Yu|is|a|genuine|love|story|,|full|of|traditional|layers|of|awakening|and|ripening|and|separation|and|recovery|.\nYour|children|will|be|occupied|for|72|minutes|.\nPull|(|s|)|off|the|rare|trick|of|recreating|not|only|the|look|of|a|certain|era|,|but|also|the|feel|.\nTwohy|'s|a|good|yarn-spinner|,|and|ultimately|the|story|compels|.\n`|Tobey|Maguire|is|a|poster|boy|for|the|geek|generation|.|'\n...|a|sweetly|affecting|story|about|four|sisters|who|are|coping|,|in|one|way|or|another|,|with|life|'s|endgame|.\nPassion|,|melodrama|,|sorrow|,|laugther|,|and|tears|cascade|over|the|screen|effortlessly|...\nRoad|to|Perdition|does|display|greatness|,|and|it|'s|worth|seeing|.\nBut|it|also|comes|with|the|laziness|and|arrogance|of|a|thing|that|already|knows|it|'s|won|.\nA|marvelous|performance|by|Allison|Lohman|as|an|identity-seeking|foster|child|.\nArliss|Howard|'s|ambitious|,|moving|,|and|adventurous|directorial|debut|,|Big|Bad|Love|,|meets|so|many|of|the|challenges|it|poses|for|itself|that|one|can|forgive|the|film|its|flaws|.\nCritics|need|a|good|laugh|,|too|,|and|this|too-extreme-for-TV|rendition|of|the|notorious|MTV|show|delivers|the|outrageous|,|sickening|,|sidesplitting|goods|in|steaming|,|visceral|heaps|.\nWhat|a|dumb|,|fun|,|curiously|adolescent|movie|this|is|.\nThe|charms|of|the|lead|performances|allow|us|to|forget|most|of|the|film|'s|problems|.\nA|vivid|,|sometimes|surreal|,|glimpse|into|the|mysteries|of|human|behavior|.\nA|tour|de|force|of|modern|cinema|.\nPeralta|captures|,|in|luminous|interviews|and|amazingly|evocative|film|from|three|decades|ago|,|the|essence|of|the|Dogtown|experience|.\nThe|lively|appeal|of|The|Last|Kiss|lies|in|the|ease|with|which|it|integrates|thoughtfulness|and|pasta-fagioli|comedy|.\nWithout|resorting|to|camp|or|parody|,|Haynes|(|like|Sirk|,|but|differently|)|has|transformed|the|rhetoric|of|Hollywood|melodrama|into|something|provocative|,|rich|,|and|strange|.\nThe|performances|are|an|absolute|joy|.\nA|quasi-documentary|by|French|filmmaker|Karim|Dridi|that|celebrates|the|hardy|spirit|of|Cuban|music|.\nGrant|carries|the|day|with|impeccable|comic|timing|,|raffish|charm|and|piercing|intellect|.\nA|sensitive|and|astute|first|feature|by|Anne-Sophie|Birot|.\nBoth|exuberantly|romantic|and|serenely|melancholy|,|What|Time|Is|It|There|?\nmay|prove|to|be|(|Tsai|'s|)|masterpiece|.\nMazel|tov|to|a|film|about|a|family|'s|joyous|life|acting|on|the|Yiddish|stage|.\nStanding|in|the|Shadows|of|Motown|is|the|best|kind|of|documentary|,|one|that|makes|a|depleted|yesterday|feel|very|much|like|a|brand-new|tomorrow|.\nIt|'s|nice|to|see|Piscopo|again|after|all|these|years|,|and|Chaykin|and|Headly|are|priceless|.\nProvides|a|porthole|into|that|noble|,|trembling|incoherence|that|defines|us|all|.\nSimplistic|,|silly|and|tedious|.\nIt|'s|so|laddish|and|juvenile|,|only|teenage|boys|could|possibly|find|it|funny|.\nExploitative|and|largely|devoid|of|the|depth|or|sophistication|that|would|make|watching|such|a|graphic|treatment|of|the|crimes|bearable|.\n(|Garbus|)|discards|the|potential|for|pathological|study|,|exhuming|instead|,|the|skewed|melodrama|of|the|circumstantial|situation|.\nA|visually|flashy|but|narratively|opaque|and|emotionally|vapid|exercise|in|style|and|mystification|.\nThe|story|is|also|as|unoriginal|as|they|come|,|already|having|been|recycled|more|times|than|I|'d|care|to|count|.\nAbout|the|only|thing|to|give|the|movie|points|for|is|bravado|--|to|take|an|entirely|stale|concept|and|push|it|through|the|audience|'s|meat|grinder|one|more|time|.\nNot|so|much|farcical|as|sour|.\nUnfortunately|the|story|and|the|actors|are|served|with|a|hack|script|.\nAll|the|more|disquieting|for|its|relatively|gore-free|allusions|to|the|serial|murders|,|but|it|falls|down|in|its|attempts|to|humanize|its|subject|.\nA|sentimental|mess|that|never|rings|true|.\nWhile|the|performances|are|often|engaging|,|this|loose|collection|of|largely|improvised|numbers|would|probably|have|worked|better|as|a|one-hour|TV|documentary|.\nInteresting|,|but|not|compelling|.\nOn|a|cutting|room|floor|somewhere|lies|...|footage|that|might|have|made|No|Such|Thing|a|trenchant|,|ironic|cultural|satire|instead|of|a|frustrating|misfire|.\nWhile|the|ensemble|player|who|gained|notice|in|Guy|Ritchie|'s|Lock|,|Stock|and|Two|Smoking|Barrels|and|Snatch|has|the|bod|,|he|'s|unlikely|to|become|a|household|name|on|the|basis|of|his|first|starring|vehicle|.\nThere|is|a|difference|between|movies|with|the|courage|to|go|over|the|top|and|movies|that|do|n't|care|about|being|stupid\nNothing|here|seems|as|funny|as|it|did|in|Analyze|This|,|not|even|Joe|Viterelli|as|De|Niro|'s|right-hand|goombah|.\nSuch|master|screenwriting|comes|courtesy|of|John|Pogue|,|the|Yale|grad|who|previously|gave|us|``|The|Skulls|''|and|last|year|'s|``|Rollerball|.|''\nEnough|said|,|except|:|Film|overboard|!\nHere|,|common|sense|flies|out|the|window|,|along|with|the|hail|of|bullets|,|none|of|which|ever|seem|to|hit|Sascha|.\nThis|100-minute|movie|only|has|about|25|minutes|of|decent|material|.\nThe|execution|is|so|pedestrian|that|the|most|positive|comment|we|can|make|is|that|Rob|Schneider|actually|turns|in|a|pretty|convincing|performance|as|a|prissy|teenage|girl|.\nOn|its|own|,|it|'s|not|very|interesting|.\nAs|a|remake|,|it|'s|a|pale|imitation|.\nIt|shows|that|some|studios|firmly|believe|that|people|have|lost|the|ability|to|think|and|will|forgive|any|shoddy|product|as|long|as|there|'s|a|little|girl-on-girl|action|.\nA|farce|of|a|parody|of|a|comedy|of|a|premise|,|it|is|n't|a|comparison|to|reality|so|much|as|it|is|a|commentary|about|our|knowledge|of|films|.\nAs|exciting|as|all|this|exoticism|might|sound|to|the|typical|Pax|viewer|,|the|rest|of|us|will|be|lulled|into|a|coma|.\nThe|party|scenes|deliver|some|tawdry|kicks|.\nThe|rest|of|the|film|...|is|dudsville|.\nOur|culture|is|headed|down|the|toilet|with|the|ferocity|of|a|frozen|burrito|after|an|all-night|tequila|bender|--|and|I|know|this|because|I|'ve|seen|`|jackass|:|the|movie|.|'\nThe|criticism|never|rises|above|easy|,|cynical|potshots|at|morally|bankrupt|characters|...\nThe|movie|'s|something-borrowed|construction|feels|less|the|product|of|loving|,|well|integrated|homage|and|more|like|a|mere|excuse|for|the|wan|,|thinly|sketched|story|.\nKilling|time|,|that|'s|all|that|'s|going|on|here|.\nSomewhere|in|the|middle|,|the|film|compels|,|as|Demme|experiments|he|harvests|a|few|movie|moment|gems|,|but|the|field|of|roughage|dominates|.\nThe|action|clichés|just|pile|up|.\nPayami|tries|to|raise|some|serious|issues|about|Iran|'s|electoral|process|,|but|the|result|is|a|film|that|'s|about|as|subtle|as|a|party|political|broadcast|.\nThe|only|surprise|is|that|heavyweights|Joel|Silver|and|Robert|Zemeckis|agreed|to|produce|this|;|I|assume|the|director|has|pictures|of|them|cavorting|in|ladies|'|underwear|.\nAnother|useless|recycling|of|a|brutal|mid|-|'70s|American|sports|movie|.\nPlease|,|someone|,|stop|Eric|Schaeffer|before|he|makes|another|film|.\nMost|of|the|problems|with|the|film|do|n't|derive|from|the|screenplay|,|but|rather|the|mediocre|performances|by|most|of|the|actors|involved\n...|if|you|'re|just|in|the|mood|for|a|fun|--|but|bad|--|movie|,|you|might|want|to|catch|Freaks|as|a|matinee|.\nCurling|may|be|a|unique|sport|but|Men|with|Brooms|is|distinctly|ordinary|.\nThough|the|opera|itself|takes|place|mostly|indoors|,|Jacquot|seems|unsure|of|how|to|evoke|any|sort|of|naturalism|on|the|set|.\nThere|'s|no|getting|around|the|fact|that|this|is|Revenge|Of|The|Nerds|Revisited|--|again|.\nThe|effort|is|sincere|and|the|results|are|honest|,|but|the|film|is|so|bleak|that|it|'s|hardly|watchable|.\nAnalyze|That|regurgitates|and|waters|down|many|of|the|previous|film|'s|successes|,|with|a|few|new|swings|thrown|in|.\nWith|flashbulb|editing|as|cover|for|the|absence|of|narrative|continuity|,|Undisputed|is|nearly|incoherent|,|an|excuse|to|get|to|the|closing|bout|...|by|which|time|it|'s|impossible|to|care|who|wins|.\nStinks|from|start|to|finish|,|like|a|wet|burlap|sack|of|gloom|.\nTo|the|civilized|mind|,|a|movie|like|Ballistic|:|Ecks|Vs.|Sever|is|more|of|an|ordeal|than|an|amusement|.\nEqulibrium|could|pass|for|a|thirteen-year-old|'s|book|report|on|the|totalitarian|themes|of|1984|and|Farenheit|451|.\nThe|lack|of|naturalness|makes|everything|seem|self-consciously|poetic|and|forced|...|It|'s|a|pity|that|(|Nelson|'s|)|achievement|does|n't|match|his|ambition|.\nWhen|Seagal|appeared|in|an|orange|prison|jumpsuit|,|I|wanted|to|stand|up|in|the|theater|and|shout|,|`|Hey|,|Kool-Aid|!|'\nAn|easy|watch|,|except|for|the|annoying|demeanour|of|its|lead|character|.\nImagine|the|CleanFlicks|version|of|`|Love|Story|,|'|with|Ali|MacGraw|'s|profanities|replaced|by|romance-novel|platitudes|.\nPC|stability|notwithstanding|,|the|film|suffers|from|a|simplistic|narrative|and|a|pat|,|fairy-tale|conclusion|.\nForget|the|misleading|title|,|what|'s|with|the|unexplained|baboon|cameo|?\nAn|odd|,|haphazard|,|and|inconsequential|romantic|comedy|.\nThough|her|fans|will|assuredly|have|their|funny|bones|tickled|,|others|will|find|their|humor-seeking|dollars|best|spent|elsewhere|.\nPascale|Bailly|'s|rom-com|provides|Amélie|'s|Audrey|Tautou|with|another|fabuleux|destin|--|i.e.|,|a|banal|spiritual|quest|.\nA|static|and|sugary|little|half-hour|,|after-school|special|about|interfaith|understanding|,|stretched|out|to|90|minutes|.\nWatching|the|chemistry|between|Freeman|and|Judd|,|however|,|almost|makes|this|movie|worth|seeing|.\nAlmost|.\n...|a|pretentious|and|ultimately|empty|examination|of|a|sick|and|evil|woman|.\nThe|Country|Bears|has|no|scenes|that|will|upset|or|frighten|young|viewers|.\nUnfortunately|,|there|is|almost|nothing|in|this|flat|effort|that|will|amuse|or|entertain|them|,|either|.\nThe|cumulative|effect|of|watching|this|65-minute|trifle|is|rather|like|being|trapped|while|some|weird|relative|trots|out|the|video|he|took|of|the|family|vacation|to|Stonehenge|.\nBefore|long|,|you|'re|desperate|for|the|evening|to|end|.\nThe|characters|are|never|more|than|sketches|...|which|leaves|any|true|emotional|connection|or|identification|frustratingly|out|of|reach|.\nMattei|'s|underdeveloped|effort|here|is|nothing|but|a|convenient|conveyor|belt|of|brooding|personalities|that|parade|about|as|if|they|were|coming|back|from|Stock|Character|camp|--|a|drowsy|drama|infatuated|by|its|own|pretentious|self-examination|.\nOnly|in|its|final|surprising|shots|does|Rabbit-Proof|Fence|find|the|authority|it|'s|looking|for|.\nIs|n't|as|sharp|as|the|original|...|Despite|some|visual|virtues|,|`|Blade|II|'|just|does|n't|cut|it|.\n...|plays|like|a|badly|edited|,|91-minute|trailer|(|and|)|the|director|ca|n't|seem|to|get|a|coherent|rhythm|going|.\nIn|fact|,|it|does|n't|even|seem|like|she|tried|.\nMaybe|LeBlanc|thought|,|``|Hey|,|the|movie|about|the|baseball-playing|monkey|was|worse|.|''\nWhat|you|expect|is|just|what|you|get|...|assuming|the|bar|of|expectations|has|n't|been|raised|above|sixth-grade|height|.\nBarry|Sonnenfeld|owes|Frank|the|Pug|big|time\nThe|biggest|problem|with|Roger|Avary|'s|uproar|against|the|MPAA|is|that|,|even|in|all|its|director|'s|cut|glory|,|he|'s|made|a|film|that|'s|barely|shocking|,|barely|interesting|and|most|of|all|,|barely|anything|.\nSo|riddled|with|unanswered|questions|that|it|requires|gargantuan|leaps|of|faith|just|to|watch|it|plod|along|.\nI|approached|the|usher|and|said|that|if|she|had|to|sit|through|it|again|,|she|should|ask|for|a|raise|.\nIf|Sinise|'s|character|had|a|brain|his|ordeal|would|be|over|in|five|minutes|but|instead|the|plot|goes|out|of|its|way|to|introduce|obstacles|for|him|to|stumble|over|.\nToo|slow|for|a|younger|crowd|,|too|shallow|for|an|older|one|.\nThere|'s|a|reason|the|studio|did|n't|offer|an|advance|screening|.\n``|The|Adventures|of|Pluto|Nash|''|is|a|big|time|stinker|.\nA|punch|line|without|a|premise|,|a|joke|built|entirely|from|musty|memories|of|half-dimensional|characters|.\nTakes|one|character|we|do|n't|like|and|another|we|do|n't|believe|,|and|puts|them|into|a|battle|of|wills|that|is|impossible|to|care|about|and|is|n't|very|funny|.\nThe|things|this|movie|tries|to|get|the|audience|to|buy|just|wo|n't|fly|with|most|intelligent|viewers|.\nEven|if|the|enticing|prospect|of|a|lot|of|nubile|young|actors|in|a|film|about|campus|depravity|did|n't|fade|amid|the|deliberate|,|tiresome|ugliness|,|it|would|be|rendered|tedious|by|Avary|'s|failure|to|construct|a|story|with|even|a|trace|of|dramatic|interest|.\nSitting|through|the|last|reel|(|spoiler|alert|!|)\nis|significantly|less|charming|than|listening|to|a|four-year-old|with|a|taste|for|exaggeration|recount|his|Halloween|trip|to|the|Haunted|House|.\nConfuses|its|message|with|an|ultimate|desire|to|please|,|and|contorting|itself|into|an|idea|of|expectation|is|the|last|thing|any|of|these|three|actresses|,|nor|their|characters|,|deserve|.\nDeadly|dull|,|pointless|meditation|on|losers|in|a|gone-to-seed|hotel|.\nWith|this|new|Rollerball|,|sense|and|sensibility|have|been|overrun|by|what|can|only|be|characterized|as|robotic|sentiment|.\nOne|can|only|assume|that|the|jury|who|bestowed|star|Hoffman|'s|brother|Gordy|with|the|Waldo|Salt|Screenwriting|award|at|2002|'s|Sundance|Festival|were|honoring|an|attempt|to|do|something|different|over|actually|pulling|it|off\nA|movie|more|to|be|prescribed|than|recommended|--|as|visually|bland|as|a|dentist|'s|waiting|room|,|complete|with|soothing|Muzak|and|a|cushion|of|predictable|narrative|rhythms|.\nSex|ironically|has|little|to|do|with|the|story|,|which|becomes|something|about|how|lame|it|is|to|try|and|evade|your|responsibilities|and|that|you|should|never|,|ever|,|leave|a|large|dog|alone|with|a|toddler|.\nBut|never|mind|all|that|;|the|boobs|are|fantasti\nThe|script|covers|huge|,|heavy|topics|in|a|bland|,|surfacey|way|that|does|n't|offer|any|insight|into|why|,|for|instance|,|good|things|happen|to|bad|people|.\nA|portrait|of|alienation|so|perfect|,|it|will|certainly|succeed|in|alienating|most|viewers|.\nThe|code|talkers|deserved|better|than|a|hollow|tribute|.\nSkip|the|film|and|buy|the|Philip|Glass|soundtrack|CD|.\nFeels|like|a|cold|old|man|going|through|the|motions|.\nDignified|CEO|'s|meet|at|a|rustic|retreat|and|pee|against|a|tree|.\nCan|you|bear|the|laughter|?\nDull|and|mechanical|,|kinda|like|a|very|goofy|museum|exhibit\nThere|'s|no|point|of|view|,|no|contemporary|interpretation|of|Joan|'s|prefeminist|plight|,|so|we|'re|left|thinking|the|only|reason|to|make|the|movie|is|because|present|standards|allow|for|plenty|of|nudity|.\nBeware|the|quirky|Brit-com|.\nThey|can|and|will|turn|on|a|dime|from|oddly|humorous|to|tediously|sentimental|.\nHas|its|moments|--|and|almost|as|many|subplots|.\nThe|gags|,|and|the|script|,|are|a|mixed|bag|.\nCompletely|awful|Iranian|drama|...|as|much|fun|as|a|grouchy|ayatollah|in|a|cold|mosque|.\nNarratively|,|Trouble|Every|Day|is|a|plodding|mess|.\nThere|'s|no|point|in|extracting|the|bare|bones|of|Byatt|'s|plot|for|purposes|of|bland|Hollywood|romance|.\nDirectors|John|Musker|and|Ron|Clements|,|the|team|behind|The|Little|Mermaid|,|have|produced|sparkling|retina|candy|,|but|they|are|n't|able|to|muster|a|lot|of|emotional|resonance|in|the|cold|vacuum|of|space|.\nAdam|Sandler|'s|heart|may|be|in|the|right|place|,|but|he|needs|to|pull|his|head|out|of|his|butt\nThere|'s|no|doubting|that|this|is|a|highly|ambitious|and|personal|project|for|Egoyan|,|but|it|'s|also|one|that|,|next|to|his|best|work|,|feels|clumsy|and|convoluted|.\nDespite|engaging|offbeat|touches|,|Knockaround|Guys|rarely|seems|interested|in|kicking|around|a|raison|d'etre|that|'s|as|fresh-faced|as|its|young-guns|cast|.\nIt|'s|all|pretty|tame|.\nThe|most|offensive|thing|about|the|movie|is|that|Hollywood|expects|people|to|pay|to|see|it|.\nThe|movie|is|a|mess|from|start|to|finish|.\nThe|trouble|with|making|this|queen|a|thoroughly|modern|maiden|is|that|it|also|makes|her|appear|foolish|and|shallow|rather|than|,|as|was|more|likely|,|a|victim|of|mental|illness|.\nI|'m|not|saying|that|Ice|Age|does|n't|have|some|fairly|pretty|pictures|,|but|there|'s|not|enough|substance|in|the|story|to|actually|give|them|life|.\nIn|the|telling|of|a|story|largely|untold|,|Bui|chooses|to|produce|something|that|is|ultimately|suspiciously|familiar|.\nThe|plot|is|nothing|but|boilerplate|clichés|from|start|to|finish|,|and|the|script|assumes|that|not|only|would|subtlety|be|lost|on|the|target|audience|,|but|that|it|'s|also|too|stupid|to|realize|that|they|'ve|already|seen|this|exact|same|movie|a|hundred|times\nTerminally|brain|dead|production|.\nSome|episodes|work|,|some|do|n't|.\nBeautifully|filmed|and|well|acted|...|but|admittedly|problematic|in|its|narrative|specifics|.\nJ.|Lo|will|earn|her|share|of|the|holiday|box|office|pie|,|although|this|movie|makes|one|thing|perfectly|clear|:|She|'s|a|pretty|woman|,|but|she|'s|no|working|girl|.\nRymer|does|n't|trust|laughs|--|and|does|n't|conjure|proper|respect|for|followers|of|the|whole|dead-undead|genre|,|who|deserve|more|from|a|vampire|pic|than|a|few|shrieky|special|effects|.\nNot|only|are|the|film|'s|Sopranos|gags|incredibly|dated|and|unfunny|,|they|also|demonstrate|how|desperate|the|makers|of|this|`|we|'re|-|doing-it-for|-|the-cash|'|sequel|were|.\nWow|.\nI|have|not|been|this|disappointed|by|a|movie|in|a|long|time|.\nOff|the|Hook|is|overlong|and|not|well-acted|,|but|credit|writer-producer-director|Adam|Watstein|with|finishing|it|at|all|.\nIt|'s|a|drag|how|Nettelbeck|sees|working|women|--|or|at|least|this|working|woman|--|for|whom|she|shows|little|understanding|.\nWatching|Harris|ham|it|up|while|physically|and|emotionally|disintegrating|over|the|course|of|the|movie|has|a|certain|poignancy|in|light|of|his|recent|death|,|but|Boyd|'s|film|offers|little|else|of|consequence|.\nIt|'s|also|curious|to|note|that|this|film|,|like|the|similarly|ill-timed|Antitrust|,|is|easily|as|bad|at|a|fraction|the|budget|.\nWill|probably|be|one|of|those|movies|barely|registering|a|blip|on|the|radar|screen|of|2002|.\nThe|problem|is|not|that|it|'s|all|derivative|,|because|plenty|of|funny|movies|recycle|old|tropes|.\nThe|problem|is|that|Van|Wilder|does|little|that|is|actually|funny|with|the|material|.\nThere|'s|nothing|interesting|in|Unfaithful|whatsoever|.\nNone|of|this|is|half|as|moving|as|the|filmmakers|seem|to|think|.\nA|processed|comedy|chop|suey|.\nAs|spent|screen|series|go|,|Star|Trek|:|Nemesis|is|even|more|suggestive|of|a|65th|class|reunion|mixer|where|only|eight|surviving|members|show|up|--|and|there|'s|nothing|to|drink|.\nFails|as|a|dystopian|movie|,|as|a|retooling|of|Fahrenheit|451|,|and|even|as|a|rip-off|of|The|Matrix|.\nFull|of|the|kind|of|obnoxious|chitchat|that|only|self-aware|neurotics|engage|in|.\nAn|erotic|thriller|that|'s|neither|too|erotic|nor|very|thrilling|,|either|.\nThe|movie|,|like|Bartleby|,|is|something|of|a|stiff|--|an|extra-dry|office|comedy|that|seems|twice|as|long|as|its|83|minutes|.\nWith|its|parade|of|almost|perpetually|wasted|characters|...|Margarita|feels|like|a|hazy|high|that|takes|too|long|to|shake|.\nIf|you|value|your|time|and|money|,|find|an|escape|clause|and|avoid|seeing|this|trite|,|predictable|rehash|.\nThe|director|and|her|capable|cast|appear|to|be|caught|in|a|heady|whirl|of|New|Age-inspired|good|intentions|,|but|the|spell|they|cast|is|n't|the|least|bit|mesmerizing|.\nEverything|is|pegged|into|the|groove|of|a|New|York|dating|comedy|with|`|issues|'|to|simplify|.\nA|dramatic|comedy|as|pleasantly|dishonest|and|pat|as|any|Hollywood|fluff|.\nThe|cameo-packed|,|M|:|I-2-spoofing|title|sequence|is|the|funniest|5|minutes|to|date|in|this|spy|comedy|franchise|...|Then|Mike|Myers|shows|up|and|ruins|everything|.\nIt|comes|off|as|so|silly|that|you|would|n't|be|surprised|if|BA|,|Murdock|and|rest|of|the|A-Team|were|seen|giving|chase|in|a|black|and|red|van|.\nThe|50-something|lovebirds|are|too|immature|and|unappealing|to|care|about|.\nSo|genial|is|the|conceit|,|this|is|one|of|those|rare|pictures|that|you|root|for|throughout|,|dearly|hoping|that|the|rich|promise|of|the|script|will|be|realized|on|the|screen|.\nIt|never|is|,|not|fully|.\nEven|in|the|summertime|,|the|most|restless|young|audience|deserves|the|dignity|of|an|action|hero|motivated|by|something|more|than|franchise|possibilities|.\nWhat|with|all|the|blanket|statements|and|dime-store|ruminations|on|vanity|,|the|worries|of|the|rich|and|sudden|wisdom|,|the|film|becomes|a|sermon|for|most|of|its|running|time|.\nAs|gamely|as|the|movie|tries|to|make|sense|of|its|title|character|,|there|remains|a|huge|gap|between|the|film|'s|creepy|,|clean-cut|Dahmer|(|Jeremy|Renner|)|and|fiendish|acts|that|no|amount|of|earnest|textbook|psychologizing|can|bridge|.\nPlodding|,|peevish|and|gimmicky|.\nThe|Four|Feathers|is|definitely|horse|feathers|,|but|if|you|go|in|knowing|that|,|you|might|have|fun|in|this|cinematic|sandbox|.\nOozes|condescension|from|every|pore|.\n``|Solaris|''|is|a|shapeless|inconsequential|move|relying|on|the|viewer|to|do|most|of|the|work|.\nThe|direction|,|by|George|Hickenlooper|,|has|no|snap|to|it|,|no|wiseacre|crackle|or|hard-bitten|cynicism|.\nThough|this|saga|would|be|terrific|to|read|about|,|it|is|dicey|screen|material|that|only|a|genius|should|touch|.\nIt|has|plenty|of|laughs|.\nIt|just|does|n't|have|much|else|...|especially|in|a|moral|sense|.\nAn|awful|lot|like|one|of|(|Spears|'|)|music|videos|in|content|--|except|that|it|goes|on|for|at|least|90|more|minutes|and|,|worse|,|that|you|have|to|pay|if|you|want|to|see|it|.\nConfusion|is|one|of|my|least|favourite|emotions|,|especially|when|I|have|to|put|up|with|146|minutes|of|it|.\n(|H|)|ad|I|suffered|and|bled|on|the|hard|ground|of|Ia|Drang|,|I|'d|want|something|a|bit|more|complex|than|We|Were|Soldiers|to|be|remembered|by|.\nOccasionally|loud|and|offensive|,|but|more|often|,|it|simply|lulls|you|into|a|gentle|waking|coma|.\nit|may|play|well|as|a|double|feature|with|mainstream|foreign|mush|like|My|Big|Fat|Greek|Wedding\nBy|the|time|you|reach|the|finale|,|you|'re|likely|wondering|why|you|'ve|been|watching|all|this|strutting|and|posturing|.\nJournalistically|dubious|,|inept|and|often|lethally|dull|.\nPutting|the|primitive|murderer|inside|a|high-tech|space|station|unleashes|a|Pandora|'s|Box|of|special|effects|that|run|the|gamut|from|cheesy|to|cheesier|to|cheesiest|.\nAt|its|best|,|it|'s|Black|Hawk|Down|with|more|heart|.\nAt|its|worst|,|it|'s|Rambo|-|meets-John|Ford|.\nExactly|what|you|'d|expect|from|a|guy|named|Kaos|.\nThis|movie|...|does|n't|deserve|the|energy|it|takes|to|describe|how|bad|it|is|.\nWith|or|without|ballast|tanks|,|K-19|sinks|to|a|Harrison|Ford|low|.\nDirector|Oliver|Parker|labors|so|hard|to|whip|life|into|The|Importance|of|Being|Earnest|that|he|probably|pulled|a|muscle|or|two|.\nYou|might|be|shocked|to|discover|that|Seinfeld|'s|real|life|is|boring|.\nIt|'s|not|nearly|as|fresh|or|enjoyable|as|its|predecessor|,|but|there|are|enough|high|points|to|keep|this|from|being|a|complete|waste|of|time|.\nWalsh|ca|n't|quite|negotiate|the|many|inconsistencies|in|Janice|'s|behavior|or|compensate|for|them|by|sheer|force|of|charm|.\nThis|10th|film|in|the|series|looks|and|feels|tired|.\nIt|leers|,|offering|next|to|little|insight|into|its|intriguing|subject|.\nI|found|myself|growing|more|and|more|frustrated|and|detached|as|Vincent|became|more|and|more|abhorrent|.\nOne|of|the|oddest|and|most|inexplicable|sequels|in|movie|history|.\nThere|'s|nothing|to|gain|from|watching|They|.\nIt|is|n't|scary|.\nIt|hates|its|characters|.\nIt|finds|no|way|to|entertain|or|inspire|its|viewers|.\nFear|permeates|the|whole|of|Stortelling|,|Todd|Solondz|'|oftentimes|funny|,|yet|ultimately|cowardly|autocritique|.\nThe|skirmishes|for|power|waged|among|victims|and|predators|settle|into|an|undistinguished|rhythm|of|artificial|suspense|.\n...|Ice|Age|treads|predictably|along|familiar|territory|,|making|it|a|passable|family|film|that|wo|n't|win|many|fans|over|the|age|of|12|.\nThough|the|film|is|well-intentioned|,|one|could|rent|the|original|and|get|the|same|love|story|and|parable|.\nJust|too|silly|and|sophomoric|to|ensnare|its|target|audience|.\nThe|video|work|is|so|grainy|and|rough|,|so|dependent|on|being|`|naturalistic|'|rather|than|carefully|lit|and|set|up|,|that|it|'s|exhausting|to|watch|.\nA|cleverly|crafted|but|ultimately|hollow|mockumentary|.\nIt|gets|bogged|down|by|hit-and-miss|topical|humour|before|getting|to|the|truly|good|stuff|.\nAn|achingly|enthralling|premise|,|the|film|is|hindered|by|uneven|dialogue|and|plot|lapses|.\nIt|'s|Tommy|'s|job|to|clean|the|peep|booths|surrounding|her|,|and|after|viewing|this|one|,|you|'ll|feel|like|mopping|up|,|too|.\nRifkin|no|doubt|fancies|himself|something|of|a|Hubert|Selby|Jr.|,|but|there|is|n't|an|ounce|of|honest|poetry|in|his|entire|script|;|it|'s|simply|crude|and|unrelentingly|exploitative|.\nSuch|a|bad|movie|that|its|luckiest|viewers|will|be|seated|next|to|one|of|those|ignorant|pinheads|who|talk|throughout|the|show|.\nIf|you|go|into|the|theater|expecting|a|scary|,|action-packed|chiller|,|you|might|soon|be|looking|for|a|sign|.\nAn|EXIT|sign|,|that|is|.\nHolds|limited|appeal|to|those|who|like|explosions|,|sadism|and|seeing|people|beat|each|other|to|a|pulp|.\nThe|dialogue|is|very|choppy|and|monosyllabic|despite|the|fact|that|it|is|being|dubbed|.\nA|feature-length|,|R-rated|,|road-trip|version|of|Mama|'s|Family|.\nWhat|you|end|up|getting|is|the|Vertical|Limit|of|surfing|movies|-|memorable|stunts|with|lots|of|downtime|in|between|.\nStealing|Harvard|does|n't|care|about|cleverness|,|wit|or|any|other|kind|of|intelligent|humor|.\nBigelow|handles|the|nuclear|crisis|sequences|evenly|but|milks|drama|when|she|should|be|building|suspense|,|and|drags|out|too|many|scenes|toward|the|end|that|should|move|quickly|.\nThere|'s|undeniable|enjoyment|to|be|had|from|films|crammed|with|movie|references|,|but|the|fun|wears|thin|--|then|out|--|when|there|'s|nothing|else|happening|.\nImagine|Kevin|Smith|,|the|blasphemous|bad|boy|of|suburban|Jersey|,|if|he|were|stripped|of|most|of|his|budget|and|all|of|his|sense|of|humor|.\nThe|result|might|look|like|Vulgar|.\nSuffers|from|a|lack|of|clarity|and|audacity|that|a|subject|as|monstrous|and|pathetic|as|Dahmer|demands|.\nWhat|soured|me|on|The|Santa|Clause|2|was|that|Santa|bumps|up|against|21st|century|reality|so|hard|,|it|'s|icky|.\nIt|'s|an|88-minute|highlight|reel|that|'s|86|minutes|too|long|.\nThe|film|favors|the|scientific|over|the|spectacular|(|visually|speaking|)|.\nSuch|an|incomprehensible|mess|that|it|feels|less|like|bad|cinema|than|like|being|stuck|in|a|dark|pit|having|a|nightmare|about|bad|cinema|.\nWith|the|exception|of|McCoist|,|the|players|do|n't|have|a|clue|on|the|park|.\nThe|acting|is|n't|much|better|.\nThe|whole|affair|is|as|predictable|as|can|be|.\nA|not-so-Divine|Secrets|of|the|Ya-Ya|Sisterhood|with|a|hefty|helping|of|Re-Fried|Green|Tomatoes|.\nThis|cloying|,|voices-from-the-other-side|story|is|hell|.\nA|suffocating|rape-payback|horror|show|that|hinges|on|the|subgenre|'s|most|enabling|victim|...|and|an|ebullient|affection|for|industrial-model|meat|freezers|.\nStar|Trek|was|kind|of|terrific|once|,|but|now|it|is|a|copy|of|a|copy|of|a|copy|.\n(|N|)|o|matter|how|much|good|will|the|actors|generate|,|Showtime|eventually|folds|under|its|own|thinness|.\nEvery|potential|twist|is|telegraphed|well|in|advance|,|every|performance|respectably|muted|;|the|movie|itself|seems|to|have|been|made|under|the|influence|of|Rohypnol|.\nPuts|on|airs|of|a|Hal|Hartley|wannabe|film|--|without|the|vital|comic|ingredient|of|the|hilarious|writer-director|himself|.\nVer|Wiel|'s|desperate|attempt|at|wit|is|lost|,|leaving|the|character|of|Critical|Jim|two-dimensional|and|pointless|.\nDespite|a|performance|of|sustained|intelligence|from|Stanford|and|another|of|subtle|humour|from|Bebe|Neuwirth|,|as|an|older|woman|who|seduces|Oscar|,|the|film|founders|on|its|lack|of|empathy|for|the|social|milieu|-|rich|New|York|intelligentsia|-|and|its|off\nAlthough|Disney|follows|its|standard|formula|in|this|animated|adventure|,|it|feels|more|forced|than|usual|.\nGaghan|...|has|thrown|every|suspenseful|cliché|in|the|book|at|this|nonsensical|story|.\nA|sham|construct|based|on|theory|,|sleight-of-hand|,|and|ill-wrought|hypothesis|.\n(|P|)|artnering|Murphy|with|Robert|De|Niro|for|the|TV-cops|comedy|Showtime|would|seem|to|be|surefire|casting|.\nThe|catch|is|that|they|'re|stuck|with|a|script|that|prevents|them|from|firing|on|all|cylinders|.\n`|You|'ll|laugh|for|not|quite|and|hour|and|a|half|,|but|come|out|feeling|strangely|unsatisfied|.\nYou|'ll|feel|like|you|ate|a|Reeses|without|the|peanut|butter|...|'\nGooding|offers|a|desperately|ingratiating|performance|.\nParker|should|be|commended|for|taking|a|fresh|approach|to|familiar|material|,|but|his|determination|to|remain|true|to|the|original|text|leads|him|to|adopt|a|somewhat|mannered|tone|...|that|ultimately|dulls|the|human|tragedy|at|the|story|'s|core|.\nThe|director|has|injected|self-consciousness|into|the|proceedings|at|every|turn|.\nThe|results|are|far|more|alienating|than|involving|.\nBogdanich|is|unashamedly|pro-Serbian|and|makes|little|attempt|to|give|voice|to|the|other|side|.\nA|lack|of|thesis|makes|Maryam|,|in|the|end|,|play|out|with|the|intellectual|and|emotional|impact|of|an|after-school|special|.\nWithout|Shakespeare|'s|eloquent|language|,|the|update|is|dreary|and|sluggish|.\nIf|H.G.|Wells|had|a|time|machine|and|could|take|a|look|at|his|kin|'s|reworked|version|,|what|would|he|say|?\n`|It|looks|good|,|Sonny|,|but|you|missed|the|point|.|'\nDuring|The|Tuxedo|'s|90|minutes|of|screen|time|,|there|is|n't|one|true|`|Chan|moment|'|.\nBisset|delivers|a|game|performance|,|but|she|is|unable|to|save|the|movie|.\nWatching|Austin|Powers|in|Goldmember|is|like|binging|on|cotton|candy|.\nIt|'s|sweet|and|fluffy|at|the|time|,|but|it|may|leave|you|feeling|a|little|sticky|and|unsatisfied|.\nThe|most|anti-human|big|studio|picture|since|3000|Miles|to|Graceland|.\nThe|film|can|depress|you|about|life|itself|.\nI|'m|sure|the|filmmakers|found|this|a|remarkable|and|novel|concept|,|but|anybody|who|has|ever|seen|an|independent|film|can|report|that|it|is|instead|a|cheap|cliché|.\nThe|acting|is|fine|but|the|script|is|about|as|interesting|as|a|recording|of|conversations|at|the|Wal-Mart|checkout|line|.\nIts|weighty|themes|are|too|grave|for|youngsters|,|but|the|story|is|too|steeped|in|fairy|tales|and|other|childish|things|to|appeal|much|to|teenagers|.\nThe|plot|plummets|into|a|comedy|graveyard|before|Janice|comes|racing|to|the|rescue|in|the|final|reel|.\nSometimes|there|are|very|,|very|good|reasons|for|certain|movies|to|be|sealed|in|a|jar|and|left|on|a|remote|shelf|indefinitely|.\nAt|90|minutes|this|movie|is|short|,|but|it|feels|much|longer|.\nHere|'s|my|advice|,|Kev|.\nStart|reading|your|scripts|before|signing|that|dotted|line|.\nAn|alternately|raucous|and|sappy|ethnic|sitcom|...|you|'d|be|wise|to|send|your|regrets|.\nAn|ugly-duckling|tale|so|hideously|and|clumsily|told|it|feels|accidental|.\nUnfortunately|,|it|'s|also|not|very|good|.\nEspecially|compared|with|the|television|series|that|inspired|the|movie|.\nIt|wraps|up|a|classic|mother\\/daughter|struggle|in|recycled|paper|with|a|shiny|new|bow|and|while|the|audience|can|tell|it|'s|not|all|new|,|at|least|it|looks|pretty|.\nGlazed|with|a|tawdry|B-movie|scum|.\nThis|is|the|kind|of|movie|during|which|you|want|to|bang|your|head|on|the|seat|in|front|of|you|,|at|its|cluelessness|,|at|its|idiocy|,|at|its|utterly|misplaced|earnestness|.\nIt|winds|up|moving|in|many|directions|as|it|searches|(|vainly|,|I|think|)|for|something|fresh|to|say|.\nAll|in|all|,|Road|to|Perdition|is|more|in|love|with|strangeness|than|excellence|.\nA|big|fat|pain|.\nA|mimetic|approximation|of|better|films|like|Contempt|and|8 1\\/2|.\nUnintelligible|,|poorly|acted|,|brain-slappingly|bad|,|Harvard|Man|is|ludicrous|enough|that|it|could|become|a|cult|classic|.\nWatching|The|Powerpuff|Girls|Movie|,|my|mind|kept|returning|to|one|anecdote|for|comparison|:|the|cartoon|in|Japan|that|gave|people|seizures|.\nAn|inelegant|combination|of|two|unrelated|shorts|that|falls|far|short|of|the|director|'s|previous|work|in|terms|of|both|thematic|content|and|narrative|strength|.\nTo|build|a|feel-good|fantasy|around|a|vain|dictator-madman|is|off-putting|,|to|say|the|least|,|not|to|mention|inappropriate|and|wildly|undeserved|.\nWith|the|cheesiest|monsters|this|side|of|a|horror|spoof|,|which|They|is|n't|,|it|is|more|likely|to|induce|sleep|than|fright|.\nMild|,|meandering|teen|flick|.\nThough|its|atmosphere|is|intriguing|...|the|drama|is|finally|too|predictable|to|leave|much|of|an|impression|.\nThough|this|rude|and|crude|film|does|deliver|a|few|gut-busting|laughs|,|its|digs|at|modern|society|are|all|things|we|'ve|seen|before|.\nAlthough|it|tries|to|be|much|more|,|it|'s|really|just|another|Major|League|.\nAstonishing|is|n't|the|word|--|neither|is|incompetent|,|incoherent|or|just|plain|crap|.\nIndeed|,|none|of|these|words|really|gets|at|the|very|special|type|of|badness|that|is|Deuces|Wild|.\nOne|thing|is|for|sure|:|This|movie|does|not|tell|you|a|whole|lot|about|Lily|Chou-Chou|.\nWith|a|tone|as|variable|as|the|cinematography|,|Schaeffer|'s|film|never|settles|into|the|light-footed|enchantment|the|material|needs|,|and|the|characters|'|quirks|and|foibles|never|jell|into|charm|.\nTo|better|understand|why|this|did|n't|connect|with|me|would|require|another|viewing|,|and|I|wo|n't|be|sitting|through|this|one|again|...|that|in|itself|is|commentary|enough|.\nCuba|Gooding|Jr.|valiantly|mugs|his|way|through|Snow|Dogs|,|but|even|his|boisterous|energy|fails|to|spark|this|leaden|comedy|.\nDiane|Lane|'s|sophisticated|performance|ca|n't|rescue|Adrian|Lyne|'s|Unfaithful|from|its|sleazy|moralizing|.\nNot|at|all|clear|what|it|'s|trying|to|say|and|even|if|it|were|--|I|doubt|it|would|be|all|that|interesting|.\n(|Swimfan|)|falls|victim|to|sloppy|plotting|,|an|insultingly|unbelievable|final|act|and|a|villainess|who|is|too|crazy|to|be|interesting|.\nThis|remake|of|Lina|Wertmuller|'s|1975|eroti-comedy|might|just|be|the|biggest|husband-and-wife|disaster|since|John|and|Bo|Derek|made|the|ridiculous|Bolero|.\nSilly|,|loud|and|goofy|.\nWhy|spend|$|9|on|the|same|stuff|you|can|get|for|a|buck|or|so|in|that|greasy|little|vidgame|pit|in|the|theater|lobby|?\nThe|French|director|has|turned|out|nearly|21\\/2|hours|of|unfocused|,|excruciatingly|tedious|cinema|that|,|half|an|hour|in|,|starts|making|water|torture|seem|appealing|.\nThe|basic|premise|is|intriguing|but|quickly|becomes|distasteful|and|downright|creepy|.\nThe|Pool|drowned|me|in|boredom|.\nIt|'s|like|an|all-star|salute|to|Disney|'s|cheesy|commercialism|.\nIt|'s|hard|to|imagine|any|recent|film|,|independent|or|otherwise|,|that|makes|as|much|of|a|mess|as|this|one|.\nSome|of|the|computer|animation|is|handsome|,|and|various|amusing|sidekicks|add|much-needed|levity|to|the|otherwise|bleak|tale|,|but|overall|the|film|never|rises|above|mediocrity|.\nThere|'s|an|excellent|90-minute|film|here|;|unfortunately|,|it|runs|for|170|.\nAs|saccharine|movies|go|,|this|is|likely|to|cause|massive|cardiac|arrest|if|taken|in|large|doses|.\nDie|Another|Day|is|only|intermittently|entertaining|but|it|'s|hard|not|to|be|a|sucker|for|its|charms|,|or|perhaps|it|'s|just|impossible|not|to|feel|nostalgia|for|movies|you|grew|up|with|.\nAs|is|often|the|case|with|ambitious|,|eager|first-time|filmmakers|,|Mr.|Murray|,|a|prolific|director|of|music|videos|,|stuffs|his|debut|with|more|plot|than|it|can|comfortably|hold|.\nThe|mystery|of|Enigma|is|how|a|rich|historical|subject|,|combined|with|so|much|first-rate|talent|...|could|have|yielded|such|a|flat|,|plodding|picture|.\nIt|throws|quirky|characters|,|odd|situations|,|and|off-kilter|dialogue|at|us|,|all|as|if|to|say|,|``|Look|at|this|!\nThis|is|an|interesting|movie|!|''\nBut|the|film|itself|is|ultimately|quite|unengaging|.\nThe|inherent|limitations|of|using|a|video|game|as|the|source|material|movie|are|once|again|made|all|too|clear|in|this|schlocky|horror\\/action|hybrid|.\nIt|'s|not|only|dull|because|we|'ve|seen|(|Eddie|)|Murphy|do|the|genial-rogue|shtick|to|death|,|but|because|the|plot|is|equally|hackneyed|.\nAvary|'s|film|never|quite|emerges|from|the|shadow|of|Ellis|'|book|.\nA|poorly|scripted|,|preachy|fable|that|forgets|about|unfolding|a|coherent|,|believable|story|in|its|zeal|to|spread|propaganda|.\nWhile|it|is|interesting|to|witness|the|conflict|from|the|Palestinian|side|,|Longley|'s|film|lacks|balance|...|and|fails|to|put|the|struggle|into|meaningful|historical|context|.\nWoo|has|as|much|right|to|make|a|huge|action|sequence|as|any|director|,|but|how|long|will|filmmakers|copy|the|``|Saving|Private|Ryan|''|battle|scenes|before|realizing|Steven|Spielberg|got|it|right|the|first|time|?\nIt|'s|sincere|to|a|fault|,|but|,|unfortunately|,|not|very|compelling|or|much|fun|.\n...|Jones|,|despite|a|definitely|distinctive|screen|presence|,|just|is|n't|able|to|muster|for|a|movie|that|,|its|title|notwithstanding|,|should|have|been|a|lot|nastier|if|it|wanted|to|fully|capitalize|on|its|lead|'s|specific|gifts|.\nThis|follow-up|seems|so|similar|to|the|1953|Disney|classic|that|it|makes|one|long|for|a|geriatric|Peter|.\nWhy|,|you|may|ask|,|why|should|you|buy|the|movie|milk|when|the|TV|cow|is|free|?\nThere|'s|no|good|answer|to|that|one|.\nThis|slow-moving|Swedish|film|offers|not|even|a|hint|of|joy|,|preferring|to|focus|on|the|humiliation|of|Martin|as|he|defecates|in|bed|and|urinates|on|the|plants|at|his|own|birthday|party|.\nA|muddled|limp|biscuit|of|a|movie|,|a|vampire|soap|opera|that|does|n't|make|much|sense|even|on|its|own|terms|.\nThere|'s|the|plot|,|and|a|maddeningly|insistent|and|repetitive|piano|score|that|made|me|want|to|scream|.\nThis|is|a|movie|so|insecure|about|its|capacity|to|excite|that|it|churns|up|not|one|but|two|flagrantly|fake|thunderstorms|to|underscore|the|action|.\nThis|is|amusing|for|about|three|minutes|.\nKlein|,|charming|in|comedies|like|American|Pie|and|dead-on|in|Election|,|delivers|one|of|the|saddest|action|hero|performances|ever|witnessed|.\nIt|'s|rare|to|see|a|movie|that|takes|such|a|speedy|swan|dive|from|``|promising|''|to|``|interesting|''|to|``|familiar|''|before|landing|squarely|on|``|stupid|''|.\nThis|is|the|sort|of|low-grade|dreck|that|usually|goes|straight|to|video|--|with|a|lousy|script|,|inept|direction|,|pathetic|acting|,|poorly|dubbed|dialogue|and|murky|cinematography|,|complete|with|visible|boom|mikes|.\nThe|direction|occasionally|rises|to|the|level|of|marginal|competence|,|but|for|most|of|the|film|it|is|hard|to|tell|who|is|chasing|who|or|why|.\nThere|are|few|things|more|frustrating|to|a|film|buff|than|seeing|an|otherwise|good|movie|marred|beyond|redemption|by|a|disastrous|ending|.\nIt|wo|n't|harm|anyone|,|but|neither|can|I|think|of|a|very|good|reason|to|rush|right|out|and|see|it|.\nAfter|all|,|it|'ll|probably|be|in|video|stores|by|Christmas|,|and|it|might|just|be|better|suited|to|a|night|in|the|living|room|than|a|night|at|the|movies|.\nLooks|more|like|a|travel-agency|video|targeted|at|people|who|like|to|ride|bikes|topless|and|roll|in|the|mud|than|a|worthwhile|glimpse|of|independent-community|guiding|lights|.\nGiven|too|much|time|to|consider|the|looseness|of|the|piece|,|the|picture|begins|to|resemble|the|shapeless|,|grasping|actors|'|workshop|that|it|is|.\nThey|kept|much|of|the|plot|but|jettisoned|the|stuff|that|would|make|this|a|moving|experience|for|people|who|have|n't|read|the|book|.\nJust|because|A|Walk|to|Remember|is|shrewd|enough|to|activate|girlish|tear|ducts|does|n't|mean|it|'s|good|enough|for|our|girls|.\n(|Carvey|'s|)|characters|are|both|overplayed|and|exaggerated|,|but|then|again|,|subtlety|has|never|been|his|trademark|.\nIt|'s|mildly|interesting|to|ponder|the|peculiar|American|style|of|justice|that|plays|out|here|,|but|it|'s|so|muddled|and|derivative|that|few|will|bother|thinking|it|all|through|.\nThis|dreadfully|earnest|inversion|of|the|Concubine|love|triangle|eschews|the|previous|film|'s|historical|panorama|and|roiling|pathos|for|bug-eyed|mugging|and|gay-niche|condescension|.\nBrown|'s|saga|,|like|many|before|his|,|makes|for|snappy|prose|but|a|stumblebum|of|a|movie|.\nThe|boys|'|sparring|,|like|the|succession|of|blows|dumped|on|Guei|,|wears|down|the|story|'s|more|cerebral|,|and|likable|,|plot|elements|.\nThe|script|by|Vincent|R.|Nebrida|...|tries|to|cram|too|many|ingredients|into|one|small|pot|.\nThe|story|is|so|light|and|sugary|that|were|it|a|Macy|'s|Thanksgiving|Day|Parade|balloon|,|extra|heavy-duty|ropes|would|be|needed|to|keep|it|from|floating|away|.\nOedekerk|mugs|mercilessly|,|and|the|genuinely|funny|jokes|are|few|and|far|between|.\nSince|Dahmer|resorts|to|standard|slasher|flick|thrills|when|it|should|be|most|in|the|mind|of|the|killer|,|it|misses|a|major|opportunity|to|be|truly|revelatory|about|his|psyche|.\nOnly|those|most|addicted|to|film|violence|in|all|its|forms|will|find|anything|here|to|appreciate|.\nCold|and|scattered|,|Minority|Report|commands|interest|almost|solely|as|an|exercise|in|gorgeous|visuals|.\nThat|'s|not|vintage|Spielberg|and|that|,|finally|,|is|minimally|satisfying|.\nEvery|now|and|again|,|a|movie|comes|along|to|remind|us|of|how|very|bad|a|motion|picture|can|truly|be|.\nFrank|McKlusky|C.I.|is|that|movie|!\nIt|'s|not|difficult|to|spot|the|culprit|early-on|in|this|predictable|thriller|.\n...|a|mostly|boring|affair|with|a|confusing|sudden|finale|that|'s|likely|to|irk|viewers|.\nThe|trappings|of|I|Spy|are|so|familiar|you|might|as|well|be|watching|a|rerun|.\nWhat|starts|off|as|a|potentially|incredibly|twisting|mystery|becomes|simply|a|monster|chase|film|.\nIn|the|wake|of|Saving|Private|Ryan|,|Black|Hawk|Down|and|We|Were|Soldiers|,|you|are|likely|to|be|as|heartily|sick|of|mayhem|as|Cage|'s|war-weary|marine|.\nIt|is|messy|,|uncouth|,|incomprehensible|,|vicious|and|absurd|.\nReally|does|feel|like|a|short|stretched|out|to|feature|length|.\nHampered|--|no|,|paralyzed|--|by|a|self-indulgent|script|...|that|aims|for|poetry|and|ends|up|sounding|like|satire|.\nCheap|,|vulgar|dialogue|and|a|plot|that|crawls|along|at|a|snail|'s|pace|.\nAnd|if|you|appreciate|the|one-sided|theme|to|Lawrence|'s|over-indulgent|tirade|,|then|knock|yourself|out|and|enjoy|the|big|screen|postcard|that|is|a|self-glorified|Martin|Lawrence|lovefest|.\nIf|you|are|willing|to|do|this|,|then|you|so|crazy|!\nDirected|without|the|expected|flair|or|imagination|by|Hong|Kong|master|John|Woo|,|Windtalkers|airs|just|about|every|cliche|in|the|war|movie|compendium|across|its|indulgent|two-hour-and-fifteen-minute|length|.\nIt|'s|a|very|tasteful|rock|and|roll|movie|.\nYou|could|put|it|on|a|coffee|table|anywhere|.\nThe|movie|is|loaded|with|good|intentions|,|but|in|his|zeal|to|squeeze|the|action|and|our|emotions|into|the|all-too-familiar|dramatic|arc|of|the|Holocaust|escape|story|,|Minac|drains|his|movie|of|all|individuality|.\nAn|infuriating|film|.\nJust|when|you|think|you|are|making|sense|of|it|,|something|happens|that|tells|you|there|is|no|sense|.\nThe|entire|movie|is|so|formulaic|and|forgettable|that|it|'s|hardly|over|before|it|begins|to|fade|from|memory|.\nThe|setting|turns|out|to|be|more|interesting|than|any|of|the|character|dramas|,|which|never|reach|satisfying|conclusions|.\nAs|an|entertainment|destination|for|the|general|public|,|Kung|Pow|sets|a|new|benchmark|for|lameness|.\nThis|misty-eyed|Southern|nostalgia|piece|,|in|treading|the|line|between|sappy|and|sanguine|,|winds|up|mired|in|tear-drenched|quicksand|.\nAs|pure|over-the-top|trash|,|any|John|Waters|movie|has|it|beat|by|a|country|mile|.\nWendigo|wants|to|be|a|monster|movie|for|the|art-house|crowd|,|but|it|falls|into|the|trap|of|pretention|almost|every|time|.\nBigelow|offers|some|flashy|twists|and|turns|that|occasionally|fortify|this|turgid|fable|.\nBut|for|the|most|part|,|The|Weight|of|Water|comes|off|as|a|two-way|time-switching|myopic|mystery|that|stalls|in|its|lackluster|gear|of|emotional|blandness|.\nThis|film|biggest|problem|?\nNo|laughs|.\nLess-than-compelling|documentary|of|a|Yiddish|theater|clan|.\nThat|the|Chuck|Norris|``|grenade|gag|''|occurs|about|7|times|during|Windtalkers|is|a|good|indication|of|how|serious-minded|the|film|is|.\nViewers|are|asked|so|often|to|suspend|belief|that|were|it|not|for|Holm|'s|performance|,|the|film|would|be|a|total|washout|.\nIt|'s|not|exactly|worth|the|bucks|to|expend|the|full|price|for|a|date|,|but|when|it|comes|out|on|video|,|it|'s|well|worth|a|rental|.\nI|ca|n't|begin|to|tell|you|how|tedious|,|how|resolutely|unamusing|,|how|thoroughly|unrewarding|all|of|this|is|,|and|what|a|reckless|squandering|of|four|fine|acting|talents|...\nEverybody|loves|a|David|and|Goliath|story|,|and|this|one|is|told|almost|entirely|from|David|'s|point|of|view|.\nThrow|Smoochy|from|the|train|!\nEventually|,|they|will|have|a|showdown|,|but|,|by|then|,|your|senses|are|as|mushy|as|peas|and|you|do|n't|care|who|fires|the|winning|shot|.\nIrwin|and|his|director|never|come|up|with|an|adequate|reason|why|we|should|pay|money|for|what|we|can|get|on|television|for|free|.\nA|light|,|engaging|comedy|that|fumbles|away|almost|all|of|its|accumulated|enjoyment|with|a|crucial|third|act|miscalculation|.\nCedar|somewhat|defuses|this|provocative|theme|by|submerging|it|in|a|hoary|love|triangle|.\nTo|paraphrase|a|line|from|another|Dickens|'|novel|,|Nicholas|Nickleby|is|too|much|like|a|fragment|of|an|underdone|potato|.\nThe|actresses|may|have|worked|up|a|back|story|for|the|women|they|portray|so|convincingly|,|but|viewers|do|n't|get|enough|of|that|background|for|the|characters|to|be|involving|as|individuals|rather|than|types|.\nThe|result|,|however|well-intentioned|,|is|ironically|just|the|sort|of|disposable|,|kitchen-sink|homage|that|illustrates|why|the|whole|is|so|often|less|than|the|sum|of|its|parts|in|today|'s|Hollywood|.\nAn|extremely|unpleasant|film|.\nA|movie|just|for|Friday|fans|,|critics|be|damned|.\nIf|you|already|like|this|sort|of|thing|,|this|is|that|sort|of|thing|all|over|again|.\nA|sincere|but|dramatically|conflicted|gay|coming-of-age|tale|.\nWait|for|it|to|hit|cable|.\nUltimately|feels|like|just|one|more|in|the|long|line|of|films|this|year|about|the|business|of|making|movies|.\nNothing|but|one|relentlessly|depressing|situation|after|another|for|its|entire|running|time|,|something|that|you|could|easily|be|dealing|with|right|now|in|your|lives|.\n77|minutes|of|Pokemon|may|not|last|4ever|,|it|just|seems|like|it|does|.\nMy|only|wish|is|that|Celebi|could|take|me|back|to|a|time|before|I|saw|this|movie|and|I|could|just|skip|it|.\nThe|one|not-so-small|problem|with|Expecting|is|that|the|entire|exercise|has|no|real|point|.\nA|movie|you|observe|,|rather|than|one|you|enter|into|.\n(|At|least|)|Moore|is|a|real|charmer|.\nJohn|Carlen|'s|script|is|full|of|unhappy|,|two-dimensional|characters|who|are|anything|but|compelling|.\nLaBute|ca|n't|avoid|a|fatal|mistake|in|the|modern|era|:|He|'s|changed|the|male|academic|from|a|lower-class|Brit|to|an|American|,|a|choice|that|upsets|the|novel|'s|exquisite|balance|and|shreds|the|fabric|of|the|film|.\nThe|notion|of|deleting|emotion|from|people|,|even|in|an|advanced|Prozac|Nation|,|is|so|insanely|dysfunctional|that|the|rampantly|designed|Equilibrium|becomes|a|concept|doofus|.\nStale|first|act|,|Scrooge|story|,|blatant|product|placement|,|some|very|good|comedic|songs|,|strong|finish|,|dumb|fart|jokes|.\nUnsurprisingly|,|the|way|this|all|works|out|makes|the|women|look|more|like|stereotypical|caretakers|and|moral|teachers|,|instead|of|serious|athletes|.\nA|film|that|loses|sight|of|its|own|story|.\nAdam|Sandler|'s|Eight|Crazy|Nights|grows|on|you|--|like|a|rash|.\nThe|big-screen|Scooby|makes|the|silly|original|cartoon|seem|smart|and|well-crafted|in|comparison|.\nFew|of|the|increasingly|far-fetched|events|that|first-time|writer-director|Neil|Burger|follows|up|with|are|terribly|convincing|,|which|is|a|pity|,|considering|Barry|'s|terrific|performance|.\nGets|better|after|Foster|leaves|that|little|room|.\nThe|movie|is|as|padded|as|Allen|'s|jelly|belly|.\nResident|Evil|is|n't|a|product|of|its|cinematic|predecessors|so|much|as|an|MTV|,|sugar|hysteria|,|and|PlayStation|cocktail|.\nA|rather|average|action|film|that|benefits|from|several|funny|moments|supplied|by|Epps|.\n...|unspeakably|,|unbearably|dull|,|featuring|reams|of|flatly|delivered|dialogue|and|a|heroine|who|comes|across|as|both|shallow|and|dim-witted|.\nResembles|a|soft|porn|Brian|De|Palma|pastiche|.\nBluto|Blutarsky|,|we|miss|you|.\nInnocuous|enough|to|make|even|Jean-Claude|Van|Damme|look|good|.\nIt|'s|a|glorified|sitcom|,|and|a|long|,|unfunny|one|at|that|.\nWoody|Allen|can|write|and|deliver|a|one|liner|as|well|as|anybody|.\nBut|I|had|a|lot|of|problems|with|this|movie|.\nDevoid|of|any|of|the|qualities|that|made|the|first|film|so|special|.\nAll|movie|long|,|City|by|the|Sea|swings|from|one|approach|to|the|other|,|but|in|the|end|,|it|stays|in|formula|--|which|is|a|waste|of|De|Niro|,|McDormand|and|the|other|good|actors|in|the|cast|.\nPlotless|collection|of|moronic|stunts|is|by|far|the|worst|movie|of|the|year|.\nHowever|sincere|it|may|be|,|The|Rising|Place|never|quite|justifies|its|own|existence|.\nParker|updates|the|setting|in|an|attempt|to|make|the|film|relevant|today|,|without|fully|understanding|what|it|was|that|made|the|story|relevant|in|the|first|place|.\nIt|'s|sort|of|a|21st|century|morality|play|with|a|Latino|hip|hop|beat|.\nBut|the|second|half|of|the|movie|really|goes|downhill|.\nPaxton|'s|uneven|directorial|debut|fails|to|unlock|the|full|potential|of|what|is|in|many|ways|a|fresh|and|dramatically|substantial|spin|on|the|genre|.\nThe|script|becomes|lifeless|and|falls|apart|like|a|cheap|lawn|chair|.\nThe|script|falls|back|on|too|many|tried-and-true|shenanigans|that|hardly|distinguish|it|from|the|next|teen|comedy|.\nThe|film|starts|promisingly|,|but|the|ending|is|all|too|predictable|and|far|too|cliched|to|really|work|.\nLet|'s|issue|a|moratorium|,|effective|immediately|,|on|treacly|films|about|inspirational|prep-school|professors|and|the|children|they|so|heartwarmingly|motivate|.\nIt|'s|the|element|of|condescension|,|as|the|filmmakers|look|down|on|their|working-class|subjects|from|their|lofty|perch|,|that|finally|makes|Sex|With|Strangers|,|which|opens|today|in|the|New|York|metropolitan|area|,|so|distasteful|.\nAlternately|frustrating|and|rewarding|.\nIt|'s|impossible|to|even|categorize|this|as|a|smutty|guilty|pleasure|.\nDespite|suffering|a|sense-of-humour|failure|,|The|Man|Who|Wrote|Rocky|does|not|deserve|to|go|down|with|a|ship|as|leaky|as|this|.\nSwinging|,|the|film|makes|it|seem|,|is|not|a|hobby|that|attracts|the|young|and|fit|.\nOr|intelligent|.\nThe|most|memorable|moment|was|when|Green|threw|medical|equipment|at|a|window|;|not|because|it|was|particularly|funny|,|but|because|I|had|a|serious|urge|to|grab|the|old|lady|at|the|end|of|my|aisle|'s|walker|and|toss|it|at|the|screen|in|frustration|.\nSee|Clockstoppers|if|you|have|nothing|better|to|do|with|94|minutes|.\nBut|be|warned|,|you|too|may|feel|time|has|decided|to|stand|still|.\nOr|that|the|battery|on|your|watch|has|died|.\nSuffers|from|over-familiarity|since|hit-hungry|British|filmmakers|have|strip-mined|the|Monty|formula|mercilessly|since|1997|.\nThere|are|enough|throwaway|references|to|faith|and|rainbows|to|plant|smile-button|faces|on|that|segment|of|the|populace|that|made|A|Walk|to|Remember|a|niche|hit|.\nYes|,|I|have|given|this|movie|a|rating|of|zero|.\nBut|fans|of|the|show|should|not|consider|this|a|diss|.\nConsider|it|`|perfection|.|'\nThe|cumulative|effect|of|the|movie|is|repulsive|and|depressing|.\nChildren|and|adults|enamored|of|all|things|Pokemon|wo|n't|be|disappointed|.\nI|do|n't|even|care|that|there|'s|no|plot|in|this|Antonio|Banderas-Lucy|Liu|faceoff|.\nIt|'s|still|terrible|!\nChildren|of|the|Century|,|though|well|dressed|and|well|made|,|ultimately|falls|prey|to|the|contradiction|that|afflicts|so|many|movies|about|writers|.\nIt|'s|not|so|much|a|movie|as|a|joint|promotion|for|the|National|Basketball|Association|and|teenaged|rap|and|adolescent|poster-boy|Lil|'|Bow|Wow|.\nPeralta|'s|mythmaking|could|have|used|some|informed|,|adult|hindsight|.\nA|close-to-solid|espionage|thriller|with|the|misfortune|of|being|released|a|few|decades|too|late|.\nCloaks|a|familiar|anti-feminist|equation|(|career|-|kids|=|misery|)|in|tiresome|romantic-comedy|duds|.\nThe|Good|Girl|is|a|film|in|which|the|talent|is|undeniable|but|the|results|are|underwhelming|.\nJust|a|collection|of|this|and|that|--|whatever|fills|time|--|with|no|unified|whole|.\nThe|animation|and|game|phenomenon|that|peaked|about|three|years|ago|is|actually|dying|a|slow|death|,|if|the|poor|quality|of|Pokemon|4|Ever|is|any|indication|.\nOnly|about|as|sexy|and|dangerous|as|an|actress|in|a|role|that|reminds|at|every|turn|of|Elizabeth|Berkley|'s|flopping|dolphin-gasm|.\nKids|who|are|into|this|Thornberry|stuff|will|probably|be|in|wedgie|heaven|.\nAnyone|else|who|may|,|for|whatever|reason|,|be|thinking|about|going|to|see|this|movie|is|hereby|given|fair|warning|.\nMr.|Soderbergh|'s|direction|and|visual|style|struck|me|as|unusually|and|unimpressively|fussy|and|pretentious|.\nDo|you|say|``|hi|''|to|your|lover|when|you|wake|up|in|the|morning|?\nIt|makes|me|feel|weird|\\/|Thinking|about|all|the|bad|things|in|the|world|\\/|Like|puppies|with|broken|legs|\\/|And|butterflies|that|die|\\/|And|movies|starring|pop|queens\nDirector|Tom|Dey|demonstrated|a|knack|for|mixing|action|and|idiosyncratic|humor|in|his|charming|2000|debut|Shanghai|Noon|,|but|Showtime|'s|uninspired|send-up|of|TV|cop|show|cliches|mostly|leaves|him|shooting|blanks|.\n`|Yes|,|that|'s|right|:|it|'s|Forrest|Gump|,|Angel|Of|Death|.|'\nA|wildly|erratic|drama|with|sequences|that|make|you|wince|in|embarrassment|and|others|,|thanks|to|the|actors|,|that|are|quite|touching|.\nWhile|easier|to|sit|through|than|most|of|Jaglom|'s|self-conscious|and|gratingly|irritating|films|,|it|'s|still|tainted|by|cliches|,|painful|improbability|and|murky|points|.\nAbout|as|enjoyable|,|I|would|imagine|,|as|searching|for|a|quarter|in|a|giant|pile|of|elephant|feces|...|positively|dreadful|.\nA|generic|international|version|of|a|typical|American|horror|film|.\n...|while|certainly|clever|in|spots|,|this|too-long|,|spoofy|update|of|Shakespeare|'s|Macbeth|does|n't|sustain|a|high|enough|level|of|invention|.\nLucas|has|in|fact|come|closer|than|anyone|could|desire|to|the|cheap|,|graceless|,|hackneyed|sci-fi|serials|of|the|'30s|and|'40s|.\nThere|'s|a|lot|of|good|material|here|,|but|there|'s|also|a|lot|of|redundancy|and|unsuccessful|crudeness|accompanying|it|.\nAbsurdities|and|clichés|accumulate|like|lint|in|a|fat|man|'s|navel|.\nIf|you|think|it|'s|a|riot|to|see|Rob|Schneider|in|a|young|woman|'s|clothes|,|then|you|'ll|enjoy|The|Hot|Chick|.\nThe|sheer|dumbness|of|the|plot|(|other|than|its|one|good|idea|)|and|the|movie|'s|inescapable|air|of|sleaziness|get|you|down|.\nStrangely|comes|off|as|a|kingdom|more|mild|than|wild|.\nThe|next|big|thing|'s|not-so-big|(|and|not-so-hot|)|directorial|debut|.\nYet|another|iteration|of|what|'s|become|one|of|the|movies|'|creepiest|conventions|,|in|which|the|developmentally|disabled|are|portrayed|with|almost|supernatural|powers|to|humble|,|teach|and|ultimately|redeem|their|mentally|``|superior|''|friends|,|family|...\nBond-inspired|?\nCertainly|.\nLikely|to|have|decades|of|life|as|a|classic|movie|franchise|?\nLet|'s|hope|not|.\nThis|flat|run|at|a|hip-hop|Tootsie|is|so|poorly|paced|you|could|fit|all|of|Pootie|Tang|in|between|its|punchlines|.\nDavis|has|energy|,|but|she|does|n't|bother|to|make|her|heroine|'s|book|sound|convincing|,|the|gender-war|ideas|original|,|or|the|comic|scenes|fly|.\nSurprisingly|,|considering|that|Baird|is|a|former|film|editor|,|the|movie|is|rather|choppy|.\nNone|of|this|is|very|original|,|and|it|is|n't|particularly|funny|.\n...|a|bland|murder-on-campus|yawner|.\nA|humorless|journey|into|a|philosophical|void|.\nThese|two|are|generating|about|as|much|chemistry|as|an|Iraqi|factory|poised|to|receive|a|UN|inspector|.\nJust|as|the|lousy|Tarantino|imitations|have|subsided|,|here|comes|the|first|lousy|Guy|Ritchie|imitation|.\nA|passable|romantic|comedy|,|in|need|of|another|couple|of|passes|through|the|word|processor|.\nThe|movie|attempts|to|mine|laughs|from|a|genre|--|the|gangster\\/crime|comedy|--|that|wore|out|its|welcome|with|audiences|several|years|ago|,|and|its|cutesy|reliance|on|movie-specific|cliches|is|n't|exactly|endearing|.\nshows|Holmes|has|the|screen|presence|to|become|a|major-league|leading|lady|,|(|but|)|the|movie|itself|is|an|underachiever|,|a|psychological|mystery|that|takes|its|sweet|time|building|to|a|climax|that|'s|scarcely|a|surprise|by|the|time|it|arrives|.\nUltimately|...|the|movie|is|too|heady|for|children|,|and|too|preachy|for|adults|.\nIt|'s|just|a|little|too|self-satisfied|.\nClever|but|not|especially|compelling|.\nMcKay|seems|embarrassed|by|his|own|invention|and|tries|to|rush|through|the|intermediary|passages|,|apparently|hoping|that|the|audience|will|not|notice|the|glaring|triteness|of|the|plot|device|he|has|put|in|service|.\nA|piece|of|mildly|entertaining|,|inoffensive|fluff|that|drifts|aimlessly|for|90|minutes|before|lodging|in|the|cracks|of|that|ever-growing|category|:|unembarrassing|but|unmemorable|.\nLaBute|was|more|fun|when|his|characters|were|torturing|each|other|psychologically|and|talking|about|their|genitals|in|public|.\nThe|movie|weighs|no|more|than|a|glass|of|flat|champagne|.\nThe|problem|with|ANTWONE|FISHER|is|that|it|has|a|screenplay|written|by|Antwone|Fisher|based|on|the|book|by|Antwone|Fisher|.\nAlarms|for|Duvall|'s|throbbing|sincerity|and|his|elderly|propensity|for|patting|people|while|he|talks|.\nWhat|little|grace|(|Rifkin|'s|)|tale|of|precarious|skid-row|dignity|achieves|is|pushed|into|the|margins|by|predictable|plotting|and|tiresome|histrionics|.\nTries|to|work|in|the|same|vein|as|the|brilliance|of|Animal|House|but|instead|comes|closer|to|the|failure|of|the|third|Revenge|of|the|Nerds|sequel|.\nUnfortunately|,|Kapur|modernizes|A.E.W.|Mason|'s|story|to|suit|the|sensibilities|of|a|young|American|,|a|decision|that|plucks|``|The|Four|Feathers|''|bare|.\n...|what|a|banal|bore|the|preachy|Circuit|turns|out|to|be\nFalsehoods|pile|up|,|undermining|the|movie|'s|reality|and|stifling|its|creator|'s|comic|voice|.\nA|mechanical|action-comedy|whose|seeming|purpose|is|to|market|the|charismatic|Jackie|Chan|to|even|younger|audiences|.\nOne|of|the|most|incoherent|features|in|recent|memory|.\nLow|rent|from|frame|one|.\nEight|Legged|Freaks|?\nNo|big|hairy|deal|.\nThe|issues|are|presented|in|such|a|lousy|way|,|complete|with|some|of|the|year|'s|(|unintentionally|)|funniest|moments|,|that|it|'s|impossible|to|care|.\nLaggard|drama|wending|its|way|to|an|uninspired|philosophical|epiphany|.\nThe|respective|charms|of|Sandra|Bullock|and|Hugh|Grant|have|worn|threadbare|.\n`|This|movie|sucks|.|'\nNone|of|this|so-called|satire|has|any|sting|to|it|,|as|if|Woody|is|afraid|of|biting|the|hand|that|has|finally|,|to|some|extent|,|warmed|up|to|him|.\nA|few|nonbelievers|may|rethink|their|attitudes|when|they|see|the|joy|the|characters|take|in|this|creed|,|but|skeptics|are|n't|likely|to|enter|the|theater|.\nBad|in|such|a|bizarre|way|that|it|'s|almost|worth|seeing|,|if|only|to|witness|the|crazy|confluence|of|purpose|and|taste|.\nThere|'s|more|repetition|than|creativity|throughout|the|movie|.\nHugh|Grant|'s|act|is|so|consuming|that|sometimes|it|'s|difficult|to|tell|who|the|other|actors|in|the|movie|are|.\nAlthough|the|sequel|has|all|the|outward|elements|of|the|original|,|the|first|film|'s|lovely|flakiness|is|gone|,|replaced|by|the|forced|funniness|found|in|the|dullest|kiddie|flicks|.\nI|'ve|had|more|interesting|--|and|,|dare|I|say|,|thematically|complex|--|bowel|movements|than|this|long-on-the-shelf|,|point-and-shoot|exercise|in|gimmicky|crime|drama|.\nWhat|we|get|...|is|Caddyshack|crossed|with|the|Loyal|Order|of|Raccoons|.\nThe|jokes|are|flat|,|and|the|action|looks|fake|.\nWhen|a|movie|asks|you|to|feel|sorry|for|Mick|Jagger|'s|sex|life|,|it|already|has|one|strike|against|it|.\nThere|are|now|two|signs|that|M.|Night|Shyamalan|'s|debut|feature|sucked|up|all|he|has|to|give|to|the|mystic|genres|of|cinema|:|Unbreakable|and|Signs|.\n...|hokey|art|house|pretension|.\n...|a|weak|and|ineffective|ghost|story|without|a|conclusion|or|pay|off|.\nGussied|up|with|so|many|distracting|special|effects|and|visual|party|tricks|that|it|'s|not|clear|whether|we|'re|supposed|to|shriek|or|laugh|.\nPlodding|,|poorly|written|,|murky|and|weakly|acted|,|the|picture|feels|as|if|everyone|making|it|lost|their|movie|mojo|.\nThis|is|a|fudged|opportunity|of|gigantic|proportions|--|a|lunar|mission|with|no|signs|of|life|.\nA|baffling|subplot|involving|smuggling|drugs|inside|Danish|cows|falls|flat|,|and|if|you|'re|going|to|alter|the|Bard|'s|ending|,|you|'d|better|have|a|good|alternative|.\nSoderbergh|seems|capable|only|of|delivering|artfully|lighted|,|earnest|inquiries|that|lack|the|kind|of|genuine|depth|that|would|make|them|redeemable|.\nThe|only|thing|that|distinguishes|a|Randall|Wallace|film|from|any|other|is|the|fact|that|there|is|nothing|distinguishing|in|a|Randall|Wallace|film|.\nSilly|stuff|,|all|mixed|up|together|like|a|term|paper|from|a|kid|who|ca|n't|quite|distinguish|one|sci-fi|work|from|another|.\nThere|is|so|much|plodding|sensitivity|.\nThe|town|has|kind|of|an|authentic|feel|,|but|each|one|of|these|people|stand|out|and|everybody|else|is|in|the|background|and|it|just|seems|manufactured|to|me|and|artificial|.\n...|too|sappy|for|its|own|good|.\nCircuit|queens|wo|n't|learn|a|thing|,|they|'ll|be|too|busy|cursing|the|film|'s|strategically|placed|white|sheets|.\nAs|an|actress|,|Madonna|is|one|helluva|singer|.\nAs|the|Mediterranean|sparkles|,|`|Swept|Away|'|sinks|.\nEvery|so|often|a|film|comes|along|that|is|so|insanely|stupid|,|so|awful|in|so|many|ways|that|watching|it|leaves|you|giddy|.\nHalf|Past|Dead|is|just|such|an|achievement|.\nExpanded|to|65|minutes|for|theatrical|release|,|it|still|feels|somewhat|unfinished|.\nIt|all|looks|and|plays|like|a|$|40|million|version|of|a|game|you|'re|more|likely|to|enjoy|on|a|computer|.\n(|Javier|Bardem|is|)|one|of|the|few|reasons|to|watch|the|film|,|which|director|Gerardo|Vera|has|drenched|in|swoony|music|and|fever-pitched|melodrama|.\nFeels|shrill|,|simple|and|soapy|.\nAdults|,|other|than|the|parents|...|will|be|hard|pressed|to|succumb|to|the|call|of|the|wild|.\nBrady|achieves|the|remarkable|feat|of|squandering|a|topnotch|foursome|of|actors|...|by|shoving|them|into|every|clichéd|white-trash|situation|imaginable|.\nIn|the|name|of|an|allegedly|inspiring|and|easily|marketable|flick|,|The|Emperor|'s|Club|turns|a|blind|eye|to|the|very|history|it|pretends|to|teach|.\nNo|amount|of|blood|and|disintegrating|vampire|cadavers|can|obscure|this|movie|'s|lack|of|ideas|.\nA|direct-to-void|release|,|heading|nowhere|.\nTypical|animé|,|with|cheapo|animation|(|like|Saturday|morning|TV|in|the|'60s|)|,|a|complex|sword-and-sorcery|plot|and|characters|who|all|have|big|round|eyes|and|Japanese|names|.\nBelow|is|well|below|expectations|.\nAt|no|point|during|K-19|:|The|Widowmaker|did|this|viewer|feel|enveloped|in|a|story|that|,|though|meant|to|be|universal|in|its|themes|of|loyalty|,|courage|and|dedication|to|a|common|goal|,|never|seems|to|leave|the|lot|.\n...|standard|guns|versus|martial|arts|cliche|with|little|new|added|.\nEmpire|ca|n't|make|up|its|mind|whether|it|wants|to|be|a|gangster|flick|or|an|art|film|.\nIt|does|n't|work|as|either|.\nGiven|the|fact|that|virtually|no|one|is|bound|to|show|up|at|theatres|for|it|,|the|project|should|have|been|made|for|the|tube|.\nPossession|is|in|the|end|an|honorable|,|interesting|failure|.\nIt|falls|far|short|of|poetry|,|but|it|'s|not|bad|prose|.\nJonathan|Parker|'s|Bartleby|should|have|been|the|be-all-end-all|of|the|modern-office|anomie|films|.\nThere|may|have|been|a|good|film|in|``|Trouble|Every|Day|,|''|but|it|is|not|what|is|on|the|screen|.\nUnfortunately|,|Carvey|'s|rubber-face|routine|is|no|match|for|the|insipid|script|he|has|crafted|with|Harris|Goldberg|.\nViewed|as|a|comedy|,|a|romance|,|a|fairy|tale|,|or|a|drama|,|there|'s|nothing|remotely|triumphant|about|this|motion|picture|.\nThere|'s|something|unintentionally|comic|in|the|film|'s|drumbeat|about|authenticity|,|given|the|stale|plot|and|pornographic|way|the|film|revels|in|swank|apartments|,|clothes|and|parties|.\nThe|Master|of|Disguise|is|funny|--|not|``|ha|ha|''|funny|,|``|dead|circus|performer|''|funny|.\nAnd|for|all|the|wrong|reasons|besides|.\nA|zippy|96|minutes|of|mediocre|special|effects|,|hoary|dialogue|,|fluxing|accents|,|and|--|worst|of|all|--|silly-looking|Morlocks|.\nA|75-minute|sample|of|puerile|rubbish|that|is|listless|,|witless|,|and|devoid|of|anything|resembling|humor|.\nYou|leave|feeling|like|you|'ve|endured|a|long|workout|without|your|pulse|ever|racing|.\nThe|waterlogged|script|plumbs|uncharted|depths|of|stupidity|,|incoherence|and|sub-sophomoric|sexual|banter|.\nWith|McConaughey|in|an|entirely|irony-free|zone|and|Bale|reduced|mainly|to|batting|his|sensitive|eyelids|,|there|'s|not|enough|intelligence|,|wit|or|innovation|on|the|screen|to|attract|and|sustain|an|older|crowd|.\nIt|'s|the|type|of|stunt|the|Academy|loves|:|a|powerful|political|message|stuffed|into|an|otherwise|mediocre|film|.\nIn|theory|,|a|middle-aged|romance|pairing|Clayburgh|and|Tambor|sounds|promising|,|but|in|practice|it|'s|something|else|altogether|--|clownish|and|offensive|and|nothing|at|all|like|real|life|.\nSo|mind-numbingly|awful|that|you|hope|Britney|wo|n't|do|it|one|more|time|,|as|far|as|movies|are|concerned|.\nThe|images|are|usually|abbreviated|in|favor|of|mushy|obviousness|and|telegraphed|pathos|,|particularly|where|Whitaker|'s|misfit|artist|is|concerned|.\nIf|Welles|was|unhappy|at|the|prospect|of|the|human|race|splitting|in|two|,|he|probably|would|n't|be|too|crazy|with|his|great-grandson|'s|movie|splitting|up|in|pretty|much|the|same|way|.\nSets|animation|back|30|years|,|musicals|back|40|years|and|Judaism|back|at|least|50|.\nWeirdly|,|Broomfield|has|compelling|new|material|but|he|does|n't|unveil|it|until|the|end|,|after|endless|scenes|of|him|wheedling|reluctant|witnesses|and|pointing|his|camera|through|the|smeared|windshield|of|his|rental|car|.\nMight|best|be|enjoyed|as|a|daytime|soaper|.\neventually|arrives|at|its|heart|,|as|simple|self-reflection|meditation|.\nA|showcase|for|both|the|scenic|splendor|of|the|mountains|and|for|legendary|actor|Michel|Serrault|,|the|film|is|less|successful|on|other|levels|.\nBoy|oh|boy|,|it|'s|a|howler|.\nA|few|pieces|of|the|film|buzz|and|whir|;|very|little|of|it|actually|clicks|.\nThe|thing|just|never|gets|off|the|ground|.\n...|contains|very|few|laughs|and|even|less|surprises|.\nThe|actors|must|indeed|be|good|to|recite|some|of|this|laughable|dialogue|with|a|straight|face|.\nMost|of|the|storylines|feel|like|time|fillers|between|surf|shots|.\nThe|movie|is|n't|horrible|,|but|you|can|see|mediocre|cresting|on|the|next|wave|.\nHowever|stale|the|material|,|Lawrence|'s|delivery|remains|perfect|;|his|great|gift|is|that|he|can|actually|trick|you|into|thinking|some|of|this|worn-out|,|pandering|palaver|is|actually|funny|.\nThere|'s|nothing|remotely|topical|or|sexy|here|.\nThe|Tuxedo|was|n't|just|bad|;|it|was|,|as|my|friend|David|Cross|would|call|it|,|`|Hungry-Man|portions|of|bad|'|.\nBlue|Crush|is|so|prolonged|and|boring|it|is|n't|even|close|to|being|the|barn-burningly|bad|movie|it|promised|it|would|be|.\nThe|sequel|plays|out|like|a|flimsy|excuse|to|give|Blade|fans|another|look|at|Wesley|Snipes|'|iconic|hero|doing|battle|with|dozens|of|bad|guys|--|at|once|.\nWhile|Van|Wilder|may|not|be|the|worst|National|Lampoon|film|,|it|'s|far|from|being|this|generation|'s|Animal|House|.\nSo|devoid|of|pleasure|or|sensuality|that|it|can|not|even|be|dubbed|hedonistic|.\nReeks|of|rot|and|hack|work|from|start|to|finish|.\nAn|exhausting|family|drama|about|a|porcelain|empire|and|just|as|hard|a|flick|as|its|subject|matter|.\nWoody|Allen|has|really|found|his|groove|these|days|.\nThe|problem|is|that|it|is|one|that|allows|him|to|churn|out|one|mediocre|movie|after|another|.\nThe|bland|outweighs|the|nifty|,|and|Cletis|Tout|never|becomes|the|clever|crime|comedy|it|thinks|it|is|.\nIt|'s|such|a|mechanical|endeavor|(|that|)|it|never|bothers|to|question|why|somebody|might|devote|time|to|see|it|.\nThe|art|direction|is|often|exquisite|,|and|the|anthropomorphic|animal|characters|are|beautifully|realized|through|clever|makeup|design|,|leaving|one|to|hope|that|the|eventual|DVD|release|will|offer|subtitles|and|the|original|Italian-language|soundtrack|.\nIf|the|predictability|of|bland|comfort|food|appeals|to|you|,|then|the|film|is|a|pleasant|enough|dish|.\nUltimately|,|in|the|history|of|the|Academy|,|people|may|be|wondering|what|all|that|jazz|was|about|``|Chicago|''|in|2002|.\nZellweger|'s|whiny|pouty-lipped|poof|faced|and|spindly|attempt|at|playing|an|ingenue|makes|her|nomination|as|best|actress|even|more|of|a|an|a\nA|seriously|bad|film|with|seriously|warped|logic|by|writer-director|Kurt|Wimmer|at|the|screenplay|level|.\nA|pleasant|and|engaging|enough|sit|,|but|in|trying|to|have|the|best|of|both|worlds|it|ends|up|falling|short|as|a|whole|.\nIts|plot|and|animation|offer|daytime|TV|serviceability|,|but|little|more|.\nA|tired|,|unimaginative|and|derivative|variation|of|that|already-shallow|genre|.\nHuman|Nature|,|in|short|,|is|n't|nearly|as|funny|as|it|thinks|it|is|;|neither|is|it|as|smart|.\nA|film|with|a|great|premise|but|only|a|great|premise|.\nInstead|of|building|to|a|laugh|riot|we|are|left|with|a|handful|of|disparate|funny|moments|of|no|real|consequence|.\nKirshner|and|Monroe|seem|to|be|in|a|contest|to|see|who|can|out-bad-act|the|other|.\n(|Kirshner|wins|,|but|it|'s|close|.|)\nA|lame|romantic|comedy|about|an|unsympathetic|character|and|someone|who|would|not|likely|be|so|stupid|as|to|get|involved|with|her|.\nWhat|started|out|as|a|taut|contest|of|wills|between|Bacon|and|Theron|,|deteriorates|into|a|protracted|and|borderline|silly|chase|sequence|.\n(|Sam|'s|)|self-flagellation|is|more|depressing|than|entertaining|.\nAn|ugly|,|pointless|,|stupid|movie|.\nSimply|put|,|there|should|have|been|a|more|compelling|excuse|to|pair|Susan|Sarandon|and|Goldie|Hawn|.\nThe|Master|of|Disguise|represents|Adam|Sandler|'s|latest|attempt|to|dumb|down|the|universe|.\nThis|is|an|ungainly|movie|,|ill-fitting|,|with|its|elbows|sticking|out|where|the|knees|should|be|.\nToo|silly|to|take|seriously|.\nThe|inevitable|double|-|and|triple-crosses|arise|,|but|the|only|drama|is|in|waiting|to|hear|how|John|Malkovich|'s|reedy|consigliere|will|pronounce|his|next|line|.\nEverything|'s|serious|,|poetic|,|earnest|and|--|sadly|--|dull|.\nI|like|it|.\nNo|,|I|hate|it|.\nNo|,|I|love|it|...|hell|,|I|dunno|.\nThis|mess|of|a|movie|is|nothing|short|of|a|travesty|of|a|transvestite|comedy|.\nIt|'s|clotted|with|heavy-handed|symbolism|,|dime-store|psychology|and|endless|scenic|shots|that|make|105|minutes|seem|twice|as|long|.\nA|fifty|car|pileup|of|cliches|.\nIt|'s|a|stale|,|overused|cocktail|using|the|same|olives|since|1962|as|garnish|.\nNot|only|is|entry|number|twenty|the|worst|of|the|Brosnan|bunch|,|it|'s|one|of|the|worst|of|the|entire|franchise|.\nWhat|ultimately|makes|Windtalkers|a|disappointment|is|the|superficial|way|it|deals|with|its|story|.\nAs|an|actor|'s|showcase|,|Hart|'s|War|has|much|to|recommend|it|,|even|if|the|top-billed|Willis|is|not|the|most|impressive|player|.\nAs|a|story|of|dramatic|enlightenment|,|the|screenplay|by|Billy|Ray|and|Terry|George|leaves|something|to|be|desired|.\nA|non-Britney|person|might|survive|a|screening|with|little|harm|done|,|except|maybe|for|the|last|15|minutes|,|which|are|as|maudlin|as|any|after-school|special|you|can|imagine|.\nIt|'s|not|hateful|.\nIt|'s|simply|stupid|,|irrelevant|and|deeply|,|truly|,|bottomlessly|cynical|.\nPossibly|not|since|Grumpy|Old|Men|have|I|heard|a|film|so|solidly|connect|with|one|demographic|while|striking|out|with|another|.\nThe|drama|was|so|uninspiring|that|even|a|story|immersed|in|love|,|lust|,|and|sin|could|n't|keep|my|attention|.\nA|rather|tired|exercise|in|nostalgia|.\nThe|misery|of|these|people|becomes|just|another|voyeuristic|spectacle|,|to|be|consumed|and|forgotten|.\nSome|Body|often|looks|like|an|episode|of|the|TV|show|Blind|Date|,|only|less|technically|proficient|and|without|the|pop-up|comments|.\nBad|Company|has|one|of|the|most|moronic|screenplays|of|the|year|,|full|of|holes|that|will|be|obvious|even|to|those|who|are|n't|looking|for|them|.\nPredecessors|The|Mummy|and|The|Mummy|Returns|stand|as|intellectual|masterpieces|next|to|The|Scorpion|King|.\nA|markedly|inactive|film|,|City|is|conversational|bordering|on|confessional|.\nWhile|kids|will|probably|eat|the|whole|thing|up|,|most|adults|will|be|way|ahead|of|the|plot|.\nDespite|an|impressive|roster|of|stars|and|direction|from|Kathryn|Bigelow|,|The|Weight|of|Water|is|oppressively|heavy|.\nWe|'ve|liked|Klein|'s|other|work|but|Rollerball|left|us|cold|.\nThey|were|afraid|to|show|this|movie|to|reviewers|before|its|opening|,|afraid|of|the|bad|reviews|they|thought|they|'d|earn|.\nThey|were|right|.\nIt|would|be|churlish|to|begrudge|anyone|for|receiving|whatever|consolation|that|can|be|found|in|Dragonfly|,|yet|it|is|impossible|to|find|the|film|anything|but|appalling|,|shamelessly|manipulative|and|contrived|,|and|totally|lacking|in|conviction|.\nOffers|no|new|insight|on|the|matter|,|nor|do|its|characters|exactly|spring|to|life|.\nNohe|has|made|a|decent|`|intro|'|documentary|,|but|he|feels|like|a|spectator|and|not|a|participant|.\nApparently|designed|as|a|reverie|about|memory|and|regret|,|but|the|only|thing|you|'ll|regret|is|remembering|the|experience|of|sitting|through|it|.\nA|94-minute|travesty|of|unparalleled|proportions|,|writer-director|Parker|seems|to|go|out|of|his|way|to|turn|the|legendary|wit|'s|classic|mistaken|identity|farce|into|brutally|labored|and|unfunny|hokum|.\nGuy|gets|girl|,|guy|loses|girl|,|audience|falls|asleep|.\nToo|ordinary|to|restore|(|Harmon|)|to|prominence|,|despite|some|creepy|scenes|that|evoke|childish|night|terrors|,|and|a|praiseworthy|attempt|to|generate|suspense|rather|than|gross|out|the|audience|.\nStirs|potentially|enticing|ingredients|into|an|uneasy|blend|of|Ghost|and|Close|Encounters|of|the|Third|Kind|.\nThe|weird|thing|about|The|Santa|Clause|2|,|purportedly|a|children|'s|movie|,|is|that|there|is|nothing|in|it|to|engage|children|emotionally|.\nIt|'s|pretentious|in|a|way|that|verges|on|the|amateurish|.\nContains|the|humor|,|characterization|,|poignancy|,|and|intelligence|of|a|bad|sitcom|.\nIt|does|n't|matter|that|the|film|is|less|than|90|minutes|.\nIt|still|feels|like|a|prison|stretch|.\nPartly|a|schmaltzy|,|by-the-numbers|romantic|comedy|,|partly|a|shallow|rumination|on|the|emptiness|of|success|--|and|entirely|soulless|.\nOng|chooses|to|present|Ah|Na|'s|life|as|a|slight|,|weightless|fairy|tale|,|whose|most|unpleasant|details|seem|to|melt|away|in|the|face|of|the|character|'s|blank-faced|optimism|.\nThe|overall|feel|is|not|unlike|watching|a|glorified|episode|of|``|7th|Heaven|.|''\nJust|a|Kiss|is|a|just|a|waste|.\n...|this|is|n't|even|a|movie|we|can|enjoy|as|mild|escapism|;|it|is|one|in|which|fear|and|frustration|are|provoked|to|intolerable|levels|.\nFrankly|,|it|'s|kind|of|insulting|,|both|to|men|and|women|.\nAnd|it|'s|not|that|funny|--|which|is|just|generally|insulting|.\nAs|if|Drop|Dead|Gorgeous|was|n't|enough|,|this|equally|derisive|clunker|is|fixated|on|the|spectacle|of|small-town|competition|.\nA|wretched|movie|that|reduces|the|Second|World|War|to|one|man|'s|quest|to|find|an|old|flame|.\nThis|is|a|remake|by|the|numbers|,|linking|a|halfwit|plot|to|a|series|of|standup|routines|in|which|Wilson|and|Murphy|show|how|funny|they|could|have|been|in|a|more|ambitious|movie|.\nIt|'s|better|than|mid-range|Steven|Seagal|,|but|not|as|sharp|as|Jet|Li|on|rollerblades|.\nThere|'s|a|reason|why|halftime|is|only|fifteen|minutes|long|.\nThe|talk-heavy|film|plays|like|one|of|Robert|Altman|'s|lesser|works|.\nAs|happily|glib|and|vicious|as|its|characters|.\nOne|of|those|films|that|started|with|a|great|premise|and|then|just|fell|apart|.\nNo|better|or|worse|than|`|Truth|or|Consequences|,|N.M.|'|or|any|other|interchangeable|actioner|with|imbecilic|Mafia|toolbags|botching|a|routine|assignment|in|a|Western|backwater|.\n(|MacDowell|)|ventures|beyond|her|abilities|several|times|here|and|reveals|how|bad|an|actress|she|is|.\nI|can|imagine|this|movie|as|a|b|&|w|British|comedy|,|circa|1960|,|with|Peter|Sellers|,|Kenneth|Williams|,|et|al.|,|but|at|this|time|,|with|this|cast|,|this|movie|is|hopeless|.\nTalky|,|artificial|and|opaque|...|an|interesting|technical|exercise|,|but|a|tedious|picture|.\nKurys|never|shows|why|,|of|all|the|period|'s|volatile|romantic|lives|,|Sand|and|Musset|are|worth|particular|attention|.\nAlmost|nothing|else|--|raunchy|and|graphic|as|it|may|be|in|presentation|--|is|one-sided|,|outwardly|sexist|or|mean-spirited|.\nAnd|in|a|sense|,|that|'s|a|liability|.\nIt|'s|easy|to|love|Robin|Tunney|--|she|'s|pretty|and|she|can|act|--|but|it|gets|harder|and|harder|to|understand|her|choices|.\nIf|you|'ve|got|a|house|full|of|tots|--|do|n't|worry|,|this|will|be|on|video|long|before|they|grow|up|and|you|can|wait|till|then|.\nThe|new|film|of|Anton|Chekhov|'s|The|Cherry|Orchard|puts|the|`|ick|'|in|`|classic|.|'\nHas|an|uppity|musical|beat|that|you|can|dance|to|,|but|its|energy|ca|n't|compare|to|the|wit|,|humor|and|snappy|dialogue|of|the|original|.\nIf|I|want|music|,|I|'ll|buy|the|soundtrack|.\nIf|I|want|a|real|movie|,|I|'ll|buy|the|Criterion|DVD|.\nAn|unremarkable|,|modern|action\\/comedy|buddy|movie|whose|only|nod|to|nostalgia|is|in|the|title|.\nHas|all|the|right|elements|but|completely|fails|to|gel|together|.\nWriter-director|Stephen|Gaghan|has|made|the|near-fatal|mistake|of|being|what|the|English|call|`|too|clever|by|half|.|'\nSeagal|ran|out|of|movies|years|ago|,|and|this|is|just|the|proof|.\nThe|movie|is|so|contrived|,|nonsensical|and|formulaic|that|,|come|to|think|of|it|,|the|day-old|shelf|would|be|a|more|appropriate|location|to|store|it|.\nAn|awkwardly|garish|showcase|that|diverges|from|anything|remotely|probing|or|penetrating|.\nThe|name|says|it|all|.\nJackass|is|a|vulgar|and|cheap-looking|version|of|Candid|Camera|staged|for|the|Marquis|de|Sade|set|.\nChildren|,|Christian|or|otherwise|,|deserve|to|hear|the|full|story|of|Jonah|'s|despair|--|in|all|its|agonizing|,|Catch-22|glory|--|even|if|they|spend|years|trying|to|comprehend|it|.\nPleasant|but|not|more|than|recycled|jock|piffle|.\n...|the|kind|of|movie|you|see|because|the|theater|has|air|conditioning|.\nWith|Zoe|Clarke-Williams|'s|lackluster|thriller|``|New|Best|Friend|''|,|who|needs|enemies|?\nJust|another|generic|drama|that|has|nothing|going|for|it|other|than|its|exploitive|array|of|obligatory|cheap|thrills|.\nHip-hop|prison|thriller|of|stupefying|absurdity|.\nAn|uneven|mix|of|dark|satire|and|childhood|awakening|.\naside|from|showing|us|in|explicit|detail|how|difficult|it|is|to|win|over|the|two-drink-minimum|crowd|,|there|'s|little|to|be|learned|from|watching|`|Comedian|'\nA|perfectly|acceptable|,|perfectly|bland|,|competently|acted|but|by|no|means|scary|horror|movie|.\nThe|film|would|have|been|more|enjoyable|had|the|balance|shifted|in|favor|of|water-bound|action|over|the|land-based|`|drama|,|'|but|the|emphasis|on|the|latter|leaves|Blue|Crush|waterlogged|.\nThe|problem|is|the|needlessly|poor|quality|of|its|archival|prints|and|film|footage|.\nThe|images|lack|contrast|,|are|murky|and|are|frequently|too|dark|to|be|decipherable|.\nLike|a|soft|drink|that|'s|been|sitting|open|too|long|:|it|'s|too|much|syrup|and|not|enough|fizz|.\nAs|the|movie|dragged|on|,|I|thought|I|heard|a|mysterious|voice|,|and|felt|myself|powerfully|drawn|toward|the|light|--|the|light|of|the|exit|sign|.\nI|have|returned|from|the|beyond|to|warn|you|:|this|movie|is|90|minutes|long|,|and|life|is|too|short|.\nThere|are|some|fairly|unsettling|scenes|,|but|they|never|succeed|in|really|rattling|the|viewer|.\nThe|Emperor|'s|Club|is|one|of|those|films|that|possesses|all|the|good|intentions|in|the|world|,|but|...\nIn|the|end|,|The|Weight|of|Water|comes|to|resemble|the|kind|of|soft-core|twaddle|you|'d|expect|to|see|on|Showtime|'s|`|Red|Shoe|Diaries|.|'\nA|straight-ahead|thriller|that|never|rises|above|superficiality|.\nGlizty|but|formulaic|and|silly|...|Cagney|'s|`|top|of|the|world|'|has|been|replaced|by|the|bottom|of|the|barrel|.\nThe|re|-|enactments|,|however|fascinating|they|may|be|as|history|,|are|too|crude|to|serve|the|work|especially|well|.\nIs|anyone|else|out|there|getting|tired|of|the|whole|slo-mo|,|double-pistoled|,|ballistic-pyrotechnic|Hong|Kong|action|aesthetic|?\nOnce|again|,|director|Chris|Columbus|takes|a|hat-in-hand|approach|to|Rowling|that|stifles|creativity|and|allows|the|film|to|drag|on|for|nearly|three|hours|.\nServing|Sara|is|little|more|than|a|mall|movie|designed|to|kill|time|.\nToo|smart|to|ignore|but|a|little|too|smugly|superior|to|like|,|this|could|be|a|movie|that|ends|up|slapping|its|target|audience|in|the|face|by|shooting|itself|in|the|foot|.\nA|well-made|but|emotionally|scattered|film|whose|hero|gives|his|heart|only|to|the|dog|.\nThe|most|repugnant|adaptation|of|a|classic|text|since|Roland|Joffé|and|Demi|Moore|'s|The|Scarlet|Letter|.\nThe|isolated|moments|of|creative|insanity|finally|are|lost|in|the|thin|soup|of|canned|humor|.\nAs|a|movie|,|it|never|seems|fresh|and|vital|.\nIt|never|plays|as|dramatic|even|when|dramatic|things|happen|to|people|.\nIt|labours|as|storytelling|.\nThe|Adventures|of|Pluto|Nash|is|a|whole|lot|of|nada|.\nA|really|good|premise|is|frittered|away|in|middle-of-the-road|blandness|.\nLawrence|should|stick|to|his|day|job|.\nHe|'s|a|better|actor|than|a|standup|comedian|.\nDespite|the|fact|that|this|film|was|n't|as|bad|as|I|thought|it|was|going|to|be|,|it|'s|still|not|a|good|movie\nA|well|made|indieflick|in|need|of|some|trims|and|a|more|chemistry|between|its|stars|.\nI|never|thought|I|'d|say|this|,|but|I|'d|much|rather|watch|teens|poking|their|genitals|into|fruit|pies|!\nA|film|neither|bitter|nor|sweet|,|neither|romantic|nor|comedic|,|neither|warm|nor|fuzzy|.\nTiresomely|derivative|and|hammily|acted|.\nWe|never|truly|come|to|care|about|the|main|characters|and|whether|or|not|they|'ll|wind|up|together|,|and|Michele|'s|spiritual|quest|is|neither|amusing|nor|dramatic|enough|to|sustain|interest|.\nThe|plot|grows|thin|soon|,|and|you|find|yourself|praying|for|a|quick|resolution|.\nToo|bad|Maggio|could|n't|come|up|with|a|better|script|.\nMuch|of|the|cast|is|stiff|or|just|plain|bad|.\nRice|is|too|pedestrian|a|filmmaker|to|bring|any|edge|or|personality|to|The|Rising|Place|that|would|set|it|apart|from|other|Deep|South|stories|.\nAt|best|,|Cletis|Tout|might|inspire|a|trip|to|the|video|store|--|in|search|of|a|better|movie|experience|.\nWitless|,|pointless|,|tasteless|and|idiotic|.\nNot|really|a|thriller|so|much|as|a|movie|for|teens|to|laugh|,|groan|and|hiss|at|.\nAs|plain|and|pedestrian|as|catsup|--\nAn|improvement|on|the|feeble|examples|of|big-screen|Poke-mania|that|have|preceded|it|.\nI|know|we|'re|not|supposed|to|take|it|seriously|,|but|I|ca|n't|shake|the|thought|that|Undercover|Brother|missed|an|opportunity|to|strongly|present|some|profound|social|commentary|.\nYour|stomach|for|Heaven|depends|largely|on|your|appetite|for|canned|corn|.\nA|picture|as|erratic|as|its|central|character|.\nWhatever|satire|Lucky|Break|was|aiming|for|,|it|certainly|got|lost|in|the|``|soon-to-be-forgettable|''|section|of|the|quirky|rip-off|prison|romp|pile|.\nIt|'s|petty|thievery|like|this|that|puts|flimsy|flicks|like|this|behind|bars\nThe|package|in|which|this|fascinating|--|and|timely|--|content|comes|wrapped|is|disappointingly|generic|.\nGuys|say|mean|things|and|shoot|a|lot|of|bullets|.\nSome|of|the|characters|die|and|others|do|n't|,|and|the|film|pretends|that|those|living|have|learned|some|sort|of|lesson|,|and|,|really|,|nobody|in|the|viewing|audience|cares|.\nWildly|incompetent|but|brilliantly|named|Half|Past|Dead|--|or|for|Seagal|pessimists|:|Totally|Past|His|Prime|.\nJust|another|combination|of|bad|animation|and|mindless|violence|...|lacking|the|slightest|bit|of|wit|or|charm|.\nAll|the|movie|'s|narrative|gymnastics|ca|n't|disguise|the|fact|that|it|'s|inauthentic|at|its|core|and|that|its|story|just|is|n't|worth|telling|.\nMuch|like|its|easily|dismissive|take|on|the|upscale|lifestyle|,|there|is|n't|much|there|here|.\nThe|film|ultimately|offers|nothing|more|than|people|in|an|urban|jungle|needing|other|people|to|survive|...\nFor|all|its|shoot-outs|,|fistfights|,|and|car|chases|,|this|movie|is|a|phlegmatic|bore|,|so|tedious|it|makes|the|silly|spy|vs.|spy|film|The|Sum|of|All|Fears|,|starring|Ben|Affleck|,|seem|downright|Hitchcockian|.\nThis|mild-mannered|farce|,|directed|by|one|of|its|writers|,|John|C.|Walsh|,|is|corny|in|a|way|that|bespeaks|an|expiration|date|passed|a|long|time|ago|.\nA|bit|too|eager|to|please|.\nYou|'d|be|hard|put|to|find|a|movie|character|more|unattractive|or|odorous|(|than|Leon|)|.\nKapur|'s|contradictory|feelings|about|his|material|result|in|a|movie|that|works|against|itself|.\n``|the|road|paved|with|good|intentions|leads|to|the|video|store|''\nAnimated|drivel|meant|to|enhance|the|self-image|of|drooling|idiots|.\nOne|scene|after|another|in|this|supposedly|funny|movie|falls|to|the|floor|with|a|sickening|thud|.\n`|The|Château|is|never|quite|able|to|overcome|the|cultural|moat|surrounding|its|ludicrous|and|contrived|plot|.|'\nMeyjes|focuses|too|much|on|Max|when|he|should|be|filling|the|screen|with|this|tortured|,|dull|artist|and|monster-in-the|-|making|.\nJacobi|,|the|most|fluent|of|actors|,|is|given|relatively|dry|material|from|Nijinsky|'s|writings|to|perform|,|and|the|visuals|,|even|erotically|frank|ones|,|become|dullingly|repetitive|.\nCrudup|'s|screen|presence|is|the|one|thing|that|holds|interest|in|the|midst|of|a|mushy|,|existential|exploration|of|why|men|leave|their|families|.\nThere|is|one|surefire|way|to|get|a|nomination|for|a|best-foreign-film|Oscar|:|Make|a|movie|about|whimsical|folk|who|learn|a|nonchallenging|,|life-affirming|lesson|while|walking|around|a|foreign|city|with|stunning|architecture|.\nDespite|terrific|special|effects|and|funnier|gags|,|Harry|Potter|and|the|Chamber|of|Secrets|finds|a|way|to|make|J.K.|Rowling|'s|marvelous|series|into|a|deadly|bore|.\nAn|incredibly|narrow|in-joke|targeted|to|the|tiniest|segment|of|an|already|obscure|demographic|.\nThe|only|thing|I|laughed|at|were|the|people|who|paid|to|see|it|.\nAll|of|the|elements|are|in|place|for|a|great|film|noir|,|but|director|George|Hickenlooper|'s|approach|to|the|material|is|too|upbeat|.\nThe|hackneyed|story|about|an|affluent|damsel|in|distress|who|decides|to|fight|her|bully|of|a|husband|is|simply|too|overdone|.\nthe|phone|rings|and|a|voice|tells|you|you|'ve|got|seven|days|left|to|live|.\nThen|you|get|another|phone|call|warning|you|that|if|the|video|is|n't|back|at|Blockbuster|before|midnight|,|you|'re|going|to|face|frightening|late|fees|.\nO.K.|,|not|really|.\nPossibly|the|most|irresponsible|picture|ever|released|by|a|major|film|studio|.\nThe|film|'s|overall|mood|and|focus|is|interesting|but|constantly|unfulfilling|.\n...|a|cheap|,|ludicrous|attempt|at|serious|horror|.\nThose|of|you|who|are|not|an|eighth|grade|girl|will|most|likely|doze|off|during|this|one|.\nBefuddled|in|its|characterizations|as|it|begins|to|seem|as|long|as|the|two|year|affair|which|is|its|subject\nFrom|beginning|to|end|,|this|overheated|melodrama|plays|like|a|student|film|.\nThe|movie|would|seem|less|of|a|trifle|if|Ms.|Sugarman|followed|through|on|her|defiance|of|the|saccharine|.\nIt|'s|just|not|very|smart|.\nLike|the|excruciating|End|of|Days|,|Collateral|Damage|presents|Schwarzenegger|as|a|tragic|figure|,|but|sympathy|really|belongs|with|any|viewer|forced|to|watch|him|try|out|so|many|complicated|facial|expressions|.\nImagine|(|if|possible|)|a|Pasolini|film|without|passion|or|politics|,|or|an|Almodovar|movie|without|beauty|or|humor|,|and|you|have|some|idea|of|the|glum|,|numb|experience|of|watching|O|Fantasma|.\nIn|trying|to|be|daring|and|original|,|it|comes|off|as|only|occasionally|satirical|and|never|fresh|.\n90|punitive|minutes|of|eardrum-dicing|gunplay|,|screeching-metal|smashups|,|and|flaccid|odd-couple|sniping|.\nSadly|,|though|many|of|the|actors|throw|off|a|spark|or|two|when|they|first|appear|,|they|ca|n't|generate|enough|heat|in|this|cold|vacuum|of|a|comedy|to|start|a|reaction|.\nNever|capitalizes|on|this|concept|and|opts|for|the|breezy|and|amateurish|feel|of|an|after|school|special|on|the|subject|of|tolerance|.\nAfter|a|while|,|Hoffman|'s|quirks|and|mannerisms|,|particularly|his|penchant|for|tearing|up|on|cue|--|things|that|seem|so|real|in|small|doses|--|become|annoying|and|artificial|.\nThis|wretchedly|unfunny|wannabe|comedy|is|inane|and|awful|-|no|doubt|,|it|'s|the|worst|movie|I|'ve|seen|this|summer|.\nIt|'s|drab|.\nIt|'s|uninteresting|.\nIt|squanders|Chan|'s|uniqueness|;|it|could|even|be|said|to|squander|Jennifer|Love|Hewitt|!\nThe|movie|keeps|coming|back|to|the|achingly|unfunny|Phonce|and|his|several|silly|subplots|.\nThis|tale|has|been|told|and|retold|;|the|races|and|rackets|change|,|but|the|song|remains|the|same|.\nA|surprisingly|flat|retread|,|hobbled|by|half-baked|setups|and|sluggish|pacing|.\nForget|the|Psychology|101|study|of|romantic|obsession|and|just|watch|the|procession|of|costumes|in|castles|and|this|wo|n't|seem|like|such|a|bore|.\nA|film|that|should|be|relegated|to|a|dark|video|store|corner|is|somehow|making|its|way|instead|to|theaters|.\nIt|'s|hard|to|imagine|acting|that|could|be|any|flatter|.\nNew|ways|of|describing|badness|need|to|be|invented|to|describe|exactly|how|bad|it|is|.\nLots|of|effort|and|intelligence|are|on|display|but|in|execution|it|is|all|awkward|,|static|,|and|lifeless|rumblings|.\nWhen|cowering|and|begging|at|the|feet|a|scruffy|Giannini|,|Madonna|gives|her|best|performance|since|Abel|Ferrara|had|her|beaten|to|a|pulp|in|his|Dangerous|Game|.\nI|suspect|that|there|are|more|interesting|ways|of|dealing|with|the|subject|.\nThe|film|itself|is|about|something|very|interesting|and|odd|that|would|probably|work|better|as|a|real|documentary|without|the|insinuation|of|mediocre|acting|or|a|fairly|trite|narrative|.\nAn|unintentional|parody|of|every|teen|movie|made|in|the|last|five|years|.\nOnly|for|young|children|,|if|them|.\nTheir|parents|would|do|well|to|cram|earplugs|in|their|ears|and|put|pillowcases|over|their|heads|for|87|minutes|.\nFor|all|its|violence|,|the|movie|is|remarkably|dull|with|only|Caine|making|much|of|an|impression|.\nNo|matter|how|firmly|director|John|Stainton|has|his|tongue|in|his|cheek|,|the|fact|remains|that|a|wacky|concept|does|not|a|movie|make|.\nA|sub-formulaic|slap|in|the|face|to|seasonal|cheer|.\nThe|action|is|reasonably|well-done|...|yet|story|,|character|and|comedy|bits|are|too|ragged|to|ever|fit|smoothly|together|.\nSeveral|uninteresting|,|unlikeable|people|do|bad|things|to|and|with|each|other|in|``|Unfaithful|.|''\nWhy|anyone|who|is|not|a|character|in|this|movie|should|care|is|beyond|me|.\nHill|looks|to|be|going|through|the|motions|,|beginning|with|the|pale|script|.\nHoward|conjures|the|past|via|surrealist|flourishes|so|overwrought|you|'d|swear|he|just|stepped|out|of|a|Buñuel|retrospective|.\nThe|best|thing|that|can|be|said|of|the|picture|is|that|it|does|have|a|few|cute|moments|.\nIt|'s|not|a|bad|premise|,|just|a|bad|movie|.\nAn|already|thin|story|boils|down|to|surviving|invaders|seeking|an|existent|anti-virus|.\nIf|only|there|were|one|for|this|kind|of|movie|.\nBy|the|time|the|surprise|ending|is|revealed|,|interest|can|not|be|revived|.\nThe|heedless|impetuousness|of|youth|is|on|full|,|irritating|display|in|(|this|)|meandering|and|pointless|French|coming-of-age|import|from|writer-director|Anne-Sophie|Birot|.\nA|peculiar|misfire|that|even|Tunney|ca|n't|save|.\nWatching|Queen|of|the|Damned|is|like|reading|a|research|paper|,|with|special|effects|tossed|in|.\nI|ca|n't|remember|the|last|time|I|saw|worse|stunt|editing|or|cheaper|action|movie|production|values|than|in|Extreme|Ops|.\nToo|much|of|Nemesis|has|a|tired|,|talky|feel|.\nI|felt|trapped|and|with|no|obvious|escape|for|the|entire|100|minutes|.\nWhen|Mr.|Hundert|tells|us|in|his|narration|that|`|this|is|a|story|without|surprises|,|'|we|nod|in|agreement|.\nLeaves|us|wondering|less|about|its|ideas|and|more|about|its|characterization|of|Hitler|and|the|contrived|nature|of|its|provocative|conclusion|.\nIt|is|that|rare|combination|of|bad|writing|,|bad|direction|and|bad|acting|--|the|trifecta|of|badness|.\nEach|scene|wreaks|of|routine|;|the|film|never|manages|to|generate|a|single|threat|of|suspense|.\nA|soulless|jumble|of|ineptly|assembled|cliches|and|pabulum|that|plays|like|a|95-minute|commercial|for|NBA|properties|.\nBorstal|Boy|represents|the|worst|kind|of|filmmaking|,|the|kind|that|pretends|to|be|passionate|and|truthful|but|is|really|frustratingly|timid|and|soggy|.\nThe|film|'s|lack|of|personality|permeates|all|its|aspects|--|from|the|TV|movie-esque|,|affected|child|acting|to|the|dullest|Irish|pub|scenes|ever|filmed|.\nworks|on|the|whodunit|level|as|its|larger|themes|get|lost|in|the|murk|of|its|own|making\nCrush|could|be|the|worst|film|a|man|has|made|about|women|since|Valley|of|the|Dolls|.\n4Ever|has|the|same|sledgehammer|appeal|as|Pokemon|videos|,|but|it|breathes|more|on|the|big|screen|and|induces|headaches|more|slowly|.\nFeels|like|the|work|of|someone|who|may|indeed|have|finally|aged|past|his|prime|...|and|,|perhaps|more|than|he|realizes|,|just|wants|to|be|liked|by|the|people|who|can|still|give|him|work|.\nTrailer|park|Magnolia|:|too|long|,|too|cutesy|,|too|sure|of|its|own|importance|,|and|possessed|of|that|peculiar|tension|of|being|too|dense|&|about|nothing|at|all|.\nViewers|of|Barney|'s|crushingly|self-indulgent|spectacle|will|see|nothing|in|it|to|match|the|ordeal|of|sitting|through|it|.\n...|its|stupidities|wind|up|sticking|in|one|'s|mind|a|lot|more|than|the|cool|bits|.\nSayles|...|once|again|strands|his|superb|performers|in|the|same|old|story|.\nThe|Piano|Teacher|,|like|its|title|character|,|is|repellantly|out|of|control|.\nI|have|to|admit|I|walked|out|of|Runteldat|.\nI|did|go|back|and|check|out|the|last|10|minutes|,|but|these|were|more|repulsive|than|the|first|30|or|40|minutes|.\nThe|filmmakers|lack|the|nerve|...|to|fully|exploit|the|script|'s|potential|for|sick|humor|.\nThe|film|was|n't|preachy|,|but|it|was|feminism|by|the|book|.\n...|the|same|tired|old|gags|,|modernized|for|the|extreme|sports|generation|.\nThere|'s|already|been|too|many|of|these|films|...\nSeveral|of|Steven|Soderbergh|'s|earlier|films|were|hailed|as|the|works|of|an|artist|.\nSadly|,|Full|Frontal|plays|like|the|work|of|a|dilettante|.\nClockstoppers|is|one|of|those|crazy|,|mixed-up|films|that|does|n't|know|what|it|wants|to|be|when|it|grows|up|.\nAlthough|bright|,|well-acted|and|thought-provoking|,|Tuck|Everlasting|suffers|from|a|laconic|pace|and|a|lack|of|traditional|action|.\n`|The|War|of|the|Roses|,|'|trailer-trash|style|.\nEntertaining|but|like|shooting|fish|in|a|barrel|.\nSupposedly|,|Pokemon|ca|n't|be|killed|,|but|Pokemon|4Ever|practically|assures|that|the|pocket|monster|movie|franchise|is|nearly|ready|to|keel|over|.\nWhite|has|n't|developed|characters|so|much|as|caricatures|,|one-dimensional|buffoons|that|get|him|a|few|laughs|but|nothing|else|.\nWhen|you|resurrect|a|dead|man|,|Hard|Copy|should|come|a-knocking|,|no|?\nCattaneo|should|have|followed|the|runaway|success|of|his|first|film|,|The|Full|Monty|,|with|something|different|.\nThe|film|feels|formulaic|,|its|plot|and|pacing|typical|Hollywood|war-movie|stuff|,|while|the|performances|elicit|more|of|a|sense|of|deja|vu|than|awe|.\nThis|overproduced|piece|of|dreck|is|shockingly|bad|and|absolutely|unnecessary|.\nHmmm|...|might|I|suggest|that|the|wayward|wooden|one|end|it|all|by|stuffing|himself|into|an|electric|pencil|sharpener|?\nThe|makers|of|Mothman|Prophecies|succeed|in|producing|that|most|frightening|of|all|movies|--|a|mediocre|horror|film|too|bad|to|be|good|and|too|good|to|be|bad|.\nMr.|Deeds|is|not|really|a|film|as|much|as|it|is|a|loose|collection|of|not-so-funny|gags|,|scattered|moments|of|lazy|humor|.\nHow|this|one|escaped|the|Lifetime|network|I|'ll|never|know|.\nCould|n't|someone|take|Rob|Schneider|and|have|him|switch|bodies|with|a|funny|person|?\nOne|of|these|days|Hollywood|will|come|up|with|an|original|idea|for|a|teen|movie|,|but|until|then|there|'s|always|these|rehashes|to|feed|to|the|younger|generations|.\nFor|all|its|brilliant|touches|,|Dragon|loses|its|fire|midway|,|nearly|flickering|out|by|its|perfunctory|conclusion|.\nI|have|to|admit|that|I|am|baffled|by|Jason|X.\nA|mean-spirited|film|made|by|someone|who|surely|read|The|Catcher|in|the|Rye|but|clearly|suffers|from|dyslexia\nInstead|of|a|witty|expose|on|the|banality|and|hypocrisy|of|too|much|kid-vid|,|we|get|an|ugly|,|mean-spirited|lashing|out|by|an|adult|who|'s|apparently|been|forced|by|his|kids|to|watch|too|many|Barney|videos|.\nThis|is|a|film|living|far|too|much|in|its|own|head|.\nThe|umpteenth|summer|skinny|dip|in|Jerry|Bruckheimer|'s|putrid|pond|of|retread|action|twaddle|.\nNational|Lampoon|'s|Van|Wilder|may|aim|to|be|the|next|Animal|House|,|but|it|more|closely|resembles|this|year|'s|version|of|Tomcats|.\nThe|film|thrusts|the|inchoate|but|already|eldritch|Christian|Right|propaganda|machine|into|national|media|circles|.\nDogtown|is|hollow|,|self-indulgent|,|and|-|worst|of|all|-|boring|.\nA|movie|so|bad|that|it|quickly|enters|the|pantheon|of|wreckage|that|includes|Battlefield|Earth|and|Showgirls|.\nMore|of|a|career|curio|than|a|major|work|.\nIt|'s|just|too|bad|the|screenwriters|eventually|shoot|themselves|in|the|feet|with|cop|flick|cliches|like|an|oily|arms|dealer|,|squad|car|pile-ups|and|the|requisite|screaming|captain|.\nCox|is|far|more|concerned|with|aggrandizing|madness|,|not|the|man|,|and|the|results|might|drive|you|crazy|.\nTo|be|influenced|chiefly|by|humanity|'s|greatest|shame|,|reality|shows|--|reality|shows|for|God|'s|sake|!\n--|is|a|crime|that|should|be|punishable|by|chainsaw|.\nAs|we|have|come|to|learn|--|as|many|times|as|we|have|fingers|to|count|on|--|Jason|is|a|killer|who|does|n't|know|the|meaning|of|the|word|`|quit|.|'\nThe|filmmakers|might|want|to|look|it|up|.\nA|frustrating|`|tweener|'|--|too|slick|,|contrived|and|exploitative|for|the|art|houses|and|too|cynical|,|small|and|decadent|for|the|malls|.\nWhat|'s|surprising|about|this|traditional|thriller|,|moderately|successful|but|not|completely|satisfying|,|is|exactly|how|genteel|and|unsurprising|the|execution|turns|out|to|be|.\nDrowning|'s|too|good|for|this|sucker|.\nAn|instantly|forgettable|snow-and-stuntwork|extravaganza|that|likely|will|be|upstaged|by|an|avalanche|of|more|appealing|holiday-season|product|.\nFrankly|,|it|'s|pretty|stupid|.\nI|had|more|fun|with|Ben|Stiller|'s|Zoolander|,|which|I|thought|was|rather|clever|.\nBut|there|'s|plenty|to|offend|everyone|...\nLove|Liza|is|a|festival|film|that|would|have|been|better|off|staying|on|the|festival|circuit|.\nThere|are|things|to|like|about|Murder|By|Numbers|--|but|,|in|the|end|,|the|disparate|elements|do|n't|gel|.\n...|tackling|a|low-budget|movie|in|which|inexperienced|children|play|the|two|main|characters|might|not|be|the|best|way|to|cut|your|teeth|in|the|film|industry|.\nQuite|frankly|,|I|ca|n't|see|why|any|actor|of|talent|would|ever|work|in|a|McCulloch|production|again|if|they|looked|at|how|this|movie|turned|out|.\nMy|precious|new|Star|Wars|movie|is|a|lumbering|,|wheezy|drag|...\nThe|innocence|of|holiday|cheer|ai|n't|what|it|used|to|be|.\nToo|campy|to|work|as|straight|drama|and|too|violent|and|sordid|to|function|as|comedy|,|Vulgar|is|,|truly|and|thankfully|,|a|one-of-a-kind|work|.\nHorrid|little|propaganda|film|with|fascinating|connections|not|only|to|the|Serbs|themselves|but|also|to|a|network|of|American|right-wing|extremists|.\nShould|have|gone|straight|to|video|.\nIt|looks|like|an|action|movie|,|but|it|'s|so|poorly|made|,|on|all|levels|,|that|it|does|n't|even|qualify|as|a|spoof|of|such|.\nIt|is|supremely|unfunny|and|unentertaining|to|watch|middle-age|and|older|men|drink|to|excess|,|piss|on|trees|,|b.s.|one|another|and|put|on|a|show|in|drag|.\nConsider|the|film|a|celluloid|litmus|test|for|the|intellectual|and|emotional|pedigree|of|your|date|and|a|giant|step|backward|for|a|director|I|admire|.\nA|boring|,|pretentious|muddle|that|uses|a|sensational|,|real-life|19th-Century|crime|as|a|metaphor|for|--|well|,|I|'m|not|exactly|sure|what|--|and|has|all|the|dramatic|weight|of|a|raindrop|.\nSheridan|had|a|wonderful|account|to|work|from|,|but|,|curiously|,|he|waters|it|down|,|turning|grit|and|vulnerability|into|light|reading|.\nHeavy|with|flabby|rolls|of|typical|Toback|machinations|.\nIt|is|very|difficult|to|care|about|the|character|,|and|that|is|the|central|flaw|of|the|film|.\nSnow|Dogs|finds|its|humour|in|a|black|man|getting|humiliated|by|a|pack|of|dogs|who|are|smarter|than|him\nWhole|stretches|of|the|film|may|be|incomprehensible|to|moviegoers|not|already|clad|in|basic|black|.\nReggio|and|Glass|so|rhapsodize|cynicism|,|with|repetition|and|languorous|slo-mo|sequences|,|that|Glass|'s|dirgelike|score|becomes|a|fang-baring|lullaby|.\nEnds|up|offering|nothing|more|than|the|latest|Schwarzenegger|or|Stallone|flick|would|.\nThe|film|makes|strong|arguments|regarding|the|social|status|of|America|'s|indigenous|people|,|but|really|only|exists|to|try|to|eke|out|an|emotional|tug|of|the|heart|,|one|which|it|fails|to|get|.\nCharlize|CHASES|Kevin|with|a|GUN|.\nCourtney|CHASES|Stuart|with|a|CELL|PHONE|.\nThe|sound|of|GUNFIRE|and|cell|phones|RINGING|.\nIf|The|Tuxedo|actually|were|a|suit|,|it|would|fit|Chan|like|a|$|99|bargain-basement|special|.\nParents|beware|;|this|is|downright|movie|penance|.\n...|a|complete|shambles|of|a|movie|so|sloppy|,|so|uneven|,|so|damn|unpleasant|that|I|ca|n't|believe|any|viewer|,|young|or|old|,|would|have|a|good|time|here|.\nHas|nothing|good|to|speak|about|other|than|the|fact|that|it|is|relatively|short|,|tries|its|best|to|hide|the|fact|that|Seagal|'s|overweight|and|out|of|shape|.\nA|pathetically|inane|and|unimaginative|cross|between|XXX|and|Vertical|Limit|.\nImpeccably|filmed|,|sexually|charged|,|but|ultimately|lacking|in|substance|,|not|to|mention|dragged|down|by|a|leaden|closing|act|.\nFeels|at|times|like|a|giant|commercial|for|Universal|Studios|,|where|much|of|the|action|takes|place|.\nWhile|the|mystery|unravels|,|the|characters|respond|by|hitting|on|each|other|.\nBritney|Spears|'|phoniness|is|nothing|compared|to|the|movie|'s|contrived|,|lame|screenplay|and|listless|direction|.\nEvery|sequel|you|skip|will|be|two|hours|gained|.\nConsider|this|review|life-affirming|.\nIf|the|movie|were|all|comedy|,|it|might|work|better|.\nBut|it|has|an|ambition|to|say|something|about|its|subjects|,|but|not|a|willingness|.\nThe|movie|,|while|beautiful|,|feels|labored|,|with|a|hint|of|the|writing|exercise|about|it|.\nTwenty-three|movies|into|a|mostly|magnificent|directorial|career|,|Clint|Eastwood|'s|efficiently|minimalist|style|finally|has|failed|him|.\nBig|time|.\nThis|heist|flick|about|young|Brooklyn|hoods|is|off|the|shelf|after|two|years|to|capitalize|on|the|popularity|of|Vin|Diesel|,|Seth|Green|and|Barry|Pepper|.\nIt|should|have|stayed|there|.\nThe|film|has|a|childlike|quality|about|it|.\nBut|the|feelings|evoked|in|the|film|are|lukewarm|and|quick|to|pass|.\nThe|most|opaque|,|self-indulgent|and|just|plain|goofy|an|excuse|for|a|movie|as|you|can|imagine|.\nIt|'s|not|a|film|to|be|taken|literally|on|any|level|,|but|its|focus|always|appears|questionable|.\nBig|Fat|Liar|is|little|more|than|Home|Alone|raised|to|a|new|,|self-deprecating|level|.\nThe|movie|is|gorgeously|made|,|but|it|is|also|somewhat|shallow|and|art-conscious|.\nThe|only|time|8|Crazy|Nights|comes|close|to|hitting|a|comedic|or|satirical|target|is|during|the|offbeat|musical|numbers|.\nLoses|its|sense|of|humor|in|a|vat|of|failed|jokes|,|twitchy|acting|,|and|general|boorishness|.\nThere|'s|a|delightfully|quirky|movie|to|be|made|from|curling|,|but|Brooms|is|n't|it|.\nThe|story|suffers|a|severe|case|of|oversimplification|,|superficiality|and|silliness|.\nChamber|of|Secrets|will|find|millions|of|eager|fans|.\nBut|if|the|essence|of|magic|is|its|make-believe|promise|of|life|that|soars|above|the|material|realm|,|this|is|the|opposite|of|a|truly|magical|movie|.\nToo|clever|by|about|nine-tenths|.\nHas|all|the|hallmarks|of|a|movie|designed|strictly|for|children|'s|home|video|,|a|market|so|insatiable|it|absorbs|all|manner|of|lame|entertainment|,|as|long|as|3-year-olds|find|it|diverting|.\nBears|about|as|much|resemblance|to|the|experiences|of|most|battered|women|as|Spider-Man|does|to|the|experiences|of|most|teenagers|.\nToward|the|end|Sum|of|All|Fears|morphs|into|a|mundane|'70s|disaster|flick|.\nDirector|Carl|Franklin|,|so|crisp|and|economical|in|One|False|Move|,|bogs|down|in|genre|cliches|here|.\nMendes|still|does|n't|quite|know|how|to|fill|a|frame|.\nLike|the|Hanks|character|,|he|'s|a|slow|study|:|The|action|is|stilted|and|the|tabloid|energy|embalmed|.\nThis|thing|is|just|garbage|.\nAs|crimes|go|,|writer-director|Michael|Kalesniko|'s|How|to|Kill|Your|Neighbor|'s|Dog|is|slight|but|unendurable|.\nThere|must|be|an|audience|that|enjoys|the|Friday|series|,|but|I|would|n't|be|interested|in|knowing|any|of|them|personally|.\nA|bold|(|and|lovely|)|experiment|that|will|almost|certainly|bore|most|audiences|into|their|own|brightly|colored|dreams|.\nAn|uplifting|,|largely|bogus|story|.\nAn|empty|exercise|,|a|florid|but|ultimately|vapid|crime|melodrama|with|lots|of|surface|flash|but|little|emotional|resonance|.\nIf|you|are|curious|to|see|the|darker|side|of|what|'s|going|on|with|young|TV|actors|(|Dawson|Leery|did|what|?!?|)|,|or|see|some|interesting|storytelling|devices|,|you|might|want|to|check|it|out|,|but|there|'s|nothing|very|attractive|about|this|movie|.\nMy|own|minority|report|is|that|it|stinks|.\nTrying|to|make|head|or|tail|of|the|story|in|the|hip-hop|indie|Snipes|is|enough|to|give|you|brain|strain|--|and|the|pay-off|is|negligible|.\nThe|script|is|high|on|squaddie|banter|,|low|on|shocks|.\n...|if|you|,|like|me|,|think|an|action|film|disguised|as|a|war|tribute|is|disgusting|to|begin|with|,|then|you|'re|in|for|a|painful|ride|.\nWhile|Solondz|tries|and|tries|hard|,|Storytelling|fails|to|provide|much|more|insight|than|the|inside|column|of|a|torn|book|jacket|.\nWith|very|little|to|add|beyond|the|dark|visions|already|relayed|by|superb|recent|predecessors|like|Swimming|With|Sharks|and|The|Player|,|this|latest|skewering|...|may|put|off|insiders|and|outsiders|alike|.\n(|Davis|)|wants|to|cause|his|audience|an|epiphany|,|yet|he|refuses|to|give|us|real|situations|and|characters|.\nWithout|a|fresh|infusion|of|creativity|,|4Ever|is|neither|a|promise|nor|a|threat|so|much|as|wishful|thinking|.\n...|unlike|(|Scorsese|'s|Mean|Streets|)|,|Ash|Wednesday|is|essentially|devoid|of|interesting|characters|or|even|a|halfway|intriguing|plot|.\nBeing|unique|does|n't|necessarily|equate|to|being|good|,|no|matter|how|admirably|the|filmmakers|have|gone|for|broke|.\nA|few|hours|after|you|'ve|seen|it|,|you|forget|you|'ve|been|to|the|movies|.\nwaydowntown|may|not|be|an|important|movie|,|or|even|a|good|one|,|but|it|provides|a|nice|change|of|mindless|pace|in|collision|with|the|hot|Oscar|season|currently|underway|.\nYes|,|I|suppose|it|'s|lovely|that|Cal|works|out|his|issues|with|his|dad|and|comes|to|terms|with|his|picture-perfect|life|--|but|World|Traveler|gave|me|no|reason|to|care|,|so|I|did|n't|.\nShadyac|,|who|belongs|with|the|damned|for|perpetrating|Patch|Adams|,|trots|out|every|ghost|trick|from|The|Sixth|Sense|to|The|Mothman|Prophecies|.\nThe|photographer|'s|show-don|`|t-tell|stance|is|admirable|,|but|it|can|make|him|a|problematic|documentary|subject|.\nIt|is|not|the|first|time|that|director|Sara|Sugarman|stoops|to|having|characters|drop|their|pants|for|laughs|and|not|the|last|time|she|fails|to|provoke|them|.\nI|'d|be|hard|pressed|to|think|of|a|film|more|cloyingly|sappy|than|Evelyn|this|year|.\nNothing|more|than|an|amiable|but|unfocused|bagatelle|that|plays|like|a|loosely-connected|string|of|acting-workshop|exercises|.\nmeanders|between|its|powerful|moments|.\nWhat|remains|is|a|variant|of|the|nincompoop|Benigni|persona|,|here|a|more|annoying|,|though|less|angry|version|of|the|irresponsible|Sandlerian|manchild|,|undercut|by|the|voice|of|the|star|of|Road|Trip|.\nA|backhanded|ode|to|female|camaraderie|penned|by|a|man|who|has|little|clue|about|either|the|nature|of|women|or|of|friendship|.\nPure|of|intention|and|passably|diverting|,|His|Secret|Life|is|light|,|innocuous|and|unremarkable|.\n...|delivers|few|moments|of|inspiration|amid|the|bland|animation|and|simplistic|story|.\nTake|away|the|controversy|,|and|it|'s|not|much|more|watchable|than|a|Mexican|soap|opera|.\nIt|'s|got|the|brawn|,|but|not|the|brains|.\nMindless|and|boring|martial|arts|and|gunplay|with|too|little|excitement|and|zero|compelling|storyline|.\nA|lot|of|talent|is|wasted|in|this|crass|,|low-wattage|endeavor|.\nTo|show|these|characters|in|the|act|and|give|them|no|feelings|of|remorse|--|and|to|cut|repeatedly|to|the|flashback|of|the|original|rape|--|is|overkill|to|the|highest|degree|.\n(|T|)|oo|many|of|these|gross|out|scenes|...\nAbout|one|in|three|gags|in|White|'s|intermittently|wise|script|hits|its|mark|;|the|rest|are|padding|unashamedly|appropriated|from|the|teen-exploitation|playbook|.\nLittle|is|done|to|support|the|premise|other|than|fling|gags|at|it|to|see|which|ones|shtick|.\nReno|does|what|he|can|in|a|thankless|situation|,|the|film|ricochets|from|humor|to|violence|and|back|again|,|and|Ryoko|Hirosue|makes|us|wonder|if|she|is|always|like|that|.\nIf|Jews|were|Catholics|,|this|would|be|Catechism\nOne|of|those|films|that|seems|tailor|made|to|air|on|pay|cable|to|offer|some|modest|amusements|when|one|has|nothing|else|to|watch|.\nThe|big|ending|surprise|almost|saves|the|movie|.\nIt|'s|too|bad|that|the|rest|is|n't|more|compelling|.\nCharming|,|if|overly|complicated|...\nSchneider|'s|mugging|is|relentless|and|his|constant|need|to|suddenly|transpose|himself|into|another|character|undermines|the|story|'s|continuity|and|progression|.\nAll|very|stylish|and|beautifully|photographed|,|but|far|more|trouble|than|it|'s|worth|,|with|fantasy|mixing|with|reality|and|actors|playing|more|than|one|role|just|to|add|to|the|confusion|.\nIt|'s|probably|not|easy|to|make|such|a|worthless|film|...\nHope|keeps|arising|that|the|movie|will|live|up|to|the|apparent|skills|of|its|makers|and|the|talents|of|its|actors|,|but|it|does|n't|.\nHas|no|reason|to|exist|,|other|than|to|employ|Hollywood|kids|and|people|who|owe|favors|to|their|famous|parents|.\nFor|a|guy|who|has|waited|three|years|with|breathless|anticipation|for|a|new|Hal|Hartley|movie|to|pore|over|,|No|Such|Thing|is|a|big|letdown|.\nConstantly|slips|from|the|grasp|of|its|maker|.\nSmothered|by|its|own|solemnity|.\n`|Christian|Bale|'s|Quinn|(|is|)|a|leather|clad|grunge-pirate|with|a|hairdo|like|Gandalf|in|a|wind-tunnel|and|a|simply|astounding|cor-blimey-luv-a-duck|cockney|accent|.|'\nMight|be|one|of|those|vanity|projects|in|which|a|renowned|filmmaker|attempts|to|show|off|his|talent|by|surrounding|himself|with|untalented|people|.\nAfter|you|laugh|once|(|maybe|twice|)|,|you|will|have|completely|forgotten|the|movie|by|the|time|you|get|back|to|your|car|in|the|parking|lot|.\nNot|one|moment|in|the|enterprise|did|n't|make|me|want|to|lie|down|in|a|dark|room|with|something|cool|to|my|brow|.\nIn|the|era|of|The|Sopranos|,|it|feels|painfully|redundant|and|inauthentic|.\nThe|overall|vibe|is|druggy|and|self-indulgent|,|like|a|spring-break|orgy|for|pretentious|arts|majors|.\nBreen|'s|script|is|sketchy|with|actorish|notations|on|the|margin|of|acting|.\nThere|'s|no|question|that|Epps|scores|once|or|twice|,|but|it|'s|telling|that|his|funniest|moment|comes|when|he|falls|about|ten|feet|onto|his|head|.\nIf|only|Merchant|paid|more|attention|the|story|.\nAt|the|one-hour|mark|,|Herzog|simply|runs|out|of|ideas|and|the|pace|turns|positively|leaden|as|the|movie|sputters|to|its|inevitable|tragic|conclusion|.\n...|too|contrived|to|be|as|naturally|charming|as|it|needs|to|be|.\nA|simpler|,|leaner|treatment|would|have|been|preferable|;|after|all|,|being|about|nothing|is|sometimes|funnier|than|being|about|something|.\nThe|characters|are|based|on|stock|clichés|,|and|the|attempt|to|complicate|the|story|only|defies|credibility|.\nEverything|about|it|from|the|bland|songs|to|the|colorful|but|flat|drawings|is|completely|serviceable|and|quickly|forgettable|.\nNot|the|Great|American|Comedy|,|but|if|you|liked|the|previous|movies|in|the|series|,|you|'ll|have|a|good|time|with|this|one|too|.\nA|domestic|melodrama|with|weak|dialogue|and|biopic|cliches|.\nMr.|Goyer|'s|loose|,|unaccountable|direction|is|technically|sophisticated|in|the|worst|way|.\nThe|movie|is|so|thoughtlessly|assembled|.\nBenigni|presents|himself|as|the|boy|puppet|Pinocchio|,|complete|with|receding|hairline|,|weathered|countenance|and|American|Breckin|Meyer|'s|ridiculously|inappropriate|Valley|Boy|voice|.\nplays|like|some|corny|television|production|from|a|bygone|era\nThe|end|result|is|like|cold|porridge|with|only|the|odd|enjoyably|chewy|lump|.\nFor|all|the|charm|of|Kevin|Kline|and|a|story|that|puts|old-fashioned|values|under|the|microscope|,|there|'s|something|creepy|about|this|movie|.\nI|was|feeling|this|movie|until|it|veered|off|too|far|into|the|Exxon|zone|,|and|left|me|behind|at|the|station|looking|for|a|return|ticket|to|realism|.\nProducer|John|Penotti|surveyed|high|school|students|...|and|came|back|with|the|astonishing|revelation|that|``|they|wanted|to|see|something|that|did|n't|talk|down|to|them|.|''\nIgnoring|that|,|he|made|Swimfan|anyway\nNaipaul|fans|may|be|disappointed|.\nThose|who|are|not|acquainted|with|the|author|'s|work|,|on|the|other|hand|,|may|fall|fast|asleep|.\nHoffman|waits|too|long|to|turn|his|movie|in|an|unexpected|direction|,|and|even|then|his|tone|retains|a|genteel|,|prep-school|quality|that|feels|dusty|and|leatherbound|.\nIf|you|'re|a|Crocodile|Hunter|fan|,|you|'ll|enjoy|at|least|the|``|real|''|portions|of|the|film|.\nIf|you|'re|looking|for|a|story|,|do|n't|bother|.\nFull|Frontal|had|no|effect|and|elicited|no|sympathies|for|any|of|the|characters|.\nBy|that|measure|,|it|is|a|failure|.\nA|baffling|mixed|platter|of|gritty|realism|and|magic|realism|with|a|hard-to-swallow|premise|.\nAn|affable|but|undernourished|romantic|comedy|that|fails|to|match|the|freshness|of|the|actress-producer|and|writer|'s|previous|collaboration|,|Miss|Congeniality|.\nSometimes|this|modest|little|number|clicks|,|and|sometimes|it|does|n't|.\nLike|a|pack|of|dynamite|sticks|,|built|for|controversy|.\nThe|film|is|explosive|,|but|a|few|of|those|sticks|are|wet|.\nHas|its|charming|quirks|and|its|dull|spots|.\nAn|admitted|egomaniac|,|Evans|is|no|Hollywood|villain|,|and|yet|this|grating|showcase|almost|makes|you|wish|he|'d|gone|the|way|of|Don|Simpson|.\nThe|audience|when|I|saw|this|one|was|chuckling|at|all|the|wrong|times|,|and|that|'s|a|bad|sign|when|they|'re|supposed|to|be|having|a|collective|heart|attack|.\nEveryone|'s|to|blame|here|.\nYou|get|the|impression|that|writer|and|director|Burr|Steers|knows|the|territory|...|but|his|sense|of|humor|has|yet|to|lose|the|smug|self-satisfaction|usually|associated|with|the|better|private|schools|.\nLess|a|study|in|madness|or|love|than|a|study|in|schoolgirl|obsession|.\nRice|never|clearly|defines|his|characters|or|gives|us|a|reason|to|care|about|them|.\nIt|'s|a|bizarre|curiosity|memorable|mainly|for|the|way|it|fritters|away|its|potentially|interesting|subject|matter|via|a|banal|script|,|unimpressive|acting|and|indifferent|direction|.\nA|slight|and|obvious|effort|,|even|for|one|whose|target|demographic|is|likely|still|in|the|single|digits|,|age-wise|.\nSex|With|Strangers|will|shock|many|with|its|unblinking|frankness|.\nBut|what|is|missing|from|it|all|is|a|moral|.\nWhat|is|the|filmmakers|'|point|?\nWhy|did|they|deem|it|necessary|to|document|all|this|emotional|misery|?\nYou|see|Robin|Williams|and|psycho|killer|,|and|you|think|,|hmmmmm|.\nYou|see|the|movie|and|you|think|,|zzzzzzzzz|.\nDownright|transparent|is|the|script|'s|endless|assault|of|embarrassingly|ham-fisted|sex|jokes|that|reek|of|a|script|rewrite|designed|to|garner|the|film|a|``|cooler|''|PG-13|rating|.\nThe|movie|slides|downhill|as|soon|as|macho|action|conventions|assert|themselves|.\nFormulaic|to|the|51st|power|,|more|like|.\nDraggin|'|about|dragons\nHoward|and|his|co-stars|all|give|committed|performances|,|but|they|'re|often|undone|by|Howard|'s|self-conscious|attempts|to|find|a|`|literary|'|filmmaking|style|to|match|his|subject|.\nA|respectable|but|uninspired|thriller|that|'s|intelligent|and|considered|in|its|details|,|but|ultimately|weak|in|its|impact|.\nJones|helps|breathe|some|life|into|the|insubstantial|plot|,|but|even|he|is|overwhelmed|by|predictability|.\nThe|movie|just|has|too|much|on|its|plate|to|really|stay|afloat|for|its|just|under|ninety|minute|running|time|.\nComes|off|more|like|a|misdemeanor|,|a|flat|,|unconvincing|drama|that|never|catches|fire|.\nOffers|absolutely|nothing|I|had|n't|already|seen|.\n``|Analyze|That|''|is|one|of|those|crass|,|contrived|sequels|that|not|only|fails|on|its|own|,|but|makes|you|second-guess|your|affection|for|the|original|.\nYou|might|say|Tykwer|has|done|all|that|Heaven|allows|,|if|you|wanted|to|make|as|anti-Kieslowski|a|pun|as|possible|.\nSuffice|to|say|its|total|promise|is|left|slightly|unfulfilled|.\nComplex|,|sinuously|plotted|and|,|somehow|,|off-puttingly|cold|.\nFirst-time|writer-director|Dylan|Kidd|also|has|a|good|ear|for|dialogue|,|and|the|characters|sound|like|real|people|.\n...|an|airless|,|prepackaged|Julia|Roberts|wannabe|that|stinks|so|badly|of|hard-sell|image-mongering|you|'ll|wonder|if|Lopez|'s|publicist|should|share|screenwriting|credit|.\nGoldmember|has|none|of|the|visual|wit|of|the|previous|pictures|,|and|it|looks|as|though|Jay|Roach|directed|the|film|from|the|back|of|a|taxicab|.\nCould|as|easily|have|been|called|`|Under|Siege|3|:|In|Alcatraz|'|...|a|cinematic|corpse|that|never|springs|to|life|.\nIn|comparison|to|his|earlier|films|it|seems|a|disappointingly|thin|slice|of|lower-class|London|life|;|despite|the|title|...|amounts|to|surprisingly|little|.\nLame|Sweet|Home|leaves|no|Southern|stereotype|unturned|.\nSlow|,|dry|,|poorly|cast|,|but|beautifully|shot|.\nThe|jokes|are|sophomoric|,|stereotypes|are|sprinkled|everywhere|and|the|acting|ranges|from|bad|to|bodacious|.\nWill|give|many|ministers|and|Bible-study|groups|hours|of|material|to|discuss|.\nBut|mainstream|audiences|will|find|little|of|interest|in|this|film|,|which|is|often|preachy|and|poorly|acted|.\nIn|its|chicken|heart|,|Crush|goes|to|absurd|lengths|to|duck|the|very|issues|it|raises|.\nThis|long|and|relentlessly|saccharine|film|is|a|clear|case|of|preaching|to|the|converted|.\nThe|film|is|flat|.\nThe|movie|is|a|lumbering|load|of|hokum|but|...|it|'s|at|least|watchable|.\nIt|'s|a|boom-box|of|a|movie|that|might|have|been|titled|`|The|Loud|and|the|Ludicrous|'|...|the|pandering|to|a|moviegoing|audience|dominated|by|young|males|is|all|too|calculated|.\nAn|unbelievably|stupid|film|,|though|occasionally|fun|enough|to|make|you|forget|its|absurdity|.\nThe|first|Fatal|Attraction|was|vile|enough|.\nDo|we|really|need|the|Tiger|Beat|version|?\nThis|Bond|film|goes|off|the|beaten|path|,|not|necessarily|for|the|better|.\nThe|problem|is|that|the|movie|has|no|idea|of|it|is|serious|or|not|.\nWhen|the|fire|burns|out|,|we|'ve|only|come|face-to-face|with|a|couple|dragons|and|that|'s|where|the|film|ultimately|fails|.\nIt|would|work|much|better|as|a|one-hour|TV|documentary|.\nThe|elements|were|all|there|but|lack|of|a|pyschological|center|knocks|it|flat|.\nAnemic|chronicle|of|money|grubbing|New|Yorkers|and|their|serial|loveless|hook|ups|.\nSimply|does|n't|have|sufficient|heft|to|justify|its|two-hour|running|time|.\nAn|unsuccessful|attempt|at|a|movie|of|ideas|.\nQueen|of|the|Damned|as|you|might|have|guessed|,|makes|sorry|use|of|Aaliyah|in|her|one|and|only|starring|role|--|she|does|little|here|but|point|at|things|that|explode|into|flame|.\nThis|toothless|Dog|,|already|on|cable|,|loses|all|bite|on|the|big|screen|.\nIt|made|me|feel|unclean|,|and|I|'m|the|guy|who|liked|There|'s|Something|About|Mary|and|both|American|Pie|movies|.\nOh|,|and|Booty|Call|.\nNot|only|is|it|hokey|,|manipulative|and|as|bland|as|Wonder|Bread|dipped|in|milk|,|but|it|also|does|the|absolute|last|thing|we|need|Hollywood|doing|to|us|:|It|preaches|.\nIt|'s|so|crammed|with|scenes|and|vistas|and|pretty|moments|that|it|'s|left|a|few|crucial|things|out|,|like|character|development|and|coherence|.\nServing|Sara|should|be|served|an|eviction|notice|at|every|theater|stuck|with|it|.\nDirector|Roger|Michell|does|so|many|of|the|little|things|right|that|it|'s|difficult|not|to|cuss|him|out|severely|for|bungling|the|big|stuff|.\nA|loud|,|low-budget|and|tired|formula|film|that|arrives|cloaked|in|the|euphemism|`|urban|drama|.|'\nThe|movie|has|a|script|(|by|Paul|Pender|)|made|of|wood|,|and|it|'s|relentlessly|folksy|,|a|procession|of|stagy|set|pieces|stacked|with|binary|oppositions|.\nA|pathetic|exploitation|film|that|tries|to|seem|sincere|,|and|just|seems|worse|for|the|effort|.\nAt|some|point|,|all|this|visual|trickery|stops|being|clever|and|devolves|into|flashy|,|vaguely|silly|overkill|.\nDespite|some|charm|and|heart|,|this|quirky|soccer|import|is|forgettable\nMeyjes|'s|movie|,|like|Max|Rothman|'s|future|,|does|not|work|.\nWhat|'s|needed|so|badly|but|what|is|virtually|absent|here|is|either|a|saving|dark|humor|or|the|feel|of|poetic|tragedy|.\nSchneidermeister|...|Makin|'|a|fool|of|himself|...|Losin|'|his|fan|base|...\nAn|ambitious|,|serious|film|that|manages|to|do|virtually|everything|wrong|;|sitting|through|it|is|something|akin|to|an|act|of|cinematic|penance|.\nNot|once|does|it|come|close|to|being|exciting|.\nA|Frankenstein|mishmash|that|careens|from|dark|satire|to|cartoonish|slapstick|,|Bartleby|performs|neither|one|very|well|.\nIt|plays|like|a|big-budget|,|after-school|special|with|a|generous|cast|,|who|at|times|lift|the|material|from|its|well-meaning|clunkiness|.\nThere|'s|something|not|entirely|convincing|about|The|Quiet|American|.\nAnd|that|holds|true|for|both|the|movie|and|the|title|character|played|by|Brendan|Fraser|.\nOne|of|those|strained|caper|movies|that|'s|hardly|any|fun|to|watch|and|begins|to|vaporize|from|your|memory|minutes|after|it|ends|.\nNeeded|a|little|less|bling-bling|and|a|lot|more|romance|.\nThe|ending|does|n't|work|...|but|most|of|the|movie|works|so|well|I|'m|almost|recommending|it|,|anyway|--|maybe|not|to|everybody|,|but|certainly|to|people|with|a|curiosity|about|how|a|movie|can|go|very|right|,|and|then|step|wrong|.\nIt|'s|hard|to|believe|these|jokers|are|supposed|to|have|pulled|off|four|similar|kidnappings|before|.\nI|'m|not|exactly|sure|what|this|movie|thinks|it|is|about|.\nCal|is|an|unpleasantly|shallow|and|immature|character|with|whom|to|spend|110|claustrophobic|minutes|.\nSo|brisk|is|Wang|'s|pacing|that|none|of|the|excellent|cast|are|given|air|to|breathe|.\nThe|bottom|line|,|at|least|in|my|opinion|,|is|Imposter|makes|a|better|short|story|than|it|does|a|film|.\nSome|elements|of|it|really|blow|the|big|one|,|but|other|parts|are|decent|.\nIt|is|just|too|bad|the|film|'s|story|does|not|live|up|to|its|style|.\nUnless|you|'re|a|fanatic|,|the|best|advice|is|:|`|Scooby|'|do|n't|.\nA|cautionary|tale|about|the|folly|of|superficiality|that|is|itself|endlessly|superficial|.\nFor|single|digits|kidlets|Stuart|Little|2|is|still|a|no|brainer|.\nIf|you|'re|looking|to|rekindle|the|magic|of|the|first|film|,|you|'ll|need|a|stronger|stomach|than|us|.\nShreve|'s|graceful|dual|narrative|gets|clunky|on|the|screen|,|and|we|keep|getting|torn|away|from|the|compelling|historical|tale|to|a|less-compelling|soap|opera|.\nContains|a|few|big|laughs|but|many|more|that|graze|the|funny|bone|or|miss|it|altogether|,|in|part|because|the|consciously|dumbed-down|approach|wears|thin|.\nNothing|more|than|a|widget|cranked|out|on|an|assembly|line|to|see|if|stupid|Americans|will|get|a|kick|out|of|goofy|Brits|with|cute|accents|performing|ages-old|slapstick|and|unfunny|tricks|.\nThis|is|a|film|tailor-made|for|those|who|when|they|were|in|high|school|would|choose|the|Cliff-Notes|over|reading|a|full-length|classic|.\nThe|movie|is|undone|by|a|filmmaking|methodology|that|'s|just|experimental|enough|to|alienate|the|mainstream|audience|while|ringing|cliched|to|hardened|indie-heads|.\nA|jumbled|fantasy|comedy|that|did|not|figure|out|a|coherent|game|plan|at|scripting|,|shooting|or|post-production|stages|.\nA|sad|and|rote|exercise|in|milking|a|played-out|idea|--|a|straight|guy|has|to|dress|up|in|drag|--|that|shockingly|manages|to|be|even|worse|than|its|title|would|imply|.\nPersonal|Velocity|ought|to|be|exploring|these|women|'s|inner|lives|,|but|it|never|moves|beyond|their|surfaces|.\nWe|hate|(|Madonna|)|within|the|film|'s|first|five|minutes|,|and|she|lacks|the|skill|or|presence|to|regain|any|ground|.\nSounding|like|Arnold|Schwarzenegger|,|with|a|physique|to|match|,|(|Ahola|)|has|a|wooden|delivery|and|encounters|a|substantial|arc|of|change|that|does|n't|produce|any|real|transformation|.\nTwo|big|things|are|missing|--|anything|approaching|a|visceral|kick|,|and|anything|approaching|even|a|vague|reason|to|sit|through|it|all|.\nA|fascinating|but|choppy|documentary|.\nScarcely|worth|a|mention|apart|from|reporting|on|the|number|of|tumbleweeds|blowing|through|the|empty|theatres|graced|with|its|company|.\nThe|doofus-on|-|the-loose|banter|of|Welcome|to|Collinwood|has|a|cocky|,|after-hours|loopiness|to|it|.\nAnd|as|with|most|late-night|bull|sessions|,|eventually|the|content|is|n't|nearly|as|captivating|as|the|rowdy|participants|think|it|is|.\nToo|stagey|,|talky|--|and|long|--|for|its|own|good|.\nApparently|reassembled|from|the|cutting-room|floor|of|any|given|daytime|soap|.\nThe|sinister|inspiration|that|fuelled|DeVito|'s|early|work|is|confused|in|Death|to|Smoochy|into|something|both|ugly|and|mindless|.\nDespite|Auteuil|'s|performance|,|it|'s|a|rather|listless|amble|down|the|middle|of|the|road|,|where|the|thematic|ironies|are|too|obvious|and|the|sexual|politics|too|smug|.\nDirector|Boris|von|Sychowski|instead|opts|for|a|routine|slasher|film|that|was|probably|more|fun|to|make|than|it|is|to|sit|through|.\n...|little|more|than|a|well-acted|television|melodrama|shot|for|the|big|screen|.\nNever|comes|together|as|a|coherent|whole|.\nAn|unintentionally|surreal|kid|'s|picture|...|in|which|actors|in|bad|bear|suits|enact|a|sort|of|inter-species|parody|of|a|VH1|Behind|the|Music|episode|.\nFirst|,|for|a|movie|that|tries|to|be|smart|,|it|'s|kinda|dumb|.\nAnd|second|,|what|'s|with|all|the|shooting|?\nDo|n't|even|bother|to|rent|this|on|video|.\nThere|is|something|in|Full|Frontal|,|I|guess|,|about|artifice|and|acting|and|how|it|distorts|reality|for|people|who|make|movies|and|watch|them|,|but|like|most|movie|riddles|,|it|works|only|if|you|have|an|interest|in|the|characters|you|see|.\nThis|is|the|kind|of|movie|that|gets|a|quick|release|before|real|contenders|arrive|in|September|.\nNot|counting|a|few|gross-out|comedies|I|'ve|been|trying|to|forget|,|this|is|the|first|film|in|a|long|time|that|made|me|want|to|bolt|the|theater|in|the|first|10|minutes|.\nPlays|like|one|long|,|meandering|sketch|inspired|by|the|works|of|John|Waters|and|Todd|Solondz|,|rather|than|a|fully|developed|story|.\nThe|film|does|n't|have|enough|innovation|or|pizazz|to|attract|teenagers|,|and|it|lacks|the|novel|charm|that|made|Spy|Kids|a|surprising|winner|with|both|adults|and|younger|audiences|.\nA|mawkish|self-parody|that|plays|like|some|weird|Masterpiece|Theater|sketch|with|neither|a|point|of|view|nor|a|compelling|reason|for|being|.\nAn|average|B-movie|with|no|aspirations|to|be|anything|more|.\nBartlett|'s|hero|remains|a|reactive|cipher|,|when|opening|the|man|'s|head|and|heart|is|the|only|imaginable|reason|for|the|film|to|be|made|.\nGibney|and|Jarecki|just|want|to|string|the|bastard|up|.\nThe|plot|is|plastered|with|one|Hollywood|cliche|after|another|,|most|of|which|involve|precocious|kids|getting|the|better|of|obnoxious|adults|.\nLess|worrying|about|covering|all|the|drama|in|Frida|'s|life|and|more|time|spent|exploring|her|process|of|turning|pain|into|art|would|have|made|this|a|superior|movie|.\nA|film|that|suffers|because|of|its|many|excesses|.\nToo|bland|and|fustily|tasteful|to|be|truly|prurient|.\nIn|any|case|,|I|would|recommend|Big|Bad|Love|only|to|Winger|fans|who|have|missed|her|since|1995|'s|Forget|Paris|.\nBut|even|then|,|I|'d|recommend|waiting|for|DVD|and|just|skipping|straight|to|her|scenes|.\nDepicts|the|sorriest|and|most|sordid|of|human|behavior|on|the|screen|,|then|laughs|at|how|clever|it|'s|being|.\nNijinsky|says|,|'|I|know|how|to|suffer|'|and|if|you|see|this|film|you|'ll|know|too|.\n`|CQ|may|one|day|be|fondly|remembered|as|Roman|Coppola|'s|brief|pretentious|period|before|going|on|to|other|films|that|actually|tell|a|story|worth|caring|about\nThe|only|thing|scary|about|feardotcom|is|that|the|filmmakers|and|studio|are|brazen|enough|to|attempt|to|pass|this|stinker|off|as|a|scary|movie|.\n...|the|story|simply|putters|along|looking|for|astute|observations|and|coming|up|blank|.\nInstead|of|contriving|a|climactic|hero|'s|death|for|the|beloved-major|-|character-who-shall|-|remain-nameless|,|why|not|invite|some|genuine|spontaneity|into|the|film|by|having|the|evil|aliens|'|laser|guns|actually|hit|something|for|once|?\nIt|just|did|n't|mean|much|to|me|and|played|too|skewed|to|ever|get|a|hold|on|(|or|be|entertained|by|)|.\nThis|action-thriller\\/dark|comedy|is|one|of|the|most|repellent|things|to|pop|up|in|a|cinematic|year|already|littered|with|celluloid|garbage|.\nMIB|II|is|a|movie|that|makes|it|possible|for|the|viewer|to|doze|off|for|a|few|minutes|or|make|several|runs|to|the|concession|stand|and\\/or|restroom|and|not|feel|as|if|he|or|she|has|missed|anything|.\nThat|'s|because|relatively|nothing|happens|.\nNo|amount|of|arty|theorizing|--|the|special|effects|are|`|German-Expressionist|,|'|according|to|the|press|notes|--|can|render|it|anything|but|laughable|.\nBlue|Crush|follows|the|formula|,|but|throws|in|too|many|conflicts|to|keep|the|story|compelling|.\nBoyd|'s|screenplay|(|co-written|with|Guardian|hack|Nick|Davies|)|has|a|florid|turn|of|phrase|that|owes|more|to|Guy|Ritchie|than|the|Bard|of|Avon|.\nThere|'s|not|a|spark|of|new|inspiration|in|it|,|just|more|of|the|same|,|done|with|noticeably|less|energy|and|imagination|.\nJackson|shamefully|strolls|through|this|mess|with|a|smug|grin|,|inexplicably|wearing|a|kilt|and|carrying|a|bag|of|golf|clubs|over|one|shoulder|.\nA|moving|picture|that|does|not|move|.\nRuh-roh|!\nRomething|'s|really|wrong|with|this|ricture|!\nIts|salient|points|are|simultaneously|buried|,|drowned|and|smothered|in|the|excesses|of|writer-director|Roger|Avary|.\nI|'m|not|sure|these|words|have|ever|been|together|in|the|same|sentence|:|This|erotic|cannibal|movie|is|boring|.\n`|God|help|us|,|but|Capra|and|Cooper|are|rolling|over|in|their|graves|.|'\n...|an|hour-and-a-half|of|inoffensive|,|unmemorable|filler|.\nIs|it|a|comedy|?\nA|drama|?\nA|romance|?\nA|cartoon|?\nZe|movie|starts|out|so|funny|,|then|she|is|nothing|.\nDid|the|film|inform|and|educate|me|?\nYes|.\nDid|it|move|me|to|care|about|what|happened|in|1915|Armenia|?\nNo.|.\nAnd|that|is|where|Ararat|went|astray|.\nIt|'s|a|bad|sign|in|a|thriller|when|you|instantly|know|whodunit|.\nHas|a|customarily|jovial|air|but|a|deficit|of|flim-flam|inventiveness|.\nEight|Legged|Freaks|wo|n't|join|the|pantheon|of|great|monster\\/science|fiction|flicks|that|we|have|come|to|love|...\nIt|gets|the|details|of|its|time|frame|right|but|it|completely|misses|its|emotions|.\nWho|,|exactly|,|is|fighting|whom|here|?\nAh|,|yes|,|that|would|be|me|:|fighting|off|the|urge|to|doze|.\nA|kilted|Jackson|is|an|unsettling|sight|,|and|indicative|of|his|,|if|you|will|,|out-of-kilter|character|,|who|rambles|aimlessly|through|ill-conceived|action|pieces|.\nContrived|,|awkward|and|filled|with|unintended|laughs|,|the|film|shows|signs|that|someone|other|than|the|director|got|into|the|editing|room|and|tried|to|improve|things|by|making|the|movie|go|faster|.\nStarts|out|with|tremendous|promise|,|introducing|an|intriguing|and|alluring|premise|,|only|to|fall|prey|to|a|boatload|of|screenwriting|cliches|that|sink|it|faster|than|a|leaky|freighter|.\nThe|film|lapses|too|often|into|sugary|sentiment|and|withholds|delivery|on|the|pell-mell|pyrotechnics|its|punchy|style|promises|.\nThe|only|question|...|is|to|determine|how|well|the|schmaltz|is|manufactured|--|to|assess|the|quality|of|the|manipulative|engineering|.\nAverage|,|at|best|,|I|'m|afraid|.\nThis|movie|is|so|bad|,|that|it|'s|almost|worth|seeing|because|it|'s|so|bad|.\nA|crisply|made|movie|that|is|no|more|than|mildly|amusing|.\nThis|movie|feel|more|like|a|non-stop|cry|for|attention|,|than|an|attempt|at|any|kind|of|satisfying|entertainment|.\nOverall|,|it|'s|a|pretty|mediocre|family|film|.\nLove|may|have|been|in|the|air|onscreen|,|but|I|certainly|was|n't|feeling|any|of|it|.\nIn|addition|to|the|overcooked|,|ham-fisted|direction|,|which|has|all|the|actors|reaching|for|the|back|row|,|the|dialogue|sounds|like|horrible|poetry|.\nThe|very|definition|of|what|critics|have|come|to|term|an|``|ambitious|failure|.|''\nIt|'s|as|if|De|Palma|spent|an|hour|setting|a|fancy|table|and|then|served|up|Kraft|Macaroni|and|Cheese|.\nThe|movie|ends|with|outtakes|in|which|most|of|the|characters|forget|their|lines|and|just|utter|`|uhhh|,|'|which|is|better|than|most|of|the|writing|in|the|movie|.\nWorthy|of|the|gong|.\nWhile|certainly|more|naturalistic|than|its|Australian|counterpart|,|Amari|'s|film|falls|short|in|building|the|drama|of|Lilia|'s|journey|.\nI|found|the|movie|as|divided|against|itself|as|the|dysfunctional|family|it|portrays|.\nThe|soul-searching|deliberateness|of|the|film|,|although|leavened|nicely|with|dry|absurdist|wit|,|eventually|becomes|too|heavy|for|the|plot|.\nThe|movie|does|n't|add|anything|fresh|to|the|myth|.\nAs|inept|as|big-screen|remakes|of|The|Avengers|and|The|Wild|Wild|West|.\nComes|across|as|a|relic|from|a|bygone|era|,|and|its|convolutions|...|feel|silly|rather|than|plausible|.\nMoves|in|such|odd|plot|directions|and|descends|into|such|message-mongering|moralism|that|its|good|qualities|are|obscured|.\nIt|'s|a|very|sincere|work|,|but|it|would|be|better|as|a|diary|or|documentary|.\nOnce|one|experiences|Mr.|Haneke|'s|own|sadistic|tendencies|toward|his|audience|,|one|is|left|with|a|sour|taste|in|one|'s|mouth|,|and|little|else|.\nOops|,|she|'s|really|done|it|this|time|.\nThat|chirpy|songbird|Britney|Spears|has|popped|up|with|more|mindless|drivel|.\nIt|'s|a|loathsome|movie|,|it|really|is|and|it|makes|absolutely|no|sense|.\nA|chiller|resolutely|without|chills|.\nFor|those|of|us|who|respond|more|strongly|to|storytelling|than|computer-generated|effects|,|the|new|Star|Wars|installment|has|n't|escaped|the|rut|dug|by|the|last|one|.\nThe|director|mostly|plays|it|straight|,|turning|Leys|'|fable|into|a|listless|climb|down|the|social|ladder|.\n``|Bad|''|is|the|operative|word|for|``|Bad|Company|,|''|and|I|do|n't|mean|that|in|a|good|way|.\nThough|Frida|is|easier|to|swallow|than|Julie|Taymor|'s|preposterous|Titus|,|the|eye|candy|here|lacks|considerable|brio|.\nDrumline|is|--|the|mere|suggestion|,|albeit|a|visually|compelling|one|,|of|a|fully|realized|story|.\nThe|whole|movie|is|simply|a|lazy|exercise|in|bad|filmmaking|that|asks|you|to|not|only|suspend|your|disbelief|but|your|intelligence|as|well|.\nThe|film|affords|us|intriguing|glimpses|of|the|insights|gleaned|from|a|lifetime|of|spiritual|inquiry|,|but|Ram|Dass|:|Fierce|Grace|does|n't|organize|it|with|any|particular|insight|.\nBilly|Crystal|and|Robert|De|Niro|sleepwalk|through|vulgarities|in|a|sequel|you|can|refuse|.\nIt|'s|loud|and|boring|;|watching|it|is|like|being|trapped|at|a|bad|rock|concert|.\nMerely|(|and|literally|)|tosses|around|sex|toys|and|offers|half-hearted|paeans|to|empowerment|that|are|repeatedly|undercut|by|the|brutality|of|the|jokes|,|most|at|women|'s|expense|.\nIf|you|want|a|movie|time|trip|,|the|1960|version|is|a|far|smoother|ride|.\nTraffics|in|the|kind|of|prechewed|racial|clichés|that|have|already|been|through|the|corporate|stand-up-comedy|mill|.\nThe|story|is|--|forgive|me|--|a|little|thin|,|and|the|filmmaking|clumsy|and|rushed|.\n...|grows|decidedly|flimsier|with|its|many|out-sized|,|out|of|character|and|logically|porous|action|set|pieces|.\nI|wish|Windtalkers|had|had|more|faith|in|the|dramatic|potential|of|this|true|story|.\nThis|would|have|been|better|than|the|fiction|it|has|concocted|,|and|there|still|could|have|been|room|for|the|war|scenes|.\nAggressive|self-glorification|and|a|manipulative|whitewash|.\nStay|for|the|credits|and|see|a|devastating|comic|impersonation|by|Dustin|Hoffman|that|is|revelatory|.\nNone|of|the|characters|or|plot-lines|are|fleshed-out|enough|to|build|any|interest|.\nAs|social|exposé|,|Skins|has|its|heart|in|the|right|place|,|but|that|'s|not|much|to|hang|a|soap|opera|on|.\nThe|whole|film|has|this|sneaky|feel|to|it|--|as|if|the|director|is|trying|to|dupe|the|viewer|into|taking|it|all|as|Very|Important|simply|because|the|movie|is|ugly|to|look|at|and|not|a|Hollywood|product|.\nThere|'s|a|bit|of|thematic|meat|on|the|bones|of|Queen|of|the|Damned|,|as|its|origins|in|an|Anne|Rice|novel|dictate|,|but|generally|,|it|'s|a|movie|that|emphasizes|style|over|character|and|substance|.\nThe|only|way|to|tolerate|this|insipid|,|brutally|clueless|film|might|be|with|a|large|dose|of|painkillers|.\nThis|one|is|certainly|well-meaning|,|but|it|'s|also|simple-minded|and|contrived|.\nCoppola|has|made|a|film|of|intoxicating|atmosphere|and|little|else|.\nBad|and|baffling|from|the|get-go|.\nA|series|of|immaculately|composed|shots|of|Patch|Adams|quietly|freaking|out|does|not|make|for|much|of|a|movie|.\nAt|a|time|when|we|'ve|learned|the|hard|way|just|how|complex|international|terrorism|is|,|Collateral|Damage|paints|an|absurdly|simplistic|picture|.\nThe|impulses|that|produced|this|project|...|are|commendable|,|but|the|results|are|uneven|.\nA|well-acted|movie|that|simply|does|n't|gel|.\nLike|a|can|of|2-day|old|Coke|.\nYou|can|taste|it|,|but|there|'s|no|fizz|.\nThere|'s|no|excuse|for|following|up|a|delightful|,|well-crafted|family|film|with|a|computer-generated|cold|fish|.\nBoth|the|crime|story|and|the|love|story|are|unusual|.\nBut|they|do|n't|fit|well|together|and|neither|is|well|told|.\nIt|'s|both|sitcomishly|predictable|and|cloying|in|its|attempts|to|be|poignant|.\nOther|than|a|mildly|engaging|central|romance|,|Hospital|is|sickly|entertainment|at|best|and|mind-destroying|cinematic|pollution|at|worst|.\nJaglom|offers|the|none-too-original|premise|that|everyone|involved|with|moviemaking|is|a|con|artist|and|a|liar|.\nOutside|of|Burger|'s|desire|to|make|some|kind|of|film|,|it|'s|really|unclear|why|this|project|was|undertaken\nWas|I|scared|?\nOnly|at|the|prospect|of|Beck|'s|next|project|.\nLet|'s|see|,|a|haunted|house|,|a|haunted|ship|,|what|'s|next|...|Ghost|Blimp|?\nA|fragile|framework|upon|which|to|hang|broad|,|mildly|fleshed-out|characters|that|seem|to|have|been|conjured|up|only|10|minutes|prior|to|filming|.\nBy|the|time|the|plot|grinds|itself|out|in|increasingly|incoherent|fashion|,|you|might|be|wishing|for|a|watch|that|makes|time|go|faster|rather|than|the|other|way|around|.\nSince|Lee|is|a|sentimentalist|,|the|film|is|more|worshipful|than|your|random|E|!\nTrue|Hollywood|Story|.\nWes|Craven|'s|presence|is|felt|;|not|the|Craven|of|'|A|Nightmare|on|Elm|Street|'|or|`|The|Hills|Have|Eyes|,|'|but|the|sad|schlock|merchant|of|`|Deadly|Friend|.|'\nSunshine|State|surveys|the|landscape|and|assesses|the|issues|with|a|clear|passion|for|sociology|.\nBut|the|cinematography|is|cloudy|,|the|picture|making|becalmed|.\nIt|'s|one|long|bore|.\nIt|gets|old|quickly|.\nWatch|Barbershop|again|if|you|'re|in|need|of|a|Cube|fix|--|this|is|n't|worth|sitting|through|.\nIt|'s|leaden|and|predictable|,|and|laughs|are|lacking|.\n...|a|cinematic|disaster|so|inadvertently|sidesplitting|it|'s|worth|the|price|of|admission|for|the|ridicule|factor|alone|.\nSkip|this|dreck|,|rent|Animal|House|and|go|back|to|the|source|.\nThe|movie|is|a|desperate|miscalculation|.\nIt|gives|poor|Dana|Carvey|nothing|to|do|that|is|really|funny|,|and|then|expects|us|to|laugh|because|he|acts|so|goofy|all|the|time|.\nWe|just|do|n't|really|care|too|much|about|this|love|story|.\nIn|that|setting|,|their|struggle|is|simply|too|ludicrous|and|borderline|insulting|.\nThe|Transporter|bombards|the|viewer|with|so|many|explosions|and|side|snap|kicks|that|it|ends|up|being|surprisingly|dull|.\nUzumaki|'s|interesting|social|parallel|and|defiant|aesthetic|seems|a|prostituted|muse|...\n`|Men|in|Black|II|creates|a|new|threat|for|the|MIB|,|but|recycles|the|same|premise|.\nLarge|budget|notwithstanding|,|the|movie|is|such|a|blip|on|the|year|'s|radar|screen|that|it|'s|tempting|just|to|go|with|it|for|the|ride|.\nBut|this|time|,|the|old|MIB|label|stands|for|Milder|Is|n't|Better|.\nFeels|familiar|and|tired|.\nA|retread|of|material|already|thoroughly|plumbed|by|Martin|Scorsese|.\nInstead|of|making|his|own|style|,|director|Marcus|Adams|just|copies|from|various|sources|--|good|sources|,|bad|mixture\nCriminal|conspiracies|and|true|romances|move|so|easily|across|racial|and|cultural|lines|in|the|film|that|it|makes|My|Big|Fat|Greek|Wedding|look|like|an|apartheid|drama|.\nA|bore|that|tends|to|hammer|home|every|one|of|its|points|.\nA|story|which|fails|to|rise|above|its|disgusting|source|material|.\nIt|'s|fitting|that|a|movie|as|artificial|and|soulless|as|The|Country|Bears|owes|its|genesis|to|an|animatronic|display|at|Disneyland|.\nStarts|as|an|intense|political|and|psychological|thriller|but|is|sabotaged|by|ticking|time|bombs|and|other|Hollywood-action|cliches|.\nCompletely|creatively|stillborn|and|executed|in|a|manner|that|I|'m|not|sure|could|be|a|single|iota|worse|...|a|soulless|hunk|of|exploitative|garbage|.\nAn|uneven|look|into|a|grim|future|that|does|n't|come|close|to|the|level|of|intelligence|and|visual|splendour|that|can|be|seen|in|other|films|based|on|Philip|K.|Dick|stories|.\nHorrible|.\nThe|disjointed|mess|flows|as|naturally|as|Jolie|'s|hideous|yellow|`|do|.\nBolstered|by|an|astonishing|voice|cast|(|excepting|Love|Hewitt|)|,|an|interesting|racial|tension|,|and|a|storyline|that|I|have|n't|encountered|since|at|least|Pete|'s|Dragon|.\nAn|authentically|vague|,|but|ultimately|purposeless|,|study|in|total|pandemonium|.\nMakes|a|joke|out|of|car|chases|for|an|hour|and|then|gives|us|half|an|hour|of|car|chases|.\nAs|the|sulking|,|moody|male|hustler|in|the|title|role|,|(|Franco|)|has|all|of|Dean|'s|mannerisms|and|self-indulgence|,|but|none|of|his|sweetness|and|vulnerability|.\nThe|only|thing|to|fear|about|``|Fear|Dot|Com|''|is|hitting|your|head|on|the|theater|seat|in|front|of|you|when|you|doze|off|thirty|minutes|into|the|film|.\nIt|'s|too|interested|in|jerking|off|in|all|its|Byzantine|incarnations|to|bother|pleasuring|its|audience|.\n`|Synthetic|'|is|the|best|description|of|this|well-meaning|,|beautifully|produced|film|that|sacrifices|its|promise|for|a|high-powered|star|pedigree|.\nIt|concentrates|far|too|much|on|the|awkward|interplay|and|utter|lack|of|chemistry|between|Chan|and|Hewitt|.\nImpostor|ca|n't|think|of|a|thing|to|do|with|these|characters|except|have|them|run|through|dark|tunnels|,|fight|off|various|anonymous|attackers|,|and|evade|elaborate|surveillance|technologies|.\nJudd|'s|characters|ought|to|pick|up|the|durable|best|seller|Smart|Women|,|Foolish|Choices|for|advice|.\nThe|script|has|less|spice|than|a|rat|burger|and|The|Rock|'s|fighting|skills|are|more|in|line|with|Steven|Seagal|.\nThis|ill-conceived|and|expensive|project|winds|up|looking|like|a|bunch|of|talented|thesps|slumming|it|.\n...|there|'s|a|choppy|,|surface-effect|feeling|to|the|whole|enterprise|.\nDoes|n't|get|the|job|done|,|running|off|the|limited|chemistry|created|by|Ralph|Fiennes|and|Jennifer|Lopez|.\nA|particularly|joyless|,|and|exceedingly|dull|,|period|coming-of-age|tale|.\nIt|'s|impossible|to|indulge|the|fanciful|daydreams|of|Janice|Beard|(|Eileen|Walsh|)|when|her|real-life|persona|is|so|charmless|and|vacant|.\n...|it|was|n't|the|subject|matter|that|ultimately|defeated|the|film|...|It|was|the|unfulfilling|,|incongruous|,|``|wait|a|second|,|did|I|miss|something|?|''\nending|.\nThis|is|a|movie|where|the|most|notable|observation|is|how|long|you|'ve|been|sitting|still|.\nPoor|editing|,|bad|bluescreen|,|and|ultra-cheesy|dialogue|highlight|the|radical|action|.\nIt|'s|super|-|violent|,|super-serious|and|super-stupid|.\nSo|earnest|and|well-meaning|,|and|so|stocked|with|talent|,|that|you|almost|forget|the|sheer|,|ponderous|awfulness|of|its|script|.\nJust|a|string|of|stale|gags|,|with|no|good|inside|dope|,|and|no|particular|bite|.\nIt|'s|Splash|without|the|jokes|.\nThe|Château|would|have|been|benefited|from|a|sharper|,|cleaner|script|before|it|went|in|front|of|the|camera|.\nNot|to|mention|a|sharper|,|cleaner|camera|lens|.\nShallow|,|noisy|and|pretentious|.\nMorrissette|has|performed|a|difficult|task|indeed|-|he|'s|taken|one|of|the|world|'s|most|fascinating|stories|and|made|it|dull|,|lifeless|,|and|irritating|.\nGranddad|of|Le|Nouvelle|Vague|,|Jean-Luc|Godard|continues|to|baffle|the|faithful|with|his|games|of|hide-and-seek|.\nThis|loud|and|thoroughly|obnoxious|comedy|about|a|pair|of|squabbling|working-class|spouses|is|a|deeply|unpleasant|experience|.\nIt|'s|better|than|The|Phantom|Menace|.\nBut|unless|you|'re|an|absolute|raving|Star|Wars|junkie|,|it|is|n't|much|fun|.\nPhilosophically|,|intellectually|and|logistically|a|mess|.\nA|standard|police-oriented|drama|that|,|were|it|not|for|De|Niro|'s|participation|,|would|have|likely|wound|up|a|TNT|Original|.\nCoupling|disgracefully|written|dialogue|with|flailing|bodily|movements|that|substitute|for|acting|,|Circuit|is|the|awkwardly|paced|soap|opera-ish|story|.\nHollywood|Ending|just|is|n't|very|funny|.\nThough|clearly|well-intentioned|,|this|cross-cultural|soap|opera|is|painfully|formulaic|and|stilted|.\nA|technical|triumph|and|an|extraordinary|bore|.\nI|can|easily|imagine|Benigni|'s|Pinocchio|becoming|a|Christmas|perennial|.\nCoal|is|n't|as|easy|to|come|by|as|it|used|to|be|and|this|would|be|a|worthy|substitute|for|naughty|children|'s|stockings|.\nTwo|hours|of|junk|.\nEnds|up|being|mostly|about|ravishing|costumes|,|eye-filling|,|wide-screen|production|design|and|Joan|'s|wacky|decision|to|stand|by|her|man|,|no|matter|how|many|times|he|demonstrates|that|he|'s|a|disloyal|satyr|.\nSelf-congratulatory|,|misguided|,|and|ill-informed|,|if|nonetheless|compulsively|watchable|.\nA|clumsily|manufactured|exploitation|flick|,|a|style-free|exercise|in|manipulation|and|mayhem|.\nThe|whole|affair|,|true|story|or|not|,|feels|incredibly|hokey|...|(|it|)|comes|off|like|a|Hallmark|commercial|.\nWhat|'s|missing|is|what|we|call|the|`|wow|'|factor|.\nThe|nicest|thing|that|can|be|said|about|Stealing|Harvard|(|which|might|have|been|called|Freddy|Gets|Molested|by|a|Dog|)|is|that|it|'s|not|as|obnoxious|as|Tom|Green|'s|Freddie|Got|Fingered|.\n...|Tara|Reid|plays|a|college|journalist|,|but|she|looks|like|the|six-time|winner|of|the|Miss|Hawaiian|Tropic|Pageant|,|so|I|do|n't|know|what|she|'s|doing|in|here|...\nThe|young|stars|are|too|cute|;|the|story|and|ensuing|complications|are|too|manipulative|;|the|message|is|too|blatant|;|the|resolutions|are|too|convenient|.\nNormally|,|Rohmer|'s|talky|films|fascinate|me|,|but|when|he|moves|his|setting|to|the|past|,|and|relies|on|a|historical|text|,|he|loses|the|richness|of|characterization|that|makes|his|films|so|memorable|.\nI|highly|recommend|Irwin|,|but|not|in|the|way|this|film|showcases|him|.\nIt|'s|been|13|months|and|295|preview|screenings|since|I|last|walked|out|on|a|movie|,|but|Resident|Evil|really|earned|my|indignant|,|preemptive|departure|.\nThis|picture|is|mostly|a|lump|of|run-of-the-mill|profanity|sprinkled|with|a|few|remarks|so|geared|toward|engendering|audience|sympathy|that|you|might|think|he|was|running|for|office|--|or|trying|to|win|over|a|probation|officer|.\nMalone|does|have|a|gift|for|generating|nightmarish|images|that|will|be|hard|to|burn|out|of|your|brain|.\nBut|the|movie|'s|narrative|hook|is|way|too|muddled|to|be|an|effectively|chilling|guilty|pleasure|.\nThough|it|goes|further|than|both|,|anyone|who|has|seen|The|Hunger|or|Cat|People|will|find|little|new|here|,|but|a|tasty|performance|from|Vincent|Gallo|lifts|this|tale|of|cannibal|lust|above|the|ordinary|.\nA|Blair|Witch|-|style|adventure|that|plays|like|a|bad|soap|opera|,|with|passable|performances|from|everyone|in|the|cast|.\nDiaz|wears|out|her|welcome|in|her|most|charmless|performance\nIt|is|too|bad|that|this|likable|movie|is|n't|more|accomplished|.\nThe|actors|try|hard|but|come|off|too|amateurish|and|awkward|.\nThe|plot|has|a|number|of|holes|,|and|at|times|it|'s|simply|baffling|.\nAn|ill-conceived|jumble|that|'s|not|scary|,|not|smart|and|not|engaging|.\nBrainless|,|but|enjoyably|over-the-top|,|the|retro|gang|melodrama|,|Deuces|Wild|represents|fifties|teen-gang|machismo|in|a|way|that|borders|on|rough-trade|homo-eroticism|.\nGets|bogged|down|by|an|overly|sillified|plot|and|stop-and-start|pacing|.\n``|What|John|does|is|heroic|,|but|we|do|n't|condone|it|,|''|one|of|the|film|'s|stars|recently|said|,|a|tortuous|comment|that|perfectly|illustrates|the|picture|'s|moral|schizophrenia|.\nLike|coming|into|a|long-running|,|well-written|television|series|where|you|'ve|missed|the|first|half-dozen|episodes|and|probably|wo|n't|see|the|next|six|.\nIts|generic|villains|lack|any|intrigue|(|other|than|their|funny|accents|)|and|the|action|scenes|are|poorly|delivered|.\nDripping|with|cliche|and|bypassing|no|opportunity|to|trivialize|the|material|.\nHard-core|slasher|aficionados|will|find|things|to|like|...|but|overall|the|Halloween|series|has|lost|its|edge|.\nStiff|and|schmaltzy|and|clumsily|directed|.\nThe|story|the|movie|tells|is|of|Brian|De|Palma|'s|addiction|to|the|junk-calorie|suspense|tropes|that|have|all|but|ruined|his|career|.\nToo|many|improbabilities|and|rose-colored|situations|temper|what|could|'ve|been|an|impacting|film|.\nGeneric|slasher-movie|nonsense|,|but|it|'s|not|without|style|.\nWith|tiny|little|jokes|and|nary|an|original|idea|,|this|sappy|ethnic|sleeper|proves|that|not|only|blockbusters|pollute|the|summer|movie|pool|.\nIt|sticks|rigidly|to|the|paradigm|,|rarely|permitting|its|characters|more|than|two|obvious|dimensions|and|repeatedly|placing|them|in|contrived|,|well-worn|situations|.\nEver|see|one|of|those|comedies|that|just|seem|like|a|bad|idea|from|frame|one|?\nOnce|Ice-T|sticks|his|mug|in|the|window|of|the|couple|'s|BMW|and|begins|haranguing|the|wife|in|bad|stage|dialogue|,|all|credibility|flies|out|the|window|.\nThe|best|drug|addition|movies|are|usually|depressing|but|rewarding|.\nQuitting|,|however|,|manages|just|to|be|depressing|,|as|the|lead|actor|phones|in|his|autobiographical|performance|.\nIt|would|be|great|to|see|this|turd|squashed|under|a|truck|,|preferably|a|semi|.\nIn|the|end|,|all|you|can|do|is|admire|the|ensemble|players|and|wonder|what|the|point|of|it|is|.\nFor|most|movies|,|84|minutes|is|short|,|but|this|one|feels|like|a|life|sentence|.\nWhile|Glover|,|the|irrepressible|eccentric|of|River|'s|Edge|,|Dead|Man|and|Back|to|the|Future|,|is|perfect|casting|for|the|role|,|he|represents|Bartleby|'s|main|overall|flaw|.\nShatner|is|probably|the|funniest|person|in|the|film|,|which|gives|you|an|idea|just|how|bad|it|was|.\nTries|so|hard|to|be|quirky|and|funny|that|the|strain|is|all|too|evident|.\nAs|immaculate|as|Stuart|Little|2|is|,|it|could|be|a|lot|better|if|it|were|,|well|,|more|adventurous|.\nSimply|a|re-hash|of|the|other|seven|films|.\nWith|jump|cuts|,|fast|editing|and|lots|of|pyrotechnics|,|Yu|clearly|hopes|to|camouflage|how|bad|his|movie|is|.\nHe|fails|.\nI|found|myself|more|appreciative|of|what|the|director|was|trying|to|do|than|of|what|he|had|actually|done|.\nA|very|depressing|movie|of|many|missed|opportunities|.\nGoes|on|and|on|to|the|point|of|nausea|.\nBy|turns|numbingly|dull-witted|and|disquietingly|creepy|.\nBoy|,|has|this|franchise|ever|run|out|of|gas|.\nOne|problem|with|the|movie|,|directed|by|Joel|Schumacher|,|is|that|it|jams|too|many|prefabricated|story|elements|into|the|running|time|.\nThe|comedy|is|nonexistent|.\n...|a|bland|,|pretentious|mess|.\nIt|'s|a|pedestrian|,|flat|drama|that|screams|out|`|amateur|'|in|almost|every|frame|.\nA|bland|animated|sequel|that|hardly|seems|worth|the|effort|.\nIt|'s|not|just|the|vampires|that|are|damned|in|Queen|of|the|Damned|--|the|viewers|will|feel|they|suffer|the|same|fate|.\nIf|religious|films|are|n't|your|bailiwick|,|stay|away|.\nOtherwise|,|this|could|be|a|passable|date|film|.\nThis|is|the|case|of|a|pregnant|premise|being|wasted|by|a|script|that|takes|few|chances|and|manages|to|insult|the|intelligence|of|everyone|in|the|audience|.\nThe|pace|and|the|visuals|are|so|hyped|up|that|a|curious|sense|of|menace|informs|everything|.\nStuffy|,|full|of|itself|,|morally|ambiguous|and|nothing|to|shout|about|.\nIt|is|most|of|the|things|Costner|movies|are|known|for|;|it|'s|sanctimonious|,|self-righteous|and|so|eager|to|earn|our|love|that|you|want|to|slap|it|.\nDo|n't|let|the|subtitles|fool|you|;|the|movie|only|proves|that|Hollywood|no|longer|has|a|monopoly|on|mindless|action|.\nChai|'s|structure|and|pacing|are|disconcertingly|slack|.\nTo|be|oblivious|to|the|existence|of|this|film|would|be|very|sweet|indeed|.\nThe|director|,|with|his|fake|backdrops|and|stately|pacing|,|never|settles|on|a|consistent|tone|.\nOne|just|waits|grimly|for|the|next|shock|without|developing|much|attachment|to|the|characters|.\nInstead|of|panoramic|sweep|,|Kapur|gives|us|episodic|choppiness|,|undermining|the|story|'s|emotional|thrust|.\nThe|director|seems|to|take|an|unseemly|pleasure|in|(|the|characters|'|)|misery|and|at|the|same|time|to|congratulate|himself|for|having|the|guts|to|confront|it|.\nThis|dubious|product|of|a|college-spawned|(|Colgate|U.|)|comedy|ensemble|known|as|Broken|Lizard|plays|like|a|mix|of|Cheech|and|Chong|and|CHiPs|.\nThe|movie|does|n't|think|much|of|its|characters|,|its|protagonist|,|or|of|us|.\nSuper|Troopers|is|an|odd|amalgam|of|comedy|genres|,|existing|somewhere|between|the|often|literal|riffs|of|early|Zucker|Brothers\\/Abrahams|films|,|and|the|decidedly|foul|stylings|of|their|post-modern|contemporaries|,|The|Farrelly|Brothers|.\n...|will|always|be|remembered|for|the|9-11|terrorist|attacks|.\nAfter|seeing|the|film|,|I|can|tell|you|that|there|'s|no|other|reason|why|anyone|should|bother|remembering|it|.\nMade|me|feel|uneasy|,|even|queasy|,|because|(|Solondz|'s|)|cool|compassion|is|on|the|border|of|bemused|contempt|.\nAs|a|kind|of|colorful|,|dramatized|PBS|program|,|Frida|gets|the|job|done|.\nBut|,|for|that|,|why|not|watch|a|documentary|?\nWith|minimal|imagination|,|you|could|restage|the|whole|thing|in|your|bathtub|.\nNights|feels|more|like|a|quickie|TV|special|than|a|feature|film|...|It|'s|not|even|a|TV|special|you|'d|bother|watching|past|the|second|commercial|break|.\nAlthough|...|visually|striking|and|slickly|staged|,|it|'s|also|cold|,|grey|,|antiseptic|and|emotionally|desiccated|.\nYou|can|see|where|Big|Bad|Love|is|trying|to|go|,|but|it|never|quite|gets|there|.\nFriday|After|Next|is|the|kind|of|film|that|could|only|be|made|by|African-Americans|because|of|its|broad|racial|insensitivity|towards|African-Americans|.\nIt|'s|not|as|awful|as|some|of|the|recent|Hollywood|trip|tripe|...|but|it|'s|far|from|a|groundbreaking|endeavor|.\nThe|only|thing|``|swept|away|''|is|the|one|hour|and|thirty-three|minutes|spent|watching|this|waste|of|time|.\nOne-sided|documentary|offers|simplistic|explanations|to|a|very|complex|situation|.\n...|Stylistically|,|the|movie|is|a|disaster|.\nThe|corpse|count|ultimately|overrides|what|little|we|learn|along|the|way|about|vicarious|redemption|.\nAs|violent|,|profane|and|exploitative|as|the|most|offensive|action|flick|you|'ve|ever|seen|.\nEgoyan|'s|work|often|elegantly|considers|various|levels|of|reality|and|uses|shifting|points|of|view|,|but|here|he|has|constructed|a|film|so|labyrinthine|that|it|defeats|his|larger|purpose|.\nLife|or|Something|Like|It|has|its|share|of|high|points|,|but|it|misses|too|many|opportunities|.\nThis|is|a|truly|,|truly|bad|movie|.\nDespite|bearing|the|Paramount|imprint|,|it|'s|a|bargain-basement|European|pickup|.\nWhat|'s|hard|to|understand|is|why|anybody|picked|it|up|.\nWiser|souls|would|have|tactfully|pretended|not|to|see|it|and|left|it|lying|there\nBelievability|was|n't|one|of|the|film|'s|virtues|.\nSewer|rats|could|watch|this|movie|and|be|so|skeeved|out|that|they|'d|need|a|shower|.\nThe|Santa|Clause|2|'s|plot|may|sound|like|it|was|co-written|by|Mattel|executives|and|lobbyists|for|the|tinsel|industry|.\nHis|best|film|remains|his|shortest|,|The|Hole|,|which|makes|many|of|the|points|that|this|film|does|but|feels|less|repetitive|.\nJust|another|disjointed|,|fairly|predictable|psychological|thriller|.\n...|stumbles|over|every|cheap|trick|in|the|book|trying|to|make|the|outrage|come|even|easier|.\nEven|the|hastily|and|amateurishly|drawn|animation|can|not|engage|.\nKung|Pow|is|Oedekerk|'s|realization|of|his|childhood|dream|to|be|in|a|martial-arts|flick|,|and|proves|that|sometimes|the|dreams|of|youth|should|remain|just|that|.\nBusy|urban|comedy|is|clearly|not|Zhang|'s|forte|,|his|directorial|touch|is|neither|light|nor|magical|enough|to|bring|off|this|kind|of|whimsy|.\nNot|completely|loveable|--|but|what|underdog|movie|since|The|Bad|News|Bears|has|been|?\n--|but|certainly|hard|to|hate|.\nA|movie|that|ca|n't|get|sufficient|distance|from|Leroy|'s|delusions|to|escape|their|maudlin|influence|.\nIt|'s|Young|Guns|meets|Goodfellas|in|this|easily|skippable|hayseeds-vs|.\n-|greaseballs|mob|action-comedy|.\nLouiso|lets|the|movie|dawdle|in|classic|disaffected-indie-film|mode|,|and|brother|Hoffman|'s|script|stumbles|over|a|late-inning|twist|that|just|does|n't|make|sense|.\nThe|movie|straddles|the|fence|between|escapism|and|social|commentary|,|and|on|both|sides|it|falls|short|.\nThe|film|is|old-fashioned|,|occasionally|charming|and|as|subtle|as|boldface|.\nCa|n't|get|enough|of|libidinous|young|city|dwellers|?\nTry|this|obscenely|bad|dark|comedy|,|so|crass|that|it|makes|Edward|Burns|'|Sidewalks|of|New|York|look|like|Oscar|Wilde|.\nIn|The|New|Guy|,|even|the|bull|gets|recycled|.\nLargely|,|this|is|a|movie|that|also|does|it|by|the|numbers|.\nOn|top|of|a|foundering|performance|,|(|Madonna|'s|)|denied|her|own|athleticism|by|lighting|that|emphasizes|every|line|and|sag|.\nThis|is|the|first|full|scale|WWII|flick|from|Hong|Kong|'s|John|Woo|.\nHe|'s|not|good|with|people|.\nPatchy|combination|of|soap|opera|,|low-tech|magic|realism|and|,|at|times|,|ploddingly|sociological|commentary|.\n(|Stevens|is|)|so|stoked|to|make|an|important|film|about|human|infidelity|and|happenstance|that|he|tosses|a|kitchen|sink|onto|a|story|already|overladen|with|plot|conceits|.\nSo|boring|that|even|its|target|audience|talked|all|the|way|through|it|.\nOne|of|the|more|glaring|signs|of|this|movie|'s|servitude|to|its|superstar|is|the|way|it|skirts|around|any|scenes|that|might|have|required|genuine|acting|from|Ms.|Spears|.\nHollywood|Ending|is|the|most|disappointing|Woody|Allen|movie|ever|.\nHe|has|a|great|cast|and|a|great|idea|.\nBut|the|execution|is|a|flop|with|the|exception|of|about|six|gags|that|really|work|.\n...|generically|,|forgettably|pleasant|from|start|to|finish|.\nIt|'s|just|hard|to|believe|that|a|life|like|this|can|sound|so|dull|.\nWhen|not|wallowing|in|its|characters|'|frustrations|,|the|movie|is|busy|contriving|false|,|sitcom-worthy|solutions|to|their|problems|.\nAn|overstylized|,|puréed|mélange|of|sex|,|psychology|,|drugs|and|philosophy|.\nSometimes|entertaining|,|sometimes|indulgent|--|but|never|less|than|pure|wankery|.\n`|Lovely|and|Amazing|,|'|unhappily|,|is|neither|...|excessively|strained|and|contrived|.\nRingu|is|a|disaster|of|a|story|,|full|of|holes|and|completely|lacking|in|chills|.\nIgnore|the|reputation|,|and|ignore|the|film|.\nThis|one|is|a|few|bits|funnier|than|Malle|'s|dud|,|if|only|because|the|cast|is|so|engagingly|messing|around|like|Slob|City|reductions|of|Damon|Runyon|crooks|.\n`|It|'s|painful|to|watch|Witherspoon|'s|talents|wasting|away|inside|unnecessary|films|like|Legally|Blonde|and|Sweet|Home|Abomination|,|I|mean|,|Alabama|.|'\nA|plodding|teen|remake|that|'s|so|mechanical|you|can|smell|the|grease|on|the|plot|twists|.\nTrying|to|figure|out|the|rules|of|the|Country|Bear|universe|--|when|are|bears|bears|and|when|are|they|like|humans|,|only|hairier|--|would|tax|Einstein|'s|brain|.\nEven|in|terms|of|the|low-grade|cheese|standards|on|which|it|operates|,|it|never|quite|makes|the|grade|as|tawdry|trash|.\nAmidst|the|action|,|the|script|carries|Arnold|(|and|the|viewers|)|into|the|forbidden|zone|of|sympathizing|with|terrorist|motivations|by|presenting|the|``|other|side|of|the|story|.|''\nRife|with|nutty|cliches|and|far|too|much|dialogue|.\nIt|'s|a|100-year|old|mystery|that|is|constantly|being|interrupted|by|Elizabeth|Hurley|in|a|bathing|suit|.\n...|one|big|laugh|,|three|or|four|mild|giggles|,|and|a|whole|lot|of|not|much|else|.\nToo|intensely|focused|on|the|travails|of|being|Hal|Hartley|to|function|as|pastiche|,|No|Such|Thing|is|Hartley|'s|least|accessible|screed|yet|.\nKenneth|Branagh|'s|energetic|sweet-and-sour|performance|as|a|curmudgeonly|British|playwright|grounds|this|overstuffed|,|erratic|dramedy|in|which|he|and|his|improbably|forbearing|wife|contend|with|craziness|and|child-rearing|in|Los|Angeles|.\nDirector|Uwe|Boll|and|writer|Robert|Dean|Klein|fail|to|generate|any|interest|in|an|unsympathetic|hero|caught|up|in|an|intricate|plot|that|while|cleverly|worked|out|,|can|not|overcome|blah|characters|.\nMs.|Phoenix|is|completely|lacking|in|charm|and|charisma|,|and|is|unable|to|project|either|Esther|'s|initial|anomie|or|her|eventual|awakening|.\nThe|movie|fails|to|portray|its|literarily|talented|and|notorious|subject|as|anything|much|more|than|a|dirty|old|man|.\nA|clichéd|and|shallow|cautionary|tale|about|the|hard-partying|lives|of|gay|men|.\nThe|fetid|underbelly|of|fame|has|never|looked|uglier|.\nA|little|weak|--|and|it|is|n't|that|funny|.\nWhile|it|is|welcome|to|see|a|Chinese|film|depict|a|homosexual|relationship|in|a|mature|and|frank|fashion|,|Lan|Yu|never|catches|dramatic|fire|.\nThe|script|boasts|some|tart|TV-insider|humor|,|but|the|film|has|not|a|trace|of|humanity|or|empathy|.\nDespite|the|pyrotechnics|,|Narc|is|strictly|by|the|book|.\nIn|both|the|writing|and|cutting|,|it|does|not|achieve|the|kind|of|dramatic|unity|that|transports|you|.\nYou|end|up|simply|admiring|this|bit|or|that|,|this|performance|or|that|.\nCacoyannis|is|perhaps|too|effective|in|creating|an|atmosphere|of|dust-caked|stagnation|and|labored|gentility|.\nWorth|seeing|once|,|but|its|charm|quickly|fades|.\nThe|original|was|n't|a|good|movie|but|this|remake|makes|it|look|like|a|masterpiece|!\nOne|suspects|that|Craven|endorses|They|simply|because|this|movie|makes|his|own|look|much|better|by|comparison|.\nGere|gives|a|good|performance|in|a|film|that|does|n't|merit|it|.\nYour|appreciation|of|it|will|depend|on|what|experiences|you|bring|to|it|and|what|associations|you|choose|to|make|.\nIncludes|too|much|obvious|padding|.\nThere|'s|no|palpable|chemistry|between|Lopez|and|male|lead|Ralph|Fiennes|,|plus|the|script|by|Working|Girl|scribe|Kevin|Wade|is|workmanlike|in|the|extreme|.\nI|'m|not|sure|which|half|of|Dragonfly|is|worse|:|The|part|where|nothing|'s|happening|,|or|the|part|where|something|'s|happening|,|but|it|'s|stupid|.\nDo|n't|expect|any|subtlety|from|this|latest|entry|in|the|increasingly|threadbare|gross-out|comedy|cycle|.\nThe|only|camouflage|Carvey|should|now|be|considering|is|a|paper|bag|to|wear|over|his|head|when|he|goes|out|into|public|,|to|avoid|being|recognized|as|the|man|who|bilked|unsuspecting|moviegoers|.\nShot|like|a|postcard|and|overacted|with|all|the|boozy|self-indulgence|that|brings|out|the|worst|in|otherwise|talented|actors|...\nSpain|'s|greatest|star|wattage|does|n't|overcome|the|tumult|of|maudlin|tragedy|.\nConforms|itself|with|creating|a|game|of|`|who|'s|who|'|...|where|the|characters|'|moves|are|often|more|predictable|than|their|consequences|.\nLooks|and|feels|like|a|low-budget|hybrid|of|Scarface|or|Carlito|'s|Way|.\nThe|script|is|a|tired|one|,|with|few|moments|of|joy|rising|above|the|stale|material|.\nSuffers|from|all|the|excesses|of|the|genre|.\nThe|verdict|:|Two|bodies|and|hardly|a|laugh|between|them|.\nThe|latest|Adam|Sandler|assault|and|possibly|the|worst|film|of|the|year|.\nDownbeat|,|period-perfect|biopic|hammers|home|a|heavy-handed|moralistic|message|.\nWhile|the|film|is|competent|,|it|'s|also|uninspired|,|lacking|the|real|talent|and|wit|to|elevate|it|beyond|its|formula|to|the|level|of|classic|romantic|comedy|to|which|it|aspires|.\nThey|ought|to|be|a|whole|lot|scarier|than|they|are|in|this|tepid|genre|offering|.\nIt|'s|harmless|,|diverting|fluff|.\nBut|it|'s|hard|to|imagine|a|more|generic|effort|in|the|genre|.\nIt|'s|just|plain|lurid|when|it|is|n't|downright|silly|.\nComedy|troupe|Broken|Lizard|'s|first|movie|is|very|funny|but|too|concerned|with|giving|us|a|plot|.\nPap|invested|in|undergraduate|doubling|subtexts|and|ridiculous|stabs|at|existentialism|reminding|of|the|discovery|of|the|wizard|of|God|in|the|fifth|Trek|flick|.\nA|horror|movie|with|seriously|dumb|characters|,|which|somewhat|dilutes|the|pleasure|of|watching|them|stalked|by|creepy-crawly|bug|things|that|live|only|in|the|darkness|.\nIt|'s|a|film|with|an|idea|buried|somewhere|inside|its|fabric|,|but|never|clearly|seen|or|felt|.\n`|All|in|all|,|Reign|of|Fire|will|be|a|good|(|successful|)|rental|.|'\nOccasionally|funny|,|sometimes|inspiring|,|often|boring|.\nA|movie|in|which|two|not|very|absorbing|characters|are|engaged|in|a|romance|you|ca|n't|wait|to|see|end|.\nThe|predominantly|amateur|cast|is|painful|to|watch|,|so|stilted|and|unconvincing|are|the|performances|.\nWho|are|`|they|'|?\nWell|,|they|'re|`|they|'|.\nThey|'re|the|unnamed|,|easily|substitutable|forces|that|serve|as|whatever|terror|the|heroes|of|horror|movies|try|to|avoid|.\nThey|exist|for|hushed|lines|like|``|They|'re|back|!|''\n,|``|They|'re|out|there|!|''\nand|``|They|'re|coming|!|''\nElegantly|crafted|but|emotionally|cold|,|a|puzzle|whose|intricate|construction|one|can|admire|but|is|difficult|to|connect|with|on|any|deeper|level|.\nWere|Dylan|Thomas|alive|to|witness|first-time|director|Ethan|Hawke|'s|strained|Chelsea|Walls|,|he|might|have|been|tempted|to|change|his|landmark|poem|to|,|`|Do|Not|Go|Gentle|Into|That|Good|Theatre|.|'\nThe|story|has|its|redundancies|,|and|the|young|actors|,|not|very|experienced|,|are|sometimes|inexpressive|.\nI|'m|sure|the|filmmaker|would|disagree|,|but|,|honestly|,|I|do|n't|see|the|point|.\nIt|'s|a|visual|Rorschach|test|and|I|must|have|failed|.\nThe|film|is|really|closer|to|porn|than|a|serious|critique|of|what|'s|wrong|with|this|increasingly|pervasive|aspect|of|gay|culture|.\nMurder|by|Numbers|just|does|n't|add|up|.\nClare|Peploe|'s|airless|movie|adaptation|could|use|a|little|American|Pie-like|irreverence|.\nVideo|games|are|more|involving|than|this|mess|.\nClayburgh|and|Tambor|are|charming|performers|;|neither|of|them|deserves|Eric|Schaeffer|.\nA|pale|Xerox|of|other|,|better|crime|movies|.\n...|a|hokey|piece|of|nonsense|that|tries|too|hard|to|be|emotional|.\nIlliterate|,|often|inert|sci-fi|action|thriller|.\nA|perfect|example|of|rancid|,|well-intentioned|,|but|shamelessly|manipulative|movie|making|.\nThe|adventure|does|n't|contain|half|the|excitement|of|Balto|,|or|quarter|the|fun|of|Toy|Story|2|.\nEssentially|a|collection|of|bits|--|and|they|'re|all|naughty|.\nA|mess|.\nThe|screenplay|does|too|much|meandering|,|Norton|has|to|recite|bland|police|procedural|details|,|Fiennes|wanders|around|in|an|attempt|to|seem|weird|and|distanced|,|Hopkins|looks|like|a|drag|queen|.\nThe|screenplay|by|James|Eric|,|James|Horton|and|director|Peter|O'Fallon|...|is|so|pat|it|makes|your|teeth|hurt|.\nBefore|it|takes|a|sudden|turn|and|devolves|into|a|bizarre|sort|of|romantic|comedy|,|Steven|Shainberg|'s|adaptation|of|Mary|Gaitskill|'s|harrowing|short|story|...|is|a|brilliantly|played|,|deeply|unsettling|experience|.\nSolaris|is|rigid|and|evasive|in|ways|that|Soderbergh|'s|best|films|,|``|Erin|Brockovich|,|''|``|Out|of|Sight|''|and|``|Ocean|'s|Eleven|,|''|never|were|.\nSeems|like|something|American|and|European|gay|movies|were|doing|20|years|ago|.\nIn|the|process|of|trimming|the|movie|to|an|expeditious|84|minutes|,|director|Roger|Kumble|seems|to|have|dumped|a|whole|lot|of|plot|in|favor|of|...|outrageous|gags|.\nYou|can|see|the|would-be|surprises|coming|a|mile|away|,|and|the|execution|of|these|twists|is|delivered|with|a|hammer|.\nThumbs|down|.\nThe|characters|are|paper|thin|and|the|plot|is|so|cliched|and|contrived|that|it|makes|your|least|favorite|James|Bond|movie|seem|as|cleverly|plotted|as|The|Usual|Suspects|.\n...|del|Toro|maintains|a|dark|mood|that|makes|the|film|seem|like|something|to|endure|instead|of|enjoy|.\nThe|movie|eventually|snaps|under|the|strain|of|its|plot|contrivances|and|its|need|to|reassure|.\nThe|real|question|this|movie|poses|is|not|`|Who|?|'\nbut|`|Why|?|'\nNow|here|'s|a|sadistic|bike|flick|that|would|have|made|Vittorio|De|Sica|proud|.\nA|movie|that|'s|about|as|overbearing|and|over-the-top|as|the|family|it|depicts|.\nA|movie|in|which|laughter|and|self-exploitation|merge|into|jolly|soft-porn|'em|powerment|.|'\nOccasionally|interesting|but|essentially|unpersuasive|,|a|footnote|to|a|still|evolving|story|.\nIf|we|'re|to|slap|protagonist|Genevieve|LePlouff|because|she|'s|French|,|do|we|have|that|same|option|to|slap|her|creators|because|they|'re|clueless|and|inept|?\nMoretti|plays|Giovanni|,|a|psychiatrist|who|predictably|finds|it|difficult|to|sustain|interest|in|his|profession|after|the|family|tragedy|.\nToo|predictably|,|in|fact|.\nAlternative|medicine|obviously|has|its|merits|...|but|Ayurveda|does|the|field|no|favors|.\nThis|thing|works|on|no|level|whatsoever|for|me|.\nIt|follows|the|basic|plot|trajectory|of|nearly|every|Schwarzenegger|film|:|Someone|crosses|Arnie|.\nArnie|blows|things|up|.\nIce|Age|posits|a|heretofore|unfathomable|question|:|Is|it|possible|for|computer-generated|characters|to|go|through|the|motions|?\nAn|incoherent|jumble|of|a|film|that|'s|rarely|as|entertaining|as|it|could|have|been|.\n...|they|missed|the|boat|.\nMore|dutiful|than|enchanting|...|terribly|episodic|and|lacking|the|spark|of|imagination|that|might|have|made|it|an|exhilarating|treat|.\nLaconic|and|very|stilted|in|its|dialogue|,|this|indie|flick|never|found|its|audience|,|probably|because|it|'s|extremely|hard|to|relate|to|any|of|the|characters|.\nThe|comedy|Death|to|Smoochy|is|a|rancorous|curiosity|:|a|movie|without|an|apparent|audience|.\nBarney|'s|ideas|about|creation|and|identity|do|n't|really|seem|all|that|profound|,|at|least|by|way|of|what|can|be|gleaned|from|this|three-hour|endurance|test|built|around|an|hour|'s|worth|of|actual|material|.\nAffleck|merely|creates|an|outline|for|a|role|he|still|needs|to|grow|into|,|a|role|that|Ford|effortlessly|filled|with|authority|.\nCinematic|pyrotechnics|aside|,|the|only|thing|Avary|seems|to|care|about|are|mean|giggles|and|pulchritude|.\nIt|makes|sense|that|he|went|back|to|school|to|check|out|the|girls|--|his|film|is|a|frat|boy|'s|idea|of|a|good|time|.\nThe|narrative|is|so|consistently|unimaginative|that|probably|the|only|way|to|have|saved|the|film|is|with|the|aid|of|those|wisecracking|Mystery|Science|Theater|3000|guys|.\nNothing|more|or|less|than|an|outright|bodice-ripper|--|it|should|have|ditched|the|artsy|pretensions|and|revelled|in|the|entertaining|shallows|.\nA|living|testament|to|the|power|of|the|eccentric|and|the|strange|.\nThe|fact|that|it|is|n't|very|good|is|almost|beside|the|point|.\nFeels|less|like|a|cousin|to|Blade|Runner|than|like|a|bottom-feeder|sequel|in|the|Escape|From|New|York|series|.\nWhat|might|have|been|acceptable|on|the|printed|page|of|Iles|'|book|does|not|translate|well|to|the|screen|.\nIf|Oscar|had|a|category|called|Best|Bad|Film|You|Thought|Was|Going|To|Be|Really|Awful|But|Was|n't|,|Guys|would|probably|be|duking|it|out|with|The|Queen|of|the|Damned|for|the|honor|.\nA|poky|and|pseudo-serious|exercise|in|sham|actor|workshops|and|an|affected|malaise|.\nMediocre|fable|from|Burkina|Faso|.\nFessenden|has|nurtured|his|metaphors|at|the|expense|of|his|narrative|,|but|he|does|display|an|original|talent|.\nSince|the|movie|is|based|on|a|Nicholas|Sparks|best|seller|,|you|know|death|is|lurking|around|the|corner|,|just|waiting|to|spoil|things|.\nBottom-rung|New|Jack|City|wannabe|.\nFincher|takes|no|apparent|joy|in|making|movies|,|and|he|gives|none|to|the|audience|.\nIt|'s|mildly|amusing|,|but|I|certainly|ca|n't|recommend|it|.\nNicholas|Nickleby|celebrates|the|human|spirit|with|such|unrelenting|Dickensian|decency|that|it|turned|me|(|horrors|!|)\ninto|Scrooge|.\nFear|Dot|Com|is|more|frustrating|than|a|modem|that|disconnects|every|10|seconds|.\nFull|of|flatulence|jokes|and|mild|sexual|references|,|Kung|Pow|!\nis|the|kind|of|movie|that|'s|critic-proof|,|simply|because|it|aims|so|low|.\nMay|cause|you|to|bite|your|tongue|to|keep|from|laughing|at|the|ridiculous|dialog|or|the|oh-so|convenient|plot|twists|.\nThere|are|just|too|many|characters|saying|too|many|clever|things|and|getting|into|too|many|pointless|situations|.\nWhere|'s|the|movie|here|?\nA|dark|,|dull|thriller|with|a|parting|shot|that|misfires|.\nLacking|substance|and|soul|,|Crossroads|comes|up|shorter|than|Britney|'s|cutoffs|.\nCassavetes|thinks|he|'s|making|Dog|Day|Afternoon|with|a|cause|,|but|all|he|'s|done|is|to|reduce|everything|he|touches|to|a|shrill|,|didactic|cartoon|.\nBuries|an|interesting|storyline|about|morality|and|the|choices|we|make|underneath|such|a|mountain|of|clichés|and|borrowed|images|that|it|might|more|accurately|be|titled|Mr.|Chips|off|the|Old|Block|.\nAlthough|sensitive|to|a|fault|,|it|'s|often|overwritten|,|with|a|surfeit|of|weighty|revelations|,|flowery|dialogue|,|and|nostalgia|for|the|past|and|roads|not|taken|.\nIt|'s|so|badly|made|on|every|level|that|I|'m|actually|having|a|hard|time|believing|people|were|paid|to|make|it|.\nWithout|non-stop|techno|or|the|existential|overtones|of|a|Kieslowski|morality|tale|,|Maelström|is|just|another|Winter|Sleepers|.\nNicks|,|seemingly|uncertain|what|'s|going|to|make|people|laugh|,|runs|the|gamut|from|stale|parody|to|raunchy|sex|gags|to|formula|romantic|comedy|.\n`|A|'|for|creativity|but|comes|across|more|as|a|sketch|for|a|full-length|comedy|.\nIf|there|'s|one|thing|this|world|needs|less|of|,|it|'s|movies|about|college|that|are|written|and|directed|by|people|who|could|n't|pass|an|entrance|exam|.\nThe|script|kicks|in|,|and|Mr.|Hartley|'s|distended|pace|and|foot-dragging|rhythms|follow|.\n(|E|)|ventually|,|every|idea|in|this|film|is|flushed|down|the|latrine|of|heroism|.\nI|am|sorry|that|I|was|unable|to|get|the|full|brunt|of|the|comedy|.\nNo|telegraphing|is|too|obvious|or|simplistic|for|this|movie|.\nLooks|and|feels|like|a|project|better|suited|for|the|small|screen|.\nIn|its|best|moments|,|resembles|a|bad|high|school|production|of|Grease|,|without|benefit|of|song|.\nIndifferently|implausible|popcorn|programmer|of|a|movie|.\nIt|'s|inoffensive|,|cheerful|,|built|to|inspire|the|young|people|,|set|to|an|unending|soundtrack|of|beach|party|pop|numbers|and|aside|from|its|remarkable|camerawork|and|awesome|scenery|,|it|'s|about|as|exciting|as|a|sunburn|.\nHis|comedy|premises|are|often|hackneyed|or|just|plain|crude|,|calculated|to|provoke|shocked|laughter|,|without|following|up|on|a|deeper|level|.\nChristina|Ricci|comedy|about|sympathy|,|hypocrisy|and|love|is|a|misfire|.\nAt|times|,|the|suspense|is|palpable|,|but|by|the|end|there|'s|a|sense|that|the|crux|of|the|mystery|hinges|on|a|technicality|that|strains|credulity|and|leaves|the|viewer|haunted|by|the|waste|of|potential|.\nThey|should|have|called|it|Gutterball|.\nThekids|will|probably|stay|amused|at|the|kaleidoscope|of|big|,|colorful|characters|.\nMom|and|Dad|can|catch|some|quality|naptime|along|the|way|.\nIt|'s|too|self-important|and|plodding|to|be|funny|,|and|too|clipped|and|abbreviated|to|be|an|epic|.\nThe|best|that|can|be|said|about|the|work|here|of|Scottish|director|Ritchie|...|is|that|he|obviously|does|n't|have|his|heart|in|it|.\nLess|dizzying|than|just|dizzy|,|the|jaunt|is|practically|over|before|it|begins|.\nSlick|piece|of|cross-promotion|.\nTaylor|appears|to|have|blown|his|entire|budget|on|soundtrack|rights|and|had|nothing|left|over|for|jokes|.\nIt|believes|it|'s|revealing|some|great|human|truths|,|when|,|in|reality|,|it|'s|churning|ground|that|has|long|passed|the|point|of|being|fertile|.\nIt|all|drags|on|so|interminably|it|'s|like|watching|a|miserable|relationship|unfold|in|real|time|.\nVilleneuve|spends|too|much|time|wallowing|in|Bibi|'s|generic|angst|(|there|are|a|lot|of|shots|of|her|gazing|out|windows|)|.\n(|T|)|here|'s|only|so|much|anyone|can|do|with|a|florid|,|overplotted|,|Anne|Rice|rock|'n'|roll|vampire|novel|before|the|built-in|silliness|of|the|whole|affair|defeats|them|.\nIt|'s|another|video|movie|photographed|like|a|film|,|with|the|bad|lighting|that|'s|often|written|off|as|indie|film|naturalism|.\nThe|techno|tux|is|good|for|a|few|laughs|,|as|are|Chan|and|Hewitt|,|but|when|such|a|good|design|turns|out|to|be|a|cheap|knockoff|,|we|ca|n't|recommend|anything|but|a|rental|for|The|Tuxedo|.\nI|got|a|headache|watching|this|meaningless|downer|.\nApart|from|dazzling|cinematography|,|we|'ve|seen|just|about|everything|in|Blue|Crush|in|one|form|or|the|other|.\nToo|much|of|the|humor|falls|flat|.\nDetox|is|ultimately|a|pointless|endeavor|.\nVan|Wilder|does|n't|bring|anything|new|to|the|proverbial|table|,|but|it|does|possess|a|coherence|absent|in|recent|crass-a-thons|like|Tomcats|,|Freddy|Got|Fingered|,|and|Slackers|.\nThe|piquant|story|needs|more|dramatic|meat|on|its|bones|.\nVery|special|effects|,|brilliantly|bold|colors|and|heightened|reality|ca|n't|hide|the|giant|Achilles|'|heel|in|``|Stuart|Little|2|``|:|There|'s|just|no|story|,|folks|.\nThe|plot|combines|The|Blues|Brothers|and|Almost|Famous|(|but|with|bears|,|and|a|G|rating|)|,|with|an|excruciating|dollop|of|Disney|sentimentality|mixed|in|for|good|measure|.\nNo|way|I|can|believe|this|load|of|junk|.\n``|Roger|Michell|(|''|Notting|Hill|``|)|directs|a|morality|thriller|.|''\nIt|'s|dumb|,|but|more|importantly|,|it|'s|just|not|scary|.\nThere|is|no|pleasure|in|watching|a|child|suffer|.\nJust|embarrassment|and|a|vague|sense|of|shame|.\nThe|movie|'s|accumulated|force|still|feels|like|an|ugly|knot|tightening|in|your|stomach|.\nBut|is|that|knot|from|dramatic|tension|or|a|symptom|of|artistic|malnutrition|?\nEven|with|a|green|Mohawk|and|a|sheet|of|fire-red|flame|tattoos|covering|his|shoulder|,|however|,|Kilmer|seems|to|be|posing|,|rather|than|acting|.\nAnd|that|leaves|a|hole|in|the|center|of|The|Salton|Sea|.\nThere|'s|just|no|currency|in|deriding|James|Bond|for|being|a|clichéd|,|doddering|,|misogynistic|boy|'s|club|.\nWhen|the|film|ended|,|I|felt|tired|and|drained|and|wanted|to|lie|on|my|own|deathbed|for|a|while|.\nFull|of|witless|jokes|,|dealing|in|broad|stereotypes|and|outrageously|unbelievable|scenarios|,|and|saddled|with|a|general|air|of|misogyny\nThe|film|'s|hackneyed|message|is|not|helped|by|the|thin|characterizations|,|nonexistent|plot|and|pretentious|visual|style|.\nThe|Iditarod|lasts|for|days|-|this|just|felt|like|it|did|.\nIt|feels|like|an|after-school|special|gussied|up|with|some|fancy|special|effects|,|and|watching|its|rote|plot|points|connect|is|about|as|exciting|as|gazing|at|an|egg|timer|for|93|minutes|.\nThis|movie|is|maddening|.\nIt|conveys|a|simple|message|in|a|visual|style|that|is|willfully|overwrought|.\nShould|have|been|someone|else|-\nThe|film|is|based|on|truth|and|yet|there|is|something|about|it|that|feels|incomplete|,|as|if|the|real|story|starts|just|around|the|corner|.\nWhy|make|a|documentary|about|these|marginal|historical|figures|?\nWould|n't|one|about|their|famous|dad|,|author|of|Death|in|Venice|,|etc.|,|be|more|valuable|?\nThe|lower|your|expectations|,|the|more|you|'ll|enjoy|it|.\nRarely|has|leukemia|looked|so|shimmering|and|benign|.\n...|is|an|arthritic|attempt|at|directing|by|Callie|Khouri|.\nI|had|to|look|away|-|this|was|god|awful|.\nEven|in|this|less-than-magic|kingdom|,|Reese|rules|.\nVelocity|represents|everything|wrong|with|''|independent|film|''|as|a|commodified|,|sold-out|concept|on|the|American|filmmaking|scene|.\nJust|one|bad|idea|after|another|.\nBecause|of|an|unnecessary|and|clumsy|last|scene|,|`|Swimfan|'|left|me|with|a|very|bad|feeling|.\nThough|Moonlight|Mile|is|replete|with|acclaimed|actors|and|actresses|and|tackles|a|subject|that|'s|potentially|moving|,|the|movie|is|too|predictable|and|too|self-conscious|to|reach|a|level|of|high|drama|.\nA|movie|that|hovers|somewhere|between|an|acute|character|study|and|a|trite|power|struggle|.\nCorpus|Collosum|--|while|undeniably|interesting|--|wore|out|its|welcome|well|before|the|end|credits|rolled|about|45|minutes|in|.\nThe|last|20|minutes|are|somewhat|redeeming|,|but|most|of|the|movie|is|the|same|teenage|American|road-trip|drek|we|'ve|seen|before|-|only|this|time|you|have|to|read|the|fart|jokes\nIt|'s|hard|to|like|a|film|about|a|guy|who|is|utterly|unlikeable|,|and|Shiner|,|starring|Michael|Caine|as|an|aging|British|boxing|promoter|desperate|for|a|taste|of|fame|and|fortune|,|is|certainly|that|.\nA|by-the-numbers|effort|that|wo|n't|do|much|to|enhance|the|franchise|.\nInvolves|two|mysteries|--|one|it|gives|away|and|the|other|featuring|such|badly|drawn|characters|that|its|outcome|hardly|matters|.\nOverall|the|film|feels|like|a|low-budget|TV|pilot|that|could|not|find|a|buyer|to|play|it|on|the|tube|.\nIt|'s|of|the|quality|of|a|lesser|Harrison|Ford|movie|-|Six|Days|,|Seven|Nights|,|maybe|,|or|that|dreadful|Sabrina|remake|.\nIt|appears|that|something|has|been|lost|in|the|translation|to|the|screen|.\nDespite|all|evidence|to|the|contrary|,|this|clunker|has|somehow|managed|to|pose|as|an|actual|feature|movie|,|the|kind|that|charges|full|admission|and|gets|hyped|on|TV|and|purports|to|amuse|small|children|and|ostensible|adults|.\nAn|unclassifiably|awful|study|in|self|-|and|audience-abuse|.\nThis|movie|is|something|of|an|impostor|itself|,|stretching|and|padding|its|material|in|a|blur|of|dead|ends|and|distracting|camera|work|.\nHey|Arnold|!\nThe|Movie|could|have|been|made|40|years|ago|,|and|parents|'|appreciation|of|it|may|depend|on|whether|they|consider|that|a|good|thing|.\nThis|one|is|definitely|one|to|skip|,|even|for|horror|movie|fanatics|.\nExcessive|,|profane|,|packed|with|cartoonish|violence|and|comic-strip|characters|.\nOnce|the|50|year|old|Benigni|appears|as|the|title|character|,|we|find|ourselves|longing|for|the|block|of|wood|to|come|back|.\nA|working|class|``|us|vs.|them|''|opera|that|leaves|no|heartstring|untugged|and|no|liberal|cause|unplundered|.\nIf|the|movie|succeeds|in|instilling|a|wary|sense|of|`|there|but|for|the|grace|of|God|,|'|it|is|far|too|self-conscious|to|draw|you|deeply|into|its|world|.\nThere|are|simply|too|many|ideas|floating|around|--|part|farce|,|part|Sliding|Doors|,|part|pop|video|--|and|yet|failing|to|exploit|them|.\nIt|takes|a|strange|kind|of|laziness|to|waste|the|talents|of|Robert|Forster|,|Anne|Meara|,|Eugene|Levy|,|and|Reginald|VelJohnson|all|in|the|same|movie|.\nWe|have|n't|seen|such|hilarity|since|Say|It|Is|n't|So|!\nExpect|the|same-old|,|lame-old|slasher|nonsense|,|just|with|different|scenery|.\nThe|Cold|Turkey|would|'ve|been|a|far|better|title|.\nThe|idea|of|49-year-old|Roberto|Benigni|playing|the|wooden|boy|Pinocchio|is|scary|enough|.\nThe|reality|of|the|new|live-action|Pinocchio|he|directed|,|cowrote|and|starred|in|borders|on|the|grotesque|.\nThe|ga-zillionth|airhead|movie|about|a|wife|in|distress|who|resorts|to|desperate|measures|.\nZaidan|'s|script|has|barely|enough|plot|to|string|the|stunts|together|and|not|quite|enough|characterization|to|keep|the|faces|straight|.\nTry|as|I|may|,|I|ca|n't|think|of|a|single|good|reason|to|see|this|movie|,|even|though|everyone|in|my|group|extemporaneously|shouted|,|`|Thank|you|!|'\nwhen|Leguizamo|finally|plugged|an|irritating|character|late|in|the|movie|.\nWhile|it|'s|nice|to|watch|a|movie|that|has|n't|been|focus-grouped|into|tedium|,|Yu|'s|cinematic|alchemy|produces|nearly|as|much|lead|as|gold|.\nIt|treats|women|like|idiots|.\nThough|Catch|Me|If|You|Can|is|n't|badly|made|,|the|fun|slowly|leaks|out|of|the|movie|.\nJust|an|average|comedic|dateflick|but|not|a|waste|of|time|.\nA|valueless|kiddie|paean|to|pro|basketball|underwritten|by|the|NBA|.\nImpostor|has|a|handful|of|thrilling|moments|and|a|couple|of|good|performances|,|but|the|movie|does|n't|quite|fly|.\nFor|starters|,|the|story|is|just|too|slim|.\nSo|much|facile|technique|,|such|cute|ideas|,|so|little|movie|.\nThe|experience|of|going|to|a|film|festival|is|a|rewarding|one|;|the|experiencing|of|sampling|one|through|this|movie|is|not|.\nThe|film|takes|the|materials|of|human|tragedy|and|dresses|them|in|lovely|costumes|,|Southern|California|locations|and|star|power|.\nIt|has|its|moments|of|swaggering|camaraderie|,|but|more|often|just|feels|generic|,|derivative|and|done|to|death|.\nAlmost|gags|on|its|own|gore|.\nHow|do|you|spell|cliché|?\nIt|'s|sweet|,|harmless|,|dumb|,|occasionally|funny|and|about|as|compelling|as|a|fishing|show|.\nThe|moviegoing|equivalent|of|going|to|a|dinner|party|and|being|forced|to|watch|the|host|and|hostess|'s|home|video|of|their|baby|'s|birth|.\nWhile|(|Hill|)|has|learned|new|tricks|,|the|tricks|alone|are|not|enough|to|salvage|this|lifeless|boxing|film|.\nIn|the|real|world|,|an|actor|this|uncharismatically|beautiful|would|have|a|résumé|loaded|with|credits|like|``|Girl|in|Bar|#|3|.|''\nToo|much|of|it|feels|unfocused|and|underdeveloped|.\nUnder|15|?\nA|giggle|a|minute|.\nOver|age|15|?\nBig|Fat|Waste|of|Time|.\nHey|Arnold|!\nThe|Movie|is|what|happens|when|you|blow|up|small|potatoes|to|10|times|their|natural|size|,|and|it|ai|n't|pretty|.\nSometimes|seems|less|like|storytelling|than|something|the|otherwise|compelling|director|needed|to|get|off|his|chest|.\nThis|is|not|the|undisputed|worst|boxing|movie|ever|,|but|it|'s|certainly|not|a|champion|-|the|big|loser|is|the|audience|.\nYou|really|have|to|wonder|how|on|earth|anyone|,|anywhere|could|have|thought|they|'d|make|audiences|guffaw|with|a|script|as|utterly|diabolical|as|this|.\nIn|the|end|,|we|are|left|with|something|like|two|ships|passing|in|the|night|rather|than|any|insights|into|gay|love|,|Chinese|society|or|the|price|one|pays|for|being|dishonest|.\nChokes|on|its|own|depiction|of|upper-crust|decorum|.\nWell-nigh|unendurable|...|though|the|picture|strains|to|become|cinematic|poetry|,|it|remains|depressingly|prosaic|and|dull|.\nI|thought|my|own|watch|had|stopped|keeping|time|as|I|slogged|my|way|through|Clockstoppers|.\nWhile|much|of|the|cast|has|charm|--|especially|Allodi|and|Nolden|--|the|performers|are|sunk|by|the|film|'s|primitive|approach|to|the|mechanics|of|comedy|.\nThis|directorial|debut|from|music|video|show-off|Higuchinsky|is|all|flash|.\nYes|,|Ballistic|is|silly|.\nUnfortunately|,|it|'s|not|silly|fun|unless|you|enjoy|really|bad|movies|.\nThe|twist|that|ends|the|movie|is|the|one|with|the|most|emotional|resonance|,|but|twists|are|getting|irritating|,|and|this|is|the|kind|of|material|where|the|filmmakers|should|be|very|careful|about|raising|eyebrows|.\nThe|longer|the|movie|goes|,|the|worse|it|gets|,|but|it|'s|actually|pretty|good|in|the|first|few|minutes|.\nWhile|it|'s|genuinely|cool|to|hear|characters|talk|about|early|rap|records|(|Sugar|Hill|Gang|,|etc.|)|,|the|constant|referencing|of|hip-hop|arcana|can|alienate|even|the|savviest|audiences|.\nNot|only|unfunny|,|but|downright|repellent|.\nCare|deftly|captures|the|wonder|and|menace|of|growing|up|,|but|he|never|really|embraces|the|joy|of|Fuhrman|'s|destructive|escapism|or|the|grace-in-rebellion|found|by|his|characters|.\nForced|,|familiar|and|thoroughly|condescending|.\nDoes|little|more|than|play|an|innocuous|game|of|fill-in|-|the-blanks|with|a|tragic|past|.\nK-19|exploits|our|substantial|collective|fear|of|nuclear|holocaust|to|generate|cheap|Hollywood|tension|.\nHas|a|long|and|clunky|ending|...|which|forces|the|audience|to|fidget|through|ten|pseudo-serious|minutes|while|waiting|for|the|ending|credits|and|the|deleted|scenes|montage|to|break|the|audience|'s|awkward|silence\nA|ragbag|of|promising|ideas|and|failed|narrative|,|of|good|acting|and|plain|old|bad|filmmaking|.\nWhaley|'s|determination|to|immerse|you|in|sheer|,|unrelenting|wretchedness|is|exhausting|.\nUncommonly|stylish|but|equally|silly|...|the|picture|fails|to|generate|much|suspense|,|nor|does|it|ask|searching|enough|questions|to|justify|its|pretensions|.\nThe|entire|movie|is|about|a|boring|,|sad|man|being|boring|and|sad|.\nThe|plot|convolutions|ultimately|add|up|to|nothing|more|than|jerking|the|audience|'s|chain|.\nConfirms|the|nagging|suspicion|that|Ethan|Hawke|would|be|even|worse|behind|the|camera|than|he|is|in|front|of|it|.\nMade|with|no|discernible|craft|and|monstrously|sanctimonious|in|dealing|with|childhood|loss|.\nIt|'s|a|trifle|of|a|movie|,|with|a|few|laughs|surrounding|an|unremarkable|soft|center|.\nHolden|Caulfield|did|it|better|.\nA|synthesis|of|cliches|and|absurdities|that|seems|positively|decadent|in|its|cinematic|flash|and|emptiness|.\nOh|come|on|.\nLike|you|could|n't|smell|this|turkey|rotting|from|miles|away|.\nIf|it|'s|seldom|boring|,|well|,|it|'s|also|rarely|coherent|.\nSimplistic|fluff-ball|of|whimsy|.\nNot|exactly|the|Bees|Knees\nIt|does|nothing|new|with|the|old|story|,|except|to|show|fisticuffs|in|this|sort|of|stop-go|slow|motion|that|makes|the|gang|rumbles|look|like|they|'re|being|streamed|over|a|28K|modem|.\nThe|kind|of|spectacularly|misconceived|enterprise|that|only|a|sophisticated|cinephile|could|have|perpetrated|.\nMakes|for|some|truly|odd|,|at|times|confusing|,|kids|entertainment|...|but|at|least|this|time|there|'s|some|centered|storytelling|to|go|along|with|all|the|weird|stuff|.\nThe|film|contains|no|good|jokes|,|no|good|scenes|,|barely|a|moment|when|Carvey|'s|Saturday|Night|Live-honed|mimicry|rises|above|the|level|of|embarrassment|.\nJacquot|'s|rendering|of|Puccini|'s|tale|of|devotion|and|double-cross|is|more|than|just|a|filmed|opera|.\nIn|his|first|stab|at|the|form|,|Jacquot|takes|a|slightly|anarchic|approach|that|works|only|sporadically|.\nChabrol|has|taken|promising|material|for|a|black|comedy|and|turned|it|instead|into|a|somber|chamber|drama|.\nIt|'s|as|if|you|'re|watching|a|movie|that|was|made|in|1978|but|not|released|then|because|it|was|so|weak|,|and|it|has|been|unearthed|and|released|now|,|when|it|has|become|even|weaker|.\nThis|is|nothing|but|familiar|territory|.\nIn|execution|,|this|clever|idea|is|far|less|funny|than|the|original|,|Killers|From|Space|.\nOne|of|the|more|irritating|cartoons|you|will|see|this|,|or|any|,|year|.\nA|broad|,|melodramatic|estrogen|opera|that|'s|pretty|toxic|in|its|own|right|.\nToo|slow|,|too|long|and|too|little|happens|.\nThe|film|'s|few|ideas|are|stretched|to|the|point|of|evaporation|;|the|whole|central|section|is|one|big|chase|that|seems|to|have|no|goal|and|no|urgency|.\nIt|'s|just|filler|.\nSacrifices|the|value|of|its|wealth|of|archival|foot-age|with|its|less-than-objective|stance|.\nUtterly|lacking|in|charm|,|wit|and|invention|,|Roberto|Benigni|'s|Pinocchio|is|an|astonishingly|bad|film|.\nA|hamfisted|romantic|comedy|that|makes|our|girl|the|hapless|facilitator|of|an|extended|cheap|shot|across|the|Mason-Dixon|line|.\nScores|no|points|for|originality|,|wit|,|or|intelligence|.\nIt|'s|a|cookie-cutter|movie|,|a|cut-and-paste|job|.\nThey|takes|a|long|time|to|get|to|its|gasp-inducing|ending|.\nBarely|gets|off|the|ground|.\nEven|on|those|rare|occasions|when|the|narrator|stops|yammering|,|Miller|'s|hand|often|feels|unsure|.\nPumpkin|means|to|be|an|outrageous|dark|satire|on|fraternity|life|,|but|its|ambitions|far|exceed|the|abilities|of|writer|Adam|Larson|Broder|and|his|co-director|,|Tony|R.|Abrams|,|in|their|feature|debut|.\nAt|its|best|,|Queen|is|campy|fun|like|the|Vincent|Price|horror|classics|of|the|'60s|.\nAt|its|worst|,|it|implodes|in|a|series|of|very|bad|special|effects|.\nFrom|the|opening|scenes|,|it|'s|clear|that|All|About|the|Benjamins|is|a|totally|formulaic|movie|.\nIt|takes|a|certain|kind|of|horror|movie|to|qualify|as|`|worse|than|expected|,|'|but|Ghost|Ship|somehow|manages|to|do|exactly|that|.\nOn|the|bright|side|,|it|contains|Jesse|Ventura|'s|best|work|since|the|XFL|.\nDespite|impeccable|acting|...|and|a|script|that|takes|some|rather|unexpected|(|even|,|at|times|,|preposterous|)|turns|,|Love|is|just|too|,|too|precious|in|the|end|.\nA|TV|style|murder|mystery|with|a|few|big|screen|moments|(|including|one|that|seems|to|be|made|for|a|different|film|altogether|)|.\nBy|getting|myself|wrapped|up|in|the|visuals|and|eccentricities|of|many|of|the|characters|,|I|found|myself|confused|when|it|came|time|to|get|to|the|heart|of|the|movie|.\nToo|often|,|the|viewer|is|n't|reacting|to|humor|so|much|as|they|are|wincing|back|in|repugnance|.\nDilbert|without|the|right-on|satiric|humor|.\nManages|to|show|life|in|all|of|its|banality|when|the|intention|is|quite|the|opposite|.\nDo|not|see|this|film|.\nMinority|Report|is|exactly|what|the|title|indicates|,|a|report|.\nDelivers|the|same|old|same|old|,|tarted|up|with|Latin|flava|and|turned|out|by|Hollywood|playas|.\nIf|you|believe|any|of|this|,|I|can|make|you|a|real|deal|on|leftover|Enron|stock|that|will|double|in|value|a|week|from|Friday|.\nTo|call|The|Other|Side|of|Heaven|``|appalling|''|would|be|to|underestimate|just|how|dangerous|entertainments|like|it|can|be|.\nIn|exactly|89|minutes|,|most|of|which|passed|as|slowly|as|if|I|'d|been|sitting|naked|on|an|igloo|,|Formula|51|sank|from|quirky|to|jerky|to|utter|turkey|.\nIf|only|the|story|about|a|multi-million|dollar|con|bothered|to|include|the|con|.\nI|'d|have|to|say|the|star|and|director|are|the|big|problems|here|.\nWithout|the|dark|spookiness|of|Crystal|Lake|Camp|,|the|horror|concept|completely|loses|its|creepy|menace|.\nIt|'s|like|every|bad|idea|that|'s|ever|gone|into|an|after-school|special|compiled|in|one|place|,|minus|those|daytime|programs|'|slickness|and|sophistication|(|and|who|knew|they|even|had|any|?|)|.\nWhile|the|Resident|Evil|games|may|have|set|new|standards|for|thrills|,|suspense|,|and|gore|for|video|games|,|the|movie|really|only|succeeds|in|the|third|of|these|.\nFor|close|to|two|hours|the|audience|is|forced|to|endure|three|terminally|depressed|,|mostly|inarticulate|,|hyper|dysfunctional|families|for|the|price|of|one|.\nTo|my|taste|,|the|film|'s|comic|characters|come|perilously|close|to|being|Amoses|and|Andys|for|a|new|generation|.\nWhat|the|director|ca|n't|do|is|make|either|of|Val|Kilmer|'s|two|personas|interesting|or|worth|caring|about|.\nIn|an|effort|,|I|suspect|,|not|to|offend|by|appearing|either|too|serious|or|too|lighthearted|,|it|offends|by|just|being|wishy-washy|.\nIt|'s|difficult|to|imagine|the|process|that|produced|such|a|script|,|but|here|'s|guessing|that|spray|cheese|and|underarm|noises|played|a|crucial|role|.\nHarland|Williams|is|so|funny|in|drag|he|should|consider|permanent|sex-reassignment|.\n...|nothing|scary|here|except|for|some|awful|acting|and|lame|special|effects|.\nIt|'s|not|that|Kung|Pow|is|n't|funny|some|of|the|time|--|it|just|is|n't|any|funnier|than|bad|martial|arts|movies|are|all|by|themselves|,|without|all|Oedekerk|'s|impish|augmentation|.\nA|very|long|movie|,|dull|in|stretches|,|with|entirely|too|much|focus|on|meal|preparation|and|igloo|construction|.\nNot|an|objectionable|or|dull|film|;|it|merely|lacks|everything|except|good|intentions|.\nA|science-fiction|pastiche|so|lacking|in|originality|that|if|you|stripped|away|its|inspirations|there|would|be|precious|little|left|.\nOnce|(|Kim|)|begins|to|overplay|the|shock|tactics|and|bait-and-tackle|metaphors|,|you|may|decide|it|'s|too|high|a|price|to|pay|for|a|shimmering|picture|postcard|.\nThe|words|,|`|Frankly|,|my|dear|,|I|do|n't|give|a|damn|,|'|have|never|been|more|appropriate|.\nWhat|'s|next|:|``|My|Mother|the|Car|?|''\nAll|the|amped-up|Tony|Hawk-style|stunts|and|thrashing|rap-metal|ca|n't|disguise|the|fact|that|,|really|,|we|'ve|been|here|,|done|that|.\nA|sequel|that|'s|much|too|big|for|its|britches|.\nSo|unremittingly|awful|that|labeling|it|a|dog|probably|constitutes|cruelty|to|canines|.\nWhat|was|once|original|has|been|co-opted|so|frequently|that|it|now|seems|pedestrian|.\nA|perplexing|example|of|promise|unfulfilled|,|despite|many|charming|moments|.\nFor|all|the|writhing|and|wailing|,|tears|,|rage|and|opium|overdoses|,|there|'s|no|sense|of|actual|passion|being|washed|away|in|love|'s|dissolution|.\nA|coarse|and|stupid|gross-out|.\na|nightmare|date|with|a|half-formed|wit|done|a|great|disservice|by|a|lack|of|critical|distance|and|a|sad|trust|in|liberal|arts|college|bumper|sticker|platitudes|.\nDoes|n't|offer|much|besides|glib|soullessness|,|raunchy|language|and|a|series|of|brutal|set|pieces|...|that|raise|the|bar|on|stylized|screen|violence|.\nThere|'s|something|with|potential|here|,|but|the|movie|decides|,|like|Lavinia|,|to|go|the|conservative|route|.\nIt|'s|one|pussy-ass|world|when|even|killer-thrillers|revolve|around|group|therapy|sessions|.\nThe|stripped-down|approach|does|give|the|film|a|certain|timeless|quality|,|but|the|measured|pace|and|lack|of|dramatic|inflection|can|also|seem|tedious|.\nBut|the|power|of|these|(|subjects|)|is|obscured|by|the|majority|of|the|film|that|shows|a|stationary|camera|on|a|subject|that|could|be|mistaken|for|giving|a|public|oration|,|rather|than|contributing|to|a|film|'s|narrative|.\nRarely|has|so|much|money|delivered|so|little|entertainment|.\nTries|to|add|some|spice|to|its|quirky|sentiments|but|the|taste|is|all|too|familiar|.\nPaid|In|Full|is|so|stale|,|in|fact|,|that|its|most|vibrant|scene|is|one|that|uses|clips|from|Brian|De|Palma|'s|Scarface|.\nThat|'s|a|cheat|.\nHarrison|'s|Flowers|puts|its|heart|in|the|right|place|,|but|its|brains|are|in|no|particular|place|at|all|.\nThis|re-do|is|so|dumb|and|so|exploitative|in|its|violence|that|,|ironically|,|it|becomes|everything|that|the|rather|clumsy|original|was|railing|against|.\nA|string|of|rehashed|sight|gags|based|in|insipid|vulgarity|.\nThe|movie|is|Dawn|of|the|Dead|crossed|with|John|Carpenter|'s|Ghosts|of|Mars|,|with|zombies|not|as|ghoulish|as|the|first|and|trains|not|as|big|as|the|second|.\nBasically|a|static|series|of|semi-improvised|(|and|semi-coherent|)|raps|between|the|stars|.\nToo|restrained|to|be|a|freak|show|,|too|mercenary|and|obvious|to|be|cerebral|,|too|dull|and|pretentious|to|be|engaging|...|The|Isle|defies|an|easy|categorization|.\nAn|unpredictable|blend|of|gal-pal|smart|talk|,|romantic|comedy|and|dark|tragedy|that|bites|off|considerably|more|than|writer\\/director|John|McKay|can|swallow|.\nIt|'s|one|of|those|baseball|pictures|where|the|hero|is|stoic|,|the|wife|is|patient|,|the|kids|are|as|cute|as|all|get-out|and|the|odds|against|success|are|long|enough|to|intimidate|,|but|short|enough|to|make|a|dream|seem|possible|.\n``|The|Time|Machine|''|is|a|movie|that|has|no|interest|in|itself|.\nIt|does|n't|believe|in|itself|,|it|has|no|sense|of|humor|...|it|'s|just|plain|bored|.\n...|a|hollow|joke|told|by|a|cinematic|gymnast|having|too|much|fun|embellishing|the|misanthropic|tale|to|actually|engage|it|.\nA|morose|little|soap|opera|about|three|vapid|,|insensitive|people|who|take|turns|hurting|each|other|.\nIt|'s|a|feature-length|adaptation|of|one|of|those|``|Can|This|Marriage|Be|Saved|?|''\ncolumns|from|Ladies|Home|Journal|...\nThe|film|'s|essentially|over|by|the|meet-cute|.\nI|'m|sure|if|you|'re|a|Hartley|fan|,|you|might|enjoy|yourself|...|Me|,|I|did|n't|care|for|it|.\nIt|'s|about|following|your|dreams|,|no|matter|what|your|parents|think|.\nSocrates|motions|for|hemlock|.\nThe|script|is|n't|very|good|;|not|even|someone|as|gifted|as|Hoffman|(|the|actor|)|can|make|it|work|.\nWalter|Hill|'s|pulpy|,|stylized|boxing|melodrama|Undisputed|nearly|overcomes|its|questionable|in-the-ring|match-up|with|solid|fight|choreography|and|gritty|prison|authenticity|.\nIt|has|all|the|excitement|of|eating|oatmeal|.\nIt|'s|hard|to|know|whether|or|not|to|recommend|this|film|because|for|every|thing|it|does|right|there|'s|at|least|one|and|occasionally|two|things|it|gets|ever|so|wrong|.\nAlthough|there|are|several|truly|jolting|scares|,|there|'s|also|an|abundance|of|hackneyed|dialogue|and|more|silly|satanic|business|than|you|can|shake|a|severed|limb|at|.\nI|'ll|bet|the|video|game|is|a|lot|more|fun|than|the|film|.\nStar|Trek|:|Nemesis|meekly|goes|where|nearly|every|Star|Trek|movie|has|gone|before|.\nWince-inducing|dialogue|,|thrift-shop|costumes|,|prosthetic|makeup|by|Silly|Putty|and|Kmart|blue-light-special|effects|all|conspire|to|test|Trekkie|loyalty|.\nLike|all|abstract|art|,|the|film|does|not|make|this|statement|in|an|easily|accessible|way|,|and|--|unless|prewarned|--|it|would|be|very|possible|for|a|reasonably|intelligent|person|to|sit|through|its|tidal|wave|of|imagery|and|not|get|this|vision|at|all|.\nI|do|n't|mind|having|my|heartstrings|pulled|,|but|do|n't|treat|me|like|a|fool|.\n...|although|this|idea|is|``|new|''|the|results|are|tired|.\nI|'m|guessing|the|director|is|a|magician|.\nAfter|all|,|he|took|three|minutes|of|dialogue|,|30|seconds|of|plot|and|turned|them|into|a|90-minute|movie|that|feels|five|hours|long|.\nAn|unencouraging|threefold|expansion|on|the|former|MTV|series|,|accompanying|the|stunt-hungry|dimwits|in|a|random|series|of|collected|gags|,|pranks|,|pratfalls|,|dares|,|injuries|,|etc.|.\nIts|well|of|thorn|and|vinegar|(|and|simple|humanity|)|has|long|been|plundered|by|similar|works|featuring|the|insight|and|punch|this|picture|so|conspicuously|lacks|.\nFor|all|its|impressive|craftsmanship|,|and|despite|an|overbearing|series|of|third-act|crescendos|,|Lily|Chou-Chou|never|really|builds|up|a|head|of|emotional|steam|.\nDo|n't|be|fooled|by|the|impressive|cast|list|-|Eye|See|You|is|pure|junk|.\nNot|since|Freddy|Got|Fingered|has|a|major|release|been|so|painful|to|sit|through|.\nThe|documentary|does|little|,|apart|from|raising|the|topic|,|to|further|stoke|the|conversation|.\nPlays|like|a|volatile|and|overlong|W|magazine|fashion|spread|.\nA|better|title|,|for|all|concerned|,|might|be|Swept|Under|the|Rug|.\nThis|movie|seems|to|have|been|written|using|Mad-libs|.\nThere|can|be|no|other|explanation|.\nHilariously|inept|and|ridiculous|.\nVera|'s|technical|prowess|ends|up|selling|his|film|short|;|he|smoothes|over|hard|truths|even|as|he|uncovers|them|.\n(|A|)|shapeless|blob|of|desperate|entertainment|.\nFeels|too|formulaic|and|too|familiar|to|produce|the|transgressive|thrills|of|early|underground|work|.\nGiven|how|heavy-handed|and|portent-heavy|it|is|,|this|could|be|the|worst|thing|Soderbergh|has|ever|done|.\na|by-the-numbers|patient\\/doctor|pic|that|covers|all|the|usual|ground\nA|dumb|movie|with|dumb|characters|doing|dumb|things|and|you|have|to|be|really|dumb|not|to|see|where|this|is|going|.\nStealing|Harvard|aspires|to|comedic|grand|larceny|but|stands|convicted|of|nothing|more|than|petty|theft|of|your|time|.\nPretension|,|in|its|own|way|,|is|a|form|of|bravery|.\nFor|this|reason|and|this|reason|only|--|the|power|of|its|own|steadfast|,|hoity-toity|convictions|--|Chelsea|Walls|deserves|a|medal|.\nWith|the|exception|of|some|fleetingly|amusing|improvisations|by|Cedric|the|Entertainer|as|Perry|'s|boss|,|there|is|n't|a|redeeming|moment|here|.\nIt|'s|a|grab|bag|of|genres|that|do|n't|add|up|to|a|whole|lot|of|sense|.\nMovie|fans|,|get|ready|to|take|off|...|the|other|direction|.\n(|director|)|O'Fallon|manages|to|put|some|lovely|pictures|up|on|the|big|screen|,|but|his|skill|at|telling|a|story|--|he|also|contributed|to|the|screenplay|--|falls|short|.\nThe|intent|is|almost|exactly|the|same|(|as|The|Full|Monty|)|.\nAll|that|'s|missing|is|the|spontaneity|,|originality|and|delight|.\nNo|one|but|a|convict|guilty|of|some|truly|heinous|crime|should|have|to|sit|through|The|Master|of|Disguise|.\nEven|the|finest|chef|ca|n't|make|a|hotdog|into|anything|more|than|a|hotdog|,|and|Robert|De|Niro|ca|n't|make|this|movie|anything|more|than|a|trashy|cop|buddy|comedy|.\nThere|'s|too|much|falseness|to|the|second|half|,|and|what|began|as|an|intriguing|look|at|youth|fizzles|into|a|dull|,|ridiculous|attempt|at|heart-tugging|.\nIt|'s|not|without|its|pleasures|,|but|I|'ll|stick|with|The|Tune|.\nMiller|is|playing|so|free|with|emotions|,|and|the|fact|that|children|are|hostages|to|fortune|,|that|he|makes|the|audience|hostage|to|his|swaggering|affectation|of|seriousness|.\nDespite|the|evocative|aesthetics|evincing|the|hollow|state|of|modern|love|life|,|the|film|never|percolates|beyond|a|monotonous|whine|.\nMore|maudlin|than|sharp|.\nThis|is|an|egotistical|endeavor|from|the|daughter|of|horror|director|Dario|Argento|(|a|producer|here|)|,|but|her|raw|performance|and|utter|fearlessness|make|it|strangely|magnetic|.\nIt|'s|slow|--|very|,|very|slow|.\nIt|'s|not|the|ultimate|Depression-era|gangster|movie|.\nThat|'s|pure|PR|hype|.\nCharacters|still|need|to|function|according|to|some|set|of|believable|and|comprehensible|impulses|,|no|matter|how|many|drugs|they|do|or|how|much|artistic|license|Avary|employs|.\nComes|...|uncomfortably|close|to|coasting|in|the|treads|of|The|Bicycle|Thief|.\nVisually|rather|stunning|,|but|ultimately|a|handsome-looking|bore|,|the|true|creativity|would|have|been|to|hide|Treasure|Planet|entirely|and|completely|reimagine|it|.\nStealing|Harvard|is|evidence|that|the|Farrelly|Bros.|--|Peter|and|Bobby|--|and|their|brand|of|screen|comedy|are|wheezing|to|an|end|,|along|with|Green|'s|half-hearted|movie|career|.\nThere|seems|to|be|no|clear|path|as|to|where|the|story|'s|going|,|or|how|long|it|'s|going|to|take|to|get|there|.\nIf|you|'re|a|WWF|fan|,|or|you|related|to|the|people|who|watched|the|robots|getting|butchered|in|A.I.|,|you|'ll|probably|like|Rollerball|.\nI|do|n't|think|I|laughed|out|loud|once|.\nAnd|when|you|'re|talking|about|a|slapstick|comedy|,|that|'s|a|pretty|big|problem|.\nIt|'s|so|mediocre|,|despite|the|dynamic|duo|on|the|marquee|,|that|we|just|ca|n't|get|no|satisfaction|.\nSlapstick|buffoonery|can|tickle|many|a|preschooler|'s|fancy|,|but|when|it|costs|a|family|of|four|about|$|40|to|see|a|film|in|theaters|,|why|spend|money|on|a|dog|like|this|when|you|can|rent|a|pedigree|instead|?\n...|turns|so|unforgivably|trite|in|its|last|10|minutes|that|anyone|without|a|fortified|sweet|tooth|will|likely|go|into|sugar|shock|.\nThe|notion|that|bombing|buildings|is|the|funniest|thing|in|the|world|goes|entirely|unexamined|in|this|startlingly|unfunny|comedy|.\nMy|reaction|in|a|word|:|disappointment|.\nHis|last|movie|was|poetically|romantic|and|full|of|indelible|images|,|but|his|latest|has|nothing|going|for|it|.\nIt|kinda|works|and|qualifies|as|cool|at|times|,|but|is|just|too|lame|to|work|or|be|cool|at|others|.\nSustains|its|dreamlike|glide|through|a|succession|of|cheesy|coincidences|and|voluptuous|cheap|effects|,|not|the|least|of|which|is|Rebecca|Romijn-Stamos|.\nIntriguing|documentary|which|is|emotionally|diluted|by|focusing|on|the|story|'s|least|interesting|subject|.\nFeels|haphazard|,|as|if|the|writers|mistakenly|thought|they|could|achieve|an|air|of|frantic|spontaneity|by|simply|tossing|in|lots|of|characters|doing|silly|stuff|and|stirring|the|pot|.\nFor|each|chuckle|there|are|at|least|10|complete|misses|,|many|coming|from|the|amazingly|lifelike|Tara|Reid|,|whose|acting|skills|are|comparable|to|a|cardboard|cutout|.\nIn|its|own|way|,|Joshua|is|as|blasphemous|and|nonsensical|as|a|Luis|Buñuel|film|without|the|latter|'s|attendant|intelligence|,|poetry|,|passion|,|and|genius|.\nI|'ve|always|dreamed|of|attending|Cannes|,|but|after|seeing|this|film|,|it|'s|not|that|big|a|deal|.\nThe|vintage|is|pure|'|87|,|with|a|halfhearted|twist|on|its|cautionary|message|:|Fatal|Attraction|=|do|n't|have|an|affair|with|a|nutjob|;|Unfaithful|=|do|n't|if|you|'re|married|to|one|.\nA|workshop|mentality|prevails|.\nIt|can|not|be|enjoyed|,|even|on|the|level|that|one|enjoys|a|bad|slasher|flick|,|primarily|because|it|is|dull|.\nYes|,|dull|.\nPumpkin|wants|to|have|it|both|ways|.\nDirector|Uwe|Boll|and|the|actors|provide|scant|reason|to|care|in|this|crude|'70s|throwback|.\n(|W|)|hile|long|on|amiable|monkeys|and|worthy|environmentalism|,|Jane|Goodall|'s|Wild|Chimpanzees|is|short|on|the|thrills|the|oversize|medium|demands|.\nOuter-space|buffs|might|love|this|film|,|but|others|will|find|its|pleasures|intermittent|.\nThis|piece|of|Channel|5|grade|trash|is|,|quite|frankly|,|an|insult|to|the|intelligence|of|the|true|genre|enthusiast|.\nAn|occasionally|funny|,|but|overall|limp|,|fish-out-of-water|story|.\nA|bloated|gasbag|thesis|grotesquely|impressed|by|its|own|gargantuan|aura|of|self-importance|...\nIt|'s|mighty|tedious|for|the|viewer|who|has|to|contend|with|unpleasant|characters|,|hit-and-miss|performances|and|awkwardly|staged|scenes|.\nAs|A|Rumor|of|Angels|reveals|itself|to|be|a|sudsy|tub|of|supernatural|hokum|,|not|even|Ms.|Redgrave|'s|noblest|efforts|can|redeem|it|from|hopeless|sentimentality|.\nNew|Best|Friend|'s|Playboy-mansion|presentation|of|college|life|is|laugh-out-loud|ludicrous|.\nan|appalling|`|Ace|Ventura|'|rip-off|that|somehow|manages|to|bring|together|Kevin|Pollak|,|former|wrestler|Chyna|and|Dolly|Parton|.\nIf|any|of|them|list|this|`|credit|'|on|their|resumes|in|the|future|,|that|'ll|be|much|funnier|than|anything|in|the|film|...\nThe|humor|is|forced|and|heavy-handed|,|and|occasionally|simply|unpleasant|.\nScorsese|at|his|best|makes|gangster|films|that|are|equally|lovely|but|also|relentlessly|brutal|and|brutally|intelligent|;|Perdition|,|meanwhile|,|reads|more|like|Driving|Miss|Daisy|than|GoodFellas|.\nWhile|the|script|starts|promisingly|,|it|loses|steam|towards|the|middle|and|never|really|develops|beyond|attacking|obvious|target|.\nAs|the|latest|bid|in|the|TV-to-movie|franchise|game|,|I|Spy|makes|its|big-screen|entry|with|little|of|the|nervy|originality|of|its|groundbreaking|small-screen|progenitor|.\nThis|is|n't|even|Madonna|'s|Swept|Away|.\nThis|is|her|Blue|Lagoon|.\nThe|director|knows|how|to|apply|textural|gloss|,|but|his|portrait|of|sex-as-war|is|strictly|sitcom|.\n...|the|film|suffers|from|a|lack|of|humor|(|something|needed|to|balance|out|the|violence|)|...\nBurns|never|really|harnesses|to|full|effect|the|energetic|cast|.\nAn|overemphatic|,|would-be|wacky|,|ultimately|tedious|sex|farce|.\nHas|all|the|depth|of|a|wading|pool|.\nThis|is|the|sort|of|burly|action|flick|where|one|coincidence|pummels|another|,|narrative|necessity|is|a|drunken|roundhouse|,|and|whatever|passes|for|logic|is|a|factor|of|the|last|plot|device|left|standing|.\nThe|so-inept|-|it|'s|-|surreal|dubbing|(|featuring|the|voices|of|Glenn|Close|,|Regis|Philbin|and|Breckin|Meyer|)|brings|back|memories|of|cheesy|old|Godzilla|flicks|.\n...|the|movie|is|just|a|plain|old|monster|.\nIf|this|disposable|tissue|has|one|wild|card|,|it|'s|John|Turturro|,|who|'s|simply|fab|as|a|Spanish|butler|with|a|foot|fetish|.\nOne|long|string|of|cliches|.\nFancy|a|real|downer|?\n(|Leigh|)|lays|it|on|so|thick|this|time|that|it|feels|like|a|suicide|race|.\nProfessionally|speaking|,|it|'s|tempting|to|jump|ship|in|January|to|avoid|ridiculous|schlock|like|this|shoddy|suspense|thriller|.\nNelson|'s|brutally|unsentimental|approach|...|sucks|the|humanity|from|the|film|,|leaving|behind|an|horrific|but|weirdly|unemotional|spectacle|.\nWeaves|a|spell|over|you|,|with|its|disturbingly|close-up|look|at|damaged|psyches|and|its|subtle|undercurrents|of|danger|.\nBut|its|awkward|structure|keeps|breaking|the|spell|.\nAt|once|half-baked|and|overheated|.\nThere|'s|a|solid|woman|-|finding-herself|story|somewhere|in|here|,|but|you|'d|have|to|dig|pretty|deep|to|uncover|it|.\nI|still|ca|n't|relate|to|Stuart|:|He|'s|a|mouse|,|for|cryin|'|out|loud|,|and|all|he|does|is|milk|it|with|despondent|eyes|and|whine|that|nobody|treats|him|human|enough|.\n(|Serry|)|wants|to|blend|politics|and|drama|,|an|admirable|ambition|.\nIt|'s|too|bad|that|the|helping|hand|he|uses|to|stir|his|ingredients|is|also|a|heavy|one|.\nBy|the|miserable|standards|to|which|the|slasher|genre|has|sunk|,|...|actually|pretty|good|.\nOf|course|,|by|more|objective|measurements|it|'s|still|quite|bad|.\nThe|only|entertainment|you|'ll|derive|from|this|choppy|and|sloppy|affair|will|be|from|unintentional|giggles|--|several|of|them|.\nSam|Mendes|has|become|valedictorian|at|the|School|for|Soft|Landings|and|Easy|Ways|Out|.\nExactly|what|it|claims|to|be|--|a|simple|diversion|for|the|kids|.\nIts|story|may|be|a|thousand|years|old|,|but|why|did|it|have|to|seem|like|it|took|another|thousand|to|tell|it|to|us|?\nThe|problem|with|this|film|is|that|it|lacks|focus|.\nI|sympathize|with|the|plight|of|these|families|,|but|the|movie|does|n't|do|a|very|good|job|conveying|the|issue|at|hand|.\nA|momentary|escape|from|the|summer|heat|and|the|sedentary|doldrums|that|set|in|at|this|time|of|year|.\n...|think|of|it|as|American|Pie|On|Valium|.\nDull|,|lifeless|,|and|amateurishly|assembled|.\nPuportedly|``|Based|on|True|Events|,|''|a|convolution|of|language|that|suggests|it|'s|impossible|to|claim|that|it|is|``|Based|on|a|True|Story|''|with|a|straight|face|.\n...|a|plotline|that|'s|as|lumpy|as|two-day|old|porridge|...|the|filmmakers|'|paws|,|sad|to|say|,|were|all|over|this|``|un-bear-able|''|project|!\nIt|'s|a|bad|thing|when|a|movie|has|about|as|much|substance|as|its|end|credits|blooper|reel|.\nWith|its|dogged|Hollywood|naturalism|and|the|inexorable|passage|of|its|characters|toward|sainthood|,|Windtalkers|is|nothing|but|a|sticky-sweet|soap|.\nSome|of|it|is|clever|,|but|it|is|never|melodic|\\/\nBetter|to|just|call|it|ABC|Kiarostami|.\nFor|AIDS|and|Africa|are|nothing|more|than|part|of|the|scenery|.\nNo|aspirations|to|social|import|inform|the|movie|version|.\nThis|is|a|shameless|sham|,|calculated|to|cash|in|on|the|popularity|of|its|stars|.\nManages|to|be|somewhat|well-acted|,|not|badly|art-directed|and|utterly|unengaging|no|matter|how|hard|it|tries|to|be|thrilling|,|touching|or|,|yikes|,|uproarious|.\nThis|rather|superficial|arthouse|middle-brow|film|knows|how|to|please|a|crowd|,|and|that|'s|about|all|it|does|well|.\nIt|'s|clear|the|filmmakers|were|n't|sure|where|they|wanted|their|story|to|go|,|and|even|more|clear|that|they|lack|the|skills|to|get|us|to|this|undetermined|destination|.\nAs|vulgar|as|it|is|banal|.\nYou|wonder|why|Enough|was|n't|just|a|music|video|rather|than|a|full-length|movie|.\nThe|film|'s|tone|and|pacing|are|off|almost|from|the|get-go|.\nThe|talented|and|clever|Robert|Rodriguez|perhaps|put|a|little|too|much|heart|into|his|first|film|and|did|n't|reserve|enough|for|his|second|.\nMore|whiny|downer|than|corruscating|commentary|.\nTambor|and|Clayburgh|make|an|appealing|couple|--|he|'s|understated|and|sardonic|,|she|'s|appealingly|manic|and|energetic|.\nBoth|deserve|better|.\nSuffocated|by|its|fussy|script|and|uptight|characters|,|this|musty|adaptation|is|all|the|more|annoying|since|it|'s|been|packaged|and|sold|back|to|us|by|Hollywood|.\nCoughs|and|sputters|on|its|own|postmodern|conceit|.\nA|wildly|inconsistent|emotional|experience|.\nSit|through|this|one|,|and|you|wo|n't|need|a|magic|watch|to|stop|time|;|your|DVD|player|will|do|it|for|you|.\nA|sometimes|tedious|film|.\nTeen|movies|have|really|hit|the|skids|.\nThere|are|plot|holes|big|enough|for|Shamu|the|killer|whale|to|swim|through|.\n...|plays|like|somebody|spliced|random|moments|of|a|Chris|Rock|routine|into|what|is|otherwise|a|cliche-riddled|but|self-serious|spy|thriller|.\nNasty|,|ugly|,|pointless|and|depressing|,|even|if|you|hate|clowns|.\nWhat|is|100|%|missing|here|is|a|script|of|even|the|most|elemental|literacy|,|an|inkling|of|genuine|wit|,|and|anything|resembling|acting|.\ndoes|paint|some|memorable|images|...|,|but|Makhmalbaf|keeps|her|distance|from|the|characters\nIt|uses|the|pain|and|violence|of|war|as|background|material|for|color|.\njust|not|campy|enough\nThe|movie|,|directed|by|Mick|Jackson|,|leaves|no|cliche|unturned|,|from|the|predictable|plot|to|the|characters|straight|out|of|central|casting|.\nIt|'s|everything|you|do|n't|go|to|the|movies|for|.\nLike|watching|a|dress|rehearsal|the|week|before|the|show|goes|up|:|everything|'s|in|place|but|something|'s|just|a|little|off-kilter|.\nThe|affectionate|loopiness|that|once|seemed|congenital|to|Demme|'s|perspective|has|a|tough|time|emerging|from|between|the|badly|dated|cutesy-pie|mystery|scenario|and|the|newfangled|Hollywood|post-production|effects|.\nFor|all|its|technical|virtuosity|,|the|film|is|so|mired|in|juvenile|and|near-xenophobic|pedagogy|that|it|'s|enough|to|make|one|pine|for|the|day|when|Godard|can|no|longer|handle|the|rigors|of|filmmaking|.\nAmerican|Chai|encourages|rueful|laughter|at|stereotypes|only|an|Indian-American|would|recognize|.\nAnd|the|lesson|,|in|the|end|,|is|nothing|new|.\nIt|made|me|want|to|wrench|my|eyes|out|of|my|head|and|toss|them|at|the|screen|.\nDue|to|some|script|weaknesses|and|the|casting|of|the|director|'s|brother|,|the|film|trails|off|into|inconsequentiality|.\n...|plot|holes|so|large|and|obvious|a|marching|band|might|as|well|be|stomping|through|them|in|clown|clothes|,|playing|a|college|football|fight|song|on|untuned|instruments|.\nSo|devoid|of|any|kind|of|intelligible|story|that|it|makes|films|like|XXX|and|Collateral|Damage|seem|like|thoughtful|treatises\nCombining|quick-cut|editing|and|a|blaring|heavy|metal|much|of|the|time|,|Beck|seems|to|be|under|the|illusion|that|he|'s|shooting|the|latest|System|of|a|Down|video|.\nDragonfly|has|no|atmosphere|,|no|tension|--|nothing|but|Costner|,|flailing|away|.\nIt|'s|a|buggy|drag|.\nWorks|hard|to|establish|rounded|characters|,|but|then|has|nothing|fresh|or|particularly|interesting|to|say|about|them|.\nThe|action|switches|between|past|and|present|,|but|the|material|link|is|too|tenuous|to|anchor|the|emotional|connections|that|purport|to|span|a|125-year|divide|.\nNonsensical|,|dull|``|cyber-horror|''|flick|is|a|grim|,|hollow|exercise|in|flat|scares|and|bad|acting|.\nInstead|of|hiding|Pinocchio|from|critics|,|Miramax|should|have|hidden|it|from|everyone|.\nManages|to|be|both|repulsively|sadistic|and|mundane|.\nA|great|ensemble|cast|ca|n't|lift|this|heartfelt|enterprise|out|of|the|familiar|.\nThere|ought|to|be|a|directing|license|,|so|that|Ed|Burns|can|have|his|revoked|.\nThe|structure|the|film|takes|may|find|Matt|Damon|and|Ben|Affleck|once|again|looking|for|residuals|as|this|officially|completes|a|Good|Will|Hunting|trilogy|that|was|never|planned|.\nWhereas|last|year|'s|exemplary|Sexy|Beast|seemed|to|revitalize|the|British|gangster|movie|,|this|equally|brutal|outing|merely|sustains|it|.\n...|a|boring|parade|of|talking|heads|and|technical|gibberish|that|will|do|little|to|advance|the|Linux|cause|.\nGreen|might|want|to|hang|onto|that|ski|mask|,|as|robbery|may|be|the|only|way|to|pay|for|his|next|project|.\nI|can|take|infantile|humor|...|but|this|is|the|sort|of|infantile|that|makes|you|wonder|about|changing|the|director|and|writer|'s|diapers|.\nThere|is|n't|nearly|enough|fun|here|,|despite|the|presence|of|some|appealing|ingredients|.\nThe|tale|of|Tok|(|Andy|Lau|)|,|a|sleek|sociopath|on|the|trail|of|O|(|Takashi|Sorimachi|)|,|the|most|legendary|of|Asian|hitmen|,|is|too|scattershot|to|take|hold|.\nDirected|in|a|paint-by-numbers|manner|.\nA|cheerful|enough|but|imminently|forgettable|rip-off|of|(|Besson|'s|)|earlier|work|.\nA|lackluster|,|unessential|sequel|to|the|classic|Disney|adaptation|of|J.M.|Barrie|'s|Peter|Pan|.\nSamira|Makhmalbaf|'s|new|film|Blackboards|is|much|like|the|ethos|of|a|stream|of|consciousness|,|although|,|it|'s|unfortunate|for|the|viewer|that|the|thoughts|and|reflections|coming|through|are|torpid|and|banal\n...|routine|,|harmless|diversion|and|little|else|.\nLate|Marriage|'s|stiffness|is|unlikely|to|demonstrate|the|emotional|clout|to|sweep|U.S.|viewers|off|their|feet|.\nThis|time|Mr.|Burns|is|trying|something|in|the|Martin|Scorsese|street-realist|mode|,|but|his|self-regarding|sentimentality|trips|him|up|again|.\nWhile|there|'s|something|intrinsically|funny|about|Sir|Anthony|Hopkins|saying|`|Get|in|the|car|,|bitch|,|'|this|Jerry|Bruckheimer|production|has|little|else|to|offer\nIt|'s|hampered|by|a|Lifetime-channel|kind|of|plot|and|a|lead|actress|who|is|out|of|her|depth|.\nLet|'s|hope|--|shall|we|?\n--|that|the|`|true|story|'|by|which|All|the|Queen|'s|Men|is|allegedly|``|inspired|''|was|a|lot|funnier|and|more|deftly|enacted|than|what|'s|been|cobbled|together|onscreen|.\nIs|there|a|group|of|more|self-absorbed|women|than|the|mother|and|daughters|featured|in|this|film|?\nI|do|n't|think|so|.\nNothing|wrong|with|performances|here|,|but|the|whiney|characters|bugged|me|.\nThere|is|very|little|dread|or|apprehension|,|and|though|I|like|the|creepy|ideas|,|they|are|not|executed|with|anything|more|than|perfunctory|skill|.\nIf|you|'ve|ever|entertained|the|notion|of|doing|what|the|title|of|this|film|implies|,|what|Sex|With|Strangers|actually|shows|may|put|you|off|the|idea|forever|.\nIn|the|end|,|the|movie|collapses|on|its|shaky|foundation|despite|the|best|efforts|of|director|Joe|Carnahan|.\nAdults|will|wish|the|movie|were|less|simplistic|,|obvious|,|clumsily|plotted|and|shallowly|characterized|.\nBut|what|are|adults|doing|in|the|theater|at|all|?\nSticky|sweet|sentimentality|,|clumsy|plotting|and|a|rosily|myopic|view|of|life|in|the|WWII-era|Mississippi|Delta|undermine|this|adaptation|.\nIt|'s|another|stale|,|kill-by-numbers|flick|,|complete|with|blade-thin|characters|and|terrible|,|pun-laden|dialogue|.\nEvery|time|you|look|,|Sweet|Home|Alabama|is|taking|another|bummer|of|a|wrong|turn|.\nPartway|through|watching|this|saccharine|,|Easter-egg-colored|concoction|,|you|realize|that|it|is|made|up|of|three|episodes|of|a|rejected|TV|show|.\nThe|overall|effect|is|less|like|a|children|'s|movie|than|a|recruitment|film|for|future|Hollywood|sellouts|.\nPortentous|and|pretentious|,|The|Weight|of|Water|is|appropriately|titled|,|given|the|heavy-handedness|of|it|drama|.\nA|fitfully|amusing|romp|that|,|if|nothing|else|,|will|appeal|to|fans|of|Malcolm|in|the|Middle|and|its|pubescent|star|,|Frankie|Muniz|.\nJason|X|is|positively|anti-Darwinian|:|nine|sequels|and|400|years|later|,|the|teens|are|none|the|wiser|and|Jason|still|kills|on|auto-pilot|.\nTo|say|this|was|done|better|in|Wilder|'s|Some|Like|It|Hot|is|like|saying|the|sun|rises|in|the|east|.\nAt|the|very|least|,|if|you|do|n't|know|anything|about|Derrida|when|you|walk|into|the|theater|,|you|wo|n't|know|much|more|when|you|leave|.\nThe|actors|are|appealing|,|but|Elysian|Fields|is|idiotic|and|absurdly|sentimental|.\nAs|`|chick|flicks|'|go|,|this|one|is|pretty|miserable|,|resorting|to|string-pulling|rather|than|legitimate|character|development|and|intelligent|plotting|.\nThe|only|excitement|comes|when|the|credits|finally|roll|and|you|get|to|leave|the|theater|.\nThere|'s|no|emotional|pulse|to|Solaris|.\nWith|an|emotional|sterility|to|match|its|outer|space|setting|,|Soderbergh|'s|spectacular|swing|for|the|fence|yields|only|a|spectacular|whiff|.\nIt|ca|n't|decide|if|it|wants|to|be|a|mystery\\/thriller|,|a|romance|or|a|comedy|.\nDenis|O'Neill|'s|script|avoids|the|prime|sports|cliche|,|a|last-second|goal|to|win|the|championship|,|but|it|neglects|few|others|.\nThe|character|of|ZigZag|is|not|sufficiently|developed|to|support|a|film|constructed|around|him|.\nOne|of|those|pictures|whose|promising|,|if|rather|precious|,|premise|is|undercut|by|amateurish|execution|.\nServing|Sara|does|n't|serve|up|a|whole|lot|of|laughs|.\nThe|most|hopelessly|monotonous|film|of|the|year|,|noteworthy|only|for|the|gimmick|of|being|filmed|as|a|single|unbroken|87-minute|take|.\nWith|virtually|no|interesting|elements|for|an|audience|to|focus|on|,|Chelsea|Walls|is|a|triple-espresso|endurance|challenge|.\nDeadeningly|dull|,|mired|in|convoluted|melodrama|,|nonsensical|jargon|and|stiff-upper-lip|laboriousness|.\nA|misogynistic|piece|of|filth|that|attempts|to|pass|itself|off|as|hip|,|young|adult|entertainment|.\nLike|the|Chelsea|'s|denizens|...|Burdette|'s|collage-form|scenario|tends|to|over-romanticize|the|spiritual|desolation|of|the|struggling|artiste|.\nIt|'s|basically|an|overlong|episode|of|Tales|from|the|Crypt|.\nThe|film|makes|a|fatal|mistake|:|It|asks|us|to|care|about|a|young|man|whose|only|apparent|virtue|is|that|he|is|not|quite|as|unpleasant|as|some|of|the|people|in|his|life|.\nAnother|in-your-face|wallow|in|the|lower|depths|made|by|people|who|have|never|sung|those|blues|.\nShaky|close-ups|of|turkey-on-rolls|,|stubbly|chins|,|liver|spots|,|red|noses|and|the|filmmakers|new|bobbed|do|draw|easy|chuckles|but|lead|nowhere|.\nI|ca|n't|quite|recommend|it|--|it|'s|too|patched|together|--|but|I|almost|can|;|it|'s|the|kind|of|movie|that|makes|you|want|to|like|it|.\nComplete|lack|of|originality|,|cleverness|or|even|visible|effort\nThough|Perry|and|Hurley|make|inspiring|efforts|to|breathe|life|into|the|disjointed|,|haphazard|script|by|Jay|Scherick|and|David|Ronn|,|neither|the|actors|nor|director|Reginald|Hudlin|can|make|it|more|than|fitfully|entertaining|.\nSomething|akin|to|a|Japanese|Alice|Through|the|Looking|Glass|,|except|that|it|seems|to|take|itself|far|more|seriously|.\nIt|takes|talent|to|make|a|lifeless|movie|about|the|most|heinous|man|who|ever|lived|.\nOn|the|whole|,|the|movie|lacks|wit|,|feeling|and|believability|to|compensate|for|its|incessant|coarseness|and|banality|.\nThe|story|and|the|friendship|proceeds|in|such|a|way|that|you|'re|watching|a|soap|opera|rather|than|a|chronicle|of|the|ups|and|downs|that|accompany|lifelong|friendships|.\nOffers|very|little|genuine|romance|and|even|fewer|laughs|...|a|sad|sitcom|of|a|movie|,|largely|devoid|of|charm|.\nMakes|for|a|pretty|unpleasant|viewing|experience|.\nThe|movie|fails|to|live|up|to|the|sum|of|its|parts|.\nAlthough|Huppert|'s|intensity|and|focus|has|a|raw|exhilaration|about|it|,|The|Piano|Teacher|is|anything|but|fun|.\nIt|showcases|Carvey|'s|talent|for|voices|,|but|not|nearly|enough|and|not|without|taxing|every|drop|of|one|'s|patience|to|get|to|the|good|stuff|.\nBad|.\nVery|bad|.\nStultifyingly|,|dumbfoundingly|,|mind-numbingly|bad|.\nMay|reawaken|discussion|of|the|Kennedy|assassination|but|this|fictional|film|looks|made|for|cable|rather|than|for|the|big|screen|.\nIf|looking|for|a|thrilling|sci-fi|cinematic|ride|,|do|n't|settle|for|this|Imposter|.\nNot|really|bad|so|much|as|distasteful|:|We|need|kidnapping|suspense|dramas|right|now|like|we|need|doomsday|thrillers|.\nThe|result|is|a|gaudy|bag|of|stale|candy|,|something|from|a|Halloween|that|died|.\nDavis|...|is|so|enamored|of|her|own|creation|that|she|ca|n't|see|how|insufferable|the|character|is|.\nThe|Man|From|Elysian|Fields|is|a|cold|,|bliss-less|work|that|groans|along|thinking|itself|some|important|comment|on|how|life|throws|us|some|beguiling|curves|.\nThe|messages|of|compassion|and|mercy|are|clearly|,|squarely|and|specifically|expounded|via|computer|animated|Old|Testament|tale|of|Jonah|and|the|Whale|.\nDetermined|to|be|fun|,|and|bouncy|,|with|energetic|musicals|,|the|humor|did|n't|quite|engage|this|adult|.\nHistorical|dramas|fused|with|love|triangle|is|a|well|worn|conceit|.\nBut|this|films|lacks|the|passion|required|to|sell|the|material|.\nLong|Time|Dead|?\nNot|nearly|long|enough|.\nNothing|more|substantial|than|a|fitfully|clever|doodle|.\nA|solid|film|...|but|more|conscientious|than|it|is|truly|stirring|.\nThere|'s|not|enough|here|to|justify|the|almost|two|hours|.\nThe|X|potion|gives|the|quickly|named|Blossom|,|Bubbles|and|Buttercup|supernatural|powers|that|include|extraordinary|strength|and|laser-beam|eyes|,|which|unfortunately|do|n't|enable|them|to|discern|flimsy|screenplays|.\nPerceptive|in|its|vision|of|nascent|industrialized|world|politics|as|a|new|art|form|,|but|far|too|clunky|,|didactic|and|saddled|with|scenes|that|seem|simply|an|ill|fit|for|this|movie|.\nVerbinski|implements|every|hack-artist|trick|to|give|us|the|ooky-spookies|.\nMcConaughey|'s|fun|to|watch|,|the|dragons|are|okay|,|not|much|fire|in|the|script|.\nAn|unwise|amalgam|of|Broadcast|News|and|Vibes|.\nSkins|has|a|right|to|yawp|,|and|we|have|a|right|to|our|grains|of|salt|.\nWho|needs|love|like|this|?\nHit|and|miss|as|far|as|the|comedy|goes|and|a|big|ole|'|miss|in|the|way|of|story|.\nReturning|aggressively|to|his|formula|of|dimwitted|comedy|and|even|dimmer|characters|,|Sandler|,|who|also|executive|produces|,|has|made|a|film|that|makes|previous|vehicles|look|smart|and|sassy|.\nExists|then|as|an|occasionally|insightful|acting|exercise|.\nTrite|,|banal|,|cliched|,|mostly|inoffensive|.\nMattei|is|tiresomely|grave|and|long-winded|,|as|if|circularity|itself|indicated|profundity|.\nIt|'s|not|original|,|and|,|robbed|of|the|element|of|surprise|,|it|does|n't|have|any|huge|laughs|in|its|story|of|irresponsible|cops|who|love|to|play|pranks|.\nWhenever|its|story|is|n't|bogged|down|by|idiocy|involving|the|CIA|and|a|lost|U.S.|satellite|,|Hunter|--|starring|Irwin|and|his|American|wife\\/colleague|,|Terri|--|is|a|movie|children|should|enjoy|.\nIt|offers|little|beyond|the|momentary|joys|of|pretty|and|weightless|intellectual|entertainment|.\nA|sequence|of|ridiculous|shoot|-|'em|-|up|scenes|.\nNothing|in|Waking|Up|in|Reno|ever|inspired|me|to|think|of|its|inhabitants|as|anything|more|than|markers|in|a|screenplay|.\nI|'m|just|too|bored|to|care|.\nIrwin|is|a|man|with|enough|charisma|and|audacity|to|carry|a|dozen|films|,|but|this|particular|result|is|ultimately|held|back|from|being|something|greater|.\nNot|a|stereotype|is|omitted|nor|a|cliché|left|unsaid|.\nAs|befits|its|title|,|this|PG-13-rated|piffle|is|ultimately|as|threatening|as|the|Snuggle|Fabric|Softener|bear|.\nAttempts|by|this|ensemble|film|to|impart|a|message|are|so|heavy-handed|that|they|instead|pummel|the|audience|.\nIt|all|feels|like|a|Monty|Python|sketch|gone|horribly|wrong|.\nNervous|breakdowns|are|not|entertaining|.\nScorsese|does|n't|give|us|a|character|worth|giving|a|damn|about|.\nA|beautifully|made|piece|of|unwatchable|drivel|.\nLike|being|trapped|at|a|perpetual|frat|party|...|How|can|something|so|gross|be|so|boring|?\nThis|is|so|bad|.\nEven|film|silliness|needs|a|little|gravity|,|beyond|good|hair|and|humping|.\nI|felt|sad|for|Lise|not|so|much|because|of|what|happens|as|because|she|was|captured|by|this|movie|when|she|obviously|belongs|in|something|lighter|and|sunnier|,|by|Rohmer|,|for|example|.\nPrurient|playthings|aside|,|there|'s|little|to|love|about|this|English|trifle|.\nThis|is|a|train|wreck|of|an|action|film|--|a|stupefying|attempt|by|the|filmmakers|to|force-feed|James|Bond|into|the|mindless|XXX|mold|and|throw|40|years|of|cinematic|history|down|the|toilet|in|favor|of|bright|flashes|and|loud|bangs|.\nThe|film|flat|lines|when|it|should|peak|and|is|more|missed|opportunity|and|trifle|than|dark|,|decadent|truffle|.\nIt|'s|played|in|the|most|straight-faced|fashion|,|with|little|humor|to|lighten|things|up|.\nThe|heavy-handed|film|is|almost|laughable|as|a|consequence|.\nVan|Wilder|brings|a|whole|new|meaning|to|the|phrase|`|comedy|gag|.|'\nAt|least|one|scene|is|so|disgusting|that|viewers|may|be|hard|pressed|to|retain|their|lunch|.\nA|disappointment|for|those|who|love|alternate|versions|of|the|Bard|,|particularly|ones|that|involve|deep|fryers|and|hamburgers|.\nThe|film|tries|too|hard|to|be|funny|and|tries|too|hard|to|be|hip|.\nThe|end|result|is|a|film|that|'s|neither|.\nEvery|nanosecond|of|the|The|New|Guy|reminds|you|that|you|could|be|doing|something|else|far|more|pleasurable|.\nSomething|like|scrubbing|the|toilet|.\nOr|emptying|rat|traps|.\nOr|doing|last|year|'s|taxes|with|your|ex-wife|.\nScooby|Dooby|Doo|\\/|And|Shaggy|too|\\/|You|both|look|and|sound|great|.\n\\/|But|Daphne|,|you|'re|too|Buff|\\/|Fred|thinks|he|'s|tough|\\/|And|Velma|-|wow|,|you|'ve|lost|weight|!\nIs|the|time|really|ripe|for|a|warmed-over|James|Bond|adventure|,|with|a|village|idiot|as|the|007|clone|?\nThere|'s|enough|melodrama|in|this|Magnolia|Primavera|to|make|PTA|proud|yet|director|Muccino|'s|characters|are|less|worthy|of|Puccini|than|they|are|of|daytime|television|.\nHowever|it|may|please|those|who|love|movies|that|blare|with|pop|songs|,|young|science|fiction|fans|will|stomp|away|in|disgust|.\nThe|humor|is|n't|as|sharp|,|the|effects|not|as|innovative|,|nor|the|story|as|imaginative|as|in|the|original|.\nBut|it|could|have|been|worse|.\nSome|of|their|jokes|work|,|but|most|fail|miserably|and|in|the|end|,|Pumpkin|is|far|more|offensive|than|it|is|funny|.\nEven|horror|fans|will|most|likely|not|find|what|they|'re|seeking|with|Trouble|Every|Day|;|the|movie|lacks|both|thrills|and|humor|.\ncomes|off|like|a|rejected|ABC|Afterschool|Special|,|freshened|up|by|the|dunce|of|a|Screenwriting|101|class|.\n...|Designed|to|provide|a|mix|of|smiles|and|tears|,|``|Crossroads|''|instead|provokes|a|handful|of|unintentional|howlers|and|numerous|yawns|.\nit|seems|to|me|the|film|is|about|the|art|of|ripping|people|off|without|ever|letting|them|consciously|know|you|have|done|so\nIt|'s|just|disappointingly|superficial|--|a|movie|that|has|all|the|elements|necessary|to|be|a|fascinating|,|involving|character|study|,|but|never|does|more|than|scratch|the|surface|.\nThe|title|not|only|describes|its|main|characters|,|but|the|lazy|people|behind|the|camera|as|well|.\nSometimes|it|feels|as|if|it|might|have|been|made|in|the|'70s|or|'80s|,|and|starred|Chevy|Chase|and|Goldie|Hawn|.\nSchaeffer|has|to|find|some|hook|on|which|to|hang|his|persistently|useless|movies|,|and|it|might|as|well|be|the|resuscitation|of|the|middle-aged|character|.\nDemands|too|much|of|most|viewers|.\nThe|story|drifts|so|inexorably|into|cliches|about|tortured|(|and|torturing|)|artists|and|consuming|but|impossible|love|that|you|ca|n't|help|but|become|more|disappointed|as|each|overwrought|new|sequence|plods|on|.\nIt|should|be|mentioned|that|the|set|design|and|interiors|of|the|haunted|vessel|are|more|than|effectively|creepy|and|moodily|lit|.\nSo|I|just|did|.\nShamelessly|sappy|and|,|worse|,|runs|away|from|its|own|provocative|theme|.\nThe|Ring|just|left|me|cold|and|wet|like|I|was|out|in|the|Seattle|drizzle|without|rainwear|.\nThe|film|seems|a|dead|weight|.\nThe|lack|of|pace|kills|it|,|although|,|in|a|movie|about|cancer|,|this|might|be|apt|.\nFor|anyone|who|grew|up|on|Disney|'s|1950|Treasure|Island|,|or|remembers|the|1934|Victor|Fleming|classic|,|this|one|feels|like|an|impostor|.\nA|clutchy|,|indulgent|and|pretentious|travelogue|and|diatribe|against|...|well|,|just|stuff|.\nWatching|Scarlet|Diva|,|one|is|poised|for|titillation|,|raw|insight|or|both|.\nInstead|,|we|just|get|messy|anger|,|a|movie|as|personal|therapy|.\nMeandering|,|sub-aquatic|mess|:|It|'s|so|bad|it|'s|good|,|but|only|if|you|slide|in|on|a|freebie|.\nThe|ending|is|a|cop-out|.\nWhat|happens|to|John|Q|?\nI|do|n't|have|an|I|Am|Sam|clue|.\nHas|the|feel|of|an|unedited|personal|journal|.\nRemember|when|Bond|had|more|glamour|than|clamor|?\nNo|more|.\nCry|havoc|and|let|slip|the|dogs|of|cheese|,|indeed|.\nThis|charmless|nonsense|ensues|amid|clanging|film|references|that|make|Jay|and|Silent|Bob|'s|Excellent|Adventure|seem|understated|.\nIt|does|n't|quite|deserve|the|gong|,|but|there|are|more|fascinating|acts|than|``|Confessions|of|a|Dangerous|Mind|.|''\nThe|subject|of|swinging|still|seems|ripe|for|a|documentary|--|just|not|this|one|.\n...|Hudlin|is|stuck|trying|to|light|a|fire|with|soggy|leaves|.\nUnlike|his|directorial|efforts|,|La|Femme|Nikita|and|The|Professional|,|The|Transporter|lacks|Besson|'s|perspective|as|a|storyteller|.\nThe|overall|effect|is|so|completely|inane|that|one|would|have|to|be|mighty|bored|to|even|think|of|staying|with|this|for|more|than|,|say|,|ten|...|make|that|three|minutes|.\nMost|of|the|supporting|characters|in|Eastwood|films|are|weak|,|as|are|most|of|the|subplots|.\nThis|one|'s|weaker|than|most|.\nAudiences|will|find|no|mention|of|political|prisoners|or|persecutions|that|might|paint|the|Castro|regime|in|less|than|saintly|tones|.\nThe|film|takes|too|long|getting|to|the|good|stuff|,|then|takes|too|long|figuring|out|what|to|do|next|.\nYou|can|practically|smell|the|patchouli|oil|.\nTo|say|Analyze|That|is|De|Niro|'s|best|film|since|Meet|the|Parents|sums|up|the|sad|state|of|his|recent|career|.\nThe|actors|do|n't|inhabit|their|roles|--|they|'re|trapped|by|them|,|forced|to|change|behavior|in|bizarre|unjustified|fashion|and|spout|dialog|that|consists|mostly|of|platitudes|.\nAn|often-deadly|boring|,|strange|reading|of|a|classic|whose|witty|dialogue|is|treated|with|a|baffling|casual|approach\nThis|film|was|made|to|get|laughs|from|the|slowest|person|in|the|audience|--|just|pure|slapstick|with|lots|of|inane|,|inoffensive|screaming|and|exaggerated|facial|expressions|.\nConsists|of|a|plot|and|jokes|done|too|often|by|people|far|more|talented|than|Ali|G\nAnother|week|,|another|gross-out|college|comedy|--|ugh|.\nModerately|involving|despite|bargain-basement|photography|and|hackneyed|romance|.\nThere|is|no|insight|into|the|anguish|of|Heidi|'s|life|--|only|a|depiction|of|pain|,|today|'s|version|of|Greek|tragedy|,|the|talk-show|guest|decrying|her|fate|.\nThe|editing|is|chaotic|,|the|photography|grainy|and|badly|focused|,|the|writing|unintentionally|hilarious|,|the|direction|unfocused|,|the|performances|as|wooden|.\nWhen|(|De|Palma|'s|)|bad|,|he|'s|really|bad|,|and|Femme|Fatale|ranks|with|the|worst|he|has|done|.\nTadpole|is|emblematic|of|the|witless|ageism|afflicting|films|:|Young|is|cool|,|and|too|young|is|too|cool|.\nI|doubt|anyone|will|remember|the|picture|by|the|time|Christmas|really|rolls|around|,|but|maybe|it|'ll|be|on|video|by|then|.\nUncertain|in|tone|...|a|garbled|exercise|in|sexual|politics|,|a|junior|varsity|Short|Cuts|by|way|of|Very|Bad|Things|.\nAll|'s|well|that|ends|well|,|and|rest|assured|,|the|consciousness-raising|lessons|are|cloaked|in|gross-out|gags|.\nThe|only|thing|worse|than|your|substandard|,|run-of-the-mill|Hollywood|picture|is|an|angst-ridden|attempt|to|be|profound|.\nIf|you|think|that|Jennifer|Lopez|has|shown|poor|judgment|in|planning|to|marry|Ben|Affleck|,|wait|till|you|see|Maid|in|Manhattan|.\nStars|Matthew|Perry|and|Elizabeth|Hurley|illicit|more|than|a|chuckle|,|and|more|jokes|land|than|crash|,|but|ultimately|Serving|Sara|does|n't|distinguish|itself|from|the|herd|.\nIt|'s|best|to|avoid|imprisonment|with|the|dull|,|nerdy|folks|that|inhabit|Cherish|.\nCulkin|exudes|none|of|the|charm|or|charisma|that|might|keep|a|more|general|audience|even|vaguely|interested|in|his|bratty|character|.\nIn|the|end|,|Ted|Bundy|'s|only|justification|is|the|director|'s|common|but|unexplored|fascination|with|the|frustrated|maniac|;|there|'s|no|larger|point|,|and|little|social|context|.\n...|(|like|)|channel|surfing|between|the|Discovery|Channel|and|a|late-night|made-for-cable|action|movie|.\nA|movie|that|,|rather|than|skip|along|the|Seine|,|more|or|less|slogs|its|way|through|soggy|Paris|,|tongue|uncomfortably|in|cheek|.\nShot|perhaps|`|artistically|'|with|handheld|cameras|and|apparently|no|movie|lights|by|Joaquin|Baca-Asay|,|the|low-budget|production|swings|annoyingly|between|vertigo|and|opacity|.\nImagine|a|really|bad|community|theater|production|of|West|Side|Story|without|the|songs|.\nSoul|is|what|'s|lacking|in|every|character|in|this|movie|and|,|subsequently|,|the|movie|itself|.\nA|one-trick|pony|whose|few|T&A|bits|still|ca|n't|save|itself|from|being|unoriginal|,|unfunny|and|unrecommendable|.\nThe|worst|kind|of|independent|;|the|one|where|actors|play|dress|down|hicks|and|ponderously|mope|around|trying|to|strike|lightning|as|captured|by|their|1970s|predecessors\nIt|may|be|a|prize|winner|,|but|Teacher|is|a|bomb|.\nThe|production|values|are|up|there|.\nThe|use|of|CGI|and|digital|ink-and-paint|make|the|thing|look|really|slick|.\nThe|voices|are|fine|as|well|.\nThe|problem|,|it|is|with|most|of|these|things|,|is|the|script|.\nIt|'s|got|its|heart|in|the|right|place|,|but|it|also|wilts|after|awhile|.\nProves|that|a|movie|about|goodness|is|not|the|same|thing|as|a|good|movie|.\nWell|,|it|does|go|on|forever|.\nThis|overproduced|and|generally|disappointing|effort|is|n't|likely|to|rouse|the|Rush|Hour|crowd|.\nTopkapi|this|is|not|.\nIf|Shayamalan|wanted|to|tell|a|story|about|a|man|who|loses|his|faith|,|why|did|n't|he|just|do|it|,|instead|of|using|bad|sci-fi|as|window|dressing|?\nEthan|Hawke|has|always|fancied|himself|the|bastard|child|of|the|Beatnik|generation|and|it|'s|all|over|his|Chelsea|Walls|.\nEqual|parts|bodice-ripper|and|plodding|costume|drama|.\nI|'m|not|suggesting|that|you|actually|see|it|,|unless|you|'re|the|kind|of|person|who|has|seen|every|Wim|Wenders|film|of|the|'70s|.\nWhile|the|film|misfires|at|every|level|,|the|biggest|downside|is|the|paucity|of|laughter|in|what|'s|supposed|to|be|a|comedy|.\nIf|you|liked|the|1982|film|then|,|you|'ll|still|like|it|now|.\nA|93-minute|condensation|of|a|26-episode|TV|series|,|with|all|of|the|pitfalls|of|such|you|'d|expect|.\nGuillen|rarely|gets|beneath|the|surface|of|things|.\nShe|lists|ingredients|,|but|never|mixes|and|stirs|.\nAudiences|can|be|expected|to|suspend|their|disbelief|only|so|far|--|and|that|does|not|include|the|5|o'clock|shadow|on|the|tall|wooden|kid|as|he|skips|off|to|school|.\nTo|imagine|the|life|of|Harry|Potter|as|a|martial|arts|adventure|told|by|a|lobotomized|Woody|Allen|is|to|have|some|idea|of|the|fate|that|lies|in|store|for|moviegoers|lured|to|the|mediocrity|that|is|Kung|Pow|:|Enter|the|Fist|.\nIt|delivers|some|chills|and|sustained|unease|,|but|flounders|in|its|quest|for|Deeper|Meaning|.\nCredibility|levels|are|low|and|character|development|a|non-starter|.\nI|would|have|preferred|a|transfer|down|the|hall|to|Mr.|Holland|'s|class|for|the|music|,|or|to|Robin|Williams|'s|lecture|so|I|could|listen|to|a|teacher|with|humor|,|passion|,|and|verve|.\nFor|the|most|part|,|the|ingredients|are|there|.\nBut|an|unwillingness|to|explore|beyond|the|surfaces|of|her|characters|prevents|Nettelbeck|'s|film|from|coming|together|.\nAn|earnest|,|heartrending|look|at|the|divide|between|religious|fundamentalists|and|their|gay|relatives|.\nIt|'s|also|heavy-handed|and|devotes|too|much|time|to|bigoted|views|.\nA|mawkish|,|implausible|platonic|romance|that|makes|Chaplin|'s|City|Lights|seem|dispassionate|by|comparison|.\nYes|,|one|enjoys|seeing|Joan|grow|from|awkward|young|woman|to|strong|,|determined|monarch|,|but|her|love|for|the|philandering|Philip|only|diminishes|her|stature|.\nIt|'s|a|film|that|hinges|on|its|casting|,|and|Glover|really|does|n't|fit|the|part|.\nThis|is|a|throwaway|,|junk-food|movie|whose|rap|soundtrack|was|better|tended|to|than|the|film|itself|.\n...|with|the|candy-like|taste|of|it|fading|faster|than|25-cent|bubble|gum|,|I|realized|this|is|a|throwaway|movie|that|wo|n't|stand|the|test|of|time|.\nIt|'s|a|trifle|.\nLiterally|nothing|in|The|Pool|is|new|,|but|if|you|grew|up|on|the|stalker|flicks|of|the|1980|'s|this|one|should|appease|you|for|90|minutes|.\nArguably|the|year|'s|silliest|and|most|incoherent|movie|.\nAnyway|,|for|one|reason|or|another|,|Crush|turns|into|a|dire|drama|partway|through|.\nAfter|that|,|it|just|gets|stupid|and|maudlin|.\nToo|bad|,|but|thanks|to|some|lovely|comedic|moments|and|several|fine|performances|,|it|'s|not|a|total|loss|.\nChao|was|Chen|Kaige|'s|assistant|for|years|in|China|.\nHe|has|not|learnt|that|storytelling|is|what|the|movies|are|about|.\nA|mixed|bag|of|a|comedy|that|ca|n't|really|be|described|as|out|of|this|world|.\nThe|film|is|a|travesty|of|the|genre|and|even|as|spoof|takes|itself|too|seriously|.\nMarries|the|amateurishness|of|The|Blair|Witch|Project|with|the|illogic|of|Series|7|:|The|Contenders|to|create|a|completely|crass|and|forgettable|movie|.\nThe|Piano|Teacher|is|the|sort|of|movie|that|discourages|American|audiences|from|ever|wanting|to|see|another|foreign|film|.\nIf|it|'s|another|regurgitated|action|movie|you|'re|after|,|there|'s|no|better|film|than|Half|Past|Dead|.\nSo|what|is|the|point|?\nLovingly|choreographed|bloodshed|taking|place|in|a|pristine|movie|neverland|,|basically|.\nThis|is|junk|food|cinema|at|its|greasiest|.\nWhen|it|'s|all|wet|,|Blue|Crush|is|highly|enjoyable|.\nWhen|it|'s|on|dry|land|,|though|,|this|surfer-girl|melodrama|starts|gasping|like|a|beached|grouper|.\nMost|new|movies|have|a|bright|sheen|.\nSome|,|like|Ballistic|,|arrive|stillborn|...|looking|like|the|beaten|,|well-worn|video|box|cover|of|seven|years|into|the|future|.\nThe|story|is|naturally|poignant|,|but|first-time|screenwriter|Paul|Pender|overloads|it|with|sugary|bits|of|business|.\nYou|see|Robert|De|Niro|singing|-|and|dancing|to|-|West|Side|Story|show|tunes|.\nChoose|your|reaction|:|A.|)|That|sure|is|funny|!\nB.|)|That|sure|is|pathetic|!\nA|sermonizing|and|lifeless|paean|to|teenage|dullards|.\nThis|dramatically|shaky|contest|of|wills|only|reiterates|the|old|Hollywood|saw|:|Evil|is|interesting|and|good|is|boring|.\nBefore|long|,|the|film|starts|playing|like|General|Hospital|crossed|with|a|Saturday|Night|Live|spoof|of|Dog|Day|Afternoon|.\nThe|charms|of|willful|eccentricity|,|at|least|as|evidenced|by|this|latest|cinematic|essay|,|are|beginning|to|wear|a|bit|thin|.\nInstead|of|accurately|accounting|a|terrible|true|story|,|the|film|'s|more|determined|to|become|the|next|Texas|Chainsaw|Massacre|.\nBut|what|about|the|countless|other|people|who|'d|merely|like|to|watch|a|solid|tale|about|a|universally|interesting|soul|?\nA|silly|,|self-indulgent|film|about|a|silly|,|self-indulgent|filmmaker|.\nScarlet|Diva|has|a|voyeuristic|tug|,|but|all|in|all|it|'s|a|lot|less|sensational|than|it|wants|to|be|.\nThe|character|is|too|forced|and|overwritten|to|be|funny|or|believable|much|of|the|time|,|and|Clayburgh|does|n't|always|improve|the|over-the-top|mix|.\nFlashy|,|pretentious|and|as|impenetrable|as|Morvern|'s|thick|,|working-class|Scottish|accent|.\nA|battle|between|bug-eye|theatre|and|dead-eye|matinee|.\nThe|movie|is|virtually|without|context|--|journalistic|or|historical|.\nWhat|'s|worse|is|that|Pelosi|knows|it|.\n...|instead|go|rent|``|Shakes|The|Clown|''|,|a|much|funnier|film|with|a|similar|theme|and|an|equally|great|Robin|Williams|performance|.\nLame|,|haphazard|teen|comedy|.\nIt|'s|the|kind|of|movie|that|ends|up|festooning|U.S.|art|house|screens|for|no|reason|other|than|the|fact|that|it|'s|in|French|(|well|,|mostly|)|with|English|subtitles|and|is|magically|`|significant|'|because|of|that|.\nThis|miserable|excuse|of|a|movie|runs|on|empty|,|believing|Flatbush|machismo|will|get|it|through|.\nExpect|to|be|reminded|of|other|,|better|films|,|especially|Seven|,|which|director|William|Malone|slavishly|copies|.\nNair|stuffs|the|film|with|dancing|,|henna|,|ornamentation|,|and|group|song|,|but|her|narrative|clichés|and|telegraphed|episodes|smell|of|old|soap|opera|.\nIt|'s|getting|harder|and|harder|to|ignore|the|fact|that|Hollywood|is|n't|laughing|with|us|,|folks|.\nIt|'s|laughing|at|us|.\nMight|have|been|better|off|as|a|documentary|,|with|less|of|Mr.|Eyre|'s|uninspired|dramatics|and|more|of|his|sense|of|observation|and|outrage|.\nEvery|good|actor|needs|to|do|his|or|her|own|Hamlet|.\nFor|Benigni|it|was|n't|Shakespeare|whom|he|wanted|to|define|his|career|with|but|Pinocchio|.\nIt|might|as|well|have|been|Problem|Child|IV|.\nArnold|'s|jump|from|little|screen|to|big|will|leave|frowns|on|more|than|a|few|faces|.\nBoth|awful|and|appealing|.\nThe|lack|of|opposing|viewpoints|soon|grows|tiresome|--|the|film|feels|more|like|a|series|of|toasts|at|a|testimonial|dinner|than|a|documentary|.\nNothing|plot-wise|is|worth|e-mailing|home|about|.\nWe|are|left|with|a|superficial|snapshot|that|,|however|engaging|,|is|insufficiently|enlightening|and|inviting|.\nHelmer|DeVito|...|attempts|to|do|too|many|things|in|this|story|about|ethics|,|payola|,|vice|,|murder|,|kids|'|TV|and|revenge|.\nIt|would|n't|be|my|preferred|way|of|spending|100|minutes|or|$|7.00|.\nI|hated|every|minute|of|it|.\n(|T|)|hose|same|extremes|prevent|us|from|taking|its|message|seriously|,|and|the|Stepford|Wives|mentality|does|n't|work|in|a|modern|context|.\nObvious|politics|and|rudimentary|animation|reduce|the|chances|that|the|appeal|of|Hey|Arnold|!\nThe|Movie|will|reach|far|beyond|its|core|demographic|.\nThere|'s|no|mistaking|the|fact|that|this|hybrid|misses|the|impact|of|the|Disney|classic|,|and|even|that|of|the|excellent|1934|MGM|version|.\nA|simple|,|sometimes|maddeningly|slow|film|that|has|just|enough|charm|and|good|acting|to|make|it|interesting|,|but|is|ultimately|pulled|under|by|the|pacing|and|lack|of|creativity|within|.\nRoger|Michell|,|who|did|an|appealing|job|directing|Persuasion|and|Notting|Hill|in|England|,|gets|too|artsy|in|his|American|debut|.\nThere|is|an|almost|poignant|dimension|to|the|way|that|every|major|stunt|Seagal|'s|character|...|performs|is|shot|from|behind|,|as|if|it|could|fool|us|into|thinking|that|we|'re|not|watching|a|double|.\nAnthony|Hopkins|?\nBig|deal|!\nWe|'ve|already|seen|the|prequel|to|The|Silence|of|the|Lambs|and|Hannibal|--|and|it|was|better|the|first|time|.\nOstensibly|celebrates|middle-aged|girl|power|,|even|as|it|presents|friendship|between|women|as|pathetic|,|dysfunctional|and|destructive|.\nIf|this|is|an|example|of|the|type|of|project|that|Robert|Redford|'s|lab|is|willing|to|lend|its|imprimatur|to|,|then|perhaps|it|'s|time|to|rethink|independent|films|.\nPumpkin|sits|in|a|patch|somewhere|between|mirthless|Todd|Solondzian|satire|and|callow|student|film|.\nNot|so|much|funny|as|aggressively|sitcom-cute|,|it|'s|full|of|throwaway|one-liners|,|not-quite|jokes|,|and|a|determined|TV|amiability|that|Allen|personifies|.\nIt|'s|not|that|Waiting|For|Happiness|is|a|bad|film|,|because|it|is|n't|.\nIt|'s|just|incredibly|dull|.\nThe|sad|thing|about|Knockaround|Guys|is|its|lame|aspiration|for|grasping|the|coolness|vibes|when|in|fact|the|film|is|n't|as|flippant|or|slick|as|it|thinks|it|is|.\nA|cumbersome|and|cliche-ridden|movie|greased|with|every|emotional|device|known|to|man|.\nDirector|Ferzan|Ozpetek|creates|an|interesting|dynamic|with|the|members|of|this|group|,|who|live|in|the|same|apartment|building|.\nBut|he|loses|his|focus|when|he|concentrates|on|any|single|person|.\nEgoyan|'s|movie|is|too|complicated|to|sustain|involvement|,|and|,|if|you|'ll|excuse|a|little|critical|heresy|,|too|intellectually|ambitious|.\nIt|wants|to|be|thought|of|as|a|subversive|little|indie|film|,|but|it|has|all|the|qualities|of|a|modern|situation|comedy|.\nDespite|apparent|motives|to|the|contrary|,|it|ends|up|being|,|like|(|Seinfeld|'s|)|revered|TV|show|,|about|pretty|much|nothing|.\nShadyac|shoots|his|film|like|an|M.|Night|Shyamalan|movie|,|and|he|frequently|maintains|the|same|snail|'s|pace|;|he|just|forgot|to|add|any|genuine|tension|.\nPlays|less|like|a|coming-of-age|romance|than|an|infomercial|.\nThere|are|a|few|laughs|and|clever|sight|gags|scattered|about|,|but|not|enough|to|make|this|anything|more|than|another|big-budget|bust|.\nThe|story|'s|so|preposterous|that|I|did|n't|believe|it|for|a|second|,|despite|the|best|efforts|of|everyone|involved|.\nI|'ve|heard|that|the|fans|of|the|first|Men|in|Black|have|come|away|hating|the|second|one|.\nI|wonder|why|.\nThey|felt|like|the|same|movie|to|me|.\nDespite|her|relentless|vim|and|winsome|facial|symmetry|,|Witherspoon|is|just|too|dialed-up|to|be|America|'s|Sweetheart|.\nAn|ultra-low-budget|indie|debut|that|smacks|more|of|good|intentions|than|talent|.\nBirot|is|a|competent|enough|filmmaker|,|but|her|story|has|nothing|fresh|or|very|exciting|about|it|.\nDe|Niro|and|McDormand|give|solid|performances|,|but|their|screen|time|is|sabotaged|by|the|story|'s|inability|to|create|interest|.\nEven|those|of|a|single|digit|age|will|be|able|to|recognize|that|this|story|is|too|goofy|...|even|for|Disney|.\nThat|is|essentially|what|'s|missing|from|Blackboards|--|the|sense|of|something|bigger|,|some|ultimate|point|.\nA|compendium|of|Solondz|'s|own|worst|instincts|in|under|90|minutes|.\nIf|the|title|is|a|Jeopardy|question|,|then|the|answer|might|be|``|How|does|Steven|Seagal|come|across|these|days|?|''\nor|maybe|``|How|will|you|feel|after|an|88-minute|rip-off|of|The|Rock|with|action|confined|to|slo-mo|gun|firing|and|random|glass-shattering|?|''\nIt|is|a|comedy|that|'s|not|very|funny|and|an|action|movie|that|is|not|very|thrilling|(|and|an|uneasy|alliance|,|at|that|)|.\nThe|story|is|familiar|from|its|many|predecessors|;|like|them|,|it|eventually|culminates|in|the|not-exactly|-|stunning|insight|that|crime|does|n't|pay|.\nYou|'ll|have|more|fun|setting|fire|to|yourself|in|the|parking|lot|.\nYou|'ll|be|more|entertained|getting|hit|by|a|bus|.\nDissing|a|Bond|movie|is|quite|like|calling|a|dog|stupid|,|but|when|it|has|the|temerity|to|run|over|two|hours|,|you|feel|like|winding|up|with|a|kick|.\nRitchie|'s|treatment|of|the|class|reversal|is|majorly|ham-fisted|,|from|the|repetitive|manifestos|that|keep|getting|thrown|in|people|'s|faces|to|the|fact|Amber|is|such|a|joke|.\nFlat|,|but|with|a|revelatory|performance|by|Michelle|Williams|.\nLittle|more|than|a|frothy|vanity|project|.\nThe|film|goes|from|being|an|unusual|sci-fi|character|study|to|a|chase|flick|that|detracts|from|its|ending|.\nVerbinski|substitutes|atmosphere|for|action|,|tedium|for|thrills|.\nFor|all|its|surface|frenzy|,|High|Crimes|should|be|charged|with|loitering|--|so|much|on|view|,|so|little|to|offer|.\nThe|Sum|of|All|Fears|is|almost|impossible|to|follow|--|and|there|'s|something|cringe-inducing|about|seeing|an|American|football|stadium|nuked|as|pop|entertainment|.\nAlex|Nohe|'s|documentary|plays|like|a|travelogue|for|what|mostly|resembles|a|real-life|,|big-budget|NC-17|version|of|Tank|Girl|.\nThe|title|Trapped|turns|out|to|be|a|pretty|fair|description|of|how|you|feel|while|you|'re|watching|this|ultra-manipulative|thriller|.\nThe|appeal|of|the|vulgar|,|sexist|,|racist|humour|went|over|my|head|or|--|considering|just|how|low|brow|it|is|--|perhaps|it|snuck|under|my|feet|.\nThe|story|really|has|no|place|to|go|since|Simone|is|not|real|--|she|ca|n't|provide|any|conflict|.\nIHOPs|do|n't|pile|on|this|much|syrup|.\nFor|the|most|part|,|I|Spy|was|an|amusing|lark|that|will|probably|rank|as|one|of|Murphy|'s|better|performances|in|one|of|his|lesser-praised|movies|.\nfocuses|on|Joan|'s|raging|hormones|and|sledgehammers|the|audience|with|Spanish|inquisitions|about|her|``|madness|''|so|much|that|I|became|mad|that|I|wasted|123|minutes|and|$|9.50|on|this|21st|century|torture|device|.\nThis|series|should|have|died|long|ago|,|but|they|keep|bringing|it|back|another|day|as|punishment|for|paying|money|to|see|the|last|James|Bond|movie|.\nA|bit|of|an|unwieldy|mess|.\nWith|a|story|as|bizarre|and|mysterious|as|this|,|you|do|n't|want|to|be|worrying|about|whether|the|ineffectual|Broomfield|is|going|to|have|the|courage|to|knock|on|that|door|.\nThe|filmmakers|juggle|and|juxtapose|three|story|lines|but|fail|to|come|up|with|one|cogent|point|,|unless|it|'s|that|life|stinks|,|especially|for|sensitive|married|women|who|really|love|other|women|.\nThe|movie|feels|like|it|'s|going|to|be|great|,|and|it|carries|on|feeling|that|way|for|a|long|time|,|but|takeoff|just|never|happens|.\nA|gimmick|in|search|of|a|movie|:|how|to|get|Carvey|into|as|many|silly|costumes|and|deliver|as|many|silly|voices|as|possible|,|plot|mechanics|be|damned|.\n...|the|last|time|I|saw|a|theater|full|of|people|constantly|checking|their|watches|was|during|my|SATs|.\n...|fifty|minutes|of|tedious|adolescent|melodramatics|followed|by|thirty-five|minutes|of|inflated|nonsense|.\n...|lacks|the|punch|and|verve|needed|to|make|this|genre|soar|.\nIt|'s|often|faintly|amusing|,|but|the|problems|of|the|characters|never|become|important|to|us|,|and|the|story|never|takes|hold|.\nIt|'s|tough|,|astringent|,|darkly|funny|and|...|well|,|it|'s|also|generic|,|untidy|,|condescending|and|mild|of|impact|rather|than|stunning|.\nLargely|a|for-fans|artifact|.\nThere|'s|no|denying|the|elaborateness|of|the|artist|'s|conceptions|,|nor|his|ability|to|depict|them|with|outrageous|elan|,|but|really|the|whole|series|is|so|much|pretentious|nonsense|,|lavishly|praised|by|those|who|equate|obscurity|with|profundity|.\nCharacters|wander|into|predictably|treacherous|situations|even|though|they|should|know|better|.\nThere|'s|plenty|of|style|in|Guillermo|Del|Toro|'s|sequel|to|the|1998|hit|but|why|do|we|need|117|minutes|to|tell|a|tale|that|simply|ca|n't|sustain|more|than|90|minutes|.\n(|I|)|f|you|'ve|been|to|more|than|one|indie|flick|in|your|life|,|chances|are|you|'ve|already|seen|this|kind|of|thing|.\nFirst-time|director|João|Pedro|Rodrigues|'|unwillingness|to|define|his|hero|'s|background|or|motivations|becomes|more|and|more|frustrating|as|the|film|goes|on|.\nNo|reason|for|anyone|to|invest|their|hard-earned|bucks|into|a|movie|which|obviously|did|n't|invest|much|into|itself|either|.\nA|strong|first|quarter|,|slightly|less|so|second|quarter|,|and|average|second|half|.\nA|boring|,|wincingly|cute|and|nauseatingly|politically|correct|cartoon|guaranteed|to|drive|anyone|much|over|age|4|screaming|from|the|theater|.\nThe|vampire|thriller|Blade|II|starts|off|as|a|wild|hoot|and|then|sucks|the|blood|out|of|its|fun|--|toward|the|end|,|you|can|feel|your|veins|cringing|from|the|workout|.\nWhen|the|first|few|villians|are|introduced|as|``|Spider|''|and|``|Snake|''|you|know|you|'re|in|for|a|real|winner|,|creativity|at|its|peak|.\nAn|Afterschool|Special|without|the|courage|of|its|convictions|.\nThe|final|result|makes|for|adequate|entertainment|,|I|suppose|,|but|anyone|who|has|seen|Chicago|on|stage|will|leave|the|theater|feeling|they|'ve|watched|nothing|but|a|pale|imitation|of|the|real|deal|.\n(|Director|)|Byler|may|yet|have|a|great|movie|in|him|,|but|Charlotte|Sometimes|is|only|half|of|one|.\nSo|few|movies|explore|religion|that|it|'s|disappointing|to|see|one|reduce|it|to|an|idea|that|fits|in|a|sampler|.\nIt|'s|also|clear|from|the|start|that|The|Transporter|is|running|purely|on|adrenaline|,|and|once|the|initial|high|wears|off|,|the|film|'s|shortcomings|start|to|shine|through|.\nWatching|it|is|rather|like|viewing|a|long|soap|opera|in|which|only|the|first|episode|was|any|good|.\nIt|'s|fun|,|but|a|psychological|mess|,|with|Austin|Powers|bumping|his|head|on|the|way|out|of|the|closet|.\nThere|are|touching|moments|in|Etoiles|,|but|for|the|most|part|this|is|a|dull|,|dour|documentary|on|what|ought|to|be|a|joyful|or|at|least|fascinating|subject|.\nCould|the|whole|plan|here|have|been|to|produce|something|that|makes|Fatal|Attraction|look|like|a|classic|by|comparison|?\nThat|'s|the|only|sane|rationale|I|can|think|of|for|Swimfan|'s|existence|.\nI|did|n't|laugh|at|the|ongoing|efforts|of|Cube|,|and|his|skinny|buddy|Mike|Epps|,|to|make|like|Laurel|and|Hardy|'n|the|hood|.\nThe|only|way|this|supernatural|snore-fest|could|give|anyone|a|case|of|the|frights|is|if|they|were|put|to|sleep|by|the|movie|and|had|a|nightmare|.\nI|wonder|what|the|reaction|of|Israelis|will|be|to|this|supposedly|evenhanded|presentation|.\nThe|film|would|work|much|better|as|a|video|installation|in|a|museum|,|where|viewers|would|be|free|to|leave|.\nImmediately|.\nHuman|Nature|initially|succeeds|by|allowing|itself|to|go|crazy|,|but|ultimately|fails|by|spinning|out|of|control|.\n(|It|'s|)|a|prison|soccer|movie|starring|charismatic|tough|guy|Vinnie|Jones|,|but|it|had|too|much|spitting|for|me|to|enjoy|.\nNot|even|the|Hanson|Brothers|can|save|it\nThe|thriller|side|of|this|movie|is|falling|flat|,|as|the|stalker|does|n't|do|much|stalking|,|and|no|cop|or|lawyer|grasps|the|concept|of|actually|investigating|the|case|.\n...|(|a|)|strained|comedy|that|jettisons|all|opportunities|for|Rock|to|make|his|mark|by|serving|up|the|usual|chaotic|nonsense|.\nA|sour|,|nasty|offering|.\nFeels|like|one|of|those|contrived|,|only-in|-|Hollywood|productions|where|name|actors|deliver|big|performances|created|for|the|sole|purpose|of|generating|Oscar|talk|.\nObstacles|are|too|easily|overcome|and|there|is|n't|much|in|the|way|of|character|development|in|the|script|.\nIt|tells|more|than|it|shows|.\nEarnest|falls|short|of|its|Ideal|predecessor|largely|due|to|Parker|'s|ill-advised|meddling|with|the|timeless|source|material|.\nThe|film|might|have|been|more|satisfying|if|it|had|,|in|fact|,|been|fleshed|out|a|little|more|instead|of|going|for|easy|smiles|.\nPretentious|editing|ruins|a|potentially|terrific|flick|.\nNot|every|animated|film|from|Disney|will|become|a|classic|,|but|forgive|me|if|I|'ve|come|to|expect|more|from|this|studio|than|some|79-minute|after-school|``|cartoon|''|.\nDo|not|,|under|any|circumstances|,|consider|taking|a|child|younger|than|middle|school|age|to|this|wallow|in|crude|humor|.\nNothing|debases|a|concept|comedy|quite|like|the|grinding|of|bad|ideas|,|and|Showtime|is|crammed|full|of|them|.\nMuch-anticipated|and|ultimately|lackluster|movie|.\nThis|is|really|just|another|genre|picture|.\nEach|story|on|its|own|could|have|been|expanded|and|worked|into|a|compelling|single|feature|,|but|in|its|current|incarnation|,|Storytelling|never|quite|gets|over|its|rather|lopsided|conception|.\nWilliam|Shatner|,|as|a|pompous|professor|,|is|the|sole|bright|spot|...\nA|trite|psychological|thriller|designed|to|keep|the|audience|guessing|and|guessing|--|which|is|not|to|be|confused|with|suspecting|--|until|it|comes|time|to|wrap|things|up|and|send|the|viewers|home|.\nNeither|funny|nor|suspenseful|nor|particularly|well-drawn|.\nActing|,|particularly|by|Tambor|,|almost|makes|``|Never|Again|''|worthwhile|,|but|(|writer\\/director|)|Schaeffer|should|follow|his|titular|advice\nBoth|stars|manage|to|be|funny|,|but|,|like|the|recent|I|Spy|,|the|star|chemistry|begs|the|question|of|whether|random|gags|add|up|to|a|movie|.\n``|Collateral|Damage|''|goes|by|the|numbers|and|reps|decent|action|entertainment|--|until|the|silly|showdown|ending|that|forces|the|viewer|to|totally|suspend|disbelief\n`|Enigma|'|is|a|good|name|for|a|movie|this|delibrately|obtuse|and|unapproachable|.\nA|waste|of|good|performances|.\nA|dreary|,|incoherent|,|self-indulgent|mess|of|a|movie|in|which|a|bunch|of|pompous|windbags|drone|on|inanely|for|two|hours|...|a|cacophony|of|pretentious|,|meaningless|prattle|.\nI|kept|thinking|over|and|over|again|,|'|I|should|be|enjoying|this|.|'\nBut|I|was|n't|.\nAs|conceived|by|Mr.|Schaeffer|,|Christopher|and|Grace|are|little|more|than|collections|of|quirky|traits|lifted|from|a|screenwriter|'s|outline|and|thrown|at|actors|charged|with|the|impossible|task|of|making|them|jell|.\nLike|so|many|other|allegedly|scary|movies|,|it|gets|so|tangled|up|in|The|Twist|that|it|chokes|the|energy|right|out|of|the|very|audience|it|seeks|to|frighten|.\nThe|essential|problem|in|Orange|County|is|that|,|having|created|an|unusually|vivid|set|of|characters|worthy|of|its|strong|cast|,|the|film|flounders|when|it|comes|to|giving|them|something|to|do|.\nJust|like|Hearst|'s|enormous|yacht|,|it|'s|slow|and|unwieldy|and|takes|a|long|time|to|reach|its|destination|.\nThere|is|not|a|character|in|the|movie|with|a|shred|of|plausibility|,|not|an|event|that|is|believable|,|not|a|confrontation|that|is|not|staged|,|not|a|moment|that|is|not|false|.\nWhere|last|time|jokes|flowed|out|of|Cho|'s|life|story|,|which|provided|an|engrossing|dramatic|through|line|,|here|the|comedian|hides|behind|obviously|constructed|routines|.\nWhy|come|up|with|something|even|quasi-original|,|when|you|can|pillage|from|Shirley|Jackson|,|Richard|Matheson|...|and|puke|up|something|like|ROSE|RED|?\nA|broadly|played|,|lowbrow|comedy|in|which|the|cast|delivers|mildly|amusing|performances|and|no|farm|animals|were|injured|by|any|of|the|gags|.\n...|too|gory|to|be|a|comedy|and|too|silly|to|be|an|effective|horror|film|.\nLacks|heart|,|depth|and|,|most|of|all|,|purpose|.\nThough|a|bit|of|a|patchwork|in|script|and|production|,|a|glossy|,|rich|green|,|environment|almost|makes|the|picture|work|.\nperfectly|enjoyable|,|instantly|forgettable|,|nothing|to|write|home|about|.\nWasabi|is|slight|fare|indeed|,|with|the|entire|project|having|the|feel|of|something|tossed|off|quickly|(|like|one|of|Hubert|'s|punches|)|,|but|it|should|go|down|smoothly|enough|with|popcorn|.\nSomehow|both|wildly|implausible|and|strangely|conventional|.\nThis|ill-fitting|Tuxedo|is|strictly|off-the-rack|.\nThe|premise|is|in|extremely|bad|taste|,|and|the|film|'s|supposed|insights|are|so|poorly|thought-out|and|substance-free|that|even|a|high|school|senior|taking|his|or|her|first|psychology|class|could|dismiss|them|.\nSets|up|a|nice|concept|for|its|fiftysomething|leading|ladies|,|but|fails|loudly|in|execution|.\nKidman|is|really|the|only|thing|that|'s|worth|watching|in|Birthday|Girl|,|a|film|by|the|stage-trained|Jez|Butterworth|(|Mojo|)|that|serves|as|yet|another|example|of|the|sad|decline|of|British|comedies|in|the|post-Full|Monty|world|.\nImagine|the|James|Woods|character|from|Videodrome|making|a|home|movie|of|Audrey|Rose|and|showing|it|to|the|kid|from|The|Sixth|Sense|and|you|'ve|imagined|The|Ring|.\nThis|time|Kaufman|'s|imagination|has|failed|him|.\nAn|intermittently|pleasing|but|mostly|routine|effort|.\nIt|becomes|gimmicky|instead|of|compelling|.\n``|Interview|''|loses|its|overall|sense|of|mystery|and|becomes|a|TV|episode|rather|than|a|documentary|that|you|actually|buy|into|.\n`|Unfaithful|'|cheats|on|itself|and|retreats|to|comfortable|territory|.\nToo|bad|.\nFrenetic|but|not|really|funny|.\nTaken|individually|or|collectively|,|the|stories|never|add|up|to|as|much|as|they|promise|.\nIf|you|'re|not|a|prepubescent|girl|,|you|'ll|be|laughing|at|Britney|Spears|'|movie-starring|debut|whenever|it|does|n't|have|you|impatiently|squinting|at|your|watch|.\nA|didactic|and|dull|documentary|glorifying|software|anarchy|.\nSluggishly|directed|by|episodic|TV|veteran|Joe|Zwick|,|it|'s|a|sitcom|without|the|snap-crackle|.\nYou|could|nap|for|an|hour|and|not|miss|a|thing|.\nDirector|Clare|Kilner|'s|debut|is|never|as|daft|as|it|should|have|been|.\nNew|Best|Friend|should|n't|have|gone|straight|to|video|;|it|should|have|gone|straight|to|a|Mystery|Science|Theater|3000|video|.\nWallace|seems|less|like|he|'s|been|burning|to|tell|a|war|story|than|he|'s|been|itching|to|somehow|tack|one|together\nThe|thrill|is|(|long|)|gone|.\nBegan|life|as|a|computer|game|,|then|morphed|into|a|movie|--|a|bad|one|,|of|course|.\nPart|comedy|,|part|drama|,|the|movie|winds|up|accomplishing|neither|in|full|,|and|leaves|us|feeling|touched|and|amused|by|several|moments|and|ideas|,|but|nevertheless|dissatisfied|with|the|movie|as|a|whole|.\nGodawful|boring|slug|of|a|movie|.\nDull|,|if|not|devoid|of|wit|,|this|shaggy|dog|longs|to|frisk|through|the|back|alleys|of|history|,|but|scarcely|manages|more|than|a|modest|,|snoozy|charm|.\nScene-by-scene|,|things|happen|,|but|you|'d|be|hard-pressed|to|say|what|or|why|.\n...|an|unimaginative|,|nasty|,|glibly|cynical|piece|of|work|.\nIt|is|,|by|conventional|standards|,|a|fairly|terrible|movie|...|but|it|is|also|weirdly|fascinating|,|a|ready-made|Eurotrash|cult|object|.\nIt|is|also|,|at|times|,|curiously|moving|.\nThe|tug-of-war|at|the|core|of|Beijing|Bicycle|becomes|weighed|down|with|agonizing|contrivances|,|overheated|pathos|and|long|,|wistful|gazes|.\nVile|and|tacky|are|the|two|best|adjectives|to|describe|Ghost|Ship|.\nSome|decent|actors|inflict|big|damage|upon|their|reputations|.\nBeing|author|Wells|'|great-grandson|,|you|'d|think|filmmaker|Simon|Wells|would|have|more|reverence|for|the|material|.\nBut|this|costly|dud|is|a|far|cry|from|either|the|book|or|the|beloved|film|.\nOffensive|in|the|way|it|exploits|the|hot-button|issue|of|domestic|abuse|for|cheap|thrills|and|disgusting|in|the|manner|it|repeatedly|puts|a|small|child|in|jeopardy|,|treating|her|as|little|more|than|a|prop|to|be|cruelly|tormented|.\nMark|me|down|as|a|non-believer|in|werewolf|films|that|are|not|serious|and|rely|on|stupidity|as|a|substitute|for|humor|.\nThoughtless|,|random|,|superficial|humour|and|a|lot|of|very|bad|Scouse|accents\nAspires|for|the|piquant|but|only|really|achieves|a|sort|of|ridiculous|sourness|.\nAccuracy|and|realism|are|terrific|,|but|if|your|film|becomes|boring|,|and|your|dialogue|is|n't|smart|,|then|you|need|to|use|more|poetic|license|.\nFor|all|its|highfalutin|title|and|corkscrew|narrative|,|the|movie|turns|out|to|be|not|much|more|than|a|shaggy|human|tale|.\nA|soggy|,|cliche-bound|epic-horror|yarn|that|ends|up|being|even|dumber|than|its|title|.\nOne|groan-inducing|familiarity|begets|another|.\nAlthough|based|on|a|real-life|person|,|John|,|in|the|movie|,|is|a|rather|dull|person|to|be|stuck|with|for|two|hours|.\nGreat|story|,|bad|idea|for|a|movie|.\nWith|Spy|Kids|2|:|The|Island|of|Lost|Dreams|writer\\/director\\/producer|Robert|Rodriguez|has|cobbled|together|a|film|that|feels|like|a|sugar|high|gone|awry|.\nThere|is|no|entry|portal|in|The|Rules|of|Attraction|,|and|I|spent|most|of|the|movie|feeling|depressed|by|the|shallow|,|selfish|,|greedy|characters|.\nIt|'s|hard|to|tell|with|all|the|crashing|and|banging|where|the|salesmanship|ends|and|the|movie|begins|.\n``|My|god|,|I|'m|behaving|like|an|idiot|!|''\nYes|,|you|are|,|Ben|Kingsley|.\nA|dreadful|live-action|movie|.\nDivertingly|ridiculous|,|headbangingly|noisy|.\nAn|earnest|racial-issues|picture|that|might|have|gotten|respectful|critical|praise|in|a|different|era|--|say|,|the|'60s|.\nA|hideous|,|confusing|spectacle|,|one|that|may|well|put|the|nail|in|the|coffin|of|any|future|Rice|adaptations|.\nAll|I|can|say|is|fuhgeddaboutit|.\nBetween|bedroom|scenes|,|viewers|may|find|themselves|wishing|they|could|roll|over|and|take|a|nap|.\nIf|you|collected|all|the|moments|of|coherent|dialogue|,|they|still|would|n't|add|up|to|the|time|required|to|boil|a|four|-|minute|egg|.\nDespite|all|the|talking|,|by|the|time|the|bloody|climax|arrives|we|still|do|n't|feel|enough|of|an|attachment|to|these|guys|to|care|one|way|or|another|.\nEvery|bit|as|bogus|as|most|Disney|live|action|family|movies|are|--|no|real|plot|,|no|real|conflict|,|no|real|point|.\nA|sensual|performance|from|Abbass|buoys|the|flimsy|story|,|but|her|inner|journey|is|largely|unexplored|and|we|'re|left|wondering|about|this|exotic-looking|woman|whose|emotional|depths|are|only|hinted|at|.\nNever|engaging|,|utterly|predictable|and|completely|void|of|anything|remotely|interesting|or|suspenseful|.\nSpousal|abuse|is|a|major|problem|in|contemporary|society|,|but|the|film|reduces|this|domestic|tragedy|to|florid|melodrama|.\nOedekerk|wrote|Patch|Adams|,|for|which|he|should|not|be|forgiven|.\nWhy|he|was|given|free|reign|over|this|project|--|he|wrote|,|directed|,|starred|and|produced|--|is|beyond|me|.\nThe|creaking|,|rusty|ship|makes|a|fine|backdrop|,|but|the|ghosts|'|haunting|is|routine|.\nWhatever|Eyre|'s|failings|as|a|dramatist|,|he|deserves|credit|for|bringing|audiences|into|this|hard|and|bitter|place|.\nScotland|,|PA.|blurs|the|line|between|black|comedy|and|black|hole|.\nIt|tries|too|hard|,|and|overreaches|the|logic|of|its|own|world|.\nThe|whole|damn|thing|is|ripe|for|the|Jerry|Springer|crowd|.\nIt|'s|all|pretty|cynical|and|condescending|,|too|.\nI|cry|for|I|Spy|--|or|I|would|if|this|latest|and|laziest|imaginable|of|all|vintage-TV|spinoffs|were|capable|of|engendering|an|emotional|response|of|any|kind|.\nA|boring|,|formulaic|mix|of|serial|killers|and|stalk|'n'|slash|.\nWhat|you|would|end|up|with|if|you|took|Orwell|,|Bradbury|,|Kafka|,|George|Lucas|and|the|Wachowski|Brothers|and|threw|them|into|a|blender|.\nBut|that|'s|just|the|problem|with|it|-|the|director|has|n't|added|enough|of|his|own|ingredients|.\nWith|recent|tensions|rekindled|by|the|Kathleen|Soliah|trial|and|the|upcoming|trial|of|SLA|members|Emily|and|William|Harris|,|not|to|mention|Sept.|11|,|its|difficult|these|days|to|appreciate|Fire|'s|bright|side|.\nFlaunts|its|quirky|excesses|like|a|New|Year|'s|Eve|drunk|sporting|a|paper|party|hat|.\nWrithing|under|dialogue|like|`|You|'re|from|two|different|worlds|'|and|`|Tonight|the|maid|is|a|lie|and|this|,|this|is|who|you|are|,|'|this|schlock-filled|fairy|tale|hits|new|depths|of|unoriginality|and|predictability|.\n...|too|slow|,|too|boring|,|and|occasionally|annoying|.\nIs|there|enough|material|to|merit|a|documentary|on|the|making|of|Wilco|'s|last|album|?\nFaultlessly|professional|but|finally|slight|.\nSchmaltzy|and|unfunny|,|Adam|Sandler|'s|cartoon|about|Hanukkah|is|numbingly|bad|,|Little|Nicky|bad|,|10|Worst|List|bad|.\nIt|'s|really|yet|another|anemic|and|formulaic|Lethal|Weapon-derived|buddy-cop|movie|,|trying|to|pass|off|its|lack|of|imagination|as|hip|knowingness|.\nScotland|,|Pa.|is|a|strangely|drab|romp|.\nSome|studio|pizazz|might|have|helped|.\nWhen|Perry|fists|a|bull|at|the|Moore|Farm|,|it|'s|only|a|matter|of|time|before|he|gets|the|upper|hand|in|matters|of|the|heart|.\nThere|'s|more|scatological|action|in|8|Crazy|Nights|than|a|proctologist|is|apt|to|encounter|in|an|entire|career|.\nToo|loud|,|too|long|and|too|frantic|by|half|,|Die|Another|Day|suggests|that|the|Bond|franchise|has|run|into|a|creative|wall|that|007|can|not|fly|over|,|tunnel|under|or|barrel|through|.\nThe|cartoon|is|about|as|true|to|the|spirit|of|the|Festival|of|Lights|as|Mr.|Deeds|was|to|that|of|Frank|Capra|.\n...|the|sum|of|the|parts|equals|largely|a|confused|mediocrity|.\nThe|tone|shifts|abruptly|from|tense|to|celebratory|to|soppy|.\nIf|we|do|n't|demand|a|standard|of|quality|for|the|art|that|we|choose|,|we|deserve|the|trash|that|we|get|.\nA|modest|and|messy|metaphysical|thriller|offering|more|questions|than|answers|.\nJulia|is|played|with|exasperating|blandness|by|Laura|Regan|.\nMorrissette|'s|script|and|direction|show|a|fair|amount|of|intelligence|and|wit|--|but|it|does|n't|signify|a|whole|lot|either|.\nThere|'s|suspension|of|disbelief|and|then|there|'s|bad|screenwriting|...|this|film|packs|a|wallop|of|the|latter|.\nAll|Ms.|Jovovich|,|as|the|sanctified|heroine|,|has|to|do|is|look|radiant|,|grimly|purposeful|and|mildly|alarmed|while|forcing|open|doors|,|wielding|wrenches|and|fleeing|monsters|.\nMocking|kung|fu|pictures|when|they|were|a|staple|of|exploitation|theater|programming|was|witty|.\nMocking|them|now|is|an|exercise|in|pointlessness|.\nThis|is|a|particularly|toxic|little|bonbon|,|palatable|to|only|a|chosen|and|very|jaundiced|few|.\nThis|is|n't|just|the|CliffsNotes|version|of|Nicholas|Nickleby|,|it|'s|the|CliffsNotes|with|pages|missing|.\nConsidering|the|harsh|locations|and|demanding|stunts|,|this|must|have|been|a|difficult|shoot|,|but|the|movie|proves|rough|going|for|the|audience|as|well|.\nBetter|at|putting|you|to|sleep|than|a|sound|machine|.\nSo|clichéd|that|,|at|one|point|,|they|literally|upset|an|apple|cart|.\nIt|'s|a|decent|glimpse|into|a|time|period|,|and|an|outcast|,|that|is|no|longer|accessible|,|but|it|does|n't|necessarily|shed|more|light|on|its|subject|than|the|popular|predecessor|.\nIt|might|be|the|first|sci-fi|comedy|that|could|benefit|from|a|Three|'s|Company-style|laugh|track|.\nWhen|the|plot|kicks|in|,|the|film|loses|credibility|.\nCredibility|sinks|into|a|mire|of|sentiment|.\nThe|movie|takes|itself|too|seriously|and|,|as|a|result|,|it|makes|for|only|intermittent|fun|.\n(|Davis|)|has|a|bright|,|chipper|style|that|keeps|things|moving|,|while|never|quite|managing|to|connect|her|wish-fulfilling|characters|to|the|human|race|.\nDoes|n't|amount|to|much|of|anything|.\nBullock|'s|complete|lack|of|focus|and|ability|quickly|derails|the|film\nSo|stupid|,|so|ill-conceived|,|so|badly|drawn|,|it|created|whole|new|levels|of|ugly|.\nThe|truth|is|that|The|Truth|About|Charlie|gets|increasingly|tiresome|.\nEnduring|love|but|exhausting|cinema|.\nSome|of|Seagal|'s|action|pictures|are|guilty|pleasures|,|but|this|one|is|so|formulaic|that|it|seems|to|be|on|auto-pilot|.\nA|ponderous|meditation|on|love|that|feels|significantly|longer|than|its|relatively|scant|97|minutes|.\nA|long-winded|and|stagy|session|of|romantic|contrivances|that|never|really|gels|like|the|shrewd|feminist|fairy|tale|it|could|have|been|.\nA|little|too|pat|for|its|own|good|.\nThere|are|films|that|try|the|patience|of|even|the|most|cinema-besotted|critic|--|and|this|was|one|of|them|.\nWatching|Trouble|Every|Day|,|at|least|if|you|do|n't|know|what|'s|coming|,|is|like|biting|into|what|looks|like|a|juicy|,|delicious|plum|on|a|hot|summer|day|and|coming|away|with|your|mouth|full|of|rotten|pulp|and|living|worms|.\nWell-intentioned|though|it|may|be|,|its|soap-opera|morality|tales|have|the|antiseptic|,|preprogrammed|feel|of|an|after-school|special|.\nWhat|would|Jesus|do|if|He|was|a|film|director|?\nHe|'d|create|a|movie|better|than|this|.\nWhen|a|set|of|pre-shooting|guidelines|a|director|came|up|with|for|his|actors|turns|out|to|be|cleverer|,|better|written|and|of|considerable|more|interest|than|the|finished|film|,|that|'s|a|bad|sign|.\nA|very|bad|sign|.\nIt|'s|a|deeply|serious|movie|that|cares|passionately|about|its|subject|,|but|too|often|becomes|ponderous|in|its|teaching|of|history|,|or|lost|in|the|intricate|connections|and|multiple|timelines|of|its|story|.\nCa|n't|kick|about|the|assembled|talent|and|the|Russos|show|genuine|promise|as|comic|filmmakers|.\nStill|,|this|thing|feels|flimsy|and|ephemeral|.\nDiane|Lane|shines|in|Unfaithful|.\nAlmost|everything|else|is|wan|.\nI|'m|afraid|you|wo|n't|get|through|this|frankly|fantastical|by-the-numbers|B-flick|with|just|a|suspension|of|disbelief|.\nRather|,|you|'ll|have|to|wrestle|disbelief|to|the|ground|and|then|apply|the|chloroform-soaked|handkerchief|.\nSo|relentlessly|wholesome|it|made|me|want|to|swipe|something|.\nThe|title|helpfully|offers|the|most|succinct|review|of|it|you|'ll|read|anywhere|.\nThe|makers|of|Divine|Secrets|of|the|Ya-Ya|Sisterhood|should|offer|a|free|ticket|(|second|prize|,|of|course|,|two|free|tickets|)|to|anyone|who|can|locate|a|genuinely|honest|moment|in|their|movie|.\nGod|help|the|poor|woman|if|Attal|is|this|insecure|in|real|life|:|his|fictional|Yvan|'s|neuroses|are|aggravating|enough|to|exhaust|the|patience|of|even|the|most|understanding|spouse|.\nLet|'s|cut|to|the|consumer-advice|bottom|line|:|Stay|home|.\nUndercover|Brother|does|n't|go|far|enough|.\nIt|'s|just|a|silly|black|genre|spoof|.\nThe|film|'s|implicit|premise|is|that|the|faith|of|the|Tonga|people|is|in|every|way|inferior|to|that|of|John|.\nRates|an|`|E|'|for|effort|--|and|a|`|B|'|for|boring|.\nYou|'ve|already|seen|Heartbreak|if|you|'ve|watched|the|far|superior|Nurse|Betty|or|Sunset|Boulevard|.\nEven|the|unwatchable|Soapdish|is|more|original|.\nPlays|like|one|of|those|conversations|that|Comic|Book|Guy|on|``|The|Simpsons|''|has|.\nA|journey|that|'s|too|random|and|inconclusive|to|be|compelling|,|but|which|Hoffman|'s|brilliance|almost|makes|worth|taking|.\nThe|movie|bounces|all|over|the|map|.\nBut|buying|into|sham|truths|and|routine|``|indie|''|filmmaking|,|Freundlich|has|made|just|another|safe|movie|.\nIt|'s|not|horrible|,|just|horribly|mediocre|.\nNot|always|too|whimsical|for|its|own|good|(|but|enough|to|do|harm|)|,|this|strange|hybrid|of|crime|thriller|,|quirky|character|study|,|third-rate|romance|and|female|empowerment|fantasy|never|really|finds|the|tonal|or|thematic|glue|it|needs|.\n``|Juwanna|Mann|?|''\nNo|thanks|.\nWewannour|money|back|,|actually|.\nIt|'s|a|sometimes|interesting|remake|that|does|n't|compare|to|the|brilliant|original|.\nYou|'re|too|conscious|of|the|effort|it|takes|to|be|this|spontaneous|.\nFeel|bad|for|King|,|who|'s|honestly|trying|,|and|Schwartzman|,|who|'s|shot|himself|in|the|foot|.\nSome|actors|steal|scenes|.\nTom|Green|just|gives|them|a|bad|odor|.\nThis|self-infatuated|goofball|is|far|from|the|only|thing|wrong|with|the|clumsy|comedy|Stealing|Harvard|,|but|he|'s|the|most|obvious|one|.\nSometimes|,|fond|memories|should|stay|in|the|past|:|a|lesson|this|film|teaches|all|too|well|.\nThe|enormous|comic|potential|of|an|oafish|idiot|impersonating|an|aristocrat|remains|sadly|unrealized|.\nBegins|as|a|promising|meditation|on|one|of|America|'s|most|durable|obsessions|but|winds|up|as|a|slender|cinematic|stunt|.\nA|monster|combat|thriller|as|impersonal|in|its|relentlessness|as|the|videogame|series|that|inspired|it|.\nProof|that|a|thriller|can|be|sleekly|shot|,|expertly|cast|,|paced|with|crisp|professionalism|...|and|still|be|a|letdown|if|its|twists|and|turns|hold|no|more|surprise|than|yesterday|'s|weather|report|.\nThe|reason|we|keep|seeing|the|same|movie|with|roughly|the|same|people|every|year|is|because|so|many|of|us|keep|going|and|then|,|out|of|embarrassment|or|stupidity|,|not|warning|anyone|.\nThere|'s|not|much|going|on|in|this|movie|unless|you|simply|decide|to|buy|into|the|notion|that|something|inexplicably|strange|once|happened|in|Point|Pleasant|.\nIn|the|second|half|of|the|film|,|Frei|'s|control|loosens|in|direct|proportion|to|the|amount|of|screen|time|he|gives|Nachtwey|for|self-analysis|.\nDirector|Barry|Skolnick|and|his|screenwriters|glibly|tick|off|every|point|of|``|The|Longest|Yard|''|playbook|like|a|checklist|.\nThe|furious|coherence|that|(|DeNiro|)|brings|to|this|part|only|underscores|the|fuzzy|sentimentality|of|the|movie|itself|,|which|feels|,|as|it|plods|toward|the|end|,|less|like|a|movie|than|like|the|filmed|reading|of|a|script|in|need|of|polishing|.\nOh|,|it|'s|extreme|,|all|right|.\nExtremely|dumb|.\nExtremely|confusing|.\nExtremely|boring|.\nWe|never|really|feel|involved|with|the|story|,|as|all|of|its|ideas|remain|just|that|:|abstract|ideas|.\nFor|a|shoot|-|'em|-|up|,|Ballistic|is|oddly|lifeless|.\nOne|minute|,|you|think|you|'re|watching|a|serious|actioner|;|the|next|,|it|'s|as|though|clips|from|The|Pink|Panther|Strikes|Again|and\\/or|Sailor|Moon|have|been|spliced|in|.\nWhat|happened|with|Pluto|Nash|?\nHow|did|it|ever|get|made|?\nWe|may|never|think|of|band|camp|as|a|geeky|or|nerdy|thing|again|.\nOpens|as|promising|as|any|war\\/adventure|film|you|'ll|ever|see|and|dissolves|into|a|routine|courtroom|drama|,|better|suited|for|a|movie|titled|``|Glory|:|A|Soldier|'s|Story|.|''\nThe|result|is|solemn|and|horrifying|,|yet|strangely|detached|.\nThese|spiders|can|outrun|a|motorcycle|and|wrap|a|person|in|a|sticky|cocoon|in|seconds|,|but|they|fall|short|of|being|interesting|or|entertaining|.\nA|long|slog|for|anyone|but|the|most|committed|Pokemon|fan|.\nMatthew|McConaughey|tries|,|and|fails|,|to|control|the|screen|with|swaggering|machismo|and|over-the-top|lunacy|.\nHow|on|earth|,|or|anywhere|else|,|did|director|Ron|Underwood|manage|to|blow|$|100|million|on|this|?\nEveryone|connected|to|this|movie|seems|to|be|part|of|an|insider|clique|,|which|tends|to|breed|formulaic|films|rather|than|fresh|ones|.\nWith|a|story|inspired|by|the|tumultuous|surroundings|of|Los|Angeles|,|where|feelings|of|marginalization|loom|for|every|dreamer|with|a|burst|bubble|,|The|Dogwalker|has|a|few|characters|and|ideas|,|but|it|never|manages|to|put|them|on|the|same|path|.\nIts|lack|of|quality|earns|it|a|place|alongside|those|other|two|recent|Dumas|botch-jobs|,|The|Man|in|the|Iron|Mask|and|The|Musketeer|.\nA|benign|but|forgettable|sci-fi|diversion|.\nThe|plot|grinds|on|with|yawn-provoking|dullness|.\nIt|'s|never|a|good|sign|when|a|film|'s|star|spends|the|entirety|of|the|film|in|a|coma|.\nIt|'s|a|worse|sign|when|you|begin|to|envy|her|condition|.\nIt|does|n't|help|that|the|director|and|cinematographer|Stephen|Kazmierski|shoot|on|grungy|video|,|giving|the|whole|thing|a|dirty|,|tasteless|feel|.\nDesperately|unfunny|when|it|tries|to|makes|us|laugh|and|desperately|unsuspenseful|when|it|tries|to|make|us|jump|out|of|our|seats|.\nThis|film|'s|relationship|to|actual|tension|is|the|same|as|what|Christmas-tree|flocking|in|a|spray|can|is|to|actual|snow|:|a|poor|--|if|durable|--|imitation|.\nJohn|McTiernan|'s|botched|remake|may|be|subtler|than|Norman|Jewison|'s|1975|ultraviolent|futuristic|corporate-sports|saga|.\nIt|'s|also|stupider|.\nDirector|Dirk|Shafer|and|co-writer|Greg|Hinton|ride|the|dubious|divide|where|gay|porn|reaches|for|serious|drama|.\nBorrows|from|so|many|literary|and|cinematic|sources|that|this|future|world|feels|absolutely|deja|vu|.\nAs|(|the|characters|)|get|more|depressed|,|the|story|gets|more|tiresome|,|especially|as|it|continues|to|mount|a|conspicuous|effort|to|be|profound|.\nThe|acting|by|the|over-25s|lacks|spark|,|with|Csokas|particularly|unconnected|.\nThough|Howard|demonstrates|a|great|eye|as|a|director|,|this|Southern|Gothic|drama|is|sadly|a|tough|sit|,|with|an|undeveloped|narrative|and|enough|flashbacks|and|heavy-handed|metaphors|to|choke|a|horse|--|or|at|least|slow|him|down|to|a|canter|.\nFalters|when|it|takes|itself|too|seriously|and|when|it|depends|too|heavily|on|its|otherwise|talented|cast|to|clown|in|situations|that|are|n't|funny|.\nThe|fight|scenes|are|fun|,|but|it|grows|tedious|.\nAnyone|who|can|count|to|five|(|the|film|'s|target|market|?|)\ncan|see|where|this|dumbed-down|concoction|is|going|.\nAll|this|turns|out|to|be|neither|funny|nor|provocative|-|only|dull|.\nDemme|'s|loose|approach|kills|the|suspense|.\nThis|idea|has|lost|its|originality|...|and|neither|star|appears|very|excited|at|rehashing|what|was|basically|a|one-joke|picture|.\n(|Plays|)|in|broad|outline|as|pandering|middle-age|buddy-comedy|.\nThe|film|is|itself|a|sort|of|cinematic|high|crime|,|one|that|brings|military|courtroom|dramas|down|very|,|very|low|.\nNothing|more|than|a|mediocre|trifle|.\nA|turgid|little|history|lesson|,|humourless|and|dull|.\nToo|silly|to|be|frightening|,|too|stolid|to|be|funny|,|it|projects|the|same|lazy|affability|as|its|nominal|star|,|David|Arquette|.\nIf|Kaufman|kept|Cameron|Diaz|a|prisoner|in|a|cage|with|her|ape|,|in|his|latest|,|he|'d|have|them|mate|.\nTrivial|where|it|should|be|profound|,|and|hyper-cliched|where|it|should|be|sincere|.\nIt|would|be|hard|to|think|of|a|recent|movie|that|has|worked|this|hard|to|achieve|this|little|fun|.\nTheology|aside|,|why|put|someone|who|ultimately|does|n't|learn|at|the|center|of|a|kids|'|story|?\nAll|that|(|Powerpuff|Girls|)|charm|is|present|in|the|movie|,|but|it|'s|spread|too|thin|.\nSometimes|smart|but|more|often|sophomoric|.\nThe|ill-conceived|modern-day|ending|falls|flat|where|it|should|deliver|a|moral|punch|.\nCollateral|Damage|is|,|despite|its|alleged|provocation|post-9|\\/|11|,|an|antique|,|in|the|end|.\nAs|are|its|star|,|its|attitude|and|its|obliviousness|.\nDawdles|and|drags|when|it|should|pop|;|it|does|n't|even|have|the|virtue|of|enough|mindless|violence|to|break|up|the|tedium|of|all|its|generational|bonding|.\nIts|save-the-planet|message|clashes|with|its|crass|marketing|.\nA|great|idea|becomes|a|not-great|movie|.\n...|watching|this|film|nearly|provoked|me|to|take|my|own|life|.\nAnd|if|The|Hours|wins|`|Best|Picture|'|I|just|might|.\nBy|the|end|,|I|was|looking|for|something|hard|with|which|to|bludgeon|myself|unconscious|.\nNot|a|movie|but|a|live-action|agitprop|cartoon|so|shameless|and|coarse|,|it|'s|almost|funny|.\nFeels|like|six|different|movies|fighting|each|other|for|attention|.\nLife|is|a|crock|--|or|something|like|it|.\nMade|by|jackasses|for|jackasses|.\nDespite|a|powerful|portrayal|by|Binoche|,|it|'s|a|period|romance|that|suffers|from|an|overly|deliberate|pace|and|uneven|narrative|momentum|.\nThe|picture|is|a|primer|on|what|happens|when|lack|of|know-how|mixes|with|lack|of|give-a-damn|.\nBartleby|is|a|one-joke|movie|,|and|a|bad|joke|at|that|.\nGiven|that|both|movies|expect|us|to|root|for|convicted|violent|felons|over|those|assigned|to|protect|us|from|same|,|we|need|every|bit|of|sympathy|the|cons|can|muster|;|this|time|,|there|is|n't|much|.\nA|bravura|exercise|in|emptiness|.\nPhilip|K.|Dick|must|be|turning|in|his|grave|,|along|with|my|stomach|.\nDespite|the|premise|of|a|good|story|...|it|wastes|all|its|star|power|on|cliched|or|meaningless|roles|.\nAll|prints|of|this|film|should|be|sent|to|and|buried|on|Pluto|.\nNot|only|does|the|movie|fail|to|make|us|part|of|its|reality|,|it|fails|the|most|basic|relevancy|test|as|well|.\nFirst|good|,|then|bothersome|.\nExcellent|acting|and|direction|.\nThis|goofy|gangster|yarn|never|really|elevates|itself|from|being|yet|another|earnestly|generic|crime-busting|comic|vehicle|--|a|well-intentioned|remake|that|shows|some|spunk|and|promise|but|fails|to|register|as|anything|distinctive|or|daring\nIt|'s|difficult|to|say|whether|The|Tuxedo|is|more|boring|or|embarrassing|--|I|'m|prepared|to|call|it|a|draw|.\nEven|as|lame|horror|flicks|go|,|this|is|lame|.\nSo|routine|,|familiar|and|predictable|,|it|raises|the|possibility|that|it|wrote|itself|as|a|newly|automated|Final|Draft|computer|program|.\nSunshine|State|lacks|the|kind|of|dynamic|that|Limbo|offers|,|and|in|some|ways|is|a|rather|indulgent|piece|.\nEven|legends|like|Alfred|Hitchcock|and|John|Huston|occasionally|directed|trifles|...|so|it|'s|no|surprise|to|see|a|world-class|filmmaker|like|Zhang|Yimou|behind|the|camera|for|a|yarn|that|'s|ultimately|rather|inconsequential|.\nA|long-winded|,|predictable|scenario|.\nToo|close|to|Phantom|Menace|for|comfort|.\nAlthough|trying|to|balance|self-referential|humor|and|a|normal|ol'|slasher|plot|seemed|like|a|decent|endeavor|,|the|result|does|n't|fully|satisfy|either|the|die-hard|Jason|fans|or|those|who|can|take|a|good|joke|.\nToo|clunky|and|too|busy|ribbing|itself|to|be|truly|entertaining|.\nThis|movie|is|about|lying|,|cheating|,|but|loving|the|friends|you|betray|.\nIt|smacks|of|purely|commercial|motivation|,|with|no|great|love|for|the|original|.\nMelanie|eventually|slugs|the|Yankee|.\nToo|bad|the|former|Murphy|Brown|does|n't|pop|Reese|back|.\nAt|the|bottom|rung|of|the|series|'|entries|.\nA|real|clunker|.\nA|well-made|,|thoughtful|,|well-acted|clunker|,|but|a|clunker|nonetheless|.\nA|dreary|rip-off|of|Goodfellas|that|serves|as|a|muddled|and|offensive|cautionary|tale|for|Hispanic|Americans|.\nThe|picture|,|scored|by|a|perversely|cheerful|Marcus|Miller|accordion\\/harmonica\\/banjo|abomination|,|is|a|monument|to|bad|in|all|its|florid|variety|.\nGood|for|a|few|unintentional|laughs|,|``|Extreme|Ops|''|was|obviously|made|for|the|``|XXX|''|crowd|,|people|who|enjoy|mindless|action|without|the|benefit|of|decent|acting|,|writing|,|and|direction|.\n...|a|big|,|baggy|,|sprawling|carnival|of|a|movie|,|stretching|out|before|us|with|little|rhyme|or|reason|.\nA|frustrating|combination|of|strained|humor|and|heavy-handed|sentimentality|.\nLawrence|preaches|strictly|to|the|converted|.\nAs|written|by|Michael|Berg|and|Michael|J.|Wilson|from|a|story|by|Wilson|,|this|relentless|,|all-wise-guys-all-the-time|approach|tries|way|too|hard|and|gets|tiring|in|no|time|at|all|.\nWill|probably|stay|in|the|shadow|of|its|two|older|,|more|accessible|Qatsi|siblings|.\nJust|when|the|movie|seems|confident|enough|to|handle|subtlety|,|it|dives|into|soapy|bathos|.\nChoppy|editing|and|too|many|repetitive|scenes|spoil|what|could|have|been|an|important|documentary|about|stand-up|comedy|.\n...|the|film|falls|back|on|the|same|old|formula|of|teen|sex|,|outrageous|pranks|and|scenes|designed|to|push|the|envelope|of|bad|taste|for|laughs|.\nThe|only|thing|in|Pauline|and|Paulette|that|you|have|n't|seen|before|is|a|scene|featuring|a|football|field-sized|Oriental|rug|crafted|out|of|millions|of|vibrant|flowers|.\nIf|you|'re|looking|for|comedy|to|be|served|up|,|better|look|elsewhere|.\nIt|virtually|defines|a|comedy|that|'s|strongly|mediocre|,|with|funny|bits|surfacing|every|once|in|a|while|.\nAn|instant|candidate|for|worst|movie|of|the|year|.\nDespite|its|title|,|Amy|'s|Orgasm|is|not|a|porno|,|though|it|is|as|tedious|as|one|.\nLike|a|tone-deaf|singer|at|a|benefit|concert|,|John|Q.|is|a|bad|movie|appearing|on|behalf|of|a|good|cause|.\nAdam|Sandler|is|to|Gary|Cooper|what|a|gnat|is|to|a|racehorse|.\nWhat|kids|will|discover|is|a|new|collectible|.\nWhat|parents|will|suspect|is|that|they|'re|watching|a|76-minute|commercial|.\nBeers|,|who|,|when|she|'s|given|the|right|lines|,|can|charm|the|paint|off|the|wall|...|(|but|)|the|script|goes|wrong|at|several|key|junctures|.\nWithout|September|11|,|Collateral|Damage|would|have|been|just|another|bad|movie|.\nNow|it|'s|a|bad|,|embarrassing|movie|.\nDrags|along|in|a|dazed|and|enervated|,|drenched-in-the|-|past|numbness|.\nThere|'s|a|disturbing|`|Great|White|Hope|'|undertone|to|The|Other|Side|of|Heaven|that|subtly|undermines|its|message|of|Christian|love|and|compassion|.\nUnless|you|are|in|dire|need|of|a|Diesel|fix|,|there|is|no|real|reason|to|see|it|.\nWait|for|video|--|and|then|do|n't|rent|it|.\nThe|attempt|is|courageous|,|even|if|the|result|is|wildly|uneven|.\nThere|'s|something|fundamental|missing|from|this|story|:|something|or|someone|to|care|about|.\nToo|much|of|this|well-acted|but|dangerously|slow|thriller|feels|like|a|preamble|to|a|bigger|,|more|complicated|story|,|one|that|never|materializes|.\nWhen|a|film|is|created|SOLELY|because|it|'s|a|marketable|product|,|soulless|and|ugly|movies|like|this|are|the|result|.\nLet|your|silly|childhood|nostalgia|slumber|unmolested|.\nUnfortunately|,|Heartbreak|Hospital|wants|to|convey|the|same|kind|of|haughtiness|in|its|own|sketchy|material|but|this|territory|has|already|been|explored|previously|with|better|aplomb|and|sardonic|wit|.\nThe|more|Kevin|Costner|rests|on|his|pretty-boy|laurels|,|the|public|is|,|regrettably|,|going|to|have|tepid|films|like|Dragonfly|tossed|at|them|.\n(|It|'s|)|difficult|to|get|beyond|the|overall|blandness|of|American|Chai|,|despite|its|likable|performances|and|refreshingly|naive|point|of|view|.\nThe|latest|installment|in|the|Pokemon|canon|,|Pokemon|4ever|is|surprising|less|moldy|and|trite|than|the|last|two|,|likely|because|much|of|the|Japanese|anime|is|set|in|a|scenic|forest|where|Pokemon|graze|in|peace|.\nTaken|purely|as|an|exercise|in|style|,|this|oppressively|gloomy|techno-horror|clambake|is|impossible|to|ignore|.\nBut|as|a|movie|,|it|'s|a|humorless|,|disjointed|mess|.\nIf|Myers|decides|to|make|another|Austin|Powers|movie|,|maybe|he|should|just|stick|with|Austin|and|Dr|Evil|.\nThe|backyard|battles|you|staged|with|your|green|plastic|army|men|were|more|exciting|and|almost|certainly|made|more|sense|.\nToo|stupid|to|be|satire|,|too|obviously|hateful|to|be|classified|otherwise|,|Frank|Novak|'s|irritating|slice|of|lumpen|life|is|as|reliably|soul-killing|as|its|title|is|nearly|meaningless|.\nOverly|stylized|with|lots|of|flash|black|-|&|-|white|freeze|frames|reminiscent|of|a|pseudo-hip|luxury|car|commercial|,|(|it|'s|)|at|its|worst|when|it|'s|actually|inside|the|ring|.\nWhat|is|captured|during|the|conceptual|process|does|n't|add|up|to|a|sufficient|explanation|of|what|the|final|dance|work|,|The|Selection|,|became|in|its|final|form|.\nIf|this|is|satire|,|it|'s|the|smug|and|self-congratulatory|kind|that|lets|the|audience|completely|off|the|hook|.\nHad|the|film|boasted|a|clearer|,|more|memorable|,|the|creepiness|would|have|gotten|under|the|skin|.\nThese|people|would|n't|know|subtle|characterization|if|it|put|on|a|giant|furry|monster|costume|and|then|gave|them|a|lapdance|.\nImagine|if|you|will|a|Tony|Hawk|skating|video|interspliced|with|footage|from|Behind|Enemy|Lines|and|set|to|Jersey|shore|techno|.\nIt|does|n't|quite|work|,|but|there|'s|enough|here|to|make|us|look|forward|to|the|Russos|'|next|offering|.\nAny|film|featuring|young|children|threatened|by|a|terrorist|bomb|can|no|longer|pass|as|mere|entertainment|.\nThe|director|'s|twitchy|sketchbook|style|and|adroit|perspective|shifts|grow|wearisome|amid|leaden|pacing|and|indifferent|craftsmanship|(|most|notably|wretched|sound|design|)|.\nAbout|as|satisfying|and|predictable|as|the|fare|at|your|local|drive|through|.\nApparently|kissing|leads|to|suicide|attempts|and|tragic|deaths|.\nMarisa|Tomei|is|good|,|but|Just|A|Kiss|is|just|a|mess|.\nOpens|at|a|funeral|,|ends|on|the|protagonist|'s|death|bed|and|does|n't|get|much|livelier|in|the|three|hours|in|between|.\nThe|noble|tradition|of|men|in|drag|hits|an|all-time|low|in|Sorority|Boys|,|whose|makers|apparently|believe|that|women|'s|clothing|can|cover|up|any|deficiency|in|acting|,|writing|or|direction|.\nTo|portray|modern|women|the|way|director|Davis|has|done|is|just|unthinkable|.\nToo|simple|for|its|own|good|.\nFlaccid|drama|and|exasperatingly|slow|journey|.\nA|chaotic|panorama|that|'s|too|busy|flying|a|lot|of|metaphoric|flags|.\nSuffers|from|rambling|,|repetitive|dialogue|and|the|visual|drabness|endemic|to|digital|video|.\nThe|screenplay|sabotages|the|movie|'s|strengths|at|almost|every|juncture|.\nAll|the|characters|are|stereotypes|,|and|their|interaction|is|numbingly|predictable|.\nA|trashy|,|exploitative|,|thoroughly|unpleasant|experience|.\nNewcomer|helmer|Kevin|Donovan|is|hamstrung|by|a|badly|handled|screenplay|of|what|is|really|an|amusing|concept|--|a|high-tech|tux|that|transforms|its|wearer|into|a|superman|.\nShould|n't|have|been|allowed|to|use|the|word|``|new|''|in|its|title|,|because|there|'s|not|an|original|character|,|siuation|or|joke|in|the|entire|movie|.\nOften|silly|--|and|gross|--|but|it|'s|rarely|as|moronic|as|some|campus|gross-out|films|.\nThe|advantage|of|a|postapocalyptic|setting|is|that|it|can|be|made|on|the|cheap|.\nAny|rock|pile|will|do|for|a|set|.\nReign|of|Fire|has|the|disadvantage|of|also|looking|cheap|.\nThe|performances|are|so|leaden|,|Michael|Rymer|'s|direction|is|so|bloodless|and|the|dialogue|is|so|corny|that|the|audience|laughs|out|loud|.\nA|subtle|variation|on|I|Spit|On|Your|Grave|in|which|our|purported|heroine|pathologically|avenges|a|hatred|for|men|.\nReggio|'s|trippy|,|ambitious|downer|can|also|sometimes|come|across|like|nothing|more|than|a|glorified|Nike|ad|.\nAs|Tweedy|talks|about|canning|his|stockbroker|and|repairing|his|pool|,|you|yearn|for|a|few|airborne|TV|sets|or|nude|groupies|on|the|nod|to|liven|things|up|.\nIf|somebody|was|bored|and|...|decided|to|make|a|dull|,|pretentious|version|of|Jesus|'|Son|,|they|'d|come|up|with|something|like|Bart|Freundlich|'s|World|Traveler|.\nThe|best|you|can|say|about|it|is|it|'s|so|uninspired|,|it|barely|gives|one|pause|when|considering|some|of|the|other|dreck|out|there|right|now|.\nA|tough|go|,|but|Leigh|'s|depth|and|rigor|,|and|his|skill|at|inspiring|accomplished|portrayals|that|are|all|the|more|impressive|for|their|lack|of|showiness|,|offsets|to|a|notable|degree|the|film|'s|often-mined|and|despairing|milieu|.\nAn|overstuffed|compendium|of|teen-Catholic-movie|dogma|.\nToo|leisurely|paced|and|visually|drab|for|its|own|good|,|it|succeeds|in|being|only|sporadically|amusing|.\nBen|Affleck|as|Jack|Ryan|,|Tom|Clancy|'s|intrepid|hero|?\nRidiculous|.\nWhat|'s|next|?\nD.J.|Qualls|as|Indiana|Jones|?\nOr|Tom|Green|as|Han|Solo|?\nThe|movie|'s|biggest|offense|is|its|complete|and|utter|lack|of|tension|.\nThe|film|is|directed|by|Wally|Wolodarsky|from|a|script|by|Joe|Jarvis|and|Greg|Coolidge|.\nThese|are|names|to|remember|,|in|order|to|avoid|them|in|the|future|.\nIf|this|is|the|resurrection|of|the|Halloween|franchise|,|it|would|have|been|better|off|dead|.\nThis|formulaic|chiller|will|do|little|to|boost|Stallone|'s|career|.\nI|saw|Knockaround|Guys|yesterday|,|and|already|the|details|have|faded|like|photographs|from|the|Spanish-American|War|...|It|'s|so|unmemorable|that|it|turned|my|ballpoint|notes|to|invisible|ink|.\nThough|Avary|has|done|his|best|to|make|something|out|of|Ellis|'|nothing|novel|,|in|the|end|,|his|Rules|is|barely|worth|following|.\nThe|average|local|news|columnist|has|a|bigger|rant|on|the|war|between|modern|landscape|architecture|and|small-town|America|.\nNo|worse|than|a|lot|of|the|crap|we|'ve|been|offered|this|summer|,|and|slightly|better|than|Men|in|Black|2|as|far|as|slapdash|extraterrestrial|comedies|go|.\nThe|plot|is|so|predictable|and|sentimental|that|viewers|are|likely|to|lose|interest|before|Sandrine|and|her|goats|walk|off|into|the|sunset|.\nAt|first|,|the|sight|of|a|blind|man|directing|a|film|is|hilarious|,|but|as|the|film|goes|on|,|the|joke|wears|thin|.\nNever|Again|swings|between|false|sentiment|and|unfunny|madcap|comedy|and|,|along|the|way|,|expects|the|audience|to|invest|in|the|central|relationship|as|some|kind|of|marriage|of|true|minds|.\nthe|story|itself|is|uninteresting|,|and|the|songs|are|painfully|undistinguished|:|They|Might|Be|Giants|'|So|to|Be|One|of|Us|may|be|the|most|tuneless|tune|ever|composed|.\nTechnically|,|the|film|is|about|as|interesting|as|an|insurance|commercial|.\nThe|title|'s|lameness|should|clue|you|in|on|how|bad|the|movie|is|.\nThe|parts|are|better|than|the|whole|(|bizarre|,|funny|,|tragic|-|like|love|in|New|York|)|.\nWhile|the|film|shuns|the|glamour|or|glitz|that|an|American|movie|might|demand|,|Scherfig|tosses|us|a|romantic|scenario|that|is|just|as|simplistic|as|a|Hollywood|production|.\nThe|humor|is|hinged|on|the|belief|that|knees|in|the|crotch|,|elbows|in|the|face|and|spit|in|the|eye|are|inherently|funny|.\nIt|'s|a|movie|forged|in|the|fires|of|Chick|Flick|Hell|.\nIts|characters|are|thinner|than|cardboard|--|or|even|comic-book|paper|.\nAny|one|episode|of|The|Sopranos|would|send|this|ill-conceived|folly|to|sleep|with|the|fishes|.\nFeels|like|the|grittiest|movie|that|was|ever|made|for|the|Lifetime|cable|television|network|.\nLanie|'s|professional|success|means|she|must|be|a|failure|at|life|,|because|she|'s|driven|by|ambition|and|Does|n't|Know|How|to|Have|Fun|.\nCredit|must|be|given|to|Harland|Williams|,|Michael|Rosenbaum|and|Barry|Watson|,|who|inject|far|more|good-natured|spirit|and|talent|into|this|project|than|it|deserves\nDenzel|Washington|'s|efforts|are|sunk|by|all|the|sanctimony|.\nIf|this|holiday|movie|is|supposed|to|be|a|gift|,|somebody|unwrapped|it|early|,|took|out|all|the|good|stuff|,|and|left|behind|the|crap|(|literally|)|.\nSo|faithful|to|the|doldrums|of|the|not-quite-urban|,|not-quite-suburban|milieu|as|to|have|viewers|recoiling|from|the|reality|check|.\nRambles|on|in|a|disjointed|,|substandard|fashion|from|one|poorly|executed|action|sequence|to|the|next|.\nThere|'s|an|audience|for|it|,|but|it|could|have|been|funnier|and|more|innocent|.\nI|can|only|imagine|one|thing|worse|than|Kevin|Spacey|trying|on|an|Irish|accent|,|and|that|'s|sultry|Linda|Fiorentino|doing|the|same|thing|.\nAn|awkward|and|indigestible|movie|.\nThe|movie|has|very|little|to|offer|besides|unintentional|laughs|.\nHaneke|keeps|us|at|arm|'s|length|.\nGuided|more|by|intellect|than|heart|,|his|story|flattens|instead|of|sharpens|.\nAll|the|well-meaningness|in|the|world|ca|n't|erase|the|fact|that|The|Believer|feels|like|a|12-Step|Program|for|the|Jewish|Nazi|.\nLike|most|sequels|,|it|takes|what|worked|last|time|,|repeats|it|and|adds|more|characters|,|more|stunts|,|more|stuff|in|attempt|to|camouflage|its|sameness|.\nThere|'s|no|way|to|sort|out|the|mess|in|our|heads|and|deconstruct|where|it|all|went|wrong|.\nThis|is|an|hour|and|a|half|of|daydreaming|.\nMessage|movie|or|an|action-packed|submarine|spectacular|?\nAlas|,|it|'s|neither|.\nNo|movement|,|no|yuks|,|not|much|of|anything|.\n`|Dragonfly|'|is|a|movie|about|a|bus|wreck|that|turns|into|a|film|wreck|.\nThirty|years|ago|,|it|would|have|been|groundbreaking|.\nNow|it|'s|just|tired|.\nHeavy-handed|exercise|in|time-vaulting|literary|pretension|.\nThe|movie|is|too|cute|to|take|itself|too|seriously|,|but|it|still|feels|like|it|was|made|by|some|very|stoned|college|students|.\nA|thinly|veiled|excuse|for|Wilson|to|play|his|self-deprecating|act|against|Murphy|'s|well-honed|prima|donna|shtick|.\nA|minor|picture|with|a|major|identity|crisis|--|it|'s|sort|of|true|and|it|'s|sort|of|bogus|and|it|'s|ho-hum|all|the|way|through|.\nThe|movie|succumbs|to|being|nothing|more|than|a|formulaic|chase|in|the|dark|.\nPlays|as|hollow|catharsis|,|with|lots|of|tears|but|very|little|in|the|way|of|insights|.\nIt|will|come|as|no|surprise|that|the|movie|is|n't|scary|.\nBut|here|'s|the|real|damn|:|It|is|n't|funny|,|either|.\nQuick|:|who|wants|to|see|a|comedy|about|shoddy|airport|security|?\nThe|reason|I|found|myself|finally|unmoved|by|this|film|,|which|is|immaculately|produced|and|has|serious|things|to|say|,|is|that|it|comes|across|rather|too|plainly|as|allegory|.\nWhat|you|get|with|Empire|is|a|movie|you|'ve|seen|many|times|before|,|repackaged|as|new|material|because|there|is|a|Latino|in|the|lead|.\nCho|'s|fans|are|sure|to|be|entertained|;|it|'s|only|fair|in|the|interest|of|full|disclosure|to|say|that|--|on|the|basis|of|this|film|alone|--|I|'m|not|one|of|them|.\nLooks|awfully|like|one|long|tourist|spot|for|a|Mississippi|that|may|never|have|existed|outside|of|a|scriptwriter|'s|imagination|.\nThe|period|--|swinging|London|in|the|time|of|the|mods|and|the|rockers|--|gets|the|once-over|once|again|in|Gangster|No.|1|,|but|falls|apart|long|before|the|end|.\nHigh|Crimes|miscasts|nearly|every|leading|character|.\nThe|overall|feel|of|the|film|is|pretty|cheesy|,|but|there|'s|still|a|real|sense|that|the|Star|Trek|tradition|has|been|honored|as|best|it|can|,|given|the|embarrassing|script|and|weak|direction|.\nDe|Niro|looks|bored|,|Murphy|recycles|Murphy|,|and|you|mentally|add|Showtime|to|the|pile|of|Hollywood|dreck|that|represents|nothing|more|than|the|art|of|the|deal|.\nI|did|n't|believe|for|a|moment|in|these|villains|or|their|plot|.\nAnother|rent|installment|for|the|Ian|Fleming|estate|.\nWith|Danilo|Donati|'s|witty|designs|and|Dante|Spinotti|'s|luscious|cinematography|,|this|might|have|made|a|decent|children|'s|movie|--|if|only|Benigni|had|n't|insisted|on|casting|himself|in|the|title|role|.\nSo|lazy|and|slipshod|it|confuses|the|mere|flashing|of|kinky|soft-core|imagery|with|naughty|fun|.\nThough|it|draws|several|decent|laughs|,|it|'s|low-cal|Woody|at|best|.\nHas|little|on|its|mind|aside|from|scoring|points|with|drag|gags|.\nBritney|'s|performance|can|not|be|faulted|.\nLucy|'s|a|dull|girl|,|that|'s|all|.\nWell-shot|but|badly|written|tale|set|in|a|future|ravaged|by|dragons|.\nSadly|,|Hewitt|'s|forte|is|leaning|forward|while|wearing|low-cut|gowns|,|not|making|snappy|comebacks|.\nIf|Melville|is|creatively|a|great|whale|,|this|film|is|canned|tuna|.\nThis|film|is|so|slick|,|superficial|and|trend-hoppy|,|that|it|'s|easy|to|imagine|that|a|new|software|program|spit|out|the|screenplay|.\nJust|one|more|collection|of|penis|,|breast|and|flatulence|gags|in|search|of|a|story|.\nOr|a|profit|.\nOr|some|damn|thing|.\nThe|acting|is|stiff|,|the|story|lacks|all|trace|of|wit|,|the|sets|look|like|they|were|borrowed|from|Gilligan|'s|Island|--|and|the|CGI|Scooby|might|well|be|the|worst|special-effects|creation|of|the|year|.\nEnough|trivializes|an|important|crisis|,|reduces|it|to|an|almost|comic|embarrassment|.\nThe|makers|have|forsaken|the|entertaining|elements|of|the|original|and|,|instead|,|rehash|old|jokes|and|leave|any|life|at|the|doorstep|.\nI|like|Frank|the|Pug|,|though|.\nA|restrained|Ribisi|convinces|as|an|Italian|,|though|if|ever|a|movie|needed|one|of|the|actor|'s|whiny|jags|to|pump|it|up|,|this|has|to|be|among|the|rare|ones|.\nGee|,|a|second|assassin|shot|Kennedy|?\nMoot|point|.\nA|hysterical|yet|humorless|disquisition|on|the|thin|line|between|sucking|face|and|literally|sucking|face|.\nNeedless|to|say|,|the|dramatics|that|follow|are|utter|hooey|.\nThe|problem|is|that|rather|than|dramatizing|this|premise|,|Mr.|Desplechin|is|content|to|state|it|.\nMadonna|still|ca|n't|act|a|lick|.\nEven|the|imaginative|gore|ca|n't|hide|the|musty|scent|of|Todd|Farmer|'s|screenplay|,|which|is|a|simple|retread|of|the|1979|Alien|,|with|a|plucky|heroine|battling|a|monster|loose|in|a|spaceship|.\nIf|you|pitch|your|expectations|at|an|all|time|low|,|you|could|do|worse|than|this|oddly|cheerful|--|but|not|particularly|funny|--|body-switching|farce|.\nThe|episodic|film|makes|valid|points|about|the|depersonalization|of|modern|life|.\nBut|the|characters|tend|to|be|cliches|whose|lives|are|never|fully|explored|.\nSerry|does|a|fine|job|of|capturing|the|climate|of|the|times|and|,|perhaps|unwittingly|,|relating|it|to|what|is|happening|in|America|in|2002|.\nBut|hard-to-believe|plot|twists|force|the|movie|off|track|in|its|final|half|hour|.\nDo|n't|let|your|festive|spirit|go|this|far|.\nThough|the|book|runs|only|about|300|pages|,|it|is|so|densely|packed|...|that|even|an|ambitious|adaptation|and|elaborate|production|like|Mr.|Schepisi|'s|seems|skimpy|and|unclear|.\nHey|,|at|least|the|title|of|this|film|lets|you|know|exactly|where|it|'s|heading|.\nIntended|to|be|a|comedy|about|relationships|,|this|wretched|work|falls|flat|in|just|about|every|conceivable|area|.\nSensitive|though|not|quite|revelatory|documentary|.\nDirector|Brian|Levant|,|who|never|strays|far|from|his|sitcom|roots|,|skates|blithely|from|one|implausible|situation|to|another|,|pausing|only|to|tie|up|loose|ends|with|more|bows|than|you|'ll|find|on|a|French|poodle|.\n...|perhaps|the|heaviest|,|most|joyless|movie|ever|made|about|giant|dragons|taking|over|the|world|.\nSuggests|puns|about|ingredients|and|soup|and|somebody|being|off|their|noodle|,|but|let|'s|just|say|the|ingredients|do|n't|quite|add|up|to|a|meal|.\nI|'d|give|real|money|to|see|the|perpetrators|of|Chicago|torn|apart|by|dingoes|.\nMovies|like|this|are|selling|the|old|European|candor|,|the|old|wink|of|`|bold|'|revelation|.\nBut|in|2002|,|such|revelations|wilt|.\nThe|timing|in|nearly|every|scene|seems|a|half|beat|off|.\nI|admire|it|and|yet|can|not|recommend|it|,|because|it|overstays|its|natural|running|time|.\nA|fairly|by-the-books|blend|of|action|and|romance|with|sprinklings|of|intentional|and|unintentional|comedy|.\nFlounders|due|to|the|general|sense|that|no|two|people|working|on|the|production|had|exactly|the|same|thing|in|mind|.\nEven|if|you|feel|like|you|'ve|seen|this|movie|a|thousand|times|before|,|it|is|kind|of|enjoyable|thanks|mainly|to|Belushi|'s|easy-going|likableness|.\nThe|story|bogs|down|in|a|mess|of|purposeless|violence|.\nDespite|some|gulps|the|film|is|a|fuzzy|huggy|.\nMcKay|deflates|his|piece|of|puffery|with|a|sour|cliche|and|heavy|doses|of|mean-spiritedness\nA|recipe|for|cinematic|disaster|...|part|Quentin|Tarantino|,|part|Guy|Ritchie|,|and|part|1960s|spy|spoof|,|it|'s|all|bad|.\nThe|cumulative|effect|of|the|relentless|horror|on|parade|numbs|the|movie|'s|power|as|a|work|of|drama|.\nAnother|big|,|dumb|action|movie|in|the|vein|of|XXX|,|The|Transporter|is|riddled|with|plot|holes|big|enough|for|its|titular|hero|to|drive|his|sleek|black|BMW|through|.\nAaliyah|rarely|dampens|her|diva|persona|enough|to|spark|genuine|chemistry|with|Townsend|.\nWhen|she|speaks|,|her|creepy|Egyptian|demigod|voice|is|as|computer|processed|and|overproduced|as|it|was|in|her|music|.\nOutrageousness|is|all|Plympton|seemed|to|be|going|for|this|time|.\nWe|miss|the|quirky|amazement|that|used|to|come|along|for|an|integral|part|of|the|ride|.\nMuch|of|what|is|meant|to|be|`|inspirational|'|and|`|uplifting|'|is|simply|distasteful|to|audiences|not|already|sharing|(|the|movie|'s|)|mindset|.\nWell|before|it|'s|over|,|Beijing|Bicycle|begins|spinning|its|wheels|.\nHome|Alone|goes|Hollywood|,|a|funny|premise|until|the|kids|start|pulling|off|stunts|not|even|Steven|Spielberg|would|know|how|to|do|.\nBesides|,|real|movie|producers|are|n't|this|nice|.\n(|Nelson|'s|)|movie|about|morally|compromised|figures|leaves|viewers|feeling|compromised|,|unable|to|find|their|way|out|of|the|fog|and|the|ashes|.\nPassion|,|lip-synching|,|tragedy|,|and|lots|of|really|really|high|notes|.\nFor|me|,|this|opera|is|n't|a|favorite|,|so|it|'s|a|long|time|before|the|fat|lady|sings|.\nLooks|like|a|high|school|film|project|completed|the|day|before|it|was|due|.\nTruth|to|tell|,|if|you|'ve|seen|more|than|half-a-dozen|horror|films|,|there|'s|nothing|here|you|have|n't|seen|before|.\nAbandons|all|pretense|of|creating|historical|context|and|waltzes|off|into|a|hectic|soap|about|the|ups|and|downs|of|the|heavy|breathing|between|the|two|artists|.\nEven|die-hard|fans|of|Japanese|animation|...|will|find|this|one|a|challenge|.\nFilmmakers|have|to|dig|deep|to|sink|this|low|.\nFortunately|for|all|involved|,|this|movie|is|likely|to|disappear|as|quickly|as|an|ice|cube|thrown|into|a|pot|of|boiling|water|.\nThe|movie|gets|muted|and|routine|.\nThe|issue|of|faith|is|not|explored|very|deeply\nIt|'s|a|bad|sign|when|you|'re|rooting|for|the|film|to|hurry|up|and|get|to|its|subjects|'|deaths|just|so|the|documentary|will|be|over|,|but|it|'s|indicative|of|how|uncompelling|the|movie|is|unless|it|happens|to|cover|your|particular|area|of|interest|.\nThe|situations|and|jokes|are|as|predictable|and|as|lowbrow|as|the|endless|pratfalls|the|boys|take|in|their|high|heels|.\nIt|'s|frustrating|to|see|these|guys|--|who|are|obviously|pretty|clever|--|waste|their|talent|on|parodies|of|things|they|probably|thought|were|funniest|when|they|were|high|.\nI|was|perplexed|to|watch|it|unfold|with|an|astonishing|lack|of|passion|or|uniqueness|.\nK-19|may|not|hold|a|lot|of|water|as|a|submarine|epic|,|but|it|holds|even|less|when|it|turns|into|an|elegiacally|soggy|Saving|Private|Ryanovich|.\nA|very|stylish|but|ultimately|extremely|silly|tale|...|a|slick|piece|of|nonsense|but|nothing|more|.\nAutomatically|pegs|itself|for|the|straight-to-video|sci-fi|rental|shelf|.\nThe|film|is|like|a|series|of|beginnings|and|middles|that|never|take|off|.\nFeels|less|like|it|'s|about|teenagers|,|than|it|was|written|by|teenagers|.\nJa|Rule|and|Kurupt|should|have|gotten|to|rap|.\nIt|would|have|benefitted|the|dialogue|.\nA|standard|haunted|house|tale|transplanted|to|the|high|seas|.\nElicits|more|groans|from|the|audience|than|Jar|Jar|Binks|,|Scrappy|Doo|and|Scooby|Dumb|,|all|wrapped|up|into|one|.\nIt|'s|badly|acted|,|blandly|directed|,|and|could|have|been|scripted|by|someone|who|just|graduated|from|elementary|school|.\nIn|the|end|,|White|Oleander|is|n't|an|adaptation|of|a|novel|.\nIt|'s|a|flashy|,|star-splashed|reduction|.\nThis|film|,|starring|Anthony|Hopkins|and|Chris|Rock|,|is|your|typical|`|fish|out|of|water|'|story|.\nYou|'ve|seen|them|a|million|times|.\nJust|one|problem|:|Fish|out|of|water|usually|die|.\nThis|one|does|.\nThe|angst-ridden|,|affluent|slacker|characters|are|more|grating|than|engaging|.\nA|soggy|,|shapeless|mess|...|just|a|dumb|excuse|for|a|waterlogged|equivalent|of|a|haunted-house|movie|.\nMen|in|Black|II|has|sequel-itis|something|fierce|.\nAn|ungainly|,|comedy-deficient|,|B-movie|rush|job|...\nA|combination|of|standard|,|stiff|TV-style|animation|and|snazzy-looking|digital|effects|that|do|little|to|disguise|the|fact|that|the|characters|barely|move|.\nAn|unsatisfying|hybrid|of|Blair|Witch|and|typical|stalk-and-slash|fare|,|where|the|most|conservative|protagonist|is|always|the|last|one|living|.\nSay|this|for|the|soundtrack|,|it|drowns|out|the|lousy|dialogue|.\nAfter|seeing|SWEPT|AWAY|,|I|feel|sorry|for|Madonna|.\nInstead|of|kicking|off|the|intrigue|and|suspense|and|mystery|of|the|whole|thing|,|Hart|'s|War|,|like|the|St.|Louis|Rams|in|the|Super|Bowl|,|waits|until|after|halftime|to|get|started|.\nA|gob|of|drivel|so|sickly|sweet|,|even|the|eager|consumers|of|Moore|'s|pasteurized|ditties|will|retch|it|up|like|rancid|crème|brûlée|.\nMaudlin|and|melodramatic|we|expected|.\nBoring|we|did|n't|.\nNever|quite|transcends|jokester|status|...|and|the|punchline|does|n't|live|up|to|Barry|'s|dead-eyed|,|perfectly|chilled|delivery|.\nThe|film|'s|bathos|often|overwhelms|what|could|have|been|a|more|multifaceted|look|at|this|interesting|time|and|place|.\nIt|almost|plays|like|Solaris|,|but|with|guns|and|jokes|.\nA|baffling|misfire|,|and|possibly|the|weakest|movie|(|Woody|Allen|)|has|made|in|the|last|twenty|years|.\nIt|wo|n't|be|long|before|you|'ll|spy|I|Spy|at|a|video|store|near|you|.\nThis|film|looks|like|it|was|produced|in|1954|,|shelved|for|48|years|,|and|repackaged|for|a|2002|audience|.\nPropelled|not|by|characters|but|by|caricatures|.\nThere|is|not|an|ounce|of|honesty|in|the|entire|production|.\nThis|extremely|unfunny|film|clocks|in|at|80|minutes|,|but|feels|twice|as|long|.\nEarnest|but|earthbound|...|a|slow|,|soggy|,|soporific|,|visually|dank|crime|melodrama\\/character|study|that|would|be|more|at|home|on|the|small|screen|but|for|its|stellar|cast|.\nThe|pivotal|narrative|point|is|so|ripe|the|film|ca|n't|help|but|go|soft|and|stinky|.\nFor|all|its|alleged|youthful|fire|,|XXX|is|no|less|subservient|to|Bond|'s|tired|formula|of|guns|,|girls|and|gadgets|while|brandishing|a|new|action|hero|.\nA|predictable|and|stereotypical|little|B-movie|.\nIf|I|Spy|were|funny|(|enough|)|or|exciting|(|enough|)|then|it|would|be|fairly|simple|to|forgive|the|financial|extortion|it|'s|trying|to|reap|from|the|moviegoing|public|.\nFrustratingly|,|Dridi|tells|us|nothing|about|El|Gallo|other|than|what|emerges|through|his|music|.\nPlaces|a|slightly|believable|love|triangle|in|a|difficult-to-swallow|setting|,|and|then|disappointingly|moves|the|story|into|the|realm|of|an|improbable|thriller|.\nStephen|Earnhart|'s|documentary|is|a|decomposition|of|healthy|eccentric|inspiration|and|ambition|--|wearing|a|cloak|of|unsentimental|,|straightforward|text|--|when|it|'s|really|an|exercise|in|gross|romanticization|of|the|delusional|personality|type|.\nA|very|average|science|fiction|film|.\nUndone|by|its|overly|complicated|and|derivative|screenplay|,|the|glacier-paced|direction|and|the|stereotypical|characters|.\nHow|anyone|over|the|age|of|2|can|stomach|the|touchy-feely|message|this|preachy|produce|promotes|is|beyond|us|.\nThe|sort|of|movie|that|gives|tastelessness|a|bad|rap|.\nThe|cold|and|dreary|weather|is|a|perfect|metaphor|for|the|movie|itself|,|which|contains|few|laughs|and|not|much|drama|.\nThe|plot|is|straight|off|the|shelf|,|the|performances|are|television|-|caliber|and|the|message|of|providing|solace|through|deception|is|a|little|creepy|.\nordinary|melodrama|that|is|heavy|on|religious|symbols|but|wafer-thin|on|dramatic|substance\nA|whimsical|if|predictable|time-travel|fable|marred|by|a|willful|single-mindedness|.\nThose|who|managed|to|avoid|the|Deconstructionist|theorizing|of|French|philosopher|Jacques|Derrida|in|college|can|now|take|an|85-minute|brush-up|course|with|the|documentary|Derrida|.\nOr|,|you|can|do|something|fun|tonight|.\nJolie|'s|performance|vanishes|somewhere|between|her|hair|and|her|lips|.\nAs|with|too|many|studio|pics|,|plot|mechanics|get|in|the|way|of|what|should|be|the|lighter-than-air|adventure|.\nStatic|,|repetitive|,|muddy|and|blurry|,|Hey|Arnold|!\nwould|seem|to|have|a|lock|on|the|title|of|ugliest|movie|of|the|year|.\nFor|all|of|the|contemporary|post-colonialist|consciousness|that|Kapur|tries|to|bring|to|The|Four|Feathers|,|the|oddest|thing|about|the|movie|is|how|it|winds|up|affirming|the|same|damn|moldy|values|the|material|has|always|held|dear|.\nWhen|it|comes|to|entertainment|,|children|deserve|better|than|Pokemon|4Ever|.\nWhat|The|Four|Feathers|lacks|is|genuine|sweep|or|feeling|or|even|a|character|worth|caring|about|.\nWhile|Benigni|(|who|stars|and|co-wrote|)|seems|to|be|having|a|wonderful|time|,|he|might|be|alone|in|that|.\nYes|,|4Ever|is|harmless|in|the|extreme|and|it|'ll|mute|your|kids|for|nearly|80|minutes|,|but|why|not|just|treat|the|little|yard|apes|to|the|real|deal|and|take|them|to|Spirited|Away|?\nPreposterous|and|tedious|,|Sonny|is|spiked|with|unintentional|laughter|that|,|unfortunately|,|occurs|too|infrequently|to|make|the|film|even|a|guilty|pleasure|.\nCalling|this|movie|brainless|would|be|paying|it|a|compliment|:|it|'s|more|like|entertainment|for|trolls|.\nNone|of|these|characters|resembles|anyone|you|'ve|ever|met|in|real|life|,|unless|you|happen|to|know|annoyingly|self-involved|people|who|speak|in|glib|sentences|that|could|have|only|come|from|the|pen|of|a|screenwriter|.\n...|just|a|big|mess|of|a|movie|,|full|of|images|and|events|,|but|no|tension|or|surprise|.\nAs|elegantly|crafted|as|it|often|is|,|Anderson|'s|movie|is|essentially|a|one-trick|pony|that|,|hampered|by|an|undeveloped|script|,|ultimately|pulls|up|lame|.\nSplashes|its|drama|all|over|the|screen|,|subjecting|its|audience|and|characters|to|action|that|feels|not|only|manufactured|,|but|also|so|false|you|can|see|the|filmmakers|'|puppet|strings|.\n...|has|virtually|no|script|at|all|...\nWill|only|satisfy|those|who|ca|n't|tell|the|difference|between|the|good|,|the|bad|and|the|ugly|.\nThis|kind|of|dark|comedy|requires|a|delicate|,|surgical|touch|.\nBut|director|Danny|DeVito|and|screenwriter|Adam|Resnick|(|remember|Cabin|Boy|?|)\njust|pound|away|.\nAt|times|,|however|,|Dogtown|and|Z-Boys|lapses|into|an|insider|'s|lingo|and|mindset|that|the|uninitiated|may|find|hard|to|follow|,|or|care|about|.\nRather|quickly|,|the|film|falls|into|a|soothing|formula|of|brotherly|conflict|and|reconciliation|.\nScreenwriters|Scott|Abbott|and|Michael|Petroni|have|turned|Rice|'s|complex|Akasha|into|a|cartoon|monster|.\nThe|writers|,|director|Wally|Wolodarsky|,|and|all|the|actors|should|start|their|own|coeducational|fraternity|:|Kappa|Rho|Alpha|Phi|.\nBad|beyond|belief|and|ridiculous|beyond|description|.\nThe|new|faces|are|interesting|,|but|the|old|story|is|n't|,|especially|when|it|starts|to|seem|more|improvised|than|scripted|.\nMost|of|the|action|setups|are|incoherent|.\nLiman|,|of|Swingers|and|Go|,|makes|his|big-budget|action|film|debut|something|of|a|clunker|as|he|delivers|a|long|,|low-heat|chase|,|interrupted|by|a|middling|car|chase|.\n...|surprisingly|inert|for|a|movie|in|which|the|main|character|travels|back|and|forth|between|epochs|.\nThe|problem|is|n't|that|the|movie|hits|so|close|to|home|so|much|as|that|it|hits|close|to|home|while|engaging|in|such|silliness|as|that|snake-down-the-throat|business|and|the|inevitable|shot|of|Schwarzenegger|outrunning|a|fireball|.\nDreary|,|highly|annoying|...|`|Some|Body|'|will|appeal|to|No|One|.\nThere|'s|something|deeply|creepy|about|Never|Again|,|a|new|arrow|in|Schaeffer|'s|quiver|of|ineptitudes|.\nThe|problem|with|concept|films|is|that|if|the|concept|is|a|poor|one|,|there|'s|no|saving|the|movie|.\nSorry|,|Charlie\nA|painfully|leaden|film|destined|for|pre-dawn|cable|television|slots|.\nBlessed|with|immense|physical|prowess|he|may|well|be|,|but|Ahola|is|simply|not|an|actor|.\nAnd|in|truth|,|cruel|as|it|may|sound|,|he|makes|Arnold|Schwarzenegger|look|like|Spencer|Tracy|.\nThe|cartoon|that|is|n't|really|good|enough|to|be|on|afternoon|TV|is|now|a|movie|that|is|n't|really|good|enough|to|be|in|theaters|.\nShocking|only|in|that|it|reveals|the|filmmaker|'s|bottomless|pit|of|self-absorption|.\nThis|pep-talk|for|faith|,|hope|and|charity|does|little|to|offend|,|but|if|saccharine|earnestness|were|a|crime|,|the|film|'s|producers|would|be|in|the|clink|for|life|.\nAll|ends|well|,|sort|of|,|but|the|frenzied|comic|moments|never|click|.\nIf|this|is|the|Danish|idea|of|a|good|time|,|prospective|tourists|might|want|to|consider|a|different|destination|--|some|jolly|country|embroiled|in|a|bloody|civil|war|,|perhaps|.\nFormula|51|is|so|trite|that|even|Yu|'s|high-energy|action|stylings|ca|n't|break|through|the|stupor|.\nOnly|a|few|minutes|elapse|before|the|daddy|of|all|slashers|arrives|,|still|with|the|boiler|suit|and|white|mask|,|which|look|remarkably|clean|for|a|guy|who|has|been|mass-murdering|since|1978|but|has|never|been|seen|doing|laundry|.\nWhen|the|painted|backdrops|in|a|movie|are|more|alive|than|its|characters|,|you|know|you|'re|in|trouble|.\n(|Two|)|fairly|dull|--|contrasting|and|interlocking|stories|about|miserable|Scandinavian|settlers|in|18th-century|Canada|,|and|yuppie|sailboaters|in|the|here|and|now|.\nThe|film|is|really|not|so|much|bad|as|bland|.\nThe|central|story|lacks|punch|.\nThough|Ganesh|is|successful|in|a|midlevel|sort|of|way|,|there|'s|nothing|so|striking|or|fascinating|or|metaphorically|significant|about|his|career|as|to|rate|two|hours|of|our|attention|.\nThis|may|be|the|dumbest|,|sketchiest|movie|on|record|about|an|aspiring|writer|'s|coming-of-age|.\nSuccumbs|to|the|same|kind|of|maudlin|,|sentimental|mysticism|that|mars|the|Touched|by|an|Angel|school|of|non-God|spiritual-uplift|movies|.\nA|harmless|and|mildly|amusing|family|comedy|.\nWhat|was|subtle|and|mystifying|in|the|novella|is|now|broad|and|farcical|.\nThe|kids|often|appear|to|be|reading|the|lines|and|are|incapable|of|conveying|any|emotion|.\n``|Men|in|Black|II|,|''|has|all|the|earmarks|of|a|sequel|.\nThe|story|is|less|vibrant|,|the|jokes|are|a|little|lukewarm|,|but|will|anyone|really|care|?\nSucking|all|the|`|classic|'|out|of|Robert|Louis|Stevenson|'s|Treasure|Island|and|filling|the|void|with|sci-fi|video|game|graphics|and|Disney-fied|adolescent|angst|...\nThis|72-minute|film|does|have|some|exciting|scenes|,|but|it|'s|a|tad|slow|.\nWhile|Super|Troopers|is|above|Academy|standards|,|its|quintet|of|writers|could|still|use|some|more|schooling|.\nA|mix|of|velocity|and|idiocy|,|this|ruinous|remake|lacks|the|brawn|--|and|the|brains|--|of|the|1970s|original|.\nThe|low-budget|Full|Frontal|was|one|of|the|year|'s|murkiest|,|intentionally|obscure|and|self-indulgent|pictures|,|and|Solaris|is|its|big-budget|brother|.\nThe|plot|is|very|clever|,|but|Boyd|weighs|it|down|with|too|many|characters|and|events|,|all|intertwined|and|far|too|complicated|to|keep|track|of|.\nThe|film|seems|all|but|destined|to|pop|up|on|a|television|screen|in|the|background|of|a|scene|in|a|future|Quentin|Tarantino|picture\nA|free-for-all|of|half-baked|thoughts|,|clumsily|used|visual|tricks|and|self-indulgent|actor|moments|.\nApallingly|absurd|...|the|chemistry|or|lack|thereof|between|Newton|and|Wahlberg|could|turn|an|Imax|theater|into|a|9|''|black|and|white|portable|TV|.\nA|well|acted|and|well|intentioned|snoozer|.\nThe|smug|,|oily|demeanor|that|Donovan|adopts|throughout|the|stupidly|named|Pipe|Dream|is|just|repulsive|.\nMust-see|viewing|for|anyone|involved|in|the|high-tech|industry|.\nOthers|may|find|it|migraine-inducing|,|despite|Moore|'s|attempts|at|whimsy|and|spoon|feeding|.\nDespite|its|good|nature|and|some|genuinely|funny|moments|,|Super|Troopers|suffers|from|a|bad|case|of|arrested|development|.\nIt|'s|hard|not|to|feel|you|'ve|just|watched|a|feature-length|video|game|with|some|really|heavy|back|story|.\nI|watched|the|brainless|insanity|of|No|Such|Thing|with|mounting|disbelief|.\nThis|limp|gender-bender-baller|from|a|first-time|director|and|rookie|screenwriter|steals|wholesale|from|that|1982|'s|Tootsie|,|forgetting|only|to|retain|a|single|laugh|.\nKwan|makes|the|mix-and|-|match|metaphors|intriguing|,|while|lulling|us|into|torpor|with|his|cultivated|allergy|to|action|.\nWhile|obviously|an|extremely|personal|work|,|it|remains|inextricably|stuck|in|an|emotionally|unavailable|rut|.\nAny|movie|this|boring|should|be|required|to|have|ushers|in|the|theater|that|hand|you|a|cup|of|coffee|every|few|minutes|.\nLike|a|marathon|runner|trying|to|finish|a|race|,|you|need|a|constant|influx|of|liquid|just|to|get|through|it|.\nI|loved|looking|at|this|movie|.\nI|just|did|n't|care|as|much|for|the|story|.\nHas|all|the|poignancy|of|a|Hallmark|card|and|all|the|comedy|of|a|Gallagher|stand-up|act|.\nIt|does|n't|do|the|original|any|particular|dishonor|,|but|neither|does|it|exude|any|charm|or|personality|.\nfear|dot|com|is|so|rambling|and|disconnected|it|never|builds|any|suspense|.\nA|gorgeous|,|somnolent|show|that|is|splendidly|mummified|and|thoroughly|unsurprising|.\nA|semi-autobiographical|film|that|'s|so|sloppily|written|and|cast|that|you|can|not|believe|anyone|more|central|to|the|creation|of|Bugsy|than|the|caterer|had|anything|to|do|with|it|.\nIt|feels|like|a|community|theater|production|of|a|great|Broadway|play|:|Even|at|its|best|,|it|will|never|hold|a|candle|to|the|original|.\nThe|film|apparently|takes|place|in|a|fantasy|world|where|people|in|hotel|hallways|recite|poetry|in|voice-over|instead|of|speaking|to|each|other|.\nThe|element|of|surprise|might|be|the|only|thing|Femme|Fatale|has|going|for|it|.\nIt|'s|the|kind|of|movie|you|ca|n't|quite|recommend|because|it|is|all|windup|and|not|much|of|a|pitch|,|yet|you|ca|n't|bring|yourself|to|dislike|it|.\nMaybe|it|'s|asking|too|much|,|but|if|a|movie|is|truly|going|to|inspire|me|,|I|want|a|little|more|than|this|.\nA|graceless|,|witless|attempt|at|mating|Some|Like|It|Hot|with|the|WWII|espionage|thriller|.\nThe|story|and|characters|are|nowhere|near|gripping|enough|.\nBased|on|a|David|Leavitt|story|,|the|film|shares|that|writer|'s|usual|blend|of|observant|cleverness|,|too-facile|coincidence|and|slightly|noxious|preciousness|.\nJust|like|every|other|Seagal|movie|,|only|louder|and|without|that|silly|ponytail|.\nTo|enjoy|this|movie|'s|sharp|dialogue|and|delightful|performance|by|Jolie|and|Burns|,|you|have|to|gloss|over|the|no|sense|ending|.\nNational|Lampoon|'s|Van|Wilder|could|be|the|worst|thing|to|come|out|of|National|Lampoon|since|Class|Reunion\nThis|is|a|great|subject|for|a|movie|,|but|Hollywood|has|squandered|the|opportunity|,|using|it|as|a|prop|for|warmed-over|melodrama|and|the|kind|of|choreographed|mayhem|that|director|John|Woo|has|built|his|career|on|.\nEcks|this|one|off|your|must-see|list|.\nOverall|,|the|film|misses|the|brilliance|of|Jelinek|'s|novel|by|some|way|.\nIt|settles|for|being|merely|grim|.\nThe|Irwins|emerge|unscathed|,|but|the|fictional|footage|is|unconvincing|and|criminally|badly|acted|.\nIt|'s|not|thirsty|,|consuming|passion|which|drives|this|movie|.\nNo|,|it|'s|the|repetition|of|said|behavior|,|and|so|Children|of|the|Century|is|more|mindless|love|than|mad|,|more|grating|and|boring|than|anything|else|.\nJust|because|it|really|happened|to|you|,|honey|,|does|n't|mean|that|it|'s|interesting|to|anyone|else|.\nJust|like|the|deli|sandwich|:|lots|of|ham|,|lots|of|cheese|,|with|a|sickly|sweet|coating|to|disguise|its|excrescence|until|just|after|(|or|during|)|consumption|of|its|second|half|.\nEvery|so|often|a|movie|comes|along|that|confirms|one|'s|worse|fears|about|civilization|as|we|know|it|.\nThe|New|Guy|is|one|of|them|.\nThis|is|n't|a|``|Friday|''|worth|waiting|for|.\nEverything|that|'s|worthwhile|about|Collision|Course|can|already|be|seen|on|television|.\nIf|this|movie|belonged|to|a|sorority|,|it|would|be|called|Beta|Alpha|Delta|.\nNot|a|cheap|slasher|flick|,|as|the|subject|matter|would|suggest|,|but|is|a|little|like|a|nature|film|,|showing|a|patient|predator|and|his|foolish|prey|.\nUneasy|mishmash|of|styles|and|genres|.\nHerzog|is|obviously|looking|for|a|moral|to|his|fable|,|but|the|notion|that|a|strong|,|unified|showing|among|Germany|and|Eastern|European|Jews|might|have|changed|20th-Century|history|is|undermined|by|Ahola|'s|inadequate|performance|.\nAll|in|all|,|there|'s|only|one|thing|to|root|for|:|expulsion|for|everyone|.\nBeyond|a|handful|of|mildly|amusing|lines|...|there|just|is|n't|much|to|laugh|at|.\nSecret|Ballot|is|too|contemplative|to|be|really|funny|.\nThe|film|'s|center|will|not|hold|.\nMyers|never|knows|when|to|let|a|gag|die|;|thus|,|we|'re|subjected|to|one|mind-numbingly|lengthy|riff|on|poo|and|pee|jokes|after|another|.\nToo|lazy|to|take|advantage|of|its|semi-humorous|premise|.\nA|great|ending|does|n't|make|up|for|a|weak|movie|,|and|Crazy|as|Hell|does|n't|even|have|a|great|ending|.\nDialogue-heavy|and|too|cerebral|for|its|own|good|--|or|,|at|any|rate|,|too|cerebral|for|its|racy|subject|matter|.\nIts|over-reliance|on|genre|conventions|,|character|types|and|formulaic|conflict|resolutions|crushes|all|the|goodwill|it|otherwise|develops|.\nAs|an|actor|,|The|Rock|is|aptly|named|.\nA|mostly|tired|retread|of|several|other|mob|tales|.\nI|wish|I|could|say|``|Thank|God|It|'s|Friday|''|,|but|the|truth|of|the|matter|is|I|was|glad|when|it|was|over|.\nNothing|about|it|fits|.\nAs|it|abruptly|crosscuts|among|the|five|friends|,|it|fails|to|lend|the|characters|'|individual|stories|enough|dramatic|resonance|to|make|us|care|about|them|.\nSomehow|we|'re|meant|to|buy|that|this|doting|mother|would|shun|her|kids|,|travel|to|one|of|the|most|dangerous|parts|of|the|world|,|don|fatigues|and|become|G.I.|Jane|.\nThe|cast|is|so|low-wattage|that|none|of|the|characters|comes|off|as|big|...|and|the|setting|remains|indistinct|.\nConsider|the|title|'s|clunk-on-the-head|that|suggests|the|overtime|someone|put|in|to|come|up|with|an|irritatingly|unimaginative|retread|concept|.\nThe|movie|quickly|drags|on|becoming|boring|and|predictable|.\nI|tried|to|read|the|time|on|my|watch|.\nThe|film|makes|a|tragic|error|by|going|on|for|too|long|,|trying|to|mirror|every|subsequent|event|in|Chinese|history|:|war|,|revolution|,|Communism|,|etc.|.\nJohnson|has|,|in|his|first|film|,|set|himself|a|task|he|is|not|nearly|up|to|.\nUltimately|the|project|comes|across|as|clinical|,|detached|,|uninvolving|,|possibly|prompting|audience|members|to|wonder|,|`|What|'s|the|point|?|'\nThe|two|leads|are|almost|good|enough|to|camouflage|the|dopey|plot|,|but|so|much|naturalistic|small|talk|,|delivered|in|almost|muffled|exchanges|,|eventually|has|a|lulling|effect|.\nThe|film|meant|well|in|its|horse|tale|about|freedom|,|but|was|n't|able|to|reach|the|heart|because|it|was|too|overbearing|.\nThe|movie|is|as|far|as|you|can|get|from|racy|,|to|the|point|where|it|almost|stops|the|blood|flow|to|your|brain|;|it|has|a|dull|,|costumey|feel|.\nOnce|the|audience|figure|out|what|'s|being|said|,|the|filmmaker|'s|relative|passivity|will|make|it|tough|for|them|to|really|care|.\nThere|'s|nothing|provocative|about|this|film|save|for|the|ways|in|which|it|studiously|avoids|provoking|thought|.\nIt|seems|just|a|long|,|convoluted|ploy|to|get|men|into|drag|--|period|drag|,|no|less|.\nThe|premise|for|this|kegger|comedy|probably|sounded|brilliant|four|six-packs|and|a|pitcher|of|margaritas|in|,|but|the|film|must|have|been|written|...|in|the|thrall|of|a|vicious|hangover|.\nEven|by|dumb|action-movie|standards|,|Ballistic|:|Ecks|vs.|Sever|is|a|dumb|action|movie|.\nThe|film|equivalent|of|a|toy|chest|whose|contents|get|scattered|over|the|course|of|80|minutes|.\nJust|a|bloody|mess|.\nCreepy|but|ultimately|unsatisfying|thriller|.\nYou|would|be|better|off|investing|in|the|worthy|EMI|recording|that|serves|as|the|soundtrack|,|or|the|home|video|of|the|1992|Malfitano-Domingo|production|.\nHas|something|to|say|...|but|it|is|a|statement|and|issue|worthy|of|a|much|more|thoughtfulness|and|insight|than|a|melodramatic|and|wholly|predictable|thriller|.\nBears|is|bad|.\nNot|`|terrible|filmmaking|'|bad|,|but|more|like|,|'|I|once|had|a|nightmare|like|this|,|and|it|'s|now|coming|true|'|bad|.\nAs|is|most|commonly|case|with|projects|such|noble|and|lofty|ambitions|,|the|film|is|less|poetic|than|simply|pretentious|.\nGeorge|,|hire|a|real|director|and|good|writers|for|the|next|installment|,|please|.\nFor|a|film|about|two|mismatched|buddies|,|Crystal|and|De|Niro|share|little|screen|time|and|even|less|chemistry|.\nHowever|clever|Nelson|has|been|in|providing|variation|within|the|confines|of|her|structure|and|staging|,|the|question|remains|whether|this|should|,|indeed|,|have|been|presented|as|a|theatrical|release|.\nExtreme|Oops|-|oops|,|ops|,|no|matter|how|you|spell|it|,|it|'s|still|a|mistake|to|go|see|it|.\nWhat|could|and|should|have|been|biting|and|droll|is|instead|a|tepid|waste|of|time|and|talent|.\nWhat|will|,|most|likely|,|turn|out|to|be|the|most|repellent|movie|of|2002|.\n...|too|dull|to|enjoy|.\nA|morality|tale|whose|thought-provoking|potential|is|hampered|by|a|made-for-TV|look|,|rigid|performances|and|an|asinine|`|twist|'|that|brazenly|rips|off|The|Sixth|Sense|.\nHere|'s|a|self-congratulatory|3D|IMAX|rah-rah|.\nEastwood|is|an|icon|of|moviemaking|,|one|of|the|best|actors|,|directors|and|producers|around|,|responsible|for|some|excellent|work|.\nBut|even|a|hero|can|stumble|sometimes|.\nA|sophomoric|exploration|of|`|life|problems|'|most|people|solved|long|ago|--|or|at|least|got|tired|of|hearing|people|kvetch|about|.\nIt|'s|all|very|cute|,|though|not|terribly|funny|if|you|'re|more|than|six|years|old|.\nThe|impact|of|the|Armenian|genocide|is|diluted|by|too|much|stage|business|in|the|modern|day|.\nGoing|to|the|website|may|be|just|as|fun|(|and|scary|)|as|going|to|the|film|.\nLacking|gravitas|,|MacDowell|is|a|placeholder|for|grief|,|and|ergo|this|sloppy|drama|is|an|empty|vessel|.\nLeave|these|Flowers|unpicked|--|they|'re|dead|on|the|vine|.\nAdmirable|,|certainly|,|but|not|much|fun|to|watch|.\nFor|Caine|Lovers|only|.\nA|shambles|of|a|movie|--|visually|unattractive|,|unbearably|loud|and|utterly|silly|...|its|hilarity|is|completely|unintentional|.\nDe|Niro|may|enjoy|the|same|free|ride|from|critics|afforded|to|Clint|Eastwood|in|the|lazy|Bloodwork|.\nBut|like|Bruce|Springsteen|'s|gone-to-pot|Asbury|Park|,|New|Jersey|,|this|sad-sack|waste|of|a|movie|is|a|City|of|ruins|.\nNo|,|it|'s|not|nearly|as|good|as|any|of|its|influences|.\nA|reasonably|efficient|mechanism|,|but|it|offers|few|surprises|and|finds|its|stars|slumming|in|territory|they|should|have|avoided|.\nThe|rest|of|the|plot|is|impossible|to|explain|without|blowing|whatever|tension|there|is|,|although|it|'s|more|comedy|than|suspense|De|Palma|creates|.\nHuman|Nature|talks|the|talk|,|but|it|fails|to|walk|the|silly|walk|that|distinguishes|the|merely|quirky|from|the|surreal|.\nCity|by|the|Sea|is|the|cinematic|equivalent|of|defensive|driving|:|It|'s|careful|,|conscientious|and|makes|no|major|mistakes|.\nBut|what|saves|lives|on|the|freeway|does|not|necessarily|make|for|persuasive|viewing|.\nThe|Marquis|de|Sade|could|n't|have|been|as|dull|a|person|as|this|film|makes|him|out|to|be|.\nWhat|could|have|been|a|neat|little|story|about|believing|in|yourself|is|swamped|by|heavy-handed|melodrama|.\nThe|cast|is|uniformly|excellent|...|but|the|film|itself|is|merely|mildly|charming|.\nDrives|for|the|same|kind|of|bittersweet|,|conciliatory|tone|that|Three|Seasons|achieved|but|loses|its|way|in|rhetorical|excess|and|blatant|sentimentality|.\nA|bigger|holiday|downer|than|your|end-of-year|401|(|k|)|statement|.\nThe|whole|thing|plays|out|with|the|drowsy|heaviness|of|synchronized|swimmer|wearing|a|wool|wetsuit|.\nFairly|successful|at|faking|some|pretty|cool|stunts|but|a|complete|failure|at|trying|to|create|some|pretty|cool|characters|.\nAnd|forget|about|any|attempt|at|a|plot|!\nIt|will|probably|prove|interesting|to|Ram|Dass|fans|,|but|to|others|it|may|feel|like|a|parody|of|the|mellow|,|peace-and-love|side|of|the|'60s|counterculture|.\nTake|away|all|the|cliches|and|the|carbon|copy|scenes|from|every|drug|movie|we|'ve|seen|and|all|you|have|left|are|John|Leguizamo|'s|cool|jackets|.\nIt|'s|so|full|of|wrong|choices|that|all|you|can|do|is|shake|your|head|in|disbelief|--|and|worry|about|what|classic|Oliver|Parker|intends|to|mangle|next|time|.\nShowtime|is|closer|to|Slowtime|.\nIt|may|be|an|easy|swipe|to|take|,|but|this|Barbershop|just|does|n't|make|the|cut|.\nThe|Weight|of|Water|uses|water|as|a|metaphor|for|subconscious|desire|,|but|this|leaky|script|barely|stays|afloat|.\n`|How|many|more|voyages|can|this|limping|but|dearly-loved|franchise|survive|?|'\nDespite|a|blue-chip|cast|and|a|provocative|title|,|writer-director|Peter|Mattei|'s|first|feature|microwaves|dull|leftover|romantic|motifs|basted|in|faux-contemporary|gravy|.\nFans|of|the|TV|series|will|be|disappointed|,|and|everyone|else|will|be|slightly|bored|.\nThe|only|element|of|suspense|is|whether|the|movie|will|change|titles|or|distributors|again|before|the|closing|credits|roll|.\nBarely|goes|beyond|comic|book|status|.\nIt|'s|disappointing|when|filmmakers|throw|a|few|big-name|actors|and|cameos|at|a|hokey|script|.\nI|Spy|is|an|embarrassment|,|a|monotonous|,|disjointed|jumble|of|borrowed|plot|points|and|situations|.\nIt|'s|as|flat|as|an|open|can|of|pop|left|sitting|in|the|sun|.\nAn|eccentric|little|comic\\/thriller|deeply|in|love|with|its|own|quirky|personality|.\nAfraid|to|pitch|into|farce|,|yet|only|half-hearted|in|its|spy|mechanics|,|All|the|Queen|'s|Men|is|finally|just|one|long|drag|.\nMaybe|it|'s|the|star|power|of|the|cast|or|the|redundant|messages|,|but|something|aboul|``|Full|Frontal|''|seems|,|well|,|contrived|.\n(|Morgan|)|,|Judd|and|Franklin|ca|n't|save|the|script|,|rooted|in|a|novel|by|Joseph|Finder|,|from|some|opportunism|.\nPassably|entertaining|but|also|mechanical|and|joyless|.\nSafe|Conduct|,|however|ambitious|and|well-intentioned|,|fails|to|hit|the|entertainment|bull|'s|-|eye|.\nMy|response|to|the|film|is|best|described|as|lukewarm|.\nMaybe|I|found|the|proceedings|a|little|bit|too|conventional|.\nToo|timid|to|bring|a|sense|of|closure|to|an|ugly|chapter|of|the|twentieth|century|.\nIt|'s|push-the-limits|teen|comedy|,|the|type|written|by|people|who|ca|n't|come|up|with|legitimate|funny|,|and|it|'s|used|so|extensively|that|good|bits|are|hopelessly|overshadowed|.\nIt|'s|too|long|,|too|repetitive|,|and|takes|way|too|many|years|to|resolve|to|be|a|total|winner|.\nA|sudsy|cautionary|tale|.\nA|movie|that|tries|to|fuse|the|two|`|woods|'|but|winds|up|a|Bolly-Holly|masala|mess|.\nMr.|Wedge|and|Mr.|Saldanha|handle|the|mix|of|verbal|jokes|and|slapstick|well|.\nTheir|film|falters|,|however|,|in|its|adherence|to|the|Disney|philosophy|of|required|poignancy|,|a|salute|that|I|'d|hoped|the|movie|would|avoid|.\nLeaves|you|with|a|knot|in|your|stomach|,|its|power|is|undercut|by|its|own|head-banging|obviousness|.\nWatching|it|is|rather|like|an|overlong|visit|from|a|large|group|of|your|relatives|.\nAs|your|relatives|swap|one|mundane|story|after|another|,|you|begin|to|wonder|if|they|are|ever|going|to|depart|.\nUnfortunately|,|as|a|writer|,|Mr.|Montias|is|n't|nearly|as|good|to|his|crew|as|he|is|as|a|director|or|actor|.\nOn|the|right|track|to|something|that|'s|creepy|and|effective|...|It|'s|just|going|to|take|more|than|a|man|in|a|Bullwinkle|costume|to|get|there|.\nThe|only|thing|that|could|possibly|make|them|less|interesting|than|they|already|are|is|for|them|to|get|full|montied|into|a|scrappy|,|jovial|team|.\nOne|of|those|movies|where|you|walk|out|of|the|theater|not|feeling|cheated|exactly|,|but|feeling|pandered|to|,|which|,|in|the|end|,|might|be|all|the|more|infuriating|.\n...|this|movie|has|a|glossy|coat|of|action|movie|excess|while|remaining|heartless|at|its|core|.\nMurder|By|Numbers|is|like|a|couple|of|mediocre|TV-movie|-|of-the-week|films|clumsily|stuck|together|.\nThe|film|is|surprisingly|well-directed|by|Brett|Ratner|,|who|keeps|things|moving|well|--|at|least|until|the|problematic|third|act|.\nWarmed-over|Tarantino|by|way|of|wannabe|Elmore|Leonard|.\n(|Sen|'s|)|soap|opera-ish|approach|undermines|his|good|intentions|.\nShowtime|is|one|of|the|hapless|victims|of|the|arrogant|``|if|we|put|together|a|wry|white|man|and|a|chatty|black|man|and|give|them|guns|,|the|movie|will|be|funny|''|syndrome|.\nSushi|for|the|connoisseurs|of|the|macabre|.\nDo|n't|waste|your|money|.\nThough|certainly|original|in|form|,|Altar|Boys|requires|a|taste|for|Swamp|Thing-type|animation|,|doubled|with|a|deafening|score|.\nThere|are|n't|many|laughs|in|this|interesting|study|of|the|cultural|mores|of|Georgian|Jews|in|Tel|Aviv|.\nThere|'s|not|enough|to|sustain|the|comedy|.\nLike|those|to|Rome|,|all|roads|in|The|Banger|Sisters|inevitably|lead|to|a|joke|about|Hawn|'s|breasts|,|which|constantly|threaten|to|upstage|the|woman|sporting|them|.\nWe|may|get|the|full|visceral|impact|of|a|ruthless|army|on|the|warpath|but|no|sense|of|the|devilish|complexity|of|the|Balkans|conflict|.\nYou|'re|better|off|staying|home|and|watching|The|X-Files|.\nChaotic|,|self-indulgent|and|remarkably|ugly|to|look|at|,|it|'s|...|like|a|series|of|pretentiously|awful|student|films|strung|together|into|one|feature-length|horror|.\nBears|resemblance|to|,|and|shares|the|weaknesses|of|,|too|many|recent|action-fantasy|extravaganzas|in|which|special|effects|overpower|cogent|story-telling|and|visual|clarity|during|the|big|action|sequences|.\nThis|is|the|type|of|movie|best|enjoyed|by|frat|boys|and|college|kids|while|sucking|on|the|bong|and|downing|one|alcoholic|beverage|after|another|.\nFriday|After|Next|has|the|same|problem|that|Next|Friday|did|--|it|'s|called|Where|'s|Chris|Tucker|When|You|Need|Him|?\nThis|film|is|full|of|rabbits|.\nBrimful|.\nBut|like|most|rabbits|,|it|seems|to|lack|substance|.\nI|weep|for|the|future|when|a|good|portion|of|the|respected|critical|community|in|this|country|consider|Blue|Crush|to|be|an|intelligent|film|about|young|women|.\nI|kept|wishing|I|was|watching|a|documentary|about|the|wartime|Navajos|and|what|they|accomplished|instead|of|all|this|specious|Hollywood|hoo-ha|.\nNo|number|of|fantastic|sets|,|extras|,|costumes|and|spectacular|locales|can|disguise|the|emptiness|at|the|center|of|the|story|.\nA|movie|far|more|cynical|and|lazy|than|anything|a|fictitious|Charlie|Kaufman|might|object|to|.\nCould|The|Country|Bears|really|be|as|bad|as|its|trailers|?\nIn|a|word|--|yes|.\nIf|High|Crimes|were|any|more|generic|it|would|have|a|universal|product|code|instead|of|a|title|.\nReggio|falls|victim|to|relying|on|the|very|digital|technology|that|he|fervently|scorns|,|creating|a|meandering|,|inarticulate|and|ultimately|disappointing|film|.\nThe|movie|makes|absolutely|no|sense|.\nIts|underlying|mythology|is|a|hodgepodge|of|inconsistencies|that|pose|the|question|:|Since|when|did|dumb|entertainment|have|to|be|this|dumb|?\nThe|problem|with|this|film|is|that|it|'s|forced|to|make|its|characters|idiots|in|order|to|advance|the|plot|.\nHad|anyone|here|done|anything|remotely|intelligent|,|we|all|could|have|stopped|watching|long|ago|.\nDespite|the|authenticity|of|the|trappings|,|the|film|is|overblown|in|its|plotting|,|hackneyed|in|its|dialogue|and|anachronistic|in|its|style|.\nMurder|and|mayhem|of|this|sort|quickly|becomes|monotonous|.\nThe|journey|toward|redemption|feels|more|like|a|cinematic|experiment|than|a|full-blown|movie|.\nThat|Zhang|would|make|such|a|strainingly|cute|film|--|with|a|blind|orphan|at|its|center|,|no|less|--|indicates|where|his|ambitions|have|wandered|.\nThe|Gantzes|'|interviews|tend|to|let|the|guys|off|the|hook|.\nThe|streets|,|shot|by|cinematographer|Michael|Ballhaus|,|may|be|as|authentic|as|they|are|mean|,|but|it|is|nearly|impossible|to|care|about|what|happens|on|them|.\nThis|is|a|good|movie|in|spurts|,|but|when|it|does|n't|work|,|it|'s|at|important|times|.\nParker|probably|thinks|he|'s|shaking|up|a|classic|the|way|Kenneth|Branagh|and|Baz|Luhrmann|have|,|but|this|half-hearted|messing-about|just|makes|us|miss|Wilde|'s|still-contemporary|play|.\nFlotsam|in|the|sea|of|moviemaking|,|not|big|enough|for|us|to|worry|about|it|causing|significant|harm|and|not|smelly|enough|to|bother|despising|.\nA|TV|episode|inflated|past|its|natural|length|.\nInvolving|at|times|,|but|lapses|quite|casually|into|the|absurd|.\nAll|these|developments|and|challenges|facing|Santa|weigh|down|the|plot|so|heavily|that|they|drain|all|the|film|of|its|energy|and|needlessly|strain|credibility|.\nThere|are|weird|resonances|between|actor|and|role|here|,|and|they|'re|not|exactly|flattering|.\nThe|unceasing|sadism|is|so|graphically|excessive|,|the|director|just|ends|up|exposing|his|own|obsession|.\nThe|story|...|is|moldy|and|obvious|.\nIt|'s|drained|of|life|in|an|attempt|to|be|sober|and|educational|,|and|yet|it|'s|so|devoid|of|realism|that|its|lack|of|whistles|and|bells|just|makes|it|obnoxious|and|stiff|.\nSuffocated|at|conception|by|its|Munchausen-by-proxy|mum|.\nPunish|the|vehicle|to|adore|the|star|.\nEven|if|Britney|Spears|is|really|cute|,|her|movie|is|really|bad|.\nBig|Fat|Liar|is|just|futile|silliness|looking|to|tap|into|the|kiddie|sensibilities|.\nUsually|when|I|get|this|much|syrup|,|I|like|pancakes|to|go|with|it|.\nAll|the|necessary|exposition|prevents|the|picture|from|rising|above|your|generic|sand|'n'|sandal|adventure|.\nGlib|,|satirical|documentary|that|fudges|facts|,|makes|facile|points|and|engages|in|the|cinematic|equivalent|of|tabloid|journalism|.\nGangs|of|New|York|is|an|unapologetic|mess|,|whose|only|saving|grace|is|that|it|ends|by|blowing|just|about|everything|up|.\nAn|overblown|clunker|full|of|bad|jokes|,|howling|cliches|and|by-the-numbers|action|sequences|.\nWithout|a|strong|script|and|energetic|acting|,|Dogma|films|can|produce|the|same|sleep-inducing|effects|as|watching|your|neighbor|'s|home|videos|.\nA|mild|,|reluctant|,|thumbs|down|.\nStrong|setup|and|ambitious|goals|fade|as|the|film|descends|into|unsophisticated|scare|tactics|and|B-film|thuggery|.\nSchindler|'s|List|it|ai|n't|.\nA|cinematic|sleeping|pill|of|impressive|potency|.\nIt|'s|an|awfully|derivative|story|.\nThe|movie|barely|makes|sense|,|with|its|unbelievable|naïveté|and|arbitrary|flashbacks|.\nIt|'s|an|earnest|debut|full|of|heartfelt|performances|,|but|is|ultimately|let|down|by|a|story|that|is|all|too|predictable|.\nAbout|as|cutting-edge|as|Pet|Rock|:|The|Movie|.\nWith|generic|sets|and|B-grade|special|effects|,|Jason|is|about|as|convincing|on|the|sci-fi|front|as|TV|'s|defunct|Cleopatra|2525|.\nNot|sweet|enough|to|liven|up|its|predictable|story|and|will|leave|even|fans|of|hip-hop|sorely|disappointed|.\nWinds|up|feeling|like|lots|of|other|quirky|movies|that|try|to|score|hipness|points|with|young|adults|.\nOft-described|as|the|antidote|to|American|Pie-type|sex|comedies|,|it|actually|has|a|bundle|in|common|with|them|,|as|the|film|diffuses|every|opportunity|for|a|breakthrough\nThe|pacing|is|glacial|,|the|screenplay|is|stiff|as|a|board|,|and|things|heat|up|only|in|the|movie|'s|final|scenes|.\nThe|premise|is|overshadowed|by|the|uberviolence|of|the|Clericks|as|this|becomes|just|another|kung-fu|sci-fi|movie|with|silly|action|sequences|.\nWith|its|hints|of|a|greater|intelligence|lurking|somewhere|,|The|Ring|makes|its|stupidity|more|than|obvious|.\nIt|'s|painful|.\nPumpkin|struts|about|with|``|courage|''|pinned|to|its|huckster|lapel|while|a|yellow|streak|a|mile|wide|decorates|its|back|.\nAn|uneven|film|dealing|with|too|many|problems|to|be|taken|seriously|.\nSheridan|...|smoothes|over|sources|of|conflict|that|could|have|lent|the|film|a|bit|more|depth|.\nAn|atonal|estrogen|opera|that|demonizes|feminism|while|gifting|the|most|sympathetic|male|of|the|piece|with|a|nice|vomit|bath|at|his|wedding|.\nHalf|of|it|is|composed|of|snappy|patter|and|pseudo-sophisticated|cultural|observations|,|while|the|remainder|...|would|be|more|at|home|on|a|daytime|television|serial|.\nWriter\\/director|John|McKay|ignites|some|charming|chemistry|between|Kate|and|Jed|but|,|when|he|veers|into|sodden|melodrama|,|punctuated|by|violins|,|it|'s|disastrous|and|Kate|'s|jealous|female|friends|become|downright|despicable|.\n(|Newton|)|wanders|through|CHARLIE|completely|unaware|she|needs|to|show|some|presence|and|star|quality|.\nUnfortunately|,|the|picture|failed|to|capture|me|.\nI|found|it|slow|,|drab|,|and|bordering|on|melodramatic|.\nA|lousy|movie|that|'s|not|merely|unwatchable|,|but|also|unlistenable|.\nThe|best|way|to|hope|for|any|chance|of|enjoying|this|film|is|by|lowering|your|expectations|.\nThen|lower|them|a|bit|more|.\nWhen|not|obscured|by|the|booming|bass-heavy|soundtrack|,|the|conversation|presents|the|kind|of|linguistic|fumbling|not|heard|since|Macy|Gray|'s|game|of|Chinese|whispers|with|Mr|Bean|.\nCliches|are|as|thick|as|the|cigarette|smoke|.\nA|woozy|,|roisterous|,|exhausting|mess|,|and|the|off-beat|casting|of|its|two|leads|turns|out|to|be|as|ill-starred|as|you|might|expect|.\n`|Abandon|all|hope|,|ye|who|enter|here|'|...|you|should|definitely|let|Dante|'s|gloomy|words|be|your|guide|.\nWhat|begins|as|a|seemingly|brainless|,|bubbly|romantic|comedy|becomes|a|cliche-drenched|melodrama|by|mid-film|and|,|by|film|'s|end|,|a|feminist|action|fantasy|.\nA|grim|,|flat|and|boring|werewolf|movie|that|refuses|to|develop|an|energy|level|.\nBirot|'s|directorial|debut|(|she|co-wrote|the|script|with|Christophe|Honoré|)|is|n't|so|much|bad|as|it|is|bland|.\nWatching|the|film|is|like|reading|a|Times|Portrait|of|Grief|that|keeps|shifting|focus|to|the|journalist|who|wrote|it|.\nEnough|similarities|to|Gymkata|and|Howie|Long|'s|Firestorm|that|my|fingernails|instinctively|crawled|towards|my|long-suffering|eyeballs|.\nSucceeds|in|providing|a|disquiet|world|the|long-dreaded|completion|of|the|Police|Academy|series|.\nChristians|sensitive|to|a|reductionist|view|of|their|Lord|as|a|luv-spreading|Dr.|Feelgood|or|omnipotent|slacker|will|feel|vastly|more|affronted|than|secularists|,|who|might|even|praise|God|for|delivering|such|an|instant|camp|classic|.\nIf|this|dud|had|been|made|in|the|'70s|,|it|would|have|been|called|The|Hills|Have|Antlers|and|played|for|about|three|weeks|in|drive-ins|.\nA|frantic|search|for|laughs|,|with|a|hit-to-miss|ratio|that|does|n't|exactly|favour|the|audience|.\nLike|a|documentary|version|of|Fight|Club|,|shorn|of|social|insight|,|intellectual|pretension|and|cinematic|interest|.\n``|An|entire|film|about|researchers|quietly|reading|dusty|old|letters|.|''\nPryor|Lite|,|with|half|the|demons|,|half|the|daring|,|much|less|talent|,|many|fewer|laughs|.\nWhat|'s|at|stake|in|this|film|is|nothing|more|than|an|obsolete|,|if|irritating|,|notion|of|class|.\nThe|stories|here|suffer|from|the|chosen|format|.\nWhile|the|mystery|surrounding|the|nature|of|the|boat|'s|malediction|remains|intriguing|enough|to|sustain|mild|interest|,|the|picture|refuses|to|offer|much|accompanying|sustenance|in|the|way|of|characterization|,|humor|or|plain|old|popcorn|fun|.\nJust|how|extreme|are|these|ops|?\nI|regret|to|report|that|these|ops|are|just|not|extreme|enough|.\nThe|actors|are|forced|to|grapple|with|hazy|motivations|that|never|come|into|focus|.\nJohn|Leguizamo|may|be|a|dramatic|actor|--|just|not|in|this|movie|.\nThe|sequel|has|turned|completely|and|irrevocably|bizarre|to|the|point|of|utter|nonsense|.\nHardly|makes|the|kind|of|points|Egoyan|wanted|to|make|,|nor|does|it|exist|as|the|kind|of|monument|he|wanted|to|build|,|to|victims|whose|voices|have|never|gained|the|ears|of|the|world|.\nBuild|some|robots|,|haul|'em|to|the|theatre|with|you|for|the|late|show|,|and|put|on|your|own|Mystery|Science|Theatre|3000|tribute|to|what|is|almost|certainly|going|to|go|down|as|the|worst|--|and|only|--|killer|website|movie|of|this|or|any|other|year|.\nRainy|days|and|movies|about|the|disintegration|of|families|always|get|me|down|.\n...|has|about|3\\/4th|the|fun|of|its|spry|2001|predecessor|--|but|it|'s|a|rushed|,|slapdash|,|sequel-for-the-sake|-|of-a-sequel|with|less|than|half|the|plot|and|ingenuity|.\nThe|Master|Of|Disaster|-|it|'s|a|piece|of|dreck|disguised|as|comedy|.\nThe|film|has|a|few|cute|ideas|and|several|modest|chuckles|but|it|is|n't|exactly|kiddie-friendly|...|Alas|,|Santa|is|more|ho-hum|than|ho-ho-ho|and|the|Snowman|(|who|never|gets|to|play|that|flute|)|has|all|the|charm|of|a|meltdown|.\nThe|stupidest|,|most|insulting|movie|of|2002|'s|first|quarter|.\nIt|'s|so|underwritten|that|you|ca|n't|figure|out|just|where|the|other|characters|,|including|Ana|'s|father|and|grandfather|,|come|down|on|the|issue|of|Ana|'s|future|.\nA|film|so|tedious|that|it|is|impossible|to|care|whether|that|boast|is|true|or|not|.\nNone|of|this|violates|the|letter|of|Behan|'s|book|,|but|missing|is|its|spirit|,|its|ribald|,|full-throated|humor|.\nBad|Company|leaves|a|bad|taste|,|not|only|because|of|its|bad-luck|timing|,|but|also|the|staleness|of|its|script|.\nEven|if|it|ultimately|disappoints|,|the|picture|does|have|about|a|matinee|admission|'s|worth|of|funny|to|keep|it|afloat|.\nFails|to|bring|as|much|to|the|table|.\nA|film|made|with|as|little|wit|,|interest|,|and|professionalism|as|artistically|possible|for|a|slummy|Hollywood|caper|flick|.\nDisturbingly|superficial|in|its|approach|to|the|material|.\nIf|you|'re|not|the|target|demographic|...|this|movie|is|one|long|chick-flick|slog|.\nI|hate|this|movie\nIt|'s|tough|to|tell|which|is|in|more|abundant|supply|in|this|woefully|hackneyed|movie|,|directed|by|Scott|Kalvert|,|about|street|gangs|and|turf|wars|in|1958|Brooklyn|--|stale|cliches|,|gratuitous|violence|,|or|empty|machismo|.\nGooding|and|Coburn|are|both|Oscar|winners|,|a|fact|which|,|as|you|watch|them|clumsily|mugging|their|way|through|Snow|Dogs|,|seems|inconceivable|.\nAt|every|opportunity|to|do|something|clever|,|the|film|goes|right|over|the|edge|and|kills|every|sense|of|believability|...|all|you|have|left|is|a|no-surprise|series|of|explosions|and|violence|while|Banderas|looks|like|he|'s|not|trying|to|laugh|at|how|bad|it\n...|pitiful|,|slapdash|disaster|.\nA|DOA|dud|from|frame|one|.\nJaw-droppingly|superficial|,|straining|to|get|by|on|humor|that|is|not|even|as|daring|as|John|Ritter|'s|glory|days|on|Three|'s|Company|.\nThere|are|plenty|of|scenes|in|Frida|that|do|work|,|but|rarely|do|they|involve|the|title|character|herself|.\nAlthough|God|Is|Great|addresses|interesting|matters|of|identity|and|heritage|,|it|'s|hard|to|shake|the|feeling|that|it|was|intended|to|be|a|different|kind|of|film|.\nThe|dark|and|bittersweet|twist|feels|strange|as|things|turn|nasty|and|tragic|during|the|final|third|of|the|film|.\nFirst-timer|John|McKay|is|never|able|to|pull|it|back|on|course|.\nDistances|you|by|throwing|out|so|many|red|herrings|,|so|many|false|scares|,|that|the|genuine|ones|barely|register|.\nGodard|uses|his|characters|--|if|that|'s|not|too|glorified|a|term|--|as|art|things|,|mouthpieces|,|visual|motifs|,|blanks|.\nThe|movie|generates|plot|points|with|a|degree|of|randomness|usually|achieved|only|by|lottery|drawing|.\nA|predictable|,|manipulative|stinker|.\nThe|story|passes|time|until|it|'s|time|for|an|absurd|finale|of|twisted|metal|,|fireballs|and|revenge|.\nEastwood|winces|,|clutches|his|chest|and|gasps|for|breath|.\nIt|'s|a|spectacular|performance|-|ahem|,|we|hope|it|'s|only|acting|.\nThe|movie|suffers|from|two|fatal|ailments|--|a|dearth|of|vitality|and|a|story|that|'s|shapeless|and|uninflected|.\nIt|'s|just|weirdness|for|the|sake|of|weirdness|,|and|where|Human|Nature|should|be|ingratiating|,|it|'s|just|grating|.\nAn|ambitiously|naturalistic|,|albeit|half-baked|,|drama|about|an|abused|,|inner-city|autistic|teen|.\nonce|she|lets|her|love|depraved|leads|meet|,|(|Denis|'|)|story|becomes|a|hopeless|,|unsatisfying|muddle\nThe|dose|is|strong|and|funny|,|for|the|first|15|minutes|anyway|;|after|that|,|the|potency|wanes|dramatically|.\nThe|people|in|ABC|Africa|are|treated|as|docile|,|mostly|wordless|ethnographic|extras|.\nWhat|'s|really|sad|is|to|see|two|Academy|Award|winning|actresses|(|and|one|Academy|Award|winning|actor|)|succumb|to|appearing|in|this|junk|that|'s|TV|sitcom|material|at|best|.\nNo|doubt|the|star|and|everyone|else|involved|had|their|hearts|in|the|right|place|.\nWhere|their|heads|were|is|anyone|'s|guess|.\nCall|me|a|cynic|,|but|there|'s|something|awfully|deadly|about|any|movie|with|a|life-affirming|message|.\nA|gratingly|unfunny|groaner|littered|with|zero-dimensional|,|unlikable|characters|and|hackneyed|,|threadbare|comic|setups|.\nGot|some|good|,|organic|character|work|,|lots|of|obvious|political|insights|and|little|room|for|engaging|,|imaginative|filmmaking|in|its|nearly|2 1\\/2|-|hour|,|dissipated|length|.\nA|painfully|slow|cliche-ridden|film|filled|with|more|holes|than|Clyde|Barrow|'s|car|.\nLike|leafing|through|an|album|of|photos|accompanied|by|the|sketchiest|of|captions|.\nI|guess|it|just|goes|to|show|that|if|you|give|a|filmmaker|an|unlimited|amount|of|phony|blood|,|nothing|good|can|happen|.\nGaghan|captures|the|half-lit|,|sometimes|creepy|intimacy|of|college|dorm|rooms|,|a|subtlety|that|makes|the|silly|,|over-the-top|coda|especially|disappointing|.\nFeels|less|like|a|change|in|(|Herzog|'s|)|personal|policy|than|a|half-hearted|fluke|.\nOne|of|the|most|unpleasant|things|the|studio|has|ever|produced|.\nWill|anyone|who|is|n't|a|Fangoria|subscriber|be|excited|that|it|has|n't|gone|straight|to|video|?\nA|selection|of|scenes|in|search|of|a|movie|.\n(|Janey|)|forgets|about|her|other|obligations|,|leading|to|a|tragedy|which|is|somehow|guessable|from|the|first|few|minutes|,|maybe|because|it|echoes|the|by|now|intolerable|morbidity|of|so|many|recent|movies|.\nWill|undoubtedly|play|well|in|European|markets|,|where|Mr.|Besson|is|a|brand|name|,|and|in|Asia|,|where|Ms.|Shu|is|an|institution|,|but|American|audiences|will|probably|find|it|familiar|and|insufficiently|cathartic|.\nTrue|to|its|animatronic|roots|:|...|as|stiff|,|ponderous|and|charmless|as|a|mechanical|apparatus|...|`|The|Country|Bears|'|should|never|have|been|brought|out|of|hibernation|.\n(|Evans|is|)|a|fascinating|character|,|and|deserves|a|better|vehicle|than|this|facetious|smirk|of|a|movie|.\nThe|script|'s|judgment|and|sense|of|weight|is|way|,|way|off|.\nYou|come|away|wishing|,|though|,|that|the|movie|spent|a|lot|less|time|trying|to|make|a|credible|case|for|reports|from|the|afterlife|and|a|lot|more|time|on|the|romantic|urgency|that|'s|at|the|center|of|the|story|.\nEvelyn|may|be|based|on|a|true|and|historically|significant|story|,|but|the|filmmakers|have|made|every|effort|to|disguise|it|as|an|unimaginative|screenwriter|'s|invention|.\nA|derivative|collection|of|horror|and|sci-fi|cliches|.\nLoosely|speaking|,|we|'re|in|All|of|Me|territory|again|,|and|,|strictly|speaking|,|Schneider|is|no|Steve|Martin|.\nAs|aimless|as|an|old|pickup|skidding|completely|out|of|control|on|a|long|patch|of|black|ice|,|the|movie|makes|two|hours|feel|like|four|.\nLimps|along|on|a|squirm-inducing|fish-out-of-water|formula|that|goes|nowhere|and|goes|there|very|,|very|slowly|.\nJust|the|sort|of|lazy|tearjerker|that|gives|movies|about|ordinary|folk|a|bad|name|.\nThe|redeeming|feature|of|Chan|'s|films|has|always|been|the|action|,|but|the|stunts|in|The|Tuxedo|seem|tired|and|,|what|'s|worse|,|routine|.\nWhile|The|Importance|of|Being|Earnest|offers|opportunities|for|occasional|smiles|and|chuckles|,|it|does|n't|give|us|a|reason|to|be|in|the|theater|beyond|Wilde|'s|wit|and|the|actors|'|performances|.\nHas|all|the|scenic|appeal|of|a|cesspool|.\nA|rambling|ensemble|piece|with|loosely|connected|characters|and|plots|that|never|quite|gel|.\nA|Lifetime|movie|about|men|.\nThe|Balkans|provide|the|obstacle|course|for|the|love|of|a|good|woman|.\nIt|'s|hard|to|say|who|might|enjoy|this|,|are|there|Tolstoy|groupies|out|there|?\nIt|'s|dark|and|tragic|,|and|lets|the|business|of|the|greedy|talent|agents|get|in|the|way|of|saying|something|meaningful|about|facing|death\nThis|is|a|movie|that|starts|out|like|Heathers|,|then|becomes|Bring|it|On|,|then|becomes|unwatchable|.\nThe|screenplay|flounders|under|the|weight|of|too|many|story|lines|.\nI|think|it|was|Plato|who|said|,|'|I|think|,|therefore|I|know|better|than|to|rush|to|the|theatre|for|this|one|.|'\nIf|Damon|and|Affleck|attempt|another|Project|Greenlight|,|next|time|out|they|might|try|paying|less|attention|to|the|miniseries|and|more|attention|to|the|film|it|is|about|.\nThis|is|rote|drivel|aimed|at|Mom|and|Dad|'s|wallet|.\nContrived|,|maudlin|and|cliche-ridden|...|if|this|sappy|script|was|the|best|the|contest|received|,|those|rejected|must|have|been|astronomically|bad|.\nI|hate|the|feeling|of|having|been|slimed|in|the|name|of|High|Art|.\nThis|is|more|a|case|of|`|Sacre|bleu|!|'\nthan|`|Magnifique|'|.\nThe|kids|in|the|audience|at|the|preview|screening|seemed|bored|,|cheering|the|pratfalls|but|little|else|;|their|parents|,|wise|folks|that|they|are|,|read|books|.\nWhether|Jason|X|is|this|bad|on|purpose|is|never|clear|.\nBut|one|thing|'s|for|sure|:|It|never|comes|close|to|being|either|funny|or|scary|.\nYet|another|weepy|Southern|bore-athon|.\nI|like|all|four|of|the|lead|actors|a|lot|and|they|manage|to|squeeze|a|few|laughs|out|of|the|material|,|but|they|'re|treading|water|at|best|in|this|forgettable|effort|.\nPerhaps|the|most|annoying|thing|about|Who|Is|Cletis|Tout|?\nis|that|it|'s|a|crime|movie|made|by|someone|who|obviously|knows|nothing|about|crime|.\nExcept|as|an|acting|exercise|or|an|exceptionally|dark|joke|,|you|wonder|what|anyone|saw|in|this|film|that|allowed|it|to|get|made|.\nThis|insufferable|movie|is|meant|to|make|you|think|about|existential|suffering|.\nInstead|,|it|'ll|only|put|you|to|sleep|.\nWho|is|this|movie|for|?\nNot|kids|,|who|do|n't|need|the|lesson|in|repugnance|.\nIt|'s|also|not|smart|or|barbed|enough|for|older|viewers|--|not|everyone|thinks|poo-poo|jokes|are|`|edgy|.|'\nA|sleep-inducingly|slow-paced|crime|drama|with|clumsy|dialogue|,|heavy-handed|phoney-feeling|sentiment|,|and|an|overly-familiar|set|of|plot|devices|.\nIt|'s|so|tedious|that|it|makes|you|forgive|every|fake|,|dishonest|,|entertaining|and|,|ultimately|,|more|perceptive|moment|in|Bridget|Jones|'s|Diary|.\nAlmost|as|offensive|as|``|Freddy|Got|Fingered|.|''\nThe|gifted|Crudup|has|the|perfect|face|to|play|a|handsome|blank|yearning|to|find|himself|,|and|his|cipherlike|personality|and|bad|behavior|would|play|fine|if|the|movie|knew|what|to|do|with|him|.\nIt|is|depressing|,|ruthlessly|pained|and|depraved|,|the|movie|equivalent|of|staring|into|an|open|wound|.\nPonderous|,|plodding|soap|opera|disguised|as|a|feature|film|.\nCold|,|pretentious|,|thoroughly|dislikable|study|in|sociopathy|.\nFor|the|future|,|one|hopes|Mr.|Plympton|will|find|room|for|one|more|member|of|his|little|band|,|a|professional|screenwriter|.\nA|cheap|scam|put|together|by|some|cynical|creeps|at|Revolution|Studios|and|Imagine|Entertainment|to|make|the|suckers|out|there|surrender|$|9|and|93|minutes|of|unrecoverable|life|.\nReign|of|Fire|never|comes|close|to|recovering|from|its|demented|premise|,|but|it|does|sustain|an|enjoyable|level|of|ridiculousness|.\nHuman|Nature|is|a|goofball|movie|,|in|the|way|that|Malkovich|was|,|but|it|tries|too|hard|.\nOriginality|is|sorely|lacking|.\nThe|plot|'s|clearly|mythic|structure|may|owe|more|to|Disney|'s|strong|sense|of|formula|than|to|the|original|story|.\nBut|while|the|highly|predictable|narrative|falls|short|,|Treasure|Planet|is|truly|gorgeous|to|behold|.\nThough|there|are|entertaining|and|audacious|moments|,|the|movie|'s|wildly|careening|tone|and|an|extremely|flat|lead|performance|do|little|to|salvage|this|filmmaker|'s|flailing|reputation|.\nRam|Dass|Fierce|Grace|moulds|itself|as|an|example|to|up-and-coming|documentarians|,|of|the|overlooked|pitfalls|of|such|an|endeavour|.\nLucky|Break|is|perfectly|inoffensive|and|harmless|,|but|it|'s|also|drab|and|inert|.\nFor|a|story|set|at|sea|,|Ghost|Ship|is|pretty|landbound|,|with|its|leaden|acting|,|dull|exposition|and|telegraphed|`|surprises|.|'\nThere|might|be|some|sort|of|credible|gender-provoking|philosophy|submerged|here|,|but|who|the|hell|cares|?\nNothing|more|than|a|stifling|morality|tale|dressed|up|in|peekaboo|clothing|.\nI|like|my|Christmas|movies|with|more|elves|and|snow|and|less|pimps|and|ho|'s|.\nIt|all|seemed|wasted|like|DeNiro|'s|once|promising|career|and|the|once|grand|Long|Beach|boardwalk|.\n(|I|)|t|'s|certainly|laudable|that|the|movie|deals|with|hot-button|issues|in|a|comedic|context|,|but|Barbershop|is|n't|as|funny|as|it|should|be|.\nUnfortunately|,|a|cast|of|competent|performers|from|movies|,|television|and|the|theater|are|cast|adrift|in|various|New|York|City|locations|with|no|unifying|rhythm|or|visual|style|.\nJust|entertaining|enough|not|to|hate|,|too|mediocre|to|love|.\n`|Sophisticated|'|viewers|who|refuse|to|admit|that|they|do|n't|like|it|will|likely|call|it|`|challenging|'|to|their|fellow|sophisticates|.\nEquilibrium|the|movie|,|as|opposed|to|the|manifesto|,|is|really|,|really|stupid|.\nExcruciatingly|unfunny|and|pitifully|unromantic|.\nThe|film|'s|thoroughly|recycled|plot|and|tiresome|jokes|...|drag|the|movie|down|.\nIt|does|n't|offer|audiences|any|way|of|gripping|what|its|point|is|,|or|even|its|attitude|toward|its|subject|.\nThis|kiddie-oriented|stinker|is|so|bad|that|I|even|caught|the|gum|stuck|under|my|seat|trying|to|sneak|out|of|the|theater\nThough|Impostor|deviously|adopts|the|guise|of|a|modern|motion|picture|,|it|too|is|a|bomb|.\nCox|offers|plenty|of|glimpses|at|existing|photos|,|but|there|are|no|movies|of|Nijinsky|,|so|instead|the|director|treats|us|to|an|aimless|hodgepodge|.\nEvery|note|rings|false|.\nWhen|the|screenwriter|responsible|for|one|of|the|worst|movies|of|one|year|directs|an|equally|miserable|film|the|following|year|,|you|'d|have|a|hard|time|believing|it|was|just|coincidence|.\nIt|never|rises|to|its|clever|what-if|concept|.\nAdmirably|ambitious|but|self-indulgent|.\nThis|story|of|unrequited|love|does|n't|sustain|interest|beyond|the|first|half-hour|.\nThis|angst-ridden|territory|was|covered|earlier|and|much|better|in|Ordinary|People|.\nThe|entire|film|is|one|big|excuse|to|play|one|lewd|scene|after|another|.\nAbout|half|of|them|are|funny|,|a|few|are|sexy|and|none|are|useful|in|telling|the|story|,|which|is|paper-thin|and|decidedly|unoriginal|.\nA|big|,|loud|,|bang-the-drum|bore|.\n(|Less|a|movie|than|)|an|appalling|,|odoriferous|thing|...|so|rotten|in|almost|every|single|facet|of|production|that|you|'ll|want|to|crawl|up|your|own|\\*\\*\\*|in|embarrassment|.\nThe|concept|behind|Kung|Pow|:|Enter|the|Fist|is|hilarious|.\nIt|'s|too|bad|nothing|else|is|.\nHardman|is|a|grating|,|mannered|onscreen|presence|,|which|is|especially|unfortunate|in|light|of|the|fine|work|done|by|most|of|the|rest|of|her|cast|.\nEl|Crimen|Del|Padre|Amaro|would|likely|be|most|effective|if|used|as|a|tool|to|rally|anti-Catholic|protestors|.\nInteresting|and|thoroughly|unfaithful|version|of|Carmen\nA|serious|movie|with|serious|ideas|.\nBut|seriously|,|folks|,|it|does|n't|work|.\nThere|'s|nothing|exactly|wrong|here|,|but|there|'s|not|nearly|enough|that|'s|right|.\nThe|action|here|is|unusually|tame|,|the|characters|are|too|simplistic|to|maintain|interest|,|and|the|plot|offers|few|surprises|.\nI|could|n't|help|but|feel|the|wasted|potential|of|this|slapstick|comedy|.\nWhat|Madonna|does|here|ca|n't|properly|be|called|acting|--|more|accurately|,|it|'s|moving|and|it|'s|talking|and|it|'s|occasionally|gesturing|,|sometimes|all|at|once|.\n(|A|)|painfully|flat|gross-out|comedy|...\nEven|if|you|'re|an|Elvis|person|,|you|wo|n't|find|anything|to|get|excited|about|on|this|DVD|.\nThe|movie|certainly|has|its|share|of|clever|moments|and|biting|dialogue|,|but|there|'s|just|not|much|lurking|below|its|abstract|surface|.\nIt|'s|bedeviled|by|labored|writing|and|slack|direction|.\nI|'m|sure|there|'s|a|teenage|boy|out|there|somewhere|who|'s|dying|for|this|kind|of|entertainment|.\nThe|Tuxedo|miscalculates|badly|by|forcing|the|star|to|play|second|fiddle|to|the|dull|effects|that|allow|the|suit|to|come|to|life|.\nThe|film|is|a|confusing|melange|of|tones|and|styles|,|one|moment|a|romantic|trifle|and|the|next|a|turgid|drama|.\nObviously|,|a|lot|of|people|wasted|a|lot|of|their|time|(|including|mine|)|on|something|very|inconsequential|.\nThere|'s|a|little|violence|and|lots|of|sex|in|a|bid|to|hold|our|attention|,|but|it|grows|monotonous|after|a|while|,|as|do|Joan|and|Philip|'s|repetitive|arguments|,|schemes|and|treachery|.\nIt|drowns|in|sap|.\nDeliberately|and|devotedly|constructed|,|Far|from|Heaven|is|too|picture|postcard|perfect|,|too|neat|and|new|pin-like|,|too|obviously|a|recreation|to|resonate|.\nIt|'s|rare|that|a|movie|can|be|as|intelligent|as|this|one|is|in|every|regard|except|its|storyline|;|everything|that|'s|good|is|ultimately|scuttled|by|a|plot|that|'s|just|too|boring|and|obvious|.\nI|'m|giving|it|thumbs|down|due|to|the|endlessly|repetitive|scenes|of|embarrassment|.\nThere|'s|got|to|be|a|more|graceful|way|of|portraying|the|devastation|of|this|disease|.\nThe|good|thing|--|the|only|good|thing|--|about|Extreme|Ops|is|that|it|'s|so|inane|that|it|gave|me|plenty|of|time|to|ponder|my|Thanksgiving|to-do|list|.\nThe|modern-day|characters|are|nowhere|near|as|vivid|as|the|19th-century|ones|.\nBlessed|with|a|searing|lead|performance|by|Ryan|Gosling|(|Murder|by|Numbers|)|,|the|movie|is|powerful|and|provocative|.\nIt|'s|also|built|on|a|faulty|premise|,|one|it|follows|into|melodrama|and|silliness|.\nUneven|performances|and|a|spotty|script|add|up|to|a|biting|satire|that|has|no|teeth|.\nDirector|Jay|Russell|stomps|in|hobnail|boots|over|Natalie|Babbitt|'s|gentle|,|endearing|1975|children|'s|novel|.\nBenigni|'s|Pinocchio|is|extremely|straight|and|mind-numbingly|stilted|,|its|episodic|pacing|keeping|the|film|from|developing|any|storytelling|flow|.\nThe|troubling|thing|about|Clockstoppers|is|that|it|does|n't|make|any|sense|.\nWith|its|paint|fights|,|motorized|scooter|chases|and|dewy-eyed|sentiment|,|it|'s|a|pretty|listless|collection|of|kid-movie|clichés|.\nMostly|the|film|is|just|hectic|and|homiletic|:|two|parts|exhausting|Men|in|Black|mayhem|to|one|part|family|values|.\nKicks|off|with|an|inauspicious|premise|,|mopes|through|a|dreary|tract|of|virtually|plotless|meanderings|and|then|ends|with|a|whimper|.\nA|rote|exercise|in|both|animation|and|storytelling|.\nThe|material|and|the|production|itself|are|little|more|than|routine|.\nThe|movie|'s|major|and|most|devastating|flaw|is|its|reliance|on|formula|,|though|,|and|it|'s|quite|enough|to|lessen|the|overall|impact|the|movie|could|have|had|.\nNot|even|Steven|Spielberg|has|dreamed|up|such|blatant|and|sickening|product|placement|in|a|movie|.\nIt|'s|all|surface|psychodramatics|.\nThe|Mothman|Prophecies|,|which|is|mostly|a|bore|,|seems|to|exist|only|for|its|climactic|setpiece|.\nThat|frenetic|spectacle|(|on|the|TV|show|)|has|usually|been|leavened|by|a|charm|that|'s|conspicuously|missing|from|the|Girls|'|big-screen|blowout|.\nKitschy|,|flashy|,|overlong|soap|opera|.\nFor|all|the|time|we|spend|with|these|people|,|we|never|really|get|inside|of|them|.\nYet|another|Arnold|vehicle|that|fails|to|make|adequate|use|of|his|particular|talents|.\nSandra|Bullock|,|despite|downplaying|her|good|looks|,|carries|a|little|too|much|ai|n't|-|she-cute|baggage|into|her|lead|role|as|a|troubled|and|determined|homicide|cop|to|quite|pull|off|the|heavy|stuff|.\nAn|undistinguished|attempt|to|make|a|classic|theater|piece|cinematic|.\ntoo|many|scenarios|in|which|the|hero|might|have|an|opportunity|to|triumphantly|sermonize|,|and|too|few|that|allow|us|to|wonder|for|ourselves|if|things|will|turn|out|okay|.\nThere|is|simply|not|enough|of|interest|onscreen|to|sustain|its|seventy-minute|running|time|.\nA|wordy|wisp|of|a|comedy|.\nBroomfield|'s|style|of|journalism|is|hardly|journalism|at|all|,|and|even|those|with|an|avid|interest|in|the|subject|will|grow|impatient|.\n(|Seagal|'s|)|strenuous|attempt|at|a|change|in|expression|could|very|well|clinch|him|this|year|'s|Razzie|.\nHas|the|disjointed|feel|of|a|bunch|of|strung-together|TV|episodes|.\nA|series|of|escapades|demonstrating|the|adage|that|what|is|good|for|the|goose|is|also|good|for|the|gander|,|some|of|which|occasionally|amuses|but|none|of|which|amounts|to|much|of|a|story|.\nOzpetek|offers|an|AIDS|subtext|,|skims|over|the|realities|of|gay|sex|,|and|presents|yet|another|tired|old|vision|of|the|gay|community|as|an|all-inclusive|world|where|uptight|,|middle|class|bores|like|Antonia|can|feel|good|about|themselves|.\nA|dopey|movie|clothed|in|excess|layers|of|hipness|.\nThe|Sweetest|Thing|is|expressly|for|idiots|who|do|n't|care|what|kind|of|sewage|they|shovel|into|their|mental|gullets|to|simulate|sustenance|.\nSinks|so|low|in|a|poorly|played|game|of|absurd|plot|twists|,|idiotic|court|maneuvers|and|stupid|characters|that|even|Freeman|ca|n't|save|it|.\nI|realized|that|no|matter|how|fantastic|Reign|of|Fire|looked|,|its|story|was|making|no|sense|at|all|.\nIt|made|me|realize|that|we|really|have|n't|had|a|good|cheesy|B-movie|playing|in|theaters|since|...|well|...|since|last|week|'s|Reign|of|Fire|.\nSome|movies|were|made|for|the|big|screen|,|some|for|the|small|screen|,|and|some|,|like|Ballistic|:|Ecks|vs.|Sever|,|were|made|for|the|palm|screen|.\nSC2|is|an|autopilot|Hollywood|concoction|lacking|in|imagination|and|authentic|Christmas|spirit|,|yet|it|'s|geared|toward|an|audience|full|of|masters|of|both|.\nAfter|all|the|big|build-up|,|the|payoff|for|the|audience|,|as|well|as|the|characters|,|is|messy|,|murky|,|unsatisfying|.\nSeems|content|to|dog-paddle|in|the|mediocre|end|of|the|pool|,|and|it|'s|a|sad|,|sick|sight|.\nIt|'s|refreshing|that|someone|understands|the|need|for|the|bad|boy|;|Diesel|,|with|his|brawny|frame|and|cool|,|composed|delivery|,|fits|the|bill|perfectly|.\nIf|all|of|Eight|Legged|Freaks|was|as|entertaining|as|the|final|hour|,|I|would|have|no|problem|giving|it|an|unqualified|recommendation|.\nSuffers|from|a|flat|script|and|a|low|budget|.\nThere|are|deeply|religious|and|spiritual|people|in|this|world|who|would|argue|that|entering|a|church|,|synagogue|or|temple|does|n't|mean|you|have|to|check|your|brain|at|the|door|.\nThe|same|should|go|for|movie|theaters|.\nSeemingly|a|vehicle|to|showcase|the|Canadian|'s|inane|ramblings|,|Stealing|Harvard|is|a|smorgasbord|of|soliloquies|about|nothing|delivered|by|the|former|Mr.|Drew|Barrymore|.\nThe|film|tries|to|touch|on|spousal|abuse|but|veers|off|course|and|becomes|just|another|revenge|film|.\nAs|it|stands|it|'s|an|opera|movie|for|the|buffs|.\nThis|franchise|has|not|spawned|a|single|good|film|.\nThe|crap|continues|.\nIts|inescapable|absurdities|are|tantamount|to|insulting|the|intelligence|of|anyone|who|has|n't|been|living|under|a|rock|(|since|Sept.|11|)|.\nHigh|drama|,|Disney-style|-|a|wing|and|a|prayer|and|a|hunky|has-been|pursuing|his|castle|in|the|sky|.\nLike|its|script|,|which|nurses|plot|holes|gaping|enough|to|pilot|an|entire|Olympic|swim|team|through|,|the|characters|in|Swimfan|seem|motivated|by|nothing|short|of|dull|,|brain-deadening|hangover|.\nOne|big|blustery|movie|where|nothing|really|happens|.\nWhen|it|comes|out|on|video|,|then|it|'s|the|perfect|cure|for|insomnia|.\nLike|a|comedian|who|starts|off|promisingly|but|then|proceeds|to|flop|,|Comedian|runs|out|of|steam|after|a|half|hour|.\nThe|pairing|does|sound|promising|in|theory|...|but|their|lack|of|chemistry|makes|Eddie|Murphy|and|Robert|DeNiro|in|Showtime|look|like|old|,|familiar|vaudeville|partners|.\nDirector|Chris|Eyre|is|going|through|the|paces|again|with|his|usual|high|melodramatic|style|of|filmmaking|.\nAs|it|stands|,|there|'s|some|fine|sex|onscreen|,|and|some|tense|arguing|,|but|not|a|whole|lot|more|.\nI|could|just|feel|the|screenwriter|at|every|moment|`|Tap|,|tap|,|tap|,|tap|,|tapping|away|'|on|this|screenplay|.\nThe|picture|does|n't|know|it|'s|a|comedy|.\nA|stupid|,|derivative|horror|film|that|substitutes|extreme|gore|for|suspense|.\nThe|rollerball|sequences|feel|sanitised|and|stagey|.\nRoman|Polanski|directs|The|Pianist|like|a|surgeon|mends|a|broken|heart|;|very|meticulously|but|without|any|passion|.\nNothing|more|than|a|run-of-the-mill|action|flick|.\nLan|Yu|is|certainly|a|serviceable|melodrama|,|but|it|does|n't|even|try|for|the|greatness|that|Happy|Together|shoots|for|(|and|misses|)|.\nThis|is|an|action|movie|with|an|action|icon|who|'s|been|all|but|decommissioned|.\nEven|if|it|is|generally|amusing|from|time|to|time|,|I|Spy|has|all|the|same|problems|the|majority|of|action|comedies|have|.\nMuch|like|Robin|Williams|,|Death|to|Smoochy|has|already|reached|its|expiration|date|.\nAn|annoying|orgy|of|excess|and|exploitation|that|has|no|point|and|goes|nowhere|.\nA|tired|,|unnecessary|retread|...|a|stale|copy|of|a|picture|that|was|n't|all|that|great|to|begin|with|.\nAn|often|unfunny|romp|.\nA|worthy|idea|,|but|the|uninspired|scripts|,|acting|and|direction|never|rise|above|the|level|of|an|after-school|TV|special|.\nTwenty|years|later|,|Reggio|still|knows|how|to|make|a|point|with|poetic|imagery|,|but|his|ability|to|startle|has|been|stifled|by|the|very|prevalence|of|the|fast-forward|technology|that|he|so|stringently|takes|to|task|.\nEar-splitting|exercise|in|formula|crash-and-bash|action|.\nWe|have|an|actor|who|is|great|fun|to|watch|performing|in|a|film|that|is|only|mildly|diverting|.\nDespite|Hoffman|'s|best|efforts|,|Wilson|remains|a|silent|,|lumpish|cipher|;|his|encounters|reveal|nothing|about|who|he|is|or|who|he|was|before|.\nThere|'s|a|thin|line|between|likably|old-fashioned|and|fuddy-duddy|,|and|The|Count|of|Monte|Cristo|...|never|quite|settles|on|either|side|.\nThe|emotional|overload|of|female|angst|irreparably|drags|the|film|down|.\nSchaefer|'s|...|determination|to|inject|farcical|raunch|...|drowns|out|the|promise|of|the|romantic|angle|.\nLike|Showgirls|and|Glitter|,|the|most|entertaining|moments|here|are|unintentional|.\nWhile|some|of|the|camera|work|is|interesting|,|the|film|'s|mid-to-low|budget|is|betrayed|by|the|surprisingly|shoddy|makeup|work|.\nThe|origin|story|is|well|told|,|and|the|characters|will|not|disappoint|anyone|who|values|the|original|comic|books|.\nIt|'s|in|the|action|scenes|that|things|fall|apart|.\nImpostor|is|a|step|down|for|director|Gary|Fleder|.\nSeagal|,|who|looks|more|like|Danny|Aiello|these|days|,|mumbles|his|way|through|the|movie|.\nThe|movie|is|a|negligible|work|of|manipulation|,|an|exploitation|piece|doing|its|usual|worst|to|guilt-trip|parents|.\nLacks|dramatic|punch|and|depth|.\nThere|are|moments|of|real|pleasure|to|be|found|in|Sara|Sugarman|'s|whimsical|comedy|Very|Annie-Mary|but|not|enough|to|sustain|the|film|.\nI|can|analyze|this|movie|in|three|words|:|Thumbs|Friggin|'|Down|.\nSadly|,|`|Garth|'|has|n't|progressed|as|nicely|as|`|Wayne|.|'\nMake|like|the|title|and|dodge|this|one|.\nThis|is|not|one|of|the|movies|you|'d|want|to|watch|if|you|only|had|a|week|to|live|.\nThe|first|hour|is|tedious|though|Ford|and|Neeson|capably|hold|our|interest|,|but|its|just|not|a|thrilling|movie|.\nHere|'s|a|case|of|two|actors|who|do|everything|humanly|possible|to|create|characters|who|are|sweet|and|believable|,|and|are|defeated|by|a|screenplay|that|forces|them|into|bizarre|,|implausible|behavior|.\nIt|'s|obvious|(|Je-Gyu|is|)|trying|for|poetry|;|what|he|gets|instead|has|all|the|lyricism|of|a|limerick|scrawled|in|a|public|restroom|.\nSweet|Home|Alabama|is|one|dumb|movie|,|but|its|stupidity|is|so|relentlessly|harmless|that|it|almost|wins|you|over|in|the|end|.\n(|Green|is|)|the|comedy|equivalent|of|Saddam|Hussein|,|and|I|'m|just|about|ready|to|go|to|the|U.N.|and|ask|permission|for|a|preemptive|strike|.\nNo|amount|of|good|acting|is|enough|to|save|Oleander|'s|uninspired|story|.\nA|vile|,|incoherent|mess|...|a|scummy|ripoff|of|David|Cronenberg|'s|brilliant|`|Videodrome|.|'\nMurphy|and|Wilson|actually|make|a|pretty|good|team|...|but|the|project|surrounding|them|is|distressingly|rote|.\nDespite|its|raucous|intent|,|XXX|is|as|conventional|as|a|Nike|ad|and|as|rebellious|as|spring|break|.\nThink|The|Lion|King|redone|for|horses|,|with|fewer|deliberate|laughs|,|more|inadvertent|ones|and|stunningly|trite|songs|by|Bryan|Adams|,|the|world|'s|most|generic|rock|star|.\nIt|is|one|more|celluloid|testimonial|to|the|cruelties|experienced|by|Southern|blacks|as|distilled|through|a|Caucasian|perspective|.\nIt|'s|tough|being|a|black|man|in|America|,|especially|when|the|Man|has|taken|away|your|car|,|your|work-hours|and|denied|you|health|insurance|.\nA|small|fortune|in|salaries|and|stunt|cars|might|have|been|saved|if|the|director|,|Tom|Dey|,|had|spliced|together|bits|and|pieces|of|Midnight|Run|and|48|Hours|(|and|,|for|that|matter|,|Shrek|)|.\nAn|amateurish|,|quasi-improvised|acting|exercise|shot|on|ugly|digital|video|.\nThe|holes|in|this|film|remain|agape|--|holes|punched|through|by|an|inconsistent|,|meandering|,|and|sometimes|dry|plot|.\nWould|Benigni|'s|Italian|Pinocchio|have|been|any|easier|to|sit|through|than|this|hastily|dubbed|disaster|?\nUnofficially|,|National|Lampoon|'s|Van|Wilder|is|Son|of|Animal|House|.\nOfficially|,|it|is|twice|as|bestial|but|half|as|funny|.\nThis|is|a|fragmented|film|,|once|a|good|idea|that|was|followed|by|the|bad|idea|to|turn|it|into|a|movie|.\nMindless|yet|impressively|lean|spinoff|of|last|summer|'s|bloated|effects|fest|The|Mummy|Returns|.\nHalfway|through|the|movie|,|the|humor|dwindles|.\nIt|'s|replaced|by|some|dramatic|scenes|that|are|jarring|and|deeply|out|of|place|in|what|could|have|(|and|probably|should|have|)|been|a|lighthearted|comedy|.\nwill|be|far|more|interesting|to|the|Soderbergh|faithful|than|it|will|be|to|the|casual|moviegoer|who|might|be|lured|in|by|Julia|Roberts|...\nAuthentic|,|and|at|times|endearing|,|humorous|,|spooky|,|educational|,|but|at|other|times|as|bland|as|a|block|of|snow|.\nControl-Alt-Delete|Simone|as|quickly|as|possible\nFollows|the|original|film|virtually|scene|for|scene|and|yet|manages|to|bleed|it|almost|completely|dry|of|humor|,|verve|and|fun|.\nThe|filmmaker|ascends|,|literally|,|to|the|Olympus|of|the|art|world|,|but|he|would|have|done|well|to|end|this|flawed|,|dazzling|series|with|the|raising|of|something|other|than|his|own|cremaster|.\nThe|screenplay|comes|across|,|rather|unintentionally|,|as|Hip-Hop|Scooby-Doo|.\nHas|lost|some|of|the|dramatic|conviction|that|underlies|the|best|of|comedies|...\nVaguely|interesting|,|but|it|'s|just|too|too|much|.\n...|no|charm|,|no|laughs|,|no|fun|,|no|reason|to|watch|.\nA|generic|family|comedy|unlikely|to|be|appreciated|by|anyone|outside|the|under-10|set|.\nKung|Pow|seems|like|some|futile|concoction|that|was|developed|hastily|after|Oedekerk|and|his|fellow|moviemakers|got|through|crashing|a|college|keg|party|.\nKurys|seems|intimidated|by|both|her|subject|matter|and|the|period|trappings|of|this|debut|venture|into|the|heritage|business|.\nThe|film|virtually|chokes|on|its|own|self-consciousness|.\nA|manipulative|feminist|empowerment|tale|thinly|posing|as|a|serious|drama|about|spousal|abuse|.\nEverything|in|Maid|in|Manhattan|is|exceedingly|pleasant|,|designed|not|to|offend|.\nIt|goes|down|easy|,|leaving|virtually|no|aftertaste|.\nA|profoundly|stupid|affair|,|populating|its|hackneyed|and|meanspirited|storyline|with|cardboard|characters|and|performers|who|value|cash|above|credibility|.\n...|pays|tribute|to|heroes|the|way|Julia|Roberts|hands|out|awards|--|with|phony|humility|barely|camouflaging|grotesque|narcissism|.\nTime|stands|still|in|more|ways|that|one|in|Clockstoppers|,|a|sci-fi|thriller|as|lazy|as|it|is|interminable|.\nAs|a|director|,|Eastwood|is|off|his|game|--|there|'s|no|real|sense|of|suspense|,|and|none|of|the|plot|`|surprises|'|are|really|surprising|.\nEccentric|enough|to|stave|off|doldrums|,|Caruso|'s|self-conscious|debut|is|also|eminently|forgettable|.\nTo|work|,|love|stories|require|the|full|emotional|involvement|and|support|of|a|viewer|.\nThat|is|made|almost|impossible|by|events|that|set|the|plot|in|motion|.\nAlthough|Barbershop|boasts|some|of|today|'s|hottest|and|hippest|acts|from|the|world|of|television|,|music|and|stand-up|comedy|,|this|movie|strangely|enough|has|the|outdated|swagger|of|a|shameless|`|70s|blaxploitation|shuck-and-jive|sitcom|.\nA|puzzle|whose|pieces|do|not|fit|.\nSome|are|fascinating|and|others|are|not|,|and|in|the|end|,|it|is|almost|a|good|movie|.\nWould|that|Greengrass|had|gone|a|tad|less|for|grit|and|a|lot|more|for|intelligibility|.\nThe|good|is|very|,|very|good|...|The|rest|runs|from|mildly|unimpressive|to|despairingly|awful|.\n`|Butterfingered|'|is|the|word|for|the|big-fisted|direction|of|Jez|Butterworth|,|who|manages|to|blast|even|the|smallest|sensitivities|from|the|romance|with|his|clamorous|approach|.\nBe|forewarned|,|if|you|'re|depressed|about|anything|before|watching|this|film|,|you|may|just|end|up|trying|to|drown|yourself|in|a|lake|afterwards|.\na|terrible|adaptation|of|a|play|that|only|ever|walked|the|delicate|tightrope|between|farcical|and|loathsome|.\nIn|the|wrong|hands|,|i.e.|Peploe|'s|,|it|'s|simply|unbearable\nAn|inexperienced|director|,|Mehta|has|much|to|learn|.\nA|limp|Eddie|Murphy|vehicle|that|even|he|seems|embarrassed|to|be|part|of|.\nSo|muddled|,|repetitive|and|ragged|that|it|says|far|less|about|the|horrifying|historical|reality|than|about|the|filmmaker|'s|characteristic|style|.\nA|gushy|episode|of|``|M|\\*|A|\\*|S|\\*|H|''|only|this|time|from|an|Asian|perspective|.\n``|Looking|For|Leonard|''|just|seems|to|kinda|sit|in|neutral|,|hoping|for|a|stiff|wind|to|blow|it|uphill|or|something|.\nNothing|more|than|four|or|five|mild|chuckles|surrounded|by|86|minutes|of|overly-familiar|and|poorly-constructed|comedy|.\nDefinitely|in|the|guilty|pleasure|B-movie|category|,|Reign|of|Fire|is|so|incredibly|inane|that|it|is|laughingly|enjoyable|.\nGood-looking|but|relentlessly|lowbrow|outing|plays|like|Clueless|Does|South|Fork|.\nentertaining|enough|,|but|nothing|new\n...|one|resurrection|too|many|.\nThis|is|a|film|about|the|irksome|,|tiresome|nature|of|complacency|that|remains|utterly|satisfied|to|remain|the|same|throughout|.\nEven|as|the|hero|of|the|story|rediscovers|his|passion|in|life|,|the|mood|remains|oddly|detached|.\nDeMeo|is|not|without|talent|;|he|just|needs|better|material|.\nIn|spite|of|featuring|a|script|credited|to|no|fewer|than|five|writers|,|apparently|nobody|here|bothered|to|check|it|twice|.\nNo|one|involved|,|save|Dash|,|shows|the|slightest|aptitude|for|acting|,|and|the|script|,|credited|to|director|Abdul|Malik|Abbott|and|Ernest|`|Tron|'|Anderson|,|seems|entirely|improvised|.\nInitially|gripping|,|eventually|cloying|POW|drama|.\nA|timid|,|soggy|near|miss|.\nWorks|better|in|the|conception|than|it|does|in|the|execution|...|winds|up|seeming|just|a|little|too|clever|.\nTo|the|vast|majority|of|more|casual|filmgoers|,|it|will|probably|be|a|talky|bore|.\nObservant|intelligence|constantly|vies|with|pretension|--|and|sometimes|plain|wacky|implausibility|--|throughout|Maelstrom|.\nThis|version|of|H.G.|Wells|'|Time|Machine|was|directed|by|H.G.|Wells|'|great-grandson|.\nThey|should|have|found|Orson|Welles|'|great-grandson|.\nShunji|Iwai|'s|All|About|Lily|Chou|Chou|is|a|beautifully|shot|,|but|ultimately|flawed|film|about|growing|up|in|Japan|.\nWith|more|character|development|this|might|have|been|an|eerie|thriller|;|with|better|payoffs|,|it|could|have|been|a|thinking|man|'s|monster|movie|.\nThriller|directorial|debut|for|Traffic|scribe|Gaghan|has|all|the|right|parts|,|but|the|pieces|do|n't|quite|fit|together|.\n...|would|be|a|total|loss|if|not|for|two|supporting|performances|taking|place|at|the|movie|'s|edges|.\nThere|'s|not|a|single|jump-in-your-seat|moment|and|believe|it|or|not|,|Jason|actually|takes|a|backseat|in|his|own|film|to|special|effects|.\nGoldbacher|draws|on|an|elegant|visual|sense|and|a|talent|for|easy|,|seductive|pacing|...|but|she|and|writing|partner|Laurence|Coriat|do|n't|manage|an|equally|assured|narrative|coinage|.\nThough|Harris|is|affecting|at|times|,|he|can|not|overcome|the|sense|that|Pumpkin|is|a|mere|plot|pawn|for|two|directors|with|far|less|endearing|disabilities|.\nThe|documentary|is|much|too|conventional|--|lots|of|boring|talking|heads|,|etc.|--|to|do|the|subject|matter|justice|.\nThe|movie|itself|appears|to|be|running|on|hypertime|in|reverse|as|the|truly|funny|bits|get|further|and|further|apart|.\nThis|is|not|a|Jackie|Chan|movie|.\nIt|'s|just|a|movie|that|happens|to|have|Jackie|Chan|in|it|.\nAnd|that|makes|all|the|difference|.\nFar|too|clever|by|half|,|Howard|'s|film|is|really|a|series|of|strung-together|moments|,|with|all|the|spaces|in|between|filled|with|fantasies|,|daydreams|,|memories|and|one|fantastic|visual|trope|after|another|.\nThe|problem|with|movies|about|angels|is|they|have|a|tendency|to|slip|into|hokum|.\nA|Rumor|of|Angels|does|n't|just|slip|--|it|avalanches|into|forced|fuzziness|.\nNo|big|whoop|,|nothing|new|to|see|,|zero|thrills|,|too|many|flashbacks|and|a|choppy|ending|make|for|a|bad|film|.\nI|do|n't|think|this|movie|loves|women|at|all|.\nShankman|...|and|screenwriter|Karen|Janszen|bungle|their|way|through|the|narrative|as|if|it|were|a|series|of|Bible|parables|and|not|an|actual|story|.\nA|negligible|British|comedy|.\nFails|to|convince|the|audience|that|these|brats|will|ever|be|anything|more|than|losers|.\nSlack|and|uninspired|,|and|peopled|mainly|by|characters|so|unsympathetic|that|you|'re|left|with|a|sour|taste|in|your|mouth|.\nSkip|this|turd|and|pick|your|nose|instead|because|you|'re|sure|to|get|more|out|of|the|latter|experience|.\nWhat|can|one|say|about|a|balding|50-year-old|actor|playing|an|innocent|boy|carved|from|a|log|?\nTrailer|trash|cinema|so|uncool|the|only|thing|missing|is|the|``|Gadzooks|!|''\nHer|film|is|like|a|beautiful|food|entrée|that|is|n't|heated|properly|,|so|that|it|ends|up|a|bit|cold|and|relatively|flavorless|.\nLike|the|world|of|his|film|,|Hartley|created|a|monster|but|did|n't|know|how|to|handle|it|.\nNo|new|plot|conceptions|or|environmental|changes|,|just|different|bodies|for|sharp|objects|to|rip|through|.\nNeeds|more|impressionistic|cinematography|and|exhilarating|point-of-view|shots|and|fewer|slow-motion|`|grandeur|'|shots|and|quick-cut|edits|that|often|detract|from|the|athleticism|.\nIn|the|end|,|there|is|n't|much|to|it|.\nA|waste|of|fearless|purity|in|the|acting|craft|.\nThe|film|is|ultimately|about|as|inspiring|as|a|Hallmark|card|.\nAnyone|not|into|high-tech|splatterfests|is|advised|to|take|the|warning|literally|,|and|log|on|to|something|more|user-friendly|.\nDisreputable|doings|and|exquisite|trappings|are|dampened|by|a|lackluster|script|and|substandard|performances|.\nYou|could|easily|mistake|it|for|a|sketchy|work-in-progress|that|was|inexplicably|rushed|to|the|megaplexes|before|its|time|.\nDirectors|Harry|Gantz|and|Joe|Gantz|have|chosen|a|fascinating|subject|matter|,|but|the|couples|exposing|themselves|are|n't|all|that|interesting|.\nYet|another|entry|in|the|sentimental|oh-those-wacky-Brits|genre|that|was|ushered|in|by|The|Full|Monty|and|is|still|straining|to|produce|another|smash|hit|.\nfor|those|for|whom|the|name|Woody|Allen|was|once|a|guarantee|of|something|fresh|,|sometimes|funny|,|and|usually|genuinely|worthwhile|,|Hollywood|Ending|is|a|depressing|experience\nFemme|Fatale|offers|nothing|more|than|a|bait-and-switch|that|is|beyond|playing|fair|with|the|audience|.\nAre|we|dealing|with|dreams|,|visions|or|being|told|what|actually|happened|as|if|it|were|the|third|ending|of|Clue|?\nIt|could|have|been|something|special|,|but|two|things|drag|it|down|to|mediocrity|--|director|Clare|Peploe|'s|misunderstanding|of|Marivaux|'s|rhythms|,|and|Mira|Sorvino|'s|limitations|as|a|classical|actress|.\nFluffy|neo-noir|hiding|behind|cutesy|film|references|.\nImagine|Susan|Sontag|falling|in|love|with|Howard|Stern|.\nLike|being|trapped|inside|a|huge|video|game|,|where|exciting|,|inane|images|keep|popping|past|your|head|and|the|same|illogical|things|keep|happening|over|and|over|again|.\nShould|have|been|worth|cheering|as|a|breakthrough|but|is|devoid|of|wit|and|humor|.\nThe|best|thing|about|the|movie|is|its|personable|,|amusing|cast|.\nThese|guys|seem|great|to|knock|back|a|beer|with|but|they|'re|simply|not|funny|performers|.\nEverything|was|as|superficial|as|the|forced|New|Jersey|lowbrow|accent|Uma|had|.\nDirector|David|Fincher|and|writer|David|Koepp|ca|n't|sustain|it|.\nFinally|coming|down|off|of|Miramax|'s|deep|shelves|after|a|couple|of|aborted|attempts|,|Waking|Up|in|Reno|makes|a|strong|case|for|letting|sleeping|dogs|lie|.\nA|movie|that|feels|like|the|pilot|episode|of|a|new|teen-targeted|action|TV|series|.\nOne|of|the|most|highly-praised|disappointments|I|'ve|had|the|misfortune|to|watch|in|quite|some|time|.\nThe|animation|and|backdrops|are|lush|and|inventive|,|yet|Return|to|Neverland|never|manages|to|take|us|to|that|elusive|,|lovely|place|where|we|suspend|our|disbelief|.\nDirector|Shekhar|Kapur|and|screenwriters|Michael|Schiffer|and|Hossein|Amini|have|tried|hard|to|modernize|and|reconceptualize|things|,|but|the|barriers|finally|prove|to|be|too|great|.\nStrong|filmmaking|requires|a|clear|sense|of|purpose|,|and|in|that|oh-so-important|category|,|The|Four|Feathers|comes|up|short|.\nThe|thought|of|watching|this|film|with|an|audience|full|of|teenagers|fixating|on|its|body|humour|and|reinforcement|of|stereotypes|(|of|which|they|'ll|get|plenty|)|fills|me|with|revulsion|.\nDevolves|into|the|derivative|,|leaning|on|badly-rendered|CGI|effects|.\nAnyone|who|gets|chills|from|movies|with|giant|plot|holes|will|find|plenty|to|shake|and|shiver|about|in|`|The|Ring|.|'\nA|grand|fart|coming|from|a|director|beginning|to|resemble|someone|'s|crazy|French|grandfather|.\nThe|script|is|a|disaster|,|with|cloying|messages|and|irksome|characters|.\nboth|overstuffed|and|undernourished|...|The|film|ca|n't|be|called|a|solid|success|,|although|there|'s|plenty|of|evidence|here|to|indicate|Clooney|might|have|better|luck|next|time|.\nPlods|along|,|minus|the|twisted|humor|and|eye-popping|visuals|that|have|made|Miike|...|a|cult|hero|.\nHollywood|has|taken|quite|a|nosedive|from|Alfred|Hitchcock|'s|imaginative|flight|to|Shyamalan|'s|self-important|summer|fluff|.\nThe|film|'s|maudlin|focus|on|the|young|woman|'s|infirmity|and|her|naive|dreams|play|like|the|worst|kind|of|Hollywood|heart-string|plucking|.\nI|firmly|believe|that|a|good|video|game|movie|is|going|to|show|up|soon|.\nI|also|believe|that|Resident|Evil|is|not|it|.\nIt|has|the|air|of|a|surprisingly|juvenile|lark|,|a|pop-influenced|prank|whose|charms|are|immediately|apparent|and|wear|thin|with|repetition|.\nThe|plot|meanders|from|gripping|to|plodding|and|back|.\nThis|is|cruel|,|misanthropic|stuff|with|only|weak|claims|to|surrealism|and|black|comedy|.\nNo|amount|of|nostalgia|for|Carvey|'s|glory|days|can|disguise|the|fact|that|the|new|film|is|a|lame|kiddie|flick|and|that|Carvey|'s|considerable|talents|are|wasted|in|it|.\nBest|described|as|I|Know|What|You|Did|Last|Winter|.\n(|Taylor|)|takes|us|on|a|ride|that|'s|consistently|surprising|,|easy|to|watch|--|but|,|oh|,|so|dumb|.\nIt|'s|difficult|for|a|longtime|admirer|of|his|work|to|not|be|swept|up|in|Invincible|and|overlook|its|drawbacks|.\nLazily|directed|by|Charles|Stone|III|...|from|a|leaden|script|by|Matthew|Cirulnick|and|novelist|Thulani|Davis|.\nThough|Jones|and|Snipes|are|enthralling|,|the|movie|bogs|down|in|rhetoric|and|cliché|.\nThe|most|remarkable|(|and|frustrating|)|thing|about|World|Traveler|,|which|opens|today|in|Manhattan|,|is|that|its|protagonist|,|after|being|an|object|of|intense|scrutiny|for|104|minutes|,|remains|a|complete|blank|.\nAn|artsploitation|movie|with|too|much|exploitation|and|too|little|art|.\nThe|pacing|is|often|way|off|and|there|are|too|many|bona|fide|groaners|among|too|few|laughs|.\nWith|lines|that|feel|like|long|soliloquies|--|even|as|they|are|being|framed|in|conversation|--|Max|is|static|,|stilted|.\nBarely|manages|for|but|a|few|seconds|over|its|seemingly|eternal|running|time|to|pique|your|interest|,|your|imagination|,|your|empathy|or|anything|,|really|,|save|your|disgust|and|your|indifference|.\nWriter\\/director|Burr|Steers|emphasizes|the|Q|in|Quirky|,|with|mixed|results|.\nOne|senses|in|World|Traveler|and|in|his|earlier|film|that|Freundlich|bears|a|grievous|but|obscure|complaint|against|fathers|,|and|circles|it|obsessively|,|without|making|contact|.\nIn|between|the|icy|stunts|,|the|actors|spout|hilarious|dialogue|about|following|your|dream|and|`|just|letting|the|mountain|tell|you|what|to|do|.|'\nThe|obligatory|break-ups|and|hook-ups|do|n't|seem|to|have|much|emotional|impact|on|the|characters|.\nMake|no|mistake|,|ivans|xtc|.\nis|a|mess|.\nHypnotically|dull|,|relentlessly|downbeat|,|laughably|predictable|wail|pitched|to|the|cadence|of|a|depressed|fifteen-year-old|'s|suicidal|poetry|.\nThe|concept|is|a|hoot|.\nThe|trailer|is|a|riot|.\nThe|movie|is|a|dud|.\nIt|'s|a|boring|movie|about|a|boring|man|,|made|watchable|by|a|bravura|performance|from|a|consummate|actor|incapable|of|being|boring|.\nBecause|the|intelligence|level|of|the|characters|must|be|low|,|very|low|,|very|very|low|,|for|the|masquerade|to|work|,|the|movie|contains|no|wit|,|only|labored|gags|.\nIt|'s|hard|to|imagine|another|director|ever|making|his|wife|look|so|bad|in|a|major|movie|.\nSome|stunning|visuals|--|and|some|staggeringly|boring|cinema|.\nThese|characters|become|wearisome|.\nA|hit|-|and-miss|affair|,|consistently|amusing|but|not|as|outrageous|or|funny|as|Cho|may|have|intended|or|as|imaginative|as|one|might|have|hoped|.\nThis|may|be|the|first|cartoon|ever|to|look|as|if|it|were|being|shown|on|the|projection|television|screen|of|a|sports|bar|.\nKim|Ki-Deok|seems|to|have|in|mind|an|(|emotionally|at|least|)|adolescent|audience|demanding|regular|shocks|and|bouts|of|barely|defensible|sexual|violence|to|keep|it|interested|.\nA|sterling|film|-|a|cross|between|Boys|Do|n't|Cry|,|Deliverance|,|and|Ode|to|Billy|Joe|-|lies|somewhere|in|the|story|of|Matthew|Shepard|,|but|that|film|is|yet|to|be|made|.\nAfter|sitting|through|this|sloppy|,|made-for-movie|comedy|special|,|it|makes|me|wonder|if|Lawrence|hates|criticism|so|much|that|he|refuses|to|evaluate|his|own|work|.\nContrived|pastiche|of|caper|clichés|.\nMany|shallower|movies|these|days|seem|too|long|,|but|this|one|is|egregiously|short|.\nJust|a|Kiss|wants|desperately|to|come|off|as|a|fanciful|film|about|the|typical|problems|of|average|people|.\nBut|it|is|set|in|a|world|that|is|very|,|very|far|from|the|one|most|of|us|inhabit|.\nThe|most|ill-conceived|animated|comedy|since|the|1991|dog|Rover|Dangerfield|.\nLike|shave|ice|without|the|topping|,|this|cinematic|snow|cone|is|as|innocuous|as|it|is|flavorless|.\nDespite|its|sincere|acting|,|Signs|is|just|another|unoriginal|run|of|the|mill|sci-fi|film|with|a|flimsy|ending|and|lots|of|hype|.\nYet|another|movie|which|presumes|that|high|school|social|groups|are|at|war|,|let|alone|conscious|of|each|other|'s|existence|.\nLoud|,|chaotic|and|largely|unfunny|.\nI|ca|n't|remember|the|last|time|I|saw|an|audience|laugh|so|much|during|a|movie|,|but|there|'s|only|one|problem|...|it|'s|supposed|to|be|a|drama|.\nQualities|that|were|once|amusing|are|becoming|irritating|.\nWell|,|Jason|'s|gone|to|Manhattan|and|Hell|,|I|guess|a|space|station|in|the|year|2455|can|be|crossed|off|the|list|of|ideas|for|the|inevitable|future|sequels|(|hey|,|do|n't|shoot|the|messenger|)|.\nDonovan|...|squanders|his|main|asset|,|Jackie|Chan|,|and|fumbles|the|vital|action|sequences|.\nThere|is|no|psychology|here|,|and|no|real|narrative|logic|--|just|a|series|of|carefully|choreographed|atrocities|,|which|become|strangely|impersonal|and|abstract|.\nBread|,|My|Sweet|has|so|many|flaws|it|would|be|easy|for|critics|to|shred|it|.\nIt|may|even|fall|into|the|category|of|Films|You|Love|to|Hate|.\nI|admit|it|,|I|hate|to|like|it|.\nFrida|is|certainly|no|disaster|,|but|neither|is|it|the|Kahlo|movie|Frida|fans|have|been|looking|for|.\nLeaks|treacle|from|every|pore|.\nThe|characters|are|so|generic|and|the|plot|so|bland|that|even|as|rogue|CIA|assassins|working|for|Chris|Cooper|'s|agency|boss|close|in|on|the|resourceful|amnesiac|,|we|do|n't|feel|much|for|Damon\\/Bourne|or|his|predicament|.\nKapur|weighs|down|the|tale|with|bogus|profundities|.\nWhile|we|want|MacDowell|'s|character|to|retrieve|her|husband|,|we|have|to|ask|whether|her|personal|odyssey|trumps|the|carnage|that|claims|so|many|lives|around|her|.\nBlue|Crush|is|as|predictable|as|the|tides|.\n...|The|movie|feels|stitched|together|from|stock|situations|and|characters|from|other|movies|.\nIf|you|enjoy|being|rewarded|by|a|script|that|assumes|you|are|n't|very|bright|,|then|Blood|Work|is|for|you|.\nTrouble|Every|Day|is|a|success|in|some|sense|,|but|it|'s|hard|to|like|a|film|so|cold|and|dead|.\nThe|film|'s|stagecrafts|are|intimate|and|therefore|bolder|than|the|otherwise|calculated|artifice|that|defines|and|overwhelms|the|film|'s|production|design|.\nA|well-intentioned|effort|that|'s|still|too|burdened|by|the|actor|'s|offbeat|sensibilities|for|the|earnest|emotional|core|to|emerge|with|any|degree|of|accessibility|.\nA|family-friendly|fantasy|that|ends|up|doing|very|little|with|its|imaginative|premise|.\nA|plodding|look|at|the|French|Revolution|through|the|eyes|of|aristocrats|.\nTom|Shadyac|has|learned|a|bit|more|craft|since|directing|Adams|,|but|he|still|lingers|over|every|point|until|the|slowest|viewer|grasps|it|.\nUnspools|like|a|highbrow|,|low-key|,|102-minute|infomercial|,|blending|entrepreneurial|zeal|with|the|testimony|of|satisfied|customers|.\nA|fast-paced|,|glitzy|but|extremely|silly|piece|.\nAny|reasonably|creative|eighth-grader|could|have|written|a|more|credible|script|,|though|with|the|same|number|of|continuity|errors|.\n...|while|the|humor|aspects|of|`|Jason|X|'|were|far|more|entertaining|than|I|had|expected|,|everything|else|about|the|film|tanks|.\nYour|taste|for|Jonah|-|A|Veggie|Tales|Movie|may|well|depend|on|your|threshold|for|pop|manifestations|of|the|Holy|Spirit|.\nLike|an|Afterschool|Special|with|costumes|by|Gianni|Versace|,|Mad|Love|looks|better|than|it|feels|.\nWhile|certain|cues|,|like|the|happy|music|,|suggest|that|this|movie|is|supposed|to|warm|our|hearts|,|Jeong-Hyang|Lee|'s|film|is|just|as|likely|to|blacken|that|organ|with|cold|vengefulness|.\nThe|script|,|the|gags|,|the|characters|are|all|direct-to-video|stuff|,|and|that|'s|where|this|film|should|have|remained|.\nA|thriller|without|thrills|and|a|mystery|devoid|of|urgent|questions|.\nA|collage|of|clichés|and|a|dim|echo|of|allusions|to|other|films|.\nThe|film|is|hampered|by|its|predictable|plot|and|paper-thin|supporting|characters|.\nJonah|is|only|so-so|...|the|addition|of|a|biblical|message|will|either|improve|the|film|for|you|,|or|it|will|lessen|it|.\nAn|excruciating|demonstration|of|the|unsalvageability|of|a|movie|saddled|with|an|amateurish|screenplay|.\nHow|many|more|times|will|indie|filmmakers|subject|us|to|boring|,|self-important|stories|of|how|horrible|we|are|to|ourselves|and|each|other|?\nThere|are|some|laughs|in|this|movie|,|but|Williams|'|anarchy|gets|tiresome|,|the|satire|is|weak|.\nAs|steamy|as|last|week|'s|pork|dumplings|.\nThe|somber|pacing|and|lack|of|dramatic|fireworks|make|Green|Dragon|seem|more|like|medicine|than|entertainment|.\nThe|filmmakers|needed|more|emphasis|on|the|storytelling|and|less|on|the|glamorous|machine|that|thrusts|the|audience|into|a|future|they|wo|n't|much|care|about|.\nAnother|wholly|unnecessary|addition|to|the|growing|,|moldering|pile|of|,|well|,|extreme|stunt|pictures|.\nThis|strenuously|unfunny|Showtime|deserves|the|hook|.\nThe|whole|thing|'s|fairly|lame|,|making|it|par|for|the|course|for|Disney|sequels|.\n...|its|solemn|pretension|prevents|us|from|sharing|the|awe|in|which|it|holds|itself|.\n...|the|good|and|different|idea|(|of|middle-aged|romance|)|is|not|handled|well|and|,|except|for|the|fine|star|performances|,|there|is|little|else|to|recommend|``|Never|Again|.|''\nIf|Disney|'s|Cinderella|proved|that|'|a|dream|is|a|wish|your|heart|makes|,|'|then|Cinderella|II|proves|that|a|nightmare|is|a|wish|a|studio|'s|wallet|makes|.\nFeatures|nonsensical|and|laughable|plotting|,|wooden|performances|,|ineptly|directed|action|sequences|and|some|of|the|worst|dialogue|in|recent|memory|.\nWith|Rare|Birds|,|as|with|The|Shipping|News|before|it|,|an|attempt|is|made|to|transplant|a|Hollywood|star|into|Newfoundland|'s|wild|soil|--|and|The|Rock|once|again|resists|the|intrusion|.\nNothing|about|this|movie|works|.\nIf|the|idea|of|the|white|man|arriving|on|foreign|shores|to|show|wary|natives|the|true|light|is|abhorrent|to|you|,|the|simplistic|Heaven|will|quite|likely|be|more|like|hell|.\nA|spooky|yarn|of|demonic|doings|on|the|high|seas|that|works|better|the|less|the|brain|is|engaged|.\nNone|of|Birthday|Girl|'s|calculated|events|take|us|by|surprise|...\nAre|monsters|born|,|or|made|?\nLisa|Rinzler|'s|cinematography|may|be|lovely|,|but|Love|Liza|'s|tale|itself|virtually|collapses|into|an|inhalant|blackout|,|maintaining|consciousness|just|long|enough|to|achieve|callow|pretension|.\nThe|narrator|and|the|other|characters|try|to|convince|us|that|acting|transfigures|Esther|,|but|she|'s|never|seen|speaking|on|stage|;|one|feels|cheated|,|and|Esther|seems|to|remain|an|unchanged|dullard|.\nIt|'s|exactly|the|kind|of|movie|Toback|'s|detractors|always|accuse|him|of|making|.\nWith|the|dog|days|of|August|upon|us|,|think|of|this|dog|of|a|movie|as|the|cinematic|equivalent|of|high|humidity|.\nLess|about|Shakespeare|than|the|spawn|of|fools|who|saw|Quentin|Tarantino|'s|handful|of|raucous|gangster|films|and|branched|out|into|their|own|pseudo-witty|copycat|interpretations|.\nThe|film|is|like|sitting|in|a|downtown|café|,|overhearing|a|bunch|of|typical|late-twenty-somethings|natter|on|about|nothing|,|and|desperately|wishing|you|could|change|tables|.\nThis|rather|unfocused|,|all-over-the-map|movie|would|be|a|lot|better|if|it|pared|down|its|plots|and|characters|to|a|few|rather|than|dozens|...|or|if|it|were|subtler|...|or|if|it|had|a|sense|of|humor|.\nTakes|a|clunky|TV-movie|approach|to|detailing|a|chapter|in|the|life|of|the|celebrated|Irish|playwright|,|poet|and|drinker|.\nNot|only|does|the|thoroughly|formulaic|film|represent|totally|exemplify|middle-of-the-road|mainstream|,|it|also|represents|glossy|Hollywood|at|its|laziest|.\nA|shame|that|Stealing|Harvard|is|too|busy|getting|in|its|own|way|to|be|anything|but|frustrating|,|boring|,|and|forgettable|.\nNearly|every|attempt|at|humor|here|is|DOA|.\nCollapses|under|its|own|meager|weight|.\nThis|is|mild-mannered|,|been-there|material|given|a|pedestrian|spin|by|a|director|who|needed|a|touch|of|the|flamboyant|,|the|outrageous|.\nIf|you|adored|The|Full|Monty|so|resoundingly|that|you|'re|dying|to|see|the|same|old|thing|in|a|tired|old|setting|,|then|this|should|keep|you|reasonably|entertained|.\nTechnically|and|artistically|inept|.\nThose|who|are|only|mildly|curious|,|I|fear|,|will|be|put|to|sleep|or|bewildered|by|the|artsy|and|often|pointless|visuals|.\nThough|Tom|Shadyac|'s|film|kicks|off|spookily|enough|,|around|the|halfway|mark|it|takes|an|abrupt|turn|into|glucose|sentimentality|and|laughable|contrivance|.\nA|long|,|dull|procession|of|despair|,|set|to|cello|music|culled|from|a|minimalist|funeral|.\nCall|me|a|cold-hearted|curmudgeon|for|not|being|able|to|enjoy|a|mindless|action|movie|,|but|I|believe|a|movie|can|be|mindless|without|being|the|peak|of|all|things|insipid|.\nDeath|might|be|a|release|.\n``|(|Hopkins|)|does|n't|so|much|phone|in|his|performance|as|fax|it|.\nNo|,|even|that|'s|too|committed|.\nHe|gets|his|secretary|to|fax|it|.|''\nSodden|and|glum|,|even|in|those|moments|where|it|'s|supposed|to|feel|funny|and|light|.\nPriggish|,|lethargically|paced|parable|of|renewal|.\nA|beautifully|shot|but|dull|and|ankle-deep|`|epic|.|'\nEven|with|its|$|50-million|US|budget|,|Pinocchio|never|quite|achieves|the|feel|of|a|fanciful|motion|picture|.\nThis|is|a|third-person|story|now|,|told|by|Hollywood|,|and|much|more|ordinary|for|it|.\nThe|filmmakers|know|how|to|please|the|eye|,|but|it|is|not|always|the|prettiest|pictures|that|tell|the|best|story|.\nWritten|,|flatly|,|by|David|Kendall|and|directed|,|barely|,|by|There|'s|Something|About|Mary|co-writer|Ed|Decter|.\nThe|characters|are|interesting|and|the|relationship|between|Yosuke|and|Saeko|is|worth|watching|as|it|develops|,|but|there|'s|not|enough|to|the|story|to|fill|two|hours|.\nVery|well|made|,|but|does|n't|generate|a|lot|of|tension|.\nLike|being|invited|to|a|classy|dinner|soiree|and|not|knowing|anyone|.\nYou|leave|the|same|way|you|came|--|a|few|tasty|morsels|under|your|belt|,|but|no|new|friends|.\nIt|'s|depressing|to|see|how|far|Herzog|has|fallen|.\nThe|question|hanging|over|The|Time|Machine|is|not|,|as|the|main|character|suggests|,|`|what|if|?|'\nbut|rather|,|`|How|can|you|charge|money|for|this|?|'\nMillions|of|dollars|heaped|upon|a|project|of|such|vast|proportions|need|to|reap|more|rewards|than|spiffy|bluescreen|technique|and|stylish|weaponry|.\n``|Freaky|Friday|,|''|it|'s|not|.\nPerhaps|a|better|celebration|of|these|unfairly|dismissed|heroes|would|be|a|film|that|is|n't|this|painfully|forced|,|false|and|fabricated|.\nAlthough|no|pastry|is|violated|,|this|nasty|comedy|pokes|fun|at|the|same|easy|targets|as|other|rowdy|raunch-fests|--|farts|,|boobs|,|unmentionables|--|without|much|success|.\nIn|this|film|,|Aussie|David|Caesar|channels|the|not-quite-dead|career|of|Guy|Ritchie|.\nMaybe|you|'ll|be|lucky|,|and|there|'ll|be|a|power|outage|during|your|screening|so|you|can|get|your|money|back|.\nThe|characterizations|and|dialogue|lack|depth|or|complexity|,|with|the|ironic|exception|of|Scooter|.\nThis|film|was|made|by|and|for|those|folks|who|collect|the|serial|killer|cards|and|are|fascinated|by|the|mere|suggestion|of|serial|killers|.\nFor|the|rest|of|us|,|sitting|through|Dahmer|'s|two|hours|amounts|to|little|more|than|punishment|.\nNarc|can|only|remind|us|of|brilliant|crime|dramas|without|becoming|one|itself|.\nSomewhere|inside|the|mess|that|is|World|Traveler|,|there|is|a|mediocre|movie|trying|to|get|out|.\nA|tedious|parable|about|honesty|and|good|sportsmanship|.\nIts|strengths|and|weaknesses|play|off|each|other|virtually|to|a|stand-off|,|with|the|unfortunate|trump|card|being|the|dreary|mid-section|of|the|film|.\nAn|artful|yet|depressing|film|that|makes|a|melodramatic|mountain|out|of|the|molehill|of|a|missing|bike|.\nThe|movie|'s|ultimate|point|--|that|everyone|should|be|themselves|--|is|trite|,|but|the|screenwriter|and|director|Michel|Gondry|restate|it|to|the|point|of|ridiculousness|.\nA|glossy|knock-off|of|a|B-movie|revenge|flick|.\n...|expands|the|horizons|of|boredom|to|the|point|of|collapse|,|turning|into|a|black|hole|of|dullness|,|from|which|no|interesting|concept|can|escape|.\nIt|'s|just|plain|boring|.\nSad|nonsense|,|this|.\nBut|not|without|cheesy|fun|factor|.\nOne|of|those|decades-spanning|historical|epics|that|strives|to|be|intimate|and|socially|encompassing|but|fails|to|do|justice|to|either|effort|in|three|hours|of|screen|time|.\nReally|dumb|but|occasionally|really|funny|.\nThe|movie|wavers|between|Hallmark|card|sentimentality|and|goofy|,|life-affirming|moments|straight|out|of|a|cellular|phone|commercial|.\nThe|director|'s|many|dodges|and|turns|add|up|to|little|more|than|a|screenful|of|gamesmanship|that|'s|low|on|both|suspense|and|payoff|.\nWhile|the|transgressive|trappings|(|especially|the|frank|sex|scenes|)|ensure|that|the|film|is|never|dull|,|Rodrigues|'s|beast-within|metaphor|is|ultimately|rather|silly|and|overwrought|,|making|the|ambiguous|ending|seem|goofy|rather|than|provocative|.\nThe|satire|is|unfocused|,|while|the|story|goes|nowhere|.\nThey|threw|loads|of|money|at|an|idea|that|should|'ve|been|so|much|more|even|if|it|was|only|made|for|teenage|boys|and|wrestling|fans|.\nIt|'s|mired|in|a|shabby|script|that|piles|layer|upon|layer|of|Action|Man|cliché|atop|wooden|dialogue|and|a|shifting|tone|that|falls|far|short|of|the|peculiarly|moral|amorality|of|(|Woo|'s|)|best|work|.\nReyes|'|directorial|debut|has|good|things|to|offer|,|but|ultimately|it|'s|undone|by|a|sloppy|script\nIf|you|'re|over|25|,|have|an|IQ|over|90|,|and|have|a|driver|'s|license|,|you|should|be|able|to|find|better|entertainment|.\nThe|darker|elements|of|misogyny|and|unprovoked|violence|suffocate|the|illumination|created|by|the|two|daughters|and|the|sparse|instances|of|humor|meant|to|shine|through|the|gloomy|film|noir|veil|.\n...|the|picture|'s|cleverness|is|ironically|muted|by|the|very|people|who|are|intended|to|make|it|shine|.\nNever|does|``|Lilo|&|Stitch|''|reach|the|emotion|or|timelessness|of|Disney|'s|great|past|,|or|even|that|of|more|recent|successes|such|as|``|Mulan|''|or|``|Tarzan|.|''\nOne|of|those|so-so|films|that|could|have|been|much|better|.\nCrossroads|feels|like|a|teenybopper|Ed|Wood|film|,|replete|with|the|pubescent|scandalous|innuendo|and|the|high-strung|but|flaccid|drama|.\nFails|to|satisfactorily|exploit|its|gender|politics|,|genre|thrills|or|inherent|humor|.\nInterview|With|the|Assassin|is|structured|less|as|a|documentary|and|more|as|a|found|relic|,|and|as|such|the|film|has|a|difficult|time|shaking|its|Blair|Witch|Project|real-time|roots|.\nCacoyannis|'|vision|is|far|less|mature|,|interpreting|the|play|as|a|call|for|pity|and|sympathy|for|anachronistic|phantasms|haunting|the|imagined|glory|of|their|own|pasts|.\nIt|has|more|in|common|with|a|fireworks|display|than|a|movie|,|which|normally|is|expected|to|have|characters|and|a|storyline|.\nIt|appears|to|have|been|made|by|people|to|whom|the|idea|of|narrative|logic|or|cohesion|is|an|entirely|foreign|concept|.\nLess|a|heartfelt|appeal|for|the|handicapped|than|a|nice|Belgian|waffle|.\nIt|'s|not|helpful|to|listen|to|extremist|name-calling|,|regardless|of|whether|you|think|Kissinger|was|a|calculating|fiend|or|just|a|slippery|self-promoter|.\nAbandon|spends|90|minutes|trying|figure|out|whether|or|not|some|cocky|pseudo-intellectual|kid|has|intentionally|left|college|or|was|killed|.\nThe|only|problem|is|that|,|by|the|end|,|no|one|in|the|audience|or|the|film|seems|to|really|care|.\nNo|Such|Thing|is|sort|of|a|minimalist|Beauty|and|the|Beast|,|but|in|this|case|the|Beast|should|definitely|get|top|billing|.\nRobert|John|Burke|as|The|Monster|horns|in|and|steals|the|show|.\nDue|to|stodgy|,|soap|opera-ish|dialogue|,|the|rest|of|the|cast|comes|across|as|stick|figures|reading|lines|from|a|TelePrompTer|.\n(|T|)|he|film|is|never|sure|to|make|a|clear|point|--|even|if|it|seeks|to|rely|on|an|ambiguous|presentation|.\nWhile|it|may|not|add|up|to|the|sum|of|its|parts|,|Holofcener|'s|film|offers|just|enough|insight|to|keep|it|from|being|simpleminded|,|and|the|ensemble|cast|is|engaging|enough|to|keep|you|from|shifting|in|your|chair|too|often|.\nAn|overwrought|Taiwanese|soaper|about|three|people|and|their|mixed-up|relationship|.\nNobody|seems|to|have|cared|much|about|any|aspect|of|it|,|from|its|cheesy|screenplay|to|the|grayish|quality|of|its|lighting|to|its|last-minute|,|haphazard|theatrical|release|.\nA|thoroughly|awful|movie|--|dumb|,|narratively|chaotic|,|visually|sloppy|...|a|weird|amalgam|of|`|The|Thing|'|and|a|geriatric|`|Scream|.|'\n...|another|example|of|how|Sandler|is|losing|his|touch|.\nNothing|sticks|,|really|,|except|a|lingering|creepiness|one|feels|from|being|dragged|through|a|sad|,|sordid|universe|of|guns|,|drugs|,|avarice|and|damaged|dreams|.\nWhat|goes|on|for|the|110|minutes|of|``|Panic|Room|''|is|a|battle|of|witlessness|between|a|not-so-bright|mother|and|daughter|and|an|even|less|capable|trio|of|criminals|.\nThe|plot|'s|contrivances|are|uncomfortably|strained|.\nGuilty|of|the|worst|sin|of|attributable|to|a|movie|like|this|:|it|'s|not|scary|in|the|slightest|.\nSchnieder|bounces|around|with|limp|wrists|,|wearing|tight|tummy|tops|and|hip|huggers|,|twirling|his|hair|on|his|finger|and|assuming|that|'s|enough|to|sustain|laughs|...\nIts|simplicity|puts|an|exclamation|point|on|the|fact|that|this|is|n't|something|to|be|taken|seriously|,|but|it|also|wrecks|any|chance|of|the|movie|rising|above|similar|fare|.\nBy|the|final|whistle|you|'re|convinced|that|this|Mean|Machine|was|a|decent|TV|outing|that|just|does|n't|have|big|screen|magic|.\nTo|say|that|this|vapid|vehicle|is|downright|doltish|and|uneventful|is|just|as|obvious|as|telling|a|country|skunk|that|he|has|severe|body|odor|.\nA|film|of|empty|,|fetishistic|violence|in|which|murder|is|casual|and|fun|.\nPretend|it|'s|a|werewolf|itself|by|avoiding|eye|contact|and|walking|slowly|away|.\nIt|'s|fun|,|but|it|'s|a|real|howler|.\nSome|fine|acting|,|but|ultimately|a|movie|with|no|reason|for|being|.\nIt|'s|difficult|to|feel|anything|much|while|watching|this|movie|,|beyond|mild|disturbance|or|detached|pleasure|at|the|acting|.\nA|waterlogged|version|of|`|Fatal|Attraction|'|for|the|teeny-bopper|set|...|a|sad|,|soggy|potboiler|that|wastes|the|talents|of|its|attractive|young|leads|.\nIt|tells|its|story|in|a|flat|manner|and|leaves|you|with|the|impression|that|you|should|have|gotten|more|out|of|it|than|you|did|.\nSweet|gentle|Jesus|,|did|the|screenwriters|just|do|a|cut-and-paste|of|every|bad|action-movie|line|in|history|?\nIt|'s|not|the|worst|comedy|of|the|year|,|but|it|certainly|wo|n't|win|any|honors|.\nThis|is|for|the|most|part|a|useless|movie|,|even|with|a|great|director|at|the|helm|.\nA|loud|,|witless|mess|that|has|none|of|the|charm|and|little|of|the|intrigue|from|the|TV|series|.\nEven|on|its|own|ludicrous|terms|,|The|Sum|of|All|Fears|generates|little|narrative|momentum|,|and|invites|unflattering|comparisons|to|other|installments|in|the|Ryan|series|.\nThough|it|inspires|some|(|out-of-field|)|creative|thought|,|the|film|is|--|to|its|own|detriment|--|much|more|a|cinematic|collage|than|a|polemical|tract|.\nAs|predictable|as|the|outcome|of|a|Globetrotters-Generals|game|,|Juwanna|Mann|is|even|more|ludicrous|than|you|'d|expect|from|the|guy-in-a-dress|genre|,|and|a|personal|low|for|everyone|involved|.\nSinks|into|the|usual|cafeteria|goulash|of|fart|jokes|,|masturbation|jokes|,|and|racist|Japanese|jokes|.\nWhere|Tom|Green|stages|his|gags|as|assaults|on|America|'s|knee-jerk|moral|sanctimony|,|Jackass|lacks|aspirations|of|social|upheaval|.\nMore|of|an|intriguing|curiosity|than|a|gripping|thriller|.\nThe|April|2002|instalment|of|the|American|War|for|Independence|,|complete|with|loads|of|CGI|and|bushels|of|violence|,|but|not|a|drop|of|human|blood|.\nContains|all|the|substance|of|a|Twinkie|--|easy|to|swallow|,|but|scarcely|nourishing|.\nReturn|to|Neverland|manages|to|straddle|the|line|between|another|classic|for|the|company|and|just|another|run-of-the-mill|Disney|sequel|intended|for|the|home|video|market|.\nRarely|does|a|film|so|graceless|and|devoid|of|merit|as|this|one|come|along|.\nIt|'s|a|thin|notion|,|repetitively|stretched|out|to|feature|length|,|awash|in|self-consciously|flashy|camera|effects|,|droning|house|music|and|flat|,|flat|dialogue|.\nOn|a|certain|base|level|,|Blue|Crush|delivers|what|it|promises|,|just|not|well|enough|to|recommend|it|.\nThe|colorful|Masseur|wastes|its|time|on|mood|rather|than|riding|with|the|inherent|absurdity|of|Ganesh|'s|rise|up|the|social|ladder|.\n...|an|incredibly|heavy-handed|,|manipulative|dud|that|feels|all|too|familiar|.\nWimps|out|by|going|for|that|PG-13|rating|,|so|the|more|graphic|violence|is|mostly|off-screen|and|the|sexuality|is|muted|.\nTrapped|presents|a|frightening|and|compelling|`|What|if|?|'\nscenario|that|will|give|most|parents|pause|...|Then|,|something|terrible|happens|.\nMadonna|has|made|herself|over|so|often|now|,|there|'s|apparently|nothing|left|to|work|with|,|sort|of|like|Michael|Jackson|'s|nose|.\nNever|having|seen|the|first|two|films|in|the|series|,|I|ca|n't|compare|Friday|After|Next|to|them|,|but|nothing|would|change|the|fact|that|what|we|have|here|is|a|load|of|clams|left|in|the|broiling|sun|for|a|good|three|days|.\nThe|story|is|lacking|any|real|emotional|impact|,|and|the|plot|is|both|contrived|and|cliched|.\nA|depraved|,|incoherent|,|instantly|disposable|piece|of|hackery|.\nIt|'s|a|bad|action|movie|because|there|'s|no|rooting|interest|and|the|spectacle|is|grotesque|and|boring|.\n(|Soderbergh|)|tends|to|place|most|of|the|psychological|and|philosophical|material|in|italics|rather|than|trust|an|audience|'s|intelligence|,|and|he|creates|an|overall|sense|of|brusqueness|.\nHandsome|and|sincere|but|slightly|awkward|in|its|combination|of|entertainment|and|evangelical|boosterism|.\nSo|aggressively|cheery|that|Pollyana|would|reach|for|a|barf|bag|.\nScooby-Doo|does|n't|know|if|it|wants|to|be|a|retro-refitting|exercise|in|campy|recall|for|older|fans|or|a|silly|,|Nickelodeon-esque|kiddie|flick|.\nRussell|lacks|the|visual|panache|,|the|comic|touch|,|and|perhaps|the|budget|of|Sommers|'s|title-bout|features|.\nHighly|uneven|and|inconsistent|...|Margarita|Happy|Hour|kinda|resembles|the|el|cheapo|margaritas|served|within|.\nVery|stupid|and|annoying|.\nThe|Sum|of|All|Fears|pretends|to|be|a|serious|exploration|of|nuclear|terrorism|,|but|it|'s|really|nothing|more|than|warmed-over|Cold|War|paranoia|.\nA|listless|and|desultory|affair|.\nRepresents|the|depths|to|which|the|girls-behaving-badly|film|has|fallen|.\nHow|inept|is|Serving|Sara|?\nIt|makes|even|Elizabeth|Hurley|seem|graceless|and|ugly|.\nJam-packed|with|literally|bruising|jokes|.\nEvery|five|minutes|or|so|,|someone|gets|clocked|.\nWins|my|vote|for|`|The|2002|Enemy|of|Cinema|'|Award|.\nAny|Chekhov|is|better|than|no|Chekhov|,|but|it|would|be|a|shame|if|this|was|your|introduction|to|one|of|the|greatest|plays|of|the|last|100|years|.\nHelmer|Hudlin|tries|to|make|a|hip|comedy|,|but|his|dependence|on|slapstick|defeats|the|possibility|of|creating|a|more|darkly|edged|tome|.\nLazy|,|miserable|and|smug|.\nThis|is|one|of|the|biggest|disappointments|of|the|year|.\nFormula|51|has|dulled|your|senses|faster|and|deeper|than|any|recreational|drug|on|the|market|.\nEvery|visual|joke|is|milked|,|every|set-up|obvious|and|lengthy|,|every|punchline|predictable|.\nThere|'s|no|energy|.\nApparently|writer-director|Attal|thought|he|need|only|cast|himself|and|his|movie-star|wife|sitting|around|in|their|drawers|to|justify|a|film|.\nAfter|the|setup|,|the|air|leaks|out|of|the|movie|,|flattening|its|momentum|with|about|an|hour|to|go|.\nThis|is|a|poster|movie|,|a|mediocre|tribute|to|films|like|Them|!\nAt|three|hours|and|with|very|little|story|or|character|development|,|there|is|plenty|of|room|for|editing|,|and|a|much|shorter|cut|surely|would|have|resulted|in|a|smoother|,|more|focused|narrative|without|sacrificing|any|of|the|cultural|intrigue|.\nA|bit|too|derivative|to|stand|on|its|own|as|the|psychological|thriller|it|purports|to|be|.\nA|crude|teen-oriented|variation|on|a|theme|that|the|playwright|Craig|Lucas|explored|with|infinitely|more|grace|and|eloquence|in|his|Prelude|to|a|Kiss|.\nThe|film|'s|darker|moments|become|smoothed|over|by|an|overwhelming|need|to|tender|inspirational|tidings|,|especially|in|the|last|few|cloying|moments|.\nIf|you|recognize|Zeus|(|the|dog|from|Snatch|)|it|will|make|you|wish|you|were|at|home|watching|that|movie|instead|of|in|the|theater|watching|this|one|.\nThis|is|the|kind|of|movie|that|you|only|need|to|watch|for|about|thirty|seconds|before|you|say|to|yourself|,|`|Ah|,|yes|,|here|we|have|a|bad|,|bad|,|bad|movie|.|'\nShanghai|Ghetto|should|be|applauded|for|finding|a|new|angle|on|a|tireless|story|,|but|you|might|want|to|think|twice|before|booking|passage|.\nPlays|like|a|checklist|of|everything|Rob|Reiner|and|his|cast|were|sending|up|.\nThere|'s|too|much|forced|drama|in|this|wildly|uneven|movie|,|about|a|young|man|'s|battle|with|his|inescapable|past|and|uncertain|future|in|a|very|shapable|but|largely|unfulfilling|present|.\nIt|'s|at|once|laughable|and|compulsively|watchable|,|in|its|committed|dumbness|.\nAll|the|sensuality|,|all|the|eroticism|of|a|good|vampire|tale|has|been|,|pardon|the|pun|,|sucked|out|and|replaced|by|goth|goofiness|.\nA|cross|between|Blow|and|Boyz|N|The|Hood|,|this|movie|strives|to|be|more|,|but|does|n't|quite|get|there|.\nGood|performances|keep|it|from|being|a|total|rehash|.\nThe|screenplay|is|hugely|overwritten|,|with|tons|and|tons|of|dialogue|--|most|of|it|given|to|children|.\nTroll|the|cult|section|of|your|local|video|store|for|the|real|deal|.\nAt|times|,|the|movie|looks|genuinely|pretty|.\nYour|nightmares|,|on|the|other|hand|,|will|be|anything|but|.\nNot|even|Felinni|would|know|what|to|make|of|this|Italian|freakshow|.\nElmo|touts|his|drug|as|being|51|times|stronger|than|coke|.\nIf|you|'re|looking|for|a|tale|of|Brits|behaving|badly|,|watch|Snatch|again|.\nIt|'s|51|times|better|than|this|.\nIt|'s|difficult|to|conceive|of|anyone|who|has|reached|puberty|actually|finding|the|characters|in|Slackers|or|their|antics|amusing|,|let|alone|funny|.\nDespite|its|promising|cast|of|characters|,|Big|Trouble|remains|a|loosely|tied|series|of|vignettes|which|only|prove|that|`|zany|'|does|n't|necessarily|mean|`|funny|.|'\nBoth|shrill|and|soporific|,|and|because|everything|is|repeated|five|or|six|times|,|it|can|seem|tiresomely|simpleminded|.\nDoes|not|go|far|enough|in|its|humor|or|stock|ideas|to|stand|out|as|particularly|memorable|or|even|all|that|funny|.\nNeither|revelatory|nor|truly|edgy|--|merely|crassly|flamboyant|and|comedically|labored|.\nJust|about|everyone|involved|here|seems|to|be|coasting|.\nThere|are|a|few|modest|laughs|,|but|certainly|no|thrills|.\nFails|so|fundamentally|on|every|conventional|level|that|it|achieves|some|kind|of|goofy|grandeur|.\nThere|'s|a|persistent|theatrical|sentiment|and|a|woozy|quality|to|the|manner|of|the|storytelling|,|which|undercuts|the|devastatingly|telling|impact|of|utter|loss|personified|in|the|film|'s|simple|title|.\nWhile|Howard|'s|appreciation|of|Brown|and|his|writing|is|clearly|well-meaning|and|sincere|,|the|movie|would|be|impossible|to|sit|through|were|it|not|for|the|supporting|cast|.\nA|preposterous|,|prurient|whodunit|.\nGo|,|girls|,|right|down|the|reality|drain|.\nBoasting|some|of|the|most|poorly|staged|and|lit|action|in|memory|,|Impostor|is|as|close|as|you|can|get|to|an|imitation|movie|.\nCan|be|classified|as|one|of|those|`|alternate|reality|'|movies|...|except|that|it|would|have|worked|so|much|better|dealing|in|only|one|reality|.\nPredictable|and|cloying|,|though|Brown|Sugar|is|so|earnest|in|its|yearning|for|the|days|before|rap|went|nihilistic|that|it|summons|more|spirit|and|bite|than|your|average|formulaic|romantic|quadrangle|.\n...|unlikable|,|uninteresting|,|unfunny|,|and|completely|,|utterly|inept|.\nThe|film|is|so|busy|making|reference|to|other|films|and|trying|to|be|other|films|that|it|fails|to|have|a|heart|,|mind|or|humor|of|its|own|.\nAn|imponderably|stilted|and|self-consciously|arty|movie|.\nMuddled|,|melodramatic|paranormal|romance|is|an|all-time|low|for|Kevin|Costner|.\nToo|clumsy|in|key|moments|...|to|make|a|big|splash|.\nJust|a|bunch|of|good|actors|flailing|around|in|a|caper|that|'s|neither|original|nor|terribly|funny|.\n`|Matrix|'|-|style|massacres|erupt|throughout|...|but|the|movie|has|a|tougher|time|balancing|its|violence|with|Kafka-inspired|philosophy|.\nAt|least|it|'s|a|fairly|impressive|debut|from|the|director|,|Charles|Stone|III|.\nIt|all|unfolds|predictably|,|and|the|adventures|that|happen|along|the|way|seem|repetitive|and|designed|to|fill|time|,|providing|no|real|sense|of|suspense|.\nWanker|Goths|are|on|the|loose|!\nRun|for|your|lives|!\nWhy|would|anyone|cast|the|magnificent|Jackie|Chan|in|a|movie|full|of|stunt|doubles|and|special|effects|?\nA|grating|,|emaciated|flick|.\nUnambitious|writing|emerges|in|the|movie|,|using|a|plot|that|could|have|come|from|an|animated-movie|screenwriting|textbook|.\nPresents|a|good|case|while|failing|to|provide|a|reason|for|us|to|care|beyond|the|very|basic|dictums|of|human|decency|.\nWe|have|poignancy|jostling|against|farce|,|thoughtful|dialogue|elbowed|aside|by|one-liners|,|and|a|visual|style|that|incorporates|rotoscope|animation|for|no|apparent|reason|except|,|maybe|,|that|it|looks|neat|.\nAccording|to|the|script|,|Grant|and|Bullock|'s|characters|are|made|for|each|other|.\nBut|you|'d|never|guess|that|from|the|performances|.\nThe|animation|merely|serves|up|a|predictable|,|maudlin|story|that|swipes|heavily|from|Bambi|and|The|Lion|King|,|yet|lacks|the|emotional|resonance|of|either|of|those|movies|.\nArarat|feels|like|a|book|report\nSteve|Oedekerk|is|,|alas|,|no|Woody|Allen|.\nA|lot|like|the|imaginary|sport|it|projects|onto|the|screen|--|loud|,|violent|and|mindless|.\nAn|amalgam|of|The|Fugitive|,|Blade|Runner|,|and|Total|Recall|,|only|without|much|energy|or|tension|.\nThe|acting|is|amateurish|,|the|cinematography|is|atrocious|,|the|direction|is|clumsy|,|the|writing|is|insipid|and|the|violence|is|at|once|luridly|graphic|and|laughably|unconvincing|.\nShows|that|Jackie|Chan|is|getting|older|,|and|that|'s|something|I|would|rather|live|in|denial|about\nWith|miscast|leads|,|banal|dialogue|and|an|absurdly|overblown|climax|,|Killing|Me|Softly|belongs|firmly|in|the|so-bad-it|'s|-|good|camp|.\nAlas|,|the|black-and-white|archival|footage|of|their|act|showcases|pretty|mediocre|shtick|.\nThe|slapstick|is|labored|,|and|the|bigger|setpieces|flat|.\nThis|is|the|kind|of|movie|where|people|who|have|never|picked|a|lock|do|so|easily|after|a|few|tries|and|become|expert|fighters|after|a|few|weeks|.\nThe|problem|with|the|mayhem|in|Formula|51|is|not|that|it|'s|offensive|,|but|that|it|'s|boring|.\nMuch|of|the|digitally|altered|footage|appears|jagged|,|as|if|filmed|directly|from|a|television|monitor|,|while|the|extensive|use|of|stock|footage|quickly|becomes|a|tiresome|cliché|.\nthe|film|never|rises|above|a|conventional|,|two|dimension|tale\nMark|Wahlberg|...|may|look|classy|in|a|'60s|-|homage|pokepie|hat|,|but|as|a|character|he|'s|dry|,|dry|,|dry|.\nTold|in|scattered|fashion|,|the|movie|only|intermittently|lives|up|to|the|stories|and|faces|and|music|of|the|men|who|are|its|subject|.\nThe|irony|is|that|this|film|'s|cast|is|uniformly|superb|;|their|performances|could|have|--|should|have|--|been|allowed|to|stand|on|their|own|.\nNow|I|can|see|why|people|thought|I|was|too|hard|on|``|The|Mothman|Prophecies|''|.\nIf|ever|a|concept|came|handed|down|from|the|movie|gods|on|a|silver|platter|,|this|is|it|.\nIf|ever|such|a|dependable|concept|was|botched|in|execution|,|this|is|it|.\nWith|an|unusual|protagonist|(|a|kilt-wearing|Jackson|)|and|subject|matter|,|the|improbable|``|Formula|51|''|is|somewhat|entertaining|,|but|it|could|have|been|much|stronger|.\nSandra|Bullock|'s|best|dramatic|performance|to|date|(|is|)|almost|enough|to|lift|(|this|)|thrill-kill|cat-and-mouser|...|above|its|paint-by-numbers|plot|.\nA|feel-good|movie|that|does|n't|give|you|enough|to|feel|good|about|.\nAdolescents|will|be|adequately|served|by|the|movie|'s|sophomoric|blend|of|shenanigans|and|slapstick|,|although|the|more|lascivious-minded|might|be|disappointed|in|the|relative|modesty|of|a|movie|that|sports|a|`|topless|tutorial|service|.|'\nThis|mistaken-identity|picture|is|so|film-culture|referential|that|the|final|product|is|a|ghost|.\nThe|picture|emerges|as|a|surprisingly|anemic|disappointment|.\nDe|Niro|cries|.\nYou|'ll|cry|for|your|money|back|.\nSlap|me|,|I|saw|this|movie|.\n(|The|kid|'s|)|just|too|bratty|for|sympathy|,|and|as|the|film|grows|to|its|finale|,|his|little|changes|ring|hollow|.\nBehind|the|glitz|,|Hollywood|is|sordid|and|disgusting|.\nQuelle|surprise|!\nScherfig|,|who|has|had|a|successful|career|in|TV|,|tackles|more|than|she|can|handle|.\nJust|consider|what|New|Best|Friend|does|not|have|,|beginning|with|the|minor|omission|of|a|screenplay|.\nOscar|caliber|cast|does|n't|live|up|to|material\nThe|problems|of|the|people|in|Love|in|the|Time|of|Money|are|hardly|specific|to|their|era|.\nThey|just|have|problems|,|which|are|neither|original|nor|are|presented|in|convincing|way|.\nCarrying|this|wafer-thin|movie|on|his|nimble|shoulders|,|Chan|wades|through|putrid|writing|,|direction|and|timing|with|a|smile|that|says|,|`|If|I|stay|positive|,|maybe|I|can|channel|one|of|my|greatest|pictures|,|Drunken|Master|.|'\nSo|putrid|it|is|not|worth|the|price|of|the|match|that|should|be|used|to|burn|every|print|of|the|film|.\nIn|the|end|,|the|movie|bogs|down|in|insignificance|,|saying|nothing|about|Kennedy|'s|assassination|and|revealing|nothing|about|the|pathology|it|pretends|to|investigate|.\nStarts|out|ballsy|and|stylish|but|fails|to|keep|it|up|and|settles|into|clichés|.\nSometimes|makes|less|sense|than|the|Bruckheimeresque|American|action|flicks|it|emulates|.\nOne|of|those|films|where|the|characters|inhabit|that|special|annex|of|hell|where|adults|behave|like|kids|,|children|behave|like|adults|and|everyone|screams|at|the|top|of|their|lungs|no|matter|what|the|situation|.\nThere|'s|only|one|way|to|kill|Michael|Myers|for|good|:|stop|buying|tickets|to|these|movies|.\n`|Rare|Birds|'|tries|to|force|its|quirkiness|upon|the|audience|.\nThe|movie|is|about|as|humorous|as|watching|your|favorite|pet|get|buried|alive|.\nResident|Evil|is|what|comes|from|taking|John|Carpenter|'s|Ghosts|of|Mars|and|eliminating|the|beheadings|.\nIn|other|words|,|about|as|bad|a|film|you|'re|likely|to|see|all|year|.\nFive|screenwriters|are|credited|with|the|cliché-laden|screenplay|;|it|seems|as|if|each|watered|down|the|version|of|the|one|before|.\nThe|whole|thing|comes|off|like|a|particularly|amateurish|episode|of|Bewitched|that|takes|place|during|Spring|Break|.\nWell|made|but|uninvolving|,|Bloodwork|is|n't|a|terrible|movie|,|just|a|stultifyingly|obvious|one|--|an|unrewarding|collar|for|a|murder|mystery|.\nSo|we|got|Ten|Little|Indians|meets|Friday|the|13th|by|way|of|Clean|and|Sober|,|filmed|on|the|set|of|Carpenter|'s|The|Thing|and|loaded|with|actors|you|'re|most|likely|to|find|on|the|next|inevitable|incarnation|of|The|Love|Boat|.\nThe|movie|'s|blatant|derivativeness|is|one|reason|it|'s|so|lackluster|.\nKids|do|n't|mind|crappy|movies|as|much|as|adults|,|provided|there|'s|lots|of|cute|animals|and|clumsy|people|.\n`|Snow|Dogs|'|has|both|.\nIt|'s|almost|as|if|it|'s|an|elaborate|dare|more|than|a|full-blooded|film|.\nWobbly|Senegalese|updating|of|``|Carmen|''|which|is|best|for|the|stunning|star|turn|by|Djeinaba|Diop|Gai\nIt|'s|the|humanizing|stuff|that|will|probably|sink|the|film|for|anyone|who|does|n't|think|about|percentages|all|day|long|.\nKen|Russell|would|love|this|.\nIn|one|scene|,|we|get|a|stab|at|soccer|hooliganism|,|a|double-barreled|rip-off|of|Quentin|Tarantino|'s|climactic|shootout|--|and|Meat|Loaf|explodes|.\nBella|is|the|picture|of|health|with|boundless|energy|until|a|few|days|before|she|dies|.\nThis|is|absolutely|and|completely|ridiculous|and|an|insult|to|every|family|whose|mother|has|suffered|through|the|horrible|pains|of|a|death|by|cancer|.\nThe|premise|of|``|Abandon|''|holds|promise|,|...|but|its|delivery|is|a|complete|mess|.\nWhat|could|have|been|a|pointed|little|chiller|about|the|frightening|seductiveness|of|new|technology|loses|faith|in|its|own|viability|and|succumbs|to|joyless|special-effects|excess|.\nA|little|too|ponderous|to|work|as|shallow|entertainment|,|not|remotely|incisive|enough|to|qualify|as|drama|,|Monsoon|Wedding|serves|mostly|to|whet|one|'s|appetite|for|the|Bollywood|films|.\nUnless|Bob|Crane|is|someone|of|particular|interest|to|you|,|this|film|'s|impressive|performances|and|adept|direction|are|n't|likely|to|leave|a|lasting|impression|.\nThe|Rock|has|a|great|presence|but|one|battle|after|another|is|not|the|same|as|one|battle|followed|by|killer|CGI|effects|.\nThe|bottom|line|with|Nemesis|is|the|same|as|it|has|been|with|all|the|films|in|the|series|:|Fans|will|undoubtedly|enjoy|it|,|and|the|uncommitted|need|n't|waste|their|time|on|it|.\nThe|lousy|John|Q|all|but|spits|out|Denzel|Washington|'s|fine|performance|in|the|title|role|.\nThe|whole|thing|feels|like|a|ruse|,|a|tactic|to|cover|up|the|fact|that|the|picture|is|constructed|around|a|core|of|flimsy|--|or|,|worse|yet|,|nonexistent|--|ideas|.\nWhat|a|stiflingly|unfunny|and|unoriginal|mess|this|is|!\nThe|film|is|so|packed|with|subplots|involving|the|various|Silbersteins|that|it|feels|more|like|the|pilot|episode|of|a|TV|series|than|a|feature|film|.\nOpera|on|film|is|never|satisfactory|.\nThe|art|demands|live|viewing|.\nThe|innate|theatrics|that|provide|its|thrills|and|extreme|emotions|lose|their|luster|when|flattened|onscreen|.\nDespite|all|the|closed-door|hanky-panky|,|the|film|is|essentially|juiceless|.\nIt|is|parochial|,|accessible|to|a|chosen|few|,|standoffish|to|everyone|else|,|and|smugly|suggests|a|superior|moral|tone|is|more|important|than|filmmaking|skill\nThe|Sweetest|Thing|leaves|an|awful|sour|taste|.\nIt|'s|lost|the|politics|and|the|social|observation|and|become|just|another|situation|romance|about|a|couple|of|saps|stuck|in|an|inarticulate|screenplay|.\nTerminally|bland|,|painfully|slow|and|needlessly|confusing|...|The|movie|,|shot|on|digital|videotape|rather|than|film|,|is|frequently|indecipherable|.\nAs|dumb|and|cheesy|as|they|may|be|,|the|cartoons|look|almost|Shakespearean|--|both|in|depth|and|breadth|--|after|watching|this|digital-effects-heavy|,|supposed|family-friendly|comedy|.\nAloof|and|lacks|any|real|raw|emotion|,|which|is|fatal|for|a|film|that|relies|on|personal|relationships|.\nA|low-rent|retread|of|the|Alien|pictures|.\nServiceable|at|best|,|slightly|less|than|serviceable|at|worst|.\nIts|initial|excitement|settles|into|a|warmed|over|pastiche|.\nA|big|meal|of|cliches|that|the|talented|cast|generally|chokes|on|.\nThe|story|has|little|wit|and|no|surprises|.\nThe|Merchant-Ivory|team|continues|to|systematically|destroy|everything|we|hold|dear|about|cinema|,|only|now|it|'s|begun|to|split|up|so|that|it|can|do|even|more|damage|.\nWhat|should|have|been|a|cutting|Hollywood|satire|is|instead|about|as|fresh|as|last|week|'s|issue|of|Variety|.\nHey|everybody|,|wanna|watch|a|movie|in|which|a|guy|dressed|as|a|children|'s|party|clown|gets|violently|gang-raped|?\nI|did|n't|think|so|.\nA|little|more|intensity|and|a|little|less|charm|would|have|saved|this|film|a|world|of|hurt|.\n(|T|)|his|slop|does|n't|even|have|potential|as|a|cult|film|,|as|it|'s|too|loud|to|shout|insults|at|the|screen|.\nThe|movie|'s|plot|is|almost|entirely|witless|and|inane|,|carrying|every|gag|two|or|three|times|beyond|its|limit|to|sustain|a|laugh|.\n...|may|work|as|an|addictive|guilty|pleasure|but|the|material|never|overcomes|its|questionable|satirical|ambivalence|.\nThis|Scarlet|'s|letter|is|A.|.|.\nas|in|aimless|,|arduous|,|and|arbitrary|.\nPlays|like|a|glossy|melodrama|that|occasionally|verges|on|camp|.\nThe|central|character|is|n't|complex|enough|to|hold|our|interest|.\nA|modestly|comic|,|modestly|action-oriented|World|War|II|adventure|that|,|in|terms|of|authenticity|,|is|one|of|those|films|that|requires|the|enemy|to|never|shoot|straight|.\nA|puppy|dog|so|desperate|for|attention|it|nearly|breaks|its|little|neck|trying|to|perform|entertaining|tricks|.\nJust|about|all|of|the|film|is|confusing|on|one|level|or|another|,|making|Ararat|far|more|demanding|than|it|needs|to|be|.\nA|little|less|extreme|than|in|the|past|,|with|longer|exposition|sequences|between|them|,|and|with|fewer|gags|to|break|the|tedium|.\nThere|'s|a|heavy|stench|of|`|been|there|,|done|that|'|hanging|over|the|film|.\nIt|'s|everything|you|'d|expect|--|but|nothing|more|.\nThe|biggest|problem|with|Satin|Rouge|is|Lilia|herself|.\nShe|'s|a|cipher|,|played|by|an|actress|who|smiles|and|frowns|but|does|n't|reveal|an|inner|life|.\nA|quaint|,|romanticized|rendering|.\nWhat|with|the|incessant|lounge|music|playing|in|the|film|'s|background|,|you|may|mistake|Love|Liza|for|an|Adam|Sandler|Chanukah|song|.\nThe|movie|'s|heavy-handed|screenplay|navigates|a|fast|fade|into|pomposity|and|pretentiousness|.\nA|potentially|good|comic|premise|and|excellent|cast|are|terribly|wasted|.\nWoody|Allen|used|to|ridicule|movies|like|Hollywood|Ending|.\nNow|he|makes|them|.\nShe|'s|not|yet|an|actress|,|not|quite|a|singer|...\nNot|a|bad|premise|,|but|the|execution|is|lackluster|at|best|.\nBeen|there|done|that|.\nThere|is|only|so|much|baked|cardboard|I|need|to|chew|.\nA|movie|like|The|Guys|is|why|film|criticism|can|be|considered|work|.\nSchnitzler|'s|film|has|a|great|hook|,|some|clever|bits|and|well-drawn|,|if|standard|issue|,|characters|,|but|is|still|only|partly|satisfying|.\nEven|if|it|made|its|original|release|date|last|fall|,|it|would|'ve|reeked|of|a|been-there|,|done-that|sameness|.\nOnly|two-fifths|of|a|satisfying|movie|experience|.\nA|loud|,|ugly|,|irritating|movie|without|any|of|its|satirical|salvos|hitting|a|discernible|target|.\nA|movie|version|of|a|paint-by-numbers|picture|.\nWe|can|tell|what|it|is|supposed|to|be|,|but|ca|n't|really|call|it|a|work|of|art|.\nIt|'s|a|brilliant|,|honest|performance|by|Nicholson|,|but|the|film|is|an|agonizing|bore|except|when|the|fantastic|Kathy|Bates|turns|up|.\nBravado|Kathy|!\n...|Liotta|is|put|in|an|impossible|spot|because|his|character|'s|deceptions|ultimately|undo|him|and|the|believability|of|the|entire|scenario|.\nToo|bad|.\nYou|can|thank|me|for|this|.\nI|saw|Juwanna|Mann|so|you|do|n't|have|to|.\nUnfunny|and|lacking|any|sense|of|commitment|to|or|affection|for|its|characters|,|the|Reginald|Hudlin|comedy|relies|on|toilet|humor|,|ethnic|slurs|.\nBasically|,|it|'s|pretty|but|dumb|.\nThis|romantic\\/comedy|asks|the|question|how|much|souvlaki|can|you|take|before|indigestion|sets|in|.\nSquandering|his|opportunity|to|make|absurdist|observations|,|Burns|gets|caught|up|in|the|rush|of|slapstick|thoroughfare|.\nThere|'s|a|neat|twist|,|subtly|rendered|,|that|could|have|wrapped|things|up|at|80|minutes|,|but|Kang|tacks|on|three|or|four|more|endings|.\nReeboir|varies|between|a|sweet|smile|and|an|angry|bark|,|while|Said|attempts|to|wear|down|possible|pupils|through|repetition|.\nIt|has|no|affect|on|the|Kurds|,|but|it|wore|me|down|.\nThe|actors|improvise|and|scream|their|way|around|this|movie|directionless|,|lacking|any|of|the|rollicking|dark|humor|so|necessary|to|make|this|kind|of|idea|work|on|screen|.\nCo-writer\\/director|Jonathan|Parker|'s|attempts|to|fashion|a|Brazil-like|,|hyper-real|satire|fall|dreadfully|short|.\nIf|this|silly|little|cartoon|can|inspire|a|few|kids|not|to|grow|up|to|be|greedy|bastards|,|more|power|to|it|.\nA|superfluous|sequel|...|plagued|by|that|old|familiar|feeling|of|`|let|'s|get|this|thing|over|with|'|:|Everyone|has|shown|up|at|the|appointed|time|and|place|,|but|visible|enthusiasm|is|mighty|hard|to|find|.\nIf|there|'s|a|heaven|for|bad|movies|,|Deuces|Wild|is|on|its|way|.\nComes|off|like|a|bad|imitation|of|the|Bard|.\nWhat|'s|missing|in|Murder|by|Numbers|is|any|real|psychological|grounding|for|the|teens|'|deviant|behaviour|.\nBeing|latently|gay|and|liking|to|read|are|hardly|enough|.\nAn|uninspired|preachy|and|clichéd|war|film|.\nHorrendously|amateurish|filmmaking|that|is|plainly|dull|and|visually|ugly|when|it|is|n't|incomprehensible|.\nA|movie|that|harps|on|media-constructed|`|issues|'|like|whether|compromise|is|the|death|of|self|...|this|Orgasm|(|wo|n't|be|an|)|exceedingly|memorable|one|for|most|people|.\nSlackers|'|jokey|approach|to|college|education|is|disappointingly|simplistic|--|the|film|'s|biggest|problem|--|and|there|are|no|unforgettably|stupid|stunts|or|uproariously|rude|lines|of|dialogue|to|remember|it|by|.\nIf|Festival|in|Cannes|nails|hard|-|boiled|Hollywood|argot|with|a|bracingly|nasty|accuracy|,|much|about|the|film|,|including|some|of|its|casting|,|is|frustratingly|unconvincing|.\nThe|movie|is|too|impressed|with|its|own|solemn|insights|to|work|up|much|entertainment|value|.\nI|have|n't|seen|such|self-amused|trash|since|Freddy|Got|Fingered|.\nLittle|more|than|a|well-mounted|history|lesson|.\nRob|Schneider|'s|infantile|cross-dressing|routines|fill|The|Hot|Chick|,|the|latest|gimmick|from|this|unimaginative|comedian|.\nA|horrible|,|99-minute|stink|bomb|.\nThe|film|is|weighed|down|by|supporting|characters|who|are|either|too|goodly|,|wise|and|knowing|or|downright|comically|evil|.\nThe|film|is|so|bad|it|does|n't|improve|upon|the|experience|of|staring|at|a|blank|screen|.\nSheridan|'s|take|on|the|author|'s|schoolboy|memoir|...|is|a|rather|toothless|take|on|a|hard|young|life|.\nIt|jumps|around|with|little|logic|or|continuity|,|presenting|backstage|bytes|of|information|that|never|amount|to|a|satisfying|complete|picture|of|this|particular|,|anciently|demanding|métier|.\nHow|I|Killed|My|Father|is|one|of|those|art|house|films|that|makes|you|feel|like|you|'re|watching|an|iceberg|melt|--|only|it|never|melts|.\nWhen|it|comes|to|the|battle|of|Hollywood|vs.|Woo|,|it|looks|like|Woo|'s|a|P.O.W.\nThere|are|a|few|chuckles|,|but|not|a|single|gag|sequence|that|really|scores|,|and|the|stars|seem|to|be|in|two|different|movies|.\nThe|Chateau|has|one|very|funny|joke|and|a|few|other|decent|ones|,|but|all|it|amounts|to|is|a|mildly|funny|,|sometimes|tedious|,|ultimately|insignificant|film|.\nIt|'s|dull|,|spiritless|,|silly|and|monotonous|:|an|ultra-loud|blast|of|pointless|mayhem|,|going|nowhere|fast|.\nThe|mushy|finale|turns|John|Q|into|a|movie-of-the-week|tearjerker|.\nContent|merely|to|lionize|its|title|character|and|exploit|his|anger|-|all|for|easy|sanctimony|,|formulaic|thrills|and|a|ham-fisted|sermon|on|the|need|for|national|health|insurance|.\nThe|movie|turns|out|to|be|(|Assayas|'|)|homage|to|the|Gallic|`|tradition|of|quality|,|'|in|all|its|fusty|squareness|.\nIts|message|has|merit|and|,|in|the|hands|of|a|brutally|honest|individual|like|Prophet|Jack|,|might|have|made|a|point|or|two|regarding|life|.\n(|Seems|)|even|more|uselessly|redundant|and|shamelessly|money-grubbing|than|most|third-rate|horror|sequels|.\nIt|'s|hard|to|imagine|that|even|very|small|children|will|be|impressed|by|this|tired|retread|.\nNeither|as|scary-funny|as|Tremors|nor|demented-funny|as|Starship|Troopers|,|the|movie|is|n't|tough|to|take|as|long|as|you|'ve|paid|a|matinee|price|.\nIf|swimfan|does|catch|on|,|it|may|be|because|teens|are|looking|for|something|to|make|them|laugh|.\nWhat|might|'ve|been|an|exhilarating|exploration|of|an|odd|love|triangle|becomes|a|sprawl|of|uncoordinated|vectors|.\nThe|Master|of|Disguise|may|have|made|a|great|Saturday|Night|Live|sketch|,|but|a|great|movie|it|is|not|.\nIt|'s|quite|an|achievement|to|set|and|shoot|a|movie|at|the|Cannes|Film|Festival|and|yet|fail|to|capture|its|visual|appeal|or|its|atmosphere|.\nBoll|uses|a|lot|of|quick|cutting|and|blurry|step-printing|to|goose|things|up|,|but|dopey|dialogue|and|sometimes|inadequate|performances|kill|the|effect|.\nIt|'s|always|disappointing|when|a|documentary|fails|to|live|up|to|--|or|offer|any|new|insight|into|--|its|chosen|topic|.\nUnfortunately|,|that|'s|precisely|what|Arthur|Dong|'s|Family|Fundamentals|does|.\nHas|the|marks|of|a|septuagenarian|;|it|'s|a|crusty|treatment|of|a|clever|gimmick|.\nLike|a|medium-grade|network|sitcom|--|mostly|inoffensive|,|fitfully|amusing|,|but|ultimately|so|weightless|that|a|decent|draft|in|the|auditorium|might|blow|it|off|the|screen|.\nSomething|must|have|been|lost|in|the|translation|.\nBecomes|the|last|thing|you|would|expect|from|a|film|with|this|title|or|indeed|from|any|Plympton|film|:|boring|.\nIn|the|end|,|the|film|feels|homogenized|and|a|bit|contrived|,|as|if|we|'re|looking|back|at|a|tattered|and|ugly|past|with|rose-tinted|glasses|.\nChan|'s|stunts|are|limited|and|so|embellished|by|editing|that|there|'s|really|not|much|of|a|sense|of|action|or|even|action-comedy|.\nRock|'s|stand-up|magic|wanes|.\nHopkins|,|squarely|fills|the|screen|.\nAction|-|mechanical|.\n``|The|Tuxedo|''|should|have|been|the|vehicle|for|Chan|that|``|The|Mask|''|was|for|Jim|Carrey|.\nAlas|,|it|'s|the|man|that|makes|the|clothes|.\nFor|casual|moviegoers|who|stumble|into|Rules|expecting|a|slice|of|American|Pie|hijinks|starring|the|kid|from|Dawson|'s|Creek|,|they|'ll|probably|run|out|screaming|.\nThe|biggest|problem|I|have|(|other|than|the|very|sluggish|pace|)|is|we|never|really|see|her|Esther|blossom|as|an|actress|,|even|though|her|talent|is|supposed|to|be|growing|.\nWhat|puzzles|me|is|the|lack|of|emphasis|on|music|in|Britney|Spears|'|first|movie|.\nPlot|,|characters|,|drama|,|emotions|,|ideas|--|all|are|irrelevant|to|the|experience|of|seeing|The|Scorpion|King|.\nCity|by|the|Sea|is|a|gritty|police|thriller|with|all|the|dysfunctional|family|dynamics|one|could|wish|for|.\nBut|how|it|washed|out|despite|all|of|that|is|the|project|'s|prime|mystery|.\nWhatever|the|movie|'s|sentimental|,|hypocritical|lessons|about|sexism|,|its|true|colors|come|out|in|various|wet|T-shirt|and|shower|scenes|.\nAs|a|hybrid|teen|thriller|and|murder|mystery|,|Murder|by|Numbers|fits|the|profile|too|closely|.\nThere|ai|n't|a|lot|more|painful|than|an|unfunny|movie|that|thinks|it|'s|hilarious|.\nI|enjoyed|the|movie|in|a|superficial|way|,|while|never|sure|what|its|purpose|was|.\nWhat|a|pity|...|that|the|material|is|so|second-rate|.\nDoes|n't|deliver|a|great|story|,|nor|is|the|action|as|gripping|as|in|past|Seagal|films|.\nThe|kind|of|film|that|leaves|you|scratching|your|head|in|amazement|over|the|fact|that|so|many|talented|people|could|participate|in|such|an|ill-advised|and|poorly|executed|idea|.\nNicks|refuses|to|let|Slackers|be|seen|as|just|another|teen|movie|,|which|means|he|can|be|forgiven|for|frequently|pandering|to|fans|of|the|gross-out|comedy|.\nNothing|about|the|film|--|with|the|possible|exception|of|Elizabeth|Hurley|'s|breasts|--|is|authentic|.\nAmid|the|cliché|and|foreshadowing|,|Cage|manages|a|degree|of|casual|realism|...|that|is|routinely|dynamited|by|Blethyn|.\nMostly|,|Shafer|and|co-writer|Gregory|Hinton|lack|a|strong-minded|viewpoint|,|or|a|sense|of|humor|.\nNo|cliche|escapes|the|perfervid|treatment|of|gang|warfare|called|ces|Wild|.\nEddie|Murphy|and|Owen|Wilson|have|a|cute|partnership|in|I|Spy|,|but|the|movie|around|them|is|so|often|nearly|nothing|that|their|charm|does|n't|do|a|load|of|good|.\nStrictly|a|`|guy|'s|film|'|in|the|worst|sense|of|the|expression|.\nThere|'s|some|good|material|in|their|story|about|a|retail|clerk|wanting|more|out|of|life|,|but|the|movie|too|often|spins|its|wheels|with|familiar|situations|and|repetitive|scenes|.\nIt|'s|a|lot|to|ask|people|to|sit|still|for|two|hours|and|change|watching|such|a|character|,|especially|when|rendered|in|as|flat|and|impassive|a|manner|as|Phoenix|'s|.\nThere|'s|something|fishy|about|a|seasonal|holiday|kids|'|movie|...|that|derives|its|moment|of|most|convincing|emotional|gravity|from|a|scene|where|Santa|gives|gifts|to|grownups|.\nWe|'re|left|with|a|story|that|tries|to|grab|us|,|only|to|keep|letting|go|at|all|the|wrong|moments|.\nLike|many|such|biographical|melodramas|,|it|suffers|from|the|awkwardness|that|results|from|adhering|to|the|messiness|of|true|stories|.\nThere|is|nothing|redeeming|about|this|movie|.\nThe|film|has|(|its|)|moments|,|but|they|are|few|and|far|between|.\nI|was|trying|to|decide|what|annoyed|me|most|about|God|is|Great|...|I|'m|Not|,|and|then|I|realized|that|I|just|did|n't|care|.\nDerailed|by|bad|writing|and|possibly|also|by|some|of|that|extensive|post-production|reworking|to|aim|the|film|at|young|males|in|the|throes|of|their|first|full|flush|of|testosterone|.\nDeserves|high|marks|for|political|courage|but|barely|gets|by|on|its|artistic|merits|.\n...|comes|alive|only|when|it|switches|gears|to|the|sentimental|.\nBrosnan|'s|finest|non-Bondish|performance|yet|fails|to|overcome|the|film|'s|manipulative|sentimentality|and|annoying|stereotypes|.\nA|film|that|will|be|best|appreciated|by|those|willing|to|endure|its|extremely|languorous|rhythms|,|Waiting|for|Happiness|is|ultimately|thoughtful|without|having|much|dramatic|impact|.\nTo|me|,|it|sounds|like|a|cruel|deception|carried|out|by|men|of|marginal|intelligence|,|with|reactionary|ideas|about|women|and|a|total|lack|of|empathy|.\nTsai|may|be|ploughing|the|same|furrow|once|too|often|.\nFlashy|gadgets|and|whirling|fight|sequences|may|look|cool|,|but|they|ca|n't|distract|from|the|flawed|support|structure|holding|Equilibrium|up|.\nZigZag|might|have|been|richer|and|more|observant|if|it|were|less|densely|plotted|.\nHow|can|such|a|cold|movie|claim|to|express|warmth|and|longing|?\nIn|truth|,|it|has|all|the|heart|of|a|porno|flick|(|but|none|of|the|sheer|lust|)|.\nNicks|and|Steinberg|match|their|own|creations|for|pure|venality|--|that|'s|giving|it|the|old|college|try|.\nEpisode|II|--|Attack|of|the|Clones|is|a|technological|exercise|that|lacks|juice|and|delight|.\nThe|problem|with|all|of|this|:|It|'s|not|really|funny|.\n(|Denis|'|)|bare-bones|narrative|more|closely|resembles|an|outline|for|a|'70s|exploitation|picture|than|the|finished|product|.\nWanders|all|over|the|map|thematically|and|stylistically|,|and|borrows|heavily|from|Lynch|,|Jeunet|,|and|von|Trier|while|failing|to|find|a|spark|of|its|own|.\nViewing|this|underdramatized|but|overstated|film|is|like|watching|a|transcript|of|a|therapy|session|brought|to|humdrum|life|by|some|Freudian|puppet|.\nOverall|tomfoolery|like|this|is|a|matter|of|taste|.\nThe|mantra|behind|the|project|seems|to|have|been|`|it|'s|just|a|kids|'|flick|.|'\nTranslation|:|`|We|do|n't|need|to|try|very|hard|.|'\nIn|all|the|annals|of|the|movies|,|few|films|have|been|this|odd|,|inexplicable|and|unpleasant|.\nIt|takes|a|really|long|,|slow|and|dreary|time|to|dope|out|what|TUCK|EVERLASTING|is|about|.\nSo|here|it|is|:|It|'s|about|a|family|of|sour|immortals|.\nan|essentially|awkward|version|of|the|lightweight|female|empowerment|picture|we|'ve|been|watching|for|decades\nThe|author|'s|devotees|will|probably|find|it|fascinating|;|others|may|find|it|baffling|.\nWriter-director|Walter|Hill|and|co-writer|David|Giler|try|to|create|characters|out|of|the|obvious|cliches|,|but|wind|up|using|them|as|punching|bags|.\nThere|'s|a|scientific|law|to|be|discerned|here|that|producers|would|be|well|to|heed|:|Mediocre|movies|start|to|drag|as|soon|as|the|action|speeds|up|;|when|the|explosions|start|,|they|fall|to|pieces|.\nA|cockeyed|shot|all|the|way|.\nLush|and|beautifully|photographed|(|somebody|suggested|the|stills|might|make|a|nice|coffee|table|book|)|,|but|ultimately|you|'ll|leave|the|theater|wondering|why|these|people|mattered|.\nUnfortunately|,|One|Hour|Photo|lives|down|to|its|title|.\nThanks|largely|to|Williams|,|all|the|interesting|developments|are|processed|in|60|minutes|--|the|rest|is|just|an|overexposed|waste|of|film|.\nCold|,|Sterile|And|Lacking|Any|Color|Or|Warmth|.\nThe|film|is|undone|by|anachronistic|quick|edits|and|occasional|jarring|glimpses|of|a|modern|theater|audience|watching|the|events|unfold|.\nSeems|like|someone|going|through|the|motions|.\nFor|a|film|about|explosions|and|death|and|spies|,|``|Ballistic|:|Ecks|vs.|Sever|''|seems|as|safe|as|a|children|'s|film|.\nWell|,|in|some|of|those|,|the|mother|deer|even|dies|.\nWallace|gets|a|bit|heavy|handed|with|his|message|at|times|,|and|has|a|visual|flair|that|waxes|poetic|far|too|much|for|our|taste|.\nImpostor|does|n't|do|much|with|its|template|,|despite|a|remarkably|strong|cast|.\nWraps|itself|in|the|guise|of|a|dark|and|quirky|comedy|,|but|it|is|n't|as|quirky|as|it|thinks|it|is|and|its|comedy|is|generally|mean-spirited|.\nChoppy|,|overlong|documentary|about|`|The|Lifestyle|.|'\nOne|sloughs|one|'s|way|through|the|mire|of|this|alleged|psychological|thriller|in|search|of|purpose|or|even|a|plot|.\nA|film|which|presses|familiar|Herzog|tropes|into|the|service|of|a|limpid|and|conventional|historical|fiction|,|when|really|what|we|demand|of|the|director|is|to|be|mesmerised|.\nIt|'s|a|fanboy|`|what|if|?|'\nbrought|to|life|on|the|big|screen|.\nThe|story|itself|is|actually|quite|vapid|.\nIt|'s|a|hellish|,|numbing|experience|to|watch|,|and|it|does|n't|offer|any|insights|that|have|n't|been|thoroughly|debated|in|the|media|already|,|back|in|the|Dahmer|heyday|of|the|mid|-|'90s|.\nWait|for|pay|per|view|or|rental|but|do|n't|dismiss|BarberShop|out|of|hand|.\nA|few|zingers|aside|,|the|writing|is|indifferent|,|and|Jordan|Brady|'s|direction|is|prosaic|.\nEach|scene|drags|,|underscoring|the|obvious|,|and|sentiment|is|slathered|on|top|.\nWould|'ve|been|nice|if|the|screenwriters|had|trusted|audiences|to|understand|a|complex|story|,|and|left|off|the|film|'s|predictable|denouement|.\nThen|Nadia|'s|birthday|might|not|have|been|such|a|bad|day|after|all|.\nOne|of|those|staggeringly|well-produced|,|joylessly|extravagant|pictures|that|keep|whooshing|you|from|one|visual|marvel|to|the|next|,|hastily|,|emptily|.\nNair|just|does|n't|have|the|necessary|self-control|to|guide|a|loose|,|poorly|structured|film|through|the|pitfalls|of|incoherence|and|redundancy|.\nEnthusiastically|taking|up|the|current|teen|movie|concern|with|bodily|functions|,|Walt|Becker|'s|film|pushes|all|the|demographically|appropriate|comic|buttons|.\nIt|'s|the|funniest|American|comedy|since|Graffiti|Bridge|.\nThat|neither|protagonist|has|a|distinguishable|condition|hardly|matters|because|both|are|just|actory|concoctions|,|defined|by|childlike|dimness|and|a|handful|of|quirks|.\nWhat|starts|off|as|a|possible|Argentine|American|Beauty|reeks|like|a|room|stacked|with|pungent|flowers|.\nThe|project|'s|filmmakers|forgot|to|include|anything|even|halfway|scary|as|they|poorly|rejigger|Fatal|Attraction|into|a|high|school|setting|.\nIn|old-fashioned|screenwriting|parlance|,|Ms.|Shreve|'s|novel|proved|too|difficult|a|text|to|`|lick|,|'|despite|the|efforts|of|a|first-rate|cast|.\nSolondz|may|well|be|the|only|one|laughing|at|his|own|joke\nStitch|is|a|bad|mannered|,|ugly|and|destructive|little|\\*\\*\\*\\*|.\nNo|cute|factor|here|...|Not|that|I|mind|ugly|;|the|problem|is|he|has|no|character|,|loveable|or|otherwise|.\nDeep|down|,|I|realized|the|harsh|reality|of|my|situation|:|I|would|leave|the|theater|with|a|lower|I.Q.|than|when|I|had|entered|.\nA|really|funny|fifteen-minute|short|stretched|beyond|its|limits|to|fill|an|almost|feature-length|film|.\nAside|from|the|fact|that|the|film|idiotically|uses|the|website|feardotcom.com|or|the|improperly|hammy|performance|from|poor|Stephen|Rea|,|the|film|gets|added|disdain|for|the|fact|that|it|is|nearly|impossible|to|look|at|or|understand|.\nIt|is|bad|,|but|certainly|not|without|merit|as|entertainment|.\nFor|its|100|minutes|running|time|,|you|'ll|wait|in|vain|for|a|movie|to|happen|.\nA|work|that|lacks|both|a|purpose|and|a|strong|pulse|.\nA|faster|paced|family|flick|.\nUpper|Teens|may|get|cynical|.\nSmaller|numbered|kidlets|will|enjoy|.\nWhile|this|film|has|an|`|A|'|list|cast|and|some|strong|supporting|players|,|the|tale|--|like|its|central|figure|,|Vivi|--|is|just|a|little|bit|hard|to|love|.\nIt|'s|a|road-trip|drama|with|too|many|wrong|turns|.\nMost|fish|stories|are|a|little|peculiar|,|but|this|is|one|that|should|be|thrown|back|in|the|river|.\nIt|'s|all|gratuitous|before|long|,|as|if|Schwentke|were|fulfilling|a|gross-out|quota|for|an|anticipated|audience|demographic|instead|of|shaping|the|material|to|fit|the|story|.\n``|I|blame|all|men|for|war|,|''|(|the|warden|'s|daughter|)|tells|her|father|.\nThe|movie|is|about|as|deep|as|that|sentiment|.\nIt|'s|fitfully|funny|but|never|really|takes|off|.\nI|'ve|seen|some|bad|singer-turned|actors|,|but|Lil|Bow|Wow|takes|the|cake|.\nBy|halfway|through|this|picture|I|was|beginning|to|hate|it|,|and|,|of|course|,|feeling|guilty|for|it|...|Then|,|miracle|of|miracles|,|the|movie|does|a|flip-flop|.\nFor|all|the|complications|,|it|'s|all|surprisingly|predictable|.\nIt|'s|been|20|years|since|48|Hrs|.\nmade|Eddie|Murphy|a|movie|star|and|the|man|has|n't|aged|a|day|.\nBut|his|showboating|wise-cracker|stock|persona|sure|is|getting|old|.\nIf|Deuces|Wild|had|been|tweaked|up|a|notch|it|would|have|become|a|camp|adventure|,|one|of|those|movies|that|'s|so|bad|it|starts|to|become|good|.\nBut|it|was|n't|.\nFor|a|film|about|action|,|Ultimate|X|is|the|gabbiest|giant-screen|movie|ever|,|bogging|down|in|a|barrage|of|hype|.\n...|a|low|rate|Annie|featuring|some|kid|who|ca|n't|act|,|only|echoes|of|Jordan|,|and|weirdo|actor|Crispin|Glover|screwing|things|up|old|school|.\nIt|might|not|be|1970s|animation|,|but|everything|else|about|it|is|straight|from|the|Saturday|morning|cartoons|--|a|retread|story|,|bad|writing|,|and|the|same|old|silliness|.\nThe|picture|seems|uncertain|whether|it|wants|to|be|an|acidic|all-male|All|About|Eve|or|a|lush|,|swooning|melodrama|in|the|Intermezzo|strain|.\nA|nearly|21\\/2|hours|,|the|film|is|way|too|indulgent|.\nGorgeous|to|look|at|but|insufferably|tedious|and|turgid|...|a|curiously|constricted|epic|.\nIt|looks|much|more|like|a|cartoon|in|the|end|than|The|Simpsons|ever|has|.\nWith|a|tighter|editorial|process|and|firmer|direction|this|material|could|work|,|especially|since|the|actresses|in|the|lead|roles|are|all|more|than|competent|,|but|as|is|,|Personal|Velocity|seems|to|be|idling|in|neutral|.\nDoes|n't|really|add|up|to|much|.\nIt|'s|better|suited|for|the|history|or|biography|channel|,|but|there|'s|no|arguing|the|tone|of|the|movie|-|it|leaves|a|bad|taste|in|your|mouth|and|questions|on|your|mind|.\nAn|entertainment|so|in|love|with|its|overinflated|mythology|that|it|no|longer|recognizes|the|needs|of|moviegoers|for|real|characters|and|compelling|plots|.\nA|prolonged|extrusion|of|psychopathic|pulp|.\nBorrows|from|other|movies|like|it|in|the|most|ordinary|and|obvious|fashion|.\nIt|'s|surprisingly|bland|despite|the|heavy|doses|of|weird|performances|and|direction|.\nA|chilly|,|remote|,|emotionally|distant|piece|...|so|dull|that|its|tagline|should|be|:|`|In|space|,|no|one|can|hear|you|snore|.|'\nThe|characters|seem|one-dimensional|,|and|the|film|is|superficial|and|will|probably|be|of|interest|primarily|to|its|target|audience|.\nSorvino|makes|the|princess|seem|smug|and|cartoonish|,|and|the|film|only|really|comes|alive|when|poor|Hermocrates|and|Leontine|pathetically|compare|notes|about|their|budding|amours|.\nIt|'s|like|a|drive-by|.\nYou|can|drive|right|by|it|without|noticing|anything|special|,|save|for|a|few|comic|turns|,|intended|and|otherwise|.\nEverything|--|even|life|on|an|aircraft|carrier|--|is|sentimentalized|.\nThis|would-be|`|James|Bond|for|the|Extreme|Generation|'|pic|is|one|big|,|dumb|action|movie|.\nStress|`|dumb|.|'\nThe|movie|has|generic|virtues|,|and|despite|a|lot|of|involved|talent|,|seems|done|by|the|numbers|.\nWhen|your|subject|is|illusion|versus|reality|,|should|n't|the|reality|seem|at|least|passably|real|?\nIt|'s|a|terrible|movie|in|every|regard|,|and|utterly|painful|to|watch|.\nThis|is|rote|spookiness|,|with|nary|an|original|idea|(|or|role|,|or|edit|,|or|score|,|or|anything|,|really|)|in|sight|,|and|the|whole|of|the|proceedings|beg|the|question|`|Why|?|'\nA|fan|film|that|for|the|uninitiated|plays|better|on|video|with|the|sound|turned|down|.\nToo|infuriatingly|quirky|and|taken|with|its|own|style|.\nThere|'s|a|whole|heap|of|nothing|at|the|core|of|this|slight|coming-of-age\\/coming-out|tale|.\nAs|much|as|I|laughed|throughout|the|movie|,|I|can|not|mount|a|cogent|defense|of|the|film|as|entertainment|,|or|even|performance|art|,|although|the|movie|does|leave|you|marveling|at|these|guys|'|superhuman|capacity|to|withstand|pain|.\nThe|type|of|dumbed-down|exercise|in|stereotypes|that|gives|the|(|teen|comedy|)|genre|a|bad|name|.\nDistinctly|sub-par|...|more|likely|to|drown|a|viewer|in|boredom|than|to|send|any|shivers|down|his|spine|.\nPlays|like|a|bad|blend|of|an|overripe|episode|of|TV|'s|Dawson|'s|Creek|and|a|recycled|and|dumbed-down|version|of|Love|Story|.\nUnless|you|come|in|to|the|film|with|a|skateboard|under|your|arm|,|you|'re|going|to|feel|like|you|were|n't|invited|to|the|party|.\nWhen|the|casting|call|for|this|movie|went|out|,|it|must|have|read|`|seeking|anyone|with|acting|ambition|but|no|sense|of|pride|or|shame|.|'\nJust|is|n't|as|weird|as|it|ought|to|be|.\nA|``|Home|Alone|''|film|that|is|staged|like|``|Rosemary|'s|Baby|,|''|but|is|not|as|well-conceived|as|either|of|those|films|.\n(|Siegel|)|and|co-writers|Lisa|Bazadona|and|Grace|Woodard|have|relied|too|much|on|convention|in|creating|the|characters|who|surround|Frankie|.\nNo|film|could|possibly|be|more|contemptuous|of|the|single|female|population|.\n`|Hey|Arnold|!|'\nhas|some|visual|wit|...|but|little|imagination|elsewhere|.\nThey|'re|going|through|the|motions|,|but|the|zip|is|gone|.\nA|sluggish|pace|and|lack|of|genuine|narrative|hem|the|movie|in|every|bit|as|much|as|life|hems|in|the|spirits|of|these|young|women|.\nA|low-budget|affair|,|Tadpole|was|shot|on|digital|video|,|and|the|images|often|look|smeary|and|blurry|,|to|the|point|of|distraction|.\nThen|again|,|in|a|better|movie|,|you|might|not|have|noticed|.\nIt|'s|mindless|junk|like|this|that|makes|you|appreciate|original|romantic|comedies|like|Punch-Drunk|Love|.\nThe|movie|is|like|a|year|late|for|tapping|into|our|reality|tv|obsession|,|and|even|tardier|for|exploiting|the|novelty|of|the|``|webcast|.|''\ntale|will|be|all|too|familiar|for|anyone|who|'s|seen|George|Roy|Hill|'s|1973|film|,|``|The|Sting|.|''\nGets|the|look|and|the|period|trappings|right|,|but|it|otherwise|drowns|in|a|sea|of|visual|and|verbal|clichés|.\nIt|'s|hard|to|quibble|with|a|flick|boasting|this|many|genuine|cackles|,|but|Notorious|C.H.O.|still|feels|like|a|promising|work-in-progress|.\nAnyone|who|wants|to|start|writing|screenplays|can|just|follow|the|same|blueprint|from|hundreds|of|other|films|,|sell|it|to|the|highest|bidder|and|walk|away|without|anyone|truly|knowing|your|identity|.\nThe|problem|with|The|Bread|,|My|Sweet|is|that|it|'s|far|too|sentimental|.\nA|late-night|cable|sexploitation|romp|masquerading|as|a|thriller|about|the|ruthless|social|order|that|governs|college|cliques|.\nFalls|short|in|explaining|the|music|and|its|roots|.\nNever|inspires|more|than|an|interested|detachment|.\nWhat|might|have|emerged|as|hilarious|lunacy|in|the|hands|of|Woody|Allen|or|Mel|Brooks|(|at|least|during|their|'70s|heyday|)|comes|across|as|lame|and|sophomoric|in|this|debut|indie|feature|.\nDespite|slick|production|values|and|director|Roger|Michell|'s|tick-tock|pacing|,|the|final|effect|is|like|having|two|guys|yelling|in|your|face|for|two|hours|.\nPretty|much|sucks|,|but|has|a|funny|moment|or|two|.\nThey|do|a|good|job|of|painting|this|family|dynamic|for|the|audience|but|they|tried|to|squeeze|too|many|elements|into|the|film|.\nA|supernatural|mystery|that|does|n't|know|whether|it|wants|to|be|a|suspenseful|horror|movie|or|a|weepy|melodrama|.\nIt|ends|up|being|neither|,|and|fails|at|both|endeavors|.\nTwo|badly|interlocked|stories|drowned|by|all|too|clever|complexity|.\nIt|is|so|earnest|,|so|overwrought|and|so|wildly|implausible|that|it|begs|to|be|parodied|.\nThese|are|textbook|lives|of|quiet|desperation|.\nSwimfan|,|like|Fatal|Attraction|,|eventually|goes|overboard|with|a|loony|melodramatic|denouement|in|which|a|high|school|swimming|pool|substitutes|for|a|bathtub|.\nClaims|to|sort|the|bad|guys|from|the|good|,|which|is|its|essential|problem|.\nPurposefully|shocking|in|its|eroticized|gore|,|if|unintentionally|dull|in|its|lack|of|poetic|frissons|.\nFeels|like|pieces|a|bunch|of|other|,|better|movies|slapped|together|.\nAlmost|everything|about|the|film|is|unsettling|,|from|the|preposterous|hairpiece|worn|by|Lai|'s|villainous|father|to|the|endless|action|sequences|.\nWriter-director|Randall|Wallace|has|bitten|off|more|than|he|or|anyone|else|could|chew|,|and|his|movie|veers|like|a|drunken|driver|through|heavy|traffic|.\nIt|follows|the|Blair|Witch|formula|for|an|hour|,|in|which|we|'re|told|something|creepy|and|vague|is|in|the|works|,|and|then|it|goes|awry|in|the|final|30|minutes|.\nOne|ca|n't|shake|the|feeling|that|Crossroads|is|nothing|more|than|an|hour-and-a-half-long|commercial|for|Britney|'s|latest|album|.\nPhoned-in|business|as|usual|.\nThere|'s|an|epic|here|,|but|you|have|to|put|it|together|yourself|.\nWhat|little|atmosphere|is|generated|by|the|shadowy|lighting|,|macabre|sets|,|and|endless|rain|is|offset|by|the|sheer|ugliness|of|everything|else|.\nDirector-chef|Gabriele|Muccino|keeps|it|fast|--|zippy|,|comin|'|at|ya|--|as|if|fearing|that|his|film|is|molto|superficiale|.\nTartakovsky|'s|team|has|some|freakish|powers|of|visual|charm|,|but|the|five|writers|slip|into|the|modern|rut|of|narrative|banality|.\nThe|most|horrific|movie|experience|I|'ve|had|since|``|Ca|n't|Stop|The|Music|.|''\nIt|may|as|well|be|called|``|Jar-Jar|Binks|:|The|Movie|.|''\nIt|'s|that|painful|.\nGod|is|great|,|the|movie|'s|not|.\nLike|a|three-ring|circus|,|there|are|side|stories|aplenty|--|none|of|them|memorable|.\nWhen|in|doubt|,|the|film|ratchets|up|the|stirring|soundtrack|,|throws|in|a|fish-out-of-water|gag|and|lets|the|cliched|dialogue|rip|.\nOr|else|a|doggie|winks|.\nA|`|Girls|Gone|Wild|'|video|for|the|boho|art-house|crowd|,|The|Burning|Sensation|is|n't|a|definitive|counter-cultural|document|--|its|makers|are|n't|removed|and|inquisitive|enough|for|that|.\nAs|original|and|insightful|as|last|week|'s|episode|of|Behind|the|Music|.\nPlays|like|John|Le|Carré|with|a|couple|of|burnt-out|cylinders|.\nYou|may|be|galled|that|you|'ve|wasted|nearly|two|hours|of|your|own|precious|life|with|this|silly|little|puddle|of|a|movie|.\nIt|'s|neither|as|sappy|as|Big|Daddy|nor|as|anarchic|as|Happy|Gilmore|or|The|Waterboy|,|but|it|has|its|moments|.\nDespite|the|surface|attractions|--|Conrad|L.|Hall|'s|cinematography|will|likely|be|nominated|for|an|Oscar|next|year|--|there|'s|something|impressive|and|yet|lacking|about|everything|.\nA|smug|and|convoluted|action-comedy|that|does|n't|allow|an|earnest|moment|to|pass|without|reminding|audiences|that|it|'s|only|a|movie|.\n(|Crystal|and|De|Niro|)|manage|to|squeeze|out|some|good|laughs|but|not|enough|to|make|this|silly|con|job|sing|.\nWorthless|,|from|its|pseudo-rock-video|opening|to|the|idiocy|of|its|last|frames|.\nThe|Christ|allegory|does|n't|work|because|there|is|no|foundation|for|it\nGo|for|La|Salle|'s|performance|,|and|make|do|as|best|you|can|with|a|stuttering|script|.\nIt|'s|hard|to|care|about|a|film|that|proposes|as|epic|tragedy|the|plight|of|a|callow|rich|boy|who|is|forced|to|choose|between|his|beautiful|,|self-satisfied|22-year-old|girlfriend|and|an|equally|beautiful|,|self-satisfied|18-year-old|mistress|.\nTries|too|hard|to|be|funny|in|a|way|that|'s|too|loud|,|too|goofy|and|too|short|of|an|attention|span|.\nI|did|n't|find|much|fascination|in|the|swinging|.\nWhat|they|'re|doing|is|a|matter|of|plumbing|arrangements|and|mind|games|,|of|no|erotic|or|sensuous|charge|.\nBut|that|they|are|doing|it|is|thought-provoking|.\nThe|acting|is|just|fine|,|but|there|'s|not|enough|substance|here|to|sustain|interest|for|the|full|90|minutes|,|especially|with|the|weak|payoff|.\nAfter|Collateral|Damage|,|you|might|imagine|that|most|every|aggrieved|father|cliché|has|been|unturned|.\nBut|no.|.\nUltimately|the|,|yes|,|snail-like|pacing|and|lack|of|thematic|resonance|make|the|film|more|silly|than|scary|,|like|some|sort|of|Martha|Stewart|decorating|program|run|amok|.\nReleasing|a|film|with|the|word|`|dog|'|in|its|title|in|January|lends|itself|to|easy|jokes|and|insults|,|and|Snow|Dogs|deserves|every|single|one|of|them|.\nTedious|Norwegian|offering|which|somehow|snagged|an|Oscar|nomination|.\nIt|was|a|dark|and|stormy|night|...\nA|dark-as-pitch|comedy|that|frequently|veers|into|corny|sentimentality|,|probably|would|not|improve|much|after|a|therapeutic|zap|of|shock|treatment|.\nThis|sort|of|cute|and|cloying|material|is|far|from|Zhang|'s|forte|and|it|shows|.\nBray|is|completely|at|sea|;|with|nothing|but|a|Savage|Garden|music|video|on|his|resume|,|he|has|no|clue|about|making|a|movie|.\nFreundlich|'s|made|(|Crudup|)|a|suburban|architect|,|and|a|cipher|.\na|huge|disappointment|coming|,|as|it|does|,|from|filmmakers|and|performers|of|this|calibre\nThough|it|pretends|to|expose|the|life|of|male|hustlers|,|it|'s|exploitive|without|being|insightful|.\nAimed|squarely|at|the|least|demanding|of|demographic|groups|:|very|small|children|who|will|be|delighted|simply|to|spend|more|time|with|familiar|cartoon|characters|.\nWhat|starts|off|as|a|satisfying|kids|flck|becomes|increasingly|implausible|as|it|races|through|contrived|plot|points|.\nExhibits|the|shallow|sensationalism|characteristic|of|soap|opera|...|more|salacious|telenovela|than|serious|drama|.\nSeagal|is|painfully|foolish|in|trying|to|hold|onto|what|'s|left|of|his|passe|'|chopsocky|glory|.\nEven|with|Harris|'s|strong|effort|,|the|script|gives|him|little|to|effectively|probe|Lear|'s|soul-stripping|breakdown|.\nThe|story|is|bogus|and|its|characters|tissue-thin|.\nWhereas|the|extremely|competent|hitman|films|such|as|Pulp|Fiction|and|Get|Shorty|resonate|a|sardonic|verve|to|their|caustic|purpose|for|existing|,|Who|Is|Cletis|Tout|?\nis|an|inexpressible|and|drab|wannabe|looking|for|that|exact|niche|.\nWhile|American|Adobo|has|its|heart|(|and|its|palate|)|in|the|right|place|,|its|brain|is|a|little|scattered|--|ditsy|,|even|.\nImagine|a|film|that|begins|as|a|Seven|rip-off|,|only|to|switch|to|a|mix|of|The|Shining|,|The|Thing|,|and|any|naked|teenagers|horror|flick|from|the|1980s|.\nMost|of|the|dialogue|made|me|want|to|pack|raw|dough|in|my|ears|.\nCostner|'s|warm-milk|persona|is|just|as|ill-fitting|as|Shadyac|'s|perfunctory|directing|chops|,|and|some|of|the|more|overtly|silly|dialogue|would|sink|Laurence|Olivier|.\nIt|'s|coherent|,|well|shot|,|and|tartly|acted|,|but|it|wears|you|down|like|a|dinner|guest|showing|off|his|doctorate|.\nDirected|by|Kevin|Bray|,|whose|crisp|framing|,|edgy|camera|work|,|and|wholesale|ineptitude|with|acting|,|tone|and|pace|very|obviously|mark|him|as|a|video|helmer|making|his|feature|debut|.\nturns|a|potentially|interesting|idea|into|an|excruciating|film|school|experience|that|plays|better|only|for|the|film|'s|publicists|or|for|people|who|take|as|many|drugs|as|the|film|'s|characters\nRobin|Williams|departs|from|his|fun|friendly|demeanor|in|exchange|for|a|darker|unnerving|role|.\nHigh|Crimes|is|a|cinematic|misdemeanor|,|a|routine|crime|thriller|remarkable|only|for|its|lack|of|logic|and|misuse|of|two|fine|actors|,|Morgan|Freeman|and|Ashley|Judd|.\nSet|in|a|1986|Harlem|that|does|n't|look|much|like|anywhere|in|New|York|.\nThe|chocolate|factory|without|Charlie|.\nLong|on|twinkly-eyed|close-ups|and|short|on|shame|.\nHip-hop|rarely|comes|alive|as|its|own|fire-breathing|entity|in|this|picture|.\nA|dull|,|somnambulant|exercise|in|pretension|whose|pervasive|quiet|is|broken|by|frequent|outbursts|of|violence|and|noise|.\nDeserving|of|its|critical|backlash|and|more|.\nNeither|a|rousing|success|nor|a|blinding|embarrassment|.\nStill|,|it|just|sits|there|like|a|side|dish|no|one|ordered|.\nThe|Sum|of|All|Fears|is|remarkably|fuddled|about|motives|and|context|,|which|drains|it|of|the|dramatic|substance|that|would|shake|us|in|our|boots|(|or|cinema|seats|)|.\nThe|movie|spends|more|time|with|Schneider|than|with|newcomer|McAdams|,|even|though|her|performance|is|more|interesting|(|and|funnier|)|than|his|.\nThis|low-rent|--|and|even|lower-wit|--|rip-off|of|the|Farrelly|brothers|'|oeuvre|gets|way|too|mushy|--|and|in|a|relatively|short|amount|of|time|.\nIt|recycles|every|cliché|about|gays|in|what|is|essentially|an|extended|soap|opera|.\nI|'m|all|for|the|mentally|challenged|getting|their|fair|shot|in|the|movie|business|,|but|surely|it|does|n't|have|to|be|as|a|collection|of|keening|and|self-mutilating|sideshow|geeks|.\nMay|offend|viewers|not|amused|by|the|sick|sense|of|humor|.\nMany|of|Benjamins|'|elements|feel|like|they|'ve|been|patched|in|from|an|episode|of|Miami|Vice|.\nIt|aimlessly|and|unsuccessfully|attempts|to|fuse|at|least|three|dull|plots|into|one|good|one|.\nMost|folks|with|a|real|stake|in|the|American|sexual|landscape|will|find|it|either|moderately|amusing|or|just|plain|irrelevant|.\nIf|you|'re|not|fans|of|the|adventues|of|Steve|and|Terri|,|you|should|avoid|this|like|the|dreaded|King|Brown|snake|.\nPersonally|,|I|'d|rather|watch|them|on|the|Animal|Planet|.\nCherish|is|a|dud|--|a|romantic|comedy|that|'s|not|the|least|bit|romantic|and|only|mildly|funny|.\nFeels|as|if|the|inmates|have|actually|taken|over|the|asylum|.\nAll|of|the|filmmakers|'|calculations|ca|n't|rescue|Brown|Sugar|from|the|curse|of|blandness|.\nThe|movie|'s|gloomy|atmosphere|is|fascinating|,|though|,|even|if|the|movie|itself|does|n't|stand|a|ghost|of|a|chance|.\n...|post-September|11|,|``|The|Sum|Of|All|Fears|''|seems|more|tacky|and|reprehensible|,|manipulating|our|collective|fear|without|bestowing|the|subject|with|the|intelligence|or|sincerity|it|unequivocally|deserves|.\nThe|exclamation|point|seems|to|be|the|only|bit|of|glee|you|'ll|find|in|this|dreary|mess|.\nNo|matter|how|you|slice|it|,|Mark|Wahlberg|and|Thandie|Newton|are|not|Hepburn|and|Grant|,|two|cinematic|icons|with|chemistry|galore|.\nGodard|'s|ode|to|tackling|life|'s|wonderment|is|a|rambling|and|incoherent|manifesto|about|the|vagueness|of|topical|excess|...|In|Praise|of|Love|remains|a|ponderous|and|pretentious|endeavor|that|'s|unfocused|and|tediously|exasperating|.\nHumorless|,|self-conscious|art|drivel|,|made|without|a|glimmer|of|intelligence|or|invention|.\nThe|movie|'s|progression|into|rambling|incoherence|gives|new|meaning|to|the|phrase|`|fatal|script|error|.|'\nSolondz|may|be|convinced|that|he|has|something|significant|to|say|,|but|he|is|n't|talking|a|talk|that|appeals|to|me|.\nMore|tiring|than|anything|.\nNelson|'s|intentions|are|good|,|but|the|end|result|does|no|justice|to|the|story|itself|.\nIt|'s|horribly|depressing|and|not|very|well|done|.\n...|the|efforts|of|its|star|,|Kline|,|to|lend|some|dignity|to|a|dumb|story|are|for|naught|.\nA|good-natured|ensemble|comedy|that|tries|hard|to|make|the|most|of|a|bumper|cast|,|but|never|quite|gets|off|the|ground|.\nIs|n't|it|a|bit|early|in|his|career|for|director|Barry|Sonnenfeld|to|do|a|homage|to|himself|?\nAnd|it|'s|a|lousy|one|at|that|.\nOverly|long|and|worshipful|bio-doc|.\nI|'ll|go|out|on|a|limb|.\nIt|is|n't|quite|one|of|the|worst|movies|of|the|year|.\nIt|'s|just|merely|very|bad|.\nWriter-director|Ritchie|reduces|Wertmuller|'s|social|mores|and|politics|to|tiresome|jargon|.\nAbout|Amy|'s|cuteness|,|Amy|'s|career|success|(|she|'s|a|best-selling|writer|of|self-help|books|who|ca|n't|help|herself|)|,|and|Amy|'s|neuroses|when|it|comes|to|men|.\nEverything|about|Girls|Ca|n't|Swim|,|even|its|passages|of|sensitive|observation|,|feels|secondhand|,|familiar|--|and|not|in|a|good|way|.\nFeels|aimless|for|much|of|its|running|time|,|until|late|in|the|film|when|a|tidal|wave|of|plot|arrives|,|leaving|questions|in|its|wake|.\nIn|my|own|very|humble|opinion|,|In|Praise|of|Love|lacks|even|the|most|fragmented|charms|I|have|found|in|almost|all|of|his|previous|works|.\nThe|script|is|too|mainstream|and|the|psychology|too|textbook|to|intrigue|.\nMuddled|,|simplistic|and|more|than|a|little|pretentious|.\nMeandering|and|glacially|paced|,|and|often|just|plain|dull|.\nA|disaster|of|a|drama|,|saved|only|by|its|winged|assailants|.\nA|road|trip|that|will|get|you|thinking|,|`|Are|we|there|yet|?|'\nDirector|Elie|Chouraqui|,|who|co-wrote|the|script|,|catches|the|chaotic|horror|of|war|,|but|why|bother|if|you|'re|going|to|subjugate|truth|to|the|tear-jerking|demands|of|soap|opera|?\nDong|never|pushes|for|insights|beyond|the|superficial|tensions|of|the|dynamic|he|'s|dissecting|,|and|the|film|settles|too|easily|along|the|contours|of|expectation|.\nIf|there|was|any|doubt|that|Peter|O'Fallon|did|n't|have|an|original|bone|in|his|body|,|A|Rumor|of|Angels|should|dispel|it|.\nAn|occasionally|interesting|but|mostly|repetitive|look|at|a|slice|of|counterculture|that|might|be|best|forgotten|.\nWhat|could|have|been|right|at|home|as|a|nifty|plot|line|in|Steven|Soderbergh|'s|Traffic|fails|to|arrive|at|any|satisfying|destination|.\nThe|movie|is|like|Scorsese|'s|Mean|Streets|redone|by|someone|who|ignored|it|in|favor|of|old|`|juvenile|delinquent|'|paperbacks|with|titles|like|Leather|Warriors|and|Switchblade|Sexpot|.\nThis|pathetic|junk|is|barely|an|hour|long|.\nNevertheless|,|it|still|seems|endless|.\nIt|is|n't|that|Stealing|Harvard|is|a|horrible|movie|--|if|only|it|were|that|grand|a|failure|!\nIt|'s|just|that|it|'s|so|not-at-all-good|.\nAnd|I|expect|much|more|from|a|talent|as|outstanding|as|director|Bruce|McCulloch|.\nDolman|confines|himself|to|shtick|and|sentimentality|--|the|one|bald|and|the|other|sloppy|.\nIs|it|possible|for|a|documentary|to|be|utterly|entranced|by|its|subject|and|still|show|virtually|no|understanding|of|it|?\nIt|'s|supposed|to|be|a|romantic|comedy|-|it|suffers|from|too|much|Norma|Rae|and|not|enough|Pretty|Woman|.\nThe|leads|are|so|unmemorable|,|despite|several|attempts|at|lengthy|dialogue|scenes|,|that|one|eventually|resents|having|to|inhale|this|gutter|romancer|'s|secondhand|material|.\nStaggers|between|flaccid|satire|and|what|is|supposed|to|be|madcap|farce|.\nNot|that|any|of|us|should|be|complaining|when|a|film|clocks|in|around|90|minutes|these|days|,|but|the|plotting|here|leaves|a|lot|to|be|desired|.\nBrainy|,|artistic|and|muted|,|almost|to|the|point|of|suffocation|.\nPlays|like|the|old|disease-of-the-week|small-screen|melodramas|.\nLike|life|on|the|island|,|the|movie|grows|boring|despite|the|scenery|.\nThe|truth|about|Charlie|is|that|it|'s|a|brazenly|misguided|project|.\ndisplays|the|potential|for|a|better|movie|than|what|Bailly|manages|to|deliver\nSo|exaggerated|and|broad|that|it|comes|off|as|annoying|rather|than|charming|.\nAn|awkward|hybrid|of|genres|that|just|does|n't|work|.\nThe|latest|vapid|actor|'s|exercise|to|appropriate|the|structure|of|Arthur|Schnitzler|'s|Reigen|.\nSnipes|is|both|a|snore|and|utter|tripe|.\nRitchie|'s|film|is|easier|to|swallow|than|Wertmuller|'s|polemical|allegory|,|but|it|'s|self-defeatingly|decorous|.\nChalk|it|up|as|the|worst|kind|of|hubristic|folly|.\nIt|'s|the|kind|of|under-inspired|,|overblown|enterprise|that|gives|Hollywood|sequels|a|bad|name|.\nRosenthal|(|Halloween|II|)|seems|to|have|forgotten|everything|he|ever|knew|about|generating|suspense|.\nEven|Murphy|'s|expert|comic|timing|and|famed|charisma|ca|n't|rescue|this|effort|.\nRodriguez|...|was|unable|to|reproduce|the|special|spark|between|the|characters|that|made|the|first|film|such|a|delight|.\nA|sleek|advert|for|youthful|anomie|that|never|quite|equals|the|sum|of|its|pretensions|.\nSome|Body|smacks|of|exhibitionism|more|than|it|does|cathartic|truth|telling|.\nThis|is|n't|a|terrible|film|by|any|means|,|but|it|'s|also|far|from|being|a|realized|work|.\nApparently|,|romantic|comedy|with|a|fresh|point|of|view|just|does|n't|figure|in|the|present|Hollywood|program|.\nDepressingly|thin|and|exhaustingly|contrived|.\nOnly|masochistic|moviegoers|need|apply|.\nA|movie|that|'s|held|captive|by|mediocrity|.\nNot|bad|,|but|not|all|that|good|.\nBacon|keeps|things|interesting|,|but|do|n't|go|out|of|your|way|to|pay|full|price|.\nWhat|'s|next|?\nRob|Schneider|,|Dana|Carvey|and|Sarah|Michelle|Gellar|in|The|Philadelphia|Story|?\nDavid|Spade|as|Citizen|Kane|?\nCa|n't|seem|to|get|anywhere|near|the|story|'s|center|.\nThe|problem|,|amazingly|enough|,|is|the|screenplay|.\nIt|'s|a|Frankenstein-monster|of|a|film|that|does|n't|know|what|it|wants|to|be|.\nUpper|West|Sidey|exercise|in|narcissism|and|self-congratulation|disguised|as|a|tribute|.\nOn|its|icy|face|,|the|new|film|is|a|subzero|version|of|Monsters|,|Inc.|,|without|the|latter|'s|imagination|,|visual|charm|or|texture|.\nI|ca|n't|say|this|enough|:|This|movie|is|about|an|adult|male|dressed|in|pink|jammies|.\nIt|'s|a|mindless|action|flick|with|a|twist|--|far|better|suited|to|video-viewing|than|the|multiplex|.\nAfter|a|while|,|the|only|way|for|a|reasonably|intelligent|person|to|get|through|The|Country|Bears|is|to|ponder|how|a|whole|segment|of|pop-music|history|has|been|allowed|to|get|wet|,|fuzzy|and|sticky|.\nWe|get|light|showers|of|emotion|a|couple|of|times|,|but|then|--|strangely|--|these|wane|to|an|inconsistent|and|ultimately|unsatisfying|drizzle|.\nSummer|'s|far|too|fleeting|to|squander|on|offal|like|this|.\nThe|film|is|grossly|contradictory|in|conveying|its|social|message|,|if|indeed|there|is|one|.\nOften|lingers|just|as|long|on|the|irrelevant|as|on|the|engaging|,|which|gradually|turns|What|Time|Is|It|There|?\ninto|How|Long|Is|This|Movie|?\nToo|bad|Kramer|could|n't|make|a|guest|appearance|to|liven|things|up|.\nDeuces|Wild|is|an|encyclopedia|of|cliches|that|shoplifts|shamelessly|from|farewell-to-innocence|movies|like|The|Wanderers|and|A|Bronx|Tale|without|cribbing|any|of|their|intelligence|.\nIt|'s|a|barely|tolerable|slog|over|well-trod|ground|.\nEpps|has|neither|the|charisma|nor|the|natural|affability|that|has|made|Tucker|a|star|.\nIt|'s|sweet|...|but|just|a|little|bit|too|precious|at|the|start|and|a|little|too|familiar|at|the|end|.\nA|dull|,|dumb|and|derivative|horror|film|.\nAn|awkwardly|contrived|exercise|in|magic|realism|.\nDemme|gets|a|lot|of|flavor|and|spice|into|his|Charade|remake|,|but|he|ca|n't|disguise|that|he|'s|spiffing|up|leftovers|that|are|n't|so|substantial|or|fresh|.\nThis|is|a|heartfelt|story|...|it|just|is|n't|a|very|involving|one|.\nThese|self-styled|athletes|have|banged|their|brains|into|the|ground|so|frequently|and|furiously|,|their|capacity|to|explain|themselves|has|gone|the|same|way|as|their|natural|instinct|for|self-preservation|.\nThe|fact|that|the|`|best|part|'|of|the|movie|comes|from|a|60-second|homage|to|one|of|Demme|'s|good|films|does|n't|bode|well|for|the|rest|of|it|.\nRichard|Pryor|mined|his|personal|horrors|and|came|up|with|a|treasure|chest|of|material|,|but|Lawrence|gives|us|mostly|fool|'s|gold|.\nThe|band|performances|featured|in|Drumline|are|red|hot|...|(|but|)|from|a|mere|story|point|of|view|,|the|film|'s|ice|cold|.\n...|built|on|the|premise|that|middle-class|Arkansas|consists|of|monster|truck-loving|good|ol'|boys|and|peroxide|blond|honeys|whose|worldly|knowledge|comes|from|TV|reruns|and|supermarket|tabloids|.\nA|laughable|--|or|rather|,|unlaughable|--|excuse|for|a|film|.\nThe|sequel|is|everything|the|original|was|not|:|contrived|,|overblown|and|tie-in|ready|.\nLike|a|grinning|Jack|O|'|Lantern|,|its|apparent|glee|is|derived|from|a|lobotomy|,|having|had|all|its|vital|essence|scooped|out|and|discarded|.\nA|sentimental|hybrid|that|could|benefit|from|the|spice|of|specificity|.\n...|familiar|and|predictable|,|and|4\\/5ths|of|it|might|as|well|have|come|from|a|Xerox|machine|rather|than|(|writer-director|)|Franc|.\nReyes|'|word|processor|.\nGive|Shapiro|,|Goldman|,|and|Bolado|credit|for|good|intentions|,|but|there|'s|nothing|here|that|they|could|n't|have|done|in|half|an|hour|.\nIt|'s|so|devoid|of|joy|and|energy|it|makes|even|Jason|X|...|look|positively|Shakesperean|by|comparison|.\nA|little|objectivity|could|have|gone|a|long|way|.\nOne|of|the|worst|films|of|2002|.\nI|believe|Silberling|had|the|best|intentions|here|,|but|he|just|does|n't|have|the|restraint|to|fully|realize|them|.\nplays|like|an|unbalanced|mixture|of|graphic|combat|footage|and|almost|saccharine|domestic|interludes|that|are|pure|Hollywood|.\nMcTiernan|'s|remake|may|be|lighter|on|its|feet|--|the|sober-minded|original|was|as|graceful|as|a|tap-dancing|rhino|--|but|it|is|just|as|boring|and|as|obvious|.\nHigh|Crimes|carries|almost|no|organic|intrigue|as|a|government|\\/|Marine\\/legal|mystery|,|and|that|'s|because|the|movie|serves|up|all|of|that|stuff|,|nearly|subliminally|,|as|the|old-hat|province|of|male|intrigue|.\nThis|movie|is|about|the|worst|thing|Chan|has|done|in|the|United|States|.\nThe|explosion|essentially|ruined|--|or|,|rather|,|overpowered|--|the|fiction|of|the|movie|for|me|.\nThis|ludicrous|film|is|predictable|at|every|turn|.\nAn|incredibly|irritating|comedy|about|thoroughly|vacuous|people|...|manages|to|embody|the|worst|excesses|of|nouvelle|vague|without|any|of|its|sense|of|fun|or|energy|.\nThe|film|desperately|sinks|further|and|further|into|comedy|futility|.\nInstead|of|a|balanced|film|that|explains|the|zeitgeist|that|is|the|X|Games|,|we|get|a|cinematic|postcard|that|'s|superficial|and|unrealized|.\nThe|crassness|of|this|reactionary|thriller|is|matched|only|by|the|ridiculousness|of|its|premise|.\nI|wish|it|would|have|just|gone|more|over-the-top|instead|of|trying|to|have|it|both|ways|.\nThe|superior|plotline|is|n't|quite|enough|to|drag|along|the|dead|(|water|)|weight|of|the|other|.\nThe|film|does|n't|really|care|about|the|thousands|of|Americans|who|die|hideously|,|it|cares|about|how|Ryan|meets|his|future|wife|and|makes|his|start|at|the|CIA|.\nAdrift|,|Bentley|and|Hudson|stare|and|sniffle|,|respectively|,|as|Ledger|attempts|,|in|vain|,|to|prove|that|movie-star|intensity|can|overcome|bad|hair|design|.\nAfter|an|hour|and|a|half|of|wondering|--|sometimes|amusedly|,|sometimes|impatiently|--|just|what|this|strenuously|unconventional|movie|is|supposed|to|be|,|you|discover|that|the|answer|is|as|conventional|as|can|be|.\n`|Linklater|fans|,|or|pretentious|types|who|want|to|appear|avant-garde|will|suck|up|to|this|project|...|'\nA|woefully|dull|,|redundant|concept|that|bears|more|than|a|whiff|of|exploitation|,|despite|Iwai|'s|vaunted|empathy|.\nScreenwriter|Chris|ver|Weil|'s|directing|debut|is|good-natured|and|never|dull|,|but|its|virtues|are|small|and|easily|overshadowed|by|its|predictability|.\nIf|you|really|want|to|understand|what|this|story|is|really|all|about|,|you|'re|far|better|served|by|the|source|material|.\nIt|'s|mildly|sentimental|,|unabashedly|consumerist|...|studiously|inoffensive|and|completely|disposable|.\nLike|its|title|character|,|Esther|Kahn|is|unusual|but|unfortunately|also|irritating|.\nThe|star|who|helped|give|a|spark|to|``|Chasing|Amy|''|and|``|Changing|Lanes|''|falls|flat|as|thinking|man|CIA|agent|Jack|Ryan|in|this|summer|'s|new|action|film|,|``|The|Sum|of|All|Fears|.|''\nA|summary|of|the|plot|does|n't|quite|do|justice|to|the|awfulness|of|the|movie|,|for|that|comes|through|all|too|painfully|in|the|execution|.\nEvery|conceivable|mistake|a|director|could|make|in|filming|opera|has|been|perpetrated|here|.\nSnoots|will|no|doubt|rally|to|its|cause|,|trotting|out|threadbare|standbys|like|`|masterpiece|'|and|`|triumph|'|and|all|that|malarkey|,|but|rarely|does|an|established|filmmaker|so|ardently|waste|viewers|'|time|with|a|gobbler|like|this|.\n(|The|film|'s|)|taste|for|``|shock|humor|''|will|wear|thin|on|all|but|those|weaned|on|the|comedy|of|Tom|Green|and|the|Farrelly|Brothers|.\nAny|enjoyment|will|be|hinge|from|a|personal|threshold|of|watching|sad|but|endearing|characters|do|extremely|unconventional|things|.\nIf|legendary|shlockmeister|Ed|Wood|had|ever|made|a|movie|about|a|vampire|,|it|probably|would|look|a|lot|like|this|alarming|production|,|adapted|from|Anne|Rice|'s|novel|The|Vampire|Chronicles|.\nHardly|a|nuanced|portrait|of|a|young|woman|'s|breakdown|,|the|film|nevertheless|works|up|a|few|scares|.\nInterminably|bleak|,|to|say|nothing|of|boring|.\nThings|really|get|weird|,|though|not|particularly|scary|:|the|movie|is|all|portent|and|no|content|.\nIt|'s|difficult|to|discern|if|this|is|a|crazy|work|of|disturbed|genius|or|merely|90|minutes|of|post-adolescent|Electra|rebellion|.\nBogs|down|badly|as|we|absorb|Jia|'s|moody|,|bad-boy|behavior|which|he|portrays|himself|in|a|one-note|performance|.\nThe|camera|whirls|!\nThe|camera|twirls|!\nOh|,|look|at|that|clever|angle|!\nWow|,|a|jump|cut|!\nDemme|finally|succeeds|in|diminishing|his|stature|from|Oscar-winning|master|to|lowly|studio|hack|.\nThe|action|scenes|have|all|the|suspense|of|a|20-car|pileup|,|while|the|plot|holes|are|big|enough|for|a|train|car|to|drive|through|--|if|Kaos|had|n't|blown|them|all|up|.\nIt|almost|feels|as|if|the|movie|is|more|interested|in|entertaining|itself|than|in|amusing|us|.\nIt|puts|Washington|,|as|honest|working|man|John|Q.|Archibald|,|on|a|pedestal|,|then|keeps|lifting|the|pedestal|higher|.\nUltimately|,|the|film|amounts|to|being|lectured|to|by|tech-geeks|,|if|you|'re|up|for|that|sort|of|thing|.\nFar|more|enjoyable|than|its|predecessor|.\n(|Gayton|'s|script|)|telegraphs|every|discovery|and|layers|on|the|gloss|of|convenience|.\nFull|Frontal|,|which|opens|today|nationwide|,|could|almost|be|classified|as|a|movie-industry|satire|,|but|it|lacks|the|generous|inclusiveness|that|is|the|genre|'s|definitive|,|if|disingenuous|,|feature|.\nA|ragbag|of|cliches|.\nThis|rough|trade|Punch-and-Judy|act|did|n't|play|well|then|and|it|plays|worse|now|.\nThe|three|leads|produce|adequate|performances|,|but|what|'s|missing|from|this|material|is|any|depth|of|feeling|.\nIt|'s|possible|that|something|hip|and|transgressive|was|being|attempted|here|that|stubbornly|refused|to|gel|,|but|the|result|is|more|puzzling|than|unsettling|.\nThis|painfully|unfunny|farce|traffics|in|tired|stereotypes|and|encumbers|itself|with|complications|...|that|have|no|bearing|on|the|story|.\nShort|and|sweet|,|but|also|more|than|anything|else|slight|...|Tadpole|pulls|back|from|the|consequences|of|its|own|actions|and|revelations|.\nHas|its|moments|,|but|it|'s|pretty|far|from|a|treasure|.\nWhat|more|can|be|expected|from|a|college|comedy|that|'s|target|audience|has|n't|graduated|from|junior|high|school|?\nCollateral|Damage|offers|formula|payback|and|the|Big|Payoff|,|but|the|explosions|tend|to|simply|hit|their|marks|,|pyro-correctly|.\nThe|plan|to|make|Enough|into|`|an|inspiring|tale|of|survival|wrapped|in|the|heart-pounding|suspense|of|a|stylish|psychological|thriller|'|has|flopped|as|surely|as|a|soufflé|gone|wrong|.\nInstead|of|letting|the|laughs|come|as|they|may|,|Lawrence|unleashes|his|trademark|misogyny|--|er|,|comedy|--|like|a|human|volcano|or|an|overflowing|septic|tank|,|take|your|pick|.\nYou|know|that|ten|bucks|you|'d|spend|on|a|ticket|?\nJust|send|it|to|Cranky|.\nWe|do|n't|get|paid|enough|to|sit|through|crap|like|this|.\nAn|even|more|predictable|,|cliche-ridden|endeavor|than|its|predecessor|.\nThe|whole|thing|plays|like|a|tired|Tyco|ad|.\nThe|film|does|n't|show|enough|of|the|creative|process|or|even|of|what|was|created|for|the|non-fan|to|figure|out|what|makes|Wilco|a|big|deal|.\nThe|soupy|end|result|has|the|odd|distinction|of|being|playful|without|being|fun|,|too|.\nNo|,|I|do|n't|know|why|Steven|Seagal|is|considered|a|star|,|nor|why|he|keeps|being|cast|in|action|films|when|none|of|them|are|ever|any|good|or|make|any|money|.\nEven|by|the|intentionally|low|standards|of|frat-boy|humor|,|Sorority|Boys|is|a|bowser|.\nOne|well-timed|explosion|in|a|movie|can|be|a|knockout|,|but|a|hundred|of|them|can|be|numbing|.\nProof|of|this|is|Ballistic|:|Ecks|vs.|Sever|.\nHalfway|through|,|however|,|having|sucked|dry|the|undead|action|flick|formula|,|Blade|II|mutates|into|a|gross-out|monster|movie|with|effects|that|are|more|silly|than|scary|.\nWeighted|down|with|slow|,|uninvolving|storytelling|and|flat|acting|.\nWe|ca|n't|accuse|Kung|Pow|for|misfiring|,|since|it|is|exactly|what|it|wants|to|be|:|an|atrociously|,|mind-numbingly|,|indescribably|bad|movie|.\nUnfortunately|,|we|'d|prefer|a|simple|misfire|.\nThere|is|n't|one|moment|in|the|film|that|surprises|or|delights|.\n`|Would|n't|it|be|nice|if|all|guys|got|a|taste|of|what|it|'s|like|on|the|other|side|of|the|bra|?|'\nThe|movie|is|essentially|a|series|of|fleetingly|interesting|actors|'|moments|.\nMost|of|the|information|has|already|appeared|in|one|forum|or|another|and|,|no|matter|how|Broomfield|dresses|it|up|,|it|tends|to|speculation|,|conspiracy|theories|or|,|at|best|,|circumstantial|evidence|.\nThis|movie|,|a|certain|scene|in|particular|,|brought|me|uncomfortably|close|to|losing|my|lunch|.\nThe|secrets|of|time|travel|will|have|been|discovered|,|indulged|in|and|rejected|as|boring|before|I|see|this|piece|of|crap|again|.\nSmug|,|artificial|,|ill-constructed|and|fatally|overlong|...|it|never|finds|a|consistent|tone|and|lacks|bite|,|degenerating|into|a|pious|,|preachy|soap|opera|.\nChelsea|Walls|is|a|case|of|too|many|chefs|fussing|over|too|weak|a|recipe|.\nEvery|joke|is|repeated|at|least|four|times|.\nEvery|joke|is|repeated|at|least|four|times|.\nEvery|joke|is|repeated|at|least|--|annoying|,|is|n't|it|?\nComes|across|as|a|fairly|weak|retooling|.\nThe|lousy|lead|performances|...|keep|the|movie|from|ever|reaching|the|comic|heights|it|obviously|desired|.\nIts|and|pieces|of|The|Hot|Chick|are|so|hilarious|,|and|Schneider|'s|performance|is|so|fine|,|it|'s|a|real|shame|that|so|much|of|the|movie|--|again|,|as|in|The|Animal|--|is|a|slapdash|mess|.\n(|Creates|)|the|worst|kind|of|mythologizing|,|the|kind|that|sacrifices|real|heroism|and|abject|suffering|for|melodrama|.\nThe|movie|resolutely|avoids|all|the|comic|possibilities|of|its|situation|,|and|becomes|one|more|dumb|high|school|comedy|about|sex|gags|and|prom|dates|.\nEarnest|and|heartfelt|but|undernourished|and|plodding|.\nA|sugar-coated|Rocky|whose|valuable|messages|are|forgotten|10|minutes|after|the|last|trombone|honks|.\nRomanek|keeps|adding|flourishes|--|artsy|fantasy|sequences|--|that|simply|feel|wrong|.\nThey|cheapen|the|overall|effect|.\nHas|all|the|complexity|and|realistic|human|behavior|of|an|episode|of|General|Hospital|.\nAn|acceptable|way|to|pass|a|little|over|an|hour|with|moviegoers|ages|8-10|,|but|it|'s|unlikely|to|inspire|anything|more|than|a|visit|to|McDonald|'s|,|let|alone|some|savvy|street|activism|.\n(|Allen|'s|)|been|making|piffle|for|a|long|while|,|and|Hollywood|Ending|may|be|his|way|of|saying|that|piffle|is|all|that|the|airhead|movie|business|deserves|from|him|right|now|.\nAn|exercise|in|cynicism|every|bit|as|ugly|as|the|shabby|digital|photography|and|muddy|sound|.\nNot|good|enough|to|pass|for|a|litmus|test|of|the|generation|gap|and|not|bad|enough|to|repulse|any|generation|of|its|fans|.\nThe|movie|is|silly|beyond|comprehension|,|and|even|if|it|were|n't|silly|,|it|would|still|be|beyond|comprehension|.\nWatchable|up|until|the|point|where|the|situations|and|the|dialogue|spin|hopelessly|out|of|control|--|that|is|to|say|,|when|Carol|Kane|appears|on|the|screen|.\nThe|scriptwriters|are|no|less|a|menace|to|society|than|the|film|'s|characters|.\nMerchant|has|n't|directed|this|movie|so|much|as|produced|it|--|like|sausage|.\nThe|film|has|a|nearly|terminal|case|of|the|cutes|,|and|it|'s|neither|as|funny|nor|as|charming|as|it|thinks|it|is|.\nMore|a|gunfest|than|a|Rock|concert|.\nIt|'s|a|frightful|vanity|film|that|,|no|doubt|,|pays|off|what|debt|Miramax|felt|they|owed|to|Benigni|.\nA|muddy|psychological|thriller|rife|with|miscalculations|.\nIt|makes|me|say|the|obvious|:|Abandon|all|hope|of|a|good|movie|ye|who|enter|here|.\nIt|'s|not|original|enough|.\nA|listless|sci-fi|comedy|in|which|Eddie|Murphy|deploys|two|guises|and|elaborate|futuristic|sets|to|no|particularly|memorable|effect|.\nLittle|more|than|a|super-sized|infomercial|for|the|cable-sports|channel|and|its|Summer|X|Games|.\nA|generic|bloodbath|that|often|becomes|laughably|unbearable|when|it|is|n't|merely|offensive|.\nJulie|Davis|is|the|Kathie|Lee|Gifford|of|film|directors|,|sadly|proving|once|again|ego|does|n't|always|go|hand|in|hand|with|talent|.\nAn|unholy|mess|,|driven|by|the|pathetic|idea|that|if|you|shoot|something|on|crummy-looking|videotape|,|it|must|be|labelled|`|hip|'|,|`|innovative|'|and|`|realistic|'|.\nThe|story|'s|pathetic|and|the|gags|are|puerile|.|.\nCuriously|,|Super|Troopers|suffers|because|it|does|n't|have|enough|vices|to|merit|its|103-minute|length|.\nSo|bland|and|utterly|forgettable|that|it|might|as|well|have|been|titled|Generic|Jennifer|Lopez|Romantic|Comedy|.\nI|was|sent|a|copyof|this|film|to|review|on|DVD|.\nFor|free|.\nI|still|want|my|money|back|.\nIt|plods|along|methodically|,|somehow|under|the|assumption|that|its|``|dead|wife|communicating|from|beyond|the|grave|''|framework|is|even|remotely|new|or|interesting|.\nIt|'s|hard|to|believe|that|a|relationship|like|Holly|and|Marina|'s|could|survive|the|hothouse|emotions|of|teendom|,|and|its|longevity|gets|more|inexplicable|as|the|characterizations|turn|more|crassly|reductive|.\nAll|too|familiar|...|basically|the|sort|of|cautionary|tale|that|was|old|when|`|Angels|With|Dirty|Faces|'|appeared|in|1938|.\n...|passable|enough|for|a|shoot-out|in|the|o.k.|court|house|of|life|type|of|flick|.\nStrictly|middle|of|the|road|.\nAlthough|purportedly|a|study|in|modern|alienation|,|it|'s|really|little|more|than|a|particularly|slanted|,|gay|s\\/m|fantasy|,|enervating|and|deadeningly|drawn-out|.\nAfter|the|first|10|minutes|,|which|is|worth|seeing|,|the|movie|sinks|into|an|abyss|of|clichés|,|depression|and|bad|alternative|music|.\nNo|one|can|doubt|the|filmmakers|'|motives|,|but|The|Guys|still|feels|counterproductive|.\nA|very|slow|,|uneventful|ride|around|a|pretty|tattered|old|carousel|.\nWith|little|visible|talent|and|no|energy|,|Colin|Hanks|is|in|bad|need|of|major|acting|lessons|and|maybe|a|little|coffee|.\n``|Feardotcom|''|has|the|makings|of|an|interesting|meditation|on|the|ethereal|nature|of|the|internet|and|the|otherworldly|energies|it|could|channel|,|but|it|simply|becomes|a|routine|shocker|.\nA|Meatballs|for|the|bare-midriff|generation|.\nWell-meaning|to|a|fault|,|Antwone|Fisher|manages|the|dubious|feat|of|turning|one|man|'s|triumph|of|will|into|everyman|'s|romance|comedy|.\nSeemingly|disgusted|with|the|lazy|material|and|the|finished|product|'s|unshapely|look|,|director|Fisher|Stevens|inexplicably|dips|key|moments|from|the|film|in|Waking|Life|water|colors|.\nFormula|51|promises|a|new|kind|of|high|but|delivers|the|same|old|bad|trip|.\nEverything|that|was|right|about|Blade|is|wrong|in|its|sequel|.\nA|few|energetic|stunt|sequences|briefly|enliven|the|film|,|but|the|wheezing|terrorist|subplot|has|n't|the|stamina|for|the|100-minute|running|time|,|and|the|protagonists|'|bohemian|boorishness|mars|the|spirit|of|good|clean|fun|.\nThe|film|was|produced|by|Jerry|Bruckheimer|and|directed|by|Joel|Schumacher|,|and|reflects|the|worst|of|their|shallow|styles|:|wildly|overproduced|,|inadequately|motivated|every|step|of|the|way|and|demographically|targeted|to|please|every|one|(|and|no|one|)|.\nDisney|again|ransacks|its|archives|for|a|quick-buck|sequel|.\nCoarse|,|cliched|and|clunky|,|this|trifling|romantic|comedy|in|which|opposites|attract|for|no|better|reason|than|that|the|screenplay|demands|it|squanders|the|charms|of|stars|Hugh|Grant|and|Sandra|Bullock|.\nAnyone|who|suffers|through|this|film|deserves|,|at|the|very|least|,|a|big|box|of|consolation|candy|.\nHow|much|you|are|moved|by|the|emotional|tumult|of|(|François|and|Michèle|'s|)|relationship|depends|a|lot|on|how|interesting|and|likable|you|find|them|.\nThey|presume|their|audience|wo|n't|sit|still|for|a|sociology|lesson|,|however|entertainingly|presented|,|so|they|trot|out|the|conventional|science-fiction|elements|of|bug-eyed|monsters|and|futuristic|women|in|skimpy|clothes|.\nCollapses|after|30|minutes|into|a|slap-happy|series|of|adolescent|violence|.\nThe|following|things|are|not|at|all|entertaining|:|The|bad|sound|,|the|lack|of|climax|and|,|worst|of|all|,|watching|Seinfeld|(|who|is|also|one|of|the|film|'s|producers|)|do|everything|he|can|to|look|like|a|good|guy|.\nAttal|'s|hang-ups|surrounding|infidelity|are|so|old-fashioned|and|,|dare|I|say|,|outdated|,|it|'s|a|wonder|that|he|could|n't|have|brought|something|fresher|to|the|proceedings|simply|by|accident|.\nObvious|,|obnoxious|and|didactic|burlesque|.\nThe|most|surprising|thing|about|this|film|is|that|they|are|actually|releasing|it|into|theaters|.\nMichele|is|a|such|a|brainless|flibbertigibbet|that|it|'s|hard|to|take|her|spiritual|quest|at|all|seriously|.\nUltimately|,|clarity|matters|,|both|in|breaking|codes|and|making|movies|.\nEnigma|lacks|it|.\nPotty-mouthed|enough|for|PG-13|,|yet|not|as|hilariously|raunchy|as|South|Park|,|this|strangely|schizo|cartoon|seems|suited|neither|to|kids|or|adults|.\n...|has|its|moments|,|but|ultimately|,|its|curmudgeon|does|n't|quite|make|the|cut|of|being|placed|on|any|list|of|favorites|.\nA|distinctly|minor|effort|that|will|be|seen|to|better|advantage|on|cable|,|especially|considering|its|barely|feature-length|running|time|of|one|hour|.\nMost|of|the|movie|is|so|deadly|dull|that|watching|the|proverbial|paint|dry|would|be|a|welcome|improvement|.\nIn|the|end|,|Tuck|Everlasting|falls|victim|to|that|everlasting|conundrum|experienced|by|every|human|who|ever|lived|:|too|much|to|do|,|too|little|time|to|do|it|in|.\nRather|less|than|the|sum|of|its|underventilated|père-fils|confrontations|.\nMcKay|shows|crushingly|little|curiosity|about|,|or|is|ill-equipped|to|examine|,|the|interior|lives|of|the|characters|in|his|film|,|much|less|incorporate|them|into|his|narrative|.\nPlays|like|a|series|of|vignettes|--|clips|of|a|film|that|are|still|looking|for|a|common|through-line|.\nNew|Yorkers|always|seem|to|find|the|oddest|places|to|dwell|...\nAmid|the|shock|and|curiosity|factors|,|the|film|is|just|a|corny|examination|of|a|young|actress|trying|to|find|her|way|.\nYes|,|Spirited|Away|is|a|triumph|of|imagination|,|but|it|'s|also|a|failure|of|storytelling|.\nA|characteristically|engorged|and|sloppy|coming-of-age|movie|.\nA|somewhat|disappointing|and|meandering|saga|.\nWhenever|you|think|you|'ve|seen|the|end|of|the|movie|,|we|cut|to|a|new|scene|,|which|also|appears|to|be|the|end|.\nBut|,|no|,|we|get|another|scene|,|and|then|another|.\nYou|begin|to|long|for|the|end|credits|as|the|desert|does|for|rain|.\nAn|empty|,|ugly|exercise|in|druggy|trance-noir|and|trumped-up|street|credibility|.\nThe|screenplay|,|co-written|by|director|Imogen|Kimmel|,|lacks|the|wit|necessary|to|fully|exploit|the|comic|elements|of|the|premise|,|making|the|proceedings|more|bizarre|than|actually|amusing|.\nThe|milieu|is|wholly|unconvincing|...|and|the|histrionics|reach|a|truly|annoying|pitch|.\nUnfunny|comedy|with|a|lot|of|static|set|ups|,|not|much|camera|movement|,|and|most|of|the|scenes|take|place|indoors|in|formal|settings|with|motionless|characters|.\nEach|story|is|built|on|a|potentially|interesting|idea|,|but|the|first|two|are|ruined|by|amateurish|writing|and|acting|,|while|the|third|feels|limited|by|its|short|running|time|.\nExcept|for|Paymer|as|the|boss|who|ultimately|expresses|empathy|for|Bartleby|'s|pain|,|the|performances|are|so|stylized|as|to|be|drained|of|human|emotion|.\nWill|no|doubt|delight|Plympton|'s|legion|of|fans|;|others|may|find|80|minutes|of|these|shenanigans|exhausting|.\nThe|laughs|are|as|rare|as|snake|foo|yung|.\nFor|a|film|that|celebrates|radical|,|nonconformist|values|,|What|to|Do|in|Case|of|Fire|?\nlazily|and|glumly|settles|into|a|most|traditional|,|reserved|kind|of|filmmaking|.\nKnockaround|Guys|plays|like|a|student|film|by|two|guys|who|desperately|want|to|be|Quentin|Tarantino|when|they|grow|up|.\nBut|they|lack|their|idol|'s|energy|and|passion|for|detail|.\nMattei|so|completely|loses|himself|to|the|film|'s|circular|structure|to|ever|offer|any|insightful|discourse|on|,|well|,|Love|in|the|Time|of|Money|.\nIt|briefly|flirts|with|player|masochism|,|but|the|point|of|real|interest|-|--|audience|sadism|--|is|evaded|completely|.\nHolland|lets|things|peter|out|midway|,|but|it|'s|notably|better|acted|--|and|far|less|crass|-|than|some|other|recent|efforts|in|the|burgeoning|genre|of|films|about|black|urban|professionals|.\nFor|every|articulate|player|,|such|as|skateboarder|Tony|Hawk|or|BMX|rider|Mat|Hoffman|,|are|about|a|half|dozen|young|Turks|angling|to|see|how|many|times|they|can|work|the|words|``|radical|''|or|``|suck|''|into|a|sentence|.\nThere|'s|not|a|fresh|idea|at|the|core|of|this|tale|.\nAn|impenetrable|and|insufferable|ball|of|pseudo-philosophic|twaddle|.\nIt|'s|unfortunate|that|Wallace|,|who|wrote|Gibson|'s|Braveheart|as|well|as|the|recent|Pearl|Harbor|,|has|such|an|irrepressible|passion|for|sappy|situations|and|dialogue|.\nI|liked|the|movie|,|but|I|know|I|would|have|liked|it|more|if|it|had|just|gone|that|one|step|further|.\nI|'m|left|slightly|disappointed|that|it|did|n't|.\nDreary|tale|of|middle-class|angst\nFor|a|movie|about|the|power|of|poetry|and|passion|,|there|is|precious|little|of|either|.\n(|Jackson|and|Bledel|)|seem|to|have|been|picked|not|for|their|acting|chops|,|but|for|their|looks|and|appeal|to|the|pre-teen|crowd|.\nLillard|and|Cardellini|earn|their|Scooby|Snacks|,|but|not|anyone|else|.\nLike|Schindler|'s|List|,|The|Grey|Zone|attempts|to|be|grandiloquent|,|but|ends|up|merely|pretentious|--|in|a|grisly|sort|of|way|.\nAn|unremittingly|ugly|movie|to|look|at|,|listen|to|,|and|think|about|,|it|is|quite|possibly|the|sturdiest|example|yet|of|why|the|DV|revolution|has|cheapened|the|artistry|of|making|a|film|.\n(|Screenwriter|)|Pimental|took|the|Farrelly|Brothers|comedy|and|feminized|it|,|but|it|is|a|rather|poor|imitation|.\nIt|'s|kind|of|sad|that|so|many|people|put|so|much|time|and|energy|into|this|turkey|.\nFriday|After|Next|is|a|lot|more|bluster|than|bite|.\nIts|juxtaposition|of|overwrought|existentialism|and|stomach-churning|gore|will|have|you|forever|on|the|verge|of|either|cracking|up|or|throwing|up|.\nA|decidedly|mixed|bag|.\nThere|are|cheesy|backdrops|,|ridiculous|action|sequences|,|and|many|tired|jokes|about|men|in|heels|.\nIce|Cube|is|n't|quite|out|of|ripe|screwball|ideas|,|but|Friday|After|Next|spreads|them|pretty|thin|.\nNot|everything|in|the|film|works|,|including|its|somewhat|convenient|ending|.\nThe|characters|,|cast|in|impossibly|contrived|situations|,|are|totally|estranged|from|reality|.\nEverything|else|about|High|Crimes|is|,|like|the|military|system|of|justice|it|portrays|,|tiresomely|regimented|.\nJust|dreadful|.\nI|do|n't|blame|Eddie|Murphy|but|should|n't|Owen|Wilson|know|a|movie|must|have|a|story|and|a|script|?\nSweet|Home|Alabama|certainly|wo|n't|be|remembered|as|one|of|(|Witherspoon|'s|)|better|films|.\nhard|as|this|may|be|to|believe|,|Here|on|Earth|,|a|surprisingly|similar|teen|drama|,|was|a|better|film|.\nThis|is|just|lazy|writing|.\nEven|kids|deserve|better|.\nThe|pretensions|--|and|disposable|story|--|sink|the|movie|.\nAnd|Diesel|is|n't|the|actor|to|save|it|.\nBravo|reveals|the|true|intent|of|her|film|by|carefully|selecting|interview|subjects|who|will|construct|a|portrait|of|Castro|so|predominantly|charitable|it|can|only|be|seen|as|propaganda|.\n...|a|preachy|parable|stylized|with|a|touch|of|John|Woo|bullet|ballet|.\nFrank|Capra|played|this|story|straight|.\nBut|the|2002|film|does|n't|really|believe|in|it|,|and|breaks|the|mood|with|absurdly|inappropriate|`|comedy|'|scenes|.\nHow|about|starting|with|a|more|original|story|instead|of|just|slapping|extreme|humor|and|gross-out|gags|on|top|of|the|same|old|crap|?\nThe|problem|is|that|for|the|most|part|,|the|film|is|deadly|dull|.\nHandled|correctly|,|Wilde|'s|play|is|a|masterpiece|of|elegant|wit|and|artifice|.\nHere|,|alas|,|it|collapses|like|an|overcooked|soufflé|.\n``|Sorority|Boys|''|was|funnier|,|and|that|movie|was|pretty|bad|.\nA|bizarre|piece|of|work|,|with|premise|and|dialogue|at|the|level|of|kids|'|television|and|plot|threads|as|morose|as|teen|pregnancy|,|rape|and|suspected|murder\nPaul|Bettany|is|good|at|being|the|ultra-violent|gangster|wannabe|,|but|the|movie|is|certainly|not|number|1|.\nIt|'s|a|gag|that|'s|worn|a|bit|thin|over|the|years|,|though|Do|n't|Ask|still|finds|a|few|chuckles|.\nAn|uplifting|drama|...|What|Antwone|Fisher|is|n't|,|however|,|is|original|.\nOften|likable|,|but|just|as|often|it|'s|meandering|,|low|on|energy|,|and|too|eager|to|be|quirky|at|moments|when|a|little|old-fashioned|storytelling|would|come|in|handy|.\nCertain|to|be|distasteful|to|children|and|adults|alike|,|Eight|Crazy|Nights|is|a|total|misfire|.\nElaborate|special|effects|take|centre|screen|,|so|that|the|human|story|is|pushed|to|one|side|.\nShowtime|is|n't|particularly|assaultive|,|but|it|can|still|make|you|feel|that|you|never|want|to|see|another|car|chase|,|explosion|or|gunfight|again|.\nAll|the|characters|are|clinically|depressed|and|have|abandoned|their|slim|hopes|and|dreams|.\nThis|Tuxedo|...|should|have|been|sent|back|to|the|tailor|for|some|major|alterations|.\nI|have|no|problem|with|``|difficult|''|movies|,|or|movies|that|ask|the|audience|to|meet|them|halfway|and|connect|the|dots|instead|of|having|things|all|spelled|out|.\nBut|first|,|you|have|to|give|the|audience|a|reason|to|want|to|put|for|that|effort\nBeen|there|,|done|that|...|a|thousand|times|already|,|and|better|.\nWhat|'s|most|offensive|is|n't|the|waste|of|a|good|cast|,|but|the|film|'s|denial|of|sincere|grief|and|mourning|in|favor|of|bogus|spiritualism|.\nSunk|by|way|too|much|indulgence|of|scene-chewing|,|teeth-gnashing|actorliness|.\nFans|of|Plympton|'s|shorts|may|marginally|enjoy|the|film|,|but|it|is|doubtful|this|listless|feature|will|win|him|any|new|viewers|.\nBarrels|along|at|the|start|before|becoming|mired|in|sentimentality|.\nNone|of|this|sounds|promising|and|,|indeed|,|the|first|half|of|Sorority|Boys|is|as|appalling|as|any|`|comedy|'|to|ever|spill|from|a|projector|'s|lens|.\nThe|kind|of|movie|that|leaves|vague|impressions|and|a|nasty|aftertaste|but|little|clear|memory|of|its|operational|mechanics|.\n`|Punch-Drunk|Love|is|so|convinced|of|its|own|brilliance|that|,|if|it|were|a|person|,|you|'d|want|to|smash|its|face|in|.|'\nAt|once|overly|old-fashioned|in|its|sudsy|plotting|and|heavy-handed|in|its|effort|to|modernize|it|with|encomia|to|diversity|and|tolerance|.\nThe|trashy|teen-sleaze|equivalent|of|Showgirls|.\nWhile|the|production|details|are|lavish|,|film|has|little|insight|into|the|historical|period|and|its|artists|,|particularly|in|how|Sand|developed|a|notorious|reputation|.\nA|crass|and|insulting|homage|to|great|films|like|Some|Like|It|Hot|and|the|John|Wayne|classics|.\nWhat|'s|the|most|positive|thing|that|can|be|said|about|the|new|Rob|Schneider|vehicle|?\nWell|,|it|'s|not|as|pathetic|as|The|Animal|.\nWith|all|the|sympathy|,|empathy|and|pity|fogging|up|the|screen|...|His|Secret|Life|enters|the|land|of|unintentional|melodrama|and|tiresome|love|triangles|.\nThe|problematic|characters|and|overly|convenient|plot|twists|foul|up|Shum|'s|good|intentions|.\nWhat|`|Blade|Runner|'|would|'ve|looked|like|as|a|low-budget|series|on|a|UHF|channel|.\nHas|all|the|values|of|a|straight-to-video|movie|,|but|because|it|has|a|bigger-name|cast|,|it|gets|a|full|theatrical|release|.\nWith|its|lackadaisical|plotting|and|mindless|action|,|All|About|the|Benjamins|evokes|the|bottom|tier|of|blaxploitation|flicks|from|the|1970s|.\nIt|never|quite|makes|it|to|the|boiling|point|,|but|manages|to|sustain|a|good|simmer|for|most|of|its|running|time|.\nLoud|,|silly|,|stupid|and|pointless|.\nMandel|Holland|'s|direction|is|uninspired|,|and|his|scripting|unsurprising|,|but|the|performances|by|Phifer|and|Black|are|ultimately|winning|.\nYou|'ll|find|yourself|wishing|that|you|and|they|were|in|another|movie|.\nA|yawn-provoking|little|farm|melodrama|.\nDid|no|one|on|the|set|have|a|sense|of|humor|,|or|did|they|not|have|the|nerve|to|speak|up|?\nSeriously|,|rent|the|Disney|version|.\nAs|David|Letterman|and|The|Onion|have|proven|,|the|worst|of|tragedies|can|be|fertile|sources|of|humor|,|but|Lawrence|has|only|a|fleeting|grasp|of|how|to|develop|them|.\nLike|its|parade|of|predecessors|,|this|Halloween|is|a|gory|slash-fest|.\nIt|ca|n't|escape|its|past|,|and|it|does|n't|want|to|.\n``|Abandon|''|will|leave|you|wanting|to|abandon|the|theater|.\nProblem|is|,|we|have|no|idea|what|in|creation|is|going|on|.\nA|live-action|cartoon|,|a|fast-moving|and|cheerfully|simplistic|88|minutes|of|exaggerated|action|put|together|with|the|preteen|boy|in|mind|.\nA|loquacious|and|dreary|piece|of|business|.\nWhat|the|audience|feels|is|exhaustion|,|from|watching|a|movie|that|is|dark|(|dark|green|,|to|be|exact|)|,|sour|,|bloody|and|mean|.\ndirector|Hoffman|,|his|writer|and|Kline|'s|agent|should|serve|detention\nDodgy|mixture|of|cutesy|romance|,|dark|satire|and|murder|mystery|.\nMeticulously|mounted|,|exasperatingly|well-behaved|film|,|which|ticks|off|Kahlo|'s|lifetime|milestones|with|the|dutiful|precision|of|a|tax|accountant|.\nTime|of|Favor|could|have|given|audiences|the|time|of|day|by|concentrating|on|the|elements|of|a|revealing|alienation|among|a|culture|of|people|who|sadly|are|at|hostile|odds|with|one|another|through|recklessness|and|retaliation|.\nI|'m|not|sure|which|will|take|longer|to|heal|:|the|welt|on|Johnny|Knoxville|'s|stomach|from|a|riot-control|projectile|or|my|own|tortured|psyche|.\nWhile|Serving|Sara|does|have|a|long|way|to|go|before|it|reaches|the|level|of|crudity|in|the|latest|Austin|Powers|extravaganza|,|there|'s|nothing|here|to|match|that|movie|'s|intermittent|moments|of|inspiration|.\nI|'m|not|sure|which|is|worse|:|the|poor|acting|by|the|ensemble|cast|,|the|flat|dialogue|by|Vincent|R.|Nebrida|or|the|gutless|direction|by|Laurice|Guillen|.\nThe|only|reason|you|should|see|this|movie|is|if|you|have|a|case|of|masochism|and|an|hour|and|a|half|to|blow|.\nWhatever|about|warning|kids|about|the|dangers|of|ouija|boards|,|someone|should|dispense|the|same|advice|to|film|directors|.\nAs|with|so|many|merchandised-to-the-max|movies|of|this|type|,|more|time|appears|to|have|gone|into|recruiting|the|right|bands|for|the|playlist|and|the|costuming|of|the|stars|than|into|the|script|,|which|has|a|handful|of|smart|jokes|and|not|much|else|.\nThe|Irwins|'|scenes|are|fascinating|;|the|movie|as|a|whole|is|cheap|junk|and|an|insult|to|their|death-defying|efforts|.\nIf|routine|action|and|jokes|like|this|are|your|cup|of|tea|,|then|pay|your|$|8|and|get|ready|for|the|big|shear|.\nThis|is|one|baaaaaaaaad|movie|.\nA|man|leaving|the|screening|said|the|film|was|better|than|Saving|Private|Ryan|.\nHe|may|have|meant|the|Internet|short|Saving|Ryan|'s|Privates|.\nBut|Windtalkers|does|n't|beat|that|one|,|either|.\nMay|puzzle|his|most|ardent|fans|.\nStarts|as|a|tart|little|lemon|drop|of|a|movie|and|ends|up|as|a|bitter|pill|.\nWe|never|feel|anything|for|these|characters|,|and|as|a|result|the|film|is|basically|just|a|curiosity|.\nThose|unfamiliar|with|Mormon|traditions|may|find|The|Singles|Ward|occasionally|bewildering|.\nRitchie|may|not|have|a|novel|thought|in|his|head|,|but|he|knows|how|to|pose|Madonna|.\nThe|story|,|touching|though|it|is|,|does|not|quite|have|enough|emotional|resonance|or|variety|of|incident|to|sustain|a|feature|,|and|even|at|85|minutes|it|feels|a|bit|long|.\nFeels|like|the|work|of|an|artist|who|is|simply|tired|--|of|fighting|the|same|fights|,|of|putting|the|weight|of|the|world|on|his|shoulders|,|of|playing|with|narrative|form|.\nWhile|you|have|to|admit|it|'s|semi-amusing|to|watch|Robert|DeNiro|belt|out|``|When|you|'re|a|Jet|,|you|'re|a|Jet|all|the|way|,|''|it|'s|equally|distasteful|to|watch|him|sing|the|lyrics|to|``|Tonight|.|''\nThe|whole|mess|boils|down|to|a|transparently|hypocritical|work|that|feels|as|though|it|'s|trying|to|set|the|women|'s|liberation|movement|back|20|years|.|'\n...|the|cast|portrays|their|cartoon|counterparts|well|...|but|quite|frankly|,|Scoob|and|Shag|do|n't|eat|enough|during|the|film|.|'\nMore|of|the|same|old|garbage|Hollywood|has|been|trying|to|pass|off|as|acceptable|teen|entertainment|for|some|time|now|.\nTV|skit-com|material|fervently|deposited|on|the|big|screen|.\n(|Johnnie|To|and|Wai|Ka|Fai|are|)|sure|to|find|an|enthusiastic|audience|among|American|action-adventure|buffs|,|but|the|film|'s|interests|may|be|too|narrow|to|attract|crossover|viewers|.\nIf|there|was|ever|a|movie|where|the|upbeat|ending|feels|like|a|copout|,|this|is|the|one|.\nIt|'s|as|sorry|a|mess|as|its|director|'s|diabolical|debut|,|Mad|Cows|.\nAny|attempts|at|nuance|given|by|the|capable|cast|is|drowned|out|by|director|Jon|Purdy|'s|sledgehammer|sap|.\nIts|audacious|ambitions|sabotaged|by|pomposity|,|Steven|Soderbergh|'s|space|opera|emerges|as|a|numbingly|dull|experience|.\nDespite|some|strong|performances|,|never|rises|above|the|level|of|a|telanovela|.\nThis|is|a|picture|that|Maik|,|the|firebrand|turned|savvy|ad|man|,|would|be|envious|of|:|it|hijacks|the|heat|of|revolution|and|turns|it|into|a|sales|tool|.\nFeels|slight|,|as|if|it|were|an|extended|short|,|albeit|one|made|by|the|smartest|kids|in|class|.\nUnspeakable|,|of|course|,|barely|begins|to|describe|the|plot|and|its|complications|.\nVulgar|is|too|optimistic|a|title|.\nThe|actors|pull|out|all|the|stops|in|nearly|every|scene|,|but|to|diminishing|effect|.\nThe|characters|never|change|.\nIf|The|Last|Man|were|the|last|movie|left|on|earth|,|there|would|be|a|toss-up|between|presiding|over|the|end|of|cinema|as|we|know|it|and|another|night|of|delightful|hand|shadows|.\nWelles|groupie\\/scholar|Peter|Bogdanovich|took|a|long|time|to|do|it|,|but|he|'s|finally|provided|his|own|broadside|at|publishing|giant|William|Randolph|Hearst|.\nMakes|the|same|mistake|as|the|music|industry|it|criticizes|,|becoming|so|slick|and|watered-down|it|almost|loses|what|made|you|love|it|in|the|first|place|.\nEven|as|I|valiantly|struggled|to|remain|interested|,|or|at|least|conscious|,|I|could|feel|my|eyelids|...|getting|...|very|...|heavy|...\nA|bad|movie|that|happened|to|good|actors|.\nBoasts|eye-catching|art|direction|but|has|a|forcefully|quirky|tone|that|quickly|wears|out|its|limited|welcome|.\nScreenwriter|Dan|Schneider|and|director|Shawn|Levy|substitute|volume|and|primary|colors|for|humor|and|bite|.\nOversexed|,|at|times|overwrought|comedy\\/drama|that|offers|little|insight|into|the|experience|of|being|forty|,|female|and|single|.\nThat|such|a|horrible|movie|could|have|sprung|from|such|a|great|one|is|one|of|the|year|'s|worst|cinematic|tragedies|.\nIt|all|starts|to|smack|of|a|Hallmark|Hall|of|Fame|,|with|a|few|four|letter|words|thrown|in|that|are|generally|not|heard|on|television|.\nRarely|has|a|film|'s|title|served|such|dire|warning|.\nIf|you|saw|Benigni|'s|Pinocchio|at|a|public|park|,|you|'d|grab|your|kids|and|run|and|then|probably|call|the|police|.\nThe|animation|is|competent|,|and|some|of|the|gags|are|quite|funny|,|but|Jonah|...|never|shakes|the|oppressive|,|morally|superior|good-for-you|quality|that|almost|automatically|accompanies|didactic|entertainment|.\nThe|pace|of|the|film|is|very|slow|(|for|obvious|reasons|)|and|that|too|becomes|off-putting|.\nMr.|Wollter|and|Ms.|Seldhal|give|strong|and|convincing|performances|,|but|neither|reaches|into|the|deepest|recesses|of|the|character|to|unearth|the|quaking|essence|of|passion|,|grief|and|fear|.\nShafer|'s|feature|does|n't|offer|much|in|terms|of|plot|or|acting|.\nIn|his|role|of|observer|of|the|scene|,|Lawrence|sounds|whiny|and|defensive|,|as|if|his|life-altering|experiences|made|him|bitter|and|less|mature|.\n(|T|)|he|ideas|of|Revolution|#|9|are|more|compelling|than|the|execution\nThe|film|did|n't|convince|me|that|Calvin|Jr.|'s|Barbershop|represents|some|sort|of|beacon|of|hope|in|the|middle|of|Chicago|'s|South|Side|.\nWhat|happens|when|something|goes|bump|in|the|night|and|nobody|cares|?\nDespite|some|comic|sparks|,|Welcome|to|Collinwood|never|catches|fire|.\nDirector|George|Hickenlooper|has|had|some|success|with|documentaries|,|but|here|his|sense|of|story|and|his|juvenile|camera|movements|smack|of|a|film|school|undergrad|,|and|his|maudlin|ending|might|not|have|gotten|him|into|film|school|in|the|first|place|.\nShows|moments|of|promise|but|ultimately|succumbs|to|cliches|and|pat|storytelling|.\nEven|accepting|this|in|the|right|frame|of|mind|can|only|provide|it|with|so|much|leniency|.\nSome|Body|is|a|shaky|,|uncertain|film|that|nevertheless|touches|a|few|raw|nerves|.\nAll|the|small|moments|and|flashbacks|do|n't|add|up|to|much|more|than|trite|observations|on|the|human|condition|.\n(|A|)|stale|retread|of|the|'53|original|.\nOne|thing|'s|for|sure|--|if|George|Romero|had|directed|this|movie|,|it|would|n't|have|taken|the|protagonists|a|full|hour|to|determine|that|in|order|to|kill|a|zombie|you|must|shoot|it|in|the|head|.\nFor|dance|completists|only|.\nSpreads|itself|too|thin|,|leaving|these|actors|,|as|well|as|the|members|of|the|commune|,|short|of|profound|characterizations\nIt|would|n't|matter|so|much|that|this|arrogant|Richard|Pryor|wannabe|'s|routine|is|offensive|,|puerile|and|unimaginatively|foul-mouthed|if|it|was|at|least|funny|.\nThe|locale|...|remains|far|more|interesting|than|the|story|at|hand|.\nYo|,|it|'s|The|Days|Of|Our|Lives|meets|Electric|Boogaloo|.\nI|liked|the|original|short|story|but|this|movie|,|even|at|an|hour|and|twenty-some|minutes|,|it|'s|too|long|and|it|goes|nowhere|.\nThis|little|film|is|so|slovenly|done|,|so|primitive|in|technique|,|that|it|ca|n't|really|be|called|animation|.\nMakes|98|minutes|feel|like|three|hours|.\nHawke|'s|film|,|a|boring|,|pretentious|waste|of|nearly|two|hours|,|does|n't|tell|you|anything|except|that|the|Chelsea|Hotel|today|is|populated|by|whiny|,|pathetic|,|starving|and|untalented|artistes|.\nAspires|to|the|cracked|lunacy|of|The|Adventures|of|Buckaroo|Banzai|,|but|thanks|to|an|astonishingly|witless|script|ends|up|more|like|The|Adventures|of|Ford|Fairlane|.\nReal-life|strongman|Ahola|lacks|the|charisma|and|ability|to|carry|the|film|on|his|admittedly|broad|shoulders|.\nThe|title|,|alone|,|should|scare|any|sane|person|away|.\nLow|comedy|does|n't|come|much|lower|.\nAppropriately|cynical|social|commentary|aside|,|#|9|never|quite|ignites|.\nIt|'s|crap|on|a|leash|--|far|too|polite|to|scale|the|lunatic|heights|of|Joe|Dante|'s|similarly|styled|Gremlins|.\nOne|of|the|most|depressing|movie-going|experiences|I|can|think|of|is|to|sit|through|about|90|minutes|of|a|so-called|`|comedy|'|and|not|laugh|once|.\nThis|is|the|kind|of|movie|where|the|big|scene|is|a|man|shot|out|of|a|cannon|into|a|vat|of|ice|cream|.\nLet|'s|face|it|--|there|are|n't|many|reasons|anyone|would|want|to|see|Crossroads|if|they|'re|not|big|fans|of|teen|pop|kitten|Britney|Spears|.\nA|loud|,|brash|and|mainly|unfunny|high|school|comedy|.\nAn|exceptionally|dreary|and|overwrought|bit|of|work|,|every|bit|as|imperious|as|Katzenberg|'s|The|Prince|of|Egypt|from|1998|.\nThe|movie|is|so|resolutely|cobbled|together|out|of|older|movies|that|it|even|uses|a|totally|unnecessary|prologue|,|just|because|it|seems|obligatory|.\nThe|movie|'s|vision|of|a|white|American|zealously|spreading|a|Puritanical|brand|of|Christianity|to|South|Seas|islanders|is|one|only|a|true|believer|could|relish|.\nMaid|in|Manhattan|proves|that|it|'s|easier|to|change|the|sheets|than|to|change|hackneyed|concepts|when|it|comes|to|dreaming|up|romantic|comedies|.\nA|fairly|harmless|but|ultimately|lifeless|feature-length|afterschool|special|.\nI|ca|n't|remember|the|last|time|I|saw|a|movie|where|I|wanted|so|badly|for|the|protagonist|to|fail|.\n...|the|whole|thing|succeeded|only|in|making|me|groggy|.\nLike|most|of|Jaglom|'s|films|,|some|of|it|is|honestly|affecting|,|but|more|of|it|seems|contrived|and|secondhand|.\nOne|long|,|numbing|action|sequence|made|up|mostly|of|routine|stuff|Yuen|has|given|us|before|.\nForgettable|,|if|good-hearted|,|movie|.\nThe|film|'s|most|improbable|feat|?\nIt|did|n't|go|straight|to|video|.\n...|about|as|exciting|to|watch|as|two|last-place|basketball|teams|playing|one|another|on|the|final|day|of|the|season|.\nThe|Chateau|...|is|less|concerned|with|cultural|and|political|issues|than|doting|on|its|eccentric|characters|.\nCruel|and|inhuman|cinematic|punishment|...|simultaneously|degrades|its|characters|,|its|stars|and|its|audience|.\nIt|'s|not|too|fast|and|not|too|slow|.\nIt|'s|not|too|racy|and|it|'s|not|too|offensive|.\nIt|'s|not|too|much|of|anything|.\nThe|great|pity|is|that|those|responsible|did|n't|cut|their|losses|--|and|ours|--|and|retitle|it|The|Adventures|of|Direct-to-Video|Nash|,|and|send|it|to|its|proper|home|.\nAbout|as|original|as|a|gangster|sweating|bullets|while|worrying|about|a|contract|on|his|life|.\nAn|empty|shell|of|an|epic|rather|than|the|real|deal|.\nWe|could|have|expected|a|little|more|human|being|,|and|a|little|less|product|.\nInstead|of|using|George|and|Lucy|'s|most|obvious|differences|to|ignite|sparks|,|Lawrence|desperately|looks|elsewhere|,|seizing|on|George|'s|haplessness|and|Lucy|'s|personality|tics|.\nWhether|Quitting|will|prove|absorbing|to|American|audiences|is|debatable|.\nBecomes|a|bit|of|a|mishmash|:|a|tearjerker|that|does|n't|and|a|thriller|that|wo|n't|.\nFamily|togetherness|takes|a|back|seat|to|inter-family|rivalry|and|workplace|ambition|...|whole|subplots|have|no|explanation|or|even|plot|relevance|.\nGrant|is|n't|Cary|and|Bullock|is|n't|Katherine|.\nLike|a|fish|that|'s|lived|too|long|,|Austin|Powers|in|Goldmember|has|some|unnecessary|parts|and|is|kinda|wrong|in|places|.\nTwo|tedious|acts|light|on|great|scares|and|a|good|surprise|ending|.\nShyamalan|should|stop|trying|to|please|his|mom|.\nThe|entire|movie|is|in|need|of|a|scented|bath|.\nI|'m|sorry|to|say|that|this|should|seal|the|deal|-|Arnold|is|not|,|nor|will|he|be|,|back|.\nThe|story|of|Trouble|Every|Day|...|is|so|sketchy|it|amounts|to|little|more|than|preliminary|notes|for|a|science-fiction|horror|film|,|and|the|movie|'s|fragmentary|narrative|style|makes|piecing|the|story|together|frustrating|difficult|.\nA|Movie|to|Forget\nFor|all|of|its|insights|into|the|dream|world|of|teen|life|,|and|its|electronic|expression|through|cyber|culture|,|the|film|gives|no|quarter|to|anyone|seeking|to|pull|a|cohesive|story|out|of|its|2 1\\/2|-|hour|running|time|.\nEnough|is|not|a|bad|movie|,|just|mediocre|.\nThe|performances|are|so|overstated|,|the|effect|comes|off|as|self-parody|.\nIt|looks|good|,|but|it|is|essentially|empty|.\nThe|film|never|finds|its|tone|and|several|scenes|run|too|long|.\nThe|idea|is|more|interesting|than|the|screenplay|,|which|lags|badly|in|the|middle|and|lurches|between|not-very-funny|comedy|,|unconvincing|dramatics|and|some|last-minute|action|strongly|reminiscent|of|Run|Lola|Run|.\nVan|Wilder|has|a|built-in|audience|,|but|only|among|those|who|are|drying|out|from|spring|break|and|are|still|unconcerned|about|what|they|ingest|.\nIt|'s|hard|to|believe|that|something|so|short|could|be|so|flabby|.\nDo|we|really|need|another|film|that|praises|female|self-sacrifice|?\nThe|major|problem|with|Windtalkers|is|that|the|bulk|of|the|movie|centers|on|the|wrong|character|.\nTennessee|Williams|by|way|of|Oprah|'s|Book|Club|.\nSo|verbally|flatfooted|and|so|emotionally|predictable|or|bland|that|it|plays|like|the|standard|made-for-TV|movie|.\nThe|entire|point|of|a|shaggy|dog|story|,|of|course|,|is|that|it|goes|nowhere|,|and|this|is|classic|nowheresville|in|every|sense|.\nStale|and|clichéd|to|a|fault|.\nThis|film|is|too|busy|hitting|all|of|its|assigned|marks|to|take|on|any|life|of|its|own|.\nWatching|junk|like|this|induces|a|kind|of|abstract|guilt|,|as|if|you|were|paying|dues|for|good|books|unread|,|fine|music|never|heard|.\nThe|script|feels|as|if|it|started|to|explore|the|obvious|voyeuristic|potential|of|`|hypertime|'|but|then|backed|off|when|the|producers|saw|the|grosses|for|Spy|Kids|.\nStarts|off|witty|and|sophisticated|and|you|want|to|love|it|--|but|filmmaker|Yvan|Attal|quickly|writes|himself|into|a|corner|.\nSome|Like|It|Hot|on|the|Hardwood|proves|once|again|that|a|man|in|drag|is|not|in|and|of|himself|funny|.\nUnfortunately|,|contrived|plotting|,|stereotyped|characters|and|Woo|'s|over-the-top|instincts|as|a|director|undermine|the|moral|dilemma|at|the|movie|'s|heart|.\nWitless|and|utterly|pointless|.\nWhen|`|science|fiction|'|takes|advantage|of|the|fact|that|its|intended|audience|has|n't|yet|had|much|science|,|it|does|a|disservice|to|the|audience|and|to|the|genre|.\nShow|me|the|mugging|.\nRepresents|something|very|close|to|the|nadir|of|the|thriller\\/horror|genre|.\nVisually|sumptuous|but|intellectually|stultifying|.\nAs|a|feature-length|film|,|it|wears|out|its|welcome|as|tryingly|as|the|title|character|.\nA|guilty|pleasure|at|best|,|and|not|worth|seeing|unless|you|want|to|laugh|at|it|.\nA|sleep-inducing|thriller|with|a|single|twist|that|everyone|except|the|characters|in|it|can|see|coming|a|mile|away|.\nWith|a|``|Spy|Kids|''|sequel|opening|next|week|,|why|bother|with|a|contemptible|imitator|starring|a|``|SNL|''|has-been|acting|like|an|8-year-old|channeling|Roberto|Benigni|?\nIt|'s|just|rather|leaden|and|dull|.\nLacks|the|visual|flair|and|bouncing|bravado|that|characterizes|better|hip-hop|clips|and|is|content|to|recycle|images|and|characters|that|were|already|tired|10|years|ago|.\nStatham|employs|an|accent|that|I|think|is|supposed|to|be|an|attempt|at|hardass|American|but|sometimes|just|lapses|into|unhidden|British|.\nInstead|of|trying|to|bust|some|blondes|,|(|Diggs|)|should|be|probing|why|a|guy|with|his|talent|ended|up|in|a|movie|this|bad|.\nInitial|strangeness|inexorably|gives|way|to|rote|sentimentality|and|mystical|tenderness|becomes|narrative|expedience|.\nDe|Ayala|is|required|to|supply|too|much|of|the|energy|in|a|film|that|is|,|overall|,|far|too|staid|for|its|subject|matter|.\nDismally|dull|sci-fi|comedy|.\nThere|'s|surely|something|wrong|with|a|comedy|where|the|only|belly|laughs|come|from|the|selection|of|outtakes|tacked|onto|the|end|credits|.\nWhen|one|hears|Harry|Shearer|is|going|to|make|his|debut|as|a|film|director|,|one|would|hope|for|the|best\nThe|leads|we|are|given|here|are|simply|too|bland|to|be|interesting|.\n(|Toback|'s|)|fondness|for|fancy|split-screen|,|stuttering|editing|and|pompous|references|to|Wittgenstein|and|Kirkegaard|...|blends|uneasily|with|the|titillating|material|.\nAdam|Sandler|'s|8|Crazy|Nights|is|75|wasted|minutes|of|Sandler|as|the|voice-over|hero|in|Columbia|Pictures|'|perverse|idea|of|an|animated|holiday|movie|.\nessentially|``|Fatal|Attraction|''|remade|for|viewers|who|were|in|diapers|when|the|original|was|released|in|1987|.\n...|this|story|gets|sillier|,|not|scarier|,|as|it|goes|along|...\nEven|a|hardened|voyeur|would|require|the|patience|of|Job|to|get|through|this|interminable|,|shapeless|documentary|about|the|swinging|subculture|.\nThe|film|'s|hero|is|a|bore|and|his|innocence|soon|becomes|a|questionable|kind|of|inexcusable|dumb|innocence|.\nA|singularly|off-putting|romantic|comedy|.\nThis|is|an|exercise|not|in|biography|but|in|hero|worship|.\nIt|all|comes|down|to|whether|you|can|tolerate|Leon|Barlow|.\nI|ca|n't|.\nIn|the|spirit|of|the|season|,|I|assign|one|bright|shining|star|to|Roberto|Benigni|'s|Pinocchio|--|but|I|guarantee|that|no|wise|men|will|be|following|after|it|.\nCheck|your|brain|and|your|secret|agent|decoder|ring|at|the|door|because|you|do|n't|want|to|think|too|much|about|what|'s|going|on|.\nThe|movie|does|has|some|entertainment|value|-|how|much|depends|on|how|well|you|like|Chris|Rock|.\nA|movie|that|seems|motivated|more|by|a|desire|to|match|mortarboards|with|Dead|Poets|Society|and|Good|Will|Hunting|than|by|its|own|story|.\nA|culture|clash|comedy|only|half|as|clever|as|it|thinks|it|is|.\nThe|logic|of|it|all|will|be|Greek|to|anyone|not|predisposed|to|the|movie|'s|rude|and|crude|humor|.\nAs|self-aware|movies|go|,|Who|is|Cletis|Tout|?\nis|clever|enough|,|though|thin|writing|proves|its|undoing|.\nStarts|out|strongly|before|quickly|losing|its|focus|,|point|and|purpose|in|a|mess|of|mixed|messages|,|over-blown|drama|and|Bruce|Willis|with|a|scar|.\n...|a|fascinating|curiosity|piece|--|fascinating|,|that|is|,|for|about|ten|minutes|.\nAfter|that|it|becomes|long|and|tedious|like|a|classroom|play|in|a|college|history|course|.\nDirector|Jay|Russell|weighs|down|his|capricious|fairy-tale|with|heavy|sentiment|and|lightweight|meaning|.\nThere|are|many|things|that|solid|acting|can|do|for|a|movie|,|but|crafting|something|promising|from|a|mediocre|screenplay|is|not|one|of|them|.\nIts|screenplay|serves|as|auto-critique|,|and|its|clumsiness|as|its|own|most|damning|censure|.\nAt|times|,|it|actually|hurts|to|watch|.\nNemesis|suffers|from|a|paunchy|midsection|,|several|plodding|action|sequences|and|a|wickedly|undramatic|central|theme|.\nThe|jokes|are|telegraphed|so|far|in|advance|they|must|have|been|lost|in|the|mail|.\n(|Tries|)|to|parody|a|genre|that|'s|already|a|joke|in|the|United|States|.\nThe|movie|is|the|equivalent|of|French|hip-hop|,|which|also|seems|to|play|on|a|10-year|delay|.\nA|beyond-lame|satire|,|Teddy|Bears|'|Picnic|ranks|among|the|most|pitiful|directing|debuts|by|an|esteemed|writer-actor|.\nI|'ve|never|seen|(|a|remake|)|do|anything|as|stomach-turning|as|the|way|Adam|Sandler|'s|new|movie|rapes|,|pillages|and|incinerates|Frank|Capra|'s|classic|...\nHollywood|'s|answer|to|an|air|ball|.\nAnd|people|make|fun|of|me|for|liking|Showgirls|.\nSuch|a|wildly|uneven|hit-and-miss|enterprise|,|you|ca|n't|help|suspecting|that|it|was|improvised|on|a|day-to-day|basis|during|production|.\nA|weird|little|movie|that|'s|amusing|enough|while|you|watch|it|,|offering|fine|acting|moments|and|pungent|insights|into|modern|L.A.|'s|show-biz|and|media|subcultures|.\nBut|it|does|n't|leave|you|with|much|.\nI|'m|convinced|I|could|keep|a|family|of|five|blind|,|crippled|,|Amish|people|alive|in|this|situation|better|than|these|British|soldiers|do|at|keeping|themselves|kicking|.\nLike|Mike|is|a|slight|and|uninventive|movie|:|Like|the|exalted|Michael|Jordan|referred|to|in|the|title|,|many|can|aspire|but|none|can|equal|.\nThere|is|nothing|funny|in|this|every-joke-has|-|been-told-a|-|thousand-times|-|before|movie|.\nAlways|destined|to|be|measured|against|Anthony|Asquith|'s|acclaimed|1952|screen|adaptation|.\nThis|is|standard|crime|drama|fare|...|instantly|forgettable|and|thoroughly|dull|.\nThere|'s|some|outrageously|creative|action|in|The|Transporter|...|(|b|)|ut|by|the|time|Frank|parachutes|down|onto|a|moving|truck|,|it|'s|just|another|cartoon|with|an|unstoppable|superman|.\nOne|of|those|based-on-truth|stories|that|persuades|you|,|with|every|scene|,|that|it|could|never|really|have|happened|this|way|.\nFrom|its|nauseating|spinning|credits|sequence|to|a|very|talented|but|underutilized|supporting|cast|,|Bartleby|squanders|as|much|as|it|gives|out|.\nYet|another|genre|exercise|,|Gangster|No.|1|is|as|generic|as|its|title|.\nDespite|the|holes|in|the|story|and|the|somewhat|predictable|plot|,|moments|of|the|movie|caused|me|to|jump|in|my|chair|...\nThere|'s|an|admirable|rigor|to|Jimmy|'s|relentless|anger|,|and|to|the|script|'s|refusal|of|a|happy|ending|,|but|as|those|monologues|stretch|on|and|on|,|you|realize|there|'s|no|place|for|this|story|to|go|but|down|.\nOnce|again|,|the|intelligence|of|gay|audiences|has|been|grossly|underestimated|,|and|a|meaty|plot|and|well-developed|characters|have|been|sacrificed|for|skin|and|flash|that|barely|fizzle|.\nA|lightweight|,|uneven|action|comedy|that|freely|mingles|French|,|Japanese|and|Hollywood|cultures|.\nSuch|a|fine|idea|for|a|film|,|and|such|a|stultifying|,|lifeless|execution|.\n(|Allen|'s|)|best|works|understand|why|snobbery|is|a|better|satiric|target|than|middle-America|diversions|could|ever|be|.\nThis|overlong|infomercial|,|due|out|on|video|before|month|'s|end|,|is|tepid|and|tedious|.\nAn|ambitious|,|guilt-suffused|melodrama|crippled|by|poor|casting|.\nRarely|has|sex|on|screen|been|so|aggressively|anti-erotic|.\nA|dull|,|inconsistent|,|dishonest|female|bonding|picture|.\nSo|much|about|the|film|is|loopy|and|ludicrous|...|that|it|could|have|been|a|hoot|in|a|bad-movie|way|if|the|laborious|pacing|and|endless|exposition|had|been|tightened|.\nA|disappointment|for|a|movie|that|should|have|been|the|ultimate|IMAX|trip|.\nDoes|little|to|elaborate|the|conceit|of|setting|this|blood-soaked|tragedy|of|murderous|ambition|in|the|era|of|Richard|Nixon|.\nThis|Sade|is|hardly|a|perverse|,|dangerous|libertine|and|agitator|--|which|would|have|made|for|better|drama|.\nHe|'s|just|a|sad|aristocrat|in|tattered|finery|,|and|the|film|seems|as|deflated|as|he|does|.\nThe|film|'s|needlessly|opaque|intro|takes|its|doe-eyed|Crudup|out|of|pre-9|\\/|11|New|York|and|onto|a|cross-country|road|trip|of|the|Homeric|kind|.\nIt|'s|as|if|a|bored|Cage|spent|the|duration|of|the|film|'s|shooting|schedule|waiting|to|scream|:|``|Got|AIDS|yet|?|''\nIn|a|strange|way|,|Egoyan|has|done|too|much|.\nHe|'s|worked|too|hard|on|this|movie|.\nThe|film|has|the|thrown-together|feel|of|a|summer-camp|talent|show|:|hastily|written|,|underrehearsed|,|arbitrarily|plotted|and|filled|with|crude|humor|and|vulgar|innuendo|.\nThe|last|three|narcissists|left|on|earth|compete|for|each|others|'|affections|.\nA|clash|between|the|artificial|structure|of|the|story|and|the|more|contemporary|,|naturalistic|tone|of|the|film|...\nThe|movie|'s|messages|are|quite|admirable|,|but|the|story|is|just|too|clichéd|and|too|often|strains|credulity|.\nWhat|we|have|here|is|n't|a|disaster|,|exactly|,|but|a|very|handsomely|produced|let-down|.\nThe|script|was|reportedly|rewritten|a|dozen|times|--|either|11|times|too|many|or|else|too|few|.\nA|shoddy|male|hip|hop|fantasy|filled|with|guns|,|expensive|cars|,|lots|of|naked|women|and|Rocawear|clothing|.\nTo|the|filmmakers|,|Ivan|is|a|prince|of|a|fellow|,|but|he|comes|across|as|shallow|and|glib|though|not|mean-spirited|,|and|there|'s|no|indication|that|he|'s|been|responsible|for|putting|together|any|movies|of|particular|value|or|merit|.\nThis|is|a|movie|filled|with|unlikable|,|spiteful|idiots|;|whether|or|not|their|friendship|is|salvaged|makes|no|difference|in|the|least|.\nIt|'s|as|if|Allen|,|at|66|,|has|stopped|challenging|himself|.\nScotland|,|PA|is|entirely|too|straight-faced|to|transcend|its|clever|concept|.\nA|movie|that|the|less|charitable|might|describe|as|a|castrated|cross|between|Highlander|and|Lolita|.\nNot|only|does|LeBlanc|make|one|spectacularly|ugly-looking|broad|,|but|he|appears|miserable|throughout|as|he|swaggers|through|his|scenes|.\nThere|'s|little|to|recommend|Snow|Dogs|,|unless|one|considers|cliched|dialogue|and|perverse|escapism|a|source|of|high|hilarity|.\nIt|'s|deep-sixed|by|a|compulsion|to|catalog|every|bodily|fluids|gag|in|There|'s|Something|About|Mary|and|devise|a|parallel|clone-gag|.\nThe|film|rehashes|several|old|themes|and|is|capped|with|pointless|extremes|--|it|'s|insanely|violent|and|very|graphic|.\nSorority|Boys|,|which|is|as|bad|at|it|is|cruel|,|takes|every|potential|laugh|and|stiletto-stomps|the|life|out|of|it|.\nHere|the|love|scenes|all|end|in|someone|screaming|.\nMaybe|there|'s|a|metaphor|here|,|but|figuring|it|out|would|n't|make|Trouble|Every|Day|any|better|.\nThis|is|the|first|film|I|'ve|ever|seen|that|had|no|obvious|directing|involved|.\nFans|of|so-bad-they|'re|-|good|cinema|may|find|some|fun|in|this|jumbled|mess|.\nWeiss|and|Speck|never|make|a|convincing|case|for|the|relevance|of|these|two|20th-century|footnotes|.\nSheridan|is|painfully|bad|,|a|fourth-rate|Jim|Carrey|who|does|n't|understand|the|difference|between|dumb|fun|and|just|plain|dumb|.\nPresents|nothing|special|and|,|until|the|final|act|,|nothing|overtly|disagreeable|.\nThe|most|excruciating|86|minutes|one|might|sit|through|this|summer|that|do|not|involve|a|dentist|drill|.\nWas|that|movie|nothing|more|than|a|tepid|exercise|in|trotting|out|a|formula|that|worked|five|years|ago|but|has|since|lost|its|fizz|?\nIt|goes|on|for|too|long|and|bogs|down|in|a|surfeit|of|characters|and|unnecessary|subplots|.\nIt|'s|absolutely|amazing|how|first-time|director|Kevin|Donovan|managed|to|find|something|new|to|add|to|the|canon|of|Chan|.\nMake|Chan|'s|action|sequences|boring|.\nYou|...|get|a|sense|of|good|intentions|derailed|by|a|failure|to|seek|and|strike|just|the|right|tone|.\n`|In|this|poor|remake|of|such|a|well|loved|classic|,|Parker|exposes|the|limitations|of|his|skill|and|the|basic|flaws|in|his|vision|.|'\nIt|'s|the|movie|equivalent|of|a|sweaty|old|guy|in|a|rain|coat|shopping|for|cheap|porn|.\nThe|film|'s|final|hour|,|where|nearly|all|the|previous|unseen|material|resides|,|is|unconvincing|soap|opera|that|Tornatore|was|right|to|cut|.\nThe|movie|does|such|an|excellent|job|of|critiquing|itself|at|every|faltering|half-step|of|its|development|that|criticizing|feels|more|like|commiserating|.\nI|found|it|slow|,|predictable|and|not|very|amusing|.\nDirector|Yu|seems|far|more|interested|in|gross-out|humor|than|in|showing|us|well-thought|stunts|or|a|car|chase|that|we|have|n't|seen|10,000|times|.\nViewers|will|need|all|the|luck|they|can|muster|just|figuring|out|who|'s|who|in|this|pretentious|mess|.\nA|pint-sized|`|Goodfellas|'|designed|to|appeal|to|the|younger|set|,|it|'s|not|a|very|good|movie|in|any|objective|sense|,|but|it|does|mostly|hold|one|'s|interest|.\nGet|out|your|pooper-scoopers|.\nWhile|the|material|is|slight|,|the|movie|is|better|than|you|might|think|.\nIt|'s|definitely|not|made|for|kids|or|their|parents|,|for|that|matter|,|and|I|think|even|fans|of|Sandler|'s|comic|taste|may|find|it|uninteresting|.\nSheridan|seems|terrified|of|the|book|'s|irreverent|energy|,|and|scotches|most|of|its|élan|,|humor|,|bile|,|and|irony|.\nMore|busy|than|exciting|,|more|frantic|than|involving|,|more|chaotic|than|entertaining|.\nThere|are|more|shots|of|children|smiling|for|the|camera|than|typical|documentary|footage|which|hurts|the|overall|impact|of|the|film|.\nIt|'s|makes|a|better|travelogue|than|movie|.\nIt|'s|as|if|Solondz|had|two|ideas|for|two|movies|,|could|n't|really|figure|out|how|to|flesh|either|out|,|so|he|just|slopped|`|em|together|here|.\nThe|fourth|in|a|series|that|I|'ll|bet|most|parents|had|thought|--|hoped|!\n--|was|a|fad|that|had|long|since|vanished|.\nIt|'s|a|long|way|from|Orwell|'s|dark|,|intelligent|warning|cry|(|1984|)|to|the|empty|stud|knockabout|of|Equilibrium|,|and|what|once|was|conviction|is|now|affectation|.\nIts|premise|is|smart|,|but|the|execution|is|pretty|weary|.\nThe|holiday|message|of|the|37-minute|Santa|vs.|the|Snowman|leaves|a|lot|to|be|desired|.\nmore|precious|than|perspicacious\nIf|you|saw|it|on|TV|,|you|'d|probably|turn|it|off|,|convinced|that|you|had|already|seen|that|movie|.\n(|T|)|he|script|is|n't|up|to|the|level|of|the|direction|,|nor|are|the|uneven|performances|by|the|cast|members|,|who|seem|bound|and|determined|to|duplicate|Bela|Lugosi|'s|now-cliched|vampire|accent|.\nIf|this|is|cinema|,|I|pledge|allegiance|to|Cagney|and|Lacey|.\nEnigma|looks|great|,|has|solid|acting|and|a|neat|premise|.\nYet|why|it|fails|is|a|riddle|wrapped|in|a|mystery|inside|an|enigma|.\nMost|of|the|characters|come|off|as|pantomimesque|sterotypes|.\nStarts|promisingly|but|disintegrates|into|a|dreary|,|humorless|soap|opera|.\nWhile|there|'s|likely|very|little|crossover|appeal|to|those|without|much|interest|in|the|Elizabethans|(|as|well|as|rank|frustration|from|those|in|the|know|about|Rubbo|'s|dumbed-down|tactics|)|,|Much|Ado|About|Something|is|an|amicable|endeavor|.\nIt|'s|actually|too|sincere|--|the|crime|movie|equivalent|of|a|chick|flick|.\nMost|of|the|film|feels|conceived|and|shot|on|the|fly|--|like|between|lunch|breaks|for|Shearer|'s|radio|show|and|his|Simpson|voice-overs|.\nPerry|'s|good|and|his|is|an|interesting|character|,|but|``|Serving|Sara|''|has|n't|much|more|to|serve|than|silly|fluff|.\nNor|is|it|a|romantic|comedy|.\nCulkin|turns|his|character|into|what|is|basically|an|anti-Harry|Potter|--|right|down|to|the|Gryffindor|scarf|.\nMemorable|for|a|peculiar|malaise|that|renders|its|tension|flaccid|and|,|by|extension|,|its|surprises|limp|and|its|resolutions|ritual|.\nIt|'s|a|documentary|that|says|that|the|alternate|sexuality|meant|to|set|you|free|may|require|so|much|relationship|maintenance|that|celibacy|can|start|looking|good|.\nIn|the|not-too-distant|future|,|movies|like|Ghost|Ship|will|be|used|as|analgesic|balm|for|overstimulated|minds|.\nRight|now|,|they|'re|merely|signposts|marking|the|slow|,|lingering|death|of|imagination|.\nThe|movie|'s|biggest|shocks|come|from|seeing|former|nymphette|Juliette|Lewis|playing|a|salt-of-the-earth|mommy|named|Minnie|and|watching|Slim|travel|incognito|in|a|ridiculous|wig|no|respectable|Halloween|costume|shop|would|ever|try|to|sell|.\nLike|most|movies|about|the|pitfalls|of|bad|behavior|...|Circuit|gets|drawn|into|the|party|.\nIt|appears|as|if|even|the|filmmakers|did|n't|know|what|kind|of|movie|they|were|making|.\nBeneath|the|uncanny|,|inevitable|and|seemingly|shrewd|facade|of|movie-biz|farce|...|lies|a|plot|cobbled|together|from|largely|flat|and|uncreative|moments|.\nSnipes|relies|too|much|on|a|scorchingly|plotted|dramatic|scenario|for|its|own|good|.\nPiccoli|'s|performance|is|amazing|,|yes|,|but|the|symbols|of|loss|and|denial|and|life-at-arm|'s|-|length|in|the|film|seem|irritatingly|transparent|.\nStarts|out|mediocre|,|spirals|downward|,|and|thuds|to|the|bottom|of|the|pool|with|an|utterly|incompetent|conclusion|.\nNicolas|Cage|is|n't|the|first|actor|to|lead|a|group|of|talented|friends|astray|,|and|this|movie|wo|n't|create|a|ruffle|in|what|is|already|an|erratic|career|.\nIt|lacks|the|compassion|,|good-natured|humor|and|the|level|of|insight|that|made|(|Eyre|'s|)|first|film|something|of|a|sleeper|success|.\nThe|result|is|good|gossip|,|entertainingly|delivered|,|yet|with|a|distinctly|musty|odour|,|its|expiry|date|long|gone|.\nA|sustained|fest|of|self-congratulation|between|actor|and|director|that|leaves|scant|place|for|the|viewer|.\nAll|Analyze|That|proves|is|that|there|is|really|only|one|movie|'s|worth|of|decent|gags|to|be|gleaned|from|the|premise|.\nGreen|ruins|every|single|scene|he|'s|in|,|and|the|film|,|while|it|'s|not|completely|wreaked|,|is|seriously|compromised|by|that|.\nThere|'s|not|a|comedic|moment|in|this|romantic|comedy|.\nThe|story|is|predictable|,|the|jokes|are|typical|Sandler|fare|,|and|the|romance|with|Ryder|is|puzzling|.\nWallace|directs|with|such|patronising|reverence|,|it|turns|the|stomach|.\nResurrection|has|the|dubious|distinction|of|being|a|really|bad|imitation|of|the|really|bad|Blair|Witch|Project|.\nPoor|Ben|Bratt|could|n't|find|stardom|if|MapQuest|emailed|him|point-to-point|driving|directions|.\nPretend|like|your|SAT|scores|are|below|120|and|you|might|not|notice|the|flaws|.\nUnlike|Trey|Parker|,|Sandler|does|n't|understand|that|the|idea|of|exploiting|molestation|for|laughs|is|funny|,|not|actually|exploiting|it|yourself|.\nA|fake|street|drama|that|keeps|telling|you|things|instead|of|showing|them|.\nAn|empty|,|purposeless|exercise|.\nEarnest|and|tentative|even|when|it|aims|to|shock|.\nHaneke|'s|script|(|from|Elfriede|Jelinek|'s|novel|)|is|contrived|,|unmotivated|,|and|psychologically|unpersuasive|,|with|an|inconclusive|ending|.\nA|sometimes|incisive|and|sensitive|portrait|that|is|undercut|by|its|awkward|structure|and|a|final|veering|toward|melodrama|.\nThose|24-and-unders|looking|for|their|own|Caddyshack|to|adopt|as|a|generational|signpost|may|have|to|keep|on|looking|.\nA|distinctly|mixed|bag|,|the|occasional|bursts|of|sharp|writing|alternating|with|lots|of|sloppiness|and|the|obligatory|moments|of|sentimental|ooze|.\nWhat|begins|brightly|gets|bogged|down|over|140|minutes|.\nUltimately|,|Jane|learns|her|place|as|a|girl|,|softens|up|and|loses|some|of|the|intensity|that|made|her|an|interesting|character|to|begin|with|.\nAh-nuld|'s|action|hero|days|might|be|over|.\nIt|'s|clear|why|Deuces|Wild|,|which|was|shot|two|years|ago|,|has|been|gathering|dust|on|MGM|'s|shelf|.\nFeels|like|nothing|quite|so|much|as|a|middle-aged|moviemaker|'s|attempt|to|surround|himself|with|beautiful|,|half-naked|women|.\nWhen|the|precise|nature|of|Matthew|'s|predicament|finally|comes|into|sharp|focus|,|the|revelation|fails|to|justify|the|build-up|.\nThis|picture|is|murder|by|numbers|,|and|as|easy|to|be|bored|by|as|your|ABC|'s|,|despite|a|few|whopping|shootouts|.\nHilarious|musical|comedy|though|stymied|by|accents|thick|as|mud|.\nIf|you|are|into|splatter|movies|,|then|you|will|probably|have|a|reasonably|good|time|with|The|Salton|Sea|.\nA|dull|,|simple-minded|and|stereotypical|tale|of|drugs|,|death|and|mind-numbing|indifference|on|the|inner-city|streets|.\nThe|feature-length|stretch|...|strains|the|show|'s|concept|.\nThis|slender|plot|feels|especially|thin|stretched|over|the|nearly|80-minute|running|time|.\nA|film|that|will|probably|please|people|already|fascinated|by|Behan|but|leave|everyone|else|yawning|with|admiration|.\nDavis|the|performer|is|plenty|fetching|enough|,|but|she|needs|to|shake|up|the|mix|,|and|work|in|something|that|does|n't|feel|like|a|half-baked|stand-up|routine|.\nThe|densest|distillation|of|Roberts|'|movies|ever|made|.\nUltimately|,|the|film|never|recovers|from|the|clumsy|cliché|of|the|ugly|American|abroad|,|and|the|too-frosty|exterior|Ms.|Paltrow|employs|to|authenticate|her|British|persona|is|another|liability|.\nA|handsome|but|unfulfilling|suspense|drama|more|suited|to|a|quiet|evening|on|PBS|than|a|night|out|at|an|AMC|.\nTom|Green|and|an|Ivy|League|college|should|never|appear|together|on|a|marquee|,|especially|when|the|payoff|is|an|unschooled|comedy|like|Stealing|Harvard|,|which|fails|to|keep|80|minutes|from|seeming|like|800|.\n(|It|)|highlights|not|so|much|the|crime|lord|'s|messianic|bent|,|but|Spacey|'s|.\nMaster|of|Disguise|runs|for|only|71|minutes|and|feels|like|three|hours|.\nA|reworking|of|Die|Hard|and|Cliffhanger|but|it|'s|nowhere|near|as|exciting|as|either|.\nSuffers|from|unlikable|characters|and|a|self-conscious|sense|of|its|own|quirky|hipness|.\nA|film|without|surprise|geared|toward|maximum|comfort|and|familiarity|.\nFessenden|continues|to|do|interesting|work|,|and|it|would|be|nice|to|see|what|he|could|make|with|a|decent|budget|.\nBut|the|problem|with|Wendigo|,|for|all|its|effective|moments|,|is|n't|really|one|of|resources|.\nSpirit|is|a|visual|treat|,|and|it|takes|chances|that|are|bold|by|studio|standards|,|but|it|lacks|a|strong|narrative|.\nIt|stars|schticky|Chris|Rock|and|stolid|Anthony|Hopkins|,|who|seem|barely|in|the|same|movie|.\nTheir|contrast|is|neither|dramatic|nor|comic|--|it|'s|just|a|weird|fizzle|.\nThis|is|a|children|'s|film|in|the|truest|sense|.\nIt|'s|packed|with|adventure|and|a|worthwhile|environmental|message|,|so|it|'s|great|for|the|kids|.\nParents|,|on|the|other|hand|,|will|be|ahead|of|the|plot|at|all|times|,|and|there|is|n't|enough|clever|innuendo|to|fil\nThe|niftiest|trick|perpetrated|by|The|Importance|of|Being|Earnest|is|the|alchemical|transmogrification|of|Wilde|into|Austen|--|and|a|Hollywood-ized|Austen|at|that|.\nTykwer|'s|surface|flash|is|n't|just|a|poor|fit|with|Kieslowski|'s|lyrical|pessimism|;|it|completely|contradicts|everything|Kieslowski|'s|work|aspired|to|,|including|the|condition|of|art|.\nIce|Age|is|the|first|computer-generated|feature|cartoon|to|feel|like|other|movies|,|and|that|makes|for|some|glacial|pacing|early|on|.\nToo|slick|and|manufactured|to|claim|street|credibility|.\nCherry|Orchard|is|badly|edited|,|often|awkwardly|directed|and|suffers|from|the|addition|of|a|wholly|unnecessary|pre-credit|sequence|designed|to|give|some|of|the|characters|a|`|back|story|.|'\nWhat|ensues|are|much|blood-splattering|,|mass|drug-induced|bowel|evacuations|,|and|none-too-funny|commentary|on|the|cultural|distinctions|between|Americans|and|Brits|.\nA|dark|comedy|that|goes|for|sick|and|demented|humor|simply|to|do|so|.\nThe|movie|is|without|intent|.\nVisually|exciting|sci-fi|film|which|suffers|from|a|lackluster|screenplay|.\nWhile|Hollywood|Ending|has|its|share|of|belly|laughs|(|including|a|knockout|of|a|closing|line|)|,|the|movie|winds|up|feeling|like|a|great|missed|opportunity|.\nIf|The|Full|Monty|was|a|freshman|fluke|,|Lucky|Break|is|(|Cattaneo|)|sophomore|slump|.\nSandra|Bullock|and|Hugh|Grant|make|a|great|team|,|but|this|predictable|romantic|comedy|should|get|a|pink|slip|.\nAllegiance|to|Chekhov|,|which|director|Michael|Cacoyannis|displays|with|somber|earnestness|in|the|new|adaptation|of|The|Cherry|Orchard|,|is|a|particularly|vexing|handicap|.\nYou|expect|more|from|director|Michael|Apted|(|Enigma|)|and|screenwriter|Nicholas|Kazan|(|Reversal|of|Fortune|)|than|this|cliche|pileup|.\nThe|first|mistake|,|I|suspect|,|is|casting|Shatner|as|a|legendary|professor|and|Kunis|as|a|brilliant|college|student|--|where|'s|Pauly|Shore|as|the|rocket|scientist|?\nThe|dramatic|scenes|are|frequently|unintentionally|funny|,|and|the|action|sequences|--|clearly|the|main|event|--|are|surprisingly|uninvolving|.\nReplacing|John|Carpenter|'s|stylish|tracking|shots|is|degraded|,|handheld|Blair|Witch|video-cam|footage|.\nOf|all|the|Halloween|'s|,|this|is|the|most|visually|unappealing|.\nIt|has|the|requisite|faux-urban|vibe|and|hotter-two-years-ago|rap|and|R&B|names|and|references|.\nDespite|its|dry|wit|and|compassion|,|the|film|suffers|from|a|philosophical|emptiness|and|maddeningly|sedate|pacing|.\n...|feels|as|if|(|there|'s|)|a|choke|leash|around|your|neck|so|director|Nick|Cassavetes|can|give|it|a|good|,|hard|yank|whenever|he|wants|you|to|feel|something|.\nAttal|pushes|too|hard|to|make|this|a|comedy|or|serious|drama|.\nHe|seems|to|want|both|,|but|succeeds|in|making|neither|.\nI|could|have|used|my|two|hours|better|watching|Being|John|Malkovich|again|.\nIt|'s|not|a|bad|plot|;|but|,|unfortunately|,|the|movie|is|nowhere|near|as|refined|as|all|the|classic|dramas|it|borrows|from|.\nGirlfriends|are|bad|,|wives|are|worse|and|babies|are|the|kiss|of|death|in|this|bitter|Italian|comedy|.\nThe|only|young|people|who|possibly|will|enjoy|it|are|infants|...|who|might|be|distracted|by|the|movie|'s|quick|movements|and|sounds|.\nThe|film|boasts|at|least|a|few|good|ideas|and|features|some|decent|performances|,|but|the|result|is|disappointing|.\nNo|Such|Thing|breaks|no|new|ground|and|treads|old|turf|like|a|hippopotamus|ballerina|.\nUnfortunately|,|neither|Sendak|nor|the|directors|are|particularly|engaging|or|articulate|.\nA|wishy-washy|melodramatic|movie|that|shows|us|plenty|of|sturm|und|drung|,|but|explains|its|characters|'|decisions|only|unsatisfactorily|.\nBang|!\nZoom|!\nIt|'s|actually|pretty|funny|,|but|in|all|the|wrong|places|.\nLurid|and|less|than|lucid|work|.\nA|wannabe|comedy|of|manners|about|a|brainy|prep-school|kid|with|a|Mrs.|Robinson|complex|founders|on|its|own|preciousness|--|and|squanders|its|beautiful|women|.\nAt|a|brief|42|minutes|,|we|need|more|X|and|less|blab|.\nIf|anything|,|see|it|for|Karen|Black|,|who|camps|up|a|storm|as|a|fringe|feminist|conspiracy|theorist|named|Dirty|Dick|.\nThis|90-minute|dud|could|pass|for|Mike|Tyson|'s|E|!\nTrue|Hollywood|Story|.\nThis|is|surely|one|of|the|most|frantic|,|virulent|and|foul-natured|Christmas|season|pics|ever|delivered|by|a|Hollywood|studio|.\nOnce|the|expectation|of|laughter|has|been|quashed|by|whatever|obscenity|is|at|hand|,|even|the|funniest|idea|is|n't|funny|.\nA|porn|film|without|the|sex|scenes|.\nThe|connected|stories|of|Breitbart|and|Hanussen|are|actually|fascinating|,|but|the|filmmaking|in|Invincible|is|such|that|the|movie|does|not|do|them|justice|.\nA|depressingly|retrograde|,|`|post-feminist|'|romantic|comedy|that|takes|an|astonishingly|condescending|attitude|toward|women|.\nReturn|to|Never|Land|is|much|more|P.C.|than|the|original|version|(|no|more|racist|portraits|of|Indians|,|for|instance|)|,|but|the|excitement|is|missing|.\nBy|the|end|,|you|just|do|n't|care|whether|that|cold-hearted|snake|Petrovich|(|that|would|be|Reno|)|gets|his|comeuppance|.\nJust|bring|on|the|Battle|Bots|,|please|!\nWhile|it|'s|all|quite|tasteful|to|look|at|,|the|attention|process|tends|to|do|a|little|fleeing|of|its|own|.\nBroder|'s|screenplay|is|shallow|,|offensive|and|redundant|,|with|pitifully|few|real|laughs|.\nYes|they|can|swim|,|the|title|is|merely|Anne-Sophie|Birot|'s|off-handed|way|of|saying|girls|find|adolescence|difficult|to|wade|through|.\nDon|Michael|Paul|uses|quick-cuts|,|(|very|)|large|shadows|and|wide-angle|shots|taken|from|a|distance|to|hide|the|liberal|use|of|a|body|double|(|for|Seagal|)|.\nSlow|,|silly|and|unintentionally|hilarious|.\nThe|Sweetest|Thing|leaves|a|bitter|taste|.\nIn|a|big|corner|office|in|Hell|,|Satan|is|throwing|up|his|hands|in|surrender|,|is|firing|his|R&D|people|,|and|has|decided|he|will|just|screen|The|Master|of|Disguise|24\\/7|.\nFor|something|as|splendid-looking|as|this|particular|film|,|the|viewer|expects|something|special|but|instead|gets|(|sci-fi|)|rehash|.\nA|thriller|without|a|lot|of|thrills|.\nThis|stuck|pig|of|a|movie|flails|limply|between|bizarre|comedy|and|pallid|horror|.\nAh|,|the|travails|of|metropolitan|life|!\nAlas|,|another|breathless|movie|about|same|!\nIn|Moonlight|Mile|,|no|one|gets|shut|out|of|the|hug|cycle|.\nThough|uniformly|well|acted|,|especially|by|young|Ballesta|and|Galan|(|a|first-time|actor|)|,|writer\\/director|Achero|Manas|'s|film|is|schematic|and|obvious|.\nDone|in|mostly|by|a|weak|script|that|ca|n't|support|the|epic|treatment|.\nDespite|its|visual|virtuosity|,|`|Naqoyqatsi|'|is|banal|in|its|message|and|the|choice|of|material|to|convey|it|.\nSlap|her|-|she|'s|not|funny|!\nNo|French|people|were|harmed|during|the|making|of|this|movie|,|but|they|were|insulted|and|the|audience|was|put|through|torture|for|an|hour|and|a|half|.\nThough|its|rather|routine|script|is|loaded|with|familiar|situations|,|the|movie|has|a|cinematic|fluidity|and|sense|of|intelligence|that|makes|it|work|more|than|it|probably|should|.\n``|One|look|at|a|girl|in|tight|pants|and|big|tits|and|you|turn|stupid|?|''\nUm|...|is|n't|that|the|basis|for|the|entire|plot|?\n``|Not|really|as|bad|as|you|might|think|!|''\nStrident|and|inelegant|in|its|`|message-movie|'|posturing|.\nOne|regards|Reign|of|Fire|with|awe|.\nWhat|a|vast|enterprise|has|been|marshaled|in|the|service|of|such|a|minute|idea|.\nIt|has|the|right|approach|and|the|right|opening|premise|,|but|it|lacks|the|zest|and|it|goes|for|a|plot|twist|instead|of|trusting|the|material|.\nIts|impressive|images|of|crematorium|chimney|fires|and|stacks|of|dead|bodies|are|undermined|by|the|movie|'s|presentation|,|which|is|way|too|stagy|.\nSeeing|as|the|film|lacks|momentum|and|its|position|remains|mostly|undeterminable|,|the|director|'s|experiment|is|a|successful|one|.\nThe|plot|is|romantic|comedy|boilerplate|from|start|to|finish|.\nI|suspect|this|is|the|kind|of|production|that|would|have|been|funnier|if|the|director|had|released|the|outtakes|theatrically|and|used|the|film|as|a|bonus|feature|on|the|DVD|.\nAn|unfortunate|title|for|a|film|that|has|nothing|endearing|about|it|.\nNinety|minutes|of|Viva|Castro|!\ncan|be|as|tiresome|as|9|seconds|of|Jesse|Helms|'|anti-|Castro|rhetoric|,|which|are|included\nComes|off|as|a|long|,|laborious|whine|,|the|bellyaching|of|a|paranoid|and|unlikable|man|.\nIt|just|goes|to|show|,|an|intelligent|person|is|n't|necessarily|an|admirable|storyteller|.\nIn|a|102-minute|film|,|Aaliyah|gets|at|most|20|minutes|of|screen|time|.\n...|most|viewers|will|wish|there|had|been|more|of|the|``|Queen|''|and|less|of|the|``|Damned|.|''\nHopelessly|inane|,|humorless|and|under-inspired|.\nKapur|fails|to|give|his|audience|a|single|character|worth|rooting|for|(|or|worth|rooting|against|,|for|that|matter|)|.\nIt|reduces|the|complexities|to|bromides|and|slogans|and|it|gets|so|preachy-keen|and|so|tub-thumpingly|loud|it|makes|you|feel|like|a|chump|just|for|sitting|through|it|.\nNone|of|this|has|the|suavity|or|classical|familiarity|of|Bond|,|but|much|of|it|is|good|for|a|laugh|.\nThe|problem|with|``|XXX|''|is|that|its|own|action|is|n't|very|effective|.\nA|great|script|brought|down|by|lousy|direction|.\nSame|guy|with|both|hats|.\nBig|mistake|.\nA|mediocre|exercise|in|target|demographics|,|unaware|that|it|'s|the|butt|of|its|own|joke|.\nDirector|Kevin|Bray|excels|in|breaking|glass|and|marking|off|the|``|Miami|Vice|''|checklist|of|power|boats|,|Latin|music|and|dog|tracks|.\nHe|does|n't|,|however|,|deliver|nearly|enough|of|the|show|'s|trademark|style|and|flash|.\nIn|gleefully|,|thumpingly|hyperbolic|terms|,|it|covers|just|about|every|cliche|in|the|compendium|about|crass|,|jaded|movie|types|and|the|phony|baloney|movie|biz|.\nThe|Spalding|Gray|equivalent|of|a|teen|gross-out|comedy|.\nPerhaps|even|the|SLC|high|command|found|writer-director|Mitch|Davis|'s|wall|of|kitsch|hard|going|.\nAccording|to|Wendigo|,|`|nature|'|loves|the|members|of|the|upper|class|almost|as|much|as|they|love|themselves|.\nAn|encouraging|effort|from|McCrudden\nThe|romance|between|the|leads|is|n't|as|compelling|or|as|believable|as|it|should|be|.\nIf|I|could|have|looked|into|my|future|and|saw|how|bad|this|movie|was|,|I|would|go|back|and|choose|to|skip|it|.\nFortunately|,|you|still|have|that|option|.\nSupposedly|authentic|account|of|a|historical|event|that|'s|far|too|tragic|to|merit|such|superficial|treatment|.\nAdroit|but|finally|a|trifle|flat|,|Mad|Love|does|n't|galvanize|its|outrage|the|way|,|say|,|Jane|Campion|might|have|done|,|but|at|least|it|possesses|some|.\nTo|Blandly|Go|Where|We|Went|8|Movies|Ago|...\nA|slow-moving|police-procedural|thriller|that|takes|its|title|all|too|literally|.\nThis|u-boat|does|n't|have|a|captain|.\nWith|nary|a|glimmer|of|self-knowledge|,|(|Crane|)|becomes|more|specimen|than|character|--|and|Auto|Focus|remains|a|chilly|,|clinical|lab|report|.\nThis|one|aims|for|the|toilet|and|scores|a|direct|hit|.\nDull|,|a|road-trip|movie|that|'s|surprisingly|short|of|both|adventure|and|song|.\nI|walked|away|not|really|know|who|``|they|''|were|,|what|``|they|''|looked|like|.\nWhy|``|they|''|were|here|and|what|``|they|''|wanted|and|quite|honestly|,|I|did|n't|care|.\nAfter|several|scenes|of|this|tacky|nonsense|,|you|'ll|be|wistful|for|the|testosterone-charged|wizardry|of|Jerry|Bruckheimer|productions|,|especially|because|Half|Past|Dead|is|like|The|Rock|on|a|Wal-Mart|budget|.\nA|relatively|effective|little|potboiler|until|its|absurd|,|contrived|,|overblown|,|and|entirely|implausible|finale|.\nThe|Country|Bears|wastes|an|exceptionally|good|idea|.\nBut|the|movie|that|does|n't|really|deliver|for|country|music|fans|or|for|family|audiences\nAdults|will|certainly|want|to|spend|their|time|in|the|theater|thinking|up|grocery|lists|and|ways|to|tell|their|kids|how|not|to|act|like|Pinocchio|.\nAs|for|children|,|they|wo|n't|enjoy|the|movie|at|all|.\n...|you|can|be|forgiven|for|realizing|that|you|'ve|spent|the|past|20|minutes|looking|at|your|watch|and|waiting|for|Frida|to|just|die|already|.\nToo|bad|writer-director|Adam|Rifkin|situates|it|all|in|a|plot|as|musty|as|one|of|the|Golden|Eagle|'s|carpets|.\nIt|'s|lazy|for|a|movie|to|avoid|solving|one|problem|by|trying|to|distract|us|with|the|solution|to|another|.\nThe|movie|is|genial|but|never|inspired|,|and|little|about|it|will|stay|with|you|.\nThe|movie|obviously|seeks|to|re-create|the|excitement|of|such|'50s|flicks|as|Jules|Verne|'s|'|20,000|Leagues|Under|the|Sea|'|and|the|George|Pal|version|of|H.G.|Wells|'|`|The|Time|Machine|.|'\nBut|its|storytelling|prowess|and|special|effects|are|both|listless|.\nDespite|the|opulent|lushness|of|every|scene|,|the|characters|never|seem|to|match|the|power|of|their|surroundings|.\neven|after|90|minutes|of|playing|opposite|each|other|Bullock|and|Grant|still|look|ill|at|ease|sharing|the|same|scene|.\nWhat|should|have|been|a|painless|time-killer|becomes|instead|a|grating|endurance|test|.\nA|bland|,|obnoxious|88-minute|infomercial|for|Universal|Studios|and|its|ancillary|products|.|.|.\nlittle|action|,|almost|no|suspense|or|believable|tension|,|one-dimensional|characters|up|the|wazoo|and|sets|that|can|only|be|described|as|sci-fi|generic|.\nThe|movie|strains|to|stay|on|the|light|,|comic|side|of|the|issue|,|despite|the|difficulty|of|doing|so|when|dealing|with|the|destruction|of|property|and|,|potentially|,|of|life|itself|.\nThe|Master|of|Disguise|is|awful|.\nIt|'s|Pauly|Shore|awful|.\nDo|n't|say|you|were|n't|warned|.\nDisappointing|in|comparison|to|other|recent|war|movies|...|or|any|other|John|Woo|flick|for|that|matter|.\nThe|entire|movie|is|filled|with|deja|vu|moments|.\n`|Opening|up|'|the|play|more|has|partly|closed|it|down|.\nWhat|(|Frei|)|gives|us|...|is|a|man|who|uses|the|damage|of|war|--|far|more|often|than|the|warfare|itself|--|to|create|the|kind|of|art|shots|that|fill|gallery|shows|.\nAn|ugly|,|revolting|movie|.\nThe|film|is|way|too|full|of|itself|;|it|'s|stuffy|and|pretentious|in|a|give-me-an-Oscar|kind|of|way|.\nThe|movie|is|concocted|and|carried|out|by|folks|worthy|of|scorn|,|and|the|nicest|thing|I|can|say|is|that|I|ca|n't|remember|a|single|name|responsible|for|it|.\nWatching|``|Ending|''|is|too|often|like|looking|over|the|outdated|clothes|and|plastic|knickknacks|at|your|neighbor|'s|garage|sale|.\nYou|ca|n't|believe|anyone|would|really|buy|this|stuff|.\nCertainly|beautiful|to|look|at|,|but|its|not|very|informative|about|its|titular|character|and|no|more|challenging|than|your|average|television|biopic|.\nIt|desperately|wants|to|be|a|wacky|,|screwball|comedy|,|but|the|most|screwy|thing|here|is|how|so|many|talented|people|were|convinced|to|waste|their|time|.\nThe|skills|of|a|calculus|major|at|M.I.T.|are|required|to|balance|all|the|formulaic|equations|in|the|long-winded|heist|comedy|Who|Is|Cletis|Tout|?\nFrom|the|choppy|editing|to|the|annoying|score|to|`|special|effects|'|by|way|of|replacing|objects|in|a|character|'s|hands|below|the|camera|line|,|``|Besotted|''|is|misbegotten\nMy|advice|is|to|skip|the|film|and|pick|up|the|soundtrack|.\nA|film|that|presents|an|interesting|,|even|sexy|premise|then|ruins|itself|with|too|many|contrivances|and|goofy|situations|.\nFilled|with|low-brow|humor|,|gratuitous|violence|and|a|disturbing|disregard|for|life|.\ndirected|in|a|flashy|,|empty|sub-music|video|style|by|a|director|so|self-possessed|he|actually|adds|a|period|to|his|first|name\nThe|70-year-old|Godard|has|become|,|to|judge|from|In|Praise|of|Love|,|the|sort|of|bitter|old|crank|who|sits|behind|his|light|meter|and|harangues|the|supposed|injustices|of|the|artistic|world-at-large|without|doing|all|that|much|to|correct|them|.\nAn|unsophisticated|sci-fi|drama|that|takes|itself|all|too|seriously|.\nSolondz|is|without|doubt|an|artist|of|uncompromising|vision|,|but|that|vision|is|beginning|to|feel|,|if|not|morally|bankrupt|,|at|least|terribly|monotonous|.\nHarvard|Man|is|a|semi-throwback|,|a|reminiscence|without|nostalgia|or|sentimentality|.\nSupposedly|based|upon|real|,|or|at|least|soberly|reported|incidents|,|the|film|ends|with|a|large|human|tragedy|.\nAlas|,|getting|there|is|not|even|half|the|interest|.\nWhile|Hoffman|'s|performance|is|great|,|the|subject|matter|goes|nowhere|.\nThe|smash|'em|-|up|,|crash|'em|-|up|,|shoot|'em|-|up|ending|comes|out|of|nowhere|substituting|mayhem|for|suspense|.\nDeuces|Wild|treads|heavily|into|Romeo|and|Juliet\\/West|Side|Story|territory|,|where|it|plainly|has|no|business|going|.\nHart|'s|War|seems|to|want|to|be|a|character|study|,|but|apparently|ca|n't|quite|decide|which|character|.\nTheological|matters|aside|,|the|movie|is|so|clumsily|sentimental|and|ineptly|directed|it|may|leave|you|speaking|in|tongues|.\nThis|latest|installment|of|the|horror|film|franchise|that|is|apparently|as|invulnerable|as|its|trademark|villain|has|arrived|for|an|incongruous|summer|playoff|,|demonstrating|yet|again|that|the|era|of|the|intelligent|,|well-made|B|movie|is|long|gone|.\nNovak|contemplates|a|heartland|so|overwhelmed|by|its|lack|of|purpose|that|it|seeks|excitement|in|manufactured|high|drama|.\nBeen|there|,|done|that|,|liked|it|much|better|the|first|time|around|-|when|it|was|called|The|Professional|.\nThe|film|is|all|over|the|place|,|really|.\nIt|dabbles|all|around|,|never|gaining|much|momentum|.\nThe|beautiful|,|unusual|music|is|this|film|'s|chief|draw|,|but|its|dreaminess|may|lull|you|to|sleep|.\nThe|action|quickly|sinks|into|by-the-numbers|territory|.\nForages|for|audience|sympathy|like|a|temperamental|child|begging|for|attention|,|giving|audiences|no|reason|to|truly|care|for|its|decrepit|freaks|beyond|the|promise|of|a|reprieve|from|their|incessant|whining|.\nWhen|(|Reno|)|lets|her|radical|flag|fly|,|taking|angry|potshots|at|George|W.|Bush|,|Henry|Kissinger|,|Larry|King|,|et|al.|,|Reno|devolves|into|a|laugh-free|lecture|.\nSuch|a|premise|is|ripe|for|all|manner|of|lunacy|,|but|Kaufman|and|Gondry|rarely|seem|sure|of|where|it|should|go|.\nBurns|'|fifth|beer-soaked|film|feels|in|almost|every|possible|way|--|from|the|writing|and|direction|to|the|soggy|performances|--|tossed|off|.\nWhile|this|one|gets|off|with|a|good|natured|warning|,|future|Lizard|endeavors|will|need|to|adhere|more|closely|to|the|laws|of|laughter\nAnother|boorish|movie|from|the|I-heard-a-joke|-|at-a-frat-party|school|of|screenwriting|.\nToo|much|of|the|movie|feels|contrived|,|as|if|the|filmmakers|were|worried|the|story|would|n't|work|without|all|those|gimmicks|.\nIt|'s|hard|to|understand|why|anyone|in|his|right|mind|would|even|think|to|make|the|attraction|a|movie|.\nAnd|it|'s|harder|still|to|believe|that|anyone|in|his|right|mind|would|want|to|see|the|it|.\nThe|ethos|of|the|Chelsea|Hotel|may|shape|Hawke|'s|artistic|aspirations|,|but|he|has|n't|yet|coordinated|his|own|DV|poetry|with|the|Beat|he|hears|in|his|soul|.\nThe|sight|of|the|name|Bruce|Willis|brings|to|mind|images|of|a|violent|battlefield|action|picture|,|but|the|film|has|a|lot|more|on|its|mind|--|maybe|too|much|.\nWhy|sit|through|a|crummy|,|wannabe-hip|crime|comedy|that|refers|incessantly|to|old|movies|,|when|you|could|just|rent|those|movies|instead|,|let|alone|seek|out|a|respectable|new|one|?\nThe|obnoxious|special|effects|,|the|obligatory|outbursts|of|flatulence|and|the|incessant|,|so-five-minutes-ago|pop|music|on|the|soundtrack|overwhelm|what|is|left|of|the|scruffy|,|dopey|old|Hanna-Barbera|charm|.\nExploring|value|choices|is|a|worthwhile|topic|for|a|film|--|but|here|the|choices|are|as|contrived|and|artificial|as|Kerrigan|'s|platinum-blonde|hair|.\nThe|movie|'s|downfall|is|to|substitute|plot|for|personality|.\nIt|does|n't|really|know|or|care|about|the|characters|,|and|uses|them|as|markers|for|a|series|of|preordained|events|.\nAll|mood|and|no|movie|.\nPress|the|delete|key|.\nSimone|is|not|a|bad|film|.\nIt|just|does|n't|have|anything|really|interesting|to|say|.\nOnce|he|starts|learning|to|compromise|with|reality|enough|to|become|comparatively|sane|and|healthy|,|the|film|becomes|predictably|conventional|.\n...|hopefully|it|'ll|be|at|the|dollar|theatres|by|the|time|Christmas|rolls|around|.\nWait|to|see|it|then|.\nThere|'s|no|disguising|this|as|one|of|the|worst|films|of|the|summer|.\nOr|for|the|year|,|for|that|matter|.\nLacks|the|spirit|of|the|previous|two|,|and|makes|all|those|jokes|about|hos|and|even|more|unmentionable|subjects|seem|like|mere|splashing|around|in|the|muck|.\nThis|hastily|mounted|production|exists|only|to|capitalize|on|Hopkins|'|inclination|to|play|Hannibal|Lecter|again|,|even|though|Harris|has|no|immediate|inclination|to|provide|a|fourth|book|.\nDeath|to|Smoochy|tells|a|moldy-oldie|,|not-nearly|-|as-nasty|-|as-it|-|thinks-it-is|joke|.\nOver|and|over|again|.\nThe|threat|implied|in|the|title|Pokémon|4ever|is|terrifying|--|like|locusts|in|a|horde|these|things|will|keep|coming|.\nThe|film|never|gets|over|its|own|investment|in|conventional|arrangements|,|in|terms|of|love|,|age|,|gender|,|race|,|and|class|.\nTo|call|this|film|a|lump|of|coal|would|only|be|to|flatter|it|.\nEntertainment|more|disposable|than|Hanna-Barbera|'s|half-hour|cartoons|ever|were|.\nThe|film|falls|short|on|tension|,|eloquence|,|spiritual|challenge|--|things|that|have|made|the|original|New|Testament|stories|so|compelling|for|20|centuries|.\nBy|the|end|of|it|all|I|sort|of|loved|the|people|onscreen|,|even|though|I|could|not|stand|them|.\nPerhaps|the|film|should|be|seen|as|a|conversation|starter|.\nIt|'s|not|an|easy|one|to|review|.\nAt|best|this|is|a|film|for|the|under-7|crowd|.\nBut|it|would|be|better|to|wait|for|the|video|.\nAnd|a|very|rainy|day|.\nThe|whole|talking-animal|thing|is|grisly|.\nNever|Again|,|while|nothing|special|,|is|pleasant|,|diverting|and|modest|--|definitely|a|step|in|the|right|direction|.\nWould|n't|it|be|funny|if|a|bunch|of|Allied|soldiers|went|undercover|as|women|in|a|German|factory|during|World|War|II|?\nUm|,|no.|.\nBut|here|'s|a|movie|about|it|anyway|.\nHas|not|so|much|been|written|as|assembled|,|Frankenstein-like|,|out|of|other|,|marginally|better|shoot-em-ups|.\nThe|punch|lines|that|miss|,|unfortunately|,|outnumber|the|hits|by|three-to-one|.\nBut|Death|to|Smoochy|keeps|firing|until|the|bitter|end|.\nMushes|the|college-friends|genre|(|The|Big|Chill|)|together|with|the|contrivances|and|overwrought|emotion|of|soap|operas|.\nShowtime|'s|starry|cast|could|be|both|an|asset|and|a|detriment|.\nThose|who|trek|to|the|`|plex|predisposed|to|like|it|probably|will|enjoy|themselves|.\nBut|ticket-buyers|with|great|expectations|will|wind|up|as|glum|as|Mr.|De|Niro|.\nA|determined|,|ennui-hobbled|slog|that|really|does|n't|have|much|to|say|beyond|the|news|flash|that|loneliness|can|make|people|act|weird|.\nToo|daft|by|half|...|but|supremely|good|natured|.\nFails|in|making|this|character|understandable|,|in|getting|under|her|skin|,|in|exploring|motivation|...|Well|before|the|end|,|the|film|grows|as|dull|as|its|characters|,|about|whose|fate|it|is|hard|to|care|.\nIt|'s|a|shame|that|the|storyline|and|its|underlying|themes|...|finally|seem|so|impersonal|or|even|shallow|.\nWoody|,|what|happened|?\nJuliette|Binoche|'s|Sand|is|vivacious|,|but|it|'s|hard|to|sense|that|powerhouse|of|19th-century|prose|behind|her|childlike|smile|.\nIt|'s|supposed|to|be|post-feminist|breezy|but|ends|up|as|tedious|as|the|chatter|of|parrots|raised|on|Oprah|.\nYou|can|tell|almost|immediately|that|Welcome|to|Collinwood|is|n't|going|to|jell|.\nThroughout|all|the|tumult|,|a|question|comes|to|mind|:|So|why|is|this|so|boring|?\nCattaneo|reworks|the|formula|that|made|The|Full|Monty|a|smashing|success|...|but|neglects|to|add|the|magic|that|made|it|all|work|.\nRoutine|and|rather|silly|.\nA|rip-off|twice|removed|,|modeled|after|(|Seagal|'s|)|earlier|copycat|Under|Siege|,|sometimes|referred|to|as|Die|Hard|on|a|boat|.\nTotally|overwrought|,|deeply|biased|,|and|wholly|designed|to|make|you|feel|guilty|about|ignoring|what|the|filmmakers|clearly|believe|are|The|Greatest|Musicians|of|All|Time|.\nYou|can|practically|hear|George|Orwell|turning|over|.\nBehan|'s|memoir|is|great|material|for|a|film|--|rowdy|,|brawny|and|lyrical|in|the|best|Irish|sense|--|but|Sheridan|has|settled|for|a|lugubrious|romance|.\nWhile|Holm|is|terrific|as|both|men|and|Hjejle|quite|appealing|,|the|film|fails|to|make|the|most|out|of|the|intriguing|premise|.\nLazy|filmmaking|,|with|the|director|taking|a|hands-off|approach|when|he|should|have|shaped|the|story|to|show|us|why|it|'s|compelling|.\nIf|it|were|any|more|of|a|turkey|,|it|would|gobble|in|Dolby|Digital|stereo|.\nIf|nothing|else|,|``|Rollerball|''|2002|may|go|down|in|cinema|history|as|the|only|movie|ever|in|which|the|rest|of|the|cast|was|outshined|by|LL|Cool|J.\nA|movie|that|falls|victim|to|frazzled|wackiness|and|frayed|satire|.\nHow|do|you|make|a|movie|with|depth|about|a|man|who|lacked|any|?\nOn|the|evidence|before|us|,|the|answer|is|clear|:|Not|easily|and|,|in|the|end|,|not|well|enough|.\nThe|film|'s|trailer|also|looked|like|crap|,|so|crap|is|what|I|was|expecting|.\nMore|trifle|than|triumph|.\nThe|movie|is|almost|completely|lacking|in|suspense|,|surprise|and|consistent|emotional|conviction|.\nFesters|in|just|such|a|dungpile|that|you|'d|swear|you|were|watching|monkeys|flinging|their|feces|at|you|.\nLyne|'s|latest|,|the|erotic|thriller|Unfaithful|,|further|demonstrates|just|how|far|his|storytelling|skills|have|eroded|.\nIt|sounds|like|another|clever|if|pointless|excursion|into|the|abyss|,|and|that|'s|more|or|less|how|it|plays|out|.\nRumor|,|a|muddled|drama|about|coming|to|terms|with|death|,|feels|impersonal|,|almost|generic|.\nReport|card|:|Does|n't|live|up|to|the|exalted|tagline|-|there|'s|definite|room|for|improvement|.\nDoes|n't|deserve|a|passing|grade|(|even|on|a|curve|)|.\nThe|pacing|is|deadly|,|the|narration|helps|little|and|Naipaul|,|a|juicy|writer|,|is|negated|.\nAs|his|circle|of|friends|keeps|getting|smaller|one|of|the|characters|in|Long|Time|Dead|says|`|I|'m|telling|you|,|this|is|f|\\*\\*\\*|ed|'|.\nMaybe|he|was|reading|the|minds|of|the|audience|.\n...|if|it|had|been|only|half-an-hour|long|or|a|TV|special|,|the|humor|would|have|been|fast|and|furious|--|at|ninety|minutes|,|it|drags|.\nBean|drops|the|ball|too|many|times|...|hoping|the|nifty|premise|will|create|enough|interest|to|make|up|for|an|unfocused|screenplay|.\nA|well-acted|,|but|one-note|film|.\nBlood|Work|is|laughable|in|the|solemnity|with|which|it|tries|to|pump|life|into|overworked|elements|from|Eastwood|'s|Dirty|Harry|period|.\nThe|movie|is|too|amateurishly|square|to|make|the|most|of|its|own|ironic|implications|.\n(|Lee|)|treats|his|audience|the|same|way|that|Jim|Brown|treats|his|women|--|as|dumb|,|credulous|,|unassuming|,|subordinate|subjects|.\nAnd|Lee|seems|just|as|expectant|of|an|adoring|,|wide-smiling|reception|.\nThere|'s|not|one|decent|performance|from|the|cast|and|not|one|clever|line|of|dialogue|.\nNo|amount|of|burning|,|blasting|,|stabbing|,|and|shooting|can|hide|a|weak|script|.\nIt|'s|an|odd|show|,|pregnant|with|moods|,|stillborn|except|as|a|harsh|conceptual|exercise|.\nNearly|all|the|fundamentals|you|take|for|granted|in|most|films|are|mishandled|here|.\nThe|Armenian|genocide|deserves|a|more|engaged|and|honest|treatment|.\nEarnest|yet|curiously|tepid|and|choppy|recycling|in|which|predictability|is|the|only|winner|.\nUltimately|this|is|a|frustrating|patchwork|:|an|uneasy|marriage|of|Louis|Begley|'s|source|novel|(|About|Schmidt|)|and|an|old|Payne|screenplay|.\nThe|exploitative|,|clumsily|staged|violence|overshadows|everything|,|including|most|of|the|actors|.\nWe|started|to|wonder|if|...|some|unpaid|intern|had|just|typed|`|Chris|Rock|,|'|`|Anthony|Hopkins|'|and|`|terrorists|'|into|some|Univac-like|script|machine|.\nEven|when|Crush|departs|from|the|4W|formula|...|it|feels|like|a|glossy|rehash|.\nMore|likely|to|have|you|scratching|your|head|than|hiding|under|your|seat|.\nBears|is|even|worse|than|I|imagined|a|movie|ever|could|be|.\nWhen|you|find|yourself|rooting|for|the|monsters|in|a|horror|movie|,|you|know|the|picture|is|in|trouble|.\nThis|is|very|much|of|a|mixed|bag|,|with|enough|negatives|to|outweigh|the|positives|.\nMarinated|in|clichés|and|mawkish|dialogue|.\nWhether|it|'s|the|worst|movie|of|2002|,|I|ca|n't|say|for|sure|:|Memories|of|Rollerball|have|faded|,|and|I|skipped|Country|Bears|.\nBut|this|new|jangle|of|noise|,|mayhem|and|stupidity|must|be|a|serious|contender|for|the|title|.\n(|A|)|boldly|stroked|,|luridly|coloured|,|uni-dimensional|nonsense|machine|that|strokes|the|eyeballs|while|it|evaporates|like|so|much|crypt|mist|in|the|brain|.\nNot|once|in|the|rush|to|save|the|day|did|I|become|very|involved|in|the|proceedings|;|to|me|,|it|was|just|a|matter|of|`|eh|.|'\nRollerball|IS|as|bad|as|you|think|,|and|worse|than|you|can|imagine|.\nThe|first|question|to|ask|about|Bad|Company|is|why|Anthony|Hopkins|is|in|it|.\nWe|assume|he|had|a|bad|run|in|the|market|or|a|costly|divorce|,|because|there|is|no|earthly|reason|other|than|money|why|this|distinguished|actor|would|stoop|so|low|.\nNot|exaggerated|enough|to|be|a|parody|of|gross-out|flicks|,|college|flicks|,|or|even|flicks|in|general|.\nIt|merely|indulges|in|the|worst|elements|of|all|of|them|.\nShame|on|writer\\/director|Vicente|Aranda|for|making|a|florid|biopic|about|mad|queens|,|obsessive|relationships|,|and|rampant|adultery|so|dull|.\nSuffers|from|a|decided|lack|of|creative|storytelling|.\nViolent|,|vulgar|and|forgettably|entertaining|.\nNothing|happens|,|and|it|happens|to|flat|characters|.\nWith|a|completely|predictable|plot|,|you|'ll|swear|that|you|'ve|seen|it|all|before|,|even|if|you|'ve|never|come|within|a|mile|of|The|Longest|Yard|.\nRemember|back|when|thrillers|actually|thrilled|?\nWhen|the|twist|endings|were|actually|surprising|?\nWhen|the|violence|actually|shocked|?\nWhen|the|heroes|were|actually|under|40|?\nSadly|,|as|Blood|Work|proves|,|that|was|a|long|,|long|time|ago|.\nBlue|Crush|has|all|the|trappings|of|an|energetic|,|extreme-sports|adventure|,|but|ends|up|more|of|a|creaky|``|Pretty|Woman|''|retread|,|with|the|emphasis|on|self-empowering|schmaltz|and|big-wave|surfing|that|gives|pic|its|title|an|afterthought|.\nThis|movie|plays|like|an|extended|dialogue|exercise|in|Retard|101|.\nWhat|we|get|in|FearDotCom|is|more|like|something|from|a|bad|Clive|Barker|movie|.\nIn|other|words|,|it|'s|badder|than|bad|.\nIf|they|broke|out|into|elaborate|choreography|,|singing|and|finger|snapping|it|might|have|held|my|attention|,|but|as|it|stands|I|kept|looking|for|the|last|exit|from|Brooklyn|.\nA|sloppy|slapstick|throwback|to|long|gone|bottom-of-the-bill|fare|like|The|Ghost|and|Mr.|Chicken|.\nA|small|independent|film|suffering|from|a|severe|case|of|Hollywood-itis|.\nWhere|the|film|falters|is|in|its|tone|.\nThe|story|alone|could|force|you|to|scratch|a|hole|in|your|head|.\nUltimately|,|Sarah|'s|dedication|to|finding|her|husband|seems|more|psychotic|than|romantic|,|and|nothing|in|the|movie|makes|a|convincing|case|that|one|woman|'s|broken|heart|outweighs|all|the|loss|we|witness|.\nIt|'s|supposed|to|be|a|humorous|,|all-too-human|look|at|how|hope|can|breed|a|certain|kind|of|madness|--|and|strength|--|but|it|never|quite|adds|up|.\nFeels|more|like|a|rejected|X-Files|episode|than|a|credible|account|of|a|puzzling|real-life|happening|.\nSome|motion|pictures|portray|ultimate|passion|;|others|create|ultimate|thrills|.\nMen|in|Black|II|achieves|ultimate|insignificance|--|it|'s|the|sci-fi|comedy|spectacle|as|Whiffle-Ball|epic|.\nAn|enigmatic|film|that|'s|too|clever|for|its|own|good|,|it|'s|a|conundrum|not|worth|solving|.\nA|zombie|movie|in|every|sense|of|the|word|--|mindless|,|lifeless|,|meandering|,|loud|,|painful|,|obnoxious|.\nA|film|that|clearly|means|to|preach|exclusively|to|the|converted|.\nIt|does|n't|take|a|rocket|scientist|to|figure|out|that|this|is|a|Mormon|family|movie|,|and|a|sappy|,|preachy|one|at|that|.\nDefinitely|a|crowd-pleaser|,|but|then|,|so|was|the|Roman|Colosseum|.\nCertainly|not|a|good|movie|,|but|it|was|n't|horrible|either|.\nAlthough|it|starts|off|so|bad|that|you|feel|like|running|out|screaming|,|it|eventually|works|its|way|up|to|merely|bad|rather|than|painfully|awful|.\nThe|result|is|so|tame|that|even|slightly|wised-up|kids|would|quickly|change|the|channel|.\nIt|appears|to|have|been|modeled|on|the|worst|revenge-of-the-nerds|clichés|the|filmmakers|could|dredge|up|.\nNothing|but|an|episode|of|Smackdown|!\nin|period|costume|and|with|a|bigger|budget|.\nIt|takes|you|somewhere|you|'re|not|likely|to|have|seen|before|,|but|beneath|the|exotic|surface|(|and|exotic|dancing|)|it|'s|surprisingly|old-fashioned|.\nWhile|the|story|is|better-focused|than|the|incomprehensible|Anne|Rice|novel|it|'s|based|upon|,|Queen|Of|The|Damned|is|a|pointless|,|meandering|celebration|of|the|goth-vampire|,|tortured|woe-is-me|lifestyle|.\nIt|should|be|interesting|,|it|should|be|poignant|,|it|turns|out|to|be|affected|and|boring|.\nA|good-looking|but|ultimately|pointless|political|thriller|with|plenty|of|action|and|almost|no|substance|.\nA|tired|,|predictable|,|bordering|on|offensive|,|waste|of|time|,|money|and|celluloid|.\nIf|Hill|is|n't|quite|his|generation|'s|Don|Siegel|(|or|Robert|Aldrich|)|,|it|'s|because|there|'s|no|discernible|feeling|beneath|the|chest|hair|;|it|'s|all|bluster|and|cliché|.\nStealing|Harvard|will|dip|into|your|wallet|,|swipe|90|minutes|of|your|time|,|and|offer|you|precisely|this|in|recompense|:|A|few|early|laughs|scattered|around|a|plot|as|thin|as|it|is|repetitious|.\nThis|is|an|insultingly|inept|and|artificial|examination|of|grief|and|its|impacts|upon|the|relationships|of|the|survivors|.\nDoes|anyone|much|think|the|central|story|of|Brendan|Behan|is|that|he|was|a|bisexual|sweetheart|before|he|took|to|drink|?\n`|Martin|Lawrence|Live|'|is|so|self-pitying|,|I|almost|expected|there|to|be|a|collection|taken|for|the|comedian|at|the|end|of|the|show|.\nThe|dialogue|is|cumbersome|,|the|simpering|soundtrack|and|editing|more|so|.\nNever|decides|whether|it|wants|to|be|a|black|comedy|,|drama|,|melodrama|or|some|combination|of|the|three|.\nIt|has|become|apparent|that|the|franchise|'s|best|years|are|long|past|.\nDoes|what|should|seem|impossible|:|it|makes|serial|killer|Jeffrey|Dahmer|boring|.\nDo|n't|hate|El|Crimen|del|Padre|Amaro|because|it|'s|anti-Catholic|.\nHate|it|because|it|'s|lousy|.\n...|better|described|as|a|ghost|story|gone|badly|awry|.\nLike|a|bad|improvisation|exercise|,|the|superficially|written|characters|ramble|on|tediously|about|their|lives|,|loves|and|the|art|they|'re|struggling|to|create|.\nThe|filmmakers|are|playing|to|the|Big|Boys|in|New|York|and|L.A.|To|that|end|,|they|mock|the|kind|of|folks|they|do|n't|understand|,|ones|they|figure|the|power-lunchers|do|n't|care|to|understand|,|either|.\nCompetently|directed|but|terminally|cute|drama|.\nThe|big|finish|is|a|bit|like|getting|all|excited|about|a|chocolate|eclair|and|then|biting|into|it|and|finding|the|filling|missing|.\nNot|just|unlikable|.\nDisturbing|.\nDisgusting|.\nWithout|any|redeeming|value|whatsoever|.\nThis|thing|is|virtually|unwatchable|.\nThose|eternally|devoted|to|the|insanity|of|Black|will|have|an|intermittently|good|time|.\nFeel|free|to|go|get|popcorn|whenever|he|'s|not|onscreen|.\nThe|self-serious|Equilibrium|makes|its|point|too|well|;|a|movie|,|like|life|,|is|n't|much|fun|without|the|highs|and|lows|.\nThe|work|of|an|exhausted|,|desiccated|talent|who|ca|n't|get|out|of|his|own|way|.\nThe|main|characters|are|simply|named|The|Husband|,|The|Wife|and|The|Kidnapper|,|emphasizing|the|disappointingly|generic|nature|of|the|entire|effort|.\nIn|terms|of|execution|this|movie|is|careless|and|unfocused|.\nSwims|in|mediocrity|,|sticking|its|head|up|for|a|breath|of|fresh|air|now|and|then|.\nThe|only|type|of|lives|this|glossy|comedy-drama|resembles|are|ones|in|formulaic|mainstream|movies|.\nThe|characters|...|are|paper-thin|,|and|their|personalities|undergo|radical|changes|when|it|suits|the|script|.\nA|Sha-Na-Na|sketch|punctuated|with|graphic|violence|.\nThe|trouble|is|,|its|filmmakers|run|out|of|clever|ideas|and|visual|gags|about|halfway|through|.\nSpy-vs|.\n-|spy|action|flick|with|Antonio|Banderas|and|Lucy|Liu|never|comes|together|.\nA|so-so|,|made-for-TV|something|posing|as|a|real|movie|.\nThe|only|upside|to|all|of|this|unpleasantness|is|,|given|its|Labor|Day|weekend|upload|,|FearDotCom|should|log|a|minimal|number|of|hits|.\nWhether|this|is|art|imitating|life|or|life|imitating|art|,|it|'s|an|unhappy|situation|all|around|.\nAn|uneasy|mix|of|run-of-the-mill|raunchy|humor|and|seemingly|sincere|personal|reflection|.\nA|formula|family|tearjerker|told|with|a|heavy|Irish|brogue|...|accentuating|,|rather|than|muting|,|the|plot|'s|saccharine|thrust|.\nThis|is|Sandler|running|on|empty|,|repeating|what|he|'s|already|done|way|too|often|.\nThis|is|as|lax|and|limp|a|comedy|as|I|'ve|seen|in|a|while|,|a|meander|through|worn-out|material|.\nTime|literally|stops|on|a|dime|in|the|tries-so-hard-to-be-cool|``|Clockstoppers|,|''|but|that|does|n't|mean|it|still|wo|n't|feel|like|the|longest|90|minutes|of|your|movie-going|life|.\nThe|sort|of|picture|in|which|,|whenever|one|of|the|characters|has|some|serious|soul|searching|to|do|,|they|go|to|a|picture-perfect|beach|during|sunset|.\nAptly|named|,|this|shimmering|,|beautifully|costumed|and|filmed|production|does|n't|work|for|me|.\nA|preposterously|melodramatic|paean|to|gang-member|teens|in|Brooklyn|circa|1958|.\nHas|none|of|the|crackle|of|``|Fatal|Attraction|''|,|``|9|1\\/2|Weeks|''|,|or|even|``|Indecent|Proposal|''|,|and|feels|more|like|Lyne|'s|stolid|remake|of|``|Lolita|''|.\nEverything|its|title|implies|,|a|standard-issue|crime|drama|spat|out|from|the|Tinseltown|assembly|line|.\nAn|extraordinarily|silly|thriller|.\nA|rehash|of|every|gangster|movie|from|the|past|decade|.\nGaping|plot|holes|sink|this|`|sub|'|-|standard|thriller|and|drag|audience|enthusiasm|to|crush|depth|.\nTalkiness|is|n't|necessarily|bad|,|but|the|dialogue|frequently|misses|the|mark|.\nThe|beautiful|images|and|solemn|words|can|not|disguise|the|slack|complacency|of|(|Godard|'s|)|vision|,|any|more|than|the|gorgeous|piano|and|strings|on|the|soundtrack|can|drown|out|the|tinny|self-righteousness|of|his|voice|.\nThe|stunt|work|is|top-notch|;|the|dialogue|and|drama|often|food-spittingly|funny|.\nThe|movie|is|n't|painfully|bad|,|something|to|be|`|fully|experienced|'|;|it|'s|just|tediously|bad|,|something|to|be|fully|forgotten|.\nCharly|comes|off|as|emotionally|manipulative|and|sadly|imitative|of|innumerable|past|Love|Story|derisions|.\nWhat|a|great|shame|that|such|a|talented|director|as|Chen|Kaige|has|chosen|to|make|his|English-language|debut|with|a|film|so|poorly|plotted|and|scripted|.\nNo|amount|of|good|intentions|is|able|to|overcome|the|triviality|of|the|story|.\nThe|film|...|presents|classic|moral-condundrum|drama|:|What|would|you|have|done|to|survive|?\nThe|problem|with|the|film|is|whether|these|ambitions|,|laudable|in|themselves|,|justify|a|theatrical|simulation|of|the|death|camp|of|Auschwitz|II-Birkenau|.\n...|for|all|its|social|and|political|potential|,|State|Property|does|n't|end|up|being|very|inspiring|or|insightful|.\nA|film|really|has|to|be|exceptional|to|justify|a|three|hour|running|time|,|and|this|is|n't|.\nLittle|more|than|a|stylish|exercise|in|revisionism|whose|point|...|is|no|doubt|true|,|but|serves|as|a|rather|thin|moral|to|such|a|knowing|fable|.\nThe|nonstop|artifice|ultimately|proves|tiresome|,|with|the|surface|histrionics|failing|to|compensate|for|the|paper-thin|characterizations|and|facile|situations|.\nThis|is|a|monumental|achievement|in|practically|every|facet|of|inept|filmmaking|:|joyless|,|idiotic|,|annoying|,|heavy-handed|,|visually|atrocious|,|and|often|downright|creepy|.\nThis|off-putting|French|romantic|comedy|is|sure|to|test|severely|the|indulgence|of|fans|of|Amélie|.\noverburdened|with|complicated|plotting|and|banal|dialogue\nEnsemble|movies|,|like|soap|operas|,|depend|on|empathy|.\nIf|there|ai|n't|none|,|you|have|a|problem|.\nThe|Master|of|Disguise|falls|under|the|category|of|`|should|have|been|a|sketch|on|Saturday|Night|Live|.|'\nYet|another|self-consciously|overwritten|story|about|a|rag-tag|bunch|of|would-be|characters|that|team|up|for|a|ca|n't|-|miss|heist|--|only|to|have|it|all|go|wrong|.\nKoepp|'s|screenplay|is|n't|nearly|surprising|or|clever|enough|to|sustain|a|reasonable|degree|of|suspense|on|its|own|.\nIs|it|really|an|advantage|to|invest|such|subtlety|and|warmth|in|an|animatronic|bear|when|the|humans|are|acting|like|puppets|?\nMore|successful|at|relating|history|than|in|creating|an|emotionally|complex|,|dramatically|satisfying|heroine\nClumsy|,|obvious|,|preposterous|,|the|movie|will|likely|set|the|cause|of|woman|warriors|back|decades|.\nIt|'s|hard|to|pity|the|`|plain|'|girl|who|becomes|a|ravishing|waif|after|applying|a|smear|of|lip-gloss|.\nRather|,|pity|anyone|who|sees|this|mishmash|.\nA|banal|,|virulently|unpleasant|excuse|for|a|romantic|comedy|.\nThe|drama|discloses|almost|nothing|.\nA|minor-league|soccer|remake|of|The|Longest|Yard|.\nBelongs|in|the|too-hot-for-TV|direct-to-video\\/DVD|category|,|and|this|is|why|I|have|given|it|a|one-star|rating|.\nAs|earnest|as|a|community-college|advertisement|,|American|Chai|is|enough|to|make|you|put|away|the|guitar|,|sell|the|amp|,|and|apply|to|medical|school|.\nA|dim-witted|and|lazy|spin-off|of|the|Animal|Planet|documentary|series|,|Crocodile|Hunter|is|entertainment|opportunism|at|its|most|glaring|.\nThere|is|more|than|one|joke|about|putting|the|toilet|seat|down|.\nAnd|that|should|tell|you|everything|you|need|to|know|about|All|the|Queen|'s|Men|.\nEven|fans|of|Ismail|Merchant|'s|work|,|I|suspect|,|would|have|a|hard|time|sitting|through|this|one|.\nIt|'s|really|just|another|silly|Hollywood|action|film|,|one|among|a|multitude|of|simple-minded|,|yahoo-ing|death|shows|.\nIt|'s|not|a|particularly|good|film|,|but|neither|is|it|a|monsterous|one|.\nThe|world|needs|more|filmmakers|with|passionate|enthusiasms|like|Martin|Scorsese|.\nBut|it|does|n't|need|Gangs|of|New|York|.\nEnchanted|with|low-life|tragedy|and|liberally|seasoned|with|emotional|outbursts|...|What|is|sorely|missing|,|however|,|is|the|edge|of|wild|,|lunatic|invention|that|we|associate|with|Cage|'s|best|acting|.\nHarry|Potter|and|the|Chamber|of|Secrets|is|deja|vu|all|over|again|,|and|while|that|is|a|cliche|,|nothing|could|be|more|appropriate|.\nIt|'s|likely|that|whatever|you|thought|of|the|first|production|--|pro|or|con|--|you|'ll|likely|think|of|this|one|.\nSade|achieves|the|near-impossible|:|It|turns|the|Marquis|de|Sade|into|a|dullard|.\n(|Lin|Chung|'s|)|voice|is|rather|unexceptional|,|even|irritating|(|at|least|to|this|Western|ear|)|,|making|it|awfully|hard|to|buy|the|impetus|for|the|complicated|love|triangle|that|develops|between|the|three|central|characters|.\nOne|of|the|most|plain|,|unimaginative|romantic|comedies|I|'ve|ever|seen|.\nThough|there|'s|a|clarity|of|purpose|and|even-handedness|to|the|film|'s|direction|,|the|drama|feels|rigged|and|sluggish|.\nUnfortunately|,|the|experience|of|actually|watching|the|movie|is|less|compelling|than|the|circumstances|of|its|making|.\nUnless|there|are|zoning|ordinances|to|protect|your|community|from|the|dullest|science|fiction|,|Impostor|is|opening|today|at|a|theater|near|you|.\nIt|should|be|doing|a|lot|of|things|,|but|does|n't|.\nChen|films|the|resolutely|downbeat|Smokers|Only|with|every|indulgent|,|indie|trick|in|the|book|.\n...|a|rather|bland|affair|.\nFar-fetched|premise|,|convoluted|plot|,|and|thematic|mumbo|jumbo|about|destiny|and|redemptive|love|.\nThe|movie|tries|to|be|ethereal|,|but|ends|up|seeming|goofy|.\nI|was|hoping|that|it|would|be|sleazy|and|fun|,|but|it|was|neither|.\nHarris|is|supposed|to|be|the|star|of|the|story|,|but|comes|across|as|pretty|dull|and|wooden|.\nSoulless|and|--|even|more|damning|--|virtually|joyless|,|XXX|achieves|near|virtuosity|in|its|crapulence|.\nA|boring|masquerade|ball|where|normally|good|actors|,|even|Kingsley|,|are|made|to|look|bad|.\nAll|the|Queen|'s|Men|is|a|throwback|war|movie|that|fails|on|so|many|levels|,|it|should|pay|reparations|to|viewers|.\nThe|filmmakers|keep|pushing|the|jokes|at|the|expense|of|character|until|things|fall|apart|.\nRather|than|real|figures|,|Elling|and|Kjell|Bjarne|become|symbolic|characters|whose|actions|are|supposed|to|relate|something|about|the|naïf|'s|encounter|with|the|world|.\nMariah|Carey|gives|us|another|peek|at|some|of|the|magic|we|saw|in|Glitter|here|in|Wisegirls|.\nIt|'s|all|arty|and|jazzy|and|people|sit|and|stare|and|turn|away|from|one|another|instead|of|talking|and|it|'s|all|about|the|silences|and|if|you|'re|into|that|,|have|at|it|.\nI|suspect|that|you|'ll|be|as|bored|watching|Morvern|Callar|as|the|characters|are|in|it|.\nIf|you|go|,|pack|your|knitting|needles|.\nThe|lead|actors|share|no|chemistry|or|engaging|charisma|.\nWe|do|n't|even|like|their|characters|.\nSome|writer|dude|,|I|think|his|name|was|,|uh|,|Michael|Zaidan|,|was|supposed|to|have|like|written|the|screenplay|or|something|,|but|,|dude|,|the|only|thing|that|I|ever|saw|that|was|written|down|were|the|zeroes|on|my|paycheck|.\nThe|movie|does|n't|generate|a|lot|of|energy|.\nIt|is|dark|,|brooding|and|slow|,|and|takes|its|central|idea|way|too|seriously|.\nThis|feature|is|about|as|necessary|as|a|hole|in|the|head\nSpectators|will|indeed|sit|open-mouthed|before|the|screen|,|not|screaming|but|yawning|.\nIt|feels|like|very|light|Errol|Morris|,|focusing|on|eccentricity|but|failing|,|ultimately|,|to|make|something|bigger|out|of|its|scrapbook|of|oddballs|.\nA|period|story|about|a|Catholic|boy|who|tries|to|help|a|Jewish|friend|get|into|heaven|by|sending|the|audience|straight|to|hell|.\nThe|premise|itself|is|just|SOOOOO|tired|.\nPair|that|with|really|poor|comedic|writing|...|and|you|'ve|got|a|huge|mess|.\nProves|a|lovely|trifle|that|,|unfortunately|,|is|a|little|too|in|love|with|its|own|cuteness|.\nDid|we|really|need|a|remake|of|``|Charade|?|''\nSome|movies|can|get|by|without|being|funny|simply|by|structuring|the|scenes|as|if|they|were|jokes|:|a|setup|,|delivery|and|payoff|.\nStealing|Harvard|ca|n't|even|do|that|much|.\nEach|scene|immediately|succumbs|to|gravity|and|plummets|to|earth|.\nThe|only|fun|part|of|the|movie|is|playing|the|obvious|game|.\nYou|try|to|guess|the|order|in|which|the|kids|in|the|house|will|be|gored|.\nI|spied|with|my|little|eye|...|a|mediocre|collection|of|cookie-cutter|action|scenes|and|occasionally|inspired|dialogue|bits\nEntertains|not|so|much|because|of|its|music|or|comic|antics|,|but|through|the|perverse|pleasure|of|watching|Disney|scrape|the|bottom|of|its|own|cracker|barrel|.\nThe|satire|is|just|too|easy|to|be|genuinely|satisfying|.\nLess|funny|than|it|should|be|and|less|funny|than|it|thinks|it|is|.\nan|``|O|Bruin|,|Where|Art|Thou|?|''\n-|style|cross-country|adventure|...|it|has|sporadic|bursts|of|liveliness|,|some|so-so|slapstick|and|a|few|ear-pleasing|songs|on|its|soundtrack|.\nA|feeble|Tootsie|knockoff|.\nAn|awful|movie|that|will|only|satisfy|the|most|emotionally|malleable|of|filmgoers|.\n...|the|story|is|far-flung|,|illogical|,|and|plain|stupid|.\nThe|very|simple|story|seems|too|simple|and|the|working|out|of|the|plot|almost|arbitrary|.\nAn|allegory|concerning|the|chronically|mixed|signals|African|American|professionals|get|about|overachieving|could|be|intriguing|,|but|the|supernatural|trappings|only|obscure|the|message|.\nA|very|familiar|tale|,|one|that|'s|been|told|by|countless|filmmakers|about|Italian|-|,|Chinese|-|,|Irish|-|,|Latin|-|,|Indian|-|,|Russian|-|and|other|hyphenate|American|young|men|struggling|to|balance|conflicting|cultural|messages|.\nOne|key|problem|with|these|ardently|Christian|storylines|is|that|there|is|never|any|question|of|how|things|will|turn|out|.\nEssentially|,|the|film|is|weak|on|detail|and|strong|on|personality\nA|relentless|,|bombastic|and|ultimately|empty|World|War|II|action|flick|.\n(|Hell|is|)|looking|down|at|your|watch|and|realizing|Serving|Sara|is|n't|even|halfway|through|.\nToo|long|,|and|larded|with|exposition|,|this|somber|cop|drama|ultimately|feels|as|flat|as|the|scruffy|sands|of|its|titular|community|.\nLeaves|viewers|out|in|the|cold|and|undermines|some|phenomenal|performances|.\n...|a|ho-hum|affair|,|always|watchable|yet|hardly|memorable|.\nSwiftly|deteriorates|into|a|terribly|obvious|melodrama|and|rough-hewn|vanity|project|for|lead|actress|Andie|MacDowell|.\nThe|histrionic|muse|still|eludes|Madonna|and|,|playing|a|charmless|witch|,|she|is|merely|a|charmless|witch|.\nYou|have|no|affinity|for|most|of|the|characters|.\nNothing|about|them|is|attractive|.\nWhat|they|see|in|each|other|also|is|difficult|to|fathom|.\nDiaz|,|Applegate|,|Blair|and|Posey|are|suitably|kooky|which|should|appeal|to|women|and|they|strip|down|often|enough|to|keep|men|alert|,|if|not|amused|.\nA|technically|well-made|suspenser|...|but|its|abrupt|drop|in|IQ|points|as|it|races|to|the|finish|line|proves|simply|too|discouraging|to|let|slide|.\nAn|inept|,|tedious|spoof|of|'70s|kung|fu|pictures|,|it|contains|almost|enough|chuckles|for|a|three-minute|sketch|,|and|no|more|.\nIt|'s|a|mystery|how|the|movie|could|be|released|in|this|condition|.\nAbsolutely|(|and|unintentionally|)|terrifying|.\nEckstraordinarily|lame|and|Severely|boring|.\nEight|Legged|Freaks|falls|flat|as|a|spoof|.\nNo|matter|how|much|he|runs|around|and|acts|like|a|doofus|,|accepting|a|50-year-old|in|the|role|is|creepy|in|a|Michael|Jackson|sort|of|way|.\nYou|'ll|just|have|your|head|in|your|hands|wondering|why|Lee|'s|character|did|n't|just|go|to|a|bank|manager|and|save|everyone|the|misery|.\n`|Dragonfly|'|dwells|on|crossing-over|mumbo|jumbo|,|manipulative|sentimentality|,|and|sappy|dialogue|.\nIn|his|determination|to|lighten|the|heavy|subject|matter|,|Silberling|also|,|to|a|certain|extent|,|trivializes|the|movie|with|too|many|nervous|gags|and|pratfalls|.\nBlade|II|has|a|brilliant|director|and|charismatic|star|,|but|it|suffers|from|rampant|vampire|devaluation|.\nVeers|uncomfortably|close|to|pro-Serb|propaganda|.\nMovies|like|High|Crimes|flog|the|dead|horse|of|surprise|as|if|it|were|an|obligation|.\nHow|about|surprising|us|by|trying|something|new|?\nFinal|verdict|:|You|'ve|seen|it|all|before|.\nThrowing|in|everything|except|someone|pulling|the|pin|from|a|grenade|with|his|teeth|,|Windtalkers|seems|to|have|ransacked|every|old|World|War|II|movie|for|overly|familiar|material|.\nIf|A|Few|Good|Men|told|us|that|we|``|ca|n't|handle|the|truth|''|than|High|Crimes|poetically|states|at|one|point|in|this|movie|that|we|``|do|n't|care|about|the|truth|.|''\nFurther|sad|evidence|that|Tom|Tykwer|,|director|of|the|resonant|and|sense-spinning|Run|Lola|Run|,|has|turned|out|to|be|a|one-trick|pony|--|a|maker|of|softheaded|metaphysical|claptrap|.\nYou|'ll|trudge|out|of|the|theater|feeling|as|though|you|rode|the|Zipper|after|eating|a|corn|dog|and|an|extra-large|cotton|candy|.\nThe|movie|is|a|little|tired|;|maybe|the|original|inspiration|has|run|its|course|.\nThis|will|go|on|so|long|as|there|are|moviegoers|anxious|to|see|strange|young|guys|doing|strange|guy|things|.\nA|full-frontal|attack|on|audience|patience|.\nAny|intellectual|arguments|being|made|about|the|nature|of|God|are|framed|in|a|drama|so|clumsy|,|there|is|a|real|danger|less|sophisticated|audiences|will|mistake|it|for|an|endorsement|of|the|very|things|that|Bean|abhors|.\nIt|'s|a|big|idea|,|but|the|film|itself|is|small|and|shriveled|.\nDebut|effort|by|``|Project|Greenlight|''|winner|is|sappy|and|amateurish|.\nOne|gets|the|impression|the|creators|of|Do|n't|Ask|Do|n't|Tell|laughed|a|hell|of|a|lot|at|their|own|jokes|.\nToo|bad|none|of|it|is|funny|.\nThe|cast|has|a|high|time|,|but|de|Broca|has|little|enthusiasm|for|such|antique|pulp|.\nThe|film|,|like|Jimmy|'s|routines|,|could|use|a|few|good|laughs|.\nThe|film|has|too|many|spots|where|it|'s|on|slippery|footing|,|but|is|acceptable|entertainment|for|the|entire|family|and|one|that|'s|especially|fit|for|the|kiddies|.\nPurports|to|be|a|Hollywood|satire|but|winds|up|as|the|kind|of|film|that|should|be|the|target|of|something|deeper|and|more|engaging|.\nOh|,|and|more|entertaining|,|too|.\n...|in|the|pile|of|useless|actioners|from|MTV|schmucks|who|do|n't|know|how|to|tell|a|story|for|more|than|four|minutes|.\nThough|it|was|made|with|careful|attention|to|detail|and|is|well-acted|by|James|Spader|and|Maggie|Gyllenhaal|,|I|felt|disrespected|.\nHumor|in|I|Spy|is|so|anemic|.\nThe|film|is|strictly|routine|.\nSkillful|as|he|is|,|Mr.|Shyamalan|is|undone|by|his|pretensions|.\nWhile|the|new|film|is|much|more|eye-catching|than|its|blood-drenched|Stephen|Norrington-directed|predecessor|,|the|new|script|by|the|returning|David|S.|Goyer|is|much|sillier|.\nIn|addition|to|sporting|one|of|the|worst|titles|in|recent|cinematic|history|,|Ballistic|:|Ecks|Vs.|Sever|also|features|terrible|,|banal|dialogue|;|convenient|,|hole-ridden|plotting|;|superficial|characters|and|a|rather|dull|,|unimaginative|car|chase|.\nIt|shares|the|first|two|films|'|loose-jointed|structure|,|but|laugh-out-loud|bits|are|few|and|far|between|.\nThe|Santa|Clause|2|is|a|barely|adequate|babysitter|for|older|kids|,|but|I|'ve|got|to|give|it|thumbs|down|.\nYou|can|not|guess|why|the|cast|and|crew|did|n't|sign|a|pact|to|burn|the|negative|and|the|script|and|pretend|the|whole|thing|never|existed|.\nBarney|throws|away|the|goodwill|the|first|half|of|his|movie|generates|by|orchestrating|a|finale|that|is|impenetrable|and|dull|.\nIf|you|'re|really|renting|this|you|'re|not|interested|in|discretion|in|your|entertainment|choices|,|you|'re|interested|in|Anne|Geddes|,|John|Grisham|,|and|Thomas|Kincaid|.\nWe|get|the|comedy|we|settle|for|.\nThe|uneven|movie|does|have|its|charms|and|its|funny|moments|but|not|quite|enough|of|them|.\nTwo|hours|of|sepia-tinted|heavy|metal|images|and|surround|sound|effects|of|people|moaning|.\nA|word|of|advice|to|the|makers|of|The|Singles|Ward|:|Celebrity|cameos|do|not|automatically|equal|laughs|.\nAnd|neither|do|cliches|,|no|matter|how|`|inside|'|they|are|.\nThe|campy|results|make|Mel|Brooks|'|Borscht|Belt|schtick|look|sophisticated|.\nIts|appeal|will|probably|limited|to|LDS|Church|members|and|undemanding|armchair|tourists|.\nThe|Hanukkah|spirit|seems|fried|in|pork|.\nCherish|would|'ve|worked|a|lot|better|had|it|been|a|short|film|.\nManipulative|claptrap|,|a|period-piece|movie-of-the-week|,|plain|old|blarney|...|take|your|pick|.\nAll|three|descriptions|suit|Evelyn|,|a|besotted|and|obvious|drama|that|tells|us|nothing|new|.\nHey|Arnold|!\nis|now|stretched|to|barely|feature|length|,|with|a|little|more|attention|paid|to|the|animation|.\nStill|,|the|updated|Dickensian|sensibility|of|writer|Craig|Bartlett|'s|story|is|appealing|.\nTrue|to|its|title|,|it|traps|audiences|in|a|series|of|relentlessly|nasty|situations|that|we|would|pay|a|considerable|ransom|not|to|be|looking|at|.\nDoes|n't|come|close|to|justifying|the|hype|that|surrounded|its|debut|at|the|Sundance|Film|Festival|two|years|ago|.\nThe|plot|is|paper-thin|and|the|characters|are|n't|interesting|enough|to|watch|them|go|about|their|daily|activities|for|two|whole|hours|.\nKaufman|'s|script|is|never|especially|clever|and|often|is|rather|pretentious|.\nThe|film|did|n't|move|me|one|way|or|the|other|,|but|it|was|an|honest|effort|and|if|you|want|to|see|a|flick|about|telemarketers|this|one|will|due|.\nQueen|of|the|Damned|is|too|long|with|too|little|going|on|.\nIt|collapses|when|Mr.|Taylor|tries|to|shift|the|tone|to|a|thriller|'s|rush|.\nAny|film|that|does|n't|even|in|passing|mention|political|prisoners|,|poverty|and|the|boat|loads|of|people|who|try|to|escape|the|country|is|less|a|documentary|and|more|propaganda|by|way|of|a|valentine|sealed|with|a|kiss|.\n...|Blade|II|is|still|top-heavy|with|blazing|guns|,|cheatfully|filmed|martial|arts|,|disintegrating|bloodsucker|computer|effects|and|jagged|camera|moves|that|serve|no|other|purpose|than|to|call|attention|to|themselves|.\nThe|Rules|of|Attraction|gets|us|too|drunk|on|the|party|favors|to|sober|us|up|with|the|transparent|attempts|at|moralizing|.\nThough|there|are|many|tense|scenes|in|Trapped|,|they|prove|more|distressing|than|suspenseful|.\nIn|this|film|we|at|least|see|a|study|in|contrasts|;|the|wide|range|of|one|actor|,|and|the|limited|range|of|a|comedian|.\nFeels|strangely|hollow|at|its|emotional|core|.\nYou|have|once|again|entered|the|bizarre|realm|where|director|Adrian|Lyne|holds|sway|,|where|all|relationships|are|simultaneously|broadly|metaphorical|,|oddly|abstract|,|and|excruciatingly|literal|.\nThe|high-concept|scenario|soon|proves|preposterous|,|the|acting|is|robotically|italicized|,|and|truth-in-advertising|hounds|take|note|:|There|'s|very|little|hustling|on|view|.\nThis|director|'s|cut|--|which|adds|51|minutes|--|takes|a|great|film|and|turns|it|into|a|mundane|soap|opera|.\nCharacterisation|has|been|sacrificed|for|the|sake|of|spectacle|.\nthe|Venezuelans|say|things|like|``|si|,|pretty|much|''|and|``|por|favor|,|go|home|''|when|talking|to|Americans|.\nThat|'s|muy|loco|,|but|no|more|ridiculous|than|most|of|the|rest|of|``|Dragonfly|.|''\nIt|'s|a|movie|that|ends|with|Truckzilla|,|for|cryin|'|out|loud|.\nIf|that|does|n't|clue|you|in|that|something|'s|horribly|wrong|,|nothing|will|.\nDirector|Tom|Shadyac|and|star|Kevin|Costner|glumly|mishandle|the|story|'s|promising|premise|of|a|physician|who|needs|to|heal|himself|.\nIt|'s|difficult|to|imagine|that|a|more|confused|,|less|interesting|and|more|sloppily|made|film|could|possibly|come|down|the|road|in|2002|.\nLike|the|Tuck|family|themselves|,|this|movie|just|goes|on|and|on|and|on|and|on\nAs|pedestrian|as|they|come|.\nA|film|that|plays|things|so|nice|'n|safe|as|to|often|play|like|a|milquetoast|movie|of|the|week|blown|up|for|the|big|screen|.\nIt|'s|a|feel-bad|ending|for|a|depressing|story|that|throws|a|bunch|of|hot-button|items|in|the|viewer|'s|face|and|asks|to|be|seen|as|hip|,|winking|social|commentary|.\nPut|it|somewhere|between|Sling|Blade|and|South|of|Heaven|,|West|of|Hell|in|the|pantheon|of|Billy|Bob|'s|body|of|work|.\nMore|intellectually|scary|than|dramatically|involving|.\nAn|inconsequential|,|barely|there|bit|of|piffle|.\nThe|abiding|impression|,|despite|the|mild|hallucinogenic|buzz|,|is|of|overwhelming|waste|--|the|acres|of|haute|couture|ca|n't|quite|conceal|that|there|'s|nothing|resembling|a|spine|here|.\nAs|saccharine|as|it|is|disposable|.\nYou|come|away|thinking|not|only|that|Kate|is|n't|very|bright|,|but|that|she|has|n't|been|worth|caring|about|and|that|maybe|she|,|Janine|and|Molly|--|an|all-woman|dysfunctional|family|--|deserve|one|another|.\nThe|metaphors|are|provocative|,|but|too|often|,|the|viewer|is|left|puzzled|by|the|mechanics|of|the|delivery|.\nVery|much|a|home|video|,|and|so|devoid|of|artifice|and|purpose|that|it|appears|not|to|have|been|edited|at|all|.\nToo|much|power|,|not|enough|puff|.\nThe|attempt|to|build|up|a|pressure|cooker|of|horrified|awe|emerges|from|the|simple|fact|that|the|movie|has|virtually|nothing|to|show|.\nIt|'s|provocative|stuff|,|but|the|speculative|effort|is|hampered|by|Taylor|'s|cartoonish|performance|and|the|film|'s|ill-considered|notion|that|Hitler|'s|destiny|was|shaped|by|the|most|random|of|chances|.\nA|cellophane-pop|remake|of|the|punk|classic|Ladies|and|Gentlemen|,|The|Fabulous|Stains|...|Crossroads|is|never|much|worse|than|bland|or|better|than|inconsequential|.\nMuddled|,|trashy|and|incompetent\nFor|this|sort|of|thing|to|work|,|we|need|agile|performers|,|but|the|proficient|,|dull|Sorvino|has|no|light|touch|,|and|Rodan|is|out|of|his|league|.\nNarc|is|all|menace|and|atmosphere|.\nThough|excessively|tiresome|,|The|Uncertainty|Principle|,|as|verbally|pretentious|as|the|title|may|be|,|has|its|handful|of|redeeming|features|,|as|long|as|you|discount|its|ability|to|bore|.\nDespite|Juliet|Stevenon|'s|attempt|to|bring|cohesion|to|Pamela|'s|emotional|roller|coaster|life|,|it|is|not|enough|to|give|the|film|the|substance|it|so|desperately|needs|.\nIt|'s|tough|to|be|startled|when|you|'re|almost|dozing|.\nhis|(|Nelson|'s|)|screenplay|needs|some|serious|re-working|to|show|more|of|the|dilemma|,|rather|than|have|his|characters|stage|shouting|matches|about|it|.\nIt|'s|so|downbeat|and|nearly|humorless|that|it|becomes|a|chore|to|sit|through|--|despite|some|first-rate|performances|by|its|lead|.\nA|terrible|movie|that|some|people|will|nevertheless|find|moving|.\nThere|are|many|definitions|of|`|time|waster|'|but|this|movie|must|surely|be|one|of|them|.\nAs|it|stands|,|Crocodile|Hunter|has|the|hurried|,|badly|cobbled|look|of|the|1959|Godzilla|,|which|combined|scenes|of|a|Japanese|monster|flick|with|canned|shots|of|Raymond|Burr|commenting|on|the|monster|'s|path|of|destruction|.\nThe|thing|looks|like|a|made-for-home-video|quickie|.\nEnigma|is|well-made|,|but|it|'s|just|too|dry|and|too|placid|.\n``|Sweet|Home|Alabama|''|is|what|it|is|--|a|nice|,|harmless|date|film|...\nOne|of|the|best|,|most|understated|performances|of|(|Jack|Nicholson|'s|)|career|.\nThe|Dangerous|Lives|of|Altar|Boys|'|take|on|adolescence|feels|painfully|true|.\nIt|'s|a|masterpiece|.\nIt|may|not|be|``|Last|Tango|in|Paris|''|but|...\nThey|crush|each|other|under|cars|,|throw|each|other|out|windows|,|electrocute|and|dismember|their|victims|in|full|consciousness|.\nAnd|we|do|n't|avert|our|eyes|for|a|moment|.\nCharming|and|funny|(|but|ultimately|silly|)|movie|.\nThird|time|'s|the|charm|...|yeah|,|baby|!\nA|pleasant|,|if|forgettable|,|romp|of|a|film|.\nBy|the|end|of|the|movie|,|you|'re|definitely|convinced|that|these|women|are|spectacular|.\nBirot|creates|a|drama|with|such|a|well-defined|sense|of|place|and|age|--|as|in|,|15|years|old|--|that|the|torments|and|angst|become|almost|as|operatic|to|us|as|they|are|to|her|characters|.\n`|Stock|up|on|silver|bullets|for|director|Neil|Marshall|'s|intense|freight|train|of|a|film|.|'\nThe|film|delivers|what|it|promises|:|A|look|at|the|``|wild|ride|''|that|ensues|when|brash|young|men|set|out|to|conquer|the|online|world|with|laptops|,|cell|phones|and|sketchy|business|plans|.\nAs|a|film|director|,|LaBute|continues|to|improve|.\nWill|warm|your|heart|without|making|you|feel|guilty|about|it|.\nCatch|it|...|if|you|can|!\nWorse|than|`|Silence|of|the|Lambs|'|better|than|`|Hannibal|'\nAmerican|and|European|cinema|has|amassed|a|vast|Holocaust|literature|,|but|it|is|impossible|to|think|of|any|film|more|challenging|or|depressing|than|The|Grey|Zone|.\n`|Possession|,|'|based|on|the|book|by|A.S.|Byatt|,|demands|that|LaBute|deal|with|the|subject|of|love|head-on|;|trading|in|his|cynicism|for|reverence|and|a|little|wit\nIt|'s|the|kind|of|movie|that|,|aside|from|Robert|Altman|,|Spike|Lee|,|the|Coen|Brothers|and|a|few|others|,|our|moviemakers|do|n't|make|often|enough|.\nAlternates|between|deadpan|comedy|and|heartbreaking|loneliness|and|is|n't|afraid|to|provoke|introspection|in|both|its|characters|and|its|audience|.\nThe|script|is|smart|,|not|cloying|.\nVisually|,|`|Santa|Clause|2|'|is|wondrously|creative|.\nA|bittersweet|contemporary|comedy|about|benevolent|deception|,|which|,|while|it|may|not|rival|the|filmmaker|'s|period|pieces|,|is|still|very|much|worth|seeing|.\nOne|fantastic|(|and|educational|)|documentary|.\nAn|ambitious|`|what|if|?|'\nthat|works|.\n``|The|Dangerous|Lives|of|Altar|Boys|''|has|flaws|,|but|it|also|has|humor|and|heart|and|very|talented|young|actors\nNice|piece|of|work|.\n`|Stock|up|on|silver|bullets|for|director|Neil|Marshall|'s|intense|freight|train|of|a|film|.|'\nIt|'s|funny|,|as|the|old|saying|goes|,|because|it|'s|true|.\nThough|the|film|is|static|,|its|writer-director|'s|heart|is|in|the|right|place|,|his|plea|for|democracy|and|civic|action|laudable|.\nThe|filmmaker|'s|heart|is|in|the|right|place|...\nFrom|blushing|to|gushing|--|Imamura|squirts|the|screen|in|`|Warm|Water|Under|a|Red|Bridge|'\nApart|from|anything|else|,|this|is|one|of|the|best-sustained|ideas|I|have|ever|seen|on|the|screen|.\nNot|a|schlocky|creature|feature|but|something|far|more|stylish|and|cerebral|--|and|,|hence|,|more|chillingly|effective|.\nStupid|,|infantile|,|redundant|,|sloppy|,|over-the-top|,|and|amateurish|.\nYep|,|it|'s|``|Waking|up|in|Reno|.|''\nGo|back|to|sleep|.\nI|did|n't|laugh|.\nI|did|n't|smile|.\nI|survived|.\nThe|worst|film|of|the|year|.\nIn|the|book-on-tape|market|,|the|film|of|``|The|Kid|Stays|in|the|Picture|''|would|be|an|abridged|edition\nA|sour|attempt|at|making|a|Farrelly|Brothers-style|,|down-and-dirty|laugher|for|the|female|set|.\nEisenstein|lacks|considerable|brio|for|a|film|about|one|of|cinema|'s|directorial|giants|.\nTaken|as|a|whole|,|The|Tuxedo|does|n't|add|up|to|a|whole|lot|.\nThis|is|no|``|Waterboy|!|''\nSomething|has|been|lost|in|the|translation|...|another|routine|Hollywood|frightfest|in|which|the|slack|execution|italicizes|the|absurdity|of|the|premise|.\nThe|result|is|an|`|action|film|'|mired|in|stasis|.\n...|a|movie|that|,|quite|simply|,|should|n't|have|been|made|.\nBy|turns|pretentious|,|fascinating|,|ludicrous|,|provocative|and|vainglorious|.\nI|ca|n't|recommend|it|.\nBut|it|'s|surprisingly|harmless|.\nWhat|'s|next|?\nThe|Porky|'s|Revenge|:|Ultimate|Edition|?\nThe|script|is|a|dim-witted|pairing|of|teen-speak|and|animal|gibberish|.\nThere|'s|no|real|reason|to|see|it|,|and|no|real|reason|not|to|.\nIs|``|Ballistic|''|worth|the|price|of|admission|?\nAbsolutely|not|.\nIt|sucked|.\nWould|I|see|it|again|?\nPlease|see|previous|answer|.\nIt|'s|exactly|what|you|'d|expect|.\n``|The|Kid|Stays|in|the|Picture|''|is|a|great|story|,|terrifically|told|by|the|man|who|wrote|it|but|this|Cliff|Notes|edition|is|a|cheat|.\nA|prison|comedy|that|never|really|busts|out|of|its|comfy|little|cell|.\nThe|movie|is|obviously|a|labour|of|love|so|Howard|appears|to|have|had|free|rein|to|be|as|pretentious|as|he|wanted|.\nThis|is|n't|a|movie|;|it|'s|a|symptom|.\nWhat|we|have|is|a|character|faced|with|the|possibility|that|her|life|is|meaningless|,|vapid|and|devoid|of|substance|,|in|a|movie|that|is|definitely|meaningless|,|vapid|and|devoid|of|substance|.\nIf|only|it|were|,|well|,|funnier|.\nThe|script|?\nPlease|.\nDoes|n't|add|up|to|much|.\nOne|of|the|worst|movies|of|the|year|.\nA|complete|waste|of|time|.\nLong|before|it|'s|over|,|you|'ll|be|thinking|of|51|ways|to|leave|this|loser|.\nOne|of|the|worst|movies|of|the|year|.\n...|Watching|it|was|painful|.\nThe|cinematic|equivalent|of|patronizing|a|bar|favored|by|pretentious|,|untalented|artistes|who|enjoy|moaning|about|their|cruel|fate|.\nSpiderman|ROCKS\nA|compelling|coming-of-age|drama|about|the|arduous|journey|of|a|sensitive|young|girl|through|a|series|of|foster|homes|and|a|fierce|struggle|to|pull|free|from|her|dangerous|and|domineering|mother|'s|hold|over|her|.\nAn|imaginative|comedy\\/thriller|.\nThoroughly|enjoyable|.\n(|A|)|rare|,|beautiful|film|.\nFamily|fare|.\nBoisterous|,|heartfelt|comedy|.\n(|An|)|hilarious|romantic|comedy|.\nAn|exhilarating|experience|.\nNever|(|sinks|)|into|exploitation|.\nCompellingly|watchable|.\nTroubling|and|powerful|.\nOften|hilarious|.\nA|modest|masterpiece|.\nNever|once|predictable|.\nAn|uplifting|,|near-masterpiece|.\nWarm|and|exotic|.\n...|a|true|delight|.\nA|true|pleasure|.\nPolished|,|well-structured|film|.\nSexy|and|romantic|.\nPsychologically|savvy|.\ndelightfully|rendered\nFun|and|nimble|.\nFunny|and|touching|.\nSerious|and|thoughtful|.\nIt|strikes|hardest|...|when|it|reminds|you|how|pertinent|its|dynamics|remain|.\nFifty|years|after|the|fact|,|the|world|'s|political|situation|seems|little|different|,|and|(|director|Phillip|)|Noyce|brings|out|the|allegory|with|remarkable|skill|.\nOne-of-a-kind|near-masterpiece|.\nLightweight|but|appealing|.\nHighly|engaging|.\nFeral|and|uncomfortable|.\nA|gripping|drama|.\nBeautifully|produced|.\nSmart|and|taut|.\nHighly|watchable|stuff|.\nPsychologically|revealing|.\nA|fast|paced|and|suspenseful|Argentinian|thriller|about|the|shadow|side|of|play|.\n...|wise|and|elegiac|...\nSpare|yet|audacious|...\nSurprisingly|insightful\nAn|intoxicating|experience|.\nReassuring|,|retro|uplifter|.\nVisually|captivating|.\nLavishly|,|exhilaratingly|tasteless|.\nTouché|!\nAn|impressive|hybrid|.\nA|tasty|masala|.\nRefreshing|.\nFeatherweight|romantic|comedy|has|a|few|nice|twists|in|a|standard|plot|and|the|charisma|of|Hugh|Grant|and|Sandra|Bullock|.\nPoignant|and|funny|.\nSee|it|.\nDebate|it|.\nRemember|it|.\nMorvern|rocks|.\nIntelligent|and|moving|.\nGenuinely|unnerving|.\nA|compelling|film|.\nDeliciously|slow|.\nA|riveting|documentary|.\nAn|enjoyable|experience|.\nA|good|thriller|.\nA|glorious|mess|.\nNeatly|constructed|thriller|.\nIntimate|and|panoramic|.\nExciting|documentary|.\nGood|,|solid|storytelling|.\nInfidelity|drama|is|nicely|shot|,|well-edited|and|features|a|standout|performance|by|Diane|Lane|.\nAudacious-impossible|yet|compelling|...\nA|muted|freak-out\nMoving|and|vibrant|.\n...|quite|endearing|.\nHarmless|fun|.\nGood-naturedly|cornball|sequel|.\nOddly|compelling|.\nWitless|but|watchable|.\nMr.|Deeds|is|sure|to|give|you|a|lot|of|laughs|in|this|simple|,|sweet|and|romantic|comedy|.\nHard|to|resist|.\nA|true-blue|delight|.\nA|fun|ride|.\nWeird|.\nRewarding|.\nSleek|and|arty|.\nFantastic|!\nA|thought-provoking|picture|.\nA|stylish|thriller|.\nAlmost|peerlessly|unsettling|.\nDelirious|fun|.\nExciting|and|well-paced|.\nReally|quite|funny|.\nA|well-executed|spy-thriller|.\nIdiotic|and|ugly|.\nA|funny|film|.\n(|A|)|satisfying|niblet|.\nPoetic|,|heartbreaking|.\nFormuliac|,|but|fun|.\nFeels|untidily|honest|.\n``|Red|Dragon|''|never|cuts|corners|.\nFull|of|surprises|.\nQuietly|engaging|.\nDense|,|exhilarating|documentary|.\na|joyous|occasion\n(|An|)|absorbing|documentary|.\nA|genuine|mind-bender|.\nGreat|character|interaction|.\nIntriguing|and|stylish|.\nMany|insightful|moments|.\nEverything|is|off|.\nEarnest|but|heavy-handed|.\nOne|lousy|movie|.\n...|hypnotically|dull|.\nCalculated|swill|.\nThoroughly|awful|.\nTruly|terrible|.\nFluffy|and|disposible|.\nBy-the-numbers|yarn|.\nAan|opportunity|wasted|.\nStorytelling|feels|slight|.\nBad|company|.\nBad|movie|.\nJust|plain|bad|.\n(|A|)|soulless|,|stupid|sequel|...\nA|high-minded|snoozer|.\nExecrable|.\nAmazingly|dopey|.\nBanal|and|predictable|.\nCrikey|indeed|.\nBrisk|hack|job|.\n...|the|maudlin|way|its|story|unfolds|suggests|a|director|fighting|against|the|urge|to|sensationalize|his|material|.\n...|bibbidy-bobbidi-bland|.\nObvious|.\nIts|one-sidedness|...|flirts|with|propaganda|.\n...|a|pretentious|mess|...\n(|A|)|rather|thinly-conceived|movie|.\nSo-so|entertainment|.\nPunitively|affirmational|parable|.\nDecent|but|dull|.\nThin|period|piece|.\n(|A|)|stuporously|solemn|film|.\nWell-meant|but|unoriginal|.\nOdd|and|weird|.\nCinematic|poo|.\n...|stale|and|uninspired|.\nA|dreary|movie|.\nPompous|and|garbled|.\nUtter|mush|...|conceited|pap|.\nWell-meaning|but|inert|.\n...|overly|melodramatic|...\nExtremely|bad|.\nShrewd|but|pointless|.\nSluggish|,|tonally|uneven|.\nGeneric|thriller|junk|.\nTeens|only|.\nA|non-mystery|mystery|.\nWhat|an|embarrassment|.\nA|noble|failure|.\nWoefully|pretentious|.\n...|irritating|soul-searching|garbage|.\nA|relative|letdown|.\nWarmed-over|hash|.\nA|puzzling|experience|.\nStale|,|futile|scenario|.\nAggravating|and|tedious|.\nLacks|depth|.\nunder-rehearsed|and|lifeless\nLaughably|,|irredeemably|awful|.\nUnwieldy|contraption|.\nOverwrought|,|melodramatic|bodice-ripper|.\nAn|awful|snooze|.\nJust|plain|silly|.\nFeeble|comedy|.\n...|salaciously|simplistic|.\nShallow|.\nA|less-than-thrilling|thriller|.\nDisjointed|parody|.\n...|silly|humbuggery|...\nEh|.\nBlack-and-white|and|unrealistic|.\nTwo-bit|potboiler|.\n(|U|)|nrelentingly|stupid|.\nPainfully|padded|.\nAnemic|,|pretentious|.\nGrating|and|tedious|.\nIt|bites|hard|.\n(|A|)|mess|.\nDramatically|lackluster|.\nStay|away|.\nFar|away|.\n...|a|pretentious|mess|...\nPredictably|soulless|techno-tripe|.\nArty|gay|film|.\nIncoherence|reigns|.\nA|half-assed|film|.\nAbysmally|pathetic\n...|unbearably|lame|.\nBland|but|harmless|.\nDense|and|enigmatic|...|elusive|...|stagy|and|stilted\n(|L|)|ame|and|unnecessary|.\nA|dreary|indulgence|.\n(|A|)|crushing|disappointment|.\nTends|to|plod|.\nA|major|waste|...|generic|.\n...|a|confusing|drudgery|.\nA|well-crafted|letdown|.\nBoring|and|meandering|.\nLess|than|fresh|.\nA|lame|comedy|.\nA|reality-snubbing|hodgepodge|.\nMildly|amusing|.\nFairly|run-of-the-mill|.\nMildly|entertaining|.\nTerrible|.\nDegenerates|into|hogwash|.\nMeandering|and|confusing|.\nCrummy|.\nAn|opportunity|missed|.\nWishy-washy|.\nInconsequential|road-and-buddy|pic|.\nInsufferably|naive|.\nIll-considered|,|unholy|hokum|.\nAmazingly|lame|.\n(|A|)|slummer|.\n(|A|)|poorly|executed|comedy|.\n...|really|horrible|drek|.\nAn|intriguing|near-miss|.\nFlat|,|misguided|comedy|.\nPredictably|melodramatic|.\nRashomon-for-dipsticks|tale|.\nBearable|.\nBarely|.\nStaggeringly|dreadful|romance|.\nWell-made|but|mush-hearted|.\nA|real|snooze|.\nNo|surprises|.\nWe|'ve|seen|the|hippie-turned-yuppie|plot|before|,|but|there|'s|an|enthusiastic|charm|in|Fire|that|makes|the|formula|fresh|again|.\nHer|fans|walked|out|muttering|words|like|``|horrible|''|and|``|terrible|,|''|but|had|so|much|fun|dissing|the|film|that|they|did|n't|mind|the|ticket|cost|.\nIn|this|case|zero|.\n"
  },
  {
    "path": "a2/utils/datasets/stanfordSentimentTreebank/STree.txt",
    "content": "70|70|68|67|63|62|61|60|58|58|57|56|56|64|65|55|54|53|52|51|49|47|47|46|46|45|40|40|41|39|38|38|43|37|37|69|44|39|42|41|42|43|44|45|50|48|48|49|50|51|52|53|54|55|66|57|59|59|60|61|62|63|64|65|66|67|68|69|71|71|0\n71|70|69|69|67|67|66|64|63|62|62|61|61|58|57|57|56|53|53|52|52|49|49|50|48|45|44|43|43|42|42|41|39|38|38|40|60|39|40|41|47|46|44|45|46|47|48|51|50|51|55|54|54|55|56|59|58|59|60|73|65|63|64|65|66|68|68|72|70|71|72|73|0\n6|6|5|5|7|7|0\n40|39|38|37|36|34|33|32|32|31|30|30|29|28|26|25|24|23|22|22|27|23|24|25|26|27|28|29|41|31|35|33|34|35|36|37|38|39|40|41|0\n42|41|40|40|43|38|37|37|36|34|31|31|32|30|30|29|28|26|26|25|24|24|45|25|27|27|28|29|35|33|32|33|34|35|36|39|38|39|44|41|42|43|44|45|0\n50|50|47|46|45|45|44|42|41|41|40|36|36|37|38|35|34|33|32|30|29|29|28|27|27|49|28|31|30|31|32|33|34|35|39|37|38|39|40|43|42|43|44|48|46|47|48|49|51|51|0\n16|14|13|13|12|10|10|11|17|11|12|15|14|15|16|17|0\n39|36|36|35|35|32|31|31|30|29|26|26|25|25|24|23|22|21|21|34|22|23|24|28|27|27|28|29|30|33|32|33|34|38|37|37|38|39|0\n40|39|38|36|35|35|34|33|32|31|31|41|30|29|28|27|26|25|24|23|23|43|24|25|26|27|28|29|30|42|32|33|34|37|36|37|38|39|40|41|42|43|0\n13|12|11|8|8|9|10|9|10|11|12|13|0\n25|25|24|23|23|21|19|17|17|18|16|15|15|22|16|20|18|19|20|21|22|27|24|26|26|27|0\n29|25|23|23|24|26|18|18|19|20|21|16|16|17|28|17|22|19|20|21|22|27|24|25|26|27|28|29|0\n25|24|22|21|21|19|16|15|15|17|14|14|20|18|16|17|18|19|20|23|22|23|24|25|0\n47|46|43|43|42|41|40|39|36|36|37|35|34|33|32|29|29|30|26|26|27|25|25|45|28|27|28|31|30|31|32|33|34|35|38|37|38|39|40|41|42|44|44|45|46|47|0\n17|16|13|12|12|14|11|11|18|19|15|13|14|15|16|17|18|19|0\n23|22|21|19|17|17|16|14|14|13|13|20|15|15|16|18|18|19|20|21|22|23|0\n46|46|43|43|42|39|39|40|38|37|34|34|33|31|29|29|30|28|27|27|26|25|25|45|26|36|28|32|30|31|32|33|35|35|36|37|38|41|40|41|42|44|44|45|47|47|0\n11|9|8|8|7|7|10|9|10|11|0\n12|12|11|11|10|9|9|15|10|14|13|13|14|15|0\n31|30|30|28|27|27|29|25|24|23|22|21|20|19|18|18|26|19|20|21|22|23|24|25|26|33|28|29|32|31|32|33|0\n20|18|18|17|15|14|14|13|12|12|21|13|16|15|16|17|19|19|20|21|0\n16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0\n72|70|70|69|68|67|66|64|63|63|62|61|60|60|59|56|56|57|53|53|52|51|50|46|46|47|48|45|44|43|42|41|40|39|38|38|55|39|40|41|42|43|44|45|49|47|48|49|50|51|52|54|54|55|58|57|58|59|73|61|62|65|64|65|66|67|68|69|71|71|72|73|0\n29|26|26|25|25|28|24|21|21|22|23|19|18|17|17|20|18|19|20|31|22|23|24|30|27|27|28|29|30|31|0\n43|42|42|40|40|38|37|36|36|35|34|34|33|32|30|28|27|27|26|25|24|24|31|25|26|29|28|29|30|31|32|33|45|35|39|37|38|39|41|41|44|43|44|45|0\n29|28|27|27|26|25|24|23|22|21|20|17|17|18|19|31|18|19|20|21|22|23|24|25|26|30|28|29|30|31|0\n16|16|15|14|11|11|10|10|13|12|12|13|14|15|17|17|0\n25|24|23|23|26|20|20|18|16|16|17|15|15|22|19|17|18|19|21|21|22|27|24|25|26|27|0\n36|34|34|35|33|31|31|28|26|25|25|24|23|23|22|21|20|20|30|21|22|29|24|27|26|27|28|29|30|32|32|33|37|35|36|37|0\n45|44|43|41|39|39|37|36|36|35|34|31|29|29|30|28|27|27|26|25|24|24|42|25|26|33|28|32|30|31|32|33|34|35|38|37|38|40|40|41|42|43|44|45|0\n40|39|38|36|36|37|41|34|33|32|31|31|30|29|28|27|26|25|24|23|23|43|24|25|26|27|28|29|30|35|32|33|34|35|42|37|38|39|40|41|42|43|0\n24|23|22|21|20|19|14|14|15|16|17|18|25|15|16|17|18|19|20|21|22|23|24|25|0\n34|33|33|32|31|30|30|36|29|28|27|26|26|38|24|23|22|21|21|25|22|23|24|25|39|27|28|29|37|31|32|35|34|35|36|37|38|39|0\n9|9|7|7|8|11|8|10|10|11|0\n56|55|54|53|52|51|50|49|48|47|45|45|44|44|43|42|40|39|38|37|36|35|33|32|31|30|30|34|41|31|32|33|34|35|36|37|38|39|40|41|42|43|57|46|46|47|48|49|50|51|52|53|54|55|56|57|0\n64|63|62|61|60|59|57|57|55|54|54|53|50|50|51|49|49|48|47|45|43|41|40|40|42|39|37|37|36|35|34|34|46|35|36|38|38|39|44|41|42|43|44|45|46|47|48|65|52|51|52|53|56|55|56|58|58|59|60|61|62|63|64|65|0\n32|31|30|29|27|27|28|26|25|21|20|20|22|19|18|18|24|19|23|21|22|23|24|25|26|33|28|29|30|31|32|33|0\n35|34|33|27|26|26|28|25|25|30|31|23|23|22|21|19|19|20|20|21|22|24|24|32|29|27|28|29|30|31|32|33|34|35|0\n24|24|22|21|20|19|18|17|16|15|14|14|23|15|16|17|18|19|20|21|22|23|25|25|0\n82|81|80|79|77|77|76|75|75|74|73|71|69|66|66|67|68|65|62|61|61|63|59|58|58|57|56|55|54|53|52|51|50|49|48|47|46|45|44|43|43|72|44|45|46|47|48|49|50|51|52|53|54|55|56|57|60|59|60|64|62|63|64|65|70|67|68|69|70|71|72|73|74|83|76|78|78|79|80|81|82|83|0\n42|40|39|39|38|37|37|36|34|33|32|32|30|29|28|27|26|25|24|23|23|31|24|25|26|27|28|29|30|31|35|33|34|35|36|43|38|41|40|41|42|43|0\n25|24|24|23|22|22|20|19|18|17|16|15|15|21|16|17|18|19|20|21|27|23|26|25|26|27|0\n39|33|32|32|31|30|30|35|36|28|28|27|24|22|22|23|25|21|21|38|26|23|24|25|26|27|29|29|37|31|34|33|34|35|36|37|38|39|0\n42|42|39|38|38|37|35|34|33|33|32|31|29|28|28|27|25|25|24|23|23|41|24|26|26|27|30|29|30|31|32|36|34|35|36|37|40|39|40|41|43|43|0\n26|25|24|24|23|22|21|20|18|17|15|15|16|19|16|17|18|19|20|21|22|23|27|25|26|27|0\n31|28|28|27|26|22|22|23|21|19|19|20|18|17|17|30|18|25|20|21|24|23|24|25|26|27|29|29|30|31|0\n34|34|31|29|28|28|27|25|25|24|23|23|22|21|20|19|19|33|20|21|22|32|24|26|26|27|30|29|30|31|32|33|35|35|0\n55|55|54|54|53|52|50|50|48|47|44|44|45|42|41|40|39|39|37|37|36|34|34|32|31|31|30|30|49|33|32|33|35|35|36|38|38|43|40|41|42|43|46|45|46|47|48|49|51|51|52|53|57|56|56|57|0\n25|23|21|20|20|19|18|16|16|15|14|14|24|15|17|17|18|19|22|21|22|23|24|25|0\n44|43|43|45|40|39|39|41|38|35|35|34|33|33|32|30|30|28|27|27|25|25|26|47|26|29|28|29|31|31|32|37|34|36|36|37|38|42|40|41|42|46|44|45|46|47|0\n14|11|11|12|10|9|9|15|10|13|12|13|14|15|0\n72|71|69|63|62|62|64|61|61|66|58|58|57|57|60|68|70|73|56|52|52|53|51|51|50|48|48|47|46|45|43|43|42|41|39|39|40|75|40|41|42|44|44|45|46|47|49|49|50|55|54|53|54|55|56|74|59|59|60|67|65|63|64|65|66|67|68|69|70|71|72|73|74|75|0\n15|14|14|13|11|11|10|10|17|12|12|13|16|15|16|17|0\n24|23|22|21|20|19|18|18|17|15|15|14|14|16|16|17|25|19|20|21|22|23|24|25|0\n38|38|35|34|34|33|32|31|30|29|28|27|26|25|24|23|22|21|21|37|22|23|24|25|26|27|28|29|30|31|32|33|36|35|36|37|39|39|0\n20|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0\n42|42|41|39|37|37|36|35|34|33|31|29|29|30|28|27|25|25|24|23|23|40|24|26|26|27|28|32|30|31|32|33|34|35|36|38|38|39|40|41|43|43|0\n46|43|42|42|44|40|39|39|38|36|35|34|34|37|33|31|31|29|27|26|26|25|25|30|28|27|28|29|30|32|32|33|47|35|36|37|38|41|40|41|45|43|44|45|46|47|0\n40|39|38|36|36|35|33|33|32|32|31|30|25|24|23|23|22|22|27|28|29|26|24|25|26|27|28|29|30|31|41|34|34|35|37|37|38|39|40|41|0\n29|27|24|24|25|23|22|21|19|19|18|17|16|16|28|17|18|20|20|21|22|23|26|25|26|27|28|29|0\n72|71|71|70|68|68|67|67|66|63|62|62|60|60|58|58|56|55|55|54|53|53|65|75|51|50|50|49|48|46|44|43|42|42|45|41|40|40|77|41|47|43|44|45|46|47|48|49|52|51|52|76|54|57|56|57|59|59|61|61|64|63|64|65|66|74|69|69|70|73|72|73|74|75|76|77|0\n36|35|34|33|33|32|30|29|27|26|25|24|23|23|22|21|20|20|31|21|22|28|24|25|26|27|28|29|30|31|32|37|34|35|36|37|0\n15|13|13|10|9|9|11|12|10|11|12|14|14|15|0\n62|59|59|58|57|56|55|54|53|52|52|51|50|49|44|44|45|46|47|43|43|42|41|40|38|37|35|33|33|34|36|39|34|35|36|37|38|39|40|41|42|63|48|45|46|47|48|49|50|51|61|53|54|55|56|57|58|60|60|61|62|63|0\n20|19|18|18|21|16|16|15|14|13|13|23|14|15|17|17|22|19|20|21|22|23|0\n27|25|23|22|21|21|20|18|18|17|15|15|16|26|16|17|19|19|20|24|22|23|24|25|26|27|0\n42|40|40|38|38|37|35|33|32|32|34|31|30|30|43|28|28|27|25|25|24|24|45|26|26|27|29|29|44|31|36|33|34|35|36|37|39|39|41|41|42|43|44|45|0\n41|40|40|39|38|37|35|34|34|33|31|31|30|28|28|27|25|25|26|23|23|24|24|43|26|27|29|29|30|32|32|33|36|35|36|37|38|39|42|41|42|43|0\n38|37|36|36|34|30|29|29|28|27|26|26|32|25|24|23|21|21|22|35|22|23|24|25|33|27|28|31|30|31|32|33|34|35|39|37|38|39|0\n22|21|20|20|19|17|16|14|14|15|13|13|18|15|16|17|18|19|23|21|22|23|0\n45|44|42|41|41|40|39|38|38|46|47|36|36|35|33|33|31|31|30|29|28|27|26|26|49|27|28|29|30|32|32|34|34|35|37|37|48|39|40|43|42|43|44|45|46|47|48|49|0\n34|33|31|31|30|29|29|27|26|25|23|22|22|21|19|19|20|28|20|21|24|23|24|25|26|27|28|35|30|32|32|33|34|35|0\n44|43|42|42|38|37|35|34|34|33|33|39|31|31|30|28|27|27|26|24|24|25|41|25|26|29|28|29|30|32|32|40|36|35|36|37|38|39|40|41|45|43|44|45|0\n47|46|45|45|44|43|40|40|39|38|38|37|35|34|34|33|32|30|29|29|28|27|26|26|49|27|28|31|30|31|32|33|36|35|36|37|42|39|41|41|42|43|44|48|46|47|48|49|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n46|44|44|45|47|48|42|41|41|40|39|37|36|34|33|33|35|32|31|31|50|27|27|28|29|30|28|29|30|51|32|38|34|35|36|37|38|39|40|43|42|43|49|45|46|47|48|49|50|51|0\n31|31|32|33|34|29|27|27|28|30|36|25|23|23|22|21|20|20|26|21|22|24|24|25|26|37|28|29|30|35|32|33|34|35|36|37|0\n38|38|36|36|34|32|31|30|29|29|28|26|26|25|24|23|22|21|21|35|22|23|24|25|27|27|28|33|30|31|32|33|34|35|37|37|39|39|0\n43|43|42|42|45|40|40|39|39|36|36|35|34|30|29|28|27|27|31|32|26|25|25|38|26|33|28|29|30|31|32|33|34|35|37|37|38|47|41|41|46|44|44|45|46|47|0\n7|5|5|6|6|7|0\n13|13|12|11|11|9|9|10|10|15|12|14|14|15|0\n16|15|15|14|13|10|10|11|12|11|12|13|14|17|16|17|0\n43|41|41|40|39|39|38|37|36|35|34|34|33|32|29|29|28|27|26|25|24|24|31|25|26|27|28|30|30|31|32|33|45|35|36|37|38|44|40|42|42|43|44|45|0\n21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0\n39|39|40|38|37|35|34|33|32|32|36|31|30|29|29|27|26|25|24|23|23|28|24|25|26|27|28|43|30|31|42|33|34|35|36|37|38|41|40|41|42|43|0\n47|45|41|40|40|39|37|37|36|36|43|34|34|33|32|30|29|28|27|27|26|25|25|46|26|31|28|29|30|31|32|33|35|35|44|38|38|39|42|41|42|43|44|45|46|47|0\n49|48|48|50|51|46|45|44|43|42|42|41|40|39|38|37|36|32|31|31|30|30|34|29|28|28|53|29|35|33|32|33|34|35|36|37|38|39|40|41|47|43|44|45|46|47|52|49|50|51|52|53|0\n47|45|43|42|42|41|39|39|37|36|35|33|33|34|32|30|29|28|28|27|26|25|25|46|26|27|31|29|30|31|32|38|34|35|36|37|38|40|40|41|44|43|44|45|46|47|0\n31|30|30|29|29|28|27|24|23|23|22|20|20|19|18|18|26|19|21|21|22|25|24|25|26|27|28|33|32|31|32|33|0\n36|34|34|33|32|30|30|29|29|28|26|26|24|23|22|21|20|20|25|21|22|23|24|25|27|27|28|37|31|31|32|33|35|35|36|37|0\n29|28|25|25|26|23|21|20|19|18|17|17|16|16|24|22|18|19|20|21|22|23|24|27|26|27|28|29|0\n36|35|35|34|33|31|30|29|27|27|25|25|24|23|22|21|20|20|32|21|22|23|24|26|26|28|28|29|30|31|32|33|34|37|36|37|0\n56|56|55|53|53|52|50|49|49|48|45|45|46|47|58|59|44|43|41|40|40|39|36|35|34|34|37|33|32|32|61|33|38|35|36|37|38|39|42|41|42|43|44|60|46|47|48|51|50|51|52|54|54|55|57|57|58|59|60|61|0\n44|44|40|38|38|37|36|36|41|35|33|32|31|30|30|28|28|27|26|25|24|24|43|25|26|27|29|29|34|31|32|33|34|35|42|37|39|39|40|41|42|43|45|45|0\n36|35|35|34|34|33|32|31|30|27|27|28|26|26|25|22|22|21|21|24|23|23|24|25|39|29|28|29|30|31|32|33|38|37|36|37|38|39|0\n75|75|76|73|73|72|72|78|63|62|62|64|65|60|59|58|57|57|56|55|55|67|53|53|52|50|49|49|51|69|48|46|46|45|44|43|41|41|42|71|42|43|44|45|47|47|48|70|50|51|52|54|54|68|56|61|58|59|60|61|66|63|64|65|66|67|68|69|70|71|79|74|74|77|76|77|78|79|0\n15|15|14|13|13|10|10|11|12|11|12|17|14|16|16|17|0\n72|71|64|64|65|62|62|61|61|67|60|60|69|57|56|55|55|54|54|51|50|50|49|48|47|46|46|44|44|43|42|41|41|39|38|38|40|39|40|73|42|43|45|45|53|47|48|49|52|51|52|53|59|58|56|57|58|59|70|68|63|63|66|65|66|67|68|69|70|71|72|73|0\n40|37|36|36|35|33|33|34|32|30|30|29|29|28|27|25|24|23|22|22|26|23|24|25|26|27|28|41|31|31|32|39|34|35|38|37|38|39|40|41|0\n66|63|63|64|61|60|60|59|58|56|56|55|54|53|53|52|51|47|47|46|46|45|44|43|42|41|39|39|38|36|35|35|37|50|36|37|38|40|40|41|42|43|44|45|49|48|48|49|50|51|52|67|54|55|57|57|58|59|62|61|62|65|64|65|66|67|0\n30|29|29|28|26|26|24|22|21|20|19|19|18|17|17|25|18|23|20|21|22|23|24|25|27|27|28|31|30|31|0\n42|41|40|39|39|38|36|36|34|33|32|31|30|28|27|26|26|25|24|23|23|35|24|25|29|27|28|29|30|31|32|33|34|35|37|37|38|43|40|41|42|43|0\n35|33|32|32|31|29|29|27|26|24|23|23|21|21|20|19|19|28|20|22|22|25|24|25|26|27|28|30|30|31|34|33|34|35|0\n42|42|41|39|36|36|35|32|31|30|30|33|34|29|28|27|26|25|23|23|24|40|24|25|26|27|28|29|38|31|32|33|34|35|37|37|38|39|40|41|43|43|0\n13|11|11|10|9|8|8|9|10|12|12|13|0\n43|41|40|39|39|38|37|36|35|35|44|45|34|33|32|31|29|29|28|27|26|25|25|47|26|27|28|30|30|31|32|33|34|46|36|37|38|42|40|41|42|43|44|45|46|47|0\n27|24|23|22|21|20|19|18|17|17|16|15|15|26|16|25|18|19|20|21|22|23|24|25|26|27|0\n23|22|22|24|20|18|18|17|16|14|14|15|21|15|16|17|19|19|20|21|25|23|24|25|0\n49|47|47|48|44|44|43|42|41|41|40|38|37|36|36|35|34|33|32|30|29|29|28|27|27|51|28|31|30|31|32|33|34|35|39|37|38|39|40|46|42|43|45|45|46|50|48|49|50|51|0\n64|63|63|62|61|60|59|58|57|57|66|67|56|55|53|53|52|48|47|44|44|45|43|43|42|42|50|41|40|38|37|37|36|36|69|39|38|39|40|41|51|49|46|45|46|47|48|49|50|51|52|54|54|55|56|68|58|59|60|61|62|65|64|65|66|67|68|69|0\n45|45|44|43|40|39|38|38|41|37|36|34|34|35|31|29|29|28|26|26|27|25|25|33|32|27|28|30|30|31|32|33|47|35|36|37|42|39|40|41|42|43|44|46|46|47|0\n34|33|31|30|29|28|28|27|26|25|25|24|23|22|20|19|19|21|20|21|22|23|24|35|26|27|32|29|30|31|32|33|34|35|0\n25|24|24|26|22|21|19|19|18|17|16|15|15|23|16|17|18|20|20|21|22|23|27|25|26|27|0\n44|44|45|43|43|47|42|42|49|50|51|41|40|39|38|38|35|34|34|36|33|31|30|29|28|28|32|29|30|31|32|33|37|35|36|37|53|39|40|41|52|48|46|45|46|47|48|49|50|51|52|53|0\n42|42|41|40|38|37|35|35|34|33|31|31|32|30|29|28|27|25|25|24|23|23|24|26|26|27|28|29|30|39|32|33|34|36|36|37|38|39|40|41|43|43|0\n61|60|59|58|57|55|52|52|53|51|51|50|50|62|63|47|46|46|44|43|43|45|42|41|40|35|35|36|37|38|34|34|65|39|36|37|38|39|40|41|42|49|44|45|48|47|48|49|64|56|54|53|54|55|56|57|58|59|60|61|62|63|64|65|0\n18|17|17|16|15|14|14|13|12|12|21|13|20|15|16|19|18|19|20|21|0\n68|68|69|67|65|64|64|63|61|61|60|59|59|58|57|53|51|51|50|48|48|47|46|46|54|45|44|41|41|42|40|39|38|37|37|56|38|39|40|43|42|43|44|45|55|47|49|49|50|52|52|53|54|55|56|57|58|71|60|62|62|63|66|65|66|67|70|69|70|71|0\n18|12|12|13|14|15|11|11|17|19|16|13|14|15|16|17|18|19|0\n57|55|53|52|52|51|49|48|48|45|44|44|46|43|39|37|37|35|35|36|40|41|34|32|32|31|30|30|56|31|33|33|34|42|36|38|38|39|40|41|42|43|47|45|46|47|50|49|50|51|54|53|54|55|56|57|0\n25|24|23|23|26|27|22|21|19|19|18|17|16|16|29|17|18|20|20|21|22|28|24|25|26|27|28|29|0\n42|41|40|38|38|39|37|35|34|33|33|32|29|27|27|28|26|25|24|23|23|31|24|25|26|30|28|29|30|31|32|36|34|35|36|37|43|39|40|41|42|43|0\n65|63|63|62|60|59|58|58|57|56|55|55|66|67|54|51|50|49|49|52|48|47|45|44|44|43|42|41|40|38|38|37|36|36|69|37|39|39|40|41|42|43|46|45|46|47|48|53|50|51|52|53|54|68|56|57|61|59|60|61|62|64|64|65|66|67|68|69|0\n10|8|8|7|7|11|9|9|10|11|0\n48|46|46|45|44|42|42|41|40|39|38|38|37|35|35|30|30|29|28|28|32|27|26|26|34|27|33|29|31|31|32|33|34|36|36|37|49|39|40|41|43|43|44|45|47|47|48|49|0\n17|16|15|14|14|13|11|11|12|19|12|13|18|15|16|17|18|19|0\n49|49|46|45|44|41|40|40|42|37|36|36|38|35|35|47|48|33|33|30|30|29|28|27|27|32|28|29|31|31|32|34|34|51|39|37|38|39|43|41|42|43|44|45|46|47|48|50|50|51|0\n27|27|26|25|25|23|21|20|20|19|18|16|16|17|24|17|18|19|22|21|22|23|24|29|26|28|28|29|0\n54|53|52|52|51|50|43|42|41|40|39|38|38|44|36|34|34|35|33|32|32|46|47|31|30|29|29|49|30|31|48|33|37|35|36|37|45|39|40|41|42|43|44|45|46|47|48|49|50|51|55|53|54|55|0\n76|76|77|74|74|73|72|71|70|69|68|65|63|62|61|61|60|59|59|58|57|56|54|53|53|52|50|50|49|48|48|47|46|44|44|42|41|41|43|79|42|43|45|45|46|47|67|49|51|51|52|55|54|55|56|57|58|66|60|64|62|63|64|65|66|67|68|69|70|71|72|73|75|75|78|77|78|79|0\n13|11|11|10|8|8|9|9|10|12|12|13|0\n34|34|33|23|23|24|22|22|26|21|21|28|20|20|30|19|19|32|31|29|27|25|24|25|26|27|28|29|30|31|32|33|35|35|0\n47|45|42|40|40|39|39|43|38|37|36|32|31|29|28|28|27|26|26|33|34|25|25|46|35|27|30|29|30|31|32|33|34|35|36|37|38|44|41|41|42|43|44|45|46|47|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n48|47|47|46|44|43|42|42|41|40|40|38|38|37|36|36|51|34|34|33|31|31|30|28|28|29|53|29|30|32|32|33|35|35|52|37|39|39|50|41|45|43|44|45|46|49|48|49|50|51|52|53|0\n29|28|26|26|24|21|21|22|20|19|18|16|16|17|25|17|18|19|20|23|22|23|24|25|27|27|28|29|0\n47|41|41|39|38|37|37|36|35|34|34|43|44|33|31|30|30|29|27|27|26|25|25|46|26|28|28|29|32|31|32|33|45|35|36|40|38|39|40|42|42|43|44|45|46|47|0\n34|34|31|31|29|29|28|27|25|22|22|23|24|21|20|19|19|33|20|21|26|23|24|25|26|27|28|30|30|32|32|33|35|35|0\n49|48|48|47|45|45|44|43|42|41|40|39|39|37|34|33|32|32|35|31|30|29|28|27|27|38|28|29|30|31|36|33|34|35|36|37|38|51|40|41|42|43|44|46|46|47|50|49|50|51|0\n11|9|8|7|7|10|8|9|10|11|0\n40|38|38|37|37|36|34|34|30|29|28|27|27|31|26|25|24|23|22|22|33|23|24|25|26|32|28|29|30|31|32|33|35|35|36|41|39|39|40|41|0\n34|31|31|32|30|29|29|35|27|27|24|24|25|23|22|21|20|20|37|21|22|23|26|25|26|28|28|36|30|33|32|33|34|35|36|37|0\n67|65|64|63|62|61|59|58|51|50|48|48|47|46|46|52|44|44|43|42|42|54|55|40|39|38|38|37|36|35|35|57|60|66|36|37|41|39|40|41|56|43|45|45|53|47|49|49|50|51|52|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|0\n28|27|26|25|24|23|23|22|20|20|18|17|16|16|19|17|18|19|21|21|22|29|24|25|26|27|28|29|0\n37|36|33|33|31|31|30|29|28|26|25|24|23|23|22|21|20|20|35|21|22|27|24|25|26|27|28|29|30|32|32|34|34|35|36|37|0\n23|21|19|18|18|17|14|14|13|13|16|22|15|15|16|17|20|19|20|21|22|23|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n17|15|14|14|12|12|10|10|11|11|13|13|16|15|16|17|0\n14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0\n31|29|27|27|26|23|23|24|22|21|19|19|18|17|17|30|18|20|20|21|22|25|24|25|26|28|28|29|30|31|0\n19|18|14|14|15|16|12|12|11|11|13|13|17|15|16|17|18|19|0\n32|32|29|27|26|26|25|24|24|23|21|21|20|18|18|19|31|19|20|22|22|23|30|25|28|27|28|29|30|31|33|33|0\n52|50|50|48|48|47|46|45|44|42|42|43|41|39|38|37|35|35|34|33|33|32|31|29|28|28|30|29|30|31|32|40|34|36|36|37|38|39|40|41|53|43|44|45|46|47|49|49|51|51|52|53|0\n47|45|43|42|42|41|38|37|35|35|34|34|39|33|32|31|29|28|28|27|26|25|25|46|26|27|30|29|30|31|32|33|40|36|36|37|38|39|40|41|44|43|44|45|46|47|0\n37|32|31|31|33|29|28|26|26|27|30|25|24|22|22|21|20|20|36|21|23|23|24|25|35|27|28|29|30|34|32|33|34|35|36|37|0\n60|59|58|56|55|55|57|54|51|51|50|50|47|47|44|42|42|41|41|40|39|38|37|37|36|34|34|32|32|33|49|33|35|35|36|46|38|39|40|45|43|43|44|45|46|48|48|49|53|52|52|53|54|61|56|57|58|59|60|61|0\n18|18|15|15|13|12|12|11|11|17|14|13|14|16|16|17|19|19|0\n57|55|53|52|50|49|48|48|46|45|44|44|42|42|41|40|38|37|37|36|35|35|32|31|30|30|33|34|56|31|32|33|34|54|36|39|38|39|40|41|43|43|47|45|46|47|51|49|50|51|52|53|54|55|56|57|0\n67|64|58|58|59|57|57|61|62|55|54|54|53|52|51|51|50|49|48|46|46|45|44|43|42|40|40|39|38|37|36|35|35|66|36|37|38|39|41|41|42|43|44|45|47|47|48|49|50|65|52|53|56|55|56|63|60|59|60|61|62|63|64|65|66|67|0\n30|29|29|31|28|26|26|25|24|21|20|20|22|18|18|19|33|19|23|21|22|23|24|25|27|27|28|32|30|31|32|33|0\n28|26|25|25|24|24|21|21|20|18|17|17|16|16|23|19|18|19|20|22|22|23|29|27|26|27|28|29|0\n37|36|35|33|33|32|31|31|38|39|30|27|26|25|24|24|28|23|22|22|41|23|29|25|26|27|28|29|30|40|32|34|34|35|36|37|38|39|40|41|0\n62|62|58|57|56|55|55|59|54|52|51|51|50|47|46|46|48|45|44|43|40|39|39|41|37|37|36|35|34|33|33|61|34|35|36|38|38|42|40|41|42|43|44|45|49|47|48|49|50|53|52|53|54|60|56|57|58|59|60|61|63|63|0\n37|36|36|35|32|31|31|33|30|27|27|28|25|24|24|23|22|22|21|21|39|23|26|25|26|29|28|29|30|34|32|33|34|35|38|37|38|39|0\n30|30|29|27|26|25|24|23|22|20|19|19|18|17|17|28|18|21|20|21|22|23|24|25|26|27|28|29|31|31|0\n35|30|29|28|28|31|24|23|23|25|26|22|21|21|20|19|19|34|20|33|22|27|24|25|26|27|32|29|30|31|32|33|34|35|0\n45|44|43|42|42|46|47|35|34|34|36|33|33|38|39|32|32|31|30|28|28|27|26|26|49|27|29|29|30|31|41|40|37|35|36|37|38|39|40|41|48|43|44|45|46|47|48|49|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n51|50|49|48|48|44|43|42|40|39|39|38|37|36|36|45|46|34|34|33|33|53|32|30|29|29|31|55|30|31|32|54|35|35|47|37|38|41|40|41|42|43|44|45|46|47|52|49|50|51|52|53|54|55|0\n60|59|58|57|56|55|53|53|54|61|62|52|51|50|49|48|47|43|43|42|41|40|40|45|39|38|38|64|36|34|34|35|37|35|36|37|65|39|46|41|42|44|44|45|46|47|48|49|50|51|52|63|54|55|56|57|58|59|60|61|62|63|64|65|0\n38|38|36|33|33|34|31|31|30|29|28|26|25|25|24|23|21|21|22|37|22|23|24|27|26|27|28|29|30|32|32|35|34|35|36|37|39|39|0\n34|33|29|29|30|31|27|26|26|25|25|23|22|21|20|19|19|24|20|21|22|23|24|35|28|27|28|32|30|31|32|33|34|35|0\n28|28|27|26|26|30|31|25|23|22|22|21|20|19|18|18|33|19|20|21|24|23|24|25|32|27|29|29|30|31|32|33|0\n37|34|30|30|29|29|32|33|28|26|25|25|24|23|21|21|22|20|20|36|22|23|24|27|26|27|28|35|31|31|32|33|34|35|36|37|0\n106|106|102|102|101|100|98|98|97|95|94|94|93|93|104|92|91|90|89|88|87|86|84|84|83|82|82|108|109|81|80|78|78|74|73|72|71|70|70|75|76|69|68|66|65|64|63|62|62|61|60|58|58|57|57|111|59|59|60|61|67|63|64|65|66|67|68|69|77|71|72|73|74|75|76|77|79|79|80|81|110|83|85|85|86|87|88|89|90|91|92|105|96|95|96|97|99|99|100|101|103|103|104|105|107|107|108|109|110|111|0\n37|36|36|35|34|33|32|32|28|28|29|27|26|24|24|23|22|21|21|31|22|23|25|25|26|27|30|29|30|31|39|33|34|35|38|37|38|39|0\n8|6|6|7|9|7|8|9|0\n80|79|78|77|75|71|70|70|72|73|74|67|67|66|66|69|65|63|62|60|59|59|58|57|54|53|53|55|51|51|50|49|48|47|46|44|44|43|42|42|64|43|45|45|46|47|48|49|50|52|52|56|54|55|56|57|58|61|60|61|62|63|64|65|81|68|68|69|76|71|72|73|74|75|76|77|78|79|80|81|0\n73|72|70|69|68|67|67|65|65|66|64|62|60|60|59|57|57|56|55|55|63|75|54|53|51|50|50|49|47|47|46|44|44|43|42|41|40|40|77|41|42|43|45|45|46|48|48|49|52|51|52|53|54|76|56|58|58|59|61|61|62|63|64|74|66|71|68|69|70|71|72|73|74|75|76|77|0\n22|21|21|20|19|18|18|17|16|15|14|14|25|15|16|17|24|19|20|23|22|23|24|25|0\n37|35|31|30|29|28|27|26|25|25|32|33|24|23|22|21|20|20|36|21|22|23|24|34|26|27|28|29|30|31|32|33|34|35|36|37|0\n55|52|49|48|47|46|45|45|50|44|43|43|42|39|39|38|38|37|36|34|33|32|31|30|29|29|35|54|30|31|32|33|34|35|36|37|41|40|40|41|42|53|44|51|46|47|48|49|50|51|52|53|54|55|0\n45|42|40|38|38|39|37|36|35|35|34|32|31|31|30|28|27|27|26|24|24|25|44|25|26|29|28|29|30|33|32|33|34|43|36|37|41|39|40|41|42|43|44|45|0\n32|30|29|29|28|27|26|26|25|24|22|21|18|18|19|20|23|19|20|21|22|23|24|25|33|27|28|31|30|31|32|33|0\n32|31|31|29|27|24|24|25|23|23|22|20|19|19|18|18|30|21|20|21|22|28|26|25|26|27|28|29|30|33|32|33|0\n29|27|26|24|24|23|20|19|19|21|18|16|16|17|28|17|18|22|20|21|22|23|25|25|26|27|28|29|0\n42|41|41|43|40|39|38|38|36|35|34|33|32|31|30|29|28|27|26|25|24|24|37|25|26|27|28|29|30|31|32|33|34|35|36|37|45|39|40|44|42|43|44|45|0\n37|35|33|32|31|30|30|29|28|27|25|23|23|24|22|21|20|20|36|21|22|26|24|25|26|27|28|29|34|31|32|33|34|35|36|37|0\n14|13|11|11|10|10|9|9|15|12|12|13|14|15|0\n23|21|16|16|17|15|15|19|14|13|13|22|14|20|18|17|18|19|20|21|22|23|0\n25|25|24|23|23|21|20|19|18|17|16|15|15|22|16|17|18|19|20|21|22|27|24|26|26|27|0\n49|47|47|46|45|44|44|50|51|43|42|41|40|38|38|37|34|33|33|32|31|31|30|29|28|28|53|29|30|36|32|35|34|35|36|37|39|39|40|41|42|43|52|45|46|48|48|49|50|51|52|53|0\n64|63|62|61|60|58|57|57|56|55|53|53|52|51|50|48|47|46|46|45|45|65|44|43|42|40|40|39|37|37|35|35|36|67|36|38|38|39|41|41|42|43|44|66|49|47|48|49|50|51|52|54|54|55|56|59|58|59|60|61|62|63|64|65|66|67|0\n22|21|20|19|18|17|17|16|15|15|14|14|25|24|16|23|18|19|20|21|22|23|24|25|0\n27|24|24|22|21|21|20|18|18|17|16|15|15|26|16|17|19|19|20|23|22|23|25|25|26|27|0\n8|6|6|7|9|7|8|9|0\n27|26|26|28|21|21|20|20|23|17|17|18|16|16|25|19|18|19|24|22|22|23|24|25|29|27|28|29|0\n31|26|26|27|24|23|23|22|21|20|19|19|29|17|17|18|18|30|20|21|22|25|24|25|28|27|28|29|30|31|0\n17|16|16|15|14|13|13|11|11|12|12|19|14|15|18|17|18|19|0\n53|51|50|47|46|44|43|43|41|41|42|48|39|39|38|36|35|34|33|33|32|31|30|29|28|28|52|29|30|31|32|37|34|35|36|37|38|40|40|49|42|45|44|45|46|47|48|49|50|51|52|53|0\n36|35|34|34|32|30|29|28|28|27|26|25|22|22|23|21|20|20|33|21|24|23|24|25|26|27|31|29|30|31|32|33|37|35|36|37|0\n31|31|30|28|28|27|26|25|21|21|20|19|19|23|18|18|33|24|20|22|22|23|24|25|26|27|29|29|30|32|32|33|0\n58|58|59|57|57|51|51|50|49|49|48|47|47|54|46|45|43|42|41|41|40|39|38|37|36|35|34|33|32|32|56|33|34|35|36|37|38|39|40|44|42|43|44|45|46|55|48|53|50|52|52|53|54|55|56|61|60|59|60|61|0\n53|51|51|50|49|48|48|47|45|42|42|43|41|39|39|40|46|55|38|32|31|31|30|30|34|35|36|37|57|33|32|33|34|35|36|37|38|56|40|41|44|43|44|45|46|47|54|49|50|52|52|53|54|55|56|57|0\n10|7|7|8|9|11|8|9|10|11|0\n29|27|24|22|21|19|19|20|23|25|18|17|16|16|28|17|18|26|20|21|22|23|24|25|26|27|28|29|0\n57|56|55|54|54|58|52|52|50|49|47|47|46|45|44|44|41|40|40|42|39|38|37|37|60|34|34|33|32|32|36|33|35|35|36|61|38|39|43|41|42|43|51|45|46|48|48|49|50|51|53|53|59|55|56|57|58|59|60|61|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n42|41|40|35|35|34|34|37|38|31|31|32|30|29|29|28|27|24|24|23|23|26|25|25|26|27|28|43|30|33|32|33|39|36|36|37|38|39|40|41|42|43|0\n31|30|28|26|26|25|23|23|22|21|20|19|18|17|17|29|18|19|20|21|22|24|24|25|27|27|28|29|30|31|0\n37|37|38|36|36|35|34|33|32|32|41|31|30|29|28|26|26|25|24|23|23|43|24|25|27|27|28|29|30|31|42|33|34|35|40|39|38|39|40|41|42|43|0\n15|13|12|11|9|9|10|14|10|11|12|13|14|15|0\n16|15|14|12|12|13|10|10|11|11|17|13|14|15|16|17|0\n42|41|40|40|43|39|38|37|36|36|33|32|31|31|30|28|27|27|26|24|24|25|35|25|26|29|28|29|30|34|32|33|34|35|45|37|38|39|44|41|42|43|44|45|0\n30|30|29|28|25|25|24|22|21|21|20|19|17|17|18|27|18|19|20|23|22|23|24|26|26|27|28|29|31|31|0\n27|27|25|24|24|23|21|20|20|19|18|17|16|16|29|17|18|19|22|21|22|23|26|25|26|28|28|29|0\n44|43|43|41|38|38|36|36|34|34|33|32|32|40|31|28|27|27|26|25|24|24|30|25|26|29|28|29|30|31|42|33|35|35|37|37|39|39|40|41|42|45|44|45|0\n31|29|26|26|27|25|23|21|21|20|20|19|18|17|17|30|18|19|24|22|22|23|24|25|28|27|28|29|30|31|0\n56|54|54|53|52|52|49|49|48|46|46|45|45|51|44|42|42|40|39|38|37|37|36|35|34|32|32|31|31|59|33|33|34|35|36|41|38|39|40|41|43|43|44|58|47|47|48|50|50|51|57|53|55|55|56|57|58|59|0\n49|46|45|45|47|43|42|41|41|40|39|39|38|37|36|36|35|34|31|30|30|29|28|27|27|33|28|29|32|31|32|33|34|35|51|37|38|50|40|44|42|43|44|48|46|47|48|49|50|51|0\n47|45|40|40|39|35|34|33|32|32|36|30|30|29|29|38|42|43|27|26|26|25|25|46|28|27|28|44|31|31|37|33|34|35|36|37|38|39|41|41|42|43|44|45|46|47|0\n41|39|39|38|36|35|34|34|33|33|42|43|32|30|29|28|28|27|25|25|24|24|45|26|26|27|31|29|30|31|32|44|37|35|36|37|38|40|40|41|42|43|44|45|0\n52|50|49|49|48|48|47|46|44|43|42|41|40|39|38|37|36|35|34|33|32|30|29|28|28|31|45|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|53|51|50|51|52|53|0\n36|35|35|33|29|28|27|26|26|30|31|25|24|23|22|20|20|21|34|21|22|23|24|25|32|27|28|29|30|31|32|33|34|37|36|37|0\n28|26|26|25|24|24|23|21|19|18|18|17|16|16|22|17|20|19|20|21|22|23|29|25|27|27|28|29|0\n16|12|12|13|10|10|11|15|17|11|14|13|14|15|16|17|0\n24|24|22|21|19|18|18|17|15|15|14|14|23|16|16|17|20|19|20|21|22|23|25|25|0\n47|41|41|40|39|38|38|37|36|36|44|34|33|33|32|31|29|29|28|27|26|25|25|46|26|27|28|30|30|31|32|35|34|35|45|37|43|39|40|42|42|43|44|45|46|47|0\n28|28|26|23|22|21|21|24|19|19|18|17|16|16|27|17|18|20|20|25|22|23|24|25|26|27|29|29|0\n76|74|74|72|72|71|70|69|69|68|67|63|62|58|58|59|60|61|56|53|53|54|52|52|51|50|50|49|47|46|46|45|44|43|41|41|40|40|66|42|42|43|44|45|48|47|48|49|65|51|57|55|54|55|56|57|64|59|60|61|62|63|64|65|66|67|68|77|70|71|73|73|75|75|76|77|0\n42|41|40|38|38|39|37|35|34|33|33|31|30|27|27|28|26|25|24|23|23|32|24|25|26|29|28|29|30|31|32|36|34|35|36|37|43|39|40|41|42|43|0\n43|40|37|35|35|34|34|38|32|32|31|31|30|29|26|26|27|24|24|23|23|42|25|25|28|27|28|29|30|41|33|33|39|36|36|37|38|39|40|41|42|43|0\n32|30|30|29|28|28|27|25|25|22|22|18|18|19|20|21|24|19|20|21|23|23|24|26|26|27|33|29|31|31|32|33|0\n13|13|14|15|12|12|10|10|11|11|17|16|14|15|16|17|0\n31|31|32|28|26|25|25|24|23|23|22|21|20|18|18|19|30|19|20|21|22|29|24|27|26|27|28|29|30|33|32|33|0\n67|66|66|65|64|64|61|59|59|58|58|62|52|51|51|50|49|48|47|46|45|44|43|43|54|55|42|41|39|38|37|37|36|36|57|40|38|39|40|41|42|56|44|45|46|47|48|49|50|53|52|53|54|55|56|57|63|60|60|61|62|63|69|65|68|67|68|69|0\n20|20|21|18|18|17|16|13|13|14|15|23|14|15|16|17|19|19|22|21|22|23|0\n56|56|53|53|50|49|49|51|46|45|45|47|44|39|36|36|37|35|35|34|33|33|41|42|32|31|30|30|55|31|32|43|34|40|38|37|38|39|40|41|42|43|44|48|46|47|48|52|50|51|52|54|54|55|57|57|0\n16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0\n26|26|24|23|22|22|20|19|18|15|15|16|17|21|16|17|18|19|20|21|25|23|24|25|27|27|0\n52|50|49|48|48|47|44|43|43|42|41|40|38|38|37|37|46|33|33|32|32|35|30|28|28|29|31|29|30|31|36|34|34|35|36|53|39|39|40|41|42|45|44|45|46|47|51|49|50|51|52|53|0\n17|15|14|13|11|11|10|10|16|12|12|13|14|15|16|17|0\n51|49|49|48|47|46|46|52|53|45|44|41|40|39|39|42|38|37|36|35|33|33|32|31|30|29|29|55|30|31|32|34|34|35|36|37|38|43|40|41|42|43|44|45|54|47|48|50|50|51|52|53|54|55|0\n32|31|30|30|26|26|25|24|21|21|22|23|20|19|18|18|29|19|20|28|22|23|24|25|27|27|28|29|33|31|32|33|0\n5|5|6|7|6|7|0\n62|62|60|59|58|58|57|56|55|55|64|53|50|48|48|49|51|46|45|45|43|42|42|41|40|39|37|37|36|35|34|34|54|35|36|38|38|39|40|41|44|43|44|47|46|47|52|49|50|51|52|53|54|65|56|57|61|59|60|61|63|63|64|65|0\n37|36|35|34|33|33|32|32|29|28|27|27|26|25|24|23|21|21|22|31|22|23|24|25|26|30|28|29|30|31|39|38|34|35|36|37|38|39|0\n14|14|11|11|12|10|9|9|10|13|12|13|15|15|0\n51|50|50|49|47|45|45|46|44|43|42|42|41|40|40|38|37|36|35|35|34|33|32|30|30|29|29|55|31|31|32|33|34|39|36|37|38|39|54|41|53|43|44|48|46|47|48|49|52|51|52|53|54|55|0\n23|19|19|20|18|17|15|15|14|13|13|22|14|16|16|17|18|21|20|21|22|23|0\n73|73|72|71|69|69|68|67|66|65|65|63|62|60|58|57|56|55|55|54|53|52|52|51|49|49|48|47|46|45|44|42|42|41|40|39|39|64|40|41|43|43|44|45|46|47|48|50|50|51|61|53|54|59|56|57|58|59|60|61|62|63|64|75|66|67|68|70|70|71|72|74|74|75|0\n8|6|6|7|9|7|8|9|0\n29|27|26|25|24|21|21|20|20|19|18|17|16|16|28|17|18|19|23|22|22|23|24|25|26|27|28|29|0\n27|27|28|25|24|23|22|22|20|19|18|16|16|17|21|17|18|19|20|21|26|23|24|25|26|29|28|29|0\n22|22|21|20|20|19|19|18|16|14|14|15|17|15|16|17|18|25|24|21|23|23|24|25|0\n52|51|50|49|48|47|44|44|45|46|39|39|40|41|38|37|36|35|34|33|32|30|29|29|28|28|43|31|30|31|32|33|34|35|36|37|38|42|40|41|42|43|53|45|46|47|48|49|50|51|52|53|0\n13|12|12|14|10|9|9|11|10|11|15|13|14|15|0\n27|27|26|26|25|22|22|21|21|19|17|17|16|16|20|18|18|19|20|24|23|23|24|25|29|28|28|29|0\n44|44|43|42|41|41|40|40|47|39|35|35|34|33|33|37|31|30|29|28|26|26|27|32|49|27|28|29|30|31|32|38|34|36|36|37|38|39|48|46|42|43|45|45|46|47|48|49|0\n59|59|56|56|57|58|54|53|51|47|47|48|49|50|46|44|44|42|40|40|41|39|38|35|35|34|34|32|32|33|55|33|37|36|36|37|38|39|43|41|42|43|45|45|46|52|48|49|50|51|52|53|54|55|61|57|58|60|60|61|0\n42|41|41|40|38|38|39|44|45|37|35|35|34|32|31|30|30|29|27|27|26|25|25|47|26|28|28|29|33|31|32|33|34|36|36|37|46|39|40|43|42|43|44|45|46|47|0\n23|19|18|17|17|20|16|15|14|13|13|22|14|15|16|21|18|19|20|21|22|23|0\n84|81|79|77|77|76|76|75|74|73|73|82|71|70|69|69|68|67|67|66|64|63|62|61|60|60|58|57|56|53|53|52|51|50|49|47|47|48|46|45|44|44|59|45|46|55|48|49|50|51|52|54|54|55|56|57|58|59|65|61|62|63|64|65|66|85|68|72|70|71|72|83|74|75|80|78|78|79|80|81|82|83|84|85|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n25|24|23|23|22|20|19|18|17|17|16|15|15|27|16|21|18|19|20|21|22|26|24|25|26|27|0\n63|59|58|58|60|55|55|54|54|53|52|51|50|47|47|46|46|45|44|43|42|41|40|39|38|37|35|35|34|33|33|62|34|36|36|37|38|39|40|41|42|43|44|45|49|48|48|49|50|51|52|53|57|56|56|57|61|59|60|61|62|63|0\n31|29|28|28|27|24|23|22|22|25|21|20|20|19|18|18|33|19|32|21|26|23|24|25|26|27|30|29|30|31|32|33|0\n13|13|12|11|11|10|9|9|10|15|12|14|14|15|0\n25|23|22|22|24|21|20|20|18|17|15|15|16|19|16|17|18|19|27|21|26|23|24|25|26|27|0\n19|18|17|16|15|15|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0\n59|57|57|55|54|53|53|51|50|50|49|46|45|45|44|43|42|42|48|60|61|40|39|38|38|37|36|35|33|33|34|63|34|35|36|37|41|39|40|41|62|43|44|47|46|47|48|49|52|51|52|56|54|55|56|58|58|59|60|61|62|63|0\n39|38|36|35|35|34|34|33|32|31|30|28|27|27|29|26|24|23|22|22|25|23|24|25|26|41|28|29|30|31|32|33|40|37|36|37|38|39|40|41|0\n65|63|59|59|58|57|55|55|56|61|54|53|50|50|49|47|47|46|45|44|44|43|41|41|40|39|38|36|36|34|34|35|64|35|37|37|38|39|40|42|42|43|52|45|46|48|48|49|51|51|52|53|54|62|56|57|58|60|60|61|62|63|64|65|0\n45|45|46|44|44|48|42|41|40|36|36|35|34|34|38|33|32|29|29|28|28|27|26|26|43|27|31|30|30|31|32|33|39|35|37|37|38|39|40|41|42|43|49|47|46|47|48|49|0\n41|40|37|37|36|34|33|33|32|30|30|29|28|27|25|24|24|22|22|23|39|23|26|25|26|27|28|29|31|31|32|35|34|35|36|38|38|39|40|41|0\n24|24|22|19|18|17|16|16|20|15|14|14|23|15|21|17|18|19|20|21|22|23|25|25|0\n21|18|18|17|17|20|16|14|14|13|13|23|15|15|16|22|19|19|20|21|22|23|0\n55|54|54|53|52|51|51|50|49|43|42|41|40|40|39|38|38|37|37|46|36|35|33|31|30|30|32|34|48|31|32|33|34|35|36|47|45|39|44|41|42|43|44|45|46|47|48|49|50|57|52|53|56|55|56|57|0\n33|31|30|28|28|26|25|25|23|23|22|20|20|19|18|18|32|19|21|21|22|24|24|27|26|27|29|29|30|31|32|33|0\n24|24|22|19|19|20|18|18|17|16|15|14|14|15|16|17|23|21|20|21|22|23|25|25|0\n62|56|56|55|54|53|53|58|59|52|51|51|49|49|48|48|47|46|44|43|42|40|39|39|38|36|35|35|33|33|34|45|34|37|36|37|38|41|40|41|42|43|44|45|46|47|63|50|50|61|52|60|54|55|57|57|58|59|60|61|62|63|0\n27|26|26|25|24|23|22|21|20|18|18|17|16|16|29|17|19|19|20|21|22|23|24|25|28|27|28|29|0\n7|5|5|6|6|7|0\n74|73|71|70|70|69|68|67|67|66|65|63|62|61|60|55|54|53|53|56|52|51|50|49|48|47|46|46|58|45|44|43|42|41|39|39|40|64|40|41|42|43|44|45|59|47|48|49|50|51|52|57|54|55|56|57|58|59|60|61|62|63|64|65|66|75|68|69|72|71|72|73|74|75|0\n33|32|32|31|30|29|28|28|27|25|24|23|23|21|20|19|19|22|20|21|22|26|24|25|26|27|35|29|30|31|34|33|34|35|0\n43|42|41|39|39|40|38|38|37|35|33|33|29|29|28|28|31|32|27|26|24|24|25|25|26|27|36|30|30|31|32|34|34|35|36|37|45|44|40|41|42|43|44|45|0\n56|55|55|54|53|53|58|59|51|50|49|48|47|47|46|43|43|44|42|40|38|37|36|35|34|34|39|33|32|32|61|33|41|35|36|37|38|39|40|41|42|45|44|45|46|52|48|49|50|51|52|60|54|57|56|57|58|59|60|61|0\n39|37|37|33|33|32|31|30|29|28|26|25|25|24|23|22|21|21|35|36|22|23|24|27|26|27|28|29|30|31|32|34|34|35|36|38|38|39|0\n27|24|20|20|21|22|19|18|18|17|16|15|15|26|16|17|25|19|23|21|22|23|24|25|26|27|0\n37|34|33|32|31|30|29|29|28|27|26|25|24|23|22|21|20|20|36|21|22|23|24|25|26|27|28|35|30|31|32|33|34|35|36|37|0\n75|72|71|70|67|67|66|66|65|63|62|62|61|57|56|56|58|59|55|55|54|53|52|51|49|48|47|46|46|45|44|43|42|41|40|39|39|74|40|41|42|43|44|45|50|47|48|49|50|51|52|53|54|73|60|57|58|59|60|61|64|63|64|65|69|68|68|69|70|71|72|73|74|75|0\n21|21|20|20|18|16|15|15|14|13|13|19|14|17|16|17|18|19|23|22|22|23|0\n57|56|52|52|53|51|49|47|45|45|46|44|42|42|43|50|39|38|37|37|36|35|34|33|32|31|30|30|41|31|32|33|34|35|36|40|38|39|40|41|55|43|44|48|46|47|48|49|50|51|54|53|54|55|56|57|0\n39|38|35|35|34|33|32|32|30|29|28|27|25|24|24|23|21|21|22|31|22|23|26|25|26|27|28|29|30|31|37|33|34|36|36|37|38|39|0\n72|71|70|69|69|68|65|65|64|62|61|60|59|57|57|58|56|55|54|53|51|51|50|49|49|46|45|44|43|43|42|40|40|39|38|38|48|39|41|41|42|47|44|45|46|47|48|67|50|52|52|53|54|55|56|63|58|59|60|61|62|63|64|66|66|67|68|73|70|71|72|73|0\n41|41|40|38|38|37|36|35|30|30|29|29|32|28|28|34|43|26|26|24|24|25|45|25|27|27|44|33|31|31|32|33|34|35|36|37|39|39|40|42|42|43|44|45|0\n56|55|53|52|52|51|50|50|57|49|48|46|46|45|44|43|42|41|38|38|37|37|36|35|34|33|32|31|31|59|32|33|34|35|36|40|39|39|40|41|42|43|44|45|47|47|48|49|58|51|54|53|54|55|56|57|58|59|0\n9|8|7|6|6|7|8|9|0\n45|44|43|42|41|40|39|38|37|37|46|47|35|34|33|33|32|30|30|28|28|27|26|26|49|27|29|29|31|31|32|36|34|35|36|48|38|39|40|41|42|43|44|45|46|47|48|49|0\n19|18|17|16|16|15|14|13|12|12|21|13|14|15|20|17|18|19|20|21|0\n33|32|32|31|30|30|28|25|25|24|24|22|22|21|20|19|19|29|20|21|23|23|27|26|26|27|28|29|35|31|34|33|34|35|0\n63|62|61|60|60|64|59|57|57|56|56|66|55|54|53|53|68|69|52|51|50|49|47|46|44|43|42|41|41|45|40|39|38|37|37|71|38|39|40|48|42|43|44|45|46|47|48|49|50|51|52|70|54|55|67|58|58|59|65|61|62|63|64|65|66|67|68|69|70|71|0\n45|42|41|41|40|39|38|37|36|31|30|30|32|29|29|34|27|26|26|25|24|24|44|25|28|27|28|35|33|31|32|33|34|35|36|37|38|39|40|43|42|43|44|45|0\n48|47|46|46|45|44|43|42|41|40|40|50|51|38|36|36|37|34|34|33|32|30|30|29|28|28|53|29|31|31|32|33|35|35|39|37|38|39|52|41|42|43|44|45|49|47|48|49|50|51|52|53|0\n16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0\n25|25|24|23|23|21|21|22|28|29|18|18|19|17|17|31|20|19|20|30|22|27|24|26|26|27|28|29|30|31|0\n73|71|68|68|69|67|63|62|61|60|59|58|57|56|56|64|65|55|54|52|51|51|50|49|47|46|46|43|42|41|40|39|39|44|38|38|72|45|40|41|42|43|44|45|48|47|48|49|50|53|52|53|54|55|66|57|58|59|60|61|62|63|64|65|66|67|70|69|70|71|72|73|0\n50|49|47|47|46|45|43|43|44|42|39|36|36|35|35|34|33|31|31|30|30|29|28|27|27|41|28|29|40|32|32|33|34|38|37|37|38|39|40|41|42|51|44|45|46|48|48|49|50|51|0\n53|51|50|49|48|46|46|45|44|43|43|42|40|40|38|37|36|35|34|33|32|31|30|29|28|28|39|29|30|31|32|33|34|35|36|37|38|39|41|41|42|52|44|45|47|47|48|49|50|51|52|53|0\n17|17|18|19|14|14|15|13|12|12|21|13|16|15|16|20|18|19|20|21|0\n32|31|31|30|28|28|27|25|24|23|22|21|20|19|18|18|26|19|20|21|22|23|24|25|26|27|29|29|30|33|32|33|0\n52|51|50|47|46|46|48|44|43|42|40|39|39|41|38|38|37|33|33|34|32|32|29|29|28|28|31|30|30|31|36|35|34|35|36|37|53|45|40|41|42|43|44|45|49|47|48|49|50|51|52|53|0\n32|32|31|31|34|35|29|28|28|27|26|25|25|23|22|21|20|20|24|21|22|23|24|37|26|27|30|29|30|36|33|33|34|35|36|37|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0\n23|22|22|21|19|19|20|18|16|16|17|15|15|27|26|17|18|25|20|21|24|23|24|25|26|27|0\n37|31|30|29|28|28|32|33|27|27|35|25|24|23|22|21|20|20|26|21|22|23|24|25|26|36|34|29|30|31|32|33|34|35|36|37|0\n33|32|32|31|31|29|27|27|26|23|23|24|22|21|20|19|19|30|20|21|22|25|24|25|26|28|28|29|30|35|34|33|34|35|0\n34|33|32|32|28|26|26|25|24|24|29|23|21|21|20|19|19|31|20|22|22|23|30|25|27|27|28|29|30|31|35|33|34|35|0\n43|41|40|39|37|36|36|35|33|33|32|31|30|29|28|27|24|24|25|23|23|42|26|25|26|27|28|29|30|31|32|34|34|35|38|37|38|39|40|41|42|43|0\n15|13|11|9|9|10|12|14|10|11|12|13|14|15|0\n36|35|33|32|31|31|30|29|29|28|26|25|25|22|22|21|20|20|24|21|23|23|24|27|26|27|28|37|30|34|32|33|34|35|36|37|0\n53|50|50|49|47|47|46|43|42|40|39|39|38|38|44|37|36|34|34|32|32|31|30|29|28|28|52|29|30|31|33|33|35|35|36|37|45|41|40|41|42|43|44|45|46|48|48|49|51|51|52|53|0\n49|49|48|47|46|46|42|41|41|38|38|37|36|36|35|35|34|33|32|30|29|29|28|27|27|45|28|31|30|31|32|33|34|44|40|37|39|39|40|43|42|43|44|45|51|47|48|50|50|51|0\n45|45|46|44|43|43|48|42|41|40|39|39|50|51|38|37|36|34|33|33|32|31|30|29|28|28|53|29|30|31|32|35|34|35|36|37|38|52|40|41|42|49|44|47|46|47|48|49|50|51|52|53|0\n33|31|24|24|23|20|20|21|22|26|19|19|28|29|18|18|32|30|27|21|22|23|25|25|26|27|28|29|30|31|32|33|0\n79|78|77|76|75|74|73|72|72|71|69|68|67|66|63|63|62|61|61|59|58|58|57|55|55|54|54|70|81|51|51|50|48|48|49|47|46|44|44|43|43|83|45|45|46|47|53|49|50|52|52|53|82|56|56|57|60|59|60|65|62|64|64|65|66|67|68|69|70|71|80|73|74|75|76|77|78|79|80|81|82|83|0\n45|42|42|41|36|36|37|35|34|34|39|32|32|31|30|29|28|27|26|25|24|24|44|25|26|27|28|29|30|31|33|33|40|35|38|37|38|39|40|41|43|43|44|45|0\n31|31|29|29|28|26|26|24|24|21|21|22|23|33|19|19|20|35|20|34|22|23|25|25|27|27|28|30|30|32|32|33|34|35|0\n35|33|32|32|31|30|27|27|26|24|22|22|23|21|20|19|19|29|20|21|25|23|24|25|26|28|28|29|30|31|34|33|34|35|0\n23|21|20|19|19|22|18|17|16|15|15|14|14|25|16|17|18|24|20|21|22|23|24|25|0\n6|5|5|7|6|7|0\n37|36|32|30|30|29|28|28|27|26|25|24|23|23|22|21|20|20|35|21|22|34|24|25|26|27|33|29|31|31|32|33|34|35|36|37|0\n33|32|29|28|28|30|26|25|23|21|21|20|20|19|18|18|27|19|24|22|22|23|24|25|26|27|31|29|30|31|32|33|0\n83|80|80|79|78|77|76|75|74|73|72|71|67|66|65|63|63|62|61|60|60|68|69|59|58|57|56|55|53|53|52|51|50|49|48|46|46|45|44|43|43|82|44|45|47|47|48|49|50|51|52|54|54|55|56|57|58|59|70|61|62|64|64|65|66|67|68|69|70|71|72|73|74|75|76|77|78|79|81|81|82|83|0\n41|39|37|36|36|35|33|33|32|31|30|29|28|25|25|26|24|23|22|22|40|23|24|27|26|27|28|29|30|31|32|34|34|35|38|37|38|39|40|41|0\n35|34|32|31|30|29|28|27|24|24|25|22|22|21|20|19|19|33|20|21|23|23|26|25|26|27|28|29|30|31|32|33|34|35|0\n13|12|11|10|9|8|8|9|10|11|12|13|0\n34|34|33|32|32|29|29|28|27|27|31|24|24|23|22|21|20|20|26|21|22|23|25|25|26|37|28|30|30|31|36|33|35|35|36|37|0\n31|31|32|29|27|26|25|25|24|23|22|21|20|18|18|19|30|19|20|21|22|23|24|28|26|27|28|29|30|33|32|33|0\n53|50|50|51|49|49|48|47|47|44|43|42|42|41|38|38|37|37|35|35|34|32|31|31|30|29|29|46|30|33|32|33|34|36|36|40|39|39|40|41|45|43|44|45|46|55|48|54|52|51|52|53|54|55|0\n36|35|33|32|32|34|31|28|28|27|26|26|23|23|20|20|21|22|25|21|22|24|24|25|30|27|29|29|30|31|37|33|34|35|36|37|0\n13|10|10|11|8|8|9|9|12|11|12|13|0\n41|40|38|37|36|35|31|30|29|29|32|28|26|26|27|25|24|22|22|23|39|23|24|25|34|27|28|33|30|31|32|33|34|35|36|37|38|39|40|41|0\n32|30|30|28|28|27|26|25|25|24|23|20|20|19|18|18|22|19|21|21|22|23|24|33|26|27|29|29|31|31|32|33|0\n23|22|22|21|19|19|18|16|16|15|14|14|25|15|17|17|18|20|20|21|24|23|24|25|0\n13|13|11|11|10|9|9|15|10|12|12|14|14|15|0\n11|9|8|7|7|10|8|9|10|11|0\n15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0\n27|20|19|19|18|17|17|22|16|16|24|15|15|26|25|23|18|21|20|21|22|23|24|25|26|27|0\n16|15|14|14|13|12|12|11|11|19|18|13|17|15|16|17|18|19|0\n42|41|40|39|38|37|36|35|35|34|32|30|29|28|27|26|26|25|23|23|24|33|24|25|31|27|28|29|30|31|32|33|34|43|36|37|38|39|40|41|42|43|0\n49|47|47|48|46|45|44|44|43|41|41|37|37|38|39|36|35|35|52|32|32|31|29|28|28|30|34|29|30|31|33|33|34|53|36|40|38|39|40|42|42|43|51|45|46|50|48|49|50|51|52|53|0\n15|15|13|12|12|11|10|10|17|11|14|13|14|16|16|17|0\n21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0\n26|25|24|23|22|21|21|27|19|19|18|17|16|16|29|17|18|20|20|28|22|23|24|25|26|27|28|29|0\n51|49|45|44|43|43|42|38|38|39|37|37|36|35|35|47|34|33|32|30|30|29|27|27|28|50|28|29|31|31|32|33|34|48|36|41|40|39|40|41|42|46|44|45|46|47|48|49|50|51|0\n24|23|23|22|21|19|18|17|16|15|14|14|20|15|16|17|18|19|20|21|22|25|24|25|0\n33|31|30|29|28|26|25|24|21|21|22|23|20|19|18|18|32|19|20|27|22|23|24|25|26|27|28|29|30|31|32|33|0\n16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0\n33|30|29|28|26|25|25|24|22|22|23|21|20|18|18|19|32|19|20|21|31|23|24|27|26|27|28|29|30|31|32|33|0\n59|59|58|57|57|54|54|53|52|47|46|44|44|45|48|42|41|41|40|39|39|50|38|37|36|34|34|33|32|32|56|33|35|35|36|37|38|51|40|43|42|43|49|45|46|47|48|49|50|51|52|53|55|55|56|61|58|60|60|61|0\n51|51|50|48|47|46|46|45|45|44|38|38|37|36|35|35|40|33|32|31|31|34|30|29|28|28|43|29|30|42|32|33|34|41|36|37|39|39|40|41|42|43|44|53|49|47|48|49|50|52|52|53|0\n33|29|28|28|30|27|25|23|22|22|24|21|20|19|18|18|32|19|20|21|26|23|24|25|26|27|31|29|30|31|32|33|0\n48|47|46|44|44|42|41|40|40|43|39|38|36|35|34|33|29|29|30|31|28|27|26|26|37|27|28|32|30|31|32|33|34|35|36|37|38|39|49|41|42|43|45|45|46|47|48|49|0\n26|25|25|24|24|23|22|20|18|18|19|17|16|16|29|17|21|19|20|21|22|23|28|27|26|27|28|29|0\n37|36|35|31|30|29|28|28|32|27|25|24|24|23|21|21|20|20|34|22|22|23|26|25|26|27|33|29|30|31|32|33|34|35|36|37|0\n54|53|52|50|50|49|46|45|44|44|47|43|42|42|39|39|37|36|36|35|33|32|32|31|30|29|29|41|30|31|34|33|34|35|38|37|38|40|40|41|55|43|48|45|46|47|48|49|51|51|52|53|54|55|0\n36|36|37|35|33|32|32|31|30|30|28|26|25|25|24|23|22|21|21|29|22|23|24|27|26|27|28|29|39|31|34|33|34|35|38|37|38|39|0\n13|10|10|11|12|9|9|15|14|11|12|13|14|15|0\n52|52|51|48|48|47|46|45|44|43|43|39|38|37|36|36|40|35|34|33|32|31|30|29|28|28|42|29|30|31|32|33|34|35|41|37|38|39|40|41|42|50|44|45|46|47|49|49|50|51|53|53|0\n19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0\n86|83|83|84|82|81|80|79|78|77|77|76|74|74|70|70|69|68|67|63|63|62|62|65|61|61|60|59|57|57|54|54|53|52|51|50|50|49|45|45|46|47|48|73|46|47|48|49|56|51|52|53|55|55|56|58|58|59|60|72|66|64|64|65|66|67|68|69|71|71|72|73|75|75|76|87|78|79|80|81|82|85|84|85|86|87|0\n19|18|16|16|13|13|12|11|11|15|12|14|14|15|17|17|18|19|0\n6|6|7|8|9|7|8|9|0\n21|20|19|19|18|16|15|15|14|13|13|23|14|17|16|17|18|22|20|21|22|23|0\n36|34|33|33|35|32|31|29|27|27|26|25|24|23|22|20|20|21|30|21|22|23|24|25|26|28|28|29|30|31|32|37|34|35|36|37|0\n45|42|41|40|39|39|38|37|36|35|33|33|34|30|30|29|28|27|26|25|24|24|32|25|26|27|28|29|31|31|32|44|34|35|36|37|38|43|40|41|42|43|44|45|0\n21|19|18|16|16|15|13|13|12|12|20|14|14|15|17|17|18|19|20|21|0\n77|76|75|74|74|78|73|72|70|69|69|68|66|65|64|64|63|62|61|60|59|58|57|57|80|55|53|53|52|51|49|48|46|46|45|45|44|43|42|42|56|43|44|50|47|47|48|49|50|51|52|54|54|55|56|81|58|59|60|61|62|63|67|65|66|67|68|71|70|71|72|73|79|75|76|77|78|79|80|81|0\n66|64|63|63|62|60|60|59|58|58|52|52|53|50|49|46|46|47|48|45|45|55|43|40|40|41|42|39|38|37|36|35|35|57|36|37|38|39|44|41|42|43|44|56|51|47|48|49|50|51|54|53|54|55|56|57|67|59|61|61|62|65|64|65|66|67|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n46|45|45|44|41|40|40|39|39|37|34|34|35|32|31|30|29|29|28|27|26|25|25|38|26|27|28|33|30|31|32|33|36|35|36|37|38|43|42|41|42|43|44|47|46|47|0\n18|18|19|17|17|15|14|13|12|12|16|13|14|15|16|21|20|19|20|21|0\n48|46|46|43|43|42|41|40|40|39|39|38|37|35|34|33|32|31|29|28|28|27|26|26|36|27|30|29|30|31|32|33|34|35|36|37|38|49|45|41|42|44|44|45|47|47|48|49|0\n28|27|26|25|24|24|23|21|20|20|18|16|16|17|19|17|18|19|22|21|22|23|29|25|26|27|28|29|0\n11|8|8|7|7|10|9|9|10|11|0\n74|72|69|69|68|66|66|67|65|64|63|62|61|61|60|58|58|57|56|55|54|53|52|51|51|50|46|46|47|45|45|43|42|39|39|40|41|44|40|41|42|43|44|49|48|47|48|49|50|75|52|53|54|55|56|57|59|59|60|73|62|63|64|65|71|67|68|70|70|71|72|73|74|75|0\n8|7|6|6|9|7|8|9|0\n16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0\n28|27|23|23|24|25|22|22|29|21|19|19|18|17|17|31|18|20|20|21|30|26|24|25|26|27|28|29|30|31|0\n67|66|65|64|63|61|61|60|59|56|56|57|55|54|54|53|51|49|48|48|47|46|46|52|69|44|44|42|41|39|39|38|37|37|43|71|38|40|40|41|42|43|45|45|70|47|50|49|50|51|52|53|68|55|58|57|58|59|60|62|62|63|64|65|66|67|68|69|70|71|0\n47|45|44|43|42|42|41|40|40|39|38|37|36|36|49|33|32|32|31|30|29|29|27|27|28|51|28|35|30|31|34|33|34|35|50|37|38|39|48|41|46|43|44|45|46|47|48|49|50|51|0\n68|67|66|64|64|63|61|61|60|59|58|57|54|54|55|53|51|51|49|48|48|47|44|43|43|45|42|41|40|40|38|38|36|36|37|37|39|39|69|41|42|46|44|45|46|47|50|49|50|52|52|53|56|55|56|57|58|59|60|62|62|63|65|65|66|67|68|69|0\n11|11|12|9|8|8|10|9|10|13|12|13|0\n40|38|38|37|36|35|35|33|33|32|30|30|29|27|25|24|24|23|22|22|28|23|26|25|26|27|28|29|31|31|32|34|34|41|36|37|39|39|40|41|0\n66|65|63|62|62|61|54|54|55|53|52|51|50|50|57|49|48|47|47|59|46|46|45|44|43|40|40|39|38|37|36|35|35|42|36|37|38|39|41|41|42|43|44|45|67|60|48|49|58|51|52|53|56|55|56|57|58|59|60|61|64|63|64|65|66|67|0\n33|30|29|29|31|26|26|27|22|22|20|20|19|18|18|24|25|19|21|21|23|23|24|25|28|27|28|32|30|31|32|33|0\n14|13|12|11|11|9|9|10|10|15|12|13|14|15|0\n47|42|41|41|40|40|44|38|36|35|35|37|34|31|30|29|29|32|28|26|25|25|27|46|26|27|28|33|30|31|32|33|34|39|36|37|38|39|45|43|42|43|44|45|46|47|0\n29|28|26|25|24|20|19|19|21|18|17|16|16|23|27|17|18|22|20|21|22|23|24|25|26|27|28|29|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n29|27|26|24|22|22|21|19|19|20|18|17|16|16|28|17|18|25|20|21|23|23|24|25|26|27|28|29|0\n50|49|48|46|44|44|45|43|43|42|34|33|33|32|32|36|31|31|38|39|30|30|28|27|27|29|28|29|41|40|37|35|34|35|36|37|38|39|40|41|42|51|47|45|46|47|48|49|50|51|0\n50|50|51|49|48|48|47|45|43|43|41|41|40|40|38|37|35|34|32|32|31|30|29|29|28|28|39|36|30|31|33|33|34|35|36|37|38|39|46|42|42|44|44|45|46|47|53|49|52|51|52|53|0\n11|7|7|8|9|10|8|9|10|11|0\n34|33|32|31|31|29|28|26|25|25|24|23|21|21|20|19|19|30|20|22|22|23|24|27|26|27|28|29|30|35|32|33|34|35|0\n49|49|48|45|44|43|42|41|41|46|39|39|38|38|37|35|33|32|32|31|30|29|28|27|27|36|28|29|30|31|34|33|34|35|36|37|51|40|40|47|42|43|44|45|46|47|48|50|50|51|0\n23|21|18|18|17|16|16|15|14|13|13|22|14|15|20|17|19|19|20|21|22|23|0\n36|36|33|33|30|28|27|27|26|25|25|31|24|23|22|21|20|20|35|21|22|23|24|32|26|29|28|29|30|31|32|34|34|35|37|37|0\n58|58|57|55|55|56|52|51|51|53|49|49|50|48|47|45|44|42|42|41|40|38|38|37|36|35|34|33|32|32|46|33|34|35|36|37|39|39|40|41|43|43|44|45|46|47|48|61|50|54|52|53|54|60|56|57|59|59|60|61|0\n20|18|17|17|19|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0\n46|46|45|42|41|41|40|36|36|37|35|34|34|39|32|30|29|28|28|27|25|25|26|33|26|27|31|29|30|31|32|33|44|35|38|37|38|39|40|43|42|43|44|45|47|47|0\n22|21|20|20|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0\n39|36|33|31|30|30|32|34|28|27|27|29|26|25|24|23|21|21|22|38|22|23|24|25|26|37|28|29|35|31|32|33|34|35|36|37|38|39|0\n12|12|13|11|10|9|9|15|10|11|14|13|14|15|0\n44|43|43|42|41|40|39|37|37|38|46|47|35|35|33|33|32|30|29|29|28|26|26|27|49|27|28|31|30|31|32|34|34|36|36|48|38|39|40|41|42|45|44|45|46|47|48|49|0\n52|51|51|49|47|46|46|45|43|42|42|41|40|38|38|37|36|35|33|32|32|31|29|29|28|28|50|30|30|31|34|33|34|35|36|37|39|39|40|41|44|43|44|45|48|47|48|49|50|53|52|53|0\n56|56|54|52|51|51|50|48|47|46|46|45|43|43|42|40|40|39|38|36|35|35|34|33|32|31|30|30|55|31|32|33|34|37|36|37|38|39|41|41|42|44|44|45|49|47|48|49|50|53|52|53|54|55|57|57|0\n40|39|37|37|38|36|34|34|33|32|32|42|31|30|28|28|27|25|25|24|24|44|45|26|26|27|29|29|30|31|43|33|35|35|36|41|38|39|40|41|42|43|44|45|0\n25|22|21|20|20|19|18|17|16|15|14|14|24|15|16|17|18|19|23|21|22|23|24|25|0\n19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0\n11|9|8|7|7|10|8|9|10|11|0\n18|17|17|16|14|14|12|12|13|20|21|13|15|15|16|19|18|19|20|21|0\n9|8|6|6|7|7|8|9|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n33|32|31|28|27|24|23|23|25|21|21|19|19|18|18|29|30|20|20|22|22|26|24|25|26|27|28|29|30|31|32|33|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n51|50|50|49|47|46|46|45|42|42|43|41|41|53|40|39|38|37|36|35|33|33|32|30|30|29|29|55|31|31|32|34|34|35|36|37|38|39|40|54|44|43|44|45|48|47|48|49|52|51|52|53|54|55|0\n44|43|41|40|40|39|37|37|36|35|34|32|32|31|30|30|45|28|27|27|26|25|25|47|26|29|28|29|46|31|33|33|34|35|36|38|38|39|42|41|42|43|44|45|46|47|0\n51|51|50|49|48|48|47|44|43|43|45|46|54|55|42|41|39|37|37|38|35|34|34|33|32|31|30|30|57|31|32|33|36|35|36|40|38|39|40|41|42|56|44|45|46|47|53|49|50|52|52|53|54|55|56|57|0\n88|88|89|90|86|86|84|84|85|92|93|83|79|77|77|76|75|74|74|80|73|71|70|69|69|72|65|64|64|66|63|62|61|60|59|59|58|57|56|55|54|53|52|51|50|49|49|95|50|51|52|53|54|55|56|57|58|68|60|61|62|63|67|65|66|67|68|82|70|71|72|73|81|75|76|78|78|79|80|81|82|83|94|85|87|87|91|89|90|91|92|93|94|95|0\n27|25|23|23|22|20|20|19|18|17|16|15|15|26|16|17|18|19|21|21|22|24|24|25|26|27|0\n21|18|18|19|20|17|16|16|14|13|13|15|14|15|23|17|22|19|20|21|22|23|0\n39|39|38|37|36|36|34|33|31|30|29|29|28|26|25|25|24|22|22|23|35|23|24|27|26|27|28|32|30|31|32|33|34|35|41|37|38|40|40|41|0\n29|29|28|27|27|25|24|22|22|21|20|19|18|17|17|26|18|19|20|21|23|23|24|25|26|31|28|30|30|31|0\n41|36|35|34|34|37|38|32|29|26|26|27|25|25|30|31|24|22|22|23|40|23|24|33|28|27|28|29|30|31|32|33|39|35|36|37|38|39|40|41|0\n53|53|52|50|50|49|47|47|46|44|43|42|42|41|41|39|38|37|36|35|34|32|32|31|30|29|29|40|30|31|33|33|34|35|36|37|38|39|40|55|45|43|44|45|46|48|48|49|51|51|52|54|54|55|0\n12|12|13|14|15|11|10|10|17|11|16|13|14|15|16|17|0\n18|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|19|19|0\n38|34|33|32|32|35|36|37|29|28|26|25|25|24|24|23|22|21|21|31|22|23|30|27|26|27|28|29|30|31|39|33|34|35|36|37|38|39|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n42|42|41|40|39|37|34|33|33|32|32|31|30|29|28|27|25|24|24|23|23|38|26|25|26|27|28|29|30|31|36|35|34|35|36|37|38|39|40|41|43|43|0\n37|37|36|35|35|34|33|31|29|26|26|27|28|25|23|23|22|21|21|32|22|24|24|25|30|27|28|29|30|31|32|33|34|39|36|38|38|39|0\n37|33|33|34|31|30|29|28|27|27|26|21|21|22|23|24|20|20|36|25|22|23|24|25|26|32|28|29|30|31|32|35|34|35|36|37|0\n19|16|13|13|12|12|15|11|11|18|17|14|14|15|16|17|18|19|0\n61|61|54|54|55|53|53|52|49|49|48|47|47|46|44|43|42|42|45|58|59|41|41|63|40|39|38|37|36|35|34|34|65|35|36|37|38|39|40|64|60|43|44|45|46|51|48|50|50|51|52|57|56|55|56|57|58|59|60|62|62|63|64|65|0\n70|69|69|63|62|61|60|57|57|58|56|53|52|52|54|51|50|50|64|47|47|46|46|45|43|43|44|66|42|40|39|38|38|37|37|68|41|39|40|41|42|67|44|45|49|48|48|49|65|51|55|53|54|55|56|59|58|59|60|61|62|63|64|65|66|67|68|71|70|71|0\n33|31|29|29|28|26|26|25|24|23|22|21|20|19|18|18|32|19|20|21|22|23|24|25|27|27|28|30|30|31|32|33|0\n55|53|51|50|50|49|48|46|45|44|41|40|40|42|38|38|37|36|35|32|31|30|30|33|29|29|47|54|34|31|32|33|34|35|36|37|39|39|43|41|42|43|44|45|46|47|48|49|52|51|52|53|54|55|0\n50|49|48|47|47|46|45|43|42|38|37|36|35|34|34|39|33|33|30|30|31|29|28|27|27|44|28|29|32|31|32|41|40|35|36|37|38|39|40|41|42|43|44|45|46|51|48|49|50|51|0\n43|41|41|40|39|39|44|45|36|36|33|33|32|32|35|31|29|28|27|26|25|25|30|47|26|27|28|29|30|31|38|34|34|35|37|37|38|46|40|42|42|43|44|45|46|47|0\n39|39|38|38|35|35|34|30|30|29|29|32|28|26|26|25|24|23|22|22|37|23|24|25|27|27|28|33|31|31|32|33|34|36|36|37|41|40|40|41|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n46|43|43|44|45|42|40|39|39|38|37|37|35|34|33|32|32|31|28|27|27|29|26|26|49|30|28|29|30|31|36|33|34|35|36|48|38|41|40|41|42|47|44|45|46|47|48|49|0\n41|41|40|39|38|37|36|35|34|33|33|29|29|30|28|25|25|26|24|23|23|32|24|27|26|27|28|31|30|31|32|43|34|35|36|37|38|39|40|42|42|43|0\n48|47|47|49|44|43|43|45|42|41|39|39|38|37|37|36|34|34|35|33|32|31|29|29|28|28|53|30|30|31|32|33|52|35|36|51|38|40|40|41|42|46|44|45|46|50|48|49|50|51|52|53|0\n43|43|42|42|41|39|39|38|37|36|36|46|47|35|34|32|32|31|30|29|28|27|26|26|49|27|28|29|30|31|33|33|34|35|48|37|38|40|40|41|45|44|44|45|46|47|48|49|0\n44|42|42|41|40|39|38|37|36|36|35|33|33|31|29|28|27|27|26|24|24|25|32|25|26|30|28|29|30|31|32|34|34|35|45|37|38|39|40|41|43|43|44|45|0\n62|61|58|57|56|55|55|59|54|53|52|51|51|50|49|48|48|64|65|45|45|44|43|43|42|38|38|39|40|37|36|35|35|67|36|37|41|39|40|41|42|47|44|46|46|47|66|49|50|63|52|53|54|60|56|57|58|59|60|61|62|63|64|65|66|67|0\n43|41|39|38|36|36|35|33|33|32|31|30|30|29|28|27|24|24|25|23|23|42|26|25|26|27|28|29|40|31|32|34|34|35|37|37|38|39|40|41|42|43|0\n35|34|33|31|30|29|28|26|24|23|23|25|22|20|20|19|19|32|21|21|22|27|24|25|26|27|28|29|30|31|32|33|34|35|0\n35|33|32|31|30|29|28|27|26|22|22|23|21|19|19|20|25|34|20|21|24|23|24|25|26|27|28|29|30|31|32|33|34|35|0\n48|47|46|44|44|43|42|41|40|39|38|37|37|49|36|35|34|33|32|30|29|29|28|27|27|51|28|31|30|31|32|33|34|35|36|50|38|39|40|41|42|43|45|45|46|47|48|49|50|51|0\n45|42|42|40|40|39|38|37|36|34|33|32|31|31|30|28|27|26|26|25|24|24|44|25|29|27|28|29|30|35|32|33|34|35|36|37|38|39|41|41|43|43|44|45|0\n48|47|46|46|44|42|41|41|40|37|37|38|34|33|32|32|35|31|29|29|28|27|26|26|45|27|28|30|30|31|36|33|34|35|36|39|38|39|40|43|42|43|44|45|49|47|48|49|0\n49|43|43|42|41|40|38|38|37|36|35|35|45|46|34|33|31|31|30|29|28|27|26|26|48|27|28|29|30|32|32|33|34|47|36|37|39|39|40|41|42|44|44|45|46|47|48|49|0\n50|49|47|47|48|46|45|43|38|38|37|36|35|34|34|40|41|32|31|31|30|29|28|27|27|44|28|29|30|33|32|33|42|35|36|37|39|39|40|41|42|43|44|45|46|51|48|49|50|51|0\n36|36|33|33|32|29|28|28|30|27|26|24|24|23|22|21|20|20|35|21|22|23|25|25|26|27|31|29|30|31|32|34|34|35|37|37|0\n30|29|28|28|27|25|25|23|22|20|19|19|18|17|17|24|18|21|20|21|22|23|24|26|26|27|31|29|30|31|0\n44|44|40|38|37|37|39|41|36|34|34|33|31|30|29|28|26|26|27|25|24|24|43|25|32|27|28|29|30|31|32|33|35|35|36|42|38|39|40|41|42|43|45|45|0\n8|8|6|6|7|7|9|9|0\n23|21|20|18|18|17|15|15|14|13|13|22|14|16|16|17|19|19|20|21|22|23|0\n44|43|42|41|38|38|39|37|36|34|33|33|32|32|31|29|29|27|26|25|24|24|28|25|26|27|28|30|30|31|45|35|34|35|36|37|40|39|40|41|42|43|44|45|0\n57|55|54|53|53|52|51|49|48|48|45|44|44|42|42|43|47|58|59|40|39|39|38|37|35|34|34|32|32|33|61|33|36|35|36|37|38|41|40|41|60|43|46|45|46|47|50|49|50|51|52|56|54|55|56|57|58|59|60|61|0\n14|12|12|11|9|9|10|15|10|11|13|13|14|15|0\n58|57|56|56|55|53|53|52|52|60|61|50|50|49|46|46|47|44|44|41|41|42|39|38|38|36|35|35|34|33|33|63|34|37|36|37|40|39|40|43|42|43|45|45|48|47|48|49|51|51|62|54|54|55|59|57|58|59|60|61|62|63|0\n59|57|56|55|55|54|52|49|49|48|47|46|45|45|43|42|42|41|39|39|38|36|35|34|34|33|31|31|32|53|32|33|37|35|36|37|38|40|40|41|44|43|44|51|46|47|48|50|50|51|52|53|54|58|56|57|58|59|0\n26|25|24|24|22|20|20|17|17|18|16|15|15|23|16|19|18|19|21|21|22|23|27|25|26|27|0\n31|31|29|29|28|28|33|27|26|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|26|27|34|30|30|32|32|33|34|35|0\n40|40|38|37|36|34|33|33|32|30|29|29|28|27|26|25|24|23|22|22|39|23|24|25|26|27|28|31|30|31|32|35|34|35|36|37|38|39|41|41|0\n55|55|54|52|49|49|48|47|46|44|43|40|39|39|38|37|36|35|35|42|45|51|34|33|32|31|30|30|57|31|32|33|34|53|36|37|38|41|40|41|42|43|44|45|46|47|48|50|50|51|52|53|54|56|56|57|0\n59|58|52|52|53|51|51|55|56|50|48|48|43|42|41|41|44|45|39|38|38|37|35|34|34|33|32|31|31|47|32|33|36|35|36|37|40|39|40|46|42|43|44|45|46|47|49|49|50|57|54|53|54|55|56|57|58|59|0\n42|42|41|38|38|39|37|36|36|44|45|33|32|31|30|30|29|29|27|27|26|25|25|47|26|28|28|35|34|31|32|33|34|35|46|37|40|39|40|41|43|43|44|45|46|47|0\n56|55|55|53|51|51|50|43|41|41|42|40|40|45|39|38|37|36|36|47|48|34|33|33|32|31|30|30|54|31|32|35|34|35|49|37|38|39|46|44|42|43|44|45|46|47|48|49|50|52|52|53|54|57|56|57|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n29|27|24|23|22|21|20|19|19|25|18|16|16|17|28|17|18|26|20|21|22|23|24|25|26|27|28|29|0\n18|16|15|15|14|14|12|11|11|13|12|13|19|17|16|17|18|19|0\n26|26|25|24|23|22|22|21|20|17|17|18|16|16|29|19|18|19|20|21|28|23|24|25|27|27|28|29|0\n34|33|31|31|32|35|36|28|28|27|25|25|26|24|23|22|21|20|20|21|22|23|24|30|26|27|29|29|30|37|32|33|34|35|36|37|0\n6|6|7|8|9|7|8|9|0\n43|39|39|36|35|35|34|33|32|32|31|29|29|28|28|41|26|25|23|23|24|27|24|25|26|27|42|30|30|31|38|33|34|37|36|37|38|40|40|41|42|43|0\n68|67|65|64|64|63|62|61|58|57|57|56|54|52|52|51|50|49|48|48|55|47|46|43|43|42|42|41|39|39|40|37|36|36|38|37|38|69|40|41|45|44|44|45|46|47|60|49|50|51|53|53|54|55|56|59|58|59|60|61|62|63|66|65|66|67|68|69|0\n47|46|46|45|44|44|43|40|40|39|35|34|33|33|32|32|37|30|30|29|28|27|26|26|42|27|28|29|31|31|38|36|34|35|36|37|38|39|41|41|42|43|49|45|48|47|48|49|0\n50|48|47|46|45|44|44|43|41|40|40|39|38|37|37|36|34|34|32|30|28|28|29|27|27|33|31|29|30|31|32|33|35|35|36|51|38|39|42|41|42|43|49|45|46|47|48|49|50|51|0\n14|14|12|11|9|9|10|13|10|11|12|13|15|15|0\n46|45|45|43|42|40|40|39|37|37|36|34|33|32|32|31|29|28|28|27|25|25|26|44|26|27|30|29|30|31|35|33|34|35|36|38|38|39|41|41|42|43|44|47|46|47|0\n20|20|16|16|17|15|14|12|12|13|19|13|14|15|18|17|18|19|21|21|0\n46|45|42|41|41|43|38|37|36|36|39|35|34|34|47|33|31|28|28|29|27|27|26|26|49|32|30|29|30|31|32|33|48|35|40|37|38|39|40|44|42|43|44|45|46|47|48|49|0\n24|23|23|25|26|21|21|20|18|18|17|15|15|16|16|17|19|19|20|22|22|27|24|25|26|27|0\n7|7|6|6|9|8|8|9|0\n38|37|35|34|34|33|32|31|31|39|30|29|28|27|27|41|26|25|24|23|23|43|24|25|26|42|28|29|30|40|32|33|36|35|36|37|38|39|40|41|42|43|0\n9|7|6|6|8|7|8|9|0\n32|31|30|30|28|28|26|24|24|23|22|20|18|18|19|21|27|19|20|21|22|23|25|25|26|27|29|29|33|31|32|33|0\n45|44|44|43|42|41|41|39|35|35|36|29|29|30|27|27|28|32|33|25|25|26|38|40|26|34|28|31|30|31|32|33|34|37|36|37|38|39|40|47|42|43|46|45|46|47|0\n45|45|44|43|43|42|41|41|48|49|40|39|37|37|36|35|34|33|32|30|29|29|28|27|27|51|28|31|30|31|32|33|34|35|36|38|38|39|40|50|42|47|44|46|46|47|48|49|50|51|0\n44|44|42|41|40|39|38|34|34|33|32|30|30|29|29|36|27|26|26|25|24|24|43|25|28|27|28|37|31|31|32|33|35|35|36|37|38|39|40|41|42|43|45|45|0\n42|41|40|35|35|36|37|38|39|33|32|30|29|29|28|26|26|25|24|23|23|34|24|25|27|27|28|31|30|31|32|33|34|43|36|37|38|39|40|41|42|43|0\n58|58|56|55|55|53|52|52|51|49|49|48|46|46|47|60|61|44|44|43|42|41|40|39|38|37|36|35|33|33|34|63|34|35|36|37|38|39|40|41|42|43|45|45|62|47|48|50|50|51|54|53|54|57|56|57|59|59|60|61|62|63|0\n24|23|22|21|20|18|18|19|16|15|14|14|17|15|16|17|25|19|20|21|22|23|24|25|0\n37|37|38|39|35|33|32|32|31|30|29|29|28|27|25|25|24|23|22|22|41|23|24|26|26|27|28|36|30|31|34|33|34|35|36|40|38|39|40|41|0\n64|62|62|61|59|58|58|57|56|54|53|53|52|51|50|50|49|47|46|46|44|41|39|39|38|37|37|42|36|34|34|35|45|35|36|43|38|40|40|41|42|43|44|45|48|47|48|49|65|51|52|55|54|55|56|57|60|59|60|61|63|63|64|65|0\n76|75|73|72|71|70|69|69|74|67|65|63|63|62|62|61|58|58|57|55|55|54|52|51|51|50|49|48|48|47|45|43|43|44|42|41|40|40|68|41|42|46|44|45|46|47|60|49|50|53|52|53|54|56|56|57|59|59|60|61|66|64|64|65|66|67|68|77|70|71|72|73|74|75|76|77|0\n32|30|30|28|28|27|26|25|24|24|23|21|21|19|18|18|20|19|20|22|22|23|33|25|26|27|29|29|31|31|32|33|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n50|49|46|46|47|48|45|44|43|42|37|37|36|36|39|40|35|35|52|53|34|33|31|31|30|29|29|55|30|32|32|33|34|54|41|38|38|39|40|41|42|43|44|45|51|47|48|49|50|51|52|53|54|55|0\n32|32|30|29|25|25|24|22|22|23|27|21|20|19|18|18|31|19|20|21|28|23|24|26|26|27|28|29|30|31|33|33|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n16|15|13|13|14|12|10|10|11|11|12|17|14|15|16|17|0\n35|33|32|30|30|28|25|24|24|26|27|22|22|21|20|19|19|34|20|21|23|23|29|25|26|27|28|29|31|31|32|33|34|35|0\n23|22|20|18|18|17|16|15|14|13|13|21|14|15|16|17|19|19|20|21|22|23|0\n18|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|19|19|0\n73|70|70|71|68|68|69|74|75|67|66|63|62|61|60|58|58|59|64|57|56|53|53|51|51|50|49|49|48|46|45|45|44|42|41|41|40|40|77|43|42|43|44|47|46|47|48|55|50|52|52|54|54|55|56|57|65|59|60|61|62|63|64|65|66|67|76|69|72|71|72|73|74|75|76|77|0\n16|16|15|13|13|14|12|12|11|11|19|18|14|15|17|17|18|19|0\n54|53|53|50|50|48|47|47|46|44|44|43|41|40|40|39|37|37|36|35|33|33|32|31|30|29|29|52|30|31|32|34|34|35|36|38|38|39|42|41|42|43|45|45|46|49|48|49|51|51|52|55|54|55|0\n34|34|33|31|30|30|29|28|28|36|37|27|26|25|24|22|22|21|21|39|23|23|24|25|26|27|38|29|32|31|32|33|35|35|36|37|38|39|0\n27|26|26|25|24|23|22|22|20|19|18|17|16|16|21|17|18|19|20|21|29|23|24|25|28|27|28|29|0\n39|37|36|35|30|28|28|29|27|26|26|32|33|24|23|23|22|21|21|38|22|25|24|25|34|27|31|29|30|31|32|33|34|35|36|37|38|39|0\n24|24|22|22|20|18|17|17|16|15|14|14|21|15|16|19|18|19|20|21|23|23|25|25|0\n54|52|51|50|50|49|49|55|48|46|46|45|43|42|41|40|39|38|38|36|36|35|31|31|32|33|30|30|57|34|32|33|34|35|37|37|44|39|40|41|42|43|44|45|47|47|48|56|53|51|52|53|54|55|56|57|0\n24|24|25|23|19|19|20|21|18|18|27|17|16|16|29|17|28|22|20|21|22|23|26|25|26|27|28|29|0\n21|19|18|16|16|14|14|13|12|12|20|13|15|15|17|17|18|19|20|21|0\n34|32|31|30|30|33|29|26|26|27|23|23|22|21|20|19|19|25|20|21|22|24|24|25|28|27|28|29|35|31|32|33|34|35|0\n36|35|35|34|33|29|28|27|27|30|26|25|24|23|22|20|20|21|32|21|22|23|24|25|26|31|28|29|30|31|32|33|34|37|36|37|0\n50|49|48|46|45|45|47|43|42|39|37|37|36|36|40|35|34|33|32|31|29|29|28|27|27|44|28|30|30|31|32|33|34|35|41|38|38|39|40|41|42|43|44|51|46|47|48|49|50|51|0\n30|30|31|32|33|28|28|27|26|25|21|21|22|20|20|19|19|35|24|23|22|23|24|25|26|27|29|29|34|31|32|33|34|35|0\n27|26|26|28|24|21|20|19|19|18|17|17|16|16|25|23|18|22|20|21|22|23|24|25|29|27|28|29|0\n40|38|38|39|36|35|34|32|32|31|28|26|26|27|29|25|24|22|22|23|37|23|24|25|30|27|28|29|30|31|33|33|34|35|36|37|41|39|40|41|0\n28|27|27|26|25|23|23|24|22|22|20|18|18|17|17|21|19|19|20|21|31|30|24|25|26|29|28|29|30|31|0\n66|65|63|62|62|61|61|67|60|54|53|52|52|51|50|49|49|56|48|46|46|47|58|44|42|41|41|40|39|39|38|37|36|36|69|37|38|45|40|43|42|43|44|45|59|47|48|57|50|51|55|53|54|55|56|57|58|59|60|68|64|63|64|65|66|67|68|69|0\n47|46|46|45|44|44|42|38|38|37|36|35|35|40|33|31|31|32|30|29|28|26|26|27|43|27|28|29|30|34|32|33|34|41|36|37|39|39|40|41|42|43|49|45|48|47|48|49|0\n27|25|23|23|24|22|22|21|19|18|18|17|16|16|29|17|20|19|20|21|28|26|24|25|26|27|28|29|0\n55|53|53|52|51|50|50|56|57|49|48|47|46|42|42|43|41|41|40|39|36|36|37|34|33|33|32|31|31|59|32|35|34|35|38|37|38|39|40|45|44|43|44|45|46|47|48|49|58|51|52|54|54|55|56|57|58|59|0\n26|26|25|23|23|22|21|21|28|29|19|19|17|17|18|31|18|20|20|30|22|24|24|25|27|27|28|29|30|31|0\n42|41|41|39|38|36|35|35|34|33|31|30|29|29|28|27|26|24|24|23|23|40|25|25|26|27|28|32|30|31|32|33|34|37|36|37|38|39|40|43|42|43|0\n33|29|28|28|27|27|31|26|26|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|34|32|30|29|30|31|32|33|34|35|0\n52|51|50|49|47|47|48|46|45|44|41|41|42|43|54|55|39|37|37|36|35|35|34|33|31|31|30|30|57|32|32|33|34|40|36|38|38|39|40|56|42|43|44|45|46|53|48|49|50|51|52|53|54|55|56|57|0\n24|23|22|21|20|20|25|19|18|17|16|15|15|27|16|17|18|19|26|21|22|23|24|25|26|27|0\n43|42|42|41|36|36|37|38|34|34|33|33|40|32|29|29|28|26|26|25|24|24|31|25|27|27|28|30|30|31|32|45|35|35|39|37|38|39|40|41|44|43|44|45|0\n60|59|57|56|56|55|55|54|52|51|51|49|48|47|46|45|44|42|42|41|39|39|38|36|35|35|34|32|32|33|50|33|34|37|36|37|38|40|40|41|43|43|44|45|46|47|48|49|50|53|52|53|54|61|58|57|58|59|60|61|0\n80|79|79|78|77|75|74|74|73|71|71|70|69|68|67|66|65|65|64|63|62|62|83|60|59|59|58|56|55|54|53|52|51|50|50|49|46|45|45|44|44|48|85|47|46|47|48|49|57|51|52|53|54|55|56|57|58|61|60|61|84|63|64|82|66|67|68|69|70|72|72|73|76|75|76|77|78|81|80|81|82|83|84|85|0\n34|33|33|31|31|30|30|36|37|29|28|27|26|25|23|23|22|21|21|39|22|24|24|25|26|27|28|29|38|32|32|35|34|35|36|37|38|39|0\n41|40|39|38|37|36|35|35|42|43|33|31|31|32|30|29|26|26|27|25|24|24|45|25|28|27|28|29|30|34|32|33|34|44|36|37|38|39|40|41|42|43|44|45|0\n37|36|35|34|34|33|31|30|29|29|28|25|23|23|24|22|22|27|21|21|39|26|24|25|26|27|28|32|30|31|32|33|38|35|36|37|38|39|0\n13|12|11|10|10|9|9|15|14|11|12|13|14|15|0\n60|59|59|57|55|55|54|53|49|48|47|44|44|45|43|42|40|40|39|39|50|51|38|37|36|34|33|33|32|32|58|35|34|35|36|37|38|52|41|41|42|43|46|45|46|47|48|49|50|51|52|53|54|56|56|57|58|61|60|61|0\n60|60|58|56|55|54|54|53|52|51|49|49|47|47|46|45|44|43|42|41|40|39|38|37|35|35|34|33|32|32|59|33|34|36|36|37|38|39|40|41|42|43|44|45|46|48|48|50|50|51|52|53|57|55|56|57|58|59|61|61|0\n43|42|41|38|38|37|36|34|33|30|30|31|29|29|35|26|25|24|23|23|27|28|24|25|26|27|28|40|32|31|32|33|34|35|36|37|39|39|40|41|42|43|0\n65|61|61|62|57|57|58|59|56|55|54|54|53|51|46|46|47|48|49|45|44|44|41|40|38|37|37|36|35|34|34|42|43|35|36|39|38|39|40|41|42|43|52|45|50|47|48|49|50|51|52|53|64|55|56|60|58|59|60|63|62|63|64|65|0\n9|8|7|6|6|7|8|9|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n37|33|32|31|30|29|29|34|35|28|26|25|24|23|21|21|22|20|20|27|22|23|24|25|26|27|28|36|30|31|32|33|34|35|36|37|0\n55|55|56|54|52|52|53|58|46|46|47|45|44|43|43|49|50|40|40|41|39|37|37|36|36|60|61|34|34|33|33|63|35|35|62|38|38|39|42|41|42|51|44|45|48|47|48|49|50|51|59|53|54|57|56|57|58|59|60|61|62|63|0\n44|43|43|45|46|47|41|41|40|39|38|33|33|32|31|30|30|35|36|29|28|27|26|26|49|27|28|29|37|31|32|34|34|35|36|37|38|39|40|42|42|48|44|45|46|47|48|49|0\n23|21|18|17|17|19|15|15|14|13|13|22|14|16|16|20|18|19|20|21|22|23|0\n31|28|27|26|25|24|23|23|22|20|19|19|18|17|17|30|18|21|20|21|22|29|24|25|26|27|28|29|30|31|0\n32|31|31|30|29|29|28|26|25|24|24|22|21|21|20|19|19|35|20|23|22|23|27|25|26|27|28|34|30|33|32|33|34|35|0\n50|48|47|47|46|45|39|37|37|38|40|36|36|42|43|44|35|34|32|30|30|29|28|27|27|33|28|29|31|31|32|33|34|35|51|41|38|39|40|41|42|43|44|45|46|49|48|49|50|51|0\n31|31|30|29|29|25|24|23|23|26|22|20|20|19|18|18|28|19|21|21|22|27|24|25|26|27|28|33|30|32|32|33|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n41|36|35|35|34|33|32|32|38|31|30|29|28|27|26|25|24|22|22|23|40|23|24|25|26|27|28|29|30|31|39|33|34|37|36|37|38|39|40|41|0\n45|42|41|41|40|39|36|36|37|35|32|31|30|29|27|26|26|25|25|33|24|24|44|34|28|27|28|29|30|31|32|33|34|35|38|37|38|39|40|43|42|43|44|45|0\n32|30|30|29|28|27|27|26|24|24|22|21|18|18|19|20|23|19|20|21|22|23|25|25|26|33|28|29|31|31|32|33|0\n29|28|28|27|25|25|24|23|22|21|20|19|18|18|31|32|33|19|20|21|22|23|24|26|26|27|30|29|30|31|32|33|0\n3|3|0\n28|27|27|26|26|25|24|24|21|21|20|19|18|17|17|23|18|19|20|22|22|23|31|25|30|29|28|29|30|31|0\n62|61|60|58|58|56|56|54|54|52|52|51|50|49|49|47|46|45|44|43|41|36|36|37|35|35|39|34|33|33|42|48|34|40|38|37|38|39|40|41|42|43|44|45|46|47|48|63|50|51|53|53|55|55|57|57|59|59|60|61|62|63|0\n21|19|18|17|14|14|15|13|12|12|20|13|16|15|16|17|18|19|20|21|0\n23|21|20|17|16|15|15|18|14|13|13|22|14|19|16|17|18|19|20|21|22|23|0\n9|9|8|7|7|11|8|10|10|11|0\n46|45|44|44|43|41|41|40|40|48|49|39|36|36|37|35|33|31|31|32|30|29|28|27|27|51|28|29|30|34|32|33|34|35|38|37|38|39|50|42|42|43|47|45|46|47|48|49|50|51|0\n21|20|20|19|18|17|16|16|14|13|13|15|14|15|23|17|18|19|22|21|22|23|0\n25|20|19|19|21|18|18|23|24|26|27|17|16|16|29|17|28|22|20|21|22|23|24|25|26|27|28|29|0\n25|25|23|22|21|20|20|24|18|17|16|15|15|19|16|17|18|19|27|21|22|23|24|26|26|27|0\n45|44|44|43|40|40|39|38|38|36|36|35|34|34|31|30|29|29|27|26|25|25|28|33|26|27|28|32|30|31|32|33|47|35|37|37|42|39|41|41|42|43|46|45|46|47|0\n40|39|35|35|33|33|34|37|38|32|30|30|28|26|26|25|24|23|22|22|29|23|24|25|27|27|28|29|31|31|32|41|34|36|36|37|38|39|40|41|0\n24|24|22|20|19|19|18|15|15|16|14|14|23|17|16|17|18|21|20|21|22|23|25|25|0\n45|44|44|43|42|41|41|40|35|32|31|31|33|28|27|27|29|26|26|36|37|25|25|39|38|30|28|29|30|34|32|33|34|35|36|37|38|39|40|47|42|43|46|45|46|47|0\n40|39|39|36|36|34|32|31|31|30|30|29|27|26|26|25|24|22|22|23|38|23|24|25|28|27|28|29|35|33|32|33|34|35|37|37|38|41|40|41|0\n29|28|26|25|25|24|23|23|30|31|22|21|20|20|33|19|19|35|34|21|22|32|24|27|26|27|28|29|30|31|32|33|34|35|0\n3|3|0\n31|28|28|29|30|27|26|24|23|22|21|21|20|19|18|18|33|19|20|25|22|23|24|25|26|27|32|29|30|31|32|33|0\n21|17|16|15|15|18|14|13|12|12|20|13|14|19|16|17|18|19|20|21|0\n47|47|46|44|43|43|42|40|40|39|39|38|37|34|34|31|31|32|30|29|28|26|26|27|36|27|28|29|30|33|32|33|35|35|36|37|38|49|41|41|42|45|44|45|46|48|48|49|0\n49|48|48|46|46|47|44|43|40|40|39|39|35|33|33|32|32|36|37|30|29|28|28|27|27|45|31|29|30|31|38|34|34|35|36|37|38|42|41|41|42|43|44|45|51|47|50|49|50|51|0\n42|41|40|39|39|38|35|35|34|33|32|32|28|28|29|27|24|24|25|23|23|31|26|25|26|27|30|29|30|31|37|33|34|36|36|37|38|43|40|41|42|43|0\n11|9|8|7|7|10|8|9|10|11|0\n15|11|10|10|12|13|9|9|14|11|12|13|14|15|0\n30|30|29|26|24|24|23|23|22|21|20|19|18|17|17|28|18|19|20|21|22|27|25|25|26|27|28|29|31|31|0\n49|48|48|47|46|45|45|44|42|39|39|40|38|36|35|35|34|34|33|32|29|28|27|27|30|31|28|29|30|31|32|33|43|37|36|37|38|41|40|41|42|43|44|51|46|47|50|49|50|51|0\n41|38|38|36|35|34|33|31|31|32|30|28|27|26|26|25|23|22|22|24|40|23|24|25|29|27|28|29|30|37|32|33|34|35|36|37|39|39|40|41|0\n48|47|47|46|45|44|42|42|41|40|40|50|51|39|38|35|34|34|36|32|30|30|31|29|28|28|53|29|33|31|32|33|37|35|36|37|38|39|52|41|43|43|44|45|46|49|48|49|50|51|52|53|0\n59|59|58|57|56|56|54|54|53|52|52|62|63|51|49|48|47|46|46|43|43|44|42|41|40|39|36|35|35|37|34|34|65|38|36|37|38|39|40|41|42|45|44|45|50|47|48|49|50|51|64|53|55|55|61|57|58|60|60|61|62|63|64|65|0\n60|59|58|57|57|56|54|54|53|52|51|51|62|63|48|48|47|45|44|44|46|42|42|41|39|39|37|37|36|35|34|34|65|35|36|38|38|40|40|41|43|43|50|45|46|47|49|49|50|64|52|53|55|55|56|61|58|59|60|61|62|63|64|65|0\n40|40|39|34|34|32|32|31|31|36|37|30|29|29|28|23|23|24|25|26|27|43|24|25|26|27|28|42|30|38|33|33|35|35|36|37|38|39|41|41|42|43|0\n7|7|6|6|9|8|8|9|0\n25|23|23|22|20|18|17|16|15|15|14|14|21|19|16|17|18|19|20|21|22|24|24|25|0\n23|18|18|17|16|16|20|15|13|13|14|22|14|15|21|17|19|19|20|21|22|23|0\n26|25|25|24|22|22|21|20|20|19|18|16|16|17|29|17|18|19|28|21|23|23|24|27|26|27|28|29|0\n52|51|44|42|42|41|41|45|40|40|47|39|38|37|36|36|49|35|34|33|33|32|31|29|28|28|30|29|30|31|32|53|34|35|50|37|38|39|48|46|43|43|44|45|46|47|48|49|50|51|52|53|0\n18|16|16|15|14|13|13|12|11|11|12|19|14|15|17|17|18|19|0\n25|23|21|20|19|19|18|16|16|15|14|14|24|15|17|17|18|22|20|21|22|23|24|25|0\n48|47|47|45|44|43|41|41|40|39|38|37|35|35|34|33|29|29|28|27|27|26|26|32|46|31|28|30|30|31|32|33|34|36|36|37|38|39|40|42|42|43|44|45|46|49|48|49|0\n19|17|16|15|12|12|13|11|11|18|14|13|14|15|16|17|18|19|0\n27|25|24|23|20|19|19|21|18|17|15|15|16|26|16|17|18|22|20|21|22|23|24|25|26|27|0\n28|27|27|25|24|21|21|22|19|18|18|17|16|16|26|17|20|19|20|23|22|23|24|25|26|29|28|29|0\n18|17|16|15|15|14|13|11|11|12|12|13|14|19|16|17|18|19|0\n17|14|14|12|11|11|10|10|16|13|12|13|15|15|16|17|0\n45|44|43|42|42|41|38|38|39|36|36|35|33|33|32|28|28|29|27|27|31|26|25|25|26|47|30|29|30|31|32|34|34|35|37|37|40|39|40|41|46|43|44|45|46|47|0\n47|46|45|44|43|42|41|40|40|39|38|36|35|35|34|33|32|31|31|29|28|27|26|26|30|27|28|29|30|49|32|33|34|37|36|37|38|39|48|41|42|43|44|45|46|47|48|49|0\n37|37|36|35|33|32|31|31|30|29|28|28|25|25|23|23|22|21|21|27|22|24|24|26|26|27|39|29|30|34|32|33|34|35|36|38|38|39|0\n64|64|62|62|60|59|57|57|56|56|55|50|49|48|48|47|46|45|45|52|43|43|42|41|41|39|38|38|37|35|35|34|34|36|36|37|40|39|40|54|42|44|44|53|46|47|51|49|50|51|52|53|54|55|61|58|58|59|60|61|63|63|65|65|0\n40|37|37|36|35|35|34|33|32|31|30|30|41|28|27|26|26|25|24|23|23|43|24|25|29|27|28|29|42|31|32|33|34|39|36|38|38|39|40|41|42|43|0\n55|52|52|51|49|48|47|46|46|45|43|42|42|41|38|38|39|37|36|35|33|33|32|31|30|29|29|54|30|31|32|34|34|35|36|37|40|39|40|41|44|43|44|45|50|47|48|49|50|51|53|53|54|55|0\n70|69|68|67|67|71|66|66|63|63|58|58|57|55|55|54|52|52|53|51|49|49|48|47|47|61|44|43|42|40|40|39|38|38|45|46|65|39|41|41|42|43|44|45|46|62|48|50|50|51|60|53|54|56|56|57|59|59|60|61|62|64|64|65|73|72|68|69|70|71|72|73|0\n32|30|29|29|26|26|27|28|25|24|21|21|20|19|18|18|23|19|20|22|22|23|24|25|33|27|28|31|30|31|32|33|0\n36|36|34|31|31|30|27|26|26|28|29|25|24|22|22|21|20|20|35|21|23|23|24|25|33|27|28|29|30|32|32|33|34|35|37|37|0\n32|29|29|30|28|27|27|33|26|24|24|25|22|21|20|19|19|23|20|21|22|23|35|25|26|34|28|31|30|31|32|33|34|35|0\n33|32|31|27|27|28|26|26|25|25|24|22|21|21|20|19|19|35|20|23|22|23|24|34|30|29|28|29|30|31|32|33|34|35|0\n30|30|26|25|24|24|23|22|22|21|19|18|18|17|17|29|20|19|20|21|28|23|27|25|26|27|28|29|31|31|0\n15|14|13|11|10|9|9|12|10|11|12|13|14|15|0\n17|15|14|14|13|11|11|10|10|12|12|13|16|15|16|17|0\n51|46|45|44|42|42|41|40|40|47|48|39|36|35|35|37|33|31|30|30|32|29|27|27|28|50|28|29|34|31|32|33|34|38|36|37|38|39|49|41|43|43|44|45|46|47|48|49|50|51|0\n24|23|23|20|20|19|18|17|16|15|14|14|22|15|16|17|18|19|21|21|22|25|24|25|0\n38|37|36|35|35|34|33|30|28|28|29|27|25|23|23|24|22|21|21|32|22|26|24|25|26|27|31|29|30|31|32|33|34|39|36|37|38|39|0\n31|30|28|27|27|26|25|24|24|32|33|23|22|21|20|19|19|35|20|21|22|23|34|25|26|29|28|29|30|31|32|33|34|35|0\n11|9|9|10|8|8|13|12|10|11|12|13|0\n57|57|58|55|55|53|53|54|60|52|50|49|49|48|47|46|45|44|42|42|41|40|39|38|37|36|35|34|33|32|32|33|34|35|36|37|38|39|40|41|43|43|44|45|46|47|48|51|50|51|52|61|54|56|56|59|58|59|60|61|0\n30|29|29|26|25|25|21|20|18|18|19|22|23|17|17|28|24|19|20|21|22|23|24|27|26|27|28|31|30|31|0\n35|31|31|32|33|30|29|29|28|26|25|25|24|23|22|22|20|20|21|21|37|23|24|27|26|27|28|36|30|34|32|33|34|35|36|37|0\n58|57|57|56|53|52|51|50|50|49|48|47|41|41|40|39|39|43|38|37|36|35|34|34|45|32|32|31|31|55|33|33|46|35|36|37|38|44|40|42|42|43|44|45|46|47|48|49|54|51|52|53|54|55|56|59|58|59|0\n19|18|17|16|16|15|15|14|13|12|12|13|14|21|20|17|18|19|20|21|0\n42|41|41|40|39|37|35|35|36|34|33|33|32|30|28|27|27|26|26|25|24|24|45|25|31|29|28|29|30|31|32|44|34|38|36|37|38|39|40|43|42|43|44|45|0\n75|71|69|68|68|67|66|66|72|65|63|63|62|61|60|59|56|55|54|52|52|53|57|51|49|46|46|45|45|48|44|42|42|41|39|39|40|74|40|41|43|43|44|50|47|47|48|49|50|51|58|53|54|55|56|57|58|59|60|61|62|64|64|65|73|67|70|69|70|71|72|73|74|75|0\n47|47|42|42|43|44|41|41|40|39|38|37|36|35|33|32|31|29|28|28|30|27|26|26|49|27|34|29|30|31|32|33|34|35|36|37|38|39|40|46|45|43|44|45|46|48|48|49|0\n21|20|19|19|18|17|16|15|14|14|13|13|23|15|16|17|18|22|20|21|22|23|0\n41|41|40|39|37|37|36|35|35|43|33|31|30|29|29|28|27|26|26|25|24|24|45|25|34|27|28|32|30|31|32|33|34|44|36|38|38|39|40|42|42|43|44|45|0\n50|48|48|47|45|44|44|43|43|42|40|40|38|34|34|35|33|32|30|30|31|29|28|27|27|39|28|29|37|31|32|33|36|35|36|37|38|39|41|41|42|51|46|45|46|47|49|49|50|51|0\n40|39|38|37|37|36|34|34|32|30|30|29|28|27|26|25|24|22|22|23|33|23|24|25|26|27|28|29|31|31|32|33|35|35|36|41|38|39|40|41|0\n28|27|26|25|25|24|21|21|20|19|18|17|16|16|23|17|18|19|20|22|22|23|24|29|26|27|28|29|0\n37|36|36|35|34|34|32|29|28|27|27|26|26|25|24|23|22|21|21|33|22|23|24|25|31|30|28|29|30|31|32|33|39|35|38|37|38|39|0\n71|68|67|67|64|64|63|63|62|61|59|59|58|57|53|52|52|54|55|51|50|49|47|47|44|43|43|45|42|41|40|38|37|37|39|70|38|39|40|41|42|46|44|45|46|48|48|49|50|51|56|53|54|55|56|57|58|60|60|61|62|66|65|65|66|69|68|69|70|71|0\n22|21|21|18|18|17|16|15|14|13|13|20|14|15|16|17|19|19|20|23|22|23|0\n19|17|16|14|14|13|12|11|11|18|12|13|15|15|16|17|18|19|0\n41|41|40|40|38|37|36|35|33|32|31|30|29|29|28|27|26|25|24|23|23|39|24|25|26|27|28|34|30|31|32|33|34|35|36|37|38|39|43|42|42|43|0\n28|27|27|25|24|22|21|20|20|19|18|17|16|16|26|17|18|19|23|21|22|23|24|25|26|29|28|29|0\n44|43|43|42|40|40|37|36|35|34|34|33|32|31|30|29|27|27|26|25|24|24|39|25|26|28|28|29|30|31|32|33|38|35|36|37|38|39|41|41|42|45|44|45|0\n11|10|9|7|7|8|8|9|10|11|0\n28|27|26|25|24|24|20|19|19|21|18|17|16|16|23|17|18|22|20|21|22|23|29|25|26|27|28|29|0\n24|24|20|19|19|21|18|17|16|15|14|14|23|15|16|17|18|22|20|21|22|23|25|25|0\n11|10|8|8|9|12|13|9|10|11|12|13|0\n52|51|50|49|48|47|46|45|45|44|42|42|40|38|38|37|36|34|34|33|31|30|30|29|28|28|41|29|32|31|32|33|35|35|36|37|39|39|40|41|43|43|44|53|46|47|48|49|50|51|52|53|0\n70|68|68|66|66|65|63|61|61|60|59|59|58|57|56|56|55|53|53|51|50|49|48|46|45|45|44|43|42|41|39|38|38|37|37|52|40|39|40|41|42|43|44|47|46|47|48|49|50|51|52|54|54|55|71|57|58|64|60|62|62|63|64|65|67|67|69|69|70|71|0\n44|42|42|41|41|45|46|40|38|38|37|34|33|32|31|28|28|29|30|35|27|25|25|26|26|27|36|29|30|31|32|33|34|35|36|37|39|39|40|47|43|43|44|45|46|47|0\n41|40|38|37|37|36|35|34|34|42|43|32|31|30|29|29|28|26|26|25|24|24|45|25|27|27|28|33|30|31|32|33|44|35|36|39|38|39|40|41|42|43|44|45|0\n32|31|31|28|28|27|26|25|24|22|22|19|19|20|18|18|30|21|20|21|23|23|24|25|26|27|29|29|30|33|32|33|0\n21|20|17|15|15|14|14|13|12|12|19|13|18|16|16|17|18|19|20|21|0\n5|4|4|5|0\n28|27|26|25|24|23|23|22|19|19|18|17|16|16|21|17|18|20|20|21|22|29|24|25|26|27|28|29|0\n40|40|37|37|33|32|32|31|30|29|29|35|27|27|26|24|24|23|22|22|39|23|25|25|26|28|28|36|30|31|34|33|34|35|36|38|38|39|41|41|0\n34|32|32|31|30|29|29|28|27|24|24|23|22|21|20|19|19|26|20|21|22|23|25|25|26|27|28|35|30|31|33|33|34|35|0\n23|22|21|18|18|17|16|15|13|13|14|20|14|15|16|17|19|19|20|21|22|23|0\n53|52|51|50|49|47|47|48|54|46|44|44|39|39|38|37|37|41|34|34|35|30|30|31|32|29|29|43|33|31|32|33|36|35|36|42|38|40|40|41|42|43|45|45|46|55|48|49|50|51|52|53|54|55|0\n55|54|54|52|52|48|47|47|46|45|44|44|50|42|41|41|40|39|39|38|35|35|36|33|32|31|30|30|34|31|32|33|34|37|36|37|38|57|40|43|42|43|51|45|46|49|48|49|50|51|53|53|56|55|56|57|0\n50|50|51|48|47|46|46|45|43|43|41|41|38|37|37|36|33|32|32|34|31|30|30|28|28|29|53|29|40|31|35|33|34|35|36|39|38|39|40|42|42|44|44|45|49|47|48|49|52|51|52|53|0\n35|33|32|31|29|28|27|27|26|25|23|22|22|21|20|19|19|34|20|21|24|23|24|25|26|30|28|29|30|31|32|33|34|35|0\n41|40|40|39|38|38|34|33|32|32|35|31|30|29|28|27|26|25|24|23|23|37|24|25|26|27|28|29|30|31|36|33|34|35|36|37|43|39|42|41|42|43|0\n21|21|19|18|18|17|15|15|14|13|13|23|14|16|16|17|20|19|20|22|22|23|0\n65|61|60|58|58|57|55|54|54|53|52|49|49|48|48|51|62|47|46|43|43|44|41|41|42|39|39|38|36|35|35|34|34|37|36|37|38|40|40|64|42|45|44|45|46|47|63|50|50|51|52|53|56|55|56|57|59|59|60|61|62|63|64|65|0\n38|38|37|35|34|34|33|32|31|30|29|29|40|41|28|26|26|24|23|23|25|43|24|25|27|27|28|42|30|31|32|33|36|35|36|37|39|39|40|41|42|43|0\n48|45|45|46|44|44|43|40|40|41|39|38|37|37|50|51|35|34|34|33|32|31|30|28|28|29|53|29|30|31|32|33|36|35|36|52|38|39|42|41|42|43|49|47|46|47|48|49|50|51|52|53|0\n23|23|22|20|19|18|18|17|17|15|14|14|16|15|16|25|21|19|20|21|22|24|24|25|0\n47|45|43|42|42|41|39|39|38|37|36|31|31|29|29|30|28|27|27|26|26|25|25|46|35|34|28|33|30|32|32|33|34|35|36|37|38|40|40|41|44|43|44|45|46|47|0\n46|46|47|48|49|50|45|43|43|39|38|38|40|37|36|35|34|32|31|31|30|29|27|27|28|42|28|29|30|33|32|33|34|35|36|37|41|39|40|41|42|44|44|45|51|47|48|49|50|51|0\n11|9|8|7|7|10|8|9|10|11|0\n27|24|23|22|22|21|19|18|18|17|16|15|15|26|16|17|20|19|20|21|25|23|24|25|26|27|0\n29|26|26|25|25|24|23|23|30|31|22|21|20|19|18|18|33|19|20|21|22|32|24|28|27|27|28|29|30|31|32|33|0\n25|23|22|21|19|17|17|18|16|15|14|14|24|15|16|20|18|19|20|21|22|23|24|25|0\n78|77|75|75|74|73|72|71|68|68|69|70|67|62|61|60|59|56|56|57|58|63|64|52|52|53|54|51|49|49|47|46|44|43|43|42|42|41|41|66|48|45|44|45|46|47|48|50|50|51|55|53|54|55|65|57|58|59|60|61|62|63|64|65|66|67|79|69|70|71|72|73|74|76|76|77|78|79|0\n36|35|34|33|33|32|31|30|28|26|26|25|22|21|21|23|20|20|29|24|22|23|24|25|27|27|28|29|30|31|32|37|34|35|36|37|0\n28|28|29|30|26|25|19|19|20|21|22|23|18|17|17|27|18|24|20|21|22|23|24|25|26|27|31|29|30|31|0\n35|35|36|31|31|32|30|28|28|27|26|25|23|23|22|21|20|20|34|21|22|24|24|25|26|27|29|29|30|33|32|33|34|37|36|37|0\n4|4|5|5|0\n4|4|5|5|0\n31|29|28|27|24|23|23|25|22|22|21|18|18|17|17|20|19|19|20|21|30|26|24|25|26|27|28|29|30|31|0\n27|25|24|23|22|20|19|18|18|17|15|15|16|26|16|17|21|19|20|21|22|23|24|25|26|27|0\n33|29|28|26|26|27|30|25|24|23|21|21|20|19|18|18|32|19|20|22|22|23|24|25|31|27|28|29|30|31|32|33|0\n48|47|46|46|45|40|39|38|37|35|35|32|32|33|34|41|42|31|30|29|28|27|26|26|44|27|28|29|30|31|43|33|34|36|36|37|38|39|40|41|42|43|44|45|49|47|48|49|0\n71|69|66|66|65|63|62|62|64|61|56|56|55|53|52|52|51|50|50|58|49|48|48|47|45|44|43|43|42|40|39|39|38|37|37|70|38|41|40|41|42|46|44|45|46|47|60|49|59|51|54|53|54|55|57|57|58|59|60|61|68|63|64|65|67|67|68|69|70|71|0\n30|29|29|27|26|25|23|23|22|20|20|19|17|17|18|28|18|19|21|21|22|24|24|25|26|27|28|31|30|31|0\n59|57|57|54|54|53|52|51|47|46|45|45|42|42|41|41|40|39|37|37|36|35|34|34|49|32|32|31|31|56|33|33|50|35|36|38|38|39|40|44|43|43|44|48|46|47|48|49|50|51|52|53|55|55|56|58|58|59|0\n30|29|27|26|26|28|24|23|21|20|20|19|17|17|18|25|18|19|22|21|22|23|24|25|31|27|28|29|30|31|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n63|63|61|61|60|59|59|58|57|56|54|52|52|51|50|47|46|45|44|44|48|43|41|39|39|38|38|37|35|34|34|36|55|35|36|37|42|40|40|41|42|43|49|45|46|47|48|49|50|51|53|53|54|55|56|57|58|65|60|62|62|64|64|65|0\n43|42|41|40|40|39|39|38|36|36|34|33|30|30|29|27|27|28|26|25|24|24|35|25|26|32|28|29|31|31|32|33|34|35|37|37|38|45|44|41|42|43|44|45|0\n20|20|21|22|19|18|17|16|13|13|14|15|14|15|16|17|18|19|23|21|22|23|0\n57|56|55|54|53|53|58|59|51|49|49|47|46|46|45|43|41|41|42|40|40|39|38|37|36|35|34|33|32|32|61|33|34|35|36|37|38|39|52|44|42|43|44|45|48|47|48|50|50|51|52|60|54|55|56|57|58|59|60|61|0\n54|52|52|51|51|50|48|48|47|43|43|44|42|40|40|39|38|36|36|35|33|32|32|31|30|29|29|46|30|31|34|33|34|35|37|37|38|39|41|41|42|45|44|45|46|47|49|49|50|55|53|53|54|55|0\n55|55|54|52|50|50|51|49|49|48|46|43|42|41|40|40|44|39|38|35|34|34|36|33|32|31|30|30|47|31|32|33|37|35|36|37|38|39|45|41|42|43|44|45|46|47|48|57|53|51|52|53|54|56|56|57|0\n31|31|29|29|30|27|27|28|34|35|26|25|23|22|22|21|20|20|37|21|24|23|24|25|26|36|28|33|30|32|32|33|34|35|36|37|0\n15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n52|50|49|49|47|45|45|44|40|40|39|38|38|42|36|36|35|34|34|48|33|31|31|29|28|28|30|29|30|32|32|33|53|35|37|37|43|39|41|41|42|43|44|46|46|47|48|51|50|51|52|53|0\n38|36|36|34|34|33|32|31|31|30|29|26|26|25|24|23|22|21|21|28|22|23|24|25|27|27|28|29|30|39|32|33|35|35|37|37|38|39|0\n26|25|23|23|22|20|20|19|17|17|16|15|15|27|16|18|18|19|21|21|22|24|24|25|26|27|0\n23|20|19|18|16|14|14|15|13|13|21|22|17|15|16|17|18|19|20|21|22|23|0\n7|5|5|6|6|7|0\n34|29|29|30|28|27|27|32|26|26|25|23|23|20|20|19|19|22|21|21|22|24|24|25|35|33|28|31|30|31|32|33|34|35|0\n31|30|29|27|25|24|24|23|22|21|20|19|17|17|18|28|18|19|20|21|22|23|26|25|26|27|28|29|30|31|0\n37|35|34|33|32|31|29|28|27|26|26|25|22|21|21|23|20|20|36|24|22|23|24|25|30|27|28|29|30|31|32|33|34|35|36|37|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n19|18|17|15|15|16|14|13|13|12|12|21|14|20|16|17|18|19|20|21|0\n6|5|5|7|6|7|0\n24|24|25|22|22|21|20|17|17|18|16|15|15|27|16|19|18|19|20|21|23|23|26|25|26|27|0\n50|45|45|44|43|42|41|41|47|48|38|37|37|36|35|34|34|33|32|31|28|28|29|27|27|51|30|29|30|31|32|33|40|35|36|39|38|39|40|49|42|43|44|46|46|47|48|49|50|51|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n46|46|41|41|40|38|36|36|37|35|34|34|43|33|32|31|30|29|27|27|26|25|25|45|26|28|28|29|30|31|32|33|44|35|39|37|38|39|40|42|42|43|44|45|47|47|0\n56|54|53|53|52|51|51|50|48|48|46|44|44|43|41|41|40|39|38|37|35|34|34|33|31|30|30|32|47|31|32|33|36|35|36|37|38|39|40|42|42|43|45|45|46|47|49|49|50|57|52|55|54|55|56|57|0\n63|63|61|60|60|59|57|57|56|55|55|52|52|51|46|46|45|44|43|43|48|49|42|41|40|38|38|37|36|35|34|34|54|35|36|37|39|39|40|41|42|50|44|45|47|47|48|49|50|51|53|53|54|65|56|58|58|59|62|61|62|64|64|65|0\n26|26|25|24|23|23|28|29|21|21|19|19|18|17|17|31|18|20|20|22|22|30|24|25|27|27|28|29|30|31|0\n53|52|51|50|49|48|48|47|44|43|43|45|42|41|39|38|37|37|36|35|34|34|32|31|30|29|29|33|30|31|32|33|55|35|36|40|38|39|40|41|42|46|44|45|46|47|54|49|50|51|52|53|54|55|0\n21|20|20|22|17|16|16|15|13|13|14|19|14|15|18|17|18|19|23|21|22|23|0\n37|36|35|34|33|32|31|30|30|29|28|28|26|25|23|22|22|21|21|27|24|23|24|25|26|27|39|29|38|31|32|33|34|35|36|37|38|39|0\n22|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0\n24|22|22|23|21|19|18|17|17|16|15|14|14|15|16|20|18|19|20|21|25|23|24|25|0\n20|20|19|18|18|22|23|16|16|15|14|14|25|15|17|17|24|19|21|21|22|23|24|25|0\n12|11|11|13|10|9|9|15|10|14|12|13|14|15|0\n64|61|61|62|59|59|58|57|56|55|53|53|52|51|51|50|47|46|45|44|43|42|42|41|41|38|37|36|36|35|34|34|40|35|39|37|38|39|40|49|48|43|44|45|46|47|48|49|50|65|52|54|54|55|56|57|58|60|60|63|62|63|64|65|0\n27|24|23|22|21|20|18|18|19|17|16|15|15|26|16|17|25|19|20|21|22|23|24|25|26|27|0\n38|38|35|33|33|32|30|30|29|28|28|27|24|23|23|22|21|21|26|37|22|25|24|25|26|27|36|29|31|31|32|34|34|35|36|37|39|39|0\n47|47|45|44|42|42|41|40|40|39|37|37|35|35|34|34|49|33|32|31|30|29|28|27|27|51|28|29|30|31|32|33|50|36|36|38|38|39|46|41|43|43|44|45|46|48|48|49|50|51|0\n99|98|97|96|95|93|92|88|87|87|89|90|85|85|84|82|80|79|78|77|77|81|76|75|74|74|94|100|72|72|71|67|67|68|66|65|64|63|61|61|59|57|57|58|56|54|52|52|53|55|70|53|54|55|56|60|58|59|60|62|62|63|64|65|66|69|68|69|70|71|73|73|101|75|76|83|78|79|80|81|82|83|84|86|86|91|88|89|90|91|92|93|94|95|96|97|98|99|100|101|0\n47|46|44|41|41|42|43|40|38|37|37|36|36|48|49|33|32|32|31|31|29|28|27|27|30|51|28|29|30|35|34|33|34|35|50|39|38|39|40|45|42|43|44|45|46|47|48|49|50|51|0\n41|38|38|39|40|37|36|36|35|33|32|31|30|29|28|26|25|25|24|23|23|34|24|27|26|27|28|29|30|31|32|33|34|35|43|37|42|39|40|41|42|43|0\n52|51|50|48|47|47|46|45|45|44|40|40|38|37|37|36|35|35|42|33|31|29|29|30|28|28|34|32|30|31|32|33|34|43|36|39|38|39|41|41|42|43|44|53|46|49|48|49|50|51|52|53|0\n51|50|44|44|43|42|40|39|39|38|38|46|47|36|36|33|32|32|34|31|29|29|28|27|27|49|28|30|30|31|35|33|34|35|37|37|48|41|40|41|42|43|45|45|46|47|48|49|50|51|0\n17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0\n19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0\n28|27|27|24|23|22|20|19|19|21|18|17|16|16|26|17|18|25|20|21|22|23|24|25|26|29|28|29|0\n25|22|20|20|19|18|18|17|16|15|14|14|24|15|16|17|23|19|21|21|22|23|24|25|0\n56|51|49|49|50|48|46|45|45|43|43|42|40|40|41|53|54|39|38|37|36|35|34|33|32|31|30|30|57|31|32|33|34|35|36|37|38|39|55|41|42|44|44|47|46|47|48|52|50|51|52|53|54|55|56|57|0\n43|41|40|35|35|34|33|32|31|31|37|38|29|27|27|28|26|24|24|23|23|42|25|25|26|30|28|29|30|39|32|33|34|36|36|37|38|39|40|41|42|43|0\n63|57|57|56|55|54|51|50|48|46|46|47|49|52|53|45|44|43|43|60|42|40|40|39|38|37|35|35|34|33|33|62|34|36|36|37|38|39|41|41|42|61|44|45|59|47|48|49|50|51|52|53|54|55|56|58|58|59|60|61|62|63|0\n41|41|40|36|36|35|33|33|32|31|31|38|29|28|28|27|26|24|24|23|23|43|25|25|26|27|30|29|30|39|32|34|34|35|37|37|38|39|40|42|42|43|0\n11|10|9|8|7|7|8|9|10|11|0\n54|53|51|51|50|49|48|48|47|44|43|42|42|41|40|40|37|37|33|33|34|35|32|30|29|29|31|39|30|31|32|36|34|35|36|38|38|39|46|41|45|43|44|45|46|47|55|49|50|52|52|53|54|55|0\n23|22|20|19|17|17|15|14|14|13|13|21|16|15|16|18|18|19|20|21|22|23|0\n46|44|43|42|42|41|39|38|38|37|35|34|34|32|32|33|31|30|27|27|26|25|25|29|26|28|28|29|30|31|47|33|36|35|36|37|40|39|40|41|45|43|44|45|46|47|0\n48|47|44|43|42|41|41|45|40|39|38|38|37|34|33|32|31|31|30|29|29|27|26|26|28|27|28|36|30|35|32|33|34|35|36|37|49|39|40|46|42|43|44|45|46|47|48|49|0\n16|15|14|14|17|13|11|11|12|19|12|13|18|15|16|17|18|19|0\n47|44|43|42|42|41|38|38|37|37|36|35|33|32|31|31|30|28|27|27|26|25|25|46|26|29|28|29|30|34|32|33|34|35|36|40|39|39|40|41|45|43|44|45|46|47|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n31|30|27|27|28|29|32|33|26|24|23|23|22|21|20|19|19|35|20|21|22|25|24|25|26|34|28|29|30|31|32|33|34|35|0\n28|24|24|25|23|23|27|19|18|18|17|17|16|16|22|21|20|19|20|21|22|29|26|25|26|27|28|29|0\n44|41|41|39|39|38|36|36|35|34|33|32|32|31|31|30|28|27|26|25|24|24|29|25|26|27|28|29|30|45|43|33|34|35|37|37|38|40|40|42|42|43|44|45|0\n58|56|55|55|54|53|52|52|51|49|48|46|46|45|45|43|41|41|40|37|36|36|38|32|32|33|34|31|31|44|35|33|34|35|39|37|38|39|40|42|42|43|44|50|47|47|48|49|50|51|59|53|54|57|56|57|58|59|0\n76|75|73|73|70|68|68|69|71|67|65|64|64|63|61|61|60|59|59|58|57|55|51|51|48|48|49|47|46|45|44|43|42|42|53|41|40|40|56|41|54|43|44|45|46|47|50|49|50|52|52|53|54|55|56|57|58|77|60|62|62|63|66|65|66|67|72|69|70|71|72|74|74|75|76|77|0\n44|43|43|45|42|42|47|41|40|40|39|38|37|36|36|50|51|35|33|33|32|31|30|28|28|29|53|29|30|31|32|34|34|35|52|37|38|39|49|41|48|46|44|45|46|47|48|49|50|51|52|53|0\n47|44|40|40|39|39|38|37|36|35|34|34|33|32|32|31|30|29|27|27|26|25|25|46|26|28|28|29|30|31|45|33|43|35|36|37|38|42|41|41|42|43|44|45|46|47|0\n14|12|11|9|9|10|13|15|10|11|12|13|14|15|0\n35|33|32|31|30|28|28|29|26|25|24|23|22|21|20|19|19|27|20|21|22|23|24|25|26|27|34|29|30|31|32|33|34|35|0\n13|12|12|11|9|9|10|15|10|11|14|13|14|15|0\n9|8|7|6|6|7|8|9|0\n11|11|9|9|8|8|13|10|10|12|12|13|0\n39|37|34|31|31|32|33|35|30|29|28|27|26|24|23|23|22|21|21|38|22|25|24|25|26|27|28|29|30|36|32|33|34|35|36|37|38|39|0\n34|34|32|29|28|27|27|26|25|24|24|23|21|21|20|19|19|33|20|22|22|23|31|25|26|30|28|29|30|31|32|33|35|35|0\n29|29|30|28|27|27|26|23|23|24|21|21|20|19|18|18|33|19|20|22|22|25|24|25|26|32|28|31|30|31|32|33|0\n33|29|28|27|27|30|24|23|23|20|20|21|22|18|18|19|32|19|26|21|22|25|24|25|26|31|28|29|30|31|32|33|0\n53|53|54|52|51|49|48|45|44|43|41|40|40|42|46|38|37|35|35|36|34|33|32|31|30|29|29|50|30|31|32|33|34|39|36|37|38|39|47|41|42|43|44|45|46|47|48|49|50|51|52|55|54|55|0\n58|57|56|56|54|52|51|50|49|49|53|46|45|45|44|43|43|40|39|39|38|36|35|35|34|33|32|31|31|42|32|33|34|37|36|37|38|41|40|41|42|48|44|47|46|47|48|55|50|51|52|53|54|55|59|57|58|59|0\n11|11|12|9|8|8|10|9|10|13|12|13|0\n42|42|40|38|37|35|35|36|34|33|33|32|30|30|28|28|26|26|25|24|23|23|24|25|27|27|29|29|31|31|32|41|34|39|36|37|38|39|40|41|43|43|0\n38|36|36|35|33|33|32|31|30|28|26|26|23|23|22|22|25|21|21|39|29|24|24|25|27|27|28|29|30|31|32|34|34|35|37|37|38|39|0\n29|28|27|26|24|24|25|30|31|22|22|21|20|19|18|18|33|19|20|21|23|23|32|25|26|27|28|29|30|31|32|33|0\n34|33|33|31|29|29|28|25|25|26|27|24|23|22|21|20|19|19|20|21|22|23|24|32|26|27|28|30|30|31|32|35|34|35|0\n30|29|29|24|23|23|25|26|21|19|18|18|20|17|17|28|22|19|20|21|22|27|24|25|26|27|28|31|30|31|0\n33|32|32|34|35|36|31|30|29|29|38|26|25|25|24|22|22|21|21|28|23|23|24|27|26|27|28|39|30|31|37|33|34|35|36|37|38|39|0\n36|34|34|35|33|30|30|29|28|28|26|25|24|22|22|21|20|20|27|21|23|23|24|25|26|27|32|29|31|31|32|33|37|35|36|37|0\n40|40|39|38|36|35|34|34|33|31|30|29|29|27|27|28|42|43|25|25|24|24|45|26|26|44|28|32|30|31|32|33|37|35|36|37|38|39|41|41|42|43|44|45|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n67|64|64|65|66|63|62|61|59|59|58|58|53|51|51|52|50|49|48|48|55|46|45|45|44|41|41|42|39|38|38|37|36|36|57|37|40|39|40|43|42|43|44|47|46|47|56|49|50|54|52|53|54|55|56|57|69|60|60|61|62|63|68|65|66|67|68|69|0\n17|13|13|14|12|11|10|10|16|11|12|15|14|15|16|17|0\n24|24|25|23|23|22|20|20|19|17|16|15|15|18|16|17|18|19|21|21|22|27|26|25|26|27|0\n13|13|14|11|10|9|9|12|10|11|12|15|14|15|0\n28|28|26|25|23|23|22|21|19|18|18|17|16|16|27|17|20|19|20|21|22|24|24|25|26|27|29|29|0\n29|27|26|24|23|22|22|21|20|19|18|16|16|17|28|17|18|19|20|21|25|23|24|25|26|27|28|29|0\n32|32|31|30|29|29|34|35|28|27|26|25|24|23|22|21|20|20|37|21|22|23|24|25|26|27|28|36|30|31|33|33|34|35|36|37|0\n35|31|29|29|30|28|27|25|24|24|23|22|22|21|20|19|19|34|20|21|33|23|26|25|26|27|28|32|30|31|32|33|34|35|0\n57|55|54|53|52|51|50|49|43|43|42|41|41|45|39|39|38|36|35|35|34|34|47|32|31|31|30|30|56|33|32|33|48|37|36|37|38|40|40|46|42|44|44|45|46|47|48|49|50|51|52|53|54|55|56|57|0\n68|65|64|63|62|60|59|59|58|53|52|52|54|55|56|51|50|50|49|49|45|44|44|43|43|47|41|41|40|39|37|36|36|38|69|37|38|39|40|42|42|48|46|45|46|47|48|67|66|51|57|53|54|55|56|57|58|61|60|61|62|63|64|65|66|67|68|69|0\n43|40|40|39|38|37|36|33|33|34|32|31|29|28|28|27|25|24|24|23|23|42|26|25|26|27|30|29|30|31|32|35|34|35|36|37|38|39|41|41|42|43|0\n59|57|54|53|52|51|49|49|47|46|46|45|43|43|42|41|41|55|40|39|38|37|36|35|34|33|32|31|31|58|32|33|34|35|36|37|38|39|40|56|42|44|44|45|48|47|48|50|50|51|52|53|54|55|56|57|58|59|0\n53|52|52|54|50|49|48|47|47|46|46|56|44|40|39|39|38|36|36|35|35|42|33|33|32|31|30|30|45|31|32|34|34|43|37|37|38|41|40|41|42|43|44|45|57|51|48|49|50|51|55|53|54|55|56|57|0\n44|44|45|43|41|41|40|39|39|38|37|37|48|49|36|34|33|33|32|30|29|29|28|27|27|51|28|31|30|31|32|35|34|35|36|50|38|47|40|42|42|43|46|45|46|47|48|49|50|51|0\n34|34|33|33|32|32|37|31|30|29|27|25|24|24|26|23|21|21|22|39|22|23|28|25|26|27|28|29|30|31|38|36|35|35|36|37|38|39|0\n25|24|24|23|22|21|20|18|18|17|16|15|15|27|16|17|19|19|20|21|22|23|26|25|26|27|0\n43|42|42|44|39|38|38|37|34|33|33|35|32|30|29|26|26|27|28|25|24|24|41|25|31|27|28|29|30|31|32|36|34|35|36|37|40|39|40|41|45|43|44|45|0\n47|47|48|46|45|42|40|39|38|38|36|36|35|34|33|33|32|30|29|29|28|27|26|26|44|27|28|31|30|31|32|43|34|35|37|37|41|39|40|41|42|43|44|45|46|49|48|49|0\n18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0\n26|26|23|23|22|21|20|19|18|17|16|15|15|25|16|17|18|19|20|21|22|24|24|25|27|27|0\n17|17|15|15|12|12|13|11|11|19|14|13|14|16|16|18|18|19|0\n50|47|46|46|48|43|43|44|45|42|39|39|38|37|36|36|34|31|30|29|29|32|28|27|27|35|28|33|30|31|32|33|34|35|41|37|38|40|40|41|42|51|44|45|49|47|48|49|50|51|0\n24|23|23|22|19|18|18|20|17|16|15|15|26|27|16|17|21|19|20|21|22|25|24|25|26|27|0\n55|54|54|53|51|51|50|49|49|47|46|44|44|43|41|40|39|39|38|37|36|34|34|33|31|30|30|32|48|31|32|33|35|35|36|37|38|42|40|41|42|43|45|45|46|47|48|57|50|52|52|53|56|55|56|57|0\n54|53|53|50|48|47|47|46|45|45|41|40|40|42|43|39|37|36|35|34|34|33|32|30|30|29|29|52|31|31|32|33|38|35|36|37|38|39|44|41|42|43|44|51|46|49|48|49|50|51|52|55|54|55|0\n34|32|31|30|30|28|28|29|26|25|24|23|21|20|20|19|19|27|22|21|22|23|24|25|26|27|35|29|33|31|32|33|34|35|0\n43|42|39|39|40|38|37|36|36|44|45|35|33|33|32|31|30|28|28|27|26|25|25|47|26|27|29|29|30|31|32|34|34|35|46|37|38|41|40|41|42|43|44|45|46|47|0\n66|65|65|64|62|58|57|57|56|56|60|53|53|51|50|50|49|48|48|47|45|44|44|43|41|39|39|38|38|37|36|35|35|63|36|37|42|40|40|41|42|43|46|45|46|47|55|49|52|51|52|54|54|55|61|59|58|59|60|61|62|63|64|67|66|67|0\n37|35|31|31|30|29|25|25|26|27|24|24|33|21|21|22|20|20|36|23|22|23|34|28|26|27|28|29|30|32|32|33|34|35|36|37|0\n31|30|30|32|33|29|28|27|25|24|24|23|21|21|20|19|19|35|20|22|22|23|26|25|26|27|28|29|34|31|32|33|34|35|0\n54|53|52|51|50|48|47|47|49|46|44|44|42|40|39|39|38|36|36|35|34|33|32|31|30|29|29|43|30|31|32|33|34|35|37|37|38|41|40|41|42|43|45|45|46|55|48|49|50|51|52|53|54|55|0\n58|58|54|52|45|45|46|44|44|48|43|43|42|41|40|39|39|51|38|36|36|35|35|55|34|33|32|31|31|57|32|33|34|56|37|37|38|53|40|41|42|50|49|47|46|47|48|49|50|51|52|53|54|55|56|57|59|59|0\n13|10|9|9|8|8|12|11|10|11|12|13|0\n55|54|54|53|53|50|50|49|47|46|45|44|43|43|41|41|40|39|38|37|35|34|33|33|32|31|30|30|52|31|32|36|34|35|36|37|38|39|40|42|42|48|44|45|46|47|48|49|51|51|52|57|56|55|56|57|0\n57|57|56|54|54|53|51|49|49|48|48|45|45|43|42|41|41|44|47|39|37|37|36|35|33|33|31|31|32|40|32|34|34|35|36|38|38|39|40|59|42|43|44|46|46|47|52|50|50|51|52|53|55|55|56|58|58|59|0\n21|20|19|19|18|17|16|16|14|13|13|15|14|15|23|17|18|22|20|21|22|23|0\n33|32|31|30|30|29|28|26|26|25|24|22|21|21|20|19|19|35|20|23|22|23|24|25|27|27|28|29|34|31|32|33|34|35|0\n32|30|30|31|33|29|28|25|24|23|23|26|27|22|20|19|19|21|20|21|22|35|24|25|26|27|28|29|34|31|32|33|34|35|0\n19|18|16|15|15|14|13|11|11|12|12|13|14|17|16|17|18|19|0\n22|22|21|15|15|14|13|13|17|18|19|20|14|16|16|17|18|19|20|21|23|23|0\n4|4|5|5|0\n43|41|40|39|37|37|33|33|34|32|32|31|30|28|28|27|26|25|24|23|23|42|24|25|26|27|29|29|30|31|36|35|34|35|36|38|38|39|40|41|42|43|0\n12|10|10|11|8|8|9|9|13|11|12|13|0\n40|40|39|37|36|35|35|34|33|31|28|27|27|29|25|25|24|23|22|22|32|23|24|26|26|30|28|29|30|31|32|33|34|38|36|37|38|39|41|41|0\n28|27|27|26|24|23|23|21|20|19|18|17|16|16|22|17|18|19|20|21|22|25|24|25|26|29|28|29|0\n27|26|25|24|24|28|22|21|20|18|17|17|16|16|23|19|18|19|20|21|22|23|29|25|26|27|28|29|0\n42|42|43|41|39|39|38|37|34|34|35|33|32|31|31|45|29|28|28|27|26|25|25|47|26|27|30|29|30|46|32|33|36|35|36|37|38|40|40|41|44|43|44|45|46|47|0\n45|44|42|40|40|39|38|35|35|36|34|33|33|32|30|29|29|27|26|25|24|24|28|25|26|27|28|31|30|31|32|43|34|37|36|37|38|39|41|41|42|43|44|45|0\n31|29|29|30|28|27|26|26|33|34|25|21|21|22|23|20|19|19|20|24|22|23|24|25|35|27|28|32|30|31|32|33|34|35|0\n37|35|35|34|29|28|27|27|30|31|26|25|24|23|22|21|20|20|33|21|22|23|24|25|26|32|28|29|30|31|32|33|34|36|36|37|0\n16|16|17|15|15|19|12|12|13|14|21|13|14|20|18|17|18|19|20|21|0\n44|44|43|42|41|40|40|46|47|38|37|37|35|34|34|33|32|31|30|29|28|27|26|26|49|27|28|29|30|31|32|33|36|35|36|39|38|39|48|41|42|43|45|45|46|47|48|49|0\n39|37|35|34|34|33|30|29|28|28|31|26|25|25|24|23|22|21|21|38|22|23|24|27|26|27|32|29|30|31|32|33|36|35|36|37|38|39|0\n20|20|17|17|16|15|14|13|12|12|19|13|14|15|16|18|18|19|21|21|0\n37|35|31|29|28|28|27|26|26|32|33|25|24|22|21|21|20|20|36|23|22|23|24|25|34|27|30|29|30|31|32|33|34|35|36|37|0\n29|28|28|27|26|25|24|23|22|21|20|19|17|17|18|31|18|19|20|21|22|23|24|25|26|27|30|29|30|31|0\n10|9|8|7|7|11|8|9|10|11|0\n26|25|25|27|23|22|21|21|20|18|18|17|16|16|29|17|19|19|20|24|22|23|24|28|26|27|28|29|0\n7|7|8|6|6|9|8|9|0\n59|56|56|53|53|52|50|49|49|48|46|46|47|45|44|42|42|41|40|39|38|37|35|34|34|33|31|31|32|58|32|33|36|35|36|37|38|39|40|41|43|43|44|45|55|47|48|51|50|51|52|54|54|55|57|57|58|59|0\n67|67|66|65|64|62|62|63|61|60|58|56|55|54|54|53|50|49|49|51|48|47|43|43|42|41|41|45|39|39|38|36|36|37|59|37|38|40|40|46|42|44|44|45|46|47|48|52|50|51|52|53|57|55|56|57|58|59|60|61|69|63|64|65|66|68|68|69|0\n44|44|43|40|40|39|38|38|37|36|35|34|32|31|31|30|28|27|26|25|25|24|24|29|26|27|28|29|30|33|32|33|34|35|36|37|42|39|41|41|42|43|45|45|0\n39|36|36|35|32|30|30|29|28|28|33|27|26|23|22|22|24|21|21|38|25|23|24|25|26|27|34|29|31|31|32|33|34|35|37|37|38|39|0\n43|41|41|40|39|37|37|36|36|44|45|35|33|33|31|29|29|28|28|27|26|25|25|47|26|27|32|30|30|31|32|34|34|35|46|38|38|39|40|42|42|43|44|45|46|47|0\n21|21|20|19|19|23|18|16|16|15|14|14|25|15|17|17|18|24|20|22|22|23|24|25|0\n39|36|35|35|34|33|31|31|30|29|27|26|24|23|23|25|22|21|21|38|22|28|24|25|26|27|28|29|30|32|32|33|34|37|36|37|38|39|0\n9|9|7|7|8|11|8|10|10|11|0\n13|12|9|9|10|8|8|11|10|11|12|13|0\n40|40|37|34|33|33|35|32|31|30|30|29|28|26|26|25|24|23|22|22|39|23|24|25|27|27|28|29|38|31|32|36|34|35|36|37|38|39|41|41|0\n29|28|27|25|25|24|23|22|21|21|30|31|20|18|18|19|33|19|20|32|22|23|24|26|26|27|28|29|30|31|32|33|0\n30|30|29|26|26|27|25|25|32|33|24|23|22|21|20|19|19|35|20|21|22|23|24|34|28|27|28|29|31|31|32|33|34|35|0\n21|21|20|19|18|18|23|17|16|14|14|15|25|15|16|17|24|19|20|22|22|23|24|25|0\n37|37|36|34|33|33|32|31|30|28|28|29|26|25|23|22|22|21|21|27|24|23|24|25|26|27|39|29|30|31|32|35|34|35|36|38|38|39|0\n26|25|25|24|21|20|20|22|18|17|17|19|16|16|29|28|18|19|23|21|22|23|24|27|26|27|28|29|0\n53|51|47|45|44|44|43|43|48|42|42|41|40|38|38|37|36|35|34|33|32|30|30|29|28|28|52|29|31|31|32|33|34|35|36|37|39|39|40|41|50|49|46|45|46|47|48|49|50|51|52|53|0\n58|57|55|55|54|52|52|51|51|50|49|47|45|44|44|43|41|41|40|37|37|36|36|35|34|33|32|31|31|48|32|33|34|35|39|38|38|39|40|42|42|43|46|45|46|47|48|49|50|59|53|53|54|56|56|57|58|59|0\n29|29|30|27|25|24|23|22|22|21|20|19|17|17|18|28|18|19|20|21|26|23|24|25|26|27|28|31|30|31|0\n20|19|18|18|17|17|16|15|14|13|13|23|14|15|16|22|21|19|20|21|22|23|0\n36|36|34|34|33|31|31|30|30|38|39|29|28|25|24|24|26|23|22|22|41|23|27|25|26|27|28|29|40|32|32|33|35|35|37|37|38|39|40|41|0\n59|58|58|55|51|51|52|53|54|56|50|48|47|46|45|45|44|43|41|41|40|37|36|36|38|34|34|33|32|32|61|33|35|35|39|37|38|39|40|42|42|43|44|49|46|47|48|49|50|57|52|53|54|55|56|57|60|59|60|61|0\n41|40|40|39|37|37|36|35|35|33|32|30|30|29|28|27|26|25|24|23|23|34|24|25|26|27|28|29|31|31|32|33|34|43|36|38|38|39|42|41|42|43|0\n35|32|31|31|30|29|26|25|25|24|24|23|22|21|20|19|19|34|20|21|22|23|28|27|26|27|28|29|30|33|32|33|34|35|0\n24|24|22|21|19|18|18|17|16|15|14|14|23|15|16|17|20|19|20|21|22|23|25|25|0\n21|18|18|16|13|13|14|15|12|12|20|17|14|15|16|17|19|19|20|21|0\n30|30|26|25|25|27|24|21|20|20|19|19|18|17|17|29|18|23|22|21|22|23|24|28|26|27|28|29|31|31|0\n35|33|31|30|30|29|27|25|25|26|24|23|20|20|21|19|19|34|22|21|22|23|24|28|26|27|28|29|32|31|32|33|34|35|0\n39|39|40|38|36|36|35|34|32|32|31|28|27|26|25|25|29|24|23|23|42|43|24|30|26|27|28|29|30|31|33|33|34|35|37|37|38|41|40|41|42|43|0\n58|55|54|53|52|52|51|51|49|49|48|47|47|46|45|43|37|37|38|36|36|40|41|34|32|32|33|31|31|44|35|33|34|35|42|39|38|39|40|41|42|43|44|45|46|59|48|50|50|57|56|53|54|55|56|57|58|59|0\n31|31|32|30|29|28|28|34|35|26|25|25|24|22|21|21|20|20|37|23|22|23|24|27|26|27|36|29|30|33|32|33|34|35|36|37|0\n42|42|40|40|39|39|44|45|34|33|32|32|35|31|30|29|28|28|37|25|25|26|27|47|26|27|38|29|30|31|36|33|34|35|36|37|38|46|41|41|43|43|44|45|46|47|0\n61|56|56|55|54|49|49|47|46|45|45|42|42|43|44|51|52|41|40|39|38|37|37|58|36|35|34|33|32|32|60|33|34|35|36|59|38|39|40|41|53|43|44|48|46|47|48|50|50|51|52|53|54|55|57|57|58|59|60|61|0\n14|14|13|11|10|9|9|12|10|11|12|13|15|15|0\n30|30|26|26|25|23|23|22|21|21|19|19|18|17|17|29|18|20|20|28|22|24|24|25|27|27|28|29|31|31|0\n25|23|22|19|19|20|17|17|16|15|14|14|24|15|16|18|18|21|20|21|22|23|24|25|0\n31|30|27|27|26|24|24|22|22|21|19|18|18|17|17|29|20|19|20|21|23|23|25|25|26|28|28|29|30|31|0\n24|24|25|23|22|22|27|21|20|19|18|17|16|16|29|17|18|19|20|21|28|23|26|25|26|27|28|29|0\n29|28|25|22|22|21|21|20|19|18|17|17|16|16|27|26|18|19|20|24|23|23|24|25|26|27|28|29|0\n23|23|22|21|20|19|19|25|17|17|16|15|15|27|16|18|18|26|20|21|22|24|24|25|26|27|0\n60|59|58|57|57|55|54|54|52|51|50|45|45|44|43|42|41|40|40|47|39|38|37|36|35|35|34|33|32|32|53|33|34|49|36|37|38|39|48|41|42|43|44|46|46|47|48|49|50|51|52|53|56|55|56|61|58|59|60|61|0\n21|19|16|16|15|15|14|13|12|12|20|13|14|18|17|17|18|19|20|21|0\n29|27|27|26|25|25|23|23|22|20|19|19|18|17|17|31|18|21|20|21|22|24|24|30|26|28|28|29|30|31|0\n26|25|24|23|22|22|21|19|19|17|16|15|15|18|16|17|18|20|20|21|27|23|24|25|26|27|0\n34|33|32|32|31|30|28|27|25|25|26|24|22|22|21|20|19|19|20|21|23|23|24|29|26|27|28|29|30|31|35|33|34|35|0\n50|47|46|46|45|45|40|40|39|38|38|37|37|43|36|36|35|32|32|31|31|29|28|27|27|30|28|29|30|34|33|33|34|35|51|44|42|39|41|41|42|43|44|49|48|47|48|49|50|51|0\n28|25|25|26|27|24|24|23|22|21|19|19|18|17|17|31|18|20|20|21|22|23|30|29|26|27|28|29|30|31|0\n69|67|66|65|65|64|61|61|62|58|58|57|56|56|55|54|53|52|52|51|50|50|71|72|47|46|46|48|45|43|43|42|40|40|39|39|74|75|41|41|42|44|44|45|49|47|48|49|73|51|70|53|54|55|60|57|59|59|60|63|62|63|64|68|66|67|68|69|70|71|72|73|74|75|0\n38|36|36|34|34|33|32|31|31|30|28|28|27|25|23|22|22|21|21|26|24|23|24|25|26|27|29|29|30|39|32|33|35|35|37|37|38|39|0\n15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n30|29|29|27|25|25|23|23|22|20|19|18|18|17|17|28|21|19|20|21|22|24|24|26|26|27|28|31|30|31|0\n22|21|21|19|17|17|16|14|14|13|13|20|15|15|16|18|18|19|20|23|22|23|0\n37|36|36|35|34|33|31|30|30|27|27|26|24|24|23|22|22|21|21|39|29|23|25|25|26|28|28|29|32|31|32|33|34|35|38|37|38|39|0\n61|60|59|58|56|52|51|51|53|50|50|55|49|48|48|62|63|46|45|44|43|42|42|41|40|39|38|37|35|34|34|36|65|35|36|37|38|39|40|41|47|43|44|45|46|47|64|49|57|54|52|53|54|55|56|57|58|59|60|61|62|63|64|65|0\n19|17|17|15|14|13|11|11|12|16|12|13|14|15|16|18|18|19|0\n36|33|33|34|32|32|30|29|27|26|26|25|24|23|22|21|20|20|31|21|22|23|24|25|28|27|28|29|30|31|37|35|34|35|36|37|0\n43|41|37|36|35|35|34|33|32|30|30|31|39|29|28|27|24|24|25|23|23|42|26|25|26|27|28|29|40|31|32|33|34|38|36|37|38|39|40|41|42|43|0\n56|54|53|51|51|52|50|49|49|57|48|47|45|44|43|43|42|41|40|39|37|37|36|33|32|32|34|31|31|59|35|33|34|35|36|38|38|39|40|41|42|46|44|45|46|47|48|58|50|55|52|53|54|55|56|57|58|59|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n65|65|66|64|64|68|69|61|61|62|60|58|57|56|56|55|55|51|50|48|47|47|46|46|52|45|44|43|42|41|39|38|37|37|40|54|38|39|40|41|42|43|44|45|53|49|48|49|50|51|52|53|54|71|59|57|58|59|60|63|62|63|70|67|66|67|68|69|70|71|0\n33|32|31|31|34|29|25|25|24|23|22|22|27|21|20|19|19|30|20|21|28|23|24|26|26|27|28|29|30|35|32|33|34|35|0\n41|40|37|37|36|36|35|34|33|31|30|29|29|28|27|26|26|42|43|25|24|24|45|25|44|27|28|32|30|31|32|33|34|35|39|38|38|39|40|41|42|43|44|45|0\n25|25|24|23|22|22|21|19|16|16|17|15|15|20|18|17|18|19|20|21|27|23|24|26|26|27|0\n48|45|44|44|46|40|40|41|42|38|38|39|37|35|34|33|33|31|29|28|27|26|26|30|32|27|28|29|30|31|32|36|34|35|36|37|49|39|43|41|42|43|47|45|46|47|48|49|0\n77|73|73|67|66|65|64|63|63|62|62|69|70|71|72|75|61|60|60|78|79|59|58|56|55|55|54|51|50|50|52|49|48|47|46|44|43|43|42|42|81|45|44|45|46|47|48|49|53|51|52|53|54|57|56|57|58|59|80|61|76|68|64|65|66|67|68|69|70|71|72|74|74|75|76|77|78|79|80|81|0\n14|14|13|11|10|9|9|12|10|11|12|13|15|15|0\n36|36|37|38|32|32|33|31|30|26|26|25|25|28|23|23|22|21|21|35|22|24|24|29|27|27|28|29|30|31|34|33|34|35|39|37|38|39|0\n33|31|30|28|26|26|25|23|23|24|22|21|20|19|18|18|32|19|20|21|22|29|24|25|27|27|28|29|30|31|32|33|0\n17|16|16|15|14|13|11|11|12|19|12|13|14|15|18|17|18|19|0\n15|15|16|13|11|11|10|10|14|12|12|13|14|17|16|17|0\n31|30|28|28|26|25|24|23|22|21|20|19|18|17|17|27|18|19|20|21|22|23|24|25|26|27|29|29|30|31|0\n64|63|63|62|57|57|56|55|54|53|51|50|50|49|48|48|59|60|47|45|45|46|43|43|44|41|40|38|38|37|36|35|35|42|36|37|39|39|40|41|42|67|44|66|46|47|61|49|52|51|52|53|54|55|56|58|58|59|60|61|62|65|64|65|66|67|0\n41|37|36|35|35|38|34|31|31|30|29|28|27|26|26|25|24|22|22|23|40|23|24|25|33|27|28|29|30|32|32|33|34|39|36|37|38|39|40|41|0\n14|14|13|12|10|9|9|11|10|11|12|13|15|15|0\n41|41|42|40|39|38|37|36|36|44|33|33|31|30|30|29|27|26|25|25|24|24|35|28|26|27|28|29|32|31|32|34|34|35|45|37|38|39|40|43|42|43|44|45|0\n72|71|71|70|69|65|65|64|63|63|67|62|61|59|58|57|56|55|54|53|53|51|51|49|48|47|46|46|45|44|43|42|41|40|39|39|74|75|40|41|42|43|44|45|50|47|48|49|50|52|52|60|54|55|56|57|58|59|60|61|62|68|64|66|66|67|68|69|70|73|72|73|74|75|0\n43|41|39|38|37|36|36|35|33|33|32|28|28|29|30|27|26|25|24|23|23|42|24|25|26|27|31|29|30|31|32|34|34|35|40|37|38|39|40|41|42|43|0\n9|9|8|7|7|11|8|10|10|11|0\n3|3|0\n23|23|22|20|19|18|18|17|16|15|14|14|25|15|16|17|21|19|20|21|22|24|24|25|0\n5|4|4|5|0\n15|14|12|11|10|9|9|13|10|11|12|13|14|15|0\n55|55|56|53|51|50|50|49|47|46|46|45|42|42|43|40|39|38|37|37|36|34|33|32|32|31|30|30|54|31|35|33|34|35|36|41|38|39|40|41|44|43|44|45|48|47|48|49|52|51|52|53|54|57|56|57|0\n34|33|32|32|30|28|28|27|25|24|23|23|22|20|20|19|19|31|21|21|22|26|24|25|26|27|29|29|30|31|35|33|34|35|0\n35|31|31|32|30|30|34|29|27|27|26|26|25|23|22|21|20|20|24|21|22|23|24|25|37|28|28|29|36|33|32|33|34|35|36|37|0\n6|5|5|7|6|7|0\n17|17|15|15|14|13|12|11|11|19|12|13|14|16|16|18|18|19|0\n38|38|37|35|35|34|33|32|31|31|40|41|29|29|28|26|25|25|24|23|23|43|24|27|26|27|28|30|30|42|32|33|34|36|36|37|39|39|40|41|42|43|0\n53|52|52|51|49|49|50|48|46|44|44|45|43|43|56|41|38|36|36|35|34|34|39|33|32|31|30|30|42|31|32|33|40|35|37|37|38|39|40|41|42|57|47|45|46|47|48|55|50|51|54|53|54|55|56|57|0\n53|53|52|50|50|51|48|48|47|47|46|45|44|44|43|39|39|38|35|35|36|33|33|32|31|30|30|41|42|31|32|34|34|37|36|37|38|40|40|41|42|43|57|45|46|56|49|49|55|51|52|54|54|55|56|57|0\n46|46|43|43|40|39|37|36|35|35|34|32|32|31|30|30|41|29|28|27|25|25|26|45|26|27|28|29|42|31|33|33|34|38|36|37|38|39|40|41|42|44|44|45|47|47|0\n45|44|44|43|43|42|41|38|37|36|36|39|35|33|32|32|31|28|28|27|26|26|25|25|30|27|29|29|30|31|34|33|34|35|40|37|38|39|40|41|42|47|46|45|46|47|0\n13|10|9|9|8|8|12|11|10|11|12|13|0\n43|38|37|36|35|35|39|40|33|31|31|30|29|29|28|26|26|25|24|23|23|42|24|25|27|27|28|34|30|32|32|33|34|41|36|37|38|39|40|41|42|43|0\n41|40|37|37|38|39|42|43|36|35|34|30|29|29|28|27|26|26|32|25|24|24|45|25|33|27|28|31|30|31|32|33|34|35|36|44|38|39|40|41|42|43|44|45|0\n42|41|39|38|38|37|36|35|34|33|33|43|31|30|30|29|28|27|26|25|24|24|45|25|26|27|28|29|32|31|32|44|34|35|36|37|40|39|40|41|42|43|44|45|0\n13|12|11|8|8|9|10|9|10|11|12|13|0\n24|24|21|21|20|19|18|17|17|15|14|14|16|15|16|23|18|19|20|22|22|23|25|25|0\n10|9|9|8|7|7|8|11|10|11|0\n38|37|35|35|34|32|31|30|30|29|28|28|26|25|24|23|21|21|22|27|22|23|24|25|26|27|39|29|33|31|32|33|34|36|36|37|38|39|0\n8|7|6|6|9|7|8|9|0\n10|8|8|9|7|7|11|9|10|11|0\n57|54|54|52|52|51|49|48|48|47|46|45|44|38|38|37|37|40|36|35|34|34|42|33|32|31|30|30|56|31|32|33|43|35|36|41|39|39|40|41|42|43|44|45|46|47|50|49|50|51|53|53|55|55|56|57|0\n64|64|63|62|59|58|58|57|54|54|55|53|53|52|51|49|48|48|47|47|66|67|46|45|44|43|41|41|40|38|37|37|36|36|69|39|38|39|40|42|42|43|44|45|46|68|50|49|50|51|52|61|56|55|56|57|60|59|60|61|62|63|65|65|66|67|68|69|0\n63|61|57|56|55|53|53|52|50|50|49|48|47|47|58|46|45|45|43|43|42|41|40|39|36|35|34|34|37|33|33|62|38|35|36|37|38|39|40|41|42|44|44|60|46|59|48|49|51|51|52|54|54|55|56|57|58|59|60|61|62|63|0\n33|33|32|31|30|29|28|27|26|26|25|24|21|21|20|19|19|23|20|22|22|23|24|25|35|27|28|29|30|31|32|34|34|35|0\n45|45|44|44|42|41|40|38|38|37|36|35|33|32|32|31|30|28|28|27|26|25|25|43|26|27|29|29|30|31|34|33|34|35|36|37|39|39|40|41|42|43|47|46|46|47|0\n31|29|27|26|25|24|23|22|21|21|20|18|18|17|17|30|19|19|20|28|22|23|24|25|26|27|28|29|30|31|0\n37|34|34|32|32|31|28|28|29|26|26|25|23|23|21|21|20|20|36|22|22|24|24|25|27|27|30|29|30|31|33|33|35|35|36|37|0\n10|9|9|8|7|7|8|11|10|11|0\n36|36|35|34|28|28|27|26|26|30|31|25|23|23|22|21|20|20|33|21|22|24|24|25|32|27|29|29|30|31|32|33|34|35|37|37|0\n41|38|38|39|37|37|42|43|36|33|33|28|28|29|30|31|27|26|26|25|24|24|45|25|35|27|32|29|30|31|32|34|34|35|36|44|40|39|40|41|42|43|44|45|0\n19|17|17|15|14|13|12|11|11|16|12|13|14|15|16|18|18|19|0\n33|33|32|30|30|29|27|27|26|25|25|35|24|22|22|21|20|20|37|21|23|23|24|36|26|28|28|29|31|31|32|34|34|35|36|37|0\n22|22|20|19|16|15|15|17|14|13|13|21|14|18|16|17|18|19|20|21|23|23|0\n38|38|36|34|33|32|32|31|27|27|26|25|25|29|23|23|22|21|21|37|22|24|24|30|26|28|28|29|30|31|35|33|34|35|36|37|39|39|0\n34|34|29|28|27|25|25|26|30|31|24|23|22|21|20|19|19|33|20|21|22|23|24|32|26|27|28|29|30|31|32|33|35|35|0\n58|58|56|55|54|53|51|48|48|49|46|46|47|45|44|42|42|41|39|38|37|36|35|34|34|33|32|31|31|57|32|33|40|35|36|37|38|39|40|41|43|43|44|45|52|47|50|49|50|51|52|53|54|55|56|57|59|59|0\n30|28|28|27|22|21|21|23|20|19|19|25|18|17|17|31|18|26|20|24|22|23|24|25|26|27|29|29|30|31|0\n85|84|82|80|80|81|79|77|77|76|75|73|73|72|70|70|69|67|66|66|65|64|63|62|61|61|86|87|60|59|58|57|55|55|54|53|51|51|50|49|48|47|46|46|89|47|48|49|50|52|52|53|54|56|56|57|58|59|60|88|62|63|64|65|68|67|68|69|71|71|72|74|74|75|76|78|78|79|83|81|82|83|84|85|86|87|88|89|0\n49|48|48|47|45|41|40|40|42|38|37|36|36|35|35|44|34|32|32|31|30|28|28|27|27|51|29|29|30|31|33|33|34|46|39|37|38|39|43|41|42|43|44|45|46|47|50|49|50|51|0\n55|54|54|53|51|51|50|46|46|47|48|45|43|42|41|40|39|37|37|38|36|35|34|33|31|31|30|30|57|32|32|33|34|35|36|44|38|39|40|41|42|43|44|45|49|47|48|49|50|52|52|53|56|55|56|57|0\n15|13|12|10|10|9|9|14|11|11|12|13|14|15|0\n27|24|24|18|18|16|16|17|20|21|22|15|15|26|23|17|19|19|20|21|22|23|25|25|26|27|0\n11|9|8|7|7|10|8|9|10|11|0\n53|50|47|47|46|46|45|45|44|41|41|42|40|39|39|38|36|34|34|33|33|31|30|29|28|28|32|29|30|31|32|37|35|35|36|37|38|52|40|43|42|43|44|51|49|48|48|49|50|51|52|53|0\n45|45|46|47|42|42|41|40|40|39|32|32|33|34|35|36|30|29|29|28|27|27|26|26|49|38|28|31|30|31|37|33|34|35|36|37|38|39|44|41|43|43|44|48|46|47|48|49|0\n27|26|24|22|19|18|18|20|17|17|16|15|15|25|16|23|21|19|20|21|22|23|24|25|26|27|0\n38|38|37|37|36|34|34|35|31|31|30|29|28|27|25|23|23|24|22|22|33|26|24|25|26|27|28|29|30|32|32|33|41|35|36|40|39|39|40|41|0\n40|40|39|38|37|36|35|35|42|33|32|29|28|28|27|26|26|25|24|23|23|34|24|25|31|27|30|29|30|31|32|33|34|43|36|37|38|39|41|41|42|43|0\n62|61|60|58|58|56|53|52|52|54|49|49|50|48|47|46|44|44|43|41|41|38|37|37|39|36|35|34|34|33|33|63|57|35|36|40|38|39|40|42|42|43|45|45|46|47|48|51|50|51|55|53|54|55|56|57|59|59|60|61|62|63|0\n47|46|45|44|43|43|42|39|39|38|37|36|36|41|33|32|31|31|30|29|28|27|26|26|35|27|28|29|30|34|32|33|34|35|49|37|38|40|40|41|42|48|44|45|46|47|48|49|0\n69|67|65|64|63|63|62|58|58|57|56|56|60|52|52|51|47|46|46|48|49|44|44|45|54|43|41|41|40|38|38|37|36|36|68|37|39|39|40|42|42|43|55|45|50|47|48|49|50|51|53|53|54|55|61|57|59|59|60|61|62|66|64|65|66|67|68|69|0\n19|18|14|14|13|12|12|11|11|17|16|13|15|15|16|17|18|19|0\n48|47|45|44|44|46|43|40|40|41|38|37|34|33|33|35|32|31|29|28|28|27|26|26|39|27|30|29|30|31|32|36|34|35|36|37|38|39|42|41|42|43|49|45|46|47|48|49|0\n51|49|48|46|44|42|42|43|41|40|40|39|37|37|36|34|34|33|31|31|30|29|28|27|27|50|28|29|30|32|32|33|35|35|36|38|38|39|47|41|45|43|44|45|46|47|48|49|50|51|0\n7|5|5|6|6|7|0\n19|18|17|15|14|13|12|11|11|16|12|13|14|15|16|17|18|19|0\n35|33|32|31|30|29|28|27|26|24|24|23|20|20|21|19|19|34|22|21|22|23|25|25|26|27|28|29|30|31|32|33|34|35|0\n64|63|62|60|60|61|65|66|59|58|56|56|57|68|69|55|53|53|50|49|48|48|51|46|45|44|43|42|42|41|39|39|38|37|37|71|38|40|40|41|47|43|44|45|46|47|52|49|50|51|52|54|54|55|70|57|58|59|67|61|62|63|64|65|66|67|68|69|70|71|0\n34|31|31|32|33|35|30|29|25|23|23|22|22|26|27|21|20|20|37|21|28|24|24|25|26|27|28|29|30|36|32|33|34|35|36|37|0\n49|49|48|46|45|45|44|43|42|37|36|35|35|38|34|34|33|32|31|30|30|41|28|27|27|29|28|29|51|31|32|33|40|39|36|37|38|39|40|41|42|43|44|47|46|47|48|50|50|51|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n20|19|18|18|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0\n15|14|11|11|12|9|9|10|10|13|12|13|14|15|0\n14|13|11|11|10|9|9|15|10|12|12|13|14|15|0\n46|46|45|45|44|43|42|42|49|40|40|39|38|37|34|34|35|32|31|31|30|29|28|27|27|51|28|29|30|33|32|33|36|35|36|37|38|39|41|41|50|43|44|48|47|47|48|49|50|51|0\n82|82|81|79|79|78|77|77|76|73|73|72|72|75|71|70|68|66|64|63|63|62|61|60|60|59|56|55|53|53|54|57|52|49|49|50|48|47|44|44|45|46|69|45|46|47|48|51|50|51|52|58|54|55|56|57|58|59|67|61|62|65|64|65|66|67|68|69|70|71|85|74|74|75|76|84|78|80|80|81|83|83|84|85|0\n22|20|19|17|17|18|16|14|13|13|15|23|14|15|16|21|18|19|20|21|22|23|0\n35|34|33|32|31|31|30|29|28|27|26|25|24|24|22|21|20|20|23|21|22|23|37|25|26|27|28|29|30|36|32|33|34|35|36|37|0\n27|23|22|22|24|21|20|19|17|17|16|15|15|26|16|18|18|19|20|21|25|23|24|25|26|27|0\n35|32|32|30|29|29|28|25|24|24|23|22|22|21|20|19|19|34|20|21|27|23|26|25|26|27|28|31|30|31|33|33|34|35|0\n15|12|12|11|9|9|10|14|10|11|13|13|14|15|0\n39|37|36|35|34|33|33|32|31|29|28|25|24|22|22|23|26|21|21|30|27|23|24|25|26|27|28|29|30|31|32|38|34|35|36|37|38|39|0\n69|67|62|62|61|59|59|60|64|65|58|57|56|55|54|52|52|51|49|49|48|47|37|37|38|39|40|41|42|43|44|45|36|36|68|46|38|39|40|41|42|43|44|45|46|47|48|50|50|51|53|53|54|55|56|57|58|66|60|61|63|63|64|65|66|67|68|69|0\n27|26|26|23|23|22|22|25|20|19|17|17|16|16|21|18|18|19|20|21|29|24|24|25|28|27|28|29|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n28|27|27|26|23|23|21|21|20|18|17|17|16|16|25|19|18|19|20|22|22|24|24|25|26|29|28|29|0\n7|7|6|6|9|8|8|9|0\n56|55|54|53|50|48|47|47|46|45|45|51|44|43|42|42|40|38|38|37|35|35|34|32|31|31|30|30|41|33|32|33|34|36|36|37|39|39|40|41|57|43|44|52|46|49|48|49|50|51|52|53|54|55|56|57|0\n53|50|50|51|52|48|48|47|45|45|44|42|42|41|41|55|56|57|38|36|36|35|33|32|32|31|31|39|40|59|34|33|34|35|37|37|38|39|40|58|43|43|44|46|46|47|49|49|54|51|52|53|54|55|56|57|58|59|0\n49|48|48|47|46|45|44|44|40|38|38|37|36|36|41|35|33|32|32|31|30|28|28|27|27|43|29|29|30|31|34|33|34|35|42|37|39|39|40|41|42|43|51|45|46|47|50|49|50|51|0\n30|29|29|27|25|23|23|22|21|21|20|18|18|17|17|28|19|19|20|26|22|24|24|25|26|27|28|31|30|31|0\n21|19|19|18|16|14|14|13|12|12|17|13|15|15|16|17|18|20|20|21|0\n34|33|33|32|30|29|28|28|26|25|24|21|20|19|19|22|23|27|20|21|22|23|24|25|26|27|31|29|30|31|32|35|34|35|0\n65|63|61|60|57|57|58|56|55|53|52|52|51|49|49|47|47|46|44|44|45|42|42|41|38|38|39|37|36|35|34|34|64|35|36|37|40|39|40|41|43|43|62|45|46|48|48|50|50|51|54|53|54|55|56|59|58|59|60|61|62|63|64|65|0\n25|23|22|21|19|19|18|17|16|15|14|14|24|15|16|17|18|20|20|21|22|23|24|25|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n58|58|55|54|53|51|50|50|49|48|48|47|43|42|39|39|40|38|38|44|45|37|36|34|33|33|32|31|31|57|32|35|34|35|36|37|46|41|40|41|42|43|44|45|46|47|56|49|52|51|52|53|54|55|56|57|59|59|0\n42|41|40|40|43|37|37|38|36|34|34|33|31|30|30|29|26|26|27|25|24|24|45|25|28|27|28|29|32|31|32|33|35|35|36|39|38|39|44|41|42|43|44|45|0\n36|34|33|32|32|31|31|29|28|28|27|24|23|22|21|21|25|20|20|26|22|23|24|25|26|27|30|29|30|37|35|33|34|35|36|37|0\n26|25|24|24|23|22|21|20|19|18|18|17|16|16|29|17|28|19|20|21|22|23|27|25|26|27|28|29|0\n57|49|48|47|45|45|46|50|43|42|41|41|40|40|52|38|38|37|36|35|34|33|32|32|54|31|30|30|56|31|55|33|34|35|36|37|39|39|53|44|42|43|44|51|46|47|48|49|50|51|52|53|54|55|56|57|0\n36|35|35|34|32|31|31|30|28|28|27|26|26|38|39|25|23|23|22|22|41|24|24|25|40|27|29|29|30|33|32|33|34|37|36|37|38|39|40|41|0\n78|77|76|75|72|72|71|71|69|68|66|65|65|64|63|62|61|61|60|55|54|52|52|53|56|51|50|48|48|49|58|59|79|47|46|43|43|44|42|42|81|45|44|45|46|47|80|49|50|51|57|53|54|55|56|57|58|59|60|70|62|63|64|67|66|67|68|69|70|74|73|73|74|75|76|77|78|79|80|81|0\n57|57|56|53|52|50|49|47|47|46|45|45|51|54|44|42|42|41|38|36|36|35|34|34|39|40|32|31|31|33|32|33|59|35|37|37|38|39|40|41|43|43|44|55|46|48|48|49|50|51|52|53|54|55|56|58|58|59|0\n32|30|29|29|31|27|26|25|23|22|22|21|20|19|18|18|28|19|20|21|24|23|24|25|26|27|28|33|30|31|32|33|0\n52|51|51|50|49|49|48|46|45|44|44|42|41|39|39|38|38|37|36|34|34|35|33|32|30|29|29|31|30|31|32|33|55|35|36|37|43|40|40|41|42|43|47|45|46|47|48|54|50|53|52|53|54|55|0\n44|44|43|41|41|42|40|38|37|36|35|34|33|33|32|30|30|29|28|28|26|25|25|27|26|27|47|29|31|31|32|39|34|35|36|37|38|39|40|46|42|43|45|45|46|47|0\n36|36|35|33|33|34|32|31|30|30|28|27|25|25|24|22|22|21|21|29|23|23|24|26|26|27|28|29|39|31|32|38|34|35|37|37|38|39|0\n22|21|20|19|18|17|16|14|14|13|13|23|15|15|16|17|18|19|20|21|22|23|0\n59|59|58|57|56|54|54|53|51|51|50|50|61|48|45|45|46|43|43|42|41|41|40|39|38|36|35|35|34|33|33|63|34|37|36|37|38|39|40|49|42|44|44|47|46|47|48|49|62|52|52|53|55|55|56|57|58|60|60|61|62|63|0\n25|23|22|21|20|19|18|17|16|14|14|15|24|15|16|17|18|19|20|21|22|23|24|25|0\n26|25|23|23|22|21|20|20|27|18|18|17|16|16|29|17|19|19|28|21|22|24|24|25|26|27|28|29|0\n28|27|27|26|23|23|24|21|21|22|20|19|17|17|18|31|18|19|20|30|22|25|24|25|26|29|28|29|30|31|0\n35|33|32|32|31|29|28|27|26|25|23|22|21|21|20|19|19|30|20|24|22|23|24|25|26|27|28|29|30|31|34|33|34|35|0\n47|46|46|45|44|43|42|42|40|38|37|37|36|33|33|34|31|30|29|28|28|27|26|26|41|27|32|29|30|31|32|35|34|35|36|39|38|39|40|41|49|43|44|45|48|47|48|49|0\n24|23|22|20|20|21|19|18|15|15|14|14|17|16|16|17|18|19|25|21|22|23|24|25|0\n18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0\n22|22|20|19|18|17|14|14|15|13|13|21|16|15|16|17|18|19|20|21|23|23|0\n46|44|44|45|43|40|40|41|39|38|37|37|48|49|36|34|34|31|30|30|32|29|28|27|27|51|28|29|33|31|32|33|35|35|36|50|38|39|42|41|42|43|47|45|46|47|48|49|50|51|0\n33|31|28|27|26|26|29|24|24|23|21|21|20|19|18|18|32|19|20|22|22|23|25|25|30|27|28|29|30|31|32|33|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n83|81|81|80|79|79|78|76|74|74|73|72|71|68|67|66|64|63|62|62|61|60|60|69|59|58|57|56|55|54|54|77|85|53|51|50|50|49|48|47|46|45|45|87|46|47|48|49|52|51|52|53|86|55|56|57|58|59|70|61|65|63|64|65|66|67|68|69|70|71|72|73|75|75|76|77|78|84|80|82|82|83|84|85|86|87|0\n22|21|21|20|17|17|14|14|15|13|13|19|16|15|16|18|18|19|20|23|22|23|0\n34|34|32|29|27|27|28|26|25|25|24|22|21|21|20|19|19|33|20|23|22|23|24|31|26|30|28|29|30|31|32|33|35|35|0\n43|38|37|35|35|36|34|33|32|32|40|31|28|28|29|27|25|25|24|23|23|42|24|26|26|27|30|29|30|31|41|33|34|39|36|37|38|39|40|41|42|43|0\n30|30|31|29|27|27|28|26|25|22|20|19|19|21|18|18|24|23|20|21|22|23|24|25|26|33|28|29|32|31|32|33|0\n47|45|45|42|41|40|39|39|43|38|37|36|35|35|48|49|33|33|31|30|29|29|28|27|27|51|28|32|30|31|32|34|34|50|36|37|38|44|40|41|42|43|44|46|46|47|48|49|50|51|0\n14|14|10|9|9|11|12|13|10|11|12|13|15|15|0\n46|45|43|43|42|40|39|39|41|38|36|35|34|34|32|30|29|29|28|27|25|25|26|33|26|27|28|31|30|31|32|33|37|35|36|37|38|47|40|41|42|44|44|45|46|47|0\n28|28|27|26|26|30|31|23|23|22|21|20|20|19|18|18|33|19|25|21|22|24|24|25|32|27|29|29|30|31|32|33|0\n86|85|83|82|81|80|80|79|77|76|76|75|73|73|72|71|67|66|65|65|68|69|64|64|63|61|59|58|55|55|56|57|53|53|50|50|51|49|48|46|46|45|45|62|47|47|48|49|52|51|52|54|54|60|56|57|58|59|60|61|62|63|87|70|66|67|68|69|70|71|72|74|74|75|78|77|78|79|84|81|82|83|84|85|86|87|0\n49|46|46|45|45|48|44|43|42|42|41|41|40|39|36|35|34|34|33|33|32|32|30|29|28|28|31|29|30|31|53|38|37|35|36|37|38|39|40|52|51|43|44|50|47|47|48|49|50|51|52|53|0\n33|32|31|30|29|28|28|27|26|25|24|24|35|23|20|20|21|22|37|21|22|23|36|25|26|27|34|29|30|31|32|33|34|35|36|37|0\n42|41|40|40|39|38|36|35|34|32|31|31|30|29|27|26|25|25|24|23|23|37|24|28|26|27|28|29|30|33|32|33|34|35|36|37|38|39|43|41|42|43|0\n37|35|32|31|29|28|28|27|26|26|33|25|23|23|22|20|20|21|36|21|22|24|24|25|34|27|30|29|30|31|32|33|34|35|36|37|0\n68|66|65|65|63|62|61|60|59|58|58|57|54|53|53|55|52|51|51|50|48|47|47|45|43|43|42|40|38|38|37|37|36|36|46|41|39|39|40|41|42|44|44|45|46|49|48|49|50|69|52|56|54|55|56|57|64|59|60|61|62|63|64|67|66|67|68|69|0\n10|9|9|7|7|8|8|11|10|11|0\n33|33|32|31|30|29|28|27|27|26|24|23|22|21|19|19|20|25|20|21|22|23|24|25|26|35|28|29|30|31|32|34|34|35|0\n41|39|36|35|34|34|37|33|32|31|29|29|28|26|26|25|24|23|22|22|40|23|24|25|27|27|28|30|30|31|32|33|38|35|36|37|38|39|40|41|0\n46|46|44|43|42|39|39|40|37|36|34|34|33|32|31|30|30|29|26|26|27|25|25|45|28|27|28|29|38|31|32|33|35|35|36|37|38|41|40|41|42|43|44|45|47|47|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n43|43|41|40|39|38|37|37|36|36|45|34|34|32|31|30|30|29|27|26|25|25|28|47|26|27|28|29|33|31|32|33|35|35|46|42|38|39|40|41|42|44|44|45|46|47|0\n18|18|14|14|15|13|12|11|11|17|12|13|16|15|16|17|19|19|0\n49|47|46|43|43|41|41|40|40|39|38|38|37|35|35|33|31|29|28|28|27|27|26|26|34|32|30|29|30|31|32|33|34|36|36|37|48|39|45|42|42|44|44|45|46|47|48|49|0\n53|50|49|47|47|48|51|43|43|44|41|41|40|39|38|37|36|34|32|31|31|33|30|29|28|28|46|29|30|35|32|33|34|35|36|37|38|39|40|42|42|45|44|45|46|52|48|49|50|51|52|53|0\n53|51|47|46|46|45|41|41|42|40|39|38|38|44|49|36|36|35|32|32|33|31|30|29|28|28|52|29|30|31|34|33|34|35|37|37|50|39|40|43|42|43|44|45|48|47|48|49|50|51|52|53|0\n29|28|28|27|26|25|24|24|31|23|22|21|20|19|18|18|33|19|20|21|22|23|32|25|26|27|30|29|30|31|32|33|0\n31|29|27|27|26|24|23|22|22|21|20|19|18|17|17|30|18|19|20|21|25|23|24|25|26|28|28|29|30|31|0\n44|40|39|39|38|38|42|36|36|34|34|35|33|31|31|29|28|25|25|26|24|24|30|27|26|27|28|29|30|32|32|33|45|35|37|37|43|41|40|41|42|43|44|45|0\n19|17|15|12|12|13|14|11|11|18|16|13|14|15|16|17|18|19|0\n35|34|32|31|29|29|30|28|26|25|25|23|21|20|20|19|19|24|22|21|22|23|24|27|26|27|28|33|30|31|32|33|34|35|0\n45|45|44|43|42|41|40|40|38|37|35|34|32|32|31|30|29|29|28|26|26|25|25|39|27|27|28|36|30|31|33|33|34|35|36|37|38|39|47|41|42|43|44|46|46|47|0\n34|33|33|35|32|31|31|30|28|26|25|24|24|23|22|21|20|20|29|21|22|23|27|25|26|27|28|29|30|37|32|36|34|35|36|37|0\n25|24|23|21|17|17|18|19|16|15|14|14|22|15|16|20|18|19|20|21|22|23|24|25|0\n45|44|42|37|37|38|35|35|34|34|40|33|31|30|29|28|27|27|26|25|24|24|43|25|26|32|28|29|30|31|32|33|41|36|36|39|38|39|40|41|42|43|44|45|0\n57|57|58|52|52|51|51|54|48|48|49|47|45|45|44|43|40|39|38|37|37|41|36|35|34|33|32|31|31|56|32|33|34|35|36|42|38|39|40|41|42|43|44|46|46|47|50|49|50|55|53|53|54|55|56|59|58|59|0\n33|32|31|30|29|29|28|27|26|25|25|24|23|21|20|19|19|22|20|21|22|23|24|35|26|27|28|34|30|31|32|33|34|35|0\n49|47|46|45|41|39|39|38|37|35|35|36|42|34|33|33|31|31|30|28|28|27|26|26|48|27|29|29|30|32|32|44|34|43|36|37|38|40|40|41|42|43|44|45|46|47|48|49|0\n94|93|92|88|88|87|87|90|86|85|84|83|82|80|79|79|78|76|76|75|73|73|72|70|70|69|67|66|65|62|61|61|63|59|58|58|57|56|56|55|54|53|50|49|49|51|52|95|50|51|52|53|54|55|68|57|60|59|60|64|62|63|64|65|66|67|68|69|71|71|72|74|74|75|77|77|78|81|80|81|82|83|84|85|86|91|89|89|90|91|92|93|94|95|0\n26|26|27|25|24|22|22|21|20|19|18|17|16|16|29|17|18|19|20|21|23|23|24|25|28|27|28|29|0\n43|42|41|41|40|38|37|37|36|36|45|33|33|32|29|29|30|31|28|26|26|25|25|47|27|27|28|35|30|31|32|34|34|35|46|39|38|39|40|44|42|43|44|45|46|47|0\n15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n44|41|41|40|40|39|37|37|36|34|33|33|32|31|31|30|29|27|26|25|24|24|28|25|26|27|28|29|30|45|32|35|34|35|36|38|38|39|43|42|42|43|44|45|0\n15|12|11|11|10|9|9|14|10|13|12|13|14|15|0\n21|21|22|19|18|15|15|16|14|13|13|20|14|17|16|17|18|19|20|23|22|23|0\n25|24|21|20|20|22|18|18|17|17|16|15|15|27|16|26|19|19|23|21|22|23|24|25|26|27|0\n44|43|43|38|38|37|36|35|35|40|34|33|30|30|31|29|27|27|26|25|24|24|42|25|26|28|28|29|32|31|32|33|34|41|36|37|39|39|40|41|42|45|44|45|0\n43|41|40|39|38|37|36|35|34|32|32|31|26|25|25|27|24|24|29|23|23|42|30|28|26|27|28|29|30|31|33|33|34|35|36|37|38|39|40|41|42|43|0\n22|21|20|19|19|18|17|15|14|13|13|16|14|15|16|17|18|23|20|21|22|23|0\n55|55|56|54|52|51|51|49|46|44|44|45|47|43|42|34|34|35|36|32|32|33|38|31|31|40|30|30|50|41|39|33|37|35|36|37|38|39|40|41|42|43|48|45|46|47|48|49|50|53|52|53|54|57|56|57|0\n24|24|23|22|20|19|19|21|26|27|17|17|16|16|29|18|18|28|20|21|22|23|25|25|26|27|28|29|0\n7|5|5|6|6|7|0\n11|9|8|7|7|10|8|9|10|11|0\n46|44|43|43|45|42|36|36|35|33|33|34|38|39|32|31|29|29|28|27|26|25|25|41|26|27|28|30|30|31|32|40|34|35|37|37|38|39|40|41|42|47|44|45|46|47|0\n21|16|16|15|14|14|18|13|12|12|20|13|19|15|17|17|18|19|20|21|0\n53|47|45|43|43|44|42|41|40|39|38|38|48|37|36|35|34|34|50|33|32|31|29|29|28|28|52|30|30|31|32|33|51|35|36|37|49|39|40|41|42|46|44|45|46|47|48|49|50|51|52|53|0\n42|41|39|39|38|36|36|35|35|34|33|32|27|27|26|26|29|25|24|23|23|31|24|25|30|28|28|29|30|31|32|33|34|43|37|37|38|40|40|41|42|43|0\n50|49|48|48|45|45|44|40|38|38|39|41|42|36|32|31|31|33|30|30|29|29|28|27|27|47|28|37|35|34|32|33|34|35|36|37|43|39|40|41|42|43|44|46|46|47|51|49|50|51|0\n27|26|22|21|21|23|20|18|18|19|16|15|15|17|16|17|25|19|20|24|22|23|24|25|26|27|0\n54|53|50|50|51|49|48|47|45|45|46|44|43|42|37|36|36|38|35|32|32|33|34|31|30|29|29|41|30|31|40|33|34|35|39|37|38|39|40|41|42|43|44|55|46|47|48|49|52|51|52|53|54|55|0\n32|31|30|30|28|27|25|25|24|23|22|21|20|19|18|18|29|19|20|21|22|23|24|26|26|27|28|29|33|31|32|33|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n21|18|17|16|16|15|14|12|12|13|20|13|14|15|19|17|18|19|20|21|0\n13|12|10|10|9|8|8|9|11|11|12|13|0\n22|21|21|19|18|16|16|15|13|13|14|20|14|15|17|17|18|19|20|23|22|23|0\n56|55|53|52|52|51|51|46|46|47|48|45|44|43|42|41|36|35|35|37|38|39|33|33|32|31|30|30|50|31|32|34|34|40|36|37|38|39|40|41|42|43|44|45|49|47|48|49|50|57|54|53|54|55|56|57|0\n20|19|19|17|16|15|14|13|12|12|18|13|14|15|16|17|18|21|20|21|0\n10|9|8|7|7|11|8|9|10|11|0\n65|63|61|61|60|59|59|58|57|54|53|52|52|55|51|50|49|48|47|45|45|44|44|66|67|43|42|41|40|39|38|37|36|36|69|37|38|39|40|41|42|43|68|46|46|47|48|49|50|51|56|53|54|55|56|57|58|64|60|62|62|63|64|65|66|67|68|69|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n66|66|64|62|61|57|57|58|59|60|55|55|53|52|52|50|47|47|48|49|46|45|41|41|42|40|39|39|38|37|36|35|35|65|36|37|38|44|40|43|42|43|44|45|46|51|48|49|50|51|54|53|54|56|56|63|58|59|60|61|62|63|64|65|67|67|0\n33|31|31|30|27|23|22|21|21|24|20|19|18|18|26|28|29|19|20|25|22|23|24|25|26|27|28|29|30|32|32|33|0\n42|42|41|39|39|34|32|31|31|30|30|29|28|27|27|36|26|25|24|23|23|38|24|25|26|37|28|29|35|33|32|33|34|35|36|37|38|40|40|41|43|43|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n42|41|40|36|36|37|38|39|35|33|33|30|29|29|28|26|26|24|23|23|25|32|24|25|27|27|28|31|30|31|32|34|34|35|43|37|38|39|40|41|42|43|0\n19|19|20|17|16|15|14|13|12|12|18|13|14|15|16|17|18|21|20|21|0\n25|23|21|20|20|19|17|17|16|14|14|15|24|15|16|18|18|19|22|21|22|23|24|25|0\n24|24|22|19|19|20|18|16|16|15|14|14|23|15|17|17|18|21|20|21|22|23|25|25|0\n47|45|44|41|41|42|39|38|38|37|35|35|34|34|33|32|30|29|27|27|26|25|25|31|26|28|28|29|30|31|32|33|46|36|36|37|40|39|40|43|42|43|44|45|46|47|0\n14|12|12|13|11|9|9|10|10|11|15|13|14|15|0\n46|43|41|41|42|40|39|39|38|37|36|36|35|33|31|31|29|29|28|27|26|25|25|34|26|27|28|30|30|32|32|33|34|35|47|37|38|45|40|44|42|43|44|45|46|47|0\n26|21|21|22|20|19|19|24|18|17|16|16|15|15|27|17|18|25|20|23|22|23|24|25|26|27|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n52|51|45|44|44|46|43|42|42|41|39|38|37|36|34|34|35|40|49|31|30|30|29|29|28|28|53|33|32|31|32|33|50|35|36|37|38|39|40|41|48|43|47|45|46|47|48|49|50|51|52|53|0\n54|54|55|53|53|57|52|52|51|50|46|46|45|43|42|42|41|41|40|39|38|36|35|35|34|33|32|31|31|49|32|33|34|37|36|37|38|39|40|48|44|43|44|45|47|47|48|49|50|51|59|58|56|55|56|57|58|59|0\n50|49|48|46|46|44|43|42|42|41|40|38|37|37|39|51|36|35|33|32|31|31|30|29|28|28|53|29|30|34|32|33|34|35|36|52|38|39|40|41|45|43|44|45|47|47|48|49|50|51|52|53|0\n56|54|53|52|52|51|50|49|49|48|45|45|44|43|41|41|40|38|38|39|36|35|33|33|32|31|30|30|37|31|32|34|34|35|36|37|47|39|40|42|42|43|44|46|46|47|48|57|50|51|55|53|54|55|56|57|0\n56|55|52|52|53|51|51|57|50|49|47|45|45|44|42|41|40|40|38|38|37|36|35|35|34|33|31|31|32|59|32|33|34|48|36|37|39|39|43|41|42|43|44|46|46|47|48|49|50|58|54|53|54|55|56|57|58|59|0\n42|41|41|43|40|38|38|37|36|36|32|32|33|31|30|28|28|27|24|24|25|26|35|25|26|27|29|29|30|31|34|33|34|35|45|37|39|39|40|44|42|43|44|45|0\n56|54|54|52|52|50|50|49|48|47|46|44|43|43|42|42|41|39|39|37|36|35|33|32|32|31|30|30|38|31|34|33|34|35|36|37|38|40|40|41|57|45|44|45|46|47|48|49|51|51|53|53|55|55|56|57|0\n21|20|20|19|17|16|15|14|14|13|13|23|18|15|16|17|18|19|22|21|22|23|0\n44|41|40|39|39|42|38|37|36|35|35|34|32|32|30|29|28|26|25|25|24|24|31|27|26|27|28|29|30|31|33|33|34|45|36|37|38|43|40|41|42|43|44|45|0\n65|64|59|59|58|57|56|56|61|48|48|49|50|51|52|47|46|46|54|45|44|42|41|41|40|38|38|37|36|35|34|34|63|35|36|37|39|39|40|43|42|43|44|45|55|47|53|49|50|51|52|53|54|55|62|57|58|60|60|61|62|63|64|65|0\n40|40|38|37|35|34|34|33|32|30|30|29|27|26|26|25|24|23|22|22|39|23|24|25|28|27|28|29|31|31|32|33|36|35|36|37|38|39|41|41|0\n56|55|54|53|52|52|50|49|47|46|45|45|44|42|41|40|40|37|36|35|34|33|32|32|38|31|30|30|51|31|39|33|34|35|36|37|38|39|43|41|42|43|44|48|46|47|48|49|50|51|57|53|54|55|56|57|0\n66|65|62|61|61|63|60|60|59|58|55|55|54|53|49|48|48|47|45|44|44|43|41|41|40|39|39|51|37|37|36|35|35|57|36|38|38|52|40|42|42|43|46|45|46|47|50|49|50|51|52|53|54|56|56|57|58|59|67|64|62|63|64|65|66|67|0\n35|32|30|30|29|28|28|27|26|24|24|25|22|20|19|19|21|23|20|21|22|23|34|25|26|27|33|29|31|31|32|33|34|35|0\n37|35|33|32|31|30|30|29|27|26|26|24|23|23|22|21|20|20|36|21|22|25|24|25|28|27|28|29|34|31|32|33|34|35|36|37|0\n37|35|33|29|29|28|27|27|31|25|25|24|22|22|23|21|20|20|36|21|34|23|24|26|26|32|28|30|30|31|32|33|34|35|36|37|0\n63|60|59|58|56|54|54|52|52|53|51|49|49|47|47|48|46|45|44|41|41|38|38|36|35|35|37|40|34|33|33|62|34|43|36|37|39|39|40|42|42|43|44|45|46|61|48|50|50|51|57|53|55|55|56|57|58|59|60|61|62|63|0\n10|7|7|8|9|11|8|9|10|11|0\n48|47|47|46|46|50|45|43|43|44|42|40|39|37|37|36|35|34|34|41|31|31|30|29|28|28|33|29|30|32|32|33|53|35|36|38|38|39|40|41|42|52|44|45|51|49|48|49|50|51|52|53|0\n23|21|19|17|15|15|16|14|14|13|13|22|20|18|16|17|18|19|20|21|22|23|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n16|16|15|14|11|11|10|10|13|12|12|13|14|15|17|17|0\n47|47|46|45|44|44|43|41|40|38|38|37|36|34|34|33|32|30|30|29|27|26|26|28|42|27|28|29|31|31|32|33|35|35|36|37|39|39|40|41|42|43|49|45|46|48|48|49|0\n71|71|69|68|68|65|65|64|62|61|60|60|63|59|58|57|56|56|53|53|52|50|50|49|48|45|45|46|44|43|42|40|40|39|38|38|55|39|41|41|42|43|44|47|46|47|48|49|51|51|52|54|54|55|73|57|58|59|67|61|62|63|64|66|66|67|70|69|70|72|72|73|0\n44|43|43|42|40|40|38|36|34|34|33|32|32|31|30|29|28|27|26|24|24|25|39|25|26|27|28|29|30|31|37|33|35|35|36|37|38|39|41|41|42|45|44|45|0\n46|45|45|47|44|42|41|40|39|39|38|38|37|35|34|29|29|30|31|32|28|27|26|26|36|27|28|33|30|31|32|33|34|35|36|37|49|43|40|41|42|43|44|48|46|47|48|49|0\n23|21|19|18|17|17|16|15|13|13|14|22|14|15|16|20|18|19|20|21|22|23|0\n71|71|70|69|69|63|61|60|60|59|58|58|64|57|56|54|54|53|52|52|66|51|50|49|48|47|46|45|44|42|42|41|39|39|38|38|68|40|40|41|43|43|44|45|46|47|48|49|50|51|67|53|55|55|56|57|65|59|62|61|62|63|64|65|66|67|68|73|70|72|72|73|0\n48|47|47|42|40|39|39|38|38|43|44|36|35|35|34|32|31|31|30|28|27|27|26|26|46|29|28|29|30|33|32|33|34|37|36|37|45|41|40|41|42|43|44|45|46|49|48|49|0\n37|37|36|36|39|35|33|32|32|31|28|27|26|26|29|24|24|23|22|22|41|23|25|25|30|27|28|29|30|31|34|33|34|35|40|38|38|39|40|41|0\n38|35|35|36|37|34|33|31|30|29|27|25|24|23|23|26|22|21|21|32|22|28|24|25|26|27|28|29|30|31|32|33|34|39|36|37|38|39|0\n57|57|56|53|53|54|52|51|51|49|48|47|45|44|44|43|39|38|37|37|36|35|35|41|33|32|32|31|31|50|34|33|34|42|36|40|38|39|40|41|42|43|46|45|46|47|48|49|50|59|52|55|54|55|56|58|58|59|0\n62|62|59|57|57|56|53|53|54|52|52|48|48|47|46|45|45|50|44|42|42|40|40|39|37|37|36|35|34|33|33|61|34|35|36|38|38|39|41|41|43|43|44|51|46|47|49|49|50|51|60|55|54|55|56|58|58|59|60|61|63|63|0\n60|59|59|58|57|56|56|62|54|54|51|50|50|52|49|48|48|64|46|45|44|43|42|40|40|37|36|35|34|34|38|39|47|35|36|37|38|39|41|41|42|43|44|45|46|47|65|49|53|51|52|53|55|55|63|57|58|61|60|61|62|63|64|65|0\n41|38|38|36|35|34|34|31|31|30|30|29|28|26|26|25|24|23|22|22|40|23|24|25|27|27|28|29|33|32|32|33|37|35|36|37|39|39|40|41|0\n41|39|38|35|32|32|33|34|36|30|30|29|28|28|25|25|24|23|22|22|27|23|24|26|26|27|40|29|31|31|37|33|34|35|36|37|38|39|40|41|0\n21|19|19|18|18|22|23|17|15|15|14|14|25|16|16|17|24|20|20|21|22|23|24|25|0\n27|26|24|22|21|21|20|19|18|17|16|15|15|25|16|17|18|19|20|23|22|23|24|25|26|27|0\n64|62|62|61|59|58|56|56|57|54|54|55|53|52|49|49|47|46|46|45|43|42|42|41|39|38|37|37|36|35|34|34|51|35|36|40|38|39|40|41|44|43|44|45|48|47|48|50|50|51|52|53|65|55|60|57|58|59|60|61|63|63|64|65|0\n33|32|30|30|29|27|27|28|34|35|26|23|22|22|21|21|20|20|37|25|24|23|24|25|26|36|28|29|31|31|32|33|34|35|36|37|0\n20|17|17|18|19|16|15|15|14|13|13|23|14|22|16|21|18|19|20|21|22|23|0\n16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0\n45|45|44|36|36|37|38|39|34|33|33|32|31|30|29|28|27|27|41|42|25|25|26|47|26|43|28|29|30|31|32|35|34|35|40|37|38|39|40|41|42|43|44|46|46|47|0\n51|50|49|49|48|47|47|46|44|44|43|42|42|54|55|41|39|38|38|37|35|34|33|31|31|32|30|30|57|36|32|33|34|35|36|37|40|39|40|41|56|43|45|45|46|53|48|52|50|51|52|53|54|55|56|57|0\n8|8|9|7|7|11|10|9|10|11|0\n36|33|33|32|32|30|30|29|29|28|27|25|24|23|22|21|20|20|26|21|22|23|24|25|26|27|28|37|31|31|35|34|34|35|36|37|0\n26|25|24|24|23|22|21|21|20|17|17|18|16|16|29|19|18|19|20|28|22|23|27|25|26|27|28|29|0\n44|43|42|41|39|39|38|37|36|35|35|34|32|32|28|26|25|25|24|24|29|30|31|27|26|27|28|29|30|31|33|33|34|45|36|37|38|40|40|41|42|43|44|45|0\n31|28|27|26|26|25|23|23|22|21|19|19|18|17|17|30|18|20|20|21|22|24|24|25|29|27|28|29|30|31|0\n28|26|25|25|24|23|22|22|21|20|18|17|16|16|19|17|18|19|20|21|29|23|24|27|26|27|28|29|0\n56|56|57|55|54|49|49|50|46|45|44|44|47|43|42|42|52|41|40|38|37|36|36|35|34|33|31|31|32|59|32|33|34|35|39|37|38|39|40|41|53|43|48|45|46|47|48|51|50|51|52|53|54|55|58|57|58|59|0\n29|25|23|23|24|26|22|20|19|18|18|17|16|16|28|17|21|19|20|21|22|27|24|25|26|27|28|29|0\n22|21|20|19|18|17|17|23|15|14|14|16|25|15|16|24|18|19|20|21|22|23|24|25|0\n27|26|26|25|17|17|18|19|20|21|16|16|23|24|29|22|18|19|20|21|22|23|24|25|28|27|28|29|0\n38|37|36|36|35|33|32|32|31|29|27|26|26|25|22|22|23|21|21|30|24|23|24|25|28|27|28|29|30|31|34|33|34|35|39|37|38|39|0\n53|52|50|49|49|48|46|46|45|44|43|42|41|41|54|55|40|38|38|37|36|35|32|31|31|33|30|30|57|34|32|33|34|35|36|37|39|39|40|56|42|43|44|45|47|47|48|51|50|51|52|53|54|55|56|57|0\n31|30|30|29|29|26|24|23|23|22|22|21|19|19|18|18|28|20|20|21|27|25|24|25|26|27|28|33|32|31|32|33|0\n17|15|14|13|12|12|10|10|11|11|16|13|14|15|16|17|0\n49|45|44|43|40|40|39|38|38|37|36|36|46|35|33|32|31|31|30|29|28|27|26|26|48|27|28|29|30|34|32|33|34|35|47|37|42|39|41|41|42|43|44|45|46|47|48|49|0\n50|49|47|46|46|45|43|43|42|40|40|39|37|37|36|36|34|33|30|29|29|31|28|27|27|35|28|32|30|31|32|33|34|35|51|38|38|39|41|41|42|44|44|45|48|47|48|49|50|51|0\n39|39|38|37|37|36|34|33|33|30|29|29|28|26|26|25|24|23|22|22|32|23|24|25|27|27|28|31|30|31|32|35|34|35|36|41|38|40|40|41|0\n28|27|26|26|25|22|22|21|18|17|17|19|16|16|24|20|18|19|20|21|23|23|24|25|29|27|28|29|0\n37|34|33|32|31|30|29|29|28|27|26|24|24|22|22|21|20|20|36|21|23|23|25|25|26|27|28|35|30|31|32|33|34|35|36|37|0\n28|26|26|25|23|23|24|22|21|17|17|18|16|16|20|19|18|19|20|21|22|29|24|25|27|27|28|29|0\n35|33|32|31|30|28|27|27|26|24|24|23|22|21|20|19|19|34|20|21|22|23|25|25|26|29|28|29|30|31|32|33|34|35|0\n47|44|44|42|42|40|38|38|37|36|36|34|34|33|29|29|28|27|27|31|26|25|25|46|26|32|28|30|30|31|32|33|35|35|41|37|39|39|40|41|43|43|45|45|46|47|0\n41|41|39|39|40|36|36|35|33|32|31|30|30|29|28|26|25|24|24|23|23|38|27|25|26|27|28|29|34|31|32|33|34|35|37|37|38|43|40|42|42|43|0\n22|21|20|20|17|17|15|14|14|13|13|19|16|15|16|18|18|19|23|21|22|23|0\n24|23|23|22|22|21|18|17|16|16|19|15|15|27|20|17|18|19|20|21|26|25|24|25|26|27|0\n16|15|15|17|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0\n79|78|77|76|74|74|73|72|72|80|81|71|70|69|68|65|64|63|62|62|66|60|60|59|57|56|55|55|54|52|51|51|49|48|48|46|46|45|44|43|43|83|44|45|47|47|50|49|50|53|52|53|54|58|56|57|58|59|61|61|67|63|64|65|66|67|68|69|70|71|82|73|75|75|76|77|78|79|80|81|82|83|0\n48|47|46|46|45|44|43|43|42|42|41|40|40|39|37|36|36|33|32|32|31|30|30|29|28|28|53|29|35|31|34|33|34|35|38|37|38|39|52|41|51|50|44|45|49|47|48|49|50|51|52|53|0\n25|23|20|19|19|21|17|16|16|15|14|14|24|15|18|17|18|22|20|21|22|23|24|25|0\n43|43|42|41|41|45|46|47|39|37|37|36|34|34|33|33|32|31|29|28|28|27|26|26|49|27|30|29|30|31|32|40|35|35|36|38|38|39|40|48|42|44|44|45|46|47|48|49|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n54|53|52|51|49|49|50|48|46|45|45|42|42|41|40|37|35|35|34|34|38|33|30|30|29|29|32|44|31|31|32|33|39|36|36|37|38|39|40|41|43|43|44|47|46|47|48|55|50|51|52|53|54|55|0\n27|25|24|23|22|21|18|18|19|16|16|15|15|26|17|17|20|19|20|21|22|23|24|25|26|27|0\n61|61|59|59|60|63|64|65|57|56|55|55|54|52|52|50|50|51|67|49|48|45|44|43|43|42|42|41|39|39|38|36|36|37|69|37|38|40|40|41|47|46|44|45|46|47|48|49|68|51|53|53|54|58|56|57|58|66|60|62|62|63|64|65|66|67|68|69|0\n23|23|24|20|19|18|16|16|15|15|14|14|22|21|17|17|18|19|20|21|22|25|24|25|0\n19|18|17|16|15|14|14|13|12|12|21|13|20|15|16|17|18|19|20|21|0\n56|56|54|47|45|45|46|42|41|41|43|40|39|38|38|49|37|37|51|52|35|35|34|33|32|31|30|30|55|31|32|33|34|36|36|53|50|39|40|44|42|43|44|48|46|47|48|49|50|51|52|53|54|55|57|57|0\n45|44|43|41|37|36|35|35|34|33|31|30|30|29|28|28|39|27|26|25|24|24|42|25|26|27|40|29|32|31|32|33|34|38|36|37|38|39|40|41|42|43|44|45|0\n60|60|56|55|54|54|57|52|52|51|49|49|48|45|45|44|41|41|42|43|40|38|38|37|36|35|33|33|32|32|59|34|34|35|36|37|39|39|40|47|42|43|44|46|46|47|48|50|50|51|53|53|58|55|56|57|58|59|61|61|0\n38|36|36|37|35|34|33|32|32|40|41|31|29|28|27|26|25|25|24|23|23|43|24|30|26|27|28|29|30|31|42|33|34|35|39|37|38|39|40|41|42|43|0\n73|72|70|68|67|67|69|66|65|64|63|61|61|60|59|58|57|57|74|75|53|53|51|51|50|49|49|55|48|47|46|45|44|42|42|41|40|40|77|41|43|43|44|45|46|47|48|56|50|52|52|54|54|55|56|76|58|59|60|62|62|63|64|65|66|71|68|69|70|71|72|73|74|75|76|77|0\n72|72|70|65|64|63|62|61|61|60|60|67|68|56|56|55|54|54|52|52|53|51|51|48|48|46|46|45|43|43|42|40|39|38|38|41|50|39|40|41|42|44|44|45|47|47|49|49|50|71|59|53|58|55|57|57|58|59|69|66|62|63|64|65|66|67|68|69|70|71|73|73|0\n31|31|29|28|27|27|26|26|24|22|21|21|20|20|19|18|18|19|25|23|22|23|24|25|33|30|28|29|30|32|32|33|0\n12|12|11|9|8|8|10|9|10|11|13|13|0\n31|31|28|27|26|25|25|29|24|23|22|21|19|18|18|20|33|19|20|21|22|23|24|30|26|27|28|29|30|32|32|33|0\n20|20|21|19|18|17|16|15|13|13|14|23|14|15|16|17|18|19|22|21|22|23|0\n37|36|35|34|33|32|31|29|29|30|27|27|28|25|23|22|22|21|21|26|24|23|24|25|26|39|28|38|30|31|32|33|34|35|36|37|38|39|0\n46|44|44|45|43|42|40|40|41|48|49|38|37|35|35|34|34|33|32|31|30|29|28|27|27|51|28|29|30|31|32|33|39|36|36|37|38|39|50|41|42|43|47|45|46|47|48|49|50|51|0\n37|37|35|35|36|34|33|32|31|30|30|40|28|27|26|25|24|23|22|22|29|23|24|25|26|27|28|29|41|31|32|33|34|39|36|38|38|39|40|41|0\n39|38|38|37|36|35|34|33|33|32|31|30|28|26|25|24|24|23|22|22|29|23|27|25|26|27|28|29|30|31|32|41|34|35|36|37|40|39|40|41|0\n31|30|29|28|28|27|25|24|24|23|22|20|19|19|18|18|33|21|20|21|22|23|26|25|26|27|32|29|30|31|32|33|0\n19|18|17|17|16|15|12|12|13|14|21|13|14|15|16|20|18|19|20|21|0\n25|24|22|21|20|20|19|17|17|15|14|14|16|15|16|18|18|19|23|21|22|23|24|25|0\n43|39|39|40|38|38|37|36|32|32|31|30|27|26|25|25|28|23|23|24|34|35|24|29|26|27|28|29|30|31|33|33|34|35|36|37|42|41|40|41|42|43|0\n30|29|28|28|31|32|26|26|24|22|21|20|20|19|18|18|25|19|23|21|22|23|24|25|27|27|33|29|30|31|32|33|0\n62|61|61|58|58|57|55|54|53|53|52|50|50|47|47|46|46|45|44|42|42|41|39|39|38|36|36|35|34|33|33|60|34|35|37|37|38|40|40|41|43|43|44|45|49|48|48|49|51|51|52|56|54|55|56|57|59|59|60|63|62|63|0\n70|68|68|67|65|64|63|62|62|61|59|59|58|57|57|56|55|53|52|51|50|48|48|47|46|45|44|41|41|42|40|38|37|37|39|54|38|39|40|43|42|43|44|45|46|47|49|49|50|51|52|53|54|55|56|71|58|60|60|61|66|63|64|65|66|67|69|69|70|71|0\n35|35|34|33|33|31|30|27|26|25|25|28|24|22|22|21|20|20|32|21|23|23|24|29|26|27|28|29|30|31|32|37|34|36|36|37|0\n69|68|67|65|65|64|64|70|71|57|55|54|54|56|58|52|52|51|49|49|50|48|46|46|45|43|43|44|61|62|42|40|39|39|38|38|73|41|40|41|42|63|44|45|47|47|48|60|50|51|53|53|59|55|56|57|58|59|60|61|62|63|72|66|66|67|68|69|70|71|72|73|0\n30|28|28|27|26|25|24|24|21|19|19|18|17|17|22|23|18|20|20|21|22|23|31|25|26|27|29|29|30|31|0\n27|26|26|25|24|24|21|19|19|20|18|17|16|16|23|17|18|22|20|21|22|23|29|25|28|27|28|29|0\n41|41|40|39|37|36|35|34|34|33|31|31|30|29|28|27|26|25|25|23|23|24|24|43|26|27|28|29|30|32|32|33|38|35|36|37|38|39|40|42|42|43|0\n21|21|20|19|18|18|15|15|14|13|13|17|14|16|16|17|23|19|20|22|22|23|0\n17|11|11|12|13|14|10|10|16|15|12|13|14|15|16|17|0\n44|43|39|39|38|38|41|37|37|36|34|34|33|32|29|29|28|27|26|26|25|24|24|25|31|27|28|30|30|31|32|33|35|35|36|45|42|40|40|41|42|43|44|45|0\n49|49|50|47|44|41|41|42|43|40|40|38|38|37|35|31|31|30|29|28|28|33|34|27|27|48|36|29|30|32|32|33|34|35|36|37|39|39|46|45|42|43|44|45|46|47|48|51|50|51|0\n21|18|18|19|20|17|16|15|13|13|14|23|14|15|16|17|22|19|20|21|22|23|0\n43|41|40|40|39|37|37|36|34|34|33|32|32|44|45|31|30|28|27|27|26|25|25|47|26|29|28|29|30|31|46|33|35|35|36|38|38|39|42|41|42|43|44|45|46|47|0\n15|13|13|14|12|11|10|10|17|11|12|16|14|15|16|17|0\n37|35|34|32|31|30|30|29|27|27|26|23|22|22|24|20|20|21|36|21|25|23|24|25|26|28|28|29|33|31|32|33|34|35|36|37|0\n11|9|8|7|7|10|8|9|10|11|0\n18|18|15|14|14|13|12|11|11|17|12|13|16|15|16|17|19|19|0\n89|88|87|86|86|85|84|83|75|75|74|73|73|77|71|71|69|69|67|65|65|66|64|63|63|79|61|61|60|59|59|81|56|56|57|55|54|53|53|52|50|49|48|47|47|51|48|49|50|51|52|91|54|55|58|57|58|82|60|62|62|80|64|68|66|67|68|70|70|72|72|78|74|76|76|77|78|79|80|81|82|83|84|85|90|87|88|89|90|91|0\n59|56|55|55|54|53|51|51|50|43|43|42|41|41|45|40|39|39|47|38|36|35|34|34|37|33|32|31|31|58|32|33|49|35|36|37|38|48|40|46|42|44|44|45|46|47|48|49|50|52|52|53|54|57|56|57|58|59|0\n29|27|25|20|20|21|22|23|19|19|18|17|16|16|28|17|18|26|24|21|22|23|24|25|26|27|28|29|0\n14|13|13|15|12|11|10|10|17|11|12|16|14|15|16|17|0\n41|41|40|39|38|36|36|37|33|32|30|30|29|29|28|27|26|25|24|23|23|35|24|25|26|27|28|34|31|31|32|33|34|35|43|37|38|39|40|42|42|43|0\n38|37|37|32|31|30|29|28|27|26|25|25|33|34|23|23|22|21|21|36|22|24|24|35|26|27|28|29|30|31|32|33|34|35|36|39|38|39|0\n47|46|45|43|42|41|38|38|39|37|35|34|33|33|32|30|29|28|28|27|26|25|25|44|26|27|31|29|30|31|32|36|34|35|36|37|40|39|40|41|42|43|44|45|46|47|0\n45|41|40|39|36|36|37|38|42|35|34|33|32|30|30|29|28|25|25|26|24|24|44|27|26|27|28|29|31|31|32|33|34|35|43|37|38|39|40|41|42|43|44|45|0\n22|21|21|20|20|19|17|17|16|15|14|14|25|15|16|18|18|19|24|23|22|23|24|25|0\n36|35|34|33|32|31|31|30|29|27|25|23|22|21|21|24|20|20|28|26|22|23|24|25|26|27|28|29|30|37|32|33|34|35|36|37|0\n26|26|24|23|21|21|20|19|17|16|16|15|15|25|18|17|18|19|20|22|22|23|24|25|27|27|0\n56|53|53|52|51|51|49|49|47|47|46|45|44|44|43|42|40|40|37|36|35|35|34|33|32|30|30|31|39|31|32|33|34|38|36|37|38|39|41|41|42|43|57|45|46|48|48|50|50|55|52|54|54|55|56|57|0\n59|58|58|56|56|55|53|52|50|50|51|49|47|47|46|46|61|45|43|43|42|41|39|38|38|36|36|35|34|33|33|63|34|35|37|37|40|39|40|41|42|44|44|45|62|48|48|49|54|51|52|53|54|55|57|57|60|59|60|61|62|63|0\n31|30|29|29|28|26|26|27|33|24|24|23|22|21|20|19|19|35|20|21|22|23|25|25|34|27|28|32|30|31|32|33|34|35|0\n34|32|31|31|30|29|28|27|27|26|25|22|22|20|20|19|19|24|21|21|23|23|24|25|26|35|28|29|30|33|32|33|34|35|0\n30|28|28|27|26|25|24|23|23|22|21|18|18|17|17|20|19|19|20|21|22|31|24|25|26|27|29|29|30|31|0\n98|97|97|94|94|93|92|91|89|88|87|86|86|85|84|83|82|79|79|80|78|77|76|72|71|71|70|69|67|67|66|65|64|64|74|63|59|59|60|61|56|53|53|54|55|57|52|51|51|96|52|58|54|55|56|57|58|62|60|61|62|63|75|65|66|68|68|69|70|73|72|73|74|75|76|77|78|81|80|81|82|83|84|85|90|87|88|89|90|91|92|93|95|95|96|99|98|99|0\n59|56|56|52|50|50|48|47|46|45|45|49|53|54|44|42|41|41|40|39|37|33|33|34|32|32|36|31|31|58|38|35|34|35|36|37|38|39|40|43|42|43|44|55|46|47|48|49|51|51|52|53|54|55|57|57|58|59|0\n20|20|19|18|16|14|14|13|12|12|17|13|15|15|16|17|18|19|21|21|0\n50|49|47|47|45|45|44|43|43|42|42|52|53|41|39|39|36|36|37|35|33|33|32|31|30|29|29|55|30|31|32|34|34|35|38|37|38|40|40|41|54|51|44|46|46|48|48|49|50|51|52|53|54|55|0\n34|33|32|31|30|29|29|28|27|24|24|22|22|21|20|19|19|26|20|21|23|23|25|25|26|27|28|35|30|31|32|33|34|35|0\n48|46|46|45|44|43|42|40|39|39|38|38|37|36|33|31|31|30|28|28|27|26|26|34|35|27|29|29|30|32|32|33|34|35|36|37|49|41|40|41|42|43|44|45|47|47|48|49|0\n63|62|61|59|58|57|56|56|52|51|50|50|49|46|46|45|44|44|43|41|40|40|39|38|33|33|34|35|36|37|54|55|34|35|36|37|38|39|42|41|42|43|48|45|47|47|48|49|53|51|52|53|54|55|60|57|58|59|60|61|62|63|0\n50|49|48|48|47|46|41|40|40|38|38|37|36|35|35|43|34|32|32|31|30|29|27|27|28|45|28|29|30|31|33|33|34|44|36|37|39|39|42|41|42|43|44|45|46|47|51|49|50|51|0\n19|19|17|16|15|14|14|13|12|12|21|13|18|15|16|17|18|20|20|21|0\n55|54|49|47|47|46|46|45|44|43|42|42|51|40|40|39|37|37|36|34|31|31|30|30|33|29|29|53|35|32|32|33|34|35|36|38|38|39|41|41|52|43|44|45|50|48|48|49|50|51|52|53|54|55|0\n19|17|16|14|14|13|12|11|11|18|12|13|15|15|16|17|18|19|0\n11|10|10|12|8|8|9|9|13|11|12|13|0\n22|21|20|18|18|19|17|15|15|13|13|14|14|16|16|17|23|19|20|21|22|23|0\n63|62|61|61|60|58|58|59|56|55|54|52|50|50|51|47|47|46|43|43|44|42|40|40|41|39|38|36|34|34|35|37|57|35|36|37|38|39|49|41|42|45|44|45|46|48|48|49|53|51|52|53|54|55|56|57|65|59|60|64|62|63|64|65|0\n21|21|20|19|19|17|15|14|13|13|16|18|14|15|16|17|18|23|20|22|22|23|0\n43|42|41|39|37|36|35|35|32|32|31|31|30|29|28|27|26|25|24|23|23|40|24|25|26|27|28|29|30|34|33|33|34|38|36|37|38|39|40|41|42|43|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n31|30|29|28|27|26|26|32|23|22|22|21|20|19|18|18|25|19|20|21|24|23|24|25|33|27|28|29|30|31|32|33|0\n67|66|66|65|60|60|61|59|58|58|63|57|56|55|53|53|54|51|49|49|48|47|46|45|42|41|41|43|40|39|37|37|36|36|52|38|38|39|40|44|42|43|44|45|46|47|48|50|50|51|52|69|54|55|56|57|64|59|62|61|62|63|64|65|68|67|68|69|0\n24|21|21|20|20|23|19|18|17|16|15|15|26|27|16|17|18|19|25|22|22|23|24|25|26|27|0\n27|25|23|22|22|21|20|16|16|17|15|15|19|26|18|17|18|19|20|21|24|23|24|25|26|27|0\n13|12|11|10|9|8|8|9|10|11|12|13|0\n37|31|31|30|29|28|28|33|34|27|26|24|24|23|22|20|20|21|36|21|22|23|25|25|26|27|35|29|30|32|32|33|34|35|36|37|0\n39|38|38|37|36|35|35|33|32|31|30|28|28|27|25|25|24|23|22|22|34|23|24|26|26|27|29|29|30|31|32|33|34|41|36|37|40|39|40|41|0\n27|27|26|25|24|24|23|19|19|20|18|17|16|16|22|17|18|21|20|21|22|23|29|25|26|28|28|29|0\n49|49|48|47|47|51|46|45|43|42|42|41|40|37|36|35|35|38|33|32|32|31|30|29|28|28|53|29|30|31|34|33|34|39|36|37|38|39|40|41|44|43|44|45|46|52|48|50|50|51|52|53|0\n21|19|19|18|16|16|17|15|14|13|13|23|14|15|22|17|18|20|20|21|22|23|0\n25|25|26|23|22|20|20|19|16|16|17|15|15|24|18|17|18|19|21|21|22|23|24|27|26|27|0\n44|43|42|41|40|39|38|37|37|36|34|34|32|31|30|29|28|27|26|25|24|24|33|25|26|27|28|29|30|31|32|33|35|35|36|45|38|39|40|41|42|43|44|45|0\n45|43|42|41|39|38|38|37|34|33|32|32|31|30|30|28|27|27|26|25|24|24|44|25|26|29|28|29|36|31|35|33|34|35|36|37|40|39|40|41|42|43|44|45|0\n46|46|45|44|44|43|41|38|38|39|40|36|35|35|34|33|32|31|30|29|28|26|26|27|49|27|28|29|30|31|32|33|34|37|36|37|42|39|40|41|42|43|48|45|47|47|48|49|0\n54|53|49|49|48|48|51|46|46|45|45|44|42|42|40|39|38|36|34|34|35|33|32|30|30|29|29|41|31|31|32|33|37|35|36|37|38|39|40|41|43|43|44|55|47|47|52|50|50|51|52|53|54|55|0\n62|62|60|58|57|57|51|49|49|50|52|48|48|54|47|47|45|45|44|42|41|40|40|39|37|37|36|35|34|33|33|61|34|35|36|38|38|39|43|41|42|43|44|46|46|56|55|53|50|51|52|53|54|55|56|59|58|59|60|61|63|63|0\n59|57|53|53|52|51|51|55|49|48|47|46|45|44|44|43|41|41|40|39|37|37|34|34|35|33|32|31|31|58|32|33|36|35|36|38|38|39|40|42|42|43|50|45|46|47|48|49|50|56|52|54|54|55|56|57|58|59|0\n19|16|16|14|13|13|12|11|11|18|12|15|14|15|17|17|18|19|0\n39|36|36|34|33|32|31|31|30|29|26|25|25|24|24|23|21|21|22|38|22|23|28|27|26|27|28|29|30|35|32|33|34|35|37|37|38|39|0\n30|30|29|28|27|27|24|23|22|21|21|25|20|19|18|18|33|19|20|26|22|23|24|25|26|32|28|29|31|31|32|33|0\n52|50|49|49|48|48|47|45|45|41|40|40|42|39|38|37|36|35|34|33|31|30|30|29|28|28|44|29|32|31|32|33|34|35|36|37|38|39|43|41|42|43|44|46|46|47|53|51|50|51|52|53|0\n31|30|30|28|28|29|25|24|24|23|22|21|20|19|18|18|27|19|20|21|22|23|26|25|26|27|33|29|32|31|32|33|0\n60|58|57|57|56|56|55|53|52|51|51|50|49|48|48|62|63|47|45|45|43|43|42|41|39|39|38|36|36|35|34|34|65|35|37|37|38|40|40|41|42|44|44|46|46|47|64|49|50|54|52|53|54|55|61|59|58|59|60|61|62|63|64|65|0\n13|13|14|11|10|9|9|12|10|11|12|15|14|15|0\n72|72|71|68|68|67|66|65|61|60|60|62|63|58|57|57|56|54|54|53|52|50|48|48|47|46|46|45|43|42|42|40|40|39|38|38|70|39|41|41|44|43|44|45|51|47|49|49|50|51|52|53|55|55|56|59|58|59|64|61|62|63|64|65|66|67|69|69|70|71|73|73|0\n54|53|53|55|51|49|47|47|48|50|46|43|42|41|41|44|40|36|35|34|34|33|32|32|38|31|30|30|57|31|39|33|37|35|36|37|38|39|40|45|42|43|44|45|46|52|48|49|50|51|52|56|54|55|56|57|0\n56|54|53|52|52|51|50|46|45|45|47|48|43|43|42|41|40|39|39|38|37|36|33|32|32|30|30|31|35|31|34|33|34|35|36|37|38|57|40|41|42|44|44|49|46|47|48|49|50|51|55|53|54|55|56|57|0\n21|19|19|20|18|16|15|14|14|17|13|13|23|15|16|17|18|22|20|21|22|23|0\n54|54|52|51|50|50|48|46|45|44|43|42|42|41|40|38|37|37|36|34|34|33|32|31|29|29|30|49|30|31|32|33|35|35|36|39|38|39|40|41|47|43|44|45|46|47|48|49|53|51|52|53|55|55|0\n40|39|38|36|36|35|34|33|33|32|30|30|28|26|24|24|25|23|22|22|29|23|27|25|26|27|28|29|31|31|32|41|34|35|37|37|38|39|40|41|0\n58|57|57|54|54|53|51|51|50|48|48|47|45|44|43|43|42|40|39|39|38|37|35|35|34|33|32|31|31|56|32|33|34|36|36|37|38|41|40|41|42|46|44|45|46|47|49|49|50|52|52|53|55|55|56|59|58|59|0\n29|28|27|26|26|25|24|22|22|21|20|20|18|17|17|19|18|19|31|21|23|23|24|25|30|27|28|29|30|31|0\n37|36|34|34|33|31|31|30|28|28|26|25|25|27|38|39|24|23|22|22|41|23|24|40|26|27|29|29|30|32|32|33|35|35|36|37|38|39|40|41|0\n41|40|40|39|39|37|37|38|44|45|35|34|32|32|31|31|29|28|28|27|26|25|25|47|26|27|30|29|30|36|33|33|34|35|36|46|38|43|42|41|42|43|44|45|46|47|0\n46|45|45|44|40|39|38|36|36|35|34|33|32|31|31|41|30|29|26|26|27|25|25|43|28|27|28|29|30|42|32|33|34|35|37|37|38|39|40|41|42|43|44|47|46|47|0\n54|53|52|52|55|51|50|49|49|48|47|46|45|44|43|43|58|59|42|40|40|38|37|37|36|36|61|35|34|33|33|63|34|35|62|39|38|39|41|41|42|60|44|45|46|47|48|57|50|51|56|53|54|55|56|57|58|59|60|61|62|63|0\n37|34|33|32|29|28|28|30|26|25|25|24|23|23|22|21|20|20|36|21|22|35|24|27|26|27|31|29|30|31|32|33|34|35|36|37|0\n22|22|19|18|17|17|16|15|14|13|13|21|14|15|16|20|18|19|20|21|23|23|0\n23|21|19|17|17|16|16|15|14|13|13|22|14|15|20|18|18|19|20|21|22|23|0\n26|25|25|23|22|19|19|20|18|17|16|15|15|24|16|17|18|21|20|21|22|23|24|27|26|27|0\n35|32|32|31|30|29|27|27|26|25|24|24|23|22|20|19|19|21|20|21|22|23|34|25|26|28|28|29|30|31|33|33|34|35|0\n44|44|42|41|38|37|37|39|36|34|33|32|32|31|29|29|28|26|25|25|24|24|43|27|26|27|28|30|30|31|35|33|34|35|36|40|38|39|40|41|42|43|45|45|0\n49|49|47|47|46|46|51|42|39|37|37|38|40|41|43|44|35|35|34|33|31|31|29|29|28|28|53|30|30|32|32|33|34|36|36|45|38|39|40|41|42|43|44|45|52|48|48|50|50|51|52|53|0\n9|9|8|7|7|11|8|10|10|11|0\n11|10|8|7|7|9|8|9|10|11|0\n29|29|30|28|26|24|24|23|21|21|18|18|19|17|17|27|20|19|20|22|22|23|25|25|26|27|28|31|30|31|0\n55|53|52|51|49|48|48|47|46|41|41|40|40|39|39|44|37|36|36|35|34|32|32|31|30|29|29|54|30|31|33|33|34|35|38|37|38|45|43|42|42|43|44|45|46|47|50|49|50|51|52|53|54|55|0\n35|33|30|29|28|28|31|27|25|23|23|22|21|21|20|19|19|34|20|26|22|24|24|25|26|27|32|29|30|31|32|33|34|35|0\n48|47|46|44|43|43|42|41|40|39|39|38|35|34|33|33|32|31|31|29|28|27|26|26|30|27|28|29|30|37|32|36|34|35|36|37|38|49|40|41|42|45|44|45|46|47|48|49|0\n18|18|17|15|13|13|12|11|11|16|12|14|14|15|16|17|19|19|0\n23|20|20|19|17|17|16|15|14|13|13|22|14|15|16|18|18|19|21|21|22|23|0\n42|41|40|40|39|38|36|34|33|32|32|31|29|29|28|27|26|25|24|23|23|37|24|25|26|27|28|30|30|31|35|33|34|35|36|37|38|39|43|41|42|43|0\n36|35|34|34|33|30|29|28|28|27|27|25|24|22|21|20|20|23|26|21|22|23|24|25|26|32|31|29|30|31|32|33|37|35|36|37|0\n53|52|52|51|50|49|46|46|45|44|43|43|41|39|39|38|38|37|35|35|36|34|33|31|29|29|30|32|30|31|32|33|34|55|36|37|42|40|40|41|42|48|44|45|47|47|48|49|50|51|54|53|54|55|0\n47|43|43|44|45|42|41|40|40|39|37|36|36|35|34|34|49|32|32|31|30|27|27|28|29|51|28|29|30|31|33|33|50|35|38|37|38|39|48|41|42|46|44|45|46|47|48|49|50|51|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n53|52|51|50|50|49|48|47|44|43|43|42|41|39|39|40|38|36|35|35|37|33|30|29|29|31|32|34|30|31|32|33|34|55|36|37|38|46|40|41|42|45|44|45|46|47|48|49|54|51|52|53|54|55|0\n42|41|40|40|39|38|36|32|32|31|30|30|34|29|28|27|24|24|25|23|23|37|26|25|26|27|28|29|35|31|33|33|34|35|36|37|38|39|43|41|42|43|0\n47|45|41|41|40|39|38|37|36|36|43|35|34|32|31|30|29|29|28|26|25|25|27|46|26|27|28|33|30|31|32|33|34|35|44|37|38|39|40|42|42|43|44|45|46|47|0\n54|52|52|51|50|49|48|46|44|43|43|45|42|41|40|40|55|38|37|36|35|34|34|33|32|31|30|30|57|31|32|33|39|35|36|37|38|39|56|41|42|47|44|45|46|47|48|49|50|51|53|53|54|55|56|57|0\n38|38|37|36|34|32|31|31|30|28|28|26|25|24|24|23|22|21|21|35|22|23|27|25|26|27|29|29|30|33|32|33|34|35|36|37|39|39|0\n32|32|31|29|27|26|25|25|24|23|22|21|20|18|18|19|30|19|20|21|22|23|24|28|26|27|28|29|30|31|33|33|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n17|15|13|13|12|10|10|11|16|11|12|14|14|15|16|17|0\n34|33|32|31|30|29|28|27|27|26|25|23|22|21|20|19|19|24|20|21|22|23|24|25|26|35|28|29|30|31|32|33|34|35|0\n26|25|24|22|22|23|20|19|18|16|16|15|15|21|17|17|18|19|20|21|27|23|24|25|26|27|0\n42|39|39|38|38|37|36|35|33|26|26|27|28|29|30|31|32|25|24|23|23|43|24|25|34|27|28|29|30|31|32|33|34|35|36|37|41|40|40|41|42|43|0\n7|5|5|6|6|7|0\n46|45|44|42|42|43|41|40|38|36|33|33|34|35|32|27|26|26|28|29|30|25|25|39|31|27|28|29|30|31|32|37|34|35|36|37|38|39|40|41|47|43|44|45|46|47|0\n53|53|52|51|50|49|48|48|55|56|46|46|45|42|40|40|41|43|39|38|36|36|35|34|33|33|58|31|31|32|32|59|34|35|37|37|38|39|44|41|42|43|44|45|47|47|57|49|50|51|52|54|54|55|56|57|58|59|0\n66|65|65|63|63|64|62|60|60|61|57|56|55|55|54|49|48|46|46|44|44|42|41|39|39|40|43|50|51|52|37|37|36|36|59|38|38|53|40|41|42|43|45|45|47|47|48|49|50|51|52|53|54|58|56|57|58|59|69|61|62|68|64|67|66|67|68|69|0\n23|21|20|20|19|17|17|18|16|14|14|15|25|15|16|24|18|19|22|21|22|23|24|25|0\n71|66|65|64|61|61|62|63|67|68|60|58|57|57|56|53|52|51|51|50|49|49|48|46|45|44|42|41|41|40|40|39|38|37|37|70|38|39|47|43|42|43|44|45|46|47|48|55|50|54|52|53|54|55|56|59|58|59|60|69|62|63|64|65|66|67|68|69|70|71|0\n42|40|40|39|37|37|36|32|32|33|34|31|29|29|28|28|27|26|24|23|23|25|24|25|26|27|43|30|30|31|35|33|34|35|36|38|38|39|41|41|42|43|0\n42|41|40|39|38|37|35|34|33|33|32|31|31|43|30|29|27|27|26|25|24|24|45|25|26|28|28|29|30|44|32|36|34|35|36|37|38|39|40|41|42|43|44|45|0\n33|30|28|28|29|27|26|25|24|23|22|21|20|19|18|18|32|19|20|21|22|23|24|25|26|27|31|29|30|31|32|33|0\n43|42|41|40|40|39|38|38|35|35|31|31|32|30|30|29|28|27|26|25|24|24|37|25|26|27|28|29|34|33|32|33|34|36|36|37|45|39|44|41|42|43|44|45|0\n58|57|57|56|55|54|53|53|60|61|50|49|49|48|47|46|45|45|44|42|42|40|40|39|38|37|36|35|34|33|33|63|34|35|36|37|38|39|41|41|43|43|44|52|46|47|48|51|50|51|52|62|54|55|56|59|58|59|60|61|62|63|0\n37|34|31|31|32|28|28|29|27|25|24|24|23|22|21|20|20|35|36|21|22|23|26|25|26|27|30|29|30|33|32|33|34|35|36|37|0\n31|31|32|30|30|34|35|29|28|28|24|24|23|22|21|20|20|26|27|21|22|23|25|25|26|27|37|29|36|33|32|33|34|35|36|37|0\n60|59|58|56|56|55|54|52|52|51|49|48|48|47|47|46|44|43|43|40|39|39|38|36|35|35|34|32|32|33|42|33|34|37|36|37|38|41|40|41|42|45|44|45|46|61|50|49|50|51|53|53|54|55|57|57|58|59|60|61|0\n25|23|22|21|19|17|17|16|16|15|14|14|24|15|20|18|18|19|20|21|22|23|24|25|0\n12|12|11|9|9|8|8|10|10|11|13|13|0\n51|49|48|47|46|45|44|43|43|42|41|40|38|37|37|36|36|52|53|34|34|33|31|31|30|29|29|55|30|32|32|33|35|35|54|39|38|39|40|41|42|50|44|45|46|47|48|49|50|51|52|53|54|55|0\n38|37|36|36|39|35|34|33|32|32|31|29|28|28|26|24|24|23|22|22|27|23|25|25|26|27|30|29|30|31|41|33|34|35|40|37|38|39|40|41|0\n28|22|22|23|24|25|26|27|29|21|20|19|18|17|17|31|18|19|20|21|30|23|24|25|26|27|28|29|30|31|0\n18|18|17|15|15|14|12|11|11|13|12|13|14|16|16|17|19|19|0\n39|38|37|36|36|40|41|34|33|32|32|31|30|28|28|27|25|25|24|23|23|43|24|26|26|27|29|29|30|31|35|33|34|35|42|37|38|39|40|41|42|43|0\n64|63|61|61|60|58|57|57|56|54|54|53|52|52|51|50|48|47|45|44|44|43|41|40|39|37|37|38|36|35|35|34|34|49|36|42|38|39|40|41|42|43|46|45|46|47|48|49|50|51|65|53|55|55|56|59|58|59|60|62|62|63|64|65|0\n39|37|36|35|34|33|32|29|29|28|27|27|25|25|23|22|22|21|21|38|24|23|24|26|26|31|28|30|30|31|32|33|34|35|36|37|38|39|0\n32|32|31|28|28|27|26|26|24|23|22|21|18|18|19|20|25|19|20|21|22|23|24|25|30|27|29|29|30|31|33|33|0\n47|45|45|44|43|42|42|48|49|40|39|38|37|35|35|36|34|33|31|31|30|29|27|27|28|51|28|29|30|32|32|33|34|41|36|37|38|39|40|41|50|43|44|46|46|47|48|49|50|51|0\n26|26|23|23|22|19|19|20|18|16|16|15|15|25|17|17|18|21|20|21|22|24|24|25|27|27|0\n47|45|45|44|42|41|41|39|38|38|37|35|35|34|33|33|48|49|32|31|30|29|27|27|28|51|28|29|30|31|32|50|34|36|36|37|40|39|40|43|42|43|44|46|46|47|48|49|50|51|0\n16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0\n31|29|28|27|25|24|24|23|22|21|19|19|18|17|17|30|18|20|20|21|22|23|26|25|26|27|28|29|30|31|0\n47|46|46|45|43|42|42|41|39|38|38|37|35|35|34|33|33|32|31|30|28|27|26|26|29|27|28|29|30|31|32|49|34|36|36|37|40|39|40|41|44|43|44|45|48|47|48|49|0\n41|40|39|39|42|43|38|37|36|34|34|33|33|32|28|28|29|30|27|27|26|25|25|47|26|46|31|29|30|31|32|45|35|35|36|37|38|44|40|41|42|43|44|45|46|47|0\n40|39|39|41|36|36|35|33|33|32|32|29|28|28|30|27|26|25|24|23|23|43|24|25|26|27|31|29|30|31|38|34|34|35|37|37|38|42|40|41|42|43|0\n13|13|10|10|9|9|12|15|11|11|12|14|14|15|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n29|28|28|27|26|26|22|20|20|21|23|19|17|17|18|25|18|19|24|21|22|23|24|25|31|27|30|29|30|31|0\n41|40|39|37|36|36|38|42|43|34|33|33|32|31|29|29|28|26|26|25|24|24|45|25|27|27|28|30|30|31|32|35|34|35|44|37|38|39|40|41|42|43|44|45|0\n51|51|50|50|49|47|46|44|44|43|42|40|40|39|38|37|37|48|54|55|34|34|33|32|32|31|30|30|57|31|36|33|35|35|36|56|38|39|41|41|42|43|45|45|46|47|48|49|53|52|52|53|54|55|56|57|0\n43|41|37|37|36|34|33|33|32|31|30|28|28|29|39|27|25|24|24|23|23|42|26|25|26|27|40|29|30|31|32|35|34|35|36|38|38|39|40|41|42|43|0\n7|7|6|6|9|8|8|9|0\n26|26|25|25|24|22|22|21|20|20|29|18|18|17|17|31|19|19|30|21|23|23|24|28|27|27|28|29|30|31|0\n41|39|38|36|36|35|34|33|32|29|29|28|27|27|26|25|24|23|22|22|40|23|24|25|26|31|28|30|30|31|32|33|34|35|37|37|38|39|40|41|0\n11|10|7|7|8|9|8|9|10|11|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n53|53|54|52|49|49|48|47|46|46|45|45|56|57|42|41|41|40|37|37|38|36|36|35|33|31|31|32|34|59|32|33|34|35|44|39|38|39|40|43|42|43|44|58|51|47|48|50|50|51|52|55|54|55|56|57|58|59|0\n14|14|15|12|12|11|10|10|17|11|13|13|16|15|16|17|0\n61|58|57|57|56|55|53|53|52|50|49|48|47|47|44|43|41|41|40|40|45|39|36|35|34|34|37|33|32|32|60|33|38|35|36|37|38|39|46|42|42|43|44|45|46|51|48|49|50|51|52|54|54|55|56|59|58|59|60|61|0\n49|49|48|45|45|46|40|39|39|38|37|36|36|42|43|34|34|33|32|31|30|30|27|27|28|29|28|29|51|31|32|33|35|35|44|37|38|41|40|41|42|43|44|47|46|47|48|50|50|51|0\n17|16|16|15|14|13|11|11|12|19|12|13|14|15|18|17|18|19|0\n29|28|27|24|24|22|21|21|19|19|18|16|16|17|26|17|18|20|20|23|22|23|25|25|26|27|28|29|0\n29|28|26|25|24|21|19|19|18|17|17|16|16|23|27|22|18|20|20|21|22|23|24|25|26|27|28|29|0\n70|69|69|67|60|59|59|61|62|63|54|54|53|53|56|57|50|50|49|49|48|45|44|44|46|42|41|41|40|39|39|65|38|37|37|68|38|66|40|43|42|43|47|45|46|47|48|52|51|51|52|58|55|55|56|57|58|64|60|61|62|63|64|65|66|67|68|71|70|71|0\n31|29|28|27|26|25|25|24|22|21|20|19|18|17|17|23|18|19|20|21|22|23|24|30|26|27|28|29|30|31|0\n42|42|40|38|37|36|36|34|31|31|32|30|30|29|27|27|26|25|24|23|23|41|24|25|26|28|28|29|35|33|32|33|34|35|39|37|38|39|40|41|43|43|0\n48|48|47|45|44|43|41|40|39|38|37|37|36|35|35|34|33|32|32|50|51|31|30|29|28|28|53|29|30|31|52|33|34|46|36|42|38|39|40|41|42|43|44|45|46|47|49|49|50|51|52|53|0\n21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0\n21|20|20|22|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0\n18|15|14|14|12|12|13|11|11|19|17|13|16|15|16|17|18|19|0\n38|37|37|36|35|34|34|40|41|31|31|30|28|28|27|27|26|25|24|23|23|43|24|25|26|33|29|29|30|32|32|33|42|35|36|39|38|39|40|41|42|43|0\n31|28|26|26|27|25|24|22|22|21|18|18|19|17|17|30|20|19|20|21|23|23|24|25|29|27|28|29|30|31|0\n58|58|57|55|55|54|53|52|51|50|49|48|48|60|61|46|45|44|43|43|42|41|39|38|37|37|36|35|34|33|33|63|34|35|36|40|38|39|40|41|42|47|44|45|46|47|62|49|50|51|52|53|54|56|56|57|59|59|60|61|62|63|0\n85|85|84|82|81|81|80|79|77|77|76|74|73|73|72|71|70|70|69|65|64|63|63|66|62|61|57|57|56|56|59|55|55|53|50|49|49|51|48|46|46|45|45|54|47|47|48|52|50|51|52|53|54|68|60|58|58|59|60|61|62|67|64|65|66|67|68|69|87|71|72|75|74|75|76|78|78|79|80|83|82|83|84|86|86|87|0\n64|63|62|60|60|59|57|55|55|56|53|51|51|50|49|49|48|47|46|46|45|44|41|41|39|38|37|36|35|35|34|34|43|40|36|37|38|39|40|42|42|43|44|45|65|47|48|54|50|52|52|53|54|58|56|57|58|59|61|61|62|63|64|65|0\n12|10|10|11|8|8|9|9|13|11|12|13|0\n53|53|50|50|51|52|48|46|46|45|43|42|41|41|40|38|38|37|36|33|33|34|32|30|30|29|29|49|31|31|32|35|34|35|36|37|39|39|40|44|42|43|44|45|47|47|48|49|55|51|52|54|54|55|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n45|44|42|40|39|38|37|37|36|35|31|31|32|33|30|29|27|27|24|24|25|26|43|25|26|28|28|29|30|34|32|33|34|35|36|41|38|39|40|41|42|43|44|45|0\n9|8|7|6|6|7|8|9|0\n20|19|18|17|16|15|14|13|12|12|21|13|14|15|16|17|18|19|20|21|0\n36|36|37|32|32|33|30|30|29|27|25|25|26|24|21|21|22|23|35|39|22|23|24|28|26|27|28|29|31|31|34|33|34|35|38|37|38|39|0\n67|66|64|63|63|62|59|58|58|57|54|53|53|55|50|49|49|48|45|44|44|46|43|41|41|42|40|38|38|37|35|35|36|61|36|37|39|39|40|52|42|43|47|45|46|47|48|51|50|51|52|56|54|55|56|57|60|59|60|61|62|65|64|65|66|67|0\n51|49|48|45|44|44|46|43|42|38|38|37|37|40|36|35|34|33|32|30|30|29|28|27|27|50|28|29|31|31|32|33|34|35|36|41|39|39|40|41|42|43|47|45|46|47|48|49|50|51|0\n42|41|40|39|39|43|37|36|35|34|34|33|32|30|30|29|27|27|26|25|24|24|45|25|26|28|28|29|31|31|32|33|38|35|36|37|38|44|40|41|42|43|44|45|0\n23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0\n29|28|28|30|26|23|23|22|22|21|20|18|18|17|17|27|19|19|20|21|25|24|24|25|26|27|31|29|30|31|0\n47|43|40|40|41|39|38|37|36|34|34|32|32|33|44|31|30|28|28|27|26|25|25|46|26|27|29|29|30|31|45|33|35|35|36|37|38|39|42|41|42|43|44|45|46|47|0\n52|52|51|49|49|48|47|46|46|54|45|44|40|40|39|39|42|38|36|36|35|34|32|32|31|30|29|29|30|31|33|33|34|35|37|37|38|43|41|41|42|43|44|45|55|47|48|50|50|51|53|53|54|55|0\n42|42|39|39|37|36|35|33|33|32|31|31|30|28|28|27|25|24|24|23|23|41|26|25|26|27|29|29|30|38|32|34|34|35|36|37|38|40|40|41|43|43|0\n30|29|28|28|26|25|23|23|22|21|20|19|18|17|17|27|18|19|20|21|22|24|24|25|26|27|31|29|30|31|0\n31|29|23|23|22|21|21|25|26|27|20|19|18|17|17|30|18|19|20|28|22|24|24|25|26|27|28|29|30|31|0\n60|60|61|59|57|57|55|55|54|54|51|51|50|49|47|46|46|45|44|43|42|40|39|38|37|37|36|35|34|33|33|53|34|35|36|41|38|39|40|41|42|43|44|45|48|47|48|49|50|52|52|53|63|56|56|58|58|59|62|61|62|63|0\n34|34|30|30|31|29|27|26|26|25|24|23|21|21|20|19|19|33|20|22|22|23|24|25|28|27|28|29|32|31|32|33|35|35|0\n15|14|14|13|10|10|11|12|17|11|12|13|16|15|16|17|0\n10|9|9|7|7|8|8|11|10|11|0\n11|11|10|9|9|8|8|13|10|12|12|13|0\n52|52|50|49|48|47|43|43|42|42|45|40|37|37|38|36|35|33|33|32|32|31|30|29|28|28|51|29|30|31|41|34|34|35|36|39|38|39|40|41|46|44|44|45|46|47|48|49|50|51|53|53|0\n59|58|58|57|56|55|54|53|52|52|50|48|47|47|46|43|40|40|41|42|39|38|38|37|35|34|34|33|32|32|51|33|36|35|36|37|45|39|44|41|42|43|44|45|46|49|48|49|50|51|61|53|54|55|56|57|60|59|60|61|0\n45|43|41|40|40|39|37|37|36|34|33|33|32|31|29|28|28|27|26|25|24|24|44|25|26|27|30|29|30|31|32|35|34|35|36|38|38|39|42|41|42|43|44|45|0\n38|37|36|35|34|33|32|31|30|28|27|26|26|25|24|21|21|22|23|39|22|23|24|25|29|27|28|29|30|31|32|33|34|35|36|37|38|39|0\n47|43|42|40|39|39|38|38|44|37|36|35|34|33|28|28|27|26|25|25|30|31|32|46|26|27|29|29|30|31|32|33|34|35|36|37|45|41|40|41|42|43|44|45|46|47|0\n33|32|31|30|29|27|27|25|25|26|34|35|24|22|22|21|20|20|37|21|23|23|24|36|26|28|28|29|30|31|32|33|34|35|36|37|0\n34|33|31|30|29|29|28|28|27|24|23|23|25|21|20|19|19|22|20|21|22|26|24|25|26|27|35|32|30|31|32|33|34|35|0\n11|9|7|7|8|10|8|9|10|11|0\n17|15|14|11|11|10|10|13|16|12|12|13|14|15|16|17|0\n29|28|28|27|26|26|24|22|22|21|19|19|18|17|17|25|18|20|20|21|23|23|24|25|31|27|30|29|30|31|0\n43|42|41|40|40|39|37|37|36|35|35|32|32|31|29|26|26|27|28|25|24|24|34|25|30|27|28|29|30|31|33|33|34|45|36|38|38|39|44|41|42|43|44|45|0\n22|22|21|19|17|16|16|15|13|13|14|20|14|15|18|17|18|19|20|21|23|23|0\n36|35|34|34|32|31|31|28|27|27|25|24|23|22|22|21|20|20|30|21|26|23|24|25|26|29|28|29|30|33|32|33|37|35|36|37|0\n44|43|42|42|41|40|38|36|35|35|34|33|30|29|29|31|27|27|26|25|24|24|39|25|26|28|28|32|30|31|32|33|34|37|36|37|38|39|40|41|45|43|44|45|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n41|38|36|36|37|35|33|32|32|31|30|28|27|27|26|24|24|23|22|22|40|23|25|25|26|29|28|29|30|31|34|33|34|35|39|37|38|39|40|41|0\n32|32|31|31|30|27|27|25|25|26|29|23|22|21|20|19|19|24|20|21|22|23|24|35|26|28|28|29|30|34|33|33|34|35|0\n14|14|12|12|11|9|9|10|10|11|13|13|15|15|0\n50|44|44|45|46|43|43|48|41|40|40|39|39|38|35|35|36|33|32|31|29|29|28|27|27|34|28|30|30|31|32|33|34|37|36|37|38|51|42|41|42|49|47|45|46|47|48|49|50|51|0\n30|30|29|27|25|25|26|24|23|23|32|33|21|21|19|19|20|35|20|22|22|34|24|28|26|27|28|29|31|31|32|33|34|35|0\n26|25|24|23|21|20|20|19|17|17|16|15|15|27|16|18|18|19|22|21|22|23|24|25|26|27|0\n20|19|19|17|15|14|13|13|12|12|18|16|14|15|16|17|18|21|20|21|0\n11|9|8|7|7|10|8|9|10|11|0\n27|25|20|19|19|21|18|18|23|17|16|15|15|26|16|17|24|22|20|21|22|23|24|25|26|27|0\n26|26|24|21|21|22|20|19|18|17|16|15|15|25|16|17|18|19|20|23|22|23|24|25|27|27|0\n26|26|24|22|21|21|20|19|18|17|16|15|15|25|16|17|18|19|20|23|22|23|24|25|27|27|0\n51|50|46|46|47|45|44|42|41|40|39|39|38|37|36|36|33|32|32|31|30|28|28|27|27|35|29|29|30|31|34|33|34|35|49|37|38|43|40|41|42|43|44|45|48|47|48|49|50|51|0\n32|31|31|30|29|28|28|34|35|25|25|24|23|22|21|20|20|27|37|21|22|23|24|26|26|27|36|29|30|33|32|33|34|35|36|37|0\n43|41|40|38|35|35|36|37|34|34|32|30|29|29|28|27|26|25|24|23|23|33|24|25|26|27|28|31|30|31|32|33|42|39|36|37|38|39|40|41|42|43|0\n82|82|80|79|79|78|78|77|75|74|74|73|72|70|70|69|67|67|66|65|63|62|61|58|58|59|57|57|56|54|53|52|52|51|50|48|47|46|45|44|44|49|85|45|46|47|48|49|50|51|55|53|54|55|56|64|60|59|60|61|62|63|64|65|66|68|68|69|71|71|72|73|76|75|76|77|84|81|80|81|83|83|84|85|0\n37|37|36|34|33|33|32|31|30|30|29|26|25|24|23|23|22|21|21|28|22|27|24|25|26|27|28|29|39|31|32|35|34|35|36|38|38|39|0\n10|10|7|7|8|9|8|9|11|11|0\n5|5|6|7|6|7|0\n52|51|51|53|50|48|48|47|47|55|46|43|42|42|44|41|40|39|38|37|36|34|34|33|32|31|30|30|57|31|32|33|35|35|36|37|38|39|40|41|45|43|44|45|46|56|49|49|50|54|52|53|54|55|56|57|0\n66|65|64|62|62|61|60|58|57|55|55|54|53|53|52|51|49|47|47|46|46|50|45|44|41|41|42|39|37|36|36|35|35|40|38|37|38|39|40|43|42|43|44|45|67|48|48|49|50|51|52|59|54|56|56|57|58|59|60|61|63|63|64|65|66|67|0\n52|49|49|48|47|47|46|45|43|43|44|42|41|39|38|37|35|35|34|33|31|29|29|30|28|28|40|32|30|31|32|33|34|36|36|37|38|39|40|41|42|53|44|45|46|51|48|50|50|51|52|53|0\n22|22|20|19|18|18|17|17|24|25|16|15|15|27|16|26|21|19|20|21|23|23|24|25|26|27|0\n28|25|25|24|23|23|22|22|21|20|18|17|16|16|19|17|18|19|20|21|29|27|24|26|26|27|28|29|0\n7|5|5|6|6|7|0\n29|27|23|23|22|22|25|20|19|19|18|17|16|16|28|17|18|21|20|21|26|24|24|25|26|27|28|29|0\n11|11|10|10|13|9|9|15|14|12|12|13|14|15|0\n29|25|24|21|21|22|20|20|26|19|18|17|16|16|28|17|18|19|27|23|22|23|24|25|26|27|28|29|0\n36|35|34|34|33|31|31|32|38|39|29|29|28|26|25|25|24|23|22|22|41|23|24|27|26|27|28|30|30|40|32|33|37|35|36|37|38|39|40|41|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n27|23|22|22|21|20|19|17|16|16|15|15|25|26|18|17|18|19|20|21|24|23|24|25|26|27|0\n65|65|64|64|58|56|56|57|55|53|53|52|50|50|49|48|47|47|60|46|45|44|42|42|43|41|39|38|38|37|36|35|35|63|36|37|40|39|40|41|62|43|44|45|46|61|48|49|51|51|52|54|54|55|59|57|58|59|60|61|62|63|67|66|66|67|0\n49|45|41|41|39|36|36|37|35|34|33|33|40|43|32|32|46|30|29|28|28|27|26|26|48|27|31|29|30|31|47|44|34|35|38|37|38|39|40|42|42|43|44|45|46|47|48|49|0\n38|38|36|35|31|30|28|28|27|26|26|32|33|24|23|23|22|21|21|37|22|25|24|25|34|27|29|29|30|31|32|33|34|35|36|37|39|39|0\n57|56|56|55|54|54|52|50|50|49|47|46|45|44|44|43|41|40|40|39|38|36|36|35|34|33|31|31|32|53|32|33|34|35|37|37|38|39|42|41|42|43|48|45|46|47|48|49|51|51|52|53|59|55|58|57|58|59|0\n43|42|42|44|40|40|41|46|47|39|38|37|36|35|34|32|32|31|30|28|27|27|26|26|49|29|28|29|30|31|33|33|34|35|36|37|38|39|48|41|45|43|44|45|46|47|48|49|0\n19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n15|15|13|13|14|11|10|10|12|11|12|17|14|16|16|17|0\n51|51|52|50|47|47|45|45|43|41|41|42|40|39|38|37|34|34|35|32|32|31|30|29|28|28|49|29|30|31|33|33|36|35|36|37|38|39|40|44|42|43|44|46|46|48|48|49|50|53|52|53|0\n51|51|50|48|47|45|45|44|43|43|49|41|40|39|38|36|36|35|34|33|31|31|30|28|28|29|42|29|30|32|32|33|34|35|37|37|38|39|40|41|42|53|44|46|46|47|48|49|50|52|52|53|0\n51|51|50|50|49|48|47|46|45|44|43|42|41|41|54|55|39|38|37|36|35|34|34|33|31|30|30|32|57|31|32|33|40|35|36|37|38|39|40|56|42|43|44|45|46|47|48|49|53|52|52|53|54|55|56|57|0\n25|23|23|22|20|19|18|18|17|15|14|14|16|15|16|17|21|19|20|21|22|24|24|25|0\n16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0\n25|23|23|22|21|21|26|27|20|19|18|17|16|16|29|17|18|19|20|28|22|24|24|25|26|27|28|29|0\n57|56|55|53|53|52|51|50|49|48|48|58|59|47|45|45|44|42|40|39|36|36|37|38|35|34|34|33|32|32|61|33|43|35|41|37|38|39|40|41|42|43|44|46|46|47|60|49|50|51|52|54|54|55|56|57|58|59|60|61|0\n30|29|24|23|21|20|20|19|19|25|18|17|17|27|28|31|18|26|22|21|22|23|24|25|26|27|28|29|30|31|0\n35|34|34|33|32|32|30|29|27|27|26|24|23|22|22|21|20|20|31|21|25|23|24|25|26|28|28|29|30|31|37|33|36|35|36|37|0\n17|15|14|13|11|11|10|10|16|12|12|13|14|15|16|17|0\n71|69|66|65|64|63|62|61|60|59|59|58|56|56|55|54|51|51|52|50|50|49|46|44|44|43|42|41|40|40|47|39|38|37|37|70|38|39|48|41|42|43|45|45|46|47|48|49|68|53|52|53|54|55|57|57|58|67|60|61|62|63|64|65|66|67|68|69|70|71|0\n37|36|35|34|34|33|33|24|23|22|22|25|26|27|28|29|30|21|21|32|31|23|24|25|26|27|28|29|30|31|32|39|38|35|36|37|38|39|0\n31|29|28|27|26|24|24|23|22|21|20|19|18|17|17|30|18|19|20|21|22|23|25|25|26|27|28|29|30|31|0\n82|81|80|78|78|77|76|75|74|74|73|68|66|66|65|64|62|61|61|60|60|69|70|59|58|56|56|55|53|52|51|50|50|49|46|45|45|47|44|43|43|72|44|48|46|47|48|49|54|51|52|53|54|55|57|57|58|59|71|63|62|63|64|65|67|67|68|69|70|71|72|73|83|75|76|77|79|79|80|81|82|83|0\n30|29|28|28|27|25|24|23|23|21|20|19|18|17|17|22|18|19|20|21|22|26|24|25|26|27|31|29|30|31|0\n31|28|28|27|27|26|23|23|22|20|19|19|18|17|17|25|18|21|20|21|22|24|24|25|26|30|29|29|30|31|0\n30|29|29|27|26|25|22|22|23|21|20|19|18|17|17|28|18|19|20|21|24|23|24|25|26|27|28|31|30|31|0\n28|25|25|26|27|24|22|22|20|19|18|16|16|17|21|17|18|19|20|21|23|23|24|29|26|27|28|29|0\n61|60|58|58|57|56|53|53|54|52|52|62|63|51|50|48|47|46|46|45|43|43|41|40|39|38|38|37|36|35|34|34|65|35|36|37|42|39|40|41|42|44|44|45|49|47|48|49|50|51|64|55|54|55|56|57|59|59|60|61|62|63|64|65|0\n53|53|52|50|48|46|46|45|45|49|44|43|43|42|40|40|36|34|34|35|37|33|32|31|30|29|29|39|30|31|32|33|38|35|36|37|38|39|41|41|42|55|44|51|47|47|48|49|50|51|52|54|54|55|0\n47|47|46|43|43|42|41|40|39|38|37|36|36|35|34|33|31|31|30|30|28|27|26|26|29|27|28|29|49|32|32|33|34|35|45|37|38|39|40|41|42|44|44|45|46|48|48|49|0\n47|45|45|43|42|41|41|40|39|39|48|49|37|37|34|33|33|35|31|31|30|29|28|27|27|51|28|29|30|32|32|36|34|35|36|38|38|50|40|44|42|43|44|46|46|47|48|49|50|51|0\n45|41|41|42|39|39|40|44|38|37|36|34|33|33|32|30|30|29|28|27|26|25|25|47|26|27|28|29|31|31|32|35|34|35|36|37|38|46|40|43|42|43|44|45|46|47|0\n5|5|6|7|6|7|0\n23|22|21|21|20|19|19|17|17|15|14|14|16|15|16|18|18|25|20|24|22|23|24|25|0\n68|66|66|65|64|63|62|62|69|61|60|59|58|57|56|55|54|53|51|47|46|45|45|48|41|40|40|42|43|39|39|50|38|37|37|71|38|52|44|41|42|43|44|49|46|47|48|49|50|51|52|53|54|55|56|57|58|59|60|61|70|63|64|65|67|67|68|69|70|71|0\n42|41|39|39|38|37|36|34|34|35|33|31|31|29|28|27|25|25|24|23|23|30|24|26|26|27|28|29|30|32|32|33|43|35|36|37|38|40|40|41|42|43|0\n37|37|36|35|35|31|28|28|27|26|26|30|32|25|24|22|22|21|21|34|23|23|24|25|33|27|29|29|30|31|32|33|34|39|36|38|38|39|0\n48|47|46|45|43|42|42|44|39|35|35|34|34|37|32|32|31|31|30|29|28|27|26|26|41|27|28|29|30|40|33|33|38|36|36|37|38|39|40|41|49|43|44|45|46|47|48|49|0\n33|29|27|27|26|25|25|30|23|21|21|20|20|19|18|18|32|19|24|22|22|23|24|31|26|28|28|29|30|31|32|33|0\n28|25|24|24|23|23|22|22|21|19|19|17|16|16|18|17|18|20|20|21|29|27|26|25|26|27|28|29|0\n15|14|13|11|10|9|9|12|10|11|12|13|14|15|0\n9|7|6|6|8|7|8|9|0\n62|62|59|59|58|57|54|54|53|52|52|51|46|46|44|43|42|41|41|40|39|38|38|48|49|36|36|35|33|33|34|61|34|35|37|37|50|39|40|45|42|43|44|45|47|47|48|49|50|51|56|53|55|55|56|57|58|60|60|61|63|63|0\n17|16|14|12|12|11|10|10|15|11|13|13|14|15|16|17|0\n65|63|61|60|59|59|58|57|56|55|54|48|48|49|45|45|46|44|43|43|51|42|42|40|39|38|38|36|36|35|34|34|64|35|37|37|41|39|40|41|53|52|44|47|46|47|50|49|50|51|52|53|54|55|56|57|58|62|60|61|62|63|64|65|0\n19|16|15|14|12|12|13|11|11|18|17|13|14|15|16|17|18|19|0\n51|51|50|48|48|47|45|43|43|42|42|41|40|39|38|37|35|35|36|34|31|31|30|29|28|28|33|29|30|32|32|33|34|53|36|37|38|39|40|41|46|44|44|45|46|47|49|49|50|52|52|53|0\n51|49|48|46|46|45|41|41|40|39|39|43|38|37|36|35|33|33|32|30|30|29|28|27|27|50|28|29|31|31|32|34|34|35|36|37|38|44|40|42|42|43|44|45|47|47|48|49|50|51|0\n36|35|35|37|30|29|29|28|27|26|26|32|33|24|22|22|23|21|21|39|25|23|24|25|34|27|28|31|30|31|32|33|34|38|36|37|38|39|0\n32|32|33|30|29|28|28|27|26|25|24|23|22|21|19|19|20|35|20|21|22|23|24|25|26|27|31|29|30|31|34|33|34|35|0\n59|58|57|57|56|55|54|53|52|51|50|50|61|49|48|46|45|45|44|43|34|34|35|36|37|38|39|40|33|33|42|63|41|35|36|37|38|39|40|41|42|43|44|47|46|47|48|49|62|51|52|53|54|55|56|60|58|59|60|61|62|63|0\n54|53|52|52|55|51|51|48|46|46|45|44|43|42|41|41|49|40|38|37|36|35|34|33|33|32|31|30|30|31|32|39|34|35|36|37|38|39|40|50|42|43|44|45|47|47|48|49|50|57|56|53|54|55|56|57|0\n53|52|52|51|48|46|46|47|49|43|42|42|44|40|39|38|38|37|37|35|33|32|32|31|30|29|29|36|30|31|34|33|34|35|36|55|41|39|40|41|45|43|44|45|50|47|48|49|50|51|54|53|54|55|0\n64|63|62|59|58|58|60|57|56|55|55|54|51|51|50|49|49|47|45|44|43|43|42|41|40|39|38|37|36|35|34|34|48|35|36|37|38|39|40|41|42|46|44|45|46|47|48|53|50|52|52|53|54|65|56|57|61|59|60|61|62|63|64|65|0\n59|57|56|55|55|54|52|52|51|50|50|60|61|49|47|46|45|44|43|42|42|41|40|39|38|37|35|33|33|34|36|63|34|35|36|37|38|39|40|41|48|43|44|45|46|47|48|49|62|51|53|53|54|58|56|57|58|59|60|61|62|63|0\n32|31|29|28|28|27|26|25|25|24|23|20|19|19|18|18|22|21|20|21|22|23|24|33|26|27|30|29|30|31|32|33|0\n52|52|49|48|48|46|44|44|45|43|39|39|38|37|37|36|35|35|33|32|32|31|30|29|28|28|51|29|30|31|34|33|34|42|36|41|38|40|40|41|42|43|47|45|46|47|50|49|50|51|53|53|0\n30|30|28|28|29|32|27|26|24|23|20|19|18|18|21|22|25|19|20|21|22|23|24|25|26|27|33|29|31|31|32|33|0\n37|35|32|31|31|30|30|29|28|27|26|24|24|23|22|21|20|20|36|21|22|23|25|25|26|27|28|29|34|33|32|33|34|35|36|37|0\n4|4|5|5|0\n62|61|56|56|55|53|52|51|51|50|49|48|48|58|59|46|44|44|45|43|42|41|40|39|38|38|37|36|34|33|33|35|34|35|36|37|63|39|40|41|42|43|47|45|46|47|60|49|50|54|52|53|54|55|57|57|58|59|60|61|62|63|0\n38|37|36|36|34|32|31|31|29|29|26|26|24|23|23|25|22|21|21|35|22|28|24|25|27|27|28|30|30|33|32|33|34|35|39|37|38|39|0\n30|30|29|28|26|26|25|22|22|23|21|21|32|33|20|19|19|35|20|34|24|23|24|25|27|27|28|29|31|31|32|33|34|35|0\n39|35|34|34|36|33|32|31|30|29|27|27|26|24|24|23|21|21|22|38|22|23|25|25|26|28|28|29|30|31|32|33|37|35|36|37|38|39|0\n71|71|72|70|70|74|75|69|69|68|66|66|65|65|78|79|63|62|61|61|60|57|57|56|54|53|52|52|51|50|49|49|48|44|43|42|42|45|46|47|81|43|44|45|46|47|48|59|50|51|55|53|54|55|56|58|58|59|60|64|62|63|64|80|67|67|68|77|76|73|72|73|74|75|76|77|78|79|80|81|0\n34|33|32|31|31|29|28|28|27|26|26|36|37|24|22|22|23|21|21|39|25|23|24|25|38|27|30|29|30|35|32|33|34|35|36|37|38|39|0\n27|26|26|24|24|25|29|23|23|20|20|19|18|17|17|22|18|19|21|21|22|31|30|25|28|27|28|29|30|31|0\n16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0\n40|39|39|35|33|32|32|31|28|27|27|29|26|26|36|24|23|22|22|25|38|23|24|25|37|30|28|29|30|31|34|33|34|35|36|37|38|41|40|41|0\n30|23|23|21|21|22|25|20|19|18|18|27|28|29|17|17|31|19|20|26|22|24|24|25|26|27|28|29|30|31|0\n52|51|49|49|50|47|44|44|42|42|41|40|39|38|38|37|36|35|33|32|32|31|30|28|28|29|48|29|30|31|34|33|34|35|36|37|46|39|40|41|43|43|45|45|46|47|48|53|50|51|52|53|0\n8|7|6|6|9|7|8|9|0\n20|19|18|15|15|16|14|13|12|12|21|13|14|17|16|17|18|19|20|21|0\n39|39|37|35|35|34|34|33|32|30|30|29|29|41|27|26|26|25|24|23|23|43|24|25|28|27|28|42|31|31|32|33|38|36|36|37|38|40|40|41|42|43|0\n23|22|21|20|19|18|17|17|16|15|14|14|25|15|16|24|18|19|20|21|22|23|24|25|0\n56|55|53|53|52|51|51|50|49|47|45|44|43|42|41|41|40|39|37|37|36|35|34|33|32|31|30|30|48|31|32|33|34|35|36|38|38|39|40|46|42|43|44|45|46|47|48|49|50|57|52|54|54|55|56|57|0\n15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0\n33|32|32|31|30|29|28|28|35|25|24|24|23|23|22|21|20|20|37|21|22|27|26|25|26|27|36|29|30|31|34|33|34|35|36|37|0\n33|31|29|28|28|27|26|24|22|22|23|21|19|19|18|18|32|20|20|21|25|23|24|25|26|27|30|29|30|31|32|33|0\n33|32|32|34|31|30|30|36|37|28|27|27|26|25|24|23|22|21|21|39|22|23|24|25|26|29|28|29|38|31|35|33|34|35|36|37|38|39|0\n41|36|35|33|33|32|31|31|37|38|29|29|27|27|26|25|24|23|22|22|40|23|24|25|26|28|28|30|30|39|32|34|34|35|36|37|38|39|40|41|0\n19|18|18|20|15|14|14|13|12|12|17|13|16|15|16|17|21|19|20|21|0\n39|37|37|36|35|34|33|32|31|31|40|41|30|28|28|27|26|25|24|23|23|43|24|25|26|27|29|29|30|42|32|33|34|35|36|38|38|39|40|41|42|43|0\n33|28|27|27|26|25|25|30|23|22|21|21|19|19|18|18|32|20|20|24|22|23|24|31|26|29|28|29|30|31|32|33|0\n11|9|8|7|7|10|8|9|10|11|0\n41|37|35|34|34|33|33|38|31|30|29|28|28|27|26|24|23|23|22|22|40|25|24|25|26|27|32|29|30|31|32|39|36|35|36|37|38|39|40|41|0\n33|31|29|27|27|28|26|24|23|22|22|21|20|18|18|19|32|19|20|21|25|23|24|25|26|30|28|29|30|31|32|33|0\n20|16|16|17|14|14|15|13|13|12|12|21|19|15|18|17|18|19|20|21|0\n30|29|29|28|27|21|21|22|23|24|20|19|17|17|18|26|18|19|20|25|22|23|24|25|26|27|28|31|30|31|0\n17|17|16|14|14|15|19|13|12|12|21|13|20|15|16|18|18|19|20|21|0\n14|12|11|10|9|9|13|15|10|11|12|13|14|15|0\n70|69|69|71|67|67|66|66|62|59|59|60|58|57|56|55|55|63|54|50|49|49|51|47|46|46|45|45|44|42|42|41|40|39|38|38|65|39|40|41|43|43|44|53|48|47|48|52|50|51|52|53|54|64|56|57|58|61|60|61|62|63|64|65|73|68|68|72|70|71|72|73|0\n58|56|56|55|54|54|52|50|48|46|46|47|45|45|44|42|40|40|41|39|38|37|35|34|33|32|32|31|31|53|36|33|34|35|36|37|38|39|43|41|42|43|44|51|49|47|48|49|50|51|52|53|59|55|57|57|58|59|0\n32|31|31|30|29|27|25|24|23|23|22|21|20|19|18|18|28|19|20|21|22|26|24|25|26|27|28|29|30|33|32|33|0\n44|43|43|41|39|37|37|38|36|35|32|32|31|29|29|28|27|26|26|25|24|24|42|25|34|27|28|30|30|31|33|33|34|35|36|40|38|39|40|41|42|45|44|45|0\n34|33|32|31|31|29|28|25|24|24|26|23|22|21|19|19|20|30|20|21|22|23|27|25|26|27|28|29|30|35|32|33|34|35|0\n55|54|51|51|50|50|49|47|46|46|48|56|57|45|44|43|42|42|41|40|38|38|36|34|34|33|32|31|31|37|32|33|35|35|36|37|39|39|40|41|59|43|44|45|58|47|48|49|53|52|52|53|54|55|56|57|58|59|0\n26|26|22|21|20|19|19|23|18|17|15|15|16|25|16|17|18|24|20|21|22|23|24|25|27|27|0\n22|22|23|21|21|25|20|19|18|17|16|15|15|27|16|17|18|19|20|26|24|23|24|25|26|27|0\n24|23|23|21|20|17|15|15|14|14|18|19|22|16|16|17|18|19|20|21|22|25|24|25|0\n47|47|46|46|49|45|44|43|43|51|41|41|40|39|34|34|35|33|32|32|37|31|30|29|28|28|53|29|30|31|38|33|36|35|36|37|38|39|40|42|42|52|44|45|50|48|48|49|50|51|52|53|0\n31|31|32|28|28|27|26|26|30|34|24|22|21|21|20|19|19|25|20|23|22|23|24|25|35|27|29|29|30|33|32|33|34|35|0\n55|49|48|47|47|45|44|43|43|42|40|40|39|38|36|36|37|51|52|35|32|32|33|31|30|29|29|54|30|31|34|33|34|35|53|37|38|39|41|41|42|46|44|45|46|50|48|49|50|51|52|53|54|55|0\n34|32|32|33|30|28|28|26|25|25|24|23|22|20|20|19|19|31|21|21|22|23|24|27|26|27|29|29|30|31|35|33|34|35|0\n3|3|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0\n25|23|22|20|20|19|17|17|16|15|14|14|24|15|16|18|18|19|21|21|22|23|24|25|0\n29|26|26|25|24|23|22|21|19|18|18|17|16|16|28|17|20|19|20|21|22|23|24|25|27|27|28|29|0\n21|20|19|16|16|14|14|13|12|12|18|13|15|15|17|17|18|19|20|21|0\n49|49|48|47|43|42|39|39|40|41|44|45|37|36|36|35|33|33|32|31|31|29|28|27|27|30|28|29|30|51|32|34|34|35|38|37|38|46|40|41|42|43|44|45|46|47|48|50|50|51|0\n57|57|56|54|50|50|51|52|53|49|47|47|46|45|41|41|40|40|43|39|36|36|35|35|33|33|32|31|31|59|32|34|34|38|37|37|38|39|44|42|42|43|44|45|46|48|48|49|55|51|52|53|54|55|56|58|58|59|0\n33|32|30|29|27|26|26|25|23|22|22|21|20|18|18|19|31|19|20|21|24|23|24|25|28|27|28|29|30|31|32|33|0\n15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0\n32|31|30|29|27|27|26|25|24|24|23|22|20|19|18|18|21|19|20|21|22|23|33|25|26|28|28|29|30|31|32|33|0\n36|35|34|34|33|30|30|31|26|26|27|24|24|23|22|20|20|21|29|21|22|23|25|25|28|27|28|29|32|31|32|33|37|35|36|37|0\n34|33|32|31|31|30|28|28|27|25|25|26|24|22|21|21|20|20|37|23|22|23|24|36|26|27|29|29|30|35|32|33|34|35|36|37|0\n38|37|36|35|35|29|29|28|26|25|25|24|23|23|31|32|21|21|22|34|22|33|24|27|26|27|28|30|30|31|32|33|34|39|36|37|38|39|0\n15|15|14|13|12|11|10|10|17|11|12|13|14|16|16|17|0\n43|43|42|41|40|39|38|34|34|35|36|37|32|31|30|29|27|26|25|24|24|28|33|25|26|27|28|29|30|31|32|33|45|35|36|37|38|39|40|41|42|44|44|45|0\n32|31|31|28|26|25|25|24|24|23|22|20|19|19|18|18|30|21|20|21|22|23|29|27|26|27|28|29|30|33|32|33|0\n103|101|94|92|92|91|90|89|88|87|86|85|84|84|83|82|81|79|79|78|76|76|75|75|96|74|72|71|71|70|69|68|67|66|66|98|99|65|64|62|61|60|60|59|56|56|57|55|54|53|53|102|54|55|58|57|58|59|63|61|62|63|64|65|100|67|68|69|70|73|72|73|74|97|77|77|78|80|80|81|82|83|95|85|86|87|88|89|90|91|93|93|94|95|96|97|98|99|100|101|102|103|0\n28|28|27|25|25|23|22|22|21|20|18|18|17|16|16|17|19|19|20|21|24|23|24|26|26|27|29|29|0\n29|28|26|25|24|23|22|21|20|19|18|18|27|17|17|31|30|19|20|21|22|23|24|25|26|27|28|29|30|31|0\n37|36|32|32|31|29|28|28|27|25|25|24|22|21|21|20|20|34|35|23|22|23|24|26|26|27|30|29|30|31|33|33|34|35|36|37|0\n34|34|33|32|32|36|37|30|29|29|28|27|26|24|23|23|22|21|21|39|22|25|24|25|26|27|28|31|30|31|38|33|35|35|36|37|38|39|0\n52|48|47|47|49|45|45|46|43|43|42|40|39|39|41|38|35|34|34|33|33|31|30|29|28|28|32|29|30|31|32|37|36|35|36|37|38|53|40|41|42|44|44|51|46|50|48|49|50|51|52|53|0\n36|35|35|32|32|31|29|29|28|25|24|23|23|26|22|21|20|20|34|21|22|27|24|25|26|27|28|30|30|31|33|33|34|37|36|37|0\n52|51|49|48|47|47|46|43|43|44|42|42|41|39|39|36|35|35|33|33|34|32|30|30|29|28|28|29|31|31|32|38|34|37|36|37|38|40|40|41|53|45|44|45|46|50|48|49|50|51|52|53|0\n67|66|63|63|64|62|61|61|68|69|58|58|57|55|54|54|53|52|52|51|45|44|44|46|43|42|42|48|49|40|39|39|38|37|37|71|38|41|40|41|50|43|47|45|46|47|48|49|50|51|60|53|56|55|56|57|59|59|60|70|62|65|64|65|66|67|68|69|70|71|0\n48|47|45|45|44|43|40|40|39|37|37|36|35|34|33|32|32|31|30|30|29|28|27|26|26|27|28|29|49|31|42|33|34|35|36|38|38|39|41|41|42|43|44|46|46|47|48|49|0\n31|31|32|33|30|28|28|27|26|25|24|23|21|21|20|19|19|35|20|22|22|23|24|25|26|27|29|29|30|34|32|33|34|35|0\n80|77|76|75|75|78|74|69|68|68|70|66|66|65|59|58|58|60|56|56|57|55|55|63|54|54|72|53|52|51|51|50|49|46|45|45|44|43|42|42|48|43|44|47|46|47|48|49|50|81|52|53|73|64|62|57|61|59|60|61|62|63|64|65|67|67|71|69|70|71|72|73|74|79|76|77|78|79|80|81|0\n58|56|56|55|54|53|53|52|47|47|46|45|45|49|44|43|42|41|39|37|37|36|36|35|33|33|32|31|31|51|32|34|34|35|40|38|38|39|40|41|42|43|44|50|46|48|48|49|50|51|52|59|54|55|57|57|58|59|0\n32|31|30|27|27|28|26|25|24|24|23|21|21|19|18|18|20|19|20|22|22|23|33|25|26|29|28|29|30|31|32|33|0\n61|61|60|58|58|57|56|54|52|52|53|51|50|50|48|46|46|45|43|41|40|40|39|39|38|37|36|35|33|33|34|49|34|35|36|37|38|44|42|41|42|43|44|45|47|47|48|49|63|51|55|53|54|55|56|57|59|59|60|62|62|63|0\n24|24|20|19|18|18|21|17|16|15|14|14|23|15|16|17|22|19|20|21|22|23|25|25|0\n61|61|60|59|59|55|55|51|51|49|49|48|47|46|45|45|53|54|43|43|41|40|39|38|37|36|36|35|33|33|34|58|34|35|42|37|38|39|40|41|42|44|44|57|46|47|48|50|50|52|52|53|54|56|56|57|58|63|60|62|62|63|0\n35|34|33|33|36|29|27|27|26|25|24|24|30|23|22|20|20|21|32|21|22|23|31|25|26|28|28|29|30|31|32|37|34|35|36|37|0\n24|23|23|20|19|18|17|17|16|14|14|15|22|15|16|21|18|19|20|21|22|25|24|25|0\n36|33|33|32|32|35|30|29|28|27|25|24|23|23|22|21|20|20|31|21|22|26|24|25|26|27|28|29|30|31|37|34|34|35|36|37|0\n9|8|7|6|6|7|8|9|0\n28|27|26|25|25|29|23|23|22|21|19|19|18|17|17|31|18|20|20|21|22|24|24|30|26|27|28|29|30|31|0\n12|12|9|9|8|8|11|10|10|11|13|13|0\n28|26|26|27|25|23|23|22|21|21|20|19|18|17|17|31|18|19|20|30|22|24|24|25|29|27|28|29|30|31|0\n19|18|16|15|13|12|12|11|11|17|14|13|14|15|16|17|18|19|0\n18|17|17|16|14|14|11|11|12|13|12|13|15|15|16|19|18|19|0\n21|21|20|20|18|15|15|16|13|13|14|19|14|17|16|17|18|19|23|22|22|23|0\n27|25|23|21|21|22|20|18|17|17|16|15|15|26|16|19|18|19|20|24|22|23|24|25|26|27|0\n22|21|20|18|18|16|15|15|14|13|13|23|14|17|16|17|19|19|20|21|22|23|0\n15|15|16|12|11|11|10|10|14|13|12|13|14|17|16|17|0\n17|13|12|12|11|11|10|10|16|15|14|13|14|15|16|17|0\n17|16|16|18|14|12|12|11|11|15|13|13|14|15|19|17|18|19|0\n54|54|51|50|49|49|48|45|43|43|44|42|41|41|39|38|37|37|34|33|32|32|35|31|30|29|29|53|30|31|36|33|34|35|36|40|38|39|40|47|42|46|44|45|46|47|48|52|50|51|52|53|55|55|0\n52|50|49|48|48|47|46|45|45|43|41|40|40|37|35|35|34|34|38|33|31|30|30|29|28|28|44|29|32|31|32|33|39|36|36|37|38|39|42|41|42|43|44|53|46|47|51|49|50|51|52|53|0\n9|9|10|11|8|8|13|12|10|11|12|13|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n44|44|43|42|41|40|40|46|47|39|38|37|35|34|32|32|31|30|30|29|27|27|26|26|49|28|28|29|36|31|33|33|34|35|36|37|38|39|48|41|42|43|45|45|46|47|48|49|0\n25|25|24|22|22|21|20|19|19|18|15|15|16|17|16|17|18|27|20|21|23|23|24|26|26|27|0\n22|21|20|19|18|18|16|13|13|14|15|17|14|15|16|17|23|19|20|21|22|23|0\n33|32|31|30|28|26|26|25|23|23|22|21|19|19|18|18|29|20|20|21|22|24|24|25|27|27|28|29|30|31|32|33|0\n30|27|26|26|25|24|24|23|22|22|21|19|18|17|17|20|18|19|20|21|31|23|29|25|28|27|28|29|30|31|0\n49|47|47|46|44|42|41|40|39|38|37|36|36|35|32|31|31|30|28|28|27|27|26|26|45|34|29|29|30|33|32|33|34|35|43|37|38|39|40|41|42|43|44|45|46|48|48|49|0\n27|26|25|24|24|28|29|22|21|20|19|19|18|17|17|31|18|23|20|21|22|23|30|25|26|27|28|29|30|31|0\n37|36|35|35|34|33|33|39|30|30|29|29|28|27|26|25|24|23|22|22|41|23|24|25|26|27|28|32|31|31|32|40|34|38|36|37|38|39|40|41|0\n57|56|54|54|55|53|52|51|50|50|49|47|46|46|43|41|40|40|39|37|37|36|35|35|34|33|31|31|32|45|32|33|34|44|36|38|38|39|42|41|42|43|44|45|48|47|48|49|59|51|52|53|58|55|56|57|58|59|0\n37|35|35|36|34|32|31|31|30|28|28|27|27|24|23|23|22|21|21|26|22|25|24|25|26|39|29|29|30|33|32|33|34|38|36|37|38|39|0\n49|45|43|43|42|41|41|40|39|38|37|36|33|33|34|32|32|31|30|29|28|27|26|26|48|27|28|29|30|31|47|35|34|35|36|37|38|39|40|46|42|44|44|45|46|47|48|49|0\n50|50|51|47|46|45|44|43|43|48|49|41|39|38|37|36|36|35|34|32|32|31|30|29|28|28|42|29|30|31|33|33|34|35|40|37|38|39|40|41|42|53|44|45|46|47|48|49|52|51|52|53|0\n16|14|13|12|10|10|11|15|17|11|12|13|14|15|16|17|0\n37|36|36|35|34|34|39|32|32|31|29|28|28|27|27|41|24|24|25|23|23|43|26|25|26|42|30|29|30|31|33|33|40|35|38|37|38|39|40|41|42|43|0\n61|61|62|60|60|64|57|57|53|52|51|51|50|49|49|55|48|47|46|44|42|42|41|40|40|39|38|37|35|35|34|34|59|36|36|37|38|39|45|41|43|43|44|45|46|47|48|56|50|54|52|53|54|55|56|58|58|59|65|63|62|63|64|65|0\n36|35|35|37|38|33|33|32|31|31|40|29|28|26|25|25|24|23|22|22|30|23|24|27|26|27|28|29|30|41|32|34|34|39|36|37|38|39|40|41|0\n51|48|47|47|46|44|42|41|41|43|40|39|37|37|33|32|32|34|35|31|29|28|28|27|27|50|30|29|30|31|36|33|34|35|36|38|38|39|40|45|42|43|44|45|46|49|48|49|50|51|0\n44|44|42|40|39|39|38|35|35|34|33|32|31|31|30|29|28|27|26|25|24|24|43|25|26|27|28|29|30|37|32|33|34|36|36|37|38|41|40|41|42|43|45|45|0\n31|29|27|27|26|23|21|21|22|24|20|18|18|17|17|30|19|19|20|25|22|23|24|25|26|28|28|29|30|31|0\n39|39|38|37|36|35|34|32|32|31|29|28|28|27|27|41|26|25|24|23|23|43|24|25|26|42|30|29|30|31|33|33|34|35|36|37|38|40|40|41|42|43|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n8|7|7|6|6|9|8|9|0\n7|6|5|5|6|7|0\n56|56|54|53|53|52|52|58|59|51|50|49|48|47|45|45|44|43|42|40|40|39|38|36|35|34|34|33|32|32|61|33|37|35|36|37|38|39|41|41|42|43|44|46|46|47|48|49|50|51|60|55|54|55|57|57|58|59|60|61|0\n28|27|27|25|24|22|22|21|19|19|18|17|16|16|26|17|18|20|20|21|23|23|24|25|26|29|28|29|0\n36|36|34|32|31|31|29|26|26|27|25|24|24|23|22|21|20|20|35|21|22|23|30|25|28|27|28|29|30|33|32|33|34|35|37|37|0\n31|28|28|27|26|25|24|23|21|21|20|19|18|17|17|30|18|19|20|22|22|23|24|25|26|27|29|29|30|31|0\n58|56|56|55|54|52|52|53|48|48|47|46|46|50|44|43|42|42|40|39|38|37|36|35|34|31|31|32|33|41|32|33|34|35|36|37|38|39|40|41|45|43|44|45|51|47|49|49|50|51|59|53|54|55|57|57|58|59|0\n46|45|45|43|42|41|41|40|39|38|37|35|35|36|48|49|33|33|32|31|28|28|29|27|27|51|30|29|30|31|32|34|34|50|36|37|38|39|40|44|42|43|44|47|46|47|48|49|50|51|0\n24|23|23|25|22|21|20|19|17|17|15|15|16|27|16|18|18|19|20|21|22|26|24|25|26|27|0\n36|36|34|32|32|31|30|28|27|26|25|25|24|22|22|21|20|20|35|21|23|23|24|29|26|27|28|29|30|31|33|33|34|35|37|37|0\n51|50|50|49|48|48|42|38|38|37|37|40|41|36|36|44|45|32|32|33|31|30|30|29|28|28|47|29|35|31|34|33|34|35|46|43|39|39|40|41|42|43|44|45|46|47|53|49|52|51|52|53|0\n61|60|60|59|59|58|57|56|55|54|52|52|53|64|65|51|50|48|47|47|46|44|44|43|42|41|39|38|38|37|36|35|35|67|36|37|40|39|40|41|42|43|45|45|46|49|48|49|50|51|66|53|54|55|56|57|58|63|62|61|62|63|64|65|66|67|0\n26|25|25|24|22|20|19|19|18|16|16|15|15|23|17|17|18|21|20|21|22|23|24|27|26|27|0\n17|16|16|15|15|13|11|11|12|14|12|13|14|19|18|17|18|19|0\n42|40|39|39|38|36|36|35|34|34|33|32|30|26|26|27|28|25|23|23|24|31|24|25|29|27|28|29|30|31|32|33|43|35|37|37|38|41|40|41|42|43|0\n25|23|20|20|19|18|18|17|16|14|14|15|24|15|16|17|22|19|21|21|22|23|24|25|0\n27|26|25|24|24|28|22|21|19|19|18|17|16|16|23|17|18|20|20|21|22|23|29|25|26|27|28|29|0\n31|29|26|25|25|27|24|23|21|21|20|19|17|17|18|30|18|19|20|22|22|23|24|28|26|27|28|29|30|31|0\n30|29|28|27|27|24|23|22|22|21|20|19|18|17|17|26|18|19|20|21|25|23|24|25|26|31|28|29|30|31|0\n22|21|21|23|20|19|19|25|18|17|16|15|15|27|16|17|18|26|20|24|22|23|24|25|26|27|0\n85|84|83|82|82|86|87|79|79|78|78|74|73|73|72|72|76|71|70|68|67|65|65|66|64|61|60|58|57|56|56|55|54|54|62|52|51|51|49|48|48|47|46|46|89|47|50|49|50|53|52|53|63|55|59|57|58|59|60|61|62|63|64|69|66|67|68|69|70|71|77|75|74|75|76|77|81|80|80|81|88|83|84|85|86|87|88|89|0\n75|74|72|71|70|70|69|67|65|64|63|63|62|61|60|59|59|68|76|77|58|55|54|53|53|56|52|49|47|47|48|46|46|45|44|43|42|41|41|79|42|43|44|45|51|50|48|49|50|51|52|57|54|55|56|57|58|78|60|61|62|66|64|65|66|67|68|69|73|71|72|73|74|75|76|77|78|79|0\n57|56|55|54|53|52|52|58|59|51|48|47|47|49|45|45|44|42|42|41|38|38|39|37|35|34|34|33|32|32|61|33|36|35|36|37|40|39|40|41|43|43|44|46|46|50|48|49|50|51|60|53|54|55|56|57|58|59|60|61|0\n49|48|46|46|44|42|39|39|38|38|41|37|35|35|34|33|31|31|30|29|28|27|26|26|45|27|28|29|30|32|32|33|34|36|36|37|43|40|40|41|42|43|44|45|47|47|48|49|0\n69|68|68|67|66|64|63|62|61|61|65|60|56|55|55|57|54|53|53|52|51|47|47|46|45|43|42|42|41|40|39|38|37|37|49|50|38|39|40|41|44|43|44|45|46|48|48|49|50|51|52|59|54|58|56|57|58|59|60|71|62|63|64|65|66|67|70|69|70|71|0\n13|13|12|11|10|9|9|15|10|11|12|14|14|15|0\n49|48|48|47|45|45|44|43|42|41|40|39|39|38|36|36|34|31|29|29|30|32|28|27|27|35|28|33|30|31|32|33|34|35|37|37|38|51|40|41|42|43|44|46|46|47|50|49|50|51|0\n46|45|44|44|43|42|42|40|39|38|38|37|36|35|33|33|32|31|30|29|28|27|26|26|49|27|28|29|30|31|32|34|34|35|36|37|41|39|40|41|48|43|47|45|46|47|48|49|0\n45|43|40|38|38|39|41|37|36|34|34|33|32|31|30|29|27|25|25|26|24|24|44|28|26|27|28|29|30|31|32|33|35|35|36|37|42|39|40|41|42|43|44|45|0\n46|45|40|39|39|41|42|43|38|37|37|36|34|34|33|30|29|28|28|27|26|25|25|32|26|27|31|29|30|31|32|33|35|35|36|47|38|44|40|41|42|43|44|45|46|47|0\n28|27|26|25|25|24|22|21|20|20|19|17|17|18|30|31|18|19|23|21|22|23|24|29|26|27|28|29|30|31|0\n39|37|37|36|32|31|31|30|28|27|27|26|24|24|23|22|21|21|34|35|22|23|25|25|26|29|28|29|30|33|32|33|34|35|36|38|38|39|0\n27|26|25|24|24|23|18|18|19|17|17|21|16|16|29|22|20|19|20|21|22|23|28|25|26|27|28|29|0\n26|25|25|23|22|21|19|19|18|17|16|15|15|24|16|17|18|20|20|21|22|23|24|27|26|27|0\n37|33|33|32|31|31|30|28|27|26|25|24|23|23|20|20|21|22|36|21|22|29|24|25|26|27|28|29|30|35|32|34|34|35|36|37|0\n24|23|22|22|25|21|19|19|17|17|16|15|15|27|16|18|18|20|20|21|26|23|24|25|26|27|0\n25|23|23|22|19|17|16|16|18|14|14|15|21|15|20|17|18|19|20|21|22|24|24|25|0\n39|35|35|34|32|31|31|30|30|29|28|27|26|25|23|23|22|21|21|38|22|24|24|25|26|27|28|29|37|33|32|33|34|36|36|37|38|39|0\n46|45|44|43|43|42|40|40|37|36|35|34|33|33|32|31|30|27|27|28|26|25|25|39|26|29|28|29|30|31|32|38|34|35|36|37|38|39|41|41|42|47|44|45|46|47|0\n28|26|26|25|24|23|22|22|20|18|18|17|16|16|21|17|19|19|20|21|29|23|24|25|27|27|28|29|0\n55|54|53|47|46|46|45|43|43|40|38|38|37|37|41|42|49|35|35|36|51|32|32|31|31|30|29|29|30|34|33|33|34|52|36|50|39|39|40|41|42|44|44|45|48|47|48|49|50|51|52|53|54|55|0\n9|8|7|6|6|7|8|9|0\n62|61|59|58|57|56|55|55|54|50|49|48|48|51|52|45|44|44|43|42|41|41|47|40|39|38|36|35|34|33|33|37|34|35|36|37|38|39|40|63|42|43|46|45|46|47|53|49|50|51|52|53|54|60|56|57|58|59|60|61|62|63|0\n62|62|59|58|55|54|54|56|53|51|50|49|49|48|48|47|45|44|44|43|41|41|40|39|37|37|36|35|34|33|33|61|34|35|36|38|38|39|40|42|42|43|46|45|46|47|60|52|50|51|52|53|57|55|56|57|58|59|60|61|63|63|0\n18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0\n41|40|39|39|37|37|36|36|43|35|33|33|32|31|30|29|28|27|25|25|24|24|45|26|26|27|28|29|30|31|32|34|34|35|44|38|38|42|40|41|42|43|44|45|0\n19|17|13|13|12|12|15|11|11|18|16|14|14|15|16|17|18|19|0\n35|33|31|30|30|29|27|26|26|25|24|22|21|21|20|19|19|34|20|23|22|23|24|25|28|27|28|29|32|31|32|33|34|35|0\n20|19|19|16|15|15|14|13|12|12|18|13|14|17|16|17|18|21|20|21|0\n72|71|70|68|68|66|66|65|65|64|63|62|60|58|58|56|55|55|53|52|52|51|49|48|48|47|44|43|42|42|45|41|40|38|38|39|61|39|40|41|46|43|44|45|46|47|50|49|50|51|54|53|54|57|56|57|59|59|60|61|62|63|64|73|67|67|69|69|70|71|72|73|0\n65|64|63|63|66|61|60|59|58|58|57|54|54|55|53|53|68|50|48|47|47|46|45|44|44|43|40|39|38|38|41|37|36|36|52|37|42|39|40|41|42|43|51|45|46|49|48|49|50|51|52|69|56|55|56|57|62|59|60|61|62|67|64|65|66|67|68|69|0\n84|81|80|79|79|82|76|73|73|74|75|77|71|71|70|69|69|68|67|65|64|63|62|61|60|59|58|54|53|52|52|55|56|50|49|49|48|46|45|45|44|44|66|47|46|47|48|51|50|51|57|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|68|85|70|72|72|78|74|75|76|77|78|83|80|81|82|83|84|85|0\n36|36|35|34|33|32|30|29|29|28|28|38|39|27|26|24|24|23|22|22|41|23|25|25|26|27|40|31|30|31|32|33|34|35|37|37|38|39|40|41|0\n11|9|9|7|7|8|8|10|10|11|0\n56|55|52|51|49|49|50|53|46|45|44|44|43|43|42|40|39|39|38|37|32|32|33|31|31|35|30|30|57|36|34|33|34|35|36|37|38|41|40|41|42|48|47|45|46|47|48|54|50|51|52|53|54|55|56|57|0\n18|17|17|15|14|11|11|12|13|16|12|13|14|15|16|19|18|19|0\n10|10|8|8|7|7|9|9|11|11|0\n37|36|31|31|32|30|29|29|34|27|25|25|24|23|22|21|20|20|28|21|22|23|24|26|26|27|28|35|30|33|32|33|34|35|36|37|0\n26|25|24|23|23|21|19|18|17|17|16|15|15|22|16|20|18|19|20|21|22|27|24|25|26|27|0\n29|27|26|25|24|23|22|20|19|19|18|16|16|17|28|17|18|21|20|21|22|23|24|25|26|27|28|29|0\n37|36|36|35|33|32|32|31|29|28|28|27|25|23|23|24|22|21|21|39|22|26|24|25|26|27|30|29|30|31|34|33|34|35|38|37|38|39|0\n80|76|76|75|75|78|72|71|70|69|68|68|73|67|66|65|63|62|60|60|59|58|58|57|56|55|54|54|53|52|51|48|48|47|46|45|44|43|42|42|50|43|44|45|46|47|49|49|50|51|52|53|81|55|56|57|64|59|61|61|62|63|64|65|66|67|74|69|70|71|72|73|74|79|77|77|78|79|80|81|0\n50|49|46|46|47|45|44|43|42|40|37|37|38|39|36|34|33|32|32|35|51|31|29|29|28|28|53|30|30|31|52|33|34|35|36|41|38|39|40|41|42|43|44|45|48|47|48|49|50|51|52|53|0\n33|32|31|31|29|29|28|27|27|35|25|24|23|23|21|21|20|20|37|22|22|26|24|25|26|36|28|30|30|34|32|33|34|35|36|37|0\n48|48|42|41|41|40|39|39|44|38|36|35|35|34|34|33|32|30|30|27|27|28|26|26|47|29|28|29|31|31|32|33|46|37|36|37|38|45|40|43|42|43|44|45|46|47|49|49|0\n38|37|36|34|34|33|32|32|31|27|26|26|28|25|24|23|21|21|22|30|22|23|24|25|29|27|28|29|30|31|39|33|35|35|36|37|38|39|0\n7|5|5|6|6|7|0\n49|44|41|40|40|39|39|38|38|45|36|35|35|34|33|32|31|30|28|27|27|26|26|47|48|29|28|29|30|31|32|33|34|37|36|37|46|43|42|41|42|43|44|45|46|47|48|49|0\n42|42|41|38|33|33|34|35|36|32|31|31|29|27|27|28|25|24|24|23|23|40|26|25|26|30|28|29|30|39|32|37|34|35|36|37|38|39|40|41|43|43|0\n27|24|24|22|22|21|19|17|17|18|16|15|15|26|16|20|18|19|20|21|23|23|25|25|26|27|0\n54|53|51|51|50|44|44|45|43|42|42|47|48|40|40|39|38|38|37|35|34|34|32|31|30|29|29|33|30|31|32|33|36|35|36|37|55|39|41|41|49|43|46|45|46|47|48|49|50|52|52|53|54|55|0\n65|65|64|63|63|67|62|59|57|57|56|56|60|54|51|50|50|49|49|48|46|45|45|44|42|42|43|40|39|38|38|36|36|37|69|37|41|39|40|41|55|43|44|47|46|47|48|53|52|51|52|53|54|55|61|58|58|59|60|61|62|68|64|66|66|67|68|69|0\n15|12|12|10|9|9|11|14|10|11|13|13|14|15|0\n23|20|19|19|16|14|13|13|15|17|18|22|14|15|16|17|18|21|20|21|22|23|0\n39|38|37|36|35|34|34|33|32|32|31|29|27|26|26|25|24|23|22|22|30|23|24|25|28|27|28|29|30|31|41|33|40|35|36|37|38|39|40|41|0\n45|45|44|42|42|41|37|37|36|35|33|33|32|31|31|39|30|29|28|26|26|25|25|47|27|27|28|29|30|40|32|34|34|35|36|38|38|39|40|41|43|43|44|46|46|47|0\n28|28|24|23|21|21|20|19|19|25|18|17|16|16|27|17|18|26|20|22|22|23|24|25|26|27|29|29|0\n27|26|25|25|22|22|23|21|19|18|18|17|16|16|29|17|20|19|20|21|24|23|24|28|26|27|28|29|0\n9|8|7|6|6|7|8|9|0\n33|32|31|30|30|29|28|28|26|25|23|22|22|21|20|19|19|27|20|21|24|23|24|25|26|27|35|29|34|31|32|33|34|35|0\n30|30|27|26|23|22|21|19|19|20|24|25|18|17|17|29|18|28|20|21|22|23|24|25|26|27|28|29|31|31|0\n15|15|13|13|12|12|10|10|11|11|17|14|14|16|16|17|0\n30|30|29|25|24|23|22|22|26|21|19|19|17|17|18|28|18|20|20|21|27|23|24|25|26|27|28|29|31|31|0\n68|67|66|65|65|64|62|60|59|59|58|57|57|54|53|52|52|51|50|48|48|47|44|43|42|41|41|45|39|39|38|37|36|36|56|37|38|40|40|46|42|43|44|45|46|47|49|49|50|51|55|53|54|55|56|63|58|61|60|61|62|63|64|69|66|67|68|69|0\n70|67|67|66|65|64|64|69|63|62|60|58|58|57|56|55|53|53|52|47|47|48|46|46|50|45|44|42|42|41|40|39|38|37|37|61|38|39|40|41|43|43|44|45|51|49|48|49|50|51|52|54|54|55|56|57|59|59|60|61|62|63|71|65|66|68|68|69|70|71|0\n68|67|66|64|64|63|62|62|61|60|58|57|54|54|53|51|50|47|47|48|49|46|44|44|43|42|42|38|38|39|40|37|36|36|59|37|41|39|40|41|56|43|45|45|46|52|48|49|50|51|52|53|55|55|56|57|58|59|60|61|69|63|65|65|66|67|68|69|0\n20|19|19|21|18|17|16|15|15|13|13|14|14|23|16|17|18|22|20|21|22|23|0\n44|42|41|41|40|36|35|34|33|33|37|32|31|30|30|39|29|28|26|25|24|24|27|25|26|27|28|29|45|31|32|38|34|35|36|37|38|39|40|43|42|43|44|45|0\n35|35|34|33|33|31|27|27|26|26|29|24|23|23|22|20|20|21|32|21|22|25|24|25|30|28|28|29|30|31|32|37|34|36|36|37|0\n47|46|44|44|43|40|37|37|36|36|39|35|34|33|32|32|31|30|29|27|27|26|25|25|26|28|28|29|30|31|42|33|34|35|41|38|38|39|40|41|42|43|45|45|46|47|0\n60|60|59|58|57|57|62|63|56|55|54|53|52|51|50|50|65|48|48|47|46|44|44|43|42|40|40|39|38|37|36|35|35|67|36|37|38|39|41|41|42|43|45|45|46|47|49|49|66|51|52|53|54|55|56|64|58|59|61|61|62|63|64|65|66|67|0\n27|27|26|26|24|23|22|20|20|19|17|17|16|16|25|18|18|19|21|21|22|23|24|25|29|28|28|29|0\n29|26|24|24|23|22|22|21|19|19|18|16|16|17|28|17|18|20|20|21|27|23|25|25|26|27|28|29|0\n30|30|27|26|26|24|24|23|22|21|19|19|18|17|17|29|18|20|20|21|22|23|25|25|28|27|28|29|31|31|0\n28|27|27|26|25|24|22|22|21|19|18|18|17|16|16|17|20|19|20|21|23|23|24|25|26|29|28|29|0\n46|45|45|40|39|39|41|42|37|34|33|33|35|32|31|28|28|29|30|27|26|25|25|44|26|27|38|29|30|31|32|36|34|35|36|37|38|43|40|41|42|43|44|47|46|47|0\n45|42|40|40|38|37|36|35|34|34|33|32|31|30|29|28|28|27|26|25|24|24|44|25|26|27|43|29|30|31|32|33|39|35|36|37|38|39|41|41|42|43|44|45|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n49|47|46|43|42|41|40|40|44|39|37|36|36|35|35|34|33|31|30|29|28|27|26|26|32|27|28|29|30|31|32|33|34|48|38|37|38|39|45|41|42|43|44|45|46|47|48|49|0\n5|4|4|5|0\n52|51|51|49|49|48|46|46|45|44|43|42|41|40|38|38|37|36|36|54|55|34|34|33|32|31|30|30|57|31|32|33|35|35|56|37|39|39|40|41|42|43|44|45|47|47|48|50|50|53|52|53|54|55|56|57|0\n85|84|79|78|77|75|74|74|71|71|70|69|68|67|65|65|64|63|63|73|80|81|62|61|60|59|58|57|56|56|55|53|51|48|48|47|47|46|46|45|44|44|54|45|52|50|49|49|50|51|52|53|54|55|83|57|58|59|60|61|62|82|64|66|66|67|68|69|70|72|72|73|76|75|76|77|78|79|80|81|82|83|84|85|0\n35|30|29|27|27|28|26|25|23|23|24|32|22|20|20|19|19|34|21|21|22|33|24|25|26|31|28|29|30|31|32|33|34|35|0\n28|28|26|24|24|23|22|21|19|19|18|17|16|16|27|17|18|20|20|21|22|23|25|25|26|27|29|29|0\n41|39|35|34|33|32|31|31|30|29|28|28|27|26|26|24|24|23|22|22|40|23|25|25|38|27|37|29|30|36|32|33|34|35|36|37|38|39|40|41|0\n55|54|54|53|52|52|57|51|50|49|49|47|45|44|41|41|42|43|40|36|35|35|34|33|33|38|31|31|32|48|32|39|34|37|36|37|38|39|40|46|42|43|44|45|46|47|48|59|50|51|58|53|56|55|56|57|58|59|0\n50|50|48|47|46|46|40|40|41|37|36|36|38|35|33|32|32|34|43|31|30|28|28|27|27|45|29|29|30|31|44|33|34|35|39|37|38|39|42|41|42|43|44|45|49|47|48|49|51|51|0\n21|20|19|18|18|22|23|17|16|15|14|14|25|15|16|17|24|19|20|21|22|23|24|25|0\n30|29|29|27|26|24|24|22|20|20|19|19|17|17|18|28|18|23|21|21|22|23|25|25|26|27|28|31|30|31|0\n40|38|37|35|35|36|34|33|33|30|30|29|28|28|26|23|23|24|22|22|27|25|24|25|26|27|32|29|31|31|32|41|34|39|36|37|38|39|40|41|0\n24|23|21|21|20|19|18|17|17|25|16|15|15|27|16|26|18|19|20|22|22|23|24|25|26|27|0\n23|21|20|20|22|19|18|16|16|15|14|14|25|15|17|17|18|19|24|21|22|23|24|25|0\n17|15|13|13|11|11|10|10|16|12|12|14|14|15|16|17|0\n13|11|11|10|9|8|8|9|10|12|12|13|0\n44|43|42|42|45|40|39|38|38|36|35|34|32|32|33|31|30|28|27|27|26|25|25|47|26|29|28|29|30|31|37|33|34|35|36|37|41|39|40|41|46|43|44|45|46|47|0\n49|46|46|45|44|41|41|42|40|40|38|36|34|34|35|33|31|31|30|29|28|27|26|26|39|27|28|29|30|32|32|33|37|35|36|37|38|39|48|43|42|43|44|45|47|47|48|49|0\n20|20|17|17|16|15|14|13|12|12|19|13|14|15|16|18|18|19|21|21|0\n57|45|45|46|44|43|42|42|48|41|41|50|40|39|38|36|36|35|34|34|52|33|32|32|54|31|30|30|56|31|55|33|53|35|37|37|38|39|40|51|49|43|44|47|46|47|48|49|50|51|52|53|54|55|56|57|0\n77|76|76|75|75|73|72|67|67|66|64|63|62|61|61|60|57|56|56|58|55|55|69|70|53|53|52|50|50|48|48|47|46|43|43|42|42|41|41|74|45|44|44|45|46|47|49|49|51|51|52|54|54|71|59|57|58|59|60|65|62|63|64|65|66|68|68|69|70|71|72|73|74|79|78|77|78|79|0\n36|36|33|33|31|29|28|28|27|26|26|25|24|23|22|20|20|21|35|21|22|23|24|25|32|27|30|29|30|31|32|34|34|35|37|37|0\n42|41|40|39|38|37|36|35|35|34|33|30|30|28|28|27|25|24|24|23|23|32|26|25|26|27|29|29|31|31|32|33|34|43|36|37|38|39|40|41|42|43|0\n37|36|33|32|32|29|28|27|26|26|30|25|24|23|22|20|20|21|35|21|22|23|24|25|31|27|28|29|30|31|34|33|34|35|36|37|0\n21|21|22|19|18|17|15|15|14|13|13|20|14|16|16|17|18|19|20|23|22|23|0\n20|20|18|17|16|15|14|12|12|13|19|13|14|15|16|17|18|19|21|21|0\n32|31|30|30|33|29|28|27|26|25|23|23|22|21|20|19|19|35|20|21|22|24|24|25|26|27|28|29|34|31|32|33|34|35|0\n40|39|39|35|32|32|33|30|30|31|29|28|25|25|24|24|27|23|22|22|38|23|37|26|26|27|28|29|36|31|34|33|34|35|36|37|38|41|40|41|0\n39|38|37|37|36|34|34|32|31|30|29|29|28|27|26|25|24|23|23|22|22|41|24|25|26|27|28|33|30|31|32|33|35|35|36|40|38|39|40|41|0\n40|39|38|37|36|35|34|34|31|31|29|28|28|27|25|24|23|23|22|22|33|26|24|25|26|27|30|29|30|32|32|33|41|35|36|37|38|39|40|41|0\n11|9|8|7|7|10|8|9|10|11|0\n8|7|7|6|6|9|8|9|0\n33|31|30|29|27|26|25|24|24|23|22|21|20|19|18|18|32|19|20|21|22|23|28|25|26|27|28|29|30|31|32|33|0\n21|21|20|20|17|16|16|15|14|13|13|19|14|15|18|17|18|19|23|22|22|23|0\n49|48|46|45|44|44|43|42|41|40|39|39|37|37|36|35|35|34|32|32|30|29|28|27|27|31|28|29|30|31|33|33|34|51|36|38|38|50|40|41|42|43|47|45|46|47|48|49|50|51|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n34|33|31|31|32|35|29|29|30|37|27|26|26|25|23|22|22|21|21|39|24|23|24|25|28|27|28|38|30|36|32|33|34|35|36|37|38|39|0\n35|33|32|31|29|27|27|28|24|23|23|25|22|21|20|19|19|34|20|21|22|26|24|25|26|30|28|29|30|31|32|33|34|35|0\n15|15|13|11|11|12|10|10|17|14|12|13|14|16|16|17|0\n56|56|55|53|52|51|51|47|46|46|45|44|43|42|41|39|38|37|36|35|35|34|30|30|31|32|33|49|50|31|32|33|34|40|36|37|38|39|40|41|42|43|44|45|48|47|48|49|50|54|52|53|54|55|57|57|0\n62|62|61|58|58|57|56|56|55|53|52|52|51|49|48|48|47|47|64|65|45|43|38|38|39|40|37|37|42|36|36|35|35|67|46|44|41|39|40|41|42|43|44|45|46|66|50|49|50|51|54|53|54|55|60|57|59|59|60|61|63|63|64|65|66|67|0\n43|42|42|41|39|39|38|37|35|35|34|32|32|31|30|28|28|27|26|25|24|24|45|25|26|27|29|29|30|31|33|33|34|36|36|37|38|40|40|41|44|43|44|45|0\n20|19|19|17|16|14|13|13|12|12|18|15|14|15|16|17|18|21|20|21|0\n21|19|17|16|15|15|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n26|24|24|23|22|21|21|19|19|17|15|15|16|18|16|17|18|20|20|27|22|23|25|25|26|27|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n26|26|24|22|22|20|20|19|18|17|16|15|15|25|16|17|18|19|21|21|23|23|24|25|27|27|0\n24|24|21|21|20|17|17|18|16|15|14|14|23|15|16|19|18|19|20|22|22|23|25|25|0\n7|7|8|6|6|9|8|9|0\n35|34|32|31|30|29|29|28|28|36|37|26|25|24|24|23|22|21|21|39|22|23|27|25|26|27|38|33|30|31|32|33|34|35|36|37|38|39|0\n51|51|50|49|49|46|46|43|43|44|42|42|41|40|39|38|37|36|35|35|54|55|34|32|32|30|30|31|57|31|33|33|34|56|36|37|38|39|40|41|48|45|44|45|47|47|48|53|50|52|52|53|54|55|56|57|0\n68|67|67|66|61|60|59|58|57|55|55|52|51|51|53|50|48|48|47|46|45|43|43|44|62|63|42|40|40|39|38|37|36|36|65|37|38|39|41|41|42|64|44|45|46|47|49|49|50|54|52|53|54|56|56|57|58|59|60|61|62|63|64|65|66|69|68|69|0\n22|20|19|19|21|18|16|16|13|13|14|15|14|15|17|17|18|23|20|21|22|23|0\n38|37|36|31|31|30|29|27|26|26|28|33|34|25|24|23|22|22|21|21|39|23|24|25|35|27|28|29|30|32|32|33|34|35|36|37|38|39|0\n52|51|49|48|46|46|45|35|35|36|37|38|39|40|41|42|43|44|50|34|33|31|30|29|28|28|32|29|30|31|32|33|34|53|36|37|38|39|40|41|42|43|44|45|47|47|48|49|50|51|52|53|0\n65|63|63|64|62|60|59|59|58|57|56|55|53|53|52|52|50|48|47|47|46|44|43|42|41|40|39|39|38|37|36|35|35|51|36|37|38|45|40|41|42|43|44|45|46|49|48|49|50|51|67|54|54|55|56|57|58|61|60|61|62|66|64|65|66|67|0\n52|51|50|49|48|47|47|45|44|42|41|40|39|39|38|33|33|32|31|31|35|36|30|28|28|29|46|29|30|37|32|34|34|35|36|37|38|43|40|41|42|43|44|45|46|53|48|49|50|51|52|53|0\n49|47|44|43|43|42|42|41|40|39|37|36|36|35|34|32|31|30|30|29|27|27|26|26|48|28|28|29|33|31|32|33|34|35|38|37|38|39|40|41|46|45|44|45|46|47|48|49|0\n73|72|72|74|70|70|69|68|68|76|77|66|65|64|64|63|58|58|57|55|55|54|54|53|53|61|52|49|48|48|47|47|46|45|42|42|43|41|41|79|44|43|44|45|46|51|50|49|50|51|52|62|60|56|56|57|59|59|60|61|62|63|67|65|66|67|78|69|71|71|75|73|74|75|76|77|78|79|0\n47|46|42|41|36|36|37|38|39|34|34|33|32|31|31|30|29|28|28|27|26|25|25|45|26|27|44|29|30|43|32|33|35|35|40|37|38|39|40|41|42|43|44|45|46|47|0\n47|46|45|45|48|49|41|40|38|34|34|35|36|37|33|32|32|42|43|30|30|29|28|27|27|51|28|29|31|31|44|33|39|35|36|37|38|39|40|41|42|43|44|50|46|47|48|49|50|51|0\n51|51|50|50|49|47|46|46|45|43|41|41|42|44|54|55|39|38|38|37|36|35|34|32|32|31|30|30|57|31|33|33|34|35|36|37|40|39|40|56|42|43|44|45|48|47|48|49|53|52|52|53|54|55|56|57|0\n66|65|65|64|59|57|57|56|53|52|49|49|50|48|48|47|46|45|45|44|44|60|61|43|42|40|39|39|38|37|36|35|35|63|36|37|38|41|40|41|42|43|62|55|46|47|54|51|50|51|52|53|54|55|56|58|58|59|60|61|62|63|64|67|66|67|0\n19|17|17|15|14|13|11|11|12|16|12|13|14|15|16|18|18|19|0\n80|79|79|78|76|76|69|68|67|65|65|64|63|62|60|59|59|58|57|57|70|55|54|53|53|52|51|50|50|72|49|48|46|45|45|44|43|43|42|42|75|74|44|47|46|47|48|49|73|51|52|56|54|55|56|71|58|61|60|61|62|63|64|66|66|67|68|69|70|71|72|73|74|75|77|77|78|81|80|81|0\n21|19|19|20|18|17|17|15|14|13|13|16|14|15|16|23|18|22|20|21|22|23|0\n10|10|9|9|12|8|8|13|11|11|12|13|0\n28|25|25|26|24|23|21|20|19|19|18|17|16|16|29|17|18|22|20|21|22|23|24|27|26|27|28|29|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n28|26|26|27|25|23|23|21|19|18|17|17|16|16|22|20|18|19|20|21|22|24|24|25|29|27|28|29|0\n27|25|21|21|20|19|19|23|18|17|15|15|16|26|16|17|18|24|20|22|22|23|24|25|26|27|0\n23|20|20|18|17|17|16|15|14|13|13|22|14|15|16|19|18|19|21|21|22|23|0\n52|52|51|50|47|46|46|45|41|41|39|38|37|37|36|34|34|31|30|30|32|29|28|28|43|44|49|29|33|31|32|33|35|35|36|40|38|39|40|42|42|43|44|45|48|47|48|49|50|51|53|53|0\n45|44|42|42|41|40|40|39|36|36|34|34|33|31|31|30|30|38|47|28|27|27|26|26|49|29|28|29|48|32|32|33|35|35|37|37|38|39|46|41|43|43|44|45|46|47|48|49|0\n40|39|38|37|36|35|34|34|33|32|30|28|26|26|27|25|23|23|22|22|31|24|24|25|29|27|28|29|30|31|32|33|41|35|36|37|38|39|40|41|0\n28|28|25|24|23|23|22|20|20|19|18|17|16|16|27|17|18|19|21|21|22|26|24|25|26|27|29|29|0\n31|30|27|27|26|23|22|21|19|19|20|24|18|17|17|29|18|25|20|21|22|23|24|25|26|28|28|29|30|31|0\n43|41|39|38|37|37|36|34|34|27|27|28|26|25|24|24|30|23|23|32|33|42|31|25|26|29|28|29|30|31|32|33|35|35|36|40|38|39|40|41|42|43|0\n77|75|73|72|68|67|67|69|66|64|62|61|61|60|60|59|58|57|55|55|54|53|53|51|50|50|49|48|48|47|45|44|44|43|41|41|40|40|76|42|42|43|46|45|46|47|74|49|52|51|52|71|54|56|56|57|58|59|65|63|62|63|64|65|66|70|68|69|70|71|72|73|74|75|76|77|0\n19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0\n33|27|26|26|28|29|30|25|24|23|22|21|20|19|18|18|32|19|20|21|22|23|24|25|31|27|28|29|30|31|32|33|0\n19|16|15|14|14|13|11|11|12|18|12|13|17|15|16|17|18|19|0\n9|9|10|7|7|8|8|11|10|11|0\n59|57|53|52|52|51|49|48|48|50|55|44|44|43|42|41|40|40|46|39|38|37|36|35|34|33|32|31|31|58|32|33|34|35|36|37|38|39|47|41|42|43|45|45|46|47|56|49|50|51|54|53|54|55|56|57|58|59|0\n13|13|14|15|16|11|10|10|12|11|12|17|14|15|16|17|0\n15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0\n29|27|27|28|26|24|24|23|23|21|20|19|18|17|17|22|18|19|20|21|22|31|25|25|26|30|28|29|30|31|0\n46|45|45|43|39|39|38|37|36|35|34|33|33|41|31|31|30|28|28|27|26|25|25|44|26|27|29|29|30|32|32|42|34|35|36|37|38|40|40|41|42|43|44|47|46|47|0\n7|5|5|6|6|7|0\n32|30|29|29|28|27|25|25|26|24|22|22|20|20|19|18|18|19|21|21|23|23|24|33|26|27|28|31|30|31|32|33|0\n24|23|22|21|21|20|19|17|17|18|16|15|15|27|16|26|18|19|20|25|22|23|24|25|26|27|0\n21|20|19|18|16|15|14|14|13|12|12|13|17|15|16|17|18|19|20|21|0\n23|23|22|19|19|20|17|17|15|15|14|14|25|16|16|18|18|21|20|21|22|24|24|25|0\n49|48|47|45|45|44|43|42|40|39|39|41|50|51|38|36|36|34|34|31|31|32|30|29|28|28|53|29|30|33|32|33|35|35|37|37|38|52|40|41|42|43|44|46|46|47|48|49|50|51|52|53|0\n33|33|32|30|29|28|28|27|25|25|24|23|22|21|19|19|20|35|20|21|22|23|24|26|26|27|31|29|30|31|32|34|34|35|0\n60|59|58|57|55|54|54|53|52|51|51|50|48|47|47|44|43|43|42|41|40|39|38|36|36|35|33|33|32|32|46|34|34|35|37|37|38|39|40|41|42|45|44|45|46|49|48|49|50|61|52|53|56|55|56|57|58|59|60|61|0\n77|74|73|73|72|71|71|67|64|64|65|63|63|68|62|60|60|59|52|51|51|50|48|47|47|49|54|46|45|45|56|57|44|42|40|40|41|43|70|41|42|43|44|58|46|55|48|49|50|53|52|53|54|55|56|57|58|59|61|61|62|69|66|65|66|67|68|69|70|76|72|75|74|75|76|77|0\n10|10|8|7|7|9|8|9|11|11|0\n43|41|38|38|37|37|36|34|34|33|32|30|29|27|27|26|26|24|24|23|23|42|25|25|31|28|28|29|30|31|32|33|35|35|36|40|39|39|40|41|42|43|0\n63|62|62|61|60|59|58|58|56|51|51|49|48|48|47|47|46|42|42|41|40|40|44|38|38|37|36|36|54|35|34|34|57|35|55|37|39|39|45|41|43|43|44|45|46|53|50|49|50|52|52|53|54|55|56|57|65|59|60|61|64|63|64|65|0\n63|61|60|59|58|57|54|54|53|52|51|49|49|48|48|47|43|42|42|44|38|38|36|36|37|40|35|33|33|34|46|62|34|35|41|37|39|39|40|41|45|43|44|45|46|47|56|50|50|51|52|53|55|55|56|57|58|59|60|61|62|63|0\n48|47|47|46|43|42|42|40|36|36|37|38|34|34|35|32|32|31|29|28|28|27|26|26|45|27|30|29|30|31|33|33|41|35|39|37|38|39|40|41|44|43|44|45|46|49|48|49|0\n48|48|47|46|45|45|44|43|42|41|40|39|39|36|36|35|34|32|30|30|31|29|28|27|27|38|28|29|33|31|32|33|34|35|37|37|38|51|40|41|42|43|44|50|46|47|49|49|50|51|0\n56|56|55|51|51|52|49|49|48|47|47|46|45|45|58|59|44|43|42|41|38|38|37|37|36|35|32|32|33|34|61|33|34|35|36|40|39|39|40|41|42|43|44|60|46|54|48|50|50|53|52|53|54|55|57|57|58|59|60|61|0\n21|19|15|14|14|16|17|13|12|12|20|13|18|15|16|17|18|19|20|21|0\n40|39|39|38|36|36|34|32|30|29|29|28|27|26|26|25|23|23|22|22|35|24|24|25|33|27|28|31|30|31|32|33|34|35|37|37|38|41|40|41|0\n66|61|60|60|62|59|58|58|64|56|56|55|54|54|53|50|49|49|48|47|46|46|44|43|42|41|40|39|38|37|36|35|35|45|36|37|38|39|40|41|42|43|44|45|52|47|48|51|50|51|52|53|67|55|57|57|65|59|63|61|62|63|64|65|66|67|0\n47|45|45|46|42|41|41|40|39|39|38|35|34|34|33|30|30|31|29|29|28|27|26|26|49|27|28|37|32|31|32|33|36|35|36|37|38|44|40|43|42|43|44|48|46|47|48|49|0\n44|43|40|40|41|39|39|38|37|35|33|32|32|31|28|28|29|26|25|25|24|24|36|27|26|27|30|29|30|31|34|33|34|35|36|37|38|45|42|41|42|43|44|45|0\n34|33|31|30|30|29|27|27|26|26|25|25|36|37|38|21|21|22|23|24|22|23|24|39|35|28|28|29|32|31|32|33|34|35|36|37|38|39|0\n54|53|50|50|51|52|49|48|45|44|43|43|42|38|37|37|35|35|36|40|33|32|32|30|29|29|31|47|30|31|34|33|34|41|36|39|38|39|40|41|42|46|44|45|46|47|48|49|55|51|52|53|54|55|0\n19|16|16|15|12|12|11|11|14|18|13|13|14|15|17|17|18|19|0\n44|42|42|41|41|40|37|37|36|35|30|29|28|28|31|32|33|34|27|27|46|25|25|26|26|47|39|29|30|31|32|33|34|35|36|38|38|39|40|45|43|43|44|45|46|47|0\n22|22|21|19|17|16|16|18|14|13|13|15|14|15|20|17|18|19|20|21|23|23|0\n49|46|46|47|48|45|43|43|40|39|39|38|37|37|36|33|33|32|32|30|29|29|28|27|27|51|28|31|30|31|35|34|34|35|36|42|38|41|40|41|42|44|44|45|50|47|48|49|50|51|0\n62|61|59|58|58|57|56|56|55|53|53|50|50|48|48|47|46|45|44|43|42|41|40|38|38|35|35|34|33|33|37|52|34|36|36|37|39|39|40|41|42|43|44|45|46|47|49|49|51|51|52|54|54|55|63|57|60|59|60|61|62|63|0\n39|38|36|34|34|35|32|31|29|28|28|27|25|24|24|23|22|21|21|33|22|23|26|25|26|27|30|29|30|31|32|33|37|35|36|37|38|39|0\n49|47|47|46|46|45|43|42|41|40|40|39|38|37|34|34|35|36|31|31|30|29|27|27|28|33|28|29|30|32|32|33|51|35|36|37|38|39|44|41|42|43|44|45|50|48|48|49|50|51|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n39|38|35|34|33|31|31|30|30|29|27|27|26|24|23|23|22|21|21|37|22|25|24|25|26|28|28|29|36|32|32|33|34|35|36|37|38|39|0\n41|40|37|35|35|34|33|31|31|30|29|28|27|26|25|24|23|22|22|38|39|23|24|25|26|27|28|29|30|32|32|33|34|36|36|37|38|39|40|41|0\n95|93|92|91|89|89|88|87|84|84|85|83|81|81|80|71|70|70|72|69|67|67|66|65|64|64|74|62|62|61|59|59|60|76|58|57|55|55|54|53|53|78|52|51|50|49|49|94|50|51|52|79|54|56|56|57|58|77|60|61|63|63|75|65|66|68|68|69|73|71|72|73|74|75|76|77|78|79|80|82|82|83|86|85|86|87|88|90|90|91|92|93|94|95|0\n19|17|16|16|15|15|14|12|12|13|21|13|14|20|18|17|18|19|20|21|0\n56|54|52|52|51|51|55|50|49|48|47|46|46|58|45|44|43|43|60|42|40|39|38|37|36|35|34|33|32|32|41|33|34|35|36|37|38|39|40|41|42|61|44|45|59|47|48|49|50|57|53|53|54|55|56|57|58|59|60|61|0\n74|72|70|69|68|68|67|66|65|64|64|63|61|60|60|57|57|56|56|55|54|49|48|47|47|50|46|46|52|45|43|42|42|41|40|39|39|75|40|41|44|43|44|45|53|51|48|49|50|51|52|53|54|55|59|58|58|59|62|61|62|63|73|65|66|67|71|69|70|71|72|73|74|75|0\n33|32|31|26|24|24|23|23|22|22|28|18|18|19|20|21|30|19|20|21|29|27|25|25|26|27|28|29|30|31|32|33|0\n30|29|29|28|25|24|23|23|26|22|21|21|20|19|18|18|33|19|20|32|22|27|24|25|26|27|28|31|30|31|32|33|0\n60|60|59|59|58|55|55|54|54|53|52|52|49|47|46|46|45|45|44|42|41|41|40|39|38|36|36|35|34|33|33|51|34|35|37|37|38|39|40|43|42|43|44|50|48|47|48|49|50|51|63|53|57|56|56|57|58|62|61|61|62|63|0\n8|8|9|7|7|11|10|9|10|11|0\n17|17|18|15|15|16|20|21|14|13|13|23|14|22|16|19|18|19|20|21|22|23|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n80|79|78|76|75|73|73|72|71|70|70|69|66|65|65|67|64|64|63|62|61|57|56|55|54|54|58|53|51|50|50|49|47|47|46|45|44|43|42|42|60|43|44|45|46|48|48|49|52|51|52|53|59|55|56|57|58|59|60|61|62|63|81|68|66|67|68|69|77|71|72|74|74|75|76|77|78|79|80|81|0\n82|81|80|78|78|76|73|73|74|71|70|70|72|69|69|68|67|66|65|64|63|62|62|84|85|61|59|59|57|56|55|55|54|52|52|51|49|48|48|47|46|45|45|87|46|47|50|49|50|51|53|53|54|58|56|57|58|60|60|61|86|63|64|65|66|67|68|83|77|71|72|75|74|75|76|77|79|79|80|81|82|83|84|85|86|87|0\n28|27|27|29|26|26|24|23|21|20|19|19|18|17|17|25|18|22|20|21|22|23|24|25|31|30|28|29|30|31|0\n24|23|22|21|19|19|20|16|15|15|14|14|18|17|16|17|18|25|20|21|22|23|24|25|0\n26|25|24|24|23|21|21|19|18|16|16|15|15|20|17|17|18|19|20|22|22|23|27|25|26|27|0\n21|18|18|14|14|13|13|16|12|12|20|17|15|15|16|17|19|19|20|21|0\n11|7|7|8|9|10|8|9|10|11|0\n9|8|8|7|7|11|10|9|10|11|0\n39|37|37|36|35|34|33|33|40|41|31|30|30|29|28|27|25|25|24|23|23|43|24|26|26|27|28|29|32|31|32|42|34|35|36|38|38|39|40|41|42|43|0\n34|34|28|28|27|26|26|30|25|23|22|21|21|24|20|19|19|33|20|32|22|23|24|25|31|27|29|29|30|31|32|33|35|35|0\n62|61|59|59|58|58|57|54|53|52|51|51|55|49|46|45|45|44|43|42|42|41|39|37|36|35|35|34|34|33|33|50|40|38|36|37|38|39|40|41|48|43|44|47|46|47|48|49|50|56|52|53|54|55|56|57|63|60|60|61|62|63|0\n47|44|44|43|41|39|38|38|40|35|34|34|33|33|31|31|30|28|28|27|26|25|25|46|26|27|29|29|30|32|32|37|36|35|36|37|42|39|40|41|42|43|45|45|46|47|0\n43|43|42|38|38|39|40|36|36|35|34|34|32|30|29|29|28|27|26|25|24|24|33|25|26|27|28|31|30|31|32|33|45|35|37|37|41|39|40|41|42|44|44|45|0\n62|61|60|60|58|57|56|55|51|50|49|49|48|47|47|53|46|45|44|40|39|39|38|38|37|36|36|35|34|33|33|59|34|35|43|37|42|41|40|41|42|43|44|45|46|54|48|52|50|51|52|53|54|55|56|57|58|59|63|61|62|63|0\n22|22|21|20|19|18|18|24|25|17|15|15|16|27|16|17|26|19|20|21|23|23|24|25|26|27|0\n31|31|30|29|28|28|25|24|23|22|21|20|20|19|18|18|27|19|26|21|22|23|24|25|26|27|33|29|30|32|32|33|0\n11|8|8|7|7|10|9|9|10|11|0\n45|42|42|38|36|36|35|35|39|40|34|33|32|31|29|27|27|26|26|25|24|24|44|25|30|28|28|29|30|31|32|33|34|41|37|37|38|39|40|41|43|43|44|45|0\n25|25|26|24|24|28|23|22|19|19|20|18|18|17|17|31|30|21|20|21|22|23|29|27|26|27|28|29|30|31|0\n49|47|44|42|42|43|45|38|37|36|35|34|33|33|39|40|32|30|30|29|28|27|26|26|48|27|28|29|31|31|32|41|34|35|36|37|38|39|40|41|46|43|44|45|46|47|48|49|0\n38|38|37|36|35|34|34|40|41|32|32|31|27|26|26|25|24|23|23|29|30|43|24|25|28|27|28|29|30|31|33|33|42|35|36|37|39|39|40|41|42|43|0\n51|50|47|46|46|45|45|44|42|41|40|40|39|38|38|52|53|36|35|35|34|32|32|31|30|29|29|55|30|31|33|33|34|37|36|37|54|39|43|41|42|43|44|49|48|47|48|49|50|51|52|53|54|55|0\n18|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|19|19|0\n58|58|56|55|53|53|52|50|50|49|48|47|45|45|44|40|40|41|39|38|37|36|36|34|34|33|32|31|31|57|32|33|35|35|43|37|38|39|42|41|42|43|44|46|46|47|48|49|51|51|52|54|54|55|56|57|59|59|0\n26|26|27|24|24|25|29|21|21|20|19|19|18|17|17|31|18|23|20|22|22|23|30|25|28|27|28|29|30|31|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n55|54|52|50|48|45|45|46|47|44|42|42|41|39|39|38|37|36|36|35|33|33|31|31|30|29|29|53|30|32|32|34|34|35|51|37|38|40|40|41|43|43|44|49|46|47|48|49|50|51|52|53|54|55|0\n23|22|21|20|20|19|19|17|16|14|14|15|18|15|16|17|18|25|24|21|22|23|24|25|0\n41|39|38|36|35|35|34|30|30|31|32|27|26|25|25|28|24|23|22|22|40|23|24|29|26|27|28|29|33|31|32|33|34|37|36|37|38|39|40|41|0\n36|36|37|33|33|34|31|30|30|29|27|27|28|26|23|23|22|21|21|25|22|24|24|25|26|39|28|29|32|31|32|35|34|35|38|37|38|39|0\n54|52|52|51|50|50|49|47|46|46|44|42|42|41|40|38|38|36|35|34|34|33|31|30|30|29|29|45|32|31|32|33|37|35|36|37|39|39|40|41|43|43|44|45|48|47|48|49|55|51|53|53|54|55|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n46|45|45|42|42|41|40|39|36|36|37|35|34|31|30|29|29|32|27|27|26|25|25|44|26|28|28|33|30|31|32|33|34|35|38|37|38|39|40|41|43|43|44|47|46|47|0\n42|41|40|40|39|38|38|37|36|35|33|33|31|31|30|30|45|28|27|27|26|25|25|47|26|29|28|29|46|32|32|34|34|35|36|37|44|39|43|41|42|43|44|45|46|47|0\n55|53|52|51|49|48|47|47|46|45|44|42|41|40|40|39|36|35|33|33|34|37|31|30|29|29|32|54|30|31|32|38|34|35|36|37|38|39|43|41|42|43|44|45|46|50|48|49|50|51|52|53|54|55|0\n39|35|35|36|33|33|30|29|29|28|26|26|27|25|23|23|22|21|21|38|22|24|24|25|32|27|28|31|30|31|32|34|34|37|36|37|38|39|0\n14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0\n29|27|23|22|21|21|24|20|18|18|19|16|16|17|28|17|26|19|20|25|22|23|24|25|26|27|28|29|0\n58|58|57|56|54|54|53|52|52|60|61|51|50|49|48|47|45|44|44|42|41|41|40|38|38|37|36|35|33|33|34|63|34|35|36|37|39|39|40|43|42|43|46|45|46|47|48|49|50|51|62|53|55|55|56|57|59|59|60|61|62|63|0\n59|58|53|52|51|51|50|48|48|47|44|43|40|40|41|42|45|39|37|37|36|35|34|34|55|33|32|31|31|57|32|33|56|35|36|38|38|39|46|41|42|43|44|45|46|47|49|49|50|54|52|53|54|55|56|57|58|59|0\n64|62|62|61|59|58|58|57|56|55|54|54|53|51|50|49|49|48|44|43|43|42|41|41|46|39|38|38|37|36|35|34|34|35|36|37|40|39|40|47|42|45|44|45|46|47|48|52|50|51|52|53|65|55|56|57|60|59|60|61|63|63|64|65|0\n31|29|29|27|25|24|24|26|23|22|22|32|33|20|20|19|19|35|21|21|34|23|28|25|26|27|28|30|30|31|32|33|34|35|0\n19|18|17|16|15|14|13|12|11|11|12|13|14|15|16|17|18|19|0\n45|40|39|38|37|37|36|35|34|33|32|32|42|30|30|28|28|27|26|24|24|25|44|25|26|27|29|29|31|31|43|33|34|35|36|41|38|39|40|41|42|43|44|45|0\n10|9|9|7|7|8|8|11|10|11|0\n38|36|35|35|34|33|33|32|31|29|27|24|24|25|26|23|22|21|21|30|22|23|28|25|26|27|28|29|30|31|32|39|34|37|36|37|38|39|0\n37|36|35|34|30|29|29|28|27|26|26|32|24|23|22|22|21|20|20|21|25|23|24|25|33|27|28|31|30|31|32|33|34|35|36|37|0\n26|25|24|23|22|21|19|19|18|18|27|28|29|17|17|31|30|20|20|21|22|23|24|25|26|27|28|29|30|31|0\n41|40|39|37|35|35|34|32|31|30|30|29|28|27|26|25|24|22|22|23|38|23|24|25|26|27|28|29|33|31|32|33|34|36|36|37|38|39|40|41|0\n41|39|36|34|34|33|32|31|30|30|37|28|27|27|26|23|23|24|22|22|40|25|24|25|26|29|28|29|38|31|32|33|35|35|36|37|38|39|40|41|0\n36|35|35|37|34|31|31|32|33|30|28|27|26|25|24|23|22|21|21|29|22|23|24|25|26|27|28|29|30|39|32|33|34|38|36|37|38|39|0\n16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0\n25|24|24|21|21|22|20|15|15|16|17|18|19|27|16|17|18|19|20|23|22|23|26|25|26|27|0\n84|84|83|82|78|78|77|76|75|75|80|74|73|70|69|68|68|71|67|66|66|86|87|64|63|63|61|60|60|55|53|53|52|51|51|50|50|57|49|48|48|47|46|46|89|47|59|49|58|56|52|54|54|55|56|57|58|59|62|61|62|65|64|65|88|67|72|69|70|71|72|73|74|81|76|77|79|79|80|81|82|83|85|85|86|87|88|89|0\n23|22|22|21|20|20|18|17|16|14|14|15|19|15|16|17|18|19|25|21|24|23|24|25|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n42|42|43|41|41|38|37|37|35|35|34|31|30|30|32|28|27|27|26|25|24|24|40|25|26|29|28|29|33|31|32|33|34|36|36|39|38|39|40|45|44|43|44|45|0\n67|67|66|65|63|63|62|61|60|57|56|55|55|58|54|53|53|69|52|50|49|49|48|47|46|44|43|42|41|40|39|39|38|37|37|71|38|45|40|41|42|43|44|45|46|47|48|51|50|51|52|70|54|59|56|57|58|59|60|61|62|64|64|65|66|68|68|69|70|71|0\n57|52|50|50|49|48|47|47|53|54|45|44|44|42|40|39|37|37|38|41|36|35|33|33|32|31|30|30|56|31|32|34|34|35|36|43|38|39|40|41|42|43|46|45|46|55|48|49|51|51|52|53|54|55|56|57|0\n22|22|21|17|16|16|18|15|14|14|13|13|20|15|19|17|18|19|20|21|23|23|0\n32|31|30|29|28|27|26|25|25|24|23|20|20|19|18|18|22|19|21|21|22|23|24|33|26|27|28|29|30|31|32|33|0\n14|14|12|10|10|9|9|13|11|11|12|13|15|15|0\n31|29|26|26|25|21|21|22|20|19|19|24|18|17|17|30|18|28|20|23|22|23|24|25|27|27|28|29|30|31|0\n20|20|19|18|18|22|23|17|16|15|14|14|25|15|16|17|24|19|21|21|22|23|24|25|0\n43|42|41|40|39|39|38|38|37|34|33|33|35|32|32|31|29|28|27|27|26|25|25|47|26|30|28|29|30|31|46|36|34|35|36|37|45|44|40|41|42|43|44|45|46|47|0\n50|50|47|46|46|41|39|39|37|37|36|35|34|33|32|32|42|43|44|31|30|29|28|27|27|49|28|29|30|31|45|33|34|35|36|38|38|40|40|41|42|43|44|45|48|47|48|49|51|51|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n14|13|12|11|10|10|9|9|15|11|12|13|14|15|0\n78|77|77|76|76|75|74|74|70|69|68|68|67|65|64|64|63|62|60|58|57|57|59|56|56|55|54|52|51|50|49|49|48|46|46|45|44|42|42|43|73|43|44|45|47|47|48|53|50|51|52|53|54|55|72|61|58|59|60|61|62|63|66|65|66|67|71|69|70|71|72|73|81|75|80|79|78|79|80|81|0\n24|23|23|22|22|26|27|20|20|19|18|17|16|16|29|17|18|19|21|21|28|25|24|25|26|27|28|29|0\n37|36|35|35|34|34|33|31|29|29|28|27|26|24|23|23|22|21|21|32|22|25|24|25|26|27|28|30|30|31|32|33|39|38|36|37|38|39|0\n8|8|6|6|7|7|9|9|0\n8|8|6|6|7|7|9|9|0\n9|9|8|7|7|11|8|10|10|11|0\n3|3|0\n51|50|49|48|48|47|46|45|44|42|42|41|40|40|39|36|35|34|33|33|32|30|30|29|28|28|38|29|31|31|32|37|34|35|36|37|38|39|53|41|43|43|44|45|46|47|52|49|50|51|52|53|0\n33|30|30|31|27|26|24|24|23|22|22|28|20|19|19|18|18|21|20|21|29|23|25|25|26|27|28|29|32|31|32|33|0\n32|32|33|30|30|29|27|26|26|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|28|27|28|29|31|31|34|33|34|35|0\n31|29|28|27|26|23|23|24|22|20|19|19|18|17|17|30|18|21|20|21|22|25|24|25|26|27|28|29|30|31|0\n31|30|28|28|27|27|32|25|25|24|24|34|35|22|22|21|20|20|37|21|23|23|36|26|26|33|29|29|30|31|32|33|34|35|36|37|0\n46|45|45|43|42|41|40|38|38|35|34|34|36|32|32|30|29|29|28|27|25|25|26|44|26|27|28|31|30|31|33|33|37|35|36|37|39|39|40|41|42|43|44|47|46|47|0\n53|52|51|50|50|54|55|48|46|45|45|44|44|43|42|41|40|39|37|36|36|35|34|33|32|30|30|31|57|31|32|33|34|35|38|37|38|39|40|41|42|43|49|47|46|47|48|49|56|51|52|53|54|55|56|57|0\n42|41|40|40|37|36|35|34|33|33|32|27|27|26|26|29|30|24|24|23|23|39|25|25|31|28|28|29|30|31|32|38|34|35|36|37|38|39|43|41|42|43|0\n9|8|7|6|6|7|8|9|0\n40|39|37|37|35|35|34|32|31|31|33|29|27|27|25|24|24|23|22|22|30|23|26|25|26|28|28|29|30|41|32|33|34|36|36|38|38|39|40|41|0\n43|41|39|38|38|37|34|32|32|33|35|31|30|25|25|26|24|24|28|23|23|42|29|27|26|27|28|29|30|31|36|33|34|35|36|37|40|39|40|41|42|43|0\n30|28|28|26|25|25|24|23|22|21|20|19|18|17|17|31|18|19|20|21|22|23|24|27|26|27|29|29|30|31|0\n39|38|36|34|34|33|32|31|28|28|29|27|25|25|24|22|22|21|21|37|23|23|24|26|26|27|30|29|30|31|32|33|35|35|36|37|38|39|0\n40|38|37|37|36|34|34|33|32|31|30|30|29|27|26|26|24|23|22|22|25|23|24|25|28|27|28|29|41|31|32|33|35|35|36|39|38|39|40|41|0\n18|17|16|15|15|14|13|13|12|12|21|20|14|19|16|17|18|19|20|21|0\n16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0\n45|44|44|43|40|40|41|38|37|36|35|35|34|31|31|32|30|29|26|26|27|25|25|47|28|27|28|29|30|33|32|33|34|39|36|37|38|39|42|41|42|43|46|45|46|47|0\n55|53|52|52|54|51|49|49|48|44|43|43|45|46|41|40|39|39|38|37|37|34|33|32|32|31|30|30|36|31|35|33|34|35|36|57|38|42|40|41|42|47|44|45|46|47|48|50|50|51|56|53|54|55|56|57|0\n49|48|48|47|45|45|42|41|40|40|43|39|38|37|36|35|34|32|32|33|29|29|28|27|27|31|28|30|30|31|51|33|34|35|36|37|38|39|44|41|42|43|44|46|46|47|50|49|50|51|0\n42|41|40|40|43|37|36|35|35|38|33|32|31|31|30|29|28|27|26|24|24|25|45|25|26|27|28|29|30|34|32|33|34|39|36|37|38|39|44|41|42|43|44|45|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n34|33|32|29|28|27|27|30|26|25|24|24|23|22|20|19|19|21|20|21|22|23|35|25|26|31|28|29|30|31|32|33|34|35|0\n59|57|57|58|56|54|53|53|51|50|49|47|47|48|46|44|44|43|42|42|61|39|39|40|37|36|35|34|33|33|38|63|34|35|36|37|38|41|40|41|62|43|45|45|46|52|48|49|50|51|52|55|54|55|56|60|58|59|60|61|62|63|0\n24|23|22|22|20|19|18|16|16|15|14|14|21|15|17|17|18|19|20|21|25|23|24|25|0\n44|43|41|40|40|42|39|38|35|35|32|31|31|33|30|29|28|27|26|25|24|24|37|25|26|27|28|29|30|34|32|33|34|36|36|37|38|39|45|41|42|43|44|45|0\n26|26|27|25|25|24|22|21|21|18|18|17|16|16|20|17|19|19|20|23|22|23|24|29|28|27|28|29|0\n27|23|21|20|20|19|18|17|17|24|16|15|15|26|16|25|18|19|22|21|22|23|24|25|26|27|0\n40|40|37|36|31|31|32|33|34|30|30|29|27|27|26|24|23|23|22|22|39|25|24|25|26|28|28|29|38|35|32|33|34|35|36|37|38|39|41|41|0\n16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0\n27|23|22|21|19|18|18|16|16|15|15|24|25|26|17|17|20|19|20|21|22|23|24|25|26|27|0\n48|47|46|45|44|43|42|40|39|39|38|33|33|34|35|36|37|32|31|28|28|27|26|26|30|27|29|29|30|31|32|49|34|35|36|37|38|41|40|41|42|43|44|45|46|47|48|49|0\n58|58|59|57|57|56|55|53|51|50|50|49|47|47|44|44|45|39|38|38|40|36|36|35|34|34|42|33|32|32|54|33|43|35|37|37|41|39|40|41|42|43|46|45|46|48|48|49|52|51|52|53|54|55|56|61|60|59|60|61|0\n35|33|32|31|29|28|28|27|26|25|24|22|20|20|21|19|19|34|23|21|22|23|24|25|26|27|30|29|30|31|32|33|34|35|0\n29|26|25|24|24|23|21|20|20|19|18|16|16|17|28|17|18|19|22|21|22|23|27|25|26|27|28|29|0\n20|20|19|18|17|17|22|23|16|14|14|15|25|15|16|24|18|19|21|21|22|23|24|25|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n32|31|30|29|27|27|28|26|25|24|22|21|18|18|19|20|23|19|20|21|22|23|24|25|26|33|28|29|30|31|32|33|0\n58|57|56|53|53|54|55|52|50|49|49|44|44|43|42|42|46|40|40|38|37|36|35|35|34|33|31|31|32|48|32|33|34|39|36|37|38|39|41|41|47|43|45|45|46|47|48|51|50|51|52|59|54|55|56|57|58|59|0\n16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0\n31|29|26|26|27|23|23|24|22|19|18|17|17|20|21|30|18|19|20|21|22|25|24|25|28|27|28|29|30|31|0\n44|44|42|41|41|40|39|37|37|36|35|35|46|47|33|32|31|30|29|28|28|27|26|26|49|27|34|29|30|31|32|33|34|48|36|38|38|39|40|43|42|43|45|45|46|47|48|49|0\n39|37|34|34|33|32|32|31|29|28|27|27|26|25|22|22|23|21|21|38|24|23|24|25|26|30|28|29|30|31|36|33|35|35|36|37|38|39|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n55|50|48|47|46|46|45|44|44|51|52|43|42|40|40|39|37|37|36|34|34|33|32|31|30|29|29|54|30|31|32|33|35|35|36|38|38|39|41|41|42|43|53|45|49|47|48|49|50|51|52|53|54|55|0\n36|36|37|38|39|31|30|29|29|28|27|26|25|25|33|34|24|23|22|22|41|23|24|35|26|27|28|32|30|31|32|33|34|35|40|37|38|39|40|41|0\n40|38|38|37|37|34|33|32|31|30|29|28|28|27|26|24|24|23|22|22|36|23|25|25|26|27|35|29|30|31|32|33|34|35|36|41|39|39|40|41|0\n32|31|31|33|30|30|28|28|27|26|26|36|37|25|24|23|22|21|21|39|22|23|24|25|38|27|29|29|35|34|32|33|34|35|36|37|38|39|0\n52|52|51|50|50|48|46|46|45|45|44|41|41|42|40|39|38|37|36|35|34|33|31|30|30|29|29|55|32|31|32|33|34|35|36|37|38|39|40|43|42|43|44|49|47|47|48|49|54|51|53|53|54|55|0\n43|41|39|38|38|37|35|34|33|33|32|31|30|25|25|26|24|24|28|23|23|42|29|27|26|27|28|29|30|31|32|36|34|35|36|37|40|39|40|41|42|43|0\n11|10|10|12|13|9|9|15|14|11|12|13|14|15|0\n9|9|7|7|8|11|8|10|10|11|0\n44|43|42|42|39|38|36|35|35|34|33|32|32|31|30|27|26|26|28|25|24|24|41|25|29|27|28|29|30|31|40|33|34|37|36|37|38|39|40|41|45|43|44|45|0\n37|37|36|35|34|33|32|31|31|28|27|26|24|24|23|22|21|21|29|30|22|23|25|25|26|27|28|29|30|39|32|33|34|35|36|38|38|39|0\n33|31|30|29|27|27|26|21|20|19|19|22|23|24|18|18|32|25|20|21|22|23|24|25|26|28|28|29|30|31|32|33|0\n36|35|35|33|32|27|27|28|26|24|24|23|22|22|30|21|20|20|34|21|31|23|25|25|26|29|28|29|30|31|32|33|34|37|36|37|0\n40|40|41|38|38|37|35|35|34|30|30|29|29|32|27|27|26|25|24|23|23|43|24|25|26|28|28|33|31|31|32|33|34|36|36|37|39|39|42|41|42|43|0\n68|67|66|65|64|64|63|61|61|59|57|57|56|50|49|49|51|52|48|47|46|44|43|43|45|54|42|41|40|39|38|37|36|36|60|37|38|39|40|41|42|55|44|45|46|47|48|53|50|51|52|53|54|55|56|58|58|59|60|62|62|63|69|65|66|67|68|69|0\n20|20|19|16|15|15|14|13|12|12|18|13|14|17|16|17|18|19|21|21|0\n46|45|45|44|43|41|40|39|37|37|36|33|33|32|31|30|30|29|28|25|25|26|27|42|26|27|28|29|35|31|32|34|34|35|36|38|38|39|40|41|42|43|44|47|46|47|0\n67|63|63|62|60|59|59|61|65|66|58|57|56|54|54|55|69|52|50|50|49|47|47|46|45|43|43|42|42|41|40|39|38|37|37|71|38|39|40|41|53|44|44|45|46|48|48|49|51|51|52|53|70|55|56|57|58|68|60|61|62|64|64|65|66|67|68|69|70|71|0\n20|20|18|16|15|15|14|13|12|12|19|13|14|17|16|17|18|19|21|21|0\n3|3|0\n31|30|29|28|25|25|26|27|23|22|22|21|20|19|18|18|33|19|20|21|24|23|24|32|26|27|28|29|30|31|32|33|0\n15|13|12|11|9|9|10|14|10|11|12|13|14|15|0\n11|9|9|7|7|8|8|10|10|11|0\n22|20|19|19|18|17|15|15|14|13|13|23|14|16|16|17|18|21|20|21|22|23|0\n34|34|32|32|31|31|36|37|30|29|27|25|24|24|23|23|22|21|21|39|22|28|26|25|26|27|28|29|30|38|33|33|35|35|36|37|38|39|0\n20|18|18|19|15|15|14|14|12|12|13|13|17|16|16|17|21|19|20|21|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n59|58|57|56|54|54|55|53|50|50|51|52|44|44|43|42|42|46|47|41|40|38|38|37|36|35|34|33|32|32|49|33|34|35|36|37|39|39|40|41|48|43|45|45|46|47|48|49|61|51|52|53|60|55|56|57|58|59|60|61|0\n17|16|13|12|11|10|10|14|15|11|12|13|14|15|16|17|0\n65|63|58|57|56|55|53|53|54|52|52|51|49|49|47|45|45|46|48|61|43|42|42|41|40|39|38|35|35|34|34|37|64|36|36|37|38|39|40|41|44|43|44|62|46|47|48|50|50|51|60|59|54|55|56|57|58|59|60|61|62|63|64|65|0\n22|22|18|18|14|14|15|16|13|13|20|21|17|15|16|17|19|19|20|21|23|23|0\n22|20|20|19|19|23|18|16|16|14|14|15|25|15|17|17|18|24|21|21|22|23|24|25|0\n16|15|15|17|14|14|13|13|12|12|21|20|19|18|16|17|18|19|20|21|0\n62|60|59|58|58|57|55|55|56|54|52|51|51|49|46|45|44|43|42|41|40|39|38|38|47|36|36|35|34|33|33|50|34|35|37|37|48|39|40|41|42|43|44|45|46|47|48|49|50|53|52|53|54|63|56|57|61|59|60|61|62|63|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n21|19|19|18|17|17|22|23|16|15|14|14|25|15|16|24|18|20|20|21|22|23|24|25|0\n74|73|72|70|70|69|68|66|66|67|65|63|63|62|59|58|56|55|55|57|54|51|47|47|45|44|44|46|49|43|42|41|41|52|40|39|39|61|40|53|42|43|50|45|46|48|48|49|50|51|52|53|54|60|56|57|58|59|60|61|62|64|64|65|75|67|68|69|71|71|72|73|74|75|0\n30|29|29|26|26|25|23|23|22|20|19|18|18|17|17|28|21|19|20|21|22|24|24|25|27|27|28|31|30|31|0\n60|59|59|54|53|52|52|51|50|49|49|56|47|47|46|44|43|42|41|40|39|39|38|36|36|35|34|33|32|32|58|33|34|35|37|37|38|45|40|41|42|43|44|45|46|48|48|57|50|51|55|53|54|55|56|57|58|61|60|61|0\n61|60|59|56|56|55|55|54|54|52|51|47|47|48|49|46|46|45|44|43|42|41|40|40|39|37|36|34|34|33|33|38|35|35|36|37|38|39|63|41|42|43|44|45|53|50|48|49|50|51|52|53|62|58|57|57|58|59|60|61|62|63|0\n33|32|32|31|30|29|28|25|24|24|26|27|22|21|20|19|19|23|20|21|22|23|35|25|26|27|28|29|30|31|34|33|34|35|0\n51|49|49|48|47|45|45|46|44|43|40|40|41|39|39|36|35|35|34|33|32|31|30|29|28|28|38|29|30|31|32|33|34|37|36|37|38|53|42|41|42|43|44|52|46|47|48|50|50|51|52|53|0\n41|40|40|38|38|39|35|35|33|33|31|30|30|29|27|26|26|25|23|23|24|37|24|25|28|27|28|29|32|31|32|34|34|36|36|37|43|39|42|41|42|43|0\n39|39|38|38|35|35|34|32|31|31|30|28|26|26|25|25|24|23|22|22|37|23|24|29|27|27|28|29|30|33|32|33|34|36|36|37|41|40|40|41|0\n36|36|34|33|29|29|28|26|26|25|24|24|31|22|21|21|20|20|35|23|22|23|32|25|27|27|28|30|30|31|32|33|34|35|37|37|0\n25|25|22|22|21|19|18|17|17|20|16|16|15|15|27|24|18|19|20|21|23|23|24|26|26|27|0\n21|19|16|14|14|15|17|13|12|12|20|13|18|15|16|17|18|19|20|21|0\n19|19|18|18|16|15|14|13|12|12|17|13|14|15|16|17|21|20|20|21|0\n50|49|48|48|46|45|45|44|43|43|52|53|41|40|40|39|38|37|35|34|33|32|32|31|29|29|30|55|30|31|36|33|34|35|36|37|38|39|42|41|42|54|44|47|46|47|51|49|50|51|52|53|54|55|0\n49|48|47|45|45|44|41|37|36|35|34|34|38|33|33|40|32|31|29|29|28|27|26|26|43|27|28|30|30|31|32|42|39|35|36|37|38|39|40|41|42|43|44|46|46|47|48|49|0\n36|35|34|34|32|30|30|29|27|26|25|25|24|22|21|21|20|20|33|23|22|23|24|28|26|27|28|29|31|31|32|33|37|35|36|37|0\n94|93|91|90|90|89|88|87|87|86|84|84|83|83|96|82|81|80|79|78|77|76|75|74|70|69|68|67|67|66|62|61|60|60|59|59|64|57|57|58|72|73|98|56|55|54|53|51|51|52|52|53|54|55|56|99|58|65|63|61|62|63|64|65|66|71|68|69|70|71|72|73|74|75|76|77|78|79|80|81|82|97|85|85|86|95|88|89|92|91|92|93|94|95|96|97|98|99|0\n53|52|52|51|50|50|48|46|45|44|44|43|38|38|39|37|37|41|36|35|33|33|32|31|30|29|29|49|30|31|32|34|34|35|36|42|40|39|40|41|42|43|47|45|46|47|48|49|55|51|54|53|54|55|0\n34|32|32|31|30|29|27|26|25|24|24|28|22|20|19|19|21|23|20|21|22|23|35|25|26|27|28|29|30|31|33|33|34|35|0\n32|31|30|29|29|27|26|24|23|22|21|21|20|19|18|18|28|19|20|25|22|23|24|25|26|27|28|33|30|31|32|33|0\n30|30|29|28|27|26|26|32|33|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|34|27|28|29|31|31|32|33|34|35|0\n20|19|19|18|17|15|14|12|12|13|16|13|14|15|16|17|18|21|20|21|0\n29|27|27|28|26|25|24|22|21|21|20|19|19|17|17|18|18|31|20|23|22|23|24|25|26|30|28|29|30|31|0\n60|59|58|58|54|51|50|50|52|49|48|46|46|47|55|45|44|43|41|40|39|37|37|38|36|34|34|33|32|32|57|33|35|35|36|42|38|39|40|41|42|43|44|45|56|47|48|49|53|51|52|53|54|55|56|57|61|59|60|61|0\n14|13|12|12|9|9|10|11|10|11|15|13|14|15|0\n41|40|40|39|38|38|43|36|35|35|34|34|31|29|27|27|28|26|26|25|24|24|33|25|32|30|28|29|30|31|32|33|45|37|36|37|44|39|42|41|42|43|44|45|0\n17|15|13|12|10|10|11|14|16|11|12|13|14|15|16|17|0\n42|40|40|39|39|36|33|33|32|32|31|31|30|28|28|27|26|25|24|23|23|38|24|25|26|27|29|29|30|37|35|34|34|35|36|37|38|43|41|41|42|43|0\n50|49|48|48|47|45|44|44|40|39|38|38|37|36|36|35|34|32|30|30|31|29|28|27|27|43|28|29|33|31|32|33|34|35|42|37|41|39|40|41|42|43|46|45|46|47|51|49|50|51|0\n34|32|32|31|30|29|28|28|22|22|23|21|21|25|20|19|19|27|20|26|24|23|24|25|26|27|35|29|30|31|33|33|34|35|0\n19|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|18|19|0\n47|44|44|43|43|46|42|39|38|38|40|37|36|36|35|34|33|33|50|51|32|31|30|29|28|28|53|29|30|31|32|52|34|35|49|37|41|39|40|41|42|48|45|45|46|47|48|49|50|51|52|53|0\n48|47|46|46|45|43|43|42|41|40|39|38|37|35|35|36|34|31|30|30|32|29|28|27|27|51|28|29|33|31|32|33|34|50|36|37|38|39|40|41|42|44|44|45|49|47|48|49|50|51|0\n61|61|62|60|60|64|65|59|59|57|56|55|53|52|51|51|50|47|46|45|45|48|44|42|41|40|40|39|38|35|35|36|37|58|36|37|38|39|43|41|42|43|44|49|46|47|48|49|50|54|52|53|54|55|56|57|58|67|66|63|62|63|64|65|66|67|0\n38|37|37|39|40|36|35|34|33|31|30|28|28|27|27|26|24|23|23|25|42|43|24|25|26|32|29|29|30|31|32|33|34|35|36|41|38|39|40|41|42|43|0\n31|30|28|28|27|27|26|25|25|23|22|21|20|19|18|18|24|19|20|21|22|23|24|33|26|32|29|29|30|31|32|33|0\n22|21|21|23|19|19|18|17|16|14|14|15|25|15|16|17|18|20|20|24|22|23|24|25|0\n39|39|38|37|36|34|34|35|33|31|29|28|28|27|26|24|24|23|22|22|32|23|25|25|26|27|30|29|30|31|32|33|41|35|36|37|38|40|40|41|0\n22|22|20|19|18|17|16|15|14|13|13|21|14|15|16|17|18|19|20|21|23|23|0\n44|43|40|39|39|38|36|35|35|34|34|33|33|31|31|29|27|26|26|25|24|24|30|25|28|27|28|29|30|32|32|45|42|37|36|37|38|41|40|41|42|43|44|45|0\n28|27|27|24|24|22|22|21|19|19|18|17|16|16|26|17|18|20|20|21|23|23|25|25|26|29|28|29|0\n39|39|38|37|36|36|41|34|34|33|31|31|30|28|28|27|25|25|24|23|23|43|24|26|26|27|29|29|30|32|32|33|35|35|42|37|38|40|40|41|42|43|0\n35|32|31|30|27|26|25|25|28|23|23|22|21|21|20|19|19|34|20|33|22|24|24|29|26|27|28|29|30|31|32|33|34|35|0\n8|8|6|6|7|7|9|9|0\n39|37|29|29|30|31|27|27|26|25|25|33|24|23|23|35|22|21|21|38|22|36|24|34|26|28|28|32|30|31|32|33|34|35|36|37|38|39|0\n34|32|32|33|31|30|28|27|24|22|22|21|20|20|19|19|26|29|25|21|23|23|24|25|26|27|28|29|30|31|35|33|34|35|0\n49|48|44|43|43|42|42|46|47|50|51|40|39|38|36|36|35|34|33|32|32|31|30|29|28|28|53|29|30|31|41|33|34|35|37|37|38|39|40|41|52|45|44|45|46|47|48|49|50|51|52|53|0\n54|53|51|51|50|49|48|47|46|45|44|43|43|42|40|39|39|37|35|34|33|32|31|31|30|29|29|38|30|36|32|33|34|35|36|37|38|41|40|41|42|55|44|45|46|47|48|49|50|52|52|53|54|55|0\n17|17|16|15|14|13|11|11|12|19|12|13|14|15|16|18|18|19|0\n14|10|10|11|9|9|13|15|12|11|12|13|14|15|0\n23|21|19|18|18|17|15|14|14|13|13|22|16|15|16|17|20|19|20|21|22|23|0\n28|27|27|25|24|23|21|20|20|19|18|17|16|16|26|17|18|19|22|21|22|23|24|25|26|29|28|29|0\n39|39|38|37|37|41|36|35|34|33|32|31|30|28|28|27|26|25|24|23|23|43|24|25|26|27|29|29|30|31|32|33|34|35|36|42|38|40|40|41|42|43|0\n23|22|21|21|20|16|16|15|15|18|14|14|25|19|17|17|18|19|20|24|22|23|24|25|0\n83|82|82|84|81|79|75|75|74|72|71|71|70|69|69|77|67|67|65|64|64|63|61|61|60|59|57|55|55|54|52|50|50|51|49|49|48|47|46|44|44|45|80|45|46|47|48|58|53|51|52|53|54|56|56|57|58|59|60|62|62|63|66|65|66|68|68|78|70|73|72|73|74|76|76|77|78|79|80|81|85|83|84|85|0\n53|52|51|50|49|48|47|47|46|39|39|40|41|38|37|37|43|35|35|34|34|45|55|33|32|31|30|30|57|31|32|33|56|36|36|44|38|42|40|41|42|43|44|45|46|54|48|49|50|51|52|53|54|55|56|57|0\n35|34|34|33|32|31|30|29|28|28|26|24|24|23|22|21|20|20|27|21|22|23|25|25|26|27|37|29|30|31|32|33|36|35|36|37|0\n67|66|65|65|64|63|62|61|60|59|59|69|55|55|56|54|54|53|52|51|50|49|47|47|45|45|43|43|42|41|40|39|38|37|37|71|38|39|40|41|42|44|44|46|46|48|48|49|50|51|52|53|58|57|56|57|58|70|60|61|62|63|64|68|66|67|68|69|70|71|0\n35|35|34|33|32|31|31|29|26|25|24|24|27|21|21|22|20|20|30|23|22|23|28|25|26|27|28|29|30|37|32|33|34|36|36|37|0\n25|25|24|23|23|27|21|20|20|19|18|16|16|17|29|17|18|19|22|21|22|28|24|26|26|27|28|29|0\n21|20|19|18|18|17|14|14|15|16|13|13|23|15|16|17|22|19|20|21|22|23|0\n18|17|16|14|13|13|11|11|12|19|12|15|14|15|16|17|18|19|0\n41|39|34|33|33|35|32|31|29|29|30|37|28|26|26|25|24|23|22|22|40|23|24|25|27|27|28|38|30|31|32|36|34|35|36|37|38|39|40|41|0\n47|47|48|43|42|42|44|41|38|38|37|36|36|35|34|33|32|31|30|29|27|27|26|26|46|28|28|29|30|31|32|33|34|35|40|37|39|39|40|41|45|43|44|45|46|49|48|49|0\n10|9|9|7|7|8|8|11|10|11|0\n26|26|27|25|25|24|22|21|20|18|18|17|16|16|23|17|19|19|20|21|22|23|24|29|28|27|28|29|0\n17|16|13|13|12|11|10|10|15|11|12|14|14|15|16|17|0\n8|7|6|6|9|7|8|9|0\n14|10|10|11|9|9|13|15|12|11|12|13|14|15|0\n71|71|70|70|68|66|64|62|62|63|65|61|60|58|55|53|53|54|56|51|50|50|49|48|48|47|46|45|42|42|41|40|40|39|38|38|69|39|44|41|43|43|44|45|46|47|59|49|52|51|52|57|54|55|56|57|58|59|60|61|67|63|64|65|66|67|68|69|73|72|72|73|0\n68|67|67|66|64|62|61|60|60|59|58|57|56|56|55|53|53|51|50|48|47|47|46|45|44|42|41|41|40|38|37|36|36|39|52|37|38|39|40|43|42|43|44|45|46|49|48|49|50|51|52|54|54|55|65|57|58|59|63|61|62|63|64|65|66|69|68|69|0\n52|52|50|48|46|44|44|45|47|43|42|38|37|37|36|35|35|40|33|32|32|31|30|29|28|28|51|29|30|31|34|33|34|41|36|39|38|39|40|41|42|43|49|45|46|47|48|49|50|51|53|53|0\n93|92|91|90|87|87|88|81|81|80|79|79|83|78|76|75|75|74|74|85|73|72|71|70|70|94|95|69|66|65|65|64|62|62|61|60|59|56|55|55|57|54|53|53|52|51|50|50|97|51|52|68|54|58|56|57|58|59|60|61|63|63|64|67|66|67|68|69|96|71|72|73|86|77|76|77|78|84|80|82|82|83|84|85|86|89|88|89|90|91|92|93|94|95|96|97|0\n25|25|24|23|22|21|21|20|18|17|16|15|15|19|16|17|18|19|20|27|22|23|24|26|26|27|0\n24|23|23|22|20|20|21|19|18|18|17|15|15|16|16|17|27|19|26|21|22|25|24|25|26|27|0\n29|27|25|25|24|23|21|21|20|17|17|18|16|16|28|19|18|19|20|22|22|23|24|26|26|27|28|29|0\n78|77|76|74|74|73|72|70|70|69|68|68|67|66|64|62|62|61|60|59|58|57|54|53|53|55|52|51|50|49|48|47|46|45|42|41|41|43|44|65|42|43|44|45|46|47|48|49|50|51|52|56|54|55|56|57|58|59|60|61|63|63|64|65|66|67|79|69|71|71|72|73|75|75|76|77|78|79|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n42|40|40|41|39|38|37|36|35|35|44|31|31|32|30|29|27|27|26|25|24|24|34|25|26|28|28|29|30|33|32|33|34|45|36|37|38|39|43|41|42|43|44|45|0\n19|17|13|13|14|15|12|11|11|18|12|16|14|15|16|17|18|19|0\n28|27|26|26|25|23|22|21|20|20|18|17|16|16|19|17|18|19|24|21|22|23|24|25|29|27|28|29|0\n29|28|27|26|26|25|22|21|20|20|19|18|18|17|17|31|24|19|23|21|22|23|24|25|30|27|28|29|30|31|0\n53|52|51|50|49|47|47|46|45|45|54|55|44|43|42|40|39|39|38|36|36|34|32|32|33|31|30|30|57|31|35|33|34|35|37|37|38|41|40|41|42|43|44|56|46|48|48|49|50|51|52|53|54|55|56|57|0\n49|47|43|43|42|41|40|39|39|45|34|33|33|35|32|31|30|30|37|29|28|27|26|26|48|27|28|29|38|31|32|36|34|35|36|37|38|46|40|41|42|44|44|45|46|47|48|49|0\n43|42|39|38|38|37|35|35|36|34|32|32|31|28|28|29|30|44|45|27|25|25|26|47|26|27|46|29|30|31|33|33|34|41|36|37|40|39|40|41|42|43|44|45|46|47|0\n46|45|45|41|41|42|40|38|38|37|35|35|34|33|32|30|29|29|28|27|26|25|25|44|26|27|28|31|30|31|32|33|34|36|36|37|39|39|40|43|42|43|44|47|46|47|0\n28|27|26|25|25|24|21|20|20|22|19|19|18|17|17|31|18|30|23|21|22|23|24|29|26|27|28|29|30|31|0\n14|14|13|11|9|9|10|12|10|11|12|13|15|15|0\n59|58|56|54|54|53|52|51|47|47|48|49|46|41|41|42|43|44|40|39|38|37|36|35|34|31|31|32|33|57|32|33|34|35|36|37|38|39|40|45|42|43|44|45|46|50|48|49|50|51|52|53|55|55|56|57|58|59|0\n40|39|38|38|37|36|35|34|33|33|42|43|32|31|29|29|28|26|26|25|24|24|45|25|27|27|28|30|30|31|32|44|34|35|36|37|41|39|40|41|42|43|44|45|0\n30|30|29|27|27|28|32|33|25|25|22|22|21|21|20|19|19|35|20|24|23|23|24|26|26|34|28|29|31|31|32|33|34|35|0\n58|58|57|55|55|54|54|60|61|52|50|50|49|47|46|46|45|44|44|43|42|40|40|38|37|36|36|35|34|33|33|63|34|35|39|37|38|39|41|41|42|43|53|45|48|47|48|49|51|51|52|53|62|56|56|57|59|59|60|61|62|63|0\n27|23|22|21|21|24|20|18|17|16|16|15|15|26|19|17|18|19|20|25|22|23|24|25|26|27|0\n44|42|41|40|40|39|38|37|37|36|34|33|33|30|30|28|27|26|26|25|24|24|32|25|29|27|28|29|31|31|32|35|34|35|36|45|38|39|43|41|42|43|44|45|0\n23|22|19|19|18|17|15|15|14|13|13|21|14|16|16|17|18|20|20|21|22|23|0\n56|55|54|53|52|51|50|49|47|47|46|44|44|45|43|42|40|39|35|35|34|34|37|33|32|30|30|31|41|31|32|33|38|36|36|37|38|39|40|41|42|43|57|45|46|48|48|49|50|51|52|53|54|55|56|57|0\n53|51|51|50|48|47|46|44|39|39|38|35|35|36|34|33|33|41|42|43|32|31|30|29|28|28|49|29|30|31|32|45|34|37|36|37|38|40|40|41|42|43|44|45|46|47|48|49|50|52|52|53|0\n28|28|26|25|24|24|21|21|20|19|18|16|16|17|23|17|18|19|20|22|22|23|27|25|26|27|29|29|0\n43|43|42|40|39|39|38|37|36|35|35|34|32|30|30|29|27|26|26|25|24|24|33|25|28|27|28|29|31|31|32|33|34|45|36|37|38|41|40|41|42|44|44|45|0\n64|61|61|60|60|59|57|57|56|55|55|54|53|51|50|49|48|47|46|43|42|42|41|39|39|38|37|37|35|35|34|34|52|36|36|45|38|40|40|41|44|43|44|45|46|47|48|49|50|51|52|53|54|65|56|58|58|59|63|62|62|63|64|65|0\n42|42|40|38|36|35|34|34|37|33|32|31|30|29|24|24|25|26|27|23|23|41|28|25|26|27|28|29|30|31|32|33|39|35|36|37|38|39|40|41|43|43|0\n42|41|41|43|39|39|38|37|36|35|31|31|29|29|30|33|27|27|26|24|24|25|45|25|26|28|28|34|30|32|32|33|34|35|36|37|38|40|40|44|42|43|44|45|0\n54|51|49|49|50|48|48|47|46|45|43|42|41|40|40|44|39|37|32|31|31|33|30|30|35|29|29|38|36|34|32|33|34|35|36|37|38|39|55|41|42|43|44|45|46|47|53|52|50|51|52|53|54|55|0\n64|64|65|62|62|61|60|59|58|58|57|55|55|53|50|48|48|49|51|47|46|45|44|43|42|41|40|39|37|37|36|35|35|54|36|38|38|39|40|41|42|43|44|45|46|47|52|49|50|51|52|53|54|56|56|57|67|59|60|61|63|63|66|65|66|67|0\n35|34|33|32|32|29|29|30|31|27|26|24|22|22|23|21|20|20|28|21|25|23|24|25|26|27|28|37|30|31|36|33|34|35|36|37|0\n40|39|38|37|37|35|35|32|31|29|29|30|28|26|25|25|24|23|22|22|34|23|24|27|26|27|28|33|30|31|32|33|34|36|36|41|38|39|40|41|0\n28|26|26|25|24|24|23|21|20|20|18|17|16|16|19|17|18|19|22|21|22|23|29|25|27|27|28|29|0\n28|27|26|22|21|21|23|24|25|19|18|17|16|16|20|17|18|19|20|29|22|23|24|25|26|27|28|29|0\n19|18|18|15|13|13|14|16|12|12|21|17|14|15|16|17|20|19|20|21|0\n12|10|9|8|8|11|13|9|10|11|12|13|0\n76|76|74|74|73|71|70|69|69|68|66|66|67|78|79|65|64|62|62|61|58|58|59|57|55|54|53|49|49|50|51|47|47|46|45|45|44|42|42|43|81|43|44|56|46|48|48|52|50|51|52|53|54|55|56|57|60|59|60|61|63|63|64|65|80|67|68|72|70|71|72|73|75|75|77|77|78|79|80|81|0\n63|62|60|60|56|56|57|58|54|54|55|53|51|51|50|49|49|65|47|47|45|45|44|43|42|42|41|39|39|36|36|35|35|38|37|37|38|40|40|41|67|43|44|46|46|48|48|66|50|52|52|53|64|55|59|57|58|59|61|61|62|63|64|65|66|67|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n39|37|35|35|36|34|33|32|31|30|29|29|40|41|26|26|25|25|24|23|23|43|24|28|27|27|28|42|30|31|32|33|34|38|36|37|38|39|40|41|42|43|0\n51|49|49|50|52|48|47|46|45|44|44|54|41|38|37|37|39|35|35|34|33|32|31|31|30|29|29|43|30|42|32|33|34|36|36|40|38|39|40|41|42|43|55|45|46|47|48|53|50|51|52|53|54|55|0\n25|24|23|23|22|17|17|18|16|16|20|15|15|27|21|19|18|19|20|21|22|26|24|25|26|27|0\n24|24|22|21|19|18|16|16|17|15|14|14|23|15|20|17|18|19|20|21|22|23|25|25|0\n47|46|44|44|45|42|42|40|40|38|38|37|36|35|35|34|32|31|30|30|26|26|27|28|29|27|28|29|33|31|32|33|34|49|36|37|39|39|41|41|43|43|48|45|46|47|48|49|0\n76|73|72|72|74|70|69|69|68|68|67|65|65|63|62|61|59|58|57|56|55|55|54|53|51|50|50|49|48|47|45|44|43|43|42|41|40|40|64|41|42|46|44|45|46|47|48|49|52|51|52|53|54|60|56|57|58|59|60|61|62|63|64|66|66|67|77|71|70|71|75|73|74|75|76|77|0\n26|25|24|23|23|27|21|20|20|19|18|17|16|16|29|17|18|19|22|21|22|28|24|25|26|27|28|29|0\n45|44|44|43|43|42|41|40|40|39|38|37|37|49|35|35|34|32|31|31|30|28|28|27|27|51|29|29|30|33|32|33|34|36|36|50|38|39|48|41|42|47|46|45|46|47|48|49|50|51|0\n44|44|43|42|39|39|40|38|38|37|36|35|33|33|32|31|27|27|26|26|25|25|30|47|29|28|28|29|30|31|32|34|34|35|36|37|46|41|40|41|42|43|45|45|46|47|0\n38|36|36|34|34|33|33|32|31|30|28|27|24|24|22|22|23|21|21|29|26|23|25|25|26|27|28|29|30|31|32|39|35|35|37|37|38|39|0\n27|26|26|25|25|23|22|21|20|18|18|17|16|16|24|17|19|19|20|21|22|23|24|29|28|27|28|29|0\n69|67|66|61|60|60|62|55|54|54|56|53|52|52|58|51|50|50|64|48|48|47|45|45|44|42|40|39|39|41|38|37|36|36|68|37|38|43|40|41|42|43|44|46|46|47|49|49|65|51|59|53|57|55|56|57|58|59|63|61|62|63|64|65|66|67|68|69|0\n30|29|27|26|25|25|24|23|22|21|20|18|17|17|19|31|18|19|20|21|22|23|24|28|26|27|28|29|30|31|0\n15|14|14|13|12|12|17|18|11|11|19|13|16|15|16|17|18|19|0\n19|19|18|18|21|16|16|15|14|13|13|23|14|15|17|17|22|20|20|21|22|23|0\n29|29|30|27|25|25|23|21|21|22|20|19|18|17|17|28|18|19|20|24|22|23|24|26|26|27|28|31|30|31|0\n79|78|77|76|74|74|73|72|71|70|68|68|67|62|62|61|60|57|56|56|55|54|53|53|52|51|51|64|65|50|49|48|47|46|44|43|43|42|41|41|42|45|44|45|46|47|48|49|50|66|52|59|54|55|58|57|58|59|60|61|63|63|64|65|66|67|69|69|70|71|72|73|75|75|76|77|78|79|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n42|41|40|39|38|37|37|43|36|34|33|33|32|31|29|29|28|27|25|25|24|24|45|26|26|27|28|30|30|31|32|35|34|35|36|44|38|39|40|41|42|43|44|45|0\n51|50|50|49|48|47|47|46|44|43|42|41|39|39|38|36|36|37|34|32|31|31|30|29|28|28|35|29|30|33|32|33|34|35|45|37|38|40|40|41|42|43|44|45|46|53|48|49|52|51|52|53|0\n30|30|31|26|26|25|25|28|23|22|22|21|20|19|18|18|33|19|20|21|24|23|24|29|27|27|28|29|32|31|32|33|0\n27|25|24|23|20|20|21|19|19|17|16|15|15|18|16|17|18|26|22|21|22|23|24|25|26|27|0\n33|32|31|31|30|28|28|27|24|23|21|20|20|22|19|19|26|35|25|21|22|23|24|25|26|27|29|29|30|34|32|33|34|35|0\n66|65|64|63|62|62|61|61|60|58|57|57|56|55|54|52|52|51|51|49|48|47|46|44|43|42|42|41|40|39|38|37|36|36|50|37|38|39|40|41|45|43|44|45|46|47|48|49|50|69|53|53|54|55|56|59|58|59|60|68|67|63|64|65|66|67|68|69|0\n25|21|21|19|19|17|17|15|14|14|16|23|24|15|16|18|18|20|20|22|22|23|24|25|0\n7|7|6|6|9|8|8|9|0\n14|14|15|12|12|11|10|10|17|11|13|13|16|15|16|17|0\n72|72|73|71|71|70|69|66|65|65|64|63|61|59|59|58|55|55|56|54|51|51|52|53|50|49|47|46|46|45|43|42|41|41|40|39|39|68|40|44|42|43|44|45|48|47|48|49|50|62|52|53|54|57|56|57|58|60|60|61|62|63|64|67|66|67|68|69|70|75|74|73|74|75|0\n21|17|16|15|14|14|18|12|12|13|20|13|19|15|16|17|18|19|20|21|0\n35|34|29|28|28|27|26|26|31|24|24|23|22|21|20|19|19|33|20|21|22|23|25|25|32|27|30|29|30|31|32|33|34|35|0\n81|80|78|74|73|72|71|70|68|68|67|66|65|64|64|75|76|63|62|61|58|58|57|55|53|53|54|52|51|51|49|49|48|46|45|45|44|43|42|42|79|43|44|47|46|47|48|50|50|60|52|56|54|55|56|57|59|59|60|61|62|63|77|65|66|67|69|69|70|71|72|73|74|75|76|77|78|79|80|81|0\n11|7|7|8|9|10|8|9|10|11|0\n42|42|38|37|36|36|39|35|34|34|33|33|44|32|30|27|27|28|25|25|24|24|31|26|26|29|28|29|30|31|32|45|41|35|40|37|38|39|40|41|43|43|44|45|0\n13|11|11|10|8|8|9|9|10|12|12|13|0\n33|32|32|31|30|29|28|27|27|26|24|24|23|20|20|19|19|22|21|21|22|23|25|25|26|35|28|29|30|31|34|33|34|35|0\n17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0\n29|27|21|20|20|22|19|18|18|24|25|17|16|16|28|17|26|19|23|21|22|23|24|25|26|27|28|29|0\n27|25|24|22|22|23|20|19|18|17|16|15|15|21|16|17|18|19|20|21|26|23|24|25|26|27|0\n42|40|40|41|39|35|34|34|36|33|32|32|31|29|28|26|24|24|25|23|23|30|27|25|26|27|28|29|30|31|38|33|37|35|36|37|38|39|43|41|42|43|0\n58|56|55|55|53|53|52|51|49|48|48|47|45|45|44|43|43|42|41|39|37|37|36|31|31|32|33|34|35|40|32|33|34|35|36|38|38|39|40|41|42|59|44|46|46|47|50|49|50|51|52|54|54|57|56|57|58|59|0\n20|19|19|18|16|16|15|12|12|13|14|13|14|15|17|17|18|21|20|21|0\n64|62|62|61|59|58|58|57|57|56|55|52|52|51|50|49|48|47|45|43|43|44|42|41|40|38|37|36|36|35|34|34|54|35|39|37|38|39|40|41|42|46|44|45|46|47|48|49|50|51|53|53|54|55|56|65|60|59|60|61|63|63|64|65|0\n41|38|38|37|37|40|36|35|34|32|32|33|30|27|26|26|28|25|24|23|23|31|24|25|29|27|28|29|30|31|43|33|34|35|36|42|39|39|40|41|42|43|0\n48|47|44|44|45|42|42|41|40|40|39|36|36|35|34|34|32|30|29|28|28|27|26|26|33|27|31|29|30|31|32|33|38|35|37|37|38|39|49|41|43|43|46|45|46|47|48|49|0\n35|35|36|37|32|32|33|31|29|29|28|27|27|26|25|23|22|21|21|24|22|23|24|25|26|39|28|30|30|31|34|33|34|38|36|37|38|39|0\n52|50|50|51|46|45|45|44|43|42|42|41|38|37|36|35|34|34|33|32|31|30|30|29|28|28|49|29|40|31|32|33|39|35|36|37|38|39|40|41|48|43|44|47|46|47|48|49|53|51|52|53|0\n18|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|19|19|0\n40|40|39|38|38|42|37|37|44|34|33|32|32|31|30|28|28|27|26|24|24|25|36|25|26|27|29|29|30|31|35|33|34|35|36|45|43|39|41|41|42|43|44|45|0\n35|33|30|29|29|28|27|27|32|26|23|23|22|21|21|19|19|20|20|25|22|24|24|25|26|34|28|31|30|31|32|33|34|35|0\n20|19|18|17|17|16|15|14|14|13|13|23|22|15|16|21|18|19|20|21|22|23|0\n36|35|34|34|33|28|28|29|30|31|27|27|26|25|23|22|21|21|24|39|22|23|24|25|26|38|32|29|30|31|32|33|37|35|36|37|38|39|0\n65|64|64|63|62|62|67|61|61|59|58|56|55|53|52|52|50|50|51|49|48|46|46|45|44|41|41|40|40|39|38|37|36|36|60|37|38|39|43|42|42|43|44|45|47|47|48|49|57|51|54|53|54|55|56|57|58|59|60|69|68|63|66|65|66|67|68|69|0\n47|43|41|40|39|39|38|38|44|37|36|35|34|32|32|31|30|29|28|27|26|25|25|46|26|27|28|29|30|31|33|33|34|35|36|37|45|42|40|41|42|43|44|45|46|47|0\n44|43|41|41|42|45|40|39|39|37|32|31|31|33|30|29|29|35|28|27|26|25|25|38|26|27|28|36|30|34|32|33|34|35|36|37|38|47|40|46|42|43|44|45|46|47|0\n33|32|32|31|31|29|28|27|25|25|24|22|21|20|19|19|23|30|20|21|22|23|24|26|26|27|28|29|30|35|34|33|34|35|0\n35|33|32|30|29|28|25|25|26|27|24|22|22|20|19|19|21|34|20|21|23|23|24|31|26|27|28|29|30|31|32|33|34|35|0\n42|42|39|39|38|37|36|31|30|29|29|32|33|34|28|27|26|25|24|23|23|41|24|25|26|27|28|35|30|31|32|33|34|35|36|37|38|40|40|41|43|43|0\n11|10|9|8|7|7|8|9|10|11|0\n25|23|22|20|20|19|18|17|16|15|14|14|24|15|16|17|18|19|21|21|22|23|24|25|0\n11|10|9|8|8|12|13|9|10|11|12|13|0\n46|45|43|42|40|39|39|41|38|37|37|36|32|31|30|29|28|28|33|27|26|25|25|35|26|27|34|29|30|31|32|33|34|35|36|47|38|44|40|41|42|43|44|45|46|47|0\n9|7|6|6|8|7|8|9|0\n57|54|53|52|51|50|50|49|47|47|46|45|44|42|40|40|41|39|38|37|35|34|33|32|31|31|30|30|56|36|32|33|34|35|36|37|38|39|43|41|42|43|44|45|46|48|48|49|55|51|52|53|54|55|56|57|0\n69|68|68|67|67|65|61|61|60|59|58|57|56|55|55|63|54|53|50|50|51|49|47|46|46|45|43|43|40|40|41|39|38|37|37|66|38|39|42|41|42|44|44|45|48|47|48|49|52|51|52|53|54|64|56|57|58|59|60|62|62|63|64|65|66|71|70|69|70|71|0\n35|35|34|32|32|29|29|30|31|26|26|25|23|23|22|20|20|21|28|21|22|24|24|25|27|27|28|37|30|31|33|33|34|36|36|37|0\n54|53|52|49|49|50|48|48|45|44|44|43|41|41|39|37|36|36|38|35|33|32|31|31|30|29|29|47|30|34|32|33|34|35|40|37|38|39|40|42|42|43|46|45|46|47|55|51|50|51|52|53|54|55|0\n19|18|16|16|14|12|11|11|13|15|12|13|14|15|17|17|18|19|0\n3|3|0\n65|65|66|60|59|59|57|57|56|55|54|53|52|51|51|62|50|48|48|47|44|42|42|43|41|40|40|38|38|37|35|35|36|64|36|37|39|39|46|41|45|43|44|45|46|47|49|49|50|63|52|53|54|55|56|58|58|61|60|61|62|63|64|67|66|67|0\n65|64|63|63|66|67|61|61|59|59|57|56|55|55|49|49|48|48|51|47|46|46|53|45|43|42|41|41|40|39|38|37|36|36|69|37|38|39|40|44|42|43|44|45|54|47|52|50|50|51|52|53|54|58|56|57|58|60|60|62|62|68|64|65|66|67|68|69|0\n38|37|36|35|35|34|33|31|30|29|28|25|25|26|22|22|23|21|21|32|24|23|24|27|26|27|28|29|30|31|32|33|34|39|36|37|38|39|0\n70|69|69|68|66|66|65|64|64|72|73|63|62|58|57|57|56|55|53|52|51|50|48|47|46|46|45|45|44|44|60|43|42|41|40|39|39|75|40|41|42|43|61|54|49|47|48|49|50|51|52|53|54|55|56|59|58|59|60|61|62|63|74|65|67|67|68|71|70|71|72|73|74|75|0\n64|62|62|60|60|58|58|57|55|54|54|53|51|51|50|49|49|48|47|45|44|43|42|40|37|37|36|36|39|35|34|34|46|35|41|38|38|39|40|41|42|43|44|45|46|47|48|65|50|52|52|53|56|55|56|57|59|59|61|61|63|63|64|65|0\n30|29|29|28|27|25|22|22|23|24|21|20|19|18|17|17|18|19|20|21|26|23|24|25|26|27|28|31|30|31|0\n84|84|81|81|80|76|76|77|78|75|73|72|71|69|69|68|67|66|66|62|61|60|59|58|56|56|55|54|53|52|52|63|64|51|49|49|48|46|45|45|44|44|83|47|46|47|48|50|50|51|65|53|54|55|57|57|58|59|60|61|62|63|64|65|74|67|68|70|70|71|72|73|74|75|79|77|78|79|80|82|82|83|85|85|0\n21|20|20|19|17|17|16|15|14|13|13|23|14|15|16|18|18|19|22|21|22|23|0\n26|26|27|24|23|23|22|22|20|19|18|16|16|17|21|17|18|19|20|21|29|25|24|25|28|27|28|29|0\n23|22|21|20|18|18|17|16|14|14|13|13|15|15|16|17|19|19|20|21|22|23|0\n32|31|30|30|33|29|28|28|35|27|26|25|25|23|23|22|21|20|20|21|22|24|24|37|26|27|36|29|34|31|32|33|34|35|36|37|0\n23|22|22|21|20|20|25|19|19|27|17|17|16|16|29|18|18|28|26|21|24|23|24|25|26|27|28|29|0\n50|49|49|48|47|46|45|44|44|43|42|41|41|53|40|39|38|37|35|35|34|33|32|31|30|29|29|55|30|31|32|33|34|36|36|37|38|39|40|54|42|43|52|45|46|47|48|51|50|51|52|53|54|55|0\n29|29|28|27|26|26|31|24|24|23|21|20|19|19|18|18|33|22|20|21|22|23|25|25|32|27|28|30|30|31|32|33|0\n49|48|46|46|45|45|50|51|44|43|41|41|40|39|38|37|36|35|33|33|32|29|29|30|28|28|53|31|30|31|32|34|34|35|36|37|38|39|40|42|42|43|44|52|47|47|48|49|50|51|52|53|0\n43|41|39|37|37|38|36|34|34|33|32|29|28|27|27|30|25|25|24|23|23|42|24|26|26|31|28|29|30|31|32|33|35|35|36|40|38|39|40|41|42|43|0\n16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0\n38|37|34|34|35|33|33|32|30|29|28|27|27|24|24|23|22|21|21|26|22|23|25|25|26|31|28|29|30|31|32|39|36|35|36|37|38|39|0\n34|32|31|31|30|29|29|28|26|26|23|23|22|21|20|19|19|25|20|21|22|24|24|25|27|27|28|35|30|33|32|33|34|35|0\n27|26|26|25|25|29|23|23|22|22|20|19|18|17|17|21|18|19|20|21|31|24|24|30|28|27|28|29|30|31|0\n31|30|30|29|28|28|27|25|25|23|22|20|19|19|18|18|24|21|20|21|22|23|24|26|26|27|33|29|32|31|32|33|0\n38|38|35|30|30|31|32|33|29|29|28|26|25|24|24|22|22|21|21|37|23|23|27|25|26|27|28|36|34|31|32|33|34|35|36|37|39|39|0\n60|59|59|58|57|55|54|53|50|50|49|47|47|46|45|45|44|40|40|41|42|38|36|36|37|34|34|33|32|32|56|33|35|35|39|37|38|39|43|41|42|43|44|52|46|48|48|49|51|51|52|53|54|55|56|57|58|61|60|61|0\n60|58|57|55|55|54|52|52|53|51|51|50|49|47|46|45|43|43|42|40|39|39|37|36|36|35|34|33|32|32|48|33|34|35|38|37|38|41|40|41|42|44|44|45|46|47|48|49|50|61|59|53|54|56|56|57|58|59|60|61|0\n9|9|8|7|7|11|8|10|10|11|0\n40|40|41|39|39|43|38|37|35|35|34|33|33|30|29|28|28|27|25|24|24|26|32|25|26|27|31|29|30|31|32|45|34|36|36|37|38|44|42|41|42|43|44|45|0\n57|56|56|55|54|54|52|50|49|46|46|47|45|44|44|43|42|40|39|38|37|37|36|35|34|31|31|32|33|53|32|33|34|35|36|41|38|39|40|41|42|43|51|45|48|47|48|49|50|51|52|53|59|55|58|57|58|59|0\n85|83|83|81|80|80|79|78|75|74|74|76|73|72|70|70|69|69|86|87|65|65|66|67|64|62|61|60|59|58|57|57|56|55|54|53|52|51|50|49|47|47|46|46|89|48|48|49|50|51|52|53|54|55|56|63|58|59|60|61|62|63|64|68|66|67|68|88|71|71|72|73|77|75|76|77|78|79|82|81|82|84|84|85|86|87|88|89|0\n49|48|48|47|46|44|43|42|41|41|40|39|38|38|37|34|34|33|31|30|29|29|28|27|27|36|28|32|30|31|32|33|35|35|36|37|51|39|40|45|42|43|44|45|46|47|50|49|50|51|0\n52|51|50|47|47|48|49|53|46|45|44|44|55|42|41|40|40|39|38|36|35|34|33|33|32|31|30|30|57|31|32|37|34|35|36|37|38|39|43|41|42|43|56|45|46|54|48|49|50|51|52|53|54|55|56|57|0\n39|38|37|37|36|35|34|33|33|31|30|29|28|26|25|25|23|23|22|22|32|24|24|27|26|27|28|29|30|31|32|41|34|35|36|40|38|39|40|41|0\n18|17|17|15|14|12|12|11|11|16|13|13|14|15|16|19|18|19|0\n28|26|26|25|24|24|23|22|20|19|18|17|16|16|21|17|18|19|20|21|22|23|29|25|27|27|28|29|0\n20|19|18|18|17|16|12|12|13|14|15|13|14|15|16|17|21|19|20|21|0\n28|27|26|22|20|20|21|23|19|19|18|18|16|16|17|17|29|25|24|21|22|23|24|25|26|27|28|29|0\n29|27|25|25|23|23|20|20|21|19|18|16|16|17|28|17|18|19|22|21|22|24|24|26|26|27|28|29|0\n38|38|36|35|34|31|30|30|29|27|26|26|28|25|23|23|22|21|21|37|22|24|24|25|33|27|28|29|32|31|32|33|34|35|36|37|39|39|0\n38|37|36|35|34|30|29|28|28|31|32|33|26|23|23|24|22|21|21|27|22|25|24|25|26|27|39|29|30|31|32|33|34|35|36|37|38|39|0\n27|27|26|24|23|23|22|22|21|20|19|19|30|31|18|18|33|32|20|21|29|25|24|25|26|28|28|29|30|31|32|33|0\n8|8|9|7|7|11|10|9|10|11|0\n8|8|9|7|7|11|10|9|10|11|0\n57|54|54|53|51|50|49|48|48|47|47|45|44|38|38|37|37|40|36|34|34|33|31|31|32|42|30|30|46|43|32|33|35|35|36|41|39|39|40|41|42|43|44|45|46|56|52|49|50|51|52|53|55|55|56|57|0\n50|49|48|47|45|44|43|43|42|41|39|39|37|37|38|36|35|31|30|30|32|29|28|27|27|34|28|29|33|31|32|33|34|35|36|51|38|40|40|41|42|46|44|45|46|47|48|49|50|51|0\n51|49|47|46|45|45|44|43|42|41|39|38|35|34|34|36|33|32|32|31|30|29|28|27|27|50|28|29|30|31|40|33|37|35|36|37|38|39|40|41|42|43|44|48|46|47|48|49|50|51|0\n53|53|52|52|48|47|46|45|44|44|49|43|42|39|39|40|38|37|36|34|33|33|32|30|29|29|31|51|30|31|32|35|34|35|36|37|38|41|40|41|42|43|50|45|46|47|48|49|50|51|55|54|54|55|0\n15|15|14|12|12|11|10|10|17|11|13|13|14|16|16|17|0\n40|39|39|37|37|36|36|42|43|34|33|33|32|31|28|27|26|26|25|25|24|24|45|30|29|27|28|29|30|31|32|35|34|35|44|38|38|41|40|41|42|43|44|45|0\n50|49|49|51|44|43|42|41|41|45|46|47|40|39|38|36|36|35|34|32|31|31|30|29|29|28|28|53|30|33|32|33|34|35|37|37|38|39|40|48|42|43|44|45|46|47|48|52|50|51|52|53|0\n51|51|52|47|47|46|45|44|42|40|40|41|39|39|38|37|36|35|33|32|32|30|29|29|28|28|50|31|30|31|34|33|34|35|36|37|38|49|43|41|42|43|44|45|46|48|48|49|50|53|52|53|0\n36|34|34|33|32|31|30|29|28|27|27|24|24|22|22|21|20|20|26|21|23|23|25|25|26|37|28|29|30|31|32|33|35|35|36|37|0\n48|48|47|46|45|44|42|41|40|39|38|37|37|36|36|50|51|34|33|32|32|31|30|29|28|28|53|29|30|31|35|33|34|35|52|43|38|39|40|41|42|43|44|45|46|47|49|49|50|51|52|53|0\n65|64|64|63|63|62|55|54|54|53|53|57|58|52|50|48|48|47|45|44|44|43|42|42|51|40|39|39|38|36|36|35|35|61|37|37|38|41|40|41|60|43|46|45|46|47|49|49|50|51|52|59|56|55|56|57|58|59|60|61|62|67|66|65|66|67|0\n11|8|7|7|9|10|8|9|10|11|0\n47|46|43|43|40|38|38|37|37|41|36|35|34|33|32|30|30|29|26|25|25|27|28|45|26|27|28|29|31|31|32|33|34|35|36|42|39|39|40|41|42|44|44|45|46|47|0\n27|24|24|23|21|21|19|19|18|16|16|15|15|26|17|17|18|20|20|22|22|23|25|25|26|27|0\n8|8|6|6|7|7|9|9|0\n40|39|38|37|36|35|34|34|41|32|31|30|28|28|27|26|26|25|24|23|23|43|24|25|33|27|29|29|30|31|32|33|42|35|36|37|38|39|40|41|42|43|0\n39|39|38|35|35|36|34|33|32|32|30|29|27|27|26|24|24|23|22|22|31|23|25|25|26|28|28|29|30|31|41|33|34|37|36|37|38|40|40|41|0\n27|25|22|20|19|19|18|17|17|23|16|16|15|15|26|24|18|21|20|21|22|23|24|25|26|27|0\n37|36|36|35|33|30|30|31|29|29|28|26|26|25|25|23|22|21|21|24|22|23|24|39|27|27|28|34|32|31|32|33|34|35|38|37|38|39|0\n50|50|48|47|45|44|43|42|41|41|40|37|36|35|34|34|33|33|32|30|30|28|28|27|27|49|29|29|31|31|32|39|38|35|36|37|38|39|40|46|42|43|44|45|46|47|48|49|51|51|0\n59|59|58|57|57|55|53|52|51|49|48|48|50|46|46|45|43|43|38|37|37|39|36|35|34|33|32|32|41|42|56|33|34|35|36|40|38|39|40|41|42|44|44|45|47|47|54|49|50|51|52|53|54|55|56|61|58|60|60|61|0\n11|9|7|7|8|10|8|9|10|11|0\n41|40|34|33|32|32|31|30|28|28|29|36|37|26|25|25|24|23|22|22|39|23|24|27|26|27|38|29|30|31|35|33|34|35|36|37|38|39|40|41|0\n29|27|27|26|25|25|30|31|24|23|22|20|19|19|18|18|33|21|20|21|22|23|24|32|26|28|28|29|30|31|32|33|0\n37|36|35|34|33|33|32|30|28|28|27|24|24|25|26|23|22|21|21|39|22|23|31|25|26|27|29|29|30|31|32|38|34|35|36|37|38|39|0\n37|34|34|33|33|36|32|27|27|28|29|30|26|26|24|23|21|21|22|25|22|23|24|25|39|31|28|29|30|31|32|38|35|35|36|37|38|39|0\n41|40|39|38|38|37|36|33|33|34|31|31|30|29|28|27|27|26|24|23|23|25|24|25|26|43|28|29|30|32|32|35|34|35|36|37|42|39|40|41|42|43|0\n24|23|22|20|19|16|16|17|15|14|14|21|25|15|18|17|18|19|20|21|22|23|24|25|0\n30|30|31|29|28|26|26|25|23|23|22|21|20|20|18|18|19|19|33|21|22|24|24|25|27|27|28|29|32|31|32|33|0\n29|26|26|25|25|28|24|23|22|19|19|20|18|17|17|31|18|21|20|21|22|23|24|30|27|27|28|29|30|31|0\n45|40|39|39|38|36|35|35|34|31|31|32|30|30|42|27|27|28|26|25|24|24|44|25|26|29|28|29|43|33|32|33|34|37|36|37|38|41|40|41|42|43|44|45|0\n45|43|40|40|39|38|37|36|36|35|34|33|32|32|31|29|29|25|25|26|24|24|28|27|26|27|28|30|30|31|44|33|34|35|42|37|38|39|41|41|42|43|44|45|0\n44|44|41|40|39|38|38|36|35|35|34|32|32|31|30|29|28|27|26|24|24|25|43|25|26|27|28|29|30|31|33|33|34|37|36|37|42|39|40|41|42|43|45|45|0\n37|33|32|31|31|34|30|29|28|27|26|25|22|22|23|21|20|20|36|21|24|23|24|25|26|27|28|29|30|35|32|33|34|35|36|37|0\n23|21|20|17|17|16|16|15|14|13|13|22|14|15|19|18|18|19|20|21|22|23|0\n54|53|52|51|51|49|47|47|46|45|42|41|39|39|38|37|36|36|43|34|34|33|32|30|30|29|29|50|31|31|32|33|35|35|44|37|38|40|40|41|42|43|44|45|46|48|48|49|50|55|52|53|54|55|0\n47|45|44|43|42|38|38|37|36|35|35|40|31|30|30|29|29|33|28|27|26|25|25|46|26|27|28|34|32|31|32|33|34|41|36|37|39|39|40|41|42|43|44|45|46|47|0\n54|52|51|50|49|49|48|47|46|45|44|43|43|55|41|39|39|40|38|36|36|35|35|57|33|33|32|31|31|59|32|34|34|58|37|37|38|42|40|41|42|56|44|45|46|47|48|53|50|51|52|53|54|55|56|57|58|59|0\n26|25|24|24|23|21|21|19|17|16|16|15|15|20|18|17|18|19|20|22|22|23|27|25|26|27|0\n26|25|24|23|23|27|22|21|20|19|18|18|16|16|17|17|29|19|20|21|22|28|24|25|26|27|28|29|0\n73|72|70|69|66|65|65|64|62|61|59|58|58|60|63|57|56|54|54|53|50|50|42|41|41|43|44|40|40|46|39|39|48|49|38|38|71|52|47|45|42|43|44|45|46|47|48|49|51|51|52|53|55|55|56|57|68|59|60|61|62|63|64|67|66|67|68|69|70|71|72|73|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n17|16|15|14|14|13|11|11|12|19|12|13|18|15|16|17|18|19|0\n42|41|41|40|40|44|38|38|37|35|34|34|33|31|30|30|32|46|29|27|26|25|25|28|26|27|28|29|47|31|32|33|36|35|36|37|39|39|45|43|42|43|44|45|46|47|0\n9|8|6|6|7|7|8|9|0\n73|73|74|72|71|70|70|67|66|65|65|62|62|63|61|61|69|60|58|57|57|56|54|54|55|78|79|53|51|51|50|48|48|47|45|45|44|43|42|42|81|43|44|46|46|47|49|49|50|52|52|53|80|55|56|59|58|59|60|77|64|63|64|68|66|67|68|69|76|71|72|75|74|75|76|77|78|79|80|81|0\n69|69|68|67|63|62|61|61|60|60|65|59|59|58|56|56|53|44|44|42|42|43|46|41|41|48|40|40|50|51|39|38|38|37|37|55|54|39|52|49|47|43|45|45|46|47|48|49|50|51|52|53|54|55|57|57|58|71|66|64|62|63|64|65|66|67|68|70|70|71|0\n28|27|26|25|24|22|22|23|21|19|19|17|16|16|18|17|18|20|20|21|29|23|24|25|26|27|28|29|0\n31|31|30|30|33|28|27|27|26|26|35|24|23|23|22|20|20|21|37|21|22|25|24|25|36|29|28|29|34|32|32|33|34|35|36|37|0\n70|69|68|67|67|66|65|63|60|58|57|57|56|56|61|54|54|53|51|50|50|49|45|44|44|43|42|42|47|39|38|38|40|37|37|64|41|39|40|41|48|43|46|45|46|47|48|49|52|51|52|53|55|55|62|59|58|59|60|61|62|63|64|65|66|71|68|69|70|71|0\n30|28|27|27|26|24|24|25|23|22|20|18|18|17|17|21|19|19|20|21|22|23|31|25|26|29|28|29|30|31|0\n18|17|16|16|19|14|14|13|12|12|21|13|15|15|20|17|18|19|20|21|0\n24|23|22|21|20|19|19|18|17|16|14|14|15|15|16|17|18|25|20|21|22|23|24|25|0\n49|45|44|44|43|41|40|40|39|37|36|36|35|34|34|47|33|29|29|30|27|26|26|28|32|27|28|31|30|31|32|33|48|35|38|37|38|39|42|41|42|43|46|45|46|47|48|49|0\n36|36|35|34|31|31|30|27|26|25|25|28|24|22|22|21|20|20|33|21|23|23|24|29|26|27|28|29|30|32|32|33|34|35|37|37|0\n36|35|34|33|31|31|30|29|28|28|37|27|26|24|24|23|21|21|22|39|22|23|25|25|26|27|38|29|30|32|32|33|34|35|36|37|38|39|0\n37|35|35|34|33|33|32|30|30|31|39|29|28|26|26|25|24|22|22|23|41|23|24|25|27|27|28|29|40|31|32|38|34|36|36|37|38|39|40|41|0\n50|47|47|48|46|42|42|43|41|41|40|39|38|35|35|36|34|33|33|32|31|30|28|27|27|29|28|29|30|31|32|51|34|37|36|37|38|39|40|45|44|43|44|45|46|49|48|49|50|51|0\n32|31|31|28|28|27|26|25|23|22|22|20|20|19|18|18|30|19|21|21|24|23|24|25|26|27|29|29|30|33|32|33|0\n63|61|59|59|60|58|57|57|56|55|55|52|52|51|46|46|43|42|42|41|40|39|38|38|37|37|48|36|34|34|35|50|54|35|36|49|45|39|40|41|44|43|44|45|47|47|48|49|50|51|53|53|54|65|56|64|58|62|60|61|62|63|64|65|0\n66|63|62|61|61|64|59|58|58|57|56|55|53|53|52|52|51|49|49|47|43|43|42|41|40|39|39|45|38|36|36|35|35|48|37|37|38|46|40|41|42|44|44|45|46|47|48|50|50|51|67|54|54|55|56|57|60|59|60|65|62|63|64|65|66|67|0\n60|59|59|56|55|53|52|52|51|51|57|47|47|48|46|45|44|44|43|43|62|63|42|41|40|38|37|36|36|35|34|34|65|35|39|37|38|39|40|41|42|64|50|45|46|49|48|49|50|58|54|53|54|55|56|57|58|61|60|61|62|63|64|65|0\n84|83|80|80|81|78|77|76|76|75|74|73|73|71|70|68|67|66|65|64|64|63|62|61|60|55|55|56|54|53|53|58|51|50|50|49|47|47|46|45|44|44|72|45|46|48|48|49|52|51|52|59|54|57|56|57|58|59|60|61|62|63|69|65|66|67|68|69|70|71|72|85|74|75|79|77|78|79|82|81|82|83|84|85|0\n41|39|37|36|34|33|33|32|32|31|28|28|29|27|26|23|23|24|22|22|40|25|24|25|26|27|30|29|30|31|38|35|34|35|36|37|38|39|40|41|0\n28|27|26|26|29|25|24|23|22|20|18|18|19|17|17|31|21|19|20|21|22|23|24|25|30|27|28|29|30|31|0\n29|27|27|26|26|25|23|23|22|21|20|19|19|17|17|18|18|31|20|21|22|24|24|25|30|28|28|29|30|31|0\n34|34|33|32|31|31|36|37|30|29|28|24|24|25|26|23|22|21|21|39|22|23|27|25|26|27|28|29|30|38|32|33|35|35|36|37|38|39|0\n37|36|36|38|35|34|33|32|32|40|31|29|27|27|26|25|22|22|23|24|30|23|24|25|26|28|28|29|30|31|41|33|34|35|39|37|38|39|40|41|0\n8|6|6|7|9|7|8|9|0\n54|53|52|51|50|50|49|48|45|42|42|43|41|40|39|38|37|37|36|33|32|32|34|31|30|29|29|47|30|31|35|33|34|35|36|46|38|39|40|41|44|43|44|45|46|47|48|49|55|51|52|53|54|55|0\n52|51|50|49|48|48|53|46|45|44|43|41|41|40|38|38|37|36|35|35|34|33|32|30|30|29|29|55|31|31|32|33|34|47|36|37|39|39|40|42|42|43|44|45|46|47|54|49|50|51|52|53|54|55|0\n28|28|26|24|24|23|21|20|19|18|18|17|16|16|27|17|22|19|20|21|22|23|25|25|26|27|29|29|0\n31|30|30|29|28|28|27|24|24|25|23|22|22|21|20|19|19|35|20|21|34|23|26|25|26|27|33|29|32|31|32|33|34|35|0\n44|44|43|42|42|41|39|39|37|37|38|47|48|34|33|32|32|31|29|29|28|27|26|26|36|27|28|30|30|31|35|33|34|35|36|49|38|40|40|41|46|43|45|45|46|47|48|49|0\n19|17|13|13|14|15|12|11|11|18|12|16|14|15|16|17|18|19|0\n30|30|28|27|26|24|24|23|20|20|19|19|18|17|17|29|18|22|21|21|22|23|25|25|26|27|28|29|31|31|0\n47|45|44|43|41|40|40|37|36|35|34|34|38|33|31|31|29|29|28|27|26|25|25|46|26|27|28|30|30|32|32|33|39|35|36|37|38|39|42|41|42|43|44|45|46|47|0\n44|43|43|45|40|40|41|38|38|36|36|35|33|33|32|31|29|29|28|26|26|25|25|47|27|27|28|30|30|31|32|34|34|35|37|37|39|39|42|41|42|46|44|45|46|47|0\n59|58|57|56|55|55|54|52|51|50|48|48|47|46|46|53|61|45|44|43|42|41|40|37|36|36|35|34|34|33|33|63|39|35|38|37|38|39|40|41|42|43|44|45|62|47|49|49|50|51|52|53|54|60|56|57|58|59|60|61|62|63|0\n36|33|33|34|35|31|28|27|27|29|26|25|24|23|22|20|20|21|32|21|22|23|24|25|26|30|28|29|30|31|32|37|34|35|36|37|0\n21|18|17|17|16|15|14|13|12|12|20|13|14|15|16|19|18|19|20|21|0\n22|21|20|20|23|18|17|17|16|15|14|14|25|15|16|19|18|19|24|21|22|23|24|25|0\n20|19|18|16|16|17|15|14|14|13|13|23|22|15|21|17|18|19|20|21|22|23|0\n74|73|73|67|65|64|64|66|63|62|61|61|69|70|60|59|58|54|53|52|51|51|55|56|49|48|47|46|46|45|43|43|42|41|40|39|39|72|40|41|42|44|44|45|50|47|48|49|50|57|52|53|54|55|56|57|58|59|60|71|62|63|68|65|66|67|68|69|70|71|72|75|74|75|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n11|9|9|10|12|8|8|13|10|11|12|13|0\n35|33|33|32|31|29|29|30|28|27|26|24|23|22|22|21|20|20|37|21|25|23|24|25|26|27|28|36|30|31|32|34|34|35|36|37|0\n27|26|25|24|23|22|22|21|17|17|18|19|16|16|29|20|18|19|20|21|28|23|24|25|26|27|28|29|0\n22|21|20|19|17|17|16|15|15|14|13|13|14|23|16|18|18|19|20|21|22|23|0\n30|29|28|27|27|26|24|23|22|21|21|20|18|17|17|19|18|19|20|25|22|23|24|25|26|31|28|29|30|31|0\n46|46|47|45|45|41|39|38|38|37|37|42|36|33|33|34|32|31|29|29|28|27|26|26|44|27|28|30|30|31|32|35|34|35|36|43|40|39|40|41|42|43|44|49|48|47|48|49|0\n53|53|54|55|52|52|50|49|48|48|45|43|43|44|46|42|40|38|37|37|39|36|35|33|31|31|32|30|30|34|32|33|34|35|36|41|38|39|40|41|42|47|44|45|46|47|51|49|50|51|57|56|54|55|56|57|0\n32|32|29|23|23|24|22|21|21|26|27|20|20|19|18|18|31|19|30|28|22|25|24|25|26|27|28|29|30|31|33|33|0\n29|28|26|26|25|24|22|20|20|19|18|17|16|16|23|17|18|19|21|21|22|23|24|25|27|27|28|29|0\n17|14|12|12|11|10|10|15|16|11|13|13|14|15|16|17|0\n45|44|43|41|41|42|40|39|38|38|47|36|36|35|34|33|32|29|28|27|27|30|26|26|49|31|28|29|30|31|32|33|34|35|37|37|48|39|40|46|42|43|44|45|46|47|48|49|0\n41|41|42|39|38|35|33|32|32|31|30|30|36|29|28|26|26|25|24|23|23|40|24|25|27|27|28|29|37|31|34|33|34|35|36|37|38|39|40|43|42|43|0\n20|19|18|16|15|15|14|13|12|12|21|13|14|17|16|17|18|19|20|21|0\n39|39|38|38|41|37|36|35|34|33|32|31|29|28|28|27|26|24|24|23|23|43|25|25|26|27|30|29|30|31|32|33|34|35|36|37|42|40|40|41|42|43|0\n23|23|24|18|18|19|20|17|16|15|14|14|22|15|16|17|21|19|20|21|22|25|24|25|0\n53|52|52|51|50|49|47|47|48|55|41|40|40|42|39|37|37|35|35|34|34|44|45|33|32|31|30|30|57|31|32|33|46|36|36|38|38|39|43|41|42|43|44|45|46|56|48|49|50|51|54|53|54|55|56|57|0\n52|51|50|49|48|47|46|45|45|44|43|40|39|39|38|37|36|34|34|33|31|30|30|29|28|28|42|29|32|31|32|33|35|35|36|37|38|41|40|41|42|43|44|53|46|47|48|49|50|51|52|53|0\n53|51|50|49|48|46|46|45|41|39|39|38|37|36|35|33|33|34|42|43|32|31|29|29|28|28|52|30|30|31|32|44|34|35|36|37|38|40|40|41|42|43|44|45|47|47|48|49|50|51|52|53|0\n27|25|24|22|22|21|20|20|19|18|15|15|16|17|16|17|18|19|26|21|23|23|24|25|26|27|0\n80|80|81|79|78|76|75|75|77|74|72|72|69|68|67|66|66|65|63|62|61|60|59|59|58|57|55|55|52|52|53|51|50|49|48|47|45|45|44|43|43|71|44|46|46|47|48|49|50|51|54|53|54|56|56|57|58|64|60|61|62|63|64|65|70|67|68|69|70|71|73|73|74|83|76|77|78|79|82|81|82|83|0\n53|51|49|49|48|46|45|45|44|43|41|40|39|39|38|36|35|35|34|33|32|31|29|29|28|28|52|30|30|31|32|33|34|37|36|37|38|42|40|41|42|43|44|47|46|47|48|50|50|51|52|53|0\n45|42|40|40|39|37|37|38|36|35|34|30|30|29|29|28|27|27|26|25|24|24|44|25|26|33|28|32|31|31|32|33|34|35|36|43|38|39|41|41|42|43|44|45|0\n37|36|35|32|32|33|30|30|29|28|28|38|39|27|24|24|23|22|22|26|41|23|25|25|26|27|40|29|31|31|34|33|34|35|36|37|38|39|40|41|0\n16|16|14|13|10|10|11|12|15|11|12|13|14|15|17|17|0\n42|42|41|40|39|38|37|37|44|45|34|34|33|32|31|29|29|30|28|27|26|25|25|47|26|27|28|36|30|31|32|33|35|35|36|46|38|39|40|41|43|43|44|45|46|47|0\n14|14|12|10|10|9|9|13|11|11|12|13|15|15|0\n15|15|14|14|17|12|12|11|11|19|13|13|18|16|16|17|18|19|0\n23|23|22|21|20|20|19|18|17|15|15|14|14|16|16|17|18|19|25|21|22|24|24|25|0\n23|22|21|21|20|19|19|25|17|17|16|15|15|27|16|18|18|26|20|24|22|23|24|25|26|27|0\n33|31|30|29|26|25|25|24|23|22|21|20|20|19|18|18|32|19|28|21|22|23|24|27|26|27|28|29|30|31|32|33|0\n54|53|49|49|48|47|46|44|44|43|42|40|40|38|37|37|36|36|51|35|34|34|55|56|57|33|32|31|31|59|32|33|58|35|52|39|38|39|41|41|42|43|45|45|46|47|48|50|50|51|52|53|54|55|56|57|58|59|0\n8|8|9|7|7|11|10|9|10|11|0\n32|28|28|27|26|25|24|24|30|22|21|21|20|19|18|18|33|19|20|23|22|23|31|25|26|27|29|29|30|31|32|33|0\n49|47|43|42|41|41|44|45|39|38|38|37|36|35|32|32|31|30|29|29|28|27|26|26|48|27|28|34|30|31|33|33|34|35|36|37|40|39|40|46|42|43|44|45|46|47|48|49|0\n22|22|21|19|18|18|17|15|13|13|14|16|14|15|16|17|20|19|20|21|23|23|0\n28|27|27|24|24|23|22|21|20|19|18|17|16|16|26|17|18|19|20|21|22|23|25|25|26|29|28|29|0\n26|25|24|23|23|22|21|19|18|17|16|15|15|20|16|17|18|19|20|21|22|27|24|25|26|27|0\n63|62|61|59|59|58|57|57|64|65|56|54|53|52|49|49|48|47|47|46|45|44|43|43|42|40|40|39|38|37|36|35|35|67|36|37|38|39|41|41|42|55|44|45|46|51|48|50|50|51|52|53|54|55|56|66|58|60|60|61|62|63|64|65|66|67|0\n19|15|14|14|13|13|12|11|11|18|12|17|16|15|16|17|18|19|0\n67|67|66|62|61|60|59|59|63|57|57|56|51|51|50|50|53|54|49|48|47|45|44|44|43|42|42|65|41|37|37|38|36|36|40|39|38|39|40|41|69|43|46|45|46|47|48|49|55|52|52|53|54|55|56|58|58|64|60|61|62|63|64|65|66|68|68|69|0\n44|43|42|41|40|37|36|36|38|35|34|34|33|31|31|29|27|27|26|25|24|24|30|25|26|28|28|29|30|32|32|33|45|35|39|37|38|39|40|41|42|43|44|45|0\n86|81|81|80|80|83|78|78|79|77|76|75|74|73|71|71|72|70|68|68|66|65|64|62|61|61|60|59|56|55|54|54|57|53|52|51|50|49|48|47|46|45|45|67|46|47|48|49|50|51|52|53|58|55|56|57|58|59|60|63|62|63|64|65|66|67|69|69|70|87|72|73|74|75|76|77|85|79|84|82|82|83|84|85|86|87|0\n46|44|42|41|41|43|40|38|38|37|36|35|34|34|33|32|31|29|27|27|26|25|25|30|26|28|28|29|30|31|32|33|47|35|36|37|39|39|40|45|42|43|44|45|46|47|0\n18|16|16|15|15|13|11|11|12|14|12|13|14|19|17|17|18|19|0\n28|28|29|26|25|24|24|23|22|20|20|19|18|17|17|31|18|19|21|21|22|23|27|25|26|27|30|29|30|31|0\n18|17|16|15|15|14|13|12|11|11|12|13|14|19|16|17|18|19|0\n60|59|58|57|56|55|53|51|50|50|52|54|61|48|47|46|46|45|42|42|41|40|40|38|38|36|35|35|34|33|33|63|34|37|36|37|39|39|44|41|43|43|44|45|49|47|48|49|62|51|52|53|54|55|56|57|58|59|60|61|62|63|0\n45|44|44|42|42|41|40|39|37|37|35|35|31|31|32|33|29|28|26|26|27|25|25|47|30|27|28|29|30|34|32|33|34|36|36|38|38|39|40|41|43|43|46|45|46|47|0\n41|39|34|33|33|35|32|31|31|37|29|28|27|27|26|25|24|23|22|22|40|23|24|25|26|30|28|29|30|38|32|36|34|35|36|37|38|39|40|41|0\n22|21|20|18|18|19|16|15|14|13|13|17|14|15|16|17|23|19|20|21|22|23|0\n31|29|28|28|27|25|22|21|21|23|20|19|18|17|17|26|18|19|20|24|22|23|24|25|26|27|30|29|30|31|0\n27|25|23|23|22|21|20|19|17|17|16|15|15|26|16|18|18|19|20|21|22|24|24|25|26|27|0\n38|38|39|40|41|42|35|35|36|34|34|44|45|31|31|32|30|29|28|27|26|25|25|47|26|27|28|29|30|33|32|33|46|37|36|37|43|39|40|41|42|43|44|45|46|47|0\n56|55|54|53|51|51|50|49|48|46|46|47|45|41|41|40|40|39|38|37|36|36|33|32|31|31|30|30|35|34|32|33|34|35|44|37|38|39|43|42|42|43|44|45|57|47|48|49|50|52|52|53|54|55|56|57|0\n41|37|36|36|38|30|30|31|32|33|34|28|27|27|26|25|24|23|22|22|40|23|24|25|26|29|28|29|35|31|32|33|34|35|39|37|38|39|40|41|0\n45|42|41|41|38|36|36|34|34|33|32|32|39|31|30|29|27|26|25|24|24|28|44|25|26|27|28|29|30|31|40|33|35|35|37|37|38|39|40|43|42|43|44|45|0\n3|3|0\n27|26|26|25|23|23|22|17|17|16|16|19|20|21|29|18|18|19|20|21|22|24|24|25|28|27|28|29|0\n54|53|52|52|49|48|48|47|45|43|43|44|42|41|38|37|36|35|34|33|33|39|32|31|30|29|29|51|30|31|32|40|34|35|36|37|38|39|40|41|42|46|44|45|46|47|50|49|50|51|55|53|54|55|0\n39|36|36|35|35|38|34|33|32|31|30|30|28|27|26|25|24|23|22|22|29|23|24|25|26|27|28|29|41|31|32|33|34|40|37|37|38|39|40|41|0\n41|40|39|38|37|36|35|35|34|33|32|31|30|29|29|43|28|27|25|25|24|24|45|26|26|27|28|44|30|31|32|33|34|42|36|37|38|39|40|41|42|43|44|45|0\n80|75|74|73|72|71|71|68|67|66|64|64|65|69|70|77|63|61|61|60|60|59|58|57|54|53|52|52|55|51|50|49|48|47|47|46|44|43|42|42|45|43|44|45|46|81|48|49|50|51|56|53|54|55|56|57|58|59|79|62|62|63|78|65|66|67|68|69|70|76|72|73|74|75|76|77|78|79|80|81|0\n17|13|13|14|15|12|12|11|11|19|18|16|14|15|16|17|18|19|0\n58|57|54|54|53|53|51|50|48|48|49|47|47|59|46|45|41|41|40|39|39|43|35|34|33|32|32|36|37|38|61|33|34|35|36|37|38|44|40|42|42|43|44|45|46|60|52|49|50|51|52|56|55|55|56|57|58|59|60|61|0\n18|18|17|16|15|14|13|11|11|12|12|13|14|15|16|17|19|19|0\n31|29|28|26|26|24|21|20|20|22|19|18|18|17|17|30|25|19|23|21|22|23|24|25|27|27|28|29|30|31|0\n38|38|39|37|34|33|33|35|32|31|31|30|29|27|26|25|23|23|22|22|28|24|24|25|26|27|28|29|30|41|32|36|34|35|36|37|40|39|40|41|0\n26|25|24|24|23|20|18|18|19|17|17|15|15|16|16|22|21|19|20|21|22|23|27|25|26|27|0\n12|9|9|8|8|11|13|10|10|11|12|13|0\n33|32|31|30|29|28|28|27|26|26|35|25|24|23|22|20|20|21|37|21|22|23|24|25|36|27|34|29|30|31|32|33|34|35|36|37|0\n48|47|47|49|50|46|45|44|43|42|42|52|40|39|38|36|34|34|35|33|32|30|29|29|28|28|41|31|30|31|32|33|37|35|36|37|38|39|40|41|53|43|44|45|46|51|48|49|50|51|52|53|0\n27|26|23|23|22|22|19|19|18|17|16|15|15|21|16|17|18|20|20|21|25|24|24|25|26|27|0\n9|9|8|7|7|11|8|10|10|11|0\n35|33|33|34|32|31|31|28|27|27|26|24|23|23|22|20|20|21|30|21|22|25|24|25|26|29|28|29|30|37|32|36|34|35|36|37|0\n44|43|42|41|40|39|38|37|36|36|35|33|33|30|28|28|27|27|26|25|24|24|32|25|26|31|29|29|30|31|32|34|34|35|45|37|38|39|40|41|42|43|44|45|0\n78|78|77|72|71|69|69|67|66|66|65|65|73|74|64|63|61|59|58|57|56|56|60|55|53|52|52|51|50|49|45|45|44|43|43|47|42|41|41|76|42|48|44|46|46|47|48|49|50|51|54|53|54|55|62|57|58|59|60|61|62|63|64|75|68|67|68|70|70|71|72|73|74|75|76|77|79|79|0\n25|24|24|23|23|20|20|19|18|17|16|15|15|22|16|17|18|19|21|21|22|27|26|25|26|27|0\n29|27|25|24|23|22|22|21|20|19|18|17|16|16|28|17|18|19|20|21|26|23|24|25|26|27|28|29|0\n33|32|31|30|30|29|28|27|26|25|24|24|22|21|20|19|19|23|20|21|22|23|35|25|26|27|28|29|34|31|32|33|34|35|0\n39|37|36|35|34|32|32|28|28|27|26|26|30|24|23|22|21|21|25|38|22|23|24|25|31|27|29|29|30|31|33|33|34|35|36|37|38|39|0\n19|18|16|14|14|13|12|11|11|17|12|13|15|15|16|17|18|19|0\n19|17|16|16|15|14|12|11|11|13|12|13|14|15|18|17|18|19|0\n43|36|36|37|38|39|34|34|33|33|32|30|30|29|27|27|26|25|24|23|23|42|24|25|26|28|28|29|31|31|32|41|35|35|40|37|38|39|40|41|42|43|0\n22|21|19|19|18|16|15|15|14|13|13|23|14|17|16|17|18|20|20|21|22|23|0\n26|26|27|23|23|22|21|20|20|19|17|17|16|16|29|18|18|19|25|21|22|24|24|25|28|27|28|29|0\n38|37|36|36|34|33|31|31|29|29|28|26|25|23|23|24|22|21|21|35|22|27|24|25|26|27|28|30|30|32|32|33|34|35|39|37|38|39|0\n4|4|5|5|0\n33|31|27|26|26|28|29|25|24|23|22|21|20|18|18|19|32|19|20|21|22|23|24|25|30|27|28|29|30|31|32|33|0\n9|6|6|7|8|7|8|9|0\n49|47|47|45|45|44|43|42|42|50|51|40|39|39|38|35|35|36|34|32|31|31|30|29|28|28|53|29|30|33|32|33|34|37|36|37|38|41|40|41|52|43|44|46|46|48|48|49|50|51|52|53|0\n13|13|14|11|10|9|9|12|10|11|12|15|14|15|0\n28|28|26|25|24|22|21|21|20|19|17|17|16|16|27|18|18|19|20|23|22|23|24|25|26|27|29|29|0\n51|49|47|47|46|45|42|41|41|43|40|38|38|36|35|34|34|33|32|28|28|29|30|27|27|50|31|29|30|31|32|33|37|35|36|37|39|39|40|44|42|43|44|45|46|48|48|49|50|51|0\n20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n28|28|26|25|23|21|20|20|22|19|18|17|16|16|27|17|18|19|24|21|22|23|24|25|26|27|29|29|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n95|93|86|86|87|85|84|81|81|79|78|78|76|76|75|74|74|73|73|89|90|91|72|71|69|68|68|67|66|65|64|63|62|60|58|56|56|57|59|54|54|52|52|51|50|49|49|94|50|51|53|53|55|55|61|57|58|59|60|61|62|63|64|65|66|67|70|69|70|71|72|92|83|75|77|77|80|79|80|82|82|83|84|85|88|87|88|89|90|91|92|93|94|95|0\n61|60|58|58|57|56|56|62|63|54|53|52|50|50|49|48|47|46|45|45|44|41|41|40|40|38|37|37|36|34|34|35|65|35|36|39|38|39|43|42|42|43|44|55|46|47|48|49|51|51|52|53|54|55|64|57|59|59|60|61|62|63|64|65|0\n29|28|28|27|26|25|25|23|21|19|19|20|18|17|17|24|18|22|20|21|22|23|24|31|26|27|30|29|30|31|0\n31|31|30|28|24|23|22|22|25|26|27|21|20|18|18|19|33|19|20|21|29|23|24|25|26|27|28|29|30|32|32|33|0\n72|71|71|70|69|66|66|65|63|63|62|61|59|57|57|56|55|55|52|50|49|49|48|48|53|47|45|44|44|43|42|41|40|39|38|38|68|39|40|41|42|43|46|45|46|47|54|51|50|51|52|53|54|60|56|58|58|59|60|61|62|64|64|65|67|67|68|69|70|73|72|73|0\n30|29|28|28|27|25|25|23|22|19|18|17|17|20|21|24|18|19|20|21|22|23|24|26|26|27|31|29|30|31|0\n44|44|42|38|38|39|40|35|35|34|33|33|32|31|30|29|28|27|26|25|24|24|43|25|26|27|28|29|30|31|32|37|34|36|36|37|41|39|40|41|42|43|45|45|0\n71|70|69|69|68|67|66|65|64|63|63|62|58|57|57|59|56|55|55|53|49|48|48|47|46|45|45|51|43|43|42|39|39|40|38|38|54|41|40|41|42|44|44|52|46|47|50|49|50|51|52|53|54|61|56|60|58|59|60|61|62|73|64|65|66|67|68|72|70|71|72|73|0\n42|40|39|39|38|36|35|35|34|32|31|29|29|30|28|27|26|25|24|23|23|43|24|25|26|27|28|33|30|31|32|33|34|37|36|37|38|41|40|41|42|43|0\n49|48|48|47|46|45|45|44|41|41|42|39|39|37|37|36|35|33|32|31|31|30|30|29|28|28|53|29|52|34|32|33|34|35|36|38|38|40|40|43|42|43|44|51|46|47|50|49|50|51|52|53|0\n59|58|58|57|56|55|55|52|52|50|50|49|46|45|45|47|44|43|42|40|40|39|38|37|36|35|33|32|32|34|54|33|34|35|36|37|38|39|41|41|42|43|44|48|46|47|48|49|51|51|53|53|54|61|56|57|60|59|60|61|0\n55|54|53|51|51|47|46|46|48|49|44|42|42|43|40|40|39|38|36|36|35|33|32|31|31|30|29|29|30|34|32|33|34|35|37|37|38|39|41|41|45|43|44|45|50|47|48|49|50|52|52|53|54|55|0\n62|61|60|58|57|57|56|53|52|52|54|51|51|50|49|47|47|46|43|42|42|41|40|39|38|37|36|35|34|33|33|45|34|35|36|37|38|39|40|41|44|43|44|45|46|48|48|49|50|63|55|53|54|55|56|59|58|59|60|61|62|63|0\n54|53|52|52|51|49|49|43|43|42|41|40|39|39|45|46|38|37|36|35|34|33|32|31|29|29|30|48|30|31|32|33|34|35|36|37|38|47|40|41|42|44|44|45|46|47|48|50|50|51|55|53|54|55|0\n22|20|20|21|19|17|16|15|14|13|13|18|14|15|16|17|18|19|23|21|22|23|0\n27|27|28|25|23|21|21|22|20|19|17|17|16|16|26|18|18|19|20|24|22|23|24|25|26|29|28|29|0\n57|54|54|53|53|50|50|47|46|46|48|45|42|41|39|39|38|37|37|36|33|33|34|35|32|31|30|30|52|31|32|44|34|35|36|43|38|40|40|41|42|43|44|45|49|47|48|49|51|51|52|56|55|55|56|57|0\n55|54|53|53|52|51|50|49|48|48|47|46|45|43|41|41|40|36|36|35|34|34|38|32|32|31|30|30|44|31|33|33|39|35|37|37|38|39|40|42|42|43|44|45|46|47|57|49|50|51|52|56|54|55|56|57|0\n10|8|8|7|7|11|9|9|10|11|0\n63|62|62|61|61|59|58|56|56|55|54|52|52|51|48|48|49|47|46|45|42|42|41|40|39|39|38|37|35|35|34|34|60|36|36|37|38|44|40|41|43|43|44|45|46|47|50|49|50|51|53|53|54|55|57|57|58|59|60|65|64|63|64|65|0\n42|42|39|36|35|35|34|33|33|31|30|30|29|27|27|26|26|25|24|23|23|41|24|25|40|28|28|29|32|31|32|38|34|37|36|37|38|39|40|41|43|43|0\n64|64|63|61|61|59|58|55|54|53|52|52|56|49|49|48|46|46|45|43|43|44|42|40|40|38|36|36|37|35|34|34|60|35|39|37|38|39|41|41|42|51|44|45|47|47|48|50|50|51|57|53|54|55|56|57|58|59|60|62|62|63|65|65|0\n48|47|46|44|44|43|41|41|40|39|39|38|36|36|33|33|31|31|30|29|28|26|26|27|35|27|28|29|30|32|32|34|34|35|37|37|38|49|40|42|42|43|45|45|46|47|48|49|0\n55|54|54|56|53|51|51|52|58|59|45|45|44|44|47|43|41|41|40|39|38|37|37|49|36|33|33|34|32|32|61|35|34|35|36|50|38|39|40|42|42|43|48|46|46|47|48|49|50|60|52|53|57|55|56|57|58|59|60|61|0\n29|28|27|25|25|26|24|23|23|21|20|19|19|18|17|17|18|22|20|21|22|31|24|30|26|27|28|29|30|31|0\n36|35|34|33|31|31|32|37|29|29|27|26|26|25|24|23|22|21|21|39|22|23|24|25|28|27|28|30|30|38|32|33|34|35|36|37|38|39|0\n31|30|29|28|28|32|33|27|25|25|23|23|22|19|19|20|21|35|20|21|22|24|24|26|26|27|34|29|30|31|32|33|34|35|0\n29|25|20|20|21|22|23|19|18|18|26|17|16|16|28|17|27|19|24|21|22|23|24|25|26|27|28|29|0\n22|21|21|20|19|16|16|15|13|13|14|18|14|15|17|17|18|19|20|23|22|23|0\n45|45|44|43|42|38|38|37|36|35|35|40|34|32|32|31|30|30|28|27|26|25|25|29|26|27|28|29|47|31|33|33|34|41|36|37|39|39|40|41|42|43|44|46|46|47|0\n60|58|57|56|56|55|54|53|52|51|51|61|47|46|44|44|43|42|42|48|49|40|40|39|34|33|33|35|36|37|38|63|34|35|36|37|38|39|41|41|50|43|45|45|46|47|48|49|50|62|52|53|54|55|59|57|58|59|60|61|62|63|0\n44|43|42|42|45|41|41|47|40|40|38|36|36|32|32|33|34|29|28|28|30|26|26|27|39|27|31|29|30|31|35|33|34|35|37|37|38|39|49|48|46|43|44|45|46|47|48|49|0\n43|43|44|39|39|38|35|35|34|33|32|32|31|30|28|28|26|25|24|24|27|41|42|25|26|27|29|29|30|31|37|33|34|36|36|37|38|40|40|41|42|45|44|45|0\n35|33|32|29|28|25|25|26|24|22|22|23|30|20|20|19|19|34|21|21|31|23|24|27|26|27|28|29|30|31|32|33|34|35|0\n21|19|16|15|14|13|13|17|12|12|20|18|14|15|16|17|18|19|20|21|0\n25|24|23|21|21|22|26|27|20|19|18|17|16|16|29|17|18|19|20|28|22|23|24|25|26|27|28|29|0\n49|47|46|46|45|43|42|42|37|37|38|39|36|34|33|32|32|31|30|28|27|26|26|29|41|27|28|29|30|31|35|33|34|35|36|40|38|39|40|41|44|43|44|45|48|47|48|49|0\n52|51|51|49|44|42|42|43|45|41|39|39|40|47|38|36|32|32|33|31|31|35|30|29|28|28|50|29|30|37|34|33|34|35|36|37|38|48|40|41|46|43|44|45|46|47|48|49|50|53|52|53|0\n45|42|42|43|41|41|40|38|37|37|36|34|33|32|31|30|30|35|28|27|26|25|25|29|26|27|28|29|47|31|32|33|34|35|36|39|38|39|40|46|44|43|44|45|46|47|0\n23|20|20|19|18|17|16|14|14|13|13|22|15|15|16|17|18|19|21|21|22|23|0\n46|46|42|41|41|43|40|39|38|37|33|33|34|35|32|30|29|29|28|27|26|25|25|45|26|27|28|31|30|31|32|36|34|35|36|37|38|39|40|44|42|43|44|45|47|47|0\n29|27|24|24|23|21|21|22|20|19|18|17|16|16|28|17|18|19|20|26|22|23|25|25|26|27|28|29|0\n44|43|43|42|40|40|41|39|38|37|36|36|34|33|32|31|30|28|28|27|26|25|25|35|26|27|29|29|30|31|32|33|34|35|47|37|38|39|46|41|42|45|44|45|46|47|0\n35|33|29|29|28|27|26|25|24|23|23|31|22|20|20|19|19|34|21|21|22|32|24|25|26|27|28|30|30|31|32|33|34|35|0\n34|32|32|31|31|30|27|27|26|24|23|23|21|21|20|19|19|29|20|22|22|25|24|25|26|28|28|29|30|35|33|33|34|35|0\n9|7|6|6|8|7|8|9|0\n23|21|18|17|15|14|14|16|19|13|13|22|20|15|16|17|18|19|20|21|22|23|0\n58|57|57|56|52|52|53|54|51|51|50|49|49|48|46|45|44|43|43|41|39|38|37|37|36|35|34|32|32|33|42|33|34|35|36|40|38|39|40|41|42|47|44|45|46|47|48|61|50|60|55|53|54|55|56|59|58|59|60|61|0\n15|15|16|14|12|11|10|10|13|11|12|13|14|17|16|17|0\n39|38|37|36|32|31|31|30|30|34|29|29|40|41|27|26|26|25|23|23|24|43|24|25|28|27|28|42|35|33|32|33|34|35|36|37|38|39|40|41|42|43|0\n54|53|52|51|51|49|47|44|42|42|41|41|45|40|39|39|48|37|36|35|35|33|32|31|30|29|29|34|30|31|32|33|34|38|36|37|38|50|40|46|43|43|44|45|46|47|48|49|50|55|52|53|54|55|0\n18|17|15|14|13|12|12|11|11|19|16|13|14|15|16|17|18|19|0\n52|51|50|49|48|47|45|43|43|42|42|41|40|39|39|38|37|35|33|33|32|31|30|29|28|28|36|29|30|31|32|34|34|35|36|37|38|53|40|41|46|44|44|45|46|47|48|49|50|51|52|53|0\n23|21|18|17|16|16|19|15|14|13|13|22|14|15|20|17|18|19|20|21|22|23|0\n20|19|18|18|16|15|15|14|13|12|12|13|14|17|16|17|21|19|20|21|0\n55|52|50|49|47|47|46|43|43|44|41|40|39|38|37|35|35|36|34|32|32|31|31|30|29|29|53|54|30|51|33|33|34|42|36|37|38|39|40|41|42|45|44|45|46|48|48|49|50|51|52|53|54|55|0\n13|9|9|10|8|8|12|11|10|11|12|13|0\n42|41|40|37|36|36|35|35|34|33|32|32|31|29|29|27|25|24|24|23|23|28|26|25|26|27|28|30|30|31|43|33|34|39|38|37|38|39|40|41|42|43|0\n79|79|78|76|75|74|73|72|72|71|70|66|65|65|64|62|62|61|61|68|60|60|59|58|57|56|55|53|53|51|49|48|47|47|46|45|44|43|42|42|52|43|44|45|46|50|48|49|50|51|52|54|54|55|56|57|58|59|81|69|63|63|64|67|66|67|68|69|70|71|77|73|74|75|76|77|78|80|80|81|0\n37|36|31|30|30|29|28|27|25|25|26|33|24|23|22|21|20|20|35|21|22|23|24|34|26|27|28|29|32|31|32|33|34|35|36|37|0\n38|37|37|39|36|36|41|34|33|33|32|32|30|28|27|27|26|24|23|23|25|31|24|25|26|29|28|29|30|31|43|35|34|35|42|40|38|39|40|41|42|43|0\n13|13|11|11|10|10|9|9|15|12|12|14|14|15|0\n58|55|55|54|54|53|52|51|51|50|48|47|47|45|44|43|42|41|40|39|37|36|35|35|34|33|32|31|31|46|32|33|34|38|36|37|38|39|40|41|42|43|44|45|46|49|48|49|50|59|52|53|57|56|56|57|58|59|0\n50|49|46|45|45|47|44|40|40|39|39|42|38|38|37|34|33|31|31|32|30|29|29|27|27|28|28|36|30|35|32|33|34|35|36|37|51|43|41|41|42|43|44|48|46|47|48|49|50|51|0\n33|33|32|31|31|29|27|27|26|25|23|23|22|21|20|19|19|30|20|21|22|24|24|25|26|28|28|29|30|35|32|34|34|35|0\n40|40|41|39|38|37|37|36|35|31|30|29|28|27|27|32|25|24|24|23|23|34|26|25|26|33|28|29|30|31|32|33|34|35|36|43|38|39|42|41|42|43|0\n19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0\n37|35|33|30|30|31|32|29|26|26|27|25|23|23|22|20|20|21|36|21|22|24|24|25|28|27|28|29|34|31|32|33|34|35|36|37|0\n14|12|11|10|9|9|13|15|10|11|12|13|14|15|0\n20|20|18|17|15|15|13|13|12|12|19|14|14|16|16|17|18|19|21|21|0\n51|50|49|48|46|45|45|44|41|41|42|38|38|39|37|36|35|35|52|53|33|33|31|31|30|29|29|55|30|32|32|34|34|54|36|37|40|39|40|43|42|43|44|47|46|47|48|49|50|51|52|53|54|55|0\n12|12|11|11|10|9|9|15|10|14|13|13|14|15|0\n28|28|23|22|22|21|20|20|25|19|17|16|16|18|27|17|18|19|26|21|24|23|24|25|26|27|29|29|0\n44|43|42|41|41|45|38|38|39|35|34|33|33|36|31|30|30|29|26|26|27|25|25|47|28|27|28|29|32|31|32|37|34|35|36|37|40|39|40|46|42|43|44|45|46|47|0\n50|46|45|45|44|44|48|43|42|42|51|41|40|38|37|36|36|35|34|32|32|31|30|29|28|28|53|29|30|31|33|33|34|35|39|37|38|39|40|41|52|43|49|47|46|47|48|49|50|51|52|53|0\n54|51|50|50|49|48|48|47|41|41|42|43|44|45|40|40|39|37|36|35|35|32|31|30|30|29|29|34|33|31|32|33|34|38|36|37|38|39|55|46|42|43|44|45|46|47|53|49|52|51|52|53|54|55|0\n13|13|14|15|11|11|10|10|17|12|12|16|14|15|16|17|0\n22|22|21|20|19|19|24|25|18|17|16|15|15|27|16|17|18|26|20|21|23|23|24|25|26|27|0\n48|47|46|45|43|41|41|40|40|39|38|38|37|36|33|33|32|30|29|28|28|26|26|27|35|27|31|29|30|31|32|34|34|35|36|37|49|39|44|42|42|43|44|45|46|47|48|49|0\n8|8|9|7|7|11|10|9|10|11|0\n52|49|49|50|51|48|48|46|41|41|40|40|43|44|38|38|37|35|34|34|36|33|32|31|30|29|29|55|30|31|32|33|47|35|36|37|39|39|45|42|42|43|44|45|46|47|54|53|50|51|52|53|54|55|0\n29|25|25|26|23|23|22|21|20|19|18|16|16|17|28|17|18|19|20|21|22|24|24|27|26|27|28|29|0\n41|37|37|38|39|36|35|34|34|42|43|32|30|29|29|28|28|27|25|24|24|26|45|25|26|27|33|31|30|31|32|33|44|35|36|40|38|39|40|41|42|43|44|45|0\n24|23|22|17|17|18|16|16|20|15|14|14|25|15|21|19|18|19|20|21|22|23|24|25|0\n24|23|21|20|20|19|19|18|15|14|14|16|17|15|16|17|18|25|22|21|22|23|24|25|0\n37|35|34|30|29|29|28|27|26|25|25|32|23|23|22|21|20|20|36|21|22|24|24|33|26|27|28|31|30|31|32|33|34|35|36|37|0\n35|34|32|28|28|29|30|27|26|24|24|23|21|21|20|19|19|33|20|22|22|23|25|25|26|27|31|29|30|31|32|33|34|35|0\n29|27|26|25|24|23|20|19|19|18|18|17|16|16|28|17|22|21|20|21|22|23|24|25|26|27|28|29|0\n47|43|42|41|41|44|39|37|37|36|35|34|32|32|33|31|29|27|27|28|26|25|25|46|26|30|28|29|30|31|40|33|34|35|36|38|38|39|40|45|42|43|44|45|46|47|0\n67|67|65|65|64|63|63|62|59|54|54|55|52|52|53|57|51|51|50|49|48|47|46|45|44|43|41|40|39|39|38|37|36|36|61|37|38|42|40|41|42|43|44|45|46|47|48|49|50|60|58|53|56|55|56|57|58|59|60|61|62|69|64|66|66|68|68|69|0\n20|19|18|18|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0\n24|24|22|21|18|18|19|17|16|15|14|14|23|15|16|17|20|19|20|21|22|23|25|25|0\n46|45|44|43|42|41|40|39|39|38|37|35|34|33|32|31|27|26|26|28|25|25|30|36|29|27|28|29|30|31|32|33|34|35|36|37|38|47|40|41|42|43|44|45|46|47|0\n48|47|47|45|40|40|41|42|43|39|38|37|36|32|31|30|30|33|29|26|26|27|28|35|46|27|28|29|34|31|32|33|34|35|36|37|38|39|44|41|42|43|44|45|46|49|48|49|0\n35|32|29|28|27|27|30|25|25|26|24|23|22|20|20|19|19|34|21|21|22|23|24|33|26|31|28|29|30|31|32|33|34|35|0\n60|59|59|57|56|56|55|53|52|52|51|51|62|63|45|44|44|46|47|43|43|49|42|39|39|40|38|37|36|35|34|34|65|35|36|37|38|41|40|41|42|50|48|45|46|47|48|49|50|64|54|53|54|55|58|57|58|61|60|61|62|63|64|65|0\n64|62|62|61|60|59|59|65|66|57|57|55|55|54|52|52|51|49|49|50|68|69|47|47|46|44|42|42|43|41|39|39|38|37|37|71|38|40|40|41|45|43|44|45|46|48|48|70|50|51|53|53|54|56|56|58|58|67|60|61|63|63|64|65|66|67|68|69|70|71|0\n31|30|30|29|29|28|26|25|24|24|22|21|19|19|18|18|23|20|20|21|22|23|27|25|26|27|28|33|32|31|32|33|0\n41|40|38|38|39|37|37|36|35|33|31|31|30|29|27|26|26|25|23|23|24|34|24|25|28|27|28|29|30|32|32|33|34|35|36|43|42|39|40|41|42|43|0\n39|38|33|33|34|35|32|32|29|28|28|27|26|24|23|21|21|22|25|31|22|23|24|25|26|27|30|29|30|31|37|36|34|35|36|37|38|39|0\n31|31|30|29|29|27|25|25|24|22|22|21|20|19|18|18|28|19|20|21|23|23|24|26|26|27|28|33|30|32|32|33|0\n36|36|34|34|32|31|30|29|28|27|25|25|24|23|22|20|20|21|33|21|22|23|24|26|26|27|28|29|30|31|32|33|35|35|37|37|0\n24|24|25|23|22|21|19|18|18|16|16|15|15|27|17|17|20|19|20|21|22|23|26|25|26|27|0\n44|43|43|42|41|39|38|37|36|35|34|32|32|31|28|28|29|27|25|25|24|24|40|26|26|27|30|29|30|31|33|33|34|35|36|37|38|39|40|41|42|45|44|45|0\n17|16|16|14|14|13|12|11|11|19|12|13|15|15|18|17|18|19|0\n40|39|38|37|36|33|32|32|34|31|29|29|30|41|28|27|26|25|24|23|23|43|24|25|26|27|28|42|30|31|35|33|34|35|36|37|38|39|40|41|42|43|0\n24|23|22|21|21|20|18|18|16|14|14|15|17|15|16|17|19|19|20|25|22|23|24|25|0\n41|39|38|37|33|32|32|34|35|30|29|28|26|26|23|23|24|25|22|22|40|31|24|25|27|27|28|29|30|31|36|33|34|35|36|37|38|39|40|41|0\n44|42|42|43|41|35|35|36|34|34|38|33|33|40|32|31|30|29|29|27|26|25|25|28|26|27|28|47|30|31|32|46|39|37|36|37|38|39|40|41|45|43|44|45|46|47|0\n92|90|90|89|87|86|86|85|84|84|83|82|81|80|79|76|76|77|75|74|72|71|70|70|68|68|67|65|65|66|94|95|64|62|61|60|60|59|58|57|56|54|54|53|52|51|50|50|97|51|52|53|55|55|56|57|58|59|63|61|62|63|64|96|66|67|69|69|73|71|72|73|74|75|78|77|78|79|80|81|82|83|93|85|88|87|88|89|91|91|92|93|94|95|96|97|0\n49|48|48|47|46|44|43|43|42|41|41|38|35|34|34|36|33|32|32|31|29|29|28|27|27|40|28|30|30|31|39|33|37|35|36|37|38|39|40|51|42|45|44|45|46|47|50|49|50|51|0\n40|40|38|37|36|35|34|33|32|30|30|29|28|27|26|25|24|23|22|22|39|23|24|25|26|27|28|29|31|31|32|33|34|35|36|37|38|39|41|41|0\n46|45|44|43|43|38|36|35|35|34|32|32|31|30|29|29|39|40|28|27|26|25|25|42|26|27|28|41|30|31|33|33|34|37|36|37|38|39|40|41|42|47|44|45|46|47|0\n33|31|30|29|28|28|27|24|23|23|25|22|21|19|19|20|34|35|20|21|22|26|24|25|26|27|32|29|30|31|32|33|34|35|0\n67|65|62|61|61|60|60|59|57|56|55|54|54|58|53|51|50|50|47|47|45|45|44|43|41|40|39|38|38|37|36|35|35|49|36|37|42|39|40|41|42|43|44|46|46|48|48|49|52|51|52|53|66|55|56|57|58|59|64|63|62|63|64|65|66|67|0\n41|41|40|39|36|35|35|37|38|33|32|31|30|27|27|28|25|25|24|23|23|34|24|26|26|29|28|29|30|31|32|33|34|43|36|37|38|39|40|42|42|43|0\n60|57|57|58|56|56|53|52|51|50|49|48|48|47|41|41|42|40|39|39|44|45|37|36|36|35|33|33|32|32|55|34|34|35|38|37|38|46|40|43|42|43|44|45|46|47|54|49|50|51|52|53|54|55|61|59|58|59|60|61|0\n66|65|64|60|59|59|58|57|56|56|62|54|52|51|51|53|50|48|47|47|46|45|43|42|42|41|39|38|38|37|35|35|36|67|36|37|40|39|40|41|44|43|44|45|46|49|48|49|50|55|52|53|54|55|63|57|58|61|60|61|62|63|64|65|66|67|0\n30|29|28|28|27|25|25|22|22|21|18|18|19|17|17|24|20|19|20|21|23|23|24|26|26|27|31|29|30|31|0\n18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0\n55|54|53|52|51|51|49|49|50|44|43|40|40|41|39|39|45|46|37|37|36|34|34|33|32|31|30|30|48|31|32|33|35|35|36|38|38|47|42|41|42|43|44|45|46|47|48|57|50|56|52|53|54|55|56|57|0\n30|29|28|28|27|25|24|22|21|21|20|20|18|17|17|19|18|19|26|23|22|23|24|25|26|27|31|29|30|31|0\n35|34|34|33|30|30|31|32|27|27|25|24|24|23|22|21|20|20|29|21|22|23|26|25|26|28|28|29|37|31|32|33|36|35|36|37|0\n45|44|42|42|43|46|47|41|39|39|37|37|36|35|34|32|32|31|30|29|28|27|26|26|49|27|28|29|30|31|33|33|34|35|36|38|38|40|40|41|48|43|44|45|46|47|48|49|0\n64|61|60|60|58|58|57|57|53|53|52|52|55|50|49|49|48|46|46|45|44|43|43|42|40|39|38|38|36|35|34|34|37|35|36|37|41|39|40|41|42|65|44|45|47|47|48|51|50|51|56|54|54|55|56|63|59|59|62|61|62|63|64|65|0\n39|38|37|37|36|35|34|33|33|32|31|31|30|29|27|25|24|24|26|23|23|43|28|25|26|27|28|29|30|42|32|41|34|35|36|40|38|39|40|41|42|43|0\n71|69|67|67|66|63|62|62|64|61|57|56|54|54|53|53|58|59|52|49|49|50|48|46|46|45|44|42|41|40|40|39|38|37|37|70|38|39|43|41|42|43|44|45|47|47|48|51|50|51|52|60|55|55|56|57|58|59|60|61|65|63|64|65|66|68|68|69|70|71|0\n45|44|43|42|41|40|39|35|34|34|36|37|33|30|28|28|27|27|31|26|24|24|25|25|26|32|29|29|30|31|32|33|38|35|36|37|38|39|40|41|42|43|44|45|0\n53|48|46|46|45|44|43|42|41|41|49|40|38|38|37|36|35|34|33|32|31|29|29|28|28|51|52|30|30|31|32|33|34|35|36|37|39|39|40|50|42|43|44|45|47|47|48|49|50|51|52|53|0\n16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n46|46|42|41|40|40|43|39|38|36|36|35|33|33|32|30|29|29|28|27|26|25|25|45|26|27|28|31|30|31|32|34|34|35|37|37|38|39|44|41|42|43|44|45|47|47|0\n64|64|63|61|60|60|58|58|57|55|54|53|52|52|56|66|67|51|50|49|47|44|44|45|46|43|42|41|40|39|38|37|36|36|69|37|38|39|40|41|42|43|48|45|46|47|48|49|50|51|68|53|54|55|56|57|59|59|62|61|62|63|65|65|66|67|68|69|0\n24|24|23|23|22|20|19|19|18|16|16|15|15|27|17|17|18|21|20|21|22|26|25|25|26|27|0\n56|55|54|53|52|52|57|51|48|47|47|46|43|41|41|42|44|45|40|38|37|35|35|36|34|33|31|31|32|59|32|33|34|39|36|37|38|39|40|50|42|43|44|45|46|49|48|49|50|51|58|53|54|55|56|57|58|59|0\n39|38|38|37|36|34|33|33|32|31|30|30|28|27|26|25|23|23|22|22|29|24|24|25|26|27|28|29|41|31|32|35|34|35|36|37|40|39|40|41|0\n25|21|20|20|22|18|17|16|16|15|14|14|24|15|19|17|18|19|23|21|22|23|24|25|0\n27|26|25|23|22|22|24|21|19|19|18|17|16|16|29|17|18|20|20|21|28|23|24|25|26|27|28|29|0\n42|41|40|40|39|38|35|35|34|32|31|30|30|29|26|26|25|24|24|23|23|37|28|25|27|27|28|29|33|31|32|33|34|36|36|37|38|39|43|41|42|43|0\n16|16|15|12|10|10|11|13|14|11|12|13|14|15|17|17|0\n53|53|52|49|49|50|48|48|47|46|46|56|57|45|44|42|41|41|40|39|38|36|35|35|34|33|32|31|31|59|32|33|34|37|36|37|38|39|40|43|42|43|44|45|58|47|55|51|50|51|52|54|54|55|56|57|58|59|0\n17|13|13|14|12|12|16|11|11|19|18|15|14|15|16|17|18|19|0\n8|8|9|7|7|11|10|9|10|11|0\n75|74|73|73|72|70|70|69|68|67|67|77|63|62|60|59|59|58|56|56|55|55|64|65|54|51|50|50|52|49|48|47|46|44|43|43|42|41|41|79|42|45|44|45|46|47|48|49|53|51|52|53|54|66|57|57|58|61|60|61|62|63|64|65|66|78|68|69|71|71|72|76|74|75|76|77|78|79|0\n21|21|20|19|18|17|17|15|14|13|13|16|14|15|16|23|18|19|20|22|22|23|0\n57|54|52|51|51|50|48|48|47|45|44|44|43|41|41|40|39|38|36|36|35|33|33|31|31|30|30|55|56|32|32|34|34|35|37|37|38|39|40|42|42|43|46|45|46|47|49|49|50|53|52|53|54|55|56|57|0\n81|80|79|78|77|77|82|83|84|74|73|72|71|71|70|68|68|63|63|61|60|60|59|57|56|55|54|54|58|65|66|53|50|49|49|48|46|46|47|45|44|44|76|45|52|47|48|51|50|51|52|53|67|55|56|57|58|59|62|61|62|64|64|65|66|67|69|69|70|75|72|73|74|75|76|85|78|79|80|81|82|83|84|85|0\n70|68|64|64|65|66|62|61|61|63|60|58|57|56|55|55|59|54|52|52|47|47|46|46|49|44|43|42|42|41|40|37|37|38|39|51|38|39|40|41|45|43|44|45|50|48|48|49|50|51|53|53|54|71|56|57|58|59|60|69|62|63|67|65|66|67|68|69|70|71|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n19|19|20|16|16|15|13|13|12|12|18|14|14|15|17|17|18|21|20|21|0\n17|16|13|13|14|15|18|11|11|12|12|19|14|15|16|17|18|19|0\n12|12|11|10|10|14|9|9|15|11|13|13|14|15|0\n4|4|5|5|0\n71|71|70|69|69|73|68|67|66|65|64|63|61|61|60|58|57|56|55|54|53|53|52|51|49|49|48|47|46|45|43|42|42|41|40|39|39|75|40|41|44|43|44|45|46|47|48|50|50|51|52|59|54|55|56|57|58|59|60|62|62|63|64|65|66|67|68|74|70|72|72|73|74|75|0\n39|37|36|36|35|33|31|30|30|29|27|26|26|25|24|23|22|21|21|34|22|23|24|25|28|27|28|29|32|31|32|33|34|35|38|37|38|39|0\n64|64|65|63|63|62|60|60|55|55|54|53|52|52|57|51|49|48|48|47|44|43|43|45|42|41|40|39|38|36|36|35|35|59|37|37|38|39|40|41|42|46|44|45|46|47|50|49|50|51|58|53|54|56|56|57|58|59|61|61|62|67|66|65|66|67|0\n38|35|35|36|34|34|33|30|29|29|28|27|26|26|24|23|22|21|21|25|22|23|24|25|32|27|28|31|30|31|32|33|39|37|36|37|38|39|0\n31|29|27|26|25|24|24|23|21|21|20|18|18|17|17|30|19|19|20|22|22|23|28|25|26|27|28|29|30|31|0\n34|27|27|28|25|23|23|24|22|20|20|21|30|31|32|19|19|35|33|21|22|26|24|25|26|29|28|29|30|31|32|33|34|35|0\n51|49|49|48|48|52|53|44|43|40|39|39|41|38|38|45|46|37|36|34|33|33|32|31|30|29|29|55|30|31|32|35|34|35|36|37|47|42|40|41|42|43|44|45|46|47|54|50|50|51|52|53|54|55|0\n49|47|46|45|43|43|40|39|39|38|38|37|36|33|31|31|30|29|29|34|28|27|26|26|48|27|28|35|30|32|32|33|34|35|36|37|42|41|40|41|42|44|44|45|46|47|48|49|0\n13|12|11|10|10|9|9|15|14|11|12|13|14|15|0\n19|18|15|15|16|13|12|12|11|11|14|13|14|17|16|17|18|19|0\n41|40|39|39|38|36|35|34|34|33|32|29|28|28|30|27|26|25|24|23|23|43|24|25|26|27|31|29|30|31|32|33|37|35|36|37|38|42|40|41|42|43|0\n36|36|37|35|34|34|39|32|29|29|30|31|28|26|25|24|24|23|22|22|41|23|27|25|26|27|28|33|30|31|32|33|40|35|38|37|38|39|40|41|0\n14|12|11|11|10|9|9|15|10|13|12|13|14|15|0\n14|12|11|10|9|9|13|15|10|11|12|13|14|15|0\n78|77|77|76|73|73|72|71|70|69|68|67|67|64|63|63|62|61|58|56|55|54|53|53|52|52|59|51|50|47|46|46|48|45|44|42|42|41|41|66|43|43|44|45|49|47|48|49|50|51|60|57|54|55|56|57|58|59|60|61|62|65|64|65|66|75|68|69|70|71|72|74|74|75|76|79|78|79|0\n38|38|39|37|37|41|36|36|43|35|35|33|32|31|30|29|27|27|26|25|24|24|34|25|26|28|28|29|30|31|32|33|34|45|44|42|40|39|40|41|42|43|44|45|0\n13|12|11|10|9|8|8|9|10|11|12|13|0\n85|83|82|81|79|77|76|76|75|74|73|73|71|71|70|69|67|67|66|64|62|62|61|60|58|57|57|59|56|55|50|50|51|49|47|47|48|53|46|45|44|44|84|45|46|54|48|49|52|51|52|53|54|55|56|65|58|59|60|61|63|63|64|65|66|68|68|69|70|72|72|80|74|75|78|77|78|79|80|81|82|83|84|85|0\n84|83|81|81|79|79|78|77|76|75|74|73|73|72|68|68|66|65|65|64|63|63|70|61|59|57|55|55|56|58|54|52|52|51|50|46|46|47|48|45|44|44|62|45|49|47|48|49|50|51|53|53|54|60|56|57|58|59|60|61|62|71|64|67|66|67|69|69|70|71|72|85|74|75|76|77|78|80|80|82|82|83|84|85|0\n20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n30|30|29|29|32|33|28|26|25|25|24|23|22|21|20|19|19|35|20|21|22|23|24|27|26|27|28|34|31|31|32|33|34|35|0\n38|37|37|36|30|30|29|28|27|27|32|33|26|26|35|25|24|22|22|23|41|23|24|25|40|34|28|29|31|31|32|33|34|35|36|39|38|39|40|41|0\n41|40|39|38|38|42|43|37|35|34|33|32|32|31|27|27|26|26|29|24|24|25|45|25|30|28|28|29|30|31|36|33|34|35|36|37|44|39|40|41|42|43|44|45|0\n25|23|23|24|22|22|27|21|21|19|18|17|16|16|20|17|18|19|20|29|28|26|24|25|26|27|28|29|0\n20|20|18|17|16|14|14|12|12|13|19|13|15|15|16|17|18|19|21|21|0\n35|34|34|33|31|31|29|28|27|26|25|25|23|23|22|20|20|21|37|21|22|24|24|30|26|27|28|29|30|32|32|33|36|35|36|37|0\n75|75|74|72|72|71|69|68|68|67|67|65|64|63|61|61|60|58|58|57|55|55|54|52|51|51|50|49|48|46|45|43|43|42|41|41|40|40|66|47|42|44|44|45|46|47|48|49|50|53|52|53|54|56|56|57|59|59|60|62|62|63|64|65|66|77|70|69|70|71|73|73|74|76|76|77|0\n38|37|36|36|32|31|30|30|33|29|28|26|26|25|24|23|22|21|21|35|22|23|24|25|27|27|28|29|34|31|32|33|34|35|39|37|38|39|0\n46|46|45|43|42|41|40|39|39|38|37|36|36|35|34|33|33|49|32|31|30|29|28|27|27|51|28|29|30|31|32|50|34|35|48|37|38|44|40|41|42|43|44|45|47|47|48|49|50|51|0\n49|49|48|47|47|51|46|46|53|45|45|43|42|42|41|39|39|38|38|56|57|36|36|35|34|33|32|31|31|59|32|33|34|35|37|37|58|40|40|41|44|43|44|55|54|52|48|50|50|51|52|53|54|55|56|57|58|59|0\n38|35|33|33|34|36|32|29|29|28|28|31|27|26|23|22|22|21|21|25|24|23|24|25|26|27|39|30|30|31|32|37|34|35|36|37|38|39|0\n42|42|43|44|45|41|40|40|38|35|34|33|31|31|32|36|29|28|28|27|25|25|26|39|26|27|30|29|30|37|32|33|34|35|36|37|38|39|47|41|46|43|44|45|46|47|0\n21|21|19|17|17|18|16|14|14|13|13|23|15|15|16|20|18|19|20|22|22|23|0\n34|34|32|32|30|28|28|27|25|24|24|23|21|21|20|19|19|31|20|22|22|23|26|25|26|27|29|29|30|31|33|33|35|35|0\n47|45|42|41|41|43|40|40|39|37|36|35|34|32|32|31|30|29|27|27|26|25|25|38|26|28|28|29|30|31|33|33|34|35|36|37|38|39|46|44|42|43|44|45|46|47|0\n24|23|22|21|20|19|18|18|17|16|14|14|15|15|16|17|25|19|20|21|22|23|24|25|0\n7|6|5|5|6|7|0\n48|47|46|45|42|42|43|41|41|40|39|37|35|35|34|33|31|31|30|29|28|26|26|27|38|27|28|29|30|32|32|33|34|36|36|37|38|39|40|49|44|43|44|45|46|47|48|49|0\n62|62|59|57|57|58|56|54|40|40|39|39|42|38|38|44|45|46|37|37|48|49|50|51|52|53|36|35|34|33|33|61|34|35|36|55|47|43|41|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|56|60|58|59|60|61|63|63|0\n50|49|47|46|46|45|43|43|42|41|41|40|39|36|35|32|32|33|31|31|30|29|28|27|27|38|28|29|30|37|34|33|34|35|36|37|38|39|40|51|42|44|44|45|48|47|48|49|50|51|0\n71|69|69|66|66|65|63|63|62|62|61|60|59|58|57|56|56|72|73|55|54|52|49|49|50|51|48|47|46|44|44|43|42|41|39|39|40|75|40|41|42|43|45|45|46|47|48|53|50|51|52|53|54|55|74|57|58|59|60|61|68|64|64|65|67|67|68|70|70|71|72|73|74|75|0\n26|25|24|23|23|22|20|20|18|16|16|15|15|19|17|17|18|19|21|21|22|27|24|25|26|27|0\n43|40|40|41|42|39|37|37|35|35|33|33|32|31|31|29|28|26|26|25|24|24|30|25|27|27|28|29|30|45|32|34|34|36|36|38|38|39|44|41|42|43|44|45|0\n43|41|41|40|39|38|37|36|35|34|33|33|44|45|32|31|29|29|28|26|26|25|25|47|27|27|28|30|30|31|32|46|34|35|36|37|38|39|40|42|42|43|44|45|46|47|0\n28|27|26|25|25|24|22|22|20|18|17|17|16|16|21|19|18|19|20|21|23|23|24|29|26|27|28|29|0\n58|57|54|53|49|49|50|48|48|52|47|44|43|42|42|45|41|41|40|39|38|37|36|36|35|34|32|31|31|33|32|33|34|35|59|37|38|39|40|56|46|43|44|45|46|47|55|51|50|51|52|53|54|55|56|57|58|59|0\n28|26|26|24|23|23|22|22|21|18|18|17|17|16|16|20|19|19|20|21|29|25|24|25|27|27|28|29|0\n34|33|32|31|30|29|27|27|28|26|25|23|21|21|20|19|19|24|20|22|22|23|24|25|26|35|28|29|30|31|32|33|34|35|0\n56|55|55|57|52|51|49|49|50|48|47|47|46|46|59|40|39|38|37|36|36|41|35|35|43|44|33|32|32|34|61|33|34|45|42|37|38|39|40|41|42|43|44|45|60|54|48|53|50|51|52|53|54|58|56|57|58|59|60|61|0\n46|46|43|43|42|40|40|39|38|34|33|33|35|36|31|31|30|29|27|27|26|25|25|45|26|28|28|29|30|32|32|37|34|35|36|37|38|39|41|41|42|44|44|45|47|47|0\n20|19|19|17|14|14|13|13|12|12|18|16|15|15|16|17|18|21|20|21|0\n24|23|23|25|22|20|19|18|18|17|16|15|15|27|16|17|21|19|20|21|22|26|24|25|26|27|0\n58|58|56|55|55|54|53|51|51|50|49|48|45|44|44|46|43|41|40|40|39|38|37|37|60|61|36|35|34|33|33|63|34|35|36|62|38|39|42|41|42|43|47|45|46|47|48|49|50|52|52|53|54|57|56|57|59|59|60|61|62|63|0\n28|27|27|29|26|25|25|31|24|23|22|22|33|21|20|19|19|35|20|21|34|23|24|32|26|30|28|29|30|31|32|33|34|35|0\n12|10|10|9|8|8|13|9|11|11|12|13|0\n23|21|20|18|18|17|15|15|14|13|13|22|14|16|16|17|19|19|20|21|22|23|0\n37|36|36|34|33|33|32|31|30|29|28|27|26|25|25|39|24|23|22|22|41|23|24|40|26|27|28|29|30|31|32|35|34|35|38|37|38|39|40|41|0\n16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0\n41|39|38|36|35|34|34|33|29|28|28|30|31|27|26|25|23|23|22|22|40|24|24|25|26|27|32|29|30|31|32|33|37|35|36|37|38|39|40|41|0\n78|77|77|75|75|74|72|71|71|70|69|69|80|81|65|64|64|66|63|63|62|61|60|57|57|56|55|55|54|52|51|50|50|49|47|46|46|45|43|43|44|83|44|45|48|47|48|49|53|51|52|53|54|59|56|58|58|59|60|61|62|68|67|65|66|67|68|82|70|73|72|73|74|76|76|79|78|79|80|81|82|83|0\n28|27|27|26|25|23|22|21|20|18|17|17|16|16|24|19|18|19|20|21|22|23|24|25|26|29|28|29|0\n32|31|29|29|28|28|27|26|24|23|22|21|20|19|18|18|25|19|20|21|22|23|24|25|26|27|33|30|30|31|32|33|0\n39|38|37|37|36|35|34|33|33|41|32|30|30|29|28|27|25|24|24|23|23|43|26|25|26|27|28|29|31|31|32|42|34|35|36|40|38|39|40|41|42|43|0\n71|70|68|68|69|67|64|63|63|62|61|58|58|59|57|56|56|66|53|53|52|50|49|48|47|46|46|44|44|43|41|40|40|39|38|38|55|39|42|41|42|43|45|45|51|47|48|49|50|51|52|54|54|55|73|57|60|59|60|61|62|65|64|65|66|67|72|69|70|71|72|73|0\n36|34|34|35|37|38|33|32|31|30|30|40|41|29|28|27|24|24|25|23|23|43|26|25|26|27|28|29|42|31|32|33|39|35|36|37|38|39|40|41|42|43|0\n62|61|61|63|64|60|59|58|57|56|56|66|52|51|50|49|47|45|45|46|44|44|53|42|42|39|39|40|36|36|37|35|35|55|38|37|38|41|40|41|43|43|54|48|46|47|48|49|50|51|52|53|54|55|67|57|58|59|60|65|62|63|64|65|66|67|0\n45|43|40|40|41|38|38|37|35|35|33|32|32|31|28|27|27|26|25|25|24|24|44|30|26|29|28|29|30|31|34|33|34|36|36|37|39|39|42|41|42|43|44|45|0\n66|65|64|63|61|61|60|59|58|58|57|56|55|54|53|51|51|49|49|48|48|68|69|46|45|44|44|43|41|40|40|39|38|37|37|71|38|39|42|41|42|43|47|45|46|47|70|50|50|52|52|53|54|55|56|57|67|59|60|62|62|63|64|65|66|67|68|69|70|71|0\n79|76|75|75|74|73|72|70|69|69|68|66|65|65|64|63|62|61|60|59|58|57|56|54|52|52|51|51|50|49|48|47|46|45|44|43|42|41|41|78|42|43|44|45|46|47|48|49|50|55|53|53|54|55|56|57|58|59|60|61|62|63|64|67|66|67|68|71|70|71|72|73|74|77|76|77|78|79|0\n48|48|47|46|46|45|42|42|43|44|40|39|37|35|35|34|33|32|32|31|29|29|28|27|27|41|28|30|30|31|38|33|34|36|36|37|38|39|40|41|51|43|44|45|50|47|49|49|50|51|0\n57|56|55|54|54|58|59|53|50|49|48|47|46|46|51|45|44|42|42|40|40|39|37|37|36|34|34|33|32|32|61|33|35|35|36|38|38|39|41|41|43|43|44|45|52|47|48|49|50|51|52|53|60|55|56|57|58|59|60|61|0\n62|61|61|60|59|59|64|58|57|57|56|55|53|53|54|52|52|68|51|50|49|49|70|48|46|43|43|42|41|41|40|39|38|37|37|47|38|39|40|45|42|44|44|45|46|47|48|71|50|51|69|67|54|55|56|66|58|65|60|63|62|63|64|65|66|67|68|69|70|71|0\n12|12|8|8|9|10|11|9|10|11|13|13|0\n17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n17|16|15|15|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0\n21|20|19|19|18|16|14|14|15|13|13|23|17|15|16|17|18|22|20|21|22|23|0\n17|16|15|14|13|13|12|11|11|19|12|18|14|15|16|17|18|19|0\n31|31|32|33|30|28|27|26|26|25|24|23|22|20|19|19|21|35|20|21|22|23|24|25|29|27|28|29|30|34|32|33|34|35|0\n29|28|27|26|25|24|24|30|31|22|22|20|20|19|18|18|33|19|21|21|23|23|32|25|26|27|28|29|30|31|32|33|0\n15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0\n30|29|27|27|25|22|22|21|21|24|20|20|18|17|17|19|18|19|31|26|23|23|24|25|26|28|28|29|30|31|0\n37|35|33|32|31|31|30|28|28|26|25|25|24|22|21|21|20|20|36|23|22|23|24|27|26|27|29|29|30|34|32|33|34|35|36|37|0\n44|43|43|42|40|39|38|37|37|33|33|32|31|31|30|28|27|26|25|25|24|24|36|29|26|27|28|29|30|35|32|34|34|35|36|41|38|39|40|41|42|45|44|45|0\n42|40|39|38|37|37|36|35|34|34|33|31|31|28|28|27|26|24|24|23|23|30|25|25|26|27|29|29|30|32|32|33|43|35|36|41|38|39|40|41|42|43|0\n42|41|41|37|37|38|35|34|33|33|32|29|28|28|27|27|26|24|24|23|23|40|25|25|26|31|30|29|30|31|32|36|34|35|36|39|38|39|40|43|42|43|0\n35|34|34|36|33|32|31|27|26|26|28|25|25|30|38|23|22|21|21|24|22|23|24|39|29|27|28|29|30|31|32|33|37|35|36|37|38|39|0\n40|39|38|37|36|35|34|34|32|29|29|30|31|28|27|26|24|23|22|22|25|23|24|25|26|27|28|33|30|31|32|33|41|35|36|37|38|39|40|41|0\n15|11|11|12|10|9|9|14|10|13|12|13|14|15|0\n68|68|67|66|65|65|70|60|59|58|57|57|56|52|52|51|51|54|55|62|49|49|48|46|46|45|44|39|39|40|38|38|42|37|37|64|43|41|40|41|42|43|44|45|47|47|48|50|50|63|53|53|54|55|56|61|58|59|60|61|62|63|64|71|66|67|69|69|70|71|0\n41|40|37|37|36|36|35|34|33|33|42|43|30|29|29|28|27|27|26|25|24|24|45|25|26|32|28|31|30|31|32|44|34|35|39|38|38|39|40|41|42|43|44|45|0\n28|27|25|24|23|22|22|20|20|19|18|16|16|17|29|17|18|19|21|21|26|23|24|25|26|27|28|29|0\n55|54|54|56|52|51|51|50|49|49|58|47|47|45|45|44|43|42|42|60|61|41|40|38|38|37|36|35|33|33|34|63|34|35|36|37|39|39|40|41|62|43|44|46|46|48|48|59|50|53|52|53|57|55|56|57|58|59|60|61|62|63|0\n17|17|18|14|14|13|12|11|11|16|12|13|15|15|16|19|18|19|0\n41|40|38|37|36|34|34|33|29|28|27|27|30|31|25|24|24|23|22|22|39|23|26|25|26|32|28|29|30|31|32|33|35|35|36|37|38|39|40|41|0\n17|16|13|13|12|11|10|10|15|11|12|14|14|15|16|17|0\n33|29|28|28|30|25|24|24|23|22|21|21|20|19|18|18|32|19|20|27|22|23|26|25|26|27|31|29|30|31|32|33|0\n36|31|31|32|30|30|34|28|28|27|26|26|37|25|24|23|22|21|21|39|22|23|24|25|38|27|29|29|35|33|32|33|34|35|36|37|38|39|0\n37|36|36|35|33|33|32|29|28|27|26|26|30|25|24|23|22|21|21|39|22|23|24|25|31|27|28|29|30|31|32|34|34|35|38|37|38|39|0\n8|8|9|7|7|11|10|9|10|11|0\n21|20|19|19|18|15|14|14|16|13|13|23|17|15|16|17|18|22|20|21|22|23|0\n36|34|34|35|37|33|32|30|29|27|27|28|25|25|24|22|22|21|21|39|23|23|24|26|26|31|28|29|30|31|32|33|38|35|36|37|38|39|0\n21|21|22|20|20|24|25|18|18|17|16|15|15|27|16|17|19|19|26|23|22|23|24|25|26|27|0\n48|47|47|46|43|43|42|41|41|40|39|39|50|51|36|36|35|34|34|33|32|30|29|29|28|28|53|31|30|31|32|33|38|35|37|37|38|52|40|45|42|44|44|45|46|49|48|49|50|51|52|53|0\n46|45|42|42|43|41|41|39|35|35|36|33|33|32|32|38|31|30|29|28|25|25|26|27|26|27|28|29|30|31|40|34|34|37|36|37|38|39|40|47|44|43|44|45|46|47|0\n51|51|50|48|48|47|46|45|45|41|40|39|38|37|37|42|36|35|34|33|31|31|30|29|28|28|44|29|30|32|32|33|34|35|36|43|38|39|40|41|42|43|44|53|46|47|49|49|50|52|52|53|0\n38|37|36|35|34|33|33|32|30|27|27|26|26|29|24|23|21|21|22|25|22|23|24|25|31|28|28|29|30|31|32|39|34|35|36|37|38|39|0\n49|48|48|47|45|44|43|43|42|41|40|40|51|38|36|36|37|35|34|32|32|31|30|29|28|28|53|29|30|31|33|33|34|35|39|37|38|39|52|41|42|46|44|45|46|47|50|49|50|51|52|53|0\n64|63|63|61|59|58|57|56|55|55|54|52|51|50|50|49|48|47|45|45|44|43|42|41|39|39|38|37|36|35|34|34|62|35|36|37|38|40|40|41|42|43|44|46|46|47|48|49|53|51|52|53|54|60|56|57|58|59|60|61|62|65|64|65|0\n28|27|26|26|25|23|22|22|20|19|17|17|16|16|21|18|18|19|20|21|24|23|24|25|29|27|28|29|0\n25|22|18|18|19|20|17|17|16|15|14|14|24|15|16|23|21|19|20|21|22|23|24|25|0\n22|19|19|20|21|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0\n9|8|7|6|6|7|8|9|0\n59|57|57|52|51|50|48|48|49|53|41|40|40|39|37|37|36|36|43|35|34|34|45|46|33|32|31|31|55|56|32|33|47|35|44|38|38|39|42|41|42|43|44|45|46|47|54|49|50|51|52|53|54|55|56|58|58|59|0\n26|24|23|22|22|21|21|27|20|19|18|17|16|16|29|17|18|19|20|28|25|23|24|25|26|27|28|29|0\n40|39|37|36|35|34|34|33|32|31|30|26|26|25|25|28|24|23|22|22|41|23|24|29|27|27|28|29|30|31|32|33|38|35|36|37|38|39|40|41|0\n43|42|42|41|39|39|38|37|34|34|35|32|31|31|29|29|28|27|26|24|24|25|45|25|26|27|28|30|30|33|32|33|36|35|36|37|38|40|40|41|44|43|44|45|0\n11|11|10|9|9|8|8|13|10|12|12|13|0\n23|21|20|19|18|16|15|13|13|14|17|22|14|15|16|17|18|19|20|21|22|23|0\n10|9|9|8|7|7|8|11|10|11|0\n52|50|50|49|47|47|46|46|53|44|42|42|41|41|39|38|38|36|35|35|34|32|31|29|29|30|33|55|30|31|32|33|34|37|36|37|40|39|40|45|43|43|44|45|54|48|48|49|51|51|52|53|54|55|0\n25|24|23|23|22|19|19|20|18|16|15|15|17|27|16|17|18|21|20|21|22|26|24|25|26|27|0\n82|82|81|80|79|79|84|85|77|76|76|74|73|73|72|71|70|70|87|67|67|66|65|65|64|63|62|61|59|58|57|56|56|55|55|89|53|52|52|51|50|48|48|47|47|91|49|49|50|51|54|53|54|90|60|57|58|59|60|61|62|63|64|69|66|68|68|69|88|71|72|75|74|75|78|77|78|86|80|81|83|83|84|85|86|87|88|89|90|91|0\n8|7|6|6|9|7|8|9|0\n58|57|49|49|48|48|51|52|53|54|47|46|46|45|45|44|42|42|40|38|35|35|36|37|34|33|32|31|31|41|32|33|34|39|36|37|38|39|40|41|43|43|44|59|56|47|55|50|50|51|52|53|54|55|56|57|58|59|0\n44|43|41|41|39|38|38|40|37|36|34|33|32|31|29|29|28|27|26|24|24|25|35|25|26|27|28|30|30|31|32|33|34|35|36|37|45|39|40|42|42|43|44|45|0\n26|25|25|24|24|28|29|23|21|21|20|19|18|17|17|31|18|19|20|22|22|23|30|27|26|27|28|29|30|31|0\n65|63|62|62|61|59|56|55|53|52|52|51|50|49|48|48|57|46|46|45|44|39|39|40|38|36|36|37|42|34|34|35|60|35|43|37|38|41|40|41|42|43|44|45|47|47|58|49|50|51|54|53|54|55|56|57|58|59|60|61|64|63|64|65|0\n27|26|26|25|23|22|21|20|20|19|18|17|16|16|29|17|18|19|24|21|22|23|24|25|28|27|28|29|0\n47|47|46|46|44|43|42|40|39|38|37|37|36|34|33|33|32|30|29|29|28|27|26|26|45|27|28|31|30|31|32|35|34|35|36|41|38|39|40|41|42|43|44|45|49|48|48|49|0\n60|59|59|58|57|56|54|54|53|53|52|50|48|47|47|46|45|45|51|63|44|42|41|40|40|38|37|36|35|35|34|34|65|39|36|37|38|39|43|41|42|43|44|64|46|49|48|49|50|51|52|62|55|55|56|57|58|61|60|61|62|63|64|65|0\n20|18|18|19|21|22|23|14|14|15|16|17|25|15|16|17|24|19|20|21|22|23|24|25|0\n9|7|6|6|8|7|8|9|0\n46|45|45|47|44|42|42|43|40|40|39|39|50|51|38|34|34|35|36|33|32|31|30|29|28|28|53|29|30|31|32|33|37|35|36|37|38|52|41|41|49|43|44|48|46|47|48|49|50|51|52|53|0\n48|47|46|44|43|43|42|41|40|40|39|38|36|34|33|33|32|30|29|29|28|26|26|27|37|27|28|31|30|31|32|35|34|35|36|37|38|39|49|41|42|45|44|45|46|47|48|49|0\n45|41|41|42|43|44|40|38|37|36|36|35|34|33|32|32|30|29|28|27|26|25|25|31|26|27|28|29|30|31|47|33|34|35|39|37|38|39|40|46|42|43|44|45|46|47|0\n19|18|17|14|13|13|12|11|11|16|12|15|14|15|16|17|18|19|0\n10|8|8|7|7|11|9|9|10|11|0\n31|28|27|26|25|24|24|23|22|21|20|19|17|17|18|30|18|19|20|21|22|23|29|25|26|27|28|29|30|31|0\n40|39|39|41|37|37|36|35|35|43|34|33|33|31|30|27|27|28|26|25|24|24|32|25|26|29|28|29|30|31|32|45|34|44|36|38|38|42|40|41|42|43|44|45|0\n41|39|37|36|36|35|34|33|32|28|26|25|25|27|29|30|24|23|22|22|40|23|24|31|26|27|28|29|30|31|32|33|34|35|38|37|38|39|40|41|0\n9|8|7|6|6|7|8|9|0\n60|59|58|57|57|56|54|53|51|51|48|46|45|45|44|43|43|49|37|37|36|35|35|39|34|34|41|33|32|32|55|33|42|40|36|38|38|39|40|41|42|50|44|47|46|47|48|49|50|52|52|53|54|55|56|61|58|59|60|61|0\n4|4|5|5|0\n17|14|14|12|11|11|10|10|16|13|12|13|15|15|16|17|0\n54|53|51|51|50|49|48|47|46|46|43|42|42|40|39|39|37|35|34|32|32|33|31|31|29|29|30|45|30|38|36|33|34|35|36|37|38|41|40|41|44|43|44|45|55|47|48|49|50|52|52|53|54|55|0\n20|20|17|17|16|15|14|13|12|12|19|13|14|15|16|18|18|19|21|21|0\n43|41|36|35|34|34|37|30|30|31|29|29|28|27|26|26|25|25|24|23|23|42|24|40|39|27|28|33|32|31|32|33|38|35|36|37|38|39|40|41|42|43|0\n29|21|21|20|20|23|24|19|19|26|18|17|16|16|28|17|18|27|25|22|22|23|24|25|26|27|28|29|0\n47|46|45|43|42|41|40|37|33|32|32|34|35|36|31|30|30|29|28|27|26|25|25|44|26|27|28|29|39|31|38|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|0\n84|83|80|80|81|79|76|76|74|72|72|73|71|70|70|69|68|67|66|66|65|62|61|60|60|59|57|56|55|55|52|52|53|54|51|49|48|46|45|45|44|44|50|47|46|47|48|49|50|51|64|53|54|58|56|57|58|59|63|61|62|63|64|65|85|67|68|69|78|71|75|73|74|75|77|77|78|79|82|81|82|83|84|85|0\n45|44|43|41|40|40|39|38|38|46|47|37|36|30|29|29|28|28|32|33|34|26|26|27|49|27|35|31|30|31|32|33|34|35|36|37|48|39|42|41|42|43|44|45|46|47|48|49|0\n56|55|54|54|53|51|51|50|48|47|47|46|46|58|59|44|43|42|42|41|40|39|37|36|34|34|32|32|33|38|61|33|35|35|36|37|38|39|40|41|45|43|44|45|60|49|48|49|50|52|52|53|57|55|56|57|58|59|60|61|0\n61|61|60|59|59|58|56|55|54|53|53|52|44|43|42|40|40|39|39|45|46|47|38|37|37|49|35|35|34|33|33|51|34|36|36|50|38|48|41|41|42|43|44|45|46|47|48|49|50|51|52|57|54|55|56|57|58|63|60|62|62|63|0\n25|24|22|21|21|20|18|17|16|15|14|14|19|15|16|17|18|19|20|23|22|23|24|25|0\n40|39|38|37|36|35|33|33|32|31|30|30|29|28|26|26|25|24|22|22|23|23|24|25|27|27|28|29|41|31|32|34|34|35|36|37|38|39|40|41|0\n46|45|44|42|41|41|40|38|38|39|37|34|32|32|33|31|28|28|27|27|26|25|25|36|26|30|29|29|30|31|35|33|34|35|36|37|47|39|40|43|42|43|44|45|46|47|0\n67|66|66|65|64|63|63|62|61|59|57|56|56|55|53|52|52|51|50|44|44|42|42|41|41|46|47|48|40|39|38|37|36|36|60|37|38|39|40|49|43|43|45|45|46|47|48|49|50|51|54|53|54|55|58|57|58|59|60|61|62|69|64|65|68|67|68|69|0\n72|71|70|69|68|67|67|65|63|62|61|59|58|58|56|56|57|53|51|50|49|49|52|54|48|46|46|45|43|42|42|41|40|39|38|38|66|39|40|41|44|43|44|45|47|47|48|55|50|51|52|53|54|55|64|57|60|59|60|61|62|63|64|65|66|73|68|69|70|71|72|73|0\n16|14|14|15|12|11|10|10|13|11|12|13|17|15|16|17|0\n21|20|20|19|18|17|16|15|14|13|13|23|14|15|16|17|18|19|22|21|22|23|0\n15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0\n35|32|32|33|34|36|37|31|28|25|25|26|24|24|29|23|22|21|21|39|22|23|30|27|26|27|28|29|30|31|38|33|34|35|36|37|38|39|0\n42|41|40|39|38|36|34|34|35|33|32|32|31|28|28|27|26|26|24|23|23|25|24|25|30|27|29|29|30|31|43|33|37|35|36|37|38|39|40|41|42|43|0\n43|37|37|38|36|33|33|34|35|40|32|30|30|26|26|27|28|24|24|25|23|23|42|25|29|27|28|29|31|31|32|41|34|35|36|39|38|39|40|41|42|43|0\n18|15|15|14|14|17|13|13|12|12|21|20|19|16|16|17|18|19|20|21|0\n44|44|43|42|41|39|38|38|37|36|36|46|47|35|33|33|32|31|29|29|28|27|26|26|49|27|28|30|30|31|32|34|34|35|48|37|40|39|40|41|42|43|45|45|46|47|48|49|0\n90|89|87|85|85|86|84|82|82|80|80|78|78|77|75|75|74|73|73|72|70|70|65|63|62|62|61|60|59|59|66|58|58|57|56|55|50|50|51|49|49|53|48|47|47|69|48|54|52|51|52|53|54|55|56|57|68|67|60|61|64|63|64|65|66|67|68|69|71|71|72|91|74|76|76|77|79|79|81|81|83|83|84|88|86|87|88|89|90|91|0\n49|47|47|48|46|44|44|43|41|40|39|39|38|37|37|34|32|32|33|31|30|28|28|27|27|36|29|29|30|31|35|33|34|35|36|51|38|42|40|41|42|43|45|45|46|50|48|49|50|51|0\n21|16|16|17|18|15|14|13|12|12|20|13|14|15|19|17|18|19|20|21|0\n33|32|31|31|34|30|28|26|26|24|24|23|22|22|20|19|19|21|20|21|29|23|25|25|27|27|28|29|30|35|32|33|34|35|0\n28|27|27|29|22|21|21|23|20|19|19|25|18|17|17|31|18|26|20|24|22|23|24|25|26|30|28|29|30|31|0\n56|54|53|53|51|51|50|47|47|48|46|45|44|44|57|43|41|40|39|38|37|37|36|35|34|33|31|31|32|59|32|33|34|35|36|42|38|39|40|41|42|43|58|45|46|49|48|49|50|52|52|55|54|55|56|57|58|59|0\n44|43|42|40|40|39|38|38|45|36|35|35|33|33|31|31|30|28|27|27|26|25|25|47|26|29|28|29|30|32|32|34|34|37|36|37|46|39|41|41|42|43|44|45|46|47|0\n17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0\n17|16|16|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0\n67|65|63|62|61|61|60|59|59|58|54|53|50|49|48|48|51|47|45|45|46|55|44|43|42|41|40|39|37|36|36|35|35|57|38|37|38|39|40|41|42|43|44|56|46|47|52|49|50|51|52|53|54|55|56|57|58|66|60|64|62|63|64|65|66|67|0\n63|62|60|59|59|58|56|56|55|47|46|46|48|45|45|50|44|44|52|53|43|42|42|41|39|39|38|37|36|34|34|35|65|35|36|37|38|40|40|41|64|43|54|51|49|47|48|49|50|51|52|53|54|55|57|57|58|61|60|61|62|63|64|65|0\n43|42|41|41|40|40|39|37|36|36|32|32|31|31|30|27|27|28|26|25|24|24|35|25|26|29|28|29|30|34|33|33|34|35|38|37|38|39|45|44|42|43|44|45|0\n30|29|29|28|28|27|24|24|25|23|23|20|19|18|18|21|22|19|20|21|22|33|26|25|26|27|32|31|30|31|32|33|0\n60|59|58|57|55|53|52|52|51|50|50|49|48|47|46|44|43|42|40|39|39|38|36|35|35|37|34|32|32|33|61|33|34|45|36|37|38|41|40|41|42|43|44|45|46|47|48|49|56|51|54|53|54|55|56|57|58|59|60|61|0\n36|34|33|33|32|32|31|29|29|27|22|22|23|21|21|25|20|20|28|26|24|23|24|25|26|27|28|30|30|31|37|35|34|35|36|37|0\n10|10|11|12|8|8|9|9|13|11|12|13|0\n18|16|15|14|13|12|11|11|17|19|12|13|14|15|16|17|18|19|0\n32|32|29|28|27|23|23|24|25|22|21|21|30|19|18|18|20|19|20|31|22|26|24|25|26|27|28|29|30|31|33|33|0\n26|24|24|23|23|22|21|21|20|18|18|17|16|16|29|17|19|19|20|28|22|27|25|25|26|27|28|29|0\n52|52|49|48|48|47|43|43|42|40|40|39|38|37|37|45|35|35|34|32|31|30|29|29|28|28|51|33|30|31|32|33|34|36|36|46|38|39|41|41|42|44|44|45|46|47|50|49|50|51|53|53|0\n45|43|41|39|39|40|38|36|35|34|34|33|31|30|30|29|27|27|26|25|24|24|44|25|26|28|28|29|32|31|32|33|37|35|36|37|38|42|40|41|42|43|44|45|0\n37|36|36|38|34|33|33|32|31|31|40|29|28|26|26|25|23|23|22|22|30|24|24|25|27|27|28|29|30|41|32|35|34|35|39|37|38|39|40|41|0\n15|14|12|11|10|9|9|13|10|11|12|13|14|15|0\n23|23|22|21|19|19|20|17|15|14|14|16|18|15|16|17|18|25|20|21|22|24|24|25|0\n37|34|33|33|35|32|31|31|38|39|30|29|25|25|26|27|24|23|22|22|41|23|24|28|26|27|28|29|30|40|32|36|34|35|36|37|38|39|40|41|0\n24|23|22|22|21|19|18|18|16|15|14|14|17|15|16|17|20|19|20|21|25|23|24|25|0\n50|49|47|47|46|45|45|43|41|40|38|36|36|35|33|33|34|32|32|31|30|29|28|27|27|44|28|29|30|31|42|39|34|35|37|37|38|39|40|41|42|43|44|51|46|48|48|49|50|51|0\n38|38|36|32|32|31|31|34|30|28|26|26|27|25|23|23|22|21|21|37|22|24|24|25|29|27|28|29|30|35|33|33|34|35|36|37|39|39|0\n37|35|35|34|34|33|30|29|29|31|28|28|26|25|24|23|22|21|21|27|22|23|24|25|26|27|39|32|30|31|32|33|38|36|36|37|38|39|0\n18|17|16|15|14|13|11|11|12|19|12|13|14|15|16|17|18|19|0\n11|8|8|7|7|10|9|9|10|11|0\n13|13|11|11|10|9|9|15|10|12|12|14|14|15|0\n28|27|27|24|23|22|20|20|21|19|16|16|17|18|26|17|18|19|25|21|22|23|24|25|26|29|28|29|0\n19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0\n37|32|31|31|33|30|29|29|28|28|26|25|24|22|20|20|21|23|27|21|22|23|24|25|26|27|36|35|30|34|32|33|34|35|36|37|0\n26|26|23|23|22|21|20|18|17|17|16|15|15|25|16|19|18|19|20|21|22|24|24|25|27|27|0\n66|60|60|61|59|59|63|58|58|57|56|55|52|51|50|49|49|53|47|45|45|46|44|44|42|41|40|39|38|37|36|35|35|43|36|37|38|39|40|41|42|43|67|48|46|47|48|54|50|51|52|53|54|55|56|57|65|64|62|61|62|63|64|65|66|67|0\n26|25|25|24|23|22|20|20|19|17|17|16|16|28|29|18|18|19|21|21|22|23|24|27|26|27|28|29|0\n35|32|32|33|34|31|30|30|28|27|26|25|24|22|22|21|20|20|29|21|23|23|24|25|26|27|28|29|37|31|36|33|34|35|36|37|0\n37|34|34|33|32|31|29|29|28|27|25|24|24|23|22|21|20|20|36|21|22|23|26|25|26|27|28|30|30|31|32|33|35|35|36|37|0\n7|6|5|5|6|7|0\n34|33|33|32|31|30|30|29|28|26|26|24|24|25|22|20|20|21|23|21|22|23|37|25|27|27|28|29|36|31|32|35|34|35|36|37|0\n33|33|34|31|30|28|27|27|25|25|23|23|22|19|19|20|21|32|20|21|22|24|24|26|26|29|28|29|30|31|32|35|34|35|0\n22|22|23|24|20|20|21|26|18|17|15|15|16|19|16|17|18|19|27|21|25|23|24|25|26|27|0\n27|26|26|25|24|22|22|23|20|18|17|17|16|16|21|19|18|19|20|21|29|23|24|25|28|27|28|29|0\n74|73|71|71|69|68|67|67|66|65|64|63|62|60|59|59|58|58|57|56|54|53|52|50|49|49|48|47|45|43|43|44|42|41|40|39|39|55|40|41|42|46|44|45|46|47|48|51|50|51|52|53|54|55|56|57|75|61|60|61|62|63|64|65|66|70|68|69|70|72|72|73|74|75|0\n46|44|43|43|42|41|41|40|35|34|33|32|31|31|36|37|29|28|28|27|26|25|25|39|26|27|30|29|30|38|32|33|34|35|36|37|38|39|40|47|42|45|44|45|46|47|0\n53|53|52|49|48|48|47|47|46|45|44|44|41|41|40|39|38|35|34|33|33|36|32|31|30|29|29|43|30|31|32|37|34|35|36|37|38|39|40|42|42|43|55|45|46|51|50|49|50|51|52|54|54|55|0\n27|26|22|22|23|21|19|17|17|18|16|15|15|25|16|20|18|19|20|21|24|23|24|25|26|27|0\n24|23|23|25|22|21|21|19|18|17|16|15|15|20|16|17|18|19|20|27|22|26|24|25|26|27|0\n39|38|35|35|36|34|34|40|41|33|31|31|30|29|27|27|25|25|24|23|23|43|24|26|26|28|28|29|30|32|32|33|42|37|36|37|38|39|40|41|42|43|0\n29|25|25|26|24|24|28|23|21|21|20|18|18|19|17|17|31|19|20|22|22|23|30|27|26|27|28|29|30|31|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n9|6|6|7|8|7|8|9|0\n25|25|26|24|22|22|20|19|19|17|16|15|15|18|16|17|18|21|20|21|23|23|24|27|26|27|0\n41|41|40|39|38|38|36|35|34|32|32|31|29|28|28|26|26|25|24|23|23|37|24|25|27|27|30|29|30|31|33|33|34|35|36|37|43|39|40|42|42|43|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n13|12|12|11|9|9|10|15|10|11|14|13|14|15|0\n27|25|22|21|21|20|19|18|17|16|16|15|15|26|24|17|18|19|20|23|22|23|24|25|26|27|0\n26|26|23|21|20|20|19|19|18|17|16|15|15|25|16|17|18|24|22|21|22|23|24|25|27|27|0\n89|87|86|85|84|83|82|81|79|78|78|76|76|73|72|71|70|69|69|68|68|67|65|64|64|59|59|60|56|56|57|55|55|62|54|53|51|51|49|49|47|47|46|46|88|48|48|50|50|52|52|53|54|63|58|57|58|61|60|61|62|63|66|65|66|67|75|74|70|71|72|73|74|75|77|77|80|79|80|81|82|83|84|85|86|87|88|89|0\n14|13|12|11|11|9|9|10|10|15|12|13|14|15|0\n39|37|35|34|34|33|31|30|29|29|28|27|26|24|22|22|23|21|21|38|25|23|24|25|26|27|28|32|30|31|32|33|36|35|36|37|38|39|0\n14|14|13|12|11|10|9|9|10|11|12|13|15|15|0\n32|31|30|29|28|28|26|25|24|23|22|20|20|19|18|18|27|19|21|21|22|23|24|25|26|27|33|29|30|31|32|33|0\n11|10|8|7|7|9|8|9|10|11|0\n21|20|20|15|15|16|14|14|18|13|13|23|19|17|16|17|18|19|22|21|22|23|0\n9|9|8|7|7|11|8|10|10|11|0\n26|25|24|23|22|22|20|18|18|17|16|15|15|21|16|17|19|19|20|21|27|23|24|25|26|27|0\n66|65|64|64|63|61|60|59|58|57|57|56|50|50|51|52|53|54|49|48|47|47|68|69|44|44|43|42|41|41|40|39|38|37|37|71|38|39|40|46|42|43|45|45|46|70|48|49|55|51|52|53|54|55|56|62|58|59|60|61|62|63|67|65|66|67|68|69|70|71|0\n9|8|8|7|7|11|10|9|10|11|0\n19|17|16|15|14|14|18|13|12|12|21|13|20|15|16|17|18|19|20|21|0\n38|37|36|35|35|34|32|32|28|28|27|26|26|25|24|23|22|21|21|31|22|23|24|25|30|27|29|29|30|31|33|33|34|39|36|37|38|39|0\n36|36|31|30|29|28|27|27|32|26|25|25|24|23|22|21|20|20|35|21|22|23|24|34|26|33|28|29|30|31|32|33|34|35|37|37|0\n6|5|5|7|6|7|0\n39|36|35|35|34|33|32|31|30|26|25|25|24|23|23|28|22|21|21|38|22|29|24|27|26|27|28|29|30|31|32|33|34|37|36|37|38|39|0\n45|42|41|41|40|39|38|35|34|34|36|33|31|31|30|29|28|27|26|25|24|24|44|25|26|27|28|29|30|32|32|33|37|35|36|37|38|39|40|43|42|43|44|45|0\n33|31|30|28|27|26|26|25|23|23|22|20|20|18|18|19|32|19|21|21|22|24|24|25|29|27|28|29|30|31|32|33|0\n57|56|56|55|53|53|51|51|49|48|47|45|43|43|44|46|39|39|38|37|37|41|36|34|32|32|33|31|31|59|35|33|34|35|36|42|38|40|40|41|42|50|44|45|46|47|48|49|50|52|52|54|54|55|58|57|58|59|0\n43|41|41|35|35|36|37|34|29|29|30|28|27|26|26|32|24|23|23|25|39|40|24|25|33|27|28|31|30|31|32|33|34|38|36|37|38|39|40|42|42|43|0\n41|40|40|39|37|36|36|35|31|30|30|29|28|28|33|27|25|25|24|23|23|43|24|26|26|27|34|29|32|31|32|33|34|35|38|37|38|39|42|41|42|43|0\n47|45|41|41|40|39|39|43|38|37|35|30|30|31|32|33|29|29|27|27|26|25|25|46|26|28|28|36|34|31|32|33|34|35|36|37|38|44|40|42|42|43|44|45|46|47|0\n25|22|21|21|20|19|18|16|16|15|14|14|24|15|17|17|18|19|20|23|22|23|24|25|0\n21|19|18|17|16|15|13|12|12|14|20|13|14|15|16|17|18|19|20|21|0\n50|49|48|46|45|45|44|43|42|42|41|40|36|35|33|33|34|37|31|31|30|29|27|27|28|39|28|29|30|32|32|38|34|35|36|37|38|39|40|41|51|43|44|47|46|47|48|49|50|51|0\n39|39|38|37|35|35|34|33|32|31|29|29|28|27|26|25|24|23|22|22|41|23|24|25|26|27|28|30|30|31|32|33|34|36|36|37|38|40|40|41|0\n10|9|9|8|7|7|8|11|10|11|0\n38|38|36|31|31|29|28|26|26|25|25|23|22|22|21|21|33|34|35|37|24|23|24|30|27|27|28|29|30|32|32|33|34|35|36|37|39|39|0\n52|51|51|50|48|47|46|46|45|42|42|43|41|40|38|37|37|36|36|54|55|35|33|32|32|31|30|30|57|31|34|33|34|35|56|39|38|39|40|41|44|43|44|45|49|47|48|49|50|53|52|53|54|55|56|57|0\n49|47|45|45|44|40|39|37|36|35|35|34|33|32|31|31|41|30|30|28|27|27|26|26|48|29|28|29|43|42|32|33|34|38|36|37|38|39|40|41|42|43|44|46|46|47|48|49|0\n51|50|47|46|45|45|48|44|43|42|41|41|52|53|40|39|38|37|36|35|35|55|34|33|32|31|30|30|57|31|32|33|34|56|36|37|38|39|40|54|42|43|44|49|46|47|48|49|50|51|52|53|54|55|56|57|0\n49|48|48|47|44|43|43|45|42|41|40|39|37|36|36|33|33|34|31|30|30|29|28|27|27|51|28|29|32|31|32|35|34|35|38|37|38|39|40|41|42|46|44|45|46|47|50|49|50|51|0\n23|22|22|21|20|19|18|17|16|14|14|15|25|15|16|17|18|19|20|21|24|23|24|25|0\n27|26|25|24|22|22|23|28|29|21|20|19|18|17|17|31|18|19|20|21|30|23|24|25|26|27|28|29|30|31|0\n19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n74|73|71|70|70|69|69|68|66|65|64|63|63|58|56|55|54|54|53|52|51|50|50|59|60|49|48|46|45|44|42|42|43|41|40|39|39|62|40|41|47|43|44|45|46|47|48|49|61|51|52|53|57|55|56|57|58|59|60|61|62|67|64|65|66|67|68|75|72|71|72|73|74|75|0\n18|18|17|16|13|12|12|11|11|15|14|13|14|15|16|17|19|19|0\n10|10|8|7|7|9|8|9|11|11|0\n31|29|27|27|24|24|23|22|21|21|20|19|18|17|17|30|18|19|20|26|22|23|25|25|26|28|28|29|30|31|0\n41|39|37|36|36|35|34|33|31|31|30|28|27|27|26|24|24|23|22|22|40|23|25|25|26|29|28|29|30|32|32|33|34|35|38|37|38|39|40|41|0\n56|52|51|50|50|53|54|49|48|46|46|45|43|41|40|39|39|42|44|38|36|36|34|33|32|31|30|30|35|31|32|33|34|35|37|37|38|57|40|41|42|43|44|45|47|47|48|49|55|51|52|53|54|55|56|57|0\n58|57|57|56|55|53|53|54|60|61|50|50|49|48|48|47|45|45|43|42|41|40|38|37|37|36|36|35|34|33|33|63|34|35|44|39|38|39|40|41|42|43|44|46|46|47|52|49|51|51|52|62|54|55|56|59|58|59|60|61|62|63|0\n47|46|46|45|43|43|42|41|40|40|38|37|36|35|33|32|30|29|28|28|27|27|26|26|39|34|31|29|30|31|32|33|34|35|36|37|38|39|49|41|42|44|44|45|48|47|48|49|0\n37|35|34|32|32|31|30|29|28|25|24|23|22|22|26|21|20|20|36|21|27|23|24|25|26|27|28|29|30|31|33|33|34|35|36|37|0\n38|36|36|37|34|33|30|30|29|28|26|26|27|25|23|23|22|21|21|35|22|24|24|25|32|27|28|29|31|31|32|33|34|35|39|37|38|39|0\n12|10|10|9|8|8|13|9|11|11|12|13|0\n68|68|67|66|66|65|64|63|61|61|59|59|58|55|55|53|53|52|52|57|71|49|48|47|46|45|45|50|44|42|41|41|40|39|38|38|73|39|40|43|42|43|44|51|46|47|48|49|50|51|72|54|54|56|56|57|58|60|60|62|62|63|64|65|70|67|69|69|70|71|72|73|0\n30|29|29|28|26|24|24|23|22|21|20|19|18|17|17|27|18|19|20|21|22|23|25|25|26|27|28|31|30|31|0\n9|8|7|6|6|7|8|9|0\n39|38|37|36|35|35|40|41|34|33|31|31|30|29|28|26|25|25|24|23|23|43|24|27|26|27|28|29|30|32|32|33|34|42|36|37|38|39|40|41|42|43|0\n54|53|52|49|48|48|50|47|46|45|43|41|41|40|39|39|38|37|37|36|34|34|32|30|29|29|31|33|30|31|32|33|35|35|36|55|38|44|40|42|42|43|44|45|46|47|51|49|50|51|52|53|54|55|0\n32|31|31|30|26|26|27|28|25|24|23|22|22|21|20|19|19|35|20|21|34|23|24|25|29|27|28|29|30|33|32|33|34|35|0\n40|39|39|36|35|34|33|31|30|29|29|28|27|26|25|24|24|23|22|22|38|23|37|25|26|27|28|32|30|31|32|33|34|35|36|37|38|41|40|41|0\n60|59|57|57|56|55|54|53|52|45|44|43|42|42|46|47|48|49|50|41|38|37|36|36|39|35|33|33|32|32|61|34|34|35|40|37|38|39|40|41|51|43|44|45|46|47|48|49|50|51|52|53|54|55|56|58|58|59|60|61|0\n35|32|32|30|29|28|28|27|26|25|24|20|20|21|22|19|19|34|23|21|22|23|24|25|26|27|31|29|30|31|33|33|34|35|0\n28|28|25|21|21|22|23|20|19|19|18|17|16|16|27|17|18|26|20|24|22|23|24|25|26|27|29|29|0\n60|58|57|57|56|55|53|52|52|51|47|47|48|46|46|50|45|43|42|42|40|39|37|36|36|35|34|33|32|32|41|33|34|35|38|37|38|39|40|41|44|43|44|45|61|49|48|49|50|51|54|53|54|55|56|59|58|59|60|61|0\n69|67|65|65|64|63|62|58|56|55|54|53|53|52|51|51|59|60|47|47|48|46|46|45|44|42|41|41|40|38|37|37|36|36|68|39|38|39|40|43|42|43|44|45|50|49|48|49|50|61|52|57|54|55|56|57|58|59|60|61|62|63|64|66|66|67|68|69|0\n52|52|53|54|55|49|49|50|47|46|44|43|42|42|41|36|36|37|38|39|35|35|34|32|32|31|30|30|57|31|33|33|34|48|40|37|38|39|40|41|45|43|44|45|46|47|48|51|50|51|56|53|54|55|56|57|0\n46|45|42|42|39|39|40|38|37|35|35|34|34|33|32|32|31|30|27|27|26|25|25|29|26|28|28|29|30|31|47|33|44|36|36|37|38|41|40|41|43|43|44|45|46|47|0\n41|41|40|39|38|38|34|33|33|35|31|30|30|28|28|27|25|25|24|23|23|37|24|26|26|27|29|29|32|31|32|36|34|35|36|37|43|39|40|42|42|43|0\n64|63|61|61|60|57|57|58|55|55|54|53|53|52|51|49|48|47|44|43|43|42|41|40|39|38|38|37|35|34|34|36|50|35|36|37|46|39|40|41|42|45|44|45|46|47|48|49|50|51|52|65|54|56|56|59|58|59|60|62|62|63|64|65|0\n27|24|22|22|21|19|18|18|17|17|16|15|15|26|16|25|20|19|20|21|23|23|24|25|26|27|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n35|33|32|31|30|29|29|34|28|27|27|25|24|23|21|21|20|20|26|22|22|23|24|25|26|37|28|36|30|31|32|33|34|35|36|37|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n19|19|18|18|17|15|15|13|12|12|14|13|14|16|16|17|21|20|20|21|0\n28|28|29|26|26|25|24|23|20|19|19|21|18|17|17|31|18|22|20|21|22|23|24|25|27|27|30|29|30|31|0\n33|31|30|29|28|26|25|24|24|23|21|21|20|18|18|19|32|19|20|22|22|23|27|25|26|27|28|29|30|31|32|33|0\n56|54|53|52|51|49|49|48|48|47|45|45|43|43|42|41|40|39|39|38|36|35|35|32|32|31|30|30|34|31|33|33|34|37|36|37|38|57|40|41|42|44|44|46|46|47|55|50|50|51|52|53|54|55|56|57|0\n83|82|81|80|80|77|77|78|75|74|73|73|72|71|71|70|69|67|62|62|61|59|58|56|56|57|60|52|52|53|54|51|51|65|50|47|47|48|46|45|44|44|68|45|46|49|48|49|50|66|55|53|54|55|64|57|58|59|60|61|63|63|64|65|66|67|68|69|70|85|72|76|74|75|76|79|78|79|84|81|82|83|84|85|0\n60|60|59|57|55|55|54|53|52|52|51|50|50|62|63|48|48|47|46|45|44|42|41|39|39|40|38|37|35|35|34|34|65|36|36|37|38|43|40|41|42|43|44|45|46|47|49|49|64|51|58|53|54|56|56|57|58|59|61|61|62|63|64|65|0\n33|32|32|31|31|29|26|26|25|24|24|23|22|21|20|19|19|30|20|21|22|23|28|25|27|27|28|29|30|35|34|33|34|35|0\n19|17|15|15|14|12|11|11|13|18|12|13|14|16|16|17|18|19|0\n3|3|0\n24|24|23|21|20|19|18|16|16|15|14|14|22|15|17|17|18|19|20|21|22|23|25|25|0\n53|52|52|51|48|48|49|47|43|42|41|40|40|44|45|46|39|37|37|35|33|31|31|32|30|29|29|36|30|34|32|33|34|35|36|38|38|39|55|41|42|43|44|45|46|47|50|49|50|51|54|53|54|55|0\n57|56|54|53|53|52|51|50|48|48|47|47|58|59|46|45|44|42|41|38|38|39|40|37|36|34|34|33|32|32|61|33|35|35|36|37|43|39|40|41|42|43|44|45|46|60|49|49|50|51|52|55|54|55|56|57|58|59|60|61|0\n46|43|43|42|41|40|39|39|38|37|36|35|35|47|29|29|30|28|28|32|33|27|26|26|49|27|34|31|30|31|32|33|34|48|36|37|38|45|40|41|42|44|44|45|46|47|48|49|0\n22|21|19|19|20|18|17|16|13|13|14|15|14|15|16|17|18|23|20|21|22|23|0\n25|24|23|22|22|21|20|19|18|17|15|15|16|27|16|17|18|19|20|21|26|23|24|25|26|27|0\n45|40|40|35|34|33|33|36|31|31|30|29|29|38|28|28|42|27|26|24|24|25|44|25|26|27|43|39|30|32|32|37|34|35|36|37|38|39|41|41|42|43|44|45|0\n34|33|32|31|29|27|27|26|25|25|24|23|22|22|35|21|20|20|37|21|36|23|24|30|26|28|28|29|30|31|32|33|34|35|36|37|0\n71|69|69|68|66|65|65|64|64|72|73|62|62|61|60|57|56|56|55|54|54|53|52|50|50|48|44|43|43|45|42|42|41|41|40|39|39|75|40|49|47|46|44|45|46|47|48|49|51|51|52|53|59|55|58|57|58|59|60|61|63|63|74|67|66|67|68|70|70|71|72|73|74|75|0\n68|65|65|66|64|63|62|61|61|60|58|55|54|53|53|56|57|51|50|48|48|47|45|45|44|43|38|38|39|37|37|41|36|36|52|42|40|39|40|41|42|43|44|46|46|47|49|49|50|51|52|59|54|55|56|57|58|59|60|69|62|63|64|67|66|67|68|69|0\n19|18|18|20|16|13|13|14|12|12|17|15|14|15|16|17|21|19|20|21|0\n66|66|61|60|60|62|63|58|58|53|53|54|52|52|56|51|50|49|48|46|45|44|43|43|41|40|39|39|38|37|35|35|36|65|36|37|38|42|40|41|42|47|44|45|46|47|48|49|50|51|57|55|54|55|56|57|59|59|64|61|62|63|64|65|67|67|0\n63|63|64|62|61|60|59|59|66|57|54|52|52|51|50|50|49|49|48|46|45|44|43|41|41|42|40|39|38|36|36|35|35|58|37|37|38|39|40|47|42|43|44|45|46|47|48|56|55|51|53|53|54|55|56|57|58|67|60|61|62|65|64|65|66|67|0\n30|29|28|28|27|26|25|24|23|22|21|19|18|18|17|17|20|19|20|21|22|23|24|25|26|27|31|29|30|31|0\n32|30|29|29|28|28|27|26|24|22|22|21|20|19|18|18|25|19|20|21|23|23|24|25|26|27|33|31|30|31|32|33|0\n43|42|42|41|39|38|37|36|36|35|34|33|32|30|30|31|28|27|25|25|24|24|29|26|26|27|28|29|45|31|32|33|34|35|40|37|38|39|40|41|44|43|44|45|0\n18|18|16|14|12|12|13|11|11|17|15|13|14|15|16|17|19|19|0\n65|65|63|63|61|60|60|59|58|57|57|56|55|53|50|50|51|48|48|47|46|45|43|43|41|41|39|38|38|35|35|36|37|54|36|37|40|39|40|42|42|44|44|45|46|47|49|49|52|51|52|53|54|55|56|67|58|59|62|61|62|64|64|66|66|67|0\n36|36|33|32|31|29|27|27|28|26|25|24|24|22|22|21|20|20|35|21|23|23|34|25|26|30|28|29|30|31|32|33|34|35|37|37|0\n56|56|57|54|54|52|51|50|50|49|48|47|45|43|43|41|41|40|39|37|37|38|36|34|32|31|31|33|35|59|32|33|34|35|36|46|38|39|40|42|42|44|44|45|46|47|48|49|53|51|52|53|55|55|58|57|58|59|0\n49|47|42|41|41|43|44|45|39|34|34|35|36|33|33|32|31|31|40|30|29|26|26|27|28|27|28|29|30|48|32|38|37|35|36|37|38|39|40|46|42|43|44|45|46|47|48|49|0\n52|52|53|51|50|49|49|48|46|46|44|42|39|39|40|41|38|33|33|32|31|30|30|35|36|29|29|45|37|31|32|34|34|35|36|37|38|43|40|41|42|43|44|45|47|47|48|55|50|51|54|53|54|55|0\n32|32|29|28|28|25|24|23|22|22|26|20|19|19|18|18|31|21|20|21|27|23|24|25|26|27|30|29|30|31|33|33|0\n21|19|18|17|15|15|14|13|12|12|20|13|14|16|16|17|18|19|20|21|0\n42|40|38|38|37|36|35|35|34|31|31|32|30|30|29|28|26|25|24|23|23|27|24|25|26|27|28|29|43|33|32|33|34|41|36|37|39|39|40|41|42|43|0\n23|22|19|19|17|17|16|15|14|13|13|21|14|15|16|18|18|20|20|21|22|23|0\n37|35|34|33|32|31|31|30|28|28|27|25|24|23|22|21|20|20|26|21|22|23|24|25|26|27|29|29|30|36|32|33|34|35|36|37|0\n77|76|76|75|73|72|72|71|70|69|69|67|66|65|63|62|61|61|60|55|54|54|56|53|52|51|50|49|49|58|48|47|45|43|43|44|42|41|41|68|42|46|44|45|46|47|48|59|50|51|52|53|57|55|56|57|58|59|60|64|62|63|64|65|66|67|68|79|70|71|74|73|74|75|78|77|78|79|0\n24|22|22|21|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|21|23|23|24|25|0\n13|13|12|12|10|9|9|11|10|11|15|14|14|15|0\n35|33|32|32|34|31|30|27|25|25|26|28|29|22|21|21|20|20|24|23|22|23|24|37|26|27|28|29|30|31|36|33|34|35|36|37|0\n31|30|29|29|28|24|24|22|22|21|21|26|20|19|18|18|33|19|20|27|23|23|25|25|26|27|28|32|30|31|32|33|0\n34|34|31|29|28|28|27|26|25|25|24|23|22|21|20|19|19|33|20|21|22|23|24|32|26|27|30|29|30|31|32|33|35|35|0\n11|10|7|7|8|9|8|9|10|11|0\n31|29|25|25|24|24|27|23|22|20|20|19|18|17|17|30|18|19|21|21|22|23|28|26|26|27|28|29|30|31|0\n56|55|55|54|53|52|51|51|58|59|50|49|46|44|44|43|43|47|42|41|39|38|37|36|35|34|33|33|32|32|61|40|34|35|36|37|38|39|40|41|42|48|45|45|46|47|48|49|50|60|52|53|54|57|56|57|58|59|60|61|0\n37|32|31|31|30|30|34|29|28|26|26|25|24|23|21|21|20|20|36|22|22|23|24|25|27|27|28|29|35|33|32|33|34|35|36|37|0\n42|38|37|37|36|34|34|33|33|40|30|30|31|28|27|27|26|24|24|23|23|43|25|25|26|29|28|29|32|31|32|41|35|35|36|39|38|39|40|41|42|43|0\n41|38|38|37|37|36|33|32|32|31|29|29|28|27|27|26|24|22|22|23|25|23|24|25|26|35|28|30|30|31|34|33|34|35|36|40|39|39|40|41|0\n32|31|30|29|29|28|26|25|25|23|21|20|19|19|18|18|24|22|20|21|22|23|24|27|26|27|28|33|30|31|32|33|0\n77|77|78|79|72|72|73|71|71|75|67|66|65|65|68|64|58|57|57|59|56|55|55|61|62|53|52|52|51|49|49|48|48|47|46|45|44|42|42|43|81|43|44|45|46|47|70|50|50|51|54|53|54|63|56|60|58|59|60|61|62|63|64|69|66|67|68|69|70|76|74|73|74|75|76|80|78|79|80|81|0\n66|65|65|61|61|62|56|54|54|55|51|51|50|50|49|48|48|58|59|47|45|44|44|43|42|41|39|39|37|37|35|35|36|64|36|38|38|40|40|41|42|43|46|45|46|47|60|49|53|52|52|53|57|55|56|57|58|59|60|63|62|63|64|67|66|67|0\n17|16|15|15|12|12|13|14|11|11|19|13|14|18|16|17|18|19|0\n10|10|9|7|7|8|8|9|11|11|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n55|55|56|54|53|53|58|50|48|48|47|46|46|45|44|43|42|41|39|39|38|37|35|34|34|33|32|31|31|52|32|33|36|35|36|37|38|40|40|41|42|43|44|45|51|47|49|49|50|51|52|59|54|57|56|57|58|59|0\n26|25|25|24|24|23|21|21|20|19|19|17|16|16|18|17|18|29|20|22|22|23|28|27|26|27|28|29|0\n49|46|45|44|42|41|39|38|38|36|36|37|35|33|33|34|32|31|31|28|28|27|26|26|30|27|29|29|30|48|32|47|34|35|43|37|40|39|40|41|42|43|44|45|46|47|48|49|0\n23|21|18|17|17|19|16|15|14|13|13|22|14|15|16|20|18|19|20|21|22|23|0\n37|36|31|29|29|30|27|26|26|28|33|25|23|23|22|21|20|20|35|21|22|24|24|25|34|27|28|32|30|31|32|33|34|35|36|37|0\n59|51|50|49|49|48|47|46|45|45|53|54|44|42|41|39|39|40|38|37|36|36|56|35|34|32|32|31|31|58|33|33|34|35|57|37|38|43|40|41|42|43|44|55|46|47|48|52|50|51|52|53|54|55|56|57|58|59|0\n56|55|54|53|53|52|50|50|44|43|41|41|42|40|37|36|36|38|35|34|34|46|47|31|31|30|30|33|49|32|32|33|48|35|39|37|38|39|40|45|42|43|44|45|46|47|48|49|51|51|52|57|54|55|56|57|0\n24|23|22|21|20|20|18|17|16|15|14|14|19|15|16|17|18|19|25|21|22|23|24|25|0\n36|36|35|34|33|33|38|32|32|40|30|29|28|27|26|25|24|23|22|22|31|23|24|25|26|27|28|29|30|31|41|39|34|35|37|37|38|39|40|41|0\n31|28|27|26|24|24|25|23|21|20|20|18|18|17|17|30|19|19|22|21|22|23|29|25|26|27|28|29|30|31|0\n50|50|48|47|46|45|42|39|39|38|38|37|36|36|43|35|34|33|32|30|29|28|28|27|27|49|31|29|30|31|32|33|34|35|44|37|41|40|40|41|42|43|44|45|46|47|48|49|51|51|0\n33|31|29|29|28|27|25|25|24|22|22|19|19|20|18|18|32|21|20|21|23|23|24|26|26|27|28|30|30|31|32|33|0\n25|24|23|22|22|21|20|18|18|17|16|15|15|27|16|17|19|19|20|21|26|23|24|25|26|27|0\n68|66|65|65|64|63|63|62|56|56|55|53|52|52|51|51|58|59|49|47|47|46|45|44|43|42|41|41|40|39|38|36|36|37|61|37|38|39|40|50|42|43|44|45|46|48|48|49|50|60|54|53|54|55|57|57|58|59|60|61|62|69|64|67|66|67|68|69|0\n36|35|33|31|31|32|30|29|29|37|28|27|25|24|24|26|22|21|21|23|22|23|39|25|26|27|28|38|30|34|32|33|34|35|36|37|38|39|0\n46|46|44|40|40|39|37|37|38|42|35|35|34|32|31|30|28|28|29|27|26|25|25|45|26|27|33|29|30|31|32|33|34|36|36|43|38|39|41|41|42|43|44|45|47|47|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n18|18|15|15|11|11|12|13|14|17|12|13|14|16|16|17|19|19|0\n50|49|48|47|47|46|44|43|42|41|41|40|39|38|37|37|52|53|36|34|34|33|31|31|29|29|30|55|30|32|32|33|35|35|36|54|38|39|40|45|42|43|44|45|46|51|48|49|50|51|52|53|54|55|0\n42|41|39|38|38|37|33|33|32|32|35|30|29|29|28|27|26|25|24|23|23|43|24|25|26|27|28|31|30|31|36|34|34|35|36|37|40|39|40|41|42|43|0\n21|20|17|17|16|14|14|13|12|12|19|13|15|15|16|18|18|19|20|21|0\n31|30|26|25|25|27|24|22|21|21|20|19|17|17|18|29|18|19|20|23|22|23|24|28|26|27|28|29|30|31|0\n23|23|22|22|25|20|20|21|27|18|17|17|16|16|29|19|18|19|28|21|26|24|24|25|26|27|28|29|0\n49|47|45|44|43|43|42|39|38|37|37|40|35|34|34|33|32|30|30|29|28|27|26|26|48|27|28|29|31|31|32|33|36|35|36|41|38|39|40|41|42|46|44|45|46|47|48|49|0\n57|57|58|59|60|55|54|54|53|53|62|52|50|48|47|45|44|43|42|42|41|40|39|39|38|37|36|35|34|33|33|51|34|35|36|37|38|49|40|41|46|43|44|45|46|47|48|49|50|51|52|63|56|55|56|61|58|59|60|61|62|63|0\n24|23|22|22|17|16|16|18|19|15|14|14|21|15|20|17|18|19|20|21|25|23|24|25|0\n52|52|48|46|46|45|44|44|49|43|42|41|40|36|36|37|38|32|32|33|31|31|30|29|28|28|51|29|30|35|34|33|34|35|39|37|38|39|40|41|42|43|50|45|47|47|48|49|50|51|53|53|0\n19|17|16|15|14|13|11|11|12|18|12|13|14|15|16|17|18|19|0\n10|7|7|8|9|11|8|9|10|11|0\n70|69|69|64|63|61|60|60|62|65|59|59|58|57|55|51|50|50|52|53|54|49|47|46|46|44|44|42|41|40|40|39|38|37|37|68|38|39|43|41|42|43|45|45|48|47|48|49|56|51|52|53|54|55|56|57|58|67|66|61|62|63|64|65|66|67|68|71|70|71|0\n53|51|47|46|45|44|44|43|41|41|42|49|39|37|37|38|36|35|34|33|32|29|29|30|28|28|52|31|30|31|32|33|34|35|36|40|38|39|40|50|42|43|48|45|46|47|48|49|50|51|52|53|0\n23|22|21|21|20|19|19|25|18|17|16|15|15|27|16|17|18|26|20|24|22|23|24|25|26|27|0\n18|17|16|16|15|14|11|11|12|13|12|13|14|15|19|17|18|19|0\n57|57|56|56|55|53|53|52|50|47|47|46|45|45|49|44|43|42|42|60|61|40|39|38|37|37|36|35|34|33|33|63|34|35|36|41|38|39|40|41|62|43|44|51|46|48|48|49|50|51|52|54|54|55|59|58|58|59|60|61|62|63|0\n28|27|26|24|24|23|22|22|21|20|19|17|16|16|18|17|18|19|20|21|29|23|25|25|26|27|28|29|0\n15|11|10|9|9|12|13|14|10|11|12|13|14|15|0\n30|30|28|27|25|25|24|22|22|21|20|19|18|17|17|29|18|19|20|21|23|23|24|26|26|27|28|29|31|31|0\n22|21|20|19|15|15|16|17|18|14|13|13|14|23|16|17|18|19|20|21|22|23|0\n9|8|7|6|6|7|8|9|0\n62|62|61|59|58|58|57|55|55|54|49|49|50|48|48|52|53|64|65|45|44|44|43|42|41|41|39|38|38|37|36|35|35|67|36|37|40|39|40|47|42|43|46|45|46|47|66|51|50|51|52|53|54|56|56|57|60|59|60|61|63|63|64|65|66|67|0\n15|14|12|12|11|9|9|10|10|11|13|13|14|15|0\n54|53|52|50|49|48|48|47|45|45|44|44|43|41|40|40|38|37|36|34|34|33|31|30|30|29|29|39|32|31|32|33|35|35|36|37|38|39|42|41|42|43|55|46|46|47|51|49|50|51|52|53|54|55|0\n41|39|37|37|36|32|32|31|30|29|29|34|28|27|25|25|24|22|22|23|40|23|24|26|26|27|28|35|30|31|33|33|34|35|36|38|38|39|40|41|0\n60|59|57|57|54|53|53|52|50|50|49|45|44|44|46|47|48|43|40|40|41|39|38|37|37|36|34|33|32|32|35|33|34|35|36|61|38|39|42|41|42|43|56|45|46|47|48|49|51|51|52|55|54|55|56|58|58|59|60|61|0\n19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0\n37|33|33|32|31|31|30|27|26|25|25|28|24|23|22|21|20|20|36|21|22|23|24|29|26|27|28|29|30|35|32|34|34|35|36|37|0\n47|45|45|43|41|40|40|39|38|37|36|34|34|33|31|31|30|28|28|27|26|25|25|44|26|27|29|29|30|32|32|33|35|35|36|37|38|39|42|41|42|43|44|46|46|47|0\n33|31|28|27|27|29|26|25|23|22|21|21|20|18|18|19|32|19|20|24|22|23|24|25|26|30|28|29|30|31|32|33|0\n14|12|11|11|10|9|9|15|10|13|12|13|14|15|0\n60|60|53|52|51|51|50|50|55|56|49|47|46|44|43|43|42|41|41|39|39|40|38|37|36|35|33|33|32|32|59|34|34|35|36|37|38|58|40|48|42|45|44|45|46|47|48|49|57|54|52|53|54|55|56|57|58|59|61|61|0\n20|19|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|21|20|21|0\n62|61|60|58|57|57|56|56|55|54|52|51|50|49|48|47|45|44|43|43|41|40|40|39|37|36|35|35|34|33|33|53|34|38|36|37|38|39|42|41|42|46|44|45|46|47|48|49|50|51|52|53|54|55|63|59|58|59|60|61|62|63|0\n49|49|48|46|46|47|44|42|42|41|40|39|38|36|36|35|34|33|29|28|28|30|31|27|27|45|32|29|30|31|32|33|34|35|37|37|38|39|40|41|43|43|44|45|51|47|48|50|50|51|0\n39|37|34|33|33|35|32|30|30|27|27|28|26|24|23|23|21|21|22|38|22|25|24|25|26|29|28|29|31|31|32|36|34|35|36|37|38|39|0\n35|33|31|30|29|29|28|27|26|25|24|22|21|21|20|19|19|34|20|23|22|23|24|25|26|27|28|32|30|31|32|33|34|35|0\n25|22|22|21|20|15|14|14|16|17|18|19|24|15|16|17|18|19|20|21|23|23|24|25|0\n33|32|29|28|27|26|26|25|23|23|22|21|20|18|18|19|31|19|20|21|22|24|24|25|30|27|28|29|30|31|32|33|0\n27|26|26|25|22|21|19|19|20|23|18|18|16|16|17|17|29|24|20|21|22|23|24|25|28|27|28|29|0\n39|37|34|34|33|33|32|27|27|28|29|30|25|23|23|24|22|21|21|38|22|26|24|25|26|31|28|29|30|31|32|36|35|35|36|37|38|39|0\n31|30|29|28|27|26|26|32|33|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|34|27|28|29|30|31|32|33|34|35|0\n54|53|52|51|51|50|48|48|47|47|56|57|45|45|44|43|42|41|40|40|59|39|38|36|36|35|34|33|32|32|61|33|34|35|37|37|38|39|60|41|42|43|44|46|46|58|49|49|50|55|52|53|54|55|56|57|58|59|60|61|0\n36|35|34|33|33|32|30|29|28|27|26|26|25|23|21|21|20|20|24|22|22|23|24|25|31|27|28|29|30|31|32|37|34|35|36|37|0\n31|31|29|29|28|27|25|24|23|23|22|21|20|19|18|18|33|19|20|21|22|26|24|25|26|27|28|30|30|32|32|33|0\n19|18|18|17|17|15|14|12|12|13|16|13|14|15|16|21|20|19|20|21|0\n21|19|17|15|15|16|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0\n98|97|95|95|94|93|92|92|91|90|88|87|86|86|85|83|81|80|79|77|75|75|76|78|74|72|71|71|70|65|64|64|63|63|67|68|62|61|60|58|57|57|56|55|54|53|52|51|51|84|52|53|54|55|56|59|58|59|60|61|62|69|66|65|66|67|68|69|70|73|72|73|74|82|76|77|78|79|80|81|82|83|84|85|89|87|88|89|90|91|99|93|94|96|96|97|98|99|0\n70|70|68|67|65|65|66|64|63|62|62|72|61|60|58|58|57|56|54|54|52|52|51|49|49|46|46|47|45|44|44|74|75|43|42|40|40|41|77|41|42|43|76|45|48|47|48|50|50|51|53|53|55|55|56|57|59|59|60|61|73|63|64|69|66|67|68|69|71|71|72|73|74|75|76|77|0\n8|8|9|7|7|11|10|9|10|11|0\n34|32|32|31|29|28|28|27|26|26|35|25|24|21|21|22|20|20|37|23|22|23|24|25|36|27|30|29|30|31|33|33|34|35|36|37|0\n28|27|26|26|24|23|22|21|20|18|18|17|16|16|25|17|19|19|20|21|22|23|24|25|29|27|28|29|0\n26|25|25|24|23|21|21|22|28|29|19|19|18|17|17|31|18|20|20|30|22|23|24|27|26|27|28|29|30|31|0\n8|8|9|7|7|11|10|9|10|11|0\n52|52|51|49|49|48|44|44|43|43|46|42|42|54|55|41|37|37|36|36|39|35|34|33|31|30|30|32|57|31|32|33|34|35|40|38|38|39|40|41|56|47|45|45|46|47|48|50|50|51|53|53|54|55|56|57|0\n26|25|25|24|22|22|20|19|18|17|16|15|15|21|16|17|18|19|20|21|23|23|24|27|26|27|0\n40|38|38|37|37|35|34|33|27|27|28|26|26|30|31|24|24|23|22|22|36|23|25|25|32|29|28|29|30|31|32|33|34|35|36|41|39|39|40|41|0\n63|62|61|61|60|58|58|57|56|55|55|54|53|52|51|50|49|49|66|67|48|45|44|44|43|42|41|41|40|38|38|37|36|36|69|37|39|39|40|47|42|43|46|45|46|47|48|68|50|51|52|53|54|65|56|57|59|59|60|64|62|63|64|65|66|67|68|69|0\n10|10|8|7|7|9|8|9|11|11|0\n23|22|22|21|21|18|18|17|15|15|14|14|20|16|16|17|19|19|20|25|24|23|24|25|0\n11|9|8|7|7|10|8|9|10|11|0\n78|77|76|76|79|80|75|73|72|72|74|71|69|69|67|66|65|64|63|62|61|52|52|53|54|55|56|57|58|59|51|50|49|48|47|47|46|45|44|43|43|83|44|45|46|68|48|49|50|51|60|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|68|70|70|71|82|73|74|75|81|77|78|79|80|81|82|83|0\n33|32|32|31|29|29|28|26|26|25|25|23|21|20|20|19|19|24|22|21|22|23|24|35|27|27|28|30|30|31|34|33|34|35|0\n45|42|42|43|44|41|36|35|35|34|33|32|31|31|38|39|30|29|28|28|27|26|25|25|26|27|47|29|30|40|32|33|34|37|36|37|38|39|40|41|46|43|44|45|46|47|0\n32|31|31|33|30|28|28|26|26|25|23|22|22|21|20|19|19|35|20|21|24|23|24|25|27|27|29|29|30|34|32|33|34|35|0\n32|31|29|28|28|27|26|25|25|24|22|22|21|19|18|18|20|19|20|21|23|23|24|33|26|27|30|29|30|31|32|33|0\n28|25|25|26|24|22|21|21|20|20|19|16|16|17|18|17|18|19|29|23|22|23|24|27|26|27|28|29|0\n17|17|15|14|14|13|12|11|11|19|12|13|16|15|16|18|18|19|0\n7|7|6|6|9|8|8|9|0\n26|26|25|25|24|20|20|21|22|19|19|17|16|16|18|17|18|29|23|21|22|23|24|28|27|27|28|29|0\n37|35|35|33|31|30|29|29|28|26|25|25|24|24|23|22|21|20|20|21|22|23|34|27|26|27|28|32|30|31|32|33|34|36|36|37|0\n61|59|58|57|56|55|55|54|52|52|49|46|45|45|47|44|43|42|40|40|39|37|37|36|34|34|33|32|32|50|51|33|35|35|36|38|38|39|41|41|42|43|44|48|46|47|48|49|50|51|53|53|54|60|56|57|58|59|60|61|0\n17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0\n22|21|21|20|19|17|16|15|14|13|13|18|14|15|16|17|18|19|20|23|22|23|0\n64|63|60|60|61|58|57|56|55|54|53|52|52|51|50|49|48|48|65|45|45|46|44|43|42|41|40|39|38|37|35|35|36|67|36|37|38|39|40|41|42|43|44|47|46|47|66|49|50|51|59|53|54|55|56|57|58|59|62|61|62|63|64|65|66|67|0\n26|25|25|21|21|22|20|18|17|17|16|15|15|24|16|19|18|19|20|23|22|23|24|27|26|27|0\n22|21|20|19|19|15|15|16|14|13|13|18|14|17|16|17|18|23|20|21|22|23|0\n31|30|29|28|28|27|26|25|24|24|23|23|22|20|20|19|19|35|21|21|22|34|33|25|26|27|32|29|30|31|32|33|34|35|0\n40|40|37|37|36|32|31|31|30|30|34|28|28|27|26|26|24|23|22|22|25|23|24|25|39|27|29|29|35|33|32|33|34|35|36|38|38|39|41|41|0\n37|36|34|33|32|31|29|29|27|26|25|25|24|23|22|21|20|20|35|21|22|23|24|28|26|27|28|30|30|31|32|33|34|35|36|37|0\n41|39|38|37|37|36|34|33|32|31|31|35|42|43|28|28|27|27|26|24|24|25|45|25|26|30|29|29|30|44|32|33|34|35|36|40|38|39|40|41|42|43|44|45|0\n47|45|45|43|43|42|41|40|38|38|37|37|48|49|35|35|34|33|31|30|30|29|28|27|27|51|28|29|32|31|32|33|34|36|36|50|39|39|40|41|42|44|44|46|46|47|48|49|50|51|0\n18|18|17|16|16|15|15|21|14|13|13|23|14|22|20|17|19|19|20|21|22|23|0\n37|35|33|33|31|28|28|29|30|27|26|25|24|23|22|20|20|21|36|21|22|23|24|25|26|27|32|29|30|31|32|34|34|35|36|37|0\n73|68|65|63|62|62|64|66|60|59|59|58|57|56|55|54|53|52|52|69|70|50|49|47|47|46|45|43|42|42|41|39|39|40|38|38|72|51|40|41|44|43|44|45|46|48|48|49|50|51|71|53|54|55|56|57|58|61|60|61|67|63|64|65|66|67|68|69|70|71|72|73|0\n61|57|57|56|53|53|54|48|48|47|45|44|44|43|42|42|50|51|39|39|40|38|37|36|35|34|33|32|32|59|60|33|34|35|36|37|38|41|40|41|52|43|46|45|46|47|49|49|50|51|52|55|54|55|56|58|58|59|60|61|0\n7|6|5|5|6|7|0\n11|11|12|9|8|8|10|9|10|13|12|13|0\n36|35|34|34|37|30|29|29|31|32|28|27|26|26|39|25|24|23|22|22|41|23|24|25|40|27|28|33|30|31|32|33|38|35|36|37|38|39|40|41|0\n17|15|14|14|12|11|10|10|13|11|12|13|16|15|16|17|0\n37|37|36|35|31|31|32|33|30|29|28|27|26|25|24|24|22|21|21|23|22|23|39|25|26|27|28|29|30|34|32|33|34|35|36|38|38|39|0\n50|50|51|49|48|48|47|46|44|43|42|40|36|36|37|38|35|34|34|33|31|31|30|29|28|28|45|29|30|32|32|33|41|35|39|37|38|39|40|41|42|43|44|45|46|47|53|49|52|51|52|53|0\n36|34|34|33|32|32|31|29|29|27|25|23|23|24|22|21|20|20|28|21|22|26|24|25|26|27|28|30|30|31|37|33|35|35|36|37|0\n38|37|34|33|32|31|31|35|30|29|27|27|28|26|24|23|21|21|22|25|22|23|24|25|26|39|28|29|30|36|32|33|34|35|36|37|38|39|0\n26|24|24|23|22|22|21|20|19|17|16|15|15|18|16|17|18|19|20|21|27|23|25|25|26|27|0\n42|41|41|39|38|38|37|36|35|34|31|30|29|28|27|27|32|26|25|23|23|24|24|25|26|33|28|29|30|31|32|33|34|35|36|37|40|39|40|43|42|43|0\n47|46|45|45|44|42|41|41|40|39|39|37|36|34|33|33|32|30|29|29|28|26|26|27|38|27|28|31|30|31|32|35|34|35|36|37|38|49|40|43|42|43|44|48|46|47|48|49|0\n48|48|47|47|50|51|44|43|42|42|41|39|39|38|36|36|35|34|33|32|30|30|31|29|28|28|53|29|46|31|32|33|34|35|37|37|38|40|40|41|45|43|44|45|46|52|49|49|50|51|52|53|0\n48|45|44|43|43|42|42|41|40|38|38|39|37|36|35|31|30|30|32|27|27|28|26|26|34|29|28|29|33|31|32|33|34|35|36|37|49|39|40|41|47|46|44|45|46|47|48|49|0\n45|44|43|43|42|40|40|39|39|36|35|34|33|32|31|31|30|28|28|27|26|25|25|38|26|27|29|29|30|37|32|33|34|35|36|37|38|47|41|41|42|46|44|45|46|47|0\n20|20|21|22|19|17|17|15|14|13|13|16|14|15|16|18|18|19|23|21|22|23|0\n79|78|77|77|76|75|74|73|72|71|70|69|69|81|67|67|64|64|65|63|60|60|59|59|58|56|54|54|53|52|51|48|48|49|47|45|45|43|43|44|57|83|44|46|46|47|50|49|50|51|52|53|55|55|56|57|58|62|61|61|62|63|66|65|66|68|68|82|70|71|72|73|74|75|76|80|78|79|80|81|82|83|0\n46|46|45|44|43|42|42|48|49|41|40|39|36|35|34|33|33|37|32|31|30|29|27|27|28|51|28|29|30|31|32|38|34|35|36|37|38|39|40|41|50|43|44|45|47|47|48|49|50|51|0\n21|18|15|14|14|16|13|13|12|12|20|19|17|15|16|17|18|19|20|21|0\n35|34|33|32|32|31|31|29|28|26|26|25|24|23|22|20|20|21|30|21|22|23|24|25|27|27|28|29|30|37|36|33|34|35|36|37|0\n21|20|17|16|16|18|14|12|12|13|15|13|14|15|19|17|18|19|20|21|0\n25|23|23|24|22|21|20|19|17|17|16|15|15|27|16|18|18|19|20|21|22|26|24|25|26|27|0\n43|41|38|37|36|35|35|39|34|33|32|31|30|29|27|26|26|25|24|23|23|42|24|25|28|27|28|29|30|31|32|33|34|40|36|37|38|39|40|41|42|43|0\n57|44|44|45|43|43|47|42|42|41|39|38|37|37|40|36|36|51|35|35|53|34|33|33|32|31|30|30|56|31|32|55|34|54|52|50|38|39|40|41|49|48|46|45|46|47|48|49|50|51|52|53|54|55|56|57|0\n31|31|30|29|29|25|23|22|22|21|21|26|20|19|18|18|28|19|20|27|24|23|24|25|26|27|28|33|30|32|32|33|0\n17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0\n29|27|26|25|24|22|21|21|20|19|18|17|16|16|28|17|18|19|20|23|22|23|24|25|26|27|28|29|0\n22|21|20|19|19|18|15|15|14|13|13|17|14|16|16|17|18|23|20|21|22|23|0\n50|49|49|48|48|47|44|44|45|43|43|53|41|40|40|39|38|36|35|35|34|33|31|30|30|29|29|55|32|31|32|33|34|37|36|37|38|39|42|41|42|54|46|45|46|47|52|51|50|51|52|53|54|55|0\n56|54|54|53|51|50|49|49|48|48|47|44|44|43|43|40|38|37|37|36|36|41|35|34|33|32|31|30|30|31|32|33|34|35|42|39|38|39|40|41|42|46|45|45|46|47|57|52|50|51|52|53|55|55|56|57|0\n40|38|38|34|34|35|33|33|37|32|31|29|27|26|26|25|24|22|22|23|30|23|24|25|28|27|28|29|30|31|32|41|36|35|36|37|39|39|40|41|0\n35|35|34|33|33|31|29|28|28|27|23|23|24|25|21|21|20|20|32|22|22|26|24|25|26|27|30|29|30|31|32|37|34|36|36|37|0\n13|13|11|11|10|9|9|15|10|12|12|14|14|15|0\n47|46|45|44|42|42|41|40|39|38|36|36|35|34|33|33|48|49|32|29|29|30|28|27|27|51|28|31|30|31|32|50|34|35|37|37|38|39|40|41|43|43|44|45|46|47|48|49|50|51|0\n18|18|16|13|13|14|12|11|11|17|12|15|14|15|16|17|19|19|0\n42|42|43|44|41|37|35|35|36|34|34|39|32|32|31|30|29|29|46|27|26|25|25|28|26|27|28|47|30|31|33|33|40|38|36|37|38|39|40|41|45|43|44|45|46|47|0\n54|54|52|50|49|49|51|47|45|45|44|41|40|40|42|39|38|36|36|35|34|33|32|31|30|29|29|48|30|31|32|33|34|35|37|37|38|39|43|41|42|43|44|46|46|47|48|53|50|51|52|53|55|55|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n35|33|32|32|31|29|29|27|26|23|23|22|22|21|20|19|19|28|20|21|25|24|24|25|26|27|28|30|30|31|34|33|34|35|0\n27|26|26|24|24|25|23|23|30|31|21|21|20|19|18|18|33|19|20|22|22|32|29|25|28|27|28|29|30|31|32|33|0\n67|67|66|64|64|63|63|69|61|60|59|57|56|56|55|54|50|50|49|48|47|47|52|44|44|43|42|41|41|40|39|38|38|37|37|71|62|39|40|46|42|43|45|45|46|53|48|49|51|51|52|53|54|55|58|57|58|59|60|61|62|70|65|65|66|68|68|69|70|71|0\n19|19|20|18|17|14|14|13|12|12|16|13|15|15|16|17|18|21|20|21|0\n64|63|63|61|60|55|54|53|53|52|51|50|50|57|49|47|46|46|45|45|44|43|40|40|41|38|37|37|36|35|34|34|62|35|36|39|38|39|42|41|42|43|44|59|48|47|48|49|58|51|52|56|54|55|56|57|58|59|60|61|62|65|64|65|0\n23|20|19|19|18|17|16|15|14|13|13|22|14|15|16|17|18|21|20|21|22|23|0\n29|26|26|23|23|24|22|21|20|19|18|17|16|16|28|17|18|19|20|21|22|25|24|25|27|27|28|29|0\n34|32|31|31|30|28|27|27|26|25|24|23|23|22|21|19|19|20|20|21|22|35|24|25|26|29|28|29|30|33|32|33|34|35|0\n42|41|41|40|39|38|37|36|34|34|33|29|28|27|27|30|31|25|24|24|23|23|26|25|26|32|28|29|30|31|32|33|35|35|36|37|38|39|40|43|42|43|0\n76|76|75|74|72|72|71|70|69|68|66|65|64|64|63|61|61|60|59|57|57|56|53|53|52|48|48|47|47|50|46|46|55|78|44|43|42|41|41|45|42|43|44|45|79|51|49|49|50|51|52|54|54|55|56|58|58|59|60|62|62|63|67|65|66|67|68|69|70|71|73|73|74|75|77|77|78|79|0\n80|79|79|78|77|75|73|72|71|70|70|69|65|65|66|64|64|60|60|59|59|62|57|56|55|54|54|53|52|51|49|49|48|46|44|44|45|43|42|42|76|43|47|45|46|47|48|50|50|51|52|53|58|55|56|57|58|63|61|61|62|63|68|67|66|67|68|69|74|71|72|73|74|75|76|77|78|81|80|81|0\n21|19|18|17|15|15|14|12|12|13|20|13|14|16|16|17|18|19|20|21|0\n18|18|17|17|20|21|16|15|14|13|13|23|14|15|16|22|19|19|20|21|22|23|0\n28|25|25|26|27|23|21|20|19|18|17|17|16|16|24|22|18|19|20|21|22|23|24|29|26|27|28|29|0\n24|23|23|21|20|18|15|15|16|17|14|14|22|19|16|17|18|19|20|21|22|25|24|25|0\n21|21|20|19|19|16|16|15|13|13|14|18|14|15|17|17|18|23|20|22|22|23|0\n29|28|25|25|26|27|24|22|22|20|20|19|18|17|17|31|18|19|21|21|23|23|24|30|26|27|28|29|30|31|0\n15|15|14|11|11|12|10|10|17|13|12|13|14|16|16|17|0\n51|51|48|47|46|46|49|44|43|43|40|40|41|39|38|36|35|35|34|33|32|31|30|29|28|28|53|29|30|31|32|33|34|37|36|37|38|39|42|41|42|45|44|45|50|47|48|49|50|52|52|53|0\n29|29|28|28|27|25|24|23|22|22|20|19|18|17|17|21|18|19|20|21|26|23|24|25|26|27|31|30|30|31|0\n64|63|62|58|57|57|56|56|60|55|51|51|50|50|53|49|49|48|47|45|42|42|43|41|40|38|38|37|36|35|34|34|46|35|36|37|39|39|40|41|44|43|44|45|46|47|48|65|54|52|52|53|54|55|61|59|58|59|60|61|62|63|64|65|0\n9|8|7|7|10|11|8|9|10|11|0\n37|36|34|31|31|30|28|27|27|29|26|25|23|23|22|21|20|20|35|21|22|24|24|25|26|33|28|29|30|32|32|33|34|35|36|37|0\n33|33|32|31|30|28|25|25|26|27|24|22|22|21|20|19|19|35|20|21|23|23|24|29|26|27|28|29|30|31|32|34|34|35|0\n34|34|32|32|31|30|28|28|27|27|36|37|26|25|24|23|22|21|21|39|22|23|24|25|26|38|29|29|30|31|33|33|35|35|36|37|38|39|0\n35|33|32|31|30|29|26|26|25|25|24|23|22|20|19|19|21|34|20|21|22|23|24|28|27|27|28|29|30|31|32|33|34|35|0\n32|31|29|28|28|27|26|22|22|23|24|21|20|20|18|18|19|19|33|21|25|23|24|25|26|27|30|29|30|31|32|33|0\n26|25|24|22|22|23|21|19|18|16|16|15|15|20|17|17|18|19|20|21|27|23|24|25|26|27|0\n19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0\n12|9|9|10|11|8|8|13|10|11|12|13|0\n50|50|42|42|41|40|40|44|45|38|38|35|35|36|34|34|47|32|31|31|30|30|27|27|28|29|28|29|49|33|32|33|48|37|36|37|39|39|46|41|43|43|44|45|46|47|48|49|51|51|0\n34|33|32|31|30|30|28|27|25|24|24|23|22|20|20|21|19|19|29|21|22|23|26|25|26|27|28|29|35|31|32|33|34|35|0\n29|27|27|26|23|23|22|20|19|19|18|17|16|16|25|17|18|21|20|21|22|24|24|25|26|28|28|29|0\n24|21|21|22|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|23|22|23|24|25|0\n10|10|8|7|7|9|8|9|11|11|0\n25|20|19|19|21|22|18|17|16|15|14|14|24|15|16|17|18|23|20|21|22|23|24|25|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n45|44|44|42|42|41|40|40|39|38|36|34|34|33|31|31|30|29|27|27|26|25|25|37|26|28|28|29|30|32|32|33|35|35|36|37|38|39|47|41|43|43|46|45|46|47|0\n46|44|44|43|43|42|41|40|39|39|48|49|37|36|36|35|34|32|32|31|30|29|28|27|27|51|28|29|30|31|33|33|34|35|38|37|38|50|40|41|42|47|45|45|46|47|48|49|50|51|0\n60|58|58|57|55|52|52|53|54|51|51|50|48|48|46|44|44|43|41|40|39|38|38|37|36|35|34|33|32|32|47|33|34|35|36|37|42|39|40|41|42|43|45|45|46|47|49|49|50|61|56|53|54|55|56|57|59|59|60|61|0\n58|56|56|55|53|53|54|52|50|49|49|45|45|44|42|41|40|40|43|39|39|37|34|34|35|33|32|31|31|38|32|33|36|35|36|37|38|48|47|41|42|43|44|46|46|47|48|51|50|51|52|59|54|55|57|57|58|59|0\n31|30|29|28|28|27|27|25|23|22|21|21|20|18|18|19|26|19|20|24|22|23|24|25|26|33|32|29|30|31|32|33|0\n26|23|23|24|22|21|21|20|19|17|16|15|15|18|16|17|18|19|20|27|22|25|24|25|26|27|0\n47|46|46|48|45|44|44|50|43|42|41|41|52|53|39|38|38|37|36|33|33|34|32|31|30|29|29|55|30|31|32|35|34|35|36|37|40|39|40|54|42|43|51|45|49|47|48|49|50|51|52|53|54|55|0\n55|53|50|50|49|49|48|43|42|41|40|39|38|38|37|37|45|46|36|35|34|33|31|31|30|29|29|54|30|32|32|33|34|35|36|47|44|39|40|41|42|43|44|45|46|47|48|52|51|51|52|53|54|55|0\n52|51|50|49|49|48|46|45|44|44|43|41|40|39|38|37|36|34|31|31|32|33|30|29|28|28|42|29|30|35|32|33|34|35|36|37|38|39|40|41|42|43|47|45|46|47|48|53|50|51|52|53|0\n35|34|33|32|32|31|29|29|27|27|25|25|24|24|23|21|20|20|22|21|22|23|37|26|26|28|28|30|30|31|36|33|34|35|36|37|0\n33|33|32|29|28|28|30|27|26|24|22|21|21|23|20|19|19|35|20|25|22|23|24|25|26|27|31|29|30|31|32|34|34|35|0\n21|21|20|18|18|19|17|16|14|13|13|15|14|15|16|17|23|19|20|22|22|23|0\n20|19|18|17|15|15|16|12|12|13|14|13|14|21|16|17|18|19|20|21|0\n21|19|18|17|12|12|13|14|15|16|20|13|14|15|16|17|18|19|20|21|0\n60|60|59|59|58|57|57|53|52|50|50|51|54|48|47|47|46|45|43|43|40|39|39|41|37|37|36|35|34|33|33|56|34|35|36|38|38|42|40|41|42|44|44|45|46|49|48|49|55|51|52|53|54|55|56|63|58|62|61|61|62|63|0\n36|35|35|33|33|34|38|39|32|31|30|28|27|27|25|24|24|23|22|22|41|23|26|25|26|29|28|29|30|31|32|40|34|37|36|37|38|39|40|41|0\n12|10|10|9|8|8|13|9|11|11|12|13|0\n29|26|25|24|22|22|23|21|20|19|17|17|16|16|28|18|18|19|20|21|27|23|24|25|26|27|28|29|0\n59|56|56|57|54|53|51|51|52|50|48|47|47|46|46|60|61|44|43|43|42|41|40|38|36|35|35|34|34|33|33|63|39|37|36|37|38|39|40|41|42|45|44|45|62|49|48|49|50|55|52|53|54|55|58|57|58|59|60|61|62|63|0\n22|22|18|17|17|16|14|14|15|13|13|21|20|15|16|19|18|19|20|21|23|23|0\n55|54|54|56|50|49|49|48|47|47|52|46|44|43|43|42|34|34|35|36|32|32|33|38|39|40|41|58|31|31|59|33|37|35|36|37|38|39|40|41|42|45|44|45|46|53|48|51|50|51|52|53|57|55|56|57|58|59|0\n34|34|32|27|27|26|25|25|24|24|30|23|20|20|21|19|19|33|22|21|22|23|31|29|26|28|28|29|30|31|32|33|35|35|0\n40|40|33|33|32|31|29|29|28|27|27|35|36|37|26|25|24|23|22|22|39|23|24|25|26|38|28|30|30|31|32|34|34|35|36|37|38|39|41|41|0\n39|39|40|41|37|37|36|35|34|32|32|31|30|25|25|26|24|24|28|23|23|43|29|27|26|27|28|29|30|31|33|33|34|35|36|38|38|42|40|41|42|43|0\n20|19|18|17|16|16|21|22|23|14|14|15|25|15|24|17|18|19|20|21|22|23|24|25|0\n50|50|49|48|46|46|45|43|42|41|40|39|38|38|44|52|53|37|36|34|33|33|30|30|31|29|29|55|32|31|32|35|34|35|36|37|54|39|40|41|42|43|44|45|47|47|48|49|51|51|52|53|54|55|0\n30|29|29|28|27|27|26|20|20|21|19|19|23|24|18|18|33|25|22|21|22|23|24|25|26|32|28|31|30|31|32|33|0\n78|77|77|76|71|69|68|68|67|67|66|65|65|73|63|62|61|61|60|58|57|57|56|54|53|53|52|49|47|46|46|48|50|44|44|43|42|41|41|75|42|43|45|45|51|47|48|49|50|51|52|55|54|55|56|59|58|59|60|64|62|63|64|74|66|72|70|69|70|71|72|73|74|75|76|79|78|79|0\n51|50|50|49|47|47|48|53|54|46|43|43|44|45|56|57|42|40|40|38|38|36|35|35|34|34|33|31|31|32|32|33|59|37|36|37|39|39|41|41|42|58|44|45|46|55|48|49|52|51|52|53|54|55|56|57|58|59|0\n16|16|14|12|11|11|10|10|15|13|12|13|14|15|17|17|0\n18|18|17|15|14|14|11|11|12|13|12|13|16|15|16|17|19|19|0\n29|28|26|25|25|24|23|23|30|31|22|20|19|18|18|21|33|19|20|21|22|32|24|27|26|27|28|29|30|31|32|33|0\n29|27|26|23|22|21|21|20|20|19|18|17|16|16|28|17|18|19|25|24|22|23|24|25|26|27|28|29|0\n67|65|64|60|59|56|55|52|52|53|51|51|50|49|48|48|47|46|45|44|44|61|62|43|42|41|40|39|37|37|36|35|35|66|36|38|38|39|40|41|42|43|63|45|46|47|58|49|50|57|54|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|0\n22|22|20|18|18|17|15|14|14|13|13|21|16|15|16|17|19|19|20|21|23|23|0\n16|16|15|14|13|13|18|12|11|11|12|19|14|15|17|17|18|19|0\n79|78|77|77|75|75|73|73|72|71|71|67|67|62|60|60|59|58|57|57|56|55|54|54|64|65|51|49|49|48|47|47|52|46|45|44|44|43|42|42|70|43|69|45|46|53|48|50|50|51|52|53|66|55|56|63|58|59|61|61|62|63|64|65|66|68|68|69|70|81|72|74|74|76|76|80|78|79|80|81|0\n9|7|6|6|8|7|8|9|0\n25|24|23|22|22|21|21|27|20|18|18|17|16|16|29|17|19|19|20|28|26|23|24|25|26|27|28|29|0\n43|40|40|39|37|37|36|33|32|32|31|29|29|28|28|27|26|25|23|23|24|42|24|25|26|27|35|30|30|31|34|33|34|35|36|38|38|39|41|41|42|43|0\n55|50|50|49|47|46|46|45|44|44|52|43|40|40|39|38|37|36|36|35|33|33|32|30|29|29|31|54|30|31|32|34|34|35|42|37|38|39|41|41|42|43|53|45|48|47|48|49|51|51|52|53|54|55|0\n25|22|21|21|20|17|17|16|15|15|14|14|24|19|16|18|18|19|20|23|22|23|24|25|0\n18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0\n39|39|40|37|35|34|34|33|30|29|28|28|26|25|24|24|23|23|22|22|38|32|27|25|26|27|31|29|30|31|32|33|36|35|36|37|38|41|40|41|0\n33|31|29|28|27|27|26|24|23|21|20|20|22|19|18|18|32|19|25|21|22|23|24|25|26|30|28|29|30|31|32|33|0\n8|6|6|7|9|7|8|9|0\n51|49|49|48|47|47|46|45|44|42|42|43|39|39|34|34|33|33|36|37|31|30|30|29|28|28|41|29|32|31|32|38|35|35|36|37|38|40|40|41|53|43|44|45|46|52|48|50|50|51|52|53|0\n42|37|37|38|39|36|36|41|34|33|32|29|28|28|27|26|26|25|24|23|23|35|24|25|31|27|30|29|30|31|32|33|34|35|43|40|38|39|40|41|42|43|0\n37|35|34|31|30|29|28|28|32|27|25|25|23|23|22|21|20|20|36|21|22|24|24|26|26|27|33|29|30|31|32|33|34|35|36|37|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n38|37|35|35|34|33|32|31|31|29|26|25|25|27|22|22|23|21|21|30|24|23|24|28|26|27|28|29|30|39|32|33|34|36|36|37|38|39|0\n32|31|31|29|28|27|26|24|22|21|20|20|23|19|18|18|30|19|25|21|22|23|24|25|26|27|28|29|30|33|32|33|0\n17|13|13|12|12|11|10|10|16|11|15|14|14|15|16|17|0\n35|34|34|33|31|31|26|26|25|25|28|24|24|23|21|21|22|20|20|37|22|23|30|29|27|27|28|29|30|32|32|33|36|35|36|37|0\n21|21|22|19|19|17|17|18|16|15|14|14|25|15|16|24|18|20|20|23|22|23|24|25|0\n34|32|32|29|28|28|30|27|27|35|26|23|21|21|22|24|20|20|37|25|22|23|24|25|26|36|31|29|30|31|33|33|34|35|36|37|0\n29|27|26|22|22|21|20|20|24|19|19|17|16|16|18|17|18|28|25|21|23|23|24|25|26|27|28|29|0\n39|37|37|36|35|35|40|41|34|32|32|30|29|29|28|27|26|25|24|23|23|43|24|25|26|27|28|31|30|31|33|33|34|42|36|38|38|39|40|41|42|43|0\n19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n17|17|18|19|16|15|14|13|12|12|21|13|14|15|16|20|18|19|20|21|0\n18|18|15|15|13|12|12|11|11|17|14|13|14|16|16|17|19|19|0\n18|18|17|16|14|12|12|11|11|15|13|13|14|15|16|17|19|19|0\n66|65|64|63|56|56|57|58|54|54|55|60|61|52|52|53|51|48|47|47|46|44|44|45|42|40|40|39|37|37|36|35|35|43|36|38|38|39|41|41|42|43|50|45|46|49|48|49|50|51|67|53|62|55|59|57|58|59|60|61|62|63|64|65|66|67|0\n47|47|46|43|43|44|42|41|40|40|39|37|36|35|34|32|31|31|30|29|27|27|26|26|38|28|28|29|30|33|32|33|34|35|36|37|38|39|49|41|42|45|44|45|46|48|48|49|0\n21|21|20|19|18|17|16|16|14|13|13|15|14|15|23|17|18|19|20|22|22|23|0\n38|37|35|34|34|33|32|32|31|29|28|27|27|25|24|23|22|21|21|26|22|23|24|25|26|30|28|29|30|31|39|33|36|35|36|37|38|39|0\n50|48|46|46|45|45|44|42|42|41|40|40|39|38|36|32|32|33|34|31|30|28|28|27|27|37|29|29|30|31|35|33|34|35|36|37|38|39|51|41|43|43|44|49|47|47|48|49|50|51|0\n35|33|32|27|27|26|26|29|30|24|24|23|21|21|19|19|20|34|20|22|22|23|25|25|31|28|28|29|30|31|32|33|34|35|0\n49|49|48|48|46|45|42|42|43|41|39|37|36|35|35|38|34|32|32|31|30|29|28|27|27|47|28|29|30|31|33|33|34|40|36|37|38|39|40|41|44|43|44|45|46|47|51|50|50|51|0\n9|8|8|7|7|11|10|9|10|11|0\n23|23|22|21|20|20|25|19|18|17|16|15|15|27|16|17|18|19|26|21|22|24|24|25|26|27|0\n31|29|28|26|25|25|24|23|22|20|19|19|18|17|17|30|18|21|20|21|22|23|24|27|26|27|28|29|30|31|0\n27|27|26|24|24|25|23|18|18|19|17|17|16|16|22|21|20|19|20|21|22|23|29|25|26|28|28|29|0\n21|19|17|17|16|14|14|13|12|12|20|13|15|15|16|18|18|19|20|21|0\n40|39|38|37|37|36|34|31|31|32|30|30|29|28|26|24|24|23|22|22|27|23|25|25|26|27|28|29|35|33|32|33|34|35|36|41|38|39|40|41|0\n23|21|19|18|17|17|16|14|13|13|15|22|14|15|16|20|18|19|20|21|22|23|0\n63|60|59|58|57|57|56|52|52|49|49|50|48|48|54|44|43|42|41|40|39|39|45|38|38|35|35|34|33|33|37|62|34|36|36|37|47|46|40|41|42|43|44|45|46|47|55|51|50|51|53|53|54|55|56|61|58|59|60|61|62|63|0\n28|27|26|26|24|22|22|21|20|18|18|17|16|16|25|17|19|19|20|21|23|23|24|25|29|27|28|29|0\n47|46|45|43|43|42|40|40|39|38|37|37|36|34|34|33|32|32|31|30|28|27|26|26|29|27|28|29|30|31|49|33|35|35|36|48|38|39|41|41|42|44|44|45|46|47|48|49|0\n59|59|58|57|57|55|53|53|52|51|50|49|45|45|44|43|42|41|40|40|47|38|37|36|35|34|33|32|32|39|56|33|34|35|36|37|38|39|48|41|42|43|44|46|46|47|48|49|50|51|52|54|54|55|56|61|58|60|60|61|0\n31|30|28|27|27|26|24|24|25|32|33|22|22|21|19|19|20|35|20|21|23|23|34|25|26|29|28|29|30|31|32|33|34|35|0\n67|63|62|61|60|59|58|58|64|57|52|51|50|50|53|49|48|47|46|46|55|44|44|43|41|40|40|39|38|37|36|35|35|66|36|37|38|39|42|41|42|43|45|45|56|47|48|49|54|51|52|53|54|55|56|57|65|59|60|61|62|63|64|65|66|67|0\n34|33|32|31|31|26|25|24|24|27|28|23|22|19|19|20|21|30|20|21|22|23|29|25|26|27|28|29|30|35|32|33|34|35|0\n35|32|32|31|31|34|30|29|29|27|26|24|23|22|22|21|20|20|28|21|25|23|24|25|26|27|28|37|30|36|33|33|34|35|36|37|0\n22|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0\n46|45|45|44|42|41|41|40|36|36|37|35|35|39|48|49|32|31|31|30|29|29|28|27|27|51|28|34|30|33|32|33|34|50|38|37|38|39|40|43|42|43|44|47|46|47|48|49|50|51|0\n15|13|11|10|9|9|12|14|10|11|12|13|14|15|0\n37|35|33|32|32|31|26|25|24|24|27|23|22|22|29|21|20|20|36|21|30|23|28|25|26|27|28|29|30|31|34|33|34|35|36|37|0\n53|53|52|51|50|50|55|49|48|46|45|43|42|42|44|41|39|39|38|37|32|32|33|31|31|35|30|30|57|36|34|33|34|35|36|37|38|40|40|41|47|43|44|45|46|47|48|49|56|51|52|54|54|55|56|57|0\n26|25|23|23|22|22|27|20|19|19|18|17|16|16|29|17|18|21|20|21|28|24|24|25|26|27|28|29|0\n82|82|80|79|77|77|76|74|73|73|72|69|67|67|66|65|64|64|70|63|59|59|58|56|56|55|54|54|61|51|50|49|49|52|48|46|45|44|44|43|43|81|47|45|46|47|48|53|50|51|52|53|62|55|57|57|58|60|60|61|62|63|71|65|66|68|68|69|70|71|72|75|74|75|76|78|78|79|80|81|83|83|0\n10|7|7|8|9|11|8|9|10|11|0\n18|16|15|15|14|13|12|11|11|19|12|13|14|17|16|17|18|19|0\n52|48|47|47|49|50|46|45|45|53|44|40|40|39|38|37|37|42|35|34|34|33|31|31|30|29|29|55|30|32|32|33|36|35|36|43|38|39|41|41|42|43|44|54|46|51|48|49|50|51|52|53|54|55|0\n35|35|34|33|33|31|30|29|28|27|26|24|22|20|20|21|23|25|32|21|22|23|24|25|26|27|28|29|30|31|32|37|34|36|36|37|0\n53|52|49|49|48|47|47|46|44|43|43|42|41|40|39|38|37|37|54|55|36|35|33|32|32|31|30|30|57|31|34|33|34|35|36|56|38|39|40|41|42|45|44|45|46|51|48|50|50|51|52|53|54|55|56|57|0\n35|32|30|27|27|28|29|26|26|25|24|22|22|21|19|19|20|34|20|21|23|23|24|25|33|31|28|29|30|31|32|33|34|35|0\n34|32|32|31|30|30|29|28|25|25|24|23|22|21|20|19|19|27|20|21|22|23|24|26|26|27|28|29|35|31|33|33|34|35|0\n43|42|42|41|40|39|38|37|37|35|32|32|33|31|30|29|27|26|26|25|24|24|36|25|28|27|28|29|30|31|34|33|34|35|36|45|38|39|40|41|44|43|44|45|0\n64|63|62|62|61|61|60|58|58|57|56|55|55|52|49|48|48|47|46|45|44|44|43|43|42|40|38|36|36|37|39|35|35|54|41|37|38|39|40|41|42|53|51|45|46|47|50|49|50|51|52|53|54|67|56|57|59|59|60|66|65|63|64|65|66|67|0\n10|10|8|7|7|9|8|9|11|11|0\n5|4|4|5|0\n55|55|54|53|52|50|50|49|47|47|45|45|44|43|43|41|40|39|37|37|36|35|33|32|32|31|30|30|42|31|34|33|34|35|36|38|38|39|40|41|42|57|44|46|46|48|48|49|51|51|52|53|54|56|56|57|0\n43|42|37|34|34|35|33|33|38|39|32|29|29|28|27|27|26|25|24|23|23|41|24|25|26|31|28|30|30|31|32|40|36|35|36|37|38|39|40|41|42|43|0\n52|50|49|48|48|47|47|42|42|41|39|39|40|37|36|36|34|34|33|32|32|45|30|30|28|28|29|29|31|31|46|33|35|35|38|37|38|44|40|41|43|43|44|45|46|53|51|49|50|51|52|53|0\n34|34|35|33|32|32|31|30|29|29|38|39|28|26|26|25|23|22|22|24|41|23|24|25|27|27|28|40|30|31|37|33|36|35|36|37|38|39|40|41|0\n25|24|23|22|22|21|21|20|19|17|16|15|15|18|16|17|18|19|20|27|26|23|24|25|26|27|0\n26|26|24|24|23|22|21|21|28|29|20|19|18|17|17|31|18|19|20|30|22|23|25|25|27|27|28|29|30|31|0\n42|42|39|38|37|37|35|35|34|33|32|31|30|28|28|27|26|25|24|23|23|41|24|25|26|27|29|29|30|31|32|33|34|36|36|40|38|39|40|41|43|43|0\n64|60|60|61|62|58|58|57|56|56|55|54|53|51|51|47|46|45|45|44|43|41|41|42|39|39|37|36|35|35|34|34|50|38|36|37|38|40|40|49|42|43|44|48|46|47|48|49|50|52|52|53|54|55|65|57|59|59|63|61|62|63|64|65|0\n62|61|58|57|57|56|56|55|54|53|53|52|50|50|48|47|45|44|43|42|42|41|38|37|35|34|34|36|39|33|33|49|40|35|36|37|38|39|40|41|46|43|44|45|46|47|48|49|51|51|52|63|54|55|60|59|58|59|60|61|62|63|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n15|14|14|13|11|11|12|10|10|17|12|13|16|15|16|17|0\n33|30|30|29|29|27|26|24|23|23|22|21|19|19|18|18|28|20|20|21|22|25|24|25|26|27|28|32|31|31|32|33|0\n58|57|56|55|54|52|51|51|50|49|48|46|45|44|44|43|42|40|40|39|38|36|35|34|34|37|33|32|31|31|32|33|59|35|36|37|38|39|41|41|42|43|47|45|46|47|48|49|50|53|52|53|54|55|56|57|58|59|0\n51|50|50|49|45|44|44|46|43|42|42|48|38|37|35|35|36|39|34|33|32|30|30|29|28|28|41|29|31|31|32|33|34|40|36|37|38|39|40|41|53|43|47|45|46|47|48|49|52|51|52|53|0\n33|31|26|25|24|23|23|27|28|29|22|21|20|18|18|19|32|19|20|21|22|30|24|25|26|27|28|29|30|31|32|33|0\n40|38|38|37|36|36|35|31|30|29|29|32|28|27|27|25|24|23|22|22|26|23|24|25|26|34|28|33|30|31|32|33|34|35|41|37|39|39|40|41|0\n38|37|37|35|34|33|32|30|29|29|28|27|26|24|23|23|22|21|21|36|22|25|24|25|26|27|28|31|30|31|32|33|34|35|36|39|38|39|0\n22|22|21|20|19|18|18|24|25|17|16|15|15|27|16|17|26|19|20|21|23|23|24|25|26|27|0\n33|31|27|27|26|25|25|29|21|21|22|20|19|19|18|18|32|24|20|23|22|23|24|30|26|28|28|29|30|31|32|33|0\n43|41|40|39|37|37|36|35|34|31|31|32|30|28|28|27|25|25|23|23|24|42|24|26|26|27|29|29|30|33|32|33|34|35|36|38|38|39|40|41|42|43|0\n53|50|49|49|48|47|43|43|44|45|42|41|40|38|38|37|35|34|32|32|33|31|30|29|28|28|52|29|30|31|36|33|34|35|36|37|39|39|40|41|42|46|44|45|46|47|48|51|50|51|52|53|0\n37|36|35|33|31|30|29|29|28|26|26|25|22|22|23|21|20|20|34|21|24|23|24|25|27|27|28|32|30|31|32|33|34|35|36|37|0\n77|75|74|70|70|69|68|67|67|72|64|62|61|61|63|60|59|58|57|56|55|54|52|52|53|51|50|49|47|46|46|45|44|42|41|41|40|40|76|43|42|43|44|45|48|47|48|49|50|51|66|53|54|55|56|57|58|59|60|65|62|63|64|65|66|73|68|69|71|71|72|73|74|75|76|77|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n41|39|38|37|35|33|31|31|30|29|28|27|27|34|26|24|24|23|22|22|40|23|25|25|26|36|28|29|30|32|32|33|34|35|36|37|38|39|40|41|0\n49|47|47|45|44|43|42|41|39|38|36|35|34|33|33|37|32|30|30|29|28|27|26|26|46|27|28|29|31|31|32|40|34|35|36|37|38|39|40|41|42|43|44|45|46|48|48|49|0\n19|18|17|15|14|14|13|12|11|11|12|13|16|15|16|17|18|19|0\n37|35|31|30|29|28|28|27|27|33|26|25|24|22|21|21|20|20|36|23|22|23|24|25|26|34|32|29|30|31|32|33|34|35|36|37|0\n33|31|29|29|27|27|26|25|24|23|22|21|20|19|18|18|32|19|20|21|22|23|24|25|26|28|28|30|30|31|32|33|0\n77|76|75|74|73|72|71|69|69|68|62|62|61|59|59|58|57|57|56|53|53|54|55|65|51|51|52|49|49|48|45|45|46|43|42|42|41|40|40|41|44|43|44|47|46|47|48|50|50|67|52|66|54|55|56|64|58|60|60|61|63|63|64|65|66|67|68|70|70|71|72|73|74|75|76|77|0\n30|29|28|28|26|26|25|24|24|32|33|23|22|21|19|19|20|35|20|21|22|23|34|25|27|27|31|29|30|31|32|33|34|35|0\n40|39|38|37|37|36|29|27|27|28|30|31|32|33|34|24|24|23|22|22|26|23|25|25|26|35|28|29|30|31|32|33|34|35|36|41|38|39|40|41|0\n74|73|72|71|70|69|68|66|65|65|67|63|61|60|60|59|57|56|56|54|54|53|51|50|49|47|47|48|46|44|44|42|42|41|40|39|39|64|40|41|43|43|45|45|46|52|48|49|50|51|52|53|55|55|58|57|58|59|62|61|62|63|64|75|66|67|68|69|70|71|72|73|74|75|0\n17|16|16|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0\n34|33|32|32|31|29|29|28|27|26|25|25|36|37|24|23|22|21|21|39|22|23|24|38|26|27|28|30|30|31|35|33|34|35|36|37|38|39|0\n44|43|43|42|42|39|39|36|36|37|34|33|33|32|31|30|30|41|27|27|26|25|25|29|26|28|28|29|47|31|32|35|34|35|38|37|38|40|40|41|46|45|44|45|46|47|0\n86|85|85|84|82|80|80|81|79|78|77|77|88|89|75|74|73|72|71|69|69|68|67|66|66|65|64|63|60|59|58|58|57|56|56|55|54|53|52|51|49|49|48|47|47|91|48|50|50|51|52|53|54|55|62|57|61|59|60|61|62|63|64|65|76|67|68|70|70|71|72|73|74|75|76|90|78|79|83|81|82|83|84|87|86|87|88|89|90|91|0\n27|27|26|24|24|23|21|20|20|22|18|17|16|16|19|17|18|19|29|21|22|23|25|25|26|28|28|29|0\n27|27|28|29|26|25|25|24|22|21|18|18|17|17|20|23|19|19|20|21|22|23|24|31|26|30|28|29|30|31|0\n74|73|71|70|68|67|67|69|72|65|62|61|60|60|59|57|57|56|54|54|53|52|51|50|50|49|47|47|46|44|43|43|42|41|39|39|40|66|40|41|42|45|44|45|46|48|48|49|64|51|52|53|55|55|56|58|58|59|63|61|62|63|64|65|66|75|68|69|70|71|72|73|74|75|0\n13|12|11|10|10|9|9|15|14|11|12|13|14|15|0\n40|38|38|37|36|35|35|34|33|30|30|29|28|27|26|24|23|23|22|22|32|25|24|25|26|27|28|29|31|31|32|33|34|41|36|37|39|39|40|41|0\n16|16|14|14|12|11|10|10|13|11|12|13|15|15|17|17|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n20|19|19|17|16|15|13|13|12|12|18|14|14|15|16|17|18|21|20|21|0\n43|42|42|41|41|40|40|39|38|37|36|34|34|33|33|47|32|31|29|28|28|27|26|26|49|27|30|29|30|31|32|48|35|35|36|37|38|39|46|45|44|43|44|45|46|47|48|49|0\n20|17|17|18|16|16|15|13|12|12|14|13|14|15|21|19|18|19|20|21|0\n21|21|22|18|16|16|15|15|14|13|13|20|14|19|17|17|18|19|20|23|22|23|0\n46|41|41|42|40|40|44|39|38|38|37|35|34|34|32|30|29|29|28|27|26|25|25|33|26|27|28|31|30|31|32|33|36|35|36|37|47|39|45|43|42|43|44|45|46|47|0\n74|74|73|73|72|71|69|68|67|67|66|65|64|63|62|62|59|59|58|55|55|54|54|53|52|51|50|49|46|46|47|45|44|42|42|40|40|41|61|41|43|43|44|45|48|47|48|49|50|51|52|53|57|56|56|57|58|60|60|61|77|63|64|65|66|70|68|69|70|71|72|76|75|75|76|77|0\n21|19|18|16|15|15|14|12|12|13|20|13|14|17|16|17|18|19|20|21|0\n39|39|38|37|37|33|32|31|31|34|29|28|27|27|26|25|24|23|22|22|36|23|24|25|26|30|28|29|30|35|32|33|34|35|36|41|38|40|40|41|0\n46|45|44|42|41|40|38|38|36|36|37|35|34|33|33|28|28|27|27|30|26|25|25|32|26|31|29|29|30|31|32|47|34|35|43|37|39|39|40|41|42|43|44|45|46|47|0\n55|51|46|46|45|44|44|48|49|40|40|39|39|42|37|37|38|52|36|34|34|33|32|30|30|29|29|54|31|31|32|33|35|35|36|53|38|43|41|41|42|43|50|45|47|47|48|49|50|51|52|53|54|55|0\n36|36|37|38|39|35|33|31|31|32|30|29|27|27|25|24|24|23|22|22|41|23|26|25|26|28|28|29|30|34|32|33|34|35|40|37|38|39|40|41|0\n36|35|33|32|32|31|31|30|28|25|25|24|24|27|21|20|20|22|23|21|22|23|29|26|26|27|28|29|30|37|34|33|34|35|36|37|0\n15|15|14|13|12|11|10|10|17|11|12|13|14|16|16|17|0\n39|36|35|35|37|33|31|30|29|29|28|26|26|25|22|22|23|21|21|34|24|23|24|25|27|27|28|32|30|31|32|33|34|38|36|37|38|39|0\n34|34|31|30|30|29|28|26|25|25|24|22|22|21|20|19|19|33|20|21|23|23|24|27|26|27|28|29|32|31|32|33|35|35|0\n52|51|51|50|48|48|44|42|42|43|41|40|38|38|37|37|36|31|31|32|30|29|29|34|28|28|47|35|30|33|32|33|34|35|36|46|39|39|40|41|45|43|44|45|46|47|49|49|50|53|52|53|0\n49|48|47|47|44|43|43|42|40|39|39|41|38|37|36|35|35|51|33|32|31|31|30|29|28|28|53|29|30|34|32|33|34|52|36|37|38|46|40|41|42|45|44|45|46|50|48|49|50|51|52|53|0\n25|24|24|23|22|21|20|19|18|17|15|15|16|27|16|17|18|19|20|21|22|23|26|25|26|27|0\n17|14|14|13|11|11|10|10|16|12|12|13|15|15|16|17|0\n52|50|50|51|49|46|46|47|45|43|42|40|39|37|37|36|35|34|33|33|32|30|30|29|28|28|44|29|31|31|32|41|34|35|36|38|38|39|40|41|42|43|44|45|48|47|48|49|53|51|52|53|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n11|10|10|9|9|8|8|13|12|11|12|13|0\n39|37|37|36|36|35|34|34|32|29|28|28|27|26|26|25|24|22|22|23|33|23|24|25|31|27|30|29|30|31|32|33|41|35|40|38|38|39|40|41|0\n18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0\n28|27|26|25|24|22|22|21|18|18|19|17|16|16|29|17|20|19|20|21|23|23|24|25|26|27|28|29|0\n16|16|15|12|12|11|10|10|14|11|13|13|14|15|17|17|0\n40|40|39|39|38|37|34|33|32|31|31|35|28|27|26|26|25|24|24|23|23|43|30|25|29|27|28|29|30|36|32|33|34|35|36|37|38|42|41|41|42|43|0\n14|14|12|10|10|9|9|13|11|11|12|13|15|15|0\n32|31|30|28|27|26|26|25|24|24|23|22|20|19|18|18|21|19|20|21|22|23|33|25|29|27|28|29|30|31|32|33|0\n34|33|33|35|32|31|31|28|28|27|25|24|24|23|22|21|20|20|30|21|22|23|26|25|26|27|29|29|30|37|32|36|34|35|36|37|0\n41|37|37|35|35|34|33|33|32|30|29|29|28|27|26|25|23|23|22|22|40|24|24|25|26|27|28|31|30|31|32|39|34|36|36|38|38|39|40|41|0\n29|27|25|24|23|22|22|21|20|18|18|17|16|16|28|17|19|19|20|21|26|23|24|25|26|27|28|29|0\n48|48|47|46|46|45|42|42|43|41|40|38|37|37|36|36|51|35|33|32|32|31|30|29|28|28|53|29|30|31|34|33|34|35|52|39|38|39|40|41|44|43|44|45|50|47|49|49|50|51|52|53|0\n39|37|35|33|33|34|32|26|26|27|28|29|30|24|24|23|21|21|22|38|22|23|25|25|31|27|28|29|30|31|32|36|34|35|36|37|38|39|0\n46|46|47|45|43|40|39|39|41|38|36|35|35|34|34|33|31|30|30|29|28|27|26|26|49|27|28|29|32|31|32|33|44|37|36|37|38|42|40|41|42|43|44|45|48|47|48|49|0\n23|20|20|19|18|17|16|14|14|13|13|22|15|15|16|17|18|19|21|21|22|23|0\n28|27|26|26|25|23|22|22|21|19|19|18|18|17|17|31|30|20|20|21|24|23|24|25|29|27|28|29|30|31|0\n44|43|42|41|41|38|38|37|34|31|31|32|33|35|29|28|28|27|25|24|24|26|40|25|26|27|30|29|30|36|32|33|34|35|36|37|39|39|40|45|42|43|44|45|0\n37|36|32|31|31|30|28|28|27|26|23|23|24|25|22|21|20|20|35|21|22|34|24|25|26|27|29|29|30|33|32|33|34|35|36|37|0\n18|17|16|15|15|14|11|11|12|13|12|13|14|19|16|17|18|19|0\n18|16|15|15|17|13|12|11|11|14|12|13|14|19|16|17|18|19|0\n18|16|16|14|14|15|13|12|11|11|12|13|19|15|17|17|18|19|0\n22|21|20|19|18|17|16|15|14|13|13|23|14|15|16|17|18|19|20|21|22|23|0\n39|38|38|37|36|35|35|31|30|29|28|28|32|27|25|25|24|22|22|23|34|23|24|26|26|27|33|29|30|31|32|33|34|41|36|37|40|39|40|41|0\n13|12|12|14|10|9|9|11|10|11|15|13|14|15|0\n28|28|22|22|21|20|20|24|25|19|18|17|16|16|27|17|18|19|26|21|23|23|24|25|26|27|29|29|0\n36|35|34|33|33|31|30|27|26|25|24|23|23|22|22|21|20|20|32|21|29|28|24|25|26|27|28|29|30|31|32|37|34|35|36|37|0\n20|19|18|18|15|15|14|13|12|12|17|13|14|16|16|17|21|19|20|21|0\n22|22|20|19|17|16|16|15|14|13|13|21|14|15|18|17|18|19|20|21|23|23|0\n34|33|32|31|31|30|29|28|28|36|37|27|26|25|24|23|22|21|21|39|22|23|24|25|26|27|38|29|30|35|32|33|34|35|36|37|38|39|0\n72|70|70|69|68|67|66|66|65|63|63|62|61|60|60|74|75|59|58|57|56|53|53|52|51|50|50|49|46|46|45|44|43|43|41|40|40|42|77|41|42|48|44|45|47|47|48|49|55|51|52|54|54|55|56|57|58|59|76|61|62|64|64|65|73|67|68|69|71|71|72|73|74|75|76|77|0\n20|18|17|17|16|14|14|13|12|12|21|13|15|15|16|19|18|19|20|21|0\n7|7|6|6|9|8|8|9|0\n14|12|11|10|9|9|13|15|10|11|12|13|14|15|0\n33|32|32|31|30|29|29|35|28|24|23|22|22|25|26|21|20|20|37|21|27|23|24|25|26|27|28|36|30|31|34|33|34|35|36|37|0\n34|34|32|29|28|27|27|30|26|24|23|22|21|21|20|19|19|33|20|25|22|23|24|25|26|31|28|29|30|31|32|33|35|35|0\n32|31|31|30|28|28|26|24|23|22|22|21|20|19|18|18|27|19|20|21|25|23|24|25|26|27|29|29|30|33|32|33|0\n35|32|31|30|29|29|28|27|24|24|25|23|22|20|19|19|21|34|20|21|22|23|26|25|26|27|28|33|30|31|32|33|34|35|0\n43|39|37|37|36|35|34|33|33|40|32|30|30|29|28|26|26|24|24|23|23|42|25|25|27|27|28|29|31|31|32|41|34|35|36|38|38|39|40|41|42|43|0\n19|17|15|13|13|14|12|11|11|18|12|16|14|15|16|17|18|19|0\n66|65|65|63|61|60|60|59|57|56|56|54|53|53|50|48|47|46|46|49|51|45|44|42|42|39|39|38|38|37|36|35|35|64|36|37|41|40|40|41|43|43|44|45|52|47|48|49|50|51|52|55|54|55|58|57|58|59|62|61|62|63|64|67|66|67|0\n31|30|30|29|28|26|26|27|25|23|23|20|20|18|18|19|22|19|21|21|22|24|24|25|33|27|28|29|32|31|32|33|0\n69|68|68|67|65|64|62|62|61|59|58|58|60|66|57|54|52|52|53|55|50|50|49|47|47|46|44|44|41|40|40|39|39|38|37|37|38|43|42|41|42|43|45|45|46|48|48|49|51|51|56|53|54|55|56|57|71|59|60|61|63|63|64|65|66|67|70|69|70|71|0\n15|15|16|17|13|13|12|11|11|19|12|14|14|18|16|17|18|19|0\n16|15|15|12|11|10|10|13|14|11|12|13|14|17|16|17|0\n51|47|47|45|45|44|44|43|41|40|40|39|37|36|36|35|34|32|32|31|28|28|29|27|27|50|30|29|30|31|33|33|34|35|38|37|38|39|42|41|42|43|49|46|46|48|48|49|50|51|0\n37|35|32|32|31|31|30|29|27|26|26|25|24|22|21|21|20|20|36|23|22|23|24|25|28|27|28|29|30|34|33|33|34|35|36|37|0\n34|32|32|31|29|29|28|27|25|25|26|24|22|22|20|19|19|21|20|21|23|23|24|35|26|27|28|30|30|31|33|33|34|35|0\n45|44|40|39|38|38|41|36|36|34|33|32|31|31|30|28|28|27|26|24|24|25|43|25|26|27|29|29|30|35|32|33|34|35|37|37|42|39|40|41|42|43|44|45|0\n56|55|52|52|51|51|50|49|48|48|47|43|43|44|42|42|40|37|36|36|35|35|34|32|32|31|30|30|41|31|33|33|34|39|38|37|38|39|40|41|46|45|44|45|46|47|57|49|50|54|53|53|54|55|56|57|0\n38|37|34|34|35|33|32|31|30|27|26|26|28|25|24|23|22|21|21|39|22|23|24|25|29|27|28|29|30|31|32|33|36|35|36|37|38|39|0\n39|36|34|33|32|31|30|30|29|29|28|27|26|25|23|23|24|21|21|22|22|38|24|25|26|27|28|37|35|31|32|33|34|35|36|37|38|39|0\n29|27|27|26|25|24|24|30|31|23|22|21|20|19|18|18|33|19|20|21|22|23|32|25|26|28|28|29|30|31|32|33|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n10|10|8|7|7|9|8|9|11|11|0\n21|19|19|18|18|22|23|16|16|14|14|15|25|15|17|17|24|20|20|21|22|23|24|25|0\n32|30|30|29|26|26|27|25|24|24|23|22|20|19|18|18|21|19|20|21|22|23|33|25|28|27|28|29|31|31|32|33|0\n67|67|66|58|56|56|57|59|54|54|55|61|52|52|53|63|64|51|50|49|48|46|46|45|44|42|42|43|69|41|39|38|38|37|37|71|40|39|40|41|70|43|44|45|47|47|48|49|50|51|65|53|62|55|60|57|58|59|60|61|62|63|64|65|66|68|68|69|70|71|0\n18|18|19|17|17|14|13|12|12|15|16|13|14|15|16|21|20|19|20|21|0\n47|46|46|45|41|40|40|39|39|43|36|35|35|37|33|32|32|31|31|28|28|27|26|26|30|27|29|29|30|49|34|33|34|38|36|37|38|44|42|41|42|43|44|45|48|47|48|49|0\n46|45|45|44|42|39|38|38|37|36|36|34|34|33|32|30|30|29|28|27|25|25|26|43|26|27|28|29|31|31|32|33|35|35|41|37|40|39|40|41|42|43|44|47|46|47|0\n41|41|40|39|38|38|43|36|36|37|35|33|31|31|29|28|27|26|26|25|24|24|34|25|30|27|28|29|30|32|32|33|34|35|45|37|44|39|40|42|42|43|44|45|0\n48|47|47|46|45|42|42|41|40|37|36|36|38|34|34|33|32|31|29|28|28|27|26|26|44|27|30|29|30|31|32|33|35|35|39|37|38|39|40|41|43|43|44|45|46|49|48|49|0\n71|71|70|69|68|68|65|65|64|64|67|74|75|62|61|59|58|58|55|55|56|54|53|52|51|51|50|49|47|47|46|45|43|41|41|42|40|40|77|44|42|43|44|45|46|48|48|49|50|63|52|53|54|57|56|57|60|59|60|61|62|63|76|66|66|67|73|69|70|72|72|73|74|75|76|77|0\n27|27|26|25|24|24|22|21|18|18|19|17|16|16|23|17|20|19|20|21|22|23|29|25|26|28|28|29|0\n35|34|31|30|30|32|29|28|27|26|25|25|36|37|24|22|22|21|21|39|23|23|24|38|26|27|28|29|33|31|32|33|34|35|36|37|38|39|0\n29|29|28|26|25|24|23|23|22|21|19|19|18|17|17|31|18|20|20|21|22|27|24|25|26|27|28|30|30|31|0\n32|31|31|28|27|27|25|23|23|24|22|21|20|19|18|18|30|19|20|21|22|26|24|25|26|29|28|29|30|33|32|33|0\n28|25|25|26|24|23|22|22|20|20|18|17|16|16|19|17|18|19|21|21|29|23|24|27|26|27|28|29|0\n41|40|40|39|37|36|35|35|34|34|30|30|29|28|27|26|25|23|23|24|32|33|24|25|26|27|28|29|31|31|32|33|43|38|36|37|38|39|42|41|42|43|0\n19|19|17|17|18|15|14|12|12|13|16|13|14|15|16|21|18|20|20|21|0\n24|23|23|22|20|20|18|17|16|14|14|15|19|15|16|17|18|19|21|21|22|25|24|25|0\n24|22|22|23|21|20|17|16|16|15|14|14|19|15|18|17|18|19|20|21|25|23|24|25|0\n54|53|53|52|51|47|46|46|48|45|43|43|42|41|40|38|37|34|34|35|36|33|32|29|29|30|31|50|30|31|32|33|39|35|36|37|38|39|40|41|42|44|44|45|49|47|48|49|50|51|52|55|54|55|0\n78|78|77|75|74|72|72|71|69|68|68|67|66|66|65|63|62|61|61|64|80|81|60|59|58|57|56|55|53|52|52|51|49|49|48|47|46|45|44|43|43|83|44|45|46|47|48|50|50|51|54|53|54|55|56|57|58|59|60|82|62|63|64|65|76|67|70|69|70|71|73|73|74|75|76|77|79|79|80|81|82|83|0\n28|27|27|24|22|21|21|19|19|20|25|18|17|16|16|17|18|26|20|23|22|23|24|25|26|29|28|29|0\n63|62|62|61|60|57|56|55|54|53|53|52|51|51|50|49|48|46|45|45|44|43|42|42|65|40|39|39|38|36|36|35|35|67|37|37|38|41|40|41|66|43|44|47|46|47|48|49|50|59|52|58|54|55|56|57|58|59|60|61|64|63|64|65|66|67|0\n52|52|51|50|48|46|46|47|45|43|42|42|44|54|55|41|40|39|38|36|33|33|34|35|32|31|30|30|57|31|32|37|34|35|36|37|38|39|40|41|56|43|44|45|49|47|48|49|50|51|53|53|54|55|56|57|0\n32|29|29|30|31|28|26|25|22|22|23|20|20|19|18|18|27|19|21|21|24|23|24|25|26|27|28|33|30|31|32|33|0\n48|47|47|46|44|42|40|39|38|38|41|37|35|35|34|32|31|31|30|29|28|27|26|26|45|27|28|29|30|33|32|33|34|36|36|37|43|39|40|41|42|43|44|45|46|49|48|49|0\n59|59|58|57|57|61|56|55|55|63|53|53|52|52|65|47|47|48|45|45|44|44|50|42|41|41|40|39|38|37|36|35|35|67|36|37|38|39|40|43|42|43|51|46|46|49|48|49|50|51|66|54|54|64|56|62|58|60|60|61|62|63|64|65|66|67|0\n67|64|64|63|61|60|60|59|58|57|56|54|54|51|50|48|48|47|46|45|45|52|44|43|42|41|39|39|38|36|36|35|35|66|37|37|38|40|40|41|42|43|44|53|46|47|49|49|50|51|52|53|55|55|56|57|58|59|62|61|62|63|65|65|66|67|0\n45|43|41|40|39|38|37|36|35|34|34|33|29|28|28|27|27|31|25|25|24|24|44|26|26|32|30|29|30|31|32|33|42|35|36|37|38|39|40|41|42|43|44|45|0\n18|17|17|19|15|15|13|13|12|12|21|14|14|16|16|20|18|19|20|21|0\n49|49|48|46|46|45|44|43|43|51|42|41|39|36|36|35|35|34|34|33|32|31|30|29|28|28|53|29|30|31|32|33|40|38|37|37|38|39|40|41|42|52|44|45|47|47|48|50|50|51|52|53|0\n60|57|55|54|53|53|52|50|49|49|51|58|48|47|47|61|46|44|43|42|41|41|40|38|38|37|36|34|34|33|33|63|35|35|36|37|39|39|40|45|42|43|44|45|46|62|48|59|50|51|52|56|54|55|56|57|58|59|60|61|62|63|0\n82|80|79|79|77|77|73|73|72|68|68|69|70|67|67|75|65|64|64|63|62|60|60|61|59|57|57|55|53|51|50|48|47|47|49|52|46|45|44|43|43|56|44|45|46|54|48|49|50|51|52|53|54|55|56|58|58|59|83|61|62|63|66|65|66|76|71|69|70|71|72|74|74|75|76|78|78|81|80|81|82|83|0\n30|28|25|25|26|27|24|22|21|21|20|19|18|17|17|31|18|19|20|23|22|23|24|29|26|27|28|29|30|31|0\n24|23|21|21|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|22|22|23|24|25|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n40|38|38|37|37|36|34|33|33|31|29|29|28|26|25|25|24|23|22|22|32|23|24|27|26|27|28|30|30|31|32|35|34|35|36|41|39|39|40|41|0\n55|54|51|50|49|48|47|47|43|42|41|40|39|39|44|45|38|37|36|34|34|33|31|31|30|29|29|53|30|32|32|33|35|35|36|37|38|46|40|41|42|43|44|45|46|52|48|49|50|51|52|53|54|55|0\n24|23|22|21|20|20|19|18|15|15|14|14|17|16|16|17|18|19|25|21|22|23|24|25|0\n26|25|24|24|23|22|18|18|17|16|15|15|20|21|16|17|19|19|20|21|22|23|27|25|26|27|0\n60|60|59|57|56|56|55|54|52|52|51|50|49|49|62|63|48|44|44|42|41|41|40|40|46|38|38|37|36|35|34|34|65|35|36|37|39|39|47|43|42|43|45|45|46|47|48|64|50|51|53|53|54|55|58|57|58|59|61|61|62|63|64|65|0\n14|14|12|10|10|9|9|13|11|11|12|13|15|15|0\n25|25|24|21|21|22|20|20|18|17|16|15|15|19|16|17|18|19|27|23|22|23|24|26|26|27|0\n48|46|46|45|45|44|42|42|40|37|35|35|36|38|33|32|32|31|30|29|28|27|26|26|41|27|28|29|30|31|34|33|34|39|36|37|38|39|40|41|43|43|44|49|47|47|48|49|0\n36|34|34|33|32|32|31|30|27|27|26|25|23|22|21|21|20|20|29|24|22|23|24|25|26|28|28|29|30|31|37|33|35|35|36|37|0\n44|43|42|42|41|39|39|37|34|34|33|32|32|31|29|29|28|26|26|24|24|25|38|25|27|27|28|30|30|31|36|33|35|35|36|37|38|40|40|41|45|43|44|45|0\n7|7|8|6|6|9|8|9|0\n18|14|14|15|13|13|12|11|11|19|12|17|16|15|16|17|18|19|0\n65|65|63|63|62|61|60|57|56|56|58|55|55|67|54|53|52|49|49|48|47|46|46|45|43|42|42|41|40|38|37|37|36|36|69|39|38|39|40|41|44|43|44|45|51|47|48|50|50|51|52|53|54|68|59|57|58|59|60|61|62|64|64|66|66|67|68|69|0\n31|30|28|28|27|26|25|24|24|23|22|20|20|19|18|18|33|19|21|21|22|23|32|25|26|27|29|29|30|31|32|33|0\n45|43|41|40|40|39|35|35|36|34|32|32|33|30|29|29|28|26|25|25|24|24|44|27|26|27|28|31|30|31|38|33|34|37|36|37|38|39|42|41|42|43|44|45|0\n27|24|23|22|22|21|19|18|18|17|15|15|16|26|16|17|20|19|20|21|25|23|24|25|26|27|0\n36|35|34|34|33|32|28|28|27|26|26|25|24|22|22|21|20|20|31|21|23|23|24|25|30|27|29|29|30|31|32|33|37|35|36|37|0\n24|23|22|21|21|20|19|17|16|14|14|15|18|15|16|17|18|19|20|25|22|23|24|25|0\n35|33|33|31|31|32|36|37|29|27|26|26|25|24|23|22|22|21|21|39|30|23|24|25|28|27|28|29|30|38|32|34|34|35|36|37|38|39|0\n30|29|29|28|26|25|25|23|21|20|19|19|18|17|17|24|18|22|20|21|22|23|24|27|26|27|28|31|30|31|0\n11|9|7|7|8|10|8|9|10|11|0\n64|63|62|61|60|59|58|57|56|55|54|52|51|49|49|48|47|46|46|45|44|43|42|41|41|40|38|37|37|35|34|34|36|35|36|39|38|39|40|65|42|43|44|45|53|47|48|50|50|51|52|53|54|55|56|57|58|59|60|61|62|63|64|65|0\n64|64|63|62|61|60|59|58|57|56|56|66|67|53|53|54|52|51|49|49|48|47|46|45|44|43|40|40|39|39|38|36|36|37|69|37|38|42|41|41|42|43|44|45|46|47|48|50|50|51|52|55|54|55|68|57|58|59|60|61|62|63|65|65|66|67|68|69|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n36|35|33|33|32|32|30|29|28|25|24|24|26|23|20|20|21|22|31|21|22|23|27|25|26|27|28|29|30|31|37|34|34|35|36|37|0\n14|13|13|15|12|11|10|10|17|11|12|16|14|15|16|17|0\n70|70|69|68|64|64|63|63|66|62|61|60|59|58|58|72|73|52|52|51|50|48|48|49|54|47|47|56|45|45|43|43|42|40|40|39|39|75|41|41|42|44|44|46|46|57|55|49|50|51|53|53|54|55|56|57|74|59|60|61|62|67|65|65|66|67|68|69|71|71|72|73|74|75|0\n50|50|47|46|46|44|44|43|42|41|38|38|39|36|36|35|34|33|32|31|30|29|28|27|27|49|28|29|30|31|32|33|34|35|37|37|40|39|40|41|42|43|45|45|48|47|48|49|51|51|0\n35|32|32|31|29|29|28|27|23|23|22|22|25|21|20|19|19|34|20|21|26|24|24|25|26|27|28|30|30|31|33|33|34|35|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n32|32|31|30|29|29|34|35|28|27|26|25|24|23|22|20|20|21|37|21|22|23|24|25|26|27|28|36|30|31|33|33|34|35|36|37|0\n16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0\n19|17|16|15|14|12|12|11|11|18|13|13|14|15|16|17|18|19|0\n50|47|47|44|44|43|42|41|40|38|38|39|46|37|36|36|33|33|31|30|30|28|28|27|27|35|29|29|32|31|32|34|34|35|51|37|49|39|40|41|42|43|45|45|46|48|48|49|50|51|0\n68|66|65|63|63|62|62|61|60|59|59|58|56|56|52|52|51|51|50|48|47|46|46|45|44|43|42|41|40|39|38|37|36|36|55|37|38|39|40|41|42|43|44|45|49|47|48|49|50|54|53|53|54|55|57|57|58|69|60|61|67|64|64|65|66|67|68|69|0\n52|51|50|47|46|45|45|48|43|43|42|41|38|38|39|37|36|35|34|33|33|31|30|29|28|28|32|29|30|31|32|53|34|35|36|37|40|39|40|41|42|44|44|49|46|47|48|49|50|51|52|53|0\n21|19|19|15|15|14|13|12|12|17|18|13|14|16|16|17|18|20|20|21|0\n26|26|25|23|21|21|22|20|20|19|18|17|16|16|29|17|18|19|28|24|22|23|24|25|27|27|28|29|0\n34|32|32|33|30|27|26|25|24|23|23|28|21|21|20|19|19|31|20|22|22|29|24|25|26|27|28|29|30|31|35|33|34|35|0\n59|58|57|56|53|52|52|54|51|50|50|60|61|48|48|46|46|45|43|42|41|41|40|38|38|37|36|35|33|33|34|63|34|35|36|37|39|39|40|44|42|43|44|45|47|47|49|49|62|51|55|53|54|55|56|57|58|59|60|61|62|63|0\n39|37|34|33|33|32|30|30|29|27|27|28|26|24|24|23|22|21|21|38|22|23|25|25|26|36|28|29|31|31|32|35|34|35|36|37|38|39|0\n50|49|48|47|46|45|44|44|43|41|41|37|37|38|35|34|34|33|31|30|29|28|28|27|27|40|32|29|30|31|32|33|36|35|36|39|38|39|40|42|42|43|51|45|46|47|48|49|50|51|0\n57|57|56|53|53|54|52|52|51|50|49|47|44|44|43|41|40|40|39|39|38|37|36|35|34|33|33|32|31|31|32|48|34|35|36|37|38|46|42|41|42|43|45|45|46|47|48|49|50|51|59|55|54|55|56|58|58|59|0\n28|27|26|25|24|24|23|21|20|20|17|17|16|16|19|18|18|19|22|21|22|23|29|25|26|27|28|29|0\n17|12|12|13|14|11|10|10|16|11|15|13|14|15|16|17|0\n50|49|49|48|48|52|53|46|43|43|44|42|40|40|39|39|38|36|35|35|34|33|32|30|30|29|29|55|31|31|32|33|34|37|36|37|38|47|41|41|42|45|44|45|46|47|54|51|50|51|52|53|54|55|0\n56|55|54|53|53|52|51|49|45|45|44|44|47|41|41|40|40|39|37|37|36|34|33|33|32|31|30|30|50|31|32|35|34|35|36|38|38|39|43|42|42|43|48|46|46|47|48|49|50|51|52|57|54|55|56|57|0\n50|47|47|48|46|46|45|44|40|38|37|37|36|35|35|41|34|33|32|31|29|28|28|27|27|43|30|29|30|31|32|33|34|42|36|39|38|39|40|41|42|43|44|45|51|49|48|49|50|51|0\n46|45|45|42|42|41|37|37|36|36|39|35|34|32|31|31|30|29|27|27|26|25|25|44|26|28|28|29|30|33|32|33|34|35|40|38|38|39|40|41|43|43|44|47|46|47|0\n31|31|30|28|27|27|26|24|24|23|21|21|20|18|18|19|33|19|20|22|22|23|25|25|26|29|28|29|30|32|32|33|0\n52|50|50|49|49|48|47|45|45|42|42|40|39|38|38|37|35|34|34|33|28|28|29|30|31|32|44|29|30|31|32|33|36|35|36|37|41|39|40|41|43|43|44|46|46|47|48|53|51|51|52|53|0\n24|23|22|22|19|19|18|17|16|15|14|14|21|15|16|17|18|20|20|21|25|23|24|25|0\n14|13|12|11|11|9|9|10|10|15|12|13|14|15|0\n50|49|48|48|47|47|52|53|46|43|42|41|40|40|44|39|38|37|36|35|34|34|55|33|32|31|30|30|57|31|32|33|56|35|36|37|38|39|45|41|42|43|44|45|46|54|51|49|50|51|52|53|54|55|56|57|0\n13|11|11|12|10|10|9|9|15|14|12|13|14|15|0\n38|36|36|35|35|33|32|30|30|29|27|27|26|24|24|23|22|21|21|34|22|23|25|25|26|28|28|29|31|31|32|33|34|39|37|37|38|39|0\n33|30|29|28|27|25|25|24|24|23|22|21|20|19|18|18|32|19|20|21|22|23|31|26|26|27|28|29|30|31|32|33|0\n60|59|58|56|55|54|54|53|52|51|50|49|48|47|46|46|45|44|42|41|40|39|38|37|35|35|34|33|32|32|43|33|34|36|36|37|38|39|40|41|42|43|44|45|61|47|48|49|50|51|52|53|57|55|56|57|58|59|60|61|0\n47|45|44|43|41|41|42|46|48|49|39|37|37|36|35|34|33|32|32|31|30|28|28|27|27|51|29|29|30|31|40|33|34|35|36|38|38|39|40|50|42|43|44|45|46|47|48|49|50|51|0\n48|46|46|45|43|43|42|40|40|41|39|38|36|34|32|32|31|29|29|30|28|27|26|26|37|27|28|35|30|31|33|33|34|35|36|37|38|39|49|41|42|44|44|45|47|47|48|49|0\n31|28|28|29|30|27|25|25|24|24|22|20|20|19|18|18|23|19|21|21|22|23|33|26|26|27|32|29|30|31|32|33|0\n15|15|12|12|13|11|10|10|17|11|14|13|14|16|16|17|0\n23|21|20|20|22|18|18|17|16|14|14|15|25|15|16|17|19|19|24|21|22|23|24|25|0\n53|50|47|47|48|49|44|42|41|40|39|39|38|36|36|35|33|33|34|45|32|30|30|29|29|28|28|52|31|31|32|46|34|35|37|37|38|43|40|41|42|43|44|45|46|51|48|49|50|51|52|53|0\n33|32|29|28|28|27|25|25|24|23|23|22|18|18|19|20|21|19|20|21|22|31|24|26|26|27|30|29|30|31|32|33|0\n43|40|39|39|38|37|37|36|35|34|33|32|31|28|28|29|27|26|24|24|25|44|45|25|26|27|30|29|30|31|32|33|34|35|36|42|38|41|40|41|42|43|44|45|0\n36|36|34|34|33|33|38|39|31|31|30|30|41|29|27|27|26|25|24|23|23|43|24|25|26|28|28|29|42|32|32|40|35|35|37|37|38|39|40|41|42|43|0\n44|43|43|41|41|39|38|37|34|33|32|32|29|29|28|28|31|27|25|25|24|24|40|26|26|27|36|30|30|31|35|33|34|35|36|37|38|39|40|42|42|45|44|45|0\n39|37|36|35|33|33|31|30|29|29|28|26|26|25|23|22|22|21|21|38|24|23|24|25|27|27|28|32|30|31|32|34|34|35|36|37|38|39|0\n27|24|24|23|21|20|19|19|18|16|16|15|15|26|17|17|18|22|20|21|22|23|25|25|26|27|0\n32|31|29|29|28|27|27|33|25|24|24|23|21|21|20|19|19|35|20|22|22|23|26|25|26|34|28|30|30|31|32|33|34|35|0\n33|33|32|31|30|30|35|26|25|25|27|24|24|23|22|20|20|21|37|21|22|23|29|28|26|27|28|29|36|31|32|34|34|35|36|37|0\n53|52|52|51|49|48|47|46|46|45|38|38|39|40|41|42|43|44|36|35|34|33|32|29|29|30|31|37|30|31|32|33|34|35|36|37|55|39|40|41|42|43|44|45|50|47|48|49|50|51|54|53|54|55|0\n36|32|32|33|34|30|29|28|28|27|27|26|24|23|22|22|20|20|21|21|25|23|24|25|26|37|31|29|30|31|35|33|34|35|36|37|0\n22|21|19|19|20|23|17|17|15|15|14|14|25|16|16|18|18|24|20|21|22|23|24|25|0\n48|48|45|45|44|43|41|41|40|36|36|37|33|33|34|35|30|30|29|29|28|27|26|26|47|27|28|32|31|31|32|39|34|35|38|37|38|39|40|42|42|43|44|46|46|47|49|49|0\n10|8|7|7|9|11|8|9|10|11|0\n35|35|34|33|32|29|28|28|30|31|26|25|23|21|21|22|20|20|27|24|22|23|24|25|26|27|37|29|30|31|32|33|34|36|36|37|0\n47|42|42|41|40|40|44|39|37|36|36|33|32|32|34|31|30|29|28|26|25|25|27|46|26|27|28|29|30|31|35|33|34|35|38|37|38|39|45|41|43|43|44|45|46|47|0\n39|35|35|36|34|33|30|29|27|27|26|25|25|31|24|23|22|21|21|38|22|23|24|32|26|28|28|29|30|31|32|33|34|37|36|37|38|39|0\n32|32|33|34|30|29|28|27|26|25|23|23|22|21|19|19|20|31|20|21|22|24|24|25|26|27|28|29|30|31|35|33|34|35|0\n61|56|55|54|54|57|58|52|52|51|50|48|47|46|46|45|44|42|42|39|39|38|37|36|36|35|34|33|32|32|60|33|34|35|41|37|38|40|40|41|43|43|44|45|49|47|48|49|50|51|53|53|59|55|56|57|58|59|60|61|0\n11|11|10|10|8|8|9|9|13|12|12|13|0\n37|37|36|35|34|33|32|29|28|28|30|27|27|26|24|23|22|21|21|25|22|23|24|25|26|39|31|29|30|31|32|33|34|35|36|38|38|39|0\n34|31|30|30|32|29|29|28|27|26|24|23|22|21|20|19|19|25|20|21|22|23|24|25|26|27|28|35|33|31|32|33|34|35|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n35|33|33|32|31|30|29|28|28|36|37|27|26|24|22|22|23|21|21|39|25|23|24|25|26|27|38|29|30|31|32|34|34|35|36|37|38|39|0\n37|34|32|31|30|28|28|27|26|25|24|24|23|22|21|20|20|35|36|21|22|23|33|25|26|27|29|29|30|31|32|33|34|35|36|37|0\n15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0\n21|20|17|15|14|13|13|12|12|18|19|16|14|15|16|17|18|19|20|21|0\n28|27|26|25|24|22|22|23|21|20|18|16|16|17|19|17|18|19|20|21|29|23|24|25|26|27|28|29|0\n39|38|37|36|35|34|33|33|32|31|30|29|28|28|26|25|24|22|22|23|27|23|24|25|26|27|41|29|30|31|32|40|34|35|36|37|38|39|40|41|0\n8|8|9|7|7|11|10|9|10|11|0\n50|49|49|48|48|47|46|46|42|40|40|39|38|38|43|37|36|35|34|33|32|30|30|29|28|28|45|29|31|31|32|33|34|35|36|37|44|39|41|41|42|43|44|45|53|47|52|51|50|51|52|53|0\n44|43|43|38|38|39|40|37|35|35|34|32|32|31|29|28|28|27|26|25|24|24|42|25|26|27|30|29|30|31|33|33|34|36|36|37|41|39|40|41|42|45|44|45|0\n9|8|7|6|6|7|8|9|0\n33|30|29|29|28|24|23|23|22|20|20|21|26|19|18|18|32|19|27|21|22|25|24|25|26|27|28|31|30|31|32|33|0\n25|23|20|19|19|21|17|17|16|14|14|15|24|15|16|18|18|22|20|21|22|23|24|25|0\n43|40|39|39|38|35|34|34|36|33|32|31|30|30|28|26|26|25|24|23|23|29|24|25|27|27|28|29|42|31|32|33|37|35|36|37|38|41|40|41|42|43|0\n77|74|73|71|70|69|69|68|67|66|65|64|62|62|61|61|60|59|58|57|56|54|54|53|52|50|50|48|48|47|46|45|44|43|42|41|40|40|76|41|42|43|44|45|46|47|49|49|51|51|52|53|55|55|56|57|58|59|60|75|63|63|64|65|66|67|68|72|70|71|72|73|74|75|76|77|0\n40|40|41|38|38|37|31|31|32|33|30|30|35|29|28|27|25|25|24|23|23|43|24|26|26|27|28|29|36|34|32|33|34|35|36|37|39|39|42|41|42|43|0\n19|18|17|17|16|15|14|14|12|12|13|13|21|15|16|20|18|19|20|21|0\n22|22|20|17|16|16|15|15|14|13|13|21|14|19|18|17|18|19|20|21|23|23|0\n67|66|64|61|61|62|60|51|50|47|47|48|46|46|52|53|43|43|44|42|42|55|56|41|40|39|39|58|38|37|35|35|36|65|36|37|38|59|40|41|57|45|44|45|54|49|48|49|50|51|52|53|54|55|56|57|58|59|60|63|62|63|64|65|66|67|0\n54|53|51|50|50|49|48|46|46|45|44|43|42|41|40|38|38|39|35|35|34|33|32|31|30|29|29|37|30|31|32|33|34|36|36|37|55|39|40|41|42|43|44|45|47|47|48|49|52|51|52|53|54|55|0\n29|29|28|27|26|26|24|23|20|20|21|19|18|17|17|25|18|19|22|21|22|23|24|25|31|27|28|30|30|31|0\n35|33|29|29|28|27|26|25|24|24|31|22|22|21|20|19|19|34|20|21|23|23|32|25|26|27|28|30|30|31|32|33|34|35|0\n33|33|34|32|30|30|29|28|27|27|36|37|25|25|24|23|22|21|21|39|22|23|24|26|26|38|28|29|31|31|32|35|34|35|36|37|38|39|0\n21|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|22|22|23|0\n27|22|21|21|23|24|20|18|17|17|16|15|15|26|16|19|18|19|20|25|22|23|24|25|26|27|0\n22|21|20|19|19|18|17|17|16|15|14|14|25|15|16|24|18|23|20|21|22|23|24|25|0\n45|42|41|41|40|38|37|37|36|34|33|32|32|31|30|28|27|26|26|25|24|24|44|25|29|27|28|29|30|31|35|33|34|35|36|39|38|39|40|43|42|43|44|45|0\n63|63|62|61|59|58|57|55|53|52|52|51|50|49|48|48|47|45|44|44|43|38|37|37|39|36|35|35|41|34|34|60|65|42|36|40|38|39|40|41|42|43|46|45|46|47|56|49|50|51|54|53|54|55|56|57|58|59|60|61|62|64|64|65|0\n75|75|76|74|74|78|72|70|69|69|66|66|65|64|63|62|62|61|60|58|57|57|56|55|54|53|47|47|48|46|45|45|50|51|43|43|42|41|41|73|42|44|44|52|46|49|48|49|50|51|52|53|54|55|56|59|58|59|60|61|68|63|64|65|67|67|68|71|70|71|72|73|79|77|76|77|78|79|0\n53|52|49|47|46|45|45|44|43|38|37|37|35|34|34|36|40|41|33|31|30|30|32|29|28|28|51|29|50|31|32|33|42|35|36|39|38|39|40|41|42|43|44|48|46|47|48|49|50|51|52|53|0\n65|61|61|60|57|56|56|58|54|54|52|51|51|50|48|48|47|46|45|43|42|41|41|44|40|39|38|37|36|35|34|34|64|35|36|37|38|39|40|63|42|43|44|45|46|47|49|49|50|53|52|53|55|55|59|57|58|59|60|62|62|63|64|65|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n29|27|27|26|23|21|20|18|18|19|17|17|16|16|25|24|22|19|20|21|22|23|24|25|26|28|28|29|0\n29|27|26|25|18|18|19|20|21|17|17|23|16|16|28|24|22|19|20|21|22|23|24|25|26|27|28|29|0\n26|25|25|27|24|21|21|20|19|19|23|17|16|16|18|17|18|29|20|22|22|23|24|28|26|27|28|29|0\n27|25|23|22|22|21|19|18|18|17|16|15|15|26|16|17|20|19|20|21|24|23|24|25|26|27|0\n57|56|54|53|52|51|47|47|46|45|45|49|44|42|41|41|40|37|36|36|35|35|33|33|32|31|30|30|55|31|32|34|34|39|38|37|38|39|40|43|42|43|44|50|46|48|48|49|50|51|52|53|54|55|56|57|0\n73|67|67|68|66|65|64|64|70|71|63|63|62|57|55|55|54|51|51|52|50|49|48|48|58|59|60|47|46|45|42|42|41|40|40|39|39|75|44|41|43|43|44|45|46|47|61|49|50|53|52|53|54|56|56|57|58|59|60|61|62|74|72|65|66|69|68|69|70|71|72|73|74|75|0\n54|52|52|50|50|49|48|48|47|45|45|43|42|41|40|39|38|37|36|34|33|33|32|31|29|29|30|44|30|31|32|35|34|35|36|37|38|39|40|41|42|43|44|46|46|47|55|49|51|51|53|53|54|55|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n16|16|13|13|12|12|10|10|11|11|15|14|14|15|17|17|0\n40|38|38|37|35|35|34|33|33|32|30|30|26|26|25|25|24|23|22|22|29|23|24|28|27|27|28|29|31|31|32|41|34|36|36|37|39|39|40|41|0\n43|38|36|35|35|34|32|32|31|31|39|40|30|29|27|27|24|24|25|23|23|42|26|25|26|28|28|29|30|41|33|33|34|37|36|37|38|39|40|41|42|43|0\n33|32|31|30|29|28|27|27|34|35|26|25|24|22|22|21|20|20|37|21|23|23|24|25|26|36|28|29|30|31|32|33|34|35|36|37|0\n34|33|31|31|29|29|28|27|26|26|35|25|24|23|22|20|20|21|37|21|22|23|24|25|36|27|28|30|30|32|32|33|34|35|36|37|0\n36|36|34|34|33|32|31|30|30|38|39|27|27|26|26|25|24|23|22|22|41|23|24|25|29|28|28|29|40|31|32|33|35|35|37|37|38|39|40|41|0\n24|22|22|21|20|20|25|19|18|17|15|15|16|27|16|17|18|19|26|21|23|23|24|25|26|27|0\n18|17|16|15|15|13|11|11|12|14|12|13|14|19|16|17|18|19|0\n17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0\n18|17|17|15|13|12|12|11|11|16|14|13|14|15|16|19|18|19|0\n53|51|49|48|47|47|45|45|44|43|41|40|40|39|37|36|36|35|34|33|31|30|30|29|28|28|52|29|32|31|32|33|34|35|38|37|38|39|42|41|42|43|44|46|46|50|48|49|50|51|52|53|0\n64|63|59|59|58|57|56|55|55|61|54|53|50|50|49|49|48|47|46|45|43|42|41|40|40|39|37|36|35|35|34|34|65|38|36|37|38|39|44|41|42|43|44|45|46|47|48|52|51|51|52|53|54|62|56|57|58|60|60|61|62|63|64|65|0\n75|75|76|74|72|72|71|71|78|79|69|68|68|66|66|63|61|61|60|58|58|57|56|55|55|64|54|52|51|51|50|48|48|47|46|44|43|43|42|42|81|45|44|45|46|47|49|49|50|53|52|53|54|65|56|57|59|59|60|62|62|63|64|65|67|67|70|69|70|80|73|73|74|77|76|77|78|79|80|81|0\n32|31|31|29|27|27|26|25|24|22|22|21|20|18|18|19|30|19|20|21|23|23|24|25|26|28|28|29|30|33|32|33|0\n66|66|64|63|60|59|58|56|56|55|54|53|53|61|50|46|45|43|43|44|47|40|40|41|39|39|49|51|38|35|35|36|37|65|36|37|38|52|42|41|42|48|44|45|46|47|48|49|50|51|52|62|54|55|57|57|58|59|60|61|62|63|64|65|67|67|0\n35|34|33|32|32|31|29|27|27|28|26|25|25|37|24|23|21|21|22|39|22|23|24|38|26|30|28|29|30|31|36|33|34|35|36|37|38|39|0\n38|38|39|37|36|35|35|34|32|32|30|29|27|26|26|25|24|23|22|22|31|23|24|25|28|27|28|29|30|31|33|33|34|41|36|37|40|39|40|41|0\n35|35|36|37|32|31|31|33|28|28|27|27|30|25|24|23|21|21|22|26|22|23|24|25|26|39|29|29|30|34|32|33|34|38|36|37|38|39|0\n24|23|23|21|19|19|18|16|15|15|14|14|22|17|16|17|18|20|20|21|22|25|24|25|0\n46|45|45|43|42|40|40|38|37|36|36|35|33|31|31|30|28|28|29|27|26|25|25|44|26|27|34|29|30|32|32|33|34|35|39|37|38|39|41|41|42|43|44|47|46|47|0\n11|9|8|7|7|10|8|9|10|11|0\n18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0\n20|19|18|18|21|22|17|15|14|13|13|16|14|15|16|17|23|19|20|21|22|23|0\n55|52|51|50|49|48|47|47|46|45|44|43|42|41|40|36|35|35|34|33|32|32|38|31|29|29|30|54|30|31|39|33|34|37|36|37|38|39|40|41|42|43|44|45|46|53|48|49|50|51|52|53|54|55|0\n26|25|25|27|24|24|22|21|20|19|17|17|16|16|23|18|18|19|20|21|22|23|29|28|26|27|28|29|0\n24|23|20|20|19|18|18|15|15|16|14|14|25|17|16|17|22|19|21|21|22|23|24|25|0\n46|46|41|39|39|38|36|35|35|37|42|43|34|33|27|26|26|28|29|30|31|25|25|45|32|27|28|29|30|31|32|33|34|44|36|37|38|40|40|41|42|43|44|45|47|47|0\n52|50|49|49|47|47|46|45|44|43|42|41|41|40|38|38|34|34|32|32|31|30|29|29|28|28|37|36|30|31|33|33|35|35|36|37|39|39|40|53|42|43|44|45|46|48|48|51|50|51|52|53|0\n39|37|37|36|35|34|31|31|32|30|30|40|41|29|28|25|25|26|24|23|23|43|24|27|26|27|28|29|42|33|32|33|34|35|36|38|38|39|40|41|42|43|0\n15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n33|31|29|28|28|27|26|25|24|23|21|20|20|19|18|18|32|19|22|21|22|23|24|25|26|27|30|29|30|31|32|33|0\n35|34|34|33|31|31|30|28|27|27|26|25|24|23|22|21|20|20|37|21|22|23|24|25|26|29|28|29|30|32|32|33|36|35|36|37|0\n17|16|15|15|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0\n17|17|18|15|15|16|20|21|14|13|13|23|14|22|16|19|18|19|20|21|22|23|0\n57|56|56|54|54|53|51|50|49|49|48|47|46|46|59|45|43|42|41|41|40|40|61|39|38|37|36|35|34|33|33|63|34|35|36|37|38|39|62|44|42|43|44|45|60|47|48|52|50|51|52|53|55|55|58|57|58|59|60|61|62|63|0\n29|29|25|25|24|23|23|27|22|22|31|21|20|19|18|18|33|19|20|21|32|28|24|26|26|27|28|30|30|31|32|33|0\n41|39|37|35|35|34|32|32|33|31|30|28|27|26|26|25|24|22|22|23|40|23|24|25|29|27|28|29|30|31|38|33|34|36|36|37|38|39|40|41|0\n17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0\n46|45|44|44|43|42|40|39|38|37|36|34|32|32|31|30|29|29|28|26|26|25|25|41|27|27|28|35|30|31|33|33|34|35|36|37|38|39|40|41|42|43|47|45|46|47|0\n61|60|57|56|54|53|53|52|49|48|48|50|46|46|44|43|41|41|40|40|39|38|36|36|34|33|33|32|32|58|59|35|34|35|37|37|38|39|45|42|42|43|44|45|47|47|51|49|50|51|52|55|54|55|56|57|58|59|60|61|0\n39|37|34|33|33|32|31|31|30|28|27|26|25|25|24|23|22|21|21|38|22|23|24|29|26|27|28|29|30|36|32|35|34|35|36|37|38|39|0\n56|55|54|53|53|52|50|50|48|44|44|43|43|46|42|41|40|37|37|36|33|33|34|32|32|31|30|30|49|31|39|35|34|35|36|38|38|39|40|41|42|47|45|45|46|47|48|49|51|51|52|57|54|55|56|57|0\n35|35|34|34|32|30|29|29|28|26|26|25|24|23|22|21|20|20|33|21|22|23|24|25|27|27|28|31|30|31|32|33|37|36|36|37|0\n35|33|31|31|30|29|27|27|26|26|25|23|23|21|20|19|19|22|20|21|22|24|24|25|34|28|28|29|30|32|32|33|34|35|0\n9|6|6|7|8|7|8|9|0\n21|20|20|18|18|19|16|15|14|13|13|17|14|15|16|17|23|19|22|21|22|23|0\n80|79|78|78|70|69|67|67|66|64|63|63|62|61|57|57|58|59|56|56|71|72|73|55|53|52|52|51|50|50|75|49|48|47|46|45|44|43|42|42|77|43|44|45|46|47|48|49|76|51|54|53|54|55|74|60|58|59|60|61|62|65|64|65|66|68|68|69|70|71|72|73|74|75|76|77|81|79|80|81|0\n40|36|35|34|34|37|38|33|33|32|31|29|28|27|26|24|24|23|22|22|30|23|25|25|26|27|28|29|30|31|32|41|39|35|36|37|38|39|40|41|0\n33|33|34|31|30|29|25|24|24|26|23|23|21|21|20|19|19|32|20|22|22|28|27|25|26|27|28|29|30|31|32|35|34|35|0\n53|50|50|49|48|48|47|45|43|42|42|41|39|37|36|36|35|35|34|33|32|30|29|29|28|28|46|31|30|31|32|33|34|40|38|37|38|39|40|41|44|43|44|45|46|47|52|49|51|51|52|53|0\n62|62|60|60|59|57|54|54|55|56|58|64|65|53|52|51|50|48|46|45|44|43|42|41|41|40|40|39|38|37|36|35|35|67|36|37|38|39|49|47|42|43|44|45|46|47|48|49|50|51|52|53|66|55|56|57|58|59|61|61|63|63|64|65|66|67|0\n44|43|42|41|41|40|39|35|35|36|34|32|32|30|30|29|28|27|26|25|24|24|38|25|26|27|28|29|31|31|33|33|34|37|36|37|38|39|40|45|42|43|44|45|0\n37|37|38|39|36|35|35|30|30|29|28|27|27|32|26|24|23|23|22|22|34|25|24|25|26|33|28|29|31|31|32|33|34|41|36|40|38|39|40|41|0\n46|43|43|44|41|41|42|40|39|37|35|35|33|33|32|31|30|28|27|27|26|25|25|38|26|29|28|29|30|31|32|34|34|36|36|37|38|39|40|47|42|45|44|45|46|47|0\n17|15|15|14|14|18|19|12|12|13|21|13|20|16|16|17|18|19|20|21|0\n52|50|48|48|49|51|53|47|45|44|44|43|39|38|38|37|36|35|35|41|33|32|32|31|30|29|29|55|30|31|34|33|34|42|36|37|40|39|40|41|42|43|46|45|46|47|54|49|50|51|52|53|54|55|0\n5|4|4|5|0\n49|49|48|47|47|51|52|45|45|44|43|42|42|54|40|39|37|36|35|35|33|33|31|30|29|29|32|41|30|31|32|34|34|38|36|37|38|39|40|41|55|43|44|46|46|53|48|50|50|51|52|53|54|55|0\n71|71|70|67|66|65|65|68|64|63|63|61|60|57|57|58|55|54|53|53|52|50|49|48|47|44|44|45|43|42|42|41|40|39|38|38|62|39|40|41|51|43|46|45|46|47|48|49|50|51|52|56|54|55|56|59|58|59|60|61|62|73|64|69|66|67|68|69|70|72|72|73|0\n24|24|21|21|20|19|17|16|16|15|14|14|23|15|18|17|18|19|20|22|22|23|25|25|0\n26|25|23|23|22|21|20|19|19|18|16|15|15|17|16|17|18|27|20|21|22|24|24|25|26|27|0\n41|41|40|39|39|36|36|34|34|33|31|31|30|27|26|25|24|24|28|23|23|38|29|25|26|27|28|29|30|32|32|33|35|35|37|37|38|43|40|42|42|43|0\n62|61|60|60|59|57|55|54|54|53|51|51|49|49|47|47|46|44|44|42|42|40|40|39|38|35|35|36|34|33|33|58|34|37|36|37|38|39|41|41|43|43|45|45|46|48|48|50|50|52|52|53|56|55|56|57|58|59|63|61|62|63|0\n27|24|24|23|22|22|20|19|16|16|17|15|15|21|18|17|18|19|20|21|26|23|25|25|26|27|0\n80|79|78|77|76|75|75|70|70|71|69|69|73|68|66|65|59|59|60|61|62|63|64|58|57|55|54|54|52|50|49|49|48|47|46|46|45|43|43|42|42|44|44|45|53|47|48|51|50|51|52|53|56|55|56|57|58|67|60|61|62|63|64|65|66|67|68|74|72|71|72|73|74|81|76|77|78|79|80|81|0\n56|55|54|54|53|49|49|50|48|47|47|44|44|43|40|40|41|39|38|37|36|35|34|32|32|31|30|30|46|31|33|33|34|35|36|37|38|39|42|41|42|43|45|45|46|52|48|51|50|51|52|53|57|55|56|57|0\n29|28|28|27|25|24|23|22|22|21|18|18|19|17|17|31|20|19|20|21|26|23|24|25|26|27|30|29|30|31|0\n42|41|40|39|38|38|36|35|34|33|32|30|30|29|27|27|26|25|24|23|23|37|24|25|26|28|28|29|31|31|32|33|34|35|36|37|43|39|40|41|42|43|0\n45|45|44|43|43|40|40|37|35|35|34|32|32|31|29|29|30|38|27|26|26|25|25|42|28|27|28|39|30|31|33|33|34|36|36|37|38|39|41|41|42|47|44|46|46|47|0\n19|17|16|15|13|12|12|11|11|18|14|13|14|15|16|17|18|19|0\n14|11|11|10|10|13|9|9|15|12|12|13|14|15|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n23|22|20|19|17|17|15|15|14|13|13|21|14|16|16|18|18|19|20|21|22|23|0\n51|49|43|43|44|42|41|40|39|38|37|36|36|46|35|35|34|33|32|31|30|29|28|27|27|50|28|29|30|31|32|33|34|48|47|37|38|39|40|41|42|45|44|45|46|47|48|49|50|51|0\n27|27|28|26|25|24|24|30|22|21|20|19|18|17|17|23|18|19|20|21|22|23|31|25|26|29|28|29|30|31|0\n32|32|33|31|31|35|30|29|28|28|26|24|23|23|22|21|20|20|27|21|22|25|24|25|26|27|37|29|30|36|34|33|34|35|36|37|0\n37|35|35|34|32|30|29|29|28|26|26|25|24|22|21|21|20|20|33|23|22|23|24|25|27|27|28|31|30|31|32|33|34|36|36|37|0\n31|30|29|28|28|32|33|26|25|24|23|23|22|21|20|19|19|35|20|21|22|27|24|25|26|27|34|29|30|31|32|33|34|35|0\n23|21|20|20|19|18|16|15|14|13|13|17|14|15|16|17|18|19|22|21|22|23|0\n17|16|13|12|12|11|10|10|15|11|14|13|14|15|16|17|0\n33|30|27|26|26|28|25|25|24|23|20|20|21|19|18|18|32|19|22|21|22|23|24|31|29|27|28|29|30|31|32|33|0\n74|72|72|71|70|69|68|67|64|64|65|63|63|62|61|59|58|57|56|55|53|53|52|51|50|48|48|46|46|44|44|40|40|41|42|39|39|60|43|41|42|43|45|45|47|47|49|49|50|51|52|54|54|55|56|57|58|59|60|61|62|75|66|65|66|67|68|69|70|71|73|73|74|75|0\n49|46|46|45|44|43|40|40|39|37|36|36|33|33|34|32|31|31|30|29|28|26|26|27|48|27|28|29|30|42|32|35|34|35|38|37|38|39|41|41|42|43|44|45|47|47|48|49|0\n35|34|33|32|32|31|30|30|27|26|25|24|24|23|22|21|20|20|29|21|22|23|28|25|26|27|28|29|37|31|36|33|34|35|36|37|0\n59|56|56|55|54|53|50|50|49|47|47|46|44|43|43|42|41|40|40|39|38|36|35|33|32|32|34|31|31|58|37|33|34|35|36|37|38|39|52|41|42|45|44|45|46|48|48|49|51|51|52|53|54|55|57|57|58|59|0\n26|23|23|24|21|21|20|20|27|18|18|17|16|16|29|17|19|19|28|22|22|25|24|25|26|27|28|29|0\n25|24|23|22|21|21|26|27|20|17|16|16|18|19|29|17|18|19|20|28|22|23|24|25|26|27|28|29|0\n49|46|46|45|44|43|42|41|39|39|38|37|35|35|33|32|31|30|30|29|28|27|26|26|48|27|28|29|34|31|32|33|34|36|36|37|38|40|40|41|42|43|44|45|47|47|48|49|0\n67|64|64|63|63|66|62|60|59|59|58|56|55|55|54|53|52|52|69|51|50|48|48|47|45|44|44|43|42|41|40|39|38|37|37|71|38|39|40|41|42|43|46|45|46|47|49|49|50|51|70|53|54|57|56|57|58|61|60|61|62|68|65|65|66|67|68|69|70|71|0\n24|23|22|22|25|21|20|19|18|17|16|15|15|27|16|17|18|19|20|21|26|23|24|25|26|27|0\n25|23|23|21|20|18|17|17|16|15|14|14|22|15|16|19|18|19|20|21|22|24|24|25|0\n45|42|42|37|36|35|34|34|38|39|40|33|30|30|29|29|28|26|26|25|24|24|44|25|27|27|28|32|31|31|32|33|41|35|36|37|38|39|40|41|43|43|44|45|0\n70|69|68|67|67|66|64|63|63|61|58|56|55|54|54|53|52|51|50|50|59|49|47|47|46|41|41|42|43|44|40|39|38|37|37|62|38|39|40|45|42|43|44|45|46|48|48|49|60|51|52|53|57|55|56|57|58|59|60|61|62|65|64|65|66|71|68|69|70|71|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n29|28|26|22|22|21|20|18|18|19|24|17|16|16|27|17|25|19|20|21|23|23|24|25|26|27|28|29|0\n26|24|24|25|22|21|19|19|18|16|16|15|15|23|17|17|18|20|20|21|22|23|27|25|26|27|0\n13|9|9|10|8|8|12|11|10|11|12|13|0\n33|31|28|28|27|26|24|24|25|23|21|20|20|19|18|18|32|19|22|21|22|23|30|25|26|27|29|29|30|31|32|33|0\n66|65|64|63|63|62|59|58|58|60|53|52|52|51|50|50|55|49|48|47|46|45|43|42|41|40|40|39|38|37|36|35|35|57|36|37|38|39|44|41|42|43|44|45|46|47|48|49|56|51|54|53|54|55|56|57|61|59|60|61|62|67|64|65|66|67|0\n52|50|49|49|48|47|46|46|45|41|40|39|39|42|37|37|34|34|33|32|32|36|30|29|28|28|31|29|30|31|44|33|35|35|36|38|38|43|40|41|42|43|44|45|53|47|48|51|50|51|52|53|0\n44|43|41|40|40|39|38|38|36|33|32|31|31|34|30|29|28|27|25|25|24|24|37|26|26|27|28|29|30|35|32|33|34|35|36|37|45|39|42|41|42|43|44|45|0\n38|37|36|36|34|31|31|32|30|25|25|26|27|28|23|23|22|21|21|35|22|24|24|29|26|27|28|29|30|33|32|33|34|35|39|37|38|39|0\n36|36|34|34|32|31|30|30|29|27|26|25|24|24|23|22|21|20|20|21|22|23|28|25|26|27|28|29|33|31|32|33|35|35|37|37|0\n61|61|59|58|58|57|56|56|63|64|55|54|53|52|49|48|48|50|47|46|46|66|67|43|43|44|42|41|40|39|38|37|36|36|69|37|38|39|40|41|42|45|44|45|68|47|51|49|50|51|52|53|54|55|65|57|60|59|60|62|62|63|64|65|66|67|68|69|0\n60|60|58|57|54|54|53|53|52|50|50|49|46|44|44|43|43|47|42|41|40|38|38|37|34|34|35|33|32|32|59|33|36|35|36|37|39|39|40|41|42|48|45|45|46|47|48|49|51|51|52|56|55|55|56|57|58|59|61|61|0\n38|35|35|36|32|32|29|29|30|31|34|26|25|25|24|23|22|21|21|28|22|23|24|27|26|27|28|39|30|31|33|33|34|37|36|37|38|39|0\n17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0\n52|49|49|50|46|46|47|48|43|43|42|41|40|39|38|36|35|35|33|33|32|31|30|29|28|28|45|29|30|31|32|34|34|37|36|37|38|39|40|41|42|44|44|45|53|47|48|51|50|51|52|53|0\n54|54|50|49|46|46|47|45|44|43|42|42|51|41|39|38|38|37|36|35|33|32|32|30|30|29|29|53|31|31|34|33|34|35|36|37|40|39|40|41|52|43|44|45|48|47|48|49|50|51|52|53|55|55|0\n29|23|22|20|20|21|24|25|26|19|18|17|16|16|28|17|18|19|27|21|22|23|24|25|26|27|28|29|0\n56|54|51|51|52|53|50|49|48|47|47|46|45|43|42|41|38|38|39|37|35|34|34|33|32|31|30|30|44|31|32|33|36|35|36|37|40|39|40|41|42|43|44|45|46|57|48|49|50|55|52|53|54|55|56|57|0\n51|49|43|43|42|42|45|41|39|39|38|37|36|35|34|34|47|31|31|32|30|28|28|27|27|50|29|29|30|33|32|33|48|35|36|37|38|40|40|41|46|44|44|45|46|47|48|49|50|51|0\n53|50|50|51|52|49|48|46|46|45|44|43|42|41|40|39|39|38|38|37|36|35|33|32|32|31|30|30|57|31|34|33|34|35|36|37|56|55|40|41|42|43|44|45|47|47|48|49|54|51|52|53|54|55|56|57|0\n33|33|34|32|31|29|28|28|30|36|37|27|26|24|23|23|22|21|21|39|22|25|24|25|26|27|38|29|30|31|32|35|34|35|36|37|38|39|0\n76|75|72|71|71|73|69|68|67|66|66|63|63|62|61|61|65|59|58|57|56|54|54|53|49|48|48|47|46|46|51|44|44|43|42|41|40|40|60|41|42|43|45|45|52|47|50|49|50|51|52|53|55|55|56|57|58|59|60|77|62|64|64|65|70|67|68|69|70|74|72|73|74|75|76|77|0\n10|7|7|8|9|11|8|9|10|11|0\n35|34|34|33|33|29|28|27|27|30|31|26|24|23|23|22|21|20|20|21|22|25|24|25|26|32|28|29|30|31|32|37|36|35|36|37|0\n34|33|33|35|32|29|29|28|28|31|26|25|23|23|22|21|20|20|27|21|22|24|24|25|26|27|37|30|30|31|32|36|34|35|36|37|0\n26|24|24|23|22|21|21|27|20|19|18|16|16|17|29|17|18|19|20|28|22|23|25|25|26|27|28|29|0\n53|52|51|50|50|49|48|46|46|47|55|45|44|43|41|41|40|38|38|37|36|35|34|33|32|31|30|30|57|31|32|33|34|35|36|37|39|39|40|42|42|43|44|45|56|47|48|49|54|51|52|53|54|55|56|57|0\n12|10|8|8|9|11|13|9|10|11|12|13|0\n15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n41|41|42|40|39|38|37|36|36|44|45|35|34|33|31|30|30|29|28|25|25|26|27|47|26|27|28|29|32|31|32|33|34|35|46|37|38|39|40|43|42|43|44|45|46|47|0\n38|38|34|34|31|30|30|28|28|29|27|27|26|25|24|22|22|21|21|37|23|23|24|25|26|36|33|29|32|31|32|33|35|35|36|37|39|39|0\n15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n69|68|66|66|65|64|63|60|60|61|62|70|71|55|55|56|54|52|52|51|50|50|58|49|48|47|46|44|43|43|42|40|39|39|38|38|73|41|40|41|42|45|44|45|46|47|48|49|59|51|53|53|54|57|56|57|58|59|72|61|62|63|64|65|67|67|68|69|70|71|72|73|0\n15|12|12|10|10|9|9|14|11|11|13|13|14|15|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n78|77|76|74|73|73|72|69|69|65|64|64|66|63|63|68|62|61|60|59|59|58|57|52|52|53|54|51|49|49|48|46|46|45|43|42|42|41|41|56|44|43|44|45|47|47|48|50|50|51|55|53|54|55|56|57|58|79|60|61|62|71|67|65|66|67|68|70|70|71|72|75|74|75|76|77|78|79|0\n56|54|54|52|52|51|50|49|48|46|45|45|47|44|42|41|41|39|38|36|35|34|34|33|32|31|30|30|40|31|32|33|37|35|36|37|38|39|40|43|42|43|44|57|46|47|48|49|50|51|53|53|55|55|56|57|0\n49|47|46|45|42|41|40|39|38|38|37|36|35|35|34|32|29|29|28|28|31|27|26|26|48|27|33|30|30|31|32|33|34|44|36|37|43|39|40|41|42|43|44|45|46|47|48|49|0\n61|60|60|59|57|56|55|54|54|53|52|51|49|49|48|46|46|45|41|41|40|40|43|39|39|38|34|34|35|33|33|37|36|35|36|37|38|63|44|42|42|43|44|45|47|47|48|50|50|51|52|53|58|55|56|57|58|59|62|61|62|63|0\n20|19|19|17|15|14|14|13|12|12|18|13|16|15|16|17|18|21|20|21|0\n35|33|32|32|31|30|28|27|27|26|25|25|36|23|22|21|20|20|24|21|22|23|24|37|26|29|28|29|30|31|34|33|34|35|36|37|0\n47|45|41|40|40|42|43|35|33|33|34|32|31|29|29|30|37|28|26|26|27|25|25|46|39|27|28|38|30|31|32|36|34|35|36|37|38|39|44|41|42|43|44|45|46|47|0\n56|54|54|53|52|52|57|50|48|47|47|46|44|43|42|42|40|40|41|39|35|34|34|36|37|32|31|31|33|59|32|33|38|35|36|37|38|39|51|41|45|43|44|45|46|49|48|49|50|51|58|53|55|55|56|57|58|59|0\n29|28|27|25|24|23|21|21|20|19|17|16|16|18|26|17|18|19|20|22|22|23|24|25|26|27|28|29|0\n25|23|22|21|20|19|17|17|15|15|14|14|24|16|16|18|18|19|20|21|22|23|24|25|0\n14|14|15|16|11|11|10|10|13|12|12|13|17|15|16|17|0\n23|22|22|24|21|19|18|17|16|14|14|15|20|15|16|17|18|19|20|21|25|23|24|25|0\n57|56|56|55|55|59|60|53|53|50|50|51|52|49|45|44|44|43|42|41|41|47|39|39|37|36|36|35|34|33|33|63|34|35|38|37|38|40|40|48|42|43|46|45|46|47|48|49|62|51|52|54|54|61|58|57|58|59|60|61|62|63|0\n59|57|53|53|54|51|51|52|50|49|48|47|46|45|43|43|42|41|39|39|38|37|36|33|33|34|32|31|31|58|32|35|34|35|36|37|38|40|40|41|42|44|44|45|46|47|48|49|50|56|52|55|54|55|56|57|58|59|0\n52|51|51|53|49|49|48|46|45|44|43|42|42|40|40|39|37|36|36|35|34|33|32|31|30|29|29|55|30|31|32|33|34|35|38|37|38|39|41|41|47|43|44|45|46|47|48|50|50|54|52|53|54|55|0\n47|42|41|40|39|39|43|44|37|36|36|35|32|31|31|33|29|29|28|26|26|25|25|46|27|27|28|30|30|34|32|33|34|35|38|37|38|45|40|41|42|43|44|45|46|47|0\n45|45|46|44|43|42|42|48|40|38|37|37|36|35|34|32|32|31|30|29|28|27|26|26|41|27|28|29|30|31|33|33|34|35|36|39|38|39|40|41|49|43|44|47|46|47|48|49|0\n41|38|38|39|37|36|36|35|34|33|32|31|30|29|27|26|26|25|24|23|23|43|24|25|28|27|28|29|30|31|32|33|34|35|42|37|40|39|40|41|42|43|0\n29|27|25|24|23|23|22|20|19|19|18|17|16|16|28|17|18|21|20|21|22|26|24|25|26|27|28|29|0\n50|48|47|47|45|44|41|41|42|40|39|39|38|37|36|36|35|34|31|31|29|28|28|27|27|33|30|29|30|32|32|33|34|35|51|37|38|46|40|43|42|43|44|45|46|49|48|49|50|51|0\n57|57|58|56|55|55|54|53|52|51|51|61|50|45|45|44|43|42|42|47|48|41|40|39|38|35|35|36|34|33|33|63|34|37|36|37|38|39|40|41|49|43|44|46|46|47|48|49|50|62|52|53|54|60|56|59|58|59|60|61|62|63|0\n101|98|98|95|89|89|90|88|88|92|87|87|86|86|85|81|80|80|79|79|83|77|77|76|76|72|71|70|70|73|74|69|68|67|66|65|64|63|62|61|60|58|55|55|56|57|54|53|52|52|100|53|54|59|56|57|58|59|60|61|62|63|64|65|66|67|68|69|75|71|72|73|74|75|97|78|78|84|82|81|82|83|84|85|96|94|93|91|90|91|92|93|94|95|96|97|99|99|100|101|0\n32|32|30|28|26|25|25|27|21|21|20|19|19|23|18|18|31|24|20|22|22|23|24|29|26|27|28|29|30|31|33|33|0\n48|45|44|44|46|43|42|40|40|39|38|37|36|36|35|32|32|33|30|29|28|27|26|26|31|27|28|29|30|31|34|33|34|35|49|37|38|39|41|41|42|43|47|45|46|47|48|49|0\n39|38|37|36|35|34|34|40|33|30|30|31|29|29|42|43|28|25|25|26|24|24|45|27|26|27|28|44|32|31|32|33|41|35|36|37|38|39|40|41|42|43|44|45|0\n28|28|26|24|23|23|22|21|18|18|19|17|16|16|27|17|20|19|20|21|22|25|24|25|26|27|29|29|0\n65|64|63|63|66|60|59|59|58|53|52|51|51|54|50|49|49|56|48|47|47|46|46|68|43|43|40|40|39|39|38|37|36|36|45|37|38|42|41|41|42|44|44|45|69|62|48|57|50|55|52|53|54|55|56|57|58|61|60|61|62|67|64|65|66|67|68|69|0\n40|36|35|35|34|32|32|33|38|30|28|28|29|27|25|25|24|22|22|23|41|23|24|26|26|27|31|29|30|31|39|33|34|37|36|37|38|39|40|41|0\n9|6|6|7|8|7|8|9|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n21|20|19|17|16|15|13|13|12|12|18|14|14|15|16|17|18|19|20|21|0\n19|18|18|17|15|15|14|13|12|12|21|13|14|16|16|17|20|19|20|21|0\n25|22|21|20|20|18|17|16|16|15|14|14|24|15|19|17|18|19|23|21|22|23|24|25|0\n19|19|17|17|16|14|14|13|12|12|21|13|15|15|16|18|18|20|20|21|0\n4|4|5|5|0\n29|29|30|26|25|24|24|23|22|21|18|18|19|17|17|28|20|19|20|21|22|23|27|25|26|27|28|31|30|31|0\n22|22|20|18|16|16|15|15|14|13|13|21|14|19|17|17|18|19|20|21|23|23|0\n48|47|46|46|44|43|42|41|40|39|37|36|35|35|34|31|31|30|28|28|29|27|26|26|45|27|33|29|30|32|32|33|34|38|36|37|38|39|40|41|42|43|44|45|49|47|48|49|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n28|26|26|27|29|22|22|23|21|21|20|19|18|17|17|31|18|19|20|25|24|23|24|25|30|27|28|29|30|31|0\n11|11|12|9|8|8|10|9|10|13|12|13|0\n18|18|16|12|12|13|14|11|11|17|15|13|14|15|16|17|19|19|0\n25|24|24|21|20|18|18|17|17|22|16|15|15|27|16|23|19|19|20|21|22|23|26|25|26|27|0\n48|47|47|45|45|44|43|41|41|40|39|38|37|36|36|50|51|34|33|32|31|31|30|28|28|29|53|29|30|35|32|33|34|35|52|37|38|39|40|42|42|43|44|46|46|49|48|49|50|51|52|53|0\n42|41|40|40|39|33|33|32|32|30|29|28|28|31|36|27|25|25|24|23|23|38|24|26|26|27|37|29|30|31|35|34|34|35|36|37|38|39|43|41|42|43|0\n31|31|30|28|28|27|27|25|24|21|21|20|19|19|18|18|26|23|20|22|22|23|24|25|26|33|29|29|30|32|32|33|0\n36|35|35|37|34|33|32|30|28|28|29|27|26|24|24|23|22|21|21|39|22|23|25|25|26|27|31|29|30|31|32|33|34|38|36|37|38|39|0\n75|73|71|70|69|69|68|66|66|65|63|62|62|61|58|57|56|55|55|59|53|53|51|51|50|47|47|48|46|45|43|42|42|41|40|39|39|74|40|41|44|43|44|45|46|49|48|49|50|52|52|54|54|60|56|57|58|59|60|61|64|63|64|65|67|67|68|72|70|71|72|73|74|75|0\n41|39|38|36|36|35|30|30|31|32|33|34|27|25|25|23|23|22|22|28|29|24|24|26|26|27|28|29|40|31|32|33|34|35|37|37|38|39|40|41|0\n33|31|29|28|28|27|25|23|23|22|21|21|20|19|18|18|32|19|20|26|22|24|24|25|26|27|30|29|30|31|32|33|0\n8|8|9|7|7|11|10|9|10|11|0\n18|17|16|15|15|13|12|11|11|14|12|13|14|19|16|17|18|19|0\n41|41|42|43|39|38|38|37|35|30|30|29|28|28|32|33|27|27|26|25|24|24|45|25|26|36|34|29|31|31|32|33|34|35|36|37|40|39|40|44|42|43|44|45|0\n46|45|43|42|42|41|38|37|37|36|35|35|34|32|32|31|30|29|28|27|25|25|26|47|26|27|28|29|30|31|33|33|34|40|36|39|38|39|40|41|44|43|44|45|46|47|0\n31|31|30|30|28|26|25|23|23|22|22|27|20|19|18|18|21|19|20|21|29|24|24|25|26|27|28|29|33|32|32|33|0\n13|11|11|9|8|8|10|9|10|12|12|13|0\n52|51|49|49|50|48|46|46|43|43|42|40|40|39|38|36|35|34|34|33|31|31|30|29|28|28|45|29|30|32|32|33|37|35|36|37|38|39|41|41|42|44|44|45|47|47|48|53|50|51|52|53|0\n60|59|59|58|57|55|52|52|53|51|50|49|49|48|47|46|46|45|44|43|42|40|40|39|37|37|36|34|34|33|33|63|35|35|36|38|38|39|41|41|42|43|44|45|62|47|48|56|50|51|54|53|54|55|56|57|58|61|60|61|62|63|0\n75|75|74|73|73|71|70|68|67|67|66|63|60|59|59|61|62|64|58|57|55|54|53|53|52|51|48|47|47|49|46|45|43|42|42|41|40|40|72|41|44|43|44|45|46|50|48|49|50|51|52|56|54|55|56|57|58|65|60|61|62|63|64|65|66|69|68|69|70|71|72|77|74|76|76|77|0\n21|20|20|19|19|16|16|15|14|13|13|18|14|15|17|17|18|23|22|21|22|23|0\n43|42|41|39|39|35|34|33|32|31|31|36|30|29|27|26|26|25|24|23|23|38|24|25|28|27|28|29|30|37|32|33|34|35|36|37|38|40|40|41|42|43|0\n26|25|24|24|23|22|20|19|17|15|15|16|18|21|16|17|18|19|20|21|22|23|27|25|26|27|0\n24|24|25|23|23|22|21|19|17|17|16|15|15|20|16|18|18|19|20|21|22|27|26|25|26|27|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n57|55|53|53|51|51|47|46|46|45|42|42|43|44|49|40|40|39|39|38|37|36|33|33|32|31|30|30|35|31|32|34|34|35|36|37|38|56|41|41|50|43|44|45|48|47|48|49|50|52|52|54|54|55|56|57|0\n9|9|8|7|7|11|8|10|10|11|0\n42|41|40|39|38|36|36|37|35|32|32|33|27|26|26|28|29|25|24|23|23|31|24|25|30|27|28|29|30|31|34|33|34|35|43|37|38|39|40|41|42|43|0\n44|44|43|41|39|38|35|35|36|34|33|32|31|30|28|28|29|27|26|25|24|24|42|25|26|27|40|29|30|31|32|33|34|37|36|37|38|39|40|41|42|43|45|45|0\n8|7|6|6|9|7|8|9|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n22|21|20|20|18|15|15|16|14|13|13|19|14|17|16|17|18|19|23|21|22|23|0\n50|49|48|47|46|42|41|40|39|39|38|37|37|44|36|35|34|33|32|32|31|30|28|27|27|29|28|29|30|31|51|33|34|35|36|45|38|43|40|41|42|43|44|45|46|47|48|49|50|51|0\n39|38|37|35|35|36|40|41|34|33|32|31|30|29|28|27|26|25|24|23|23|43|24|25|26|27|28|29|30|31|32|33|34|42|36|37|38|39|40|41|42|43|0\n29|26|25|24|24|23|23|21|20|17|17|16|16|19|22|18|18|19|20|21|22|28|27|25|26|27|28|29|0\n52|51|49|49|48|47|47|46|45|43|40|40|41|38|38|37|36|35|34|33|32|31|30|29|28|28|44|29|30|31|32|33|34|35|36|37|39|39|42|41|42|43|44|45|46|53|48|50|50|51|52|53|0\n27|25|25|24|23|23|22|21|20|17|17|18|16|16|29|19|18|19|20|21|22|28|24|26|26|27|28|29|0\n22|21|21|20|19|16|16|15|14|13|13|18|14|15|17|17|18|19|20|23|22|23|0\n29|27|27|24|24|23|22|21|20|19|18|17|16|16|26|17|18|19|20|21|22|23|25|25|26|28|28|29|0\n23|22|20|19|18|18|17|15|14|13|13|16|14|15|16|17|21|19|20|21|22|23|0\n3|3|0\n45|45|44|42|41|40|40|39|38|36|35|35|34|33|32|32|30|27|27|28|26|25|25|31|26|29|28|29|30|31|47|33|34|37|36|37|38|39|43|41|42|43|44|46|46|47|0\n68|68|67|64|64|63|63|61|60|59|58|57|54|52|51|50|50|49|49|55|48|46|45|45|44|43|42|41|40|37|37|38|36|36|62|39|38|39|40|41|42|43|44|47|46|47|48|56|53|51|52|53|54|55|56|57|58|59|60|61|62|66|65|65|66|67|69|69|0\n12|11|11|13|10|9|9|15|10|14|12|13|14|15|0\n69|64|64|65|66|63|60|59|59|58|58|57|54|54|53|52|52|51|49|48|46|45|45|43|43|44|42|40|40|39|38|36|36|37|68|37|38|39|41|41|42|50|44|47|46|47|48|49|50|51|56|53|55|55|56|57|62|61|60|61|62|63|67|65|66|67|68|69|0\n41|41|40|39|38|37|37|43|44|45|31|31|30|29|28|28|33|34|35|27|26|25|25|47|26|27|36|29|30|32|32|33|34|35|36|46|38|39|40|42|42|43|44|45|46|47|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n33|33|32|31|30|30|29|28|26|25|24|23|21|21|20|19|19|27|20|22|22|23|24|25|26|27|28|29|35|31|32|34|34|35|0\n40|39|39|41|37|36|35|33|32|32|31|30|29|28|27|26|26|25|24|23|23|43|24|25|38|27|28|29|30|31|34|33|34|35|36|37|38|42|40|41|42|43|0\n64|58|57|57|56|54|54|55|60|52|52|51|50|49|49|62|47|47|46|45|44|43|42|42|65|40|39|39|38|37|36|35|35|67|36|37|38|41|40|41|66|43|44|45|46|48|48|63|50|51|53|53|61|55|56|59|58|59|60|61|62|63|64|65|66|67|0\n40|38|38|36|36|35|33|32|32|31|31|30|28|28|26|25|24|24|23|22|22|23|27|25|26|27|29|29|30|41|34|33|34|35|37|37|39|39|40|41|0\n29|29|28|26|25|25|24|23|22|22|31|21|19|19|18|18|33|20|20|21|32|23|24|27|26|27|28|30|30|31|32|33|0\n18|17|15|13|13|14|12|11|11|19|12|16|14|15|16|17|18|19|0\n49|46|45|45|47|44|42|42|40|40|41|50|51|37|37|36|35|35|33|32|31|31|30|29|28|28|53|29|30|34|32|33|34|39|36|38|38|39|52|41|43|43|44|48|46|47|48|49|50|51|52|53|0\n77|76|75|75|74|73|72|69|68|68|70|67|66|66|65|61|60|59|58|58|62|57|55|54|54|52|52|50|50|49|48|47|47|44|44|43|42|41|41|46|42|43|45|45|46|64|48|49|51|51|53|53|56|55|56|57|63|59|60|61|62|63|64|65|79|67|71|69|70|71|72|73|74|78|76|77|78|79|0\n57|55|52|51|49|49|50|53|48|47|45|43|43|42|41|41|40|39|38|37|35|34|33|33|31|30|30|32|56|31|32|36|34|35|36|37|38|39|40|46|42|44|44|45|46|47|48|54|50|51|52|53|54|55|56|57|0\n34|33|32|32|31|30|29|29|28|27|25|25|26|22|22|20|20|21|24|21|23|23|24|37|26|27|28|36|30|31|35|33|34|35|36|37|0\n86|85|83|83|84|82|80|79|79|75|74|72|72|71|71|76|70|67|66|65|64|64|68|62|61|60|59|58|57|56|55|55|53|53|52|50|50|49|48|47|46|45|45|78|46|47|48|49|51|51|52|54|54|63|56|57|58|59|60|61|62|63|69|65|66|67|68|69|70|77|73|73|74|75|76|77|78|81|80|81|82|87|84|85|86|87|0\n34|33|31|31|30|27|26|25|25|24|24|23|22|22|19|19|20|21|20|21|35|23|29|28|26|27|28|29|30|32|32|33|34|35|0\n26|26|25|23|22|22|15|15|16|17|18|19|20|21|16|17|18|19|20|21|24|23|24|25|27|27|0\n23|21|20|17|17|16|16|15|14|13|13|22|14|15|19|18|18|19|20|21|22|23|0\n26|25|23|22|22|21|19|19|20|17|16|15|15|18|16|17|18|27|20|21|24|23|24|25|26|27|0\n20|19|19|17|15|14|14|13|12|12|18|13|16|15|16|17|18|21|20|21|0\n21|19|18|16|14|14|15|13|12|12|20|13|17|15|16|17|18|19|20|21|0\n82|81|80|77|77|76|75|74|74|73|71|71|70|69|68|68|67|66|64|63|61|61|59|59|56|56|55|53|53|52|52|51|49|48|47|46|45|44|44|43|43|65|50|45|46|47|48|49|50|51|58|54|54|55|57|57|58|60|60|62|62|63|64|65|66|67|83|69|70|72|72|73|79|75|76|78|78|79|80|81|82|83|0\n47|46|41|40|39|37|37|36|35|34|33|33|42|43|32|31|30|29|28|27|25|25|26|45|26|27|28|29|30|31|32|44|34|35|36|38|38|39|40|41|42|43|44|45|46|47|0\n17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0\n49|48|48|47|47|45|44|42|42|41|40|38|37|37|36|34|33|33|32|31|30|29|28|27|27|46|28|29|30|31|32|35|34|35|36|39|38|39|40|41|43|43|44|45|46|51|50|49|50|51|0\n49|48|48|47|47|44|43|41|40|40|42|39|37|36|35|35|34|32|32|30|30|29|27|27|28|46|28|29|31|31|33|33|34|38|36|37|38|39|45|41|42|43|44|45|46|51|50|49|50|51|0\n47|46|45|44|44|43|41|40|39|39|38|38|37|37|36|34|34|33|32|31|29|28|28|27|27|51|30|29|30|31|32|33|35|35|36|50|49|42|40|41|42|43|48|45|46|47|48|49|50|51|0\n50|50|49|48|45|44|44|46|41|40|40|39|38|37|37|36|32|31|31|30|30|34|28|28|27|27|29|29|35|33|32|33|34|35|36|43|38|39|42|41|42|43|47|45|46|47|48|49|51|51|0\n52|51|50|50|49|48|46|45|43|42|41|41|40|39|37|35|34|34|36|33|31|30|30|29|28|28|47|29|32|31|32|33|38|35|36|37|38|39|40|44|42|43|44|45|46|47|48|49|53|51|52|53|0\n60|60|59|57|57|51|51|50|48|48|47|46|45|45|53|54|44|43|40|40|41|39|37|36|35|35|34|33|32|32|56|33|34|38|36|37|38|39|42|41|42|43|44|55|46|47|49|49|50|52|52|53|54|55|56|58|58|59|61|61|0\n58|57|56|53|53|52|50|50|48|47|47|45|45|46|44|43|42|42|41|40|37|37|36|34|34|33|32|31|31|39|32|33|35|35|36|38|38|39|40|41|59|43|44|55|46|49|48|49|51|51|52|54|54|55|56|57|58|59|0\n25|23|22|20|20|18|18|17|16|15|14|14|24|15|16|17|19|19|21|21|22|23|24|25|0\n59|59|56|56|57|55|54|54|61|52|52|51|51|63|50|49|47|47|46|44|43|43|42|41|40|39|37|36|36|35|34|34|65|35|38|37|38|39|40|41|42|45|44|45|46|48|48|49|50|64|53|53|62|55|58|57|58|60|60|61|62|63|64|65|0\n53|51|49|48|47|46|46|45|40|40|41|37|37|38|36|36|43|34|34|33|32|31|30|29|28|28|52|29|30|31|32|33|35|35|44|39|38|39|42|41|42|43|44|45|50|47|48|49|50|51|52|53|0\n55|48|47|46|45|45|42|41|41|40|39|38|34|34|35|36|33|32|32|44|50|30|30|31|52|29|29|54|53|31|51|33|37|35|36|37|38|39|40|43|42|43|44|49|46|47|48|49|50|51|52|53|54|55|0\n26|26|27|25|24|23|20|20|19|18|18|17|16|16|29|17|22|19|21|21|22|23|24|25|28|27|28|29|0\n49|48|48|47|45|44|44|43|42|41|39|39|38|34|34|33|32|32|36|29|29|30|28|28|27|27|51|31|30|31|37|33|35|35|36|37|38|40|40|41|42|43|46|45|46|47|50|49|50|51|0\n44|44|43|41|40|36|34|33|32|32|31|30|29|28|28|37|38|26|25|25|24|24|42|27|26|27|39|29|30|31|35|33|34|35|36|37|38|39|40|41|42|43|45|45|0\n12|9|9|8|8|11|13|10|10|11|12|13|0\n29|27|25|24|23|23|22|20|20|19|18|17|16|16|28|17|18|19|21|21|22|26|24|25|26|27|28|29|0\n20|19|18|16|16|13|13|14|12|12|21|15|14|15|17|17|18|19|20|21|0\n52|52|50|49|46|45|45|47|44|43|41|40|39|39|38|37|36|32|32|33|34|30|30|29|28|28|51|29|31|31|35|33|34|35|36|37|38|42|40|41|42|43|44|48|46|47|48|49|50|51|53|53|0\n39|38|37|37|36|33|32|31|31|34|30|30|29|26|26|25|24|23|22|22|28|23|24|25|27|27|28|29|41|35|32|33|34|35|36|40|38|39|40|41|0\n59|59|60|61|62|63|58|56|56|54|53|53|52|49|48|47|46|46|50|45|45|44|43|40|39|37|36|36|35|34|34|41|42|35|38|37|38|39|40|41|42|43|44|65|51|47|48|49|50|51|52|55|54|55|57|57|58|64|60|61|62|63|64|65|0\n17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0\n66|66|65|64|64|68|62|62|61|58|58|59|57|57|70|54|51|49|49|48|46|46|47|52|53|45|42|42|43|41|39|39|38|37|37|56|38|40|40|41|44|43|44|45|55|47|48|50|50|51|52|53|54|55|56|71|60|59|60|61|63|63|69|65|67|67|68|69|70|71|0\n33|28|28|27|26|26|30|25|23|23|22|21|19|19|18|18|32|20|20|21|22|24|24|25|31|27|29|29|30|31|32|33|0\n21|19|17|16|15|14|14|13|12|12|20|13|18|15|16|17|18|19|20|21|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n27|24|23|22|22|21|20|19|18|17|16|15|15|26|16|17|18|19|20|21|25|23|24|25|26|27|0\n42|39|39|38|37|36|36|35|34|33|31|31|32|30|29|27|26|25|24|23|23|28|24|25|26|27|28|29|30|43|32|33|34|35|41|37|38|40|40|41|42|43|0\n40|39|36|35|35|37|33|32|32|31|29|28|28|27|27|26|25|22|22|23|24|23|24|25|26|41|30|29|30|31|34|33|34|38|36|37|38|39|40|41|0\n99|97|97|95|94|94|93|92|90|84|84|85|86|87|88|89|83|81|79|78|78|77|74|74|75|73|73|82|100|101|72|71|70|69|68|64|63|63|62|62|66|61|60|59|58|56|55|55|53|53|54|103|54|57|56|57|58|59|60|61|67|65|64|65|66|67|68|69|70|71|72|102|76|75|76|77|80|79|80|81|82|83|91|85|86|87|88|89|90|91|92|93|96|95|96|98|98|99|100|101|102|103|0\n68|67|67|65|65|63|62|61|60|60|59|59|70|57|56|56|55|54|52|51|51|50|48|48|47|46|45|45|72|73|44|43|42|41|40|39|39|75|40|41|42|43|44|74|46|47|49|49|50|53|52|53|54|55|58|57|58|71|64|61|62|63|64|66|66|69|68|69|70|71|72|73|74|75|0\n54|53|52|51|51|50|49|44|43|41|40|40|39|37|36|36|35|35|45|46|34|33|32|31|30|29|29|48|30|31|32|33|34|47|38|37|38|39|42|41|42|43|44|45|46|47|48|49|50|55|52|53|54|55|0\n16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0\n19|19|18|17|17|21|16|15|14|13|13|23|14|15|16|22|18|20|20|21|22|23|0\n29|25|25|24|23|22|21|20|19|18|17|16|16|27|28|17|18|19|20|21|22|23|24|26|26|27|28|29|0\n65|61|60|60|59|59|63|57|56|56|49|47|45|45|46|44|44|50|51|42|42|41|40|40|39|38|36|36|35|34|34|54|55|35|37|37|38|39|53|41|43|43|52|48|46|47|48|49|50|51|52|53|54|55|58|57|58|64|62|61|62|63|64|65|0\n61|59|58|57|56|54|52|52|53|51|49|48|45|39|39|40|41|38|38|43|44|46|36|35|35|34|34|33|32|32|60|33|50|37|36|37|47|42|40|41|42|43|44|45|46|47|48|49|50|51|55|53|54|55|56|57|58|59|60|61|0\n33|31|29|29|28|26|25|24|24|23|22|21|20|18|18|19|32|19|20|21|22|23|27|25|26|27|28|30|30|31|32|33|0\n62|60|59|59|61|58|57|47|46|45|45|48|44|43|42|42|50|40|40|41|52|53|54|37|37|36|36|35|34|33|33|56|34|35|39|38|38|39|55|41|51|43|44|49|46|47|48|49|50|51|52|53|54|55|56|57|58|63|60|61|62|63|0\n27|24|23|22|22|25|21|20|18|17|16|15|15|19|16|17|18|19|20|21|26|23|24|25|26|27|0\n45|43|43|42|41|40|39|39|46|47|38|37|33|33|32|31|30|30|35|28|28|27|26|26|49|27|29|29|36|31|32|34|34|35|36|37|38|48|40|41|42|44|44|45|46|47|48|49|0\n48|47|46|46|45|44|43|43|42|35|35|34|34|37|33|32|32|39|40|30|29|29|28|27|27|51|28|31|30|31|41|33|38|36|36|37|38|39|40|41|42|50|44|45|49|47|48|49|50|51|0\n23|20|19|17|17|16|16|14|14|13|13|22|15|15|21|18|18|19|20|21|22|23|0\n52|51|50|49|48|46|45|45|44|43|42|41|41|40|38|37|37|35|34|33|32|29|29|30|28|28|36|31|30|31|32|33|34|35|36|39|38|39|40|53|42|43|44|47|46|47|48|49|50|51|52|53|0\n68|67|66|65|64|63|62|61|60|60|59|58|56|54|54|53|49|49|50|51|48|47|46|45|44|43|42|40|39|39|38|37|36|36|57|37|38|41|40|41|42|43|44|45|46|47|48|52|50|51|52|53|55|55|56|57|58|59|69|61|62|63|64|65|66|67|68|69|0\n64|63|62|61|61|65|59|58|57|57|56|55|55|67|53|53|52|50|50|48|48|44|43|42|42|41|40|39|39|46|38|37|36|36|69|37|38|47|40|41|45|43|44|45|46|47|49|49|51|51|52|54|54|68|56|60|58|59|60|66|62|63|64|65|66|67|68|69|0\n44|43|42|42|41|39|39|35|34|33|33|32|31|30|29|29|28|26|26|24|24|25|38|25|27|27|28|37|30|31|32|36|34|35|36|37|38|40|40|41|45|43|44|45|0\n23|23|22|21|20|20|18|17|16|15|14|14|19|15|16|17|18|19|25|21|22|24|24|25|0\n33|33|32|32|30|29|28|27|26|24|23|22|21|20|19|19|25|31|20|21|22|23|24|25|26|27|28|29|30|31|35|34|34|35|0\n59|56|56|55|54|53|50|49|49|51|48|47|43|42|41|39|38|38|37|36|36|35|35|45|34|33|32|31|31|58|32|33|34|46|44|37|40|39|40|41|42|43|44|45|46|47|48|52|50|51|52|53|54|55|57|57|58|59|0\n21|20|19|18|17|17|22|15|13|13|14|16|14|15|16|23|18|19|20|21|22|23|0\n82|81|81|79|79|77|76|75|74|73|72|71|71|70|69|69|84|85|67|65|64|63|63|62|60|59|59|58|56|56|55|54|53|52|50|50|49|49|48|46|46|45|45|87|47|47|48|68|51|51|52|53|54|55|57|57|58|61|60|61|62|66|64|65|66|67|68|86|70|78|72|73|74|75|76|77|78|80|80|83|82|83|84|85|86|87|0\n31|30|29|28|27|27|26|26|33|24|23|22|22|21|20|19|19|35|20|21|25|23|24|25|34|32|28|29|30|31|32|33|34|35|0\n21|19|17|17|15|14|14|13|12|12|20|13|16|15|16|18|18|19|20|21|0\n41|41|40|39|39|38|37|33|31|30|30|29|26|26|27|25|25|34|23|23|24|36|24|35|28|27|28|29|32|31|32|33|34|35|36|37|38|43|40|42|42|43|0\n55|55|52|52|53|51|50|50|49|46|44|44|45|43|42|40|40|38|37|34|34|35|33|33|32|31|30|30|48|31|32|39|36|35|36|37|38|39|41|41|42|43|47|45|46|47|48|49|57|51|54|53|54|56|56|57|0\n47|46|45|44|44|43|40|39|39|41|37|37|36|35|34|33|33|31|29|28|28|27|26|26|32|27|30|29|30|31|32|49|34|35|36|38|38|42|40|41|42|43|48|45|46|47|48|49|0\n12|11|11|10|9|8|8|9|10|13|12|13|0\n53|53|52|52|47|45|45|44|43|42|42|48|40|40|38|36|36|37|35|34|32|32|31|30|30|29|29|51|50|31|33|33|34|35|39|37|38|39|41|41|49|43|44|46|46|47|48|49|50|51|55|54|54|55|0\n24|24|25|22|22|21|18|17|17|19|16|15|15|27|16|20|18|19|20|21|23|23|26|25|26|27|0\n42|41|40|39|38|36|36|37|35|32|32|33|30|27|27|28|26|25|24|23|23|31|24|25|26|29|28|29|30|31|34|33|34|35|43|37|38|39|40|41|42|43|0\n19|17|16|14|13|13|12|12|11|11|18|15|14|15|16|17|18|19|0\n39|37|37|38|36|32|32|33|34|31|30|29|29|27|24|24|25|23|22|22|28|23|26|25|26|27|28|41|30|31|35|33|34|35|36|40|38|39|40|41|0\n29|28|26|26|24|23|22|20|20|19|18|16|16|17|25|17|18|19|21|21|22|23|24|25|27|27|28|29|0\n62|61|60|59|57|56|55|55|54|51|50|50|49|47|46|45|45|44|43|43|42|41|41|40|39|38|36|35|35|33|33|34|34|37|36|37|38|39|40|63|42|53|44|48|46|47|48|49|52|51|52|53|54|58|56|57|58|59|60|61|62|63|0\n68|67|66|65|64|62|62|60|59|59|58|57|56|55|54|54|53|52|50|49|48|47|45|45|44|43|42|41|40|39|36|36|37|38|51|37|38|39|40|41|42|43|44|46|46|47|48|49|50|51|52|53|69|55|56|57|58|61|60|61|63|63|64|65|66|67|68|69|0\n61|59|59|58|57|55|54|54|53|53|62|63|51|51|50|48|48|47|46|45|43|43|42|39|39|38|37|37|36|34|34|35|65|35|36|41|38|40|40|41|42|44|44|45|46|47|49|49|50|52|52|64|56|55|56|57|58|60|60|61|62|63|64|65|0\n21|17|17|18|15|15|14|13|12|12|20|13|14|16|16|19|18|19|20|21|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n64|63|62|62|61|60|58|57|51|51|52|48|47|46|46|49|45|41|41|42|43|40|39|39|54|55|38|37|36|35|34|34|59|35|36|37|38|56|40|44|42|43|44|45|50|47|48|49|50|53|52|53|54|55|56|57|58|59|60|61|65|63|64|65|0\n39|37|37|35|33|33|32|29|28|28|30|26|25|25|24|23|21|21|22|36|22|23|24|27|26|27|31|29|30|31|32|34|34|35|36|38|38|39|0\n40|39|39|36|35|34|33|33|31|30|30|29|28|27|25|24|24|22|22|23|38|23|26|25|26|27|28|29|32|31|32|37|34|35|36|37|38|41|40|41|0\n11|9|7|7|8|10|8|9|10|11|0\n44|43|42|42|45|41|40|39|38|36|36|34|33|32|32|31|30|29|29|27|26|25|25|28|26|27|28|47|30|31|35|33|34|35|37|37|38|39|40|41|46|43|44|45|46|47|0\n36|35|34|32|32|33|31|30|28|28|25|24|24|23|21|21|20|20|27|22|22|23|26|25|26|27|29|29|30|31|37|33|34|35|36|37|0\n58|57|56|55|54|52|52|53|51|49|48|47|47|46|44|42|42|41|40|38|37|35|34|34|33|32|32|31|31|45|39|33|36|35|36|37|38|39|40|41|43|43|44|45|46|50|48|49|50|51|59|53|54|55|56|57|58|59|0\n3|3|0\n27|26|25|24|24|28|29|23|22|20|19|19|18|17|17|31|18|21|20|21|22|23|30|25|26|27|28|29|30|31|0\n15|15|14|12|12|11|10|10|17|11|13|13|14|16|16|17|0\n27|24|24|23|22|21|20|19|18|17|16|16|15|15|26|17|18|19|20|21|22|23|25|25|26|27|0\n39|37|34|32|31|31|33|30|30|29|26|25|24|24|27|23|22|21|21|38|22|23|28|25|26|27|28|29|36|35|32|33|34|35|36|37|38|39|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n56|55|54|53|51|49|48|47|47|50|45|45|44|43|41|41|39|39|36|34|33|33|35|37|38|32|31|30|30|31|32|57|34|35|36|37|38|40|40|42|42|43|44|46|46|52|48|49|50|51|52|53|54|55|56|57|0\n49|48|48|47|46|45|45|51|42|40|39|39|38|37|36|35|34|34|43|32|32|31|30|28|28|29|53|29|30|31|33|33|44|35|36|37|38|41|40|41|42|43|44|52|46|47|50|49|50|51|52|53|0\n23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0\n27|26|26|25|21|21|22|23|19|19|18|16|16|17|29|17|18|20|20|24|22|23|24|25|28|27|28|29|0\n16|15|14|12|11|11|10|10|17|13|12|13|14|15|16|17|0\n60|59|58|56|56|55|55|54|52|52|48|47|46|45|45|49|44|42|42|41|40|38|37|36|35|35|34|33|32|32|51|33|34|39|36|37|38|39|40|41|43|43|44|50|46|47|48|49|50|51|53|53|54|61|57|57|58|59|60|61|0\n30|29|28|27|27|26|24|24|22|18|18|19|20|17|17|23|21|19|20|21|22|23|25|25|26|31|28|29|30|31|0\n41|40|37|37|35|34|33|33|32|31|30|29|28|27|26|25|24|23|22|22|39|23|24|25|26|27|28|29|30|31|32|36|34|35|36|38|38|39|40|41|0\n65|62|62|61|60|59|56|55|55|54|53|53|52|51|50|49|46|46|45|43|43|42|42|41|40|39|38|37|35|35|34|34|64|36|36|37|38|39|40|41|48|44|44|45|47|47|48|49|50|51|52|58|54|57|56|57|58|59|60|61|63|63|64|65|0\n47|46|43|43|44|42|40|40|39|37|36|34|34|33|33|32|31|30|28|28|27|25|25|26|26|27|29|29|30|31|32|38|35|35|36|37|38|39|41|41|42|45|44|45|46|47|0\n10|9|8|7|7|11|8|9|10|11|0\n19|17|16|15|13|13|12|11|11|18|12|14|14|15|16|17|18|19|0\n64|63|61|61|62|60|58|56|56|55|55|53|51|50|50|49|48|47|44|43|42|41|41|45|40|38|36|36|37|35|34|34|54|35|39|37|38|39|40|46|42|43|44|45|46|47|48|49|52|51|52|53|54|59|57|57|58|59|60|65|62|63|64|65|0\n33|33|34|31|29|28|28|27|25|24|24|23|22|21|20|19|19|32|20|21|22|23|26|25|26|27|30|29|30|31|32|35|34|35|0\n20|18|16|14|14|15|17|13|12|12|21|13|19|15|16|17|18|19|20|21|0\n20|19|18|16|15|14|14|12|12|13|21|13|17|15|16|17|18|19|20|21|0\n34|33|33|32|31|29|28|28|30|36|37|27|26|24|24|23|22|21|21|39|22|23|25|25|26|27|38|29|30|31|32|35|34|35|36|37|38|39|0\n59|58|57|54|54|55|56|60|61|52|51|51|50|49|48|46|46|45|42|42|41|41|37|37|36|36|39|35|34|33|33|63|34|35|40|38|38|39|40|44|43|43|44|45|47|47|48|49|50|53|52|53|62|55|56|57|58|59|60|61|62|63|0\n7|5|5|6|6|7|0\n35|33|31|31|30|29|28|27|26|21|21|22|20|20|24|19|19|34|25|23|22|23|24|25|26|27|28|29|30|32|32|33|34|35|0\n58|57|57|56|55|54|54|53|50|50|49|42|42|43|44|45|46|47|48|41|40|39|37|36|36|35|34|33|32|32|61|33|34|35|38|37|38|39|40|41|52|43|44|45|46|47|48|49|51|51|52|53|60|55|56|59|58|59|60|61|0\n76|75|75|74|73|72|70|70|69|69|78|79|67|67|66|61|61|62|60|56|56|54|53|53|52|52|58|50|49|49|48|48|64|47|46|45|44|43|42|42|81|43|44|45|46|47|65|51|50|51|59|55|54|55|57|57|58|59|60|63|62|63|64|65|66|68|68|80|71|71|72|73|74|77|76|77|78|79|80|81|0\n69|66|65|63|63|62|62|61|57|57|56|55|54|53|51|51|50|49|49|59|48|47|46|45|44|42|41|40|40|39|38|37|36|36|68|37|38|39|43|41|42|43|44|45|46|47|48|60|50|52|52|53|54|55|56|58|58|59|60|61|67|64|64|65|66|67|68|69|0\n51|48|48|49|50|47|44|42|42|43|45|41|40|38|38|37|35|35|34|33|32|31|31|30|28|28|29|29|30|53|32|33|34|36|36|37|39|39|40|41|46|43|44|45|46|47|52|49|50|51|52|53|0\n36|36|31|30|29|29|28|28|33|27|25|25|24|22|21|21|20|20|35|23|22|23|24|26|26|27|34|32|30|31|32|33|34|35|37|37|0\n50|49|49|51|48|46|46|45|43|43|42|41|40|40|38|35|35|34|34|32|31|31|30|29|28|28|39|29|30|33|32|33|37|36|36|37|38|39|53|41|42|44|44|45|47|47|48|52|50|51|52|53|0\n44|43|42|39|38|38|37|36|36|41|35|34|33|32|29|29|28|25|25|26|24|24|31|27|26|27|28|30|30|31|32|33|34|35|45|37|40|39|40|41|42|43|44|45|0\n35|34|32|32|30|28|27|27|26|23|22|22|24|21|20|19|19|31|20|21|25|23|24|25|26|29|28|29|30|31|33|33|34|35|0\n22|22|21|20|17|17|16|16|19|15|14|14|25|15|24|18|18|19|20|21|23|23|24|25|0\n32|32|30|28|27|27|26|25|21|21|20|19|19|23|18|18|31|24|20|22|22|23|24|25|26|29|28|29|30|31|33|33|0\n24|24|25|22|21|21|20|19|17|17|16|15|15|27|16|18|18|19|20|23|22|23|26|25|26|27|0\n42|41|40|39|37|36|36|35|35|43|34|33|32|31|30|24|24|25|26|27|28|29|45|25|26|27|28|29|30|31|32|33|34|44|38|37|38|39|40|41|42|43|44|45|0\n62|58|58|59|60|57|55|54|54|53|52|52|51|46|46|47|45|44|43|43|49|40|38|38|39|37|36|35|33|33|34|42|34|35|36|37|41|39|40|41|42|50|44|45|48|47|48|49|50|51|63|53|56|55|56|57|61|59|60|61|62|63|0\n65|63|63|62|61|60|59|57|56|56|55|54|53|53|66|67|52|51|48|48|47|46|46|45|44|43|42|38|38|39|37|37|36|36|69|41|40|39|40|41|42|43|44|45|50|47|49|49|50|51|52|68|54|55|58|57|58|59|60|61|62|64|64|65|66|67|68|69|0\n42|41|41|40|39|36|36|35|34|33|31|30|30|29|28|27|26|25|24|23|23|38|24|25|26|27|28|29|32|31|32|33|34|35|37|37|38|39|40|43|42|43|0\n47|47|46|45|44|44|43|41|41|39|38|36|36|32|32|31|31|34|30|29|28|27|26|26|40|27|28|29|30|35|33|33|34|35|37|37|38|39|40|42|42|43|49|45|46|48|48|49|0\n55|54|54|56|51|50|50|52|49|48|48|47|47|59|46|42|41|40|40|43|37|37|38|39|36|34|34|33|32|32|61|33|35|35|36|45|38|39|44|41|42|43|44|45|46|60|58|49|53|51|52|53|57|55|56|57|58|59|60|61|0\n32|30|30|29|27|27|28|26|25|21|20|20|22|18|18|19|24|19|23|21|22|23|24|25|26|33|28|29|31|31|32|33|0\n43|43|44|39|38|38|40|37|34|34|33|32|31|31|30|29|28|27|26|25|24|24|42|25|26|27|28|29|30|36|32|33|35|35|36|37|41|39|40|41|42|45|44|45|0\n41|40|40|39|39|43|37|37|36|32|32|33|34|31|30|29|28|27|27|24|24|25|26|25|26|45|28|29|30|31|35|33|34|35|36|38|38|44|42|41|42|43|44|45|0\n39|36|34|34|35|33|32|31|29|29|28|27|25|25|24|22|22|21|21|38|23|23|24|26|26|27|28|30|30|31|32|33|37|35|36|37|38|39|0\n54|53|53|49|48|47|45|45|46|50|41|40|39|38|37|36|35|34|34|42|43|32|32|31|30|29|29|52|30|31|33|33|44|35|36|37|38|39|40|41|42|43|44|51|46|47|48|49|50|51|52|55|54|55|0\n13|10|10|11|12|9|9|15|14|11|12|13|14|15|0\n45|45|43|43|42|42|41|39|36|35|34|33|31|30|30|29|28|27|26|25|25|37|38|40|26|27|28|29|32|31|32|33|34|35|36|37|38|39|40|41|47|44|44|46|46|47|0\n43|43|42|39|38|38|40|37|35|35|32|32|31|31|30|29|27|27|26|25|24|24|45|25|26|28|28|29|30|34|33|33|34|36|36|37|41|39|40|41|42|44|44|45|0\n29|29|28|26|26|25|24|23|22|21|21|20|18|17|17|19|18|19|20|31|22|23|24|25|27|27|28|30|30|31|0\n58|57|56|54|54|53|52|51|49|49|48|47|46|45|44|44|43|40|38|36|36|37|39|35|34|34|32|31|31|33|32|33|42|35|41|37|38|39|40|41|42|43|59|45|46|47|48|50|50|51|52|53|55|55|56|57|58|59|0\n16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0\n38|37|36|36|39|34|34|35|31|30|29|29|28|25|24|24|26|23|22|22|33|23|27|25|26|27|28|32|30|31|32|33|41|35|40|37|38|39|40|41|0\n20|19|18|18|21|16|16|15|13|13|14|23|14|15|17|17|22|19|20|21|22|23|0\n31|29|29|30|27|27|28|33|26|23|22|21|21|24|20|19|19|35|20|25|22|23|24|25|26|34|28|32|30|31|32|33|34|35|0\n80|80|78|78|77|76|75|73|72|72|71|70|69|68|68|82|83|67|65|58|57|57|59|56|56|61|62|55|51|50|50|52|49|48|47|47|54|64|46|45|44|44|85|45|46|66|48|49|53|51|52|53|54|55|63|60|58|59|60|61|62|63|64|65|66|67|84|69|70|71|74|73|74|75|76|77|79|79|81|81|82|83|84|85|0\n58|57|57|56|55|54|53|52|51|48|48|49|47|47|60|61|46|44|42|41|40|40|39|39|38|36|36|35|34|33|33|63|34|35|37|37|38|45|43|41|42|43|44|45|46|62|50|49|50|51|52|53|54|55|56|59|58|59|60|61|62|63|0\n73|73|72|71|71|69|68|62|60|60|59|58|58|63|57|55|55|54|53|51|51|52|65|66|50|44|44|45|46|47|48|42|42|41|40|39|39|70|40|41|43|43|49|45|46|47|48|49|50|67|52|53|54|56|56|57|64|59|61|61|62|63|64|65|66|67|68|69|70|75|72|74|74|75|0\n58|55|55|56|54|53|53|52|48|47|47|49|46|46|43|41|40|39|38|38|37|35|34|34|33|32|31|31|44|45|32|33|36|35|36|37|42|39|40|41|42|43|44|45|51|50|48|49|50|51|52|59|54|57|56|57|58|59|0\n8|7|6|6|9|7|8|9|0\n8|6|6|7|9|7|8|9|0\n78|77|77|75|74|73|73|72|69|68|68|70|66|65|65|67|63|63|61|60|60|59|58|56|54|54|55|53|52|51|50|50|49|48|45|45|44|43|42|42|47|43|44|46|46|47|48|49|81|51|52|53|57|55|56|57|58|59|62|61|62|64|64|80|66|67|71|69|70|71|72|76|74|75|76|79|78|79|80|81|0\n37|35|33|33|32|29|29|30|27|27|26|24|24|23|22|21|20|20|36|21|22|23|25|25|26|28|28|31|30|31|32|34|34|35|36|37|0\n50|49|48|47|47|45|45|46|52|53|44|42|42|40|39|35|35|36|37|38|34|33|32|31|30|29|29|55|30|31|32|33|34|41|36|37|38|39|40|41|43|43|44|54|46|51|48|49|50|51|52|53|54|55|0\n36|35|34|34|33|31|30|29|29|28|26|25|22|22|21|21|20|20|27|24|23|23|24|25|26|27|28|32|30|31|32|33|37|35|36|37|0\n69|67|67|66|63|63|60|60|59|59|62|58|56|55|55|54|53|52|51|50|50|70|71|48|47|46|46|45|44|41|41|42|39|39|38|38|73|40|40|43|42|43|44|45|49|47|48|49|72|51|52|53|54|57|56|57|58|65|61|61|62|64|64|65|66|68|68|69|70|71|72|73|0\n35|35|36|34|33|32|31|30|29|29|38|27|26|25|24|23|21|21|22|28|22|23|24|25|26|27|28|39|30|31|32|33|34|37|36|37|38|39|0\n14|12|12|11|11|9|9|10|10|15|13|13|14|15|0\n30|29|28|28|25|25|23|22|22|21|20|19|18|17|17|27|18|19|20|21|24|23|24|26|26|27|31|29|30|31|0\n11|9|8|7|7|10|8|9|10|11|0\n55|54|50|48|47|47|46|46|45|43|41|40|40|38|37|37|36|35|34|34|44|33|32|31|30|29|29|53|30|31|32|33|52|35|36|39|38|39|42|41|42|43|44|45|51|49|48|49|50|51|52|53|54|55|0\n45|45|44|42|42|41|40|39|39|36|35|33|33|32|31|30|30|29|27|27|26|25|25|38|26|28|28|29|37|31|32|34|34|35|36|37|38|47|40|41|43|43|44|46|46|47|0\n25|23|21|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|22|22|23|24|25|0\n62|60|58|58|57|55|54|53|53|52|52|51|49|46|46|45|45|48|44|42|41|41|40|39|39|38|35|35|34|33|33|37|34|36|36|37|38|63|40|43|42|43|44|50|47|47|48|49|50|51|61|56|54|55|56|57|59|59|60|61|62|63|0\n72|71|70|69|67|67|66|65|64|63|62|62|61|59|57|56|55|54|53|53|58|49|49|50|47|47|46|45|44|43|42|40|40|39|38|38|52|39|41|41|42|43|44|45|46|48|48|51|50|51|52|60|54|55|56|57|58|59|60|61|73|63|64|65|66|68|68|69|70|71|72|73|0\n45|45|43|43|44|47|42|38|37|36|36|39|35|35|34|33|32|32|30|29|28|27|26|26|31|27|28|29|30|31|49|33|34|41|40|37|38|39|40|41|42|48|44|46|46|47|48|49|0\n34|34|32|29|29|30|27|27|26|25|24|23|22|20|20|19|19|33|21|21|22|23|24|25|26|28|28|31|30|31|32|33|35|35|0\n36|36|35|31|30|29|29|32|28|27|25|23|23|24|22|20|20|21|34|21|22|26|24|25|26|27|28|33|30|31|32|33|34|35|37|37|0\n21|20|19|19|18|16|15|15|14|13|13|23|14|17|16|17|18|22|20|21|22|23|0\n31|30|27|27|25|25|23|22|21|20|20|19|18|17|17|29|18|19|24|21|22|23|24|26|26|28|28|29|30|31|0\n30|28|28|29|27|27|32|33|26|25|24|23|21|21|20|19|19|35|20|22|22|23|24|25|26|34|31|29|30|31|32|33|34|35|0\n68|68|63|62|62|61|61|60|60|59|56|55|55|57|54|53|52|50|50|49|47|47|46|43|43|42|42|41|39|39|38|37|36|36|67|37|38|40|40|41|45|44|44|45|46|48|48|49|51|51|52|53|54|58|56|57|58|59|66|65|64|63|64|65|66|67|69|69|0\n27|25|23|22|22|21|19|18|18|17|16|15|15|26|16|17|20|19|20|21|24|23|24|25|26|27|0\n33|33|32|30|29|29|28|27|27|35|25|24|23|23|22|20|20|21|37|21|22|26|24|25|26|36|28|31|30|31|32|34|34|35|36|37|0\n29|29|27|27|28|31|26|25|24|23|22|21|20|19|18|18|33|19|20|21|22|23|24|25|26|32|28|30|30|31|32|33|0\n35|33|31|29|28|28|27|26|26|25|23|22|22|21|20|19|19|34|20|21|24|23|24|25|32|27|30|29|30|31|32|33|34|35|0\n66|65|64|63|62|61|60|56|56|55|55|58|54|53|52|51|50|49|48|47|47|46|41|40|39|39|42|43|38|36|36|35|35|45|37|37|38|44|40|41|42|43|44|45|46|67|48|49|50|51|52|53|54|59|57|57|58|59|60|61|62|63|64|65|66|67|0\n30|29|28|28|31|25|24|23|22|22|21|21|20|19|18|18|33|19|20|27|26|23|24|25|26|27|32|29|30|31|32|33|0\n46|45|43|42|41|41|40|39|39|47|37|37|34|33|32|31|31|35|29|28|28|27|26|26|49|27|30|29|30|36|32|33|34|35|36|38|38|48|40|44|42|43|44|45|46|47|48|49|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n29|26|25|24|23|23|22|21|19|19|18|17|16|16|28|17|18|20|20|21|22|27|24|25|26|27|28|29|0\n63|61|60|59|58|56|56|55|54|53|52|51|50|48|47|47|46|43|43|44|42|41|40|39|38|37|36|35|33|33|34|62|34|35|36|37|38|39|40|41|42|45|44|45|46|49|48|49|50|51|52|53|54|55|57|57|58|59|60|61|62|63|0\n31|27|27|26|26|25|24|22|21|21|19|19|18|17|17|30|18|20|20|23|22|23|24|25|29|28|28|29|30|31|0\n88|84|84|85|86|83|83|81|80|79|77|77|76|76|74|73|71|71|68|67|66|64|64|63|62|62|69|61|60|57|57|56|56|55|53|53|52|48|48|49|50|47|46|46|75|47|51|49|50|51|52|54|54|55|59|58|58|59|60|61|70|63|65|65|66|67|68|69|70|72|72|73|74|75|82|78|78|79|80|81|82|89|87|85|86|87|88|89|0\n29|28|25|25|24|22|22|21|20|19|18|17|16|16|27|17|18|19|20|21|23|23|24|26|26|27|28|29|0\n49|46|43|42|42|44|41|40|39|39|47|37|37|36|35|33|33|32|31|29|28|28|27|26|26|27|30|29|30|31|32|34|34|35|36|38|38|48|40|41|45|43|44|45|46|47|48|49|0\n25|23|21|20|20|18|18|17|15|15|14|14|24|16|16|17|19|19|22|21|22|23|24|25|0\n42|41|41|43|38|37|37|39|35|34|34|33|32|31|29|29|28|26|25|25|24|24|45|27|26|27|28|30|30|31|32|33|36|35|36|40|38|39|40|44|42|43|44|45|0\n38|37|37|34|33|32|31|31|30|25|25|26|24|23|23|28|22|21|21|36|22|29|24|27|26|27|28|29|30|35|32|33|34|35|36|39|38|39|0\n58|56|56|55|51|50|49|49|48|48|53|47|46|45|44|43|42|41|39|39|38|37|36|35|35|34|31|31|32|33|32|33|34|59|36|37|38|40|40|41|42|43|44|45|46|47|54|52|50|51|52|53|54|55|57|57|58|59|0\n27|26|26|25|21|21|22|20|19|19|24|16|16|17|18|17|18|29|20|23|22|23|24|25|28|27|28|29|0\n15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n54|53|52|51|51|48|47|45|45|46|44|42|42|41|39|38|37|35|35|33|33|34|32|31|30|29|29|50|30|31|32|40|34|36|36|37|38|39|40|41|43|43|44|49|46|47|48|49|50|55|52|53|54|55|0\n20|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|21|21|0\n12|12|9|9|8|8|11|10|10|11|13|13|0\n30|29|29|25|25|26|24|23|21|21|20|19|18|17|17|28|18|19|20|22|22|23|24|27|26|27|28|31|30|31|0\n70|70|69|63|62|62|64|61|60|60|66|67|59|58|58|57|56|55|53|53|50|49|48|47|46|46|51|45|43|42|42|41|39|38|38|40|73|39|40|41|44|43|44|45|52|47|48|49|50|51|52|54|54|55|56|57|72|59|68|61|65|63|64|65|66|67|68|69|71|71|72|73|0\n17|14|14|13|12|10|10|11|16|11|12|13|15|15|16|17|0\n26|26|27|25|24|23|22|22|19|18|17|17|16|16|21|20|18|19|20|21|29|23|24|25|28|27|28|29|0\n54|53|52|50|50|49|48|48|46|45|44|42|42|40|40|39|36|35|34|34|37|32|32|31|30|29|29|47|30|31|33|33|38|35|36|37|38|39|41|41|43|43|44|45|46|47|55|49|51|51|52|53|54|55|0\n26|26|20|20|19|18|18|22|23|17|16|15|15|25|16|17|24|19|21|21|22|23|24|25|27|27|0\n45|44|42|41|39|37|37|36|35|34|34|33|32|30|29|28|28|27|25|25|24|24|43|26|26|27|31|29|30|31|32|33|40|35|36|38|38|39|40|41|42|43|44|45|0\n58|57|54|54|55|53|53|50|49|47|46|45|45|44|43|42|41|40|40|39|38|37|36|35|34|33|32|31|31|52|32|33|34|35|36|37|38|39|51|41|42|43|44|48|46|47|48|49|50|51|52|59|56|55|56|57|58|59|0\n18|17|16|16|19|14|14|13|12|12|21|13|15|15|20|17|18|19|20|21|0\n54|53|53|52|47|46|45|44|44|48|49|42|42|41|39|38|37|36|36|35|34|31|31|32|30|29|29|51|30|33|32|33|34|35|40|37|38|39|40|41|43|43|50|45|46|47|48|49|50|51|52|55|54|55|0\n38|38|37|35|35|34|33|33|40|41|31|31|30|29|28|26|26|25|23|23|24|43|24|25|27|27|28|29|30|32|32|42|34|36|36|37|39|39|40|41|42|43|0\n37|34|33|33|32|30|29|29|28|26|26|25|24|24|22|21|20|20|23|21|22|23|36|25|27|27|28|31|30|31|32|35|34|35|36|37|0\n21|21|22|23|20|19|18|17|16|14|14|15|25|15|16|17|18|19|20|24|22|23|24|25|0\n37|36|34|33|33|32|30|28|26|26|27|25|24|23|22|21|20|20|31|21|22|23|24|25|29|27|28|29|30|31|32|35|34|35|36|37|0\n28|26|26|27|29|25|25|23|22|21|19|18|18|17|17|24|20|19|20|21|22|23|24|31|30|27|28|29|30|31|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n33|33|32|30|30|31|29|27|27|25|24|23|20|19|19|21|22|26|20|21|22|23|24|25|26|28|28|29|35|31|32|34|34|35|0\n34|33|32|31|30|28|28|27|26|26|24|21|21|22|20|19|19|25|20|23|22|23|24|25|35|27|29|29|30|31|32|33|34|35|0\n59|57|56|51|50|50|52|49|48|48|54|45|45|44|43|43|42|41|39|38|37|37|35|34|34|33|32|31|31|58|32|33|36|35|36|40|38|39|40|41|42|47|44|46|46|47|55|49|53|51|52|53|54|55|56|57|58|59|0\n43|43|42|41|40|40|35|34|34|36|37|33|32|31|30|29|28|26|26|25|24|24|39|25|27|27|28|29|30|31|32|33|38|35|36|37|38|39|45|41|42|44|44|45|0\n54|52|51|51|50|50|49|48|46|45|44|43|38|37|37|39|35|35|34|33|33|41|31|30|30|29|29|47|32|31|32|42|34|36|36|40|38|39|40|41|42|43|44|45|46|47|48|49|55|53|52|53|54|55|0\n38|37|36|34|33|33|32|31|31|29|27|26|26|25|23|23|22|21|21|30|22|24|24|25|28|27|28|29|30|39|32|35|34|35|36|37|38|39|0\n19|19|18|17|16|15|14|13|12|12|21|13|14|15|16|17|18|20|20|21|0\n48|47|46|45|45|43|41|41|40|38|38|37|34|34|33|31|31|32|30|29|28|26|26|27|44|27|28|29|30|36|32|33|35|35|36|37|39|39|40|42|42|43|44|49|46|47|48|49|0\n44|44|41|41|40|39|39|43|38|36|35|34|33|33|32|32|30|29|28|26|26|25|25|31|27|27|28|29|30|31|47|37|34|35|36|37|38|46|40|42|42|43|45|45|46|47|0\n28|27|27|26|23|23|22|21|21|19|18|17|16|16|20|17|18|19|20|25|22|24|24|25|26|29|28|29|0\n25|23|22|21|21|20|20|19|18|17|16|15|15|27|16|17|18|19|26|24|22|23|24|25|26|27|0\n40|38|38|37|37|41|36|35|34|33|32|31|30|29|28|26|25|24|23|23|27|43|24|25|26|27|28|29|30|31|32|33|34|35|36|42|39|39|40|41|42|43|0\n44|43|43|45|42|41|40|38|38|39|36|35|34|32|31|30|30|28|27|27|26|25|25|37|26|29|28|29|33|31|32|33|34|35|36|37|47|39|40|41|42|46|44|45|46|47|0\n36|35|34|34|37|32|32|31|30|26|26|25|25|28|23|23|22|21|21|39|22|24|24|29|27|27|28|29|30|31|33|33|38|35|36|37|38|39|0\n54|53|53|52|50|49|46|44|44|45|47|41|40|40|39|38|37|37|36|34|33|33|32|31|30|29|29|51|30|31|32|35|34|35|36|43|38|39|42|41|42|43|48|45|46|47|48|49|50|51|52|55|54|55|0\n35|34|33|33|32|30|30|29|27|26|26|28|24|23|22|21|20|20|25|21|22|23|24|25|37|27|28|29|31|31|32|36|34|35|36|37|0\n42|40|40|39|38|38|37|35|35|33|32|30|30|29|26|26|27|25|23|23|24|34|24|25|28|27|28|29|31|31|32|33|34|36|36|37|43|39|41|41|42|43|0\n56|55|55|54|52|52|51|49|49|48|47|47|58|59|42|41|41|43|40|39|38|37|35|35|36|45|34|32|32|33|61|33|34|46|36|37|38|39|40|44|42|43|44|45|46|60|48|50|50|51|53|53|54|57|56|57|58|59|60|61|0\n10|8|8|9|7|7|11|9|10|11|0\n61|60|60|62|58|58|56|56|55|54|52|52|51|51|64|65|46|45|44|44|43|42|42|48|40|40|39|39|37|36|35|35|38|67|36|37|38|50|41|41|49|43|47|45|46|47|48|49|50|66|53|53|54|55|57|57|59|59|63|61|62|63|64|65|66|67|0\n21|20|20|19|18|16|15|15|14|14|23|24|25|17|16|17|18|19|22|21|22|23|24|25|0\n21|19|17|16|15|14|13|13|12|12|20|18|14|15|16|17|18|19|20|21|0\n20|18|18|17|16|16|15|13|13|12|12|14|14|15|21|17|19|19|20|21|0\n30|29|28|27|27|26|25|23|20|19|18|18|21|17|17|24|22|19|20|21|22|23|24|25|26|31|28|29|30|31|0\n44|42|42|41|40|39|38|37|36|36|35|33|32|32|28|28|27|27|26|25|24|24|31|25|26|30|29|29|30|31|34|33|34|35|45|37|38|39|40|41|43|43|44|45|0\n44|42|42|41|40|39|38|37|36|36|35|33|32|32|28|28|27|27|26|25|24|24|31|25|26|30|29|29|30|31|34|33|34|35|45|37|38|39|40|41|43|43|44|45|0\n41|39|36|35|35|37|34|33|32|30|28|28|27|26|25|25|24|23|22|22|40|23|24|31|26|27|29|29|30|31|32|33|34|38|36|37|38|39|40|41|0\n15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n62|61|59|59|58|57|57|56|55|51|51|52|50|49|48|46|45|44|43|42|41|41|40|35|35|34|34|37|38|33|33|54|39|36|36|37|38|39|40|47|42|43|44|45|46|47|48|49|50|53|52|53|54|55|56|63|58|60|60|61|62|63|0\n56|55|53|53|51|50|49|49|48|47|45|44|44|46|43|42|41|39|38|37|35|34|32|32|33|31|30|30|40|31|36|33|34|35|36|37|38|39|40|41|42|43|57|45|46|47|48|52|50|51|52|54|54|55|56|57|0\n59|58|57|56|55|54|53|51|51|50|48|46|46|47|45|44|43|43|60|61|41|41|39|39|38|37|36|33|33|34|35|63|34|35|36|37|38|40|40|42|42|62|44|45|49|47|48|49|50|52|52|53|54|55|56|57|58|59|60|61|62|63|0\n60|60|54|52|52|51|49|48|48|47|47|55|46|45|44|43|43|57|42|37|37|36|35|35|39|40|34|33|32|32|59|33|34|41|36|38|38|39|40|41|42|58|44|45|46|56|50|49|50|51|53|53|54|55|56|57|58|59|61|61|0\n66|66|65|60|60|61|58|57|56|55|55|53|53|51|49|49|48|48|47|46|46|63|41|40|40|39|38|37|36|36|43|35|35|45|44|37|38|39|42|41|42|43|44|45|64|47|52|50|50|51|52|54|54|59|56|57|58|59|62|61|62|63|64|65|67|67|0\n67|66|65|64|62|62|63|68|69|60|60|59|57|57|56|55|53|53|49|49|50|51|48|47|46|43|43|42|42|41|40|39|38|37|37|71|38|39|40|41|45|44|44|45|46|47|48|52|50|51|52|54|54|55|56|58|58|59|61|61|70|63|64|65|66|67|68|69|70|71|0\n31|29|28|27|26|25|24|23|19|19|20|21|17|17|18|30|18|22|20|21|22|23|24|25|26|27|28|29|30|31|0\n37|37|36|35|33|33|30|30|29|28|27|27|26|25|25|39|24|23|22|22|41|23|24|40|26|32|28|29|31|31|32|34|34|35|36|38|38|39|40|41|0\n28|28|29|30|26|25|25|24|23|22|22|32|20|19|18|18|21|19|20|21|33|23|24|27|26|27|31|29|30|31|32|33|0\n19|17|15|15|14|12|12|11|11|18|13|13|14|16|16|17|18|19|0\n15|12|12|10|9|9|11|14|10|11|13|13|14|15|0\n34|32|31|30|30|29|27|27|28|26|24|23|22|22|20|19|19|21|20|21|25|23|24|25|26|35|28|29|33|31|32|33|34|35|0\n39|38|38|37|35|35|34|34|41|32|31|31|30|29|28|26|26|25|24|23|23|43|24|25|27|27|28|29|30|33|32|33|42|36|36|37|40|39|40|41|42|43|0\n15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0\n13|10|9|9|8|8|12|11|10|11|12|13|0\n27|24|24|25|23|22|22|28|29|21|20|19|18|17|17|31|18|19|20|21|30|23|26|25|26|27|28|29|30|31|0\n22|22|20|19|18|16|15|15|14|13|13|21|14|17|16|17|18|19|20|21|23|23|0\n31|29|27|27|26|25|23|22|22|21|20|19|18|17|17|30|18|19|20|21|24|23|24|25|26|28|28|29|30|31|0\n38|37|37|35|33|33|32|30|30|29|27|27|25|25|23|23|22|21|21|36|22|24|24|26|26|28|28|29|31|31|32|34|34|35|36|39|38|39|0\n27|27|26|25|21|20|20|19|18|18|23|17|16|16|29|17|24|19|22|21|22|23|24|25|26|28|28|29|0\n58|57|55|55|56|53|53|51|49|49|48|47|47|46|44|43|43|40|40|41|39|38|37|36|35|33|33|32|31|31|32|34|34|35|36|37|38|39|42|41|42|45|44|45|46|52|48|50|50|51|52|54|54|59|56|57|58|59|0\n21|21|20|18|17|17|16|14|14|13|13|23|15|15|16|19|18|19|20|22|22|23|0\n16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0\n21|21|18|18|17|15|14|14|16|13|13|23|20|15|16|17|19|19|20|22|22|23|0\n49|43|43|42|41|39|39|38|36|36|37|45|46|34|33|33|32|30|30|29|28|26|26|27|48|27|28|29|31|31|32|35|34|35|47|37|38|40|40|41|42|44|44|45|46|47|48|49|0\n61|59|57|57|56|55|54|51|49|49|47|46|46|45|41|40|39|38|38|42|37|36|35|35|44|34|34|33|32|32|60|33|53|52|36|37|43|39|40|41|42|43|44|45|48|47|48|50|50|51|52|53|54|55|56|58|58|59|60|61|0\n28|27|27|24|24|25|22|21|20|19|18|17|16|16|23|17|18|19|20|21|22|23|26|25|26|29|28|29|0\n33|32|32|30|30|28|28|27|26|25|25|24|23|20|20|19|19|22|21|21|22|23|24|35|26|27|29|29|31|31|34|33|34|35|0\n18|18|19|15|15|16|14|13|12|12|21|13|14|17|16|17|20|19|20|21|0\n7|6|5|5|6|7|0\n34|32|31|31|30|27|27|28|26|23|22|22|24|21|20|19|19|35|20|21|25|23|24|25|26|29|28|29|30|33|32|33|34|35|0\n16|15|13|13|14|11|10|10|12|11|12|17|14|15|16|17|0\n28|27|25|24|24|22|22|21|20|20|29|19|18|17|17|31|18|19|30|21|23|23|26|25|26|27|28|29|30|31|0\n8|6|6|7|9|7|8|9|0\n41|40|39|39|38|37|36|35|35|33|31|31|30|27|27|28|25|25|24|23|23|34|24|26|26|29|28|29|30|32|32|33|34|43|36|37|38|42|40|41|42|43|0\n28|27|26|24|24|25|23|22|20|17|17|18|16|16|21|19|18|19|20|21|22|23|29|25|26|27|28|29|0\n68|65|64|63|63|61|60|59|58|58|57|56|55|53|53|52|51|50|50|48|48|46|46|47|45|44|42|41|39|38|38|37|36|36|43|37|40|39|40|41|42|43|44|45|69|47|49|49|67|51|52|54|54|55|56|57|62|59|60|61|62|66|64|65|66|67|68|69|0\n67|64|62|62|61|59|59|58|56|56|55|54|54|52|52|51|48|47|47|49|46|45|44|41|40|39|39|38|38|37|36|35|35|66|36|37|43|42|40|41|42|43|44|45|46|50|48|49|50|51|53|53|65|55|57|57|58|60|60|61|63|63|64|65|66|67|0\n93|91|91|90|89|88|87|86|85|84|82|82|83|94|95|81|80|77|76|75|74|74|73|71|71|72|70|69|68|67|66|65|64|63|58|58|57|56|55|55|60|61|52|51|51|53|50|50|97|54|52|53|54|62|56|57|59|59|60|61|62|63|64|65|66|67|68|69|70|79|72|73|78|75|76|77|78|79|80|81|96|83|84|85|86|87|88|89|90|92|92|93|94|95|96|97|0\n39|38|37|36|34|34|35|40|33|31|29|28|28|27|25|24|24|23|22|22|32|23|26|25|26|27|30|29|30|31|32|33|41|35|36|37|38|39|40|41|0\n23|22|22|21|19|19|18|16|16|15|14|14|25|15|17|17|18|20|20|21|24|23|24|25|0\n32|32|29|29|28|23|23|24|22|22|26|20|20|19|18|18|31|19|21|21|27|25|24|25|26|27|28|30|30|31|33|33|0\n13|13|14|10|10|9|9|12|11|11|12|15|14|15|0\n37|35|34|33|32|31|30|28|28|26|26|25|24|22|22|21|20|20|36|21|23|23|24|25|27|27|29|29|30|31|32|33|34|35|36|37|0\n70|69|68|67|67|66|64|64|62|61|59|59|58|55|54|52|52|51|50|48|47|46|45|45|44|43|43|56|42|41|39|39|38|37|37|63|38|40|40|41|42|57|44|49|46|47|48|49|50|51|53|53|54|55|56|57|58|60|60|61|62|63|65|65|66|71|68|69|70|71|0\n10|10|8|7|7|9|8|9|11|11|0\n4|4|5|5|0\n45|45|44|41|41|42|40|39|39|36|35|34|34|32|31|31|30|28|28|27|26|25|25|38|26|27|29|29|30|33|32|33|37|35|36|37|38|47|40|43|42|43|44|46|46|47|0\n22|22|20|16|16|17|18|15|14|13|13|21|14|15|19|17|18|19|20|21|23|23|0\n61|60|59|56|56|57|55|53|51|50|49|48|48|52|54|47|45|45|44|39|39|40|41|42|43|37|36|33|33|34|35|38|34|35|36|37|38|63|40|41|42|43|44|46|46|47|62|49|50|51|52|53|54|55|58|57|58|59|60|61|62|63|0\n67|67|65|64|63|63|66|69|62|61|58|58|59|57|56|55|52|52|53|51|49|49|48|47|45|45|44|43|41|40|40|39|38|37|37|71|38|39|42|41|42|43|44|46|46|47|48|50|50|51|54|53|54|55|56|57|60|59|60|61|62|70|64|65|66|68|68|69|70|71|0\n40|39|37|37|36|32|32|33|31|30|30|28|28|29|25|24|24|23|22|22|27|23|26|25|26|27|41|29|35|31|34|33|34|35|36|38|38|39|40|41|0\n27|24|24|25|23|23|28|29|22|21|19|19|18|17|17|31|18|20|20|21|22|30|26|25|26|27|28|29|30|31|0\n21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0\n30|29|29|31|28|27|27|25|23|23|22|19|19|18|18|21|26|20|20|21|22|24|24|25|26|33|28|32|30|31|32|33|0\n16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0\n35|32|31|31|30|25|24|24|26|23|23|28|21|20|20|19|19|34|22|21|22|29|27|25|26|27|28|29|30|33|32|33|34|35|0\n62|62|57|57|56|54|52|52|51|51|50|49|48|47|46|46|59|45|39|39|40|38|37|37|42|36|36|34|34|33|33|61|35|35|44|43|38|41|40|41|42|43|44|45|60|47|48|49|50|55|53|53|54|55|56|58|58|59|60|61|63|63|0\n26|26|25|24|23|22|20|19|18|17|17|16|15|15|16|21|18|19|20|21|22|23|24|25|27|27|0\n11|9|8|7|7|10|8|9|10|11|0\n31|30|29|28|28|27|26|25|24|24|23|22|18|18|19|20|21|19|20|21|22|23|33|25|26|27|32|29|30|31|32|33|0\n67|67|66|65|64|63|62|61|57|57|56|55|55|59|54|52|52|51|50|49|49|69|48|46|46|44|43|43|42|41|40|39|38|37|37|71|38|39|40|41|42|45|44|45|47|47|48|70|50|51|53|53|54|60|56|58|58|59|60|61|62|63|64|65|66|68|68|69|70|71|0\n15|15|14|14|17|12|12|11|11|19|13|13|18|16|16|17|18|19|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n28|27|26|25|24|23|23|22|21|19|18|16|16|17|20|17|18|19|20|21|22|29|24|25|26|27|28|29|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n48|47|46|45|40|39|38|37|36|35|34|33|32|32|41|42|43|44|31|30|28|27|26|26|29|27|28|29|30|31|49|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|0\n22|22|20|18|18|16|15|15|14|13|13|21|14|17|16|17|19|19|20|21|23|23|0\n45|43|41|40|40|39|38|37|35|34|33|32|32|31|30|29|28|27|26|25|24|24|44|25|26|27|28|29|30|31|36|33|34|35|36|37|38|39|42|41|42|43|44|45|0\n64|63|61|61|62|60|58|58|57|53|52|50|50|49|48|46|46|47|54|44|44|43|41|41|40|38|38|37|36|35|34|34|56|35|36|37|39|39|40|42|42|43|45|45|55|47|48|49|51|51|52|53|54|55|56|57|59|59|60|65|62|63|64|65|0\n34|34|33|32|32|36|31|30|30|38|28|26|24|24|25|23|22|21|21|29|22|23|27|25|26|27|28|29|39|31|37|33|35|35|36|37|38|39|0\n62|59|58|58|60|57|57|56|54|54|52|51|48|48|47|45|45|44|42|42|41|36|35|35|37|34|34|39|40|33|33|53|50|38|36|37|38|39|40|41|43|43|44|46|46|47|49|49|50|51|52|53|55|55|56|63|61|59|60|61|62|63|0\n89|89|88|88|86|85|81|79|79|80|78|77|74|74|72|71|70|70|69|68|67|67|66|65|64|63|62|61|59|59|60|83|58|57|55|54|52|52|53|51|50|49|48|47|47|87|48|49|50|51|56|53|54|55|56|57|58|84|60|61|62|63|64|65|66|76|68|69|73|71|72|73|75|75|76|77|78|82|80|81|82|83|84|85|86|87|91|90|90|91|0\n42|42|41|40|40|44|37|37|36|33|33|34|32|31|30|29|28|27|26|25|24|24|39|25|26|27|28|29|30|31|32|35|34|35|36|38|38|39|45|41|43|43|44|45|0\n43|41|41|42|40|40|39|37|36|32|32|33|34|31|30|30|38|46|27|27|26|25|25|29|26|28|28|29|47|31|35|33|34|35|36|37|38|39|45|44|42|43|44|45|46|47|0\n45|39|39|40|38|38|37|35|35|34|33|32|32|31|30|28|28|26|26|24|24|25|44|25|27|27|29|29|30|31|43|33|34|36|36|37|42|41|40|41|42|43|44|45|0\n46|45|45|44|43|42|41|40|40|48|49|38|38|37|33|33|34|35|32|31|28|28|29|27|27|51|30|29|30|31|32|36|34|35|36|37|39|39|50|41|42|43|44|47|46|47|48|49|50|51|0\n45|45|44|43|42|41|40|40|39|38|37|37|48|49|36|32|32|31|30|29|29|34|28|27|27|51|28|35|30|31|33|33|34|35|36|50|38|39|47|41|42|43|44|46|46|47|48|49|50|51|0\n36|34|34|35|33|31|31|30|30|29|27|27|24|23|22|21|21|25|26|39|22|23|24|25|26|28|28|29|38|32|32|33|37|35|36|37|38|39|0\n28|28|29|26|25|25|24|24|22|21|20|18|17|17|19|23|18|19|20|21|22|23|31|27|26|27|30|29|30|31|0\n25|22|21|21|20|20|19|17|16|15|14|14|18|15|16|17|18|19|24|23|22|23|24|25|0\n38|36|36|35|34|33|33|32|29|29|28|26|25|25|27|23|22|21|21|24|22|23|24|31|26|27|28|30|30|31|32|39|34|35|37|37|38|39|0\n17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0\n37|36|35|34|32|32|31|30|30|38|39|29|28|27|25|25|24|22|22|23|41|23|24|26|26|27|28|29|40|31|33|33|34|35|36|37|38|39|40|41|0\n45|44|41|41|42|40|38|34|33|33|32|31|30|30|36|28|27|26|25|25|24|24|39|29|26|27|28|29|37|31|32|35|34|35|36|37|38|39|40|43|42|43|44|45|0\n17|15|15|16|14|12|12|11|11|19|13|13|14|18|16|17|18|19|0\n18|18|19|16|15|15|14|13|12|12|21|13|14|17|16|17|20|19|20|21|0\n40|39|37|37|36|34|34|33|32|31|31|41|30|29|28|27|26|25|24|23|23|43|24|25|26|27|28|29|30|42|32|33|35|35|36|38|38|39|40|41|42|43|0\n16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0\n40|36|36|37|38|35|34|33|32|31|30|30|29|28|25|23|23|22|22|26|27|24|24|25|26|27|28|29|41|31|32|33|34|35|39|37|38|39|40|41|0\n43|43|42|40|39|38|36|36|37|35|33|32|30|30|31|29|28|27|25|24|24|26|45|25|26|27|28|29|34|31|32|33|34|35|41|37|38|39|40|41|42|44|44|45|0\n23|22|21|20|20|19|17|17|16|15|14|14|25|15|16|18|18|19|24|21|22|23|24|25|0\n48|48|46|45|45|44|43|41|41|42|50|40|38|38|39|52|36|35|33|33|31|30|30|29|28|28|37|29|32|31|32|34|34|35|36|37|53|39|40|51|42|43|44|47|46|47|49|49|50|51|52|53|0\n35|32|32|31|29|26|26|27|28|25|24|23|22|21|20|19|19|34|20|21|22|23|24|25|30|27|28|29|30|31|33|33|34|35|0\n23|21|19|16|16|17|15|15|14|13|13|22|14|20|18|17|18|19|20|21|22|23|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n27|24|24|23|23|21|20|18|17|16|15|15|19|22|16|17|18|19|20|21|22|26|25|25|26|27|0\n40|40|38|36|35|35|34|32|32|31|30|29|27|27|26|24|24|23|22|22|39|23|25|25|26|28|28|29|30|31|33|33|34|37|36|37|38|39|41|41|0\n42|40|40|39|39|43|44|37|35|34|32|32|31|30|29|29|28|27|26|25|24|24|38|25|26|27|28|36|30|31|33|33|34|35|36|37|38|45|41|41|42|43|44|45|0\n59|57|57|55|54|54|53|52|52|60|61|51|50|47|46|46|45|38|38|39|40|41|42|43|37|36|36|35|34|33|33|63|34|35|49|37|44|39|40|41|42|43|44|45|48|47|48|49|50|51|62|53|56|55|56|58|58|59|60|61|62|63|0\n51|49|48|45|45|44|43|43|42|41|39|39|37|37|34|34|33|32|31|30|30|29|28|27|27|50|28|29|36|31|32|33|35|35|36|38|38|40|40|41|42|47|44|46|46|47|48|49|50|51|0\n29|28|27|27|26|24|24|23|22|21|20|19|18|17|17|31|18|19|20|21|22|23|25|25|26|30|28|29|30|31|0\n41|41|42|38|37|36|35|35|34|32|32|31|30|29|28|26|25|25|24|23|23|40|24|27|26|27|28|29|30|31|33|33|34|39|36|37|38|39|40|43|42|43|0\n20|19|17|17|18|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0\n14|13|11|11|12|10|9|9|10|15|12|13|14|15|0\n55|51|47|46|46|45|44|44|49|42|42|41|40|39|39|52|38|36|34|33|33|35|32|30|30|29|29|54|31|31|32|37|34|35|36|37|38|53|40|41|43|43|50|45|48|47|48|49|50|51|52|53|54|55|0\n34|34|35|36|37|29|28|28|27|26|26|31|25|23|23|24|22|21|21|39|22|33|24|25|32|27|30|29|30|31|32|33|38|35|36|37|38|39|0\n44|43|42|42|38|37|36|35|35|39|33|33|32|31|29|29|27|27|26|25|24|24|41|25|26|28|28|30|30|31|32|34|34|40|36|37|38|39|40|41|45|43|44|45|0\n64|63|62|61|60|59|59|57|55|54|53|53|56|51|50|50|48|47|46|44|44|42|40|40|39|38|37|36|36|35|34|34|49|35|43|37|38|39|41|41|42|43|45|45|46|47|48|49|52|51|52|58|54|55|56|57|58|65|60|61|62|63|64|65|0\n40|39|37|36|36|38|34|33|32|31|30|29|27|25|25|24|24|23|22|22|35|23|28|26|26|27|28|29|30|31|32|33|34|35|41|37|38|39|40|41|0\n21|20|19|19|18|17|16|14|14|13|13|23|15|15|16|17|18|22|20|21|22|23|0\n87|86|85|84|83|83|88|82|81|80|79|78|78|90|76|76|75|74|73|71|71|70|70|92|93|69|66|64|64|62|61|61|59|59|58|57|56|56|67|55|53|53|52|51|50|49|49|95|50|51|52|54|54|55|68|57|58|60|60|63|62|63|65|65|66|67|68|69|94|72|72|73|74|75|77|77|91|79|80|81|82|89|84|85|86|87|88|89|90|91|92|93|94|95|0\n57|57|56|55|53|52|51|51|50|49|48|48|46|46|45|44|43|43|60|61|40|39|39|41|38|36|35|35|34|33|33|63|34|37|36|37|38|42|40|41|42|62|44|45|47|47|59|49|50|54|52|53|54|55|56|58|58|59|60|61|62|63|0\n10|7|7|8|9|11|8|9|10|11|0\n96|96|94|86|86|87|85|83|83|81|81|80|80|89|78|78|77|76|76|91|92|75|74|73|69|68|67|66|65|64|64|70|71|63|62|61|59|59|58|57|55|55|54|52|52|51|50|50|95|51|53|53|54|56|56|57|58|60|60|61|62|63|72|65|66|67|68|69|70|71|72|73|74|75|93|77|79|79|90|82|82|84|84|85|88|87|88|89|90|91|92|93|94|95|97|97|0\n18|16|16|15|12|12|13|11|11|19|14|13|14|15|17|17|18|19|0\n43|41|40|39|39|38|38|37|36|35|34|33|32|31|31|45|28|27|27|29|26|25|25|47|26|30|28|29|30|46|32|33|34|35|36|37|44|42|40|41|42|43|44|45|46|47|0\n23|23|22|22|20|18|18|17|16|15|14|14|21|15|16|17|19|19|20|21|25|24|24|25|0\n56|55|54|53|52|52|51|50|48|47|46|45|42|42|41|36|35|34|34|37|38|39|33|33|31|31|30|30|49|32|32|44|40|35|36|37|38|39|40|41|43|43|44|45|46|47|48|49|50|51|57|53|54|55|56|57|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n40|39|39|37|37|36|36|42|43|34|33|32|31|31|30|28|28|27|25|25|24|24|45|26|26|27|29|29|30|35|32|33|34|35|44|38|38|41|40|41|42|43|44|45|0\n12|10|10|9|8|8|13|9|11|11|12|13|0\n35|29|28|28|30|31|32|27|26|25|24|23|22|20|20|19|19|34|21|21|22|23|24|25|26|27|33|29|30|31|32|33|34|35|0\n10|8|7|7|9|11|8|9|10|11|0\n64|62|61|60|60|59|58|56|56|55|52|52|53|51|51|50|49|47|46|45|44|42|40|40|39|38|37|36|35|35|34|34|48|43|36|37|38|39|41|41|42|43|44|45|46|47|48|49|50|65|54|53|54|55|57|57|58|59|63|61|62|63|64|65|0\n15|15|16|13|11|11|10|10|14|12|12|13|14|17|16|17|0\n67|66|65|62|60|60|59|57|56|56|55|54|53|52|51|48|48|47|46|45|44|43|42|42|41|39|39|37|37|36|35|35|63|64|36|38|38|40|40|41|50|43|44|45|46|47|49|49|50|51|52|53|54|55|58|57|58|59|61|61|62|63|64|65|66|67|0\n17|17|18|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n25|22|22|21|20|19|18|16|16|15|14|14|24|15|17|17|18|19|20|21|23|23|24|25|0\n14|14|11|9|9|10|12|13|10|11|12|13|15|15|0\n27|22|22|21|20|20|24|17|17|18|16|15|15|26|16|19|18|19|25|21|23|23|24|25|26|27|0\n87|87|88|86|84|83|81|80|79|77|76|76|75|74|73|71|70|70|69|67|66|66|65|65|64|63|61|60|58|58|57|56|56|55|54|53|49|49|50|48|48|47|46|46|85|47|52|51|50|51|52|53|54|55|62|57|59|59|60|61|62|63|64|82|68|67|68|69|72|71|72|73|74|75|78|77|78|79|80|81|82|83|84|85|86|89|88|89|0\n51|50|48|46|46|44|44|41|41|42|40|39|36|35|35|34|34|33|30|30|31|29|28|27|27|49|28|29|32|31|32|33|38|37|36|37|38|39|40|43|42|43|45|45|47|47|48|49|50|51|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n33|32|31|30|28|28|26|25|22|22|23|20|20|19|18|18|27|19|21|21|24|23|24|25|26|27|29|29|30|31|32|33|0\n59|58|58|60|57|56|55|54|54|62|52|50|48|48|49|47|46|39|39|40|41|42|43|44|37|37|36|35|34|33|33|53|34|35|36|38|38|45|40|41|42|43|44|45|46|47|51|49|50|51|52|53|63|55|56|57|61|59|60|61|62|63|0\n29|27|26|25|21|20|20|22|23|19|17|17|16|16|28|18|18|19|24|21|22|23|24|25|26|27|28|29|0\n60|59|58|57|56|55|54|53|52|52|51|48|47|46|46|45|41|41|40|39|39|43|37|37|36|35|34|34|32|32|33|33|50|35|36|38|38|44|40|42|42|43|44|45|49|47|48|49|50|51|61|53|54|55|56|57|58|59|60|61|0\n26|25|24|24|23|22|19|19|18|17|16|15|15|21|16|17|18|20|20|21|22|23|27|25|26|27|0\n38|37|37|36|34|32|31|31|33|30|29|29|27|26|26|25|24|23|22|22|41|23|24|25|28|27|28|40|30|35|32|33|34|35|36|39|38|39|40|41|0\n26|25|24|24|21|21|20|19|17|16|15|15|18|23|16|17|18|19|20|22|22|23|27|25|26|27|0\n33|32|30|30|31|29|28|28|26|20|20|21|22|23|24|19|19|27|25|21|22|23|24|25|26|27|35|29|34|31|32|33|34|35|0\n37|37|36|34|33|33|32|30|30|27|27|26|24|24|25|23|21|21|22|39|22|23|29|25|26|28|28|29|31|31|32|35|34|35|36|38|38|39|0\n28|28|25|24|24|23|22|20|19|19|18|17|16|16|27|17|18|21|20|21|22|23|26|25|26|27|29|29|0\n17|16|16|18|19|15|14|12|12|13|21|13|14|15|20|17|18|19|20|21|0\n17|15|14|13|11|11|10|10|16|12|12|13|14|15|16|17|0\n44|43|43|42|41|40|40|38|38|37|36|33|32|32|34|31|30|30|29|28|26|25|25|27|26|27|28|29|47|31|35|33|34|35|36|37|39|39|46|41|42|45|44|45|46|47|0\n57|56|52|52|53|54|51|49|48|48|47|47|58|59|46|44|44|42|41|40|39|39|38|35|35|36|34|33|32|32|61|33|34|37|36|37|38|43|40|41|42|43|45|45|46|60|50|49|50|51|55|53|54|55|56|57|58|59|60|61|0\n41|40|37|37|38|36|35|34|32|32|33|42|43|30|30|28|28|26|26|25|24|24|45|25|27|27|29|29|31|31|44|33|34|35|36|39|38|39|40|41|42|43|44|45|0\n15|14|10|10|11|9|9|13|12|11|12|13|14|15|0\n28|26|25|24|24|27|23|23|20|19|19|21|18|17|17|31|18|22|20|21|22|30|29|25|26|27|28|29|30|31|0\n33|33|34|32|28|26|26|25|25|24|23|23|30|20|20|19|19|22|21|21|22|31|24|29|27|27|28|29|30|31|32|35|34|35|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n29|25|25|26|24|23|22|21|20|19|18|17|16|16|28|17|18|19|20|21|22|23|24|27|26|27|28|29|0\n21|20|20|19|19|23|18|16|16|15|14|14|25|15|17|17|18|24|22|21|22|23|24|25|0\n24|23|23|20|20|18|16|16|17|15|14|14|22|15|19|17|18|19|21|21|22|25|24|25|0\n19|18|16|14|13|13|12|11|11|17|12|15|14|15|16|17|18|19|0\n25|24|23|23|22|21|21|19|17|17|16|15|15|20|16|18|18|19|20|27|22|26|24|25|26|27|0\n16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0\n43|42|42|41|40|40|38|36|33|33|34|32|29|29|30|31|28|27|26|25|24|24|39|25|26|27|28|37|30|31|32|35|34|35|36|37|38|39|45|41|44|43|44|45|0\n51|50|50|52|45|45|44|44|47|43|42|40|39|39|38|37|35|34|34|32|32|31|30|29|28|28|49|29|30|31|33|33|36|35|36|37|38|41|40|41|42|43|48|46|46|47|48|49|53|51|52|53|0\n37|33|32|30|30|29|27|27|26|25|25|34|24|23|22|21|20|20|36|21|22|23|24|35|26|28|28|29|31|31|32|33|34|35|36|37|0\n46|46|47|48|49|42|41|40|40|39|37|37|35|35|36|33|33|34|31|29|29|30|28|27|27|51|28|32|30|31|32|45|34|44|36|38|38|39|43|41|42|43|44|45|50|47|48|49|50|51|0\n22|22|19|17|17|18|16|15|14|13|13|21|14|15|16|20|18|19|20|21|23|23|0\n31|31|27|26|25|25|24|24|29|22|21|21|20|20|19|18|18|19|33|23|22|23|30|28|26|27|28|29|30|32|32|33|0\n62|61|59|59|58|57|57|63|56|55|52|51|51|50|48|47|47|45|44|44|46|43|41|41|40|39|38|37|36|35|34|34|65|35|36|37|38|39|40|42|42|43|54|45|46|49|48|49|50|53|52|53|54|55|56|64|58|60|60|61|62|63|64|65|0\n32|31|31|30|28|27|26|25|24|22|20|20|21|19|18|18|29|19|23|21|22|23|24|25|26|27|28|29|30|33|32|33|0\n35|33|32|31|29|26|26|25|24|24|23|22|22|21|20|19|19|34|20|21|30|23|28|25|27|27|28|29|30|31|32|33|34|35|0\n46|45|42|41|40|40|43|39|39|38|36|34|34|35|33|30|30|29|29|26|26|25|25|28|27|27|28|32|31|31|32|33|37|35|36|37|38|47|44|41|42|43|44|45|46|47|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n17|16|14|12|12|11|10|10|15|11|13|13|14|15|16|17|0\n36|36|35|33|32|30|23|23|24|25|22|22|27|28|29|21|20|20|34|21|31|26|24|25|26|27|28|29|30|31|32|33|34|35|37|37|0\n28|28|26|26|25|24|23|22|22|30|31|21|20|19|18|18|33|19|20|21|32|23|24|25|27|27|29|29|30|31|32|33|0\n8|7|6|6|9|7|8|9|0\n31|29|29|30|32|28|27|24|23|23|25|20|20|21|19|18|18|19|22|21|22|26|24|25|26|27|28|33|30|31|32|33|0\n36|35|35|33|31|30|30|29|28|27|26|25|23|21|21|22|20|20|34|24|22|23|24|25|26|27|28|29|32|31|32|33|34|37|36|37|0\n32|31|31|30|30|28|27|27|26|25|24|23|22|20|20|19|19|35|21|21|22|23|24|25|26|29|28|29|34|33|32|33|34|35|0\n58|58|57|56|56|60|49|48|47|46|45|45|44|43|43|51|42|41|40|39|37|37|36|36|53|35|34|33|32|32|55|33|34|35|54|38|38|39|40|41|42|52|44|50|46|47|48|49|50|51|52|53|54|55|61|57|59|59|60|61|0\n40|37|37|36|36|35|35|34|33|31|28|28|27|27|26|25|24|23|22|22|32|23|24|25|26|30|29|29|30|31|32|33|34|41|39|38|38|39|40|41|0\n57|57|58|59|56|56|55|50|50|51|49|48|47|46|45|45|53|43|43|42|40|40|41|62|38|37|36|35|34|33|33|39|34|35|36|37|38|39|63|41|42|44|44|54|46|47|48|49|52|51|52|53|54|55|61|60|58|59|60|61|62|63|0\n74|73|70|70|71|69|68|65|64|64|63|62|62|61|60|58|58|59|57|56|54|53|52|51|50|49|47|46|46|45|44|43|41|41|40|39|39|55|40|42|42|43|44|45|48|47|48|49|50|51|52|53|54|55|56|57|75|59|60|61|67|63|66|65|66|67|68|69|72|71|72|73|74|75|0\n21|19|18|18|17|15|14|13|12|12|16|13|14|15|16|17|20|19|20|21|0\n15|13|11|10|10|9|9|14|12|11|12|13|14|15|0\n40|39|38|37|35|34|32|32|31|30|29|28|27|25|25|24|24|23|23|22|22|41|36|26|26|27|28|29|30|31|33|33|34|35|36|37|38|39|40|41|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n23|21|21|19|18|17|15|14|14|13|13|20|16|15|16|17|18|19|20|22|22|23|0\n53|52|52|50|50|49|48|46|45|45|44|43|43|55|41|40|39|38|38|37|36|34|32|32|33|31|30|30|57|31|35|33|34|35|36|37|42|39|40|41|42|56|44|47|46|47|48|49|51|51|54|53|54|55|56|57|0\n51|48|48|46|45|44|42|42|43|41|39|37|37|38|36|35|34|33|32|31|30|29|28|27|27|50|28|29|30|31|32|33|34|35|36|40|38|39|40|41|47|43|44|45|46|47|49|49|50|51|0\n45|45|44|43|42|36|35|35|37|38|34|33|33|40|31|31|32|29|28|26|25|25|27|30|26|27|28|29|30|47|32|41|34|39|36|37|38|39|40|41|42|43|44|46|46|47|0\n36|35|34|34|33|31|31|30|28|27|26|25|24|22|22|21|20|20|29|21|23|23|24|25|26|27|28|29|30|32|32|33|37|35|36|37|0\n24|23|23|22|16|16|17|18|15|14|14|20|21|15|19|17|18|19|20|21|22|25|24|25|0\n26|25|25|24|23|23|28|29|21|21|19|19|18|17|17|31|18|20|20|22|22|30|24|27|26|27|28|29|30|31|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n50|50|48|47|47|46|44|43|42|42|41|40|39|38|35|34|34|33|33|32|31|29|28|28|27|27|30|29|30|31|32|37|36|35|36|37|38|39|40|41|45|43|44|45|46|49|48|49|51|51|0\n17|17|18|15|14|11|11|12|13|16|12|13|14|15|16|19|18|19|0\n64|63|61|61|60|59|59|65|58|56|55|54|53|52|51|50|50|49|48|47|45|45|43|43|42|39|39|37|37|36|35|35|41|67|36|38|38|40|40|41|42|44|44|46|46|47|48|49|57|51|52|53|54|55|56|57|58|66|60|62|62|63|64|65|66|67|0\n56|55|54|53|52|51|51|50|49|47|45|40|38|38|39|41|42|43|44|37|35|35|34|33|32|31|30|30|48|31|32|33|34|36|36|37|46|39|40|41|42|43|44|45|46|47|48|49|50|57|52|53|54|55|56|57|0\n52|50|49|49|47|46|45|45|48|42|41|39|39|38|35|35|36|34|34|33|31|30|30|29|28|28|44|29|32|31|32|33|43|37|36|37|38|40|40|41|42|43|44|53|46|47|48|51|50|51|52|53|0\n43|43|42|41|41|45|40|39|38|37|35|35|34|32|32|31|30|29|27|27|25|25|26|47|26|28|28|29|30|31|33|33|34|36|36|37|38|39|40|46|42|44|44|45|46|47|0\n19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0\n10|9|9|7|7|8|8|11|10|11|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n23|22|22|21|19|19|18|17|16|15|14|14|25|15|16|17|18|20|20|21|24|23|24|25|0\n39|36|35|35|31|31|32|30|29|28|26|25|25|24|23|22|22|21|21|38|34|23|24|27|26|27|28|29|30|33|32|33|34|37|36|37|38|39|0\n47|46|45|44|41|40|39|39|42|38|37|36|35|34|32|32|33|48|49|31|29|29|28|27|27|51|28|30|30|31|50|33|34|35|36|37|38|43|40|41|42|43|44|45|46|47|48|49|50|51|0\n38|38|35|35|33|33|32|31|29|28|28|27|25|25|24|23|22|21|21|37|22|23|24|26|26|27|30|29|30|31|32|34|34|36|36|37|39|39|0\n41|38|36|36|35|34|33|32|31|31|30|27|26|26|28|24|24|23|22|22|40|23|25|25|29|27|28|29|30|39|32|33|34|35|37|37|38|39|40|41|0\n25|24|24|23|22|21|20|20|18|17|16|15|15|19|16|17|18|19|27|21|22|23|26|25|26|27|0\n53|50|49|48|48|47|45|44|44|43|42|39|37|37|36|35|34|32|31|31|30|29|29|40|28|28|52|41|30|33|32|33|34|35|36|38|38|39|40|41|42|43|46|45|46|47|51|49|50|51|52|53|0\n17|15|15|11|11|10|10|13|14|12|12|13|14|16|16|17|0\n33|33|32|31|31|27|27|28|25|25|23|22|22|21|19|19|20|30|20|21|24|23|24|26|26|29|28|29|30|35|32|34|34|35|0\n32|31|31|29|28|27|26|23|22|21|21|24|20|19|18|18|30|19|20|25|22|23|24|25|26|27|28|29|30|33|32|33|0\n49|48|48|50|47|47|52|53|46|44|43|42|42|40|39|38|38|37|35|34|33|33|32|31|29|29|30|55|30|31|32|36|34|35|36|37|41|39|40|41|45|43|44|45|46|54|51|49|50|51|52|53|54|55|0\n32|30|30|29|28|28|27|26|23|23|22|20|19|18|18|21|25|19|20|21|22|24|24|25|26|27|33|29|31|31|32|33|0\n33|32|32|31|29|29|28|27|26|25|25|24|23|23|22|21|20|20|37|21|22|36|24|35|26|27|28|30|30|31|34|33|34|35|36|37|0\n47|44|42|41|41|39|37|37|36|34|33|33|35|32|30|29|29|28|26|25|25|27|45|46|26|27|28|31|30|31|32|40|34|35|36|38|38|39|40|43|42|43|44|45|46|47|0\n58|56|55|53|53|54|52|52|48|47|44|44|45|43|42|42|39|39|40|38|37|34|34|35|33|32|31|31|50|51|32|33|36|35|36|37|38|41|40|41|49|43|46|45|46|47|48|49|50|51|59|57|54|55|56|57|58|59|0\n31|28|28|26|25|24|24|23|22|21|20|17|17|18|19|30|18|19|20|21|22|23|27|25|26|27|29|29|30|31|0\n22|21|21|20|20|24|25|18|18|16|16|15|15|27|17|17|19|19|26|23|22|23|24|25|26|27|0\n28|27|27|25|23|23|21|21|20|19|18|17|16|16|26|17|18|19|20|22|22|24|24|25|26|29|28|29|0\n15|15|14|14|17|12|11|11|13|19|12|13|18|16|16|17|18|19|0\n50|49|49|51|48|46|45|45|47|43|41|40|40|39|37|36|36|35|33|31|31|32|30|29|28|28|44|29|30|34|32|33|34|35|38|37|38|39|42|41|42|43|44|53|46|47|48|52|50|51|52|53|0\n54|54|53|52|50|47|46|46|48|41|40|40|39|38|38|43|44|37|36|35|34|33|31|30|29|29|32|51|30|31|32|33|34|35|36|37|45|39|42|41|42|43|44|45|49|47|48|49|50|51|52|53|55|55|0\n29|26|26|27|28|25|25|31|24|23|22|21|19|19|18|18|33|20|20|21|22|23|24|32|30|27|28|29|30|31|32|33|0\n41|40|36|36|37|35|32|31|30|29|29|33|27|27|26|24|23|23|22|22|39|25|24|25|26|28|28|34|30|31|32|33|34|35|38|37|38|39|40|41|0\n80|80|78|73|72|70|68|68|69|67|66|66|74|64|63|62|62|61|59|56|56|55|54|54|53|53|52|50|50|49|48|47|46|46|76|45|44|43|42|42|79|43|44|45|77|47|48|49|51|51|52|60|58|55|57|57|58|59|60|61|65|63|64|65|75|67|71|69|70|71|72|73|74|75|76|77|78|79|81|81|0\n47|45|42|41|39|38|38|37|37|43|35|34|33|33|32|30|30|29|28|27|26|25|25|46|26|27|28|29|31|31|32|36|34|35|36|44|40|39|40|41|42|43|44|45|46|47|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n10|7|7|8|9|11|8|9|10|11|0\n24|24|25|23|22|21|20|20|17|17|16|15|15|19|16|18|18|19|27|21|22|23|26|25|26|27|0\n59|59|60|57|55|53|52|52|51|50|49|48|47|47|46|45|44|43|42|41|39|38|37|37|36|34|33|33|32|32|58|35|34|35|36|40|38|39|40|41|42|43|44|45|46|56|48|49|50|51|54|53|54|55|56|57|58|61|60|61|0\n37|35|31|30|30|29|28|27|27|33|25|25|24|22|22|21|20|20|36|21|23|23|24|26|26|34|28|29|32|31|32|33|34|35|36|37|0\n38|37|37|35|35|34|33|32|31|30|30|40|41|28|27|27|25|25|24|23|23|43|24|26|26|29|28|29|42|31|32|33|34|36|36|39|38|39|40|41|42|43|0\n31|29|29|30|28|27|27|26|25|22|21|21|23|20|19|18|18|19|20|24|22|23|24|25|26|33|28|32|30|31|32|33|0\n57|56|55|54|54|53|51|50|50|48|46|46|45|45|44|42|42|41|40|37|37|38|36|35|34|33|33|32|31|31|32|59|34|35|36|39|38|39|40|41|43|43|44|49|47|47|48|49|52|51|52|53|58|55|56|57|58|59|0\n52|51|49|48|47|47|46|44|44|45|42|39|39|38|37|36|36|41|35|34|32|30|30|29|28|28|33|29|31|31|32|33|34|35|43|37|38|40|40|41|42|43|53|45|46|50|48|49|50|51|52|53|0\n40|39|39|36|36|35|33|31|31|32|30|29|28|26|25|25|24|23|22|22|38|23|24|27|26|27|28|29|30|34|32|33|34|35|37|37|38|41|40|41|0\n49|44|42|42|41|40|39|38|37|36|36|45|46|34|33|33|32|31|30|29|28|27|26|26|48|27|28|29|30|31|32|35|34|35|47|37|38|39|40|41|43|43|44|45|46|47|48|49|0\n66|64|64|63|62|61|60|60|59|57|57|56|55|55|68|69|53|52|52|51|50|49|48|46|45|44|43|43|42|41|38|37|37|39|40|71|38|39|40|41|42|47|44|45|46|47|48|49|50|51|54|53|54|70|56|58|58|59|67|61|62|63|65|65|66|67|68|69|70|71|0\n15|11|10|10|12|9|9|14|13|11|12|13|14|15|0\n62|61|60|58|58|59|55|55|54|53|49|47|47|48|46|44|44|45|51|42|40|39|39|38|38|37|36|35|34|33|33|57|34|35|36|37|43|41|40|41|42|43|52|45|46|50|48|49|50|51|52|53|54|56|56|57|63|59|60|61|62|63|0\n19|16|15|14|14|13|12|11|11|18|12|13|17|15|16|17|18|19|0\n24|23|23|22|19|18|18|17|16|14|14|15|21|15|16|17|20|19|20|21|22|25|24|25|0\n53|51|49|47|47|48|46|42|42|41|40|39|39|44|38|37|35|34|33|32|31|31|30|29|28|28|52|29|30|36|32|33|34|35|36|37|38|45|40|41|43|43|44|45|46|50|48|49|50|51|52|53|0\n36|35|35|34|33|30|30|31|29|28|28|27|25|25|23|23|22|21|21|39|22|24|24|26|26|27|38|29|32|31|32|33|34|37|36|37|38|39|0\n36|36|35|34|34|33|30|29|29|31|27|27|26|24|22|22|23|21|21|39|25|23|24|25|26|28|28|32|30|31|32|33|38|35|37|37|38|39|0\n39|37|35|35|34|32|32|30|29|28|28|26|25|23|23|24|22|21|21|38|22|27|24|25|26|27|31|29|30|31|33|33|34|36|36|37|38|39|0\n59|57|57|56|54|53|52|51|50|49|47|47|46|45|44|43|41|40|39|37|36|36|38|35|34|32|32|31|31|55|33|33|34|35|42|37|38|39|40|41|42|43|44|45|46|48|48|49|50|51|52|53|54|55|56|58|58|59|0\n38|38|34|33|32|31|30|29|29|35|28|27|26|25|23|23|22|21|21|37|22|24|24|25|26|27|28|36|30|31|32|33|34|35|36|37|39|39|0\n54|53|53|52|47|46|46|45|45|44|43|43|50|39|39|38|38|41|37|35|35|34|32|32|31|30|29|29|30|31|33|33|34|36|36|37|42|40|40|41|42|51|44|49|48|47|48|49|50|51|52|55|54|55|0\n43|38|38|37|36|36|40|35|34|32|32|31|29|28|27|26|25|25|24|23|23|42|24|30|26|27|28|29|30|31|33|33|34|35|41|37|39|39|40|41|42|43|0\n46|45|42|36|36|37|35|35|39|40|41|43|31|31|32|29|29|30|28|27|26|26|25|25|47|27|28|34|30|33|32|33|34|44|38|37|38|39|40|41|42|43|44|45|46|47|0\n25|23|21|20|20|19|18|16|16|14|14|15|24|15|17|17|18|19|22|21|22|23|24|25|0\n48|45|45|46|43|43|42|41|40|40|39|38|36|35|34|32|31|31|30|28|28|27|26|26|37|27|29|29|30|33|32|33|34|35|36|37|38|39|49|41|42|44|44|47|46|47|48|49|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n29|26|24|24|23|22|22|21|20|19|18|16|16|17|28|17|18|19|20|21|27|23|25|25|26|27|28|29|0\n64|64|63|62|61|60|59|59|66|57|51|50|49|49|52|53|48|47|47|55|46|42|42|41|41|44|40|38|37|37|36|35|35|58|36|39|38|39|40|45|43|43|44|45|46|56|48|54|50|51|52|53|54|55|56|57|58|67|60|61|62|63|65|65|66|67|0\n19|18|17|17|20|21|15|15|14|13|13|23|14|16|16|22|18|19|20|21|22|23|0\n23|22|20|19|19|17|17|15|14|13|13|16|14|15|16|18|18|21|20|21|22|23|0\n67|66|65|62|61|61|60|59|58|58|57|54|53|52|52|55|51|50|48|48|49|68|69|47|45|45|44|43|42|41|40|39|38|37|37|71|38|39|40|41|42|43|44|46|46|47|70|49|50|51|56|53|54|55|56|57|64|59|60|63|62|63|64|65|66|67|68|69|70|71|0\n38|38|37|35|35|36|34|31|30|29|28|28|27|27|33|41|25|24|24|23|23|43|26|25|26|42|32|29|30|31|32|33|34|40|36|37|39|39|40|41|42|43|0\n35|34|34|33|31|30|29|28|27|26|26|32|25|23|22|20|20|21|24|21|22|23|24|25|37|27|28|29|30|31|32|33|36|35|36|37|0\n27|25|24|23|22|19|18|17|16|16|20|15|15|26|21|17|18|19|20|21|22|23|24|25|26|27|0\n40|40|39|38|38|42|43|36|34|34|33|32|32|31|30|29|28|26|26|25|24|24|45|25|27|27|28|29|30|31|37|33|35|35|36|37|44|39|41|41|42|43|44|45|0\n53|53|54|51|51|50|49|49|56|45|45|42|41|41|43|40|39|38|37|37|36|34|34|33|32|31|30|30|48|31|32|33|35|35|36|47|38|39|40|44|42|43|44|46|46|47|48|57|50|52|52|55|54|55|56|57|0\n48|47|47|49|46|44|43|42|42|41|39|39|38|37|37|33|33|34|32|31|29|28|28|27|27|36|30|29|30|31|32|35|34|35|36|51|38|40|40|41|45|43|44|45|46|50|48|49|50|51|0\n19|17|17|18|16|14|14|13|12|12|21|13|15|15|16|20|18|19|20|21|0\n24|23|23|22|21|20|20|19|17|17|16|15|15|27|16|18|18|19|26|21|22|25|24|25|26|27|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n30|29|29|27|21|21|22|20|19|18|17|17|24|25|26|28|18|19|20|23|22|23|24|25|26|27|28|31|30|31|0\n31|29|27|26|26|25|24|21|21|22|19|19|18|17|17|30|18|20|20|23|22|23|24|25|28|27|28|29|30|31|0\n79|78|76|76|73|72|70|70|71|69|67|67|68|66|65|64|63|62|62|80|81|61|60|58|57|56|56|55|50|49|49|51|48|48|53|46|46|45|43|43|44|83|44|45|47|47|54|52|50|51|52|53|54|55|59|57|58|59|60|61|82|63|64|65|66|75|68|69|74|71|72|73|74|75|77|77|78|79|80|81|82|83|0\n52|51|51|49|46|44|44|43|42|42|40|39|38|37|37|36|35|33|32|32|31|30|30|29|28|28|50|29|48|31|34|33|34|35|36|41|38|39|40|41|47|43|45|45|46|47|48|49|50|53|52|53|0\n41|41|40|39|38|36|35|34|33|31|30|30|32|29|28|27|26|26|25|23|23|24|24|25|43|27|28|29|37|31|32|33|34|35|36|37|38|39|40|42|42|43|0\n28|27|26|26|25|24|24|30|31|22|22|21|20|19|18|18|33|19|20|21|23|23|32|25|29|27|28|29|30|31|32|33|0\n40|39|38|38|41|36|36|35|34|31|31|32|30|30|29|24|24|25|26|23|23|28|27|25|26|27|28|29|43|33|32|33|34|35|37|37|42|39|40|41|42|43|0\n31|27|26|25|25|28|24|23|22|20|20|19|18|17|17|30|18|19|21|21|22|23|24|29|26|27|28|29|30|31|0\n46|44|44|45|42|40|39|38|35|34|34|36|33|33|32|31|29|28|28|27|26|25|25|43|26|27|30|29|30|31|32|41|37|35|36|37|38|39|40|41|42|43|47|45|46|47|0\n51|50|49|49|48|47|46|45|45|44|43|40|39|39|37|37|36|32|32|31|31|34|29|28|28|30|42|29|30|35|33|33|34|35|36|38|38|41|40|41|42|43|44|53|46|47|48|52|50|51|52|53|0\n41|41|40|40|38|36|33|33|34|35|32|30|29|27|26|26|28|25|24|23|23|39|24|25|31|27|28|29|30|31|32|37|34|35|36|37|38|39|43|42|42|43|0\n78|76|75|74|74|73|72|71|68|67|66|66|69|65|64|63|63|59|58|57|57|60|56|55|54|53|52|51|50|48|48|46|46|45|44|43|42|41|41|62|42|43|44|45|47|47|49|49|50|51|52|53|54|55|56|61|58|59|60|61|62|79|64|65|70|67|68|69|70|71|72|73|77|75|76|77|78|79|0\n31|29|29|28|27|25|25|24|23|22|21|21|32|33|20|19|19|35|20|34|22|23|24|26|26|27|28|30|30|31|32|33|34|35|0\n24|24|22|22|20|15|15|16|17|14|14|19|21|18|16|17|18|19|20|21|23|23|25|25|0\n53|53|50|49|45|45|46|44|44|48|51|41|40|40|39|39|38|37|36|35|34|33|32|31|30|29|29|55|30|31|32|33|34|35|36|37|38|43|42|41|42|43|52|47|46|47|48|49|50|51|52|54|54|55|0\n43|42|41|40|38|37|37|36|34|34|33|32|31|31|44|45|29|29|28|27|26|25|25|47|26|27|28|30|30|46|32|33|35|35|36|39|38|39|40|41|42|43|44|45|46|47|0\n40|40|35|35|36|37|34|33|32|30|29|27|27|28|26|24|24|23|22|22|39|23|25|25|26|31|28|29|30|31|32|33|34|38|36|37|38|39|41|41|0\n61|57|55|53|51|51|52|54|50|48|47|46|46|49|58|44|44|43|41|39|38|37|36|35|34|34|40|33|32|32|60|33|42|35|36|37|38|39|40|41|42|43|45|45|59|47|48|49|50|56|52|53|54|55|56|57|58|59|60|61|0\n45|42|42|41|39|37|37|38|36|35|34|32|32|31|29|28|27|27|26|25|24|24|44|25|26|30|28|29|30|31|33|33|34|35|36|40|38|39|40|41|43|43|44|45|0\n31|30|28|28|29|32|33|24|23|22|21|20|20|25|26|19|19|35|27|21|22|23|24|25|26|27|34|29|30|31|32|33|34|35|0\n29|28|26|24|24|25|22|20|19|19|18|17|16|16|23|17|18|21|20|21|22|23|27|25|26|27|28|29|0\n32|32|33|31|31|35|30|28|26|25|25|24|23|23|22|20|20|21|37|21|22|29|24|27|26|27|28|29|30|36|34|33|34|35|36|37|0\n43|42|42|44|41|40|40|46|47|39|37|37|35|34|34|33|32|30|30|29|28|27|26|26|49|27|28|29|31|31|32|33|36|35|36|38|38|39|48|41|45|43|44|45|46|47|48|49|0\n66|64|63|63|62|61|60|60|59|56|56|57|53|53|52|50|49|49|48|47|43|42|42|44|45|40|39|38|38|37|36|35|35|55|36|37|41|39|40|41|46|43|44|45|46|47|48|51|50|51|52|54|54|55|58|57|58|59|67|61|62|65|64|65|66|67|0\n23|23|22|21|20|20|17|15|15|16|14|14|19|18|16|17|18|19|25|21|22|24|24|25|0\n25|23|22|21|19|19|18|17|14|14|15|16|24|15|16|17|18|20|20|21|22|23|24|25|0\n65|65|66|63|61|60|60|59|55|53|53|54|52|52|57|51|50|46|45|45|44|44|43|43|42|41|37|37|38|39|36|35|35|64|36|40|38|39|40|41|42|49|48|47|46|47|48|49|50|51|58|56|54|55|56|57|58|59|62|61|62|63|64|67|66|67|0\n58|57|56|56|54|52|51|49|49|48|43|43|44|42|42|46|41|40|40|39|38|37|36|34|33|32|32|31|31|55|35|33|34|35|36|37|38|39|53|41|47|45|44|45|46|47|48|50|50|51|52|53|54|55|59|57|58|59|0\n41|38|37|37|36|34|33|32|31|31|30|28|27|27|26|23|23|24|22|22|40|25|24|25|26|29|28|29|30|35|32|33|34|35|36|39|38|39|40|41|0\n21|17|17|18|19|20|16|15|13|13|14|23|14|15|16|22|18|19|20|21|22|23|0\n16|15|14|13|13|12|11|10|10|11|12|17|14|15|16|17|0\n35|35|34|33|31|31|32|29|28|26|25|24|23|22|21|21|20|20|30|27|22|23|24|25|26|27|28|29|30|37|32|33|34|36|36|37|0\n24|23|23|21|20|17|16|16|18|15|14|14|22|15|19|17|18|19|20|21|22|25|24|25|0\n57|55|54|53|53|52|51|50|49|48|48|58|59|46|45|44|42|42|41|41|40|39|37|37|36|35|34|33|32|32|61|33|34|35|36|38|38|39|40|47|43|43|44|45|46|47|60|49|50|51|52|56|54|55|56|57|58|59|60|61|0\n45|41|40|40|38|38|37|35|35|33|33|32|31|31|30|28|28|26|25|24|24|27|44|25|26|27|29|29|30|43|32|34|34|36|36|37|39|39|42|41|42|43|44|45|0\n18|18|16|15|14|12|11|11|13|17|12|13|14|15|16|17|19|19|0\n8|8|9|7|7|11|10|9|10|11|0\n25|21|20|19|19|18|18|17|15|15|14|14|24|16|16|17|23|22|20|21|22|23|24|25|0\n17|17|18|16|15|12|12|11|11|14|13|13|14|15|16|19|18|19|0\n67|66|64|64|65|63|59|59|58|58|61|57|56|54|53|53|52|52|51|47|47|46|46|45|44|42|42|41|41|39|38|37|36|36|40|37|38|39|40|50|43|43|44|45|49|48|48|49|50|51|69|55|54|55|56|57|62|60|60|61|62|63|68|65|66|67|68|69|0\n33|31|30|30|29|25|25|26|27|24|23|22|22|21|21|35|20|20|37|36|34|23|24|28|26|27|28|29|32|31|32|33|34|35|36|37|0\n28|27|26|26|22|21|20|20|23|19|18|17|16|16|25|17|18|19|24|21|22|23|24|25|29|27|28|29|0\n24|23|23|21|20|18|18|17|16|14|14|15|22|15|16|17|19|19|20|21|22|25|24|25|0\n21|19|17|17|16|15|14|13|12|12|20|13|14|15|16|18|18|19|20|21|0\n5|4|4|5|0\n44|42|42|41|41|40|39|37|36|35|30|30|31|29|27|27|28|33|26|25|24|24|38|25|26|34|28|29|32|31|32|33|34|35|36|37|38|39|40|45|43|43|44|45|0\n47|46|46|45|44|44|42|41|38|38|39|37|36|35|33|33|32|27|27|28|29|30|26|26|43|31|28|29|30|31|32|34|34|35|36|37|40|39|40|41|42|43|49|45|48|47|48|49|0\n28|25|25|26|23|22|22|21|19|19|18|17|16|16|29|17|18|20|20|21|24|23|24|27|26|27|28|29|0\n28|28|26|22|22|21|20|20|24|18|18|17|16|16|27|17|19|19|25|21|23|23|24|25|26|27|29|29|0\n33|32|31|29|29|28|28|34|35|27|26|24|24|23|22|21|20|20|37|21|22|23|25|25|26|27|36|30|30|31|32|33|34|35|36|37|0\n29|29|28|27|22|22|23|21|21|25|20|20|18|17|17|19|18|19|31|26|24|23|24|25|26|27|28|30|30|31|0\n59|58|56|55|54|53|53|52|50|49|49|48|47|47|60|61|45|44|42|42|41|41|40|39|38|36|36|35|34|33|33|63|34|35|37|37|38|39|40|46|43|43|44|45|46|62|48|51|50|51|52|57|54|55|56|57|58|59|60|61|62|63|0\n32|32|31|30|29|29|34|35|27|26|26|25|24|21|21|22|20|20|37|23|22|23|24|25|28|27|28|36|30|31|33|33|34|35|36|37|0\n34|34|29|28|27|27|30|31|26|23|23|22|21|20|20|19|19|33|25|21|22|24|24|25|26|32|28|29|30|31|32|33|35|35|0\n36|36|32|31|30|30|33|28|27|27|26|24|23|23|22|20|20|21|35|21|22|25|24|25|26|29|28|29|34|31|32|33|34|35|37|37|0\n32|30|30|28|28|26|26|25|24|23|22|20|19|19|18|18|33|21|20|21|22|23|24|25|27|27|29|29|31|31|32|33|0\n35|35|36|33|31|30|30|29|27|26|26|25|23|22|22|21|20|20|34|21|24|23|24|25|28|27|28|29|32|31|32|33|34|37|36|37|0\n51|49|47|46|46|45|44|43|40|40|41|39|37|37|33|33|32|32|35|30|30|29|28|27|27|50|28|29|31|31|36|34|34|35|36|38|38|39|42|41|42|43|44|45|48|47|48|49|50|51|0\n27|27|28|26|24|21|21|22|20|19|18|17|16|16|25|17|18|19|20|23|22|23|24|25|26|29|28|29|0\n19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0\n30|30|27|27|28|24|24|23|22|21|20|19|17|17|18|26|18|19|20|21|22|23|25|25|26|29|28|29|31|31|0\n40|38|37|37|36|34|34|35|33|32|31|31|30|28|28|26|26|24|23|23|25|43|24|25|27|27|29|29|30|42|32|33|41|35|36|39|38|39|40|41|42|43|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n40|40|39|37|34|33|33|35|32|31|30|29|28|27|27|26|24|22|22|23|25|23|24|25|26|38|28|29|30|31|32|36|34|35|36|37|38|39|41|41|0\n47|45|43|42|42|41|38|38|39|37|36|35|34|33|31|31|30|28|28|27|25|25|26|46|26|27|29|29|30|32|32|33|34|35|36|37|40|39|40|41|44|43|44|45|46|47|0\n58|57|56|56|55|54|52|51|49|48|47|47|46|42|41|40|40|39|38|37|37|44|36|34|34|33|32|31|31|53|32|33|35|35|36|45|38|39|43|41|42|43|44|45|46|50|48|49|50|51|52|53|54|55|59|57|58|59|0\n14|13|12|12|11|11|10|10|17|16|15|13|14|15|16|17|0\n45|43|43|42|41|40|40|46|47|38|38|37|33|33|32|31|30|29|29|35|28|27|26|26|49|27|28|36|30|31|32|34|34|35|36|37|39|39|48|41|42|44|44|45|46|47|48|49|0\n40|39|38|38|37|35|34|34|29|28|26|26|27|25|25|31|24|22|22|23|33|23|24|32|30|27|28|29|30|31|32|33|36|35|36|37|41|39|40|41|0\n32|30|30|29|27|27|26|25|25|24|23|21|20|18|18|19|22|19|20|21|22|23|24|33|26|28|28|29|31|31|32|33|0\n9|7|6|6|8|7|8|9|0\n17|17|15|15|14|13|12|11|11|19|12|13|14|16|16|18|18|19|0\n30|29|27|26|26|25|23|23|22|22|31|21|20|19|18|18|33|19|20|21|32|24|24|25|28|27|28|29|30|31|32|33|0\n39|38|37|36|36|35|35|33|31|28|28|27|27|30|26|23|23|24|22|22|34|25|24|25|26|32|29|29|30|31|32|33|34|41|40|37|38|39|40|41|0\n39|38|36|36|35|34|33|32|31|30|29|29|40|41|27|27|26|25|23|23|24|43|24|25|26|28|28|42|30|31|32|33|34|35|37|37|38|39|40|41|42|43|0\n38|36|36|35|34|33|32|32|31|29|28|28|26|24|24|23|22|21|21|27|22|23|25|25|26|27|30|29|30|31|39|33|34|35|37|37|38|39|0\n37|37|38|34|34|33|31|31|29|29|28|26|25|25|24|22|22|21|21|36|23|23|24|27|26|27|28|30|30|32|32|33|35|35|36|39|38|39|0\n29|27|24|24|23|22|22|18|18|19|17|17|16|16|28|21|20|19|20|21|26|23|25|25|26|27|28|29|0\n27|27|26|25|24|23|23|21|20|19|18|17|16|16|22|17|18|19|20|21|22|29|24|25|26|28|28|29|0\n10|7|7|8|9|11|8|9|10|11|0\n21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0\n63|62|61|60|60|64|65|56|56|54|53|53|52|51|50|50|58|49|48|46|45|44|44|43|41|41|40|39|38|35|35|36|37|67|36|37|38|39|40|42|42|43|47|45|46|47|48|49|59|51|52|55|54|55|57|57|58|59|66|61|62|63|64|65|66|67|0\n9|9|8|7|7|11|8|10|10|11|0\n62|61|60|54|54|55|53|53|57|58|51|51|50|47|47|48|46|46|45|42|42|43|40|39|36|36|35|35|34|33|33|41|34|38|37|37|38|39|40|41|44|43|44|45|63|49|48|49|50|52|52|59|56|55|56|57|58|59|60|61|62|63|0\n20|19|18|18|17|16|15|14|14|13|13|23|22|15|16|17|21|19|20|21|22|23|0\n21|20|20|19|18|18|23|17|16|15|14|14|25|15|16|17|24|19|22|21|22|23|24|25|0\n47|46|45|39|36|36|37|38|40|41|35|34|33|32|31|31|30|28|28|27|26|25|25|44|26|27|29|29|30|43|32|33|34|35|42|37|38|39|40|41|42|43|44|45|46|47|0\n29|22|22|23|21|20|19|19|25|26|17|16|16|18|28|17|18|27|20|21|24|23|24|25|26|27|28|29|0\n36|36|35|34|33|31|31|30|28|28|29|38|39|26|26|24|22|22|23|25|41|23|24|25|27|27|40|29|30|32|32|33|34|35|37|37|38|39|40|41|0\n21|19|19|18|18|22|23|17|15|15|14|14|25|16|16|17|24|20|20|21|22|23|24|25|0\n21|19|18|17|17|16|15|13|12|12|14|13|14|15|16|20|18|19|20|21|0\n35|32|32|30|29|28|28|27|26|25|24|22|21|21|20|19|19|34|20|23|22|23|24|25|26|27|31|29|30|31|33|33|34|35|0\n61|61|62|58|57|55|54|54|53|52|52|51|50|48|47|46|46|45|39|39|40|38|37|37|42|43|35|35|34|33|33|60|34|36|36|44|38|41|40|41|42|43|44|45|49|47|48|49|50|51|59|53|56|55|56|57|58|59|60|63|62|63|0\n62|62|63|61|59|59|58|57|55|54|54|53|53|65|50|50|49|47|47|46|45|44|41|41|42|40|39|39|38|37|36|35|35|67|36|37|38|52|40|43|42|43|44|45|46|48|48|49|51|51|52|66|56|55|56|57|58|60|60|61|64|63|64|65|66|67|0\n47|46|45|42|41|40|39|37|37|36|35|35|43|34|32|31|31|30|27|26|26|28|25|25|29|27|28|29|30|33|32|33|34|44|36|38|38|39|40|41|42|43|44|45|46|47|0\n70|69|68|66|65|65|64|63|62|61|61|60|59|55|54|54|53|51|50|50|52|48|46|45|45|44|43|42|42|40|40|39|37|37|38|58|38|39|41|41|49|43|44|47|46|47|48|49|57|51|52|53|56|55|56|57|58|59|60|71|62|63|64|67|66|67|68|69|70|71|0\n32|32|31|29|27|26|25|25|24|23|23|22|19|19|18|18|21|20|20|21|22|30|24|28|26|27|28|29|30|31|33|33|0\n49|48|48|47|44|43|43|45|42|41|41|39|38|37|36|35|34|33|32|31|30|29|28|27|27|40|28|29|30|31|32|33|34|35|36|37|38|39|40|51|42|46|44|45|46|47|50|49|50|51|0\n16|14|12|11|11|13|10|10|17|15|12|13|14|15|16|17|0\n72|71|70|70|69|67|66|66|63|61|61|62|60|57|56|55|55|58|54|53|52|50|50|49|47|47|46|45|44|42|41|40|40|38|38|39|65|39|43|41|42|43|44|45|46|48|48|49|51|51|52|53|54|59|56|57|58|59|60|64|62|63|64|65|68|67|68|69|73|71|72|73|0\n52|52|51|50|48|48|49|54|55|47|46|43|42|42|44|41|40|38|38|36|36|35|34|33|32|31|30|30|57|31|32|33|34|35|37|37|39|39|40|41|45|43|44|45|46|47|56|49|50|51|53|53|54|55|56|57|0\n49|47|45|44|41|40|40|42|39|39|37|37|34|34|33|33|32|30|30|29|28|27|26|26|48|27|28|29|31|31|32|36|35|35|36|38|38|46|43|41|42|43|44|45|46|47|48|49|0\n61|58|57|57|56|55|55|53|51|49|48|48|47|47|46|44|44|43|42|40|40|39|37|37|36|34|34|33|32|32|54|33|35|35|36|38|38|39|41|41|42|43|45|45|46|52|50|49|50|51|52|53|54|60|56|59|58|59|60|61|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n52|51|51|49|48|46|45|45|44|42|40|40|41|39|34|34|35|33|33|37|31|31|30|29|28|28|50|29|30|32|32|38|36|35|36|37|38|39|43|41|42|43|44|47|46|47|48|49|50|53|52|53|0\n33|30|30|29|27|27|25|25|24|23|21|21|20|19|18|18|32|19|20|22|22|23|24|26|26|28|28|29|31|31|32|33|0\n37|35|33|33|32|28|26|26|27|25|24|24|30|23|22|21|20|20|36|21|22|23|31|25|29|27|28|29|30|31|32|34|34|35|36|37|0\n44|43|42|42|41|40|38|37|36|33|31|31|32|34|30|29|27|27|26|25|24|24|39|25|26|28|28|29|30|35|32|33|34|35|36|37|38|39|40|41|45|43|44|45|0\n19|16|16|17|15|13|12|11|11|14|12|13|14|15|18|17|18|19|0\n23|23|24|21|20|19|18|16|16|15|14|14|22|15|17|17|18|19|20|21|22|25|24|25|0\n14|13|11|11|10|9|9|15|10|12|12|13|14|15|0\n17|16|16|15|13|13|12|11|11|19|12|14|14|15|18|17|18|19|0\n49|47|46|45|45|43|42|41|40|39|37|36|35|34|34|33|32|30|29|29|28|27|26|26|44|27|28|31|30|31|32|33|38|35|36|37|38|39|40|41|42|43|44|48|46|47|48|49|0\n40|39|39|38|37|36|35|35|42|43|32|31|31|30|30|29|28|26|25|25|24|24|45|27|26|27|28|29|34|33|32|33|34|44|36|37|38|41|40|41|42|43|44|45|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n16|15|15|14|13|11|10|10|12|11|12|13|14|17|16|17|0\n14|13|12|12|11|9|9|10|10|11|15|13|14|15|0\n60|59|58|56|55|54|53|53|52|51|51|50|49|44|42|41|41|40|40|39|38|37|37|46|34|33|33|32|32|36|48|35|34|35|36|47|38|39|45|43|42|43|44|45|46|47|48|49|50|61|52|57|54|55|56|57|58|59|60|61|0\n36|35|35|37|33|33|31|31|30|30|39|28|28|27|26|24|23|23|22|22|41|25|24|25|26|27|29|29|40|32|32|34|34|38|36|37|38|39|40|41|0\n58|57|56|56|55|53|49|48|48|47|47|51|45|44|44|43|42|41|40|40|39|37|35|35|34|33|32|31|31|38|32|33|34|36|36|37|38|39|54|41|42|43|46|45|46|52|50|49|50|51|52|53|54|55|59|57|58|59|0\n32|32|31|30|29|28|27|26|26|34|35|24|24|22|22|21|20|20|37|21|23|23|25|25|36|27|28|29|30|31|33|33|34|35|36|37|0\n32|31|30|28|28|27|26|26|25|23|23|21|20|19|18|18|22|19|20|21|22|24|24|25|33|27|29|29|30|31|32|33|0\n25|23|19|18|18|20|21|17|16|15|14|14|24|15|16|17|22|19|20|21|22|23|24|25|0\n33|32|30|29|29|28|26|25|25|24|23|23|34|35|22|21|20|20|37|21|22|36|24|27|26|27|28|31|30|31|32|33|34|35|36|37|0\n21|20|20|19|17|17|16|13|13|14|15|23|14|15|16|18|18|19|22|21|22|23|0\n74|74|71|68|67|66|65|65|69|64|64|63|62|60|60|59|58|57|56|54|54|53|50|48|48|49|51|47|46|44|43|42|41|41|40|39|39|73|40|45|42|43|44|45|46|47|52|49|50|51|52|53|55|55|56|57|58|59|61|61|62|63|72|70|66|67|68|69|70|71|72|73|75|75|0\n52|50|48|47|47|49|46|46|45|42|41|39|39|38|35|35|34|34|33|32|31|31|30|29|28|28|44|29|30|43|32|33|37|36|36|37|38|40|40|41|42|43|44|45|53|51|48|49|50|51|52|53|0\n41|37|36|36|38|35|35|32|31|30|30|29|27|26|25|25|24|23|22|22|34|23|24|28|26|27|28|29|33|31|32|33|34|40|39|37|38|39|40|41|0\n54|53|53|52|50|49|49|48|46|45|44|44|43|42|41|39|38|38|37|37|56|57|36|35|33|33|32|31|31|59|32|34|34|35|36|58|40|39|40|41|42|43|47|45|46|47|48|51|50|51|52|55|54|55|56|57|58|59|0\n24|23|23|21|19|18|17|16|16|15|14|14|22|15|20|17|18|19|20|21|22|25|24|25|0\n45|45|46|44|42|41|40|40|36|35|34|33|33|37|32|30|28|28|29|27|26|25|25|39|26|27|31|29|30|31|32|38|34|35|36|37|38|39|43|41|42|43|44|47|46|47|0\n28|28|25|25|24|23|22|21|20|19|18|17|16|16|27|17|18|19|20|21|22|23|24|26|26|27|29|29|0\n17|17|18|14|13|12|12|11|11|16|15|13|14|15|16|19|18|19|0\n36|34|34|33|33|32|30|29|27|26|25|25|24|23|22|20|20|21|31|21|22|23|24|28|26|27|28|29|30|31|32|37|35|35|36|37|0\n64|63|60|60|61|57|56|55|55|54|53|53|52|51|51|50|49|47|45|45|42|42|43|40|39|39|38|37|36|34|34|35|48|35|36|37|38|41|40|41|44|43|44|46|46|47|48|49|50|65|52|59|54|58|56|57|58|59|62|61|62|63|64|65|0\n54|53|53|52|50|49|49|47|46|45|44|43|41|40|40|39|38|37|36|34|34|32|32|31|30|29|29|48|30|31|33|33|35|35|36|37|38|39|42|41|42|43|44|45|46|47|48|51|50|51|52|55|54|55|0\n35|33|30|30|29|28|27|25|25|26|24|23|20|20|21|19|19|34|22|21|22|23|24|32|26|27|28|29|31|31|32|33|34|35|0\n39|36|36|35|34|31|31|32|33|38|30|29|28|28|26|25|24|23|22|22|27|23|24|25|26|27|41|29|30|40|32|33|34|35|37|37|38|39|40|41|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n25|24|24|26|22|21|20|19|18|17|16|15|15|23|16|17|18|19|20|21|22|23|27|25|26|27|0\n16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0\n44|42|41|40|39|38|37|37|36|36|34|33|29|28|28|27|27|31|25|25|24|24|35|26|26|32|30|29|30|31|32|33|34|35|45|43|38|39|40|41|42|43|44|45|0\n47|47|46|44|44|45|42|40|40|39|37|37|35|34|33|32|32|31|29|28|27|26|26|30|43|27|28|29|30|31|36|33|34|35|36|38|38|39|41|41|42|43|49|45|46|48|48|49|0\n74|73|72|71|71|70|69|68|66|61|61|60|59|59|63|58|58|56|54|54|55|53|52|50|49|49|48|45|45|42|42|43|44|41|40|39|39|67|40|41|47|43|44|46|46|47|48|51|50|51|52|53|57|55|56|57|65|64|60|62|62|63|64|65|66|67|68|69|70|75|72|73|74|75|0\n12|10|8|8|9|11|13|9|10|11|12|13|0\n33|31|29|29|28|27|26|24|24|23|21|21|20|19|18|18|32|19|20|22|22|23|25|25|26|27|28|30|30|31|32|33|0\n58|57|56|55|54|53|52|51|51|50|48|47|46|46|43|38|38|39|40|37|37|36|34|34|33|33|32|31|31|45|32|44|35|35|36|42|41|39|40|41|42|43|44|45|49|47|48|49|50|59|52|53|54|55|56|57|58|59|0\n16|15|15|13|11|10|10|12|14|11|12|13|14|17|16|17|0\n27|26|26|25|24|24|22|21|20|18|18|17|16|16|23|17|19|19|20|21|22|23|29|25|28|27|28|29|0\n36|35|33|33|32|31|30|30|29|28|25|24|24|23|22|21|20|20|27|21|22|23|26|25|26|27|28|29|37|31|32|34|34|35|36|37|0\n40|40|41|39|37|37|36|36|34|32|31|31|30|28|27|26|26|25|24|23|23|35|24|25|29|27|28|29|30|33|32|33|34|35|43|38|38|39|42|41|42|43|0\n45|43|43|42|41|39|39|38|38|46|47|37|35|33|33|32|31|30|30|29|28|27|26|26|49|27|28|29|36|31|32|34|34|35|36|37|48|40|40|41|42|44|44|45|46|47|48|49|0\n66|65|62|61|60|60|63|59|58|57|56|56|67|53|52|51|50|48|47|46|46|45|44|44|54|42|41|41|40|38|38|37|36|36|69|37|39|39|40|43|42|43|55|45|49|47|48|49|50|51|52|53|54|55|68|57|58|59|64|61|62|63|64|65|66|67|68|69|0\n27|24|22|20|20|21|19|18|18|17|15|15|16|26|16|17|25|19|23|21|22|23|24|25|26|27|0\n25|25|26|23|23|24|21|20|20|19|18|16|16|17|29|17|18|19|22|21|22|28|24|27|26|27|28|29|0\n86|86|83|82|82|81|77|77|78|79|76|69|69|68|67|66|65|64|63|62|61|60|59|58|57|56|55|55|71|53|52|52|51|50|50|73|74|48|47|47|46|45|45|85|46|49|48|49|75|51|54|53|54|72|56|57|58|59|60|61|62|63|64|65|66|67|68|70|70|71|72|73|74|75|76|80|78|79|80|81|84|83|84|85|87|87|0\n9|9|7|7|8|11|8|10|10|11|0\n44|41|40|40|39|37|37|38|36|35|34|31|30|29|29|32|27|27|26|25|24|24|45|25|26|28|28|33|30|31|32|33|34|35|36|43|38|39|42|41|42|43|44|45|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n62|61|61|60|59|57|55|53|53|54|52|50|50|49|47|45|45|44|43|42|42|40|39|39|38|36|36|35|34|33|33|58|34|35|37|37|38|41|40|41|48|43|44|46|46|47|48|49|51|51|52|56|54|55|56|57|58|59|60|63|62|63|0\n14|12|12|11|9|9|10|15|10|11|13|13|14|15|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n36|35|34|34|32|28|27|27|26|25|25|30|23|23|22|21|20|20|33|21|22|24|24|31|26|29|28|29|30|31|32|33|37|35|36|37|0\n57|54|50|50|49|47|46|45|44|44|48|52|43|43|42|40|40|39|38|37|36|35|33|33|31|31|30|30|56|32|32|34|34|35|36|37|38|39|41|41|42|55|53|45|46|47|48|49|51|51|52|53|54|55|56|57|0\n51|49|46|45|45|44|41|41|42|40|38|38|39|37|36|35|34|32|32|31|27|27|28|29|30|50|28|29|30|31|33|33|34|35|36|37|48|39|40|43|42|43|44|47|46|47|48|49|50|51|0\n58|58|57|56|56|60|61|54|54|52|51|50|49|48|48|47|45|44|43|43|42|41|40|39|37|37|35|35|34|33|33|63|34|36|36|38|38|39|40|41|42|46|44|45|46|47|53|49|50|51|52|53|55|55|62|57|59|59|60|61|62|63|0\n27|25|24|23|21|20|20|19|17|17|16|15|15|26|16|18|18|19|22|21|22|23|24|25|26|27|0\n58|58|57|56|51|49|48|48|47|46|45|44|44|52|53|42|41|41|39|38|38|37|36|34|33|33|32|31|31|55|32|35|34|35|36|37|40|39|40|43|42|43|54|45|46|47|50|49|50|51|52|53|54|55|56|57|59|59|0\n39|34|34|32|32|31|30|29|29|36|28|27|25|25|24|23|21|21|22|38|22|23|24|26|26|27|28|37|30|31|33|33|35|35|36|37|38|39|0\n25|24|24|26|22|21|20|19|18|17|16|15|15|23|16|17|18|19|20|21|22|23|27|25|26|27|0\n36|35|34|33|32|32|30|29|28|26|25|24|23|22|22|21|20|20|31|21|27|23|24|25|26|27|28|29|30|31|37|33|34|35|36|37|0\n26|25|24|24|23|21|20|19|17|17|16|15|15|22|16|18|18|19|20|21|22|23|27|25|26|27|0\n23|22|22|21|20|18|18|17|16|15|14|14|25|15|16|17|19|19|20|21|24|23|24|25|0\n36|35|34|34|33|32|31|29|29|27|26|24|23|22|22|21|20|20|28|21|25|23|24|25|26|27|28|30|30|31|32|33|37|35|36|37|0\n30|29|28|28|26|24|23|23|22|21|18|18|19|17|17|27|20|19|20|21|22|25|24|25|26|27|31|29|30|31|0\n8|8|7|6|6|7|9|9|0\n12|11|10|10|9|8|8|9|13|11|12|13|0\n7|6|5|5|6|7|0\n32|31|30|30|27|24|24|25|26|23|22|21|20|19|18|18|29|19|20|21|22|23|28|25|26|27|28|29|33|31|32|33|0\n34|33|31|29|29|30|27|27|25|25|24|23|22|21|20|20|19|19|35|21|22|23|24|26|26|28|28|32|30|31|32|33|34|35|0\n26|25|24|23|23|27|21|21|20|19|18|17|16|16|29|17|18|19|20|22|22|28|24|25|26|27|28|29|0\n23|21|21|22|20|19|18|17|15|15|14|14|25|16|16|17|18|19|20|24|22|23|24|25|0\n44|44|43|41|39|39|40|37|36|34|32|30|30|31|29|29|28|26|25|24|24|27|38|25|26|27|28|35|33|31|32|33|34|35|36|37|38|42|40|41|42|43|45|45|0\n83|82|81|80|78|78|77|76|75|74|74|84|85|72|71|71|64|64|65|62|62|63|67|61|59|59|60|69|58|57|53|52|52|54|55|51|50|49|47|47|46|45|45|87|46|48|48|49|50|51|56|53|54|55|56|57|58|70|60|61|68|63|66|65|66|67|68|69|70|73|72|73|86|75|76|77|79|79|80|81|82|83|84|85|86|87|0\n54|53|52|51|50|50|45|45|44|42|41|41|40|40|47|48|39|38|37|36|36|56|57|35|33|32|32|31|31|59|34|33|34|35|58|37|38|39|49|43|42|43|44|46|46|47|48|49|55|51|52|53|54|55|56|57|58|59|0\n24|23|20|19|18|18|21|17|16|15|14|14|25|15|16|17|22|19|20|21|22|23|24|25|0\n27|20|20|21|22|23|19|18|18|25|26|17|16|16|29|17|28|19|24|21|22|23|24|25|26|27|28|29|0\n51|43|43|44|45|41|41|42|47|48|37|37|38|36|35|35|34|32|31|31|30|29|28|27|27|50|28|29|30|33|32|33|34|40|36|39|38|39|40|49|42|46|44|45|46|47|48|49|50|51|0\n44|43|43|45|42|40|40|41|38|36|35|33|32|32|34|31|29|28|28|27|26|25|25|39|26|27|30|29|30|31|37|33|34|35|36|37|38|39|47|41|42|46|44|45|46|47|0\n58|57|56|55|54|53|53|52|50|50|48|47|46|45|44|42|42|41|40|38|37|37|36|33|33|34|32|31|31|49|32|35|34|35|36|39|38|39|40|41|43|43|44|45|46|47|48|49|51|51|52|59|54|55|56|57|58|59|0\n18|18|17|13|13|14|11|11|12|16|12|15|14|15|16|17|19|19|0\n21|20|18|17|16|15|14|13|12|12|19|13|14|15|16|17|18|19|20|21|0\n5|4|4|5|0\n46|45|44|43|43|42|40|40|37|36|33|32|30|28|28|29|31|34|35|27|26|25|25|39|26|27|38|29|30|31|32|33|34|35|36|37|38|39|41|41|42|47|44|45|46|47|0\n46|46|45|45|48|49|43|42|41|41|40|38|38|37|35|34|34|33|32|31|29|29|28|27|27|51|28|30|30|31|32|33|36|35|36|37|39|39|40|44|42|43|44|50|47|47|48|49|50|51|0\n27|26|25|24|23|22|22|21|19|19|20|17|16|16|18|17|18|29|20|21|28|23|24|25|26|27|28|29|0\n66|66|65|64|62|62|61|60|59|59|68|69|57|56|55|54|51|51|50|50|48|48|47|47|46|44|44|43|41|41|40|39|38|37|37|71|38|39|40|42|42|43|45|45|46|58|49|49|53|52|52|53|54|55|56|57|58|70|60|61|63|63|64|65|67|67|68|69|70|71|0\n36|36|37|38|35|34|32|32|31|29|28|28|27|26|26|40|24|23|22|22|25|23|24|25|41|27|30|29|30|31|33|33|34|35|39|37|38|39|40|41|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n53|53|52|51|50|50|48|48|49|56|57|46|46|45|44|42|41|40|39|39|38|36|36|35|33|33|32|31|31|59|32|34|34|35|37|37|38|43|40|41|42|43|44|45|47|47|58|49|55|51|52|54|54|55|56|57|58|59|0\n15|12|12|13|11|10|9|9|10|11|14|13|14|15|0\n27|24|24|22|21|21|18|18|19|17|16|15|15|26|16|17|20|19|20|23|22|23|25|25|26|27|0\n36|35|34|33|33|32|31|28|28|27|25|24|24|26|21|21|20|20|23|22|22|23|30|25|26|27|29|29|30|31|32|37|34|35|36|37|0\n49|47|47|48|46|45|45|44|43|42|41|41|52|38|36|36|37|35|34|34|33|33|54|32|31|30|29|29|30|31|32|55|40|35|39|37|38|39|40|53|42|43|44|51|46|50|48|49|50|51|52|53|54|55|0\n62|58|58|59|60|61|54|53|52|51|51|55|48|47|46|46|49|45|42|42|41|40|40|39|38|37|35|35|33|33|34|57|34|36|36|37|38|39|44|41|43|43|44|45|50|47|48|49|50|56|52|53|54|55|56|57|63|59|60|61|62|63|0\n29|26|26|25|24|22|22|21|20|19|17|17|16|16|28|18|18|19|20|21|23|23|24|25|27|27|28|29|0\n41|40|39|36|36|35|34|33|32|31|30|28|28|27|26|24|24|23|22|22|38|23|25|25|26|27|29|29|30|31|32|33|34|35|37|37|38|39|40|41|0\n72|70|70|71|67|66|66|65|64|61|60|59|59|62|58|57|55|54|53|52|52|50|50|49|48|47|45|45|44|42|42|41|39|39|38|38|69|40|40|41|43|43|44|46|46|47|48|49|51|51|56|53|54|55|56|57|58|63|60|61|62|63|64|65|68|67|68|69|73|71|72|73|0\n29|28|27|27|26|25|24|24|23|22|21|20|20|32|33|19|19|35|34|21|22|23|31|25|26|30|28|29|30|31|32|33|34|35|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n68|65|64|64|63|61|61|59|58|58|54|54|55|53|53|57|52|50|50|49|49|48|46|45|45|42|42|41|39|39|38|37|36|36|44|37|38|40|40|41|43|43|44|47|46|47|48|69|51|51|52|67|56|55|56|57|60|59|60|62|62|63|66|65|66|67|68|69|0\n42|42|40|36|34|34|35|33|32|32|38|31|30|28|28|27|25|24|23|23|26|41|24|25|26|27|29|29|30|31|39|33|37|35|36|37|38|39|40|41|43|43|0\n62|59|58|57|57|60|56|55|53|52|52|51|50|49|48|48|47|46|44|41|40|40|42|38|37|37|36|34|34|33|33|45|35|35|36|39|38|39|43|41|42|43|44|45|46|47|63|49|50|51|54|53|54|55|56|61|58|59|60|61|62|63|0\n42|40|40|39|38|38|37|34|34|32|32|31|30|28|28|27|26|25|23|23|24|36|24|25|26|27|29|29|30|31|33|33|35|35|36|37|43|39|41|41|42|43|0\n28|28|26|25|24|23|22|21|20|19|18|16|16|17|27|17|18|19|20|21|22|23|24|25|26|27|29|29|0\n34|33|31|30|30|29|28|28|27|27|26|25|22|22|21|21|20|20|37|24|23|23|24|25|26|36|35|29|32|31|32|33|34|35|36|37|0\n36|35|33|33|32|31|30|29|29|27|25|24|24|23|22|21|20|20|28|21|22|23|26|25|26|27|28|37|30|31|32|34|34|35|36|37|0\n31|31|30|26|26|25|24|23|23|28|29|21|19|19|18|18|22|20|20|21|22|33|24|25|27|27|28|29|30|32|32|33|0\n36|34|34|35|32|30|30|29|28|27|26|25|23|23|22|20|20|21|33|21|22|24|24|25|26|27|28|29|31|31|32|33|37|35|36|37|0\n17|15|15|12|12|11|10|10|14|11|13|13|14|16|16|17|0\n68|67|67|69|65|65|64|64|71|62|62|60|59|58|58|57|56|55|53|52|52|51|50|50|73|49|47|46|43|43|44|45|42|41|40|39|39|75|40|41|42|48|44|45|46|47|48|49|74|51|54|53|54|55|56|57|61|59|60|61|63|63|72|66|66|70|68|69|70|71|72|73|74|75|0\n39|38|37|36|30|30|31|32|33|34|29|29|40|41|27|25|25|26|24|23|23|43|24|28|26|27|28|42|35|31|32|33|34|35|36|37|38|39|40|41|42|43|0\n65|65|66|63|59|59|60|58|58|55|55|56|53|53|52|50|49|48|47|47|46|44|44|41|41|40|39|38|36|36|37|35|35|64|43|37|38|39|40|42|42|43|45|45|46|51|48|49|50|51|52|54|54|57|56|57|62|61|60|61|62|63|64|67|66|67|0\n36|34|34|33|31|31|30|30|29|27|27|24|24|22|22|21|20|20|26|21|23|23|25|25|26|28|28|29|37|32|32|33|35|35|36|37|0\n21|20|18|16|15|15|14|13|12|12|19|13|14|17|16|17|18|19|20|21|0\n51|49|49|48|47|47|46|45|44|43|42|41|41|53|40|39|38|36|34|34|35|33|31|31|30|29|29|55|30|32|32|33|37|35|36|37|38|39|40|54|42|43|44|45|46|52|48|50|50|51|52|53|54|55|0\n29|26|24|24|23|21|20|20|19|18|18|17|16|16|28|17|27|19|22|21|22|23|25|25|26|27|28|29|0\n40|37|36|34|34|33|32|31|31|38|30|29|29|41|28|27|26|25|24|23|23|43|24|25|26|27|28|42|30|39|32|33|35|35|36|37|38|39|40|41|42|43|0\n21|20|19|16|14|13|13|12|12|17|18|15|14|15|16|17|18|19|20|21|0\n29|29|28|27|26|26|25|24|23|22|22|21|19|18|18|20|33|19|20|21|32|23|24|25|31|27|28|30|30|31|32|33|0\n11|8|8|7|7|10|9|9|10|11|0\n78|78|79|75|75|74|74|77|72|70|69|68|67|67|66|62|62|61|60|59|59|64|58|57|56|55|53|52|51|50|50|49|47|46|45|44|44|43|42|42|73|43|48|45|46|47|48|49|54|51|52|53|54|55|56|57|58|65|60|61|63|63|64|65|66|71|68|69|70|71|72|73|81|76|76|77|80|79|80|81|0\n16|15|14|14|13|11|10|10|12|11|12|13|17|15|16|17|0\n49|49|48|45|44|44|46|42|42|41|41|40|38|38|39|52|53|36|36|34|33|33|32|31|30|29|29|55|30|31|32|35|34|35|37|37|54|39|40|51|43|43|47|45|46|47|48|50|50|51|52|53|54|55|0\n36|35|34|33|33|32|29|29|28|27|25|23|23|24|22|20|20|21|31|21|22|26|24|25|26|27|28|30|30|31|32|37|34|35|36|37|0\n83|82|81|79|79|80|78|77|76|76|73|71|71|72|70|69|67|67|66|64|63|62|61|60|59|59|56|55|52|52|53|48|47|47|49|50|51|57|46|45|44|44|75|45|46|58|48|49|50|51|54|53|54|55|56|57|58|65|60|61|62|63|64|65|66|68|68|69|70|74|72|73|74|75|85|77|78|84|80|81|82|83|84|85|0\n9|9|8|7|7|11|8|10|10|11|0\n11|11|10|8|8|9|13|9|10|12|12|13|0\n41|38|38|36|36|35|32|31|29|29|30|33|28|27|25|25|24|23|22|22|40|23|24|26|26|27|28|34|30|31|32|33|34|35|37|37|39|39|40|41|0\n29|26|25|25|24|23|21|21|19|19|18|16|16|17|28|17|18|20|20|22|22|23|24|27|26|27|28|29|0\n42|42|37|36|35|34|33|31|31|32|30|29|29|39|24|24|25|26|27|23|23|41|28|25|26|27|28|40|30|38|32|33|34|35|36|37|38|39|40|41|43|43|0\n60|59|59|52|50|50|51|53|49|48|47|46|45|45|55|56|44|43|42|41|40|39|38|36|36|35|34|33|32|32|58|33|34|35|37|37|38|39|40|41|42|43|44|57|46|47|48|49|54|51|52|53|54|55|56|57|58|61|60|61|0\n31|28|28|26|25|23|23|22|21|21|19|19|17|17|18|30|18|20|20|27|22|24|24|25|26|27|29|29|30|31|0\n26|25|25|23|23|24|22|21|20|20|17|17|16|16|19|18|18|19|29|21|22|28|24|27|26|27|28|29|0\n39|39|38|36|35|33|33|34|32|31|30|29|28|28|27|26|23|23|22|22|25|24|24|25|26|27|41|29|30|31|32|37|34|35|36|37|38|40|40|41|0\n53|51|49|49|48|46|46|40|39|38|38|41|35|34|34|36|33|32|32|43|44|31|30|29|28|28|52|29|30|31|45|33|37|35|36|37|42|39|40|41|42|43|44|45|47|47|48|50|50|51|52|53|0\n48|47|46|46|49|50|45|44|43|43|52|41|40|38|37|37|36|34|32|32|31|31|30|29|28|28|42|29|30|35|33|33|34|35|36|39|38|39|40|41|42|53|44|45|51|47|48|49|50|51|52|53|0\n43|42|40|39|39|38|37|37|36|34|32|32|31|30|30|29|27|26|26|25|24|24|45|25|28|27|28|29|35|31|33|33|34|35|36|44|38|41|40|41|42|43|44|45|0\n64|63|63|65|62|62|67|61|60|60|58|57|56|55|54|53|51|51|50|47|47|48|46|45|43|43|39|39|40|41|37|36|36|38|59|37|38|42|40|41|42|44|44|45|46|49|48|49|50|52|52|53|54|55|56|57|58|59|69|61|68|66|64|65|66|67|68|69|0\n16|16|14|13|11|10|10|12|15|11|12|13|14|15|17|17|0\n44|42|42|41|40|39|38|37|36|36|35|34|33|30|30|29|27|26|26|25|24|24|32|25|28|27|28|29|31|31|32|33|34|35|45|37|38|39|40|41|43|43|44|45|0\n41|39|37|36|35|35|34|33|32|30|29|28|27|26|25|25|24|23|22|22|40|23|24|31|26|27|28|29|30|31|32|33|34|38|36|37|38|39|40|41|0\n33|31|26|24|24|25|27|22|21|20|20|23|29|18|18|19|32|19|30|21|22|23|28|25|26|27|28|29|30|31|32|33|0\n41|38|38|39|40|37|35|34|34|33|32|31|30|29|28|28|26|25|24|23|23|27|24|25|26|27|43|29|30|31|32|33|36|35|36|37|42|39|40|41|42|43|0\n39|38|37|36|36|35|35|41|33|33|32|31|30|29|28|27|26|25|24|23|23|43|24|25|26|27|28|29|30|31|32|34|34|42|40|37|38|39|40|41|42|43|0\n89|84|82|81|81|80|78|76|76|77|75|74|72|71|70|69|68|67|66|66|65|64|63|63|85|86|61|59|58|58|57|55|55|54|54|53|51|49|49|48|47|47|46|46|88|52|48|50|50|51|52|53|62|56|56|57|60|59|60|61|62|87|64|65|73|67|68|69|70|71|72|73|74|75|79|77|78|79|80|83|82|83|84|85|86|87|88|89|0\n43|39|37|36|36|35|34|33|33|32|30|29|28|28|26|26|25|24|23|23|41|42|24|25|27|27|31|29|30|31|32|40|34|35|38|37|38|39|40|41|42|43|0\n31|29|27|27|28|26|26|25|23|23|22|21|20|19|18|18|33|19|20|21|22|24|24|25|32|30|28|29|30|31|32|33|0\n19|18|18|17|16|15|15|13|12|12|14|13|14|21|16|17|20|19|20|21|0\n35|32|31|30|30|29|28|26|26|25|24|23|22|21|20|19|19|34|20|21|22|23|24|25|27|27|28|29|33|31|32|33|34|35|0\n68|67|65|64|64|63|62|61|59|58|57|56|55|54|54|52|52|53|50|49|47|46|46|45|44|43|42|40|39|39|38|37|36|36|51|37|38|41|40|41|42|43|44|45|48|47|48|49|50|51|69|53|60|55|56|57|58|59|60|61|62|63|66|65|66|67|68|69|0\n25|24|24|26|22|20|20|18|18|17|16|15|15|23|16|17|19|19|21|21|22|23|27|25|26|27|0\n64|63|62|61|60|59|58|57|56|55|55|65|54|54|52|50|50|48|47|46|45|45|44|42|41|40|40|39|37|36|36|35|35|53|38|37|38|39|43|41|42|43|44|49|46|47|48|49|51|51|52|53|67|66|56|57|58|59|60|61|62|63|64|65|66|67|0\n30|29|27|26|26|24|24|25|22|20|19|19|18|17|17|23|18|21|20|21|22|23|31|25|28|27|28|29|30|31|0\n25|22|20|19|19|18|17|16|14|14|15|23|24|15|16|17|18|21|20|21|22|23|24|25|0\n61|60|60|62|58|57|56|55|53|52|50|50|49|48|48|47|45|45|44|42|41|40|40|37|36|35|34|34|38|33|33|59|39|35|36|37|38|39|43|41|42|43|44|46|46|47|54|49|51|51|52|53|54|55|56|57|58|59|63|61|62|63|0\n57|55|49|49|48|47|45|45|44|43|43|41|41|42|52|53|40|39|38|36|36|35|33|33|32|31|30|30|56|31|32|34|34|35|37|37|38|39|40|54|42|51|44|46|46|47|48|50|50|51|52|53|54|55|56|57|0\n25|23|22|21|20|20|17|17|16|15|14|14|19|15|16|18|18|19|24|21|22|23|24|25|0\n50|49|48|47|47|51|46|45|44|43|43|53|42|41|40|38|38|39|37|36|34|33|32|31|30|29|29|35|30|31|32|33|34|35|36|37|55|39|40|41|42|54|44|45|46|52|48|49|50|51|52|53|54|55|0\n60|58|57|57|59|56|55|53|51|50|50|49|44|43|41|41|42|45|46|40|39|38|36|35|35|34|34|33|32|32|54|33|48|37|36|37|38|39|40|47|42|43|44|45|46|47|48|49|52|51|52|53|54|55|56|61|58|59|60|61|0\n31|30|30|29|25|25|24|24|27|22|21|21|20|18|18|19|33|19|20|23|22|23|28|26|26|27|28|29|32|31|32|33|0\n58|57|57|56|55|53|53|52|51|50|49|48|48|60|61|46|45|45|44|43|42|41|40|39|38|36|35|35|34|33|33|63|34|37|36|37|38|39|40|41|42|43|44|47|46|47|62|49|50|51|52|54|54|55|56|59|58|59|60|61|62|63|0\n52|52|53|51|51|50|48|45|45|44|44|43|42|41|40|38|37|37|36|35|34|33|31|31|30|29|29|49|30|32|32|33|34|35|36|39|38|39|40|41|42|43|47|46|46|47|48|49|50|55|54|53|54|55|0\n37|37|38|35|32|32|30|29|29|31|28|27|26|22|22|23|21|21|25|36|24|23|24|25|26|27|28|34|30|31|33|33|34|35|36|39|38|39|0\n38|37|36|34|34|35|33|32|30|30|29|29|40|41|28|27|26|26|25|23|23|24|24|25|43|27|28|42|31|31|32|33|39|35|36|37|38|39|40|41|42|43|0\n32|32|30|28|27|27|26|24|23|23|22|20|20|19|18|18|31|19|21|21|22|25|24|25|26|29|28|29|30|31|33|33|0\n53|49|48|47|47|50|46|45|44|43|42|41|41|52|39|39|37|37|36|34|34|35|33|29|29|30|31|32|30|31|32|33|55|35|36|38|38|40|40|54|42|43|44|45|46|51|48|49|50|51|52|53|54|55|0\n18|18|16|14|13|13|12|11|11|17|12|15|14|15|16|17|19|19|0\n41|40|40|38|37|35|35|36|34|33|32|30|30|29|28|28|43|25|25|26|24|24|45|27|26|27|44|29|31|31|32|33|34|39|36|37|38|39|42|41|42|43|44|45|0\n19|16|16|14|14|13|12|11|11|18|12|13|15|15|17|17|18|19|0\n32|31|31|30|29|26|25|23|22|22|21|21|20|19|18|18|28|19|20|27|24|23|24|25|26|27|28|29|30|33|32|33|0\n26|26|22|21|21|23|20|18|18|17|16|15|15|25|16|17|19|19|20|24|22|23|24|25|27|27|0\n37|35|34|34|33|32|31|31|38|39|29|29|28|26|25|25|23|22|22|24|41|23|24|27|26|27|28|30|30|40|32|33|36|35|36|37|38|39|40|41|0\n36|36|37|35|34|33|32|31|30|30|28|27|25|25|24|23|22|21|21|29|22|23|24|26|26|27|28|29|39|31|32|33|34|35|38|37|38|39|0\n58|56|56|55|51|51|52|50|49|49|48|47|47|46|45|40|39|38|37|37|41|42|35|34|34|33|31|31|32|44|32|33|36|35|36|43|38|39|40|41|42|43|44|45|46|59|48|54|50|53|52|53|54|55|57|57|58|59|0\n15|14|14|13|12|12|17|11|11|19|18|13|16|15|16|17|18|19|0\n53|52|52|51|50|49|47|47|45|44|44|43|42|42|38|38|39|37|36|34|33|33|32|31|30|29|29|41|30|31|32|35|34|35|36|37|40|39|40|41|55|43|46|45|46|48|48|49|50|51|54|53|54|55|0\n42|41|41|39|39|37|36|36|35|34|32|32|31|30|30|44|45|29|26|26|25|25|28|47|27|27|28|29|46|31|33|33|34|35|38|37|38|40|40|43|42|43|44|45|46|47|0\n73|72|71|70|70|69|68|67|67|66|64|63|63|61|58|58|57|56|55|54|53|52|51|49|49|48|47|46|46|45|44|43|41|41|40|39|39|62|40|42|42|43|44|45|60|47|48|50|50|51|52|53|54|55|56|57|59|59|60|61|62|65|64|65|66|75|68|69|74|71|72|73|74|75|0\n23|21|20|18|17|16|15|14|14|13|13|22|19|15|16|17|18|19|20|21|22|23|0\n48|47|44|43|43|45|42|41|41|40|37|37|36|35|35|33|32|30|30|29|27|27|26|26|34|28|28|29|31|31|32|33|34|39|36|38|38|39|40|49|42|46|44|45|46|47|48|49|0\n52|51|49|49|48|48|46|45|44|42|41|39|39|40|38|36|36|35|33|33|32|31|30|29|28|28|47|29|30|31|32|34|34|35|37|37|38|43|40|41|42|43|44|45|46|47|53|50|50|51|52|53|0\n15|14|14|16|12|11|10|10|13|11|12|13|17|15|16|17|0\n64|60|60|61|62|58|58|57|56|56|55|53|52|51|51|46|46|45|43|42|42|41|40|39|39|48|37|36|35|35|34|34|50|38|36|37|38|49|40|41|44|43|44|45|47|47|48|49|50|54|52|53|54|55|65|57|59|59|63|61|62|63|64|65|0\n51|50|49|48|48|47|42|41|41|40|40|39|39|45|38|35|34|32|32|33|31|30|30|29|28|28|53|29|37|31|36|33|34|35|36|37|38|46|44|43|42|43|44|45|46|47|52|49|50|51|52|53|0\n23|23|22|21|20|19|19|16|15|15|14|14|18|17|16|17|18|25|20|21|22|24|24|25|0\n24|21|21|19|19|20|23|17|16|15|14|14|18|15|16|17|18|25|20|22|22|23|24|25|0\n26|26|24|23|22|21|20|19|18|16|16|15|15|25|17|17|18|19|20|21|22|23|24|25|27|27|0\n43|38|38|39|40|36|34|34|33|32|32|31|30|28|27|26|25|24|24|23|23|42|29|25|26|27|28|29|30|31|37|33|35|35|36|37|41|39|40|41|42|43|0\n25|23|22|21|20|19|16|15|15|17|14|14|24|18|16|17|18|19|20|21|22|23|24|25|0\n34|33|33|31|30|28|26|25|25|24|23|23|22|21|20|19|19|32|20|21|22|29|24|27|26|27|28|29|30|31|32|35|34|35|0\n66|62|62|61|60|58|58|57|57|64|55|55|54|52|52|51|50|48|48|47|45|45|43|42|41|41|40|39|37|37|36|35|35|67|36|38|38|39|40|44|42|43|44|46|46|47|49|49|50|51|53|53|54|56|56|65|59|59|60|61|63|63|64|65|66|67|0\n40|39|39|38|37|34|34|35|33|32|31|31|42|43|29|28|27|27|26|25|24|24|45|25|26|30|28|29|30|44|32|33|36|35|36|37|38|41|40|41|42|43|44|45|0\n42|42|40|40|38|37|37|36|34|34|33|32|32|44|45|30|29|29|28|26|26|25|25|47|27|27|28|31|30|31|46|33|35|35|36|39|38|39|41|41|43|43|44|45|46|47|0\n50|49|49|48|44|43|43|45|46|42|40|38|37|37|36|34|33|33|32|30|29|29|28|27|27|41|28|31|30|31|32|35|34|35|36|39|38|39|40|41|42|47|44|45|46|47|48|51|50|51|0\n38|37|36|36|35|34|33|31|30|30|29|27|27|28|40|41|25|25|24|23|23|43|24|26|26|42|28|29|32|31|32|33|34|35|39|37|38|39|40|41|42|43|0\n37|36|36|35|33|32|32|31|31|29|28|27|26|25|24|23|22|21|21|30|22|23|24|25|26|27|28|29|30|39|34|33|34|35|38|37|38|39|0\n22|21|21|19|18|18|16|15|14|13|13|17|14|15|16|17|20|19|20|23|22|23|0\n21|21|22|20|20|24|18|17|16|15|14|14|19|15|16|17|18|19|25|23|22|23|24|25|0\n40|40|35|34|33|33|36|37|32|31|30|28|28|26|25|24|24|23|22|22|39|23|27|25|26|27|29|29|30|31|32|38|34|35|36|37|38|39|41|41|0\n9|6|6|7|8|7|8|9|0\n90|89|88|88|87|86|85|84|82|79|77|77|78|80|74|73|73|75|72|71|70|69|67|66|64|64|65|63|54|54|55|53|52|52|57|49|48|48|50|47|47|59|60|61|62|83|51|49|50|51|58|53|56|55|56|57|58|59|60|61|62|63|68|65|66|67|68|69|70|71|72|76|74|75|76|81|78|79|80|81|82|83|84|85|86|87|91|89|90|91|0\n70|67|65|64|64|66|68|63|62|61|60|60|58|56|55|55|54|51|51|50|49|48|46|45|45|47|44|42|41|41|40|39|38|37|37|59|38|39|40|43|42|43|44|53|46|47|48|49|50|52|52|53|54|57|56|57|58|59|71|61|62|63|69|65|66|67|68|69|70|71|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n35|33|31|30|30|29|26|25|25|27|24|23|22|21|20|19|19|34|20|21|22|23|24|28|26|27|28|29|32|31|32|33|34|35|0\n67|64|64|63|62|61|60|59|57|56|55|55|54|51|51|50|50|49|48|47|46|45|44|42|41|41|40|38|38|37|36|35|35|66|36|37|39|39|40|43|42|43|44|45|46|47|48|49|53|52|52|53|54|58|56|57|58|59|60|61|62|63|65|65|66|67|0\n35|33|31|29|29|30|28|25|24|24|26|23|22|21|20|19|19|34|20|21|22|23|27|25|26|27|28|32|30|31|32|33|34|35|0\n18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0\n47|45|41|40|40|39|38|37|36|36|35|33|31|30|30|29|28|28|34|26|26|25|25|46|27|27|44|29|32|31|32|33|34|35|43|37|38|39|42|41|42|43|44|45|46|47|0\n42|40|39|39|38|37|36|35|34|33|33|31|28|26|26|27|29|25|24|23|23|32|24|25|30|27|28|29|30|31|32|43|34|35|36|37|38|41|40|41|42|43|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n49|48|43|43|44|42|41|39|39|38|37|35|35|34|32|31|31|30|29|29|28|27|26|26|47|27|28|46|30|33|32|33|34|36|36|37|38|40|40|41|42|45|44|45|46|47|48|49|0\n17|16|16|15|14|13|11|11|12|19|12|13|14|15|18|17|18|19|0\n12|9|9|10|11|8|8|13|10|11|12|13|0\n67|65|64|60|57|54|54|55|53|52|51|50|49|49|48|48|47|46|45|45|61|62|44|42|40|38|38|39|37|37|36|35|35|66|36|43|41|39|40|41|42|43|44|63|46|47|59|58|50|51|52|53|56|55|56|57|58|59|60|61|62|63|64|65|66|67|0\n53|52|52|51|49|49|48|47|46|45|45|44|43|43|42|40|39|38|38|37|36|35|34|33|32|31|30|30|57|31|32|33|34|35|36|37|41|39|40|41|42|56|44|55|46|47|48|50|50|51|54|53|54|55|56|57|0\n40|39|38|38|41|37|36|36|33|32|31|31|30|27|27|26|24|23|23|25|29|35|24|25|26|28|28|29|30|34|32|33|34|35|43|37|42|39|40|41|42|43|0\n72|71|68|67|66|65|65|64|63|63|61|61|60|58|57|57|55|55|54|53|53|52|50|49|49|46|46|45|43|42|42|41|40|39|38|38|48|39|40|41|44|43|44|45|47|47|48|51|50|51|52|73|54|56|56|59|58|59|60|62|62|70|64|69|66|67|68|69|70|71|72|73|0\n13|12|12|10|10|9|9|15|11|11|14|13|14|15|0\n81|80|80|79|76|74|74|75|73|71|70|70|72|69|68|66|65|63|63|62|62|61|57|56|54|53|53|52|52|58|59|51|50|50|49|47|45|45|44|43|43|48|44|46|46|47|48|49|83|51|60|55|54|55|56|57|58|59|60|61|67|64|64|65|66|67|68|69|78|71|72|73|77|75|76|77|78|79|82|81|82|83|0\n38|38|37|36|34|34|33|32|31|30|29|28|27|25|25|24|22|22|21|21|23|23|24|26|26|27|28|29|30|31|32|33|35|35|36|37|39|39|0\n7|7|6|6|9|8|8|9|0\n54|53|53|55|52|51|51|50|47|46|44|44|43|42|41|39|39|38|38|37|36|35|34|33|32|30|30|31|49|31|32|33|34|35|36|37|48|40|40|41|42|43|45|45|46|47|48|49|50|57|52|56|54|55|56|57|0\n38|37|37|35|33|33|32|30|30|29|28|26|25|25|24|22|22|21|21|36|23|23|24|27|26|27|28|29|31|31|32|34|34|35|36|39|38|39|0\n8|7|7|6|6|9|8|9|0\n40|40|38|36|34|32|32|31|31|30|29|29|28|27|26|24|24|23|22|22|39|23|25|25|26|27|28|37|30|35|33|33|34|35|36|37|38|39|41|41|0\n10|9|9|7|7|8|8|11|10|11|0\n61|59|58|57|56|55|54|54|53|52|51|51|62|63|49|49|47|46|45|45|44|42|41|40|40|39|38|35|35|36|34|34|65|37|36|37|38|39|43|41|42|43|44|48|46|47|48|50|50|64|52|53|60|55|56|57|58|59|60|61|62|63|64|65|0\n10|10|9|9|8|8|13|12|11|11|12|13|0\n24|23|23|21|20|18|17|17|16|15|14|14|22|15|16|19|18|19|20|21|22|25|24|25|0\n47|44|43|43|42|39|38|37|37|40|36|35|34|33|31|31|29|28|28|27|25|25|26|46|26|27|30|29|30|32|32|33|34|35|36|41|38|39|40|41|42|45|44|45|46|47|0\n38|38|33|33|32|32|35|31|31|37|30|29|29|27|26|25|24|23|22|22|28|23|24|25|26|27|28|41|30|40|36|34|34|35|36|37|39|39|40|41|0\n41|38|36|36|35|34|34|39|40|42|43|33|32|31|29|29|28|27|25|25|24|24|45|26|26|27|28|30|30|31|32|33|44|35|37|37|38|39|40|41|42|43|44|45|0\n12|12|10|8|8|9|11|9|10|11|13|13|0\n19|19|17|17|18|21|15|15|14|13|13|23|14|16|16|22|18|20|20|21|22|23|0\n42|41|41|43|40|39|37|37|36|35|34|34|32|31|30|29|28|27|26|25|24|24|33|25|26|27|28|29|30|31|32|33|45|35|36|38|38|39|40|44|42|43|44|45|0\n33|33|32|30|30|29|28|27|27|25|23|22|21|21|20|19|19|26|20|24|22|23|24|25|26|35|28|29|31|31|32|34|34|35|0\n32|32|29|28|27|26|24|23|23|22|20|20|19|18|18|30|31|19|21|21|22|25|24|25|26|27|28|29|30|31|33|33|0\n12|11|9|9|10|8|8|13|10|11|12|13|0\n36|34|33|33|35|31|30|28|27|26|26|25|23|22|22|21|20|20|32|21|24|23|24|25|29|27|28|29|30|31|32|37|34|35|36|37|0\n35|35|34|33|33|32|30|30|28|26|24|23|23|25|22|21|20|20|29|21|22|27|24|25|26|27|28|29|31|31|32|37|34|36|36|37|0\n50|48|48|47|46|40|39|39|41|42|43|44|38|37|37|36|35|33|32|28|28|29|30|27|27|34|31|29|30|31|32|33|34|35|36|51|38|45|40|41|42|43|44|45|46|47|49|49|50|51|0\n31|28|27|27|26|25|24|22|21|21|20|19|18|17|17|30|18|19|20|23|22|23|24|25|26|29|28|29|30|31|0\n41|40|39|37|36|34|34|33|32|31|30|29|28|27|26|24|23|23|22|22|38|25|24|25|26|27|28|29|30|31|32|33|35|35|36|37|38|39|40|41|0\n55|52|52|50|46|46|44|44|43|43|48|42|42|41|39|38|36|35|35|37|34|32|32|31|29|29|30|54|30|31|33|33|34|40|36|37|38|39|40|41|51|49|45|45|47|47|48|49|50|51|53|53|54|55|0\n62|61|60|59|58|57|57|53|52|51|50|50|49|47|45|45|46|44|43|41|41|42|37|36|36|38|39|35|34|33|33|56|34|35|40|37|38|39|40|55|42|43|44|48|46|47|48|49|54|51|52|53|54|55|56|63|58|59|60|61|62|63|0\n41|41|42|43|40|39|38|37|33|32|32|31|30|30|35|29|28|26|24|24|25|27|45|25|26|27|28|29|36|31|34|33|34|35|36|37|38|39|40|44|42|43|44|45|0\n26|25|24|22|22|21|20|20|19|18|16|15|15|17|16|17|18|19|27|21|23|23|24|25|26|27|0\n51|46|44|43|43|42|41|41|47|48|40|36|35|34|34|33|32|31|31|38|30|29|28|27|27|50|28|29|30|39|32|33|37|35|36|37|38|39|40|49|42|45|44|45|46|47|48|49|50|51|0\n51|50|49|48|48|47|46|45|44|42|42|41|40|39|39|38|37|33|32|31|30|29|29|34|28|28|36|35|30|31|32|33|34|35|36|37|38|53|40|41|43|43|44|45|46|47|52|49|50|51|52|53|0\n77|74|74|72|71|62|62|63|61|61|65|60|59|59|67|58|58|69|57|57|56|55|52|51|51|50|47|46|46|48|45|44|43|42|40|40|41|54|76|41|42|43|44|45|49|47|48|49|50|53|52|53|54|55|56|73|70|68|60|66|64|63|64|65|66|67|68|69|70|71|72|73|75|75|76|77|0\n31|28|28|27|26|25|24|22|21|21|19|19|18|17|17|30|18|20|20|23|22|23|24|25|26|27|29|29|30|31|0\n10|8|7|7|9|11|8|9|10|11|0\n15|14|14|13|11|11|10|10|17|12|12|13|16|15|16|17|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n12|12|10|8|8|9|11|9|10|11|13|13|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n34|34|35|32|32|31|27|27|26|26|29|22|22|23|21|21|20|20|37|25|24|23|24|25|30|28|28|29|30|31|33|33|36|35|36|37|0\n33|31|30|28|27|27|26|25|23|22|21|21|20|19|18|18|32|19|20|24|22|23|24|25|26|29|28|29|30|31|32|33|0\n44|44|45|43|43|41|39|38|37|36|36|35|34|33|31|30|29|29|28|26|25|25|27|42|26|27|28|32|30|31|32|33|34|35|40|37|38|39|40|41|42|47|46|45|46|47|0\n64|63|60|60|61|62|58|55|55|56|54|53|50|48|47|47|46|45|45|51|41|41|40|39|38|38|43|37|36|35|34|34|59|35|36|37|44|39|40|42|42|43|44|52|46|49|48|49|50|51|52|53|54|57|56|57|58|59|65|61|62|63|64|65|0\n33|33|32|32|31|30|29|28|26|22|22|23|24|21|21|20|19|19|20|27|25|23|24|25|26|27|28|29|30|31|35|34|34|35|0\n44|44|42|42|38|37|37|39|40|36|35|35|46|47|34|32|32|31|30|29|28|27|26|26|49|27|28|29|30|31|33|33|34|48|36|41|38|39|40|41|43|43|45|45|46|47|48|49|0\n42|41|39|39|38|37|36|35|35|43|34|33|31|31|29|29|28|27|26|25|24|24|45|25|26|27|28|30|30|32|32|33|34|44|36|37|38|40|40|41|42|43|44|45|0\n43|41|41|39|39|38|33|33|34|32|31|30|29|29|36|28|26|25|25|24|23|23|24|27|26|27|28|37|30|31|32|35|34|35|36|37|38|40|40|42|42|43|0\n41|41|40|39|38|38|37|35|34|33|32|31|25|25|26|24|23|23|28|29|30|36|24|27|26|27|28|29|30|31|32|33|34|35|36|37|43|39|40|42|42|43|0\n57|56|56|55|53|52|52|51|49|49|48|47|46|43|42|42|44|41|41|39|38|36|35|35|34|33|32|31|31|40|32|33|34|37|36|37|38|39|40|59|45|43|44|45|46|47|48|50|50|51|54|53|54|55|58|57|58|59|0\n78|77|75|74|73|73|72|71|70|69|66|66|67|65|64|62|61|61|60|59|59|58|56|56|53|52|51|51|50|48|46|46|45|44|43|43|42|41|41|55|42|49|44|45|47|47|48|49|50|54|52|53|54|55|57|57|58|79|60|63|62|63|64|65|68|67|68|69|70|71|72|76|74|75|76|77|78|79|0\n41|39|39|37|36|35|34|33|33|32|31|30|30|42|43|29|27|27|24|24|25|26|45|25|26|28|28|29|44|31|32|38|34|35|36|37|38|40|40|41|42|43|44|45|0\n14|14|12|12|11|9|9|10|10|11|13|13|15|15|0\n65|64|64|61|61|62|60|59|58|56|56|55|53|53|52|51|50|49|48|47|44|44|42|41|41|40|40|39|38|38|37|36|35|35|36|37|67|39|46|43|42|43|45|45|46|47|48|49|50|51|52|54|54|55|57|57|58|59|60|63|62|63|66|65|66|67|0\n39|39|38|37|37|34|33|33|32|31|30|29|28|27|26|24|24|23|22|22|36|23|25|25|26|27|28|29|30|31|32|35|34|35|36|41|38|40|40|41|0\n80|80|76|74|74|75|77|73|70|69|69|71|67|66|64|64|63|61|61|60|58|58|59|57|56|55|53|51|51|50|49|49|48|46|45|45|44|43|42|42|79|43|44|47|46|47|48|54|50|52|52|53|54|55|56|57|68|59|60|62|62|63|65|65|66|67|68|72|70|71|72|73|78|75|76|77|78|79|81|81|0\n42|41|41|39|36|36|35|35|33|32|32|30|30|28|27|27|25|25|24|23|23|40|24|26|26|29|28|29|31|31|34|33|34|38|37|37|38|39|40|43|42|43|0\n10|9|8|7|7|11|8|9|10|11|0\n30|29|29|31|26|26|27|24|23|22|22|21|20|18|18|19|33|19|20|21|25|23|24|25|28|27|28|32|30|31|32|33|0\n41|40|40|39|38|38|36|35|32|32|33|31|30|28|26|26|27|25|24|23|23|37|24|25|29|27|28|29|30|31|34|33|34|35|36|37|43|39|42|41|42|43|0\n44|43|41|41|40|39|39|38|36|35|34|30|30|31|29|29|33|27|26|24|24|25|28|25|26|27|28|37|32|31|32|33|34|35|36|37|38|45|40|42|42|43|44|45|0\n31|29|27|26|26|25|24|22|21|21|20|19|18|17|17|30|18|19|20|23|22|23|24|25|28|27|28|29|30|31|0\n12|10|9|8|8|11|13|9|10|11|12|13|0\n45|42|42|40|40|39|37|37|35|34|33|33|32|30|29|29|28|26|26|25|24|24|44|25|27|27|28|31|30|31|32|36|34|35|36|38|38|39|41|41|43|43|44|45|0\n22|21|20|19|19|18|17|14|13|13|15|16|14|15|16|17|18|23|20|21|22|23|0\n22|21|20|19|19|18|17|15|15|14|13|13|14|16|16|17|18|23|20|21|22|23|0\n55|55|56|57|54|52|52|51|50|49|48|47|46|46|45|44|42|39|39|38|37|36|36|35|34|33|31|31|32|43|32|33|34|35|41|37|38|40|40|41|42|43|44|45|59|47|48|49|50|51|53|53|54|58|56|57|58|59|0\n36|36|35|32|32|30|30|29|29|28|27|25|23|22|22|21|20|20|26|21|24|23|24|25|26|27|28|34|31|31|33|33|34|35|37|37|0\n31|30|30|32|28|24|24|25|26|22|21|20|20|19|18|18|29|19|23|21|22|23|27|25|26|27|28|29|33|31|32|33|0\n26|23|23|24|22|21|21|17|17|18|15|15|16|20|16|19|18|19|20|27|22|25|24|25|26|27|0\n16|15|15|12|11|10|10|13|14|11|12|13|14|17|16|17|0\n17|15|15|14|12|12|10|10|11|11|13|13|14|16|16|17|0\n38|36|36|35|34|34|39|32|32|31|24|24|25|26|23|23|28|29|22|22|41|30|27|25|26|27|28|29|30|31|33|33|40|35|37|37|38|39|40|41|0\n33|32|30|29|29|28|27|26|25|25|34|35|24|23|22|21|20|20|37|21|22|23|24|36|26|27|28|31|30|31|32|33|34|35|36|37|0\n41|39|38|36|34|34|35|33|33|32|31|29|26|26|25|24|24|23|22|22|30|23|28|25|27|27|28|29|30|31|32|40|37|35|36|37|38|39|40|41|0\n5|4|4|5|0\n8|7|6|6|9|7|8|9|0\n36|35|34|33|32|31|30|29|28|27|26|26|25|23|23|21|20|20|22|21|22|24|24|25|37|27|28|29|30|31|32|33|34|35|36|37|0\n35|33|32|31|29|29|28|26|25|25|24|22|21|21|20|19|19|34|20|23|22|23|24|27|26|27|28|30|30|31|32|33|34|35|0\n25|20|18|18|19|21|17|17|16|14|14|15|24|15|16|23|22|19|20|21|22|23|24|25|0\n44|44|40|38|38|37|36|36|41|35|32|31|31|33|29|28|27|26|26|25|24|24|43|25|30|27|28|29|30|34|32|33|34|35|42|37|39|39|40|41|42|43|45|45|0\n74|73|73|72|67|66|65|63|62|62|61|60|59|59|68|69|57|57|56|53|52|52|54|51|46|45|45|47|44|43|43|49|41|40|40|39|39|71|42|41|42|50|44|48|46|47|48|49|50|51|55|53|54|55|56|58|58|70|60|61|64|63|64|65|66|67|68|69|70|71|72|75|74|75|0\n52|51|51|50|48|48|46|46|45|44|40|40|39|38|38|42|37|36|35|32|32|33|31|30|29|28|28|29|30|31|34|33|34|35|36|37|43|39|41|41|42|43|44|45|47|47|49|49|50|53|52|53|0\n44|43|41|41|40|39|39|35|35|36|34|33|32|31|29|29|28|27|26|25|24|24|38|25|26|27|28|30|30|31|32|33|34|37|36|37|38|45|40|42|42|43|44|45|0\n44|43|41|40|39|38|38|37|37|36|35|33|32|31|29|28|27|27|26|25|24|24|34|25|26|30|28|29|30|31|32|33|34|35|36|45|42|39|40|41|42|43|44|45|0\n38|31|31|30|30|29|27|27|26|24|24|25|34|35|36|23|22|21|21|39|22|23|37|25|26|28|28|29|33|32|32|33|34|35|36|37|38|39|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n28|27|27|26|25|24|24|30|31|22|21|21|20|18|18|19|33|19|20|23|22|23|32|25|26|29|28|29|30|31|32|33|0\n15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0\n48|47|46|45|45|43|42|41|40|35|34|34|36|33|33|38|31|30|29|27|27|28|26|26|44|32|28|29|30|31|32|39|37|35|36|37|38|39|40|41|42|43|44|49|46|47|48|49|0\n26|25|25|23|21|21|20|18|18|17|15|15|16|24|16|17|19|19|20|22|22|23|24|27|26|27|0\n35|34|34|33|30|29|29|31|28|27|25|24|24|23|22|21|20|20|37|21|22|23|26|25|26|27|28|32|30|31|32|33|36|35|36|37|0\n11|8|8|9|7|7|10|9|10|11|0\n23|23|22|20|20|19|17|17|15|15|14|14|25|16|16|18|18|19|21|21|22|24|24|25|0\n38|37|35|35|34|33|32|32|31|30|27|27|25|23|23|24|22|21|21|29|22|26|24|25|26|28|28|29|30|31|39|33|34|36|36|37|38|39|0\n39|38|36|36|37|35|34|32|31|31|28|28|27|26|26|30|24|23|22|22|25|23|24|25|41|27|29|29|30|33|32|33|34|35|40|37|38|39|40|41|0\n23|21|21|20|19|19|18|17|16|15|14|14|25|15|16|17|18|24|20|22|22|23|24|25|0\n38|38|39|34|33|32|32|35|36|30|29|29|28|26|25|24|23|23|22|22|41|27|24|25|26|27|28|31|30|31|37|33|34|35|36|37|40|39|40|41|0\n18|16|15|14|13|12|12|17|11|11|19|13|14|15|16|17|18|19|0\n87|83|71|70|69|68|68|72|67|66|65|64|64|74|63|63|76|62|62|78|61|60|60|80|81|59|59|84|58|57|56|55|54|52|51|50|49|49|48|47|45|45|46|86|46|47|48|53|50|51|52|53|54|55|56|57|58|85|82|61|79|77|75|65|66|67|73|69|70|71|72|73|74|75|76|77|78|79|80|81|82|83|84|85|86|87|0\n61|60|60|59|54|54|55|56|57|53|53|51|48|48|47|45|44|43|42|41|41|46|40|39|37|36|35|35|34|33|33|52|34|38|36|37|38|39|40|50|42|43|44|45|46|47|49|49|50|51|52|63|58|55|56|57|58|59|62|61|62|63|0\n8|7|6|6|9|7|8|9|0\n47|45|45|44|42|42|43|41|38|38|39|37|36|35|35|33|32|30|29|29|28|27|26|26|34|27|28|31|30|31|32|33|34|49|36|37|40|39|40|41|48|43|44|46|46|47|48|49|0\n46|42|41|41|40|39|39|44|37|36|36|35|34|34|33|31|31|28|28|27|26|25|25|30|26|27|29|29|30|32|32|33|47|35|38|37|38|45|40|43|42|43|44|45|46|47|0\n23|20|20|19|18|16|14|14|15|13|13|22|17|15|16|17|18|19|21|21|22|23|0\n26|25|25|24|21|21|22|20|20|28|29|18|18|17|17|31|19|19|30|23|22|23|24|27|26|27|28|29|30|31|0\n39|39|38|36|36|35|34|34|29|28|27|26|25|25|30|31|24|23|22|22|33|23|24|32|26|27|28|29|30|31|32|33|41|35|37|37|38|40|40|41|0\n8|8|9|7|7|11|10|9|10|11|0\n48|48|49|47|46|45|42|42|43|44|51|41|39|38|38|37|34|33|32|32|35|31|30|30|28|28|29|29|53|31|36|33|34|35|36|37|40|39|40|41|52|43|44|45|46|47|50|49|50|51|52|53|0\n21|20|20|22|18|14|14|15|16|13|13|19|17|15|16|17|18|19|23|21|22|23|0\n70|69|66|66|67|64|64|63|63|62|60|58|58|57|56|55|54|54|53|51|51|49|47|46|46|45|44|43|42|41|39|39|38|37|37|50|38|40|40|41|42|43|44|45|48|47|48|49|50|52|52|53|61|55|56|57|59|59|60|61|62|71|65|65|68|67|68|69|70|71|0\n34|33|32|31|31|30|29|27|25|24|24|23|22|21|20|19|19|28|20|21|22|23|26|25|26|27|28|29|30|35|32|33|34|35|0\n20|20|18|16|15|15|14|13|12|12|19|13|14|17|16|17|18|19|21|21|0\n28|26|25|25|24|23|23|22|20|20|17|17|16|16|19|18|18|19|21|21|22|29|24|27|26|27|28|29|0\n43|42|41|41|40|38|37|37|36|34|33|33|32|31|30|29|27|26|26|25|24|24|45|25|28|27|28|29|30|31|32|35|34|35|36|39|38|39|40|44|42|43|44|45|0\n48|47|47|44|44|45|43|42|41|40|39|38|37|37|50|51|34|34|33|33|32|31|30|29|28|28|53|29|30|31|32|36|35|35|36|52|38|39|40|41|42|43|46|45|46|49|48|49|50|51|52|53|0\n34|33|32|32|31|28|27|27|26|26|25|23|22|21|20|19|19|24|20|21|22|23|24|25|30|29|28|29|30|31|35|33|34|35|0\n10|10|8|7|7|9|8|9|11|11|0\n29|27|25|24|24|23|22|20|20|19|18|17|16|16|28|17|18|19|21|21|22|23|26|25|26|27|28|29|0\n42|42|41|40|34|33|32|30|29|29|31|35|27|26|26|28|37|25|24|23|23|39|24|25|38|27|28|36|30|31|32|33|34|35|36|37|38|39|40|41|43|43|0\n58|57|57|59|55|55|54|54|52|50|49|49|48|46|43|43|44|45|42|40|39|39|38|37|35|34|34|33|32|32|53|33|36|35|36|37|38|41|40|41|42|47|44|45|46|47|48|51|50|51|52|53|61|56|56|60|58|59|60|61|0\n45|43|43|42|41|40|40|46|47|39|38|37|36|35|34|31|31|32|30|29|28|27|26|26|49|27|28|29|30|33|32|33|34|35|36|37|38|39|48|41|42|44|44|45|46|47|48|49|0\n37|33|33|34|32|31|30|29|28|26|26|25|24|22|22|20|20|21|36|21|23|23|24|25|27|27|28|29|30|31|32|35|34|35|36|37|0\n28|27|25|25|24|24|23|21|21|18|18|17|16|16|20|17|19|19|20|22|22|23|29|26|26|27|28|29|0\n93|86|85|85|84|83|82|81|81|88|78|77|77|76|76|75|73|72|72|71|69|69|68|68|90|67|66|65|63|62|61|60|59|59|58|57|56|54|54|52|51|51|49|49|48|48|92|50|50|53|52|53|55|55|56|57|58|64|60|61|62|63|64|65|66|67|91|70|70|71|74|73|74|75|80|79|78|79|80|89|82|83|84|87|86|87|88|89|90|91|92|93|0\n17|13|12|11|11|14|10|10|16|15|12|13|14|15|16|17|0\n34|33|33|31|29|29|28|26|25|25|24|23|22|21|20|19|19|32|20|21|22|23|24|27|26|27|28|30|30|31|32|35|34|35|0\n19|17|17|14|14|13|12|11|11|16|12|13|15|15|16|18|18|19|0\n51|51|49|48|48|47|47|53|44|43|42|41|40|39|39|45|38|34|34|33|31|31|32|36|30|29|29|55|30|37|32|33|35|35|36|37|38|46|40|41|42|43|44|45|46|54|50|49|50|52|52|53|54|55|0\n60|59|58|58|57|52|50|50|49|45|45|44|44|47|39|39|40|38|38|42|43|53|54|36|36|35|34|33|32|32|56|33|34|35|37|37|55|41|40|41|42|43|48|46|46|47|48|49|51|51|52|53|54|55|56|57|61|59|60|61|0\n48|47|46|45|45|49|44|41|40|40|39|37|37|38|36|35|34|33|33|51|29|29|30|31|28|28|53|32|30|31|32|52|34|35|36|43|38|39|42|41|42|43|44|50|46|47|48|49|50|51|52|53|0\n41|40|39|38|35|34|34|33|32|28|27|27|26|25|25|30|23|22|22|24|37|23|24|31|26|29|28|29|30|31|32|33|36|35|36|37|38|39|40|41|0\n42|41|40|39|38|37|36|35|33|33|32|31|31|30|26|24|24|25|27|23|23|29|28|25|26|27|28|29|30|43|32|34|34|35|36|37|38|39|40|41|42|43|0\n23|21|19|18|17|16|16|15|14|13|13|22|14|15|20|17|18|19|20|21|22|23|0\n40|40|38|35|34|34|33|32|31|30|30|29|28|27|25|25|24|23|22|22|39|23|24|26|26|27|28|29|37|31|32|33|36|35|36|37|38|39|41|41|0\n31|31|25|24|24|26|23|23|28|22|22|21|19|19|18|18|33|20|20|21|30|29|27|25|26|27|28|29|30|32|32|33|0\n53|51|50|49|43|42|41|41|40|39|38|38|37|35|35|36|46|47|31|31|30|30|33|29|28|28|52|29|34|32|32|33|34|48|36|37|45|39|40|44|42|43|44|45|46|47|48|49|50|51|52|53|0\n14|13|12|11|11|15|10|10|17|16|12|13|14|15|16|17|0\n51|51|52|50|48|48|47|46|46|54|55|45|44|42|41|41|40|39|36|34|34|35|33|32|32|31|30|30|57|31|38|33|37|35|36|37|38|39|40|43|42|43|44|45|56|47|49|49|50|53|52|53|54|55|56|57|0\n24|24|22|20|20|19|18|17|16|15|14|14|23|15|16|17|18|19|21|21|22|23|25|25|0\n23|23|22|17|17|18|16|16|20|15|14|14|25|15|21|19|18|19|20|21|22|24|24|25|0\n31|31|32|30|28|27|27|25|24|23|21|20|19|19|18|18|26|22|20|21|22|23|24|25|26|29|28|29|30|33|32|33|0\n21|20|18|18|17|16|16|22|23|15|14|14|25|15|24|17|19|19|20|21|22|23|24|25|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n35|34|34|33|28|28|29|27|27|31|26|26|24|22|22|21|20|20|25|21|23|23|24|25|37|32|30|29|30|31|32|33|36|35|36|37|0\n19|18|17|16|14|14|13|12|11|11|12|13|15|15|16|17|18|19|0\n58|57|57|51|50|49|49|52|48|45|45|46|47|54|44|43|42|41|40|39|37|36|36|35|33|32|32|31|31|56|34|33|34|35|38|37|38|39|40|41|42|43|44|55|46|47|48|53|50|51|52|53|54|55|56|59|58|59|0\n49|48|47|46|44|44|43|41|40|39|39|37|37|38|50|51|36|34|33|32|31|31|30|29|28|28|53|29|30|35|32|33|34|35|36|52|38|42|40|41|42|43|45|45|46|47|48|49|50|51|52|53|0\n38|37|36|35|34|33|32|32|31|30|28|27|26|25|24|23|22|21|21|29|22|23|24|25|26|27|28|29|30|31|39|33|34|35|36|37|38|39|0\n28|27|26|25|24|20|20|21|19|19|18|17|16|16|29|17|18|23|22|21|22|23|24|25|26|27|28|29|0\n33|32|30|29|27|26|26|25|23|23|19|19|20|18|18|22|31|21|20|21|22|24|24|25|28|27|28|29|30|31|32|33|0\n58|57|55|54|50|50|51|52|48|47|47|46|45|45|44|43|42|42|41|40|38|35|34|33|33|36|32|31|31|39|32|37|34|35|36|37|38|39|40|41|59|43|44|56|46|49|48|49|53|51|52|53|54|55|56|57|58|59|0\n85|84|83|83|86|82|81|77|76|75|75|74|73|73|79|71|70|70|69|68|68|88|64|64|62|62|61|59|59|58|57|56|54|54|52|52|50|50|49|48|47|46|46|66|67|47|48|49|51|51|53|53|55|55|56|57|58|60|60|61|63|63|65|65|66|67|89|69|72|71|72|80|74|78|76|77|78|79|80|81|82|87|84|85|86|87|88|89|0\n17|15|12|11|11|10|10|14|16|13|12|13|14|15|16|17|0\n27|26|25|25|24|23|22|20|20|21|17|17|16|16|19|18|18|19|29|21|22|23|24|28|26|27|28|29|0\n23|22|20|19|17|17|16|15|13|13|14|21|14|15|16|18|18|19|20|21|22|23|0\n53|52|50|49|48|47|47|46|45|44|41|41|40|40|39|38|37|37|54|55|36|35|33|32|32|31|30|30|57|31|34|33|34|35|36|56|38|39|43|42|42|43|44|45|46|51|48|49|50|51|52|53|54|55|56|57|0\n25|24|23|21|20|19|14|14|15|16|17|18|22|15|16|17|18|19|20|21|22|23|24|25|0\n32|32|27|26|25|25|24|23|22|21|21|29|19|19|18|18|31|20|20|30|22|23|24|28|26|27|28|29|30|31|33|33|0\n52|52|50|49|45|45|44|37|36|36|38|35|34|33|32|32|40|41|42|31|30|30|47|29|28|28|51|29|48|31|43|33|34|35|39|37|38|39|40|41|42|43|44|46|46|47|48|49|50|51|53|53|0\n66|66|63|63|62|60|59|57|57|58|56|56|55|53|50|48|48|49|51|47|46|44|44|43|39|39|40|38|38|37|36|35|35|54|36|37|42|41|40|41|42|43|45|45|46|47|52|49|50|51|52|53|54|55|65|61|58|59|60|61|62|64|64|65|67|67|0\n53|53|52|50|49|49|48|47|46|43|42|42|44|41|37|37|38|39|36|36|34|33|32|30|30|29|29|35|31|31|32|33|34|35|55|40|38|39|40|41|45|43|44|45|46|47|48|51|50|51|52|54|54|55|0\n55|55|54|54|49|49|48|46|46|45|45|51|43|42|42|41|40|39|37|37|36|35|34|32|31|31|30|30|53|33|32|33|34|35|36|38|38|39|40|41|44|43|44|52|47|47|48|50|50|51|52|53|57|56|56|57|0\n36|36|34|33|33|32|31|31|38|39|30|29|27|26|24|24|25|23|22|22|41|23|28|25|26|27|28|29|30|40|32|35|34|35|37|37|38|39|40|41|0\n27|27|26|25|24|24|29|22|22|21|21|31|20|19|18|18|33|19|20|32|23|23|30|25|26|28|28|29|30|31|32|33|0\n62|62|61|59|58|58|57|56|56|64|65|55|54|53|51|50|50|49|48|47|45|45|44|43|41|40|39|37|37|38|36|35|35|67|36|42|38|39|40|41|42|43|44|46|46|47|48|49|52|51|52|53|54|55|66|57|60|59|60|61|63|63|64|65|66|67|0\n20|20|18|14|13|13|15|16|12|12|19|17|14|15|16|17|18|19|21|21|0\n21|19|18|17|15|13|13|14|12|12|20|16|14|15|16|17|18|19|20|21|0\n24|24|21|20|19|19|18|16|15|15|14|14|23|17|16|17|18|22|20|21|22|23|25|25|0\n23|21|20|18|17|16|16|15|14|13|13|22|14|15|19|17|18|19|20|21|22|23|0\n68|67|65|65|64|62|62|63|61|59|52|52|51|50|50|54|49|49|56|57|47|47|46|44|43|41|40|40|39|39|38|37|36|36|60|37|38|45|42|41|42|43|44|45|46|48|48|58|55|51|53|53|54|55|56|57|58|59|60|61|69|63|64|66|66|67|68|69|0\n49|42|41|41|43|39|39|40|45|38|37|36|36|47|35|35|34|33|31|31|30|29|28|27|27|51|28|29|30|32|32|33|34|50|48|37|38|46|40|44|42|43|44|45|46|47|48|49|50|51|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n57|56|55|51|51|50|49|49|48|47|46|45|41|41|39|39|38|38|43|36|35|35|34|32|31|31|30|30|54|33|32|33|34|37|36|37|44|40|40|42|42|43|44|45|46|47|48|53|50|52|52|53|54|55|56|57|0\n39|38|37|35|33|33|32|30|30|29|27|26|25|25|24|23|22|21|21|36|22|23|24|28|26|27|28|29|31|31|32|34|34|35|36|37|38|39|0\n86|85|84|83|82|81|75|75|76|74|73|73|72|67|67|68|69|66|66|71|79|63|63|64|61|59|58|58|60|57|55|55|54|53|53|52|51|49|47|46|46|45|45|50|48|47|48|49|50|51|52|87|54|56|56|57|62|59|60|61|62|65|64|65|80|70|68|69|70|71|72|78|74|77|76|77|78|79|80|81|82|83|84|85|86|87|0\n77|77|78|79|71|70|69|69|68|66|65|65|64|64|73|61|60|60|62|58|58|57|56|55|55|75|54|53|51|51|50|49|48|48|45|45|44|43|42|42|47|43|44|46|46|47|81|49|50|52|52|53|54|76|56|57|59|59|63|61|62|63|74|67|66|67|68|72|70|71|72|73|74|75|76|80|78|79|80|81|0\n72|71|71|70|68|68|66|63|61|61|60|59|58|57|56|55|54|50|48|48|49|47|46|45|44|44|52|42|42|41|40|39|39|64|38|38|67|65|40|41|43|43|53|45|46|47|51|49|50|51|52|53|54|55|56|57|58|59|60|62|62|63|64|65|66|67|69|69|70|73|72|73|0\n50|49|48|47|47|46|45|40|39|39|41|42|37|37|38|44|52|53|35|35|34|32|31|30|30|29|29|55|33|31|32|33|34|36|36|54|38|43|40|41|42|43|44|45|46|51|48|49|50|51|52|53|54|55|0\n31|28|28|27|26|24|23|22|21|21|20|18|18|17|17|30|19|19|20|25|22|23|24|25|26|27|29|29|30|31|0\n32|31|31|29|27|26|26|25|23|21|21|22|20|19|18|18|30|19|20|24|22|23|24|25|28|27|28|29|30|33|32|33|0\n34|33|32|32|29|24|24|23|23|26|27|22|21|21|20|19|19|31|20|30|22|28|25|25|26|27|28|29|30|31|35|33|34|35|0\n27|23|22|21|21|24|19|19|18|16|15|15|17|26|16|17|18|20|20|25|22|23|24|25|26|27|0\n31|26|26|25|24|23|23|28|22|21|19|17|17|18|20|30|18|19|20|21|22|29|24|25|27|27|28|29|30|31|0\n42|40|40|39|37|37|36|36|35|34|31|29|29|28|28|27|25|25|24|23|23|33|24|26|26|27|32|30|30|31|32|33|34|35|43|38|38|39|41|41|42|43|0\n57|57|51|50|50|48|48|46|45|45|44|43|42|42|53|54|55|41|40|39|39|38|35|35|34|33|32|31|31|37|32|33|34|36|36|37|38|59|40|41|56|43|44|47|46|47|49|49|52|51|52|53|54|55|56|58|58|59|0\n39|38|37|35|33|30|30|31|29|29|28|26|26|25|24|23|22|21|21|36|22|23|24|25|27|27|28|34|32|31|32|33|34|35|36|37|38|39|0\n45|43|41|38|37|36|36|39|35|35|34|30|30|31|29|28|28|26|26|25|24|24|44|25|27|27|33|29|32|31|32|33|34|42|40|37|38|39|40|41|42|43|44|45|0\n51|49|48|47|46|43|42|42|41|40|38|38|39|37|35|35|34|32|31|30|29|29|28|27|27|50|28|33|30|31|32|33|34|36|36|37|45|39|40|41|44|43|44|45|46|47|48|49|50|51|0\n58|56|55|55|57|54|49|47|46|46|45|45|44|43|43|51|42|40|40|39|38|36|35|35|34|33|32|31|31|53|32|33|34|37|36|37|38|39|41|41|42|52|44|50|48|47|48|49|50|51|52|53|54|59|56|57|58|59|0\n37|36|35|34|34|38|39|33|32|31|30|29|28|27|26|25|24|23|22|22|41|23|24|25|26|27|28|29|30|31|32|33|40|35|36|37|38|39|40|41|0\n28|27|27|25|25|24|23|23|30|31|21|21|19|19|18|18|33|20|20|22|22|32|24|26|26|29|28|29|30|31|32|33|0\n27|27|26|23|22|22|24|21|20|20|18|17|16|16|19|17|18|19|29|21|25|23|24|25|26|28|28|29|0\n32|31|31|30|29|27|27|28|26|25|24|24|21|21|20|19|19|23|20|22|22|23|35|25|26|34|28|29|30|33|32|33|34|35|0\n22|22|20|19|18|17|15|15|14|13|13|21|14|16|16|17|18|19|20|21|23|23|0\n41|41|40|39|39|43|38|37|34|34|35|30|30|31|32|28|28|27|26|25|24|24|45|25|26|27|29|29|33|31|32|33|36|35|36|37|38|44|40|42|42|43|44|45|0\n14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0\n29|28|26|26|27|25|24|23|22|21|20|19|18|17|17|31|18|19|20|21|22|23|24|25|30|27|28|29|30|31|0\n42|41|40|38|38|36|36|35|34|33|33|32|30|29|28|27|26|25|23|23|24|31|24|25|26|27|28|29|30|31|32|43|34|35|37|37|39|39|40|41|42|43|0\n46|45|45|44|40|40|41|39|38|38|36|35|33|32|32|31|29|29|28|27|26|25|25|37|26|27|28|30|30|31|34|33|34|35|36|37|43|39|42|41|42|43|44|47|46|47|0\n89|86|85|85|84|81|81|80|75|75|76|77|74|74|79|72|71|70|68|67|67|69|66|63|61|61|60|58|57|57|59|56|56|54|54|52|51|51|50|49|48|47|46|46|88|47|48|49|50|53|52|53|55|55|65|64|58|59|60|62|62|63|64|65|66|73|68|69|70|71|72|73|83|78|76|77|78|79|80|82|82|83|84|87|86|87|88|89|0\n40|40|38|34|34|33|32|32|36|30|28|27|26|26|29|25|23|23|22|22|39|24|24|25|31|27|28|29|30|31|37|33|35|35|36|37|38|39|41|41|0\n37|36|36|35|34|34|39|33|32|31|24|24|25|26|23|22|22|28|29|30|41|23|27|25|26|27|28|29|30|31|32|33|40|35|38|37|38|39|40|41|0\n23|21|18|18|17|16|15|15|14|13|13|22|14|20|16|17|19|19|20|21|22|23|0\n53|52|51|50|50|49|47|47|46|42|42|43|41|39|39|38|38|37|36|34|32|31|31|30|30|29|29|55|35|33|32|33|34|35|36|37|45|40|40|41|44|43|44|45|46|48|48|49|54|51|52|53|54|55|0\n51|47|40|38|38|39|37|37|42|36|36|44|35|33|32|31|31|34|46|48|30|29|28|27|27|50|28|29|30|49|32|33|34|35|45|43|41|39|40|41|42|43|44|45|46|47|48|49|50|51|0\n72|71|70|68|68|67|66|66|65|63|63|60|59|57|57|56|56|51|49|49|47|47|45|45|44|43|42|42|52|53|54|41|39|39|38|38|62|40|40|41|55|43|44|46|46|48|48|50|50|51|52|53|54|55|61|58|58|59|60|61|62|64|64|65|73|67|69|69|70|71|72|73|0\n60|59|58|56|56|55|52|51|50|49|49|53|47|47|45|45|44|43|42|42|41|40|38|36|36|35|34|33|32|32|39|33|34|35|37|37|38|39|40|41|61|43|44|46|46|48|48|54|50|51|52|53|54|55|57|57|58|59|60|61|0\n47|45|44|44|46|43|43|40|40|37|37|38|36|34|33|33|32|30|30|29|28|26|26|27|42|27|28|29|31|31|32|35|34|35|36|39|38|39|41|41|42|49|48|45|46|47|48|49|0\n39|37|37|36|33|31|31|30|30|29|28|27|27|26|25|24|24|40|41|23|23|43|42|25|26|35|28|29|34|32|32|33|34|35|36|38|38|39|40|41|42|43|0\n39|38|34|33|32|31|30|30|35|29|28|27|26|25|23|22|22|21|21|37|24|23|24|25|26|27|28|29|36|31|32|33|34|35|36|37|38|39|0\n67|65|65|66|64|59|59|58|58|61|55|55|54|54|53|51|50|50|49|49|63|47|46|45|42|41|41|43|39|38|38|37|36|36|48|37|40|39|40|44|42|43|44|45|46|47|48|69|52|51|52|53|57|56|56|57|62|60|60|61|62|63|64|68|66|67|68|69|0\n16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0\n34|34|33|32|29|28|27|25|24|24|26|23|21|21|20|19|19|31|20|22|22|23|30|25|26|27|28|29|30|31|32|33|35|35|0\n66|65|63|63|62|59|58|58|60|57|56|56|55|49|49|50|51|48|47|46|45|45|53|42|40|39|39|38|38|37|36|35|35|44|36|37|43|41|40|41|42|43|44|54|46|47|48|52|50|51|52|53|54|55|67|57|61|59|60|61|62|64|64|65|66|67|0\n22|20|20|21|17|17|15|15|14|13|13|19|14|16|16|18|18|19|23|21|22|23|0\n34|33|33|29|28|27|26|26|30|25|23|23|22|21|20|19|19|32|20|21|22|24|24|25|31|27|28|29|30|31|32|35|34|35|0\n54|53|53|50|47|47|48|46|46|45|43|43|40|40|39|36|36|37|35|35|34|33|32|31|30|29|29|52|30|31|32|33|34|42|38|37|38|39|41|41|42|44|44|45|51|49|48|49|50|51|52|55|54|55|0\n24|23|22|21|21|20|19|17|15|15|14|14|18|16|16|17|18|19|20|25|22|23|24|25|0\n33|30|29|28|28|27|26|24|24|23|21|20|20|19|18|18|32|19|22|21|22|23|25|25|26|27|31|29|30|31|32|33|0\n51|51|52|50|48|48|46|44|43|43|42|40|40|37|37|36|35|35|33|33|32|31|30|29|28|28|47|29|30|31|32|34|34|39|36|38|38|39|41|41|42|45|44|45|46|47|49|49|50|53|52|53|0\n9|7|7|8|10|11|8|9|10|11|0\n41|40|39|38|37|36|35|35|42|43|34|33|30|30|31|29|28|27|26|25|24|24|45|25|26|27|28|29|32|31|32|33|34|44|36|37|38|39|40|41|42|43|44|45|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n51|46|43|42|40|40|41|44|39|36|36|37|38|47|48|34|34|33|31|30|30|29|28|27|27|50|28|29|32|31|32|33|35|35|49|37|38|39|45|41|42|43|44|45|46|47|48|49|50|51|0\n42|41|39|39|37|36|36|35|34|33|33|43|32|28|28|27|26|26|30|25|24|24|45|25|31|27|29|29|30|31|32|44|34|35|38|37|38|40|40|41|42|43|44|45|0\n39|39|37|37|36|36|41|35|30|30|31|29|29|33|26|25|24|24|27|23|23|43|28|25|26|27|28|34|32|31|32|33|34|35|42|38|38|40|40|41|42|43|0\n44|40|40|41|42|43|39|37|36|36|35|33|31|30|30|29|28|26|26|25|24|24|34|25|27|27|28|29|32|31|32|33|34|35|38|37|38|39|45|41|42|43|44|45|0\n31|30|29|28|28|32|33|26|26|25|23|23|22|20|20|19|19|35|21|21|22|24|24|25|27|27|34|29|30|31|32|33|34|35|0\n39|35|35|36|32|31|30|30|33|29|28|28|26|25|24|23|22|21|21|27|22|23|24|25|26|27|38|29|34|31|32|33|34|37|36|37|38|39|0\n30|29|27|27|28|26|25|23|22|22|20|19|18|17|17|21|18|19|20|21|24|23|24|25|26|31|28|29|30|31|0\n10|8|8|9|11|12|13|9|10|11|12|13|0\n26|25|24|24|27|22|22|21|19|19|18|17|16|16|29|17|18|20|20|21|23|23|28|25|26|27|28|29|0\n60|58|58|57|55|55|54|53|52|52|51|50|48|47|45|45|42|42|41|41|40|39|34|34|35|36|37|33|32|32|49|33|38|35|36|37|38|39|40|44|43|43|44|46|46|47|48|49|50|51|61|53|54|56|56|57|59|59|60|61|0\n33|29|27|27|26|26|30|25|24|23|21|20|20|19|18|18|32|19|22|21|22|23|24|25|31|28|28|29|30|31|32|33|0\n52|52|51|50|49|49|54|55|48|47|46|45|44|42|42|41|40|39|37|37|36|35|33|32|31|31|30|30|57|34|32|33|34|35|36|38|38|39|40|41|43|43|44|45|46|47|48|56|50|51|53|53|54|55|56|57|0\n17|15|13|11|11|12|10|10|16|14|12|13|14|15|16|17|0\n37|35|33|33|30|29|28|28|26|26|25|25|24|23|22|21|20|20|36|21|22|23|24|32|27|27|31|29|30|31|32|34|34|35|36|37|0\n38|36|36|35|34|34|33|29|29|30|28|25|25|26|27|23|21|21|22|24|22|23|24|32|26|27|28|31|30|31|32|33|39|35|37|37|38|39|0\n10|9|8|7|7|11|8|9|10|11|0\n63|61|58|58|59|56|56|57|55|54|54|64|65|53|52|50|48|47|46|45|45|44|44|43|41|40|40|39|37|37|36|35|35|67|36|38|38|39|42|41|42|43|51|49|46|47|48|49|50|51|52|53|66|55|62|57|60|59|60|61|62|63|64|65|66|67|0\n8|8|6|6|7|7|9|9|0\n22|22|23|21|21|18|17|16|16|15|14|14|20|15|19|17|18|19|20|25|24|23|24|25|0\n17|15|14|13|10|10|11|12|16|11|12|13|14|15|16|17|0\n42|41|40|40|39|38|37|35|33|33|34|32|32|31|29|29|28|26|26|24|24|25|45|25|27|27|28|30|30|31|44|36|34|35|36|37|38|39|43|41|42|43|44|45|0\n47|45|43|42|42|41|39|38|38|37|35|34|32|32|33|31|29|28|28|27|25|25|26|46|26|27|30|29|30|31|36|33|34|35|36|37|40|39|40|41|44|43|44|45|46|47|0\n23|21|21|20|20|19|16|16|15|15|18|14|14|25|17|17|18|19|24|22|22|23|24|25|0\n19|18|17|15|13|12|12|11|11|16|14|13|14|15|16|17|18|19|0\n51|51|50|50|46|46|47|45|44|43|38|38|39|40|41|36|35|35|34|33|32|31|30|29|28|28|49|29|30|31|32|33|34|37|36|37|42|39|40|41|42|43|44|45|48|47|48|49|53|52|52|53|0\n39|35|33|32|32|34|36|31|29|29|28|26|25|25|24|23|21|21|22|38|22|23|24|27|26|27|28|30|30|31|37|33|34|35|36|37|38|39|0\n59|59|58|57|56|54|54|53|51|51|52|61|50|48|48|46|46|42|41|40|40|43|44|38|37|36|35|35|34|33|33|63|34|39|36|37|38|39|45|41|42|43|44|45|47|47|49|49|50|62|52|53|55|55|56|57|58|60|60|61|62|63|0\n37|37|38|34|34|33|32|31|31|30|29|28|28|40|24|24|25|23|22|22|27|23|26|25|26|27|41|29|30|36|32|33|35|35|36|39|38|39|40|41|0\n63|62|62|61|60|57|56|53|53|54|52|52|50|50|49|47|47|46|43|43|44|42|42|59|65|41|40|37|36|36|38|35|35|67|39|37|38|39|40|41|66|45|44|45|46|48|48|49|51|51|58|55|54|55|56|57|58|59|60|61|64|63|64|65|66|67|0\n52|51|51|49|48|45|42|42|43|41|40|39|37|37|38|36|35|35|33|32|32|31|29|29|28|28|50|30|30|31|34|33|34|47|36|46|38|39|40|41|44|43|44|45|46|47|48|49|50|53|52|53|0\n75|74|74|73|72|71|71|70|69|65|65|66|64|64|68|78|79|63|62|60|59|58|58|57|55|55|52|52|49|48|48|50|47|46|45|44|44|43|42|42|81|43|54|45|46|47|51|49|50|51|53|53|54|56|56|57|61|59|60|61|62|63|80|67|66|67|68|69|70|77|72|73|76|75|76|77|78|79|80|81|0\n31|30|28|28|29|27|26|25|25|24|23|21|20|19|18|18|22|19|20|21|22|23|24|33|26|27|32|29|30|31|32|33|0\n21|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|22|22|23|0\n29|27|27|26|24|23|23|22|21|20|20|30|31|19|18|18|33|19|32|21|22|25|24|25|26|28|28|29|30|31|32|33|0\n25|23|21|20|19|19|18|17|16|15|14|14|24|15|16|17|18|22|20|21|22|23|24|25|0\n72|69|69|68|68|71|67|66|66|65|62|62|63|60|58|57|56|55|54|54|53|51|50|50|49|48|48|47|46|45|44|43|43|41|40|39|39|42|40|41|42|75|44|45|46|47|61|49|52|51|52|53|59|55|56|57|58|59|60|61|64|63|64|65|74|67|73|70|70|71|72|73|74|75|0\n23|21|14|14|15|16|17|18|19|13|13|22|20|15|16|17|18|19|20|21|22|23|0\n37|33|33|34|32|32|36|31|30|29|28|25|25|26|24|24|21|21|22|23|22|23|39|27|26|27|28|29|30|31|38|35|34|35|36|37|38|39|0\n68|67|66|64|63|62|62|61|59|59|60|58|56|56|52|51|49|48|47|47|46|45|44|44|53|43|40|40|39|39|37|37|36|36|55|38|38|42|41|41|42|43|54|45|46|50|48|49|50|51|52|53|54|55|57|57|58|69|60|61|65|63|64|65|66|67|68|69|0\n51|50|49|46|45|44|43|43|47|42|40|40|41|52|53|38|38|37|36|35|34|32|32|31|30|29|29|55|30|31|33|33|34|35|36|37|39|39|54|41|42|48|44|45|46|47|48|49|50|51|52|53|54|55|0\n19|17|16|13|13|14|12|11|11|18|12|15|14|15|16|17|18|19|0\n28|27|27|29|26|25|25|22|21|21|20|19|18|17|17|24|18|19|20|23|22|23|24|31|26|30|28|29|30|31|0\n64|63|59|58|58|57|56|56|61|52|52|51|50|49|49|54|47|47|46|45|45|44|42|42|40|39|38|37|36|34|34|35|41|35|36|37|38|39|40|41|43|43|44|65|46|48|48|55|50|51|53|53|54|55|62|57|60|59|60|61|62|63|64|65|0\n58|57|56|56|54|53|49|47|47|48|46|45|44|43|42|41|41|51|39|39|38|37|35|34|34|33|32|31|31|55|32|33|36|35|36|37|38|40|40|52|42|43|44|45|46|50|48|49|50|51|52|53|54|55|59|57|58|59|0\n46|45|45|44|42|40|40|39|37|34|34|35|36|33|27|27|28|29|26|26|31|25|25|43|32|30|28|29|30|31|32|33|38|35|36|37|38|39|41|41|42|43|44|47|46|47|0\n49|48|47|46|46|45|41|40|39|38|37|36|35|35|42|43|33|33|32|31|30|28|27|27|29|51|28|29|30|31|32|34|34|44|36|37|38|39|40|41|42|43|44|45|50|47|48|49|50|51|0\n20|19|18|17|17|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0\n7|5|5|6|6|7|0\n46|45|44|44|43|41|39|38|38|37|37|36|35|34|33|32|31|30|30|48|49|29|27|27|28|51|28|29|50|31|32|33|34|35|36|42|40|39|40|41|42|43|47|45|46|47|48|49|50|51|0\n7|7|8|6|6|9|8|9|0\n36|35|35|37|33|33|32|29|28|27|26|26|30|24|24|23|22|22|21|21|39|23|25|25|31|27|28|29|30|31|32|34|34|38|36|37|38|39|0\n42|38|37|36|35|35|39|40|34|34|33|30|30|29|28|27|27|24|23|23|25|26|24|25|26|32|28|29|31|31|32|33|43|41|36|37|38|39|40|41|42|43|0\n36|35|34|33|33|31|29|29|28|25|24|24|23|23|22|21|20|20|32|21|22|27|26|25|26|27|28|30|30|31|32|37|34|35|36|37|0\n17|15|12|12|13|11|10|10|16|11|14|13|14|15|16|17|0\n41|39|33|33|34|35|36|32|31|31|30|29|28|27|25|25|24|23|22|22|40|23|24|26|26|27|28|29|30|38|32|37|34|35|36|37|38|39|40|41|0\n41|40|37|36|35|34|33|32|32|31|30|29|28|27|26|24|23|23|22|22|39|25|24|25|26|27|28|29|30|31|38|33|34|35|36|37|38|39|40|41|0\n43|42|41|40|39|39|44|37|36|36|35|32|31|30|29|29|33|28|28|46|26|25|25|27|26|27|47|34|30|31|32|33|34|35|38|37|38|45|40|41|42|43|44|45|46|47|0\n71|65|63|63|62|60|60|61|59|58|58|67|68|57|53|52|52|51|50|49|49|55|48|47|44|43|43|42|41|39|39|40|37|37|38|70|38|46|40|41|42|45|44|45|46|47|48|56|50|51|54|53|54|55|56|57|69|59|66|61|62|64|64|65|66|67|68|69|70|71|0\n14|12|12|13|10|9|9|11|10|11|15|13|14|15|0\n20|19|18|17|16|16|14|14|12|12|13|13|15|15|21|17|18|19|20|21|0\n57|54|54|53|51|50|50|49|47|47|46|45|44|43|43|39|39|40|38|37|36|34|34|33|32|31|30|30|42|31|32|33|35|35|36|37|38|41|40|41|42|56|44|45|46|48|48|49|52|51|52|53|55|55|56|57|0\n61|59|59|58|58|62|57|57|64|54|53|52|50|50|51|44|44|43|43|42|41|40|39|39|47|48|38|37|36|34|34|35|56|35|36|37|38|49|40|41|42|46|45|45|46|47|48|49|55|51|52|53|54|55|56|65|63|60|60|61|62|63|64|65|0\n62|62|61|59|59|58|58|64|57|56|55|54|53|52|50|50|49|48|47|46|46|66|67|45|42|40|40|39|38|38|43|37|36|36|69|37|44|39|41|41|42|43|44|45|68|47|48|49|51|51|52|53|54|55|56|57|65|60|60|61|63|63|64|65|66|67|68|69|0\n19|18|18|20|17|16|14|14|13|12|12|13|15|15|16|17|21|19|20|21|0\n46|45|44|39|39|40|38|37|36|35|35|42|43|34|32|32|30|29|27|27|26|25|25|31|26|28|28|29|30|31|33|33|34|47|36|37|38|41|40|41|42|43|44|45|46|47|0\n64|63|62|61|61|57|55|53|52|50|50|51|54|49|48|47|47|58|46|44|44|43|41|41|40|39|37|36|36|35|34|34|60|35|38|37|38|39|40|42|42|43|45|45|46|59|48|49|56|51|52|53|54|55|56|57|58|59|60|65|62|63|64|65|0\n64|63|62|61|61|60|58|57|55|54|53|53|52|52|51|49|47|46|46|45|44|43|42|41|40|38|37|37|36|35|34|34|50|35|36|39|38|39|40|41|42|43|44|45|48|47|48|49|50|51|59|56|54|55|56|57|58|59|60|65|62|63|64|65|0\n22|21|21|19|17|17|16|15|14|13|13|20|14|15|16|18|18|19|20|23|22|23|0\n11|9|7|7|8|10|8|9|10|11|0\n12|12|13|14|15|11|11|10|10|17|16|13|14|15|16|17|0\n63|63|62|62|61|60|60|66|67|58|58|57|57|69|56|53|52|51|51|50|49|48|47|46|46|45|44|43|42|39|38|38|40|37|37|71|41|39|40|41|42|43|44|45|55|47|48|49|50|54|52|53|54|55|56|70|59|59|68|61|65|64|64|65|66|67|68|69|70|71|0\n45|42|40|39|38|38|41|37|35|35|34|32|31|29|29|28|28|27|25|25|26|24|24|44|26|27|33|30|30|31|32|33|34|36|36|37|43|39|40|41|42|43|44|45|0\n49|49|50|51|48|48|47|45|45|40|40|41|42|38|37|36|36|35|34|33|31|30|30|29|28|28|44|29|32|31|32|33|34|35|39|37|38|39|43|41|42|43|44|46|46|47|53|52|50|51|52|53|0\n40|39|38|36|36|37|34|32|32|31|29|27|25|25|26|24|24|23|22|22|35|23|30|28|26|27|28|29|30|31|33|33|34|35|41|37|38|39|40|41|0\n50|48|47|47|46|45|43|43|42|41|41|40|39|36|35|34|33|33|32|31|30|29|28|27|27|38|28|29|30|31|32|37|34|35|36|37|38|39|40|51|42|44|44|45|46|49|48|49|50|51|0\n12|10|8|8|9|11|13|9|10|11|12|13|0\n33|33|34|31|31|30|29|29|36|26|24|23|23|22|21|21|20|20|28|27|22|25|24|25|26|27|28|37|30|32|32|35|34|35|36|37|0\n43|41|41|40|39|39|44|45|37|36|34|34|32|32|31|31|30|29|28|27|26|25|25|47|26|27|28|29|30|38|33|33|35|35|36|37|38|46|40|42|42|43|44|45|46|47|0\n13|12|10|8|8|9|11|9|10|11|12|13|0\n46|46|43|42|40|40|41|39|38|37|36|35|34|33|30|30|31|29|27|26|26|25|25|45|28|27|28|29|32|31|32|33|34|35|36|37|38|39|44|41|42|43|44|45|47|47|0\n50|48|48|46|45|45|47|44|41|40|39|38|38|37|36|36|33|32|30|30|31|29|28|27|27|35|28|29|34|31|32|33|34|35|43|37|42|39|40|41|42|43|44|51|46|47|49|49|50|51|0\n41|39|37|36|34|33|32|31|30|29|28|28|35|27|25|23|23|24|22|22|40|26|24|25|26|27|38|29|30|31|32|33|34|35|36|37|38|39|40|41|0\n38|36|36|35|35|34|32|31|30|29|29|26|26|25|23|23|22|21|21|28|22|24|24|25|27|27|28|33|30|31|32|33|34|39|37|37|38|39|0\n35|33|32|31|30|26|25|25|27|28|23|23|21|21|20|19|19|34|20|22|22|24|24|29|26|27|28|29|30|31|32|33|34|35|0\n18|18|19|17|17|21|16|13|13|14|15|23|14|15|16|22|20|19|20|21|22|23|0\n45|43|42|41|41|40|39|39|38|37|36|35|34|34|32|31|30|28|27|27|26|25|25|33|26|29|28|29|30|31|32|33|47|35|36|37|38|46|40|44|42|43|44|45|46|47|0\n60|59|58|58|57|55|54|53|53|51|51|49|48|48|47|46|46|62|63|43|43|42|39|38|38|40|37|36|36|35|34|34|65|35|45|37|41|39|40|41|42|44|44|45|64|47|50|49|50|52|52|56|54|55|56|57|61|59|60|61|62|63|64|65|0\n38|37|35|35|34|33|32|31|31|30|28|27|25|24|23|22|21|21|26|29|22|23|24|25|26|27|28|29|30|39|32|33|34|36|36|37|38|39|0\n25|24|24|23|22|22|19|19|18|15|15|16|17|21|16|17|18|20|20|21|27|23|26|25|26|27|0\n56|56|53|52|52|51|50|47|46|46|48|44|43|42|42|41|37|37|36|35|33|33|32|32|39|30|30|31|55|31|40|34|34|35|36|38|38|39|40|41|45|43|44|45|49|47|48|49|50|51|54|53|54|55|57|57|0\n12|10|10|11|8|8|9|9|13|11|12|13|0\n30|29|28|27|27|25|24|23|22|20|19|18|18|17|17|26|21|19|20|21|22|23|24|25|26|31|28|29|30|31|0\n51|51|50|48|47|47|46|45|44|43|42|41|41|39|37|37|36|35|34|33|32|31|30|29|28|28|40|29|30|31|32|33|34|35|36|38|38|39|40|53|42|43|44|45|46|49|48|49|50|52|52|53|0\n36|33|32|31|31|30|28|27|27|26|26|25|24|24|23|22|20|20|21|21|22|23|37|25|35|29|28|29|30|34|32|33|34|35|36|37|0\n42|42|43|41|40|39|39|38|36|35|35|33|29|28|28|30|31|26|26|25|24|24|34|25|27|27|32|29|30|31|32|33|34|37|36|37|38|45|40|41|44|43|44|45|0\n20|19|18|16|15|15|14|14|13|12|12|13|21|17|16|17|18|19|20|21|0\n38|37|35|35|34|34|32|31|30|28|27|26|25|24|24|23|22|21|21|33|22|23|29|25|26|27|28|29|30|31|32|33|39|36|36|37|38|39|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n47|46|45|45|44|42|41|40|39|38|38|36|36|37|35|34|32|30|30|29|28|27|26|26|33|27|28|29|31|31|32|33|34|35|49|37|43|39|40|41|42|43|44|48|46|47|48|49|0\n36|35|34|33|31|30|30|29|28|27|27|26|21|21|20|20|23|24|25|22|22|23|24|25|26|37|28|29|32|31|32|33|34|35|36|37|0\n30|29|29|31|28|28|25|24|24|23|21|20|20|19|18|18|27|19|22|21|22|23|26|25|26|27|33|32|30|31|32|33|0\n55|55|54|52|52|53|51|50|50|58|59|45|43|43|44|46|41|41|40|38|37|36|36|39|48|35|34|33|32|32|61|33|34|35|49|37|38|39|40|42|42|47|44|45|46|47|48|49|60|51|57|53|54|56|56|57|58|59|60|61|0\n64|64|62|61|58|58|57|54|54|55|53|52|52|51|46|46|47|48|49|45|44|43|42|40|40|38|36|36|35|35|34|34|63|39|37|37|38|39|41|41|42|43|44|45|50|47|48|49|50|51|60|53|56|55|56|57|59|59|60|61|62|63|65|65|0\n91|87|87|86|85|84|83|82|77|76|76|78|75|74|73|72|71|70|69|69|80|68|67|66|65|64|63|63|62|60|60|59|57|57|53|53|52|52|55|51|49|49|48|47|47|90|48|50|50|51|56|54|54|55|56|58|58|59|61|61|62|89|64|65|66|67|68|81|70|71|72|73|74|75|79|77|78|79|80|81|82|83|84|85|86|88|88|89|90|91|0\n37|37|38|36|33|33|32|30|30|29|28|27|27|23|23|24|21|21|22|26|22|25|24|25|26|35|28|29|31|31|32|34|34|35|36|39|38|39|0\n33|31|27|26|26|25|25|29|22|21|21|23|20|19|18|18|32|19|20|24|22|23|24|30|28|27|28|29|30|31|32|33|0\n32|30|30|29|28|27|27|33|26|24|23|23|22|21|20|19|19|35|20|21|22|25|24|25|26|34|28|29|31|31|32|33|34|35|0\n43|42|40|38|37|37|36|34|33|33|32|30|29|28|28|26|26|25|24|23|23|41|24|25|27|27|31|29|30|31|32|35|34|35|36|39|38|39|40|41|42|43|0\n34|33|31|31|30|29|28|27|27|26|25|24|22|21|21|20|19|19|20|23|22|23|24|25|26|35|28|29|30|32|32|33|34|35|0\n45|44|42|40|40|41|39|38|36|36|37|46|47|30|30|31|29|29|33|28|28|27|26|26|49|27|35|34|32|31|32|33|34|35|48|37|38|39|43|41|42|43|44|45|46|47|48|49|0\n27|26|26|25|24|23|23|22|21|20|19|18|17|16|16|17|18|19|20|21|22|29|24|25|28|27|28|29|0\n49|48|48|47|46|45|44|44|40|39|39|41|38|37|36|34|34|32|30|30|31|29|28|27|27|43|28|29|33|31|32|33|35|35|36|37|38|42|40|41|42|43|51|45|46|47|50|49|50|51|0\n31|27|26|25|24|23|22|21|20|19|19|28|18|17|17|30|18|29|20|21|22|23|24|25|26|27|28|29|30|31|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0\n51|51|50|50|48|45|44|43|43|46|40|39|39|38|36|36|37|35|34|33|32|31|30|29|28|28|49|29|30|31|32|33|34|35|42|37|38|41|40|41|42|47|44|45|46|47|48|49|53|52|52|53|0\n37|36|34|33|33|32|31|30|28|28|29|38|39|26|26|24|24|23|22|22|41|23|25|25|27|27|40|29|30|31|32|35|34|35|36|37|38|39|40|41|0\n47|42|41|41|43|39|39|38|36|36|34|33|33|32|32|45|30|29|28|25|25|26|27|31|26|27|28|29|30|31|46|35|34|35|37|37|38|40|40|44|42|43|44|45|46|47|0\n39|36|35|35|34|33|32|31|31|30|29|28|26|25|24|24|23|22|21|21|22|23|27|25|26|27|28|29|30|38|32|33|34|37|36|37|38|39|0\n41|40|40|39|37|37|36|33|33|34|31|30|30|29|29|27|26|25|23|23|24|28|24|25|26|27|28|43|32|31|32|35|34|35|36|38|38|39|42|41|42|43|0\n44|43|42|42|40|40|38|37|33|32|31|30|30|29|28|28|35|26|25|25|24|24|39|27|26|27|36|29|34|31|32|33|34|35|36|37|38|39|41|41|45|43|44|45|0\n63|61|58|58|57|56|55|55|54|53|52|50|49|47|46|46|45|43|43|42|42|41|39|39|38|36|36|34|34|33|33|62|35|35|37|37|38|40|40|41|51|44|44|45|48|47|48|49|50|51|52|53|54|60|56|57|59|59|60|61|62|63|0\n40|40|38|36|35|34|33|32|31|31|30|29|27|26|25|25|24|22|22|23|39|23|24|28|26|27|28|29|30|37|32|33|34|35|36|37|38|39|41|41|0\n14|9|9|10|11|12|13|15|10|11|12|13|14|15|0\n93|91|90|90|89|88|87|85|85|84|84|94|95|82|80|79|79|78|76|75|74|71|70|69|68|66|66|65|64|64|72|63|62|61|60|60|77|58|58|57|55|55|54|52|51|51|50|50|97|53|52|53|54|56|56|57|59|59|83|61|62|63|73|65|67|67|68|69|70|71|72|73|74|75|76|77|78|81|80|81|82|83|96|86|86|87|88|89|92|91|92|93|94|95|96|97|0\n7|5|5|6|6|7|0\n7|5|5|6|6|7|0\n25|22|21|21|20|18|18|17|16|15|14|14|24|15|16|17|19|19|20|23|22|23|24|25|0\n31|30|27|26|25|25|23|23|22|22|21|20|19|17|17|18|18|19|20|21|29|24|24|28|26|27|28|29|30|31|0\n19|17|17|16|16|20|21|15|13|13|14|23|14|15|22|18|18|19|20|21|22|23|0\n22|21|21|23|18|17|17|19|16|15|14|14|25|15|16|20|18|19|20|24|22|23|24|25|0\n52|51|50|50|47|47|46|46|49|45|44|43|42|40|39|39|38|38|55|37|36|34|33|33|32|31|30|30|57|31|32|35|34|35|36|37|56|41|40|41|42|43|44|45|54|48|48|49|53|51|52|53|54|55|56|57|0\n24|23|22|22|20|19|17|16|15|14|14|18|21|15|16|17|18|19|20|21|25|23|24|25|0\n45|42|41|39|38|38|37|34|34|35|33|33|32|31|29|27|27|28|26|24|24|25|44|25|26|30|28|29|30|31|32|43|36|35|36|37|40|39|40|41|42|43|44|45|0\n27|27|26|25|25|23|22|21|20|19|18|17|16|16|24|17|18|19|20|21|22|23|24|29|26|28|28|29|0\n28|28|29|25|24|23|22|22|26|21|20|19|18|17|17|31|18|19|20|21|27|23|24|25|26|27|30|29|30|31|0\n42|42|41|38|37|36|36|35|31|31|32|33|30|30|26|24|24|25|27|23|23|29|28|25|26|27|28|29|40|34|32|33|34|35|39|37|38|39|40|41|43|43|0\n52|49|48|48|47|45|45|46|44|42|41|41|40|39|38|38|37|33|33|32|31|31|30|29|28|28|36|29|30|35|32|34|34|35|36|37|53|39|40|43|42|43|44|51|46|47|50|49|50|51|52|53|0\n16|16|14|11|11|12|10|10|15|13|12|13|14|15|17|17|0\n9|9|8|7|7|11|8|10|10|11|0\n61|59|59|60|58|54|53|52|52|55|49|48|47|47|50|46|44|43|43|45|57|41|39|39|38|37|35|33|33|34|36|42|34|35|36|37|38|40|40|41|42|63|44|45|46|51|48|49|50|51|56|53|54|55|56|57|58|62|60|61|62|63|0\n49|49|48|46|46|45|44|44|51|39|38|36|36|35|34|33|32|32|40|41|42|30|29|29|28|28|53|31|30|31|43|33|34|35|37|37|38|39|40|41|42|43|52|45|47|47|48|50|50|51|52|53|0\n36|35|33|33|32|31|29|28|28|27|27|26|25|23|22|20|20|21|24|21|22|23|24|25|26|37|30|29|30|31|32|34|34|35|36|37|0\n35|35|34|34|32|32|31|31|30|29|28|26|25|24|23|22|22|21|21|39|27|23|24|25|26|27|28|29|30|38|33|33|37|36|36|37|38|39|0\n56|54|51|50|50|52|49|49|48|45|45|46|44|43|42|42|41|40|38|36|35|34|33|32|32|31|30|30|39|31|37|33|34|35|36|37|38|39|40|41|57|43|44|47|46|47|48|55|53|51|52|53|54|55|56|57|0\n30|29|26|26|27|28|31|24|23|23|22|21|20|19|18|18|33|19|20|21|22|25|24|25|32|27|28|29|30|31|32|33|0\n25|24|22|20|20|19|18|17|15|14|14|16|23|15|16|17|18|19|21|21|22|23|24|25|0\n37|35|34|33|31|30|29|28|27|27|26|25|24|23|22|21|20|20|36|21|22|23|24|25|26|32|28|29|30|31|32|33|34|35|36|37|0\n19|19|18|16|15|14|14|13|12|12|21|13|17|15|16|17|18|20|20|21|0\n69|68|64|64|65|61|59|59|60|58|55|54|53|53|56|52|51|51|50|49|45|45|46|47|44|43|42|40|40|38|38|36|36|37|67|37|39|39|41|41|42|43|44|48|46|47|48|49|50|63|52|57|54|55|56|57|58|62|60|61|62|63|66|65|66|67|68|69|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n19|18|17|13|13|14|12|11|11|16|12|15|14|15|16|17|18|19|0\n26|25|23|23|22|22|21|19|19|16|16|15|15|18|17|17|18|20|20|21|27|24|24|25|26|27|0\n24|23|21|20|20|19|19|17|16|15|14|14|18|15|16|17|18|25|22|21|22|23|24|25|0\n36|36|37|34|34|35|32|31|30|29|28|26|24|24|23|23|22|21|21|33|22|27|25|25|26|27|28|29|30|31|32|33|39|35|38|37|38|39|0\n53|51|51|50|49|48|47|45|44|43|43|42|41|40|38|38|39|54|55|37|35|34|34|33|32|30|30|31|57|31|32|33|36|35|36|37|56|39|40|41|42|46|44|45|46|47|48|49|50|52|52|53|54|55|56|57|0\n31|29|28|23|22|21|20|19|19|24|25|26|18|17|17|30|18|27|20|21|22|23|24|25|26|27|28|29|30|31|0\n45|44|42|41|39|38|36|36|35|35|34|33|31|30|30|29|28|27|26|25|24|24|43|25|26|27|28|29|32|31|32|33|34|40|37|37|38|39|40|41|42|43|44|45|0\n11|9|8|7|7|10|8|9|10|11|0\n14|12|11|10|9|9|13|15|10|11|12|13|14|15|0\n40|40|39|39|42|43|38|37|36|35|34|33|32|31|29|29|28|27|25|24|24|26|45|25|26|27|28|30|30|31|32|33|34|35|36|37|38|44|41|41|42|43|44|45|0\n53|51|49|48|47|46|45|44|43|43|42|39|39|40|37|36|36|35|33|32|32|31|30|29|28|28|52|29|30|31|34|33|34|35|38|37|38|41|40|41|42|50|44|45|46|47|48|49|50|51|52|53|0\n61|59|58|57|56|52|52|51|49|49|48|48|54|46|45|44|42|42|41|41|40|39|38|37|34|33|33|35|32|32|60|36|34|35|36|37|38|39|40|47|43|43|44|45|46|47|55|50|50|51|53|53|54|55|56|57|58|59|60|61|0\n68|67|66|65|63|62|61|61|59|59|58|57|55|55|54|53|47|47|48|46|46|50|51|45|45|69|44|43|41|40|40|39|38|37|37|71|38|39|42|41|42|43|44|70|52|49|48|49|50|51|52|53|54|56|56|57|58|60|60|64|62|63|64|65|66|67|68|69|70|71|0\n24|21|20|20|22|18|17|17|16|15|14|14|25|15|16|19|18|19|23|21|22|23|24|25|0\n33|29|29|28|27|26|26|31|24|23|22|21|20|19|18|18|25|19|20|21|22|23|24|25|32|27|28|30|30|31|32|33|0\n42|40|39|39|38|37|37|36|35|33|32|30|30|29|27|26|26|24|23|23|25|34|24|25|28|27|28|29|31|31|32|33|34|35|36|43|38|41|40|41|42|43|0\n49|48|48|46|45|44|42|42|41|40|40|38|37|37|36|34|34|33|33|32|30|29|29|28|27|27|28|31|30|31|32|51|35|35|36|39|38|39|47|41|43|43|44|45|46|47|50|49|50|51|0\n24|18|18|19|17|17|21|16|16|15|15|14|14|25|23|22|20|19|20|21|22|23|24|25|0\n23|22|21|20|19|19|24|25|18|17|15|15|16|27|16|17|18|26|20|21|22|23|24|25|26|27|0\n40|39|39|41|38|37|36|36|34|33|30|29|29|28|28|27|25|24|23|23|26|35|24|25|26|27|32|31|30|31|32|33|34|35|43|37|38|42|40|41|42|43|0\n9|9|7|7|8|11|8|10|10|11|0\n36|34|34|33|28|28|29|30|27|26|26|32|25|24|21|21|20|20|23|22|22|23|24|25|37|27|31|29|30|31|32|33|35|35|36|37|0\n15|12|12|10|9|9|11|14|10|11|13|13|14|15|0\n28|27|27|26|24|22|22|21|20|19|18|16|16|17|25|17|18|19|20|21|23|23|24|25|26|29|28|29|0\n79|78|78|80|77|77|82|76|76|84|74|73|71|70|70|69|68|66|65|65|64|62|61|61|58|57|57|56|56|55|54|53|51|51|50|49|47|47|46|45|44|44|75|45|46|48|48|49|50|52|52|53|54|55|60|59|58|59|60|63|62|63|64|67|66|67|68|69|72|71|72|73|74|75|85|83|81|79|80|81|82|83|84|85|0\n30|29|29|26|23|23|24|22|21|21|20|19|18|17|17|28|18|19|20|27|22|25|24|25|26|27|28|31|30|31|0\n11|9|8|7|7|10|8|9|10|11|0\n30|29|28|27|27|31|26|26|24|20|20|21|22|19|18|18|25|19|23|21|22|23|24|25|33|32|28|29|30|31|32|33|0\n70|69|66|66|67|65|64|62|62|60|60|59|55|54|53|52|51|51|56|57|50|49|48|47|47|46|45|43|42|39|39|40|38|37|37|44|38|41|40|41|42|43|44|45|46|71|48|49|50|58|52|53|54|55|56|57|58|59|61|61|63|63|64|65|68|67|68|69|70|71|0\n51|51|50|49|48|48|47|46|44|39|38|38|37|36|35|35|41|42|33|33|32|30|29|29|28|28|45|31|30|31|32|34|34|43|36|37|40|39|40|41|42|43|44|45|46|47|53|49|50|52|52|53|0\n57|55|53|53|52|50|50|49|48|47|44|43|42|40|39|39|38|37|37|45|36|35|33|33|32|30|30|31|56|31|32|34|34|35|36|46|38|41|40|41|42|43|44|45|46|47|48|49|51|51|52|54|54|55|56|57|0\n33|33|29|28|27|26|26|30|25|25|24|23|23|21|20|19|19|22|20|21|22|35|24|32|31|27|28|29|30|31|32|34|34|35|0\n25|23|21|20|20|19|17|17|15|15|14|14|24|16|16|18|18|19|22|21|22|23|24|25|0\n41|40|39|37|35|34|33|32|32|31|29|28|28|27|25|25|24|23|22|22|38|23|24|26|26|27|30|29|30|31|36|33|34|35|36|37|38|39|40|41|0\n15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0\n34|33|33|32|30|29|28|26|26|25|23|23|21|20|20|19|19|31|22|21|22|24|24|25|27|27|28|29|30|31|32|35|34|35|0\n34|34|33|32|30|28|28|27|25|24|23|23|21|21|19|19|20|31|20|22|22|26|24|25|26|27|29|29|30|31|32|33|35|35|0\n62|60|60|59|58|58|56|53|52|52|54|55|51|45|44|43|42|41|40|39|39|46|47|37|37|34|33|33|35|36|49|50|34|35|36|38|38|48|40|41|42|43|44|45|46|47|48|49|50|51|57|53|54|55|56|57|63|59|61|61|62|63|0\n26|26|25|24|24|23|23|22|21|17|17|18|16|16|20|19|18|19|20|21|22|29|28|25|27|27|28|29|0\n60|58|58|59|55|54|52|51|50|50|49|49|46|45|45|47|44|42|42|41|39|39|38|37|36|33|33|34|32|32|57|35|34|35|36|37|38|40|40|41|43|43|44|48|46|47|48|56|53|51|52|53|54|55|56|57|61|59|60|61|0\n43|43|44|42|41|40|40|46|47|38|38|37|36|35|33|33|32|31|30|28|28|27|26|26|49|27|29|29|30|31|32|34|34|35|36|37|39|39|48|41|42|45|44|45|46|47|48|49|0\n9|9|7|7|8|11|8|10|10|11|0\n12|11|10|8|8|9|13|9|10|11|12|13|0\n28|27|26|25|24|24|22|20|20|19|18|17|16|16|23|17|18|19|21|21|22|23|29|25|26|27|28|29|0\n46|44|43|42|41|40|40|39|38|37|36|35|35|47|33|33|31|30|30|29|27|27|26|26|49|28|28|29|32|31|32|34|34|48|36|37|38|39|45|41|42|43|44|45|46|47|48|49|0\n69|69|68|64|63|61|60|60|59|57|57|56|55|55|65|53|52|51|50|48|48|49|47|46|43|43|42|41|41|40|40|67|38|37|37|39|38|39|71|45|42|44|44|45|46|47|54|49|50|51|52|53|54|66|56|58|58|59|62|61|62|63|64|65|66|67|68|70|70|71|0\n9|8|6|6|7|7|8|9|0\n89|89|88|86|85|83|83|82|80|80|79|78|78|77|74|73|71|70|70|69|69|75|68|67|66|65|63|63|62|57|56|56|55|55|59|54|54|61|52|50|50|49|48|47|47|53|48|49|51|51|52|53|91|60|58|57|58|59|60|61|62|64|64|65|66|67|68|76|72|71|72|73|74|75|76|77|87|79|81|81|82|84|84|85|86|87|88|90|90|91|0\n52|52|48|47|46|46|49|45|44|42|42|41|40|39|38|37|36|35|34|33|32|31|30|28|28|29|51|29|30|31|32|33|34|35|36|37|38|39|40|41|43|43|44|45|50|47|48|49|50|51|53|53|0\n21|18|17|17|16|14|14|13|12|12|20|13|15|15|16|19|18|19|20|21|0\n54|52|51|51|50|48|48|47|46|45|45|44|43|41|38|37|37|39|36|35|34|32|32|31|30|29|29|42|30|31|33|33|34|35|36|40|38|39|40|41|42|43|44|55|46|47|49|49|50|53|52|53|54|55|0\n48|47|47|45|44|41|40|40|39|39|37|36|35|35|34|31|31|32|29|29|28|26|26|27|46|27|28|30|30|33|32|33|34|38|36|37|38|43|42|41|42|43|44|45|46|49|48|49|0\n44|43|41|41|39|38|37|37|36|35|34|33|33|32|31|29|27|27|26|25|24|24|30|25|26|28|28|29|30|31|32|45|34|35|36|40|38|39|40|42|42|43|44|45|0\n18|17|16|15|15|14|13|12|11|11|12|13|14|19|16|17|18|19|0\n13|9|9|10|8|8|12|11|10|11|12|13|0\n21|20|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0\n28|27|26|25|24|24|21|20|19|19|18|17|16|16|23|17|18|22|20|21|22|23|29|25|26|27|28|29|0\n45|44|44|43|42|42|39|38|38|40|37|36|34|34|32|32|31|31|48|49|30|28|28|27|27|51|29|29|30|50|33|33|35|35|36|37|41|39|40|41|47|43|46|45|46|47|48|49|50|51|0\n45|44|43|42|41|39|39|37|37|35|34|33|32|32|36|46|47|30|30|29|28|26|26|27|49|27|28|29|31|31|48|33|34|35|36|38|38|40|40|41|42|43|44|45|46|47|48|49|0\n32|32|30|28|28|27|25|25|24|23|22|20|19|19|18|18|31|21|20|21|22|23|24|26|26|27|29|29|30|31|33|33|0\n38|37|37|36|35|34|33|29|29|28|28|27|26|25|24|23|22|21|21|32|22|23|24|25|26|27|31|30|30|31|32|33|34|35|36|39|38|39|0\n38|36|36|37|34|33|27|27|28|26|26|30|31|25|24|23|21|21|22|35|22|23|24|25|32|29|28|29|30|31|32|33|34|35|39|37|38|39|0\n33|33|30|30|31|29|29|28|26|25|24|23|22|21|20|19|19|27|20|21|22|23|24|25|26|27|28|35|32|31|32|34|34|35|0\n29|29|28|27|26|25|25|24|22|22|21|18|18|17|17|20|19|19|20|21|23|23|24|31|26|27|28|30|30|31|0\n27|22|21|21|23|24|20|18|17|17|16|15|15|26|16|19|18|19|20|25|22|23|24|25|26|27|0\n24|23|22|22|21|19|19|17|15|15|14|14|18|16|16|17|18|20|20|21|25|23|24|25|0\n39|38|34|34|35|33|33|37|32|30|30|29|26|26|25|24|24|23|22|22|41|23|28|25|27|27|28|29|31|31|32|40|36|35|36|37|38|39|40|41|0\n50|47|46|43|43|44|42|42|48|41|39|38|38|37|37|51|36|35|33|33|32|29|29|30|28|28|53|31|30|31|32|34|34|35|36|52|40|39|40|41|49|45|44|45|46|47|48|49|50|51|52|53|0\n26|25|24|24|21|21|20|19|19|17|16|15|15|18|16|17|18|23|20|22|22|23|27|25|26|27|0\n85|84|83|81|81|80|78|77|77|79|86|87|73|72|72|74|71|69|69|68|68|66|66|65|64|63|61|61|60|59|58|56|55|55|54|53|52|51|49|48|47|46|46|50|89|47|48|49|50|51|52|53|54|57|56|57|58|59|60|62|62|63|64|65|67|67|76|70|70|71|75|73|74|75|76|88|78|79|80|82|82|83|84|85|86|87|88|89|0\n42|40|40|39|37|37|36|35|35|34|32|32|30|28|28|27|25|25|24|23|23|31|24|26|26|27|29|29|30|31|33|33|34|43|36|38|38|39|41|41|42|43|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n36|35|33|32|31|30|29|28|28|27|25|25|24|22|22|21|21|20|20|37|23|23|24|26|26|27|34|29|30|31|32|33|34|35|36|37|0\n56|55|54|54|50|49|48|48|51|47|39|38|37|37|40|36|35|35|42|34|33|33|44|45|32|31|30|30|53|31|32|46|34|43|36|41|38|39|40|41|42|43|44|45|46|47|52|49|50|51|52|53|57|55|56|57|0\n38|37|36|36|34|33|31|30|29|29|27|27|26|24|23|23|22|21|21|35|22|25|24|25|26|28|28|32|30|31|32|33|34|35|39|37|38|39|0\n16|15|14|13|13|11|10|10|12|11|12|17|14|15|16|17|0\n31|27|25|25|26|28|24|22|22|20|20|19|18|17|17|30|18|19|21|21|23|23|24|29|26|27|28|29|30|31|0\n34|32|32|31|31|30|28|28|26|25|23|22|22|21|20|19|19|27|20|21|24|23|24|25|26|27|29|29|30|35|33|33|34|35|0\n32|32|30|30|28|27|27|26|26|34|35|25|24|23|20|20|21|22|37|21|22|23|24|25|36|29|28|29|31|31|33|33|34|35|36|37|0\n27|26|23|23|22|20|19|18|16|16|17|15|15|25|21|17|18|19|20|21|22|24|24|25|26|27|0\n76|75|73|72|72|71|68|67|66|66|65|64|62|62|63|60|59|59|61|58|57|55|53|53|52|50|50|49|45|45|44|44|47|42|41|41|40|40|56|43|42|43|48|46|46|47|48|49|51|51|52|54|54|55|56|57|58|77|60|61|70|63|64|65|69|67|68|69|70|71|74|73|74|75|76|77|0\n47|47|46|42|42|41|41|44|39|38|38|37|36|36|34|32|32|31|29|29|28|27|26|26|35|27|28|30|30|31|33|33|34|35|49|37|40|39|40|45|43|43|44|45|46|48|48|49|0\n31|30|27|26|25|24|21|20|20|22|23|19|18|17|17|29|18|19|28|21|22|23|24|25|26|27|28|29|30|31|0\n39|39|38|37|33|32|31|31|30|29|29|35|28|27|25|25|24|23|22|22|41|23|24|26|26|27|28|36|30|34|32|33|34|35|36|37|38|40|40|41|0\n73|72|70|68|67|66|66|65|64|62|62|61|58|57|56|55|49|49|48|46|46|45|45|51|52|44|42|41|40|40|43|39|39|59|38|38|71|60|54|41|42|43|44|53|47|47|48|50|50|51|52|53|54|55|56|57|58|59|60|61|63|63|64|65|69|67|68|69|70|71|72|73|0\n53|52|52|51|51|46|46|45|44|44|48|43|37|37|36|36|39|34|34|33|32|32|41|30|30|29|29|50|31|31|42|33|35|35|40|38|38|39|40|41|42|43|49|45|47|47|48|49|50|55|54|53|54|55|0\n28|28|26|22|22|21|21|24|19|17|17|18|16|16|27|20|18|19|20|25|23|23|24|25|26|27|29|29|0\n30|29|28|28|26|25|24|23|22|21|20|19|18|17|17|27|18|19|20|21|22|23|24|25|26|27|31|29|30|31|0\n10|10|8|7|7|9|8|9|11|11|0\n23|20|19|18|18|17|14|14|15|13|13|22|16|15|16|17|21|19|20|21|22|23|0\n54|54|53|52|48|47|46|43|43|44|45|49|42|40|39|38|37|35|34|34|33|33|31|31|30|29|29|51|30|32|32|41|36|35|36|37|38|39|40|41|42|50|44|45|46|47|48|49|50|51|52|53|55|55|0\n50|50|51|47|46|45|44|44|48|41|40|40|42|39|38|36|35|35|34|32|32|31|30|29|28|28|53|29|30|31|33|33|34|37|36|37|38|39|43|41|42|43|49|45|46|47|48|49|52|51|52|53|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n27|25|22|21|21|23|20|19|18|17|15|15|16|26|16|17|18|19|20|24|22|23|24|25|26|27|0\n12|11|11|13|10|9|9|15|10|14|12|13|14|15|0\n15|13|13|14|12|11|11|10|10|17|12|16|14|15|16|17|0\n22|22|23|21|21|20|20|19|19|27|18|17|16|16|29|17|18|28|26|25|24|23|24|25|26|27|28|29|0\n51|49|45|44|43|42|42|41|40|39|38|37|36|36|47|35|33|33|32|30|29|29|28|27|27|50|28|31|30|31|32|34|34|35|48|37|38|39|40|41|46|43|44|45|46|47|48|49|50|51|0\n46|44|42|42|41|41|40|39|39|38|34|34|33|32|31|30|30|36|28|27|26|25|25|29|26|27|28|29|37|31|32|33|35|35|36|37|38|47|40|45|43|43|44|45|46|47|0\n39|38|37|36|36|34|32|32|31|28|27|27|29|26|25|25|24|22|22|23|41|23|24|35|26|30|28|29|30|31|33|33|34|35|40|37|38|39|40|41|0\n37|35|34|33|31|31|30|29|29|28|27|24|24|23|22|21|20|20|26|21|22|23|25|25|26|27|28|36|30|32|32|33|34|35|36|37|0\n27|24|23|22|22|21|20|19|18|16|15|15|17|26|16|17|18|19|20|21|25|23|24|25|26|27|0\n20|19|18|18|17|15|15|13|12|12|14|13|14|16|16|17|21|19|20|21|0\n40|38|38|39|37|35|35|33|32|31|30|27|25|24|24|26|28|23|22|22|34|23|29|25|26|27|28|29|30|31|32|33|34|36|36|37|41|39|40|41|0\n27|27|26|26|24|23|22|18|18|19|20|17|16|16|25|17|21|19|20|21|22|23|24|25|29|28|28|29|0\n63|62|59|59|60|61|58|56|55|55|54|53|53|65|52|51|49|49|48|47|46|45|44|43|42|41|40|39|38|37|35|35|36|67|36|37|38|39|40|41|42|43|44|45|46|47|48|50|50|51|52|66|54|57|56|57|58|64|60|61|62|63|64|65|66|67|0\n5|5|6|7|6|7|0\n51|49|45|45|44|42|41|41|39|38|38|37|36|35|35|47|31|30|29|29|32|33|28|27|27|50|28|34|30|31|32|33|34|48|36|37|40|39|40|43|42|43|44|46|46|47|48|49|50|51|0\n34|34|31|31|28|27|26|26|29|24|23|21|21|22|20|19|19|33|20|25|22|23|24|25|30|27|28|29|30|32|32|33|35|35|0\n19|15|14|14|16|12|12|11|11|18|13|13|17|15|16|17|18|19|0\n15|14|13|13|12|10|10|11|17|11|12|16|14|15|16|17|0\n9|9|10|8|7|7|8|11|10|11|0\n38|37|35|34|33|32|32|31|29|29|28|28|27|26|24|24|22|21|21|23|22|23|25|25|26|27|39|30|30|31|36|33|34|35|36|37|38|39|0\n84|83|82|79|79|78|78|77|76|75|73|72|72|71|70|69|68|66|65|64|63|63|62|58|58|59|57|56|56|54|54|55|53|52|51|47|46|46|44|44|45|49|50|45|48|47|48|49|50|51|52|53|85|55|61|57|60|59|60|61|62|67|64|65|66|67|68|69|70|71|74|73|74|75|76|77|81|80|80|81|82|83|84|85|0\n25|24|23|21|21|20|20|26|27|19|18|16|16|17|29|17|18|19|28|22|22|23|24|25|26|27|28|29|0\n37|36|36|38|31|30|30|29|28|28|33|26|25|24|24|23|22|21|21|35|22|23|27|25|26|27|34|29|32|31|32|33|34|35|39|37|38|39|0\n7|7|6|6|9|8|8|9|0\n18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0\n22|22|20|20|21|24|25|18|18|17|15|15|16|27|16|17|19|19|26|21|23|23|24|25|26|27|0\n36|35|34|33|32|30|29|27|27|26|25|25|24|23|22|21|20|20|37|21|22|23|24|31|26|28|28|29|30|31|32|33|34|35|36|37|0\n43|43|42|41|41|45|40|38|38|37|35|35|33|32|32|31|29|27|27|28|26|25|25|47|26|30|28|29|30|31|34|33|34|36|36|37|39|39|40|46|42|44|44|45|46|47|0\n53|52|51|49|49|50|48|46|45|45|43|42|41|41|40|39|38|37|37|35|34|33|31|31|30|29|29|36|30|32|32|33|34|35|36|55|38|39|40|44|42|43|44|47|46|47|48|54|50|51|52|53|54|55|0\n30|30|28|25|23|22|22|24|21|21|20|18|17|17|19|29|18|19|20|27|26|23|24|25|26|27|28|29|31|31|0\n68|66|65|64|63|62|60|60|59|57|57|58|56|55|54|53|51|51|50|49|47|39|39|40|41|42|43|44|38|38|46|37|36|36|69|37|48|45|40|41|42|43|44|45|46|47|48|49|50|52|52|53|54|55|56|67|58|59|61|61|62|63|64|65|66|67|68|69|0\n46|44|43|41|41|42|40|39|38|38|37|36|34|32|30|29|29|31|28|27|25|25|26|35|26|27|28|33|30|31|32|33|34|35|36|37|47|39|40|45|42|43|44|45|46|47|0\n48|46|46|45|44|43|42|41|41|40|38|37|37|32|32|31|28|28|29|27|26|26|34|35|36|27|30|29|30|31|33|33|34|35|36|39|38|39|40|49|42|43|44|45|47|47|48|49|0\n54|52|50|50|51|49|47|47|46|45|40|40|39|37|36|36|38|42|34|33|33|32|31|31|29|29|30|55|30|44|32|35|34|35|43|37|38|39|41|41|42|43|44|45|46|48|48|49|53|51|52|53|54|55|0\n31|29|28|26|25|25|24|23|19|19|20|21|22|17|17|18|18|30|20|21|22|23|24|27|26|27|28|29|30|31|0\n25|24|23|22|22|26|27|20|20|19|18|17|16|16|29|17|18|19|21|21|28|23|24|25|26|27|28|29|0\n29|29|26|26|27|25|24|23|22|22|20|19|18|17|17|21|18|19|20|21|31|23|24|25|28|27|28|30|30|31|0\n31|29|28|26|24|22|22|23|25|21|18|18|19|17|17|30|20|19|20|21|27|23|24|25|26|27|28|29|30|31|0\n21|21|20|19|17|16|15|15|14|13|13|23|14|18|16|17|18|19|20|22|22|23|0\n43|34|34|35|36|37|33|33|39|32|32|41|31|30|30|29|28|28|26|25|24|24|27|25|26|27|45|29|44|31|42|40|38|35|36|37|38|39|40|41|42|43|44|45|0\n58|57|56|56|54|54|53|52|50|49|48|48|47|45|45|44|44|60|61|43|41|38|38|39|37|37|36|35|33|33|34|63|34|35|36|42|40|39|40|41|42|43|62|46|46|47|51|49|50|51|52|53|55|55|59|57|58|59|60|61|62|63|0\n46|45|44|44|43|41|40|40|38|36|35|34|34|33|32|30|29|28|28|27|26|25|25|39|26|27|31|29|30|31|32|33|37|35|36|37|38|39|42|41|42|43|47|45|46|47|0\n34|32|32|33|35|36|29|28|28|27|25|25|24|24|22|22|21|20|20|21|23|23|31|26|26|27|30|29|30|31|37|33|34|35|36|37|0\n48|48|47|45|42|40|39|39|38|37|37|43|35|34|33|32|31|31|30|27|27|28|26|26|46|29|28|29|30|36|32|33|34|35|36|44|38|41|40|41|42|43|44|45|46|47|49|49|0\n21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0\n36|35|34|33|32|31|30|30|28|26|25|25|24|23|22|20|20|21|29|21|22|23|24|27|26|27|28|29|37|31|32|33|34|35|36|37|0\n61|61|60|59|59|57|56|53|52|51|51|54|50|48|48|47|45|44|44|43|42|40|39|38|38|37|36|35|33|33|34|58|34|35|36|37|41|39|40|41|42|43|46|45|46|47|49|49|50|55|52|53|54|55|56|57|58|63|60|62|62|63|0\n34|34|30|30|31|29|27|26|26|25|23|22|22|21|20|19|19|33|20|21|24|23|24|25|28|27|28|29|32|31|32|33|35|35|0\n22|21|21|23|20|16|16|17|14|14|15|19|25|15|18|17|18|19|20|24|22|23|24|25|0\n38|37|36|35|34|34|33|31|31|29|28|27|26|24|23|23|22|21|21|30|22|25|24|25|26|27|28|29|30|32|32|33|39|35|36|37|38|39|0\n15|15|16|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n37|36|34|33|31|30|29|28|28|27|26|24|23|23|22|20|20|21|35|21|22|25|24|25|26|27|32|29|30|31|32|33|34|35|36|37|0\n38|38|37|36|35|35|34|34|41|33|31|31|30|29|28|24|24|25|23|23|27|43|26|25|26|27|28|29|30|32|32|33|42|40|36|37|39|39|40|41|42|43|0\n27|25|24|23|22|22|21|20|18|17|16|15|15|19|16|17|18|19|20|21|26|23|24|25|26|27|0\n17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0\n50|50|46|45|44|43|42|42|47|40|40|39|36|36|35|34|33|33|32|30|29|29|28|27|27|49|28|31|30|31|32|38|34|35|37|37|38|39|41|41|48|43|44|45|46|47|48|49|51|51|0\n47|46|46|45|39|39|40|38|36|36|37|42|35|34|33|33|44|31|29|28|28|27|26|26|32|27|30|29|30|31|32|49|34|35|43|37|38|41|40|41|42|43|44|45|48|47|48|49|0\n58|58|59|57|55|54|53|53|52|51|50|50|49|48|46|44|44|43|41|41|40|39|37|37|36|34|34|33|32|32|47|33|35|35|36|38|38|39|40|42|42|43|45|45|46|47|48|49|61|51|52|56|54|55|56|57|60|59|60|61|0\n49|46|46|45|44|40|39|38|37|37|36|36|42|34|34|33|31|31|30|29|28|26|26|27|48|27|28|29|30|32|32|33|35|35|43|41|38|39|40|41|42|43|44|45|47|47|48|49|0\n54|53|51|51|50|47|47|48|46|45|44|43|43|42|41|40|38|38|36|35|33|32|32|31|29|29|30|37|30|31|34|33|34|35|36|37|39|39|40|41|42|55|44|45|46|49|48|49|50|52|52|53|54|55|0\n49|48|48|47|46|46|45|43|40|39|39|41|37|37|36|33|33|32|32|31|29|29|28|27|27|44|28|30|30|31|35|34|34|35|36|38|38|42|40|41|42|43|44|45|51|47|50|49|50|51|0\n28|27|27|26|24|23|22|22|25|21|19|18|18|17|17|31|20|19|20|21|30|23|24|25|26|29|28|29|30|31|0\n25|22|22|21|20|18|18|17|16|15|14|14|24|15|16|17|19|19|20|21|23|23|24|25|0\n31|30|30|29|28|27|26|25|25|23|22|21|20|19|18|18|24|19|20|21|22|23|24|33|26|27|28|29|32|31|32|33|0\n61|59|56|56|55|54|53|53|52|51|48|45|45|44|44|43|43|49|42|41|37|37|36|35|35|39|34|33|32|32|60|33|34|40|36|38|38|39|40|41|42|50|47|46|46|47|48|49|50|51|52|58|54|55|57|57|58|59|60|61|0\n4|4|5|5|0\n11|11|12|13|10|9|9|15|10|14|12|13|14|15|0\n51|51|50|49|48|48|47|45|44|43|41|41|42|38|38|37|35|35|34|32|31|31|30|29|28|28|40|29|30|33|32|33|34|36|36|37|39|39|40|46|42|43|44|45|46|47|53|49|50|52|52|53|0\n65|65|66|64|63|62|62|68|58|58|59|57|55|55|54|52|51|50|50|49|48|47|46|45|44|43|41|40|39|38|38|37|36|36|61|37|42|39|40|41|42|43|44|45|46|47|48|49|53|51|52|53|54|56|56|57|60|59|60|61|69|63|64|67|66|67|68|69|0\n32|32|30|29|25|24|23|21|21|22|26|27|20|19|18|18|31|19|20|28|22|23|24|25|26|27|28|29|30|31|33|33|0\n17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0\n46|45|44|44|42|39|39|36|36|35|33|33|32|30|29|29|28|28|27|26|25|25|41|43|26|27|38|31|30|31|32|34|34|35|37|37|38|40|40|41|42|43|47|45|46|47|0\n43|42|41|39|37|37|36|35|33|28|28|29|30|31|32|27|26|24|23|23|25|40|24|25|26|27|34|29|30|31|32|33|34|35|36|38|38|39|40|41|42|43|0\n83|83|82|81|79|78|78|77|75|73|73|72|72|71|70|66|66|67|65|65|64|64|63|60|60|59|59|57|56|55|54|53|51|49|47|47|48|46|46|45|44|44|58|45|52|50|48|49|50|51|52|53|54|55|56|57|58|62|61|61|62|63|85|69|68|67|68|69|70|71|76|74|74|75|76|77|80|79|80|81|82|84|84|85|0\n31|29|29|28|26|24|23|23|22|21|19|19|18|17|17|27|18|20|20|21|22|25|24|25|26|27|28|30|30|31|0\n44|44|43|42|41|40|38|38|37|37|46|47|34|34|33|31|31|32|30|29|28|27|26|26|49|27|28|29|30|36|32|33|35|35|36|48|39|39|40|41|42|43|45|45|46|47|48|49|0\n84|82|81|78|78|79|77|76|75|75|74|70|70|68|68|69|67|66|66|65|63|62|61|60|60|59|58|58|57|53|53|52|51|51|50|49|47|47|46|45|44|44|56|45|46|48|48|49|50|55|52|54|54|55|56|57|85|59|64|61|62|63|64|65|73|67|72|69|71|71|72|73|74|83|76|77|80|79|80|81|82|83|84|85|0\n11|8|8|7|7|10|9|9|10|11|0\n51|50|49|47|46|45|45|44|42|41|41|39|39|38|37|36|36|52|53|35|32|32|33|31|30|29|29|55|30|31|34|33|34|35|54|37|38|40|40|43|42|43|44|48|46|47|48|49|50|51|52|53|54|55|0\n11|9|8|7|7|10|8|9|10|11|0\n56|55|54|52|51|51|50|50|49|48|46|44|44|43|41|41|40|39|37|37|36|35|33|33|32|30|30|31|47|31|32|34|34|35|36|38|38|39|40|42|42|43|45|45|46|47|48|49|57|53|52|53|54|55|56|57|0\n64|63|61|61|60|59|58|57|57|55|54|53|52|49|45|44|43|43|46|42|42|41|40|40|39|38|37|36|36|35|34|34|56|35|51|37|38|39|50|41|48|47|44|45|46|47|48|49|50|51|52|53|54|55|56|65|58|59|60|62|62|63|64|65|0\n48|43|42|42|41|40|40|45|46|39|39|37|35|33|33|32|31|31|28|28|27|26|26|30|38|27|29|29|30|36|32|34|34|35|36|37|38|49|47|41|44|43|44|45|46|47|48|49|0\n42|41|41|40|36|36|35|34|33|32|32|38|30|28|28|29|27|26|26|25|24|24|45|25|44|27|31|29|30|31|39|33|34|35|37|37|38|39|40|43|42|43|44|45|0\n48|47|47|46|45|44|43|42|42|41|40|39|37|37|38|51|35|34|34|33|32|30|30|29|28|28|53|29|31|31|32|33|36|35|36|52|38|39|40|41|50|43|44|45|46|49|48|49|50|51|52|53|0\n42|41|40|38|38|37|35|34|34|33|32|32|31|29|28|28|24|24|25|23|23|27|26|25|26|27|30|29|30|31|43|33|36|35|36|37|39|39|40|41|42|43|0\n8|6|6|7|9|7|8|9|0\n48|47|46|44|43|42|41|40|40|39|38|37|37|36|34|33|33|31|28|28|29|27|26|26|32|27|30|29|30|31|32|35|34|35|36|49|38|39|45|41|42|43|44|45|46|47|48|49|0\n38|38|33|32|32|31|30|28|28|29|35|27|25|24|24|23|22|21|21|37|22|23|26|25|26|27|36|29|30|31|34|33|34|35|36|37|39|39|0\n53|51|50|49|48|47|46|44|44|42|42|40|40|39|36|35|35|37|33|33|32|30|30|29|28|28|52|29|31|31|32|34|34|38|36|37|38|39|41|41|43|43|45|45|46|47|48|49|50|51|52|53|0\n26|25|24|22|22|23|20|19|18|16|16|15|15|21|17|17|18|19|20|21|27|23|24|25|26|27|0\n26|26|27|25|23|23|22|21|20|18|18|17|16|16|29|17|19|19|20|21|22|24|24|25|28|27|28|29|0\n57|56|56|55|54|52|51|51|50|49|48|47|47|45|44|42|41|41|40|39|38|37|36|35|34|33|32|31|31|46|32|33|34|35|36|37|38|39|40|43|42|43|44|45|46|59|48|49|50|53|52|53|54|55|58|57|58|59|0\n18|16|15|15|14|13|12|11|11|19|12|13|14|17|16|17|18|19|0\n26|25|25|24|22|21|20|18|17|16|16|15|15|23|19|17|18|19|20|21|22|23|24|27|26|27|0\n67|64|63|62|62|61|60|59|58|54|52|51|51|53|50|49|49|56|48|47|46|41|41|42|43|44|39|38|37|37|36|35|35|66|36|40|38|39|40|45|42|43|44|45|46|47|48|57|50|55|52|53|54|55|56|57|58|59|60|61|65|63|64|65|66|67|0\n43|42|40|39|39|38|36|34|33|33|32|31|30|29|28|26|23|23|24|25|27|37|24|25|26|27|28|29|30|31|32|35|34|35|36|37|38|41|40|41|42|43|0\n21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0\n35|34|34|33|31|31|30|29|29|37|27|27|26|25|24|23|22|21|21|39|22|23|24|25|26|28|28|38|30|32|32|33|36|35|36|37|38|39|0\n24|24|23|23|22|21|21|19|16|16|17|15|15|20|18|17|18|19|20|27|22|26|25|25|26|27|0\n84|84|83|78|78|79|77|76|74|74|75|81|72|72|71|70|69|68|67|66|65|64|61|61|62|63|86|87|59|59|56|56|55|55|54|53|52|51|50|49|47|46|46|48|89|47|48|49|50|51|52|53|54|58|57|57|58|60|60|88|62|63|64|65|66|67|68|69|70|71|73|73|82|75|76|77|80|79|80|81|82|83|85|85|86|87|88|89|0\n74|72|72|71|71|70|69|68|68|76|77|61|61|62|60|60|64|59|59|66|58|57|54|53|52|52|55|51|50|48|47|46|46|45|43|42|42|41|41|79|44|43|44|45|49|47|48|49|50|51|56|53|54|55|56|57|58|67|65|63|62|63|64|65|66|67|78|69|70|75|73|73|74|75|76|77|78|79|0\n20|19|18|18|17|16|14|12|12|13|15|13|14|15|16|17|21|19|20|21|0\n39|37|37|34|34|33|32|32|31|29|29|28|28|40|41|27|26|25|24|23|23|43|24|25|26|27|42|30|30|31|36|33|35|35|36|38|38|39|40|41|42|43|0\n59|59|58|57|57|54|54|51|50|48|48|47|46|45|44|43|42|41|40|40|52|39|38|37|36|35|34|33|32|32|56|33|34|35|36|37|38|39|53|41|42|43|44|45|46|47|49|49|50|51|52|53|55|55|56|61|58|60|60|61|0\n66|65|64|64|62|62|60|59|58|58|54|53|53|55|52|51|49|49|48|47|46|45|44|42|42|41|40|39|38|37|36|35|35|57|36|37|38|39|40|41|43|43|44|45|46|47|48|50|50|51|52|56|54|55|56|57|61|59|60|61|63|63|67|65|66|67|0\n14|14|11|10|9|9|12|13|10|11|12|13|15|15|0\n22|21|21|23|24|25|20|19|18|17|16|15|15|27|16|17|18|19|20|26|22|23|24|25|26|27|0\n27|26|25|23|21|21|22|24|20|19|19|17|16|16|18|17|18|29|20|28|22|23|24|25|26|27|28|29|0\n31|28|27|26|26|25|24|23|20|19|19|21|18|17|17|30|18|22|20|21|22|23|24|25|29|27|28|29|30|31|0\n29|28|28|27|26|26|24|23|21|20|19|18|17|17|22|25|18|19|20|21|22|23|24|25|31|27|30|29|30|31|0\n29|26|25|25|24|23|22|20|19|19|18|17|16|16|28|17|18|21|20|21|22|23|24|27|26|27|28|29|0\n65|63|62|61|59|59|58|55|54|50|49|49|48|45|44|44|43|43|47|52|42|41|40|39|39|56|38|37|36|35|34|34|64|35|36|37|38|57|40|41|42|53|46|45|46|47|48|51|50|51|52|53|54|55|56|57|58|60|60|61|62|63|64|65|0\n56|55|52|51|51|53|49|49|48|48|47|46|44|43|43|42|41|41|58|59|38|38|37|36|35|34|33|33|32|32|61|40|34|35|36|37|39|39|40|60|42|45|44|45|46|47|57|50|50|54|52|53|54|55|56|57|58|59|60|61|0\n47|46|46|45|44|43|42|42|40|39|37|37|36|34|34|33|32|31|30|28|28|27|26|26|41|27|29|29|30|31|32|33|35|35|36|38|38|39|40|41|49|43|44|45|48|47|48|49|0\n50|49|48|47|46|44|44|45|42|41|40|39|38|36|36|35|33|33|32|31|30|29|28|27|27|43|28|29|30|31|32|34|34|35|37|37|38|39|40|41|42|43|51|45|46|47|48|49|50|51|0\n42|41|41|40|36|35|35|37|34|33|32|31|30|28|28|26|26|25|24|23|23|39|24|25|27|27|29|29|30|31|32|33|34|38|36|37|38|39|40|43|42|43|0\n20|20|16|16|17|15|14|13|12|12|19|13|14|15|18|17|18|19|21|21|0\n39|38|34|33|32|32|35|31|28|27|26|26|25|25|24|22|22|21|21|37|23|23|24|30|29|27|28|29|30|31|36|33|34|35|36|37|38|39|0\n39|39|40|38|37|35|34|34|33|33|42|30|30|29|28|27|26|25|24|23|23|32|24|25|26|27|28|29|31|31|32|43|36|35|36|37|38|41|40|41|42|43|0\n19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0\n31|29|28|28|26|25|24|23|21|20|20|19|18|17|17|27|18|19|22|21|22|23|24|25|26|27|30|29|30|31|0\n46|45|41|40|40|42|43|39|38|36|35|35|32|32|33|34|30|29|27|26|26|25|25|31|28|27|28|29|30|31|47|33|34|37|36|37|38|39|44|41|42|43|44|45|46|47|0\n25|24|22|22|20|20|21|18|18|17|16|15|15|27|16|17|19|19|26|21|23|23|24|25|26|27|0\n64|64|63|62|61|60|59|58|56|55|55|53|53|50|50|51|48|48|49|66|47|46|44|43|43|42|41|41|68|39|37|36|36|38|40|37|38|39|40|69|42|45|44|45|46|47|67|49|52|51|52|54|54|57|56|57|58|59|60|61|62|63|65|65|66|67|68|69|0\n43|40|40|39|36|35|34|33|33|32|32|31|29|27|27|28|26|24|23|23|25|42|24|25|26|30|28|29|30|31|38|37|34|35|36|37|38|39|41|41|42|43|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n47|44|44|43|41|40|35|35|36|34|34|38|33|33|32|31|29|28|28|27|25|25|26|46|26|27|30|29|30|31|32|42|39|37|36|37|38|39|40|41|42|43|45|45|46|47|0\n36|33|33|34|31|31|30|29|29|28|26|26|23|23|22|21|20|20|25|21|22|24|24|25|27|27|28|37|30|32|32|35|34|35|36|37|0\n40|39|39|37|34|34|35|33|29|29|28|28|31|27|24|23|23|25|22|22|38|26|24|25|26|27|32|30|30|31|32|33|36|35|36|37|38|41|40|41|0\n14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0\n68|68|67|65|64|64|63|62|62|70|71|59|58|58|57|56|56|53|52|50|50|49|49|54|48|46|45|44|44|43|41|41|40|39|38|38|73|39|40|42|42|43|47|45|46|47|48|55|51|51|52|53|54|55|61|57|60|59|60|61|72|63|66|65|66|67|69|69|70|71|72|73|0\n26|24|23|23|20|20|21|19|19|17|16|16|15|15|18|17|18|27|22|21|22|25|24|25|26|27|0\n33|31|29|29|28|27|25|25|24|22|21|20|20|19|18|18|32|19|23|21|22|23|24|26|26|27|28|30|30|31|32|33|0\n19|16|12|12|13|11|11|15|17|18|14|13|14|15|16|17|18|19|0\n45|43|43|42|41|41|46|47|36|35|35|34|33|32|32|38|31|30|29|29|28|27|26|26|49|27|28|40|30|31|39|33|34|37|36|37|38|39|40|48|42|44|44|45|46|47|48|49|0\n28|28|27|25|23|22|20|19|19|21|18|16|16|17|26|17|18|24|20|21|22|23|24|25|26|27|29|29|0\n9|7|6|6|8|7|8|9|0\n68|67|66|65|64|63|63|62|61|59|57|57|55|55|51|50|50|52|48|47|47|46|45|45|44|43|41|40|40|38|38|37|36|36|60|37|39|39|42|41|42|43|44|54|46|49|48|49|53|51|52|53|54|56|56|58|58|59|60|61|62|69|64|65|66|67|68|69|0\n57|56|55|53|53|52|51|50|49|46|45|45|47|48|43|42|41|40|40|39|38|36|35|34|33|33|32|31|31|59|32|37|34|35|36|37|38|39|44|41|42|43|44|58|46|47|48|49|50|51|52|54|54|55|56|57|58|59|0\n44|43|43|41|40|38|38|37|36|35|34|32|31|29|28|28|30|27|26|25|24|24|42|25|26|27|33|29|30|31|32|33|34|35|36|37|39|39|40|41|42|45|44|45|0\n70|69|68|67|66|66|64|63|58|58|59|56|55|55|54|53|52|52|61|50|50|48|48|47|46|45|44|42|41|40|40|39|38|37|37|65|38|39|43|41|42|43|44|45|46|47|49|49|51|51|62|53|54|57|56|57|60|59|60|61|62|63|64|65|71|67|68|69|70|71|0\n67|65|65|64|62|61|60|60|59|58|57|57|68|69|56|55|54|53|51|50|50|49|47|47|46|45|44|43|41|40|39|38|38|37|37|71|42|39|40|41|42|43|44|45|46|48|48|49|52|51|52|53|54|55|56|70|58|59|63|61|62|63|64|66|66|67|68|69|70|71|0\n16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0\n53|52|51|50|48|48|46|45|45|44|41|41|42|43|54|55|40|38|37|36|36|35|33|33|32|31|30|30|57|31|32|34|34|35|39|37|38|39|40|56|42|43|44|47|46|47|49|49|50|51|52|53|54|55|56|57|0\n18|18|16|16|14|13|12|11|11|15|12|13|14|15|17|17|19|19|0\n21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0\n51|51|50|49|44|41|40|39|38|37|37|42|36|36|35|34|33|33|46|47|32|31|30|29|28|28|53|29|30|31|32|48|34|35|45|43|38|39|40|41|42|43|44|45|46|47|48|49|50|52|52|53|0\n62|61|60|59|58|56|56|55|54|53|53|52|51|50|47|44|42|42|43|45|41|40|40|39|38|37|36|35|34|33|33|49|34|35|36|37|38|39|48|41|46|43|44|45|46|47|48|49|50|51|52|63|54|55|57|57|58|59|60|61|62|63|0\n79|78|78|77|76|75|73|73|72|71|70|69|68|67|66|65|64|64|63|62|60|58|58|57|56|54|54|53|50|49|49|48|48|47|46|45|44|43|42|42|61|43|44|45|46|47|52|51|50|51|52|53|55|55|56|57|59|59|60|61|62|63|81|65|66|67|68|69|70|71|72|74|74|75|76|77|80|79|80|81|0\n15|14|14|13|12|12|11|10|10|11|17|13|16|15|16|17|0\n39|37|36|34|28|28|29|30|31|27|27|33|26|25|24|23|22|21|21|38|22|23|24|25|26|35|32|29|30|31|32|33|34|35|36|37|38|39|0\n47|45|44|43|41|40|40|39|36|34|33|33|32|31|31|37|30|28|28|27|26|25|25|46|26|27|29|29|30|38|32|35|34|35|36|37|38|39|42|41|42|43|44|45|46|47|0\n23|21|21|22|20|19|18|18|16|15|14|14|17|15|16|17|25|19|20|24|22|23|24|25|0\n20|20|19|18|17|16|16|15|14|13|13|23|14|15|22|17|18|19|21|21|22|23|0\n38|37|36|35|35|34|32|32|28|26|26|25|25|29|24|23|22|21|21|31|22|23|24|30|27|27|28|29|30|31|33|33|34|39|36|37|38|39|0\n54|53|53|50|49|47|47|46|45|44|43|42|42|41|39|39|38|35|34|34|36|33|32|30|30|29|29|52|31|31|32|33|37|35|36|37|38|40|40|41|51|43|44|45|46|48|48|49|50|51|52|55|54|55|0\n32|32|28|27|27|29|25|23|23|24|22|20|19|19|18|18|31|21|20|21|22|26|24|25|26|30|28|29|30|31|33|33|0\n20|19|19|18|17|15|14|12|12|13|16|13|14|15|16|17|18|21|20|21|0\n39|38|36|35|35|34|33|33|32|28|27|27|29|26|25|25|23|23|22|22|41|24|24|31|26|30|28|29|30|31|32|40|34|37|36|37|38|39|40|41|0\n32|32|29|29|27|26|26|25|24|23|22|21|20|18|18|19|31|19|20|21|22|23|24|25|28|27|28|30|30|31|33|33|0\n41|38|38|39|37|35|35|36|42|34|33|32|31|31|44|45|27|27|28|26|26|25|25|47|30|29|28|29|30|46|32|33|34|43|36|37|40|39|40|41|42|43|44|45|46|47|0\n26|25|25|23|23|21|19|18|17|17|16|15|15|22|16|20|18|19|20|21|22|24|24|27|26|27|0\n10|10|9|7|7|8|8|9|11|11|0\n25|24|23|22|22|26|27|21|20|19|18|17|16|16|29|17|18|19|20|21|28|23|24|25|26|27|28|29|0\n41|37|36|36|35|34|32|32|33|31|28|27|27|29|26|24|24|23|22|22|40|23|25|25|26|30|28|29|30|31|39|33|34|35|38|37|38|39|40|41|0\n50|50|51|49|49|48|47|44|43|42|42|39|37|37|36|35|33|33|34|40|32|30|30|29|28|28|46|29|31|31|32|41|34|35|36|38|38|39|40|41|45|43|44|45|46|47|48|53|52|51|52|53|0\n27|24|24|23|23|22|22|21|20|19|19|18|16|16|17|17|18|29|20|21|28|26|25|25|26|27|28|29|0\n11|10|8|7|7|9|8|9|10|11|0\n9|6|6|7|8|7|8|9|0\n40|37|37|38|39|36|33|33|32|30|30|31|29|28|28|42|43|27|26|25|24|24|45|25|26|27|44|29|35|31|32|34|34|35|36|41|38|39|40|41|42|43|44|45|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n61|60|58|58|57|55|54|53|51|51|52|50|49|48|45|45|46|44|42|42|41|40|39|39|62|63|37|36|36|35|34|34|65|35|38|37|38|64|40|41|43|43|44|47|46|47|48|49|50|56|52|53|54|55|56|57|59|59|60|61|62|63|64|65|0\n43|41|40|40|42|39|38|36|36|35|34|34|33|31|30|30|27|27|26|25|24|24|29|25|26|28|28|29|32|31|32|33|45|35|37|37|38|39|44|41|42|43|44|45|0\n18|15|15|14|14|17|13|12|11|11|12|13|19|16|16|17|18|19|0\n21|20|20|19|19|17|15|14|14|13|13|18|16|15|16|17|18|23|22|21|22|23|0\n17|14|14|15|16|13|11|11|12|19|12|13|18|15|16|17|18|19|0\n55|53|50|49|48|48|47|44|44|43|41|41|39|38|38|37|37|46|36|34|34|33|31|30|30|29|29|54|32|31|32|33|35|35|36|52|40|39|40|42|42|43|45|45|46|47|51|49|50|51|52|53|54|55|0\n58|57|57|53|52|51|50|48|48|49|54|47|44|44|43|41|41|40|40|39|38|37|36|33|33|34|32|31|31|56|32|35|34|35|36|37|38|39|46|42|42|43|45|45|46|47|55|49|50|51|52|53|54|55|56|59|58|59|0\n35|34|33|33|32|30|30|29|29|27|26|25|23|22|22|21|20|20|28|21|24|23|24|25|26|27|28|37|31|31|32|36|34|35|36|37|0\n35|34|33|33|32|31|30|29|29|27|26|25|24|23|22|21|20|20|28|21|22|23|24|25|26|27|28|37|30|31|32|36|34|35|36|37|0\n24|23|20|20|21|22|17|17|15|15|14|14|19|16|16|18|18|19|25|21|22|23|24|25|0\n25|24|23|22|22|21|20|20|18|17|16|15|15|19|16|17|18|19|27|21|26|23|24|25|26|27|0\n36|35|34|33|33|31|30|29|28|27|26|25|23|22|22|21|20|20|32|21|24|23|24|25|26|27|28|29|30|31|32|37|34|35|36|37|0\n35|34|33|32|32|31|30|29|29|26|25|23|23|22|22|21|20|20|28|21|27|24|24|25|26|27|28|37|30|31|36|33|34|35|36|37|0\n72|72|68|68|67|56|55|55|57|54|54|59|53|52|51|51|61|50|50|63|49|49|65|48|47|46|46|45|43|43|42|41|40|39|38|38|71|39|40|41|42|44|44|45|70|47|48|66|64|62|52|53|60|58|56|57|58|59|60|61|62|63|64|65|66|67|69|69|70|71|73|73|0\n43|38|38|37|35|35|36|40|33|30|30|29|29|32|28|24|24|25|26|23|23|42|27|25|26|27|28|34|31|31|32|33|34|41|36|37|39|39|40|41|42|43|0\n15|14|14|13|12|12|11|10|10|11|17|13|16|15|16|17|0\n42|41|40|40|38|37|36|35|34|33|30|30|29|29|27|27|26|25|24|23|23|39|24|25|26|28|28|32|31|31|32|33|34|35|36|37|38|39|43|41|42|43|0\n36|35|34|32|32|31|30|29|29|28|27|25|24|23|22|21|20|20|26|21|22|23|24|25|26|27|28|37|30|31|33|33|34|35|36|37|0\n31|29|29|28|26|26|27|25|24|23|22|22|20|19|18|18|21|19|20|21|33|23|24|25|32|27|28|30|30|31|32|33|0\n49|48|46|46|44|43|42|42|40|38|38|37|34|34|35|32|32|31|29|29|28|27|26|26|41|27|28|30|30|31|33|33|36|35|36|37|39|39|40|41|45|43|44|45|47|47|48|49|0\n37|36|36|35|34|33|32|30|30|29|29|39|28|27|26|25|24|23|22|22|41|23|24|25|26|27|28|40|31|31|32|33|34|35|38|37|38|39|40|41|0\n19|18|16|15|12|12|13|11|11|17|14|13|14|15|16|17|18|19|0\n46|45|44|43|42|41|41|40|38|37|36|35|34|33|33|32|30|30|29|27|26|25|25|28|26|27|28|29|31|31|32|39|34|35|36|37|38|39|40|47|42|43|44|45|46|47|0\n88|87|86|84|84|83|82|81|81|79|76|73|73|74|72|71|70|68|68|69|67|66|65|65|78|62|62|63|60|57|57|56|55|55|54|52|52|51|49|49|48|46|46|47|61|47|48|50|50|51|53|53|54|59|56|58|58|59|60|61|64|63|64|80|66|67|77|69|70|71|72|75|74|75|76|77|78|79|80|89|82|83|85|85|86|87|88|89|0\n29|27|26|22|21|21|20|19|19|24|17|17|16|16|28|18|18|25|20|23|22|23|24|25|26|27|28|29|0\n29|28|27|25|25|24|24|23|21|21|20|19|18|17|17|31|18|19|20|22|22|23|30|26|26|27|28|29|30|31|0\n45|44|43|41|40|40|42|46|47|39|38|37|36|35|31|31|32|33|30|28|27|27|26|26|49|29|28|29|30|34|32|33|34|35|36|37|38|39|48|41|42|43|44|45|46|47|48|49|0\n32|31|31|29|27|25|25|24|23|22|22|21|20|19|18|18|30|19|20|21|28|23|24|26|26|27|28|29|30|33|32|33|0\n33|32|30|29|28|27|26|26|25|23|21|21|20|19|18|18|24|19|20|22|22|23|24|25|31|27|28|29|30|31|32|33|0\n34|33|31|30|30|29|28|27|27|26|24|24|22|21|20|19|19|23|20|21|22|23|25|25|26|35|28|29|32|31|32|33|34|35|0\n82|80|80|79|78|76|76|75|74|73|72|70|68|67|66|66|69|65|64|63|63|62|61|59|58|57|56|55|53|53|49|49|48|47|47|51|44|44|45|43|43|60|46|45|46|52|48|50|50|51|52|54|54|55|56|57|58|59|60|61|62|83|64|65|71|67|68|69|70|71|72|73|74|75|77|77|78|79|81|81|82|83|0\n63|62|61|60|59|57|57|55|54|52|51|51|50|50|49|49|64|65|48|47|46|45|43|42|41|41|40|39|37|37|35|35|36|67|36|38|38|39|40|44|42|43|44|45|46|47|48|66|56|53|52|53|54|55|56|58|58|59|60|61|62|63|64|65|66|67|0\n51|51|50|49|49|46|45|44|43|42|42|41|37|37|36|35|34|34|39|32|32|31|30|29|28|28|48|29|30|31|33|33|40|35|36|38|38|39|40|41|47|43|44|45|46|47|48|53|50|52|52|53|0\n40|39|39|38|36|36|31|24|24|25|26|23|23|28|29|30|22|22|33|34|35|32|27|25|26|27|28|29|30|31|32|33|34|35|37|37|38|41|40|41|0\n37|35|33|32|27|27|28|29|30|26|26|25|24|23|21|20|20|22|36|21|22|23|24|25|34|31|28|29|30|31|32|33|34|35|36|37|0\n51|48|48|47|46|45|42|40|39|39|38|38|43|37|36|34|34|33|32|31|29|28|28|27|27|50|30|29|30|31|32|33|35|35|36|37|44|41|40|41|42|43|44|45|46|47|49|49|50|51|0\n5|4|4|5|0\n17|16|15|12|12|11|10|10|14|11|13|13|14|15|16|17|0\n19|17|17|16|15|12|12|11|11|14|13|13|14|15|16|18|18|19|0\n21|20|18|16|15|14|13|13|12|12|19|17|14|15|16|17|18|19|20|21|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n35|33|32|32|31|30|28|26|24|23|22|22|25|21|19|19|20|29|20|21|27|23|24|25|26|27|28|29|30|31|34|33|34|35|0\n33|32|30|29|28|27|24|24|25|21|20|20|22|19|18|18|31|19|23|21|22|23|26|25|26|27|28|29|30|31|32|33|0\n19|18|17|16|16|20|21|15|14|13|13|23|14|15|22|17|18|19|20|21|22|23|0\n25|23|23|22|20|20|21|19|18|18|16|15|15|17|16|17|27|19|26|21|22|24|24|25|26|27|0\n16|16|15|15|14|13|12|11|11|19|12|13|14|18|17|17|18|19|0\n55|55|56|50|50|48|47|47|46|46|52|45|44|42|42|40|40|39|38|37|36|35|34|33|32|31|30|30|54|31|32|33|34|35|36|37|38|39|41|41|43|43|44|45|53|49|48|49|51|51|52|53|54|57|56|57|0\n55|53|49|48|47|46|46|45|43|42|42|41|40|40|51|39|37|37|36|33|33|34|30|30|31|29|29|54|32|31|32|35|34|35|36|38|38|39|52|41|44|43|44|45|50|47|48|49|50|51|52|53|54|55|0\n55|53|51|51|50|48|48|47|45|45|44|43|42|41|40|36|36|35|33|33|34|38|30|30|31|29|29|54|32|31|32|39|34|35|37|37|38|39|40|41|42|43|44|46|46|47|49|49|50|52|52|53|54|55|0\n14|14|12|10|10|9|9|13|11|11|12|13|15|15|0\n26|26|24|23|22|20|20|19|18|16|16|15|15|25|17|17|18|19|21|21|22|23|24|25|27|27|0\n8|7|7|6|6|9|8|9|0\n20|19|18|17|17|13|13|14|12|12|16|15|14|15|16|21|18|19|20|21|0\n20|19|18|17|15|15|16|14|13|12|12|13|14|21|16|17|18|19|20|21|0\n57|55|54|52|52|51|44|43|43|45|42|41|41|47|39|38|38|37|36|36|49|34|33|33|32|31|30|30|56|31|32|35|34|35|50|37|40|39|40|48|42|46|44|45|46|47|48|49|50|51|53|53|54|55|56|57|0\n26|25|25|23|22|21|20|18|18|17|16|15|15|24|16|17|19|19|20|21|22|23|24|27|26|27|0\n41|40|39|39|38|37|37|43|34|34|33|31|30|30|29|29|26|26|27|25|24|24|45|25|28|27|28|36|32|31|32|33|35|35|36|44|38|42|40|41|42|43|44|45|0\n35|33|31|30|29|28|27|27|26|24|24|23|22|20|20|19|19|34|21|21|22|23|25|25|26|32|28|29|30|31|32|33|34|35|0\n38|37|36|35|33|32|31|31|30|30|29|28|25|25|23|22|22|21|21|27|24|23|24|26|26|27|28|29|39|34|32|33|34|35|36|37|38|39|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n32|29|28|28|30|27|27|25|24|22|22|21|20|18|18|19|26|19|20|21|23|23|24|25|26|33|31|29|30|31|32|33|0\n31|28|28|26|25|25|24|22|20|20|21|19|18|17|17|30|18|19|23|21|22|23|24|27|26|27|29|29|30|31|0\n30|29|29|27|26|22|22|23|21|21|20|19|18|17|17|28|18|19|20|25|24|23|24|25|26|27|28|31|30|31|0\n23|22|18|17|16|16|19|14|14|13|13|21|15|15|20|17|18|19|20|21|22|23|0\n53|53|54|48|46|46|47|45|44|40|40|41|39|39|43|50|38|36|36|35|33|32|32|31|30|29|29|52|30|31|34|33|34|35|37|37|38|51|42|41|42|43|44|45|49|47|48|49|50|51|52|55|54|55|0\n59|58|57|56|55|54|53|53|60|61|52|49|49|48|46|45|45|44|44|43|41|41|39|38|38|37|36|35|34|33|33|63|34|35|36|37|40|39|40|42|42|43|51|47|46|47|48|50|50|51|52|62|54|55|56|57|58|59|60|61|62|63|0\n44|42|42|43|41|41|46|37|37|38|35|35|34|32|31|30|29|29|28|27|25|25|26|40|26|27|28|33|30|31|32|33|34|36|36|39|38|39|40|47|45|43|44|45|46|47|0\n28|27|27|24|23|20|20|21|19|19|18|17|16|16|26|17|18|25|22|21|22|23|24|25|26|29|28|29|0\n35|34|34|33|31|31|28|28|25|25|26|27|24|23|22|21|20|20|37|21|22|23|24|30|26|27|29|29|30|32|32|33|36|35|36|37|0\n11|11|12|10|10|14|9|9|15|13|12|13|14|15|0\n25|25|26|22|21|20|20|19|16|16|17|15|15|24|18|17|18|19|23|21|22|23|24|27|26|27|0\n26|25|25|23|22|21|20|19|18|17|16|15|15|24|16|17|18|19|20|21|22|23|24|27|26|27|0\n49|48|48|50|46|44|44|43|42|40|38|38|39|37|36|33|32|32|34|30|30|29|28|27|27|47|28|29|31|31|35|33|34|35|36|37|41|39|40|41|42|43|45|45|46|47|51|49|50|51|0\n23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0\n13|12|11|10|9|8|8|9|10|11|12|13|0\n32|32|28|27|27|26|25|24|24|23|22|21|20|19|18|18|31|19|20|21|22|23|30|25|26|29|28|29|30|31|33|33|0\n68|67|66|65|65|64|62|62|61|58|58|59|57|57|70|71|54|53|53|52|48|47|47|46|46|50|44|43|43|45|42|41|39|39|38|38|73|40|40|41|42|56|44|45|51|49|48|49|50|51|52|55|54|55|56|72|60|59|60|61|63|63|64|69|66|67|68|69|70|71|72|73|0\n43|42|41|41|40|39|38|37|35|35|36|32|31|30|30|29|28|27|26|25|24|24|34|25|26|27|28|29|33|31|32|33|34|45|36|37|38|39|40|44|42|43|44|45|0\n46|45|45|44|44|43|40|39|39|41|38|37|36|36|34|33|30|29|29|31|27|26|26|28|35|27|28|32|30|31|32|33|34|35|49|37|38|42|40|41|42|43|48|47|46|47|48|49|0\n39|37|35|34|33|32|32|31|29|29|28|27|26|25|22|22|23|21|21|38|24|23|24|25|26|27|28|30|30|31|36|33|34|35|36|37|38|39|0\n42|41|39|37|37|38|36|34|33|32|32|31|30|29|28|26|25|24|24|23|23|43|27|25|26|27|28|29|30|31|35|33|34|35|36|40|38|39|40|41|42|43|0\n22|22|21|20|18|18|19|17|16|16|14|14|15|15|25|17|24|19|20|21|23|23|24|25|0\n44|41|41|42|40|36|36|37|38|35|34|34|33|31|30|29|29|27|26|24|24|25|28|25|26|27|28|32|30|31|32|33|45|35|39|37|38|39|40|43|42|43|44|45|0\n50|49|45|45|46|44|43|43|41|41|40|40|37|37|35|35|34|32|32|31|30|27|27|28|29|39|28|29|30|31|33|33|34|36|36|38|38|39|51|42|42|48|44|47|46|47|48|49|50|51|0\n37|37|38|35|34|32|31|30|29|28|27|27|26|24|24|23|22|21|21|36|22|23|25|25|26|33|28|29|30|31|32|33|34|35|36|39|38|39|0\n20|18|18|19|17|16|14|13|12|12|15|13|14|15|16|17|21|19|20|21|0\n33|30|29|28|27|27|26|25|24|23|22|20|20|19|18|18|32|19|21|21|22|23|24|25|26|31|28|29|30|31|32|33|0\n24|24|22|20|18|17|16|16|19|15|14|14|23|15|21|17|18|19|20|21|22|23|25|25|0\n27|27|26|25|25|23|21|21|22|19|18|17|16|16|20|17|18|19|20|24|22|23|24|29|26|28|28|29|0\n32|31|30|29|29|27|26|25|23|23|22|20|20|19|18|18|28|19|21|21|22|24|24|25|26|27|28|33|30|31|32|33|0\n35|32|32|28|27|26|25|25|29|30|24|23|22|21|20|19|19|34|20|21|22|23|24|31|26|27|28|29|30|31|33|33|34|35|0\n15|14|13|12|12|16|17|11|11|19|18|13|14|15|16|17|18|19|0\n20|18|17|15|15|16|19|12|12|13|14|13|14|21|16|17|18|19|20|21|0\n40|38|37|36|36|35|34|33|30|30|31|32|25|25|24|23|22|22|27|28|29|23|24|26|26|27|28|29|41|31|32|33|34|35|39|37|38|39|40|41|0\n72|69|69|68|68|66|65|61|61|62|60|60|59|59|58|57|56|55|54|54|53|51|51|48|48|47|46|44|43|43|42|41|38|38|39|40|50|39|40|41|42|45|44|45|46|47|49|49|50|52|52|53|73|55|56|57|58|67|64|63|62|63|64|65|66|67|71|70|70|71|72|73|0\n9|9|7|7|8|11|8|10|10|11|0\n10|7|7|8|9|11|8|9|10|11|0\n27|24|23|23|25|22|21|21|19|19|18|17|16|16|29|17|18|20|20|28|22|26|24|25|26|27|28|29|0\n24|23|22|21|20|20|19|18|16|15|14|14|17|15|16|17|18|19|25|21|22|23|24|25|0\n73|73|72|67|66|65|65|68|64|64|70|63|62|60|59|58|57|57|56|54|53|53|52|51|50|50|47|47|46|44|43|43|42|41|40|39|39|49|40|41|42|45|44|45|46|48|48|49|75|51|52|55|54|55|56|61|58|59|60|61|62|63|71|69|66|67|68|69|70|71|72|74|74|75|0\n30|29|28|27|26|25|23|23|22|22|21|20|18|17|17|19|18|19|20|21|31|24|24|25|26|27|28|29|30|31|0\n59|55|55|53|53|52|50|50|49|47|47|46|45|45|44|43|42|41|39|37|36|35|34|34|38|33|32|31|31|58|32|33|40|35|36|37|38|39|40|41|42|43|44|57|46|48|48|49|51|51|52|54|54|56|56|57|58|59|0\n44|43|43|39|38|36|35|35|34|33|33|40|32|29|28|28|30|27|26|25|24|24|42|25|26|27|31|29|30|31|32|41|34|37|36|37|38|39|40|41|42|45|44|45|0\n26|26|25|23|22|22|21|20|18|18|19|17|16|16|29|17|28|19|20|21|24|23|24|25|27|27|28|29|0\n39|37|36|33|33|32|30|30|29|28|28|27|26|25|24|21|21|22|23|38|22|23|24|25|26|27|35|29|31|31|32|34|34|35|36|37|38|39|0\n25|22|22|23|20|19|18|17|15|15|14|14|21|16|16|17|18|19|20|21|24|23|24|25|0\n22|22|19|17|17|16|16|15|13|13|14|21|14|15|20|18|18|19|20|21|23|23|0\n22|22|21|18|18|19|17|17|16|14|14|15|25|15|16|24|20|19|20|21|23|23|24|25|0\n33|32|31|31|30|28|27|26|26|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|29|27|28|29|30|34|32|33|34|35|0\n23|23|22|21|20|18|17|16|16|15|14|14|25|15|19|17|18|19|20|21|22|24|24|25|0\n31|30|26|25|24|24|27|22|21|20|19|19|17|17|18|29|18|23|20|21|22|23|28|25|26|27|28|29|30|31|0\n50|49|48|47|46|44|43|43|41|41|40|39|37|36|36|35|35|34|33|30|30|28|28|27|27|32|29|29|31|31|32|33|34|51|38|37|38|39|40|42|42|45|44|45|46|47|48|49|50|51|0\n35|33|32|31|30|30|34|29|27|25|25|26|24|24|20|20|21|22|23|21|22|23|37|28|26|27|28|29|36|31|32|33|34|35|36|37|0\n62|60|60|61|58|55|55|56|57|54|53|52|50|50|48|47|46|45|43|38|38|39|37|37|41|36|36|35|34|33|33|49|34|35|44|42|40|39|40|41|42|43|44|45|46|47|48|49|51|51|52|53|54|59|56|57|58|59|63|61|62|63|0\n35|35|34|32|32|33|29|28|27|26|26|25|23|22|22|21|20|20|31|21|24|23|24|25|30|27|28|29|30|31|37|33|34|36|36|37|0\n62|61|60|59|57|57|56|55|54|53|53|63|52|51|49|48|47|46|45|44|44|43|41|40|40|39|38|37|36|35|34|34|65|35|36|37|38|39|42|41|42|43|50|45|46|47|48|49|50|51|52|64|54|55|56|58|58|59|60|61|62|63|64|65|0\n40|40|41|39|39|38|36|35|34|34|31|30|29|29|28|26|25|25|24|23|23|33|24|27|26|27|28|32|30|31|32|33|37|35|36|37|38|43|42|41|42|43|0\n16|15|14|11|11|12|10|10|17|13|12|13|14|15|16|17|0\n39|38|37|36|35|34|34|33|32|30|30|27|27|28|26|25|24|24|22|22|23|23|41|25|26|29|28|29|31|31|32|33|40|35|36|37|38|39|40|41|0\n52|51|50|45|44|44|46|43|42|41|41|48|49|40|39|37|36|34|34|33|31|30|30|29|28|28|38|29|32|31|32|33|35|35|36|37|38|39|40|53|42|43|47|45|46|47|48|49|50|51|52|53|0\n31|30|30|29|27|27|25|25|24|24|21|21|20|19|18|18|23|19|20|22|22|23|33|26|26|28|28|29|32|31|32|33|0\n34|33|32|31|28|24|23|23|25|26|27|29|22|20|20|21|19|19|35|21|22|30|24|25|26|27|28|29|30|31|32|33|34|35|0\n43|42|42|41|38|38|39|40|36|34|31|31|32|33|30|28|27|27|26|24|24|25|37|25|26|29|28|29|30|35|32|33|34|35|36|37|45|39|40|41|44|43|44|45|0\n25|24|23|22|22|21|18|18|19|17|16|15|15|27|16|17|20|19|20|21|26|23|24|25|26|27|0\n57|55|52|51|51|53|49|49|48|41|41|42|40|40|44|39|38|38|46|36|35|35|33|33|32|31|30|30|56|31|32|34|34|37|36|37|47|39|45|43|42|43|44|45|46|47|48|50|50|54|52|53|54|55|56|57|0\n26|25|23|23|22|21|20|18|17|16|16|15|15|27|19|17|18|19|20|21|22|24|24|25|26|27|0\n41|41|40|39|38|38|35|34|33|32|30|29|29|28|26|25|25|24|23|23|36|37|24|27|26|27|28|31|30|31|32|33|34|35|36|37|43|39|40|42|42|43|0\n39|37|37|38|36|36|41|31|31|32|30|30|34|29|29|27|26|25|24|23|23|28|24|25|26|27|28|43|35|33|32|33|34|35|42|40|38|39|40|41|42|43|0\n25|20|20|19|18|18|22|23|16|16|15|14|14|15|17|17|24|19|21|21|22|23|24|25|0\n51|50|50|49|48|47|46|46|43|41|41|40|38|38|37|35|34|34|33|31|30|30|29|29|28|28|45|44|32|31|32|33|36|35|36|37|39|39|40|42|42|43|44|45|53|47|48|49|52|51|52|53|0\n34|32|31|30|30|29|25|25|24|24|27|22|22|21|20|19|19|35|20|21|23|23|28|26|26|27|28|29|33|31|32|33|34|35|0\n35|34|34|36|33|31|31|28|27|26|26|25|24|22|21|21|20|20|30|23|22|23|24|25|29|27|28|29|30|32|32|33|37|35|36|37|0\n11|11|10|9|9|8|8|13|10|12|12|13|0\n43|41|40|39|38|35|34|34|33|31|31|30|29|28|28|26|26|25|24|23|23|42|24|25|27|27|37|29|30|32|32|33|36|35|36|37|38|39|40|41|42|43|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n35|33|31|29|28|28|30|27|24|23|23|25|22|21|19|19|20|34|20|21|22|26|24|25|26|27|32|29|30|31|32|33|34|35|0\n22|21|20|19|18|17|16|15|14|13|13|23|14|15|16|17|18|19|20|21|22|23|0\n56|54|54|53|53|51|49|48|48|47|46|44|44|43|42|38|38|39|40|37|36|35|33|32|32|31|30|30|52|31|34|33|34|35|36|37|41|39|40|41|42|43|45|45|46|47|50|49|50|51|52|57|55|55|56|57|0\n43|42|40|38|38|37|36|35|35|34|30|30|29|29|28|27|26|25|24|23|23|33|24|25|26|27|28|32|31|31|32|33|34|41|36|37|39|39|40|41|42|43|0\n14|14|12|11|9|9|10|13|10|11|12|13|15|15|0\n33|31|28|27|26|26|29|25|24|18|18|19|20|21|22|23|32|19|20|21|22|23|24|25|30|27|28|29|30|31|32|33|0\n45|44|43|42|41|40|39|33|33|32|32|35|31|31|37|28|27|27|29|26|24|24|25|25|26|30|28|29|30|38|36|34|34|35|36|37|38|39|40|41|42|43|44|45|0\n23|21|20|19|17|16|16|15|14|13|13|22|14|15|18|17|18|19|20|21|22|23|0\n28|27|26|25|23|22|21|20|20|19|18|17|16|16|29|17|18|19|24|21|22|23|24|25|26|27|28|29|0\n44|44|42|42|41|40|40|46|47|36|35|34|33|33|37|38|32|31|29|29|27|26|26|28|49|27|28|30|30|31|32|39|34|35|36|37|38|39|48|41|43|43|45|45|46|47|48|49|0\n52|51|50|50|49|46|46|47|44|42|41|41|40|39|38|37|35|34|33|33|32|31|30|28|28|29|45|29|30|31|32|36|34|35|36|37|38|39|40|43|42|43|44|45|48|47|48|49|53|51|52|53|0\n28|28|29|27|27|26|23|22|22|21|21|20|19|18|17|17|18|19|20|25|24|23|24|25|26|31|30|29|30|31|0\n30|29|27|26|26|25|25|24|21|20|19|19|18|17|17|23|18|22|20|21|22|23|24|31|28|27|28|29|30|31|0\n9|8|8|7|7|11|10|9|10|11|0\n30|28|27|26|25|25|24|22|20|20|21|19|17|17|18|31|18|19|23|21|22|23|24|29|26|27|28|29|30|31|0\n47|46|45|45|44|43|42|41|41|40|39|37|35|35|34|33|31|31|29|28|28|27|26|26|38|27|30|29|30|32|32|33|34|36|36|37|38|39|40|49|42|43|44|48|46|47|48|49|0\n17|15|15|16|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0\n45|43|42|41|40|39|38|36|35|35|34|33|32|31|29|29|27|27|26|25|24|24|44|25|26|28|28|30|30|31|32|33|34|37|36|37|38|39|40|41|42|43|44|45|0\n31|31|30|29|27|27|26|26|24|22|22|21|19|19|18|18|25|20|20|21|23|23|24|25|33|28|28|29|30|32|32|33|0\n36|35|34|33|31|31|32|37|30|27|26|26|28|24|23|23|22|21|21|39|22|25|24|25|29|27|28|29|30|38|32|33|34|35|36|37|38|39|0\n54|53|52|52|50|49|48|48|47|46|45|45|56|57|44|43|41|40|40|39|38|37|36|35|33|31|31|32|34|59|32|33|34|35|36|37|38|39|42|41|42|43|44|58|46|47|51|49|50|51|55|53|54|55|56|57|58|59|0\n59|54|54|52|51|50|50|49|48|47|46|44|44|43|43|56|42|41|40|38|37|35|35|34|34|33|32|31|31|58|32|33|39|36|36|37|38|39|40|41|42|57|45|45|46|47|48|49|53|51|52|53|55|55|56|57|58|59|0\n42|40|40|41|39|37|36|36|34|31|31|30|27|27|28|26|25|25|24|23|23|35|24|33|26|29|28|29|30|32|32|33|34|35|38|37|38|39|43|41|42|43|0\n31|30|29|28|27|27|32|26|25|22|22|23|20|20|19|18|18|19|21|21|24|23|24|25|26|33|28|29|30|31|32|33|0\n23|21|20|19|18|16|15|14|14|13|13|22|17|15|16|17|18|19|20|21|22|23|0\n27|25|24|23|23|26|28|29|22|21|20|19|17|17|18|31|18|19|20|21|22|30|24|25|26|27|28|29|30|31|0\n22|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|21|22|23|0\n53|50|48|48|47|46|45|45|44|43|42|40|39|39|38|37|36|35|34|32|31|30|30|29|28|28|52|29|33|31|32|33|34|35|36|37|38|41|40|41|42|43|44|51|46|47|49|49|50|51|52|53|0\n39|39|40|41|37|37|35|33|32|31|31|34|30|29|26|25|25|27|23|23|24|43|24|28|26|27|28|29|30|36|32|33|34|35|36|38|38|42|40|41|42|43|0\n8|8|7|6|6|7|9|9|0\n19|19|18|14|14|15|16|13|12|12|21|13|17|15|16|17|18|20|20|21|0\n38|38|37|36|32|31|30|30|29|27|26|26|25|25|24|23|22|21|21|35|22|23|24|34|28|27|28|29|33|31|32|33|34|35|36|37|39|39|0\n38|37|37|36|36|40|41|35|32|31|31|33|30|28|28|27|26|25|24|23|23|43|24|25|26|27|29|29|30|34|32|33|34|35|42|39|38|39|40|41|42|43|0\n35|33|29|28|26|25|25|24|24|30|23|23|22|21|20|19|19|34|20|21|22|32|31|27|26|27|28|29|30|31|32|33|34|35|0\n63|62|61|61|60|59|58|58|65|57|54|54|55|56|53|50|49|48|48|47|46|45|44|42|40|40|41|39|36|36|37|35|35|52|38|37|38|39|43|41|42|43|44|45|46|47|51|49|50|51|52|53|67|55|56|57|66|59|60|64|62|63|64|65|66|67|0\n84|83|82|81|80|80|79|76|76|75|72|71|71|73|70|68|68|67|66|66|62|60|59|59|58|57|56|56|63|55|52|52|51|51|49|48|48|46|45|45|44|44|65|47|46|47|50|49|50|54|53|53|54|55|64|57|58|61|60|61|62|63|64|65|78|67|69|69|70|74|72|73|74|75|77|77|78|79|85|81|82|83|84|85|0\n20|19|19|17|16|15|13|12|12|14|18|13|14|15|16|17|18|21|20|21|0\n42|41|41|40|38|37|36|36|34|32|32|31|29|28|28|27|26|25|24|23|23|35|24|25|26|27|30|29|30|31|33|33|34|35|39|37|38|39|40|43|42|43|0\n63|58|57|56|54|53|53|52|51|51|59|60|48|47|47|49|46|42|42|41|40|39|39|44|37|36|36|35|34|33|33|62|34|35|38|37|38|45|40|41|43|43|44|45|46|50|48|49|50|61|52|55|54|55|56|57|58|59|60|61|62|63|0\n32|30|30|29|27|26|26|25|25|24|23|20|19|19|18|18|22|21|20|21|22|23|24|33|28|27|28|29|31|31|32|33|0\n36|34|34|35|33|31|31|29|28|27|27|26|24|24|23|23|22|21|21|39|22|38|25|25|26|30|28|29|30|32|32|33|37|35|36|37|38|39|0\n45|44|43|42|42|41|39|38|36|36|35|35|34|33|32|31|30|29|28|27|26|25|25|47|26|27|28|29|30|31|32|33|34|40|37|37|38|39|40|41|46|43|44|45|46|47|0\n39|36|33|33|34|32|31|30|30|29|27|27|25|25|24|22|22|21|21|38|23|23|24|26|26|28|28|29|37|31|32|35|34|35|36|37|38|39|0\n45|43|42|41|40|38|38|37|36|35|35|34|33|29|29|27|26|26|25|24|24|31|32|25|28|27|28|30|30|31|32|33|34|44|36|37|39|39|40|41|42|43|44|45|0\n28|27|26|26|25|24|21|21|20|19|18|17|16|16|23|17|18|19|20|22|22|23|24|25|29|27|28|29|0\n37|36|35|35|33|32|31|29|29|30|27|27|26|25|23|22|21|21|24|39|22|23|24|25|26|28|28|34|30|31|32|33|34|38|36|37|38|39|0\n21|19|18|17|15|15|13|12|12|14|20|13|14|16|16|17|18|19|20|21|0\n11|9|8|7|7|10|8|9|10|11|0\n45|44|44|43|41|41|40|39|38|38|37|35|34|33|32|30|30|29|27|27|26|25|25|36|26|28|28|29|31|31|32|33|34|35|36|37|47|39|40|42|42|43|46|45|46|47|0\n21|20|18|18|16|15|14|13|12|12|17|13|14|15|16|17|19|19|20|21|0\n22|20|20|21|19|18|18|16|16|15|14|14|25|15|17|17|24|19|23|21|22|23|24|25|0\n25|24|23|23|22|21|20|20|18|17|16|15|15|19|16|17|18|19|27|21|22|26|24|25|26|27|0\n26|25|25|27|24|23|23|29|22|21|19|19|18|17|17|31|18|20|20|21|22|30|24|28|26|27|28|29|30|31|0\n61|59|59|58|57|55|54|53|52|51|51|50|49|48|47|46|45|44|43|43|62|63|41|41|40|39|38|36|36|35|34|34|65|35|37|37|38|39|40|42|42|64|44|45|46|47|48|49|50|56|52|53|54|55|56|57|58|60|60|61|62|63|64|65|0\n14|11|11|10|9|9|13|15|10|12|12|13|14|15|0\n19|17|15|14|14|13|11|11|12|18|12|13|16|15|16|17|18|19|0\n51|49|48|46|46|47|45|45|52|53|41|39|39|38|38|42|43|36|36|35|33|33|32|30|29|29|31|55|30|31|32|34|34|35|37|37|44|40|40|41|42|43|44|54|50|47|48|49|50|51|52|53|54|55|0\n36|36|35|32|31|31|30|28|27|26|26|25|25|23|22|21|20|20|24|21|22|23|24|34|29|27|28|29|30|33|32|33|34|35|37|37|0\n8|8|9|7|7|11|10|9|10|11|0\n40|38|38|37|36|34|34|35|33|31|30|30|27|26|26|25|24|22|22|23|29|23|24|25|28|27|28|29|32|31|32|33|41|35|36|37|39|39|40|41|0\n16|16|17|14|14|13|12|11|11|19|12|13|15|15|18|17|18|19|0\n13|12|11|10|8|8|9|9|10|11|12|13|0\n5|4|4|5|0\n62|61|59|58|58|57|54|53|53|55|52|52|51|49|49|48|47|46|45|44|43|42|42|64|65|40|38|38|39|36|36|35|35|67|37|37|41|39|40|41|66|43|44|45|46|47|48|50|50|51|63|56|54|55|56|57|60|59|60|61|62|63|64|65|66|67|0\n27|25|23|23|22|21|20|19|18|17|16|15|15|26|16|17|18|19|20|21|22|24|24|25|26|27|0\n28|28|26|20|20|21|19|19|23|24|18|17|16|16|27|17|18|25|22|21|22|23|24|25|26|27|29|29|0\n11|7|7|8|9|10|8|9|10|11|0\n43|43|44|41|40|40|39|39|37|37|36|35|35|47|33|32|32|31|29|29|28|26|26|27|49|27|28|30|30|31|34|33|34|48|36|38|38|46|42|41|42|45|44|45|46|47|48|49|0\n21|18|18|17|17|15|14|12|12|13|16|13|14|15|16|20|19|19|20|21|0\n72|70|69|69|71|68|63|63|60|60|61|58|57|57|56|55|55|65|54|53|51|50|50|47|47|46|44|44|43|42|41|40|39|39|38|38|67|49|40|41|42|43|45|45|46|48|48|49|52|51|52|53|54|66|56|59|58|59|62|61|62|64|64|65|66|67|68|73|70|71|72|73|0\n8|7|6|6|9|7|8|9|0\n34|33|30|30|29|28|26|26|27|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|32|27|28|29|31|31|32|33|34|35|0\n42|41|40|39|37|37|36|35|35|34|33|32|30|29|28|25|24|24|26|23|23|31|27|25|26|27|28|29|30|31|32|33|34|43|36|38|38|39|40|41|42|43|0\n52|52|51|50|45|44|44|46|43|42|42|48|40|39|39|38|37|36|36|54|55|35|34|33|32|31|30|30|57|31|32|33|34|35|56|37|38|41|40|41|49|43|47|45|46|47|48|49|50|51|53|53|54|55|56|57|0\n33|32|32|31|28|28|29|27|27|25|21|20|20|22|23|19|19|26|24|21|22|23|24|25|26|35|30|29|30|31|34|33|34|35|0\n25|23|21|20|20|19|17|16|16|15|14|14|24|15|18|17|18|19|22|21|22|23|24|25|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n13|13|12|9|9|10|11|15|10|11|12|14|14|15|0\n50|50|48|47|45|45|43|42|42|41|37|37|38|36|35|35|34|32|31|31|30|29|28|27|27|49|28|29|30|33|32|33|34|40|36|39|38|39|40|41|44|43|44|46|46|47|48|49|51|51|0\n30|30|27|26|26|25|25|24|23|22|22|32|33|21|20|19|19|35|20|21|34|23|24|29|28|27|28|29|31|31|32|33|34|35|0\n20|19|18|16|14|14|13|13|12|12|21|17|15|15|16|17|18|19|20|21|0\n70|70|69|67|67|66|62|62|61|61|64|60|59|57|57|58|72|73|56|55|53|50|50|51|49|48|48|47|45|44|44|43|42|39|39|40|41|75|40|41|42|43|46|45|46|47|54|49|52|51|52|53|54|55|56|74|58|59|60|65|63|63|64|65|66|68|68|69|71|71|72|73|74|75|0\n29|29|28|27|25|24|24|22|22|20|20|19|18|17|17|31|18|19|21|21|23|23|26|25|26|27|28|30|30|31|0\n37|37|36|35|33|33|32|30|29|29|28|26|25|25|24|22|21|21|23|39|22|23|24|27|26|27|28|31|30|31|32|34|34|35|36|38|38|39|0\n24|23|20|20|21|19|18|18|16|15|14|14|17|15|16|17|25|19|22|21|22|23|24|25|0\n82|82|79|79|78|74|72|68|68|69|66|66|67|71|65|61|60|60|62|63|64|75|76|59|58|57|55|55|54|50|49|49|48|47|47|52|45|45|44|43|43|81|44|46|46|53|48|51|50|51|52|53|54|56|56|57|58|59|77|61|62|63|64|65|73|67|70|69|70|71|72|73|74|75|76|77|78|80|80|81|83|83|0\n39|35|34|32|32|31|30|29|28|28|36|26|26|25|23|23|22|21|21|38|22|24|24|25|27|27|37|29|30|31|33|33|34|35|36|37|38|39|0\n25|24|24|23|20|20|21|18|18|17|16|16|15|15|27|17|19|19|22|21|22|23|26|25|26|27|0\n10|8|8|9|7|7|11|9|10|11|0\n36|35|34|33|32|32|30|29|27|27|26|25|24|23|22|21|20|20|31|21|22|23|24|25|26|28|28|29|30|31|37|33|34|35|36|37|0\n43|39|37|36|36|38|40|35|33|32|30|30|29|29|28|25|25|24|24|23|23|42|27|26|26|27|28|34|31|31|32|33|34|35|41|37|38|39|40|41|42|43|0\n29|28|27|27|26|24|24|23|22|20|19|19|18|17|17|31|18|21|20|21|22|23|25|25|26|30|28|29|30|31|0\n21|20|18|15|14|14|16|13|12|12|19|13|17|15|16|17|18|19|20|21|0\n65|64|64|63|63|60|59|59|58|57|55|55|54|52|52|51|48|47|47|49|45|44|44|43|40|40|41|39|38|36|36|35|35|62|37|37|38|39|42|41|42|43|46|45|46|50|48|49|50|51|53|53|54|56|56|57|58|61|60|61|62|67|66|65|66|67|0\n33|33|32|32|35|30|29|28|27|27|26|24|24|23|22|20|20|21|37|21|22|23|25|25|26|31|28|29|30|31|36|34|34|35|36|37|0\n37|36|36|35|35|33|31|30|29|28|28|27|25|24|24|23|22|21|21|34|22|23|26|25|26|27|32|29|30|31|32|33|34|39|38|37|38|39|0\n35|34|34|33|31|31|32|27|26|26|25|24|22|21|21|23|20|20|30|29|22|23|24|25|28|27|28|29|30|37|32|33|36|35|36|37|0\n49|48|48|50|46|43|42|40|40|39|37|36|35|34|33|33|32|31|31|44|30|29|28|27|27|47|28|29|30|45|32|38|34|35|36|37|38|39|41|41|42|43|44|45|46|47|51|49|50|51|0\n26|24|24|23|22|21|21|20|19|16|16|15|15|18|17|17|18|19|20|27|22|23|25|25|26|27|0\n41|40|38|37|37|36|34|33|33|32|32|31|30|28|27|26|25|25|24|23|23|43|24|29|26|27|28|29|30|31|42|35|34|35|36|39|38|39|40|41|42|43|0\n36|36|37|35|35|34|32|32|29|29|28|26|25|25|22|22|23|21|21|31|24|23|24|27|26|27|28|30|30|31|33|33|34|39|38|37|38|39|0\n70|69|68|66|65|64|63|63|62|61|61|71|60|59|58|56|56|54|54|53|50|49|49|51|48|43|43|44|42|41|41|46|40|39|38|38|73|39|40|47|42|45|44|45|46|47|48|52|50|51|52|53|55|55|57|57|58|59|60|72|62|67|64|65|66|67|68|69|70|71|72|73|0\n29|27|24|23|22|22|25|21|20|19|18|17|16|16|28|17|18|19|20|21|26|23|24|25|26|27|28|29|0\n16|16|17|18|19|15|14|13|12|12|21|13|14|15|20|17|18|19|20|21|0\n7|6|5|5|6|7|0\n43|42|42|37|37|35|35|34|32|32|33|39|40|31|31|30|27|27|28|24|24|25|26|25|26|29|28|29|30|45|41|33|34|36|36|38|38|39|40|41|44|43|44|45|0\n30|30|27|27|25|25|24|22|21|21|20|18|17|17|19|29|18|19|20|23|22|23|24|26|26|28|28|29|31|31|0\n27|26|23|22|22|21|19|17|17|18|16|15|15|25|16|20|18|19|20|21|24|23|24|25|26|27|0\n79|78|77|76|75|73|71|71|72|70|66|65|65|64|63|62|61|60|60|68|58|55|55|56|54|54|53|52|51|50|48|45|45|46|47|44|43|42|41|41|42|43|44|49|46|47|48|49|50|51|52|53|59|57|56|57|58|59|69|61|62|63|64|67|66|67|68|69|70|74|72|73|74|75|76|77|78|79|0\n27|26|26|25|24|24|23|22|19|18|18|17|16|16|21|17|20|19|20|21|22|23|29|25|28|27|28|29|0\n54|52|52|50|50|49|47|46|45|44|43|43|42|41|40|38|38|39|55|56|57|36|35|34|34|33|32|31|31|59|32|33|37|35|36|37|58|39|40|41|42|48|44|45|46|47|48|49|51|51|53|53|54|55|56|57|58|59|0\n24|24|22|21|19|19|17|16|16|15|14|14|23|15|18|17|18|20|20|21|22|23|25|25|0\n7|5|5|6|6|7|0\n51|50|49|48|48|47|46|46|53|45|44|42|38|37|37|39|36|34|34|35|41|33|32|31|30|29|29|55|30|31|32|33|43|35|36|40|38|39|40|41|42|43|44|45|54|47|52|49|50|51|52|53|54|55|0\n32|31|31|33|34|30|28|28|27|27|36|37|24|24|25|23|21|21|22|39|22|23|26|25|26|38|29|29|30|35|32|33|34|35|36|37|38|39|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n58|56|52|52|53|54|55|51|48|48|49|47|46|46|43|43|42|40|40|38|38|37|35|35|34|32|32|31|31|45|33|33|34|36|36|37|39|39|41|41|42|44|44|45|59|47|50|49|50|51|57|53|54|55|56|57|58|59|0\n31|29|29|28|27|27|32|33|26|25|24|22|21|21|20|19|19|35|20|23|22|23|24|25|26|34|28|30|30|31|32|33|34|35|0\n60|57|57|58|55|55|53|51|51|50|49|48|48|47|46|46|45|44|42|41|39|38|38|37|35|35|34|33|32|32|43|33|34|36|36|37|40|39|40|41|42|43|44|45|61|47|54|49|50|52|52|53|54|56|56|59|58|59|60|61|0\n39|38|34|33|32|30|30|29|29|35|28|27|26|25|22|22|23|21|21|37|24|23|24|25|26|27|28|36|31|31|32|33|34|35|36|37|38|39|0\n47|47|48|40|40|41|42|43|44|45|46|50|38|37|36|35|34|32|32|31|29|28|27|27|30|39|28|29|30|31|33|33|34|35|36|37|38|39|51|41|42|43|44|45|46|49|48|49|50|51|0\n52|51|49|48|47|46|45|44|44|41|39|39|38|38|42|43|34|33|33|35|29|29|30|31|28|28|37|32|30|31|32|36|34|35|36|37|53|40|40|41|42|43|50|45|46|47|48|49|50|51|52|53|0\n9|8|8|7|7|11|10|9|10|11|0\n51|50|49|48|48|52|53|43|43|44|42|41|39|39|38|37|36|36|46|34|33|33|31|31|30|29|29|55|30|32|32|35|34|35|47|37|38|40|40|41|42|45|44|45|46|47|54|49|50|51|52|53|54|55|0\n49|47|45|45|44|41|41|42|37|36|35|34|32|31|31|33|38|39|29|28|28|27|26|26|48|27|30|29|30|40|32|33|34|35|36|37|38|39|40|43|42|43|44|46|46|47|48|49|0\n34|33|32|32|31|29|29|27|25|25|24|23|22|21|20|19|19|28|20|21|22|23|24|26|26|27|28|30|30|31|35|33|34|35|0\n26|25|24|24|22|21|18|17|17|19|16|15|15|23|16|20|18|19|20|21|22|23|27|25|26|27|0\n48|45|45|46|44|43|43|42|40|40|38|36|35|33|33|34|32|31|30|29|28|27|26|26|39|27|28|29|30|31|32|37|34|35|36|37|38|39|41|41|42|49|44|47|46|47|48|49|0\n30|30|27|26|24|24|23|23|22|20|20|18|18|17|17|29|19|19|21|21|22|28|25|25|26|27|28|29|31|31|0\n46|45|44|43|42|41|40|40|39|37|37|35|34|32|32|31|30|29|27|25|25|26|28|36|26|27|28|29|30|31|33|33|34|35|36|38|38|39|47|41|42|43|44|45|46|47|0\n51|49|48|42|41|41|43|40|39|37|37|38|45|46|36|35|34|33|31|30|30|29|28|27|27|50|28|29|32|31|32|33|34|35|36|47|38|39|40|44|42|43|44|45|46|47|48|49|50|51|0\n25|24|23|23|22|21|21|19|18|17|15|15|16|20|16|17|18|19|20|27|22|26|24|25|26|27|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n62|61|58|57|57|59|56|55|55|54|53|50|50|49|48|47|46|45|44|43|42|40|40|39|38|37|36|35|34|33|33|52|34|35|36|37|38|39|41|41|42|43|44|45|46|47|48|49|51|51|52|53|54|63|56|60|58|59|60|61|62|63|0\n64|61|60|60|62|59|59|58|56|55|53|52|52|51|50|49|48|46|46|47|44|42|41|41|43|39|39|37|35|35|34|34|38|36|36|37|38|40|40|45|42|43|44|45|57|47|48|49|50|51|54|53|54|55|56|57|58|65|63|61|62|63|64|65|0\n43|43|44|42|39|38|37|37|36|35|33|33|32|31|29|28|27|26|26|25|24|24|41|25|30|27|28|29|30|31|32|34|34|35|36|40|38|39|40|41|42|45|44|45|0\n32|32|33|34|35|31|30|28|27|27|26|25|24|23|22|21|20|20|37|21|22|23|24|25|26|29|28|29|30|31|36|33|34|35|36|37|0\n65|63|63|64|62|62|61|59|59|60|68|69|56|56|54|53|50|50|49|48|48|52|47|46|46|45|42|42|43|41|40|39|38|37|37|71|38|39|40|41|44|43|44|45|58|47|55|49|51|51|52|53|54|55|57|57|58|70|60|61|67|66|64|65|66|67|68|69|70|71|0\n47|44|43|43|45|46|42|41|39|39|38|36|36|35|33|33|32|32|49|31|30|29|28|27|27|51|28|29|30|31|50|34|34|35|37|37|38|40|40|41|42|48|44|45|46|47|48|49|50|51|0\n22|21|20|19|19|17|16|14|14|13|13|18|15|15|16|17|18|23|20|21|22|23|0\n59|55|53|52|52|51|50|48|47|46|46|44|42|42|41|40|40|39|38|37|36|35|34|34|56|33|32|31|31|58|32|33|57|35|36|37|38|39|45|41|43|43|44|45|49|47|48|49|50|51|54|53|54|55|56|57|58|59|0\n34|33|32|31|31|35|30|29|28|25|25|26|24|23|21|21|20|20|37|22|22|23|24|27|26|27|28|29|30|36|32|33|34|35|36|37|0\n64|63|61|61|60|60|58|57|56|55|54|53|50|50|51|49|47|47|46|45|44|43|42|41|38|38|39|36|36|35|34|34|59|35|37|37|40|39|40|41|42|43|44|45|46|48|48|49|52|51|52|53|54|55|56|57|58|59|65|62|62|63|64|65|0\n36|36|35|35|38|33|32|30|30|28|27|27|26|25|24|23|21|21|22|34|22|23|24|25|26|29|28|29|31|31|32|33|34|39|37|37|38|39|0\n7|6|5|5|6|7|0\n43|40|40|41|39|39|38|36|36|35|33|32|32|31|30|29|28|27|27|25|24|24|26|25|26|45|28|29|30|31|34|33|34|35|37|37|38|44|42|41|42|43|44|45|0\n11|10|7|7|8|9|8|9|10|11|0\n38|34|34|33|30|30|31|32|36|28|27|27|26|25|25|23|22|21|21|24|22|23|24|39|26|29|28|29|37|31|32|33|35|35|36|37|38|39|0\n45|44|42|41|40|40|39|33|33|32|30|29|29|31|35|36|28|26|26|25|24|24|38|25|27|27|28|37|30|31|32|34|34|35|36|37|38|39|43|41|42|43|44|45|0\n40|40|38|37|36|35|33|32|31|31|30|24|24|25|23|23|27|28|22|22|39|29|26|25|26|27|28|29|30|34|32|33|34|35|36|37|38|39|41|41|0\n8|8|6|6|7|7|9|9|0\n33|30|29|27|27|28|26|25|24|23|22|21|20|19|18|18|32|19|20|21|22|23|24|25|26|31|28|29|30|31|32|33|0\n59|58|56|55|55|54|53|50|50|51|52|60|61|49|47|47|45|44|43|43|42|41|40|38|38|37|34|34|35|33|33|63|36|35|36|37|39|39|40|41|42|46|44|45|46|48|48|49|62|51|52|53|54|57|56|57|58|59|60|61|62|63|0\n28|26|26|25|24|23|22|22|21|19|19|16|16|17|18|17|18|20|20|21|29|23|24|25|27|27|28|29|0\n23|22|20|19|19|18|16|15|14|14|13|13|17|15|16|17|18|21|20|21|22|23|0\n28|28|26|24|23|22|22|21|19|18|18|16|16|17|27|17|20|19|20|21|25|23|24|25|26|27|29|29|0\n33|31|31|29|28|26|26|25|24|23|22|20|19|19|18|18|30|21|20|21|22|23|24|25|27|27|28|29|30|32|32|33|0\n26|26|25|24|23|22|22|28|20|19|18|17|16|16|21|17|18|19|20|21|29|23|24|25|27|27|28|29|0\n51|50|49|48|48|47|46|45|44|42|41|40|39|39|38|35|35|33|32|32|31|31|30|29|28|28|53|29|30|37|34|33|34|36|36|37|38|43|40|41|42|43|44|45|46|47|52|49|50|51|52|53|0\n62|61|60|59|58|58|57|55|54|54|51|51|50|48|47|47|46|42|42|41|40|40|44|39|37|37|36|35|34|33|33|53|34|35|36|38|38|39|45|41|43|43|44|45|46|49|48|49|50|52|52|53|56|55|56|57|63|59|60|61|62|63|0\n46|46|44|44|42|41|41|40|39|38|37|36|35|35|48|49|34|33|32|31|29|28|27|27|30|51|28|29|30|31|32|33|34|50|36|37|38|39|40|43|42|43|45|45|47|47|48|49|50|51|0\n10|9|7|7|8|11|8|9|10|11|0\n46|46|47|44|44|43|41|41|40|36|36|35|35|38|33|33|32|31|29|27|27|28|26|26|49|30|28|29|30|31|32|34|34|39|37|37|38|39|40|42|42|43|45|45|48|47|48|49|0\n69|68|67|67|66|65|64|63|60|60|61|58|58|57|56|55|54|54|52|49|49|50|51|48|47|42|42|41|41|40|39|38|37|37|45|46|38|39|40|44|43|43|44|45|46|47|48|53|50|51|52|53|71|55|56|57|59|59|62|61|62|63|64|65|66|70|68|69|70|71|0\n60|59|56|56|57|55|52|51|51|53|50|48|48|47|45|44|44|46|43|42|40|39|37|35|35|36|34|32|32|33|41|33|34|38|36|37|38|39|40|41|42|43|61|45|46|47|49|49|50|54|52|53|54|55|58|57|58|59|60|61|0\n53|51|50|50|49|47|46|46|45|43|43|42|40|40|39|37|37|36|35|34|33|33|54|55|31|31|30|30|57|32|32|56|34|35|36|38|38|39|41|41|42|44|44|45|48|47|48|49|52|51|52|53|54|55|56|57|0\n46|45|43|43|41|41|40|39|38|37|36|35|35|34|33|30|30|29|28|27|26|25|25|32|26|27|28|29|31|31|32|33|34|47|36|37|38|39|40|42|42|44|44|45|46|47|0\n46|45|44|42|42|43|40|37|36|36|35|34|33|33|39|32|30|27|27|28|26|25|25|31|26|29|28|29|30|31|32|41|34|35|38|37|38|39|40|41|47|43|44|45|46|47|0\n60|59|59|58|58|62|57|55|54|54|52|51|49|48|48|47|46|46|45|44|43|42|42|64|40|39|38|37|36|35|34|34|41|35|36|37|38|39|40|41|65|43|44|45|53|47|50|49|50|51|52|53|56|55|56|57|63|61|60|61|62|63|64|65|0\n39|39|38|37|36|35|35|33|32|31|26|26|27|28|25|24|24|23|22|22|34|23|30|25|29|27|28|29|30|31|32|33|34|41|36|37|38|40|40|41|0\n56|55|53|52|52|51|50|49|49|48|46|42|41|41|40|39|38|38|44|36|36|35|34|33|32|31|30|30|47|31|32|33|34|35|37|37|45|39|40|43|42|43|44|45|46|47|48|57|50|51|54|53|54|55|56|57|0\n48|47|46|44|44|43|41|41|40|40|39|38|35|35|33|32|30|29|28|27|27|31|26|26|37|34|28|29|30|31|32|33|34|36|36|37|38|39|49|42|42|43|45|45|46|47|48|49|0\n44|41|40|39|39|42|38|37|36|35|35|33|31|30|30|29|28|27|26|25|24|24|34|25|26|27|28|29|32|31|32|33|34|45|36|37|38|43|40|41|42|43|44|45|0\n66|65|65|64|60|60|61|59|56|54|54|49|48|48|47|46|46|51|45|45|44|43|42|41|40|39|39|57|38|38|35|35|36|37|36|37|63|58|40|41|42|43|44|53|52|47|50|49|50|51|52|53|55|55|56|57|58|59|62|61|62|63|64|67|66|67|0\n19|18|18|17|16|16|14|12|12|13|15|13|14|15|21|17|20|19|20|21|0\n9|7|6|6|8|7|8|9|0\n29|29|28|27|22|22|21|21|24|25|26|20|18|17|17|19|18|19|20|31|23|23|24|25|26|27|28|30|30|31|0\n10|9|7|7|8|11|8|9|10|11|0\n58|57|57|56|55|54|53|51|50|50|49|49|60|61|46|45|45|44|43|42|41|40|38|38|39|36|35|35|34|33|33|63|34|37|36|37|48|39|40|41|42|43|44|47|46|47|48|62|52|51|52|53|54|55|56|59|58|59|60|61|62|63|0\n34|33|32|32|30|30|29|29|28|26|26|25|23|22|22|21|20|20|37|21|24|23|24|25|27|27|28|36|31|31|35|33|34|35|36|37|0\n54|53|52|51|51|55|50|49|47|46|45|44|44|41|41|38|38|37|35|35|36|40|33|32|32|31|30|30|57|31|34|33|34|43|36|37|39|39|40|42|42|43|48|45|46|47|48|49|50|56|52|53|54|55|56|57|0\n33|33|32|31|30|30|27|26|26|25|24|23|22|21|20|19|19|29|20|21|22|23|24|25|28|27|28|29|35|31|32|34|34|35|0\n35|35|34|33|32|32|30|29|28|25|25|24|24|23|22|21|20|20|31|21|22|23|27|26|26|27|28|29|30|31|37|33|34|36|36|37|0\n21|21|20|19|18|17|15|15|14|13|13|23|14|16|16|17|18|19|20|22|22|23|0\n59|58|57|56|55|55|60|61|53|52|51|51|50|47|46|44|43|43|42|40|40|38|37|37|39|48|36|35|33|33|34|63|34|35|36|49|38|39|41|41|42|45|44|45|46|47|48|49|50|54|52|53|54|62|56|57|58|59|60|61|62|63|0\n12|11|10|10|8|8|9|9|13|11|12|13|0\n29|26|25|23|22|22|20|20|18|18|17|16|16|27|28|17|19|19|21|21|24|23|24|25|26|27|28|29|0\n7|6|5|5|6|7|0\n53|52|50|50|46|46|45|44|44|43|42|39|39|40|38|36|36|35|34|29|29|30|31|32|28|28|49|33|30|31|32|33|34|35|37|37|38|41|40|41|42|43|48|45|47|47|48|49|51|51|52|53|0\n51|49|48|47|43|42|40|40|39|38|38|44|45|37|35|35|34|30|30|31|29|29|28|27|27|50|28|33|32|31|32|33|34|36|36|37|46|39|41|41|42|43|44|45|46|47|48|49|50|51|0\n39|35|34|34|33|31|31|30|27|26|26|28|24|24|22|22|21|21|37|38|23|23|25|25|29|27|28|29|30|32|32|33|36|35|36|37|38|39|0\n43|42|42|41|40|39|38|37|37|35|34|33|31|31|30|29|28|27|25|25|24|24|36|26|26|27|28|29|30|32|32|33|34|35|36|45|38|39|40|41|44|43|44|45|0\n14|13|12|12|10|9|9|11|10|11|15|13|14|15|0\n13|12|11|10|10|9|9|15|14|11|12|13|14|15|0\n45|45|44|44|47|43|42|42|40|37|37|36|33|32|32|34|31|31|30|29|28|26|26|27|41|27|28|29|30|39|35|33|34|35|36|38|38|39|40|41|49|43|48|46|46|47|48|49|0\n14|13|10|10|11|9|9|15|12|11|12|13|14|15|0\n28|28|25|25|23|21|20|20|22|18|18|17|16|16|27|17|19|19|24|21|22|23|24|26|26|27|29|29|0\n72|70|69|69|71|67|67|65|64|63|62|61|59|59|56|55|54|53|51|51|52|57|50|48|46|46|47|45|44|43|42|41|40|39|38|38|66|39|40|41|42|43|44|45|49|47|48|49|50|58|52|53|54|55|56|57|58|60|60|61|62|63|64|65|66|68|68|73|70|71|72|73|0\n10|9|9|11|8|8|13|12|10|11|12|13|0\n40|39|38|36|36|37|35|33|33|30|30|29|27|25|25|26|24|22|22|23|32|23|24|28|26|27|28|29|31|31|32|34|34|35|41|37|38|39|40|41|0\n46|45|45|44|43|42|42|41|40|39|38|37|37|36|34|33|33|35|32|30|30|29|28|27|27|51|28|29|31|31|32|50|34|35|36|49|38|39|40|41|48|43|44|47|46|47|48|49|50|51|0\n34|26|26|27|25|24|24|29|23|22|22|31|32|21|19|19|20|35|20|21|33|23|30|25|28|27|28|29|30|31|32|33|34|35|0\n50|50|49|48|47|46|46|52|53|45|39|38|38|37|35|34|34|33|32|32|31|31|42|43|30|29|29|55|30|44|41|33|36|35|36|37|40|39|40|41|42|43|44|45|54|47|48|49|51|51|52|53|54|55|0\n52|49|49|48|48|47|47|46|44|44|41|39|38|37|37|36|35|35|34|32|30|30|29|29|28|28|43|33|31|31|32|33|34|42|36|40|38|39|40|41|42|43|45|45|46|53|51|50|50|51|52|53|0\n35|33|30|29|28|28|31|26|25|25|24|22|21|21|20|19|19|34|20|23|22|23|24|27|26|27|32|29|30|31|32|33|34|35|0\n42|41|40|39|39|38|38|44|45|36|36|35|33|33|30|30|29|28|28|32|26|25|25|27|26|27|47|29|31|31|32|34|34|35|37|37|46|43|40|41|42|43|44|45|46|47|0\n92|91|89|88|87|86|86|85|84|84|83|82|81|81|94|95|80|78|76|75|74|74|73|71|70|69|69|72|65|64|63|62|61|60|59|57|57|55|54|54|53|52|51|50|50|66|67|68|97|51|52|53|56|55|56|58|58|59|60|61|62|63|64|65|66|67|68|79|70|71|72|73|77|75|76|77|78|79|80|96|82|83|93|85|90|87|88|89|90|91|92|93|94|95|96|97|0\n70|66|65|65|67|64|63|62|61|60|60|59|57|57|58|56|53|53|52|50|50|51|48|46|45|44|43|43|42|40|40|39|38|37|37|49|38|39|41|41|42|47|44|45|46|47|48|49|55|51|52|54|54|55|56|71|58|59|69|61|62|63|64|68|66|67|68|69|70|71|0\n72|71|69|69|68|66|65|65|64|63|63|73|62|61|60|57|56|56|55|53|53|51|49|49|50|48|47|47|46|44|44|43|42|41|40|39|39|75|40|41|42|43|45|45|46|59|48|52|50|51|52|54|54|55|58|57|58|59|60|61|62|74|64|67|66|67|68|70|70|71|72|73|74|75|0\n25|22|21|20|20|19|17|17|16|15|14|14|24|15|16|18|18|19|23|21|22|23|24|25|0\n27|26|26|28|24|18|18|19|17|17|21|22|16|16|25|23|20|19|20|21|22|23|24|25|29|27|28|29|0\n59|58|57|56|55|54|53|52|50|50|49|48|45|45|46|44|43|42|42|60|61|37|37|38|39|35|35|36|34|33|33|63|34|41|36|40|38|39|40|41|62|43|44|47|46|47|48|49|51|51|52|53|54|55|56|57|58|59|60|61|62|63|0\n42|42|39|37|36|36|35|35|34|31|30|29|29|28|27|27|26|24|24|23|23|41|25|25|26|33|28|32|30|31|32|33|34|40|38|37|38|39|40|41|43|43|0\n37|36|34|33|33|32|31|31|38|39|29|28|28|27|26|25|23|23|22|22|41|24|24|25|26|27|30|29|30|40|32|35|34|35|36|37|38|39|40|41|0\n10|8|8|9|7|7|11|9|10|11|0\n43|43|44|41|40|40|39|38|37|36|36|34|34|31|30|30|32|33|47|28|28|26|26|27|49|27|29|29|48|31|32|33|35|35|46|37|38|39|42|41|42|45|44|45|46|47|48|49|0\n44|44|42|39|38|38|40|36|35|34|33|32|32|31|29|29|28|27|26|25|24|24|43|25|26|27|28|30|30|31|37|33|34|35|36|37|41|39|40|41|42|43|45|45|0\n34|33|31|29|27|27|28|30|26|24|24|23|22|22|20|19|19|21|20|21|35|23|25|25|26|32|28|29|30|31|32|33|34|35|0\n16|15|15|17|13|13|12|11|11|19|12|14|14|18|16|17|18|19|0\n21|21|20|19|18|16|16|15|13|13|14|23|14|15|17|17|18|19|20|22|22|23|0\n57|54|52|52|51|49|48|48|47|47|46|45|42|41|41|43|40|38|38|37|35|34|34|33|32|31|30|30|56|31|32|33|36|35|36|37|39|39|40|44|42|43|44|45|46|55|50|49|50|51|53|53|54|55|56|57|0\n24|23|21|20|19|19|18|17|17|15|15|14|14|16|16|25|18|22|20|21|22|23|24|25|0\n57|56|54|54|55|53|51|50|50|49|47|47|45|44|44|43|43|40|40|38|38|37|35|34|34|33|32|31|31|42|32|33|36|35|36|37|39|39|41|41|42|59|46|45|46|48|48|49|52|51|52|53|58|55|56|57|58|59|0\n36|36|31|30|29|25|25|26|27|28|32|33|24|23|22|21|20|20|35|21|22|23|24|34|26|27|28|29|30|31|32|33|34|35|37|37|0\n78|75|75|74|73|73|72|71|70|69|69|68|67|63|63|62|61|59|59|57|57|56|56|55|54|53|52|51|50|49|47|46|45|44|44|43|41|41|42|66|42|43|48|45|46|47|48|49|50|51|52|53|54|55|65|58|58|60|60|61|62|64|64|65|66|67|68|79|70|71|72|77|74|76|76|77|78|79|0\n26|26|24|22|21|21|20|18|18|17|16|15|15|25|16|17|19|19|20|23|22|23|24|25|27|27|0\n49|47|45|44|44|43|42|40|39|39|38|37|36|35|34|31|31|32|30|29|27|26|26|28|48|27|28|29|30|33|32|33|34|35|36|37|38|41|40|41|42|43|46|45|46|47|48|49|0\n21|19|17|17|16|15|14|13|12|12|20|13|14|15|16|18|18|19|20|21|0\n6|6|5|5|7|7|0\n53|51|51|50|44|43|43|45|42|42|47|41|41|49|40|39|39|38|36|33|32|32|31|31|30|29|29|37|30|35|34|33|34|35|36|37|38|55|40|54|48|46|44|45|46|47|48|49|50|52|52|53|54|55|0\n33|30|30|28|27|24|24|21|21|20|20|23|19|18|18|29|32|19|26|22|22|23|25|25|26|27|28|29|31|31|32|33|0\n32|31|31|30|28|27|27|25|24|22|22|21|19|19|18|18|26|20|20|21|23|23|24|25|26|29|28|29|30|33|32|33|0\n35|32|30|29|29|28|27|26|26|25|23|23|22|21|20|19|19|34|20|21|22|24|24|25|33|27|28|31|30|31|32|33|34|35|0\n9|9|8|7|7|11|8|10|10|11|0\n47|43|42|41|40|39|39|44|37|37|33|32|32|34|31|31|29|28|28|27|26|25|25|46|26|27|30|29|30|36|35|33|34|35|36|38|38|45|40|41|42|43|44|45|46|47|0\n42|41|40|39|38|37|35|35|36|34|33|31|29|28|28|27|25|25|24|23|23|32|24|26|26|27|30|29|30|31|32|33|34|43|36|37|38|39|40|41|42|43|0\n41|41|40|38|38|37|36|36|35|29|29|30|31|32|27|26|25|25|24|23|23|34|24|28|26|27|28|33|30|31|32|33|34|35|43|37|39|39|40|42|42|43|0\n20|19|19|21|17|16|16|15|14|13|13|23|14|15|18|17|18|22|20|21|22|23|0\n38|37|37|35|34|33|32|31|30|28|27|27|26|25|24|23|22|21|21|36|22|23|24|25|26|29|28|29|30|31|32|33|34|35|36|39|38|39|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n19|17|17|16|14|14|13|12|11|11|12|13|15|15|16|18|18|19|0\n62|60|60|59|58|57|55|55|54|53|52|51|49|49|48|47|47|46|44|43|42|41|40|38|38|37|35|35|34|33|33|45|34|36|36|37|39|39|40|41|42|43|44|45|46|63|48|50|50|51|52|53|54|56|56|57|58|59|61|61|62|63|0\n67|66|66|65|62|62|63|60|59|58|58|57|56|55|55|54|54|70|71|52|51|51|49|47|47|48|46|44|44|43|41|41|40|39|38|38|73|39|40|42|42|43|45|45|46|50|48|49|50|53|52|53|72|69|56|57|61|59|60|61|64|63|64|65|68|67|68|69|70|71|72|73|0\n62|61|60|60|59|53|52|52|50|50|49|48|48|55|56|47|45|44|43|43|42|41|38|37|37|39|35|35|34|33|33|58|34|36|36|40|38|39|40|41|42|46|44|45|46|47|57|49|51|51|54|53|54|55|56|57|58|59|63|61|62|63|0\n34|32|29|29|30|31|28|27|26|26|25|23|22|22|20|19|19|21|20|21|24|23|24|25|35|27|28|33|30|31|32|33|34|35|0\n12|12|11|10|9|8|8|9|10|11|13|13|0\n34|32|32|31|30|30|29|28|27|27|36|37|25|23|23|24|22|21|21|39|22|26|24|25|26|38|28|29|35|31|33|33|34|35|36|37|38|39|0\n34|33|30|28|28|24|24|23|23|26|27|31|22|22|20|19|19|21|20|21|35|32|25|25|26|27|29|29|30|31|32|33|34|35|0\n59|58|58|57|56|55|55|53|51|50|49|47|46|45|45|44|44|43|41|39|38|37|36|35|34|34|40|33|32|32|54|33|42|35|36|37|38|39|40|41|42|43|52|48|46|47|48|49|50|51|52|53|54|61|56|57|60|59|60|61|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n33|31|30|29|28|27|26|24|24|23|21|20|20|19|18|18|32|19|22|21|22|23|25|25|26|27|28|29|30|31|32|33|0\n44|43|42|41|40|40|45|39|36|36|37|34|34|32|31|31|30|28|28|27|26|25|25|47|26|27|29|29|30|33|32|33|35|35|38|37|38|39|46|41|42|43|44|45|46|47|0\n13|10|9|8|8|11|12|9|10|11|12|13|0\n21|20|19|16|15|14|14|13|12|12|18|13|17|15|16|17|18|19|20|21|0\n44|44|43|40|39|37|36|36|35|31|29|29|30|32|33|34|27|27|25|25|24|24|42|26|26|28|28|41|30|31|32|33|34|35|38|37|38|39|40|41|42|43|45|45|0\n57|55|55|56|54|53|52|51|48|48|47|45|43|42|41|40|40|39|39|46|38|37|36|35|34|33|32|31|31|59|32|33|34|35|36|37|38|50|44|41|42|43|44|45|46|47|49|49|50|51|52|53|54|58|56|57|58|59|0\n54|52|51|51|49|48|48|44|43|43|45|46|42|42|41|39|38|36|36|35|33|32|31|31|30|29|29|40|30|34|32|33|34|35|37|37|38|39|40|41|55|47|44|45|46|47|50|49|50|53|52|53|54|55|0\n27|26|25|24|24|23|22|21|20|19|19|18|16|16|17|17|18|29|20|21|22|23|28|25|26|27|28|29|0\n61|60|59|59|58|57|57|56|54|53|52|51|50|49|49|48|46|45|44|43|43|41|38|38|39|37|35|34|34|33|33|42|36|35|36|37|40|39|40|41|42|47|44|45|46|47|48|55|50|51|52|53|54|55|56|63|58|62|60|61|62|63|0\n32|32|30|28|27|26|24|24|23|23|20|20|21|19|18|18|31|19|22|21|22|29|25|25|26|27|28|29|30|31|33|33|0\n16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0\n10|9|9|7|7|8|8|11|10|11|0\n27|26|25|24|24|23|22|21|20|19|18|16|16|17|29|17|18|19|20|21|22|23|28|25|26|27|28|29|0\n8|8|9|7|7|11|10|9|10|11|0\n55|55|54|52|52|53|49|49|47|47|45|45|44|43|42|40|40|39|38|36|36|35|34|33|32|31|30|30|51|31|32|33|34|35|37|37|38|39|41|41|42|43|44|46|46|48|48|50|50|51|57|53|54|56|56|57|0\n30|29|29|27|26|25|22|21|20|20|23|19|18|17|17|28|18|19|24|21|22|23|24|25|26|27|28|31|30|31|0\n20|19|19|18|17|16|16|15|14|13|13|23|14|15|22|17|18|21|20|21|22|23|0\n23|21|20|18|17|17|16|14|14|13|13|22|15|15|16|19|18|19|20|21|22|23|0\n49|48|45|44|44|43|41|40|40|39|38|37|36|35|34|31|30|30|29|29|28|27|26|26|47|27|28|33|32|31|32|33|34|35|36|37|38|39|42|41|42|43|46|45|46|47|48|49|0\n42|41|41|39|38|37|36|34|33|33|32|30|30|28|28|26|25|25|24|23|23|40|24|27|26|27|29|29|31|31|32|35|34|35|36|37|38|39|40|43|42|43|0\n25|24|24|23|23|27|22|22|21|19|18|17|16|16|20|17|18|19|20|21|29|28|26|25|26|27|28|29|0\n33|31|30|28|26|25|25|24|23|22|22|21|20|19|18|18|32|19|20|21|29|23|24|27|26|27|28|29|30|31|32|33|0\n68|67|66|66|63|61|61|60|59|58|57|56|56|64|65|70|71|50|50|49|48|48|52|47|46|43|43|44|45|54|42|41|40|39|38|38|73|39|40|41|42|55|44|45|46|47|53|49|51|51|52|53|54|55|72|57|58|59|60|62|62|63|64|65|69|67|68|69|70|71|72|73|0\n28|26|26|24|24|23|23|22|21|19|18|17|16|16|20|17|18|19|20|21|22|29|25|25|27|27|28|29|0\n31|30|29|28|27|27|32|33|26|25|23|22|22|21|20|19|19|35|20|21|24|23|24|25|26|34|28|29|30|31|32|33|34|35|0\n55|54|54|53|53|52|50|49|49|48|46|46|45|44|43|43|58|59|41|40|40|39|38|36|35|34|33|33|32|32|61|37|34|35|36|37|38|39|42|41|42|60|44|45|47|47|48|51|50|51|52|57|56|55|56|57|58|59|60|61|0\n49|49|48|46|45|45|44|43|43|40|40|37|37|38|36|35|33|32|31|29|28|28|30|27|27|42|34|29|30|31|32|33|34|35|36|39|38|39|41|41|42|51|44|47|46|47|48|50|50|51|0\n47|46|44|44|43|40|39|37|37|38|41|36|35|35|48|49|34|33|27|27|28|29|30|31|32|51|28|29|30|31|32|33|34|50|36|42|38|39|40|41|42|43|45|45|46|47|48|49|50|51|0\n28|27|25|25|24|23|23|22|21|17|17|16|16|19|20|18|18|19|20|21|22|29|24|26|26|27|28|29|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n89|89|87|84|83|83|85|82|82|78|77|76|75|75|79|80|74|73|72|71|70|69|68|66|66|65|64|63|63|62|59|58|58|57|56|56|54|53|52|51|49|48|48|47|47|55|50|49|50|51|52|53|54|55|61|57|60|59|60|61|62|91|64|65|67|67|68|69|70|71|72|73|74|81|76|77|78|79|80|81|88|86|84|85|86|87|88|90|90|91|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n46|40|40|41|42|39|38|38|44|37|36|36|47|34|33|32|31|30|30|29|28|27|26|26|49|27|28|29|35|31|32|33|34|35|48|37|45|39|43|41|42|43|44|45|46|47|48|49|0\n46|46|44|44|43|43|48|49|41|40|39|37|36|36|38|35|34|33|31|30|30|29|28|27|27|51|28|29|32|31|32|33|34|35|42|37|38|39|40|41|42|50|45|45|47|47|48|49|50|51|0\n55|54|51|51|49|47|47|46|42|41|41|43|44|39|39|38|36|36|35|35|33|33|32|31|30|29|29|53|30|31|32|34|34|50|37|37|38|40|40|45|42|43|44|45|46|48|48|49|50|52|52|53|54|55|0\n60|60|61|59|58|56|55|54|54|53|50|50|51|49|47|47|46|44|43|42|42|41|40|39|38|37|36|35|34|33|33|63|34|35|36|37|38|39|40|41|45|43|44|45|46|48|48|49|52|51|52|53|57|55|56|57|58|59|62|61|62|63|0\n16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0\n50|47|46|45|44|44|48|43|43|42|39|39|38|38|35|35|33|32|32|30|28|28|29|27|27|37|31|29|30|31|34|33|34|36|36|37|41|40|40|41|42|51|49|45|46|47|48|49|50|51|0\n36|35|34|33|31|31|30|29|28|27|27|37|26|25|23|23|22|21|21|39|22|24|24|25|26|38|28|29|30|32|32|33|34|35|36|37|38|39|0\n22|21|21|19|18|17|15|14|14|13|13|20|16|15|16|17|18|19|20|23|22|23|0\n45|43|43|42|42|41|40|39|38|37|36|35|35|33|31|30|30|29|26|26|27|25|25|34|28|27|28|29|32|31|32|33|34|47|36|37|38|39|40|41|46|44|44|45|46|47|0\n12|10|10|11|8|8|9|9|13|11|12|13|0\n36|35|34|34|32|29|28|27|27|30|25|24|24|22|22|21|20|20|33|21|23|23|26|25|26|31|28|29|30|31|32|33|37|35|36|37|0\n19|18|18|17|15|14|14|13|12|12|21|13|16|15|16|17|20|19|20|21|0\n16|16|17|15|14|13|13|11|11|12|12|19|14|15|18|17|18|19|0\n43|39|37|37|36|35|34|33|33|40|32|30|30|28|27|26|25|24|23|23|29|42|24|25|26|27|28|29|31|31|32|41|34|35|36|38|38|39|40|41|42|43|0\n63|63|62|60|59|58|57|56|55|55|54|52|52|50|50|49|48|47|46|46|44|42|42|41|40|39|37|37|35|34|34|36|45|35|36|38|38|39|40|41|43|43|44|45|65|47|48|49|51|51|53|53|54|61|56|57|58|59|60|61|62|64|64|65|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n8|8|9|7|7|11|10|9|10|11|0\n61|60|60|59|57|57|56|55|54|52|52|53|51|50|48|47|46|45|41|40|40|39|38|38|43|36|35|35|34|33|33|49|34|37|36|37|44|39|42|41|42|43|44|45|46|47|48|49|50|51|63|53|54|55|56|58|58|59|62|61|62|63|0\n25|24|24|23|20|19|19|21|18|16|16|15|15|27|17|17|18|22|20|21|22|23|26|25|26|27|0\n38|37|35|35|34|34|32|30|28|28|27|27|26|22|21|21|23|24|25|33|22|23|24|25|26|31|29|29|30|31|32|33|39|36|36|37|38|39|0\n31|29|28|27|26|25|23|22|22|21|19|19|18|17|17|30|18|20|20|21|24|23|24|25|26|27|28|29|30|31|0\n17|15|13|13|12|11|10|10|16|11|12|14|14|15|16|17|0\n49|48|47|45|45|44|44|43|42|42|51|41|40|39|38|36|36|35|34|33|32|31|30|29|28|28|53|29|30|31|32|33|34|35|37|37|38|39|40|41|52|43|50|46|46|47|48|49|50|51|52|53|0\n48|47|47|45|41|40|40|39|39|43|37|37|36|35|34|33|31|30|29|29|28|26|26|27|46|27|28|32|30|31|32|33|34|35|36|38|38|44|42|41|42|43|44|45|46|49|48|49|0\n49|46|46|45|45|44|40|38|37|37|36|35|34|34|41|33|32|31|30|28|28|27|26|26|43|27|29|29|30|31|32|33|42|35|36|39|38|39|40|41|42|43|44|48|47|47|48|49|0\n32|31|29|27|27|28|26|26|33|23|23|24|21|20|20|19|19|35|22|21|22|25|24|25|34|30|28|29|30|31|32|33|34|35|0\n37|34|34|33|30|30|31|29|28|27|24|23|23|22|22|21|20|20|36|21|26|25|24|25|26|27|28|29|32|31|32|33|35|35|36|37|0\n25|24|23|22|22|26|20|19|18|17|16|15|15|21|16|17|18|19|20|21|27|23|24|25|26|27|0\n50|47|46|46|48|45|44|43|42|40|40|39|38|37|36|36|35|34|31|31|30|29|28|27|27|33|28|29|30|32|32|33|34|35|51|37|38|39|41|41|42|43|44|45|49|47|48|49|50|51|0\n27|26|21|21|20|19|18|18|23|17|16|15|15|25|16|17|24|19|20|22|22|23|24|25|26|27|0\n68|67|67|65|64|63|62|61|58|58|59|54|53|52|51|49|49|46|46|43|43|44|41|41|40|39|39|48|55|56|38|37|36|36|66|37|38|57|40|42|42|45|44|45|47|47|48|50|50|51|52|53|54|55|56|57|60|59|60|61|62|63|64|65|66|69|68|69|0\n26|26|27|25|24|22|22|23|21|20|18|17|16|16|19|17|18|19|20|21|29|23|24|25|28|27|28|29|0\n58|57|53|52|51|51|50|47|47|46|45|44|44|49|55|43|41|41|39|38|38|37|37|36|35|33|32|31|31|34|32|33|34|35|36|59|40|39|40|42|42|43|56|45|46|48|48|49|50|54|52|53|54|55|56|57|58|59|0\n51|49|49|50|52|48|47|46|45|45|43|43|42|39|38|35|34|34|36|37|33|33|32|31|30|29|29|55|30|31|32|41|40|35|36|37|38|39|40|41|42|44|44|54|46|47|48|53|50|51|52|53|54|55|0\n20|19|19|17|14|13|13|15|12|12|18|16|14|15|16|17|18|21|20|21|0\n46|46|44|38|36|36|37|39|35|34|33|33|41|32|31|31|28|27|27|29|26|25|25|45|26|30|28|29|30|43|32|42|34|35|40|37|38|39|40|41|42|43|44|45|47|47|0\n35|32|31|31|33|34|30|29|27|27|25|24|24|23|21|21|20|20|37|22|22|23|26|25|26|28|28|29|30|36|32|33|34|35|36|37|0\n44|43|42|41|40|39|38|38|37|35|35|33|31|30|30|29|27|25|25|26|24|24|34|28|26|27|28|29|32|31|32|33|34|36|36|37|45|39|40|41|42|43|44|45|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n33|31|30|29|28|27|26|24|23|22|21|20|20|19|18|18|32|19|25|21|22|23|24|25|26|27|28|29|30|31|32|33|0\n37|34|34|33|32|31|30|28|28|29|26|24|24|22|21|20|20|23|27|21|22|23|25|25|26|27|36|29|30|31|32|33|35|35|36|37|0\n60|59|58|57|56|55|54|52|51|51|50|48|47|47|46|44|43|43|42|42|40|38|36|35|35|37|34|33|32|32|41|33|34|39|36|37|38|39|40|41|61|45|44|45|46|49|48|49|50|53|52|53|54|55|56|57|58|59|60|61|0\n54|52|52|51|50|49|48|45|45|46|43|43|40|40|39|39|42|38|35|34|34|36|32|31|30|29|29|33|30|31|32|33|37|35|36|37|38|55|41|41|42|44|44|47|46|47|48|49|50|51|53|53|54|55|0\n41|40|40|39|38|36|36|35|34|32|31|31|30|25|25|24|24|27|28|29|23|23|43|26|26|27|28|29|30|33|32|33|34|35|37|37|38|39|42|41|42|43|0\n66|65|63|62|62|61|58|58|57|56|55|54|53|51|51|52|48|47|46|46|44|43|43|42|41|40|40|50|67|68|39|38|37|36|36|37|38|39|69|41|42|45|44|45|49|47|48|49|50|60|52|53|54|55|56|57|59|59|60|61|64|63|64|65|66|67|68|69|0\n57|54|52|52|51|48|48|49|47|46|46|45|43|41|41|42|40|39|38|35|35|36|30|30|31|32|33|34|56|31|32|33|34|37|36|37|38|39|40|44|42|43|44|45|55|47|50|49|50|51|53|53|54|55|56|57|0\n25|24|24|26|27|21|20|20|22|19|16|16|17|18|29|17|18|19|23|21|22|23|28|25|26|27|28|29|0\n34|32|32|33|31|29|29|28|26|25|24|23|22|21|20|19|19|27|20|21|22|23|24|25|26|27|28|30|30|31|35|33|34|35|0\n40|40|38|35|34|33|33|36|32|31|27|27|26|24|24|25|29|22|22|23|39|23|30|25|26|28|28|29|30|31|32|37|34|35|36|37|38|39|41|41|0\n16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0\n43|42|41|41|40|38|37|37|36|36|35|35|33|33|32|28|27|27|29|26|26|25|25|47|31|30|28|29|30|31|32|34|34|46|45|39|38|39|40|44|42|43|44|45|46|47|0\n19|18|17|16|16|20|21|15|13|13|14|23|14|15|22|17|18|19|20|21|22|23|0\n25|23|23|20|18|17|17|16|15|14|14|21|22|15|16|19|18|19|20|21|22|24|24|25|0\n45|42|42|40|40|39|37|37|36|35|31|31|30|27|27|28|29|33|26|26|24|24|25|25|44|34|28|29|30|32|32|33|34|35|36|38|38|39|41|41|43|43|44|45|0\n29|28|27|26|25|24|23|21|21|22|19|18|17|17|20|31|18|19|20|30|22|23|24|25|26|27|28|29|30|31|0\n20|19|19|18|17|17|22|23|16|14|14|15|25|15|16|24|18|21|20|21|22|23|24|25|0\n37|36|35|33|32|30|28|28|29|27|25|25|24|23|22|21|20|20|34|21|22|23|24|26|26|27|31|29|30|31|32|33|34|35|36|37|0\n20|19|19|18|17|17|16|15|14|13|13|23|14|15|16|22|18|21|20|21|22|23|0\n64|63|63|62|61|59|57|57|58|56|56|66|55|54|54|68|52|49|49|48|47|47|46|44|43|43|42|41|40|39|37|37|36|36|53|38|38|39|40|41|42|45|44|45|46|51|48|50|50|51|52|53|69|55|67|60|58|59|60|61|62|65|64|65|66|67|68|69|0\n57|54|53|52|52|55|56|58|59|49|48|48|47|46|45|44|44|43|41|39|38|37|36|36|40|35|34|33|32|32|61|33|34|35|42|37|38|39|40|41|42|43|51|45|46|47|50|49|50|51|60|53|54|55|56|57|58|59|60|61|0\n22|20|19|18|17|16|15|14|14|21|13|13|23|15|16|17|18|19|20|21|22|23|0\n31|31|30|29|28|28|26|25|24|23|22|21|19|18|18|20|27|19|20|21|22|23|24|25|26|27|33|29|30|32|32|33|0\n23|23|24|22|22|26|20|19|17|17|16|15|15|21|16|18|18|19|20|21|27|25|24|25|26|27|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n43|38|38|37|34|34|35|31|31|32|30|28|28|29|40|26|26|25|24|23|23|42|24|25|27|27|41|29|30|33|32|33|36|35|36|37|39|39|40|41|42|43|0\n37|36|36|35|34|33|33|31|30|28|28|26|26|25|24|23|22|21|21|32|22|23|24|25|27|27|29|29|30|31|32|39|34|35|38|37|38|39|0\n60|59|58|56|56|57|55|51|51|49|49|47|47|48|53|45|43|41|41|40|39|39|38|35|35|36|34|32|32|33|46|33|34|37|36|37|38|44|40|42|42|43|44|45|46|54|48|50|50|52|52|53|54|55|61|57|58|59|60|61|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n29|29|28|26|25|24|24|23|22|20|19|19|18|17|17|31|18|21|20|21|22|23|27|25|26|27|28|30|30|31|0\n29|26|25|25|24|21|20|20|22|17|17|18|16|16|28|19|18|19|23|21|22|23|24|27|26|27|28|29|0\n18|16|16|17|15|13|12|11|11|14|12|13|14|15|19|17|18|19|0\n23|23|21|21|22|19|19|17|17|14|14|15|16|15|16|18|18|20|20|25|22|24|24|25|0\n18|17|16|15|13|11|11|12|14|19|12|13|14|15|16|17|18|19|0\n33|30|29|27|27|26|24|23|23|22|22|21|20|19|18|18|32|19|20|21|31|25|24|25|26|28|28|29|30|31|32|33|0\n52|51|49|49|48|48|46|44|43|43|42|40|40|39|38|37|35|34|34|32|31|30|29|28|28|33|47|29|30|31|32|33|36|35|36|37|38|39|41|41|42|45|44|45|46|47|53|50|50|51|52|53|0\n33|32|31|30|27|27|28|26|25|24|24|34|35|21|21|22|20|20|37|23|22|23|36|25|26|29|28|29|30|31|32|33|34|35|36|37|0\n25|24|24|23|21|20|19|18|18|17|16|15|15|27|16|17|22|19|20|21|22|23|26|25|26|27|0\n9|9|7|7|8|11|8|10|10|11|0\n30|29|28|26|26|27|25|23|22|22|19|19|18|17|17|21|18|20|20|21|24|23|24|25|31|27|28|29|30|31|0\n40|40|39|39|38|36|34|34|35|33|32|31|30|27|26|25|25|24|23|23|29|43|24|28|26|27|28|29|30|31|32|33|37|35|36|37|38|42|41|41|42|43|0\n40|39|39|37|31|31|30|29|29|33|28|28|35|26|25|25|24|23|22|22|38|23|24|27|26|27|36|34|30|32|32|33|34|35|36|37|38|41|40|41|0\n28|23|23|24|22|22|26|21|21|19|18|16|16|17|20|17|18|19|20|29|27|25|24|25|26|27|28|29|0\n44|44|40|40|39|39|38|37|34|34|35|33|32|30|29|29|28|27|26|25|24|24|43|25|26|27|28|31|30|31|32|33|36|35|36|37|38|42|41|41|42|43|45|45|0\n61|60|59|59|58|55|54|54|56|57|52|50|50|49|46|45|43|43|44|47|40|40|38|36|35|35|34|34|33|33|42|53|39|37|36|37|38|39|41|41|42|48|44|45|46|47|48|49|51|51|52|53|63|55|56|57|58|62|60|61|62|63|0\n13|10|9|9|8|8|12|11|10|11|12|13|0\n25|21|21|22|20|20|18|17|16|15|14|14|19|15|16|17|18|19|24|23|22|23|24|25|0\n46|46|45|44|43|41|39|39|40|38|37|36|36|48|49|35|33|33|32|31|30|29|28|27|27|51|28|29|30|31|32|34|34|35|50|37|38|42|40|41|42|43|44|45|47|47|48|49|50|51|0\n12|11|11|10|10|9|9|15|14|13|12|13|14|15|0\n48|46|46|44|44|45|43|40|39|39|38|36|36|37|33|33|32|30|30|29|28|27|26|26|35|27|28|29|31|31|32|34|34|35|42|37|38|41|40|41|42|43|49|45|47|47|48|49|0\n11|8|8|7|7|10|9|9|10|11|0\n54|53|52|51|51|50|47|47|45|44|43|42|41|40|39|39|37|36|35|34|33|33|32|31|30|29|29|49|30|31|32|38|34|35|36|37|38|46|40|41|42|43|44|45|46|48|48|49|50|55|52|53|54|55|0\n80|77|76|76|75|73|73|72|68|67|67|69|70|64|63|62|61|61|65|66|60|59|59|58|57|55|54|53|51|50|49|49|48|46|46|45|44|43|42|42|56|43|44|45|47|47|48|52|50|51|52|53|54|55|56|57|58|81|60|79|62|63|64|65|66|71|68|69|70|71|72|74|74|75|78|77|78|79|80|81|0\n45|44|42|42|41|40|39|38|37|36|34|34|32|30|30|31|29|27|27|26|25|24|24|25|26|28|28|29|33|31|32|33|35|35|36|37|38|39|40|41|43|43|44|45|0\n45|44|41|40|40|39|38|36|35|30|30|31|32|33|29|29|28|26|25|25|24|24|43|27|26|27|28|37|34|31|32|33|34|35|36|37|38|39|42|41|42|43|44|45|0\n50|49|49|48|47|46|43|43|44|41|40|40|39|38|36|36|35|34|33|33|52|31|31|29|29|30|54|55|30|32|32|53|34|35|37|37|38|39|42|41|42|45|44|45|46|47|48|51|50|51|52|53|54|55|0\n15|12|12|10|10|9|9|14|11|11|13|13|14|15|0\n49|48|46|46|44|43|39|39|40|38|37|35|35|34|32|32|30|29|29|28|27|26|26|42|45|27|28|31|30|31|33|33|34|36|36|37|38|41|40|41|42|43|44|45|47|47|48|49|0\n22|21|21|20|18|15|15|16|14|13|13|19|14|17|16|17|18|19|20|23|22|23|0\n58|58|55|54|54|53|50|48|48|49|47|46|46|45|44|42|42|41|40|39|37|35|35|36|34|33|32|31|31|57|32|33|34|38|36|37|38|39|40|41|43|43|44|45|52|47|51|49|50|51|52|53|56|55|56|57|59|59|0\n18|17|17|16|15|12|12|11|11|14|13|13|14|15|16|19|18|19|0\n18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0\n61|59|58|56|56|55|52|51|50|49|48|47|46|45|45|53|44|42|41|40|40|38|38|37|36|35|34|33|32|32|60|33|34|35|36|37|39|39|43|41|42|43|44|54|46|47|48|49|50|51|52|53|54|55|57|57|58|59|60|61|0\n61|61|60|58|58|57|55|55|54|53|53|52|51|46|46|45|45|44|44|42|42|41|40|39|37|37|36|34|34|33|33|50|35|35|36|38|38|39|40|41|43|43|49|48|47|47|48|49|50|51|52|63|54|56|56|57|59|59|60|62|62|63|0\n48|46|45|43|42|42|41|40|39|38|37|37|47|36|33|33|32|32|30|29|28|27|26|26|31|27|28|29|30|31|35|34|34|35|36|49|38|39|40|41|44|43|44|45|46|47|48|49|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n15|15|14|13|13|12|10|10|11|11|12|17|14|16|16|17|0\n63|63|62|60|58|57|57|56|54|54|53|52|51|51|50|49|48|47|47|65|66|46|44|44|43|42|41|40|39|37|37|36|36|68|69|38|38|39|40|41|42|43|45|45|46|67|48|49|50|61|52|53|55|55|56|59|58|59|60|61|62|64|64|65|66|67|68|69|0\n26|26|25|23|22|19|18|18|20|17|15|15|16|24|16|17|21|19|20|21|22|23|24|25|27|27|0\n55|54|54|53|53|51|50|44|44|43|43|46|41|41|42|48|40|39|37|36|36|35|32|32|33|30|30|31|52|31|34|33|34|35|38|37|38|39|40|49|42|47|45|45|46|47|48|49|50|51|52|57|56|55|56|57|0\n22|22|21|20|18|17|16|15|13|13|14|19|14|15|16|17|18|19|20|21|23|23|0\n48|46|42|42|43|41|40|40|45|39|38|38|37|36|35|34|33|32|32|50|51|29|29|28|28|31|53|30|30|31|52|33|34|35|36|37|49|39|47|41|44|43|44|45|46|47|48|49|50|51|52|53|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n55|54|53|52|50|49|49|48|46|46|45|45|56|57|43|43|42|40|40|39|37|36|35|35|34|33|32|31|31|59|32|33|34|38|36|37|38|39|41|41|42|44|44|58|47|47|48|51|50|51|52|53|54|55|56|57|58|59|0\n55|54|54|53|52|50|49|48|47|46|46|45|44|43|43|57|42|41|39|39|38|37|36|35|34|33|31|31|32|59|32|33|34|35|36|37|38|40|40|41|42|58|44|45|51|47|48|49|50|51|52|53|56|55|56|57|58|59|0\n21|20|20|19|18|17|17|23|15|14|14|16|25|15|16|24|18|19|22|21|22|23|24|25|0\n25|24|23|22|19|18|18|17|16|15|14|14|21|15|16|17|20|19|20|21|22|23|24|25|0\n48|47|45|45|44|43|43|41|41|39|38|34|34|35|33|33|32|31|31|30|29|28|26|26|27|27|28|29|30|40|32|37|36|35|36|37|38|39|40|42|42|49|44|46|46|47|48|49|0\n53|51|50|48|48|47|45|45|44|43|42|38|38|39|40|41|37|36|34|33|32|30|30|29|28|28|35|29|31|31|32|33|34|35|36|37|52|39|40|41|42|43|44|46|46|47|49|49|50|51|52|53|0\n24|23|22|21|20|20|25|18|17|17|16|15|15|27|16|19|18|19|26|21|22|23|24|25|26|27|0\n46|43|43|42|42|40|40|41|39|38|36|35|34|33|32|30|28|28|27|27|26|25|25|37|26|31|29|29|30|31|32|33|34|35|36|37|38|39|47|41|45|44|44|45|46|47|0\n35|33|32|28|28|27|26|25|24|23|22|21|20|19|19|30|31|34|20|21|22|23|24|25|26|27|29|29|30|31|32|33|34|35|0\n36|36|35|35|38|33|33|32|32|40|41|30|30|28|27|27|26|25|24|23|23|43|24|25|26|29|28|29|31|31|42|34|34|39|37|37|38|39|40|41|42|43|0\n42|37|35|35|36|34|34|33|31|30|29|29|32|40|28|26|25|24|24|23|23|43|27|25|26|27|28|41|30|31|32|33|39|38|36|37|38|39|40|41|42|43|0\n72|70|70|69|68|67|65|65|64|63|63|62|61|57|56|56|58|55|54|53|50|49|48|47|47|51|45|44|44|43|42|41|40|39|38|38|60|39|40|41|42|43|46|45|46|52|48|49|50|51|52|53|54|55|59|57|58|59|60|61|62|73|64|66|66|67|68|69|71|71|72|73|0\n25|24|24|23|21|21|20|18|17|16|16|15|15|27|19|17|18|19|20|22|22|23|26|25|26|27|0\n42|41|40|40|39|36|36|35|33|33|32|31|31|29|28|27|25|25|24|23|23|30|24|26|26|27|28|29|30|38|32|34|34|35|37|37|38|39|43|41|42|43|0\n37|35|33|32|30|29|29|28|28|27|25|24|24|23|21|21|20|20|36|22|22|23|26|25|26|27|34|31|30|31|32|33|34|35|36|37|0\n50|50|49|49|48|47|44|43|43|45|46|53|42|41|39|39|37|35|33|33|34|36|31|31|30|29|29|55|30|32|32|38|34|35|36|37|38|40|40|41|42|54|44|45|46|47|48|52|51|51|52|53|54|55|0\n50|49|48|47|46|45|44|44|43|42|39|38|34|34|33|32|32|36|27|27|28|29|30|31|40|41|28|29|30|31|37|33|35|35|36|37|38|39|40|41|42|43|51|45|46|47|48|49|50|51|0\n26|25|25|24|22|21|19|18|18|17|16|15|15|23|16|17|20|19|20|21|22|23|24|27|26|27|0\n38|35|34|34|33|32|28|28|29|30|27|25|24|24|26|23|22|21|21|39|22|23|37|25|26|27|31|29|30|31|32|33|36|35|36|37|38|39|0\n33|33|34|32|30|30|28|27|24|23|23|25|22|21|20|19|19|29|20|21|22|26|24|25|26|27|28|29|31|31|32|35|34|35|0\n24|23|22|22|21|20|18|17|16|15|14|14|19|15|16|17|18|19|20|21|25|23|24|25|0\n18|16|15|14|13|12|11|11|17|19|12|13|14|15|16|17|18|19|0\n40|38|38|36|36|35|34|33|32|32|31|30|28|26|25|24|24|23|22|22|29|23|27|25|26|27|28|29|30|31|41|33|34|35|37|37|39|39|40|41|0\n39|38|38|40|36|31|31|30|30|29|28|27|27|34|25|25|24|23|22|22|37|23|24|26|26|35|28|29|33|32|32|33|34|35|36|37|41|39|40|41|0\n33|32|31|30|29|29|34|27|27|26|25|25|36|22|22|21|20|20|24|21|23|23|24|37|26|28|28|35|30|31|32|33|34|35|36|37|0\n32|30|30|29|27|27|28|26|25|24|22|21|19|19|18|18|23|20|20|21|22|23|24|25|26|33|28|29|31|31|32|33|0\n3|3|0\n27|22|22|23|20|20|21|19|18|15|15|16|17|26|16|17|18|19|25|21|24|23|24|25|26|27|0\n26|25|25|23|21|21|20|19|16|16|17|15|15|24|18|17|18|19|20|22|22|23|24|27|26|27|0\n37|36|35|30|30|28|27|26|25|25|24|23|20|20|21|22|32|33|34|21|22|23|24|29|26|27|28|29|31|31|32|33|34|35|36|37|0\n57|56|56|55|54|53|52|52|50|49|48|47|46|45|43|42|42|40|40|38|38|37|35|34|33|32|32|31|31|51|36|33|34|35|36|37|39|39|41|41|44|43|44|45|46|47|48|49|50|51|59|53|54|55|58|57|58|59|0\n22|22|21|20|18|17|16|15|14|13|13|19|14|15|16|17|18|19|20|21|23|23|0\n40|40|37|37|36|35|33|33|32|31|29|28|27|26|25|24|24|23|22|22|39|23|30|25|26|27|28|29|30|31|32|34|34|35|36|38|38|39|41|41|0\n75|75|74|74|73|71|70|69|67|66|65|65|64|62|62|59|59|60|58|56|55|54|52|52|51|50|49|49|48|46|45|45|44|43|42|41|40|40|72|41|42|43|44|47|46|47|48|57|50|51|53|53|54|55|56|57|58|61|60|61|63|63|64|68|66|67|68|69|70|71|72|73|77|76|76|77|0\n32|31|30|29|28|28|25|24|24|23|21|21|20|19|18|18|27|19|20|22|22|23|26|25|26|27|33|29|30|31|32|33|0\n41|41|40|39|38|37|37|43|35|34|33|33|32|30|29|28|28|27|25|25|24|24|45|26|26|27|31|29|30|31|32|36|34|35|36|44|38|39|40|42|42|43|44|45|0\n47|45|43|41|39|39|38|37|37|36|35|35|33|33|31|31|30|29|28|26|25|25|27|46|26|27|28|29|30|32|32|34|34|44|36|42|38|40|40|41|42|43|44|45|46|47|0\n22|22|21|20|16|16|17|15|14|13|13|19|14|15|18|17|18|19|20|21|23|23|0\n33|30|27|27|28|29|31|24|24|23|22|21|21|18|18|19|20|19|20|26|22|23|25|25|26|32|28|29|30|31|32|33|0\n39|38|38|37|35|35|34|34|41|32|30|30|29|29|27|27|26|25|24|23|23|43|24|25|26|28|28|33|31|31|32|33|42|36|36|37|40|39|40|41|42|43|0\n14|14|12|12|11|10|9|9|10|11|13|13|15|15|0\n83|82|82|81|78|77|77|79|76|75|75|73|72|70|69|67|66|64|63|63|62|62|68|61|60|59|57|57|56|55|46|46|47|45|45|49|50|44|44|52|53|54|74|51|48|47|48|49|50|51|52|53|54|55|56|58|58|59|60|61|71|65|64|65|66|67|68|69|70|71|72|73|74|85|76|80|78|79|80|81|84|83|84|85|0\n37|35|34|32|32|31|30|29|26|26|25|24|24|23|22|22|20|20|21|21|36|23|28|25|27|27|28|29|30|31|33|33|34|35|36|37|0\n45|41|40|40|42|39|38|36|35|34|33|31|30|30|32|29|28|27|26|25|24|24|44|25|26|27|28|29|37|31|32|33|34|35|36|37|38|39|43|41|42|43|44|45|0\n64|61|61|62|60|58|58|56|56|55|54|53|52|49|49|48|48|47|47|44|44|43|42|41|40|38|37|36|36|35|34|34|46|35|39|37|38|39|40|41|42|43|45|45|46|65|51|50|50|51|52|53|54|55|57|57|59|59|60|63|62|63|64|65|0\n26|25|24|23|22|22|21|19|18|17|16|15|15|20|16|17|18|19|20|21|27|23|24|25|26|27|0\n25|23|21|21|19|19|17|17|16|15|14|14|24|15|16|18|18|20|20|22|22|23|24|25|0\n25|22|22|21|20|20|19|17|16|15|14|14|18|15|16|17|18|19|24|21|23|23|24|25|0\n33|32|32|31|28|28|29|27|27|24|24|23|21|21|20|19|19|26|20|22|22|23|25|25|26|35|30|29|30|31|34|33|34|35|0\n63|62|62|61|59|59|60|65|57|57|52|52|53|54|55|50|50|49|47|47|46|45|44|41|40|39|38|38|42|36|36|35|35|67|37|37|43|39|40|41|42|43|44|45|46|48|48|49|51|51|56|53|54|55|56|58|58|66|60|61|64|63|64|65|66|67|0\n37|37|35|35|34|33|32|31|30|29|28|28|25|25|24|23|21|21|22|27|22|23|24|26|26|27|39|29|30|31|32|33|34|36|36|38|38|39|0\n96|95|92|91|91|90|88|88|87|85|84|84|83|81|81|80|79|79|77|77|76|75|72|72|73|71|71|70|69|67|66|64|64|63|61|61|60|59|57|56|56|55|53|52|52|51|50|50|68|51|54|53|54|55|58|57|58|59|60|62|62|63|65|65|66|67|68|69|70|97|74|73|74|75|76|78|78|94|80|82|82|83|86|85|86|87|89|89|90|93|92|93|94|95|96|97|0\n18|17|16|15|15|14|13|11|11|12|12|13|14|19|16|17|18|19|0\n44|42|41|40|39|38|37|36|36|35|33|33|32|32|29|28|27|27|26|25|24|24|31|25|26|30|28|29|30|31|45|34|34|35|43|37|38|39|40|41|42|43|44|45|0\n61|60|60|59|58|57|57|56|56|64|65|54|54|53|51|51|50|50|48|46|45|45|39|38|37|36|36|40|41|35|35|43|44|49|42|37|38|39|40|41|42|43|44|47|46|47|48|49|67|52|52|53|55|55|66|63|58|59|62|61|62|63|64|65|66|67|0\n22|22|21|18|18|17|16|15|14|13|13|20|14|15|16|17|19|19|20|21|23|23|0\n40|39|38|38|37|34|34|35|32|31|30|29|28|26|26|25|24|23|22|22|33|23|24|25|27|27|28|29|30|31|32|33|36|35|36|37|41|39|40|41|0\n75|73|73|72|71|68|68|67|64|62|61|61|60|60|59|58|57|56|55|55|54|52|52|51|51|50|49|48|47|46|45|44|43|42|41|39|39|40|40|41|42|43|44|45|46|47|48|49|50|70|53|53|54|66|56|57|58|59|65|63|62|63|64|65|66|67|69|69|70|71|72|74|74|75|0\n60|60|58|57|56|55|54|48|48|46|45|45|44|42|41|41|40|40|50|39|38|37|37|52|35|35|34|33|32|32|59|33|34|36|36|53|38|39|51|43|42|43|44|47|46|47|49|49|50|51|52|53|54|55|56|57|58|59|61|61|0\n81|80|75|75|74|73|72|71|71|77|68|67|66|64|63|63|62|61|60|57|57|58|56|56|69|55|54|51|51|50|49|49|46|45|44|44|47|43|42|42|79|43|48|45|46|47|48|53|50|52|52|53|54|55|70|59|58|59|60|61|62|65|64|65|66|67|68|69|70|78|72|73|74|76|76|77|78|79|80|81|0\n19|18|17|14|14|15|12|12|11|11|13|13|16|15|16|17|18|19|0\n62|62|60|58|57|56|56|55|53|51|50|50|52|49|47|47|45|44|44|43|42|41|39|39|38|36|36|35|34|33|33|61|34|35|37|37|38|40|40|41|42|43|46|45|46|48|48|49|54|51|52|53|54|55|59|57|58|59|60|61|63|63|0\n26|26|25|25|24|24|29|23|21|21|20|19|17|17|18|31|18|19|20|22|22|23|30|28|27|27|28|29|30|31|0\n18|17|17|14|14|13|12|11|11|16|12|13|15|15|16|19|18|19|0\n18|17|17|19|16|15|14|13|12|12|21|13|14|15|16|20|18|19|20|21|0\n21|19|17|16|15|15|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0\n26|26|24|23|22|20|19|17|17|18|16|15|15|25|16|21|18|19|20|21|22|23|24|25|27|27|0\n9|9|8|7|7|11|8|10|10|11|0\n17|17|18|19|20|16|15|13|13|12|12|14|14|15|16|21|18|19|20|21|0\n71|70|68|68|67|65|65|63|62|62|61|59|59|58|58|72|73|57|56|55|53|52|51|51|50|49|47|47|46|45|43|43|42|41|40|39|39|75|40|41|42|44|44|45|46|48|48|49|50|54|52|53|54|55|56|57|74|60|60|61|64|63|64|66|66|67|69|69|70|71|72|73|74|75|0\n8|7|6|6|9|7|8|9|0\n29|25|25|26|23|22|21|21|20|18|18|17|16|16|28|17|19|19|20|24|22|23|24|27|26|27|28|29|0\n16|15|15|17|13|13|12|11|11|19|12|14|14|18|16|17|18|19|0\n18|18|19|20|17|17|22|15|14|13|13|16|14|15|16|23|21|19|20|21|22|23|0\n29|29|28|28|31|26|25|25|24|22|21|21|20|19|18|18|33|19|20|23|22|23|24|27|26|27|32|30|30|31|32|33|0\n19|18|16|15|15|13|12|11|11|14|12|13|14|17|16|17|18|19|0\n39|37|35|35|34|32|30|29|29|28|26|26|27|25|24|23|22|21|21|38|22|23|24|25|33|27|28|31|30|31|32|33|34|36|36|37|38|39|0\n69|68|67|66|65|65|70|63|63|62|61|60|60|72|59|58|57|56|56|74|75|55|53|53|52|51|49|47|47|46|45|45|44|42|41|41|40|40|77|43|42|43|44|50|46|48|48|49|50|51|52|54|54|55|76|57|58|59|73|61|62|64|64|71|66|67|68|69|70|71|72|73|74|75|76|77|0\n38|37|37|39|36|35|34|33|32|32|41|42|31|30|29|26|25|25|27|24|23|23|24|28|26|27|28|29|30|31|43|33|34|35|36|40|38|39|40|41|42|43|0\n63|61|60|60|59|58|57|55|53|51|51|52|54|50|50|64|65|49|47|47|46|45|44|42|41|40|39|39|38|37|35|35|36|67|36|37|38|43|40|41|42|43|44|45|46|48|48|49|66|56|52|53|54|55|56|57|58|59|62|61|62|63|64|65|66|67|0\n48|47|46|46|45|43|43|42|40|39|38|36|36|34|33|33|32|31|30|29|28|27|26|26|41|27|28|29|30|31|32|35|34|35|37|37|38|39|40|41|42|44|44|45|49|47|48|49|0\n11|8|7|7|9|10|8|9|10|11|0\n33|31|31|32|30|29|29|27|26|25|24|23|22|21|20|19|19|28|20|21|22|23|24|25|26|27|28|35|30|34|32|33|34|35|0\n18|18|16|13|13|12|12|11|11|17|15|14|14|15|16|17|19|19|0\n65|65|64|63|61|61|60|58|58|59|56|54|53|52|51|50|48|46|46|47|45|44|43|41|40|39|39|42|37|37|36|35|35|57|36|38|38|55|40|41|42|43|44|45|49|47|48|49|50|51|52|53|54|55|56|57|67|59|60|62|62|63|64|66|66|67|0\n55|53|53|52|51|49|49|47|47|46|45|43|43|44|56|57|42|40|40|38|38|37|36|35|34|33|31|31|32|59|32|33|34|35|36|37|39|39|41|41|42|58|44|45|46|48|48|50|50|51|52|54|54|55|56|57|58|59|0\n38|36|36|35|33|33|32|32|31|30|28|27|26|25|24|22|22|21|21|29|23|23|24|25|26|27|28|29|30|31|39|34|34|35|37|37|38|39|0\n93|93|92|89|88|87|87|86|86|85|85|95|96|83|83|82|77|76|76|74|74|73|72|71|70|69|69|79|80|68|67|64|64|63|63|62|61|60|59|57|57|55|54|53|52|52|51|50|50|51|56|53|54|55|56|58|58|59|60|61|62|66|65|65|66|67|68|81|70|71|72|73|75|75|78|77|78|79|80|81|82|84|84|97|91|90|88|89|90|91|92|94|94|95|96|97|0\n7|7|6|6|9|8|8|9|0\n13|13|14|12|11|9|9|10|10|11|12|15|14|15|0\n26|26|23|23|20|20|21|19|18|17|16|15|15|25|16|17|18|19|22|21|22|24|24|25|27|27|0\n65|65|64|61|59|59|58|57|56|55|54|54|62|53|51|51|50|48|48|47|47|67|43|42|41|40|40|44|45|39|38|37|36|36|69|37|38|39|46|41|42|43|44|45|46|68|49|49|50|52|52|53|63|55|56|57|58|60|60|61|62|63|64|66|66|67|68|69|0\n67|61|61|60|60|63|64|58|58|56|55|55|54|53|52|49|48|47|47|50|46|44|44|43|41|40|40|39|38|37|36|35|35|66|36|37|38|39|42|41|42|43|45|45|46|51|48|49|50|51|52|53|54|57|56|57|59|59|65|62|62|63|64|65|66|67|0\n64|63|62|59|58|58|57|57|56|54|54|55|53|52|51|49|47|47|44|44|43|42|41|39|37|37|35|35|36|34|34|46|50|40|36|38|38|39|40|41|42|43|45|45|46|48|48|49|50|51|52|53|65|55|56|61|60|59|60|61|62|63|64|65|0\n3|3|0\n27|24|24|23|22|20|19|18|18|17|16|15|15|26|16|17|21|19|20|21|22|23|25|25|26|27|0\n38|37|37|34|29|29|28|28|31|32|27|27|25|25|24|22|22|21|21|36|23|23|24|26|26|35|33|30|30|31|32|33|34|35|36|39|38|39|0\n47|45|43|43|42|41|40|37|37|36|35|33|33|31|30|30|32|29|28|27|26|25|25|46|26|27|28|29|39|31|32|34|34|35|36|38|38|39|40|41|42|44|44|45|46|47|0\n68|68|65|65|66|64|60|60|61|58|58|56|56|55|54|54|53|51|50|50|49|48|47|46|45|45|70|71|42|42|43|41|39|39|38|38|73|40|40|41|44|43|44|72|46|47|48|49|52|51|52|53|63|55|57|57|59|59|62|61|62|63|64|67|66|67|69|69|70|71|72|73|0\n51|48|48|47|46|45|44|39|39|40|38|37|35|35|36|42|33|33|32|31|30|28|28|27|27|50|29|29|30|31|32|34|34|43|36|37|38|41|40|41|42|43|44|45|46|47|49|49|50|51|0\n35|34|32|31|30|28|28|27|26|24|24|23|21|20|20|19|19|33|22|21|22|23|25|25|26|27|29|29|30|31|32|33|34|35|0\n36|36|31|31|30|29|28|27|27|33|26|24|23|22|22|21|20|20|35|21|25|23|24|25|26|34|28|29|30|32|32|33|34|35|37|37|0\n30|30|28|27|25|25|24|23|22|20|20|19|18|17|17|29|18|19|21|21|22|23|24|26|26|27|28|29|31|31|0\n15|12|11|10|9|9|13|14|10|11|12|13|14|15|0\n26|25|25|22|21|21|20|19|17|17|16|15|15|24|16|18|18|19|20|23|22|23|24|27|26|27|0\n10|9|9|7|7|8|8|11|10|11|0\n68|66|65|65|67|64|56|56|57|58|54|52|51|51|50|49|48|47|46|46|45|42|42|41|41|40|40|60|61|39|38|37|36|36|63|37|38|39|62|44|43|43|44|45|55|47|48|49|50|53|52|53|54|55|59|57|58|59|60|61|62|63|64|69|66|67|68|69|0\n40|39|38|37|37|41|36|29|29|28|27|27|31|32|33|34|25|25|24|23|23|43|24|26|26|35|28|30|30|31|32|33|34|35|36|42|38|39|40|41|42|43|0\n26|25|23|23|22|22|20|19|17|16|16|15|15|21|18|17|18|19|20|21|27|24|24|25|26|27|0\n25|24|24|26|19|19|16|16|17|15|15|21|22|23|18|17|18|20|20|21|22|23|27|25|26|27|0\n50|50|49|47|47|46|44|41|40|39|39|42|37|36|35|35|34|32|31|30|30|29|28|27|27|45|28|29|33|31|32|33|34|38|36|37|38|43|40|41|42|43|44|45|46|48|48|49|51|51|0\n42|40|40|39|37|36|36|38|35|34|32|31|29|28|28|27|26|25|24|23|23|33|24|25|26|27|30|29|30|31|32|33|34|35|43|37|38|39|41|41|42|43|0\n40|39|38|37|35|35|36|34|30|29|28|28|31|27|26|25|24|23|22|22|33|23|24|25|26|27|32|29|30|31|32|33|34|41|36|37|38|39|40|41|0\n56|56|57|55|54|54|53|52|51|50|49|47|46|46|45|43|43|42|42|60|61|39|39|38|38|36|36|35|33|33|34|63|34|35|37|37|41|40|40|41|62|44|44|45|48|47|48|49|50|51|52|53|59|55|58|57|58|59|60|61|62|63|0\n37|35|33|32|30|30|29|28|27|27|24|24|21|21|22|23|20|20|36|26|22|23|25|25|26|34|28|29|31|31|32|33|34|35|36|37|0\n23|22|22|21|21|17|17|18|16|15|14|14|20|15|16|19|18|19|20|25|24|23|24|25|0\n52|52|53|50|50|49|48|48|47|45|44|43|43|42|41|40|39|38|37|37|56|57|35|35|32|32|33|31|31|59|34|33|34|36|36|58|38|39|40|41|42|46|44|45|46|47|55|49|51|51|54|53|54|55|56|57|58|59|0\n63|59|59|58|57|57|56|55|53|53|51|51|50|47|46|44|44|45|43|42|42|41|40|38|38|37|36|35|34|33|33|62|34|35|36|37|39|39|40|41|49|43|48|45|46|47|48|49|50|52|52|54|54|55|56|61|58|60|60|61|62|63|0\n22|21|21|19|18|15|15|16|14|13|13|20|14|17|16|17|18|19|20|23|22|23|0\n69|63|62|61|61|64|60|58|57|56|55|54|54|53|52|51|50|50|66|49|48|47|44|43|43|42|41|41|40|39|38|37|36|36|68|37|38|39|40|46|42|45|44|45|46|47|48|49|67|51|52|53|59|55|56|57|58|59|60|65|62|63|64|65|66|67|68|69|0\n13|12|9|9|8|8|11|10|10|11|12|13|0\n48|47|46|46|45|43|41|41|40|40|38|36|36|35|33|32|32|30|29|29|28|27|26|26|39|27|28|31|30|31|34|33|34|35|37|37|38|39|44|42|42|43|44|45|49|47|48|49|0\n64|63|61|60|59|58|57|56|56|55|55|54|51|51|50|47|44|44|45|46|48|43|43|41|39|39|38|37|36|35|34|34|42|35|36|37|38|40|40|41|42|53|49|45|46|47|48|49|50|52|52|53|54|65|62|57|58|59|60|61|62|63|64|65|0\n86|84|83|81|81|80|79|78|77|76|75|74|74|73|72|71|69|68|68|67|65|64|64|66|63|58|58|57|55|55|56|60|61|53|52|49|49|48|47|46|46|45|45|54|51|47|48|50|50|51|52|53|54|62|56|57|59|59|60|61|62|63|87|65|66|67|70|69|70|71|72|73|85|75|76|77|78|79|80|82|82|83|84|85|86|87|0\n9|9|7|7|8|11|8|10|10|11|0\n44|43|43|41|41|40|40|46|47|38|37|36|35|34|34|33|32|31|30|29|28|27|26|26|49|27|28|29|30|31|32|33|39|35|36|37|38|39|48|42|42|45|44|45|46|47|48|49|0\n11|9|8|7|7|10|8|9|10|11|0\n37|36|35|33|31|30|29|29|27|26|25|25|24|23|22|21|20|20|34|21|22|23|24|28|26|27|28|32|30|31|32|33|34|35|36|37|0\n35|35|36|34|33|33|38|30|29|29|28|24|24|23|22|22|26|21|21|32|27|23|25|25|26|27|28|31|30|31|32|39|34|37|36|37|38|39|0\n42|40|40|39|38|37|36|35|35|34|33|30|29|28|28|27|25|24|24|23|23|32|26|25|26|27|31|29|30|31|32|33|34|43|36|37|38|39|41|41|42|43|0\n11|9|8|7|7|10|8|9|10|11|0\n27|26|23|23|20|19|19|21|18|17|16|15|15|25|16|17|18|22|20|21|22|24|24|25|26|27|0\n82|81|81|76|75|74|72|70|70|71|69|69|68|68|78|66|66|65|61|61|60|56|56|57|58|59|63|53|53|54|52|51|50|49|48|47|46|45|44|43|43|80|44|45|46|47|48|49|50|51|52|55|54|55|64|57|58|59|60|62|62|63|64|65|67|67|79|77|73|71|72|73|74|75|76|77|78|79|80|83|82|83|0\n43|41|40|39|36|34|34|35|37|32|32|31|30|29|27|27|26|24|24|23|23|42|25|25|26|28|28|29|30|31|33|33|38|35|36|37|38|39|40|41|42|43|0\n63|62|62|60|60|57|57|58|56|54|53|53|52|51|51|50|49|47|46|45|42|42|41|41|40|39|38|37|36|35|34|34|48|35|36|37|38|39|40|44|43|43|44|45|46|47|48|49|50|65|52|55|54|55|56|59|58|59|61|61|64|63|64|65|0\n36|33|33|34|31|31|30|30|29|28|27|24|24|23|22|21|20|20|26|21|22|23|25|25|26|27|28|29|37|32|32|35|34|35|36|37|0\n35|34|32|32|31|29|28|28|27|25|24|24|23|22|21|20|19|19|20|21|22|23|26|25|26|27|30|29|30|31|33|33|34|35|0\n43|42|42|41|40|39|39|38|37|34|34|33|32|31|30|29|26|25|24|24|27|28|36|25|26|27|28|29|30|31|32|33|35|35|36|37|38|45|40|41|44|43|44|45|0\n12|12|13|14|15|11|10|10|17|11|16|13|14|15|16|17|0\n52|50|49|49|48|47|46|45|45|53|42|41|41|43|40|38|38|37|34|33|33|32|32|31|30|29|29|55|30|31|36|35|34|35|36|37|39|39|40|44|42|43|44|54|46|47|48|51|50|51|52|53|54|55|0\n24|23|23|22|21|19|17|16|16|15|14|14|20|15|18|17|18|19|20|21|22|25|24|25|0\n20|19|19|18|17|15|13|13|12|12|16|14|14|15|16|17|18|21|20|21|0\n20|19|18|17|16|15|14|14|12|12|13|13|21|15|16|17|18|19|20|21|0\n32|32|31|28|28|27|25|25|24|23|22|21|19|19|18|18|30|20|20|21|22|23|24|26|26|27|29|29|30|31|33|33|0\n26|25|24|23|23|22|21|19|18|17|16|15|15|20|16|17|18|19|20|21|22|27|24|25|26|27|0\n46|45|45|43|42|41|40|37|37|36|34|34|33|32|32|31|30|29|28|25|25|26|27|44|26|27|28|29|30|31|39|33|35|35|36|38|38|39|40|41|42|43|44|47|46|47|0\n27|25|24|23|22|21|20|17|17|16|16|15|15|26|19|18|18|19|20|21|22|23|24|25|26|27|0\n53|51|51|49|48|46|46|47|45|44|44|54|55|43|42|41|40|39|38|36|36|35|34|32|31|31|30|30|57|33|32|33|34|35|37|37|38|39|40|41|42|43|56|45|50|47|48|49|50|52|52|53|54|55|56|57|0\n43|39|39|40|36|34|33|33|32|30|30|31|37|28|27|27|26|24|24|23|23|42|25|25|26|29|28|29|38|31|32|35|34|35|36|37|38|41|40|41|42|43|0\n19|18|18|17|16|16|12|12|13|14|15|13|14|15|21|17|20|19|20|21|0\n25|22|22|20|19|18|17|17|16|15|14|14|24|15|16|21|18|19|20|21|23|23|24|25|0\n35|32|32|31|28|28|29|25|25|26|24|23|22|20|20|19|19|34|21|21|22|23|24|27|26|27|30|29|30|31|33|33|34|35|0\n21|20|17|17|18|16|15|15|14|13|13|23|14|22|16|19|18|19|20|21|22|23|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n9|6|6|7|8|7|8|9|0\n9|7|6|6|8|7|8|9|0\n21|19|18|17|16|13|13|14|12|12|20|15|14|15|16|17|18|19|20|21|0\n35|33|31|31|30|28|28|26|25|25|20|20|21|22|19|19|24|34|23|21|22|23|24|27|26|27|29|29|30|32|32|33|34|35|0\n33|33|32|32|29|28|26|26|27|25|24|22|21|21|20|19|19|31|20|23|22|23|24|25|30|27|28|29|30|31|35|34|34|35|0\n53|51|51|46|46|45|44|44|48|43|42|40|39|38|38|37|35|35|33|32|32|31|29|29|28|28|50|30|30|31|34|33|34|36|36|37|41|39|40|41|42|43|49|45|47|47|48|49|50|52|52|53|0\n38|36|36|35|35|34|33|31|28|27|27|29|24|23|22|21|21|25|26|32|22|23|24|25|26|30|28|29|30|31|32|33|34|39|37|37|38|39|0\n18|17|17|19|20|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0\n60|59|59|55|51|49|49|50|52|53|48|47|46|43|42|42|41|41|38|38|39|37|37|56|36|35|34|33|32|32|58|33|34|35|36|57|40|39|40|45|44|43|44|45|46|47|48|54|50|51|52|53|54|55|56|57|58|61|60|61|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n31|28|27|26|25|24|23|23|22|21|20|19|17|17|18|30|18|19|20|21|22|29|24|25|26|27|28|29|30|31|0\n28|26|26|27|29|25|25|23|22|21|20|19|18|17|17|24|18|19|20|21|22|23|24|31|30|27|28|29|30|31|0\n51|50|48|48|47|46|44|43|42|42|41|41|52|53|39|38|37|37|36|35|34|31|30|29|29|32|33|55|30|31|32|33|34|35|36|40|38|39|40|54|45|43|44|45|46|47|49|49|50|51|52|53|54|55|0\n61|59|59|58|57|56|55|54|53|52|52|62|63|51|49|49|46|46|45|44|44|43|42|41|41|65|40|38|38|37|36|35|35|67|36|37|39|39|40|66|42|43|48|45|47|47|48|50|50|51|64|53|54|55|56|57|58|60|60|61|62|63|64|65|66|67|0\n45|44|43|43|42|40|39|39|38|37|35|35|34|33|32|31|31|29|28|27|26|25|25|30|26|27|28|29|30|47|32|33|34|36|36|37|38|41|40|41|42|46|44|45|46|47|0\n42|41|40|39|37|37|36|35|34|33|32|32|31|30|27|27|26|25|24|23|23|29|24|25|26|28|28|29|30|31|43|33|34|35|36|38|38|39|40|41|42|43|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n39|36|36|35|34|33|31|30|29|28|27|26|26|24|23|23|22|21|21|38|22|25|24|25|32|27|28|29|30|31|32|33|34|35|37|37|38|39|0\n30|30|27|25|23|23|24|22|21|21|20|19|18|17|17|29|18|19|20|28|22|26|24|25|26|27|28|29|31|31|0\n21|20|19|18|17|16|16|15|15|13|13|14|14|23|22|17|18|19|20|21|22|23|0\n42|41|39|39|40|37|33|32|32|31|30|30|35|28|28|27|26|25|24|23|23|38|24|25|26|27|29|29|36|31|34|33|34|35|36|37|38|43|40|41|42|43|0\n32|32|29|29|28|27|23|23|24|25|21|20|20|19|18|18|31|19|22|21|22|26|24|25|26|27|28|30|30|31|33|33|0\n61|53|52|51|50|50|54|55|48|48|47|46|45|44|43|43|57|58|41|41|37|37|38|36|35|35|34|33|32|32|60|33|34|40|36|39|38|39|40|42|42|59|44|45|46|47|49|49|56|51|52|53|54|55|56|57|58|59|60|61|0\n55|54|53|52|51|50|49|48|47|46|45|44|44|56|57|42|42|41|39|38|36|36|37|35|34|33|31|31|32|59|32|33|34|35|40|37|38|39|40|41|43|43|58|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|0\n54|51|51|52|49|47|47|48|46|45|45|55|44|43|42|41|40|37|36|35|35|38|34|33|31|31|30|30|57|32|32|33|34|39|36|37|38|39|40|41|42|43|44|56|46|50|48|49|50|53|52|53|54|55|56|57|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n36|35|32|32|31|29|29|30|28|27|24|23|23|25|22|21|21|20|20|37|22|26|24|25|26|27|28|34|30|31|33|33|34|35|36|37|0\n46|45|43|42|41|40|39|39|38|37|36|34|34|33|31|30|30|29|29|28|27|25|25|26|26|27|28|47|32|31|32|33|35|35|36|37|38|44|40|41|42|43|44|45|46|47|0\n25|23|21|20|19|19|18|17|15|15|14|14|24|16|16|17|18|22|20|21|22|23|24|25|0\n24|24|22|20|20|19|17|17|16|14|14|15|23|15|16|18|18|19|21|21|22|23|25|25|0\n50|49|49|47|46|45|43|42|41|40|40|39|38|37|36|35|33|32|32|31|29|29|28|27|27|48|28|30|30|31|34|33|34|35|36|37|38|39|44|41|42|43|44|45|46|47|48|51|50|51|0\n32|30|30|29|29|28|26|26|23|23|22|20|20|19|18|18|25|19|21|21|22|24|24|25|27|27|28|33|31|31|32|33|0\n12|12|9|9|8|8|11|10|10|11|13|13|0\n18|17|17|14|13|13|12|11|11|16|12|15|14|15|16|19|18|19|0\n29|28|28|27|26|26|24|23|21|20|20|19|18|17|17|25|18|19|22|21|22|23|24|25|31|27|30|29|30|31|0\n14|13|12|11|11|9|9|10|10|15|12|13|14|15|0\n46|45|44|44|42|41|39|38|37|37|35|35|34|31|31|32|29|28|28|27|26|25|25|43|26|27|30|29|30|33|32|33|34|36|36|40|38|39|40|41|42|43|47|45|46|47|0\n36|36|34|33|32|32|35|38|39|31|30|29|27|27|26|24|24|23|22|22|41|23|25|25|26|28|28|29|30|31|40|33|34|35|37|37|38|39|40|41|0\n39|38|38|37|36|33|33|34|31|30|30|32|29|28|27|25|24|23|22|22|26|23|24|25|26|27|28|29|41|31|32|35|34|35|36|37|40|39|40|41|0\n54|53|53|51|47|47|46|46|49|42|42|41|41|44|39|39|38|37|36|35|34|33|32|30|30|29|29|52|31|31|32|33|34|35|36|37|38|40|40|45|43|43|44|45|50|48|48|49|50|51|52|55|54|55|0\n40|39|38|37|36|35|35|31|31|32|30|28|27|26|26|25|24|23|22|22|34|23|24|25|29|27|28|29|30|33|32|33|34|41|36|37|38|39|40|41|0\n36|35|35|34|34|33|33|31|29|29|28|26|26|25|23|23|21|21|22|32|22|24|24|25|27|27|28|30|30|31|32|39|38|37|36|37|38|39|0\n90|88|88|87|83|83|82|82|85|81|80|78|78|77|76|76|75|73|71|70|70|69|68|68|67|65|65|63|62|60|60|59|59|58|52|51|51|53|50|49|48|48|55|56|47|47|57|49|50|54|52|53|54|55|56|57|58|64|61|61|62|63|64|66|66|67|74|69|72|71|72|73|74|75|91|77|79|79|80|81|86|84|84|85|86|87|89|89|90|91|0\n34|33|31|30|29|29|28|27|26|26|25|24|22|21|20|19|19|23|20|21|22|23|24|25|35|27|28|32|30|31|32|33|34|35|0\n29|28|26|24|22|21|21|20|19|19|18|17|16|16|27|17|18|25|20|23|22|23|24|25|26|27|28|29|0\n24|24|22|21|20|15|15|16|17|18|14|14|23|19|16|17|18|19|20|21|22|23|25|25|0\n39|38|38|37|36|35|33|32|32|31|30|29|28|28|26|25|24|23|22|22|27|23|24|25|26|27|41|29|30|31|34|33|34|35|36|37|40|39|40|41|0\n36|36|34|33|32|31|30|29|27|27|26|24|24|23|22|21|20|20|35|21|22|23|25|25|26|28|28|29|30|31|32|33|34|35|37|37|0\n39|38|33|32|31|28|28|29|26|26|25|25|34|35|23|23|22|21|21|37|22|24|24|36|27|27|30|29|30|31|32|33|34|35|36|37|38|39|0\n27|24|23|22|21|19|18|18|17|16|15|15|25|26|16|17|20|19|20|21|22|23|24|25|26|27|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n83|82|81|80|79|77|76|75|75|74|73|73|84|85|71|70|69|68|67|66|65|64|64|63|62|61|60|57|55|55|56|58|54|53|52|50|49|49|48|46|45|45|47|87|46|47|48|51|50|51|52|53|54|59|56|57|58|59|60|61|62|63|72|65|66|67|68|69|70|71|72|86|74|78|76|77|78|79|80|81|82|83|84|85|86|87|0\n22|22|20|18|18|17|15|15|14|13|13|21|14|16|16|17|19|19|20|21|23|23|0\n16|16|14|12|12|11|10|10|15|11|13|13|14|15|17|17|0\n31|27|26|26|28|24|23|23|22|20|20|19|18|17|17|30|18|19|21|21|22|25|24|25|29|27|28|29|30|31|0\n45|45|44|44|42|41|40|38|37|37|36|34|34|33|31|28|28|29|30|27|26|25|25|43|26|27|32|29|30|31|32|33|35|35|36|39|38|39|40|41|42|43|47|46|46|47|0\n24|22|22|21|21|20|18|18|16|14|14|15|17|15|16|17|19|19|20|25|23|23|24|25|0\n46|44|44|41|40|39|39|42|38|36|35|35|34|32|31|31|30|30|29|28|25|25|26|27|26|27|28|29|47|33|32|33|34|37|36|37|38|43|40|41|42|43|45|45|46|47|0\n27|21|20|18|18|19|22|23|17|16|15|15|25|26|16|17|24|19|20|21|22|23|24|25|26|27|0\n38|35|34|34|33|33|32|31|31|30|29|26|26|25|24|23|22|21|21|28|22|23|24|25|27|27|28|29|30|39|32|37|36|35|36|37|38|39|0\n25|24|23|22|22|26|27|21|20|19|18|17|16|16|29|17|18|19|20|21|28|23|24|25|26|27|28|29|0\n21|20|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0\n37|35|33|33|34|32|31|31|38|39|30|29|28|27|26|25|24|22|22|23|41|23|24|25|26|27|28|29|30|40|32|36|34|35|36|37|38|39|40|41|0\n22|20|20|19|19|16|15|14|14|13|13|18|17|15|16|17|18|23|21|21|22|23|0\n16|16|14|12|12|11|10|10|15|11|13|13|14|15|17|17|0\n59|58|57|55|55|54|53|51|49|49|50|52|60|61|47|46|44|44|43|42|41|41|40|39|38|37|35|35|34|33|33|63|34|36|36|37|38|39|40|48|42|43|45|45|46|47|48|62|50|51|52|53|54|56|56|57|58|59|60|61|62|63|0\n39|39|38|38|41|36|36|34|33|32|32|31|29|29|28|27|26|25|24|23|23|43|24|25|26|27|28|30|30|31|35|33|34|35|37|37|42|40|40|41|42|43|0\n50|49|49|48|47|46|45|45|52|53|43|43|41|40|39|38|35|35|36|34|33|33|32|31|30|29|29|55|30|31|32|42|34|37|36|37|38|39|40|41|42|44|44|54|46|47|48|51|50|51|52|53|54|55|0\n36|36|33|32|31|30|30|29|28|27|26|25|23|23|22|21|20|20|35|21|22|24|24|25|26|27|28|29|34|31|32|33|34|35|37|37|0\n49|48|44|42|41|40|40|43|39|38|38|37|36|33|32|31|31|34|29|28|27|26|26|30|47|27|28|29|30|35|32|33|34|35|36|37|46|39|45|41|42|43|44|45|46|47|48|49|0\n22|21|21|19|19|18|18|24|25|17|16|15|15|27|16|17|26|20|20|23|22|23|24|25|26|27|0\n13|11|8|8|9|10|12|9|10|11|12|13|0\n18|16|15|15|14|13|12|11|11|19|12|13|14|17|16|17|18|19|0\n30|28|26|26|27|25|25|31|24|23|22|21|20|19|18|18|33|19|20|21|22|23|24|32|29|27|28|29|30|31|32|33|0\n21|20|20|19|17|17|18|15|14|13|13|16|14|15|16|23|18|19|22|21|22|23|0\n17|16|15|11|11|12|10|10|14|13|12|13|14|15|16|17|0\n20|19|18|16|15|15|14|13|12|12|21|13|14|17|16|17|18|19|20|21|0\n62|60|60|58|57|56|56|55|53|53|52|51|50|49|49|63|47|45|45|44|43|42|40|40|39|39|38|36|36|35|34|34|65|35|37|37|38|48|41|41|42|43|44|46|46|47|48|64|50|51|52|54|54|55|59|57|58|59|61|61|62|63|64|65|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n71|69|66|66|65|65|63|63|62|61|60|52|51|51|50|48|48|47|46|45|45|54|44|43|43|56|42|41|41|58|40|39|37|37|38|70|38|39|40|59|42|57|44|55|46|47|49|49|50|53|52|53|54|55|56|57|58|59|60|61|62|64|64|68|67|67|68|69|70|71|0\n43|40|40|38|37|36|36|35|34|32|31|29|28|27|27|30|26|25|24|23|23|42|24|25|26|33|28|29|30|31|32|33|34|35|39|37|38|39|41|41|42|43|0\n30|29|27|27|26|25|25|22|21|20|20|19|18|17|17|24|18|19|23|21|22|23|24|31|26|28|28|29|30|31|0\n9|8|7|6|6|7|8|9|0\n19|18|18|17|16|16|14|12|12|13|15|13|14|15|21|17|20|19|20|21|0\n41|40|34|34|35|33|33|37|32|32|30|28|28|27|26|25|24|23|22|22|31|23|24|25|26|27|29|29|30|31|39|38|36|35|36|37|38|39|40|41|0\n48|47|46|45|45|44|42|42|40|39|38|34|34|33|33|36|30|30|29|29|28|26|26|27|41|27|28|32|31|31|32|37|35|35|36|37|38|39|40|41|43|43|44|49|46|47|48|49|0\n48|47|47|46|44|43|43|42|41|40|40|39|37|36|36|35|35|34|34|33|32|31|30|29|28|28|53|29|30|31|32|33|52|51|38|37|38|39|50|41|42|45|44|45|46|49|48|49|50|51|52|53|0\n48|46|45|44|44|43|42|41|41|37|37|38|36|33|32|32|34|31|30|29|27|27|26|26|40|28|28|29|30|31|35|33|34|35|36|39|38|39|40|49|42|43|47|45|46|47|48|49|0\n50|48|48|47|45|45|44|41|40|40|42|39|38|37|37|36|35|33|32|31|30|28|28|27|27|34|29|29|30|31|32|33|34|35|36|51|38|39|43|41|42|43|44|46|46|47|49|49|50|51|0\n11|10|8|7|7|9|8|9|10|11|0\n36|34|34|33|33|32|30|30|26|26|25|25|24|23|22|21|20|20|29|21|22|23|24|28|27|27|28|29|31|31|32|37|35|35|36|37|0\n50|48|47|46|45|45|44|43|42|41|40|40|39|36|36|35|34|34|32|30|30|29|28|27|27|33|28|29|31|31|32|33|38|35|37|37|38|39|51|41|42|43|44|49|46|47|48|49|50|51|0\n30|29|28|27|26|25|25|24|23|20|20|19|18|17|17|22|18|19|21|21|22|23|24|31|26|27|28|29|30|31|0\n28|26|26|25|25|29|24|23|19|19|20|21|18|17|17|31|18|22|20|21|22|23|24|30|27|27|28|29|30|31|0\n39|38|36|35|34|34|33|31|30|28|27|26|26|25|24|23|22|21|21|32|22|23|24|25|29|27|28|29|30|31|32|33|37|35|36|37|38|39|0\n33|33|32|31|31|35|29|29|27|27|25|25|23|22|22|21|20|20|37|21|24|23|24|26|26|28|28|30|30|36|32|34|34|35|36|37|0\n66|64|64|63|62|61|60|60|59|52|52|53|51|50|49|47|46|46|44|44|45|55|56|41|40|40|38|38|39|37|36|35|35|58|36|37|43|39|42|41|42|43|57|45|48|47|48|49|50|51|54|53|54|55|56|57|58|59|67|61|62|63|65|65|66|67|0\n59|58|57|56|55|53|53|52|51|50|49|48|47|47|60|61|46|44|44|43|41|40|39|39|42|63|37|36|36|35|34|34|65|35|38|37|38|64|40|41|42|43|45|45|46|62|48|49|50|51|52|54|54|55|56|57|58|59|60|61|62|63|64|65|0\n40|39|39|38|36|35|35|34|33|33|42|43|32|30|29|29|28|27|26|25|24|24|45|25|26|27|28|31|30|31|32|44|34|37|36|37|38|41|40|41|42|43|44|45|0\n31|30|30|29|29|26|26|24|22|21|21|23|20|19|18|18|28|19|20|25|22|23|24|25|27|27|28|33|32|31|32|33|0\n49|45|45|46|42|41|40|39|38|38|43|37|36|35|33|33|32|31|31|29|28|26|26|27|30|27|28|29|30|48|32|34|34|35|36|37|44|39|40|41|42|43|44|47|46|47|48|49|0\n48|47|47|45|40|39|38|38|41|37|35|35|34|34|43|32|32|31|29|28|28|27|26|26|46|27|30|29|30|31|33|33|44|36|36|37|42|39|40|41|42|43|44|45|46|49|48|49|0\n44|44|43|41|40|40|39|39|37|37|36|34|33|32|32|31|31|47|29|29|28|27|26|26|49|27|28|30|30|48|35|33|34|35|36|38|38|46|42|41|42|43|45|45|46|47|48|49|0\n9|9|7|7|8|11|8|10|10|11|0\n53|50|49|49|48|46|45|45|44|43|41|40|39|37|37|38|36|34|33|32|31|31|30|29|28|28|52|29|30|35|32|33|34|35|36|42|38|39|40|41|42|43|44|47|46|47|48|51|50|51|52|53|0\n56|55|55|53|50|50|47|47|48|46|44|43|42|42|45|38|38|36|35|35|37|40|34|33|31|31|30|30|54|32|32|33|34|41|36|37|39|39|40|41|52|43|44|45|46|49|48|49|51|51|52|53|54|57|56|57|0\n24|23|23|19|19|20|18|17|15|15|14|14|22|16|16|17|18|21|20|21|22|25|24|25|0\n12|12|9|9|8|8|11|10|10|11|13|13|0\n23|20|19|18|17|17|16|14|14|13|13|22|15|15|16|21|18|19|20|21|22|23|0\n47|45|44|43|42|37|36|36|38|34|34|35|40|33|32|30|30|29|27|27|26|25|25|46|26|28|28|29|31|31|32|33|41|35|39|37|38|39|40|41|42|43|44|45|46|47|0\n51|50|49|48|48|47|47|53|54|45|44|44|42|41|41|40|39|37|37|38|56|57|35|34|34|33|32|31|31|59|32|33|36|35|36|58|38|39|40|43|42|43|46|45|46|55|52|49|50|51|52|53|54|55|56|57|58|59|0\n26|24|23|22|21|21|25|27|20|19|18|17|16|16|29|17|18|19|20|28|22|23|24|25|26|27|28|29|0\n36|34|34|35|33|32|30|29|28|26|25|24|24|23|22|21|20|20|31|21|22|23|27|25|26|27|28|29|30|31|32|33|37|35|36|37|0\n68|67|67|64|64|63|63|62|61|59|59|58|57|56|54|54|53|52|52|70|71|51|50|48|47|47|46|45|43|43|42|41|40|38|38|39|73|39|40|41|42|44|44|45|46|49|48|49|50|51|72|53|55|55|56|57|58|60|60|61|62|66|65|65|66|69|68|69|70|71|72|73|0\n66|64|64|62|62|61|59|58|58|57|57|56|51|51|52|49|48|48|47|46|46|54|42|41|41|40|39|39|38|37|35|35|36|45|36|37|38|44|40|43|42|43|44|45|55|47|50|49|50|53|52|53|54|55|56|67|60|59|60|61|63|63|65|65|66|67|0\n53|53|52|52|50|49|47|46|45|45|44|42|41|39|38|38|40|37|36|35|34|33|32|31|30|29|29|51|30|31|32|33|34|35|36|37|43|39|40|41|42|43|44|48|46|47|48|49|50|51|55|54|54|55|0\n49|44|38|38|39|37|37|41|42|36|36|35|35|46|33|33|32|31|28|28|29|27|26|26|48|27|30|29|30|31|32|34|34|47|45|43|40|39|40|41|42|43|44|45|46|47|48|49|0\n13|10|9|8|8|11|12|9|10|11|12|13|0\n17|15|15|14|11|11|10|10|13|12|12|13|14|16|16|17|0\n49|48|48|47|45|44|43|43|42|41|40|39|39|36|35|35|33|32|31|31|30|29|28|27|27|38|28|29|30|34|32|33|34|37|36|37|38|51|40|41|42|46|44|45|46|47|50|49|50|51|0\n55|51|51|50|50|49|48|47|45|44|43|43|39|37|36|35|35|34|34|40|41|33|31|31|30|29|29|54|30|32|32|33|42|38|36|37|38|39|40|41|42|46|44|45|46|47|48|49|53|52|52|53|54|55|0\n25|25|26|23|23|21|20|18|18|17|15|15|16|22|16|17|19|19|20|21|22|24|24|27|26|27|0\n42|39|39|40|38|38|36|35|34|32|31|30|29|28|28|27|26|25|24|23|23|37|24|25|26|27|33|29|30|31|32|33|34|35|36|37|43|41|40|41|42|43|0\n58|57|56|55|54|52|51|51|50|49|48|48|47|44|44|45|39|39|40|41|38|37|35|34|34|33|32|31|31|43|32|33|36|35|36|37|38|42|40|41|42|43|46|45|46|47|59|49|50|53|52|53|54|55|56|57|58|59|0\n78|76|75|74|74|73|71|70|69|68|68|67|66|66|63|63|60|60|58|58|57|55|54|53|52|51|50|49|49|48|47|46|46|44|43|43|42|41|41|65|42|45|44|45|62|47|48|56|50|51|52|53|54|55|56|57|59|59|61|61|62|64|64|65|79|67|72|69|70|71|72|73|77|75|76|77|78|79|0\n35|29|28|27|24|24|25|26|30|31|32|23|20|20|21|19|19|34|22|21|22|23|33|25|26|27|28|29|30|31|32|33|34|35|0\n87|85|84|82|81|79|79|78|78|77|76|73|73|72|71|70|69|67|67|66|65|62|62|63|61|60|59|58|56|56|57|55|54|53|52|51|50|49|47|46|46|45|45|86|48|47|48|49|50|51|52|53|54|55|75|57|58|59|60|61|64|63|64|65|66|68|68|69|70|71|72|74|74|75|76|77|83|80|80|81|82|83|84|85|86|87|0\n38|38|35|34|33|32|31|30|29|29|28|27|25|24|24|23|22|21|21|37|22|23|26|25|26|27|28|36|30|31|32|33|34|35|36|37|39|39|0\n37|37|36|35|35|34|33|30|30|28|27|26|26|25|23|22|22|21|21|32|24|23|24|25|29|27|28|29|31|31|32|33|34|39|36|38|38|39|0\n17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0\n70|69|68|68|66|65|64|58|58|57|57|60|56|55|53|52|50|50|49|49|48|47|46|45|45|62|44|43|41|41|40|39|38|37|37|67|38|39|40|42|42|43|44|63|46|47|48|54|51|51|52|53|54|55|56|61|59|59|60|61|62|63|64|65|66|67|71|69|70|71|0\n45|44|43|43|42|39|39|40|37|36|35|35|34|32|32|31|31|28|28|27|26|25|25|30|26|27|29|29|30|47|33|33|34|38|36|37|38|41|40|41|42|46|44|45|46|47|0\n39|37|33|33|34|35|31|29|27|27|28|26|26|25|24|23|22|21|21|38|22|23|24|25|32|30|28|29|30|31|32|36|34|35|36|37|38|39|0\n53|49|47|47|48|46|45|44|44|43|42|41|40|39|37|36|34|34|33|32|31|31|30|29|28|28|52|29|30|38|32|33|35|35|36|37|38|39|40|41|42|43|51|45|46|50|48|49|50|51|52|53|0\n15|13|12|11|9|9|10|14|10|11|12|13|14|15|0\n44|44|41|40|39|38|37|37|42|36|35|35|46|33|32|31|29|28|27|26|26|25|25|34|30|27|28|29|30|31|32|33|34|47|36|43|38|39|40|41|42|43|45|45|46|47|0\n67|65|64|63|59|57|57|56|54|53|52|51|50|50|47|47|48|49|46|45|44|44|43|42|41|41|40|38|38|35|35|36|37|66|36|37|39|39|40|62|42|43|61|45|46|60|48|49|55|51|52|53|54|55|56|58|58|59|60|61|62|63|64|65|66|67|0\n75|73|71|71|70|66|66|65|64|61|60|59|59|62|58|55|54|54|56|51|51|52|50|49|48|46|46|45|44|43|43|68|42|41|40|39|39|74|40|41|42|69|44|45|47|47|48|49|50|53|52|53|57|55|56|57|58|63|60|61|62|63|64|65|67|67|68|69|70|72|72|73|74|75|0\n52|52|51|50|49|47|47|46|45|45|54|55|43|42|41|40|40|39|38|37|36|35|32|31|30|30|33|34|57|31|32|33|34|35|36|37|38|39|44|41|42|43|44|56|46|48|48|49|50|51|53|53|54|55|56|57|0\n47|45|41|41|40|40|39|38|37|37|36|35|33|31|31|32|29|28|28|27|26|25|25|46|26|27|30|29|30|34|32|33|34|35|36|44|38|39|43|42|42|43|44|45|46|47|0\n43|41|41|40|40|44|45|39|37|37|35|34|33|31|31|32|30|27|26|26|28|25|25|47|29|27|28|29|30|36|32|33|34|35|36|38|38|39|46|42|42|43|44|45|46|47|0\n66|66|65|60|58|58|56|55|54|54|53|53|61|62|52|50|50|49|48|47|46|44|44|43|41|40|40|39|37|37|36|35|35|64|36|38|38|39|42|41|42|43|45|45|46|47|48|49|51|51|52|63|57|55|56|57|59|59|60|61|62|63|64|65|67|67|0\n56|54|53|52|51|51|50|49|48|47|46|45|44|44|40|40|41|39|37|37|36|34|33|33|32|31|30|30|43|31|32|35|34|35|36|38|38|39|42|41|42|43|57|45|46|47|48|49|50|55|52|53|54|55|56|57|0\n53|51|51|52|50|49|47|47|46|45|45|44|42|42|38|37|36|35|35|39|33|31|31|32|30|29|29|41|30|34|32|33|34|40|36|37|38|39|40|41|43|43|44|55|46|48|48|49|50|54|52|53|54|55|0\n51|47|46|45|44|44|48|43|41|41|40|39|38|37|35|34|34|33|32|31|29|29|28|27|27|50|28|30|30|31|32|33|36|35|36|37|38|39|40|42|42|43|49|45|46|47|48|49|50|51|0\n48|47|46|45|44|44|42|40|40|39|38|37|36|35|33|33|32|29|29|28|28|27|26|26|43|27|31|30|30|31|32|34|34|35|36|37|38|39|41|41|42|43|49|45|46|47|48|49|0\n39|37|37|36|35|34|33|31|31|32|40|41|29|29|28|27|25|25|24|23|23|43|24|26|26|27|28|30|30|42|32|33|34|35|36|38|38|39|40|41|42|43|0\n61|59|58|58|57|56|53|52|51|51|50|50|49|47|47|48|62|63|46|45|44|41|41|42|40|39|38|37|35|35|34|34|65|36|36|37|38|39|40|43|42|43|44|45|46|64|48|49|55|54|52|53|54|55|56|57|60|59|60|61|62|63|64|65|0\n49|48|47|47|46|45|44|43|43|40|38|37|36|36|35|34|33|32|32|31|28|28|29|27|27|42|30|29|30|31|41|33|34|35|39|37|38|39|40|41|42|51|44|45|46|50|48|49|50|51|0\n37|37|38|36|34|33|32|32|31|29|28|26|26|25|23|23|22|21|21|30|22|24|24|25|27|27|28|29|30|31|35|33|34|35|36|39|38|39|0\n50|49|49|51|52|48|46|46|45|44|43|42|42|54|40|39|37|36|36|30|30|31|32|33|34|29|29|41|35|31|32|33|34|35|38|37|38|39|40|41|55|43|44|45|47|47|48|53|50|51|52|53|54|55|0\n33|33|32|31|30|30|29|27|26|24|22|22|23|21|20|19|19|28|20|21|25|23|24|25|26|27|28|29|35|31|32|34|34|35|0\n59|59|58|57|54|54|55|53|52|51|49|48|48|47|46|45|45|44|42|41|41|39|38|37|36|34|34|33|32|32|40|33|35|35|36|37|38|39|40|43|42|43|44|61|46|47|50|49|50|51|52|53|56|55|56|57|58|60|60|61|0\n25|24|24|26|27|22|20|20|21|18|18|17|16|16|29|17|19|19|23|21|22|23|28|25|26|27|28|29|0\n64|61|61|60|59|58|58|57|56|55|54|53|52|51|49|49|48|47|47|46|45|43|42|41|40|39|38|37|36|35|34|34|44|35|36|37|38|39|40|41|42|43|44|45|46|65|48|50|50|51|52|53|54|55|56|57|63|59|60|62|62|63|64|65|0\n33|32|29|29|28|28|31|27|26|25|25|23|20|20|21|19|19|24|22|21|22|23|24|35|26|27|34|30|30|31|32|33|34|35|0\n31|31|32|30|28|28|26|25|24|23|22|20|20|19|18|18|27|19|21|21|22|23|24|25|26|27|29|29|30|33|32|33|0\n24|22|22|21|21|25|20|19|18|17|16|15|15|27|16|17|18|19|20|26|23|23|24|25|26|27|0\n44|42|42|43|41|39|39|36|36|35|33|33|32|30|29|29|27|26|26|24|24|25|38|25|28|27|28|31|30|31|32|34|34|35|37|37|38|40|40|41|45|43|44|45|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n27|24|24|23|22|20|19|18|18|17|16|15|15|26|16|17|21|19|20|21|22|23|25|25|26|27|0\n33|30|28|28|29|27|25|24|23|23|22|21|20|19|18|18|32|19|20|21|22|26|24|25|26|27|31|29|30|31|32|33|0\n31|31|30|29|29|27|26|25|24|22|21|21|20|19|18|18|28|19|20|23|22|23|24|25|26|27|28|33|30|32|32|33|0\n30|28|28|27|26|24|24|23|23|20|20|19|18|17|17|22|18|19|21|21|22|31|25|25|26|27|29|29|30|31|0\n61|59|59|58|57|56|56|55|51|50|50|52|53|49|49|48|47|45|44|43|41|39|38|38|37|37|36|34|34|33|33|46|35|35|36|42|40|39|40|41|42|43|44|45|46|47|48|63|54|51|52|53|54|55|62|57|58|60|60|61|62|63|0\n23|21|20|19|18|17|16|15|13|13|14|22|14|15|16|17|18|19|20|21|22|23|0\n23|21|20|19|17|17|15|15|14|13|13|22|14|16|16|18|18|19|20|21|22|23|0\n39|38|36|35|35|37|34|33|32|32|41|31|28|27|27|29|25|25|24|23|23|43|24|26|26|30|28|29|30|31|42|33|34|40|36|37|38|39|40|41|42|43|0\n29|29|26|26|27|24|24|23|21|21|20|18|17|17|19|31|18|19|20|22|22|23|25|25|28|27|28|30|30|31|0\n61|59|58|56|55|54|54|53|51|51|50|50|49|48|43|43|44|45|42|40|39|38|38|37|36|35|34|33|32|32|47|33|34|35|36|37|41|39|40|41|42|46|44|45|46|47|48|49|60|52|52|53|57|55|56|57|58|59|60|61|0\n24|23|22|21|20|19|19|18|17|16|15|14|14|15|16|17|18|25|20|21|22|23|24|25|0\n59|58|55|54|54|56|57|53|52|51|50|49|49|48|47|44|44|43|41|41|40|38|37|36|36|35|34|33|32|32|46|33|34|35|39|37|38|39|40|42|42|43|45|45|46|47|48|61|50|51|52|53|60|55|56|57|58|59|60|61|0\n19|17|14|12|12|13|15|11|11|18|16|13|14|15|16|17|18|19|0\n19|17|14|14|13|12|11|11|16|18|12|13|15|15|16|17|18|19|0\n70|70|69|68|67|66|66|72|73|64|63|62|61|59|56|56|57|55|55|54|52|51|50|50|49|48|47|46|46|45|44|43|41|41|40|39|39|75|40|42|42|43|44|45|65|47|48|49|53|51|52|53|54|60|58|57|58|59|60|61|62|63|64|65|74|67|68|69|71|71|72|73|74|75|0\n7|6|5|5|6|7|0\n40|39|38|37|36|35|34|33|32|32|31|30|28|27|26|25|24|23|22|22|29|23|24|25|26|27|28|29|30|31|41|33|34|35|36|37|38|39|40|41|0\n40|39|39|37|36|33|33|34|32|31|29|28|28|27|26|25|24|23|22|22|38|23|24|25|26|27|30|29|30|31|32|35|34|35|36|37|38|41|40|41|0\n40|40|37|37|36|35|34|33|32|31|30|27|26|26|28|25|24|23|22|22|39|23|24|25|29|27|28|29|30|31|32|33|34|35|36|38|38|39|41|41|0\n34|32|31|31|30|29|28|28|27|25|25|23|21|20|20|19|19|24|22|21|22|23|24|26|26|27|35|29|30|33|32|33|34|35|0\n39|38|37|36|36|40|35|34|32|32|31|29|29|30|42|26|26|25|24|23|23|28|24|25|27|27|28|43|30|31|33|33|34|35|41|37|38|39|40|41|42|43|0\n32|31|30|30|29|27|26|25|25|23|22|21|20|19|18|18|24|19|20|21|22|23|24|28|26|27|28|29|33|31|32|33|0\n43|42|41|40|38|37|37|36|35|34|34|44|45|33|31|30|28|28|27|27|26|25|25|47|26|32|29|29|30|31|32|33|46|35|36|39|38|39|40|41|42|43|44|45|46|47|0\n27|23|22|21|21|24|18|18|19|17|16|15|15|26|16|17|20|19|20|25|22|23|24|25|26|27|0\n55|53|52|51|51|50|47|47|46|46|43|43|42|40|39|38|37|37|36|35|34|32|31|31|30|29|29|45|30|33|32|33|34|35|36|41|38|39|40|41|42|44|44|45|49|48|48|49|50|54|52|53|54|55|0\n7|7|6|6|9|8|8|9|0\n5|4|4|5|0\n13|13|12|11|10|9|9|15|10|11|12|14|14|15|0\n48|47|46|45|44|43|42|42|40|37|36|36|35|35|34|32|31|31|30|29|27|26|26|28|41|27|28|29|30|33|32|33|34|39|38|37|38|39|40|41|49|43|44|45|46|47|48|49|0\n48|47|45|44|44|43|42|41|40|38|38|37|36|34|34|35|33|31|31|29|28|27|26|26|30|27|28|29|30|32|32|33|49|35|36|37|39|39|40|41|42|43|46|45|46|47|48|49|0\n60|57|57|56|56|51|51|50|49|47|46|46|45|44|44|53|54|43|42|40|40|39|39|38|37|34|34|33|32|32|36|33|35|35|36|37|38|61|41|41|42|43|55|45|48|47|48|49|50|52|52|53|54|55|59|58|58|59|60|61|0\n65|62|62|61|60|56|56|55|55|58|51|47|47|48|46|45|44|43|42|42|50|52|53|37|37|38|39|36|35|35|34|34|64|41|36|40|38|39|40|41|54|43|44|45|46|49|48|49|50|51|52|53|54|59|57|57|58|59|60|61|63|63|64|65|0\n39|38|37|35|35|34|34|40|41|32|32|31|29|28|28|27|24|24|25|23|23|43|26|25|26|27|30|29|30|31|33|33|42|36|36|37|38|39|40|41|42|43|0\n9|9|8|7|7|11|8|10|10|11|0\n61|60|52|51|50|49|49|53|54|55|47|47|46|44|44|43|42|41|40|40|57|39|37|37|36|35|34|33|32|32|59|33|34|35|36|38|38|39|58|41|42|43|45|45|46|48|48|56|50|51|52|53|54|55|56|57|58|59|60|61|0\n49|49|48|48|46|44|44|43|41|40|40|39|38|37|35|35|34|33|32|31|29|28|28|27|27|47|30|29|30|31|32|33|34|36|36|37|38|39|42|41|42|43|45|45|46|47|51|50|50|51|0\n38|38|39|36|36|35|33|33|31|31|30|28|27|27|26|25|24|23|22|22|41|23|24|25|26|29|28|29|30|32|32|34|34|35|37|37|40|39|40|41|0\n29|28|25|24|23|23|22|20|20|19|18|17|16|16|27|17|18|19|21|21|22|26|24|25|26|27|28|29|0\n44|42|41|41|40|38|37|37|39|36|34|34|32|31|30|29|27|27|26|25|24|24|33|25|26|28|28|29|30|31|32|33|35|35|36|45|38|39|40|43|42|43|44|45|0\n70|70|69|68|65|65|63|62|62|61|60|60|59|58|57|57|72|73|56|54|54|52|51|50|48|48|47|46|46|45|44|43|42|40|39|39|41|75|40|41|42|43|44|45|53|47|49|49|50|51|52|53|55|55|56|74|58|59|67|61|64|63|64|66|66|67|68|69|71|71|72|73|74|75|0\n67|67|68|66|66|70|63|63|61|60|60|59|57|56|55|55|54|53|52|50|50|48|47|46|46|45|43|43|42|40|40|39|37|37|38|65|38|39|41|41|42|44|44|45|49|47|48|49|51|51|52|53|54|58|56|57|58|59|62|61|62|64|64|65|71|69|68|69|70|71|0\n8|6|6|7|9|7|8|9|0\n18|18|19|17|16|16|15|14|12|12|13|13|14|15|21|17|20|19|20|21|0\n36|35|34|33|31|31|30|30|29|28|25|23|23|22|22|21|20|20|27|21|26|24|24|25|26|27|28|29|37|32|32|33|34|35|36|37|0\n16|16|14|14|12|11|10|10|13|11|12|13|15|15|17|17|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n41|37|36|34|34|35|33|31|30|30|29|29|27|27|26|24|24|23|22|22|40|23|25|25|26|28|28|39|32|31|32|33|38|35|36|37|38|39|40|41|0\n52|51|49|47|47|48|46|45|44|43|42|41|41|53|40|39|38|36|36|35|32|31|31|33|30|29|29|55|30|34|32|33|34|35|37|37|38|39|40|54|42|43|44|45|46|50|48|49|50|51|52|53|54|55|0\n28|28|27|27|25|25|24|24|23|22|21|19|18|17|17|20|18|19|20|21|22|23|31|26|26|30|29|29|30|31|0\n45|44|44|43|42|41|40|37|37|36|35|34|34|33|32|31|30|30|47|29|27|27|26|26|49|28|28|29|48|31|32|33|39|35|36|38|38|39|40|41|42|43|46|45|46|47|48|49|0\n29|28|27|27|26|26|24|23|21|20|20|19|18|17|17|25|18|19|22|21|22|23|24|25|31|30|28|29|30|31|0\n21|21|20|20|19|17|16|16|15|13|13|14|14|15|18|17|18|19|23|22|22|23|0\n17|15|15|16|18|13|12|11|11|14|12|13|14|19|16|17|18|19|0\n31|30|30|32|26|25|24|24|27|22|22|21|20|18|18|19|29|19|20|21|23|23|28|25|26|27|28|29|33|31|32|33|0\n82|80|80|78|77|76|76|75|74|73|73|83|72|71|68|67|66|66|65|64|63|63|62|59|59|60|57|57|56|53|51|50|50|49|49|54|48|46|46|45|44|44|85|45|47|47|48|55|52|51|52|53|54|55|56|58|58|61|60|61|62|70|64|65|69|67|68|69|70|71|72|84|74|75|79|77|78|79|81|81|82|83|84|85|0\n52|52|51|49|49|48|48|54|47|46|45|44|43|43|56|40|39|38|38|37|35|35|34|33|32|31|30|30|42|31|32|33|34|36|36|37|41|39|40|41|42|57|44|45|46|47|55|50|50|51|53|53|54|55|56|57|0\n38|37|37|39|36|36|41|35|34|34|43|31|29|29|28|28|32|27|27|45|25|25|26|47|26|46|33|30|30|31|32|33|44|35|42|40|38|39|40|41|42|43|44|45|46|47|0\n49|48|45|45|44|43|42|42|40|38|38|36|35|32|29|29|30|28|28|33|34|27|26|26|41|27|37|31|30|31|32|33|34|35|36|37|39|39|40|41|47|43|44|46|46|47|48|49|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n25|24|24|23|22|22|18|17|17|19|16|15|15|21|16|20|18|19|20|21|27|23|26|25|26|27|0\n28|27|27|25|23|22|21|21|19|17|17|18|16|16|26|20|18|19|20|24|22|23|24|25|26|29|28|29|0\n56|55|53|51|51|52|50|48|47|46|46|44|44|45|40|39|39|38|36|35|34|34|37|33|31|31|30|30|43|32|32|33|42|35|36|37|38|41|40|41|42|43|57|45|49|47|48|49|50|54|52|53|54|55|56|57|0\n17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0\n20|20|18|17|16|15|13|13|12|12|19|14|14|15|16|17|18|19|21|21|0\n44|44|41|41|35|35|34|33|32|32|37|38|39|26|26|27|25|25|29|30|24|24|43|31|28|27|28|29|30|31|40|33|34|36|36|37|38|39|40|42|42|43|45|45|0\n27|26|25|24|24|23|22|21|20|19|19|17|16|16|18|17|18|29|20|21|22|23|28|25|26|27|28|29|0\n47|44|44|43|43|42|39|39|38|38|36|34|34|32|32|31|29|29|28|27|25|25|26|37|26|27|28|30|30|31|33|33|35|35|36|37|41|40|40|41|42|46|45|45|46|47|0\n17|15|14|13|12|11|11|10|10|16|12|13|14|15|16|17|0\n12|12|11|10|8|8|9|9|10|11|13|13|0\n20|19|18|17|16|14|13|13|12|12|21|15|14|15|16|17|18|19|20|21|0\n29|27|23|22|22|24|25|20|19|18|17|17|16|16|28|21|18|19|20|21|26|23|24|25|26|27|28|29|0\n26|26|24|21|21|22|18|17|17|16|15|15|20|25|16|19|18|19|20|23|22|23|24|25|27|27|0\n21|20|17|15|15|14|14|13|12|12|19|13|18|16|16|17|18|19|20|21|0\n26|25|24|23|21|21|20|19|17|16|16|15|15|27|18|17|18|19|20|22|22|23|24|25|26|27|0\n85|85|86|84|78|77|75|74|74|73|73|72|71|70|70|80|81|68|67|67|66|65|64|63|61|61|60|59|56|56|55|50|50|51|52|53|49|48|47|47|46|45|45|83|46|58|48|49|54|51|52|53|54|55|57|57|58|59|60|62|62|63|64|65|66|69|68|69|82|71|72|79|76|75|76|77|78|79|80|81|82|83|84|87|86|87|0\n27|27|26|25|25|23|22|20|19|18|18|17|16|16|24|17|21|19|20|21|22|23|24|29|26|28|28|29|0\n29|29|28|27|27|26|24|23|23|20|20|19|18|17|17|22|18|19|21|21|22|25|24|25|26|31|28|30|30|31|0\n59|57|55|55|54|53|52|51|47|46|46|45|45|49|44|43|42|41|40|39|38|37|35|35|34|33|32|31|31|58|32|33|34|36|36|37|38|39|40|41|42|43|44|50|48|47|48|49|50|51|52|53|54|56|56|57|58|59|0\n31|29|28|27|25|24|23|22|22|21|20|19|18|17|17|30|18|19|20|21|26|23|24|25|26|27|28|29|30|31|0\n21|18|17|17|16|15|15|14|12|12|13|13|14|20|16|19|18|19|20|21|0\n51|51|50|49|49|47|46|45|43|42|42|41|40|38|37|36|36|34|31|31|30|30|33|29|28|28|48|29|35|32|32|33|34|35|39|37|38|39|40|41|44|43|44|45|46|47|48|53|50|52|52|53|0\n24|24|20|20|21|18|18|17|16|15|14|14|23|15|16|17|19|19|22|21|22|23|25|25|0\n36|36|33|33|32|29|29|28|28|27|26|24|24|23|22|21|20|20|35|21|22|23|25|25|26|27|31|30|30|31|32|34|34|35|37|37|0\n34|34|33|33|36|37|31|31|29|28|25|25|26|24|23|23|22|21|21|39|22|30|24|27|26|27|28|29|30|32|32|38|35|35|36|37|38|39|0\n46|46|44|39|39|40|38|38|42|37|33|33|32|31|30|30|35|28|28|27|25|25|26|45|26|27|29|29|36|31|32|34|34|35|36|37|43|41|40|41|42|43|44|45|47|47|0\n81|77|75|75|74|74|78|73|71|71|69|68|67|66|65|65|64|61|60|60|62|59|58|56|56|55|53|53|52|48|48|47|46|45|44|43|43|50|42|42|80|51|44|45|46|47|49|49|50|51|52|54|54|55|57|57|58|59|63|61|62|63|64|70|66|67|68|69|70|72|72|73|79|76|76|77|78|79|80|81|0\n8|6|6|7|9|7|8|9|0\n25|23|22|21|20|19|18|17|16|14|14|15|24|15|16|17|18|19|20|21|22|23|24|25|0\n48|47|46|45|45|44|41|41|40|39|39|36|36|35|34|31|31|30|28|28|27|27|26|26|38|33|29|29|30|32|32|33|34|35|37|37|38|43|40|42|42|43|44|49|46|47|48|49|0\n37|35|32|32|31|30|30|34|27|27|25|25|24|23|22|20|20|21|29|21|22|23|24|26|26|28|28|29|36|31|33|33|34|35|36|37|0\n5|4|4|5|0\n98|96|96|97|94|90|89|85|84|84|83|82|82|87|81|80|79|78|77|77|91|92|76|75|74|73|72|71|70|66|65|64|64|63|61|61|60|58|57|57|59|68|55|55|54|52|52|51|51|95|53|53|54|56|56|69|58|59|60|62|62|63|67|65|66|67|68|69|70|71|72|73|74|75|76|93|78|79|80|81|88|83|86|85|86|87|88|89|90|91|92|93|94|95|99|97|98|99|0\n25|23|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|22|23|24|25|0\n28|27|27|26|25|24|22|21|20|19|18|17|16|16|23|17|18|19|20|21|22|23|24|25|26|29|28|29|0\n19|17|14|14|13|12|12|11|11|18|16|13|15|15|16|17|18|19|0\n30|29|28|27|26|25|25|23|21|20|19|18|18|17|17|24|22|19|20|21|22|23|24|31|26|27|28|29|30|31|0\n57|55|54|53|51|50|48|48|49|47|45|44|44|43|41|41|40|38|38|37|36|35|34|33|32|31|30|30|56|31|32|33|34|35|36|37|39|39|40|42|42|43|46|45|46|47|52|49|50|51|52|53|54|55|56|57|0\n23|22|21|19|17|16|16|14|14|13|13|20|15|15|18|17|18|19|20|21|22|23|0\n23|21|20|19|19|16|16|15|14|13|13|18|14|15|17|17|18|22|20|21|22|23|0\n9|8|7|7|10|11|8|9|10|11|0\n19|18|18|17|16|16|14|12|12|13|15|13|14|15|21|17|20|19|20|21|0\n22|22|23|21|20|19|18|18|15|15|14|14|17|16|16|17|25|19|20|21|24|23|24|25|0\n33|29|29|30|28|27|26|25|23|23|22|21|20|19|18|18|32|19|20|21|22|24|24|25|26|27|28|31|30|31|32|33|0\n9|6|6|7|8|7|8|9|0\n47|46|45|45|48|44|40|40|41|42|43|50|39|36|36|35|33|33|32|31|28|28|29|27|27|38|30|29|30|31|32|34|34|35|37|37|38|39|51|41|42|43|44|49|46|47|48|49|50|51|0\n53|49|49|48|48|46|46|45|41|40|40|39|38|37|36|36|43|34|33|32|31|31|29|29|28|28|52|30|30|35|32|33|34|35|44|37|38|39|42|41|42|43|44|45|47|47|51|50|50|51|52|53|0\n21|21|22|19|18|17|16|15|14|13|13|20|14|15|16|17|18|19|20|23|22|23|0\n29|28|27|27|26|24|24|23|22|20|19|18|18|17|17|31|21|19|20|21|22|23|25|25|26|30|28|29|30|31|0\n32|29|27|27|28|26|23|23|22|21|21|25|20|19|18|18|33|19|20|31|22|24|24|25|26|30|28|29|30|31|32|33|0\n31|30|30|29|27|27|25|25|23|23|22|22|33|20|20|19|19|35|21|21|34|24|24|26|26|28|28|29|32|31|32|33|34|35|0\n31|30|30|29|25|25|26|24|22|21|21|23|20|19|18|18|33|19|20|28|22|23|24|27|26|27|28|29|32|31|32|33|0\n57|56|55|54|54|53|52|49|49|50|51|46|46|43|42|41|41|44|40|37|36|36|35|34|34|33|32|31|31|48|32|33|39|35|38|37|38|39|40|45|42|43|44|45|47|47|48|59|50|51|52|53|58|55|56|57|58|59|0\n43|43|42|42|45|41|40|38|38|37|36|36|34|33|32|30|30|29|27|26|26|25|25|35|28|27|28|29|31|31|32|33|34|35|47|37|39|39|40|41|46|44|44|45|46|47|0\n26|25|24|23|22|21|21|18|18|17|16|15|15|20|16|17|19|19|20|27|22|23|24|25|26|27|0\n44|42|42|38|38|37|36|36|40|35|34|33|32|31|30|29|29|26|26|25|24|24|28|25|27|27|28|45|30|31|32|33|34|35|41|37|39|39|40|41|43|43|44|45|0\n29|28|28|30|31|27|27|23|22|19|19|20|18|18|24|25|26|21|20|21|22|23|24|25|26|33|32|29|30|31|32|33|0\n31|31|29|27|27|28|26|24|24|23|22|20|20|19|18|18|33|19|21|21|22|23|25|25|26|30|28|29|30|32|32|33|0\n63|62|61|60|57|56|56|55|53|52|51|51|50|49|48|48|46|45|44|43|43|42|39|37|36|36|38|40|35|34|33|33|34|35|41|37|38|39|40|41|42|47|44|45|46|47|59|49|50|54|52|53|54|55|58|57|58|59|60|61|62|63|0\n66|65|65|63|62|62|61|59|58|57|56|56|55|54|53|52|51|50|50|68|69|46|46|45|45|44|43|42|41|41|40|39|38|37|37|71|38|39|40|49|42|43|44|48|47|47|48|49|70|51|52|53|54|55|60|57|58|59|60|61|64|63|64|67|66|67|68|69|70|71|0\n33|28|27|26|25|25|29|22|21|20|20|23|19|18|18|31|32|19|24|21|22|23|24|30|26|27|28|29|30|31|32|33|0\n47|45|45|46|44|43|42|41|41|35|34|32|32|33|36|31|30|29|29|38|28|27|26|26|40|27|28|39|30|31|37|33|34|35|36|37|38|39|40|49|42|43|44|48|46|47|48|49|0\n56|55|54|52|52|51|50|49|47|47|44|44|45|43|43|42|41|38|38|37|36|32|31|30|30|33|34|35|40|31|32|33|34|35|36|37|39|39|40|41|42|57|46|45|46|48|48|49|50|51|53|53|54|55|56|57|0\n46|45|45|44|43|41|39|39|38|34|33|32|32|31|29|28|28|27|26|26|36|25|25|42|37|27|30|29|30|31|35|33|34|35|36|37|38|40|40|41|42|43|44|47|46|47|0\n19|18|17|17|16|15|14|13|12|12|21|13|14|15|16|20|18|19|20|21|0\n51|49|48|47|46|46|45|42|41|40|39|39|38|36|36|37|33|33|32|30|29|28|28|27|27|35|31|29|30|31|32|34|34|35|44|37|38|43|40|41|42|43|44|45|50|47|48|49|50|51|0\n49|46|45|45|44|43|42|41|40|39|38|36|34|33|32|31|31|30|30|29|28|26|26|27|48|27|28|29|37|35|32|33|34|35|36|37|38|39|40|41|42|43|44|47|46|47|48|49|0\n41|39|37|37|36|35|35|40|42|43|34|32|32|30|30|29|25|25|26|27|24|24|45|28|26|27|28|29|31|31|33|33|34|44|36|38|38|39|40|41|42|43|44|45|0\n23|23|24|21|20|19|18|16|15|14|14|17|22|15|16|17|18|19|20|21|22|25|24|25|0\n50|49|48|47|46|45|44|43|42|40|40|39|37|36|35|35|38|34|33|32|30|29|28|27|27|31|28|29|30|31|32|33|34|51|36|37|38|39|41|41|42|43|44|45|46|47|48|49|50|51|0\n49|48|48|47|43|43|42|40|39|38|37|36|36|41|45|33|32|32|31|31|30|30|27|27|28|29|28|29|51|35|34|33|34|35|46|37|38|39|40|41|42|44|44|45|46|47|50|49|50|51|0\n21|18|18|17|15|15|12|12|13|14|20|13|14|16|16|17|19|19|20|21|0\n22|21|20|19|19|23|16|16|17|18|14|14|15|15|25|17|18|24|20|21|22|23|24|25|0\n83|80|80|79|78|77|76|73|72|70|69|69|68|68|74|66|66|64|64|65|62|60|59|57|57|58|56|51|51|52|53|54|50|47|45|44|43|43|46|48|49|63|44|45|46|47|48|49|50|55|52|53|54|55|56|61|58|59|60|61|62|63|82|65|67|67|75|71|70|71|72|73|74|75|76|77|78|79|81|81|82|83|0\n3|3|0\n3|3|0\n22|21|19|18|17|17|16|15|14|13|13|23|14|15|16|20|18|19|20|21|22|23|0\n8|8|6|6|7|7|9|9|0\n43|42|42|41|40|39|39|37|36|35|34|33|32|30|29|28|27|27|26|25|24|24|38|25|26|31|28|29|30|31|32|33|34|35|36|37|38|45|40|41|44|43|44|45|0\n53|52|52|54|55|51|49|49|48|47|46|39|38|38|37|36|36|41|35|34|33|33|43|44|32|31|30|30|57|31|32|45|34|35|42|37|40|39|40|41|42|43|44|45|46|47|48|50|50|51|56|53|54|55|56|57|0\n33|32|30|29|28|27|26|25|24|24|23|21|21|19|18|18|20|19|20|22|22|23|31|25|26|27|28|29|30|31|32|33|0\n22|21|21|20|19|19|24|25|18|16|16|15|15|27|17|17|18|26|20|23|22|23|24|25|26|27|0\n11|9|8|8|7|7|10|9|10|11|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n36|36|34|32|30|29|29|31|28|26|25|25|24|23|22|21|20|20|35|21|22|23|24|27|26|27|28|33|30|31|32|33|34|35|37|37|0\n34|33|31|30|29|29|28|28|27|26|24|23|22|21|20|19|19|25|20|21|22|23|24|25|26|27|35|32|30|31|32|33|34|35|0\n31|29|29|28|28|27|26|25|23|23|24|21|20|19|18|18|22|19|20|21|22|33|24|25|26|27|32|30|30|31|32|33|0\n68|68|66|65|64|64|63|60|60|59|57|56|56|58|55|53|53|51|49|48|48|47|47|52|70|71|44|43|43|42|41|41|39|39|38|38|73|40|40|46|42|45|44|45|46|72|50|49|50|51|52|54|54|55|62|57|58|59|61|61|62|63|67|65|66|67|69|69|70|71|72|73|0\n88|87|86|85|84|83|82|79|78|77|76|76|80|75|74|74|72|72|71|70|67|67|68|65|64|64|63|61|60|59|58|58|57|55|55|54|52|52|50|50|49|48|48|47|47|91|90|49|51|51|53|53|54|56|56|57|62|59|60|61|62|63|66|65|66|69|68|69|70|71|73|73|89|75|81|77|78|79|80|81|82|83|84|85|86|87|88|89|90|91|0\n31|30|28|28|25|21|20|19|19|22|23|18|18|17|17|27|26|24|20|21|22|23|24|25|26|27|29|29|30|31|0\n15|12|12|10|10|9|9|14|11|11|13|13|14|15|0\n10|8|8|7|7|11|9|9|10|11|0\n72|68|68|67|66|65|65|70|64|63|59|59|58|57|57|61|56|55|54|52|52|50|50|49|47|46|46|45|44|43|43|42|40|39|38|38|41|39|40|41|42|73|44|45|48|47|48|49|51|51|53|53|54|55|56|62|58|60|60|61|62|63|64|71|66|67|69|69|70|71|72|73|0\n50|50|49|47|47|46|45|45|44|41|41|40|39|39|38|37|36|34|34|33|32|31|31|53|30|29|29|55|30|54|32|33|35|35|36|37|38|43|40|42|42|43|44|52|46|48|48|49|51|51|52|53|54|55|0\n39|36|35|35|34|32|32|31|28|27|26|26|29|24|23|22|22|21|21|38|25|23|24|25|30|27|28|29|30|31|33|33|34|37|36|37|38|39|0\n22|22|19|18|18|17|15|15|14|13|13|21|14|16|16|17|20|19|20|21|23|23|0\n43|43|42|41|41|39|38|37|36|34|34|33|32|30|30|28|27|26|26|25|24|24|40|25|29|27|28|29|31|31|32|33|35|35|36|37|38|39|40|45|42|44|44|45|0\n32|31|27|27|26|26|29|24|23|23|22|20|20|19|18|18|33|19|21|21|22|25|24|25|30|28|28|29|30|31|32|33|0\n48|43|43|42|40|40|41|45|39|38|37|37|47|35|33|32|31|31|30|27|27|28|26|26|36|29|28|29|30|34|32|33|34|35|36|49|38|39|46|41|42|44|44|45|46|47|48|49|0\n56|55|53|52|51|50|50|49|47|47|46|45|45|44|42|41|40|39|37|37|36|34|33|33|32|31|30|30|43|31|32|35|34|35|36|38|38|39|40|41|42|43|44|57|46|48|48|49|54|51|52|53|54|55|56|57|0\n55|54|53|51|48|47|47|46|45|44|42|42|41|38|37|37|39|35|35|34|33|32|30|29|29|31|50|52|30|31|32|33|34|36|36|40|38|39|40|41|43|43|44|45|46|49|48|49|50|51|52|53|54|55|0\n23|22|21|19|19|17|17|16|14|14|13|13|15|15|16|18|18|20|20|21|22|23|0\n33|29|29|30|26|24|23|23|25|27|22|20|19|19|18|18|32|21|20|21|22|28|24|25|26|27|28|31|30|31|32|33|0\n33|32|32|29|29|30|28|27|26|23|22|21|21|24|20|19|19|35|20|25|22|23|24|25|26|27|28|31|30|31|34|33|34|35|0\n18|17|16|15|15|13|12|11|11|14|12|13|14|19|16|17|18|19|0\n11|9|8|7|7|10|8|9|10|11|0\n7|5|5|6|6|7|0\n9|8|7|6|6|7|8|9|0\n58|58|56|55|54|51|50|49|49|52|48|47|46|45|41|40|40|38|37|37|36|36|43|35|34|33|32|31|31|57|32|33|34|35|44|39|38|39|42|41|42|43|44|45|46|47|48|53|50|51|52|53|54|55|56|57|59|59|0\n19|19|17|16|16|15|14|12|12|13|21|13|14|15|18|17|18|20|20|21|0\n23|22|22|21|18|18|19|17|17|15|14|14|16|15|16|25|20|19|20|21|24|23|24|25|0\n11|9|9|7|7|8|8|10|10|11|0\n64|63|62|61|61|56|55|55|54|54|58|53|52|51|50|49|48|47|45|45|44|42|41|40|38|37|37|39|35|35|34|34|60|36|36|43|38|39|40|41|42|43|44|46|46|47|48|49|50|51|52|53|59|57|56|57|58|59|60|65|62|63|64|65|0\n52|51|51|50|48|47|47|46|45|44|42|42|40|40|39|38|37|37|54|55|36|34|34|33|32|31|30|30|57|31|32|33|35|35|36|56|38|39|41|41|43|43|44|45|46|49|48|49|50|53|52|53|54|55|56|57|0\n48|47|46|45|44|44|42|41|37|36|36|38|39|34|34|33|32|30|29|29|28|26|26|27|43|27|28|31|30|31|32|33|35|35|40|37|38|39|40|41|42|43|49|45|46|47|48|49|0\n19|17|15|14|13|13|12|11|11|18|12|16|14|15|16|17|18|19|0\n43|42|42|44|39|39|38|37|36|35|34|33|32|31|30|27|26|26|25|24|24|29|41|25|28|27|28|29|30|31|32|33|34|35|36|37|38|40|40|41|45|43|44|45|0\n64|62|62|61|59|58|57|57|56|55|55|54|51|50|49|49|48|48|46|44|44|43|42|40|39|39|38|37|36|35|34|34|47|35|36|37|38|41|40|41|42|43|45|45|46|47|53|52|50|51|52|53|54|65|56|60|58|59|60|61|63|63|64|65|0\n55|53|52|47|47|48|49|46|44|43|43|45|41|41|40|38|38|37|35|34|33|32|32|31|30|29|29|54|30|31|36|33|34|35|36|37|39|39|40|42|42|51|44|45|46|50|48|49|50|51|52|53|54|55|0\n24|23|23|25|21|21|20|19|17|16|16|15|15|27|18|17|18|19|20|22|22|26|24|25|26|27|0\n16|16|15|15|18|19|13|13|12|12|21|14|14|20|17|17|18|19|20|21|0\n44|42|42|41|40|39|37|37|36|34|33|33|32|32|31|30|29|27|25|25|24|24|28|26|26|27|28|29|30|31|45|35|34|35|36|38|38|39|40|41|43|43|44|45|0\n59|56|56|52|52|51|48|47|46|46|45|45|43|42|42|41|40|39|38|37|35|34|34|33|33|54|31|31|32|58|32|55|36|35|36|37|38|39|40|41|44|43|44|50|49|47|48|49|50|51|53|53|54|55|57|57|58|59|0\n11|10|9|8|7|7|8|9|10|11|0\n27|24|21|21|22|20|20|19|16|16|17|15|15|26|18|17|18|19|25|23|22|23|24|25|26|27|0\n46|46|45|43|43|42|41|40|39|38|37|37|36|35|32|32|33|31|30|29|28|27|27|49|50|51|28|29|30|31|34|33|34|35|36|48|38|39|40|41|42|44|44|45|47|47|48|49|50|51|0\n45|44|41|41|40|39|38|37|37|36|34|34|32|31|30|28|27|27|26|25|24|24|33|25|26|29|28|29|30|31|32|33|35|35|36|43|38|39|40|42|42|43|44|45|0\n35|33|29|28|28|27|26|26|31|24|23|23|22|20|20|19|19|34|21|21|22|25|24|25|32|27|30|29|30|31|32|33|34|35|0\n57|56|56|55|53|53|52|51|51|50|50|60|61|48|47|46|45|44|43|41|40|40|42|39|38|36|36|35|34|33|33|63|34|35|37|37|38|39|49|41|42|43|44|45|46|47|48|49|62|59|52|54|54|55|58|57|58|59|60|61|62|63|0\n47|45|41|40|40|42|38|38|37|36|36|35|34|31|31|30|29|29|28|27|26|25|25|46|26|27|28|33|30|32|32|33|34|35|44|37|39|39|43|41|42|43|44|45|46|47|0\n49|48|48|47|46|44|43|42|42|41|40|40|37|36|36|35|34|33|31|31|30|29|28|27|27|39|28|29|30|32|32|33|34|35|38|37|38|39|51|41|45|43|44|45|46|47|50|49|50|51|0\n46|46|47|45|41|41|42|40|39|38|38|37|35|35|34|31|31|32|29|28|27|27|26|26|49|30|28|29|30|33|32|33|34|36|36|37|44|39|40|43|42|43|44|45|48|47|48|49|0\n13|10|9|9|8|8|12|11|10|11|12|13|0\n62|62|61|60|59|58|57|57|64|65|52|52|51|50|50|49|49|55|45|45|44|43|42|42|47|41|40|39|38|37|35|35|36|67|36|37|38|39|40|41|48|43|44|46|46|47|48|56|54|51|53|53|54|55|56|66|58|59|60|61|63|63|64|65|66|67|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n41|41|39|39|38|37|37|36|35|33|31|30|30|29|27|26|26|24|24|23|23|34|25|25|28|27|28|29|32|31|32|33|34|35|36|43|38|40|40|42|42|43|0\n18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0\n20|19|18|18|17|15|14|13|13|12|12|16|14|15|16|17|21|19|20|21|0\n50|47|47|48|49|44|44|43|41|37|36|36|38|35|35|34|32|32|33|31|29|29|28|27|27|46|28|30|30|31|42|33|34|40|39|37|38|39|40|41|42|43|45|45|46|51|48|49|50|51|0\n16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0\n26|25|23|23|22|21|21|20|19|18|16|15|15|17|16|17|18|19|20|27|22|24|24|25|26|27|0\n47|46|42|42|43|41|38|35|35|36|37|34|33|33|32|31|30|29|28|27|26|25|25|45|26|27|28|29|30|31|32|40|34|39|36|37|38|39|40|41|44|43|44|45|46|47|0\n55|53|53|50|50|48|47|46|46|45|44|43|40|40|41|39|37|36|36|35|34|33|30|30|31|29|29|52|32|31|32|33|34|35|38|37|38|39|42|41|42|43|44|45|49|47|48|49|51|51|52|54|54|55|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n35|35|36|34|33|33|38|31|30|29|27|26|26|25|23|23|22|21|21|32|22|24|24|25|28|27|28|29|30|31|32|39|34|37|36|37|38|39|0\n45|40|39|38|38|37|36|34|33|33|32|32|42|31|29|29|28|27|26|25|24|24|44|25|26|27|28|30|30|31|43|35|34|35|36|37|41|39|40|41|42|43|44|45|0\n56|54|54|53|52|48|48|49|47|47|51|46|43|42|42|44|39|38|37|37|36|34|33|33|32|31|30|30|41|31|32|35|34|35|36|40|38|39|40|41|45|43|44|45|46|57|50|49|50|51|52|53|55|55|56|57|0\n31|31|30|28|28|27|26|26|24|23|20|19|19|21|18|18|25|22|20|21|22|23|24|25|33|27|29|29|30|32|32|33|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n62|62|61|59|53|53|52|50|48|47|47|46|45|45|51|55|44|43|42|42|57|41|40|39|38|35|34|34|36|33|33|60|37|35|36|37|38|39|40|41|58|43|44|56|46|49|48|49|50|51|52|54|54|55|56|57|58|59|60|61|63|63|0\n11|8|8|7|7|10|9|9|10|11|0\n86|84|84|83|83|82|80|80|78|76|76|75|73|72|70|70|68|68|67|66|65|61|60|59|57|57|56|55|54|52|52|53|51|50|49|49|63|64|48|47|46|45|45|79|46|47|48|74|50|51|62|53|54|55|56|58|58|59|60|61|62|63|64|65|66|67|69|69|71|71|72|73|74|75|77|77|78|79|81|81|82|87|85|85|86|87|0\n23|20|20|19|18|18|16|15|13|13|14|17|14|15|16|17|22|19|21|21|22|23|0\n39|36|36|33|33|32|32|31|30|29|28|27|24|23|23|25|22|21|21|38|22|26|24|25|26|27|28|29|30|31|35|34|34|35|37|37|38|39|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n52|50|50|49|47|46|46|45|44|43|41|41|40|39|38|38|37|35|35|33|32|31|30|29|28|28|34|29|30|31|32|33|34|36|36|37|53|39|40|42|42|43|44|45|48|47|48|49|51|51|52|53|0\n21|19|18|16|16|15|14|13|12|12|20|13|14|15|17|17|18|19|20|21|0\n23|21|20|20|19|19|24|25|18|16|16|15|15|27|17|17|18|26|22|21|22|23|24|25|26|27|0\n27|26|26|28|24|23|22|20|20|19|18|17|16|16|25|17|18|19|21|21|22|23|24|25|29|27|28|29|0\n42|41|40|39|37|36|36|34|34|33|32|32|43|44|45|31|29|29|28|27|26|25|25|47|26|27|28|30|30|31|46|33|35|35|38|37|38|39|40|41|42|43|44|45|46|47|0\n39|38|35|35|34|34|32|30|30|29|27|26|26|25|24|23|22|21|21|33|22|23|24|25|28|27|28|29|31|31|32|33|37|36|36|37|38|39|0\n50|49|41|41|42|40|40|44|39|38|38|46|47|37|37|36|35|32|32|31|30|29|28|27|27|34|28|29|30|31|33|33|34|35|36|51|48|39|45|43|42|43|44|45|46|47|48|49|50|51|0\n61|58|57|57|56|55|50|49|49|51|48|48|53|46|45|44|43|42|41|41|39|38|38|37|36|35|34|32|32|33|60|33|34|35|36|37|40|39|40|47|42|43|44|45|46|47|54|52|50|51|52|53|54|55|56|59|58|59|60|61|0\n35|35|34|34|33|33|38|39|31|30|29|29|28|27|26|25|24|23|22|22|41|23|24|25|26|27|28|32|30|31|32|40|37|36|36|37|38|39|40|41|0\n15|13|12|12|10|10|9|9|11|11|14|13|14|15|0\n44|44|43|43|42|39|38|38|40|31|31|32|30|30|34|35|29|27|26|26|28|25|25|47|37|27|28|29|36|33|32|33|34|35|36|37|41|39|40|41|42|46|45|45|46|47|0\n35|34|34|33|33|31|30|28|23|23|24|25|26|22|21|21|20|20|32|29|22|27|24|25|26|27|28|29|30|31|32|37|36|35|36|37|0\n31|29|28|27|26|25|23|22|21|21|20|18|18|17|17|30|19|19|20|24|22|23|24|25|26|27|28|29|30|31|0\n28|27|27|25|23|23|22|20|19|17|17|18|16|16|26|21|18|19|20|21|22|24|24|25|26|29|28|29|0\n72|71|70|67|65|65|66|68|64|62|62|61|60|59|58|58|57|56|53|53|51|50|49|47|47|48|46|45|44|43|40|40|41|39|38|38|55|39|42|41|42|43|44|45|46|52|48|49|50|51|52|54|54|55|56|57|73|59|60|61|63|63|64|69|66|67|68|69|70|71|72|73|0\n38|37|34|34|33|33|31|31|32|39|29|28|27|27|26|25|24|22|22|23|41|23|24|25|26|30|28|29|30|40|32|36|35|35|36|37|38|39|40|41|0\n60|60|59|56|55|55|54|52|52|53|51|51|62|63|49|49|48|47|41|41|42|43|44|45|38|38|39|37|36|35|34|34|65|35|36|37|40|39|40|46|42|43|44|45|46|47|48|50|50|64|58|53|54|57|56|57|58|59|61|61|62|63|64|65|0\n43|39|39|38|37|36|35|33|33|31|31|29|28|28|27|26|25|25|41|23|23|24|24|42|26|27|30|29|30|32|32|34|34|35|36|37|38|40|40|41|42|43|0\n44|44|39|39|38|37|36|35|34|34|41|30|30|31|32|29|26|26|25|25|24|24|43|28|27|27|28|29|33|31|32|33|42|35|36|37|38|40|40|41|42|43|45|45|0\n70|69|68|67|66|64|64|63|61|60|59|59|58|58|57|56|55|52|52|51|50|49|48|46|45|45|44|42|42|41|39|39|38|37|37|54|38|40|40|41|43|43|44|47|46|47|48|49|50|51|53|53|54|55|56|57|71|62|60|61|62|63|65|65|66|67|68|69|70|71|0\n33|26|26|25|25|28|23|23|22|22|30|21|20|18|18|19|32|19|20|21|31|24|24|29|27|27|28|29|30|31|32|33|0\n75|74|70|69|68|67|67|71|66|64|64|60|60|59|58|58|62|57|55|55|54|53|50|49|49|51|47|46|46|45|43|42|42|41|40|39|39|73|40|41|44|43|44|45|48|47|48|52|50|51|52|53|54|56|56|57|63|59|61|61|62|63|65|65|66|72|68|69|70|71|72|73|74|75|0\n17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0\n21|18|18|15|15|16|13|13|12|12|20|14|14|17|16|17|19|19|20|21|0\n49|49|46|44|43|42|42|41|40|40|47|39|36|35|34|34|37|33|33|31|30|29|28|27|27|32|28|29|30|31|32|51|38|35|36|37|38|39|48|41|45|43|44|45|46|47|48|50|50|51|0\n17|15|15|14|13|11|10|10|12|11|12|13|14|16|16|17|0\n31|30|30|29|25|24|22|22|23|26|21|21|20|20|19|18|18|19|33|28|27|23|24|25|26|27|28|29|32|31|32|33|0\n16|16|15|13|11|11|10|10|14|12|12|13|14|15|17|17|0\n19|17|13|13|14|15|11|11|12|18|12|16|14|15|16|17|18|19|0\n34|34|31|31|30|29|28|26|25|24|23|22|22|21|20|19|19|33|20|21|27|23|24|25|26|27|28|29|30|32|32|33|35|35|0\n22|21|20|20|18|17|15|15|14|13|13|19|14|16|16|17|18|19|23|21|22|23|0\n28|28|26|26|27|30|31|25|24|22|21|21|20|19|18|18|33|19|20|23|22|23|24|25|32|27|29|29|30|31|32|33|0\n63|62|61|61|60|57|57|58|56|56|65|54|53|53|52|51|50|48|48|46|46|45|44|42|41|40|39|38|37|37|35|35|36|67|36|43|38|39|40|41|42|43|44|45|47|47|49|49|50|51|52|55|54|55|66|59|58|59|60|64|62|63|64|65|66|67|0\n17|14|13|12|10|10|11|15|16|11|12|13|14|15|16|17|0\n47|47|45|45|44|44|49|43|41|41|40|38|37|36|36|35|34|32|32|31|28|28|27|27|30|51|29|29|30|31|33|33|34|35|39|37|38|39|40|42|42|43|50|46|46|48|48|49|50|51|0\n46|46|43|42|40|40|41|39|37|37|36|35|34|33|31|30|29|29|28|27|26|25|25|45|26|27|28|32|30|31|32|33|34|35|36|38|38|39|44|41|42|43|44|45|47|47|0\n60|60|56|56|55|54|53|53|52|50|49|49|47|47|46|43|42|42|41|41|37|37|36|35|34|33|33|39|32|32|59|40|34|35|36|38|38|39|40|45|44|43|44|45|46|48|48|51|50|51|52|58|54|55|57|57|58|59|61|61|0\n44|42|42|40|40|39|38|37|36|35|35|34|33|31|30|29|28|26|25|25|24|24|32|27|26|27|28|29|30|31|32|33|34|45|36|37|38|39|41|41|43|43|44|45|0\n28|27|26|24|24|25|22|21|18|18|19|17|16|16|23|17|20|19|20|21|22|23|29|25|26|27|28|29|0\n20|19|17|17|18|14|13|13|12|12|16|15|14|15|16|21|18|19|20|21|0\n32|31|30|30|29|28|27|27|34|26|25|25|23|23|22|21|21|20|20|37|22|24|24|36|26|35|28|29|33|31|32|33|34|35|36|37|0\n18|18|15|15|13|12|12|11|11|17|14|13|14|16|16|17|19|19|0\n36|36|34|33|32|31|30|29|28|27|26|23|23|22|21|21|20|20|35|25|22|24|24|25|26|27|28|29|30|31|32|33|34|35|37|37|0\n34|34|33|32|32|36|37|30|30|29|28|26|25|24|24|23|22|21|21|39|22|23|27|25|26|27|28|29|31|31|38|33|35|35|36|37|38|39|0\n45|43|38|37|36|36|39|40|41|35|34|33|32|31|30|29|28|26|26|25|24|24|44|25|27|27|28|29|30|31|32|33|34|35|42|37|38|39|40|41|42|43|44|45|0\n70|69|69|68|67|67|72|73|65|64|63|63|61|61|58|57|56|55|55|59|53|53|52|51|50|48|47|46|46|45|44|42|42|41|40|39|39|75|40|41|43|43|44|45|49|47|48|49|50|51|52|54|54|60|56|57|58|59|60|62|62|66|64|65|66|74|68|71|70|71|72|73|74|75|0\n38|35|35|34|33|32|32|31|30|30|29|28|26|26|24|23|22|21|21|25|22|23|24|25|27|27|28|29|39|31|37|33|34|36|36|37|38|39|0\n49|48|46|44|44|43|42|42|41|40|38|37|36|35|33|32|32|31|30|28|27|27|26|26|39|29|28|29|30|31|34|33|34|35|36|37|38|39|40|41|47|43|45|45|46|47|48|49|0\n47|47|46|45|45|42|42|43|41|40|39|37|37|36|31|31|30|29|29|28|28|27|26|26|35|27|34|33|30|32|32|33|34|35|36|38|38|39|40|41|44|43|44|49|46|48|48|49|0\n31|29|29|30|28|28|24|24|23|22|21|21|20|19|18|18|27|19|20|26|22|23|25|25|26|27|33|32|30|31|32|33|0\n46|45|44|43|43|47|48|49|41|40|39|38|36|36|35|34|34|33|31|31|29|29|28|27|27|51|28|30|30|32|32|33|42|35|37|37|38|39|40|41|42|50|44|45|46|47|48|49|50|51|0\n24|22|22|23|20|18|18|15|15|16|14|14|21|17|16|17|19|19|20|21|25|23|24|25|0\n21|19|18|16|16|17|20|15|14|14|13|13|23|15|22|17|18|19|20|21|22|23|0\n41|41|40|38|38|37|34|34|33|32|32|31|30|29|28|28|43|27|25|25|24|24|45|26|26|27|44|29|30|31|36|33|35|35|36|37|39|39|40|42|42|43|44|45|0\n21|21|20|17|16|16|15|15|14|13|13|23|14|19|18|17|18|19|20|22|22|23|0\n42|41|40|39|38|37|37|36|34|33|32|30|30|29|27|26|26|25|24|23|23|35|24|25|28|27|28|29|31|31|32|33|34|35|36|43|38|39|40|41|42|43|0\n31|31|32|29|28|27|26|25|24|23|22|21|20|19|18|18|30|19|20|21|22|23|24|25|26|27|28|29|30|33|32|33|0\n19|13|13|14|15|12|11|11|17|18|12|16|14|15|16|17|18|19|0\n45|44|43|43|42|40|39|37|37|38|36|33|33|34|31|30|30|29|28|28|26|25|25|27|26|27|47|29|32|31|32|35|34|35|36|41|38|39|40|41|42|46|44|45|46|47|0\n47|40|40|39|37|36|36|35|34|33|31|31|32|42|30|29|28|28|44|27|26|25|25|46|26|27|45|29|30|43|32|33|34|35|38|37|38|39|41|41|42|43|44|45|46|47|0\n20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n14|12|11|10|9|9|13|15|10|11|12|13|14|15|0\n36|36|35|34|32|31|30|29|27|27|26|25|24|21|21|22|20|20|33|23|22|23|24|25|26|28|28|29|30|31|32|33|34|35|37|37|0\n29|29|28|28|25|23|22|22|21|21|20|18|18|17|17|27|19|19|20|26|24|23|24|25|26|27|31|30|30|31|0\n37|35|30|29|29|31|32|33|28|26|26|24|24|23|21|21|20|20|36|22|22|23|25|25|27|27|28|34|30|31|32|33|34|35|36|37|0\n10|10|8|7|7|9|8|9|11|11|0\n51|51|50|48|48|49|53|54|55|46|45|45|44|43|42|41|40|39|36|35|35|34|34|33|32|31|30|30|57|31|32|33|38|37|36|37|38|39|40|41|42|43|44|47|46|47|56|49|50|52|52|53|54|55|56|57|0\n25|23|22|21|20|19|18|17|15|14|14|16|24|15|16|17|18|19|20|21|22|23|24|25|0\n7|5|5|6|6|7|0\n11|10|9|7|7|8|8|9|10|11|0\n21|20|19|15|15|16|14|13|12|12|18|13|14|17|16|17|18|19|20|21|0\n29|29|28|27|27|25|24|23|22|20|20|19|18|17|17|26|18|19|21|21|22|23|24|25|26|31|28|30|30|31|0\n43|41|40|39|34|34|35|33|33|37|31|30|30|29|28|26|26|25|24|23|23|42|24|25|27|27|28|29|32|31|32|38|36|35|36|37|38|39|40|41|42|43|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n31|29|27|26|25|24|24|22|20|19|19|18|18|17|17|30|23|21|20|21|22|23|28|25|26|27|28|29|30|31|0\n46|45|44|42|42|41|39|39|38|37|36|36|35|34|32|31|30|28|28|27|26|25|25|33|26|27|29|29|30|31|32|33|34|35|47|37|38|40|40|41|43|43|44|45|46|47|0\n30|29|28|28|26|26|24|22|21|21|20|19|18|17|17|25|18|19|20|23|22|23|24|25|27|27|31|29|30|31|0\n52|50|49|49|51|48|45|45|46|40|40|39|38|38|42|37|36|34|33|33|31|31|30|28|28|29|44|29|30|32|32|35|34|35|36|37|43|39|41|41|42|43|44|47|46|47|48|53|50|51|52|53|0\n40|38|38|37|36|36|35|32|32|31|28|28|29|27|27|24|24|23|22|22|26|23|25|25|26|34|30|29|30|31|33|33|34|35|41|37|39|39|40|41|0\n62|61|61|59|55|54|54|53|51|51|52|57|50|47|46|45|44|43|43|48|42|41|40|39|38|36|35|35|34|33|33|60|34|37|36|37|38|39|40|41|42|49|44|45|46|47|48|49|50|58|52|53|56|55|56|57|58|59|60|63|62|63|0\n9|6|6|7|8|7|8|9|0\n27|21|16|16|17|18|19|20|22|23|24|15|15|26|25|17|18|19|20|21|22|23|24|25|26|27|0\n45|43|42|41|40|40|37|37|36|34|34|32|31|30|29|28|27|27|25|25|24|24|39|26|26|33|28|29|30|31|32|33|35|35|36|38|38|39|44|41|42|43|44|45|0\n44|44|41|40|40|39|36|35|35|34|33|28|28|29|30|31|32|26|26|25|24|24|43|25|27|27|38|29|30|31|32|33|34|37|36|37|38|39|42|41|42|43|45|45|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n31|31|30|29|29|25|24|23|22|22|26|21|20|18|18|19|28|19|20|21|27|23|24|25|26|27|28|33|30|32|32|33|0\n46|46|45|43|42|39|39|38|37|37|35|32|32|33|31|31|28|28|29|27|26|25|25|44|26|27|30|29|30|36|34|33|34|35|36|41|38|40|40|41|42|43|44|45|47|47|0\n58|58|56|55|54|50|48|48|49|47|46|46|52|45|44|43|42|41|40|38|38|37|36|35|33|33|32|31|31|57|32|34|34|35|36|37|39|39|40|41|42|43|44|45|53|47|51|49|50|51|52|53|54|55|56|57|59|59|0\n33|31|30|29|28|27|27|24|23|22|22|21|20|19|18|18|26|19|20|21|25|23|24|25|26|32|28|29|30|31|32|33|0\n20|18|18|19|21|22|15|15|14|13|13|17|14|16|16|17|23|19|20|21|22|23|0\n38|37|35|35|33|32|31|31|34|30|28|28|26|25|24|23|22|21|21|27|22|23|24|25|26|27|29|29|30|39|32|33|34|36|36|37|38|39|0\n38|35|34|34|33|31|31|32|30|29|29|28|25|25|24|24|22|21|21|23|22|23|27|26|26|27|28|39|30|37|32|33|36|35|36|37|38|39|0\n22|21|20|18|18|17|17|23|16|15|14|14|25|15|16|24|19|19|20|21|22|23|24|25|0\n47|45|44|43|39|37|37|36|36|35|34|34|41|32|31|30|29|29|28|27|26|25|25|46|26|27|28|33|30|31|32|33|42|35|40|38|38|39|40|41|42|43|44|45|46|47|0\n7|5|5|6|6|7|0\n77|76|74|73|72|70|70|69|68|67|67|66|65|64|63|62|62|78|79|61|58|57|56|55|54|53|53|59|47|47|46|44|44|45|49|50|43|43|42|42|81|52|51|45|46|48|48|49|50|51|52|60|54|55|56|57|58|59|60|61|80|63|64|65|66|75|68|69|71|71|72|73|74|75|76|77|78|79|80|81|0\n28|27|26|26|25|24|24|30|31|20|19|19|21|22|18|18|33|23|20|21|22|23|32|25|29|27|28|29|30|31|32|33|0\n37|36|35|34|33|32|31|30|30|38|39|29|28|27|24|24|25|23|22|22|41|23|26|25|26|27|28|29|40|31|32|33|34|35|36|37|38|39|40|41|0\n51|44|43|41|41|40|38|38|39|45|46|36|35|35|34|33|33|32|32|30|30|29|28|27|27|50|28|29|31|31|49|48|34|37|36|37|47|39|40|42|42|43|44|45|46|47|48|49|50|51|0\n63|62|62|61|58|58|59|57|57|55|54|52|52|51|50|49|48|47|44|43|42|42|41|40|39|39|38|36|34|34|35|37|56|35|36|37|38|46|40|41|45|43|44|45|46|47|48|49|50|51|53|53|54|55|56|65|60|59|60|61|64|63|64|65|0\n18|17|17|19|16|15|15|21|14|13|13|23|14|22|16|20|18|19|20|21|22|23|0\n66|66|64|61|59|58|58|57|57|62|56|51|50|50|49|48|47|46|46|53|54|45|44|43|42|39|39|38|38|36|36|35|35|65|37|37|41|40|40|41|42|43|44|45|55|47|48|49|52|51|52|53|54|55|56|63|60|59|60|61|62|63|64|65|67|67|0\n33|31|31|32|30|26|25|25|24|24|28|22|22|21|20|19|19|35|20|21|23|23|29|27|26|27|28|29|30|34|32|33|34|35|0\n51|50|50|49|44|43|42|42|45|46|40|39|39|41|48|37|36|35|34|32|31|31|30|28|28|29|38|29|30|33|32|33|34|35|36|37|38|53|40|41|47|43|44|45|46|47|48|49|52|51|52|53|0\n23|21|20|19|17|17|16|15|14|13|13|22|14|15|16|18|18|19|20|21|22|23|0\n28|26|25|24|23|22|21|19|19|20|18|17|16|16|29|17|18|27|20|21|22|23|24|25|26|27|28|29|0\n25|22|22|21|20|18|18|17|15|14|14|16|24|15|16|17|19|19|20|21|23|23|24|25|0\n15|14|12|11|10|9|9|13|10|11|12|13|14|15|0\n43|39|38|37|36|35|35|40|31|29|28|28|27|25|25|24|24|32|33|34|23|23|42|26|26|27|30|29|30|31|32|33|34|41|36|37|38|39|40|41|42|43|0\n67|65|64|62|60|59|59|61|58|55|54|53|52|51|51|56|50|48|47|47|46|45|43|43|42|40|40|39|37|36|36|35|35|66|38|37|38|39|41|41|42|44|44|45|46|49|48|49|50|57|52|53|54|55|56|57|58|63|60|61|62|63|64|65|66|67|0\n30|29|29|25|25|24|23|21|20|20|18|18|17|17|27|28|19|19|22|21|22|23|24|26|26|27|28|31|30|31|0\n16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0\n55|51|48|48|47|46|46|45|44|43|42|41|41|52|40|39|38|36|36|33|33|34|32|31|30|29|29|54|30|31|32|35|34|35|37|37|38|39|40|53|42|43|44|45|50|47|49|49|50|51|52|53|54|55|0\n27|26|25|22|22|20|20|18|18|17|15|15|16|24|16|17|19|19|21|21|23|23|24|25|26|27|0\n25|24|20|19|18|18|21|17|15|15|14|14|23|16|16|17|22|19|20|21|22|23|24|25|0\n41|41|39|38|38|36|36|37|35|33|31|31|32|29|28|27|25|25|24|23|23|30|24|26|26|27|28|29|30|34|32|33|34|35|43|37|40|39|40|42|42|43|0\n37|36|36|35|34|32|31|30|30|29|28|28|26|25|24|23|22|21|21|27|22|23|24|25|26|27|39|29|33|31|32|33|34|35|38|37|38|39|0\n71|69|65|65|64|63|63|67|61|60|59|59|58|55|55|54|53|53|51|51|48|48|49|47|45|45|44|43|42|41|40|39|37|37|38|70|38|39|40|41|42|43|44|46|46|47|50|49|50|52|52|57|54|56|56|57|58|62|60|61|62|68|64|66|66|67|68|69|70|71|0\n35|32|28|27|26|25|25|29|30|24|23|23|22|20|20|19|19|34|21|21|22|33|24|31|26|27|28|29|30|31|32|33|34|35|0\n23|21|19|19|18|17|15|14|13|13|16|22|14|15|16|17|18|20|20|21|22|23|0\n24|23|23|21|20|19|18|16|15|15|14|14|22|17|16|17|18|19|20|21|22|25|24|25|0\n16|13|13|14|12|11|10|10|17|11|12|15|14|15|16|17|0\n30|29|27|27|26|23|22|21|20|20|24|19|18|17|17|31|18|19|25|21|22|23|24|25|26|28|28|29|30|31|0\n57|53|53|54|52|51|45|45|46|47|44|44|49|43|42|42|56|41|40|40|38|36|35|34|34|33|32|31|31|39|32|33|37|35|36|37|38|39|59|41|58|43|50|48|46|47|48|49|50|51|52|55|54|55|56|57|58|59|0\n34|33|33|35|32|31|31|26|26|27|28|25|23|23|20|20|21|22|30|21|22|24|24|25|29|27|28|29|30|37|32|36|34|35|36|37|0\n75|74|72|71|71|70|68|66|66|61|60|60|62|59|59|64|58|53|53|54|52|52|56|57|69|76|77|49|48|48|47|46|45|45|44|42|42|41|41|79|43|43|44|51|46|47|50|49|50|51|78|55|54|55|56|57|58|65|63|61|62|63|64|65|67|67|68|69|70|73|72|73|74|75|76|77|78|79|0\n26|25|23|23|24|27|22|20|20|21|29|19|18|17|17|31|18|19|30|21|22|28|24|25|26|27|28|29|30|31|0\n43|42|40|39|38|36|35|33|32|32|31|30|30|29|26|26|27|25|23|23|24|41|24|25|28|27|28|29|37|31|34|33|34|35|36|37|38|39|40|41|42|43|0\n41|40|40|39|35|35|36|34|33|32|31|30|30|38|28|24|24|23|23|26|27|29|25|25|26|27|28|29|43|31|32|33|34|37|36|37|38|39|42|41|42|43|0\n19|17|16|16|15|14|12|11|11|13|12|13|14|15|18|17|18|19|0\n49|48|47|46|45|44|44|43|39|38|38|40|37|36|36|42|51|35|34|31|31|32|30|29|28|28|53|29|30|33|32|33|34|35|52|37|41|39|40|41|42|43|50|45|46|47|48|49|50|51|52|53|0\n60|59|58|57|54|54|53|52|52|51|49|49|50|48|47|45|43|42|42|41|40|37|36|36|38|35|34|33|32|32|46|33|34|35|39|37|38|39|40|41|44|43|44|45|46|47|48|61|50|51|56|53|55|55|56|57|58|59|60|61|0\n37|36|36|35|33|32|32|31|30|30|27|25|24|23|23|21|21|22|28|29|22|26|24|25|26|27|28|29|39|31|34|33|34|35|38|37|38|39|0\n53|51|50|50|49|48|47|46|45|45|54|55|43|43|41|41|40|39|37|36|35|34|33|32|32|31|30|30|57|31|38|33|34|35|36|37|38|39|40|42|42|44|44|56|46|47|48|49|52|51|52|53|54|55|56|57|0\n20|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|21|19|20|21|0\n26|25|24|23|22|22|21|20|18|17|16|15|15|19|16|17|18|19|20|21|27|23|24|25|26|27|0\n30|30|31|28|27|26|26|23|22|22|21|21|20|19|18|18|33|19|20|25|24|23|24|25|29|27|28|29|32|31|32|33|0\n22|21|20|19|19|17|17|15|14|13|13|16|14|15|16|18|18|23|20|21|22|23|0\n40|39|39|36|35|33|32|32|31|30|29|27|27|25|24|23|23|22|22|37|38|26|24|25|26|28|28|29|30|31|34|33|34|35|36|37|38|41|40|41|0\n25|23|23|22|20|20|21|26|27|19|17|17|16|16|29|18|18|19|28|21|22|24|24|25|26|27|28|29|0\n58|58|54|54|53|52|50|50|51|48|47|45|44|43|42|42|46|40|39|39|38|37|36|34|34|33|32|31|31|57|32|33|35|35|36|37|38|41|40|41|49|43|44|45|46|47|48|49|56|51|52|53|55|55|56|57|59|59|0\n23|22|21|21|20|19|18|18|16|14|14|15|17|15|16|17|25|19|20|24|22|23|24|25|0\n10|10|8|7|7|9|8|9|11|11|0\n32|31|30|30|33|27|27|26|25|25|24|23|22|21|20|19|19|35|20|21|22|23|24|29|26|28|28|29|34|31|32|33|34|35|0\n66|66|64|64|65|68|62|61|59|57|56|56|55|52|52|53|51|49|48|47|45|44|44|46|50|43|42|41|40|39|38|37|36|36|63|37|38|39|40|41|42|43|60|45|46|47|48|49|50|51|54|53|54|55|58|57|58|59|60|61|62|63|69|65|67|67|68|69|0\n15|14|14|12|11|11|13|10|10|17|12|13|16|15|16|17|0\n27|24|24|23|22|21|20|19|18|18|16|15|15|17|16|17|26|19|20|21|22|23|25|25|26|27|0\n30|26|25|25|24|23|22|20|19|19|21|28|18|17|17|31|18|29|20|21|22|23|24|27|26|27|28|29|30|31|0\n37|36|35|35|34|33|32|31|30|29|28|27|25|24|24|23|22|22|21|21|39|23|26|25|26|27|28|29|30|31|32|33|34|38|36|37|38|39|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n17|16|16|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0\n56|55|52|52|51|50|50|48|48|47|46|45|43|43|42|41|41|40|39|38|37|36|35|34|33|32|31|30|30|31|32|33|34|35|36|37|38|39|40|57|42|44|44|45|46|47|49|49|54|51|53|53|54|55|56|57|0\n32|27|27|28|26|26|30|31|23|23|21|21|20|19|18|18|25|19|20|22|22|24|24|25|33|29|28|29|30|31|32|33|0\n61|61|60|59|58|56|56|55|53|53|51|50|49|48|47|47|46|45|44|43|43|63|64|65|40|40|39|38|38|37|35|35|36|67|36|37|42|39|41|41|42|66|44|45|46|52|48|49|50|51|52|54|54|55|57|57|58|59|60|62|62|63|64|65|66|67|0\n28|28|26|24|23|22|22|21|20|19|18|17|16|16|27|17|18|19|20|21|25|23|24|25|26|27|29|29|0\n30|30|24|24|25|23|23|27|21|21|20|19|18|17|17|29|18|19|20|22|22|28|26|25|26|27|28|29|31|31|0\n39|38|37|37|36|35|34|32|32|31|31|41|30|29|26|25|25|27|24|23|23|43|24|28|26|27|28|29|30|42|33|33|34|35|36|40|38|39|40|41|42|43|0\n58|56|56|55|55|54|53|51|50|46|45|44|44|47|48|43|42|41|40|39|36|36|37|34|34|33|32|31|31|52|32|33|35|35|38|37|38|39|40|41|42|43|49|45|46|47|48|49|50|51|52|53|54|59|57|57|58|59|0\n42|41|39|38|37|37|36|35|35|43|30|30|29|27|27|28|32|33|26|25|24|24|45|25|26|34|28|29|31|31|32|33|34|44|36|40|38|39|40|41|42|43|44|45|0\n29|28|27|25|25|26|30|31|24|23|22|21|20|19|18|18|33|19|20|21|22|23|24|32|26|27|28|29|30|31|32|33|0\n39|38|38|40|36|35|34|32|32|31|27|26|25|24|24|23|22|22|29|30|37|23|28|25|26|27|28|29|30|31|33|33|34|35|36|37|41|39|40|41|0\n58|57|57|56|53|53|52|52|49|48|47|44|44|43|42|42|41|40|39|38|36|36|34|34|33|32|31|31|50|51|32|33|35|35|37|37|38|39|40|41|46|43|45|45|46|47|48|49|50|51|55|54|54|55|56|59|58|59|0\n15|14|14|16|13|11|10|10|12|11|12|13|17|15|16|17|0\n46|45|43|43|44|42|38|38|37|35|34|33|33|36|32|31|30|29|27|27|26|25|25|41|26|28|28|29|30|31|32|40|34|35|36|37|39|39|40|41|42|47|44|45|46|47|0\n44|44|43|38|38|37|36|35|34|33|32|32|40|31|30|29|28|26|25|25|24|24|42|27|26|27|28|29|30|31|41|33|34|35|36|37|39|39|40|41|42|43|45|45|0\n36|36|37|34|34|33|32|31|29|28|27|26|25|24|23|22|21|21|30|39|22|23|24|25|26|27|28|29|30|31|32|33|35|35|38|37|38|39|0\n52|52|51|49|48|48|45|44|43|43|42|41|40|37|37|38|36|35|34|33|31|31|30|28|28|29|47|29|30|32|32|33|34|35|36|39|38|39|40|41|42|46|44|45|46|47|50|49|50|51|53|53|0\n26|26|24|22|22|21|19|18|18|17|16|15|15|25|16|17|20|19|20|21|23|23|24|25|27|27|0\n68|67|66|64|62|59|59|60|61|63|58|58|57|56|54|53|51|51|50|48|48|45|44|43|43|42|41|41|40|38|38|37|36|36|55|37|39|39|40|47|42|46|44|45|46|47|49|49|50|52|52|53|54|55|56|57|69|65|60|61|62|63|64|65|66|67|68|69|0\n29|29|28|25|25|26|23|23|20|19|19|21|18|17|17|31|18|22|20|21|22|24|24|27|26|27|28|30|30|31|0\n35|33|33|34|32|30|29|29|28|25|25|26|24|24|22|21|20|20|23|21|22|23|37|27|26|27|28|31|30|31|32|36|34|35|36|37|0\n31|30|30|29|28|28|27|25|24|23|21|20|20|19|18|18|26|19|22|21|22|23|24|25|26|27|33|29|32|31|32|33|0\n20|19|19|18|17|16|14|12|12|13|15|13|14|15|16|17|18|21|20|21|0\n25|24|21|20|20|19|18|16|16|15|14|14|23|15|17|17|18|19|22|21|22|23|24|25|0\n9|7|6|6|8|7|8|9|0\n21|21|20|19|19|17|15|14|14|13|13|18|16|15|16|17|18|23|20|22|22|23|0\n20|18|18|19|16|14|14|13|12|12|17|13|15|15|16|17|21|19|20|21|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0\n50|48|48|47|45|45|42|42|41|41|40|39|38|37|36|35|34|34|33|32|30|30|29|28|27|27|28|29|31|31|32|33|51|35|36|37|38|39|40|44|43|43|44|46|46|47|49|49|50|51|0\n32|32|29|29|28|25|24|23|23|26|21|20|20|19|18|18|31|19|22|21|22|27|24|25|26|27|28|30|30|31|33|33|0\n39|38|37|36|35|34|34|40|41|33|31|30|30|28|28|26|25|25|24|23|23|43|24|27|26|27|29|29|32|31|32|33|42|35|36|37|38|39|40|41|42|43|0\n27|27|26|24|24|25|29|23|21|21|22|31|20|18|18|19|33|19|20|32|22|23|30|25|26|28|28|29|30|31|32|33|0\n11|8|8|9|7|7|10|9|10|11|0\n65|64|61|60|59|58|57|56|55|55|62|52|52|53|51|50|48|48|49|66|67|45|45|44|44|43|42|40|40|38|38|37|36|36|69|37|39|39|41|41|42|43|47|46|46|47|68|49|50|51|54|53|54|63|56|57|58|59|60|61|62|63|64|65|66|67|68|69|0\n26|26|24|24|25|28|29|23|22|21|20|19|18|17|17|31|18|19|20|21|22|23|30|25|27|27|28|29|30|31|0\n21|21|22|18|18|16|16|15|14|13|13|20|14|15|17|17|19|19|20|23|22|23|0\n20|19|18|18|16|14|14|13|12|12|17|13|15|15|16|17|21|19|20|21|0\n53|50|50|49|48|47|46|44|43|41|41|42|40|38|37|37|36|35|32|32|33|31|30|29|28|28|52|29|30|31|34|33|34|35|36|39|38|39|40|45|42|43|44|45|46|47|48|49|51|51|52|53|0\n42|42|41|39|39|37|33|32|32|31|30|29|29|35|28|27|26|25|24|23|23|38|24|25|26|27|28|36|30|31|34|33|34|35|36|37|38|40|40|41|43|43|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n37|33|32|32|31|31|30|27|27|26|25|24|23|22|20|20|21|29|36|21|22|23|24|25|26|28|28|29|30|35|34|33|34|35|36|37|0\n9|9|10|8|8|12|13|11|10|11|12|13|0\n25|25|24|21|20|20|19|18|18|17|16|15|15|27|16|17|23|19|22|21|22|23|24|26|26|27|0\n59|58|57|55|55|54|53|51|51|52|60|61|50|48|48|46|45|45|44|42|42|41|40|39|38|37|36|35|34|33|33|63|34|35|36|37|38|39|40|41|43|43|44|47|46|47|49|49|50|62|52|53|54|56|56|57|58|59|60|61|62|63|0\n23|23|22|22|19|19|18|16|16|15|14|14|21|15|17|17|18|20|20|21|25|24|24|25|0\n16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0\n50|48|47|47|46|45|45|44|43|42|40|38|37|35|34|33|32|32|31|30|29|28|28|27|27|41|39|29|30|31|36|33|34|35|36|37|38|39|40|41|42|43|44|51|46|49|48|49|50|51|0\n27|26|24|24|23|22|21|19|18|18|17|16|15|15|16|17|20|19|20|21|22|23|25|25|26|27|0\n31|31|29|29|27|25|22|22|23|24|26|21|21|19|18|18|20|19|20|33|28|23|24|25|26|27|28|30|30|32|32|33|0\n21|19|16|16|17|15|13|13|12|12|20|14|14|15|18|17|18|19|20|21|0\n61|60|59|59|62|63|55|54|54|56|57|52|52|51|50|48|48|47|46|44|44|43|43|65|66|42|41|41|39|38|37|36|36|40|69|37|38|39|40|68|42|67|45|45|46|47|49|49|50|51|53|53|58|55|56|57|58|64|60|61|62|63|64|65|66|67|68|69|0\n32|32|31|30|29|27|26|26|24|24|23|23|34|35|21|21|20|20|37|22|22|36|25|25|28|27|28|29|30|31|33|33|34|35|36|37|0\n32|31|31|30|27|27|28|26|26|34|25|24|23|23|22|20|20|21|37|21|22|36|24|25|35|29|28|29|30|33|32|33|34|35|36|37|0\n54|52|51|51|50|50|47|47|45|44|44|41|40|39|38|37|36|36|42|35|33|33|32|30|30|29|29|49|31|31|32|34|34|35|43|37|38|39|40|41|42|43|46|45|46|48|48|49|55|53|52|53|54|55|0\n33|32|31|30|30|29|28|27|26|26|25|24|20|20|21|19|19|23|22|21|22|23|24|25|35|27|28|29|34|31|32|33|34|35|0\n34|34|32|30|30|28|27|27|26|24|23|23|21|20|20|19|19|33|22|21|22|25|24|25|26|29|28|29|31|31|32|33|35|35|0\n81|80|79|79|78|74|74|75|76|77|73|71|71|69|66|65|65|67|64|63|62|61|58|57|57|56|55|55|52|52|51|50|50|49|47|46|46|45|44|43|43|70|44|45|48|47|48|49|54|51|53|53|54|60|56|59|58|59|60|61|62|63|64|68|66|67|68|69|70|72|72|73|83|75|76|77|78|82|80|81|82|83|0\n57|56|56|58|55|54|53|52|49|49|50|48|47|47|60|45|44|43|41|41|40|39|37|36|36|34|33|32|32|35|46|33|34|35|38|37|38|39|40|42|42|43|44|45|46|61|48|51|50|51|52|53|54|55|59|57|58|59|60|61|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n37|35|34|33|32|31|30|27|26|26|25|23|23|24|22|20|20|21|36|21|22|29|24|25|28|27|28|29|30|31|32|33|34|35|36|37|0\n28|28|27|27|26|25|25|23|22|20|20|19|18|17|17|24|18|19|21|21|22|23|24|31|26|30|29|29|30|31|0\n25|23|23|21|20|18|18|17|16|15|14|14|22|15|16|17|19|19|20|21|22|24|24|25|0\n20|20|18|17|16|14|14|13|12|12|19|13|15|15|16|17|18|19|21|21|0\n33|33|32|31|30|29|27|27|28|25|24|22|22|21|20|19|19|26|20|21|23|23|24|25|26|35|28|29|30|31|32|34|34|35|0\n39|37|37|32|32|31|31|30|29|27|26|26|25|24|21|21|22|23|35|36|22|23|24|25|28|27|28|29|30|34|33|33|34|35|36|38|38|39|0\n47|43|42|41|40|39|38|37|36|35|33|32|32|31|28|26|25|25|27|29|30|44|45|46|26|27|28|29|30|31|34|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|0\n58|58|56|55|55|54|54|60|53|51|49|49|50|48|46|46|45|44|44|62|63|39|39|40|37|36|36|38|42|35|34|34|65|35|43|37|38|41|40|41|42|43|64|45|47|47|48|52|50|51|52|53|61|57|56|57|59|59|60|61|62|63|64|65|0\n51|51|50|50|48|46|45|45|44|42|42|41|39|39|38|36|35|34|33|33|32|31|30|29|28|28|49|29|30|31|32|37|34|35|36|37|38|40|40|41|43|43|44|47|46|47|48|49|53|52|52|53|0\n73|71|69|68|68|67|66|61|61|60|59|58|58|63|57|55|55|54|53|53|52|50|49|48|47|46|46|45|42|42|41|40|40|39|38|38|72|39|44|41|43|43|44|45|51|47|48|49|50|51|52|65|54|56|56|57|64|59|60|62|62|63|64|65|66|67|70|69|70|71|72|73|0\n58|55|54|54|56|53|53|52|48|48|49|46|46|45|45|43|42|41|40|38|36|35|35|34|34|33|32|31|31|44|32|33|39|37|36|37|38|39|40|41|42|43|44|51|47|47|50|49|50|51|52|59|57|55|56|57|58|59|0\n28|26|26|27|24|23|21|20|20|19|18|16|16|17|25|17|18|19|22|21|22|23|24|25|29|27|28|29|0\n27|26|26|25|24|24|22|20|20|19|18|17|16|16|23|17|18|19|21|21|22|23|29|25|28|27|28|29|0\n46|45|44|44|43|42|41|40|39|38|37|37|48|49|33|32|31|31|34|30|29|29|28|27|27|51|28|36|30|35|32|33|34|35|36|50|38|39|40|41|42|43|47|45|46|47|48|49|50|51|0\n43|42|42|41|38|37|37|36|36|35|34|33|32|30|30|29|28|28|25|25|24|24|27|26|26|27|45|29|31|31|32|33|34|35|40|39|38|39|40|41|44|43|44|45|0\n29|28|28|30|27|27|26|26|25|23|22|20|20|19|18|18|24|19|21|21|22|23|24|25|33|32|31|29|30|31|32|33|0\n57|56|54|52|52|51|49|49|48|46|44|44|41|41|40|39|39|38|38|37|36|35|34|33|32|31|30|30|55|31|32|33|34|35|36|37|47|43|40|42|42|43|45|45|46|47|48|50|50|51|53|53|54|55|56|57|0\n7|7|6|6|9|8|8|9|0\n25|23|21|21|22|19|18|17|16|15|14|14|20|15|16|17|18|19|20|24|22|23|24|25|0\n23|22|22|21|19|19|20|17|15|15|14|14|18|16|16|17|18|25|20|21|24|23|24|25|0\n19|16|15|14|13|13|12|11|11|18|12|17|14|15|16|17|18|19|0\n35|34|34|33|31|31|30|29|28|28|25|24|24|22|22|21|20|20|27|21|23|23|26|25|26|27|37|29|30|32|32|33|36|35|36|37|0\n38|37|36|36|35|34|33|32|30|29|29|28|26|25|24|24|23|22|21|21|22|23|27|25|26|27|28|31|30|31|32|33|34|35|39|37|38|39|0\n26|25|24|24|23|21|20|20|18|17|16|15|15|19|16|17|18|19|22|21|22|23|27|25|26|27|0\n38|38|36|35|32|32|31|31|30|28|28|26|26|25|23|23|22|21|21|37|22|24|24|25|27|27|29|29|30|34|33|33|34|35|36|37|39|39|0\n13|9|9|10|8|8|12|11|10|11|12|13|0\n64|62|61|61|60|60|59|57|57|56|55|54|53|52|52|66|67|51|50|49|48|46|46|45|44|43|42|40|40|39|37|37|36|36|69|38|38|39|41|41|42|43|44|45|47|47|48|49|50|51|68|53|54|55|56|58|58|59|65|63|62|63|64|65|66|67|68|69|0\n67|66|65|64|64|62|61|61|60|58|58|59|69|70|56|55|55|54|52|52|53|72|73|51|50|48|48|47|44|44|45|42|42|41|40|39|39|75|40|41|43|43|46|45|46|47|49|49|50|51|74|53|54|57|56|57|71|59|60|63|62|63|68|65|66|67|68|69|70|71|72|73|74|75|0\n36|35|34|33|31|31|32|30|29|26|26|25|22|21|21|23|20|20|28|24|22|23|24|25|27|27|28|29|30|37|32|33|34|35|36|37|0\n27|26|26|25|19|19|20|18|18|22|23|17|16|16|29|17|24|21|20|21|22|23|24|25|28|27|28|29|0\n71|70|68|66|65|64|64|62|61|60|58|58|59|57|56|55|55|54|53|50|50|48|47|47|46|44|43|43|42|41|40|39|38|37|37|52|38|39|40|41|42|45|44|45|46|49|48|49|51|51|52|53|54|69|56|57|63|59|60|61|62|63|67|65|66|67|68|69|70|71|0\n47|44|43|40|40|41|42|39|37|34|34|35|36|33|31|30|29|29|28|26|26|25|25|46|27|27|28|32|30|31|32|33|38|35|36|37|38|39|45|41|42|43|44|45|46|47|0\n64|63|63|62|56|56|54|54|55|58|53|49|49|48|46|46|45|45|51|44|43|41|40|40|39|38|38|60|36|34|34|35|37|35|36|37|61|39|42|41|42|43|44|52|47|47|48|50|50|51|52|53|59|55|57|57|58|59|60|61|62|65|64|65|0\n43|41|40|40|42|39|37|37|38|45|35|35|34|33|32|30|29|29|28|27|26|25|25|47|26|27|28|31|30|31|32|33|34|36|36|46|38|39|44|41|42|43|44|45|46|47|0\n7|5|5|6|6|7|0\n7|5|5|6|6|7|0\n30|29|27|27|28|31|26|24|24|23|22|21|20|19|18|18|33|19|20|21|22|23|25|25|26|32|28|29|30|31|32|33|0\n30|30|28|26|26|25|22|21|20|20|23|19|18|17|17|29|18|19|24|21|22|23|24|25|27|27|28|29|31|31|0\n37|37|36|35|33|33|34|39|28|26|26|27|29|30|31|24|24|23|22|22|41|23|25|25|32|27|28|29|30|31|32|40|34|35|36|38|38|39|40|41|0\n24|23|23|20|20|19|18|15|15|16|14|14|22|17|16|17|18|19|21|21|22|25|24|25|0\n48|46|45|44|44|43|42|42|49|41|40|38|38|37|36|35|35|51|34|32|32|31|30|28|28|29|53|29|30|31|33|33|34|52|36|37|39|39|40|41|50|43|47|45|46|47|48|49|50|51|52|53|0\n39|39|38|37|36|35|34|33|32|31|30|30|27|27|25|24|24|23|22|22|29|23|26|25|26|28|28|29|41|31|32|33|34|35|36|37|38|40|40|41|0\n23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0\n31|31|30|29|29|27|26|25|24|23|22|20|19|19|18|18|28|21|20|21|22|23|24|25|26|27|28|33|30|32|32|33|0\n39|38|36|36|37|35|34|34|41|32|32|31|30|24|24|25|26|27|28|23|23|43|29|25|26|27|28|29|30|31|33|33|42|35|40|37|38|39|40|41|42|43|0\n58|54|54|55|53|52|52|50|50|51|49|48|44|43|43|45|42|40|40|39|38|37|36|34|34|33|32|31|31|47|32|33|35|35|36|37|38|39|41|41|42|46|44|45|46|47|48|49|59|51|57|53|56|55|56|57|58|59|0\n27|25|24|23|22|19|19|20|18|17|16|15|15|26|16|17|18|21|20|21|22|23|24|25|26|27|0\n59|59|58|56|55|55|52|52|53|51|51|48|48|45|45|44|43|42|42|41|37|37|36|35|35|39|34|32|32|33|50|33|34|40|36|38|38|39|40|41|47|43|44|46|46|47|49|49|50|61|54|53|54|57|56|57|58|60|60|61|0\n25|24|24|23|22|21|21|19|18|17|16|15|15|20|16|17|18|19|20|27|22|23|26|25|26|27|0\n14|13|12|12|11|9|9|10|10|11|15|13|14|15|0\n40|40|38|34|33|32|31|31|30|29|29|36|27|26|25|24|24|23|22|22|39|23|28|25|26|27|28|37|30|35|32|33|34|35|36|37|38|39|41|41|0\n36|35|34|34|33|31|31|28|27|26|25|24|24|23|22|21|20|20|30|21|22|23|29|25|26|27|28|29|30|32|32|33|37|35|36|37|0\n52|51|50|48|47|46|46|45|43|43|42|41|41|40|38|38|36|35|33|32|32|31|30|28|28|29|37|29|30|31|34|33|34|35|36|37|39|39|40|53|42|44|44|45|49|47|48|49|50|51|52|53|0\n16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0\n39|39|38|37|37|41|36|34|33|32|31|30|30|29|28|27|26|25|23|23|24|43|24|25|26|27|28|29|35|31|32|33|34|35|36|42|38|40|40|41|42|43|0\n34|33|32|31|31|27|26|26|23|23|24|21|21|19|19|20|29|30|20|22|22|25|24|25|28|27|28|29|30|35|32|33|34|35|0\n30|28|27|25|25|23|23|22|21|21|20|20|18|17|17|19|18|19|31|29|22|24|24|26|26|27|28|29|30|31|0\n29|27|26|25|22|21|20|20|23|19|18|17|16|16|28|17|18|19|24|21|22|23|24|25|26|27|28|29|0\n41|39|36|36|35|34|34|33|32|31|30|29|28|27|25|25|24|23|22|22|40|23|24|26|26|27|28|29|30|31|32|33|38|35|37|37|38|39|40|41|0\n37|36|36|35|34|33|32|31|30|30|28|27|26|25|24|23|21|21|22|29|22|23|24|25|26|27|28|29|39|31|32|33|34|35|38|37|38|39|0\n23|20|20|16|15|15|17|18|14|13|13|22|14|19|16|17|18|19|21|21|22|23|0\n26|24|24|25|21|21|20|18|18|17|16|15|15|23|16|17|19|19|20|22|22|23|27|25|26|27|0\n21|19|18|17|16|15|13|13|12|12|20|14|14|15|16|17|18|19|20|21|0\n27|26|26|24|23|23|22|22|21|20|17|17|16|16|19|18|18|19|20|21|29|25|24|25|28|27|28|29|0\n49|48|48|47|47|44|43|42|41|40|40|39|38|37|36|32|32|33|31|30|30|29|28|27|27|46|28|29|35|31|34|33|34|35|36|37|38|39|45|41|42|43|44|45|46|51|50|49|50|51|0\n18|18|16|14|14|13|11|11|12|17|12|13|15|15|16|17|19|19|0\n33|33|32|31|31|27|26|25|24|23|23|28|22|20|20|19|19|30|21|21|22|29|24|25|26|27|28|29|30|35|32|34|34|35|0\n45|42|42|41|39|38|38|37|36|32|31|31|33|30|29|28|28|27|26|25|24|24|44|25|26|27|35|29|30|34|32|33|34|35|36|37|40|39|40|41|43|43|44|45|0\n19|19|18|18|16|15|13|12|12|14|17|13|14|15|16|17|21|20|20|21|0\n27|24|22|22|21|20|19|19|18|17|16|15|15|26|16|17|18|25|20|21|23|23|24|25|26|27|0\n44|42|42|39|39|38|37|37|36|35|34|33|31|31|30|30|29|28|27|25|24|24|26|25|26|27|28|29|45|32|32|33|34|35|36|41|38|40|40|41|43|43|44|45|0\n44|43|42|41|38|37|37|39|36|35|31|31|30|30|33|28|27|27|26|25|24|24|45|25|26|29|28|29|34|32|32|33|34|35|36|40|38|39|40|41|42|43|44|45|0\n39|37|35|34|34|33|30|30|31|25|25|26|24|24|28|22|22|21|21|38|23|23|29|27|26|27|28|29|32|31|32|33|36|35|36|37|38|39|0\n31|31|30|29|29|33|27|27|26|25|24|23|21|20|20|19|19|35|22|21|22|23|24|25|26|28|28|34|30|32|32|33|34|35|0\n35|34|34|33|33|31|28|28|29|27|26|25|23|22|22|21|20|20|32|21|24|23|24|25|26|27|30|29|30|31|32|37|36|35|36|37|0\n50|50|48|46|45|45|44|42|42|40|40|39|36|35|34|32|32|33|37|30|30|29|27|27|28|49|28|29|31|31|38|33|34|35|36|37|38|39|41|41|43|43|44|47|46|47|48|49|51|51|0\n52|51|51|53|50|50|46|45|44|44|47|43|40|39|39|41|36|35|35|34|33|32|31|30|30|29|29|49|38|31|32|33|34|37|36|37|38|42|40|41|42|43|48|45|46|47|48|49|55|54|52|53|54|55|0\n34|33|31|30|30|29|28|27|27|26|25|24|22|22|21|20|19|19|20|21|23|23|24|25|26|35|28|29|32|31|32|33|34|35|0\n35|33|32|30|29|29|27|27|26|25|24|23|22|21|20|19|19|34|20|21|22|23|24|25|26|28|28|31|30|31|32|33|34|35|0\n43|42|40|39|38|38|37|36|36|44|45|35|31|31|30|29|28|28|33|26|26|25|25|47|27|27|34|29|30|32|32|33|34|35|46|37|41|39|40|41|42|43|44|45|46|47|0\n74|73|71|71|70|70|69|67|67|62|61|60|59|58|58|63|64|65|56|56|55|54|54|76|53|51|50|49|48|47|45|45|44|42|42|40|40|41|52|41|43|43|44|46|46|47|48|49|50|51|52|53|77|55|57|57|66|59|60|61|62|63|64|65|66|68|68|69|75|72|72|73|74|75|76|77|0\n62|61|61|63|52|52|53|51|51|55|50|49|48|47|46|46|57|58|59|45|43|42|42|41|40|36|36|37|38|35|34|34|65|35|39|37|38|39|40|41|44|43|44|45|60|47|48|49|50|56|54|53|54|55|56|57|58|59|60|64|62|63|64|65|0\n40|39|37|37|35|35|36|33|31|30|29|29|28|27|25|25|24|23|22|22|34|23|24|26|26|27|28|32|30|31|32|33|34|41|36|38|38|39|40|41|0\n35|33|33|30|30|28|26|24|24|25|22|22|23|21|20|19|19|32|20|21|29|23|27|25|26|27|28|29|31|31|32|34|34|35|0\n27|26|24|24|21|20|19|19|18|17|16|15|15|23|16|17|18|22|20|21|22|23|25|25|26|27|0\n28|27|27|26|24|23|22|22|21|19|18|17|16|16|20|17|18|19|20|21|25|23|24|25|26|29|28|29|0\n19|17|16|15|14|12|12|11|11|18|13|13|14|15|16|17|18|19|0\n45|44|41|41|42|40|39|38|37|36|36|46|47|35|33|32|32|31|30|29|26|26|27|28|49|27|28|29|30|31|34|33|34|35|48|37|38|39|40|43|42|43|44|45|46|47|48|49|0\n32|32|28|27|27|29|26|25|24|21|20|20|22|19|18|18|31|19|23|21|22|23|24|25|26|30|28|29|30|31|33|33|0\n22|22|20|20|21|24|25|19|18|17|16|15|15|27|16|17|18|19|26|21|23|23|24|25|26|27|0\n27|23|22|21|20|20|24|19|18|17|16|15|15|26|16|17|18|19|25|21|22|23|24|25|26|27|0\n19|16|16|14|13|13|12|11|11|18|12|15|14|15|17|17|18|19|0\n30|29|27|26|26|25|25|23|22|21|19|19|18|17|17|24|18|20|20|21|22|23|24|31|28|27|28|29|30|31|0\n23|22|20|20|18|17|15|15|14|13|13|19|14|16|16|17|18|19|21|21|22|23|0\n45|43|42|41|39|38|37|36|36|35|33|33|32|31|30|29|28|27|26|25|24|24|44|25|26|27|28|29|30|31|32|34|34|35|40|37|38|39|40|41|42|43|44|45|0\n40|39|38|36|36|37|35|33|33|31|30|27|26|26|28|24|24|23|22|22|32|23|25|25|29|27|28|29|30|31|32|34|34|35|41|37|38|39|40|41|0\n20|16|16|15|14|14|18|19|12|12|13|13|21|15|17|17|18|19|20|21|0\n16|15|14|12|12|11|10|10|17|11|13|13|14|15|16|17|0\n47|46|45|43|43|42|42|48|49|40|40|39|38|37|35|34|33|32|32|30|29|29|28|27|27|51|28|31|30|31|36|33|34|35|36|37|38|39|41|41|50|44|44|45|46|47|48|49|50|51|0\n43|40|40|37|37|36|36|35|33|33|31|31|30|29|28|27|24|24|25|23|23|42|26|25|26|27|28|29|30|32|32|34|34|35|39|38|38|39|41|41|42|43|0\n25|24|23|22|21|21|20|18|18|17|16|16|27|28|29|17|19|19|20|26|22|23|24|25|26|27|28|29|0\n39|37|36|34|32|31|31|30|26|25|25|27|24|23|23|29|22|21|21|38|22|35|24|28|26|27|28|29|30|33|32|33|34|35|36|37|38|39|0\n54|54|52|48|48|47|46|45|44|43|42|41|41|50|40|38|38|36|35|34|32|32|31|30|30|29|29|53|37|31|33|33|34|35|36|37|39|39|40|51|42|43|44|45|46|47|49|49|50|51|52|53|55|55|0\n21|20|20|19|19|17|14|14|15|13|13|18|16|15|16|17|18|23|22|21|22|23|0\n43|42|40|39|38|37|35|34|33|33|31|31|30|29|27|27|26|25|24|23|23|41|24|25|26|28|28|29|30|32|32|36|34|35|36|37|38|39|40|41|42|43|0\n59|59|58|57|57|55|54|53|49|48|48|47|46|46|51|44|43|42|42|39|38|37|36|36|40|35|34|33|32|32|56|33|34|35|41|37|38|39|40|41|45|43|44|45|52|47|50|49|50|51|52|53|54|55|56|61|58|60|60|61|0\n48|48|43|43|44|41|41|40|40|39|38|37|35|34|34|33|30|30|31|28|28|27|26|26|47|27|29|29|32|31|32|33|36|35|36|37|38|39|46|42|42|45|44|45|46|47|49|49|0\n22|20|20|19|18|17|17|16|13|13|14|15|14|15|16|23|18|19|21|21|22|23|0\n28|28|29|25|24|24|26|23|22|20|20|19|18|17|17|31|18|19|21|21|22|23|27|25|26|27|30|29|30|31|0\n58|57|56|56|55|54|52|52|51|49|48|48|47|46|45|45|60|61|43|43|42|40|40|39|38|37|36|35|34|33|33|63|34|35|36|37|38|39|41|41|42|44|44|62|46|47|50|49|50|51|53|53|54|55|59|57|58|59|60|61|62|63|0\n38|37|36|35|35|34|33|28|27|27|29|30|26|24|24|23|22|21|21|32|22|23|25|25|26|31|28|29|30|31|32|33|34|39|36|37|38|39|0\n21|20|19|18|17|16|15|14|13|12|12|13|14|15|16|17|18|19|20|21|0\n36|35|35|34|33|32|31|30|26|25|25|24|23|23|28|22|21|20|20|21|22|29|24|27|26|27|28|29|30|31|32|33|34|37|36|37|0\n80|79|77|76|76|75|73|71|71|72|70|68|68|69|67|66|63|62|61|60|59|59|58|57|55|55|54|52|52|51|50|49|48|47|46|45|44|43|42|42|65|43|44|45|46|47|48|49|50|51|53|53|54|56|56|57|58|64|60|61|62|63|64|65|66|67|81|69|70|74|72|73|74|75|78|77|78|79|80|81|0\n25|23|21|21|19|18|17|17|16|15|14|14|24|15|16|20|18|19|20|22|22|23|24|25|0\n30|29|29|28|26|25|22|21|21|20|20|19|18|17|17|27|18|19|24|23|22|23|24|25|26|27|28|31|30|31|0\n45|44|44|43|43|42|41|40|39|38|37|36|36|48|49|35|33|33|32|29|28|28|30|27|27|51|31|29|30|31|32|34|34|35|50|37|38|39|40|41|42|47|46|45|46|47|48|49|50|51|0\n32|32|29|28|25|25|24|24|23|22|21|21|20|19|18|18|31|19|20|30|22|23|27|26|26|27|28|29|30|31|33|33|0\n27|25|19|19|20|21|22|18|16|15|15|17|24|26|16|17|18|23|20|21|22|23|24|25|26|27|0\n35|35|33|33|32|31|30|29|26|26|25|25|24|23|20|20|21|22|37|21|22|23|24|28|27|27|28|29|30|31|32|34|34|36|36|37|0\n17|16|15|14|14|13|12|11|11|19|12|13|18|15|16|17|18|19|0\n63|61|60|59|58|56|56|55|53|53|52|50|50|49|47|46|46|45|40|39|38|38|41|37|36|36|43|35|34|33|33|62|34|35|44|37|42|39|40|41|42|43|44|45|48|47|48|49|51|51|52|54|54|55|57|57|58|59|60|61|62|63|0\n37|36|34|34|33|32|31|28|28|29|27|27|38|39|25|25|24|23|22|22|41|23|24|26|26|40|30|29|30|31|32|33|35|35|36|37|38|39|40|41|0\n38|37|35|35|34|32|32|31|31|30|29|26|26|24|24|23|21|21|22|28|22|23|25|25|27|27|28|29|30|39|33|33|34|36|36|37|38|39|0\n21|19|17|17|16|15|14|13|12|12|20|13|14|15|16|18|18|19|20|21|0\n68|67|66|65|64|64|62|60|58|58|57|56|55|54|53|52|52|61|51|48|46|46|45|43|43|42|40|40|39|36|36|37|38|49|50|37|38|39|41|41|42|44|44|45|47|47|48|49|50|51|63|53|54|55|56|57|59|59|60|61|62|63|69|65|66|67|68|69|0\n16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0\n49|48|47|46|46|50|45|45|52|42|42|34|33|32|31|31|35|30|30|37|38|39|40|29|28|28|44|29|41|36|32|33|34|35|36|37|38|39|40|41|43|43|44|53|51|47|48|49|50|51|52|53|0\n54|53|53|48|47|46|46|49|42|42|43|44|41|41|51|39|37|37|33|33|34|32|32|30|30|29|29|40|31|31|36|35|34|35|36|38|38|39|40|52|45|43|44|45|50|47|48|49|50|51|52|55|54|55|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n35|33|33|32|32|31|31|29|28|27|26|24|24|23|21|21|20|20|30|22|22|23|25|25|26|27|28|29|30|37|36|34|34|35|36|37|0\n13|12|11|9|8|8|10|9|10|11|12|13|0\n33|30|29|29|28|24|23|23|25|26|22|21|20|19|18|18|32|19|20|21|22|27|24|25|26|27|28|31|30|31|32|33|0\n15|14|12|11|10|9|9|13|10|11|12|13|14|15|0\n34|34|32|30|29|29|28|27|26|25|23|23|22|21|20|19|19|33|20|21|22|24|24|25|26|27|28|31|30|31|32|33|35|35|0\n40|39|38|37|36|34|34|33|33|41|42|43|31|30|30|29|27|26|26|24|24|25|45|25|28|27|28|29|32|31|32|44|35|35|36|37|38|39|40|41|42|43|44|45|0\n57|54|52|51|51|49|49|47|47|46|45|44|43|43|41|41|40|38|37|37|36|34|33|33|32|31|30|30|56|31|32|35|34|35|36|39|38|39|40|42|42|55|44|45|46|48|48|50|50|53|52|53|54|55|56|57|0\n58|58|57|56|53|53|52|51|48|48|47|47|45|45|43|42|41|40|40|39|38|37|36|35|34|32|32|31|31|55|33|33|34|35|36|37|38|39|44|41|42|43|44|46|46|50|49|49|50|51|52|54|54|55|56|57|59|59|0\n24|23|22|21|20|20|18|17|15|14|14|16|19|15|16|17|18|19|25|21|22|23|24|25|0\n23|23|22|21|21|18|18|17|16|15|14|14|20|15|16|17|19|19|20|25|22|24|24|25|0\n52|51|50|49|48|47|47|53|44|44|45|43|42|41|40|40|39|38|33|33|31|31|32|35|30|29|29|37|30|36|32|34|34|35|36|37|38|39|55|41|42|43|46|45|46|54|48|49|50|51|52|53|54|55|0\n42|41|40|40|39|38|38|36|36|33|31|31|32|30|30|29|27|27|26|25|24|24|45|25|26|28|28|29|35|34|32|33|34|35|37|37|44|39|43|41|42|43|44|45|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n55|54|53|52|51|51|56|57|50|48|47|47|43|43|42|41|41|45|40|39|36|36|37|35|34|32|32|31|31|59|33|33|34|35|38|37|38|39|40|46|42|44|44|45|46|49|48|49|50|58|52|53|54|55|56|57|58|59|0\n58|56|55|53|53|54|52|51|51|59|49|49|44|43|43|45|42|41|39|39|37|37|38|47|35|34|33|33|32|32|61|36|34|35|36|48|38|40|40|41|42|46|44|45|46|47|48|50|50|60|52|57|54|55|56|57|58|59|60|61|0\n52|50|50|48|47|46|46|45|41|38|38|39|40|37|36|36|43|34|33|32|32|31|30|29|28|28|53|29|30|31|35|33|34|35|44|37|42|39|40|41|42|43|44|45|49|47|48|49|51|51|52|53|0\n69|67|66|66|68|65|63|61|60|59|58|57|57|56|55|55|64|71|54|53|52|50|50|49|48|46|45|45|44|42|41|40|40|39|38|38|73|39|43|41|42|43|44|47|46|47|48|49|51|51|52|53|54|72|56|62|58|59|60|61|62|63|64|65|70|67|68|69|70|71|72|73|0\n46|45|44|43|42|41|40|40|47|48|49|39|38|37|33|33|34|35|31|29|29|30|28|27|27|51|28|32|30|31|32|36|34|35|36|37|38|39|50|41|42|43|44|45|46|47|48|49|50|51|0\n15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0\n35|33|32|32|31|30|29|28|28|36|37|27|26|24|23|23|22|21|21|39|22|25|24|25|26|27|38|29|30|31|34|33|34|35|36|37|38|39|0\n40|40|38|37|37|36|34|33|33|32|31|30|28|28|27|26|25|23|23|22|22|24|24|25|26|27|29|29|30|31|32|35|34|35|36|39|38|39|41|41|0\n31|31|30|29|29|27|26|25|24|23|22|21|20|19|18|18|28|19|20|21|22|23|24|25|26|27|28|33|30|32|32|33|0\n45|45|46|44|38|38|39|37|36|35|34|33|33|41|32|29|29|28|28|27|26|25|25|43|26|27|31|30|30|31|32|42|34|35|36|37|40|39|40|41|42|43|44|47|46|47|0\n26|25|24|21|21|20|19|18|16|16|17|23|15|15|27|17|18|19|20|22|22|23|24|25|26|27|0\n70|70|69|67|67|66|64|63|63|62|60|60|59|59|72|73|58|57|56|55|54|53|51|51|49|48|48|47|44|44|45|43|42|41|40|39|39|75|40|41|42|43|46|45|46|47|50|49|50|52|52|53|54|55|56|57|58|74|61|61|62|65|64|65|66|68|68|69|71|71|72|73|74|75|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n15|15|14|13|12|11|11|10|10|17|12|13|14|16|16|17|0\n36|34|34|33|32|31|31|30|29|27|26|25|24|23|21|21|20|20|28|22|22|23|24|25|26|27|28|29|30|37|32|33|35|35|36|37|0\n14|14|15|13|12|11|10|10|17|11|12|13|16|15|16|17|0\n69|66|65|65|64|61|61|55|55|56|54|54|58|59|53|53|52|51|49|49|48|44|44|45|42|42|43|47|40|38|37|36|36|39|41|37|38|39|40|41|68|43|46|45|46|47|48|50|50|51|52|63|60|57|56|57|58|59|60|62|62|63|64|67|66|67|68|69|0\n61|61|60|59|56|55|55|54|53|53|52|51|50|49|49|48|45|44|44|43|41|40|40|39|38|37|34|34|35|33|33|47|36|35|36|37|38|39|42|41|42|43|46|45|46|47|48|63|50|51|52|58|54|57|56|57|58|59|60|62|62|63|0\n21|21|19|19|20|17|16|15|14|13|13|18|14|15|16|17|18|23|20|22|22|23|0\n44|44|43|42|37|37|38|39|34|33|33|35|32|31|30|28|28|27|26|25|24|24|41|25|26|27|29|29|30|31|32|36|34|35|36|40|38|39|40|41|42|43|45|45|0\n36|35|35|33|31|30|30|29|26|26|27|25|23|22|21|21|20|20|34|24|22|23|24|25|28|27|28|29|32|31|32|33|34|37|36|37|0\n26|24|24|25|23|21|21|19|18|17|16|15|15|20|16|17|18|19|20|22|22|23|27|25|26|27|0\n35|34|34|36|32|31|30|29|25|24|24|23|22|21|21|27|20|20|33|28|22|23|26|25|26|27|28|29|30|31|32|33|37|35|36|37|0\n17|17|16|16|14|13|11|11|12|15|12|13|14|15|19|18|18|19|0\n8|7|6|6|9|7|8|9|0\n22|20|20|19|18|18|17|16|14|13|13|15|14|15|16|17|23|19|21|21|22|23|0\n33|32|30|26|25|24|22|22|21|20|20|27|19|19|18|18|31|29|28|21|23|23|24|25|26|27|28|29|30|31|32|33|0\n36|36|35|33|33|32|28|28|29|27|25|25|24|22|21|21|20|20|31|23|22|23|24|26|26|27|30|29|30|31|32|34|34|35|37|37|0\n37|37|36|33|32|31|30|30|34|28|27|27|26|25|25|24|22|21|21|23|22|23|24|39|26|29|28|29|35|31|32|33|34|35|36|38|38|39|0\n5|4|4|5|0\n55|54|54|53|52|51|51|48|46|45|45|44|43|43|42|41|40|38|38|37|32|32|33|31|31|35|30|30|50|36|34|33|34|35|36|37|39|39|40|41|42|49|44|47|46|47|48|49|50|57|52|53|56|55|56|57|0\n11|9|8|7|7|10|8|9|10|11|0\n16|16|14|12|11|11|10|10|15|13|12|13|14|15|17|17|0\n27|24|24|23|22|21|21|19|16|16|17|15|15|20|18|17|18|19|20|26|22|23|25|25|26|27|0\n35|29|29|30|31|32|28|28|34|26|26|25|23|23|22|21|20|20|37|21|22|24|24|25|27|27|36|33|30|31|32|33|34|35|36|37|0\n35|33|33|32|31|30|29|27|27|26|25|25|36|37|23|23|22|21|21|39|22|24|24|38|26|28|28|29|30|31|32|34|34|35|36|37|38|39|0\n32|31|31|28|27|27|26|24|24|23|22|21|20|19|18|18|30|19|20|21|22|23|25|25|26|29|28|29|30|33|32|33|0\n24|24|23|22|22|26|27|21|19|19|18|16|16|17|29|17|18|20|20|21|28|23|25|25|26|27|28|29|0\n41|40|40|38|37|37|36|35|34|33|32|31|30|29|29|27|26|25|24|23|23|28|24|25|26|27|28|43|30|31|32|33|34|35|36|39|38|39|42|41|42|43|0\n35|33|33|32|32|31|29|29|28|22|22|23|21|21|25|26|20|20|37|27|24|23|24|25|26|27|28|30|30|31|36|34|34|35|36|37|0\n31|30|29|28|27|26|25|24|23|22|22|32|33|21|19|19|20|35|20|21|34|23|24|25|26|27|28|29|30|31|32|33|34|35|0\n24|24|22|20|19|19|18|17|16|14|14|15|23|15|16|17|18|21|20|21|22|23|25|25|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n57|55|52|52|51|51|50|47|46|46|45|45|44|43|42|41|40|40|39|38|36|34|34|33|32|30|30|31|37|31|32|33|35|35|36|37|38|39|56|41|42|43|44|49|48|47|48|49|50|54|53|53|54|55|56|57|0\n10|9|8|7|7|11|8|9|10|11|0\n67|65|64|64|63|62|62|58|58|57|55|55|54|54|60|51|51|47|47|46|45|43|43|42|41|41|49|40|38|38|39|37|36|36|69|37|53|39|40|50|42|44|44|45|46|48|48|49|50|52|52|53|61|56|56|57|59|59|60|61|68|63|66|65|66|67|68|69|0\n42|41|37|37|38|36|34|34|33|32|31|31|30|30|28|27|25|25|24|23|23|29|24|26|26|27|28|29|43|40|32|33|35|35|36|39|38|39|40|41|42|43|0\n29|26|25|25|24|23|23|21|20|19|17|17|16|16|22|18|18|19|20|21|22|28|24|27|26|27|28|29|0\n35|34|34|36|31|31|32|30|29|28|27|27|38|23|23|22|21|21|25|26|22|24|24|25|26|39|28|29|30|33|32|33|37|35|36|37|38|39|0\n23|22|18|18|19|17|16|15|14|13|13|21|14|15|16|17|20|19|20|21|22|23|0\n40|39|38|38|37|36|34|31|30|30|32|26|26|25|25|28|23|22|22|24|35|23|24|29|27|27|28|29|33|31|32|33|34|35|36|37|41|39|40|41|0\n10|10|7|7|8|9|8|9|11|11|0\n38|37|37|36|34|33|33|31|30|28|27|25|24|24|26|23|21|21|22|32|22|23|29|25|26|27|28|29|30|31|32|35|34|35|36|39|38|39|0\n43|42|41|39|39|38|37|36|35|35|44|45|34|32|32|31|30|29|27|26|25|25|28|47|26|27|28|29|30|31|33|33|34|46|36|37|38|40|40|41|42|43|44|45|46|47|0\n39|38|34|34|35|36|37|33|33|31|31|28|27|27|26|25|24|23|22|22|30|23|24|25|26|29|28|29|30|32|32|41|40|35|36|37|38|39|40|41|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n38|37|37|39|35|32|32|31|31|30|30|29|28|27|27|25|24|23|22|22|26|23|24|25|26|41|28|29|36|34|33|33|34|35|36|40|38|39|40|41|0\n96|95|94|93|92|87|85|84|84|83|82|81|79|79|78|77|76|76|75|72|72|71|70|70|74|89|90|69|68|67|66|66|65|64|63|62|61|59|59|60|98|99|58|56|56|55|54|53|52|52|101|53|54|55|57|57|58|100|60|61|62|63|64|65|97|67|68|69|91|71|73|73|74|75|88|77|78|80|80|81|82|83|86|85|86|87|88|89|90|91|92|93|94|95|96|97|98|99|100|101|0\n16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0\n50|49|48|45|45|46|44|42|42|41|40|39|38|38|37|36|35|33|33|32|32|52|53|30|30|29|29|55|31|31|54|34|34|35|36|37|51|39|40|41|43|43|44|47|46|47|48|49|50|51|52|53|54|55|0\n22|22|16|16|15|14|14|18|19|13|13|21|20|15|17|17|18|19|20|21|23|23|0\n61|59|58|57|55|55|54|53|51|50|50|49|48|46|45|45|44|43|42|41|41|40|39|38|36|35|34|33|32|32|37|33|34|35|36|37|38|39|40|60|42|43|44|47|46|47|48|49|52|51|52|53|54|56|56|57|58|59|60|61|0\n46|45|42|42|43|44|41|40|38|37|35|34|33|33|32|30|29|29|28|27|26|25|25|39|26|27|28|31|30|31|32|36|34|35|36|37|38|39|40|41|47|43|44|45|46|47|0\n68|65|64|63|62|61|59|58|58|57|56|55|55|54|54|53|50|49|49|51|46|46|47|45|44|44|43|41|38|38|36|36|37|40|42|37|39|39|40|41|42|43|69|45|48|47|48|52|50|51|52|53|67|66|56|57|60|59|60|61|62|63|64|65|66|67|68|69|0\n38|37|37|36|35|34|32|32|31|31|40|41|30|29|28|26|26|25|23|23|24|43|24|25|27|27|28|29|30|42|33|33|34|35|36|39|38|39|40|41|42|43|0\n40|38|37|37|36|36|35|34|31|31|24|24|25|23|23|27|28|29|22|22|33|30|26|25|26|27|28|29|30|32|32|33|34|35|41|39|38|39|40|41|0\n47|45|44|41|41|40|40|43|39|37|37|35|34|33|32|29|29|30|28|27|26|25|25|36|26|27|28|31|30|31|32|33|34|35|36|38|38|39|46|42|42|43|44|45|46|47|0\n40|40|36|36|37|33|32|31|31|34|29|29|27|27|25|25|24|23|22|22|39|23|24|26|26|28|28|30|30|35|32|33|34|35|38|37|38|39|41|41|0\n33|32|32|31|30|29|28|28|27|26|24|23|22|21|20|19|19|25|20|21|22|23|24|25|26|27|35|29|30|31|34|33|34|35|0\n61|59|59|58|53|52|52|54|55|56|51|50|50|62|63|49|47|45|44|44|43|41|41|40|40|38|36|35|34|34|37|39|65|35|36|37|38|39|48|42|42|43|46|45|46|47|48|49|64|51|57|53|54|55|56|57|58|60|60|61|62|63|64|65|0\n75|74|70|69|68|66|66|65|64|59|59|58|58|57|56|56|62|55|54|53|52|51|50|50|71|72|48|48|46|46|45|44|43|43|76|77|42|41|41|79|42|78|44|45|47|47|49|49|73|51|52|53|54|55|63|57|61|60|60|61|62|63|64|65|67|67|68|69|70|71|72|73|74|75|76|77|78|79|0\n48|48|47|46|45|43|43|42|41|40|40|50|36|36|35|34|34|33|31|30|30|29|28|27|27|39|28|29|32|31|32|33|38|35|37|37|38|39|51|41|42|44|44|45|46|47|49|49|50|51|0\n33|32|32|31|30|29|29|28|28|36|37|27|26|25|24|23|22|21|21|39|22|23|24|25|26|27|38|35|30|31|34|33|34|35|36|37|38|39|0\n58|55|55|54|53|53|52|50|49|49|48|47|46|45|43|42|42|41|39|39|38|37|36|36|35|33|32|31|31|34|32|33|34|35|59|37|38|40|40|41|44|43|44|45|46|47|48|51|50|51|52|57|54|56|56|57|58|59|0\n35|33|32|31|30|29|26|25|23|23|22|22|21|20|20|19|19|34|28|21|27|24|24|25|26|27|28|29|30|31|32|33|34|35|0\n34|33|32|30|27|27|28|29|26|25|24|22|21|21|20|19|19|35|20|23|22|23|24|25|26|31|28|29|30|31|32|33|34|35|0\n10|9|8|7|7|11|8|9|10|11|0\n72|72|68|66|66|65|64|63|62|62|69|60|56|55|55|57|58|54|54|52|51|50|49|49|47|47|46|45|43|43|42|40|40|39|38|38|71|39|41|41|42|44|44|45|46|48|48|53|50|51|52|53|61|59|56|57|58|59|60|61|70|63|64|65|67|67|68|69|70|71|73|73|0\n45|44|44|43|42|42|40|39|37|37|36|34|33|33|30|28|27|27|26|26|31|25|25|41|32|29|28|29|30|31|32|35|34|35|36|38|38|39|40|41|47|43|46|45|46|47|0\n30|29|29|31|28|28|27|25|24|24|22|21|20|18|18|19|23|19|20|21|22|23|26|25|26|27|33|32|30|31|32|33|0\n27|24|22|22|21|21|20|17|16|16|18|15|15|26|19|17|18|19|20|25|23|23|24|25|26|27|0\n30|30|29|29|32|33|28|26|26|24|23|23|22|21|20|19|19|35|20|21|22|25|24|25|27|27|28|34|31|31|32|33|34|35|0\n21|19|18|14|14|15|13|13|12|12|20|17|16|15|16|17|18|19|20|21|0\n29|29|30|26|24|24|25|23|20|19|19|21|18|17|17|28|18|22|20|21|22|23|27|25|26|27|28|31|30|31|0\n23|23|22|22|20|19|18|17|15|14|14|16|21|15|16|17|18|19|20|21|25|24|24|25|0\n65|61|60|60|59|58|58|63|56|56|54|54|53|53|50|50|49|47|47|46|44|44|43|42|41|41|52|39|38|37|36|35|35|40|36|37|38|39|40|67|42|43|45|45|46|48|48|49|51|51|52|66|55|55|57|57|64|59|62|61|62|63|64|65|66|67|0\n20|19|19|16|15|14|13|13|12|12|18|17|14|15|16|17|18|21|20|21|0\n46|46|45|43|43|42|40|40|38|38|39|37|36|36|49|34|34|32|32|31|30|29|28|27|27|51|28|29|30|31|33|33|35|35|50|37|48|39|41|41|42|44|44|45|47|47|48|49|50|51|0\n37|35|34|33|31|29|29|28|27|25|25|24|24|23|22|21|20|20|36|21|22|23|32|26|26|27|28|30|30|31|32|33|34|35|36|37|0\n59|58|57|56|55|54|53|52|52|60|50|50|48|47|47|46|46|62|45|45|64|65|43|43|42|41|40|39|38|36|36|35|35|67|37|37|38|39|40|41|42|44|44|66|63|49|48|49|51|51|61|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|0\n16|15|14|14|13|12|11|10|10|11|12|13|17|15|16|17|0\n50|49|47|47|46|45|45|43|42|40|39|38|38|37|35|34|33|33|32|31|30|28|28|27|27|44|29|29|30|31|32|36|34|35|36|37|41|39|40|41|42|43|44|51|46|48|48|49|50|51|0\n16|15|14|14|13|11|10|10|12|11|12|13|17|15|16|17|0\n23|20|19|19|18|16|16|14|14|13|13|22|15|15|17|17|18|21|20|21|22|23|0\n9|9|8|7|7|11|8|10|10|11|0\n42|42|43|41|41|45|39|38|37|36|35|33|33|32|31|31|30|28|27|27|25|25|26|47|26|29|28|29|30|40|32|34|34|35|36|37|38|39|40|46|44|43|44|45|46|47|0\n67|60|60|61|59|59|63|64|58|58|66|57|57|53|53|54|52|51|49|48|46|46|47|44|41|40|40|42|43|39|38|37|36|36|56|37|38|39|45|41|42|43|44|45|50|47|48|49|50|51|52|55|54|55|56|69|68|65|62|61|62|63|64|65|66|67|68|69|0\n23|19|19|20|18|17|16|15|14|13|13|22|14|15|16|17|18|21|20|21|22|23|0\n51|50|49|48|46|46|45|43|43|42|38|37|37|36|35|35|40|33|33|32|31|31|52|53|30|29|29|55|30|54|32|34|34|41|36|39|38|39|40|41|42|44|44|45|47|47|48|49|50|51|52|53|54|55|0\n42|41|40|39|39|38|36|35|32|31|30|30|33|29|28|28|26|25|24|23|23|27|24|25|26|27|37|29|34|31|32|33|34|35|36|37|38|43|40|41|42|43|0\n56|54|54|53|52|49|48|48|47|45|45|44|43|42|41|40|40|39|38|38|37|35|34|34|32|31|30|30|33|31|32|33|36|35|36|37|57|39|51|41|42|43|44|46|46|47|50|49|50|51|52|53|55|55|56|57|0\n17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0\n10|9|8|7|7|11|8|9|10|11|0\n57|55|55|52|50|49|48|48|46|46|44|43|42|40|40|39|39|38|35|35|36|34|32|32|31|30|30|53|54|31|33|33|34|37|36|37|38|45|41|41|42|43|44|45|47|47|51|49|50|51|52|53|54|56|56|57|0\n48|47|45|44|43|42|42|40|40|38|37|37|36|35|32|32|31|31|30|28|28|27|26|26|49|27|29|29|30|34|33|33|34|35|36|39|38|39|41|41|46|43|44|45|46|47|48|49|0\n58|57|56|55|54|52|52|53|51|50|48|46|46|44|43|43|42|40|40|39|37|37|36|34|34|33|32|31|31|49|32|33|35|35|36|38|38|39|41|41|42|45|44|45|47|47|48|49|50|51|59|53|54|55|56|57|58|59|0\n47|46|46|45|44|44|41|41|40|39|38|37|34|34|33|31|30|30|29|28|28|27|26|26|43|27|36|29|32|31|32|33|35|35|36|37|38|39|40|42|42|43|49|45|48|47|48|49|0\n26|24|24|23|22|22|21|20|18|17|15|15|16|19|16|17|18|19|20|21|27|23|25|25|26|27|0\n32|31|31|29|25|25|26|27|24|22|21|21|20|19|18|18|30|19|20|23|22|23|24|28|26|27|28|29|30|33|32|33|0\n25|25|26|23|22|21|19|19|18|16|16|15|15|24|17|17|18|20|20|21|22|23|24|27|26|27|0\n55|54|52|52|51|49|49|47|47|48|56|57|46|45|44|43|41|40|40|39|38|37|36|33|33|34|32|31|31|59|32|35|34|35|36|37|38|39|42|41|42|43|44|45|46|58|48|50|50|51|53|53|54|55|56|57|58|59|0\n16|14|14|12|11|11|10|10|17|13|12|13|15|15|16|17|0\n52|51|50|50|49|45|44|42|42|41|41|46|39|39|38|37|35|34|33|32|32|31|30|29|28|28|48|29|30|31|36|33|34|35|36|37|38|40|40|47|43|43|44|45|46|47|48|49|53|51|52|53|0\n27|25|24|23|22|20|19|19|18|17|16|15|15|26|16|17|18|21|20|21|22|23|24|25|26|27|0\n46|44|43|43|45|39|38|37|37|40|35|35|34|32|31|31|30|29|28|27|26|25|25|42|26|27|28|29|30|33|32|33|34|36|36|41|38|39|40|41|42|47|44|45|46|47|0\n32|32|31|30|29|28|28|34|35|26|25|24|23|22|22|21|20|20|37|21|27|23|24|25|26|27|36|29|30|31|33|33|34|35|36|37|0\n38|37|36|35|33|32|32|31|30|27|27|28|29|25|22|22|23|21|21|26|24|23|24|25|26|39|28|29|30|31|34|33|34|35|36|37|38|39|0\n54|53|52|51|51|48|48|46|45|43|42|41|41|40|39|39|38|37|36|35|33|32|32|31|30|29|29|50|30|31|34|33|34|35|36|37|38|47|40|44|42|43|44|45|46|47|49|49|50|55|52|53|54|55|0\n17|16|16|15|14|12|12|13|11|11|19|13|14|15|18|17|18|19|0\n27|26|26|24|23|23|25|21|20|19|18|17|16|16|22|17|18|19|20|21|22|29|24|25|28|27|28|29|0\n12|12|9|9|8|8|11|10|10|11|13|13|0\n53|48|48|47|46|45|44|44|50|43|42|41|37|37|36|36|39|34|33|32|32|30|30|29|28|28|52|29|31|31|35|33|34|35|40|38|38|39|40|41|42|43|51|45|46|47|49|49|50|51|52|53|0\n18|17|16|15|15|14|13|12|11|11|12|13|14|19|16|17|18|19|0\n28|27|27|25|24|22|22|21|20|19|17|17|16|16|26|18|18|19|20|21|23|23|24|25|26|29|28|29|0\n50|49|45|45|44|43|43|47|41|41|40|38|37|37|36|35|35|34|33|31|29|29|28|27|27|32|28|30|30|31|32|33|34|51|36|39|38|39|40|42|42|48|44|46|46|47|48|49|50|51|0\n61|59|57|56|56|55|54|49|48|47|47|46|45|44|44|51|52|41|41|42|40|38|38|36|35|34|33|33|32|32|60|37|34|35|36|37|39|39|40|43|42|43|53|45|46|50|48|49|50|51|52|53|54|55|58|57|58|59|60|61|0\n60|59|59|53|52|51|51|54|55|49|48|47|46|45|45|43|43|42|41|40|39|38|37|35|35|33|33|32|32|57|58|34|34|36|36|37|38|39|40|41|42|44|44|50|46|47|48|49|50|56|52|53|54|55|56|57|58|61|60|61|0\n13|11|11|10|8|8|9|9|10|12|12|13|0\n10|10|8|7|7|9|8|9|11|11|0\n40|39|37|37|36|34|32|31|31|33|30|28|27|26|26|29|24|23|22|22|25|23|24|25|41|27|28|29|30|35|32|33|34|35|36|38|38|39|40|41|0\n55|54|53|52|51|49|48|48|47|46|45|45|56|57|44|43|41|41|40|38|37|36|35|35|34|33|31|31|32|59|32|33|34|39|36|37|38|39|40|42|42|43|44|58|46|47|50|49|50|51|52|53|54|55|56|57|58|59|0\n42|41|40|39|38|37|37|36|35|33|31|30|30|28|27|26|25|25|24|23|23|34|24|29|26|27|28|29|32|31|32|33|34|35|36|43|38|39|40|41|42|43|0\n22|21|20|19|18|17|17|16|13|13|14|15|14|15|16|23|18|19|20|21|22|23|0\n28|28|24|23|23|25|21|20|20|19|18|17|16|16|27|17|18|19|22|21|22|26|24|25|26|27|29|29|0\n16|15|15|14|13|11|10|10|12|11|12|13|14|17|16|17|0\n27|26|25|25|24|22|21|20|19|19|18|17|16|16|29|17|18|23|20|21|22|23|24|28|26|27|28|29|0\n45|42|42|43|41|41|40|39|38|37|35|35|34|33|31|31|32|29|26|26|27|25|25|30|28|27|28|29|30|47|32|33|34|36|36|37|38|39|40|46|44|43|44|45|46|47|0\n21|19|18|17|17|20|22|23|16|15|14|14|25|15|16|24|18|19|20|21|22|23|24|25|0\n20|18|18|17|16|16|15|13|12|12|14|13|14|15|21|17|19|19|20|21|0\n22|22|21|21|24|25|18|18|17|16|16|15|15|27|20|17|19|19|20|26|23|23|24|25|26|27|0\n16|13|12|12|14|11|10|10|17|11|15|13|14|15|16|17|0\n50|49|49|48|47|46|45|44|44|52|53|42|41|40|40|39|38|37|36|35|34|33|31|31|30|29|29|55|30|32|32|33|34|35|36|37|38|39|43|41|42|43|54|45|46|47|48|51|50|51|52|53|54|55|0\n59|59|58|57|56|55|55|54|53|52|51|50|49|49|62|63|48|47|45|44|44|43|42|41|40|39|38|37|36|35|34|34|65|35|36|37|38|39|40|41|42|43|46|45|46|47|48|64|50|51|52|53|54|61|56|57|58|60|60|61|62|63|64|65|0\n11|9|8|7|7|10|8|9|10|11|0\n63|61|60|60|59|56|56|55|54|54|53|52|52|64|65|49|49|48|48|46|46|45|44|42|41|41|40|39|38|37|36|35|35|67|36|37|38|39|40|43|42|43|44|45|47|47|51|50|50|51|66|53|58|55|57|57|58|59|62|61|62|63|64|65|66|67|0\n24|23|23|22|20|20|21|19|17|17|16|15|15|27|16|18|18|19|26|21|22|25|24|25|26|27|0\n31|27|26|25|24|24|28|22|22|21|20|19|18|17|17|30|18|19|20|21|23|23|29|25|26|27|28|29|30|31|0\n57|53|51|50|50|52|54|49|45|45|44|42|42|40|38|37|37|39|36|35|34|34|47|33|30|30|31|32|56|31|32|33|48|35|36|41|38|39|40|41|43|43|44|46|46|47|48|49|55|51|52|53|54|55|56|57|0\n39|36|36|37|38|40|35|34|33|31|30|30|27|27|28|26|25|24|24|42|23|23|43|25|26|29|28|29|32|31|32|33|34|35|41|37|38|39|40|41|42|43|0\n20|19|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|21|20|21|0\n21|19|18|17|16|16|15|13|12|12|14|13|14|15|20|17|18|19|20|21|0\n13|11|9|8|8|10|12|9|10|11|12|13|0\n25|22|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|23|23|24|25|0\n23|22|19|19|20|18|18|24|25|17|15|15|16|27|16|17|26|21|20|21|22|23|24|25|26|27|0\n16|15|14|14|17|13|11|11|12|19|12|13|18|15|16|17|18|19|0\n60|60|57|54|53|53|52|52|51|49|49|48|48|47|45|44|43|43|42|41|40|39|37|37|36|35|34|33|32|32|59|33|34|35|36|38|38|39|40|41|42|46|44|45|46|47|58|50|50|51|56|55|54|55|56|57|58|59|61|61|0\n24|24|22|20|19|19|18|16|15|15|14|14|23|17|16|17|18|21|20|21|22|23|25|25|0\n16|15|12|11|11|13|14|10|10|17|12|13|14|15|16|17|0\n6|6|5|5|7|7|0\n57|57|55|55|56|54|53|53|60|61|52|50|50|48|47|45|45|44|44|43|41|40|39|38|37|36|36|35|34|33|33|63|34|35|42|37|38|39|40|41|42|43|49|46|46|47|48|49|51|51|52|62|54|59|56|58|58|59|60|61|62|63|0\n39|36|36|37|38|35|33|28|28|27|26|25|25|30|31|24|24|23|22|22|41|23|34|32|26|27|29|29|30|31|32|33|34|35|40|37|38|39|40|41|0\n31|30|28|27|27|26|25|24|24|32|33|23|22|21|20|19|19|35|20|21|22|23|34|25|26|29|28|29|30|31|32|33|34|35|0\n42|42|41|38|36|36|35|34|34|32|32|30|30|29|28|26|25|24|24|23|23|40|27|25|26|27|28|29|31|31|33|33|39|35|37|37|38|39|40|41|43|43|0\n31|30|30|29|26|26|27|24|22|21|21|23|20|19|18|18|33|19|20|25|22|23|24|25|28|27|28|29|32|31|32|33|0\n17|16|15|14|10|10|11|12|13|11|12|13|14|15|16|17|0\n59|57|57|56|54|53|52|50|49|48|47|47|46|44|44|40|39|38|38|41|42|37|36|34|33|33|32|31|31|55|32|35|34|35|36|37|43|39|40|41|42|43|45|45|46|51|48|49|50|51|52|53|54|55|56|58|58|59|0\n45|43|42|41|40|38|38|37|36|34|34|33|32|31|30|29|28|27|25|25|24|24|44|26|26|27|28|29|30|31|32|33|35|35|36|37|39|39|40|41|42|43|44|45|0\n20|19|18|17|16|16|14|13|12|12|15|13|14|15|21|17|18|19|20|21|0\n19|19|15|15|16|14|13|13|12|12|21|18|14|17|16|17|18|20|20|21|0\n38|37|36|36|35|33|28|27|27|26|26|30|31|24|23|23|22|21|21|34|22|25|24|25|32|29|28|29|30|31|32|33|34|35|39|37|38|39|0\n53|50|49|48|47|46|45|45|44|42|40|40|39|38|38|43|36|35|34|31|31|32|30|29|28|28|37|29|30|33|32|33|34|35|36|37|52|39|41|41|42|43|44|51|46|47|48|49|50|51|52|53|0\n53|52|51|50|48|47|47|46|45|44|44|54|55|43|42|41|40|38|38|36|35|35|34|32|32|31|30|30|57|31|33|33|34|37|36|37|39|39|40|41|42|43|56|45|46|49|48|49|50|51|52|53|54|55|56|57|0\n44|42|42|41|40|39|38|37|36|36|45|34|31|31|32|30|29|29|28|27|26|25|25|47|26|27|28|35|30|33|32|33|34|35|46|37|38|39|40|41|43|43|44|45|46|47|0\n50|49|48|47|46|46|45|43|37|35|35|36|34|33|32|32|39|31|30|30|41|29|28|27|27|44|28|29|42|31|40|33|34|38|36|37|38|39|40|41|42|43|44|45|51|47|48|49|50|51|0\n16|15|15|13|11|10|10|12|14|11|12|13|14|17|16|17|0\n18|18|19|20|17|12|12|13|14|15|16|13|14|15|16|17|21|19|20|21|0\n29|29|28|28|31|27|26|25|25|33|23|23|21|20|20|19|19|35|22|21|22|24|24|34|26|27|32|30|30|31|32|33|34|35|0\n25|22|21|20|19|18|18|16|15|15|14|14|24|17|16|17|23|19|20|21|22|23|24|25|0\n39|37|37|35|33|32|31|31|30|27|27|28|26|21|21|22|23|24|25|36|22|23|24|25|26|29|28|29|30|34|32|33|34|35|36|38|38|39|0\n34|33|32|32|31|30|27|26|25|25|24|23|21|20|20|19|19|29|22|21|22|23|24|28|26|27|28|29|30|31|35|33|34|35|0\n30|27|27|26|26|29|24|22|21|21|20|19|18|17|17|25|18|19|20|23|22|23|24|25|31|28|28|29|30|31|0\n8|8|6|6|7|7|9|9|0\n27|27|26|24|23|23|22|21|21|29|20|19|17|17|18|31|18|19|20|30|22|25|24|25|26|28|28|29|30|31|0\n66|65|63|63|62|60|60|59|58|57|56|55|54|51|51|52|50|49|49|67|46|46|45|43|42|42|41|40|39|39|37|36|36|38|69|37|38|48|40|41|44|43|44|45|47|47|48|68|50|53|52|53|54|55|56|57|58|59|61|61|62|64|64|65|66|67|68|69|0\n29|27|27|28|26|25|22|22|23|21|20|20|18|17|17|19|18|19|31|21|24|23|24|25|26|30|28|29|30|31|0\n14|13|12|12|10|9|9|11|10|11|15|13|14|15|0\n14|14|15|13|12|11|10|10|17|11|12|13|16|15|16|17|0\n28|27|27|24|24|21|20|20|22|18|18|17|16|16|26|17|19|19|23|21|22|23|25|25|26|29|28|29|0\n30|30|28|25|23|23|22|19|19|18|18|17|17|26|27|29|21|20|20|21|22|24|24|25|26|27|28|29|31|31|0\n43|41|41|40|40|39|38|36|36|34|34|33|32|31|31|45|30|29|28|26|26|25|25|47|27|27|28|29|30|46|32|33|35|35|37|37|38|39|44|42|42|43|44|45|46|47|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n25|25|24|23|23|27|21|20|19|18|18|17|16|16|29|17|22|19|20|21|22|28|24|26|26|27|28|29|0\n25|25|24|23|22|19|19|20|18|18|16|15|15|17|16|17|27|21|20|21|22|23|24|26|26|27|0\n25|22|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|23|23|24|25|0\n14|13|13|12|11|11|10|10|17|16|12|15|14|15|16|17|0\n65|64|63|63|62|61|60|59|59|67|58|54|53|52|52|51|50|50|56|49|48|48|69|47|43|43|44|45|42|41|40|39|38|37|37|71|38|39|40|41|42|46|44|45|46|47|70|49|57|51|55|53|54|55|56|57|58|68|60|61|62|66|64|65|66|67|68|69|70|71|0\n27|26|26|28|25|24|24|30|21|21|20|19|18|17|17|23|18|19|20|22|22|23|31|25|29|27|28|29|30|31|0\n43|42|41|40|40|44|45|39|38|36|36|35|34|33|32|31|30|28|28|27|26|25|25|47|26|27|29|29|30|31|32|33|34|35|37|37|38|39|46|41|42|43|44|45|46|47|0\n11|10|8|8|7|7|9|9|10|11|0\n67|67|65|65|66|64|61|60|59|59|58|56|56|55|54|54|53|49|48|47|46|44|43|42|42|41|40|39|38|37|37|50|36|36|52|51|38|39|40|41|45|43|44|45|46|47|48|49|50|51|52|53|63|55|57|57|58|62|60|61|62|63|64|69|66|68|68|69|0\n53|50|49|48|47|43|43|44|45|42|42|41|40|39|35|34|33|32|32|36|37|31|30|28|28|29|52|29|30|31|38|33|34|35|36|37|38|39|40|41|51|46|44|45|46|47|48|49|50|51|52|53|0\n28|28|26|25|23|22|21|21|20|18|18|17|16|16|27|17|19|19|20|24|22|23|24|25|26|27|29|29|0\n52|51|51|48|47|46|45|43|42|42|44|41|40|38|38|37|36|32|32|33|34|31|30|29|28|28|50|29|30|31|35|33|34|35|36|37|39|39|40|41|49|43|44|45|46|47|48|49|50|53|52|53|0\n35|33|32|30|30|31|29|29|28|28|25|24|23|22|21|20|20|26|27|21|22|23|24|25|26|27|37|36|34|31|32|33|34|35|36|37|0\n56|56|55|52|52|51|49|48|48|50|47|46|46|58|59|45|42|41|41|43|39|39|38|35|35|36|34|33|32|32|61|33|34|37|36|37|38|40|40|44|42|43|44|45|60|47|54|49|50|51|53|53|54|55|57|57|58|59|60|61|0\n33|32|31|31|30|29|28|27|24|24|25|26|22|21|20|19|19|23|20|21|22|23|35|25|26|27|28|29|30|34|32|33|34|35|0\n38|37|37|36|34|33|32|32|30|28|26|26|27|25|24|23|22|21|21|31|22|23|24|25|29|27|28|29|30|31|35|33|34|35|36|39|38|39|0\n22|21|19|19|20|18|16|15|14|14|13|13|17|15|16|17|18|23|20|21|22|23|0\n25|25|26|24|22|20|19|19|21|18|15|15|16|17|16|17|18|23|20|21|22|23|24|27|26|27|0\n46|45|43|42|42|41|40|39|38|38|37|34|34|31|30|29|29|32|27|27|26|25|25|36|26|28|28|33|30|31|32|33|35|35|36|37|47|39|40|41|44|43|44|45|46|47|0\n25|25|23|23|21|21|20|20|27|18|18|17|16|16|29|17|19|19|28|22|22|24|24|26|26|27|28|29|0\n47|46|45|44|44|43|42|41|40|38|38|39|49|36|35|35|34|33|32|31|29|29|28|27|27|51|28|30|30|31|32|33|34|37|36|37|50|39|40|41|42|43|48|45|46|47|48|49|50|51|0\n18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0\n35|35|34|33|31|30|29|29|28|27|27|26|25|22|21|21|20|20|24|23|22|23|24|25|26|37|28|32|30|31|32|33|34|36|36|37|0\n47|45|44|42|41|40|39|39|38|35|34|34|36|33|31|31|29|28|28|27|26|25|25|46|26|27|30|29|30|32|32|33|37|35|36|37|38|43|40|41|42|43|44|45|46|47|0\n21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0\n33|32|30|29|28|25|24|24|26|22|21|21|20|19|18|18|31|19|20|23|22|23|27|25|26|27|28|29|30|31|32|33|0\n48|47|47|43|41|41|40|38|38|37|36|35|35|44|34|33|31|30|29|28|28|27|26|26|46|27|32|29|30|31|32|33|34|45|36|37|39|39|40|42|42|43|44|45|46|49|48|49|0\n20|19|15|14|14|16|12|12|13|18|21|13|17|15|16|17|18|19|20|21|0\n90|90|88|88|89|92|93|86|85|84|84|80|79|78|77|76|75|72|72|73|74|81|71|70|68|68|67|66|65|64|63|62|61|60|60|59|57|57|56|51|50|50|52|53|54|49|49|95|55|51|52|53|54|55|56|58|58|59|83|61|62|63|64|65|66|67|69|69|70|71|82|73|74|75|76|77|78|79|80|81|82|83|87|85|86|87|94|89|91|91|92|93|94|95|0\n35|33|32|31|30|28|28|27|26|25|24|22|22|20|19|19|21|34|20|21|23|23|24|25|26|27|29|29|30|31|32|33|34|35|0\n25|22|22|21|20|19|17|17|16|15|14|14|24|15|16|18|18|19|20|21|23|23|24|25|0\n31|29|27|27|24|23|22|22|21|21|20|19|17|17|18|30|18|19|20|26|25|23|24|25|26|28|28|29|30|31|0\n35|34|31|29|29|30|28|26|25|24|23|23|22|20|20|19|19|33|21|21|22|27|24|25|26|27|28|32|30|31|32|33|34|35|0\n41|40|40|42|38|38|37|36|36|44|34|33|31|30|28|28|29|27|26|25|24|24|35|25|26|27|32|29|30|31|32|33|34|35|45|37|39|39|43|41|42|43|44|45|0\n25|25|24|24|23|22|21|20|20|28|29|18|18|17|17|31|19|19|30|21|22|23|27|26|26|27|28|29|30|31|0\n33|31|30|29|28|25|24|24|26|22|22|20|20|19|18|18|32|19|21|21|23|23|27|25|26|27|28|29|30|31|32|33|0\n32|31|30|29|29|28|26|25|25|21|21|22|19|19|18|18|24|20|20|23|22|23|24|27|26|27|28|33|30|31|32|33|0\n25|24|24|23|20|20|19|19|18|17|17|16|15|15|16|27|18|22|21|21|22|23|26|25|26|27|0\n24|23|22|22|20|19|19|16|16|14|14|15|18|15|17|17|18|21|20|21|25|23|24|25|0\n42|41|40|39|38|37|35|35|34|33|32|32|31|30|28|26|25|24|24|23|23|29|27|25|26|27|28|29|30|31|43|33|34|36|36|37|38|39|40|41|42|43|0\n49|49|48|47|47|46|45|44|43|43|52|53|42|41|40|37|37|36|35|34|33|33|32|31|30|29|29|55|30|31|32|39|34|35|36|38|38|39|40|41|42|54|44|45|46|51|48|50|50|51|52|53|54|55|0\n52|50|49|48|48|47|45|45|44|43|42|41|41|53|37|37|38|39|36|35|34|32|31|30|30|29|29|55|33|31|32|33|34|35|36|40|38|39|40|54|42|43|44|46|46|47|51|49|50|51|52|53|54|55|0\n67|64|63|62|62|59|59|58|57|56|56|55|54|53|51|51|50|48|46|46|45|44|43|43|42|40|40|39|38|37|36|35|35|66|36|37|38|39|41|41|42|49|44|45|47|47|48|49|50|52|52|53|54|55|61|57|58|60|60|61|65|63|64|65|66|67|0\n47|45|43|43|42|41|40|39|37|36|35|34|33|33|32|30|29|29|28|27|26|25|25|46|26|27|28|31|30|31|32|38|34|35|36|37|38|39|40|41|42|44|44|45|46|47|0\n48|48|46|45|44|42|41|41|40|38|38|36|36|35|33|32|31|31|30|29|28|27|26|26|47|27|28|29|30|34|32|33|34|35|37|37|39|39|40|43|42|43|44|45|46|47|49|49|0\n39|38|37|37|36|34|34|32|32|31|30|30|28|27|26|25|24|23|22|22|29|23|24|25|26|27|28|29|41|31|33|33|35|35|36|40|38|39|40|41|0\n65|64|63|62|62|61|60|57|56|56|55|52|51|51|50|49|47|47|46|46|54|45|44|43|42|41|39|39|38|37|37|35|35|36|36|67|38|40|40|41|42|43|44|45|59|48|48|49|50|53|52|53|54|55|58|57|58|59|60|61|66|63|64|65|66|67|0\n34|34|33|32|31|30|28|27|27|26|26|36|37|25|24|23|22|21|21|39|22|23|24|25|38|29|28|29|30|31|32|33|35|35|36|37|38|39|0\n45|44|42|41|41|40|38|37|37|36|35|35|46|47|34|32|31|29|29|30|28|27|26|26|49|27|28|33|30|31|32|33|34|48|36|39|38|39|40|43|42|43|44|45|46|47|48|49|0\n62|61|60|60|63|59|58|57|56|56|55|53|52|52|48|47|46|46|49|45|42|41|41|40|40|39|37|37|36|35|34|34|51|35|36|38|38|39|44|43|42|43|44|45|50|47|48|49|50|51|54|53|54|55|65|57|58|59|64|61|62|63|64|65|0\n48|47|47|43|43|44|39|38|37|36|36|40|41|35|33|32|31|30|30|29|28|26|26|27|46|27|28|29|34|31|32|33|34|35|42|37|38|39|40|41|42|45|44|45|46|49|48|49|0\n10|7|7|8|9|11|8|9|10|11|0\n40|40|39|39|38|37|36|35|33|33|32|31|30|29|28|27|27|25|24|23|23|26|24|25|26|43|28|29|30|31|32|34|34|35|36|37|38|42|41|41|42|43|0\n34|34|33|29|29|28|27|26|26|25|23|22|21|20|20|19|19|32|24|21|22|23|24|25|31|27|28|30|30|31|32|33|35|35|0\n47|45|44|43|42|41|41|40|39|37|37|34|34|33|32|31|30|28|27|27|26|25|25|36|26|29|28|29|30|31|32|33|35|35|36|38|38|39|40|46|42|43|44|45|46|47|0\n22|22|23|24|17|17|18|19|16|15|14|14|21|15|16|20|18|19|20|21|25|23|24|25|0\n22|21|20|18|17|17|16|15|14|13|13|23|14|15|16|19|18|19|20|21|22|23|0\n41|40|40|39|38|36|36|35|35|33|30|29|29|28|28|27|26|25|23|23|24|34|24|25|26|27|32|31|30|31|32|33|34|43|37|37|38|39|42|41|42|43|0\n62|60|60|61|59|58|55|53|51|51|52|54|49|49|48|45|45|46|44|40|39|39|38|37|37|42|35|34|34|33|33|57|36|35|36|43|38|41|40|41|42|43|44|47|46|47|48|50|50|56|52|53|54|55|56|57|58|59|63|61|62|63|0\n48|47|46|46|45|43|42|40|39|38|38|37|35|35|34|33|32|31|30|29|28|27|26|26|44|27|28|29|30|31|32|33|34|36|36|37|41|39|40|41|42|43|44|45|49|47|48|49|0\n27|24|24|23|22|21|20|20|18|17|16|15|15|19|16|17|18|19|26|21|22|23|25|25|26|27|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n51|51|49|48|48|50|53|46|46|44|43|42|41|41|40|38|38|37|35|35|34|32|32|31|30|29|29|55|30|31|33|33|34|36|36|37|39|39|40|45|42|43|44|45|47|47|54|49|50|52|52|53|54|55|0\n31|30|28|26|26|25|24|23|22|22|21|20|18|17|17|19|18|19|20|21|29|23|24|25|27|27|28|29|30|31|0\n19|16|16|15|14|13|12|11|11|18|12|13|14|15|17|17|18|19|0\n17|17|16|15|14|13|12|11|11|19|12|13|14|15|16|18|18|19|0\n91|88|87|86|85|85|89|82|80|80|79|77|77|78|83|76|75|73|73|72|71|70|67|67|68|66|66|92|93|64|63|62|62|61|60|59|58|57|56|55|53|53|52|50|50|49|49|95|51|51|52|54|54|55|56|57|58|59|60|61|65|63|64|65|94|69|68|69|70|71|72|74|74|75|76|84|78|79|81|81|82|83|84|90|86|87|88|89|90|91|92|93|94|95|0\n35|33|30|30|29|29|28|26|25|24|24|23|21|21|20|19|19|34|20|22|22|23|27|25|26|27|28|32|31|31|32|33|34|35|0\n70|69|67|66|65|65|64|63|62|61|60|60|59|58|56|54|53|53|52|50|49|49|48|47|46|45|44|43|41|41|40|39|38|37|37|57|38|39|40|42|42|43|44|45|46|47|48|51|50|51|52|55|54|55|56|57|58|59|71|61|62|63|64|68|66|67|68|69|70|71|0\n49|44|44|45|46|43|39|38|37|35|35|34|31|31|32|30|30|40|29|29|28|26|26|27|48|27|28|42|41|33|32|33|34|36|36|37|38|39|40|41|42|43|47|45|46|47|48|49|0\n60|60|58|58|56|55|53|53|54|52|51|51|62|63|50|49|47|46|46|45|44|42|42|40|39|39|38|35|35|36|34|34|65|37|36|37|38|41|40|41|43|43|44|45|48|47|48|49|50|64|52|57|54|55|56|57|59|59|61|61|62|63|64|65|0\n44|43|43|42|41|40|38|37|36|35|35|34|34|30|30|29|29|32|27|26|26|25|25|47|28|27|28|33|31|31|32|33|46|39|36|37|38|39|40|41|42|45|44|45|46|47|0\n18|17|17|16|15|15|14|13|12|12|21|13|14|20|16|19|18|19|20|21|0\n53|53|54|51|48|47|47|49|46|44|42|41|41|39|39|40|38|36|34|34|35|33|32|31|30|29|29|52|30|31|32|33|37|35|36|37|38|45|40|43|42|43|44|45|46|50|48|49|50|51|52|55|54|55|0\n19|19|20|18|16|15|13|12|12|14|17|13|14|15|16|17|18|21|20|21|0\n46|46|44|42|41|40|39|39|38|36|36|34|33|33|32|30|30|29|27|27|26|25|25|45|26|28|28|29|31|31|32|35|34|35|37|37|38|43|40|41|42|43|44|45|47|47|0\n57|56|55|53|52|51|51|50|48|48|49|58|59|60|46|44|42|42|41|39|39|38|38|37|36|35|34|33|32|32|47|33|34|35|36|37|45|40|40|41|43|43|44|45|46|47|61|49|50|54|52|53|54|55|56|57|58|59|60|61|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n16|16|17|15|15|13|12|11|11|14|12|13|14|19|18|17|18|19|0\n46|45|45|44|43|41|38|37|36|36|39|35|33|33|32|31|29|29|28|26|26|25|25|42|27|27|28|30|30|31|32|34|34|35|40|37|38|39|40|41|42|43|44|47|46|47|0\n35|33|33|32|31|29|28|24|23|23|25|26|21|21|20|19|19|30|20|22|22|27|24|25|26|27|28|29|30|31|32|34|34|35|0\n42|38|38|39|40|35|34|32|32|31|30|30|36|37|28|27|25|25|24|23|23|29|24|26|26|27|28|29|43|31|33|33|34|35|36|37|41|39|40|41|42|43|0\n40|40|39|38|37|35|32|31|30|30|33|29|28|27|25|25|24|23|22|22|36|23|24|26|26|27|28|29|34|31|32|33|34|35|36|37|38|39|41|41|0\n56|56|54|53|53|52|51|49|48|46|45|45|44|43|43|42|40|40|39|37|37|36|35|34|32|31|31|30|30|33|32|33|34|35|36|38|38|39|41|41|42|50|44|47|46|47|48|49|50|51|52|55|54|55|57|57|0\n51|50|50|49|48|48|46|45|43|41|41|42|40|38|38|37|36|35|32|31|31|33|30|29|28|28|47|29|30|34|32|33|34|35|36|37|39|39|40|44|42|43|44|45|46|47|53|49|52|51|52|53|0\n29|27|27|26|24|23|20|19|18|18|21|16|16|17|25|17|22|19|20|21|22|23|24|25|26|28|28|29|0\n76|74|73|70|69|68|68|71|67|66|66|65|63|63|64|62|61|60|56|55|54|54|53|52|52|51|50|47|46|45|45|44|44|43|42|41|40|40|59|41|42|43|49|48|46|47|48|49|50|51|58|53|57|55|56|57|58|59|60|61|62|77|64|65|75|67|72|69|70|71|72|73|74|75|76|77|0\n47|46|42|42|41|40|39|39|44|38|37|36|35|34|32|31|31|33|28|28|27|26|26|30|49|27|29|29|30|48|32|33|34|35|36|37|38|45|40|41|43|43|44|45|46|47|48|49|0\n44|43|43|41|39|38|37|35|35|36|34|32|32|31|29|28|28|27|26|25|24|24|42|25|26|27|30|29|30|31|33|33|34|40|36|37|38|39|40|41|42|45|44|45|0\n80|80|78|76|76|75|74|73|72|71|70|69|68|64|64|63|62|61|61|66|56|55|55|54|53|52|51|50|50|58|59|49|48|47|44|44|45|43|42|42|79|43|46|45|46|47|48|49|60|51|52|53|54|57|56|57|58|59|60|67|62|63|65|65|66|67|68|69|70|71|72|73|74|75|77|77|78|79|81|81|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n51|51|50|49|49|47|44|43|43|42|41|38|38|39|37|36|35|34|34|46|32|30|30|28|28|29|33|29|31|31|32|33|48|35|36|37|40|39|40|41|42|45|44|45|46|47|48|53|50|52|52|53|0\n34|34|29|28|28|30|31|26|25|23|23|24|22|21|19|19|20|33|20|21|22|27|24|25|26|27|32|29|30|31|32|33|35|35|0\n54|54|55|53|51|50|49|48|47|47|52|45|42|41|41|40|40|39|37|36|35|34|34|33|31|31|30|30|46|32|32|33|38|35|36|37|38|39|44|43|42|43|44|45|46|57|48|49|50|51|52|53|56|55|56|57|0\n49|46|46|42|42|41|39|39|38|38|44|34|34|33|32|32|36|31|30|28|28|26|26|27|48|27|29|29|30|31|37|33|35|35|36|37|45|40|40|41|43|43|44|45|47|47|48|49|0\n51|50|45|44|43|43|42|41|40|40|47|39|36|35|35|37|34|32|32|31|29|29|28|27|27|49|28|30|30|31|33|33|34|38|36|37|38|39|48|41|42|46|44|45|46|47|48|49|50|51|0\n14|14|12|11|9|9|10|13|10|11|12|13|15|15|0\n3|3|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n34|33|33|30|30|26|26|27|28|25|24|22|22|21|20|19|19|32|20|21|23|23|24|25|29|27|28|29|31|31|32|35|34|35|0\n40|38|38|37|35|35|33|33|31|31|30|29|28|28|41|26|25|24|24|23|23|43|27|25|26|27|42|29|30|32|32|34|34|36|36|37|39|39|40|41|42|43|0\n33|27|26|26|28|29|23|23|24|22|20|20|19|18|18|31|32|19|21|21|22|25|24|25|30|27|28|29|30|31|32|33|0\n17|14|14|13|13|12|10|10|11|11|12|16|15|15|16|17|0\n7|7|6|6|9|8|8|9|0\n5|4|4|5|0\n5|4|4|5|0\n5|4|4|5|0\n18|18|17|16|15|15|20|21|14|13|13|23|14|22|16|17|19|19|20|21|22|23|0\n13|12|12|9|9|10|11|15|10|11|14|13|14|15|0\n3|3|0\n23|23|22|21|20|19|18|17|16|15|14|14|25|15|16|17|18|19|20|21|22|24|24|25|0\n3|3|0\n15|14|12|11|10|9|9|13|10|11|12|13|14|15|0\n27|25|23|22|22|21|19|19|18|17|16|15|15|26|16|17|18|20|20|21|24|23|24|25|26|27|0\n21|19|18|17|17|16|14|14|13|13|22|23|15|15|16|20|18|19|20|21|22|23|0\n38|37|37|34|34|32|30|30|29|28|27|26|26|25|24|23|22|21|21|36|22|23|24|25|33|27|28|29|31|31|32|33|35|35|36|39|38|39|0\n28|27|25|25|24|23|22|21|21|29|20|19|18|17|17|31|18|19|20|30|22|23|24|26|26|27|28|29|30|31|0\n16|15|14|13|12|10|10|11|17|11|12|13|14|15|16|17|0\n29|29|30|28|27|25|22|22|23|20|20|19|18|17|17|26|18|19|21|21|24|23|24|25|26|27|28|31|30|31|0\n54|53|53|51|45|44|44|46|47|42|41|38|38|37|36|36|40|35|35|49|34|32|32|31|30|29|29|52|30|31|33|33|34|50|43|37|39|39|40|41|42|43|48|45|46|47|48|49|50|51|52|55|54|55|0\n67|67|68|69|66|65|64|64|63|61|61|58|58|57|54|54|53|52|52|49|48|47|46|46|50|45|44|42|42|41|40|38|38|37|37|60|39|39|40|41|43|43|44|45|51|47|48|49|50|51|56|53|55|55|56|57|59|59|60|62|62|63|71|65|66|70|68|69|70|71|0\n59|59|58|57|57|61|53|52|49|49|50|51|54|55|48|46|46|45|43|43|42|41|40|39|36|36|37|35|34|33|33|63|34|35|38|37|38|39|40|41|42|44|44|45|47|47|48|56|50|51|52|53|54|55|56|62|58|60|60|61|62|63|0\n38|37|37|33|33|32|30|29|28|27|27|26|25|25|24|23|22|21|21|36|22|23|24|35|26|31|28|29|30|31|32|34|34|35|36|39|38|39|0\n44|43|43|42|40|39|38|35|35|33|33|32|32|31|30|29|27|27|26|25|24|24|41|25|26|28|28|29|30|31|37|34|34|36|36|37|38|39|40|41|42|45|44|45|0\n17|16|14|14|13|12|10|10|11|11|12|13|15|15|16|17|0\n34|34|30|29|29|31|28|27|25|24|24|23|22|21|20|19|19|33|20|21|22|23|26|25|26|27|28|32|30|31|32|33|35|35|0\n22|22|20|19|18|16|15|14|14|13|13|21|17|15|16|17|18|19|20|21|23|23|0\n40|40|35|35|34|32|31|31|30|30|37|29|27|27|26|24|24|23|22|22|39|23|25|25|26|28|28|29|38|33|32|33|34|36|36|37|38|39|41|41|0\n19|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|18|19|0\n33|32|31|30|29|28|27|27|34|35|26|25|23|23|22|21|20|20|37|21|22|24|24|25|26|36|28|29|30|31|32|33|34|35|36|37|0\n52|51|50|47|46|45|44|44|48|43|42|40|39|39|38|37|36|35|35|34|32|32|30|29|28|28|31|29|30|31|33|33|34|53|36|37|38|41|40|41|42|43|49|45|46|47|48|49|50|51|52|53|0\n28|27|27|26|25|24|23|22|21|20|19|18|17|17|30|31|18|19|20|21|22|23|24|25|26|29|28|29|30|31|0\n43|41|40|39|37|37|32|31|31|30|29|28|28|34|35|26|26|25|23|23|24|42|24|25|27|27|36|29|30|33|32|33|34|35|36|38|38|39|40|41|42|43|0\n64|64|62|61|58|56|56|54|53|52|52|51|50|50|59|46|45|44|44|47|48|43|42|41|40|39|38|36|36|35|34|34|63|35|37|37|38|39|40|41|42|43|49|45|46|47|48|49|60|51|55|53|54|55|57|57|58|59|60|61|62|63|65|65|0\n8|7|6|6|9|7|8|9|0\n44|43|42|41|40|39|38|38|37|34|34|35|32|31|30|29|27|27|26|24|24|25|33|25|26|28|28|29|30|31|32|33|36|35|36|37|45|39|40|41|42|43|44|45|0\n29|25|23|23|22|22|21|21|20|18|17|17|16|16|28|19|18|19|20|27|26|24|24|25|26|27|28|29|0\n40|39|39|38|37|37|42|36|34|34|33|32|31|31|44|30|28|27|26|25|24|24|29|25|26|27|28|29|30|45|32|33|35|35|36|43|38|41|40|41|42|43|44|45|0\n20|20|17|17|15|14|14|13|12|12|19|13|16|15|16|18|18|19|21|21|0\n25|25|24|22|22|21|18|18|19|17|16|15|15|27|16|17|20|19|20|21|23|23|24|26|26|27|0\n37|37|36|34|32|31|26|25|25|27|28|24|24|30|33|22|21|21|23|39|22|23|35|29|26|27|28|29|30|31|32|33|34|35|36|38|38|39|0\n36|35|34|33|33|30|30|28|27|26|25|25|24|22|21|21|20|20|32|23|22|23|24|29|26|27|28|29|31|31|32|37|34|35|36|37|0\n31|30|29|27|27|28|32|33|26|25|23|23|22|21|19|19|20|35|20|21|22|24|24|25|26|34|28|29|30|31|32|33|34|35|0\n56|55|54|51|50|50|49|48|48|47|46|46|45|44|42|41|40|35|34|34|33|31|31|32|37|38|30|30|43|39|32|33|36|35|36|37|38|39|40|41|42|43|44|45|57|47|53|49|52|51|52|53|54|55|56|57|0\n19|18|17|14|14|12|12|11|11|16|13|13|15|15|16|17|18|19|0\n24|24|22|20|20|19|17|17|16|14|14|15|23|15|16|18|18|19|21|21|22|23|25|25|0\n26|25|24|23|23|27|22|21|21|29|20|19|18|17|17|31|18|19|20|30|22|28|24|25|26|27|28|29|30|31|0\n10|10|8|7|7|9|8|9|11|11|0\n58|56|55|55|54|52|50|50|49|49|48|47|47|46|44|43|42|41|41|38|38|37|35|35|34|33|32|31|31|40|32|33|34|36|36|37|39|39|40|45|42|43|44|45|46|59|48|53|51|51|52|53|54|57|56|57|58|59|0\n38|38|37|33|32|32|34|30|28|28|29|27|25|24|24|23|22|21|21|36|22|23|26|25|26|27|31|29|30|31|35|33|34|35|36|37|39|39|0\n42|41|40|39|37|36|36|34|34|33|33|43|44|45|32|30|30|29|28|27|26|25|25|47|26|27|28|29|31|31|32|46|35|35|38|37|38|39|40|41|42|43|44|45|46|47|0\n40|39|37|37|36|35|34|32|31|31|30|30|29|27|26|26|25|23|22|22|24|23|24|25|28|27|28|29|41|33|32|33|34|35|36|38|38|39|40|41|0\n37|34|34|31|30|30|29|27|26|24|24|25|28|23|22|21|20|20|36|21|22|23|33|25|26|27|28|29|32|31|32|33|35|35|36|37|0\n50|49|49|46|46|43|42|42|41|40|40|39|36|35|34|32|32|31|30|30|37|28|28|27|27|48|29|29|38|31|33|33|34|35|36|37|38|39|45|41|44|43|44|45|47|47|48|51|50|51|0\n58|58|57|56|54|54|53|51|51|50|49|47|47|46|45|45|60|61|41|41|42|40|40|38|38|36|36|35|34|33|33|63|34|35|37|37|39|39|44|43|42|43|44|62|46|48|48|49|50|52|52|53|55|55|56|57|59|59|60|61|62|63|0\n28|28|29|27|26|26|24|23|22|21|19|19|18|17|17|25|18|20|20|21|22|23|24|25|31|27|30|29|30|31|0\n32|31|29|29|30|33|27|27|26|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|26|28|28|34|30|31|32|33|34|35|0\n63|61|59|59|60|55|54|53|51|51|52|50|49|48|48|47|46|45|44|43|41|41|40|37|37|38|36|35|33|33|34|58|34|35|36|39|38|39|40|42|42|43|44|45|46|47|57|49|50|56|52|53|54|55|56|57|58|62|60|61|62|63|0\n32|31|30|29|28|27|27|26|24|23|23|21|20|18|18|19|22|19|20|21|22|25|24|25|26|33|28|29|30|31|32|33|0\n34|33|31|31|30|28|27|27|26|24|24|23|22|21|20|19|19|35|20|21|22|23|25|25|26|29|28|29|30|32|32|33|34|35|0\n30|30|28|27|25|25|26|24|23|23|32|33|21|21|19|19|20|35|20|22|22|34|24|29|26|27|28|29|31|31|32|33|34|35|0\n37|35|33|32|31|28|27|27|29|23|22|22|24|25|21|20|20|34|36|21|26|23|24|25|26|30|28|29|30|31|32|33|34|35|36|37|0\n31|29|28|27|25|24|24|23|21|20|20|19|18|17|17|30|18|19|22|21|22|23|26|25|26|27|28|29|30|31|0\n43|42|41|39|38|37|36|36|35|34|34|44|45|33|32|31|30|29|28|27|26|25|25|47|26|27|28|29|30|31|32|33|46|35|40|37|38|39|40|41|42|43|44|45|46|47|0\n12|10|10|9|8|8|13|9|11|11|12|13|0\n30|29|28|28|31|26|25|24|23|23|22|20|20|19|18|18|33|19|21|21|22|27|24|25|26|27|32|29|30|31|32|33|0\n26|25|24|22|22|23|20|18|18|17|16|15|15|21|16|17|19|19|20|21|27|23|24|25|26|27|0\n44|43|43|42|41|40|38|38|37|36|35|35|46|47|34|32|32|31|30|28|27|26|26|29|49|27|28|29|30|31|33|33|34|48|36|37|39|39|40|41|42|45|44|45|46|47|48|49|0\n82|81|81|79|77|76|76|74|74|73|72|71|69|69|68|67|66|63|62|62|61|59|59|58|57|56|56|55|54|52|52|51|50|49|48|47|46|45|44|43|43|80|44|45|46|47|48|49|50|51|53|53|54|55|65|57|58|60|60|61|64|63|64|65|66|67|68|70|70|71|72|73|75|75|78|77|78|79|80|83|82|83|0\n77|74|72|72|71|69|69|68|66|66|65|64|63|62|62|75|61|58|58|57|56|55|54|54|60|78|79|53|52|51|50|48|48|47|46|45|44|42|42|43|81|43|44|45|46|47|49|49|50|51|52|53|80|55|56|57|59|59|60|61|76|63|64|65|67|67|68|70|70|71|73|73|74|75|76|77|78|79|80|81|0\n38|37|36|35|34|33|31|30|29|29|32|27|26|25|23|22|22|21|21|28|24|23|24|25|26|27|28|39|30|31|32|33|34|35|36|37|38|39|0\n22|22|20|20|21|24|25|19|17|17|15|15|16|27|16|18|18|19|26|21|23|23|24|25|26|27|0\n23|21|20|18|18|17|14|14|15|13|13|22|16|15|16|17|19|19|20|21|22|23|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n39|39|38|37|36|35|34|32|32|31|30|30|27|27|26|25|24|23|22|22|29|23|24|25|26|28|28|29|41|31|33|33|34|35|36|37|38|40|40|41|0\n48|46|46|45|44|43|40|39|38|38|41|37|35|34|34|36|33|31|31|29|28|26|26|27|30|27|28|29|30|32|32|33|49|35|36|37|42|39|40|41|42|43|44|45|47|47|48|49|0\n25|25|24|22|21|21|23|20|20|28|29|18|18|17|17|31|19|19|30|27|22|23|24|26|26|27|28|29|30|31|0\n15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0\n14|12|12|11|10|9|9|15|10|11|13|13|14|15|0\n17|16|15|15|18|19|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0\n37|35|33|33|32|29|29|28|27|26|25|24|24|23|22|21|20|20|36|21|22|23|31|25|26|27|28|30|30|31|32|34|34|35|36|37|0\n20|17|16|16|18|15|14|14|12|12|13|13|21|15|19|17|18|19|20|21|0\n25|21|19|19|18|17|17|22|16|14|14|15|24|15|16|23|18|20|20|21|22|23|24|25|0\n27|24|22|21|19|19|20|18|17|17|16|15|15|26|16|25|18|23|20|21|22|23|24|25|26|27|0\n40|39|36|34|34|33|33|37|38|31|28|28|27|25|25|24|23|23|22|22|32|30|24|26|26|27|29|29|30|31|32|41|35|35|36|37|38|39|40|41|0\n35|32|31|30|30|29|27|26|25|25|24|21|20|20|22|19|19|34|23|21|22|23|24|28|26|27|28|29|33|31|32|33|34|35|0\n40|39|37|37|36|35|34|32|32|31|31|30|29|27|26|26|25|23|23|22|22|24|24|25|28|27|28|29|30|41|33|33|34|35|36|38|38|39|40|41|0\n5|5|6|7|6|7|0\n18|17|15|15|14|12|12|11|11|19|13|13|14|16|16|17|18|19|0\n33|33|31|31|26|25|25|27|24|23|23|29|22|21|21|35|20|20|37|36|22|30|24|28|26|27|28|29|30|32|32|34|34|35|36|37|0\n49|48|48|47|46|45|44|42|41|39|39|40|38|37|36|35|34|32|32|30|29|29|28|27|27|51|28|31|30|31|33|33|34|35|36|37|38|43|40|41|42|43|44|45|46|47|50|49|50|51|0\n61|60|60|58|58|55|55|56|54|52|52|53|51|50|48|47|45|44|40|40|39|38|37|36|36|35|35|34|33|33|46|49|34|43|42|37|38|39|41|41|42|43|44|45|46|47|48|49|50|51|63|53|54|57|56|57|59|59|62|61|62|63|0\n30|29|28|27|27|26|24|24|22|21|20|19|18|17|17|23|18|19|20|21|22|23|25|25|26|31|28|29|30|31|0\n7|6|5|5|6|7|0\n71|70|70|72|67|66|61|54|53|53|51|51|50|50|49|48|48|57|58|59|46|45|45|47|62|63|64|43|42|41|41|39|39|38|38|68|69|40|40|44|42|43|44|65|46|47|60|49|56|52|52|55|54|55|56|57|58|59|60|61|62|63|64|65|66|67|68|69|73|71|72|73|0\n30|30|26|25|25|27|23|22|22|21|19|18|18|17|17|29|20|19|20|21|24|23|24|28|26|27|28|29|31|31|0\n21|19|19|15|15|16|13|13|12|12|18|14|14|17|16|17|18|20|20|21|0\n9|9|10|8|7|7|8|11|10|11|0\n9|6|6|7|8|7|8|9|0\n35|35|34|33|32|31|30|29|28|27|26|26|37|25|23|23|22|21|21|39|22|24|24|25|38|27|28|29|30|31|32|33|34|36|36|37|38|39|0\n17|16|14|14|15|18|19|13|12|12|21|13|20|15|16|17|18|19|20|21|0\n39|36|35|35|34|33|32|32|29|28|26|26|25|24|23|22|21|21|30|31|22|23|24|25|27|27|28|29|30|31|38|33|34|37|36|37|38|39|0\n22|21|21|23|20|19|19|25|17|17|16|15|15|27|16|18|18|26|20|24|22|23|24|25|26|27|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n51|48|47|46|46|49|45|44|43|42|41|41|52|53|40|39|38|37|36|35|34|33|31|31|30|29|29|55|30|32|32|33|34|35|36|37|38|39|40|54|42|43|44|45|50|47|48|49|50|51|52|53|54|55|0\n25|24|20|20|21|18|17|17|16|15|14|14|23|15|16|19|18|19|22|21|22|23|24|25|0\n26|25|25|24|22|22|19|19|16|16|17|15|15|21|18|17|18|20|20|21|23|23|24|27|26|27|0\n37|37|36|34|34|33|31|31|32|39|29|29|28|27|26|24|24|23|22|22|41|23|25|25|26|27|28|30|30|40|32|33|35|35|36|38|38|39|40|41|0\n23|23|21|21|20|19|18|18|16|15|14|14|17|15|16|17|25|19|20|22|22|24|24|25|0\n37|35|34|33|33|28|26|25|25|24|23|23|29|30|22|21|20|20|32|21|22|31|24|27|26|27|28|29|30|31|32|36|34|35|36|37|0\n55|55|56|54|52|52|49|47|46|46|45|43|42|42|41|41|40|39|38|36|36|35|33|32|32|31|30|30|51|31|34|33|34|35|37|37|38|39|40|50|44|43|44|45|48|47|48|49|50|51|53|53|54|57|56|57|0\n29|27|27|26|24|23|22|22|20|19|18|16|16|17|21|17|18|19|20|21|25|23|24|25|26|28|28|29|0\n8|6|6|7|9|7|8|9|0\n19|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|21|20|20|21|0\n40|39|38|37|36|36|35|34|33|29|28|28|27|26|26|31|23|23|24|22|22|25|24|25|32|27|30|29|30|31|32|33|34|35|41|37|38|39|40|41|0\n56|56|57|55|55|51|50|50|49|47|46|45|45|44|43|43|42|41|39|38|37|36|35|34|34|33|32|31|31|54|32|33|40|35|36|37|38|39|40|41|42|53|44|48|46|47|48|49|52|51|52|53|54|59|58|57|58|59|0\n25|23|22|21|20|18|18|16|16|15|14|14|24|15|17|17|19|19|20|21|22|23|24|25|0\n23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0\n47|44|44|43|39|39|38|36|36|37|35|34|33|33|31|30|30|29|27|26|26|25|25|46|28|27|28|29|32|31|32|42|34|35|41|37|38|40|40|41|42|43|45|45|46|47|0\n38|37|36|35|32|32|33|34|31|29|28|27|26|23|23|24|22|21|21|30|22|25|24|25|26|27|28|29|30|31|39|33|34|35|36|37|38|39|0\n50|49|49|51|47|46|45|45|44|43|41|41|42|37|36|34|33|33|35|38|31|30|30|29|28|28|40|29|32|31|32|39|34|35|36|37|38|39|40|53|42|43|44|48|46|47|48|52|50|51|52|53|0\n65|64|64|63|61|60|60|59|57|57|56|55|54|50|50|49|49|52|47|47|46|45|44|43|42|41|41|39|38|37|36|35|35|40|36|37|38|39|40|67|42|43|44|45|46|48|48|53|51|51|52|53|54|55|56|58|58|59|62|61|62|63|66|65|66|67|0\n3|3|0\n26|25|25|22|21|21|20|17|17|16|16|15|15|24|19|18|18|19|20|23|22|23|24|27|26|27|0\n61|60|53|52|51|51|50|48|47|47|49|55|46|45|44|44|57|58|43|43|42|41|39|39|38|37|34|34|33|33|36|63|35|35|36|37|38|40|40|41|42|62|59|45|46|56|48|49|50|54|52|53|54|55|56|57|58|59|60|61|62|63|0\n23|17|17|18|19|16|16|21|22|15|15|14|14|25|24|20|18|19|20|21|22|23|24|25|0\n40|37|37|38|36|36|31|30|29|29|32|33|27|27|25|24|24|23|22|22|35|23|26|25|26|28|28|34|30|31|32|33|34|35|41|39|38|39|40|41|0\n62|60|59|58|57|56|56|55|54|53|53|52|50|49|49|47|43|42|40|40|38|38|39|44|45|37|36|35|33|33|34|48|34|35|36|37|46|39|41|41|42|43|44|45|46|47|48|51|50|51|52|63|54|55|61|57|58|59|60|61|62|63|0\n64|63|62|61|60|57|57|56|55|55|59|53|49|48|48|47|46|45|45|44|43|42|42|41|40|37|37|36|36|35|34|34|54|35|39|38|38|39|40|41|52|43|44|51|46|47|50|49|50|51|52|53|54|65|56|58|58|59|60|61|62|63|64|65|0\n35|33|32|31|30|27|27|26|25|24|23|23|22|21|20|19|19|34|20|21|22|29|24|25|26|28|28|29|30|31|32|33|34|35|0\n47|46|45|43|41|40|40|39|37|36|35|33|33|34|32|30|29|29|28|27|26|25|25|44|26|27|28|31|30|31|32|38|34|35|36|37|38|39|42|41|42|43|44|45|46|47|0\n37|34|33|32|32|31|29|28|27|26|25|25|24|23|22|20|20|21|36|21|22|23|24|30|26|27|28|29|30|31|35|33|34|35|36|37|0\n63|60|60|59|58|57|56|55|53|52|51|51|50|49|48|42|41|40|40|43|38|38|37|36|36|45|46|35|34|33|33|62|34|35|47|37|39|39|44|41|42|43|44|45|46|47|48|49|50|54|52|53|54|55|56|57|58|59|61|61|62|63|0\n35|35|36|33|32|30|30|27|25|25|24|23|23|28|21|21|20|20|34|22|22|29|24|26|26|27|28|29|31|31|32|33|34|37|36|37|0\n41|41|39|38|38|37|36|35|35|43|32|31|31|30|30|28|27|26|26|25|24|24|45|25|29|27|28|29|34|33|32|33|34|44|36|37|40|39|40|42|42|43|44|45|0\n32|29|29|30|31|26|26|25|24|21|21|20|19|19|18|18|28|23|20|22|22|23|24|25|27|27|28|33|30|31|32|33|0\n25|24|22|20|19|18|17|17|16|15|14|14|23|15|16|21|18|19|20|21|22|23|24|25|0\n37|37|36|34|34|32|32|30|30|28|27|27|26|25|22|22|23|21|21|39|24|23|24|25|26|29|28|29|31|31|33|33|35|35|36|38|38|39|0\n22|16|16|17|18|15|15|20|21|13|13|14|14|23|19|17|18|19|20|21|22|23|0\n49|47|46|45|44|42|41|41|40|37|37|36|34|34|35|33|31|30|30|29|28|26|26|27|48|27|28|29|32|31|32|33|39|35|36|38|38|39|40|43|42|43|44|45|46|47|48|49|0\n61|59|57|57|55|54|54|53|52|51|48|48|49|47|46|41|41|42|43|44|40|39|38|38|37|34|33|32|32|35|36|33|34|35|36|37|60|39|40|45|42|43|44|45|46|47|50|49|50|51|52|53|56|55|56|58|58|59|60|61|0\n3|3|0\n35|33|31|31|30|28|26|26|27|25|23|23|22|21|20|19|19|34|20|21|22|24|24|25|29|27|28|29|30|32|32|33|34|35|0\n21|21|22|20|20|24|25|19|19|17|16|15|15|18|16|17|18|27|26|23|22|23|24|25|26|27|0\n19|17|11|11|12|13|14|15|16|18|12|13|14|15|16|17|18|19|0\n47|38|38|39|40|41|36|36|35|35|43|34|33|32|31|30|30|45|28|27|26|25|25|29|26|27|28|29|46|31|32|33|34|44|37|37|42|39|40|41|42|43|44|45|46|47|0\n31|30|30|29|28|28|33|27|23|22|21|21|24|25|20|19|19|35|20|26|22|23|24|25|26|27|34|29|32|31|32|33|34|35|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n40|40|38|37|36|34|33|32|30|29|29|31|28|27|26|25|24|23|22|22|39|23|24|25|26|27|28|35|30|31|32|33|34|35|36|37|38|39|41|41|0\n19|17|16|15|13|12|12|11|11|18|14|13|14|15|16|17|18|19|0\n10|9|7|7|8|11|8|9|10|11|0\n54|53|51|50|49|49|52|55|48|47|44|43|42|40|39|39|38|37|37|45|36|35|33|32|32|30|30|31|57|31|34|33|34|35|36|46|38|41|40|41|42|43|44|45|46|47|48|56|50|51|52|53|54|55|56|57|0\n36|35|34|33|33|32|30|30|28|27|25|24|24|23|21|21|20|20|29|22|22|23|26|25|26|27|28|29|31|31|32|37|34|35|36|37|0\n35|32|32|33|31|31|30|28|28|27|26|25|25|23|22|20|20|21|24|21|22|23|24|37|26|27|29|29|30|36|34|33|34|35|36|37|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n33|31|30|29|28|27|26|25|24|24|23|22|19|19|18|18|21|20|20|21|22|23|32|25|26|27|28|29|30|31|32|33|0\n15|14|10|10|11|9|9|13|12|11|12|13|14|15|0\n45|44|43|43|41|41|38|38|37|36|34|33|33|35|40|31|30|29|27|27|26|25|25|32|26|28|28|29|30|31|32|47|34|35|36|37|39|39|40|42|42|46|44|45|46|47|0\n40|38|38|39|37|36|35|35|33|33|32|32|31|30|28|27|25|25|24|23|23|29|24|26|26|27|28|29|30|31|43|34|34|42|36|37|41|39|40|41|42|43|0\n14|14|13|10|10|9|9|12|11|11|12|13|15|15|0\n26|25|25|24|22|21|20|20|18|17|15|15|16|19|16|17|18|19|23|21|22|23|24|27|26|27|0\n12|11|11|13|10|10|9|9|15|14|12|13|14|15|0\n23|20|20|19|16|16|17|15|14|13|13|22|14|15|18|17|18|19|21|21|22|23|0\n48|46|46|45|44|43|42|41|40|39|38|37|37|49|36|35|34|32|31|31|30|28|27|27|29|51|28|29|30|33|32|33|34|35|36|50|38|39|40|41|42|43|44|45|47|47|48|49|50|51|0\n7|7|6|6|9|8|8|9|0\n74|73|72|71|70|63|63|64|65|66|62|61|61|68|59|59|58|57|56|53|52|51|51|54|50|49|46|46|47|45|44|43|42|41|40|39|39|75|40|41|42|43|44|45|48|47|48|49|50|55|52|53|54|55|56|57|58|60|60|69|62|67|64|65|66|67|68|69|70|71|72|73|74|75|0\n21|21|15|15|16|17|18|19|14|13|13|23|14|20|16|17|18|19|20|22|22|23|0\n24|23|22|21|21|25|19|18|18|17|15|15|16|27|16|17|20|19|20|26|22|23|24|25|26|27|0\n40|39|39|38|34|34|35|36|37|33|32|32|43|31|30|29|27|27|26|25|24|24|45|25|26|28|28|29|30|31|44|33|42|35|36|37|38|41|40|41|42|43|44|45|0\n24|23|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|25|24|25|0\n72|71|71|70|69|68|67|66|65|65|64|62|61|60|59|58|56|55|55|54|53|53|63|51|50|49|47|47|46|45|44|42|41|41|40|39|39|52|40|43|42|43|44|45|46|48|48|49|50|51|52|75|54|57|56|57|58|59|60|61|62|63|64|74|66|67|68|69|70|73|72|73|74|75|0\n67|61|61|60|59|58|58|63|64|57|54|53|51|50|50|49|48|47|46|45|45|55|44|43|41|41|40|39|38|37|36|35|35|66|36|37|38|39|40|42|42|43|44|56|46|47|48|49|52|51|52|53|54|55|56|57|65|59|60|62|62|63|64|65|66|67|0\n47|46|46|45|44|44|49|40|40|41|39|39|38|37|37|51|35|35|34|33|33|53|31|31|30|29|29|55|30|32|32|54|34|36|36|52|38|43|42|41|42|43|50|45|48|47|48|49|50|51|52|53|54|55|0\n73|72|69|69|68|68|67|67|74|75|65|64|59|58|58|57|56|56|61|62|55|54|53|52|52|51|50|49|46|46|45|45|44|43|41|41|40|40|77|42|42|43|44|48|47|47|48|49|50|51|66|53|54|55|63|57|60|59|60|61|62|63|64|65|66|76|71|70|70|71|72|73|74|75|76|77|0\n25|24|23|23|26|27|21|20|19|19|17|17|16|16|29|18|18|22|20|21|22|28|24|25|26|27|28|29|0\n53|52|50|47|47|48|46|45|45|44|43|42|40|40|39|38|38|54|55|36|36|35|34|33|32|31|30|30|57|31|32|33|34|35|37|37|56|39|41|41|42|43|44|51|46|49|48|49|50|51|52|53|54|55|56|57|0\n76|76|73|73|70|70|69|68|68|65|64|62|61|61|60|60|59|58|57|57|56|55|54|53|52|51|47|46|46|48|49|45|44|43|42|41|40|40|75|41|42|43|44|45|50|47|48|49|50|51|52|53|54|55|56|67|58|59|66|63|62|63|64|65|66|67|72|69|71|71|72|74|74|75|77|77|0\n39|37|36|33|33|32|31|30|30|29|28|27|26|25|23|23|22|21|21|38|22|24|24|25|26|27|28|29|35|31|32|34|34|35|36|37|38|39|0\n35|32|31|31|30|30|27|26|26|25|24|23|22|20|20|19|19|29|21|21|22|23|24|25|28|27|28|29|34|33|32|33|34|35|0\n72|71|69|69|68|68|67|65|64|63|62|61|60|59|58|58|57|55|54|54|56|74|75|51|50|50|49|48|48|47|45|45|44|42|42|41|40|40|77|41|43|43|44|46|46|47|53|49|52|51|52|53|76|55|56|57|66|59|60|61|62|63|64|65|66|67|73|70|70|71|72|73|74|75|76|77|0\n42|41|41|43|39|39|38|35|34|33|32|31|31|36|30|28|28|27|26|25|24|24|45|25|26|27|29|29|30|37|32|33|34|35|36|37|38|40|40|44|42|43|44|45|0\n19|17|17|16|14|13|12|11|11|15|12|13|14|15|16|18|18|19|0\n25|22|21|21|20|18|17|17|15|15|14|14|24|16|16|19|18|19|20|23|22|23|24|25|0\n22|22|18|18|19|16|16|13|13|14|15|21|14|15|17|17|20|19|20|21|23|23|0\n26|26|25|23|23|22|22|28|29|20|20|19|17|17|18|31|18|19|21|21|30|24|24|25|27|27|28|29|30|31|0\n26|26|24|23|22|20|20|19|16|16|17|15|15|25|18|17|18|19|21|21|22|23|24|25|27|27|0\n44|44|45|43|43|47|42|41|40|40|49|38|38|39|35|34|34|33|31|31|30|29|28|27|27|37|28|29|30|32|32|33|36|35|36|37|51|39|50|41|42|48|46|45|46|47|48|49|50|51|0\n23|20|20|19|16|14|14|15|17|13|13|22|18|15|16|17|18|19|21|21|22|23|0\n71|65|64|64|63|63|67|68|62|60|60|59|59|58|57|55|54|52|51|51|53|47|47|48|45|44|44|43|42|41|39|38|38|37|37|50|40|39|40|41|42|43|46|45|46|49|48|49|50|56|52|53|54|55|56|57|58|70|61|61|62|69|66|65|66|67|68|69|70|71|0\n50|49|48|47|47|46|43|42|42|41|40|39|38|35|34|33|33|36|37|30|30|29|28|27|27|32|28|29|31|31|32|45|34|35|36|37|38|39|40|41|44|43|44|45|46|51|48|49|50|51|0\n37|36|36|35|33|33|32|30|29|28|27|27|31|39|25|24|24|22|22|23|41|23|26|25|26|40|28|29|30|31|32|34|34|35|38|37|38|39|40|41|0\n20|19|19|21|18|17|16|15|14|13|13|23|14|15|16|17|18|22|20|21|22|23|0\n33|32|32|31|30|29|28|28|35|27|26|24|23|23|22|21|20|20|37|21|22|25|24|25|26|27|36|29|30|31|34|33|34|35|36|37|0\n11|11|9|9|10|8|8|13|10|12|12|13|0\n47|47|45|45|46|42|41|39|38|37|37|40|36|34|33|32|32|31|29|28|28|27|26|26|44|27|30|29|30|31|35|33|34|35|36|43|38|39|40|41|42|43|44|49|46|48|48|49|0\n26|25|25|27|24|24|22|21|20|19|18|17|16|16|23|17|18|19|20|21|22|23|29|28|26|27|28|29|0\n20|19|19|16|16|15|13|13|12|12|18|14|14|15|17|17|18|21|20|21|0\n48|45|44|44|46|43|42|41|41|40|38|37|36|36|34|33|31|30|30|29|28|27|26|26|35|27|28|29|32|31|32|33|34|35|39|37|38|39|40|49|42|43|47|45|46|47|48|49|0\n51|46|46|45|44|44|48|43|37|36|36|38|35|34|33|33|40|41|31|31|30|29|28|27|27|50|28|29|30|32|32|42|34|35|39|37|38|39|40|41|42|43|49|45|47|47|48|49|50|51|0\n32|31|30|29|27|27|26|25|24|23|21|20|20|19|18|18|33|19|22|21|22|23|24|25|26|28|28|29|30|31|32|33|0\n58|57|53|52|52|51|49|49|48|46|45|45|47|55|44|42|41|41|40|39|38|38|37|35|35|32|32|31|31|34|33|33|34|36|36|37|59|39|40|43|42|43|44|56|46|47|48|50|50|51|54|53|54|55|56|57|58|59|0\n19|18|18|17|17|14|14|12|12|13|16|13|15|15|16|21|20|19|20|21|0\n39|38|37|36|33|33|32|29|29|30|28|26|25|24|24|23|22|21|21|35|22|23|27|25|26|27|28|31|30|31|32|34|34|35|36|37|38|39|0\n33|31|30|29|28|26|25|24|24|23|19|19|20|21|18|18|32|22|20|21|22|23|27|25|26|27|28|29|30|31|32|33|0\n42|41|41|40|38|37|36|36|34|31|30|29|29|32|28|27|24|24|23|23|26|35|25|25|26|27|28|33|30|31|32|33|34|35|39|37|38|39|40|43|42|43|0\n30|29|29|28|26|26|25|25|32|33|23|23|22|21|20|19|19|35|20|21|22|24|24|34|27|27|28|31|30|31|32|33|34|35|0\n66|62|62|60|59|59|57|55|55|54|53|52|52|51|50|49|48|48|64|46|46|45|44|43|43|42|41|39|37|37|36|35|35|40|36|38|38|39|40|41|42|67|44|45|47|47|65|49|50|51|58|53|54|56|56|57|58|61|60|61|63|63|64|65|66|67|0\n41|38|38|36|35|35|34|31|31|32|30|27|27|26|26|24|23|23|22|22|40|25|24|25|29|28|28|29|30|33|32|33|34|37|36|37|39|39|40|41|0\n30|29|28|27|25|23|23|24|22|20|20|18|18|17|17|31|19|19|21|21|22|26|24|25|26|27|28|29|30|31|0\n44|42|41|40|39|39|43|38|37|35|34|31|31|32|30|29|25|25|26|27|24|24|36|28|26|27|28|29|30|33|32|33|34|35|36|37|38|45|40|41|42|43|44|45|0\n16|14|14|13|12|11|10|10|17|11|12|13|15|15|16|17|0\n42|37|37|38|36|36|40|35|34|34|33|32|31|29|28|27|25|25|23|23|24|30|24|26|26|27|28|29|30|31|32|33|43|35|41|39|38|39|40|41|42|43|0\n5|4|4|5|0\n41|39|38|37|36|34|34|32|32|31|30|29|28|27|26|25|24|22|22|23|40|23|24|25|26|27|28|29|30|31|33|33|35|35|36|37|38|39|40|41|0\n15|13|13|14|12|12|10|10|11|11|17|16|14|15|16|17|0\n18|15|15|16|14|12|12|11|11|19|13|13|14|17|16|17|18|19|0\n15|13|12|9|9|10|11|14|10|11|12|13|14|15|0\n20|20|17|15|15|16|13|13|12|12|19|14|14|18|16|17|18|19|21|21|0\n44|44|43|42|42|46|41|40|39|39|48|37|36|35|33|31|31|30|29|29|28|27|26|26|38|27|28|34|30|32|32|33|34|35|36|37|38|49|40|41|47|43|45|45|46|47|48|49|0\n8|8|6|6|7|7|9|9|0\n13|11|11|10|8|8|9|9|10|12|12|13|0\n35|33|31|30|29|28|28|27|25|25|24|22|22|21|20|19|19|34|20|21|23|23|24|26|26|27|32|29|30|31|32|33|34|35|0\n19|18|17|17|20|16|14|13|12|12|15|13|14|15|16|21|18|19|20|21|0\n46|44|44|42|41|41|40|39|38|37|36|35|34|34|47|32|32|31|30|29|28|27|26|26|49|27|28|29|30|31|33|33|48|35|36|37|38|39|40|43|42|43|45|45|46|47|48|49|0\n20|18|18|16|16|15|15|14|12|12|13|13|14|21|17|17|19|19|20|21|0\n19|18|17|15|14|13|12|11|11|16|12|13|14|15|16|17|18|19|0\n57|55|53|53|52|50|49|49|48|47|46|44|44|43|40|39|39|41|38|37|35|33|33|32|32|31|30|30|56|31|36|34|34|35|36|37|38|42|40|41|42|43|45|45|46|47|48|51|50|51|52|54|54|55|56|57|0\n32|32|33|31|31|29|28|26|26|25|22|21|21|20|20|19|19|30|24|23|22|23|24|25|27|27|28|29|30|35|34|33|34|35|0\n24|24|23|22|22|26|20|17|17|18|16|15|15|21|16|19|18|19|20|21|27|23|25|25|26|27|0\n58|57|56|55|53|53|51|51|50|49|49|59|48|45|41|41|42|43|40|40|39|38|37|37|36|35|34|33|32|32|61|33|34|35|36|47|38|39|46|44|42|43|44|45|46|47|48|60|50|52|52|54|54|55|56|57|58|59|60|61|0\n41|41|40|38|38|37|37|43|35|35|34|33|32|31|29|29|28|26|26|25|24|24|45|25|27|27|28|30|30|31|32|33|34|36|36|44|39|39|40|42|42|43|44|45|0\n15|15|13|13|14|11|10|10|12|11|12|17|14|16|16|17|0\n28|27|26|25|23|23|22|21|21|19|17|16|16|18|20|17|18|19|20|29|22|24|24|25|26|27|28|29|0\n31|31|32|30|27|26|26|28|25|25|34|24|22|21|20|19|19|23|20|21|22|23|24|35|29|27|28|29|30|33|32|33|34|35|0\n31|30|27|26|25|24|23|23|22|20|19|19|18|17|17|29|18|21|20|21|22|28|24|25|26|27|28|29|30|31|0\n34|33|32|32|31|30|27|27|24|24|25|23|21|20|20|19|19|29|22|21|22|23|26|25|26|28|28|29|30|31|35|33|34|35|0\n60|60|58|57|55|54|53|53|50|48|46|45|45|47|49|51|44|43|42|41|40|38|38|37|36|34|34|33|32|32|59|33|35|35|36|37|39|39|40|41|42|43|44|52|46|47|48|49|50|51|52|56|54|55|56|57|58|59|61|61|0\n51|50|50|49|47|46|44|42|42|43|41|41|40|39|38|38|34|33|31|31|30|28|28|29|35|36|37|29|30|32|32|33|34|35|36|37|53|39|40|48|45|43|44|45|46|47|48|49|52|51|52|53|0\n32|32|29|29|27|27|24|20|20|21|19|19|23|25|18|18|31|26|22|21|22|23|24|25|26|28|28|30|30|31|33|33|0\n72|72|70|63|62|62|61|60|60|65|59|58|57|55|54|53|53|52|51|50|49|49|67|68|47|45|45|46|44|41|40|40|42|39|38|38|71|39|43|41|42|43|44|48|46|47|48|69|50|51|52|56|54|55|56|57|58|59|66|61|64|63|64|65|66|67|68|69|70|71|73|73|0\n21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0\n42|41|40|40|39|38|36|34|34|33|32|31|29|28|28|27|26|25|24|23|23|37|24|25|26|27|30|29|30|31|32|33|35|35|36|37|38|39|43|41|42|43|0\n44|43|40|39|38|37|37|41|36|34|32|32|33|31|31|29|28|26|26|25|24|24|30|25|27|27|28|29|30|45|35|33|34|35|36|42|38|39|40|41|42|43|44|45|0\n30|28|28|27|26|25|24|23|23|22|21|19|17|17|18|20|18|19|20|21|22|31|24|25|26|27|29|29|30|31|0\n21|20|18|18|17|14|14|13|12|12|16|13|15|15|16|17|19|19|20|21|0\n26|25|25|24|23|21|19|18|17|17|16|15|15|22|16|20|18|19|20|21|22|23|24|27|26|27|0\n56|54|54|53|51|50|49|49|48|47|46|46|57|45|42|42|41|40|40|39|38|37|36|35|34|33|32|31|31|59|32|33|34|35|36|37|38|39|44|41|43|43|44|45|58|47|48|52|50|51|52|53|55|55|56|57|58|59|0\n38|37|36|34|34|33|33|32|31|28|28|22|22|23|24|25|26|21|21|30|27|23|24|25|26|27|29|29|30|31|32|39|35|35|36|37|38|39|0\n33|32|31|30|28|27|27|26|25|24|24|34|35|23|21|21|20|20|37|22|22|23|36|25|26|29|28|29|30|31|32|33|34|35|36|37|0\n47|45|45|43|40|40|39|39|38|36|36|35|34|33|32|31|30|28|27|26|26|25|25|44|29|27|28|29|30|31|32|33|34|35|37|37|38|42|41|41|42|43|44|46|46|47|0\n41|39|39|38|37|36|35|34|33|32|31|30|30|42|43|29|28|27|26|25|24|24|45|25|26|27|28|29|44|31|32|33|34|35|36|37|38|40|40|41|42|43|44|45|0\n39|38|38|37|35|35|34|33|30|29|29|31|28|28|26|25|23|23|22|22|27|24|24|25|26|27|41|32|30|31|32|33|34|36|36|37|40|39|40|41|0\n20|20|17|16|16|15|14|12|12|13|19|13|14|15|18|17|18|19|21|21|0\n17|16|15|13|13|11|10|10|12|11|12|14|14|15|16|17|0\n30|29|29|28|26|25|23|23|21|21|19|19|18|17|17|27|18|20|20|22|22|24|24|25|26|27|28|31|30|31|0\n32|32|31|27|27|28|26|25|23|23|24|21|20|18|18|19|22|19|20|21|22|30|24|25|26|29|28|29|30|31|33|33|0\n59|59|60|58|55|54|52|52|51|51|56|50|48|48|47|47|62|63|46|45|44|42|40|40|39|39|38|37|36|35|34|34|65|35|36|37|38|43|41|41|42|43|44|45|46|64|49|49|50|57|53|53|54|55|56|57|58|61|60|61|62|63|64|65|0\n31|31|32|29|29|28|26|26|25|24|24|34|35|23|22|20|20|21|37|21|22|23|36|25|27|27|28|30|30|33|32|33|34|35|36|37|0\n17|15|14|12|11|10|10|13|16|11|12|13|14|15|16|17|0\n24|23|22|21|21|20|19|17|16|15|14|14|18|15|16|17|18|19|20|25|22|23|24|25|0\n22|21|20|19|19|17|16|15|13|13|14|18|14|15|16|17|18|23|20|21|22|23|0\n28|28|27|25|25|22|21|20|19|19|23|18|17|16|16|17|18|24|20|21|22|23|24|26|26|27|29|29|0\n19|16|16|15|14|12|11|11|13|18|12|13|14|15|17|17|18|19|0\n34|34|32|29|28|28|30|27|26|25|24|23|22|21|20|19|19|33|20|21|22|23|24|25|26|27|31|29|30|31|32|33|35|35|0\n41|40|39|38|38|42|36|35|34|33|31|30|29|28|26|26|27|25|24|23|23|37|24|25|32|27|28|29|30|31|32|33|34|35|36|37|43|39|40|41|42|43|0\n48|47|47|45|40|40|41|39|39|43|38|36|35|34|33|33|32|30|30|28|28|27|26|26|46|27|29|29|31|31|32|37|34|35|36|37|38|44|42|41|42|43|44|45|46|49|48|49|0\n14|13|13|15|11|11|10|10|17|12|12|16|14|15|16|17|0\n35|33|32|30|29|29|28|26|26|25|24|23|22|22|20|19|19|21|20|21|34|23|24|25|27|27|28|31|30|31|32|33|34|35|0\n19|18|16|16|17|15|15|12|12|13|14|13|14|21|20|17|18|19|20|21|0\n58|58|53|49|49|50|48|47|46|46|45|44|43|42|41|41|54|55|40|39|38|35|35|34|34|33|32|31|31|57|32|33|37|36|36|37|38|39|40|56|42|43|44|45|52|47|48|51|50|51|52|53|54|55|56|57|59|59|0\n52|50|50|48|48|47|45|45|46|44|42|41|41|39|38|36|36|34|34|33|31|31|29|29|28|28|40|30|30|32|32|33|35|35|37|37|38|39|40|43|42|43|44|53|46|47|49|49|51|51|52|53|0\n30|29|29|28|26|24|22|22|21|20|19|18|18|17|17|27|25|19|20|21|23|23|24|25|26|27|28|31|30|31|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n33|33|32|30|30|28|27|27|26|25|25|23|22|21|20|19|19|24|20|21|22|23|24|35|26|29|28|29|31|31|32|34|34|35|0\n21|21|20|20|18|17|16|15|13|13|14|19|14|15|16|17|18|19|23|22|22|23|0\n9|8|7|6|6|7|8|9|0\n49|48|46|45|45|44|43|42|42|50|51|39|38|38|40|37|36|34|33|33|32|31|29|29|28|28|53|30|30|31|32|35|34|35|36|37|41|39|40|41|52|43|44|47|46|47|48|49|50|51|52|53|0\n32|32|31|29|29|28|27|26|25|25|34|35|23|22|22|21|20|20|37|21|24|23|24|36|26|27|28|30|30|31|33|33|34|35|36|37|0\n24|24|22|17|17|16|16|19|15|15|14|14|23|21|20|18|18|19|20|21|22|23|25|25|0\n17|17|16|15|14|13|12|11|11|19|12|13|14|15|16|18|18|19|0\n45|42|40|40|39|39|43|38|38|37|36|35|31|30|30|32|29|28|28|27|26|25|25|47|26|27|34|29|33|31|32|33|34|35|36|37|46|44|41|41|42|43|44|45|46|47|0\n20|19|18|18|17|15|14|14|12|12|13|13|16|15|16|17|21|19|20|21|0\n27|26|25|23|21|21|20|19|17|17|16|15|15|24|16|18|18|19|20|22|22|23|24|25|26|27|0\n46|45|44|43|42|42|41|39|37|37|38|34|33|32|32|31|30|29|28|27|25|25|26|36|26|27|28|29|30|31|35|33|34|35|36|40|38|39|40|41|47|43|44|45|46|47|0\n29|27|25|24|23|22|21|21|20|18|17|17|16|16|28|19|18|19|20|26|22|23|24|25|26|27|28|29|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n31|31|30|29|29|33|25|24|24|26|23|21|21|22|19|19|20|35|20|28|22|23|27|25|26|27|28|34|30|32|32|33|34|35|0\n61|60|57|57|56|55|54|51|50|49|49|48|47|45|45|46|44|43|41|40|39|39|38|36|36|35|34|33|32|32|59|33|34|35|37|37|38|42|40|41|42|43|44|53|46|47|48|52|50|51|52|53|54|55|56|58|58|59|60|61|0\n26|26|24|23|21|20|20|18|17|16|16|15|15|25|19|17|18|19|22|21|22|23|24|25|27|27|0\n62|61|59|57|57|58|56|53|52|52|54|51|50|50|48|46|46|45|44|43|41|41|40|39|38|36|35|35|34|33|33|49|34|37|36|37|38|39|40|42|42|43|44|45|47|47|48|49|63|51|55|53|54|55|56|60|58|59|60|61|62|63|0\n20|20|17|16|14|14|13|12|12|18|19|13|15|15|16|17|18|19|21|21|0\n19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0\n33|31|31|29|26|26|25|23|23|22|20|20|21|19|18|18|30|19|28|21|22|24|24|25|27|27|28|29|30|32|32|33|0\n19|17|16|15|13|12|12|11|11|18|14|13|14|15|16|17|18|19|0\n31|28|28|27|26|25|24|21|21|20|20|19|18|17|17|30|18|19|23|22|22|23|24|25|26|27|29|29|30|31|0\n41|41|40|39|37|36|36|38|35|33|33|30|30|28|27|26|25|25|24|23|23|32|24|29|26|27|28|29|31|31|32|34|34|35|43|37|38|39|40|42|42|43|0\n25|24|23|22|22|21|20|19|18|17|15|15|16|27|16|17|18|19|20|21|26|23|24|25|26|27|0\n23|23|22|21|21|20|19|18|16|15|14|14|17|15|16|17|18|19|20|25|22|24|24|25|0\n30|24|24|25|26|27|28|29|18|18|19|17|17|21|22|23|20|19|20|21|22|23|31|25|26|27|28|29|30|31|0\n33|31|27|27|26|25|25|29|24|23|21|21|20|19|18|18|32|19|20|22|22|23|24|30|26|28|28|29|30|31|32|33|0\n13|12|12|14|15|11|10|10|17|11|16|13|14|15|16|17|0\n60|60|56|54|53|52|52|51|49|49|50|57|48|47|46|44|44|42|41|41|39|39|38|36|35|35|34|33|32|32|59|33|34|37|36|37|38|40|40|43|42|43|45|45|46|47|48|58|50|51|55|53|54|55|56|57|58|59|61|61|0\n55|54|51|50|49|45|43|43|44|40|40|39|38|38|37|34|34|35|33|32|32|31|29|29|30|48|52|53|30|31|47|33|36|35|36|37|42|39|41|41|42|46|44|45|46|47|48|49|50|51|52|53|54|55|0\n33|32|31|31|30|29|28|27|26|25|23|22|22|21|20|20|19|19|35|21|24|23|24|25|26|27|28|29|30|34|32|33|34|35|0\n62|61|59|59|57|57|56|55|54|53|53|51|47|46|45|45|48|44|42|42|41|38|38|39|40|50|36|35|33|33|34|37|34|35|36|37|52|39|40|41|43|43|44|49|46|47|48|49|50|51|52|63|54|55|56|58|58|60|60|61|62|63|0\n44|43|42|41|39|38|37|37|35|35|34|34|33|32|30|30|28|26|26|25|24|24|29|25|27|27|28|29|31|31|32|33|45|36|36|40|38|39|40|41|42|43|44|45|0\n64|63|63|62|60|60|55|55|54|52|51|51|53|50|48|47|47|46|44|43|42|42|41|40|38|37|36|36|35|34|34|58|59|35|39|37|38|39|40|41|45|43|44|45|46|49|48|49|50|57|52|53|54|56|56|57|58|59|61|61|62|65|64|65|0\n18|17|13|13|14|12|11|11|16|19|12|15|14|15|16|17|18|19|0\n37|35|33|32|31|31|30|28|28|27|26|25|23|23|22|21|20|20|36|21|22|24|24|25|26|27|29|29|30|34|32|33|34|35|36|37|0\n39|29|28|28|30|31|32|27|26|26|34|35|25|24|24|23|21|21|22|38|22|23|37|25|36|27|33|29|30|31|32|33|34|35|36|37|38|39|0\n49|49|48|47|45|45|44|42|40|40|39|39|38|38|37|35|34|34|31|29|29|27|27|28|32|33|28|30|30|31|32|33|36|35|36|37|51|43|41|41|42|43|44|46|46|47|48|50|50|51|0\n64|63|63|62|61|61|60|59|58|57|57|55|53|52|51|50|50|48|48|45|45|44|42|42|43|40|39|37|37|38|36|35|35|56|36|41|38|39|40|41|47|43|44|46|46|47|49|49|54|51|52|53|54|55|56|67|58|59|60|66|62|65|64|65|66|67|0\n68|67|66|65|64|63|62|62|60|59|57|56|56|55|53|52|52|49|49|48|47|46|46|45|43|42|41|41|40|38|38|37|36|36|61|37|39|39|40|44|42|43|44|45|51|47|48|50|50|51|54|53|54|55|58|57|58|59|60|61|69|63|64|65|66|67|68|69|0\n48|48|42|42|41|40|38|38|39|44|45|37|36|35|34|30|29|29|28|28|32|27|26|26|47|27|33|31|30|31|32|33|34|35|36|37|46|39|40|41|43|43|44|45|46|47|49|49|0\n40|40|38|37|34|33|32|31|30|29|29|28|27|26|26|25|24|23|22|22|39|23|24|25|36|27|28|35|30|31|32|33|34|35|36|37|38|39|41|41|0\n25|22|22|23|21|21|20|19|19|17|16|15|15|18|16|17|18|27|20|26|24|23|24|25|26|27|0\n17|16|16|15|15|12|12|11|11|14|13|13|14|19|18|17|18|19|0\n19|19|20|18|16|15|13|13|12|12|17|14|14|15|16|17|18|21|20|21|0\n52|51|50|49|48|47|45|44|44|43|41|40|40|39|38|35|35|36|37|34|32|32|31|29|28|28|30|29|30|31|33|33|34|53|36|37|38|39|42|41|42|43|46|45|46|47|48|49|50|51|52|53|0\n34|34|33|32|31|30|30|36|37|28|28|27|25|24|24|23|21|21|22|39|22|23|26|25|26|27|29|29|38|31|32|33|35|35|36|37|38|39|0\n20|19|19|18|17|14|14|13|12|12|16|13|15|15|16|17|18|21|20|21|0\n38|37|36|34|34|35|33|32|29|29|28|25|25|24|23|23|22|21|21|31|22|27|24|26|26|27|28|30|30|31|32|33|39|35|36|37|38|39|0\n29|26|26|25|24|21|21|22|17|17|16|16|19|20|28|18|18|19|20|23|22|23|24|25|27|27|28|29|0\n31|26|26|25|24|23|22|20|20|19|18|18|28|17|17|30|29|19|21|21|22|23|24|25|27|27|28|29|30|31|0\n15|14|14|16|17|12|12|11|11|19|13|13|18|15|16|17|18|19|0\n29|29|27|27|26|25|25|31|23|23|22|21|20|19|18|18|33|19|20|21|22|24|24|32|26|28|28|30|30|31|32|33|0\n37|35|34|33|30|30|31|29|27|27|25|23|22|22|21|21|20|20|36|26|24|23|24|25|26|28|28|29|32|31|32|33|34|35|36|37|0\n27|25|23|22|22|21|19|19|18|16|16|15|15|26|17|17|18|20|20|21|24|23|24|25|26|27|0\n39|39|38|38|36|35|34|31|30|29|28|27|27|32|26|25|24|23|22|22|37|23|24|25|26|33|28|29|30|31|32|33|34|35|36|37|41|40|40|41|0\n10|8|7|7|9|11|8|9|10|11|0\n54|53|51|50|50|49|48|47|46|45|44|44|43|40|39|39|38|37|36|35|34|34|32|31|30|29|29|33|30|31|32|33|42|35|36|37|38|41|40|41|42|43|55|45|46|47|48|49|52|51|52|53|54|55|0\n57|55|55|54|53|51|50|50|47|47|48|42|42|41|40|39|39|44|45|37|37|36|35|34|34|58|59|33|32|32|61|33|60|35|36|38|38|46|40|41|43|43|44|45|46|49|48|49|52|51|52|53|54|56|56|57|58|59|60|61|0\n31|31|29|28|28|27|25|24|24|23|22|20|20|19|18|18|33|19|21|21|22|23|26|25|26|27|30|29|30|32|32|33|0\n69|68|68|67|65|65|64|64|62|61|60|59|58|56|55|54|54|53|52|48|48|47|47|50|46|45|44|43|42|40|40|39|38|37|37|63|38|39|41|41|42|43|44|45|46|51|49|49|50|51|52|53|57|55|56|57|58|59|60|61|62|63|71|66|66|67|70|69|70|71|0\n38|37|36|36|39|35|34|32|31|30|30|29|27|27|25|25|24|22|22|23|41|23|24|26|26|28|28|29|33|31|32|33|34|35|40|37|38|39|40|41|0\n25|25|24|23|23|20|20|19|17|17|16|15|15|22|16|18|18|19|21|21|22|27|24|26|26|27|0\n49|49|48|47|43|43|40|40|39|38|38|42|45|37|34|33|33|35|31|31|30|29|28|27|27|51|28|29|30|32|32|36|34|35|36|37|46|39|41|41|42|44|44|45|46|47|48|50|50|51|0\n24|24|25|23|19|18|18|17|17|21|15|15|16|27|16|22|20|19|20|21|22|23|26|25|26|27|0\n34|34|30|29|28|28|31|27|25|25|24|23|22|21|20|19|19|33|20|21|22|23|24|26|26|27|32|29|30|31|32|33|35|35|0\n15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0\n20|20|21|16|16|17|18|14|14|13|13|23|15|15|19|17|18|19|22|21|22|23|0\n24|24|21|20|20|22|19|18|17|17|16|15|15|27|16|26|18|19|23|21|22|23|25|25|26|27|0\n19|18|17|16|16|15|14|12|12|13|21|13|14|15|20|17|18|19|20|21|0\n68|66|66|65|65|64|63|58|58|59|60|57|56|55|52|52|53|51|48|48|47|46|46|45|43|43|42|40|39|39|37|37|36|36|62|38|38|41|40|41|42|44|44|45|50|47|49|49|50|51|54|53|54|55|56|57|61|59|60|61|62|63|64|69|67|67|68|69|0\n33|31|30|28|27|26|25|25|24|23|22|21|20|19|18|18|32|19|20|21|22|23|24|29|26|27|28|29|30|31|32|33|0\n13|9|9|10|8|8|12|11|10|11|12|13|0\n27|26|24|23|22|21|19|17|17|18|16|15|15|25|16|20|18|19|20|21|22|23|24|25|26|27|0\n23|19|19|18|18|17|16|14|14|13|13|22|15|15|16|17|21|20|20|21|22|23|0\n35|34|33|32|32|31|31|28|25|25|26|24|24|23|21|21|20|20|30|22|22|23|29|27|26|27|28|29|30|37|36|33|34|35|36|37|0\n51|47|46|43|42|42|44|41|41|40|38|38|37|35|35|34|32|32|31|31|30|29|28|27|27|50|28|29|30|49|33|33|34|36|36|37|39|39|40|48|45|43|44|45|46|47|48|49|50|51|0\n53|52|52|51|47|47|48|49|46|45|44|42|42|41|40|40|38|37|35|34|34|33|31|31|30|29|29|39|30|32|32|33|36|35|36|37|38|39|55|41|43|43|44|45|46|50|48|49|50|51|54|53|54|55|0\n39|37|35|35|34|32|32|27|23|22|21|21|24|25|26|28|29|30|31|38|22|23|24|25|26|27|28|29|30|31|33|33|34|36|36|37|38|39|0\n35|33|32|30|30|29|28|28|25|24|23|21|20|19|19|22|26|27|20|21|22|23|24|25|26|27|34|29|31|31|32|33|34|35|0\n16|15|14|13|12|12|10|10|11|11|17|13|14|15|16|17|0\n41|41|39|39|37|35|35|34|34|33|32|31|30|30|29|26|26|25|24|23|23|28|24|25|27|27|28|29|43|31|32|33|38|36|36|37|38|40|40|42|42|43|0\n32|28|28|27|26|25|24|24|30|23|21|21|22|19|18|18|20|19|20|33|22|23|31|25|26|27|29|29|30|31|32|33|0\n11|8|8|7|7|10|9|9|10|11|0\n15|14|13|10|10|9|9|12|11|11|12|13|14|15|0\n43|41|39|37|36|35|35|38|34|33|32|31|30|27|27|26|25|25|24|23|23|42|24|29|26|28|28|29|30|31|32|33|34|40|36|37|38|39|40|41|42|43|0\n23|19|18|17|17|15|15|14|13|13|21|22|14|16|16|20|18|19|20|21|22|23|0\n15|14|13|11|10|9|9|12|10|11|12|13|14|15|0\n13|12|11|8|8|9|10|9|10|11|12|13|0\n49|46|45|45|43|43|41|41|39|37|37|38|34|34|35|33|32|31|30|29|28|27|26|26|48|27|28|29|30|31|32|33|36|35|36|40|38|39|40|42|42|44|44|47|46|47|48|49|0\n73|71|71|70|69|68|67|67|65|64|64|63|62|62|60|58|57|56|55|54|53|51|50|49|49|52|59|48|44|44|43|42|41|40|39|39|46|47|40|41|42|43|45|45|46|47|48|61|50|51|52|53|54|55|56|57|58|59|60|61|75|63|66|65|66|74|68|69|70|72|72|73|74|75|0\n32|32|31|30|30|34|35|24|23|23|25|26|22|22|28|21|20|20|37|21|29|27|24|25|26|27|28|29|36|31|33|33|34|35|36|37|0\n37|35|34|28|28|27|27|30|31|32|26|25|24|22|22|21|20|20|36|21|23|23|24|25|26|33|29|29|30|31|32|33|34|35|36|37|0\n20|19|18|17|16|16|21|15|14|13|13|23|14|15|22|17|18|19|20|21|22|23|0\n46|46|43|42|42|41|40|39|37|36|36|35|34|33|32|31|29|27|27|28|26|25|25|45|26|30|28|29|30|31|32|33|34|35|38|37|38|39|40|41|44|43|44|45|47|47|0\n16|15|15|14|11|11|10|10|13|12|12|13|14|17|16|17|0\n25|24|24|23|22|22|20|19|18|17|16|15|15|21|16|17|18|19|20|21|27|23|26|25|26|27|0\n16|16|13|13|12|11|10|10|15|11|12|14|14|15|17|17|0\n22|22|23|21|20|20|25|18|17|17|16|15|15|27|16|19|18|19|26|21|24|23|24|25|26|27|0\n19|17|16|15|13|13|12|11|11|18|12|14|14|15|16|17|18|19|0\n27|23|22|22|21|21|20|19|18|17|16|15|15|26|16|17|18|19|20|25|24|23|24|25|26|27|0\n15|14|13|11|10|9|9|12|10|11|12|13|14|15|0\n25|24|24|23|21|20|16|16|17|15|15|19|22|27|18|17|18|19|20|21|22|23|26|25|26|27|0\n38|38|35|35|34|29|28|28|27|27|31|32|26|24|24|23|22|21|21|37|22|23|25|25|26|33|30|29|30|31|32|33|34|36|36|37|39|39|0\n19|17|17|16|16|20|21|15|13|13|14|23|14|15|22|18|18|19|20|21|22|23|0\n5|4|4|5|0\n68|68|66|65|64|62|61|59|57|56|53|51|48|47|47|49|50|52|54|46|45|45|44|43|41|41|42|60|40|39|38|37|36|36|67|37|38|39|40|63|42|43|44|58|46|55|48|49|50|51|52|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|69|69|0\n41|41|40|35|35|36|34|34|38|33|32|32|31|29|28|27|26|25|23|23|24|30|24|25|26|27|28|29|30|31|43|33|39|37|36|37|38|39|40|42|42|43|0\n72|71|69|68|67|65|65|66|64|62|61|61|60|59|59|58|54|53|53|55|52|50|49|49|48|47|47|46|44|43|41|41|40|38|38|39|45|39|40|42|42|43|44|45|46|57|48|51|50|51|52|56|54|55|56|57|58|73|60|63|62|63|64|70|66|67|68|69|70|71|72|73|0\n64|62|59|59|60|58|58|57|47|47|46|46|49|50|45|45|52|53|44|42|41|41|43|55|40|39|36|36|37|38|35|34|34|35|65|37|38|39|40|56|42|43|44|54|51|48|48|49|50|51|52|53|54|55|56|57|63|61|60|61|62|63|64|65|0\n26|25|22|22|23|21|20|20|18|17|15|15|16|19|16|17|18|19|27|21|24|23|24|25|26|27|0\n62|60|60|59|57|56|56|55|54|53|52|52|51|49|48|48|46|45|44|40|38|37|37|36|36|35|34|34|42|33|33|47|43|35|41|39|38|39|40|41|42|43|44|45|46|47|50|49|50|51|63|53|54|55|58|57|58|59|61|61|62|63|0\n41|40|39|37|36|36|34|33|33|35|42|43|30|30|29|28|28|27|26|25|24|24|45|25|26|27|32|29|31|31|32|44|34|35|38|37|38|39|40|41|42|43|44|45|0\n4|4|5|5|0\n57|57|56|55|55|59|53|53|52|51|48|48|49|47|46|45|43|42|42|40|39|39|38|37|36|35|34|33|32|32|61|33|34|35|36|37|38|41|40|41|44|43|44|45|46|47|50|49|50|51|52|54|54|60|56|58|58|59|60|61|0\n39|37|37|35|33|32|32|31|30|28|28|26|25|25|24|22|21|21|23|36|22|23|24|27|26|27|29|29|30|31|34|33|34|35|36|38|38|39|0\n32|32|31|29|28|24|24|23|22|21|21|26|20|19|18|18|30|19|20|27|22|23|25|25|26|27|28|29|30|31|33|33|0\n23|20|20|18|18|19|14|14|15|13|13|17|16|15|16|17|22|19|21|21|22|23|0\n9|8|6|6|7|7|8|9|0\n31|30|28|26|25|24|24|23|22|21|20|18|17|17|19|29|18|19|20|21|22|23|27|25|26|27|28|29|30|31|0\n27|27|26|24|23|22|19|19|20|18|17|17|25|16|16|29|18|21|20|21|22|23|24|25|26|28|28|29|0\n26|26|24|24|21|21|22|20|19|18|17|16|16|28|29|17|18|19|20|23|22|23|25|25|27|27|28|29|0\n24|22|22|21|21|25|19|19|18|17|15|15|16|27|16|17|18|20|20|26|23|23|24|25|26|27|0\n58|57|55|54|53|52|51|51|50|49|48|48|47|44|44|43|42|41|40|39|37|36|36|35|34|33|31|31|32|46|32|33|34|35|38|37|38|39|40|41|42|43|45|45|46|47|59|49|50|56|52|53|54|55|56|57|58|59|0\n43|41|39|39|37|37|36|35|34|33|32|31|29|28|27|26|26|25|24|23|23|42|24|25|30|27|28|29|30|31|32|33|34|35|36|38|38|40|40|41|42|43|0\n10|10|9|7|7|8|8|9|11|11|0\n24|24|23|22|21|21|26|27|20|19|17|16|16|18|29|17|18|19|20|28|22|23|25|25|26|27|28|29|0\n18|18|16|15|13|12|12|11|11|17|14|13|14|15|16|17|19|19|0\n28|27|25|24|23|23|22|21|20|19|19|29|18|17|17|31|18|30|20|21|22|26|24|25|26|27|28|29|30|31|0\n8|6|6|7|9|7|8|9|0\n38|38|35|32|31|30|30|33|28|28|27|26|25|25|24|23|22|21|21|37|22|23|24|36|26|27|29|29|34|31|32|33|34|35|36|37|39|39|0\n31|30|30|29|27|27|26|23|23|22|22|21|20|19|18|18|33|19|20|21|25|24|24|25|26|28|28|29|32|31|32|33|0\n11|10|8|7|7|9|8|9|10|11|0\n41|41|40|38|38|35|35|36|34|31|31|30|30|29|28|27|26|24|24|25|23|23|43|25|26|27|28|29|33|32|32|33|34|37|36|37|39|39|40|42|42|43|0\n57|57|56|55|54|53|53|52|50|49|49|48|44|43|43|45|42|41|40|38|37|37|36|35|34|33|32|31|31|47|32|33|34|35|36|39|38|39|40|41|42|46|44|45|46|47|48|51|50|51|52|59|54|55|56|58|58|59|0\n31|30|30|29|29|27|24|23|23|25|21|21|20|19|18|18|28|19|20|22|22|26|24|25|26|27|28|33|32|31|32|33|0\n74|74|75|73|71|71|72|67|67|68|65|64|61|61|62|60|60|59|58|57|56|55|54|53|52|50|49|48|48|47|46|43|42|42|44|41|40|40|70|41|45|43|44|45|46|47|51|49|50|51|52|53|54|55|56|57|58|59|66|63|62|63|64|65|66|69|68|69|70|77|72|73|76|75|76|77|0\n47|46|44|40|40|39|37|37|36|35|34|33|32|32|42|30|30|29|28|27|26|25|25|45|26|27|28|29|31|31|43|33|34|35|36|38|38|39|41|41|42|43|44|45|46|47|0\n33|33|34|32|29|28|28|27|26|25|24|24|22|21|19|19|20|23|20|21|22|23|31|25|26|27|30|29|30|31|32|35|34|35|0\n52|50|50|49|48|45|45|44|44|43|41|41|40|40|53|38|38|37|34|33|32|32|35|31|30|29|29|55|30|31|36|33|34|35|36|37|39|39|54|42|42|43|47|46|46|47|48|49|51|51|52|53|54|55|0\n56|56|53|52|51|51|50|48|47|46|46|45|44|43|41|41|40|39|37|37|36|35|34|33|32|31|30|30|55|31|32|33|34|35|36|38|38|39|40|42|42|43|44|45|49|47|48|49|50|54|52|53|54|55|57|57|0\n43|41|41|42|40|39|38|38|37|35|34|33|30|29|28|28|31|27|26|25|24|24|36|25|26|27|32|29|30|31|32|33|34|35|36|37|45|39|40|44|42|43|44|45|0\n24|24|22|21|19|19|18|15|15|16|14|14|23|17|16|17|18|20|20|21|22|23|25|25|0\n25|25|24|23|21|21|20|20|17|17|16|15|15|19|16|18|18|19|27|22|22|23|24|26|26|27|0\n41|39|37|36|36|34|33|33|32|31|29|28|28|27|26|25|24|23|22|22|40|23|24|25|26|27|30|29|30|31|32|35|34|35|38|37|38|39|40|41|0\n40|39|38|37|36|35|33|32|32|31|29|29|30|26|26|24|24|23|22|22|28|23|25|25|27|27|28|41|30|31|34|33|34|35|36|37|38|39|40|41|0\n74|73|72|70|70|66|66|64|64|63|62|61|60|59|58|57|57|68|56|56|55|54|51|51|50|46|46|47|45|43|43|42|41|41|40|39|39|53|40|49|42|44|44|45|48|47|48|49|50|52|52|53|54|55|75|69|58|59|60|61|62|63|65|65|67|67|68|69|71|71|72|73|74|75|0\n24|24|25|26|22|21|18|17|17|19|16|15|15|23|16|20|18|19|20|21|22|23|27|25|26|27|0\n11|9|8|7|7|10|8|9|10|11|0\n35|34|32|31|31|30|28|28|27|26|26|36|37|25|24|23|22|21|21|39|22|23|24|25|38|27|29|29|30|33|32|33|34|35|36|37|38|39|0\n52|50|50|49|48|47|45|44|44|43|43|42|41|39|38|37|34|33|32|32|35|31|30|29|28|28|40|29|30|31|36|33|34|35|36|37|38|39|40|41|42|53|46|45|46|47|48|49|51|51|52|53|0\n10|9|8|8|7|7|11|9|10|11|0\n29|27|26|25|25|24|23|23|30|31|22|20|20|19|18|18|33|19|21|21|22|32|24|28|26|27|28|29|30|31|32|33|0\n21|20|19|19|22|23|18|17|15|15|14|14|25|16|16|17|18|24|20|21|22|23|24|25|0\n36|36|34|33|32|32|31|28|27|26|26|25|24|23|23|22|20|20|21|21|22|30|24|25|29|27|28|29|30|31|35|33|34|35|37|37|0\n4|4|5|5|0\n28|27|27|25|24|23|22|20|20|19|18|17|16|16|26|17|18|19|21|21|22|23|24|25|26|29|28|29|0\n22|21|18|18|19|15|14|14|16|13|13|23|17|15|16|17|20|19|20|21|22|23|0\n30|27|27|26|26|25|21|21|22|23|20|19|18|17|17|31|18|19|20|24|22|23|24|25|29|28|28|29|30|31|0\n43|41|40|39|38|37|36|35|34|33|32|31|28|27|27|29|26|25|24|23|23|42|24|25|26|30|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|0\n37|34|34|30|29|29|28|26|26|25|25|32|24|23|21|20|20|22|36|21|22|23|24|33|27|27|28|31|30|31|32|33|35|35|36|37|0\n11|8|7|7|9|10|8|9|10|11|0\n21|20|19|18|18|17|16|16|14|13|13|15|14|15|23|17|22|19|20|21|22|23|0\n26|24|24|25|23|22|19|19|18|17|15|15|16|21|16|17|18|20|20|21|22|23|27|25|26|27|0\n55|54|53|52|51|49|48|48|47|46|46|56|57|44|43|42|42|41|40|37|37|38|35|35|34|33|32|31|31|59|32|33|34|36|36|39|38|39|40|41|45|43|44|45|58|47|50|49|50|51|52|53|54|55|56|57|58|59|0\n64|63|62|62|61|59|59|57|57|56|55|54|52|51|51|50|48|48|47|47|46|45|43|42|42|41|40|38|38|37|36|35|35|67|36|37|39|39|40|41|44|43|44|45|46|66|49|49|50|53|52|53|54|55|56|58|58|60|60|61|65|63|64|65|66|67|0\n60|59|58|57|57|56|55|51|50|50|52|49|45|45|44|38|38|39|37|37|41|42|36|35|34|34|47|33|32|32|54|33|48|35|36|43|40|39|40|41|42|43|44|46|46|47|48|49|53|51|52|53|54|55|56|61|58|59|60|61|0\n47|45|43|42|41|40|39|39|38|37|35|35|33|32|31|31|30|29|28|27|26|25|25|46|26|27|28|29|30|34|32|33|34|36|36|37|38|44|40|41|42|43|44|45|46|47|0\n38|35|35|36|33|32|32|31|30|29|28|28|27|26|23|23|22|21|21|25|22|24|24|25|26|27|39|29|30|31|34|33|34|37|36|37|38|39|0\n50|50|48|48|47|46|45|44|43|42|42|52|38|37|37|36|35|35|34|32|31|31|30|29|28|28|41|29|30|33|32|33|34|40|36|39|38|39|40|41|53|43|44|45|46|47|49|49|51|51|52|53|0\n31|30|30|29|29|27|26|25|22|21|21|23|20|19|18|18|28|19|20|24|22|23|24|25|26|27|28|33|32|31|32|33|0\n60|59|58|56|56|54|54|53|52|52|51|50|48|46|45|45|44|43|40|40|41|39|38|37|35|35|34|33|32|32|49|33|34|36|36|37|38|39|42|41|42|43|44|47|46|47|48|49|50|51|61|53|55|55|57|57|58|59|60|61|0\n26|26|25|25|28|29|22|21|21|20|19|18|17|17|24|31|18|19|20|23|22|23|24|30|27|27|28|29|30|31|0\n33|32|32|34|31|28|28|27|26|26|24|22|22|20|20|19|19|25|21|21|23|23|24|25|30|27|29|29|30|31|35|33|34|35|0\n31|29|28|27|26|25|24|23|22|20|19|19|18|17|17|30|18|21|20|21|22|23|24|25|26|27|28|29|30|31|0\n20|20|18|16|14|14|15|13|12|12|19|13|17|15|16|17|18|19|21|21|0\n22|22|23|21|19|19|18|17|16|15|14|14|25|15|16|17|18|20|20|21|24|23|24|25|0\n36|35|34|34|33|29|27|26|25|24|24|23|23|30|22|21|20|20|32|21|22|31|28|25|26|27|28|29|30|31|32|33|37|35|36|37|0\n12|12|13|11|10|9|9|15|10|11|14|13|14|15|0\n78|77|77|79|73|73|72|71|70|69|68|68|75|65|64|62|61|61|60|59|58|57|57|66|56|55|52|51|51|53|50|50|81|49|47|46|45|45|44|43|43|83|44|48|46|47|48|49|82|54|52|53|54|55|56|67|58|59|60|63|62|63|64|65|66|67|76|69|70|71|72|74|74|75|76|80|78|79|80|81|82|83|0\n48|47|47|45|39|39|40|38|38|42|43|35|34|33|32|32|36|31|29|29|28|27|26|26|46|27|28|30|30|31|37|33|34|35|36|37|44|41|40|41|42|43|44|45|46|49|48|49|0\n23|22|22|21|20|19|17|17|18|15|14|14|16|15|16|25|18|19|20|21|24|23|24|25|0\n74|74|73|71|71|70|70|76|77|68|67|67|66|64|63|63|62|59|59|58|57|57|55|54|53|53|52|51|48|48|49|46|46|45|44|42|42|41|41|79|43|43|44|45|47|47|50|49|50|51|52|56|54|55|56|61|58|60|60|61|62|65|64|65|66|69|68|69|78|72|72|73|75|75|76|77|78|79|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n27|24|24|23|22|21|19|19|18|17|16|15|15|26|16|17|18|20|20|21|22|23|25|25|26|27|0\n21|21|22|19|17|16|15|15|14|13|13|20|14|18|16|17|18|19|20|23|22|23|0\n39|36|35|33|33|34|32|28|28|29|30|27|24|24|25|23|22|21|21|38|22|23|26|25|26|27|31|29|30|31|32|37|34|35|36|37|38|39|0\n51|51|50|49|48|47|46|44|44|43|42|41|40|40|39|37|36|35|34|32|32|31|29|29|28|28|38|30|30|31|33|33|34|35|36|37|38|39|53|41|42|43|45|45|46|47|48|49|50|52|52|53|0\n28|27|26|25|25|24|22|22|19|18|18|17|16|16|21|17|20|19|20|21|23|23|24|29|26|27|28|29|0\n7|7|6|6|9|8|8|9|0\n37|33|32|31|29|28|27|27|26|25|25|34|24|23|21|21|20|20|36|22|22|23|24|35|26|30|28|29|30|31|32|33|34|35|36|37|0\n57|55|54|53|52|49|48|47|47|50|46|45|43|43|42|41|40|39|38|37|35|35|34|32|32|31|30|30|56|31|33|33|34|36|36|37|38|39|40|41|42|44|44|45|46|51|48|49|50|51|52|53|54|55|56|57|0\n35|34|31|31|30|29|28|27|26|25|23|22|21|21|20|19|19|33|20|24|22|23|24|25|26|27|28|29|30|32|32|33|34|35|0\n49|45|43|43|44|42|41|39|39|38|38|37|35|34|32|32|31|30|29|28|26|26|27|36|48|27|28|29|30|31|33|33|34|35|36|37|47|40|40|41|42|46|44|45|46|47|48|49|0\n68|67|67|66|64|63|62|60|60|59|57|56|53|52|51|50|49|48|47|47|54|46|45|45|44|41|40|40|39|38|37|37|36|36|65|43|38|39|42|41|42|43|44|58|46|55|48|49|50|51|52|53|54|55|56|57|58|59|61|61|62|63|64|65|66|69|68|69|0\n47|45|43|42|42|39|38|37|37|40|36|34|33|33|32|30|30|28|28|27|26|25|25|46|26|27|29|29|31|31|32|35|34|35|36|41|38|39|40|41|44|43|44|45|46|47|0\n78|77|77|76|75|74|71|70|70|72|69|68|66|66|67|80|81|64|62|61|60|60|58|58|57|56|55|54|54|53|52|50|50|49|48|47|45|45|44|43|43|83|44|46|46|47|48|49|51|51|52|53|65|55|56|57|59|59|63|61|62|63|64|65|82|67|68|69|73|71|72|73|74|75|76|79|78|79|80|81|82|83|0\n17|14|13|13|12|11|10|10|16|11|12|15|14|15|16|17|0\n40|39|38|38|37|36|34|32|32|31|30|29|27|27|26|23|23|24|22|22|35|25|24|25|26|28|28|29|30|31|33|33|34|35|36|37|41|39|40|41|0\n13|13|12|11|11|9|9|10|10|15|12|14|14|15|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n58|58|56|56|54|53|53|52|51|50|50|60|61|49|48|47|45|45|44|43|41|41|40|35|35|34|33|33|37|38|39|63|34|36|36|37|38|39|40|42|42|43|44|46|46|47|48|49|62|51|52|55|54|55|57|57|59|59|60|61|62|63|0\n20|19|19|17|14|14|15|13|12|12|18|13|16|15|16|17|18|21|20|21|0\n60|59|59|61|58|57|57|63|56|56|53|53|52|46|45|45|47|44|43|42|41|40|40|49|50|39|37|37|34|34|35|36|55|35|36|38|38|39|51|41|42|43|44|48|46|47|48|49|50|51|52|54|54|55|65|64|58|62|60|61|62|63|64|65|0\n64|64|62|58|57|57|59|60|54|53|51|50|47|47|48|46|45|45|52|55|44|42|41|41|40|38|38|37|36|35|34|34|63|35|36|37|39|39|40|43|42|43|44|56|46|49|48|49|50|51|52|53|54|55|56|61|58|59|60|61|62|63|65|65|0\n18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0\n29|26|26|25|23|22|21|21|24|18|17|16|16|19|20|17|18|19|20|28|22|23|24|25|27|27|28|29|0\n23|22|22|24|25|20|20|19|18|15|15|16|17|27|16|17|18|19|21|21|26|23|24|25|26|27|0\n19|17|15|15|14|13|11|11|12|18|12|13|14|16|16|17|18|19|0\n14|14|15|12|11|11|10|10|17|13|12|13|16|15|16|17|0\n29|28|28|27|27|26|24|23|21|20|20|19|18|17|17|25|18|19|22|21|22|23|24|25|26|31|30|29|30|31|0\n27|25|23|23|22|19|19|20|17|17|16|15|15|26|16|18|18|21|20|21|22|24|24|25|26|27|0\n54|53|49|48|48|50|46|46|45|44|44|43|42|41|41|40|39|38|37|35|34|33|30|30|29|29|32|36|31|31|32|33|34|35|36|37|38|39|40|55|42|43|52|45|47|47|51|49|50|51|52|53|54|55|0\n25|24|22|20|20|19|17|17|16|15|14|14|23|15|16|18|18|19|21|21|22|23|24|25|0\n41|38|38|36|36|35|34|32|32|31|30|28|27|26|25|24|23|23|22|22|40|29|24|25|26|27|28|29|30|31|33|33|34|35|37|37|39|39|40|41|0\n42|40|40|41|39|38|34|32|32|33|35|31|30|29|28|26|25|25|24|23|23|37|24|27|26|27|28|29|30|31|36|33|34|35|36|37|38|39|43|41|42|43|0\n42|41|41|39|39|35|34|31|31|32|29|29|30|36|37|28|27|25|24|24|23|23|26|25|26|27|28|38|30|33|32|33|34|35|36|37|38|40|40|43|42|43|0\n37|36|36|35|35|32|32|31|30|25|24|24|26|23|23|28|22|21|21|34|22|29|27|25|26|27|28|29|30|31|33|33|34|39|38|37|38|39|0\n21|21|20|19|19|23|18|17|16|15|14|14|25|15|16|17|18|24|20|22|22|23|24|25|0\n65|64|63|61|60|60|58|58|57|56|55|54|54|66|67|52|51|50|49|49|48|46|46|45|44|43|42|41|39|38|38|37|36|36|69|37|40|39|40|41|42|43|44|45|47|47|48|53|50|51|52|53|68|55|56|57|59|59|62|61|62|63|64|65|66|67|68|69|0\n8|8|6|6|7|7|9|9|0\n27|25|23|22|22|21|19|18|18|17|15|15|16|26|16|17|20|19|20|21|24|23|24|25|26|27|0\n11|9|8|7|7|10|8|9|10|11|0\n51|51|50|49|48|48|53|47|46|45|43|42|42|41|38|38|39|37|36|34|33|33|31|31|30|29|29|55|30|32|32|35|34|35|36|37|40|39|40|41|44|43|44|45|46|47|54|49|50|52|52|53|54|55|0\n19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0\n35|35|36|33|30|29|29|31|28|27|27|26|23|23|24|25|22|21|21|39|22|38|24|25|26|34|28|32|30|31|32|33|34|37|36|37|38|39|0\n21|21|20|20|19|17|17|16|14|13|13|15|14|15|16|18|18|19|23|22|22|23|0\n17|14|14|13|12|10|10|11|16|11|12|13|15|15|16|17|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n18|17|16|15|15|19|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0\n16|15|14|13|13|12|11|10|10|11|12|17|14|15|16|17|0\n41|38|38|37|35|35|32|32|33|31|29|28|27|26|26|25|24|23|22|22|40|23|24|25|30|27|28|29|30|31|34|33|34|36|36|37|39|39|40|41|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n38|37|36|33|33|34|32|32|31|30|29|28|25|25|24|23|21|21|22|27|22|23|24|26|26|27|28|29|30|31|39|35|34|35|36|37|38|39|0\n68|66|66|63|62|61|60|58|58|59|64|57|55|55|54|53|52|52|51|49|49|46|43|43|44|42|42|41|40|38|38|37|36|36|48|37|39|39|40|41|47|45|44|45|46|47|48|50|50|51|69|53|54|56|56|57|65|59|60|61|62|63|64|65|67|67|68|69|0\n31|29|28|27|26|25|22|21|20|20|23|19|18|17|17|30|18|19|24|21|22|23|24|25|26|27|28|29|30|31|0\n42|42|40|38|37|37|39|33|33|32|31|31|30|28|27|27|25|23|23|24|26|36|24|25|26|29|28|29|30|35|32|34|34|35|36|41|38|39|40|41|43|43|0\n63|62|61|61|60|59|59|65|66|57|56|55|55|54|52|51|50|49|48|48|47|46|45|45|68|43|42|42|41|40|39|38|37|36|36|37|38|39|40|41|44|43|44|69|46|47|53|49|50|51|52|53|54|58|56|57|58|67|60|64|62|63|64|65|66|67|68|69|0\n75|74|73|72|70|69|69|68|66|66|65|64|63|63|76|77|59|59|58|56|56|55|53|52|51|50|50|49|48|46|46|45|43|43|44|61|41|41|42|79|42|62|44|45|47|47|48|49|54|51|52|53|54|55|57|57|58|60|60|61|62|78|64|65|67|67|68|71|70|71|72|73|74|75|76|77|78|79|0\n23|22|22|21|20|20|18|17|16|15|14|14|19|15|16|17|18|19|25|21|24|23|24|25|0\n37|36|36|38|35|34|33|33|40|31|31|30|30|29|27|27|26|24|24|23|23|43|25|25|26|28|28|29|42|32|32|41|34|35|39|37|38|39|40|41|42|43|0\n43|41|41|39|38|36|35|34|34|33|31|31|30|29|28|27|25|25|24|23|23|40|24|26|26|27|28|29|30|32|32|33|37|35|36|37|38|39|40|42|42|43|0\n51|49|48|46|46|45|37|36|35|34|34|38|33|33|40|30|30|31|32|42|43|29|28|27|27|50|28|29|44|31|32|41|39|35|36|37|38|39|40|41|42|43|44|45|47|47|48|49|50|51|0\n27|25|24|23|22|21|19|18|17|17|16|15|15|26|16|20|18|19|20|21|22|23|24|25|26|27|0\n80|78|78|77|76|76|75|73|73|70|70|69|68|67|66|62|61|60|60|63|58|58|57|54|53|53|55|56|50|49|49|51|48|47|46|45|44|43|42|42|72|43|44|45|46|47|48|52|50|51|52|65|54|55|56|57|59|59|64|61|62|63|64|65|66|67|68|69|71|71|72|74|74|75|81|77|79|79|80|81|0\n17|16|15|15|14|13|11|11|12|19|12|13|14|18|16|17|18|19|0\n48|48|44|43|42|40|40|41|45|36|36|37|35|35|34|32|32|31|28|28|29|27|26|26|47|27|30|29|30|31|33|33|34|39|38|37|38|39|46|41|42|43|44|45|46|47|49|49|0\n5|4|4|5|0\n48|48|47|46|45|44|42|42|43|50|51|38|38|39|37|37|36|34|34|33|32|30|30|29|28|28|53|29|31|31|32|33|35|35|36|41|40|39|40|41|52|43|44|45|46|47|49|49|50|51|52|53|0\n26|26|22|22|23|21|18|18|19|17|16|15|15|25|16|17|20|19|20|21|24|23|24|25|27|27|0\n20|20|21|22|18|17|16|15|14|13|13|19|14|15|16|17|18|19|23|21|22|23|0\n48|46|44|43|43|45|42|41|40|39|39|38|37|35|34|32|31|29|29|28|28|27|26|26|36|27|33|30|30|31|32|33|34|35|36|37|38|49|40|41|42|47|44|45|46|47|48|49|0\n37|36|35|34|32|31|31|33|30|29|28|25|24|24|26|22|21|21|23|39|22|23|27|25|26|27|28|29|30|38|32|33|34|35|36|37|38|39|0\n64|62|62|61|60|58|57|56|56|54|54|52|52|51|49|49|48|48|47|46|45|42|41|40|40|39|37|37|36|35|34|34|44|35|36|38|38|39|43|41|42|43|44|45|46|47|65|50|50|51|53|53|55|55|59|57|58|59|60|61|63|63|64|65|0\n50|48|48|44|44|45|43|43|42|36|36|37|35|34|34|39|33|32|32|41|51|31|30|29|28|28|53|29|30|31|52|33|40|35|38|37|38|39|40|41|42|47|46|45|46|47|49|49|50|51|52|53|0\n59|57|54|53|53|52|52|51|49|47|47|46|38|38|39|37|37|41|36|36|43|44|35|35|34|33|32|31|31|58|32|33|34|50|45|42|40|39|40|41|42|43|44|45|46|48|48|49|50|51|56|55|54|55|56|57|58|59|0\n25|22|22|20|19|19|18|17|16|14|14|15|24|15|16|17|18|21|20|21|23|23|24|25|0\n21|20|19|18|17|16|16|22|23|15|14|14|25|15|24|17|18|19|20|21|22|23|24|25|0\n20|19|19|17|16|15|14|12|12|13|18|13|14|15|16|17|18|21|20|21|0\n27|27|26|24|23|23|22|21|20|19|19|17|16|16|18|17|18|29|20|21|22|25|24|25|26|28|28|29|0\n35|35|34|33|32|32|30|29|25|25|26|27|23|22|22|21|20|20|31|21|24|23|24|28|26|27|28|29|30|31|37|33|34|36|36|37|0\n28|28|24|24|23|22|22|21|20|19|18|17|16|16|27|17|18|19|20|21|26|23|25|25|26|27|29|29|0\n43|43|44|41|39|39|38|37|35|34|33|31|30|29|28|28|32|27|25|24|24|26|42|25|26|27|36|29|30|31|32|33|34|35|36|37|38|40|40|41|42|45|44|45|0\n63|62|61|59|58|55|53|53|51|50|49|48|47|47|46|43|42|42|44|41|40|38|37|36|35|35|39|56|57|34|34|64|65|60|36|37|38|39|40|41|45|43|44|45|46|52|48|49|50|51|52|54|54|55|56|57|58|59|60|61|62|63|64|65|0\n22|21|20|18|17|16|15|15|14|13|13|23|14|19|16|17|18|19|20|21|22|23|0\n54|53|52|51|50|49|47|47|46|44|44|43|42|41|41|40|37|37|36|36|34|31|30|30|32|29|29|35|33|31|32|33|34|35|39|38|38|39|40|55|42|43|45|45|46|48|48|49|50|51|52|53|54|55|0\n11|9|8|7|7|10|8|9|10|11|0\n38|37|36|34|33|33|31|31|30|30|29|27|27|26|23|23|22|21|21|25|22|24|24|25|26|28|28|29|39|32|32|35|34|35|36|37|38|39|0\n22|19|18|17|17|16|16|14|14|13|13|23|15|15|21|20|18|19|20|21|22|23|0\n22|22|19|19|18|16|16|15|14|13|13|21|14|15|17|17|18|20|20|21|23|23|0\n39|38|36|36|35|32|32|33|30|30|29|28|28|40|41|26|26|23|23|24|25|43|24|25|27|27|42|29|31|31|34|33|34|35|37|37|38|39|40|41|42|43|0\n18|18|17|15|15|12|12|11|11|14|13|13|14|16|16|17|19|19|0\n25|19|18|18|20|17|16|16|22|15|14|14|24|15|23|17|21|19|20|21|22|23|24|25|0\n42|42|41|40|39|38|37|37|36|35|34|34|45|31|31|30|28|28|27|26|26|25|25|47|33|27|29|29|30|32|32|33|46|35|36|44|38|39|40|41|43|43|44|45|46|47|0\n42|42|38|36|36|35|34|34|39|32|32|31|26|26|27|25|24|24|29|23|23|41|30|25|28|27|28|29|30|31|33|33|40|35|37|37|38|39|40|41|43|43|0\n41|35|33|33|32|31|31|36|37|30|30|25|24|24|26|27|28|23|22|22|40|23|29|25|26|27|28|29|39|38|32|34|34|35|36|37|38|39|40|41|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n11|8|8|7|7|10|9|9|10|11|0\n37|34|26|26|27|28|29|30|25|25|32|24|23|23|22|20|20|21|36|21|22|35|24|33|31|27|28|29|30|31|32|33|34|35|36|37|0\n51|50|50|49|46|45|44|43|43|47|42|41|40|39|36|36|37|38|34|32|32|31|29|28|28|30|35|29|30|31|33|33|34|35|53|37|38|39|40|41|42|48|44|45|46|47|48|49|52|51|52|53|0\n42|41|40|39|38|37|36|36|35|33|33|32|29|29|28|27|26|25|24|23|23|31|24|25|26|27|28|30|30|31|32|34|34|35|43|37|38|39|40|41|42|43|0\n50|49|48|48|47|44|44|42|42|43|39|38|36|36|34|33|32|30|30|31|29|28|27|27|40|41|28|29|35|31|32|33|34|35|37|37|38|39|40|41|46|43|45|45|46|47|51|49|50|51|0\n15|15|14|14|12|10|10|11|13|11|12|13|17|16|16|17|0\n4|4|5|5|0\n7|7|6|6|9|8|8|9|0\n6|5|5|7|6|7|0\n9|8|8|7|7|11|10|9|10|11|0\n5|4|4|5|0\n42|42|41|40|39|38|37|34|34|33|33|32|30|30|29|28|28|44|45|27|25|25|26|47|26|27|46|29|31|31|32|36|35|35|36|37|38|39|40|41|43|43|44|45|46|47|0\n35|32|31|30|29|28|28|26|24|24|25|23|22|20|20|19|19|34|21|21|22|23|27|25|26|27|33|29|30|31|32|33|34|35|0\n43|40|40|39|38|37|36|36|42|44|45|35|33|33|32|31|31|47|29|28|28|27|26|26|49|27|30|29|30|48|32|34|34|35|46|37|38|39|41|41|42|43|44|45|46|47|48|49|0\n55|54|52|51|50|49|47|46|46|45|44|43|42|41|40|39|38|36|35|34|33|33|32|31|30|29|29|53|30|31|32|37|34|35|36|37|38|39|40|41|42|43|44|45|48|47|48|49|50|51|52|53|54|55|0\n68|67|67|65|63|62|60|59|59|58|56|56|54|53|50|50|49|49|48|48|47|46|46|64|42|42|43|41|40|40|38|37|36|36|39|37|38|39|45|41|44|43|44|45|66|47|55|52|51|51|52|53|54|55|57|57|58|61|60|61|62|63|64|65|66|69|68|69|0\n15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0\n34|34|35|32|30|29|29|28|27|26|26|25|24|23|22|20|20|21|37|21|22|23|24|25|33|27|28|31|30|31|32|33|36|35|36|37|0\n33|31|29|28|28|27|26|24|24|23|22|20|19|19|18|18|32|21|20|21|22|23|25|25|26|27|30|29|30|31|32|33|0\n56|54|53|52|52|51|50|49|48|45|45|46|47|43|43|41|39|38|36|35|35|34|34|33|31|31|30|30|42|32|32|33|40|37|36|37|38|39|40|41|42|44|44|57|46|47|48|49|50|51|55|53|54|55|56|57|0\n21|20|20|19|18|17|16|16|14|13|13|15|14|15|23|17|18|19|22|21|22|23|0\n11|10|9|7|7|8|8|9|10|11|0\n27|26|25|21|21|20|20|19|18|17|15|15|16|24|16|17|18|19|23|22|22|23|24|25|26|27|0\n71|71|70|66|64|64|63|61|61|60|59|57|57|58|67|68|69|56|55|55|74|75|54|53|50|50|49|49|48|46|46|45|44|43|42|41|40|40|77|41|42|43|44|45|47|47|48|52|51|51|52|53|54|76|56|73|58|59|60|62|62|63|65|65|66|67|68|69|70|72|72|73|74|75|76|77|0\n39|39|37|37|38|36|34|34|33|33|42|43|32|30|30|29|28|27|26|25|24|24|45|25|26|27|28|29|31|31|32|44|35|35|36|41|38|40|40|41|42|43|44|45|0\n66|65|63|62|62|61|60|59|58|57|55|54|54|53|49|48|48|50|51|52|47|44|43|43|42|41|41|39|37|37|36|35|35|40|36|38|38|39|40|46|42|45|44|45|46|47|67|49|50|51|52|53|56|55|56|57|58|59|60|61|64|63|64|65|66|67|0\n13|13|10|10|11|9|9|15|12|11|12|14|14|15|0\n56|56|55|53|51|51|52|50|49|49|58|59|48|47|46|45|41|41|40|38|38|37|37|43|35|35|34|33|32|32|61|33|34|36|36|44|39|39|40|42|42|43|44|45|46|47|48|60|50|54|52|53|54|55|57|57|58|59|60|61|0\n9|9|10|11|8|8|13|12|10|11|12|13|0\n33|32|29|29|28|24|23|23|22|22|26|21|20|19|18|18|31|19|20|21|27|25|24|25|26|27|28|30|30|31|32|33|0\n29|26|24|23|22|22|21|20|20|19|18|17|16|16|28|17|18|19|27|21|25|23|24|25|26|27|28|29|0\n69|66|63|63|64|65|67|62|61|60|59|58|56|55|54|53|53|52|50|49|46|45|45|47|44|43|43|42|41|40|38|37|37|36|36|39|38|39|40|41|42|51|44|48|46|47|48|49|50|51|52|57|54|55|56|57|58|59|60|61|62|68|64|65|66|67|68|69|0\n33|33|32|27|27|28|26|26|30|25|22|22|23|20|20|19|19|35|21|21|24|23|24|25|31|29|28|29|30|31|32|34|34|35|0\n25|25|24|23|21|21|20|19|18|17|17|15|15|16|16|27|18|19|20|22|22|23|24|26|26|27|0\n48|48|49|47|47|46|40|40|39|38|37|36|36|42|43|34|34|33|31|30|30|29|28|27|27|45|28|29|32|31|32|33|35|35|44|37|38|39|41|41|42|43|44|45|46|51|50|49|50|51|0\n28|27|27|25|24|22|21|20|19|19|18|16|16|17|26|17|18|23|20|21|22|23|24|25|26|29|28|29|0\n30|29|29|28|24|24|23|23|22|21|20|18|17|17|19|27|18|19|20|21|22|26|25|25|26|27|28|31|30|31|0\n41|40|39|39|38|36|36|35|33|31|31|30|29|29|28|27|26|25|24|23|23|43|24|25|26|27|28|34|30|32|32|33|34|35|37|37|38|42|40|41|42|43|0\n25|24|21|20|20|22|19|19|18|17|16|15|15|27|16|17|18|26|23|21|22|23|24|25|26|27|0\n35|31|29|29|28|27|27|32|26|24|23|23|22|21|19|19|20|34|20|21|22|25|24|25|26|33|28|30|30|31|32|33|34|35|0\n10|10|8|7|7|9|8|9|11|11|0\n30|30|29|27|27|28|26|26|22|21|20|19|18|18|23|24|25|19|20|21|22|23|24|25|33|32|28|29|31|31|32|33|0\n7|5|5|6|6|7|0\n22|22|18|18|19|16|16|15|14|13|13|21|14|15|17|17|20|19|20|21|23|23|0\n26|25|23|23|24|22|21|20|19|16|16|15|15|18|17|17|18|19|20|21|22|27|24|25|26|27|0\n7|7|6|6|9|8|8|9|0\n9|8|7|6|6|7|8|9|0\n71|67|66|65|64|63|62|62|61|60|59|57|57|56|54|54|53|51|50|50|49|48|46|46|45|44|43|42|41|40|40|39|38|37|37|70|38|39|69|41|42|43|44|45|47|47|48|49|52|51|52|53|55|55|56|58|58|59|60|61|68|63|64|65|66|67|68|69|70|71|0\n27|27|26|26|23|23|22|20|19|18|18|17|16|16|25|17|21|19|20|21|22|24|24|25|29|28|28|29|0\n62|61|60|57|57|56|54|53|53|55|52|52|51|49|46|46|45|45|44|43|42|41|40|39|37|37|36|35|34|33|33|50|34|35|36|38|38|39|40|41|42|43|44|48|47|47|48|49|50|51|63|59|54|55|56|58|58|59|60|61|62|63|0\n54|54|52|46|45|45|47|44|43|43|49|42|41|41|40|37|37|36|35|34|34|33|32|30|30|29|29|53|31|31|32|33|39|35|36|38|38|39|40|51|42|50|44|48|46|47|48|49|50|51|52|53|55|55|0\n34|34|35|33|30|30|31|29|27|27|28|24|24|23|22|21|20|20|26|21|22|23|25|25|26|37|28|29|32|31|32|33|36|35|36|37|0\n36|34|33|33|32|31|31|30|29|27|25|23|23|24|22|20|20|21|28|21|22|26|24|25|26|27|28|29|30|37|32|35|34|35|36|37|0\n37|33|32|30|30|29|28|27|27|34|25|25|24|23|22|21|20|20|36|21|22|23|24|26|26|35|28|29|31|31|32|33|34|35|36|37|0\n79|77|76|75|74|73|72|70|70|69|68|63|62|62|61|61|59|59|58|54|53|52|52|55|56|51|50|49|49|66|46|46|47|45|44|43|42|41|41|78|42|43|44|45|48|47|48|67|50|51|57|53|54|55|56|57|58|60|60|65|64|63|64|65|66|67|68|69|71|71|72|73|74|75|76|77|78|79|0\n13|11|8|8|9|10|12|9|10|11|12|13|0\n34|34|33|31|30|30|28|26|25|24|23|20|20|21|22|19|19|29|27|21|22|23|24|25|26|27|28|29|32|31|32|33|35|35|0\n30|29|28|26|26|27|25|23|21|17|17|18|19|20|22|24|18|19|20|21|22|23|24|25|31|27|28|29|30|31|0\n27|26|25|24|23|23|28|21|20|19|18|17|16|16|22|17|18|19|20|21|22|29|24|25|26|27|28|29|0\n14|14|15|13|13|17|12|11|11|19|12|18|16|15|16|17|18|19|0\n56|55|55|54|54|53|52|51|49|49|48|48|59|46|45|44|44|43|41|40|40|39|38|37|36|33|33|34|32|32|61|35|34|35|36|37|38|39|42|41|42|43|47|45|46|47|60|50|50|51|52|53|58|57|56|57|58|59|60|61|0\n9|6|6|7|8|7|8|9|0\n26|24|24|23|21|21|20|18|18|17|16|15|15|27|16|17|19|19|20|22|22|23|25|25|26|27|0\n36|35|34|33|32|30|30|31|29|26|25|25|27|23|22|20|20|21|24|21|22|23|24|28|26|27|28|29|37|31|32|33|34|35|36|37|0\n39|38|37|37|36|34|33|33|31|30|30|29|28|27|27|25|24|23|22|22|26|23|24|25|26|41|28|29|32|31|32|35|34|35|36|40|38|39|40|41|0\n20|18|18|17|12|12|13|14|15|16|21|13|14|15|16|17|19|19|20|21|0\n19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0\n23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0\n11|8|8|7|7|10|9|9|10|11|0\n34|33|31|30|30|29|27|27|26|26|25|22|22|23|21|19|19|20|20|21|24|23|24|25|35|28|28|29|32|31|32|33|34|35|0\n69|68|67|66|64|62|62|63|61|60|60|70|71|58|58|57|56|52|52|51|50|49|48|48|54|43|43|44|42|41|41|46|40|39|38|38|73|39|40|47|42|45|44|45|46|47|55|49|50|51|53|53|54|55|56|57|59|59|72|61|65|63|64|65|66|67|68|69|70|71|72|73|0\n34|33|33|32|31|29|27|27|26|24|23|22|21|21|20|19|19|30|20|25|22|23|24|25|26|28|28|29|30|31|32|35|34|35|0\n28|27|27|26|25|23|22|20|20|19|17|17|16|16|24|18|18|19|21|21|22|23|24|25|26|29|28|29|0\n36|35|34|34|33|32|29|29|28|27|25|24|24|23|22|20|20|21|31|21|22|23|26|25|26|27|28|30|30|31|32|33|37|35|36|37|0\n48|47|44|43|43|42|41|41|40|39|37|37|36|35|35|49|50|51|33|33|32|31|30|29|28|28|53|29|30|31|32|34|34|52|36|38|38|39|40|46|42|45|44|45|46|47|48|49|50|51|52|53|0\n30|29|28|28|27|26|24|21|20|20|19|19|18|17|17|25|18|23|22|21|22|23|24|25|26|27|31|29|30|31|0\n64|60|60|61|62|58|58|57|56|53|52|52|51|50|49|47|47|46|45|45|55|44|43|38|38|39|40|36|36|35|34|34|42|35|37|37|41|39|40|41|42|43|44|65|46|48|48|49|50|51|54|53|54|55|56|57|59|59|63|61|62|63|64|65|0\n49|48|47|46|46|45|43|42|41|40|40|39|37|36|35|34|33|32|30|29|28|27|27|31|38|51|28|29|30|31|32|33|34|35|36|37|38|39|44|41|42|43|44|45|50|47|48|49|50|51|0\n64|63|62|60|60|59|57|55|55|56|54|53|52|51|51|50|49|47|46|45|44|43|41|41|40|39|38|36|36|35|34|34|48|35|37|37|38|39|40|42|42|43|44|45|46|47|48|49|50|65|52|53|54|58|56|57|58|59|61|61|62|63|64|65|0\n38|38|37|35|35|32|32|30|29|29|27|27|26|25|24|22|22|21|21|34|23|23|24|25|26|28|28|31|30|31|33|33|34|36|36|37|39|39|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n33|31|28|28|27|26|25|24|24|23|21|21|20|19|18|18|32|19|20|22|22|23|30|25|26|27|29|29|30|31|32|33|0\n9|9|8|7|7|11|8|10|10|11|0\n22|22|20|17|17|15|15|16|14|13|13|21|14|19|16|18|18|19|20|21|23|23|0\n35|33|33|34|32|32|31|26|26|25|24|24|28|22|22|21|20|20|30|21|23|23|29|25|27|27|28|29|30|31|37|36|34|35|36|37|0\n54|53|52|51|50|50|49|48|46|44|44|41|40|40|39|38|37|37|36|35|32|31|31|30|30|29|29|47|34|33|32|33|34|35|36|43|38|39|42|41|42|43|45|45|46|47|48|49|55|51|52|53|54|55|0\n44|43|40|39|39|38|38|37|36|36|34|33|32|31|28|27|26|26|25|25|24|24|35|30|29|27|28|29|30|31|32|33|34|35|45|37|42|41|40|41|42|43|44|45|0\n64|61|60|60|62|58|57|57|55|54|54|53|52|51|50|49|47|47|46|45|45|44|42|42|39|38|38|37|36|35|34|34|41|35|36|37|40|39|40|41|43|43|44|65|46|48|48|49|50|51|52|53|56|55|56|59|58|59|63|61|62|63|64|65|0\n28|25|24|24|23|22|21|21|27|19|18|17|16|16|20|17|18|19|20|29|22|23|26|25|26|27|28|29|0\n26|25|24|23|22|21|21|27|20|18|17|16|16|19|29|17|18|19|20|28|22|23|24|25|26|27|28|29|0\n34|32|31|31|30|29|28|28|27|25|24|24|23|21|20|19|19|22|20|21|22|23|26|25|26|27|35|29|30|33|32|33|34|35|0\n75|73|72|70|69|69|68|66|66|65|64|60|59|59|58|57|56|56|62|55|52|51|50|50|48|48|49|47|45|43|42|41|40|39|39|44|46|74|40|41|42|43|44|45|46|47|54|49|53|51|52|53|54|55|63|57|58|61|60|61|62|63|64|65|67|67|68|71|70|71|72|73|74|75|0\n62|60|59|58|58|57|54|53|51|51|50|47|47|48|49|55|46|45|44|44|43|41|41|40|38|37|36|34|34|33|33|39|35|35|36|37|38|39|40|42|42|43|63|45|46|56|48|49|50|52|52|53|54|55|56|57|61|59|60|61|62|63|0\n52|50|49|49|51|47|47|45|44|43|42|40|33|33|34|32|32|36|37|38|39|31|29|29|28|28|46|30|30|31|41|35|34|35|36|37|38|39|40|41|42|43|44|45|46|48|48|53|50|51|52|53|0\n42|41|41|40|37|36|36|35|35|33|32|31|30|29|26|26|27|25|24|23|23|34|24|25|28|27|28|29|30|31|32|33|34|39|38|37|38|39|40|43|42|43|0\n40|38|38|36|36|37|34|33|31|30|27|26|26|25|25|23|23|24|22|22|35|32|24|29|28|27|28|29|30|31|32|33|34|35|41|37|39|39|40|41|0\n50|49|49|48|43|43|44|45|41|40|39|38|37|34|34|35|33|33|32|31|30|29|28|27|27|47|28|29|30|31|32|42|36|35|36|37|38|39|40|41|42|46|44|45|46|47|48|51|50|51|0\n55|53|52|51|50|48|48|47|43|42|41|41|44|45|40|39|38|37|35|34|33|32|32|31|30|29|29|54|30|31|36|33|34|35|36|37|38|39|40|46|42|43|44|45|46|47|49|49|50|51|52|53|54|55|0\n24|24|21|20|19|18|18|17|16|15|14|14|23|15|16|17|22|19|20|21|22|23|25|25|0\n27|26|24|23|22|21|18|17|17|19|16|15|15|25|16|20|18|19|20|21|22|23|24|25|26|27|0\n70|68|68|67|65|65|63|63|62|61|60|59|59|71|58|57|54|54|53|53|52|50|49|48|48|44|44|43|43|46|42|40|39|39|38|38|73|41|40|41|42|47|45|45|46|47|51|49|50|51|52|56|55|55|56|57|58|72|60|61|62|64|64|66|66|67|69|69|70|71|72|73|0\n36|35|34|34|37|33|32|32|39|31|28|27|27|29|26|23|23|24|22|22|41|25|24|25|26|30|28|29|30|31|40|33|38|35|36|37|38|39|40|41|0\n26|25|22|22|23|24|27|21|20|19|18|17|16|16|29|17|18|19|20|21|28|23|24|25|26|27|28|29|0\n39|38|38|37|35|34|34|32|32|31|28|28|27|27|30|25|24|23|22|22|26|23|24|25|26|41|29|29|30|31|33|33|36|35|36|37|40|39|40|41|0\n60|59|58|57|56|55|54|53|52|51|50|49|49|48|47|45|44|43|41|40|40|39|38|37|36|35|34|33|32|32|46|33|34|35|36|37|38|39|42|41|42|43|44|45|46|47|48|61|50|51|52|53|54|55|56|57|58|59|60|61|0\n44|44|43|42|41|40|38|38|37|35|33|33|32|31|31|30|29|26|26|25|24|24|28|25|27|27|28|29|30|36|32|34|34|35|36|37|39|39|40|41|42|43|45|45|0\n21|18|15|15|16|13|13|12|12|19|20|14|14|17|16|17|18|19|20|21|0\n48|47|46|45|44|44|49|43|43|40|40|38|37|37|36|35|34|33|32|31|28|28|29|27|27|42|30|29|30|31|32|33|34|35|36|39|38|39|41|41|42|51|50|45|46|47|48|49|50|51|0\n21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0\n26|25|25|23|21|20|19|19|18|16|16|15|15|24|17|17|18|22|20|21|22|23|24|27|26|27|0\n28|27|26|26|24|22|22|20|20|19|18|17|16|16|25|17|18|19|21|21|23|23|24|25|29|27|28|29|0\n18|17|17|16|16|20|21|15|14|13|13|23|14|15|22|19|18|19|20|21|22|23|0\n56|55|54|53|52|51|50|49|48|47|46|45|45|44|43|41|39|39|38|36|36|35|33|33|32|30|30|31|42|31|32|34|34|35|37|37|38|40|40|41|42|43|44|57|46|47|48|49|50|51|52|53|54|55|56|57|0\n10|7|7|8|9|11|8|9|10|11|0\n55|54|54|53|52|51|51|47|46|45|45|44|42|42|41|38|38|39|37|36|36|35|34|33|32|31|30|30|50|31|32|33|34|35|49|37|40|39|40|41|43|43|44|48|46|47|48|49|50|57|52|53|56|55|56|57|0\n48|48|49|43|42|41|41|44|40|40|46|38|38|37|36|35|35|51|34|33|31|31|30|29|28|28|53|29|30|32|32|33|34|52|36|37|39|39|47|45|42|43|44|45|46|47|50|49|50|51|52|53|0\n37|35|34|33|33|36|38|39|31|31|27|27|26|26|29|25|24|23|22|22|41|23|24|25|30|28|28|29|30|32|32|40|34|35|36|37|38|39|40|41|0\n27|25|23|22|22|20|20|19|17|17|16|15|15|26|16|18|18|19|21|21|24|23|24|25|26|27|0\n46|45|45|44|42|41|41|40|39|38|38|48|49|35|34|32|32|33|31|30|30|28|28|27|27|51|29|29|37|31|36|33|34|35|36|37|50|39|40|43|42|43|44|47|46|47|48|49|50|51|0\n85|82|82|81|80|79|78|78|76|75|74|72|72|71|69|69|68|66|65|64|64|63|61|61|60|59|58|57|56|52|51|50|50|53|49|49|48|47|45|44|44|46|77|45|46|47|48|55|54|51|52|53|54|55|56|57|58|59|60|62|62|63|67|65|66|67|68|70|70|71|73|73|74|75|76|77|84|79|80|81|83|83|84|85|0\n19|16|15|14|14|13|11|11|12|18|12|13|17|15|16|17|18|19|0\n32|31|29|28|28|27|25|24|24|23|22|22|19|19|18|18|21|20|20|21|33|23|26|25|26|27|30|29|30|31|32|33|0\n53|51|51|45|44|44|46|43|43|48|42|40|38|38|39|37|36|35|33|33|32|30|29|28|28|31|50|29|30|31|32|34|34|35|36|37|41|39|40|41|42|49|47|45|46|47|48|49|50|52|52|53|0\n9|7|6|6|8|7|8|9|0\n37|37|38|35|34|34|33|32|31|31|40|41|29|29|27|26|25|24|24|23|23|43|28|25|26|27|28|30|30|42|32|33|36|35|36|39|38|39|40|41|42|43|0\n52|52|49|46|46|47|45|44|43|42|42|41|40|39|38|37|35|35|34|32|31|30|30|29|28|28|51|29|33|31|32|33|34|36|36|37|38|39|40|41|50|43|44|45|48|47|48|49|50|51|53|53|0\n19|19|18|17|16|16|14|13|12|12|15|13|14|15|21|17|18|20|20|21|0\n64|64|59|58|57|56|56|53|52|49|48|48|50|47|47|54|46|46|45|45|42|41|38|38|39|40|37|37|36|35|34|34|63|35|36|44|43|39|40|41|42|43|44|62|61|55|51|49|50|51|52|53|54|55|60|57|58|59|60|61|62|63|65|65|0\n29|26|25|25|24|23|20|20|21|22|18|17|16|16|19|17|18|19|28|21|22|23|24|27|26|27|28|29|0\n58|57|56|55|51|50|50|52|49|47|47|48|46|45|44|43|42|39|39|40|38|37|37|59|35|35|34|33|32|32|61|33|34|36|36|60|38|41|40|41|42|43|44|45|46|54|48|49|53|51|52|53|54|55|56|57|58|59|60|61|0\n46|45|45|44|39|38|38|40|37|37|42|36|36|35|32|32|31|31|30|29|28|28|26|26|27|27|49|29|30|34|33|33|34|35|48|43|41|39|40|41|42|43|44|47|46|47|48|49|0\n86|85|83|82|81|80|80|79|77|77|76|76|87|74|74|73|73|89|71|71|70|69|68|67|66|66|91|63|63|62|62|61|57|56|55|55|58|59|53|53|52|51|49|49|48|48|93|50|50|51|52|54|54|60|56|57|58|59|60|61|65|64|64|65|92|67|68|69|70|72|72|90|75|75|88|78|78|79|84|81|82|83|84|85|86|87|88|89|90|91|92|93|0\n29|27|26|26|25|23|21|21|20|19|17|17|16|16|24|18|18|19|20|22|22|23|24|25|28|27|28|29|0\n35|33|33|32|31|31|30|29|28|26|26|25|25|37|24|22|22|21|21|39|23|23|24|38|27|27|28|29|30|36|32|34|34|35|36|37|38|39|0\n43|41|40|40|38|37|35|34|34|32|31|30|30|28|27|26|26|25|24|23|23|39|24|25|29|27|28|29|33|31|32|33|36|35|36|37|38|39|42|41|42|43|0\n33|32|31|30|30|29|27|25|24|24|26|23|23|21|20|19|19|22|20|21|22|35|28|25|26|27|28|29|34|31|32|33|34|35|0\n33|28|26|25|25|24|23|22|22|29|20|19|19|18|18|31|32|21|20|21|30|23|24|27|26|27|28|29|30|31|32|33|0\n10|9|8|7|7|11|8|9|10|11|0\n16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0\n44|43|42|40|39|38|37|36|36|35|34|33|32|32|45|31|30|29|27|27|26|25|25|47|26|28|28|29|30|31|46|33|34|35|41|37|38|39|40|41|42|43|44|45|46|47|0\n27|23|22|21|20|20|24|18|18|17|15|15|16|26|16|17|19|19|25|21|22|23|24|25|26|27|0\n7|7|6|6|9|8|8|9|0\n41|41|39|39|38|38|43|34|33|33|32|31|30|30|29|27|27|28|26|25|24|24|45|25|26|37|28|29|36|31|32|35|34|35|36|37|44|40|40|42|42|43|44|45|0\n45|44|44|43|42|41|40|39|39|38|35|34|33|32|32|31|28|27|27|29|26|25|25|37|26|30|28|29|30|31|36|33|34|35|36|37|38|47|40|41|42|43|46|45|46|47|0\n17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0\n67|65|64|63|62|59|59|60|55|53|52|52|51|49|48|48|47|46|45|45|44|42|42|43|57|40|39|39|38|37|36|35|35|66|36|37|38|41|40|41|58|43|44|56|46|47|50|49|50|51|54|53|54|55|56|57|58|61|60|61|62|63|64|65|66|67|0\n58|57|56|55|53|53|54|52|51|47|47|46|42|41|40|40|43|39|39|38|38|37|36|35|33|32|31|31|34|50|32|33|34|35|36|37|49|45|44|41|42|43|44|45|46|48|48|49|50|51|52|59|54|55|56|57|58|59|0\n29|27|26|24|23|23|22|20|18|18|19|17|16|16|28|17|21|19|20|21|22|25|24|25|26|27|28|29|0\n30|30|29|27|26|25|24|23|21|20|19|19|18|17|17|28|18|22|20|21|22|23|24|25|26|27|28|29|31|31|0\n36|36|37|35|35|39|33|33|32|31|31|41|29|28|28|30|26|25|24|23|23|27|24|25|26|27|43|29|30|42|32|34|34|40|38|37|38|39|40|41|42|43|0\n96|95|94|94|93|86|86|84|84|83|81|81|80|79|77|77|78|88|89|76|74|74|75|73|72|70|69|68|67|66|64|64|65|63|59|58|56|55|55|54|54|60|61|52|51|51|50|50|92|53|52|53|62|57|56|57|58|59|60|61|62|63|71|65|66|67|68|69|70|71|72|73|91|75|76|90|78|79|80|82|82|83|85|85|87|87|88|89|90|91|92|93|97|95|96|97|0\n35|32|32|31|30|28|28|25|25|26|23|23|21|21|20|19|19|34|20|22|22|24|24|27|26|27|29|29|30|31|33|33|34|35|0\n25|22|20|20|17|17|18|19|15|15|14|14|24|16|16|23|18|19|21|21|22|23|24|25|0\n17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0\n52|52|51|50|46|44|44|43|41|41|39|39|38|38|47|36|36|35|33|32|32|31|30|28|28|29|49|29|30|31|34|33|34|35|37|37|48|40|40|42|42|43|45|45|46|47|48|49|50|51|53|53|0\n61|60|59|59|58|57|56|55|55|54|51|50|49|49|48|46|45|45|44|43|42|41|40|39|38|37|36|35|33|33|34|53|34|35|36|37|38|39|40|41|42|43|44|47|46|47|48|52|50|51|52|53|54|63|56|57|58|62|60|61|62|63|0\n54|54|53|51|51|52|48|48|47|47|50|40|40|39|37|36|35|35|34|33|33|42|32|30|30|31|44|45|46|31|32|43|34|38|36|37|38|39|41|41|42|43|44|45|46|57|49|49|50|56|52|53|55|55|56|57|0\n51|50|49|48|48|46|46|45|43|42|42|41|40|40|39|37|37|36|34|32|32|30|30|29|28|28|35|29|31|31|33|33|34|35|36|38|38|39|53|41|44|43|44|45|47|47|52|49|50|51|52|53|0\n29|29|28|27|26|25|24|23|23|31|21|21|20|19|18|18|33|19|20|22|22|32|24|25|26|27|28|30|30|31|32|33|0\n30|29|28|27|27|24|23|22|22|21|20|19|18|17|17|26|18|19|20|21|25|23|24|25|26|31|28|29|30|31|0\n32|32|30|28|27|25|24|23|22|22|26|21|20|19|18|18|31|19|20|21|29|23|24|25|26|27|28|29|30|31|33|33|0\n20|19|18|15|15|16|14|13|13|12|12|21|14|17|16|17|18|19|20|21|0\n25|24|24|26|23|22|22|28|20|19|18|17|16|16|21|17|18|19|20|21|29|23|27|25|26|27|28|29|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n8|6|6|7|9|7|8|9|0\n38|38|37|37|35|35|34|32|32|33|41|31|29|28|27|27|26|25|24|23|23|43|24|25|26|30|28|29|30|31|42|33|34|36|36|40|39|39|40|41|42|43|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n30|27|27|28|26|25|24|23|22|22|20|19|18|17|17|21|18|19|20|21|31|23|24|25|26|29|28|29|30|31|0\n36|34|32|32|33|31|31|30|29|27|26|24|23|23|22|20|20|21|28|21|22|25|24|25|26|27|28|29|30|37|35|33|34|35|36|37|0\n18|17|16|16|15|14|13|12|11|11|12|13|14|15|19|17|18|19|0\n42|41|41|40|39|39|38|37|37|45|36|35|34|32|31|31|30|29|28|27|26|25|25|47|26|27|28|29|30|33|32|33|34|35|36|46|38|44|40|43|42|43|44|45|46|47|0\n38|38|34|33|32|31|31|35|30|28|27|27|26|25|23|23|22|21|21|37|22|24|24|25|26|29|28|29|30|36|32|33|34|35|36|37|39|39|0\n22|22|21|20|19|19|24|17|15|15|14|14|18|16|16|17|18|25|20|21|23|23|24|25|0\n46|43|43|44|41|40|40|39|36|36|35|34|33|32|31|30|30|38|28|28|26|25|25|27|26|27|29|29|47|31|32|33|34|35|37|37|38|39|42|41|42|45|44|45|46|47|0\n48|46|46|45|43|41|41|42|40|38|37|37|36|34|34|35|33|32|28|28|27|26|26|30|31|27|29|29|30|31|32|33|49|35|36|39|38|39|40|44|42|43|44|45|47|47|48|49|0\n37|35|33|32|32|31|30|29|27|27|25|25|24|22|21|21|20|20|36|23|22|23|24|26|26|28|28|29|30|31|34|33|34|35|36|37|0\n24|24|23|21|20|19|16|16|17|15|14|14|22|15|18|17|18|19|20|21|22|23|25|25|0\n62|61|60|60|59|58|55|54|53|53|56|52|51|50|50|64|65|46|46|45|44|43|43|42|40|39|38|37|36|36|41|35|35|67|49|37|38|39|40|41|42|48|44|45|47|47|48|49|66|51|52|57|54|55|56|57|58|59|63|61|62|63|64|65|66|67|0\n26|26|23|23|21|20|20|19|17|16|15|15|18|25|16|17|18|19|22|21|22|24|24|25|27|27|0\n22|21|20|20|18|17|16|15|13|13|14|19|14|15|16|17|18|19|23|21|22|23|0\n39|39|38|36|35|35|34|33|32|31|31|29|28|27|26|25|23|23|22|22|30|24|24|25|26|27|28|29|30|41|32|33|34|37|36|37|38|40|40|41|0\n63|61|60|60|58|58|55|54|54|53|53|52|51|50|50|64|65|48|47|47|45|45|43|42|41|41|40|39|38|37|36|35|35|67|36|37|38|39|40|44|42|43|44|46|46|49|48|49|66|51|52|57|56|55|56|57|59|59|62|61|62|63|64|65|66|67|0\n53|52|50|49|49|48|47|46|46|54|55|45|43|42|40|39|39|38|37|37|36|34|32|31|31|33|30|30|57|35|32|33|34|35|36|44|38|41|40|41|42|43|44|45|56|47|48|51|50|51|52|53|54|55|56|57|0\n25|23|23|22|21|21|26|27|20|19|18|17|16|16|29|17|18|19|20|28|22|24|24|25|26|27|28|29|0\n61|59|58|56|55|54|51|51|52|50|50|49|48|45|44|43|43|46|42|41|39|38|37|37|36|34|33|33|32|32|60|35|34|35|36|40|38|39|40|41|42|47|44|45|46|47|48|49|57|53|52|53|54|55|56|57|58|59|60|61|0\n42|40|39|39|38|36|35|35|34|33|32|32|31|29|29|28|26|25|24|23|23|27|24|25|26|27|28|30|30|31|43|33|34|37|36|37|38|41|40|41|42|43|0\n7|7|6|6|9|8|8|9|0\n57|56|54|53|53|52|50|50|49|47|46|45|45|44|42|41|41|43|58|59|37|36|36|38|35|35|34|33|32|32|61|33|34|40|39|37|38|39|40|60|42|43|44|48|46|47|48|49|51|51|52|55|54|55|56|57|58|59|60|61|0\n17|15|11|11|12|13|10|10|16|14|12|13|14|15|16|17|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n11|9|8|7|7|10|8|9|10|11|0\n59|58|56|55|54|53|52|51|48|47|46|45|44|44|49|43|42|37|37|38|36|36|40|34|34|32|31|31|33|57|32|33|35|35|41|39|38|39|40|41|42|43|50|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|0\n27|26|23|23|22|21|20|18|18|17|16|15|15|25|16|17|19|19|20|21|22|24|24|25|26|27|0\n47|46|46|44|44|45|43|43|50|42|40|39|39|37|36|35|34|30|29|29|31|32|28|27|27|38|28|33|30|31|32|33|34|35|36|37|38|41|40|41|42|51|49|45|48|47|48|49|50|51|0\n64|64|61|61|60|55|54|54|53|50|50|51|52|57|48|48|47|46|46|45|44|43|40|40|41|39|38|36|36|35|34|34|63|35|37|37|38|39|42|41|42|43|44|45|59|47|49|49|58|51|52|53|56|55|56|57|58|59|60|62|62|63|65|65|0\n53|51|50|49|47|46|46|44|44|40|38|38|37|37|41|42|35|35|34|33|32|31|30|29|28|28|52|29|30|31|32|33|34|36|36|43|39|39|40|41|42|43|45|45|48|47|48|49|50|51|52|53|0\n54|50|49|48|47|47|51|52|46|45|44|42|42|41|40|38|38|37|36|35|35|34|33|30|30|29|29|32|31|31|32|33|34|55|36|37|39|39|40|41|43|43|44|45|46|53|48|49|50|51|52|53|54|55|0\n19|16|16|15|14|12|12|11|11|18|13|13|14|15|17|17|18|19|0\n33|31|30|29|28|27|26|25|25|24|23|21|20|18|18|19|22|19|20|21|22|23|24|32|26|27|28|29|30|31|32|33|0\n43|39|38|38|40|37|35|34|34|33|30|30|31|29|28|27|25|25|24|23|23|42|24|26|26|27|28|29|32|31|32|33|36|35|36|37|41|39|40|41|42|43|0\n87|86|84|81|81|76|76|75|75|78|79|74|73|72|70|70|69|69|66|65|65|64|63|61|61|60|60|59|58|56|56|55|53|53|52|51|50|49|48|46|45|45|47|85|46|47|48|49|50|51|52|54|54|55|57|57|58|59|68|62|62|63|64|67|66|67|68|83|71|71|72|73|74|80|77|77|78|79|80|82|82|83|84|85|86|87|0\n47|45|43|42|41|40|39|38|37|37|36|34|33|32|31|30|30|28|28|27|26|25|25|46|26|27|29|29|35|31|32|33|34|35|36|44|38|39|40|41|42|43|44|45|46|47|0\n39|39|38|36|36|35|33|32|32|31|30|30|28|27|26|25|24|23|22|22|29|23|24|25|26|27|28|29|41|31|34|33|34|35|37|37|38|40|40|41|0\n11|11|10|9|9|13|14|15|10|12|12|13|14|15|0\n36|35|35|33|32|30|30|31|29|28|28|38|39|26|26|25|24|23|22|22|41|23|24|25|27|27|40|29|34|31|32|33|34|37|36|37|38|39|40|41|0\n45|44|38|38|36|35|35|34|34|40|41|32|32|31|30|29|27|27|26|25|24|24|43|25|26|28|28|29|30|31|33|33|42|37|36|37|39|39|40|41|42|43|44|45|0\n43|42|41|41|40|38|38|37|34|34|35|33|32|32|45|30|29|29|28|27|26|25|25|47|26|27|28|31|30|31|46|33|36|35|36|37|39|39|40|44|42|43|44|45|46|47|0\n30|29|28|27|26|25|24|23|22|20|19|19|17|17|18|31|18|21|20|21|22|23|24|25|26|27|28|29|30|31|0\n63|60|60|59|58|56|56|55|54|53|52|50|48|48|47|46|46|45|44|40|39|38|37|37|36|35|35|42|34|33|33|62|34|43|36|41|38|39|40|41|42|43|44|45|51|47|49|49|50|51|52|53|54|55|57|57|58|59|61|61|62|63|0\n58|57|57|56|54|49|49|50|48|48|52|47|46|45|42|40|40|39|39|43|38|36|36|35|34|33|32|31|31|55|32|33|34|35|37|37|38|44|41|41|42|43|44|45|46|47|53|51|50|51|52|53|54|55|56|59|58|59|0\n58|57|56|56|55|54|51|49|47|47|48|46|45|44|43|43|42|38|37|37|36|36|40|35|34|33|31|31|32|53|32|33|34|35|41|39|38|39|40|41|42|52|44|45|46|50|48|49|50|51|52|53|54|55|59|57|58|59|0\n39|37|37|36|35|34|34|40|41|32|31|30|30|29|28|26|26|24|24|23|23|43|25|25|27|27|28|29|33|31|32|33|42|35|36|38|38|39|40|41|42|43|0\n76|76|74|71|71|69|69|68|64|63|63|62|61|60|60|66|56|55|55|53|53|52|50|50|49|48|48|58|46|46|45|45|44|43|42|41|40|40|75|41|42|43|44|73|47|47|59|49|51|51|52|54|54|57|56|57|58|59|67|61|62|65|64|65|66|67|68|70|70|72|72|73|74|75|77|77|0\n8|7|7|6|6|9|8|9|0\n47|44|44|43|40|39|37|36|34|34|33|32|31|30|29|28|28|38|41|27|26|25|25|46|26|27|42|29|30|31|32|33|35|35|36|37|38|39|40|41|42|43|45|45|46|47|0\n7|6|5|5|6|7|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n30|29|29|31|28|28|25|24|24|23|22|21|20|19|18|18|27|19|20|21|22|23|26|25|26|27|33|32|30|31|32|33|0\n51|50|50|48|48|47|44|44|45|43|43|42|39|38|38|37|37|34|33|32|31|31|30|28|28|29|36|29|30|35|32|33|34|35|36|41|40|39|40|41|42|53|46|45|46|47|49|49|52|51|52|53|0\n24|24|23|22|21|21|26|27|20|19|18|17|16|16|29|17|18|19|20|28|22|23|25|25|26|27|28|29|0\n43|43|42|41|40|39|39|34|34|33|33|36|31|31|30|28|28|27|26|25|24|24|38|25|26|27|29|29|30|32|32|37|35|35|36|37|38|45|40|41|42|44|44|45|0\n20|17|17|16|15|14|13|13|19|12|12|21|14|15|16|18|18|19|20|21|0\n26|25|24|24|21|21|20|18|17|16|16|15|15|23|19|17|18|19|20|22|22|23|27|25|26|27|0\n43|41|40|39|38|36|36|35|34|33|32|31|26|26|27|25|25|29|24|23|23|42|24|30|28|27|28|29|30|31|32|33|34|35|37|37|38|39|40|41|42|43|0\n58|55|55|54|54|53|52|51|50|48|47|47|46|45|45|44|42|42|39|38|38|37|37|35|33|33|32|31|31|36|32|34|34|35|36|41|40|39|40|41|43|43|44|59|46|49|48|49|50|51|52|53|57|56|56|57|58|59|0\n22|21|20|20|19|19|18|17|17|15|14|14|16|15|16|25|18|24|23|21|22|23|24|25|0\n43|42|41|39|39|38|38|37|36|35|34|32|32|27|27|28|26|25|25|30|24|24|45|31|26|29|28|29|30|31|33|33|34|35|36|37|44|40|40|41|42|43|44|45|0\n52|50|49|49|47|45|44|43|43|42|41|41|40|39|39|38|37|35|33|32|31|30|30|29|28|28|36|29|34|31|32|33|34|35|36|37|38|53|40|48|42|46|44|45|46|47|48|51|50|51|52|53|0\n22|22|20|15|15|16|17|18|14|13|13|21|14|19|16|17|18|19|20|21|23|23|0\n59|58|57|57|56|54|54|53|52|49|49|48|48|45|45|46|44|44|61|43|42|41|40|38|38|37|35|34|34|33|33|63|36|35|36|37|39|39|40|41|42|43|62|47|46|47|51|50|50|51|52|53|55|55|56|60|58|59|60|61|62|63|0\n40|38|38|37|37|36|35|30|29|28|27|27|31|32|26|25|24|23|22|22|34|23|24|25|26|33|28|29|30|31|32|33|34|35|36|41|39|39|40|41|0\n54|52|51|51|50|49|48|47|47|46|45|44|41|40|39|39|38|37|36|34|33|33|32|31|30|29|29|43|30|31|32|35|34|35|36|37|38|42|40|41|42|43|44|45|46|55|48|49|50|53|52|53|54|55|0\n17|13|13|14|11|11|10|10|16|12|12|15|14|15|16|17|0\n11|9|8|7|7|10|8|9|10|11|0\n30|30|29|28|27|26|25|25|32|33|22|22|21|21|19|19|20|35|20|24|23|23|24|34|26|27|28|29|31|31|32|33|34|35|0\n37|35|35|33|32|29|29|28|28|27|25|24|23|21|21|20|20|26|34|22|22|23|24|25|26|27|31|30|30|31|32|33|34|36|36|37|0\n21|20|19|17|16|14|14|13|12|12|18|13|15|15|16|17|18|19|20|21|0\n17|17|18|16|16|20|15|13|12|12|14|13|14|15|21|19|18|19|20|21|0\n16|14|13|13|12|11|10|10|17|11|12|15|14|15|16|17|0\n69|68|66|66|65|63|62|62|61|59|59|58|58|57|54|54|53|52|51|51|56|71|50|49|48|47|46|44|44|43|41|40|39|39|38|38|73|42|40|41|42|43|45|45|46|47|48|49|50|72|52|53|55|55|56|57|70|60|60|61|64|63|64|65|67|67|68|69|70|71|72|73|0\n60|58|57|55|55|56|54|53|52|50|48|48|47|42|42|43|41|41|45|40|40|51|37|37|36|35|34|33|32|32|39|33|34|35|36|38|38|39|61|46|44|43|44|45|46|47|49|49|50|51|52|53|54|59|56|57|58|59|60|61|0\n19|17|17|14|14|13|11|11|12|16|12|13|15|15|16|18|18|19|0\n52|50|49|49|48|47|46|46|45|44|42|39|39|40|38|36|36|35|34|32|31|31|30|29|28|28|43|29|30|33|32|33|34|35|37|37|38|41|40|41|42|43|44|45|53|47|48|51|50|51|52|53|0\n9|8|8|7|7|11|10|9|10|11|0\n9|7|6|6|8|7|8|9|0\n34|33|33|29|29|28|26|26|25|25|24|23|22|21|20|19|19|32|20|21|22|23|24|31|27|27|28|30|30|31|32|35|34|35|0\n40|40|39|38|36|35|34|32|31|30|30|29|27|26|26|25|24|23|22|22|37|23|24|25|28|27|28|29|33|31|32|33|34|35|36|37|38|39|41|41|0\n41|41|40|39|39|38|33|32|32|31|30|30|35|29|28|27|26|25|24|23|23|37|24|25|26|27|28|29|36|31|34|33|34|35|36|37|38|43|40|42|42|43|0\n38|36|36|35|35|39|34|32|31|30|30|29|26|26|27|24|23|23|22|22|41|25|24|25|28|27|28|29|33|31|32|33|34|40|37|37|38|39|40|41|0\n17|15|14|14|12|11|10|10|13|11|12|13|16|15|16|17|0\n10|10|7|7|8|9|8|9|11|11|0\n43|41|40|39|38|37|36|36|35|34|34|44|45|33|32|31|30|29|28|27|26|25|25|47|26|27|28|29|30|31|32|33|46|35|42|37|38|39|40|41|42|43|44|45|46|47|0\n72|71|69|69|68|67|67|73|62|61|57|57|58|56|55|55|54|54|63|64|65|53|52|51|47|47|46|45|45|49|44|43|42|41|40|39|39|75|40|41|42|43|44|50|46|48|48|49|50|51|52|53|66|60|56|59|58|59|60|61|62|63|64|65|66|74|68|70|70|71|72|73|74|75|0\n26|25|25|23|22|21|19|19|17|17|16|15|15|24|16|18|18|20|20|21|22|23|24|27|26|27|0\n39|36|35|35|34|31|30|30|29|28|27|26|25|25|23|23|22|21|21|38|22|24|24|33|26|27|28|29|32|31|32|33|34|37|36|37|38|39|0\n31|29|28|28|26|26|24|23|23|22|22|32|21|19|18|18|20|19|20|21|33|25|24|25|27|27|30|29|30|31|32|33|0\n24|24|23|21|20|19|19|18|15|15|14|14|17|16|16|17|18|22|20|21|22|23|25|25|0\n41|40|40|39|38|37|36|35|32|32|33|34|30|29|28|25|25|26|24|23|23|31|24|27|26|27|28|29|30|31|43|33|34|35|36|37|38|39|42|41|42|43|0\n30|30|28|25|25|24|23|23|22|19|19|20|18|17|17|29|18|21|20|21|22|27|24|26|26|27|28|29|31|31|0\n24|23|22|21|20|20|25|18|17|17|16|15|15|27|16|19|18|19|26|21|22|23|24|25|26|27|0\n52|52|51|50|46|45|45|47|48|44|42|41|40|39|38|37|36|35|33|32|32|31|29|29|28|28|43|30|30|31|34|33|34|35|36|37|38|39|40|41|42|43|44|49|46|47|48|49|50|51|53|53|0\n19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0\n45|44|43|41|41|40|39|39|46|47|37|37|35|35|34|32|30|30|31|28|27|27|26|26|49|29|28|29|33|31|32|33|34|36|36|38|38|48|40|42|42|43|44|45|46|47|48|49|0\n37|36|36|35|32|31|31|33|29|28|28|27|26|25|24|22|22|21|21|39|23|23|24|25|26|27|30|29|30|34|32|33|34|35|38|37|38|39|0\n19|16|15|15|14|13|12|11|11|18|12|13|14|17|16|17|18|19|0\n14|13|12|10|10|11|9|9|15|11|12|13|14|15|0\n67|65|61|60|59|59|62|63|56|56|55|55|54|53|53|51|48|47|46|45|44|42|42|41|40|39|38|38|49|37|36|35|35|52|36|37|50|39|40|41|43|43|44|45|46|47|48|49|50|51|52|66|54|58|57|57|58|64|60|61|62|63|64|65|66|67|0\n59|56|56|55|52|51|50|49|48|47|47|53|41|40|40|42|43|39|38|38|45|37|36|35|34|33|32|31|31|58|32|33|34|35|36|37|46|39|44|41|42|43|44|45|46|54|48|49|50|51|52|53|54|55|57|57|58|59|0\n39|37|35|34|34|33|31|31|30|27|26|26|28|25|24|23|22|21|21|38|22|23|24|25|29|27|28|29|30|32|32|33|36|35|36|37|38|39|0\n44|41|40|39|39|42|37|36|36|35|33|33|32|32|31|30|28|27|26|25|24|24|29|25|26|27|28|29|30|31|45|34|34|35|38|37|38|43|40|41|42|43|44|45|0\n19|18|18|17|17|21|22|16|14|14|13|13|15|15|16|23|20|19|20|21|22|23|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n25|22|22|23|20|18|18|17|16|15|14|14|21|15|16|17|19|19|20|21|24|23|24|25|0\n17|17|16|15|15|13|12|11|11|14|12|13|14|19|16|18|18|19|0\n33|31|28|27|27|29|26|25|24|23|22|20|20|19|18|18|32|19|21|21|22|23|24|25|26|30|28|29|30|31|32|33|0\n57|55|53|48|48|49|47|46|46|51|45|45|43|43|41|41|40|39|38|37|36|35|34|33|31|30|30|32|56|31|32|33|34|35|36|37|38|39|40|42|42|44|44|54|52|47|50|49|50|51|52|53|54|55|56|57|0\n42|41|40|39|38|38|36|32|31|30|29|29|33|34|28|26|25|25|24|23|23|37|24|27|26|27|28|35|30|31|32|33|34|35|36|37|43|39|40|41|42|43|0\n65|63|59|57|57|54|54|55|53|52|51|50|49|48|48|60|61|46|45|45|44|43|42|40|40|39|37|37|36|35|34|34|64|35|36|38|38|39|41|41|42|43|44|47|46|47|62|49|50|51|52|53|56|55|56|58|58|59|60|61|62|63|64|65|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n31|29|28|27|24|24|25|21|20|20|19|19|18|17|17|30|18|23|22|21|22|23|26|25|26|27|28|29|30|31|0\n23|22|22|20|20|21|17|16|16|15|14|14|19|15|18|17|18|19|25|21|24|23|24|25|0\n50|47|47|48|46|46|45|40|39|38|36|36|37|35|34|33|33|42|31|31|29|29|28|27|27|44|28|30|30|32|32|43|34|35|41|37|38|39|40|41|42|43|44|45|51|49|48|49|50|51|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n38|38|39|37|34|33|33|35|32|31|29|29|30|28|27|25|24|22|22|23|26|23|24|25|26|27|28|41|30|31|32|36|34|35|36|37|40|39|40|41|0\n7|5|5|6|6|7|0\n58|57|56|55|54|53|52|52|51|49|48|48|45|43|42|42|44|41|40|39|38|33|33|34|35|32|32|31|31|47|37|36|34|35|36|37|38|39|40|41|46|43|44|45|46|47|50|49|50|51|59|53|54|55|56|57|58|59|0\n14|14|15|13|12|11|10|10|17|11|12|13|16|15|16|17|0\n10|8|8|9|7|7|11|9|10|11|0\n45|44|43|43|46|47|42|40|40|38|37|36|36|35|34|34|49|32|31|31|30|28|28|27|27|51|29|29|30|33|32|33|50|35|39|37|38|39|41|41|42|48|44|45|46|47|48|49|50|51|0\n8|6|6|7|9|7|8|9|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n29|27|25|25|22|22|21|20|19|18|18|17|16|16|28|17|24|19|20|21|23|23|24|26|26|27|28|29|0\n45|43|42|42|39|37|37|36|35|34|33|33|32|31|29|29|28|25|25|26|24|24|41|27|26|27|28|30|30|31|32|40|34|35|36|38|38|39|40|41|44|43|44|45|0\n27|26|24|23|21|21|19|19|18|17|17|15|15|16|16|25|18|20|20|22|22|23|24|25|26|27|0\n52|51|49|49|48|48|46|44|44|43|37|36|34|34|35|38|32|32|31|30|30|40|41|29|28|28|47|29|42|31|33|33|39|35|36|37|38|39|40|41|42|43|45|45|46|47|53|50|50|51|52|53|0\n26|25|24|23|22|22|27|28|21|19|18|18|17|16|16|17|20|19|20|21|29|23|24|25|26|27|28|29|0\n27|24|22|20|20|21|19|19|18|16|16|15|15|26|17|17|18|25|23|21|22|23|24|25|26|27|0\n6|6|5|5|7|7|0\n47|47|48|46|45|44|44|50|40|38|38|39|41|37|35|34|34|33|31|31|30|29|28|27|27|43|28|29|30|32|32|33|36|35|36|37|42|39|40|41|42|43|51|45|46|49|48|49|50|51|0\n23|21|20|19|17|17|15|14|13|13|16|22|14|15|16|18|18|19|20|21|22|23|0\n48|45|44|43|43|42|42|41|39|39|38|38|37|33|32|31|31|34|30|28|28|27|26|26|36|27|29|29|30|35|32|33|34|35|36|37|49|40|40|41|47|46|44|45|46|47|48|49|0\n59|58|58|57|56|54|54|53|51|51|52|49|47|46|46|45|44|43|40|38|38|37|36|36|41|35|34|33|32|32|50|33|34|35|42|37|39|39|40|41|42|43|44|45|48|47|48|49|50|61|52|53|55|55|56|57|60|59|60|61|0\n74|73|72|71|71|70|68|68|66|65|63|62|59|59|60|61|58|57|56|55|54|52|50|50|49|48|48|47|46|44|43|43|42|40|40|39|39|67|41|41|42|45|44|45|46|47|53|49|51|51|52|53|54|55|56|57|58|64|60|61|62|63|64|65|66|67|69|69|70|75|72|73|74|75|0\n24|24|20|19|19|18|18|17|15|15|14|14|23|16|16|17|22|21|20|21|22|23|25|25|0\n23|18|18|19|17|16|16|21|14|13|13|15|14|15|22|17|20|19|20|21|22|23|0\n37|35|34|33|32|27|26|26|28|25|24|24|30|22|22|21|20|20|36|21|23|23|31|25|29|27|28|29|30|31|32|33|34|35|36|37|0\n40|39|36|35|35|37|33|33|32|30|29|29|31|28|26|26|23|23|22|22|25|24|24|25|27|27|28|41|30|31|32|34|34|38|36|37|38|39|40|41|0\n61|57|57|56|54|54|55|53|52|52|49|48|48|47|43|42|42|41|40|40|45|38|37|36|35|34|34|33|32|32|51|33|39|35|36|37|38|39|46|41|44|43|44|45|46|47|50|49|50|51|60|53|59|55|56|58|58|59|60|61|0\n40|39|38|36|36|35|34|34|33|30|29|28|27|27|31|25|25|24|23|22|22|23|24|26|26|32|28|29|30|31|32|33|41|35|37|37|38|39|40|41|0\n62|59|59|60|57|56|55|55|54|53|52|52|51|50|48|47|45|44|43|43|42|41|40|39|37|36|36|35|34|33|33|49|34|35|38|37|38|39|40|41|42|46|44|45|46|47|48|49|50|51|63|53|54|58|56|57|58|61|60|61|62|63|0\n29|25|22|22|23|19|19|20|18|17|17|26|16|16|28|27|18|21|20|21|24|23|24|25|26|27|28|29|0\n11|9|8|7|7|10|8|9|10|11|0\n38|37|36|36|30|30|31|32|33|28|27|25|25|24|24|23|22|21|21|35|22|23|29|26|26|27|28|29|34|31|32|33|34|35|39|37|38|39|0\n50|50|49|48|46|46|47|52|53|44|43|43|41|40|40|39|38|36|35|35|34|33|32|31|30|29|29|55|30|31|32|33|34|37|36|37|38|39|42|41|42|45|44|45|54|47|48|49|51|51|52|53|54|55|0\n38|37|36|35|34|33|33|31|29|28|27|26|26|25|22|22|23|21|21|32|24|23|24|25|30|27|28|29|30|31|32|39|34|35|36|37|38|39|0\n28|27|25|25|24|24|23|22|20|19|17|17|16|16|21|18|18|19|20|21|22|23|29|26|26|27|28|29|0\n17|15|14|13|10|10|11|12|16|11|12|13|14|15|16|17|0\n28|27|26|26|23|23|20|19|18|18|21|17|16|16|25|17|22|19|20|21|22|24|24|25|29|27|28|29|0\n33|31|30|27|26|25|25|28|24|23|21|21|20|19|18|18|32|19|20|22|22|23|24|29|26|27|28|29|30|31|32|33|0\n59|59|57|57|58|55|53|52|51|50|49|49|48|47|45|44|44|43|42|41|40|38|37|36|35|35|34|33|32|32|56|33|34|39|36|37|38|39|40|41|42|43|46|45|46|47|48|54|50|51|52|53|54|55|56|61|58|60|60|61|0\n44|41|40|40|39|38|38|37|36|35|34|33|32|32|31|29|28|27|27|26|24|24|25|25|26|30|28|29|30|31|45|33|34|35|36|37|43|39|42|41|42|43|44|45|0\n39|36|35|35|34|31|31|32|29|29|28|27|26|25|24|23|22|21|21|38|22|23|24|25|26|27|28|30|30|33|32|33|34|37|36|37|38|39|0\n47|45|44|43|40|39|38|37|37|41|36|35|34|33|32|31|30|29|28|27|26|25|25|46|26|27|28|29|30|31|32|33|34|35|36|42|38|39|40|41|42|43|44|45|46|47|0\n47|46|45|44|44|48|49|43|42|40|40|39|38|37|36|35|34|33|32|29|29|30|27|27|28|51|28|31|30|31|32|33|34|35|36|37|38|39|41|41|42|43|50|45|46|47|48|49|50|51|0\n31|25|25|23|23|24|27|28|22|20|20|19|18|17|17|30|18|19|21|21|22|29|24|26|26|27|28|29|30|31|0\n64|64|63|60|59|57|57|58|61|55|54|54|53|52|52|51|51|50|48|48|49|68|46|45|45|44|43|43|70|40|39|39|38|37|37|42|38|41|40|41|42|71|44|47|46|47|69|49|50|67|66|53|56|55|56|62|58|59|60|61|62|63|65|65|66|67|68|69|70|71|0\n10|9|8|7|7|11|8|9|10|11|0\n27|23|23|24|22|22|26|21|19|17|17|18|20|16|16|29|18|19|20|21|28|25|24|25|26|27|28|29|0\n30|29|28|27|27|26|25|24|23|23|22|20|19|19|18|18|33|21|20|21|22|32|24|25|26|31|28|29|30|31|32|33|0\n69|68|68|67|66|66|63|62|61|59|59|58|56|56|55|55|64|53|53|52|50|49|48|47|47|46|43|41|41|42|40|40|39|37|37|38|38|39|45|44|42|43|44|45|46|51|48|49|50|51|52|54|54|65|57|57|58|60|60|61|62|63|64|65|71|67|70|69|70|71|0\n17|16|15|13|11|11|10|10|14|12|12|13|14|15|16|17|0\n35|34|34|36|32|31|30|27|26|25|25|24|23|22|22|21|20|20|33|21|29|23|24|28|26|27|28|29|30|31|32|33|37|35|36|37|0\n40|40|38|38|37|36|35|34|33|32|31|30|30|42|43|28|27|27|25|25|24|24|45|26|26|29|28|29|44|31|32|33|34|35|36|37|39|39|41|41|42|43|44|45|0\n57|56|55|54|53|52|51|49|48|48|47|46|44|43|39|39|40|41|42|38|36|35|34|34|33|32|31|30|30|31|32|33|37|35|36|37|38|45|40|41|42|43|44|45|46|47|50|49|50|51|52|53|54|55|56|57|0\n39|37|36|35|31|30|30|29|29|33|27|26|26|25|23|23|22|21|21|38|22|24|24|25|28|27|28|34|32|31|32|33|34|35|36|37|38|39|0\n9|9|10|11|8|8|13|12|10|11|12|13|0\n69|67|65|64|63|62|62|60|60|58|56|55|55|57|54|51|50|48|48|47|46|45|45|52|43|43|42|41|40|39|38|36|36|37|68|37|38|39|40|41|42|44|44|53|46|47|49|49|50|51|52|53|54|59|56|57|58|59|61|61|66|63|64|65|66|67|68|69|0\n33|33|31|31|30|26|25|25|24|23|23|28|22|21|20|19|19|35|20|21|22|29|24|27|26|27|28|29|30|32|32|34|34|35|0\n11|8|8|7|7|10|9|9|10|11|0\n21|20|19|18|18|22|23|16|15|15|14|14|25|17|16|17|24|19|20|21|22|23|24|25|0\n49|48|46|46|44|44|45|50|51|42|41|40|39|38|38|37|36|34|34|32|31|31|30|29|28|28|53|29|30|33|32|33|35|35|36|37|43|39|40|41|42|43|52|45|47|47|48|49|50|51|52|53|0\n60|59|57|57|56|54|54|53|52|51|48|48|47|46|46|50|45|42|42|41|41|40|38|37|34|34|33|32|32|36|39|33|35|35|36|37|38|39|40|44|43|43|44|45|61|47|49|49|50|51|52|53|55|55|56|58|58|59|60|61|0\n38|37|37|36|34|34|31|30|29|28|28|27|25|24|24|23|22|21|21|33|22|23|26|25|26|27|32|29|30|31|32|33|35|35|36|39|38|39|0\n33|31|30|28|28|27|20|20|21|22|23|19|19|25|18|18|32|26|24|21|22|23|24|25|26|27|29|29|30|31|32|33|0\n21|20|17|17|15|14|13|13|12|12|19|16|14|15|16|18|18|19|20|21|0\n38|37|37|39|36|36|41|34|32|32|33|31|30|29|28|27|26|26|24|23|23|25|24|25|43|27|28|29|30|31|35|33|34|35|42|40|38|39|40|41|42|43|0\n35|33|30|29|28|27|27|31|24|23|22|22|25|21|20|19|19|34|20|21|26|23|24|25|26|32|28|29|30|31|32|33|34|35|0\n31|31|30|30|29|27|26|26|24|23|21|21|20|19|18|18|25|19|20|22|22|23|24|25|28|27|28|29|33|32|32|33|0\n48|47|46|45|44|43|42|42|41|40|38|37|36|35|33|33|32|30|30|29|28|27|26|26|39|27|28|29|31|31|32|34|34|35|36|37|38|39|40|41|49|43|44|45|46|47|48|49|0\n36|35|35|33|32|31|28|27|27|29|26|24|23|23|22|21|20|20|34|21|22|25|24|25|26|30|28|29|30|31|32|33|34|37|36|37|0\n33|33|34|35|31|31|30|30|27|27|25|25|23|21|21|20|20|24|29|22|22|23|24|26|26|28|28|29|37|32|32|36|34|35|36|37|0\n52|51|51|49|48|47|45|44|44|43|42|41|40|39|38|35|34|33|33|36|30|29|29|31|28|28|50|32|30|31|32|37|34|35|36|37|38|39|40|41|42|43|46|45|46|47|48|49|50|53|52|53|0\n47|47|45|45|46|49|41|41|42|39|39|40|38|36|36|35|34|32|30|30|31|29|28|27|27|51|28|29|33|31|32|33|34|35|37|37|38|44|40|43|42|43|44|50|46|48|48|49|50|51|0\n44|43|43|41|38|38|37|36|36|34|33|33|32|31|30|28|27|26|26|25|24|24|42|25|29|27|28|29|30|31|32|35|34|35|40|37|39|39|40|41|42|45|44|45|0\n58|57|56|56|55|53|52|50|50|47|47|46|46|45|44|43|42|41|41|40|39|36|36|35|33|33|32|31|31|38|32|34|34|35|37|37|38|39|40|54|42|43|44|45|49|48|48|49|51|51|52|53|54|55|59|57|58|59|0\n22|22|21|21|24|25|19|19|18|16|16|15|15|27|17|17|18|20|20|26|23|23|24|25|26|27|0\n48|46|45|44|44|47|43|41|41|38|33|33|34|32|31|29|28|28|27|26|26|36|37|39|40|27|30|29|30|31|32|35|34|35|36|37|38|39|40|42|42|43|49|45|46|47|48|49|0\n32|31|31|29|28|24|24|23|23|26|22|21|20|19|18|18|30|19|20|21|22|27|25|25|26|27|28|29|30|33|32|33|0\n15|13|11|10|10|9|9|14|12|11|12|13|14|15|0\n46|45|44|43|42|41|40|39|38|38|37|33|33|32|32|31|30|30|28|27|26|25|25|29|26|27|28|29|36|31|35|34|34|35|36|37|47|39|40|41|42|43|44|45|46|47|0\n35|32|32|31|30|29|28|27|26|21|21|22|20|20|24|19|19|34|25|23|22|23|24|25|26|27|28|29|30|31|33|33|34|35|0\n41|40|40|42|39|36|35|34|34|37|33|32|31|30|29|28|28|44|45|27|26|25|25|47|26|27|46|29|30|31|32|33|38|35|36|37|38|39|43|41|42|43|44|45|46|47|0\n29|29|28|28|25|25|24|23|22|21|19|19|18|17|17|27|18|20|20|21|22|23|24|26|26|27|31|30|30|31|0\n34|33|33|31|28|28|27|25|24|24|26|23|22|21|20|19|19|32|20|21|22|23|30|25|26|27|29|29|30|31|32|35|34|35|0\n22|22|19|19|17|17|15|14|14|13|13|21|16|15|16|18|18|20|20|21|23|23|0\n45|43|42|42|44|41|38|38|39|36|36|35|33|33|32|31|30|29|28|27|26|26|25|25|47|27|28|29|30|31|32|34|34|35|37|37|40|39|40|41|46|43|44|45|46|47|0\n38|36|35|34|34|33|32|31|30|29|29|28|26|26|24|23|22|21|21|25|22|23|24|25|27|27|28|39|30|31|32|33|37|35|36|37|38|39|0\n23|23|24|22|21|20|20|26|18|17|16|15|15|19|16|17|18|19|27|21|22|25|24|25|26|27|0\n33|32|32|31|30|29|28|27|24|24|25|23|21|21|20|19|19|35|20|22|22|23|26|25|26|27|28|29|30|31|34|33|34|35|0\n40|38|37|37|39|36|32|32|31|31|30|29|28|26|25|25|24|23|22|22|35|23|24|27|26|27|28|29|30|34|33|33|34|35|36|41|38|39|40|41|0\n23|20|20|18|17|17|16|15|14|13|13|22|14|15|16|19|18|19|21|21|22|23|0\n69|69|68|67|66|66|71|65|64|63|62|61|60|58|57|57|54|53|53|55|52|51|50|48|48|46|45|45|44|43|42|40|40|39|38|38|73|39|41|41|42|43|44|47|46|47|49|49|50|51|52|56|54|55|56|59|58|59|60|61|62|63|64|65|72|67|68|70|70|71|72|73|0\n31|30|30|29|28|27|27|25|24|23|22|20|20|19|18|18|26|19|21|21|22|23|24|25|26|33|28|29|32|31|32|33|0\n49|49|48|40|40|39|39|42|38|38|44|37|37|46|36|35|34|34|32|29|28|28|30|27|27|33|31|29|30|31|32|33|51|35|36|47|45|43|41|41|42|43|44|45|46|47|48|50|50|51|0\n56|53|53|54|52|52|57|51|49|49|48|48|59|47|46|45|45|61|44|43|40|40|39|39|38|37|36|35|34|33|33|63|34|35|36|37|38|42|41|41|42|43|44|62|46|47|60|50|50|51|58|55|54|55|56|57|58|59|60|61|62|63|0\n18|18|17|15|14|12|12|11|11|16|13|13|14|15|16|17|19|19|0\n74|71|71|72|69|68|68|67|64|64|63|62|61|60|59|59|58|55|55|56|54|54|53|51|48|48|49|47|46|46|44|42|42|41|40|39|39|45|40|41|43|43|44|45|52|47|50|49|50|51|52|53|75|57|56|57|58|66|60|61|62|63|65|65|66|67|70|69|70|73|72|73|74|75|0\n41|40|39|38|37|37|36|35|34|34|33|31|31|30|28|27|25|25|24|23|23|29|24|26|26|27|28|29|30|32|32|33|43|35|36|42|38|39|40|41|42|43|0\n33|30|30|29|27|26|25|25|24|22|21|20|20|19|18|18|32|19|23|21|22|23|24|28|26|27|28|29|31|31|32|33|0\n40|39|39|38|36|36|33|32|31|29|29|30|28|27|26|25|24|22|22|23|35|23|24|25|26|27|28|34|30|31|32|33|34|35|37|37|38|41|40|41|0\n58|58|59|57|57|54|53|52|51|51|50|49|48|46|45|44|44|43|42|40|40|39|37|35|35|36|34|33|32|32|56|33|34|38|36|37|38|39|41|41|42|43|47|45|46|47|48|49|50|55|52|53|54|55|56|61|60|59|60|61|0\n38|37|36|35|35|39|34|33|33|41|31|30|30|29|25|25|26|24|24|23|23|43|28|27|26|27|28|29|32|31|32|42|34|40|36|37|38|39|40|41|42|43|0\n14|13|12|10|10|9|9|15|11|11|12|13|14|15|0\n24|24|22|21|19|19|18|16|16|15|14|14|23|15|17|17|18|20|20|21|22|23|25|25|0\n40|37|37|35|35|36|34|32|31|31|30|30|29|27|26|26|24|22|22|23|25|23|24|25|28|27|28|29|41|33|32|33|34|39|36|38|38|39|40|41|0\n57|51|48|48|49|47|47|52|53|54|45|43|43|44|42|41|39|39|38|36|36|35|34|33|32|31|30|30|56|31|32|33|34|35|37|37|38|40|40|41|42|46|44|45|46|55|50|49|50|51|52|53|54|55|56|57|0\n3|3|0\n4|4|5|5|0\n13|12|11|10|8|8|9|9|10|11|12|13|0\n41|40|40|39|37|36|36|35|34|33|33|31|30|27|27|26|26|25|24|23|23|32|24|25|29|28|28|29|30|31|32|43|34|35|38|37|38|39|42|41|42|43|0\n30|29|28|27|26|25|24|24|23|20|20|19|18|17|17|22|18|19|21|21|22|23|31|25|26|27|28|29|30|31|0\n40|39|38|37|36|35|35|34|32|30|29|28|28|26|26|25|24|23|22|22|33|23|24|25|27|27|31|29|30|31|32|33|34|41|36|37|38|39|40|41|0\n32|32|30|28|27|27|26|23|23|24|21|20|19|19|18|18|31|22|20|21|22|25|24|25|26|29|28|29|30|31|33|33|0\n39|38|35|34|33|32|31|30|30|29|28|26|26|25|24|22|21|21|23|37|22|23|24|25|27|27|28|29|36|31|32|33|34|35|36|37|38|39|0\n54|54|52|51|51|49|47|46|45|44|44|43|42|41|40|39|37|36|36|35|34|33|32|31|30|29|29|50|30|31|32|33|34|35|38|37|38|39|40|41|42|43|48|45|46|47|48|49|50|53|52|53|55|55|0\n44|44|43|41|41|42|38|38|39|40|47|37|36|35|33|32|31|30|30|29|27|27|26|26|49|28|28|29|34|31|32|33|34|35|36|37|48|39|40|46|42|43|45|45|46|47|48|49|0\n40|39|37|33|33|34|35|36|32|31|31|30|28|28|24|24|25|23|22|22|27|23|26|25|26|27|29|29|30|41|32|38|34|35|36|37|38|39|40|41|0\n21|21|20|19|18|18|16|15|13|13|14|17|14|15|16|17|23|19|20|22|22|23|0\n23|21|21|19|17|17|16|15|14|13|13|20|14|15|16|18|18|19|20|22|22|23|0\n7|6|5|5|6|7|0\n9|7|6|6|8|7|8|9|0\n17|15|14|13|12|10|10|11|16|11|12|13|14|15|16|17|0\n24|23|23|22|20|17|17|18|16|14|14|15|21|15|16|19|18|19|20|21|22|25|24|25|0\n23|19|19|18|18|17|15|14|14|13|13|22|16|15|16|17|21|20|20|21|22|23|0\n64|63|63|60|59|57|57|56|55|54|53|52|52|51|50|49|46|45|44|43|43|47|42|41|39|39|38|37|36|35|34|34|62|35|36|37|38|40|40|41|42|48|44|45|46|47|48|49|50|51|61|53|54|55|56|58|58|59|60|61|62|65|64|65|0\n68|67|65|65|64|60|59|58|58|57|56|55|54|54|52|52|47|46|46|48|49|50|45|44|43|42|40|40|39|38|38|37|36|36|69|37|63|39|41|41|42|43|44|45|51|47|48|49|50|51|53|53|62|55|56|57|61|59|60|61|62|63|64|66|66|67|68|69|0\n21|19|18|17|16|15|13|13|12|12|20|14|14|15|16|17|18|19|20|21|0\n32|32|33|31|31|30|28|28|26|24|24|23|21|21|20|19|19|27|20|22|22|23|25|25|26|27|29|29|30|35|34|33|34|35|0\n15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n31|30|29|28|27|27|32|33|26|24|23|23|22|20|20|19|19|35|21|21|22|25|24|25|26|34|28|29|30|31|32|33|34|35|0\n11|8|8|7|7|10|9|9|10|11|0\n37|37|36|34|34|33|31|31|32|39|29|28|27|27|26|25|23|23|22|22|41|24|24|25|26|30|28|29|30|40|32|33|35|35|36|38|38|39|40|41|0\n63|63|62|60|60|59|58|57|56|55|54|54|53|49|49|48|47|46|46|51|44|43|41|41|40|39|37|37|36|34|34|35|45|35|36|38|38|39|40|42|42|43|44|45|52|47|48|50|50|51|52|53|65|55|56|57|58|59|61|61|62|64|64|65|0\n17|16|14|13|11|11|10|10|15|12|12|13|14|15|16|17|0\n14|14|13|12|12|16|11|10|10|11|17|13|15|15|16|17|0\n27|23|22|20|20|21|24|19|18|17|16|15|15|26|16|17|18|19|25|21|22|23|24|25|26|27|0\n60|58|58|59|61|62|63|56|55|53|53|52|52|51|50|48|48|47|44|43|43|42|40|40|39|38|38|37|36|35|34|34|65|35|36|37|46|39|41|41|42|45|44|45|46|47|49|49|50|51|57|54|54|55|56|57|64|59|60|61|62|63|64|65|0\n70|68|68|65|65|64|63|62|62|61|58|58|59|57|56|55|55|54|52|51|49|47|47|44|43|43|45|46|50|41|39|39|38|37|37|42|38|40|40|41|42|53|44|45|46|48|48|49|50|51|52|53|54|71|56|57|60|59|60|61|67|63|64|66|66|67|69|69|70|71|0\n27|24|24|23|21|20|20|19|16|16|17|15|15|26|18|17|18|19|22|21|22|23|25|25|26|27|0\n17|17|16|15|15|14|13|13|12|12|21|20|14|19|16|18|18|19|20|21|0\n44|43|41|41|40|40|39|37|36|35|33|32|31|31|28|28|29|27|26|25|24|24|38|25|26|27|30|29|30|34|32|33|34|35|36|37|38|39|45|42|42|43|44|45|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n51|50|47|47|46|45|43|43|44|42|41|39|39|40|52|53|37|36|36|34|34|32|32|31|30|29|29|55|30|31|33|33|35|35|38|37|38|54|40|41|42|49|44|45|46|48|48|49|50|51|52|53|54|55|0\n21|19|19|17|16|15|12|12|13|14|18|13|14|15|16|17|18|20|20|21|0\n36|35|34|34|33|31|30|30|27|27|26|25|24|23|22|21|20|20|29|21|22|23|24|25|26|28|28|29|32|31|32|33|37|35|36|37|0\n35|34|33|32|32|31|30|29|29|27|26|25|24|23|22|21|20|20|28|21|22|23|24|25|26|27|28|37|30|31|36|33|34|35|36|37|0\n23|22|20|19|17|16|15|15|14|13|13|21|14|18|16|17|18|19|20|21|22|23|0\n10|10|7|7|8|9|8|9|11|11|0\n25|22|22|20|20|18|18|17|15|14|14|16|24|15|16|17|19|19|21|21|23|23|24|25|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n35|34|33|32|29|28|27|27|30|26|23|22|21|21|20|19|19|25|20|24|22|23|24|25|26|31|28|29|30|31|32|33|34|35|0\n9|7|6|6|8|7|8|9|0\n26|25|25|21|20|19|19|22|18|17|15|15|16|24|16|17|18|23|20|21|22|23|24|27|26|27|0\n71|64|63|62|62|59|59|60|58|57|56|55|54|53|52|51|50|49|47|47|46|45|44|43|42|41|39|39|40|66|38|38|68|37|37|70|69|67|40|41|42|43|44|45|46|48|48|49|50|51|52|53|54|55|56|57|58|61|60|61|65|63|64|65|66|67|68|69|70|71|0\n26|25|25|24|23|21|20|19|18|17|16|15|15|22|16|17|18|19|20|21|22|23|24|27|26|27|0\n87|85|81|80|80|79|78|77|77|83|75|75|71|70|68|68|67|66|65|65|64|63|62|61|61|73|59|57|57|56|55|55|51|50|50|49|48|47|46|46|53|45|45|86|54|47|48|49|52|51|52|53|54|60|56|58|58|59|60|74|62|63|64|72|66|67|69|69|70|71|72|73|74|76|76|84|78|79|82|81|82|83|84|85|86|87|0\n39|38|37|37|36|35|32|32|33|31|31|28|26|26|27|25|23|22|22|24|30|23|24|25|29|27|28|29|30|41|34|33|34|35|36|40|38|39|40|41|0\n33|31|28|27|26|24|24|25|29|23|22|21|20|18|18|19|32|19|20|21|22|23|30|25|26|27|28|29|30|31|32|33|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n28|28|24|23|22|21|21|20|19|18|17|16|16|26|27|17|18|19|20|25|22|23|24|25|26|27|29|29|0\n32|32|33|34|29|28|28|27|26|25|24|23|22|21|20|19|19|31|20|21|22|23|24|25|26|27|30|29|30|31|35|33|34|35|0\n39|39|38|34|33|32|30|30|29|28|28|35|36|27|26|25|24|22|22|23|41|23|24|25|26|27|37|29|31|31|32|33|34|35|36|37|38|40|40|41|0\n30|30|26|25|24|23|22|22|27|21|20|19|18|17|17|29|18|19|20|21|28|23|24|25|26|27|28|29|31|31|0\n18|17|17|15|13|13|12|11|11|16|12|14|14|15|16|19|18|19|0\n37|37|36|35|34|33|33|30|30|29|28|27|26|25|24|22|22|21|21|32|23|23|24|25|26|27|28|29|31|31|32|39|34|35|36|38|38|39|0\n11|9|8|7|7|10|8|9|10|11|0\n9|7|6|6|8|7|8|9|0\n19|17|16|16|14|13|12|11|11|15|12|13|14|15|18|17|18|19|0\n28|27|26|24|24|25|23|21|20|19|17|17|16|16|22|18|18|19|20|21|22|23|29|25|26|27|28|29|0\n49|45|44|43|42|41|40|38|37|37|36|35|34|33|33|46|32|31|30|29|28|27|26|26|48|27|28|29|30|31|32|47|34|35|36|39|38|39|40|41|42|43|44|45|46|47|48|49|0\n39|38|38|37|36|34|33|32|31|30|30|29|28|26|25|25|24|23|22|22|41|23|24|27|26|27|28|29|35|31|32|33|34|35|36|37|40|39|40|41|0\n57|54|53|52|51|50|49|49|48|47|46|45|43|43|40|40|41|39|37|36|35|35|34|33|32|31|30|30|56|31|32|33|34|38|36|37|38|39|42|41|42|44|44|45|46|47|48|55|50|51|52|53|54|55|56|57|0\n46|45|44|43|42|41|40|39|38|37|36|35|35|34|32|31|30|30|28|26|26|25|25|29|27|27|28|29|33|31|32|33|34|47|36|37|38|39|40|41|42|43|44|45|46|47|0\n43|43|41|41|40|40|39|37|37|34|34|31|31|32|28|28|29|27|26|25|24|24|36|25|26|27|30|29|30|33|32|33|35|35|36|38|38|39|45|42|42|44|44|45|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n44|43|42|42|45|46|47|39|38|38|40|36|35|35|34|33|31|30|29|29|28|27|26|26|49|27|28|32|30|31|32|33|34|37|36|37|41|39|40|41|48|43|44|45|46|47|48|49|0\n45|44|44|41|40|40|42|39|38|37|36|34|33|33|32|32|47|30|30|29|28|26|26|27|49|27|28|29|31|31|48|35|34|35|36|37|38|39|43|41|42|43|46|45|46|47|48|49|0\n37|37|36|35|34|33|32|32|31|27|27|26|24|24|23|22|22|21|21|30|29|23|25|25|26|28|28|29|30|31|39|33|34|35|36|38|38|39|0\n49|47|46|45|43|43|42|40|40|41|39|37|35|35|36|33|31|31|30|27|27|28|26|26|34|29|28|29|30|32|32|33|34|38|36|37|38|39|48|41|42|44|44|45|46|47|48|49|0\n47|45|44|44|42|42|41|40|38|38|37|34|34|35|33|32|31|30|29|28|27|26|25|25|26|27|28|29|30|31|32|33|36|35|36|37|39|39|40|41|43|43|46|45|46|47|0\n60|58|58|57|57|61|54|54|53|48|46|45|45|47|44|41|40|40|42|39|38|38|50|51|37|36|35|35|34|33|33|63|34|56|36|37|52|39|43|41|42|43|44|49|46|47|48|49|50|51|52|53|55|55|56|62|59|59|60|61|62|63|0\n31|31|30|30|29|28|27|27|34|35|25|24|24|22|21|21|20|20|37|23|22|23|26|25|26|36|28|29|33|32|32|33|34|35|36|37|0\n47|46|41|40|39|38|37|36|35|34|33|32|30|30|31|42|43|29|26|26|27|25|25|45|28|27|28|29|44|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|0\n51|50|49|47|46|46|45|44|43|42|41|39|39|40|52|53|38|36|35|35|34|32|32|31|30|29|29|55|30|31|33|33|34|37|36|37|38|54|40|41|42|43|44|45|48|47|48|49|50|51|52|53|54|55|0\n12|10|10|9|8|8|13|9|11|11|12|13|0\n70|70|65|64|64|63|63|62|58|55|55|56|57|59|60|52|52|53|51|50|49|45|45|46|47|44|42|41|40|39|38|37|37|43|68|69|38|39|40|41|42|43|44|48|46|47|48|49|50|51|54|53|54|61|56|57|58|59|60|61|62|67|66|65|66|67|68|69|71|71|0\n45|43|42|41|40|35|34|34|36|37|33|32|31|31|26|25|24|24|27|28|29|30|44|25|26|27|28|29|30|39|32|33|38|35|36|37|38|39|40|41|42|43|44|45|0\n9|8|7|6|6|7|8|9|0\n27|23|23|22|21|21|19|19|18|17|16|15|15|26|16|17|18|20|20|25|22|24|24|25|26|27|0\n36|36|35|33|32|29|29|30|28|27|25|24|23|22|21|21|20|20|34|26|22|23|24|25|26|27|28|31|30|31|32|33|34|35|37|37|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n37|37|36|36|32|32|33|31|30|28|26|26|25|25|24|23|22|21|21|35|22|23|24|29|27|27|28|29|30|31|34|33|34|35|39|38|38|39|0\n52|51|50|45|45|44|42|42|41|40|40|47|48|39|38|37|36|35|35|34|32|32|30|29|28|28|31|29|30|31|33|33|34|53|36|37|38|39|49|41|43|43|44|46|46|47|48|49|50|51|52|53|0\n27|26|25|23|23|24|20|20|21|22|29|19|18|17|17|31|18|19|30|21|22|28|24|25|26|27|28|29|30|31|0\n28|27|27|26|25|23|22|21|17|17|16|16|19|20|24|18|18|19|20|21|22|23|24|25|26|29|28|29|0\n27|26|25|24|22|19|19|20|17|17|16|15|15|23|16|18|18|21|20|21|22|23|24|25|26|27|0\n44|43|42|42|41|39|37|36|36|32|31|31|33|34|30|29|28|26|26|25|24|24|40|25|27|27|28|29|30|35|32|33|34|35|38|37|38|39|40|41|45|43|44|45|0\n10|10|8|7|7|9|8|9|11|11|0\n11|9|8|7|7|10|8|9|10|11|0\n19|16|16|15|14|13|12|11|11|18|12|13|14|15|17|17|18|19|0\n16|14|14|13|12|11|10|10|17|11|12|13|15|15|16|17|0\n16|15|14|13|11|11|10|10|17|12|12|13|14|15|16|17|0\n4|4|5|5|0\n20|20|21|16|16|14|14|13|13|18|19|23|15|15|17|17|18|19|22|21|22|23|0\n39|36|35|35|34|33|31|31|30|29|26|25|24|23|23|22|22|21|21|38|28|27|24|25|26|27|28|29|30|32|32|33|34|37|36|37|38|39|0\n40|37|37|38|36|35|35|41|42|34|32|30|30|31|28|28|27|26|25|24|24|44|45|25|26|27|29|29|33|31|32|33|34|43|36|39|38|39|40|41|42|43|44|45|0\n29|29|28|27|27|25|24|23|19|19|20|21|18|17|17|26|18|22|20|21|22|23|24|25|26|31|28|30|30|31|0\n25|24|22|21|20|19|17|16|16|15|14|14|23|15|18|17|18|19|20|21|22|23|24|25|0\n42|37|36|36|38|35|34|34|40|33|33|32|30|30|28|25|25|26|24|23|23|29|24|27|26|27|28|29|31|31|32|43|41|35|39|37|38|39|40|41|42|43|0\n68|67|67|64|63|62|62|61|60|59|58|57|56|55|54|53|50|49|48|47|46|45|44|43|41|40|39|39|42|51|38|37|36|36|66|37|38|52|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|56|57|58|59|60|61|65|63|64|65|66|69|68|69|0\n34|33|31|30|30|29|28|28|24|24|25|23|22|21|20|19|19|27|20|21|22|23|26|25|26|27|35|29|32|31|32|33|34|35|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n43|41|40|37|37|36|35|33|33|34|32|31|29|28|27|27|26|24|23|23|25|42|24|25|26|30|28|29|30|31|32|39|34|35|36|38|38|39|40|41|42|43|0\n41|41|39|38|38|37|36|35|34|34|33|32|29|28|28|26|26|25|24|23|23|31|24|25|27|27|30|29|30|31|32|33|43|35|36|37|40|39|40|42|42|43|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n46|45|44|43|42|39|38|38|37|37|36|35|34|34|31|31|29|28|28|27|26|25|25|33|26|27|30|29|30|32|32|33|47|35|36|41|40|39|40|41|42|43|44|45|46|47|0\n57|57|55|55|54|53|53|59|52|51|46|45|45|47|44|43|41|41|40|39|38|38|49|37|36|35|33|33|32|32|61|34|34|35|36|37|50|39|40|42|42|43|44|48|46|47|48|49|50|51|52|60|54|56|56|58|58|59|60|61|0\n36|35|34|33|32|32|31|28|28|27|26|26|25|24|23|22|21|20|20|21|22|23|24|25|30|27|29|29|30|31|37|33|34|35|36|37|0\n58|58|56|55|54|52|52|51|47|46|46|45|44|44|49|42|41|41|40|39|38|37|36|35|32|32|33|31|31|57|34|33|34|35|36|37|38|39|40|43|42|43|50|45|48|47|48|49|50|51|53|53|54|55|56|57|59|59|0\n33|32|30|28|28|29|26|25|25|24|23|21|21|20|19|18|18|19|20|22|22|23|24|27|26|27|31|29|30|31|32|33|0\n18|18|17|13|12|11|11|14|15|16|12|13|14|15|16|17|19|19|0\n16|15|14|11|11|12|10|10|17|13|12|13|14|15|16|17|0\n63|58|57|57|56|54|54|53|51|51|52|60|45|44|44|43|43|47|40|40|41|39|38|38|49|36|35|35|34|33|33|62|34|37|36|37|50|39|42|41|42|48|46|45|46|47|48|49|50|61|52|53|55|55|56|59|58|59|60|61|62|63|0\n45|45|41|37|37|35|35|36|39|34|34|42|32|32|33|44|47|30|30|31|49|28|28|27|27|51|29|29|50|31|48|33|43|40|36|38|38|39|40|41|42|43|44|46|46|47|48|49|50|51|0\n46|44|42|41|41|43|37|36|35|34|33|33|38|39|31|31|30|29|28|28|27|25|25|26|26|27|47|29|30|32|32|40|34|35|36|37|38|39|40|45|42|43|44|45|46|47|0\n38|36|35|34|33|32|32|31|31|39|27|26|26|28|29|24|24|23|22|22|41|23|25|25|30|27|28|29|30|40|37|33|34|35|36|37|38|39|40|41|0\n45|44|43|42|40|39|39|38|36|36|35|34|33|33|46|47|32|31|30|28|27|27|26|26|49|29|28|29|30|31|32|48|34|35|37|37|38|41|40|41|42|43|44|45|46|47|48|49|0\n42|41|41|43|39|38|38|37|34|34|35|32|31|30|29|29|28|27|26|25|24|24|45|25|26|27|28|33|30|31|32|33|36|35|36|37|40|39|40|44|42|43|44|45|0\n35|33|33|32|31|31|36|37|30|30|29|27|26|26|24|23|22|21|21|25|22|23|24|25|28|27|28|29|39|38|32|34|34|35|36|37|38|39|0\n35|34|34|33|32|31|30|29|28|27|27|25|24|23|22|21|20|20|26|21|22|23|24|25|26|37|28|29|30|31|32|33|36|35|36|37|0\n48|47|46|45|43|43|42|40|39|39|38|37|36|35|34|34|33|31|30|29|28|27|26|26|32|27|28|29|30|31|32|33|49|35|36|37|38|41|40|41|42|44|44|45|46|47|48|49|0\n56|55|54|53|52|52|50|46|45|44|44|47|48|42|42|43|41|41|58|59|40|38|38|36|36|34|34|33|32|32|61|33|35|35|37|37|39|39|40|60|51|43|49|45|46|47|48|49|50|51|57|53|54|55|56|57|58|59|60|61|0\n31|28|28|27|25|25|24|22|21|20|19|19|18|17|17|30|18|23|20|21|22|23|24|26|26|27|29|29|30|31|0\n45|43|42|41|39|37|37|38|36|35|33|31|29|29|30|27|27|28|26|25|24|24|44|25|26|34|28|32|30|31|32|33|34|35|36|40|38|39|40|41|42|43|44|45|0\n61|60|60|59|56|55|55|54|54|53|50|49|49|46|46|47|48|45|44|43|43|63|42|41|37|36|36|38|39|35|34|34|65|35|40|37|38|39|40|41|42|64|44|45|52|47|48|51|50|51|52|53|58|57|56|57|58|59|62|61|62|63|64|65|0\n33|30|29|28|28|27|26|23|22|22|24|21|20|19|18|18|32|19|20|21|25|23|24|25|26|27|31|29|30|31|32|33|0\n49|49|50|48|46|45|44|43|42|42|41|36|36|37|34|33|33|35|30|30|31|28|28|27|27|40|29|29|32|31|32|39|34|35|38|37|38|39|40|41|47|43|44|45|46|47|48|51|50|51|0\n52|49|48|46|46|45|44|44|50|43|41|40|40|39|38|38|37|35|34|34|31|31|30|28|28|29|33|29|30|32|32|33|36|35|36|37|53|39|42|41|42|43|51|45|47|47|48|49|50|51|52|53|0\n27|25|23|23|22|21|21|20|19|18|18|17|16|16|29|17|28|19|20|26|22|24|24|25|26|27|28|29|0\n37|35|34|33|32|31|28|28|27|23|23|24|22|21|21|20|20|30|36|26|22|25|24|25|26|27|29|29|30|31|32|33|34|35|36|37|0\n37|36|36|34|34|33|33|32|29|29|27|27|26|25|24|23|21|21|22|31|22|23|24|25|26|28|28|30|30|31|32|39|35|35|38|37|38|39|0\n53|52|52|51|49|49|47|47|46|45|45|43|43|42|41|39|38|37|36|35|34|34|33|32|31|30|29|29|30|31|32|33|40|35|36|37|38|39|40|41|42|44|44|55|46|48|48|50|50|51|54|53|54|55|0\n21|20|19|18|17|17|22|23|16|15|14|14|25|15|16|24|18|19|20|21|22|23|24|25|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n25|25|24|22|22|21|21|19|17|17|16|15|15|20|16|18|18|19|20|27|23|23|24|26|26|27|0\n12|12|9|9|8|8|11|10|10|11|13|13|0\n28|28|26|24|23|22|21|20|19|19|25|17|16|16|18|17|18|27|20|21|22|23|24|25|26|27|29|29|0\n29|28|26|25|25|24|23|22|22|30|31|21|20|19|18|18|33|19|20|21|32|23|24|27|26|27|28|29|30|31|32|33|0\n30|29|26|26|25|25|23|23|21|20|20|19|18|17|17|31|18|19|22|21|22|24|24|28|27|27|28|29|30|31|0\n15|14|13|11|9|9|10|12|10|11|12|13|14|15|0\n30|27|27|26|26|29|23|23|22|21|20|19|18|17|17|25|18|19|20|21|22|24|24|25|31|28|28|29|30|31|0\n9|8|6|6|7|7|8|9|0\n62|61|60|59|57|56|56|55|53|53|52|51|50|50|49|48|44|44|45|43|40|40|41|39|38|36|35|35|34|33|33|47|34|37|36|37|38|39|42|41|42|43|46|45|46|47|48|49|63|51|52|54|54|55|58|57|58|59|60|61|62|63|0\n39|39|37|37|36|35|33|32|32|31|30|29|29|41|28|27|26|25|24|23|23|43|24|25|26|27|28|42|30|31|34|33|34|35|36|38|38|40|40|41|42|43|0\n14|14|10|10|11|9|9|13|12|11|12|13|15|15|0\n55|52|52|51|50|49|48|45|45|46|44|43|42|39|39|38|38|37|36|35|33|32|31|31|30|29|29|54|30|34|32|33|34|35|36|37|41|40|40|41|42|43|44|47|46|47|48|49|50|51|53|53|54|55|0\n48|46|46|45|44|43|43|42|40|39|39|37|35|35|34|33|32|31|30|29|28|27|26|26|38|27|28|29|30|31|32|33|34|36|36|37|38|41|40|41|42|49|44|45|47|47|48|49|0\n28|27|25|24|23|23|26|22|21|18|18|16|16|17|20|17|19|19|20|21|22|29|24|25|26|27|28|29|0\n37|36|36|35|34|33|32|32|31|29|28|27|25|25|24|24|23|21|21|22|22|23|30|26|26|27|28|29|30|31|39|33|34|35|38|37|38|39|0\n17|16|14|13|11|11|10|10|15|12|12|13|14|15|16|17|0\n19|14|14|15|16|13|11|11|12|18|12|13|17|15|16|17|18|19|0\n61|60|59|58|57|55|54|54|53|52|52|62|63|51|49|49|47|45|43|43|44|42|41|40|39|39|38|37|35|35|34|34|65|36|36|37|38|48|40|41|42|46|44|45|46|47|48|50|50|51|64|53|56|55|56|57|58|59|60|61|62|63|64|65|0\n88|86|84|84|83|82|82|81|79|78|77|77|76|75|74|73|72|72|70|69|68|66|66|65|63|63|62|61|60|59|58|57|56|55|53|53|52|51|48|48|49|47|46|46|71|47|50|49|50|51|52|54|54|55|56|57|58|59|60|61|62|64|64|65|67|67|68|69|70|71|89|73|74|75|76|80|78|79|80|81|87|83|85|85|86|87|88|89|0\n33|28|27|24|24|25|26|29|30|23|22|20|20|19|18|18|32|19|21|21|22|23|31|25|26|27|28|29|30|31|32|33|0\n15|15|14|14|17|12|12|11|11|19|13|13|18|16|16|17|18|19|0\n77|75|74|71|70|70|68|67|67|65|62|61|61|63|60|59|59|57|57|56|54|53|53|55|52|51|50|48|47|46|46|45|40|40|41|42|43|44|76|41|42|43|44|45|49|47|48|49|50|51|52|73|54|55|56|58|58|66|60|64|62|63|64|65|66|69|68|69|72|71|72|73|74|75|76|77|0\n18|17|16|16|15|13|13|11|11|12|12|14|14|15|19|17|18|19|0\n37|35|34|33|32|31|29|29|28|27|27|24|22|22|23|21|20|20|26|21|25|23|24|25|26|36|28|30|30|31|32|33|34|35|36|37|0\n28|28|29|26|26|25|23|23|22|19|19|20|18|17|17|31|18|21|20|21|22|24|24|25|27|27|30|29|30|31|0\n25|20|20|21|22|18|16|16|17|15|14|14|24|15|19|17|18|19|23|21|22|23|24|25|0\n31|30|29|27|27|28|26|25|23|23|22|22|19|19|18|18|21|20|20|21|33|24|24|25|26|32|28|29|30|31|32|33|0\n53|52|51|50|49|48|46|45|44|43|43|42|40|39|39|41|54|55|36|36|35|34|33|33|32|31|30|30|57|31|32|38|34|35|37|37|38|56|40|41|42|47|44|45|46|47|48|49|50|51|52|53|54|55|56|57|0\n33|32|30|30|29|28|27|26|26|34|35|25|24|22|22|21|20|20|37|21|23|23|24|25|36|27|28|29|31|31|32|33|34|35|36|37|0\n37|35|33|32|31|30|30|27|27|28|25|25|24|23|21|20|20|22|36|21|22|23|24|26|26|29|28|29|34|31|32|33|34|35|36|37|0\n59|57|54|53|53|52|52|50|50|49|48|47|47|46|45|43|42|41|39|38|38|37|35|35|34|32|32|31|31|44|33|33|34|36|36|37|40|39|40|41|42|43|44|45|46|58|48|49|51|51|56|55|54|55|56|57|58|59|0\n9|7|6|6|8|7|8|9|0\n53|53|52|51|51|50|50|56|57|48|47|45|45|44|42|41|41|40|39|39|38|36|36|35|33|33|32|31|31|59|32|34|34|35|37|37|38|49|40|43|42|43|44|46|46|47|48|49|58|55|52|54|54|55|56|57|58|59|0\n19|17|17|15|12|12|11|11|14|16|13|13|14|15|16|18|18|19|0\n33|32|30|27|27|28|29|26|25|22|21|20|19|18|18|23|24|19|20|21|22|23|24|25|26|31|28|29|30|31|32|33|0\n18|18|17|16|15|13|11|11|12|14|12|13|14|15|16|17|19|19|0\n41|41|39|39|38|37|34|33|32|32|35|31|30|30|29|28|25|25|24|23|23|27|24|26|26|27|28|29|43|31|36|33|34|35|36|37|38|40|40|42|42|43|0\n21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0\n25|22|22|21|20|19|18|17|15|15|14|14|24|16|16|17|18|19|20|21|23|23|24|25|0\n32|31|31|30|28|28|27|24|24|25|23|22|21|21|20|19|19|35|20|34|22|23|26|25|26|27|29|29|30|33|32|33|34|35|0\n32|32|30|26|26|25|24|24|28|23|22|21|19|19|18|18|31|20|20|21|22|23|29|25|27|27|28|29|30|31|33|33|0\n48|46|46|45|43|42|41|41|40|38|38|37|36|36|49|35|34|33|32|31|29|27|27|28|30|51|28|29|30|31|32|33|34|35|50|37|39|39|40|44|42|43|44|45|47|47|48|49|50|51|0\n40|39|39|37|34|34|33|33|32|30|29|29|28|27|26|25|24|23|22|22|38|23|24|25|26|27|28|31|30|31|32|36|35|35|36|37|38|41|40|41|0\n40|39|38|36|35|34|34|33|32|32|31|30|28|26|25|25|24|23|22|22|29|23|24|27|26|27|28|29|30|31|41|33|37|35|36|37|38|39|40|41|0\n11|10|8|7|7|9|8|9|10|11|0\n25|20|19|18|18|17|16|15|14|14|22|23|24|15|16|17|21|19|20|21|22|23|24|25|0\n17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0\n22|21|19|19|20|18|16|16|14|13|13|15|14|15|17|17|18|23|20|21|22|23|0\n36|35|34|33|32|32|31|30|29|27|26|26|24|23|22|21|20|20|25|21|22|23|24|25|28|27|28|29|30|31|37|33|34|35|36|37|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n44|43|41|41|40|39|39|45|37|36|34|33|32|31|30|29|29|28|27|27|26|25|25|47|26|38|28|35|30|31|32|33|34|35|36|37|38|46|40|42|42|43|44|45|46|47|0\n32|32|31|30|30|34|35|28|27|26|26|24|24|23|21|21|20|20|37|22|22|23|25|25|29|27|28|29|36|31|33|33|34|35|36|37|0\n33|31|29|28|28|25|25|26|24|22|22|20|19|19|18|18|32|21|20|21|23|23|24|27|26|27|30|29|30|31|32|33|0\n19|15|15|16|17|18|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0\n13|12|10|10|8|8|9|9|11|11|12|13|0\n15|12|12|13|14|11|11|10|10|17|16|13|14|15|16|17|0\n36|34|34|35|33|33|32|31|29|28|28|30|39|26|25|23|23|24|22|22|41|27|24|25|26|27|40|29|30|31|32|38|37|35|36|37|38|39|40|41|0\n42|42|41|39|39|37|36|35|33|33|32|31|29|28|27|26|26|25|24|23|23|38|24|25|30|27|28|29|30|31|32|34|34|35|36|37|38|40|40|41|43|43|0\n42|42|41|40|40|44|37|37|38|36|35|34|33|32|32|46|30|29|28|27|25|25|26|31|26|27|28|29|30|31|47|33|34|35|36|39|38|39|45|41|43|43|44|45|46|47|0\n42|41|40|39|38|37|36|36|35|33|33|31|30|29|28|27|26|25|24|23|23|32|24|25|26|27|28|29|30|31|32|34|34|35|43|37|38|39|40|41|42|43|0\n42|41|40|38|37|36|36|35|33|33|32|31|29|28|27|27|26|25|23|23|24|43|24|25|26|30|28|29|30|31|32|34|34|35|39|37|38|39|40|41|42|43|0\n21|20|19|18|18|17|16|14|13|13|15|23|14|15|16|17|22|19|20|21|22|23|0\n40|40|39|38|37|37|42|43|35|34|34|33|32|29|29|28|28|27|26|25|24|24|45|25|26|27|31|30|30|31|32|33|36|35|36|44|38|39|41|41|42|43|44|45|0\n48|48|46|45|43|43|44|42|39|39|40|38|37|36|35|35|50|51|34|31|31|32|30|29|28|28|53|29|30|33|32|33|34|52|36|37|38|41|40|41|42|47|44|45|46|47|49|49|50|51|52|53|0\n29|28|25|25|23|23|22|22|20|19|18|17|16|16|21|17|18|19|20|21|27|24|24|26|26|27|28|29|0\n15|15|14|13|11|11|12|10|10|17|12|13|14|16|16|17|0\n20|20|17|17|16|15|14|12|12|13|19|13|14|15|16|18|18|19|21|21|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n51|49|48|47|42|41|40|39|39|43|37|36|35|35|34|33|32|32|45|31|29|29|28|27|27|50|28|30|30|31|46|33|34|38|36|37|38|44|40|41|42|43|44|45|46|47|48|49|50|51|0\n9|9|8|7|7|11|8|10|10|11|0\n87|85|82|82|81|81|80|76|76|73|71|70|69|69|68|67|66|66|65|64|64|63|62|61|60|58|57|55|54|54|56|53|52|52|78|50|50|49|47|47|46|45|45|86|46|48|48|49|51|51|79|53|59|55|56|57|58|59|60|61|62|63|75|65|74|67|68|72|70|71|72|73|74|75|77|77|78|79|80|84|83|83|84|85|86|87|0\n33|32|32|31|30|30|26|25|25|27|24|22|22|21|19|19|20|29|20|21|23|23|24|28|26|27|28|29|35|31|34|33|34|35|0\n38|37|36|35|34|29|28|27|27|30|26|26|32|25|23|22|22|21|21|39|24|23|24|25|33|31|28|29|30|31|32|33|34|35|36|37|38|39|0\n51|50|48|48|47|46|45|44|43|42|41|40|39|39|52|53|37|37|35|35|34|32|32|31|30|29|29|55|30|31|33|33|34|36|36|38|38|54|40|41|42|43|44|45|46|47|49|49|50|51|52|53|54|55|0\n39|37|36|33|33|34|32|30|29|29|28|27|25|25|24|23|21|21|22|38|22|23|24|26|26|27|28|31|30|31|32|35|34|35|36|37|38|39|0\n11|9|8|7|7|10|8|9|10|11|0\n53|51|49|45|45|43|42|42|41|40|39|38|36|35|35|34|34|47|48|33|31|31|30|28|28|29|52|29|30|32|32|33|50|37|36|37|38|39|40|41|44|43|44|46|46|47|48|49|50|51|52|53|0\n22|21|21|19|18|17|14|14|15|13|13|20|16|15|16|17|18|19|20|23|22|23|0\n32|32|31|28|28|27|26|25|24|23|21|20|20|19|18|18|30|19|22|21|22|23|24|25|26|27|29|29|30|31|33|33|0\n19|16|15|15|14|13|12|11|11|18|12|13|14|17|16|17|18|19|0\n32|32|33|31|29|29|28|28|26|24|24|23|21|19|19|20|22|27|20|21|22|23|25|25|26|27|35|30|30|31|34|33|34|35|0\n9|6|6|7|8|7|8|9|0\n46|46|45|44|44|43|42|42|49|40|40|38|38|37|35|35|34|33|32|30|29|29|28|27|27|51|28|31|30|31|32|33|34|36|36|37|39|39|41|41|50|43|48|45|47|47|48|49|50|51|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n35|33|31|30|29|28|28|26|26|24|24|23|21|21|19|19|20|34|20|22|22|23|25|25|27|27|32|29|30|31|32|33|34|35|0\n52|52|51|49|48|45|43|43|44|42|41|41|40|36|36|35|34|33|32|31|30|29|28|28|38|39|50|29|30|31|32|33|34|35|37|37|38|39|40|47|42|46|44|45|46|47|48|49|50|51|53|53|0\n29|26|26|25|23|22|22|21|20|17|17|18|16|16|28|19|18|19|20|21|24|23|24|25|27|27|28|29|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n48|47|47|46|44|44|42|42|41|39|38|38|40|50|51|36|35|34|34|32|32|31|30|29|28|28|53|29|30|31|33|33|37|35|36|37|52|39|40|41|43|43|45|45|46|49|48|49|50|51|52|53|0\n26|26|27|25|25|23|21|21|20|18|18|17|16|16|24|17|19|19|20|22|22|23|24|29|28|27|28|29|0\n18|18|16|15|13|12|11|11|14|17|12|13|14|15|16|17|19|19|0\n53|51|50|48|47|47|46|44|44|43|37|37|36|35|34|34|39|40|41|33|32|31|30|29|28|28|52|29|30|31|32|33|42|35|36|38|38|39|40|41|42|43|45|45|46|49|48|49|50|51|52|53|0\n65|64|63|61|60|60|62|59|55|54|52|50|50|51|49|48|47|46|46|56|57|58|45|42|41|40|38|36|36|37|35|35|43|44|39|37|38|39|40|41|42|43|44|45|67|47|48|49|53|51|52|53|54|55|56|57|58|59|66|61|62|63|64|65|66|67|0\n43|43|44|42|41|39|38|38|37|35|34|33|33|32|32|46|30|29|28|27|26|25|25|31|26|27|28|29|30|31|47|36|34|35|36|37|40|39|40|41|42|45|44|45|46|47|0\n77|74|72|71|70|70|69|68|68|67|64|63|62|61|61|65|60|59|58|55|54|54|56|53|52|51|50|48|48|47|46|45|44|42|42|41|40|40|76|41|43|43|44|45|46|47|49|49|50|51|52|53|57|55|56|57|58|59|60|66|62|63|64|65|66|67|75|69|73|71|72|73|74|75|76|77|0\n5|4|4|5|0\n5|4|4|5|0\n41|39|39|37|36|36|35|33|33|32|31|29|29|30|42|43|28|26|26|25|24|24|45|25|27|27|28|44|30|31|32|34|34|35|38|37|38|40|40|41|42|43|44|45|0\n39|35|34|33|33|36|32|31|30|29|28|27|26|25|24|23|21|21|22|38|22|23|24|25|26|27|28|29|30|31|32|37|34|35|36|37|38|39|0\n64|63|61|59|59|58|56|56|55|55|54|51|50|50|52|49|48|47|42|41|41|43|44|45|46|40|38|37|36|35|34|34|39|35|36|37|38|39|40|65|42|43|44|45|46|47|48|49|53|51|52|53|54|62|57|57|58|60|60|61|62|63|64|65|0\n31|29|28|26|26|25|24|23|22|21|20|19|18|17|17|30|18|19|20|21|22|23|24|25|27|27|28|29|30|31|0\n52|50|50|49|48|47|47|46|45|42|41|40|34|34|35|33|33|37|38|32|31|30|30|29|28|28|44|29|43|31|32|39|36|35|36|37|38|39|40|41|42|43|44|45|46|53|48|49|51|51|52|53|0\n33|28|28|27|26|24|24|23|22|21|21|30|20|19|18|18|32|19|20|31|22|23|25|25|26|27|29|29|30|31|32|33|0\n11|8|8|7|7|10|9|9|10|11|0\n61|60|60|59|58|58|56|54|53|53|52|51|49|49|48|47|45|45|43|43|41|41|40|37|37|38|36|35|34|33|33|57|34|35|36|39|38|39|40|42|42|44|44|46|46|47|48|50|50|51|52|55|54|55|56|57|63|59|62|61|62|63|0\n26|23|23|24|25|21|20|18|17|17|16|15|15|22|16|19|18|19|20|21|22|27|24|25|26|27|0\n42|41|41|38|37|36|36|35|33|33|32|29|29|30|28|27|26|25|24|23|23|40|24|25|26|27|28|31|30|31|32|34|34|35|39|37|38|39|40|43|42|43|0\n25|24|21|20|20|19|18|17|16|15|14|14|23|15|16|17|18|19|22|21|22|23|24|25|0\n47|47|48|45|44|43|42|41|37|37|38|36|34|33|32|31|30|28|28|29|35|27|26|26|46|27|40|29|30|31|32|33|34|35|36|39|38|39|40|41|42|43|44|45|46|49|48|49|0\n45|44|43|42|41|40|39|38|37|36|35|35|46|47|34|33|31|30|30|29|28|27|26|26|49|27|28|29|32|31|32|33|34|48|36|37|38|39|40|41|42|43|44|45|46|47|48|49|0\n50|48|48|47|46|46|45|40|39|38|38|41|42|37|35|35|34|31|30|30|32|29|27|27|28|44|28|29|33|31|32|33|34|36|36|37|43|39|40|41|42|43|44|45|51|47|49|49|50|51|0\n53|51|50|50|49|48|47|46|45|45|54|55|44|43|42|40|39|38|38|41|57|37|36|35|34|33|32|31|31|59|32|33|34|35|36|37|58|39|40|41|42|43|44|56|46|47|48|49|52|51|52|53|54|55|56|57|58|59|0\n19|17|15|14|13|13|12|11|11|18|12|16|14|15|16|17|18|19|0\n49|47|44|43|43|45|41|40|40|39|38|37|36|35|34|33|32|29|29|30|28|27|26|26|48|27|28|31|30|31|32|33|34|35|36|37|38|39|42|41|42|46|44|45|46|47|48|49|0\n44|44|41|40|40|39|38|36|36|32|32|31|30|30|34|29|27|26|26|25|24|24|43|25|28|27|28|29|35|31|33|33|34|35|37|37|38|39|42|41|42|43|45|45|0\n39|37|36|35|32|32|31|29|28|28|27|27|26|24|24|23|22|21|21|38|22|23|25|25|26|34|30|29|30|31|33|33|34|35|36|37|38|39|0\n7|5|5|6|6|7|0\n17|14|13|12|11|11|10|10|16|15|12|13|14|15|16|17|0\n38|35|34|34|36|33|32|32|31|30|26|26|25|25|24|23|21|21|22|29|22|23|24|28|27|27|28|29|30|31|39|33|37|35|36|37|38|39|0\n24|24|22|21|20|18|17|16|15|15|14|14|23|19|16|17|18|19|20|21|22|23|25|25|0\n33|32|31|29|29|30|34|35|27|27|25|22|22|23|21|21|20|20|37|26|24|23|24|25|26|28|28|36|30|31|32|33|34|35|36|37|0\n40|38|38|39|37|36|36|42|43|34|33|33|32|31|30|28|27|27|26|25|24|24|45|25|26|29|28|29|30|31|32|35|34|35|44|37|41|39|40|41|42|43|44|45|0\n43|43|42|41|40|39|39|37|36|35|34|30|29|27|27|26|25|25|31|32|24|24|38|33|26|28|28|29|30|31|32|33|34|35|36|37|38|45|40|41|42|44|44|45|0\n37|34|34|32|31|30|29|29|28|23|23|22|22|25|26|21|20|20|36|21|27|24|24|25|26|27|28|33|30|31|32|33|35|35|36|37|0\n23|23|22|22|20|18|17|17|16|14|14|15|21|15|16|19|18|19|20|21|25|24|24|25|0\n46|44|44|43|42|41|41|40|38|37|37|35|33|33|32|29|28|28|27|26|25|25|31|36|26|27|30|29|30|31|32|34|34|35|36|39|38|39|40|47|42|43|45|45|46|47|0\n51|50|49|48|44|44|42|41|39|38|38|37|36|36|35|34|33|32|29|28|28|30|27|27|46|47|31|29|30|31|32|33|34|35|43|37|40|39|40|41|42|43|45|45|46|47|48|49|50|51|0\n55|53|49|49|48|46|46|45|45|51|42|41|41|40|38|38|37|37|34|34|31|30|30|32|29|29|36|54|33|31|32|33|35|35|36|44|39|39|40|43|42|43|44|52|47|47|48|50|50|51|52|53|54|55|0\n49|49|48|47|46|45|44|44|51|42|42|41|40|39|38|37|34|34|35|32|32|31|30|28|28|29|53|29|30|31|33|33|36|35|36|37|38|39|40|41|43|43|52|45|46|47|48|50|50|51|52|53|0\n27|25|23|22|22|19|19|18|18|17|16|15|15|26|16|17|21|20|20|21|24|23|24|25|26|27|0\n21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0\n64|59|58|58|57|56|55|54|52|52|53|61|62|51|50|49|48|47|46|45|44|43|43|42|41|39|38|36|36|35|34|34|40|35|37|37|38|39|40|41|42|65|44|45|46|47|48|49|50|51|63|53|54|55|56|57|60|59|60|61|62|63|64|65|0\n60|60|61|59|58|57|57|53|52|52|54|51|49|48|48|47|46|45|43|42|40|40|41|39|37|37|36|35|34|33|33|56|34|35|36|38|38|39|44|41|42|43|44|45|46|47|50|49|50|51|55|53|54|55|56|63|58|59|62|61|62|63|0\n18|18|17|16|15|14|14|13|12|12|21|13|20|15|16|17|19|19|20|21|0\n13|13|12|11|10|9|9|15|10|11|12|14|14|15|0\n38|38|36|35|34|32|31|30|29|29|28|26|25|25|24|23|22|21|21|37|22|23|24|27|26|27|28|33|30|31|32|33|34|35|36|37|39|39|0\n17|16|16|15|15|14|12|11|11|13|12|13|14|19|18|17|18|19|0\n46|45|44|43|43|42|40|40|38|37|34|33|33|35|30|30|29|29|28|27|26|25|25|39|26|27|28|32|31|31|32|36|34|35|36|37|38|39|41|41|42|47|44|45|46|47|0\n47|47|46|45|45|43|42|42|41|41|50|51|40|39|37|37|36|35|33|32|31|31|30|29|28|28|53|29|30|34|32|33|34|35|36|38|38|39|40|52|44|43|44|49|46|48|48|49|50|51|52|53|0\n41|40|40|42|38|37|35|35|34|33|32|31|29|28|27|26|25|25|24|23|23|39|24|30|26|27|28|29|30|31|32|33|34|36|36|37|38|39|43|41|42|43|0\n44|43|43|40|40|39|38|36|34|34|35|33|32|31|30|29|28|27|26|25|24|24|42|25|26|27|28|29|30|31|32|33|37|35|36|37|38|39|41|41|42|45|44|45|0\n56|56|55|54|52|51|51|50|49|49|44|44|43|43|46|42|41|41|39|38|38|37|37|59|36|35|34|33|32|32|61|33|34|35|36|60|40|39|40|48|42|47|45|45|46|47|48|58|50|53|52|53|54|55|57|57|58|59|60|61|0\n37|37|36|35|34|33|32|31|30|29|27|27|28|39|26|24|24|23|22|22|41|23|25|25|26|40|28|29|30|31|32|33|34|35|36|38|38|39|40|41|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n56|55|54|54|53|52|51|49|47|46|46|45|43|43|42|41|40|39|35|35|34|34|33|33|32|31|30|30|50|31|32|38|37|36|36|37|38|39|40|41|42|44|44|45|48|47|48|49|50|51|52|53|57|55|56|57|0\n74|73|71|71|70|67|67|68|65|65|64|62|62|61|60|59|58|58|57|57|56|55|53|53|52|51|49|46|46|47|45|45|44|43|42|42|40|40|41|41|77|43|44|50|48|47|48|49|50|51|52|54|54|55|56|76|75|59|60|61|63|63|64|66|66|69|68|69|70|72|72|73|74|75|76|77|0\n52|52|51|50|49|48|48|54|55|47|46|42|42|43|41|41|40|39|38|36|36|35|34|33|32|31|30|30|57|31|32|33|34|35|37|37|38|39|40|45|44|43|44|45|46|47|56|49|50|51|53|53|54|55|56|57|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n66|62|62|61|61|64|60|59|59|58|57|54|54|53|52|51|49|49|48|46|45|45|44|43|42|41|40|39|38|37|36|35|35|56|36|37|38|39|40|41|42|43|44|47|46|47|48|50|50|51|52|53|55|55|56|57|58|67|60|65|63|63|64|65|66|67|0\n70|70|64|64|65|63|62|62|67|61|60|58|58|56|53|52|52|54|51|50|49|48|47|47|46|45|44|42|41|41|40|39|38|37|37|69|38|39|40|43|42|43|44|45|46|57|48|49|50|51|55|53|54|55|56|57|59|59|60|61|68|63|66|65|66|67|68|69|71|71|0\n49|49|48|47|46|45|44|43|42|42|51|52|41|40|39|38|36|36|35|34|33|33|54|55|31|31|30|30|57|32|32|56|34|35|37|37|38|39|40|41|53|43|44|45|46|47|48|50|50|51|52|53|54|55|56|57|0\n56|56|55|54|53|50|50|51|49|48|44|44|43|42|41|40|40|46|39|38|37|36|36|35|35|59|33|33|32|32|61|34|34|60|58|37|38|39|47|41|42|43|45|45|46|47|48|49|52|51|52|53|54|55|57|57|58|59|60|61|0\n39|36|35|35|34|33|31|31|30|29|28|27|26|25|25|23|22|21|21|24|22|23|24|38|26|27|28|29|30|32|32|33|34|37|36|37|38|39|0\n29|26|26|25|24|23|23|21|20|18|18|17|16|16|22|17|19|19|20|21|22|28|24|25|27|27|28|29|0\n25|23|21|19|19|20|18|17|16|14|14|15|24|15|16|17|18|22|20|21|22|23|24|25|0\n45|43|43|42|42|46|47|36|36|35|34|34|33|32|31|30|30|39|40|28|28|27|26|26|49|27|29|29|41|31|32|33|38|35|37|37|38|39|40|41|48|44|44|45|46|47|48|49|0\n52|50|49|48|47|46|45|45|51|53|44|43|42|39|39|38|37|36|35|33|33|34|32|30|29|29|31|55|30|31|32|41|34|35|36|37|38|40|40|41|42|43|44|54|46|47|48|49|50|51|52|53|54|55|0\n9|7|6|6|8|7|8|9|0\n81|80|79|78|73|73|72|70|69|69|71|75|76|68|67|66|64|64|63|62|62|82|83|61|59|58|58|56|55|55|52|52|53|51|50|49|48|47|45|45|44|44|85|46|46|47|48|49|50|51|54|53|54|57|56|57|60|59|60|61|84|63|65|65|66|67|68|77|70|71|72|74|74|75|76|77|78|79|80|81|82|83|84|85|0\n25|22|21|19|19|20|18|17|16|15|14|14|24|15|16|17|18|23|20|21|22|23|24|25|0\n71|69|65|64|63|62|59|58|57|57|60|56|55|55|66|67|54|52|52|50|49|49|48|47|45|45|44|43|41|41|40|38|37|37|39|70|38|39|40|42|42|43|44|46|46|47|48|51|50|51|53|53|54|68|56|61|58|59|60|61|62|63|64|65|66|67|68|69|70|71|0\n53|52|52|50|49|48|46|45|43|42|42|41|41|40|39|39|38|37|36|36|33|33|32|30|30|29|29|35|31|31|32|34|34|35|55|37|38|51|40|47|44|43|44|45|46|47|48|49|50|51|54|53|54|55|0\n49|48|47|46|45|45|44|43|42|40|39|39|37|37|38|34|32|32|31|31|30|28|28|27|27|36|29|29|30|35|33|33|34|35|36|51|38|41|40|41|42|43|44|50|46|47|48|49|50|51|0\n40|40|39|39|38|36|35|34|34|33|31|31|30|29|27|27|25|24|23|23|26|43|24|25|26|28|28|29|30|32|32|33|37|35|36|37|38|42|41|41|42|43|0\n28|27|26|26|29|21|21|19|19|20|23|24|18|17|17|31|18|25|20|22|22|23|24|25|30|27|28|29|30|31|0\n44|39|39|38|38|41|37|36|36|43|34|33|31|31|30|29|27|27|26|25|24|24|35|25|26|28|28|29|30|32|32|33|34|35|45|37|42|40|40|41|42|43|44|45|0\n66|65|65|63|63|59|59|58|57|56|56|61|55|53|52|52|54|51|50|50|48|47|46|46|45|44|42|40|39|39|38|37|36|36|43|37|38|41|40|41|42|43|44|45|49|47|48|49|69|51|68|53|54|55|62|57|58|60|60|61|62|64|64|67|66|67|68|69|0\n58|56|55|54|54|53|52|51|50|49|48|47|46|45|45|44|42|41|40|39|38|35|34|34|36|33|32|31|31|43|32|33|37|35|36|37|38|39|40|41|42|43|44|59|46|47|48|49|50|51|52|53|57|55|56|57|58|59|0\n18|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|19|19|0\n68|67|67|66|65|64|64|63|61|61|62|71|59|58|57|56|55|54|54|53|52|50|49|49|48|47|46|45|44|42|41|41|40|39|38|38|73|39|40|43|42|43|44|45|46|47|48|51|50|51|52|53|60|55|56|57|58|59|60|72|62|63|70|65|66|69|68|69|70|71|72|73|0\n38|37|36|36|34|34|33|31|30|30|29|29|40|41|28|27|26|24|24|23|23|43|25|25|26|27|28|42|32|31|32|33|35|35|39|37|38|39|40|41|42|43|0\n45|43|43|40|40|39|38|37|36|35|34|33|31|31|30|28|28|27|26|25|24|24|42|25|26|27|29|29|30|32|32|33|34|35|36|37|38|39|41|41|42|44|44|45|0\n61|58|58|57|56|55|55|54|52|52|51|50|49|48|48|62|63|46|44|43|43|42|42|41|38|37|37|39|36|35|34|34|65|35|36|40|38|39|40|41|47|45|44|45|46|47|64|49|50|51|53|53|54|60|56|57|59|59|60|61|62|63|64|65|0\n38|38|36|35|34|33|31|30|29|29|27|27|25|24|23|23|22|21|21|37|22|26|24|25|26|28|28|32|30|31|32|33|34|35|36|37|39|39|0\n45|40|40|41|42|37|36|36|38|35|33|33|31|30|30|29|27|27|26|25|24|24|44|25|26|28|28|29|32|31|32|34|34|35|39|37|38|39|43|41|42|43|44|45|0\n59|58|57|56|55|55|60|61|53|52|51|51|50|49|47|46|45|44|44|43|42|41|40|39|38|35|35|33|33|34|37|63|34|36|36|37|38|39|40|41|42|43|48|45|46|47|48|49|50|54|52|53|54|62|56|57|58|59|60|61|62|63|0\n38|37|36|36|39|35|34|33|32|31|30|29|27|27|25|24|23|23|22|22|41|26|24|25|26|28|28|29|30|31|32|33|34|35|40|37|38|39|40|41|0\n29|27|25|24|23|23|22|21|20|19|18|16|16|17|28|17|18|19|20|21|22|26|24|25|26|27|28|29|0\n55|52|52|49|48|43|42|42|41|41|45|46|39|38|38|37|37|50|36|35|34|30|30|31|32|29|29|54|33|31|32|33|34|35|36|51|40|39|40|47|44|43|44|45|46|47|48|49|50|51|53|53|54|55|0\n55|54|54|52|51|51|50|48|48|46|46|45|44|44|42|41|40|37|36|35|34|33|32|32|38|31|30|30|43|31|39|33|34|35|36|37|38|39|40|41|42|43|57|45|47|47|49|49|50|53|52|53|56|55|56|57|0\n29|27|26|23|23|22|22|21|20|19|18|16|16|17|28|17|18|19|20|21|25|24|24|25|26|27|28|29|0\n42|42|40|38|37|37|36|34|33|33|32|29|29|30|28|27|26|25|24|23|23|41|24|25|26|27|28|31|30|31|32|35|34|35|36|39|38|39|40|41|43|43|0\n3|3|0\n38|38|33|32|31|30|29|28|27|27|34|35|26|25|24|22|22|21|21|37|23|23|24|25|26|36|28|29|30|31|32|33|34|35|36|37|39|39|0\n47|45|45|44|41|41|42|40|39|38|37|36|35|35|48|49|34|33|31|31|29|28|28|27|27|51|30|29|30|32|32|33|34|50|36|37|38|39|40|43|42|43|44|46|46|47|48|49|50|51|0\n14|14|12|11|11|10|9|9|10|13|12|13|15|15|0\n59|58|58|57|56|56|53|52|52|54|51|49|49|47|47|46|45|45|62|63|43|41|41|42|40|38|38|37|36|35|34|34|65|35|36|37|39|39|40|44|42|43|44|64|46|48|48|50|50|51|55|53|54|55|61|57|60|59|60|61|62|63|64|65|0\n47|43|42|42|41|41|40|39|36|36|35|35|34|32|31|31|30|28|28|27|26|25|25|46|26|27|29|29|30|33|32|33|34|38|37|37|38|39|40|45|44|43|44|45|46|47|0\n10|8|7|7|9|11|8|9|10|11|0\n49|48|48|47|44|44|45|46|51|42|42|41|39|39|38|36|36|35|34|32|31|31|30|29|28|28|53|29|30|33|32|33|34|35|37|37|38|40|40|41|43|43|52|45|46|47|50|49|50|51|52|53|0\n36|34|33|33|35|37|32|29|29|28|27|25|25|24|23|23|22|21|21|39|22|31|24|26|26|27|28|30|30|31|32|38|34|35|36|37|38|39|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n39|37|35|34|33|32|32|31|30|29|26|26|25|25|24|23|22|21|21|38|22|23|24|28|27|27|28|29|30|31|36|33|34|35|36|37|38|39|0\n52|52|50|49|48|46|46|45|44|40|40|39|39|42|38|36|36|33|33|34|32|31|30|29|28|28|51|29|30|31|32|35|34|35|37|37|38|43|41|41|42|43|44|45|47|47|48|49|50|51|53|53|0\n14|12|12|11|9|9|10|15|10|11|13|13|14|15|0\n61|60|59|59|58|58|56|51|50|50|52|53|49|49|48|47|46|45|44|42|42|41|39|39|38|37|36|35|34|33|33|57|34|35|36|37|38|40|40|41|43|43|44|45|46|47|48|55|54|51|52|53|54|55|56|57|63|62|60|61|62|63|0\n44|44|43|41|40|40|39|37|34|33|32|32|31|30|29|29|28|26|26|25|24|24|38|25|27|27|28|36|30|31|35|33|34|35|36|37|38|39|42|41|42|43|45|45|0\n37|35|34|33|33|32|31|29|29|28|27|27|38|39|26|25|24|23|22|22|41|23|24|25|26|40|28|30|30|31|32|36|34|35|36|37|38|39|40|41|0\n8|8|9|7|7|11|10|9|10|11|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n59|59|58|57|57|56|55|54|51|51|52|50|49|48|47|47|62|63|45|44|43|43|42|41|39|39|37|37|36|35|34|34|65|35|36|38|38|40|40|41|42|46|44|45|46|64|48|49|50|53|52|53|54|55|56|61|58|60|60|61|62|63|64|65|0\n23|23|24|22|21|20|20|26|18|17|16|15|15|19|16|17|18|19|27|21|22|25|24|25|26|27|0\n70|69|68|68|66|65|62|60|60|58|58|59|57|55|53|53|52|51|50|49|49|56|48|47|45|45|44|40|40|41|42|39|38|37|37|67|38|39|43|41|42|43|44|46|46|47|48|64|50|51|52|54|54|55|56|57|63|59|61|61|62|63|64|65|66|67|71|69|70|71|0\n13|10|10|11|12|9|9|15|14|11|12|13|14|15|0\n44|44|43|42|42|46|41|38|36|35|34|34|37|39|33|31|30|30|29|28|27|26|25|25|26|27|28|29|32|31|32|33|40|35|36|37|38|39|40|41|47|43|45|45|46|47|0\n56|56|55|54|53|53|58|59|52|50|49|48|47|47|46|44|43|43|42|40|40|39|38|36|36|34|34|33|32|32|61|33|35|35|37|37|38|39|41|41|42|45|44|45|46|51|48|49|50|51|52|60|54|55|57|57|58|59|60|61|0\n52|51|50|50|47|46|43|43|44|42|41|40|40|48|39|37|36|36|35|34|33|32|31|30|29|28|28|29|30|31|32|33|34|35|38|37|38|39|49|41|42|45|44|45|46|47|48|49|53|51|52|53|0\n31|30|29|26|24|23|23|22|21|21|19|19|17|17|18|28|18|20|20|27|22|25|24|25|26|27|28|29|30|31|0\n9|9|8|7|7|11|8|10|10|11|0\n59|58|57|55|54|54|56|53|51|51|49|49|46|46|45|44|44|43|42|41|40|39|39|61|37|37|36|34|34|33|33|63|35|35|36|38|38|62|40|41|42|43|48|45|47|47|48|50|50|52|52|53|60|55|56|57|58|59|60|61|62|63|0\n30|29|27|25|25|26|28|24|23|22|19|18|17|17|20|21|18|19|20|21|22|23|24|31|26|27|28|29|30|31|0\n9|8|6|6|7|7|8|9|0\n72|71|70|69|69|68|65|65|66|63|61|61|60|59|58|56|56|53|52|50|49|49|51|54|48|47|46|45|44|42|41|41|40|39|38|38|64|39|40|43|42|43|44|45|46|47|48|55|50|51|52|53|54|55|57|57|58|59|60|62|62|63|64|67|66|67|68|73|70|71|72|73|0\n62|60|60|59|57|57|58|56|55|52|51|51|49|48|47|47|46|45|42|41|40|40|43|39|37|36|36|35|34|33|33|54|34|35|38|37|38|39|44|41|42|43|44|45|46|50|48|49|50|53|52|53|54|55|56|63|58|59|61|61|62|63|0\n69|68|68|67|66|66|64|62|61|59|58|56|54|54|55|53|51|51|50|49|48|48|60|46|46|45|44|43|42|41|39|39|38|37|37|65|38|40|40|41|42|43|44|45|47|47|63|49|50|52|52|53|57|55|56|57|58|59|60|61|62|63|64|65|71|67|70|69|70|71|0\n42|41|39|39|38|38|37|36|32|30|30|31|33|29|28|27|26|25|24|23|23|35|24|25|26|27|28|29|34|31|32|33|34|35|36|37|43|40|40|41|42|43|0\n73|70|70|68|68|67|60|60|59|57|57|56|56|62|54|53|53|52|48|48|49|50|46|46|45|43|43|44|64|65|41|41|40|38|38|39|72|39|40|42|42|66|44|45|47|47|51|49|50|51|52|55|54|55|63|58|58|59|61|61|62|63|64|65|66|67|69|69|71|71|72|73|0\n56|54|53|53|51|51|50|46|46|45|45|48|44|43|41|41|40|39|39|38|37|35|35|33|32|30|30|31|34|31|32|33|34|36|36|37|38|57|40|42|42|43|44|49|47|47|48|49|50|52|52|55|54|55|56|57|0\n53|49|49|48|48|45|45|46|44|43|42|38|37|34|34|35|33|33|39|40|31|31|30|29|28|28|52|29|30|32|32|41|36|35|36|37|38|39|40|41|42|43|44|47|46|47|51|50|50|51|52|53|0\n51|50|47|47|45|45|43|43|39|39|38|36|36|37|41|34|33|33|32|31|30|29|28|27|27|49|28|29|30|31|32|35|34|35|42|37|38|40|40|41|42|44|44|46|46|48|48|49|50|51|0\n33|31|30|26|25|24|24|27|23|23|22|21|20|19|18|18|32|19|20|21|22|29|28|25|26|27|28|29|30|31|32|33|0\n22|17|17|18|19|16|14|13|13|15|21|23|14|15|16|20|18|19|20|21|22|23|0\n46|44|44|43|41|41|40|38|38|39|37|35|34|33|31|31|30|30|29|27|26|25|25|28|26|27|28|29|36|32|32|33|34|35|36|37|47|39|40|42|42|43|45|45|46|47|0\n18|18|19|17|17|21|16|15|14|13|13|23|14|15|16|22|20|19|20|21|22|23|0\n69|67|67|64|64|65|63|61|60|60|59|57|57|56|55|53|52|52|51|49|48|47|45|45|46|50|70|71|44|43|41|40|39|39|38|38|73|42|40|41|42|43|44|72|46|47|48|49|50|51|54|53|54|55|56|58|58|59|62|61|62|63|66|65|66|68|68|69|70|71|72|73|0\n14|13|10|10|11|9|9|15|12|11|12|13|14|15|0\n12|11|11|8|8|9|10|9|10|13|12|13|0\n68|68|67|66|64|64|65|70|71|61|60|60|59|59|58|56|55|53|53|54|52|49|48|47|46|46|45|42|42|43|41|40|40|39|38|38|73|39|51|41|44|43|44|45|50|47|48|49|50|51|52|57|54|55|56|57|58|63|62|61|62|63|72|65|66|67|69|69|70|71|72|73|0\n28|28|26|25|25|24|23|22|21|21|30|31|20|19|18|18|33|19|20|32|22|23|24|27|26|27|29|29|30|31|32|33|0\n85|82|82|80|79|79|78|74|74|72|71|68|68|69|67|67|66|63|62|61|61|60|59|59|58|58|57|56|54|54|53|51|50|50|49|48|48|47|46|45|44|44|84|45|46|47|77|49|52|51|52|53|55|55|56|57|76|65|60|64|62|63|64|65|66|73|70|69|70|71|72|73|75|75|76|77|78|81|80|81|83|83|84|85|0\n57|56|55|54|54|53|52|49|47|46|46|45|44|44|50|42|42|41|39|39|38|37|36|36|59|35|34|33|32|32|61|33|34|35|60|37|38|40|40|41|43|43|51|45|48|47|48|49|50|51|52|53|58|55|56|57|58|59|60|61|0\n16|16|13|13|14|11|10|10|12|11|12|15|14|15|17|17|0\n14|10|10|11|9|9|13|15|12|11|12|13|14|15|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n47|46|45|40|38|37|37|36|36|41|35|32|31|31|30|30|29|29|28|27|26|25|25|44|26|27|28|43|34|33|32|33|34|35|42|39|38|39|40|41|42|43|44|45|46|47|0\n23|22|21|18|17|15|15|16|14|13|13|20|14|19|16|17|18|19|20|21|22|23|0\n4|4|5|5|0\n9|9|8|7|7|11|8|10|10|11|0\n32|30|30|31|29|27|27|26|22|22|21|20|20|19|18|18|25|19|24|21|23|23|24|25|26|28|28|29|33|31|32|33|0\n58|57|55|55|54|53|53|52|51|49|48|46|45|43|42|42|41|41|40|39|37|37|36|35|34|33|32|31|31|50|32|33|34|35|36|38|38|39|40|47|44|43|44|45|46|47|48|49|50|51|52|59|54|56|56|57|58|59|0\n16|13|13|14|12|11|11|10|10|17|12|15|14|15|16|17|0\n32|31|30|29|28|27|26|26|25|24|22|20|20|19|18|18|23|19|21|21|22|23|24|25|33|27|28|29|30|31|32|33|0\n23|21|17|16|15|15|18|19|14|13|13|22|14|20|16|17|18|19|20|21|22|23|0\n27|26|25|25|28|21|21|20|20|19|18|17|16|16|24|17|18|19|23|22|22|23|24|29|26|27|28|29|0\n43|42|42|40|40|39|38|37|36|36|45|35|34|33|32|31|30|29|28|27|26|25|25|47|26|27|28|29|30|31|32|33|34|35|46|37|38|39|41|41|44|43|44|45|46|47|0\n45|43|42|41|40|39|38|37|36|35|34|33|33|32|31|30|29|28|27|26|24|24|25|25|26|27|28|29|30|31|32|44|34|35|36|37|38|39|40|41|42|43|44|45|0\n14|14|12|10|9|9|11|13|10|11|12|13|15|15|0\n33|33|32|31|30|30|35|29|28|27|24|24|25|23|22|22|37|21|21|39|38|23|26|25|26|27|28|29|36|31|32|34|34|35|36|37|38|39|0\n72|72|73|69|69|70|68|68|58|58|57|56|55|55|60|61|54|53|52|50|50|49|48|47|45|45|46|63|64|65|44|43|41|41|40|39|39|67|40|42|42|43|44|66|46|47|48|49|51|51|52|53|54|62|56|57|59|59|60|61|62|63|64|65|66|67|75|71|70|71|74|73|74|75|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n63|62|60|59|58|57|57|56|54|53|53|47|46|45|44|42|41|41|40|40|48|49|50|39|38|37|36|35|34|33|33|52|34|35|36|37|38|39|51|43|42|43|44|45|46|47|48|49|50|51|52|55|54|55|56|61|58|59|60|61|62|63|0\n27|26|25|25|28|29|24|23|22|21|20|19|17|17|18|31|18|19|20|21|22|23|24|30|26|27|28|29|30|31|0\n23|20|18|17|16|15|14|14|19|21|13|13|22|15|16|17|18|19|20|21|22|23|0\n45|41|41|40|39|39|43|38|37|36|36|46|47|35|33|33|32|32|31|29|28|27|27|26|26|30|28|29|30|31|49|34|34|35|48|37|38|44|40|42|42|43|44|45|46|47|48|49|0\n19|13|13|14|12|12|16|11|11|18|17|15|14|15|16|17|18|19|0\n43|43|42|40|40|39|38|38|36|32|32|31|28|28|29|27|27|34|26|25|24|24|37|25|26|35|30|29|30|31|33|33|34|35|36|37|45|39|41|41|42|44|44|45|0\n23|23|24|21|19|18|17|17|16|15|14|14|22|15|16|20|18|19|20|21|22|25|24|25|0\n18|17|17|14|13|13|12|11|11|16|12|15|14|15|16|19|18|19|0\n38|37|35|35|36|34|33|31|30|29|27|27|26|25|23|23|22|21|21|32|22|24|24|25|26|28|28|29|30|31|32|33|34|39|36|37|38|39|0\n33|31|30|30|28|26|25|25|24|23|20|20|21|19|18|18|29|19|22|21|22|23|24|27|26|27|28|29|32|31|32|33|0\n79|78|76|76|75|73|71|70|70|69|68|68|67|67|80|81|65|64|63|63|62|61|58|56|55|55|54|54|59|52|51|49|49|47|46|46|48|45|44|43|43|83|44|45|53|47|48|50|50|51|52|53|60|57|56|57|58|59|60|61|62|66|64|65|66|82|74|69|72|71|72|73|74|75|77|77|78|79|80|81|82|83|0\n40|40|41|39|36|36|35|34|34|33|31|31|32|43|29|28|28|27|25|25|24|24|45|26|26|27|30|29|30|44|32|33|38|35|37|37|38|39|42|41|42|43|44|45|0\n23|23|22|21|20|20|25|19|19|18|16|16|15|15|17|17|18|27|26|21|22|24|24|25|26|27|0\n26|24|23|23|22|21|21|19|17|17|16|15|15|20|16|18|18|19|20|27|22|25|24|25|26|27|0\n51|51|52|50|50|54|55|48|43|43|42|42|45|46|40|40|38|38|39|37|36|35|34|33|32|30|30|31|57|31|32|33|34|35|36|37|49|39|41|41|47|44|44|45|46|47|48|49|56|53|52|53|54|55|56|57|0\n46|45|42|41|41|43|40|40|39|37|37|34|34|33|31|30|29|29|28|27|26|25|25|36|26|27|28|32|30|31|32|33|35|35|36|38|38|39|47|44|42|43|44|45|46|47|0\n29|28|27|26|25|25|30|22|22|20|19|19|18|17|17|24|18|21|20|21|23|23|24|31|26|27|28|29|30|31|0\n10|9|9|7|7|8|8|11|10|11|0\n50|49|48|47|46|46|45|41|41|40|39|39|43|37|36|34|34|33|32|31|30|29|28|27|27|38|28|29|30|31|32|33|35|35|36|37|38|44|40|42|42|43|44|45|51|47|48|49|50|51|0\n14|14|15|12|12|11|10|10|17|11|13|13|16|15|16|17|0\n52|51|50|50|49|46|46|45|44|43|42|41|41|39|37|37|35|35|34|33|32|30|29|29|28|28|40|31|30|31|32|33|34|36|36|38|38|39|40|48|42|43|44|45|47|47|48|49|53|51|52|53|0\n53|52|50|49|49|48|46|46|45|45|54|55|44|43|42|41|39|38|38|37|36|35|34|33|32|31|30|30|57|31|32|33|34|35|36|37|40|39|40|41|42|43|44|56|47|47|48|51|50|51|52|53|54|55|56|57|0\n36|35|34|33|31|30|29|29|26|26|27|25|23|23|24|37|21|21|22|39|22|38|24|25|28|27|28|32|30|31|32|33|34|35|36|37|38|39|0\n23|21|21|20|19|16|15|14|13|13|17|18|14|15|16|17|18|19|20|22|22|23|0\n12|11|10|10|13|9|9|15|14|11|12|13|14|15|0\n9|8|7|6|6|7|8|9|0\n10|10|9|7|7|8|8|9|11|11|0\n37|36|35|35|34|33|32|30|28|28|29|27|26|25|25|39|23|23|22|22|41|24|24|40|26|27|31|29|30|31|32|33|34|38|36|37|38|39|40|41|0\n40|39|38|37|37|41|36|35|33|33|31|30|30|29|27|27|26|25|24|23|23|43|24|25|26|28|28|29|32|31|32|34|34|35|36|42|38|39|40|41|42|43|0\n12|11|10|10|8|8|9|9|13|11|12|13|0\n34|33|33|32|31|29|28|27|26|25|24|21|21|22|20|19|19|30|20|23|22|23|24|25|26|27|28|29|30|31|32|35|34|35|0\n54|53|52|50|49|49|48|47|47|46|45|44|41|41|39|39|38|36|36|35|34|33|30|30|31|29|29|43|32|31|32|33|34|35|37|37|38|40|40|42|42|43|44|45|46|55|48|51|50|51|52|53|54|55|0\n60|59|58|58|57|55|54|54|52|51|51|49|48|47|45|45|42|41|40|39|39|38|37|37|36|35|32|32|33|34|50|33|34|35|36|44|38|43|40|41|42|43|44|46|46|47|48|49|50|53|52|53|56|55|56|57|61|59|60|61|0\n47|47|46|45|44|43|42|41|41|39|39|36|36|33|32|32|34|29|28|28|30|27|26|26|38|27|31|29|30|31|35|33|34|35|37|37|38|40|40|49|42|43|44|45|46|48|48|49|0\n61|60|60|59|59|58|57|56|56|64|65|52|51|51|50|49|49|54|48|47|46|45|44|42|41|41|38|38|39|36|36|35|35|67|37|37|40|39|40|43|42|43|44|45|46|47|48|55|50|53|52|53|54|55|66|57|58|63|62|61|62|63|64|65|66|67|0\n24|24|25|21|21|22|20|20|19|19|18|16|16|17|29|17|18|28|27|23|22|23|26|25|26|27|28|29|0\n36|36|35|33|32|32|31|30|30|38|39|28|28|26|25|24|24|23|22|22|41|23|27|25|26|27|29|29|40|31|34|33|34|35|37|37|38|39|40|41|0\n25|23|20|20|21|18|18|17|15|15|14|14|24|16|16|17|19|19|22|21|22|23|24|25|0\n44|43|42|40|39|39|38|37|37|35|33|27|27|28|29|30|31|32|34|25|24|24|26|25|26|36|28|29|30|31|32|33|34|35|36|45|38|41|40|41|42|43|44|45|0\n30|29|28|27|27|26|25|24|24|32|33|21|20|20|22|19|19|35|23|21|22|23|34|25|26|31|28|29|30|31|32|33|34|35|0\n40|37|37|38|36|35|35|34|33|30|30|29|27|27|26|25|22|22|23|24|32|23|24|25|26|28|28|29|31|31|32|33|34|41|36|39|38|39|40|41|0\n24|23|23|21|19|19|18|15|15|16|14|14|22|17|16|17|18|20|20|21|22|25|24|25|0\n27|22|21|21|23|24|20|18|18|17|16|15|15|26|16|17|19|19|20|25|22|23|24|25|26|27|0\n22|21|20|20|18|17|16|15|14|13|13|19|14|15|16|17|18|19|23|21|22|23|0\n19|14|14|13|11|11|12|16|17|18|12|13|15|15|16|17|18|19|0\n55|54|53|52|52|56|57|51|50|49|45|45|46|43|43|42|41|40|40|39|38|37|36|34|33|33|32|31|31|59|32|35|34|35|36|37|38|39|48|41|42|44|44|47|46|47|48|49|50|51|58|53|54|55|56|57|58|59|0\n23|22|21|20|20|19|18|17|16|15|15|14|14|25|16|17|18|19|24|21|22|23|24|25|0\n54|53|52|50|50|49|48|47|44|41|40|39|38|37|36|35|35|42|34|33|33|45|31|31|30|29|29|55|30|32|32|46|34|43|36|37|38|39|40|41|42|43|44|45|46|47|48|49|51|51|52|53|54|55|0\n36|35|33|33|31|31|30|30|37|28|28|26|26|25|24|23|22|21|21|39|22|23|24|25|27|27|29|29|38|32|32|34|34|35|36|37|38|39|0\n74|72|72|69|68|65|64|63|63|66|61|60|60|59|58|57|56|55|54|54|70|53|52|51|50|50|49|47|45|43|43|42|42|46|40|39|39|41|40|41|48|44|44|45|46|47|48|49|75|51|52|53|71|55|56|57|58|59|62|61|62|67|64|65|66|67|68|69|70|71|73|73|74|75|0\n33|30|29|29|28|27|26|26|23|22|22|21|20|19|18|18|25|19|20|21|24|23|24|25|32|27|28|31|30|31|32|33|0\n80|79|79|78|75|73|72|71|70|69|69|68|67|66|65|63|63|62|61|61|76|77|60|59|58|57|56|56|55|54|52|51|50|50|48|46|46|45|43|43|44|49|44|45|47|47|48|49|53|51|52|53|54|55|83|57|58|59|60|82|62|64|64|65|66|67|68|74|70|71|72|73|74|75|76|77|78|81|80|81|82|83|0\n21|19|19|18|16|13|13|14|12|12|17|15|14|15|16|17|18|20|20|21|0\n30|30|29|29|28|26|25|25|24|22|22|21|19|19|18|18|33|20|20|21|23|23|24|27|26|27|28|32|31|31|32|33|0\n10|10|9|8|7|7|8|9|11|11|0\n43|43|44|42|33|32|32|34|31|31|30|29|29|37|27|27|28|39|25|24|24|26|41|25|26|40|28|38|30|36|35|33|34|35|36|37|38|39|40|41|42|45|44|45|0\n49|45|45|46|42|39|39|40|38|37|36|36|43|35|34|31|31|29|29|28|28|27|26|26|48|27|33|30|30|32|32|33|34|35|44|37|38|41|40|41|42|43|44|47|46|47|48|49|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n56|55|54|52|52|51|50|49|49|48|47|43|43|41|41|40|40|39|38|37|35|34|34|33|32|31|30|30|46|31|32|33|36|35|36|37|38|39|45|42|42|44|44|45|46|47|48|57|50|51|53|53|54|55|56|57|0\n41|39|37|36|36|35|33|32|32|31|29|29|28|27|26|25|24|23|22|22|40|23|24|25|26|27|28|30|30|31|34|33|34|35|38|37|38|39|40|41|0\n70|70|71|69|69|73|68|67|66|66|65|60|59|59|58|57|55|54|54|53|51|50|49|48|48|47|46|44|44|43|43|62|41|39|39|40|42|64|40|41|42|63|45|45|46|47|52|49|50|51|52|53|56|55|56|57|58|61|60|61|62|63|64|65|75|67|68|74|72|71|72|73|74|75|0\n46|46|42|42|41|40|39|37|37|36|34|34|33|33|32|30|30|29|28|27|26|25|25|45|26|27|28|29|31|31|32|44|35|35|36|38|38|39|40|41|43|43|44|45|47|47|0\n23|20|20|19|18|18|15|15|14|13|13|17|14|16|16|17|22|19|21|21|22|23|0\n20|20|16|16|15|15|14|13|12|12|19|13|14|18|17|17|18|19|21|21|0\n46|45|43|43|40|38|38|37|37|36|35|35|34|33|33|32|31|28|27|27|26|25|25|30|26|29|28|29|30|31|32|47|34|42|36|41|39|39|40|41|42|44|44|45|46|47|0\n21|18|18|19|17|16|16|14|14|13|13|23|15|15|22|17|20|19|20|21|22|23|0\n19|17|16|15|13|13|12|11|11|18|12|14|14|15|16|17|18|19|0\n45|45|43|43|44|38|36|35|35|34|32|32|33|39|40|31|29|29|27|26|25|25|28|42|26|27|28|30|30|31|41|33|34|37|36|37|38|39|40|41|42|47|44|46|46|47|0\n36|35|34|33|33|37|32|31|29|29|30|39|27|27|26|24|24|23|22|22|41|23|25|25|26|28|28|40|30|31|32|38|34|35|36|37|38|39|40|41|0\n59|58|58|60|57|56|55|55|62|53|52|51|50|48|44|44|43|43|46|42|42|41|36|35|35|37|34|34|39|33|33|54|40|38|36|37|38|39|40|41|49|47|45|45|46|47|48|49|50|51|52|53|54|63|56|57|61|59|60|61|62|63|0\n30|28|27|27|26|25|24|22|22|21|20|19|19|17|17|18|18|31|20|21|23|23|24|25|26|29|28|29|30|31|0\n15|15|16|13|11|11|10|10|14|12|12|13|14|17|16|17|0\n35|33|30|28|28|27|27|31|24|23|21|21|22|25|20|19|19|34|20|26|22|23|24|25|26|32|29|29|30|31|32|33|34|35|0\n36|33|33|34|31|30|30|29|28|28|27|26|24|22|22|21|20|20|25|21|23|23|24|25|26|27|37|29|32|31|32|35|34|35|36|37|0\n50|47|46|46|48|45|45|44|43|42|41|40|39|38|38|52|53|36|36|34|34|32|31|30|30|29|29|55|33|31|32|33|35|35|37|37|54|39|40|41|42|43|44|51|49|47|48|49|50|51|52|53|54|55|0\n20|19|18|17|16|15|14|13|12|12|21|13|14|15|16|17|18|19|20|21|0\n29|28|23|23|22|21|21|25|20|19|18|17|16|16|27|17|18|19|20|26|22|24|24|25|26|27|28|29|0\n67|66|61|60|60|59|58|57|57|63|64|54|54|55|53|52|50|50|51|68|69|49|46|46|47|44|43|43|42|40|40|39|38|37|37|71|38|39|41|41|42|45|44|45|48|47|48|49|70|51|52|53|56|55|56|65|58|59|62|61|62|63|64|65|66|67|68|69|70|71|0\n35|33|32|30|29|28|28|27|26|25|24|22|21|21|20|19|19|34|20|23|22|23|24|25|26|27|31|29|30|31|32|33|34|35|0\n20|18|18|17|17|16|14|14|12|12|13|13|15|15|16|21|19|19|20|21|0\n15|13|12|10|10|9|9|14|11|11|12|13|14|15|0\n32|32|30|30|29|29|34|35|27|26|26|25|24|23|22|21|20|20|37|21|22|23|24|25|28|27|28|36|31|31|33|33|34|35|36|37|0\n54|53|53|51|49|48|47|46|46|45|44|42|40|40|39|38|38|37|36|34|33|32|32|31|30|29|29|52|30|31|35|33|34|35|36|37|43|39|41|41|42|43|44|45|50|47|48|49|50|51|52|55|54|55|0\n13|13|12|11|10|9|9|15|10|11|12|14|14|15|0\n20|20|19|19|18|16|16|17|15|14|13|13|14|15|23|17|18|22|21|21|22|23|0\n32|32|33|31|31|30|28|27|27|26|25|23|21|20|20|19|19|24|22|21|22|23|24|25|26|29|28|29|30|35|34|33|34|35|0\n22|22|20|19|17|16|15|15|14|13|13|21|14|18|16|17|18|19|20|21|23|23|0\n9|9|8|7|7|11|8|10|10|11|0\n42|41|39|39|38|38|37|36|36|44|45|34|34|32|31|31|30|29|28|27|26|25|25|47|26|27|28|29|30|33|32|33|35|35|46|37|43|40|40|41|42|43|44|45|46|47|0\n29|28|28|27|26|25|23|22|22|21|20|18|18|17|17|31|19|19|20|21|24|23|24|25|26|27|30|29|30|31|0\n43|40|40|41|42|39|37|37|36|36|35|33|32|30|29|28|27|27|26|25|24|24|34|25|26|31|28|29|30|31|32|33|34|35|45|38|38|39|44|41|42|43|44|45|0\n16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0\n41|39|38|37|36|33|33|32|28|27|25|25|26|29|30|31|24|23|22|22|40|23|24|35|26|27|28|29|30|31|32|34|34|35|36|37|38|39|40|41|0\n87|87|86|86|89|85|85|84|83|81|81|80|79|78|78|92|76|75|72|71|70|69|68|66|64|63|63|65|62|61|60|59|59|73|57|57|56|54|53|53|52|51|50|49|48|48|77|49|50|51|52|55|54|55|56|58|58|74|60|61|62|67|64|65|66|67|68|69|70|71|72|73|74|75|76|77|93|79|80|82|82|83|84|91|90|88|88|89|90|91|92|93|0\n40|39|38|37|37|36|34|33|32|32|30|28|27|26|25|25|24|23|22|22|31|23|24|29|26|27|28|29|30|31|35|33|34|35|36|41|38|39|40|41|0\n21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0\n17|15|14|11|11|12|10|10|16|13|12|13|14|15|16|17|0\n74|71|71|70|68|68|66|66|64|64|63|62|61|61|59|59|58|57|51|51|50|50|53|49|49|48|48|47|46|45|45|44|43|41|40|39|39|42|40|41|42|43|44|75|46|47|56|55|54|52|52|53|54|55|56|57|58|60|60|73|62|63|65|65|67|67|69|69|70|72|72|73|74|75|0\n8|6|6|7|9|7|8|9|0\n73|71|69|67|67|68|66|59|58|57|56|56|60|61|54|54|52|52|51|49|49|48|48|63|64|47|46|43|42|42|44|40|40|39|38|38|72|39|41|41|45|43|44|45|46|47|65|50|50|51|53|53|55|55|62|57|58|59|60|61|62|63|64|65|66|70|68|69|70|71|72|73|0\n29|29|28|27|26|25|25|31|23|23|21|20|20|19|18|18|33|19|22|21|22|24|24|32|26|27|28|30|30|31|32|33|0\n17|16|14|14|12|10|10|11|13|11|12|13|15|15|16|17|0\n10|10|8|7|7|9|8|9|11|11|0\n10|10|9|7|7|8|8|9|11|11|0\n39|37|36|35|33|33|32|31|29|27|27|26|26|25|23|22|22|21|21|38|24|23|24|25|30|28|28|29|30|31|32|34|34|35|36|37|38|39|0\n35|34|33|31|30|29|25|25|24|23|23|27|22|21|20|19|19|32|20|21|22|28|24|26|26|27|28|29|30|31|32|33|34|35|0\n20|19|19|18|16|15|14|13|12|12|17|13|14|15|16|17|18|21|20|21|0\n28|28|27|25|22|20|20|21|19|19|18|17|16|16|26|17|18|24|23|21|22|23|24|25|26|27|29|29|0\n73|73|72|70|70|69|68|67|67|65|63|61|60|60|59|53|53|54|52|52|56|51|50|50|58|49|48|47|46|45|43|41|41|42|40|39|39|66|40|44|42|43|44|45|46|47|48|49|64|51|57|55|54|55|56|57|58|59|62|61|62|63|64|65|66|75|68|69|71|71|72|74|74|75|0\n62|60|59|58|58|57|56|55|53|53|52|51|51|63|48|47|46|46|49|45|43|43|42|41|39|39|38|36|35|35|34|34|65|37|36|37|38|40|40|41|42|44|44|45|50|47|48|49|50|64|52|54|54|55|56|57|61|59|60|61|62|63|64|65|0\n18|18|19|17|16|15|14|14|21|13|13|23|22|15|16|17|20|19|20|21|22|23|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n43|42|42|41|41|39|38|35|35|34|33|32|32|30|29|28|28|27|26|25|24|24|40|25|26|27|31|29|30|31|37|33|34|36|36|37|38|39|40|45|44|43|44|45|0\n30|25|24|23|23|22|22|27|28|20|19|18|18|17|17|31|21|19|20|21|29|26|24|25|26|27|28|29|30|31|0\n35|32|32|30|30|29|28|27|26|23|21|21|20|20|24|19|19|34|25|22|22|23|24|25|26|27|28|29|31|31|33|33|34|35|0\n14|13|12|12|10|9|9|11|10|11|15|13|14|15|0\n33|30|29|28|27|27|26|23|22|22|21|20|19|18|18|25|32|19|20|21|24|23|24|25|26|31|28|29|30|31|32|33|0\n41|41|40|38|37|35|35|36|31|30|30|32|33|29|28|27|27|26|24|23|23|25|24|25|26|43|28|29|34|31|32|33|34|39|36|37|38|39|40|42|42|43|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n39|37|36|32|32|33|34|31|30|29|29|28|27|25|24|23|22|21|21|26|22|23|24|25|26|27|28|38|30|31|35|33|34|35|36|37|38|39|0\n17|11|11|12|13|14|10|10|16|15|12|13|14|15|16|17|0\n85|84|83|83|82|78|77|77|76|73|73|72|71|71|75|80|69|68|68|67|60|60|61|59|58|58|63|57|57|65|56|55|55|54|52|51|49|46|46|47|48|45|45|53|50|47|48|49|50|51|52|53|54|87|56|66|64|59|62|61|62|63|64|65|66|67|70|69|70|81|72|74|74|75|76|79|78|79|80|81|82|86|84|85|86|87|0\n9|8|6|6|7|7|8|9|0\n5|4|4|5|0\n7|7|8|9|10|11|8|9|10|11|0\n29|27|25|23|23|24|22|20|20|19|18|17|16|16|28|17|18|19|21|21|22|26|24|25|26|27|28|29|0\n27|25|24|23|22|20|20|19|18|17|16|15|15|26|16|17|18|19|21|21|22|23|24|25|26|27|0\n40|39|38|33|33|32|30|30|31|35|36|28|28|27|26|24|24|23|22|22|41|23|25|25|26|27|29|29|37|31|32|34|34|35|36|37|38|39|40|41|0\n8|8|6|6|7|7|9|9|0\n16|16|15|12|12|11|10|10|14|11|13|13|14|15|17|17|0\n44|43|43|41|40|39|38|37|37|36|35|34|33|32|31|31|46|47|30|29|28|26|26|27|49|27|28|29|30|48|32|33|34|35|36|42|38|39|40|41|42|45|44|45|46|47|48|49|0\n37|36|34|34|32|29|28|27|27|30|25|25|23|23|21|21|20|20|33|22|22|24|24|26|26|31|28|29|30|31|32|33|35|35|36|37|0\n27|26|25|25|24|22|21|21|20|19|19|17|16|16|18|17|18|29|20|23|22|23|24|28|26|27|28|29|0\n42|41|39|38|38|37|36|35|33|33|32|31|31|29|27|27|26|25|24|23|23|30|24|25|26|28|28|29|30|43|32|34|34|35|36|37|40|39|40|41|42|43|0\n32|31|31|28|27|26|25|24|24|23|21|20|20|19|18|18|30|19|22|21|22|23|29|25|26|27|28|29|30|33|32|33|0\n68|67|65|65|64|63|62|58|58|57|57|60|56|55|54|54|69|70|71|53|51|51|50|48|46|46|47|44|43|42|42|41|39|39|38|38|73|40|40|41|45|43|44|45|49|47|48|49|50|52|52|53|72|55|56|61|59|59|60|61|62|63|64|66|66|67|68|69|70|71|72|73|0\n69|69|68|67|65|64|63|63|62|60|59|58|58|57|57|53|50|47|47|46|46|45|45|51|44|43|42|41|39|39|40|54|38|37|37|56|38|55|40|41|42|43|44|52|49|48|48|49|50|51|52|53|54|55|56|71|61|59|60|61|62|66|64|65|66|67|68|70|70|71|0\n55|52|51|51|48|48|47|46|46|45|44|43|42|41|39|38|37|37|36|34|33|33|32|31|30|29|29|54|30|31|32|35|34|35|36|40|38|39|40|41|42|43|44|45|50|47|49|49|50|53|52|53|54|55|0\n52|50|49|49|48|47|47|46|43|43|44|40|39|38|38|37|35|35|34|32|32|31|30|29|28|28|42|29|30|31|33|33|34|36|36|37|41|39|40|41|42|45|44|45|46|53|48|51|50|51|52|53|0\n40|39|39|41|38|38|37|34|34|32|32|30|30|28|27|26|25|25|24|23|23|36|24|29|26|27|28|29|31|31|33|33|35|35|36|37|43|42|40|41|42|43|0\n93|92|92|91|90|89|88|87|86|85|85|83|80|76|75|75|74|72|72|73|78|71|71|81|70|69|67|65|64|64|62|62|61|60|60|59|58|56|55|55|54|52|52|51|50|49|49|84|50|51|53|53|54|57|56|57|58|59|68|61|63|63|66|65|66|67|68|69|70|82|79|73|74|77|76|77|78|79|80|81|82|83|84|95|86|87|88|89|90|91|94|93|94|95|0\n17|16|15|11|11|12|10|10|14|13|12|13|14|15|16|17|0\n4|4|5|5|0\n4|4|5|5|0\n4|4|5|5|0\n41|40|39|35|34|33|32|32|36|31|29|28|27|27|26|25|23|23|22|22|38|24|24|25|26|30|28|29|30|31|37|33|34|35|36|37|38|39|40|41|0\n24|21|21|20|19|19|23|18|17|15|14|14|16|15|16|17|18|25|20|22|22|23|24|25|0\n65|65|64|63|62|61|60|59|56|55|55|57|54|54|53|52|50|49|48|46|45|44|43|43|42|40|39|38|38|37|36|35|35|51|36|37|41|39|40|41|42|47|44|45|46|47|48|49|50|51|52|53|67|58|56|57|58|59|60|61|62|63|64|66|66|67|0\n11|9|8|7|7|10|8|9|10|11|0\n13|9|9|10|8|8|12|11|10|11|12|13|0\n29|26|26|24|23|21|21|20|19|16|16|17|18|25|28|17|18|19|20|22|22|23|24|25|27|27|28|29|0\n65|65|64|63|62|61|61|60|54|54|55|56|53|52|49|48|47|47|50|44|43|42|40|40|39|38|38|45|36|35|35|37|58|59|36|37|46|39|41|41|42|43|44|45|46|51|48|49|50|51|52|53|57|55|56|57|58|59|60|67|62|63|64|66|66|67|0\n20|20|18|13|13|14|15|16|12|12|19|17|14|15|16|17|18|19|21|21|0\n48|48|47|44|43|43|45|41|40|40|39|37|36|36|35|35|50|51|34|33|32|31|30|28|28|29|53|29|30|31|32|33|34|52|38|37|38|39|42|41|42|46|44|45|46|47|49|49|50|51|52|53|0\n20|19|19|18|18|17|16|14|14|13|13|23|15|15|16|17|22|21|20|21|22|23|0\n34|34|28|28|29|30|31|27|25|24|24|23|21|19|19|20|22|33|20|21|22|23|26|25|26|27|32|29|30|31|32|33|35|35|0\n40|39|39|35|35|34|34|37|31|30|29|29|28|27|26|23|23|24|22|22|33|25|24|25|26|27|28|32|30|31|32|33|38|36|36|37|38|41|40|41|0\n48|47|46|45|45|43|42|41|40|39|36|35|35|37|34|33|32|31|28|28|27|27|26|26|44|30|29|29|30|31|32|33|34|38|36|37|38|39|40|41|42|43|44|49|46|47|48|49|0\n90|88|88|87|86|84|83|83|82|81|81|80|74|72|71|71|70|69|67|67|66|65|64|64|63|61|61|60|59|58|56|56|57|76|77|55|54|53|52|50|50|49|48|47|47|79|48|49|51|51|52|53|54|55|78|57|58|59|60|62|62|63|75|65|66|68|68|69|70|73|72|73|74|75|76|77|78|79|80|91|82|85|84|85|86|87|89|89|90|91|0\n49|49|48|48|43|43|41|41|40|39|38|37|36|35|35|45|33|33|32|31|30|29|28|27|27|47|28|29|30|31|32|34|34|46|36|37|38|39|40|42|42|44|44|45|46|47|51|50|50|51|0\n12|9|9|10|11|8|8|13|10|11|12|13|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n41|38|38|36|35|35|34|31|30|30|32|29|27|27|26|24|24|23|22|22|40|23|25|25|26|28|28|29|33|31|32|33|34|37|36|37|39|39|40|41|0\n25|23|21|20|20|19|18|17|16|15|14|14|24|15|16|17|18|19|22|21|22|23|24|25|0\n51|48|48|47|46|42|42|43|41|40|40|37|36|35|35|38|33|32|31|31|30|28|27|27|29|50|28|29|30|34|32|33|34|39|36|37|38|39|45|41|44|43|44|45|46|47|49|49|50|51|0\n47|43|42|41|40|39|38|37|37|44|36|35|34|33|32|31|30|29|27|27|26|25|25|46|26|28|28|29|30|31|32|33|34|35|36|45|38|39|40|41|42|43|44|45|46|47|0\n58|57|57|59|56|55|55|53|51|51|50|49|46|46|45|44|43|43|42|41|38|38|39|37|35|34|32|32|33|36|54|33|34|35|36|37|40|39|40|41|42|48|44|45|47|47|48|49|50|52|52|53|54|61|56|60|58|59|60|61|0\n33|32|32|31|31|29|28|26|25|23|22|22|21|20|19|19|27|30|20|21|24|23|24|25|26|27|28|29|30|35|34|33|34|35|0\n9|6|6|7|8|7|8|9|0\n34|33|33|35|32|31|31|28|27|26|26|25|23|23|22|21|20|20|30|21|22|24|24|25|29|27|28|29|30|37|32|36|34|35|36|37|0\n32|31|28|28|27|26|25|25|24|22|21|21|20|19|18|18|33|19|20|23|22|23|24|30|26|27|29|29|30|31|32|33|0\n54|53|51|51|50|49|48|48|47|45|45|41|40|40|42|39|38|37|36|35|33|32|31|31|30|29|29|44|30|34|32|33|34|35|36|37|38|39|43|41|42|43|44|46|46|47|55|49|50|52|52|53|54|55|0\n23|23|22|21|21|19|16|16|15|15|14|14|20|18|17|17|18|19|20|25|22|24|24|25|0\n88|87|85|84|83|83|82|81|81|80|78|77|76|76|71|71|70|69|69|73|68|63|62|62|64|61|61|66|60|59|58|54|53|53|55|56|51|51|49|49|48|47|46|46|75|47|48|50|50|52|52|57|54|55|56|57|58|59|60|67|65|63|64|65|66|67|68|74|70|72|72|73|74|75|79|77|78|79|80|89|82|86|84|85|86|87|88|89|0\n50|47|46|44|44|43|43|48|42|41|39|38|38|37|36|34|34|35|33|33|32|31|30|28|28|29|53|29|30|31|32|52|51|35|36|37|40|39|40|41|42|49|45|45|46|47|48|49|50|51|52|53|0\n16|15|15|14|14|18|19|13|12|12|21|13|20|17|16|17|18|19|20|21|0\n27|26|25|23|22|22|21|17|17|16|15|15|19|20|16|18|18|19|20|21|24|23|24|25|26|27|0\n16|15|14|12|11|11|10|10|17|13|12|13|14|15|16|17|0\n26|26|23|23|22|21|20|16|16|17|18|15|15|25|19|17|18|19|20|21|22|24|24|25|27|27|0\n13|13|12|12|10|9|9|11|10|11|15|14|14|15|0\n38|38|37|36|35|35|40|41|33|33|32|31|30|29|28|27|25|25|24|23|23|43|24|26|26|27|28|29|30|31|32|34|34|42|36|37|39|39|40|41|42|43|0\n18|17|17|16|15|15|14|12|12|13|21|13|14|20|16|19|18|19|20|21|0\n44|44|41|41|38|38|37|33|32|32|34|31|30|28|27|26|26|25|25|36|24|24|43|40|29|27|28|29|30|31|35|33|34|35|36|37|39|39|40|42|42|43|45|45|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n16|15|14|13|13|17|11|11|12|19|12|18|14|15|16|17|18|19|0\n49|49|48|47|46|45|44|43|42|41|41|40|39|36|35|34|33|33|32|29|28|28|30|27|27|38|31|29|30|31|32|37|34|35|36|37|38|39|40|51|42|43|44|45|46|47|48|50|50|51|0\n46|45|42|40|40|38|38|37|35|35|34|33|33|43|32|31|31|30|29|27|26|25|25|28|26|27|28|29|30|47|32|44|34|36|36|37|39|39|41|41|42|43|44|45|46|47|0\n28|27|26|25|23|20|20|21|22|19|18|17|16|16|29|17|18|19|24|21|22|23|24|25|26|27|28|29|0\n41|39|38|37|36|35|34|32|31|31|30|29|28|27|26|25|24|23|22|22|40|23|24|25|26|27|28|29|30|33|32|33|34|35|36|37|38|39|40|41|0\n38|38|37|35|34|33|32|31|29|29|28|27|25|25|24|22|21|21|23|36|22|23|24|26|26|27|28|30|30|31|32|33|34|35|36|37|39|39|0\n34|32|31|29|29|30|33|28|27|26|25|25|36|37|24|23|22|21|21|39|22|23|24|38|26|27|28|35|30|31|32|33|34|35|36|37|38|39|0\n12|10|10|9|8|8|13|9|11|11|12|13|0\n26|25|24|24|21|21|20|19|18|17|16|15|15|23|16|17|18|19|20|22|22|23|27|25|26|27|0\n36|36|32|32|31|30|29|29|28|27|23|23|22|22|25|21|20|20|35|21|26|24|24|25|26|27|28|34|30|31|33|33|34|35|37|37|0\n21|19|16|16|17|13|13|14|12|12|20|15|14|15|18|17|18|19|20|21|0\n54|54|55|53|52|51|51|57|50|47|47|48|46|43|43|42|40|40|41|39|37|37|35|35|34|33|32|31|31|59|32|33|34|36|36|38|38|39|45|41|42|44|44|45|46|49|48|49|50|58|52|53|56|55|56|57|58|59|0\n15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n25|22|21|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|23|22|23|24|25|0\n25|23|21|21|20|19|17|17|18|16|15|14|14|15|16|24|18|19|20|22|22|23|24|25|0\n32|31|31|30|29|27|25|24|24|23|22|21|20|19|18|18|28|19|20|21|22|23|26|25|26|27|28|29|30|33|32|33|0\n32|31|31|30|29|28|27|27|26|24|24|25|23|22|20|19|19|21|20|21|22|23|35|25|26|34|28|29|30|33|32|33|34|35|0\n21|19|17|16|16|14|13|13|12|12|20|15|14|15|18|17|18|19|20|21|0\n19|17|13|13|14|15|12|11|11|18|12|16|14|15|16|17|18|19|0\n10|9|8|7|7|11|8|9|10|11|0\n46|44|43|43|42|42|41|40|38|36|35|35|34|33|32|29|27|27|28|30|26|25|25|39|26|31|28|29|30|31|32|33|34|37|36|37|38|39|40|41|47|45|44|45|46|47|0\n34|34|32|30|30|29|28|27|26|24|23|23|22|21|20|19|19|33|20|21|22|25|24|25|26|27|28|29|31|31|32|33|35|35|0\n25|23|19|18|18|20|21|16|15|15|14|14|24|17|16|17|22|19|20|21|22|23|24|25|0\n78|77|75|75|74|73|72|71|70|68|67|67|66|65|64|63|61|61|60|60|59|58|56|51|51|50|50|48|48|47|47|54|45|45|44|43|41|41|42|57|42|43|44|46|46|55|49|49|53|52|52|53|54|55|56|57|58|59|79|62|62|63|64|65|66|69|68|69|70|71|72|73|74|76|76|77|78|79|0\n10|10|8|7|7|9|8|9|11|11|0\n28|27|27|25|24|23|22|19|19|20|18|17|16|16|26|17|18|21|20|21|22|23|24|25|26|29|28|29|0\n38|36|36|35|34|33|33|32|31|29|28|26|25|25|24|21|21|22|23|30|22|23|24|27|26|27|28|29|30|31|32|39|34|35|37|37|38|39|0\n25|25|24|23|23|21|20|17|17|18|16|15|15|22|16|19|18|19|20|21|22|27|24|26|26|27|0\n45|45|43|42|42|41|40|39|38|37|36|35|35|34|33|30|29|27|27|26|26|25|25|32|31|28|28|29|30|31|32|33|34|47|36|37|38|39|40|41|44|43|44|46|46|47|0\n8|8|9|7|7|11|10|9|10|11|0\n8|6|6|7|9|7|8|9|0\n69|68|67|67|70|65|63|63|62|61|61|58|56|56|55|54|54|59|52|51|51|50|47|46|44|44|45|48|43|42|41|40|39|37|37|38|38|39|40|41|42|43|49|45|46|47|48|49|50|53|52|53|60|55|57|57|58|59|60|66|62|64|64|65|66|71|68|69|70|71|0\n42|41|40|39|38|37|35|35|34|31|31|32|33|43|30|29|28|27|25|25|24|24|45|26|26|27|28|29|30|44|32|33|34|36|36|37|38|39|40|41|42|43|44|45|0\n20|19|17|16|16|18|15|14|12|12|13|13|14|15|21|17|18|19|20|21|0\n46|45|44|42|42|43|41|40|37|36|36|35|34|32|32|31|30|29|28|27|26|25|25|39|26|27|28|29|30|31|33|33|34|35|38|37|38|39|40|41|47|43|44|45|46|47|0\n40|40|37|35|35|34|34|30|29|29|31|32|28|26|26|25|24|22|22|23|39|23|24|25|27|27|28|33|30|31|32|33|38|36|36|37|38|39|41|41|0\n70|68|67|64|64|65|63|63|62|61|61|71|60|59|58|57|56|55|53|52|51|51|50|48|48|47|45|45|44|42|42|41|39|39|38|38|73|40|40|41|43|43|44|46|46|47|49|49|50|54|52|53|54|55|56|57|58|59|60|72|62|69|66|65|66|67|68|69|70|71|72|73|0\n8|8|9|7|7|11|10|9|10|11|0\n14|13|12|10|10|9|9|15|11|11|12|13|14|15|0\n74|72|71|70|67|67|68|66|65|64|63|63|62|61|60|59|59|58|56|56|52|52|53|51|48|47|46|45|45|49|44|43|42|41|40|39|39|55|40|41|42|43|44|50|46|47|48|49|50|51|54|53|54|55|57|57|58|75|60|61|62|73|64|65|66|69|68|69|70|71|72|73|74|75|0\n20|20|21|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0\n28|28|26|25|20|20|21|22|23|18|17|16|16|19|27|17|18|19|24|21|22|23|24|25|26|27|29|29|0\n29|25|24|23|22|22|26|21|19|18|18|17|16|16|28|17|20|19|20|21|27|23|24|25|26|27|28|29|0\n11|10|8|7|7|9|8|9|10|11|0\n22|22|20|19|18|18|15|15|13|13|14|17|14|16|16|17|21|19|20|21|23|23|0\n18|16|16|15|14|12|11|11|13|19|12|13|14|15|17|17|18|19|0\n7|6|5|5|6|7|0\n21|20|19|18|17|16|16|22|23|14|14|15|25|15|24|17|18|19|20|21|22|23|24|25|0\n33|32|32|31|30|29|28|27|25|22|22|23|21|21|20|19|19|35|20|26|24|23|24|25|26|27|28|29|30|31|34|33|34|35|0\n43|43|44|42|41|40|39|38|37|36|35|35|46|33|32|31|30|29|28|27|26|25|25|34|26|27|28|29|30|31|32|33|34|47|36|37|38|39|40|41|42|45|44|45|46|47|0\n74|73|72|71|70|70|69|68|66|66|65|62|62|61|60|57|56|55|54|54|58|53|52|50|49|49|48|46|46|45|39|39|40|41|42|43|44|64|40|41|42|43|44|45|47|47|48|51|50|51|52|53|59|55|56|57|58|59|60|61|63|63|64|65|67|67|68|69|75|71|72|73|74|75|0\n43|38|37|36|35|34|33|33|32|31|31|40|28|28|27|27|26|25|23|23|24|42|24|25|26|30|29|29|30|41|32|39|34|35|36|37|38|39|40|41|42|43|0\n17|16|16|15|12|12|13|11|11|19|14|13|14|15|18|17|18|19|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n64|61|60|57|57|58|56|55|55|54|53|53|52|52|51|49|48|47|46|46|41|41|40|40|43|39|38|37|35|35|34|34|45|36|36|37|38|39|44|42|42|43|44|45|50|47|48|49|50|51|65|63|54|62|56|59|58|59|60|61|62|63|64|65|0\n31|30|28|27|25|25|24|23|22|21|20|18|18|17|17|29|19|19|20|21|22|23|24|26|26|27|28|29|30|31|0\n32|31|29|29|28|26|26|25|24|24|23|22|20|19|18|18|21|19|20|21|22|23|33|25|27|27|28|30|30|31|32|33|0\n33|33|34|32|31|31|36|29|28|27|26|25|23|22|22|21|20|20|30|21|24|23|24|25|26|27|28|29|30|37|32|35|34|35|36|37|0\n57|55|55|52|52|51|49|48|47|47|46|43|43|44|41|39|39|40|38|37|35|33|33|32|31|31|30|30|54|36|32|34|34|35|36|37|38|42|40|41|42|45|44|45|46|50|48|49|50|51|53|53|54|56|56|57|0\n56|55|55|54|52|52|53|51|50|48|48|47|46|45|43|43|42|41|40|38|38|39|35|35|34|33|32|31|31|37|32|33|34|36|36|37|59|39|40|41|42|44|44|45|46|47|49|49|50|51|58|53|54|57|56|57|58|59|0\n28|27|26|24|23|23|22|21|20|20|19|18|16|16|17|17|18|19|29|21|22|25|24|25|26|27|28|29|0\n39|38|36|34|34|33|30|29|29|31|28|26|26|24|23|23|22|21|21|37|22|25|24|25|27|27|28|32|30|31|32|33|35|35|36|37|38|39|0\n16|15|15|14|13|13|12|11|11|19|12|18|14|17|16|17|18|19|0\n38|37|37|36|33|33|34|28|28|27|27|30|26|25|24|23|22|21|21|32|22|23|24|25|26|31|29|29|30|31|32|35|34|35|36|39|38|39|0\n44|42|41|41|40|39|38|38|37|35|35|33|31|30|30|29|28|27|26|25|24|24|34|25|26|27|28|29|32|31|32|33|34|36|36|37|45|39|40|43|42|43|44|45|0\n26|26|24|23|21|21|20|18|18|17|16|15|15|25|16|17|19|19|20|22|22|23|24|25|27|27|0\n16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0\n24|23|22|22|20|19|18|17|16|15|14|14|21|15|16|17|18|19|20|21|25|23|24|25|0\n61|61|60|59|57|56|55|53|52|52|54|51|50|49|47|47|45|44|44|46|42|41|41|39|39|37|36|35|34|33|33|38|34|35|36|37|38|40|40|43|42|43|63|45|46|48|48|49|50|51|58|53|54|55|56|57|58|59|60|62|62|63|0\n26|25|25|24|22|22|20|19|18|17|16|15|15|21|16|17|18|19|20|21|23|23|24|27|26|27|0\n17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0\n25|23|22|21|15|15|16|17|18|19|20|14|14|24|16|17|18|19|20|21|22|23|24|25|0\n53|51|49|48|47|45|44|44|43|43|42|39|38|38|37|37|36|35|34|32|32|31|30|28|28|29|52|29|30|31|33|33|34|35|36|41|40|39|40|41|42|50|46|45|46|47|48|49|50|51|52|53|0\n38|37|36|35|33|33|32|31|30|30|29|28|26|25|24|23|22|21|21|27|22|23|24|25|26|27|28|29|39|31|32|34|34|35|36|37|38|39|0\n16|15|15|17|18|19|13|13|12|12|21|14|14|20|16|17|18|19|20|21|0\n24|24|20|20|21|19|18|16|16|15|14|14|23|15|17|17|18|19|22|21|22|23|25|25|0\n31|27|25|25|24|23|22|22|28|19|19|20|18|17|17|30|18|21|20|21|29|23|24|26|26|27|28|29|30|31|0\n49|49|48|47|44|44|43|43|46|41|40|38|38|37|34|33|32|30|30|31|35|29|28|27|27|42|28|29|36|31|32|33|34|35|36|37|39|39|40|41|42|51|45|45|46|47|48|50|50|51|0\n44|42|42|41|39|39|38|37|36|35|34|34|33|30|29|28|28|27|27|25|24|24|26|25|26|32|31|29|30|31|32|33|45|35|36|37|38|40|40|41|43|43|44|45|0\n14|12|11|10|9|9|13|15|10|11|12|13|14|15|0\n63|62|57|57|56|55|54|52|51|51|50|49|48|47|46|45|45|59|43|43|41|41|40|38|38|37|33|33|34|35|36|61|34|35|36|37|39|39|40|42|42|44|44|60|46|47|48|49|50|53|52|53|54|55|56|58|58|59|60|61|62|63|0\n51|51|49|49|48|47|46|45|45|44|42|42|37|37|38|39|36|35|34|32|32|31|30|29|28|28|41|29|30|31|33|33|34|35|36|40|38|39|40|41|43|43|44|53|46|47|48|50|50|52|52|53|0\n48|46|46|45|43|43|42|41|39|38|38|37|36|36|49|35|32|31|31|33|28|28|29|27|27|51|30|29|30|34|32|33|34|35|50|37|40|39|40|41|42|44|44|45|47|47|48|49|50|51|0\n77|76|76|75|72|71|71|73|70|70|68|64|63|61|61|62|60|59|58|58|66|57|56|54|53|52|51|51|50|49|48|46|45|45|44|43|42|41|41|69|42|43|44|47|46|47|48|49|50|55|52|53|54|55|56|57|67|59|60|65|62|63|64|65|66|67|68|69|79|74|72|73|74|75|78|77|78|79|0\n33|32|31|30|30|29|29|28|26|24|24|23|23|21|20|19|19|22|20|21|22|27|25|25|26|27|28|35|34|31|32|33|34|35|0\n25|23|22|22|21|20|18|17|16|15|14|14|19|15|16|17|18|19|20|21|24|23|24|25|0\n40|39|38|37|36|35|34|33|33|32|31|30|27|27|26|25|24|23|22|22|29|23|24|25|26|28|28|29|30|31|32|41|34|35|36|37|38|39|40|41|0\n40|40|38|37|34|33|31|30|30|28|28|27|26|26|35|24|24|23|22|22|39|23|25|25|36|27|29|29|32|31|32|33|34|35|36|37|38|39|41|41|0\n64|63|62|61|59|59|58|57|56|55|54|53|53|52|48|47|47|46|46|45|44|44|42|41|40|39|38|36|36|35|34|34|43|35|37|37|38|39|40|41|42|43|51|45|50|49|48|49|50|51|52|65|54|55|56|57|58|60|60|61|62|63|64|65|0\n68|67|66|65|64|63|63|69|58|58|56|55|55|54|53|52|51|50|49|49|60|48|46|46|47|45|43|43|42|41|39|39|38|37|37|71|38|40|40|41|42|44|44|45|62|47|48|61|50|51|52|53|54|57|56|57|59|59|60|61|62|70|64|65|66|67|68|69|70|71|0\n60|59|58|57|56|55|55|52|52|50|50|49|47|46|46|45|44|39|38|37|37|40|36|36|42|35|34|33|32|32|54|33|34|35|43|41|38|39|40|41|42|43|44|45|48|47|48|49|51|51|53|53|54|61|56|57|58|59|60|61|0\n40|39|38|38|37|36|34|32|29|29|30|31|28|25|24|24|26|23|22|22|35|23|27|25|26|27|28|33|30|31|32|33|34|35|36|37|41|39|40|41|0\n35|34|34|33|32|30|30|29|29|28|26|26|24|23|22|21|20|20|25|21|22|23|24|25|27|27|28|37|31|31|32|33|36|35|36|37|0\n44|44|41|41|39|38|38|37|36|32|31|30|29|28|27|27|33|34|25|25|24|24|43|26|26|35|28|29|30|31|32|33|34|35|36|37|40|39|40|42|42|43|45|45|0\n44|43|42|40|39|37|36|35|35|31|30|30|29|28|27|27|33|26|25|25|24|24|45|41|26|34|28|29|32|31|32|33|34|38|36|37|38|39|40|41|42|43|44|45|0\n41|38|38|39|40|42|43|37|35|35|34|33|32|31|29|29|28|26|25|25|24|24|45|27|26|27|28|30|30|31|32|33|34|36|36|37|44|39|40|41|42|43|44|45|0\n33|33|32|30|30|29|28|27|26|26|23|22|22|21|20|19|19|25|20|21|24|23|24|25|35|27|28|29|31|31|32|34|34|35|0\n49|48|48|47|46|45|44|43|42|42|40|39|38|36|33|33|34|35|32|29|29|28|27|27|31|41|28|30|30|31|32|37|34|35|36|37|38|39|40|41|51|43|44|45|46|47|50|49|50|51|0\n24|24|22|22|23|21|19|19|18|17|17|15|15|16|16|27|18|20|20|21|26|23|25|25|26|27|0\n19|18|16|15|12|12|13|11|11|17|14|13|14|15|16|17|18|19|0\n22|22|21|21|24|25|19|18|18|16|16|15|15|27|17|17|20|19|20|26|23|23|24|25|26|27|0\n48|47|46|46|45|41|40|38|37|37|36|36|42|34|34|32|31|31|30|28|27|27|26|26|44|29|28|29|30|33|32|33|35|35|43|39|38|39|40|41|42|43|44|45|49|47|48|49|0\n67|66|66|65|64|63|63|61|59|58|58|57|54|54|55|53|52|51|50|49|46|46|47|45|43|43|41|41|40|39|38|36|36|37|62|37|38|39|40|42|42|44|44|45|48|47|48|49|50|51|52|53|56|55|56|57|60|59|60|61|62|69|64|65|68|67|68|69|0\n26|25|23|23|21|20|19|19|18|18|16|15|15|17|16|17|27|22|20|21|22|24|24|25|26|27|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n12|10|10|8|8|9|13|9|11|11|12|13|0\n25|24|24|26|21|20|20|19|17|17|16|15|15|23|16|18|18|19|22|21|22|23|27|25|26|27|0\n28|27|23|22|22|24|25|21|21|19|18|17|16|16|20|17|18|19|20|29|26|23|24|25|26|27|28|29|0\n22|22|19|17|16|16|18|15|14|13|13|21|14|15|20|17|18|19|20|21|23|23|0\n20|19|19|18|18|22|23|16|16|15|14|14|25|15|17|17|24|21|20|21|22|23|24|25|0\n16|14|13|12|11|10|10|15|17|11|12|13|14|15|16|17|0\n58|57|56|56|54|53|52|50|48|48|49|47|45|43|43|42|41|41|40|38|37|37|36|34|33|33|32|31|31|55|32|35|34|35|36|39|38|39|40|46|42|44|44|45|46|47|51|49|50|51|52|53|54|55|59|57|58|59|0\n61|61|60|59|56|55|53|51|51|50|49|49|48|47|47|57|46|45|43|43|41|40|39|38|36|36|37|35|34|33|33|63|34|35|42|37|38|39|40|41|42|44|44|45|46|58|48|54|50|52|52|53|54|55|56|57|58|59|60|62|62|63|0\n35|32|29|29|30|31|28|28|25|25|23|22|21|20|20|19|19|27|24|21|22|23|24|26|26|27|34|33|30|31|32|33|34|35|0\n29|29|28|27|26|26|24|23|22|21|20|19|18|17|17|25|18|19|20|21|22|23|24|25|31|27|28|30|30|31|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n20|19|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|21|20|21|0\n45|45|44|43|43|47|40|39|39|41|38|37|37|49|35|35|33|32|32|31|29|29|28|27|27|51|28|30|30|31|34|33|34|36|36|50|38|42|40|41|42|48|44|46|46|47|48|49|50|51|0\n39|38|38|37|36|36|34|32|32|30|30|28|27|27|29|25|23|23|22|22|26|24|24|25|26|35|28|29|31|31|33|33|34|35|41|37|40|39|40|41|0\n37|37|35|34|34|36|31|31|30|28|27|25|25|26|24|23|22|21|21|33|22|23|24|29|26|27|28|29|30|32|32|33|39|35|36|38|38|39|0\n60|59|58|57|54|53|53|55|52|51|51|50|49|47|46|43|42|41|40|40|44|38|38|37|36|35|34|32|32|33|48|33|34|35|36|37|39|39|45|41|42|43|44|45|46|47|48|49|50|61|52|56|54|55|56|57|58|59|60|61|0\n62|61|60|57|57|58|56|55|54|52|51|50|49|49|48|46|46|47|45|44|42|40|40|39|38|37|35|34|34|33|33|43|36|35|36|37|38|39|41|41|42|43|44|45|63|47|48|53|50|51|52|53|54|55|56|59|58|59|60|61|62|63|0\n56|56|55|54|53|52|51|50|50|49|48|48|47|46|45|41|41|42|40|37|36|35|34|33|33|38|32|31|31|44|32|39|34|35|36|37|38|39|40|43|42|43|44|45|46|47|59|49|58|51|52|53|54|55|57|57|58|59|0\n80|80|81|82|83|73|73|71|71|72|75|76|68|68|67|66|65|65|64|63|61|60|60|59|58|56|56|55|55|78|53|52|51|50|50|48|47|47|46|45|44|44|85|45|46|49|48|49|54|51|52|53|54|79|57|57|58|59|62|61|62|63|64|70|66|67|69|69|70|77|72|74|74|75|76|77|78|79|84|81|82|83|84|85|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n33|33|34|35|31|31|30|29|28|28|27|26|24|23|22|21|20|20|25|21|22|23|24|25|26|27|37|29|30|32|32|36|34|35|36|37|0\n21|21|20|17|17|18|15|14|14|13|13|23|16|15|16|19|18|19|20|22|22|23|0\n3|3|0\n7|5|5|6|6|7|0\n9|9|8|7|7|11|8|10|10|11|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n25|24|24|23|23|21|19|16|16|17|18|15|15|22|20|17|18|19|20|21|22|27|26|25|26|27|0\n32|32|30|28|27|25|25|24|23|23|22|19|19|20|18|18|31|21|20|21|22|29|24|26|26|27|28|29|30|31|33|33|0\n29|27|26|25|23|23|21|21|20|18|18|17|16|16|28|17|19|19|20|22|22|24|24|25|26|27|28|29|0\n34|33|32|30|30|29|28|27|27|26|25|23|22|21|19|19|20|24|20|21|22|23|24|25|26|35|28|29|31|31|32|33|34|35|0\n22|21|21|19|18|17|16|15|13|13|14|20|14|15|16|17|18|19|20|23|22|23|0\n59|57|56|56|58|60|61|55|53|53|52|51|50|49|48|47|46|46|63|45|43|42|42|41|40|38|37|36|36|35|34|34|65|35|39|37|38|39|40|41|44|43|44|45|64|47|48|49|50|51|52|54|54|55|62|57|58|59|60|61|62|63|64|65|0\n52|51|50|46|45|45|44|41|41|42|40|38|38|37|37|48|36|35|35|34|32|32|29|28|28|30|31|29|30|31|33|33|34|53|36|49|39|39|40|43|42|43|44|47|46|47|48|49|50|51|52|53|0\n38|37|36|35|35|33|31|30|30|29|27|27|26|23|22|22|24|21|21|34|25|23|24|25|26|28|28|29|32|31|32|33|34|39|36|37|38|39|0\n55|55|54|52|52|51|50|50|49|48|47|46|45|45|58|59|40|39|38|37|36|35|35|41|34|33|33|32|32|44|61|43|34|42|36|37|38|39|40|41|42|43|44|60|46|47|48|49|57|51|53|53|54|56|56|57|58|59|60|61|0\n45|45|44|43|40|40|41|39|38|37|36|35|33|33|32|32|47|30|30|28|28|27|26|26|49|27|29|29|31|31|48|34|34|35|36|37|38|39|42|41|42|43|44|46|46|47|48|49|0\n48|48|47|44|44|43|41|40|40|39|38|38|37|37|50|51|35|33|33|32|32|31|29|29|28|28|53|30|30|31|36|34|34|35|36|52|46|39|42|41|42|43|45|45|46|47|49|49|50|51|52|53|0\n67|66|62|61|60|59|58|57|56|56|63|54|52|51|51|53|50|49|48|47|45|44|43|42|42|41|39|39|38|37|36|35|35|65|36|37|38|40|40|41|46|43|44|45|46|47|48|49|50|55|52|53|54|55|64|57|58|59|60|61|62|63|64|65|66|67|0\n63|63|54|53|53|55|56|51|51|50|49|49|58|48|47|46|46|60|61|44|43|42|41|41|40|39|38|36|36|37|35|34|34|35|65|37|38|39|40|45|42|43|44|45|62|47|48|59|50|52|52|57|54|55|56|57|58|59|60|61|62|64|64|65|0\n25|24|22|22|19|18|17|17|16|15|14|14|21|15|16|20|18|19|20|21|23|23|24|25|0\n27|26|26|28|24|22|22|21|20|18|18|16|16|17|25|17|19|19|20|21|23|23|24|25|29|27|28|29|0\n40|40|38|37|36|34|34|33|25|25|26|27|28|29|24|24|23|22|22|32|39|23|31|30|26|27|28|29|30|31|32|33|35|35|36|37|38|39|41|41|0\n60|58|58|56|55|53|53|54|52|50|49|49|48|48|47|46|44|43|41|40|40|39|37|37|36|35|34|33|32|32|45|33|34|35|36|38|38|39|42|41|42|43|44|45|46|47|61|51|50|51|52|57|54|55|56|57|59|59|60|61|0\n50|50|48|46|45|44|44|43|41|40|37|37|38|36|35|33|31|31|32|30|29|29|28|27|27|49|28|42|30|34|32|33|34|35|36|39|38|39|40|41|42|43|47|45|46|47|48|49|51|51|0\n25|23|21|21|20|19|17|17|16|15|14|14|24|15|16|18|18|19|20|22|22|23|24|25|0\n22|22|20|15|14|14|16|17|13|13|19|21|18|15|16|17|18|19|20|21|23|23|0\n31|30|30|29|28|28|26|24|23|22|22|21|20|19|18|18|27|19|20|21|25|23|24|25|26|27|33|29|32|31|32|33|0\n31|29|27|26|26|25|23|23|22|21|20|19|18|17|17|30|18|19|20|21|22|24|24|25|28|27|28|29|30|31|0\n53|53|52|52|50|49|48|45|43|43|42|42|46|41|40|37|36|35|35|38|33|33|32|31|30|29|29|51|30|31|32|34|34|39|36|37|38|39|40|41|47|44|44|45|46|47|48|49|50|51|55|54|54|55|0\n54|53|52|51|50|45|45|46|44|44|48|43|43|42|41|39|37|36|36|34|34|35|33|31|31|30|29|29|30|32|32|33|40|35|38|37|38|39|40|41|42|55|49|47|46|47|48|49|50|51|52|53|54|55|0\n19|18|18|20|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n62|60|59|59|58|57|56|55|54|54|53|52|45|44|44|46|42|42|41|40|39|39|48|49|38|37|35|35|34|33|33|51|34|36|36|37|38|50|40|41|43|43|47|45|46|47|48|49|50|51|52|53|63|55|56|57|58|61|60|61|62|63|0\n41|39|38|36|36|35|34|34|33|31|29|29|28|27|26|25|24|23|23|22|22|32|24|25|26|27|28|30|30|31|32|33|40|35|37|37|38|39|40|41|0\n34|33|32|30|29|28|27|27|26|26|25|22|21|21|20|19|19|24|20|23|22|23|24|25|35|31|28|29|30|31|32|33|34|35|0\n29|28|26|26|25|25|30|31|24|23|22|21|19|19|18|18|33|20|20|21|22|23|24|32|27|27|28|29|30|31|32|33|0\n49|47|47|46|43|43|44|42|40|40|39|38|37|36|36|50|51|35|33|33|31|31|30|29|28|28|53|29|30|32|32|34|34|35|52|37|38|39|41|41|42|45|44|45|46|48|48|49|50|51|52|53|0\n10|7|7|8|9|11|8|9|10|11|0\n20|20|17|16|16|15|14|13|12|12|19|13|14|15|18|17|18|19|21|21|0\n15|12|12|11|9|9|10|14|10|11|13|13|14|15|0\n26|25|24|23|22|22|21|19|19|17|16|15|15|18|16|17|18|20|20|21|27|23|24|25|26|27|0\n45|44|44|43|42|42|39|39|37|36|36|35|33|33|32|31|29|28|28|27|26|25|25|41|26|27|30|29|30|31|32|34|34|35|38|37|38|40|40|41|47|43|46|45|46|47|0\n58|57|57|56|55|53|51|46|45|45|47|44|44|49|43|42|42|41|38|38|39|35|35|34|34|33|32|31|31|54|32|33|37|36|36|37|40|39|40|41|52|43|50|48|46|47|48|49|50|51|52|53|54|55|56|59|58|59|0\n39|37|36|35|34|30|30|28|28|27|26|26|32|25|24|23|22|21|21|38|22|23|24|25|33|27|29|29|31|31|32|33|34|35|36|37|38|39|0\n19|17|14|14|15|12|12|11|11|18|13|13|16|15|16|17|18|19|0\n14|11|11|10|9|9|13|15|10|12|12|13|14|15|0\n11|10|9|7|7|8|8|9|10|11|0\n16|16|17|15|15|19|13|13|12|12|21|14|14|20|18|17|18|19|20|21|0\n33|32|31|29|26|26|25|24|23|23|22|21|20|19|18|18|30|19|20|21|22|28|24|25|27|27|28|29|30|31|32|33|0\n17|17|18|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0\n11|10|8|7|7|9|8|9|10|11|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n46|46|44|43|43|42|40|40|39|39|48|49|38|37|36|35|34|33|32|31|30|28|28|27|27|51|29|29|30|31|32|33|34|35|36|37|38|50|41|41|42|45|44|45|47|47|48|49|50|51|0\n35|33|33|34|32|31|30|28|27|26|26|25|23|23|22|21|21|20|20|37|22|24|24|25|29|27|28|29|30|31|32|36|34|35|36|37|0\n53|52|52|51|50|49|48|48|55|45|44|42|42|43|46|39|38|37|36|36|40|35|34|32|31|30|30|33|57|31|32|33|34|35|41|37|38|39|40|41|47|43|44|45|46|47|56|49|50|51|54|53|54|55|56|57|0\n28|28|26|25|24|22|22|21|19|18|18|17|16|16|27|17|20|19|20|21|23|23|24|25|26|27|29|29|0\n34|32|31|31|30|27|26|25|25|28|23|23|22|20|20|19|19|35|21|21|22|24|24|29|26|27|28|29|30|33|32|33|34|35|0\n25|23|21|20|19|19|18|16|16|14|14|15|24|15|17|17|18|22|20|21|22|23|24|25|0\n27|26|22|21|20|20|23|19|15|15|16|17|18|25|16|17|18|19|24|21|22|23|24|25|26|27|0\n25|24|22|21|20|19|17|17|16|15|14|14|23|15|16|18|18|19|20|21|22|23|24|25|0\n64|64|61|56|56|57|55|54|51|51|52|50|49|48|48|59|47|46|45|44|44|62|42|41|40|37|37|36|35|35|34|34|43|39|36|38|38|39|40|41|42|43|63|45|46|47|60|49|50|53|52|53|54|55|58|57|58|59|60|61|62|63|65|65|0\n54|53|52|51|50|49|48|48|45|44|42|41|41|43|46|38|37|36|36|35|34|33|31|31|30|29|29|40|30|32|32|33|34|35|39|37|38|39|40|47|42|43|44|45|46|47|55|49|50|51|52|53|54|55|0\n70|70|71|69|68|67|66|66|73|65|62|62|61|60|58|58|57|56|56|55|54|53|51|49|47|47|46|44|44|45|50|43|41|41|40|39|39|75|40|42|42|43|52|45|46|48|48|49|50|51|52|53|54|55|64|57|59|59|60|61|63|63|64|65|74|67|68|69|72|71|72|73|74|75|0\n43|41|40|37|36|35|35|34|33|33|32|30|30|29|28|27|26|24|23|23|25|42|24|25|26|27|28|29|31|31|32|39|34|38|36|37|38|39|40|41|42|43|0\n63|63|62|60|59|58|56|56|55|52|52|53|51|51|61|44|43|43|42|42|41|40|39|39|47|48|37|36|36|35|34|34|50|35|38|37|38|49|40|41|46|45|44|45|46|47|48|49|50|65|54|53|54|55|57|57|58|59|60|61|62|64|64|65|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n67|66|66|65|64|64|63|62|62|70|71|61|58|58|57|56|56|55|53|52|51|51|50|49|48|47|46|45|45|73|44|41|40|40|42|39|39|75|43|41|42|43|44|74|46|47|48|49|50|54|52|53|54|55|60|57|59|59|60|61|72|63|69|65|68|67|68|69|70|71|72|73|74|75|0\n56|56|55|55|54|52|51|51|53|59|50|49|47|47|46|43|43|42|41|41|40|38|38|37|36|34|34|33|32|32|61|33|35|35|36|37|39|39|40|45|42|44|44|45|46|48|48|49|50|60|52|53|54|58|57|57|58|59|60|61|0\n27|24|24|23|22|20|20|19|16|16|17|15|15|26|18|17|18|19|21|21|22|23|25|25|26|27|0\n15|14|14|13|12|11|10|10|17|11|12|13|16|15|16|17|0\n72|68|67|67|66|66|70|64|63|63|62|62|61|60|58|57|56|52|51|50|50|53|54|49|47|47|45|45|44|43|41|41|40|39|38|38|59|39|40|42|42|43|44|46|46|48|48|49|55|51|52|53|54|55|56|57|58|59|60|61|73|65|64|65|71|69|68|69|70|71|72|73|0\n32|30|30|31|29|27|25|24|24|23|21|20|20|19|18|18|28|19|22|21|22|23|26|25|26|27|28|29|33|31|32|33|0\n26|25|24|23|22|22|21|20|18|16|16|15|15|19|17|17|18|19|20|21|27|23|24|25|26|27|0\n23|22|21|20|20|19|18|16|16|15|14|14|25|15|17|17|18|19|24|21|22|23|24|25|0\n13|13|14|10|10|9|9|12|11|11|12|15|14|15|0\n19|17|14|13|13|15|12|11|11|18|12|16|14|15|16|17|18|19|0\n24|23|21|21|22|19|18|16|16|15|14|14|20|15|17|17|18|19|20|25|22|23|24|25|0\n35|34|31|31|32|29|27|27|26|22|21|21|23|24|20|19|19|30|20|25|22|23|24|25|26|28|28|29|30|33|32|33|34|35|0\n26|25|23|23|22|21|21|20|18|18|16|15|15|17|16|17|19|19|20|27|22|24|24|25|26|27|0\n50|50|45|45|44|43|41|41|42|47|40|39|38|37|36|35|34|32|31|30|30|28|28|27|27|49|29|29|33|31|32|33|34|35|36|37|38|39|40|48|42|43|44|46|46|47|48|49|51|51|0\n33|30|29|29|28|27|26|24|24|25|22|21|20|19|18|18|23|19|20|21|22|23|32|25|26|27|28|31|30|31|32|33|0\n7|6|5|5|6|7|0\n9|8|6|6|7|7|8|9|0\n70|70|69|69|72|67|67|65|65|64|63|63|74|61|61|60|59|58|57|56|55|53|53|54|76|77|51|50|50|48|48|47|45|44|43|43|42|41|41|79|42|46|44|45|46|47|49|49|52|51|52|78|54|55|56|57|58|59|60|62|62|75|64|66|66|68|68|73|71|71|72|73|74|75|76|77|78|79|0\n24|24|23|22|22|26|19|19|18|17|16|15|15|21|16|17|18|20|20|21|27|23|25|25|26|27|0\n48|48|44|43|41|40|40|39|38|34|34|33|32|32|31|31|37|45|29|28|28|27|26|26|47|27|30|29|30|46|36|33|35|35|36|37|38|39|42|41|42|43|44|45|46|47|49|49|0\n15|11|10|9|9|12|13|14|10|11|12|13|14|15|0\n68|67|67|63|62|61|61|64|60|58|56|55|55|53|52|51|49|48|48|47|47|46|44|44|45|43|42|41|40|39|38|37|36|36|66|37|38|39|40|41|42|43|59|45|46|54|50|49|50|51|52|53|54|57|56|57|58|59|60|65|62|63|64|65|66|69|68|69|0\n15|14|12|11|11|9|9|10|10|13|12|13|14|15|0\n5|4|4|5|0\n32|32|31|28|28|27|25|24|24|23|20|20|21|19|18|18|30|19|22|21|22|23|26|25|26|27|29|29|30|31|33|33|0\n22|21|21|20|17|17|16|16|14|13|13|15|14|15|19|18|18|19|20|23|22|23|0\n34|34|32|31|29|28|27|26|26|25|23|23|22|21|20|19|19|33|20|21|22|24|24|25|30|27|28|29|30|31|32|33|35|35|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n74|73|72|72|69|69|68|66|65|65|64|60|59|59|61|62|58|55|53|52|52|51|50|49|49|56|48|46|45|45|42|41|41|43|40|39|39|71|40|44|42|43|44|47|46|47|48|57|50|51|54|53|54|55|56|57|58|63|60|61|62|63|64|67|66|67|68|70|70|71|75|73|74|75|0\n54|53|51|50|50|49|48|47|46|46|45|44|42|40|40|39|38|35|35|34|31|31|30|30|33|29|29|43|37|32|32|33|34|36|36|37|38|39|41|41|42|43|44|45|55|47|48|49|52|51|52|53|54|55|0\n24|23|23|20|19|19|18|16|16|15|14|14|22|15|17|17|18|21|20|21|22|25|24|25|0\n27|25|25|23|22|21|20|18|18|16|16|15|15|24|17|17|19|19|20|21|22|23|24|26|26|27|0\n55|53|51|50|50|49|46|44|44|43|39|39|40|41|38|38|47|36|36|35|34|33|32|31|30|29|29|54|30|31|32|33|34|35|37|37|48|42|40|41|42|43|45|45|46|47|48|49|52|51|52|53|54|55|0\n29|27|26|26|23|22|22|21|20|19|18|17|16|16|25|17|18|19|20|21|24|23|24|25|28|27|28|29|0\n17|17|16|14|13|13|12|11|11|19|12|15|14|15|16|18|18|19|0\n59|57|57|56|54|53|53|55|52|51|50|49|48|48|61|45|44|43|42|41|40|39|39|38|37|36|36|35|33|33|34|63|34|35|47|37|38|46|40|41|42|43|44|45|46|47|62|49|50|51|52|60|54|55|56|58|58|59|60|61|62|63|0\n35|34|30|30|29|29|28|27|27|25|24|23|21|21|20|19|19|26|20|22|22|23|24|25|26|33|28|32|31|31|32|33|34|35|0\n38|37|36|34|34|33|33|32|30|29|29|26|25|24|24|23|22|21|21|28|22|23|27|25|26|27|28|31|30|31|32|39|35|35|36|37|38|39|0\n12|11|10|8|8|9|13|9|10|11|12|13|0\n77|76|76|78|75|74|73|72|71|70|69|69|80|64|64|63|61|60|60|59|59|66|57|57|56|53|53|51|51|50|49|49|48|47|46|45|44|43|42|42|68|43|44|45|46|47|48|55|50|52|52|54|54|55|56|58|58|67|62|61|62|63|65|65|66|67|68|81|70|71|72|73|74|75|79|77|78|79|80|81|0\n35|32|31|30|29|27|27|28|26|25|24|24|22|21|20|19|19|23|20|21|22|23|34|25|26|33|28|29|30|31|32|33|34|35|0\n51|51|50|49|48|46|46|47|45|44|43|43|54|55|41|41|40|39|37|37|34|34|35|32|32|31|30|30|57|31|33|33|36|35|36|38|38|39|40|42|42|56|44|45|53|47|48|49|50|52|52|53|54|55|56|57|0\n31|29|27|26|26|25|24|22|22|21|20|18|18|17|17|30|19|19|20|21|23|23|24|25|28|27|28|29|30|31|0\n36|35|35|33|32|29|28|27|27|30|25|24|24|23|22|21|20|20|34|21|22|23|26|25|26|31|28|29|30|31|32|33|34|37|36|37|0\n15|13|13|12|10|10|9|9|11|11|12|14|14|15|0\n21|21|20|19|18|18|16|14|14|13|13|17|15|15|16|17|23|19|20|22|22|23|0\n35|31|31|32|30|28|28|25|25|26|24|23|22|21|20|19|19|34|20|21|22|23|24|27|26|27|29|29|30|33|32|33|34|35|0\n28|27|26|26|25|23|23|24|22|21|20|17|17|18|19|31|18|19|20|21|22|30|24|25|29|27|28|29|30|31|0\n42|41|40|38|37|37|36|34|33|33|32|31|30|30|28|26|25|24|24|23|23|29|27|25|26|27|28|29|43|31|32|35|34|35|36|39|38|39|40|41|42|43|0\n54|53|52|51|50|49|48|45|44|44|43|42|42|47|41|40|37|36|34|33|33|35|32|30|30|29|29|39|31|31|32|38|34|35|36|37|38|39|40|41|55|43|46|45|46|47|48|49|50|51|52|53|54|55|0\n20|20|17|17|16|14|14|13|12|12|19|13|15|15|16|18|18|19|21|21|0\n18|17|17|15|15|13|12|11|11|14|12|13|14|16|16|19|18|19|0\n29|28|26|26|25|22|21|20|19|19|23|17|17|16|16|18|18|24|20|21|22|23|24|25|27|27|28|29|0\n46|46|45|44|44|43|37|36|36|38|35|34|34|40|41|33|32|31|31|30|29|26|26|27|28|27|28|29|30|49|32|33|42|35|39|37|38|39|40|41|42|43|48|45|47|47|48|49|0\n37|36|36|35|33|32|32|31|31|29|26|25|25|27|24|22|22|21|21|30|23|23|24|28|26|27|28|29|30|39|34|33|34|35|38|37|38|39|0\n63|62|61|60|59|59|58|56|56|55|55|54|52|52|50|49|48|46|46|43|43|42|41|40|40|39|37|36|35|34|34|38|51|35|36|37|38|39|45|41|42|44|44|45|47|47|48|49|50|51|53|53|54|65|57|57|58|64|60|61|62|63|64|65|0\n27|26|24|22|21|21|20|19|17|16|16|15|15|25|18|17|18|19|20|23|22|23|24|25|26|27|0\n42|41|41|40|38|37|36|35|35|33|32|31|29|29|28|27|26|25|24|23|23|34|24|25|26|27|28|30|30|31|32|33|34|39|36|37|38|39|40|43|42|43|0\n23|21|19|19|18|17|16|15|14|13|13|22|14|15|16|17|18|20|20|21|22|23|0\n35|33|31|30|30|29|28|27|25|25|24|22|21|21|20|19|19|34|20|23|22|23|24|26|26|27|28|29|32|31|32|33|34|35|0\n56|55|54|53|52|51|50|47|46|46|48|45|44|44|41|41|40|39|36|36|37|35|34|32|31|31|30|30|43|33|32|33|34|35|38|37|38|39|40|42|42|43|57|45|49|47|48|49|50|51|52|53|54|55|56|57|0\n24|23|22|21|21|20|18|18|16|15|14|14|17|15|16|17|19|19|20|25|22|23|24|25|0\n48|48|46|44|44|42|41|41|40|38|38|36|34|34|35|33|32|30|30|29|28|27|26|26|47|27|28|29|31|31|32|33|37|35|36|37|39|39|40|43|42|43|45|45|46|47|49|49|0\n19|18|16|15|15|12|12|11|11|14|13|13|14|17|16|17|18|19|0\n51|49|49|48|48|47|45|45|46|40|40|39|39|42|38|37|34|33|33|35|32|29|29|30|28|28|44|31|30|31|32|36|34|35|36|37|38|43|41|41|42|43|44|53|46|47|52|50|50|51|52|53|0\n20|20|21|22|23|24|25|19|18|16|15|15|17|27|16|17|18|19|26|21|22|23|24|25|26|27|0\n42|42|41|35|35|33|33|32|32|37|38|31|29|28|27|27|26|24|23|23|25|40|24|25|26|30|28|29|30|31|39|34|34|36|36|37|38|39|40|41|43|43|0\n28|27|26|25|24|23|23|20|19|19|18|17|16|16|22|17|18|21|20|21|22|29|24|25|26|27|28|29|0\n44|43|43|45|42|41|40|38|38|37|36|35|35|34|33|29|29|30|28|26|26|25|25|32|27|27|28|31|30|31|32|33|34|47|36|37|39|39|40|41|42|46|44|45|46|47|0\n54|52|52|51|48|47|45|45|46|49|44|42|41|41|40|38|36|36|37|35|33|32|32|31|30|29|29|55|30|31|34|33|34|35|39|37|38|39|40|43|42|43|44|50|46|47|48|49|50|51|53|53|54|55|0\n25|24|24|23|22|22|21|19|17|16|16|15|15|20|18|17|18|19|20|21|27|23|26|25|26|27|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n48|47|46|46|45|43|43|41|40|39|37|36|36|35|33|32|32|31|30|28|28|27|26|26|42|27|29|29|30|31|34|33|34|35|38|37|38|39|40|41|42|44|44|45|49|47|48|49|0\n12|12|10|8|8|9|11|9|10|11|13|13|0\n15|15|14|14|12|12|11|10|10|11|13|13|17|16|16|17|0\n97|96|94|93|93|92|91|90|88|87|86|86|85|82|82|83|80|79|77|76|76|78|75|74|72|72|71|70|70|98|99|69|68|67|66|65|63|62|62|61|60|59|58|57|56|54|53|53|52|52|101|55|54|55|56|57|58|59|60|61|64|63|64|65|66|67|68|69|100|71|73|73|74|75|81|77|78|79|80|81|84|83|84|85|89|87|88|89|90|91|92|95|94|95|96|97|98|99|100|101|0\n42|40|40|41|37|34|34|35|33|33|32|30|29|29|27|27|26|25|24|23|23|39|24|25|26|28|28|31|30|31|32|38|36|35|36|37|38|39|43|41|42|43|0\n61|57|56|55|54|53|53|52|50|48|48|47|47|51|43|42|42|41|40|39|39|38|37|36|35|35|34|33|32|32|60|33|34|46|36|37|38|45|40|41|44|43|44|45|46|59|49|49|50|51|52|58|54|55|56|57|58|59|60|61|0\n31|29|28|27|26|25|24|23|21|20|20|19|17|17|18|30|18|19|22|21|22|23|24|25|26|27|28|29|30|31|0\n53|51|51|49|47|47|46|46|45|44|43|43|54|55|42|41|39|39|38|37|36|35|34|33|32|31|30|30|57|31|32|33|34|35|36|37|38|40|40|41|42|56|44|45|50|48|48|49|50|52|52|53|54|55|56|57|0\n32|27|27|28|29|26|26|31|33|24|23|23|22|21|19|19|20|35|20|21|22|25|24|25|34|30|28|29|30|31|32|33|34|35|0\n19|16|16|15|14|13|12|11|11|18|12|13|14|15|17|17|18|19|0\n28|28|26|25|22|22|21|19|19|20|18|17|16|16|27|17|18|24|20|21|23|23|24|25|26|27|29|29|0\n28|28|26|25|22|21|21|23|20|19|18|17|16|16|27|17|18|19|20|24|22|23|24|25|26|27|29|29|0\n18|16|16|17|14|13|12|11|11|15|12|13|14|15|19|17|18|19|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n20|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0\n43|43|42|41|39|39|38|33|32|32|34|31|31|36|30|30|29|28|25|25|24|24|27|26|26|27|28|29|45|37|35|33|34|35|36|37|38|40|40|41|42|44|44|45|0\n43|40|40|35|35|34|34|37|38|33|32|31|30|29|28|27|26|25|24|23|23|42|24|25|26|27|28|29|30|31|32|33|39|36|36|37|38|39|41|41|42|43|0\n26|25|25|24|22|22|19|19|17|17|16|15|15|21|16|18|18|20|20|21|23|23|24|27|26|27|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n37|37|38|36|33|33|34|32|32|40|30|28|27|26|25|25|24|22|22|23|31|23|24|29|26|27|28|29|30|31|41|35|34|35|36|39|38|39|40|41|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n18|17|17|19|15|14|13|13|12|12|21|16|14|15|16|20|18|19|20|21|0\n6|6|5|5|7|7|0\n22|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|21|22|23|0\n34|33|32|31|31|35|29|28|27|27|26|24|23|23|22|21|20|20|37|21|22|25|24|25|26|30|28|29|30|36|32|33|34|35|36|37|0\n16|15|14|14|12|10|10|11|13|11|12|13|17|15|16|17|0\n16|14|13|12|11|11|10|10|17|15|12|13|14|15|16|17|0\n47|47|46|42|42|41|40|40|44|38|37|37|36|35|34|33|31|30|30|29|27|27|26|26|49|28|28|29|32|31|32|33|34|35|36|39|38|39|45|41|43|43|44|45|46|48|48|49|0\n43|42|42|41|38|38|39|35|34|34|36|33|31|30|29|29|27|27|26|25|24|24|45|25|26|28|28|32|30|31|32|33|37|35|36|37|40|39|40|41|44|43|44|45|0\n24|23|22|21|21|20|19|16|16|15|14|14|18|15|17|17|18|19|20|25|22|23|24|25|0\n20|19|18|18|17|16|13|13|12|12|15|14|14|15|16|17|21|19|20|21|0\n72|71|69|69|67|66|65|63|63|64|62|61|60|60|59|56|56|57|55|53|51|50|49|49|48|47|46|46|45|43|41|41|39|38|38|40|44|39|40|42|42|43|44|45|54|47|48|52|50|51|52|53|54|55|58|57|58|59|73|61|62|68|64|65|66|67|68|70|70|71|72|73|0\n49|49|48|47|44|43|43|42|40|39|38|38|37|35|35|36|46|33|30|30|31|29|28|27|27|34|28|29|32|31|32|33|34|51|36|37|41|39|40|41|42|45|44|45|46|47|48|50|50|51|0\n9|9|10|8|7|7|8|11|10|11|0\n8|8|6|6|7|7|9|9|0\n38|38|37|36|36|40|41|34|34|32|32|30|30|29|27|27|25|24|23|23|26|43|24|25|26|28|28|29|31|31|33|33|35|35|42|37|39|39|40|41|42|43|0\n39|38|38|40|37|35|34|33|32|30|29|27|27|28|26|23|22|22|24|25|36|23|24|25|26|31|28|29|30|31|32|33|34|35|36|37|41|39|40|41|0\n23|22|20|18|18|16|16|15|13|13|14|21|14|15|17|17|19|19|20|21|22|23|0\n36|36|37|38|39|33|32|31|31|30|28|28|29|27|26|25|24|23|22|22|41|23|24|25|26|27|35|29|30|34|32|33|34|35|40|37|38|39|40|41|0\n35|32|32|30|30|29|28|27|26|25|24|23|21|20|20|19|19|34|22|21|22|23|24|25|26|27|28|29|31|31|33|33|34|35|0\n42|42|35|34|33|32|31|30|30|36|29|28|27|27|38|39|26|25|24|23|23|41|24|25|26|40|28|29|37|31|32|33|34|35|36|37|38|39|40|41|43|43|0\n14|13|10|10|11|9|9|15|12|11|12|13|14|15|0\n23|20|20|17|17|16|16|15|14|13|13|22|14|15|19|18|18|19|21|21|22|23|0\n30|28|28|29|22|22|21|20|20|24|25|19|18|17|17|27|18|19|26|21|23|23|24|25|26|27|31|29|30|31|0\n59|59|60|61|57|55|54|53|52|51|50|49|49|48|47|47|46|45|43|42|42|39|38|37|36|36|40|35|34|33|33|63|34|35|41|37|38|39|40|41|44|43|44|45|46|58|48|56|50|51|52|53|54|55|56|57|58|62|60|61|62|63|0\n34|33|32|32|30|29|28|26|26|22|22|23|24|21|19|19|20|31|20|21|25|23|24|25|27|27|28|29|30|31|35|33|34|35|0\n58|57|56|55|54|54|53|52|49|47|46|46|45|42|42|41|41|40|39|38|36|36|37|35|34|33|32|31|31|51|32|33|34|35|50|37|38|39|40|44|43|43|44|45|48|47|48|49|50|51|52|53|59|55|56|57|58|59|0\n11|9|9|10|8|8|13|12|10|11|12|13|0\n65|63|63|62|59|58|57|57|60|56|55|54|54|53|52|51|50|49|48|47|46|45|44|44|43|41|40|39|38|37|36|35|35|42|36|37|38|39|40|41|42|43|67|45|46|47|48|49|50|51|52|53|66|55|56|61|58|59|60|61|62|64|64|65|66|67|0\n33|32|31|28|28|27|26|24|24|23|22|21|20|19|18|18|30|19|20|21|22|23|25|25|26|27|29|29|30|31|32|33|0\n45|43|41|41|40|40|39|38|37|37|46|47|36|35|33|32|32|31|29|29|28|27|26|26|49|27|28|30|30|31|34|33|34|35|36|48|38|39|44|42|42|43|44|45|46|47|48|49|0\n73|72|72|74|69|66|66|65|63|63|61|61|62|60|58|56|56|55|54|53|52|52|59|51|50|48|48|46|46|45|43|43|42|41|40|39|39|71|40|41|42|44|44|45|47|47|49|49|50|51|70|53|54|55|57|57|58|59|60|68|62|64|64|65|67|67|68|69|70|71|75|73|74|75|0\n13|12|11|10|9|8|8|9|10|11|12|13|0\n32|31|28|26|24|24|25|27|29|21|20|20|22|19|18|18|33|19|23|21|22|23|30|25|26|27|28|29|30|31|32|33|0\n38|36|35|33|33|32|32|31|30|29|28|28|26|26|24|23|22|21|21|25|22|23|24|25|27|27|39|29|30|31|37|34|34|35|36|37|38|39|0\n19|19|18|17|16|16|14|13|12|12|15|13|14|15|21|17|18|20|20|21|0\n44|43|42|41|41|39|35|34|34|33|31|31|32|37|30|29|25|25|26|27|24|24|40|28|26|27|28|29|30|38|32|33|36|35|36|37|38|39|40|45|42|43|44|45|0\n51|51|49|49|48|47|47|46|44|44|42|40|40|37|37|35|35|34|32|32|31|31|30|28|28|29|43|29|30|39|33|33|34|36|36|38|38|39|41|41|42|43|45|45|46|53|48|50|50|52|52|53|0\n23|23|22|21|18|17|16|16|19|20|15|14|14|15|25|17|18|19|20|21|22|24|24|25|0\n22|21|19|19|18|18|16|15|14|13|13|17|14|15|16|17|23|20|20|21|22|23|0\n52|51|50|49|47|45|44|44|43|42|41|40|40|39|39|36|36|34|33|32|31|31|30|29|28|28|38|29|30|35|32|33|34|35|37|37|38|53|48|41|42|43|46|45|46|47|48|49|50|51|52|53|0\n17|16|15|13|11|10|10|12|14|11|12|13|14|15|16|17|0\n21|21|22|19|18|17|14|14|15|13|13|20|16|15|16|17|18|19|20|23|22|23|0\n40|39|37|37|36|36|35|33|33|31|30|28|28|27|26|25|24|23|22|22|32|23|24|25|26|27|29|29|30|31|32|34|34|35|41|38|38|39|40|41|0\n18|18|17|16|14|14|15|20|12|12|13|13|21|15|16|17|19|19|20|21|0\n30|29|28|27|25|25|24|22|22|21|19|19|18|17|17|31|18|20|20|21|23|23|24|26|26|27|28|29|30|31|0\n80|79|78|76|75|74|74|73|72|71|70|69|68|67|66|66|65|62|61|61|60|59|59|57|56|55|53|53|52|50|49|47|47|48|45|45|43|43|42|42|58|44|44|46|46|51|48|49|50|51|52|54|54|55|56|57|58|64|60|63|62|63|64|65|81|67|68|69|70|71|72|73|77|75|76|77|78|79|80|81|0\n24|23|22|21|21|20|19|17|15|14|14|16|18|15|16|17|18|19|20|25|22|23|24|25|0\n34|32|31|31|33|29|25|23|23|24|26|27|21|20|20|19|19|30|22|21|22|28|24|25|26|27|28|29|30|35|32|33|34|35|0\n44|42|41|39|37|37|38|40|36|35|34|33|32|31|31|30|29|27|25|25|24|24|28|26|26|27|28|29|30|45|32|33|34|35|36|43|38|39|40|41|42|43|44|45|0\n74|73|69|68|67|66|65|65|70|64|63|61|60|60|59|57|57|58|72|75|54|54|55|50|49|48|47|47|46|45|44|44|52|42|42|41|40|40|77|41|43|43|53|45|46|51|48|49|50|51|52|53|56|55|56|76|58|59|62|61|62|63|64|71|66|67|68|69|70|71|72|73|74|75|76|77|0\n49|49|50|48|47|45|44|43|41|41|40|39|38|37|36|35|34|33|31|30|30|29|28|27|27|46|28|29|32|31|32|33|34|35|36|37|38|39|40|42|42|43|44|45|46|47|48|51|50|51|0\n33|32|31|31|30|29|27|27|26|26|35|25|24|23|22|21|20|20|37|21|22|23|24|25|36|28|28|29|30|34|32|33|34|35|36|37|0\n76|75|74|74|70|69|68|66|66|65|64|63|63|71|62|61|60|59|58|56|55|55|54|53|52|50|50|49|48|47|46|45|44|42|42|41|40|40|73|41|43|43|44|45|46|47|48|49|51|51|52|53|54|57|56|57|58|59|60|61|62|72|64|65|67|67|68|69|70|71|72|73|77|75|76|77|0\n41|37|36|35|35|34|30|30|31|29|28|26|26|27|33|25|24|22|22|23|40|23|24|25|39|27|28|29|32|31|32|33|34|38|36|37|38|39|40|41|0\n56|55|54|53|52|51|51|50|47|47|48|44|44|42|41|41|37|37|36|35|34|33|33|39|32|30|30|31|46|31|32|40|34|35|36|38|38|39|40|43|42|43|45|45|46|49|48|49|50|57|52|53|54|55|56|57|0\n63|62|62|61|60|59|59|65|57|56|54|54|55|53|52|51|50|44|44|45|46|47|48|43|42|41|40|39|37|36|36|35|35|67|38|37|38|39|40|41|42|43|49|45|46|47|48|49|50|51|52|53|58|55|56|57|58|66|60|61|64|63|64|65|66|67|0\n15|12|11|11|10|9|9|14|10|13|12|13|14|15|0\n39|38|36|35|34|32|32|31|29|29|28|23|23|24|22|22|26|21|21|37|27|25|24|25|26|27|28|30|30|31|33|33|34|35|36|37|38|39|0\n21|21|20|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|20|22|22|23|0\n27|26|25|23|23|21|20|20|19|16|15|15|17|18|16|17|18|19|22|21|22|24|24|25|26|27|0\n7|5|5|6|6|7|0\n56|56|55|54|53|50|50|51|47|46|44|43|43|41|41|42|37|35|35|34|33|32|31|31|38|39|30|30|49|40|32|33|34|36|36|37|38|39|40|48|42|45|44|45|46|47|48|49|52|51|52|53|54|55|57|57|0\n30|30|29|27|27|25|24|22|21|21|20|19|17|17|18|26|18|19|20|23|22|23|24|25|26|28|28|29|31|31|0\n32|31|30|29|28|28|26|24|22|22|21|21|20|19|18|18|27|19|20|25|23|23|24|25|26|27|33|29|30|31|32|33|0\n39|39|40|38|37|37|42|43|36|35|35|33|32|29|28|27|27|30|26|25|24|24|34|25|26|31|28|29|30|31|32|33|34|45|36|44|38|41|40|41|42|43|44|45|0\n12|11|11|13|10|9|9|15|10|14|12|13|14|15|0\n42|41|41|40|40|44|45|38|37|37|35|35|34|32|32|31|30|29|27|26|26|25|25|47|28|27|28|29|30|31|33|33|34|36|36|39|38|39|46|43|42|43|44|45|46|47|0\n14|13|12|11|11|9|9|10|10|15|12|13|14|15|0\n62|62|61|59|59|60|64|57|55|54|53|52|51|51|50|46|46|45|44|43|42|41|40|39|39|48|38|37|36|35|34|34|58|35|36|37|38|49|40|41|42|43|44|45|47|47|48|49|50|56|52|53|54|55|56|57|58|65|60|61|63|63|64|65|0\n35|32|32|31|29|29|27|27|25|24|24|22|20|20|21|19|19|34|23|21|22|23|26|25|26|28|28|30|30|31|33|33|34|35|0\n78|78|75|75|74|72|72|68|68|67|66|66|64|63|63|62|61|59|58|57|57|56|55|54|50|50|49|48|47|47|52|45|44|44|43|43|42|41|41|77|42|71|46|45|46|53|48|49|51|51|52|53|54|55|56|60|58|59|60|61|62|65|64|65|70|67|69|69|70|71|73|73|74|76|76|77|79|79|0\n27|27|26|26|25|23|21|21|20|19|18|17|16|16|24|17|18|19|20|22|22|23|24|25|29|28|28|29|0\n37|32|31|30|29|28|28|33|34|26|25|25|24|21|21|22|20|20|36|23|22|23|24|27|26|27|35|29|30|31|32|33|34|35|36|37|0\n41|41|40|39|39|37|36|34|32|32|31|30|29|29|28|27|26|25|24|23|23|38|24|25|26|27|28|35|30|31|33|33|34|35|36|37|38|43|40|42|42|43|0\n4|4|5|5|0\n20|18|18|19|16|15|14|13|12|12|17|13|14|15|16|17|21|19|20|21|0\n30|29|28|27|27|26|24|24|25|32|33|23|21|21|20|19|19|35|20|22|22|23|34|25|26|31|28|29|30|31|32|33|34|35|0\n37|35|35|34|32|31|30|29|29|28|27|25|23|23|22|21|20|20|26|21|22|24|24|25|26|27|28|33|30|31|32|33|34|36|36|37|0\n53|53|52|49|49|50|47|47|46|45|44|43|43|40|40|38|38|37|34|34|35|32|32|31|30|29|29|42|30|31|33|33|36|35|36|37|39|39|41|41|42|55|44|45|46|48|48|51|50|51|52|54|54|55|0\n25|25|24|24|23|21|18|17|17|16|16|15|15|22|20|19|18|19|20|21|22|23|27|26|26|27|0\n59|59|58|57|56|54|54|55|53|52|51|51|62|63|49|47|47|46|45|45|44|41|40|40|42|39|38|37|35|35|34|34|65|36|36|37|38|39|43|41|42|43|44|50|46|48|48|49|50|64|52|53|61|55|56|57|58|60|60|61|62|63|64|65|0\n25|22|22|23|21|21|26|27|19|18|17|17|16|16|29|20|18|19|20|28|24|23|24|25|26|27|28|29|0\n64|63|62|60|59|59|58|57|56|56|55|53|53|51|50|49|48|46|45|45|44|40|39|39|38|37|36|35|34|34|42|43|52|35|36|37|38|41|40|41|42|43|44|47|46|47|48|49|50|51|52|54|54|55|65|57|58|61|60|61|62|63|64|65|0\n36|36|33|32|32|30|30|27|27|26|25|25|23|23|22|21|20|20|35|21|22|24|24|29|26|28|28|29|31|31|34|33|34|35|37|37|0\n83|82|82|84|80|79|76|76|75|74|74|71|71|72|70|67|66|65|64|63|63|68|62|61|60|59|58|56|56|55|52|51|50|49|49|53|47|47|46|45|44|44|81|45|46|48|48|54|50|51|52|53|54|55|57|57|58|59|60|61|62|69|64|65|66|67|68|69|70|73|72|73|78|75|77|77|78|79|80|81|85|83|84|85|0\n40|37|36|36|35|34|34|33|32|31|30|29|29|28|27|25|24|23|22|22|26|23|24|25|26|27|28|41|30|31|32|33|39|35|38|37|38|39|40|41|0\n49|48|48|47|47|51|43|42|41|41|40|38|38|39|37|36|35|34|33|32|32|31|30|28|28|29|53|29|30|31|46|33|34|35|36|37|45|39|40|44|42|43|44|45|46|52|50|49|50|51|52|53|0\n20|20|16|16|17|14|13|13|12|12|19|15|14|15|18|17|18|19|21|21|0\n10|9|9|7|7|8|8|11|10|11|0\n64|63|62|61|60|58|57|57|56|56|55|54|50|50|47|45|45|46|48|44|43|42|41|41|40|39|37|36|36|35|34|34|53|35|38|37|38|39|40|52|42|43|44|49|46|47|48|49|51|51|52|53|54|55|65|59|58|59|60|61|62|63|64|65|0\n33|31|30|28|27|26|25|25|24|23|22|20|19|18|18|21|32|19|20|21|22|23|24|29|26|27|28|29|30|31|32|33|0\n44|43|41|40|40|39|36|35|35|37|34|32|31|31|30|28|27|27|26|25|24|24|45|25|26|29|28|29|30|33|32|33|34|38|36|37|38|39|42|41|42|43|44|45|0\n14|11|11|10|10|13|9|9|15|12|12|13|14|15|0\n26|24|22|22|23|21|20|20|17|17|15|15|16|19|16|18|18|19|27|21|25|23|24|25|26|27|0\n32|32|28|27|26|25|24|23|23|29|22|21|20|19|18|18|31|19|20|21|22|30|24|25|26|27|28|29|30|31|33|33|0\n28|25|24|23|23|26|27|21|19|18|18|17|16|16|22|17|20|19|20|21|22|29|24|25|26|27|28|29|0\n32|32|31|30|30|29|27|27|26|24|24|25|35|36|20|20|21|22|23|21|22|23|37|25|26|28|28|29|34|31|33|33|34|35|36|37|0\n50|49|48|47|46|46|51|45|43|42|41|41|40|40|53|38|37|37|36|33|32|31|31|34|30|29|29|55|30|35|32|33|34|35|36|39|38|39|54|44|42|43|44|45|52|47|48|49|50|51|52|53|54|55|0\n26|25|25|24|23|22|21|21|28|29|20|19|17|17|18|31|18|19|20|30|22|23|24|27|26|27|28|29|30|31|0\n36|34|34|33|32|31|31|30|27|27|26|26|23|23|22|21|20|20|25|21|22|24|24|25|29|28|28|29|30|37|32|33|35|35|36|37|0\n43|43|42|38|38|39|40|37|36|36|34|31|31|28|28|27|27|30|26|25|24|24|35|25|26|33|29|29|30|32|32|33|34|35|45|37|41|39|40|41|42|44|44|45|0\n44|43|42|42|41|40|39|37|36|36|35|34|32|30|30|31|33|46|47|29|28|27|26|26|49|27|28|29|48|31|32|33|34|35|38|37|38|39|40|41|45|43|44|45|46|47|48|49|0\n52|52|51|50|50|54|55|49|46|46|47|45|42|42|40|40|41|39|37|35|35|36|34|33|32|30|30|31|57|31|32|33|34|38|36|37|38|39|44|41|43|43|44|45|48|47|48|49|56|51|53|53|54|55|56|57|0\n48|48|47|45|45|44|43|41|41|40|38|37|37|36|34|34|33|31|31|30|29|28|27|26|26|27|28|29|30|32|32|33|35|35|36|39|38|39|40|42|42|43|44|46|46|47|49|49|0\n27|27|26|25|25|24|23|21|20|17|17|18|16|16|22|19|18|19|20|21|22|23|24|29|26|28|28|29|0\n52|52|51|47|46|45|44|44|43|41|41|42|40|36|35|34|34|33|32|32|38|30|30|29|28|28|50|29|31|31|39|33|37|35|36|37|38|39|40|49|42|43|48|45|46|47|48|49|50|51|53|53|0\n14|10|10|11|9|9|13|15|12|11|12|13|14|15|0\n33|32|31|30|30|29|28|27|26|25|23|23|22|22|20|19|19|21|20|21|35|24|24|25|26|27|28|29|34|31|32|33|34|35|0\n17|17|16|16|14|13|12|11|11|15|12|13|14|15|19|18|18|19|0\n31|29|28|27|24|24|23|21|21|22|20|19|18|17|17|30|18|19|20|26|22|23|25|25|26|27|28|29|30|31|0\n40|37|36|36|38|35|33|33|34|32|30|30|28|27|25|24|24|23|22|22|29|23|26|25|26|27|28|29|31|31|32|41|34|35|39|37|38|39|40|41|0\n41|38|38|37|36|35|34|32|32|30|29|28|27|27|26|25|23|23|22|22|40|24|24|25|26|31|28|29|30|31|33|33|34|35|36|37|39|39|40|41|0\n25|22|20|19|19|18|17|16|16|15|14|14|24|15|23|17|18|21|20|21|22|23|24|25|0\n49|48|48|47|46|45|44|43|42|42|40|39|38|34|33|33|35|36|31|31|30|29|28|27|27|41|28|29|30|32|32|37|34|35|36|37|38|39|40|41|51|43|44|45|46|47|50|49|50|51|0\n41|37|36|34|34|32|32|33|31|30|27|27|26|26|25|24|23|23|22|22|40|39|24|25|29|28|28|29|30|31|38|33|35|35|36|37|38|39|40|41|0\n32|31|29|28|28|30|27|26|24|23|22|21|20|18|18|19|25|19|20|21|22|23|24|25|26|27|33|29|30|31|32|33|0\n45|45|44|44|42|41|40|39|38|37|35|33|33|32|30|30|28|28|27|27|26|25|25|43|26|36|29|29|31|31|32|34|34|35|36|37|38|39|40|41|42|43|47|46|46|47|0\n44|42|41|41|40|39|38|37|37|36|35|31|29|28|28|27|27|32|26|25|24|24|34|25|26|33|30|29|30|31|32|33|34|35|36|45|38|39|40|43|42|43|44|45|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n21|20|17|17|15|14|14|13|12|12|19|13|16|15|16|18|18|19|20|21|0\n34|33|29|29|28|27|26|26|31|24|23|23|22|21|20|19|19|35|20|21|22|25|24|25|32|27|28|30|30|31|32|33|34|35|0\n35|33|33|32|31|30|29|28|28|36|37|27|26|25|24|23|21|21|22|39|22|23|24|25|26|27|38|29|30|31|32|34|34|35|36|37|38|39|0\n27|25|24|23|20|20|21|19|18|17|16|15|15|26|16|17|18|19|22|21|22|23|24|25|26|27|0\n23|22|21|20|20|19|17|17|15|15|16|14|14|25|16|18|18|19|24|21|22|23|24|25|0\n63|62|62|61|60|57|56|56|58|55|54|53|51|51|50|49|48|47|46|44|44|43|42|41|40|40|38|37|36|35|34|34|39|35|36|37|38|39|65|41|42|43|45|45|46|47|48|49|50|52|52|53|54|55|59|57|58|59|60|61|64|63|64|65|0\n52|51|50|48|47|46|46|45|44|43|42|42|53|40|39|38|38|37|36|34|34|32|31|31|30|29|29|55|30|33|32|33|35|35|36|37|41|39|40|41|54|43|44|45|49|47|48|49|50|51|52|53|54|55|0\n48|48|47|43|43|42|41|40|40|39|37|36|35|35|33|32|31|31|30|29|28|27|26|26|46|27|28|29|30|34|32|33|34|38|36|37|38|39|45|41|42|44|44|45|46|47|49|49|0\n29|29|28|28|26|25|23|22|22|20|20|19|18|17|17|27|18|19|21|21|24|23|24|25|26|27|31|30|30|31|0\n61|60|57|57|56|56|55|52|52|53|51|50|49|48|45|45|46|43|43|42|41|41|62|63|40|38|38|37|36|35|34|34|65|35|36|37|39|39|40|64|42|44|44|47|46|47|48|49|50|51|54|53|54|55|59|58|58|59|60|61|62|63|64|65|0\n47|46|45|44|43|43|48|49|41|39|39|37|37|36|35|34|34|33|32|31|29|29|28|27|27|51|28|30|30|31|32|33|42|35|36|38|38|40|40|41|42|50|44|45|46|47|48|49|50|51|0\n30|30|31|27|27|26|26|24|23|23|22|21|20|19|18|18|33|19|20|21|22|25|24|25|29|28|28|29|32|31|32|33|0\n16|16|17|18|13|13|12|11|11|15|12|14|14|15|19|17|18|19|0\n50|49|48|47|46|46|45|43|43|41|38|37|37|36|36|35|30|30|31|29|29|33|27|27|28|42|28|34|32|31|32|33|34|35|40|39|38|39|40|41|42|44|44|45|51|47|48|49|50|51|0\n28|25|22|21|20|20|23|19|19|26|18|17|16|16|29|17|18|27|24|21|22|23|24|25|26|27|28|29|0\n48|47|44|43|43|42|41|40|39|39|38|36|36|37|35|34|32|31|30|29|28|27|26|26|33|27|28|29|30|31|32|33|34|35|49|37|38|46|40|41|42|45|44|45|46|47|48|49|0\n35|34|34|33|33|32|31|29|28|28|27|25|25|24|22|22|21|20|20|21|23|23|24|26|26|27|30|29|30|31|32|37|36|35|36|37|0\n75|74|72|71|71|70|69|69|76|77|68|67|64|63|63|65|60|60|59|55|55|54|53|53|57|51|51|50|49|49|48|46|45|45|44|42|41|41|43|79|42|43|44|47|46|47|48|62|50|52|52|58|54|56|56|57|58|59|61|61|62|66|64|65|66|67|68|78|70|73|72|73|74|75|76|77|78|79|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n29|28|26|26|23|21|21|20|18|18|19|17|16|16|25|17|24|19|20|22|22|23|24|25|27|27|28|29|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n26|26|25|25|28|29|23|22|22|21|19|19|18|17|17|31|18|20|20|21|24|23|24|30|27|27|28|29|30|31|0\n23|20|20|18|17|16|16|15|14|13|13|22|14|15|19|17|18|19|21|21|22|23|0\n56|55|54|53|51|51|50|49|49|57|58|59|47|46|45|45|41|40|40|42|39|35|35|34|34|37|38|33|32|32|61|33|44|36|36|37|38|39|43|41|42|43|44|48|46|47|48|60|50|52|52|53|54|55|56|57|58|59|60|61|0\n40|39|38|37|36|35|35|34|33|32|29|29|28|27|26|25|24|23|22|22|31|23|24|25|26|27|28|30|30|31|32|33|34|41|36|37|38|39|40|41|0\n70|69|68|67|67|66|62|61|61|63|58|57|57|59|56|55|53|53|52|51|48|47|47|46|46|44|43|41|41|42|40|39|38|37|37|65|38|39|40|45|42|43|44|45|50|49|48|49|50|51|52|54|54|55|56|60|58|59|60|64|62|63|64|65|66|71|68|69|70|71|0\n38|35|35|36|37|32|32|31|29|26|26|25|25|24|24|23|22|21|21|34|22|23|30|28|27|27|28|29|30|31|33|33|34|39|36|37|38|39|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n21|18|18|16|15|14|13|13|12|12|20|17|14|15|16|17|19|19|20|21|0\n26|25|24|23|22|21|21|18|18|17|16|15|15|20|16|17|19|19|20|27|22|23|24|25|26|27|0\n30|28|28|27|26|25|25|24|23|21|20|19|18|17|17|22|18|19|20|21|22|23|24|31|26|27|29|29|30|31|0\n60|59|58|57|57|56|54|52|51|51|47|47|48|49|43|42|42|41|40|39|39|45|38|35|34|34|36|33|32|32|55|33|37|35|36|37|38|46|40|41|44|43|44|45|46|50|48|49|50|53|52|53|54|55|56|61|58|59|60|61|0\n11|11|10|8|8|9|13|9|10|12|12|13|0\n73|71|71|69|68|67|67|66|65|65|74|75|62|62|61|58|57|56|55|55|54|52|52|51|50|50|49|48|47|46|46|45|44|43|41|41|40|40|77|42|42|43|44|45|64|47|48|49|60|51|53|53|54|59|56|57|58|59|60|61|63|63|64|76|66|70|68|69|70|72|72|73|74|75|76|77|0\n32|31|31|30|29|27|25|24|24|23|22|20|20|19|18|18|28|19|21|21|22|23|26|25|26|27|28|29|30|33|32|33|0\n32|30|30|29|27|27|28|26|24|23|21|21|20|19|18|18|25|19|20|22|22|23|24|25|26|33|28|29|31|31|32|33|0\n18|18|15|14|14|13|12|11|11|17|12|13|16|15|16|17|19|19|0\n13|12|12|14|9|9|10|11|10|11|15|13|14|15|0\n52|51|50|49|48|47|45|45|46|53|44|43|42|41|39|38|36|35|34|34|33|32|31|30|30|29|29|55|40|31|32|33|37|35|36|37|38|39|40|41|42|43|44|54|46|47|48|49|50|51|52|53|54|55|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n42|41|41|39|39|37|37|36|35|34|34|44|45|32|31|31|28|28|29|27|26|25|25|47|26|27|30|29|30|33|32|33|46|35|36|38|38|40|40|43|42|43|44|45|46|47|0\n43|43|37|36|35|34|33|33|38|39|32|30|29|29|31|28|28|27|26|25|24|24|45|25|26|27|42|41|30|31|32|40|34|35|36|37|38|39|40|41|42|44|44|45|0\n37|37|36|31|31|32|30|30|34|29|28|28|26|24|23|23|22|21|21|27|22|25|24|25|26|27|39|29|35|33|32|33|34|35|36|38|38|39|0\n18|17|17|16|14|14|12|11|11|13|12|13|15|15|16|19|18|19|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n51|50|49|48|47|46|44|43|43|41|41|42|52|53|38|38|37|36|36|35|34|32|32|31|30|29|29|55|30|31|33|33|34|35|40|37|39|39|40|54|42|45|44|45|46|47|48|49|50|51|52|53|54|55|0\n8|7|7|6|6|9|8|9|0\n54|53|52|51|50|49|48|48|47|46|44|43|41|39|38|38|37|37|35|35|34|33|32|31|30|29|29|45|30|31|32|33|34|36|36|42|40|39|40|41|42|43|44|45|46|47|55|49|50|51|52|53|54|55|0\n67|66|64|63|62|61|60|58|57|57|56|49|48|48|50|47|46|45|44|42|40|40|41|39|38|38|52|37|37|54|36|35|35|65|36|55|53|39|43|41|42|43|44|45|46|47|51|49|50|51|52|53|54|55|56|59|58|59|60|61|62|63|64|65|66|67|0\n36|36|34|33|33|32|30|29|28|28|26|26|25|25|38|39|23|23|22|22|41|24|24|40|27|27|31|29|30|31|32|35|34|35|37|37|38|39|40|41|0\n42|40|39|39|38|37|36|34|33|33|31|31|30|28|28|27|26|24|24|23|23|43|25|25|26|27|29|29|30|32|32|35|34|35|36|37|38|41|40|41|42|43|0\n18|18|17|15|14|13|11|11|12|16|12|13|14|15|16|17|19|19|0\n19|17|16|14|13|13|12|11|11|18|12|15|14|15|16|17|18|19|0\n60|60|57|56|55|55|54|50|50|49|48|48|52|47|46|45|43|42|42|41|36|36|37|32|32|33|34|35|39|40|59|33|34|35|38|37|38|39|40|41|44|43|44|45|46|47|53|49|51|51|52|53|54|58|56|57|58|59|61|61|0\n37|35|34|32|31|30|30|29|28|27|25|25|24|21|21|20|20|23|36|22|22|23|24|26|26|27|28|29|33|31|32|33|34|35|36|37|0\n51|50|49|48|47|44|44|45|40|40|41|42|39|37|36|36|35|31|31|32|30|28|27|27|29|34|28|29|30|33|32|33|34|35|38|37|38|39|43|41|42|43|46|45|46|47|48|49|50|51|0\n58|57|57|55|55|53|53|52|51|50|49|49|60|61|44|43|42|41|41|45|40|39|37|37|38|47|36|35|34|33|33|63|34|35|36|48|38|39|40|46|42|43|44|45|46|47|48|62|50|51|52|54|54|56|56|59|58|59|60|61|62|63|0\n48|48|42|42|41|39|38|38|37|37|44|45|35|35|34|33|31|30|30|29|28|27|26|26|47|27|28|29|32|31|32|33|34|36|36|46|40|39|40|41|43|43|44|45|46|47|49|49|0\n63|63|60|58|58|57|56|55|54|53|53|61|52|50|50|49|48|47|45|44|43|43|42|41|41|65|40|39|38|37|36|35|35|67|36|37|38|39|40|66|42|46|44|45|46|47|48|49|51|51|52|62|54|55|56|57|59|59|60|61|62|64|64|65|66|67|0\n48|46|46|44|44|43|42|41|41|40|37|36|36|35|35|33|32|31|30|29|28|27|26|26|34|27|28|29|30|31|32|33|34|39|38|37|38|39|40|49|42|43|45|45|47|47|48|49|0\n37|34|33|32|31|30|30|29|28|26|26|24|24|23|22|21|20|20|36|21|22|23|25|25|27|27|28|29|35|31|32|33|34|35|36|37|0\n39|34|33|32|30|29|29|31|28|26|26|25|25|36|22|22|23|21|21|38|24|23|24|37|27|27|28|35|30|31|32|33|34|35|36|37|38|39|0\n61|61|60|59|58|58|57|55|51|51|52|53|49|49|48|48|56|64|65|46|46|45|44|43|41|41|40|38|38|37|36|35|35|67|36|37|39|39|40|42|42|43|44|45|47|47|66|50|50|54|52|53|54|55|56|57|63|59|60|62|62|63|64|65|66|67|0\n32|31|30|29|29|28|25|25|23|23|24|21|20|19|18|18|22|19|20|21|22|27|24|26|26|27|28|33|30|31|32|33|0\n33|32|32|31|29|28|28|26|26|27|24|23|21|21|20|19|19|25|20|22|22|23|24|25|35|27|30|29|30|31|34|33|34|35|0\n9|8|7|6|6|7|8|9|0\n8|8|9|10|7|7|11|9|10|11|0\n53|51|50|48|48|47|46|41|40|39|39|38|37|36|35|35|43|44|33|32|32|31|30|29|28|28|52|29|30|31|34|33|34|45|36|37|38|42|40|41|42|43|44|45|46|47|49|49|50|51|52|53|0\n50|50|49|49|52|53|48|47|45|44|43|42|42|41|40|35|35|32|32|33|31|30|30|37|29|29|39|55|38|31|34|33|34|36|36|37|38|39|40|41|46|43|44|45|46|47|48|54|51|51|52|53|54|55|0\n7|5|5|6|6|7|0\n57|50|49|48|48|45|45|46|47|52|44|43|41|40|39|37|37|36|36|42|54|35|33|33|32|30|30|31|56|31|32|34|34|35|55|38|38|39|40|41|42|43|44|53|46|47|51|49|50|51|52|53|54|55|56|57|0\n42|40|39|39|38|37|36|35|34|33|32|32|31|29|29|27|25|25|24|23|23|28|24|26|26|27|28|30|30|31|43|33|34|35|36|37|38|41|40|41|42|43|0\n31|30|28|25|24|24|26|22|22|21|20|19|19|18|17|17|18|29|20|21|23|23|27|25|26|27|28|29|30|31|0\n40|38|38|37|36|35|35|34|32|31|30|30|28|24|23|23|25|26|22|22|29|27|24|25|26|27|28|29|33|31|32|33|34|41|36|37|39|39|40|41|0\n65|65|64|63|62|61|59|59|58|56|56|55|54|52|52|53|51|49|49|47|46|45|41|41|42|43|40|39|38|37|36|35|35|48|36|37|38|39|40|44|42|43|44|45|46|47|48|50|50|51|67|53|54|55|57|57|58|60|60|61|62|63|64|66|66|67|0\n44|44|45|46|43|42|41|39|38|37|36|35|35|34|33|30|30|29|28|27|26|25|25|32|26|27|28|29|31|31|32|33|34|40|36|37|38|39|40|41|42|43|47|45|46|47|0\n36|33|33|34|32|31|29|29|30|26|26|24|23|23|22|20|20|21|28|21|22|25|24|25|27|27|28|37|30|31|32|35|34|35|36|37|0\n29|29|30|28|28|32|25|25|24|23|21|19|19|20|18|18|27|22|20|21|22|23|24|26|26|27|33|31|30|31|32|33|0\n11|8|8|7|7|10|9|9|10|11|0\n57|55|53|52|51|51|50|49|48|43|42|42|44|41|41|46|39|38|37|36|36|35|34|32|32|31|30|30|56|31|33|33|34|35|40|37|38|39|40|47|45|43|44|45|46|47|48|49|50|54|52|53|54|55|56|57|0\n15|13|12|10|10|9|9|14|11|11|12|13|14|15|0\n47|42|40|40|39|37|37|36|35|30|29|29|31|32|33|34|43|44|28|27|26|25|25|46|26|27|28|45|30|31|32|33|34|35|36|38|38|39|41|41|42|43|44|45|46|47|0\n15|14|12|12|10|9|9|11|10|11|13|13|14|15|0\n46|45|45|44|43|40|40|41|38|38|39|34|34|35|36|33|33|30|28|27|26|26|29|31|32|27|28|29|30|31|32|49|37|35|36|37|48|39|42|41|42|43|44|47|46|47|48|49|0\n37|33|33|29|29|30|31|28|27|27|26|25|24|21|20|20|22|23|36|21|22|23|24|25|26|35|28|32|30|31|32|34|34|35|36|37|0\n33|33|32|31|30|30|28|27|26|23|23|22|22|21|20|19|19|29|20|21|25|24|24|25|26|27|28|29|35|31|32|34|34|35|0\n36|35|34|34|32|29|29|28|27|24|24|25|26|23|22|21|20|20|33|21|22|23|31|25|26|27|28|30|30|31|32|33|37|35|36|37|0\n34|34|33|32|31|29|29|28|28|36|37|26|25|24|24|23|22|21|21|39|22|23|27|25|26|27|38|30|30|31|32|33|35|35|36|37|38|39|0\n20|18|18|19|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0\n19|19|16|16|17|15|15|13|12|12|14|13|14|21|18|17|18|20|20|21|0\n9|8|6|6|7|7|8|9|0\n37|37|36|33|33|34|28|28|29|27|27|31|26|26|39|24|24|23|22|22|41|23|25|25|40|32|30|29|30|31|32|35|34|35|36|38|38|39|40|41|0\n36|36|34|32|31|30|29|29|28|27|26|25|23|23|22|21|20|20|35|21|22|24|24|25|26|27|28|33|30|31|32|33|34|35|37|37|0\n47|45|43|42|42|41|40|37|37|38|39|36|33|32|32|31|30|30|28|26|26|25|25|29|27|27|28|29|35|31|34|33|34|35|36|46|38|39|40|41|44|43|44|45|46|47|0\n27|26|25|22|22|20|19|19|18|17|16|15|15|24|16|17|18|21|20|21|23|23|24|25|26|27|0\n41|39|39|40|38|37|36|33|32|32|34|30|29|29|28|27|27|26|24|23|23|25|24|25|26|43|28|31|30|31|35|33|34|35|36|37|38|42|40|41|42|43|0\n51|51|50|49|49|47|46|45|44|43|42|41|40|39|36|36|35|34|33|32|32|31|29|28|28|30|48|29|30|31|38|33|34|35|37|37|38|39|40|41|42|43|44|45|46|47|48|53|50|52|52|53|0\n40|40|39|38|38|42|43|37|36|35|34|32|31|31|30|29|27|26|26|25|24|24|45|25|28|27|28|29|30|33|32|33|34|35|36|37|44|39|41|41|42|43|44|45|0\n41|40|39|39|38|36|35|35|34|33|33|43|32|31|28|27|27|29|26|25|24|24|45|25|26|30|28|29|30|31|32|44|34|37|36|37|38|42|40|41|42|43|44|45|0\n29|27|26|25|24|23|23|19|19|20|18|17|16|16|22|17|18|21|20|21|22|28|24|25|26|27|28|29|0\n40|39|38|38|35|35|34|33|32|31|28|28|27|26|26|23|23|24|22|22|37|25|24|25|30|27|29|29|30|31|32|33|34|36|36|37|41|39|40|41|0\n34|33|32|31|29|28|27|27|26|25|24|24|22|21|20|19|19|23|20|21|22|23|35|25|26|30|28|29|30|31|32|33|34|35|0\n25|25|24|23|23|27|22|20|20|19|17|17|16|16|29|18|18|19|21|21|22|28|24|26|26|27|28|29|0\n46|45|43|42|42|41|41|47|39|39|38|36|36|34|34|32|31|31|30|27|27|28|26|26|49|29|28|29|30|33|32|33|35|35|37|37|38|40|40|48|44|43|44|45|46|47|48|49|0\n24|23|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|25|24|25|0\n32|31|31|28|28|27|24|23|23|22|21|21|20|19|18|18|30|19|20|26|22|25|24|25|26|27|29|29|30|33|32|33|0\n40|39|38|36|34|32|32|33|31|30|29|29|28|27|26|25|24|22|22|23|41|23|24|25|26|27|28|37|30|31|35|33|34|35|36|37|38|39|40|41|0\n17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0\n55|53|53|52|50|49|48|48|51|56|57|46|46|45|44|43|42|40|40|39|37|36|35|34|34|33|32|31|31|59|32|33|38|35|36|37|38|39|41|41|42|43|44|45|47|47|58|49|50|51|52|54|54|55|56|57|58|59|0\n51|51|48|47|47|49|45|44|43|43|42|41|40|40|39|38|38|54|55|37|36|36|34|32|31|31|30|30|35|33|32|33|34|35|57|37|56|39|53|41|42|46|44|45|46|50|48|49|50|52|52|53|54|55|56|57|0\n63|60|59|58|57|56|56|55|53|52|51|51|50|45|44|44|43|43|47|48|42|40|39|39|37|37|36|35|34|33|33|62|34|35|36|38|38|41|40|41|42|49|46|45|46|47|48|49|50|54|52|53|54|55|61|57|58|59|60|61|62|63|0\n11|9|8|7|7|10|8|9|10|11|0\n33|32|31|30|29|28|27|27|34|35|25|25|24|22|22|21|20|20|37|21|23|23|24|26|26|36|28|29|30|31|32|33|34|35|36|37|0\n35|35|34|34|32|32|31|29|29|28|27|27|38|39|25|24|24|23|22|22|41|23|26|25|26|40|28|30|30|31|33|33|37|36|36|37|38|39|40|41|0\n27|24|24|23|23|19|18|15|15|16|17|20|21|22|16|17|18|19|20|21|22|26|25|25|26|27|0\n48|45|44|44|46|43|42|42|41|38|37|36|36|35|35|33|31|30|29|29|28|27|26|26|34|27|28|32|30|31|32|33|34|40|39|37|38|39|40|41|49|43|47|45|46|47|48|49|0\n28|27|26|25|25|24|23|23|30|31|21|21|20|19|18|18|33|19|20|22|22|32|24|29|26|27|28|29|30|31|32|33|0\n39|38|38|37|37|35|34|32|32|31|28|26|26|27|29|25|24|23|22|22|36|23|24|25|30|27|28|29|30|31|33|33|34|35|36|41|40|39|40|41|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n33|30|30|29|28|26|25|24|23|21|21|22|20|19|18|18|32|19|20|27|22|23|24|25|26|27|28|29|31|31|32|33|0\n35|34|32|25|25|26|24|24|28|22|22|21|20|19|19|30|31|33|20|21|23|23|29|27|26|27|28|29|30|31|32|33|34|35|0\n31|28|27|27|26|23|22|22|21|21|20|19|18|17|17|30|18|19|20|25|24|23|24|25|26|29|28|29|30|31|0\n24|23|22|22|21|19|18|17|16|15|14|14|20|15|16|17|18|19|20|21|25|23|24|25|0\n47|46|45|44|44|48|49|43|42|41|40|39|39|38|36|34|33|33|35|30|30|28|28|27|27|32|29|29|31|31|32|37|34|35|36|37|38|51|40|41|42|43|50|45|46|47|48|49|50|51|0\n49|48|47|45|44|44|43|40|40|41|39|38|38|50|51|37|36|35|33|33|32|30|29|28|28|31|53|29|30|31|32|34|34|35|36|37|52|39|42|41|42|43|46|45|46|47|48|49|50|51|52|53|0\n44|43|43|45|46|47|48|40|40|38|34|34|35|32|31|30|30|29|28|28|37|27|26|26|42|27|39|29|33|31|32|33|36|35|36|37|38|39|41|41|42|49|44|45|46|47|48|49|0\n14|12|12|13|9|9|10|11|10|11|15|13|14|15|0\n33|33|32|31|28|28|29|30|26|25|24|22|21|20|20|19|19|27|23|21|22|23|24|25|26|27|35|29|30|31|32|34|34|35|0\n19|19|18|17|17|15|14|13|12|12|16|13|14|15|16|21|18|20|20|21|0\n21|20|18|16|16|14|13|13|12|12|19|15|14|15|17|17|18|19|20|21|0\n32|32|30|28|26|26|25|25|24|22|21|21|20|19|18|18|31|19|20|23|22|23|24|29|27|27|28|29|30|31|33|33|0\n61|60|57|56|56|58|54|54|53|52|51|50|48|48|46|46|45|44|44|62|63|43|42|39|39|40|38|36|36|34|34|35|65|35|37|37|38|41|40|41|42|43|64|45|47|47|49|49|50|51|52|53|55|55|59|57|58|59|60|61|62|63|64|65|0\n43|38|35|35|36|34|34|39|40|32|29|29|30|31|28|27|26|25|24|23|23|42|24|25|26|27|28|33|30|31|32|33|41|37|36|37|38|39|40|41|42|43|0\n9|8|7|6|6|7|8|9|0\n37|35|34|31|30|29|27|27|26|25|25|32|23|23|22|21|20|20|36|21|22|24|24|33|26|28|28|29|30|31|32|33|34|35|36|37|0\n28|27|26|25|25|21|19|19|18|17|17|22|16|16|24|23|18|20|20|21|22|23|24|29|26|27|28|29|0\n54|54|49|49|50|51|48|46|46|45|43|42|42|41|38|38|39|36|36|35|34|33|32|30|30|29|29|53|31|31|32|33|34|35|37|37|40|39|40|41|44|43|44|45|47|47|48|52|50|51|52|53|55|55|0\n35|35|34|32|32|31|30|30|29|27|27|25|24|23|22|21|20|20|26|21|22|23|24|25|26|28|28|29|37|31|33|33|34|36|36|37|0\n30|30|28|27|26|24|23|23|22|20|19|19|18|17|17|29|18|21|20|21|22|25|24|25|26|27|28|29|31|31|0\n42|40|40|38|37|36|36|35|35|34|33|31|30|29|28|27|25|25|24|23|23|32|24|26|26|27|28|29|30|31|32|33|34|43|39|37|38|39|41|41|42|43|0\n49|48|46|45|45|44|42|42|38|38|36|35|35|34|33|33|32|31|30|29|28|26|26|27|41|27|28|29|30|31|32|40|34|37|36|37|39|39|40|41|43|43|44|47|46|47|48|49|0\n55|53|52|52|51|51|50|49|47|47|48|57|46|44|44|43|42|40|37|36|36|38|35|34|33|33|32|31|31|59|32|41|34|35|39|37|38|39|40|41|42|43|45|45|46|58|48|49|50|56|54|53|54|55|56|57|58|59|0\n53|52|52|51|49|49|48|47|46|45|44|43|42|42|40|39|38|37|35|34|34|33|32|31|30|29|29|41|30|31|32|33|36|35|36|37|38|39|40|41|55|43|44|45|46|47|48|50|50|51|54|53|54|55|0\n62|61|59|59|58|57|55|55|54|52|52|51|51|50|50|64|65|49|46|46|47|45|44|42|41|41|40|39|38|36|35|35|37|67|36|37|38|39|40|43|42|43|44|45|48|47|48|49|66|63|53|53|54|56|56|57|58|60|60|61|62|63|64|65|66|67|0\n35|33|33|30|28|27|27|26|25|24|23|22|21|21|20|19|19|32|20|31|22|23|24|25|26|29|28|29|30|31|32|34|34|35|0\n30|28|28|27|26|24|24|23|22|22|31|20|20|19|18|18|33|19|21|21|32|23|25|25|26|27|29|29|30|31|32|33|0\n44|44|42|41|40|39|36|36|37|35|34|33|30|30|31|28|28|27|26|25|24|24|43|25|26|27|29|29|32|31|32|33|34|35|38|37|38|39|40|41|42|43|45|45|0\n14|14|13|13|12|11|10|10|17|11|12|16|15|15|16|17|0\n22|20|20|19|19|17|17|15|14|13|13|16|14|15|16|18|18|23|21|21|22|23|0\n73|70|69|68|66|65|65|64|63|63|62|59|58|54|54|51|50|49|49|52|48|47|46|46|56|44|44|45|43|41|41|40|39|39|38|38|72|61|40|42|42|43|60|45|57|47|48|53|50|51|52|53|55|55|56|57|58|59|60|61|62|71|64|67|66|67|68|69|70|71|72|73|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n9|9|8|7|7|11|8|10|10|11|0\n42|41|40|39|39|38|36|36|34|32|32|31|28|27|27|29|26|25|24|23|23|35|24|25|26|30|28|29|30|31|33|33|34|35|37|37|38|43|40|41|42|43|0\n39|36|36|34|34|33|31|30|30|29|27|26|26|25|23|23|22|21|21|38|22|24|24|25|28|27|28|29|32|31|32|33|35|35|37|37|38|39|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n60|59|58|58|57|54|54|53|52|51|51|50|48|47|43|43|42|40|40|41|45|39|38|37|36|35|33|33|32|32|49|34|34|35|36|37|38|39|46|41|42|44|44|45|46|47|48|49|50|56|52|53|55|55|56|57|61|59|60|61|0\n51|49|48|44|43|42|42|41|39|38|38|37|36|36|46|34|34|33|31|30|30|29|28|27|27|50|28|29|32|31|32|33|35|35|47|37|40|39|40|41|45|43|44|45|46|47|48|49|50|51|0\n21|18|17|17|14|14|15|13|12|12|20|13|16|15|16|19|18|19|20|21|0\n55|54|51|51|50|49|48|47|47|46|45|42|42|40|38|38|37|35|35|34|34|32|32|31|30|29|29|44|30|31|33|33|41|36|36|37|39|39|40|41|43|43|44|45|46|53|48|49|50|52|52|53|54|55|0\n61|56|56|57|58|55|51|51|52|53|48|48|47|46|46|44|44|42|42|41|39|38|37|36|36|35|34|33|32|32|60|33|34|35|40|37|38|39|40|41|43|43|45|45|50|47|49|49|50|54|52|53|54|55|59|57|58|59|60|61|0\n53|50|48|48|47|46|45|44|43|42|41|40|39|39|38|35|34|33|33|36|31|30|29|29|28|28|52|32|30|31|32|37|34|35|36|37|38|51|40|41|42|43|44|45|46|47|49|49|50|51|52|53|0\n44|42|42|41|39|38|38|37|35|35|36|45|34|33|32|31|30|28|28|27|26|25|25|47|26|27|29|29|30|31|32|33|34|46|36|37|40|39|40|41|43|43|44|45|46|47|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n3|3|0\n21|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|20|19|20|21|0\n57|55|54|52|52|51|48|47|47|46|44|42|42|43|41|40|40|39|37|37|36|35|33|32|32|31|30|30|56|31|34|33|34|35|36|38|38|39|50|41|45|43|44|45|46|49|48|49|50|51|53|53|54|55|56|57|0\n47|45|44|41|40|39|37|37|36|35|34|34|42|33|32|31|30|29|27|26|26|25|25|46|28|27|28|29|30|31|32|33|43|35|36|38|38|39|40|41|42|43|44|45|46|47|0\n43|43|42|35|35|36|37|38|39|40|34|34|32|30|29|29|28|26|26|25|24|24|33|25|27|27|28|31|30|31|32|33|45|41|36|37|38|39|40|41|42|44|44|45|0\n31|31|28|27|27|29|26|25|24|23|22|21|21|19|18|18|20|19|20|33|22|23|24|25|26|30|28|29|30|32|32|33|0\n20|19|18|18|21|17|16|15|14|13|13|23|14|15|16|17|22|19|20|21|22|23|0\n10|9|9|8|7|7|8|11|10|11|0\n36|34|34|33|31|31|32|30|28|27|25|24|23|23|22|21|20|20|29|21|22|26|24|25|26|27|28|29|30|37|32|33|35|35|36|37|0\n49|46|46|45|43|42|41|40|39|39|38|37|34|34|35|33|32|27|27|28|29|26|26|31|48|30|28|29|30|31|32|33|36|35|36|37|38|44|40|41|42|43|44|45|47|47|48|49|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n43|42|42|41|39|39|38|37|36|35|34|34|45|32|31|31|29|29|28|27|26|25|25|47|26|27|28|30|30|33|32|33|46|35|36|37|38|40|40|41|44|43|44|45|46|47|0\n41|41|40|39|39|37|36|35|34|33|32|30|29|28|28|26|26|25|24|23|23|38|24|25|27|27|31|29|30|31|32|33|34|35|36|37|38|43|40|42|42|43|0\n31|30|30|29|28|27|27|26|25|24|22|21|20|19|18|18|23|19|20|21|22|23|24|25|26|33|28|29|32|31|32|33|0\n48|46|46|45|44|44|43|41|41|39|34|33|32|32|35|31|30|29|29|37|28|27|26|26|40|27|28|38|30|31|36|33|34|35|36|37|38|39|40|42|42|43|49|45|47|47|48|49|0\n16|16|17|15|14|14|13|11|11|12|12|13|19|15|18|17|18|19|0\n27|27|26|26|23|23|22|20|19|19|18|17|16|16|25|17|18|21|20|21|22|24|24|25|29|28|28|29|0\n54|54|52|51|50|48|46|46|47|44|40|38|37|37|36|35|35|41|34|34|43|33|32|30|30|29|29|53|31|31|32|33|45|42|36|39|38|39|40|41|42|43|44|45|49|47|48|49|50|51|52|53|55|55|0\n23|22|22|24|20|19|17|16|16|15|14|14|21|15|18|17|18|19|20|21|25|23|24|25|0\n53|53|54|52|51|50|49|49|56|48|46|45|45|44|43|42|42|58|59|41|39|38|38|37|36|35|34|33|32|32|61|33|34|35|36|37|40|39|40|41|60|43|44|47|46|47|48|57|50|51|52|55|54|55|56|57|58|59|60|61|0\n37|36|34|33|33|32|32|38|39|30|29|27|27|28|26|25|24|23|22|22|41|23|24|25|26|31|28|29|30|31|40|35|34|35|36|37|38|39|40|41|0\n57|56|55|54|53|51|51|49|49|47|46|45|44|43|42|42|48|58|59|40|39|39|38|37|36|35|33|33|32|32|61|34|34|35|36|37|38|41|40|41|60|43|44|45|46|47|48|50|50|52|52|53|54|55|56|57|58|59|60|61|0\n50|49|47|47|46|46|51|45|42|42|41|41|40|39|38|37|36|33|33|34|32|29|29|28|28|31|53|30|30|31|32|35|34|35|36|37|38|39|40|44|43|43|44|45|52|48|48|49|50|51|52|53|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n22|20|20|19|18|16|16|15|14|13|13|23|14|15|17|17|18|19|21|21|22|23|0\n51|50|48|48|49|47|46|41|41|40|40|38|38|37|36|35|33|32|32|31|30|30|44|29|28|28|53|29|45|31|34|33|34|35|36|37|39|39|43|42|42|43|44|45|46|47|52|49|50|51|52|53|0\n29|27|25|25|24|22|22|23|28|30|31|21|19|19|18|18|33|20|20|21|32|23|24|26|26|27|28|29|30|31|32|33|0\n33|32|32|31|30|29|29|28|26|26|25|22|22|21|20|19|19|24|20|21|23|23|24|25|27|27|28|35|30|31|34|33|34|35|0\n14|14|13|11|9|9|10|12|10|11|12|13|15|15|0\n67|66|64|63|62|61|60|60|59|58|56|56|57|68|69|55|54|52|51|50|49|49|48|45|45|44|42|42|43|41|40|39|37|37|38|71|38|39|40|41|47|43|44|46|46|47|48|53|50|51|52|53|54|55|70|57|58|59|65|61|62|63|64|65|66|67|68|69|70|71|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n26|25|23|23|22|21|21|20|18|18|16|15|15|17|16|17|19|19|20|27|22|24|24|25|26|27|0\n28|27|27|24|24|22|22|21|20|19|18|17|16|16|26|17|18|19|20|21|23|23|25|25|26|29|28|29|0\n30|29|28|27|26|25|25|24|23|21|20|19|18|17|17|22|18|19|20|21|22|23|24|31|26|27|28|29|30|31|0\n32|31|30|30|27|26|26|25|24|23|20|19|19|21|18|18|29|22|20|21|22|23|24|25|28|27|28|29|33|31|32|33|0\n38|38|36|36|35|34|34|40|30|29|29|31|28|27|25|24|24|23|22|22|33|23|26|25|26|27|28|32|30|31|32|33|41|35|37|37|39|39|40|41|0\n46|45|44|44|42|39|38|38|40|37|35|34|34|33|32|31|30|29|27|26|25|25|28|43|26|27|28|29|30|31|32|33|36|35|36|37|41|39|40|41|42|43|47|45|46|47|0\n27|26|26|25|24|19|19|20|18|18|22|17|17|16|16|29|23|21|20|21|22|23|24|25|28|27|28|29|0\n46|43|42|42|44|41|41|40|38|38|36|34|33|32|31|31|30|29|27|26|26|25|25|37|28|27|28|29|30|35|32|33|34|35|36|37|39|39|40|47|45|43|44|45|46|47|0\n11|11|12|13|14|9|9|10|10|15|12|13|14|15|0\n32|32|33|31|31|29|28|26|26|25|24|21|20|20|22|19|19|30|23|21|22|23|24|25|27|27|28|29|30|35|34|33|34|35|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n26|26|25|21|21|22|20|19|18|15|15|16|17|24|16|17|18|19|20|23|22|23|24|25|27|27|0\n47|42|40|39|39|38|37|36|36|43|44|34|34|32|32|31|29|29|28|26|26|25|25|46|27|27|28|30|30|31|33|33|35|35|45|37|38|41|40|41|42|43|44|45|46|47|0\n15|14|14|13|12|12|17|11|11|19|18|13|16|15|16|17|18|19|0\n46|43|43|44|42|41|41|40|39|36|35|34|34|33|31|30|30|29|27|27|26|25|25|38|26|28|28|29|32|31|32|33|37|35|36|37|38|39|40|47|42|45|44|45|46|47|0\n35|32|32|31|27|27|26|25|25|29|24|23|23|34|22|22|21|20|20|21|37|36|24|30|26|28|28|29|30|31|33|33|34|35|36|37|0\n36|35|34|33|32|31|29|28|28|27|26|25|24|24|22|21|20|20|23|21|22|23|37|25|26|27|30|29|30|31|32|33|34|35|36|37|0\n55|54|53|53|52|51|50|49|49|48|47|46|43|41|41|40|39|38|38|44|37|35|35|34|32|32|31|30|30|31|33|33|34|36|36|37|45|39|40|42|42|43|44|45|46|47|48|57|50|51|52|56|54|55|56|57|0\n44|44|43|43|42|39|39|38|37|36|35|35|41|47|34|32|31|31|30|28|27|27|26|26|49|29|28|29|30|33|32|33|34|48|36|37|38|40|40|41|42|46|45|45|46|47|48|49|0\n44|44|42|40|39|37|37|36|35|35|34|33|32|30|29|28|27|27|26|25|24|24|43|25|26|31|28|29|30|31|32|33|34|41|36|38|38|39|40|41|42|43|45|45|0\n36|34|34|33|31|30|30|29|29|28|26|26|24|22|22|21|20|20|25|21|23|23|24|25|27|27|28|37|32|31|32|33|35|35|36|37|0\n7|5|5|6|6|7|0\n45|43|42|41|39|38|38|36|35|34|33|33|32|29|28|28|26|26|27|25|24|24|44|25|31|27|30|29|30|31|32|37|34|35|36|37|40|39|40|41|42|43|44|45|0\n23|22|22|20|19|17|17|18|16|15|14|14|25|15|16|21|18|19|20|21|24|23|24|25|0\n33|33|31|30|29|28|28|27|26|25|23|22|22|19|19|20|21|35|20|21|24|23|24|25|26|27|32|29|30|31|32|34|34|35|0\n47|46|45|45|44|44|42|41|39|37|35|35|36|34|33|33|32|30|29|28|28|27|26|26|43|27|31|29|30|31|32|40|34|38|36|37|38|39|40|41|42|43|49|48|46|47|48|49|0\n54|53|53|51|48|47|44|44|45|43|42|42|49|41|39|39|38|37|35|34|33|33|32|31|30|29|29|52|30|31|32|36|34|35|36|37|38|40|40|41|50|43|46|45|46|47|48|49|50|51|52|55|54|55|0\n66|65|65|64|62|61|61|60|58|58|59|68|69|56|55|54|53|50|50|51|49|48|48|47|46|45|45|71|42|42|41|40|40|39|38|38|73|39|44|41|43|43|44|72|46|47|57|49|52|51|52|53|54|55|56|57|70|59|60|63|62|63|64|67|66|67|68|69|70|71|72|73|0\n34|33|33|31|30|28|27|27|26|25|24|23|22|21|20|19|19|32|20|21|22|23|24|25|26|29|28|29|30|31|32|35|34|35|0\n17|16|14|14|12|11|10|10|13|11|12|13|15|15|16|17|0\n23|20|20|18|17|17|15|15|14|13|13|22|14|16|16|19|18|19|21|21|22|23|0\n23|22|22|24|19|19|15|15|16|17|14|14|21|18|16|17|18|20|20|21|25|23|24|25|0\n33|32|32|31|30|29|27|27|26|25|24|24|22|21|20|19|19|23|20|21|22|23|35|25|26|28|28|29|30|31|34|33|34|35|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n59|59|58|57|56|55|54|54|53|51|51|49|46|46|45|44|44|43|41|40|37|36|36|38|35|34|34|33|32|32|50|33|42|35|39|37|38|39|40|41|42|43|48|45|47|47|48|49|50|52|52|53|61|55|56|57|58|60|60|61|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n45|45|46|47|48|44|44|50|51|42|41|41|40|39|38|38|35|35|34|32|31|31|30|29|28|28|37|29|30|33|32|33|34|36|36|37|53|39|40|43|42|43|52|49|46|47|48|49|50|51|52|53|0\n42|41|37|37|38|36|35|34|34|40|43|33|31|31|29|27|27|26|26|25|24|24|45|25|30|28|28|29|30|32|32|33|44|35|36|39|38|39|40|41|42|43|44|45|0\n54|53|52|51|50|50|49|47|46|46|43|42|41|41|40|37|37|36|34|32|32|33|35|31|30|29|29|45|30|31|39|33|34|35|36|38|38|39|40|44|42|43|44|45|48|47|48|49|55|51|52|53|54|55|0\n29|27|26|24|24|25|28|23|22|21|20|19|18|17|17|31|18|19|20|21|22|23|30|25|26|27|28|29|30|31|0\n43|43|42|41|40|38|37|35|35|34|33|33|39|29|29|28|27|27|26|25|24|24|32|25|26|31|28|30|30|31|32|45|34|36|36|37|38|39|40|41|42|44|44|45|0\n42|41|41|39|38|37|34|33|33|32|32|31|30|28|28|27|25|25|24|23|23|40|24|26|26|27|29|29|30|31|36|35|34|35|36|37|38|39|40|43|42|43|0\n35|35|34|33|32|31|31|29|28|27|25|25|24|23|22|21|20|20|30|21|22|23|24|26|26|27|28|29|30|37|32|33|34|36|36|37|0\n28|27|25|24|23|23|21|20|20|19|18|17|16|16|29|17|18|19|22|21|22|26|24|25|26|27|28|29|0\n74|73|72|70|69|69|68|67|65|64|61|60|59|59|62|63|66|57|55|54|53|53|52|50|50|49|47|47|45|45|44|43|42|41|40|39|39|58|40|41|42|43|44|46|46|48|48|49|51|51|52|56|54|55|56|57|58|75|60|61|62|63|64|65|66|67|68|71|70|71|72|73|74|75|0\n54|52|52|51|50|49|48|47|47|46|45|43|42|41|38|37|36|35|35|39|34|33|30|30|31|29|29|44|32|31|32|33|34|40|36|37|38|39|40|41|42|43|44|45|46|55|48|49|50|51|53|53|54|55|0\n33|32|32|31|29|29|28|26|25|25|24|21|21|22|20|19|19|35|20|23|22|23|24|27|26|27|28|30|30|31|34|33|34|35|0\n36|34|33|33|32|31|31|30|28|27|22|22|23|21|21|25|20|20|29|26|24|23|24|25|26|27|28|29|30|37|32|35|34|35|36|37|0\n25|21|20|20|19|18|17|16|15|14|14|23|24|15|16|17|18|19|22|21|22|23|24|25|0\n38|38|37|35|34|33|33|32|30|27|26|25|23|23|24|28|22|22|21|21|31|29|24|25|26|27|28|29|30|31|32|36|34|35|36|37|39|39|0\n40|39|38|37|36|35|35|33|31|31|30|28|26|25|24|23|23|27|22|22|34|29|24|25|26|27|28|29|30|32|32|33|34|41|36|37|38|39|40|41|0\n16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0\n78|75|75|74|72|72|71|69|68|68|70|67|65|65|64|63|62|62|61|59|59|57|56|55|53|52|52|51|49|49|48|44|44|45|46|43|42|41|41|58|42|43|47|45|46|47|48|50|50|51|54|53|54|55|56|57|58|60|60|61|79|63|64|66|66|67|77|69|70|71|73|73|74|76|76|77|78|79|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n25|23|22|21|20|18|18|15|15|16|14|14|24|17|16|17|19|19|20|21|22|23|24|25|0\n28|28|26|25|24|23|22|20|20|19|18|17|16|16|27|17|18|19|21|21|22|23|24|25|26|27|29|29|0\n26|26|24|23|20|19|19|21|17|17|16|15|15|25|16|18|18|22|20|21|22|23|24|25|27|27|0\n28|28|26|23|23|24|21|21|20|18|18|17|16|16|27|17|19|19|20|22|22|25|24|25|26|27|29|29|0\n71|70|68|68|67|66|65|64|63|63|72|73|61|61|60|59|57|57|56|56|55|51|50|50|52|49|48|46|46|44|44|43|41|41|40|39|39|54|40|42|42|43|45|45|47|47|48|49|53|51|52|53|54|55|75|58|58|59|60|62|62|74|64|65|66|67|69|69|70|71|72|73|74|75|0\n97|96|96|98|93|93|92|91|91|90|89|88|87|86|86|100|101|83|83|82|81|80|79|78|77|77|76|75|73|72|72|71|70|68|68|67|65|63|60|60|61|62|59|58|58|57|55|55|54|53|53|103|54|56|56|57|66|59|64|61|62|63|64|65|66|67|69|69|70|71|74|73|74|75|76|85|78|79|80|81|82|84|84|85|102|87|88|89|90|95|92|94|94|95|99|97|98|99|100|101|102|103|0\n25|23|23|24|22|20|20|19|19|18|15|15|16|17|16|17|18|27|21|21|22|26|24|25|26|27|0\n63|61|58|58|57|57|56|54|52|52|53|51|49|47|47|45|39|39|40|41|42|43|44|38|37|36|36|33|33|34|35|62|34|35|50|37|38|46|40|41|42|43|44|45|46|48|48|49|50|51|55|53|54|55|56|60|59|59|60|61|62|63|0\n27|27|26|26|25|24|22|20|20|19|18|17|16|16|23|17|18|19|21|21|22|23|24|25|29|28|28|29|0\n83|83|82|79|78|77|77|80|76|75|75|85|74|72|72|71|71|87|69|68|68|67|66|65|64|64|89|61|61|60|58|57|56|55|54|53|53|59|52|50|49|49|48|47|47|91|48|51|50|51|52|63|54|55|56|57|58|59|60|62|62|63|90|65|66|67|70|69|70|88|73|73|74|86|76|81|78|79|80|81|82|84|84|85|86|87|88|89|90|91|0\n21|20|19|17|17|18|16|16|14|13|13|15|14|15|23|22|18|19|20|21|22|23|0\n65|62|62|61|60|59|57|57|54|54|55|53|48|47|47|49|46|44|44|42|42|43|51|40|40|39|37|37|36|34|34|35|64|35|36|38|38|39|41|41|52|43|45|45|46|50|48|49|50|51|52|53|56|55|56|58|58|59|60|61|63|63|64|65|0\n33|33|31|31|28|27|26|25|24|23|22|20|20|19|19|29|30|35|21|21|22|23|24|25|26|27|28|29|30|32|32|34|34|35|0\n43|42|42|41|39|39|38|35|35|36|33|33|34|31|28|28|29|27|26|25|24|24|32|25|26|27|30|29|30|31|32|45|34|37|36|37|38|40|40|41|44|43|44|45|0\n44|44|42|36|35|35|37|33|33|32|31|30|29|29|39|28|28|26|26|25|24|24|43|25|27|27|41|40|30|31|32|34|34|38|36|37|38|39|40|41|42|43|45|45|0\n44|43|42|41|41|40|38|38|36|34|33|30|29|28|28|31|27|27|26|25|24|24|37|25|26|35|32|29|30|31|32|33|34|35|36|37|39|39|40|45|42|43|44|45|0\n16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0\n42|42|38|37|36|30|30|31|32|33|34|35|29|28|28|27|26|25|24|23|23|41|24|25|26|27|40|29|39|31|32|33|34|35|36|37|38|39|40|41|43|43|0\n17|14|13|12|12|11|10|10|16|11|15|13|14|15|16|17|0\n30|29|27|27|25|25|26|24|22|22|20|19|18|17|17|21|18|19|20|21|23|23|24|31|26|28|28|29|30|31|0\n7|6|5|5|6|7|0\n83|81|80|79|78|77|76|75|73|72|72|71|66|64|64|65|67|63|62|61|61|69|60|50|50|51|48|48|47|46|46|53|45|45|55|44|44|57|58|43|43|82|59|56|54|47|49|49|52|51|52|53|54|55|56|57|58|59|60|70|62|63|68|65|66|67|68|69|70|71|74|73|74|75|76|77|78|79|80|81|82|83|0\n51|51|52|49|46|45|45|47|43|43|42|40|38|37|36|35|34|32|31|31|30|29|29|39|28|28|50|41|30|33|32|33|34|35|36|37|38|39|40|41|42|44|44|48|46|47|48|49|50|53|52|53|0\n91|90|89|88|87|86|86|85|83|83|79|79|78|77|77|81|76|74|74|73|73|93|72|71|70|70|68|65|64|64|63|61|61|62|60|59|58|57|56|54|54|53|52|51|50|49|49|69|50|51|52|53|55|55|56|57|58|59|60|67|62|63|66|65|66|67|68|69|95|71|72|94|75|75|76|82|78|80|80|81|82|84|84|85|92|87|88|89|90|91|92|93|94|95|0\n11|10|9|7|7|8|8|9|10|11|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n50|50|49|47|46|45|44|43|42|41|37|37|38|36|35|34|32|31|31|30|30|29|27|27|28|48|28|29|40|33|32|33|34|35|36|39|38|39|40|41|42|43|44|45|46|47|48|49|51|51|0\n41|39|37|36|35|34|34|33|28|28|29|30|31|27|26|25|23|22|22|24|40|23|24|25|26|27|32|29|30|31|32|33|38|35|36|37|38|39|40|41|0\n60|58|57|57|56|54|54|53|51|51|52|50|49|47|46|45|43|42|42|41|40|39|38|37|36|34|33|33|32|32|48|35|34|35|36|37|38|39|40|41|44|43|44|45|46|47|48|49|50|61|52|53|55|55|56|59|58|59|60|61|0\n40|37|37|38|39|34|34|33|32|30|28|28|29|27|25|24|24|23|22|22|36|23|26|25|26|27|31|29|30|31|32|33|35|35|36|41|38|39|40|41|0\n24|23|23|20|20|19|18|15|15|16|14|14|22|17|16|17|18|19|21|21|22|25|24|25|0\n40|40|39|37|37|32|32|31|31|34|30|29|28|28|36|27|25|24|24|23|23|43|26|25|26|27|42|29|30|35|33|33|34|35|36|38|38|39|41|41|42|43|0\n48|47|44|44|43|41|40|37|37|38|36|35|35|42|34|33|33|32|28|28|27|27|30|26|26|31|29|29|30|31|32|49|34|46|36|39|38|39|40|41|42|43|45|45|46|47|48|49|0\n32|32|29|28|28|27|25|25|24|23|22|20|20|19|18|18|31|19|21|21|22|23|24|26|26|27|30|29|30|31|33|33|0\n10|8|7|7|9|11|8|9|10|11|0\n38|38|35|35|34|33|32|31|30|28|27|27|26|25|24|23|21|21|22|37|22|23|24|25|26|29|28|29|30|31|32|33|34|36|36|37|39|39|0\n21|16|16|15|14|14|18|13|12|12|20|13|19|15|17|17|18|19|20|21|0\n28|27|26|25|24|23|23|22|21|19|18|16|16|17|20|17|18|19|20|21|22|29|24|25|26|27|28|29|0\n40|40|38|37|34|33|33|35|29|29|28|28|31|26|26|25|24|22|22|23|39|23|24|25|27|27|32|30|30|31|32|36|34|35|36|37|38|39|41|41|0\n41|39|39|38|37|35|35|34|34|42|43|32|30|30|29|28|28|27|26|24|24|25|45|25|26|27|33|29|31|31|32|33|44|36|36|37|38|40|40|41|42|43|44|45|0\n29|26|26|25|23|23|24|28|22|21|20|19|18|18|17|17|31|19|20|21|22|30|24|25|27|27|28|29|30|31|0\n39|38|37|33|32|32|31|31|35|30|28|28|27|26|25|24|23|22|21|21|22|23|24|25|26|27|29|29|30|36|34|33|34|35|36|37|38|39|0\n39|39|37|33|33|34|35|32|31|30|29|29|38|41|27|27|26|24|24|23|23|43|25|25|26|28|28|42|30|31|32|36|34|35|36|37|38|40|40|41|42|43|0\n27|27|26|25|25|23|22|21|20|19|17|17|16|16|24|18|18|19|20|21|22|23|24|29|26|28|28|29|0\n66|65|64|64|62|61|60|58|57|57|56|54|51|51|49|48|48|47|47|53|46|45|44|43|41|41|40|39|37|36|36|35|35|63|38|37|38|39|40|42|42|43|44|45|46|55|50|49|50|52|52|53|54|55|56|59|58|59|60|61|62|63|67|65|66|67|0\n30|30|27|25|25|26|24|24|22|20|20|19|18|17|17|23|18|19|21|21|22|23|29|28|26|27|28|29|31|31|0\n16|14|14|15|12|10|10|11|13|11|12|13|17|15|16|17|0\n33|32|31|31|34|35|30|29|27|26|26|25|23|23|22|21|20|20|37|21|22|24|24|25|28|27|28|29|30|36|32|33|34|35|36|37|0\n32|30|30|31|28|27|24|23|22|22|25|21|20|19|18|18|29|19|20|21|26|23|24|25|26|27|28|29|33|31|32|33|0\n60|55|54|53|52|51|51|56|50|49|48|47|47|58|45|45|44|42|41|40|40|39|38|37|37|36|33|33|32|32|35|34|34|35|36|61|38|39|43|41|42|43|44|46|46|59|48|49|50|57|52|53|54|55|56|57|58|59|60|61|0\n28|26|26|25|25|23|22|20|20|19|17|16|16|18|24|17|18|19|21|21|22|23|24|29|27|27|28|29|0\n26|25|24|22|22|21|21|19|18|16|16|15|15|20|17|17|18|19|20|27|23|23|24|25|26|27|0\n49|47|46|45|44|43|42|41|39|38|36|35|35|33|32|32|31|30|30|29|27|27|26|26|48|28|28|29|40|31|34|33|34|37|36|37|38|39|40|41|42|43|44|45|46|47|48|49|0\n49|47|45|44|43|41|41|42|40|37|36|36|38|34|34|33|32|30|29|28|27|27|26|26|48|31|28|29|30|31|32|33|35|35|39|37|38|39|40|46|42|43|44|45|46|47|48|49|0\n32|32|29|27|27|26|24|22|22|23|21|21|20|19|18|18|31|19|20|30|25|23|24|25|26|28|28|29|30|31|33|33|0\n22|21|19|17|17|18|16|16|13|13|14|15|14|15|23|20|18|19|20|21|22|23|0\n35|35|34|32|32|31|30|30|28|27|26|25|23|23|22|21|20|20|29|21|22|24|24|25|26|27|28|29|37|31|33|33|34|36|36|37|0\n16|16|15|14|13|13|12|11|11|19|12|18|14|15|17|17|18|19|0\n74|73|73|69|68|67|66|66|70|65|64|62|62|61|57|57|56|55|54|53|52|52|59|51|50|49|48|46|43|43|44|45|42|40|40|39|39|72|41|41|42|47|44|45|46|47|48|49|50|51|60|53|54|55|56|58|58|59|60|61|63|63|64|65|71|67|68|69|70|71|72|75|74|75|0\n73|72|71|70|68|65|65|66|64|62|62|61|60|59|59|57|57|56|54|54|53|51|51|50|49|49|74|75|47|47|45|45|44|43|41|41|40|40|77|42|42|43|44|46|46|48|48|76|50|52|52|53|55|55|56|58|58|69|60|61|63|63|64|67|66|67|68|69|70|71|72|73|74|75|76|77|0\n60|59|58|57|57|61|56|54|53|52|50|50|51|49|48|47|47|46|44|42|41|41|40|38|38|37|36|34|34|33|33|45|35|35|36|37|39|39|40|43|42|43|44|45|46|63|48|49|55|51|52|53|54|55|56|62|58|59|60|61|62|63|0\n41|40|34|34|32|32|33|36|37|30|29|28|28|27|25|24|24|23|22|22|39|23|26|25|26|27|31|29|30|31|38|33|35|35|36|37|38|39|40|41|0\n24|23|23|21|21|22|20|20|16|16|17|15|15|19|18|17|18|19|27|26|22|25|24|25|26|27|0\n87|84|84|80|80|81|82|79|77|77|76|74|72|72|73|71|70|68|66|65|65|64|64|63|61|58|58|56|56|57|60|55|53|52|52|51|50|49|47|47|46|45|45|86|46|48|48|49|50|51|54|53|54|55|62|57|59|59|60|61|62|63|69|67|66|67|68|69|70|71|75|73|74|75|76|78|78|79|83|81|82|83|85|85|86|87|0\n53|52|51|50|49|48|45|45|44|44|47|54|55|42|42|41|40|39|38|37|35|35|34|32|31|30|30|33|57|31|32|33|34|36|36|37|38|39|40|41|43|43|56|46|46|47|48|49|50|51|52|53|54|55|56|57|0\n15|14|14|13|11|11|12|10|10|17|12|13|16|15|16|17|0\n39|39|38|37|35|34|33|32|31|31|36|41|42|43|29|29|28|27|26|25|24|24|45|25|26|27|28|30|30|44|32|33|34|35|36|37|38|40|40|41|42|43|44|45|0\n54|53|52|50|49|48|48|47|46|45|44|43|41|40|40|39|38|38|37|35|35|33|31|31|30|29|29|34|30|32|32|33|34|36|36|37|55|39|42|41|42|43|44|45|46|47|51|49|50|51|52|53|54|55|0\n33|33|32|30|29|28|28|27|24|24|25|23|20|20|21|19|19|35|22|21|22|23|26|25|26|27|31|29|30|31|32|34|34|35|0\n29|28|28|27|25|25|24|22|22|20|19|19|18|17|17|31|18|21|20|21|23|23|24|26|26|27|30|29|30|31|0\n51|50|50|49|47|47|48|45|45|44|43|43|54|55|40|40|39|38|38|34|34|35|36|33|32|30|30|31|57|31|32|33|37|35|36|37|42|39|41|41|42|56|44|46|46|53|48|49|52|51|52|53|54|55|56|57|0\n70|67|67|66|65|65|62|61|60|59|59|63|64|58|57|54|54|52|52|51|50|49|47|46|45|45|44|40|40|41|42|38|37|37|39|56|38|39|43|41|42|43|44|48|46|47|48|49|50|51|53|53|55|55|56|57|58|71|60|61|62|63|64|69|66|68|68|69|70|71|0\n16|14|13|12|12|11|10|10|17|11|15|13|14|15|16|17|0\n27|26|25|25|24|20|20|21|22|19|18|16|16|17|29|17|18|19|23|21|22|23|24|28|26|27|28|29|0\n9|8|8|7|7|11|10|9|10|11|0\n26|26|24|22|21|21|20|18|18|17|16|15|15|25|16|17|19|19|20|23|22|23|24|25|27|27|0\n32|31|30|29|28|27|26|25|25|24|20|20|19|19|18|18|23|22|21|21|22|23|24|33|26|27|28|29|30|31|32|33|0\n51|47|45|45|46|48|49|44|41|41|40|39|38|37|37|36|35|33|33|32|31|30|29|28|27|27|28|29|30|31|32|34|34|35|36|43|38|39|40|42|42|43|44|50|46|47|48|49|50|51|0\n39|37|35|35|34|32|32|31|30|28|26|25|23|23|24|27|22|21|21|38|22|29|24|25|26|27|28|29|30|31|33|33|34|36|36|37|38|39|0\n22|22|20|19|17|17|16|14|14|13|13|21|15|15|16|18|18|19|20|21|23|23|0\n49|48|47|46|45|44|44|43|42|40|40|41|39|38|37|36|35|34|32|31|30|30|29|28|28|52|53|29|33|31|32|33|34|35|36|37|38|39|51|41|42|43|50|45|46|47|48|49|50|51|52|53|0\n60|57|57|58|54|53|52|52|55|51|50|50|49|47|46|43|42|42|41|38|38|39|37|37|36|34|34|33|32|32|48|33|35|35|36|45|40|39|40|41|44|43|44|45|46|47|48|49|61|51|56|53|54|55|56|59|58|59|60|61|0\n23|21|19|19|18|17|15|15|13|13|14|22|14|16|16|17|18|20|20|21|22|23|0\n48|47|45|45|46|44|41|39|38|38|37|35|35|33|33|34|32|31|30|29|28|27|26|26|43|27|28|29|30|31|32|42|34|36|36|37|40|39|40|41|42|43|44|49|46|47|48|49|0\n29|27|25|25|24|23|22|21|20|18|18|17|16|16|28|17|19|19|20|21|22|23|24|26|26|27|28|29|0\n21|17|17|15|15|13|13|12|12|19|20|14|14|16|16|18|18|19|20|21|0\n6|6|7|8|9|7|8|9|0\n56|56|55|53|53|52|51|50|50|47|47|48|46|45|42|42|43|44|59|37|37|38|35|35|34|33|33|40|32|32|61|41|34|36|36|39|38|39|40|41|60|43|44|45|46|49|48|49|58|51|52|54|54|55|57|57|58|59|60|61|0\n22|20|20|19|18|17|16|16|13|13|14|15|14|15|23|17|18|19|21|21|22|23|0\n32|30|30|29|28|28|33|27|26|25|24|23|22|21|19|19|20|35|20|21|22|23|24|25|26|27|34|29|31|31|32|33|34|35|0\n11|10|9|8|7|7|8|9|10|11|0\n63|62|60|60|59|57|56|56|55|55|64|54|53|52|49|48|47|47|50|46|45|45|66|67|44|43|41|41|39|39|38|37|36|36|69|37|38|40|40|42|42|43|44|68|46|51|48|49|50|51|52|53|54|65|58|57|58|59|61|61|62|63|64|65|66|67|68|69|0\n20|19|17|17|18|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0\n32|31|30|29|27|26|26|25|24|23|22|21|20|19|18|18|33|19|20|21|22|23|24|25|28|27|28|29|30|31|32|33|0\n50|49|46|45|45|47|44|42|42|43|41|40|38|37|36|35|34|32|32|31|30|29|28|27|27|39|28|29|30|31|33|33|34|35|36|37|38|39|40|41|51|43|44|48|46|47|48|49|50|51|0\n24|23|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|25|24|25|0\n19|18|17|14|14|13|12|11|11|16|12|13|15|15|16|17|18|19|0\n11|9|7|7|8|10|8|9|10|11|0\n20|20|21|19|18|18|16|14|14|13|13|17|15|15|16|17|23|19|22|21|22|23|0\n38|36|36|33|33|34|31|31|30|29|29|39|40|28|27|25|25|23|23|24|42|43|24|26|26|27|28|41|30|32|32|35|34|35|37|37|38|39|40|41|42|43|0\n38|37|36|35|35|34|28|28|29|27|26|26|31|32|25|24|24|23|22|22|41|23|40|25|33|27|30|29|30|31|32|33|34|39|36|37|38|39|40|41|0\n55|52|51|51|50|49|48|47|46|44|42|41|41|40|36|36|35|34|34|33|33|39|32|30|29|29|31|54|30|31|32|45|38|35|37|37|38|39|40|43|42|43|44|45|46|47|48|49|50|53|52|53|54|55|0\n17|16|16|14|14|15|11|11|12|13|12|13|19|15|18|17|18|19|0\n68|67|67|66|65|64|63|62|60|59|58|57|57|56|55|55|70|71|51|50|50|52|49|49|48|46|46|45|43|43|42|41|40|39|38|38|73|39|40|41|42|44|44|45|47|47|48|54|53|51|52|53|54|72|56|61|58|59|60|61|62|63|64|65|66|69|68|69|70|71|72|73|0\n37|33|29|29|28|28|31|32|34|26|25|25|24|23|22|21|20|20|36|21|22|23|24|27|26|27|35|30|30|31|32|33|34|35|36|37|0\n19|19|17|16|16|15|14|13|12|12|21|13|14|15|18|17|18|20|20|21|0\n16|16|17|18|15|13|12|11|11|14|12|13|14|15|19|17|18|19|0\n46|45|45|44|43|41|39|39|38|36|36|35|33|32|32|31|28|27|27|29|26|25|25|42|26|30|28|29|30|31|34|33|34|35|37|37|38|40|40|41|42|43|44|47|46|47|0\n60|59|59|55|55|54|52|51|51|50|47|47|48|46|46|45|43|42|42|41|38|37|36|36|39|34|34|33|32|32|58|33|35|35|40|37|38|39|40|41|44|43|44|45|57|49|48|49|50|53|52|53|54|56|56|57|58|61|60|61|0\n40|39|39|38|37|36|35|34|33|32|31|31|42|43|30|29|28|26|25|25|24|24|45|27|26|27|28|29|30|44|32|33|34|35|36|37|38|41|40|41|42|43|44|45|0\n34|34|33|30|29|29|31|28|26|26|25|24|24|36|37|23|22|21|21|39|22|23|38|25|27|27|28|32|30|31|32|33|35|35|36|37|38|39|0\n9|6|6|7|8|7|8|9|0\n41|40|40|38|38|39|36|33|33|32|29|29|28|28|27|27|26|25|24|23|23|37|24|25|26|35|31|30|30|31|32|34|34|35|36|37|43|39|42|41|42|43|0\n33|31|29|27|27|28|26|26|25|23|23|20|19|19|18|18|22|21|20|21|22|24|24|25|32|30|28|29|30|31|32|33|0\n58|57|56|55|54|53|53|52|47|46|46|44|44|45|49|43|41|41|40|40|38|37|36|35|33|32|32|31|31|39|34|33|34|35|36|37|38|39|51|42|42|43|50|45|48|47|48|49|50|51|52|59|54|55|56|57|58|59|0\n42|41|40|40|37|37|36|32|32|31|30|30|34|29|27|26|26|25|24|23|23|39|24|25|28|27|28|29|35|31|33|33|34|35|36|38|38|39|43|41|42|43|0\n26|26|25|24|22|22|23|28|29|21|19|19|17|17|18|31|18|20|20|21|30|23|24|25|27|27|28|29|30|31|0\n50|48|48|47|46|46|45|43|43|38|37|37|39|36|31|30|30|32|29|29|34|28|27|27|41|42|28|35|33|31|32|33|34|35|36|40|38|39|40|41|42|44|44|45|51|47|49|49|50|51|0\n35|33|31|29|29|28|27|26|26|22|22|23|24|21|19|19|20|34|20|21|25|23|24|25|32|27|28|30|30|31|32|33|34|35|0\n25|22|21|20|19|18|18|16|16|15|14|14|24|15|17|17|23|19|20|21|22|23|24|25|0\n33|30|29|28|28|27|24|22|22|23|25|19|19|20|18|18|32|21|20|21|26|23|24|25|26|27|31|29|30|31|32|33|0\n35|34|32|31|30|26|26|24|24|25|28|23|21|21|20|19|19|33|20|22|22|23|29|25|27|27|28|29|30|31|32|33|34|35|0\n54|53|53|52|49|49|50|48|46|46|45|44|42|42|41|40|39|39|56|57|38|35|35|34|34|33|32|31|31|59|32|33|37|36|36|37|38|58|40|41|43|43|44|45|47|47|48|51|50|51|52|55|54|55|56|57|58|59|0\n61|60|57|57|56|54|54|53|49|49|50|51|48|48|46|44|43|42|41|40|39|38|38|37|34|33|33|35|32|32|47|36|34|35|36|37|45|39|40|41|42|43|44|45|46|47|59|52|50|51|52|53|55|55|56|58|58|59|60|61|0\n21|21|20|19|18|18|17|15|15|13|13|14|14|16|16|17|23|19|20|22|22|23|0\n49|48|47|47|46|45|44|43|42|41|39|39|38|38|35|35|34|33|32|30|30|29|28|27|27|37|28|29|31|31|32|33|34|36|36|37|51|40|40|41|42|43|44|45|46|50|48|49|50|51|0\n31|26|26|27|25|24|23|22|22|29|20|19|18|17|17|21|18|19|20|21|30|23|24|25|28|27|28|29|30|31|0\n8|8|9|7|7|11|10|9|10|11|0\n24|23|23|22|21|21|26|20|20|28|17|16|16|18|19|17|18|19|29|27|22|25|24|25|26|27|28|29|0\n43|40|40|38|38|32|32|31|31|30|28|28|29|35|36|26|25|25|24|23|23|42|24|27|26|27|37|29|30|34|33|33|34|35|36|37|39|39|41|41|42|43|0\n44|43|43|41|40|40|39|38|37|36|34|34|33|32|30|30|29|28|26|26|25|24|24|25|27|27|28|29|31|31|32|33|35|35|36|37|38|39|42|41|42|45|44|45|0\n34|33|32|31|29|29|28|27|26|25|25|24|23|22|20|19|19|21|20|21|22|23|24|35|26|27|28|30|30|31|32|33|34|35|0\n51|50|49|48|47|46|45|45|52|53|41|40|38|38|37|37|42|43|36|34|34|32|32|31|30|29|29|55|30|31|33|33|35|35|36|44|39|39|40|41|42|43|44|54|46|47|48|49|50|51|52|53|54|55|0\n8|8|6|6|7|7|9|9|0\n66|63|63|62|61|60|59|57|56|56|55|54|54|53|51|49|49|50|48|47|47|46|45|43|41|40|39|39|38|37|35|35|36|44|36|37|38|42|40|41|42|43|44|45|46|67|48|52|50|51|52|53|65|55|58|57|58|59|60|61|62|64|64|65|66|67|0\n17|16|14|13|12|11|10|10|15|11|12|13|14|15|16|17|0\n8|6|6|7|9|7|8|9|0\n25|25|24|23|23|20|20|18|18|17|16|15|15|22|16|17|19|19|21|21|22|27|24|26|26|27|0\n24|23|23|21|19|18|17|16|16|15|14|14|22|15|20|17|18|19|20|21|22|25|24|25|0\n28|27|27|25|23|22|22|21|19|18|17|17|16|16|26|20|18|19|20|21|24|23|24|25|26|29|28|29|0\n46|46|45|45|44|44|49|42|42|41|41|51|40|39|38|37|36|33|33|34|32|31|29|29|28|28|53|30|30|31|32|35|34|35|36|37|38|39|40|52|43|43|50|48|47|47|48|49|50|51|52|53|0\n14|13|12|11|10|10|9|9|15|11|12|13|14|15|0\n65|62|61|61|63|64|59|58|58|55|55|56|57|52|51|49|48|47|47|46|46|45|44|43|42|41|38|38|37|36|36|35|35|54|40|37|39|39|40|41|42|43|44|45|53|50|48|49|50|51|52|53|54|67|56|57|60|59|60|66|62|63|64|65|66|67|0\n19|19|18|17|17|21|16|14|14|13|13|23|15|15|16|22|18|20|20|21|22|23|0\n15|13|12|11|9|9|10|14|10|11|12|13|14|15|0\n57|55|52|50|49|49|48|48|53|47|46|45|44|43|42|41|39|38|38|37|36|35|34|32|32|31|30|30|56|31|33|33|34|35|36|37|40|39|40|41|42|43|44|45|46|47|54|51|50|51|52|53|54|55|56|57|0\n38|37|36|35|35|32|32|31|29|29|28|27|26|25|24|23|22|21|21|34|22|23|24|25|26|27|28|30|30|31|33|33|34|39|36|37|38|39|0\n10|10|11|9|9|8|8|13|12|11|12|13|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n19|18|17|16|15|14|11|11|12|13|12|13|14|15|16|17|18|19|0\n29|27|26|25|25|28|30|31|24|21|21|20|20|19|18|18|33|19|23|22|22|23|24|32|26|27|28|29|30|31|32|33|0\n40|40|39|38|37|37|36|33|33|32|31|30|29|28|28|35|43|26|26|25|24|24|45|25|27|27|44|29|30|31|32|34|34|35|36|42|38|39|41|41|42|43|44|45|0\n27|22|22|23|24|21|19|18|18|17|16|15|15|26|16|17|20|19|20|21|25|23|24|25|26|27|0\n59|58|58|57|54|54|55|53|52|51|50|47|47|48|46|45|45|61|42|41|41|43|40|38|38|36|36|35|34|33|33|63|34|35|37|37|39|39|40|44|42|43|44|62|46|49|48|49|50|51|52|53|56|55|56|57|60|59|60|61|62|63|0\n13|12|12|10|10|9|9|15|11|11|14|13|14|15|0\n40|39|38|37|36|35|35|34|33|30|30|28|28|27|26|25|24|23|22|22|32|23|24|25|26|27|29|29|31|31|32|33|34|41|36|37|38|39|40|41|0\n44|44|43|42|40|40|39|36|36|37|35|35|46|47|34|31|31|32|30|29|28|27|26|26|49|27|28|29|30|33|32|33|34|48|38|37|38|39|41|41|42|43|45|45|46|47|48|49|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n39|37|36|35|34|32|31|31|30|29|28|27|26|25|24|22|22|21|21|38|23|23|24|25|26|27|28|29|30|33|32|33|34|35|36|37|38|39|0\n48|48|45|45|44|43|42|41|40|38|37|37|36|34|33|33|32|31|29|29|28|27|26|26|47|27|28|30|30|31|32|35|34|35|36|39|38|39|40|41|42|43|44|46|46|47|49|49|0\n44|44|42|36|35|35|34|32|32|33|38|30|30|29|28|28|40|26|26|25|24|24|43|25|27|27|41|29|31|31|39|33|34|37|36|37|38|39|40|41|42|43|45|45|0\n41|40|37|37|36|36|34|32|32|31|27|27|26|24|24|25|23|23|22|22|35|30|29|25|26|28|28|29|30|31|33|33|34|35|39|38|38|39|40|41|0\n71|70|68|67|65|65|66|64|63|62|61|60|59|58|57|57|72|73|56|54|54|53|50|50|51|49|48|45|45|46|44|43|39|39|40|41|42|75|40|41|42|43|44|47|46|47|48|49|52|51|52|53|55|55|56|74|58|59|60|61|62|63|64|69|66|67|68|69|70|71|72|73|74|75|0\n9|7|6|6|8|7|8|9|0\n51|51|50|50|49|47|46|46|40|40|39|36|36|37|33|33|34|32|32|42|31|31|30|29|28|28|45|29|30|44|43|35|34|35|38|37|38|39|41|41|42|43|44|45|48|47|48|49|53|52|52|53|0\n74|72|72|71|69|69|68|66|65|65|64|62|62|61|60|58|58|57|56|56|75|54|53|52|52|50|50|49|48|46|46|45|43|43|42|40|40|41|77|41|42|44|44|45|47|47|48|49|51|51|55|53|54|55|76|57|59|59|60|61|63|63|64|67|66|67|68|70|70|71|73|73|74|75|76|77|0\n29|27|26|25|23|23|22|21|19|17|17|18|16|16|28|20|18|19|20|21|22|24|24|25|26|27|28|29|0\n33|31|30|29|28|26|24|24|25|23|22|20|20|19|18|18|32|19|21|21|22|23|27|25|26|27|28|29|30|31|32|33|0\n60|59|59|58|56|54|54|55|57|53|52|52|50|49|48|46|45|45|44|43|41|41|39|38|38|37|36|35|34|33|33|51|34|35|36|37|40|39|40|42|42|43|44|47|46|47|48|49|50|51|63|53|62|55|56|57|58|61|60|61|62|63|0\n24|23|23|20|19|19|18|17|16|15|14|14|22|15|16|17|18|21|20|21|22|25|24|25|0\n41|40|39|38|37|37|36|34|34|33|31|30|30|32|29|27|27|25|23|23|24|26|24|25|26|28|28|29|43|31|32|33|35|35|36|42|38|39|40|41|42|43|0\n33|30|30|29|28|25|24|24|26|23|22|21|20|18|18|19|32|19|20|21|22|23|27|25|26|27|28|29|31|31|32|33|0\n30|30|31|29|28|28|25|25|24|22|21|21|20|19|18|18|27|19|20|23|22|23|24|26|26|27|33|29|32|31|32|33|0\n36|35|35|33|32|30|30|29|27|26|26|24|23|23|22|20|20|21|34|21|22|25|24|25|28|27|28|29|31|31|32|33|34|37|36|37|0\n41|41|42|37|34|34|35|33|33|38|31|30|30|28|27|27|26|25|24|23|23|40|24|25|26|29|28|29|32|31|32|39|36|35|36|37|38|39|40|43|42|43|0\n25|24|24|23|23|21|20|19|17|17|16|15|15|22|16|18|18|19|20|21|22|27|26|25|26|27|0\n42|37|36|36|38|35|34|34|40|33|33|32|31|29|27|25|25|26|24|23|23|30|24|28|26|27|28|29|30|31|32|43|41|35|39|37|38|39|40|41|42|43|0\n43|41|41|37|36|34|34|35|38|32|32|30|29|28|27|27|26|25|24|23|23|40|24|25|26|31|28|29|30|31|33|33|39|35|36|37|38|39|40|42|42|43|0\n45|43|42|41|41|36|36|35|34|32|31|31|30|28|28|29|38|27|26|25|24|24|40|25|26|27|39|29|30|33|32|33|34|35|37|37|38|39|40|44|42|43|44|45|0\n15|14|14|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n20|20|21|19|19|18|16|14|14|13|13|17|15|15|16|17|18|23|22|21|22|23|0\n55|54|54|56|57|52|52|53|49|47|47|46|46|50|51|60|61|45|43|42|42|41|40|38|37|37|35|35|34|33|33|63|34|36|36|39|38|39|40|41|44|43|44|45|62|48|48|49|50|51|59|53|58|55|56|57|58|59|60|61|62|63|0\n33|32|30|30|28|25|25|24|23|22|21|20|20|19|18|18|29|19|27|21|22|23|24|26|26|27|28|29|31|31|32|33|0\n11|8|8|7|7|10|9|9|10|11|0\n33|32|32|34|31|29|29|28|28|36|26|25|23|23|22|21|20|20|27|21|22|24|24|25|26|27|37|30|30|31|35|33|34|35|36|37|0\n51|50|50|49|47|46|45|45|48|42|42|41|40|39|37|37|36|35|34|33|32|30|29|29|28|28|44|31|30|31|32|33|34|35|36|38|38|39|40|41|43|43|44|53|46|47|48|49|52|51|52|53|0\n15|14|12|11|10|10|9|9|13|11|12|13|14|15|0\n33|32|31|31|30|29|28|27|27|26|25|24|22|21|20|19|19|23|20|21|22|23|24|25|26|35|28|29|30|34|32|33|34|35|0\n29|26|25|25|24|23|22|21|21|19|18|17|16|16|20|17|18|19|20|28|22|23|24|27|26|27|28|29|0\n74|74|73|71|70|69|68|68|67|65|63|63|61|61|59|59|56|55|55|54|52|51|51|50|49|46|46|47|45|45|44|43|41|41|40|39|39|66|40|42|42|43|44|58|48|47|48|49|50|53|52|53|54|57|56|57|58|60|60|62|62|64|64|65|66|67|72|69|70|71|72|73|75|75|0\n20|19|18|17|16|15|14|13|13|12|12|21|14|15|16|17|18|19|20|21|0\n62|60|60|58|58|56|56|55|54|52|52|51|50|50|48|48|46|46|44|43|42|41|39|38|38|37|36|35|33|33|34|45|34|35|36|37|40|39|40|41|42|43|44|45|47|47|49|49|63|51|53|53|54|55|57|57|59|59|61|61|62|63|0\n29|25|25|24|23|22|21|21|20|19|18|17|16|16|28|17|18|19|20|27|22|23|24|26|26|27|28|29|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n42|42|43|41|41|39|39|38|37|37|46|47|34|34|33|31|30|30|29|28|28|27|26|26|49|27|36|29|32|31|32|33|35|35|36|48|38|40|40|45|44|43|44|45|46|47|48|49|0\n38|36|36|37|35|35|34|32|32|31|31|28|27|27|26|25|23|22|22|24|30|23|24|25|26|29|28|29|30|41|33|33|34|40|39|37|38|39|40|41|0\n23|21|21|19|18|16|16|15|14|13|13|20|14|15|17|17|18|19|20|22|22|23|0\n71|71|70|69|67|66|66|65|64|63|62|61|60|60|57|57|56|55|52|52|53|50|49|49|48|47|46|45|44|43|42|41|40|39|38|38|59|39|40|41|42|43|44|45|46|47|48|51|50|51|54|53|54|55|56|58|58|59|73|61|62|63|64|65|68|67|68|69|70|72|72|73|0\n85|78|77|76|76|79|74|74|72|72|71|70|70|81|82|69|67|66|64|64|65|63|61|60|60|59|57|56|56|55|51|50|50|49|49|48|48|47|45|45|44|44|84|46|46|47|54|53|52|51|52|53|54|55|58|57|58|59|62|61|62|63|68|65|66|67|68|69|83|71|73|73|75|75|80|77|78|79|80|81|82|83|84|85|0\n17|16|16|15|14|12|12|11|11|19|13|13|14|15|18|17|18|19|0\n48|47|47|44|44|43|42|41|39|39|38|35|35|34|34|33|31|30|29|28|28|27|26|26|46|27|32|29|30|31|32|33|37|36|36|37|38|40|40|41|42|43|45|45|46|49|48|49|0\n53|50|50|49|48|48|45|44|43|38|37|37|39|36|35|35|41|34|34|32|32|31|29|29|28|28|47|30|30|31|33|33|46|42|36|40|38|39|40|41|42|43|44|45|46|47|52|49|51|51|52|53|0\n41|39|38|35|35|34|31|31|30|30|33|29|27|27|26|24|23|23|22|22|40|25|24|25|26|28|28|29|37|32|32|33|34|36|36|37|38|39|40|41|0\n57|55|54|53|52|51|50|48|48|45|43|42|40|40|41|39|36|36|37|38|46|35|33|33|32|31|30|30|56|31|32|34|34|35|47|37|38|39|44|41|42|43|44|45|46|47|49|49|50|51|52|53|54|55|56|57|0\n58|58|57|56|55|52|51|51|53|50|49|48|47|47|60|61|46|45|43|41|41|39|39|40|38|37|36|35|34|33|33|63|34|35|36|37|38|44|40|42|42|43|44|45|46|62|48|49|50|54|52|53|54|55|56|57|59|59|60|61|62|63|0\n49|48|46|45|44|44|43|42|40|40|39|38|38|50|51|37|36|35|34|32|32|31|30|29|28|28|53|29|30|31|33|33|34|35|36|37|52|39|41|41|42|43|47|45|46|47|48|49|50|51|52|53|0\n48|47|46|45|45|44|37|37|36|35|35|39|34|33|33|32|32|42|30|26|26|27|28|29|31|27|28|29|30|31|43|41|34|40|36|38|38|39|40|41|42|43|44|49|46|47|48|49|0\n37|36|35|34|33|31|30|30|29|28|28|38|39|27|26|25|24|23|22|22|41|23|24|25|26|27|40|29|32|31|32|33|34|35|36|37|38|39|40|41|0\n56|54|54|53|52|51|49|49|48|47|46|46|57|45|44|42|39|38|38|40|37|36|35|35|34|32|31|31|33|59|32|33|34|43|36|37|41|39|40|41|42|43|44|45|58|47|48|50|50|51|52|53|55|55|56|57|58|59|0\n48|46|45|44|43|43|42|41|40|39|38|37|37|36|35|33|32|30|30|28|28|27|26|26|34|27|29|29|31|31|32|33|34|35|36|49|38|39|40|41|42|47|44|45|46|47|48|49|0\n18|17|14|13|13|15|12|11|11|19|12|16|14|15|16|17|18|19|0\n67|65|63|62|61|60|60|59|57|57|56|55|54|53|51|50|49|48|46|46|47|44|44|43|42|41|40|38|37|37|36|35|35|66|36|39|38|39|40|41|42|43|45|45|52|47|48|49|50|51|52|53|54|55|56|58|58|59|64|61|62|63|64|65|66|67|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n54|53|52|51|50|48|47|47|46|46|45|43|43|41|39|39|38|37|36|35|34|33|32|31|30|29|29|42|30|31|32|33|34|35|36|37|38|40|40|41|42|44|44|45|55|49|48|49|50|51|52|53|54|55|0\n36|36|30|29|28|27|26|26|31|24|24|25|33|23|22|21|20|20|35|21|22|23|34|25|32|27|28|29|30|31|32|33|34|35|37|37|0\n22|21|21|20|18|16|15|15|14|13|13|19|14|17|16|17|18|19|20|23|22|23|0\n18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0\n6|6|5|5|7|7|0\n48|47|47|44|43|42|41|38|38|37|37|36|34|34|33|32|31|30|30|29|27|26|26|28|46|27|28|29|45|31|32|33|35|35|36|40|39|39|40|41|42|43|44|45|46|49|48|49|0\n36|36|37|38|39|31|31|32|30|30|34|28|27|27|25|24|24|23|22|22|41|23|26|25|26|29|28|29|35|33|32|33|34|35|40|37|38|39|40|41|0\n66|63|63|64|62|60|59|59|56|55|54|54|53|52|51|50|50|58|49|46|46|45|45|43|40|39|39|41|38|37|36|35|35|44|36|37|38|42|40|41|42|43|44|48|47|47|48|49|67|51|52|53|57|55|56|57|58|61|60|61|62|65|64|65|66|67|0\n16|15|14|14|12|11|10|10|13|11|12|13|17|15|16|17|0\n30|29|27|27|26|26|25|24|23|21|19|18|18|17|17|22|20|19|20|21|22|23|24|25|31|28|28|29|30|31|0\n44|42|42|41|37|37|38|39|36|35|34|34|33|32|28|28|27|27|26|25|24|24|31|25|26|30|29|29|30|31|32|33|45|35|36|40|38|39|40|41|43|43|44|45|0\n52|52|51|50|49|48|48|54|55|45|45|44|44|43|39|39|40|37|37|36|36|35|34|32|31|31|30|30|57|33|32|33|34|35|42|38|38|41|40|41|42|43|47|46|46|47|56|49|50|51|53|53|54|55|56|57|0\n34|33|33|31|28|27|26|26|29|25|23|22|21|20|20|19|19|32|24|21|22|23|24|25|30|27|28|29|30|31|32|35|34|35|0\n44|43|43|42|41|39|32|31|30|30|33|34|29|28|28|36|27|27|25|24|24|26|40|25|26|38|37|29|35|31|32|33|34|35|36|37|38|39|40|41|42|45|44|45|0\n49|46|46|34|33|33|32|31|31|36|37|38|39|40|41|42|43|44|28|28|29|27|26|26|48|27|30|29|30|45|32|35|34|35|36|37|38|39|40|41|42|43|44|45|47|47|48|49|0\n18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0\n23|22|21|20|19|19|18|17|17|15|14|14|16|15|16|25|18|24|20|21|22|23|24|25|0\n14|13|13|11|9|9|10|12|10|11|12|15|14|15|0\n38|38|36|34|34|33|29|28|28|27|26|26|31|23|23|24|22|21|21|37|22|25|24|25|32|27|30|29|30|31|32|33|35|35|36|37|39|39|0\n15|13|12|11|10|10|9|9|14|11|12|13|14|15|0\n48|48|46|46|45|44|44|50|51|43|40|40|41|38|37|36|36|35|34|33|31|31|28|28|29|30|53|29|30|32|32|33|34|35|39|37|38|39|42|41|42|43|52|45|47|47|49|49|50|51|52|53|0\n31|29|26|25|25|24|23|22|22|21|20|19|17|17|18|30|18|19|20|21|28|23|24|27|26|27|28|29|30|31|0\n48|47|46|44|43|42|41|41|40|40|39|38|37|35|33|32|31|31|28|28|27|26|26|30|36|27|29|29|30|34|32|33|34|35|36|37|38|39|49|45|42|43|44|45|46|47|48|49|0\n28|27|24|24|25|23|22|22|19|19|18|17|16|16|21|17|18|20|20|21|29|23|26|25|26|27|28|29|0\n26|25|25|24|22|22|23|21|18|17|17|19|16|16|29|20|18|19|20|21|28|23|24|27|26|27|28|29|0\n40|38|37|37|39|41|35|34|34|33|31|31|30|28|28|26|26|25|24|23|23|43|24|25|27|27|29|29|30|32|32|33|36|35|36|42|38|39|40|41|42|43|0\n8|7|7|6|6|9|8|9|0\n44|43|43|40|40|38|37|36|35|33|33|34|32|31|30|28|28|27|26|25|24|24|42|25|26|27|29|29|30|31|32|39|34|35|36|37|38|39|41|41|42|45|44|45|0\n74|73|73|72|71|70|69|68|67|65|64|64|63|62|62|76|77|60|59|58|58|57|56|54|53|51|50|50|49|48|47|47|46|45|44|43|42|41|41|79|42|43|44|45|46|55|48|49|52|51|52|53|54|55|56|57|61|59|60|61|78|63|66|65|66|67|68|69|70|71|72|75|74|75|76|77|78|79|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n39|37|35|35|34|33|32|31|30|29|28|27|25|25|24|22|21|21|23|38|22|23|24|26|26|27|28|29|30|31|32|33|34|36|36|37|38|39|0\n51|49|49|48|48|47|46|45|44|43|42|41|41|53|39|39|38|37|36|33|32|32|34|31|30|29|29|55|30|31|35|33|34|35|36|37|38|40|40|54|42|43|44|45|46|47|52|50|50|51|52|53|54|55|0\n45|44|42|41|41|40|39|37|37|38|46|47|34|34|33|32|32|31|29|29|28|27|26|26|49|27|28|30|30|31|36|33|35|35|36|48|38|39|40|43|42|43|44|45|46|47|48|49|0\n21|20|20|19|18|18|17|14|13|13|15|16|14|15|16|17|23|19|22|21|22|23|0\n31|31|32|30|29|28|27|27|34|24|24|22|22|21|20|19|19|26|20|21|23|23|25|25|26|35|28|29|30|33|32|33|34|35|0\n24|22|22|23|21|19|17|17|18|16|14|14|15|15|16|20|18|19|20|21|25|23|24|25|0\n44|42|41|40|39|39|38|38|37|34|33|33|32|32|30|29|28|27|25|25|24|24|31|26|26|27|28|29|30|31|36|35|34|35|36|37|45|43|40|41|42|43|44|45|0\n36|35|35|33|33|34|38|39|31|31|29|29|28|27|26|25|24|23|22|22|41|23|24|25|26|27|28|30|30|32|32|40|34|37|36|37|38|39|40|41|0\n21|18|17|16|15|15|14|13|12|12|20|13|14|19|16|17|18|19|20|21|0\n19|16|14|14|15|13|12|11|11|18|12|13|17|15|16|17|18|19|0\n32|32|31|29|28|27|26|26|25|25|34|22|21|21|20|19|19|24|20|23|22|23|24|35|30|27|28|29|30|31|33|33|34|35|0\n38|38|36|34|33|33|32|30|30|28|27|27|25|24|23|23|22|21|21|37|22|26|24|25|26|29|28|29|31|31|32|35|34|35|36|37|39|39|0\n10|9|7|7|8|11|8|9|10|11|0\n49|47|45|44|43|43|42|41|39|38|33|32|32|31|31|30|30|29|29|37|28|27|26|26|48|27|28|40|36|35|34|33|34|35|36|37|38|39|40|41|42|46|44|45|46|47|48|49|0\n27|25|23|22|22|21|18|18|19|16|15|15|17|26|16|17|20|19|20|21|24|23|24|25|26|27|0\n29|28|27|26|25|21|21|19|18|18|16|16|17|23|24|17|20|19|20|22|22|23|24|25|26|27|28|29|0\n14|13|12|12|15|11|10|10|17|11|16|13|14|15|16|17|0\n41|38|38|37|36|34|34|33|32|31|30|29|28|27|26|25|24|23|22|22|40|23|24|25|26|27|28|29|30|31|32|33|35|35|36|37|39|39|40|41|0\n42|41|41|38|38|37|34|34|35|33|32|29|29|30|28|27|24|24|25|23|23|40|26|25|26|27|28|31|30|31|32|33|36|35|36|37|39|39|40|43|42|43|0\n71|69|67|67|66|64|64|63|62|61|59|59|58|57|56|55|51|49|49|50|52|53|48|47|46|44|44|43|41|41|40|38|37|37|39|70|38|39|40|42|42|43|45|45|46|47|48|54|50|51|52|53|54|55|56|57|58|60|60|61|62|63|65|65|66|68|68|69|70|71|0\n52|51|49|48|46|46|47|45|44|44|53|42|41|41|40|39|37|36|36|35|33|33|32|31|30|29|29|55|30|31|32|34|34|35|38|37|38|39|40|43|42|43|54|45|50|47|48|49|50|51|52|53|54|55|0\n44|43|43|42|41|40|40|46|47|38|38|36|35|34|34|33|32|31|28|28|29|27|26|26|49|27|30|29|30|31|32|33|37|35|36|37|39|39|48|41|42|45|44|45|46|47|48|49|0\n59|58|52|52|49|48|48|50|47|47|54|55|46|44|44|43|42|41|38|37|36|36|39|34|34|33|32|31|31|57|32|33|35|35|40|37|38|39|40|41|42|43|45|45|46|56|51|49|50|51|53|53|54|55|56|57|58|59|0\n25|25|24|23|23|21|20|19|18|16|16|15|15|22|17|17|18|19|20|21|22|27|24|26|26|27|0\n34|32|31|31|33|30|25|24|24|23|22|22|19|19|20|21|28|29|20|21|27|23|26|25|26|27|28|29|30|35|32|33|34|35|0\n32|32|33|31|30|29|27|27|28|35|26|23|23|22|22|21|20|20|37|21|25|24|24|25|26|36|28|29|30|31|34|33|34|35|36|37|0\n38|37|36|36|35|34|31|28|27|26|25|24|24|29|23|23|22|21|21|33|22|32|30|25|26|27|28|29|30|31|32|33|34|35|39|37|38|39|0\n62|60|59|59|57|56|54|54|53|50|49|49|48|45|44|44|46|43|43|52|42|39|39|40|37|36|36|34|34|33|33|63|35|35|38|37|38|41|40|41|42|58|47|45|46|47|48|51|50|51|52|53|55|55|56|57|58|61|60|61|62|63|0\n39|37|35|33|33|34|32|30|30|28|27|25|25|24|24|23|22|21|21|38|22|23|29|26|26|27|28|29|31|31|32|36|34|35|36|37|38|39|0\n55|50|50|49|47|46|46|45|45|52|43|43|41|41|38|36|36|33|33|34|32|32|39|31|30|29|29|54|30|31|40|35|34|35|37|37|38|39|40|42|42|44|44|53|48|47|48|49|51|51|52|53|54|55|0\n79|78|78|77|76|75|74|74|72|71|70|69|68|63|63|64|62|62|66|61|59|59|55|55|56|54|51|51|52|50|50|49|48|47|45|44|44|43|42|42|73|43|46|45|46|47|48|49|58|53|52|53|54|57|56|57|58|60|60|61|67|65|64|65|66|67|68|69|70|71|72|73|81|75|76|77|80|79|80|81|0\n22|20|19|19|18|18|16|15|14|13|13|17|14|15|16|17|23|21|20|21|22|23|0\n38|38|37|36|36|35|35|41|34|32|32|31|30|28|27|26|25|24|23|23|29|43|24|25|26|27|28|29|30|31|33|33|34|42|40|37|39|39|40|41|42|43|0\n33|31|31|30|30|29|28|27|26|25|23|23|22|21|19|19|20|35|20|21|22|24|24|25|26|27|28|29|34|32|32|33|34|35|0\n25|24|21|20|20|19|19|17|16|15|14|14|18|15|16|17|18|23|22|21|22|23|24|25|0\n23|22|21|19|15|14|14|16|17|13|13|20|18|15|16|17|18|19|20|21|22|23|0\n47|43|42|41|41|44|40|37|36|36|35|34|33|32|31|30|30|29|27|27|26|25|25|46|26|28|28|29|39|31|32|33|34|35|38|37|38|39|40|45|42|43|44|45|46|47|0\n31|29|29|27|25|24|22|21|21|20|20|19|18|17|17|28|18|19|26|23|22|23|24|25|26|27|28|30|30|31|0\n16|15|14|14|13|11|11|10|10|12|12|13|17|15|16|17|0\n59|57|56|55|53|52|52|51|46|46|47|43|43|42|42|41|40|39|39|36|36|35|34|34|38|33|32|31|31|58|32|33|50|35|37|37|38|49|40|41|45|44|44|45|48|47|48|49|50|51|54|53|54|55|56|57|58|59|0\n50|48|46|45|45|44|43|42|42|41|40|39|38|37|35|34|34|33|32|31|30|29|28|27|27|51|28|29|30|31|32|33|36|35|36|37|38|39|40|41|49|43|44|47|46|47|48|49|50|51|0\n49|48|44|44|45|46|43|42|41|40|39|38|36|36|34|32|32|31|30|29|27|27|26|26|35|28|28|29|30|31|33|33|34|35|37|37|38|39|40|41|42|43|47|45|46|47|48|49|0\n9|9|8|8|7|7|11|10|10|11|0\n46|42|41|41|39|39|38|38|44|45|36|35|34|33|32|31|30|29|28|27|25|25|26|37|26|27|28|29|30|31|32|33|34|35|36|37|47|40|40|43|42|43|44|45|46|47|0\n70|70|66|66|67|68|65|63|63|62|61|60|60|72|73|59|58|57|55|55|54|51|50|48|47|47|49|46|44|44|43|42|42|41|40|39|39|75|40|41|53|43|45|45|46|52|48|49|50|51|52|53|54|56|56|57|58|59|74|61|62|64|64|65|69|67|68|69|71|71|72|73|74|75|0\n22|22|16|16|17|15|15|19|14|13|13|21|14|20|18|17|18|19|20|21|23|23|0\n27|25|24|23|21|20|20|19|18|16|16|15|15|26|17|17|18|19|22|21|22|23|24|25|26|27|0\n18|18|19|17|16|14|14|13|12|12|21|13|15|15|16|17|20|19|20|21|0\n29|21|21|22|20|20|24|19|19|26|18|17|16|16|28|17|18|27|25|23|22|23|24|25|26|27|28|29|0\n27|26|25|25|24|23|22|21|20|19|18|17|16|16|29|17|18|19|20|21|22|23|24|28|26|27|28|29|0\n45|45|44|43|41|40|40|39|38|36|36|35|35|47|33|32|32|31|30|29|28|27|26|26|49|27|28|29|30|31|34|33|34|48|37|37|38|39|42|41|42|43|44|46|46|47|48|49|0\n41|39|36|35|34|33|32|32|37|29|28|28|27|26|25|25|24|23|22|22|40|23|24|31|26|27|30|29|30|31|38|33|34|35|36|37|38|39|40|41|0\n16|16|15|13|12|11|10|10|14|11|12|13|14|15|17|17|0\n27|26|25|24|23|23|22|21|19|18|18|17|16|16|29|17|20|19|20|21|22|28|24|25|26|27|28|29|0\n26|25|24|23|23|19|18|18|20|17|16|15|15|22|16|17|21|19|20|21|22|27|24|25|26|27|0\n19|14|14|15|16|13|12|11|11|18|12|13|17|15|16|17|18|19|0\n42|40|40|41|39|37|34|31|31|32|33|30|29|27|27|28|36|25|24|23|23|26|24|25|26|38|28|29|30|35|32|33|34|35|36|37|38|39|43|41|42|43|0\n41|38|38|37|35|34|34|32|32|29|28|28|30|27|25|25|24|23|22|22|40|23|24|26|26|27|31|29|30|31|33|33|36|35|36|37|39|39|40|41|0\n41|38|38|37|35|35|34|32|31|29|29|28|28|26|25|25|24|23|22|22|40|23|24|27|26|27|33|30|30|31|32|33|34|36|36|37|39|39|40|41|0\n55|54|54|53|52|51|50|49|49|57|45|44|42|41|41|40|40|46|47|38|37|33|33|34|35|36|32|31|31|59|32|39|34|35|36|37|38|39|48|43|42|43|44|45|46|47|48|58|50|51|52|53|56|55|56|57|58|59|0\n30|29|28|26|26|27|25|22|22|21|21|18|18|17|17|20|19|19|20|24|23|23|24|25|31|27|28|29|30|31|0\n30|30|29|27|27|25|22|21|20|20|23|19|18|17|17|26|18|19|24|21|22|23|24|25|26|28|28|29|31|31|0\n27|25|23|22|22|21|20|19|17|16|16|15|15|26|18|17|18|19|20|21|24|23|24|25|26|27|0\n76|75|74|73|72|68|68|69|70|66|66|65|63|63|62|58|58|59|60|57|57|56|53|53|52|52|50|48|47|47|46|45|44|43|42|41|40|40|51|41|42|43|44|45|46|49|48|49|50|51|55|54|54|55|56|77|61|59|60|61|62|64|64|65|67|67|71|69|70|71|72|73|74|75|76|77|0\n15|13|11|11|9|9|10|14|10|12|12|13|14|15|0\n33|32|32|34|31|30|30|36|37|28|27|27|26|25|24|23|22|21|21|39|22|23|24|25|26|29|28|29|38|31|35|33|34|35|36|37|38|39|0\n32|31|30|29|27|22|22|23|21|21|25|19|19|20|18|18|33|28|20|26|24|23|24|25|26|27|28|29|30|31|32|33|0\n31|31|30|29|28|27|27|33|25|25|24|23|21|21|20|19|19|35|20|22|22|23|24|26|26|34|28|29|30|32|32|33|34|35|0\n59|58|57|55|53|53|52|50|49|49|48|45|45|46|44|43|42|40|38|37|36|36|35|34|34|33|32|31|31|56|32|33|41|35|39|37|38|39|40|41|42|43|44|47|46|47|48|51|50|51|52|54|54|55|56|57|58|59|0\n54|52|52|51|50|49|47|46|46|45|44|43|43|42|41|38|38|36|36|35|34|31|31|30|29|29|33|40|30|32|32|33|34|35|37|37|39|39|40|41|42|55|44|45|48|47|48|49|50|51|53|53|54|55|0\n33|32|32|31|29|29|28|27|26|25|23|22|22|21|19|19|20|35|20|21|24|23|24|25|26|27|28|30|30|31|34|33|34|35|0\n24|23|22|22|21|19|19|17|17|16|14|14|15|15|16|18|18|20|20|21|25|23|24|25|0\n16|15|15|17|18|12|12|11|11|14|13|13|14|19|16|17|18|19|0\n28|27|26|26|24|22|22|21|20|19|18|17|16|16|25|17|18|19|20|21|23|23|24|25|29|27|28|29|0\n45|44|43|41|41|42|40|39|38|36|35|34|33|32|31|31|30|29|27|26|26|25|25|47|28|27|28|29|30|37|32|33|34|35|36|37|38|39|40|46|42|43|44|45|46|47|0\n39|38|38|36|36|37|32|31|30|29|28|27|27|26|25|25|24|23|22|22|35|23|24|34|26|33|28|29|30|31|32|33|34|35|41|37|40|39|40|41|0\n48|46|45|45|44|43|42|41|41|36|35|35|37|33|32|31|30|30|29|28|28|26|26|27|40|27|39|29|34|31|32|33|34|38|36|37|38|39|40|49|42|43|44|47|46|47|48|49|0\n32|31|30|30|33|29|28|28|26|25|23|23|22|21|20|19|19|27|20|21|22|24|24|25|26|27|35|29|34|31|32|33|34|35|0\n40|39|38|37|36|35|35|34|32|31|31|28|27|26|26|25|24|22|22|23|30|23|24|25|29|27|28|29|30|33|32|33|34|41|36|37|38|39|40|41|0\n20|20|21|19|19|17|16|15|14|13|13|18|14|15|16|17|18|23|22|21|22|23|0\n11|8|8|9|7|7|10|9|10|11|0\n11|10|8|7|7|9|8|9|10|11|0\n43|41|38|38|37|35|34|33|32|32|31|31|30|29|28|27|26|25|24|23|23|42|24|25|26|27|28|29|30|40|36|33|34|35|36|37|39|39|40|41|42|43|0\n36|35|32|32|31|30|30|28|27|27|26|26|25|23|23|21|20|20|22|21|22|24|24|25|37|29|28|29|34|31|33|33|34|35|36|37|0\n20|18|18|17|17|21|16|15|14|13|13|23|14|15|16|22|19|19|20|21|22|23|0\n44|43|42|41|39|39|38|37|35|34|33|33|36|32|31|30|29|27|26|24|24|25|28|25|26|27|28|29|30|31|32|45|34|35|36|37|38|40|40|41|42|43|44|45|0\n60|60|61|62|59|59|64|58|56|55|55|54|54|66|67|49|49|50|48|47|44|43|42|42|45|41|40|39|38|38|52|37|36|36|69|37|53|39|40|41|46|43|44|45|46|47|48|51|50|51|52|53|68|57|56|57|58|65|63|61|62|63|64|65|66|67|68|69|0\n14|14|13|11|10|9|9|12|10|11|12|13|15|15|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n38|37|36|34|34|33|32|31|30|29|29|39|28|27|26|24|23|23|22|22|41|25|24|25|26|27|28|40|30|31|32|33|35|35|36|37|38|39|40|41|0\n32|30|29|29|28|27|26|26|25|24|21|21|20|18|18|19|23|19|20|22|22|23|24|25|33|27|28|31|30|31|32|33|0\n30|30|29|26|25|24|23|22|21|19|18|18|20|17|17|28|27|19|20|21|22|23|24|25|26|27|28|29|31|31|0\n29|29|28|26|25|25|24|24|22|21|20|18|17|17|19|23|18|19|20|21|22|23|31|27|26|27|28|30|30|31|0\n17|15|14|13|11|10|10|12|16|11|12|13|14|15|16|17|0\n43|42|42|39|39|40|38|38|36|34|29|29|30|31|28|28|33|27|25|25|24|24|37|26|26|27|35|32|30|31|32|33|34|35|36|37|45|41|40|41|44|43|44|45|0\n49|48|47|47|46|45|44|43|42|41|41|51|39|38|38|37|36|35|34|33|31|30|29|29|28|28|53|32|30|31|32|33|34|35|36|37|40|39|40|52|42|43|44|45|46|50|48|49|50|51|52|53|0\n37|36|36|35|34|33|33|32|31|30|29|29|40|41|27|27|24|24|25|23|23|43|26|25|26|28|28|42|30|31|32|39|34|35|38|37|38|39|40|41|42|43|0\n39|37|35|34|33|33|31|31|30|28|27|27|25|25|24|22|21|21|23|38|22|23|24|26|26|29|28|29|30|32|32|36|34|35|36|37|38|39|0\n48|46|46|45|44|43|43|49|39|39|40|41|38|37|36|34|32|32|31|30|29|29|28|27|27|51|28|35|30|31|33|33|34|35|36|37|38|42|40|41|42|50|44|45|47|47|48|49|50|51|0\n59|57|56|53|52|51|51|54|50|50|49|47|46|46|48|60|61|43|43|42|41|40|40|38|38|37|36|34|34|33|33|63|35|35|36|37|39|39|45|41|42|44|44|45|62|47|48|49|58|55|52|53|54|55|56|57|58|59|60|61|62|63|0\n56|55|54|53|52|52|51|50|47|47|45|44|44|43|42|41|39|38|37|37|36|34|34|33|31|30|30|32|49|31|32|33|35|35|36|40|38|39|40|41|42|43|46|45|46|48|48|49|50|51|57|53|54|55|56|57|0\n42|42|40|39|38|36|35|33|32|29|28|28|30|31|34|27|26|25|24|23|23|41|24|25|26|27|37|29|30|31|32|33|34|35|36|37|38|39|40|41|43|43|0\n41|41|40|39|38|37|35|34|33|32|32|31|30|28|28|29|26|24|24|23|23|27|25|25|26|27|43|29|30|31|36|33|34|35|36|37|38|39|40|42|42|43|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n27|24|24|22|22|21|20|19|18|16|16|15|15|26|17|17|18|19|20|21|23|23|25|25|26|27|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n74|73|72|71|71|70|67|67|68|62|62|60|60|59|58|58|64|57|54|53|53|52|52|50|49|48|47|46|45|44|43|42|41|40|40|39|39|66|51|41|42|43|44|45|46|47|48|49|50|51|56|55|54|55|56|57|65|59|61|61|63|63|64|65|66|69|68|69|70|75|72|73|74|75|0\n29|29|28|27|26|26|24|23|22|21|20|19|18|17|17|25|18|19|20|21|22|23|24|25|31|27|28|30|30|31|0\n24|24|23|23|20|20|21|22|27|19|18|17|16|16|29|17|18|19|28|21|22|26|25|25|26|27|28|29|0\n45|44|44|46|43|42|41|41|48|39|34|34|33|32|32|36|31|30|30|29|28|27|26|26|40|27|28|29|38|31|37|33|35|35|36|37|38|39|40|49|42|43|47|45|46|47|48|49|0\n21|18|18|17|15|15|13|13|12|12|20|14|14|16|16|17|19|19|20|21|0\n51|49|49|50|48|48|44|43|43|42|41|41|40|39|38|37|35|35|34|31|31|32|30|29|28|28|47|29|30|33|32|33|34|36|36|37|38|39|40|46|42|45|44|45|46|47|53|52|50|51|52|53|0\n9|8|7|6|6|7|8|9|0\n30|29|27|26|26|25|23|23|21|21|20|18|18|17|17|31|19|19|20|22|22|24|24|25|28|27|28|29|30|31|0\n43|43|42|40|40|37|37|36|35|34|34|33|32|31|30|29|27|26|26|25|24|24|45|25|28|27|28|29|30|31|32|33|39|35|36|38|38|39|41|41|42|44|44|45|0\n38|37|37|39|34|33|33|35|32|31|30|29|28|26|25|25|24|23|22|22|41|23|24|27|26|27|28|29|30|31|32|36|34|35|36|40|38|39|40|41|0\n35|32|32|31|30|28|27|26|26|25|23|22|22|21|20|19|19|34|20|21|24|23|24|25|29|27|28|29|30|31|33|33|34|35|0\n28|27|27|26|23|21|20|19|19|18|17|16|16|24|25|17|18|22|20|21|22|23|24|25|26|29|28|29|0\n50|50|48|47|44|43|42|42|41|36|36|37|38|39|35|34|33|32|32|28|28|29|30|27|27|49|31|29|30|31|46|33|34|35|40|37|38|39|40|41|45|43|44|45|46|47|48|49|51|51|0\n38|36|36|35|34|34|33|32|28|27|27|29|25|25|24|23|22|21|21|31|22|23|24|26|26|30|28|29|30|31|32|33|39|35|37|37|38|39|0\n30|29|28|28|31|27|27|33|24|23|23|22|21|21|20|19|19|35|20|26|22|25|24|25|26|34|32|29|30|31|32|33|34|35|0\n47|46|46|39|39|40|38|38|42|37|36|35|34|33|33|44|31|31|30|29|28|27|26|26|49|27|28|29|30|32|32|45|34|35|36|37|43|41|40|41|42|43|44|45|48|47|48|49|0\n20|19|19|18|17|14|14|13|12|12|16|13|15|15|16|17|18|21|20|21|0\n16|16|15|14|14|13|12|11|11|19|12|13|18|15|17|17|18|19|0\n22|22|18|18|17|16|16|15|14|13|13|21|14|15|20|17|19|19|20|21|23|23|0\n40|39|38|37|37|35|34|33|28|27|27|29|30|31|26|25|24|23|22|22|36|23|24|25|26|32|28|29|30|31|32|33|34|35|36|41|38|39|40|41|0\n26|26|27|25|25|23|22|21|18|17|17|19|16|16|24|20|18|19|20|21|22|23|24|29|28|27|28|29|0\n39|36|36|34|34|33|31|30|30|29|27|27|25|24|23|23|22|21|21|38|22|26|24|25|26|28|28|29|32|31|32|33|35|35|37|37|38|39|0\n42|41|40|39|38|38|37|36|35|33|33|34|44|45|31|31|30|29|27|27|25|25|26|47|26|28|28|29|30|32|32|46|34|35|36|37|43|39|40|41|42|43|44|45|46|47|0\n51|48|48|47|45|43|43|44|42|39|38|37|36|35|34|34|40|32|32|31|30|29|28|28|27|27|50|29|30|31|33|33|41|35|36|37|38|39|40|41|42|46|44|45|46|47|49|49|50|51|0\n58|57|56|53|53|54|51|51|49|47|46|46|45|45|40|40|39|39|42|43|38|37|37|36|34|34|33|32|31|31|32|33|35|35|36|59|38|44|41|41|42|43|44|50|48|47|48|49|50|52|52|55|54|55|56|57|58|59|0\n32|32|29|29|26|25|25|27|24|23|22|20|20|19|18|18|31|19|21|21|22|23|24|28|26|27|28|30|30|31|33|33|0\n43|43|40|39|37|37|38|41|36|35|34|33|32|31|30|29|28|26|25|25|24|24|45|27|26|27|28|29|30|31|32|33|34|35|36|42|38|39|40|41|42|44|44|45|0\n67|66|65|64|63|63|68|69|61|61|57|57|56|55|55|59|53|52|51|51|50|49|44|44|45|46|47|41|40|40|42|39|38|37|37|71|38|39|43|41|42|43|48|45|46|47|48|49|50|54|52|53|54|60|56|58|58|59|60|62|62|70|64|65|66|67|68|69|70|71|0\n13|13|12|11|10|9|9|15|10|11|12|14|14|15|0\n18|16|16|14|13|13|12|11|11|19|12|15|14|15|17|17|18|19|0\n60|59|58|57|56|55|54|54|53|48|48|47|45|45|44|43|42|41|41|50|39|38|37|37|36|34|32|32|33|35|52|33|34|35|36|40|38|39|40|51|42|43|44|46|46|47|49|49|50|51|52|53|61|55|56|57|58|59|60|61|0\n31|27|26|25|24|23|22|22|28|21|20|19|17|17|18|30|18|19|20|21|29|23|24|25|26|27|28|29|30|31|0\n23|22|22|21|20|20|18|17|15|14|14|16|19|15|16|17|18|19|25|21|24|23|24|25|0\n34|34|32|31|30|28|28|26|26|25|24|23|22|21|20|19|19|33|20|21|22|23|24|25|27|27|29|29|30|31|32|33|35|35|0\n27|24|23|23|22|20|19|18|17|16|15|15|21|26|16|17|18|19|20|21|22|25|24|25|26|27|0\n22|21|20|19|18|17|17|14|14|13|13|16|15|15|16|23|18|19|20|21|22|23|0\n59|51|50|50|49|47|47|46|46|45|43|43|42|41|41|54|39|39|38|38|56|36|35|35|34|33|31|31|32|58|32|33|34|37|36|37|57|40|40|55|42|44|44|45|53|48|48|49|52|51|52|53|54|55|56|57|58|59|0\n29|29|28|28|26|24|23|23|22|21|20|19|18|17|17|27|18|19|20|21|22|25|24|25|26|27|31|30|30|31|0\n34|33|32|31|30|29|29|27|25|24|24|23|22|21|20|19|19|28|20|21|22|23|26|25|26|27|28|35|30|31|32|33|34|35|0\n52|52|53|54|51|49|49|50|56|57|47|46|46|45|44|43|40|40|39|38|36|35|35|37|34|33|32|31|31|59|32|33|34|42|36|37|38|39|41|41|42|43|44|45|48|47|48|58|50|51|55|53|54|55|56|57|58|59|0\n52|51|50|49|48|47|46|45|44|44|43|41|41|40|37|37|38|39|54|55|35|35|34|33|32|31|30|30|57|31|32|33|34|36|36|56|38|39|40|42|42|43|53|45|46|47|48|49|50|51|52|53|54|55|56|57|0\n38|38|37|35|34|34|33|33|40|41|31|30|29|29|28|26|25|25|24|23|23|43|24|27|26|27|28|32|30|31|32|42|36|35|36|37|39|39|40|41|42|43|0\n64|64|63|61|60|60|59|57|57|56|55|54|53|52|50|49|47|47|48|46|46|45|42|42|41|40|39|39|44|36|36|35|35|38|37|37|38|67|40|41|43|43|44|45|66|51|48|49|50|51|52|53|54|55|56|58|58|59|62|61|62|63|65|65|66|67|0\n20|19|18|18|17|15|14|13|12|12|16|13|14|15|16|17|21|19|20|21|0\n46|45|43|43|42|41|40|39|38|38|35|33|33|32|29|29|30|28|26|26|25|25|36|37|27|27|28|31|30|31|32|34|34|35|36|37|47|39|40|41|42|44|44|45|46|47|0\n29|28|28|27|26|24|24|23|22|21|19|19|18|17|17|31|18|20|20|21|22|23|25|25|26|27|30|29|30|31|0\n24|24|20|19|19|21|18|15|15|16|14|14|23|17|16|17|18|22|20|21|22|23|25|25|0\n60|58|58|59|61|56|56|54|54|53|50|49|48|48|51|47|46|43|42|41|41|44|40|39|38|37|35|34|34|33|33|63|36|35|36|37|38|39|40|45|42|43|44|45|46|47|52|49|50|51|52|53|55|55|57|57|62|59|60|61|62|63|0\n36|36|35|32|31|30|27|27|28|29|26|25|25|22|22|21|20|20|24|21|23|23|24|34|26|33|28|29|30|31|32|33|34|35|37|37|0\n37|35|33|31|30|30|29|27|26|26|25|25|24|22|22|21|20|20|36|21|23|23|24|34|28|27|28|29|32|31|32|33|34|35|36|37|0\n46|45|45|44|44|43|39|38|37|37|40|41|36|35|35|33|32|30|29|29|28|27|26|26|34|27|28|31|30|31|32|33|34|49|36|42|38|39|40|41|42|43|48|47|46|47|48|49|0\n31|30|28|27|25|24|23|22|22|21|20|19|17|17|18|29|18|19|20|21|26|23|24|25|26|27|28|29|30|31|0\n19|18|16|15|13|13|11|11|12|17|12|14|14|15|16|17|18|19|0\n47|43|41|41|40|37|35|35|36|38|33|32|32|31|30|29|28|28|44|27|26|25|25|46|26|27|45|29|30|31|34|33|34|39|36|37|38|39|40|42|42|43|44|45|46|47|0\n18|18|16|15|14|13|11|11|12|17|12|13|14|15|16|17|19|19|0\n31|29|27|26|25|25|24|22|21|21|20|19|18|17|17|30|18|19|20|23|22|23|24|28|26|27|28|29|30|31|0\n63|63|62|61|60|58|58|57|57|55|53|52|52|49|47|46|46|45|44|43|42|42|50|41|38|38|37|37|36|35|34|34|56|35|36|40|39|39|40|41|51|43|44|45|48|47|48|49|50|51|54|53|54|55|56|65|59|59|60|61|62|64|64|65|0\n21|19|18|17|16|15|14|13|12|12|20|13|14|15|16|17|18|19|20|21|0\n46|45|45|42|42|41|39|39|38|34|31|31|32|33|30|28|28|29|36|27|26|25|25|44|26|27|37|29|30|35|32|33|34|35|36|37|38|40|40|41|43|43|44|47|46|47|0\n43|40|39|38|36|35|35|34|33|33|32|31|28|26|26|25|25|29|24|23|23|42|24|30|27|27|28|29|30|31|32|41|34|37|36|37|38|39|40|41|42|43|0\n37|32|31|30|29|29|33|28|27|26|26|25|22|22|23|21|20|20|36|21|24|23|24|25|35|27|28|34|30|31|32|33|34|35|36|37|0\n30|27|27|28|26|26|25|23|23|20|20|19|17|17|18|22|18|19|21|21|22|24|24|25|31|29|28|29|30|31|0\n72|70|70|66|66|67|68|69|65|64|64|74|63|62|61|60|60|76|58|57|55|55|54|52|51|49|49|48|46|46|45|44|44|43|42|41|40|40|59|41|42|43|53|45|47|47|48|50|50|51|52|53|54|56|56|57|58|59|77|61|62|63|75|65|73|67|68|69|71|71|72|73|74|75|76|77|0\n21|20|20|19|15|14|14|16|13|13|18|23|17|15|16|17|18|19|22|21|22|23|0\n33|33|31|31|30|30|35|29|27|27|25|23|23|24|22|21|20|20|37|21|22|26|24|25|26|28|28|29|36|32|32|34|34|35|36|37|0\n44|43|42|41|40|39|39|37|35|34|33|32|31|30|29|29|36|28|26|24|24|25|27|25|26|27|28|38|30|31|32|33|34|35|36|37|38|45|40|41|42|43|44|45|0\n69|66|65|64|63|62|62|61|60|58|58|57|56|55|52|45|45|46|44|44|48|43|43|50|51|53|42|41|40|37|37|38|36|36|68|39|38|39|40|41|42|54|49|47|46|47|48|49|50|51|52|53|54|55|56|57|59|59|60|61|67|63|64|65|66|67|68|69|0\n24|23|23|19|17|17|16|16|20|15|14|14|22|15|21|18|18|19|20|21|22|25|24|25|0\n57|57|53|52|52|54|51|50|49|49|48|48|43|41|38|38|39|40|37|37|44|45|33|33|34|35|32|31|31|47|32|36|34|35|36|46|42|39|40|41|42|43|44|45|46|47|59|56|50|51|55|53|54|55|56|58|58|59|0\n54|53|52|51|51|50|48|48|44|43|43|42|39|38|38|40|37|36|34|32|32|33|31|30|29|29|46|47|30|31|35|33|34|35|36|37|41|39|40|41|42|45|44|45|46|47|49|49|50|55|52|53|54|55|0\n30|29|29|31|32|26|26|25|24|23|21|20|20|19|18|18|28|19|22|21|22|23|24|25|27|27|28|33|30|31|32|33|0\n12|11|11|10|9|8|8|9|10|13|12|13|0\n6|5|5|7|6|7|0\n38|38|39|37|37|36|33|33|34|31|30|28|28|27|25|24|23|23|22|22|32|26|24|25|26|27|29|29|30|31|32|35|34|35|36|41|40|39|40|41|0\n10|10|8|7|7|9|8|9|11|11|0\n10|10|8|7|7|9|8|9|11|11|0\n10|10|8|7|7|9|8|9|11|11|0\n49|47|45|44|44|43|40|39|39|41|37|36|35|34|33|33|32|30|29|29|28|27|26|26|48|27|28|31|30|31|32|38|34|35|36|37|38|42|40|41|42|43|46|45|46|47|48|49|0\n66|63|62|62|61|60|60|59|56|51|51|50|50|53|54|49|49|57|48|47|46|45|45|44|42|42|40|36|36|37|38|35|35|41|39|37|38|39|40|41|43|43|44|67|46|47|48|58|55|52|52|53|54|55|56|57|58|59|65|61|64|63|64|65|66|67|0\n37|35|34|33|32|31|30|29|28|26|26|25|24|23|22|21|20|20|36|21|22|23|24|25|27|27|28|29|30|31|32|33|34|35|36|37|0\n18|17|17|16|14|13|11|11|12|15|12|13|14|15|16|19|18|19|0\n8|8|6|6|7|7|9|9|0\n51|51|52|50|50|54|45|45|46|44|43|41|41|42|38|37|36|35|35|39|34|32|31|31|30|29|29|49|30|33|32|33|34|40|36|37|38|39|40|48|42|43|44|47|46|47|48|49|55|53|52|53|54|55|0\n49|47|45|44|43|43|42|41|40|39|38|37|36|35|34|33|31|30|29|29|28|27|26|26|48|27|28|32|30|31|32|33|34|35|36|37|38|39|40|41|42|46|44|45|46|47|48|49|0\n58|58|56|55|54|52|52|50|48|46|45|45|47|44|44|43|41|39|39|40|38|36|35|34|34|33|32|31|31|57|32|33|37|35|36|37|38|42|40|41|42|43|51|49|46|47|48|49|50|51|53|53|54|55|56|57|59|59|0\n74|73|73|72|68|68|67|67|65|65|60|60|61|62|63|57|56|55|55|58|51|50|49|47|47|46|45|45|52|53|44|43|41|41|40|39|39|71|40|42|42|43|44|54|46|48|48|49|50|51|52|53|54|59|56|57|58|59|64|61|62|63|64|66|66|70|69|69|70|71|72|75|74|75|0\n56|55|54|53|51|50|50|49|49|48|47|45|44|43|42|41|39|39|37|37|36|35|34|33|32|31|30|30|46|31|32|33|34|35|36|38|38|40|40|41|42|43|44|45|46|47|48|57|52|51|52|53|54|55|56|57|0\n9|9|8|8|7|7|11|10|10|11|0\n26|25|25|23|23|22|21|21|28|29|19|19|18|17|17|31|18|20|20|30|22|24|24|27|26|27|28|29|30|31|0\n38|37|37|34|34|33|31|31|30|28|27|27|26|24|23|23|22|21|21|36|22|25|24|25|26|29|28|29|30|32|32|33|35|35|36|39|38|39|0\n41|40|38|37|36|34|34|33|31|30|29|28|28|27|25|24|24|23|22|22|39|23|26|25|26|27|32|29|30|31|32|33|35|35|36|37|38|39|40|41|0\n21|19|19|18|18|17|16|15|14|14|13|13|23|15|16|17|22|20|20|21|22|23|0\n36|34|34|33|32|32|31|29|28|27|27|24|23|23|22|21|20|20|26|21|22|25|24|25|26|30|28|29|30|31|37|33|35|35|36|37|0\n48|47|46|46|45|44|41|41|39|38|38|37|33|32|31|31|30|29|28|28|35|27|26|26|43|27|36|29|30|34|32|33|34|35|36|37|40|39|40|42|42|43|44|45|49|47|48|49|0\n45|42|42|41|40|39|37|36|35|35|34|33|33|32|30|28|28|27|25|24|24|26|31|25|26|27|29|29|30|31|32|44|34|38|36|37|38|39|40|41|43|43|44|45|0\n9|9|10|11|8|8|13|12|10|11|12|13|0\n59|57|57|56|54|53|53|52|51|49|49|47|46|46|45|44|44|60|61|43|42|41|40|40|63|39|38|37|36|35|34|34|65|35|36|37|38|39|64|41|42|43|62|45|48|47|48|50|50|51|52|55|54|55|56|58|58|59|60|61|62|63|64|65|0\n16|15|14|13|13|11|10|10|12|11|12|17|14|15|16|17|0\n82|81|80|79|78|77|75|75|76|74|73|71|68|67|67|66|65|64|64|63|62|60|60|58|58|57|55|54|53|52|51|51|50|47|47|45|45|44|43|43|49|72|44|46|46|48|48|49|50|56|52|53|54|55|56|57|59|59|61|61|62|63|70|65|66|69|68|69|70|71|72|73|74|83|76|77|78|79|80|81|82|83|0\n25|25|26|24|23|23|28|22|22|30|31|21|20|19|18|18|33|19|20|21|32|29|24|27|26|27|28|29|30|31|32|33|0\n53|51|44|44|45|46|47|43|42|41|41|49|39|38|38|37|33|33|34|35|32|31|30|28|28|29|52|29|30|31|32|36|34|35|36|37|40|39|40|50|42|43|48|45|46|47|48|49|50|51|52|53|0\n35|34|32|32|30|28|27|27|26|25|23|22|21|21|20|19|19|31|20|24|22|23|24|25|26|29|28|29|30|31|33|33|34|35|0\n26|24|24|23|22|20|20|19|19|18|16|15|15|17|16|17|18|27|21|21|22|23|25|25|26|27|0\n18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0\n35|33|33|32|32|36|37|31|30|29|27|26|25|24|24|23|22|21|21|39|22|23|28|25|26|27|28|29|30|31|38|34|34|35|36|37|38|39|0\n11|9|8|7|7|10|8|9|10|11|0\n77|77|76|75|75|79|73|73|71|71|70|68|67|65|65|64|62|61|59|58|58|57|56|56|55|54|53|52|52|51|50|48|48|46|46|45|43|43|42|42|81|44|44|45|47|47|49|49|50|51|69|53|54|55|63|57|60|59|60|61|62|63|64|66|66|67|68|69|70|72|72|74|74|80|76|78|78|79|80|81|0\n17|14|14|12|12|11|10|10|16|11|13|13|15|15|16|17|0\n58|57|56|54|54|53|52|51|50|50|49|48|46|45|44|43|41|40|40|39|37|37|36|35|32|32|33|31|31|47|34|33|34|35|36|38|38|39|42|41|42|43|44|45|46|47|48|49|59|51|52|53|55|55|56|57|58|59|0\n16|16|14|13|12|11|10|10|15|11|12|13|14|15|17|17|0\n29|27|27|25|22|22|21|20|18|18|19|17|16|16|26|17|24|19|20|21|23|23|24|25|26|28|28|29|0\n44|43|42|41|40|39|37|37|36|35|34|32|32|31|31|30|29|27|27|25|24|24|26|25|26|28|28|29|30|45|33|33|34|35|36|38|38|39|40|41|42|43|44|45|0\n40|39|39|38|36|36|35|34|34|42|43|33|32|31|30|29|27|27|26|24|24|25|45|25|26|28|28|29|30|31|32|33|44|35|37|37|38|41|40|41|42|43|44|45|0\n45|44|44|46|41|38|38|39|40|37|35|33|33|34|32|29|29|30|27|26|26|25|25|43|28|27|28|31|30|31|32|36|34|35|36|37|42|39|40|41|42|43|47|45|46|47|0\n51|50|50|49|47|47|46|45|44|43|43|41|38|38|37|36|35|34|34|33|32|31|29|29|28|28|42|30|30|31|32|33|40|35|36|37|39|39|40|41|42|53|44|45|46|48|48|49|52|51|52|53|0\n25|24|24|26|21|21|19|18|18|17|16|15|15|23|16|17|20|19|20|22|22|23|27|25|26|27|0\n24|24|21|20|19|18|18|17|15|15|14|14|23|16|16|17|22|19|20|21|22|23|25|25|0\n46|46|45|43|40|40|41|42|39|38|38|48|49|37|36|34|33|32|32|31|29|28|28|27|27|51|30|29|30|31|35|33|34|35|36|37|50|39|44|41|42|43|44|45|47|47|48|49|50|51|0\n39|35|34|33|32|31|30|29|29|36|27|26|26|25|23|23|22|21|21|38|22|24|24|25|28|27|28|37|30|31|32|33|34|35|36|37|38|39|0\n14|14|15|13|12|10|10|11|17|11|12|13|16|15|16|17|0\n40|38|38|39|36|35|33|30|28|28|29|31|32|27|25|24|24|23|22|22|37|23|26|25|26|27|34|29|30|31|32|33|34|35|36|37|41|39|40|41|0\n51|49|46|45|45|42|42|41|41|44|40|38|37|37|36|35|34|34|33|30|30|29|28|28|27|27|32|29|31|31|32|33|50|35|36|39|38|39|40|48|43|43|44|47|46|47|48|49|50|51|0\n43|43|42|42|41|38|37|36|36|34|34|33|32|30|30|29|27|27|26|25|24|24|40|25|26|28|28|29|31|31|32|33|35|35|39|37|38|39|40|41|45|44|44|45|0\n34|32|31|31|30|29|28|27|27|26|24|24|22|21|20|19|19|23|20|21|22|23|25|25|26|35|28|29|30|33|32|33|34|35|0\n70|68|68|67|65|64|63|63|62|61|60|58|58|57|56|55|54|53|53|52|49|48|48|50|44|44|43|43|42|40|39|39|38|37|37|47|38|41|40|41|42|46|45|45|46|47|51|49|50|51|52|71|54|55|56|57|59|59|60|61|62|66|64|65|66|67|69|69|70|71|0\n38|38|39|35|35|36|34|34|33|32|31|31|42|43|30|29|28|26|26|25|24|24|45|25|27|27|28|29|30|44|32|33|41|37|36|37|40|39|40|41|42|43|44|45|0\n20|20|19|17|17|16|15|15|14|13|13|23|14|22|16|18|18|19|21|21|22|23|0\n25|25|24|22|22|21|21|18|17|17|16|15|15|20|16|19|18|19|20|27|23|23|24|26|26|27|0\n24|24|22|21|20|19|18|17|16|15|14|14|23|15|16|17|18|19|20|21|22|23|25|25|0\n46|45|44|44|47|38|38|37|36|35|35|33|33|32|30|30|29|29|41|42|28|27|26|26|49|27|28|43|31|31|32|34|34|40|36|37|39|39|40|41|42|43|48|45|46|47|48|49|0\n26|25|25|24|23|23|22|20|20|19|18|17|16|16|29|17|18|19|21|21|22|28|24|27|26|27|28|29|0\n46|46|47|48|43|42|42|40|40|39|37|36|35|35|34|32|32|31|30|29|27|27|26|26|45|28|28|29|30|31|33|33|34|38|36|37|38|39|41|41|44|43|44|45|49|47|48|49|0\n35|34|32|32|31|30|30|36|37|27|27|28|26|26|25|23|23|21|21|22|22|24|24|25|39|29|28|29|38|31|33|33|34|35|36|37|38|39|0\n16|15|15|12|11|11|13|10|10|14|12|13|14|17|16|17|0\n33|32|30|30|31|29|28|28|26|24|24|22|21|20|20|19|19|27|23|21|22|23|25|25|26|27|35|29|34|31|32|33|34|35|0\n54|54|50|49|49|48|45|45|46|47|44|42|41|41|40|38|37|37|36|34|34|33|30|30|31|29|29|53|32|31|32|33|35|35|36|39|38|39|40|43|42|43|44|52|46|47|48|51|50|51|52|53|55|55|0\n33|31|31|32|30|28|27|26|25|25|23|22|21|21|20|20|19|19|35|24|22|23|24|29|26|27|28|29|30|34|32|33|34|35|0\n15|14|13|12|10|9|9|11|10|11|12|13|14|15|0\n32|31|31|27|26|26|28|25|24|23|22|20|20|19|18|18|30|19|21|21|22|23|24|25|29|27|28|29|30|33|32|33|0\n31|29|28|28|25|25|24|23|21|21|19|19|18|17|17|27|18|20|20|22|22|23|24|26|26|27|30|29|30|31|0\n69|66|64|64|65|59|58|56|55|55|57|53|53|52|52|61|62|51|50|49|48|47|47|46|45|41|40|40|39|37|37|36|36|43|44|38|38|39|42|41|42|43|44|45|46|68|48|49|50|51|63|54|54|60|56|57|58|59|60|61|62|63|67|65|66|67|68|69|0\n64|61|61|62|60|58|58|56|56|55|53|53|51|51|52|50|49|47|46|46|44|43|41|41|40|38|38|35|34|34|36|37|45|35|36|37|39|39|40|42|42|43|44|45|48|47|48|49|50|65|52|54|54|55|57|57|59|59|60|63|62|63|64|65|0\n41|38|38|39|40|42|37|37|44|36|33|30|30|31|29|28|27|26|26|25|24|24|35|25|34|27|28|29|32|31|32|33|34|35|36|45|43|39|40|41|42|43|44|45|0\n70|69|69|68|62|61|59|58|58|57|57|56|54|54|53|52|51|49|48|47|47|46|44|44|43|43|64|65|41|41|39|39|38|37|37|67|38|40|40|42|42|66|45|45|46|50|48|49|50|51|52|53|55|55|56|63|60|59|60|61|62|63|64|65|66|67|68|71|70|71|0\n10|9|8|8|7|7|11|9|10|11|0\n66|63|63|62|60|59|59|57|56|55|55|54|52|51|51|50|49|49|48|47|46|46|45|43|42|42|39|38|38|36|36|35|35|41|37|37|40|39|40|41|44|43|44|45|67|47|48|65|50|53|52|53|54|58|56|57|58|61|60|61|62|64|64|65|66|67|0\n37|36|36|35|33|33|32|30|29|29|28|27|26|24|24|22|22|21|21|39|23|23|25|25|26|27|28|31|30|31|32|34|34|35|38|37|38|39|0\n22|21|19|18|18|17|17|14|14|13|13|16|15|15|16|23|20|19|20|21|22|23|0\n11|11|8|8|9|10|13|9|10|12|12|13|0\n55|54|54|56|53|52|52|58|59|49|48|48|50|47|46|43|42|41|40|40|44|36|36|37|35|35|34|33|32|32|61|33|34|39|38|37|38|39|45|41|42|43|44|45|46|47|51|49|50|51|60|53|57|55|56|57|58|59|60|61|0\n61|61|62|60|59|59|58|57|55|55|54|52|52|53|65|66|51|49|49|48|47|46|46|68|45|44|44|70|71|43|42|41|40|39|38|38|73|39|40|41|42|43|72|45|69|47|48|50|50|51|67|53|54|56|56|57|58|64|60|63|62|63|64|65|66|67|68|69|70|71|72|73|0\n31|28|28|25|25|24|24|21|21|22|20|18|18|17|17|30|19|19|20|23|22|23|27|26|26|27|29|29|30|31|0\n46|44|43|43|42|41|40|40|39|36|35|33|33|32|31|31|30|28|27|27|26|25|25|38|26|29|28|29|30|37|32|34|34|35|36|37|38|39|47|41|42|45|44|45|46|47|0\n52|51|51|50|49|49|48|47|46|43|40|39|39|41|38|37|36|36|44|34|34|33|32|31|30|29|29|55|30|31|32|33|35|35|45|37|38|42|40|41|42|43|44|45|46|47|48|54|50|53|52|53|54|55|0\n56|56|54|53|47|46|45|44|44|48|43|41|41|40|38|37|37|36|35|35|50|51|34|33|32|31|30|30|55|31|32|33|34|52|36|39|38|39|40|42|42|43|49|45|46|47|48|49|50|51|52|53|54|55|57|57|0\n80|79|79|78|76|76|74|72|70|70|71|66|65|62|62|61|59|59|60|58|55|55|54|54|57|67|68|50|49|48|48|51|52|47|46|45|43|43|42|42|75|44|44|45|46|47|53|49|50|51|52|53|69|56|56|57|58|64|60|61|63|63|64|65|66|67|68|69|73|71|72|73|74|75|77|77|78|81|80|81|0\n42|40|38|38|39|37|35|34|34|33|31|31|30|29|28|27|26|25|23|23|24|43|24|25|26|27|28|29|30|32|32|33|36|35|36|37|41|39|40|41|42|43|0\n41|41|39|38|37|36|36|35|33|33|32|32|31|30|29|26|25|25|24|23|23|28|24|27|26|27|28|29|30|31|43|34|34|35|40|37|38|39|40|42|42|43|0\n47|45|44|42|42|40|39|39|37|36|35|34|34|33|32|25|25|26|27|28|29|30|31|46|26|27|28|29|30|31|32|33|38|35|36|37|38|41|40|41|43|43|44|45|46|47|0\n15|14|14|13|13|12|10|10|11|11|12|17|16|15|16|17|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n47|45|43|42|41|41|39|38|37|37|36|34|34|33|32|30|30|29|26|26|27|25|25|46|28|27|28|29|31|31|32|33|35|35|36|40|38|39|40|44|42|43|44|45|46|47|0\n62|61|59|57|56|56|55|55|54|53|52|51|50|48|47|46|45|45|44|43|42|41|41|40|39|38|36|35|34|33|33|37|34|35|36|37|38|39|40|63|42|43|44|49|46|47|48|49|50|51|52|53|54|60|58|57|58|59|60|61|62|63|0\n8|7|6|6|9|7|8|9|0\n48|47|45|45|44|44|42|40|40|41|38|37|36|35|33|32|32|31|30|27|27|26|26|29|39|28|28|29|30|31|34|33|34|35|36|37|38|39|43|41|42|43|49|46|46|47|48|49|0\n50|47|46|46|48|45|44|43|43|42|40|40|39|37|36|34|33|32|32|31|28|28|29|27|27|38|30|29|30|31|35|33|34|35|36|37|38|39|41|41|42|51|44|45|49|47|48|49|50|51|0\n31|30|29|28|28|27|27|33|26|25|24|24|22|21|20|19|19|23|20|21|22|23|35|25|26|34|32|29|30|31|32|33|34|35|0\n63|63|61|60|60|59|58|57|56|55|54|53|52|51|51|48|48|47|46|44|44|43|42|41|40|39|37|37|36|35|34|34|50|35|36|38|38|39|40|41|42|43|45|45|46|47|49|49|50|65|52|53|54|55|56|57|58|59|62|61|62|64|64|65|0\n11|9|8|7|7|10|8|9|10|11|0\n31|30|29|28|24|24|22|21|21|20|19|18|18|17|17|27|26|19|20|23|22|23|25|25|26|27|28|29|30|31|0\n15|14|12|12|10|9|9|11|10|11|13|13|14|15|0\n17|14|13|12|11|10|10|15|16|11|12|13|14|15|16|17|0\n33|33|34|32|30|29|27|27|26|25|24|23|22|21|19|19|20|31|20|21|22|23|24|25|26|28|28|29|30|31|32|35|34|35|0\n15|14|13|11|10|9|9|12|10|11|12|13|14|15|0\n20|20|17|15|13|13|14|12|12|18|19|16|14|15|16|17|18|19|21|21|0\n38|37|36|34|34|33|33|32|31|29|29|27|25|25|24|23|22|21|21|28|22|23|24|26|26|27|28|30|30|31|32|39|35|35|36|37|38|39|0\n35|33|31|30|30|27|27|26|25|25|23|23|21|20|20|19|19|34|22|21|22|24|24|29|26|28|28|29|32|31|32|33|34|35|0\n40|40|39|38|37|36|35|35|42|43|34|32|32|30|29|28|28|27|26|25|24|24|45|25|26|27|31|29|30|31|33|33|34|44|36|37|38|39|41|41|42|43|44|45|0\n37|37|38|39|36|35|35|41|31|31|32|33|30|30|28|27|26|25|24|23|23|29|24|25|26|27|28|29|43|34|32|33|34|42|36|40|38|39|40|41|42|43|0\n54|54|53|53|56|50|50|49|47|47|48|45|45|44|43|42|42|58|59|41|39|39|38|37|36|35|34|33|32|32|61|33|34|35|36|37|38|40|40|41|60|43|44|46|46|52|48|49|51|51|52|57|55|55|56|57|58|59|60|61|0\n25|24|20|20|21|18|18|17|15|15|14|14|23|16|16|17|19|19|22|21|22|23|24|25|0\n22|21|20|19|18|17|16|16|23|15|14|14|25|15|24|17|18|19|20|21|22|23|24|25|0\n41|39|33|32|32|31|31|35|29|28|27|27|26|25|25|37|24|23|22|22|40|23|24|38|26|30|28|29|30|36|34|33|34|35|36|37|38|39|40|41|0\n21|19|18|17|16|14|14|13|12|12|20|13|15|15|16|17|18|19|20|21|0\n39|39|38|37|36|35|35|31|31|30|29|27|26|26|23|23|24|22|22|33|34|25|24|25|28|27|28|29|30|32|32|33|34|41|36|37|38|40|40|41|0\n24|24|23|22|20|19|19|16|15|14|14|17|18|15|16|17|18|21|20|21|22|23|25|25|0\n46|45|45|43|42|39|39|38|37|36|36|35|34|32|31|31|30|27|26|26|28|25|25|44|29|27|28|29|30|33|32|33|34|35|41|37|38|40|40|41|42|43|44|47|46|47|0\n17|15|15|14|13|12|10|10|11|11|12|13|14|16|16|17|0\n47|44|43|43|42|41|41|39|38|37|36|34|34|33|31|31|30|27|27|28|25|25|26|40|26|29|28|29|30|32|32|33|35|35|36|37|38|39|40|46|42|45|44|45|46|47|0\n60|58|58|57|57|56|54|53|53|50|49|48|46|45|44|44|43|41|40|40|39|34|34|35|36|37|38|33|32|32|52|33|51|35|36|37|38|39|42|41|42|43|47|45|46|47|48|49|50|51|52|55|54|55|56|61|59|59|60|61|0\n28|27|27|26|24|23|23|21|19|18|18|17|16|16|22|17|20|19|20|21|22|25|24|25|26|29|28|29|0\n43|42|41|40|40|44|45|39|38|35|34|33|33|32|31|31|30|29|28|26|25|25|27|47|26|27|28|29|30|37|32|36|34|35|36|37|38|39|46|41|42|43|44|45|46|47|0\n28|28|29|30|24|22|22|23|25|21|19|18|18|17|17|27|20|19|20|21|26|23|24|25|26|27|31|29|30|31|0\n50|50|48|47|45|45|44|42|42|41|38|37|36|35|35|39|34|33|32|30|29|29|28|27|27|49|28|31|30|31|32|33|34|40|36|37|38|39|40|41|43|43|44|46|46|47|48|49|51|51|0\n36|34|34|33|33|32|30|29|27|27|26|26|24|23|22|21|20|20|25|21|22|23|24|25|31|28|28|29|30|31|32|37|35|35|36|37|0\n27|24|24|22|21|20|19|18|18|17|16|15|15|26|16|17|23|19|20|21|22|23|25|25|26|27|0\n36|35|33|33|32|31|30|30|29|28|26|24|23|23|22|21|20|20|27|21|22|25|24|25|26|27|28|29|37|31|32|34|34|35|36|37|0\n16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0\n50|48|48|49|43|43|41|40|40|39|38|38|45|37|36|35|34|33|32|30|29|29|28|27|27|47|28|31|30|31|32|33|34|35|36|37|46|39|42|41|42|44|44|45|46|47|51|49|50|51|0\n33|32|30|30|31|29|27|26|25|25|28|24|23|23|22|21|20|20|37|21|22|36|24|35|26|27|28|29|34|31|32|33|34|35|36|37|0\n53|52|52|51|50|49|47|46|45|44|44|48|43|43|56|57|39|39|40|38|37|37|35|35|34|32|32|31|31|59|33|33|34|36|36|42|38|41|40|41|42|58|55|45|46|47|48|49|50|51|54|53|54|55|56|57|58|59|0\n15|14|14|13|12|11|11|10|10|17|12|13|16|15|16|17|0\n55|53|51|51|50|44|43|42|42|41|41|46|40|39|37|36|36|35|35|48|33|33|31|30|30|29|29|54|32|31|32|34|34|49|38|37|38|39|40|47|45|43|44|45|46|47|48|49|50|52|52|53|54|55|0\n11|8|8|7|7|10|9|9|10|11|0\n6|6|7|8|9|7|8|9|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n56|55|53|52|51|51|50|47|46|45|43|43|42|42|48|41|40|38|38|37|35|35|34|32|32|31|30|30|57|31|33|33|34|36|36|37|39|39|40|41|49|44|44|45|46|47|48|49|50|54|52|53|54|55|56|57|0\n12|9|9|10|8|8|13|11|10|11|12|13|0\n38|38|36|35|32|31|31|33|29|28|27|27|26|25|24|23|22|21|21|37|22|23|24|25|26|30|28|29|30|34|32|33|34|35|36|37|39|39|0\n49|48|48|47|45|45|46|42|42|41|38|38|37|35|35|34|34|33|32|31|30|29|27|27|28|44|28|29|30|31|32|33|40|36|36|37|39|39|40|41|43|43|44|51|46|47|50|49|50|51|0\n78|76|76|75|74|72|71|70|69|69|68|67|66|64|64|62|62|63|61|58|58|57|57|52|52|51|49|49|50|54|48|46|45|45|43|43|42|41|41|56|42|44|44|47|46|47|48|55|50|51|53|53|54|55|56|60|59|59|60|61|79|63|65|65|66|67|68|73|70|71|72|73|74|75|77|77|78|79|0\n20|20|16|16|17|15|13|13|12|12|19|14|14|15|18|17|18|19|21|21|0\n55|52|51|50|50|49|47|47|46|45|44|42|41|40|40|39|38|37|35|35|34|33|32|31|30|29|29|54|30|31|32|33|34|36|36|37|38|39|43|41|42|43|44|45|46|48|48|49|53|51|52|53|54|55|0\n79|77|75|74|73|72|72|71|70|69|68|65|64|62|61|61|60|59|59|66|57|56|56|55|53|52|52|51|49|47|47|48|45|44|42|42|43|41|41|78|46|43|44|45|46|50|48|49|50|51|54|53|54|55|58|57|58|67|60|63|62|63|64|65|66|67|68|69|70|71|76|73|74|75|76|77|78|79|0\n32|32|31|31|30|29|28|27|27|35|36|26|25|24|23|22|21|20|20|21|22|23|24|25|26|37|28|29|30|34|33|33|34|35|36|37|0\n54|53|47|46|46|48|45|43|43|42|42|50|51|41|39|38|38|40|37|36|34|33|32|31|30|29|29|35|30|31|32|33|34|35|36|37|55|39|40|41|52|44|44|45|49|47|48|49|50|51|52|53|54|55|0\n58|57|57|56|53|53|54|55|52|50|50|49|48|47|46|46|61|43|42|42|41|41|40|39|38|37|36|35|34|33|33|63|34|35|36|37|38|39|40|45|44|43|44|45|62|47|48|49|51|51|52|60|54|55|56|59|58|59|60|61|62|63|0\n39|35|34|34|36|32|32|31|30|28|27|27|26|25|24|23|22|21|21|38|22|23|24|25|26|29|28|29|30|31|33|33|37|35|36|37|38|39|0\n69|66|65|62|62|63|61|60|54|52|52|53|51|49|49|48|48|56|57|58|47|46|44|43|43|42|41|40|36|36|37|38|39|67|68|37|38|39|40|41|42|45|44|45|46|47|59|50|50|51|55|53|54|55|56|57|58|59|60|61|64|63|64|65|66|67|68|69|0\n22|21|19|18|18|17|16|15|14|13|13|23|14|15|16|17|20|19|20|21|22|23|0\n43|41|40|35|34|33|32|32|36|30|29|28|27|27|31|38|26|23|23|24|25|42|24|25|26|39|28|29|30|31|37|33|34|35|36|37|38|39|40|41|42|43|0\n26|25|24|23|18|17|17|19|16|16|21|15|15|27|22|20|18|19|20|21|22|23|24|25|26|27|0\n63|61|60|60|59|58|57|56|53|53|54|51|50|50|49|49|64|65|47|46|45|45|44|42|41|41|40|39|38|37|36|35|35|67|36|37|38|39|40|43|42|43|44|48|46|47|48|66|52|51|52|55|54|55|56|57|58|59|62|61|62|63|64|65|66|67|0\n57|57|58|52|52|51|51|54|48|47|47|46|44|44|43|41|41|42|40|38|38|37|35|34|34|33|32|31|31|56|32|33|36|35|36|37|39|39|40|50|42|43|45|45|46|49|48|49|50|55|53|53|54|55|56|59|58|59|0\n47|45|42|41|41|40|39|39|38|37|34|34|35|33|32|31|30|29|28|26|26|25|25|46|27|27|28|29|30|31|32|33|36|35|36|37|38|44|40|43|42|43|44|45|46|47|0\n45|43|42|41|40|39|38|37|35|35|32|32|31|30|28|28|29|27|26|24|24|25|44|25|26|27|34|29|30|31|33|33|34|36|36|37|38|39|40|41|42|43|44|45|0\n24|22|21|21|20|18|18|17|16|15|14|14|25|15|16|17|19|19|20|23|22|23|24|25|0\n51|48|48|47|46|43|42|41|41|44|40|39|38|37|36|35|34|30|29|29|31|32|28|27|27|50|28|33|30|31|32|33|34|35|36|37|38|39|40|45|42|43|44|45|46|47|49|49|50|51|0\n43|41|39|39|36|36|37|33|33|34|31|30|29|29|25|25|24|24|27|23|23|42|28|26|26|27|28|32|30|31|32|35|34|35|38|37|38|40|40|41|42|43|0\n44|43|43|41|40|38|36|35|35|37|32|32|31|28|28|29|27|27|26|25|24|24|42|25|26|34|30|29|30|31|33|33|34|39|36|37|38|39|40|41|42|45|44|45|0\n44|43|43|42|41|40|37|36|36|38|35|35|46|47|33|32|32|30|30|28|28|27|26|26|49|27|29|29|31|31|34|33|34|48|39|37|38|39|40|41|42|45|44|45|46|47|48|49|0\n23|22|22|21|20|20|16|16|17|15|14|14|19|15|18|17|18|19|25|21|24|23|24|25|0\n46|45|44|43|42|41|41|40|37|37|36|35|35|32|32|31|29|29|27|27|26|25|25|34|26|28|28|30|30|31|33|33|34|39|36|38|38|39|40|47|42|43|44|45|46|47|0\n47|46|46|45|45|42|42|41|40|37|36|35|35|38|34|33|32|31|30|29|28|27|26|26|44|27|28|29|30|31|32|33|34|39|36|37|38|39|40|41|43|43|44|49|48|47|48|49|0\n88|87|85|85|83|83|82|80|80|79|78|78|77|70|70|71|69|68|67|66|65|63|63|62|61|61|73|74|59|58|58|57|55|55|54|52|52|51|49|48|47|47|46|46|76|50|48|49|50|51|53|53|54|56|56|57|60|59|60|75|62|64|64|65|66|67|68|69|72|71|72|73|74|75|76|77|89|79|81|81|82|84|84|86|86|87|88|89|0\n21|20|19|19|18|15|15|16|14|13|13|23|14|17|16|17|18|22|20|21|22|23|0\n61|59|58|57|54|53|50|48|48|47|47|51|46|45|44|44|43|41|40|40|39|38|38|37|36|35|34|33|32|32|60|33|34|35|36|37|56|39|42|41|42|43|55|45|46|52|49|49|50|51|52|53|54|55|56|57|58|59|60|61|0\n52|50|50|51|53|43|43|42|42|45|41|41|47|40|39|39|38|37|35|35|33|33|32|32|31|29|29|30|30|31|55|34|34|36|36|37|38|49|40|48|46|44|44|45|46|47|48|49|54|51|52|53|54|55|0\n21|18|18|17|16|15|14|13|12|12|20|13|14|15|16|17|19|19|20|21|0\n59|54|54|55|56|53|51|50|49|49|48|47|46|45|44|42|41|40|39|39|38|37|36|35|34|33|32|31|31|58|32|33|34|35|36|37|38|43|40|41|42|43|44|45|46|47|48|52|50|51|52|53|57|55|56|57|58|59|0\n62|60|60|59|57|56|56|53|53|52|52|55|50|48|48|47|44|43|42|41|39|39|40|45|37|35|34|34|36|33|33|51|38|35|36|37|38|46|40|41|42|43|44|45|46|47|49|49|50|51|63|54|54|55|58|57|58|59|61|61|62|63|0\n13|12|12|14|10|9|9|11|10|11|15|13|14|15|0\n40|39|37|36|36|35|34|33|31|31|30|30|29|27|25|25|24|23|22|22|28|23|24|26|26|27|28|29|41|32|32|33|34|35|38|37|38|39|40|41|0\n59|54|54|53|52|52|56|47|46|45|44|43|42|42|48|40|39|39|38|37|37|50|36|35|34|33|32|31|31|58|32|33|34|35|36|51|38|41|40|41|49|43|44|45|46|47|48|49|50|51|57|53|55|55|56|57|58|59|0\n60|60|57|56|55|55|54|53|53|52|51|49|49|48|47|46|45|45|62|63|44|43|42|40|40|39|37|37|36|35|34|34|65|35|36|38|38|39|41|41|42|43|44|64|46|47|48|50|50|51|52|59|54|58|56|57|58|59|61|61|62|63|64|65|0\n48|47|46|46|45|43|42|41|39|38|38|37|35|34|33|33|32|31|29|29|28|27|26|26|44|27|28|30|30|31|32|36|34|35|36|37|40|39|40|41|42|43|44|45|49|47|48|49|0\n52|51|50|48|47|47|46|45|43|43|44|39|39|38|37|36|35|34|33|33|32|31|30|29|28|28|42|29|30|31|32|41|34|35|36|37|38|40|40|41|42|53|44|45|46|49|48|49|50|51|52|53|0\n27|27|26|24|23|22|22|20|20|19|18|16|16|17|29|17|18|19|21|21|25|23|24|25|26|28|28|29|0\n28|27|26|23|23|24|22|19|18|18|20|17|16|16|29|17|21|19|20|21|22|25|24|25|26|27|28|29|0\n17|16|16|18|19|15|14|13|12|12|21|13|14|15|20|17|18|19|20|21|0\n26|26|23|21|21|22|19|19|18|16|16|15|15|25|17|17|18|20|20|24|22|23|24|25|27|27|0\n43|41|40|39|34|34|33|33|32|31|31|37|30|28|27|26|25|25|24|23|23|42|24|29|26|27|28|29|30|38|32|36|35|35|36|37|38|39|40|41|42|43|0\n51|50|50|49|48|45|45|46|44|43|42|42|53|40|39|38|37|37|36|35|33|33|32|31|30|29|29|55|30|31|32|34|34|35|36|41|38|39|40|41|54|43|44|47|46|47|48|49|52|51|52|53|54|55|0\n53|48|47|47|46|45|44|44|50|42|42|41|39|39|38|37|36|35|32|31|31|30|30|29|28|28|52|29|34|33|32|33|34|35|36|37|38|40|40|41|43|43|51|45|46|49|48|49|50|51|52|53|0\n36|35|35|34|31|30|29|29|28|26|26|25|23|22|21|21|20|20|33|24|22|23|24|25|27|27|28|32|30|31|32|33|34|37|36|37|0\n33|31|31|29|28|28|27|26|26|34|35|25|24|22|22|21|20|20|37|21|23|23|24|25|36|27|30|29|30|32|32|33|34|35|36|37|0\n37|35|34|28|27|27|26|25|25|30|31|32|23|22|22|21|20|20|36|21|24|23|24|33|26|29|28|29|30|31|32|33|34|35|36|37|0\n39|38|37|36|36|40|34|32|31|30|28|28|29|27|25|25|24|23|22|22|35|23|24|26|26|27|33|29|30|31|32|33|34|35|41|37|38|39|40|41|0\n56|55|54|53|52|52|51|48|48|47|46|46|41|40|39|39|42|43|37|36|36|35|33|33|32|31|30|30|45|31|32|34|34|35|38|37|38|44|40|41|42|43|44|45|50|47|49|49|50|51|57|53|54|55|56|57|0\n56|55|54|52|51|50|50|49|49|48|46|46|42|40|38|37|36|36|39|41|35|34|33|33|32|31|30|30|45|31|32|44|34|35|43|37|38|39|40|41|42|43|44|45|47|47|48|57|53|51|52|53|54|55|56|57|0\n60|59|58|56|56|55|54|53|53|52|50|50|48|47|46|46|45|44|43|42|41|40|39|39|62|63|36|35|35|34|34|38|65|37|36|37|38|64|40|41|42|43|44|45|49|47|48|49|51|51|52|61|54|55|57|57|58|59|60|61|62|63|64|65|0\n33|32|31|30|29|29|28|22|22|23|21|21|25|26|20|19|19|35|20|27|24|23|24|25|26|27|28|34|30|31|32|33|34|35|0\n42|40|40|38|37|37|36|35|34|32|32|31|30|30|29|28|26|25|24|23|23|27|24|25|26|27|28|29|43|31|33|33|34|35|36|39|38|39|41|41|42|43|0\n17|16|15|14|14|13|12|11|11|19|12|13|18|15|16|17|18|19|0\n54|53|52|52|51|50|49|49|48|45|45|43|42|39|38|38|40|37|36|36|34|33|33|32|32|31|30|30|57|31|47|35|34|35|44|37|41|39|40|41|42|43|44|46|46|47|48|56|50|51|55|53|54|55|56|57|0\n30|28|27|27|26|24|24|23|19|18|18|20|21|17|17|31|22|19|20|21|22|23|25|25|26|29|28|29|30|31|0\n49|48|48|47|46|45|43|43|42|40|40|39|38|38|51|37|35|34|33|33|32|31|30|29|28|28|53|29|30|31|32|36|34|35|36|37|52|39|41|41|42|44|44|45|46|47|50|49|50|51|52|53|0\n31|29|26|26|25|23|23|24|22|21|20|18|18|17|17|30|19|19|20|21|22|28|24|25|27|27|28|29|30|31|0\n56|55|54|53|53|52|49|47|47|46|46|44|44|43|42|37|36|35|35|38|34|33|33|40|32|31|30|30|51|31|32|41|34|39|36|37|38|39|40|41|42|43|45|45|50|48|48|49|50|51|52|57|54|55|56|57|0\n40|39|38|37|37|36|34|34|32|31|30|27|27|26|25|24|24|23|22|22|33|23|29|25|26|28|28|29|30|31|32|33|35|35|36|41|38|39|40|41|0\n46|45|45|40|39|39|38|38|37|37|35|34|32|31|31|30|28|28|29|27|26|25|25|44|26|27|36|29|30|33|32|33|34|35|36|43|42|41|40|41|42|43|44|47|46|47|0\n25|22|20|19|18|18|21|17|16|15|14|14|24|15|16|17|23|19|20|21|22|23|24|25|0\n39|38|37|36|35|34|33|33|40|41|31|30|29|29|28|27|27|43|25|25|24|24|45|26|26|44|28|32|30|31|32|42|34|35|36|37|38|39|40|41|42|43|44|45|0\n21|18|15|13|13|14|16|12|12|19|20|17|14|15|16|17|18|19|20|21|0\n23|22|21|20|19|19|24|25|18|17|15|15|16|27|16|17|18|26|20|21|22|23|24|25|26|27|0\n50|49|47|47|46|45|44|44|43|42|39|39|38|37|36|33|33|34|31|31|30|28|27|27|29|41|28|29|30|32|32|35|34|35|36|37|38|40|40|41|42|43|51|45|46|48|48|49|50|51|0\n90|89|88|86|85|84|84|83|82|82|81|80|78|78|77|75|74|74|73|73|92|93|72|71|69|68|68|67|65|64|63|63|62|60|60|59|58|57|56|54|53|53|52|51|50|49|49|95|50|51|52|55|54|55|56|57|58|59|61|61|62|66|64|65|66|67|70|69|70|71|72|94|76|75|76|77|79|79|80|81|91|83|87|85|86|87|88|89|90|91|92|93|94|95|0\n30|30|29|28|27|26|25|25|32|33|23|23|22|21|19|19|20|35|20|21|22|24|24|34|26|27|28|29|31|31|32|33|34|35|0\n19|17|16|15|14|13|13|18|12|12|21|20|14|15|16|17|18|19|20|21|0\n36|34|33|32|31|31|30|29|28|27|26|26|37|24|24|23|21|21|22|39|22|23|25|25|38|27|28|29|30|35|32|33|34|35|36|37|38|39|0\n58|57|57|56|55|52|51|50|48|45|45|46|47|44|44|43|43|42|40|39|39|41|60|61|38|37|35|34|34|33|33|63|36|35|36|37|38|62|40|41|42|54|53|49|46|47|48|49|50|51|52|53|54|55|56|59|58|59|60|61|62|63|0\n23|23|24|25|26|27|22|20|20|19|17|17|18|16|16|29|18|19|21|21|22|28|24|25|26|27|28|29|0\n22|21|21|19|18|17|16|15|14|13|13|20|14|15|16|17|18|19|20|23|22|23|0\n51|48|48|47|46|45|44|43|42|40|39|39|38|36|36|35|32|32|33|31|30|29|28|27|27|50|28|29|30|31|34|33|34|35|37|37|38|41|40|41|42|43|44|45|46|47|49|49|50|51|0\n39|37|31|30|30|32|29|28|28|34|35|26|25|25|24|22|22|21|21|38|23|23|24|27|26|27|36|29|33|31|32|33|34|35|36|37|38|39|0\n28|28|29|30|31|27|26|25|25|23|21|20|19|19|18|18|24|22|20|21|22|23|24|33|26|27|32|29|30|31|32|33|0\n8|6|6|7|9|7|8|9|0\n47|47|46|45|45|44|43|42|40|39|39|38|37|37|50|51|36|34|34|32|32|31|30|29|28|28|53|29|30|31|33|33|35|35|36|52|38|41|40|41|42|43|44|49|46|48|48|49|50|51|52|53|0\n10|7|7|8|9|11|8|9|10|11|0\n20|18|18|16|16|14|13|13|12|12|21|15|14|15|17|17|19|19|20|21|0\n10|10|8|7|7|9|8|9|11|11|0\n19|17|16|14|14|13|11|11|12|18|12|13|15|15|16|17|18|19|0\n10|9|7|7|8|11|8|9|10|11|0\n16|15|15|17|18|14|13|11|11|12|12|13|14|19|16|17|18|19|0\n23|22|22|20|20|18|17|17|16|14|14|15|25|15|16|19|18|19|21|21|24|23|24|25|0\n56|56|55|54|53|52|52|58|59|51|50|48|47|47|46|45|43|42|42|41|40|39|37|36|36|35|34|33|32|32|61|33|34|35|38|37|38|39|40|41|44|43|44|45|46|49|48|49|50|51|60|53|54|55|57|57|58|59|60|61|0\n44|44|43|42|41|40|39|39|46|47|36|36|35|35|34|31|31|30|29|28|27|27|26|26|49|33|28|29|30|32|32|33|34|38|37|37|38|48|40|41|42|43|45|45|46|47|48|49|0\n9|9|7|7|8|11|8|10|10|11|0\n21|19|18|17|15|14|14|13|12|12|20|13|16|15|16|17|18|19|20|21|0\n32|32|30|27|26|26|24|24|25|23|21|20|20|19|18|18|31|19|22|21|22|23|29|25|28|27|28|29|30|31|33|33|0\n25|24|24|23|23|27|21|21|19|19|20|29|17|17|18|31|18|30|20|22|22|28|26|25|26|27|28|29|30|31|0\n9|7|6|6|8|7|8|9|0\n42|40|40|39|38|36|36|35|35|43|33|32|32|30|30|29|28|27|26|25|24|24|45|25|26|27|28|29|31|31|34|33|34|44|37|37|38|39|41|41|42|43|44|45|0\n42|41|41|40|38|38|33|33|32|31|31|35|28|27|27|26|25|24|24|23|23|37|30|25|26|29|28|29|30|36|32|34|34|35|36|37|39|39|40|43|42|43|0\n27|25|22|21|21|23|19|18|18|17|16|15|15|26|16|17|20|19|20|24|22|23|24|25|26|27|0\n86|82|82|83|81|79|79|77|77|78|85|76|71|70|69|68|67|66|66|72|73|64|62|62|63|61|60|59|57|56|54|52|52|51|51|55|50|49|48|47|46|45|45|75|46|47|48|49|50|58|53|53|54|55|56|57|58|59|60|61|65|63|64|65|74|67|68|69|70|71|72|73|74|75|76|87|78|80|80|81|84|83|84|85|86|87|0\n34|34|33|31|30|28|27|26|26|25|23|22|22|21|20|19|19|32|20|21|24|23|24|25|29|27|28|29|30|31|32|33|35|35|0\n50|50|46|46|45|44|44|43|41|40|39|39|36|35|33|33|31|31|32|30|29|29|28|27|27|49|28|38|30|37|32|34|34|35|36|37|38|42|40|41|42|43|48|45|47|47|48|49|51|51|0\n45|44|44|43|43|47|38|38|37|36|35|34|33|32|31|31|40|41|30|29|28|27|26|26|49|27|28|29|30|42|32|33|34|35|36|37|39|39|40|41|42|48|46|45|46|47|48|49|0\n60|59|58|57|56|53|53|52|52|55|51|49|48|47|46|45|43|42|42|40|39|39|38|37|36|34|34|33|32|32|50|33|35|35|36|37|38|41|40|41|44|43|44|45|46|47|48|49|50|51|61|54|54|55|56|57|58|59|60|61|0\n72|70|68|68|67|67|66|65|64|63|62|57|56|55|54|54|53|52|51|50|50|59|60|48|48|49|73|74|47|46|45|44|43|42|41|40|40|76|77|41|42|43|44|45|46|47|75|49|61|51|52|53|58|55|56|57|58|59|60|61|62|63|64|65|66|71|69|69|70|71|72|73|74|75|76|77|0\n46|46|45|44|43|42|40|39|38|38|37|36|35|35|48|49|34|33|32|31|29|29|28|27|27|51|28|30|30|31|32|33|34|50|36|37|41|39|40|41|42|43|44|45|47|47|48|49|50|51|0\n28|27|25|25|24|21|20|20|22|19|19|17|16|16|18|17|18|29|23|21|22|23|24|26|26|27|28|29|0\n67|65|64|63|58|58|57|56|54|54|55|60|61|51|50|49|49|52|48|46|45|42|42|43|44|41|40|36|36|37|35|35|39|66|38|37|38|39|40|41|47|43|44|45|46|47|48|53|50|51|52|53|62|55|56|57|59|59|60|61|62|63|64|65|66|67|0\n27|23|19|19|20|21|18|18|24|17|16|15|15|26|16|17|25|22|20|21|22|23|24|25|26|27|0\n50|49|49|51|47|46|46|45|44|43|42|42|40|34|34|33|32|32|36|31|31|38|30|29|28|28|41|29|30|39|37|33|35|35|36|37|38|39|40|41|53|43|44|45|48|47|48|52|50|51|52|53|0\n43|43|42|42|45|39|38|37|37|40|36|36|31|30|29|29|32|33|26|26|27|25|25|35|28|27|28|34|30|31|32|33|34|35|47|41|38|39|40|41|46|44|44|45|46|47|0\n18|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|19|19|0\n38|38|34|33|33|35|32|27|27|28|26|26|30|24|23|23|22|21|21|37|22|25|24|25|31|29|28|29|30|31|32|36|34|35|36|37|39|39|0\n26|24|23|23|22|20|19|18|18|17|16|15|15|27|16|17|21|19|20|21|22|25|24|25|26|27|0\n16|16|15|13|13|11|10|10|12|11|12|14|14|15|17|17|0\n21|21|22|20|19|18|18|24|16|14|14|15|17|15|16|17|25|19|20|23|22|23|24|25|0\n25|24|23|21|20|19|18|17|16|15|14|14|22|15|16|17|18|19|20|21|22|23|24|25|0\n23|20|19|19|18|17|15|15|14|13|13|22|14|16|16|17|18|21|20|21|22|23|0\n30|29|28|26|25|23|23|22|22|21|21|20|17|17|18|19|18|19|20|31|27|24|24|25|26|27|28|29|30|31|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n51|49|48|47|46|45|44|43|42|40|40|39|37|35|35|34|32|32|31|31|30|29|28|27|27|50|28|29|30|38|33|33|34|36|36|37|38|39|41|41|42|43|44|45|46|47|48|49|50|51|0\n60|58|57|57|56|56|55|53|53|50|48|46|46|47|45|44|43|42|41|40|38|37|37|34|34|35|33|32|32|51|52|33|36|35|36|39|38|39|40|41|42|43|44|45|49|47|48|49|50|51|52|54|54|55|61|59|58|59|60|61|0\n39|35|35|36|33|33|34|38|32|31|30|29|28|28|27|26|24|23|22|22|25|23|24|25|26|27|41|29|30|31|32|40|34|37|36|37|38|39|40|41|0\n43|43|40|39|39|38|37|36|35|34|34|33|31|31|30|27|27|28|26|24|24|25|45|25|26|29|28|29|30|32|32|33|42|35|36|37|38|41|40|41|42|44|44|45|0\n25|24|22|17|17|18|16|15|15|20|14|14|23|21|16|19|18|19|20|21|22|23|24|25|0\n17|16|16|15|15|13|12|11|11|14|12|13|14|19|18|17|18|19|0\n23|17|16|15|14|14|18|19|13|13|21|22|20|15|16|17|18|19|20|21|22|23|0\n29|28|27|26|25|24|24|23|22|21|19|19|18|17|17|31|18|20|20|21|22|23|30|25|26|27|28|29|30|31|0\n67|65|62|61|60|60|63|58|57|57|56|54|54|53|50|50|51|49|48|46|44|44|45|43|41|41|40|39|37|36|36|35|35|66|38|37|38|39|40|42|42|43|47|45|46|47|48|49|52|51|52|53|55|55|56|59|58|59|64|61|62|63|64|65|66|67|0\n59|55|55|56|54|52|52|51|51|49|49|47|47|48|46|44|44|43|42|41|40|39|39|36|36|35|34|33|32|32|38|33|34|35|37|37|38|61|40|41|42|43|45|45|46|60|48|50|50|58|53|53|54|57|56|57|58|59|60|61|0\n10|8|7|7|9|11|8|9|10|11|0\n17|17|15|15|14|13|12|11|11|19|12|13|14|16|16|18|18|19|0\n50|49|48|46|42|41|41|43|44|45|40|40|39|38|35|34|34|33|32|31|30|29|28|27|27|37|28|29|30|31|32|33|36|35|36|37|38|39|51|47|42|43|44|45|46|47|48|49|50|51|0\n51|50|49|48|47|46|45|44|43|42|42|52|53|40|40|39|38|37|35|34|33|33|32|31|30|29|29|55|30|31|32|36|34|35|36|37|38|39|41|41|54|43|44|45|46|47|48|49|50|51|52|53|54|55|0\n63|63|64|65|62|60|60|57|56|56|55|53|53|52|51|51|50|49|47|47|46|45|44|42|40|40|41|39|38|37|36|35|35|67|36|37|38|39|43|41|42|43|44|45|46|48|48|49|50|59|52|54|54|55|58|57|58|59|61|61|62|66|64|65|66|67|0\n25|15|15|16|17|18|19|20|21|22|14|14|24|23|16|17|18|19|20|21|22|23|24|25|0\n60|60|56|55|55|51|51|50|49|49|53|48|47|46|45|45|44|43|42|41|40|38|37|36|34|34|35|33|32|32|59|33|39|35|36|37|38|39|40|41|42|43|44|58|46|47|48|54|50|52|52|53|54|57|56|57|58|59|61|61|0\n14|10|10|11|9|9|13|15|12|11|12|13|14|15|0\n25|24|22|21|21|19|17|16|16|15|14|14|20|15|18|17|18|19|20|23|22|23|24|25|0\n21|21|20|19|19|18|16|15|14|13|13|17|14|15|16|17|18|23|20|22|22|23|0\n34|33|33|32|31|31|29|29|28|26|26|25|23|23|22|21|20|20|37|21|22|24|24|25|27|27|28|30|30|36|32|35|34|35|36|37|0\n42|41|41|43|37|37|36|36|39|35|33|33|32|30|29|29|27|26|26|25|24|24|45|25|28|27|28|31|30|31|32|34|34|35|40|38|38|39|40|44|42|43|44|45|0\n30|30|29|27|25|23|23|24|22|19|19|20|18|17|17|28|18|21|20|21|22|26|24|25|26|27|28|29|31|31|0\n51|50|49|49|52|53|46|46|45|43|43|42|42|41|39|39|36|35|34|34|37|33|31|30|30|29|29|55|32|31|32|33|38|35|36|37|38|40|40|41|48|44|44|45|47|47|48|54|50|51|52|53|54|55|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n8|7|6|6|9|7|8|9|0\n37|34|34|32|31|30|29|29|28|26|26|25|24|21|21|22|20|20|36|23|22|23|24|25|27|27|28|33|30|31|32|33|35|35|36|37|0\n8|8|9|7|7|11|10|9|10|11|0\n38|38|34|33|32|32|35|31|29|29|28|27|26|25|24|23|22|21|21|37|22|23|24|25|26|27|28|30|30|31|36|33|34|35|36|37|39|39|0\n44|42|41|40|40|39|38|36|34|34|33|33|32|31|30|28|26|26|27|25|24|24|45|25|29|27|28|29|30|31|32|37|35|35|36|37|38|39|43|41|42|43|44|45|0\n69|67|66|61|60|58|58|53|53|51|51|50|50|55|56|48|47|47|46|45|43|43|42|41|40|39|39|62|63|64|38|37|36|36|68|37|38|65|40|41|42|44|44|45|46|49|48|49|57|52|52|54|54|55|56|57|59|59|60|61|62|63|64|65|66|67|68|69|0\n30|29|28|28|27|24|23|22|22|25|20|19|18|17|17|21|18|19|20|21|26|23|24|25|26|27|31|29|30|31|0\n19|18|15|15|13|13|12|11|11|17|12|14|14|16|16|17|18|19|0\n60|60|55|53|53|51|50|49|48|48|47|45|45|44|42|42|41|40|40|56|57|39|37|36|36|35|34|33|32|32|59|33|34|35|38|37|38|39|58|41|43|43|44|46|46|47|52|49|50|51|52|54|54|55|56|57|58|59|61|61|0\n11|10|9|8|7|7|8|9|10|11|0\n18|18|15|15|12|12|13|11|11|17|14|13|14|16|16|17|19|19|0\n34|34|32|30|29|29|28|27|26|23|23|24|22|21|19|19|20|33|20|21|22|25|24|25|26|27|28|31|30|31|32|33|35|35|0\n37|37|36|33|33|34|27|27|28|29|26|26|31|25|24|23|21|21|22|39|22|23|24|25|32|30|28|29|30|31|32|35|34|35|36|38|38|39|0\n51|51|50|50|53|48|48|47|47|55|45|45|44|44|57|42|42|41|41|59|39|39|37|36|36|33|33|34|32|32|61|35|34|35|38|37|38|40|40|60|43|43|58|46|46|56|49|49|54|52|52|53|54|55|56|57|58|59|60|61|0\n37|33|31|31|30|29|29|34|35|28|27|26|25|23|23|22|21|20|20|21|22|24|24|25|26|27|28|36|30|32|32|33|34|35|36|37|0\n48|43|43|44|42|42|46|41|40|39|39|38|36|36|35|32|32|31|29|28|28|27|26|26|34|27|30|29|30|31|33|33|34|35|37|37|38|49|40|41|47|45|44|45|46|47|48|49|0\n27|26|23|22|21|21|20|19|19|17|15|15|16|18|16|17|18|25|20|24|22|23|24|25|26|27|0\n16|16|15|15|18|19|13|12|12|14|21|13|14|20|17|17|18|19|20|21|0\n59|57|54|54|53|53|52|50|49|47|47|46|45|45|44|42|42|41|39|39|37|37|35|34|34|33|32|31|31|58|32|33|36|35|36|38|38|40|40|41|43|43|44|51|46|48|48|49|50|51|52|56|55|55|56|57|58|59|0\n39|39|38|36|36|35|34|34|31|31|27|26|25|25|28|29|24|23|22|22|33|23|24|30|26|27|28|29|30|32|32|33|41|35|37|37|38|40|40|41|0\n60|59|58|57|56|56|54|49|49|48|48|46|46|45|44|43|43|52|42|39|38|38|37|36|36|35|34|33|32|32|55|33|34|35|41|37|40|39|40|41|42|53|44|45|47|47|51|50|50|51|52|53|54|55|61|57|58|59|60|61|0\n20|20|19|18|17|14|14|15|13|12|12|13|16|15|16|17|18|19|21|21|0\n50|50|49|47|44|43|42|41|41|45|34|33|33|35|32|32|31|31|30|29|29|39|28|27|27|48|28|40|30|38|37|36|34|35|36|37|38|39|40|46|42|43|44|45|46|47|48|49|51|51|0\n50|49|48|48|47|45|44|44|43|40|40|39|36|34|34|35|37|32|31|30|30|29|28|27|27|42|28|29|33|31|32|33|38|35|36|37|38|39|41|41|42|43|46|45|46|47|51|49|50|51|0\n51|51|50|49|46|45|45|47|44|43|43|53|41|41|35|35|36|34|34|38|33|33|32|31|30|29|29|55|30|31|32|40|39|37|36|37|38|39|40|42|42|54|44|48|46|47|48|49|50|52|52|53|54|55|0\n35|34|32|31|30|29|28|27|26|25|24|21|21|20|19|19|23|33|20|22|22|23|24|25|26|27|28|29|30|31|32|33|34|35|0\n38|36|35|35|34|31|31|30|29|28|28|27|26|25|25|24|23|21|21|22|22|23|24|39|26|27|33|29|30|32|32|33|34|37|36|37|38|39|0\n28|27|25|24|23|23|22|21|20|20|19|18|16|16|17|17|18|19|29|21|22|26|24|25|26|27|28|29|0\n56|50|49|49|51|48|47|47|53|54|46|46|45|40|40|41|39|39|43|38|37|37|58|59|36|35|34|33|32|32|61|33|34|35|36|60|38|44|42|41|42|43|44|45|57|55|48|52|50|51|52|53|54|55|56|57|58|59|60|61|0\n50|50|48|43|42|42|41|41|40|39|39|38|38|37|34|33|31|31|30|30|35|29|28|27|27|49|28|29|36|32|32|33|34|35|36|37|47|46|40|45|44|43|44|45|46|47|48|49|51|51|0\n25|24|24|26|21|21|20|19|18|17|16|15|15|23|16|17|18|19|20|22|22|23|27|25|26|27|0\n77|74|73|72|69|68|65|64|64|63|63|62|60|60|61|70|59|57|56|56|55|54|53|52|50|49|49|48|46|46|45|44|43|42|41|40|40|75|76|41|42|43|44|45|47|47|48|51|50|51|52|53|54|55|58|57|58|59|71|61|62|67|66|65|66|67|68|69|70|71|72|73|74|75|76|77|0\n28|27|27|23|22|22|24|21|19|18|18|17|16|16|26|17|20|19|20|21|25|23|24|25|26|29|28|29|0\n16|16|14|13|12|10|10|11|15|11|12|13|14|15|17|17|0\n6|6|5|5|7|7|0\n15|13|11|10|9|9|12|14|10|11|12|13|14|15|0\n14|14|13|12|10|9|9|11|10|11|12|13|15|15|0\n47|45|44|44|43|41|41|40|39|39|48|49|37|35|35|34|33|32|32|31|29|28|28|27|27|51|30|29|30|31|38|33|34|36|36|37|38|50|40|42|42|43|46|45|46|47|48|49|50|51|0\n18|17|17|16|15|13|11|11|12|14|12|13|14|15|16|19|18|19|0\n5|4|4|5|0\n32|32|31|30|29|27|26|26|25|25|34|23|22|21|20|19|19|24|20|21|22|23|24|35|28|27|28|29|30|31|33|33|34|35|0\n37|35|34|32|31|31|27|27|28|29|26|25|23|22|22|21|20|20|36|21|24|23|24|25|26|30|28|29|30|33|32|33|34|35|36|37|0\n16|15|15|13|13|11|11|10|10|12|12|14|14|17|16|17|0\n35|35|34|32|32|31|30|29|27|27|26|26|24|23|22|21|20|20|25|21|22|23|24|25|37|28|28|29|30|31|33|33|34|36|36|37|0\n31|30|28|26|26|25|22|21|21|23|20|19|18|17|17|29|18|19|20|24|22|23|24|25|27|27|28|29|30|31|0\n85|84|83|83|82|81|80|80|79|77|77|76|72|71|70|68|68|69|67|65|65|64|61|61|62|59|58|57|57|56|55|54|53|52|51|50|47|46|46|48|45|45|74|75|49|47|48|49|50|51|52|53|54|55|56|60|58|59|60|63|62|63|64|66|66|67|73|69|70|71|72|73|74|75|76|78|78|79|87|81|82|86|84|85|86|87|0\n45|42|41|39|39|40|37|37|36|34|34|33|32|31|30|29|28|26|26|25|24|24|44|25|27|27|28|29|30|31|32|33|35|35|36|38|38|43|40|41|42|43|44|45|0\n54|53|53|52|50|50|45|45|44|44|47|41|40|39|37|37|38|42|35|35|34|32|32|31|30|29|29|49|30|31|33|33|34|36|36|43|38|39|40|41|42|43|48|46|46|47|48|49|51|51|52|55|54|55|0\n31|29|27|27|28|25|22|21|19|19|20|23|18|17|17|26|18|24|20|21|22|23|24|25|26|30|28|29|30|31|0\n25|23|21|21|20|18|17|16|16|15|14|14|24|15|19|17|18|19|20|22|22|23|24|25|0\n74|73|71|71|70|68|68|64|62|61|61|60|60|59|58|57|56|56|66|55|54|53|51|51|52|49|48|45|45|44|43|43|40|40|41|39|39|50|42|41|42|47|44|46|46|47|48|49|50|75|52|53|54|55|67|57|58|59|65|63|62|63|64|65|66|67|69|69|70|72|72|73|74|75|0\n37|34|33|32|32|31|28|26|26|25|25|29|23|22|22|21|20|20|36|21|24|23|24|30|27|27|28|29|30|31|35|33|34|35|36|37|0\n25|23|23|22|20|19|17|16|16|15|14|14|21|15|18|17|18|19|20|21|22|24|24|25|0\n28|28|25|22|22|23|24|21|19|18|18|17|16|16|27|17|20|19|20|21|26|23|24|25|26|27|29|29|0\n34|34|32|31|30|29|26|23|22|22|24|21|21|27|20|19|19|33|20|28|25|23|24|25|26|27|28|29|30|31|32|33|35|35|0\n32|28|28|29|30|26|26|25|25|24|22|21|20|19|18|18|23|19|20|21|22|23|24|33|27|27|31|29|30|31|32|33|0\n41|41|40|39|38|37|36|36|43|35|34|33|32|31|28|28|26|26|25|24|24|30|45|25|27|27|29|29|30|31|32|33|34|35|44|37|38|39|40|42|42|43|44|45|0\n36|35|35|32|32|31|29|27|27|28|26|25|24|22|22|21|20|20|34|21|23|23|24|25|26|30|28|29|30|31|33|33|34|37|36|37|0\n50|49|48|48|47|46|43|43|37|36|36|38|39|35|33|33|34|41|31|30|30|29|28|27|27|45|28|29|32|31|32|42|34|35|40|37|38|39|40|41|42|44|44|45|46|47|51|49|50|51|0\n91|90|88|86|85|85|84|77|77|78|79|80|76|74|74|75|82|71|70|68|68|67|66|65|64|64|72|63|62|61|60|59|58|57|56|55|54|52|51|50|50|49|48|47|47|89|48|49|53|51|52|53|54|55|56|57|58|59|60|61|62|63|73|65|66|67|69|69|70|71|72|73|83|75|76|81|78|79|80|81|82|83|84|87|86|87|88|89|90|91|0\n23|22|22|21|21|19|17|17|16|15|14|14|20|15|16|18|18|19|20|25|24|23|24|25|0\n43|40|40|35|34|34|33|33|32|32|38|31|30|29|28|27|24|24|25|23|23|42|26|25|26|27|28|29|30|31|39|37|36|35|36|37|38|39|41|41|42|43|0\n13|11|11|10|8|8|9|9|10|12|12|13|0\n31|29|27|27|26|25|24|21|20|20|22|19|18|17|17|30|18|19|23|21|22|23|24|25|26|28|28|29|30|31|0\n37|34|34|33|32|31|31|30|29|28|27|25|24|23|23|22|21|20|20|21|22|26|24|25|26|27|28|29|30|36|32|33|35|35|36|37|0\n45|43|41|40|40|39|37|37|36|33|33|32|32|31|29|29|27|26|25|24|24|28|44|25|26|27|28|30|30|31|35|34|34|35|36|38|38|39|42|41|42|43|44|45|0\n10|10|8|7|7|9|8|9|11|11|0\n52|51|51|50|49|47|40|40|39|38|38|42|36|35|35|34|32|31|31|30|30|44|45|29|28|28|48|29|46|33|32|33|34|37|36|37|43|39|41|41|42|43|44|45|46|47|48|49|50|53|52|53|0\n33|29|27|27|26|25|24|23|23|22|21|20|20|19|18|18|32|19|31|21|22|30|24|25|26|28|28|29|30|31|32|33|0\n51|49|46|45|44|44|47|41|41|40|39|39|37|37|36|34|33|31|30|30|29|28|28|27|27|50|35|29|32|31|32|33|34|35|36|38|38|43|40|42|42|43|48|45|46|47|48|49|50|51|0\n29|29|28|27|26|26|24|24|25|32|33|22|22|21|20|19|19|35|20|21|23|23|34|25|31|27|28|30|30|31|32|33|34|35|0\n54|53|52|51|49|48|47|47|46|44|43|43|42|41|41|36|36|35|34|33|33|38|32|31|30|29|29|40|30|31|32|39|34|35|37|37|38|39|40|55|42|45|44|45|46|50|48|49|50|51|52|53|54|55|0\n64|62|61|60|59|55|54|53|53|56|52|51|50|50|49|48|47|45|45|46|63|42|42|41|40|37|37|38|36|35|34|34|44|35|36|39|38|39|40|41|43|43|44|65|46|47|48|49|58|51|52|57|54|55|56|57|58|59|60|61|62|63|64|65|0\n54|52|52|51|50|49|47|47|46|46|45|40|39|39|38|38|42|37|37|34|34|33|32|31|30|29|29|36|30|31|32|33|35|35|36|44|43|41|40|41|42|43|44|45|55|48|48|49|50|51|53|53|54|55|0\n46|46|44|42|41|41|40|38|38|37|36|34|34|32|32|31|29|29|28|27|26|25|25|45|26|27|28|30|30|31|33|33|35|35|36|37|39|39|40|43|42|43|44|45|47|47|0\n68|67|67|66|66|64|63|63|62|61|60|58|57|56|55|55|54|53|53|71|49|47|47|46|46|50|51|44|44|42|42|40|39|39|38|38|73|41|40|41|43|43|45|45|52|48|48|49|50|51|52|72|54|59|56|57|58|59|60|61|62|65|64|65|70|69|68|69|70|71|72|73|0\n34|33|32|32|30|30|27|27|24|23|23|22|22|21|20|19|19|29|20|21|26|25|24|25|26|28|28|29|31|31|35|33|34|35|0\n68|67|67|65|64|61|61|62|60|59|58|55|55|54|54|53|51|51|50|49|48|46|46|45|44|42|41|40|38|38|37|36|36|43|66|37|39|39|40|41|42|43|44|45|47|47|48|49|50|52|52|53|57|56|56|57|58|59|60|63|62|63|64|65|66|69|68|69|0\n18|16|15|14|13|12|12|17|11|11|19|13|14|15|16|17|18|19|0\n54|54|52|51|50|49|48|46|45|44|44|43|42|40|39|38|36|35|35|34|33|32|32|31|30|29|29|53|30|31|41|33|34|37|36|37|38|39|40|41|42|43|47|45|46|47|48|49|50|51|52|53|55|55|0\n12|11|11|8|8|9|10|9|10|13|12|13|0\n10|9|9|7|7|8|8|11|10|11|0\n31|30|30|29|28|27|24|24|25|26|21|20|20|19|18|18|23|19|22|21|22|23|33|25|26|27|28|29|32|31|32|33|0\n22|21|20|19|19|18|16|16|14|13|13|15|14|15|17|17|18|23|20|21|22|23|0\n55|54|53|52|50|49|48|47|47|46|44|43|42|42|40|40|39|37|35|34|33|33|32|31|31|30|29|29|30|38|32|36|34|35|36|37|38|39|41|41|45|43|44|45|46|51|48|49|50|51|52|53|54|55|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n51|49|46|43|43|44|42|41|41|47|39|38|37|36|36|35|33|33|32|31|30|29|28|27|27|50|28|29|30|31|32|34|34|35|40|37|38|39|40|48|42|45|44|45|46|47|48|49|50|51|0\n42|42|43|41|41|45|40|40|39|33|33|34|32|31|28|28|27|27|30|36|25|25|26|38|26|37|29|29|30|31|32|35|34|35|36|37|38|39|47|46|44|43|44|45|46|47|0\n58|56|56|57|54|53|52|52|51|49|49|47|45|44|43|41|40|38|38|39|42|37|36|35|34|33|32|31|31|48|32|33|34|35|36|37|46|39|40|41|42|43|44|45|46|47|48|50|50|51|55|53|54|55|59|57|58|59|0\n38|38|36|33|32|31|31|34|30|29|28|27|25|25|24|23|22|21|21|37|22|23|24|26|26|27|28|29|30|35|32|33|34|35|36|37|39|39|0\n13|12|12|11|10|10|9|9|15|11|14|13|14|15|0\n19|15|15|16|17|18|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0\n18|17|17|15|14|13|11|11|12|16|12|13|14|15|16|19|18|19|0\n23|22|22|21|20|19|17|17|16|16|14|14|15|15|25|18|18|19|20|21|24|23|24|25|0\n16|16|14|11|11|12|10|10|15|13|12|13|14|15|17|17|0\n60|59|59|57|56|55|54|53|52|48|48|47|47|50|46|45|44|43|42|41|39|39|38|37|36|35|34|32|32|33|58|33|34|35|36|37|38|40|40|41|42|43|44|45|46|51|49|49|50|51|52|53|54|55|56|57|58|61|60|61|0\n40|39|38|37|36|35|34|34|30|30|29|28|28|27|24|23|23|25|22|22|33|26|24|25|26|27|32|29|31|31|32|33|41|35|36|37|38|39|40|41|0\n43|42|41|40|38|36|36|34|34|32|32|31|30|27|26|26|25|25|24|23|23|39|24|29|28|27|28|29|30|31|33|33|35|35|37|37|38|39|40|41|42|43|0\n11|8|8|7|7|10|9|9|10|11|0\n34|32|32|33|35|31|29|29|30|27|26|24|23|23|21|21|20|20|28|22|22|25|24|25|26|27|28|37|30|31|36|33|34|35|36|37|0\n51|50|50|49|49|45|45|46|41|41|40|39|38|38|43|37|36|34|33|33|32|30|30|29|28|28|48|29|31|31|32|35|34|35|36|37|44|39|40|42|42|43|44|47|46|47|48|53|52|51|52|53|0\n49|48|48|50|45|44|40|40|41|42|43|38|37|36|35|34|33|33|32|31|30|29|28|27|27|47|28|29|30|31|32|39|34|35|36|37|38|39|46|41|42|43|44|45|46|47|51|49|50|51|0\n35|33|32|31|28|27|26|26|25|24|24|23|22|21|20|19|19|34|20|21|22|23|30|25|29|27|28|29|30|31|32|33|34|35|0\n13|12|12|14|9|9|10|11|10|11|15|13|14|15|0\n16|15|10|10|11|12|13|14|17|11|12|13|14|15|16|17|0\n21|19|17|16|16|15|14|13|12|12|20|13|14|15|18|17|18|19|20|21|0\n22|21|21|18|18|16|16|15|14|13|13|20|14|15|17|17|19|19|20|23|22|23|0\n56|54|54|53|52|48|48|49|50|51|57|58|47|46|45|45|60|43|42|41|39|39|38|37|36|35|34|33|32|32|44|33|34|35|36|37|38|40|40|41|42|43|44|61|46|47|59|49|50|51|52|53|55|55|56|57|58|59|60|61|0\n35|34|34|33|32|31|30|29|28|27|25|24|24|23|22|21|20|20|37|21|22|23|26|25|26|27|28|29|30|31|32|33|36|35|36|37|0\n47|46|46|45|44|44|42|39|38|35|35|36|37|40|34|33|31|31|30|29|28|27|26|26|43|27|28|29|30|32|32|33|34|41|36|37|38|39|40|41|42|43|49|45|48|47|48|49|0\n45|45|44|44|42|41|40|40|39|37|35|34|34|33|33|38|48|31|30|29|28|27|26|26|32|27|28|29|30|31|32|49|36|35|36|37|38|39|43|41|42|43|47|46|46|47|48|49|0\n35|33|30|29|29|27|27|26|25|24|24|23|22|21|20|19|19|34|20|21|22|23|32|25|26|28|28|31|30|31|32|33|34|35|0\n21|19|18|17|16|13|13|12|12|15|20|14|14|15|16|17|18|19|20|21|0\n17|16|16|15|14|14|12|11|11|13|12|13|19|15|18|17|18|19|0\n41|37|34|34|35|33|32|30|30|29|27|27|28|38|25|25|24|23|22|22|40|23|24|26|26|39|28|29|31|31|32|33|36|35|36|37|38|39|40|41|0\n8|8|9|7|7|11|10|9|10|11|0\n48|47|45|44|43|43|42|41|39|38|38|40|37|36|34|33|31|31|30|29|28|27|26|26|35|27|28|29|30|32|32|33|34|35|36|37|49|39|40|41|42|46|44|45|46|47|48|49|0\n25|24|24|23|23|20|19|18|18|17|15|15|16|22|16|17|21|19|20|21|22|27|26|25|26|27|0\n20|18|18|17|17|21|16|16|13|13|14|15|14|15|23|22|19|19|20|21|22|23|0\n18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0\n9|8|6|6|7|7|8|9|0\n23|19|19|20|14|14|15|16|17|13|13|22|18|15|16|17|18|21|20|21|22|23|0\n24|23|22|22|19|19|17|17|16|15|14|14|21|15|16|18|18|20|20|21|25|23|24|25|0\n8|7|6|6|9|7|8|9|0\n23|21|19|18|17|16|16|15|14|13|13|22|14|15|20|17|18|19|20|21|22|23|0\n25|25|24|23|23|21|20|18|18|17|16|15|15|22|16|17|19|19|20|21|22|27|24|26|26|27|0\n51|51|52|46|41|40|40|42|39|38|38|44|36|35|33|32|32|34|37|47|48|30|30|29|28|28|50|29|31|31|49|33|34|35|36|37|45|39|43|41|42|43|44|45|46|47|48|49|50|53|52|53|0\n42|41|40|38|37|36|35|35|34|34|33|32|30|29|28|27|24|24|25|23|23|31|26|25|26|27|28|29|30|31|32|33|43|39|36|37|38|39|40|41|42|43|0\n13|13|12|11|10|9|9|15|10|11|12|14|14|15|0\n33|31|30|29|28|28|32|27|26|25|24|24|22|21|20|19|19|23|20|21|22|23|35|25|26|27|34|29|30|31|32|33|34|35|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n41|39|38|37|36|32|31|30|30|33|34|27|27|28|25|25|23|23|22|22|40|24|24|26|26|29|28|29|35|31|32|33|34|35|36|37|38|39|40|41|0\n47|46|44|43|42|41|41|40|40|48|49|38|38|37|35|34|34|33|32|30|29|28|28|27|27|51|31|29|30|31|32|33|36|35|36|37|39|39|50|45|42|43|44|45|46|47|48|49|50|51|0\n5|4|4|5|0\n47|46|44|43|42|38|37|37|36|33|32|32|34|31|30|30|40|28|28|27|26|25|25|45|26|27|29|29|41|31|35|33|34|35|36|39|38|39|40|41|42|43|44|45|46|47|0\n4|4|5|5|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n21|18|17|17|16|15|13|13|12|12|20|14|14|15|16|19|18|19|20|21|0\n49|49|45|43|43|42|42|46|47|41|40|39|39|38|36|35|34|34|32|31|28|28|29|27|27|33|30|29|30|31|32|33|37|35|36|37|38|51|40|41|48|44|44|45|46|47|48|50|50|51|0\n15|14|13|11|9|9|10|12|10|11|12|13|14|15|0\n31|30|28|26|26|24|24|23|21|21|19|18|17|17|20|29|18|19|20|22|22|23|25|25|27|27|28|29|30|31|0\n36|35|34|33|32|31|31|30|29|27|25|25|24|22|22|21|20|20|28|21|23|23|24|26|26|27|28|29|30|37|32|33|34|35|36|37|0\n53|52|47|46|46|48|45|45|50|44|43|42|39|39|40|38|37|37|54|55|36|35|34|30|30|31|32|33|57|31|32|33|34|35|36|56|38|41|40|41|42|43|44|51|49|47|48|49|50|51|52|53|54|55|56|57|0\n43|39|38|35|34|34|36|33|32|32|40|31|30|29|28|25|25|24|24|23|23|42|27|26|26|27|28|29|30|31|41|33|37|35|36|37|38|39|40|41|42|43|0\n23|22|20|20|19|18|18|24|25|17|15|15|16|27|16|17|26|19|21|21|22|23|24|25|26|27|0\n60|60|55|55|56|51|51|50|49|48|48|53|47|46|45|43|41|41|42|40|40|39|37|35|35|34|33|33|32|32|59|38|34|36|36|37|38|39|58|44|42|43|44|45|46|47|54|49|50|52|52|53|54|57|56|57|58|59|61|61|0\n29|28|27|27|26|25|24|23|22|21|20|20|18|17|17|19|18|19|31|21|22|23|24|25|26|30|28|29|30|31|0\n46|44|43|42|42|41|40|38|37|37|36|35|33|33|32|31|31|28|28|26|26|25|25|30|27|27|29|29|30|47|32|34|34|35|36|39|38|39|40|41|45|43|44|45|46|47|0\n73|72|72|74|71|70|68|66|66|67|63|63|62|61|59|58|58|57|57|65|76|56|55|53|53|52|49|48|48|50|51|78|79|46|46|44|43|43|42|42|81|45|44|45|47|47|80|49|50|51|52|54|54|55|56|77|60|59|60|61|62|64|64|65|69|67|68|69|70|71|75|73|74|75|76|77|78|79|80|81|0\n30|29|28|26|26|25|24|24|23|21|21|19|18|17|17|20|18|19|20|22|22|23|31|25|27|27|28|29|30|31|0\n17|17|16|14|13|13|12|11|11|19|12|15|14|15|16|18|18|19|0\n36|35|33|32|32|31|31|29|27|26|25|25|24|22|21|21|20|20|30|23|22|23|24|28|26|27|28|29|30|37|34|33|34|35|36|37|0\n18|17|17|19|16|15|15|13|12|12|14|13|14|21|16|20|18|19|20|21|0\n14|12|10|10|11|13|9|9|15|11|12|13|14|15|0\n30|30|28|27|25|22|22|23|21|21|20|19|17|17|18|29|18|19|20|26|24|23|24|25|26|27|28|29|31|31|0\n63|63|62|61|60|59|58|57|57|55|54|53|52|46|46|45|45|48|44|44|43|40|40|39|39|42|36|36|37|35|34|34|56|35|38|37|38|51|41|41|42|43|50|49|47|47|48|49|50|51|52|53|54|55|56|65|58|59|60|61|62|64|64|65|0\n63|63|62|62|61|60|60|58|58|55|55|53|52|52|51|51|57|67|50|49|45|43|43|44|46|47|40|40|39|39|38|36|36|37|69|37|38|42|41|41|42|48|44|45|46|47|48|49|50|68|54|53|54|56|56|57|59|59|66|61|65|64|64|65|66|67|68|69|0\n60|58|57|57|54|54|55|52|51|51|50|49|47|47|48|46|41|40|39|39|42|38|37|36|35|35|44|33|32|32|34|33|34|45|36|37|38|43|40|41|42|43|44|45|46|61|48|49|50|53|52|53|56|55|56|59|58|59|60|61|0\n32|32|29|28|27|26|25|24|23|23|22|20|20|19|18|18|31|19|21|21|22|30|24|25|26|27|28|29|30|31|33|33|0\n23|20|20|18|17|16|16|15|14|13|13|22|14|15|19|17|18|19|21|21|22|23|0\n13|13|12|11|10|9|9|15|10|11|12|14|14|15|0\n35|34|34|33|32|32|30|27|26|26|28|24|23|23|22|21|20|20|31|21|22|25|24|25|29|27|28|29|30|31|37|33|36|35|36|37|0\n12|11|10|10|8|8|9|9|13|11|12|13|0\n42|42|40|38|38|37|36|35|34|32|32|27|27|28|25|25|26|30|24|23|23|41|24|31|26|29|28|29|30|31|33|33|34|35|36|37|39|39|40|41|43|43|0\n36|36|34|33|32|31|29|29|28|27|25|25|24|23|22|21|20|20|35|21|22|23|24|26|26|27|28|30|30|31|32|33|34|35|37|37|0\n37|37|36|35|33|32|32|31|31|39|30|28|26|26|27|25|24|23|22|22|41|23|24|25|29|27|28|29|30|40|34|33|34|35|36|38|38|39|40|41|0\n59|54|54|53|52|50|50|51|56|49|46|46|45|45|44|43|42|41|39|37|37|38|36|35|34|33|32|31|31|58|32|33|34|35|36|40|38|39|40|41|42|43|44|48|47|47|48|49|57|51|52|53|55|55|56|57|58|59|0\n56|55|54|52|52|51|49|48|47|46|45|45|44|43|42|41|40|39|38|37|35|35|33|33|34|32|31|30|30|31|32|57|34|36|36|37|38|39|40|41|42|43|44|50|46|47|48|49|50|51|53|53|54|55|56|57|0\n34|33|32|31|29|29|28|26|26|27|25|24|23|22|21|20|19|19|20|21|22|23|24|25|35|27|28|30|30|31|32|33|34|35|0\n49|48|44|43|43|45|42|42|40|39|38|38|37|36|36|50|51|34|34|33|32|31|30|29|28|28|53|29|30|31|32|33|35|35|52|37|41|39|40|41|47|46|44|45|46|47|48|49|50|51|52|53|0\n56|56|55|52|50|50|51|53|49|48|47|46|46|58|59|45|44|43|42|41|39|34|34|35|33|33|37|32|32|40|61|38|36|35|36|37|38|39|40|41|42|43|44|45|60|47|48|49|54|51|52|53|54|55|57|57|58|59|60|61|0\n41|37|36|35|34|33|31|31|32|38|27|26|26|25|24|24|29|23|22|22|40|23|30|25|28|27|28|29|30|39|32|33|34|35|36|37|38|39|40|41|0\n20|19|19|16|15|15|14|13|12|12|18|13|14|17|16|17|18|21|20|21|0\n57|57|56|53|52|51|51|54|50|49|49|59|47|46|41|41|42|40|40|44|39|38|38|37|35|35|34|33|32|32|61|33|34|36|36|37|48|39|45|43|42|43|44|45|46|47|48|60|50|55|52|53|54|55|56|58|58|59|60|61|0\n50|50|47|47|46|42|40|38|38|37|37|36|34|33|32|32|31|31|43|44|30|29|28|27|27|49|28|29|30|45|35|33|34|35|36|41|39|39|40|41|42|43|44|45|46|48|48|49|51|51|0\n54|54|50|50|51|48|46|44|44|43|41|39|39|40|38|37|37|47|36|35|34|31|31|32|30|29|29|53|30|33|32|33|34|35|36|49|38|42|40|41|42|43|45|45|46|47|48|49|52|51|52|53|55|55|0\n29|28|28|27|27|23|23|24|21|21|20|19|18|17|17|26|18|19|20|22|22|25|24|25|26|31|30|29|30|31|0\n35|33|32|31|30|29|27|26|25|25|24|23|22|21|20|19|19|34|20|21|22|23|24|28|26|27|28|29|30|31|32|33|34|35|0\n52|51|50|49|49|53|48|47|46|46|45|43|43|40|40|39|38|37|35|35|34|33|32|31|30|29|29|42|30|31|32|33|34|36|36|37|38|39|41|41|42|44|44|45|55|47|48|54|50|51|52|53|54|55|0\n38|37|36|35|35|34|33|31|30|29|28|27|25|24|24|23|22|21|21|32|22|23|26|25|26|27|28|29|30|31|32|33|34|39|36|37|38|39|0\n36|35|34|33|31|30|30|29|28|27|26|26|24|22|22|21|20|20|25|21|23|23|24|25|37|27|28|29|32|31|32|33|34|35|36|37|0\n41|41|40|40|38|37|33|32|31|30|29|28|28|34|35|26|25|25|24|23|23|39|24|27|26|27|36|29|30|31|32|33|34|35|36|37|38|39|43|42|42|43|0\n55|50|49|48|48|47|43|43|44|42|42|41|40|39|38|38|52|37|36|35|34|31|30|30|32|29|29|54|33|31|32|33|34|35|36|37|53|39|40|41|46|45|44|45|46|47|51|49|50|51|52|53|54|55|0\n47|46|44|44|43|42|39|39|40|38|37|35|35|36|48|49|31|31|32|29|29|30|28|27|27|51|28|34|30|33|32|33|34|50|36|37|38|41|40|41|42|43|45|45|46|47|48|49|50|51|0\n47|43|43|44|42|40|40|39|38|34|34|35|31|31|29|28|27|27|30|33|26|25|25|46|26|37|28|29|30|32|32|33|36|35|36|37|38|39|41|41|42|45|44|45|46|47|0\n25|24|23|21|19|19|16|15|15|14|14|18|22|17|16|17|18|20|20|21|22|23|24|25|0\n30|28|28|27|26|26|31|25|24|22|21|21|20|19|18|18|33|19|20|23|22|23|24|25|32|27|29|29|30|31|32|33|0\n58|55|54|53|53|56|52|52|51|49|46|46|47|45|45|43|42|39|38|38|37|36|36|35|33|33|32|31|31|44|32|34|34|35|41|37|40|39|40|41|42|43|44|50|48|47|48|49|50|51|59|57|54|55|56|57|58|59|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n42|38|37|37|36|35|34|32|30|30|29|28|28|27|26|25|24|23|23|40|41|43|24|25|26|27|33|29|31|31|32|33|34|35|36|39|38|39|40|41|42|43|0\n56|55|55|54|52|52|48|46|46|44|44|45|49|43|42|41|40|38|38|37|35|32|32|33|34|31|30|30|51|31|36|33|34|35|36|37|39|39|40|41|42|43|50|45|47|47|48|49|50|51|53|53|54|57|56|57|0\n47|47|48|45|41|41|39|38|37|37|36|35|32|32|33|31|30|28|28|27|27|43|26|26|46|44|29|29|30|31|34|33|34|35|36|40|38|39|40|42|42|43|44|45|46|49|48|49|0\n9|9|8|8|7|7|11|10|10|11|0\n13|12|11|9|8|8|10|9|10|11|12|13|0\n5|5|6|7|6|7|0\n41|39|39|38|36|35|33|31|31|30|30|29|28|26|26|25|24|23|22|22|37|23|24|25|27|27|28|29|34|32|32|33|34|35|36|37|38|40|40|41|0\n21|20|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|19|20|21|0\n56|54|54|53|52|51|50|48|46|46|45|44|43|43|41|40|40|39|37|37|38|36|35|32|32|30|30|31|34|31|33|33|34|35|36|57|38|39|42|41|42|49|44|45|47|47|48|49|50|51|52|53|55|55|56|57|0\n66|65|65|64|64|63|61|60|59|57|57|58|62|53|53|54|52|48|47|46|46|45|44|44|50|43|42|40|40|39|38|37|36|36|56|37|38|39|41|41|42|43|51|45|49|47|48|49|50|51|52|55|54|55|56|69|58|59|60|61|62|63|68|67|66|67|68|69|0\n33|31|30|29|27|27|26|25|24|23|22|20|19|19|18|18|32|21|20|21|22|23|24|25|26|28|28|29|30|31|32|33|0\n35|35|36|37|38|39|40|41|42|34|32|31|30|29|27|27|26|25|24|23|23|33|24|25|26|28|28|29|30|31|32|33|34|43|36|37|38|39|40|41|42|43|0\n38|37|36|36|34|32|31|30|30|29|27|26|25|24|24|23|22|21|21|35|22|23|28|25|26|27|28|29|33|31|32|33|34|35|39|37|38|39|0\n31|29|28|26|26|25|24|23|23|21|19|18|18|17|17|22|20|19|20|21|22|30|24|25|27|27|28|29|30|31|0\n46|43|42|42|40|39|39|41|38|38|37|35|34|34|31|31|30|29|28|27|26|25|25|33|26|27|28|29|30|32|32|33|36|35|36|37|47|45|40|41|44|43|44|45|46|47|0\n34|33|32|31|30|29|28|28|27|25|24|24|21|20|20|19|19|23|22|21|22|23|26|25|26|27|35|29|30|31|32|33|34|35|0\n33|30|30|27|27|26|26|25|23|22|22|21|20|19|18|18|32|19|20|21|24|23|24|25|29|28|28|29|31|31|32|33|0\n33|31|28|28|27|24|23|23|25|22|21|21|20|18|18|19|32|19|20|30|22|26|24|25|26|27|29|29|30|31|32|33|0\n20|19|19|18|16|14|14|13|12|12|17|13|15|15|16|17|18|21|20|21|0\n32|32|31|30|29|29|34|35|27|25|25|24|24|23|22|21|20|20|37|21|22|23|28|26|26|27|28|36|30|31|33|33|34|35|36|37|0\n59|59|58|56|55|54|53|50|49|49|48|47|46|45|45|44|42|41|40|40|39|38|37|36|36|34|34|35|32|32|33|33|61|35|57|37|38|39|43|41|42|43|44|52|46|47|48|51|50|51|52|53|54|55|56|57|58|60|60|61|0\n57|55|54|53|52|51|50|49|46|45|44|44|47|43|42|41|40|39|38|37|36|35|34|33|32|31|30|30|56|31|32|33|34|35|36|37|38|39|40|41|42|43|48|45|46|47|48|49|50|51|52|53|54|55|56|57|0\n34|33|31|31|30|28|26|25|25|24|22|21|21|23|29|19|19|20|20|35|22|23|24|27|26|27|28|29|30|32|32|33|34|35|0\n37|36|34|34|35|33|32|31|29|29|28|27|27|39|26|24|24|23|22|22|41|23|25|25|26|40|28|30|30|31|32|33|38|35|36|37|38|39|40|41|0\n35|34|31|31|30|29|29|27|23|22|22|24|25|20|20|19|19|28|21|21|26|23|24|25|26|27|28|33|30|32|32|33|34|35|0\n23|23|22|20|19|19|18|17|17|15|14|14|16|15|16|25|18|21|20|21|22|24|24|25|0\n62|61|60|59|59|58|56|55|55|54|53|53|64|65|50|50|49|49|46|45|45|44|44|43|41|41|39|39|38|36|36|35|35|67|37|37|38|40|40|42|42|43|48|47|46|47|48|52|51|51|52|66|54|57|56|57|58|63|60|61|62|63|64|65|66|67|0\n29|27|26|26|24|22|22|21|19|18|18|17|16|16|25|17|20|19|20|21|23|23|24|25|28|27|28|29|0\n61|60|58|57|57|56|54|54|53|51|50|50|48|47|47|46|46|62|63|44|44|42|42|40|39|39|38|35|35|36|34|34|65|37|36|37|38|41|40|41|43|43|45|45|64|49|48|49|52|51|52|53|55|55|56|59|58|59|60|61|62|63|64|65|0\n67|65|64|63|62|61|60|59|55|55|54|53|53|57|48|47|46|45|45|49|43|43|42|41|40|40|51|38|37|37|36|35|35|66|36|39|38|39|52|41|42|44|44|50|46|47|48|49|50|51|52|58|54|56|56|57|58|59|60|61|62|63|64|65|66|67|0\n58|57|54|54|52|51|50|49|49|53|56|59|48|47|45|45|44|41|41|40|40|39|37|37|36|35|33|33|32|32|61|34|34|35|36|38|38|39|43|42|42|43|44|46|46|47|48|60|50|51|52|53|55|55|56|57|58|59|60|61|0\n45|43|42|41|39|39|38|37|36|33|33|34|32|31|30|29|28|27|26|25|24|24|44|25|26|27|28|29|30|31|32|35|34|35|36|37|38|40|40|41|42|43|44|45|0\n42|41|40|39|39|38|37|35|34|32|32|31|30|29|28|27|25|25|24|23|23|36|24|26|26|27|28|29|30|31|33|33|34|35|36|37|38|43|40|41|42|43|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n26|26|25|23|22|22|24|28|29|21|19|19|18|17|17|31|18|20|20|21|30|23|24|25|27|27|28|29|30|31|0\n54|53|52|51|50|49|48|47|45|44|44|43|43|55|38|37|37|39|40|41|36|35|34|33|32|30|30|31|57|31|32|33|34|35|36|42|38|39|40|41|42|56|46|45|46|47|48|49|50|51|52|53|54|55|56|57|0\n60|59|58|58|61|57|55|54|53|52|51|50|50|49|48|46|45|45|44|42|42|41|39|39|38|36|35|34|34|33|33|63|37|35|36|37|38|40|40|41|43|43|44|47|46|47|48|49|56|51|52|53|54|55|56|57|62|59|60|61|62|63|0\n29|28|24|23|22|22|25|21|20|19|18|17|16|16|27|17|18|19|20|21|26|23|24|25|26|27|28|29|0\n23|21|19|19|18|17|15|15|14|13|13|22|14|16|16|17|18|20|20|21|22|23|0\n33|33|32|31|31|30|28|27|26|24|23|23|22|19|19|20|21|29|20|21|22|25|24|25|26|27|28|29|30|35|32|34|34|35|0\n55|55|54|53|52|51|50|49|48|47|46|45|42|41|40|40|43|39|38|38|36|35|34|33|32|31|30|30|37|31|32|33|34|35|36|37|57|39|44|41|42|43|44|45|46|47|48|49|50|51|52|53|54|56|56|57|0\n56|56|55|54|52|51|49|48|48|44|44|43|42|41|40|40|46|39|35|35|34|34|37|32|31|31|30|30|53|33|32|33|38|36|36|37|38|39|47|41|42|43|45|45|46|47|50|49|50|51|52|53|54|55|57|57|0\n21|19|18|16|15|14|14|13|12|12|20|13|17|15|16|17|18|19|20|21|0\n42|41|40|39|38|38|37|36|36|44|45|35|33|33|32|31|29|28|27|27|25|25|26|47|26|30|28|29|30|31|32|34|34|35|46|37|43|39|40|41|42|43|44|45|46|47|0\n29|27|26|24|22|22|21|21|20|19|17|17|16|16|28|18|18|19|20|25|23|23|24|25|26|27|28|29|0\n25|22|21|20|19|19|18|17|16|14|14|15|24|15|16|17|18|23|20|21|22|23|24|25|0\n40|40|39|38|36|34|33|33|32|30|29|29|28|26|25|24|23|22|22|27|37|23|24|25|26|27|28|31|30|31|32|35|34|35|36|37|38|39|41|41|0\n37|37|38|34|33|32|32|31|28|28|29|27|26|24|24|23|22|21|21|36|22|23|25|25|26|27|30|29|30|31|35|33|34|35|36|39|38|39|0\n30|30|31|28|27|26|26|25|23|22|22|21|20|18|18|19|33|19|20|21|24|23|24|25|29|27|28|29|32|31|32|33|0\n23|23|22|21|20|20|19|17|15|15|14|14|18|16|16|17|18|19|25|21|22|24|24|25|0\n38|36|36|37|35|35|34|34|31|29|29|28|27|26|25|25|24|23|22|22|33|23|24|32|26|27|28|30|30|31|32|33|41|40|39|37|38|39|40|41|0\n59|57|55|55|51|49|49|50|52|53|47|47|46|44|43|42|41|40|39|39|38|37|36|35|33|33|32|31|31|58|32|34|34|35|36|37|38|45|40|41|42|43|44|45|46|48|48|54|50|51|52|53|54|56|56|57|58|59|0\n46|45|42|42|43|44|40|39|38|36|36|35|33|32|32|31|30|28|28|27|26|25|25|41|26|27|29|29|30|31|34|33|34|35|37|37|38|39|40|41|47|43|44|45|46|47|0\n17|17|16|16|14|12|12|11|11|15|13|13|14|15|19|18|18|19|0\n35|35|34|33|33|30|29|28|27|26|24|22|22|21|21|20|20|31|32|25|23|23|24|25|26|27|28|29|30|31|32|37|34|36|36|37|0\n21|21|22|20|18|18|17|16|15|14|14|24|25|15|16|17|19|19|20|23|22|23|24|25|0\n36|34|33|33|32|31|31|30|28|28|26|25|24|23|22|20|20|21|27|21|22|23|24|25|26|27|29|29|30|37|32|35|34|35|36|37|0\n37|34|33|31|30|29|27|27|28|32|26|24|24|23|21|21|20|20|36|22|22|23|25|25|26|35|28|29|30|31|32|33|34|35|36|37|0\n23|23|22|22|25|21|20|19|17|17|16|15|15|27|16|18|18|19|20|21|26|24|24|25|26|27|0\n29|28|27|27|26|25|24|23|23|22|21|20|19|18|17|17|18|19|20|21|22|31|24|25|26|30|28|29|30|31|0\n26|25|25|27|23|23|22|21|21|29|20|19|18|17|17|31|18|19|20|30|22|24|24|28|26|27|28|29|30|31|0\n48|47|47|49|46|45|45|40|39|36|36|37|35|34|33|33|41|42|31|31|29|29|28|27|27|44|28|30|30|32|32|43|34|35|38|37|38|39|40|41|42|43|44|51|46|50|48|49|50|51|0\n74|73|72|71|70|69|68|66|66|65|64|63|61|61|60|60|75|58|58|57|56|55|53|53|52|50|50|49|49|77|47|45|45|46|44|43|42|41|41|79|42|43|44|48|46|47|48|78|51|51|52|54|54|55|56|57|59|59|76|62|62|63|64|65|67|67|68|69|70|71|72|73|74|75|76|77|78|79|0\n12|12|10|9|8|8|11|9|10|11|13|13|0\n55|55|56|54|53|51|50|48|48|47|46|45|44|43|42|42|52|58|59|41|40|39|38|36|36|35|34|32|32|33|61|33|34|35|37|37|38|39|40|41|60|43|44|45|46|47|49|49|50|51|52|53|54|57|56|57|58|59|60|61|0\n21|20|18|17|17|14|14|13|12|12|16|13|15|15|16|19|18|19|20|21|0\n44|44|43|43|42|40|39|38|38|37|36|35|34|34|47|32|32|30|30|28|27|27|26|26|49|29|28|29|31|31|33|33|48|35|36|37|41|39|40|41|42|46|45|45|46|47|48|49|0\n17|16|14|14|15|13|11|11|12|19|12|13|18|15|16|17|18|19|0\n42|42|40|39|38|35|34|34|36|32|31|31|30|28|27|26|26|25|23|23|24|41|24|25|29|27|28|29|30|33|32|33|37|35|36|37|38|39|40|41|43|43|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n50|48|48|47|46|45|43|43|44|42|40|37|37|35|35|36|39|33|32|31|30|28|27|27|29|34|28|29|30|31|32|33|34|41|36|38|38|39|40|41|42|51|44|45|46|47|49|49|50|51|0\n25|24|22|21|20|20|19|17|16|16|15|14|14|15|18|17|18|19|23|21|22|23|24|25|0\n53|48|46|46|45|44|43|41|41|40|40|49|50|39|37|36|36|35|33|33|31|30|30|29|28|28|52|29|32|31|32|34|34|35|38|37|38|39|51|42|42|43|44|45|47|47|48|49|50|51|52|53|0\n29|26|26|23|22|21|20|20|24|19|18|16|16|17|28|17|18|19|25|21|22|23|24|25|27|27|28|29|0\n57|57|56|54|54|53|52|51|50|49|49|46|46|45|42|42|41|41|40|39|38|35|35|36|33|33|32|31|31|48|32|34|34|37|36|37|38|39|40|44|43|43|44|45|47|47|48|59|50|51|52|53|55|55|56|58|58|59|0\n19|18|14|14|12|12|11|11|16|17|13|13|15|15|16|17|18|19|0\n43|40|38|38|39|37|35|35|34|32|31|30|30|29|28|27|25|25|24|23|23|42|24|26|26|27|28|29|33|31|32|33|34|36|36|37|41|39|40|41|42|43|0\n59|59|58|54|52|52|53|51|49|49|48|47|44|44|45|43|43|56|42|41|40|39|38|37|36|36|34|33|32|32|35|33|34|35|61|37|38|39|40|41|42|57|46|45|46|47|48|50|50|51|55|53|54|55|56|57|58|60|60|61|0\n17|14|13|12|11|10|10|15|16|11|12|13|14|15|16|17|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n14|14|13|10|10|9|9|12|11|11|12|13|15|15|0\n73|70|69|69|71|67|67|66|66|74|75|65|63|63|59|57|57|56|54|54|53|52|51|50|49|49|60|61|48|47|45|44|44|43|42|41|40|40|77|41|42|43|46|45|46|47|48|62|50|51|52|53|55|55|56|58|58|59|60|61|62|64|64|65|76|68|68|72|70|71|72|73|74|75|76|77|0\n28|27|26|25|23|23|24|29|21|21|18|18|19|17|17|31|20|19|20|22|22|30|24|25|26|27|28|29|30|31|0\n33|32|32|34|31|25|25|24|24|27|28|21|20|20|22|19|19|30|23|21|22|23|29|26|26|27|28|29|30|31|35|33|34|35|0\n24|24|22|22|21|20|20|26|27|19|18|17|16|16|29|17|18|19|28|21|23|23|25|25|26|27|28|29|0\n49|47|45|45|44|42|42|41|36|36|35|34|33|32|32|38|39|30|30|28|27|27|26|26|48|29|28|29|31|31|40|33|34|35|37|37|38|39|40|41|43|43|44|46|46|47|48|49|0\n29|26|26|27|23|23|22|20|19|18|17|17|16|16|25|21|18|19|20|21|22|24|24|25|28|27|28|29|0\n46|45|44|43|43|47|41|40|40|39|38|35|35|34|33|32|32|31|30|29|27|26|26|28|49|27|28|29|30|31|37|33|34|36|36|37|38|39|42|41|42|48|44|45|46|47|48|49|0\n47|46|43|43|42|41|40|39|38|36|35|33|32|31|31|34|30|28|28|27|25|25|26|45|26|27|29|29|30|37|32|33|34|35|36|37|38|39|40|41|42|44|44|45|46|47|0\n46|44|44|42|41|40|39|39|38|37|37|36|33|32|32|34|30|29|28|27|26|25|25|31|26|27|28|29|30|31|35|33|34|35|36|47|38|43|40|41|42|43|45|45|46|47|0\n19|17|15|14|13|13|12|11|11|18|12|16|14|15|16|17|18|19|0\n50|48|48|47|46|45|45|44|42|41|40|38|38|35|35|36|34|33|30|30|31|28|28|27|27|43|29|29|32|31|32|33|34|37|36|37|39|39|40|41|42|43|44|51|46|47|49|49|50|51|0\n35|32|32|31|29|28|27|26|25|25|24|22|22|21|20|19|19|34|20|21|23|23|24|30|26|27|28|29|30|31|33|33|34|35|0\n43|42|42|44|39|38|36|36|35|34|34|33|32|31|29|28|28|27|26|25|24|24|41|25|26|27|30|29|30|31|32|33|40|35|37|37|38|39|40|41|45|43|44|45|0\n52|51|50|50|49|46|45|45|47|42|41|41|36|36|34|34|35|38|39|33|31|31|30|29|28|28|44|29|30|32|32|33|40|35|37|37|38|39|40|43|42|43|44|48|46|47|48|49|53|51|52|53|0\n23|21|21|20|18|17|17|16|15|14|13|13|14|15|16|19|18|19|20|22|22|23|0\n23|21|20|18|18|17|14|14|15|13|13|22|16|15|16|17|19|19|20|21|22|23|0\n44|43|43|42|41|39|38|37|36|36|35|33|33|31|30|29|26|26|27|24|24|25|32|25|28|27|28|29|30|31|32|34|34|35|40|37|38|39|40|41|42|45|44|45|0\n49|49|48|47|46|44|43|43|42|41|41|51|40|39|37|36|36|35|33|32|32|31|30|29|28|28|53|29|30|31|34|33|34|35|38|37|38|39|40|52|42|45|44|45|46|47|48|50|50|51|52|53|0\n30|28|28|29|27|24|23|22|22|21|20|19|18|17|17|26|18|19|20|21|25|23|24|25|26|27|31|29|30|31|0\n80|79|77|77|76|74|74|73|72|69|68|68|70|66|64|64|65|63|62|61|61|60|58|58|54|53|53|52|51|51|50|49|47|46|46|45|42|42|43|44|57|43|44|45|48|47|48|49|50|56|52|55|54|55|56|57|59|59|60|81|62|63|67|65|66|67|71|69|70|71|72|73|75|75|76|78|78|79|80|81|0\n23|19|19|18|17|16|15|14|14|13|13|22|21|15|16|17|18|20|20|21|22|23|0\n34|33|32|32|30|30|29|28|26|24|23|22|21|20|20|19|19|27|25|21|22|23|24|25|26|27|28|29|31|31|35|33|34|35|0\n23|21|20|19|18|15|15|16|14|13|13|22|14|17|16|17|18|19|20|21|22|23|0\n10|8|8|9|7|7|11|9|10|11|0\n10|10|8|7|7|9|8|9|11|11|0\n10|9|9|7|7|8|8|11|10|11|0\n68|66|66|65|62|61|59|59|58|58|63|57|56|55|55|54|51|51|50|48|45|44|44|46|47|49|41|39|38|37|37|40|36|36|43|42|38|39|40|41|42|43|53|45|46|47|48|49|50|52|52|53|54|69|56|57|64|60|60|61|62|63|64|65|67|67|68|69|0\n21|19|17|16|16|15|13|13|12|12|20|14|14|15|18|17|18|19|20|21|0\n36|35|35|34|32|32|33|38|39|31|30|29|28|27|26|24|24|23|22|22|41|23|25|25|26|27|28|29|30|31|40|33|34|37|36|37|38|39|40|41|0\n59|54|53|53|52|52|56|51|50|49|48|46|43|42|42|41|40|39|39|45|38|37|36|35|34|33|32|31|31|58|32|33|34|35|36|37|38|47|40|41|44|43|44|45|46|47|48|49|50|51|57|55|54|55|56|57|58|59|0\n37|36|34|28|28|27|27|30|31|26|23|22|22|24|25|21|20|20|35|21|33|23|24|25|26|32|29|29|30|31|32|33|34|35|36|37|0\n18|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|19|19|0\n19|14|13|13|15|16|12|11|11|18|12|17|14|15|16|17|18|19|0\n27|26|25|24|23|22|22|28|29|20|19|19|18|17|17|31|18|21|20|21|30|23|24|25|26|27|28|29|30|31|0\n66|61|59|58|58|57|56|55|54|53|53|62|63|64|52|52|51|46|46|45|45|48|44|43|41|40|38|38|37|37|36|35|35|50|36|42|39|39|40|41|42|43|44|49|47|47|48|49|50|51|67|65|54|55|56|57|60|59|60|61|62|63|64|65|66|67|0\n20|19|18|18|17|16|13|13|12|12|15|14|14|15|16|17|21|19|20|21|0\n17|15|14|12|12|11|10|10|16|11|13|13|14|15|16|17|0\n28|26|26|23|22|22|24|21|21|18|18|17|16|16|20|17|19|19|20|29|25|23|24|25|27|27|28|29|0\n21|19|18|17|16|16|15|13|12|12|14|13|14|15|20|17|18|19|20|21|0\n60|58|58|57|56|54|54|53|53|52|50|49|48|45|44|44|46|42|41|40|40|39|38|37|36|35|34|33|32|32|51|33|34|35|36|37|38|39|43|41|42|43|47|45|46|47|48|49|50|51|52|61|55|55|56|57|59|59|60|61|0\n9|8|6|6|7|7|8|9|0\n44|42|42|41|41|40|38|38|33|32|31|30|30|34|35|28|28|27|25|25|24|24|37|26|26|27|29|29|36|31|32|33|34|35|36|37|39|39|40|45|43|43|44|45|0\n57|54|53|52|52|51|43|43|42|40|40|41|45|46|39|38|38|48|49|36|35|34|34|32|32|31|30|30|56|31|33|33|37|35|36|37|50|39|47|41|42|44|44|45|46|47|48|49|50|51|55|53|54|55|56|57|0\n61|59|59|58|57|57|62|63|54|54|53|53|51|50|49|48|47|46|46|45|39|38|38|40|37|37|42|43|36|35|34|34|65|35|36|44|41|39|40|41|42|43|44|45|52|47|48|49|50|51|52|56|55|55|56|64|58|60|60|61|62|63|64|65|0\n50|50|47|47|46|45|44|43|42|38|37|37|36|35|35|40|33|32|31|30|30|29|28|27|27|49|28|29|34|31|32|33|34|41|36|39|38|39|40|41|42|43|44|45|46|48|48|49|51|51|0\n20|18|18|19|21|17|17|14|14|13|13|16|15|15|16|23|22|19|20|21|22|23|0\n24|23|22|22|25|21|19|19|20|27|17|17|16|16|29|18|18|28|20|21|26|23|24|25|26|27|28|29|0\n31|28|26|26|25|23|23|22|21|21|20|18|18|17|17|30|19|19|20|29|22|24|24|25|27|27|28|29|30|31|0\n74|71|70|69|69|72|68|68|66|66|65|62|62|63|61|58|58|57|56|55|55|53|53|51|51|52|76|77|49|49|48|46|46|45|44|43|42|41|41|79|42|43|44|45|47|47|48|50|50|78|52|54|54|60|56|57|59|59|60|61|64|63|64|65|67|67|75|73|70|71|72|73|74|75|76|77|78|79|0\n12|12|13|10|10|9|9|15|11|11|14|13|14|15|0\n65|63|63|62|61|60|59|58|57|57|66|67|56|55|54|53|51|51|50|49|49|69|48|46|44|43|43|42|41|39|39|40|38|37|37|71|38|47|40|41|42|45|44|45|46|47|48|70|50|52|52|53|54|55|56|68|58|59|60|61|62|64|64|65|66|67|68|69|70|71|0\n48|48|46|46|43|42|41|40|40|39|38|36|36|35|33|33|32|31|30|27|27|28|26|26|45|29|28|29|30|31|32|34|34|35|37|37|38|39|44|41|42|43|44|45|47|47|49|49|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n26|25|24|24|21|21|20|19|17|15|15|16|18|23|16|17|18|19|20|22|22|23|27|25|26|27|0\n27|25|24|23|22|20|19|19|18|17|15|15|16|26|16|17|18|21|20|21|22|23|24|25|26|27|0\n48|47|46|45|44|43|42|42|49|41|41|40|39|39|38|38|53|54|36|36|35|33|33|32|31|30|30|56|57|31|32|34|34|35|37|37|55|52|40|51|50|43|44|45|46|47|48|49|50|51|52|53|54|55|56|57|0\n38|38|37|37|40|41|35|35|32|32|33|30|30|27|26|26|28|25|24|23|23|43|24|25|29|27|28|29|31|31|34|33|34|36|36|42|39|39|40|41|42|43|0\n53|52|50|50|49|47|47|48|54|55|45|44|44|43|41|41|40|36|36|37|38|35|34|33|32|31|30|30|57|31|32|33|34|35|39|37|38|39|40|42|42|43|46|45|46|56|48|49|51|51|52|53|54|55|56|57|0\n11|9|8|7|7|10|8|9|10|11|0\n43|41|39|38|37|37|36|35|30|30|31|29|28|27|26|25|25|33|23|23|24|42|24|34|26|27|28|29|32|31|32|33|34|35|36|40|38|39|40|41|42|43|0\n22|21|18|18|17|16|15|15|20|13|13|14|14|23|16|17|19|19|20|21|22|23|0\n35|34|33|32|32|31|29|28|27|27|30|24|24|23|22|21|20|20|26|21|22|23|25|25|26|37|28|29|30|31|36|33|34|35|36|37|0\n7|6|6|8|9|7|8|9|0\n38|38|31|30|30|32|33|28|27|27|26|25|25|35|24|23|22|21|21|37|22|23|24|36|26|29|28|29|34|31|32|33|34|35|36|37|39|39|0\n34|32|32|31|30|29|29|28|24|24|23|23|22|19|19|20|21|27|20|21|22|26|25|25|26|27|28|35|30|31|33|33|34|35|0\n29|24|22|21|21|20|19|19|25|26|17|17|16|16|28|18|18|27|20|23|22|23|24|25|26|27|28|29|0\n76|73|72|72|74|71|68|67|66|66|63|63|59|59|54|54|55|56|57|58|61|52|52|53|65|51|51|77|78|48|48|47|46|46|43|42|42|44|45|80|81|43|44|45|50|47|49|49|50|79|70|53|62|55|56|57|58|60|60|61|62|64|64|65|69|67|68|69|70|71|75|73|74|75|76|77|78|79|80|81|0\n31|30|30|29|27|26|26|24|24|23|22|21|20|20|18|18|19|19|33|21|22|23|25|25|28|27|28|29|32|31|32|33|0\n19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0\n31|29|27|26|26|25|24|23|21|21|20|19|18|17|17|30|18|19|20|22|22|23|24|25|28|27|28|29|30|31|0\n86|85|84|83|82|81|80|80|79|78|75|75|73|66|65|65|64|62|62|61|61|68|69|70|60|60|72|59|57|57|56|55|54|52|51|49|48|48|47|47|46|45|45|77|46|53|50|49|50|51|52|53|54|55|56|58|58|59|74|71|63|63|64|67|66|67|68|69|70|71|72|73|74|76|76|77|78|79|87|81|82|83|84|85|86|87|0\n35|35|34|32|32|31|30|29|28|27|26|24|24|25|22|21|20|20|23|21|22|23|37|25|26|27|28|29|30|31|33|33|34|36|36|37|0\n36|36|37|35|34|33|30|29|29|28|28|27|26|24|23|23|22|21|21|39|22|25|24|25|26|27|32|31|30|31|32|33|34|35|38|37|38|39|0\n49|47|45|44|44|43|39|38|38|37|35|35|33|33|34|41|31|30|29|28|28|27|26|26|48|27|32|29|30|31|32|42|34|36|36|37|40|39|40|41|42|43|46|45|46|47|48|49|0\n54|53|51|50|49|47|47|46|45|45|44|43|43|42|41|39|38|37|36|35|34|32|32|31|30|29|29|40|30|31|33|33|34|35|36|37|38|39|40|41|42|55|44|52|46|48|48|49|50|51|52|53|54|55|0\n56|53|52|52|51|50|50|49|49|48|47|44|43|41|41|39|39|38|37|36|35|33|33|32|30|30|31|45|46|31|32|34|34|35|36|37|38|40|40|42|42|43|44|45|46|47|48|57|55|51|54|53|54|55|56|57|0\n21|17|17|16|16|15|14|13|12|12|20|13|14|15|19|18|18|19|20|21|0\n51|50|49|48|47|47|46|46|40|38|38|36|36|37|41|42|43|34|34|33|32|31|30|29|28|28|45|29|30|31|32|33|35|35|44|37|39|39|40|41|42|43|44|45|53|52|48|49|50|51|52|53|0\n44|43|43|45|42|41|40|39|38|38|36|33|32|32|31|31|30|29|27|27|26|25|25|37|26|28|28|29|30|35|34|33|34|35|36|37|47|39|40|41|42|46|44|45|46|47|0\n24|24|21|21|20|19|18|17|16|15|14|14|23|15|16|17|18|19|20|22|22|23|25|25|0\n9|6|6|7|8|7|8|9|0\n18|14|13|13|15|12|11|11|17|19|12|16|14|15|16|17|18|19|0\n21|20|19|18|17|17|22|23|15|15|14|14|25|16|16|24|18|19|20|21|22|23|24|25|0\n51|50|48|48|49|47|46|46|42|41|41|40|38|37|36|36|35|34|34|33|31|31|30|29|28|28|45|29|30|32|32|33|44|35|39|37|38|39|40|43|42|43|44|45|53|47|52|49|50|51|52|53|0\n44|43|43|45|46|42|41|40|39|39|48|49|37|37|36|35|31|31|32|33|30|28|28|27|27|51|29|29|30|34|32|33|34|35|36|38|38|50|40|41|42|47|44|45|46|47|48|49|50|51|0\n27|26|25|23|22|21|21|20|19|16|16|15|15|18|17|17|18|19|20|24|22|23|24|25|26|27|0\n33|31|29|29|28|27|26|25|24|22|21|20|20|19|18|18|32|19|23|21|22|23|24|25|26|27|28|30|30|31|32|33|0\n54|54|50|49|48|47|47|46|44|43|38|37|36|36|39|40|41|42|35|34|32|32|31|30|29|29|52|53|30|31|33|33|34|35|45|37|38|39|40|41|42|43|44|45|46|51|48|49|50|51|52|53|55|55|0\n45|42|40|39|38|38|37|36|35|34|31|29|28|27|27|26|26|32|25|24|24|43|44|25|33|30|28|29|30|31|32|33|34|35|36|37|41|39|40|41|42|43|44|45|0\n42|39|39|40|38|37|36|36|33|33|32|31|30|29|27|27|26|25|24|23|23|35|24|25|26|28|28|29|30|31|32|34|34|35|43|37|38|41|40|41|42|43|0\n43|42|41|40|39|38|36|36|35|34|33|32|32|44|45|30|30|29|28|27|26|25|25|47|26|27|28|29|31|31|46|33|34|35|37|37|38|39|40|41|42|43|44|45|46|47|0\n68|67|66|65|64|63|63|60|60|54|53|52|52|51|50|49|48|48|56|46|46|45|44|43|43|58|41|41|40|39|38|37|36|36|62|37|38|39|40|42|42|59|44|45|47|47|57|49|50|51|55|53|54|55|56|57|58|59|61|61|62|69|64|65|66|67|68|69|0\n29|29|28|25|25|26|24|24|22|21|20|19|18|17|17|23|18|19|20|21|22|23|31|27|26|27|28|30|30|31|0\n36|35|34|34|32|31|30|28|28|27|25|23|23|24|22|21|20|20|33|21|22|26|24|25|26|27|29|29|30|31|32|33|37|35|36|37|0\n18|17|16|15|12|12|13|11|11|19|14|13|14|15|16|17|18|19|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n68|67|66|64|62|62|63|61|59|59|58|57|57|69|55|55|54|50|50|49|48|48|52|53|45|44|43|41|41|42|40|39|38|37|37|47|38|39|40|46|42|43|44|45|46|47|71|49|51|51|52|53|54|56|56|70|58|60|60|61|65|63|64|65|66|67|68|69|70|71|0\n54|51|50|50|52|48|47|46|46|45|45|44|42|41|41|39|38|37|35|35|34|33|31|31|30|29|29|40|30|32|32|33|34|36|36|37|38|39|40|43|42|43|44|55|49|47|48|49|53|51|52|53|54|55|0\n23|22|18|18|19|17|14|13|13|15|16|21|14|15|16|17|20|19|20|21|22|23|0\n46|45|43|42|42|41|39|38|37|37|36|35|35|47|34|33|32|30|28|28|29|27|26|26|49|27|31|29|30|31|32|33|34|48|36|40|38|39|40|41|44|43|44|45|46|47|48|49|0\n39|38|38|37|36|36|34|33|32|31|30|29|26|25|24|24|27|23|22|22|35|23|28|25|26|27|28|29|30|31|32|33|34|35|41|37|40|39|40|41|0\n23|17|17|16|16|19|20|15|14|13|13|22|14|15|21|18|18|19|20|21|22|23|0\n21|20|18|17|16|15|14|12|12|13|19|13|14|15|16|17|18|19|20|21|0\n35|32|27|27|28|26|26|30|25|24|24|23|22|21|20|19|19|34|20|21|22|23|33|25|31|29|28|29|30|31|32|33|34|35|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n48|48|47|46|46|50|45|42|42|41|39|38|37|37|35|35|33|32|31|31|30|29|28|27|27|44|28|29|30|34|32|33|34|36|36|40|38|39|40|41|43|43|44|45|51|47|49|49|50|51|0\n31|29|27|26|25|25|24|21|21|22|20|19|18|17|17|30|18|19|20|23|22|23|24|28|26|27|28|29|30|31|0\n32|31|30|29|28|28|27|25|24|23|22|20|20|19|18|18|26|19|21|21|22|23|24|25|26|27|33|29|30|31|32|33|0\n25|23|23|20|20|19|18|17|16|16|14|14|15|15|22|17|18|19|21|21|22|24|24|25|0\n45|45|44|43|43|39|39|40|38|36|35|35|33|32|30|30|29|29|28|27|26|25|25|42|26|27|28|34|31|31|32|33|34|37|36|37|38|41|40|41|42|47|44|46|46|47|0\n48|47|47|46|45|43|43|42|39|39|38|38|37|37|50|51|35|35|33|32|31|30|30|29|28|28|53|29|34|31|32|33|34|36|36|52|41|40|40|41|42|44|44|45|46|49|48|49|50|51|52|53|0\n65|64|62|61|60|60|59|56|56|57|54|54|53|52|51|49|47|47|48|46|45|44|44|66|67|43|42|40|40|39|38|37|36|36|69|37|38|39|41|41|42|43|68|45|46|50|48|49|50|51|52|53|55|55|58|57|58|59|63|61|62|63|64|65|66|67|68|69|0\n41|38|38|36|35|35|34|33|32|30|30|29|27|26|26|25|23|23|22|22|40|24|24|25|28|27|28|29|31|31|32|33|34|37|36|37|39|39|40|41|0\n8|8|6|6|7|7|9|9|0\n25|23|22|22|24|26|27|21|20|19|18|16|16|17|29|17|18|19|20|21|28|23|24|25|26|27|28|29|0\n46|44|44|43|42|41|40|39|39|38|37|37|48|49|35|35|34|33|32|30|29|29|28|27|27|51|28|31|30|31|32|33|34|36|36|50|38|47|40|41|42|43|45|45|46|47|48|49|50|51|0\n46|45|45|38|38|39|40|41|42|33|33|32|32|35|31|31|30|29|27|27|26|25|25|44|26|28|28|29|30|37|36|34|34|35|36|37|43|39|40|41|42|43|44|47|46|47|0\n41|41|42|40|38|37|37|36|35|35|44|45|33|32|32|31|30|28|27|27|26|25|25|47|26|29|28|29|30|31|34|33|34|46|36|39|38|39|40|43|42|43|44|45|46|47|0\n32|30|30|29|29|27|26|25|25|24|20|20|19|18|18|22|23|19|21|21|22|23|24|28|26|27|28|33|31|31|32|33|0\n27|23|22|22|21|20|19|16|16|17|15|15|25|26|18|17|18|19|20|21|24|23|24|25|26|27|0\n9|7|6|6|8|7|8|9|0\n16|15|15|14|12|12|10|10|11|11|13|13|14|17|16|17|0\n30|29|28|28|27|23|21|20|20|22|24|18|17|17|19|26|18|19|25|21|22|23|24|25|26|27|31|29|30|31|0\n46|45|45|44|42|42|35|35|34|33|33|37|32|31|30|29|29|39|28|27|26|25|25|41|26|27|28|40|30|31|32|38|34|36|36|37|38|39|40|41|43|43|44|47|46|47|0\n11|10|8|7|7|9|8|9|10|11|0\n61|60|59|58|57|57|62|56|53|52|51|51|54|50|49|49|47|47|46|45|44|44|65|42|42|40|40|38|38|36|36|35|35|67|37|37|39|39|41|41|43|43|66|45|46|48|48|64|50|55|52|53|54|55|56|63|58|59|60|61|62|63|64|65|66|67|0\n26|24|24|25|22|21|21|19|18|17|16|15|15|20|16|17|18|19|20|23|22|23|27|25|26|27|0\n23|21|19|18|18|17|15|15|14|13|13|22|14|16|16|17|20|19|20|21|22|23|0\n49|47|46|45|44|43|42|40|37|37|38|36|35|34|33|33|32|30|29|28|28|27|26|26|48|27|31|29|30|31|32|41|34|35|36|39|38|39|40|41|42|43|44|45|46|47|48|49|0\n43|41|38|37|36|35|34|34|39|33|33|32|29|29|30|28|28|44|45|27|26|25|25|47|26|27|46|31|30|31|32|42|40|35|36|37|38|39|40|41|42|43|44|45|46|47|0\n58|57|56|56|54|50|49|48|48|51|46|46|45|43|42|41|41|40|40|53|39|37|36|34|34|33|32|31|31|38|32|33|35|35|36|37|38|39|55|44|42|43|44|45|47|47|52|49|50|51|52|53|54|55|59|57|58|59|0\n46|43|43|44|42|42|39|39|37|36|35|35|34|33|32|30|30|29|28|26|26|25|25|41|27|27|28|29|31|31|32|33|34|38|36|37|38|40|40|41|47|45|44|45|46|47|0\n46|43|43|42|42|45|40|39|36|36|33|32|32|31|31|35|30|29|27|26|25|25|28|41|26|27|28|29|30|38|34|33|34|35|37|37|38|39|40|41|47|44|44|45|46|47|0\n24|24|23|22|21|21|20|18|18|17|16|15|15|27|16|17|19|19|20|26|22|23|25|25|26|27|0\n24|23|23|21|21|20|19|18|17|15|15|14|14|16|16|17|18|19|20|22|22|25|24|25|0\n33|32|30|29|29|31|34|35|36|27|26|25|24|23|22|21|20|20|28|21|22|23|24|25|26|27|28|37|30|31|32|33|34|35|36|37|0\n81|79|78|77|76|75|73|73|72|70|69|68|68|66|66|65|63|61|61|62|60|59|58|57|56|55|52|51|50|49|48|48|53|47|45|44|43|43|42|42|80|46|44|45|46|47|54|49|50|51|52|53|54|55|56|57|58|59|60|64|62|63|64|65|67|67|71|69|70|71|72|74|74|75|76|77|78|79|80|81|0\n46|45|44|43|42|41|40|38|38|37|36|30|30|31|29|29|33|28|28|27|26|25|25|47|26|27|35|34|32|31|32|33|34|35|36|37|39|39|40|41|42|43|44|45|46|47|0\n19|16|16|14|13|13|12|11|11|18|12|15|14|15|17|17|18|19|0\n40|39|38|38|36|32|32|31|30|29|28|27|27|34|26|25|22|22|23|24|37|23|24|25|26|35|28|29|30|31|33|33|34|35|36|37|41|39|40|41|0\n17|15|14|13|13|12|10|10|11|11|12|16|14|15|16|17|0\n50|50|49|48|48|52|53|47|43|43|42|42|45|41|39|39|37|36|35|34|34|33|32|31|30|29|29|55|30|31|32|33|38|35|36|37|38|40|40|41|46|44|44|45|46|47|54|49|51|51|52|53|54|55|0\n32|31|31|30|29|27|26|25|23|22|21|20|20|19|18|18|28|19|24|21|22|23|24|25|26|27|28|29|30|33|32|33|0\n5|4|4|5|0\n61|56|55|54|54|53|53|58|52|51|50|50|46|44|44|43|42|41|41|47|40|38|38|37|35|35|33|32|32|34|49|33|34|36|36|37|39|39|40|48|42|43|45|45|46|47|48|49|60|51|52|59|57|55|56|57|58|59|60|61|0\n57|56|56|55|53|52|51|50|50|49|47|47|46|46|44|44|43|42|40|40|41|60|61|38|38|37|35|34|34|33|33|63|36|35|36|37|39|39|62|41|42|43|45|45|59|48|48|49|54|51|52|53|54|55|58|57|58|59|60|61|62|63|0\n18|16|16|15|14|13|12|11|11|19|12|13|14|15|17|17|18|19|0\n15|13|12|9|9|10|11|14|10|11|12|13|14|15|0\n43|42|42|41|40|37|36|35|35|38|39|32|32|30|30|29|27|26|26|25|24|24|34|25|28|27|28|29|31|31|33|33|34|45|36|37|38|39|40|41|44|43|44|45|0\n28|28|27|24|24|25|26|22|21|20|19|19|23|31|18|18|33|32|20|21|22|23|30|25|26|27|29|29|30|31|32|33|0\n50|48|48|47|47|51|45|44|43|41|40|39|38|38|37|36|36|35|34|33|31|31|30|29|28|28|53|29|30|32|32|33|34|35|46|37|42|39|40|41|42|43|44|45|46|52|49|49|50|51|52|53|0\n26|26|24|19|18|18|17|16|16|21|22|15|15|25|23|17|20|19|20|21|22|23|24|25|27|27|0\n27|26|25|25|28|24|23|23|30|22|19|19|20|18|17|17|18|21|20|21|22|31|24|29|26|27|28|29|30|31|0\n34|33|32|31|30|28|28|27|26|26|25|24|22|21|20|19|19|23|20|21|22|23|24|25|35|27|29|29|30|31|32|33|34|35|0\n51|51|50|48|47|47|46|45|45|44|41|40|40|39|38|37|35|35|34|32|31|31|30|29|28|28|43|29|30|33|32|33|34|36|36|37|38|39|42|41|42|43|44|53|46|49|48|49|50|52|52|53|0\n37|34|34|33|31|30|29|29|27|25|24|23|23|26|22|21|20|20|36|21|22|28|24|25|26|27|28|32|30|31|32|33|35|35|36|37|0\n28|26|25|24|24|23|22|22|29|19|19|20|18|17|17|31|18|21|20|21|30|23|27|25|26|27|28|29|30|31|0\n37|35|34|33|32|31|30|29|28|27|26|25|24|22|21|21|20|20|36|23|22|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37|0\n38|37|35|35|34|34|33|31|31|27|27|28|26|25|24|22|22|21|21|30|23|23|24|25|26|29|28|29|30|32|32|33|39|36|36|37|38|39|0\n13|13|12|12|15|10|10|11|17|11|16|14|14|15|16|17|0\n56|53|51|51|50|50|49|48|45|45|46|44|44|42|41|40|40|39|37|36|36|35|35|34|33|31|30|30|32|31|32|33|34|57|38|37|38|39|43|41|42|43|55|47|46|47|48|49|54|52|52|53|54|55|56|57|0\n22|20|19|18|17|17|16|15|14|13|13|23|14|15|16|21|18|19|20|21|22|23|0\n52|50|50|47|46|46|45|43|42|42|44|41|40|39|39|38|36|36|32|28|28|29|30|31|33|34|35|29|30|31|32|33|34|35|37|37|38|53|40|41|49|43|44|45|48|47|48|49|51|51|52|53|0\n64|62|62|61|57|56|55|54|54|58|59|53|51|50|48|48|47|41|41|42|40|40|44|45|39|38|37|36|36|35|34|34|65|35|52|37|38|39|46|43|42|43|44|45|46|47|49|49|50|51|52|53|60|55|56|57|58|59|60|61|63|63|64|65|0\n28|27|26|26|24|23|22|21|19|18|18|17|16|16|25|17|20|19|20|21|22|23|24|25|29|27|28|29|0\n49|49|48|48|46|46|45|44|43|41|41|40|39|39|52|53|37|36|35|34|32|32|33|31|30|29|29|55|30|31|38|33|34|35|36|37|38|54|40|42|42|43|44|45|47|47|51|50|50|51|52|53|54|55|0\n45|38|38|39|37|37|41|42|43|44|46|47|36|33|33|34|32|30|29|29|27|27|26|26|49|28|28|31|30|31|32|35|34|35|36|48|40|39|40|41|42|43|44|45|46|47|48|49|0\n68|67|64|64|65|62|56|56|57|55|54|54|59|60|53|53|51|50|49|47|47|48|45|45|43|43|42|40|39|39|38|37|36|36|69|37|38|41|40|41|42|44|44|46|46|52|48|49|50|51|52|63|61|55|58|57|58|59|60|61|62|63|66|65|66|67|68|69|0\n63|62|60|60|61|59|58|57|57|55|55|54|52|52|51|48|46|45|45|47|49|44|43|42|41|40|38|38|37|35|34|34|36|35|36|37|39|39|40|41|42|43|44|50|46|47|48|49|50|51|53|53|54|56|56|65|58|59|64|61|62|63|64|65|0\n30|30|28|27|25|24|23|23|22|21|20|19|17|17|18|29|18|19|20|21|22|26|24|25|26|27|28|29|31|31|0\n59|59|58|57|56|56|55|53|52|52|48|48|49|47|45|45|44|41|41|42|40|35|34|34|36|33|33|38|32|32|51|39|37|35|36|37|38|39|40|43|42|43|44|46|46|47|50|49|50|51|54|53|54|55|61|57|58|60|60|61|0\n30|29|27|26|26|25|23|23|21|20|19|19|18|17|17|31|18|22|20|21|22|24|24|25|28|27|28|29|30|31|0\n9|8|8|7|7|11|10|9|10|11|0\n15|14|11|11|12|13|10|10|17|16|12|13|14|15|16|17|0\n25|24|22|21|20|18|17|16|16|15|14|14|23|15|19|17|18|19|20|21|22|23|24|25|0\n37|36|35|34|34|33|32|30|30|31|28|27|26|24|24|23|21|21|22|29|22|23|25|25|26|27|28|29|39|31|32|33|38|35|36|37|38|39|0\n14|13|10|9|9|11|12|15|10|11|12|13|14|15|0\n16|13|12|12|14|11|11|10|10|17|15|13|14|15|16|17|0\n27|26|25|24|21|21|20|18|17|17|15|15|16|23|16|19|18|19|20|22|22|23|24|25|26|27|0\n63|63|62|61|61|59|58|57|56|52|52|53|54|51|49|49|48|46|45|45|44|43|40|40|39|38|38|37|35|34|34|36|60|35|36|37|42|39|41|41|42|43|44|47|46|47|48|50|50|51|55|53|54|55|56|57|58|59|60|65|62|64|64|65|0\n50|50|44|43|43|42|42|41|40|39|39|47|38|37|35|35|32|31|31|28|28|29|30|27|27|49|34|29|30|33|32|33|34|36|36|37|38|48|40|41|46|45|44|45|46|47|48|49|51|51|0\n53|48|48|49|47|47|51|52|46|44|43|42|42|45|40|39|37|37|35|35|34|32|30|30|31|29|29|41|33|31|32|33|34|36|36|38|38|39|40|41|55|43|44|45|46|54|50|49|50|51|52|53|54|55|0\n29|27|25|25|24|23|22|21|19|19|18|17|16|16|28|17|18|20|20|21|22|23|24|26|26|27|28|29|0\n63|61|60|59|58|58|57|55|54|53|53|52|51|50|50|64|65|49|48|46|46|45|44|43|42|40|40|39|38|37|36|35|35|67|36|37|38|39|41|41|42|43|44|45|47|47|48|49|66|51|52|56|54|55|56|57|62|59|60|61|62|63|64|65|66|67|0\n23|21|20|19|18|17|15|14|14|13|13|22|16|15|16|17|18|19|20|21|22|23|0\n36|35|33|33|34|31|30|29|28|27|26|25|24|22|22|21|20|20|32|21|23|23|24|25|26|27|28|29|30|31|32|37|34|35|36|37|0\n33|30|30|31|28|27|25|22|22|23|21|21|20|19|18|18|29|19|20|26|24|23|24|25|26|27|28|29|32|31|32|33|0\n41|41|40|38|37|37|36|35|34|33|33|31|30|29|26|25|25|27|24|23|23|32|24|28|26|27|28|29|30|31|32|43|34|35|36|39|38|39|40|42|42|43|0\n46|45|43|43|42|41|39|39|38|36|36|37|35|34|32|31|30|29|28|27|26|25|25|33|26|27|28|29|30|31|32|33|34|35|47|37|38|40|40|41|42|44|44|45|46|47|0\n23|22|21|18|18|16|16|15|14|13|13|20|14|15|17|17|19|19|20|21|22|23|0\n39|37|34|34|35|32|31|31|30|28|28|26|25|25|23|23|22|21|21|38|22|24|24|27|26|27|29|29|30|33|32|33|36|35|36|37|38|39|0\n23|21|20|18|18|16|16|15|14|13|13|22|14|15|17|17|19|19|20|21|22|23|0\n32|31|29|28|28|30|25|25|24|22|22|21|19|19|18|18|27|20|20|21|23|23|24|26|26|27|33|29|30|31|32|33|0\n45|44|44|43|43|37|37|38|39|40|36|35|33|33|32|30|30|29|27|27|26|25|25|42|26|28|28|29|31|31|32|34|34|35|36|41|38|39|40|41|42|47|46|45|46|47|0\n67|63|63|64|62|61|59|58|57|57|60|53|52|50|50|51|54|48|47|46|46|45|43|42|42|41|39|37|37|38|36|35|35|56|36|40|38|39|40|41|44|43|44|45|49|47|48|49|55|51|52|53|54|55|56|66|58|59|60|61|62|65|64|65|66|67|0\n35|34|34|33|32|31|29|28|28|27|27|26|24|23|22|21|20|20|25|21|22|23|24|25|26|37|30|29|30|31|32|33|36|35|36|37|0\n48|47|46|45|44|44|43|41|40|39|38|38|35|35|31|31|32|33|29|28|28|27|26|26|37|27|30|29|30|34|32|33|34|36|36|37|42|39|40|41|42|43|49|45|46|47|48|49|0\n70|70|69|68|67|65|65|66|64|62|59|59|60|61|58|56|56|55|54|54|73|52|51|50|50|49|47|46|45|44|44|43|42|40|40|39|39|75|41|41|42|43|48|45|46|47|48|49|53|51|52|53|74|55|57|57|58|63|60|61|62|63|64|72|66|67|68|69|71|71|72|73|74|75|0\n26|26|25|24|24|28|22|21|19|19|18|16|16|17|23|17|18|20|20|21|22|23|29|25|27|27|28|29|0\n34|33|33|35|32|31|31|27|26|26|25|24|23|22|21|20|20|29|30|21|22|23|24|25|28|27|28|29|30|37|32|36|34|35|36|37|0\n43|42|40|40|39|38|37|36|35|34|34|44|45|33|31|31|30|28|28|27|26|25|25|47|26|27|29|29|30|32|32|33|46|35|36|37|38|39|41|41|42|43|44|45|46|47|0\n8|7|6|6|9|7|8|9|0\n29|29|30|28|28|32|33|26|25|25|23|22|22|21|19|19|20|35|20|21|24|23|24|27|26|27|34|31|30|31|32|33|34|35|0\n19|17|13|13|14|15|11|11|12|18|12|16|14|15|16|17|18|19|0\n41|37|37|36|32|32|33|34|35|31|29|28|28|27|26|25|25|23|22|22|24|23|24|40|26|27|30|29|30|31|39|33|34|35|36|38|38|39|40|41|0\n45|44|43|43|42|41|40|39|38|36|36|35|34|34|29|29|30|28|28|26|26|25|25|33|27|27|32|31|30|31|32|33|47|35|37|37|38|39|40|41|42|46|44|45|46|47|0\n35|35|36|32|32|33|31|29|29|28|27|26|26|25|23|22|22|21|21|39|24|23|24|25|38|27|28|30|30|31|34|33|34|37|36|37|38|39|0\n17|16|14|12|11|11|10|10|15|13|12|13|14|15|16|17|0\n8|8|9|7|7|11|10|9|10|11|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n25|22|22|20|20|19|17|16|16|15|14|14|24|15|18|17|18|19|21|21|23|23|24|25|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n24|24|22|18|18|17|17|20|16|15|14|14|23|15|16|21|19|19|20|21|22|23|25|25|0\n68|68|66|60|60|58|58|57|57|56|54|53|50|49|49|48|47|47|46|44|44|43|43|55|63|64|40|40|41|39|38|37|36|36|67|37|38|39|42|41|42|65|45|45|46|52|48|51|50|51|52|53|54|55|56|62|59|59|61|61|62|63|64|65|66|67|69|69|0\n45|44|44|42|42|43|47|48|40|40|39|38|38|50|36|34|34|33|32|31|30|29|28|27|27|37|28|29|30|31|32|33|35|35|36|37|51|39|41|41|49|43|46|45|46|47|48|49|50|51|0\n55|49|48|47|46|45|44|44|50|43|42|41|39|39|38|35|34|34|33|33|37|52|31|31|30|29|29|54|30|32|32|53|36|35|36|37|38|40|40|41|42|43|51|45|46|47|48|49|50|51|52|53|54|55|0\n54|53|52|50|50|51|49|47|46|45|45|43|41|40|38|38|39|37|36|35|34|32|32|31|30|29|29|44|30|31|33|33|34|35|36|37|42|39|40|41|42|43|44|48|46|47|48|49|55|51|52|53|54|55|0\n21|21|20|19|19|23|17|17|16|15|14|14|25|15|16|18|18|24|20|22|22|23|24|25|0\n17|17|15|15|13|11|11|12|14|19|12|13|14|16|16|18|18|19|0\n19|19|18|16|14|14|15|13|12|12|21|13|17|15|16|17|18|20|20|21|0\n23|23|22|21|21|20|17|17|16|15|14|14|19|15|16|18|18|19|20|25|22|24|24|25|0\n28|27|27|26|25|23|22|19|19|20|17|17|18|24|30|31|18|21|20|21|22|23|24|25|26|29|28|29|30|31|0\n63|62|62|64|61|60|59|59|66|56|55|54|54|52|52|50|50|49|48|47|46|45|44|43|41|41|40|38|37|37|36|35|35|58|36|39|38|39|40|42|42|43|44|45|46|47|48|49|51|51|53|53|57|55|56|57|58|67|60|61|65|63|64|65|66|67|0\n51|50|48|47|47|46|44|43|43|42|40|40|39|38|38|52|53|36|36|34|33|33|32|30|30|29|29|55|31|31|32|35|34|35|37|37|54|39|41|41|42|45|44|45|46|49|48|49|50|51|52|53|54|55|0\n50|49|48|47|46|45|43|43|41|41|40|38|37|37|36|35|35|34|31|31|30|30|28|27|27|29|28|29|33|32|32|33|34|51|36|39|38|39|40|42|42|44|44|45|46|47|48|49|50|51|0\n34|31|31|32|30|30|28|27|24|24|23|23|22|21|20|19|19|29|20|21|22|26|25|25|26|27|28|29|35|33|32|33|34|35|0\n49|47|46|45|43|42|42|41|38|37|36|36|35|33|32|32|34|31|30|29|28|27|26|26|48|27|28|29|30|31|40|33|34|35|39|37|38|39|40|41|44|43|44|45|46|47|48|49|0\n62|62|60|59|56|56|55|55|54|53|52|51|48|48|47|46|45|43|42|40|40|39|39|38|38|37|34|34|35|33|33|61|36|35|36|37|50|44|41|41|42|43|44|45|46|47|49|49|50|51|52|53|54|58|57|57|58|59|60|61|63|63|0\n16|15|15|12|12|10|10|11|14|11|13|13|14|17|16|17|0\n13|12|11|10|8|8|9|9|10|11|12|13|0\n39|36|36|35|33|33|30|29|28|28|31|26|26|25|24|23|22|21|21|38|22|23|24|25|27|27|32|29|30|31|32|34|34|35|37|37|38|39|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n29|28|25|24|24|23|21|21|20|18|17|17|16|16|27|19|18|19|20|22|22|23|26|25|26|27|28|29|0\n31|26|26|25|23|23|24|28|20|19|19|21|18|17|17|30|18|22|20|21|22|29|24|25|27|27|28|29|30|31|0\n40|40|39|38|37|37|36|33|32|31|30|29|29|34|28|27|25|24|24|23|23|43|26|25|26|27|28|35|30|31|32|33|34|35|36|42|38|39|41|41|42|43|0\n40|39|38|37|36|35|34|34|41|33|32|31|27|27|26|26|29|25|24|23|23|43|24|25|30|28|28|29|30|31|32|33|42|35|36|37|38|39|40|41|42|43|0\n54|54|50|49|49|48|46|44|44|43|42|41|41|47|40|39|38|37|36|35|34|32|31|30|30|29|29|53|33|31|32|33|34|35|36|37|38|39|40|52|42|43|45|45|46|47|48|51|50|51|52|53|55|55|0\n24|23|20|20|21|22|18|17|16|15|14|14|19|15|16|17|18|19|25|21|22|23|24|25|0\n53|52|52|51|51|50|49|48|47|45|45|43|42|40|40|41|39|39|56|57|37|37|36|35|34|33|32|31|31|59|32|33|34|35|36|38|38|58|44|41|42|43|44|46|46|47|48|49|50|55|54|53|54|55|56|57|58|59|0\n25|24|18|18|19|20|21|17|15|15|14|14|23|16|16|17|22|19|20|21|22|23|24|25|0\n15|13|12|11|10|9|9|14|10|11|12|13|14|15|0\n26|25|24|23|23|22|20|20|18|17|16|15|15|19|16|17|18|19|21|21|22|27|24|25|26|27|0\n23|23|22|22|20|19|18|17|16|15|14|14|21|15|16|17|18|19|20|21|25|24|24|25|0\n25|23|23|22|20|19|19|18|17|16|15|14|14|15|16|17|18|21|20|21|22|24|24|25|0\n26|24|24|25|22|21|20|18|18|17|16|15|15|23|16|17|19|19|20|21|22|23|27|25|26|27|0\n19|18|18|17|16|15|14|12|12|13|21|13|14|15|16|17|20|19|20|21|0\n30|30|27|25|25|26|24|22|21|21|20|18|17|17|19|29|18|19|20|23|22|23|24|28|26|27|28|29|31|31|0\n17|15|14|11|11|12|10|10|16|13|12|13|14|15|16|17|0\n31|31|32|29|29|28|27|26|24|24|23|23|34|35|22|21|20|20|37|21|22|36|25|25|26|27|28|30|30|33|32|33|34|35|36|37|0\n19|19|18|17|15|14|14|13|12|12|21|13|16|15|16|17|18|20|20|21|0\n33|31|29|29|28|26|25|24|24|23|21|20|20|19|18|18|32|19|22|21|22|23|27|25|26|27|28|30|30|31|32|33|0\n32|31|29|29|30|27|26|25|24|23|22|21|20|19|18|18|28|19|20|21|22|23|24|25|26|27|28|33|30|31|32|33|0\n26|24|24|23|22|22|27|21|21|18|18|17|16|16|20|17|19|19|20|29|28|23|25|25|26|27|28|29|0\n41|40|38|37|36|35|33|32|32|31|29|29|28|26|25|24|24|23|22|22|39|23|27|25|26|27|28|30|30|31|34|33|34|35|36|37|38|39|40|41|0\n29|28|28|27|26|26|24|23|23|21|19|19|18|17|17|22|18|20|20|21|22|25|24|25|31|27|30|29|30|31|0\n24|24|21|20|20|19|18|17|16|14|14|15|23|15|16|17|18|19|22|21|22|23|25|25|0\n37|34|34|33|32|32|31|30|30|38|39|29|27|27|26|25|24|23|22|22|41|23|24|25|26|28|28|29|40|31|36|33|35|35|36|37|38|39|40|41|0\n39|38|35|35|34|32|31|31|30|30|29|26|26|25|24|23|22|21|21|28|22|23|24|25|27|27|28|29|37|33|32|33|34|36|36|37|38|39|0\n8|8|9|7|7|11|10|9|10|11|0\n10|9|9|7|7|8|8|11|10|11|0\n15|15|14|13|13|11|10|10|12|11|12|17|14|16|16|17|0\n16|16|13|13|12|10|10|11|15|11|12|14|14|15|17|17|0\n35|30|29|29|31|32|27|27|25|25|24|23|22|21|20|19|19|34|20|21|22|23|24|26|26|28|28|33|30|31|32|33|34|35|0\n7|5|5|6|6|7|0\n24|24|25|21|21|22|19|18|18|17|16|15|15|27|16|17|20|19|20|23|22|23|26|25|26|27|0\n9|9|8|7|7|11|8|10|10|11|0\n21|21|20|19|17|17|16|14|13|13|15|23|14|15|16|18|18|19|20|22|22|23|0\n15|15|16|14|14|18|12|11|11|13|12|13|19|17|16|17|18|19|0\n33|31|29|29|28|26|26|25|23|23|22|21|20|19|18|18|32|19|20|21|22|24|24|25|27|27|28|30|30|31|32|33|0\n24|23|23|21|20|17|17|18|16|15|14|14|22|15|16|19|18|19|20|21|22|25|24|25|0\n54|53|52|52|51|49|48|48|43|41|40|40|39|38|37|36|36|35|33|32|32|34|45|31|29|29|30|47|30|31|46|33|34|35|44|37|38|39|42|41|42|43|44|45|46|47|50|49|50|51|55|53|54|55|0\n34|32|32|31|30|30|35|28|28|27|26|24|23|23|22|21|20|20|37|21|22|25|24|25|26|27|29|29|36|31|33|33|34|35|36|37|0\n37|35|33|32|31|31|30|26|26|27|25|25|23|22|22|21|20|20|36|21|24|23|24|29|28|27|28|29|30|34|32|33|34|35|36|37|0\n76|75|75|74|71|70|70|69|68|66|66|65|64|63|62|61|60|60|58|57|56|55|52|51|51|50|49|49|48|47|46|45|44|43|42|40|40|41|59|41|42|43|44|45|46|47|48|54|50|53|52|53|54|55|56|57|58|59|73|61|62|63|64|65|67|67|68|69|72|71|72|73|74|77|76|77|0\n47|45|43|43|42|42|40|40|39|39|48|49|38|36|35|35|34|33|32|31|28|28|27|27|30|51|29|29|30|31|32|33|34|37|36|37|38|50|41|41|46|44|44|45|46|47|48|49|50|51|0\n23|20|19|18|18|17|16|15|14|13|13|22|14|15|16|17|21|19|20|21|22|23|0\n32|32|27|26|26|25|24|23|22|22|29|21|20|19|18|18|31|19|20|21|30|23|24|25|28|27|28|29|30|31|33|33|0\n43|42|41|39|37|36|35|33|32|31|28|28|29|27|26|25|25|34|24|23|23|40|24|38|26|27|30|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n25|25|26|22|22|20|19|18|18|17|15|15|16|24|16|17|21|19|20|21|23|23|24|27|26|27|0\n52|52|50|48|48|47|46|45|42|42|41|39|39|38|37|36|35|34|33|33|32|31|30|29|28|28|51|29|30|31|32|44|34|35|36|37|38|40|40|41|43|43|44|45|46|47|49|49|50|51|53|53|0\n19|17|15|13|13|14|12|11|11|18|12|16|14|15|16|17|18|19|0\n31|28|28|25|25|26|23|22|22|21|20|19|18|17|17|30|18|19|20|21|24|23|24|27|26|27|29|29|30|31|0\n41|40|40|42|43|38|37|36|36|35|32|31|30|30|33|27|27|26|26|25|24|24|45|25|29|28|28|29|34|31|32|33|34|35|39|37|38|39|44|41|42|43|44|45|0\n15|14|13|12|11|10|10|16|17|11|12|13|14|15|16|17|0\n13|12|11|11|10|9|9|15|10|14|12|13|14|15|0\n59|57|55|55|54|52|52|53|51|50|49|49|60|61|48|46|46|45|44|43|42|40|40|39|38|36|36|35|33|33|34|63|34|35|37|37|38|39|41|41|42|43|44|45|47|47|48|62|50|51|58|53|54|56|56|57|58|59|60|61|62|63|0\n26|25|24|23|23|27|22|21|18|18|17|17|16|16|29|20|19|19|20|21|22|28|24|25|26|27|28|29|0\n59|58|58|57|54|53|53|52|51|51|50|50|61|49|48|46|45|44|43|43|42|40|39|38|38|37|35|34|34|33|33|63|36|35|36|37|41|39|40|41|42|47|44|45|46|47|48|49|62|56|52|55|54|55|56|57|60|59|60|61|62|63|0\n63|63|62|60|59|56|56|57|55|54|54|52|51|50|49|49|48|47|46|44|44|43|43|40|40|38|38|37|35|35|34|34|42|36|36|37|39|39|41|41|42|65|45|45|46|47|48|53|50|51|52|53|61|55|58|57|58|59|60|61|62|64|64|65|0\n44|44|41|40|39|39|42|37|37|36|34|33|33|32|32|46|47|31|29|29|27|26|26|28|49|27|28|30|30|31|48|35|34|35|36|38|38|43|40|41|42|43|45|45|46|47|48|49|0\n48|47|47|46|45|45|44|43|43|51|40|39|39|38|36|35|34|34|33|33|32|30|30|29|28|28|53|29|31|31|32|42|37|35|36|37|38|41|40|41|42|52|44|50|46|49|48|49|50|51|52|53|0\n59|56|55|54|54|53|51|51|50|49|46|45|44|43|43|47|41|40|40|39|37|37|36|35|34|33|32|31|31|58|32|33|34|35|36|38|38|39|42|41|42|48|44|45|46|47|48|49|50|52|52|53|57|55|56|57|58|59|0\n18|18|19|17|17|21|22|23|16|15|14|14|25|15|16|24|20|19|20|21|22|23|24|25|0\n27|27|26|25|23|23|22|22|29|20|19|17|17|18|21|31|18|19|20|21|30|24|24|25|26|28|28|29|30|31|0\n54|52|51|50|49|49|53|48|46|45|45|43|40|39|38|38|41|37|33|32|31|30|29|29|34|35|36|44|30|31|32|33|34|35|36|37|42|39|40|41|42|43|44|47|46|47|48|55|50|51|52|53|54|55|0\n21|20|20|19|18|17|16|14|14|13|13|23|15|15|16|17|18|19|22|21|22|23|0\n49|43|43|44|45|46|42|41|41|38|37|37|36|35|34|31|30|30|29|29|28|27|26|26|40|27|28|33|32|31|32|33|34|35|36|39|38|39|40|48|42|47|44|45|46|47|48|49|0\n7|7|8|6|6|9|8|9|0\n46|46|47|48|49|50|44|44|43|42|42|52|53|41|38|38|39|37|36|34|34|33|32|31|30|29|29|55|30|31|32|33|35|35|36|37|40|39|40|41|54|43|45|45|51|47|48|49|50|51|52|53|54|55|0\n39|36|35|34|33|31|31|32|30|29|28|26|26|25|24|22|22|21|21|38|23|23|24|25|27|27|28|29|30|37|32|33|34|35|36|37|38|39|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n14|13|11|10|10|9|9|15|12|11|12|13|14|15|0\n39|38|37|35|34|33|33|36|40|41|32|31|29|29|28|27|26|25|24|23|23|43|24|25|26|27|28|30|30|31|32|42|34|35|36|37|38|39|40|41|42|43|0\n37|35|31|30|30|29|28|27|27|33|24|24|23|23|22|21|20|20|36|21|22|26|25|25|26|34|28|29|32|31|32|33|34|35|36|37|0\n55|55|56|54|52|52|51|50|50|49|46|45|45|43|42|42|41|40|39|39|48|59|38|36|36|33|33|34|32|32|61|35|34|35|37|37|38|60|40|41|44|43|44|47|46|47|48|49|58|51|53|53|54|57|56|57|58|59|60|61|0\n70|70|68|67|66|65|65|64|63|62|61|60|60|72|73|59|58|57|55|55|49|49|48|47|46|46|51|45|45|53|44|42|41|41|40|39|39|75|40|43|42|43|44|54|52|47|48|50|50|51|52|53|54|56|56|57|58|59|74|61|62|63|64|69|66|67|68|69|71|71|72|73|74|75|0\n28|28|26|24|23|22|22|21|20|19|18|17|16|16|27|17|18|19|20|21|25|23|24|25|26|27|29|29|0\n33|33|26|26|27|28|29|30|31|32|35|24|24|23|21|21|20|20|37|22|22|23|25|25|36|27|28|29|30|31|32|34|34|35|36|37|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n53|51|51|52|50|48|48|49|47|45|44|43|40|39|39|38|38|37|36|35|34|32|32|31|29|29|30|46|30|31|33|33|34|35|36|37|42|41|40|41|42|43|44|45|46|47|55|49|50|54|52|53|54|55|0\n20|20|19|16|14|14|15|13|12|12|18|13|17|15|16|17|18|19|21|21|0\n50|49|47|46|46|45|44|42|42|41|40|39|38|38|37|36|34|32|31|31|30|29|27|27|28|35|28|29|30|33|32|33|34|35|36|37|51|39|40|41|43|43|44|45|48|47|48|49|50|51|0\n29|29|28|27|26|26|24|22|22|21|19|19|18|17|17|25|18|20|20|21|23|23|24|25|31|27|28|30|30|31|0\n35|33|32|31|29|29|27|26|26|25|24|23|22|21|20|19|19|34|20|21|22|23|24|25|28|27|28|30|30|31|32|33|34|35|0\n38|37|37|34|34|33|32|31|29|29|27|26|24|23|23|25|22|21|21|36|22|28|24|25|26|27|28|30|30|31|32|33|35|35|36|39|38|39|0\n61|61|58|58|59|57|56|53|53|52|52|51|50|50|49|48|46|45|44|43|40|39|38|38|41|36|35|35|34|33|33|47|34|37|36|37|42|39|40|41|42|43|44|45|46|47|48|49|63|51|55|54|54|55|56|57|60|59|60|62|62|63|0\n56|55|53|53|54|46|46|47|48|49|50|45|44|40|40|39|39|42|38|37|36|34|34|33|32|31|30|30|52|31|32|33|35|35|36|37|38|43|41|41|42|43|44|45|51|47|48|49|50|51|52|57|54|55|56|57|0\n74|71|71|72|69|69|68|66|65|64|60|60|61|62|63|58|58|56|54|54|55|53|52|51|51|50|49|47|46|44|44|42|41|41|40|39|39|48|40|43|42|43|45|45|46|47|48|49|50|75|52|53|57|55|56|57|59|59|67|61|62|63|64|65|66|67|68|70|70|73|72|73|74|75|0\n39|35|34|34|36|32|32|31|30|29|28|28|25|23|23|22|21|21|26|27|22|24|24|25|26|27|38|29|30|31|33|33|37|35|36|37|38|39|0\n38|37|37|39|35|35|34|31|28|27|27|29|26|26|32|25|23|23|22|22|41|24|24|25|33|30|28|29|30|31|32|33|34|36|36|40|38|39|40|41|0\n43|42|41|40|40|39|39|38|36|36|35|35|46|47|33|33|32|30|30|29|28|27|26|26|49|27|28|29|31|31|32|34|34|48|37|37|38|45|44|41|42|43|44|45|46|47|48|49|0\n46|45|44|43|42|41|40|38|38|36|36|35|35|34|33|30|29|29|28|27|26|25|25|32|26|27|28|31|30|31|32|33|34|47|37|37|39|39|40|41|42|43|44|45|46|47|0\n27|22|21|21|23|24|17|17|16|16|19|15|15|26|20|18|18|19|20|25|22|23|24|25|26|27|0\n26|25|24|24|23|21|21|19|17|16|15|15|18|20|16|17|18|19|20|22|22|23|27|25|26|27|0\n80|80|79|78|71|70|70|69|68|63|63|64|65|66|62|62|73|59|58|57|56|56|55|54|53|53|52|50|49|49|48|47|47|75|76|45|45|44|43|43|82|83|44|46|46|77|48|51|50|51|52|61|54|55|60|57|58|59|60|61|74|67|64|65|66|67|68|69|72|71|72|73|74|75|76|77|78|79|81|81|82|83|0\n53|53|52|51|51|47|47|48|43|43|42|40|40|39|38|38|45|37|36|34|33|32|31|31|30|29|29|50|30|35|32|33|34|35|36|37|46|39|41|41|42|44|44|45|46|49|48|49|50|55|52|54|54|55|0\n27|26|26|24|24|23|22|21|20|20|18|17|16|16|19|17|18|19|29|21|22|23|25|25|28|27|28|29|0\n87|80|79|79|76|75|74|74|77|71|71|70|70|69|66|65|64|63|62|61|61|67|60|59|59|82|83|84|56|55|54|54|57|53|51|49|49|50|48|46|46|45|45|86|47|47|48|52|50|51|52|53|58|55|56|57|58|85|60|68|62|63|64|65|66|67|68|69|73|72|72|73|78|75|76|77|78|81|80|81|82|83|84|85|86|87|0\n56|54|53|53|52|51|50|48|47|46|46|45|43|43|42|42|57|41|40|39|37|37|36|33|33|34|32|31|31|59|32|35|34|35|36|38|38|39|40|41|58|44|44|45|49|47|48|49|50|51|52|55|54|55|56|57|58|59|0\n38|38|36|35|34|33|31|30|30|29|28|24|24|25|26|23|21|21|22|37|22|23|27|25|26|27|28|29|32|31|32|33|34|35|36|37|39|39|0\n68|66|65|64|64|62|62|61|59|59|58|57|57|56|55|54|52|50|49|49|48|45|44|44|46|43|42|40|39|39|38|37|36|36|53|37|38|41|40|41|42|43|47|45|46|47|48|51|50|51|52|53|54|55|56|69|58|60|60|61|63|63|67|65|66|67|68|69|0\n37|36|35|35|34|30|29|28|28|31|32|27|27|25|23|23|22|21|21|26|22|24|24|25|26|39|33|29|30|31|32|33|34|38|36|37|38|39|0\n16|16|15|14|12|11|10|10|13|11|12|13|14|15|17|17|0\n34|33|30|30|31|29|28|27|27|35|25|25|24|21|21|22|20|20|37|23|22|23|24|26|26|36|28|29|32|31|32|33|34|35|36|37|0\n45|43|42|41|40|39|38|37|33|32|32|31|30|30|35|28|27|27|26|25|24|24|44|25|26|29|28|29|36|31|34|33|34|35|36|37|38|39|40|41|42|43|44|45|0\n41|37|37|36|36|35|31|31|32|33|29|29|28|27|25|25|24|23|22|22|40|23|24|26|26|27|28|30|30|34|32|33|34|35|39|38|38|39|40|41|0\n6|6|5|5|7|7|0\n6|6|5|5|7|7|0\n15|14|12|11|10|9|9|13|10|11|12|13|14|15|0\n11|10|8|8|7|7|9|9|10|11|0\n29|28|26|25|22|21|21|20|19|19|18|17|16|16|27|17|18|24|20|23|22|23|24|25|26|27|28|29|0\n70|69|69|65|63|62|62|61|60|59|59|66|58|56|55|55|52|50|50|49|48|47|46|45|44|44|53|43|42|40|40|38|38|37|37|68|39|39|41|41|42|43|54|45|46|47|48|49|51|51|52|53|54|57|56|57|58|67|60|61|64|63|64|65|66|67|68|71|70|71|0\n35|34|32|31|30|28|28|27|25|24|23|22|22|21|20|19|19|33|20|21|26|23|24|25|26|27|29|29|30|31|32|33|34|35|0\n45|43|41|41|40|35|34|33|32|31|31|36|30|29|29|38|28|27|26|25|24|24|44|25|26|27|28|39|30|37|32|33|34|35|36|37|38|39|40|42|42|43|44|45|0\n43|42|40|40|38|37|36|32|32|31|31|34|30|29|27|27|26|24|24|23|23|39|25|25|26|28|28|29|30|35|33|33|34|35|36|37|38|39|41|41|42|43|0\n13|11|10|9|8|8|12|9|10|11|12|13|0\n30|27|27|28|29|24|23|21|21|22|20|18|18|17|17|26|19|19|20|25|22|23|24|25|26|31|28|29|30|31|0\n61|61|62|60|58|58|59|64|56|56|55|54|53|52|51|51|66|67|50|49|47|46|46|45|44|42|41|41|39|38|37|36|36|40|69|37|38|39|40|43|42|43|44|45|48|47|48|49|50|68|52|53|54|55|57|57|65|59|60|63|62|63|64|65|66|67|68|69|0\n7|7|6|6|9|8|8|9|0\n27|26|25|24|24|22|22|20|20|21|29|19|17|17|18|31|18|19|30|21|23|23|28|25|26|27|28|29|30|31|0\n34|33|33|32|31|31|36|37|29|28|27|26|25|25|24|22|22|21|21|39|23|23|24|30|26|27|28|29|30|38|32|35|34|35|36|37|38|39|0\n49|47|47|46|42|42|43|44|41|40|38|38|37|36|35|34|34|50|51|32|32|31|30|29|28|28|53|29|30|31|33|33|52|35|36|37|39|39|40|41|45|43|44|45|46|48|48|49|50|51|52|53|0\n39|37|37|38|34|33|32|32|35|30|30|29|29|41|28|27|25|25|24|23|23|43|24|26|26|27|28|42|31|31|36|33|34|35|36|40|38|39|40|41|42|43|0\n47|47|48|46|45|44|42|41|39|38|38|37|36|34|34|33|31|31|30|29|28|26|26|27|43|27|28|29|30|32|32|33|35|35|36|37|40|39|40|41|42|43|44|45|46|49|48|49|0\n21|20|20|22|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0\n40|40|38|37|36|35|33|32|32|31|30|28|28|26|26|25|24|23|22|22|39|23|24|25|27|27|29|29|30|31|34|33|34|35|36|37|38|39|41|41|0\n38|38|37|34|34|35|33|32|32|40|41|30|30|29|27|27|24|23|23|25|26|43|24|25|26|28|28|29|31|31|42|33|36|35|36|37|39|39|40|41|42|43|0\n64|63|62|60|60|57|57|55|54|54|53|52|51|50|48|47|47|46|45|43|43|44|59|41|39|38|38|37|35|35|34|34|42|36|36|37|40|39|40|41|42|65|44|45|46|49|48|49|50|51|52|53|56|55|56|58|58|59|61|61|62|63|64|65|0\n66|65|65|63|63|61|60|59|57|56|54|51|50|49|49|48|45|45|46|47|44|41|40|40|42|39|38|37|37|55|36|35|35|62|36|58|38|39|43|41|42|43|44|53|46|47|48|52|50|51|52|53|54|55|56|57|58|59|60|61|62|64|64|67|66|67|0\n23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0\n11|8|8|7|7|10|9|9|10|11|0\n25|22|22|21|20|19|18|17|16|15|14|14|24|15|16|17|18|19|20|21|23|23|24|25|0\n20|18|17|17|16|16|14|13|12|12|15|13|14|15|21|19|18|19|20|21|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n56|56|53|53|52|50|49|48|47|45|45|46|44|43|42|40|39|38|38|37|35|35|34|33|32|31|30|30|55|31|32|33|34|36|36|37|41|39|40|41|42|43|44|51|46|47|48|49|50|51|52|54|54|55|57|57|0\n32|31|30|30|26|24|23|23|22|21|20|19|18|18|27|28|29|19|20|21|22|25|24|25|26|27|28|29|33|31|32|33|0\n71|70|69|66|66|63|62|60|60|59|58|56|56|54|54|53|52|51|50|48|47|46|46|45|43|42|42|40|40|39|39|64|38|37|37|68|38|65|41|41|44|43|44|45|49|47|48|49|50|51|52|53|55|55|57|57|58|59|61|61|62|63|64|65|67|67|68|69|70|71|0\n30|29|27|25|25|26|24|23|23|22|20|20|18|17|17|19|18|19|21|21|22|31|24|28|26|27|28|29|30|31|0\n33|32|32|31|30|30|29|28|27|27|36|37|24|24|23|23|22|21|21|39|22|26|25|25|26|38|28|29|35|31|34|33|34|35|36|37|38|39|0\n18|17|17|15|13|13|11|11|12|16|12|14|14|15|16|19|18|19|0\n61|60|59|58|57|55|54|53|52|51|50|49|49|48|46|46|44|43|41|40|39|39|38|37|36|35|34|33|32|32|45|33|34|35|36|37|38|42|40|41|42|43|44|45|47|47|48|56|50|51|52|53|54|55|56|57|58|59|60|61|0\n15|15|14|14|17|13|13|19|12|12|21|20|18|16|16|17|18|19|20|21|0\n55|52|52|49|47|47|46|46|50|45|44|43|40|40|39|38|37|37|36|35|33|32|31|30|29|29|34|54|30|31|32|33|34|35|36|42|38|39|41|41|42|43|44|45|51|48|48|49|50|51|53|53|54|55|0\n17|16|15|13|12|11|10|10|14|11|12|13|14|15|16|17|0\n25|22|22|20|20|19|17|17|16|14|14|15|24|15|16|18|18|19|21|21|23|23|24|25|0\n51|49|49|46|44|44|43|41|41|40|38|38|37|36|35|34|33|32|30|29|29|28|27|27|47|48|28|31|30|31|32|33|34|35|36|37|39|39|40|42|42|43|45|45|46|47|48|50|50|51|0\n24|24|21|21|19|19|18|15|15|14|14|17|23|16|16|17|18|20|20|22|22|23|25|25|0\n68|67|66|66|64|64|63|62|59|59|60|61|70|71|57|56|55|54|52|52|53|51|50|49|48|43|43|42|42|45|41|39|39|40|38|38|73|47|40|41|46|44|44|45|46|47|48|49|50|51|58|53|54|55|56|57|58|72|60|61|62|63|65|65|69|67|68|69|70|71|72|73|0\n31|31|32|29|28|28|27|27|34|25|24|23|22|21|20|19|19|26|20|21|22|23|24|25|26|35|30|29|30|33|32|33|34|35|0\n47|47|46|45|45|43|42|41|37|37|36|36|39|35|34|33|32|31|29|27|27|26|26|30|44|28|28|29|30|31|32|33|34|35|40|38|38|39|40|41|42|43|44|49|46|48|48|49|0\n52|51|50|49|48|47|46|46|53|45|44|38|37|36|36|39|40|41|42|35|34|33|32|31|30|29|29|55|30|31|32|33|34|35|43|37|38|39|40|41|42|43|44|45|54|47|48|49|50|51|52|53|54|55|0\n30|30|28|26|26|25|23|22|22|20|20|18|18|17|17|29|19|19|21|21|24|23|24|25|27|27|28|29|31|31|0\n16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0\n16|16|14|13|11|11|10|10|15|12|12|13|14|15|17|17|0\n21|21|20|19|18|18|23|16|16|14|14|15|25|15|17|17|24|19|20|22|22|23|24|25|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n34|33|32|32|31|28|27|27|26|25|24|22|21|21|20|19|19|30|20|23|22|23|24|25|26|29|28|29|30|31|35|33|34|35|0\n78|78|79|77|76|75|75|74|73|73|82|83|70|70|71|69|68|68|67|66|63|62|61|61|60|57|57|56|55|55|53|51|50|49|48|47|47|52|46|45|44|44|65|45|46|54|48|49|50|51|52|53|54|59|56|58|58|59|60|64|62|63|64|65|66|67|85|69|72|71|72|84|74|81|76|77|80|79|80|81|82|83|84|85|0\n40|39|39|34|33|33|32|32|36|30|30|29|28|26|25|24|23|23|22|22|38|27|24|25|26|27|28|29|31|31|37|35|34|35|36|37|38|41|40|41|0\n52|52|51|46|44|43|42|42|41|40|40|47|48|39|36|36|35|34|33|33|32|31|30|29|28|28|50|29|30|31|32|38|34|35|37|37|38|39|49|41|45|43|44|45|46|47|48|49|50|51|53|53|0\n13|13|14|11|9|9|10|12|10|11|12|15|14|15|0\n29|28|28|27|25|25|24|22|21|21|20|19|18|18|17|17|31|19|20|23|22|23|24|26|26|27|30|29|30|31|0\n27|25|24|22|21|19|18|18|20|17|16|15|15|26|16|17|23|19|20|21|22|23|24|25|26|27|0\n11|9|8|7|7|10|8|9|10|11|0\n28|25|24|24|26|22|21|21|20|18|18|17|16|16|29|17|19|19|20|23|22|23|27|25|26|27|28|29|0\n68|67|66|65|62|61|61|60|59|59|58|57|57|69|70|71|56|55|54|53|51|49|49|48|44|44|43|42|42|46|41|41|40|39|38|38|73|39|40|52|47|43|45|45|46|47|48|50|50|51|52|53|54|55|56|72|58|64|60|63|62|63|64|65|66|67|68|69|70|71|72|73|0\n66|65|64|64|63|62|61|60|59|58|58|68|69|56|56|55|54|52|52|51|50|49|48|46|46|45|43|42|41|41|39|38|38|37|37|71|40|39|40|44|42|43|44|45|47|47|48|49|50|51|53|53|54|55|57|57|70|59|60|61|62|63|67|65|66|67|68|69|70|71|0\n30|30|29|28|27|27|24|23|22|21|20|19|19|25|18|18|33|26|20|21|22|23|24|25|26|32|28|29|31|31|32|33|0\n46|46|47|45|44|42|40|39|39|38|37|36|36|35|34|32|32|31|30|28|28|27|26|26|49|27|29|29|30|31|33|33|34|35|43|37|38|41|40|41|42|43|44|45|48|47|48|49|0\n38|38|37|36|35|35|40|41|33|32|31|29|29|30|28|27|25|25|24|23|23|43|24|26|26|27|28|34|30|31|32|33|34|42|36|37|39|39|40|41|42|43|0\n54|54|53|52|52|51|47|47|48|46|46|44|43|43|42|40|40|39|38|37|37|57|36|34|34|33|32|31|31|59|32|33|35|35|36|58|38|39|41|41|42|45|44|45|50|49|48|49|50|51|56|53|55|55|56|57|58|59|0\n28|28|25|24|24|22|22|21|20|19|17|16|16|18|27|17|18|19|20|21|23|23|26|25|26|27|29|29|0\n29|26|26|25|21|21|19|18|18|17|17|23|16|16|28|24|20|19|20|22|22|23|24|25|27|27|28|29|0\n46|46|45|43|41|41|42|40|39|39|48|49|38|37|36|33|33|34|31|31|30|29|28|27|27|51|28|29|30|32|32|35|34|35|36|37|38|50|40|44|42|43|44|45|47|47|48|49|50|51|0\n14|12|12|11|10|9|9|15|10|11|13|13|14|15|0\n43|41|39|38|37|37|36|35|33|33|32|30|30|29|27|27|26|25|24|23|23|42|24|25|26|28|28|29|31|31|32|34|34|35|36|40|38|39|40|41|42|43|0\n13|11|11|12|10|9|9|15|10|14|12|13|14|15|0\n37|35|34|31|30|30|32|29|27|27|26|24|23|22|22|21|20|20|36|21|25|23|24|25|26|28|28|29|33|31|32|33|34|35|36|37|0\n11|8|8|7|7|10|9|9|10|11|0\n39|37|37|38|35|35|33|33|32|32|29|29|27|26|26|25|24|22|22|23|31|23|24|25|28|27|28|30|30|31|41|34|34|36|36|40|38|39|40|41|0\n29|29|28|26|25|25|24|21|20|20|22|19|18|17|17|31|18|19|23|21|22|23|24|27|26|27|28|30|30|31|0\n27|26|26|25|24|24|23|21|20|19|17|17|16|16|22|18|18|19|20|21|22|23|29|25|28|27|28|29|0\n50|50|46|44|43|42|42|41|40|40|47|39|38|37|35|35|32|32|33|30|29|28|28|27|27|49|31|29|30|31|34|33|34|36|36|37|38|39|48|41|45|43|44|45|46|47|48|49|51|51|0\n64|63|63|65|61|60|59|58|58|57|55|54|53|52|51|50|50|49|48|47|46|45|42|41|41|43|40|39|38|37|36|35|35|67|36|37|38|39|40|44|42|43|44|45|46|47|48|49|56|51|52|53|54|55|56|57|62|59|60|61|62|66|64|65|66|67|0\n17|17|16|16|19|14|14|12|12|13|21|13|15|15|20|18|18|19|20|21|0\n35|34|32|32|30|29|28|26|26|25|23|23|22|21|20|19|19|31|20|21|22|24|24|25|27|27|28|29|30|31|33|33|34|35|0\n34|34|35|33|33|31|30|28|27|27|26|25|24|23|22|21|20|20|32|21|22|23|24|25|26|29|28|29|30|31|32|37|36|35|36|37|0\n23|21|19|18|18|17|16|15|14|13|13|22|14|15|16|17|20|19|20|21|22|23|0\n4|4|5|5|0\n13|12|9|8|8|10|11|9|10|11|12|13|0\n55|48|48|49|50|51|47|46|46|45|42|41|40|39|39|38|37|36|35|34|34|32|32|31|29|29|30|54|30|31|33|33|44|35|36|37|38|43|40|41|42|43|44|45|53|47|52|49|50|51|52|53|54|55|0\n65|64|63|62|61|60|56|56|55|55|58|53|53|52|51|49|48|48|47|47|66|67|45|45|44|42|42|41|39|39|38|37|36|36|69|37|38|40|40|41|43|43|44|46|46|68|50|49|50|51|52|54|54|59|57|57|58|59|60|61|62|63|64|65|66|67|68|69|0\n44|43|43|45|40|39|39|38|37|37|36|34|34|33|32|30|29|28|28|27|26|25|25|47|26|27|31|29|30|31|32|33|35|35|36|42|38|41|40|41|42|46|44|45|46|47|0\n33|26|26|25|24|24|23|22|21|21|29|20|19|19|18|18|32|31|20|30|22|23|28|25|27|27|28|29|30|31|32|33|0\n9|9|8|7|7|11|8|10|10|11|0\n52|51|49|49|48|47|47|46|45|42|42|37|36|35|32|31|31|33|30|29|29|38|39|40|28|28|44|41|30|34|32|33|34|35|36|37|38|39|40|41|43|43|44|45|46|53|48|50|50|51|52|53|0\n50|47|46|45|45|48|44|42|42|43|41|39|39|37|36|34|34|33|29|29|30|31|28|27|27|38|28|32|30|31|32|33|35|35|36|37|38|40|40|41|51|43|44|49|46|47|48|49|50|51|0\n26|26|25|24|22|21|21|23|28|29|19|19|18|17|17|31|18|20|20|30|22|23|24|25|27|27|28|29|30|31|0\n24|23|22|21|21|18|18|17|15|15|14|14|20|16|16|17|19|19|20|25|22|23|24|25|0\n46|42|42|43|44|41|41|40|38|38|36|35|33|33|32|29|28|28|30|27|26|25|25|37|26|27|31|29|30|31|32|34|34|35|36|37|39|39|40|47|45|43|44|45|46|47|0\n61|60|59|58|55|55|54|52|51|51|50|48|47|47|46|43|43|44|42|41|41|40|39|39|62|63|38|37|36|35|34|34|65|35|36|37|38|64|40|57|42|45|44|45|46|49|48|49|50|53|52|53|54|56|56|57|58|59|60|61|62|63|64|65|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n48|47|46|46|45|43|43|41|39|38|38|37|35|32|31|31|33|30|30|29|27|27|26|26|42|28|28|29|36|34|32|33|34|35|36|37|40|39|40|41|42|44|44|45|49|47|48|49|0\n58|57|56|53|52|52|54|50|49|48|48|47|47|46|44|43|43|42|38|37|37|36|35|35|34|33|32|31|31|41|32|33|34|40|36|39|38|39|40|41|42|45|44|45|46|59|51|49|50|51|55|53|54|55|56|57|58|59|0\n30|30|26|24|23|23|22|22|27|21|20|19|18|17|17|29|18|19|20|21|28|25|24|25|26|27|28|29|31|31|0\n22|21|20|19|18|18|16|15|14|13|13|17|14|15|16|17|23|19|20|21|22|23|0\n72|71|70|69|69|68|67|66|66|74|75|61|60|59|59|57|57|55|55|54|53|52|51|51|63|64|48|47|47|46|46|45|43|43|42|41|40|40|77|41|42|44|44|45|50|49|48|49|50|65|52|53|54|56|56|58|58|62|60|61|62|63|64|65|76|67|68|73|70|71|72|73|74|75|76|77|0\n88|88|79|76|75|74|74|77|73|72|71|71|80|81|70|68|68|67|66|65|65|83|60|60|61|59|59|58|58|57|56|56|85|55|54|53|52|50|50|49|47|46|46|48|87|47|48|49|51|51|52|53|54|55|86|57|64|63|62|61|62|63|64|84|66|67|69|69|70|82|72|73|78|75|76|77|78|79|80|81|82|83|84|85|86|87|89|89|0\n19|18|15|14|14|13|12|11|11|17|12|13|16|15|16|17|18|19|0\n68|67|65|65|66|64|61|60|59|59|57|57|56|54|53|52|51|51|49|49|47|47|46|46|44|42|42|41|40|39|38|37|36|36|45|37|38|39|40|41|43|43|44|45|63|48|48|50|50|55|52|53|54|55|56|58|58|62|60|61|62|63|64|69|66|67|68|69|0\n38|37|36|35|34|34|29|29|28|27|26|26|31|24|23|23|22|21|21|33|22|25|24|25|32|27|28|30|30|31|32|33|39|35|36|37|38|39|0\n55|55|54|53|52|51|49|48|48|46|45|41|41|42|43|44|47|39|37|37|36|34|32|32|33|31|30|30|40|31|35|33|34|35|36|38|38|39|40|57|42|43|44|45|46|47|50|49|50|51|52|53|54|56|56|57|0\n65|64|62|62|60|60|58|58|57|56|55|55|54|52|51|51|53|67|50|48|48|44|43|42|42|41|40|40|46|38|38|37|36|36|69|37|39|39|47|41|45|43|44|45|46|47|49|49|50|68|52|53|54|66|56|57|59|59|61|61|63|63|64|65|66|67|68|69|0\n21|20|18|18|17|16|15|15|14|13|13|23|14|22|16|17|19|19|20|21|22|23|0\n89|88|88|85|85|84|84|87|91|79|78|78|80|76|76|75|72|72|73|71|70|70|82|69|67|66|64|62|62|61|60|58|57|57|59|65|56|55|54|53|52|51|50|49|48|48|93|49|50|51|52|53|54|55|56|68|58|59|60|61|63|63|64|65|66|67|68|69|83|71|74|73|74|75|77|77|81|79|80|81|82|83|92|86|86|87|90|89|90|91|92|93|0\n59|59|58|57|57|56|55|55|62|63|54|53|53|65|66|67|52|50|49|49|48|47|45|45|44|41|40|40|39|38|38|37|36|36|69|37|43|39|42|41|42|43|44|46|46|47|48|51|50|51|52|68|54|64|56|61|58|60|60|61|62|63|64|65|66|67|68|69|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n31|29|29|30|28|27|27|25|24|23|21|21|19|19|18|18|26|20|20|22|22|23|24|25|26|33|28|32|30|31|32|33|0\n39|36|35|34|33|32|32|31|30|29|28|27|24|23|22|22|21|21|26|38|25|23|24|25|26|27|28|29|30|31|37|33|34|35|36|37|38|39|0\n25|24|23|20|20|19|18|15|15|16|14|14|22|17|16|17|18|19|21|21|22|23|24|25|0\n7|5|5|6|6|7|0\n49|49|48|48|47|45|44|43|42|41|40|39|39|38|36|35|34|34|32|30|30|29|27|27|28|33|28|29|31|31|32|33|37|35|36|37|38|46|40|41|42|43|44|45|46|47|51|50|50|51|0\n49|46|45|45|43|43|44|42|40|40|36|36|37|35|33|33|32|31|30|29|27|27|26|26|39|28|28|29|30|31|32|34|34|35|38|37|38|39|41|41|42|48|44|47|46|47|48|49|0\n46|44|44|45|43|42|41|38|37|35|35|34|34|39|33|31|31|32|29|28|28|27|26|26|49|27|30|29|30|48|32|33|40|36|36|37|38|39|40|41|42|43|47|45|46|47|48|49|0\n38|37|36|36|33|31|31|32|30|28|26|25|25|27|24|23|22|21|21|35|22|23|24|29|26|27|28|29|30|34|32|33|34|35|39|37|38|39|0\n64|63|63|62|60|60|57|57|56|54|53|53|52|51|47|47|46|45|45|49|44|43|42|39|39|38|37|37|36|34|34|35|59|35|36|41|38|40|40|41|42|43|44|50|46|48|48|49|50|51|52|55|54|55|56|58|58|59|61|61|62|65|64|65|0\n20|19|18|16|16|15|14|13|12|12|21|13|14|15|17|17|18|19|20|21|0\n61|56|55|54|53|53|57|58|52|51|50|45|45|42|41|41|40|39|39|38|37|37|47|36|36|34|34|33|32|32|60|33|35|35|49|48|38|44|40|43|42|43|44|46|46|47|48|49|50|51|52|59|54|55|56|57|58|59|60|61|0\n36|35|33|33|32|32|37|31|30|28|28|27|25|25|24|23|22|21|21|39|22|23|24|26|26|27|29|29|30|31|38|34|34|35|36|37|38|39|0\n22|22|21|19|18|16|15|14|14|13|13|20|17|15|16|17|18|19|20|21|23|23|0\n46|45|44|43|42|42|41|39|39|36|36|34|33|33|32|30|29|29|28|27|26|25|25|38|26|27|28|31|30|31|32|35|34|35|37|37|38|40|40|41|47|43|44|45|46|47|0\n33|32|30|30|29|27|27|26|26|34|35|25|23|23|21|21|20|20|37|22|22|24|24|25|36|28|28|29|31|31|32|33|34|35|36|37|0\n13|10|10|11|12|9|9|15|14|11|12|13|14|15|0\n12|10|8|8|9|11|13|9|10|11|12|13|0\n52|51|50|49|48|47|45|45|44|43|43|42|41|39|38|35|34|34|36|33|32|31|30|29|28|28|40|29|30|31|32|33|37|35|36|37|38|39|40|41|42|53|44|46|46|47|48|49|50|51|52|53|0\n25|24|23|22|21|19|14|14|15|16|17|18|20|15|16|17|18|19|20|21|22|23|24|25|0\n29|26|25|23|22|21|21|24|20|18|18|17|16|16|28|17|19|19|20|27|22|23|24|25|26|27|28|29|0\n23|22|21|20|20|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0\n59|59|60|58|57|56|55|55|62|53|51|51|50|49|48|47|43|42|42|41|40|40|45|39|37|37|34|34|35|33|33|54|36|35|36|38|38|39|46|41|44|43|44|45|46|47|48|49|50|52|52|53|54|63|56|57|58|61|60|61|62|63|0\n24|24|23|22|22|26|27|20|20|19|18|16|16|17|29|17|18|19|21|21|28|23|25|25|26|27|28|29|0\n57|57|56|54|54|53|47|46|46|48|45|44|43|43|50|51|42|41|40|40|37|37|36|35|33|33|32|31|31|39|32|34|34|35|36|38|38|39|59|41|42|52|44|45|49|47|48|49|50|51|52|53|55|55|56|58|58|59|0\n60|60|59|58|57|56|54|54|55|62|63|52|51|51|50|46|45|45|43|43|44|48|42|40|40|39|38|37|36|34|34|35|65|35|36|37|38|39|41|41|42|49|44|47|46|47|48|49|50|53|52|53|64|55|56|57|58|59|61|61|62|63|64|65|0\n54|53|52|51|49|49|48|47|45|45|44|42|42|43|41|39|39|37|36|35|34|33|32|31|30|29|29|38|30|31|32|33|34|35|36|37|38|40|40|41|55|43|44|46|46|47|48|50|50|51|52|53|54|55|0\n36|34|34|33|30|30|31|29|29|37|28|27|26|24|24|23|21|21|22|39|22|23|25|25|26|27|28|38|32|31|32|33|35|35|36|37|38|39|0\n18|18|16|15|14|13|12|11|11|17|12|13|14|15|16|17|19|19|0\n34|33|33|32|30|27|26|25|25|28|24|23|22|21|20|19|19|31|20|21|22|23|24|29|26|27|28|29|30|31|32|35|34|35|0\n25|25|26|23|22|20|18|17|16|16|19|15|15|24|21|17|18|19|20|21|22|23|24|27|26|27|0\n42|42|39|38|37|36|36|35|33|33|32|31|30|29|28|26|26|25|24|23|23|41|24|25|27|27|28|29|30|31|32|34|34|35|40|37|38|39|40|41|43|43|0\n23|22|20|17|16|16|14|14|15|13|13|21|19|15|18|17|18|19|20|21|22|23|0\n55|53|53|49|49|48|46|45|45|44|44|43|42|40|39|38|38|34|34|35|36|33|32|30|30|29|29|52|31|31|32|33|37|35|36|37|41|39|40|41|42|43|51|47|46|47|48|50|50|51|52|54|54|55|0\n39|38|37|36|35|35|40|41|29|29|27|26|26|28|31|25|25|33|24|23|23|43|24|34|32|27|28|30|30|31|32|33|34|42|36|37|38|39|40|41|42|43|0\n65|64|63|62|61|61|66|67|60|58|58|56|54|51|51|49|49|50|53|48|47|46|45|45|44|42|41|41|40|39|38|37|36|36|69|37|38|39|40|43|42|43|44|57|46|47|48|55|50|52|52|53|54|55|56|57|59|59|60|68|62|63|64|65|66|67|68|69|0\n88|87|86|86|85|83|82|79|78|78|80|77|76|75|75|74|71|70|68|67|67|66|66|65|64|63|60|60|61|59|58|56|54|54|53|52|51|50|49|48|48|47|46|46|73|47|57|49|50|51|52|53|55|55|56|57|58|59|62|61|62|63|64|65|72|69|68|69|70|71|72|73|74|84|76|77|81|79|80|81|82|83|84|85|89|87|88|89|0\n25|21|21|20|19|19|18|16|16|15|14|14|24|15|17|17|18|23|20|22|22|23|24|25|0\n15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0\n59|56|56|55|51|51|50|49|48|47|45|44|43|43|42|41|40|40|53|39|37|36|35|35|34|33|31|31|32|58|32|33|34|38|36|37|38|39|54|41|42|46|44|45|46|47|48|49|50|52|52|53|54|55|57|57|58|59|0\n43|42|41|41|44|45|40|39|38|37|36|35|34|33|32|31|29|29|28|27|26|25|25|47|26|27|28|30|30|31|32|33|34|35|36|37|38|39|40|46|42|43|44|45|46|47|0\n19|17|15|14|14|13|12|11|11|18|12|13|16|15|16|17|18|19|0\n8|8|7|6|6|7|9|9|0\n34|32|32|31|29|29|28|26|26|27|25|24|22|20|20|19|19|23|21|21|22|23|24|25|35|27|28|30|30|31|33|33|34|35|0\n52|49|49|50|51|47|46|43|42|41|40|38|37|36|36|34|34|33|32|32|44|31|30|29|28|28|48|29|30|31|45|33|35|35|39|37|38|39|40|41|42|43|44|45|46|47|48|53|50|51|52|53|0\n19|19|20|18|17|16|16|22|23|15|14|14|25|15|24|17|18|21|20|21|22|23|24|25|0\n50|48|48|49|47|45|44|44|39|38|37|37|40|41|35|35|32|32|33|31|29|28|28|27|27|43|30|29|30|31|34|33|34|36|36|42|38|39|40|41|42|43|46|45|46|47|51|49|50|51|0\n71|69|69|70|68|62|62|63|61|61|65|66|60|60|59|58|56|54|53|52|51|50|50|49|48|46|45|45|44|43|41|41|40|39|38|38|57|39|40|42|42|43|44|47|46|47|48|49|55|51|52|53|54|55|56|57|58|59|73|67|64|63|64|65|66|67|68|72|70|71|72|73|0\n36|35|34|34|31|30|29|28|28|32|27|27|38|39|26|25|24|22|22|23|41|23|24|25|26|40|33|29|30|31|32|33|37|35|36|37|38|39|40|41|0\n37|34|32|32|33|31|29|28|28|25|24|24|22|22|23|21|20|20|36|21|27|23|26|25|26|27|30|29|30|31|35|33|34|35|36|37|0\n21|19|19|17|14|14|13|13|12|12|18|16|15|15|16|17|18|20|20|21|0\n43|43|42|39|39|40|38|38|36|34|34|33|32|30|30|29|28|25|25|26|24|24|37|27|26|27|28|29|31|31|32|33|35|35|36|37|45|41|40|41|42|44|44|45|0\n8|6|6|7|9|7|8|9|0\n35|33|27|27|28|26|25|25|30|31|23|22|22|21|20|19|19|34|20|21|24|23|24|32|26|29|28|29|30|31|32|33|34|35|0\n34|34|31|31|29|29|28|28|27|27|36|37|26|24|24|23|22|21|21|39|22|23|25|25|26|38|33|30|30|32|32|33|35|35|36|37|38|39|0\n23|23|22|21|21|18|18|17|16|14|14|15|20|15|16|17|19|19|20|25|22|24|24|25|0\n25|25|26|24|23|22|21|21|28|19|18|17|16|16|20|17|18|19|20|29|22|23|24|27|26|27|28|29|0\n35|35|34|33|33|29|29|28|26|25|25|24|24|23|20|20|21|22|32|21|22|23|31|27|26|27|28|30|30|31|32|37|34|36|36|37|0\n4|4|5|5|0\n42|38|38|37|36|36|40|35|35|33|33|31|29|29|28|27|24|24|25|23|23|32|26|25|26|27|28|30|30|31|32|34|34|43|41|37|39|39|40|41|42|43|0\n34|33|33|32|29|29|28|27|26|25|24|22|20|20|21|19|19|31|23|21|22|23|24|25|26|27|28|30|30|31|32|35|34|35|0\n44|43|42|41|40|39|39|38|33|32|32|34|31|29|29|28|28|36|26|25|24|24|27|25|26|27|37|30|30|31|35|33|34|35|36|37|38|45|40|41|42|43|44|45|0\n11|8|7|7|9|10|8|9|10|11|0\n8|8|6|6|7|7|9|9|0\n19|19|16|16|15|15|18|13|12|12|14|13|14|21|17|17|18|20|20|21|0\n19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0\n61|58|56|55|55|54|53|53|52|51|50|47|47|46|45|44|42|42|41|41|40|39|38|37|35|35|34|33|32|32|60|33|34|36|36|37|38|39|40|49|43|43|44|45|46|48|48|49|50|51|52|59|54|57|56|57|58|59|60|61|0\n27|25|24|24|22|21|19|19|18|17|16|15|15|23|16|17|18|20|20|21|22|23|26|25|26|27|0\n12|12|9|8|8|10|11|9|10|11|13|13|0\n45|43|42|42|35|35|36|34|33|33|38|39|31|30|30|29|27|27|26|25|24|24|41|25|26|28|28|29|32|31|32|40|34|37|36|37|38|39|40|41|44|43|44|45|0\n49|47|45|44|42|41|40|40|39|38|35|34|33|33|36|32|32|31|30|29|28|27|26|26|48|27|28|29|30|31|46|37|34|35|36|37|38|39|43|41|42|43|44|45|46|47|48|49|0\n28|28|26|25|23|22|21|21|20|18|18|17|16|16|27|17|19|19|20|24|22|23|24|25|26|27|29|29|0\n28|28|27|24|24|25|22|20|20|19|18|16|16|17|23|17|18|19|21|21|22|23|26|25|26|27|29|29|0\n21|20|19|18|17|15|14|13|12|12|16|13|14|15|16|17|18|19|20|21|0\n23|21|21|20|19|19|24|25|17|17|16|15|15|27|16|18|18|26|20|22|22|23|24|25|26|27|0\n56|55|55|54|52|52|51|49|49|50|48|46|46|45|43|43|42|41|40|40|39|38|37|34|34|35|32|32|31|31|33|33|36|35|36|37|38|39|59|41|42|44|44|45|47|47|48|58|50|51|53|53|54|57|56|57|58|59|0\n34|34|33|32|31|30|29|28|27|27|36|37|25|25|23|23|22|21|21|39|22|24|24|26|26|38|28|29|30|31|32|33|35|35|36|37|38|39|0\n47|45|43|43|42|41|37|35|35|36|34|33|33|39|32|29|29|28|28|27|26|25|25|46|26|27|31|30|30|31|32|40|34|38|36|37|38|39|40|41|42|44|44|45|46|47|0\n28|27|27|26|23|21|21|20|20|19|18|17|16|16|25|17|18|19|24|22|22|23|24|25|26|29|28|29|0\n65|62|60|60|61|59|58|57|54|49|49|48|47|47|51|52|46|46|45|44|43|42|42|41|39|38|37|37|36|35|34|34|64|35|36|40|38|39|40|41|56|43|44|45|55|53|48|50|50|51|52|53|54|55|56|57|58|59|63|61|62|63|64|65|0\n34|33|31|30|29|27|27|28|32|26|24|23|23|21|20|19|19|22|20|21|22|25|24|25|26|35|28|29|30|31|32|33|34|35|0\n34|33|33|29|28|28|30|27|26|24|23|23|22|21|20|19|19|32|20|21|22|25|24|25|26|27|31|29|30|31|32|35|34|35|0\n51|49|49|48|48|52|53|47|45|45|44|43|42|41|40|39|38|37|35|34|33|32|31|29|29|30|36|55|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|46|46|47|54|50|50|51|52|53|54|55|0\n28|27|27|23|22|22|24|21|20|19|18|16|16|17|26|17|18|19|20|21|25|23|24|25|26|29|28|29|0\n30|30|29|27|26|25|23|23|22|20|20|19|18|17|17|28|18|19|21|21|22|24|24|25|26|27|28|29|31|31|0\n63|61|56|56|55|54|53|52|52|58|59|51|50|49|47|47|46|42|42|43|44|40|39|39|38|37|35|34|34|33|33|62|36|35|36|37|38|41|40|41|45|43|44|45|46|48|48|49|50|51|60|53|54|55|57|57|58|59|60|61|62|63|0\n35|34|33|32|31|30|28|27|27|26|25|24|23|22|21|20|19|19|20|21|22|23|24|25|26|29|28|29|30|31|32|33|34|35|0\n26|23|23|21|19|19|18|17|17|22|15|15|16|27|16|25|18|20|20|21|22|24|24|25|26|27|0\n52|51|50|50|48|48|46|46|45|44|43|43|54|55|41|41|40|39|38|35|35|36|33|32|32|31|30|30|57|31|34|33|34|37|36|37|38|39|40|42|42|56|44|45|47|47|49|49|53|51|52|53|54|55|56|57|0\n22|21|18|18|19|17|16|15|14|13|13|23|14|15|16|17|20|19|20|21|22|23|0\n44|43|41|41|42|39|39|38|37|37|46|47|36|35|34|32|31|31|30|28|28|27|26|26|49|27|29|29|30|33|32|33|34|35|36|48|38|40|40|45|42|43|44|45|46|47|48|49|0\n18|18|17|16|16|15|14|13|12|12|21|13|14|15|20|17|19|19|20|21|0\n58|57|57|56|56|60|61|55|54|51|50|50|49|48|48|46|45|44|43|42|41|40|40|39|38|37|36|34|33|33|35|63|34|35|36|37|38|39|47|41|42|43|44|45|46|47|53|49|52|51|52|53|54|55|62|59|58|59|60|61|62|63|0\n39|39|38|37|36|35|32|32|33|30|26|26|27|25|25|29|24|23|22|22|41|23|24|31|28|27|28|29|30|31|34|33|34|35|36|37|38|40|40|41|0\n55|53|53|49|48|47|46|45|44|44|42|42|40|39|38|37|37|36|35|34|33|32|30|29|29|31|51|52|30|31|32|33|34|35|36|41|38|39|40|41|43|43|50|45|46|47|48|49|50|51|52|54|54|55|0\n42|39|38|38|37|36|36|41|43|35|34|33|32|31|28|28|27|27|26|24|24|25|45|25|26|30|29|29|30|31|32|33|34|35|44|37|40|39|40|41|42|43|44|45|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n54|52|51|51|50|50|49|48|43|42|42|41|38|37|37|39|36|36|45|35|34|33|32|31|30|29|29|47|30|31|32|33|34|35|46|40|38|39|40|41|44|43|44|45|46|47|48|49|55|53|52|53|54|55|0\n35|32|32|33|34|31|30|30|27|26|25|25|23|23|22|21|20|20|29|21|22|24|24|28|26|27|28|29|37|31|36|33|34|35|36|37|0\n33|31|29|27|27|28|26|25|24|23|22|21|20|19|18|18|32|19|20|21|22|23|24|25|26|30|28|29|30|31|32|33|0\n21|20|19|16|16|15|14|13|12|12|18|13|14|15|17|17|18|19|20|21|0\n52|51|50|50|49|43|43|44|41|41|40|40|46|38|37|37|36|34|34|33|32|31|30|29|28|28|48|29|30|31|32|33|35|35|36|39|38|39|47|42|42|45|44|45|46|47|48|49|53|51|52|53|0\n26|25|25|27|23|23|22|22|19|19|17|17|16|16|21|18|18|20|20|21|29|24|24|28|26|27|28|29|0\n34|33|31|31|30|30|28|27|26|25|23|22|22|21|20|19|19|29|20|21|24|23|24|25|26|27|28|29|35|32|32|33|34|35|0\n44|42|41|41|40|39|38|38|45|37|35|34|33|32|31|31|30|29|28|27|26|25|25|47|26|27|28|29|30|36|32|33|34|35|36|37|46|39|40|43|42|43|44|45|46|47|0\n44|43|42|39|39|40|41|38|37|35|34|34|31|29|28|28|27|26|26|25|24|24|33|25|32|27|30|29|30|31|32|33|36|35|36|37|38|45|40|41|42|43|44|45|0\n47|46|41|39|39|38|37|36|36|42|43|35|34|32|31|30|30|29|28|27|26|25|25|45|26|27|28|29|33|31|32|33|34|35|44|37|38|40|40|41|42|43|44|45|46|47|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n36|35|35|37|34|34|39|40|32|32|33|42|43|29|29|28|26|26|27|24|24|25|45|25|31|27|28|30|30|31|44|33|41|38|36|37|38|39|40|41|42|43|44|45|0\n27|25|24|23|22|21|18|18|19|17|16|15|15|26|16|17|20|19|20|21|22|23|24|25|26|27|0\n11|10|9|8|7|7|8|9|10|11|0\n40|38|38|37|36|36|35|33|33|32|32|42|43|29|29|30|28|27|26|25|24|24|45|25|26|27|28|31|30|31|44|34|34|35|41|37|39|39|40|41|42|43|44|45|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n60|56|56|57|55|55|54|54|53|50|50|49|49|48|46|46|45|44|44|62|63|43|42|40|39|38|38|37|36|35|34|34|65|35|36|37|41|39|40|41|42|43|64|45|47|47|48|52|51|51|52|53|61|59|58|57|58|59|60|61|62|63|64|65|0\n24|22|22|21|21|20|18|18|16|15|14|14|17|15|16|17|19|19|20|25|23|23|24|25|0\n23|21|21|20|19|19|24|25|18|16|16|15|15|27|17|17|18|26|20|22|22|23|24|25|26|27|0\n23|22|21|19|18|17|16|15|14|13|13|20|14|15|16|17|18|19|20|21|22|23|0\n27|24|24|23|22|20|20|19|17|17|16|15|15|26|16|18|18|19|21|21|22|23|25|25|26|27|0\n42|41|41|43|39|36|36|37|38|34|34|33|32|32|29|29|28|26|25|25|24|24|31|27|26|27|28|30|30|31|45|33|35|35|40|37|38|39|40|44|42|43|44|45|0\n13|12|11|10|10|9|9|15|14|11|12|13|14|15|0\n56|54|54|55|52|48|48|47|46|43|43|42|41|41|40|36|36|37|35|34|34|39|50|33|32|30|30|31|53|31|32|33|51|35|38|37|38|39|40|45|42|44|44|45|46|47|49|49|50|51|52|53|57|55|56|57|0\n18|18|19|17|17|21|15|15|16|14|13|13|14|23|16|22|20|19|20|21|22|23|0\n21|21|20|15|15|16|14|14|18|13|13|23|19|17|16|17|18|19|20|22|22|23|0\n45|41|41|42|38|38|39|37|35|35|32|32|31|31|30|28|27|27|26|25|24|24|44|25|26|29|28|29|30|34|33|33|34|36|36|37|40|39|40|43|42|43|44|45|0\n76|75|75|73|72|70|70|68|68|67|66|65|63|62|60|60|59|58|57|57|56|54|54|53|52|51|50|48|47|45|45|44|43|43|42|40|40|41|74|41|42|49|44|46|46|47|48|49|50|51|52|53|55|55|56|64|58|59|61|61|62|63|64|65|66|67|69|69|71|71|72|73|74|77|76|77|0\n55|52|52|51|50|49|47|46|45|42|42|41|41|40|38|37|37|39|36|33|32|32|34|31|30|29|29|54|30|31|35|33|34|35|36|48|38|39|40|44|43|43|44|45|46|47|48|49|50|51|53|53|54|55|0\n74|72|72|71|70|69|68|67|66|65|64|63|62|60|60|59|57|56|55|55|54|53|53|52|51|48|48|47|46|45|42|41|41|40|40|39|39|50|44|43|42|43|44|45|46|47|49|49|50|51|52|75|54|58|56|57|58|59|61|61|62|63|64|65|66|67|68|69|70|71|73|73|74|75|0\n61|58|58|57|56|55|54|53|51|50|50|49|44|43|43|45|41|40|40|39|38|37|37|47|35|34|34|33|32|32|60|33|36|35|36|48|38|39|42|41|42|46|44|45|46|47|48|49|52|51|52|53|54|55|56|57|59|59|60|61|0\n47|46|46|45|44|43|42|42|40|39|38|36|32|32|31|31|34|28|28|29|27|27|26|26|41|37|30|29|30|35|33|33|34|35|36|37|38|39|40|41|49|43|44|45|48|47|48|49|0\n40|39|37|37|36|34|34|33|32|32|31|30|28|26|25|24|24|23|22|22|29|23|27|25|26|27|28|29|30|31|41|33|35|35|36|38|38|39|40|41|0\n92|91|88|88|87|87|86|85|85|84|82|82|80|79|78|75|74|72|68|67|67|66|65|65|70|63|63|62|61|61|60|59|56|56|57|55|54|52|52|51|50|50|76|49|48|48|81|49|77|51|53|53|54|55|58|57|58|59|60|73|62|64|64|71|66|69|68|69|70|71|72|73|74|75|76|77|78|79|80|81|83|83|84|93|86|90|89|89|90|91|92|93|0\n40|39|39|41|38|38|43|35|35|34|33|33|32|29|29|30|27|27|26|25|24|24|45|25|26|28|28|31|30|31|32|37|34|36|36|37|44|42|40|41|42|43|44|45|0\n50|47|45|45|46|44|44|43|41|41|40|40|39|38|33|33|32|32|35|30|30|29|28|27|27|37|28|29|31|31|36|34|34|35|36|37|38|39|51|42|42|43|49|48|46|47|48|49|50|51|0\n11|9|8|7|7|10|8|9|10|11|0\n27|27|26|25|25|23|21|21|19|19|18|17|16|16|24|17|18|20|20|22|22|23|24|29|26|28|28|29|0\n23|21|20|18|16|16|17|14|13|13|15|22|14|15|19|17|18|19|20|21|22|23|0\n19|18|15|15|12|11|11|13|14|17|12|13|14|16|16|17|18|19|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n32|31|29|28|27|26|26|25|24|24|33|22|22|21|20|19|19|35|20|21|23|23|34|25|30|27|28|29|30|31|32|33|34|35|0\n35|34|33|32|31|30|30|36|37|28|27|27|25|25|23|23|22|21|21|39|22|24|24|26|26|29|28|29|38|31|32|33|34|35|36|37|38|39|0\n23|23|22|21|21|19|18|16|15|15|14|14|20|17|16|17|18|19|20|25|22|24|24|25|0\n33|31|31|30|28|28|27|26|25|25|34|35|24|23|22|21|20|20|37|21|22|23|24|36|26|27|29|29|30|32|32|33|34|35|36|37|0\n61|61|62|60|59|58|58|64|55|55|56|53|49|49|50|51|48|47|47|46|45|44|44|66|67|43|41|40|40|39|37|36|36|38|69|37|38|39|42|41|42|43|68|45|46|54|48|52|50|51|52|53|54|57|56|57|65|59|60|63|62|63|64|65|66|67|68|69|0\n69|67|65|65|64|56|56|55|53|53|54|58|52|51|50|49|49|60|48|47|45|45|44|42|42|41|40|40|62|39|38|37|36|36|68|37|38|39|63|41|43|43|44|46|46|47|48|61|50|51|52|59|54|55|57|57|58|59|60|61|62|63|64|66|66|67|68|69|0\n87|86|85|84|83|82|81|80|79|78|76|76|73|73|74|72|71|70|69|69|68|67|66|63|63|64|62|62|61|60|59|55|54|54|53|52|51|49|48|48|46|46|47|57|58|47|50|49|50|51|52|53|56|55|56|57|58|59|60|61|89|65|64|65|66|67|68|88|70|71|72|75|74|75|77|77|78|79|80|81|82|83|84|85|86|87|88|89|0\n56|55|55|51|51|50|48|47|46|46|45|44|43|42|41|40|39|38|36|34|33|33|32|32|31|30|30|53|54|31|37|35|34|35|36|37|38|39|40|41|42|43|44|45|49|47|48|49|50|52|52|53|54|57|56|57|0\n49|47|46|40|39|38|38|41|42|43|44|45|37|34|34|35|30|30|28|28|27|26|26|32|33|27|29|29|31|31|32|33|36|35|36|37|48|39|40|41|42|43|44|45|46|47|48|49|0\n42|41|40|39|38|38|37|35|34|33|32|28|28|26|26|25|25|24|23|23|31|36|24|30|27|27|29|29|30|31|32|33|34|35|36|37|43|39|40|41|42|43|0\n19|16|16|17|14|13|12|11|11|15|12|13|14|15|18|17|18|19|0\n67|65|64|61|61|58|58|59|60|57|56|54|53|52|52|51|47|46|46|48|49|44|43|43|45|41|40|39|38|37|36|35|35|42|36|37|38|39|40|41|42|66|44|45|50|47|48|49|50|51|55|53|54|55|56|57|63|59|60|62|62|63|64|65|66|67|0\n38|37|35|35|33|33|32|30|29|29|28|27|26|26|25|24|22|21|21|23|22|23|24|25|39|27|28|31|30|31|32|34|34|36|36|37|38|39|0\n31|28|27|27|25|25|24|20|19|19|18|18|22|17|17|30|23|21|20|21|22|23|24|26|26|29|28|29|30|31|0\n37|37|36|35|34|33|32|31|31|29|27|27|26|24|23|22|22|21|21|30|25|23|24|25|26|28|28|29|30|39|32|33|34|35|36|38|38|39|0\n35|34|34|33|32|32|31|28|27|27|26|26|24|23|22|20|20|21|25|21|22|23|24|25|30|29|28|29|30|31|37|33|36|35|36|37|0\n26|25|24|24|23|22|20|19|17|17|16|15|15|21|16|18|18|19|20|21|22|23|27|25|26|27|0\n62|60|59|59|58|54|54|52|52|51|50|49|49|56|48|47|46|46|63|45|42|40|40|39|39|43|37|37|36|35|34|34|65|35|36|38|38|44|41|41|42|43|44|45|64|47|48|57|50|51|53|53|55|55|56|57|58|61|60|61|62|63|64|65|0\n40|40|39|37|36|35|34|33|32|32|31|28|28|27|26|24|23|23|22|22|30|25|24|25|26|27|29|29|30|31|38|33|34|35|36|37|38|39|41|41|0\n26|26|25|25|28|24|22|21|20|17|17|18|16|16|23|19|18|19|20|21|22|23|24|29|27|27|28|29|0\n13|11|9|9|8|8|12|10|10|11|12|13|0\n32|32|28|28|27|26|26|24|23|22|22|20|20|19|18|18|31|19|21|21|25|23|24|25|30|27|29|29|30|31|33|33|0\n8|8|7|6|6|7|9|9|0\n70|68|67|67|66|64|63|63|62|61|61|60|59|57|56|54|54|53|49|48|46|46|45|45|44|43|42|42|51|40|40|39|38|37|37|58|38|39|41|41|52|43|44|50|47|47|48|49|50|51|52|53|55|55|56|57|58|59|60|71|62|65|64|65|66|69|68|69|70|71|0\n48|47|46|46|44|43|42|42|41|40|40|50|51|39|37|37|35|34|33|33|32|31|30|29|28|28|53|29|30|31|32|36|34|35|36|38|38|39|52|41|45|43|44|45|49|47|48|49|50|51|52|53|0\n52|50|49|49|48|47|46|46|45|45|54|44|41|41|42|40|39|38|37|36|35|34|33|33|32|31|30|30|57|31|32|56|34|35|36|37|38|39|40|43|42|43|44|55|53|47|48|51|50|51|52|53|54|55|56|57|0\n50|49|48|47|46|45|44|41|41|42|39|39|40|38|37|35|30|27|27|28|29|31|32|33|34|36|28|29|30|31|32|33|34|35|36|37|38|51|40|43|42|43|44|45|46|47|48|49|50|51|0\n15|14|14|16|12|11|10|10|13|11|12|13|17|15|16|17|0\n35|31|30|30|32|29|27|26|25|25|24|23|21|21|20|19|19|34|20|22|22|23|24|28|26|27|28|29|33|31|32|33|34|35|0\n32|31|30|29|28|27|27|25|23|22|21|21|20|18|18|19|26|19|20|24|22|23|24|25|26|33|28|29|30|31|32|33|0\n37|37|36|36|35|35|40|32|31|31|30|28|28|27|26|25|24|22|22|23|34|23|24|25|26|27|29|29|30|33|32|33|34|41|39|38|38|39|40|41|0\n44|42|41|40|40|39|38|37|36|35|34|33|33|31|30|29|27|26|26|25|24|24|32|25|28|27|28|29|30|31|32|45|34|35|36|37|38|39|43|41|42|43|44|45|0\n55|54|52|51|48|47|45|44|44|43|43|49|42|40|39|38|37|37|36|35|34|32|32|31|30|29|29|53|30|31|33|33|34|35|36|41|38|39|40|41|42|50|46|45|46|47|48|49|50|51|52|53|54|55|0\n21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0\n48|47|46|43|43|44|42|41|40|40|39|38|36|30|29|29|31|32|33|34|28|27|26|26|37|27|28|35|30|31|32|33|34|35|36|37|38|39|49|41|42|45|44|45|46|47|48|49|0\n60|60|59|59|62|63|57|56|55|55|49|48|48|50|51|52|53|47|46|44|42|41|40|40|39|39|38|37|36|35|34|34|65|35|36|37|38|45|43|41|42|43|44|45|46|47|54|49|50|51|52|53|54|58|56|57|58|64|61|61|62|63|64|65|0\n32|32|31|30|30|28|27|27|26|24|23|23|25|35|22|21|20|20|37|21|22|36|24|25|26|29|28|29|34|31|33|33|34|35|36|37|0\n60|59|58|57|57|56|53|53|54|55|62|63|52|51|50|48|47|47|46|45|44|43|42|40|39|39|38|37|36|34|34|35|65|35|36|37|38|41|40|41|42|43|44|45|46|49|48|49|50|51|52|64|54|55|56|61|58|59|60|61|62|63|64|65|0\n25|25|26|22|22|20|20|19|18|17|15|15|16|24|16|17|18|19|21|21|23|23|24|27|26|27|0\n52|50|50|49|48|47|46|46|45|44|40|38|38|39|41|37|36|34|33|33|32|31|29|29|28|28|43|30|30|31|32|35|34|35|36|37|42|39|40|41|42|43|44|45|53|47|48|49|51|51|52|53|0\n26|25|25|27|24|23|22|21|21|20|19|18|17|16|16|17|18|19|20|29|22|23|24|28|26|27|28|29|0\n52|52|49|49|47|47|46|43|42|42|44|40|38|38|37|36|35|35|34|32|32|31|29|29|28|28|51|30|30|31|33|33|34|41|36|37|39|39|40|41|45|43|44|45|46|48|48|50|50|51|53|53|0\n25|23|22|21|20|18|17|16|14|14|15|19|24|15|16|17|18|19|20|21|22|23|24|25|0\n22|21|20|20|19|17|16|16|15|13|13|14|14|15|18|17|18|19|23|21|22|23|0\n84|83|83|82|81|79|79|78|78|86|87|74|71|71|70|68|68|67|66|65|65|64|63|62|61|60|60|75|76|58|57|57|55|55|54|52|52|51|49|49|48|47|46|46|89|47|48|50|50|51|53|53|54|56|56|59|58|59|77|61|62|63|64|73|66|67|69|69|70|72|72|73|74|75|76|77|88|80|80|81|82|85|84|85|86|87|88|89|0\n22|21|20|20|23|19|18|17|16|15|14|14|25|15|16|17|18|19|24|21|22|23|24|25|0\n35|33|32|31|29|28|28|27|27|24|24|22|22|21|19|19|20|26|20|21|23|23|25|25|26|34|30|29|30|31|32|33|34|35|0\n30|30|28|26|25|24|23|23|22|21|20|19|18|17|17|29|18|19|20|21|22|27|24|25|26|27|28|29|31|31|0\n38|37|36|36|39|40|33|33|31|31|30|28|27|27|26|25|24|23|22|22|35|23|24|25|26|29|28|29|30|32|32|34|34|35|41|37|38|39|40|41|0\n17|16|16|14|14|13|12|11|11|19|12|13|15|15|18|17|18|19|0\n77|77|76|75|75|79|73|71|71|70|69|68|68|67|66|64|64|63|61|59|59|58|57|57|56|55|54|51|51|50|49|48|48|47|46|44|44|43|42|42|81|43|45|45|46|47|53|49|50|52|52|53|54|55|56|62|58|60|60|61|62|63|65|65|66|67|74|69|70|72|72|73|74|80|76|78|78|79|80|81|0\n9|8|6|6|7|7|8|9|0\n39|38|37|37|40|36|32|32|33|31|30|30|28|28|27|26|26|42|25|24|23|23|24|25|43|27|29|29|35|31|34|33|34|35|36|41|38|39|40|41|42|43|0\n55|52|52|51|49|49|48|46|45|44|43|43|42|41|39|35|35|36|37|34|34|33|32|31|29|29|30|54|30|31|32|33|40|38|36|37|38|39|40|41|42|47|44|45|46|47|48|50|50|51|53|53|54|55|0\n24|24|23|21|19|18|18|17|15|15|14|14|22|16|16|17|20|19|20|21|22|23|25|25|0\n24|23|22|21|19|19|18|17|17|15|14|14|16|15|16|25|18|20|20|21|22|23|24|25|0\n48|45|43|42|41|41|40|39|39|46|38|37|34|34|35|33|33|49|32|31|30|30|51|29|28|28|53|29|52|31|32|50|36|35|36|37|38|47|40|44|42|43|44|45|46|47|48|49|50|51|52|53|0\n42|41|41|38|38|37|33|33|32|31|30|30|35|29|28|25|25|26|24|23|23|40|24|27|26|27|28|29|36|31|32|34|34|35|36|37|39|39|40|43|42|43|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n68|68|69|70|66|64|63|63|65|62|60|60|61|72|57|57|55|55|54|53|52|50|49|48|48|47|46|45|43|42|41|40|38|38|39|44|59|39|40|41|42|43|44|45|46|47|51|49|50|51|52|53|54|56|56|58|58|59|73|61|62|67|64|65|66|67|71|69|70|71|72|73|0\n56|55|49|48|48|47|46|46|45|44|44|52|53|43|42|41|40|39|39|36|35|35|34|32|32|31|30|30|38|31|33|33|34|37|36|37|38|57|40|41|42|43|54|45|51|47|50|49|50|51|52|53|54|55|56|57|0\n34|33|33|30|29|27|27|28|26|24|23|23|22|21|19|19|20|32|20|21|22|25|24|25|26|31|28|29|30|31|32|35|34|35|0\n22|22|21|20|19|17|15|14|13|13|16|18|14|15|16|17|18|19|20|21|23|23|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n18|18|17|17|20|21|16|16|14|14|13|13|15|15|23|22|19|19|20|21|22|23|0\n45|43|42|41|38|38|39|37|36|35|34|33|31|30|30|29|27|26|26|24|24|25|44|25|28|27|28|29|32|31|32|33|34|35|36|37|40|39|40|41|42|43|44|45|0\n56|55|53|51|51|50|50|49|48|47|47|45|44|42|41|38|38|39|37|34|33|32|31|31|35|30|30|43|46|36|32|33|34|35|36|37|40|39|40|41|42|43|44|45|46|57|48|49|54|52|52|53|54|55|56|57|0\n49|47|44|44|43|43|42|40|39|39|38|36|36|33|33|32|31|31|30|28|28|27|26|26|48|27|29|29|30|35|32|34|34|35|37|37|38|41|40|41|42|46|45|45|46|47|48|49|0\n53|53|52|52|55|51|49|49|47|47|46|45|44|43|41|41|40|39|37|37|35|35|34|33|32|31|30|30|57|31|32|33|34|36|36|38|38|39|40|42|42|43|44|45|46|48|48|50|50|51|56|54|54|55|56|57|0\n19|18|17|16|15|14|14|13|12|12|21|13|20|15|16|17|18|19|20|21|0\n43|41|39|39|40|42|38|38|37|34|33|32|32|31|31|29|27|27|26|25|24|24|30|25|26|28|28|29|30|36|35|33|34|35|36|37|45|44|40|41|42|43|44|45|0\n50|50|46|45|45|42|42|43|41|40|40|39|38|37|34|33|31|31|32|35|30|29|28|27|27|49|28|29|30|36|32|33|34|35|36|37|38|39|48|41|44|43|44|47|46|47|48|49|51|51|0\n52|51|51|53|50|48|47|46|46|44|42|41|41|40|40|39|38|37|37|35|34|32|31|30|30|29|29|36|33|31|32|33|34|35|36|55|38|39|45|43|42|43|44|45|49|47|48|49|50|54|52|53|54|55|0\n50|49|49|47|46|45|42|42|41|40|39|39|38|37|35|34|34|33|32|31|30|28|28|27|27|48|29|29|30|31|32|33|36|35|36|37|38|44|40|41|43|43|44|45|46|47|48|51|50|51|0\n17|13|13|14|12|12|16|11|11|19|18|15|14|15|16|17|18|19|0\n43|40|40|39|37|36|36|35|33|32|32|31|30|27|26|26|25|24|24|23|23|42|29|25|28|27|28|29|30|31|34|33|34|35|38|37|38|39|41|41|42|43|0\n21|19|18|18|16|15|14|12|12|13|17|13|14|15|16|17|20|19|20|21|0\n40|39|38|36|36|37|35|33|32|32|30|30|31|42|43|28|27|27|26|24|24|25|45|25|26|29|28|29|44|31|34|33|34|35|41|37|38|39|40|41|42|43|44|45|0\n34|34|33|30|29|29|26|26|27|25|24|23|23|21|20|19|19|22|20|21|22|32|24|25|28|27|28|31|30|31|32|33|35|35|0\n13|12|10|10|9|8|8|9|11|11|12|13|0\n12|12|10|8|8|9|11|9|10|11|13|13|0\n15|12|12|10|10|9|9|14|11|11|13|13|14|15|0\n43|40|38|37|36|35|34|33|32|32|39|30|29|29|28|26|25|25|24|23|23|42|24|27|26|27|28|31|30|31|41|33|34|35|36|37|38|39|40|41|42|43|0\n34|34|33|31|29|28|27|26|25|24|24|23|22|21|20|19|19|32|20|21|22|23|30|25|26|27|28|29|30|31|32|33|35|35|0\n31|31|30|29|29|28|27|25|20|20|21|19|19|23|18|18|26|24|22|21|22|23|24|25|26|27|28|33|30|32|32|33|0\n19|16|16|13|13|14|12|11|11|18|12|15|14|15|17|17|18|19|0\n20|18|18|17|17|21|16|14|14|13|13|23|15|15|16|22|19|19|20|21|22|23|0\n15|12|12|11|10|9|9|14|10|11|13|13|14|15|0\n64|63|63|61|60|58|58|56|56|49|48|48|45|45|46|47|51|44|43|41|41|40|39|39|53|54|37|37|36|35|34|34|62|35|36|38|38|55|40|42|42|43|44|52|46|47|50|49|50|51|52|53|54|55|57|57|59|59|60|61|62|65|64|65|0\n31|30|30|29|28|27|27|25|24|23|22|20|20|19|18|18|26|19|21|21|22|23|24|25|26|33|28|29|32|31|32|33|0\n21|20|20|19|16|16|15|15|14|13|13|23|14|18|17|17|18|19|22|21|22|23|0\n31|29|28|27|23|21|20|20|22|24|25|19|17|17|18|30|18|19|26|21|22|23|24|25|26|27|28|29|30|31|0\n58|57|56|53|53|51|51|49|49|50|48|47|47|46|45|44|40|40|41|39|38|34|34|35|36|32|32|31|31|43|33|33|37|35|36|37|38|39|42|41|42|43|44|45|46|59|48|55|50|52|52|54|54|55|56|57|58|59|0\n20|19|18|17|16|15|14|14|12|12|13|13|21|15|16|17|18|19|20|21|0\n33|32|32|31|30|30|35|26|26|25|24|24|28|22|22|21|20|20|37|21|23|23|29|25|27|27|28|29|36|31|34|33|34|35|36|37|0\n41|41|39|38|37|37|36|35|34|33|32|32|43|30|30|29|25|25|26|27|24|24|45|28|26|27|28|29|31|31|44|33|34|35|36|40|38|39|40|42|42|43|44|45|0\n16|14|14|15|17|13|11|11|12|19|12|13|18|15|16|17|18|19|0\n46|44|44|43|42|41|40|40|39|36|36|35|35|31|30|29|29|32|28|26|26|25|25|34|27|27|28|33|30|31|32|33|34|38|37|37|38|39|47|41|42|43|45|45|46|47|0\n24|24|21|21|20|17|17|18|16|15|14|14|23|15|16|19|18|19|20|22|22|23|25|25|0\n17|15|14|13|12|11|10|10|16|11|12|13|14|15|16|17|0\n20|19|19|17|16|15|14|13|12|12|18|13|14|15|16|17|18|21|20|21|0\n42|41|40|39|38|37|36|35|34|33|33|43|32|29|29|28|26|24|24|25|27|31|45|25|26|27|28|30|30|31|32|44|34|35|36|37|38|39|40|41|42|43|44|45|0\n69|69|68|68|67|67|72|66|65|64|63|62|61|59|59|58|56|56|55|54|53|52|52|74|75|49|48|48|47|46|46|45|44|42|42|40|40|41|77|41|43|43|44|45|51|47|50|49|50|51|76|53|54|55|57|57|58|60|60|61|62|63|64|65|66|73|71|70|70|71|72|73|74|75|76|77|0\n6|6|5|5|7|7|0\n84|83|82|80|80|79|74|73|73|72|71|71|76|77|69|68|68|67|66|66|65|63|63|61|55|55|54|54|53|52|50|49|48|48|51|47|46|46|59|45|44|44|62|45|60|47|58|49|50|51|52|53|57|56|56|57|58|59|60|61|62|64|64|65|85|67|70|69|70|78|72|75|74|75|76|77|78|79|81|81|82|83|84|85|0\n19|16|16|13|12|12|14|11|11|18|15|13|14|15|17|17|18|19|0\n23|23|21|21|22|20|18|18|15|15|14|14|17|16|16|17|19|19|20|25|22|24|24|25|0\n15|14|14|16|17|13|12|11|11|19|12|13|18|15|16|17|18|19|0\n24|24|23|20|19|18|17|16|15|15|14|14|22|21|16|17|18|19|20|21|22|23|25|25|0\n66|66|64|63|62|61|58|58|59|57|55|55|54|51|50|49|47|46|45|45|44|43|43|52|40|39|39|38|38|37|36|35|35|65|36|37|42|41|40|41|42|53|44|48|46|47|48|49|50|51|52|53|54|56|56|57|60|59|60|61|62|63|64|65|67|67|0\n52|52|46|45|44|44|47|42|42|41|40|39|38|36|36|35|34|34|49|32|32|31|30|29|28|28|51|29|30|31|33|33|50|35|37|37|38|39|40|41|43|43|48|45|46|47|48|49|50|51|53|53|0\n27|25|24|23|22|21|20|18|18|17|16|15|15|26|16|17|19|19|20|21|22|23|24|25|26|27|0\n18|18|19|17|15|15|14|13|12|12|21|13|14|16|16|17|20|19|20|21|0\n33|32|32|31|31|29|28|25|25|24|23|23|22|21|20|19|19|30|20|21|22|27|24|26|26|27|28|29|30|35|34|33|34|35|0\n16|16|15|15|14|12|12|11|11|19|13|13|14|18|17|17|18|19|0\n32|31|31|33|30|29|27|27|28|25|24|23|22|21|20|19|19|26|20|21|22|23|24|25|26|35|28|29|30|34|32|33|34|35|0\n44|43|43|42|41|40|39|39|46|38|38|48|37|36|35|34|34|50|51|33|32|30|30|29|28|28|53|29|31|31|32|33|52|35|36|37|49|47|40|41|42|45|44|45|46|47|48|49|50|51|52|53|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n38|38|35|34|34|33|32|31|30|29|28|27|26|25|23|23|22|21|21|37|22|24|24|25|26|27|28|29|30|31|32|33|36|35|36|37|39|39|0\n51|51|50|50|46|44|44|43|42|42|47|41|39|38|37|36|35|34|33|32|32|31|29|29|28|28|49|30|30|31|40|33|34|35|36|37|38|39|40|41|48|43|45|45|46|47|48|49|53|52|52|53|0\n60|60|57|56|55|54|53|52|51|49|48|47|47|46|45|44|44|43|42|40|40|39|37|37|35|34|34|33|32|32|59|33|36|35|36|38|38|39|41|41|42|43|58|45|46|50|48|49|50|51|52|53|54|55|56|57|58|59|61|61|0\n39|38|36|36|37|40|41|35|34|33|33|43|32|30|29|29|28|26|26|25|24|24|45|25|27|27|28|31|30|31|32|44|34|35|42|37|38|39|40|41|42|43|44|45|0\n45|43|43|41|40|39|39|37|35|35|34|31|31|30|30|28|28|25|25|26|24|24|38|27|26|27|29|29|33|32|32|33|34|36|36|37|38|42|40|41|42|44|44|45|0\n49|48|42|42|43|41|41|45|38|38|37|37|36|35|35|33|31|30|30|29|27|26|26|28|34|27|28|29|32|31|32|33|34|47|36|40|39|39|40|46|44|43|44|45|46|47|48|49|0\n8|7|6|6|9|7|8|9|0\n64|62|61|60|60|58|57|56|55|55|54|52|51|51|48|48|49|47|46|46|45|44|41|40|40|37|36|36|38|35|34|34|43|35|39|37|38|39|42|41|42|43|44|45|65|47|50|49|50|53|52|53|54|59|56|57|58|59|63|61|62|63|64|65|0\n8|7|6|6|9|7|8|9|0\n21|21|20|19|18|16|16|15|14|14|13|13|23|15|17|17|18|19|20|22|22|23|0\n10|9|8|7|7|11|8|9|10|11|0\n32|31|30|30|29|28|25|25|24|22|21|20|19|18|18|23|27|19|20|21|22|23|24|26|26|27|28|29|33|31|32|33|0\n33|32|32|29|29|28|27|26|26|25|24|23|22|21|20|19|19|35|20|21|22|23|24|25|31|27|28|30|30|31|34|33|34|35|0\n39|38|38|37|36|36|34|33|31|30|28|28|27|27|26|25|23|22|22|24|35|23|24|25|26|32|29|29|30|31|32|33|34|35|41|37|40|39|40|41|0\n60|59|58|57|56|55|54|54|52|52|51|50|48|47|45|44|44|43|41|40|39|38|38|37|36|35|34|33|32|32|49|33|34|35|36|37|42|39|40|41|42|43|46|45|46|47|48|49|50|51|53|53|61|55|56|57|58|59|60|61|0\n15|12|12|11|9|9|10|14|10|11|13|13|14|15|0\n54|52|51|50|49|48|48|47|44|43|42|42|45|41|40|39|38|35|35|36|34|32|31|31|29|29|30|55|30|33|32|33|34|37|36|37|38|39|40|41|46|43|44|45|46|47|53|49|50|51|52|53|54|55|0\n47|44|43|43|42|41|40|39|37|36|35|33|33|32|31|31|30|29|28|27|26|25|25|46|26|27|28|29|30|38|32|34|34|35|36|37|38|39|40|41|42|45|44|45|46|47|0\n54|53|52|51|51|47|47|48|46|45|45|43|42|41|40|37|37|36|35|35|33|33|32|30|30|29|29|44|31|31|32|34|34|39|36|38|38|39|40|41|42|43|44|50|46|49|48|49|50|55|52|53|54|55|0\n25|25|24|22|22|21|20|20|27|18|18|17|16|16|29|17|19|19|28|21|23|23|24|26|26|27|28|29|0\n52|52|50|49|48|46|44|44|43|42|42|41|39|39|38|33|33|34|35|32|31|31|30|29|28|28|51|29|30|37|32|36|34|35|36|37|38|40|40|41|47|43|45|45|46|47|48|49|50|51|53|53|0\n7|7|6|6|9|8|8|9|0\n49|45|45|46|43|42|41|41|40|37|36|35|35|34|33|31|31|30|30|29|28|27|26|26|48|27|28|29|39|32|32|33|34|38|36|37|38|39|40|44|42|43|44|47|46|47|48|49|0\n42|41|40|38|38|37|36|35|33|32|32|31|30|29|29|28|27|26|25|24|23|23|24|25|26|27|28|43|30|31|34|33|34|35|36|37|39|39|40|41|42|43|0\n25|25|24|23|22|22|19|19|18|17|16|15|15|21|16|17|18|20|20|21|27|23|24|26|26|27|0\n48|46|46|45|42|41|40|40|43|38|37|36|35|35|34|32|32|33|49|31|30|29|28|27|27|51|28|29|30|31|50|33|34|39|36|37|38|39|44|41|42|43|44|45|47|47|48|49|50|51|0\n53|52|52|51|50|50|48|47|45|44|43|43|42|40|39|39|38|35|34|34|33|33|32|31|30|29|29|49|30|31|32|37|36|35|36|37|38|41|40|41|42|46|44|45|46|47|48|49|55|51|54|53|54|55|0\n39|38|36|36|35|33|32|31|30|28|27|27|26|24|24|23|22|21|21|34|22|23|25|25|26|29|28|29|30|31|32|33|34|35|37|37|38|39|0\n27|25|25|21|20|19|18|18|22|17|16|15|15|24|16|17|23|19|20|21|22|23|24|26|26|27|0\n44|43|42|42|40|38|36|36|35|35|34|33|32|30|29|28|27|27|26|25|24|24|41|25|26|31|28|29|30|31|32|33|34|39|37|37|38|39|40|41|45|43|44|45|0\n34|33|33|35|32|31|31|37|29|29|28|27|25|24|24|23|21|21|22|39|22|23|26|25|26|27|28|30|30|38|32|36|34|35|36|37|38|39|0\n11|10|9|8|7|7|8|9|10|11|0\n23|20|19|19|18|15|15|16|14|13|13|22|14|17|16|17|18|21|20|21|22|23|0\n23|22|20|19|18|17|16|15|14|13|13|21|14|15|16|17|18|19|20|21|22|23|0\n7|5|5|6|6|7|0\n62|60|60|59|58|58|57|56|50|49|48|47|47|46|44|43|43|45|52|53|42|41|40|38|37|37|36|35|34|33|33|55|34|35|36|39|38|39|40|41|42|54|44|45|46|51|48|49|50|51|52|53|54|55|56|57|63|59|61|61|62|63|0\n51|48|48|49|46|45|44|43|43|42|41|41|40|39|37|37|36|35|34|33|32|31|30|29|28|28|53|29|30|31|32|33|34|35|36|38|38|39|40|52|42|47|44|45|46|47|50|49|50|51|52|53|0\n35|35|36|32|29|28|28|30|26|26|25|24|22|22|21|21|20|20|34|33|23|23|24|25|27|27|31|29|30|31|32|33|34|37|36|37|0\n49|49|48|48|46|45|44|43|42|41|38|38|37|34|33|33|35|32|31|31|30|29|28|27|27|47|28|29|30|40|32|36|34|35|36|37|39|39|40|41|42|43|44|45|46|47|51|50|50|51|0\n26|25|25|21|20|20|19|19|18|17|16|15|15|24|16|17|18|23|22|21|22|23|24|27|26|27|0\n39|39|38|38|37|35|34|33|32|30|30|29|28|26|25|25|24|23|22|22|36|23|24|27|26|27|28|29|31|31|32|33|34|35|36|37|41|40|40|41|0\n18|16|16|17|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0\n18|17|17|19|16|14|14|13|12|12|21|13|15|15|16|20|18|19|20|21|0\n53|52|52|51|50|48|46|45|44|42|42|43|41|39|39|38|33|33|34|32|32|36|31|31|30|29|29|55|30|49|37|35|34|35|36|37|38|40|40|41|47|43|44|45|46|47|48|49|50|51|54|53|54|55|0\n31|23|22|21|21|24|25|26|20|20|28|19|17|17|18|30|18|19|29|27|22|23|24|25|26|27|28|29|30|31|0\n32|32|31|28|26|26|27|25|23|22|22|21|20|19|18|18|30|19|20|21|24|23|24|25|29|27|28|29|30|31|33|33|0\n28|27|27|23|23|22|21|21|20|17|17|18|16|16|26|19|18|19|20|25|22|24|24|25|26|29|28|29|0\n49|47|46|46|45|43|43|42|41|40|39|39|50|51|37|36|35|34|33|32|32|30|30|29|28|28|53|29|31|31|38|33|34|35|36|37|38|52|40|41|42|44|44|45|48|47|48|49|50|51|52|53|0\n30|30|25|24|24|26|27|22|22|21|20|19|17|17|18|29|18|19|20|21|23|23|28|25|26|27|28|29|31|31|0\n16|16|15|14|13|11|10|10|12|11|12|13|14|15|17|17|0\n35|33|32|27|26|26|28|25|24|23|23|30|22|20|20|19|19|34|21|21|22|31|24|25|29|27|28|29|30|31|32|33|34|35|0\n31|31|30|28|27|27|26|26|25|23|22|21|20|19|18|18|24|19|20|21|22|23|24|25|33|29|28|29|30|32|32|33|0\n31|30|30|29|29|26|26|27|23|23|21|21|20|19|18|18|25|19|20|22|22|24|24|25|28|27|28|33|32|31|32|33|0\n36|36|34|32|32|31|28|28|29|27|26|25|24|23|22|21|20|20|35|21|22|23|24|25|26|27|30|29|30|31|33|33|34|35|37|37|0\n36|35|35|37|32|31|31|30|30|29|28|26|26|27|24|23|22|21|21|25|22|23|24|25|39|27|28|29|34|33|32|33|34|38|36|37|38|39|0\n59|56|56|55|54|52|52|51|45|45|44|43|42|40|39|38|37|37|36|35|35|47|48|49|34|32|31|31|33|58|32|33|34|50|36|41|38|39|40|41|42|43|44|46|46|47|48|49|50|51|53|53|54|55|57|57|58|59|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n19|18|15|14|13|13|12|11|11|17|12|16|14|15|16|17|18|19|0\n44|43|41|41|40|40|39|38|35|35|34|33|32|31|30|28|27|26|25|25|24|24|37|29|26|27|28|29|30|31|32|33|34|36|36|37|38|39|45|42|42|43|44|45|0\n55|54|53|53|52|51|49|49|48|47|45|43|42|39|38|37|37|40|41|44|36|34|33|33|31|31|32|30|30|57|32|35|34|35|36|46|38|39|40|41|42|43|44|45|46|47|48|50|50|51|52|56|54|55|56|57|0\n17|16|13|13|11|11|10|10|15|12|12|14|14|15|16|17|0\n61|59|58|57|56|54|52|52|51|49|45|45|46|47|44|44|43|42|41|41|40|39|37|36|36|35|34|33|32|32|60|33|34|35|38|37|38|39|40|55|42|43|50|48|46|47|48|49|50|51|53|53|54|55|56|57|58|59|60|61|0\n51|51|50|49|46|46|47|48|53|44|43|43|41|41|39|39|38|35|35|36|34|33|32|31|30|29|29|55|30|31|32|33|34|37|36|37|38|40|40|42|42|45|44|45|54|47|48|49|50|52|52|53|54|55|0\n29|27|23|23|22|21|20|19|19|25|17|17|16|16|28|18|18|26|20|21|22|24|24|25|26|27|28|29|0\n27|25|24|23|22|21|19|18|18|17|16|15|15|26|16|17|20|19|20|21|22|23|24|25|26|27|0\n25|23|20|19|18|18|21|15|15|16|14|14|24|17|16|17|22|19|20|21|22|23|24|25|0\n68|67|63|62|61|61|60|59|59|65|57|56|56|55|54|52|52|51|49|49|48|47|46|46|45|44|41|41|39|39|38|37|36|36|43|37|38|40|40|42|42|43|44|45|69|47|48|50|50|51|53|53|54|55|58|57|58|66|60|64|62|63|64|65|66|67|68|69|0\n44|43|41|40|40|39|34|34|35|33|32|32|37|31|30|27|27|28|26|25|24|24|45|25|26|29|28|29|30|31|38|33|36|35|36|37|38|39|42|41|42|43|44|45|0\n46|44|43|42|41|41|40|39|35|35|36|37|34|34|33|32|30|28|28|27|26|25|25|31|26|27|29|29|30|31|32|33|47|38|36|37|38|39|40|45|42|43|44|45|46|47|0\n29|25|24|24|26|22|22|23|20|19|18|17|16|16|21|17|18|19|20|21|28|23|27|25|26|27|28|29|0\n46|44|44|43|40|40|41|39|37|37|38|36|34|33|32|32|30|29|28|27|26|25|25|31|26|27|28|29|30|31|35|33|34|35|36|47|38|39|42|41|42|43|45|45|46|47|0\n85|84|82|81|81|79|77|77|76|76|74|74|73|70|69|69|71|68|67|66|66|86|87|64|62|62|61|59|59|60|58|57|56|55|54|52|52|51|50|49|48|47|46|46|89|47|48|49|50|51|53|53|54|55|56|57|58|65|60|61|63|63|64|65|88|67|68|72|70|71|72|73|75|75|80|78|78|79|80|83|82|83|84|85|86|87|88|89|0\n60|60|59|52|52|51|50|50|49|48|47|47|55|56|43|42|42|44|41|41|38|37|36|35|35|39|34|33|32|32|58|33|34|40|36|37|38|39|40|46|45|43|44|45|46|57|48|49|54|51|53|53|54|55|56|57|58|59|61|61|0\n30|29|28|27|26|26|24|24|22|21|20|19|18|17|17|23|18|19|20|21|22|23|25|25|31|27|28|29|30|31|0\n29|28|27|27|26|21|21|22|23|20|19|19|25|17|17|18|18|31|20|24|22|23|24|25|26|30|28|29|30|31|0\n40|38|38|37|36|35|34|33|32|31|29|27|27|28|26|26|25|22|22|23|24|23|24|25|41|30|28|29|30|31|32|33|34|35|36|37|39|39|40|41|0\n31|30|30|32|29|28|27|26|25|23|23|24|34|21|19|19|20|22|20|21|22|35|24|25|26|27|28|29|33|31|32|33|34|35|0\n18|17|16|15|15|13|12|11|11|14|12|13|14|19|16|17|18|19|0\n19|17|16|15|14|13|12|11|11|18|12|13|14|15|16|17|18|19|0\n18|16|15|14|13|13|12|12|11|11|19|17|14|15|16|17|18|19|0\n63|61|60|59|59|55|53|53|54|56|52|51|50|49|47|45|45|44|43|42|42|41|37|36|36|38|35|35|34|33|33|58|34|40|39|37|38|39|40|41|48|43|44|46|46|47|48|49|50|51|52|57|54|55|56|57|58|62|60|61|62|63|0\n25|25|24|22|22|21|20|19|18|17|16|15|15|27|16|17|18|19|20|21|23|23|24|26|26|27|0\n40|39|38|37|35|35|34|32|30|29|29|28|27|27|26|24|24|23|22|22|41|23|25|25|26|33|28|31|30|31|32|33|34|36|36|37|38|39|40|41|0\n38|38|35|35|32|31|30|29|27|27|28|33|26|25|24|23|22|21|21|37|22|23|24|25|26|34|28|29|30|31|32|33|34|36|36|37|39|39|0\n35|33|33|31|30|30|29|28|28|36|37|26|26|25|24|23|22|21|21|39|22|23|24|25|27|27|38|29|32|31|32|34|34|35|36|37|38|39|0\n53|52|52|51|50|50|46|45|44|44|47|41|40|39|38|37|37|42|36|34|33|32|32|31|30|29|29|49|30|31|35|33|34|35|36|43|38|39|40|41|42|43|48|45|46|47|48|49|55|51|54|53|54|55|0\n51|48|47|46|44|43|43|39|37|37|36|33|32|32|31|31|30|29|29|40|41|27|27|28|49|50|28|42|30|35|34|33|34|35|36|38|38|39|40|41|42|45|44|45|46|47|48|49|50|51|0\n20|19|18|18|17|16|14|13|12|12|15|13|14|15|16|17|21|19|20|21|0\n17|15|13|12|12|11|10|10|16|11|14|13|14|15|16|17|0\n54|54|46|44|43|43|42|39|38|37|37|40|36|36|47|48|49|35|35|51|34|33|32|31|30|29|29|53|30|31|32|33|34|52|50|41|38|39|40|41|42|45|44|45|46|47|48|49|50|51|52|53|55|55|0\n25|24|23|23|22|21|21|19|18|16|15|15|17|20|16|17|18|19|20|27|22|26|24|25|26|27|0\n35|35|34|33|32|32|31|28|28|29|27|25|25|24|23|23|22|21|21|39|22|38|24|26|26|27|30|29|30|31|37|33|34|36|36|37|38|39|0\n35|34|34|36|33|32|32|38|39|30|30|28|28|24|24|25|23|22|22|27|41|23|26|25|26|27|29|29|31|31|40|33|37|35|36|37|38|39|40|41|0\n34|33|32|32|25|25|24|24|27|28|29|23|22|20|19|19|21|31|20|21|22|23|30|26|26|27|28|29|30|31|35|33|34|35|0\n33|33|31|31|30|28|28|29|35|26|22|22|21|21|24|25|20|20|37|27|23|23|24|25|26|27|36|29|30|32|32|34|34|35|36|37|0\n40|39|38|37|36|36|34|33|27|27|26|26|29|25|24|23|23|31|22|22|35|32|24|25|30|28|28|29|30|31|32|33|34|35|41|37|38|39|40|41|0\n84|83|83|82|81|80|78|78|77|76|76|86|87|72|71|67|67|65|65|66|69|64|64|73|74|63|61|60|60|59|58|57|56|55|54|52|52|50|50|49|48|46|46|47|89|47|48|49|51|51|53|53|54|55|56|57|58|59|62|61|62|63|75|70|66|68|68|69|70|71|72|73|74|75|88|77|79|79|80|81|82|85|84|85|86|87|88|89|0\n48|45|43|43|42|41|40|39|38|38|46|35|35|36|33|33|32|32|30|28|28|27|26|26|31|27|29|29|30|31|49|34|34|37|36|37|47|39|40|41|42|44|44|45|46|47|48|49|0\n27|25|24|23|22|21|19|19|18|17|16|15|15|26|16|17|18|20|20|21|22|23|24|25|26|27|0\n24|23|23|20|19|18|18|17|16|15|14|14|22|15|16|17|21|19|20|21|22|25|24|25|0\n31|31|30|28|27|27|26|25|24|23|23|21|20|18|18|19|22|19|20|21|22|33|24|25|26|29|28|29|30|32|32|33|0\n42|42|39|39|38|37|35|35|36|32|32|31|30|29|28|27|26|25|24|23|23|34|24|25|26|27|28|29|30|31|33|33|34|41|36|37|38|40|40|41|43|43|0\n43|39|38|37|36|35|35|40|34|33|32|28|28|29|27|27|25|25|24|23|23|42|24|26|26|31|30|29|30|31|32|33|34|41|36|37|38|39|40|41|42|43|0\n47|44|43|42|41|41|40|36|33|32|31|31|29|29|30|35|28|28|38|27|26|25|25|46|26|27|39|37|30|34|32|33|34|35|36|37|38|39|40|45|42|43|44|45|46|47|0\n37|37|34|33|32|32|35|31|30|29|28|28|39|27|26|23|23|24|22|22|41|25|24|25|26|27|40|29|30|31|36|33|34|35|36|38|38|39|40|41|0\n43|43|44|42|41|40|39|38|37|36|36|46|32|31|30|30|33|27|26|26|28|25|25|35|29|27|28|29|34|31|32|33|34|35|47|37|38|39|40|41|42|45|44|45|46|47|0\n19|17|17|15|13|13|12|11|11|16|12|14|14|15|16|18|18|19|0\n35|34|32|31|31|33|36|37|29|29|30|25|25|24|24|22|22|21|21|28|23|23|27|26|26|27|28|39|30|38|32|33|34|35|36|37|38|39|0\n31|29|27|26|26|25|23|23|22|21|19|18|17|17|20|30|18|19|20|21|22|24|24|25|28|27|28|29|30|31|0\n27|26|26|28|29|24|24|23|22|20|20|19|18|17|17|31|18|19|21|21|22|23|25|25|30|27|28|29|30|31|0\n31|31|32|30|28|26|25|25|24|22|22|21|20|19|18|18|29|19|20|21|23|23|24|27|26|27|28|29|30|33|32|33|0\n45|41|40|40|42|38|37|36|36|35|33|33|31|30|30|28|27|27|26|25|24|24|44|25|26|29|28|29|32|31|32|34|34|35|39|37|38|39|43|41|42|43|44|45|0\n25|21|21|22|20|18|17|16|16|19|24|15|15|27|26|17|18|19|20|23|22|23|24|25|26|27|0\n36|33|33|32|32|35|30|29|28|26|26|25|23|23|22|21|20|20|31|21|22|24|24|25|27|27|28|29|30|31|37|34|34|35|36|37|0\n49|47|46|46|43|42|42|44|41|41|39|39|37|37|36|33|31|31|32|34|29|29|28|27|27|51|28|30|30|35|32|33|34|35|36|38|38|40|40|50|45|43|44|45|48|47|48|49|50|51|0\n35|32|32|31|27|27|28|23|23|22|20|20|19|19|25|26|30|34|21|21|22|24|24|25|26|29|28|29|30|31|33|33|34|35|0\n43|40|39|39|38|36|35|34|34|33|32|30|29|29|28|27|26|24|24|23|23|42|25|25|26|27|28|31|30|31|32|33|37|35|36|37|38|41|40|41|42|43|0\n11|10|10|12|8|8|9|9|13|11|12|13|0\n41|40|38|36|36|35|33|33|31|30|29|29|28|25|25|26|24|23|22|22|39|23|24|27|26|27|28|32|30|31|32|34|34|35|37|37|38|39|40|41|0\n55|53|51|50|50|49|48|47|46|45|45|44|43|40|36|36|35|34|34|38|32|31|31|30|29|29|41|42|30|33|32|33|39|35|37|37|38|39|40|41|42|43|44|54|46|47|48|49|52|51|52|53|54|55|0\n37|35|33|32|32|31|29|28|27|27|26|24|23|22|22|21|20|20|36|21|25|23|24|25|26|30|28|29|30|31|34|33|34|35|36|37|0\n46|45|45|44|44|48|43|41|40|39|39|38|37|37|50|34|34|32|32|31|30|29|28|27|27|36|28|29|30|31|33|33|35|35|36|51|38|42|40|41|42|43|49|47|46|47|48|49|50|51|0\n46|46|44|42|41|40|40|39|36|36|35|33|32|32|31|30|30|29|28|26|26|25|25|45|27|27|28|29|38|31|34|33|34|35|37|37|38|39|43|41|42|43|44|45|47|47|0\n21|19|18|14|14|15|16|13|12|12|20|13|17|15|16|17|18|19|20|21|0\n52|52|49|47|46|46|45|44|44|43|42|39|39|36|36|37|35|34|34|33|32|30|30|29|28|28|51|29|31|31|32|33|41|35|38|37|38|40|40|41|42|43|50|45|48|47|48|49|50|51|53|53|0\n39|37|35|33|32|32|31|30|28|28|26|26|25|24|24|23|22|21|21|38|22|23|36|25|27|27|29|29|30|31|34|33|34|35|36|37|38|39|0\n61|60|59|58|58|57|56|55|54|53|52|52|51|50|48|48|46|44|44|45|43|42|41|41|64|65|40|38|38|37|35|35|36|67|36|37|39|39|40|66|42|43|47|45|46|47|49|49|50|51|63|53|54|55|56|57|62|59|60|61|62|63|64|65|66|67|0\n7|7|6|6|9|8|8|9|0\n28|26|26|25|25|24|22|22|19|19|18|17|16|16|21|17|18|20|20|21|23|23|24|29|27|27|28|29|0\n55|52|52|53|51|49|47|47|46|46|45|44|43|43|56|57|42|41|40|38|37|35|35|34|34|33|32|31|31|59|32|33|39|36|36|37|38|39|40|41|42|58|44|45|50|48|48|49|50|51|54|53|54|55|56|57|58|59|0\n47|45|43|42|37|36|36|35|35|39|40|34|34|33|30|30|31|29|28|27|25|25|26|46|26|27|28|29|32|31|32|33|44|41|38|37|38|39|40|41|42|43|44|45|46|47|0\n28|27|26|26|25|24|20|19|19|21|18|17|16|16|23|17|18|22|20|21|22|23|24|25|29|27|28|29|0\n45|43|41|41|40|39|37|36|35|35|34|32|31|31|30|29|27|26|26|25|24|24|44|25|28|27|28|29|30|33|32|33|34|38|36|37|38|39|40|42|42|43|44|45|0\n16|16|13|12|11|11|10|10|15|14|12|13|14|15|17|17|0\n59|58|57|55|54|53|51|51|50|49|49|48|45|45|46|43|43|42|41|39|39|40|60|61|38|37|33|33|34|35|36|63|34|35|36|37|38|62|40|41|42|44|44|47|46|47|48|56|50|52|52|53|54|55|56|57|58|59|60|61|62|63|0\n27|27|26|25|25|24|23|22|21|19|19|18|18|30|17|17|31|20|20|21|22|23|24|29|26|28|28|29|30|31|0\n19|17|15|15|14|12|11|11|13|18|12|13|14|16|16|17|18|19|0\n61|58|57|56|56|55|52|52|50|49|49|48|48|47|46|46|45|43|42|41|41|40|40|62|63|38|37|36|36|34|34|35|65|35|39|37|38|39|64|44|42|43|44|45|60|47|54|51|50|51|53|53|54|55|59|57|58|59|60|61|62|63|64|65|0\n18|18|17|17|20|21|15|15|14|13|13|23|14|16|16|22|19|19|20|21|22|23|0\n31|30|30|29|27|26|26|25|24|24|22|21|20|19|18|18|23|19|20|21|22|23|33|25|28|27|28|29|32|31|32|33|0\n7|6|5|5|6|7|0\n44|43|41|41|40|40|39|38|32|32|30|30|31|34|35|29|28|26|26|25|24|24|37|25|27|27|28|29|36|31|33|33|34|35|36|37|38|39|45|42|42|43|44|45|0\n75|74|74|73|72|70|70|69|68|66|66|65|64|64|63|62|60|58|57|57|56|53|52|52|54|51|49|47|47|48|46|45|43|42|42|41|40|40|61|41|44|43|44|45|46|50|48|49|50|51|55|53|54|55|56|59|58|59|60|61|62|63|77|65|67|67|68|69|71|71|72|73|76|75|76|77|0\n24|23|22|22|21|20|17|17|16|14|14|15|19|15|16|18|18|19|20|21|25|23|24|25|0\n23|21|20|19|18|15|15|16|14|13|13|22|14|17|16|17|18|19|20|21|22|23|0\n29|27|26|26|24|22|22|21|20|18|18|17|16|16|25|17|19|19|20|21|23|23|24|25|28|27|28|29|0\n18|17|16|16|13|13|12|11|11|15|12|14|14|15|19|17|18|19|0\n23|22|20|19|18|17|16|15|14|13|13|21|14|15|16|17|18|19|20|21|22|23|0\n84|83|82|80|80|78|78|75|74|74|73|71|71|70|69|69|68|65|64|64|61|60|59|59|58|58|57|56|54|54|53|53|67|52|50|50|48|48|46|45|44|44|47|45|46|47|49|49|51|51|52|85|55|55|56|57|63|62|60|61|62|63|66|65|66|67|68|77|70|72|72|73|76|75|76|77|79|79|81|81|82|83|84|85|0\n26|24|24|23|23|27|20|19|18|18|17|16|16|22|29|17|21|19|20|21|22|28|25|25|26|27|28|29|0\n50|49|48|48|46|43|43|44|42|37|37|38|36|35|33|33|32|30|30|29|29|40|28|27|27|47|28|41|31|31|32|34|34|35|36|39|38|39|40|41|42|45|44|45|46|47|51|49|50|51|0\n43|42|42|44|41|40|39|38|38|46|47|37|35|35|34|31|31|30|30|29|28|27|26|26|49|27|28|29|33|32|32|33|34|36|36|37|48|39|40|41|45|43|44|45|46|47|48|49|0\n13|10|10|8|8|9|12|9|11|11|12|13|0\n37|32|31|31|30|29|27|27|26|25|25|34|23|23|22|21|20|20|36|21|22|24|24|35|26|28|28|29|30|33|32|33|34|35|36|37|0\n38|37|35|34|34|33|32|31|31|39|40|41|29|29|28|26|26|27|43|24|24|25|45|25|44|27|28|30|30|42|32|33|36|35|36|37|38|39|40|41|42|43|44|45|0\n55|53|51|51|50|49|48|45|44|44|43|42|41|40|40|39|37|36|36|34|34|33|32|31|30|29|29|54|30|31|32|33|35|35|38|37|38|39|47|41|42|43|46|45|46|47|48|49|50|52|52|53|54|55|0\n36|35|34|34|33|31|30|29|29|27|26|25|24|22|22|21|20|20|28|21|23|23|24|25|26|27|28|32|30|31|32|33|37|35|36|37|0\n30|30|29|28|25|25|24|23|21|20|19|18|18|17|17|27|22|19|20|21|22|23|24|26|26|27|28|29|31|31|0\n73|72|72|71|71|69|68|64|63|62|61|61|60|58|57|57|56|56|66|55|53|52|52|51|49|48|48|46|45|44|43|43|41|41|40|39|39|70|40|42|42|47|44|45|46|47|50|49|50|51|54|53|54|55|67|59|58|59|60|65|62|63|64|65|66|67|68|69|70|75|74|73|74|75|0\n32|30|30|29|27|27|26|25|25|24|23|21|20|19|18|18|22|19|20|21|22|23|24|33|26|28|28|29|31|31|32|33|0\n35|33|32|31|29|28|28|26|26|25|22|22|21|21|20|19|19|34|20|24|23|23|24|25|27|27|30|29|30|31|32|33|34|35|0\n48|46|45|44|41|41|42|40|40|39|38|38|37|35|33|33|31|31|30|28|26|26|27|29|36|27|28|29|30|32|32|34|34|35|36|37|49|39|47|43|42|43|44|45|46|47|48|49|0\n29|26|25|25|24|22|20|20|19|19|18|17|16|16|28|17|18|23|21|21|22|23|24|27|26|27|28|29|0\n47|47|48|44|44|45|46|50|51|41|41|40|34|34|35|36|33|33|38|32|31|30|30|29|28|28|53|29|43|31|32|39|37|35|36|37|38|39|40|42|42|43|52|45|46|49|48|49|50|51|52|53|0\n39|38|38|40|33|33|34|35|32|31|29|29|28|26|26|25|24|22|22|23|37|23|24|25|27|27|28|30|30|31|32|36|34|35|36|37|41|39|40|41|0\n58|58|56|56|55|54|53|52|50|48|48|47|46|46|51|60|61|44|44|42|42|41|39|39|38|37|35|35|34|33|33|63|34|36|36|37|38|40|40|41|43|43|45|45|62|47|49|49|50|51|52|53|54|55|57|57|59|59|60|61|62|63|0\n51|49|45|43|42|42|44|46|38|38|37|37|36|36|35|33|33|34|31|30|30|29|28|27|27|50|28|29|32|31|32|48|34|35|41|40|39|39|40|41|47|43|44|45|46|47|48|49|50|51|0\n42|42|40|37|37|38|36|34|34|33|32|29|27|27|28|30|25|24|24|23|23|41|26|25|26|31|28|29|30|31|32|33|35|35|36|39|38|39|40|41|43|43|0\n33|31|29|28|27|26|24|24|25|23|22|20|20|19|18|18|32|19|21|21|22|23|30|25|26|27|28|29|30|31|32|33|0\n45|45|44|44|42|41|40|37|37|34|33|32|32|35|31|30|30|29|28|27|26|25|25|43|26|27|28|29|39|31|36|33|34|35|36|38|38|39|40|41|42|43|47|46|46|47|0\n47|46|44|43|43|42|41|41|48|49|36|36|37|35|34|32|32|31|31|39|29|29|28|27|27|51|28|30|30|40|33|33|34|35|38|37|38|39|40|50|42|45|44|45|46|47|48|49|50|51|0\n21|18|18|16|15|15|14|13|12|12|20|13|14|17|16|17|19|19|20|21|0\n34|34|33|33|32|29|29|28|27|26|26|31|37|23|23|22|22|21|21|39|25|24|24|25|38|27|28|30|30|31|32|36|35|35|36|37|38|39|0\n22|21|20|19|18|18|17|16|14|13|13|15|14|15|16|17|23|19|20|21|22|23|0\n37|35|33|32|32|31|30|28|26|26|27|25|24|22|22|21|20|20|36|21|23|23|24|25|29|27|28|29|30|31|34|33|34|35|36|37|0\n28|27|27|24|24|22|22|21|20|19|18|17|16|16|26|17|18|19|20|21|23|23|25|25|26|29|28|29|0\n27|26|25|24|24|23|22|22|29|21|19|19|18|17|17|31|18|20|20|21|30|23|28|25|26|27|28|29|30|31|0\n48|47|47|46|45|42|42|41|40|37|37|36|34|34|33|33|30|30|31|29|28|27|26|26|44|27|28|29|32|31|32|39|35|35|36|38|38|39|40|41|43|43|44|45|46|49|48|49|0\n24|23|22|22|21|20|19|19|18|17|16|15|15|27|16|17|18|26|20|21|25|23|24|25|26|27|0\n10|9|8|8|7|7|11|9|10|11|0\n17|17|18|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n44|44|45|43|41|39|38|38|40|42|34|29|29|30|31|32|28|28|35|27|26|25|25|37|26|27|36|33|30|31|32|33|34|35|36|37|47|39|40|41|42|43|46|45|46|47|0\n37|35|33|33|34|36|32|32|29|28|25|24|24|26|23|22|22|21|21|31|30|23|27|25|26|27|28|29|30|31|39|38|34|35|36|37|38|39|0\n37|37|35|34|33|32|32|31|30|29|28|27|27|25|24|23|22|21|21|26|22|23|24|25|26|39|28|29|30|31|36|33|34|35|36|38|38|39|0\n42|40|40|41|43|37|36|36|35|34|34|33|32|31|30|30|45|28|27|27|26|25|25|47|26|29|28|29|46|31|32|33|39|35|38|37|38|39|44|41|42|43|44|45|46|47|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n55|54|53|46|45|45|44|43|43|48|42|42|50|41|40|39|37|37|36|34|34|33|32|31|30|29|29|52|30|31|32|33|35|35|36|38|38|39|40|41|51|49|44|47|46|47|48|49|50|51|52|53|54|55|0\n15|15|14|13|13|11|10|10|12|11|12|17|14|16|16|17|0\n45|42|42|41|36|36|37|35|34|33|31|31|32|39|30|29|27|27|26|24|24|25|44|25|26|28|28|29|30|40|32|33|34|35|38|37|38|39|40|41|43|43|44|45|0\n41|39|36|35|35|37|34|32|31|30|30|29|28|26|26|25|24|23|22|22|40|23|24|25|27|27|28|29|33|31|32|33|34|38|36|37|38|39|40|41|0\n42|39|38|38|37|35|35|36|34|33|32|31|31|30|28|28|26|25|24|23|23|27|24|25|26|27|29|29|30|43|32|33|34|41|36|37|40|39|40|41|42|43|0\n48|48|45|44|42|42|39|39|38|37|36|35|34|33|32|30|30|31|41|29|28|27|26|26|47|27|28|29|46|31|32|33|34|35|36|37|38|40|40|41|43|43|44|45|46|47|49|49|0\n20|19|19|18|16|15|14|13|12|12|17|13|14|15|16|17|18|21|20|21|0\n40|39|38|37|36|36|35|34|33|30|30|29|27|25|25|26|24|23|22|22|32|23|24|28|26|27|28|29|31|31|32|33|34|35|41|37|38|39|40|41|0\n33|31|30|28|28|29|32|27|27|35|25|24|23|23|22|21|20|20|37|21|22|26|24|25|26|36|34|29|30|31|32|33|34|35|36|37|0\n16|15|15|17|14|12|11|11|13|19|12|13|14|18|16|17|18|19|0\n26|25|25|23|22|21|20|19|18|16|16|15|15|24|17|17|18|19|20|21|22|23|24|27|26|27|0\n35|35|34|32|32|31|31|30|26|25|25|27|24|23|22|21|20|20|29|21|22|23|24|28|26|27|28|29|30|37|33|33|34|36|36|37|0\n56|55|55|53|53|52|52|58|59|51|50|49|44|44|43|43|46|47|42|41|40|39|37|37|36|35|34|33|32|32|61|33|34|35|36|38|38|39|40|41|42|48|45|45|46|47|48|49|50|51|60|54|54|57|56|57|58|59|60|61|0\n17|16|16|15|13|13|14|12|11|11|12|19|14|15|18|17|18|19|0\n63|62|56|56|55|53|52|50|49|49|48|47|46|46|54|58|59|43|42|42|40|40|39|38|37|36|35|35|34|33|33|61|34|45|36|37|38|39|41|41|44|43|44|45|60|47|48|51|50|51|52|53|54|55|57|57|58|59|60|61|62|63|0\n41|38|38|39|37|37|42|33|32|30|29|29|28|28|27|26|25|25|24|23|23|36|24|35|26|27|34|31|30|31|32|33|34|35|36|43|40|39|40|41|42|43|0\n72|72|73|71|70|69|69|66|66|64|64|63|60|60|61|58|58|56|56|55|53|52|52|51|48|48|49|47|46|45|43|42|42|41|40|39|39|68|40|41|44|43|44|45|46|47|50|49|50|51|54|53|54|55|57|57|59|59|62|61|62|63|65|65|67|67|68|75|70|71|74|73|74|75|0\n31|30|29|27|26|25|25|23|22|21|21|20|20|32|33|19|19|35|34|24|22|23|24|28|26|27|28|29|30|31|32|33|34|35|0\n26|25|25|21|20|18|18|19|22|17|16|15|15|24|16|17|23|19|20|21|22|23|24|27|26|27|0\n30|30|29|28|26|26|27|25|25|22|21|21|20|19|18|18|24|19|20|23|22|23|24|33|32|27|28|29|31|31|32|33|0\n25|24|21|21|22|20|19|19|18|17|16|15|15|27|16|17|18|26|20|23|22|23|24|25|26|27|0\n19|19|18|18|16|15|14|12|12|13|17|13|14|15|16|17|21|20|20|21|0\n41|40|39|38|37|37|42|43|36|35|34|33|32|31|30|29|28|27|26|25|24|24|45|25|26|27|28|29|30|31|32|33|34|35|36|44|38|39|40|41|42|43|44|45|0\n37|31|31|30|30|33|29|28|27|26|26|35|22|22|23|21|20|20|25|21|24|23|24|25|36|27|28|29|34|32|32|33|34|35|36|37|0\n40|39|38|37|37|41|42|36|35|34|33|32|31|30|29|29|44|45|28|27|26|25|25|47|26|27|28|46|30|31|32|33|34|35|36|43|38|39|40|41|42|43|44|45|46|47|0\n35|33|30|29|28|27|26|25|25|31|24|22|22|21|20|19|19|34|20|21|23|23|24|32|26|27|28|29|30|31|32|33|34|35|0\n25|25|24|23|21|21|22|27|20|18|18|17|16|16|29|17|19|19|20|28|22|23|24|26|26|27|28|29|0\n21|19|16|15|15|17|14|13|12|12|20|13|14|18|16|17|18|19|20|21|0\n33|32|31|30|28|28|27|26|25|25|34|35|24|23|22|21|20|20|37|21|22|23|24|36|26|27|29|29|30|31|32|33|34|35|36|37|0\n48|47|45|44|43|43|42|41|39|39|38|36|36|35|34|34|49|50|33|31|31|29|29|28|27|27|28|30|30|32|32|33|51|35|37|37|38|40|40|41|42|46|44|45|46|47|48|49|50|51|0\n49|48|48|47|46|44|44|43|42|42|40|35|34|34|33|32|31|31|37|38|29|28|28|27|27|41|30|29|30|39|32|33|36|35|36|37|38|39|40|41|51|43|45|45|46|47|50|49|50|51|0\n58|58|57|57|54|54|55|52|51|51|50|48|48|47|47|61|46|45|44|43|40|40|41|37|37|38|36|34|34|33|33|63|35|35|36|39|38|39|42|41|42|43|44|45|46|62|49|49|50|53|52|53|56|55|56|60|59|59|60|61|62|63|0\n42|42|41|39|38|37|36|36|35|34|33|32|32|44|45|31|29|28|27|26|26|25|25|47|30|27|28|29|30|31|46|33|34|35|40|37|38|39|40|41|43|43|44|45|46|47|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n64|64|61|60|59|58|57|56|54|54|53|52|50|50|49|47|45|45|44|44|43|42|40|39|38|37|37|36|35|34|34|62|63|35|36|41|38|39|40|41|42|43|48|46|46|47|48|49|51|51|52|53|55|55|56|57|58|59|60|61|62|63|65|65|0\n44|43|42|41|41|40|38|37|37|33|33|34|31|31|30|28|27|27|26|24|24|25|36|25|26|29|28|29|30|32|32|35|34|35|36|39|38|39|40|45|42|43|44|45|0\n27|26|26|28|23|21|18|18|19|20|22|17|16|16|25|17|24|19|20|21|22|23|24|25|29|27|28|29|0\n10|10|8|7|7|9|8|9|11|11|0\n20|20|18|17|16|15|14|13|12|12|19|13|14|15|16|17|18|19|21|21|0\n58|56|56|55|53|53|52|50|50|49|47|45|45|44|43|42|42|48|41|39|39|36|36|35|34|33|32|31|31|38|32|33|34|35|37|37|38|40|40|41|59|43|44|46|46|47|48|49|51|51|52|54|54|55|57|57|58|59|0\n34|32|31|31|30|29|28|28|27|25|25|23|21|20|20|19|19|24|22|21|22|23|24|26|26|27|35|29|30|33|32|33|34|35|0\n36|35|34|33|33|32|31|30|30|38|39|28|27|26|26|25|24|23|22|22|41|23|24|25|29|27|28|29|40|31|32|37|34|35|36|37|38|39|40|41|0\n49|48|48|50|47|45|44|44|43|42|40|40|39|37|36|36|35|34|33|33|52|31|30|28|28|29|32|29|30|31|32|53|34|35|38|37|38|39|41|41|42|43|46|45|46|47|51|49|50|51|52|53|0\n47|44|43|42|37|36|36|35|34|34|39|33|32|32|31|29|28|28|30|27|26|25|25|46|26|27|45|29|30|31|41|33|40|35|38|37|38|39|40|41|42|43|44|45|46|47|0\n59|58|58|57|55|55|56|54|52|51|50|47|46|46|48|49|45|42|41|40|40|43|39|37|35|35|34|33|32|32|38|33|34|36|36|37|38|39|44|41|42|43|44|45|53|47|48|49|50|51|52|53|54|61|56|57|60|59|60|61|0\n38|37|37|35|34|34|36|40|41|31|30|30|29|28|26|25|25|27|24|23|23|43|24|33|26|27|28|29|32|31|32|33|42|35|36|39|38|39|40|41|42|43|0\n29|28|27|27|26|25|25|23|22|21|20|19|18|17|17|24|18|19|20|21|22|23|24|31|26|30|28|29|30|31|0\n24|23|22|21|21|20|19|16|15|15|14|14|18|17|16|17|18|19|20|25|22|23|24|25|0\n29|27|24|23|22|22|25|19|18|17|16|16|20|21|28|17|18|19|20|21|26|23|24|25|26|27|28|29|0\n36|35|34|32|32|33|31|29|29|27|26|25|24|21|21|22|20|20|28|23|22|23|24|25|26|27|28|30|30|31|37|33|34|35|36|37|0\n67|65|64|63|61|59|59|60|56|55|55|54|52|52|51|50|49|49|48|46|46|44|43|42|41|41|40|39|38|37|36|35|35|66|36|37|38|39|40|45|42|43|44|45|47|47|48|58|50|51|53|53|54|57|56|57|58|62|60|61|62|63|64|65|66|67|0\n25|22|21|21|20|19|18|15|15|16|14|14|24|17|16|17|18|19|20|23|22|23|24|25|0\n23|18|17|16|16|19|20|15|14|13|13|22|14|15|21|17|18|19|20|21|22|23|0\n27|25|24|22|21|18|18|19|20|16|15|15|17|26|16|17|23|19|20|21|22|23|24|25|26|27|0\n48|46|46|45|44|44|49|50|51|43|42|40|40|38|37|36|36|35|34|32|31|30|30|29|28|28|53|29|33|31|32|33|34|35|39|37|38|39|41|41|42|43|52|45|47|47|48|49|50|51|52|53|0\n34|33|33|35|32|31|31|37|30|29|27|27|26|25|24|23|22|21|21|39|22|23|24|25|26|28|28|29|30|38|32|36|34|35|36|37|38|39|0\n47|46|45|45|44|43|42|41|41|37|37|38|36|33|32|31|30|28|27|27|26|26|34|35|40|29|28|29|30|31|32|33|34|35|36|39|38|39|40|49|42|43|44|48|46|47|48|49|0\n36|36|35|31|31|30|29|28|28|33|27|26|25|25|38|39|23|23|22|22|41|24|24|40|26|27|34|29|30|32|32|33|34|35|37|37|38|39|40|41|0\n30|29|29|25|24|23|23|26|21|20|20|19|18|17|17|28|18|19|22|21|22|27|24|25|26|27|28|31|30|31|0\n25|24|22|20|20|19|19|17|14|14|15|16|18|15|16|17|18|23|21|21|22|23|24|25|0\n41|40|39|39|38|37|36|35|34|34|29|29|30|31|28|25|24|24|26|23|23|33|27|25|26|27|28|32|30|31|32|33|43|35|36|37|38|42|40|41|42|43|0\n3|3|0\n3|3|0\n25|19|19|18|18|21|22|17|16|15|14|14|24|15|16|17|23|20|20|21|22|23|24|25|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n51|50|50|49|48|47|45|44|43|43|42|41|40|39|39|34|33|32|31|31|35|36|30|29|28|28|38|29|30|37|32|33|34|35|36|37|38|53|40|41|42|46|44|45|46|47|48|49|52|51|52|53|0\n26|25|24|23|23|22|21|19|16|16|17|15|15|20|18|17|18|19|20|21|22|27|24|25|26|27|0\n46|46|45|42|42|41|38|38|39|37|36|33|32|32|31|30|29|28|27|27|26|25|25|44|26|35|28|29|30|31|34|33|34|35|36|37|40|39|40|41|43|43|44|45|47|47|0\n20|19|19|17|16|15|13|12|12|14|18|13|14|15|16|17|18|21|20|21|0\n7|6|5|5|6|7|0\n43|40|40|39|38|36|35|34|33|31|31|32|29|28|28|27|26|25|24|23|23|42|24|25|26|27|30|29|30|37|32|33|34|35|36|37|38|39|41|41|42|43|0\n44|41|41|40|40|39|38|37|36|35|34|33|32|32|31|29|28|27|27|24|24|25|26|25|26|30|28|29|30|31|45|33|34|35|36|37|38|39|43|42|42|43|44|45|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n47|46|46|45|43|43|44|41|41|42|50|51|38|38|37|37|35|35|34|32|32|30|30|28|28|29|53|29|31|31|33|33|34|36|36|40|39|39|40|52|42|49|44|45|48|47|48|49|50|51|52|53|0\n32|31|31|33|29|28|27|27|26|25|24|22|20|20|21|19|19|35|23|21|22|23|24|25|26|30|28|29|30|34|32|33|34|35|0\n54|53|52|52|50|49|49|48|47|45|44|44|43|38|37|36|36|35|35|40|34|34|42|56|57|32|32|31|31|59|33|33|58|41|39|37|38|39|40|41|42|43|46|45|46|47|48|51|50|51|55|53|54|55|56|57|58|59|0\n46|45|45|44|43|42|39|39|38|37|34|33|32|32|31|29|28|27|27|30|26|25|25|41|26|36|28|29|30|31|35|33|34|35|36|37|38|40|40|41|42|43|44|47|46|47|0\n17|13|12|11|10|10|14|15|16|11|12|13|14|15|16|17|0\n44|43|41|41|40|39|38|37|37|36|34|33|33|31|30|29|27|26|26|25|24|24|32|25|28|27|28|29|30|31|32|35|34|35|36|45|38|39|40|42|42|43|44|45|0\n29|29|30|25|24|23|21|21|22|26|20|19|18|17|17|28|18|19|20|27|22|23|24|25|26|27|28|31|30|31|0\n46|45|44|44|43|41|41|38|38|35|34|34|33|33|32|31|30|29|28|27|26|25|25|40|26|27|28|29|30|31|32|37|36|35|36|37|39|39|40|42|42|43|47|45|46|47|0\n62|61|61|59|55|55|54|53|53|50|50|51|48|48|46|45|44|44|43|42|40|39|39|38|37|36|36|35|33|33|34|60|34|35|58|37|38|41|40|41|42|43|47|45|46|47|49|49|52|51|52|57|54|56|56|57|58|59|60|63|62|63|0\n10|10|8|8|9|12|13|9|11|11|12|13|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n70|68|67|66|66|65|65|64|63|56|53|53|52|52|51|51|57|50|49|48|47|47|59|60|46|45|44|42|42|41|39|39|38|37|37|62|38|40|40|41|43|43|44|45|46|61|48|49|50|58|55|54|54|55|56|57|58|59|60|61|62|63|64|71|69|67|68|69|70|71|0\n42|41|40|39|38|37|36|36|35|33|33|29|28|28|30|27|26|24|23|23|25|32|24|25|26|27|31|29|30|31|32|34|34|35|43|37|38|39|40|41|42|43|0\n12|12|11|10|10|9|9|15|14|11|13|13|14|15|0\n27|26|26|25|24|24|22|21|20|17|17|18|16|16|23|19|18|19|20|21|22|23|29|25|28|27|28|29|0\n15|14|11|11|10|9|9|13|10|12|12|13|14|15|0\n13|13|11|10|10|9|9|15|12|11|12|14|14|15|0\n26|25|25|24|22|22|20|18|18|17|16|15|15|21|16|17|19|19|20|21|23|23|24|27|26|27|0\n52|50|50|51|49|47|46|43|43|44|42|41|39|38|38|40|37|34|33|32|32|35|30|28|28|29|31|29|30|31|36|33|34|35|36|37|48|39|40|41|42|45|44|45|46|47|48|49|53|51|52|53|0\n27|26|26|25|23|22|22|21|19|19|18|17|16|16|29|17|18|20|20|21|24|23|24|25|28|27|28|29|0\n42|41|40|40|39|38|37|36|33|32|31|28|28|29|26|26|25|25|24|23|23|35|24|34|27|27|30|29|30|31|32|33|34|35|36|37|38|39|43|41|42|43|0\n12|12|13|11|9|9|10|15|10|11|14|13|14|15|0\n54|53|53|52|51|50|48|48|47|46|46|56|57|43|42|42|44|40|40|39|37|36|36|35|32|32|33|31|31|59|34|33|34|35|38|37|38|39|41|41|45|43|44|45|58|47|49|49|50|51|52|55|54|55|56|57|58|59|0\n60|58|56|56|57|55|54|53|52|52|51|49|49|47|44|43|41|41|42|40|40|39|38|37|36|35|34|33|32|32|48|33|34|35|36|37|38|39|46|45|42|43|44|45|46|47|48|50|50|51|61|53|54|55|59|57|58|59|60|61|0\n35|30|29|28|26|26|25|22|22|23|21|21|31|20|19|19|33|34|20|32|24|23|24|25|27|27|28|29|30|31|32|33|34|35|0\n23|22|19|19|18|16|16|15|14|13|13|21|14|15|17|17|18|20|20|21|22|23|0\n21|18|17|15|15|14|13|12|12|19|20|13|14|16|16|17|18|19|20|21|0\n16|16|17|15|14|13|12|11|11|19|12|13|14|15|18|17|18|19|0\n15|12|11|10|10|9|9|14|13|11|12|13|14|15|0\n30|28|27|27|26|25|24|23|21|21|20|19|18|17|17|31|18|19|20|22|22|23|24|25|26|29|28|29|30|31|0\n53|52|49|48|48|50|47|46|45|45|54|55|42|41|40|40|43|39|38|37|35|34|34|33|32|31|30|30|57|31|32|33|36|35|36|37|38|39|44|41|42|43|44|56|46|47|51|49|50|51|52|53|54|55|56|57|0\n49|48|48|47|45|44|42|42|43|41|40|40|38|37|36|32|31|31|33|34|30|28|28|27|27|39|29|29|30|35|32|33|34|35|36|37|38|39|51|41|46|43|44|45|46|47|50|49|50|51|0\n42|41|39|39|38|35|35|34|34|33|32|32|31|28|27|27|29|25|24|23|23|26|24|25|26|30|28|29|30|31|43|33|37|36|36|37|38|40|40|41|42|43|0\n20|20|18|15|14|14|13|13|12|12|19|17|16|15|16|17|18|19|21|21|0\n65|63|62|61|58|58|57|57|56|55|54|52|52|51|49|49|48|44|43|43|45|46|41|39|39|38|37|36|36|35|34|34|64|35|42|37|38|40|40|41|42|47|44|45|46|47|48|50|50|51|53|53|54|55|56|60|59|59|60|61|62|63|64|65|0\n23|22|22|21|19|19|18|17|17|15|14|14|16|15|16|25|18|20|20|21|24|23|24|25|0\n9|9|8|7|7|11|8|10|10|11|0\n34|33|30|29|28|28|31|27|25|24|24|23|23|21|21|20|19|19|20|22|22|35|26|25|26|27|32|29|30|31|32|33|34|35|0\n33|33|32|31|31|30|28|26|26|24|24|23|22|19|19|20|21|29|20|21|22|23|25|25|27|27|28|29|30|35|32|34|34|35|0\n30|29|28|27|27|26|24|23|23|19|19|20|18|17|17|22|18|21|20|21|22|25|24|25|26|31|28|29|30|31|0\n28|27|26|26|25|24|22|18|18|19|20|17|16|16|23|17|21|19|20|21|22|23|24|25|29|27|28|29|0\n43|42|41|38|37|36|35|34|33|32|29|28|27|27|30|26|25|24|23|23|39|40|24|25|26|31|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n45|43|42|40|39|39|37|36|36|35|34|33|32|30|29|26|26|27|25|24|24|31|44|25|28|27|28|29|30|31|32|33|34|35|38|37|38|41|40|41|42|43|44|45|0\n55|53|52|52|51|49|49|50|56|48|47|43|43|44|45|41|41|40|39|38|37|36|35|35|34|33|32|31|31|59|32|33|34|58|36|37|38|39|40|42|42|46|44|45|46|47|48|57|50|51|54|53|54|55|56|57|58|59|0\n38|37|37|36|34|33|32|31|31|30|30|40|41|28|27|27|26|25|24|23|23|43|24|25|26|29|28|29|42|35|32|33|34|35|36|39|38|39|40|41|42|43|0\n29|29|28|27|26|26|24|23|21|20|20|18|18|17|17|25|19|19|22|21|22|23|24|25|31|27|28|30|30|31|0\n16|15|15|12|12|11|10|10|14|11|13|13|14|17|16|17|0\n9|9|8|7|7|11|8|10|10|11|0\n5|4|4|5|0\n33|32|32|31|30|30|29|27|26|25|24|22|22|21|20|19|19|28|20|21|23|23|24|25|26|27|28|29|35|31|34|33|34|35|0\n50|49|49|47|46|43|43|44|41|41|39|38|37|36|35|35|34|29|29|30|28|28|32|27|27|48|33|31|30|31|32|33|34|40|36|37|38|39|40|42|42|45|44|45|46|47|48|51|50|51|0\n34|33|33|32|31|30|27|25|25|24|22|21|21|23|19|19|20|29|20|28|22|23|24|26|26|27|28|29|30|31|32|35|34|35|0\n56|55|54|53|52|52|51|50|47|47|46|44|44|43|41|41|40|36|35|35|34|34|38|33|32|31|30|30|49|31|32|33|39|37|36|37|38|39|40|42|42|43|45|45|46|48|48|49|50|51|57|53|54|55|56|57|0\n17|16|15|15|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0\n32|31|30|29|28|28|25|25|22|21|21|23|20|19|18|18|27|19|20|24|22|23|24|26|26|27|33|29|30|31|32|33|0\n42|41|41|40|38|37|37|35|33|33|32|30|29|29|28|27|26|25|24|23|23|36|24|25|26|27|28|31|30|31|32|34|34|35|36|39|38|39|40|43|42|43|0\n8|7|7|6|6|9|8|9|0\n31|31|30|29|29|25|25|22|22|23|21|21|20|19|18|18|28|19|20|27|24|23|24|26|26|27|28|33|30|32|32|33|0\n50|49|46|45|44|43|42|42|47|41|39|39|37|37|38|36|35|33|30|30|31|29|28|27|27|34|28|29|32|31|32|33|34|35|36|51|38|40|40|41|48|43|44|45|46|47|48|49|50|51|0\n15|14|13|12|10|9|9|11|10|11|12|13|14|15|0\n35|31|31|30|29|28|28|27|25|24|23|23|22|21|20|19|19|34|20|21|22|26|24|25|26|27|33|29|30|32|32|33|34|35|0\n56|56|57|54|54|55|52|49|49|47|47|46|44|44|43|43|51|53|42|39|39|38|37|37|41|61|35|35|34|33|33|63|34|36|36|62|38|40|40|41|42|60|45|45|46|48|48|50|50|51|52|53|59|55|58|57|58|59|60|61|62|63|0\n18|17|16|15|14|13|12|11|11|19|12|13|14|15|16|17|18|19|0\n21|20|19|19|22|16|15|15|14|13|13|18|14|17|16|17|18|23|20|21|22|23|0\n14|14|11|11|10|9|9|13|10|12|12|13|15|15|0\n48|46|45|45|44|44|43|42|41|40|38|37|37|36|36|50|51|34|34|33|32|31|30|29|28|28|53|29|30|31|32|33|35|35|52|39|38|39|40|41|42|43|49|47|46|47|48|49|50|51|52|53|0\n22|22|20|19|16|16|17|15|14|13|13|21|14|15|18|17|18|19|20|21|23|23|0\n27|27|25|24|24|23|22|21|20|19|18|16|16|17|29|17|18|19|20|21|22|23|26|25|26|28|28|29|0\n37|34|34|33|32|31|30|29|28|27|25|25|24|23|22|21|20|20|36|21|22|23|24|26|26|27|28|29|30|31|32|33|35|35|36|37|0\n38|37|36|35|34|34|39|33|32|31|30|27|27|28|29|26|25|22|22|23|24|23|24|25|26|41|28|29|30|31|32|33|40|35|36|37|38|39|40|41|0\n68|66|66|65|64|63|63|62|61|59|55|55|54|52|51|51|50|49|48|48|57|47|46|44|43|43|42|41|39|39|38|37|36|36|60|37|38|40|40|41|42|45|44|45|46|47|58|49|50|53|52|53|54|56|56|57|58|59|60|61|62|69|64|65|67|67|68|69|0\n34|32|32|33|30|29|28|26|25|24|23|22|21|20|19|19|27|31|20|21|22|23|24|25|26|27|28|29|30|31|35|33|34|35|0\n16|15|15|13|12|10|10|11|14|11|12|13|14|17|16|17|0\n31|29|28|28|25|25|26|24|21|20|19|19|22|18|17|17|18|23|20|21|22|23|24|27|26|27|30|29|30|31|0\n55|52|52|51|50|48|47|47|46|44|44|41|41|40|38|38|39|37|35|34|34|32|32|31|30|29|29|54|30|31|33|33|36|35|36|37|43|39|40|42|42|43|45|45|46|49|48|49|50|51|53|53|54|55|0\n24|23|23|22|21|18|18|16|15|15|14|14|20|17|16|17|19|19|20|21|22|25|24|25|0\n55|54|52|51|50|49|46|45|44|43|42|40|39|38|38|37|36|35|35|47|33|32|32|31|30|29|29|53|30|31|34|33|34|48|36|37|41|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|0\n41|41|40|39|39|36|36|35|34|32|32|31|30|29|28|27|25|24|23|23|26|38|24|25|26|27|28|29|30|31|33|33|34|35|37|37|38|43|40|42|42|43|0\n43|40|39|38|37|37|36|35|33|32|32|31|30|29|27|27|26|24|24|23|23|42|25|25|26|28|28|29|30|31|34|33|34|35|36|41|38|39|40|41|42|43|0\n32|32|29|24|24|23|23|26|27|28|22|21|20|19|18|18|31|19|20|21|22|30|25|25|26|27|28|29|30|31|33|33|0\n74|74|73|70|69|67|65|65|64|63|62|62|61|59|58|57|57|56|54|53|50|49|49|51|47|46|45|45|44|42|41|41|40|39|39|55|71|72|40|43|42|43|44|48|46|47|48|52|50|51|52|53|54|55|56|60|58|59|60|61|68|63|64|66|66|67|68|69|70|71|72|73|75|75|0\n21|17|16|16|18|15|15|12|12|13|14|13|14|20|19|17|18|19|20|21|0\n38|36|35|35|34|33|33|32|30|30|29|27|26|25|23|23|22|21|21|28|22|24|24|25|26|27|28|29|31|31|32|39|34|37|36|37|38|39|0\n42|41|39|39|38|37|36|35|35|32|32|33|31|29|28|27|26|25|24|23|23|30|24|25|26|27|28|29|30|31|34|33|34|43|36|37|38|40|40|41|42|43|0\n26|25|24|23|22|21|21|19|18|17|16|15|15|20|16|17|18|19|20|27|22|23|24|25|26|27|0\n30|29|28|27|27|25|22|19|19|20|18|17|17|23|24|26|18|21|20|21|22|23|24|25|26|31|28|29|30|31|0\n43|43|44|45|42|41|40|39|39|47|37|37|38|36|34|34|35|50|31|31|30|29|28|27|27|33|28|29|30|32|32|33|51|35|36|49|38|48|40|41|42|46|44|45|46|47|48|49|50|51|0\n70|70|68|67|64|63|61|60|59|58|58|57|56|56|65|55|53|53|52|51|50|49|47|45|43|43|42|42|41|39|38|38|37|37|48|69|40|39|40|41|46|44|44|45|46|47|48|49|50|51|52|54|54|55|66|57|62|59|60|61|62|63|64|65|66|67|68|69|71|71|0\n11|11|10|10|8|8|9|9|13|12|12|13|0\n11|9|7|7|8|10|8|9|10|11|0\n13|13|12|11|9|9|10|15|10|11|12|14|14|15|0\n32|31|31|30|29|28|27|27|34|35|25|24|23|23|22|21|20|20|37|21|22|26|24|25|26|36|28|29|30|33|32|33|34|35|36|37|0\n18|17|17|15|14|13|12|11|11|16|12|13|14|15|16|19|18|19|0\n25|23|23|22|19|19|20|16|16|14|14|15|18|15|17|17|18|21|20|21|22|24|24|25|0\n72|71|70|70|68|67|66|65|63|63|62|61|59|59|58|56|55|53|51|51|50|49|49|48|48|47|46|43|43|42|41|41|40|39|38|38|69|39|40|45|42|44|44|45|46|47|57|54|50|52|52|53|54|55|56|57|58|60|60|61|62|64|64|65|66|67|68|69|73|71|72|73|0\n10|8|7|7|9|11|8|9|10|11|0\n37|37|36|34|33|33|32|32|39|31|29|27|27|28|26|24|23|23|22|22|41|25|24|25|26|30|28|29|30|31|40|35|34|35|36|38|38|39|40|41|0\n60|60|57|57|58|55|55|54|52|52|51|51|62|63|48|47|47|46|45|45|44|43|42|40|40|39|37|36|36|35|34|34|65|35|38|37|38|39|41|41|42|43|44|50|46|49|48|49|50|64|53|53|54|56|56|59|58|59|61|61|62|63|64|65|0\n44|43|42|42|39|38|38|37|34|34|33|32|31|30|29|29|28|26|25|25|24|24|41|27|26|27|28|36|30|31|32|33|35|35|36|37|40|39|40|41|45|43|44|45|0\n21|18|18|17|16|14|14|13|12|12|20|13|15|15|16|17|19|19|20|21|0\n48|48|46|45|44|42|42|39|36|35|35|34|33|33|38|40|32|29|29|28|27|26|26|31|47|27|28|30|30|31|32|41|34|37|36|37|38|39|40|41|43|43|44|45|46|47|49|49|0\n55|54|53|52|51|50|49|48|47|47|56|57|45|44|43|43|42|41|40|38|37|36|36|35|34|33|32|31|31|59|32|33|34|35|39|37|38|39|40|41|42|46|44|45|46|58|48|49|50|51|52|53|54|55|56|57|58|59|0\n49|49|48|46|45|45|44|44|43|42|40|38|37|36|35|35|34|33|32|31|31|30|28|27|27|29|28|29|30|41|32|33|34|39|36|37|38|39|40|41|42|43|51|47|46|47|48|50|50|51|0\n64|62|61|61|59|58|57|57|53|53|52|52|55|51|50|49|47|46|45|43|42|42|44|41|40|39|39|38|36|35|35|34|34|37|36|37|38|65|40|41|48|43|44|45|46|47|48|49|50|51|56|54|54|55|56|60|58|59|60|63|62|63|64|65|0\n24|24|22|21|18|17|17|19|15|15|14|14|23|16|16|20|18|19|20|21|22|23|25|25|0\n39|39|38|37|36|34|33|32|32|35|31|28|28|27|24|23|23|25|22|22|30|26|24|25|26|27|29|29|30|31|41|33|34|35|36|37|38|40|40|41|0\n25|24|19|19|20|18|18|22|17|16|16|15|15|27|26|17|23|21|20|21|22|23|24|25|26|27|0\n44|43|42|41|40|39|38|37|37|36|33|33|32|32|31|30|28|27|27|26|25|24|24|25|26|29|28|29|30|31|35|34|34|35|36|45|38|39|40|41|42|43|44|45|0\n86|85|85|83|80|80|78|78|77|76|75|74|72|72|69|69|68|67|66|66|65|63|62|59|58|58|60|61|56|55|55|54|53|52|52|51|49|48|47|47|46|45|45|84|46|50|48|49|50|51|82|53|54|57|56|57|64|59|60|61|62|63|64|65|71|67|68|70|70|71|73|73|74|75|76|77|79|79|81|81|82|83|84|87|86|87|0\n20|20|18|17|16|15|14|13|12|12|19|13|14|15|16|17|18|19|21|21|0\n55|51|49|47|46|46|45|44|44|42|42|41|40|39|38|37|37|52|36|34|33|33|32|30|30|29|29|54|31|31|32|35|34|35|36|53|38|39|40|41|43|43|50|45|48|47|48|49|50|51|52|53|54|55|0\n24|24|22|19|19|20|17|17|16|14|14|15|23|15|16|18|18|21|20|21|22|23|25|25|0\n40|39|38|36|34|34|33|33|31|31|32|30|28|28|26|25|24|23|22|22|27|23|24|25|26|27|29|29|30|41|32|37|35|35|36|37|38|39|40|41|0\n21|20|18|18|14|14|15|13|12|12|17|13|16|15|16|17|19|19|20|21|0\n24|21|21|22|20|20|19|17|16|16|14|14|15|15|18|17|18|19|25|23|22|23|24|25|0\n48|39|39|40|41|42|36|36|37|38|44|35|35|46|34|34|31|31|30|29|27|27|26|26|33|28|28|29|30|32|32|33|49|47|45|37|38|43|40|41|42|43|44|45|46|47|48|49|0\n38|38|35|35|34|31|30|29|28|27|27|32|26|25|24|23|21|21|22|37|22|23|24|25|26|33|28|29|30|31|32|33|34|36|36|37|39|39|0\n39|39|40|33|32|31|30|29|28|27|27|34|35|36|24|24|25|23|22|22|38|23|26|25|26|37|28|29|30|31|32|33|34|35|36|37|38|41|40|41|0\n39|39|40|38|36|36|31|30|29|29|32|33|28|27|26|25|24|23|22|22|35|23|24|25|26|27|28|34|30|31|32|33|34|35|37|37|38|41|40|41|0\n81|80|80|79|77|76|75|75|74|72|72|71|70|69|68|67|67|65|62|61|60|59|58|58|63|56|56|55|54|51|51|50|49|48|47|46|45|45|44|43|43|66|44|53|46|47|48|49|50|52|52|53|54|55|57|57|64|59|60|61|62|63|64|65|66|83|68|69|70|71|73|73|74|78|76|77|78|79|82|81|82|83|0\n39|37|35|35|34|32|31|29|29|28|28|27|26|25|24|23|22|21|21|38|22|23|24|25|26|27|33|30|30|31|32|33|34|36|36|37|38|39|0\n40|37|37|36|36|39|35|34|33|33|30|29|28|28|31|27|26|25|24|23|23|43|24|25|26|27|32|29|30|31|32|42|34|35|41|38|38|39|40|41|42|43|0\n18|18|14|13|12|11|11|15|16|17|12|13|14|15|16|17|19|19|0\n19|15|14|14|16|13|12|11|11|18|12|13|17|15|16|17|18|19|0\n36|35|34|33|33|32|30|29|29|28|28|38|39|26|26|25|24|23|22|22|41|23|24|25|27|27|40|31|30|31|32|37|34|35|36|37|38|39|40|41|0\n14|14|13|11|10|9|9|12|10|11|12|13|15|15|0\n66|65|64|64|62|60|59|59|56|55|55|57|53|53|52|51|50|49|46|45|44|43|43|42|40|40|39|38|38|37|36|35|35|63|36|37|48|39|41|41|42|47|44|45|46|47|48|49|50|51|52|54|54|58|56|57|58|61|60|61|62|63|67|65|66|67|0\n66|65|64|63|60|59|58|57|57|61|55|54|54|53|46|45|45|47|44|44|49|43|43|51|42|42|41|40|38|37|36|35|35|39|36|37|38|39|40|41|67|52|50|48|46|47|48|49|50|51|52|53|56|55|56|62|58|59|60|61|62|63|64|65|66|67|0\n42|41|41|40|39|38|36|36|35|35|44|45|32|32|33|31|30|29|28|27|26|25|25|47|26|27|28|29|30|31|34|33|34|46|37|37|38|39|40|43|42|43|44|45|46|47|0\n47|47|46|45|45|43|42|39|38|37|37|36|34|32|30|30|31|29|28|27|27|35|26|26|44|41|28|29|33|31|32|33|34|35|36|40|38|39|40|41|42|43|44|49|46|48|48|49|0\n48|46|46|44|44|43|42|40|40|41|39|37|36|36|35|34|33|31|30|30|29|27|27|26|26|28|28|29|32|31|32|33|34|35|38|37|38|39|49|41|42|43|45|45|47|47|48|49|0\n19|18|18|17|16|16|21|14|14|13|13|23|15|15|22|17|20|19|20|21|22|23|0\n45|45|44|43|43|39|39|40|38|36|34|34|33|33|31|31|29|29|28|27|26|25|25|42|26|27|28|30|30|32|32|37|35|35|36|37|38|41|40|41|42|47|44|46|46|47|0\n41|39|38|37|36|35|33|32|31|30|30|28|28|27|26|25|23|23|22|22|40|24|24|25|26|27|29|29|34|31|32|33|34|35|36|37|38|39|40|41|0\n39|38|35|35|34|33|32|31|29|28|27|26|26|25|24|23|22|21|21|37|22|23|24|25|30|27|28|29|30|31|32|33|34|36|36|37|38|39|0\n57|57|56|55|54|54|53|52|50|50|49|49|60|61|48|45|45|46|43|42|41|40|40|39|37|37|36|35|34|33|33|63|34|35|36|38|38|39|44|41|42|43|44|47|46|47|48|62|51|51|52|53|59|55|56|58|58|59|60|61|62|63|0\n59|59|58|57|56|55|55|54|53|52|51|50|49|48|47|46|46|62|63|44|44|43|40|40|41|39|37|37|36|35|34|34|65|35|36|38|38|39|42|41|42|43|45|45|64|47|48|49|50|51|52|53|54|61|56|57|58|60|60|61|62|63|64|65|0\n67|65|64|62|61|60|59|58|58|57|56|55|54|51|51|52|50|49|47|47|42|41|41|43|44|40|40|38|38|37|36|35|35|66|36|37|39|39|46|45|42|43|44|45|46|48|48|49|50|53|52|53|54|55|56|57|63|59|60|61|62|63|64|65|66|67|0\n62|61|60|60|63|56|55|55|54|54|58|52|51|50|49|48|48|47|46|46|44|43|42|41|40|39|37|36|35|35|34|34|45|38|36|37|38|39|40|41|42|43|44|45|65|47|53|49|50|51|52|53|59|57|56|57|58|59|64|61|62|63|64|65|0\n47|46|46|45|43|42|42|41|40|40|49|39|38|36|36|34|33|31|31|32|30|28|28|27|27|51|29|29|30|35|32|33|34|35|37|37|38|39|50|41|44|43|44|45|48|47|48|49|50|51|0\n19|18|18|20|16|15|13|13|12|12|17|14|14|15|16|17|21|19|20|21|0\n45|38|38|39|35|35|36|34|33|33|41|42|31|31|30|29|28|26|26|25|24|24|44|25|27|27|28|29|30|32|32|43|34|37|36|37|40|39|40|41|42|43|44|45|0\n10|8|8|7|7|11|9|9|10|11|0\n8|7|6|6|9|7|8|9|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n21|20|17|17|16|15|13|13|12|12|19|14|14|15|16|18|18|19|20|21|0\n42|41|40|39|38|36|35|35|34|33|32|31|29|29|30|28|26|26|24|23|23|25|24|25|27|27|28|43|30|31|32|33|34|37|36|37|38|39|40|41|42|43|0\n31|29|28|27|25|24|23|22|22|21|19|19|18|17|17|30|18|20|20|21|26|23|24|25|26|27|28|29|30|31|0\n10|9|7|7|8|11|8|9|10|11|0\n29|27|26|24|24|23|22|21|19|18|18|17|16|16|28|17|20|19|20|21|22|23|25|25|26|27|28|29|0\n17|15|14|14|13|11|10|10|12|11|12|13|16|15|16|17|0\n51|49|49|48|47|46|46|52|53|44|43|42|42|41|41|55|39|38|37|37|35|34|33|32|32|31|30|30|57|31|36|33|34|35|36|40|38|39|40|56|45|43|44|45|54|47|48|50|50|51|52|53|54|55|56|57|0\n61|60|58|57|55|55|54|53|52|50|50|49|48|44|43|43|45|46|42|41|40|39|38|37|36|35|34|33|32|32|59|33|34|35|36|37|38|39|40|41|42|47|44|45|46|47|48|49|51|51|52|53|54|56|56|57|58|59|60|61|0\n30|29|29|27|24|23|22|20|19|18|18|21|25|17|17|28|26|19|20|21|22|23|24|25|26|27|28|31|30|31|0\n8|8|7|6|6|7|9|9|0\n39|39|38|36|35|35|33|33|32|32|41|30|29|28|27|27|25|25|24|23|23|43|24|26|26|31|28|29|30|31|42|34|34|37|36|37|38|40|40|41|42|43|0\n50|50|49|45|44|42|41|41|40|39|39|46|38|37|36|34|34|33|32|31|30|29|27|27|28|48|28|29|30|31|32|33|35|35|36|37|38|47|40|43|42|43|44|45|46|47|48|49|51|51|0\n28|26|25|25|23|23|22|22|19|19|18|17|16|16|21|17|18|20|20|21|29|24|24|27|26|27|28|29|0\n20|18|18|17|15|15|14|14|13|12|12|13|21|16|16|17|19|19|20|21|0\n52|52|50|49|48|45|44|43|42|41|41|46|40|39|38|36|34|33|32|31|31|30|30|29|28|28|51|29|37|35|32|33|34|35|36|37|38|39|40|47|42|43|44|45|46|47|48|49|50|51|53|53|0\n42|40|40|39|38|38|37|35|35|31|30|29|29|32|28|27|26|24|24|23|23|34|25|25|26|27|28|33|30|31|32|33|34|36|36|37|43|39|41|41|42|43|0\n21|19|19|17|16|15|14|13|12|12|18|13|14|15|16|17|18|20|20|21|0\n17|14|14|13|12|11|10|10|16|11|12|13|15|15|16|17|0\n20|20|19|17|15|15|14|13|12|12|18|13|14|16|16|17|18|19|21|21|0\n21|20|18|16|16|15|14|13|12|12|19|13|14|15|17|17|18|19|20|21|0\n11|8|7|7|9|10|8|9|10|11|0\n12|11|10|10|8|8|9|9|13|11|12|13|0\n42|42|41|39|38|38|37|34|33|32|30|30|31|29|28|26|26|25|24|23|23|36|24|25|27|27|28|29|35|31|32|33|34|35|36|37|40|39|40|41|43|43|0\n44|44|45|42|42|41|38|38|37|36|36|33|33|32|31|30|29|28|28|27|26|25|25|47|26|27|35|29|30|31|32|34|34|35|40|37|39|39|40|41|43|43|46|45|46|47|0\n5|5|6|7|6|7|0\n17|16|13|11|11|10|10|14|15|12|12|13|14|15|16|17|0\n35|33|33|34|32|29|28|27|26|26|30|25|24|23|22|20|20|21|37|21|22|23|24|25|31|27|28|29|30|31|32|36|34|35|36|37|0\n25|24|24|23|23|22|21|20|17|16|16|15|15|19|18|17|18|19|20|21|22|27|26|25|26|27|0\n21|19|18|18|15|15|14|13|12|12|17|13|14|16|16|17|20|19|20|21|0\n38|35|34|34|33|31|30|30|32|29|28|26|25|24|23|23|22|22|21|21|39|27|24|25|26|27|28|29|37|31|32|33|36|35|36|37|38|39|0\n23|23|22|22|20|19|18|15|15|16|14|14|21|17|16|17|18|19|20|21|25|24|24|25|0\n30|29|28|27|25|24|24|23|22|21|21|20|18|17|17|19|18|19|20|31|22|23|26|25|26|27|28|29|30|31|0\n29|27|26|25|25|23|21|21|20|19|18|17|16|16|24|17|18|19|20|22|22|23|24|28|26|27|28|29|0\n47|45|44|44|46|43|42|40|40|39|38|37|36|35|34|34|32|31|30|29|28|27|26|26|33|27|28|29|30|31|32|33|49|35|36|37|38|39|41|41|42|43|48|45|46|47|48|49|0\n19|14|13|13|15|16|11|11|12|18|12|17|14|15|16|17|18|19|0\n76|75|69|67|67|68|70|66|65|64|63|63|72|62|61|61|74|77|60|59|59|58|56|56|54|53|52|51|48|48|49|46|45|45|44|43|42|41|41|55|42|43|44|47|46|47|50|49|50|51|52|53|54|55|57|57|58|79|60|78|62|73|64|65|66|71|68|69|70|71|72|73|74|75|76|77|78|79|0\n39|36|35|35|34|29|29|30|28|27|27|32|26|25|22|22|23|21|21|38|24|23|24|25|26|33|28|31|30|31|32|33|34|37|36|37|38|39|0\n9|8|6|6|7|7|8|9|0\n39|38|38|40|37|37|42|43|36|35|34|33|31|29|29|28|27|27|26|25|24|24|45|25|26|32|28|30|30|31|32|33|34|35|36|44|41|39|40|41|42|43|44|45|0\n41|37|36|35|34|33|33|38|32|30|30|29|28|26|26|25|24|23|22|22|40|23|24|25|27|27|28|29|31|31|32|39|34|35|36|37|38|39|40|41|0\n29|27|26|24|24|23|21|20|20|18|18|17|16|16|28|17|19|19|22|21|22|23|25|25|26|27|28|29|0\n34|33|32|32|31|29|29|28|27|25|25|24|23|20|20|19|19|22|21|21|22|23|24|26|26|27|28|30|30|31|35|33|34|35|0\n49|47|45|45|44|39|38|37|37|36|35|35|41|42|34|33|32|30|30|29|28|27|26|26|48|27|28|29|31|31|32|33|34|43|36|40|38|39|40|41|42|43|44|46|46|47|48|49|0\n8|7|6|6|9|7|8|9|0\n46|46|45|45|48|44|43|41|39|39|40|37|37|36|36|50|35|33|32|31|30|29|28|27|27|34|28|29|30|31|32|33|34|35|51|38|38|42|40|41|42|43|44|49|47|47|48|49|50|51|0\n54|54|55|49|49|50|51|52|48|47|46|45|44|43|42|41|40|38|38|37|37|35|33|32|32|31|30|30|36|31|34|33|34|35|36|57|39|39|40|41|42|43|44|45|46|47|48|53|50|51|52|53|56|55|56|57|0\n17|14|14|13|11|11|10|10|16|12|12|13|15|15|16|17|0\n53|53|54|52|50|50|49|43|43|44|45|46|41|41|42|40|39|38|37|37|56|57|36|35|34|33|32|31|31|59|32|33|34|35|36|58|38|39|40|48|42|47|44|45|46|47|48|49|51|51|52|55|54|55|56|57|58|59|0\n48|45|44|43|41|41|42|46|40|39|39|38|36|36|34|33|30|29|29|31|28|27|26|26|35|27|28|32|30|31|32|33|34|35|37|37|38|49|40|47|42|43|44|45|46|47|48|49|0\n49|48|47|45|43|43|41|40|39|39|38|37|36|35|34|33|32|31|29|29|28|27|26|26|46|27|28|30|30|31|32|33|34|35|36|37|38|42|40|41|42|44|44|45|46|47|48|49|0\n32|31|29|28|28|27|26|26|25|24|22|21|20|19|18|18|23|19|20|21|22|23|24|25|33|27|30|29|30|31|32|33|0\n62|61|61|60|58|57|56|56|55|53|53|52|48|48|47|46|45|45|50|43|43|40|40|39|38|38|37|36|35|34|33|33|34|35|36|37|42|39|41|41|42|44|44|51|46|47|49|49|50|51|52|54|54|55|59|57|58|59|60|63|62|63|0\n23|21|20|18|18|17|14|14|15|13|13|22|16|15|16|17|19|19|20|21|22|23|0\n29|26|26|24|22|22|21|21|20|18|18|17|16|16|28|17|19|19|20|25|23|23|24|25|27|27|28|29|0\n44|42|42|41|41|40|38|38|34|34|35|33|32|28|28|27|26|26|30|25|24|24|37|25|31|27|29|29|30|31|32|33|36|35|36|37|39|39|40|45|43|43|44|45|0\n31|30|30|32|29|25|24|24|26|23|22|21|20|19|18|18|28|19|20|21|22|23|27|25|26|27|28|29|33|31|32|33|0\n7|7|6|6|9|8|8|9|0\n28|28|25|24|24|23|22|18|18|19|20|17|16|16|27|17|21|19|20|21|22|23|26|25|26|27|29|29|0\n38|37|35|34|33|33|32|31|30|29|29|27|25|25|23|22|22|21|21|28|24|23|24|26|26|27|28|39|30|31|32|36|34|35|36|37|38|39|0\n34|34|35|36|33|32|31|31|38|30|28|26|25|25|23|22|22|21|21|29|24|23|24|27|26|27|28|29|30|39|32|33|37|35|36|37|38|39|0\n41|39|38|37|36|34|34|35|33|32|32|42|43|31|30|27|27|28|26|25|24|24|45|25|26|29|28|29|30|31|44|33|40|35|36|37|38|39|40|41|42|43|44|45|0\n32|32|30|29|29|28|27|26|25|24|24|34|22|21|20|19|19|23|20|21|22|23|35|25|26|27|28|31|30|31|33|33|34|35|0\n33|33|34|31|31|29|29|28|27|26|26|36|25|23|21|21|20|20|24|22|22|23|24|25|37|27|28|30|30|32|32|35|34|35|36|37|0\n23|23|21|20|19|19|18|16|15|14|14|17|25|15|16|17|18|22|20|21|22|24|24|25|0\n31|31|30|30|33|28|28|27|27|35|23|23|22|21|21|25|20|20|37|26|22|24|24|25|26|36|29|29|34|32|32|33|34|35|36|37|0\n58|55|55|54|54|53|52|50|50|49|47|47|46|45|44|44|40|40|37|36|35|35|38|34|33|32|31|31|42|43|32|33|34|39|36|37|38|39|41|41|42|43|59|45|46|48|48|49|51|51|52|53|57|56|56|57|58|59|0\n19|18|16|15|13|13|12|11|11|17|12|14|14|15|16|17|18|19|0\n57|52|51|50|49|46|45|45|47|44|43|43|42|40|40|39|38|37|35|35|36|54|32|32|33|31|30|30|56|31|34|33|34|55|36|37|38|39|41|41|42|53|44|48|46|47|48|49|50|51|52|53|54|55|56|57|0\n44|42|41|41|40|39|39|45|37|36|35|35|34|32|31|31|30|28|28|27|26|25|25|47|26|27|29|29|30|33|32|33|34|38|36|37|38|46|40|43|42|43|44|45|46|47|0\n12|8|8|9|10|11|13|9|10|11|12|13|0\n46|46|44|43|42|40|40|38|38|37|36|35|32|32|31|30|30|29|27|27|26|25|25|45|26|28|28|29|34|31|33|33|34|35|36|37|39|39|41|41|42|43|44|45|47|47|0\n30|30|27|26|25|25|24|23|21|21|20|19|18|17|17|29|18|19|20|22|22|23|24|28|26|27|28|29|31|31|0\n50|49|49|46|45|45|43|42|42|41|39|39|36|35|35|37|34|32|31|30|29|28|27|27|33|48|28|29|30|31|32|33|34|38|36|37|38|40|40|41|44|43|44|47|46|47|48|51|50|51|0\n25|24|22|20|19|19|18|17|16|15|14|14|23|15|16|17|18|21|20|21|22|23|24|25|0\n33|30|30|26|25|25|24|23|23|28|21|20|19|19|18|18|32|22|20|21|22|29|24|27|26|27|28|29|31|31|32|33|0\n31|31|30|23|23|24|25|26|27|28|29|21|20|19|18|18|22|19|20|21|22|33|24|25|26|27|28|29|30|32|32|33|0\n35|33|28|27|27|29|26|25|25|31|24|23|22|21|20|19|19|34|20|21|22|23|24|32|26|30|28|29|30|31|32|33|34|35|0\n28|27|26|26|25|23|22|20|19|18|18|17|16|16|24|17|21|19|20|21|22|23|24|25|29|27|28|29|0\n20|19|19|17|16|12|12|13|14|15|18|13|14|15|16|17|18|21|20|21|0\n28|27|24|23|22|21|21|20|20|19|18|17|16|16|29|17|18|19|26|25|22|23|24|25|26|27|28|29|0\n51|50|48|43|42|42|44|40|39|39|38|35|34|34|33|33|32|30|30|31|46|29|28|27|27|49|28|29|47|31|32|37|36|35|36|37|38|41|40|41|45|43|44|45|46|47|48|49|50|51|0\n28|28|27|26|22|21|20|20|23|19|18|17|16|16|25|17|18|19|24|21|22|23|24|25|26|27|29|29|0\n58|57|56|55|55|59|53|52|52|50|50|49|48|42|42|43|44|41|39|39|38|37|36|36|46|35|34|33|32|32|61|33|34|35|47|37|38|40|40|41|45|43|44|45|46|47|48|49|51|51|54|53|54|60|56|57|58|59|60|61|0\n30|29|28|27|26|25|24|24|23|22|20|19|18|17|17|21|18|19|20|21|22|23|31|25|26|27|28|29|30|31|0\n26|26|24|23|22|20|19|19|18|17|16|15|15|25|16|17|18|21|20|21|22|23|24|25|27|27|0\n25|22|21|21|20|19|18|16|16|15|14|14|24|15|17|17|18|19|20|23|22|23|24|25|0\n40|39|38|37|36|35|33|33|32|31|30|30|29|28|26|24|24|23|22|22|27|23|25|25|26|27|28|29|41|31|32|34|34|35|36|37|38|39|40|41|0\n33|30|29|28|26|25|24|24|23|22|21|21|20|19|18|18|32|19|20|31|22|23|27|25|26|27|28|29|30|31|32|33|0\n12|11|10|9|8|8|13|9|10|11|12|13|0\n51|50|49|47|46|46|45|45|44|43|41|41|40|39|39|53|34|33|33|32|32|36|37|31|30|29|29|55|30|31|38|35|34|35|36|37|38|54|40|42|42|43|44|52|48|47|48|49|50|51|52|53|54|55|0\n37|34|33|33|32|31|30|28|28|29|26|25|23|22|22|21|20|20|27|21|24|23|24|25|26|27|36|29|30|31|32|35|34|35|36|37|0\n54|53|53|52|50|47|46|45|45|44|43|43|42|40|39|39|38|37|36|35|32|31|31|33|30|29|29|51|30|34|32|33|34|35|36|37|38|41|40|41|42|49|44|48|46|47|48|49|50|51|52|55|54|55|0\n60|59|58|57|56|55|54|52|52|51|50|46|45|45|44|43|43|48|42|42|41|40|36|36|34|34|32|32|33|38|39|33|35|35|37|37|38|39|40|41|61|49|44|47|46|47|48|49|50|51|53|53|54|55|56|57|58|59|60|61|0\n29|27|22|22|21|20|20|24|25|19|18|17|16|16|28|17|18|19|26|21|23|23|24|25|26|27|28|29|0\n30|29|28|27|26|25|24|24|22|21|19|19|18|17|17|23|18|20|20|21|22|23|31|25|26|27|28|29|30|31|0\n65|63|62|59|57|56|56|55|52|52|53|51|50|50|60|49|48|47|45|44|44|43|42|41|40|38|37|37|36|35|34|34|64|35|36|39|38|39|40|41|42|43|46|45|46|47|48|49|61|51|54|53|54|55|58|57|58|59|60|61|62|63|64|65|0\n36|36|37|35|34|32|32|31|25|25|26|24|24|28|29|22|22|21|21|39|23|23|30|27|26|27|28|29|30|31|33|33|34|35|38|37|38|39|0\n23|22|20|19|17|16|16|15|14|13|13|21|14|15|18|17|18|19|20|21|22|23|0\n43|42|41|40|40|39|38|35|34|34|33|27|27|28|26|26|30|31|25|25|24|24|45|37|32|29|28|29|30|31|32|33|36|35|36|37|38|39|44|41|42|43|44|45|0\n15|14|13|12|12|11|10|10|17|11|16|13|14|15|16|17|0\n11|10|8|8|9|12|13|9|10|11|12|13|0\n15|15|16|17|14|13|12|11|11|19|12|13|14|18|16|17|18|19|0\n60|59|57|57|58|56|55|53|52|51|50|49|45|45|44|44|47|43|42|41|39|39|38|37|35|35|34|33|32|32|54|33|34|36|36|37|38|40|40|41|42|43|48|46|46|47|48|49|50|51|52|53|54|55|56|61|58|59|60|61|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n15|12|11|11|9|9|10|14|10|13|12|13|14|15|0\n11|8|8|7|7|10|9|9|10|11|0\n15|12|12|10|10|9|9|14|11|11|13|13|14|15|0\n31|30|28|26|26|27|25|24|20|19|19|21|18|17|17|23|18|22|20|21|22|23|24|25|29|27|28|29|30|31|0\n84|84|79|77|76|76|75|74|73|72|71|71|80|81|70|69|68|67|65|64|63|62|61|61|59|59|58|54|54|53|52|52|56|50|50|49|47|47|45|45|44|44|83|46|46|48|48|49|51|51|57|53|55|55|56|57|58|60|60|66|62|63|64|65|66|67|68|69|70|82|72|73|74|75|78|77|78|79|80|81|82|83|85|85|0\n22|22|20|19|17|16|15|15|14|13|13|21|14|18|16|17|18|19|20|21|23|23|0\n30|29|28|27|27|24|23|22|22|21|20|19|18|17|17|26|18|19|20|21|25|23|24|25|26|31|28|29|30|31|0\n18|17|17|16|15|13|12|11|11|14|12|13|14|15|16|19|18|19|0\n64|63|61|61|60|59|59|58|54|54|55|53|49|48|47|46|45|45|50|51|44|43|42|42|40|39|38|36|35|35|34|34|41|37|36|37|38|39|40|41|57|43|44|52|46|47|48|49|50|51|52|53|56|55|56|57|58|65|60|62|62|63|64|65|0\n30|29|29|27|26|23|23|22|22|21|18|18|19|17|17|28|20|19|20|21|25|24|24|25|26|27|28|31|30|31|0\n21|20|19|19|18|17|15|14|14|13|13|23|16|15|16|17|18|22|20|21|22|23|0\n16|14|14|15|12|11|10|10|13|11|12|13|17|15|16|17|0\n26|26|25|23|22|21|20|19|17|17|16|15|15|24|16|18|18|19|20|21|22|23|24|25|27|27|0\n73|72|64|64|65|63|62|61|61|60|59|58|57|57|68|69|55|54|53|53|52|51|48|48|47|44|43|43|42|42|41|39|38|38|40|50|71|39|40|41|46|45|44|45|46|47|49|49|50|51|52|56|54|55|56|70|58|59|60|67|62|63|66|65|66|67|68|69|70|71|72|73|0\n58|57|56|55|54|52|51|50|49|49|48|47|46|45|44|42|41|41|40|39|37|37|38|59|36|35|33|33|32|32|61|34|34|35|36|60|38|39|40|43|42|43|44|45|46|47|48|53|50|51|52|53|54|55|56|57|58|59|60|61|0\n32|32|30|28|27|26|26|25|23|22|22|21|20|19|18|18|31|19|20|21|24|23|24|25|29|27|28|29|30|31|33|33|0\n19|18|18|17|16|16|21|15|14|13|13|23|14|15|22|17|20|19|20|21|22|23|0\n31|30|29|29|28|27|27|33|26|25|23|22|21|21|20|19|19|35|20|24|22|23|24|25|26|34|28|32|30|31|32|33|34|35|0\n37|36|36|35|34|33|32|31|30|29|29|28|27|23|21|21|22|24|25|26|22|23|24|25|26|27|28|39|30|31|32|33|34|35|38|37|38|39|0\n40|39|39|38|37|37|36|33|33|34|32|31|30|29|28|27|26|25|24|23|23|43|24|25|26|27|28|29|30|31|32|35|34|35|36|42|38|41|40|41|42|43|0\n21|21|20|19|18|18|15|15|14|13|13|17|14|16|16|17|23|19|20|22|22|23|0\n53|50|50|48|47|46|46|45|43|43|42|41|40|36|35|34|34|37|38|32|31|30|29|29|28|28|52|33|30|31|32|33|39|35|36|37|38|39|40|41|42|44|44|45|49|47|48|49|51|51|52|53|0\n25|18|18|19|20|21|22|23|16|15|14|14|17|15|16|17|24|19|20|21|22|23|24|25|0\n25|23|22|21|21|20|18|17|15|15|14|14|19|16|16|17|18|19|20|24|22|23|24|25|0\n54|53|50|50|49|49|48|47|46|45|44|43|43|42|41|39|36|35|35|37|34|31|31|30|30|29|29|40|33|32|32|33|34|38|36|37|38|39|40|41|42|55|44|45|46|47|48|52|51|51|52|53|54|55|0\n30|30|27|27|26|25|23|22|21|21|19|19|18|17|17|29|18|20|20|24|22|23|24|25|26|28|28|29|31|31|0\n33|31|30|29|28|27|26|24|23|22|22|20|20|19|18|18|32|19|21|21|25|23|24|25|26|27|28|29|30|31|32|33|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n14|13|13|15|12|11|10|10|17|11|12|16|14|15|16|17|0\n54|52|52|53|51|48|48|47|46|45|44|43|41|41|40|37|36|36|33|33|32|32|35|31|30|29|29|50|30|31|39|34|34|35|38|37|38|39|40|42|42|43|44|45|46|47|49|49|50|51|55|53|54|55|0\n66|64|64|62|61|60|59|58|57|56|56|55|54|53|53|52|51|49|48|48|46|44|42|41|41|43|40|39|37|36|36|35|35|47|38|37|38|39|40|45|42|43|44|45|46|47|50|49|50|51|52|67|54|55|63|57|58|59|60|61|62|63|65|65|66|67|0\n32|31|30|30|33|29|28|27|27|35|26|24|24|23|22|20|20|21|37|21|22|23|25|25|26|36|28|29|34|31|32|33|34|35|36|37|0\n29|26|26|25|25|24|24|23|22|21|19|19|18|17|17|31|18|20|20|21|22|23|30|28|27|27|28|29|30|31|0\n32|30|30|31|29|27|26|24|24|23|22|21|20|18|18|19|28|19|20|21|22|23|25|25|26|27|28|29|33|31|32|33|0\n67|66|63|63|64|60|59|59|58|58|55|55|54|54|57|53|52|51|50|49|48|46|45|45|44|43|42|42|69|41|40|39|37|37|38|71|38|39|40|41|70|43|44|47|46|47|48|49|50|51|52|53|68|56|56|57|62|61|60|61|62|65|64|65|66|67|68|69|70|71|0\n74|74|72|66|65|64|64|67|63|61|61|60|59|59|69|70|55|55|56|53|52|50|50|48|47|46|46|45|44|43|43|42|42|41|40|39|39|73|40|41|58|54|44|45|49|47|48|49|51|51|52|53|54|57|56|57|58|71|60|62|62|63|68|65|66|67|68|69|70|71|72|73|75|75|0\n39|37|33|31|29|29|30|32|28|28|35|26|26|25|23|23|22|21|21|38|22|24|24|25|27|27|36|34|30|31|32|33|34|35|36|37|38|39|0\n42|42|43|41|38|37|37|36|35|35|34|33|32|30|29|28|28|27|26|25|24|24|45|25|26|27|31|29|30|31|32|33|34|40|36|39|38|39|40|41|44|43|44|45|0\n55|52|51|50|50|49|48|48|47|46|45|43|42|41|40|38|38|37|36|34|34|33|31|31|30|29|29|44|30|32|32|33|35|35|36|37|39|39|40|41|42|43|44|45|46|47|54|49|53|51|52|53|54|55|0\n21|21|20|20|23|16|15|15|17|18|14|14|25|19|16|17|18|19|24|22|22|23|24|25|0\n41|39|38|37|36|35|34|27|26|26|28|29|30|31|32|24|24|23|22|22|40|23|25|25|33|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|0\n27|25|23|23|22|19|18|18|17|17|16|15|15|26|16|21|20|19|20|21|22|24|24|25|26|27|0\n24|23|22|21|21|25|20|19|17|16|15|15|18|27|16|17|18|19|20|26|22|23|24|25|26|27|0\n23|23|22|20|19|18|17|17|16|15|14|14|25|15|16|21|18|19|20|21|22|24|24|25|0\n11|11|10|9|8|8|13|9|10|12|12|13|0\n21|20|18|17|15|14|14|13|12|12|19|13|16|15|16|17|18|19|20|21|0\n52|49|48|47|47|50|45|43|43|42|42|41|40|39|34|34|35|36|37|33|33|32|30|29|28|28|31|29|30|31|32|53|38|35|36|37|38|39|40|41|46|44|44|45|46|51|48|49|50|51|52|53|0\n79|79|78|76|75|73|72|72|71|70|68|68|69|67|66|66|65|64|62|60|60|59|56|55|53|53|54|57|52|51|48|46|46|44|44|43|42|42|49|50|63|43|45|45|47|47|48|49|50|51|52|58|54|55|56|57|58|59|61|61|62|63|64|65|81|67|77|69|70|71|74|73|74|75|76|77|78|80|80|81|0\n13|10|10|9|8|8|12|9|11|11|12|13|0\n48|47|47|45|43|43|42|39|38|36|35|34|34|37|40|31|30|29|29|32|28|26|26|27|46|27|28|33|30|31|32|33|41|35|36|37|38|39|40|41|42|44|44|45|46|49|48|49|0\n7|5|5|6|6|7|0\n3|3|0\n3|3|0\n10|9|8|7|7|11|8|9|10|11|0\n10|10|8|7|7|9|8|9|11|11|0\n27|27|26|25|23|23|22|22|20|19|18|16|16|17|21|17|18|19|20|21|29|24|24|25|26|28|28|29|0\n23|21|20|19|17|17|16|15|13|13|14|22|14|15|16|18|18|19|20|21|22|23|0\n45|44|44|42|41|41|40|40|47|38|38|37|35|35|34|31|31|30|30|29|28|26|26|27|49|27|28|29|33|32|32|33|34|36|36|37|39|39|48|43|42|43|46|45|46|47|48|49|0\n33|33|32|30|29|28|27|27|26|24|24|22|22|21|20|19|19|35|20|21|23|23|25|25|26|31|28|29|30|31|32|34|34|35|0\n48|47|47|44|44|41|36|36|37|35|35|39|34|34|42|33|31|29|29|30|28|27|26|26|46|27|28|32|30|31|32|33|43|40|38|37|38|39|40|41|42|43|45|45|46|49|48|49|0\n20|19|18|18|16|16|14|12|12|13|15|13|14|15|17|17|21|19|20|21|0\n34|33|33|32|28|27|27|29|26|24|24|23|21|21|19|19|20|31|20|22|22|23|25|25|26|30|28|29|30|31|32|35|34|35|0\n29|28|28|27|26|24|23|23|25|21|20|19|18|17|17|22|18|19|20|21|22|31|24|25|26|27|30|29|30|31|0\n34|34|33|31|30|28|28|26|26|24|23|23|22|21|20|19|19|32|20|21|22|25|24|25|27|27|29|29|30|31|32|33|35|35|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n34|34|31|31|29|29|26|26|25|22|22|23|21|21|20|19|19|33|20|28|24|23|24|25|27|27|28|30|30|32|32|33|35|35|0\n3|3|0\n27|22|22|21|20|19|19|24|17|17|16|15|15|26|16|18|18|25|20|21|23|23|24|25|26|27|0\n20|18|17|17|19|15|14|13|12|12|16|13|14|15|16|21|18|19|20|21|0\n49|48|48|47|46|45|44|44|41|41|39|38|37|36|35|35|34|33|32|31|29|28|28|27|27|43|30|29|30|31|32|33|34|40|36|37|38|39|40|42|42|43|51|45|46|47|50|49|50|51|0\n36|35|34|33|31|29|29|30|28|28|27|26|23|22|21|21|20|20|25|24|22|23|24|25|26|27|37|32|30|31|32|33|34|35|36|37|0\n23|22|22|21|18|17|17|19|15|15|14|14|25|16|16|20|18|19|20|21|24|23|24|25|0\n41|40|39|39|38|37|36|35|34|34|43|30|30|29|29|32|28|26|26|25|24|24|45|25|27|27|28|33|31|31|32|33|44|35|36|37|38|42|40|41|42|43|44|45|0\n33|31|30|27|26|26|28|25|24|23|21|21|20|19|18|18|32|19|20|22|22|23|24|25|29|27|28|29|30|31|32|33|0\n43|41|40|37|37|38|35|35|34|33|32|30|29|26|26|27|25|25|24|23|23|42|24|31|28|27|28|29|30|31|32|33|34|36|36|39|38|39|40|41|42|43|0\n60|59|58|57|55|55|54|53|52|51|51|61|62|63|50|48|48|47|46|45|43|43|42|41|38|38|37|37|36|35|34|34|65|35|36|40|39|39|40|41|42|44|44|45|46|47|49|49|50|64|52|53|54|56|56|57|58|59|60|61|62|63|64|65|0\n55|55|54|53|52|52|51|49|47|46|45|45|44|42|41|41|40|39|39|38|37|34|33|32|31|31|30|30|36|35|32|33|34|35|36|37|38|50|40|43|42|43|44|48|46|47|48|49|50|51|57|53|54|56|56|57|0\n32|32|31|27|26|25|24|24|28|23|23|20|20|19|18|18|22|19|21|21|22|30|29|25|26|27|28|29|30|31|33|33|0\n21|19|19|20|18|16|16|15|14|14|13|13|23|15|17|17|18|22|20|21|22|23|0\n70|64|63|61|61|58|58|54|54|55|56|53|52|51|51|60|65|66|67|50|49|48|48|69|71|46|46|45|42|42|41|41|40|39|38|38|73|39|40|44|43|43|44|45|47|47|72|49|50|68|52|53|57|55|56|57|59|59|60|62|62|63|64|65|66|67|68|69|70|71|72|73|0\n31|30|30|32|29|27|26|25|25|22|22|21|20|19|18|18|24|19|20|21|23|23|24|28|26|27|28|29|33|31|32|33|0\n8|6|6|7|9|7|8|9|0\n18|18|17|16|15|15|14|13|12|12|21|13|14|20|16|17|19|19|20|21|0\n34|32|32|31|30|29|28|28|35|26|25|24|23|22|22|21|20|20|37|21|27|23|24|25|26|27|36|29|30|31|33|33|34|35|36|37|0\n23|21|21|20|20|24|25|18|18|17|16|15|15|27|16|17|19|19|26|22|22|23|24|25|26|27|0\n78|77|76|75|74|74|71|71|68|66|65|65|64|62|60|60|61|63|69|58|58|57|53|52|52|54|51|50|49|49|48|46|46|44|43|43|42|41|41|73|42|45|44|45|47|47|48|56|50|51|55|53|54|55|56|57|59|59|70|61|62|63|64|67|66|67|68|69|70|72|72|73|79|75|76|77|78|79|0\n23|22|22|21|21|25|18|16|16|17|15|15|20|27|19|17|18|19|20|26|24|23|24|25|26|27|0\n49|49|45|45|44|44|47|43|42|41|40|39|38|38|51|37|33|33|32|32|35|31|30|29|28|28|53|29|30|31|36|34|34|35|36|37|52|39|40|41|42|43|48|46|46|47|48|50|50|51|52|53|0\n31|28|28|27|23|23|24|22|21|20|20|19|18|17|17|30|18|19|26|21|22|25|24|25|26|27|29|29|30|31|0\n54|51|50|50|49|47|47|45|45|44|43|43|42|41|40|38|37|36|36|35|34|34|32|32|29|29|30|31|30|31|33|33|55|35|39|37|38|39|40|41|42|53|44|46|46|48|48|49|52|51|52|53|54|55|0\n27|27|26|25|25|23|22|21|20|18|18|17|16|16|24|17|19|19|20|21|22|23|24|29|26|28|28|29|0\n29|29|30|28|25|24|24|26|23|20|20|19|18|17|17|22|18|19|21|21|22|23|27|25|26|27|28|31|30|31|0\n49|49|48|47|47|45|44|39|39|40|38|37|37|42|36|34|33|33|32|30|29|29|28|27|27|46|28|31|30|31|32|35|34|35|36|43|38|41|40|41|42|43|44|45|46|51|48|50|50|51|0\n41|39|38|37|34|34|35|36|33|31|31|28|28|26|26|25|24|22|22|23|30|23|24|25|27|27|29|29|30|32|32|33|40|35|36|37|38|39|40|41|0\n34|34|33|32|31|30|29|28|27|26|25|24|23|23|36|37|22|21|21|39|22|38|24|25|26|27|28|29|30|31|32|33|35|35|36|37|38|39|0\n55|55|54|52|51|51|50|49|48|48|47|41|40|40|42|43|44|38|37|36|34|34|35|33|32|31|30|30|46|31|32|33|39|35|36|37|38|39|45|41|42|43|44|45|46|47|57|49|50|53|52|53|54|56|56|57|0\n42|41|41|40|36|36|37|35|33|32|32|31|30|29|28|25|24|24|26|23|23|39|27|25|26|27|28|29|30|31|34|33|34|35|38|37|38|39|40|43|42|43|0\n57|52|51|50|50|49|47|46|46|45|44|44|54|40|40|39|38|37|36|36|42|32|32|33|34|31|30|30|56|31|35|33|34|35|43|37|38|39|41|41|42|43|55|45|48|47|48|49|53|51|52|53|54|55|56|57|0\n32|31|30|29|29|27|26|25|23|23|21|21|20|19|18|18|28|19|20|22|22|24|24|25|26|27|28|33|30|31|32|33|0\n13|12|9|9|10|8|8|11|10|11|12|13|0\n17|17|18|16|15|15|20|13|12|12|14|13|14|21|16|19|18|19|20|21|0\n20|19|17|17|18|16|15|13|12|12|14|13|14|15|16|21|18|19|20|21|0\n39|39|38|38|35|34|32|32|30|30|29|28|27|25|25|24|23|22|22|36|37|23|24|26|26|27|28|29|31|31|33|33|34|35|36|37|41|40|40|41|0\n61|56|54|54|55|53|51|50|50|49|48|48|45|45|44|43|43|42|42|59|38|38|39|37|36|35|34|33|32|32|41|33|34|35|36|37|40|39|40|41|60|47|44|46|46|47|58|49|52|51|52|53|57|55|56|57|58|59|60|61|0\n39|39|40|36|36|33|33|34|31|31|30|28|26|25|25|24|24|23|22|22|38|23|29|27|26|27|28|29|30|32|32|35|34|35|37|37|38|41|40|41|0\n43|43|41|40|40|39|36|35|33|33|34|32|31|30|30|29|27|27|26|25|24|24|45|25|26|28|28|29|38|31|32|37|34|35|36|37|38|39|42|41|42|44|44|45|0\n28|28|27|25|25|24|23|22|21|19|19|18|16|16|17|17|18|20|20|21|22|23|24|26|26|27|29|29|0\n37|36|35|34|33|32|30|30|27|27|25|23|23|22|21|21|20|20|29|26|22|24|24|25|26|28|28|29|31|31|32|33|34|35|36|37|0\n43|41|40|39|38|36|35|34|33|33|32|30|29|28|28|27|26|24|24|23|23|42|25|25|26|27|31|29|30|31|32|37|34|35|36|37|38|39|40|41|42|43|0\n17|16|13|13|12|11|11|10|10|15|12|14|14|15|16|17|0\n19|18|17|16|15|15|14|13|12|12|21|13|14|20|16|17|18|19|20|21|0\n10|10|8|7|7|9|8|9|11|11|0\n15|14|13|13|12|11|10|10|17|11|12|16|14|15|16|17|0\n36|35|31|30|29|29|32|33|34|27|26|25|24|22|22|21|20|20|28|21|23|23|24|25|26|27|28|37|30|31|32|33|34|35|36|37|0\n56|55|54|53|52|52|51|49|49|47|46|45|44|43|36|36|35|35|38|34|33|33|40|41|32|31|30|30|48|31|32|42|34|39|37|37|38|39|40|41|42|43|44|45|46|47|48|50|50|51|57|53|54|55|56|57|0\n41|38|38|39|40|37|34|33|32|31|31|35|30|30|28|26|26|25|24|23|23|29|24|25|27|27|28|29|43|36|32|33|34|35|36|37|42|39|40|41|42|43|0\n25|22|19|18|18|20|21|16|15|14|14|17|24|15|16|17|23|19|20|21|22|23|24|25|0\n33|32|30|28|28|27|26|25|24|23|22|21|19|18|18|20|31|19|20|21|22|23|24|25|26|27|29|29|30|31|32|33|0\n39|39|38|36|35|35|37|33|31|31|32|29|28|26|25|25|24|23|22|22|30|23|24|27|26|27|28|29|30|34|32|33|34|41|36|37|38|40|40|41|0\n41|38|38|37|32|31|30|29|29|33|28|27|25|25|24|24|35|23|22|22|40|23|36|26|26|27|28|34|30|31|32|33|34|35|36|37|39|39|40|41|0\n27|25|25|24|22|22|23|28|29|21|20|19|17|17|18|31|18|19|20|21|30|23|24|26|26|27|28|29|30|31|0\n22|22|19|18|18|17|15|15|14|13|13|21|14|16|16|17|20|19|20|21|23|23|0\n19|18|15|15|14|13|12|11|11|17|12|13|14|16|16|17|18|19|0\n64|63|62|62|65|60|60|59|58|58|67|56|54|54|55|53|52|51|49|47|47|46|45|44|43|43|42|41|40|39|37|37|36|36|69|38|38|39|40|41|42|50|44|45|46|48|48|49|50|51|52|53|57|55|56|57|68|59|61|61|66|63|64|65|66|67|68|69|0\n46|46|47|44|44|43|43|41|40|40|39|38|38|50|51|36|35|34|33|33|32|31|30|29|28|28|53|29|30|31|32|37|34|35|36|37|52|39|42|41|42|49|45|45|48|47|48|49|50|51|52|53|0\n47|44|44|43|41|40|39|38|36|35|35|34|31|31|32|33|30|28|28|27|26|25|25|46|26|27|29|29|30|42|32|33|34|37|36|37|38|39|40|41|42|43|45|45|46|47|0\n26|25|24|24|27|23|21|20|19|18|18|17|16|16|29|17|22|19|20|21|22|23|28|25|26|27|28|29|0\n79|77|76|76|75|74|73|72|72|80|81|69|68|65|65|64|63|62|62|67|70|61|60|58|58|57|55|54|54|53|51|50|49|49|48|47|46|45|44|43|43|83|44|45|46|47|48|52|50|51|52|53|56|55|56|57|59|59|60|61|71|63|64|66|66|67|68|69|70|71|82|73|74|75|78|77|78|79|80|81|82|83|0\n26|25|24|22|21|20|20|19|18|18|15|15|16|17|16|17|27|19|23|21|22|23|24|25|26|27|0\n42|41|39|37|37|36|34|34|35|33|31|30|30|32|29|27|27|25|23|23|24|26|24|25|26|28|28|29|43|31|32|33|40|35|36|38|38|39|40|41|42|43|0\n37|36|33|33|32|31|30|29|29|27|26|25|24|22|22|21|20|20|28|21|23|23|24|25|26|27|28|35|30|31|32|34|34|35|36|37|0\n48|47|46|44|44|43|41|40|40|39|38|37|36|36|35|34|32|30|30|29|27|27|26|26|33|28|28|29|31|31|32|33|34|35|49|37|38|39|42|41|42|43|45|45|46|47|48|49|0\n25|23|22|21|19|19|18|16|16|15|14|14|24|15|17|17|18|20|20|21|22|23|24|25|0\n31|31|29|27|27|26|26|25|23|22|21|20|20|19|18|18|33|19|24|21|22|23|24|25|30|28|28|29|30|32|32|33|0\n11|9|8|8|7|7|10|9|10|11|0\n25|25|26|24|24|28|29|22|21|21|20|18|18|19|17|17|31|19|20|23|22|23|30|27|26|27|28|29|30|31|0\n24|24|19|18|17|17|20|21|15|15|14|14|23|16|16|22|18|19|20|21|22|23|25|25|0\n27|26|25|24|23|22|21|19|19|20|28|29|18|17|17|31|18|30|20|21|22|23|24|25|26|27|28|29|30|31|0\n39|34|33|32|31|29|29|28|27|27|35|36|25|25|24|23|21|21|22|38|22|23|24|26|26|37|28|30|30|31|32|33|34|35|36|37|38|39|0\n30|30|29|28|26|26|27|25|25|33|34|23|21|21|20|19|19|24|20|22|22|23|24|35|32|27|28|29|31|31|32|33|34|35|0\n34|34|31|31|30|29|24|24|25|23|23|27|22|21|20|19|19|33|20|21|22|28|26|25|26|27|28|29|30|32|32|33|35|35|0\n45|43|42|42|44|41|39|38|37|37|36|35|34|32|32|33|31|30|28|26|26|25|25|29|27|27|28|29|30|31|47|33|34|35|36|40|38|39|40|41|46|43|44|45|46|47|0\n30|30|28|25|24|24|23|21|21|20|20|19|18|17|17|29|18|19|27|22|22|23|26|25|26|27|28|29|31|31|0\n54|53|52|52|51|49|48|47|47|45|43|43|42|41|40|39|38|36|35|34|32|31|31|33|30|29|29|46|30|37|32|33|34|35|36|37|38|39|40|41|42|44|44|45|46|50|48|49|50|51|55|53|54|55|0\n36|36|33|33|31|31|30|29|28|26|26|25|23|22|22|21|20|20|35|21|24|23|24|25|27|27|28|29|30|32|32|34|34|35|37|37|0\n72|71|70|68|68|69|73|67|61|61|62|63|58|58|57|57|56|55|54|54|65|50|49|48|47|46|46|51|45|44|43|42|42|41|40|39|39|75|40|41|53|43|44|45|52|47|48|49|50|51|52|53|66|55|56|60|59|59|60|64|62|63|64|65|66|67|74|69|70|71|72|73|74|75|0\n35|33|32|31|30|27|26|26|25|24|24|23|21|21|20|19|19|34|20|22|22|23|29|25|28|27|28|29|30|31|32|33|34|35|0\n16|15|15|14|12|11|10|10|13|11|12|13|14|17|16|17|0\n18|17|17|15|12|12|13|11|11|16|14|13|14|15|16|19|18|19|0\n15|11|11|12|10|9|9|14|10|13|12|13|14|15|0\n85|85|86|87|84|83|81|81|77|77|78|79|74|74|75|73|72|71|70|69|68|67|65|65|66|89|90|91|92|93|62|61|61|60|59|58|57|56|55|54|54|53|51|51|50|49|49|95|50|52|52|53|64|55|56|57|58|59|60|63|62|63|64|94|66|67|68|69|70|71|72|73|76|75|76|80|78|79|80|82|82|83|84|88|86|87|88|89|90|91|92|93|94|95|0\n18|18|15|15|14|12|12|11|11|17|13|13|14|16|16|17|19|19|0\n33|28|27|26|24|24|25|29|30|22|21|20|19|19|18|18|32|23|20|21|22|23|31|25|26|27|28|29|30|31|32|33|0\n22|22|20|19|18|18|17|15|15|14|13|13|14|16|16|17|21|19|20|21|23|23|0\n27|24|24|23|19|18|17|17|20|21|15|15|16|26|16|22|18|19|20|21|22|23|25|25|26|27|0\n53|49|48|46|46|45|45|50|42|41|41|43|37|37|38|39|36|33|32|32|34|31|29|29|28|28|52|30|30|31|35|33|34|35|36|40|38|39|40|44|42|43|44|51|47|47|48|49|50|51|52|53|0\n47|46|46|45|43|42|42|41|40|39|38|37|36|36|33|32|32|31|29|28|28|27|26|26|35|27|30|29|30|31|34|33|34|35|49|37|38|39|40|41|44|43|44|45|48|47|48|49|0\n14|14|13|10|10|9|9|12|11|11|12|13|15|15|0\n27|26|25|23|23|22|22|28|29|21|20|19|18|17|17|31|18|19|20|21|30|24|24|25|26|27|28|29|30|31|0\n36|34|33|33|32|31|30|29|27|24|24|25|23|23|22|21|20|20|37|21|22|28|26|25|26|27|28|29|30|31|32|35|34|35|36|37|0\n18|18|17|16|14|14|12|12|13|20|21|13|15|15|16|17|19|19|20|21|0\n50|50|48|47|46|45|43|43|42|41|39|38|38|37|36|35|34|32|32|31|30|29|27|27|28|49|28|29|30|31|33|33|34|35|36|37|40|39|40|41|42|44|44|45|46|47|48|49|51|51|0\n16|16|12|12|13|11|10|10|15|11|14|13|14|15|17|17|0\n20|20|19|16|15|13|13|14|12|12|18|17|14|15|16|17|18|19|21|21|0\n23|22|21|21|20|19|19|17|16|15|14|14|18|15|16|17|18|25|20|24|22|23|24|25|0\n33|31|30|29|27|27|25|25|22|22|21|20|20|19|18|18|32|19|24|21|23|23|24|26|26|28|28|29|30|31|32|33|0\n37|32|31|30|29|29|33|27|26|26|25|24|23|23|35|22|21|20|20|21|22|36|24|25|28|27|28|34|30|31|32|33|34|35|36|37|0\n54|54|53|53|52|50|47|47|48|46|46|44|44|43|41|40|40|39|38|36|36|34|34|33|32|31|30|30|57|31|32|33|35|35|37|37|38|39|42|41|42|43|45|45|51|49|48|49|50|51|52|56|55|55|56|57|0\n20|20|16|16|15|15|14|13|12|12|19|13|14|18|17|17|18|19|21|21|0\n25|25|24|23|22|22|27|20|20|19|18|17|16|16|29|17|18|19|21|21|28|23|24|26|26|27|28|29|0\n15|14|13|13|16|12|11|11|18|19|12|17|14|15|16|17|18|19|0\n46|45|44|44|43|41|40|34|34|33|33|36|32|31|31|38|29|28|27|27|26|25|25|42|26|30|28|29|30|39|32|37|35|35|36|37|38|39|40|41|42|43|47|45|46|47|0\n9|8|7|6|6|7|8|9|0\n25|24|24|26|21|21|20|18|17|16|16|15|15|23|19|17|18|19|20|22|22|23|27|25|26|27|0\n23|21|21|19|14|14|15|16|17|13|13|20|18|15|16|17|18|19|20|22|22|23|0\n32|30|30|31|28|25|25|26|22|22|23|21|19|19|18|18|29|20|20|21|24|23|24|27|26|27|28|29|33|31|32|33|0\n45|45|44|42|40|40|41|38|37|37|36|35|35|34|33|33|48|49|31|30|30|29|28|27|27|51|28|29|32|31|32|50|34|47|36|39|38|39|43|41|42|43|44|46|46|47|48|49|50|51|0\n84|83|82|82|85|75|74|73|72|71|70|69|69|64|64|63|60|60|59|58|58|62|66|67|68|77|55|55|56|57|79|80|53|52|51|50|50|49|48|47|46|45|45|87|46|47|48|49|54|51|52|53|54|81|56|57|78|59|61|61|62|63|65|65|66|67|68|76|70|71|72|73|74|75|76|77|78|79|80|81|86|83|84|85|86|87|0\n41|40|40|39|38|37|36|36|34|33|32|30|30|28|28|27|26|25|24|23|23|35|24|25|26|27|29|29|31|31|32|33|34|35|43|37|38|39|42|41|42|43|0\n23|22|20|20|19|16|15|15|17|14|13|13|14|18|16|17|18|19|21|21|22|23|0\n24|23|22|19|19|18|18|17|15|15|16|14|14|25|16|17|21|20|20|21|22|23|24|25|0\n37|36|33|33|29|29|28|27|27|31|26|24|24|21|21|20|20|23|35|22|22|23|25|25|26|32|28|30|30|31|32|34|34|35|36|37|0\n47|47|45|45|44|43|43|42|40|39|38|38|37|35|34|33|32|30|29|29|28|27|26|26|36|27|28|31|30|31|32|33|34|35|36|37|41|39|40|41|42|49|44|46|46|48|48|49|0\n23|18|18|17|16|16|20|15|14|13|13|22|14|15|21|17|19|19|20|21|22|23|0\n21|17|16|16|18|19|14|13|12|12|15|13|14|15|20|17|18|19|20|21|0\n33|31|30|28|26|26|25|24|23|22|22|21|20|19|18|18|32|19|20|21|29|23|24|25|27|27|28|29|30|31|32|33|0\n37|36|36|35|31|31|32|33|30|29|28|28|27|26|23|23|22|21|21|25|22|24|24|25|26|27|39|29|30|34|32|33|34|35|38|37|38|39|0\n19|17|15|15|14|13|12|11|11|18|12|13|14|16|16|17|18|19|0\n10|9|9|7|7|8|8|11|10|11|0\n22|21|20|19|18|18|17|15|14|13|13|16|14|15|16|17|23|19|20|21|22|23|0\n58|57|56|55|53|53|54|51|48|47|46|45|44|43|43|49|41|39|39|38|37|36|35|35|32|32|31|31|34|52|33|33|34|42|36|37|38|40|40|41|42|50|44|45|46|47|48|49|50|51|52|59|54|55|56|57|58|59|0\n52|50|50|51|49|47|44|43|43|42|42|41|40|37|37|36|35|34|34|33|32|31|30|29|28|28|48|29|30|31|32|33|39|35|36|38|38|39|40|41|46|45|44|45|46|47|48|49|53|51|52|53|0\n46|44|43|43|45|42|42|41|40|40|39|38|36|32|31|30|29|28|27|27|33|34|26|26|37|35|28|29|30|31|32|33|34|35|36|37|38|39|49|41|48|47|44|45|46|47|48|49|0\n27|25|23|23|22|20|20|19|18|17|16|15|15|26|16|17|18|19|21|21|22|24|24|25|26|27|0\n13|9|9|10|11|8|8|12|10|11|12|13|0\n10|8|8|9|7|7|11|9|10|11|0\n16|15|15|13|12|11|10|10|14|11|12|13|14|17|16|17|0\n56|55|53|53|52|49|49|50|48|47|46|46|45|42|41|41|40|39|39|36|36|35|33|32|31|31|30|30|38|34|32|33|34|35|37|37|38|44|40|43|42|43|44|45|57|47|48|51|50|51|52|54|54|55|56|57|0\n55|52|52|49|48|48|47|46|46|45|44|41|41|42|38|38|39|35|34|33|32|32|36|30|30|29|29|54|31|31|37|33|34|35|36|37|40|39|40|43|42|43|44|45|51|47|50|49|50|51|53|53|54|55|0\n31|30|29|27|26|20|19|19|21|18|18|23|24|17|17|28|25|22|20|21|22|23|24|25|26|27|28|29|30|31|0\n56|55|54|53|52|51|50|49|49|48|44|44|45|43|42|41|41|40|35|34|34|33|31|31|30|30|37|38|39|32|32|33|36|35|36|37|38|39|40|47|42|43|46|45|46|47|48|57|50|51|52|53|54|55|56|57|0\n30|30|29|26|25|25|27|24|24|32|33|23|22|21|20|19|19|35|20|21|22|23|34|28|26|27|28|29|31|31|32|33|34|35|0\n13|12|10|9|8|8|11|9|10|11|12|13|0\n33|31|29|29|27|25|24|24|23|23|22|21|20|19|18|18|32|19|20|21|22|28|26|25|26|27|28|30|30|31|32|33|0\n17|13|13|14|12|11|10|10|16|11|12|15|14|15|16|17|0\n16|16|17|15|14|12|12|11|11|19|13|13|14|15|18|17|18|19|0\n60|59|57|56|56|54|53|53|52|50|50|49|48|48|47|46|44|43|42|41|39|35|35|36|37|38|34|32|32|33|45|33|34|40|36|37|38|39|40|41|42|43|44|45|46|47|61|49|51|51|52|55|54|55|58|57|58|59|60|61|0\n74|72|71|70|70|68|68|67|66|65|63|63|60|59|59|61|58|57|57|54|52|51|49|49|48|47|47|46|45|44|42|42|41|40|39|39|55|56|40|41|43|43|44|45|46|53|48|50|50|51|52|53|54|55|56|75|58|62|60|61|62|64|64|65|66|67|69|69|73|71|72|73|74|75|0\n61|60|60|59|54|54|55|53|52|49|49|50|48|47|46|46|57|45|43|43|42|41|40|39|39|63|37|37|36|35|34|34|65|35|36|38|38|64|40|41|42|44|44|45|58|47|48|51|50|51|52|53|56|55|56|57|58|59|62|61|62|63|64|65|0\n49|47|44|44|43|42|41|41|40|39|38|36|35|35|34|33|30|29|29|31|28|27|26|26|48|27|28|32|30|31|32|33|34|37|36|37|38|39|40|46|42|43|45|45|46|47|48|49|0\n27|27|26|24|24|25|29|22|21|20|20|19|18|17|17|31|18|19|23|21|22|23|30|25|26|28|28|29|30|31|0\n41|39|37|37|35|35|34|33|31|31|30|29|27|26|25|25|24|23|22|22|40|23|24|28|26|27|28|29|30|32|32|33|34|36|36|38|38|39|40|41|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n76|75|75|74|73|72|70|70|69|69|68|67|66|64|64|63|63|62|61|59|57|56|56|53|53|54|52|49|49|48|46|46|45|44|43|43|42|41|41|60|42|51|44|45|47|47|48|50|50|51|52|55|54|55|58|57|58|59|60|61|62|79|65|65|66|67|68|78|71|71|72|73|74|77|76|77|78|79|0\n25|24|23|22|22|26|27|20|20|19|16|16|17|18|29|17|18|19|21|21|28|23|24|25|26|27|28|29|0\n23|23|22|21|19|19|18|18|16|14|14|15|17|15|16|17|25|20|20|21|22|24|24|25|0\n47|45|43|43|40|40|39|37|37|38|35|35|34|32|30|30|29|28|28|27|26|25|25|46|26|27|33|29|31|31|32|33|34|36|36|42|38|39|41|41|42|44|44|45|46|47|0\n12|12|13|11|11|9|9|10|10|15|14|13|14|15|0\n30|30|29|28|27|27|32|33|25|25|24|22|22|21|20|19|19|35|20|21|23|23|24|26|26|34|28|29|31|31|32|33|34|35|0\n25|25|26|24|22|22|23|28|20|19|18|17|16|16|21|17|18|19|20|21|29|23|24|27|26|27|28|29|0\n60|60|55|53|52|52|51|50|49|48|47|47|56|57|46|43|43|42|39|38|38|40|41|37|36|35|34|33|32|32|59|33|34|35|36|37|45|39|40|41|42|44|44|45|46|58|48|49|50|51|54|53|54|55|56|57|58|59|61|61|0\n50|49|48|45|44|44|46|42|42|41|38|38|37|37|36|35|34|32|32|31|31|27|27|28|29|30|28|29|30|51|33|33|34|35|36|40|39|39|40|41|43|43|47|45|46|47|48|49|50|51|0\n15|14|12|9|9|10|11|13|10|11|12|13|14|15|0\n49|46|44|44|43|42|42|41|39|39|38|36|36|35|34|33|32|30|30|29|27|26|26|28|48|27|28|29|31|31|32|33|34|35|37|37|38|40|40|41|47|43|45|45|46|47|48|49|0\n44|43|40|38|37|36|36|35|35|41|34|33|32|29|29|30|28|28|27|26|24|24|25|25|26|27|45|31|30|31|32|33|34|42|39|37|38|39|40|41|42|43|44|45|0\n14|13|12|12|10|9|9|11|10|11|15|13|14|15|0\n10|10|7|7|8|9|8|9|11|11|0\n24|23|22|22|21|19|19|17|16|15|14|14|18|15|16|17|18|20|20|21|25|23|24|25|0\n54|52|51|51|50|48|47|47|46|45|44|43|42|42|41|38|37|37|36|35|34|33|32|32|30|29|29|31|30|31|40|33|34|35|36|39|38|39|40|41|55|43|44|45|46|49|48|49|50|53|52|53|54|55|0\n82|81|80|79|78|77|75|74|74|73|72|71|71|70|67|67|66|65|65|64|62|55|54|53|53|56|52|51|50|50|58|49|49|60|48|46|45|44|44|43|43|63|47|45|46|47|48|61|59|51|52|57|54|55|56|57|58|59|60|61|62|63|64|69|66|68|68|69|70|83|72|73|76|75|76|77|78|79|80|81|82|83|0\n33|32|30|29|28|27|27|26|26|34|35|24|24|22|22|21|20|20|37|21|23|23|25|25|36|31|28|29|30|31|32|33|34|35|36|37|0\n40|39|38|38|37|35|33|33|34|32|31|31|42|43|30|29|28|27|26|25|24|24|45|25|26|27|28|29|30|44|32|36|34|35|36|37|41|39|40|41|42|43|44|45|0\n57|54|54|53|52|50|48|48|49|46|46|45|44|43|42|39|36|36|37|35|35|40|34|32|31|31|30|30|56|33|32|33|34|41|38|37|38|39|40|41|42|43|44|45|47|47|51|49|50|51|52|53|55|55|56|57|0\n43|40|40|38|38|35|34|34|33|32|32|31|30|29|27|27|26|25|23|23|24|42|24|25|26|28|28|29|30|31|37|33|36|35|36|37|39|39|41|41|42|43|0\n60|59|57|57|56|55|54|51|51|50|49|49|48|47|46|46|45|44|42|41|40|34|34|35|33|33|37|38|32|32|43|39|36|35|36|37|38|39|40|41|42|43|44|45|61|47|48|53|50|52|52|53|54|55|56|58|58|59|60|61|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n34|33|33|31|30|25|25|26|24|23|23|22|22|20|20|19|19|32|21|21|29|28|24|27|26|27|28|29|30|31|32|35|34|35|0\n27|27|26|25|24|24|19|19|20|17|17|16|16|22|23|18|18|21|20|21|22|23|29|25|26|28|28|29|0\n36|36|35|35|34|32|32|31|30|29|29|28|25|25|22|22|23|21|21|27|24|23|24|26|26|27|28|39|30|31|33|33|34|38|37|37|38|39|0\n27|26|24|22|22|20|20|18|17|16|16|15|15|25|19|17|18|19|21|21|23|23|24|25|26|27|0\n24|23|23|21|18|17|17|16|15|15|14|14|22|20|16|19|18|19|20|21|22|25|24|25|0\n26|26|24|23|22|21|20|19|18|17|16|15|15|25|16|17|18|19|20|21|22|23|24|25|27|27|0\n14|13|13|11|10|9|9|12|10|11|12|15|14|15|0\n27|25|24|23|20|20|21|18|18|17|16|15|15|26|16|17|19|19|22|21|22|23|24|25|26|27|0\n23|23|24|22|21|21|26|19|19|20|28|17|16|16|18|17|18|29|20|27|22|25|24|25|26|27|28|29|0\n30|29|28|27|27|31|25|22|22|23|24|21|20|19|18|18|33|19|20|21|26|23|24|25|26|32|28|29|30|31|32|33|0\n5|4|4|5|0\n33|33|30|29|28|27|27|31|26|24|22|22|23|21|20|19|19|35|20|21|25|23|24|25|26|32|28|29|30|31|32|34|34|35|0\n29|28|25|24|23|23|22|20|19|18|18|21|16|16|17|17|27|19|20|21|22|26|24|25|26|27|28|29|0\n54|53|52|52|51|50|46|46|45|43|43|42|40|40|41|39|38|37|35|34|33|33|32|31|30|29|29|49|30|31|32|36|34|35|36|37|38|39|48|41|42|44|44|45|47|47|48|49|50|51|55|53|54|55|0\n39|39|37|36|35|34|32|32|31|29|28|28|27|26|25|24|24|22|22|23|41|23|38|25|26|27|30|29|30|31|33|33|34|35|36|37|38|40|40|41|0\n43|43|42|42|45|40|40|38|38|36|36|35|34|33|31|30|29|28|28|27|26|25|25|47|26|27|32|29|30|31|32|33|34|35|37|37|39|39|41|41|46|44|44|45|46|47|0\n23|23|24|17|17|16|16|19|20|15|14|14|22|15|21|18|18|19|20|21|22|25|24|25|0\n60|60|58|58|57|56|53|53|54|52|52|62|63|49|48|47|46|46|50|44|43|42|41|40|38|38|37|37|35|35|34|34|65|36|36|45|39|39|40|41|42|43|44|45|51|47|48|49|50|51|64|55|54|55|56|57|59|59|61|61|62|63|64|65|0\n24|23|22|22|19|17|17|16|15|15|14|14|21|20|16|18|18|19|20|21|25|23|24|25|0\n31|29|28|26|26|25|24|22|21|21|20|18|17|17|19|30|18|19|20|23|22|23|24|25|27|27|28|29|30|31|0\n81|81|80|77|77|76|75|75|74|69|69|70|71|72|67|66|66|65|64|63|62|61|60|59|59|56|55|52|52|53|51|51|50|49|48|46|46|45|44|43|43|58|44|45|47|47|48|49|50|57|54|53|54|55|56|57|58|83|60|61|62|63|64|65|68|67|68|73|70|71|72|73|74|79|76|78|78|79|80|82|82|83|0\n69|67|67|64|64|63|62|61|56|56|55|54|53|53|58|50|49|48|48|51|47|46|46|45|43|42|41|41|40|39|37|37|36|36|66|38|38|39|40|44|42|43|44|45|60|47|52|49|50|51|52|59|54|55|57|57|58|59|60|61|62|63|65|65|66|68|68|69|0\n43|43|42|42|40|39|38|37|36|34|34|33|32|29|29|30|28|26|25|25|24|24|41|27|26|27|28|31|30|31|32|33|35|35|36|37|38|39|40|41|45|44|44|45|0\n30|29|28|26|25|25|24|24|23|22|19|18|18|17|17|21|20|19|20|21|22|23|31|27|26|27|28|29|30|31|0\n52|51|51|50|48|48|46|39|39|38|38|41|36|35|35|34|33|33|43|44|31|30|30|29|28|28|47|29|32|31|32|45|34|37|36|37|42|40|40|41|42|43|44|45|46|47|49|49|50|53|52|53|0\n14|13|12|11|10|9|9|15|10|11|12|13|14|15|0\n59|56|55|55|53|52|51|51|50|48|47|47|46|44|44|43|41|41|39|39|33|33|34|32|32|36|37|31|31|58|38|35|34|35|36|37|38|40|40|42|42|43|45|45|46|49|48|49|50|54|52|53|54|57|56|57|58|59|0\n47|46|46|45|43|43|42|39|39|38|37|37|41|49|35|35|34|34|51|33|31|30|30|29|28|28|53|29|32|31|32|33|52|36|36|50|38|40|40|41|42|44|44|45|48|47|48|49|50|51|52|53|0\n40|39|39|41|42|38|37|36|36|44|32|31|30|30|33|28|28|27|26|25|24|24|35|25|26|27|29|29|34|31|32|33|34|35|45|37|38|43|40|41|42|43|44|45|0\n19|17|16|15|14|12|12|11|11|18|13|13|14|15|16|17|18|19|0\n46|46|43|43|42|40|33|33|32|32|35|36|37|31|31|39|28|28|29|27|26|25|25|45|26|27|30|29|30|41|38|34|34|35|36|37|38|39|40|41|42|44|44|45|47|47|0\n37|33|29|29|30|31|28|27|27|26|25|24|22|22|20|20|21|35|36|21|23|23|24|25|26|34|28|32|30|31|32|33|34|35|36|37|0\n29|24|22|22|21|20|19|19|25|18|17|17|16|16|28|27|18|26|20|21|23|23|24|25|26|27|28|29|0\n30|29|27|27|25|25|24|23|22|21|20|20|19|18|17|17|18|19|31|21|22|23|24|26|26|28|28|29|30|31|0\n44|43|42|41|40|39|39|38|36|33|32|32|31|31|30|28|28|27|26|25|24|24|37|25|26|27|29|29|30|35|34|33|34|35|36|37|38|45|40|41|42|43|44|45|0\n51|49|48|47|46|45|43|37|37|38|36|36|40|41|42|35|34|32|32|30|30|28|28|27|27|50|29|29|31|31|33|33|34|35|44|39|38|39|40|41|42|43|44|45|46|47|48|49|50|51|0\n32|30|29|29|31|28|26|26|25|24|20|20|21|22|18|18|19|19|23|21|22|23|24|25|27|27|28|33|30|31|32|33|0\n10|9|9|8|7|7|8|11|10|11|0\n51|51|50|49|48|47|47|45|43|43|42|41|40|39|37|36|36|35|33|33|31|31|30|29|28|28|46|29|30|32|32|34|34|35|38|37|38|39|40|41|42|44|44|45|46|53|48|49|50|52|52|53|0\n65|63|61|60|60|59|57|56|56|55|51|49|49|48|47|47|46|44|43|43|45|53|42|41|40|37|36|36|38|35|34|34|64|35|39|37|38|39|40|41|42|54|44|45|46|52|48|50|50|51|52|53|54|55|58|57|58|59|62|61|62|63|64|65|0\n46|46|45|44|42|40|40|41|39|37|36|36|35|35|34|32|32|31|28|27|27|29|26|26|49|30|28|29|30|31|33|33|34|48|38|37|38|39|43|41|42|43|44|45|47|47|48|49|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n16|16|15|14|13|11|10|10|12|11|12|13|14|15|17|17|0\n61|60|60|59|57|56|55|54|54|53|52|51|50|50|63|47|47|46|45|45|42|42|43|41|40|39|37|37|35|34|34|36|65|35|36|38|38|39|40|41|44|43|44|49|46|48|48|49|64|51|52|53|58|55|56|57|58|59|62|61|62|63|64|65|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n79|76|76|74|73|73|67|66|64|64|63|63|68|69|62|61|59|59|58|57|56|56|71|55|54|46|46|47|48|49|50|45|44|43|43|52|42|41|41|78|42|53|44|45|51|47|48|49|50|51|52|53|54|55|72|57|58|60|60|61|62|70|65|65|66|67|68|69|70|71|72|75|74|75|77|77|78|79|0\n36|36|35|35|38|39|33|33|32|30|30|28|28|27|26|24|24|23|22|22|41|23|25|25|26|27|29|29|31|31|32|34|34|40|37|37|38|39|40|41|0\n47|45|44|44|39|39|40|37|37|36|34|34|35|33|32|31|30|29|28|27|26|25|25|43|26|27|28|29|30|31|32|33|42|35|36|38|38|41|40|41|42|43|46|45|46|47|0\n12|11|11|13|10|9|9|15|10|14|12|13|14|15|0\n48|47|46|44|44|42|41|41|40|39|39|36|35|34|33|33|32|30|30|29|28|27|26|26|38|27|28|29|31|31|32|37|34|35|36|37|38|49|40|43|42|43|45|45|46|47|48|49|0\n65|64|63|63|66|67|61|60|60|59|57|56|52|52|51|51|54|49|48|48|47|47|46|43|43|44|42|41|40|38|37|37|36|36|69|39|38|39|40|41|42|45|44|45|46|58|50|49|50|55|53|53|54|55|56|57|58|59|62|61|62|68|64|65|66|67|68|69|0\n48|47|47|46|45|45|44|40|40|41|42|39|38|38|51|37|35|35|32|31|30|30|33|28|28|29|53|29|34|31|32|33|34|36|36|37|52|39|43|41|42|43|44|50|46|49|48|49|50|51|52|53|0\n6|6|7|8|9|7|8|9|0\n58|55|55|54|54|53|53|52|51|50|49|49|60|61|44|42|41|41|43|40|39|38|38|46|47|37|35|35|34|33|33|63|34|36|36|37|48|39|40|45|42|43|44|45|46|47|48|62|50|51|52|59|57|56|56|57|58|59|60|61|62|63|0\n13|11|10|8|8|9|12|9|10|11|12|13|0\n66|65|65|64|59|58|58|60|57|56|55|54|52|52|51|51|62|47|45|45|44|43|43|48|41|41|40|39|37|36|36|35|35|50|38|37|38|39|40|42|42|49|44|46|46|47|48|49|50|63|53|53|54|55|56|57|61|59|60|61|62|63|64|67|66|67|0\n60|58|57|57|56|55|53|53|52|50|50|49|48|47|47|46|45|42|42|41|40|38|37|37|35|35|34|32|32|33|44|33|34|36|36|39|38|39|40|41|43|43|44|45|46|61|48|49|51|51|52|54|54|55|56|59|58|59|60|61|0\n23|21|20|19|18|17|16|15|14|13|13|22|14|15|16|17|18|19|20|21|22|23|0\n53|51|49|49|50|52|48|47|46|45|44|40|39|38|37|37|41|36|36|35|33|32|32|34|30|29|29|31|30|31|55|33|34|35|43|42|38|39|40|41|42|43|44|45|46|47|48|54|50|51|52|53|54|55|0\n47|44|41|41|42|40|40|39|38|37|36|35|34|30|30|31|29|28|27|27|26|25|25|46|26|33|28|29|32|31|32|33|34|35|36|37|38|39|45|43|42|43|44|45|46|47|0\n19|18|18|17|16|16|13|13|12|12|15|14|14|15|21|17|20|19|20|21|0\n34|33|31|31|30|29|28|27|27|35|25|25|23|23|22|21|20|20|37|21|22|24|24|26|26|36|28|29|30|32|32|33|34|35|36|37|0\n80|79|79|78|76|76|74|72|71|70|68|68|69|67|64|63|63|65|62|59|59|58|57|56|56|55|54|52|52|51|49|49|48|47|44|43|43|45|42|42|75|46|44|45|46|47|48|50|50|51|53|53|54|55|61|57|58|60|60|61|62|66|64|65|66|67|73|69|70|71|72|73|74|75|77|77|78|81|80|81|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n23|22|22|24|25|21|19|19|16|16|17|15|15|27|18|17|18|20|20|21|26|23|24|25|26|27|0\n33|31|30|29|29|27|25|24|24|23|22|20|19|19|18|18|28|21|20|21|22|23|26|25|26|27|28|32|30|31|32|33|0\n30|29|26|26|27|28|24|23|22|20|18|17|17|19|21|25|18|19|20|21|22|23|24|25|31|27|28|29|30|31|0\n25|24|24|23|20|19|19|21|18|18|16|15|15|17|16|17|27|22|20|21|22|23|26|25|26|27|0\n9|7|6|6|8|7|8|9|0\n23|20|20|19|17|14|14|13|13|16|18|22|15|15|16|17|18|19|21|21|22|23|0\n43|36|35|35|34|34|38|32|31|31|30|30|40|26|26|27|25|25|24|23|23|42|24|29|28|27|28|29|41|33|32|33|39|37|36|37|38|39|40|41|42|43|0\n21|20|17|17|15|14|14|13|12|12|19|13|16|15|16|18|18|19|20|21|0\n17|17|16|12|12|11|11|14|15|19|13|13|14|15|16|18|18|19|0\n15|14|14|13|13|17|11|11|12|19|12|18|16|15|16|17|18|19|0\n17|17|18|16|16|20|14|13|12|12|15|13|14|15|21|19|18|19|20|21|0\n32|30|30|29|28|28|27|26|23|23|22|21|19|19|18|18|25|20|20|21|22|24|24|25|26|27|33|29|31|31|32|33|0\n77|72|71|71|70|68|67|66|66|65|59|59|60|61|58|58|63|56|56|57|74|55|53|51|51|52|48|47|46|46|45|45|44|43|42|41|40|40|76|41|42|43|44|50|49|47|48|49|50|54|52|53|54|55|75|57|64|62|60|61|62|63|64|65|69|67|68|69|70|73|72|73|74|75|76|77|0\n37|36|32|31|29|29|28|26|25|24|24|23|23|22|21|20|20|34|35|21|22|33|27|25|26|27|28|30|30|31|32|33|34|35|36|37|0\n74|74|72|71|70|68|68|66|66|65|63|62|61|60|60|59|58|57|55|54|54|52|52|51|49|48|47|47|46|42|42|41|41|44|40|39|39|73|40|45|43|43|44|45|46|50|48|49|50|51|53|53|56|55|56|57|58|59|64|61|62|63|64|65|67|67|69|69|70|71|72|73|75|75|0\n18|17|16|16|15|14|12|11|11|13|12|13|14|15|19|17|18|19|0\n23|20|19|19|18|17|16|15|14|13|13|22|14|15|16|17|18|21|20|21|22|23|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n25|24|22|20|19|18|18|21|16|16|15|14|14|15|17|17|23|19|20|21|22|23|24|25|0\n51|51|50|50|49|48|47|46|45|45|54|55|44|43|42|41|39|38|36|36|35|33|33|34|32|31|30|30|57|31|32|40|34|35|37|37|38|39|40|41|42|43|44|56|46|47|48|49|53|52|52|53|54|55|56|57|0\n62|60|60|61|57|56|55|55|54|51|51|52|53|50|49|48|47|45|45|44|43|43|64|42|41|39|39|38|36|36|35|34|34|35|37|37|38|40|40|41|42|65|44|46|46|47|48|49|50|59|52|53|54|58|56|57|58|59|63|61|62|63|64|65|0\n63|60|58|58|57|57|56|54|53|51|44|44|45|43|43|47|42|41|41|49|40|39|39|52|37|37|35|35|34|33|33|62|34|36|36|38|38|55|40|50|42|48|46|45|46|47|48|49|50|51|52|53|54|55|56|61|59|59|60|61|62|63|0\n42|41|40|38|38|39|35|35|33|33|32|31|29|29|28|27|24|24|25|23|23|37|26|25|26|27|28|30|30|31|32|34|34|36|36|37|43|39|40|41|42|43|0\n14|14|12|11|10|9|9|13|10|11|12|13|15|15|0\n21|20|19|17|16|16|15|13|12|12|14|13|14|15|18|17|18|19|20|21|0\n53|52|51|51|50|47|47|48|46|44|42|41|39|39|38|36|35|35|34|34|43|31|31|30|29|29|33|55|30|32|32|33|45|37|36|37|38|40|40|41|42|43|44|45|46|49|48|49|50|54|52|53|54|55|0\n13|13|10|10|11|12|9|9|15|11|12|14|14|15|0\n13|8|8|9|10|11|12|9|10|11|12|13|0\n5|4|4|5|0\n41|38|37|37|36|35|35|40|34|34|43|44|33|32|31|27|27|28|29|25|25|24|24|26|26|30|28|29|30|31|32|33|45|42|36|39|38|39|40|41|42|43|44|45|0\n7|7|6|6|9|8|8|9|0\n37|36|32|31|29|29|28|26|25|24|24|23|23|22|21|20|20|34|35|21|22|33|27|25|26|27|28|30|30|31|32|33|34|35|36|37|0\n29|25|25|26|24|22|21|21|19|19|18|17|16|16|28|17|18|20|20|23|22|23|24|27|26|27|28|29|0\n48|46|46|45|45|44|41|40|40|42|38|37|34|33|33|35|31|31|30|29|28|27|26|26|39|27|28|29|30|32|32|36|34|35|36|37|38|39|43|41|42|43|44|49|47|47|48|49|0\n17|16|16|18|14|13|12|11|11|15|12|13|14|15|19|17|18|19|0\n35|34|33|31|31|30|28|27|27|24|24|23|22|21|20|19|19|26|20|21|22|23|25|25|26|29|28|29|30|32|32|33|34|35|0\n38|37|36|36|35|34|32|31|30|28|27|27|26|24|24|23|22|21|21|33|22|23|25|25|26|29|28|29|30|31|32|33|34|35|39|37|38|39|0\n40|39|38|38|36|28|28|25|24|24|26|27|30|31|32|33|34|23|22|22|37|23|35|25|26|27|29|29|30|31|32|33|34|35|36|37|41|39|40|41|0\n22|22|21|20|19|18|18|24|14|14|15|16|17|15|16|17|25|19|20|21|23|23|24|25|0\n21|20|19|15|15|13|13|12|12|17|18|14|14|16|16|17|18|19|20|21|0\n7|7|6|6|9|8|8|9|0\n9|6|6|7|8|7|8|9|0\n9|6|6|7|8|7|8|9|0\n5|4|4|5|0\n11|10|10|9|8|8|13|9|12|11|12|13|0\n40|39|38|38|37|34|34|31|31|29|28|28|27|26|26|33|25|24|23|22|22|23|24|25|36|27|30|29|30|32|32|33|35|35|36|37|41|39|40|41|0\n29|28|28|27|25|24|23|22|21|20|20|19|18|18|17|17|31|19|26|21|22|23|24|25|26|27|30|29|30|31|0\n29|26|25|25|24|22|22|21|20|19|17|17|16|16|28|18|18|19|20|21|23|23|24|27|26|27|28|29|0\n30|29|28|28|27|25|25|22|22|20|20|19|18|17|17|24|18|19|21|21|23|23|24|26|26|27|31|29|30|31|0\n13|10|9|8|8|11|12|9|10|11|12|13|0\n47|45|44|43|42|39|39|40|37|36|35|35|33|33|31|30|30|29|27|27|26|25|25|46|26|28|28|29|32|31|32|34|34|38|36|37|38|41|40|41|42|43|44|45|46|47|0\n22|22|20|18|17|16|15|15|14|13|13|21|14|19|16|17|18|19|20|21|23|23|0\n27|24|24|23|22|20|20|19|17|17|16|15|15|26|16|18|18|19|21|21|22|23|25|25|26|27|0\n23|21|19|19|18|17|16|15|13|13|14|22|14|15|16|17|18|20|20|21|22|23|0\n11|8|8|7|7|10|9|9|10|11|0\n11|10|8|7|7|9|8|9|10|11|0\n7|5|5|6|6|7|0\n11|10|10|12|13|9|9|15|14|11|12|13|14|15|0\n22|22|20|18|17|17|16|13|13|14|15|21|14|15|16|19|18|19|20|21|23|23|0\n27|26|25|24|23|22|21|21|28|29|19|18|18|17|17|31|20|19|20|30|22|23|24|25|26|27|28|29|30|31|0\n17|16|15|14|14|12|12|11|11|19|13|13|18|15|16|17|18|19|0\n5|4|4|5|0\n5|4|4|5|0\n9|9|7|7|8|11|8|10|10|11|0\n9|7|6|6|8|7|8|9|0\n15|13|11|11|10|9|9|14|10|12|12|13|14|15|0\n59|56|55|55|54|53|53|52|50|47|46|46|48|45|44|43|41|41|40|38|38|37|35|34|33|33|32|31|31|51|32|36|34|35|36|37|39|39|40|42|42|43|44|45|49|47|48|49|50|51|52|58|54|57|56|57|58|59|0\n25|24|24|23|22|21|19|19|18|17|16|15|15|27|16|17|18|20|20|21|22|23|26|25|26|27|0\n46|46|42|42|40|40|39|39|38|37|36|35|34|32|31|31|30|28|27|27|26|25|25|45|26|29|28|29|30|33|32|33|34|35|36|37|38|44|41|41|43|43|44|45|47|47|0\n18|16|16|15|15|19|14|13|12|12|21|13|14|20|17|17|18|19|20|21|0\n70|69|68|68|66|66|63|62|61|61|60|58|58|54|53|52|50|50|51|49|49|56|48|46|46|45|42|42|41|40|38|38|39|37|37|65|44|39|40|41|43|43|44|45|47|47|48|57|55|51|52|53|54|55|56|57|59|59|60|64|62|63|64|65|67|67|71|69|70|71|0\n15|15|14|14|13|12|11|10|10|11|12|13|17|16|16|17|0\n5|4|4|5|0\n3|3|0\n11|11|9|9|8|8|13|10|10|12|12|13|0\n16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0\n9|8|8|7|7|11|10|9|10|11|0\n34|33|32|31|31|30|29|27|26|24|23|22|22|21|20|19|19|28|20|21|25|23|24|25|26|27|28|29|30|35|32|33|34|35|0\n16|15|13|12|12|11|10|10|17|11|14|13|14|15|16|17|0\n11|8|8|7|7|10|9|9|10|11|0\n39|38|38|37|36|35|35|33|32|30|30|28|28|27|26|25|24|23|22|22|34|23|24|25|26|27|29|29|31|31|32|33|34|41|36|37|40|39|40|41|0\n3|3|0\n71|70|69|69|68|64|63|63|62|60|59|58|58|57|55|55|54|53|53|66|52|51|50|49|47|47|46|45|42|42|43|44|40|38|38|39|41|39|40|41|73|43|44|45|46|48|48|49|50|51|52|67|54|56|56|57|61|59|60|61|62|65|64|65|66|67|68|72|70|71|72|73|0\n7|6|5|5|6|7|0\n4|4|5|5|0\n13|12|12|11|10|9|9|15|10|11|14|13|14|15|0\n5|4|4|5|0\n7|7|6|6|9|8|8|9|0\n12|11|11|9|8|8|10|9|10|13|12|13|0\n6|6|5|5|7|7|0\n11|10|9|9|8|8|13|12|10|11|12|13|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n4|4|5|5|0\n7|6|5|5|6|7|0\n5|5|6|7|6|7|0\n6|6|7|8|9|7|8|9|0\n5|5|6|7|6|7|0\n9|7|7|6|6|8|8|9|0\n7|6|5|5|6|7|0\n7|7|6|6|9|8|8|9|0\n5|5|6|7|6|7|0\n4|4|5|5|0\n3|3|0\n5|5|6|7|6|7|0\n5|5|6|7|6|7|0\n5|5|6|7|6|7|0\n27|23|23|24|22|21|19|19|17|17|15|15|16|26|16|18|18|20|20|21|22|25|24|25|26|27|0\n55|55|54|53|53|52|44|43|43|42|42|41|40|40|47|48|39|37|37|38|36|34|34|32|32|31|30|30|51|31|33|33|35|35|36|50|38|39|49|41|46|45|44|45|46|47|48|49|50|51|52|57|54|56|56|57|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n7|5|5|6|6|7|0\n4|4|5|5|0\n24|23|22|21|20|19|19|18|17|16|16|15|15|27|26|17|18|25|20|21|22|23|24|25|26|27|0\n9|8|7|6|6|7|8|9|0\n6|5|5|7|6|7|0\n3|3|0\n6|6|5|5|7|7|0\n9|8|7|6|6|7|8|9|0\n5|4|4|5|0\n9|8|6|6|7|7|8|9|0\n3|3|0\n7|6|5|5|6|7|0\n7|6|5|5|6|7|0\n3|3|0\n42|41|41|39|35|34|33|33|32|31|30|30|37|28|28|27|24|24|25|23|23|40|26|25|26|27|29|29|38|31|32|36|34|35|36|37|38|39|40|43|42|43|0\n5|5|6|7|6|7|0\n4|4|5|5|0\n4|4|5|5|0\n4|4|5|5|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n4|4|5|5|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n7|6|5|5|6|7|0\n6|6|5|5|7|7|0\n7|6|5|5|6|7|0\n7|6|5|5|6|7|0\n6|5|5|7|6|7|0\n5|5|6|7|6|7|0\n4|4|5|5|0\n9|8|7|6|6|7|8|9|0\n30|30|24|23|23|25|26|27|21|20|19|19|18|17|17|29|18|22|20|21|22|28|24|25|26|27|28|29|31|31|0\n6|5|5|7|6|7|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n7|5|5|6|6|7|0\n4|4|5|5|0\n7|6|5|5|6|7|0\n38|38|36|35|34|32|32|30|30|29|28|27|26|24|23|21|21|22|25|37|22|23|24|25|26|27|28|29|31|31|33|33|34|35|36|37|39|39|0\n7|5|5|6|6|7|0\n7|6|5|5|6|7|0\n6|6|5|5|7|7|0\n3|3|0\n3|3|0\n5|5|6|7|6|7|0\n3|3|0\n7|6|5|5|6|7|0\n7|6|5|5|6|7|0\n6|6|5|5|7|7|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n6|5|5|7|6|7|0\n7|6|5|5|6|7|0\n5|5|6|7|6|7|0\n7|6|5|5|6|7|0\n9|8|8|7|7|11|10|9|10|11|0\n5|5|6|7|6|7|0\n9|8|6|6|7|7|8|9|0\n7|5|5|6|6|7|0\n15|13|13|12|10|9|9|11|10|11|12|14|14|15|0\n6|5|5|7|6|7|0\n5|4|4|5|0\n7|7|6|6|9|8|8|9|0\n5|4|4|5|0\n9|8|8|7|7|11|10|9|10|11|0\n7|6|5|5|6|7|0\n6|6|5|5|7|7|0\n5|5|6|7|6|7|0\n7|5|5|6|6|7|0\n7|5|5|6|6|7|0\n5|5|6|7|6|7|0\n6|5|5|7|6|7|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n4|4|5|5|0\n4|4|5|5|0\n5|5|6|7|6|7|0\n5|4|4|5|0\n6|6|5|5|7|7|0\n7|5|5|6|6|7|0\n5|4|4|5|0\n5|4|4|5|0\n7|5|5|6|6|7|0\n12|11|10|10|13|9|9|15|14|11|12|13|14|15|0\n7|6|5|5|6|7|0\n3|3|0\n4|4|5|5|0\n5|5|6|7|6|7|0\n4|4|5|5|0\n5|5|6|7|6|7|0\n37|34|33|33|31|31|32|29|27|27|25|24|23|23|22|21|20|20|30|21|22|26|24|25|26|28|28|29|30|36|32|35|34|35|36|37|0\n5|4|4|5|0\n3|3|0\n10|10|11|9|8|8|13|9|12|11|12|13|0\n9|7|7|6|6|8|8|9|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n5|4|4|5|0\n6|6|5|5|7|7|0\n5|5|6|7|6|7|0\n5|5|6|7|6|7|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n5|5|6|7|6|7|0\n5|5|6|7|6|7|0\n5|4|4|5|0\n9|8|7|6|6|7|8|9|0\n7|6|5|5|6|7|0\n5|5|6|7|6|7|0\n8|8|9|7|7|11|10|9|10|11|0\n5|5|6|7|6|7|0\n7|6|5|5|6|7|0\n4|4|5|5|0\n5|5|6|7|6|7|0\n7|7|6|6|9|8|8|9|0\n7|5|5|6|6|7|0\n4|4|5|5|0\n7|6|5|5|6|7|0\n7|6|5|5|6|7|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n9|8|7|6|6|7|8|9|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n6|6|5|5|7|7|0\n7|7|6|6|9|8|8|9|0\n5|5|6|7|6|7|0\n5|4|4|5|0\n4|4|5|5|0\n9|8|6|6|7|7|8|9|0\n5|4|4|5|0\n7|7|6|6|9|8|8|9|0\n7|6|5|5|6|7|0\n7|5|5|6|6|7|0\n4|4|5|5|0\n7|6|5|5|6|7|0\n3|3|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n7|6|5|5|6|7|0\n3|3|0\n5|5|6|7|6|7|0\n5|4|4|5|0\n10|9|9|7|7|8|8|11|10|11|0\n5|4|4|5|0\n5|5|6|7|6|7|0\n5|5|6|7|6|7|0\n7|5|5|6|6|7|0\n7|6|6|8|9|7|8|9|0\n4|4|5|5|0\n4|4|5|5|0\n4|4|5|5|0\n9|7|7|6|6|8|8|9|0\n7|5|5|6|6|7|0\n7|5|5|6|6|7|0\n5|4|4|5|0\n7|6|5|5|6|7|0\n3|3|0\n7|6|5|5|6|7|0\n5|5|6|7|6|7|0\n14|14|15|16|12|12|10|10|11|11|13|13|17|15|16|17|0\n12|11|11|8|8|9|10|9|10|13|12|13|0\n7|6|5|5|6|7|0\n9|8|8|7|7|11|10|9|10|11|0\n6|5|5|7|6|7|0\n8|7|7|9|10|11|8|9|10|11|0\n9|7|7|6|6|8|8|9|0\n7|6|5|5|6|7|0\n5|5|6|7|6|7|0\n6|5|5|7|6|7|0\n7|6|5|5|6|7|0\n7|6|5|5|6|7|0\n4|4|5|5|0\n5|4|4|5|0\n4|4|5|5|0\n3|3|0\n6|5|5|7|6|7|0\n5|5|6|7|6|7|0\n3|3|0\n6|6|5|5|7|7|0\n3|3|0\n6|5|5|7|6|7|0\n4|4|5|5|0\n9|8|6|6|7|7|8|9|0\n5|4|4|5|0\n8|7|7|6|6|9|8|9|0\n12|11|11|10|8|8|9|9|10|13|12|13|0\n9|7|7|6|6|8|8|9|0\n7|6|5|5|6|7|0\n7|7|6|6|9|8|8|9|0\n5|4|4|5|0\n5|4|4|5|0\n3|3|0\n3|3|0\n7|5|5|6|6|7|0\n7|5|5|6|6|7|0\n7|6|5|5|6|7|0\n5|4|4|5|0\n41|40|38|37|36|36|39|42|43|35|34|31|30|30|29|29|28|27|25|25|24|24|45|26|26|27|28|33|32|31|32|33|34|35|44|37|38|39|40|41|42|43|44|45|0\n62|62|55|55|53|53|52|51|50|49|48|47|47|57|58|59|46|43|43|44|41|40|40|39|38|36|36|35|34|33|33|61|34|35|37|37|38|39|42|41|42|45|44|45|46|60|48|49|50|51|52|54|54|56|56|57|58|59|60|61|63|63|0\n8|8|7|6|6|7|9|9|0\n"
  },
  {
    "path": "a2/utils/datasets/stanfordSentimentTreebank/datasetSentences.txt",
    "content": "sentence_index\tsentence\n1\tThe Rock is destined to be the 21st Century 's new `` Conan '' and that he 's going to make a splash even greater than Arnold Schwarzenegger , Jean-Claud Van Damme or Steven Segal .\n2\tThe gorgeously elaborate continuation of `` The Lord of the Rings '' trilogy is so huge that a column of words can not adequately describe co-writer\\/director Peter Jackson 's expanded vision of J.R.R. Tolkien 's Middle-earth .\n3\tEffective but too-tepid biopic\n4\tIf you sometimes like to go to the movies to have fun , Wasabi is a good place to start .\n5\tEmerges as something rare , an issue movie that 's so honest and keenly observed that it does n't feel like one .\n6\tThe film provides some great insight into the neurotic mindset of all comics -- even those who have reached the absolute top of the game .\n7\tOffers that rare combination of entertainment and education .\n8\tPerhaps no picture ever made has more literally showed that the road to hell is paved with good intentions .\n9\tSteers turns in a snappy screenplay that curls at the edges ; it 's so clever you want to hate it .\n10\tBut he somehow pulls it off .\n11\tTake Care of My Cat offers a refreshingly different slice of Asian cinema .\n12\tThis is a film well worth seeing , talking and singing heads and all .\n13\tWhat really surprises about Wisegirls is its low-key quality and genuine tenderness .\n14\t-LRB- Wendigo is -RRB- why we go to the cinema : to be fed through the eye , the heart , the mind .\n15\tOne of the greatest family-oriented , fantasy-adventure movies ever .\n16\tUltimately , it ponders the reasons we need stories so much .\n17\tAn utterly compelling ` who wrote it ' in which the reputation of the most famous author who ever lived comes into question .\n18\tIlluminating if overly talky documentary .\n19\tA masterpiece four years in the making .\n20\tThe movie 's ripe , enrapturing beauty will tempt those willing to probe its inscrutable mysteries .\n21\tOffers a breath of the fresh air of true sophistication .\n22\tA thoughtful , provocative , insistently humanizing film .\n23\tWith a cast that includes some of the top actors working in independent film , Lovely & Amazing involves us because it is so incisive , so bleakly amusing about how we go about our lives .\n24\tA disturbing and frighteningly evocative assembly of imagery and hypnotic music composed by Philip Glass .\n25\tNot for everyone , but for those with whom it will connect , it 's a nice departure from standard moviegoing fare .\n26\tScores a few points for doing what it does with a dedicated and good-hearted professionalism .\n27\tOccasionally melodramatic , it 's also extremely effective .\n28\tAn idealistic love story that brings out the latent 15-year-old romantic in everyone .\n29\tAt about 95 minutes , Treasure Planet maintains a brisk pace as it races through the familiar story .\n30\tHowever , it lacks grandeur and that epic quality often associated with Stevenson 's tale as well as with earlier Disney efforts .\n31\tIt helps that Lil Bow Wow ... tones down his pint-sized gangsta act to play someone who resembles a real kid .\n32\tGuaranteed to move anyone who ever shook , rattled , or rolled .\n33\tA masterful film from a master filmmaker , unique in its deceptive grimness , compelling in its fatalist worldview .\n34\tLight , cute and forgettable .\n35\tIf there 's a way to effectively teach kids about the dangers of drugs , I think it 's in projects like the -LRB- unfortunately R-rated -RRB- Paid .\n36\tWhile it would be easy to give Crush the new title of Two Weddings and a Funeral , it 's a far more thoughtful film than any slice of Hugh Grant whimsy .\n37\tThough everything might be literate and smart , it never took off and always seemed static .\n38\tCantet perfectly captures the hotel lobbies , two-lane highways , and roadside cafes that permeate Vincent 's days\n39\tMs. Fulford-Wierzbicki is almost spooky in her sulky , calculating Lolita turn .\n40\tThough it is by no means his best work , Laissez-Passer is a distinguished and distinctive effort by a bona-fide master , a fascinating film replete with rewards to be had by all willing to make the effort to reap them .\n41\tLike most Bond outings in recent years , some of the stunts are so outlandish that they border on being cartoonlike .\n42\tA heavy reliance on CGI technology is beginning to creep into the series .\n43\tNewton draws our attention like a magnet , and acts circles around her better known co-star , Mark Wahlberg .\n44\tThe story loses its bite in a last-minute happy ending that 's even less plausible than the rest of the picture .\n45\tMuch of the way , though , this is a refreshingly novel ride .\n46\tFuller would surely have called this gutsy and at times exhilarating movie a great yarn .\n47\tThe film makes a strong case for the importance of the musicians in creating the Motown sound .\n48\tKarmen moves like rhythm itself , her lips chanting to the beat , her long , braided hair doing little to wipe away the jeweled beads of sweat .\n49\tGosling provides an amazing performance that dwarfs everything else in the film .\n50\tA real movie , about real people , that gives us a rare glimpse into a culture most of us do n't know .\n51\tTender yet lacerating and darkly funny fable .\n52\tMay be spoofing an easy target -- those old ' 50 's giant creature features -- but ... it acknowledges and celebrates their cheesiness as the reason why people get a kick out of watching them today .\n53\tAn engaging overview of Johnson 's eccentric career .\n54\tIn its ragged , cheap and unassuming way , the movie works .\n55\tSome actors have so much charisma that you 'd be happy to listen to them reading the phone book .\n56\tHugh Grant and Sandra Bullock are two such likeable actors .\n57\tSandra Nettelbeck beautifully orchestrates the transformation of the chilly , neurotic , and self-absorbed Martha as her heart begins to open .\n58\tBehind the snow games and lovable Siberian huskies -LRB- plus one sheep dog -RRB- , the picture hosts a parka-wrapped dose of heart .\n59\tEverytime you think Undercover Brother has run out of steam , it finds a new way to surprise and amuse .\n60\tManages to be original , even though it rips off many of its ideas .\n61\tSinger\\/composer Bryan Adams contributes a slew of songs -- a few potential hits , a few more simply intrusive to the story -- but the whole package certainly captures the intended , er , spirit of the piece .\n62\tYou 'd think by now America would have had enough of plucky British eccentrics with hearts of gold .\n63\tYet the act is still charming here .\n64\tWhether or not you 're enlightened by any of Derrida 's lectures on `` the other '' and `` the self , '' Derrida is an undeniably fascinating and playful fellow .\n65\tA pleasant enough movie , held together by skilled ensemble actors .\n66\tThis is the best American movie about troubled teens since 1998 's Whatever .\n67\tDisney has always been hit-or-miss when bringing beloved kids ' books to the screen ... Tuck Everlasting is a little of both .\n68\tJust the labour involved in creating the layered richness of the imagery in this chiaroscuro of madness and light is astonishing .\n69\tThe animated subplot keenly depicts the inner struggles of our adolescent heroes - insecure , uncontrolled , and intense .\n70\tThe invincible Werner Herzog is alive and well and living in LA\n71\tMorton is a great actress portraying a complex character , but Morvern Callar grows less compelling the farther it meanders from its shocking start .\n72\tPart of the charm of Satin Rouge is that it avoids the obvious with humour and lightness .\n73\tSon of the Bride may be a good half-hour too long but comes replete with a flattering sense of mystery and quietness .\n74\tA simmering psychological drama in which the bursts of sudden violence are all the more startling for the slow buildup that has preceded them .\n75\tA taut , intelligent psychological drama .\n76\tA truly moving experience , and a perfect example of how art -- when done right -- can help heal , clarify , and comfort .\n77\tThis delicately observed story , deeply felt and masterfully stylized , is a triumph for its maverick director .\n78\tAt heart the movie is a deftly wrought suspense yarn whose richer shadings work as coloring rather than substance .\n79\tThe appearance of Treebeard and Gollum 's expanded role will either have you loving what you 're seeing , or rolling your eyes .\n80\tI loved it !\n81\tGollum 's ` performance ' is incredible !\n82\ta screenplay more ingeniously constructed than `` Memento ''\n83\tIf this movie were a book , it would be a page-turner , you ca n't wait to see what happens next .\n84\tHaneke challenges us to confront the reality of sexual aberration .\n85\tAbsorbing and disturbing -- perhaps more disturbing than originally intended -- but a little clarity would have gone a long way .\n86\tIt 's the best film of the year so far , the benchmark against which all other Best Picture contenders should be measured .\n87\tPainful to watch , but viewers willing to take a chance will be rewarded with two of the year 's most accomplished and riveting film performances .\n88\tThis is a startling film that gives you a fascinating , albeit depressing view of Iranian rural life close to the Iraqi border .\n89\tA few artsy flourishes aside , Narc is as gritty as a movie gets these days .\n90\tWhile The Isle is both preposterous and thoroughly misogynistic , its vistas are incredibly beautiful to look at .\n91\tTogether , Tok and O orchestrate a buoyant , darkly funny dance of death .\n92\tIn the process , they demonstrate that there 's still a lot of life in Hong Kong cinema .\n93\tDirector Kapur is a filmmaker with a real flair for epic landscapes and adventure , and this is a better film than his earlier English-language movie , the overpraised Elizabeth .\n94\tThe movie is a blast of educational energy , as bouncy animation and catchy songs escort you through the entire 85 minutes .\n95\tA sports movie with action that 's exciting on the field and a story you care about off it .\n96\tDoug Liman , the director of Bourne , directs the traffic well , gets a nice wintry look from his locations , absorbs us with the movie 's spycraft and uses Damon 's ability to be focused and sincere .\n97\tThe tenderness of the piece is still intact .\n98\tKatz uses archival footage , horrifying documents of lynchings , still photographs and charming old reel-to-reel recordings of Meeropol entertaining his children to create his song history , but most powerful of all is the song itself\n99\tLike the film 's almost anthropologically detailed realization of early - '80s suburbia , it 's significant without being overstated .\n100\tWhile McFarlane 's animation lifts the film firmly above the level of other coming-of-age films ... it 's also so jarring that it 's hard to get back into the boys ' story .\n101\tIf nothing else , this movie introduces a promising , unusual kind of psychological horror .\n102\tIn a normal screen process , these bromides would be barely enough to sustain an interstitial program on the Discovery Channel .\n103\tBut in Imax 3-D , the clichÃ©s disappear into the vertiginous perspectives opened up by the photography .\n104\tWriter-director Burger imaginatively fans the embers of a dormant national grief and curiosity that has calcified into chronic cynicism and fear .\n105\t... a roller-coaster ride of a movie\n106\tI enjoyed Time of Favor while I was watching it , but I was surprised at how quickly it faded from my memory .\n107\tChicago is sophisticated , brash , sardonic , completely joyful in its execution .\n108\tSteve Irwin 's method is Ernest Hemmingway at accelerated speed and volume .\n109\tA refreshing Korean film about five female high school friends who face an uphill battle when they try to take their relationships into deeper waters .\n110\tOn the surface , it 's a lovers-on-the-run crime flick , but it has a lot in common with Piesiewicz 's and Kieslowski 's earlier work , films like The Double Life of Veronique .\n111\tThe values that have held the Enterprise crew together through previous adventures and perils do so again-courage , self-sacrifice and patience under pressure .\n112\tIf it 's possible for a sequel to outshine the original , then SL2 does just that .\n113\tA romantic comedy that operates by the rules of its own self-contained universe .\n114\t4 friends , 2 couples , 2000 miles , and all the Pabst Blue Ribbon beer they can drink - it 's the ultimate redneck road-trip .\n115\tThe film is often filled with a sense of pure wonderment and excitement not often seen in today 's cinema du sarcasm\n116\tIt might be tempting to regard Mr. Andrew and his collaborators as oddballs , but Mr. Earnhart 's quizzical , charming movie allows us to see them , finally , as artists .\n117\tA feel-good picture in the best sense of the term .\n118\tEdited and shot with a syncopated style mimicking the work of his subjects , Pray turns the idea of the documentary on its head , making it rousing , invigorating fun lacking any MTV puffery .\n119\tA mostly intelligent , engrossing and psychologically resonant suspenser .\n120\tIt 's this memory-as-identity obviation that gives Secret Life its intermittent unease , reaffirming that long-held illusions are indeed reality , and that erasing them recasts the self .\n121\tHip-hop has a history , and it 's a metaphor for this love story .\n122\tIn scope , ambition and accomplishment , Children of the Century ... takes Kurys ' career to a whole new level .\n123\tThis may not have the dramatic gut-wrenching impact of other Holocaust films , but it 's a compelling story , mainly because of the way it 's told by the people who were there .\n124\tBetween the drama of Cube ?\n125\ts personal revelations regarding what the shop means in the big picture , iconic characters gambol fluidly through the story , with charming results .\n126\tA gentle , compassionate drama about grief and healing .\n127\tSomewhere short of Tremors on the modern B-scene : neither as funny nor as clever , though an agreeably unpretentious way to spend ninety minutes .\n128\tDigital-video documentary about stand-up comedians is a great glimpse into a very different world .\n129\tUnlike most teen flicks , Swimming takes its time to tell its story , casts mostly little-known performers in key roles , and introduces some intriguing ambiguity .\n130\tAn enthralling , playful film that constantly frustrates our desire to know the ` truth ' about this man , while deconstructing the very format of the biography in a manner that Derrida would doubtless give his blessing to .\n131\t`` Extreme Ops '' exceeds expectations .\n132\tGood fun , good action , good acting , good dialogue , good pace , good cinematography .\n133\tYou Should Pay Nine Bucks for This : Because you can hear about suffering Afghan refugees on the news and still be unaffected .\n134\tDramas like this make it human .\n135\tA thunderous ride at first , quiet cadences of pure finesse are few and far between ; their shortage dilutes the potency of otherwise respectable action .\n136\tStill , this flick is fun , and host to some truly excellent sequences .\n137\tIt 's obviously struck a responsive chord with many South Koreans , and should work its magic in other parts of the world .\n138\tRun , do n't walk , to see this barbed and bracing comedy on the big screen .\n139\tA classy item by a legend who may have nothing left to prove but still has the chops and drive to show how its done .\n140\tIt is nature against progress .\n141\tIn Fessenden 's horror trilogy , this theme has proved important to him and is especially so in the finale .\n142\tIt 's not exactly a gourmet meal but the fare is fair , even coming from the drive-thru .\n143\tThis is what IMAX was made for : Strap on a pair of 3-D goggles , shut out the real world , and take a vicarious voyage to the last frontier -- space .\n144\tMerely as a technical , logistical feat , Russian Ark marks a cinematic milestone .\n145\t-LRB- Schweiger is -RRB- talented and terribly charismatic , qualities essential to both movie stars and social anarchists .\n146\tIt 's a great deal of sizzle and very little steak .\n147\tBut what spectacular sizzle it is !\n148\t... In this incarnation its fizz is infectious .\n149\tAn original gem about an obsession with time .\n150\tIt will delight newcomers to the story and those who know it from bygone days .\n151\tGloriously goofy -LRB- and gory -RRB- midnight movie stuff .\n152\tThe film overcomes the regular minefield of coming-of-age cliches with potent doses of honesty and sensitivity .\n153\tIf your senses have n't been dulled by slasher films and gorefests , if you 're a connoisseur of psychological horror , this is your ticket .\n154\tIt 's a minor comedy that tries to balance sweetness with coarseness , while it paints a sad picture of the singles scene .\n155\tIt is intensely personal and yet -- unlike Quills -- deftly shows us the temper of the times .\n156\tAs lo-fi as the special effects are , the folks who cobbled Nemesis together indulge the force of humanity over hardware in a way that George Lucas has long forgotten .\n157\tLike Mike does n't win any points for originality .\n158\tIt does succeed by following a feel-good formula with a winning style , and by offering its target audience of urban kids some welcome role models and optimism .\n159\tIt 's a hoot and a half , and a great way for the American people to see what a candidate is like when he 's not giving the same 15-cent stump speech .\n160\tFar from perfect , but its heart is in the right place ... innocent and well-meaning .\n161\tA sad , superior human comedy played out on the back roads of life .\n162\tWaydowntown is by no means a perfect film , but its boasts a huge charm factor and smacks of originality .\n163\tTim Allen is great in his role but never hogs the scenes from his fellow cast , as there are plenty of laughs and good lines for everyone in this comedy .\n164\tMore a load of enjoyable , Conan-esque claptrap than the punishing , special-effects soul assaults the Mummy pictures represent .\n165\tEnormously likable , partly because it is aware of its own grasp of the absurd .\n166\tHere 's a British flick gleefully unconcerned with plausibility , yet just as determined to entertain you .\n167\tIt 's an old story , but a lively script , sharp acting and partially animated interludes make Just a Kiss seem minty fresh .\n168\tMust be seen to be believed .\n169\tRay Liotta and Jason Patric do some of their best work in their underwritten roles , but do n't be fooled : Nobody deserves any prizes here .\n170\tEverything that has to do with Yvan and Charlotte , and everything that has to do with Yvan 's rambunctious , Jewish sister and her non-Jew husband , feels funny and true .\n171\tThe year 's happiest surprise , a movie that deals with a real subject in an always surprising way .\n172\tFans of Behan 's work and of Irish movies in general will be rewarded by Borstal Boy .\n173\tIts mysteries are transparently obvious , and it 's too slowly paced to be a thriller .\n174\t-LRB- But it 's -RRB- worth recommending because of two marvelous performances by Michael Caine and Brendan Fraser .\n175\tThe film is faithful to what one presumes are the book 's twin premises -- that we become who we are on the backs of our parents , but we have no idea who they were at our age ; and that time is a fleeting and precious commodity no matter how old you are .\n176\tStephen Earnhart 's homespun documentary Mule Skinner Blues has nothing but love for its posse of trailer park denizens .\n177\tA solidly seaworthy chiller .\n178\tIf you can get past the fantastical aspects and harsh realities of `` The Isle '' you 'll get a sock-you-in-the-eye flick that is a visual tour-de-force and a story that is unlike any you will likely see anywhere else .\n179\tThere are as many misses as hits , but ultimately , it finds humor in the foibles of human behavior , and it 's a welcome return to the roots of a genre that should depend on surprises .\n180\tA well-made thriller with a certain level of intelligence and non-reactionary morality .\n181\tThere 's enough science to make it count as educational , and enough beauty to make it unforgettable .\n182\tRemains a solid , if somewhat heavy-handed , account of the near-disaster ... done up by Howard with a steady , if not very imaginative , hand .\n183\tMakmalbaf follows a resolutely realistic path in this uncompromising insight into the harsh existence of the Kurdish refugees of Iran 's borderlands .\n184\tFor a good chunk of its running time , Trapped is an effective and claustrophobic thriller .\n185\tMost of Crush is a clever and captivating romantic comedy with a welcome pinch of tartness .\n186\tNair does capture the complexity of a big family and its trials and tribulations ...\n187\tThe seaside splendor and shallow , beautiful people are nice to look at while you wait for the story to get going .\n188\tRare is the ` urban comedy ' that even attempts the insight and honesty of this disarming indie .\n189\tRanks among Willams ' best screen work .\n190\tEngagingly captures the maddening and magnetic ebb and flow of friendship .\n191\tAn experience so engrossing it is like being buried in a new environment .\n192\tIt 's traditional moviemaking all the way , but it 's done with a lot of careful period attention as well as some very welcome wit .\n193\tMaybe it 's just because this past year has seen the release of some of the worst film comedies in decades ... But honestly , Analyze That really is n't all that bad .\n194\tA droll , well-acted , character-driven comedy with unexpected deposits of feeling .\n195\tThis is simply the most fun you 'll ever have with a documentary !\n196\tA very funny movie .\n197\tWatching Haneke 's film is , aptly enough , a challenge and a punishment .\n198\tBut watching Huppert , a great actress tearing into a landmark role , is riveting .\n199\tA cop story that understands the medium amazingly well .\n200\tBritney has been delivered to the big screen safe and sound , the way we like our 20-year-old superstar girls to travel on the fame freeway .\n201\tThose outside show business will enjoy a close look at people they do n't really want to know .\n202\tThe kind of nervous film that will either give you a mild headache or exhilarate you .\n203\tWatching Beanie and his gang put together his slasher video from spare parts and borrowed materials is as much fun as it must have been for them to make it .\n204\tChildren may not understand everything that happens -- I 'm not sure even Miyazaki himself does -- but they will almost certainly be fascinated , and undoubtedly delighted .\n205\tA fascinating and fun film .\n206\tTadpole is a sophisticated , funny and good-natured treat , slight but a pleasure .\n207\tThis insightful , Oscar-nominated documentary , in which children on both sides of the ever-escalating conflict have their say away from watchful parental eyes , gives peace yet another chance .\n208\tI admired this work a lot .\n209\tWhether you 're moved and love it , or bored or frustrated by the film , you 'll still feel something .\n210\t... there are enough moments of heartbreaking honesty to keep one glued to the screen .\n211\tMy goodness , Queen Latifah has a lot to offer and she seemed to have no problem flaunting her natural gifts .\n212\tShe must have a very strong back .\n213\tA smart , sweet and playful romantic comedy .\n214\tAustralian actor\\/director John Polson and award-winning English cinematographer Giles Nuttgens make a terrific effort at disguising the obvious with energy and innovation .\n215\tWithout heavy-handedness , Dong provides perspective with his intelligent grasp of human foibles and contradictions .\n216\tSolid , lump-in-the-throat family entertainment that derives its power by sticking to the facts .\n217\tAs an entertainment , the movie keeps you diverted and best of all , it lightens your wallet without leaving a sting .\n218\tIt is interesting and fun to see Goodall and her chimpanzees on the bigger-than-life screen .\n219\tIt wo n't bust your gut -- and it 's not intended to -- it 's merely a blandly cinematic surgical examination of what makes a joke a joke .\n220\tA somewhat crudely constructed but gripping , questing look at a person so racked with self-loathing , he becomes an enemy to his own race .\n221\tIt extends the writings of Jean Genet and John Rechy , the films of Fassbinder , perhaps even the nocturnal works of Goya .\n222\tNarc may not get an ` A ' for originality , but it wears its B-movie heritage like a badge of honor .\n223\tWith the film 's striking ending , one realizes that we have a long way to go before we fully understand all the sexual permutations involved .\n224\t-LRB- Drumline -RRB- is entertaining for what it does , and admirable for what it does n't do .\n225\tAt its best early on as it plays the culture clashes between the brothers .\n226\tAn unabashedly schmaltzy and thoroughly enjoyable true story .\n227\tA thoughtful look at a painful incident that made headlines in 1995 .\n228\tYou walk out of The Good Girl with mixed emotions -- disapproval of Justine combined with a tinge of understanding for her actions .\n229\tTsai Ming-liang has taken his trademark style and refined it to a crystalline point .\n230\tPurely propaganda , a work of unabashed hero worship , it is nonetheless -- and likely inadvertently -- a timely and invaluable implicit reminder of the role that U.S. foreign policy has played in the rise of Castro .\n231\tNow trimmed by about 20 minutes , this lavish three-year-old production has enough grandeur and scale to satisfy as grown-up escapism .\n232\tWe get some truly unique character studies and a cross-section of Americana that Hollywood could n't possibly fictionalize and be believed .\n233\tThough this film can be clumsy , its ambitions are equally -- and admirably -- uncommercial .\n234\tDaring , mesmerizing and exceedingly hard to forget .\n235\tMoore 's performance impresses almost as much as her work with Haynes in 1995 's Safe .\n236\tVisits spy-movie territory like a novel you ca n't put down , examines a footnote to history seldom brought to light on the screen , and keeps you guessing from first frame to last .\n237\tAn absorbing , slice-of-depression life that touches nerves and rings true .\n238\tMr. Parker has brilliantly updated his source and grasped its essence , composing a sorrowful and hilarious tone poem about alienated labor , or an absurdist workplace sitcom .\n239\tThe result is something quite fresh and delightful .\n240\tAll but the most persnickety preteens should enjoy this nonthreatening but thrilling adventure .\n241\tDespite its many infuriating flaws -- not the least of which is Amy 's self-absorbed personality -- Amy 's O 's honesty will win you over .\n242\tThis is one of Polanski 's best films .\n243\tDay is not a great Bond movie , but it is a good Bond movie , which still makes it much better than your typical Bond knock-offs .\n244\tPolished Korean political-action film is just as good -- and bad -- as Hollywood action epics .\n245\tIs this progress ?\n246\tElling , portrayed with quiet fastidiousness by Per Christian Ellefsen , is a truly singular character , one whose frailties are only slightly magnified versions of the ones that vex nearly everyone .\n247\tDenis and co-writer Michele Petin 's impeccable screenplay penetrates with a rawness that that is both unflinching and tantalizing .\n248\tLead provocatuers Testud and Parmentier give superlative performances\n249\tAn absorbing trip into the minds and motivations of people under stress as well as a keen , unsentimental look at variations on the theme of motherhood .\n250\tI admired it , particularly that unexpected downer of an ending .\n251\tThe passions aroused by the discord between old and new cultures are set against the strange , stark beauty of the Mideast desert , so lovingly and perceptively filmed that you can almost taste the desiccated air .\n252\tRemarkably accessible and affecting .\n253\tNever mind whether you buy the stuff about Barris being a CIA hit man .\n254\tThe kooky yet shadowy vision Clooney sustains throughout is daring , inventive and impressive .\n255\tA triumph of art direction over narrative , but what art direction !\n256\tBehan himself knew how to spin a tale and one ca n't help but think he 'd appreciate this attempt to turn his life into art .\n257\tJirÃ­ Hubac 's script is a gem .\n258\tHis characters are engaging , intimate and the dialogue is realistic and greatly moving .\n259\tThe scope of the Silberstein family is large and we grow attached to their lives , full of strength , warmth and vitality . .\n260\tMoore 's complex and important film is also , believe it or not , immensely entertaining , a David and Goliath story that 's still very much playing itself out .\n261\tThe additional storyline is interesting and entertaining , but it does n't have the same magical quality as the beginning of the story .\n262\tI like the new footage and still love the old stuff .\n263\tThough Mama takes a bit too long to find its rhythm and a third-act plot development is somewhat melodramatic , its ribald humor and touching nostalgia are sure to please anyone in search of a Jules and Jim for the new millennium .\n264\tYou might not buy the ideas .\n265\tBut you 'll definitely want the T-shirt .\n266\tProvides an intriguing window into the imagination and hermetic analysis of Todd Solondz .\n267\tWindtalkers is shapelessly gratifying , the kind of movie that invites you to pick apart its faults even as you have to admit that somehow it hit you where you live .\n268\tPresents an astute appraisal of Middle American musical torpor and the desperate struggle to escape it .\n269\tJust what makes us happy , anyway ?\n270\tA thoughtful , moving piece that faces difficult issues with honesty and beauty .\n271\tOne of the greatest romantic comedies of the past decade .\n272\tYou would n't call The Good Girl a date movie -LRB- an anti-date movie is more like it -RRB- , but when it 's good , it 's good and horrid .\n273\tBenefits from a strong performance from Zhao , but it 's Dong Jie 's face you remember at the end .\n274\tThis is a film brimming with detail and nuance and one that speaks volumes about the ability of the human spirit to find solace in events that could easily crush it forever .\n275\tThe director , Steven Shainberg , has succeeded by focusing intently on his characters , making them quirky individuals rather than figures of fun .\n276\tIt ultimately stands forth as an important chronicle of the abuses of one of Latin America 's most oppressive regimes .\n277\tThe movie has a soft , percolating magic , a deadpan suspense .\n278\tA well-made and often lovely depiction of the mysteries of friendship .\n279\tUsing his audience as a figurative port-of-call , Dong pulls his even-handed ideological ship to their dock for unloading , before he continues his longer journey still ahead .\n280\t... understands that a generation defines its music as much as the music defines a generation .\n281\tThe Transporter is as lively and as fun as it is unapologetically dumb\n282\tAs a witness to several Greek-American weddings -- but , happily , a victim of none -- I can testify to the comparative accuracy of Ms. Vardalos ' memories and insights .\n283\tHas it ever been possible to say that Williams has truly inhabited a character ?\n284\tIt is now .\n285\tBy presenting an impossible romance in an impossible world , Pumpkin dares us to say why either is impossible -- which forces us to confront what 's possible and what we might do to make it so .\n286\tAn impressive debut for first-time writer-director Mark Romanek , especially considering his background is in music video .\n287\tAn incendiary , deeply thought-provoking look at one of the most peculiar -LRB- and peculiarly venomous -RRB- bigotries in our increasingly frightening theocracy\n288\tAll the performances are top notch and , once you get through the accents , All or Nothing becomes an emotional , though still positive , wrench of a sit .\n289\t`` its successes are also tempered with elements which prove the direct antithesis of what it gets right . ''\n290\tIt 's solid and affecting and exactly as thought-provoking as it should be .\n291\tThis is such a dazzlingly self-assured directorial debut that it 's hard to know what to praise first .\n292\tParker holds true to Wilde 's own vision of a pure comedy with absolutely no meaning , and no desire to be anything but a polished , sophisticated entertainment that is in love with its own cleverness .\n293\tMÃ¼nch 's genuine insight makes the film 's occasional overindulgence forgivable .\n294\tThankfully , the film , which skirts that rapidly deteriorating line between fantasy and reality ... takes a tongue-in-cheek attitude even as it pushes the Croc Hunter agenda .\n295\tUltimately , the message of Trouble Every Day seems to be that all sexual desire disrupts life 's stasis .\n296\tIf you 're like me , a sucker for a good old fashion romance and someone who shamelessly loves to eat , then Mostly Martha offers all the perfect ingredients to more than satisfy your appetite .\n297\tThe film has just enough of everything -- re-enactments , archival footage , talking-head interviews -- and the music is simply sublime .\n298\tThere are a few stabs at absurdist comedy ... but mostly the humor is of the sweet , gentle and occasionally cloying kind that has become an Iranian specialty .\n299\tA wonderful character-based comedy .\n300\tIt would be interesting to hear from the other side , but in Talk to Her , the women are down for the count .\n301\tAn endearingly offbeat romantic comedy with a great meet-cute gimmick .\n302\tThe unique tug-of-war with viewer expectations is undeniable , if not a pleasure in its own right .\n303\tIt uses an old-time formula , it 's not terribly original and it 's rather messy -- but you just have to love the big , dumb , happy movie My Big Fat Greek Wedding .\n304\tIt 's almost impossible not to be moved by the movie 's depiction of sacrifice and its stirring epilogue in post-Soviet Russia .\n305\tWho knows what exactly Godard is on about in this film , but his words and images do n't have to add up to mesmerize you .\n306\tThe tone is balanced , reflective and reasonable .\n307\tThe principals in this cast are all fine , but Bishop and Stevenson are standouts .\n308\tIt could change America , not only because it is full of necessary discussion points , but because it is so accessible that it makes complex politics understandable to viewers looking for nothing but energetic entertainment .\n309\tWhat 's most striking about this largely celebratory film ... is the sense of isolation that permeates these bastions of individuality in an Ikea world .\n310\t... if you 're in a mind set for goofy comedy , the troopers will entertain with their gross outs , bawdy comedy and head games .\n311\tSomewhat blurred , but Kinnear 's performance is razor sharp .\n312\tAs a director , Mr. Ratliff wisely rejects the temptation to make fun of his subjects .\n313\tFor anyone who remembers the '60s or is interested in one man 's response to stroke , Ram Dass : Fierce Grace is worth seeking out .\n314\tIntriguing and beautiful film , but those of you who read the book are likely to be disappointed .\n315\tThe New Guy does have a heart .\n316\tNow , if it only had a brain .\n317\tA savvy exploration of paranoia and insecurity in America 's culture of fear .\n318\tLegendary Irish writer Brendan Behan 's memoir , Borstal Boy , has been given a loving screen transferral .\n319\tThe film 's greatest asset is how much it 's not just another connect-the-dots , spy-on-the-run picture .\n320\tThis clever caper movie has twists worthy of David Mamet and is enormous fun for thinking audiences .\n321\tIt 's one of the saddest films I have ever seen that still manages to be uplifting but not overly sentimental .\n322\tMorton is , as usual , brilliant .\n323\tEven with all those rough edges safely sanded down , the American Insomnia is still pretty darned good .\n324\tI do n't know precisely what to make of Steven Soderbergh 's Full Frontal , though that did n't stop me from enjoying much of it .\n325\tThe tug of war that ensues is as much a snapshot of modern China in microcosm as it is a crash course in movie mythology .\n326\tNearly surreal , dabbling in French , this is no simple movie , and you 'll be taking a risk if you choose to see it .\n327\tI enjoyed the ride -LRB- bumps and all -RRB- , creamy depth , and ultimate theme .\n328\tYou could say that it 's slow at times , you could say that a few of the characters act in ways that real people would n't , but one thing you could n't say is that Alias Betty is predictable .\n329\tAsia authors herself as Anna Battista , an Italian superstar and aspiring directress who just happens to be her own worst enemy .\n330\tRoman Coppola may never become the filmmaker his Dad was , but heck -- few filmmakers will .\n331\tBut based on CQ , I 'll certainly be keeping an eye out for his next project .\n332\tAn amusing , breezily apolitical documentary about life on the campaign trail .\n333\tHigh on melodrama .\n334\tBut it 's emotionally engrossing , too , thanks to strong , credible performances from the whole cast .\n335\tFinally , a genre movie that delivers -- in a couple of genres , no less .\n336\tIt 's not so much enjoyable to watch as it is enlightening to listen to new sides of a previous reality , and to visit with some of the people who were able to make an impact in the theater world .\n337\tSpielberg is the rare director who does not want to invite viewers to gawk at or applaud his special effects .\n338\tHe just wants them to be part of the action , the wallpaper of his chosen reality .\n339\tHere , thankfully , they are .\n340\tPost 9\\/11 the philosophical message of `` Personal Freedom First '' might not be as palatable as intended .\n341\tHu and Liu offer natural , matter-of-fact performances that glint with sorrow , longing and love .\n342\tThis bold and lyrical first feature from Raja Amari expands the pat notion that middle-aged women just wanna have fun into a rousing treatise of sensual empowerment .\n343\tEasier to respect than enthuse over , Andersson 's rigorous personal vision is not only distanced but distancing .\n344\tGirls gone wild and gone civil again\n345\t... Tunney is allowed to build an uncommonly human character , an almost real-live girl complete with trouble and hope .\n346\tWhile this film is not in the least surprising , it is still ultimately very satisfying .\n347\tThink of it as a sort of comfort food for the mind .\n348\tClever , brutal and strangely soulful movie .\n349\t... always remains movingly genuine .\n350\tAn intelligent fiction about learning through cultural clash .\n351\tWill grab your children by the imagination and amaze them and amuse them .\n352\tA remarkable 179-minute meditation on the nature of revolution .\n353\tThose who would follow Haneke on his creepy explorations ... are rewarded by brutal , committed performances from Huppert and Magimel .\n354\tAn involving true story of a Chinese actor who takes up drugs and winds up in an institution -- acted mostly by the actual people involved .\n355\tHands down the year 's most thought-provoking film .\n356\tBut it pays a price for its intricate intellectual gamesmanship .\n357\tIt 's a terrific American sports movie and Dennis Quaid is its athletic heart .\n358\tThis is such a high-energy movie where the drumming and the marching are so excellent , who cares if the story 's a little weak .\n359\tCompelling revenge thriller , though somewhat weakened by a miscast leading lady .\n360\tIt 's amazingly perceptive in its subtle , supportive but unsentimental look at the Marks family .\n361\tA whole lot foul , freaky and funny .\n362\tAttal mixes comedy with a serious exploration of ego and jealousy within a seemingly serene marriage .\n363\tThe diversity of the artists represented , both in terms of style and ethnicity , prevents the proceedings from feeling repetitious , as does the appropriately brief 40-minute running time .\n364\tThe Pianist is a fine valedictory work for Polanski , made richer by his own experiences , making his other movies somehow richer in the bargain .\n365\tFoster nails the role , giving a tight , focused performance illuminated by shards of feeling .\n366\tEven if you ca n't pronounce `` gyro '' correctly , you 'll appreciate much of Vardalos ' humor , which transcends ethnic boundaries .\n367\tIs office work really as alienating as ` Bartleby ' so effectively makes it ?\n368\tFarrell ... thankfully manages to outshine the role and successfully plays the foil to Willis 's world-weary colonel .\n369\tAudiences conditioned to getting weepy over saucer-eyed , downy-cheeked moppets and their empathetic caretakers will probably feel emotionally cheated by the film 's tart , sugar-free wit .\n370\tBennett 's dramatization of her personal descent into post-breakup perdition has a morbid appeal that 's tough to shake .\n371\tAn intriguing and entertaining introduction to Johnson .\n372\tAs expected , Sayles ' smart wordplay and clever plot contrivances are as sharp as ever , though they may be overshadowed by some strong performances .\n373\tA model of what films like this should be like .\n374\tAs Weber and Weissman demonstrate with such insight and celebratory verve , the Cockettes were n't as much about gender , sexual preference or political agitprop as they were simply a triumph of the indomitable human will to rebel , connect and create .\n375\tYeah , these flicks are just that damn good .\n376\tIs n't it great ?\n377\tAn unbelievably fun film just a leading man away from perfection .\n378\tOver-the-top and a bit ostentatious , this is a movie that 's got oodles of style and substance .\n379\t... a poignant and powerful narrative that reveals that reading writing and arithmetic are not the only subjects to learn in life .\n380\tNicely serves as an examination of a society in transition .\n381\tA tender and touching drama , based on the true story of a troubled African-American 's quest to come to terms with his origins , reveals the yearning we all have in our hearts for acceptance within the family circle .\n382\tAs a randy film about sexy people in gorgeous places being pushed and pulled -LRB- literally and figuratively -RRB- by desire ... -LRB- Sex and LucÃ­a -RRB- makes for an arousing good time .\n383\tAbsorbing character study by AndrÃ© Turpin .\n384\tCelebrated at Sundance , this slight comedy of manners has winning performances and a glossy , glib charm that 's hard to beat .\n385\tRenner 's performance as Dahmer is unforgettable , deeply absorbing .\n386\tIf no one singles out any of these performances as award-worthy , it 's only because we would expect nothing less from this bunch .\n387\tIf you love reading and\\/or poetry , then by all means check it out .\n388\tYou 'll probably love it .\n389\tThough of particular interest to students and enthusiast of international dance and world music , the film is designed to make viewers of all ages , cultural backgrounds and rhythmic ability want to get up and dance .\n390\tEnergetic and boldly provocative .\n391\tStar Wars is back in a major way .\n392\tIt 's a movie -- and an album -- you wo n't want to miss .\n393\tIt 's rare to find a film that dazzles the eye , challenges the brain , AND satisfies our lust for fast-paced action , but Minority Report delivers all that and a whole lot more .\n394\tWhile not all transitions to adulthood are so fraught , there 's much truth and no small amount of poetry in Girls Ca n't Swim .\n395\tIf there 's nothing fresh about Wannabes , which was written by Mr. DeMeo , who produced and directed the film with Charles A. Addessi , much of the time the movie feels authentic .\n396\tJacquot 's Tosca is a treat .\n397\tBy the end of No Such Thing the audience , like Beatrice , has a watchful affection for the monster .\n398\tIf you liked such movies as Notting Hill , Four Weddings And A Funeral , Bridget Jones ' Diary or High Fidelity , then you wo n't want to miss About A Boy .\n399\t... the gentle melding of drama and comedy makes `` What Time Is It There ? ''\n400\tsomething the true film buff will enjoy .\n401\tRomanek keeps the film constantly taut ... reflecting the character 's instability with a metaphorical visual style and an unnerving , heartbeat-like score .\n402\tI whole-heartedly recommend that everyone see this movie -- for its historical significance alone .\n403\tHey , who else needs a shower ?\n404\tLongley has constructed a remarkably coherent , horrifically vivid snapshot of those turbulent days .\n405\tAlthough it bangs a very cliched drum at times , this crowd-pleaser 's fresh dialogue , energetic music , and good-natured spunk are often infectious .\n406\tOften gruelling and heartbreaking to witness , but Seldahl and Wollter 's sterling performances raise this far above the level of the usual maudlin disease movie .\n407\tGo see it and enjoy .\n408\tThe stunning , dreamlike visuals will impress even those viewers who have little patience for Euro-film pretension .\n409\tGeorge Clooney proves he 's quite a talented director and Sam Rockwell shows us he 's a world-class actor with Confessions of a Dangerous Mind .\n410\tThere 's a vastness implied in Metropolis that is just breathtaking .\n411\tMurderous Maids may well be the most comprehensive of these films and also strike closest to the truth .\n412\tThe people in Dogtown and Z-Boys are so funny , aggressive and alive , you have to watch them because you ca n't wait to see what they do next .\n413\tAs green-guts monster movies go , it 's a beaut .\n414\tAs Bundy , Michael Reilly Burke -LRB- Octopus 2 : River of Fear -RRB- has just the right amount of charisma and menace .\n415\tA deceivingly simple film , one that grows in power in retrospect .\n416\tAna is a vivid , vibrant individual and the movie 's focus upon her makes it successful and accessible .\n417\tA slick , skillful little horror film .\n418\tA very witty take on change , risk and romance , and the film uses humour to make its points about acceptance and growth .\n419\t-LRB- Anderson -RRB- uses a hit-or-miss aesthetic that hits often enough to keep the film entertaining even if none of it makes a lick of sense .\n420\tBubba Ho-Tep is a wonderful film with a bravura lead performance by Bruce Campbell that does n't deserve to leave the building until everyone is aware of it .\n421\tdespite the long running time , the pace never feels slack -- there 's no scene that screams `` bathroom break ! ''\n422\tBullock does a good job here of working against her natural likability .\n423\tA film of precious increments artfully camouflaged as everyday activities .\n424\tKinnear gives a tremendous performance .\n425\tThe best movie of its kind since ` Brazil . '\n426\tLucas , take notes .\n427\tThis is how you use special effects .\n428\t`` Frailty '' has been written so well , that even a simple `` Goddammit ! ''\n429\tnear the end takes on a whole other meaning .\n430\tOne Hour Photo is an intriguing snapshot of one man and his delusions ; it 's just too bad it does n't have more flashes of insight .\n431\tKaufman creates an eerie sense of not only being there at the time of these events but the very night Matthew was killed .\n432\tChalk it up to my adoration for both De Niro and Murphy , but I had a pretty good time with this movie - despite its myriad flaws .\n433\tIts scenes and sensibility are all more than familiar , but it exudes a kind of nostalgic spy-movie charm and , at the same time , is so fresh and free of the usual thriller nonsense that it all seems to be happening for the first time .\n434\tIt represents better-than-average movie-making that does n't demand a dumb , distracted audience .\n435\tA charming yet poignant tale of the irrevocable ties that bind .\n436\tAn enchanting spectacular for Potter fans anxious to ride the Hogwarts Express toward a new year of magic and mischief .\n437\tThe talents of the actors helps `` Moonlight Mile '' rise above its heart-on-its-sleeve writing .\n438\tIt 's a humble effort , but spiced with wry humor and genuine pathos , especially between Morgan and Redgrave .\n439\tThis examination of aquatic life off the shores of the Baja California peninsula of Mexico offers an engrossing way to demonstrate the virtues of the IMAX format .\n440\tDark and disturbing , but also surprisingly funny .\n441\tThe movie has an avalanche of eye-popping visual effects .\n442\tStarts off with a bang , but then fizzles like a wet stick of dynamite at the very end .\n443\tIt 's still worth a look .\n444\tMost impressive , though , is the film 's open-ended finale that refuses to entirely close its characters ' emotional wounds .\n445\tA hip ride into hyper-time , Clockstoppers is a lively and enjoyable adventure for all ages at any time .\n446\tGrenier is terrific , bringing an unforced , rapid-fire delivery to Toback 's Heidegger - and Nietzsche-referencing dialogue .\n447\t... a polished and relatively sincere piece of escapism .\n448\tThe story wraps back around on itself in the kind of elegant symmetry that 's rare in film today , but be warned : It 's a slow slog to get there .\n449\tThe whole cast looks to be having so much fun with the slapstick antics and silly street patois , tossing around obscure expressions like Bellini and Mullinski , that the compact 86 minutes breezes by .\n450\t... has freaky scenes where the crew wonder if they 're ghosts imagining themselves as alive .\n451\tIt 's a sly wink to The Others without becoming a postmodern joke , made creepy by its `` men in a sardine can '' warped logic .\n452\tLong after you leave Justine , you 'll be wondering what will happen to her and wishing her the best -- whatever that might mean .\n453\tStill pretentious and filled with subtext , but entertaining enough at ` face value ' to recommend to anyone looking for something different .\n454\tCall me a wimp , but I cried , not once , but three times in this animated sweet film .\n455\tNotorious C.H.O. has oodles of vulgar highlights .\n456\tAn inspiring and heart-affecting film about the desperate attempts of Vietnamese refugees living in U.S. relocation camps to keep their hopes alive in 1975 .\n457\tThe level of maturity displayed by this 33-year-old first-time feature director is astonishing , considering her inexperience and her subject matter .\n458\tA splendid entertainment , young in spirit but accomplished in all aspects with the fullness of spirit and sense of ease that comes only with experience .\n459\tDisney 's live-action division has a history of releasing cinematic flotsam , but this is one occasion when they have unearthed a rare gem .\n460\tIf the message seems more facile than the earlier films , the images have such a terrible beauty you may not care .\n461\tWhether Kiss is a future cult classic or destined to be completely forgotten is open to question , but the risk-takers in the crowd should check it out and form their own opinion .\n462\tThere are moments in this account of the life of artist Frida Kahlo that are among cinema 's finest this year .\n463\tUnfortunately , they 're sandwiched in between the most impossibly dry account of Kahlo 's life imaginable .\n464\tThere are moments it can be heart-rending in an honest and unaffected -LRB- and gentle -RRB- way .\n465\tStay clear of reminding yourself that it 's a `` true story '' and you 're likely to have one helluva time at the movies .\n466\tThere are just enough twists in the tale to make it far more satisfying than almost any horror film in recent memory .\n467\tThe Sundance Film Festival has become so buzz-obsessed that fans and producers descend upon Utah each January to ferret out The Next Great Thing .\n468\t` Tadpole ' was one of the films so declared this year , but it 's really more of The Next Pretty Good Thing .\n469\tWorking from Elliott 's memoir , Rohmer fashions the sort of delicate , articulate character - and - relationship study he 's favored for decades .\n470\tThe story feels more like a serious read , filled with heavy doses of always enticing Sayles dialogue .\n471\tWhen it really counts ... Bloody Sunday connects on a visceral level that transcends language .\n472\tThe crime matters less than the characters , although the filmmakers supply enough complications , close calls and double-crosses to satisfy us .\n473\tThe actors are fantastic .\n474\tThey are what makes it worth the trip to the theatre .\n475\tRanging from funny to shattering and featuring some of the year 's best acting , Personal Velocity gathers plenty of dramatic momentum .\n476\tI complain all the time about seeing the same ideas repeated in films over and over again , but The Bourne Identity proves that a fresh take is always possible .\n477\tRecalls quiet freak-outs like L'Avventura and Repulsion .\n478\tOnly an epic documentary could get it all down , and Spike Lee 's Jim Brown : All American at long last gives its subject a movie worthy of his talents .\n479\t... as the story congeals you feel the pieces of the Star Wars saga falling into place in a way that makes your spine tingle with revelation and excitement .\n480\tA great comedy filmmaker knows great comedy need n't always make us laugh .\n481\tTim Story 's not there yet - but ` Barbershop ' shows he 's on his way .\n482\tThe movie is one of the best examples of artful Large Format filmmaking you are likely to see anytime soon .\n483\tLends itself to the narcotizing bland -LRB- sinister , though not nearly so sinister as the biennial Disney girl movie -RRB- machinations of the biennial Disney boy movie .\n484\tWell-written , nicely acted and beautifully shot and scored , the film works on several levels , openly questioning social mores while ensnaring the audience with its emotional pull .\n485\tJason X has cheesy effects and a hoary plot , but its macabre , self-deprecating sense of humor makes up for a lot .\n486\t-LRB- Taymor -RRB- utilizes the idea of making Kahlo 's art a living , breathing part of the movie , often catapulting the artist into her own work .\n487\tThis is n't a new idea .\n488\tIt 's been done before but never so vividly or with so much passion .\n489\tAn impressive if flawed effort that indicates real talent .\n490\tTwo generations within one family test boundaries in this intelligent and restrained coming-of-age drama .\n491\tit sounds sick and twisted , but the miracle of Shainberg 's film is that it truly is romance\n492\tDisturbing and brilliant documentary .\n493\t... mesmerizing , an eye-opening tour of modern Beijing culture in a journey of rebellion , retreat into oblivion and return .\n494\tOne of the best examples of how to treat a subject , you 're not fully aware is being examined , much like a photo of yourself you did n't know was being taken .\n495\tNot too far below the gloss you can still feel director Denis Villeneuve 's beating heart and the fondness he has for his characters .\n496\tAs if to prove a female director can make a movie with no soft edges , Kathryn Bigelow offers no sugar-coating or interludes of lightness .\n497\tHer film is unrelentingly claustrophobic and unpleasant .\n498\t-LRB- Villeneuve -RRB- seems to realize intuitively that even morality is reduced to an option by the ultimate mysteries of life and death .\n499\tThe result is mesmerizing -- filled with menace and squalor .\n500\tFisher has bared his soul and confronted his own shortcomings here in a way ... that feels very human and very true to life .\n501\tIt 's fun , but the code-talk will fly right over everyone 's head\n502\tBourne , Jason Bourne .\n503\tHe can scale a building like a super hero , he can out-stealth any agent , he 'll get the girl .\n504\tHe 's Super Spy !\n505\tWhat makes the movie a comedy is the way it avoids the more serious emotions involved .\n506\tThis cuddly sequel to the 1999 hit is a little more visually polished , a little funnier , and a little more madcap .\n507\tThe pleasures of Super Troopers may be fleeting , but they 'll register strongly with anybody who still retains a soft spot for precollegiate humor .\n508\tThe film is exhilarating to watch because Sandler , liberated from the constraints of formula , reveals unexpected depths as an actor .\n509\tA distant , even sterile , yet compulsively watchable look at the sordid life of Hogan 's Heroes star Bob Crane .\n510\tThe film delivers not just the full assault of Reno 's immense wit and insight , but a time travel back to what it felt like during those unforgettably uncertain days .\n511\tWhat might have been a predictably heartwarming tale is suffused with complexity .\n512\tSound the trumpets : For the first time since Desperately Seeking Susan , Madonna does n't suck as an actress .\n513\tAlthough very much like the first movie based on J.K. Rowling 's phenomenal fantasy best sellers , this second go-round possesses a quite pleasing , headlong thrust and a likably delinquent attitude .\n514\t-LRB- `` Take Care of My Cat '' -RRB- is an honestly nice little film that takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals .\n515\tAs the story moves inexorably through its seven day timeframe , the picture becomes increasingly mesmerizing .\n516\tMaguire is a surprisingly effective Peter\\/Spider-Man .\n517\tNot a cozy or ingratiating work , but it 's challenging , sometimes clever , and always interesting , and those are reasons enough to see it .\n518\tThe film runs on equal parts of innocence and wisdom -- wisdom that comes with experience .\n519\tIt has fun being grown up .\n520\tLike old myths and wonder tales spun afresh .\n521\tRarely do films come along that are as intelligent , exuberant , and moving as Monsoon Wedding .\n522\tOne scarcely needs the subtitles to enjoy this colorful action farce .\n523\tQuite funny for the type of movie it is ...\n524\tIt 's often infuriatingly glib and posturing , and yet it has been made with great evident care and manages to deliver up the man in a way to arouse further curiosity in even the most unknowing viewer .\n525\tOne of -LRB- Herzog 's -RRB- least inspired works .\n526\tThis boisterous comedy serves up a cruel reminder of the fate of hundreds of thousands of Chinese , one which can only qualify as a terrible tragedy .\n527\tElling really is about a couple of crazy guys , and it 's therapeutic to laugh along with them .\n528\tAn irresistible combination of a rousing good story set on a truly grand scale .\n529\tThere 's no denying the physically spectacular qualities of the film ... or the emotional integrity of the performances .\n530\tFew films this year have been as resolute in their emotional nakedness .\n531\tExquisitely acted and masterfully if preciously interwoven ... -LRB- the film -RRB- addresses in a fascinating , intelligent manner the intermingling of race , politics and local commerce .\n532\tStevenson 's performance is at once clueless and fiercely committed , a volatile combination .\n533\tThis is a very fine movie -- go see it .\n534\tAs shaky as the plot is , Kaufman 's script is still memorable for some great one-liners .\n535\tDespite its flaws , Secretary stays in your head and makes you question your own firmly held positions .\n536\tOne of those rare , exhilarating cinematic delights that gets even better in hindsight , as you mull over its every nuance in your mind .\n537\tNot everything works , but the average is higher than in Mary and most other recent comedies .\n538\tA byzantine melodrama that stimulates the higher brain functions as well as the libido .\n539\tA sensitive and expertly acted crowd-pleaser that is n't above a little broad comedy and a few unabashedly sentimental tears .\n540\tThe film 's sharp , often mischievous sense of humor will catch some off guard ...\n541\tDoes what a fine documentary does best : It extends a warm invitation into an unfamiliar world , then illuminates it fully and allows the larger implications of the journey to sink in unobtrusively .\n542\tAlmost every scene in this film is a gem that could stand alone , a perfectly realized observation of mood , behavior and intent .\n543\tA psychologically rich and suspenseful moral thriller with a stellar performance by Al Pacino .\n544\tYou wo n't believe much of it , but you will laugh at the audacity , at the who 's who casting and the sheer insanity of it all .\n545\tThis version 's no classic like its predecessor , but its pleasures are still plentiful .\n546\tThe Bourne Identity is what summer screen escapism used to be in the decades when it was geared more to grownups .\n547\tProvide -LRB- s -RRB- nail-biting suspense and credible characters without relying on technology-of-the-moment technique or pretentious dialogue .\n548\tIf it tried to do anything more , it would fail and perhaps explode , but at this level of manic whimsy , it is just about right .\n549\tToo sincere to exploit its subjects and too honest to manipulate its audience .\n550\tThe saturation bombing of Reggio 's images and Glass ' evocative music ... ultimately leaves viewers with the task of divining meaning .\n551\tFor all its serious sense of purpose ... -LRB- it -RRB- finds a way to lay bare the tragedies of its setting with a good deal of warmth and humor .\n552\tA depressing confirmation of everything those of us who do n't object to the description `` unelected '' have suspected all along : George W. Bush is an incurious , uncharismatic , overgrown frat boy with a mean streak a mile wide .\n553\tThis road movie gives you emotional whiplash , and you 'll be glad you went along for the ride .\n554\tSure , it 's more of the same , but as the film proves , that 's not always a bad thing .\n555\tA lighthearted , feel-good film that embraces the time-honored truth that the most powerful thing in life is love .\n556\tA bowel-curdling , heart-stopping recipe for terror .\n557\tDaughter from Danang is a film that should be seen by all , especially those who are n't aware of , or have forgotten about the unmentioned victims of war .\n558\tZhang Yimou delivers warm , genuine characters who lie not through dishonesty , but because they genuinely believe it 's the only way to bring happiness to their loved ones .\n559\t... breathes surprising new life into the familiar by amalgamating genres and adding true human complexity to its not-so-stock characters . '\n560\t... both hokey and super-cool , and definitely not in a hurry , so sit back , relax and have a few laughs while the little ones get a fuzzy treat . '\n561\tA pleasant romantic comedy .\n562\tIt 's a Count for our times .\n563\tGreengrass has delivered an undoubted stylistic tour-de-force , and has managed elements such as sound and cinematography with skill\n564\tSmith 's point is simple and obvious -- people 's homes are extensions of themselves , and particularly eccentric people have particularly eccentric living spaces -- but his subjects are charmers .\n565\tA romantic comedy , yes , but one with characters who think and talk about their goals , and are working on hard decisions .\n566\tVividly conveys both the pitfalls and the pleasures of over-the-top love .\n567\t... a weak , manipulative , pencil-thin story that is miraculously able to entertain anyway .\n568\tA pro-fat farce that overcomes much of its excessive moral baggage thanks to two appealing lead performances .\n569\tFor the first two-thirds of this sparklingly inventive and artful , always fast and furious tale , kids will go happily along for the ride .\n570\tMajidi 's poetic love story is a ravishing consciousness-raiser , if a bit draggy at times .\n571\tThe smartest bonehead comedy of the summer .\n572\tEffectively feeds our senses with the chilling sights and sounds from within the camp to create a completely numbing experience .\n573\tI love the way that it took chances and really asks you to take these great leaps of faith and pays off .\n574\tIn his debut as a film director , Denzel Washington delivers a lean and engaging work .\n575\tOnly two words will tell you what you know when deciding to see it : Anthony .\n576\tHopkins .\n577\tThe movie 's quiet affirmation of neighborhood values gives it an honest , lived-in glow .\n578\tA teasing drama whose relentless good-deed\\/bad-deed reversals are just interesting enough to make a sinner like me pray for an even more interesting , less symmetrical , less obviously cross-shaped creation .\n579\tHayek is stunning as Frida and ... a star-making project .\n580\tIt 's both a necessary political work and a fascinating documentary ...\n581\tHilarious , acidic Brit comedy .\n582\tAs a revenge thriller , the movie is serviceable , but it does n't really deliver the delicious guilty pleasure of the better film versions .\n583\tAn ironic speculation on democracy in a culture unaccustomed to it .\n584\tIt 's not life-affirming -- its vulgar and mean , but I liked it .\n585\tSeveral degrees shy of the gross-out contests one expects from current teen fare .\n586\tThe inherent strength of the material as well as the integrity of the filmmakers gives this coming-of-age story restraint as well as warmth .\n587\tLed by Griffin 's smartly nuanced performance and enthusiasm , the cast has a lot of fun with the material .\n588\tTuck Everlasting achieves a delicate balance of romantic innocence and philosophical depth .\n589\tA gentle blend of present day testimonials , surviving footage of Burstein and his family performing , historical archives , and telling stills .\n590\tA Generation X artifact , capturing a brief era of insanity in the sports arena that surely can not last .\n591\tPossession is Elizabeth Barrett Browning meets Nancy Drew , and it 's directed by ... Neil LaBute .\n592\tHmm .\n593\tAn uneven but intriguing drama that is part homage and part remake of the Italian masterpiece .\n594\tWindtalkers celebrates the human spirit and packs an emotional wallop .\n595\tHaving never been a huge fan of Dickens ' 800-page novel , it surprised me how much pleasure I had watching McGrath 's version .\n596\tThe best thing the film does is to show us not only what that mind looks like , but how the creative process itself operates .\n597\tFor all its failed connections , Divine Secrets of the Ya-Ya Sisterhood is nurturing , in a gauzy , dithering way .\n598\tThis is pretty dicey material .\n599\tBut some unexpected zigs and zags help .\n600\tThe filmmakers skillfully evoke the sense of menace that nature holds for many urban dwellers .\n601\tThe laser-projected paintings provide a spell-casting beauty , while Russell and Dreyfus are a romantic pairing of hearts , preciously exposed as history corners them .\n602\tYou do n't have to be an especially tough grader to give a charitable B-minus to The Emperor 's Club .\n603\tThis romantic thriller is steeped in the atmosphere of wartime England , and ably captures the speech patterns , moral codes and ideals of the 1940s .\n604\tDivine Secrets of the Ya-Ya Sisterhood may not be exactly divine , but it 's definitely -- defiantly -- ya ya , what with all of those terrific songs and spirited performances .\n605\tViewed on its own terms , Treasure Planet is better-than-average family entertainment , but true fans of the Stevenson 's novel will likely prefer Disney 's more faithful 1950 live-action swashbuckling classic .\n606\tA journey through memory , a celebration of living , and a sobering rumination on fatality , classism , and ignorance .\n607\tResourceful and ingenious entertainment .\n608\t`` Antwone Fisher '' is an earnest , by-the-numbers effort by Washington .\n609\tIt wo n't rock any boats but is solid meat-and-potatoes filmmaking .\n610\tA historical epic with the courage of its convictions about both scope and detail .\n611\tWe need -LRB- Moore 's -RRB- noisy , cocky energy , his passion and class consciousness ; we need his shticks , we need his stones .\n612\tAlthough the editing might have been tighter , Hush !\n613\tsympathetically captures the often futile lifestyle of young people in modern Japan .\n614\t-LRB- Gai -RRB- comes closer to any actress I can remember to personifying independence in its purest and , yes , most intimidating form .\n615\tThese are lives worth watching , paths worth following .\n616\tIt 's rather like a Lifetime special -- pleasant , sweet and forgettable .\n617\tA moody horror\\/thriller elevated by deft staging and the director 's well-known narrative gamesmanship .\n618\tAs a singular character study , it 's perfect .\n619\tIt 's also the year 's sweetest movie .\n620\tA graceful , contemplative film that gradually and artfully draws us into a world where the personal and the political get fatally intertwined .\n621\tWhile not as aggressively impressive as its American counterpart , `` In the Bedroom , '' Moretti 's film makes its own , quieter observations\n622\tThe experience of watching blobby old-school CGI animation in this superlarge format is just surreal enough to be diverting .\n623\tTime Changer may not be the most memorable cinema session but its profound self-evaluation message about our fragile existence and the absence of spiritual guidance should at least invade an abundance of mindsets\n624\t`` The Emperor 's New Clothes '' begins with a simple plan ... Well , at least that 's the plan .\n625\tHaynes has so fanatically fetishized every bizarre old-movie idiosyncrasy with such monastic devotion you 're not sure if you should applaud or look into having him committed .\n626\t-LRB- Director Peter -RRB- Jackson and his crew have so steeped themselves in the majesty of Tolkien 's writing that every frame produces new joys , whether you 're a fan of the books or not .\n627\tWhile the glass slipper does n't quite fit , Pumpkin is definitely a unique modern fairytale .\n628\tThe drama is played out with such aching beauty and truth that it brings tears to your eyes .\n629\tAn exciting and involving rock music doc , a smart and satisfying look inside that tumultuous world .\n630\tAn offbeat , sometimes gross and surprisingly appealing animated film about the true meaning of the holidays .\n631\tThis version incarnates the prophetic book in a way even its exacting author might admire .\n632\tSometimes , nothing satisfies like old-fashioned swashbuckling .\n633\tAnd in this regard , On Guard delivers .\n634\t... ambition is in short supply in the cinema , and Egoyan tackles his themes and explores his characters ' crises with seriousness and compassion .\n635\tAn impossible romance , but we root for the patronized Iranian lad .\n636\tLike Dickens with his passages , McGrath crafts quite moving scenes throughout his resolutely dramatic variation on the novel .\n637\tThere 's a disreputable air about the whole thing , and that 's what makes it irresistible .\n638\tan exceedingly clever piece of cinema .\n639\tanother great ` what you do n't see ' is much more terrifying than what you do see thriller , coupled with some arresting effects , incandescent tones and stupendous performances\n640\tA carefully structured scream of consciousness that is tortured and unsettling -- but unquestionably alive .\n641\tA quietly reflective and melancholy New Zealand film about an eventful summer in a 13-year-old girl 's life .\n642\tCute , funny , heartwarming digitally animated feature film with plenty of slapstick humor for the kids , lots of in-jokes for the adults and heart enough for everyone .\n643\tvery solid , very watchable first feature for director Peter Sheridan\n644\ta budget affair that exposes the generally sad existence of the Bedouins while providing a precious twinkle of insight into their lives .\n645\tIt suggests the wide-ranging effects of media manipulation , from the kind of reporting that is done by the supposedly liberal media ... to the intimate and ultimately tragic heartache of maverick individuals like Hatfield and Hicks .\n646\tWorkmanlike , maybe , but still a film with all the elements that made the other three great , scary times at the movies .\n647\tA pleasant enough comedy that should have found a summer place .\n648\tBranagh , in his most forceful non-Shakespeare screen performance , grounds even the softest moments in the angry revolt of his wit .\n649\tThough the violence is far less sadistic than usual , the film is typical Miike : fast , furious and full of off-the-cuff imaginative flourishes .\n650\tCompelling as it is exotic , Fast Runner has a plot that rivals Shakespeare for intrigue , treachery and murder .\n651\tWhat it lacks in originality it makes up for in intelligence and B-grade stylishness .\n652\tThe warm presence of Zhao Benshan makes the preposterous lying hero into something more than he reasonably should be .\n653\tThis is as powerful a set of evidence as you 'll ever find of why art matters , and how it can resonate far beyond museum walls and through to the most painfully marginal lives .\n654\tDirector Rob Marshall went out gunning to make a great one .\n655\tSkip work to see it at the first opportunity .\n656\tBow 's best moments are when he 's getting busy on the basketball court because that 's when he really scores .\n657\tOffers enough playful fun to entertain the preschool set while embracing a wholesome attitude .\n658\tIn the end , Punch-Drunk Love is one of those films that I wanted to like much more than I actually did .\n659\tSometimes , that 's enough .\n660\tAn intimate , good-humored ethnic comedy like numerous others but cuts deeper than expected .\n661\tIce Cube holds the film together with an engaging and warm performance ...\n662\tBoth deeply weird and charmingly dear .\n663\tAs blunt as it is in depicting child abuse , El Bola is a movie steeped in an ambiguity that lends its conflicts a symbolic resonance .\n664\tDespite a story predictable enough to make The Sound of Music play like a nail-biting thriller , its heart is so much in the right place it is difficult to get really peeved at it .\n665\tAn incredibly low-rent Danish film , it brings a group of people together in a sweet and charming way , if a little convenient\n666\tIt 's the cinematic equivalent of a good page-turner , and even if it 's nonsense , its claws dig surprisingly deep .\n667\tDirector Nalin Pan does n't do much to weigh any arguments one way or the other .\n668\tHe simply presents his point of view that Ayurveda works .\n669\tNo question .\n670\tWhat `` Empire '' lacks in depth it makes up for with its heart .\n671\tClaude Miller airs out a tight plot with an easy pace and a focus on character drama over crime-film complications .\n672\tWhat Full Frontal lacks in thematic coherence it largely makes up for as loosey-goosey , experimental entertainment .\n673\tStill , I 'm not quite sure what the point is ...\n674\tRich in detail , gorgeously shot and beautifully acted , Les Destinees is , in its quiet , epic way , daring , inventive and refreshingly unusual .\n675\t-LRB- A -RRB- Hollywood sheen bedevils the film from the very beginning ... -LRB- but -RRB- Lohman 's moist , deeply emotional eyes shine through this bogus veneer ...\n676\tDo we really need a 77-minute film to tell us exactly why a romantic relationship between a 15-year-old boy and a 40-year-old woman does n't work ?\n677\tFord deserves to be remembered at Oscar time for crafting this wonderful portrait of a conflicted soldier .\n678\tThe film 's 45-minute running time stops shy of overkill , though viewers may be more exhausted than the athletes onscreen .\n679\tDo n't expect any surprises in this checklist of teamwork cliches ...\n680\tAs adapted by Kevin Molony from Simon Leys ' novel `` The Death of Napoleon '' and directed by Alan Taylor , Napoleon 's journey is interesting but his Parisian rebirth is stillborn\n681\tThe movie addresses a hungry need for PG-rated , nonthreatening family movies , but it does n't go too much further .\n682\tThis warm and gentle romantic comedy has enough interesting characters to fill several movies , and its ample charms should win over the most hard-hearted cynics .\n683\tA yarn that respects the Marvel version without becoming ensnared by it .\n684\tThis is a happy throwback to the time when cartoons were cinema 's most idiosyncratic form instead of one of its most predictable .\n685\tComplex , affecting and uniquely AlmodÃ³var , the film evokes strong emotions and pushes viewers to question their deepest notions of moral right and wrong .\n686\tGood ol' urban legend stuff .\n687\tNot so much a movie as a picture book for the big screen .\n688\tThis is n't my favorite in the series , still I enjoyed it enough to recommend .\n689\tIt 's one of the most honest films ever made about Hollywood .\n690\tIt is a film that will have people walking out halfway through , will encourage others to stand up and applaud , and will , undoubtedly , leave both camps engaged in a ferocious debate for years to come .\n691\tOn its own cinematic terms , it successfully showcases the passions of both the director and novelist Byatt .\n692\tLight , silly , photographed with colour and depth , and rather a good time .\n693\tPray 's film works well and will appeal even to those who are n't too familiar with turntablism .\n694\tGood movie .\n695\tGood actress .\n696\tBut if you expect light romantic comedy , good gosh , will you be shocked .\n697\tIt has the courage to wonder about big questions with sincerity and devotion .\n698\tIt risks seeming slow and pretentious , because it thinks the gamble is worth the promise .\n699\tWith youthful high spirits , Tautou remains captivating throughout Michele 's religious and romantic quests , and she is backed by a likable cast .\n700\tIt 's an example of sophisticated , challenging filmmaking that stands , despite its noticeable lack of emotional heft , in welcome contrast to the indulgent dead-end experimentation of the director 's previous Full Frontal .\n701\tA very funny look at how another culture handles the process of courting and marriage .\n702\tBut tongue-in-cheek preposterousness has always been part of For the most part Wilde 's droll whimsy helps `` Being Earnest '' overcome its weaknesses and Parker 's creative interference ...\n703\tMuch of the movie 's charm lies in the utter cuteness of Stuart and Margolo .\n704\tTheir computer-animated faces are very expressive .\n705\tThe path Ice Age follows most closely , though , is the one established by Warner Bros. giant Chuck Jones , who died a matter of weeks before the movie 's release .\n706\tAnchored by a terrific performance by Abbass , Satin Rouge shows that the idea of women 's self-actualization knows few continental divides .\n707\tAwkward but sincere and , ultimately , it wins you over .\n708\tSmith profiles five extraordinary American homes , and because the owners seem fully aware of the uses and abuses of fame , it 's a pleasure to enjoy their eccentricities .\n709\tThough the plot is predictable , the movie never feels formulaic , because the attention is on the nuances of the emotional development of the delicate characters .\n710\tSam Jones became a very lucky filmmaker the day Wilco got dropped from their record label , proving that one man 's ruin may be another 's fortune .\n711\tGoyer 's screenplay and direction are thankfully understated , and he has drawn excellent performances from his cast .\n712\tBinoche and Magimel are perfect in these roles .\n713\tWhen your leading ladies are a couple of screen-eating dominatrixes like Goldie Hawn and Susan Sarandon at their raunchy best , even hokum goes down easily .\n714\tWhile Undercover Brother is definitely one for the masses , it 's also full of sharp , smart satire .\n715\tGets under the skin of a man who has just lost his wife .\n716\tNo wonder they 're talking about `` Talk to Her . ''\n717\tIt 's astonishing .\n718\tFor its seriousness , high literary aspirations and stunning acting , the film can only be applauded .\n719\tLook , this is a terrific flick replete with dazzling camera-work , dancing and music .\n720\tIt is inspirational in characterizing how people from such diverse cultures share the same human and spiritual needs .\n721\tIt 's fairly self-aware in its dumbness .\n722\tA triumph , relentless and beautiful in its downbeat darkness .\n723\tTailored to entertain !\n724\tA compelling , moving film that respects its audience and its source material .\n725\thas a plot full of twists upon knots ... and a nonstop parade of mock-Tarantino scuzbag types that starts out clever but veers into overkill .\n726\tA work of astonishing delicacy and force .\n727\tThe film benefits greatly from a less manic tone than its predecessor , as Cho appears to have settled comfortably into her skin .\n728\tFor the first time in several years , Mr. Allen has surpassed himself with the magic he 's spun with the Hollywood empress of Ms. Leoni 's Ellie .\n729\tIs n't quite the equal of Woo 's best earlier work , but it 's easily his finest American film ... comes close to recapturing the brilliance of his Hong Kong films .\n730\tThe film hinges on its performances , and both leads are up to the task .\n731\tAn intelligent , earnest , intimate film that drops the ball only when it pauses for blunt exposition to make sure you 're getting its metaphysical point .\n732\tA modest pleasure that accomplishes its goals with ease and confidence .\n733\tA breezy , diverting , conventional , well-acted tale of two men locked in an ongoing game of cat-and-cat .\n734\tWhat Jackson has accomplished here is amazing on a technical level .\n735\tAs teen movies go , `` Orange County '' is a refreshing change\n736\tMakes S&M seem very romantic , and Maggie Gyllenhaal is a delight .\n737\tA deliciously mordant , bitter black comedy .\n738\tAlthough Life or Something Like It is very much in the mold of feel-good movies , the cast and director Stephen Herek 's polished direction pour delightfully piquant wine from aged bottles .\n739\tIt is risky , intelligent , romantic and rapturous from start to finish .\n740\tThe movie sticks much closer to Hornby 's drop-dead confessional tone than the film version of High Fidelity did .\n741\tA pleasant ramble through the sort of idoosyncratic terrain that Errol Morris has often dealt with ... it does possess a loose , lackadaisical charm .\n742\t... spiced with humor -LRB- ' I speak fluent flatula , ' advises Denlopp after a rather , er , bubbly exchange with an alien deckhand -RRB- and witty updatings -LRB- Silver 's parrot has been replaced with Morph , a cute alien creature who mimics everyone and everything around -RRB-\n743\tThis is a raw and disturbing tale that took five years to make , and the trio 's absorbing narrative is a heart-wrenching showcase indeed .\n744\tA beautiful and haunting examination of the stories we tell ourselves to make sense of the mundane horrors of the world .\n745\tAside from being the funniest movie of the year , Simone , Andrew Niccol 's brilliant anti-Hollywood satire , has a wickedly eccentric enchantment to it .\n746\tWatstein handily directs and edits around his screenplay 's sappier elements ... and sustains Off the Hook 's buildup with remarkable assuredness for a first-timer .\n747\tJust another fish-out-of-water story that barely stays afloat .\n748\tThere 's an energy to Y Tu MamÃ¡ TambiÃ©n .\n749\tMuch of it comes from the brave , uninhibited performances by its lead actors .\n750\tIt 's the kind of pigeonhole-resisting romp that Hollywood too rarely provides .\n751\tReinforces the often forgotten fact of the world 's remarkably varying human population and mindset , and its capacity to heal using creative , natural and ancient antidotes .\n752\tYou can feel the heat that ignites this gripping tale , and the humor and humanity that root it in feeling .\n753\tIt 's hard not to be seduced by -LRB- Witherspoon 's -RRB- charisma , even in this run-of-the-mill vehicle , because this girl knows how to drive it to the max .\n754\tA movie for 11-year-old boys with sports dreams of their own and the preteen girls who worship Lil ' Bow Wow .\n755\tA refreshingly authentic coming-of-age tale .\n756\tIf you 're not into the Pokemon franchise , this fourth animated movie in four years wo n't convert you -- or even keep your eyes open .\n757\tBut fans should have fun meeting a brand-new Pokemon called Celebi .\n758\tFrom the big giant titles of the opening credits to Elmer Bernstein 's perfectly melodic score , Haynes gets just about everything right .\n759\tWhether seen on a 10-inch television screen or at your local multiplex , the edge-of-your-seat , educational antics of Steve Irwin are priceless entertainment .\n760\tHas a shambling charm ... a cheerfully inconsequential diversion .\n761\tFerrara directs the entire film with the kind of detachment that makes any given frame look like a family 's custom-made Christmas card .\n762\tThe movie has lots of dancing and fabulous music .\n763\tThere are slow and repetitive parts , but it has just enough spice to keep it interesting .\n764\tAn incredibly clever and superbly paced caper filled with scams within scams within scams .\n765\tThere 's not much more to this adaptation of the Nick Hornby novel than charm -- effortless , pleasurable , featherweight charm .\n766\tAs a belated nod to some neglected all-stars , Standing in the Shadows of Motown is cultural history of the best kind : informative , revealing and richly entertaining .\n767\tEven if the ride 's a little bumpy , with a final lap that 's all too suspiciously smooth , you gotta give director Roger Michell , best known for the superfluous Notting Hill , credit for trying .\n768\tNot as distinctive or even as humorous as its needs to be to stand out , but it has clearly been made with affection and care .\n769\tThis is Carion 's debut feature but his script and direction hums with a confidence that many spend entire careers trying to reach .\n770\tAn intelligent , moving and invigorating film .\n771\t... one of the most ingenious and entertaining thrillers I 've seen in quite a long time .\n772\tA clever blend of fact and fiction .\n773\tA vivid cinematic portrait .\n774\tHilarious , touching and wonderfully dyspeptic .\n775\tTheirs is a simple and heart-warming story , full of mirth that should charm all but the most cynical .\n776\tThe film is an enjoyable family film -- pretty much aimed at any youngster who loves horses .\n777\tA frisky and fresh romantic comedy exporing sexual politics and the challenges of friendships between women .\n778\tIt 's a good film -- not a classic , but odd , entertaining and authentic .\n779\tFlavorful and romantic , you could call this How Martha Got Her Groove Back -- assuming , that is , she ever had one to begin with .\n780\tHappily for Mr. Chin -- though unhappily for his subjects -- the invisible hand of the marketplace wrote a script that no human screenwriter could have hoped to match .\n781\tThurman and Lewis are hilarious throughout .\n782\tthe plot is so amusingly contrived and outlandish in its coincidences that no one could ever mistake it for anything resembling reality\n783\tHits one out of the park for the ` they do n't make 'em like that anymore ' department .\n784\tIt dares to be a little different , and that shading is what makes it worthwhile .\n785\t-LRB- Fessenden -RRB- is much more into ambiguity and creating mood than he is for on screen thrills\n786\tThe comic performances are all spot on , especially Lee Ross 's turn as Ken .\n787\ta compelling journey ... and `` His Best Friend Remembers '' is up there with the finest of specials .\n788\tAt nearly three hours , the whole of Safe Conduct is less than the sum of its parts .\n789\tThe Hours makes you examine your own life in much the same way its characters do , and the experience is profound .\n790\tThe Hours is what movies are supposed to be ...\n791\tA bold and subversive film that cuts across the grain of what is popular and powerful in this high-tech age , speaking its truths with spellbinding imagery and the entrancing music of Philip Glass .\n792\tPretty darn good , despite its smarty-pants aura .\n793\tSo young , so smart , such talent , such a wise \\*\\*\\* .\n794\tWoo 's fights have a distinct flair .\n795\tHis warriors collide in balletic explosion that implies an underlying order throughout the chaos .\n796\tBarney has created a tour de force that is weird , wacky and wonderful .\n797\tThe ending does leave you unfulfilled , but these are performances to enjoy in a memorable ensemble piece .\n798\t... an agreeable time-wasting device -- but George Pal 's low-tech 1960 version still rules the epochs .\n799\tIt 's a brave attempt to tap into the heartbeat of the world , a salute to the universal language of rhythm and a zippy sampling of sounds .\n800\tOffers an unusual opportunity to observe the inequities in the death penalty , not just the inherent immorality but also the haphazard administration of it and public misperception of how the whole thing works .\n801\tI do n't think I 've been as entranced and appalled by an Asian film since Shinya Tsukamoto 's Iron Man .\n802\tIt is so refreshing to see Robin Williams turn 180 degrees from the string of insultingly innocuous and sappy fiascoes he 's been making for the last several years .\n803\tDirector Benoit Jacquot , making his first opera-to-film translation with Tosca , conveys the heaving passion of Puccini 's famous love-jealousy - murder-suicide fandango with great cinematic innovation .\n804\tLilia 's transformation from strict mother to sensual siren is superficially preposterous , but Abbas infuses the role with an unimpeachable core of emotional truth .\n805\tFrida 's artistic brilliance is undeniable -- it 's among the most breathtakingly designed films I 've ever seen .\n806\tThe perfect film for those who like sick comedies that can be snide .\n807\t` Charly ' will divide its audience in two separate groups , those reaching for more tissues and those begging for mercy ...\n808\tNervy and sensitive , it taps into genuine artistic befuddlement , and at the same time presents a scathing indictment of what drives Hollywood .\n809\tA marvellous journey from childhood idealism to adolescent self-absorption .\n810\tThe film is just a big , gorgeous , mind-blowing , breath-taking mess .\n811\tSharp , lively , funny and ultimately sobering film .\n812\tThough the film 's scenario is certainly not earthshaking , this depiction of fluctuating female sexuality has two winning lead performances and charm to spare .\n813\tA worthy tribute to a great humanitarian and her vibrant ` co-stars . '\n814\tA recent favourite at Sundance , this white-trash satire will inspire the affection of even those unlucky people who never owned a cassette of Def Leppard 's Pyromania .\n815\tThe recording session is the only part of the film that is enlightening -- and how appreciative you are of this depends on your level of fandom .\n816\tOccasionally funny and consistently odd , and it works reasonably well as a star vehicle for Zhao .\n817\tBright seems alternately amused and disgusted with this material , and he ca n't help throwing in a few of his own touches .\n818\tThe 3D images only enhance the film 's otherworldly quality , giving it a strange combo of you-are-there closeness with the disorienting unreality of the seemingly broken-down fourth wall of the movie screen .\n819\tAndersson creates a world that 's at once surreal and disturbingly familiar ; absurd , yet tremendously sad .\n820\tIt 's predictable , but it jumps through the expected hoops with style and even some depth .\n821\tOften hilarious , well-shot and , importantly , entertaining , Hell House is a fascinating document of an event that has to be seen to be believed .\n822\tDe Oliveira creates an emotionally rich , poetically plump and visually fulsome , but never showy , film whose bittersweet themes are reinforced and brilliantly personified by Michel Piccoli .\n823\t... an inviting piece of film .\n824\tThe film 's real appeal wo n't be to Clooney fans or adventure buffs , but to moviegoers who enjoy thinking about compelling questions with no easy answers .\n825\tThe fact that The Rookie is a nearly impeccable cinematic experience -- and a wonderful all-ages triumph besides -- is a miracle akin to the story the film portrays .\n826\tA deviant topical comedy which is funny from start to finish .\n827\tA startling and fresh examination of how the bike still remains an ambiguous icon in Chinese society .\n828\tA highly intriguing thriller , coupled with some ingenious plot devices and some lavishly built settings . .\n829\tit 's a worthwhile tutorial in quantum physics and slash-dash\n830\tAs Hugh Grant says repeatedly throughout the movie , ` Lovely !\n831\tBrilliant ! '\n832\tCho 's fearless in picking apart human foibles , not afraid to lay her life bare in front of an audience .\n833\tHer delivery and timing are flawless .\n834\tWorks because , for the most part , it avoids the stupid cliches and formulaic potholes that befall its brethren .\n835\tAt its best , The Good Girl is a refreshingly adult take on adultery ...\n836\tAn amazing and incendiary movie that dives straight into the rough waters of contradiction .\n837\tAbout nowhere kids who appropriated turfs as they found them and become self-made celebrity athletes -- a low-down version of the American dream .\n838\tOccasionally , in the course of reviewing art-house obscurities and slam-bam action flicks , a jaded critic smacks into something truly new .\n839\tA miniscule little bleep on the film radar , but one that many more people should check out\n840\t`` 13 Conversations '' holds its goodwill close , but is relatively slow to come to the point .\n841\tA slick , well-oiled machine , exquisitely polished and upholstered .\n842\tDo n't plan on the perfect ending , but Sweet Home Alabama hits the mark with critics who escaped from a small town life .\n843\tIt has a subtle way of getting under your skin and sticking with you long after it 's over .\n844\tThe movie stays afloat thanks to its hallucinatory production design .\n845\tIt helps that the central performers are experienced actors , and that they know their roles so well .\n846\tA provocative movie about loss , anger , greed , jealousy , sickness and love .\n847\tWorth the effort to watch .\n848\tThat rara avis : the intelligent romantic comedy with actual ideas on its mind .\n849\tBoisterous and daft documentary .\n850\tHawke draws out the best from his large cast in beautifully articulated portrayals that are subtle and so expressive they can sustain the poetic flights in Burdette 's dialogue .\n851\tA work of the utmost subtlety and perception , it marks the outstanding feature debut of writer-director Eric Byler , who understands the power of the implicit and the virtues of simplicity and economy .\n852\tFull Frontal is the antidote for Soderbergh fans who think he 's gone too commercial since his two Oscar nominated films in 2000\n853\tIt turns out to be a cut above the norm , thanks to some clever writing and sprightly acting .\n854\tYou might not want to hang out with Samantha , but you 'll probably see a bit of yourself in her unfinished story .\n855\tA work of intricate elegance , literary lyricism and profound common sense .\n856\tIt 's as close as we 'll ever come to looking through a photographer 's viewfinder as he works .\n857\tThoughtful , provocative and entertaining .\n858\tWitty , touching and well paced .\n859\tLee Jeong-Hyang tells it so lovingly and films it so beautifully that I could n't help being captivated by it .\n860\tYou have to pay attention to follow all the stories , but they 're each interesting .\n861\tThe movie is well shot and very tragic , and one to ponder after the credits roll .\n862\tEnjoy it for what it is ; you can hate yourself later .\n863\tA map of the inner rhythms of love and jealousy and sacrifice drawn with a master 's steady stroke .\n864\tA psychological thriller with a smart script and an obsessive-compulsive 's attention to detail .\n865\tGrant gets to display his cadness to perfection , but also to show acting range that may surprise some who thought light-hearted comedy was his forte .\n866\tAt times funny and at other times candidly revealing , it 's an intriguing look at two performers who put themselves out there because they love what they do .\n867\tWestfeldt and Juergensen exude a chemistry and comfort level that 's both saucy and endearing .\n868\tHarsh , effective documentary on life in the Israeli-occupied Palestinian territories .\n869\tThe film is all a little Lit Crit 101 , but it 's extremely well played and often very funny .\n870\tEarns its laughs from stock redneck ` types ' and from the many , many moments when we recognize even without the Elizabethan prose , the play behind the thing .\n871\tA real story about real people living their lives concerned about the future of an elderly , mentally handicapped family member .\n872\tIt 's absolutely spooky how Lillard channels the Shagster right down to the original Casey Kasem-furnished voice .\n873\tA dream cast of solid female talent who build a seamless ensemble .\n874\tThere is n't a weak or careless performance amongst them .\n875\tSmart science fiction for grown-ups , with only a few false steps along the way .\n876\tIt 's a refreshing change from the self-interest and paranoia that shape most American representations of Castro .\n877\tOften moving and explores the discomfort inherent in the contacts between the American ` hosts ' and their ` guests . '\n878\tThough the controversial Korean filmmaker 's latest effort is not for all tastes , it offers gorgeous imagery , effective performances , and an increasingly unsettling sense of foreboding .\n879\tLathan and Diggs have considerable personal charm , and their screen rapport makes the old story seem new .\n880\tThe story may not be new , but Australian director John Polson , making his American feature debut , jazzes it up adroitly .\n881\tIt 's endearing to hear Madame D. refer to her husband as ` Jackie ' -- and he does make for excellent company , not least as a self-conscious performer .\n882\tThe film often achieves a mesmerizing poetry .\n883\tMore than makes up for its mawkish posing by offering rousing spates of genuine feeling .\n884\tIt 's neither as romantic nor as thrilling as it should be .\n885\tBut it offers plenty to ponder and chew on as its unusual relationship slowly unfolds .\n886\tOccasionally funny , always very colorful and enjoyably overblown in the traditional AlmodÃ³var style .\n887\tMerchant effectively translates Naipaul 's lively mix of characters from the page to screen .\n888\tSome movies are like a tasty hors-d'oeuvre ; this one is a feast .\n889\tWhat could have become just another cautionary fable is allowed to play out as a clever , charming tale -- as pleasantly in its own way as its self-dramatizing characters .\n890\tDavis has filled out his cast with appealing fresh faces .\n891\tAchieves a sort of filmic epiphany that revels in the true potential of the medium .\n892\tOnce you get into its rhythm ... the movie becomes a heady experience .\n893\t`` Auto Focus '' works as an unusual biopic and document of male swingers in the Playboy era\n894\tIf Mr. Zhang 's subject matter is , to some degree at least , quintessentially American , his approach to storytelling might be called Iranian .\n895\tA fast-moving and remarkable film that appears destined to become a landmark in Japanese animation .\n896\t... a sour little movie at its core ; an exploration of the emptiness that underlay the relentless gaiety of the 1920 's ... The film 's ending has a `` What was it all for ? ''\n897\tfeeling to it , but like the 1920 's , the trip there is a great deal of fun .\n898\tA worthy entry into a very difficult genre .\n899\t-LRB- Broomfield -RRB- uncovers a story powerful enough to leave the screen sizzling with intrigue .\n900\tEight Crazy Nights is a showcase for Sandler 's many talents .\n901\tA sweet-natured reconsideration of one of San Francisco 's most vital , if least widely recognized , creative fountainheads .\n902\tThis is one of the most visually stunning and thematically moving epics in recent memory , and in spite of numerous minor flaws , Scorsese 's best in more than a decade .\n903\tEverywhere the camera looks there is something worth seeing .\n904\tA richly imagined and admirably mature work from a gifted director who definitely has something on his mind .\n905\tIt 's a nicely detailed world of pawns , bishops and kings , of wagers in dingy backrooms or pristine forests .\n906\tA charming , quirky and leisurely paced Scottish comedy -- except with an outrageous central gimmick that could have been a reject from Monty Python 's Meaning of Life .\n907\tIt never fails to engage us .\n908\tIts direction , its script , and Weaver 's performance as a vaguely discontented woman of substance make for a mildly entertaining 77 minutes , if that 's what you 're in the mood for .\n909\tA charming romantic comedy that is by far the lightest Dogme film and among the most enjoyable .\n910\tThis is the kind of movie that used to be right at home at the Saturday matinee , and it still is .\n911\tThe spark of special anime magic here is unmistakable and hard to resist .\n912\tLike its two predecessors , 1983 's Koyaanisqatsi and 1988 's Powaqqatsi , the cinematic collage Naqoyqatsi could be the most navel-gazing film ever .\n913\tBaran is n't the most transporting or gripping film from Iran -- or , indeed , by its director -- but it 's a worthy companion to the many fine , focused films emerging from that most surprising of nations .\n914\tThe visuals alone make Metropolis worth seeing .\n915\tDark , resonant , inventively detailed and packed with fleet turns of plot and a feast of visual amazement .\n916\tA picture that extols the virtues of comradeship and community in a spunky , spirited fashion .\n917\tA resonant tale of racism , revenge and retribution .\n918\tNoyce 's film is contemplative and mournfully reflective .\n919\tHere , Adrian Lyne comes as close to profundity as he is likely to get .\n920\tEvokes a little of the fear that parents have for the possible futures of their children -- and the sometimes bad choices mothers and fathers make in the interests of doing them good .\n921\tRain is a small treasure , enveloping the viewer in a literal and spiritual torpor that is anything but cathartic .\n922\tAn elegant , exquisitely modulated psychological thriller .\n923\tThis concoction , so bizarre to the adult mind , is actually a charming triumph where its intended under-12 audience is concerned .\n924\tDroll caper-comedy remake of `` Big Deal on Madonna Street '' that 's a sly , amusing , laugh-filled little gem in which the ultimate `` Bellini '' begins to look like a `` real Kaputschnik . ''\n925\tIt 's a beautifully accomplished lyrical meditation on a bunch of despondent and vulnerable characters living in the renown Chelsea Hotel ...\n926\tIs it a total success ?\n927\tNo. .\n928\tIs it something any true film addict will want to check out ?\n929\tYou bet .\n930\tZany , exuberantly irreverent animated space adventure .\n931\tDolgin and Franco fashion a fascinating portrait of a Vietnamese-born youngster who eagerly and easily assimilated as an all-American girl with a brand new name in southern Tennessee .\n932\tThe disarming cornball atmosphere has a way of infecting the entire crowd as the film rolls on .\n933\tA refreshingly honest and ultimately touching tale of the sort of people usually ignored in contemporary American film .\n934\tSearch it out .\n935\tEngrossing and affecting , if ultimately not quite satisfying .\n936\tThe story , like life , refuses to be simple , and the result is a compelling slice of awkward emotions .\n937\tA sly game of cat and mouse that 's intense and thrilling at times , but occasionally stretches believability to its limits and relies on predictable plot contrivances .\n938\tFunny and , at times , poignant , the film from director George Hickenlooper all takes place in Pasadena , `` a city where people still read . ''\n939\tThis horror-comedy does n't go for the usual obvious laughs at the expense of cheap-looking monsters -- unless you count Elvira 's hooters .\n940\tThe movie 's eventual success should be credited to Dennis Quaid , in fighting trim shape as an athlete as well as an actor\n941\tNot a bad journey at all .\n942\tSits uneasily as a horror picture ... but finds surprising depth in its look at the binds of a small family .\n943\tWindtalkers blows this way and that , but there 's no mistaking the filmmaker in the tall grass , true to himself .\n944\tThere is a refreshing absence of cynicism in Stuart Little 2 -- quite a rarity , even in the family film market .\n945\tEventually , it wins you over .\n946\tNoyce films it more as a shocking history lesson than as drama .\n947\tLike a south-of-the-border Melrose Place .\n948\tThose with an interest in new or singular sorts of film experiences will find What Time Is It There ?\n949\twell worth the time .\n950\tA wildly funny prison caper .\n951\tHuppert gives Erika a persona that is so intriguing that you find yourself staring hypnotically at her , trying to understand her and wondering if she 'll crack .\n952\tDespite what anyone believes about the goal of its makers , the show ... represents a spectacular piece of theater , and there 's no denying the talent of the creative forces behind it .\n953\tYou 'll be left with the sensation of having just witnessed a great performance and , perhaps , give in to the urge to get on your feet and shake it .\n954\tThe actors are so terrific at conveying their young angst , we do indeed feel for them .\n955\tThe reason this picture works better than its predecessors is that Myers is no longer simply spoofing the mini-mod-madness of '60s spy movies .\n956\tIt is a kickass , dense sci-fi action thriller hybrid that delivers and then some .\n957\tI have n't seen one in so long , no wonder I did n't recognize it at first .\n958\ta compelling portrait of moral emptiness\n959\tIn Adobo , ethnicity is not just the spice , but at the heart of more universal concerns .\n960\tIt is ridiculous , of course ... but it is also refreshing , disarming , and just outright enjoyable despite its ridiculousness .\n961\t... Blade II is more enjoyable than the original .\n962\tA film that takes you inside the rhythms of its subject : You experience it as you watch .\n963\tThe movie exists for its soccer action and its fine acting .\n964\tThe movie is saved from unbearable lightness by the simplicity of the storytelling and the authenticity of the performances .\n965\tThe film starts out as competent but unremarkable ... and gradually grows into something of considerable power .\n966\tNothing Denis has made before , like Beau Travil and Nenette et Boni , could prepare us for this gory , perverted , sex-soaked riff on the cannibal genre .\n967\tReinforces the talents of screenwriter Charlie Kaufman , creator of Adaptation and Being John Malkovich .\n968\tGreene delivers a typically solid performance in a role that is a bit of a departure from the noble characters he has played in the past , and he is matched by Schweig , who carries the film on his broad , handsome shoulders .\n969\tFinds a way to tell a simple story , perhaps the simplest story of all , in a way that seems compelling and even original .\n970\tA stunning piece of visual poetry that will , hopefully , be remembered as one of the most important stories to be told in Australia 's film history .\n971\tThis is art paying homage to art .\n972\t... a joke at once flaky and resonant , lightweight and bizarrely original .\n973\tInvincible is a wonderful movie .\n974\t... a cute and sometimes side-splittingly funny blend of Legally Blonde and Drop Dead Gorgeous , starring Piper Perabo in what could be her breakthrough role .\n975\tDazzling and sugar-sweet , a blast of shallow magnificence that only sex , scandal , and a chorus line of dangerous damsels can deliver .\n976\tOccasionally amateurishly made but a winsome cast and nice dialogue keeps it going .\n977\tJapan 's premier stylist of sex and blood hits audiences with what may be his most demented film to date .\n978\tCulkin , who 's in virtually every scene , shines as a young man who uses sarcastic lies like a shield .\n979\tCuts right through the B.S. giving a big middle-fingered `` shut up '' to those who talk up what is nothing more than two guys beating the hell outta one another .\n980\tThe AM-radio soundtrack and game cast -- Tierney and the inimitable Walken especially -- keep this unusual comedy from choking on its own conceit .\n981\t... does such a fine job of engulfing you in its world and allying you with its characters ' choices , good and ill , that its shortcomings are remembered only as an afterthought .\n982\tMarvelous , merry and , yes , melancholy film .\n983\tFrom spiritual rebirth to bruising defeat , Vincent 's odyssey resonates in a profound way , comparable to the classic films of Jean Renoir .\n984\tNovak manages to capture a cruelly hilarious vein of black comedy in the situation with his cast of non-actors and a gritty , no-budget approach .\n985\tInsomnia is involving .\n986\tStill , I thought it could have been more .\n987\tThere was time on that second round to see the subtleties of Ramsay 's portrait of grief .\n988\tWe can see the wheels turning , and we might resent it sometimes , but this is still a nice little picture , made by bright and friendly souls with a lot of good cheer .\n989\tA comprehensive and provocative film -- one that pushes the boundaries of biography , and challenges its audience .\n990\tThe way Coppola professes his love for movies -- both colorful pop junk and the classics that unequivocally qualify as art -- is giddily entertaining .\n991\tA worthwhile way to spend two hours .\n992\tFrancophiles will snicker knowingly and you 'll want to slap them .\n993\tSensitive , insightful and beautifully rendered film .\n994\tOne of the best of the year .\n995\tA love for films shines through each frame and the era is recreated with obvious affection , scored to perfection with some tasty boogaloo beats .\n996\tThrowing caution to the wind with an invitation to the hedonist in us all , Nair has constructed this motion picture in such a way that even the most cynical curmudgeon with find himself or herself smiling at one time or another .\n997\tMakes an aborbing if arguable case for the man 's greatness .\n998\tAn endlessly fascinating , landmark movie that is as bold as anything the cinema has seen in years .\n999\t... a haunting vision , with images that seem more like disturbing hallucinations .\n1000\tIt is not a mass-market entertainment but an uncompromising attempt by one artist to think about another .\n1001\tFrailty is n't as gory or explicit .\n1002\tBut in its child-centered , claustrophobic context , it can be just as frightening and disturbing -- even punishing .\n1003\tMixes likeable personalities , inventive photography and cutting , and wall-to-wall toe-tapping music to paint a picture of a subculture that is at once exhilarating , silly , perverse , hopeful and always fun .\n1004\tThe long-range appeal of `` Minority Report '' should transcend any awards it bags .\n1005\tThis is one for the ages .\n1006\t-LRB- A -RRB- superbly controlled , passionate adaptation of Graham Greene 's 1955 novel .\n1007\tMuch monkeyfun for all .\n1008\tAn enchanting film that presents an audacious tour of the past and takes within its warm embrace the bounties of cultural artifacts inside St. Petersburg 's Hermitage Museum .\n1009\t-LRB- Hawn 's character -RRB- is so bluntly written , without a trace of sentimentality , and so blisteringly defined , that every other character seems overlooked and underwritten .\n1010\tThe heightened symmetry of this new\\/old Cinema Paradiso makes the film a fuller experience , like an old friend haunted by the exigencies of time .\n1011\tThe Powers team has fashioned a comedy with more laughs than many , no question .\n1012\tBut this time there 's some mold on the gold .\n1013\tWhile surprisingly sincere , this average little story is adorned with some awesome action photography and surfing .\n1014\tIt is far from the worst , thanks to the topical issues it raises , the performances of Stewart and Hardy , and that essential feature -- a decent full-on space battle .\n1015\tA film that is a portrait of grace in an imperfect world .\n1016\tA pleasurably jacked-up piece of action moviemaking .\n1017\tNicolas Philibert observes life inside a one-room schoolhouse in northern France in his documentary To Be and to Have , easily one of the best films of the year .\n1018\tA perverse little truffle , dainty psychological terror on the outside with a creamy filling of familial jealousy and unrepentant domestic psychopathy .\n1019\tThis ecologically minded , wildlife friendly film teaches good ethics while entertaining with its unconventionally wacky but loving family\n1020\tAn enjoyably half-wit remake of the venerable Italian comedy Big Deal on Madonna Street .\n1021\tIt takes this never-ending confusion and hatred , puts a human face on it , evokes shame among all who are party to it and even promotes understanding .\n1022\tReign of Fire may be little more than another platter of reheated Aliens , but it 's still pretty tasty .\n1023\tThere are times when A Rumor of Angels plays like an extended episode of Touched by an Angel -- a little too much dancing , a few too many weeping scenes -- but I liked its heart and its spirit .\n1024\tTwo hours of melodramatic musical married to two hours of underdog sports intrigue , if the picture also shares the weaknesses of both genres , more 's the pity .\n1025\tThis cheery , down-to-earth film is warm with the cozy feeling of relaxing around old friends .\n1026\tThrilling , provocative and darkly funny , this timely sci-fi mystery works on so many different levels that it not only invites , it demands repeated viewings .\n1027\tA tale of horror and revenge that is nearly perfect in its relentless descent to the depths of one man 's tortured soul .\n1028\tAn epic of grandeur and scale that 's been decades gone from the popcorn pushing sound stages of Hollywood .\n1029\tGenuinely touching because it 's realistic about all kinds of love .\n1030\tLauren Ambrose comes alive under the attention from two strangers in town - with honest performances and realistic interaction between the characters , this is a coming-of-age story with a twist .\n1031\tThere has been much puzzlement among critics about what the election symbolizes .\n1032\tI believe the message is in the messenger : The agent is a woman .\n1033\tAn enjoyable film for the family , amusing and cute for both adults and kids .\n1034\t`` The Mothman Prophecies '' is a difficult film to shake from your conscience when night falls .\n1035\tThe second chapter of the Harry Potter series is even more magical than the first and simply the best family film of the year .\n1036\tMore honest about Alzheimer 's disease , I think , than Iris .\n1037\tThe acting alone is worth the price of admission .\n1038\tAn excellent romp that boasts both a heart and a mind .\n1039\tInteracting eyeball-to-eyeball and toe-to-toe , Hopkins and Norton are a winning combination -- but Fiennes steals ` Red Dragon ' right from under their noses .\n1040\tThis is a terrific character study , a probe into the life of a complex man .\n1041\tImpresses you with its open-endedness and surprises .\n1042\tThis is n't a narrative film -- I do n't know if it 's possible to make a narrative film about September 11th , though I 'm sure some will try -- but it 's as close as anyone has dared to come .\n1043\tMy oh my , is this an invigorating , electric movie .\n1044\tThe two leads chomp considerably more scenery with their acting than fire-breathing monsters barbecue with their breath ...\n1045\tCedar takes a very open-minded approach to this sensitive material , showing impressive control , both visually and in the writing .\n1046\tBiggie and Tupac is so single-mindedly daring , it puts far more polished documentaries to shame .\n1047\tSo many documentaries like this presuppose religious bigotry or zealous nuttiness of its antagonists , but Family Fundamentals displays a rare gift for unflinching impartiality .\n1048\tThe cast is uniformly excellent and relaxed .\n1049\tAfter making several adaptations of other writers ' work , Armenian-Canadian director Atom Egoyan broached an original treatment of a deeply personal subject .\n1050\tThe film is painfully authentic , and the performances of the young players are utterly convincing .\n1051\tIf it seems like a minor miracle that its septuagenarian star is young enough to be the nonagenarian filmmaker 's son , more incredible still are the clear-eyed boldness and quiet irony with which actor and director take on life 's urgent questions .\n1052\tA candid and often fascinating documentary about a Pentecostal church in Dallas that assembles an elaborate haunted house each year to scare teenagers into attending services .\n1053\tFans of the animated wildlife adventure show will be in warthog heaven ; others need not necessarily apply .\n1054\tWithout resorting to hyperbole , I can state that Kissing Jessica Stein may be the best same-sex romance I have seen .\n1055\tNolan bravely treads where few American films dare to delve -- into the world of ambivalence and ambiguity ...\n1056\tUnlike the nauseating fictions peddled by such ` Have-yourself-a-happy-little-Holocaust ' movies as Life Is Beautiful and Jakob the Liar , The Grey Zone is honest enough to deny the possibility of hope in Auschwitz .\n1057\tA potent allegorical love story .\n1058\tEven those who would like to dismiss the film outright should find much to mull and debate .\n1059\tThis is cool , slick stuff , ready to quench the thirst of an audience that misses the summer blockbusters .\n1060\tThe movie is full of fine performances , led by Josef Bierbichler as Brecht and Monica Bleibtreu as Helene Weigel , his wife .\n1061\tA captivating cross-cultural comedy of manners .\n1062\tAndy Garcia enjoys one of his richest roles in years and Mick Jagger gives his best movie performance since , well , Performance .\n1063\tThe movie is n't always easy to look at .\n1064\tBut if it is indeed a duty of art to reflect life , than Leigh has created a masterful piece of artistry right here .\n1065\tIt 's -LRB- Ricci 's -RRB- best work yet , this girl-woman who sincerely believes she can thwart the world 's misery with blind good will .\n1066\tHighlights are the terrific performances by Christopher Plummer , as the prime villain , and Nathan Lane as Vincent Crummles , the eccentric theater company manager .\n1067\t-LRB- Howard -RRB- so good as Leon Barlow ... that he hardly seems to be acting .\n1068\tSuperior genre storytelling , which gets under our skin simply by crossing the nuclear line .\n1069\tBy taking Entertainment Tonight subject matter and giving it humor and poignancy , Auto Focus becomes both gut-bustingly funny and crushingly depressing .\n1070\tIt 's a bittersweet and lyrical mix of elements .\n1071\tSubversive , meditative , clinical and poetic , The Piano Teacher is a daring work of genius .\n1072\tThe weakest of the four Harry Potter books has been transformed into the stronger of the two films by the thinnest of margins .\n1073\tIts gross-out gags and colorful set pieces ... are of course stultifyingly contrived and too stylized by half .\n1074\tStill , it gets the job done -- a sleepy afternoon rental .\n1075\tIt further declares its director , Zhang Yang of Shower , as a boldly experimental , contemporary stylist with a bright future .\n1076\tSmith 's approach is never to tease , except gently and in that way that makes us consider our own eccentricities and how they are expressed through our homes .\n1077\tFull of profound , real-life moments that anyone can relate to , it deserves a wide audience .\n1078\tA movie that will touch the hearts of both children and adults , as well as bring audiences to the edge of their seats .\n1079\tLeave it to Rohmer , now 82 , to find a way to bend current technique to the service of a vision of the past that is faithful to both architectural glories and commanding open spaces of the city as it was more than two centuries ago .\n1080\tFine acting but there is no sense of connecting the dots , just dots .\n1081\tAn extraordinary Swedish film about the soul adventure of marriage -- the kind of intimate and character-driven film that Bille August does best .\n1082\tA blessed gift to film geeks and historians .\n1083\tIf the ' 70 's were your idea of a good time at the movies , this will make you very happy .\n1084\tIt took 19 predecessors to get THIS ?\n1085\tThoughtful , even stinging at times , and lots of fun .\n1086\tOne of the most haunting , viciously honest coming-of-age films in recent memory .\n1087\tThe WWII drama is well plotted , visually striking and filled with enjoyably complex characters who are never what they first appear .\n1088\tIt 's a pleasure to see Seinfeld griping about the biz with buddies Chris Rock , Garry Shandling and Colin Quinn .\n1089\tIf you love Motown music , you 'll love this documentary .\n1090\tThis time out , -LRB- Sade -RRB- is an unsettlingly familiar figure -- in turns loyal and deceitful , responsible and reckless , idealistically selfless and coldly self-interested .\n1091\tHuman Resources was a good , straightforward tale , but Time Out is better .\n1092\tIt 's haunting .\n1093\tIt 's like a poem .\n1094\tTo the film 's credit , the acting is fresh and unselfconscious , and Munch is a marvel of reality versus sappy sentiment .\n1095\tChicago is , in many ways , an admirable achievement .\n1096\tShainberg weaves a carefully balanced scenario that is controlled by neither character , is weirdly sympathetic to both and manages to be tender and darkly comic .\n1097\tEven when foreign directors ... borrow stuff from Hollywood , they invariably shake up the formula and make it more interesting .\n1098\tA cockamamie tone poem pitched precipitously between swoony lyricism and violent catastrophe ... the most aggressively nerve-wracking and screamingly neurotic romantic comedy in cinema history .\n1099\tSturdy , entertaining period drama ... both Caine and Fraser have their moments .\n1100\tWhether -LRB- Binoche and Magimel -RRB- are being charming or angst-ridden , they easily fill their scenes and , fine judges both , never overcook the hysteria .\n1101\tA spunky , original take on a theme that will resonate with singles of many ages .\n1102\tIt 's a glorious groove that leaves you wanting more .\n1103\tMajidi gets uniformly engaging performances from his largely amateur cast .\n1104\t... a well-observed and disturbing little movie\n1105\tFans of Nijinsky will savor every minute of Cox 's work .\n1106\tEverything you loved about it in 1982 is still there , for everybody who wants to be a kid again , or show it to their own kids .\n1107\tJagger the actor is someone you want to see again .\n1108\tEscapism in its purest form .\n1109\tThere is a kind of attentive concern that Hoffman brings to his characters , as if he has been giving them private lessons , and now it is time for their first public recital .\n1110\tA comic gem with some serious sparkles .\n1111\tU.S. audiences may find -LRB- Attal and Gainsbourg 's -RRB- unfamiliar personas give the film an intimate and quaint reality that is a little closer to human nature than what Hollywood typically concocts .\n1112\t`` Cremaster 3 '' should come with the warning `` For serious film buffs only ! ''\n1113\tOnce again , director Jackson strikes a rewarding balance between emotion on the human scale and action\\/effects on the spectacular scale .\n1114\tA loving little film of considerable appeal .\n1115\tAlthough it 's a bit smug and repetitive , this documentary engages your brain in a way few current films do .\n1116\tFlawed but worthy look at life in U.S. relocation camps .\n1117\tIt 's a lovely film with lovely performances by Buy and Accorsi .\n1118\tNo one goes unindicted here , which is probably for the best .\n1119\tAnd if you 're not nearly moved to tears by a couple of scenes , you 've got ice water in your veins .\n1120\tA warm , funny , engaging film .\n1121\tUses sharp humor and insight into human nature to examine class conflict , adolescent yearning , the roots of friendship and sexual identity .\n1122\tHalf Submarine flick , Half Ghost Story , All in one criminally neglected film\n1123\tEntertains by providing good , lively company .\n1124\tDazzles with its fully-written characters , its determined stylishness -LRB- which always relates to characters and story -RRB- and Johnny Dankworth 's best soundtrack in years .\n1125\tVisually imaginative , thematically instructive and thoroughly delightful , it takes us on a roller-coaster ride from innocence to experience without even a hint of that typical kiddie-flick sentimentality .\n1126\tNothing 's at stake , just a twisty double-cross you can smell a mile away -- still , the derivative Nine Queens is lots of fun .\n1127\tUnlike the speedy wham-bam effect of most Hollywood offerings , character development -- and more importantly , character empathy -- is at the heart of Italian for Beginners .\n1128\tYou 'll gasp appalled and laugh outraged and possibly , watching the spectacle of a promising young lad treading desperately in a nasty sea , shed an errant tear .\n1129\tThe band 's courage in the face of official repression is inspiring , especially for aging hippies -LRB- this one included -RRB- .\n1130\tAlthough German cooking does not come readily to mind when considering the world 's best cuisine , Mostly Martha could make Deutchland a popular destination for hungry tourists .\n1131\tA beguiling splash of pastel colors and prankish comedy from Disney .\n1132\tAs surreal as a dream and as detailed as a photograph , as visually dexterous as it is at times imaginatively overwhelming .\n1133\t-LRB- Lawrence bounces -RRB- all over the stage , dancing , running , sweating , mopping his face and generally displaying the wacky talent that brought him fame in the first place .\n1134\tThe film serves as a valuable time capsule to remind us of the devastating horror suffered by an entire people .\n1135\tWhat 's surprising about Full Frontal is that despite its overt self-awareness , parts of the movie still manage to break past the artifice and thoroughly engage you .\n1136\tWhether you like rap music or loathe it , you ca n't deny either the tragic loss of two young men in the prime of their talent or the power of this movie .\n1137\t... an otherwise intense , twist-and-turn thriller that certainly should n't hurt talented young Gaghan 's resume .\n1138\tIt provides the grand , intelligent entertainment of a superior cast playing smart people amid a compelling plot .\n1139\tThere 's ... tremendous energy from the cast , a sense of playfulness and excitement that seems appropriate .\n1140\tIt moves quickly , adroitly , and without fuss ; it does n't give you time to reflect on the inanity -- and the Cold War datedness -- of its premise .\n1141\tA deep and meaningful film .\n1142\tThe film 's welcome breeziness and some unbelievably hilarious moments -- most portraying the idiocy of the film industry -- make it mostly worth the trip .\n1143\tIt 's a remarkably solid and subtly satirical tour de force .\n1144\tEnormously entertaining for moviegoers of any age .\n1145\tA poignant , artfully crafted meditation on mortality .\n1146\tA rarity among recent Iranian films : It 's a comedy full of gentle humor that chides the absurdity of its protagonist 's plight .\n1147\tNot only is Undercover Brother as funny , if not more so , than both Austin Powers films , but it 's also one of the smarter , savvier spoofs to come along in some time .\n1148\tIn a way , the film feels like a breath of fresh air , but only to those that allow it in .\n1149\tWoody Allen 's latest is an ambling , broad comedy about all there is to love -- and hate -- about the movie biz .\n1150\tIt 's a stunning lyrical work of considerable force and truth .\n1151\tThe inhospitability of the land emphasizes the spare precision of the narratives and helps to give them an atavistic power , as if they were tales that had been handed down since the beginning of time .\n1152\t-LRB- NÃ¦s -RRB- directed the stage version of Elling , and gets fine performances from his two leads who originated the characters on stage .\n1153\tMade me unintentionally famous -- as the queasy-stomached critic who staggered from the theater and blacked out in the lobby .\n1154\tBut believe it or not , it 's one of the most beautiful , evocative works I 've seen .\n1155\tA coda in every sense , The Pinochet Case splits time between a minute-by-minute account of the British court 's extradition chess game and the regime 's talking-head survivors .\n1156\tLike Mike is a winner for kids , and no doubt a winner for Lil Bow Wow , who can now add movies to the list of things he does well .\n1157\t-LRB- T -RRB- his beguiling Belgian fable , very much its own droll and delicate little film , has some touching things to say about what is important in life and why .\n1158\tHere 's yet another studio horror franchise mucking up its storyline with glitches casual fans could correct in their sleep .\n1159\tBut taken as a stylish and energetic one-shot , The Queen of the Damned can not be said to suck .\n1160\tYou wo n't like Roger , but you will quickly recognize him .\n1161\tAnd that 's a big part of why we go to the movies .\n1162\tWhile the stoically delivered hokum of Hart 's War is never fun , it 's still a worthy addition to the growing canon of post-Saving Private Ryan tributes to the greatest generation .\n1163\tWe know the plot 's a little crazy , but it held my interest from start to finish .\n1164\tA sober and affecting chronicle of the leveling effect of loss .\n1165\tA fast , funny , highly enjoyable movie .\n1166\tA celebration of quirkiness , eccentricity , and certain individuals ' tendency to let it all hang out , and damn the consequences .\n1167\tWriter\\/director Joe Carnahan 's grimy crime drama is a manual of precinct cliches , but it moves fast enough to cover its clunky dialogue and lapses in logic .\n1168\tA smart , witty follow-up .\n1169\tWhile the ideas about techno-saturation are far from novel , they 're presented with a wry dark humor .\n1170\tAn infectious cultural fable with a tasty balance of family drama and frenetic comedy .\n1171\tAlthough occasionally static to the point of resembling a stage play , the film delivers a solid mixture of sweetness and laughs .\n1172\tIt provides an honest look at a community striving to anchor itself in new grounds .\n1173\tAdd yet another hat to a talented head , Clooney 's a good director .\n1174\tBuilding slowly and subtly , the film , sporting a breezy spontaneity and realistically drawn characterizations , develops into a significant character study that is both moving and wise .\n1175\tUltimately feels empty and unsatisfying , like swallowing a Communion wafer without the wine .\n1176\tChilling , well-acted , and finely directed : David Jacobson 's Dahmer .\n1177\tA swashbuckling tale of love , betrayal , revenge and above all , faith .\n1178\tWithout ever becoming didactic , director Carlos Carrera expertly weaves this novelistic story of entangled interrelationships and complex morality .\n1179\tIt 's a coming-of-age story we 've all seen bits of in other films -- but it 's rarely been told with such affecting grace and cultural specificity .\n1180\tA literate presentation that wonderfully weaves a murderous event in 1873 with murderous rage in 2002 .\n1181\tMakes even the claustrophobic on-board quarters seem fun .\n1182\tThis is as respectful a film as Byatt fans could hope for , though lovers of the book may wonder why it 's necessary .\n1183\tOne of the best films of the year with its exploration of the obstacles to happiness faced by five contemporary individuals ... a psychological masterpiece .\n1184\tNot far beneath the surface , this reconfigured tale asks disturbing questions about those things we expect from military epics .\n1185\tFor the most part Stevens glides through on some solid performances and witty dialogue .\n1186\tBroomfield turns his distinctive ` blundering ' style into something that could really help clear up the case .\n1187\tAgainst all odds in heaven and hell , it creeped me out just fine .\n1188\tIt 's refreshing to see a girl-power movie that does n't feel it has to prove anything .\n1189\tIt 's worth seeing just on the basis of the wisdom , and at times , the startling optimism , of the children .\n1190\tA rigorously structured and exquisitely filmed drama about a father and son connection that is a brief shooting star of love .\n1191\tThis surreal Gilliam-esque film is also a troubling interpretation of Ecclesiastes .\n1192\tA rewarding work of art for only the most patient and challenge-hungry moviegoers .\n1193\tA quiet treasure -- a film to be savored .\n1194\tMay be far from the best of the series , but it 's assured , wonderfully respectful of its past and thrilling enough to make it abundantly clear that this movie phenomenon has once again reinvented itself for a new generation .\n1195\tA compelling Spanish film about the withering effects of jealousy in the life of a young monarch whose sexual passion for her husband becomes an obsession .\n1196\tHuston nails both the glad-handing and the choking sense of hollow despair .\n1197\tmay not have generated many sparks , but with his affection for Astoria and its people he has given his tale a warm glow .\n1198\tA delirious celebration of the female orgasm .\n1199\tExquisitely nuanced in mood tics and dialogue , this chamber drama is superbly acted by the deeply appealing veteran Bouquet and the chilling but quite human Berling .\n1200\tIt 's fascinating to see how Bettany and McDowell play off each other .\n1201\tThe film is beautifully mounted , but , more to the point , the issues are subtly presented , managing to walk a fine line with regard to the question of Joan 's madness .\n1202\tLeigh 's film is full of memorable performances from top to bottom .\n1203\tOne of the most significant moviegoing pleasures of the year .\n1204\tJose Campanella delivers a loosely autobiographical story brushed with sentimentality but brimming with gentle humor , bittersweet pathos , and lyric moments that linger like snapshots of memory .\n1205\tGenerally , Clockstoppers will fulfill your wildest fantasies about being a different kind of time traveler , while happily killing 94 minutes .\n1206\tThe movie is beautiful to behold and engages one in a sense of epic struggle -- inner and outer -- that 's all too rare in Hollywood 's hastier productions .\n1207\tNeither Parker nor Donovan is a typical romantic lead , but they bring a fresh , quirky charm to the formula .\n1208\tIt 's a much more emotional journey than what Shyamalan has given us in his past two movies , and Gibson , stepping in for Bruce Willis , is the perfect actor to take us on the trip .\n1209\tNot only are the special effects and narrative flow much improved , and Daniel Radcliffe more emotionally assertive this time around as Harry , but the film conjures the magic of author J.K. Rowling 's books .\n1210\tJaglom ... put -LRB- s -RRB- the audience in the privileged position of eavesdropping on his characters\n1211\tBeautifully observed , miraculously unsentimental comedy-drama .\n1212\tA must-see for the David Mamet enthusiast and for anyone who appreciates intelligent , stylish moviemaking .\n1213\tCrackerjack entertainment -- nonstop romance , music , suspense and action .\n1214\tThe acting , costumes , music , cinematography and sound are all astounding given the production 's austere locales .\n1215\tGarcÃ­a Bernal and TalancÃ³n are an immensely appealing couple , and even though their story is predictable , you 'll want things to work out .\n1216\tFar more imaginative and ambitious than the trivial , cash-in features Nickelodeon has made from its other animated TV series .\n1217\tThe very definition of the ` small ' movie , but it is a good stepping stone for director Sprecher .\n1218\tA gripping , searing portrait of a lost soul trying to find her way through life .\n1219\tSuffers from the lack of a compelling or comprehensible narrative .\n1220\tStill , as a visual treat , the film is almost unsurpassed .\n1221\tSo unassuming and pure of heart , you ca n't help but warmly extend your arms and yell ` Safe ! '\n1222\tAn intriguing cinematic omnibus and round-robin that occasionally is more interesting in concept than in execution .\n1223\tSo refreshingly incisive is Grant that for the first time he 'll probably appeal more to guys than to their girlfriends who drag them to this movie for the Hugh factor .\n1224\tAt a time when half the so-called real movies are little more than live-action cartoons , it 's refreshing to see a cartoon that knows what it is , and knows the form 's history .\n1225\tThe magic of the film lies not in the mysterious spring but in the richness of its performances .\n1226\tHoffman notches in the nuances of pain , but his smart , edgy voice and waddling profile -LRB- emphasized here -RRB- accent the humor of Wilson 's plight , and that saves his pathos from drippiness .\n1227\tWhat better message than ` love thyself ' could young women of any size receive ?\n1228\tThe second coming of Harry Potter is a film far superior to its predecessor .\n1229\tA movie that successfully crushes a best selling novel into a timeframe that mandates that you avoid the Godzilla sized soda .\n1230\t84 minutes of rolling musical back beat and supercharged cartoon warfare .\n1231\tIt 's also , clearly , great fun .\n1232\t... takes the beauty of baseball and melds it with a story that could touch anyone regardless of their familiarity with the sport\n1233\tSeldahl 's Barbara is a precise and moving portrait of someone whose world is turned upside down , first by passion and then by illness .\n1234\tA warm but realistic meditation on friendship , family and affection .\n1235\tByler reveals his characters in a way that intrigues and even fascinates us , and he never reduces the situation to simple melodrama .\n1236\tTurns potentially forgettable formula into something strangely diverting .\n1237\tBogdanovich tantalizes by offering a peep show into the lives of the era 's creme de la celluloid .\n1238\tPeople cinema at its finest .\n1239\tThe performances take the movie to a higher level .\n1240\twhat really makes it special is that it pulls us into its world , gives us a hero whose suffering and triumphs we can share , surrounds him with interesting characters and sends us out of the theater feeling we 've shared a great adventure .\n1241\t... a spoof comedy that carries its share of laughs -- sometimes a chuckle , sometimes a guffaw and , to my great pleasure , the occasional belly laugh .\n1242\tManages to transcend the sex , drugs and show-tunes plot into something far richer .\n1243\tDense with characters and contains some thrilling moments .\n1244\tLaPaglia 's ability to convey grief and hope works with Weaver 's sensitive reactions to make this a two-actor master class .\n1245\tReign of Fire looks as if it was made without much thought -- and is best watched that way .\n1246\tAltogether , this is successful as a film , while at the same time being a most touching reconsideration of the familiar masterpiece .\n1247\tWe root for -LRB- Clara and Paul -RRB- , even like them , though perhaps it 's an emotion closer to pity .\n1248\tThe best film about baseball to hit theaters since Field of Dreams .\n1249\tInstead of a hyperbolic beat-charged urban western , it 's an unpretentious , sociologically pointed slice of life .\n1250\tthe film tunes into a grief that could lead a man across centuries .\n1251\tIf The Count of Monte Cristo does n't transform Caviezel into a movie star , then the game is even more rigged than it was two centuries ago .\n1252\t-LRB- D -RRB- oes n't bother being as cloying or preachy as equivalent evangelical Christian movies -- maybe the filmmakers know that the likely audience will already be among the faithful .\n1253\tAs a tolerable diversion , the film suffices ; a Triumph , however , it is not .\n1254\tIf director Michael Dowse only superficially understands his characters , he does n't hold them in contempt .\n1255\tIf your taste runs to ` difficult ' films you absolutely ca n't miss it .\n1256\t-LRB- City -RRB- reminds us how realistically nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of ` Analyze This ' -LRB- 1999 -RRB- and ` Analyze That , ' promised -LRB- or threatened -RRB- for later this year .\n1257\t... a story we have n't seen on the big screen before , and it 's a story that we as Americans , and human beings , should know .\n1258\tLike Leon , it 's frustrating and still oddly likable .\n1259\tAll in all , The Count of Monte Cristo is okay , but it is surely no classic , like the novel upon which it is based .\n1260\tIf you can stomach the rough content , it 's worth checking out for the performances alone .\n1261\tLooking aristocratic , luminous yet careworn in Jane Hamilton 's exemplary costumes , Rampling gives a performance that could not be improved upon . '\n1262\t... Mafia , rap stars and hood rats butt their ugly heads in a regurgitation of cinematic violence that gives brutal birth to an unlikely , but likable , hero . '\n1263\tOn this tricky topic , Tadpole is very much a step in the right direction , with its blend of frankness , civility and compassion .\n1264\tFun , flip and terribly hip bit of cinematic entertainment .\n1265\tMontias ... pumps a lot of energy into his nicely nuanced narrative and surrounds himself with a cast of quirky -- but not stereotyped -- street characters .\n1266\tFalls neatly into the category of Good Stupid Fun .\n1267\tThe film 's performances are thrilling .\n1268\tEven in its most tedious scenes , Russian Ark is mesmerizing .\n1269\tThe continued good chemistry between Carmen and Juni is what keeps this slightly disappointing sequel going , with enough amusing banter -- blessedly curse-free -- to keep both kids and parents entertained .\n1270\tReggio 's continual visual barrage is absorbing as well as thought-provoking .\n1271\tUnfortunately , it appears that -LRB- Jackie -RRB- Chan 's US influence is starting to show in his Hong Kong films .\n1272\tIt all adds up to good fun .\n1273\tA big , gorgeous , sprawling swashbuckler that delivers its diversions in grand , uncomplicated fashion .\n1274\tThe wanton slipperiness of \\* Corpus and its amiable jerking and reshaping of physical time and space would make it a great piece to watch with kids and use to introduce video as art .\n1275\tA stunning and overwhelmingly cogent case for Kissinger as a calculating war criminal .\n1276\tSade is an engaging look at the controversial eponymous and fiercely atheistic hero .\n1277\ta quiet , pure , elliptical film\n1278\tKinnear does n't aim for our sympathy , but rather delivers a performance of striking skill and depth .\n1279\tThe subtle strength of `` Elling '' is that it never loses touch with the reality of the grim situation .\n1280\tA study in shades of gray , offering itself up in subtle plot maneuvers ...\n1281\tThe format gets used best ... to capture the dizzying heights achieved by motocross and BMX riders , whose balletic hotdogging occasionally ends in bone-crushing screwups .\n1282\tHas a lot of the virtues of Eastwood at his best .\n1283\tChilling but uncommercial look into the mind of Jeffrey Dahmer , serial killer .\n1284\tThough it 's become almost redundant to say so , major kudos go to Leigh for actually casting people who look working-class .\n1285\tIt deserves to be seen by anyone with even a passing interest in the events shaping the world beyond their own horizons .\n1286\tA movie that reminds us of just how exciting and satisfying the fantasy cinema can be when it 's approached with imagination and flair .\n1287\tThanks to Scott 's charismatic Roger and Eisenberg 's sweet nephew , Roger Dodger is one of the most compelling variations on In the Company of Men .\n1288\tNine Queens is not only than a frighteningly capable debut and genre piece , but also a snapshot of a dangerous political situation on the verge of coming to a head .\n1289\tIt 's the chemistry between the women and the droll scene-stealing wit and wolfish pessimism of Anna Chancellor that makes this `` Two Weddings and a Funeral '' fun .\n1290\tWill amuse and provoke adventurous adults in specialty venues .\n1291\tYou do n't have to know about music to appreciate the film 's easygoing blend of comedy and romance .\n1292\tA film about a young man finding God that is accessible and touching to the marrow .\n1293\tFor the first time in years , De Niro digs deep emotionally , perhaps because he 's been stirred by the powerful work of his co-stars .\n1294\tThe film 's snags and stumblings are more than compensated for by its wryly subversive tone .\n1295\tInside the film 's conflict-powered plot there is a decent moral trying to get out , but it 's not that , it 's the tension that keeps you in your seat .\n1296\tAffleck and Jackson are good sparring partners .\n1297\tThe old-world - meets-new mesh is incarnated in the movie 's soundtrack , a joyful effusion of disco Bollywood that , by the end of Monsoon Wedding , sent my spirit soaring out of the theater .\n1298\tAn effectively creepy , fear-inducing -LRB- not fear-reducing -RRB- film from Japanese director Hideo Nakata , who takes the superstitious curse on chain letters and actually applies it .\n1299\tHaving had the good sense to cast actors who are , generally speaking , adored by the movie-going public , Khouri then gets terrific performances from them all .\n1300\tA subtle and well-crafted -LRB- for the most part -RRB- chiller .\n1301\tWarm Water Under a Red Bridge is a quirky and poignant Japanese film that explores the fascinating connections between women , water , nature , and sexuality .\n1302\tAlthough laced with humor and a few fanciful touches , the film is a refreshingly serious look at young women .\n1303\tThe best revenge may just be living well because this film , unlike other Dumas adaptations , is far more likened to a treasure than a lengthy jail sentence .\n1304\tA delectable and intriguing thriller filled with surprises , Read My Lips is an original .\n1305\tThis is a story of two misfits who do n't stand a chance alone , but together they are magnificent .\n1306\tHighbrow self-appointed guardians of culture need not apply , but those who loved Cool as Ice have at last found a worthy follow-up .\n1307\tOne of creepiest , scariest movies to come along in a long , long time , easily rivaling Blair Witch or The Others .\n1308\tMaud and Roland 's search for an unknowable past makes for a haunting literary detective story , but LaBute pulls off a neater trick in Possession : He makes language sexy .\n1309\tPacino is brilliant as the sleep-deprived Dormer , his increasing weariness as much existential as it is physical .\n1310\tRare Birds has more than enough charm to make it memorable .\n1311\tManages to be sweet and wickedly satisfying at the same time .\n1312\tThis Nickleby thing might have more homosexual undertones than an Eddie Murphy film .\n1313\tAnd just when you think it ca n't get any more gay , in pops Nathan Lane .\n1314\tNo sophomore slump for director Sam Mendes , who segues from Oscar winner to Oscar-winning potential with a smooth sleight of hand .\n1315\tThe movie is n't just hilarious : It 's witty and inventive , too , and in hindsight , it is n't even all that dumb .\n1316\tOld-form moviemaking at its best .\n1317\tAhhhh ... revenge is sweet !\n1318\tYakusho and Shimizu ... create engaging characterizations in Imamura 's lively and enjoyable cultural mix .\n1319\tYou will emerge with a clearer view of how the gears of justice grind on and the death report comes to share airtime alongside the farm report .\n1320\tRuzowitzky has taken this mothball-y stuff and made a rather sturdy , old-fashioned entertainment out of it .\n1321\tIn spite of Good Housekeeping 's unsavory characters and WWF mentality , this white trash War of the Roses is a surprisingly engaging film .\n1322\tCollateral Damage finally delivers the goods for Schwarzenegger fans .\n1323\tThere has always been something likable about the Marquis de Sade .\n1324\tAs a first-time director , Paxton has tapped something in himself as an actor that provides Frailty with its dark soul .\n1325\tFor the most part , director Anne-Sophie Birot 's first feature is a sensitive , extraordinarily well-acted drama .\n1326\tBy the time we learn that Andrew 's Turnabout Is Fair Play is every bit as awful as Borchardt 's Coven , we can enjoy it anyway .\n1327\tThis riveting World War II moral suspense story deals with the shadow side of American culture : racial prejudice in its ugly and diverse forms .\n1328\tA tender , heartfelt family drama .\n1329\tA difficult , absorbing film that manages to convey more substance despite its repetitions and inconsistencies than do most films than are far more pointed and clear .\n1330\tFor the most part , it 's a work of incendiary genius , steering clear of knee-jerk reactions and quick solutions .\n1331\tIt has the charm of the original American road movies , feasting on the gorgeous , ramshackle landscape of the filmmaker 's motherland .\n1332\t-LRB- Chaiken 's -RRB- talent lies in an evocative , accurate observation of a distinctive milieu and in the lively , convincing dialogue she creates for her characters .\n1333\tIn all , this is a watchable movie that 's not quite the memorable experience it might have been .\n1334\tHuppert 's superbly controlled display of murderous vulnerability ensures that malice has a very human face .\n1335\tMy thoughts were focused on the characters .\n1336\tThat is a compliment to Kuras and Miller .\n1337\tIf I had been thinking about the visual medium , they would have been doing something wrong .\n1338\tOne of the more intelligent children 's movies to hit theaters this year .\n1339\tRemember the kind of movie we were hoping `` Ecks vs. Sever '' or `` xXx '' was going to be ?\n1340\tThis is it .\n1341\tNot for the prurient or squeamish , it 's a daring if overlong examination of an idolized culture , self-loathing and sexual politics .\n1342\tA cartoon that 's truly cinematic in scope , and a story that 's compelling and heartfelt -- even if the heart belongs to a big , four-legged herbivore .\n1343\tThe film 's almost unbearable portrait of sadness and grief transcends its specific story to speak to the ways in which need , history and presumption tangle , and sometimes destroy , blood ties .\n1344\tTravels a fascinating arc from hope and euphoria to reality and disillusionment .\n1345\tThere 's something auspicious , and daring , too , about the artistic instinct that pushes a majority-oriented director like Steven Spielberg to follow A.I. with this challenging report so liable to unnerve the majority .\n1346\tFor anyone unfamiliar with pentacostal practices in general and theatrical phenomenon of Hell Houses in particular , it 's an eye-opener .\n1347\tIt seems like I have been waiting my whole life for this movie and now I ca n't wait for the sequel .\n1348\tIt 's a bit disappointing that it only manages to be decent instead of dead brilliant .\n1349\tAn operatic , sprawling picture that 's entertainingly acted , magnificently shot and gripping enough to sustain most of its 170-minute length .\n1350\tThe far future may be awesome to consider , but from period detail to matters of the heart , this film is most transporting when it stays put in the past .\n1351\tIt inspires a continuing and deeply satisfying awareness of the best movies as monumental ` picture shows . '\n1352\tAwesome creatures , breathtaking scenery , and epic battle scenes add up to another ` spectacular spectacle . '\n1353\tBy candidly detailing the politics involved in the creation of an extraordinary piece of music , -LRB- Jones -RRB- calls our attention to the inherent conflict between commerce and creativity .\n1354\tIt 's unnerving to see Recoing 's bizzarre reaction to his unemployment .\n1355\tGood film , but very glum .\n1356\tMuch as we might be interested in gratuitous sexualization , Haneke has a different objective in mind -- namely the implications of our craving for fake stimulation .\n1357\tDazzling in its complexity , disturbing for its extraordinary themes , The Piano Teacher is a film that defies categorisation .\n1358\tIt haunts , horrifies , startles and fascinates ; it is impossible to look away .\n1359\tAh yes , and then there 's the music ...\n1360\tIt has charm to spare , and unlike many romantic comedies , it does not alienate either gender in the audience .\n1361\tAlthough Jackson is doubtless reserving the darkest hours for The Return of the King , we long for a greater sense of urgency in the here and now of The Two Towers .\n1362\tIt is great summer fun to watch Arnold and his buddy Gerald bounce off a quirky cast of characters .\n1363\tBleakly funny , its characters all the more touching for refusing to pity or memorialize themselves .\n1364\tIt will not appeal to the impatient , but those who like long books and movies will admire the way it accumulates power and depth .\n1365\tThis flick is about as cool and crowd-pleasing as a documentary can get .\n1366\t`` The Ring '' is pretty much an English-language copy of the film that inspired it , and it carries the same strengths and flaws .\n1367\tThe Wild Thornberrys Movie is a jolly surprise .\n1368\tGriffiths proves she 's that rare luminary who continually raises the standard of her profession .\n1369\tPrancing his way through the tailor-made part of a male hooker approaching the end of his vitality , Jagger obviously relishes every self-mocking moment .\n1370\tOffers much to enjoy ... and a lot to mull over in terms of love , loyalty and the nature of staying friends .\n1371\tAn important movie , a reminder of the power of film to move us and to make us examine our values .\n1372\tIs this love or is it masochism ?\n1373\tBinoche makes it interesting trying to find out .\n1374\tThe mesmerizing performances of the leads keep the film grounded and keep the audience riveted .\n1375\tWorth watching for Dong Jie 's performance -- and for the way it documents a culture in the throes of rapid change .\n1376\tTwo hours fly by -- opera 's a pleasure when you do n't have to endure intermissions -- and even a novice to the form comes away exhilarated .\n1377\tIt 's one heck of a character study -- not of Hearst or Davies but of the unique relationship between them .\n1378\tCandid Camera on methamphetamines .\n1379\tA subject like this should inspire reaction in its audience ; The Pianist does not .\n1380\tEquilibrium is what George Orwell might have imagined had today 's mood-altering drug therapy been envisioned by chemists in 1949 .\n1381\tCreepy , authentic and dark .\n1382\tThis disturbing bio-pic is hard to forget .\n1383\tMartin and Barbara are complex characters -- sometimes tender , sometimes angry -- and the delicate performances by Sven Wollter and Viveka Seldahl make their hopes and frustrations vivid .\n1384\tA twisty , moody slice of Southern Gothic ...\n1385\tIt 's so good that you can practically see the Hollywood ` suits ' trying to put together the cast and filmmaking team for the all-too - inevitable American remake .\n1386\tThe weight of the piece , the unerring professionalism of the chilly production , and the fascination embedded in the lurid topic prove recommendation enough .\n1387\tAn absurdist comedy about alienation , separation and loss .\n1388\t` They ' begins and ends with scenes so terrifying I 'm still stunned .\n1389\tAnd I 've decided to leave a light on every night from now on .\n1390\tThis tenth feature is a big deal , indeed -- at least the third-best , and maybe even a notch above the previous runner-up , Nicholas Meyer 's Star Trek VI : The Undiscovered Country .\n1391\t... with `` The Bourne Identity '' we return to the more traditional action genre .\n1392\tBeneath Clouds is a succinct low-budget film whose compelling characters and intelligent script are exactly what was missing from Rabbit-Proof Fence .\n1393\tThe film is a contrivance , as artificial as the video games Japanese teens play in a nightclub sequence , but it 's an enjoyable one .\n1394\tHolm ... embodies the character with an effortlessly regal charisma .\n1395\tIt is amusing , and that 's all it needs to be .\n1396\tAmong the year 's most intriguing explorations of alientation .\n1397\tA full world has been presented onscreen , not some series of carefully structured plot points building to a pat resolution .\n1398\tSeldom has a movie so closely matched the spirit of a man and his work .\n1399\tAudrey Tatou has a knack for picking roles that magnify her outrageous charm , and in this literate French comedy , she 's as morning-glory exuberant as she was in AmÃ©lie .\n1400\tThe movie has an infectious exuberance that will engage anyone with a passing interest in the skate\\/surf culture , the L.A. beach scene and the imaginative -LRB- and sometimes illegal -RRB- ways kids can make a playground out of the refuse of adults .\n1401\tEven if you do n't think -LRB- Kissinger 's -RRB- any more guilty of criminal activity than most contemporary statesmen , he 'd sure make a courtroom trial great fun to watch .\n1402\tThe story and structure are well-honed .\n1403\tFresnadillo 's dark and jolting images have a way of plying into your subconscious like the nightmare you had a week ago that wo n't go away .\n1404\tIt 's made with deftly unsettling genre flair .\n1405\tIt just may inspire a few younger moviegoers to read Stevenson 's book , which is a treasure in and of itself .\n1406\tFunny but perilously slight .\n1407\tOverall very good for what it 's trying to do .\n1408\tForgettable horror -- more gory than psychological -- with a highly satisfying quotient of Friday-night excitement and Milla power .\n1409\tRamsay , as in Ratcatcher , remains a filmmaker with an acid viewpoint and a real gift for teasing chilly poetry out of lives and settings that might otherwise seem drab and sordid .\n1410\tIt may seem long at 110 minutes if you 're not a fan , because it includes segments of 12 songs at a reunion concert .\n1411\tA lean , deftly shot , well-acted , weirdly retro thriller that recalls a raft of '60s and '70s European-set spy pictures .\n1412\tIt proves quite compelling as an intense , brooding character study .\n1413\tThe Son 's Room is a triumph of gentility that earns its moments of pathos .\n1414\tMorton uses her face and her body language to bring us Morvern 's soul , even though the character is almost completely deadpan .\n1415\tThe film may appear naked in its narrative form ... but it goes deeper than that , to fundamental choices that include the complexity of the Catholic doctrine\n1416\tA superbly acted and funny\\/gritty fable of the humanizing of one woman at the hands of the unseen forces of fate .\n1417\tOne of the smartest takes on singles culture I 've seen in a long time .\n1418\tThere is a fabric of complex ideas here , and feelings that profoundly deepen them .\n1419\tCQ 's reflection of artists and the love of cinema-and-self suggests nothing less than a new voice that deserves to be considered as a possible successor to the best European directors .\n1420\tThe emotions are raw and will strike a nerve with anyone who 's ever had family trauma .\n1421\tHoly mad maniac in a mask , Splat-Man !\n1422\tGood old-fashioned slash-and-hack is back !\n1423\tAs unseemly as its title suggests .\n1424\tThe French are rather good at this kind of thing , unlike the Americans , who have a passion for Musketeers , only to spoof them .\n1425\tThe fly-on-the-wall method used to document rural French school life is a refreshing departure from the now more prevalent technique of the docu-makers being a visible part of their work .\n1426\tIt 's an offbeat treat that pokes fun at the democratic exercise while also examining its significance for those who take part .\n1427\tAllows us to hope that Nolan is poised to embark a major career as a commercial yet inventive filmmaker .\n1428\tManeuvers skillfully through the plot 's hot brine -- until it 's undone by the sogginess of its contemporary characters , and actors .\n1429\tIt has the ability to offend and put off everyone , but it holds you with its outrageousness .\n1430\tAnchored by Friel and Williams 's exceptional performances , the film 's power lies in its complexity .\n1431\tNothing is black and white .\n1432\tIt 's a charming and often affecting journey .\n1433\tNo screen fantasy-adventure in recent memory has the showmanship of Clones ' last 45 minutes .\n1434\tA poignant and compelling story about relationships , Food of Love takes us on a bumpy but satisfying journey of the heart .\n1435\tThe Chateau cleverly probes the cross-cultural differences between Gauls and Yanks .\n1436\tNot since Tom Cruise in Risky Business has an actor made such a strong impression in his underwear .\n1437\tAside from minor tinkering , this is the same movie you probably loved in 1994 , except that it looks even better .\n1438\tUses high comedy to evoke surprising poignance .\n1439\tIt confirms Fincher 's status as a film maker who artfully bends technical know-how to the service of psychological insight .\n1440\tVera 's three actors -- MollÃ  , Gil and Bardem -- excel in insightful , empathetic performances .\n1441\tA marvel like none you 've seen .\n1442\tWith tightly organized efficiency , numerous flashbacks and a constant edge of tension , Miller 's film is one of 2002 's involvingly adult surprises .\n1443\tMr. Tsai is a very original artist in his medium , and What Time Is It There ?\n1444\tshould be seen at the very least for its spasms of absurdist humor .\n1445\tWriter\\/director Mark Romanek spotlights the underlying caste system in America .\n1446\tIt 's a scathing portrayal .\n1447\tThis is a good script , good dialogue , funny even for adults .\n1448\tThe characters are interesting and often very creatively constructed from figure to backstory .\n1449\tThe film will play equally well on both the standard and giant screens .\n1450\tMoody , heartbreaking , and filmed in a natural , unforced style that makes its characters seem entirely convincing even when its script is not .\n1451\tNot a film to rival To Live , but a fine little amuse-bouche to keep your appetite whetted .\n1452\tTrue tale of courage -- and complicity -- at Auschwitz is a harrowing drama that tries to tell of the unspeakable .\n1453\tGives you the steady pulse of life in a beautiful city viewed through the eyes of a character who , in spite of tragic loss and increasing decrepitude , knows in his bones that he is one of the luckiest men alive .\n1454\tMacDowell , whose wifty Southern charm has anchored lighter affairs ... brings an absolutely riveting conviction to her role .\n1455\tWhat Time Is It There ?\n1456\tis not easy .\n1457\tIt haunts you , you ca n't forget it , you admire its conception and are able to resolve some of the confusions you had while watching it .\n1458\tif you are an actor who can relate to the search for inner peace by dramatically depicting the lives of others onstage , then Esther 's story is a compelling quest for truth .\n1459\tAlthough the level of the comedy declines as the movie proceeds , there 's no denying the fun of watching De Niro and Crystal having fun .\n1460\tClaude Chabrol has here a thriller without thrills , but that 's okay .\n1461\tFor movie lovers as well as opera lovers , Tosca is a real treat .\n1462\tUnflinchingly bleak and desperate\n1463\tMoretti 's compelling anatomy of grief and the difficult process of adapting to loss .\n1464\tChallenging , intermittently engrossing and unflaggingly creative .\n1465\tBut it 's too long and too convoluted and it ends in a muddle .\n1466\tThe vivid lead performances sustain interest and empathy , but the journey is far more interesting than the final destination .\n1467\tA painfully funny ode to bad behavior .\n1468\t` Easily my choice for one of the year 's best films . '\n1469\tCharles ' entertaining film chronicles Seinfeld 's return to stand-up comedy after the wrap of his legendary sitcom , alongside wannabe comic Adams ' attempts to get his shot at the big time .\n1470\tThat dogged good will of the parents and ` vain ' Jia 's defoliation of ego , make the film touching despite some doldrums .\n1471\tThe movie is for fans who ca n't stop loving anime , and the fanatical excess built into it .\n1472\tThe volatile dynamics of female friendship is the subject of this unhurried , low-key film that is so off-Hollywood that it seems positively French in its rhythms and resonance .\n1473\tA densely constructed , highly referential film , and an audacious return to form that can comfortably sit among Jean-Luc Godard 's finest work .\n1474\tMichael Gerbosi 's script is economically packed with telling scenes .\n1475\tA strangely compelling and brilliantly acted psychological drama .\n1476\tCandid and comfortable ; a film that deftly balances action and reflection as it lets you grasp and feel the passion others have for their work .\n1477\tOpen-minded kids -- kids who read , kids who dream -- will be comforted by the way it deals with big issues like death and destiny .\n1478\tBennett 's naturalistic performance speaks volumes more truth than any ` reality ' show , and anybody contemplating their own drastic life changes should watch Some Body first .\n1479\t... a good , if not entirely fresh , look at war .\n1480\tThe film is powerful , accessible and funny .\n1481\tYou wo n't miss its messages , but you 'll be entertained as well .\n1482\t`` Frailty '' starts out like a typical Bible killer story , but it turns out to be significantly different -LRB- and better -RRB- than most films with this theme .\n1483\tIf you dig on David Mamet 's mind tricks ... rent this movie and enjoy !\n1484\tThe primitive force of this film seems to bubble up from the vast collective memory of the combatants .\n1485\tIt 's like watching a nightmare made flesh .\n1486\tIt is the sheer , selfish , wound-licking , bar-scrapping doggedness of Leon 's struggle to face and transmute his demons that makes the movie a spirited and touching occasion , despite its patchy construction .\n1487\tA gorgeous , high-spirited musical from India that exquisitely blends music , dance , song , and high drama .\n1488\tIt 's hard to imagine Alan Arkin being better than he is in this performance .\n1489\tFor those who pride themselves on sophisticated , discerning taste , this might not seem like the proper cup of tea , however it is almost guaranteed that even the stuffiest cinema goers will laugh their \\*\\*\\* off for an hour-and-a-half .\n1490\tDespite the 2-D animation , The Wild Thornberrys Movie makes for a surprisingly cinematic experience .\n1491\t... a fun little timewaster , helped especially by the cool presence of Jean Reno .\n1492\t-LRB- Majidi -RRB- makes us think twice about immigrants we see around us every day .\n1493\tThough only 60 minutes long , the film is packed with information and impressions .\n1494\tI have no way of knowing exactly how much is exaggeration , but I 've got a creepy feeling that the film is closer to the mark than I want to believe .\n1495\tImmersing us in the endlessly inventive , fiercely competitive world of hip-hop DJs , the project is sensational and revelatory , even if scratching makes you itch .\n1496\tFurther proof that the epicenter of cool , beautiful , thought-provoking foreign cinema is smack-dab in the middle of Dubya 's Axis of Evil .\n1497\tThere 's really only one good idea in this movie , but the director runs with it and presents it with an unforgettable visual panache .\n1498\tA simple , but gritty and well-acted ensemble drama that encompasses a potent metaphor for a country still dealing with its fascist past .\n1499\tLovely and poignant .\n1500\tPuts a human face on a land most Westerners are unfamiliar with .\n1501\tI ca n't say that I liked Homeboy ; it 'd be more accurate to say that I found it intriguing , bizarre , Dogma-like in spots - and quite truthful , in its way .\n1502\tDisplaying about equal amounts of naivetÃ© , passion and talent , Beneath Clouds establishes Sen as a filmmaker of considerable potential .\n1503\tThe vitality of the actors keeps the intensity of the film high , even as the strafings blend together .\n1504\tNot since Japanese filmmaker Akira Kurosawa 's Ran have the savagery of combat and the specter of death been visualized with such operatic grandeur .\n1505\tWe learn a lot about dying coral and see a lot of life on the reef .\n1506\tIf the first Men in Black was money , the second is small change .\n1507\tBut it still jingles in the pocket .\n1508\tIt 's fun lite .\n1509\tPassable entertainment , but it 's the kind of motion picture that wo n't make much of a splash when it 's released , and will not be remembered long afterwards .\n1510\tI just loved every minute of this film .\n1511\tThis is a winning ensemble comedy that shows Canadians can put gentle laughs and equally gentle sentiments on the button , just as easily as their counterparts anywhere else in the world .\n1512\tJust as moving , uplifting and funny as ever .\n1513\tMy Wife Is an Actress is an utterly charming French comedy that feels so American in sensibility and style it 's virtually its own Hollywood remake .\n1514\tIt will grip even viewers who are n't interested in rap , as it cuts to the heart of American society in an unnerving way .\n1515\tA muckraking job , the cinematic equivalent of a legal indictment , and a fairly effective one at that .\n1516\tA tender , witty , captivating film about friendship , love , memory , trust and loyalty .\n1517\tBelongs to Daniel Day-Lewis as much as it belongs to Martin Scorsese ; it 's a memorable performance in a big , brassy , disturbing , unusual and highly successful film .\n1518\tAn exhilarating futuristic thriller-noir , Minority Report twists the best of technology around a gripping story , delivering a riveting , pulse intensifying escapist adventure of the first order\n1519\tA psychological thriller with a genuinely spooky premise and an above-average cast , actor Bill Paxton 's directing debut is a creepy slice of gothic rural Americana .\n1520\tWhile locals will get a kick out of spotting Cleveland sites , the rest of the world will enjoy a fast-paced comedy with quirks that might make the award-winning Coen brothers envious .\n1521\tPumpkin takes an admirable look at the hypocrisy of political correctness , but it does so with such an uneven tone that you never know when humor ends and tragedy begins .\n1522\tIf you 're hard up for raunchy college humor , this is your ticket right here .\n1523\tFew films capture so perfectly the hopes and dreams of little boys on baseball fields as well as the grown men who sit in the stands .\n1524\tCorny , schmaltzy and predictable , but still manages to be kind of heartwarming , nonetheless .\n1525\tIt 's the perfect kind of film to see when you do n't want to use your brain .\n1526\tAt all .\n1527\tWhile it regards 1967 as the key turning point of the 20th century , and returns again and again to images of dissidents in the streets , it 's alarmingly current .\n1528\tFeature debuter D.J. Caruso directs a crack ensemble cast , bringing screenwriter Tony Gayton 's narcotics noir to life .\n1529\tEvery dance becomes about seduction , where backstabbing and betrayals are celebrated , and sex is currency .\n1530\tHarris commands the screen , using his frailty to suggest the ravages of a life of corruption and ruthlessness .\n1531\tStephen Rea , Aidan Quinn , and Alan Bates play Desmond 's legal eagles , and when joined by Brosnan , the sight of this grandiloquent quartet lolling in pretty Irish settings is a pleasant enough thing , ` tis .\n1532\tDirector of photography Benoit Delhomme shot the movie in delicious colors , and the costumes and sets are grand .\n1533\tThe movie 's relatively simple plot and uncomplicated morality play well with the affable cast .\n1534\tThe film is quiet , threatening and unforgettable .\n1535\tThis illuminating documentary transcends our preconceived vision of the Holy Land and its inhabitants , revealing the human complexities beneath .\n1536\tdeliriously funny , fast and loose , accessible to the uninitiated , and full of surprises\n1537\tTrademark American triteness and simplicity are tossed out the window with the intelligent French drama that deftly explores the difficult relationship between a father and son .\n1538\tOne from the heart .\n1539\tMore concerned with Sade 's ideas than with his actions .\n1540\tThe movie achieves as great an impact by keeping these thoughts hidden as ... -LRB- Quills -RRB- did by showing them .\n1541\tAn entertaining , colorful , action-filled crime story with an intimate heart .\n1542\tWhile Undisputed is n't exactly a high , it is a gripping , tidy little movie that takes Mr. Hill higher than he 's been in a while .\n1543\tThe most compelling Wiseman epic of recent years .\n1544\tThe socio-histo-political treatise is told in earnest strides ... -LRB- and -RRB- personal illusion is deconstructed with poignancy .\n1545\tIt 's great escapist fun that recreates a place and time that will never happen again .\n1546\tGood car chases , great fight scenes , and a distinctive blend of European , American and Asian influences .\n1547\tLiotta put on 30 pounds for the role , and has completely transformed himself from his smooth , Goodfellas image .\n1548\tA woman 's pic directed with resonance by Ilya Chaiken .\n1549\t-LRB- Grant 's -RRB- bumbling magic takes over the film , and it turns out to be another winning star vehicle .\n1550\t... Brian De Palma is utterly mad : cinema mad , set-piece mad , style mad .\n1551\tIt 's a beautiful madness .\n1552\tGenerally provides its target audience of youngsters enough stimulating eye and ear candy to make its moral medicine go down .\n1553\tThere are some wonderfully fresh moments that smooth the moral stiffness with human kindness and hopefulness .\n1554\tA grimly competent and stolid and earnest military courtroom drama .\n1555\tEscaping the studio , Piccoli is warmly affecting and so is this adroitly minimalist movie .\n1556\tVery psychoanalytical -- provocatively so -- and also refreshingly literary .\n1557\tA gorgeous , witty , seductive movie .\n1558\tThe special effects and many scenes of weightlessness look as good or better than in the original , while the Oscar-winning sound and James Horner 's rousing score make good use of the hefty audio system .\n1559\tOn the heels of The Ring comes a similarly morose and humorless horror movie that , although flawed , is to be commended for its straight-ahead approach to creepiness .\n1560\tWith Rabbit-Proof Fence , Noyce has tailored an epic tale into a lean , economical movie .\n1561\t-LRB- A -RRB- n utterly charming and hilarious film that reminded me of the best of the Disney comedies from the 60s .\n1562\tPreaches to two completely different choirs at the same time , which is a pretty amazing accomplishment .\n1563\tThanks to Haynes ' absolute control of the film 's mood , and buoyed by three terrific performances , Far From Heaven actually pulls off this stylistic juggling act .\n1564\tBirthday Girl is an amusing joy ride , with some surprisingly violent moments .\n1565\tMore romantic , more emotional and ultimately more satisfying than the teary-eyed original .\n1566\tAn appealingly juvenile trifle that delivers its share of laughs and smiles .\n1567\tWriter-director 's Mehta 's effort has tons of charm and the whimsy is in the mixture , the intoxicating masala , of cultures and film genres .\n1568\tThe draw -LRB- for `` Big Bad Love '' -RRB- is a solid performance by Arliss Howard .\n1569\tIt gets onto the screen just about as much of the novella as one could reasonably expect , and is engrossing and moving in its own right .\n1570\tThe terrific and bewilderingly underrated Campbell Scott gives a star performance that is nothing short of mesmerizing .\n1571\tCool ?\n1572\tThis movie is a snow emergency .\n1573\tLike Mike is n't interested in recycling old cliches .\n1574\tIt wants to tweak them with a taste of tangy new humor .\n1575\tSmith is careful not to make fun of these curious owners of architectural oddities .\n1576\tInstead , he shows them the respect they are due .\n1577\tA mess when it comes to the characters and writing ... but works its way underneath the skin like few movies have in recent memory .\n1578\tDrops you into a dizzying , volatile , pressure-cooker of a situation that quickly snowballs out of control , while focusing on the what much more than the why .\n1579\tZhang ... has done an amazing job of getting realistic performances from his mainly nonprofessional cast .\n1580\tA solid examination of the male midlife crisis .\n1581\tIf you 're in the mood for a Bollywood film , here 's one for you .\n1582\tAs the two leads , Lathan and Diggs are charming and have chemistry both as friends and lovers .\n1583\tA beguiling , slow-moving parable about the collision of past and present on a remote seacoast in Iran .\n1584\tMy Big Fat Greek Wedding uses stereotypes in a delightful blend of sweet romance and lovingly dished out humor .\n1585\tKept aloft largely by a comically adept ensemble .\n1586\tThe sort of film that makes me miss Hitchcock , but also feel optimistic that there 's hope for popular cinema yet .\n1587\tFirst-time writer-director Serry shows a remarkable gift for storytelling with this moving , effective little film .\n1588\tIt cuts to the core of what it actually means to face your fears , to be a girl in a world of boys , to be a boy truly in love with a girl , and to ride the big metaphorical wave that is life -- wherever it takes you .\n1589\tAtom Egoyan has conjured up a multilayered work that tackles any number of fascinating issues\n1590\tessentially an exceptionally well-written , well-edited , well-directed , well-acted , bald rip-off of Aliens .\n1591\t` De Niro ... is a veritable source of sincere passion that this Hollywood contrivance orbits around . '\n1592\tThe whole is quite entertaining , but despite its virtues , there is an unsettled feeling to the film .\n1593\tWhile its careful pace and seemingly opaque story may not satisfy every moviegoer 's appetite , the film 's final scene is soaringly , transparently moving .\n1594\tHardly a masterpiece , but it introduces viewers to a good charitable enterprise and some interesting real people .\n1595\tBased on a devilishly witty script by Heather McGowan and Niels Mueller , the film gets great laughs , but never at the expense of its characters\n1596\tIt 's somewhat clumsy and too lethargically paced -- but its story about a mysterious creature with psychic abilities offers a solid build-up , a terrific climax , and some nice chills along the way .\n1597\tIf you 've ever wondered what an ending without the input of studio executives or test audiences would look like , here it is .\n1598\tExciting and direct , with ghost imagery that shows just enough to keep us on our toes .\n1599\tWhether writer-director Anne Fontaine 's film is a ghost story , an account of a nervous breakdown , a trip down memory lane , all three or none of the above , it is as seductive as it is haunting .\n1600\tWhat the film lacks in general focus it makes up for in compassion , as Corcuera manages to find the seeds of hope in the form of collective action .\n1601\tIf you enjoy more thoughtful comedies with interesting conflicted characters ; this one is for you .\n1602\tThe quality of the art combined with the humor and intelligence of the script allow the filmmakers to present the biblical message of forgiveness without it ever becoming preachy or syrupy .\n1603\tThis film seems thirsty for reflection , itself taking on adolescent qualities .\n1604\tAnother one of those estrogen overdose movies like `` Divine Secrets of the Ya Ya Sisterhood , '' except that the writing , acting and character development are a lot better .\n1605\tA breezy romantic comedy that has the punch of a good sitcom , while offering exceptionally well-detailed characters .\n1606\tA romantic comedy enriched by a sharp eye for manners and mores .\n1607\tViewers of `` The Ring '' are more likely to remember the haunting images than the plot holes .\n1608\tA delightful coming-of-age story .\n1609\tOne of those energetic surprises , an original that pleases almost everyone who sees it .\n1610\tAn exquisitely crafted and acted tale .\n1611\tA taut psychological thriller that does n't waste a moment of its two-hour running time .\n1612\tJones ... does offer a brutal form of charisma .\n1613\tDespite its title , Punch-Drunk Love is never heavy-handed .\n1614\tThe jabs it employs are short , carefully placed and dead-center .\n1615\tThere 's a wickedly subversive bent to the best parts of Birthday Girl .\n1616\tLikely to expertly drum up repressed teenage memories in any viewer .\n1617\tBlanchett 's performance confirms her power once again .\n1618\t... a magnificent drama well worth tracking down .\n1619\tA good piece of work more often than not .\n1620\tThe movie understands like few others how the depth and breadth of emotional intimacy give the physical act all of its meaning and most of its pleasure .\n1621\tWhat distinguishes Time of Favor from countless other thrillers is its underlying concern with the consequences of words and with the complicated emotions fueling terrorist acts .\n1622\tSmart , provocative and blisteringly funny .\n1623\tNothing is sacred in this gut-buster .\n1624\tThe movie occasionally threatens to become didactic , but it 's too grounded in the reality of its characters to go over the edge .\n1625\tA touch of humor or an unexpected plot twist always pulls it back .\n1626\tFilmmakers who can deftly change moods are treasures and even marvels .\n1627\tSo , too , is this comedy about mild culture clashing in today 's New Delhi .\n1628\tIf Steven Soderbergh 's ` Solaris ' is a failure it is a glorious failure .\n1629\t`` Mostly Martha '' is a bright , light modern day family parable that wears its heart on its sleeve for all to see .\n1630\tIt 's a scattershot affair , but when it hits its mark it 's brilliant .\n1631\tA pleasant enough romance with intellectual underpinnings , the kind of movie that entertains even as it turns maddeningly predictable .\n1632\tFeaturing a dangerously seductive performance from the great Daniel Auteuil , `` Sade '' covers the same period as Kaufmann 's `` Quills '' with more unsettlingly realistic results .\n1633\tA spellbinding African film about the modern condition of rootlessness , a state experienced by millions around the globe .\n1634\tIt 's a work by an artist so in control of both his medium and his message that he can improvise like a jazzman .\n1635\tA moody , multi-dimensional love story and sci-fi mystery , Solaris is a thought-provoking , haunting film that allows the seeds of the imagination to germinate .\n1636\tA very well-made , funny and entertaining picture .\n1637\tA giggle-inducing comedy with snappy dialogue and winning performances by an unlikely team of Oscar-winners : Susan Sarandon and Goldie Hawn .\n1638\tIts maker , Steven Spielberg , has n't had so much fun in two decades , since he was schlepping Indiana Jones around the globe in search of a giant misplaced ashtray .\n1639\tOscar Wilde 's masterpiece , The Importance of Being Earnest , may be the best play of the 19th century .\n1640\tIt 's so good that its relentless , polished wit can withstand not only inept school productions , but even Oliver Parker 's movie adaptation .\n1641\tThe movie does a good job of laying out some of the major issues that we encounter as we journey through life .\n1642\tBrilliantly explores the conflict between following one 's heart and following the demands of tradition .\n1643\tThis remake gets all there is to get out of a peculiar premise with promise : Al Pacino loathing Robin Williams .\n1644\tThe next generation of mob movie .\n1645\tPart low rent Godfather .\n1646\tPart Three Stooges .\n1647\tLan Yu is at times too restrained , yet there are moments it captures the erotics of intimacy in a way that makes most American love stories look downright unfree .\n1648\tA thinly veiled look at different aspects of Chinese life clashing with each other .\n1649\tLight years \\/ several warp speeds \\/ levels and levels of dilithium crystals better than the pitiful Insurrection .\n1650\tWhich is n't to say that it 's the equal of some of its predecessors .\n1651\tIf this story must be told and retold -- and indeed it must -- then The Grey Zone is to be lauded for finding a new and ingenious angle .\n1652\tThe Lion King was a roaring success when it was released eight years ago , but on Imax it seems better , not just bigger .\n1653\tA gripping movie , played with performances that are all understated and touching .\n1654\tThe piece plays as well as it does thanks in large measure to Anspaugh 's three lead actresses .\n1655\tThe inspirational screenplay by Mike Rich covers a lot of ground , perhaps too much , but ties things together , neatly , by the end .\n1656\tNot the kind of film that will appeal to a mainstream American audience , but there is a certain charm about the film that makes it a suitable entry into the fest circuit .\n1657\tDirector Andrew Niccol ... demonstrates a wry understanding of the quirks of fame .\n1658\tHis healthy sense of satire is light and fun ...\n1659\tAbout a manga-like heroine who fights back at her abusers , it 's energetic and satisfying if not deep and psychological .\n1660\tThis is human comedy at its most amusing , interesting and confirming .\n1661\tAn artful , intelligent film that stays within the confines of a well-established genre .\n1662\tMajidi is an unconventional storyteller , capable of finding beauty in the most depressing places .\n1663\tRichard Gere and Diane Lane put in fine performances as does French actor Oliver Martinez .\n1664\tThe minor figures surrounding -LRB- Bobby -RRB- ... form a gritty urban mosaic .\n1665\tThis is wild surreal stuff , but brilliant and the camera just kind of sits there and lets you look at this and its like you 're going from one room to the next and none of them have any relation to the other .\n1666\tIt 's a demented kitsch mess -LRB- although the smeary digital video does match the muddled narrative -RRB- , but it 's savvy about celebrity and has more guts and energy than much of what will open this year .\n1667\tThere is nothing outstanding about this film , but it is good enough and will likely be appreciated most by sailors and folks who know their way around a submarine .\n1668\tAll-in-all , the film is an enjoyable and frankly told tale of a people who live among us , but not necessarily with us .\n1669\tAn interesting story with a pertinent -LRB- cinematically unique -RRB- message , told fairly well and scored to perfection , I found myself struggling to put my finger on that elusive `` missing thing . ''\n1670\tA movie with a real anarchic flair .\n1671\tA welcome relief from baseball movies that try too hard to be mythic , this one is a sweet and modest and ultimately winning story .\n1672\tA crisp psychological drama -LRB- and -RRB- a fascinating little thriller that would have been perfect for an old `` Twilight Zone '' episode .\n1673\tIt has more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing .\n1674\tOpening with some contrived banter , cliches and some loose ends , the screenplay only comes into its own in the second half .\n1675\tAn uncluttered , resonant gem that relays its universal points without lectures or confrontations . '\n1676\t-LRB- The Cockettes -RRB- provides a window into a subculture hell-bent on expressing itself in every way imaginable . '\n1677\tA smart , steamy mix of road movie , coming-of-age story and political satire .\n1678\tThe modern-day royals have nothing on these guys when it comes to scandals .\n1679\tIt 's only in fairy tales that princesses that are married for political reason live happily ever after .\n1680\tA terrific B movie -- in fact , the best in recent memory .\n1681\t`` Birthday Girl '' is an actor 's movie first and foremost .\n1682\tI walked away from this new version of E.T. just as I hoped I would -- with moist eyes .\n1683\tFor devotees of French cinema , Safe Conduct is so rich with period minutiae it 's like dying and going to celluloid heaven .\n1684\tWhat 's really so appealing about the characters is their resemblance to everyday children .\n1685\tShamelessly resorting to pee-related sight gags that might even cause Tom Green a grimace ; still , Myer 's energy and the silliness of it all eventually prevail\n1686\tAn absurdist spider web .\n1687\tIf you 're as happy listening to movies as you are watching them , and the slow parade of human frailty fascinates you , then you 're at the right film .\n1688\tThis version moves beyond the original 's nostalgia for the communal film experiences of yesteryear to a deeper realization of cinema 's inability to stand in for true , lived experience .\n1689\tSome movies blend together as they become distant memories .\n1690\tMention `` Solaris '' five years from now and I 'm sure those who saw it will have an opinion to share .\n1691\tAllen 's funniest and most likeable movie in years .\n1692\tIt 's a glorious spectacle like those D.W. Griffith made in the early days of silent film .\n1693\tThis comic gem is as delightful as it is derivative .\n1694\tMore timely than its director could ever have dreamed , this quietly lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders , desperate for work and food .\n1695\tThe leaping story line , shaped by director Peter Kosminsky into sharp slivers and cutting impressions , shows all the signs of rich detail condensed into a few evocative images and striking character traits .\n1696\tWith three excellent principal singers , a youthful and good-looking diva and tenor and richly handsome locations , it 's enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective .\n1697\tThe production has been made with an enormous amount of affection , so we believe these characters love each other .\n1698\tCertainly the performances are worthwhile .\n1699\tWinds up being both revelatory and narcissistic , achieving some honest insight into relationships that most high-concept films candy-coat with pat storylines , precious circumstances and beautiful stars .\n1700\tWatching these eccentrics is both inspiring and pure joy .\n1701\tSteven Spielberg brings us another masterpiece\n1702\tFinally , the French-produced `` Read My Lips '' is a movie that understands characters must come first .\n1703\tMs. Seigner and Mr. Serrault bring fresh , unforced naturalism to their characters .\n1704\tAllen shows he can outgag any of those young whippersnappers making moving pictures today .\n1705\tA good film with a solid pedigree both in front of and , more specifically , behind the camera .\n1706\tBy no means a slam-dunk and sure to ultimately disappoint the action fans who will be moved to the edge of their seats by the dynamic first act , it still comes off as a touching , transcendent love story .\n1707\tI encourage young and old alike to go see this unique and entertaining twist on the classic whale 's tale -- you wo n't be sorry !\n1708\tA literary detective story is still a detective story and aficionados of the whodunit wo n't be disappointed .\n1709\tHigh Crimes steals so freely from other movies and combines enough disparate types of films that it ca n't help but engage an audience .\n1710\tIf you 're a fan of the series you 'll love it and probably want to see it twice .\n1711\tI will be .\n1712\tIt celebrates the group 's playful spark of nonconformity , glancing vividly back at what Hibiscus grandly called his ` angels of light . '\n1713\tThe story ... is inspiring , ironic , and revelatory of just how ridiculous and money-oriented the record industry really is .\n1714\tIt is also a testament to the integrity and vision of the band .\n1715\tLaced with liberal doses of dark humor , gorgeous exterior photography , and a stable-full of solid performances , No Such Thing is a fascinating little tale .\n1716\tHuppert 's show to steal and she makes a meal of it , channeling Kathy Baker 's creepy turn as the repressed mother on Boston Public just as much as 8 Women 's Augustine .\n1717\tNair does n't treat the issues lightly .\n1718\tShe allows each character to confront their problems openly and honestly .\n1719\tOne of the best silly horror movies of recent memory , with some real shocks in store for unwary viewers .\n1720\tThe work of a filmmaker who has secrets buried at the heart of his story and knows how to take time revealing them .\n1721\tStrange occurrences build in the mind of the viewer and take on extreme urgency .\n1722\tHas a certain ghoulish fascination , and generates a fair amount of B-movie excitement .\n1723\tFamiliar but utterly delightful .\n1724\tA fascinating , dark thriller that keeps you hooked on the delicious pulpiness of its lurid fiction .\n1725\tThe film aims to be funny , uplifting and moving , sometimes all at once .\n1726\tThe extent to which it succeeds is impressive .\n1727\tThe film brilliantly shines on all the characters , as the direction is intelligently accomplished .\n1728\tWhile not for every taste , this often very funny collegiate gross-out comedy goes a long way toward restoring the luster of the National Lampoon film franchise , too long reduced to direct-to-video irrelevancy .\n1729\tAs broad and cartoonish as the screenplay is , there is an accuracy of observation in the work of the director , Frank Novak , that keeps the film grounded in an undeniable social realism .\n1730\tIn addition to Hoffman 's powerful acting clinic , this is that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt , or will feel someday .\n1731\tJeffrey Tambor 's performance as the intelligent jazz-playing exterminator is Oscar-worthy .\n1732\tFrom the opening strains of the Average White Band 's `` Pick up the Pieces '' , you can feel the love .\n1733\tStevens ' vibrant creative instincts are the difference between this and countless other flicks about guys and dolls .\n1734\tthat it 'll probably be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture\n1735\tOld people will love this movie , and I mean that in the nicest possible way : Last Orders will touch the heart of anyone old enough to have earned a 50-year friendship .\n1736\tMeyjes ' provocative film might be called an example of the haphazardness of evil .\n1737\tTian emphasizes the isolation of these characters by confining color to Liyan 's backyard .\n1738\tThe movie is pretty funny now and then without in any way demeaning its subjects .\n1739\timagine a scenario where Bergman approaches Swedish fatalism using Gary Larson 's Far Side humor\n1740\tToo damn weird to pass up , and for the blacklight crowd , way cheaper -LRB- and better -RRB- than Pink Floyd tickets .\n1741\tIt is most remarkable not because of its epic scope , but because of the startling intimacy it achieves despite that breadth .\n1742\tIt 's not a great monster movie .\n1743\tBut if you 've paid a matinee price and bought a big tub of popcorn , there 's guilty fun to be had here .\n1744\tChomp chomp !\n1745\tThe Grey Zone gives voice to a story that needs to be heard in the sea of Holocaust movies ... but the film suffers from its own difficulties .\n1746\tOthers , more attuned to the anarchist maxim that ` the urge to destroy is also a creative urge ' , or more willing to see with their own eyes , will find Morrison 's iconoclastic uses of technology to be liberating .\n1747\tMiller tells this very compelling tale with little fuss or noise , expertly plucking tension from quiet .\n1748\tTime Out is existential drama without any of the pretension associated with the term .\n1749\tIt 's a sweet , laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth .\n1750\tWriter\\/director Alexander Payne -LRB- Election -RRB- and his co-writer Jim Taylor brilliantly employ their quirky and fearless ability to look American angst in the eye and end up laughing .\n1751\tA movie that at its best does n't just make the most out of its characters ' flaws but insists on the virtue of imperfection .\n1752\tIt 's tough to watch , but it 's a fantastic movie .\n1753\tThe best animated feature to hit theaters since Beauty and the Beast 11 years ago .\n1754\tWhat saves this deeply affecting film from being merely a collection of wrenching cases is Corcuera 's attention to detail .\n1755\tPacino is the best he 's been in years and Keener is marvelous .\n1756\tA solid , spooky entertainment worthy of the price of a ticket .\n1757\tBy turns fanciful , grisly and engagingly quixotic .\n1758\t... very funny , very enjoyable ...\n1759\tAdaptation is intricately constructed and in a strange way nails all of Orlean 's themes without being a true adaptation of her book .\n1760\tSo purely enjoyable that you might not even notice it 's a fairly straightforward remake of Hollywood comedies such as Father of the Bride .\n1761\tMoonlight Mile gives itself the freedom to feel contradictory things .\n1762\tIt is sentimental but feels free to offend , is analytical and then surrenders to the illogic of its characters , is about grief and yet permits laughter .\n1763\tThe real triumphs in Igby come from Philippe , who makes Oliver far more interesting than the character 's lines would suggest , and Sarandon , who could n't be better as a cruel but weirdly likable WASP matron .\n1764\tRobin Williams has thankfully ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side .\n1765\tIf you 're willing to have fun with it , you wo n't feel cheated by the high infidelity of Unfaithful .\n1766\tAustralia : Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place .\n1767\tHoffman 's performance is authentic to the core of his being .\n1768\tTold just proficiently enough to trounce its overly comfortable trappings .\n1769\tAn enthralling aesthetic experience , one that 's steeped in mystery and a ravishing , baroque beauty .\n1770\tThe quirky drama touches the heart and the funnybone thanks to the energetic and always surprising performance by Rachel Griffiths .\n1771\tA captivating coming-of-age story that may also be the first narrative film to be truly informed by the wireless age .\n1772\tWhat could have been a daytime soap opera is actually a compelling look at a young woman 's tragic odyssey .\n1773\tDuvall is strong as always .\n1774\tA no-holds-barred cinematic treat .\n1775\tYou 'd have to be a most hard-hearted person not to be moved by this drama .\n1776\tAllen 's underestimated charm delivers more goodies than lumps of coal .\n1777\tMeasured against practically any like-themed film other than its Oscar-sweeping franchise predecessor The Silence of the Lambs , Red Dragon rates as an exceptional thriller .\n1778\tAn exhilarating serving of movie fluff .\n1779\tMaelstrom is strange and compelling , engrossing and different , a moral tale with a twisted sense of humor .\n1780\tIt makes you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film .\n1781\tDark and disturbing , yet compelling to watch .\n1782\tToo often , Son of the Bride becomes an exercise in trying to predict when a preordained `` big moment '' will occur and not `` if . ''\n1783\tThe picture uses humor and a heartfelt conviction to tell a story about discovering your destination in life , but also acknowledging the places , and the people , from whence you came .\n1784\tA solid piece of journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy .\n1785\tA terrific insider look at the star-making machinery of tinseltown .\n1786\tIt 's a diverting enough hour-and-a-half for the family audience .\n1787\tA party-hearty teen flick that scalds like acid .\n1788\tAs giddy and whimsical and relevant today as it was 270 years ago .\n1789\tThe film offers an intriguing what-if premise .\n1790\tThe Pianist is the film Roman Polanski may have been born to make .\n1791\tThis version does justice both to Stevenson and to the sci-fi genre .\n1792\tPoignant and delicately complex .\n1793\tEnough may pander to our basest desires for payback , but unlike many revenge fantasies , it ultimately delivers .\n1794\tCho 's latest comic set is n't as sharp or as fresh as I 'm the One That I Want ... but it 's still damn funny stuff .\n1795\tIn The Pianist , Polanski is saying what he has long wanted to say , confronting the roots of his own preoccupations and obsessions , and he allows nothing to get in the way .\n1796\tDespite the film 's shortcomings , the stories are quietly moving .\n1797\tThose who love Cinema Paradiso will find the new scenes interesting , but few will find the movie improved .\n1798\tIf you come from a family that eats , meddles , argues , laughs , kibbitzes and fights together , then go see this delightful comedy .\n1799\tThis bracingly truthful antidote to Hollywood teenage movies that slather Clearasil over the blemishes of youth captures the combustible mixture of a chafing inner loneliness and desperate grandiosity that tend to characterize puberty .\n1800\tThe reason to see `` Sade '' lay with the chemistry and complex relationship between the marquis -LRB- Auteil -RRB- and Emilie -LRB- Le Besco -RRB- .\n1801\tIt 's the filmmakers ' post-camp comprehension of what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion .\n1802\tThe film 's strength is n't in its details , but in the larger picture it paints - of a culture in conflict with itself , with the thin veneer of nationalism that covers our deepest , media-soaked fears .\n1803\t... best seen as speculative history , as much an exploration of the paranoid impulse as a creative sequel to the Warren Report .\n1804\tIt has its faults , but it is a kind , unapologetic , sweetheart of a movie , and Mandy Moore leaves a positive impression .\n1805\tThe Saigon of 1952 is an uneasy mix of sensual delights and simmering violence , and The Quiet American brings us right into the center of that world .\n1806\tDespite its shortcomings , Girls Ca n't Swim represents an engaging and intimate first feature by a talented director to watch , and it 's a worthy entry in the French coming-of-age genre .\n1807\tFlawed , but worth seeing for Ambrose 's performance .\n1808\tWith Dirty Deeds , David Caesar has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works on screen .\n1809\tThe humor and humanity of Monsoon Wedding are in perfect balance .\n1810\tLookin ' for sin , American-style ?\n1811\tTry Hell House , which documents the cautionary Christian spook-a-rama of the same name .\n1812\tA compelling motion picture that illustrates an American tragedy .\n1813\tAs comedic spotlights go , Notorious C.H.O. hits all the verbal marks it should .\n1814\tIt 's a day at the beach -- with air conditioning and popcorn .\n1815\tFrida is n't that much different from many a Hollywood romance .\n1816\tWhat sets it apart is the vision that Taymor , the avant garde director of Broadway 's The Lion King and the film Titus , brings .\n1817\tStevens has a flair for dialogue comedy , the film operates nicely off the element of surprise , and the large cast is solid .\n1818\tExtremely well acted by the four primary actors , this is a seriously intended movie that is not easily forgotten .\n1819\tThe film exudes the urbane sweetness that Woody Allen seems to have bitterly forsaken .\n1820\tK-19 : The Widowmaker is derivative , overlong , and bombastic -- yet surprisingly entertaining .\n1821\tIt 's good , hard-edged stuff , violent and a bit exploitative but also nicely done , morally alert and street-smart .\n1822\tCineasts will revel in those visual in-jokes , as in the film 's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein 's bluff personal style to the stylistic rigors of Denmark 's Dogma movement .\n1823\tIt 's a rare window on an artistic collaboration .\n1824\t... begins with promise , but runs aground after being snared in its own tangled plot .\n1825\tPerhaps the best sports movie I 've ever seen .\n1826\tCho 's timing is priceless .\n1827\t... creates a visceral sense of its characters ' lives and conflicted emotions that carries it far above ... what could have been a melodramatic , Lifetime Channel-style anthology .\n1828\tA sensitive , moving , brilliantly constructed work .\n1829\tAn edgy thriller that delivers a surprising punch .\n1830\tA reasonably entertaining sequel to 1994 's surprise family hit that may strain adult credibility .\n1831\t-LRB- Reno -RRB- delivers a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion .\n1832\tthere is truth here\n1833\ta confident , richly acted , emotionally devastating piece of work and 2002 's first great film\n1834\tA touching , small-scale story of family responsibility and care in the community .\n1835\tArteta directs one of the best ensemble casts of the year\n1836\tThe casting of von Sydow ... is itself Intacto 's luckiest stroke .\n1837\tNo , it 's not as single-minded as John Carpenter 's original , but it 's sure a lot smarter and more unnerving than the sequels .\n1838\tA gem of a romantic crime comedy that turns out to be clever , amusing and unpredictable .\n1839\tStands as one of the year 's most intriguing movie experiences , letting its imagery speak for it while it forces you to ponder anew what a movie can be .\n1840\t... the first 2\\/3 of the film are incredibly captivating and insanely funny , thanks in part to interesting cinematic devices -LRB- cool visual backmasking -RRB- , a solid cast , and some wickedly sick and twisted humor ...\n1841\tThis movie got me grinning .\n1842\tThere 's a part of us that can not help be entertained by the sight of someone getting away with something .\n1843\tAn old-fashioned drama of substance about a teacher 's slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing but disdain for virtue .\n1844\tWhat 's not to like about a movie with a ` children 's ' song that includes the line ` My stepdad 's not mean , he 's just adjusting ' ?\n1845\tThis English-language version ... does full honor to Miyazaki 's teeming and often unsettling landscape , and to the conflicted complexity of his characters .\n1846\tThe pleasures that it does afford may be enough to keep many moviegoers occupied amidst some of the more serious-minded concerns of other year-end movies .\n1847\tNot everyone will welcome or accept The Trials of Henry Kissinger as faithful portraiture , but few can argue that the debate it joins is a necessary and timely one .\n1848\tThere are no special effects , and no Hollywood endings .\n1849\tLike the original , this version is raised a few notches above kiddie fantasy pablum by Allen 's astringent wit .\n1850\tDespite its Hawaiian setting , the science-fiction trimmings and some moments of rowdy slapstick , the basic plot of `` Lilo '' could have been pulled from a tear-stained vintage Shirley Temple script .\n1851\tA brutally honest documentary about a much anticipated family reunion that goes wrong thanks to culture shock and a refusal to empathize with others .\n1852\tFilled with honest performances and exceptional detail , Baran is a gentle film with dramatic punch , a haunting ode to humanity .\n1853\tSparkles in its deft portrait of Tinseltown 's seasoned veterans of gossip , wealth , paranoia , and celebrityhood .\n1854\tIn its dry and forceful way , it delivers the same message as Jiri Menzel 's Closely Watched Trains and Danis Tanovic 's No Man 's Land .\n1855\t... a triumph of emotionally and narratively complex filmmaking .\n1856\t-LRB- Haynes ' -RRB- homage to such films as `` All That Heaven Allows '' and `` Imitation of Life '' transcends them .\n1857\tSimply put , `` Far From Heaven '' is a masterpiece .\n1858\tAn intense and effective film about loneliness and the chilly anonymity of the environments where so many of us spend so much of our time .\n1859\tAlthough fairly involving as far as it goes , the film does n't end up having much that is fresh to say about growing up Catholic or , really , anything .\n1860\tProves mainly that South Korean filmmakers can make undemanding action movies with all the alacrity of their Hollywood counterparts .\n1861\tA very funny romantic comedy about two skittish New York middle-agers who stumble into a relationship and then struggle furiously with their fears and foibles .\n1862\tTop-notch action powers this romantic drama .\n1863\tBeresford nicely mixes in as much humor as pathos to take us on his sentimental journey of the heart .\n1864\tIt really is a shame that more wo n't get an opportunity to embrace small , sweet ` Evelyn . '\n1865\tI stopped thinking about how good it all was , and started doing nothing but reacting to it - feeling a part of its grand locations , thinking urgently as the protagonists struggled , feeling at the mercy of its inventiveness , gasping at its visual delights .\n1866\tProbably the best case for Christianity since Chesterton and Lewis .\n1867\tA gently funny , sweetly adventurous film that makes you feel genuinely good , that is to say , entirely unconned by false sentiment or sharp , overmanipulative Hollywood practices .\n1868\tWould be an unendurable viewing experience for this ultra-provincial New Yorker if 26-year-old Reese Witherspoon were not on hand to inject her pure fantasy character , Melanie Carmichael , with a massive infusion of old-fashioned Hollywood magic .\n1869\tVisually fascinating ... an often intense character study about fathers and sons , loyalty and duty .\n1870\tA lyrical metaphor for cultural and personal self-discovery and a picaresque view of a little-remembered world .\n1871\tSchÃ¼tte 's dramatic snapshot of the artist three days before his death offers an interesting bit of speculation as to the issues Brecht faced as his life drew to a close .\n1872\tA slick , engrossing melodrama .\n1873\tS1M0NE 's satire is not subtle , but it is effective .\n1874\tIt 's a quirky , off-beat project .\n1875\tWhile some will object to the idea of a Vietnam picture with such a rah-rah , patriotic tone , Soldiers ultimately achieves its main strategic objective : dramatizing the human cost of the conflict that came to define a generation .\n1876\tEven if you do n't know the band or the album 's songs by heart , you will enjoy seeing how both evolve , and you will also learn a good deal about the state of the music business in the 21st Century .\n1877\tThe solid filmmaking and convincing characters makes this a high water mark for this genre .\n1878\tFilms about loss , grief and recovery are pretty valuable these days .\n1879\tSeen in that light , Moonlight Mile should strike a nerve in many .\n1880\tIt 's endlessly inventive , consistently intelligent and sickeningly savage .\n1881\tIt is definitely worth seeing .\n1882\tAn impeccable study in perversity .\n1883\tFar From Heaven is a dazzling conceptual feat , but more than that , it 's a work of enthralling drama .\n1884\tA movie that both thrills the eye and , in its over-the-top way , touches the heart .\n1885\tStuffed to the brim with ideas , American instigator Michael Moore 's film is a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition .\n1886\tAffectionately reminds us that , in any language , the huge stuff in life can usually be traced back to the little things .\n1887\tA drama of great power , yet some members of the audience will leave the theater believing they have seen a comedy .\n1888\tThe large-frame IMAX camera lends itself beautifully to filming the teeming life on the reefs , making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers .\n1889\tThe result is more depressing than liberating , but it 's never boring .\n1890\tA story about intelligent high school students that deals with first love sweetly but also seriously .\n1891\tIt is also beautifully acted .\n1892\tIt is n't that the picture is unfamiliar , but that it manages to find new avenues of discourse on old problems .\n1893\tSame song , second verse , coulda been better , but it coulda been worse .\n1894\tIt 's a technically superb film , shining with all the usual Spielberg flair , expertly utilizing the talents of his top-notch creative team .\n1895\tWilco fans will have a great time , and the movie should win the band a few new converts , too .\n1896\tTsai has a well-deserved reputation as one of the cinema world 's great visual stylists , and in this film , every shot enhances the excellent performances .\n1897\tThe date movie that Franz Kafka would have made .\n1898\tThe fact is that the screen is most alive when it seems most likely that Broomfield 's interviewees , or even himself , will not be for much longer .\n1899\tLeguizamo and Jones are both excellent and the rest of the cast is uniformly superb .\n1900\tI liked this film a lot ...\n1901\t... there is enough originality in ` Life ' to distance it from the pack of paint-by-number romantic comedies that so often end up on cinema screens .\n1902\tA solid and refined piece of moviemaking imbued with passion and attitude .\n1903\tNettelbeck has crafted an engaging fantasy of flavours and emotions , one part romance novel , one part recipe book .\n1904\tWith or without the sex , a wonderful tale of love and destiny , told well by a master storyteller\n1905\tOn the surface a silly comedy , Scotland , PA would be forgettable if it were n't such a clever adaptation of the bard 's tragic play .\n1906\tA weird , arresting little ride .\n1907\tA fine film , but it would be a lot better if it stuck to Betty Fisher and left out the other stories .\n1908\tA first-class road movie that proves you can run away from home , but your ego and all your problems go with you .\n1909\tYou might want to take a reality check before you pay the full ticket price to see `` Simone , '' and consider a DVD rental instead .\n1910\tWell cast and well directed - a powerful drama with enough sardonic wit to keep it from being maudlin .\n1911\tA backstage must-see for true fans of comedy .\n1912\tThere 's back-stabbing , inter-racial desire and , most importantly , singing and dancing .\n1913\tThe film sounds like the stuff of lurid melodrama , but what makes it interesting as a character study is the fact that the story is told from Paul 's perspective .\n1914\tJones ... makes a great impression as the writer-director of this little $ 1.8 million charmer , which may not be cutting-edge indie filmmaking but has a huge heart .\n1915\tIn the disturbingly involving family dysfunctional drama How I Killed My Father , French director Anne Fontaine delivers an inspired portrait of male-ridden angst and the emotional blockage that accompanies this human condition\n1916\tBelow may not mark Mr. Twohy 's emergence into the mainstream , but his promise remains undiminished .\n1917\tThere 's no reason to miss Interview with the Assassin\n1918\tHappily stays close to the ground in a spare and simple manner and does n't pummel us with phony imagery or music .\n1919\tIts sheer dynamism is infectious .\n1920\tFor his first attempt at film noir , Spielberg presents a fascinating but flawed look at the near future .\n1921\tit somehow managed to make its way past my crappola radar and find a small place in my heart\n1922\tPerhaps it 's cliche to call the film ` refreshing , ' but it is .\n1923\t` Drumline ' shows a level of young , Black manhood that is funny , touching , smart and complicated .\n1924\tIt does give a taste of the Burning Man ethos , an appealing blend of counter-cultural idealism and hedonistic creativity .\n1925\tThe limited sets and small confined and dark spaces also are homages to a classic low-budget film noir movie .\n1926\tThe movie is well done , but slow .\n1927\t-LRB- A -RRB- wonderfully loopy tale of love , longing , and voting .\n1928\tThe fascination comes in the power of the Huston performance , which seems so larger than life and yet so fragile , and in the way the Ivan character accepts the news of his illness so quickly but still finds himself unable to react .\n1929\tThe last scenes of the film are anguished , bitter and truthful .\n1930\tMr. Koshashvili is a director to watch .\n1931\tPredictable storyline and by-the-book scripting is all but washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell .\n1932\tAntwone Fisher certainly does the trick of making us care about its protagonist and celebrate his victories but , with few exceptions , it rarely stoops to cheap manipulation or corny conventions to do it .\n1933\tOne feels the dimming of a certain ambition , but in its place a sweetness , clarity and emotional openness that recalls the classics of early Italian neorealism .\n1934\tIt challenges , this nervy oddity , like modern art should .\n1935\tWhenever you think you 've figured out Late Marriage , it throws you for a loop .\n1936\tThe Pianist is Polanski 's best film .\n1937\tIt is a testament of quiet endurance , of common concern , of reconciled survival .\n1938\tThis Orange has some juice , but it 's far from fresh-squeezed .\n1939\tA sensitive , modest comic tragedy that works as both character study and symbolic examination of the huge economic changes sweeping modern China .\n1940\tHigh Crimes knows the mistakes that bad movies make and is determined not to make them , and maybe that is nobility of a sort .\n1941\tCusack 's just brilliant in this .\n1942\tKnows how to make our imagination wonder .\n1943\tJae-eun Jeong 's Take Care of My Cat brings a beguiling freshness to a coming-of-age story with such a buoyant , expressive flow of images that it emerges as another key contribution to the flowering of the South Korean cinema .\n1944\tThe overall fabric is hypnotic , and Mr. Mattei fosters moments of spontaneous intimacy .\n1945\tEvokes a palpable sense of disconnection , made all the more poignant by the incessant use of cell phones .\n1946\tMalcolm McDowell is cool .\n1947\tPaul Bettany is cool .\n1948\tPaul Bettany playing Malcolm McDowell ?\n1949\tCool .\n1950\tA touching , sophisticated film that almost seems like a documentary in the way it captures an Italian immigrant family on the brink of major changes .\n1951\t... a trashy little bit of fluff stuffed with enjoyable performances and a bewildering sense of self-importance\n1952\tAn inventive , absorbing movie that 's as hard to classify as it is hard to resist .\n1953\tIt made me want to get made-up and go see this movie with my sisters .\n1954\tI thought the relationships were wonderful , the comedy was funny , and the love ` real ' .\n1955\t-LRB- Caine -RRB- proves once again he has n't lost his touch , bringing off a superb performance in an admittedly middling film .\n1956\tBogdanovich puts history in perspective and , via Kirsten Dunst 's remarkable performance , he showcases Davies as a young woman of great charm , generosity and diplomacy .\n1957\tThis breezy caper movie becomes a soulful , incisive meditation on the way we were , and the way we are .\n1958\tA captivating new film .\n1959\tThose who are n't put off by the film 's austerity will find it more than capable of rewarding them .\n1960\tIt 's a clear-eyed portrait of an intensely lived time , filled with nervous energy , moral ambiguity and great uncertainties .\n1961\tReveals how important our special talents can be when put in service of of others .\n1962\tIt also shows how deeply felt emotions can draw people together across the walls that might otherwise separate them .\n1963\tWith the same sort of good-natured fun found in films like Tremors , Eight Legged Freaks is prime escapist fare .\n1964\tA sharp , amusing study of the cult of celebrity .\n1965\tThe sentimental cliches mar an otherwise excellent film .\n1966\tA powerful performance from Mel Gibson and a brutal 90-minute battle sequence that does everything but issue you a dog-tag and an M-16 .\n1967\tA graceful , moving tribute to the courage of New York 's finest and a nicely understated expression of the grief shared by the nation at their sacrifice .\n1968\tA coming-of-age tale from New Zealand whose boozy , languid air is balanced by a rich visual clarity and deeply felt performances across the board .\n1969\tMade to be Jaglomized is the Cannes Film Festival , the annual Riviera spree of flesh , buzz , blab and money .\n1970\tThe charming result is Festival in Cannes .\n1971\tIf you 're looking for something new and hoping for something entertaining , you 're in luck .\n1972\tA hugely rewarding experience that 's every bit as enlightening , insightful and entertaining as Grant 's two best films -- Four Weddings and a Funeral and Bridget Jones 's Diary .\n1973\tA rip-roaring comedy action fest that 'll put hairs on your chest .\n1974\tIf there 's no art here , it 's still a good yarn -- which is nothing to sneeze at these days .\n1975\tSimultaneously heart-breaking and very funny , The Last Kiss is really all about performances .\n1976\tThere is a subversive element to this Disney cartoon , providing unexpected fizzability .\n1977\tAn unforgettable look at morality , family , and social expectation through the prism of that omnibus tradition called marriage .\n1978\tAn enjoyable , if occasionally flawed , experiment .\n1979\tMiyazaki is one of world cinema 's most wondrously gifted artists and storytellers .\n1980\tIf Ayurveda can help us return to a sane regimen of eating , sleeping and stress-reducing contemplation , it is clearly a good thing .\n1981\tMeeting , even exceeding expectations , it 's the best sequel since The Empire Strikes Back ... a majestic achievement , an epic of astonishing grandeur and surprising emotional depth .\n1982\tLeigh is one of the rare directors who feels acting is the heart and soul of cinema .\n1983\tHe allows his cast members to make creative contributions to the story and dialogue .\n1984\tThis method almost never fails him , and it works superbly here .\n1985\tPoetry in motion captured on film .\n1986\tWhile it can be a bit repetitive , overall it 's an entertaining and informative documentary .\n1987\tDirecting with a sure and measured hand , -LRB- Haneke -RRB- steers clear of the sensational and offers instead an unflinching and objective look at a decidedly perverse pathology .\n1988\tThe entire movie establishes a wonderfully creepy mood .\n1989\tI found The Ring moderately absorbing , largely for its elegantly colorful look and sound .\n1990\tThe filmmakers want nothing else than to show us a good time , and in their cheap , B movie way , they succeed .\n1991\tAmari has dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances .\n1992\tRabbit-Proof Fence will probably make you angry .\n1993\tBut it will just as likely make you weep , and it will do so in a way that does n't make you feel like a sucker .\n1994\tBoth heartbreaking and heartwarming ... just a simple fable done in an artless sytle , but it 's tremendously moving .\n1995\tThis masterfully calibrated psychological thriller thrives on its taut performances and creepy atmosphere even if the screenplay falls somewhat short .\n1996\tThe film 's sense of imagery gives it a terrible strength , but it 's propelled by the acting .\n1997\tThe Pianist -LRB- is -RRB- a supremely hopeful cautionary tale of war 's madness remembered that we , today , can prevent its tragic waste of life .\n1998\tHere is a divine monument to a single man 's struggle to regain his life , his dignity and his music .\n1999\tStrange it is , but delightfully so .\n2000\tElegant , mannered and teasing .\n2001\tAn average coming-of-age tale elevated by the wholesome twist of a pesky mother interfering during her son 's discovery of his homosexuality .\n2002\tThe ingenuity that Parker displays in freshening the play is almost in a class with that of Wilde himself .\n2003\tDecasia is what has happened already to so many silent movies , newsreels and the like .\n2004\tThe unexpected thing is that its dying , in this shower of black-and-white psychedelia , is quite beautiful .\n2005\tA droll , bitchy frolic which pokes fun at the price of popularity and small-town pretension in the Lone Star State .\n2006\tWith each of her three protagonists , Miller eloquently captures the moment when a woman 's life , out of a deep-seated , emotional need , is about to turn onto a different path .\n2007\tRyan Gosling ... is at 22 a powerful young actor .\n2008\tA minor work yet there 's no denying the potency of Miller 's strange , fleeting brew of hopeful perseverance and hopeless closure .\n2009\tAs an introduction to the man 's theories and influence , Derrida is all but useless ; as a portrait of the artist as an endlessly inquisitive old man , however , it 's invaluable .\n2010\tThe film is a verbal duel between two gifted performers .\n2011\tImperfect ?\n2012\tYes , but also intriguing and honorable , a worthwhile addition to a distinguished film legacy .\n2013\tYou 'll get the enjoyable basic minimum .\n2014\tBut not a whit more .\n2015\tWhat a great way to spend 4 units of your day .\n2016\tThe movie is hardly a masterpiece , but it does mark Ms. Bullock 's best work in some time .\n2017\tAs simple and innocent a movie as you can imagine .\n2018\tThis is a movie you can trust .\n2019\tPassionate , irrational , long-suffering but cruel as a tarantula , Helga figures prominently in this movie , and helps keep the proceedings as funny for grown-ups as for rugrats .\n2020\t`` It 's all about the image . ''\n2021\tVividly conveys the passion , creativity , and fearlessness of one of Mexico 's most colorful and controversial artists -- a captivating drama that will speak to the nonconformist in us all .\n2022\tHollywood Ending is not show-stoppingly hilarious , but scathingly witty nonetheless .\n2023\tMaybe Thomas Wolfe was right : You ca n't go home again .\n2024\tA compelling yarn , but not quite a ripping one .\n2025\tOn the Granger Movie Gauge of 1 to 10 , The Powerpuff Girls is a fast , frenetic , funny , even punny 6 -- aimed specifically at a grade-school audience .\n2026\tThe film has several strong performances .\n2027\tI 've never bought from telemarketers , but I bought this movie .\n2028\tPerfectly pitched between comedy and tragedy , hope and despair , About Schmidt instead comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness .\n2029\tThe funny thing is , I did n't mind all this contrived nonsense a bit .\n2030\t-LRB- Shyamalan -RRB- turns the goose-pimple genre on its empty head and fills it with spirit , purpose and emotionally bruised characters who add up to more than body count .\n2031\tA sexy , peculiar and always entertaining costume drama set in Renaissance Spain , and the fact that it 's based on true events somehow makes it all the more compelling .\n2032\tAn entertaining documentary that freshly considers arguments the Bard 's immortal plays were written by somebody else .\n2033\tA highly spirited , imaginative kid 's movie that broaches neo-Augustinian theology : Is God stuck in Heaven because He 's afraid of His best-known creation ?\n2034\tCall it magic realism or surrealism , but Miss Wonton floats beyond reality with a certain degree of wit and dignity .\n2035\tRaimi and his team could n't have done any better in bringing the story of Spider-Man to the big screen .\n2036\tThe director explores all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut .\n2037\tWell-acted , well-directed and , for all its moodiness , not too pretentious .\n2038\tIt 's a satisfying summer blockbuster and worth a look .\n2039\tBoomers and their kids will have a Barrie good time .\n2040\tReal Women Have Curves wears its empowerment on its sleeve but even its worst harangues are easy to swallow thanks to remarkable performances by Ferrera and Ontiveros .\n2041\tUltimately , `` MIB II '' succeeds due to its rapid-fire delivery and enough inspired levity that it ca n't be dismissed as mindless .\n2042\tStage director Sam Mendes showcases Tom Hanks as a depression era hit-man in this dark tale of revenge .\n2043\tSitting in the third row of the IMAX cinema at Sydney 's Darling Harbour , but I sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia , sweeping and gliding , banking and hovering over some of the most not\n2044\tThe real charm of this trifle is the deadpan comic face of its star , Jean Reno , who resembles Sly Stallone in a hot sake half-sleep .\n2045\tWhat 's so fun about this silly , outrageous , ingenious thriller is the director 's talent .\n2046\tWatching a Brian DePalma movie is like watching an Alfred Hitchcock movie after drinking twelve beers .\n2047\tStrip it of all its excess debris , and you 'd have a 90-minute , four-star movie .\n2048\tAs it is , it 's too long and unfocused .\n2049\tAn immensely entertaining look at some of the unsung heroes of 20th century pop music .\n2050\tThis familiar rise-and-fall tale is long on glamour and short on larger moralistic consequences , though it 's told with sharp ears and eyes for the tenor of the times .\n2051\tThis beautifully animated epic is never dull .\n2052\tBrian Tufano 's handsome widescreen photography and Paul Grabowsky 's excellent music turn this fairly parochial melodrama into something really rather special .\n2053\tIt makes compelling , provocative and prescient viewing .\n2054\tA thoroughly entertaining comedy that uses Grant 's own twist of acidity to prevent itself from succumbing to its own bathos .\n2055\tUsing a stock plot , About a Boy injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater .\n2056\tWhat Eric Schaeffer has accomplished with Never Again may not , strictly speaking , qualify as revolutionary .\n2057\tBut it 's defiantly and delightfully against the grain .\n2058\tThe hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant proves to be sensational , and everything meshes in this elegant entertainment .\n2059\tA positively thrilling combination of ethnography and all the intrigue , betrayal , deceit and murder of a Shakespearean tragedy or a juicy soap opera .\n2060\tMr. Clooney , Mr. Kaufman and all their collaborators are entitled to take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster .\n2061\tDefinitely funny stuff , but it 's more of the ` laughing at ' variety than the ` laughing with . '\n2062\tEasily the most thoughtful fictional examination of the root causes of anti-Semitism ever seen on screen .\n2063\tA real winner -- smart , funny , subtle , and resonant .\n2064\tFamily portrait of need , neurosis and nervy negativity is a rare treat that shows the promise of digital filmmaking .\n2065\tThe pitch must have read like a discarded House Beautiful spread .\n2066\tUplifting as only a document of the worst possibilities of mankind can be , and among the best films of the year .\n2067\tDirector David Jacobson gives Dahmer a consideration that the murderer never game his victims .\n2068\tThe film has a terrific look and Salma Hayek has a feel for the character at all stages of her life .\n2069\tA decided lack of spontaneity in its execution and a dearth of real poignancy in its epiphanies .\n2070\tThe performances are remarkable .\n2071\tIt 's Burns ' visuals , characters and his punchy dialogue , not his plot , that carry waydowntown .\n2072\tAs literary desecrations go , this makes for perfectly acceptable , occasionally very enjoyable children 's entertainment .\n2073\tYou 'll forget about it by Monday , though , and if they 're old enough to have developed some taste , so will your kids .\n2074\tWhile I ca n't say it 's on par with the first one , Stuart Little 2 is a light , fun cheese puff of a movie .\n2075\tStrange , funny , twisted , brilliant and macabre .\n2076\tA genuinely moving and wisely unsentimental drama .\n2077\tHeaven is a haunting dramatization of a couple 's moral ascension .\n2078\tThe Mothman Prophecies is best when illustrating the demons bedevilling the modern masculine journey .\n2079\tPlays out with a dogged and eventually winning squareness that would make it the darling of many a kids-and-family-oriented cable channel .\n2080\tAn entertaining British hybrid of comedy , caper thrills and quirky romance .\n2081\tAlain Choquart 's camera barely stops moving , portraying both the turmoil of the time and giving Conduct a perpetual sense of urgency , which , for a film that takes nearly three hours to unspool , is both funny and irritating .\n2082\tMostly Martha could have used a little trimming -- 10 or 15 minutes could be cut and no one would notice -- but it 's a pleasurable trifle .\n2083\tThe only pain you 'll feel as the credits roll is your stomach grumbling for some tasty grub .\n2084\tHardly an objective documentary , but it 's great cinematic polemic ... love Moore or loathe him , you 've got to admire ... the intensity with which he 's willing to express his convictions .\n2085\tThe mark of a respectable summer blockbuster is one of two things : unadulterated thrills or genuine laughs .\n2086\tThe film is visually dazzling , the depicted events dramatic , funny and poignant .\n2087\tA directorial tour de force by Bernard Rose , ivans xtc .\n2088\tis one of this year 's very best pictures .\n2089\tWhat makes the movie work -- to an admittedly limited extent -- is the commitment of two genuinely engaging performers .\n2090\tWeaver and LaPaglia are both excellent , in the kind of low-key way that allows us to forget that they are actually movie folk .\n2091\tEven the digressions are funny .\n2092\tMr. Spielberg and his company just want you to enjoy yourselves without feeling conned .\n2093\tAnd they succeed merrily at their noble endeavor .\n2094\tMelodrama with a message .\n2095\tA perfectly pleasant if slightly pokey comedy .\n2096\tCoppola 's directorial debut is an incredibly layered and stylistic film that , despite a fairly slow paced , almost humdrum approach to character development , still manages at least a decent attempt at meaningful cinema .\n2097\tAt the end , when the now computerized Yoda finally reveals his martial artistry , the film ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside .\n2098\tWang Xiaoshuai directs this intricately structured and well-realized drama that presents a fascinating glimpse of urban life and the class warfare that embroils two young men .\n2099\tIt 's hard to imagine anybody ever being `` in the mood '' to view a movie as harrowing and painful as The Grey Zone , but it 's equally hard to imagine anybody being able to tear their eyes away from the screen once it 's started .\n2100\tBogdanovich taps deep into the Hearst mystique , entertainingly reenacting a historic scandal .\n2101\tA moving tale of love and destruction in unexpected places , unexamined lives .\n2102\tClooney directs this film always keeping the balance between the fantastic and the believable ...\n2103\tEven if you do n't understand what on earth is going on , this is a movie that will stimulate hours of post viewing discussion , if only to be reminded of who did what to whom and why .\n2104\t... a lesson in prehistoric hilarity .\n2105\tA fantastically vital movie that manages to invest real humor , sensuality , and sympathy into a story about two adolescent boys .\n2106\tLawrence plumbs personal tragedy and also the human comedy .\n2107\tThough a capable thriller , somewhere along the way K-19 jettisoned some crucial drama .\n2108\tJust about the surest bet for an all-around good time at the movies this summer .\n2109\tIt would be disingenuous to call Reno a great film , but you can say that about most of the flicks moving in and out of the multiplex .\n2110\tThis is a movie that is what it is : a pleasant distraction , a Friday night diversion , an excuse to eat popcorn .\n2111\tThere is a certain sense of experimentation and improvisation to this film that may not always work , but it is nevertheless compelling .\n2112\tThe Four Feathers has rewards , from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes .\n2113\tA delicious , quirky movie with a terrific screenplay and fanciful direction by Michael Gondry .\n2114\tThis story still seems timely and important .\n2115\tAnd there 's an element of heartbreak to watching it now , with older and wiser eyes , because we know what will happen after Greene 's story ends .\n2116\tThe bodily function jokes are about what you 'd expect , but there are rich veins of funny stuff in this movie .\n2117\tThe performances are amiable and committed , and the comedy more often than not hits the bullseye .\n2118\tThis time , the hype is quieter , and while the movie is slightly less successful than the first , it 's still a rollicking good time for the most part .\n2119\tThere 's plenty to enjoy -- in no small part thanks to Lau .\n2120\tWith a romantic comedy plotline straight from the ages , this Cinderella story does n't have a single surprise up its sleeve .\n2121\tBut it does somehow manage to get you under its spell .\n2122\tThough few will argue that it ranks with the best of Herzog 's works , Invincible shows he 's back in form , with an astoundingly rich film .\n2123\t`` Catch Me '' feels capable of charming the masses with star power , a pop-induced score and sentimental moments that have become a Spielberg trademark .\n2124\tBy no means a great movie , but it is a refreshingly forthright one .\n2125\tThe casting of Raymond J. Barry as the ` assassin ' greatly enhances the quality of Neil Burger 's impressive fake documentary .\n2126\tDespite Besson 's high-profile name being Wasabi 's big selling point , there is no doubt that Krawczyk deserves a huge amount of the credit for the film 's thoroughly winning tone .\n2127\tThis documentary is a dazzling , remarkably unpretentious reminder of what -LRB- Evans -RRB- had , lost , and got back .\n2128\tA thoughtful movie , a movie that is concerned with souls and risk and schemes and the consequences of one 's actions .\n2129\tAs satisfyingly odd and intriguing a tale as it was a century and a half ago ... has a delightfully dour , deadpan tone and stylistic consistency .\n2130\tMethodical , measured , and gently tedious in its comedy , Secret Ballot is a purposefully reductive movie -- which may be why it 's so successful at lodging itself in the brain .\n2131\tA witty , trenchant , wildly unsentimental but flawed look at the ins and outs of modern moviemaking .\n2132\tFor most of the distance the picture provides a satisfyingly unsettling ride into the dark places of our national psyche .\n2133\tBy the standards of knucklehead swill , The Hot Chick is pretty damned funny .\n2134\tOne of the most gloriously unsubtle and adrenalized extreme shockers since The Evil Dead .\n2135\t-LRB- Reaches -RRB- wholly believable and heart-wrenching depths of despair .\n2136\tAn absorbing and unsettling psychological drama .\n2137\tThis movie may not have the highest production values you 've ever seen , but it 's the work of an artist , one whose view of America , history and the awkwardness of human life is generous and deep .\n2138\tThough it 's not very well shot or composed or edited , the score is too insistent and the dialogue is frequently overwrought and crudely literal , the film shatters you in waves .\n2139\tThe entire cast is extraordinarily good .\n2140\tYakusho , as always , is wonderful as the long-faced sad sack ... and his chemistry with Shimizu is very believable .\n2141\tYoung Hanks and Fisk , who vaguely resemble their celebrity parents , bring fresh good looks and an ease in front of the camera to the work .\n2142\tA captivatingly quirky hybrid of character portrait , romantic comedy and beat-the-clock thriller .\n2143\tThe film sparkles with the the wisdom and humor of its subjects .\n2144\tIf -LRB- Jaglom 's -RRB- latest effort is not the director at his most sparkling , some of its repartee is still worth hearing .\n2145\tLike The English Patient and The Unbearable Lightness of Being , The Hours is one of those reputedly `` unfilmable '' novels that has bucked the odds to emerge as an exquisite motion picture in its own right .\n2146\tJust about the best straight-up , old-school horror film of the last 15 years .\n2147\tA chilling tale of one of the great crimes of 20th Century France : the murder of two rich women by their servants in 1933 .\n2148\tAn oddity , to be sure , but one that you might wind up remembering with a degree of affection rather than revulsion .\n2149\tWhile the film is not entirely successful , it still manages to string together enough charming moments to work .\n2150\tA winning piece of work filled with love for the movies of the 1960s .\n2151\tE.T. works because its flabbergasting principals , 14-year-old Robert MacNaughton , 6-year-old Drew Barrymore and 10-year-old Henry Thomas , convince us of the existence of the wise , wizened visitor from a faraway planet .\n2152\tHelps to remind the First World that HIV\\/AIDS is far from being yesterday 's news .\n2153\tA heartening tale of small victories and enduring hope .\n2154\tThe vistas are sweeping and the acting is far from painful .\n2155\tJackson and co have brought back the value and respect for the term epic cinema .\n2156\tIt may be a somewhat backhanded compliment to say that the film makes the viewer feel like the movie 's various victimized audience members after a while , but it also happens to be the movie 's most admirable quality\n2157\tCharlotte Sometimes is a brilliant movie .\n2158\tIt is about irrational , unexplainable life and it seems so real because it does not attempt to filter out the complexity .\n2159\tA delightful stimulus for the optic nerves , so much that it 's forgivable that the plot feels like every other tale of a totalitarian tomorrow .\n2160\tDefies logic , the laws of physics and almost anyone 's willingness to believe in it .\n2161\tBut darned if it does n't also keep us riveted to our seats .\n2162\tA complex psychological drama about a father who returns to his son 's home after decades away .\n2163\tWriter and director Otar Iosseliani 's pleasant tale about a factory worker who escapes for a holiday in Venice reveals how we all need a playful respite from the grind to refresh our souls .\n2164\tThis is NOT a retread of `` Dead Poets ' Society . ''\n2165\tSweet and memorable film .\n2166\tA smart , arch and rather cold-blooded comedy .\n2167\tKeenly observed and refreshingly natural , Swimming gets the details right , from its promenade of barely clad bodies in Myrtle Beach , S.C. , to the adrenaline jolt of a sudden lunch rush at the diner .\n2168\t... begins on a high note and sustains it beautifully .\n2169\tDavis ... gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences .\n2170\t` it 's better to go in knowing full well what 's going to happen , but willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists .\n2171\tCynics need not apply . '\n2172\tFunny , somber , absurd , and , finally , achingly sad , Bartleby is a fine , understated piece of filmmaking .\n2173\t`` Red Dragon '' is entertaining .\n2174\tAn obvious copy of one of the best films ever made , how could it not be ?\n2175\tBut it is entertaining on an inferior level .\n2176\tIt is a popcorn film , not a must-own , or even a must-see .\n2177\tSucceeds only because Bullock and Grant were made to share the silver screen .\n2178\tBoth flawed and delayed , Martin Scorcese 's Gangs of New York still emerges as his most vital work since GoodFellas .\n2179\tAs any creature-feature fan knows , when you cross toxic chemicals with a bunch of exotic creatures , you get a lot of running around , screaming and death .\n2180\tOn that score , the film certainly does n't disappoint .\n2181\tAs the movie traces Mr. Brown 's athletic exploits , it is impossible not to be awed by the power and grace of one of the greatest natural sportsmen of modern times .\n2182\tA moving and solidly entertaining comedy\\/drama that should bolster director and co-writer Juan JosÃ© Campanella 's reputation in the United States .\n2183\tThanks to confident filmmaking and a pair of fascinating performances , the way to that destination is a really special walk in the woods .\n2184\tBeautifully shot , delicately scored and powered by a set of heartfelt performances , it 's a lyrical endeavour .\n2185\tA macabre and very stylized Swedish fillm about a modern city where all the religious and civic virtues that hold society in place are in tatters .\n2186\tA stylistic romp that 's always fun to watch .\n2187\tInformative , intriguing , observant , often touching ... gives a human face to what 's often discussed in purely abstract terms .\n2188\t... once the true impact of the day unfolds , the power of this movie is undeniable .\n2189\tAn honest , sensitive story from a Vietnamese point of view .\n2190\tA buoyant romantic comedy about friendship , love , and the truth that we 're all in this together .\n2191\tThe film 's intimate camera work and searing performances pull us deep into the girls ' confusion and pain as they struggle tragically to comprehend the chasm of knowledge that 's opened between them .\n2192\tIt 's the perfect star vehicle for Grant , allowing him to finally move away from his usual bumbling , tongue-tied screen persona .\n2193\tGaunt , silver-haired and leonine , -LRB- Harris -RRB- brings a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman .\n2194\tA disturbing examination of what appears to be the definition of a ` bad ' police shooting .\n2195\tIt 's been made with an innocent yet fervid conviction that our Hollywood has all but lost .\n2196\tNot only a reminder of how they used to make movies , but also how they sometimes still can be made .\n2197\tA three-hour cinema master class .\n2198\tEyre is on his way to becoming the American Indian Spike Lee .\n2199\tA witty , whimsical feature debut .\n2200\tWarm in its loving yet unforgivingly inconsistent depiction of everyday people , relaxed in its perfect quiet pace and proud in its message .\n2201\tI loved this film .\n2202\tIt provides a grim , upsetting glimpse at the lives of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza .\n2203\tClint Eastwood 's Blood Work is a lot like a well-made PB & J sandwich : familiar , fairly uneventful and boasting no real surprises -- but still quite tasty and inviting all the same .\n2204\tA movie that will surely be profane , politically charged music to the ears of Cho 's fans .\n2205\tMuch of this slick and sprightly CGI feature is sufficiently funny to amuse even the most resolutely unreligious parents who escort their little ones to megaplex screenings .\n2206\tRarely , a movie is more than a movie .\n2207\tGo .\n2208\tJacquot 's strategy allows his cast the benefit of being able to give full performances ... while demonstrating vividly that the beauty and power of the opera reside primarily in the music itself .\n2209\tQuitting delivers a sucker-punch , and its impact is all the greater beause director Zhang 's last film , the cuddly Shower , was a non-threatening multi-character piece centered around a public bath house .\n2210\tBy not averting his eyes , Solondz forces us to consider the unthinkable , the unacceptable , the unmentionable .\n2211\tOne Hour Photo may seem disappointing in its generalities , but it 's the little nuances that perhaps had to escape from director Mark Romanek 's self-conscious scrutiny to happen , that finally get under your skin .\n2212\tWhile general audiences might not come away with a greater knowledge of the facts of Cuban music , they 'll be treated to an impressive and highly entertaining celebration of its sounds .\n2213\tA fascinating documentary that provides a rounded and revealing overview of this ancient holistic healing system\n2214\tBirthday Girl lucks out with Chaplin and Kidman , who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story , but who can also negotiate the movie 's darker turns .\n2215\tAn interesting look behind the scenes of Chicago-based rock group Wilco ...\n2216\tSharp edges and a deep vein of sadness run through its otherwise comic narrative .\n2217\tThere 's lots of cool stuff packed into ESPN 's Ultimate X.\n2218\tRock solid family fun out of the gates , extremely imaginative through out , but wanes in the middle\n2219\tThe Ya-Ya 's have many secrets and one is - the books are better .\n2220\tTranslating complex characters from novels to the big screen is an impossible task but they are true to the essence of what it is to be Ya-Ya .\n2221\tThe touch is generally light enough and the performances , for the most part , credible .\n2222\tI liked About Schmidt a lot , but I have a feeling that I would have liked it much more if Harry & Tonto never existed .\n2223\tSteers has an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens -- especially the a \\*\\* holes .\n2224\tThat Storytelling has value can not be denied .\n2225\tNot even Solondz 's thirst for controversy , sketchy characters and immature provocations can fully succeed at cheapening it .\n2226\tOnce the downward spiral comes to pass , Auto Focus bears out as your typical junkie opera ...\n2227\tA knowing sense of humor and a lot of warmth ignite Son of the Bride .\n2228\tA rich tale of our times , very well told with an appropriate minimum of means .\n2229\tThe characters are complex and quirky , but entirely believable as the remarkable ensemble cast brings them to life .\n2230\tIn all fairness , I must report that the children of varying ages in my audience never coughed , fidgeted or romped up and down the aisles for bathroom breaks .\n2231\tAs gory as the scenes of torture and self-mutilation may be , they are pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting .\n2232\tEfficient , suitably anonymous chiller .\n2233\tGorgeous scenes , masterful performances , but the sickly sweet gender normative narrative left an acrid test in this gourmet 's mouth .\n2234\tThe hot topics of the plot are relegated to the background -- a welcome step forward from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty .\n2235\tIt 's usually a bad sign when directors abandon their scripts and go where the moment takes them , but Olympia , Wash. , based filmmakers Anne de Marcken and Marilyn Freeman did just that and it 's what makes their project so interesting .\n2236\tA memorable experience that , like many of his works , presents weighty issues colorfully wrapped up in his own idiosyncratic strain of kitschy goodwill .\n2237\tExecuted with such gentle but insistent sincerity , with such good humor and appreciation of the daily grind that only the most hardhearted Scrooge could fail to respond .\n2238\tThe gentle comic treatment of adolescent sturm und drang should please fans of Chris Fuhrman 's posthumously published cult novel .\n2239\tDirector Claude Chabrol has become the master of innuendo .\n2240\tIt is not what you see , it is what you think you see .\n2241\tA deftly entertaining film , smartly played and smartly directed .\n2242\tA documentary to make the stones weep -- as shameful as it is scary .\n2243\tI hope the movie is widely seen and debated with appropriate ferocity and thoughtfulness .\n2244\tA thought-provoking look at how Western foreign policy - however well intentioned - can wreak havoc in other cultures .\n2245\tAsks what truth can be discerned from non-firsthand experience , and specifically questions cinema 's capability for recording truth .\n2246\tThe journey to the secret 's eventual discovery is a separate adventure , and thrill enough .\n2247\tA quiet , disquieting triumph .\n2248\tDarkly funny and frequently insightful .\n2249\t... the tale of her passionate , tumultuous affair with Musset unfolds as Sand 's masculine persona , with its love of life and beauty , takes form .\n2250\tIf you want to see a train wreck that you ca n't look away from , then look no further , because here it is .\n2251\tThere 's so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles .\n2252\tThe search for redemption makes for a touching love story , mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters ' suffering .\n2253\tA film of ideas and wry comic mayhem .\n2254\tAt its worst the screenplay is callow , but at its best it is a young artist 's thoughtful consideration of fatherhood .\n2255\tA worthwhile documentary , whether you 're into rap or not , even if it may still leave you wanting more answers as the credits roll .\n2256\tFessenden 's narrative is just as much about the ownership and redefinition of myth as it is about a domestic unit finding their way to joy .\n2257\tThat the film opens with maggots crawling on a dead dog is not an out of place metaphor .\n2258\tStanley Kwan has directed not only one of the best gay love stories ever made , but one of the best love stories of any stripe .\n2259\tThe concert footage is stirring , the recording sessions are intriguing , and -- on the way to striking a blow for artistic integrity -- this quality band may pick up new admirers .\n2260\tNorton holds the film together .\n2261\t-LRB- There 's -RRB- quite a bit of heart , as you would expect from the directors of The Little Mermaid and Aladdin .\n2262\tYou wo n't have any trouble getting kids to eat up these Veggies .\n2263\tA creaky staircase gothic .\n2264\tEnjoyably dumb , sweet , and intermittently hilarious -- if you 've a taste for the quirky , steal a glimpse .\n2265\tA movie that sends you out of the theater feeling like you 've actually spent time living in another community .\n2266\tLight-years ahead of paint-by-number American blockbusters like Pearl Harbor , at least artistically .\n2267\tA fascinating documentary about the long and eventful spiritual journey of the guru who helped launch the New Age .\n2268\tIsabelle Huppert excels as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol 's most intense psychological mysteries .\n2269\tPerhaps not since Nelson Eddy crooned his Indian Love Call to Jeanette MacDonald has there been a movie so unabashedly Canadian , not afraid to risk American scorn or disinterest .\n2270\tWedding feels a bit anachronistic .\n2271\tStill , not every low-budget movie must be quirky or bleak , and a happy ending is no cinematic sin .\n2272\tIt 's still a comic book , but Maguire makes it a comic book with soul .\n2273\tBrings to a spectacular completion one of the most complex , generous and subversive artworks of the last decade .\n2274\tAn amusing and unexpectedly insightful examination of sexual jealousy , resentment and the fine line between passion and pretence .\n2275\tA fascinating , bombshell documentary that should shame Americans , regardless of whether or not ultimate blame finally lies with Kissinger .\n2276\tShould be required viewing for civics classes and would-be public servants alike .\n2277\tAdaptation 's success in engaging the audience in the travails of creating a screenplay is extraordinary .\n2278\tA polished and vastly entertaining caper film that puts the sting back into the con .\n2279\tIt 's no surprise that as a director Washington demands and receives excellent performances , from himself and from newcomer Derek Luke .\n2280\t... while each moment of this broken character study is rich in emotional texture , the journey does n't really go anywhere .\n2281\tThe film gets close to the chimps the same way Goodall did , with a serious minded patience , respect and affection .\n2282\tIt 's an often-cute film but either needs more substance to fill the time or some judicious editing .\n2283\tThis may be Burns 's strongest film since The Brothers McMullen .\n2284\tWhat makes this film special is Serry 's ability to take what is essentially a contained family conflict and put it into a much larger historical context .\n2285\tIt 's Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer .\n2286\tIt is OK for a movie to be something of a sitcom apparatus , if the lines work , the humor has point and the actors are humanly engaged .\n2287\tThough not for everyone , The Guys is a somber trip worth taking .\n2288\tA sly female empowerment movie , although not in a way anyone would expect .\n2289\tYou really have to salute writer-director Haneke -LRB- he adapted Elfriede Jelinek 's novel -RRB- for making a film that is n't nearly as graphic but much more powerful , brutally shocking and difficult to watch .\n2290\tIt 's a wonderful , sobering , heart-felt drama .\n2291\tRuns on the pure adrenalin of Pacino 's performance .\n2292\tThe Paradiso 's rusted-out ruin and ultimate collapse during the film 's final -LRB- restored -RRB- third ... emotionally belittle a cinema classic .\n2293\tSometimes shorter is better .\n2294\tPhillip Noyce and all of his actors -- as well as his cinematographer , Christopher Doyle -- understand the delicate forcefulness of Greene 's prose , and it 's there on the screen in their version of The Quiet American .\n2295\tThe film just might turn on many people to opera , in general , an art form at once visceral and spiritual , wonderfully vulgar and sublimely lofty -- and as emotionally grand as life .\n2296\tAs a vehicle to savour Binoche 's skill , the film is well worthwhile .\n2297\tThe huskies are beautiful , the border collie is funny and the overall feeling is genial and decent .\n2298\tWhatever complaints I might have , I 'd take -LRB- its -RRB- earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor 's Club any time .\n2299\tMastering its formidable arithmetic of cameras and souls , Group articulates a flood of emotion .\n2300\tA pretty decent kid-pleasing , tolerable-to-adults lark of a movie .\n2301\tEven during the climactic hourlong cricket match , boredom never takes hold .\n2302\tCombine the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural -- why did n't Hollywood think of this sooner ?\n2303\tLike Kubrick , Soderbergh is n't afraid to try any genre and to do it his own way .\n2304\tNothing can detract from the affection of that moral favorite : friends will be friends through thick and thin .\n2305\tIf the film has a problem , its shortness disappoints : You want the story to go on and on .\n2306\tUnlike most anime , whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes , Metropolis never seems hopelessly juvenile .\n2307\tThe plot twists give I Am Trying to Break Your Heart an attraction it desperately needed .\n2308\tThe most brilliant and brutal UK crime film since Jack Carter went back to Newcastle , the first half of Gangster No. 1 drips with style and , at times , blood .\n2309\tLike its New England characters , most of whom wander about in thick clouds of denial , the movie eventually gets around to its real emotional business , striking deep chords of sadness .\n2310\tThe Bai brothers have taken an small slice of history and opened it up for all of us to understand , and they 've told a nice little story in the process .\n2311\tFlamboyant in some movies and artfully restrained in others , 65-year-old Jack Nicholson could be looking at his 12th Oscar nomination by proving that he 's now , more than ever , choosing his roles with the precision of the insurance actuary .\n2312\t... is there a deeper , more direct connection between these women , one that spans time and reveals meaning ?\n2313\tYou bet there is and it 's what makes this rather convoluted journey worth taking .\n2314\tThe most amazing super-sized dosage of goofball stunts any `` Jackass '' fan could want .\n2315\tReal Women may have many agendas , but it also will win you over , in a big way .\n2316\tYoung Everlyn Sampi , as the courageous Molly Craig , simply radiates star-power potential in this remarkable and memorable film .\n2317\tSurprisingly powerful and universal .\n2318\tApart from its own considerable achievement , Metropolis confirms Tezuka 's status as both the primary visual influence on the animÃ© tradition and its defining philosophical conscience .\n2319\tI 'll put it this way : If you 're in the mood for a melodrama narrated by talking fish , this is the movie for you .\n2320\tMorvern Callar confirms Lynne Ramsay as an important , original talent in international cinema .\n2321\tWell-done supernatural thriller with keen insights into parapsychological phenomena and the soulful nuances of the grieving process .\n2322\tA plethora of engaging diatribes on the meaning of ` home , ' delivered in grand passion by the members of the various households .\n2323\tIt 's technically sumptuous but also almost wildly alive .\n2324\tThis film puts Wang at the forefront of China 's Sixth Generation of film makers .\n2325\tit 's refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original .\n2326\tWiseman is patient and uncompromising , letting his camera observe and record the lives of women torn apart by a legacy of abuse .\n2327\tThere 's none of the happily-ever - after spangle of Monsoon Wedding in Late Marriage -- and that 's part of what makes Dover Kosashvili 's outstanding feature debut so potent .\n2328\tAn ingenious and often harrowing look at damaged people and how families can offer either despair or consolation .\n2329\tArguably the best script that Besson has written in years .\n2330\tIt 's no lie -- Big Fat Liar is a real charmer .\n2331\tInvigorating , surreal , and resonant with a rainbow of emotion .\n2332\tDirector Alfonso Cuaron gets vivid , convincing performances from a fine cast , and generally keeps things going at a rapid pace , occasionally using an omniscient voice-over narrator in the manner of French New Wave films .\n2333\tPray has really done his subject justice .\n2334\tAn unexpectedly sweet story of sisterhood .\n2335\tMaintains your sympathy for this otherwise challenging soul by letting you share her one-room world for a while .\n2336\tA subtle , humorous , illuminating study of politics , power and social mobility .\n2337\tEven if you have no interest in the gang-infested , East-vs .\n2338\t- West Coast rap wars , this modern mob music drama never fails to fascinate .\n2339\tNair 's attention to detail creates an impeccable sense of place , while Thurman and Lewis give what can easily be considered career-best performances .\n2340\tBerry 's saucy , full-bodied performance gives this aging series a much needed kick , making `` Die Another Day '' one of the most entertaining Bonds in years\n2341\tRed Dragon is less baroque and showy than Hannibal , and less emotionally affecting than Silence .\n2342\tBut , like Silence , it 's a movie that gets under your skin .\n2343\tCaviezel embodies the transformation of his character completely .\n2344\tA creepy , intermittently powerful study of a self-destructive man ... about as unsettling to watch as an exploratory medical procedure or an autopsy .\n2345\tPacino and Williams seem to keep upping the ante on each other , just as their characters do in the film .\n2346\tWhat results is the best performance from either in years .\n2347\tThe cast is top-notch and I predict there will be plenty of female audience members drooling over Michael Idemoto as Michael .\n2348\tBÃ©art and Berling are both superb , while Huppert ... is magnificent .\n2349\tAll the actors are good in Pauline & Paulette but van der Groen , described as ` Belgium 's national treasure , ' is especially terrific as Pauline .\n2350\tMiyazaki has created such a vibrant , colorful world , it 's almost impossible not to be swept away by the sheer beauty of his images .\n2351\tMuccino seems to be exploring the idea of why human beings long for what they do n't have , and how this gets us in trouble .\n2352\tBut even while his characters are acting horribly , he is always sympathetic .\n2353\tWhether or not you buy Mr. Broomfield 's findings , the film acquires an undeniable entertainment value as the slight , pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover .\n2354\tOzpetek joins the ranks of those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled .\n2355\t... an eerily suspenseful , deeply absorbing piece that works as a treatise on spirituality as well as a solid sci-fi thriller .\n2356\tI 've never seen or heard anything quite like this film , and I recommend it for its originality alone .\n2357\tNicole Kidman makes it a party worth attending .\n2358\tThe direction has a fluid , no-nonsense authority , and the performances by Harris , Phifer and Cam ` ron seal the deal .\n2359\tThe Komediant is a tale worth catching .\n2360\tThe writing is clever and the cast is appealing .\n2361\tThe simplicity of The Way Home has few equals this side of Aesop\n2362\tLife on the rez is no picnic : this picture shows you why .\n2363\tSpielberg has managed to marry science fiction with film noir and action flicks with philosophical inquiry .\n2364\tIt 's the type of film about growing up that we do n't see often enough these days : realistic , urgent , and not sugarcoated in the least .\n2365\tA taut , sobering film .\n2366\tExudes the fizz of a Busby Berkeley musical and the visceral excitement of a sports extravaganza .\n2367\tIt 's full of cheesy dialogue , but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s .\n2368\tThe results , if not memorable , are at least interesting .\n2369\tA quietly moving look back at what it was to be Iranian-American in 1979 .\n2370\tLike a veteran head cutter , Barbershop is tuned in to its community .\n2371\tI 'm sure mainstream audiences will be baffled , but , for those with at least a minimal appreciation of Woolf and Clarissa Dalloway , The Hours represents two of those well spent .\n2372\tYou live the mood rather than savour the story .\n2373\tAngela Gheorghiu as famous prima donna Floria Tosca , Roberto Alagna as her lover Mario Cavaradossi , and Ruggero as the villainous , lecherous police chief Scarpia , all sing beautifully and act adequately .\n2374\tWhile there are times when the film 's reach exceeds its grasp , the production works more often than it does n't .\n2375\tWhile Scorsese 's bold images and generally smart casting ensure that `` Gangs '' is never lethargic , the movie is hindered by a central plot that 's peppered with false starts and populated by characters who are nearly impossible to care about .\n2376\tWatching this gentle , mesmerizing portrait of a man coming to terms with time , you barely realize your mind is being blown .\n2377\tThe beautifully choreographed kitchen ballet is simple but absorbing .\n2378\tThere 's ... an underlying Old World sexism to Monday Morning that undercuts its charm .\n2379\t`` The best Disney movie since the Lion King ''\n2380\tTranscends its agenda to deliver awe-inspiring , at times sublime , visuals and offer a fascinating glimpse into the subculture of extreme athletes whose derring-do puts the X into the games .\n2381\tThink of it as Gidget , only with muscles and a lot more smarts , but just as endearing and easy to watch .\n2382\tThere is no solace here , no entertainment value , merely a fierce lesson in where filmmaking can take us .\n2383\tGiggling at the absurdities and inconsistencies is part of the fun .\n2384\tBut the talented cast alone will keep you watching , as will the fight scenes .\n2385\tArteta paints a picture of lives lived in a state of quiet desperation .\n2386\tDrug abuse , infidelity and death are n't usually comedy fare , but Turpin 's film allows us to chuckle through the angst .\n2387\tWhile Insomnia is in many ways a conventional , even predictable remake , Nolan 's penetrating undercurrent of cerebral and cinemantic flair lends -LRB- it -RRB- stimulating depth .\n2388\tEfteriades gives the neighborhood -- scenery , vibe and all -- the cinematic equivalent of a big , tender hug .\n2389\tThis is a nicely handled affair , a film about human darkness but etched with a light -LRB- yet unsentimental -RRB- touch .\n2390\tAmazing !\n2391\tA college story that works even without vulgarity , sex scenes , and cussing !\n2392\tThe amazing film work is so convincing that by movies ' end you 'll swear you are wet in some places and feel sand creeping in others .\n2393\tA raunchy and frequently hilarious follow-up to the gifted Korean American stand-up 's I 'm the One That I Want .\n2394\tIf you ever wanted to be an astronaut , this is the ultimate movie experience - it 's informative and breathtakingly spectacular .\n2395\tWhile Parker and co-writer Catherine di Napoli are faithful to Melville 's plotline , they and a fully engaged supporting cast ... have made the old boy 's characters more quick-witted than any English Lit major would have thought possible .\n2396\tA smart , sassy and exceptionally charming romantic comedy .\n2397\tThere are flaws , but also stretches of impact and moments of awe ; we 're wrapped up in the characters , how they make their choices , and why .\n2398\tA gift to anyone who loves both dance and cinema\n2399\tIt seems Grant does n't need the floppy hair and the self-deprecating stammers after all .\n2400\tA reminder that beyond all the hype and recent digital glitz , Spielberg knows how to tell us about people .\n2401\tOne of the finest , most humane and important Holocaust movies ever made .\n2402\tAn engrossing and infectiously enthusiastic documentary .\n2403\tA beautiful , timeless and universal tale of heated passions -- jealousy , betrayal , forgiveness and murder .\n2404\tA culture-clash comedy that , in addition to being very funny , captures some of the discomfort and embarrassment of being a bumbling American in Europe .\n2405\tShattering , devastating documentary on two maladjusted teens in a downward narcotized spiral .\n2406\tExtraordinary debut from Josh Koury .\n2407\tThe most compelling performance of the year adds substantial depth to this shocking testament to anti-Semitism and neo-fascism .\n2408\tFor those who are intrigued by politics of the '70s , the film is every bit as fascinating as it is flawed .\n2409\tAll right , so it 's not a brilliant piece of filmmaking , but it is a funny -LRB- sometimes hilarious -RRB- comedy with a deft sense of humor about itself , a playful spirit and a game cast .\n2410\tDouglas McGrath 's Nicholas Nickleby does Dickens as it should be done cinematically .\n2411\tIt 's a lovely , eerie film that casts an odd , rapt spell .\n2412\tThe quirky and recessive charms of co-stars Martin Donovan and Mary-Louise Parker help overcome the problematic script .\n2413\tIt 's good to see Michael Caine whipping out the dirty words and punching people in the stomach again .\n2414\tYou just know something terrible is going to happen .\n2415\tBut when it does , you 're entirely unprepared .\n2416\tIt 's fun , wispy , wise and surprisingly inoffensive for a film about a teen in love with his stepmom .\n2417\tAble to provide insight into a fascinating part of theater history .\n2418\tAn unflinching , complex portrait of a modern Israel that is rarely seen on-screen .\n2419\tA Jewish WW II doc that is n't trying simply to out-shock , out-outrage or out-depress its potential audience !\n2420\tWho knew ...\n2421\tIt 's a familiar story , but one that is presented with great sympathy and intelligence .\n2422\tGently humorous and touching .\n2423\tIt wo n't hold up over the long haul , but in the moment , Finch 's tale provides the forgettable pleasures of a Saturday matinee .\n2424\tKinnear 's performance is a career-defining revelation .\n2425\tThe film is predictable in the reassuring manner of a beautifully sung holiday carol .\n2426\t... hits every cliche we 've come to expect , including the assumption that `` crazy '' people are innocent , childlike and inherently funny .\n2427\tThe strong subject matter continues to shock throughout the film .\n2428\tNot everyone will play the dark , challenging tune taught by The Piano Teacher .\n2429\tA certain sexiness underlines even the dullest tangents .\n2430\tYou may be captivated , as I was , by its moods , and by its subtly transformed star , and still wonder why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear .\n2431\tThere is no substitute for on-screen chemistry , and when Friel pulls the strings that make Williams sink into melancholia , the reaction in Williams is as visceral as a gut punch .\n2432\tThat old adage about women being unknowable gets an exhilarating new interpretation in Morvern Callar .\n2433\tA mix of gritty realism , crisp storytelling and radiant compassion that effortlessly draws you in .\n2434\tAfter watching it , you can only love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history .\n2435\tIn his U.S. debut , Mr. Schnitzler proves himself a deft pace master and stylist .\n2436\tUltimate X is a ride , basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine .\n2437\tRich in shadowy metaphor and as sharp as a samurai sword , Jiang Wen 's Devils on the Doorstep is a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut .\n2438\tOffers a clear-eyed chronicle of a female friendship that is more complex and honest than anything represented in a Hollywood film .\n2439\tA winning comedy with its wry observations about long-lived friendships and the ways in which we all lose track of ourselves by trying to please others .\n2440\tIts cast full of caffeinated comedy performances more than make up for its logical loopholes , which fly by so fast there 's no time to think about them anyway .\n2441\tLohman adapts to the changes required of her , but the actress and director Peter Kosminsky never get the audience to break through the wall her character erects\n2442\tAlthough it includes a fair share of dumb drug jokes and predictable slapstick , `` Orange County '' is far funnier than it would seem to have any right to be .\n2443\tFor a movie audience , The Hours does n't connect in a neat way , but introduces characters who illuminate mysteries of sex , duty and love .\n2444\tA bright , inventive , thoroughly winning flight of revisionist fancy .\n2445\tOzpetek 's effort has the scope and shape of an especially well-executed television movie .\n2446\tAffirms the gifts of all involved , starting with Spielberg and going right through the ranks of the players -- on-camera and off -- that he brings together .\n2447\tA delightful little film that revels in its own simplicity , Mostly Martha will leave you with a smile on your face and a grumble in your stomach .\n2448\tMakes one thing abundantly clear .\n2449\tAmerican musical comedy as we know it would n't exist without the precedent of Yiddish theater , whose jolly , fun-for-fun 's - sake communal spirit goes to the essence of Broadway .\n2450\tDeepa Mehta provides an accessible introduction as well as some intelligent observations on the success of Bollywood in the Western world .\n2451\tIf anything , the film is doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans .\n2452\tIn addition to gluing you to the edge of your seat , Changing Lanes is also a film of freshness , imagination and insight .\n2453\tPan Nalin 's exposition is beautiful and mysterious , and the interviews that follow , with the practitioners of this ancient Indian practice , are as subtle and as enigmatic .\n2454\tThe mood , look and tone of the film fit the incredible storyline to a T.\n2455\tIt 's crafty , energetic and smart -- the kid is sort of like a fourteen-year old Ferris Bueller .\n2456\tA work of extraordinary journalism , but it is also a work of deft and subtle poetry .\n2457\tIt 's funny and human and really pretty damned wonderful , all at once .\n2458\tAt 78 minutes it just zings along with vibrance and warmth .\n2459\tA strangely stirring experience that finds warmth in the coldest environment and makes each crumb of emotional comfort feel like a 10-course banquet .\n2460\tSometimes this ` Blood ' seems as tired as its protagonist ... Still , the pulse never disappears entirely , and the picture crosses the finish line winded but still game .\n2461\tThe stripped-down dramatic constructs , austere imagery and abstract characters are equal parts poetry and politics , obvious at times but evocative and heartfelt .\n2462\tDogtown and Z-Boys more than exposes the roots of the skateboarding boom that would become `` the punk kids ' revolution . ''\n2463\t... plenty of warmth to go around , with music and laughter and the love of family .\n2464\tIt 'll keep you wide awake and ... very tense .\n2465\tCould use a little more humanity , but it never lacks in eye-popping visuals .\n2466\t-LRB- Danny Huston gives -RRB- an astounding performance that deftly , gradually reveals a real human soul buried beneath a spellbinding serpent 's smirk .\n2467\tThese three films form a remarkably cohesive whole , both visually and thematically , through their consistently sensitive and often exciting treatment of an ignored people .\n2468\tA funny and well-contructed black comedy where the old adage `` be careful what you wish for '' is given a full workout .\n2469\tIt reaffirms life as it looks in the face of death .\n2470\tThe film is reasonably entertaining , though it begins to drag two-thirds through , when the melodramatic aspects start to overtake the comedy .\n2471\tThis is more fascinating -- being real -- than anything seen on Jerry Springer .\n2472\tA different movie -- sometimes tedious -- by a director many viewers would like to skip but film buffs should get to know .\n2473\tWilliams plays Sy , another of his open-faced , smiling madmen , like the killer in Insomnia .\n2474\tHe does this so well you do n't have the slightest difficulty accepting him in the role .\n2475\tTwist open the Ouzo !\n2476\tIt 's time to let your hair down -- Greek style .\n2477\tA vibrant whirlwind of love , family and all that goes with it , My Big Fat Greek Wedding is a non-stop funny feast of warmth , colour and cringe .\n2478\tThought-provoking and stylish , if also somewhat hermetic .\n2479\tBroomfield is energized by Volletta Wallace 's maternal fury , her fearlessness , and because of that , his film crackles .\n2480\tWhile it has definite weaknesses -- like a rather unbelievable love interest and a meandering ending -- this '60s caper film is a riveting , brisk delight .\n2481\tFunny in a sick , twisted sort of way .\n2482\tIf cinema had been around to capture the chaos of France in the 1790 's , one imagines the result would look like something like this .\n2483\tIt 's a talking head documentary , but a great one .\n2484\tThe Fast Runner ' transports the viewer into an unusual space\n2485\tUltimately engages less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese ` cultural revolution . '\n2486\t... a solid , well-formed satire .\n2487\tAs part of Mr. Dong 's continuing exploration of homosexuality in America , Family Fundamentals is an earnest study in despair .\n2488\tMost consumers of lo mein and General Tso 's chicken barely give a thought to the folks who prepare and deliver it , so , hopefully , this film will attach a human face to all those little steaming cartons .\n2489\tHatosy ... portrays young Brendan with his usual intelligence and subtlety , not to mention a convincing brogue .\n2490\tThe filmmakers ' eye for detail and the high standards of performance convey a strong sense of the girls ' environment .\n2491\tUneven , self-conscious but often hilarious spoof .\n2492\tEven bigger and more ambitious than the first installment , Spy Kids 2 looks as if it were made by a highly gifted 12-year-old instead of a grown man .\n2493\tThanks to The ChÃ¢teau 's balance of whimsicality , narrative discipline and serious improvisation , almost every relationship and personality in the film yields surprises .\n2494\tAlan and his fellow survivors are idiosyncratic enough to lift the movie above its playwriting 101 premise .\n2495\tFresh and raw like a blown-out vein , Narc takes a walking-dead , cop-flick subgenre and beats new life into it .\n2496\tThe premise of Jason X is silly but strangely believable .\n2497\tIt 's a wise and powerful tale of race and culture forcefully told , with superb performances throughout .\n2498\tAn awfully good , achingly human picture .\n2499\tThe cast comes through even when the movie does n't .\n2500\tYou 'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness , but the point is , you 'll laugh .\n2501\tDefinitely worth 95 minutes of your time .\n2502\tThe film jolts the laughs from the audience -- as if by cattle prod .\n2503\tA sexy , surprising romance ... Idemoto and Kim make a gorgeous pair ... their scenes brim with sexual possibility and emotional danger .\n2504\tToes the fine line between cheese and earnestness remarkably well ; everything is delivered with such conviction that it 's hard not to be carried away .\n2505\tWhereas Oliver Stone 's conspiracy thriller JFK was long , intricate , star-studded and visually flashy , Interview with the Assassin draws its considerable power from simplicity .\n2506\tFunny , sexy , devastating and incurably romantic .\n2507\tTriple X is a double agent , and he 's one bad dude .\n2508\tWhen you 've got the wildly popular Vin Diesel in the equation , it adds up to big box office bucks all but guaranteed .\n2509\tVery well-written and very well-acted .\n2510\tA powerful and telling story that examines forbidden love , racial tension , and other issues that are as valid today as they were in the 1950s .\n2511\tYou emerge dazed , confused as to whether you 've seen pornography or documentary .\n2512\tIt ai n't art , by a long shot , but unlike last year 's lame Musketeer , this Dumas adaptation entertains .\n2513\tlikeable thanks to its cast , its cuisine and its quirky tunes .\n2514\tChilling in its objective portrait of dreary , lost twenty-first century America .\n2515\tHighly recommended as an engrossing story about a horrifying historical event and the elements which contributed to it .\n2516\t... there 's enough cool fun here to warm the hearts of animation enthusiasts of all ages .\n2517\tIt manages to squeeze by on Angelina Jolie 's surprising flair for self-deprecating comedy .\n2518\tSecretary manages a neat trick , bundling the flowers of perversity , comedy and romance into a strangely tempting bouquet of a movie .\n2519\tJudith and Zaza 's extended bedroom sequence ... is so intimate and sensual and funny and psychologically self-revealing that it makes most of what passes for sex in the movies look like cheap hysterics .\n2520\tPhotographed with melancholy richness and eloquently performed yet also decidedly uncinematic .\n2521\tA knowing look at female friendship , spiked with raw urban humor .\n2522\tAs I settled into my World War II memories , I found myself strangely moved by even the corniest and most hackneyed contrivances .\n2523\tThe overall effect is awe and affection -- and a strange urge to get on a board and , uh , shred , dude .\n2524\tIt 's that rare family movie -- genuine and sweet without relying on animation or dumb humor .\n2525\tThe Trinity Assembly approaches the endeavor with a shocking lack of irony , and George Ratliff 's documentary , Hell House , reflects their earnestness -- which makes for a terrifying film .\n2526\tConfessions may not be a straightforward bio , nor does it offer much in the way of Barris ' motivations , but the film is an oddly fascinating depiction of an architect of pop culture .\n2527\tA special kind of movie , this melancholic film noir reminded me a lot of Memento ...\n2528\tSimple , poignant and leavened with humor , it 's a film that affirms the nourishing aspects of love and companionship .\n2529\tTogether , Miller , Kuras and the actresses make Personal Velocity into an intricate , intimate and intelligent journey .\n2530\tThe wonder of Mostly Martha is the performance of Gedeck , who makes Martha enormously endearing .\n2531\tWith Notorious C.H.O. Cho proves she has the stuff to stand tall with Pryor , Carlin and Murphy .\n2532\tLess front-loaded and more shapely than the two-hour version released here in 1990 .\n2533\tWatching War Photographer , you come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals .\n2534\t-LRB- A -RRB- real pleasure in its laid-back way .\n2535\tSome may choose to interpret the film 's end as hopeful or optimistic but I think Payne is after something darker .\n2536\tThough it runs 163 minutes , Safe Conduct is anything but languorous .\n2537\tIt 's packed to bursting with incident , and with scores of characters , some fictional , some from history .\n2538\tA much better documentary -- more revealing , more emotional and more surprising -- than its pedestrian English title would have you believe .\n2539\tNotwithstanding my problem with the movie 's final half hour , I 'm going to recommend SECRETARY , based on the wonderful acting clinic put on by Spader and Gyllenhaal , and also the unique way Shainberg goes about telling what at heart is a sweet little girl -\n2540\tA well-crafted film that is all the more remarkable because it achieves its emotional power and moments of revelation with restraint and a delicate ambiguity .\n2541\tThe film has the uncanny ability to right itself precisely when you think it 's in danger of going wrong .\n2542\tMy Big Fat Greek Wedding is that rare animal known as ' a perfect family film , ' because it 's about family .\n2543\twould make an excellent companion piece to the similarly themed ` The French Lieutenant 's Woman . '\n2544\t... with the gifted Pearce on hand to keep things on semi-stable ground dramatically , this retooled Machine is ultimately effective enough at achieving the modest , crowd-pleasing goals it sets for itself .\n2545\tA movie that 's just plain awful but still manages to entertain on a guilty-pleasure , so-bad-it 's - funny level .\n2546\tA disoriented but occasionally disarming saga packed with moments out of an Alice in Wonderland adventure , a stalker thriller , and a condensed season of TV 's Big Brother .\n2547\tFunctions as both a revealing look at the collaborative process and a timely , tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing .\n2548\tWith a confrontational stance , Todd Solondz takes aim on political correctness and suburban families .\n2549\tA mess , but it 's a sincere mess .\n2550\tThis odd , distant Portuguese import more or less borrows from Bad Lieutenant and Les Vampires , and comes up with a kind of art-house gay porn film .\n2551\tFor a debut film , Skin of Man , Heart of Beast feels unusually assured .\n2552\tA photographic marvel of sorts , and it 's certainly an invaluable record of that special fishy community .\n2553\tIt 's soulful and unslick , and that 's apparently just what -LRB- Aniston -RRB- has always needed to grow into a movie career .\n2554\tAlthough Olivier Assayas ' elegantly appointed period drama seems , at times , padded with incident in the way of a too-conscientious adaptation ... its three-hour running time plays closer to two .\n2555\tA jaw-droppingly beautiful work that upends nearly every clichÃ© of Japanese animation while delivering a more than satisfactory amount of carnage .\n2556\tTerry is a sort of geriatric Dirty Harry , which will please Eastwood 's loyal fans -- and suits the story , wherein our hero must ride roughshod over incompetent cops to get his man .\n2557\tParts seem like they were lifted from Terry Gilliam 's subconscious , pressed through Kafka 's meat grinder and into BuÃ±uel 's casings\n2558\t` Like a child with an important message to tell ... -LRB- Skins ' -RRB- faults are easy to forgive because the intentions are lofty . '\n2559\tA delightful entree in the tradition of food movies .\n2560\tAn escapist confection that 's pure entertainment .\n2561\tThe Ring is worth a look , if you do n't demand much more than a few cheap thrills from your Halloween entertainment .\n2562\tThe movie ultimately relies a bit too heavily on grandstanding , emotional , Rocky-like moments ... but it 's such a warm and charming package that you 'll feel too happy to argue much .\n2563\tThrowing it all away for the fleeting joys of love 's brief moment .\n2564\tArmed with a game supporting cast , from the pitch-perfect Forster to the always hilarious Meara and Levy , Like Mike shoots and scores , doing its namesake proud .\n2565\tA decent-enough nail-biter that stands a good chance of being the big hit Franklin needs to stay afloat in Hollywood .\n2566\tBegins like a docu-drama but builds its multi-character story with a flourish .\n2567\tOne of the most genuinely sweet films to come along in quite some time .\n2568\tAfter an uncertain start , Murder hits and generally sustains a higher plateau with Bullock 's memorable first interrogation of Gosling .\n2569\tThe story ultimately takes hold and grips hard .\n2570\tA bit of a downer and a little over-dramatic at times , but this is a beautiful film for people who like their romances to have that French realism .\n2571\tAn emotionally strong and politically potent piece of cinema .\n2572\tEnticing and often funny documentary .\n2573\tGoing to this movie is a little like chewing whale blubber - it 's an acquired taste that takes time to enjoy , but it 's worth it , even if it does take 3 hours to get through .\n2574\tA portrait of hell so shattering it 's impossible to shake .\n2575\tAlmodovar is an imaginative teacher of emotional intelligence in this engaging film about two men who discover what William James once called ` the gift of tears . '\n2576\tBetter than the tepid Star Trek : Insurrection ; falls short of First Contact because the villain could n't pick the lint off Borg Queen Alice Krige 's cape ; and finishes half a parsec -LRB- a nose -RRB- ahead of Generations .\n2577\tAt times a bit melodramatic and even a little dated -LRB- depending upon where you live -RRB- , Ignorant Fairies is still quite good-natured and not a bad way to spend an hour or two .\n2578\tTense , terrific , sweaty-palmed fun .\n2579\tMajidi 's direction has never been smoother or more confident .\n2580\tWhat a bewilderingly brilliant and entertaining movie this is .\n2581\tHard , endearing , caring , warm .\n2582\tBring tissues .\n2583\tA thriller with an edge -- which is to say that it does n't follow the stale , standard , connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world .\n2584\t`` Me Without You '' is a probing examination of a female friendship set against a few dynamic decades .\n2585\tInherently caustic and oddly whimsical , the film chimes in on the grieving process and strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss .\n2586\tThough Frodo 's quest remains unfulfilled , a hardy group of determined New Zealanders has proved its creative mettle .\n2587\tIt 's a square , sentimental drama that satisfies , as comfort food often can .\n2588\tPure cinematic intoxication , a wildly inventive mixture of comedy and melodrama , tastelessness and swooning elegance .\n2589\tRamsay is clearly extraordinarily talented , and based on three short films and two features , here 's betting her third feature will be something to behold .\n2590\tI was impressed by how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon .\n2591\tA classy , sprightly spin on film .\n2592\tfast , frantic and fun , but also soon forgotten\n2593\tA spiffy animated feature about an unruly adolescent boy who is yearning for adventure and a chance to prove his worth .\n2594\tDevos and Cassel have tremendous chemistry -- their sexual and romantic tension , while never really vocalized , is palpable .\n2595\tFulfills the minimum requirement of Disney animation .\n2596\tA moving , if uneven , success .\n2597\tWith one exception , every blighter in this particular South London housing project digs into dysfunction like it 's a big , comforting jar of Marmite , to be slathered on crackers and served as a feast of bleakness .\n2598\tWickedly funny , visually engrossing , never boring , this movie challenges us to think about the ways we consume pop culture .\n2599\tThere 's plenty to impress about E.T.\n2600\tA chronicle not only of one man 's quest to be president , but of how that man single-handedly turned a plane full of hard-bitten , cynical journalists into what was essentially , by campaign 's end , an extended publicity department .\n2601\tUntil it goes off the rails in its final 10 or 15 minutes , Wendigo , Larry Fessenden 's spooky new thriller , is a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films .\n2602\t-LRB- Woo 's -RRB- most resonant film since The Killer .\n2603\tCollateral Damage is trash , but it earns extra points by acting as if it were n't .\n2604\tA whole lot of fun and funny in the middle , though somewhat less hard-hitting at the start and finish .\n2605\tMaybe it is formula filmmaking , but there 's nothing wrong with that if the film is well-crafted and this one is .\n2606\t-LRB- Fincher 's -RRB- camera sense and assured pacing make it an above-average thriller .\n2607\tThe film is insightful about Kissinger 's background and history .\n2608\tAn engrossing portrait of a man whose engaging manner and flamboyant style made him a truly larger-than-life character .\n2609\tA lot of the credit for the film 's winning tone must go to Grant , who has n't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him .\n2610\tExploits -LRB- headbanger -RRB- stereotypes in good fun , while adding a bit of heart and unsettling subject matter .\n2611\tA journey that is as difficult for the audience to take as it is for the protagonist -- yet it 's potentially just as rewarding .\n2612\tRatliff 's two previous titles , Plutonium Circus and Purgatory County show his penchant for wry , contentious configurations , and this film is part of that delicate canon .\n2613\tFrom its invitingly upbeat overture to its pathos-filled but ultimately life-affirming finale , Martin is a masterfully conducted work .\n2614\tPassions , obsessions , and loneliest dark spots are pushed to their most virtuous limits , lending the narrative an unusually surreal tone .\n2615\tA comedy that swings and jostles to the rhythms of life .\n2616\tAt times Auto Focus feels so distant you might as well be watching it through a telescope .\n2617\tYet in its own aloof , unreachable way it 's so fascinating you wo n't be able to look away for a second .\n2618\tIf you 're part of her targeted audience , you 'll cheer .\n2619\tOtherwise , maybe .\n2620\tAs animation increasingly emphasizes the computer and the cool , this is a film that takes a stand in favor of tradition and warmth .\n2621\tBlade II merges bits and pieces from fighting games , wire fu , horror movies , mystery , James Bond , wrestling , sci-fi and anime into one big bloody stew .\n2622\tInstead of hitting the audience over the head with a moral , Schrader relies on subtle ironies and visual devices to convey point of view .\n2623\tK-19 will not go down in the annals of cinema as one of the great submarine stories , but it is an engaging and exciting narrative of Man confronting the Demons of his own fear and paranoia .\n2624\tContrived as this may sound , Mr. Rose 's updating works surprisingly well .\n2625\tA glib but bouncy bit of sixties-style slickness in which the hero might wind up caught but the audience gets pure escapism .\n2626\tYou do n't need to be a hip-hop fan to appreciate Scratch , and that 's the mark of a documentary that works .\n2627\tBetween bursts of automatic gunfire , the story offers a trenchant critique of capitalism .\n2628\tCombines improbable melodrama -LRB- gored bullfighters , comatose ballerinas -RRB- with subtly kinky bedside vigils and sensational denouements , and yet at the end , we are undeniably touched .\n2629\tWhile the story 's undeniably hard to follow , Iwai 's gorgeous visuals seduce .\n2630\tIf you can get past the taboo subject matter , it will be well worth your time .\n2631\tA lovely film ... elegant , witty and beneath a prim exterior unabashedly romantic ... hugely enjoyable in its own right though not really faithful to its source 's complexity .\n2632\tScooby Doo is surely everything its fans are hoping it will be , and in that sense is a movie that deserves recommendation .\n2633\t-LRB- A -RRB- devastatingly powerful and astonishingly vivid Holocaust drama .\n2634\tA solid cast , assured direction and complete lack of modern day irony .\n2635\tThese characters are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field , and I 'm all for that .\n2636\tA sun-drenched masterpiece , part parlor game , part psychological case study , part droll social satire .\n2637\tWorth a look as a curiosity .\n2638\tYou watch for that sense of openness , the little surprises .\n2639\tDirector Peter Kosminsky gives these women a forum to demonstrate their acting ` chops ' and they take full advantage .\n2640\tAuto Focus is not your standard Hollywood bio-pic .\n2641\tSchrader aims to present an unflinching look at one man 's downfall , brought about by his lack of self-awareness .\n2642\tThe Bourne Identity should n't be half as entertaining as it is , but director Doug Liman and his colleagues have managed to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood .\n2643\tFor VeggieTales fans , this is more appetizing than a side dish of asparagus .\n2644\tIf you 're not a fan , it might be like trying to eat Brussels sprouts .\n2645\tRemove Spider-Man the movie from its red herring surroundings and it 's apparent that this is one summer film that satisfies .\n2646\tThe whole mildly pleasant outing -- the R rating is for brief nudity and a grisly corpse -- remains aloft not on its own self-referential hot air , but on the inspired performance of Tim Allen .\n2647\tA gorgeously strange movie , Heaven is deeply concerned with morality , but it refuses to spell things out for viewers .\n2648\tThe Emperor 's Club , ruthless in its own placid way , finds one of our most conservative and hidebound movie-making traditions and gives it new texture , new relevance , new reality .\n2649\tIt 's truly awful and heartbreaking subject matter , but one whose lessons are well worth revisiting as many times as possible .\n2650\tThough intrepid in exploring an attraction that crosses sexual identity , Ozpetek falls short in showing us Antonia 's true emotions ... But at the very least , His Secret Life will leave you thinking .\n2651\tThere is little question that this is a serious work by an important director who has something new to say about how , in the flip-flop of courtship , we often reel in when we should be playing out .\n2652\tThe message of such reflections -- intentional or not -- is that while no art grows from a vacuum , many artists exist in one .\n2653\tGooding is the energetic frontman , and it 's hard to resist his enthusiasm , even if the filmmakers come up with nothing original in the way of slapstick sequences .\n2654\tThe otherwise good-naturedness of Mr. Deeds , with its embrace of sheer goofiness and cameos of less - than-likely New York celebrities ... certainly raises the film above anything Sandler 's been attached to before .\n2655\tThe movie is brilliant , really .\n2656\tIt is philosophy , illustrated through everyday events .\n2657\tIt 's stylishly directed with verve ...\n2658\tGives an intriguing twist to the French coming-of-age genre .\n2659\tOffers an interesting look at the rapidly changing face of Beijing .\n2660\tA solid , psychological action film from Hong Kong .\n2661\tSee it now , before the inevitable Hollywood remake flattens out all its odd , intriguing wrinkles .\n2662\tHolm does his sly , intricate magic , and Iben Hjelje is entirely appealing as Pumpkin .\n2663\tAn enjoyable feel-good family comedy regardless of race .\n2664\tFeatures what is surely the funniest and most accurate depiction of writer 's block ever .\n2665\tIt would take a complete moron to foul up a screen adaptation of Oscar Wilde 's classic satire .\n2666\tIt 's bright , pristine style and bold colors make it as much fun as reading an oversized picture book before bedtime .\n2667\tIn the long , dishonorable history of quickie teen-pop exploitation , Like Mike stands out for its only partly synthetic decency .\n2668\tBravo for history rewritten , and for the uncompromising knowledge that the highest power of all is the power of love .\n2669\tLead actress GaÃ¯ , she of the impossibly long limbs and sweetly conspiratorial smile , is a towering siren .\n2670\tEven if you 've seen `` Stomp '' -LRB- the stage show -RRB- , you still have to see this !\n2671\t... a light , yet engrossing piece .\n2672\tLux , now in her eighties , does a great combination act as narrator , Jewish grandmother and subject -- taking us through a film that is part biography , part entertainment and part history .\n2673\tIt 's a setup so easy it borders on facile , but keeping the film from cheap-shot mediocrity is its crack cast .\n2674\tRife with the rueful , wry humor springing out of Yiddish culture and language .\n2675\tA time machine , a journey back to your childhood , when cares melted away in the dark theater , and films had the ability to mesmerize , astonish and entertain .\n2676\tRubbo 's humorously tendentious intervention into the who-wrote-Shakespeare controversy .\n2677\tCantet beautifully illuminates what it means sometimes to be inside looking out , and at other times outside looking in .\n2678\tK-19 : The Widowmaker is a great yarn .\n2679\tIt 's as raw and action-packed an experience as a ringside seat at a tough-man contest .\n2680\tEvokes the frustration , the awkwardness and the euphoria of growing up , without relying on the usual tropes .\n2681\tA brilliant gag at the expense of those who paid for it and those who pay to see it .\n2682\tVisually striking and viscerally repellent .\n2683\tOvercomes its visual hideousness with a sharp script and strong performances .\n2684\tAstonishingly skillful and moving ... it could become a historically significant work as well as a masterfully made one .\n2685\tBeautifully crafted and cooly unsettling ... recreates the atmosphere of the crime expertly .\n2686\tThe year 2002 has conjured up more coming-of-age stories than seem possible , but Take Care of My Cat emerges as the very best of them .\n2687\tAlthough it does n't always hang together -- violence and whimsy do n't combine easily -- `` Cherish '' certainly is n't dull .\n2688\tThe sight of the spaceship on the launching pad is duly impressive in IMAX dimensions , as are shots of the astronauts floating in their cabins .\n2689\tTime is a beautiful film to watch , an interesting and at times captivating take on loss and loneliness .\n2690\tAn intriguing look at the French film industry during the German occupation ; its most delightful moments come when various characters express their quirky inner selves .\n2691\tA fine documentary can be distinguished from a mediocre one by the better film 's ability to make its subject interesting to those who are n't part of its supposed target audience .\n2692\tJudging by those standards , ` Scratch ' is a pretty decent little documentary .\n2693\tFubar is very funny , but not always in a laugh-out-loud way .\n2694\tA diverse and astonishingly articulate cast of Palestinian and Israeli children .\n2695\tSlight but enjoyable documentary .\n2696\t` The film is stark , straightforward and deadly ... an unnatural calm that 's occasionally shaken by ... blasts of rage , and later , violent jealousy . '\n2697\tCall this The Full Monty on ice , the underdog sports team formula redux .\n2698\tUnfolds in a low-key , organic way that encourages you to accept it as life and go with its flow .\n2699\tA beguiling evocation of the quality that keeps Dickens evergreen : the exuberant openness with which he expresses our most basic emotions .\n2700\tThe heat of the moment prevails .\n2701\tIt cooks Conduct in a low , smoky and inviting sizzle .\n2702\tA riveting story well told .\n2703\tDenis forges out of the theories of class - based rage and sisterly obsession a razor-sided tuning fork that rings with cultural , sexual and social discord .\n2704\tA compelling pre-WWII drama with vivid characters and a warm , moving message .\n2705\tThe stars may be college kids , but the subject matter is as adult as you can get : the temptations of the flesh are unleashed by a slightly crazed , overtly determined young woman and a one-night swim turns into an ocean of trouble .\n2706\tPretty good little movie .\n2707\tBy turns touching , raucously amusing , uncomfortable , and , yes , even sexy , Never Again is a welcome and heartwarming addition to the romantic comedy genre .\n2708\tIf you have n't seen the film lately , you may be surprised at the variety of tones in Spielberg 's work .\n2709\tMuch of it is funny , but there are also some startling , surrealistic moments ...\n2710\t-LRB- The digital effects -RRB- reminded me of Terry Gilliam 's rudimentary old Monty Python cartoons , in which he would cut out figures from drawings and photographs and paste them together .\n2711\tAn entertaining mix of period drama and flat-out farce that should please history fans .\n2712\tCanada 's arctic light shines bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people .\n2713\tThe fluid motion is astounding on any number of levels -- including the physical demands made on BÃ¼ttner -- and it implies in its wake the intractable , irreversible flow of history .\n2714\tAlternately hilarious and sad , aggravating and soulful , scathing and joyous .\n2715\tIt 's a masterpeice .\n2716\tThe film 's messages of tolerance and diversity are n't particularly original , but one ca n't help but be drawn in by the sympathetic characters .\n2717\tThough it lacks the utter authority of a genre gem , there 's a certain robustness to this engaging mix of love and bloodletting .\n2718\tA conventional , but well-crafted film about a historic legal battle in Ireland over a man 's right to raise his own children .\n2719\tYes , it 's as good as you remember .\n2720\tIn fact , even better .\n2721\tHartley adds enough quirky and satirical touches in the screenplay to keep the film entertaining .\n2722\tAn uncomfortable movie , suffocating and sometimes almost senseless , The Grey Zone does have a center , though a morbid one .\n2723\tThis is a harrowing movie about how parents know where all the buttons are , and how to push them .\n2724\tA stirring road movie .\n2725\tOne of the best films I have ever seen , constantly pulling the rug from underneath us , seeing things from new sides , plunging deeper , getting more intense .\n2726\tInsanely hilarious !\n2727\tI have n't laughed that hard in years !\n2728\tAnyone who 's ever suffered under a martinet music instructor has no doubt fantasized about what an unhappy , repressed and twisted personal life their tormentor deserved .\n2729\tThese people are really going to love The Piano Teacher .\n2730\tIt 's a tour de force , written and directed so quietly that it 's implosion rather than explosion you fear .\n2731\tIt may not be history -- but then again , what if it is ?\n2732\t-- but it makes for one of the most purely enjoyable and satisfying evenings at the movies I 've had in a while .\n2733\tIf `` Lilo & Stitch '' is n't the most edgy piece of Disney animation to hit the silver screen , then this first film to use a watercolor background since `` Dumbo '' certainly ranks as the most original in years .\n2734\tThis may be Dover Kosashvili 's feature directing debut , but it looks an awful lot like life -- gritty , awkward and ironic .\n2735\tThis ready-made midnight movie probably wo n't stand the cold light of day , but under the right conditions , it 's goofy -LRB- if not entirely wholesome -RRB- fun .\n2736\tSee Scratch for the history , see Scratch for the music , see Scratch for a lesson in scratching , but , most of all , see it for the passion .\n2737\t... `` Bowling for Columbine '' remains a disquieting and thought-provoking film ...\n2738\tEven though it is infused with the sensibility of a video director , it does n't make for completely empty entertainment\n2739\tBut even with the two-wrongs-make-a-right chemistry between Jolie and Burns ... this otherwise appealing picture loses its soul to Screenwriting For Dummies conformity .\n2740\tTalk to Her is so darned assured , we have absolutely no idea who the main characters are until the film is well under way -- and yet it 's hard to stop watching .\n2741\tStar\\/producer Salma Hayek and director Julie Taymor have infused Frida with a visual style unique and inherent to the titular character 's paintings and in the process created a masterful work of art of their own .\n2742\tA truly wonderful tale combined with stunning animation .\n2743\tA low-key labor of love that strikes a very resonant chord .\n2744\tAn average kid-empowerment fantasy with slightly above-average brains .\n2745\tConfessions is n't always coherent , but it 's sharply comic and surprisingly touching , so hold the gong .\n2746\tWhile GuzmÃ¡n frustratingly refuses to give Pinochet 's crimes a political context , his distance from the material is mostly admirable .\n2747\t... a story , an old and scary one , about the monsters we make , and the vengeance they take .\n2748\tA sentimental but entirely irresistible portrait of three aging sisters .\n2749\tWhite Oleander may leave you rolling your eyes in the dark , but that does n't mean you wo n't like looking at it .\n2750\tIn painting an unabashedly romantic picture of a nation whose songs spring directly from the lives of the people , the movie exalts the Marxian dream of honest working folk , with little to show for their labor , living harmoniously , joined in song .\n2751\tThe most brilliant work in this genre since the 1984 uncut version of Sergio Leone 's flawed but staggering Once Upon a Time in America .\n2752\tIt looks closely , insightfully at fragile , complex relationships .\n2753\tNot a bad choice here , assuming that ... the air-conditioning in the theater is working properly .\n2754\tA fine effort , an interesting topic , some intriguing characters and a sad ending .\n2755\tCertainly the big finish was n't something Galinsky and Hawley could have planned for ... but part of being a good documentarian is being there when the rope snaps .\n2756\tIt must be the end of the world : the best film so far this year is a franchise sequel starring Wesley Snipes .\n2757\tThere are moments of hilarity to be had .\n2758\tA hypnotic portrait of this sad , compulsive life .\n2759\t-LRB- While The Last Metro -RRB- was more melodramatic , confined to a single theater company and its strategies and deceptions , while Tavernier is more concerned with the entire period of history .\n2760\tOne of the best films of the year with its exquisite acting , inventive screenplay , mesmerizing music , and many inimitable scenes of tenderness , loss , discontent , and yearning .\n2761\tReturn to Never Land is reliable , standard Disney animated fare , with enough creative energy and wit to entertain all ages .\n2762\tMichael Moore 's latest documentary about America 's thirst for violence is his best film yet ...\n2763\tSuffice to say that after seeing this movie in IMAX form , you 'll be more acquainted with the tiniest details of Tom Hanks ' face than his wife is .\n2764\tLike a Tarantino movie with heart , Alias Betty is richly detailed , deftly executed and utterly absorbing .\n2765\tMarvelously entertaining and deliriously joyous documentary .\n2766\tA brisk , reverent , and subtly different sequel .\n2767\tA movie I loved on first sight and , even more important , love in remembrance .\n2768\tDeserves a place of honor next to Nanook as a landmark in film history .\n2769\tMurderous Maids pulls no punches in its depiction of the lives of the Papin sister and the events that led to their notorious rise to infamy ...\n2770\tThis is an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground .\n2771\tThe Sweetest Thing , a romantic comedy with outrageous tendencies , may be a mess in a lot of ways .\n2772\tBut it does have one saving grace .\n2773\tA lot of its gags and observations reflect a woman 's point-of-view .\n2774\tThis is lightweight filmmaking , to be sure , but it 's pleasant enough -- and oozing with attractive men .\n2775\tAt its most basic , this cartoon adventure is that wind-in-the-hair exhilarating .\n2776\tFans of critics ' darling band Wilco will marvel at the sometimes murky , always brooding look of I Am Trying to Break Your Heart .\n2777\tThe film presents visceral and dangerously honest revelations about the men and machines behind the curtains of our planet .\n2778\t-LRB- Gosling 's -RRB- combination of explosive physical energy and convincing intelligence helps create a complex , unpredictable character .\n2779\tConfounding because it solemnly advances a daringly preposterous thesis .\n2780\tActing can not be acted .\n2781\tFulford-Wierzbicki ... deftly captures the wise-beyond-her-years teen .\n2782\tA wild ride juiced with enough energy and excitement for at least three films .\n2783\tIt 's a cool event for the whole family .\n2784\tMaybe not a classic , but a movie the kids will want to see over and over again .\n2785\tThe movie is not as terrible as the synergistic impulse that created it .\n2786\tA typically observant , carefully nuanced and intimate French coming-of-age film that is an encouraging debut feature but has a needlessly downbeat ending that is too heavy for all that has preceded it .\n2787\tLess an examination of neo-Nazism than a probe into the nature of faith itself .\n2788\tA moving and weighty depiction of one family 's attempts to heal after the death of a child .\n2789\tI do n't think most of the people who loved the 1989 Paradiso will prefer this new version .\n2790\tBut I do .\n2791\tA zinger-filled crowd-pleaser that open-minded Elvis fans -LRB- but by no means all -RRB- will have fun with .\n2792\tDiggs and Lathan are among the chief reasons Brown Sugar is such a sweet and sexy film .\n2793\tEntirely suspenseful , extremely well-paced and ultimately ... dare I say , entertaining !\n2794\tThe riveting performances by the incredibly flexible cast make Love a joy to behold .\n2795\tTerrific as Nadia , a Russian mail-order bride who comes to America speaking not a word of English , it 's Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers .\n2796\tWith an unflappable air of decadent urbanity , Everett remains a perfect Wildean actor , and a relaxed Firth displays impeccable comic skill .\n2797\tThe re-release of Ron Howard 's Apollo 13 in the IMAX format proves absolutely that really , really , really good things can come in enormous packages .\n2798\tVery well written and directed with brutal honesty and respect for its audience .\n2799\tWonderful fencing scenes and an exciting plot make this an eminently engrossing film .\n2800\tIt 's pretty linear and only makeup-deep , but Bogdanovich ties it together with efficiency and an affection for the period .\n2801\tA surprisingly charming and even witty match for the best of Hollywood 's comic-book adaptations .\n2802\tThis is a superior horror flick .\n2803\tAdaptation is simply brilliant .\n2804\tSmart and alert , Thirteen Conversations About One Thing is a small gem .\n2805\tThe pleasure of Read My Lips is like seeing a series of perfect black pearls clicking together to form a string .\n2806\tWe 're drawn in by the dark luster .\n2807\tA haunting tale of murder and mayhem .\n2808\tI love the opening scenes of a wintry New York City in 1899 .\n2809\tCinematic poetry showcases the city 's old-world charm before machines change nearly everything .\n2810\tIt 's hard to imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon , Dustin Hoffman and Holly Hunter , yet newcomer Ellen Pompeo pulls off the feat with aplomb .\n2811\tOne of the best rock documentaries ever .\n2812\tWilco is a phenomenal band with such an engrossing story that will capture the minds and hearts of many .\n2813\tIan Holm conquers France as an earthy Napoleon\n2814\tOffers big , fat , dumb laughs that may make you hate yourself for giving in .\n2815\tAh , what the hell .\n2816\t-LRB- Sports -RRB- admirable energy , full-bodied characterizations and narrative urgency .\n2817\tA portrait of an artist .\n2818\tDirectors Brett Morgen and Nanette Burstein have put together a bold biographical fantasia .\n2819\tThe subtitled costume drama is set in a remote African empire before cell phones , guns , and the internal combustion engine , but the politics that thump through it are as timely as tomorrow .\n2820\tA tremendous piece of work .\n2821\tA delightful , if minor , pastry of a movie .\n2822\tWhile obviously aimed at kids , The Country Bears ... should keep parents amused with its low groan-to-guffaw ratio .\n2823\tLaBute masterfully balances both Traditional or Modern stories together in a manner that one never overwhelms the other .\n2824\tSomething for everyone .\n2825\tIrwin is so earnest that it 's hard to resist his pleas to spare wildlife and respect their environs .\n2826\tThere are far worse messages to teach a young audience , which will probably be perfectly happy with the sloppy slapstick comedy .\n2827\tLeigh succeeds in delivering a dramatic slap in the face that 's simultaneously painful and refreshing .\n2828\tNot about scares but a mood in which an ominous , pervasive , and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense .\n2829\t` Film aficionados can not help but love Cinema Paradiso , whether the original version or new Director 's Cut . '\n2830\tA fascinating glimpse into an insular world that gives the lie to many clichÃ©s and showcases a group of dedicated artists .\n2831\tIt 's one thing to read about or rail against the ongoing - and unprecedented - construction project going on over our heads .\n2832\tIt 's quite another to feel physically caught up in the process .\n2833\tContradicts everything we 've come to expect from movies nowadays .\n2834\tInstead of simply handling conventional material in a conventional way , Secretary takes the most unexpected material and handles it in the most unexpected way .\n2835\tCould I have been more geeked when I heard that Apollo 13 was going to be released in IMAX format ?\n2836\tIn a word : No. .\n2837\tMurderous Maids has a lot going for it , not least the brilliant performances by Testud ... and Parmentier .\n2838\tFilmmaker Stacy Peralta has a flashy editing style that does n't always jell with Sean Penn 's monotone narration , but he respects the material without sentimentalizing it .\n2839\tThere are a couple of things that elevate `` Glory '' above most of its ilk , most notably the mere presence of Duvall .\n2840\tIt 's light on the chills and heavy on the atmospheric weirdness , and there are moments of jaw-droppingly odd behavior -- yet I found it weirdly appealing .\n2841\t-LRB- Rises -RRB- above its oh-so-Hollywood rejiggering and its conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism .\n2842\tA breezy blend of art , history , esoteric musings and philosophy .\n2843\tKids will love its fantasy and adventure , and grownups should appreciate its whimsical humor .\n2844\tTsai Ming-liang 's ghosts are painfully aware of their not-being .\n2845\tLeaping from one arresting image to another , Songs from the Second Floor has all the enjoyable randomness of a very lively dream and so manages to be compelling , amusing and unsettling at the same time .\n2846\tSean Penn , you owe Nicolas Cage an apology .\n2847\tThe performances are uniformly good .\n2848\tShe 's all-powerful , a voice for a pop-cyber culture that feeds on her Bjorkness .\n2849\tIt 's a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it .\n2850\tFor all its plot twists , and some of them verge on the bizarre as the film winds down , Blood Work is a strong , character-oriented piece .\n2851\tThe story line may be 127 years old , but El Crimen del Padre Amaro ... could n't be more timely in its despairing vision of corruption within the Catholic establishment .\n2852\tThis in-depth study of important developments of the computer industry should make it required viewing in university computer science departments for years to come .\n2853\tIt shows us a slice of life that 's very different from our own and yet instantly recognizable .\n2854\tA wonderfully speculative character study that made up for its rather slow beginning by drawing me into the picture .\n2855\tHas its share of arresting images .\n2856\tLeave it to John Sayles to take on developers , the Chamber of Commerce , tourism , historical pageants , and commercialism all in the same movie ... without neglecting character development for even one minute .\n2857\tReign of Fire just might go down as one of the all-time great apocalypse movies .\n2858\tA smart little indie .\n2859\tPayne has created a beautiful canvas , and Nicholson proves once again that he 's the best brush in the business .\n2860\tTry as you might to resist , if you 've got a place in your heart for Smokey Robinson , this movie will worm its way there .\n2861\tA riveting profile of law enforcement , and a visceral , nasty journey into an urban Hades .\n2862\tDirector Douglas McGrath takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving into required reading .\n2863\tStands as a document of what it felt like to be a New Yorker -- or , really , to be a human being -- in the weeks after 9\\/11 .\n2864\tI am not generally a huge fan of cartoons derived from TV shows , but Hey Arnold !\n2865\tThe Movie is clever , offbeat and even gritty enough to overcome my resistance .\n2866\tWith not a lot of help from the screenplay -LRB- proficient , but singularly cursory -RRB- , -LRB- Testud -RRB- acts with the feral intensity of the young Bette Davis .\n2867\tIt 's a film that 's destined to win a wide summer audience through word-of-mouth reviews and , not far down the line , to find a place among the studio 's animated classics .\n2868\tSlow and ponderous , but Rohmer 's drama builds to an intense indoor drama about compassion , sacrifice , and Christian love in the face of political corruption .\n2869\tIf you 're not totally weirded - out by the notion of cinema as community-therapy spectacle , Quitting hits home with disorienting force .\n2870\tAustin Powers for the most part is extremely funny , the first part making up for any flaws that come later .\n2871\tWhile Tattoo borrows heavily from both Seven and The Silence of the Lambs , it manages to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in .\n2872\tCho continues her exploration of the outer limits of raunch with considerable brio .\n2873\tElvira fans could hardly ask for more .\n2874\tA canny , derivative , wildly gruesome portrait of a London sociopath who 's the scariest of sadists .\n2875\tThe movie should be credited with remembering his victims .\n2876\tFast-paced and wonderfully edited , the film is extremely thorough .\n2877\tA bracing , unblinking work that serves as a painful elegy and sobering cautionary tale .\n2878\tHashiguchi uses the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation .\n2879\tAs if trying to grab a lump of Play-Doh , the harder that Liman tries to squeeze his story , the more details slip out between his fingers .\n2880\tMy Big Fat Greek Wedding is not only the best date movie of the year , it 's also a -- dare I say it twice -- delightfully charming -- and totally American , I might add -- slice of comedic bliss .\n2881\tFew films have captured the chaos of an urban conflagration with such fury , and audience members will leave feeling as shaken as Nesbitt 's Cooper looks when the bullets stop flying .\n2882\tAnother love story in 2002 's remarkable procession of sweeping pictures that have reinvigorated the romance genre .\n2883\tIt 's another retelling of Alexandre Dumas ' classic .\n2884\tWhy ?\n2885\tWho knows , but it works under the direction of Kevin Reynolds .\n2886\t-LRB- F -RRB- rom the performances and the cinematography to the outstanding soundtrack and unconventional narrative , the film is blazingly alive and admirable on many levels .\n2887\tShiri is an action film that delivers on the promise of excitement , but it also has a strong dramatic and emotional pull that gradually sneaks up on the audience .\n2888\tProvides the kind of ` laugh therapy ' I need from movie comedies -- offbeat humor , amusing characters , and a happy ending .\n2889\tAfter seeing ` Analyze That , ' I feel better already .\n2890\tA penetrating , potent exploration of sanctimony , self-awareness , self-hatred and self-determination .\n2891\tThis is n't a retooled genre piece , the tale of a guy and his gun , but an amiably idiosyncratic work .\n2892\tOverall , it 's a very entertaining , thought-provoking film with a simple message : God is love .\n2893\tIt may not be a great piece of filmmaking , but its power comes from its soul 's - eye view of how well-meaning patronizing masked a social injustice , at least as represented by this case .\n2894\tAlthough mainstream American movies tend to exploit the familiar , every once in a while a film arrives from the margin that gives viewers a chance to learn , to grow , to travel .\n2895\tJeong-Hyang Lee 's film is deceptively simple , deeply satisfying .\n2896\tThe film is a hoot , and is just as good , if not better than much of what 's on Saturday morning TV especially the pseudo-educational stuff we all ca n't stand .\n2897\tGeorge Clooney , in his first directorial effort , presents this utterly ridiculous shaggy dog story as one of the most creative , energetic and original comedies to hit the screen in years .\n2898\tEven when it drags , we are forced to reflect that its visual imagination is breathtaking\n2899\tAlthough commentary on Nachtwey is provided ... it 's the image that really tells the tale .\n2900\tA life-size reenactment of those Jack Chick cartoon tracts that always ended with some hippie getting tossed into the lake of fire .\n2901\tGrainy photography mars an otherwise delightful comedy of errors .\n2902\tthis film is not a love letter for the slain rappers , it 's a taunt - a call for justice for two crimes from which many of us have not yet recovered .\n2903\tThe film is impressive for the sights and sounds of the wondrous beats the world has to offer .\n2904\tDaily struggles and simple pleasures usurp the preaching message so that , by the time the credits roll across the pat ending , a warm , fuzzy feeling prevails .\n2905\t... in no way original , or even all that memorable , but as downtown Saturday matinee brain candy , it does n't disappoint .\n2906\tClever and unflinching in its comic barbs , Slap Her is a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up .\n2907\tCremaster 3 is at once a tough pill to swallow and a minor miracle of self-expression .\n2908\tSex is one of those films that aims to confuse .\n2909\tCompared to his series of spectacular belly flops both on and off the screen , RunTelDat is something of a triumph .\n2910\t-LRB- Moore 's -RRB- better at fingering problems than finding solutions .\n2911\tBut though he only scratches the surface , at least he provides a strong itch to explore more .\n2912\tThe powerful success of Read My Lips with such provocative material shows why , after only three films , director\\/co-writer Jacques Audiard , though little known in this country , belongs in the very top rank of French filmmakers .\n2913\tIn his debut as a director , Washington has a sure hand .\n2914\tHis work with actors is particularly impressive .\n2915\tA generous , inspiring film that unfolds with grace and humor and gradually becomes a testament to faith .\n2916\tDelivers the sexy razzle-dazzle that everyone , especially movie musical fans , has been hoping for .\n2917\tVincent Gallo is right at home in this French shocker playing his usual bad boy weirdo role .\n2918\tFierce , glaring and unforgettable .\n2919\tCletis is playful but highly studied and dependent for its success on a patient viewer .\n2920\tLike its predecessor , it 's no classic , but it provides a reasonably attractive holiday contraption , one that families looking for a clean , kid-friendly outing should investigate .\n2921\tCampanella gets the tone just right -- funny in the middle of sad in the middle of hopeful .\n2922\tEither a fascinating study of the relationship between mothers and their children or a disturbing story about sociopaths and their marks .\n2923\t... gripping and handsome execution , -LRB- but -RRB- there is n't much about K-19 that 's unique or memorable .\n2924\tEffective in all its aspects , Margarita Happy Hour represents an auspicious feature debut for Chaiken .\n2925\tThe delicious trimmings ... arrive early and stay late , filling nearly every minute ... with a lighthearted glow , some impudent snickers , and a glorious dose of humankind 's liberating ability to triumph over a Scrooge or two .\n2926\tStanding by Yourself is haunting ... -LRB- It 's -RRB- what punk rock music used to be , and what the video medium could use more of : spirit , perception , conviction .\n2927\tNot the best Herzog perhaps , but unmistakably Herzog .\n2928\tEnjoyably fast-moving , hard-hitting documentary .\n2929\tRehearsals are frequently more fascinating than the results .\n2930\tLast Dance , whatever its flaws , fulfills one facet of its mission in making me want to find out whether , in this case , that 's true .\n2931\tThe film 's constant mood of melancholy and its unhurried narrative are masterfully controlled .\n2932\tBut ... in trying to capture the novel 's deeper intimate resonances , the film has -- ironically - distanced us from the characters .\n2933\tThis is a stunning film , a one-of-a-kind tour de force .\n2934\t-LRB- Cho 's face is -RRB- an amazing slapstick instrument , creating a scrapbook of living mug shots .\n2935\tIt 's about as convincing as any other Arnie musclefest , but has a little too much resonance with real world events and ultimately comes off as insultingly simplistic .\n2936\tWhile not quite a comedy , the film tackles its relatively serious subject with an open mind and considerable good cheer , and is never less than engaging .\n2937\tAn extremely funny , ultimately heartbreaking look at life in contemporary China .\n2938\tYour response to its new sequel , Analyze That , may hinge on what you thought of the first film .\n2939\tDavis is funny , charming and quirky in her feature film acting debut as Amy .\n2940\tBloody Sunday has the grace to call for prevention rather than to place blame , making it one of the best war movies ever made .\n2941\tIt 's a movie that accomplishes so much that one viewing ca n't possibly be enough .\n2942\tA lively and engaging examination of how similar obsessions can dominate a family .\n2943\tIn the new release of Cinema Paradiso , the tale has turned from sweet to bittersweet , and when the tears come during that final , beautiful scene , they finally feel absolutely earned .\n2944\tFaithful without being forceful , sad without being shrill , `` A Walk to Remember '' succeeds through sincerity .\n2945\tThe film is a masterpiece of nuance and characterization , marred only by an inexplicable , utterly distracting blunder at the very end .\n2946\tThe film is full of charm .\n2947\tThe movie is well crafted , and well executed .\n2948\tIf you 're paying attention , the `` big twists '' are pretty easy to guess - but that does n't make the movie any less entertaining .\n2949\tOne of those unassuming films that sneaks up on you and stays with you long after you have left the theatre .\n2950\t... Pray does n't have a passion for the material .\n2951\tHe nonetheless appreciates the art and reveals a music scene that transcends culture and race .\n2952\tThe one-liners are snappy , the situations volatile and the comic opportunities richly rewarded .\n2953\tIt 's anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother\\/daughter pair .\n2954\tFathers and sons , and the uneasy bonds between them , rarely have received such a sophisticated and unsentimental treatment on the big screen as they do in this marvelous film .\n2955\tThis sci-fi techno-sex thriller starts out bizarre and just keeps getting weirder .\n2956\tLast Orders nurtures the multi-layers of its characters , allowing us to remember that life 's ultimately a gamble and last orders are to be embraced .\n2957\tIt 's affecting , amusing , sad and reflective .\n2958\tA slight but sweet film .\n2959\tWriter\\/director Walter Hill is in his hypermasculine element here , once again able to inject some real vitality and even art into a pulpy concept that , in many other hands would be completely forgettable .\n2960\tIt is a happy , heady jumble of thought and storytelling , an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film .\n2961\tThis new Time Machine is hardly perfect ... yet it proves surprisingly serviceable .\n2962\tEven at its worst , it 's not half-bad .\n2963\tAlmost everyone growing up believes their family must look like `` The Addams Family '' to everyone looking in ... `` My Big Fat Greek Wedding '' comes from the heart ...\n2964\tOnce folks started hanging out at the barbershop , they never wanted to leave .\n2965\tChances are you wo n't , either .\n2966\tGeorge Lucas returns as a visionary with a tale full of nuance and character dimension .\n2967\tCan be viewed as pure composition and form -- film as music\n2968\tAn extraordinary dramatic experience .\n2969\tEvery individual will see the movie through the prism of his or her own beliefs and prejudices , but the one thing most will take away is the sense that peace is possible .\n2970\tThat , in itself , is extraordinary .\n2971\tIf you can tolerate the redneck-versus-blueblood cliches that the film trades in , Sweet Home Alabama is diverting in the manner of Jeff Foxworthy 's stand-up act .\n2972\tIt 's a treat watching Shaw , a British stage icon , melting under the heat of Phocion 's attentions .\n2973\tAll in all , an interesting look at the life of the campaign-trail press , especially ones that do n't really care for the candidate they 're forced to follow .\n2974\tNarc is a no-bull throwback to 1970s action films .\n2975\tIt zips along with B-movie verve while adding the rich details and go-for-broke acting that heralds something special .\n2976\tMe Without You has a bracing truth that 's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood .\n2977\tIt 's a strange film , one that was hard for me to warm up to .\n2978\tGoes a long way on hedonistic gusto .\n2979\tThe result puts a human face on Derrida , and makes one of the great minds of our times interesting and accessible to people who normally could n't care less .\n2980\tThe Scorpion King is more fun than Conan the Barbarian .\n2981\tIf there 's one big point to Promises , it 's that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other .\n2982\tUnexpected moments of authentically impulsive humor are the hallmark of this bittersweet , uncommonly sincere movie that portrays the frank humanity of ... emotional recovery .\n2983\tJacquot has filmed the opera exactly as the libretto directs , ideally capturing the opera 's drama and lyricism .\n2984\tThis is a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies .\n2985\tI liked it because it was so endlessly , grotesquely , inventive .\n2986\tAudiard successfully maintains suspense on different levels throughout a film that is both gripping and compelling .\n2987\tCredit director Ramsay for taking the sometimes improbable story and making it feel realistic .\n2988\tThis is DiCaprio 's best performance in anything ever , and easily the most watchable film of the year .\n2989\tWitherspoon puts to rest her valley-girl image , but it 's Dench who really steals the show .\n2990\tEven when there are lulls , the emotions seem authentic , and the picture is so lovely toward the end ... you almost do n't notice the 129-minute running time .\n2991\tWhile dutifully pulling on heartstrings , directors Dean Deblois and Chris Sanders valiantly keep punching up the mix .\n2992\tAmbitious , unsettling psychodrama that takes full , chilling advantage of its rough-around-the-edges , low-budget constraints .\n2993\tEric Byler 's nuanced pic avoids easy sentiments and explanations ...\n2994\tManages to be wholesome and subversive at the same time .\n2995\tWhen it 's not wallowing in hormonal melodrama , `` Real Women Have Curves '' is a sweet , honest , and enjoyable comedy-drama about a young woman who wants many things in life , but fears she 'll become her mother before she gets to fulfill her dreams .\n2996\tThe film runs on a little longer than it needs to -- Muccino either does n't notice when his story ends or just ca n't tear himself away from the characters -- but it 's smooth and professional .\n2997\tBlithely anachronistic and slyly achronological .\n2998\tThis starts off with a 1950 's Doris Day feel and it gets very ugly , very fast .\n2999\tThe first five minutes will have you talking 'til the end of the year !\n3000\tTriumph of Love is a very silly movie , but the silliness has a pedigree .\n3001\tDiscursive but oddly riveting documentary .\n3002\tThe movie has no respect for laws , political correctness or common decency , but it displays something more important : respect for its flawed , crazy people .\n3003\tOn its own , Big Trouble could be considered a funny little film .\n3004\tAn undeniably gorgeous , terminally smitten document of a troubadour , his acolytes , and the triumph of his band .\n3005\tThis cinema verite speculation on the assassination of John F. Kennedy may have been inspired by Blair Witch , but it takes its techniques into such fresh territory that the film never feels derivative .\n3006\tA beautifully observed character piece .\n3007\tA coming-of-age movie that Hollywood would n't have the guts to make .\n3008\tIt is quite a vision .\n3009\tThere are laughs aplenty , and , as a bonus , viewers do n't have to worry about being subjected to farts , urine , feces , semen , or any of the other foul substances that have overrun modern-day comedies .\n3010\tA bittersweet drama about the limbo of grief and how truth-telling can open the door to liberation .\n3011\tA strong and confident work which works so well for the first 89 minutes , but ends so horrendously confusing in the final two\n3012\tSalma goes native and she 's never been better in this colorful bio-pic of a Mexican icon .\n3013\tFilled with Alexandre Desplat 's haunting and sublime music , the movie completely transfixes the audience .\n3014\tAs chilling and fascinating as Philippe Mora 's modern Hitler-study , Snide and Prejudice .\n3015\tAn hour and a half of joyful solo performance .\n3016\tStrange and beautiful film .\n3017\tNo worse a film than Breaking Out , and Breaking Out was utterly charming .\n3018\tParker can not sustain the buoyant energy level of the film 's city beginnings into its country conclusion '\n3019\t... Despite lagging near the finish line , the movie runs a good race , one that will have you at the edge of your seat for long stretches . '\n3020\t... a guiltless film for nice evening out .\n3021\tDeflated ending aside , there 's much to recommend the film .\n3022\tIt 's a treat -- a delightful , witty , improbable romantic comedy with a zippy jazzy score ... Grant and Bullock make it look as though they are having so much fun .\n3023\tPerformances all around are tops , with the two leads delivering Oscar-caliber performances .\n3024\tEverything about The Quiet American is good , except its timing .\n3025\tA savage John Waters-like humor that dances on the edge of tastelessness without ever quite falling over .\n3026\tAt once a testament to the divine calling of education and a demonstration of the painstaking process of imparting knowledge .\n3027\tMay seriously impair your ability to ever again maintain a straight face while speaking to a highway patrolman .\n3028\tIt 's an interesting effort -LRB- particularly for JFK conspiracy nuts -RRB- , and Barry 's cold-fish act makes the experience worthwhile .\n3029\tThey 're just a couple of cops in Copmovieland , these two , but in Narc , they find new routes through a familiar neighborhood .\n3030\tBrings awareness to an issue often overlooked -- women 's depression .\n3031\tIt 's a shame the marvelous first 101 minutes have to be combined with the misconceived final 5 .\n3032\tIt has a caffeinated , sloppy brilliance , sparkling with ideas you wish had been developed with more care , but animated by an energy that puts the dutiful efforts of more disciplined grade-grubbers to shame .\n3033\tYou can almost see Mendes and company getting together before a single frame had been shot and collectively vowing , ` This is going to be something really good . '\n3034\tAnd it is .\n3035\tFoster and Whitaker are especially fine .\n3036\tShe is a lioness , protecting her cub , and he a reluctant villain , incapable of controlling his crew .\n3037\tUndoubtedly the scariest movie ever made about tattoos .\n3038\tA movie that will wear you out and make you misty even when you do n't want to be .\n3039\tNot only better than its predecessor , it may rate as the most magical and most fun family fare of this or any recent holiday season .\n3040\tThough the story ... is hackneyed , the characters have a freshness and modesty that transcends their predicament .\n3041\tAlthough Frailty fits into a classic genre , in its script and execution it is a remarkably original work .\n3042\tIf this movie leaves you cool , it also leaves you intriguingly contemplative .\n3043\tThe climactic events are so well realized that you may forget all about the original conflict , just like the movie does\n3044\tA rude black comedy about the catalytic effect a holy fool has upon those around him in the cutthroat world of children 's television .\n3045\tAll comedy is subversive , but this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work just becomes sad .\n3046\tIf a horror movie 's primary goal is to frighten and disturb , then They works spectacularly well ... A shiver-inducing , nerve-rattling ride .\n3047\tA playful Iranian parable about openness , particularly the need for people of diverse political perspectives to get along despite their ideological differences .\n3048\tBrilliantly written and well-acted , Yellow Asphalt is an uncompromising film .\n3049\tThat ` Alabama ' manages to be pleasant in spite of its predictability and occasional slowness is due primarily to the perkiness of Witherspoon -LRB- who is always a joy to watch , even when her material is not first-rate -RRB- ...\n3050\tPersonal Velocity has a no-frills docu-Dogma plainness , yet Miller lingers on invisible , nearly psychic nuances , leaping into digressions of memory and desire .\n3051\tShe boxes these women 's souls right open for us .\n3052\tA fascinating literary mystery story with multiple strands about the controversy of who really wrote Shakespeare 's plays .\n3053\tThroughout , Mr. Audiard 's direction is fluid and quick .\n3054\tA dashing and absorbing outing with one of France 's most inventive directors .\n3055\tIt 's a fine , old-fashioned-movie movie , which is to say it 's unburdened by pretensions to great artistic significance .\n3056\t... flat-out amusing , sometimes endearing and often fabulous , with a solid cast , noteworthy characters , delicious dialogue and a wide supply of effective sight gags .\n3057\tThe Trials of Henry Kissinger is a remarkable piece of filmmaking ... because you get it .\n3058\tNachtwey clears the cynicism right out of you .\n3059\tHe makes you realize that deep inside righteousness can be found a tough beauty .\n3060\tWhat it lacks in substance it makes up for in heart .\n3061\tRobert Harmon 's less-is-more approach delivers real bump-in - the-night chills -- his greatest triumph is keeping the creepy crawlies hidden in the film 's thick shadows .\n3062\tWith its hint of an awkward Hitchcockian theme in tact , Harmon 's daunting narrative promotes a reasonable landscape of conflict and pathos to support the scattershot terrorizing tone\n3063\tIn Auteil 's less dramatic but equally incisive performance , he 's a charismatic charmer likely to seduce and conquer .\n3064\tThe heart of the film is a touching reflection on aging , suffering and the prospect of death .\n3065\tWill you go ape over this movie ?\n3066\tWell , it probably wo n't have you swinging from the trees hooting it 's praises , but it 's definitely worth taking a look .\n3067\tIts director 's most substantial feature for some time .\n3068\tFontaine 's direction , especially her agreeably startling use of close-ups and her grace with a moving camera , creates sheerly cinematic appeal .\n3069\tThe Son Of The Bride 's humour is born out of an engaging storyline , which also is n't embarrassed to make you reach for the tissues .\n3070\tThis movie is to be cherished .\n3071\t... a visually seductive , unrepentantly trashy take on Rice 's second installment of her Vampire Chronicles .\n3072\tThe story 's scope and pageantry are mesmerizing , and Mr. Day-Lewis roars with leonine power .\n3073\tP.T. Anderson understands the grandness of romance and how love is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew were possible .\n3074\tTwenty years later , E.T. is still a cinematic touchstone .\n3075\tThis fascinating experiment plays as more of a poetic than a strict reality , creating an intriguing species of artifice that gives The Lady and the Duke something of a theatrical air .\n3076\tIt 's virtually impossible to like any of these despicable characters .\n3077\tThis is mostly well-constructed fluff , which is all it seems intended to be .\n3078\tEven through its flaws , Revolution # 9 proves to be a compelling , interestingly told film .\n3079\tThe best way to describe it is as a cross between Paul Thomas Anderson 's Magnolia and David Lynch 's Mulholland Dr.\n3080\tSchepisi , aided by a cast that seems to include every top-notch British actor who did not appear in Gosford Park -LRB- as well as one , Ms. Mirren , who did -RRB- , has succeeded beyond all expectation .\n3081\tWatching this film , one is left with the inescapable conclusion that Hitchens ' obsession with Kissinger is , at bottom , a sophisticated flower child 's desire to purge the world of the tooth and claw of human power .\n3082\tThere is no denying the power of Polanski 's film ...\n3083\tThe movie is amateurish , but it 's a minor treat .\n3084\tThis charming but slight tale has warmth , wit and interesting characters compassionately portrayed .\n3085\tOffers a persuasive look at a defeated but defiant nation in flux .\n3086\tA return to pure Disney magic and is enjoyable family fare .\n3087\tTakes a fresh and absorbing look at a figure whose legacy had begun to bronze .\n3088\tA triumph of pure craft and passionate heart .\n3089\tGosling creates a staggeringly compelling character , a young man whose sharp intellect is at the very root of his contradictory , self-hating , self-destructive ways .\n3090\tWitty and often surprising , a dark little morality tale disguised as a romantic comedy .\n3091\tEven as it pays earnest homage to turntablists and beat jugglers , old schoolers and current innovators , Scratch is great fun , full of the kind of energy it 's documenting .\n3092\tGot a David Lynch jones ?\n3093\tThen you 'd do well to check this one out because it 's straight up Twin Peaks action ...\n3094\tAstonishing ... -LRB- frames -RRB- profound ethical and philosophical questions in the form of dazzling pop entertainment .\n3095\tTake Care is nicely performed by a quintet of actresses , but nonetheless it drags during its 112-minute length .\n3096\tIt 's hard to fairly judge a film like RINGU when you 've seen the remake first .\n3097\tMany of the effective horror elements are dampened through familiarity , -LRB- yet -RRB- are worthwhile .\n3098\tOne of the very best movies ever made about the life of moviemaking .\n3099\tRarely does such high-profile talent serve such literate material .\n3100\tAn elegant and sly deadpan comedy .\n3101\tThe way the roundelay of partners functions , and the interplay within partnerships and among partnerships and the general air of Gator-bashing are consistently delightful .\n3102\tLand , people and narrative flow together in a stark portrait of motherhood deferred and desire explored .\n3103\t` Blue Crush ' swims away with the Sleeper Movie of the Summer award .\n3104\tYou 're not merely watching history , you 're engulfed by it .\n3105\tA chick flick for guys .\n3106\tIt 's mildly entertaining , especially if you find comfort in familiarity .\n3107\tBut it 's hardly a necessary enterprise .\n3108\tThe Quiet American is n't a bad film , it 's just one that could easily wait for your pay per view dollar .\n3109\tAs home movie gone haywire , it 's pretty enjoyable , but as sexual manifesto , I 'd rather listen to old Tori Amos records .\n3110\tIn its treatment of the dehumanizing and ego-destroying process of unemployment , Time Out offers an exploration that is more accurate than anything I have seen in an American film .\n3111\tLike an episode of MTV 's Undressed , with 20 times the creativity but without any more substance ... indulgently entertaining but could have and should have been deeper .\n3112\tA sensitive , cultivated treatment of Greene 's work as well as a remarkably faithful one .\n3113\tIt 's not just a feel-good movie , it 's a feel movie .\n3114\tYou feel good , you feel sad , you feel pissed off , but in the end , you feel alive - which is what they did .\n3115\tIt 's a piece of handiwork that shows its indie tatters and self-conscious seams in places , but has some quietly moving moments and an intelligent subtlety .\n3116\tWhat makes Barbershop so likable , with all its flaws , is that it has none of the pushiness and decibel volume of most contemporary comedies .\n3117\tWatching these two actors play against each other so intensely , but with restraint , is a treat .\n3118\tAn example of quiet , confident craftsmanship that tells a sweet , charming tale of intergalactic friendship .\n3119\tA meditation on faith and madness , Frailty is blood-curdling stuff .\n3120\tThe production design , score and choreography are simply intoxicating .\n3121\tA comedy that is warm , inviting , and surprising .\n3122\tSo vivid a portrait of a woman consumed by lust and love and crushed by betrayal that it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt .\n3123\tSuspend your disbelief here and now , or you 'll be shaking your head all the way to the credits .\n3124\tTrades run-of-the-mill revulsion for extreme unease .\n3125\t... one of the more influential works of the ` Korean New Wave ' .\n3126\tImplicitly acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses , and for that reason it may be the most oddly honest Hollywood document of all .\n3127\tA beautifully tooled action thriller about love and terrorism in Korea .\n3128\tDirector-writer Bille August ... depicts this relationship with economical grace , letting his superb actors convey Martin 's deterioration and Barbara 's sadness -- and , occasionally , anger .\n3129\tVictor Rosa is Leguizamo 's best movie work so far , a subtle and richly internalized performance .\n3130\tBirthday Girl does n't try to surprise us with plot twists , but rather seems to enjoy its own transparency .\n3131\tsmart , funny and just honest enough to provide the pleasures of a slightly naughty , just-above-average off - Broadway play .\n3132\tTopics that could make a sailor blush - but lots of laughs .\n3133\tMichael Moore has perfected the art of highly entertaining , self-aggrandizing , politically motivated documentary-making , and he 's got as potent a topic as ever here .\n3134\tA fine production with splendid singing by Angela Gheorghiu , Ruggero Raimondi , and Roberto Alagna .\n3135\tAbout a Boy vividly recalls the Cary Grant of Room for One More , Houseboat and Father Goose in its affectionate depiction of the gentle war between a reluctant , irresponsible man and the kid who latches onto him .\n3136\tNone of this is meaningful or memorable , but frosting is n't , either , and you would n't turn down a big bowl of that , would you ?\n3137\tThe film is a fierce dance of destruction .\n3138\tIts flame-like , roiling black-and-white inspires trembling and gratitude .\n3139\tMay lack the pungent bite of its title , but it 's an enjoyable trifle nonetheless .\n3140\t... manages to fall closer in quality to Silence than to the abysmal Hannibal .\n3141\tYou may think you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky , but while you were thinking someone made off with your wallet .\n3142\tDiane Lane works nothing short of a minor miracle in Unfaithful .\n3143\tTakashi Miike keeps pushing the envelope : Ichi the Killer\n3144\tA fantastic premise anchors this movie , but what it needs is either a more rigid , Blair Witch-style commitment to its mockumentary format , or a more straightforward , dramatic treatment , with all the grandiosity that that implies .\n3145\tExhilarating but blatantly biased .\n3146\tMuch of what we see is horrible but it 's also undeniably exceedingly clever .\n3147\tIt understands , in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking .\n3148\tRamsay succeeds primarily with her typical blend of unsettling atmospherics , delivering a series of abrasive , stylized sequences that burn themselves upon the viewer 's memory .\n3149\t... a thoughtful what-if for the heart as well as the mind .\n3150\tLike its bizarre heroine , it irrigates our souls .\n3151\tHawn and Sarandon form an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare .\n3152\tIt 's a fun adventure movie for kids -LRB- of all ages -RRB- that like adventure .\n3153\tA very capable nailbiter .\n3154\tBecause the genre is well established , what makes the movie fresh is smart writing , skewed characters , and the title performance by Kieran Culkin .\n3155\t`` White Oleander , '' the movie , is akin to a Reader 's Digest condensed version of the source material .\n3156\tIt 's like going to a house party and watching the host defend himself against a frothing ex-girlfriend .\n3157\tYou do n't want to call the cops .\n3158\tYou want to call Domino 's .\n3159\tWhat 's most refreshing about Real Women Have Curves is its unforced comedy-drama and its relaxed , natural-seeming actors .\n3160\tThe low-key direction is pleasingly emphatic in this properly intense , claustrophobic tale of obsessive love .\n3161\tSecretary is just too original to be ignored .\n3162\tThat rare film whose real-life basis is , in fact , so interesting that no embellishment is needed .\n3163\tSmart and fun , but far more witty than it is wise .\n3164\tThis is n't a stand up and cheer flick ; it 's a sit down and ponder affair .\n3165\tAnd thanks to Kline 's superbly nuanced performance , that pondering is highly pleasurable .\n3166\tOriginality ai n't on the menu , but there 's never a dull moment in the giant spider invasion comic chiller .\n3167\tWalter Hill 's Undisputed is like a 1940s Warner Bros. .\n3168\tB picture , and I mean that as a compliment .\n3169\tThis one is not nearly as dreadful as expected .\n3170\tIn fact , it 's quite fun in places .\n3171\tWith elements cribbed from Lang 's Metropolis , Welles ' Kane , and Eisenstein 's Potemkin , the true wonder of RintarÃ´ 's Metropolis is the number of lasting images all its own .\n3172\tA biopic about Crane 's life in the classic tradition but evolves into what has become of us all in the era of video .\n3173\tThe best of the Pierce Brosnan James Bond films to date .\n3174\tThanks to a small star with big heart , this family film sequel is plenty of fun for all .\n3175\tWhile the now 72-year-old Robert Evans been slowed down by a stroke , he has at least one more story to tell : his own .\n3176\tIt 's about individual moments of mood , and an aimlessness that 's actually sort of amazing .\n3177\tThe people in Jessica are so recognizable and true that , as in real life , we 're never sure how things will work out .\n3178\tA tone poem of transgression .\n3179\tCreeps you out in high style , even if Nakata did it better .\n3180\tRubbo runs through a remarkable amount of material in the film 's short 90 minutes .\n3181\tVisually engrossing , seldom hammy , honorably Mexican and burns its Kahlories with conviction .\n3182\tThis is Christmas Future for a lot of baby boomers .\n3183\tDespite a quieter middle section , involving Aragorn 's dreams of Arwen , this is even better than The Fellowship .\n3184\tThere are scenes of cinematic perfection that steal your heart away .\n3185\tSpider-Man is in the same category as X-Men - occasionally brilliant but mostly average , showing signs of potential for the sequels , but not giving us much this time around .\n3186\tThe obnoxious title character provides the drama that gives added clout to this doc .\n3187\tAnyone who welcomes a dash of the avant-garde fused with their humor should take pleasure in this crazed , joyous romp of a film .\n3188\tThe fun of the movie is the chance it affords to watch Jackson , who also served as executive producer , take his smooth , shrewd , powerful act abroad .\n3189\tSaddled with an unwieldy cast of characters and angles , but the payoff is powerful and revelatory .\n3190\tIt 's something of the ultimate Scorsese film , with all the stomach-turning violence , colorful New York gang lore and other hallmarks of his personal cinema painted on their largest-ever historical canvas .\n3191\tMr. Caine and Mr. Fraser are the whole show here , with their memorable and resourceful performances .\n3192\tA frustrating yet deeply watchable melodrama that makes you think it 's a tougher picture than it is .\n3193\tA giddy and provocative sexual romp that has something to say .\n3194\t-LRB- Russell -RRB- makes good B movies -LRB- The Mask , The Blob -RRB- , and The Scorpion King more than ably meets those standards .\n3195\tOtto-Sallies has a real filmmaker 's eye .\n3196\tThis is a smart movie that knows its classical music , knows its Freud and knows its Sade .\n3197\tThe film has an infectious enthusiasm and we 're touched by the film 's conviction that all life centered on that place , that time and that sport .\n3198\tBeautifully reclaiming the story of Carmen and recreating it an in an African idiom .\n3199\tThe camera soars above the globe in dazzling panoramic shots that make the most of the large-screen format , before swooping down on a string of exotic locales , scooping the whole world up in a joyous communal festival of rhythm .\n3200\tA flawed but engrossing thriller .\n3201\tDemonstrates the unusual power of thoughtful , subjective filmmaking .\n3202\tExpect no major discoveries , nor any stylish sizzle , but the film sits with square conviction and touching good sense on the experience of its women .\n3203\tThe success of Undercover Brother is found in its ability to spoof both black and white stereotypes equally .\n3204\tThis is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker , but Ayres makes the right choices at every turn .\n3205\tCox creates a fluid and mesmerizing sequence of images to match the words of Nijinsky 's diaries .\n3206\tWhat Bloody Sunday lacks in clarity , it makes up for with a great , fiery passion .\n3207\tIts adult themes of familial separation and societal betrayal are head and shoulders above much of the director 's previous popcorn work .\n3208\tDirector Nancy Savoca 's no-frills record of a show forged in still-raw emotions captures the unsettled tenor of that post 9-11 period far better than a more measured or polished production ever could .\n3209\tThe film grows on you .\n3210\tAnd how .\n3211\tOne thing you have to give them credit for : The message of the movie is consistent with the messages espoused in the company 's previous video work .\n3212\tHalloween : Resurrection is n't exactly quality cinema , but it is n't nearly as terrible as it cold have been .\n3213\tAs banal as the telling may be -- and at times , All My Loved Ones more than flirts with kitsch -- the tale commands attention .\n3214\tRomantic comedy and Dogme 95 filmmaking may seem odd bedfellows , but they turn out to be delightfully compatible here .\n3215\tThe most wondrous love story in years , it is a great film .\n3216\tSome movies suck you in despite their flaws , and Heaven is one such beast .\n3217\tMy Wife Is an Actress works as well as it does because -LRB- the leads -RRB- are such a companionable couple .\n3218\tWith Spy Kids 2 : The Island of Lost Dreams , however , Robert Rodriguez adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking .\n3219\tBased on Dave Barry 's popular book of the same name , the movie benefits from having a real writer plot out all of the characters ' moves and overlapping story .\n3220\tBouquet gives a performance that is masterly .\n3221\tA poignant comedy that offers food for thought .\n3222\t... a series of tales told with the intricate preciseness of the best short story writing .\n3223\tIf you 're content with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director 's life , Eisenstein delivers .\n3224\tThis filmed Tosca -- not the first , by the way -- is a pretty good job , if it 's filmed Tosca that you want .\n3225\tI 'll stay with the stage versions , however , which bite cleaner , and deeper .\n3226\tWhile the path may be familiar , first-time director Denzel Washington and a top-notch cast manage to keep things interesting .\n3227\tAn engaging criminal romp that will have viewers guessing just who 's being conned right up to the finale .\n3228\tThe picture runs a mere 84 minutes , but it 's no glance .\n3229\tIt 's a head-turner -- thoughtfully written , beautifully read and , finally , deeply humanizing .\n3230\tIt asks nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up .\n3231\tIt is as uncompromising as it is nonjudgmental , and makes clear that a prostitute can be as lonely and needy as any of the clients .\n3232\t`` Barbershop '' is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story .\n3233\tTully is in many ways the perfect festival film : a calm , self-assured portrait of small town regret , love , duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience .\n3234\tI like this movie a lot .\n3235\tI like that Smith , he 's not making fun of these people , he 's not laughing at them .\n3236\t... the implication is Kissinger may have decided that -- when it comes to truncheoning -- it 's better to give than to receive .\n3237\t` What 's the Russian word for Wow !? '\n3238\tKiarostami has crafted a deceptively casual ode to children and managed to convey a tiny sense of hope .\n3239\tI had more fun watching Spy than I had with most of the big summer movies .\n3240\tWhat Lee does so marvelously compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America ... sketchy but nevertheless gripping portrait of Jim Brown , a celebrated wonder in the spotlight\n3241\tMurder by Numbers ' is n't a great movie , but it 's a perfectly acceptable widget .\n3242\tFor those of an indulgent , slightly sunbaked and summery mind , Sex and Lucia may well prove diverting enough .\n3243\tWhat -LRB- Denis -RRB- accomplishes in his chilling , unnerving film is a double portrait of two young women whose lives were as claustrophic , suffocating and chilly as the attics to which they were inevitably consigned .\n3244\tA well-done film of a self-reflexive , philosophical nature .\n3245\tTexan director George Ratliff had unlimited access to families and church meetings , and he delivers fascinating psychological fare .\n3246\tThe rich performances by Friel -- and especially Williams , an American actress who becomes fully English -- round out the square edges .\n3247\tThe new Insomnia is a surprisingly faithful remake of its chilly predecessor , and when it does elect to head off in its own direction , it employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities .\n3248\tA film in a class with Spike Lee 's masterful Do The Right Thing .\n3249\tJagger , Stoppard and director Michael Apted ... deliver a riveting and surprisingly romantic ride .\n3250\tGreengrass -LRB- working from Don Mullan 's script -RRB- forgoes the larger socio-political picture of the situation in Northern Ireland in favour of an approach that throws one in the pulsating thick of a truly frightening situation .\n3251\tA thought-provoking and often-funny drama about isolation .\n3252\tWhatever one makes of its political edge , this is beautiful filmmaking from one of French cinema 's master craftsmen .\n3253\tMama Africa pretty much delivers on that promise .\n3254\tIt does give you a peek .\n3255\tThe main problem being that it 's only a peek .\n3256\tRoman Polanski 's autobiographical gesture at redemption is better than ` Shindler 's List ' - it is more than merely a Holocaust movie .\n3257\tA perfectly respectable , perfectly inoffensive , easily forgettable film .\n3258\tRomanek 's themes are every bit as distinctive as his visuals .\n3259\tBeyond the cleverness , the weirdness and the pristine camerawork , One Hour Photo is a sobering meditation on why we take pictures .\n3260\tSeeing Seinfeld at home as he watches his own appearance on Letterman with a clinical eye reminds you that the key to stand-up is to always make it look easy , even though the reality is anything but .\n3261\tSpeaks eloquently about the symbiotic relationship between art and life .\n3262\tThe work of an artist tormented by his heritage , using his storytelling ability to honor the many faceless victims .\n3263\tThe audacity to view one of Shakespeare 's better known tragedies as a dark comedy is , by itself , deserving of discussion .\n3264\tThis is an exercise in chilling style , and Twohy films the sub , inside and out , with an eye on preserving a sense of mystery .\n3265\tAn uncomfortable experience , but one as brave and challenging as you could possibly expect these days from American cinema .\n3266\tHailed as a clever exercise in neo-Hitchcockianism , this clever and very satisfying picture is more accurately Chabrolian .\n3267\tFunny and also heartwarming without stooping to gooeyness .\n3268\tAt the film 's centre is a precisely layered performance by an actor in his mid-seventies , Michel Piccoli .\n3269\tThe viewer takes great pleasure in watching the resourceful Molly stay a step ahead of her pursuers .\n3270\tWith amazing finesse , the film shadows Heidi 's trip back to Vietnam and the city where her mother , Mai Thi Kim , still lives .\n3271\tDirector Charles Stone III applies more detail to the film 's music than to the story line ; what 's best about Drumline is its energy .\n3272\tA heroic tale of persistence that is sure to win viewers ' hearts .\n3273\tIt 's all a rather shapeless good time ...\n3274\thas far more energy , wit and warmth than should be expected from any movie with a `` 2 '' at the end of its title .\n3275\tA little better than Sorcerer 's Stone .\n3276\tA chilling movie without oppressive gore .\n3277\tA uniquely sensual metaphorical dramatization of sexual obsession that spends a bit too much time on its fairly ludicrous plot .\n3278\tIf you like peace , you 'll like Promises .\n3279\tBe prepared to cling to the edge of your seat , tense with suspense .\n3280\tThe Ring never lets you off the hook .\n3281\tThumbs up to Paxton for not falling into the Hollywood trap and making a vanity project with nothing new to offer .\n3282\tAt once disarmingly straightforward and strikingly devious .\n3283\tIf you like quirky , odd movies and\\/or the ironic , here 's a fun one .\n3284\tSensitive ensemble performances and good period reconstruction add up to a moving tragedy with some buoyant human moments .\n3285\tIt 's not the least of Afghan tragedies that this noble warlord would be consigned to the dustbin of history .\n3286\tIt 's a lovely , sad dance highlighted by Kwan 's unique directing style .\n3287\tThe script by David Koepp is perfectly serviceable and because he gives the story some soul ... he elevates the experience to a more mythic level .\n3288\tThis is a visually stunning rumination on love , memory , history and the war between art and commerce .\n3289\tShort-story quaint , touchingly mending a child 's pain for his dead mother via communication with an old woman straight out of Eudora Welty .\n3290\tIt 's always fascinating to watch Marker the essayist at work .\n3291\tA quiet family drama with a little bit of romance and a dose of darkness .\n3292\tThe tasteful little revision works wonders , enhancing the cultural and economic subtext , bringing richer meaning to the story 's morals .\n3293\tKosminsky ... puts enough salt into the wounds of the tortured and self-conscious material to make it sting .\n3294\tOne of the greatest films I 've ever seen .\n3295\tIts gentle , touching story creeps into your heart .\n3296\tAbout as big a crowdpleaser as they possibly come .\n3297\tBound to appeal to women looking for a howlingly trashy time .\n3298\tEven these tales of just seven children seem at times too many , although in reality they are not enough .\n3299\tEvery child 's story is what matters .\n3300\tThis film can only point the way -- but thank goodness for this signpost .\n3301\tA poignant and gently humorous parable that loves its characters and communicates something rather beautiful about human nature .\n3302\tReal Women Have Curves does n't offer any easy answers .\n3303\tVampire epic succeeds as spooky action-packed trash of the highest order .\n3304\tOne of the funniest motion pictures of the year , but ... also one of the most curiously depressing .\n3305\tWhile somewhat less than it might have been , the film is a good one , and you 've got to hand it to director George Clooney for biting off such a big job the first time out .\n3306\tLike the chilled breath of oral storytelling frozen onto film .\n3307\tA charmer from Belgium .\n3308\tA wild , endearing , masterful documentary .\n3309\tJackie Chan movies are a guilty pleasure - he 's easy to like and always leaves us laughing .\n3310\tBrown Sugar signals director Rick Famuyiwa 's emergence as an articulate , grown-up voice in African-American cinema .\n3311\tWith exquisite craftsmanship ... Olivier Assayas has fashioned an absorbing look at provincial bourgeois French society .\n3312\tIt 's rare for any movie to be as subtle and touching as The Son 's Room .\n3313\tIt has a way of seeping into your consciousness , with lingering questions about what the film is really getting at .\n3314\tMaelstrom is a deliberately unsteady mixture of stylistic elements .\n3315\t-LRB- Leigh -RRB- has a true talent for drawing wrenching performances from his actors -LRB- improvised over many months -RRB- and for conveying the way tiny acts of kindness make ordinary life survivable .\n3316\t-LRB- D -RRB- espite its familiar subject matter , Ice Age is consistently amusing and engrossing ...\n3317\tThe ingenious construction -LRB- adapted by David Hare from Michael Cunningham 's novel -RRB- constantly flows forwards and back , weaving themes among three strands which allow us to view events as if through a prism\n3318\tAssured , glossy and shot through with brittle desperation .\n3319\tThe bottom line is the piece works brilliantly .\n3320\tIt was only a matter of time before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo .\n3321\tIt is Scott 's convincing portrayal of Roger the sad cad that really gives the film its oomph .\n3322\tWhile this movie , by necessity , lacks Fellowship 's heart , Two Towers outdoes its spectacle .\n3323\tMeyjes ... has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics .\n3324\tAside from Rohmer 's bold choices regarding point of view , The Lady and the Duke represents the filmmaker 's lifelong concern with formalist experimentation in cinematic art .\n3325\tWhat ` Dumb and Dumber ' would have been without the vulgarity and with an intelligent , life-affirming script .\n3326\t... a vivid , thoughtful , unapologetically raw coming-of-age tale full of sex , drugs and rock 'n' roll .\n3327\tYou would n't want to live waydowntown , but it is a hilarious place to visit .\n3328\tFilms are made of little moments .\n3329\tChanging Lanes tries for more .\n3330\tIt does n't reach them , but the effort is gratefully received .\n3331\tWhen the movie mixes the cornpone and the Cosa Nostra , it finds a nice rhythm .\n3332\tThe story is a rather simplistic one : grief drives her , love drives him , and a second chance to find love in the most unlikely place - it struck a chord in me .\n3333\tTerrific casting and solid execution give all three stories life .\n3334\tA hard look at one man 's occupational angst and its subsequent reinvention , a terrifying study of bourgeois desperation worthy of Claude Chabrol .\n3335\t-LRB- Ramsay -RRB- visually transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art , music and metaphor .\n3336\tFrequent flurries of creative belly laughs and genuinely enthusiastic performances ... keep the movie slaloming through its hackneyed elements with enjoyable ease .\n3337\tAt its best , this is grand-scale moviemaking for a larger-than-life figure , an artist who has been awarded mythic status in contemporary culture .\n3338\tThe plot of the comeback curlers is n't very interesting actually , but what I like about Men With Brooms and what is kind of special is how the film knows what 's unique and quirky about Canadians .\n3339\t10 minutes into the film you 'll be white-knuckled and unable to look away .\n3340\tIt 's a beautiful film , full of elaborate and twisted characters - and it 's also pretty funny .\n3341\tCould this be the first major studio production shot on video tape instead of film ?\n3342\tNot since Ghostbusters has a film used Manhattan 's architecture in such a gloriously goofy way .\n3343\tAs tricky and satisfying as any of David Mamet 's airless cinematic shell games .\n3344\tThe universal theme of becoming a better person through love has never been filmed more irresistibly than in ` Baran . '\n3345\tCube 's charisma and chemistry compensate for corniness and cliche .\n3346\tWith lesser talents , High Crimes would be entertaining , but forgettable .\n3347\tWith Freeman and Judd , I 'll at least remember their characters .\n3348\tAs a director , Paxton is surprisingly brilliant , deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip .\n3349\tThe film is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders , but deftly manages to avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill .\n3350\tDaughter From Danang sticks with its subjects a little longer and tells a deeper story\n3351\tA coming-of-age film that avoids the cartoonish clichÃ©s and sneering humor of the genre as it provides a fresh view of an old type -- the uncertain girl on the brink of womanhood .\n3352\tThe faithful will enjoy this sometimes wry adaptation of V.S. Naipaul 's novel , but newcomers may find themselves stifling a yawn or two during the first hour .\n3353\tA distinguished and thoughtful film , marked by acute writing and a host of splendid performances .\n3354\tBarry convinces us he 's a dangerous , secretly unhinged guy who could easily have killed a president because it made him feel powerful .\n3355\tTakes you by the face , strokes your cheeks and coos beseechingly at you : slow down , shake off your tensions and take this picture at its own breezy , distracted rhythms .\n3356\tI do n't feel the least bit ashamed in admitting that my enjoyment came at the expense of seeing justice served , even if it 's a dish that 's best served cold .\n3357\tIt 's a smart , solid , kinetically-charged spy flick worthy of a couple hours of summertime and a bucket of popcorn .\n3358\tNothing overly original , mind you , but solidly entertaining .\n3359\tChanging Lanes is an anomaly for a Hollywood movie ; it 's a well-written and occasionally challenging social drama that actually has something interesting to say .\n3360\tborrows a bit from the classics `` Wait Until Dark '' and `` Extremities '' ... But in terms of its style , the movie is in a class by itself .\n3361\tBecause Eight Legged Freaks is partly an homage to Them , Tarantula and other low - budget B-movie thrillers of the 1950s and '60s , the movie is a silly -LRB- but not sophomoric -RRB- romp through horror and hellish conditions .\n3362\tPuts a refreshing and comical spin on the all-too-familiar saga of the contemporary single woman .\n3363\tIf you grew up on Scooby -- you 'll love this movie .\n3364\tMatthew Lillard is born to play Shaggy !\n3365\tThough filmed partly in Canada , Paid in Full has clever ways of capturing inner-city life during the Reagan years .\n3366\t`` Spider-man is better than any summer blockbuster we had to endure last summer , and hopefully , sets the tone for a summer of good stuff .\n3367\tIf you 're a comic fan , you ca n't miss it .\n3368\tIf you 're not , you 'll still have a good time . ''\n3369\tThis movie has a strong message about never giving up on a loved one , but it 's not an easy movie to watch and will probably disturb many who see it .\n3370\tThe movie is a trove of delights .\n3371\tExcellent performances from Jacqueline Bisset and Martha Plimpton grace this deeply touching melodrama .\n3372\tIn a summer of clones , Harvard Man is something rare and riveting : a wild ride that relies on more than special effects .\n3373\tWhile the humor is recognizably Plympton , he has actually bothered to construct a real story this time .\n3374\tJolting into Charleston rhythms , the story has the sizzle of old news that has finally found the right vent -LRB- accurate ?\n3375\tWho cares ? -RRB- .\n3376\tAn overly melodramatic but somewhat insightful French coming-of-age film ...\n3377\tMost thrillers send audiences out talking about specific scary scenes or startling moments ; `` Frailty '' leaves us with the terrifying message that the real horror may be waiting for us at home .\n3378\tClose enough in spirit to its freewheeling trash-cinema roots to be a breath of fresh air .\n3379\tSkillfully weaves both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise .\n3380\tDamon brings the proper conviction to his role as -LRB- Jason Bourne -RRB- .\n3381\tFor the most part , it works beautifully as a movie without sacrificing the integrity of the opera .\n3382\tAs played by Ryan Gosling , Danny is a frighteningly fascinating contradiction .\n3383\tThis is not Chabrol 's best , but even his lesser works outshine the best some directors can offer .\n3384\tDespite its flaws , Crazy as Hell marks an encouraging new direction for La Salle .\n3385\tYou 'll end up moved .\n3386\tIf you ever wondered what it would be like to be smack in the middle of a war zone armed with nothing but a camera , this Oscar-nominated documentary takes you there .\n3387\tThe Woodman seems to have directly influenced this girl-meets-girl love story , but even more reassuring is how its makers actually seem to understand what made Allen 's romantic comedies so pertinent and enduring .\n3388\tI loved the look of this film .\n3389\tThose with a modicum of patience will find in these characters ' foibles a timeless and unique perspective .\n3390\tBeautiful to watch and holds a certain charm .\n3391\t13 Conversations may be a bit too enigmatic and overly ambitious to be fully successful , but Sprecher and her screenwriting partner and sister , Karen Sprecher , do n't seem ever to run out of ideas .\n3392\tThe movie is our story as much as it is Schmidt 's , no matter if it 's viewed as a self-reflection or cautionary tale .\n3393\tFoster breathes life into a roll that could have otherwise been bland and run of the mill .\n3394\tQuitting offers piercing domestic drama with spikes of sly humor .\n3395\tSome people want the ol' ball-and-chain and then there are those who just want the Ball and Chain .\n3396\t-LRB- Barry -RRB- gives Assassin a disquieting authority .\n3397\tIt 's refreshing to see a romance this smart .\n3398\tAt its best -LRB- and it does have some very funny sequences -RRB- Looking for Leonard reminds you just how comically subversive silence can be .\n3399\tAs improbable as this premise may seem , Abbass 's understated , shining performance offers us the sense that on some elemental level , Lilia deeply wants to break free of her old life .\n3400\tAnyone who ever fantasized about space travel but ca n't afford the $ 20 million ticket to ride a Russian rocket should catch this IMAX offering .\n3401\t`` The turntable is now outselling the electric guitar ... ''\n3402\tTransforms one of -LRB- Shakespeare 's -RRB- deepest tragedies into a smart new comedy .\n3403\tAn intelligent and deeply felt work about impossible , irrevocable choices and the price of making them .\n3404\tIt may sound like a mere disease-of - the-week TV movie , but A Song For Martin is made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter .\n3405\tSayles is making a statement about the inability of dreams and aspirations to carry forward into the next generation .\n3406\tAs Antonia is assimilated into this newfangled community , the film settles in and becomes compulsively watchable in a guilty-pleasure , daytime-drama sort of fashion .\n3407\tevery once in a while , a movie will come along that turns me into that annoying specimen of humanity that I usually dread encountering the most - The Fanboy\n3408\tOn its own staggeringly unoriginal terms , this gender-bending comedy is generally quite funny .\n3409\tIt 's never dull and always looks good .\n3410\tThe tonal shifts are jolting , and though Wen 's messages are profound and thoughtfully delivered , more thorough transitions would have made the film more cohesive .\n3411\tAs commander-in-chief of this film , Bigelow demonstrates a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world .\n3412\tWith wit and empathy to spare , waydowntown acknowledges the silent screams of workaday inertia but stops short of indulging its characters ' striving solipsism .\n3413\tAll of it works smoothly under the direction of Spielberg , who does a convincing impersonation here of a director enjoying himself immensely .\n3414\tThe kind of sweet-and-sour insider movie that film buffs will eat up like so much gelati .\n3415\tWith ` Bowling for Columbine , ' Michael Moore gives us the perfect starting point for a national conversation about guns , violence , and fear .\n3416\tOne of the year 's most weirdly engaging and unpredictable character pieces .\n3417\tOne of the best inside-show-biz yarns ever .\n3418\tNone of his actors stand out , but that 's less of a problem here than it would be in another film : Characterization matters less than atmosphere .\n3419\tA terrifically entertaining specimen of Spielbergian sci-fi .\n3420\tA rare and lightly entertaining look behind the curtain that separates comics from the people laughing in the crowd .\n3421\tSolondz is so intent on hammering home his message that he forgets to make it entertaining .\n3422\tWhatever heartwarming scene the impressively discreet filmmakers may have expected to record with their mini DV , they show a remarkable ability to document both sides of this emotional car-wreck .\n3423\tIt establishes its ominous mood and tension swiftly , and if the suspense never rises to a higher level , it is nevertheless maintained throughout .\n3424\tAlthough What Time offers Tsai 's usual style and themes , it has a more colorful , more playful tone than his other films .\n3425\tA moving and stark reminder that the casualties of war reach much further than we imagine .\n3426\tA thoroughly engaging , surprisingly touching British comedy .\n3427\tA sloppy , amusing comedy that proceeds from a stunningly unoriginal premise .\n3428\t... a rich and intelligent film that uses its pulpy core conceit to probe questions of attraction and interdependence and how the heart accomodates practical needs .\n3429\tIt is an unstinting look at a collaboration between damaged people that may or may not qual\n3430\tcaptures that perverse element of the Kafkaesque where identity , overnight , is robbed and replaced with a persecuted `` other . ''\n3431\tThe actors are simply too good , and the story too intriguing , for technical flaws to get in the way .\n3432\tAn estrogen opera so intensely feminine that it serves as the antidote -LRB- and cannier doppelganger -RRB- to Diesel 's XXX flex-a-thon .\n3433\tImamura has said that Warm Water Under a Red Bridge is a poem to the enduring strengths of women .\n3434\tIt may also be the best sex comedy about environmental pollution ever made .\n3435\tIt 's a ripper of a yarn and I for one enjoyed the thrill of the chill .\n3436\tNaomi Watts is terrific as Rachel ; her petite frame and vulnerable persona emphasising her plight and isolation .\n3437\tA family film that contains some hefty thematic material on time , death , eternity , and what is needed to live a rich and full life .\n3438\tWith Dickens ' words and writer-director Douglas McGrath 's even-toned direction , a ripping good yarn is told .\n3439\tExactly what its title implies : lusty , boisterous and utterly charming .\n3440\tThe film is darkly funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work .\n3441\tA smart , compelling drama .\n3442\tA must-see for fans of thoughtful war films and those interested in the sights and sounds of battle .\n3443\tI found myself liking the film , though in this case one man 's treasure could prove to be another man 's garbage .\n3444\t... Rogers 's mouth never stops shut about the war between the sexes and how to win the battle .\n3445\tDeliberately and skillfully uses ambiguity to suggest possibilities which imbue the theme with added depth and resonance .\n3446\tIt 's all entertaining enough , but do n't look for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper .\n3447\tNicholson 's understated performance is wonderful .\n3448\tAs Warren he stumbles in search of all the emotions and life experiences he 's neglected over the years .\n3449\tDespite its old-hat set-up and predictable plot , Empire still has enough moments to keep it entertaining .\n3450\tAnother entertaining romp from Robert Rodriguez .\n3451\tIt 's not a classic spy-action or buddy movie , but it 's entertaining enough and worth a look .\n3452\tI am more offended by his lack of faith in his audience than by anything on display here .\n3453\tA sharp satire of desperation and cinematic deception .\n3454\tTsai convincingly paints a specifically urban sense of disassociation here .\n3455\tIf you can swallow its absurdities and crudities Lagaan really is enormously good fun .\n3456\tAn unorthodox little film noir organized crime story that includes one of the strangest love stories you will ever see .\n3457\tA pleasing , often-funny comedy .\n3458\t-LRB- A -RRB- rare movie that makes us re-assess the basis for our lives and evaluate what is truly ours in a world of meaningless activity .\n3459\tAll three actresses are simply dazzling , particularly Balk , who 's finally been given a part worthy of her considerable talents .\n3460\tAn Asian neo-realist treasure .\n3461\tPlummer steals the show without resorting to camp as Nicholas ' wounded and wounding Uncle Ralph .\n3462\tIt 's a great performance and a reminder of Dickens ' grandeur .\n3463\t... less a story than an inexplicable nightmare , right down to the population 's shrugging acceptance to each new horror .\n3464\tI am highly amused by the idea that we have come to a point in society where it has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson .\n3465\tA compassionate , moving portrait of an American -LRB- and an America -RRB- always reaching for something just outside his grasp .\n3466\tAn original little film about one young woman 's education .\n3467\tThe film is about the relationships rather than about the outcome .\n3468\tAnd it sees those relationships , including that between the son and his wife , and the wife and the father , and between the two brothers , with incredible subtlety and acumen .\n3469\tOne of those terrific documentaries that collect a bunch of people who are enthusiastic about something and then figures out how to make us share their enthusiasm .\n3470\tAn instance of an old dog not only learning but inventing a remarkable new trick .\n3471\tRodriguez has the chops of a smart-aleck film school brat and the imagination of a big kid ...\n3472\tAmy and Matthew have a bit of a phony relationship , but the film works in spite of it .\n3473\tGarcia and the other actors help make the wobbly premise work .\n3474\tIt 's surprisingly decent , particularly for a tenth installment in a series .\n3475\tA fascinating , unnerving examination of the delusions of one unstable man .\n3476\tIt 's no accident that The Accidental Spy is a solid action pic that returns the martial arts master to top form .\n3477\tLeave it to the French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller , a dumb comedy or a sappy melodrama .\n3478\tThe director , Mark Pellington , does a terrific job conjuring up a sinister , menacing atmosphere though unfortunately all the story gives us is flashing red lights , a rattling noise , and a bump on the head .\n3479\tHeartwarming here relies less on forced air than on Petter NÃ¦ss ' delicate , clever direction ... and a wonderful , imaginative script by Axel Hellstenius .\n3480\tMakes the case for a strong education and good teachers being more valuable in the way they help increase an average student 's self-esteem , and not strictly in the knowledge imparted .\n3481\tSteers refreshingly clear of the usual cliches .\n3482\t`` Home Movie '' is a sweet treasure and something well worth your time .\n3483\tHighly recommended viewing for its courage , ideas , technical proficiency and great acting .\n3484\tThe movie 's thesis -- elegant technology for the masses -- is surprisingly refreshing .\n3485\tScott delivers a terrific performance in this fascinating portrait of a modern Lothario .\n3486\t... Wallace is smart to vary the pitch of his movie , balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams .\n3487\tCombines sharp comedy , old-fashioned monster movie atmospherics , and genuine heart to create a film that 's not merely about kicking undead \\*\\*\\* , but also about dealing with regret and , ultimately , finding redemption .\n3488\tWhile most films these days are about nothing , this film seems to be about everything that 's plaguing the human spirit in a relentlessly globalizing world .\n3489\tMarshall puts a suspenseful spin on standard horror flick formula .\n3490\tAs lively an account as Seinfeld is deadpan .\n3491\tThough Lan Yu lacks a sense of dramatic urgency , the film makes up for it with a pleasing verisimilitude .\n3492\tYou may leave the theater with more questions than answers , but darned if your toes wo n't still be tapping .\n3493\tTake any 12-year-old boy to see this picture , and he 'll be your slave for a year .\n3494\tBut this is not a movie about an inhuman monster ; it 's about a very human one .\n3495\tAt times THE GUYS taps into some powerful emotions , but this kind of material is more effective on stage .\n3496\tIt 's not a motion picture ; it 's an utterly static picture .\n3497\tWhat makes it worth watching is Quaid 's performance .\n3498\tSoderbergh skims the fat from the 1972 film .\n3499\tWhat 's left is a rich stew of longing .\n3500\tIt 's the brilliant surfing photography bringing you right inside the massive waves that lifts Blue Crush into one of the summer 's most pleasurable movies .\n3501\tMore of the same from Taiwanese auteur Tsai Ming-liang , which is good news to anyone who 's fallen under the sweet , melancholy spell of this unique director 's previous films .\n3502\tHatfield and Hicks make the oddest of couples , and in this sense the movie becomes a study of the gambles of the publishing world , offering a case study that exists apart from all the movie 's political ramifications .\n3503\tBest of all is Garcia , who perfectly portrays the desperation of a very insecure man .\n3504\tThe filmmakers try to balance pointed , often incisive satire and unabashed sweetness , with results that are sometimes bracing , sometimes baffling and quite often , and in unexpected ways , touching .\n3505\tA sobering and powerful documentary about the most severe kind of personal loss : rejection by one 's mother .\n3506\tOften overwrought and at times positively irritating , the film turns into an engrossing thriller almost in spite of itself .\n3507\tHumorous and heartfelt , Douglas McGrath 's version of ` Nicholas Nickleby ' left me feeling refreshed and hopeful .\n3508\tNot many movies have that kind of impact on me these days .\n3509\tA poignant lyricism runs through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem .\n3510\tThis is SO De Palma .\n3511\tIf you love him , you 'll like it .\n3512\tIf you do n't ... well , skip to another review .\n3513\tRouge is less about a superficial midlife crisis than it is about the need to stay in touch with your own skin , at 18 or 80 .\n3514\tThe moral shrapnel and mental shellshock will linger long after this film has ended .\n3515\tUnfolds in a series of achronological vignettes whose cumulative effect is chilling .\n3516\tThe movie enters a realm where few non-porn films venture , and comes across as darkly funny , energetic , and surprisingly gentle .\n3517\tAlthough the subject matter may still be too close to recent national events , the film works - mostly due to its superior cast of characters .\n3518\tIt 's not going to be everyone 's bag of popcorn , but it definitely gives you something to chew on .\n3519\tHuppert and Girardot give performances of exceptional honesty .\n3520\tIt has that rare quality of being able to creep the living hell out of you ...\n3521\tA cautionary tale about the grandiosity of a college student who sees himself as impervious to a fall .\n3522\tAn infinitely wittier version of the Home Alone formula .\n3523\tFeardotcom 's thrills are all cheap , but they mostly work .\n3524\t-LRB- Hayek -RRB- throws herself into this dream Hispanic role with a teeth-clenching gusto , she strikes a potent chemistry with Molina and she gradually makes us believe she is Kahlo .\n3525\tMr. Deeds is , as comedy goes , very silly -- and in the best way .\n3526\tYou could love Safe Conduct -LRB- Laissez Passer -RRB- for being a subtitled French movie that is 170 minutes long .\n3527\tYou could hate it for the same reason .\n3528\tWith We Were Soldiers , Hollywood makes a valiant attempt to tell a story about the Vietnam War before the pathology set in .\n3529\t` Moore is like a progressive bull in a china shop , a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism . '\n3530\tBroomfield reveals an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force .\n3531\tAt just over an hour , Home Movie will leave you wanting more , not to mention leaving you with some laughs and a smile on your face .\n3532\tStuart 's poor-me persona needs a whole bunch of Snowball 's cynicism to cut through the sugar coating .\n3533\tBut once the falcon arrives in the skies above Manhattan , the adventure is on red alert .\n3534\tThere is greatness here .\n3535\tBoasts enough funny dialogue and sharp characterizations to be mildly amusing .\n3536\tDirector Juan Jose Campanella could have turned this into an Argentine retread of `` Iris '' or `` American Beauty , '' but instead pulls a little from each film and creates something more beautiful than either of those films .\n3537\tIf you love the music , and I do , its hard to imagine having more fun watching a documentary ...\n3538\tNakata 's technique is to imply terror by suggestion , rather than the overuse of special effects .\n3539\t`` 13 Conversations About One Thing '' is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling .\n3540\tSatin Rouge is not a new , or inventive , journey , but it 's encouraging to see a three-dimensional , average , middle-aged woman 's experience of self-discovery handled with such sensitivity .\n3541\tThough an important political documentary , this does not really make the case the Kissinger should be tried as a war criminal .\n3542\tCannon 's confidence and laid-back good spirits are , with the drumming routines , among the film 's saving graces .\n3543\tIn its understanding , often funny way , it tells a story whose restatement is validated by the changing composition of the nation .\n3544\tShe may not be real , but the laughs are .\n3545\tA fiercely clever and subtle film , capturing the precarious balance between the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries .\n3546\tOK arthouse .\n3547\tThe power of this script , and the performances that come with it , is that the whole damned thing did n't get our moral hackles up .\n3548\tThe movie itself is far from disappointing , offering an original take on courtroom movies , a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis .\n3549\tAbout Schmidt is undoubtedly one of the finest films of the year .\n3550\tIf you 're not deeply touched by this movie , check your pulse .\n3551\tThe charm of Revolution OS is rather the way it introduces you to new , fervently held ideas and fanciful thinkers .\n3552\tUntil its final minutes this is a perceptive study of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity .\n3553\tOffers the flash of rock videos fused with solid performances and eerie atmosphere .\n3554\tFilmmakers Dana Janklowicz-Mann and Amir Mann area headed east , Far East , in retelling a historically significant , and personal , episode detailing how one international city welcomed tens of thousands of German Jewish refugees while the world 's democracie\n3555\tFor all its problems ... The Lady and the Duke surprisingly manages never to grow boring ... which proves that Rohmer still has a sense of his audience .\n3556\tAn edifying glimpse into the wit and revolutionary spirit of these performers and their era .\n3557\tCraig Bartlett and director Tuck Tucker should be commended for illustrating the merits of fighting hard for something that really matters .\n3558\tThe film is saved from are n't - kids-cute sentimentality by a warmth that is n't faked and a stately sense of composition .\n3559\tThis is one of the year 's best films .\n3560\tA fleet-footed and pleasingly upbeat family diversion .\n3561\tSorvino is delightful in the central role .\n3562\tShe nearly glows with enthusiasm , sensuality and a conniving wit .\n3563\tIt 's immensely ambitious , different than anything that 's been done before and amazingly successful in terms of what it 's trying to do .\n3564\tThe story , once it gets rolling , is nothing short of a great one .\n3565\tGreat performances , stylish cinematography and a gritty feel help make Gangster No. 1 a worthwhile moviegoing experience .\n3566\t`` Mr. Deeds '' is suitable summer entertainment that offers escapism without requiring a great deal of thought .\n3567\tIt 's an ambitious film , and as with all ambitious films , it has some problems .\n3568\tBut on the whole , you 're gonna like this movie .\n3569\tChaiken ably balances real-time rhythms with propulsive incident .\n3570\tThis is an extraordinary film , not least because it is Japanese and yet feels universal .\n3571\tIn a summer overrun with movies dominated by CGI aliens and super heroes , it revigorates the mind to see a feature that concentrates on people , a project in which the script and characters hold sway .\n3572\tThere 's just something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance .\n3573\tA funny and touching film that is gorgeously acted by a British cast to rival Gosford Park 's .\n3574\tThere 's nothing more satisfying during a summer of event movies than a spy thriller like The Bourne Identity that 's packed with just as much intelligence as action .\n3575\tI 'm not generally a fan of vegetables but this batch is pretty cute .\n3576\tQutting may be a flawed film , but it is nothing if not sincere .\n3577\tBeautifully crafted , engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic , twisty yarn that will keep them guessing .\n3578\tA thoughtful and surprisingly affecting portrait of a screwed-up man who dared to mess with some powerful people , seen through the eyes of the idealistic kid who chooses to champion his ultimately losing cause .\n3579\tA cultural wildcard experience : wacky , different , unusual , even nutty .\n3580\tDaughter From Danang reveals that efforts toward closure only open new wounds .\n3581\tIt does n't flinch from its unsettling prognosis , namely , that the legacy of war is a kind of perpetual pain .\n3582\tFor most of its footage , the new thriller proves that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp , shudder and even tremble without losing his machismo .\n3583\tThis is not an easy film .\n3584\tBut it could be , by its art and heart , a necessary one .\n3585\tA very good film sits in the place where a masterpiece should be .\n3586\t... spellbinding fun and deliciously exploitative .\n3587\tIt 's Jagger 's bone-dry , mournfully brittle delivery that gives the film its bittersweet bite .\n3588\tImpossible as it may sound , this film 's heart is even more embracing than Monty , if only because it accepts nasty behavior and severe flaws as part of the human condition .\n3589\tDespite the predictable parent vs. child coming-of-age theme , first-class , natural acting and a look at `` the real Americans '' make this a charmer .\n3590\tOne of the smarter offerings the horror genre has produced in recent memory , even if it 's far tamer than advertised .\n3591\tOne of recent memory 's most thoughtful films about art , ethics , and the cost of moral compromise .\n3592\tthe film does n't sustain its initial promise with a jarring , new-agey tone creeping into the second half\n3593\tBlade II is as estrogen-free as movies get , so you might want to leave your date behind for this one , or she 's gonna make you feel like you owe her big-time .\n3594\tThe message is that even the most unlikely can link together to conquer all kinds of obstacles , whether they be of nature , of man or of one another .\n3595\tMany a parent and their teen -LRB- or preteen -RRB- kid could bond while watching A Walk To Remember .\n3596\tSo could young romantics out on a date .\n3597\tAll leather pants & augmented boobs , Hawn is hilarious as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative , handbag-clutching Sarandon .\n3598\tThe members manage to pronounce KOK exactly as you think they might , thus giving the cast ample opportunity to use that term as often as possible .\n3599\tIt 's very Beavis and Butthead , yet always seems to elicit a chuckle .\n3600\tWhile this gentle and affecting melodrama will have luvvies in raptures , it 's far too slight and introspective to appeal to anything wider than a niche audience .\n3601\tChicago offers much colorful eye candy , including the spectacle of Gere in his dancing shoes , hoofing and crooning with the best of them .\n3602\tA difficult but worthy film that bites off more than it can chew by linking the massacre of Armenians in 1915 with some difficult relationships in the present .\n3603\tBy and large this is Mr. Kilmer 's movie , and it 's his strongest performance since The Doors .\n3604\tSome of the most ravaging , gut-wrenching , frightening war scenes since `` Saving Private Ryan '' have been recreated by John Woo in this little-known story of Native Americans and their role in the second great war .\n3605\tA charming but slight comedy .\n3606\tHenry Bean 's thoughtful screenplay provides no easy answers , but offers a compelling investigation of faith versus intellect\n3607\tA great cast and a wonderful but sometimes confusing flashback movie about growing up in a dysfunctional family .\n3608\tPlaying a role of almost Bergmanesque intensity ... Bisset is both convincing and radiant .\n3609\tA smart , provocative drama that does the nearly impossible : It gets under the skin of a man we only know as an evil , monstrous lunatic .\n3610\tAn alternately fascinating and frustrating documentary .\n3611\tGriffin & Co. manage to be spectacularly outrageous .\n3612\tNair 's cast is so large it 's Altman-esque , but she deftly spins the multiple stories in a vibrant and intoxicating fashion .\n3613\tThe movie plays up the cartoon 's more obvious strength of snazziness while neglecting its less conspicuous writing strength .\n3614\tPoignant Japanese epic about adolescent anomie and heartbreak .\n3615\tWe 've seen it all before in one form or another , but director Hoffman , with great help from Kevin Kline , makes us care about this latest reincarnation of the world 's greatest teacher .\n3616\tSecretary is not a movie about fetishism .\n3617\tIt is a movie about passion .\n3618\tEven though it 's common knowledge that Park and his founding partner , Yong Kang , lost Kozmo in the end , you ca n't help but get caught up in the thrill of the company 's astonishing growth .\n3619\tAlthough some viewers will not be able to stomach so much tongue-in-cheek weirdness , those who do will have found a cult favorite to enjoy for a lifetime .\n3620\tWhat could have easily become a cold , calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking .\n3621\tA delightful surprise because despite all the backstage drama , this is a movie that tells stories that work -- is charming , is moving , is funny and looks professional .\n3622\tThe IMAX screen enhances the personal touch of manual animation .\n3623\tDoes an impressive job of relating the complicated history of the war and of filling in the background .\n3624\tIt 's all about Anakin ... and the lustrous polished visuals rich in color and creativity and , of course , special effect .\n3625\tLacks the inspiration of the original and has a bloated plot that stretches the running time about 10 minutes past a child 's interest and an adult 's patience .\n3626\tBut it also has many of the things that made the first one charming .\n3627\tIt 's funny , touching , dramatically forceful , and beautifully shot .\n3628\tIts rawness and vitality give it considerable punch .\n3629\tA live-wire film that never loses its ability to shock and amaze .\n3630\tThe year 's greatest adventure , and Jackson 's limited but enthusiastic adaptation has made literature literal without killing its soul -- a feat any thinking person is bound to appreciate .\n3631\tIt 's fairly solid -- not to mention well edited so that it certainly does n't feel like a film that strays past the two and a half mark .\n3632\tBrims with passion : for words , for its eccentric , accident-prone characters , and for the crazy things that keep people going in this crazy life .\n3633\tIt 's secondary to American Psycho but still has claws enough to get inside you and stay there for a couple of hours .\n3634\tThe Hours , a delicately crafted film , is an impressive achievement in spite of a river of sadness that pours into every frame .\n3635\tFudges fact and fancy with such confidence that we feel as if we 're seeing something purer than the real thing .\n3636\tThis is unusual , food-for-thought cinema that 's as entertaining as it is instructive .\n3637\tWith an expressive face reminiscent of Gong Li and a vivid personality like Zhang Ziyi 's , Dong stakes out the emotional heart of Happy .\n3638\tNohe 's documentary about the event is sympathetic without being gullible : He is n't blind to the silliness , but also captures moments of spontaneous creativity and authentic co-operative interaction .\n3639\tIt may not be as cutting , as witty or as true as back in the glory days of Weekend and Two or Three Things I Know About Her , but who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process ?\n3640\tSecret Ballot is a funny , puzzling movie ambiguous enough to be engaging and oddly moving .\n3641\tAlthough devoid of objectivity and full of nostalgic comments from the now middle-aged participants , Dogtown and Z-Boys has a compelling story to tell .\n3642\tIt 's got some pretentious eye-rolling moments and it did n't entirely grab me , but there 's stuff here to like .\n3643\tBirthday Girl walks a tricky tightrope between being wickedly funny and just plain wicked .\n3644\tThe enjoyable Undercover Brother , a zany mix of Saturday Night Live-style parody , '70s Blaxploitation films and goofball action comedy gone wild , dishes out a ton of laughs that everyone can enjoy .\n3645\tBrings an irresistible blend of warmth and humor and a consistent embracing humanity in the face of life 's harshness .\n3646\tJackson is always watchable .\n3647\tTo the degree that ivans xtc .\n3648\tworks , it 's thanks to Huston 's revelatory performance .\n3649\tA wild ride of a movie that keeps throwing fastballs .\n3650\tConfessions is without a doubt a memorable directorial debut from King Hunk .\n3651\tWeird , vulgar comedy that 's definitely an acquired taste .\n3652\tA. . .\n3653\tcynical and serious look at teenage boys doing what they do best - being teenagers .\n3654\tThe film is a very good viewing alternative for young women .\n3655\tAustralian filmmaker David Flatman uses the huge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them .\n3656\tA dazzling dream of a documentary .\n3657\tA keep - 'em - guessing plot and an affectionate take on its screwed-up characters .\n3658\tBrave and sweetly rendered love story .\n3659\tThe film proves unrelentingly grim -- and equally engrossing .\n3660\tA hallmark film in an increasingly important film industry and worth the look .\n3661\tThe Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding , but its provocative central wedding sequence has far more impact .\n3662\tIf you like blood , guts and crazy beasts stalking men with guns though ... you will likely enjoy this monster .\n3663\tThe difference between Cho and most comics is that her confidence in her material is merited .\n3664\tSad to say -- it accurately reflects the rage and alienation that fuels the self-destructiveness of many young people .\n3665\tThere is a strong directorial stamp on every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye .\n3666\t` Anyone with a passion for cinema , and indeed sex , should see it as soon as possible . '\n3667\tSeeks to transcend its genre with a curiously stylized , quasi-Shakespearean portrait of pure misogynist evil .\n3668\tMordantly funny and intimately knowing ...\n3669\tWhat makes the movie special is its utter sincerity .\n3670\tFast and funny , an action cartoon that 's suspenseful enough for older kids but not too scary for the school-age crowd .\n3671\tOne of those rare films that come by once in a while with flawless amounts of acting , direction , story and pace .\n3672\tThe AAA of action , XXX is a blast of adrenalin , rated EEE for excitement .\n3673\tAnd Vin Diesel is the man .\n3674\tEarnest , unsubtle and Hollywood-predictable , Green Dragon is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese .\n3675\tAn ambitious movie that , like Shiner 's organizing of the big fight , pulls off enough of its effects to make up for the ones that do n't come off .\n3676\tNair and writer Laura Cahill dare to build a movie around some flawed but rather unexceptional women , emerging with a fine character study that 's short on plot but rich in the tiny revelations of real life .\n3677\tThe film 's unhurried pace is actually one of its strengths .\n3678\tEntirely appropriately , the tale unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn .\n3679\tDespite its floating narrative , this is a remarkably accessible and haunting film .\n3680\tVibrantly colored and beautifully designed , Metropolis is a feast for the eyes .\n3681\tSweetly sexy , funny and touching .\n3682\t... while Dark Water is n't a complete wash -LRB- no pun intended -RRB- , watched side-by-side with Ringu , it ultimately comes off as a pale successor .\n3683\tIs truth stranger than fiction ?\n3684\tIn -LRB- screenwriter -RRB- Charlie Kaufman 's world , truth and fiction are equally strange , and his for the taking .\n3685\tFor decades we 've marveled at Disney 's rendering of water , snow , flames and shadows in a hand-drawn animated world .\n3686\tPrepare to marvel again .\n3687\tA witty , low-key romantic comedy .\n3688\tMore good than great but Freeman and Judd make it work .\n3689\tIf you 're looking for a smart , nuanced look at de Sade and what might have happened at Picpus , Sade is your film .\n3690\tCould have been crisper and punchier , but it 's likely to please audiences who like movies that demand four hankies .\n3691\tTogether writer-director Danny Verete 's three tales comprise a powerful and reasonably fulfilling gestalt .\n3692\tBursting through the constraints of its source , this is one adapted - from-television movie that actually looks as if it belongs on the big screen .\n3693\tIts almost too-spectacular coastal setting distracts slightly from an eccentric and good-naturedly aimless story .\n3694\tIn other words , it 's just another sports drama\\/character study .\n3695\tYet this one makes up for in heart what it lacks in outright newness .\n3696\tPlus , like I already mentioned ... it 's Robert Duvall !\n3697\tC'mon !\n3698\tThis story of a determined woman 's courage to find her husband in a war zone offers winning performances and some effecting moments .\n3699\tLike Shrek , Spirit 's visual imagination reminds you of why animation is such a perfect medium for children , because of the way it allows the mind to enter and accept another world .\n3700\tA modestly made but profoundly moving documentary .\n3701\tIt irritates and saddens me that Martin Lawrence 's latest vehicle can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep 's clearly evident quality may end up languishing on a shelf somewhere .\n3702\tNot everything in this ambitious comic escapade works , but Coppola , along with his sister , Sofia , is a real filmmaker .\n3703\tIt must be in the genes .\n3704\tThe performers are so spot on , it is hard to conceive anyone else in their roles .\n3705\tThis slight premise ... works because of the ideal casting of the masterful British actor Ian Holm as the aged Napoleon .\n3706\tHashiguchi covers this territory with wit and originality , suggesting that with his fourth feature -- the first to be released in the U.S. -- a major director is emerging in world cinema .\n3707\tAlthough the film boils down to a lightweight story about matchmaking , the characters make Italian for Beginners worth the journey\n3708\tThe dragons are the real stars of Reign of Fire and you wo n't be disappointed .\n3709\tKudos to the most enchanting film of the year .\n3710\tIt works well enough , since the thrills pop up frequently , and the dispatching of the cast is as often imaginative as it is gory .\n3711\tColorful and deceptively buoyant until it suddenly pulls the rug out from under you , Burkinabe filmmaker Dani Kouyate 's reworking of a folk story whose roots go back to 7th-century oral traditions is also a pointed political allegory .\n3712\tIt 's a powerful though flawed movie , guaranteed to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today .\n3713\tDirector Paul Cox 's unorthodox , abstract approach to visualizing Nijinsky 's diaries is both stimulating and demanding .\n3714\tFor 95 often hilarious minutes , -LRB- Cho -RRB- riffs on the diciness of colonics , on straight versus gay personal ads , on how men would act if they had periods , and on the perils of a certain outrÃ© sexual practice .\n3715\tMost of the things that made the original Men in Black such a pleasure are still there .\n3716\tMostly honest , this somber picture reveals itself slowly , intelligently , artfully .\n3717\tBest enjoyed as a work of fiction inspired by real-life events .\n3718\tThose seeking a definitive account of Eisenstein 's life would do better elsewhere .\n3719\t-LRB- Westbrook -RRB- makes a wonderful subject for the camera .\n3720\tA film that 's flawed and brilliant in equal measure .\n3721\tEven if Invincible is not quite the career peak that The Pianist is for Roman Polanski , it demonstrates that Werner Herzog can still leave us with a sense of wonder at the diverse , marvelously twisted shapes history has taken .\n3722\tUltimately too repellent to fully endear itself to American art house audiences , but it is notable for its stylistic austerity and forcefulness .\n3723\tHardly a film that comes along every day .\n3724\tA wild ride with eight boarders from Venice Beach that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival .\n3725\tThe film 's only missteps come from the script 's insistence on providing deep emotional motivation for each and every one of Abagnale 's antics .\n3726\tA sweet , tender sermon about a 12-year-old Welsh boy more curious about God than girls , who learns that believing in something does matter .\n3727\tthe film belongs to the marvelous Verdu , a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public\n3728\tMore intimate than spectacular , E.T. is carried less by wow factors than by its funny , moving yarn that holds up well after two decades .\n3729\tFor once , a movie does not proclaim the truth about two love-struck somebodies , but permits them time and space to convince us of that all on their own .\n3730\tIf you 're burnt out on It 's a Wonderful Life marathons and bored with A Christmas Carol , it might just be the movie you 're looking for .\n3731\tIt depends on how well flatulence gags fit into your holiday concept .\n3732\tMoonlight Mile does n't quite go the distance but the cast is impressive and they all give life to these broken characters who are trying to make their way through this tragedy .\n3733\tIt is an indelible epic American story about two families , one black and one white , facing change in both their inner and outer lives .\n3734\tNot as well-written as Sexy Beast , not as gloriously flippant as Lock , Stock and Two Smoking Barrels , but stylish and moody and exceptionally well-acted .\n3735\tQuite simply , a joy to watch and -- especially -- to listen to .\n3736\tA flawed film but an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly succeeds .\n3737\tThe filmmakers wisely decided to let Crocodile Hunter Steve Irwin do what he does best , and fashion a story around him .\n3738\tA winning and wildly fascinating work .\n3739\tWe do get the distinct impression that this franchise is drawing to a close .\n3740\tWorth catching for Griffiths ' warm and winning central performance .\n3741\tThe tone errs on the shrill side , tempered by a soft southern gentility that speaks of beauty , grace and a closet full of skeletons .\n3742\tAn interesting psychological game of cat-and-mouse , three-dimensional characters and believable performances all add up to a satisfying crime drama .\n3743\tA meatier deeper beginning and\\/or ending would have easily tipped this film into the `` A '' range , as is , it 's a very very strong `` B + . ''\n3744\tI love the robust middle of this picture .\n3745\tThe power of Shanghai Ghetto , a documentary by Dana Janklowicz-Mann and Amir Mann , rests in the voices of men and women , now in their 70s , who lived there in the 1940s .\n3746\tMaintains your interest until the end and even leaves you with a few lingering animated thoughts .\n3747\tThere is a beautiful , aching sadness to it all .\n3748\tPaul Cox needed to show it .\n3749\tIt is up to you to decide if you need to see it .\n3750\tIf Divine Secrets of the Ya-Ya Sisterhood suffers from a ploddingly melodramatic structure , it comes to life in the performances .\n3751\tIf you ignore the cliches and concentrate on City by the Sea 's interpersonal drama , it ai n't half-bad .\n3752\tThere are n't too many films that can be as simultaneously funny , offbeat and heartwarming -LRB- without a thick shmear of the goo , at least -RRB- , but `` Elling '' manages to do all three quite well , making it one of the year 's most enjoyable releases .\n3753\tReign of Fire is hardly the most original fantasy film ever made -- beyond Road Warrior , it owes enormous debts to Aliens and every previous dragon drama -- but that barely makes it any less entertaining .\n3754\tAn earnest , roughshod document , it serves as a workable primer for the region 's recent history , and would make a terrific 10th-grade learning tool .\n3755\tSamuel Beckett applied to the Iranian voting process .\n3756\tThe Bard as black comedy -- Willie would have loved it .\n3757\tAnother trumpet blast that there may be a New Mexican Cinema a-bornin ' . '\n3758\t... the film 's considered approach to its subject matter is too calm and thoughtful for agitprop , and the thinness of its characterizations makes it a failure as straight drama . '\n3759\tTadpole may be one of the most appealing movies ever made about an otherwise appalling , and downright creepy , subject -- a teenage boy in love with his stepmother .\n3760\tThis is a story that zings all the way through with originality , humour and pathos .\n3761\tAs underwater ghost stories go , Below casts its spooky net out into the Atlantic Ocean and spits it back , grizzled and charred , somewhere northwest of the Bermuda Triangle .\n3762\tIt is a challenging film , if not always a narratively cohesive one .\n3763\tTrapped wo n't score points for political correctness , but it may cause parents a few sleepless hours -- a sign of its effectiveness .\n3764\tA rock-solid gangster movie with a fair amount of suspense , intriguing characters and bizarre bank robberies , plus a heavy dose of father-and-son dynamics .\n3765\tIt 's incredible the number of stories the Holocaust has generated .\n3766\tJust when you think that every possible angle has been exhausted by documentarians , another new film emerges with yet another remarkable yet shockingly little-known perspective .\n3767\tAs they used to say in the 1950s sci-fi movies , Signs is a tribute to Shyamalan 's gifts , which are such that we 'll keep watching the skies for his next project .\n3768\tThere 's no conversion effort , much of the writing is genuinely witty and both stars are appealing enough to probably have a good shot at a Hollywood career , if they want one .\n3769\tLike a skillful fisher , the director uses the last act to reel in the audience since its poignancy hooks us completely .\n3770\tA film with contemporary political resonance illustrated by a winning family story .\n3771\tKids five and up will be delighted with the fast , funny , and even touching story .\n3772\tParents may even find that it goes by quickly , because it has some of the funniest jokes of any movie this year , including those intended for adults .\n3773\tAn unsettling , memorable cinematic experience that does its predecessors proud .\n3774\tMaid in Manhattan might not look so appealing on third or fourth viewing down the road ... But as a high concept vehicle for two bright stars of the moment who can rise to fans ' lofty expectations , the movie passes inspection .\n3775\tMuch of All About Lily Chou-Chou is mesmerizing : some of its plaintiveness could make you weep .\n3776\tFerrara 's strongest and most touching movie of recent years .\n3777\tSpielberg 's first real masterpiece , it deserved all the hearts it won -- and wins still , 20 years later .\n3778\tThe screenwriters dig themselves in deeper every time they toss logic and science into what is essentially a `` Dungeons and Dragons '' fantasy with modern military weaponry ...\n3779\tMore than simply a portrait of early extreme sports , this peek into the 1970s skateboard revolution is a skateboard film as social anthropology ...\n3780\tWhat I saw , I enjoyed .\n3781\tThe level of acting elevates the material above pat inspirational status and gives it a sturdiness and solidity that we 've long associated with Washington the actor .\n3782\tA deft , delightful mix of sulky teen drama and overcoming-obstacles sports-movie triumph .\n3783\tDaringly perceptive , taut , piercing and feisty , Biggie and Tupac is undeniably subversive and involving in its bold presentation .\n3784\tDelivers more than its fair share of saucy hilarity .\n3785\tA fairly enjoyable mixture of Longest Yard ... and the 1999 Guy Ritchie caper Lock Stock and Two Smoking Barrels .\n3786\tHappily , some things are immune to the folly of changing taste and attitude .\n3787\tFor proof of that on the cinematic front , look no further than this 20th anniversary edition of the film that Spielberg calls , retrospectively , his most personal work yet .\n3788\tHugely entertaining from start to finish , featuring a fall from grace that still leaves shockwaves , it will gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels .\n3789\tIt 's not like having a real film of Nijinsky , but at least it 's better than that eponymous 1980 biopic that used soap in the places where the mysteries lingered .\n3790\tIt 's probably worth catching solely on its visual merits .\n3791\tIf only it had the story to match .\n3792\tLike other great documentaries ... this goes after one truth -LRB- the Ford administration 's complicity in tearing ` orphans ' from their mothers -RRB- and stumbles upon others even more compelling .\n3793\t... only Bond can save us from the latest eccentric , super-wealthy megalomaniac bent on world domination and destruction .\n3794\tThe first half bursts with a goofy energy previous Disney films only used for a few minutes here and there .\n3795\tIt 's quite diverting nonsense .\n3796\tAn old-fashioned scary movie , one that relies on lingering terror punctuated by sudden shocks and not constant bloodshed punctuated by flying guts .\n3797\tFor all the wit and hoopla , Festival In Cannes offers rare insight into the structure of relationships .\n3798\tWhat makes How I Killed My Father compelling , besides its terrific performances , is Fontaine 's willingness to wander into the dark areas of parent-child relationships without flinching .\n3799\tRenner ?\n3800\ts face is chillingly unemotive , yet he communicates a great deal in his performance .\n3801\tSee it for his performance if nothing else .\n3802\t... the kind of entertainment that parents love to have their kids see .\n3803\tIt 's a fine , focused piece of work that reopens an interesting controversy and never succumbs to sensationalism .\n3804\tIts engaging simplicity is driven by appealing leads .\n3805\tSwimming is above all about a young woman 's face , and by casting an actress whose face projects that woman 's doubts and yearnings , it succeeds .\n3806\tA respectable venture on its own terms , lacking the broader vision that has seen certain Trek films ... cross over to a more mainstream audience .\n3807\tIt 's weird , wonderful , and not necessarily for kids .\n3808\tAn elegant film with often surprising twists and an intermingling of naivetÃ© and sophistication .\n3809\tBlessed with two fine , nuanced lead performances .\n3810\tWhile this has the making of melodrama , the filmmaker cuts against this natural grain , producing a work that 's more interested in asking questions than in answering them .\n3811\tAs a girl-meets-girl romantic comedy , Kissing Jessica Steinis quirky , charming and often hilarious .\n3812\tYet it 's not quite the genre-busting film it 's been hyped to be because it plays everything too safe .\n3813\tYou do n't need to know your Ice-T 's from your Cool-J 's to realize that as far as these shootings are concerned , something is rotten in the state of California .\n3814\tTurturro is fabulously funny and over the top as a ` very sneaky ' butler who excels in the art of impossible disappearing\\/reappearing acts\n3815\tMeant for Star Wars fans .\n3816\tIt is there to give them a good time .\n3817\tFrom a deceptively simple premise , this deeply moving French drama develops a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times .\n3818\tSimply and eloquently articulates the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy .\n3819\tProvides a very moving and revelatory footnote to the Holocaust .\n3820\tTerrific performances , great to look at , and funny .\n3821\tA little uneven to be the cat 's meow , but it 's good enough to be the purr .\n3822\tIt 's a compelling and horrifying story , and The Laramie Project is worthwhile for reminding us that this sort of thing does , in fact , still happen in America .\n3823\tI like it .\n3824\tThere is a freedom to watching stunts that are this crude , this fast-paced and this insane .\n3825\tThat rare documentary that incorporates so much of human experience -- drama , conflict , tears and surprise -- that it transcends the normal divisions between fiction and nonfiction film .\n3826\tThat rare movie that works on any number of levels -- as a film of magic and whimsy for children , a heartfelt romance for teenagers and a compelling argument about death , both pro and con , for adults .\n3827\tIt 's both degrading and strangely liberating to see people working so hard at leading lives of sexy intrigue , only to be revealed by the dispassionate Gantz brothers as ordinary , pasty lumpen .\n3828\tA sharp and quick documentary that is funny and pithy , while illuminating an era of theatrical comedy that , while past , really is n't .\n3829\tThe film does a solid job of slowly , steadily building up to the climactic burst of violence .\n3830\tFred Schepisi 's tale of four Englishmen facing the prospect of their own mortality views youthful affluence not as a lost ideal but a starting point .\n3831\tThe directive to protect the code at all costs also begins to blur as the importance of the man and the code merge\n3832\tOverall , Cletis Tout is a winning comedy that excites the imagination and tickles the funny bone .\n3833\tEasily one of the best and most exciting movies of the year .\n3834\tThe script manages the rare trick of seeming at once both refreshingly different and reassuringly familiar .\n3835\tAn engaging , formulaic sports drama that carries a charge of genuine excitement .\n3836\tInsomnia is one of the year 's best films and Pacino gives one of his most daring , and complicated , performances .\n3837\tLike Vardalos and Corbett , who play their roles with vibrant charm , the film , directed by Joel Zwick , is heartfelt and hilarious in ways you ca n't fake .\n3838\tI do n't know if Frailty will turn Bill Paxton into an A-list director , but he can rest contentedly with the knowledge that he 's made at least one damn fine horror movie .\n3839\tDespite its flaws ... Belinsky is still able to create an engaging story that keeps you guessing at almost every turn .\n3840\tEach punch seen through prison bars , the fights become not so much a struggle of man vs. man as Brother-Man vs. The Man .\n3841\tThe evocative imagery and gentle , lapping rhythms of this film are infectious -- it gets under our skin and draws us in long before the plot kicks into gear .\n3842\tLike the best of Godard 's movies ... it is visually ravishing , penetrating , impenetrable .\n3843\tHorns and Halos benefits from serendipity but also reminds us of our own responsibility to question what is told as the truth .\n3844\t-LRB- Has -RRB- an immediacy and an intimacy that sucks you in and dares you not to believe it 's all true .\n3845\tIt treats Ana 's journey with honesty that is tragically rare in the depiction of young women in film .\n3846\tCaptivates as it shows excess in business and pleasure , allowing us to find the small , human moments , and leaving off with a grand whimper .\n3847\tA refreshingly realistic , affectation-free coming-of-age tale .\n3848\tHow good this film might be , depends if you believe that the shocking conclusion is too much of a plunge or not .\n3849\tGreat fun both for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex .\n3850\tFeatures one of the most affecting depictions of a love affair ever committed to film .\n3851\tTo honestly address the flaws inherent in how medical aid is made available to American workers , a more balanced or fair portrayal of both sides will be needed .\n3852\tOne of the best movies of the year .\n3853\tThe usual movie rah-rah , pleasantly and predictably delivered in low-key style by director Michael Apted and writer Tom Stoppard .\n3854\tA superlative B movie -- funny , sexy , and rousing .\n3855\tThose prone to indignation need not apply ; those susceptible to blue hilarity , step right up .\n3856\tLike Mike is n't going to make box office money that makes Michael Jordan jealous , but it has some cute moments , funny scenes , and hits the target audience -LRB- young Bow Wow fans -RRB- - with nothing but net .\n3857\t-LRB- Dong -RRB- makes a valiant effort to understand everyone 's point of view , and he does such a good job of it that Family Fundamentals gets you riled up .\n3858\tThe trick when watching Godard is to catch the pitch of his poetics , savor the pleasure of his sounds and images , and ponder the historical , philosophical , and ethical issues that intersect with them .\n3859\tAt its best , which occurs often , Michael Moore 's Bowling for Columbine rekindles the muckraking , soul-searching spirit of the ` Are we a sick society ? '\n3860\tjournalism of the 1960s .\n3861\tA modestly surprising movie .\n3862\tA headline-fresh thriller set among orthodox Jews on the West Bank , Joseph Cedar 's Time Of Favor manages not only to find a compelling dramatic means of addressing a complex situation , it does so without compromising that complexity .\n3863\tThere 's a spontaneity to The Chateau , a sense of light-heartedness , that makes it attractive throughout .\n3864\tThe first Tunisian film I have ever seen , and it 's also probably the most good-hearted yet sensual entertainment I 'm likely to see all year .\n3865\tLike any good romance , Son of the Bride , proves it 's never too late to learn .\n3866\t-LRB- Kline 's -RRB- utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code , and as a flawed human being who ca n't quite live up to it .\n3867\tThe film , while not exactly assured in its execution , is notable for its sheer audacity and openness .\n3868\tA thoroughly enjoyable , heartfelt coming-of-age comedy .\n3869\tFeeling like a dope has rarely been more fun than it is in Nine Queens .\n3870\tLeigh makes these lives count .\n3871\tAnd he allows a gawky actor like Spall -- who could too easily become comic relief in any other film -- to reveal his impressively delicate range .\n3872\tA lot of fun , with an undeniable energy sparked by two actresses in their 50s working at the peak of their powers .\n3873\tPromises is one film that 's truly deserving of its Oscar nomination .\n3874\tWhat bubbles up out of John C. Walsh 's Pipe Dream is the distinct and very welcome sense of watching intelligent people making a movie they might actually want to watch .\n3875\tIf Reno is to the left of liberal on the political spectrum , her tough , funny , rather chaotic show is n't subversive so much as it is nit-picky about the hypocrisies of our time .\n3876\tBeautiful , angry and sad , with a curious sick poetry , as if the Marquis de Sade had gone in for pastel landscapes .\n3877\tMs. Hutchins is talented enough and charismatic enough to make us care about Zelda 's ultimate fate .\n3878\tMonte Cristo smartly emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds .\n3879\tA mesmerizing cinematic poem from the first frame to the last .\n3880\t-LRB- It 's -RRB- a clever thriller with enough unexpected twists to keep our interest .\n3881\tAn undeniably moving film to experience , and ultimately that 's what makes it worth a recommendation .\n3882\tNicole Kidman evolved from star to superstar some time over the past year , which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while .\n3883\tVividly conveys the shadow side of the 30-year friendship between two English women .\n3884\tThe story has some nice twists but the ending and some of the back-story is a little tired .\n3885\tThe performances are all solid ; it merely lacks originality to make it a great movie .\n3886\tManages to please its intended audience -- children -- without placing their parents in a coma-like state .\n3887\tWhen you think you 've figured out Bielinsky 's great game , that 's when you 're in the most trouble : He 's the con , and you 're just the mark .\n3888\tA strong first act and absolutely , inescapably gorgeous , skyscraper-trapeze motion of the amazing Spider-Man .\n3889\tDriven by a fantastic dual performance from Ian Holm ... the film is funny , insightfully human and a delightful lark for history buffs .\n3890\tA well-put-together piece of urban satire .\n3891\tIt 's the sweet Cinderella story that `` Pretty Woman '' wanted to be .\n3892\tIt will make you think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster .\n3893\tWhat does n't this film have that an impressionable kid could n't stand to hear ?\n3894\tWhat saves it ... and makes it one of the better video-game-based flicks , is that the film acknowledges upfront that the plot makes no sense , such that the lack of linearity is the point of emotional and moral departure for protagonist Alice .\n3895\tA deeply felt and vividly detailed story about newcomers in a strange new world .\n3896\tIt 's a visual delight and a decent popcorn adventure , as long as you do n't try to look too deep into the story\n3897\tIt 's a feel-good movie about which you can actually feel good .\n3898\tA full experience , a love story and a murder mystery that expands into a meditation on the deep deceptions of innocence .\n3899\tThe Powerpuff Girls arrive on the big screen with their super-powers , their super-simple animation and their super-dooper-adorability intact .\n3900\t-LRB- Raimi 's -RRB- matured quite a bit with Spider-Man , even though it 's one of the most plain white toast comic book films you 'll ever see .\n3901\tA new film from Bill Plympton , the animation master , is always welcome .\n3902\tA devastating indictment of unbridled greed and materalism .\n3903\tWhat makes the film special is the refreshingly unhibited enthusiasm that the people , in spite of clearly evident poverty and hardship , bring to their music .\n3904\tThe film has a kind of hard , cold effect .\n3905\tThe gags are often a stitch .\n3906\tThe asylum material is gripping , as are the scenes of Jia with his family .\n3907\tA bonanza of wacky sight gags , outlandish color schemes , and corny visual puns that can be appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist 's career .\n3908\tOne ca n't deny its seriousness and quality .\n3909\tGood performances and a realistic , non-exploitive approach make Paid in Full worth seeing .\n3910\tThis engrossing , characteristically complex Tom Clancy thriller is shifty in the manner in which it addresses current terrorism anxieties and sidesteps them at the same time .\n3911\tRyan Gosling is , in a word , brilliant as the conflicted Daniel .\n3912\t... somehow manages to escape the shackles of its own clichÃ©s to be the best espionage picture to come out in weeks .\n3913\tMuch of The Lady and the Duke is about quiet , decisive moments between members of the cultural elite as they determine how to proceed as the world implodes .\n3914\tTakes a simple premise and carries it to unexpected heights .\n3915\tWith few respites , Marshall keeps the energy humming , and his edits , unlike those in Moulin Rouge , are crisp and purposeful without overdoing it .\n3916\tIts metaphors are opaque enough to avoid didacticism , and the film succeeds as an emotionally accessible , almost mystical work .\n3917\tProvides a satisfactory overview of the bizarre world of extreme athletes as several daredevils express their own views .\n3918\tInventive , fun , intoxicatingly sexy , violent , self-indulgent and maddening .\n3919\tComedian , like its subjects , delivers the goods and audiences will have a fun , no-frills ride .\n3920\tA naturally funny film , Home Movie makes you crave Chris Smith 's next movie .\n3921\tPipe Dream does have its charms .\n3922\tThe leads are natural and lovely , the pace is serene , the humor wry and sprightly .\n3923\tThose who want to be jolted out of their gourd should drop everything and run to Ichi .\n3924\t... enthusiastically invokes the percussion rhythm , the brass soul and the sense of fierce competition that helps make great marching bands half the fun of college football games .\n3925\tSheds light on a subject few are familiar with , and makes you care about music you may not have heard before .\n3926\tDespite the film 's bizarre developments , Hoffman keeps us riveted with every painful nuance , unexpected flashes of dark comedy and the character 's gripping humanity .\n3927\tTo get at the root psychology of this film would require many sessions on the couch of Dr. Freud .\n3928\tGreat over-the-top moviemaking if you 're in a slap-happy mood .\n3929\tViveka Seldahl and Sven Wollter will touch you to the core in a film you will never forget -- that you should never forget .\n3930\tThe magic -LRB- and original running time -RRB- of ace Japanimator Hayao Miyazaki 's Spirited Away survives intact in BV 's re-voiced version .\n3931\tFrom the dull , surreal ache of mortal awareness emerges a radiant character portrait .\n3932\tCaptures the raw comic energy of one of our most flamboyant female comics .\n3933\tIt 's not particularly subtle ... However , it still manages to build to a terrifying , if obvious , conclusion .\n3934\tThe auteur 's ear for the way fears and slights are telegraphed in the most blithe exchanges gives the film its lingering tug .\n3935\tBolstered by exceptional performances and a clear-eyed take on the economics of dealing and the pathology of ghetto fabulousness .\n3936\tThis enthralling documentary ... is at once playful and haunting , an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends .\n3937\tSome remarkable achival film about how Shanghai -LRB- of all places -RRB- served Jews who escaped the Holocaust .\n3938\tIn a movie full of surprises , the biggest is that Secret Ballot is a comedy , both gentle and biting .\n3939\tThe urban landscapes are detailed down to the signs on the kiosks , and the color palette , with lots of somber blues and pinks , is dreamy and evocative .\n3940\tA manically generous Christmas vaudeville .\n3941\tTony Gayton 's script does n't give us anything we have n't seen before , but director D.J. Caruso 's grimy visual veneer and Kilmer 's absorbing performance increase the gravitational pull considerably .\n3942\tA psychic journey deep into the very fabric of Iranian ... life .\n3943\tIt 's a smartly directed , grown-up film of ideas .\n3944\tWhile puerile men dominate the story , the women shine .\n3945\tUnlike lots of Hollywood fluff , this has layered , well-developed characters and some surprises .\n3946\tFor a film that 's being advertised as a comedy , Sweet Home Alabama is n't as funny as you 'd hoped .\n3947\tFor a film that 's being advertised as a comedy , Sweet Home Alabama is n't as funny as you 'd hoped .\n3948\tVera has created a provocative , absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores .\n3949\tA French film with a more down-home flavor .\n3950\tDepending upon your reaction to this movie , you may never again be able to look at a red felt Sharpie pen without disgust , a thrill , or the giggles .\n3951\tWhile Bollywood\\/Hollywood will undoubtedly provide its keenest pleasures to those familiar with Bombay musicals , it also has plenty for those -LRB- like me -RRB- who are n't .\n3952\tThere are times when you wish that the movie had worked a little harder to conceal its contrivances , but Brown Sugar turns out to be a sweet and enjoyable fantasy .\n3953\tFontaine masterfully creates a portrait of two strong men in conflict , inextricably entwined through family history , each seeing himself in the other , neither liking what he sees .\n3954\tAs Janice , Eileen Walsh , an engaging , wide-eyed actress whose teeth are a little too big for her mouth , infuses the movie with much of its slender , glinting charm .\n3955\tSure , it 's contrived and predictable , but its performances are so well tuned that the film comes off winningly , even though it 's never as solid as you want it to be .\n3956\tDong shows how intolerance has the power to deform families , then tear them apart .\n3957\tThe Chateau belongs to Rudd , whose portrait of a therapy-dependent flakeball spouting French malapropisms ... is a nonstop hoot .\n3958\tThe cast , collectively a successful example of the lovable-loser protagonist , shows deft comic timing .\n3959\tIt trusts the story it sets out to tell .\n3960\tI could n't recommend this film more .\n3961\tAs a good old-fashioned adventure for kids , Spirit : Stallion of the Cimarron is a winner .\n3962\tAn effective portrait of a life in stasis -- of the power of inertia to arrest development in a dead-end existence .\n3963\tSucceeds as a well-made evocation of a subculture .\n3964\t... an interesting slice of history .\n3965\tMe no lika da accents so good , but I thoroughly enjoyed the love story .\n3966\tScott Baio is turning in some delightful work on indie projects .\n3967\tIt 's an experience in understanding a unique culture that is presented with universal appeal .\n3968\tWhat 's surprising is how well it holds up in an era in which computer-generated images are the norm .\n3969\tBrings together some of the biggest names in Japanese anime , with impressive results .\n3970\tWonder , hope and magic can never escape the heart of the boy when the right movie comes along , especially if it begins with the name of Star Wars\n3971\tA flick about our infantilized culture that is n't entirely infantile .\n3972\tAn exceptionally acted , quietly affecting cop drama .\n3973\tSensual , funny and , in the end , very touching .\n3974\tAngel presents events partly from the perspective of Aurelie and Christelle , and infuses the film with the sensibility of a particularly nightmarish fairytale .\n3975\tWho needs mind-bending drugs when they can see this , the final part of the ` qatsi ' trilogy , directed by Godfrey Reggio , with music by Philip Glass ?\n3976\t-LRB- A -RRB- smarter and much funnier version of the old Police Academy flicks .\n3977\tProof once again that if the filmmakers just follow the books , they ca n't go wrong .\n3978\tBetter effects , better acting and a hilarious Kenneth Branagh .\n3979\tAn excellent sequel .\n3980\tBoth a grand tour through 300 hundred years of Russian cultural identity and a stunning technical achievement .\n3981\tJust how these families interact may surprise you .\n3982\tProves that some movie formulas do n't need messing with -- like the big-bug movie .\n3983\tA surprisingly funny movie .\n3984\tThis new movie version of the Alexandre Dumas classic is the stuff of high romance , brought off with considerable wit .\n3985\tLike all of Egoyan 's work , Ararat is fiercely intelligent and uncommonly ambitious .\n3986\tIf a big musical number like ` Praise the Lord , He 's the God of Second Chances ' does n't put you off , this will be an enjoyable choice for younger kids .\n3987\t... fuses the events of her life with the imagery in her paintings so vividly that the artist 's work may take on a striking new significance for anyone who sees the film .\n3988\t-LRB- Clooney 's -RRB- debut can be accused of being a bit undisciplined , but it has a tremendous , offbeat sense of style and humor that suggests he was influenced by some of the filmmakers who have directed him , especially the Coen brothers and Steven Soderbergh .\n3989\tAlthough made on a shoestring and unevenly acted , conjures a Lynch-like vision of the rotting underbelly of Middle America .\n3990\tA piquant meditation on the things that prevent people from reaching happiness .\n3991\tA timely look back at civil disobedience , anti-war movements and the power of strong voices .\n3992\tRifkin 's references are ... impeccable throughout .\n3993\tI 'd be lying if I said my ribcage did n't ache by the end of Kung Pow .\n3994\tMore than their unique residences , Home Movie is about the people who live in them , who have carved their own comfortable niche in the world and have been kind enough to share it .\n3995\tThe movie is ingenious fun .\n3996\tSee it .\n3997\tThe combination of lightness and strictness in this instance gives Italian for Beginners an amiable aimlessness that keeps it from seeming predictably formulaic .\n3998\tThe script is smart and dark - hallelujah for small favors .\n3999\tAn intelligent , multi-layered and profoundly humanist -LRB- not to mention gently political -RRB- meditation on the values of knowledge , education , and the affects of cultural and geographical displacement .\n4000\tMr. Polanski is in his element here : alone , abandoned , but still consoled by his art , which is more than he has ever revealed before about the source of his spiritual survival .\n4001\tSpectacular in every sense of the word , even if you don ' t know an Orc from a Uruk-Hai .\n4002\tThis is n't exactly profound cinema , but it 's good-natured and sometimes quite funny .\n4003\tThis is a finely written , superbly acted offbeat thriller .\n4004\tTres Greek writer and star Nia Vardalos has crafted here a worldly-wise and very funny script .\n4005\tA tasty appetizer that leaves you wanting more .\n4006\tIt gives devastating testimony to both people 's capacity for evil and their heroic capacity for good .\n4007\tThe film reminds me of a vastly improved Germanic version of My Big Fat Greek Wedding -- with better characters , some genuine quirkiness and at least a measure of style .\n4008\tThe difference is that I truly enjoyed most of Mostly Martha while I ne\n4009\tMorton deserves an Oscar nomination .\n4010\tA colorful , vibrant introduction to a universal human impulse , lushly photographed and beautifully recorded .\n4011\tThe screenplay never lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him ... There is never really a true `` us '' versus `` them '' .\n4012\tThe history is fascinating ; the action is dazzling .\n4013\tThey just do n't work in concert .\n4014\tFor those in search of something different , Wendigo is a genuinely bone-chilling tale .\n4015\tA lovely film for the holiday season .\n4016\tIt remains to be seen whether Statham can move beyond the crime-land action genre , but then again , who says he has to ?\n4017\tA hypnotic cyber hymn and a cruel story of youth culture .\n4018\tIt 's a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor .\n4019\tAt once subtle and visceral , the film never succumbs to the trap of the maudlin or tearful , offering instead with its unflinching gaze a measure of faith in the future .\n4020\tThe performances of the children , untrained in acting , have an honesty and dignity that breaks your heart .\n4021\tDespite its lavish formalism and intellectual austerity , the film manages to keep you at the edge of your seat with its shape-shifting perils , political intrigue and brushes with calamity .\n4022\tThis rush to profits has created a predictably efficient piece of business notable largely for its overwhelming creepiness , for an eagerness to create images you wish you had n't seen , which , in this day and age , is of course the point .\n4023\tAdams , with four scriptwriters , takes care with the characters , who are so believable that you feel what they feel .\n4024\tA completely spooky piece of business that gets under your skin and , some plot blips aside , stays there for the duration .\n4025\tSuperbly photographed and staged by Mendes with a series of riveting set pieces the likes of which mainstream audiences have rarely seen .\n4026\tThe ensemble cast turns in a collectively stellar performance , and the writing is tight and truthful , full of funny situations and honest observations .\n4027\tNot quite as miraculous as its DreamWorks makers would have you believe , but it more than adequately fills the eyes and stirs the emotions .\n4028\tA properly spooky film about the power of spirits to influence us whether we believe in them or not .\n4029\tThe lightest , most breezy movie Steven Spielberg has made in more than a decade .\n4030\tAnd the positive change in tone here seems to have recharged him .\n4031\tLike Edward Norton in American History X , Ryan Gosling -LRB- Murder By Numbers -RRB- delivers a magnetic performance .\n4032\tThis is a very funny , heartwarming film .\n4033\tIt has fun with the quirks of family life , but it also treats the subject with fondness and respect .\n4034\tRarely , indeed almost never , is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite , unfakable sense of cinema .\n4035\tThe leanest and meanest of Solondz 's misanthropic comedies .\n4036\tA dark , quirky road movie that constantly defies expectation .\n4037\tThere are some movies that hit you from the first scene and you know it 's going to be a trip .\n4038\tIgby Goes Down is one of those movies .\n4039\tOften messy and frustrating , but very pleasing at its best moments , it 's very much like life itself .\n4040\tA burst of color , music , and dance that only the most practiced curmudgeon could fail to crack a smile at .\n4041\tAn energetic , violent movie with a momentum that never lets up .\n4042\tLasker 's canny , meditative script distances sex and love , as Byron and Luther ... realize they ca n't get no satisfaction without the latter .\n4043\tIt turns out to be smarter and more diabolical than you could have guessed at the beginning .\n4044\tCage makes an unusual but pleasantly haunting debut behind the camera .\n4045\tNoyce has worked wonders with the material .\n4046\tIt 's mostly a pleasure to watch .\n4047\tAnd the reason for that is a self-aware , often self-mocking , intelligence .\n4048\tThe Chateau is a risky venture that never quite goes where you expect and often surprises you with unexpected comedy .\n4049\tA very well-meaning movie , and it will stand in future years as an eloquent memorial to the World Trade Center tragedy .\n4050\tThere are n't many conclusive answers in the film , but there is an interesting story of pointed personalities , courage , tragedy and the little guys vs. the big guys .\n4051\tVividly demonstrates that the director of such Hollywood blockbusters as Patriot Games can still turn out a small , personal film with an emotional wallop .\n4052\tA four star performance from Kevin Kline who unfortunately works with a two star script .\n4053\tDogtown & Z-Boys evokes the blithe rebel fantasy with the kind of insouciance embedded in the sexy demise of James Dean .\n4054\tIf you do n't flee , you might be seduced .\n4055\tIf you do n't laugh , flee .\n4056\tPayne constructs a hilarious ode to middle America and middle age with this unlikely odyssey , featuring a pathetic , endearing hero who is all too human .\n4057\tKoury frighteningly and honestly exposes one teenager 's uncomfortable class resentment and , in turn , his self-inflicted retaliation .\n4058\tThe Santa Clause 2 proves itself a more streamlined and thought out encounter than the original could ever have hoped to be .\n4059\tNow as a former Gong Show addict , I 'll admit it , my only complaint is that we did n't get more re-creations of all those famous moments from the show .\n4060\tSucceeds where its recent predecessor miserably fails because it demands that you suffer the dreadfulness of war from both sides .\n4061\tThe first Bond movie in ages that is n't fake fun .\n4062\tThis odd , poetic road movie , spiked by jolts of pop music , pretty much takes place in Morton 's ever-watchful gaze -- and it 's a tribute to the actress , and to her inventive director , that the journey is such a mesmerizing one .\n4063\tA film centering on a traditional Indian wedding in contemporary New Delhi may not sound like specialized fare , but Mira Nair 's film is an absolute delight for all audiences .\n4064\tA weird and wonderful comedy .\n4065\tThe movie should jolt you out of your seat a couple of times , give you a few laughs , and leave you feeling like it was worth your seven bucks , even though it does turn out to be a bit of a cheat in the end .\n4066\tHas the capability of effecting change and inspiring hope .\n4067\tA first-class , thoroughly involving B movie that effectively combines two surefire , beloved genres -- the prison flick and the fight film .\n4068\tLaBute 's careful handling makes the material seem genuine rather than pandering .\n4069\tIn between all the emotional seesawing , it 's hard to figure the depth of these two literary figures , and even the times in which they lived .\n4070\tBut they fascinate in their recklessness .\n4071\tDeath to Smoochy is often very funny , but what 's even more remarkable is the integrity of DeVito 's misanthropic vision .\n4072\tA beautiful , entertaining two hours .\n4073\tYou get the idea , though , that Kapur intended the film to be more than that .\n4074\tA wonderful , ghastly film .\n4075\tAmid the new populist comedies that underscore the importance of family tradition and familial community , one would be hard-pressed to find a movie with a bigger , fatter heart than Barbershop .\n4076\tParris ' performance is credible and remarkably mature .\n4077\t` Enigma ' is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of ` We Were Soldiers . '\n4078\tMunch 's screenplay is tenderly observant of his characters .\n4079\tHe watches them as they float within the seas of their personalities .\n4080\tHis scenes are short and often unexpected .\n4081\tIt grabs you in the dark and shakes you vigorously for its duration .\n4082\tLeigh 's daring here is that without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher 's ruinous legacy , he insists on the importance of those moments when people can connect and express their love for each other .\n4083\tHashiguchi vividly captures the way young Japanese live now , chafing against their culture 's manic mix of millennial brusqueness and undying , traditional politesse .\n4084\tUneven but a lot of fun .\n4085\tI know that I 'll never listen to Marvin Gaye or the Supremes the same way again\n4086\tThe two leads , nearly perfect in their roles , bring a heart and reality that buoy the film , and at times , elevate it to a superior crime movie .\n4087\tNot as good as The Full Monty , but a really strong second effort .\n4088\tWhenever it threatens to get bogged down in earnest dramaturgy , a stirring visual sequence like a surge through swirling rapids or a leap from pinnacle to pinnacle rouses us .\n4089\tIf horses could fly , this is surely what they 'd look like .\n4090\tUnfolds as one of the most politically audacious films of recent decades from any country , but especially from France .\n4091\tThis real-life Hollywood fairy-tale is more engaging than the usual fantasies Hollywood produces .\n4092\tThe graphic carnage and re-creation of war-torn Croatia is uncomfortably timely , relevant , and sickeningly real .\n4093\tLeft me with the visceral sensation of longing , lasting traces of Charlotte 's web of desire and desperation .\n4094\tThe characters are more deeply thought through than in most ` right-thinking ' films .\n4095\tCrammed with incident , and bristles with passion and energy .\n4096\tIt 's fun , splashy and entertainingly nasty .\n4097\tA simple tale of an unlikely friendship , but thanks to the gorgeous locales and exceptional lead performances , it has considerable charm .\n4098\tIt might be ` easier ' to watch on video at home , but that should n't stop die-hard French film connoisseurs from going out and enjoying the big-screen experience .\n4099\tThere 's very little sense to what 's going on here , but the makers serve up the cliches with considerable dash .\n4100\tWitty , contemplative , and sublimely beautiful .\n4101\tA surprisingly ` solid ' achievement by director Malcolm D. Lee and writer John Ridley .\n4102\tWoven together handsomely , recalling sixties ' rockumentary milestones from Lonely Boy to Do n't Look Back .\n4103\tThis is pure , exciting moviemaking .\n4104\tYou wo n't exactly know what 's happening but you 'll be blissfully exhausted .\n4105\tThe 1960s rebellion was misdirected : you ca n't fight your culture .\n4106\tWorks because Reno does n't become smug or sanctimonious towards the audience .\n4107\tNettelbeck ... has a pleasing way with a metaphor .\n4108\tA pure participatory event that malnourished intellectuals will gulp down in a frenzy .\n4109\tThe cast delivers without sham the raw-nerved story .\n4110\tSteven Soderbergh 's digital video experiment is a clever and cutting , quick and dirty look at modern living and movie life .\n4111\tThe film 's highlight is definitely its screenplay , both for the rhapsodic dialogue that jumps off the page , and for the memorable character creations .\n4112\tIt lets you brush up against the humanity of a psycho , without making him any less psycho .\n4113\tSillier , cuter , and shorter than the first -LRB- as best I remember -RRB- , but still a very good time at the cinema .\n4114\tThe film is bright and flashy in all the right ways .\n4115\tElegant and eloquent -LRB- meditation -RRB- on death and that most elusive of passions , love .\n4116\tCut through the layers of soap-opera emotion and you find a scathing portrayal of a powerful entity strangling the life out of the people who want to believe in it the most .\n4117\tFilmmaker Tian Zhuangzhuang triumphantly returns to narrative filmmaking with a visually masterful work of quiet power .\n4118\tIt excels because , unlike so many other Hollywood movies of its ilk , it offers hope .\n4119\tShot in rich , shadowy black-and-white , Devils chronicles , with increasingly amused irony , the relationship between reluctant captors and befuddled captives .\n4120\tThere 's no clear picture of who killed Bob Crane .\n4121\tBut here 's a glimpse at his life .\n4122\tSpectacularly beautiful , not to mention mysterious , sensual , emotionally intense , and replete with virtuoso throat-singing .\n4123\tA summer entertainment adults can see without feeling embarrassed , but it could have been more .\n4124\tSparse but oddly compelling .\n4125\tA stirring , funny and finally transporting re-imagining of Beauty and the Beast and 1930s horror films\n4126\tThe Pinochet Case is a searing album of remembrance from those who , having survived , suffered most .\n4127\tA sweet-tempered comedy that forgoes the knee-jerk misogyny that passes for humor in so many teenage comedies .\n4128\tArgento , at only 26 , brings a youthful , out-to-change-the-world aggressiveness to the project , as if she 's cut open a vein and bled the raw film stock .\n4129\tWith so many bad romances out there , this is the kind of movie that deserves a chance to shine .\n4130\tBrash , intelligent and erotically perplexing , Haneke 's portrait of an upper class Austrian society and the suppression of its tucked away demons is uniquely felt with a sardonic jolt .\n4131\tThough Jackson does n't always succeed in integrating the characters in the foreground into the extraordinarily rich landscape , it must be said that he is an imaginative filmmaker who can see the forest for the trees .\n4132\t`` The Quiet American '' begins in Saigon in 1952 .\n4133\tThat 's its first sign of trouble .\n4134\tA dazzling thing to behold -- as long as you 're wearing the somewhat cumbersome 3D goggles the theater provides .\n4135\tBe patient with the lovely Hush !\n4136\tand your reward will be a thoughtful , emotional movie experience .\n4137\tThe large-format film is well suited to capture these musicians in full regalia and the incredible IMAX sound system lets you feel the beat down to your toes .\n4138\tGodard has never made a more sheerly beautiful film than this unexpectedly moving meditation on love , history , memory , resistance and artistic transcendence .\n4139\tThe kind of movie that comes along only occasionally , one so unconventional , gutsy and perfectly executed it takes your breath away .\n4140\tUnlike most surf movies , Blue Crush thrillingly uses modern technology to take the viewer inside the wave .\n4141\tBy the end you ca n't help but feel ` stoked . '\n4142\tThe off-center humor is a constant , and the ensemble gives it a buoyant delivery .\n4143\tA tasty slice of droll whimsy .\n4144\tMike Leigh populates his movie with a wonderful ensemble cast of characters that bring the routine day to day struggles of the working class to life\n4145\tAwesome work : ineffable , elusive , yet inexplicably powerful\n4146\tSparkling , often hilarious romantic jealousy comedy ... Attal looks so much like a young Robert DeNiro that it seems the film should instead be called ` My Husband Is Travis Bickle ' .\n4147\tEven if you 're an agnostic carnivore , you can enjoy much of Jonah simply , and gratefully , as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor .\n4148\tWhere Bowling for Columbine is at its most valuable is in its examination of America 's culture of fear as a root cause of gun violence .\n4149\tThe result is somewhat satisfying -- it still comes from Spielberg , who has never made anything that was n't at least watchable .\n4150\tBut it 's also disappointing to a certain degree .\n4151\tThe all-French cast is marveilleux .\n4152\tThere 's a lot to recommend Read My Lips .\n4153\tA minor film with major pleasures from Portuguese master Manoel de Oliviera ...\n4154\tBrosnan gives a portrayal as solid and as perfect as his outstanding performance as Bond in Die Another Day .\n4155\tAudiences are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching , but otherwise the production is suitably elegant .\n4156\tThe movie is ... very funny as you peek at it through the fingers in front of your eyes .\n4157\tNicks sustains the level of exaggerated , stylized humor throughout by taking your expectations and twisting them just a bit .\n4158\tA refreshing change from the usual whoopee-cushion effort aimed at the youth market .\n4159\tIt finds its moviegoing pleasures in the tiny events that could make a person who has lived her life half-asleep suddenly wake up and take notice .\n4160\t... an enjoyably frothy ` date movie ' ...\n4161\tThe genius of the work speaks volumes , offering up a hallucinatory dreamscape that frustrates and captivates .\n4162\tTwo Weeks Notice has appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy .\n4163\tThe movie 's seams may show ... but Pellington gives `` Mothman '' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling .\n4164\tIf Mostly Martha is mostly unsurprising , it 's still a sweet , even delectable diversion .\n4165\tA wild comedy that could only spring from the demented mind of the writer of Being John Malkovich .\n4166\tSchnitzler does a fine job contrasting the sleekness of the film 's present with the playful paranoia of the film 's past . '\n4167\tA fresh-faced , big-hearted and frequently funny thrill ride for the kiddies , with enough eye candy and cheeky wit to keep parents away from the concession stand . '\n4168\tMana gives us compelling , damaged characters who we want to help -- or hurt .\n4169\tThe sentimental script has problems , but the actors pick up the slack .\n4170\tA good documentary can make interesting a subject you thought would leave you cold .\n4171\tA case in point : Doug Pray 's Scratch .\n4172\tAbderrahmane Sissako 's Heremakono -LRB- Waiting for Happiness -RRB- is an elegiac portrait of a transit city on the West African coast struggling against foreign influences .\n4173\tIn XXX , Diesel is that rare creature -- an action hero with table manners , and one who proves that elegance is more than tattoo deep .\n4174\tAn engrossing and grim portrait of hookers : what they think of themselves and their clients .\n4175\tIt all plays out ... like a high-end John Hughes comedy , a kind of Elder Bueller 's Time Out .\n4176\tThe film is enriched by an imaginatively mixed cast of antic spirits , headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I 've ever seen in the many film and stage adaptations of the work .\n4177\tThis is one of the rarest kinds of films : a family-oriented non-Disney film that is actually funny without hitting below the belt .\n4178\tIt is refreshingly undogmatic about its characters .\n4179\tA moving and important film .\n4180\tDeep intelligence and a warm , enveloping affection breathe out of every frame .\n4181\tFamuyiwa 's feature deals with its subject matter in a tasteful , intelligent manner , rather than forcing us to endure every plot contrivance that the clichÃ©-riddled genre can offer .\n4182\tShowtime is a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation .\n4183\tSweet Home Alabama is n't going to win any Academy Awards , but this date-night diversion will definitely win some hearts .\n4184\ta cruelly funny twist on teen comedy packed with inventive cinematic tricks and an ironically killer soundtrack\n4185\tA gracious , eloquent film that by its end offers a ray of hope to the refugees able to look ahead and resist living in a past forever lost .\n4186\tEven though many of these guys are less than adorable -LRB- their lamentations are pretty much self-centered -RRB- , there 's something vital about the movie .\n4187\tA tour de force drama about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers .\n4188\tIt is a strength of a documentary to disregard available bias , especially as temptingly easy as it would have been with this premise .\n4189\tWhen twentysomething hotsies make movies about their lives , hard-driving narcissism is a given , but what a world we 'd live in if Argento 's Hollywood counterparts ... had this much imagination and nerve .\n4190\tMaryam is more timely now than ever .\n4191\tAn eloquent , reflective and beautifully acted meditation on both the profoundly devastating events of one year ago and the slow , painful healing process that has followed in their wake .\n4192\tPiccoli gives a superb performance full of deep feeling .\n4193\tWhat a concept , what an idea , what a thrill ride .\n4194\tThis is a more fascinating look at the future than `` Bladerunner '' and one of the most high-concept sci fi adventures attempted for the screen .\n4195\tThe rare movie that 's as crisp and to the point as the novel on which it 's based .\n4196\tA film of epic scale with an intimate feeling , a saga of the ups and downs of friendships .\n4197\tSayles has an eye for the ways people of different ethnicities talk to and about others outside the group .\n4198\t`` Nicholas Nickleby '' is a perfect family film to take everyone to since there 's no new `` A Christmas Carol '' out in the theaters this year .\n4199\tCharlie Hunnam has the twinkling eyes , repressed smile and determined face needed to carry out a Dickensian hero .\n4200\tNiccol the filmmaker merges his collaborators ' symbolic images with his words , insinuating , for example , that in Hollywood , only God speaks to the press\n4201\tKhouri manages , with terrific flair , to keep the extremes of screwball farce and blood-curdling family intensity on one continuum .\n4202\tImpresses as a skillfully assembled , highly polished and professional adaptation ... just about as chilling and unsettling as ` Manhunter ' was .\n4203\tIt 's a solid movie about people whose lives are anything but .\n4204\tThough a touch too Arthouse 101 in its poetic symbolism , Heaven proves to be a good match of the sensibilities of two directors .\n4205\tI simply ca n't recommend it enough .\n4206\tWiseman reveals the victims of domestic abuse in all of their pity and terror .\n4207\tMuccino , who directed from his own screenplay , is a canny crowd pleaser , and The Last Kiss ... provides more than enough sentimental catharsis for a satisfying evening at the multiplex .\n4208\tWe want the funk - and this movie 's got it .\n4209\tWow , so who knew Charles Dickens could be so light-hearted ?\n4210\tMany went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside , and I do n't think that A.C. will help this movie one bit .\n4211\tThe storylines are woven together skilfully , the magnificent swooping aerial shots are breathtaking , and the overall experience is awesome .\n4212\tA miraculous movie , I 'm Going Home is so slight , yet overflows with wisdom and emotion .\n4213\tBaran is shockingly devoid of your typical Majid Majidi shoe-loving , crippled children .\n4214\tEvery moment crackles with tension , and by the end of the flick , you 're on the edge of your seat .\n4215\tA fine , rousing , G-rated family film , aimed mainly at little kids but with plenty of entertainment value to keep grown-ups from squirming in their seats .\n4216\tThe series ' message about making the right choice in the face of tempting alternatives remains prominent , as do the girls ' amusing personalities .\n4217\tRichly entertaining and suggestive of any number of metaphorical readings .\n4218\tA compelling allegory about the last days of Germany 's democratic Weimar Republic .\n4219\tOffers a guilt-free trip into feel-good territory .\n4220\tA B-movie you can sit through , enjoy on a certain level and then forget .\n4221\tDevos delivers a perfect performance that captures the innocence and budding demons within a wallflower .\n4222\tDisappointingly , the characters are too strange and dysfunctional , Tom included , to ever get under the skin , but this is compensated in large part by the off-the-wall dialogue , visual playfulness and the outlandishness of the idea itself .\n4223\tDirector Todd Solondz has made a movie about critical reaction to his two previous movies , and about his responsibility to the characters that he creates .\n4224\tThe word that comes to mind , while watching Eric Rohmer 's tribute to a courageous Scottish lady , is painterly .\n4225\tA fascinating case study of flower-power liberation -- and the price that was paid for it .\n4226\tBluer than the Atlantic and more biologically detailed than an autopsy , the movie ... is , also , frequently hilarious .\n4227\tReally is a pan-American movie , with moments of genuine insight into the urban heart .\n4228\tAn overly familiar scenario is made fresh by an intelligent screenplay and gripping performances in this low-budget , video-shot , debut indie effort .\n4229\tPeppering this urban study with references to Norwegian folktales , Villeneuve creates in Maelstrom a world where the bizarre is credible and the real turns magical .\n4230\tOng 's promising debut is a warm and well-told tale of one recent Chinese immigrant 's experiences in New York City .\n4231\tThat the real Antwone Fisher was able to overcome his personal obstacles and become a good man is a wonderful thing ; that he has been able to share his story so compellingly with us is a minor miracle .\n4232\tThere 's not much to Fatale , outside of its stylish surprises ... but that 's OK .\n4233\tWhat redeems the film is the cast , particularly the Ya-Yas themselves .\n4234\tBeautiful , cold , oddly colorful and just plain otherworldly , a freaky bit of art that 's there to scare while we delight in the images .\n4235\tIt 's up to -LRB- Watts -RRB- to lend credibility to this strange scenario , and her presence succeeds in making us believe .\n4236\tThe film is darkly atmospheric , with Herrmann quietly suggesting the sadness and obsession beneath Hearst 's forced avuncular chortles .\n4237\tShyamalan takes a potentially trite and overused concept -LRB- aliens come to Earth -RRB- and infuses it into a rustic , realistic , and altogether creepy tale of hidden invasion .\n4238\t... the story , like Ravel 's Bolero , builds to a crescendo that encompasses many more paths than we started with .\n4239\tIt 's plotless , shapeless -- and yet , it must be admitted , not entirely humorless .\n4240\tIndeed , the more outrageous bits achieve a shock-you-into-laughter intensity of almost Dadaist proportions .\n4241\tGondry 's direction is adequate ... but what gives Human Nature its unique feel is Kaufman 's script .\n4242\tThe film 's plot may be shallow , but you 've never seen the deep like you see it in these harrowing surf shots .\n4243\tWith a large cast representing a broad cross-section , Tavernier 's film bounds along with the rat-a-tat energy of `` His Girl Friday , '' maintaining a light touch while tackling serious themes .\n4244\tThe observations of this social\\/economic\\/urban environment are canny and spiced with irony .\n4245\tRenner carries much of the film with a creepy and dead-on performance .\n4246\tJarecki and Gibney do find enough material to bring Kissinger 's record into question and explain how the diplomat 's tweaked version of statecraft may have cost thousands and possibly millions of lives .\n4247\tThe spaniel-eyed Jean Reno infuses Hubert with a mixture of deadpan cool , wry humor and just the measure of tenderness required to give this comic slugfest some heart .\n4248\tAniston has at last decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil .\n4249\tA mildly enjoyable if toothless adaptation of a much better book .\n4250\tUnexpected , and often contradictory , truths emerge .\n4251\t300 years of Russian history and culture compressed into an evanescent , seamless and sumptuous stream of consciousness .\n4252\tIntelligent , caustic take on a great writer and dubious human being .\n4253\tMay take its sweet time to get wherever it 's going , but if you have the patience for it , you wo n't feel like it 's wasted yours .\n4254\tLess the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling -LRB- though no less horrifying for it -RRB- .\n4255\tThe film is one of the year 's best .\n4256\tEerily accurate depiction of depression .\n4257\t... a delicious crime drama on par with the slickest of Mamet .\n4258\tCharming and witty , it 's also somewhat clumsy .\n4259\tDirected with purpose and finesse by England 's Roger Mitchell , who handily makes the move from pleasing , relatively lightweight commercial fare such as Notting Hill to commercial fare with real thematic heft .\n4260\tEscapes the precious trappings of most romantic comedies , infusing into the story very real , complicated emotions .\n4261\tThis big screen caper has a good bark , far from being a bow-wow .\n4262\t-LRB- Allen -RRB- manages to breathe life into this somewhat tired premise .\n4263\tI have two words to say about Reign of Fire .\n4264\tGreat dragons !\n4265\tBy surrounding us with hyper-artificiality , Haynes makes us see familiar issues , like racism and homophobia , in a fresh way .\n4266\tA deliberative account of a lifestyle characterized by its surface-obsession -- one that typifies the delirium of post , pre , and extant stardom .\n4267\tSuperb production values & Christian Bale 's charisma make up for a derivative plot .\n4268\tThe film has the courage of its convictions and excellent performances on its side .\n4269\tI know I should n't have laughed , but hey , those farts got to my inner nine-year-old .\n4270\tA movie that will thrill you , touch you and make you laugh as well .\n4271\tIt 's a smart , funny look at an arcane area of popular culture , and if it is n't entirely persuasive , it does give exposure to some talented performers .\n4272\tMore vaudeville show than well-constructed narrative , but on those terms it 's inoffensive and actually rather sweet .\n4273\tThe case is a convincing one , and should give anyone with a conscience reason to pause .\n4274\tThe actresses find their own rhythm and protect each other from the script 's bad ideas and awkwardness .\n4275\tDiverting French comedy in which a husband has to cope with the pesky moods of jealousy .\n4276\tCaptivates and shows how a skillful filmmaker can impart a message without bludgeoning the audience over the head .\n4277\tThere is a welcome lack of pretension about the film , which very simply sets out to entertain and ends up delivering in good measure .\n4278\tCoy but exhilarating , with really solid performances by Ving Rhames and Wesley Snipes .\n4279\tIt is a likable story , told with competence .\n4280\tNot only does Spider-Man deliver , but I suspect it might deliver again and again .\n4281\tTackles the difficult subject of grief and loss with such life-embracing spirit that the theme does n't drag an audience down .\n4282\tA small movie with a big impact .\n4283\tThe movie , despite its rough edges and a tendency to sag in certain places , is wry and engrossing .\n4284\tI admire the closing scenes of the film , which seem to ask whether our civilization offers a cure for Vincent 's complaint .\n4285\tLike Rudy Yellow Lodge , Eyre needs to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider .\n4286\ta delightful romantic comedy with plenty of bite .\n4287\tIt 's far from a frothy piece , and the characters are complex , laden with plenty of baggage and tinged with tragic undertones .\n4288\tUsing an endearing cast , writer\\/director Dover Kosashvili takes a slightly dark look at relationships , both sexual and kindred .\n4289\tWhen a movie has stuck around for this long , you know there 's something there .\n4290\tIt 's that good .\n4291\tSmart , sassy interpretation of the Oscar Wilde play .\n4292\tForget about one Oscar nomination for Julianne Moore this year - she should get all five .\n4293\tJapanese director Shohei Imamura 's latest film is an odd but ultimately satisfying blend of the sophomoric and the sublime .\n4294\tKwan is a master of shadow , quietude , and room noise , and Lan Yu is a disarmingly lived-in movie .\n4295\tWhile the plot follows a predictable connect-the-dots course ... director John Schultz colors the picture in some evocative shades .\n4296\tKatz 's documentary does n't have much panache , but with material this rich it does n't need it .\n4297\tWe get an image of Big Papa spanning history , rather than suspending it .\n4298\tEvelyn 's strong cast and surehanded direction make for a winning , heartwarming yarn .\n4299\tA conventional but heartwarming tale .\n4300\tThis is one of the outstanding thrillers of recent years .\n4301\tSkins has a desolate air , but Eyre , a Native American raised by white parents , manages to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor .\n4302\tA film of quiet power .\n4303\tMore concerned with overall feelings , broader ideas , and open-ended questions than concrete story and definitive answers , Soderbergh 's Solaris is a gorgeous and deceptively minimalist cinematic tone poem .\n4304\tAn intelligent romantic thriller of a very old-school kind of quality .\n4305\tThe sword fighting is well done and Auteuil is a goofy pleasure .\n4306\tYes , MIBII is rote work and predictable , but with a philosophical visual coming right at the end that extravagantly redeems it .\n4307\tFilm ca n't quite maintain its initial momentum , but remains sporadically funny throughout .\n4308\tO Fantasma is boldly , confidently orchestrated , aesthetically and sexually , and its impact is deeply and rightly disturbing .\n4309\tIt 's still Adam Sandler , and it 's not Little Nicky .\n4310\tAnd for many of us , that 's good enough .\n4311\tHere 's yet another cool crime movie that actually manages to bring something new into the mix .\n4312\tLee 's achievement extends to his supple understanding of the role that Brown played in American culture as an athlete , a movie star , and an image of black indomitability .\n4313\tKaufman and Jonze take huge risks to ponder the whole notion of passion -- our desire as human beings for passion in our lives and the emptiness one feels when it is missing .\n4314\tIt tends to remind one of a really solid Woody Allen film , with its excellent use of New York locales and sharp writing\n4315\tWhile centered on the life experiences of a particular theatrical family , this marvelous documentary touches -- ever so gracefully -- on the entire history of the Yiddish theater , both in America and Israel .\n4316\tThe film , despite the gratuitous cinematic distractions impressed upon it , is still good fun .\n4317\tThe immersive powers of the giant screen and its hyper-realistic images are put to perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D .\n4318\tHas an unmistakable , easy joie de vivre .\n4319\tMore than anything else , Kissing Jessica Stein injects freshness and spirit into the romantic comedy genre , which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again .\n4320\tThis movie has the usual impossible stunts ... But it has just as many scenes that are lean and tough enough to fit in any modern action movie .\n4321\tMostly works because of the universal themes , earnest performances ... and excellent use of music by India 's popular Gulzar and Jagjit Singh .\n4322\t... the one thing this Wild film has that other Imax films do n't : chimps , lots of chimps , all blown up to the size of a house .\n4323\tThat 's fun for kids of any age .\n4324\tWriter\\/director David Caesar ladles on the local flavour with a hugely enjoyable film about changing times , clashing cultures and the pleasures of a well-made pizza .\n4325\tRarely have I seen a film so willing to champion the fallibility of the human heart .\n4326\tHolofcener rejects patent solutions to dramatize life 's messiness from inside out , in all its strange quirks .\n4327\tLike The Full Monty , this is sure to raise audience 's spirits and leave them singing long after the credits roll .\n4328\t... a gleefully grungy , hilariously wicked black comedy ...\n4329\tKinnear and Dafoe give what may be the performances of their careers .\n4330\tAll in all , a great party .\n4331\tA moving story of determination and the human spirit .\n4332\t`` Brown Sugar '' admirably aspires to be more than another `` Best Man '' clone by weaving a theme throughout this funny film .\n4333\t-LRB- Gulpilil -RRB- is a commanding screen presence , and his character 's abundant humanism makes him the film 's moral compass .\n4334\tAn effortlessly accomplished and richly resonant work .\n4335\tIn some ways , Lagaan is quintessential Bollywood .\n4336\tExcept it 's much , much better .\n4337\tThough it never rises to its full potential as a film , still offers a great deal of insight into the female condition and the timeless danger of emotions repressed .\n4338\tScotland looks wonderful , the fans are often funny fanatics , the showdown sure beats a bad day of golf .\n4339\tWhat enlivens this film , beyond the astute direction of Cardoso and beautifully detailed performances by all of the actors , is a note of defiance over social dictates .\n4340\tThe emotion is impressively true for being so hot-blooded , and both leads are up to the task .\n4341\tAlthough it lacks the detail of the book , the film does pack some serious suspense .\n4342\tI 'd watch these two together again in a New York minute .\n4343\tThere 's nothing like love to give a movie a B-12 shot , and CQ shimmers with it .\n4344\tA moving essay about the specter of death , especially suicide .\n4345\tThis film is so different from The Apple and so striking that it can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility , working to develop her own film language with conspicuous success .\n4346\tLike a less dizzily gorgeous companion to Mr. Wong 's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting .\n4347\t... a somber film , almost completely unrelieved by any comedy beyond the wistful everyday ironies of the working poor .\n4348\tCoral Reef Adventure is a heavyweight film that fights a good fight on behalf of the world 's endangered reefs -- and it lets the pictures do the punching .\n4349\tThe overall result is an intelligent , realistic portrayal of testing boundaries .\n4350\tPoignant and moving , A Walk to Remember is an inspirational love story , capturing the innocence and idealism of that first encounter .\n4351\tWorth a salute just for trying to be more complex than your average film .\n4352\tHandsome and sophisticated approach to the workplace romantic comedy .\n4353\tA shimmeringly lovely coming-of-age portrait , shot in artful , watery tones of blue , green and brown .\n4354\tWhile Cherish does n't completely survive its tonal transformation from dark comedy to suspense thriller , it 's got just enough charm and appealing character quirks to forgive that still serious problem .\n4355\tIn many ways , reminiscent of 1992 's Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue .\n4356\tWe admire this film for its harsh objectivity and refusal to seek our tears , our sympathies .\n4357\tAn often watchable , though goofy and lurid , blast of a costume drama set in the late 15th century .\n4358\tThe entire cast is first-rate , especially Sorvino .\n4359\tThe Cat 's Meow marks a return to form for director Peter Bogdanovich ...\n4360\tThis one is strictly a lightweight escapist film .\n4361\tThis sensitive , smart , savvy , compelling coming-of-age drama delves into the passive-aggressive psychology of co-dependence and the struggle for self-esteem .\n4362\tThe culmination of everyone 's efforts is given life when A Selection appears in its final form -LRB- in `` Last Dance '' -RRB- .\n4363\tIn questioning the election process , Payami graphically illustrates the problems of fledgling democracies , but also the strength and sense of freedom the Iranian people already possess , with or without access to the ballot box .\n4364\tA very charming and funny movie .\n4365\tThis is a film that manages to find greatness in the hue of its drastic iconography .\n4366\tStreamlined to a tight , brisk 85-minute screwball thriller , `` Big Trouble '' is funny , harmless and as substantial as a tub of popcorn with extra butter .\n4367\tConsummate actor Barry has done excellent work here .\n4368\tThe biggest problem with this movie is that it 's not nearly long enough .\n4369\tWhile not all that bad of a movie , it 's nowhere near as good as the original .\n4370\tAli 's graduation from little screen to big is far less painful than his opening scene encounter with an over-amorous terrier .\n4371\tI have always appreciated a smartly written motion picture , and , whatever flaws Igby Goes Down may possess , it is undeniably that .\n4372\tYou can sip your vintage wines and watch your Merchant Ivory productions ; I 'll settle for a nice cool glass of iced tea and a Jerry Bruckheimer flick any day of the week .\n4373\tMay be the most undeserving victim of critical overkill since Town and Country .\n4374\tA chilly , brooding but quietly resonant psychological study of domestic tension and unhappiness .\n4375\tThe movie does its best to work us over , with second helpings of love , romance , tragedy , false dawns , real dawns , comic relief , two separate crises during marriage ceremonies , and the lush scenery of the Cotswolds .\n4376\tCold , nervy and memorable .\n4377\tBecomes a fascinating study of isolation and frustration that successfully recreates both the physical setting and emotional tensions of the Papin sisters .\n4378\tSpend your Benjamins on a matinee .\n4379\tAll in all , it 's a pretty good execution of a story that 's a lot richer than the ones Hollywood action screenwriters usually come up with on their own .\n4380\tWorth seeing just for Weaver and LaPaglia .\n4381\tA pleasant piece of escapist entertainment .\n4382\tAmong the many pleasures are the lively intelligence of the artists and their perceptiveness about their own situations .\n4383\tIt 's consistently funny , in an irresistible junior-high way , and consistently free of any gag that would force you to give it a millisecond of thought .\n4384\tIt 's the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking , but humming .\n4385\tThe storytelling may be ordinary , but the cast is one of those all-star reunions that fans of Gosford Park have come to assume is just another day of Brit cinema .\n4386\tThere 's something about a marching band that gets me where I live .\n4387\tCuaron repeatedly , perversely undercuts the joie de vivre even as he creates it , giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective .\n4388\tIt 's definitely an improvement on the first Blade , since it does n't take itself so deadly seriously .\n4389\tA slam-bang extravaganza that is all about a wild-and-woolly , wall-to-wall good time .\n4390\tWhat 's infuriating about Full Frontal is that it 's too close to real life to make sense .\n4391\tWhat 's invigorating about it is that it does n't give a damn .\n4392\tIs Red Dragon worthy of a place alongside the other Hannibal movies ?\n4393\tAs Hannibal would say , yes , ` It 's like having an old friend for dinner ' .\n4394\tWriter-director Juan Carlos Fresnadillo makes a feature debut that is fully formed and remarkably assured .\n4395\tinsightfully written , delicately performed\n4396\tPerhaps the grossest movie ever made .\n4397\tFunny , though .\n4398\tThis 90-minute postmodern voyage was more diverting and thought-provoking than I 'd expected it to be .\n4399\tOne of those exceedingly rare films in which the talk alone is enough to keep us involved .\n4400\tA heartbreakingly thoughtful minor classic , the work of a genuine and singular artist .\n4401\tAn affectionately goofy satire that 's unafraid to throw elbows when necessary ...\n4402\tBetween them , De Niro and Murphy make Showtime the most savory and hilarious guilty pleasure of many a recent movie season .\n4403\tJackson tries to keep the plates spinning as best he can , but all the bouncing back and forth ca n't help but become a bit tedious -- even with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting .\n4404\tFilmmakers David Weissman and Bill Weber benefit enormously from the Cockettes ' camera craziness -- not only did they film performances , but they did the same at home .\n4405\tInteresting both as a historical study and as a tragic love story .\n4406\tA stylish but steady , and ultimately very satisfying , piece of character-driven storytelling .\n4407\tIt picked me up , swung me around , and dropped me back in my seat with more emotional force than any other recent film .\n4408\tGraham Greene 's novel of colonialism and empire is elevated by Michael Caine 's performance as a weary journalist in a changing world .\n4409\tThough it 's equally solipsistic in tone , the movie has enough vitality to justify the notion of creating a screen adaptation of Evans ' saga of Hollywood excess .\n4410\tCompulsively watchable , no matter how degraded things get .\n4411\tDelivers roughly equal amounts of beautiful movement and inside information .\n4412\tBon appÃ©tit !\n4413\tJust like a splendid meal , Red Dragon satisfies -- from its ripe recipe , inspiring ingredients , certified cuisine and palatable presentation .\n4414\tThe structure is simple , but in its own way , Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings .\n4415\tThis charming , thought-provoking New York fest of life and love has its rewards .\n4416\tSome people march to the beat of a different drum , and if you ever wondered what kind of houses those people live in , this documentary takes a look at 5 alternative housing options .\n4417\tPlayfully profound ... and crazier than Michael Jackson on the top floor of a skyscraper nursery surrounded by open windows .\n4418\tA film that will enthrall the whole family .\n4419\tThe charm of the first movie is still there , and the story feels like the logical , unforced continuation of the careers of a pair of spy kids .\n4420\tK 19 stays afloat as decent drama\\/action flick\n4421\tIt sends you away a believer again and quite cheered at just that .\n4422\tLike the best 60 Minutes exposÃ© , the film -LRB- at 80 minutes -RRB- is actually quite entertaining .\n4423\tan 83 minute document of a project which started in a muddle , seesawed back and forth between controlling interests multiple times , then found its sweet spot\n4424\tAn emotionally and spiritually compelling journey seen through the right eyes , with the right actors and with the kind of visual flair that shows what great cinema can really do .\n4425\tNair does n't use -LRB- Monsoon Wedding -RRB- to lament the loss of culture .\n4426\tInstead , she sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions .\n4427\tBoth Grant and Hoult carry the movie because they are believable as people -- flawed , assured of the wrong things , and scared to admit how much they may really need the company of others .\n4428\tLeading a double life in an American film only comes to no good , but not here .\n4429\tMatters play out realistically if not always fairly .\n4430\tIn the affable Maid in Manhattan , Jennifer Lopez 's most aggressive and most sincere attempt to take movies by storm , the diva shrewdly surrounds herself with a company of strictly A-list players .\n4431\tLike Mike is a harmlessly naÃ¯ve slice of b-ball fantasy , fit for filling in during the real NBA 's off-season .\n4432\tThough writer\\/director Bart Freundlich 's film ultimately becomes a simplistic story about a dysfunctional parent-child relationship , it has some special qualities and the soulful gravity of Crudup 's anchoring performance .\n4433\tWhat the movie lacks in action it more than makes up for in drama , suspense , revenge , and romance .\n4434\tJust offbeat enough to keep you interested without coming close to bowling you over .\n4435\tProbes in a light-hearted way the romantic problems of individuals for whom the yearning for passion spells discontent .\n4436\tWhat elevates the movie above the run-of-the-mill singles blender is its surreal sense of humor and technological finish .\n4437\tA film about female friendship that men can embrace and women will talk about for hours .\n4438\tThe directing and story are disjointed , flaws that have to be laid squarely on Taylor 's doorstep .\n4439\tBut the actors make this worth a peek .\n4440\tLight the candles , bring out the cake and do n't fret about the calories because there 's precious little substance in Birthday Girl -- it 's simply , and surprisingly , a nice , light treat .\n4441\tIt may be about drug dealers , kidnapping , and unsavory folks , but the tone and pacing are shockingly intimate .\n4442\tMassoud 's story is an epic , but also a tragedy , the record of a tenacious , humane fighter who was also the prisoner -LRB- and ultimately the victim -RRB- of history .\n4443\tIf villainous vampires are your cup of blood , Blade 2 is definitely a cut above the rest .\n4444\tDrumline ably captures the complicated relationships in a marching band .\n4445\tBecause the film deliberately lacks irony , it has a genuine dramatic impact ; it plays like a powerful 1957 drama we 've somehow never seen before .\n4446\tDoes point the way for adventurous Indian filmmakers toward a crossover into nonethnic markets .\n4447\tSeems based on ugly ideas instead of ugly behavior , as Happiness was ... Hence , Storytelling is far more appealing .\n4448\t`` Sum '' is Jack Ryan 's `` do-over . ''\n4449\tGive credit to everyone from Robinson down to the key grip that this bold move works .\n4450\tEspecially give credit to Affleck .\n4451\tAn intelligently made -LRB- and beautifully edited -RRB- picture that at the very least has a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch .\n4452\tA terrific date movie , whatever your orientation .\n4453\tNot all of the stories work and the ones that do are thin and scattered , but the film works well enough to make it worth watching .\n4454\tWhat it lacks in originality it makes up for in effective if cheap moments of fright and dread .\n4455\tThe pain , loneliness and insecurity of the screenwriting process are vividly and painfully brought to slovenly life in this self-deprecating , biting and witty feature written by Charlie Kaufman and his twin brother , Donald , and directed by Spike Jonze .\n4456\tA gem of a movie .\n4457\tWitty , vibrant , and intelligent .\n4458\tIt 's all stitched together with energy , intelligence and verve , enhanced by a surplus of vintage archive footage .\n4459\tMiller comes at film with bracing intelligence and a vision both painterly and literary .\n4460\tThe film is moody , oozing , chilling and heart-warming all at once ... a twisting , unpredictable , cat-and-mouse thriller .\n4461\tEight Legged Freaks is clever and funny , is amused by its special effects , and leaves you feeling like you 've seen a movie instead of an endless trailer .\n4462\tThis is historical filmmaking without the balm of right-thinking ideology , either liberal or conservative .\n4463\tMr. Scorsese 's bravery and integrity in advancing this vision can hardly be underestimated .\n4464\tA thriller whose style , structure and rhythms are so integrated with the story , you can not separate them .\n4465\tIt 's a hoot watching The Rock chomp on jumbo ants , pull an arrow out of his back , and leap unscathed through raging fire !\n4466\tReturning director Rob Minkoff ... and screenwriter Bruce Joel Rubin ... have done a fine job of updating White 's dry wit to a new age .\n4467\tUnfolds with such a wallop of you-are-there immediacy that when the bullets start to fly , your first instinct is to duck .\n4468\tA strong script , powerful direction and splendid production design allows us to be transported into the life of Wladyslaw Szpilman , who is not only a pianist , but a good human being .\n4469\tAn unflinching look at the world 's dispossessed .\n4470\tIf the film fails to fulfill its own ambitious goals , it nonetheless sustains interest during the long build-up of expository material .\n4471\tPolanski has found the perfect material with which to address his own World War II experience in his signature style .\n4472\tIt is life affirming and heartbreaking , sweet without the decay factor , funny and sad .\n4473\tAn off-beat and fanciful film about the human need for monsters to blame for all that is amiss in the world .\n4474\tA colorful , joyous celebration of life ; a tapestry woven of romance , dancing , singing , and unforgettable characters .\n4475\tFrei assembles a fascinating profile of a deeply humanistic artist who , in spite of all that he 's witnessed , remains surprisingly idealistic , and retains an extraordinary faith in the ability of images to communicate the truth of the world around him .\n4476\tNicely combines the enigmatic features of ` Memento ' with the hallucinatory drug culture of ` Requiem for a Dream . '\n4477\tA well paced and satisfying little drama that deserved better than a ` direct-to-video ' release .\n4478\tThe best part about `` Gangs '' was Daniel Day-Lewis .\n4479\tA treat for its depiction on not giving up on dreams when you 're a struggling nobody .\n4480\tOne of those rare films that seems as though it was written for no one , but somehow manages to convince almost everyone that it was put on the screen , just for them .\n4481\tA gripping documentary that reveals how deep the antagonism lies in war-torn Jerusalem .\n4482\tDirector Chris Wedge and screenwriters Michael Berg , Michael J. Wilson and Peter Ackerman create some episodes that rival vintage Looney Tunes for the most creative mayhem in a brief amount of time .\n4483\tOne of the film 's most effective aspects is its Tchaikovsky soundtrack of neurasthenic regret .\n4484\tSolondz creates some effective moments of discomfort for character and viewer alike .\n4485\tThe film 's appeal has a lot to do with the casting of Juliette Binoche as Sand , who brings to the role her pale , dark beauty and characteristic warmth .\n4486\tI was amused and entertained by the unfolding of Bielinsky 's cleverly constructed scenario , and greatly impressed by the skill of the actors involved in the enterprise .\n4487\tSomehow Ms. Griffiths and Mr. Pryce bring off this wild Welsh whimsy .\n4488\tMore mature than Fatal Attraction , more complete than Indecent Proposal and more relevant than 9 1\\/2 Weeks , Unfaithful is at once intimate and universal cinema .\n4489\tFor all the dolorous trim , Secretary is a genial romance that maintains a surprisingly buoyant tone throughout , notwithstanding some of the writers ' sporadic dips into pop Freudianism .\n4490\tA fanciful drama about Napoleon 's last years and his surprising discovery of love and humility .\n4491\tA highly personal look at the effects of living a dysfunctionally privileged lifestyle , and by the end , we only wish we could have spent more time in its world .\n4492\tEric Schweig and Graham Greene both exude an air of dignity that 's perfect for the proud warrior that still lingers in the souls of these characters .\n4493\tLovely and Amazing is Holofcener 's deep , uncompromising curtsy to women she knows , and very likely is .\n4494\tWhen all is said and done , she loves them to pieces -- and so , I trust , will you .\n4495\tCampbell Scott finds the ideal outlet for his flick-knife diction in the role of Roger Swanson .\n4496\t-LRB- Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall -RRB- show us the world they love and make us love it , too .\n4497\tRussian Ark is a new treasure of the Hermitage .\n4498\tThe animated sequences are well done and perfectly constructed to convey a sense of childhood imagination and creating adventure out of angst .\n4499\tIt 's definitely a step in the right direction .\n4500\tAs the princess , Sorvino glides gracefully from male persona to female without missing a beat .\n4501\tBen Kingsley is truly funny , playing a kind of Ghandi gone bad .\n4502\tOurside the theatre Roger might be intolerable company , but inside it he 's well worth spending some time with .\n4503\tA gem , captured in the unhurried , low-key style favored by many directors of the Iranian new wave .\n4504\tIn an era where big stars and high production values are standard procedure , Narc strikes a defiantly retro chord , and outpaces its contemporaries with daring and verve .\n4505\tRanges from laugh-out-loud hilarious to wonder-what - time-it-is tedious .\n4506\tThe film 's gamble to occasionally break up the live-action scenes with animated sequences pays off , as does its sensitive handling of some delicate subject matter .\n4507\tTalk To Her is not the perfect movie many have made it out to be , but it 's still quite worth seeing .\n4508\tBeating the Austin Powers films at their own game , this blaxploitation spoof downplays the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness .\n4509\tThis is a dark , gritty , sometimes funny little gem .\n4510\tFor all its visual panache and compelling supporting characters , the heart of the film rests in the relationship between Sullivan and his son .\n4511\tWhat makes Salton Sea surprisingly engrossing is that Caruso takes an atypically hypnotic approach to a world that 's often handled in fast-edit , hopped-up fashion .\n4512\tA hidden-agenda drama that shouts classic French nuance .\n4513\tWith Spy Kids 2 : The Island of Lost Dreams , the Spy Kids franchise establishes itself as a durable part of the movie landscape : a James Bond series for kids .\n4514\tAn invaluable historical document thanks to the filmmaker 's extraordinary access to Massoud , whose charm , cultivation and devotion to his people are readily apparent .\n4515\tThe performances of the four main actresses bring their characters to life .\n4516\tA little melodramatic , but with enough hope to keep you engaged .\n4517\tLan Yu seems altogether too slight to be called any kind of masterpiece .\n4518\tIt is , however , a completely honest , open-hearted film that should appeal to anyone willing to succumb to it .\n4519\tEveryone should be able to appreciate the wonderful cinematography and naturalistic acting .\n4520\tThis often-hilarious farce manages to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal .\n4521\tExpands the limits of what a film can be , taking us into the lives of women to whom we might not give a second look if we passed them on the street .\n4522\tThe farcical elements seemed too pat and familiar to hold my interest , yet its diverting grim message is a good one .\n4523\tShanghai Ghetto may not be as dramatic as Roman Polanski 's The Pianist , but its compassionate spirit soars every bit as high .\n4524\tDespite these annoyances , the capable Clayburgh and Tambor really do a great job of anchoring the characters in the emotional realities of middle age .\n4525\tThe underworld urban angst is derivative of Martin Scorsese 's Taxi Driver and Goodfellas , but this film speaks for itself .\n4526\tThe film 's heady yet far from impenetrable theory suggests that Russians take comfort in their closed-off nationalist reality .\n4527\tDespite modest aspirations its occasional charms are not to be dismissed .\n4528\tConstantly touching , surprisingly funny , semi-surrealist exploration of the creative act .\n4529\tThe journey is worth your time , especially if you have Ellen Pompeo sitting next to you for the ride .\n4530\tMerci pour le movie .\n4531\tFor every cheesy scene , though , there is a really cool bit -- the movie 's conception of a future-world holographic librarian -LRB- Orlando Jones -RRB- who knows everything and answers all questions , is visually smart , cleverly written , and nicely realized .\n4532\tWhat sets Ms. Birot 's film apart from others in the genre is a greater attention to the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents .\n4533\tAll three women deliver remarkable performances .\n4534\tClaire is a terrific role for someone like Judd , who really ought to be playing villains .\n4535\tIt 's clear that Mehta simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent .\n4536\tCompassionately explores the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children .\n4537\tThe soundtrack alone is worth the price of admission .\n4538\tRodriguez does a splendid job of racial profiling Hollywood style -- casting excellent Latin actors of all ages -- a trend long overdue .\n4539\tBeneath the film 's obvious determination to shock at any cost lies considerable skill and determination , backed by sheer nerve .\n4540\tBielinsky is a filmmaker of impressive talent .\n4541\tSo beautifully acted and directed , it 's clear that Washington most certainly has a new career ahead of him if he so chooses .\n4542\tA visual spectacle full of stunning images and effects .\n4543\tA gentle and engrossing character study .\n4544\tIt 's enough to watch Huppert scheming , with her small , intelligent eyes as steady as any noir villain , and to enjoy the perfectly pitched web of tension that Chabrol spins .\n4545\tAn engrossing portrait of uncompromising artists trying to create something original against the backdrop of a corporate music industry that only seems to care about the bottom line .\n4546\tA mischievous visual style and oodles of charm make ` Cherish ' a very good -LRB- but not great -RRB- movie .\n4547\tJust as the recent Argentine film Son of the Bride reminded us that a feel-good movie can still show real heart , Time of Favor presents us with an action movie that actually has a brain .\n4548\t-LRB- A -RRB- strong piece of work .\n4549\tA stirring tribute to the bravery and dedication of the world 's reporters who willingly walk into the nightmare of war not only to record the events for posterity , but to help us clearly see the world of our making .\n4550\tThe Importance of Being Earnest , so thick with wit it plays like a reading from Bartlett 's Familiar Quotations\n4551\tDaring and beautifully made .\n4552\tMade for teens and reviewed as such , this is recommended only for those under 20 years of age ... and then only as a very mild rental .\n4553\tImagine O. Henry 's The Gift of the Magi relocated to the scuzzy underbelly of NYC 's drug scene .\n4554\tMerry friggin ' Christmas !\n4555\tThe film does give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard .\n4556\tBoth lead performances are Oscar-size .\n4557\tQuaid is utterly fearless as the tortured husband living a painful lie , and Moore wonderfully underplays the long-suffering heroine with an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver .\n4558\tFerrara 's best film in years .\n4559\tA remarkably insightful look at the backstage angst of the stand-up comic .\n4560\tNothing short of wonderful with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil .\n4561\tDavis ' candid , archly funny and deeply authentic take on intimate relationships comes to fruition in her sophomore effort .\n4562\tIt 's more enjoyable than I expected , though , and that 's because the laughs come from fairly basic comedic constructs .\n4563\tCinematic pratfalls given a working over .\n4564\tThe cast is spot on and the mood is laid back .\n4565\tMatches neorealism 's impact by showing the humanity of a war-torn land filled with people who just want to live their lives .\n4566\tThose moviegoers who would automatically bypass a hip-hop documentary should give `` Scratch '' a second look .\n4567\tBaby-faced Renner is eerily convincing as this bland blank of a man with unimaginable demons within .\n4568\tRomantic , riveting and handsomely animated .\n4569\tA competent , unpretentious entertainment destined to fill the after-school slot at shopping mall theaters across the country .\n4570\tShot largely in small rooms , the film has a gentle , unforced intimacy that never becomes claustrophobic .\n4571\tWhere Janice Beard falters in its recycled aspects , implausibility , and sags in pace , it rises in its courageousness , and comedic employment .\n4572\tByler is too savvy a filmmaker to let this morph into a typical romantic triangle .\n4573\tInstead , he focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground .\n4574\tMcGrath has deftly trimmed Dickens ' wonderfully sprawling soap opera , the better to focus on the hero 's odyssey from cowering poverty to courage and happiness .\n4575\tA chance to see three splendid actors turn a larky chase movie into an emotionally satisfying exploration of the very human need to be somebody , and to belong to somebody .\n4576\tMetaphors abound , but it is easy to take this film at face value and enjoy its slightly humorous and tender story .\n4577\tAs directed by Dani Kouyate of Burkina Faso , Sia lacks visual flair .\n4578\tBut Kouyate elicits strong performances from his cast , and he delivers a powerful commentary on how governments lie , no matter who runs them .\n4579\tThe best comedy concert movie I 've seen since Cho 's previous concert comedy film , I 'm the One That I Want , in 2000 .\n4580\tBroomfield reminds us that beneath the hype , the celebrity , the high life , the conspiracies and the mystery there were once a couple of bright young men -- promising , talented , charismatic and tragically doomed .\n4581\tOffers laughs and insight into one of the toughest ages a kid can go through .\n4582\tA perceptive , good-natured movie .\n4583\tAn amused indictment of Jaglom 's own profession .\n4584\tA small movie with a big heart .\n4585\tHugely accomplished slice of Hitchcockian suspense .\n4586\tThe formula is familiar but enjoyable .\n4587\tTells a fascinating , compelling story .\n4588\tA triumph , a film that hews out a world and carries us effortlessly from darkness to light .\n4589\tWhat begins as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters .\n4590\tThe Lady and the Duke is a smart , romantic drama that dares to depict the French Revolution from the aristocrats ' perspective .\n4591\tMost haunting about `` Fence '' is its conclusion , when we hear the ultimate fate of these girls and realize , much to our dismay , that this really did happen .\n4592\tNoyce 's greatest mistake is thinking that we needed sweeping , dramatic , Hollywood moments to keep us\n4593\tWorld Traveler might not go anywhere new , or arrive anyplace special , but it 's certainly an honest attempt to get at something .\n4594\tThere 's much tongue in cheek in the film and there 's no doubt the filmmaker is having fun with it all .\n4595\tThere 's absolutely no reason why Blue Crush , a late-summer surfer girl entry , should be as entertaining as it is\n4596\tAn action\\/thriller of the finest kind , evoking memories of Day of the Jackal , The French Connection , and Heat .\n4597\tThe best movie in many a moon about the passions that sometimes fuel our best achievements and other times leave us stranded with nothing more than our lesser appetites .\n4598\tIn capturing the understated comedic agony of an ever-ruminating , genteel yet decadent aristocracy that can no longer pay its bills , the film could just as well be addressing the turn of the 20th century into the 21st .\n4599\tInsomnia does not become one of those rare remakes to eclipse the original , but it does n't disgrace it , either .\n4600\tclassic cinema served up with heart and humor\n4601\t-LRB- Stephen -RRB- Earnhart 's film is more about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones they currently have .\n4602\tThe events of the film are just so WEIRD that I honestly never knew what the hell was coming next .\n4603\tNicole Holofcener 's Lovely and Amazing , from her own screenplay , jumps to the head of the class of women 's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style .\n4604\tThat Jack Nicholson makes this man so watchable is a tribute not only to his craft , but to his legend .\n4605\tHas a solid emotional impact .\n4606\tSuccessfully blended satire , high camp and yet another sexual taboo into a really funny movie .\n4607\tMark Pellington 's latest pop thriller is as kooky and overeager as it is spooky and subtly in love with myth .\n4608\tWhile maintaining the appearance of clinical objectivity , this sad , occasionally horrifying but often inspiring film is among Wiseman 's warmest .\n4609\tRaimi crafted a complicated hero who is a welcome relief from the usual two-dimensional offerings .\n4610\tAn enjoyable above average summer diversion .\n4611\tThere is simply no doubt that this film asks the right questions at the right time in the history of our country .\n4612\tIf you 've the patience , there are great rewards here .\n4613\tAs a science fiction movie , `` Minority Report '' astounds .\n4614\tWatching E.T now , in an era dominated by cold , loud special-effects-laden extravaganzas , one is struck less by its lavish grandeur than by its intimacy and precision .\n4615\tVisually breathtaking , viscerally exciting , and dramatically moving , it 's the very definition of epic adventure .\n4616\tChris Columbus ' sequel is faster , livelier and a good deal funnier than his original .\n4617\tWatching this film , what we feel is n't mainly suspense or excitement .\n4618\tThe dominant feeling is something like nostalgia . '\n4619\t... a great , participatory spectator sport . '\n4620\tA rather brilliant little cult item : a pastiche of children 's entertainment , superhero comics , and Japanese animation .\n4621\tBelieves so fervently in humanity that it feels almost anachronistic , and it is too cute by half .\n4622\tBut arriving at a particularly dark moment in history , it offers flickering reminders of the ties that bind us .\n4623\tAdam SANDLER !\n4624\tIn an ART FILM !\n4625\tAs averse as I usually am to feel-good , follow-your-dream Hollywood fantasies , this one got to me .\n4626\tStone seems to have a knack for wrapping the theater in a cold blanket of urban desperation .\n4627\t... a funny yet dark and seedy clash of cultures and generations .\n4628\tThe hook is the drama within the drama , as an unsolved murder and an unresolved moral conflict jockey for the spotlight .\n4629\tOver the years , Hollywood has crafted a solid formula for successful animated movies , and Ice Age only improves on it , with terrific computer graphics , inventive action sequences and a droll sense of humor .\n4630\tLike Smoke Signals , the film is also imbued with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama\n4631\tOne of those movies that make us pause and think of what we have given up to acquire the fast-paced contemporary society .\n4632\tOne of the most original American productions this year , you 'll find yourself remembering this refreshing visit to a Sunshine State .\n4633\tMelds derivative elements into something that is often quite rich and exciting , and always a beauty to behold .\n4634\tGives everyone something to shout about .\n4635\tThe entire movie has a truncated feeling , but what 's available is lovely and lovable .\n4636\t-LRB- A -RRB- thoughtful , visually graceful work .\n4637\tAdmirers of director Abel Ferrara may be relieved that his latest feature , R Xmas , marks a modest if encouraging return to form .\n4638\tThe slam-bang superheroics are kinetic enough to engross even the most antsy youngsters .\n4639\tA worthy addition to the cinematic canon , which , at last count , numbered 52 different versions .\n4640\tDeliciously mean-spirited and wryly observant .\n4641\tThe kind of primal storytelling that George Lucas can only dream of .\n4642\tEven if The Ring has a familiar ring , it 's still unusually crafty and intelligent for Hollywood horror .\n4643\tThe sheer joy and pride they took in their work -- and in each other -- shines through every frame .\n4644\tA solidly constructed , entertaining thriller that stops short of true inspiration .\n4645\tThe cast ... keeps this pretty watchable , and casting Mick Jagger as director of the escort service was inspired .\n4646\tAn entertaining , if somewhat standardized , action movie .\n4647\tIt has a dashing and resourceful hero ; a lisping , reptilian villain ; big fights ; big hair ; lavish period scenery ; and a story just complicated enough to let you bask in your own cleverness as you figure it out .\n4648\tAn enjoyable comedy of lingual and cultural differences ... The ChÃ¢teau is a film -- full of life and small delights -- that has all the wiggling energy of young kitten .\n4649\tIntriguing and downright intoxicating .\n4650\tAn incredibly thoughtful , deeply meditative picture that neatly and effectively captures the debilitating grief felt in the immediate aftermath of the terrorist attacks .\n4651\tWith an obvious rapport with her actors and a striking style behind the camera , HÃ©lÃ¨ne Angel is definitely a director to watch .\n4652\t... could easily be called the best Korean film of 2002 .\n4653\tFull of detail about the man and his country , and is well worth seeing .\n4654\tThe banter between Calvin and his fellow barbers feels like a streetwise McLaughlin Group ... and never fails to entertain .\n4655\tThoroughly engrossing and ultimately tragic .\n4656\tPeter Jackson and company once again dazzle and delight us , fulfilling practically every expectation either a longtime Tolkien fan or a movie-going neophyte could want .\n4657\tBill Morrison 's Decasia is uncompromising , difficult and unbearably beautiful .\n4658\tFull of bland hotels , highways , parking lots , with some glimpses of nature and family warmth , Time Out is a discreet moan of despair about entrapment in the maze of modern life .\n4659\tEven with all its botches , Enigma offers all the pleasure of a handsome and well-made entertainment .\n4660\tHis work transcends the boy-meets-girl posturing of typical love stories .\n4661\tIf the real-life story is genuinely inspirational , the movie stirs us as well .\n4662\tAn ebullient Tunisian film about the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing .\n4663\tThe dramatic crisis does n't always succeed in its quest to be taken seriously , but Huppert 's volatile performance makes for a riveting movie experience .\n4664\tHighly irritating at first , Mr. Koury 's passive technique eventually begins to yield some interesting results .\n4665\tAbout Schmidt belongs to Nicholson .\n4666\tGone are the flamboyant mannerisms that are the trademark of several of his performances .\n4667\tAs Schmidt , Nicholson walks with a slow , deliberate gait , chooses his words carefully and subdues his natural exuberance .\n4668\tThe powder blues and sun-splashed whites of Tunis make an alluring backdrop for this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs .\n4669\tIt does n't make for great cinema , but it is interesting to see where one 's imagination will lead when given the opportunity .\n4670\tIt 's sobering , particularly if anyone still thinks this conflict can be resolved easily , or soon .\n4671\tIf it 's not entirely memorable , the movie is certainly easy to watch .\n4672\t... by the time it 's done with us , Mira Nair 's new movie has its audience giddy with the delight of discovery , of having been immersed in a foreign culture only to find that human nature is pretty much the same all over .\n4673\tBest indie of the year , so far .\n4674\t-LRB- Ferrera -RRB- has the charisma of a young woman who knows how to hold the screen .\n4675\t... the plot weaves us into a complex web .\n4676\tDo n't judge this one too soon - it 's a dark , gritty story but it takes off in totally unexpected directions and keeps on going .\n4677\tIn Death to Smoochy , we do n't get Williams ' usual tear and a smile , just sneers and bile , and the spectacle is nothing short of refreshing .\n4678\tA serviceable Euro-trash action extravaganza , with a decent sense of humor and plenty of things that go boom -- handguns , BMWs and seaside chateaus .\n4679\tFortunately , Elling never gets too cloying thanks to the actors ' perfect comic timing and sweet , genuine chemistry .\n4680\tIf you 've grown tired of going where no man has gone before , but several movies have - take heart .\n4681\tThis is the best Star Trek movie in a long time .\n4682\tGreg Kinnear gives a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior .\n4683\tNot only a coming-of-age story and cautionary parable , but also a perfectly rendered period piece .\n4684\tou 've got to love a Disney pic with as little cleavage as this one has , and a heroine as feisty and principled as Jane .\n4685\tA funny , triumphant , and moving documentary .\n4686\tLathan and Diggs carry the film with their charisma , and both exhibit sharp comic timing that makes the more hackneyed elements of the film easier to digest .\n4687\tAbout Schmidt is Nicholson 's goofy , heartfelt , mesmerizing King Lear .\n4688\tA confluence of kiddie entertainment , sophisticated wit and symbolic graphic design .\n4689\tGay or straight , Kissing Jessica Stein is one of the greatest date movies in years .\n4690\tThis is a movie full of grace and , ultimately , hope .\n4691\tEven better than the first one !\n4692\tIts compelling mix of trial movie , escape movie and unexpected fable ensures the film never feels draggy .\n4693\tA must see for all sides of the political spectrum\n4694\t-LRB- Reynolds -RRB- takes a classic story , casts attractive and talented actors and uses a magnificent landscape to create a feature film that is wickedly fun to watch .\n4695\tThere are problems with this film that even 3 Oscar winners ca n't overcome , but it 's a nice girl-buddy movie once it gets rock-n-rolling .\n4696\tRich in atmosphere of the post-war art world , it manages to instruct without reeking of research library dust .\n4697\tHas the rare capability to soothe and break your heart with a single stroke .\n4698\tIt rapidly develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide .\n4699\tThough it flirts with bathos and pathos and the further Oprahfication of the world as we know it , it still cuts all the way down to broken bone .\n4700\tThis humbling little film , fueled by the light comedic work of Zhao Benshan and the delicate ways of Dong Jie , is just the sort for those moviegoers who complain that ` they do n't make movies like they used to anymore . '\n4701\tIt will break your heart many times over .\n4702\tA straight-shooting family film which awards animals the respect they 've rarely been given .\n4703\tOverall , interesting as a documentary -- but not very Imaxy .\n4704\tThis is one of those war movies that focuses on human interaction rather than battle and action sequences ... and it 's all the stronger because of it .\n4705\t`` Secretary '' is owned by its costars , Spader and Gyllenhaal .\n4706\tMaggie G. makes an amazing breakthrough in her first starring role and eats up the screen .\n4707\tThe film fits into a genre that has been overexposed , redolent of a thousand cliches , and yet remains uniquely itself , vibrant with originality .\n4708\tNot only is it a charming , funny and beautifully crafted import , it uses very little dialogue , making it relatively effortless to read and follow the action at the same time .\n4709\tThe kind of sense of humor that derives from a workman 's grasp of pun and entendre and its attendant need to constantly draw attention to itself .\n4710\tToo much of Storytelling moves away from Solondz 's social critique , casting its audience as that of intellectual lector in contemplation of the auteur 's professional injuries .\n4711\tThe story is virtually impossible to follow here , but there 's a certain style and wit to the dialogue .\n4712\tThe music makes a nice album , the food is enticing and Italy beckons us all .\n4713\tThe film is an earnest try at beachcombing verismo , but it would be even more indistinct than it is were it not for the striking , quietly vulnerable personality of Ms. Ambrose .\n4714\tThe film is small in scope , yet perfectly formed .\n4715\tJones has delivered a solidly entertaining and moving family drama .\n4716\tHappy Times maintains an appealing veneer without becoming too cute about it .\n4717\tOliveira seems to pursue silent film representation with every mournful composition .\n4718\tOne of the pleasures in Walter 's documentary ... is the parade of veteran painters , confounded dealers , and miscellaneous bohos who expound upon the subject 's mysterious personality without ever explaining him .\n4719\tCaptures all the longing , anguish and ache , the confusing sexual messages and the wish to be a part of that elusive adult world .\n4720\tHe 's the scariest guy you 'll see all summer .\n4721\t`` Frailty '' offers chills much like those that you get when sitting around a campfire around midnight , telling creepy stories to give each other the willies .\n4722\tAnd , there 's no way you wo n't be talking about the film once you exit the theater .\n4723\tIf I have to choose between gorgeous animation and a lame story -LRB- like , say , Treasure Planet -RRB- or so-so animation and an exciting , clever story with a batch of appealing characters , I 'll take the latter every time .\n4724\tQuiet , adult and just about more stately than any contemporary movie this year ... a true study , a film with a questioning heart and mind that is n't afraid to admit it does n't have all the answers .\n4725\tIn the end , the film is less the cheap thriller you 'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide .\n4726\tSome of the visual flourishes are a little too obvious , but restrained and subtle storytelling , and fine performances make this delicate coming-of-age tale a treat .\n4727\tIt is hard not to be especially grateful for freedom after a film like this .\n4728\tThe dirty jokes provide the funniest moments in this oddly sweet comedy about jokester highway patrolmen .\n4729\tY Tu MamÃ¡ TambiÃ©n is hilariously , gloriously alive , and quite often hotter than Georgia asphalt .\n4730\t... works on some levels and is certainly worth seeing at least once .\n4731\tYou come away from his film overwhelmed , hopeful and , perhaps paradoxically , illuminated .\n4732\tIf the material is slight and admittedly manipulative , Jacquot preserves Tosca 's intoxicating ardor through his use of the camera .\n4733\tThirteen Conversations About One Thing lays out a narrative puzzle that interweaves individual stories , and , like a Mobius strip , elliptically loops back to where it began .\n4734\tOverall , it 's a wacky and inspired little film that works effortlessly at delivering genuine , acerbic laughs .\n4735\tA must for fans of British cinema , if only because so many titans of the industry are along for the ride .\n4736\tTsai has managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare , unchecked heartache of Yasujiro Ozu .\n4737\tUntil -LRB- the -RRB- superfluous ... epilogue that leaks suspension of disbelief like a sieve , Die Another Day is as stimulating & heart-rate-raising as any James Bond thriller .\n4738\tIt 's a good film , but it falls short of its aspiration to be a true ` epic ' .\n4739\tAll the pieces fall together without much surprise , but little moments give it a boost .\n4740\tThe beauty of Alexander Payne 's ode to the Everyman is in the details .\n4741\tA touching drama about old age and grief with a tour de force performance by Michel Piccoli .\n4742\tThe ending feels at odds with the rest of the film .\n4743\tA tone of rueful compassion ... reverberates throughout this film , whose meaning and impact is sadly heightened by current world events .\n4744\tA beautiful paean to a time long past .\n4745\tDense and thoughtful and brimming with ideas that are too complex to be rapidly absorbed .\n4746\tIf you thought Tom Hanks was just an ordinary big-screen star , wait until you 've seen him eight stories tall .\n4747\tWith this masterful , flawless film , -LRB- Wang -RRB- emerges in the front ranks of China 's now numerous , world-renowned filmmakers .\n4748\tShyamalan offers copious hints along the way -- myriad signs , if you will -- that beneath the familiar , funny surface is a far bigger , far more meaningful story than one in which little green men come to Earth for harvesting purposes .\n4749\tThis film is an act of spiritual faith -- an eloquent , deeply felt meditation on the nature of compassion .\n4750\tA different kind of love story - one that is dark , disturbing , painful to watch , yet compelling .\n4751\tSplendidly illustrates the ability of the human spirit to overcome adversity .\n4752\tA compelling , gut-clutching piece of advocacy cinema that carries you along in a torrent of emotion as it explores the awful complications of one terrifying day .\n4753\tShe 's as rude and profane as ever , always hilarious and , most of the time , absolutely right in her stinging social observations .\n4754\tTo those who have not read the book , the film is a much better mother-daughter tale than last summer 's ` Divine Secrets of the Ya-Ya Sisterhood , ' but that 's not saying much .\n4755\tEven before it builds up to its insanely staged ballroom scene , in which 3000 actors appear in full regalia , it 's waltzed itself into the art film pantheon .\n4756\tA thoughtful , reverent portrait of what is essentially a subculture , with its own rules regarding love and family , governance and hierarchy .\n4757\tIt seems impossible that an epic four-hour Indian musical about a cricket game could be this good , but it is .\n4758\tWill certainly appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about .\n4759\tTouches smartly and wistfully on a number of themes , not least the notion that the marginal members of society ... might benefit from a helping hand and a friendly kick in the pants .\n4760\tA wildly entertaining scan of Evans ' career .\n4761\tA mature , deeply felt fantasy of a director 's travel through 300 years of Russian history .\n4762\tBoldly engineering a collision between tawdry B-movie flamboyance and grandiose spiritual anomie , Rose 's film , true to its source material , provides a tenacious demonstration of death as the great equalizer .\n4763\tA finely tuned mood piece , a model of menacing atmosphere .\n4764\tThe Salton Sea has moments of inspired humour , though every scrap is of the darkest variety .\n4765\tBoth a beautifully made nature film and a tribute to a woman whose passion for this region and its inhabitants still shines in her quiet blue eyes .\n4766\tAlthough shot with little style , Skins is heartfelt and achingly real .\n4767\tHarks back to a time when movies had more to do with imagination than market research .\n4768\tUpsetting and thought-provoking , the film has an odd purity that does n't bring you into the characters so much as it has you study them .\n4769\tA very pretty after-school special .\n4770\tIt 's an effort to watch this movie , but it eventually pays off and is effective if you stick with it .\n4771\tA harrowing account of a psychological breakdown .\n4772\tContinually challenges perceptions of guilt and innocence , of good guys and bad , and asks us whether a noble end can justify evil means .\n4773\tIt certainly wo n't win any awards in the plot department but it sets out with no pretensions and delivers big time .\n4774\tDog Soldiers does n't transcend genre -- it embraces it , energizes it and takes big bloody chomps out of it .\n4775\tAt once emotional and richly analytical , the Cosby-Seinfeld encounter alone confirms the serious weight behind this superficially loose , larky documentary .\n4776\tIt may scream low budget , but this charmer has a spirit that can not be denied .\n4777\t` Alice 's adventure through the looking glass and into zombie-land ' is filled with strange and wonderful creatures .\n4778\tWithout -LRB- De Niro -RRB- , City By The Sea would slip under the waves .\n4779\tHe drags it back , single-handed .\n4780\tA good music documentary , probably one of the best since The Last Waltz .\n4781\tIf the plot seems a bit on the skinny side , that 's because Panic Room is interested in nothing more than sucking you in ... and making you sweat .\n4782\t... -LRB- the film -RRB- works , due mostly to the tongue-in-cheek attitude of the screenplay .\n4783\tThe film becomes an overwhelming pleasure , and you find yourself rooting for Gai 's character to avoid the fate that has befallen every other Carmen before her .\n4784\tBroomfield has a rather unique approach to documentary .\n4785\tHe thinks the film is just as much a document about him as it is about the subject .\n4786\tAt its best when the guarded , resentful Betty and the manipulative yet needy Margot are front and center .\n4787\tGloriously straight from the vagina .\n4788\tIt 's excessively quirky and a little underconfident in its delivery , but otherwise this is the best ` old neighborhood ' project since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists .\n4789\tThe film oozes craft .\n4790\tRobinson 's web of suspense matches the page-turning frenzy that Clancy creates .\n4791\tManages to be both hugely entertaining and uplifting .\n4792\tA classic fairy tale that perfectly captures the wonders and worries of childhood in a way that few movies have ever approached .\n4793\tIt 's the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison .\n4794\ta wonderfully warm human drama that remains vividly in memory long after viewing\n4795\tJaunty fun , with its celeb-strewn backdrop well used .\n4796\tRecoing 's fantastic performance does n't exactly reveal what makes Vincent tick , but perhaps any definitive explanation for it would have felt like a cheat .\n4797\tWashington overcomes the script 's flaws and envelops the audience in his character 's anguish , anger and frustration .\n4798\tThe film fearlessly gets under the skin of the people involved ... This makes it not only a detailed historical document , but an engaging and moving portrait of a subculture .\n4799\tA searing , epic treatment of a nationwide blight that seems to be , horrifyingly , ever on the rise .\n4800\tNot a film for the faint of heart or conservative of spirit , but for the rest of us -- especially San Francisco lovers -- it 's a spirited film and a must-see .\n4801\tRead My Lips is to be viewed and treasured for its extraordinary intelligence and originality as well as its lyrical variations on the game of love .\n4802\tThe color sense of Stuart Little 2 is its most immediate and most obvious pleasure , but it would count for very little if the movie were n't as beautifully shaped and as delicately calibrated in tone as it is .\n4803\twhile -LRB- Roman Coppola -RRB- scores points for style , he staggers in terms of story .\n4804\tAny movie that makes hard work seem heroic deserves a look .\n4805\tIt may not be a huge cut of above the rest , but I enjoyed Barbershop .\n4806\tIt 's a funny little movie with clever dialogue and likeable characters .\n4807\tA different and emotionally reserved type of survival story -- a film less about refracting all of World War II through the specific conditions of one man , and more about that man lost in its midst .\n4808\tIt 's sweet , funny , charming , and completely delightful .\n4809\tA perfectly competent and often imaginative film that lacks what little Lilo & Stitch had in spades -- charisma .\n4810\tBeautifully shot against the frozen winter landscapes of Grenoble and Geneva , the film unfolds with all the mounting tension of an expert thriller , until the tragedy beneath it all gradually reveals itself .\n4811\tMedem may have disrobed most of the cast , leaving their bodies exposed , but the plot remains as guarded as a virgin with a chastity belt .\n4812\tThat 's why Sex and Lucia is so alluring .\n4813\tAn elegant work , Food of Love is as consistently engaging as it is revealing .\n4814\tAlthough largely a heavy-handed indictment of parental failings and the indifference of Spanish social workers and legal system towards child abuse , the film retains ambiguities that make it well worth watching .\n4815\tA behind the scenes look at the training and dedication that goes into becoming a world-class fencer and the champion that 's made a difference to NYC inner-city youth .\n4816\tA brain twister , less a movie-movie than a funny and weird meditation on Hollywood , success , artistic integrity and intellectual bankruptcy .\n4817\tA powerful , inflammatory film about religion that dares to question an ancient faith , and about hatred that offers no easy , comfortable resolution .\n4818\tIn its own floundering way , it gets to you .\n4819\tJust like Igby .\n4820\tReturn to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families , but it 's not half-bad .\n4821\tWise and deadpan humorous .\n4822\tGod bless Crudup and his aversion to taking the easy Hollywood road and cashing in on his movie-star gorgeousness .\n4823\tIf Signs is a good film , and it is , the essence of a great one is in there somewhere .\n4824\tVeterans of the dating wars will smirk uneasily at the film 's nightmare versions of everyday sex-in-the-city misadventures .\n4825\tSchrader examines Crane 's decline with unblinking candor .\n4826\tYou can watch , giggle and get an adrenaline boost without feeling like you 've completely lowered your entertainment standards .\n4827\tIt thankfully goes easy on the reel\\/real world dichotomy that -LRB- Jaglom -RRB- pursued with such enervating determination in Venice\\/Venice .\n4828\tThis rich , bittersweet Israeli documentary , about the life of song-and-dance-man Pasach ` ke Burstein and his family , transcends ethnic lines .\n4829\tSensitively examines general issues of race and justice among the poor , and specifically raises serious questions about the death penalty and asks what good the execution of a mentally challenged woman could possibly do .\n4830\tCool gadgets and creatures keep this fresh .\n4831\tNot as good as the original , but what is ...\n4832\tPresents a side of contemporary Chinese life that many outsiders will be surprised to know exists , and does so with an artistry that also smacks of revelation .\n4833\t-LRB- Jeff 's -RRB- gorgeous , fluid compositions , underlined by Neil Finn and Edmund McWilliams 's melancholy music , are charged with metaphor , but rarely easy , obvious or self-indulgent .\n4834\tEngages us in constant fits of laughter , until we find ourselves surprised at how much we care about the story , and end up walking out not only satisfied but also somewhat touched .\n4835\ta bilingual charmer , just like the woman who inspired it\n4836\tBlisteringly rude , scarily funny , sorrowfully sympathetic to the damage it surveys , the film has in Kieran Culkin a pitch-perfect Holden .\n4837\tThe fourth `` Pokemon '' is a diverting -- if predictable -- adventure suitable for a matinee , with a message that cautions children about disturbing the world 's delicate ecological balance .\n4838\tWhat one is left with , even after the most awful acts are committed , is an overwhelming sadness that feels as if it has made its way into your very bloodstream .\n4839\t-LRB- It -RRB- has the feel of a summer popcorn movie .\n4840\tNothing too deep or substantial .\n4841\tExplosions , jokes , and sexual innuendoes abound .\n4842\tMiyazaki 's nonstop images are so stunning , and his imagination so vivid , that the only possible complaint you could have about Spirited Away is that there is no rest period , no timeout .\n4843\t... a delightfully unpredictable , hilarious comedy with wonderful performances that tug at your heart in ways that utterly transcend gender labels .\n4844\tAssured , vital and well wrought , the film is , arguably , the most accomplished work to date from Hong Kong 's versatile Stanley Kwan .\n4845\tDelia , Greta , and Paula rank as three of the most multilayered and sympathetic female characters of the year .\n4846\tAs each of them searches for their place in the world , Miller digs into their very minds to find an unblinking , flawed humanity .\n4847\tA surprisingly sweet and gentle comedy .\n4848\tShanghai Ghetto , much stranger than any fiction , brings this unknown slice of history affectingly to life .\n4849\tIt 's not particularly well made , but since I found myself howling more than cringing , I 'd say the film works .\n4850\tBut this is Lohman 's film .\n4851\tHer performance moves between heartbreak and rebellion as she continually tries to accommodate to fit in and gain the unconditional love she seeks .\n4852\tThough its story is only surface deep , the visuals and enveloping sounds of Blue Crush make this surprisingly decent flick worth a summertime look-see .\n4853\tRyosuke has created a wry , winning , if languidly paced , meditation on the meaning and value of family .\n4854\tSometimes charming , sometimes infuriating , this Argentinean ` dramedy ' succeeds mainly on the shoulders of its actors .\n4855\tYou may feel compelled to watch the film twice or pick up a book on the subject .\n4856\tOften shocking but ultimately worthwhile exploration of motherhood and desperate mothers .\n4857\tA venturesome , beautifully realized psychological mood piece that reveals its first-time feature director 's understanding of the expressive power of the camera .\n4858\tLike The Rugrats movies , The Wild Thornberrys Movie does n't offer much more than the series , but its emphasis on caring for animals and respecting other cultures is particularly welcome .\n4859\tTaken outside the context of the current political climate -LRB- see : terrorists are more evil than ever ! -RRB-\n4860\t, The Sum of All Fears is simply a well-made and satisfying thriller .\n4861\tThe setting is so cool that it chills the characters , reducing our emotional stake in the outcome of `` Intacto 's '' dangerous and seductively stylish game .\n4862\tA lovely and beautifully photographed romance .\n4863\tOne of the most splendid entertainments to emerge from the French film industry in years .\n4864\tIts vision of that awkward age when sex threatens to overwhelm everything else is acute enough to make everyone who has been there squirm with recognition .\n4865\tFor almost the first two-thirds of Martin Scorsese 's 168-minute Gangs of New York , I was entranced .\n4866\tOpen-ended and composed of layer upon layer , Talk to Her is a cinephile 's feast , an invitation to countless interpretations .\n4867\tOne of the most slyly exquisite anti-adult movies ever made .\n4868\tWhat makes Esther Kahn so demanding is that it progresses in such a low-key manner that it risks monotony .\n4869\tBut it 's worth the concentration .\n4870\tNeither the funniest film that Eddie Murphy nor Robert De Niro has ever made , Showtime is nevertheless efficiently amusing for a good while .\n4871\tBefore it collapses into exactly the kind of buddy cop comedy it set out to lampoon , anyway .\n4872\tA clever script and skilled actors bring new energy to the familiar topic of office politics .\n4873\tThe determination of Pinochet 's victims to seek justice , and their often heartbreaking testimony , spoken directly into director Patricio Guzman 's camera , pack a powerful emotional wallop .\n4874\tDisney aficionados will notice distinct parallels between this story and the 1971 musical `` Bedknobs and Broomsticks , '' which also dealt with British children rediscovering the power of fantasy during wartime .\n4875\tIt 's ... worth the extra effort to see an artist , still committed to growth in his ninth decade , change while remaining true to his principles with a film whose very subject is , quite pointedly , about the peril of such efforts .\n4876\tDark and unrepentant , this excursion into the epicenter of percolating mental instability is not easily dismissed or forgotten .\n4877\tIt 's a rollicking adventure for you and all your mateys , regardless of their ages .\n4878\tBoasts a handful of virtuosic set pieces and offers a fair amount of trashy , kinky fun .\n4879\t... Myers has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs ...\n4880\tIf you 're down for a silly hack-and-slash flick , you can do no wrong with Jason X.\n4881\tThis is a very ambitious project for a fairly inexperienced filmmaker , but good actors , good poetry and good music help sustain it .\n4882\tThe modern master of the chase sequence returns with a chase to end all chases\n4883\tThe messy emotions raging throughout this three-hour effort are instantly recognizable , allowing the film to paradoxically feel familiar and foreign at the same time .\n4884\t... either you 're willing to go with this claustrophobic concept or you 're not .\n4885\tJust watch Bettany strut his stuff .\n4886\tYou 'll know a star when you see one .\n4887\tAustin Powers in Goldmember is a cinematic car wreck , a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride .\n4888\tYou can fire a torpedo through some of Clancy 's holes , and the scripters do n't deserve any Oscars .\n4889\tBut the nerve-raked acting , the crackle of lines , the impressive stagings of hardware , make for some robust and scary entertainment .\n4890\tcontrasting the original Ringu with the current Americanized adaptation is akin to comparing The Evil Dead with Evil Dead II\n4891\tA small gem of a movie that defies classification and is as thought-provoking as it is funny , scary and sad .\n4892\tFor a long time the film succeeds with its dark , delicate treatment of these characters and its unerring respect for them .\n4893\tIt 's the kind of effectively creepy-scary thriller that has you fixating on a far corner of the screen at times because your nerves just ca n't take it any more .\n4894\tLate Marriage is an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love .\n4895\tAn ambitious and moving but bleak film .\n4896\tIt 's too harsh to work as a piece of storytelling , but as an intellectual exercise -- an unpleasant debate that 's been given the drive of a narrative and that 's been acted out -- The Believer is nothing less than a provocative piece of work .\n4897\tIt 's sweet .\n4898\tIt 's funny .\n4899\tIt wears its heart on the sleeve of its gaudy Hawaiian shirt .\n4900\tAnd , thanks to the presence of ` the King , ' it also rocks .\n4901\tIt 's never laugh-out-loud funny , but it is frequently amusing .\n4902\tA bittersweet film , simple in form but rich with human events .\n4903\tThe unexplored story opportunities of `` Punch-Drunk Love '' may have worked against the maker 's minimalist intent but it is an interesting exercise by talented writer\\/director Anderson .\n4904\t`` Punch-Drunk Love '' is a little like a chocolate milk moustache ...\n4905\t... digs beyond the usual portrayals of good kids and bad seeds to reveal a more ambivalent set of characters and motivations .\n4906\tThe beauty of the piece is that it counts heart as important as humor .\n4907\tPiercingly affecting ... while clearly a manipulative film , emerges as powerful rather than cloying .\n4908\tVery amusing , not the usual route in a thriller , and the performances are odd and pixilated and sometimes both .\n4909\tWhile the frequent allusions to gurus and doshas will strike some Westerners as verging on mumbo-jumbo ... broad streaks of common sense emerge with unimpeachable clarity .\n4910\tThe cast is phenomenal , especially the women .\n4911\tA marvel of production design .\n4912\tThe byplay and bickering between the now spy-savvy siblings , Carmen -LRB- Vega -RRB- and Juni -LRB- Sabara -RRB- Cortez , anchor the film in a very real and amusing give-and-take .\n4913\tGood actors have a radar for juicy roles -- there 's a plethora of characters in this picture , and not one of them is flat .\n4914\tThough in some ways similar to Catherine Breillat 's Fat Girl , Rain is the far superior film .\n4915\tIs not so much a work of entertainment as it is a unique , well-crafted psychological study of grief .\n4916\tRemarkable for its excellent storytelling , its economical , compressed characterisations and for its profound humanity , it 's an adventure story and history lesson all in one .\n4917\tColorful , energetic and sweetly whimsical ... the rare sequel that 's better than its predecessor .\n4918\tReno himself can take credit for most of the movie 's success .\n4919\tHe 's one of the few ` cool ' actors who never seems aware of his own coolness .\n4920\tSignificantly better than its 2002 children 's - movie competition .\n4921\tUB equally spoofs and celebrates the more outre aspects of ` black culture ' and the dorkier aspects of ` white culture , ' even as it points out how inseparable the two are .\n4922\tA lot smarter than your average Bond .\n4923\t... bright , intelligent , and humanly funny film .\n4924\tPainful , horrifying and oppressively tragic , this film should not be missed .\n4925\tPart of the film 's cheeky charm comes from its vintage schmaltz .\n4926\tSo unique and stubborn and charismatic that you want it to be better and more successful than it is .\n4927\tI wo n't argue with anyone who calls ` Slackers ' dumb , insulting , or childish ... but I laughed so much that I did n't mind .\n4928\tIt arrives with an impeccable pedigree , mongrel pep , and almost indecipherable plot complications .\n4929\tSo fiendishly cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy , confused , and totally disorientated .\n4930\tNot to mention absolutely refreshed .\n4931\tA vibrant , colorful , semimusical rendition .\n4932\tThe film sometimes flags ... but there is enough secondary action to keep things moving along at a brisk , amusing pace .\n4933\tIt 's a drawling , slobbering , lovable run-on sentence of a film , a Southern Gothic with the emotional arc of its raw blues soundtrack .\n4934\tNolan proves that he can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure .\n4935\tIt is different from others in its genre in that it is does not rely on dumb gags , anatomical humor , or character cliches ; it primarily relies on character to tell its story .\n4936\tBoth a successful adaptation and an enjoyable film in its own right .\n4937\tAll the filmmakers are asking of us , is to believe in something that is improbable .\n4938\tIf the very concept makes you nervous ... you 'll have an idea of the film 's creepy , scary effectiveness .\n4939\tWorth a look by those on both sides of the issues , if only for the perspective it offers , one the public rarely sees .\n4940\tA mostly believable , refreshingly low-key and quietly inspirational little sports drama .\n4941\tMay be more genial than ingenious , but it gets the job done .\n4942\tA stylish cast and some clever scripting solutions help Chicago make the transition from stage to screen with considerable appeal intact .\n4943\tExhilarating , funny and fun .\n4944\tWhile not quite `` Shrek '' or `` Monsters , Inc. '' , it 's not too bad .\n4945\tIt 's worth taking the kids to .\n4946\tIn the end there is one word that best describes this film : honest .\n4947\tWriter-director David Jacobson and his star , Jeremy Renner , have made a remarkable film that explores the monster 's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted .\n4948\tThe action sequences are fun and reminiscent of combat scenes from the Star Wars series .\n4949\tNorton is magnetic as Graham .\n4950\tSavvy director Robert J. Siegel and his co-writers keep the story subtle and us in suspense .\n4951\tIt pulls the rug out from under you , just when you 're ready to hate one character , or really sympathize with another character , something happens to send you off in different direction .\n4952\tTwenty years after its first release , E.T. remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg 's misunderstood career .\n4953\tIt says a lot about a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense .\n4954\tGives us a lot to chew on , but not all of it has been properly digested .\n4955\tIt 's an exhilarating place to visit , this laboratory of laughter .\n4956\t`` Simone '' is a fun and funky look into an artificial creation in a world that thrives on artificiality .\n4957\tA great companion piece to other Napoleon films .\n4958\tTo some eyes this will seem like a recycling of clichÃ©s , an assassin 's greatest hits .\n4959\tTo others , it will remind them that Hong Kong action cinema is still alive and kicking .\n4960\tAt the end of the movie , my 6-year-old nephew said , `` I guess I come from a broken family , and my uncles are all aliens , too . ''\n4961\tCongrats Disney on a job well done , I enjoyed it just as much !\n4962\tA remarkably alluring film set in the constrictive Eisenhower era about one suburban woman 's yearning in the face of a loss that shatters her cheery and tranquil suburban life .\n4963\tBerling and BÃ©art ... continue to impress , and Isabelle Huppert ... again shows uncanny skill in getting under the skin of her characters .\n4964\tUplifting , funny and wise .\n4965\tRemarkable for its intelligence and intensity .\n4966\tThe hypnotic imagery and fragmentary tale explore the connections between place and personal identity .\n4967\tBrosnan is more feral in this film than I 've seen him before and Halle Berry does her best to keep up with him .\n4968\tA film that begins with the everyday lives of naval personnel in San Diego and ends with scenes so true and heartbreaking that tears welled up in my eyes both times I saw the film .\n4969\t`` On Guard ! ''\n4970\two n't be placed in the pantheon of the best of the swashbucklers but it is a whole lot of fun and you get to see the one of the world 's best actors , Daniel Auteuil , have a whale of a good time .\n4971\tThe movie starts with a legend and ends with a story that is so far-fetched it would be impossible to believe if it were n't true .\n4972\tThis is the stuff that Disney movies are made of .\n4973\tLike all great films about a life you never knew existed , it offers much to absorb and even more to think about after the final frame .\n4974\tThat the e-graveyard holds as many good ideas as bad is the cold comfort that Chin 's film serves up with style and empathy .\n4975\tWhile we no longer possess the lack-of-attention span that we did at seventeen , we had no trouble sitting for Blade II .\n4976\tlike a poor man 's You Can Count On Me\n4977\t... a solid , unassuming drama .\n4978\tA seriocomic debut of extravagant promise by Georgian-Israeli director Dover Kosashvili .\n4979\tThanks to Ice Cube , Benjamins feels an awful lot like Friday in Miami .\n4980\tThe real star of this movie is the score , as in the songs translate well to film , and it 's really well directed .\n4981\tIt 's rare to find a film to which the adjective ` gentle ' applies , but the word perfectly describes Pauline & Paulette .\n4982\tMy Wife is an Actress has its moments in looking at the comic effects of jealousy .\n4983\tIn the end , though , it is only mildly amusing when it could have been so much more .\n4984\tBoth Garcia and Jagger turn in perfectly executed and wonderfully sympathetic characters , who are alternately touching and funny .\n4985\tHumorous , artsy , and even cute , in an off-kilter , dark , vaguely disturbing way .\n4986\tThe more you think about the movie , the more you will probably like it .\n4987\t... a powerful sequel and one of the best films of the year .\n4988\tFor the most part , the film does hold up pretty well .\n4989\tTogether -LRB- Time Out and Human Resources -RRB- establish Mr. Cantet as France 's foremost cinematic poet of the workplace .\n4990\tYou can take the grandkids or the grandparents and never worry about anyone being bored ... audience is a sea of constant smiles and frequent laughter .\n4991\tLike these Russo guys lookin ' for their Mamet instead found their Sturges .\n4992\tThere has been a string of ensemble cast romances recently ... but Peter Mattei 's Love in the Time of Money sets itself apart by forming a chain of relationships that come full circle to end on a positive -LRB- if tragic -RRB- note .\n4993\tBy applying definition to both sides of the man , the picture realizes a fullness that does not negate the subject .\n4994\tWho is the audience for Cletis Tout ?\n4995\tAnybody who enjoys quirky , fun , popcorn movies with a touch of silliness and a little bloodshed .\n4996\t-LRB- CuarÃ³n has -RRB- created a substantive movie out of several cliched movie structures : the road movie , the coming-of-age movie , and the teenage sex comedy .\n4997\tPuts to rest any thought that the German film industry can not make a delightful comedy centering on food .\n4998\tWitty dialog between realistic characters showing honest emotions .\n4999\tIt 's touching and tender and proves that even in sorrow you can find humor .\n5000\tLike blended shades of lipstick , these components combine into one terrific story with lots of laughs .\n5001\tAsh Wednesday is not Edward Burns ' best film , but it is a good and ambitious film .\n5002\tAnd it marks him as one of the most interesting writer\\/directors working today .\n5003\tAfter one gets the feeling that the typical Hollywood disregard for historical truth and realism is at work here , it 's a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen .\n5004\tThe footage of the rappers at play and the prison interview with Suge Knight are just two of the elements that will grab you .\n5005\t... it 's as comprehensible as any Dummies guide , something even non-techies can enjoy .\n5006\tDo n't wait to see this terrific film with your kids -- if you do n't have kids borrow some .\n5007\tMoretti ... is the rare common-man artist who 's wise enough to recognize that there are few things in this world more complex -- and , as it turns out , more fragile -- than happiness .\n5008\tThe movie 's captivating details are all in the performances , from Foreman 's barking-mad Taylor to Thewlis 's smoothly sinister Freddie and Bettany\\/McDowell 's hard-eyed gangster .\n5009\tFeatures Fincher 's characteristically startling visual style and an almost palpable sense of intensity .\n5010\tPrecocious smarter-than-thou wayward teen struggles to rebel against his oppressive , right-wing , propriety-obsessed family .\n5011\tAnyone else seen this before ?\n5012\tMoore provides an invaluable service by sparking debate and encouraging thought .\n5013\tBetter still , he does all of this , and more , while remaining one of the most savagely hilarious social critics this side of Jonathan Swift .\n5014\tAlternating between facetious comic parody and pulp melodrama , this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life .\n5015\tA cutesy romantic tale with a twist .\n5016\tThis is a gorgeous film - vivid with color , music and life .\n5017\tDelight your senses and crash this wedding !\n5018\tA brutally dry satire of Middle American numbness .\n5019\tMore sophisticated and literate than such pictures usually are ... an amusing little catch .\n5020\tSmith examines the intimate , unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country .\n5021\tWith an admirably dark first script by Brent Hanley , Paxton , making his directorial feature debut , does strong , measured work .\n5022\tA compelling French psychological drama examining the encounter of an aloof father and his chilly son after 20 years apart .\n5023\t... even if you 've never heard of Chaplin , you 'll still be glued to the screen .\n5024\tYou have enough finely tuned acting to compensate for the movie 's failings .\n5025\tAs the dominant Christine , Sylvie Testud is icily brilliant .\n5026\tAlthough tender and touching , the movie would have benefited from a little more dramatic tension and some more editing .\n5027\tThe story that emerges has elements of romance , tragedy and even silent-movie comedy .\n5028\t-LRB- `` Safe Conduct '' -RRB- is a long movie at 163 minutes but it fills the time with drama , romance , tragedy , bravery , political intrigue , partisans and sabotage .\n5029\tViva le Resistance !\n5030\tIt offers a glimpse of the Solomonic decision facing Jewish parents in those turbulent times : to save their children and yet to lose them .\n5031\tThe film is delicately narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann .\n5032\tMartyr gets royally screwed and comes back for more .\n5033\tA virtual roller-coaster ride of glamour and sleaze .\n5034\tan admirable , sometimes exceptional film\n5035\tIf you like an extreme action-packed film with a hint of humor , then Triple X marks the spot .\n5036\tIf you 're the kind of parent who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix , I have just one word for you - -- Decasia\n5037\tMay not be a breakthrough in filmmaking , but it is unwavering and arresting .\n5038\tThe film 's images give a backbone to the company and provide an emotional edge to its ultimate demise .\n5039\tA bodice-ripper for intellectuals .\n5040\tThe locations go from stark desert to gorgeous beaches .\n5041\tThe story plays out slowly , but the characters are intriguing and realistic .\n5042\tCount on his movie to work at the back of your neck long after you leave the theater .\n5043\tNeil Burger here succeeded in ... making the mystery of four decades back the springboard for a more immediate mystery in the present .\n5044\tThe complex , politically charged tapestry of contemporary Chinese life this exciting new filmmaker has brought to the screen is like nothing we Westerners have seen before .\n5045\tA thriller made from a completist 's checklist rather than with a cultist 's passion .\n5046\tTry as you might to scrutinize the ethics of Kaufman 's approach , somehow it all comes together to create a very compelling , sensitive , intelligent and almost cohesive piece of film entertainment .\n5047\tAs quiet , patient and tenacious as Mr. Lopez himself , who approaches his difficult , endless work with remarkable serenity and discipline .\n5048\tThough the film never veers from its comic course , its unintentional parallels might inadvertently evoke memories and emotions which are anything but humorous .\n5049\tEvokes the style and flash of the double-cross that made Mamet 's `` House of Games '' and last fall 's `` Heist '' so much fun .\n5050\tSo original in its base concept that you can not help but get caught up .\n5051\tIt may be a no-brainer , but at least it 's a funny no-brainer .\n5052\tA lot more dimensional and complex than its sunny disposition would lead you to believe .\n5053\tJeffs has created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness .\n5054\tUnderachieves only in not taking the Shakespeare parallels quite far enough .\n5055\tThe most audacious , outrageous , sexually explicit , psychologically probing , pure libido film of the year has arrived from Portugal .\n5056\tThe creative animation work may not look as fully ` rendered ' as Pixar 's industry standard , but it uses lighting effects and innovative backgrounds to an equally impressive degree .\n5057\tArt-house to the core , Read My Lips is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema .\n5058\tGrant is certainly amusing , but the very hollowness of the character he plays keeps him at arms length\n5059\tConceptually brilliant ... Plays like a living-room War Of The Worlds , gaining most of its unsettling force from the suggested and the unknown .\n5060\t... manages to deliver a fair bit of vampire fun .\n5061\tDrama of temptation , salvation and good intentions is a thoughtful examination of faith , love and power .\n5062\tThe strength of the film comes not from any cinematic razzle-dazzle but from its recovery of an historical episode that , in the simple telling , proves simultaneously harrowing and uplifting .\n5063\tThe performances are strong , though the subject matter demands acting that borders on hammy at times .\n5064\tA damn fine and a truly distinctive and a deeply pertinent film .\n5065\tStill rapturous after all these years , Cinema Paradiso stands as one of the great films about movie love .\n5066\tReggio and Glass put on an intoxicating show .\n5067\tMacDowell ... gives give a solid , anguished performance that eclipses nearly everything else she 's ever done .\n5068\tThe thing about guys like Evans is this : You 're never quite sure where self-promotion ends and the truth begins .\n5069\tBut as you watch the movie , you 're too interested to care .\n5070\tI liked a lot of the smaller scenes .\n5071\tThe film will appeal to Discovery Channel fans and will surely widen the perspective of those of us who see the continent through rose-colored glasses .\n5072\tAn eye-boggling blend of psychedelic devices , special effects and backgrounds , ` Spy Kids 2 ' is a visual treat for all audiences .\n5073\tStraightforward and old-fashioned in the best possible senses of both those words , Possession is a movie that puts itself squarely in the service of the lovers who inhabit it .\n5074\tIt may ... work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns .\n5075\tOne of those movies that catches you up in something bigger than yourself , namely , an archetypal desire to enjoy good trash every now and then .\n5076\tThis harrowing journey into combat hell vividly captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked .\n5077\tFar more successful , if considerably less ambitious , than last year 's Kubrick-meets-Spielberg exercise .\n5078\tElling builds gradually until you feel fully embraced by this gentle comedy .\n5079\tA fascinating examination of the joyous , turbulent self-discovery made by a proper , middle-aged woman .\n5080\tHere is a VH1 Behind the Music special that has something a little more special behind it : music that did n't sell many records but helped change a nation .\n5081\tBuy popcorn .\n5082\tTake nothing seriously and enjoy the ride .\n5083\tCarrying off a spot-on Scottish burr , Duvall -LRB- also a producer -RRB- peels layers from this character that may well not have existed on paper .\n5084\tThe acting , for the most part , is terrific , although the actors must struggle with the fact that they 're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans .\n5085\tSome Body will take you places you have n't been , and also places you have .\n5086\tVeretÃ© has a whip-smart sense of narrative bluffs .\n5087\tParts of the film feel a bit too much like an infomercial for Ram Dass 's latest book aimed at the boomer demographic .\n5088\tBut mostly it 's a work that , with humor , warmth , and intelligence , captures a life interestingly lived .\n5089\tWere it not for a sentimental resolution that explains way more about Cal than does the movie or the character any good , Freundlich 's World Traveler might have been one of the more daring and surprising American movies of the year .\n5090\t`` Home Movie '' is the film equivalent of a lovingly rendered coffee table book .\n5091\tGraphic sex may be what 's attracting audiences to Unfaithful , but gripping performances by Lane and Gere are what will keep them awake .\n5092\tWhen compared to the usual , more somber festival entries , Davis ' highly personal brand of romantic comedy is a tart , smart breath of fresh air that stands out from the pack even if the picture itself is somewhat problematic .\n5093\tBoth damning and damned compelling .\n5094\tMuch has been written about those years when the psychedelic '60s grooved over into the gay '70s , but words do n't really do the era justice .\n5095\tYou have to see it .\n5096\tEven if it pushes its agenda too forcefully , this remains a film about something , one that attempts and often achieves a level of connection and concern .\n5097\tWhat lifts the film high above run-of-the-filth gangster flicks is its refusal to recognise any of the signposts , as if discovering a way through to the bitter end without a map .\n5098\tBoth an admirable reconstruction of terrible events , and a fitting memorial to the dead of that day , and of the thousands thereafter .\n5099\tA sly dissection of the inanities of the contemporary music business and a rather sad story of the difficulties of artistic collaboration .\n5100\tThe unique niche of self-critical , behind-the-scenes navel-gazing Kaufman has carved from Orleans ' story and his own infinite insecurity is a work of outstanding originality .\n5101\tLovingly photographed in the manner of a Golden Book sprung to life , Stuart Little 2 manages sweetness largely without stickiness .\n5102\tConsistently clever and suspenseful .\n5103\tIt 's like a `` Big Chill '' reunion of the Baader-Meinhof Gang , only these guys are more harmless pranksters than political activists .\n5104\tThe story gives ample opportunity for large-scale action and suspense , which director Shekhar Kapur supplies with tremendous skill .\n5105\tFresnadillo has something serious to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense .\n5106\tThrows in enough clever and unexpected twists to make the formula feel fresh .\n5107\tWeighty and ponderous but every bit as filling as the treat of the title .\n5108\tA real audience-pleaser that will strike a chord with anyone who 's ever waited in a doctor 's office , emergency room , hospital bed or insurance company office .\n5109\tGenerates an enormous feeling of empathy for its characters .\n5110\tExposing the ways we fool ourselves is One Hour Photo 's real strength .\n5111\tIt 's up to you to decide whether to admire these people 's dedication to their cause or be repelled by their dogmatism , manipulativeness and narrow , fearful view of American life .\n5112\tMostly , -LRB- Goldbacher -RRB- just lets her complicated characters be unruly , confusing and , through it all , human .\n5113\t... quite good at providing some good old fashioned spooks .\n5114\tAt its worst , the movie is pretty diverting ; the pity is that it rarely achieves its best .\n5115\tScherfig 's light-hearted profile of emotional desperation is achingly honest and delightfully cheeky .\n5116\tA journey spanning nearly three decades of bittersweet camaraderie and history , in which we feel that we truly know what makes Holly and Marina tick , and our hearts go out to them as both continue to negotiate their imperfect , love-hate relationship .\n5117\tThe wonderfully lush Morvern Callar is pure punk existentialism , and Ms. Ramsay and her co-writer , Liana Dognini , have dramatized the Alan Warner novel , which itself felt like an answer to Irvine Welsh 's book Trainspotting .\n5118\tAs it turns out , you can go home again .\n5119\tYou 've already seen City by the Sea under a variety of titles , but it 's worth yet another visit .\n5120\tThis kind of hands-on storytelling is ultimately what makes Shanghai Ghetto move beyond a good , dry , reliable textbook and what allows it to rank with its worthy predecessors .\n5121\tMaking such a tragedy the backdrop to a love story risks trivializing it , though Chouraqui no doubt intended the film to affirm love 's power to help people endure almost unimaginable horror .\n5122\tGrown-up quibbles are beside the point here .\n5123\tThe little girls understand , and McCracken knows that 's all that matters .\n5124\tA powerful , chilling , and affecting study of one man 's dying fall .\n5125\tThis is a fascinating film because there is no clear-cut hero and no all-out villain .\n5126\tA dreadful day in Irish history is given passionate , if somewhat flawed , treatment .\n5127\t... a good film that must have baffled the folks in the marketing department .\n5128\t... is funny in the way that makes you ache with sadness -LRB- the way Chekhov is funny -RRB- , profound without ever being self-important , warm without ever succumbing to sentimentality .\n5129\tDevotees of Star Trek II : The Wrath of Khan will feel a nagging sense of deja vu , and the grandeur of the best Next Generation episodes is lacking .\n5130\tA soul-stirring documentary about the Israeli\\/Palestinian conflict as revealed through the eyes of some children who remain curious about each other against all odds .\n5131\tWhat 's so striking about Jolie 's performance is that she never lets her character become a caricature -- not even with that radioactive hair .\n5132\tThe main story ... is compelling enough , but it 's difficult to shrug off the annoyance of that chatty fish .\n5133\tThe performances are immaculate , with Roussillon providing comic relief .\n5134\tKinnear ... gives his best screen performance with an oddly winning portrayal of one of life 's ultimate losers .\n5135\tHugh Grant , who has a good line in charm , has never been more charming than in About a Boy .\n5136\tThere 's a lot of tooth in Roger Dodger .\n5137\tBut what 's nice is that there 's a casual intelligence that permeates the script .\n5138\tReminiscent of Alfred Hitchcock 's thrillers , most of the scary parts in ` Signs ' occur while waiting for things to happen .\n5139\tOne of the best looking and stylish animated movies in quite a while ...\n5140\tIts use of the thriller form to examine the labyrinthine ways in which people 's lives cross and change , buffeted by events seemingly out of their control , is intriguing , provocative stuff .\n5141\tDenver should not get the first and last look at one of the most triumphant performances of Vanessa Redgrave 's career .\n5142\tIt deserves to be seen everywhere .\n5143\tYou need n't be steeped in '50s sociology , pop culture or movie lore to appreciate the emotional depth of Haynes ' work .\n5144\tThough Haynes ' style apes films from the period ... its message is not rooted in that decade .\n5145\tWaiting for Godard can be fruitful : ` In Praise of Love ' is the director 's epitaph for himself .\n5146\tA gangster movie with the capacity to surprise .\n5147\tThe film has a laundry list of minor shortcomings , but the numerous scenes of gory mayhem are worth the price of admission ... if `` gory mayhem '' is your idea of a good time .\n5148\tIf not a home run , then at least a solid base hit .\n5149\tGoldmember is funny enough to justify the embarrassment of bringing a barf bag to the moviehouse .\n5150\t... a fairly disposable yet still entertaining B picture .\n5151\tIt may not be particularly innovative , but the film 's crisp , unaffected style and air of gentle longing make it unexpectedly rewarding .\n5152\tThe film truly does rescue -LRB- the Funk Brothers -RRB- from Motown 's shadows .\n5153\tIt 's about time .\n5154\tDrawing on an irresistible , languid romanticism , Byler reveals the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth .\n5155\tWorks because we 're never sure if Ohlinger 's on the level or merely a dying , delusional man trying to get into the history books before he croaks .\n5156\t-LRB- Scherfig -RRB- has made a movie that will leave you wondering about the characters ' lives after the clever credits roll .\n5157\tA heady , biting , be-bop ride through nighttime Manhattan , a loquacious videologue of the modern male and the lengths to which he 'll go to weave a protective cocoon around his own ego .\n5158\tSkin Of Man gets a few cheap shocks from its kids-in-peril theatrics , but it also taps into the primal fears of young people trying to cope with the mysterious and brutal nature of adults .\n5159\tThe Piano Teacher is not an easy film .\n5160\tIt forces you to watch people doing unpleasant things to each other and themselves , and it maintains a cool distance from its material that is deliberately unsettling .\n5161\tAs refreshing as a drink from a woodland stream .\n5162\tWilliams absolutely nails Sy 's queasy infatuation and overall strangeness .\n5163\tCan I admit XXX is as deep as a Petri dish and as well-characterized as a telephone book but still say it was a guilty pleasure ?\n5164\tWhile it 's nothing we have n't seen before from Murphy , I Spy is still fun and enjoyable and so aggressively silly that it 's more than a worthwhile effort .\n5165\tBy the time it ends in a rush of sequins , flashbulbs , blaring brass and back-stabbing babes , it has said plenty about how show business has infiltrated every corner of society -- and not always for the better .\n5166\tAn intimate contemplation of two marvelously messy lives .\n5167\tRarely has skin looked as beautiful , desirable , even delectable , as it does in Trouble Every Day .\n5168\tThis is one of those rare docs that paints a grand picture of an era and makes the journey feel like a party .\n5169\tPoignant if familiar story of a young person suspended between two cultures .\n5170\tA metaphor for a modern-day urban China searching for its identity .\n5171\tFor all its brooding quality , Ash Wednesday is suspenseful and ultimately unpredictable , with a sterling ensemble cast .\n5172\tAn odd drama set in the world of lingerie models and bar dancers in the Midwest that held my interest precisely because it did n't try to .\n5173\tThe film feels uncomfortably real , its language and locations bearing the unmistakable stamp of authority .\n5174\tDespite its faults , Gangs excels in spectacle and pacing .\n5175\tEntertaining despite its one-joke premise with the thesis that women from Venus and men from Mars can indeed get together .\n5176\tA tightly directed , highly professional film that 's old-fashioned in all the best possible ways .\n5177\tIt 's dark but has wonderfully funny moments ; you care about the characters ; and the action and special effects are first-rate .\n5178\tIn visual fertility Treasure Planet rivals the top Japanese animations of recent vintage .\n5179\tEnormously enjoyable , high-adrenaline documentary .\n5180\tBuy is an accomplished actress , and this is a big , juicy role .\n5181\tIt works its magic with such exuberance and passion that the film 's length becomes a part of its fun .\n5182\tBeautifully crafted and brutally honest , Promises offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people .\n5183\tAn old-fashioned but emotionally stirring adventure tale of the kind they rarely make anymore .\n5184\tCharlotte Sometimes is a gem .\n5185\tIt 's always enthralling .\n5186\tIn my opinion , Analyze That is not as funny or entertaining as Analyze This , but it is a respectable sequel .\n5187\tA remarkable film by Bernard Rose .\n5188\tZhuangzhuang creates delicate balance of style , text , and subtext that 's so simple and precise that anything discordant would topple the balance , but against all odds , nothing does .\n5189\tA much more successful translation than its most famous previous film adaptation , writer-director Anthony Friedman 's similarly updated 1970 British production .\n5190\tan original and highly cerebral examination of the psychopathic mind\n5191\tMichel Piccoli 's moving performance is this films reason for being .\n5192\tA captivating and intimate study about dying and loving ...\n5193\tThis is an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- that does n't reveal even a hint of artifice .\n5194\t-LRB- Grant -RRB- goes beyond his usual fluttering and stammering and captures the soul of a man in pain who gradually comes to recognize it and deal with it .\n5195\tA high-spirited buddy movie about the reunion of Berlin anarchists who face arrest 15 years after their crime .\n5196\tAbout the best thing you could say about Narc is that it 's a rock-solid little genre picture .\n5197\tWhether you like it or not is basically a matter of taste .\n5198\tAn involving , inspirational drama that sometimes falls prey to its sob-story trappings .\n5199\tSome of the most inventive silliness you are likely to witness in a movie theatre for some time .\n5200\tCanadian filmmaker Gary Burns ' inventive and mordantly humorous take on the soullessness of work in the city .\n5201\tA rollicking ride , with jaw-dropping action sequences , striking villains , a gorgeous color palette , astounding technology , stirring music and a boffo last hour that leads up to a strangely sinister happy ending .\n5202\tEveryone 's insecure in Lovely and Amazing , a poignant and wryly amusing film about mothers , daughters and their relationships .\n5203\tThe closest thing to the experience of space travel\n5204\tConnoisseurs of Chinese film will be pleased to discover that Tian 's meticulous talent has not withered during his enforced hiatus .\n5205\tIf you can push on through the slow spots , you 'll be rewarded with some fine acting .\n5206\tAn unusually dry-eyed , even analytical approach to material that is generally played for maximum moisture .\n5207\tSymbolically , Warm Water Under a Red Bridge is a celebration of feminine energy , a tribute to the power of women to heal .\n5208\tSpy Kids 2 also happens to be that rarity among sequels : It actually improves upon the original hit movie .\n5209\tExceptionally well acted by Diane Lane and Richard Gere .\n5210\tLike a precious and finely cut diamond , magnificent to behold in its sparkling beauty yet in reality it 's one tough rock .\n5211\tIn addition to scoring high for originality of plot -- putting together familiar themes of family , forgiveness and love in a new way -- Lilo & Stitch has a number of other assets to commend it to movie audiences both innocent and jaded .\n5212\tMiller has crafted an intriguing story of maternal instincts and misguided acts of affection .\n5213\tOne of the most exciting action films to come out of China in recent years .\n5214\tThis is a nervy , risky film , and Villeneuve has inspired Croze to give herself over completely to the tormented persona of Bibi .\n5215\tMY LITTLE EYE is the best little `` horror '' movie I 've seen in years .\n5216\tTunney , brimming with coltish , neurotic energy , holds the screen like a true star .\n5217\tEven if the Naipaul original remains the real masterpiece , the movie possesses its own languorous charm .\n5218\t-LRB- The film -RRB- tackles the topic of relationships in such a straightforward , emotionally honest manner that by the end , it 's impossible to ascertain whether the film is , at its core , deeply pessimistic or quietly hopeful .\n5219\tSometimes we feel as if the film careens from one colorful event to another without respite , but sometimes it must have seemed to Frida Kahlo as if her life did , too .\n5220\tThe strength of the film lies in its two central performances by Sven Wollter as the stricken composer and Viveka Seldahl as his desperate violinist wife .\n5221\tLike the series , the movie is funny , smart , visually inventive , and most of all , alive .\n5222\tIt was filled with shootings , beatings , and more cussing than you could shake a stick at .\n5223\tYou do n't know whether to admire the film 's stately nature and call it classicism or be exasperated by a noticeable lack of pace .\n5224\tOr both .\n5225\tSure , I hated myself in the morning .\n5226\tBut then again , I hate myself most mornings .\n5227\tI still like Moonlight Mile , better judgment be damned .\n5228\tTime Out is as serious as a pink slip .\n5229\tAnd more than that , it 's an observant , unfussily poetic meditation about identity and alienation .\n5230\tWill assuredly rank as one of the cleverest , most deceptively amusing comedies of the year .\n5231\tMaryam is a small film , but it offers large rewards .\n5232\tA highly watchable , giggly little story with a sweet edge to it .\n5233\tThe most consistently funny of the Austin Powers films .\n5234\tAna 's journey is not a stereotypical one of self-discovery , as she 's already comfortable enough in her own skin to be proud of her Rubenesque physique ...\n5235\tCockettes has the glorious , gaudy benefit of much stock footage of Those Days , featuring all manner of drag queen , bearded lady and lactating hippie .\n5236\tThere 's something poignant about an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us .\n5237\tThe comedy makes social commentary more palatable .\n5238\tAn ideal love story for those intolerant of the more common saccharine genre .\n5239\tOne funny popcorn flick .\n5240\tThis New Zealand coming-of-age movie is n't really about anything .\n5241\tWhen it 's this rich and luscious , who cares ?\n5242\tTully is worth a look for its true-to-life characters , its sensitive acting , its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham .\n5243\tThis gorgeous epic is guaranteed to lift the spirits of the whole family .\n5244\tThe Wild Thornberrys Movie is pleasant enough and the message of our close ties with animals can certainly not be emphasized enough .\n5245\tWilliams creates a stunning , Taxi Driver-esque portrayal of a man teetering on the edge of sanity .\n5246\tIf you 're in the right B-movie frame of mind , it may just scare the pants off you .\n5247\tA movie of riveting power and sadness .\n5248\tBoth a detective story and a romance spiced with the intrigue of academic skullduggery and politics .\n5249\tLudicrous , but director Carl Franklin adds enough flourishes and freak-outs to make it entertaining .\n5250\tDirector Roger Kumble offers just enough sweet and traditional romantic comedy to counter the crudity .\n5251\tAnd there 's the inimitable Diaz , holding it all together .\n5252\tSpielberg 's picture is smarter and subtler than -LRB- Total Recall and Blade Runner -RRB- , although its plot may prove too convoluted for fun-seeking summer audiences .\n5253\tIt 's got all the familiar Bruckheimer elements , and Schumacher does probably as good a job as anyone at bringing off the Hopkins\\/Rock collision of acting styles and onscreen personas .\n5254\tA grittily beautiful film that looks , sounds , and feels more like an extended , open-ended poem than a traditionally structured story .\n5255\tThe production values are of the highest and the performances attractive without being memorable .\n5256\tA well-rounded tribute to a man whose achievements -- and complexities -- reached far beyond the end zone .\n5257\tfinely crafted , finely written , exquisitely performed\n5258\tRamsay and Morton fill this character study with poetic force and buoyant feeling .\n5259\tThis submarine drama earns the right to be favorably compared to Das Boot .\n5260\tClaude Chabrol 's camera has a way of gently swaying back and forth as it cradles its characters , veiling tension beneath otherwise tender movements .\n5261\tThere 's a great deal of corny dialogue and preposterous moments .\n5262\tAnd yet , it still works .\n5263\tThe film was immensely enjoyable thanks to great performances by both Steve Buscemi and Rosario Dawson ...\n5264\tLike many Western action films , this thriller is too loud and thoroughly overbearing , but its heartfelt concern about North Korea 's recent past and South Korea 's future adds a much needed moral weight .\n5265\tSpecial P.O.V. camera mounts on bikes , skateboards , and motorcycles provide an intense experience when splashed across the immense IMAX screen .\n5266\tMike White 's deft combination of serious subject matter and dark , funny humor make `` The Good Girl '' a film worth watching .\n5267\tThis is a shrewd and effective film from a director who understands how to create and sustain a mood .\n5268\tMeant to reduce Blake 's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane 's superhero dystopia .\n5269\tAssayas ' ambitious , sometimes beautiful adaptation of Jacques Chardonne 's novel .\n5270\tAs ex-Marine Walter , who may or may not have shot Kennedy , actor Raymond J. Barry is perfectly creepy and believable .\n5271\tThose who do n't entirely ` get ' Godard 's distinctive discourse will still come away with a sense of his reserved but existential poignancy .\n5272\tPete 's screenplay manages to find that real natural , even-flowing tone that few movies are able to accomplish .\n5273\tLike Brosnan 's performance , Evelyn comes from the heart .\n5274\tIt uses some of the figures from the real-life story to portray themselves in the film .\n5275\tThe result is a powerful , naturally dramatic piece of low-budget filmmaking .\n5276\tIts spirit of iconoclastic abandon -- however canned -- makes for unexpectedly giddy viewing .\n5277\tThe early and middle passages are surprising in how much they engage and even touch us .\n5278\tThis is not a classical dramatic animated feature , nor a hip , contemporary , in-jokey one .\n5279\tIt 's sort of in-between , and it works .\n5280\tThis quiet , introspective and entertaining independent is worth seeking .\n5281\tWhether our action-and-popcorn obsessed culture will embrace this engaging and literate psychodrama is n't much of a mystery , unfortunately .\n5282\tWhether or not Ram Dass proves as clear and reliable an authority on that as he was about inner consciousness , Fierce Grace reassures us that he will once again be an honest and loving one .\n5283\tSly , sophisticated and surprising .\n5284\tSpare but quietly effective retelling .\n5285\tDemonstrates a vivid imagination and an impressive style that result in some terrific setpieces .\n5286\tBy its modest , straight-ahead standards , Undisputed scores a direct hit .\n5287\tIts story about a young Chinese woman , Ah Na , who has come to New York City to replace past tragedy with the American Dream is one that any art-house moviegoer is likely to find compelling .\n5288\tFor those who like quirky , slightly strange French films , this is a must !\n5289\tThere are so few films about the plight of American Indians in modern America that Skins comes as a welcome , if downbeat , missive from a forgotten front .\n5290\t-LRB- Shyamalan -RRB- continues to cut a swathe through mainstream Hollywood , while retaining an integrity and refusing to compromise his vision .\n5291\tA whale of a good time for both children and parents seeking Christian-themed fun .\n5292\tWhat begins as a film in the tradition of The Graduate quickly switches into something more recyclable than significant .\n5293\tMuch smarter and more attentive than it first sets out to be .\n5294\tThe story is smart and entirely charming in intent and execution .\n5295\tA movie of technical skill and rare depth of intellect and feeling .\n5296\tRepresents a worthy departure from the culture clash comedies that have marked an emerging Indian American cinema .\n5297\tDoes n't do more than expand a TV show to movie length .\n5298\tHowever , it 's pleasant enough and its ecological , pro-wildlife sentiments are certainly welcome .\n5299\tIf you 're looking for an intelligent movie in which you can release your pent up anger , ENOUGH is just the ticket you need .\n5300\tA pointed , often tender , examination of the pros and cons of unconditional love and familial duties .\n5301\tAs well-acted and well-intentioned as All or Nothing is , however , the film comes perilously close to being too bleak , too pessimistic and too unflinching for its own good .\n5302\tA comedy-drama of nearly epic proportions rooted in a sincere performance by the title character undergoing midlife crisis .\n5303\tIt 's about issues most adults have to face in marriage and I think that 's what I liked about it -- the real issues tucked between the silly and crude storyline .\n5304\tElegantly produced and expressively performed , the six musical numbers crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy .\n5305\tEnriched by a strong and unforced supporting cast .\n5306\tWriter \\/ director M. Night Shyamalan 's ability to pull together easily accessible stories that resonate with profundity is undeniable .\n5307\tIf you can keep your eyes open amid all the blood and gore , you 'll see Del Toro has brought unexpected gravity to Blade II .\n5308\tNot a strike against Yang 's similarly themed Yi Yi , but I found What Time ?\n5309\tto be more engaging on an emotional level , funnier , and on the whole less detached .\n5310\tA breathtaking adventure for all ages , Spirit tells its poignant and uplifting story in a stunning fusion of music and images .\n5311\tA charming and funny story of clashing cultures and a clashing mother\\/daughter relationship .\n5312\tNever lets go your emotions , taking them to surprising highs , sorrowful lows and hidden impulsive niches ... gorgeous , passionate , and at times uncommonly moving .\n5313\t`` ... something appears to have been lost in the translation this time .\n5314\tThe Importance of Being Earnest movie seems to be missing a great deal of the acerbic repartee of the play . ''\n5315\t-LRB- Washington 's -RRB- strong hand , keen eye , sweet spirit and good taste are reflected in almost every scene .\n5316\tShiner can certainly go the distance , but is n't world championship material\n5317\tThe film 's desire to be liked sometimes undermines the possibility for an exploration of the thornier aspects of the nature\\/nurture argument in regards to homosexuality .\n5318\t... a quietly introspective portrait of the self-esteem of employment and the shame of losing a job ...\n5319\tAffable if not timeless , Like Mike raises some worthwhile themes while delivering a wholesome fantasy for kids .\n5320\tA film of delicate interpersonal dances .\n5321\tCaine makes us watch as his character awakens to the notion that to be human is eventually to have to choose .\n5322\tIt 's a sight to behold .\n5323\tIt 's an unusual , thoughtful bio-drama with a rich subject and some fantastic moments and scenes .\n5324\tSaved from being merely way-cool by a basic , credible compassion .\n5325\tThe increasingly diverse French director has created a film that one can honestly describe as looking , sounding and simply feeling like no other film in recent history .\n5326\tGangs , despite the gravity of its subject matter , is often as fun to watch as a good spaghetti western .\n5327\tPeter Jackson has done the nearly impossible .\n5328\tHe has improved upon the first and taken it a step further , richer and deeper .\n5329\tWhat Jackson has done is proven that no amount of imagination , no creature , no fantasy story and no incredibly outlandish scenery\n5330\tThere has to be a few advantages to never growing old .\n5331\tLike being able to hit on a 15-year old when you 're over 100 .\n5332\tIce Age wo n't drop your jaw , but it will warm your heart , and I 'm giving it a strong thumbs up .\n5333\tLike Kissing Jessica Stein , Amy 's Orgasm has a key strength in its willingness to explore its principal characters with honesty , insight and humor .\n5334\tThe Lady and the Duke is Eric Rohmer 's economical antidote to the bloated costume drama\n5335\tOne of the year 's best films , featuring an Oscar-worthy performance by Julianne Moore .\n5336\tA small gem from Belgium .\n5337\tCombines a comically dismal social realism with a farcically bawdy fantasy of redemption and regeneration .\n5338\tA soap-opera quality twist in the last 20 minutes ... almost puts the kibosh on what is otherwise a sumptuous work of B-movie imagination .\n5339\tThe most ingenious film comedy since Being John Malkovich .\n5340\tThere 's something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers .\n5341\tA movie where story is almost an afterthought amidst a swirl of colors and inexplicable events .\n5342\tManages to accomplish what few sequels can -- it equals the original and in some ways even betters it .\n5343\tTo call this one an eventual cult classic would be an understatement , and woe is the horror fan who opts to overlook this goofily endearing and well-lensed gorefest .\n5344\tJolie gives it that extra little something that makes it worth checking out at theaters , especially if you 're in the mood for something more comfortable than challenging .\n5345\tAlthough melodramatic and predictable , this romantic comedy explores the friendship between five Filipino-Americans and their frantic efforts to find love .\n5346\tI have a new favorite musical -- and I 'm not even a fan of the genre\n5347\tIt 's unlikely we 'll see a better thriller this year .\n5348\tThere is a real subject here , and it is handled with intelligence and care .\n5349\tJason Patric and Ray Liotta make for one splendidly cast pair .\n5350\tNoyce creates a film of near-hypnotic physical beauty even as he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism .\n5351\tStarts slowly , but Adrien Brody -- in the title role -- helps make the film 's conclusion powerful and satisfying .\n5352\tVery predictable but still entertaining\n5353\tNothing short of a masterpiece -- and a challenging one .\n5354\tPratfalls aside , Barbershop gets its greatest play from the timeless spectacle of people really talking to each other .\n5355\tThis amiable picture talks tough , but it 's all bluster -- in the end it 's as sweet as Greenfingers ...\n5356\tThis is one of Mr. Chabrol 's subtlest works , but also one of his most uncanny .\n5357\tAn engrossing Iranian film about two itinerant teachers and some lost and desolate people they encounter in a place where war has savaged the lives and liberties of the poor and the dispossessed .\n5358\tEven though we know the outcome , the seesawing of the general 's fate in the arguments of competing lawyers has the stomach-knotting suspense of a legal thriller , while the testimony of witnesses lends the film a resonant undertone of tragedy .\n5359\tWatching Spirited Away is like watching an Eastern imagination explode .\n5360\tAs relationships shift , director Robert J. Siegel allows the characters to inhabit their world without cleaving to a narrative arc .\n5361\tTwohy knows how to inflate the mundane into the scarifying , and gets full mileage out of the rolling of a stray barrel or the unexpected blast of a phonograph record .\n5362\tWhile the story does seem pretty unbelievable at times , it 's awfully entertaining to watch .\n5363\tA smart and funny , albeit sometimes superficial , cautionary tale of a technology in search of an artist .\n5364\tExamines its explosive subject matter as nonjudgmentally as Wiseman 's previous studies of inner-city high schools , hospitals , courts and welfare centers .\n5365\tI prefer Soderbergh 's concentration on his two lovers over Tarkovsky 's mostly male , mostly patriarchal debating societies .\n5366\t` If you are in the mood for an intelligent weepy , it can easily worm its way into your heart . '\n5367\tIn IMAX in short , it 's just as wonderful on the big screen .\n5368\tDoes a good job of establishing a time and place , and of telling a fascinating character 's story .\n5369\tI 'm going to give it a marginal thumbs up .\n5370\tI liked it just enough .\n5371\tThose of you who do n't believe in Santa Claus probably also think that sequels can never capture the magic of the original .\n5372\tWell , this movie proves you wrong on both counts .\n5373\tA deliciously nonsensical comedy about a city coming apart at its seams .\n5374\tThe rare Imax movie that you 'll wish was longer than an hour .\n5375\tMy Wife 's plotting is nothing special ; it 's the delivery that matters here .\n5376\tI 've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese , but at least now we 've got something pretty damn close .\n5377\tA moving and not infrequently breathtaking film .\n5378\tIt 's a sharp movie about otherwise dull subjects .\n5379\tIt 's like Rocky and Bullwinkle on Speed , but that 's neither completely enlightening , nor does it catch the intensity of the movie 's strangeness .\n5380\tAs action-adventure , this space-based homage to Robert Louis Stevenson 's Treasure Island fires on all plasma conduits .\n5381\tA melancholy , emotional film .\n5382\tWhile the filmmaking may be a bit disjointed , the subject matter is so fascinating that you wo n't care .\n5383\tIntensely romantic , thought-provoking and even an engaging mystery .\n5384\tGoofy , nutty , consistently funny .\n5385\tAnd educational !\n5386\tAnother in a long line of ultra-violent war movies , this one is not quite what it could have been as a film , but the story and theme make up for it .\n5387\tIt leaves little doubt that Kidman has become one of our best actors .\n5388\tThe film boasts dry humor and jarring shocks , plus moments of breathtaking mystery .\n5389\tBeautifully directed and convincingly acted .\n5390\tGambling and throwing a basketball game for money is n't a new plot -- in fact Toback himself used it in Black and White .\n5391\tBut Toback 's deranged immediacy makes it seem fresh again .\n5392\tIn the director 's cut , the film is not only a love song to the movies but it also is more fully an example of the kind of lush , all-enveloping movie experience it rhapsodizes .\n5393\tBring on the sequel .\n5394\tGraced with the kind of social texture and realism that would be foreign in American teen comedies .\n5395\tIf we sometimes need comforting fantasies about mental illness , we also need movies like Tim McCann 's Revolution No. 9 .\n5396\tThe film occasionally tries the viewer 's patience with slow pacing and a main character who sometimes defies sympathy , but it ultimately satisfies with its moving story .\n5397\tA big-budget\\/all-star movie as unblinkingly pure as The Hours is a distinct rarity , and an event .\n5398\t... certainly an entertaining ride , despite many talky , slow scenes .\n5399\tBut something seems to be missing .\n5400\tA sense of real magic , perhaps .\n5401\tThat Haynes can both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace .\n5402\tThe movie worked for me right up to the final scene , and then it caved in .\n5403\t... one of the most entertaining monster movies in ages ...\n5404\tPlunges you into a reality that is , more often then not , difficult and sad , and then , without sentimentalizing it or denying its brutality , transforms that reality into a lyrical and celebratory vision .\n5405\tWould you laugh if a tuba-playing dwarf rolled down a hill in a trash can ?\n5406\tDo you chuckle at the thought of an ancient librarian whacking a certain part of a man 's body ?\n5407\tIf you answered yes , by all means enjoy The New Guy .\n5408\tThe film is ... determined to treat its characters , weak and strong , as fallible human beings , not caricatures , and to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation .\n5409\tMissteps take what was otherwise a fascinating , riveting story and send it down the path of the mundane .\n5410\tAn indispensable peek at the art and the agony of making people laugh .\n5411\tSteadfastly uncinematic but powerfully dramatic .\n5412\tThe engagingly primitive animated special effects contribute to a mood that 's sustained through the surprisingly somber conclusion .\n5413\tMade-Up lampoons the moviemaking process itself , while shining a not particularly flattering spotlight on America 's skin-deep notions of pulchritude .\n5414\tEvokes the 19th century with a subtlety that is an object lesson in period filmmaking .\n5415\tYa-Yas everywhere will forgive the flaws and love the film .\n5416\tThe film 's best trick is the way that it treats conspiracy as a kind of political Blair Witch , a monstrous murk that haunts us precisely because it can never be seen .\n5417\tThe artwork is spectacular and unlike most animaton from Japan , the characters move with grace and panache .\n5418\tThe picture 's fascinating byways are littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed .\n5419\tThe modern remake of Dumas 's story is long on narrative and -LRB- too -RRB- short on action .\n5420\tFred Schepisi 's film is paced at a speed that is slow to those of us in middle age and deathly slow to any teen .\n5421\tWith a cast of A-list Brit actors , it is worth searching out .\n5422\tSuffers from its timid parsing of the barn-side target of sons trying to breach gaps in their relationships with their fathers .\n5423\tNonchalantly freaky and uncommonly pleasurable , Warm Water may well be the year 's best and most unpredictable comedy .\n5424\tIt 's like an old Warner Bros. costumer jived with sex -- this could be the movie Errol Flynn always wanted to make , though Bette Davis , cast as Joan , would have killed him .\n5425\tIt 's a great American adventure and a wonderful film to bring to IMAX .\n5426\tSatisfyingly scarifying , fresh and old-fashioned at the same time .\n5427\tOh , James !\n5428\tYour 20th outing shows off a lot of stamina and vitality , and get this , Madonna 's cameo does n't suck !\n5429\tThat death is merely a transition is a common tenet in the world 's religions .\n5430\tThis deeply spiritual film taps into the meaning and consolation in afterlife communications .\n5431\tThere is something that is so meditative and lyrical about Babak Payami 's boldly quirky Iranian drama Secret Ballot ... a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics\n5432\tA huge box-office hit in Korea , Shiri is a must for genre fans .\n5433\tI 'm not a fan of the phrase ` life affirming ' because it usually means ` schmaltzy , ' but Real Women Have Curves truly is life affirming .\n5434\tThe symbols float like butterflies and the spinning styx sting like bees .\n5435\tI wanted more .\n5436\tIf it 's unnerving suspense you 're after -- you 'll find it with Ring , an indisputably spooky film ; with a screenplay to die for .\n5437\tThe art direction and costumes are gorgeous and finely detailed , and Kurys ' direction is clever and insightful .\n5438\tRed Dragon makes one appreciate Silence of the Lambs .\n5439\tProves a servicable World War II drama that ca n't totally hide its contrivances , but it at least calls attention to a problem Hollywood too long has ignored .\n5440\tLeigh is n't breaking new ground , but he knows how a daily grind can kill love .\n5441\tWhile Broomfield 's film does n't capture the effect of these tragic deaths on hip-hop culture , it succeeds as a powerful look at a failure of our justice system .\n5442\t... strips Bible stores of the potential for sanctimoniousness , making them meaningful for both kids and church-wary adults .\n5443\tLaugh-out-loud lines , adorably ditsy but heartfelt performances , and sparkling , bittersweet dialogue that cuts to the chase of the modern girl 's dilemma .\n5444\tTends to pile too many `` serious issues '' on its plate at times , yet remains fairly light , always entertaining , and smartly written .\n5445\tA solidly entertaining little film .\n5446\tIt 's an entertaining movie , and the effects , boosted to the size of a downtown hotel , will all but take you to outer space .\n5447\tSayles has a knack for casting , often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors .\n5448\tDespite an overwrought ending , the film works as well as it does because of the performances .\n5449\tA passionately inquisitive film determined to uncover the truth and hopefully inspire action .\n5450\tThough Nijinsky 's words grow increasingly disturbed , the film maintains a beguiling serenity and poise that make it accessible for a non-narrative feature .\n5451\tA muddle splashed with bloody beauty as vivid as any Scorsese has ever given us .\n5452\tFrom both a great and a terrible story , Mr. Nelson has made a film that is an undeniably worthy and devastating experience .\n5453\tSpider-Man is about growing strange hairs , getting a more mature body , and finding it necessary to hide new secretions from the parental units .\n5454\tThe first shocking thing about Sorority Boys is that it 's actually watchable .\n5455\tEven more baffling is that it 's funny .\n5456\tHighlighted by a gritty style and an excellent cast , it 's better than one might expect when you look at the list of movies starring Ice-T in a major role .\n5457\tNeither quite a comedy nor a romance , more of an impish divertissement of themes that interest Attal and Gainsbourg -- they live together -- the film has a lot of charm .\n5458\tFirst and foremost ... the reason to go see `` Blue Crush '' is the phenomenal , water-born cinematography by David Hennings .\n5459\tA visionary marvel , but it 's lacking a depth in storytelling usually found in anime like this .\n5460\tThe problems and characters it reveals are universal and involving , and the film itself -- as well its delightful cast -- is so breezy , pretty and gifted , it really won my heart .\n5461\tIn his latest effort , Storytelling , Solondz has finally made a movie that is n't just offensive -- it also happens to be good .\n5462\tHow I Killed My Father would be a rarity in Hollywood .\n5463\tIt 's an actor 's showcase that accomplishes its primary goal without the use of special effects , but rather by emphasizing the characters -- including the supporting ones .\n5464\tI just saw this movie ... well , it 's probably not accurate to call it a movie .\n5465\tWhat 's most memorable about Circuit is that it 's shot on digital video , whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb .\n5466\tScherfig , the writer-director , has made a film so unabashedly hopeful that it actually makes the heart soar .\n5467\tYes , soar .\n5468\tA delicious and delicately funny look at the residents of a Copenhagen neighborhood coping with the befuddling complications life tosses at them .\n5469\t`` What really happened ? ''\n5470\tis a question for philosophers , not filmmakers ; all the filmmakers need to do is engage an audience .\n5471\tSoderbergh , like Kubrick before him , may not touch the planet 's skin , but understands the workings of its spirit .\n5472\tMuch credit must be given to the water-camera operating team of Don King , Sonny Miller , and Michael Stewart .\n5473\tTheir work is fantastic .\n5474\tCrush is so warm and fuzzy you might be able to forgive its mean-spirited second half .\n5475\tFranco is an excellent choice for the walled-off but combustible hustler , but he does not give the transcendent performance SONNY needs to overcome gaps in character development and story logic .\n5476\tTsai Ming-liang 's witty , wistful new film , What Time Is It There ?\n5477\t, is a temporal inquiry that shoulders its philosophical burden lightly .\n5478\tThe Pianist lacks the quick emotional connections of Steven Spielberg 's Schindler 's List .\n5479\tBut Mr. Polanski creates images even more haunting than those in Mr. Spielberg 's 1993 classic .\n5480\tSteers , in his feature film debut , has created a brilliant motion picture .\n5481\tA brilliant , absurd collection of vignettes that , in their own idiosyncratic way , sum up the strange horror of life in the new millennium .\n5482\tAs warm as it is wise , deftly setting off uproarious humor with an underlying seriousness that sneaks up on the viewer , providing an experience that is richer than anticipated .\n5483\tThe film may not hit as hard as some of the better drug-related pictures , but it still manages to get a few punches in .\n5484\tOld-fashioned but thoroughly satisfying entertainment .\n5485\tAn energizing , intoxicating documentary charting the rise of hip-hop culture in general and the art of scratching -LRB- or turntablism -RRB- in particular .\n5486\tA fun family movie that 's suitable for all ages -- a movie that will make you laugh , cry and realize , ` It 's never too late to believe in your dreams . '\n5487\tIf you open yourself up to Mr. Reggio 's theory of this imagery as the movie 's set ... it can impart an almost visceral sense of dislocation and change .\n5488\tI had a dream that a smart comedy would come along to rescue me from a summer of teen-driven , toilet-humor codswallop , and its name was Earnest .\n5489\tEven though the film does n't manage to hit all of its marks , it 's still entertaining to watch the target practice .\n5490\tWhere This was lazy but enjoyable , a formula comedy redeemed by its stars , That is even lazier and far less enjoyable .\n5491\tThe 3-D vistas from orbit , with the space station suspended like a huge set of wind chimes over the great blue globe , are stanzas of breathtaking , awe-inspiring visual poetry .\n5492\tThe attraction between these two marginal characters is complex from the start -- and , refreshingly , stays that way .\n5493\tFans of the modern day Hong Kong action film finally have the worthy successor to A Better Tomorrow and The Killer which they have been patiently waiting for .\n5494\tEven when he 's not at his most critically insightful , Godard can still be smarter than any 50 other filmmakers still at work .\n5495\tWhat sets this romantic comedy apart from most Hollywood romantic comedies is its low-key way of tackling what seems like done-to-death material .\n5496\tHas enough wit , energy and geniality to please not only the fanatical adherents on either side , but also people who know nothing about the subject and think they 're not interested .\n5497\tThis seductive tease of a thriller gets the job done .\n5498\tIt 's a scorcher .\n5499\tBittersweet comedy\\/drama full of life , hand gestures , and some really adorable Italian guys .\n5500\tWorks as pretty contagious fun .\n5501\tThe best didacticism is one carried by a strong sense of humanism , and Bertrand Tavernier 's oft-brilliant Safe Conduct -LRB- `` Laissez-passer '' -RRB- wears its heart on its sleeve .\n5502\tA realistically terrifying movie that puts another notch in the belt of the long list of renegade-cop tales .\n5503\tA charming , banter-filled comedy ... one of those airy cinematic bon bons whose aims -- and by extension , accomplishments -- seem deceptively slight on the surface .\n5504\tA film with almost as many delights for adults as there are for children and dog lovers .\n5505\tSerious movie-goers embarking upon this journey will find that The Road to Perdition leads to a satisfying destination .\n5506\tHeartwarming and gently comic even as the film breaks your heart .\n5507\tCaruso sometimes descends into sub-Tarantino cuteness ... but for the most part he makes sure The Salton Sea works the way a good noir should , keeping it tight and nasty .\n5508\tA `` black Austin Powers ? ''\n5509\tI prefer to think of it as `` Pootie Tang with a budget . ''\n5510\tSa da TAY !\n5511\tOddly , the film is n't nearly as downbeat as it sounds , but strikes a tone that 's alternately melancholic , hopeful and strangely funny .\n5512\tI would be shocked if there was actually one correct interpretation , but that should n't make the movie or the discussion any less enjoyable .\n5513\tChouraqui brings documentary-like credibility to the horrors of the killing field and the barbarism of ` ethnic cleansing . '\n5514\tThe best thing I can say about this film is that I ca n't wait to see what the director does next .\n5515\tSmarter than its commercials make it seem .\n5516\tOne of the funnier movies in town .\n5517\tCampanella 's competent direction and his excellent cast overcome the obstacles of a predictable outcome and a screenplay that glosses over Rafael 's evolution .\n5518\tBy turns very dark and very funny .\n5519\tSteven Soderbergh does n't remake Andrei Tarkovsky 's Solaris so much as distill it .\n5520\tFor more than two decades Mr. Nachtwey has traveled to places in the world devastated by war , famine and poverty and documented the cruelty and suffering he has found with an devastating , eloquent clarity .\n5521\tSimultaneously heartbreakingly beautiful and exquisitely sad .\n5522\tThough overall an overwhelmingly positive portrayal , the film does n't ignore the more problematic aspects of Brown 's life .\n5523\tThe philosophical musings of the dialogue jar against the tawdry soap opera antics of the film 's action in a way that is surprisingly enjoyable .\n5524\tNot too fancy , not too filling , not too fluffy , but definitely tasty and sweet .\n5525\tDirector Lee has a true cinematic knack , but it 's also nice to see a movie with its heart so thoroughly , unabashedly on its sleeve .\n5526\tAs Allen 's execution date closes in , the documentary gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson .\n5527\tJones has tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers .\n5528\tA vivid , spicy footnote to history , and a movie that grips and holds you in rapt attention from start to finish .\n5529\tIf S&M seems like a strange route to true love , maybe it is , but it 's to this film 's -LRB- and its makers ' -RRB- credit that we believe that that 's exactly what these two people need to find each other -- and themselves .\n5530\tIf the film 's vision of sport as a secular religion is a bit cloying , its through-line of family and community is heartening in the same way that each season marks a new start .\n5531\tOne of the best of a growing strain of daring films ... that argue that any sexual relationship that does n't hurt anyone and works for its participants is a relationship that is worthy of our respect .\n5532\t... an adorably whimsical comedy that deserves more than a passing twinkle .\n5533\tAn engrossing story that combines psychological drama , sociological reflection , and high-octane thriller .\n5534\tIt 's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs , but Westbrook 's foundation and Dalrymple 's film earn their uplift .\n5535\tMel Gibson fights the good fight in Vietnam in director Randall Wallace 's flag-waving war flick with a core of decency .\n5536\tThere 's real visual charge to the filmmaking , and a strong erotic spark to the most crucial lip-reading sequence .\n5537\tA brutal and funny work .\n5538\tNicole Holofcenter , the insightful writer\\/director responsible for this illuminating comedy does n't wrap the proceedings up neatly but the ideas tie together beautifully .\n5539\tThe film is a blunt indictment , part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity .\n5540\tOne of the most important and exhilarating forms of animated filmmaking since old Walt doodled Steamboat Willie .\n5541\tMove over Bond ; this girl deserves a sequel .\n5542\tThe kind of trifle that date nights were invented for . .\n5543\tIt 's a testament to the film 's considerable charm that it succeeds in entertaining , despite playing out like a feature-length sitcom replete with stereotypical familial quandaries .\n5544\tThere 's a sheer unbridled delight in the way the story unfurls ...\n5545\tTells -LRB- the story -RRB- with such atmospheric ballast that shrugging off the plot 's persnickety problems is simply a matter of -LRB- being -RRB- in a shrugging mood .\n5546\tThe film is hard to dismiss -- moody , thoughtful , and lit by flashes of mordant humor .\n5547\tIf The Man from Elysian Fields is doomed by its smallness , it is also elevated by it -- the kind of movie that you enjoy more because you 're one of the lucky few who sought it out .\n5548\tWhat emerges is an unsettling picture of childhood innocence combined with indoctrinated prejudice .\n5549\tPromises is a compelling piece that demonstrates just how well children can be trained to live out and carry on their parents ' anguish .\n5550\tMeticulously uncovers a trail of outrageous force and craven concealment .\n5551\tHey , Happy !\n5552\tis many things -- stoner midnight flick , sci-fi deconstruction , gay fantasia -- but above all it 's a love story as sanguine as its title .\n5553\tYou wo n't look at religious fanatics -- or backyard sheds -- the same way again .\n5554\tAt its best ... Festival in Cannes bubbles with the excitement of the festival in Cannes .\n5555\tThere is a general air of exuberance in All About The Benjamins that 's hard to resist .\n5556\tA lovably old-school Hollywood confection .\n5557\tI 'm happy to have seen it -- not as an alternate version , but as the ultimate exercise in viewing deleted scenes .\n5558\tBy turns gripping , amusing , tender and heart-wrenching , Laissez-passer has all the earmarks of French cinema at its best .\n5559\tThe warnings to resist temptation in this film ... are blunt and challenging and offer no easy rewards for staying clean .\n5560\tWonder of wonders -- a teen movie with a humanistic message .\n5561\tA quirky comedy set in Newfoundland that cleverly captures the dry wit that 's so prevalent on The Rock .\n5562\tPeppered with witty dialogue and inventive moments .\n5563\tI 'd rather watch a rerun of The Powerpuff Girls\n5564\tWith the prospect of films like Kangaroo Jack about to burst across America 's winter movie screens it 's a pleasure to have a film like The Hours as an alternative .\n5565\tThe wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film are maintained , but its overall impact falls a little flat with a storyline that never quite delivers the original magic .\n5566\tLike its title character , this Nicholas Nickleby finds itself in reduced circumstances -- and , also like its hero , it remains brightly optimistic , coming through in the end .\n5567\tAs a thoughtful and unflinching examination of an alternative lifestyle , Sex with Strangers is a success .\n5568\tunpretentious , charming , quirky , original\n5569\tSpinning a web of dazzling entertainment may be overstating it , but `` Spider-Man '' certainly delivers the goods .\n5570\tOther than the slightly flawed -LRB- and fairly unbelievable -RRB- finale , everything else is top shelf .\n5571\tThis fascinating look at Israel in ferment feels as immediate as the latest news footage from Gaza and , because of its heightened , well-shaped dramas , twice as powerful .\n5572\tManages to delight without much of a story .\n5573\tThere 's no denying that Burns is a filmmaker with a bright future ahead of him .\n5574\tI have a confession to make : I did n't particularly like E.T. the first time I saw it as a young boy .\n5575\tThat is because - damn it !\n5576\t- I also wanted a little alien as a friend !\n5577\tFairy-tale formula , serves as a paper skeleton for some very good acting , dialogue , comedy , direction and especially charm .\n5578\tA genuinely funny ensemble comedy that also asks its audience -- in a heartwarming , nonjudgmental kind of way -- to consider what we value in our daily lives .\n5579\tThough the aboriginal aspect lends the ending an extraordinary poignancy , and the story itself could be played out in any working class community in the nation .\n5580\tAn energetic and engaging film that never pretends to be something it is n't .\n5581\tA violent initiation rite for the audience , as much as it is for Angelique , the -LRB- opening -RRB- dance guarantees Karmen 's enthronement among the cinema 's memorable women .\n5582\tAn animation landmark as monumental as Disney 's 1937 breakthrough Snow White and the Seven Dwarfs .\n5583\tAn entertaining , if ultimately minor , thriller .\n5584\tSex With Strangers is fascinating ...\n5585\tA subtle , poignant picture of goodness that is flawed , compromised and sad .\n5586\tA wry , affectionate delight .\n5587\tThe acting in Pauline And Paulette is good all round , but what really sets the film apart is Debrauwer 's refusal to push the easy emotional buttons .\n5588\tOne of those joyous films that leaps over national boundaries and celebrates universal human nature .\n5589\tA penetrating glimpse into the tissue-thin ego of the stand-up comic .\n5590\tKids should have a stirring time at this beautifully drawn movie .\n5591\tAnd adults will at least have a dream image of the West to savor whenever the film 's lamer instincts are in the saddle .\n5592\tPaid in Full is remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks .\n5593\tLess cinematically powerful than quietly and deeply moving , which is powerful in itself .\n5594\twaydowntown manages to nail the spirit-crushing ennui of denuded urban living without giving in to it .\n5595\tEach of these stories has the potential for Touched by an Angel simplicity and sappiness , but Thirteen Conversations About One Thing , for all its generosity and optimism , never resorts to easy feel-good sentiments .\n5596\tIf Borstal Boy is n't especially realistic , it is an engaging nostalgia piece .\n5597\tOften demented in a good way , but it is an uneven film for the most part .\n5598\tThe script 's snazzy dialogue establishes a realistic atmosphere that involves us in the unfolding crisis , but the lazy plotting ensures that little of our emotional investment pays off .\n5599\tMaggie Smith as the Ya-Ya member with the O2-tank will absolutely crack you up with her crass , then gasp for gas , verbal deportment .\n5600\tThis is a movie that refreshes the mind and spirit along with the body , so original is its content , look , and style .\n5601\tAlthough I did n't hate this one , it 's not very good either .\n5602\tIt can be safely recommended as a video\\/DVD babysitter .\n5603\tAnother Best of the Year selection .\n5604\tThe film has the high-buffed gloss and high-octane jolts you expect of De Palma , but what makes it transporting is that it 's also one of the smartest , most pleasurable expressions of pure movie love to come from an American director in years .\n5605\tIt 's a very valuable film ...\n5606\tMax pokes , provokes , takes expressionistic license and hits a nerve ... as far as art is concerned , it 's mission accomplished .\n5607\tLiterary purists may not be pleased , but as far as mainstream matinee-style entertainment goes , it does a bang-up job of pleasing the crowds .\n5608\tHere Polanski looks back on those places he saw at childhood , and captures them by freeing them from artefact , and by showing them heartbreakingly drably .\n5609\tThe story itself it mostly told through on-camera interviews with several survivors , whose riveting memories are rendered with such clarity that it 's as if it all happened only yesterday .\n5610\tA compelling story of musical passion against governmental odds .\n5611\tWith `` Ichi the Killer '' , Takashi Miike , Japan 's wildest filmmaker gives us a crime fighter carrying more emotional baggage than Batman ...\n5612\tYou never know where Changing Lanes is going to take you but it 's a heck of a ride .\n5613\tSamuel L. Jackson is one of the best actors there is .\n5614\t-LRB- Breheny 's -RRB- lensing of the New Zealand and Cook Island locations captures both the beauty of the land and the people .\n5615\tAn almost unbearably morbid love story .\n5616\tThe Wild Thornberrys Movie has all the sibling rivalry and general family chaos to which anyone can relate .\n5617\tA forceful drama of an alienated executive who re-invents himself .\n5618\tSpielberg 's realization of a near-future America is masterful .\n5619\tThis makes Minority Report necessary viewing for sci-fi fans , as the film has some of the best special effects ever .\n5620\tThe gags that fly at such a furiously funny pace that the only rip off that we were aware of was the one we felt when the movie ended so damned soon .\n5621\tThe best film of the year 2002 .\n5622\tAn enthralling , entertaining feature .\n5623\tStripped almost entirely of such tools as nudity , profanity and violence , LaBute does manage to make a few points about modern man and his problematic quest for human connection .\n5624\tA remarkable movie with an unsatisfying ending , which is just the point .\n5625\tAll in all , Brown Sugar is a satisfying well-made romantic comedy that 's both charming and well acted .\n5626\tIt will guarantee to have you leaving the theater with a smile on your face .\n5627\tSmith finds amusing juxtapositions that justify his exercise .\n5628\tWorking from a surprisingly sensitive script co-written by Gianni Romoli ... Ozpetek avoids most of the pitfalls you 'd expect in such a potentially sudsy set-up .\n5629\tAn older cad instructs a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy .\n5630\t`` Austin Powers in Goldmember '' has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end .\n5631\tOne of -LRB- Jaglom 's -RRB- better efforts -- a wry and sometime bitter movie about love .\n5632\tSchaeffer is n't in this film , which may be why it works as well as it does .\n5633\tA fresh , entertaining comedy that looks at relationships minus traditional gender roles .\n5634\tAlthough Estela Bravo 's documentary is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro , it 's still a guilty pleasure to watch .\n5635\tSurprisingly , the film is a hilarious adventure and I shamelessly enjoyed it .\n5636\tThe Way Home is an ode to unconditional love and compassion garnered from years of seeing it all , a condition only the old are privy to , and ... often misconstrued as weakness .\n5637\tBrutally honest and told with humor and poignancy , which makes its message resonate .\n5638\tIf you can read the subtitles -LRB- the opera is sung in Italian -RRB- and you like ` Masterpiece Theatre ' type costumes , you 'll enjoy this movie .\n5639\tA pretty funny movie , with most of the humor coming , as before , from the incongruous but chemically perfect teaming of Crystal and De Niro .\n5640\tGangster No. 1 is solid , satisfying fare for adults .\n5641\tThis Chicago has hugely imaginative and successful casting to its great credit , as well as one terrific score and attitude to spare .\n5642\tHas enough gun battles and throwaway humor to cover up the yawning chasm where the plot should be .\n5643\tWith its jerky hand-held camera and documentary feel , Bloody Sunday is a sobering recount of a very bleak day in Derry .\n5644\tYou will likely prefer to keep on watching .\n5645\tInsomnia loses points when it surrenders to a formulaic bang-bang , shoot-em-up scene at the conclusion .\n5646\tBut the performances of Pacino , Williams , and Swank keep the viewer wide-awake all the way through .\n5647\tWhat might have been readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention takes a surprising , subtle turn at the midway point .\n5648\tAt a time when commercialism has squeezed the life out of whatever idealism American moviemaking ever had , Godfrey Reggio 's career shines like a lonely beacon .\n5649\tAn Inuit masterpiece that will give you goosebumps as its uncanny tale of love , communal discord , and justice unfolds .\n5650\tThis is popcorn movie fun with equal doses of action , cheese , ham and cheek -LRB- as well as a serious debt to The Road Warrior -RRB- , but it feels like unrealized potential\n5651\tIt 's a testament to De Niro and director Michael Caton-Jones that by movie 's end , we accept the characters and the film , flaws and all .\n5652\tPerformances are potent , and the women 's stories are ably intercut and involving .\n5653\tAn enormously entertaining movie , like nothing we 've ever seen before , and yet completely familiar .\n5654\tLan Yu is a genuine love story , full of traditional layers of awakening and ripening and separation and recovery .\n5655\tYour children will be occupied for 72 minutes .\n5656\tPull -LRB- s -RRB- off the rare trick of recreating not only the look of a certain era , but also the feel .\n5657\tTwohy 's a good yarn-spinner , and ultimately the story compels .\n5658\t` Tobey Maguire is a poster boy for the geek generation . '\n5659\t... a sweetly affecting story about four sisters who are coping , in one way or another , with life 's endgame .\n5660\tPassion , melodrama , sorrow , laugther , and tears cascade over the screen effortlessly ...\n5661\tRoad to Perdition does display greatness , and it 's worth seeing .\n5662\tBut it also comes with the laziness and arrogance of a thing that already knows it 's won .\n5663\tA marvelous performance by Allison Lohman as an identity-seeking foster child .\n5664\tArliss Howard 's ambitious , moving , and adventurous directorial debut , Big Bad Love , meets so many of the challenges it poses for itself that one can forgive the film its flaws .\n5665\tCritics need a good laugh , too , and this too-extreme-for-TV rendition of the notorious MTV show delivers the outrageous , sickening , sidesplitting goods in steaming , visceral heaps .\n5666\tWhat a dumb , fun , curiously adolescent movie this is .\n5667\tThe charms of the lead performances allow us to forget most of the film 's problems .\n5668\tA vivid , sometimes surreal , glimpse into the mysteries of human behavior .\n5669\tA tour de force of modern cinema .\n5670\tPeralta captures , in luminous interviews and amazingly evocative film from three decades ago , the essence of the Dogtown experience .\n5671\tThe lively appeal of The Last Kiss lies in the ease with which it integrates thoughtfulness and pasta-fagioli comedy .\n5672\tWithout resorting to camp or parody , Haynes -LRB- like Sirk , but differently -RRB- has transformed the rhetoric of Hollywood melodrama into something provocative , rich , and strange .\n5673\tThe performances are an absolute joy .\n5674\tA quasi-documentary by French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music .\n5675\tGrant carries the day with impeccable comic timing , raffish charm and piercing intellect .\n5676\tA sensitive and astute first feature by Anne-Sophie Birot .\n5677\tBoth exuberantly romantic and serenely melancholy , What Time Is It There ?\n5678\tmay prove to be -LRB- Tsai 's -RRB- masterpiece .\n5679\tMazel tov to a film about a family 's joyous life acting on the Yiddish stage .\n5680\tStanding in the Shadows of Motown is the best kind of documentary , one that makes a depleted yesterday feel very much like a brand-new tomorrow .\n5681\tIt 's nice to see Piscopo again after all these years , and Chaykin and Headly are priceless .\n5682\tProvides a porthole into that noble , trembling incoherence that defines us all .\n5683\tSimplistic , silly and tedious .\n5684\tIt 's so laddish and juvenile , only teenage boys could possibly find it funny .\n5685\tExploitative and largely devoid of the depth or sophistication that would make watching such a graphic treatment of the crimes bearable .\n5686\t-LRB- Garbus -RRB- discards the potential for pathological study , exhuming instead , the skewed melodrama of the circumstantial situation .\n5687\tA visually flashy but narratively opaque and emotionally vapid exercise in style and mystification .\n5688\tThe story is also as unoriginal as they come , already having been recycled more times than I 'd care to count .\n5689\tAbout the only thing to give the movie points for is bravado -- to take an entirely stale concept and push it through the audience 's meat grinder one more time .\n5690\tNot so much farcical as sour .\n5691\tUnfortunately the story and the actors are served with a hack script .\n5692\tAll the more disquieting for its relatively gore-free allusions to the serial murders , but it falls down in its attempts to humanize its subject .\n5693\tA sentimental mess that never rings true .\n5694\tWhile the performances are often engaging , this loose collection of largely improvised numbers would probably have worked better as a one-hour TV documentary .\n5695\tInteresting , but not compelling .\n5696\tOn a cutting room floor somewhere lies ... footage that might have made No Such Thing a trenchant , ironic cultural satire instead of a frustrating misfire .\n5697\tWhile the ensemble player who gained notice in Guy Ritchie 's Lock , Stock and Two Smoking Barrels and Snatch has the bod , he 's unlikely to become a household name on the basis of his first starring vehicle .\n5698\tThere is a difference between movies with the courage to go over the top and movies that do n't care about being stupid\n5699\tNothing here seems as funny as it did in Analyze This , not even Joe Viterelli as De Niro 's right-hand goombah .\n5700\tSuch master screenwriting comes courtesy of John Pogue , the Yale grad who previously gave us `` The Skulls '' and last year 's `` Rollerball . ''\n5701\tEnough said , except : Film overboard !\n5702\tHere , common sense flies out the window , along with the hail of bullets , none of which ever seem to hit Sascha .\n5703\tThis 100-minute movie only has about 25 minutes of decent material .\n5704\tThe execution is so pedestrian that the most positive comment we can make is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl .\n5705\tOn its own , it 's not very interesting .\n5706\tAs a remake , it 's a pale imitation .\n5707\tIt shows that some studios firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there 's a little girl-on-girl action .\n5708\tA farce of a parody of a comedy of a premise , it is n't a comparison to reality so much as it is a commentary about our knowledge of films .\n5709\tAs exciting as all this exoticism might sound to the typical Pax viewer , the rest of us will be lulled into a coma .\n5710\tThe party scenes deliver some tawdry kicks .\n5711\tThe rest of the film ... is dudsville .\n5712\tOur culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender -- and I know this because I 've seen ` jackass : the movie . '\n5713\tThe criticism never rises above easy , cynical potshots at morally bankrupt characters ...\n5714\tThe movie 's something-borrowed construction feels less the product of loving , well integrated homage and more like a mere excuse for the wan , thinly sketched story .\n5715\tKilling time , that 's all that 's going on here .\n5716\tSomewhere in the middle , the film compels , as Demme experiments he harvests a few movie moment gems , but the field of roughage dominates .\n5717\tThe action clichÃ©s just pile up .\n5718\tPayami tries to raise some serious issues about Iran 's electoral process , but the result is a film that 's about as subtle as a party political broadcast .\n5719\tThe only surprise is that heavyweights Joel Silver and Robert Zemeckis agreed to produce this ; I assume the director has pictures of them cavorting in ladies ' underwear .\n5720\tAnother useless recycling of a brutal mid - '70s American sports movie .\n5721\tPlease , someone , stop Eric Schaeffer before he makes another film .\n5722\tMost of the problems with the film do n't derive from the screenplay , but rather the mediocre performances by most of the actors involved\n5723\t... if you 're just in the mood for a fun -- but bad -- movie , you might want to catch Freaks as a matinee .\n5724\tCurling may be a unique sport but Men with Brooms is distinctly ordinary .\n5725\tThough the opera itself takes place mostly indoors , Jacquot seems unsure of how to evoke any sort of naturalism on the set .\n5726\tThere 's no getting around the fact that this is Revenge Of The Nerds Revisited -- again .\n5727\tThe effort is sincere and the results are honest , but the film is so bleak that it 's hardly watchable .\n5728\tAnalyze That regurgitates and waters down many of the previous film 's successes , with a few new swings thrown in .\n5729\tWith flashbulb editing as cover for the absence of narrative continuity , Undisputed is nearly incoherent , an excuse to get to the closing bout ... by which time it 's impossible to care who wins .\n5730\tStinks from start to finish , like a wet burlap sack of gloom .\n5731\tTo the civilized mind , a movie like Ballistic : Ecks Vs. Sever is more of an ordeal than an amusement .\n5732\tEqulibrium could pass for a thirteen-year-old 's book report on the totalitarian themes of 1984 and Farenheit 451 .\n5733\tThe lack of naturalness makes everything seem self-consciously poetic and forced ... It 's a pity that -LRB- Nelson 's -RRB- achievement does n't match his ambition .\n5734\tWhen Seagal appeared in an orange prison jumpsuit , I wanted to stand up in the theater and shout , ` Hey , Kool-Aid ! '\n5735\tAn easy watch , except for the annoying demeanour of its lead character .\n5736\tImagine the CleanFlicks version of ` Love Story , ' with Ali MacGraw 's profanities replaced by romance-novel platitudes .\n5737\tPC stability notwithstanding , the film suffers from a simplistic narrative and a pat , fairy-tale conclusion .\n5738\tForget the misleading title , what 's with the unexplained baboon cameo ?\n5739\tAn odd , haphazard , and inconsequential romantic comedy .\n5740\tThough her fans will assuredly have their funny bones tickled , others will find their humor-seeking dollars best spent elsewhere .\n5741\tPascale Bailly 's rom-com provides AmÃ©lie 's Audrey Tautou with another fabuleux destin -- i.e. , a banal spiritual quest .\n5742\tA static and sugary little half-hour , after-school special about interfaith understanding , stretched out to 90 minutes .\n5743\tWatching the chemistry between Freeman and Judd , however , almost makes this movie worth seeing .\n5744\tAlmost .\n5745\t... a pretentious and ultimately empty examination of a sick and evil woman .\n5746\tThe Country Bears has no scenes that will upset or frighten young viewers .\n5747\tUnfortunately , there is almost nothing in this flat effort that will amuse or entertain them , either .\n5748\tThe cumulative effect of watching this 65-minute trifle is rather like being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge .\n5749\tBefore long , you 're desperate for the evening to end .\n5750\tThe characters are never more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach .\n5751\tMattei 's underdeveloped effort here is nothing but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination .\n5752\tOnly in its final surprising shots does Rabbit-Proof Fence find the authority it 's looking for .\n5753\tIs n't as sharp as the original ... Despite some visual virtues , ` Blade II ' just does n't cut it .\n5754\t... plays like a badly edited , 91-minute trailer -LRB- and -RRB- the director ca n't seem to get a coherent rhythm going .\n5755\tIn fact , it does n't even seem like she tried .\n5756\tMaybe LeBlanc thought , `` Hey , the movie about the baseball-playing monkey was worse . ''\n5757\tWhat you expect is just what you get ... assuming the bar of expectations has n't been raised above sixth-grade height .\n5758\tBarry Sonnenfeld owes Frank the Pug big time\n5759\tThe biggest problem with Roger Avary 's uproar against the MPAA is that , even in all its director 's cut glory , he 's made a film that 's barely shocking , barely interesting and most of all , barely anything .\n5760\tSo riddled with unanswered questions that it requires gargantuan leaps of faith just to watch it plod along .\n5761\tI approached the usher and said that if she had to sit through it again , she should ask for a raise .\n5762\tIf Sinise 's character had a brain his ordeal would be over in five minutes but instead the plot goes out of its way to introduce obstacles for him to stumble over .\n5763\tToo slow for a younger crowd , too shallow for an older one .\n5764\tThere 's a reason the studio did n't offer an advance screening .\n5765\t`` The Adventures of Pluto Nash '' is a big time stinker .\n5766\tA punch line without a premise , a joke built entirely from musty memories of half-dimensional characters .\n5767\tTakes one character we do n't like and another we do n't believe , and puts them into a battle of wills that is impossible to care about and is n't very funny .\n5768\tThe things this movie tries to get the audience to buy just wo n't fly with most intelligent viewers .\n5769\tEven if the enticing prospect of a lot of nubile young actors in a film about campus depravity did n't fade amid the deliberate , tiresome ugliness , it would be rendered tedious by Avary 's failure to construct a story with even a trace of dramatic interest .\n5770\tSitting through the last reel -LRB- spoiler alert ! -RRB-\n5771\tis significantly less charming than listening to a four-year-old with a taste for exaggeration recount his Halloween trip to the Haunted House .\n5772\tConfuses its message with an ultimate desire to please , and contorting itself into an idea of expectation is the last thing any of these three actresses , nor their characters , deserve .\n5773\tDeadly dull , pointless meditation on losers in a gone-to-seed hotel .\n5774\tWith this new Rollerball , sense and sensibility have been overrun by what can only be characterized as robotic sentiment .\n5775\tOne can only assume that the jury who bestowed star Hoffman 's brother Gordy with the Waldo Salt Screenwriting award at 2002 's Sundance Festival were honoring an attempt to do something different over actually pulling it off\n5776\tA movie more to be prescribed than recommended -- as visually bland as a dentist 's waiting room , complete with soothing Muzak and a cushion of predictable narrative rhythms .\n5777\tSex ironically has little to do with the story , which becomes something about how lame it is to try and evade your responsibilities and that you should never , ever , leave a large dog alone with a toddler .\n5778\tBut never mind all that ; the boobs are fantasti\n5779\tThe script covers huge , heavy topics in a bland , surfacey way that does n't offer any insight into why , for instance , good things happen to bad people .\n5780\tA portrait of alienation so perfect , it will certainly succeed in alienating most viewers .\n5781\tThe code talkers deserved better than a hollow tribute .\n5782\tSkip the film and buy the Philip Glass soundtrack CD .\n5783\tFeels like a cold old man going through the motions .\n5784\tDignified CEO 's meet at a rustic retreat and pee against a tree .\n5785\tCan you bear the laughter ?\n5786\tDull and mechanical , kinda like a very goofy museum exhibit\n5787\tThere 's no point of view , no contemporary interpretation of Joan 's prefeminist plight , so we 're left thinking the only reason to make the movie is because present standards allow for plenty of nudity .\n5788\tBeware the quirky Brit-com .\n5789\tThey can and will turn on a dime from oddly humorous to tediously sentimental .\n5790\tHas its moments -- and almost as many subplots .\n5791\tThe gags , and the script , are a mixed bag .\n5792\tCompletely awful Iranian drama ... as much fun as a grouchy ayatollah in a cold mosque .\n5793\tNarratively , Trouble Every Day is a plodding mess .\n5794\tThere 's no point in extracting the bare bones of Byatt 's plot for purposes of bland Hollywood romance .\n5795\tDirectors John Musker and Ron Clements , the team behind The Little Mermaid , have produced sparkling retina candy , but they are n't able to muster a lot of emotional resonance in the cold vacuum of space .\n5796\tAdam Sandler 's heart may be in the right place , but he needs to pull his head out of his butt\n5797\tThere 's no doubting that this is a highly ambitious and personal project for Egoyan , but it 's also one that , next to his best work , feels clumsy and convoluted .\n5798\tDespite engaging offbeat touches , Knockaround Guys rarely seems interested in kicking around a raison d'etre that 's as fresh-faced as its young-guns cast .\n5799\tIt 's all pretty tame .\n5800\tThe most offensive thing about the movie is that Hollywood expects people to pay to see it .\n5801\tThe movie is a mess from start to finish .\n5802\tThe trouble with making this queen a thoroughly modern maiden is that it also makes her appear foolish and shallow rather than , as was more likely , a victim of mental illness .\n5803\tI 'm not saying that Ice Age does n't have some fairly pretty pictures , but there 's not enough substance in the story to actually give them life .\n5804\tIn the telling of a story largely untold , Bui chooses to produce something that is ultimately suspiciously familiar .\n5805\tThe plot is nothing but boilerplate clichÃ©s from start to finish , and the script assumes that not only would subtlety be lost on the target audience , but that it 's also too stupid to realize that they 've already seen this exact same movie a hundred times\n5806\tTerminally brain dead production .\n5807\tSome episodes work , some do n't .\n5808\tBeautifully filmed and well acted ... but admittedly problematic in its narrative specifics .\n5809\tJ. Lo will earn her share of the holiday box office pie , although this movie makes one thing perfectly clear : She 's a pretty woman , but she 's no working girl .\n5810\tRymer does n't trust laughs -- and does n't conjure proper respect for followers of the whole dead-undead genre , who deserve more from a vampire pic than a few shrieky special effects .\n5811\tNot only are the film 's Sopranos gags incredibly dated and unfunny , they also demonstrate how desperate the makers of this ` we 're - doing-it-for - the-cash ' sequel were .\n5812\tWow .\n5813\tI have not been this disappointed by a movie in a long time .\n5814\tOff the Hook is overlong and not well-acted , but credit writer-producer-director Adam Watstein with finishing it at all .\n5815\tIt 's a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding .\n5816\tWatching Harris ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death , but Boyd 's film offers little else of consequence .\n5817\tIt 's also curious to note that this film , like the similarly ill-timed Antitrust , is easily as bad at a fraction the budget .\n5818\tWill probably be one of those movies barely registering a blip on the radar screen of 2002 .\n5819\tThe problem is not that it 's all derivative , because plenty of funny movies recycle old tropes .\n5820\tThe problem is that Van Wilder does little that is actually funny with the material .\n5821\tThere 's nothing interesting in Unfaithful whatsoever .\n5822\tNone of this is half as moving as the filmmakers seem to think .\n5823\tA processed comedy chop suey .\n5824\tAs spent screen series go , Star Trek : Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- and there 's nothing to drink .\n5825\tFails as a dystopian movie , as a retooling of Fahrenheit 451 , and even as a rip-off of The Matrix .\n5826\tFull of the kind of obnoxious chitchat that only self-aware neurotics engage in .\n5827\tAn erotic thriller that 's neither too erotic nor very thrilling , either .\n5828\tThe movie , like Bartleby , is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes .\n5829\tWith its parade of almost perpetually wasted characters ... Margarita feels like a hazy high that takes too long to shake .\n5830\tIf you value your time and money , find an escape clause and avoid seeing this trite , predictable rehash .\n5831\tThe director and her capable cast appear to be caught in a heady whirl of New Age-inspired good intentions , but the spell they cast is n't the least bit mesmerizing .\n5832\tEverything is pegged into the groove of a New York dating comedy with ` issues ' to simplify .\n5833\tA dramatic comedy as pleasantly dishonest and pat as any Hollywood fluff .\n5834\tThe cameo-packed , M : I-2-spoofing title sequence is the funniest 5 minutes to date in this spy comedy franchise ... Then Mike Myers shows up and ruins everything .\n5835\tIt comes off as so silly that you would n't be surprised if BA , Murdock and rest of the A-Team were seen giving chase in a black and red van .\n5836\tThe 50-something lovebirds are too immature and unappealing to care about .\n5837\tSo genial is the conceit , this is one of those rare pictures that you root for throughout , dearly hoping that the rich promise of the script will be realized on the screen .\n5838\tIt never is , not fully .\n5839\tEven in the summertime , the most restless young audience deserves the dignity of an action hero motivated by something more than franchise possibilities .\n5840\tWhat with all the blanket statements and dime-store ruminations on vanity , the worries of the rich and sudden wisdom , the film becomes a sermon for most of its running time .\n5841\tAs gamely as the movie tries to make sense of its title character , there remains a huge gap between the film 's creepy , clean-cut Dahmer -LRB- Jeremy Renner -RRB- and fiendish acts that no amount of earnest textbook psychologizing can bridge .\n5842\tPlodding , peevish and gimmicky .\n5843\tThe Four Feathers is definitely horse feathers , but if you go in knowing that , you might have fun in this cinematic sandbox .\n5844\tOozes condescension from every pore .\n5845\t`` Solaris '' is a shapeless inconsequential move relying on the viewer to do most of the work .\n5846\tThe direction , by George Hickenlooper , has no snap to it , no wiseacre crackle or hard-bitten cynicism .\n5847\tThough this saga would be terrific to read about , it is dicey screen material that only a genius should touch .\n5848\tIt has plenty of laughs .\n5849\tIt just does n't have much else ... especially in a moral sense .\n5850\tAn awful lot like one of -LRB- Spears ' -RRB- music videos in content -- except that it goes on for at least 90 more minutes and , worse , that you have to pay if you want to see it .\n5851\tConfusion is one of my least favourite emotions , especially when I have to put up with 146 minutes of it .\n5852\t-LRB- H -RRB- ad I suffered and bled on the hard ground of Ia Drang , I 'd want something a bit more complex than We Were Soldiers to be remembered by .\n5853\tOccasionally loud and offensive , but more often , it simply lulls you into a gentle waking coma .\n5854\tit may play well as a double feature with mainstream foreign mush like My Big Fat Greek Wedding\n5855\tBy the time you reach the finale , you 're likely wondering why you 've been watching all this strutting and posturing .\n5856\tJournalistically dubious , inept and often lethally dull .\n5857\tPutting the primitive murderer inside a high-tech space station unleashes a Pandora 's Box of special effects that run the gamut from cheesy to cheesier to cheesiest .\n5858\tAt its best , it 's Black Hawk Down with more heart .\n5859\tAt its worst , it 's Rambo - meets-John Ford .\n5860\tExactly what you 'd expect from a guy named Kaos .\n5861\tThis movie ... does n't deserve the energy it takes to describe how bad it is .\n5862\tWith or without ballast tanks , K-19 sinks to a Harrison Ford low .\n5863\tDirector Oliver Parker labors so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two .\n5864\tYou might be shocked to discover that Seinfeld 's real life is boring .\n5865\tIt 's not nearly as fresh or enjoyable as its predecessor , but there are enough high points to keep this from being a complete waste of time .\n5866\tWalsh ca n't quite negotiate the many inconsistencies in Janice 's behavior or compensate for them by sheer force of charm .\n5867\tThis 10th film in the series looks and feels tired .\n5868\tIt leers , offering next to little insight into its intriguing subject .\n5869\tI found myself growing more and more frustrated and detached as Vincent became more and more abhorrent .\n5870\tOne of the oddest and most inexplicable sequels in movie history .\n5871\tThere 's nothing to gain from watching They .\n5872\tIt is n't scary .\n5873\tIt hates its characters .\n5874\tIt finds no way to entertain or inspire its viewers .\n5875\tFear permeates the whole of Stortelling , Todd Solondz ' oftentimes funny , yet ultimately cowardly autocritique .\n5876\tThe skirmishes for power waged among victims and predators settle into an undistinguished rhythm of artificial suspense .\n5877\t... Ice Age treads predictably along familiar territory , making it a passable family film that wo n't win many fans over the age of 12 .\n5878\tThough the film is well-intentioned , one could rent the original and get the same love story and parable .\n5879\tJust too silly and sophomoric to ensnare its target audience .\n5880\tThe video work is so grainy and rough , so dependent on being ` naturalistic ' rather than carefully lit and set up , that it 's exhausting to watch .\n5881\tA cleverly crafted but ultimately hollow mockumentary .\n5882\tIt gets bogged down by hit-and-miss topical humour before getting to the truly good stuff .\n5883\tAn achingly enthralling premise , the film is hindered by uneven dialogue and plot lapses .\n5884\tIt 's Tommy 's job to clean the peep booths surrounding her , and after viewing this one , you 'll feel like mopping up , too .\n5885\tRifkin no doubt fancies himself something of a Hubert Selby Jr. , but there is n't an ounce of honest poetry in his entire script ; it 's simply crude and unrelentingly exploitative .\n5886\tSuch a bad movie that its luckiest viewers will be seated next to one of those ignorant pinheads who talk throughout the show .\n5887\tIf you go into the theater expecting a scary , action-packed chiller , you might soon be looking for a sign .\n5888\tAn EXIT sign , that is .\n5889\tHolds limited appeal to those who like explosions , sadism and seeing people beat each other to a pulp .\n5890\tThe dialogue is very choppy and monosyllabic despite the fact that it is being dubbed .\n5891\tA feature-length , R-rated , road-trip version of Mama 's Family .\n5892\tWhat you end up getting is the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between .\n5893\tStealing Harvard does n't care about cleverness , wit or any other kind of intelligent humor .\n5894\tBigelow handles the nuclear crisis sequences evenly but milks drama when she should be building suspense , and drags out too many scenes toward the end that should move quickly .\n5895\tThere 's undeniable enjoyment to be had from films crammed with movie references , but the fun wears thin -- then out -- when there 's nothing else happening .\n5896\tImagine Kevin Smith , the blasphemous bad boy of suburban Jersey , if he were stripped of most of his budget and all of his sense of humor .\n5897\tThe result might look like Vulgar .\n5898\tSuffers from a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer demands .\n5899\tWhat soured me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard , it 's icky .\n5900\tIt 's an 88-minute highlight reel that 's 86 minutes too long .\n5901\tThe film favors the scientific over the spectacular -LRB- visually speaking -RRB- .\n5902\tSuch an incomprehensible mess that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema .\n5903\tWith the exception of McCoist , the players do n't have a clue on the park .\n5904\tThe acting is n't much better .\n5905\tThe whole affair is as predictable as can be .\n5906\tA not-so-Divine Secrets of the Ya-Ya Sisterhood with a hefty helping of Re-Fried Green Tomatoes .\n5907\tThis cloying , voices-from-the-other-side story is hell .\n5908\tA suffocating rape-payback horror show that hinges on the subgenre 's most enabling victim ... and an ebullient affection for industrial-model meat freezers .\n5909\tStar Trek was kind of terrific once , but now it is a copy of a copy of a copy .\n5910\t-LRB- N -RRB- o matter how much good will the actors generate , Showtime eventually folds under its own thinness .\n5911\tEvery potential twist is telegraphed well in advance , every performance respectably muted ; the movie itself seems to have been made under the influence of Rohypnol .\n5912\tPuts on airs of a Hal Hartley wannabe film -- without the vital comic ingredient of the hilarious writer-director himself .\n5913\tVer Wiel 's desperate attempt at wit is lost , leaving the character of Critical Jim two-dimensional and pointless .\n5914\tDespite a performance of sustained intelligence from Stanford and another of subtle humour from Bebe Neuwirth , as an older woman who seduces Oscar , the film founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off\n5915\tAlthough Disney follows its standard formula in this animated adventure , it feels more forced than usual .\n5916\tGaghan ... has thrown every suspenseful clichÃ© in the book at this nonsensical story .\n5917\tA sham construct based on theory , sleight-of-hand , and ill-wrought hypothesis .\n5918\t-LRB- P -RRB- artnering Murphy with Robert De Niro for the TV-cops comedy Showtime would seem to be surefire casting .\n5919\tThe catch is that they 're stuck with a script that prevents them from firing on all cylinders .\n5920\t` You 'll laugh for not quite and hour and a half , but come out feeling strangely unsatisfied .\n5921\tYou 'll feel like you ate a Reeses without the peanut butter ... '\n5922\tGooding offers a desperately ingratiating performance .\n5923\tParker should be commended for taking a fresh approach to familiar material , but his determination to remain true to the original text leads him to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story 's core .\n5924\tThe director has injected self-consciousness into the proceedings at every turn .\n5925\tThe results are far more alienating than involving .\n5926\tBogdanich is unashamedly pro-Serbian and makes little attempt to give voice to the other side .\n5927\tA lack of thesis makes Maryam , in the end , play out with the intellectual and emotional impact of an after-school special .\n5928\tWithout Shakespeare 's eloquent language , the update is dreary and sluggish .\n5929\tIf H.G. Wells had a time machine and could take a look at his kin 's reworked version , what would he say ?\n5930\t` It looks good , Sonny , but you missed the point . '\n5931\tDuring The Tuxedo 's 90 minutes of screen time , there is n't one true ` Chan moment ' .\n5932\tBisset delivers a game performance , but she is unable to save the movie .\n5933\tWatching Austin Powers in Goldmember is like binging on cotton candy .\n5934\tIt 's sweet and fluffy at the time , but it may leave you feeling a little sticky and unsatisfied .\n5935\tThe most anti-human big studio picture since 3000 Miles to Graceland .\n5936\tThe film can depress you about life itself .\n5937\tI 'm sure the filmmakers found this a remarkable and novel concept , but anybody who has ever seen an independent film can report that it is instead a cheap clichÃ© .\n5938\tThe acting is fine but the script is about as interesting as a recording of conversations at the Wal-Mart checkout line .\n5939\tIts weighty themes are too grave for youngsters , but the story is too steeped in fairy tales and other childish things to appeal much to teenagers .\n5940\tThe plot plummets into a comedy graveyard before Janice comes racing to the rescue in the final reel .\n5941\tSometimes there are very , very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely .\n5942\tAt 90 minutes this movie is short , but it feels much longer .\n5943\tHere 's my advice , Kev .\n5944\tStart reading your scripts before signing that dotted line .\n5945\tAn alternately raucous and sappy ethnic sitcom ... you 'd be wise to send your regrets .\n5946\tAn ugly-duckling tale so hideously and clumsily told it feels accidental .\n5947\tUnfortunately , it 's also not very good .\n5948\tEspecially compared with the television series that inspired the movie .\n5949\tIt wraps up a classic mother\\/daughter struggle in recycled paper with a shiny new bow and while the audience can tell it 's not all new , at least it looks pretty .\n5950\tGlazed with a tawdry B-movie scum .\n5951\tThis is the kind of movie during which you want to bang your head on the seat in front of you , at its cluelessness , at its idiocy , at its utterly misplaced earnestness .\n5952\tIt winds up moving in many directions as it searches -LRB- vainly , I think -RRB- for something fresh to say .\n5953\tAll in all , Road to Perdition is more in love with strangeness than excellence .\n5954\tA big fat pain .\n5955\tA mimetic approximation of better films like Contempt and 8Â 1\\/2 .\n5956\tUnintelligible , poorly acted , brain-slappingly bad , Harvard Man is ludicrous enough that it could become a cult classic .\n5957\tWatching The Powerpuff Girls Movie , my mind kept returning to one anecdote for comparison : the cartoon in Japan that gave people seizures .\n5958\tAn inelegant combination of two unrelated shorts that falls far short of the director 's previous work in terms of both thematic content and narrative strength .\n5959\tTo build a feel-good fantasy around a vain dictator-madman is off-putting , to say the least , not to mention inappropriate and wildly undeserved .\n5960\tWith the cheesiest monsters this side of a horror spoof , which They is n't , it is more likely to induce sleep than fright .\n5961\tMild , meandering teen flick .\n5962\tThough its atmosphere is intriguing ... the drama is finally too predictable to leave much of an impression .\n5963\tThough this rude and crude film does deliver a few gut-busting laughs , its digs at modern society are all things we 've seen before .\n5964\tAlthough it tries to be much more , it 's really just another Major League .\n5965\tAstonishing is n't the word -- neither is incompetent , incoherent or just plain crap .\n5966\tIndeed , none of these words really gets at the very special type of badness that is Deuces Wild .\n5967\tOne thing is for sure : This movie does not tell you a whole lot about Lily Chou-Chou .\n5968\tWith a tone as variable as the cinematography , Schaeffer 's film never settles into the light-footed enchantment the material needs , and the characters ' quirks and foibles never jell into charm .\n5969\tTo better understand why this did n't connect with me would require another viewing , and I wo n't be sitting through this one again ... that in itself is commentary enough .\n5970\tCuba Gooding Jr. valiantly mugs his way through Snow Dogs , but even his boisterous energy fails to spark this leaden comedy .\n5971\tDiane Lane 's sophisticated performance ca n't rescue Adrian Lyne 's Unfaithful from its sleazy moralizing .\n5972\tNot at all clear what it 's trying to say and even if it were -- I doubt it would be all that interesting .\n5973\t-LRB- Swimfan -RRB- falls victim to sloppy plotting , an insultingly unbelievable final act and a villainess who is too crazy to be interesting .\n5974\tThis remake of Lina Wertmuller 's 1975 eroti-comedy might just be the biggest husband-and-wife disaster since John and Bo Derek made the ridiculous Bolero .\n5975\tSilly , loud and goofy .\n5976\tWhy spend $ 9 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby ?\n5977\tThe French director has turned out nearly 21\\/2 hours of unfocused , excruciatingly tedious cinema that , half an hour in , starts making water torture seem appealing .\n5978\tThe basic premise is intriguing but quickly becomes distasteful and downright creepy .\n5979\tThe Pool drowned me in boredom .\n5980\tIt 's like an all-star salute to Disney 's cheesy commercialism .\n5981\tIt 's hard to imagine any recent film , independent or otherwise , that makes as much of a mess as this one .\n5982\tSome of the computer animation is handsome , and various amusing sidekicks add much-needed levity to the otherwise bleak tale , but overall the film never rises above mediocrity .\n5983\tThere 's an excellent 90-minute film here ; unfortunately , it runs for 170 .\n5984\tAs saccharine movies go , this is likely to cause massive cardiac arrest if taken in large doses .\n5985\tDie Another Day is only intermittently entertaining but it 's hard not to be a sucker for its charms , or perhaps it 's just impossible not to feel nostalgia for movies you grew up with .\n5986\tAs is often the case with ambitious , eager first-time filmmakers , Mr. Murray , a prolific director of music videos , stuffs his debut with more plot than it can comfortably hold .\n5987\tThe mystery of Enigma is how a rich historical subject , combined with so much first-rate talent ... could have yielded such a flat , plodding picture .\n5988\tIt throws quirky characters , odd situations , and off-kilter dialogue at us , all as if to say , `` Look at this !\n5989\tThis is an interesting movie ! ''\n5990\tBut the film itself is ultimately quite unengaging .\n5991\tThe inherent limitations of using a video game as the source material movie are once again made all too clear in this schlocky horror\\/action hybrid .\n5992\tIt 's not only dull because we 've seen -LRB- Eddie -RRB- Murphy do the genial-rogue shtick to death , but because the plot is equally hackneyed .\n5993\tAvary 's film never quite emerges from the shadow of Ellis ' book .\n5994\tA poorly scripted , preachy fable that forgets about unfolding a coherent , believable story in its zeal to spread propaganda .\n5995\tWhile it is interesting to witness the conflict from the Palestinian side , Longley 's film lacks balance ... and fails to put the struggle into meaningful historical context .\n5996\tWoo has as much right to make a huge action sequence as any director , but how long will filmmakers copy the `` Saving Private Ryan '' battle scenes before realizing Steven Spielberg got it right the first time ?\n5997\tIt 's sincere to a fault , but , unfortunately , not very compelling or much fun .\n5998\t... Jones , despite a definitely distinctive screen presence , just is n't able to muster for a movie that , its title notwithstanding , should have been a lot nastier if it wanted to fully capitalize on its lead 's specific gifts .\n5999\tThis follow-up seems so similar to the 1953 Disney classic that it makes one long for a geriatric Peter .\n6000\tWhy , you may ask , why should you buy the movie milk when the TV cow is free ?\n6001\tThere 's no good answer to that one .\n6002\tThis slow-moving Swedish film offers not even a hint of joy , preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party .\n6003\tA muddled limp biscuit of a movie , a vampire soap opera that does n't make much sense even on its own terms .\n6004\tThere 's the plot , and a maddeningly insistent and repetitive piano score that made me want to scream .\n6005\tThis is a movie so insecure about its capacity to excite that it churns up not one but two flagrantly fake thunderstorms to underscore the action .\n6006\tThis is amusing for about three minutes .\n6007\tKlein , charming in comedies like American Pie and dead-on in Election , delivers one of the saddest action hero performances ever witnessed .\n6008\tIt 's rare to see a movie that takes such a speedy swan dive from `` promising '' to `` interesting '' to `` familiar '' before landing squarely on `` stupid '' .\n6009\tThis is the sort of low-grade dreck that usually goes straight to video -- with a lousy script , inept direction , pathetic acting , poorly dubbed dialogue and murky cinematography , complete with visible boom mikes .\n6010\tThe direction occasionally rises to the level of marginal competence , but for most of the film it is hard to tell who is chasing who or why .\n6011\tThere are few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending .\n6012\tIt wo n't harm anyone , but neither can I think of a very good reason to rush right out and see it .\n6013\tAfter all , it 'll probably be in video stores by Christmas , and it might just be better suited to a night in the living room than a night at the movies .\n6014\tLooks more like a travel-agency video targeted at people who like to ride bikes topless and roll in the mud than a worthwhile glimpse of independent-community guiding lights .\n6015\tGiven too much time to consider the looseness of the piece , the picture begins to resemble the shapeless , grasping actors ' workshop that it is .\n6016\tThey kept much of the plot but jettisoned the stuff that would make this a moving experience for people who have n't read the book .\n6017\tJust because A Walk to Remember is shrewd enough to activate girlish tear ducts does n't mean it 's good enough for our girls .\n6018\t-LRB- Carvey 's -RRB- characters are both overplayed and exaggerated , but then again , subtlety has never been his trademark .\n6019\tIt 's mildly interesting to ponder the peculiar American style of justice that plays out here , but it 's so muddled and derivative that few will bother thinking it all through .\n6020\tThis dreadfully earnest inversion of the Concubine love triangle eschews the previous film 's historical panorama and roiling pathos for bug-eyed mugging and gay-niche condescension .\n6021\tBrown 's saga , like many before his , makes for snappy prose but a stumblebum of a movie .\n6022\tThe boys ' sparring , like the succession of blows dumped on Guei , wears down the story 's more cerebral , and likable , plot elements .\n6023\tThe script by Vincent R. Nebrida ... tries to cram too many ingredients into one small pot .\n6024\tThe story is so light and sugary that were it a Macy 's Thanksgiving Day Parade balloon , extra heavy-duty ropes would be needed to keep it from floating away .\n6025\tOedekerk mugs mercilessly , and the genuinely funny jokes are few and far between .\n6026\tSince Dahmer resorts to standard slasher flick thrills when it should be most in the mind of the killer , it misses a major opportunity to be truly revelatory about his psyche .\n6027\tOnly those most addicted to film violence in all its forms will find anything here to appreciate .\n6028\tCold and scattered , Minority Report commands interest almost solely as an exercise in gorgeous visuals .\n6029\tThat 's not vintage Spielberg and that , finally , is minimally satisfying .\n6030\tEvery now and again , a movie comes along to remind us of how very bad a motion picture can truly be .\n6031\tFrank McKlusky C.I. is that movie !\n6032\tIt 's not difficult to spot the culprit early-on in this predictable thriller .\n6033\t... a mostly boring affair with a confusing sudden finale that 's likely to irk viewers .\n6034\tThe trappings of I Spy are so familiar you might as well be watching a rerun .\n6035\tWhat starts off as a potentially incredibly twisting mystery becomes simply a monster chase film .\n6036\tIn the wake of Saving Private Ryan , Black Hawk Down and We Were Soldiers , you are likely to be as heartily sick of mayhem as Cage 's war-weary marine .\n6037\tIt is messy , uncouth , incomprehensible , vicious and absurd .\n6038\tReally does feel like a short stretched out to feature length .\n6039\tHampered -- no , paralyzed -- by a self-indulgent script ... that aims for poetry and ends up sounding like satire .\n6040\tCheap , vulgar dialogue and a plot that crawls along at a snail 's pace .\n6041\tAnd if you appreciate the one-sided theme to Lawrence 's over-indulgent tirade , then knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest .\n6042\tIf you are willing to do this , then you so crazy !\n6043\tDirected without the expected flair or imagination by Hong Kong master John Woo , Windtalkers airs just about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length .\n6044\tIt 's a very tasteful rock and roll movie .\n6045\tYou could put it on a coffee table anywhere .\n6046\tThe movie is loaded with good intentions , but in his zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story , Minac drains his movie of all individuality .\n6047\tAn infuriating film .\n6048\tJust when you think you are making sense of it , something happens that tells you there is no sense .\n6049\tThe entire movie is so formulaic and forgettable that it 's hardly over before it begins to fade from memory .\n6050\tThe setting turns out to be more interesting than any of the character dramas , which never reach satisfying conclusions .\n6051\tAs an entertainment destination for the general public , Kung Pow sets a new benchmark for lameness .\n6052\tThis misty-eyed Southern nostalgia piece , in treading the line between sappy and sanguine , winds up mired in tear-drenched quicksand .\n6053\tAs pure over-the-top trash , any John Waters movie has it beat by a country mile .\n6054\tWendigo wants to be a monster movie for the art-house crowd , but it falls into the trap of pretention almost every time .\n6055\tBigelow offers some flashy twists and turns that occasionally fortify this turgid fable .\n6056\tBut for the most part , The Weight of Water comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness .\n6057\tThis film biggest problem ?\n6058\tNo laughs .\n6059\tLess-than-compelling documentary of a Yiddish theater clan .\n6060\tThat the Chuck Norris `` grenade gag '' occurs about 7 times during Windtalkers is a good indication of how serious-minded the film is .\n6061\tViewers are asked so often to suspend belief that were it not for Holm 's performance , the film would be a total washout .\n6062\tIt 's not exactly worth the bucks to expend the full price for a date , but when it comes out on video , it 's well worth a rental .\n6063\tI ca n't begin to tell you how tedious , how resolutely unamusing , how thoroughly unrewarding all of this is , and what a reckless squandering of four fine acting talents ...\n6064\tEverybody loves a David and Goliath story , and this one is told almost entirely from David 's point of view .\n6065\tThrow Smoochy from the train !\n6066\tEventually , they will have a showdown , but , by then , your senses are as mushy as peas and you do n't care who fires the winning shot .\n6067\tIrwin and his director never come up with an adequate reason why we should pay money for what we can get on television for free .\n6068\tA light , engaging comedy that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation .\n6069\tCedar somewhat defuses this provocative theme by submerging it in a hoary love triangle .\n6070\tTo paraphrase a line from another Dickens ' novel , Nicholas Nickleby is too much like a fragment of an underdone potato .\n6071\tThe actresses may have worked up a back story for the women they portray so convincingly , but viewers do n't get enough of that background for the characters to be involving as individuals rather than types .\n6072\tThe result , however well-intentioned , is ironically just the sort of disposable , kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today 's Hollywood .\n6073\tAn extremely unpleasant film .\n6074\tA movie just for Friday fans , critics be damned .\n6075\tIf you already like this sort of thing , this is that sort of thing all over again .\n6076\tA sincere but dramatically conflicted gay coming-of-age tale .\n6077\tWait for it to hit cable .\n6078\tUltimately feels like just one more in the long line of films this year about the business of making movies .\n6079\tNothing but one relentlessly depressing situation after another for its entire running time , something that you could easily be dealing with right now in your lives .\n6080\t77 minutes of Pokemon may not last 4ever , it just seems like it does .\n6081\tMy only wish is that Celebi could take me back to a time before I saw this movie and I could just skip it .\n6082\tThe one not-so-small problem with Expecting is that the entire exercise has no real point .\n6083\tA movie you observe , rather than one you enter into .\n6084\t-LRB- At least -RRB- Moore is a real charmer .\n6085\tJohn Carlen 's script is full of unhappy , two-dimensional characters who are anything but compelling .\n6086\tLaBute ca n't avoid a fatal mistake in the modern era : He 's changed the male academic from a lower-class Brit to an American , a choice that upsets the novel 's exquisite balance and shreds the fabric of the film .\n6087\tThe notion of deleting emotion from people , even in an advanced Prozac Nation , is so insanely dysfunctional that the rampantly designed Equilibrium becomes a concept doofus .\n6088\tStale first act , Scrooge story , blatant product placement , some very good comedic songs , strong finish , dumb fart jokes .\n6089\tUnsurprisingly , the way this all works out makes the women look more like stereotypical caretakers and moral teachers , instead of serious athletes .\n6090\tA film that loses sight of its own story .\n6091\tAdam Sandler 's Eight Crazy Nights grows on you -- like a rash .\n6092\tThe big-screen Scooby makes the silly original cartoon seem smart and well-crafted in comparison .\n6093\tFew of the increasingly far-fetched events that first-time writer-director Neil Burger follows up with are terribly convincing , which is a pity , considering Barry 's terrific performance .\n6094\tGets better after Foster leaves that little room .\n6095\tThe movie is as padded as Allen 's jelly belly .\n6096\tResident Evil is n't a product of its cinematic predecessors so much as an MTV , sugar hysteria , and PlayStation cocktail .\n6097\tA rather average action film that benefits from several funny moments supplied by Epps .\n6098\t... unspeakably , unbearably dull , featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted .\n6099\tResembles a soft porn Brian De Palma pastiche .\n6100\tBluto Blutarsky , we miss you .\n6101\tInnocuous enough to make even Jean-Claude Van Damme look good .\n6102\tIt 's a glorified sitcom , and a long , unfunny one at that .\n6103\tWoody Allen can write and deliver a one liner as well as anybody .\n6104\tBut I had a lot of problems with this movie .\n6105\tDevoid of any of the qualities that made the first film so special .\n6106\tAll movie long , City by the Sea swings from one approach to the other , but in the end , it stays in formula -- which is a waste of De Niro , McDormand and the other good actors in the cast .\n6107\tPlotless collection of moronic stunts is by far the worst movie of the year .\n6108\tHowever sincere it may be , The Rising Place never quite justifies its own existence .\n6109\tParker updates the setting in an attempt to make the film relevant today , without fully understanding what it was that made the story relevant in the first place .\n6110\tIt 's sort of a 21st century morality play with a Latino hip hop beat .\n6111\tBut the second half of the movie really goes downhill .\n6112\tPaxton 's uneven directorial debut fails to unlock the full potential of what is in many ways a fresh and dramatically substantial spin on the genre .\n6113\tThe script becomes lifeless and falls apart like a cheap lawn chair .\n6114\tThe script falls back on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy .\n6115\tThe film starts promisingly , but the ending is all too predictable and far too cliched to really work .\n6116\tLet 's issue a moratorium , effective immediately , on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate .\n6117\tIt 's the element of condescension , as the filmmakers look down on their working-class subjects from their lofty perch , that finally makes Sex With Strangers , which opens today in the New York metropolitan area , so distasteful .\n6118\tAlternately frustrating and rewarding .\n6119\tIt 's impossible to even categorize this as a smutty guilty pleasure .\n6120\tDespite suffering a sense-of-humour failure , The Man Who Wrote Rocky does not deserve to go down with a ship as leaky as this .\n6121\tSwinging , the film makes it seem , is not a hobby that attracts the young and fit .\n6122\tOr intelligent .\n6123\tThe most memorable moment was when Green threw medical equipment at a window ; not because it was particularly funny , but because I had a serious urge to grab the old lady at the end of my aisle 's walker and toss it at the screen in frustration .\n6124\tSee Clockstoppers if you have nothing better to do with 94 minutes .\n6125\tBut be warned , you too may feel time has decided to stand still .\n6126\tOr that the battery on your watch has died .\n6127\tSuffers from over-familiarity since hit-hungry British filmmakers have strip-mined the Monty formula mercilessly since 1997 .\n6128\tThere are enough throwaway references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit .\n6129\tYes , I have given this movie a rating of zero .\n6130\tBut fans of the show should not consider this a diss .\n6131\tConsider it ` perfection . '\n6132\tThe cumulative effect of the movie is repulsive and depressing .\n6133\tChildren and adults enamored of all things Pokemon wo n't be disappointed .\n6134\tI do n't even care that there 's no plot in this Antonio Banderas-Lucy Liu faceoff .\n6135\tIt 's still terrible !\n6136\tChildren of the Century , though well dressed and well made , ultimately falls prey to the contradiction that afflicts so many movies about writers .\n6137\tIt 's not so much a movie as a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil ' Bow Wow .\n6138\tPeralta 's mythmaking could have used some informed , adult hindsight .\n6139\tA close-to-solid espionage thriller with the misfortune of being released a few decades too late .\n6140\tCloaks a familiar anti-feminist equation -LRB- career - kids = misery -RRB- in tiresome romantic-comedy duds .\n6141\tThe Good Girl is a film in which the talent is undeniable but the results are underwhelming .\n6142\tJust a collection of this and that -- whatever fills time -- with no unified whole .\n6143\tThe animation and game phenomenon that peaked about three years ago is actually dying a slow death , if the poor quality of Pokemon 4 Ever is any indication .\n6144\tOnly about as sexy and dangerous as an actress in a role that reminds at every turn of Elizabeth Berkley 's flopping dolphin-gasm .\n6145\tKids who are into this Thornberry stuff will probably be in wedgie heaven .\n6146\tAnyone else who may , for whatever reason , be thinking about going to see this movie is hereby given fair warning .\n6147\tMr. Soderbergh 's direction and visual style struck me as unusually and unimpressively fussy and pretentious .\n6148\tDo you say `` hi '' to your lover when you wake up in the morning ?\n6149\tIt makes me feel weird \\/ Thinking about all the bad things in the world \\/ Like puppies with broken legs \\/ And butterflies that die \\/ And movies starring pop queens\n6150\tDirector Tom Dey demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon , but Showtime 's uninspired send-up of TV cop show cliches mostly leaves him shooting blanks .\n6151\t` Yes , that 's right : it 's Forrest Gump , Angel Of Death . '\n6152\tA wildly erratic drama with sequences that make you wince in embarrassment and others , thanks to the actors , that are quite touching .\n6153\tWhile easier to sit through than most of Jaglom 's self-conscious and gratingly irritating films , it 's still tainted by cliches , painful improbability and murky points .\n6154\tAbout as enjoyable , I would imagine , as searching for a quarter in a giant pile of elephant feces ... positively dreadful .\n6155\tA generic international version of a typical American horror film .\n6156\t... while certainly clever in spots , this too-long , spoofy update of Shakespeare 's Macbeth does n't sustain a high enough level of invention .\n6157\tLucas has in fact come closer than anyone could desire to the cheap , graceless , hackneyed sci-fi serials of the '30s and '40s .\n6158\tThere 's a lot of good material here , but there 's also a lot of redundancy and unsuccessful crudeness accompanying it .\n6159\tAbsurdities and clichÃ©s accumulate like lint in a fat man 's navel .\n6160\tIf you think it 's a riot to see Rob Schneider in a young woman 's clothes , then you 'll enjoy The Hot Chick .\n6161\tThe sheer dumbness of the plot -LRB- other than its one good idea -RRB- and the movie 's inescapable air of sleaziness get you down .\n6162\tStrangely comes off as a kingdom more mild than wild .\n6163\tThe next big thing 's not-so-big -LRB- and not-so-hot -RRB- directorial debut .\n6164\tYet another iteration of what 's become one of the movies ' creepiest conventions , in which the developmentally disabled are portrayed with almost supernatural powers to humble , teach and ultimately redeem their mentally `` superior '' friends , family ...\n6165\tBond-inspired ?\n6166\tCertainly .\n6167\tLikely to have decades of life as a classic movie franchise ?\n6168\tLet 's hope not .\n6169\tThis flat run at a hip-hop Tootsie is so poorly paced you could fit all of Pootie Tang in between its punchlines .\n6170\tDavis has energy , but she does n't bother to make her heroine 's book sound convincing , the gender-war ideas original , or the comic scenes fly .\n6171\tSurprisingly , considering that Baird is a former film editor , the movie is rather choppy .\n6172\tNone of this is very original , and it is n't particularly funny .\n6173\t... a bland murder-on-campus yawner .\n6174\tA humorless journey into a philosophical void .\n6175\tThese two are generating about as much chemistry as an Iraqi factory poised to receive a UN inspector .\n6176\tJust as the lousy Tarantino imitations have subsided , here comes the first lousy Guy Ritchie imitation .\n6177\tA passable romantic comedy , in need of another couple of passes through the word processor .\n6178\tThe movie attempts to mine laughs from a genre -- the gangster\\/crime comedy -- that wore out its welcome with audiences several years ago , and its cutesy reliance on movie-specific cliches is n't exactly endearing .\n6179\tshows Holmes has the screen presence to become a major-league leading lady , -LRB- but -RRB- the movie itself is an underachiever , a psychological mystery that takes its sweet time building to a climax that 's scarcely a surprise by the time it arrives .\n6180\tUltimately ... the movie is too heady for children , and too preachy for adults .\n6181\tIt 's just a little too self-satisfied .\n6182\tClever but not especially compelling .\n6183\tMcKay seems embarrassed by his own invention and tries to rush through the intermediary passages , apparently hoping that the audience will not notice the glaring triteness of the plot device he has put in service .\n6184\tA piece of mildly entertaining , inoffensive fluff that drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category : unembarrassing but unmemorable .\n6185\tLaBute was more fun when his characters were torturing each other psychologically and talking about their genitals in public .\n6186\tThe movie weighs no more than a glass of flat champagne .\n6187\tThe problem with ANTWONE FISHER is that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher .\n6188\tAlarms for Duvall 's throbbing sincerity and his elderly propensity for patting people while he talks .\n6189\tWhat little grace -LRB- Rifkin 's -RRB- tale of precarious skid-row dignity achieves is pushed into the margins by predictable plotting and tiresome histrionics .\n6190\tTries to work in the same vein as the brilliance of Animal House but instead comes closer to the failure of the third Revenge of the Nerds sequel .\n6191\tUnfortunately , Kapur modernizes A.E.W. Mason 's story to suit the sensibilities of a young American , a decision that plucks `` The Four Feathers '' bare .\n6192\t... what a banal bore the preachy Circuit turns out to be\n6193\tFalsehoods pile up , undermining the movie 's reality and stifling its creator 's comic voice .\n6194\tA mechanical action-comedy whose seeming purpose is to market the charismatic Jackie Chan to even younger audiences .\n6195\tOne of the most incoherent features in recent memory .\n6196\tLow rent from frame one .\n6197\tEight Legged Freaks ?\n6198\tNo big hairy deal .\n6199\tThe issues are presented in such a lousy way , complete with some of the year 's -LRB- unintentionally -RRB- funniest moments , that it 's impossible to care .\n6200\tLaggard drama wending its way to an uninspired philosophical epiphany .\n6201\tThe respective charms of Sandra Bullock and Hugh Grant have worn threadbare .\n6202\t` This movie sucks . '\n6203\tNone of this so-called satire has any sting to it , as if Woody is afraid of biting the hand that has finally , to some extent , warmed up to him .\n6204\tA few nonbelievers may rethink their attitudes when they see the joy the characters take in this creed , but skeptics are n't likely to enter the theater .\n6205\tBad in such a bizarre way that it 's almost worth seeing , if only to witness the crazy confluence of purpose and taste .\n6206\tThere 's more repetition than creativity throughout the movie .\n6207\tHugh Grant 's act is so consuming that sometimes it 's difficult to tell who the other actors in the movie are .\n6208\tAlthough the sequel has all the outward elements of the original , the first film 's lovely flakiness is gone , replaced by the forced funniness found in the dullest kiddie flicks .\n6209\tI 've had more interesting -- and , dare I say , thematically complex -- bowel movements than this long-on-the-shelf , point-and-shoot exercise in gimmicky crime drama .\n6210\tWhat we get ... is Caddyshack crossed with the Loyal Order of Raccoons .\n6211\tThe jokes are flat , and the action looks fake .\n6212\tWhen a movie asks you to feel sorry for Mick Jagger 's sex life , it already has one strike against it .\n6213\tThere are now two signs that M. Night Shyamalan 's debut feature sucked up all he has to give to the mystic genres of cinema : Unbreakable and Signs .\n6214\t... hokey art house pretension .\n6215\t... a weak and ineffective ghost story without a conclusion or pay off .\n6216\tGussied up with so many distracting special effects and visual party tricks that it 's not clear whether we 're supposed to shriek or laugh .\n6217\tPlodding , poorly written , murky and weakly acted , the picture feels as if everyone making it lost their movie mojo .\n6218\tThis is a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life .\n6219\tA baffling subplot involving smuggling drugs inside Danish cows falls flat , and if you 're going to alter the Bard 's ending , you 'd better have a good alternative .\n6220\tSoderbergh seems capable only of delivering artfully lighted , earnest inquiries that lack the kind of genuine depth that would make them redeemable .\n6221\tThe only thing that distinguishes a Randall Wallace film from any other is the fact that there is nothing distinguishing in a Randall Wallace film .\n6222\tSilly stuff , all mixed up together like a term paper from a kid who ca n't quite distinguish one sci-fi work from another .\n6223\tThere is so much plodding sensitivity .\n6224\tThe town has kind of an authentic feel , but each one of these people stand out and everybody else is in the background and it just seems manufactured to me and artificial .\n6225\t... too sappy for its own good .\n6226\tCircuit queens wo n't learn a thing , they 'll be too busy cursing the film 's strategically placed white sheets .\n6227\tAs an actress , Madonna is one helluva singer .\n6228\tAs the Mediterranean sparkles , ` Swept Away ' sinks .\n6229\tEvery so often a film comes along that is so insanely stupid , so awful in so many ways that watching it leaves you giddy .\n6230\tHalf Past Dead is just such an achievement .\n6231\tExpanded to 65 minutes for theatrical release , it still feels somewhat unfinished .\n6232\tIt all looks and plays like a $ 40 million version of a game you 're more likely to enjoy on a computer .\n6233\t-LRB- Javier Bardem is -RRB- one of the few reasons to watch the film , which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama .\n6234\tFeels shrill , simple and soapy .\n6235\tAdults , other than the parents ... will be hard pressed to succumb to the call of the wild .\n6236\tBrady achieves the remarkable feat of squandering a topnotch foursome of actors ... by shoving them into every clichÃ©d white-trash situation imaginable .\n6237\tIn the name of an allegedly inspiring and easily marketable flick , The Emperor 's Club turns a blind eye to the very history it pretends to teach .\n6238\tNo amount of blood and disintegrating vampire cadavers can obscure this movie 's lack of ideas .\n6239\tA direct-to-void release , heading nowhere .\n6240\tTypical animÃ© , with cheapo animation -LRB- like Saturday morning TV in the '60s -RRB- , a complex sword-and-sorcery plot and characters who all have big round eyes and Japanese names .\n6241\tBelow is well below expectations .\n6242\tAt no point during K-19 : The Widowmaker did this viewer feel enveloped in a story that , though meant to be universal in its themes of loyalty , courage and dedication to a common goal , never seems to leave the lot .\n6243\t... standard guns versus martial arts cliche with little new added .\n6244\tEmpire ca n't make up its mind whether it wants to be a gangster flick or an art film .\n6245\tIt does n't work as either .\n6246\tGiven the fact that virtually no one is bound to show up at theatres for it , the project should have been made for the tube .\n6247\tPossession is in the end an honorable , interesting failure .\n6248\tIt falls far short of poetry , but it 's not bad prose .\n6249\tJonathan Parker 's Bartleby should have been the be-all-end-all of the modern-office anomie films .\n6250\tThere may have been a good film in `` Trouble Every Day , '' but it is not what is on the screen .\n6251\tUnfortunately , Carvey 's rubber-face routine is no match for the insipid script he has crafted with Harris Goldberg .\n6252\tViewed as a comedy , a romance , a fairy tale , or a drama , there 's nothing remotely triumphant about this motion picture .\n6253\tThere 's something unintentionally comic in the film 's drumbeat about authenticity , given the stale plot and pornographic way the film revels in swank apartments , clothes and parties .\n6254\tThe Master of Disguise is funny -- not `` ha ha '' funny , `` dead circus performer '' funny .\n6255\tAnd for all the wrong reasons besides .\n6256\tA zippy 96 minutes of mediocre special effects , hoary dialogue , fluxing accents , and -- worst of all -- silly-looking Morlocks .\n6257\tA 75-minute sample of puerile rubbish that is listless , witless , and devoid of anything resembling humor .\n6258\tYou leave feeling like you 've endured a long workout without your pulse ever racing .\n6259\tThe waterlogged script plumbs uncharted depths of stupidity , incoherence and sub-sophomoric sexual banter .\n6260\tWith McConaughey in an entirely irony-free zone and Bale reduced mainly to batting his sensitive eyelids , there 's not enough intelligence , wit or innovation on the screen to attract and sustain an older crowd .\n6261\tIt 's the type of stunt the Academy loves : a powerful political message stuffed into an otherwise mediocre film .\n6262\tIn theory , a middle-aged romance pairing Clayburgh and Tambor sounds promising , but in practice it 's something else altogether -- clownish and offensive and nothing at all like real life .\n6263\tSo mind-numbingly awful that you hope Britney wo n't do it one more time , as far as movies are concerned .\n6264\tThe images are usually abbreviated in favor of mushy obviousness and telegraphed pathos , particularly where Whitaker 's misfit artist is concerned .\n6265\tIf Welles was unhappy at the prospect of the human race splitting in two , he probably would n't be too crazy with his great-grandson 's movie splitting up in pretty much the same way .\n6266\tSets animation back 30 years , musicals back 40 years and Judaism back at least 50 .\n6267\tWeirdly , Broomfield has compelling new material but he does n't unveil it until the end , after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car .\n6268\tMight best be enjoyed as a daytime soaper .\n6269\teventually arrives at its heart , as simple self-reflection meditation .\n6270\tA showcase for both the scenic splendor of the mountains and for legendary actor Michel Serrault , the film is less successful on other levels .\n6271\tBoy oh boy , it 's a howler .\n6272\tA few pieces of the film buzz and whir ; very little of it actually clicks .\n6273\tThe thing just never gets off the ground .\n6274\t... contains very few laughs and even less surprises .\n6275\tThe actors must indeed be good to recite some of this laughable dialogue with a straight face .\n6276\tMost of the storylines feel like time fillers between surf shots .\n6277\tThe movie is n't horrible , but you can see mediocre cresting on the next wave .\n6278\tHowever stale the material , Lawrence 's delivery remains perfect ; his great gift is that he can actually trick you into thinking some of this worn-out , pandering palaver is actually funny .\n6279\tThere 's nothing remotely topical or sexy here .\n6280\tThe Tuxedo was n't just bad ; it was , as my friend David Cross would call it , ` Hungry-Man portions of bad ' .\n6281\tBlue Crush is so prolonged and boring it is n't even close to being the barn-burningly bad movie it promised it would be .\n6282\tThe sequel plays out like a flimsy excuse to give Blade fans another look at Wesley Snipes ' iconic hero doing battle with dozens of bad guys -- at once .\n6283\tWhile Van Wilder may not be the worst National Lampoon film , it 's far from being this generation 's Animal House .\n6284\tSo devoid of pleasure or sensuality that it can not even be dubbed hedonistic .\n6285\tReeks of rot and hack work from start to finish .\n6286\tAn exhausting family drama about a porcelain empire and just as hard a flick as its subject matter .\n6287\tWoody Allen has really found his groove these days .\n6288\tThe problem is that it is one that allows him to churn out one mediocre movie after another .\n6289\tThe bland outweighs the nifty , and Cletis Tout never becomes the clever crime comedy it thinks it is .\n6290\tIt 's such a mechanical endeavor -LRB- that -RRB- it never bothers to question why somebody might devote time to see it .\n6291\tThe art direction is often exquisite , and the anthropomorphic animal characters are beautifully realized through clever makeup design , leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack .\n6292\tIf the predictability of bland comfort food appeals to you , then the film is a pleasant enough dish .\n6293\tUltimately , in the history of the Academy , people may be wondering what all that jazz was about `` Chicago '' in 2002 .\n6294\tZellweger 's whiny pouty-lipped poof faced and spindly attempt at playing an ingenue makes her nomination as best actress even more of a an a\n6295\tA seriously bad film with seriously warped logic by writer-director Kurt Wimmer at the screenplay level .\n6296\tA pleasant and engaging enough sit , but in trying to have the best of both worlds it ends up falling short as a whole .\n6297\tIts plot and animation offer daytime TV serviceability , but little more .\n6298\tA tired , unimaginative and derivative variation of that already-shallow genre .\n6299\tHuman Nature , in short , is n't nearly as funny as it thinks it is ; neither is it as smart .\n6300\tA film with a great premise but only a great premise .\n6301\tInstead of building to a laugh riot we are left with a handful of disparate funny moments of no real consequence .\n6302\tKirshner and Monroe seem to be in a contest to see who can out-bad-act the other .\n6303\t-LRB- Kirshner wins , but it 's close . -RRB-\n6304\tA lame romantic comedy about an unsympathetic character and someone who would not likely be so stupid as to get involved with her .\n6305\tWhat started out as a taut contest of wills between Bacon and Theron , deteriorates into a protracted and borderline silly chase sequence .\n6306\t-LRB- Sam 's -RRB- self-flagellation is more depressing than entertaining .\n6307\tAn ugly , pointless , stupid movie .\n6308\tSimply put , there should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn .\n6309\tThe Master of Disguise represents Adam Sandler 's latest attempt to dumb down the universe .\n6310\tThis is an ungainly movie , ill-fitting , with its elbows sticking out where the knees should be .\n6311\tToo silly to take seriously .\n6312\tThe inevitable double - and triple-crosses arise , but the only drama is in waiting to hear how John Malkovich 's reedy consigliere will pronounce his next line .\n6313\tEverything 's serious , poetic , earnest and -- sadly -- dull .\n6314\tI like it .\n6315\tNo , I hate it .\n6316\tNo , I love it ... hell , I dunno .\n6317\tThis mess of a movie is nothing short of a travesty of a transvestite comedy .\n6318\tIt 's clotted with heavy-handed symbolism , dime-store psychology and endless scenic shots that make 105 minutes seem twice as long .\n6319\tA fifty car pileup of cliches .\n6320\tIt 's a stale , overused cocktail using the same olives since 1962 as garnish .\n6321\tNot only is entry number twenty the worst of the Brosnan bunch , it 's one of the worst of the entire franchise .\n6322\tWhat ultimately makes Windtalkers a disappointment is the superficial way it deals with its story .\n6323\tAs an actor 's showcase , Hart 's War has much to recommend it , even if the top-billed Willis is not the most impressive player .\n6324\tAs a story of dramatic enlightenment , the screenplay by Billy Ray and Terry George leaves something to be desired .\n6325\tA non-Britney person might survive a screening with little harm done , except maybe for the last 15 minutes , which are as maudlin as any after-school special you can imagine .\n6326\tIt 's not hateful .\n6327\tIt 's simply stupid , irrelevant and deeply , truly , bottomlessly cynical .\n6328\tPossibly not since Grumpy Old Men have I heard a film so solidly connect with one demographic while striking out with another .\n6329\tThe drama was so uninspiring that even a story immersed in love , lust , and sin could n't keep my attention .\n6330\tA rather tired exercise in nostalgia .\n6331\tThe misery of these people becomes just another voyeuristic spectacle , to be consumed and forgotten .\n6332\tSome Body often looks like an episode of the TV show Blind Date , only less technically proficient and without the pop-up comments .\n6333\tBad Company has one of the most moronic screenplays of the year , full of holes that will be obvious even to those who are n't looking for them .\n6334\tPredecessors The Mummy and The Mummy Returns stand as intellectual masterpieces next to The Scorpion King .\n6335\tA markedly inactive film , City is conversational bordering on confessional .\n6336\tWhile kids will probably eat the whole thing up , most adults will be way ahead of the plot .\n6337\tDespite an impressive roster of stars and direction from Kathryn Bigelow , The Weight of Water is oppressively heavy .\n6338\tWe 've liked Klein 's other work but Rollerball left us cold .\n6339\tThey were afraid to show this movie to reviewers before its opening , afraid of the bad reviews they thought they 'd earn .\n6340\tThey were right .\n6341\tIt would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly , yet it is impossible to find the film anything but appalling , shamelessly manipulative and contrived , and totally lacking in conviction .\n6342\tOffers no new insight on the matter , nor do its characters exactly spring to life .\n6343\tNohe has made a decent ` intro ' documentary , but he feels like a spectator and not a participant .\n6344\tApparently designed as a reverie about memory and regret , but the only thing you 'll regret is remembering the experience of sitting through it .\n6345\tA 94-minute travesty of unparalleled proportions , writer-director Parker seems to go out of his way to turn the legendary wit 's classic mistaken identity farce into brutally labored and unfunny hokum .\n6346\tGuy gets girl , guy loses girl , audience falls asleep .\n6347\tToo ordinary to restore -LRB- Harmon -RRB- to prominence , despite some creepy scenes that evoke childish night terrors , and a praiseworthy attempt to generate suspense rather than gross out the audience .\n6348\tStirs potentially enticing ingredients into an uneasy blend of Ghost and Close Encounters of the Third Kind .\n6349\tThe weird thing about The Santa Clause 2 , purportedly a children 's movie , is that there is nothing in it to engage children emotionally .\n6350\tIt 's pretentious in a way that verges on the amateurish .\n6351\tContains the humor , characterization , poignancy , and intelligence of a bad sitcom .\n6352\tIt does n't matter that the film is less than 90 minutes .\n6353\tIt still feels like a prison stretch .\n6354\tPartly a schmaltzy , by-the-numbers romantic comedy , partly a shallow rumination on the emptiness of success -- and entirely soulless .\n6355\tOng chooses to present Ah Na 's life as a slight , weightless fairy tale , whose most unpleasant details seem to melt away in the face of the character 's blank-faced optimism .\n6356\tThe overall feel is not unlike watching a glorified episode of `` 7th Heaven . ''\n6357\tJust a Kiss is a just a waste .\n6358\t... this is n't even a movie we can enjoy as mild escapism ; it is one in which fear and frustration are provoked to intolerable levels .\n6359\tFrankly , it 's kind of insulting , both to men and women .\n6360\tAnd it 's not that funny -- which is just generally insulting .\n6361\tAs if Drop Dead Gorgeous was n't enough , this equally derisive clunker is fixated on the spectacle of small-town competition .\n6362\tA wretched movie that reduces the Second World War to one man 's quest to find an old flame .\n6363\tThis is a remake by the numbers , linking a halfwit plot to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie .\n6364\tIt 's better than mid-range Steven Seagal , but not as sharp as Jet Li on rollerblades .\n6365\tThere 's a reason why halftime is only fifteen minutes long .\n6366\tThe talk-heavy film plays like one of Robert Altman 's lesser works .\n6367\tAs happily glib and vicious as its characters .\n6368\tOne of those films that started with a great premise and then just fell apart .\n6369\tNo better or worse than ` Truth or Consequences , N.M. ' or any other interchangeable actioner with imbecilic Mafia toolbags botching a routine assignment in a Western backwater .\n6370\t-LRB- MacDowell -RRB- ventures beyond her abilities several times here and reveals how bad an actress she is .\n6371\tI can imagine this movie as a b & w British comedy , circa 1960 , with Peter Sellers , Kenneth Williams , et al. , but at this time , with this cast , this movie is hopeless .\n6372\tTalky , artificial and opaque ... an interesting technical exercise , but a tedious picture .\n6373\tKurys never shows why , of all the period 's volatile romantic lives , Sand and Musset are worth particular attention .\n6374\tAlmost nothing else -- raunchy and graphic as it may be in presentation -- is one-sided , outwardly sexist or mean-spirited .\n6375\tAnd in a sense , that 's a liability .\n6376\tIt 's easy to love Robin Tunney -- she 's pretty and she can act -- but it gets harder and harder to understand her choices .\n6377\tIf you 've got a house full of tots -- do n't worry , this will be on video long before they grow up and you can wait till then .\n6378\tThe new film of Anton Chekhov 's The Cherry Orchard puts the ` ick ' in ` classic . '\n6379\tHas an uppity musical beat that you can dance to , but its energy ca n't compare to the wit , humor and snappy dialogue of the original .\n6380\tIf I want music , I 'll buy the soundtrack .\n6381\tIf I want a real movie , I 'll buy the Criterion DVD .\n6382\tAn unremarkable , modern action\\/comedy buddy movie whose only nod to nostalgia is in the title .\n6383\tHas all the right elements but completely fails to gel together .\n6384\tWriter-director Stephen Gaghan has made the near-fatal mistake of being what the English call ` too clever by half . '\n6385\tSeagal ran out of movies years ago , and this is just the proof .\n6386\tThe movie is so contrived , nonsensical and formulaic that , come to think of it , the day-old shelf would be a more appropriate location to store it .\n6387\tAn awkwardly garish showcase that diverges from anything remotely probing or penetrating .\n6388\tThe name says it all .\n6389\tJackass is a vulgar and cheap-looking version of Candid Camera staged for the Marquis de Sade set .\n6390\tChildren , Christian or otherwise , deserve to hear the full story of Jonah 's despair -- in all its agonizing , Catch-22 glory -- even if they spend years trying to comprehend it .\n6391\tPleasant but not more than recycled jock piffle .\n6392\t... the kind of movie you see because the theater has air conditioning .\n6393\tWith Zoe Clarke-Williams 's lackluster thriller `` New Best Friend '' , who needs enemies ?\n6394\tJust another generic drama that has nothing going for it other than its exploitive array of obligatory cheap thrills .\n6395\tHip-hop prison thriller of stupefying absurdity .\n6396\tAn uneven mix of dark satire and childhood awakening .\n6397\taside from showing us in explicit detail how difficult it is to win over the two-drink-minimum crowd , there 's little to be learned from watching ` Comedian '\n6398\tA perfectly acceptable , perfectly bland , competently acted but by no means scary horror movie .\n6399\tThe film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based ` drama , ' but the emphasis on the latter leaves Blue Crush waterlogged .\n6400\tThe problem is the needlessly poor quality of its archival prints and film footage .\n6401\tThe images lack contrast , are murky and are frequently too dark to be decipherable .\n6402\tLike a soft drink that 's been sitting open too long : it 's too much syrup and not enough fizz .\n6403\tAs the movie dragged on , I thought I heard a mysterious voice , and felt myself powerfully drawn toward the light -- the light of the exit sign .\n6404\tI have returned from the beyond to warn you : this movie is 90 minutes long , and life is too short .\n6405\tThere are some fairly unsettling scenes , but they never succeed in really rattling the viewer .\n6406\tThe Emperor 's Club is one of those films that possesses all the good intentions in the world , but ...\n6407\tIn the end , The Weight of Water comes to resemble the kind of soft-core twaddle you 'd expect to see on Showtime 's ` Red Shoe Diaries . '\n6408\tA straight-ahead thriller that never rises above superficiality .\n6409\tGlizty but formulaic and silly ... Cagney 's ` top of the world ' has been replaced by the bottom of the barrel .\n6410\tThe re - enactments , however fascinating they may be as history , are too crude to serve the work especially well .\n6411\tIs anyone else out there getting tired of the whole slo-mo , double-pistoled , ballistic-pyrotechnic Hong Kong action aesthetic ?\n6412\tOnce again , director Chris Columbus takes a hat-in-hand approach to Rowling that stifles creativity and allows the film to drag on for nearly three hours .\n6413\tServing Sara is little more than a mall movie designed to kill time .\n6414\tToo smart to ignore but a little too smugly superior to like , this could be a movie that ends up slapping its target audience in the face by shooting itself in the foot .\n6415\tA well-made but emotionally scattered film whose hero gives his heart only to the dog .\n6416\tThe most repugnant adaptation of a classic text since Roland JoffÃ© and Demi Moore 's The Scarlet Letter .\n6417\tThe isolated moments of creative insanity finally are lost in the thin soup of canned humor .\n6418\tAs a movie , it never seems fresh and vital .\n6419\tIt never plays as dramatic even when dramatic things happen to people .\n6420\tIt labours as storytelling .\n6421\tThe Adventures of Pluto Nash is a whole lot of nada .\n6422\tA really good premise is frittered away in middle-of-the-road blandness .\n6423\tLawrence should stick to his day job .\n6424\tHe 's a better actor than a standup comedian .\n6425\tDespite the fact that this film was n't as bad as I thought it was going to be , it 's still not a good movie\n6426\tA well made indieflick in need of some trims and a more chemistry between its stars .\n6427\tI never thought I 'd say this , but I 'd much rather watch teens poking their genitals into fruit pies !\n6428\tA film neither bitter nor sweet , neither romantic nor comedic , neither warm nor fuzzy .\n6429\tTiresomely derivative and hammily acted .\n6430\tWe never truly come to care about the main characters and whether or not they 'll wind up together , and Michele 's spiritual quest is neither amusing nor dramatic enough to sustain interest .\n6431\tThe plot grows thin soon , and you find yourself praying for a quick resolution .\n6432\tToo bad Maggio could n't come up with a better script .\n6433\tMuch of the cast is stiff or just plain bad .\n6434\tRice is too pedestrian a filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories .\n6435\tAt best , Cletis Tout might inspire a trip to the video store -- in search of a better movie experience .\n6436\tWitless , pointless , tasteless and idiotic .\n6437\tNot really a thriller so much as a movie for teens to laugh , groan and hiss at .\n6438\tAs plain and pedestrian as catsup --\n6439\tAn improvement on the feeble examples of big-screen Poke-mania that have preceded it .\n6440\tI know we 're not supposed to take it seriously , but I ca n't shake the thought that Undercover Brother missed an opportunity to strongly present some profound social commentary .\n6441\tYour stomach for Heaven depends largely on your appetite for canned corn .\n6442\tA picture as erratic as its central character .\n6443\tWhatever satire Lucky Break was aiming for , it certainly got lost in the `` soon-to-be-forgettable '' section of the quirky rip-off prison romp pile .\n6444\tIt 's petty thievery like this that puts flimsy flicks like this behind bars\n6445\tThe package in which this fascinating -- and timely -- content comes wrapped is disappointingly generic .\n6446\tGuys say mean things and shoot a lot of bullets .\n6447\tSome of the characters die and others do n't , and the film pretends that those living have learned some sort of lesson , and , really , nobody in the viewing audience cares .\n6448\tWildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists : Totally Past His Prime .\n6449\tJust another combination of bad animation and mindless violence ... lacking the slightest bit of wit or charm .\n6450\tAll the movie 's narrative gymnastics ca n't disguise the fact that it 's inauthentic at its core and that its story just is n't worth telling .\n6451\tMuch like its easily dismissive take on the upscale lifestyle , there is n't much there here .\n6452\tThe film ultimately offers nothing more than people in an urban jungle needing other people to survive ...\n6453\tFor all its shoot-outs , fistfights , and car chases , this movie is a phlegmatic bore , so tedious it makes the silly spy vs. spy film The Sum of All Fears , starring Ben Affleck , seem downright Hitchcockian .\n6454\tThis mild-mannered farce , directed by one of its writers , John C. Walsh , is corny in a way that bespeaks an expiration date passed a long time ago .\n6455\tA bit too eager to please .\n6456\tYou 'd be hard put to find a movie character more unattractive or odorous -LRB- than Leon -RRB- .\n6457\tKapur 's contradictory feelings about his material result in a movie that works against itself .\n6458\t`` the road paved with good intentions leads to the video store ''\n6459\tAnimated drivel meant to enhance the self-image of drooling idiots .\n6460\tOne scene after another in this supposedly funny movie falls to the floor with a sickening thud .\n6461\t` The ChÃ¢teau is never quite able to overcome the cultural moat surrounding its ludicrous and contrived plot . '\n6462\tMeyjes focuses too much on Max when he should be filling the screen with this tortured , dull artist and monster-in-the - making .\n6463\tJacobi , the most fluent of actors , is given relatively dry material from Nijinsky 's writings to perform , and the visuals , even erotically frank ones , become dullingly repetitive .\n6464\tCrudup 's screen presence is the one thing that holds interest in the midst of a mushy , existential exploration of why men leave their families .\n6465\tThere is one surefire way to get a nomination for a best-foreign-film Oscar : Make a movie about whimsical folk who learn a nonchallenging , life-affirming lesson while walking around a foreign city with stunning architecture .\n6466\tDespite terrific special effects and funnier gags , Harry Potter and the Chamber of Secrets finds a way to make J.K. Rowling 's marvelous series into a deadly bore .\n6467\tAn incredibly narrow in-joke targeted to the tiniest segment of an already obscure demographic .\n6468\tThe only thing I laughed at were the people who paid to see it .\n6469\tAll of the elements are in place for a great film noir , but director George Hickenlooper 's approach to the material is too upbeat .\n6470\tThe hackneyed story about an affluent damsel in distress who decides to fight her bully of a husband is simply too overdone .\n6471\tthe phone rings and a voice tells you you 've got seven days left to live .\n6472\tThen you get another phone call warning you that if the video is n't back at Blockbuster before midnight , you 're going to face frightening late fees .\n6473\tO.K. , not really .\n6474\tPossibly the most irresponsible picture ever released by a major film studio .\n6475\tThe film 's overall mood and focus is interesting but constantly unfulfilling .\n6476\t... a cheap , ludicrous attempt at serious horror .\n6477\tThose of you who are not an eighth grade girl will most likely doze off during this one .\n6478\tBefuddled in its characterizations as it begins to seem as long as the two year affair which is its subject\n6479\tFrom beginning to end , this overheated melodrama plays like a student film .\n6480\tThe movie would seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine .\n6481\tIt 's just not very smart .\n6482\tLike the excruciating End of Days , Collateral Damage presents Schwarzenegger as a tragic figure , but sympathy really belongs with any viewer forced to watch him try out so many complicated facial expressions .\n6483\tImagine -LRB- if possible -RRB- a Pasolini film without passion or politics , or an Almodovar movie without beauty or humor , and you have some idea of the glum , numb experience of watching O Fantasma .\n6484\tIn trying to be daring and original , it comes off as only occasionally satirical and never fresh .\n6485\t90 punitive minutes of eardrum-dicing gunplay , screeching-metal smashups , and flaccid odd-couple sniping .\n6486\tSadly , though many of the actors throw off a spark or two when they first appear , they ca n't generate enough heat in this cold vacuum of a comedy to start a reaction .\n6487\tNever capitalizes on this concept and opts for the breezy and amateurish feel of an after school special on the subject of tolerance .\n6488\tAfter a while , Hoffman 's quirks and mannerisms , particularly his penchant for tearing up on cue -- things that seem so real in small doses -- become annoying and artificial .\n6489\tThis wretchedly unfunny wannabe comedy is inane and awful - no doubt , it 's the worst movie I 've seen this summer .\n6490\tIt 's drab .\n6491\tIt 's uninteresting .\n6492\tIt squanders Chan 's uniqueness ; it could even be said to squander Jennifer Love Hewitt !\n6493\tThe movie keeps coming back to the achingly unfunny Phonce and his several silly subplots .\n6494\tThis tale has been told and retold ; the races and rackets change , but the song remains the same .\n6495\tA surprisingly flat retread , hobbled by half-baked setups and sluggish pacing .\n6496\tForget the Psychology 101 study of romantic obsession and just watch the procession of costumes in castles and this wo n't seem like such a bore .\n6497\tA film that should be relegated to a dark video store corner is somehow making its way instead to theaters .\n6498\tIt 's hard to imagine acting that could be any flatter .\n6499\tNew ways of describing badness need to be invented to describe exactly how bad it is .\n6500\tLots of effort and intelligence are on display but in execution it is all awkward , static , and lifeless rumblings .\n6501\tWhen cowering and begging at the feet a scruffy Giannini , Madonna gives her best performance since Abel Ferrara had her beaten to a pulp in his Dangerous Game .\n6502\tI suspect that there are more interesting ways of dealing with the subject .\n6503\tThe film itself is about something very interesting and odd that would probably work better as a real documentary without the insinuation of mediocre acting or a fairly trite narrative .\n6504\tAn unintentional parody of every teen movie made in the last five years .\n6505\tOnly for young children , if them .\n6506\tTheir parents would do well to cram earplugs in their ears and put pillowcases over their heads for 87 minutes .\n6507\tFor all its violence , the movie is remarkably dull with only Caine making much of an impression .\n6508\tNo matter how firmly director John Stainton has his tongue in his cheek , the fact remains that a wacky concept does not a movie make .\n6509\tA sub-formulaic slap in the face to seasonal cheer .\n6510\tThe action is reasonably well-done ... yet story , character and comedy bits are too ragged to ever fit smoothly together .\n6511\tSeveral uninteresting , unlikeable people do bad things to and with each other in `` Unfaithful . ''\n6512\tWhy anyone who is not a character in this movie should care is beyond me .\n6513\tHill looks to be going through the motions , beginning with the pale script .\n6514\tHoward conjures the past via surrealist flourishes so overwrought you 'd swear he just stepped out of a BuÃ±uel retrospective .\n6515\tThe best thing that can be said of the picture is that it does have a few cute moments .\n6516\tIt 's not a bad premise , just a bad movie .\n6517\tAn already thin story boils down to surviving invaders seeking an existent anti-virus .\n6518\tIf only there were one for this kind of movie .\n6519\tBy the time the surprise ending is revealed , interest can not be revived .\n6520\tThe heedless impetuousness of youth is on full , irritating display in -LRB- this -RRB- meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot .\n6521\tA peculiar misfire that even Tunney ca n't save .\n6522\tWatching Queen of the Damned is like reading a research paper , with special effects tossed in .\n6523\tI ca n't remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops .\n6524\tToo much of Nemesis has a tired , talky feel .\n6525\tI felt trapped and with no obvious escape for the entire 100 minutes .\n6526\tWhen Mr. Hundert tells us in his narration that ` this is a story without surprises , ' we nod in agreement .\n6527\tLeaves us wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion .\n6528\tIt is that rare combination of bad writing , bad direction and bad acting -- the trifecta of badness .\n6529\tEach scene wreaks of routine ; the film never manages to generate a single threat of suspense .\n6530\tA soulless jumble of ineptly assembled cliches and pabulum that plays like a 95-minute commercial for NBA properties .\n6531\tBorstal Boy represents the worst kind of filmmaking , the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy .\n6532\tThe film 's lack of personality permeates all its aspects -- from the TV movie-esque , affected child acting to the dullest Irish pub scenes ever filmed .\n6533\tworks on the whodunit level as its larger themes get lost in the murk of its own making\n6534\tCrush could be the worst film a man has made about women since Valley of the Dolls .\n6535\t4Ever has the same sledgehammer appeal as Pokemon videos , but it breathes more on the big screen and induces headaches more slowly .\n6536\tFeels like the work of someone who may indeed have finally aged past his prime ... and , perhaps more than he realizes , just wants to be liked by the people who can still give him work .\n6537\tTrailer park Magnolia : too long , too cutesy , too sure of its own importance , and possessed of that peculiar tension of being too dense & about nothing at all .\n6538\tViewers of Barney 's crushingly self-indulgent spectacle will see nothing in it to match the ordeal of sitting through it .\n6539\t... its stupidities wind up sticking in one 's mind a lot more than the cool bits .\n6540\tSayles ... once again strands his superb performers in the same old story .\n6541\tThe Piano Teacher , like its title character , is repellantly out of control .\n6542\tI have to admit I walked out of Runteldat .\n6543\tI did go back and check out the last 10 minutes , but these were more repulsive than the first 30 or 40 minutes .\n6544\tThe filmmakers lack the nerve ... to fully exploit the script 's potential for sick humor .\n6545\tThe film was n't preachy , but it was feminism by the book .\n6546\t... the same tired old gags , modernized for the extreme sports generation .\n6547\tThere 's already been too many of these films ...\n6548\tSeveral of Steven Soderbergh 's earlier films were hailed as the works of an artist .\n6549\tSadly , Full Frontal plays like the work of a dilettante .\n6550\tClockstoppers is one of those crazy , mixed-up films that does n't know what it wants to be when it grows up .\n6551\tAlthough bright , well-acted and thought-provoking , Tuck Everlasting suffers from a laconic pace and a lack of traditional action .\n6552\t` The War of the Roses , ' trailer-trash style .\n6553\tEntertaining but like shooting fish in a barrel .\n6554\tSupposedly , Pokemon ca n't be killed , but Pokemon 4Ever practically assures that the pocket monster movie franchise is nearly ready to keel over .\n6555\tWhite has n't developed characters so much as caricatures , one-dimensional buffoons that get him a few laughs but nothing else .\n6556\tWhen you resurrect a dead man , Hard Copy should come a-knocking , no ?\n6557\tCattaneo should have followed the runaway success of his first film , The Full Monty , with something different .\n6558\tThe film feels formulaic , its plot and pacing typical Hollywood war-movie stuff , while the performances elicit more of a sense of deja vu than awe .\n6559\tThis overproduced piece of dreck is shockingly bad and absolutely unnecessary .\n6560\tHmmm ... might I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener ?\n6561\tThe makers of Mothman Prophecies succeed in producing that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad .\n6562\tMr. Deeds is not really a film as much as it is a loose collection of not-so-funny gags , scattered moments of lazy humor .\n6563\tHow this one escaped the Lifetime network I 'll never know .\n6564\tCould n't someone take Rob Schneider and have him switch bodies with a funny person ?\n6565\tOne of these days Hollywood will come up with an original idea for a teen movie , but until then there 's always these rehashes to feed to the younger generations .\n6566\tFor all its brilliant touches , Dragon loses its fire midway , nearly flickering out by its perfunctory conclusion .\n6567\tI have to admit that I am baffled by Jason X.\n6568\tA mean-spirited film made by someone who surely read The Catcher in the Rye but clearly suffers from dyslexia\n6569\tInstead of a witty expose on the banality and hypocrisy of too much kid-vid , we get an ugly , mean-spirited lashing out by an adult who 's apparently been forced by his kids to watch too many Barney videos .\n6570\tThis is a film living far too much in its own head .\n6571\tThe umpteenth summer skinny dip in Jerry Bruckheimer 's putrid pond of retread action twaddle .\n6572\tNational Lampoon 's Van Wilder may aim to be the next Animal House , but it more closely resembles this year 's version of Tomcats .\n6573\tThe film thrusts the inchoate but already eldritch Christian Right propaganda machine into national media circles .\n6574\tDogtown is hollow , self-indulgent , and - worst of all - boring .\n6575\tA movie so bad that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls .\n6576\tMore of a career curio than a major work .\n6577\tIt 's just too bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer , squad car pile-ups and the requisite screaming captain .\n6578\tCox is far more concerned with aggrandizing madness , not the man , and the results might drive you crazy .\n6579\tTo be influenced chiefly by humanity 's greatest shame , reality shows -- reality shows for God 's sake !\n6580\t-- is a crime that should be punishable by chainsaw .\n6581\tAs we have come to learn -- as many times as we have fingers to count on -- Jason is a killer who does n't know the meaning of the word ` quit . '\n6582\tThe filmmakers might want to look it up .\n6583\tA frustrating ` tweener ' -- too slick , contrived and exploitative for the art houses and too cynical , small and decadent for the malls .\n6584\tWhat 's surprising about this traditional thriller , moderately successful but not completely satisfying , is exactly how genteel and unsurprising the execution turns out to be .\n6585\tDrowning 's too good for this sucker .\n6586\tAn instantly forgettable snow-and-stuntwork extravaganza that likely will be upstaged by an avalanche of more appealing holiday-season product .\n6587\tFrankly , it 's pretty stupid .\n6588\tI had more fun with Ben Stiller 's Zoolander , which I thought was rather clever .\n6589\tBut there 's plenty to offend everyone ...\n6590\tLove Liza is a festival film that would have been better off staying on the festival circuit .\n6591\tThere are things to like about Murder By Numbers -- but , in the end , the disparate elements do n't gel .\n6592\t... tackling a low-budget movie in which inexperienced children play the two main characters might not be the best way to cut your teeth in the film industry .\n6593\tQuite frankly , I ca n't see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out .\n6594\tMy precious new Star Wars movie is a lumbering , wheezy drag ...\n6595\tThe innocence of holiday cheer ai n't what it used to be .\n6596\tToo campy to work as straight drama and too violent and sordid to function as comedy , Vulgar is , truly and thankfully , a one-of-a-kind work .\n6597\tHorrid little propaganda film with fascinating connections not only to the Serbs themselves but also to a network of American right-wing extremists .\n6598\tShould have gone straight to video .\n6599\tIt looks like an action movie , but it 's so poorly made , on all levels , that it does n't even qualify as a spoof of such .\n6600\tIt is supremely unfunny and unentertaining to watch middle-age and older men drink to excess , piss on trees , b.s. one another and put on a show in drag .\n6601\tConsider the film a celluloid litmus test for the intellectual and emotional pedigree of your date and a giant step backward for a director I admire .\n6602\tA boring , pretentious muddle that uses a sensational , real-life 19th-Century crime as a metaphor for -- well , I 'm not exactly sure what -- and has all the dramatic weight of a raindrop .\n6603\tSheridan had a wonderful account to work from , but , curiously , he waters it down , turning grit and vulnerability into light reading .\n6604\tHeavy with flabby rolls of typical Toback machinations .\n6605\tIt is very difficult to care about the character , and that is the central flaw of the film .\n6606\tSnow Dogs finds its humour in a black man getting humiliated by a pack of dogs who are smarter than him\n6607\tWhole stretches of the film may be incomprehensible to moviegoers not already clad in basic black .\n6608\tReggio and Glass so rhapsodize cynicism , with repetition and languorous slo-mo sequences , that Glass 's dirgelike score becomes a fang-baring lullaby .\n6609\tEnds up offering nothing more than the latest Schwarzenegger or Stallone flick would .\n6610\tThe film makes strong arguments regarding the social status of America 's indigenous people , but really only exists to try to eke out an emotional tug of the heart , one which it fails to get .\n6611\tCharlize CHASES Kevin with a GUN .\n6612\tCourtney CHASES Stuart with a CELL PHONE .\n6613\tThe sound of GUNFIRE and cell phones RINGING .\n6614\tIf The Tuxedo actually were a suit , it would fit Chan like a $ 99 bargain-basement special .\n6615\tParents beware ; this is downright movie penance .\n6616\t... a complete shambles of a movie so sloppy , so uneven , so damn unpleasant that I ca n't believe any viewer , young or old , would have a good time here .\n6617\tHas nothing good to speak about other than the fact that it is relatively short , tries its best to hide the fact that Seagal 's overweight and out of shape .\n6618\tA pathetically inane and unimaginative cross between XXX and Vertical Limit .\n6619\tImpeccably filmed , sexually charged , but ultimately lacking in substance , not to mention dragged down by a leaden closing act .\n6620\tFeels at times like a giant commercial for Universal Studios , where much of the action takes place .\n6621\tWhile the mystery unravels , the characters respond by hitting on each other .\n6622\tBritney Spears ' phoniness is nothing compared to the movie 's contrived , lame screenplay and listless direction .\n6623\tEvery sequel you skip will be two hours gained .\n6624\tConsider this review life-affirming .\n6625\tIf the movie were all comedy , it might work better .\n6626\tBut it has an ambition to say something about its subjects , but not a willingness .\n6627\tThe movie , while beautiful , feels labored , with a hint of the writing exercise about it .\n6628\tTwenty-three movies into a mostly magnificent directorial career , Clint Eastwood 's efficiently minimalist style finally has failed him .\n6629\tBig time .\n6630\tThis heist flick about young Brooklyn hoods is off the shelf after two years to capitalize on the popularity of Vin Diesel , Seth Green and Barry Pepper .\n6631\tIt should have stayed there .\n6632\tThe film has a childlike quality about it .\n6633\tBut the feelings evoked in the film are lukewarm and quick to pass .\n6634\tThe most opaque , self-indulgent and just plain goofy an excuse for a movie as you can imagine .\n6635\tIt 's not a film to be taken literally on any level , but its focus always appears questionable .\n6636\tBig Fat Liar is little more than Home Alone raised to a new , self-deprecating level .\n6637\tThe movie is gorgeously made , but it is also somewhat shallow and art-conscious .\n6638\tThe only time 8 Crazy Nights comes close to hitting a comedic or satirical target is during the offbeat musical numbers .\n6639\tLoses its sense of humor in a vat of failed jokes , twitchy acting , and general boorishness .\n6640\tThere 's a delightfully quirky movie to be made from curling , but Brooms is n't it .\n6641\tThe story suffers a severe case of oversimplification , superficiality and silliness .\n6642\tChamber of Secrets will find millions of eager fans .\n6643\tBut if the essence of magic is its make-believe promise of life that soars above the material realm , this is the opposite of a truly magical movie .\n6644\tToo clever by about nine-tenths .\n6645\tHas all the hallmarks of a movie designed strictly for children 's home video , a market so insatiable it absorbs all manner of lame entertainment , as long as 3-year-olds find it diverting .\n6646\tBears about as much resemblance to the experiences of most battered women as Spider-Man does to the experiences of most teenagers .\n6647\tToward the end Sum of All Fears morphs into a mundane '70s disaster flick .\n6648\tDirector Carl Franklin , so crisp and economical in One False Move , bogs down in genre cliches here .\n6649\tMendes still does n't quite know how to fill a frame .\n6650\tLike the Hanks character , he 's a slow study : The action is stilted and the tabloid energy embalmed .\n6651\tThis thing is just garbage .\n6652\tAs crimes go , writer-director Michael Kalesniko 's How to Kill Your Neighbor 's Dog is slight but unendurable .\n6653\tThere must be an audience that enjoys the Friday series , but I would n't be interested in knowing any of them personally .\n6654\tA bold -LRB- and lovely -RRB- experiment that will almost certainly bore most audiences into their own brightly colored dreams .\n6655\tAn uplifting , largely bogus story .\n6656\tAn empty exercise , a florid but ultimately vapid crime melodrama with lots of surface flash but little emotional resonance .\n6657\tIf you are curious to see the darker side of what 's going on with young TV actors -LRB- Dawson Leery did what ?!? -RRB- , or see some interesting storytelling devices , you might want to check it out , but there 's nothing very attractive about this movie .\n6658\tMy own minority report is that it stinks .\n6659\tTrying to make head or tail of the story in the hip-hop indie Snipes is enough to give you brain strain -- and the pay-off is negligible .\n6660\tThe script is high on squaddie banter , low on shocks .\n6661\t... if you , like me , think an action film disguised as a war tribute is disgusting to begin with , then you 're in for a painful ride .\n6662\tWhile Solondz tries and tries hard , Storytelling fails to provide much more insight than the inside column of a torn book jacket .\n6663\tWith very little to add beyond the dark visions already relayed by superb recent predecessors like Swimming With Sharks and The Player , this latest skewering ... may put off insiders and outsiders alike .\n6664\t-LRB- Davis -RRB- wants to cause his audience an epiphany , yet he refuses to give us real situations and characters .\n6665\tWithout a fresh infusion of creativity , 4Ever is neither a promise nor a threat so much as wishful thinking .\n6666\t... unlike -LRB- Scorsese 's Mean Streets -RRB- , Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot .\n6667\tBeing unique does n't necessarily equate to being good , no matter how admirably the filmmakers have gone for broke .\n6668\tA few hours after you 've seen it , you forget you 've been to the movies .\n6669\twaydowntown may not be an important movie , or even a good one , but it provides a nice change of mindless pace in collision with the hot Oscar season currently underway .\n6670\tYes , I suppose it 's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care , so I did n't .\n6671\tShadyac , who belongs with the damned for perpetrating Patch Adams , trots out every ghost trick from The Sixth Sense to The Mothman Prophecies .\n6672\tThe photographer 's show-don ` t-tell stance is admirable , but it can make him a problematic documentary subject .\n6673\tIt is not the first time that director Sara Sugarman stoops to having characters drop their pants for laughs and not the last time she fails to provoke them .\n6674\tI 'd be hard pressed to think of a film more cloyingly sappy than Evelyn this year .\n6675\tNothing more than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises .\n6676\tmeanders between its powerful moments .\n6677\tWhat remains is a variant of the nincompoop Benigni persona , here a more annoying , though less angry version of the irresponsible Sandlerian manchild , undercut by the voice of the star of Road Trip .\n6678\tA backhanded ode to female camaraderie penned by a man who has little clue about either the nature of women or of friendship .\n6679\tPure of intention and passably diverting , His Secret Life is light , innocuous and unremarkable .\n6680\t... delivers few moments of inspiration amid the bland animation and simplistic story .\n6681\tTake away the controversy , and it 's not much more watchable than a Mexican soap opera .\n6682\tIt 's got the brawn , but not the brains .\n6683\tMindless and boring martial arts and gunplay with too little excitement and zero compelling storyline .\n6684\tA lot of talent is wasted in this crass , low-wattage endeavor .\n6685\tTo show these characters in the act and give them no feelings of remorse -- and to cut repeatedly to the flashback of the original rape -- is overkill to the highest degree .\n6686\t-LRB- T -RRB- oo many of these gross out scenes ...\n6687\tAbout one in three gags in White 's intermittently wise script hits its mark ; the rest are padding unashamedly appropriated from the teen-exploitation playbook .\n6688\tLittle is done to support the premise other than fling gags at it to see which ones shtick .\n6689\tReno does what he can in a thankless situation , the film ricochets from humor to violence and back again , and Ryoko Hirosue makes us wonder if she is always like that .\n6690\tIf Jews were Catholics , this would be Catechism\n6691\tOne of those films that seems tailor made to air on pay cable to offer some modest amusements when one has nothing else to watch .\n6692\tThe big ending surprise almost saves the movie .\n6693\tIt 's too bad that the rest is n't more compelling .\n6694\tCharming , if overly complicated ...\n6695\tSchneider 's mugging is relentless and his constant need to suddenly transpose himself into another character undermines the story 's continuity and progression .\n6696\tAll very stylish and beautifully photographed , but far more trouble than it 's worth , with fantasy mixing with reality and actors playing more than one role just to add to the confusion .\n6697\tIt 's probably not easy to make such a worthless film ...\n6698\tHope keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors , but it does n't .\n6699\tHas no reason to exist , other than to employ Hollywood kids and people who owe favors to their famous parents .\n6700\tFor a guy who has waited three years with breathless anticipation for a new Hal Hartley movie to pore over , No Such Thing is a big letdown .\n6701\tConstantly slips from the grasp of its maker .\n6702\tSmothered by its own solemnity .\n6703\t` Christian Bale 's Quinn -LRB- is -RRB- a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent . '\n6704\tMight be one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people .\n6705\tAfter you laugh once -LRB- maybe twice -RRB- , you will have completely forgotten the movie by the time you get back to your car in the parking lot .\n6706\tNot one moment in the enterprise did n't make me want to lie down in a dark room with something cool to my brow .\n6707\tIn the era of The Sopranos , it feels painfully redundant and inauthentic .\n6708\tThe overall vibe is druggy and self-indulgent , like a spring-break orgy for pretentious arts majors .\n6709\tBreen 's script is sketchy with actorish notations on the margin of acting .\n6710\tThere 's no question that Epps scores once or twice , but it 's telling that his funniest moment comes when he falls about ten feet onto his head .\n6711\tIf only Merchant paid more attention the story .\n6712\tAt the one-hour mark , Herzog simply runs out of ideas and the pace turns positively leaden as the movie sputters to its inevitable tragic conclusion .\n6713\t... too contrived to be as naturally charming as it needs to be .\n6714\tA simpler , leaner treatment would have been preferable ; after all , being about nothing is sometimes funnier than being about something .\n6715\tThe characters are based on stock clichÃ©s , and the attempt to complicate the story only defies credibility .\n6716\tEverything about it from the bland songs to the colorful but flat drawings is completely serviceable and quickly forgettable .\n6717\tNot the Great American Comedy , but if you liked the previous movies in the series , you 'll have a good time with this one too .\n6718\tA domestic melodrama with weak dialogue and biopic cliches .\n6719\tMr. Goyer 's loose , unaccountable direction is technically sophisticated in the worst way .\n6720\tThe movie is so thoughtlessly assembled .\n6721\tBenigni presents himself as the boy puppet Pinocchio , complete with receding hairline , weathered countenance and American Breckin Meyer 's ridiculously inappropriate Valley Boy voice .\n6722\tplays like some corny television production from a bygone era\n6723\tThe end result is like cold porridge with only the odd enjoyably chewy lump .\n6724\tFor all the charm of Kevin Kline and a story that puts old-fashioned values under the microscope , there 's something creepy about this movie .\n6725\tI was feeling this movie until it veered off too far into the Exxon zone , and left me behind at the station looking for a return ticket to realism .\n6726\tProducer John Penotti surveyed high school students ... and came back with the astonishing revelation that `` they wanted to see something that did n't talk down to them . ''\n6727\tIgnoring that , he made Swimfan anyway\n6728\tNaipaul fans may be disappointed .\n6729\tThose who are not acquainted with the author 's work , on the other hand , may fall fast asleep .\n6730\tHoffman waits too long to turn his movie in an unexpected direction , and even then his tone retains a genteel , prep-school quality that feels dusty and leatherbound .\n6731\tIf you 're a Crocodile Hunter fan , you 'll enjoy at least the `` real '' portions of the film .\n6732\tIf you 're looking for a story , do n't bother .\n6733\tFull Frontal had no effect and elicited no sympathies for any of the characters .\n6734\tBy that measure , it is a failure .\n6735\tA baffling mixed platter of gritty realism and magic realism with a hard-to-swallow premise .\n6736\tAn affable but undernourished romantic comedy that fails to match the freshness of the actress-producer and writer 's previous collaboration , Miss Congeniality .\n6737\tSometimes this modest little number clicks , and sometimes it does n't .\n6738\tLike a pack of dynamite sticks , built for controversy .\n6739\tThe film is explosive , but a few of those sticks are wet .\n6740\tHas its charming quirks and its dull spots .\n6741\tAn admitted egomaniac , Evans is no Hollywood villain , and yet this grating showcase almost makes you wish he 'd gone the way of Don Simpson .\n6742\tThe audience when I saw this one was chuckling at all the wrong times , and that 's a bad sign when they 're supposed to be having a collective heart attack .\n6743\tEveryone 's to blame here .\n6744\tYou get the impression that writer and director Burr Steers knows the territory ... but his sense of humor has yet to lose the smug self-satisfaction usually associated with the better private schools .\n6745\tLess a study in madness or love than a study in schoolgirl obsession .\n6746\tRice never clearly defines his characters or gives us a reason to care about them .\n6747\tIt 's a bizarre curiosity memorable mainly for the way it fritters away its potentially interesting subject matter via a banal script , unimpressive acting and indifferent direction .\n6748\tA slight and obvious effort , even for one whose target demographic is likely still in the single digits , age-wise .\n6749\tSex With Strangers will shock many with its unblinking frankness .\n6750\tBut what is missing from it all is a moral .\n6751\tWhat is the filmmakers ' point ?\n6752\tWhy did they deem it necessary to document all this emotional misery ?\n6753\tYou see Robin Williams and psycho killer , and you think , hmmmmm .\n6754\tYou see the movie and you think , zzzzzzzzz .\n6755\tDownright transparent is the script 's endless assault of embarrassingly ham-fisted sex jokes that reek of a script rewrite designed to garner the film a `` cooler '' PG-13 rating .\n6756\tThe movie slides downhill as soon as macho action conventions assert themselves .\n6757\tFormulaic to the 51st power , more like .\n6758\tDraggin ' about dragons\n6759\tHoward and his co-stars all give committed performances , but they 're often undone by Howard 's self-conscious attempts to find a ` literary ' filmmaking style to match his subject .\n6760\tA respectable but uninspired thriller that 's intelligent and considered in its details , but ultimately weak in its impact .\n6761\tJones helps breathe some life into the insubstantial plot , but even he is overwhelmed by predictability .\n6762\tThe movie just has too much on its plate to really stay afloat for its just under ninety minute running time .\n6763\tComes off more like a misdemeanor , a flat , unconvincing drama that never catches fire .\n6764\tOffers absolutely nothing I had n't already seen .\n6765\t`` Analyze That '' is one of those crass , contrived sequels that not only fails on its own , but makes you second-guess your affection for the original .\n6766\tYou might say Tykwer has done all that Heaven allows , if you wanted to make as anti-Kieslowski a pun as possible .\n6767\tSuffice to say its total promise is left slightly unfulfilled .\n6768\tComplex , sinuously plotted and , somehow , off-puttingly cold .\n6769\tFirst-time writer-director Dylan Kidd also has a good ear for dialogue , and the characters sound like real people .\n6770\t... an airless , prepackaged Julia Roberts wannabe that stinks so badly of hard-sell image-mongering you 'll wonder if Lopez 's publicist should share screenwriting credit .\n6771\tGoldmember has none of the visual wit of the previous pictures , and it looks as though Jay Roach directed the film from the back of a taxicab .\n6772\tCould as easily have been called ` Under Siege 3 : In Alcatraz ' ... a cinematic corpse that never springs to life .\n6773\tIn comparison to his earlier films it seems a disappointingly thin slice of lower-class London life ; despite the title ... amounts to surprisingly little .\n6774\tLame Sweet Home leaves no Southern stereotype unturned .\n6775\tSlow , dry , poorly cast , but beautifully shot .\n6776\tThe jokes are sophomoric , stereotypes are sprinkled everywhere and the acting ranges from bad to bodacious .\n6777\tWill give many ministers and Bible-study groups hours of material to discuss .\n6778\tBut mainstream audiences will find little of interest in this film , which is often preachy and poorly acted .\n6779\tIn its chicken heart , Crush goes to absurd lengths to duck the very issues it raises .\n6780\tThis long and relentlessly saccharine film is a clear case of preaching to the converted .\n6781\tThe film is flat .\n6782\tThe movie is a lumbering load of hokum but ... it 's at least watchable .\n6783\tIt 's a boom-box of a movie that might have been titled ` The Loud and the Ludicrous ' ... the pandering to a moviegoing audience dominated by young males is all too calculated .\n6784\tAn unbelievably stupid film , though occasionally fun enough to make you forget its absurdity .\n6785\tThe first Fatal Attraction was vile enough .\n6786\tDo we really need the Tiger Beat version ?\n6787\tThis Bond film goes off the beaten path , not necessarily for the better .\n6788\tThe problem is that the movie has no idea of it is serious or not .\n6789\tWhen the fire burns out , we 've only come face-to-face with a couple dragons and that 's where the film ultimately fails .\n6790\tIt would work much better as a one-hour TV documentary .\n6791\tThe elements were all there but lack of a pyschological center knocks it flat .\n6792\tAnemic chronicle of money grubbing New Yorkers and their serial loveless hook ups .\n6793\tSimply does n't have sufficient heft to justify its two-hour running time .\n6794\tAn unsuccessful attempt at a movie of ideas .\n6795\tQueen of the Damned as you might have guessed , makes sorry use of Aaliyah in her one and only starring role -- she does little here but point at things that explode into flame .\n6796\tThis toothless Dog , already on cable , loses all bite on the big screen .\n6797\tIt made me feel unclean , and I 'm the guy who liked There 's Something About Mary and both American Pie movies .\n6798\tOh , and Booty Call .\n6799\tNot only is it hokey , manipulative and as bland as Wonder Bread dipped in milk , but it also does the absolute last thing we need Hollywood doing to us : It preaches .\n6800\tIt 's so crammed with scenes and vistas and pretty moments that it 's left a few crucial things out , like character development and coherence .\n6801\tServing Sara should be served an eviction notice at every theater stuck with it .\n6802\tDirector Roger Michell does so many of the little things right that it 's difficult not to cuss him out severely for bungling the big stuff .\n6803\tA loud , low-budget and tired formula film that arrives cloaked in the euphemism ` urban drama . '\n6804\tThe movie has a script -LRB- by Paul Pender -RRB- made of wood , and it 's relentlessly folksy , a procession of stagy set pieces stacked with binary oppositions .\n6805\tA pathetic exploitation film that tries to seem sincere , and just seems worse for the effort .\n6806\tAt some point , all this visual trickery stops being clever and devolves into flashy , vaguely silly overkill .\n6807\tDespite some charm and heart , this quirky soccer import is forgettable\n6808\tMeyjes 's movie , like Max Rothman 's future , does not work .\n6809\tWhat 's needed so badly but what is virtually absent here is either a saving dark humor or the feel of poetic tragedy .\n6810\tSchneidermeister ... Makin ' a fool of himself ... Losin ' his fan base ...\n6811\tAn ambitious , serious film that manages to do virtually everything wrong ; sitting through it is something akin to an act of cinematic penance .\n6812\tNot once does it come close to being exciting .\n6813\tA Frankenstein mishmash that careens from dark satire to cartoonish slapstick , Bartleby performs neither one very well .\n6814\tIt plays like a big-budget , after-school special with a generous cast , who at times lift the material from its well-meaning clunkiness .\n6815\tThere 's something not entirely convincing about The Quiet American .\n6816\tAnd that holds true for both the movie and the title character played by Brendan Fraser .\n6817\tOne of those strained caper movies that 's hardly any fun to watch and begins to vaporize from your memory minutes after it ends .\n6818\tNeeded a little less bling-bling and a lot more romance .\n6819\tThe ending does n't work ... but most of the movie works so well I 'm almost recommending it , anyway -- maybe not to everybody , but certainly to people with a curiosity about how a movie can go very right , and then step wrong .\n6820\tIt 's hard to believe these jokers are supposed to have pulled off four similar kidnappings before .\n6821\tI 'm not exactly sure what this movie thinks it is about .\n6822\tCal is an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes .\n6823\tSo brisk is Wang 's pacing that none of the excellent cast are given air to breathe .\n6824\tThe bottom line , at least in my opinion , is Imposter makes a better short story than it does a film .\n6825\tSome elements of it really blow the big one , but other parts are decent .\n6826\tIt is just too bad the film 's story does not live up to its style .\n6827\tUnless you 're a fanatic , the best advice is : ` Scooby ' do n't .\n6828\tA cautionary tale about the folly of superficiality that is itself endlessly superficial .\n6829\tFor single digits kidlets Stuart Little 2 is still a no brainer .\n6830\tIf you 're looking to rekindle the magic of the first film , you 'll need a stronger stomach than us .\n6831\tShreve 's graceful dual narrative gets clunky on the screen , and we keep getting torn away from the compelling historical tale to a less-compelling soap opera .\n6832\tContains a few big laughs but many more that graze the funny bone or miss it altogether , in part because the consciously dumbed-down approach wears thin .\n6833\tNothing more than a widget cranked out on an assembly line to see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks .\n6834\tThis is a film tailor-made for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic .\n6835\tThe movie is undone by a filmmaking methodology that 's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads .\n6836\tA jumbled fantasy comedy that did not figure out a coherent game plan at scripting , shooting or post-production stages .\n6837\tA sad and rote exercise in milking a played-out idea -- a straight guy has to dress up in drag -- that shockingly manages to be even worse than its title would imply .\n6838\tPersonal Velocity ought to be exploring these women 's inner lives , but it never moves beyond their surfaces .\n6839\tWe hate -LRB- Madonna -RRB- within the film 's first five minutes , and she lacks the skill or presence to regain any ground .\n6840\tSounding like Arnold Schwarzenegger , with a physique to match , -LRB- Ahola -RRB- has a wooden delivery and encounters a substantial arc of change that does n't produce any real transformation .\n6841\tTwo big things are missing -- anything approaching a visceral kick , and anything approaching even a vague reason to sit through it all .\n6842\tA fascinating but choppy documentary .\n6843\tScarcely worth a mention apart from reporting on the number of tumbleweeds blowing through the empty theatres graced with its company .\n6844\tThe doofus-on - the-loose banter of Welcome to Collinwood has a cocky , after-hours loopiness to it .\n6845\tAnd as with most late-night bull sessions , eventually the content is n't nearly as captivating as the rowdy participants think it is .\n6846\tToo stagey , talky -- and long -- for its own good .\n6847\tApparently reassembled from the cutting-room floor of any given daytime soap .\n6848\tThe sinister inspiration that fuelled DeVito 's early work is confused in Death to Smoochy into something both ugly and mindless .\n6849\tDespite Auteuil 's performance , it 's a rather listless amble down the middle of the road , where the thematic ironies are too obvious and the sexual politics too smug .\n6850\tDirector Boris von Sychowski instead opts for a routine slasher film that was probably more fun to make than it is to sit through .\n6851\t... little more than a well-acted television melodrama shot for the big screen .\n6852\tNever comes together as a coherent whole .\n6853\tAn unintentionally surreal kid 's picture ... in which actors in bad bear suits enact a sort of inter-species parody of a VH1 Behind the Music episode .\n6854\tFirst , for a movie that tries to be smart , it 's kinda dumb .\n6855\tAnd second , what 's with all the shooting ?\n6856\tDo n't even bother to rent this on video .\n6857\tThere is something in Full Frontal , I guess , about artifice and acting and how it distorts reality for people who make movies and watch them , but like most movie riddles , it works only if you have an interest in the characters you see .\n6858\tThis is the kind of movie that gets a quick release before real contenders arrive in September .\n6859\tNot counting a few gross-out comedies I 've been trying to forget , this is the first film in a long time that made me want to bolt the theater in the first 10 minutes .\n6860\tPlays like one long , meandering sketch inspired by the works of John Waters and Todd Solondz , rather than a fully developed story .\n6861\tThe film does n't have enough innovation or pizazz to attract teenagers , and it lacks the novel charm that made Spy Kids a surprising winner with both adults and younger audiences .\n6862\tA mawkish self-parody that plays like some weird Masterpiece Theater sketch with neither a point of view nor a compelling reason for being .\n6863\tAn average B-movie with no aspirations to be anything more .\n6864\tBartlett 's hero remains a reactive cipher , when opening the man 's head and heart is the only imaginable reason for the film to be made .\n6865\tGibney and Jarecki just want to string the bastard up .\n6866\tThe plot is plastered with one Hollywood cliche after another , most of which involve precocious kids getting the better of obnoxious adults .\n6867\tLess worrying about covering all the drama in Frida 's life and more time spent exploring her process of turning pain into art would have made this a superior movie .\n6868\tA film that suffers because of its many excesses .\n6869\tToo bland and fustily tasteful to be truly prurient .\n6870\tIn any case , I would recommend Big Bad Love only to Winger fans who have missed her since 1995 's Forget Paris .\n6871\tBut even then , I 'd recommend waiting for DVD and just skipping straight to her scenes .\n6872\tDepicts the sorriest and most sordid of human behavior on the screen , then laughs at how clever it 's being .\n6873\tNijinsky says , ' I know how to suffer ' and if you see this film you 'll know too .\n6874\t` CQ may one day be fondly remembered as Roman Coppola 's brief pretentious period before going on to other films that actually tell a story worth caring about\n6875\tThe only thing scary about feardotcom is that the filmmakers and studio are brazen enough to attempt to pass this stinker off as a scary movie .\n6876\t... the story simply putters along looking for astute observations and coming up blank .\n6877\tInstead of contriving a climactic hero 's death for the beloved-major - character-who-shall - remain-nameless , why not invite some genuine spontaneity into the film by having the evil aliens ' laser guns actually hit something for once ?\n6878\tIt just did n't mean much to me and played too skewed to ever get a hold on -LRB- or be entertained by -RRB- .\n6879\tThis action-thriller\\/dark comedy is one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage .\n6880\tMIB II is a movie that makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and\\/or restroom and not feel as if he or she has missed anything .\n6881\tThat 's because relatively nothing happens .\n6882\tNo amount of arty theorizing -- the special effects are ` German-Expressionist , ' according to the press notes -- can render it anything but laughable .\n6883\tBlue Crush follows the formula , but throws in too many conflicts to keep the story compelling .\n6884\tBoyd 's screenplay -LRB- co-written with Guardian hack Nick Davies -RRB- has a florid turn of phrase that owes more to Guy Ritchie than the Bard of Avon .\n6885\tThere 's not a spark of new inspiration in it , just more of the same , done with noticeably less energy and imagination .\n6886\tJackson shamefully strolls through this mess with a smug grin , inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder .\n6887\tA moving picture that does not move .\n6888\tRuh-roh !\n6889\tRomething 's really wrong with this ricture !\n6890\tIts salient points are simultaneously buried , drowned and smothered in the excesses of writer-director Roger Avary .\n6891\tI 'm not sure these words have ever been together in the same sentence : This erotic cannibal movie is boring .\n6892\t` God help us , but Capra and Cooper are rolling over in their graves . '\n6893\t... an hour-and-a-half of inoffensive , unmemorable filler .\n6894\tIs it a comedy ?\n6895\tA drama ?\n6896\tA romance ?\n6897\tA cartoon ?\n6898\tZe movie starts out so funny , then she is nothing .\n6899\tDid the film inform and educate me ?\n6900\tYes .\n6901\tDid it move me to care about what happened in 1915 Armenia ?\n6902\tNo. .\n6903\tAnd that is where Ararat went astray .\n6904\tIt 's a bad sign in a thriller when you instantly know whodunit .\n6905\tHas a customarily jovial air but a deficit of flim-flam inventiveness .\n6906\tEight Legged Freaks wo n't join the pantheon of great monster\\/science fiction flicks that we have come to love ...\n6907\tIt gets the details of its time frame right but it completely misses its emotions .\n6908\tWho , exactly , is fighting whom here ?\n6909\tAh , yes , that would be me : fighting off the urge to doze .\n6910\tA kilted Jackson is an unsettling sight , and indicative of his , if you will , out-of-kilter character , who rambles aimlessly through ill-conceived action pieces .\n6911\tContrived , awkward and filled with unintended laughs , the film shows signs that someone other than the director got into the editing room and tried to improve things by making the movie go faster .\n6912\tStarts out with tremendous promise , introducing an intriguing and alluring premise , only to fall prey to a boatload of screenwriting cliches that sink it faster than a leaky freighter .\n6913\tThe film lapses too often into sugary sentiment and withholds delivery on the pell-mell pyrotechnics its punchy style promises .\n6914\tThe only question ... is to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering .\n6915\tAverage , at best , I 'm afraid .\n6916\tThis movie is so bad , that it 's almost worth seeing because it 's so bad .\n6917\tA crisply made movie that is no more than mildly amusing .\n6918\tThis movie feel more like a non-stop cry for attention , than an attempt at any kind of satisfying entertainment .\n6919\tOverall , it 's a pretty mediocre family film .\n6920\tLove may have been in the air onscreen , but I certainly was n't feeling any of it .\n6921\tIn addition to the overcooked , ham-fisted direction , which has all the actors reaching for the back row , the dialogue sounds like horrible poetry .\n6922\tThe very definition of what critics have come to term an `` ambitious failure . ''\n6923\tIt 's as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese .\n6924\tThe movie ends with outtakes in which most of the characters forget their lines and just utter ` uhhh , ' which is better than most of the writing in the movie .\n6925\tWorthy of the gong .\n6926\tWhile certainly more naturalistic than its Australian counterpart , Amari 's film falls short in building the drama of Lilia 's journey .\n6927\tI found the movie as divided against itself as the dysfunctional family it portrays .\n6928\tThe soul-searching deliberateness of the film , although leavened nicely with dry absurdist wit , eventually becomes too heavy for the plot .\n6929\tThe movie does n't add anything fresh to the myth .\n6930\tAs inept as big-screen remakes of The Avengers and The Wild Wild West .\n6931\tComes across as a relic from a bygone era , and its convolutions ... feel silly rather than plausible .\n6932\tMoves in such odd plot directions and descends into such message-mongering moralism that its good qualities are obscured .\n6933\tIt 's a very sincere work , but it would be better as a diary or documentary .\n6934\tOnce one experiences Mr. Haneke 's own sadistic tendencies toward his audience , one is left with a sour taste in one 's mouth , and little else .\n6935\tOops , she 's really done it this time .\n6936\tThat chirpy songbird Britney Spears has popped up with more mindless drivel .\n6937\tIt 's a loathsome movie , it really is and it makes absolutely no sense .\n6938\tA chiller resolutely without chills .\n6939\tFor those of us who respond more strongly to storytelling than computer-generated effects , the new Star Wars installment has n't escaped the rut dug by the last one .\n6940\tThe director mostly plays it straight , turning Leys ' fable into a listless climb down the social ladder .\n6941\t`` Bad '' is the operative word for `` Bad Company , '' and I do n't mean that in a good way .\n6942\tThough Frida is easier to swallow than Julie Taymor 's preposterous Titus , the eye candy here lacks considerable brio .\n6943\tDrumline is -- the mere suggestion , albeit a visually compelling one , of a fully realized story .\n6944\tThe whole movie is simply a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well .\n6945\tThe film affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry , but Ram Dass : Fierce Grace does n't organize it with any particular insight .\n6946\tBilly Crystal and Robert De Niro sleepwalk through vulgarities in a sequel you can refuse .\n6947\tIt 's loud and boring ; watching it is like being trapped at a bad rock concert .\n6948\tMerely -LRB- and literally -RRB- tosses around sex toys and offers half-hearted paeans to empowerment that are repeatedly undercut by the brutality of the jokes , most at women 's expense .\n6949\tIf you want a movie time trip , the 1960 version is a far smoother ride .\n6950\tTraffics in the kind of prechewed racial clichÃ©s that have already been through the corporate stand-up-comedy mill .\n6951\tThe story is -- forgive me -- a little thin , and the filmmaking clumsy and rushed .\n6952\t... grows decidedly flimsier with its many out-sized , out of character and logically porous action set pieces .\n6953\tI wish Windtalkers had had more faith in the dramatic potential of this true story .\n6954\tThis would have been better than the fiction it has concocted , and there still could have been room for the war scenes .\n6955\tAggressive self-glorification and a manipulative whitewash .\n6956\tStay for the credits and see a devastating comic impersonation by Dustin Hoffman that is revelatory .\n6957\tNone of the characters or plot-lines are fleshed-out enough to build any interest .\n6958\tAs social exposÃ© , Skins has its heart in the right place , but that 's not much to hang a soap opera on .\n6959\tThe whole film has this sneaky feel to it -- as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product .\n6960\tThere 's a bit of thematic meat on the bones of Queen of the Damned , as its origins in an Anne Rice novel dictate , but generally , it 's a movie that emphasizes style over character and substance .\n6961\tThe only way to tolerate this insipid , brutally clueless film might be with a large dose of painkillers .\n6962\tThis one is certainly well-meaning , but it 's also simple-minded and contrived .\n6963\tCoppola has made a film of intoxicating atmosphere and little else .\n6964\tBad and baffling from the get-go .\n6965\tA series of immaculately composed shots of Patch Adams quietly freaking out does not make for much of a movie .\n6966\tAt a time when we 've learned the hard way just how complex international terrorism is , Collateral Damage paints an absurdly simplistic picture .\n6967\tThe impulses that produced this project ... are commendable , but the results are uneven .\n6968\tA well-acted movie that simply does n't gel .\n6969\tLike a can of 2-day old Coke .\n6970\tYou can taste it , but there 's no fizz .\n6971\tThere 's no excuse for following up a delightful , well-crafted family film with a computer-generated cold fish .\n6972\tBoth the crime story and the love story are unusual .\n6973\tBut they do n't fit well together and neither is well told .\n6974\tIt 's both sitcomishly predictable and cloying in its attempts to be poignant .\n6975\tOther than a mildly engaging central romance , Hospital is sickly entertainment at best and mind-destroying cinematic pollution at worst .\n6976\tJaglom offers the none-too-original premise that everyone involved with moviemaking is a con artist and a liar .\n6977\tOutside of Burger 's desire to make some kind of film , it 's really unclear why this project was undertaken\n6978\tWas I scared ?\n6979\tOnly at the prospect of Beck 's next project .\n6980\tLet 's see , a haunted house , a haunted ship , what 's next ... Ghost Blimp ?\n6981\tA fragile framework upon which to hang broad , mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming .\n6982\tBy the time the plot grinds itself out in increasingly incoherent fashion , you might be wishing for a watch that makes time go faster rather than the other way around .\n6983\tSince Lee is a sentimentalist , the film is more worshipful than your random E !\n6984\tTrue Hollywood Story .\n6985\tWes Craven 's presence is felt ; not the Craven of ' A Nightmare on Elm Street ' or ` The Hills Have Eyes , ' but the sad schlock merchant of ` Deadly Friend . '\n6986\tSunshine State surveys the landscape and assesses the issues with a clear passion for sociology .\n6987\tBut the cinematography is cloudy , the picture making becalmed .\n6988\tIt 's one long bore .\n6989\tIt gets old quickly .\n6990\tWatch Barbershop again if you 're in need of a Cube fix -- this is n't worth sitting through .\n6991\tIt 's leaden and predictable , and laughs are lacking .\n6992\t... a cinematic disaster so inadvertently sidesplitting it 's worth the price of admission for the ridicule factor alone .\n6993\tSkip this dreck , rent Animal House and go back to the source .\n6994\tThe movie is a desperate miscalculation .\n6995\tIt gives poor Dana Carvey nothing to do that is really funny , and then expects us to laugh because he acts so goofy all the time .\n6996\tWe just do n't really care too much about this love story .\n6997\tIn that setting , their struggle is simply too ludicrous and borderline insulting .\n6998\tThe Transporter bombards the viewer with so many explosions and side snap kicks that it ends up being surprisingly dull .\n6999\tUzumaki 's interesting social parallel and defiant aesthetic seems a prostituted muse ...\n7000\t` Men in Black II creates a new threat for the MIB , but recycles the same premise .\n7001\tLarge budget notwithstanding , the movie is such a blip on the year 's radar screen that it 's tempting just to go with it for the ride .\n7002\tBut this time , the old MIB label stands for Milder Is n't Better .\n7003\tFeels familiar and tired .\n7004\tA retread of material already thoroughly plumbed by Martin Scorsese .\n7005\tInstead of making his own style , director Marcus Adams just copies from various sources -- good sources , bad mixture\n7006\tCriminal conspiracies and true romances move so easily across racial and cultural lines in the film that it makes My Big Fat Greek Wedding look like an apartheid drama .\n7007\tA bore that tends to hammer home every one of its points .\n7008\tA story which fails to rise above its disgusting source material .\n7009\tIt 's fitting that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland .\n7010\tStarts as an intense political and psychological thriller but is sabotaged by ticking time bombs and other Hollywood-action cliches .\n7011\tCompletely creatively stillborn and executed in a manner that I 'm not sure could be a single iota worse ... a soulless hunk of exploitative garbage .\n7012\tAn uneven look into a grim future that does n't come close to the level of intelligence and visual splendour that can be seen in other films based on Philip K. Dick stories .\n7013\tHorrible .\n7014\tThe disjointed mess flows as naturally as Jolie 's hideous yellow ` do .\n7015\tBolstered by an astonishing voice cast -LRB- excepting Love Hewitt -RRB- , an interesting racial tension , and a storyline that I have n't encountered since at least Pete 's Dragon .\n7016\tAn authentically vague , but ultimately purposeless , study in total pandemonium .\n7017\tMakes a joke out of car chases for an hour and then gives us half an hour of car chases .\n7018\tAs the sulking , moody male hustler in the title role , -LRB- Franco -RRB- has all of Dean 's mannerisms and self-indulgence , but none of his sweetness and vulnerability .\n7019\tThe only thing to fear about `` Fear Dot Com '' is hitting your head on the theater seat in front of you when you doze off thirty minutes into the film .\n7020\tIt 's too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience .\n7021\t` Synthetic ' is the best description of this well-meaning , beautifully produced film that sacrifices its promise for a high-powered star pedigree .\n7022\tIt concentrates far too much on the awkward interplay and utter lack of chemistry between Chan and Hewitt .\n7023\tImpostor ca n't think of a thing to do with these characters except have them run through dark tunnels , fight off various anonymous attackers , and evade elaborate surveillance technologies .\n7024\tJudd 's characters ought to pick up the durable best seller Smart Women , Foolish Choices for advice .\n7025\tThe script has less spice than a rat burger and The Rock 's fighting skills are more in line with Steven Seagal .\n7026\tThis ill-conceived and expensive project winds up looking like a bunch of talented thesps slumming it .\n7027\t... there 's a choppy , surface-effect feeling to the whole enterprise .\n7028\tDoes n't get the job done , running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez .\n7029\tA particularly joyless , and exceedingly dull , period coming-of-age tale .\n7030\tIt 's impossible to indulge the fanciful daydreams of Janice Beard -LRB- Eileen Walsh -RRB- when her real-life persona is so charmless and vacant .\n7031\t... it was n't the subject matter that ultimately defeated the film ... It was the unfulfilling , incongruous , `` wait a second , did I miss something ? ''\n7032\tending .\n7033\tThis is a movie where the most notable observation is how long you 've been sitting still .\n7034\tPoor editing , bad bluescreen , and ultra-cheesy dialogue highlight the radical action .\n7035\tIt 's super - violent , super-serious and super-stupid .\n7036\tSo earnest and well-meaning , and so stocked with talent , that you almost forget the sheer , ponderous awfulness of its script .\n7037\tJust a string of stale gags , with no good inside dope , and no particular bite .\n7038\tIt 's Splash without the jokes .\n7039\tThe ChÃ¢teau would have been benefited from a sharper , cleaner script before it went in front of the camera .\n7040\tNot to mention a sharper , cleaner camera lens .\n7041\tShallow , noisy and pretentious .\n7042\tMorrissette has performed a difficult task indeed - he 's taken one of the world 's most fascinating stories and made it dull , lifeless , and irritating .\n7043\tGranddad of Le Nouvelle Vague , Jean-Luc Godard continues to baffle the faithful with his games of hide-and-seek .\n7044\tThis loud and thoroughly obnoxious comedy about a pair of squabbling working-class spouses is a deeply unpleasant experience .\n7045\tIt 's better than The Phantom Menace .\n7046\tBut unless you 're an absolute raving Star Wars junkie , it is n't much fun .\n7047\tPhilosophically , intellectually and logistically a mess .\n7048\tA standard police-oriented drama that , were it not for De Niro 's participation , would have likely wound up a TNT Original .\n7049\tCoupling disgracefully written dialogue with flailing bodily movements that substitute for acting , Circuit is the awkwardly paced soap opera-ish story .\n7050\tHollywood Ending just is n't very funny .\n7051\tThough clearly well-intentioned , this cross-cultural soap opera is painfully formulaic and stilted .\n7052\tA technical triumph and an extraordinary bore .\n7053\tI can easily imagine Benigni 's Pinocchio becoming a Christmas perennial .\n7054\tCoal is n't as easy to come by as it used to be and this would be a worthy substitute for naughty children 's stockings .\n7055\tTwo hours of junk .\n7056\tEnds up being mostly about ravishing costumes , eye-filling , wide-screen production design and Joan 's wacky decision to stand by her man , no matter how many times he demonstrates that he 's a disloyal satyr .\n7057\tSelf-congratulatory , misguided , and ill-informed , if nonetheless compulsively watchable .\n7058\tA clumsily manufactured exploitation flick , a style-free exercise in manipulation and mayhem .\n7059\tThe whole affair , true story or not , feels incredibly hokey ... -LRB- it -RRB- comes off like a Hallmark commercial .\n7060\tWhat 's missing is what we call the ` wow ' factor .\n7061\tThe nicest thing that can be said about Stealing Harvard -LRB- which might have been called Freddy Gets Molested by a Dog -RRB- is that it 's not as obnoxious as Tom Green 's Freddie Got Fingered .\n7062\t... Tara Reid plays a college journalist , but she looks like the six-time winner of the Miss Hawaiian Tropic Pageant , so I do n't know what she 's doing in here ...\n7063\tThe young stars are too cute ; the story and ensuing complications are too manipulative ; the message is too blatant ; the resolutions are too convenient .\n7064\tNormally , Rohmer 's talky films fascinate me , but when he moves his setting to the past , and relies on a historical text , he loses the richness of characterization that makes his films so memorable .\n7065\tI highly recommend Irwin , but not in the way this film showcases him .\n7066\tIt 's been 13 months and 295 preview screenings since I last walked out on a movie , but Resident Evil really earned my indignant , preemptive departure .\n7067\tThis picture is mostly a lump of run-of-the-mill profanity sprinkled with a few remarks so geared toward engendering audience sympathy that you might think he was running for office -- or trying to win over a probation officer .\n7068\tMalone does have a gift for generating nightmarish images that will be hard to burn out of your brain .\n7069\tBut the movie 's narrative hook is way too muddled to be an effectively chilling guilty pleasure .\n7070\tThough it goes further than both , anyone who has seen The Hunger or Cat People will find little new here , but a tasty performance from Vincent Gallo lifts this tale of cannibal lust above the ordinary .\n7071\tA Blair Witch - style adventure that plays like a bad soap opera , with passable performances from everyone in the cast .\n7072\tDiaz wears out her welcome in her most charmless performance\n7073\tIt is too bad that this likable movie is n't more accomplished .\n7074\tThe actors try hard but come off too amateurish and awkward .\n7075\tThe plot has a number of holes , and at times it 's simply baffling .\n7076\tAn ill-conceived jumble that 's not scary , not smart and not engaging .\n7077\tBrainless , but enjoyably over-the-top , the retro gang melodrama , Deuces Wild represents fifties teen-gang machismo in a way that borders on rough-trade homo-eroticism .\n7078\tGets bogged down by an overly sillified plot and stop-and-start pacing .\n7079\t`` What John does is heroic , but we do n't condone it , '' one of the film 's stars recently said , a tortuous comment that perfectly illustrates the picture 's moral schizophrenia .\n7080\tLike coming into a long-running , well-written television series where you 've missed the first half-dozen episodes and probably wo n't see the next six .\n7081\tIts generic villains lack any intrigue -LRB- other than their funny accents -RRB- and the action scenes are poorly delivered .\n7082\tDripping with cliche and bypassing no opportunity to trivialize the material .\n7083\tHard-core slasher aficionados will find things to like ... but overall the Halloween series has lost its edge .\n7084\tStiff and schmaltzy and clumsily directed .\n7085\tThe story the movie tells is of Brian De Palma 's addiction to the junk-calorie suspense tropes that have all but ruined his career .\n7086\tToo many improbabilities and rose-colored situations temper what could 've been an impacting film .\n7087\tGeneric slasher-movie nonsense , but it 's not without style .\n7088\tWith tiny little jokes and nary an original idea , this sappy ethnic sleeper proves that not only blockbusters pollute the summer movie pool .\n7089\tIt sticks rigidly to the paradigm , rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived , well-worn situations .\n7090\tEver see one of those comedies that just seem like a bad idea from frame one ?\n7091\tOnce Ice-T sticks his mug in the window of the couple 's BMW and begins haranguing the wife in bad stage dialogue , all credibility flies out the window .\n7092\tThe best drug addition movies are usually depressing but rewarding .\n7093\tQuitting , however , manages just to be depressing , as the lead actor phones in his autobiographical performance .\n7094\tIt would be great to see this turd squashed under a truck , preferably a semi .\n7095\tIn the end , all you can do is admire the ensemble players and wonder what the point of it is .\n7096\tFor most movies , 84 minutes is short , but this one feels like a life sentence .\n7097\tWhile Glover , the irrepressible eccentric of River 's Edge , Dead Man and Back to the Future , is perfect casting for the role , he represents Bartleby 's main overall flaw .\n7098\tShatner is probably the funniest person in the film , which gives you an idea just how bad it was .\n7099\tTries so hard to be quirky and funny that the strain is all too evident .\n7100\tAs immaculate as Stuart Little 2 is , it could be a lot better if it were , well , more adventurous .\n7101\tSimply a re-hash of the other seven films .\n7102\tWith jump cuts , fast editing and lots of pyrotechnics , Yu clearly hopes to camouflage how bad his movie is .\n7103\tHe fails .\n7104\tI found myself more appreciative of what the director was trying to do than of what he had actually done .\n7105\tA very depressing movie of many missed opportunities .\n7106\tGoes on and on to the point of nausea .\n7107\tBy turns numbingly dull-witted and disquietingly creepy .\n7108\tBoy , has this franchise ever run out of gas .\n7109\tOne problem with the movie , directed by Joel Schumacher , is that it jams too many prefabricated story elements into the running time .\n7110\tThe comedy is nonexistent .\n7111\t... a bland , pretentious mess .\n7112\tIt 's a pedestrian , flat drama that screams out ` amateur ' in almost every frame .\n7113\tA bland animated sequel that hardly seems worth the effort .\n7114\tIt 's not just the vampires that are damned in Queen of the Damned -- the viewers will feel they suffer the same fate .\n7115\tIf religious films are n't your bailiwick , stay away .\n7116\tOtherwise , this could be a passable date film .\n7117\tThis is the case of a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience .\n7118\tThe pace and the visuals are so hyped up that a curious sense of menace informs everything .\n7119\tStuffy , full of itself , morally ambiguous and nothing to shout about .\n7120\tIt is most of the things Costner movies are known for ; it 's sanctimonious , self-righteous and so eager to earn our love that you want to slap it .\n7121\tDo n't let the subtitles fool you ; the movie only proves that Hollywood no longer has a monopoly on mindless action .\n7122\tChai 's structure and pacing are disconcertingly slack .\n7123\tTo be oblivious to the existence of this film would be very sweet indeed .\n7124\tThe director , with his fake backdrops and stately pacing , never settles on a consistent tone .\n7125\tOne just waits grimly for the next shock without developing much attachment to the characters .\n7126\tInstead of panoramic sweep , Kapur gives us episodic choppiness , undermining the story 's emotional thrust .\n7127\tThe director seems to take an unseemly pleasure in -LRB- the characters ' -RRB- misery and at the same time to congratulate himself for having the guts to confront it .\n7128\tThis dubious product of a college-spawned -LRB- Colgate U. -RRB- comedy ensemble known as Broken Lizard plays like a mix of Cheech and Chong and CHiPs .\n7129\tThe movie does n't think much of its characters , its protagonist , or of us .\n7130\tSuper Troopers is an odd amalgam of comedy genres , existing somewhere between the often literal riffs of early Zucker Brothers\\/Abrahams films , and the decidedly foul stylings of their post-modern contemporaries , The Farrelly Brothers .\n7131\t... will always be remembered for the 9-11 terrorist attacks .\n7132\tAfter seeing the film , I can tell you that there 's no other reason why anyone should bother remembering it .\n7133\tMade me feel uneasy , even queasy , because -LRB- Solondz 's -RRB- cool compassion is on the border of bemused contempt .\n7134\tAs a kind of colorful , dramatized PBS program , Frida gets the job done .\n7135\tBut , for that , why not watch a documentary ?\n7136\tWith minimal imagination , you could restage the whole thing in your bathtub .\n7137\tNights feels more like a quickie TV special than a feature film ... It 's not even a TV special you 'd bother watching past the second commercial break .\n7138\tAlthough ... visually striking and slickly staged , it 's also cold , grey , antiseptic and emotionally desiccated .\n7139\tYou can see where Big Bad Love is trying to go , but it never quite gets there .\n7140\tFriday After Next is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans .\n7141\tIt 's not as awful as some of the recent Hollywood trip tripe ... but it 's far from a groundbreaking endeavor .\n7142\tThe only thing `` swept away '' is the one hour and thirty-three minutes spent watching this waste of time .\n7143\tOne-sided documentary offers simplistic explanations to a very complex situation .\n7144\t... Stylistically , the movie is a disaster .\n7145\tThe corpse count ultimately overrides what little we learn along the way about vicarious redemption .\n7146\tAs violent , profane and exploitative as the most offensive action flick you 've ever seen .\n7147\tEgoyan 's work often elegantly considers various levels of reality and uses shifting points of view , but here he has constructed a film so labyrinthine that it defeats his larger purpose .\n7148\tLife or Something Like It has its share of high points , but it misses too many opportunities .\n7149\tThis is a truly , truly bad movie .\n7150\tDespite bearing the Paramount imprint , it 's a bargain-basement European pickup .\n7151\tWhat 's hard to understand is why anybody picked it up .\n7152\tWiser souls would have tactfully pretended not to see it and left it lying there\n7153\tBelievability was n't one of the film 's virtues .\n7154\tSewer rats could watch this movie and be so skeeved out that they 'd need a shower .\n7155\tThe Santa Clause 2 's plot may sound like it was co-written by Mattel executives and lobbyists for the tinsel industry .\n7156\tHis best film remains his shortest , The Hole , which makes many of the points that this film does but feels less repetitive .\n7157\tJust another disjointed , fairly predictable psychological thriller .\n7158\t... stumbles over every cheap trick in the book trying to make the outrage come even easier .\n7159\tEven the hastily and amateurishly drawn animation can not engage .\n7160\tKung Pow is Oedekerk 's realization of his childhood dream to be in a martial-arts flick , and proves that sometimes the dreams of youth should remain just that .\n7161\tBusy urban comedy is clearly not Zhang 's forte , his directorial touch is neither light nor magical enough to bring off this kind of whimsy .\n7162\tNot completely loveable -- but what underdog movie since The Bad News Bears has been ?\n7163\t-- but certainly hard to hate .\n7164\tA movie that ca n't get sufficient distance from Leroy 's delusions to escape their maudlin influence .\n7165\tIt 's Young Guns meets Goodfellas in this easily skippable hayseeds-vs .\n7166\t- greaseballs mob action-comedy .\n7167\tLouiso lets the movie dawdle in classic disaffected-indie-film mode , and brother Hoffman 's script stumbles over a late-inning twist that just does n't make sense .\n7168\tThe movie straddles the fence between escapism and social commentary , and on both sides it falls short .\n7169\tThe film is old-fashioned , occasionally charming and as subtle as boldface .\n7170\tCa n't get enough of libidinous young city dwellers ?\n7171\tTry this obscenely bad dark comedy , so crass that it makes Edward Burns ' Sidewalks of New York look like Oscar Wilde .\n7172\tIn The New Guy , even the bull gets recycled .\n7173\tLargely , this is a movie that also does it by the numbers .\n7174\tOn top of a foundering performance , -LRB- Madonna 's -RRB- denied her own athleticism by lighting that emphasizes every line and sag .\n7175\tThis is the first full scale WWII flick from Hong Kong 's John Woo .\n7176\tHe 's not good with people .\n7177\tPatchy combination of soap opera , low-tech magic realism and , at times , ploddingly sociological commentary .\n7178\t-LRB- Stevens is -RRB- so stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits .\n7179\tSo boring that even its target audience talked all the way through it .\n7180\tOne of the more glaring signs of this movie 's servitude to its superstar is the way it skirts around any scenes that might have required genuine acting from Ms. Spears .\n7181\tHollywood Ending is the most disappointing Woody Allen movie ever .\n7182\tHe has a great cast and a great idea .\n7183\tBut the execution is a flop with the exception of about six gags that really work .\n7184\t... generically , forgettably pleasant from start to finish .\n7185\tIt 's just hard to believe that a life like this can sound so dull .\n7186\tWhen not wallowing in its characters ' frustrations , the movie is busy contriving false , sitcom-worthy solutions to their problems .\n7187\tAn overstylized , purÃ©ed mÃ©lange of sex , psychology , drugs and philosophy .\n7188\tSometimes entertaining , sometimes indulgent -- but never less than pure wankery .\n7189\t` Lovely and Amazing , ' unhappily , is neither ... excessively strained and contrived .\n7190\tRingu is a disaster of a story , full of holes and completely lacking in chills .\n7191\tIgnore the reputation , and ignore the film .\n7192\tThis one is a few bits funnier than Malle 's dud , if only because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks .\n7193\t` It 's painful to watch Witherspoon 's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination , I mean , Alabama . '\n7194\tA plodding teen remake that 's so mechanical you can smell the grease on the plot twists .\n7195\tTrying to figure out the rules of the Country Bear universe -- when are bears bears and when are they like humans , only hairier -- would tax Einstein 's brain .\n7196\tEven in terms of the low-grade cheese standards on which it operates , it never quite makes the grade as tawdry trash .\n7197\tAmidst the action , the script carries Arnold -LRB- and the viewers -RRB- into the forbidden zone of sympathizing with terrorist motivations by presenting the `` other side of the story . ''\n7198\tRife with nutty cliches and far too much dialogue .\n7199\tIt 's a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit .\n7200\t... one big laugh , three or four mild giggles , and a whole lot of not much else .\n7201\tToo intensely focused on the travails of being Hal Hartley to function as pastiche , No Such Thing is Hartley 's least accessible screed yet .\n7202\tKenneth Branagh 's energetic sweet-and-sour performance as a curmudgeonly British playwright grounds this overstuffed , erratic dramedy in which he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles .\n7203\tDirector Uwe Boll and writer Robert Dean Klein fail to generate any interest in an unsympathetic hero caught up in an intricate plot that while cleverly worked out , can not overcome blah characters .\n7204\tMs. Phoenix is completely lacking in charm and charisma , and is unable to project either Esther 's initial anomie or her eventual awakening .\n7205\tThe movie fails to portray its literarily talented and notorious subject as anything much more than a dirty old man .\n7206\tA clichÃ©d and shallow cautionary tale about the hard-partying lives of gay men .\n7207\tThe fetid underbelly of fame has never looked uglier .\n7208\tA little weak -- and it is n't that funny .\n7209\tWhile it is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion , Lan Yu never catches dramatic fire .\n7210\tThe script boasts some tart TV-insider humor , but the film has not a trace of humanity or empathy .\n7211\tDespite the pyrotechnics , Narc is strictly by the book .\n7212\tIn both the writing and cutting , it does not achieve the kind of dramatic unity that transports you .\n7213\tYou end up simply admiring this bit or that , this performance or that .\n7214\tCacoyannis is perhaps too effective in creating an atmosphere of dust-caked stagnation and labored gentility .\n7215\tWorth seeing once , but its charm quickly fades .\n7216\tThe original was n't a good movie but this remake makes it look like a masterpiece !\n7217\tOne suspects that Craven endorses They simply because this movie makes his own look much better by comparison .\n7218\tGere gives a good performance in a film that does n't merit it .\n7219\tYour appreciation of it will depend on what experiences you bring to it and what associations you choose to make .\n7220\tIncludes too much obvious padding .\n7221\tThere 's no palpable chemistry between Lopez and male lead Ralph Fiennes , plus the script by Working Girl scribe Kevin Wade is workmanlike in the extreme .\n7222\tI 'm not sure which half of Dragonfly is worse : The part where nothing 's happening , or the part where something 's happening , but it 's stupid .\n7223\tDo n't expect any subtlety from this latest entry in the increasingly threadbare gross-out comedy cycle .\n7224\tThe only camouflage Carvey should now be considering is a paper bag to wear over his head when he goes out into public , to avoid being recognized as the man who bilked unsuspecting moviegoers .\n7225\tShot like a postcard and overacted with all the boozy self-indulgence that brings out the worst in otherwise talented actors ...\n7226\tSpain 's greatest star wattage does n't overcome the tumult of maudlin tragedy .\n7227\tConforms itself with creating a game of ` who 's who ' ... where the characters ' moves are often more predictable than their consequences .\n7228\tLooks and feels like a low-budget hybrid of Scarface or Carlito 's Way .\n7229\tThe script is a tired one , with few moments of joy rising above the stale material .\n7230\tSuffers from all the excesses of the genre .\n7231\tThe verdict : Two bodies and hardly a laugh between them .\n7232\tThe latest Adam Sandler assault and possibly the worst film of the year .\n7233\tDownbeat , period-perfect biopic hammers home a heavy-handed moralistic message .\n7234\tWhile the film is competent , it 's also uninspired , lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires .\n7235\tThey ought to be a whole lot scarier than they are in this tepid genre offering .\n7236\tIt 's harmless , diverting fluff .\n7237\tBut it 's hard to imagine a more generic effort in the genre .\n7238\tIt 's just plain lurid when it is n't downright silly .\n7239\tComedy troupe Broken Lizard 's first movie is very funny but too concerned with giving us a plot .\n7240\tPap invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God in the fifth Trek flick .\n7241\tA horror movie with seriously dumb characters , which somewhat dilutes the pleasure of watching them stalked by creepy-crawly bug things that live only in the darkness .\n7242\tIt 's a film with an idea buried somewhere inside its fabric , but never clearly seen or felt .\n7243\t` All in all , Reign of Fire will be a good -LRB- successful -RRB- rental . '\n7244\tOccasionally funny , sometimes inspiring , often boring .\n7245\tA movie in which two not very absorbing characters are engaged in a romance you ca n't wait to see end .\n7246\tThe predominantly amateur cast is painful to watch , so stilted and unconvincing are the performances .\n7247\tWho are ` they ' ?\n7248\tWell , they 're ` they ' .\n7249\tThey 're the unnamed , easily substitutable forces that serve as whatever terror the heroes of horror movies try to avoid .\n7250\tThey exist for hushed lines like `` They 're back ! ''\n7251\t, `` They 're out there ! ''\n7252\tand `` They 're coming ! ''\n7253\tElegantly crafted but emotionally cold , a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level .\n7254\tWere Dylan Thomas alive to witness first-time director Ethan Hawke 's strained Chelsea Walls , he might have been tempted to change his landmark poem to , ` Do Not Go Gentle Into That Good Theatre . '\n7255\tThe story has its redundancies , and the young actors , not very experienced , are sometimes inexpressive .\n7256\tI 'm sure the filmmaker would disagree , but , honestly , I do n't see the point .\n7257\tIt 's a visual Rorschach test and I must have failed .\n7258\tThe film is really closer to porn than a serious critique of what 's wrong with this increasingly pervasive aspect of gay culture .\n7259\tMurder by Numbers just does n't add up .\n7260\tClare Peploe 's airless movie adaptation could use a little American Pie-like irreverence .\n7261\tVideo games are more involving than this mess .\n7262\tClayburgh and Tambor are charming performers ; neither of them deserves Eric Schaeffer .\n7263\tA pale Xerox of other , better crime movies .\n7264\t... a hokey piece of nonsense that tries too hard to be emotional .\n7265\tIlliterate , often inert sci-fi action thriller .\n7266\tA perfect example of rancid , well-intentioned , but shamelessly manipulative movie making .\n7267\tThe adventure does n't contain half the excitement of Balto , or quarter the fun of Toy Story 2 .\n7268\tEssentially a collection of bits -- and they 're all naughty .\n7269\tA mess .\n7270\tThe screenplay does too much meandering , Norton has to recite bland police procedural details , Fiennes wanders around in an attempt to seem weird and distanced , Hopkins looks like a drag queen .\n7271\tThe screenplay by James Eric , James Horton and director Peter O'Fallon ... is so pat it makes your teeth hurt .\n7272\tBefore it takes a sudden turn and devolves into a bizarre sort of romantic comedy , Steven Shainberg 's adaptation of Mary Gaitskill 's harrowing short story ... is a brilliantly played , deeply unsettling experience .\n7273\tSolaris is rigid and evasive in ways that Soderbergh 's best films , `` Erin Brockovich , '' `` Out of Sight '' and `` Ocean 's Eleven , '' never were .\n7274\tSeems like something American and European gay movies were doing 20 years ago .\n7275\tIn the process of trimming the movie to an expeditious 84 minutes , director Roger Kumble seems to have dumped a whole lot of plot in favor of ... outrageous gags .\n7276\tYou can see the would-be surprises coming a mile away , and the execution of these twists is delivered with a hammer .\n7277\tThumbs down .\n7278\tThe characters are paper thin and the plot is so cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects .\n7279\t... del Toro maintains a dark mood that makes the film seem like something to endure instead of enjoy .\n7280\tThe movie eventually snaps under the strain of its plot contrivances and its need to reassure .\n7281\tThe real question this movie poses is not ` Who ? '\n7282\tbut ` Why ? '\n7283\tNow here 's a sadistic bike flick that would have made Vittorio De Sica proud .\n7284\tA movie that 's about as overbearing and over-the-top as the family it depicts .\n7285\tA movie in which laughter and self-exploitation merge into jolly soft-porn 'em powerment . '\n7286\tOccasionally interesting but essentially unpersuasive , a footnote to a still evolving story .\n7287\tIf we 're to slap protagonist Genevieve LePlouff because she 's French , do we have that same option to slap her creators because they 're clueless and inept ?\n7288\tMoretti plays Giovanni , a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy .\n7289\tToo predictably , in fact .\n7290\tAlternative medicine obviously has its merits ... but Ayurveda does the field no favors .\n7291\tThis thing works on no level whatsoever for me .\n7292\tIt follows the basic plot trajectory of nearly every Schwarzenegger film : Someone crosses Arnie .\n7293\tArnie blows things up .\n7294\tIce Age posits a heretofore unfathomable question : Is it possible for computer-generated characters to go through the motions ?\n7295\tAn incoherent jumble of a film that 's rarely as entertaining as it could have been .\n7296\t... they missed the boat .\n7297\tMore dutiful than enchanting ... terribly episodic and lacking the spark of imagination that might have made it an exhilarating treat .\n7298\tLaconic and very stilted in its dialogue , this indie flick never found its audience , probably because it 's extremely hard to relate to any of the characters .\n7299\tThe comedy Death to Smoochy is a rancorous curiosity : a movie without an apparent audience .\n7300\tBarney 's ideas about creation and identity do n't really seem all that profound , at least by way of what can be gleaned from this three-hour endurance test built around an hour 's worth of actual material .\n7301\tAffleck merely creates an outline for a role he still needs to grow into , a role that Ford effortlessly filled with authority .\n7302\tCinematic pyrotechnics aside , the only thing Avary seems to care about are mean giggles and pulchritude .\n7303\tIt makes sense that he went back to school to check out the girls -- his film is a frat boy 's idea of a good time .\n7304\tThe narrative is so consistently unimaginative that probably the only way to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys .\n7305\tNothing more or less than an outright bodice-ripper -- it should have ditched the artsy pretensions and revelled in the entertaining shallows .\n7306\tA living testament to the power of the eccentric and the strange .\n7307\tThe fact that it is n't very good is almost beside the point .\n7308\tFeels less like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series .\n7309\tWhat might have been acceptable on the printed page of Iles ' book does not translate well to the screen .\n7310\tIf Oscar had a category called Best Bad Film You Thought Was Going To Be Really Awful But Was n't , Guys would probably be duking it out with The Queen of the Damned for the honor .\n7311\tA poky and pseudo-serious exercise in sham actor workshops and an affected malaise .\n7312\tMediocre fable from Burkina Faso .\n7313\tFessenden has nurtured his metaphors at the expense of his narrative , but he does display an original talent .\n7314\tSince the movie is based on a Nicholas Sparks best seller , you know death is lurking around the corner , just waiting to spoil things .\n7315\tBottom-rung New Jack City wannabe .\n7316\tFincher takes no apparent joy in making movies , and he gives none to the audience .\n7317\tIt 's mildly amusing , but I certainly ca n't recommend it .\n7318\tNicholas Nickleby celebrates the human spirit with such unrelenting Dickensian decency that it turned me -LRB- horrors ! -RRB-\n7319\tinto Scrooge .\n7320\tFear Dot Com is more frustrating than a modem that disconnects every 10 seconds .\n7321\tFull of flatulence jokes and mild sexual references , Kung Pow !\n7322\tis the kind of movie that 's critic-proof , simply because it aims so low .\n7323\tMay cause you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists .\n7324\tThere are just too many characters saying too many clever things and getting into too many pointless situations .\n7325\tWhere 's the movie here ?\n7326\tA dark , dull thriller with a parting shot that misfires .\n7327\tLacking substance and soul , Crossroads comes up shorter than Britney 's cutoffs .\n7328\tCassavetes thinks he 's making Dog Day Afternoon with a cause , but all he 's done is to reduce everything he touches to a shrill , didactic cartoon .\n7329\tBuries an interesting storyline about morality and the choices we make underneath such a mountain of clichÃ©s and borrowed images that it might more accurately be titled Mr. Chips off the Old Block .\n7330\tAlthough sensitive to a fault , it 's often overwritten , with a surfeit of weighty revelations , flowery dialogue , and nostalgia for the past and roads not taken .\n7331\tIt 's so badly made on every level that I 'm actually having a hard time believing people were paid to make it .\n7332\tWithout non-stop techno or the existential overtones of a Kieslowski morality tale , MaelstrÃ¶m is just another Winter Sleepers .\n7333\tNicks , seemingly uncertain what 's going to make people laugh , runs the gamut from stale parody to raunchy sex gags to formula romantic comedy .\n7334\t` A ' for creativity but comes across more as a sketch for a full-length comedy .\n7335\tIf there 's one thing this world needs less of , it 's movies about college that are written and directed by people who could n't pass an entrance exam .\n7336\tThe script kicks in , and Mr. Hartley 's distended pace and foot-dragging rhythms follow .\n7337\t-LRB- E -RRB- ventually , every idea in this film is flushed down the latrine of heroism .\n7338\tI am sorry that I was unable to get the full brunt of the comedy .\n7339\tNo telegraphing is too obvious or simplistic for this movie .\n7340\tLooks and feels like a project better suited for the small screen .\n7341\tIn its best moments , resembles a bad high school production of Grease , without benefit of song .\n7342\tIndifferently implausible popcorn programmer of a movie .\n7343\tIt 's inoffensive , cheerful , built to inspire the young people , set to an unending soundtrack of beach party pop numbers and aside from its remarkable camerawork and awesome scenery , it 's about as exciting as a sunburn .\n7344\tHis comedy premises are often hackneyed or just plain crude , calculated to provoke shocked laughter , without following up on a deeper level .\n7345\tChristina Ricci comedy about sympathy , hypocrisy and love is a misfire .\n7346\tAt times , the suspense is palpable , but by the end there 's a sense that the crux of the mystery hinges on a technicality that strains credulity and leaves the viewer haunted by the waste of potential .\n7347\tThey should have called it Gutterball .\n7348\tThekids will probably stay amused at the kaleidoscope of big , colorful characters .\n7349\tMom and Dad can catch some quality naptime along the way .\n7350\tIt 's too self-important and plodding to be funny , and too clipped and abbreviated to be an epic .\n7351\tThe best that can be said about the work here of Scottish director Ritchie ... is that he obviously does n't have his heart in it .\n7352\tLess dizzying than just dizzy , the jaunt is practically over before it begins .\n7353\tSlick piece of cross-promotion .\n7354\tTaylor appears to have blown his entire budget on soundtrack rights and had nothing left over for jokes .\n7355\tIt believes it 's revealing some great human truths , when , in reality , it 's churning ground that has long passed the point of being fertile .\n7356\tIt all drags on so interminably it 's like watching a miserable relationship unfold in real time .\n7357\tVilleneuve spends too much time wallowing in Bibi 's generic angst -LRB- there are a lot of shots of her gazing out windows -RRB- .\n7358\t-LRB- T -RRB- here 's only so much anyone can do with a florid , overplotted , Anne Rice rock 'n' roll vampire novel before the built-in silliness of the whole affair defeats them .\n7359\tIt 's another video movie photographed like a film , with the bad lighting that 's often written off as indie film naturalism .\n7360\tThe techno tux is good for a few laughs , as are Chan and Hewitt , but when such a good design turns out to be a cheap knockoff , we ca n't recommend anything but a rental for The Tuxedo .\n7361\tI got a headache watching this meaningless downer .\n7362\tApart from dazzling cinematography , we 've seen just about everything in Blue Crush in one form or the other .\n7363\tToo much of the humor falls flat .\n7364\tDetox is ultimately a pointless endeavor .\n7365\tVan Wilder does n't bring anything new to the proverbial table , but it does possess a coherence absent in recent crass-a-thons like Tomcats , Freddy Got Fingered , and Slackers .\n7366\tThe piquant story needs more dramatic meat on its bones .\n7367\tVery special effects , brilliantly bold colors and heightened reality ca n't hide the giant Achilles ' heel in `` Stuart Little 2 `` : There 's just no story , folks .\n7368\tThe plot combines The Blues Brothers and Almost Famous -LRB- but with bears , and a G rating -RRB- , with an excruciating dollop of Disney sentimentality mixed in for good measure .\n7369\tNo way I can believe this load of junk .\n7370\t`` Roger Michell -LRB- '' Notting Hill `` -RRB- directs a morality thriller . ''\n7371\tIt 's dumb , but more importantly , it 's just not scary .\n7372\tThere is no pleasure in watching a child suffer .\n7373\tJust embarrassment and a vague sense of shame .\n7374\tThe movie 's accumulated force still feels like an ugly knot tightening in your stomach .\n7375\tBut is that knot from dramatic tension or a symptom of artistic malnutrition ?\n7376\tEven with a green Mohawk and a sheet of fire-red flame tattoos covering his shoulder , however , Kilmer seems to be posing , rather than acting .\n7377\tAnd that leaves a hole in the center of The Salton Sea .\n7378\tThere 's just no currency in deriding James Bond for being a clichÃ©d , doddering , misogynistic boy 's club .\n7379\tWhen the film ended , I felt tired and drained and wanted to lie on my own deathbed for a while .\n7380\tFull of witless jokes , dealing in broad stereotypes and outrageously unbelievable scenarios , and saddled with a general air of misogyny\n7381\tThe film 's hackneyed message is not helped by the thin characterizations , nonexistent plot and pretentious visual style .\n7382\tThe Iditarod lasts for days - this just felt like it did .\n7383\tIt feels like an after-school special gussied up with some fancy special effects , and watching its rote plot points connect is about as exciting as gazing at an egg timer for 93 minutes .\n7384\tThis movie is maddening .\n7385\tIt conveys a simple message in a visual style that is willfully overwrought .\n7386\tShould have been someone else -\n7387\tThe film is based on truth and yet there is something about it that feels incomplete , as if the real story starts just around the corner .\n7388\tWhy make a documentary about these marginal historical figures ?\n7389\tWould n't one about their famous dad , author of Death in Venice , etc. , be more valuable ?\n7390\tThe lower your expectations , the more you 'll enjoy it .\n7391\tRarely has leukemia looked so shimmering and benign .\n7392\t... is an arthritic attempt at directing by Callie Khouri .\n7393\tI had to look away - this was god awful .\n7394\tEven in this less-than-magic kingdom , Reese rules .\n7395\tVelocity represents everything wrong with '' independent film '' as a commodified , sold-out concept on the American filmmaking scene .\n7396\tJust one bad idea after another .\n7397\tBecause of an unnecessary and clumsy last scene , ` Swimfan ' left me with a very bad feeling .\n7398\tThough Moonlight Mile is replete with acclaimed actors and actresses and tackles a subject that 's potentially moving , the movie is too predictable and too self-conscious to reach a level of high drama .\n7399\tA movie that hovers somewhere between an acute character study and a trite power struggle .\n7400\tCorpus Collosum -- while undeniably interesting -- wore out its welcome well before the end credits rolled about 45 minutes in .\n7401\tThe last 20 minutes are somewhat redeeming , but most of the movie is the same teenage American road-trip drek we 've seen before - only this time you have to read the fart jokes\n7402\tIt 's hard to like a film about a guy who is utterly unlikeable , and Shiner , starring Michael Caine as an aging British boxing promoter desperate for a taste of fame and fortune , is certainly that .\n7403\tA by-the-numbers effort that wo n't do much to enhance the franchise .\n7404\tInvolves two mysteries -- one it gives away and the other featuring such badly drawn characters that its outcome hardly matters .\n7405\tOverall the film feels like a low-budget TV pilot that could not find a buyer to play it on the tube .\n7406\tIt 's of the quality of a lesser Harrison Ford movie - Six Days , Seven Nights , maybe , or that dreadful Sabrina remake .\n7407\tIt appears that something has been lost in the translation to the screen .\n7408\tDespite all evidence to the contrary , this clunker has somehow managed to pose as an actual feature movie , the kind that charges full admission and gets hyped on TV and purports to amuse small children and ostensible adults .\n7409\tAn unclassifiably awful study in self - and audience-abuse .\n7410\tThis movie is something of an impostor itself , stretching and padding its material in a blur of dead ends and distracting camera work .\n7411\tHey Arnold !\n7412\tThe Movie could have been made 40 years ago , and parents ' appreciation of it may depend on whether they consider that a good thing .\n7413\tThis one is definitely one to skip , even for horror movie fanatics .\n7414\tExcessive , profane , packed with cartoonish violence and comic-strip characters .\n7415\tOnce the 50 year old Benigni appears as the title character , we find ourselves longing for the block of wood to come back .\n7416\tA working class `` us vs. them '' opera that leaves no heartstring untugged and no liberal cause unplundered .\n7417\tIf the movie succeeds in instilling a wary sense of ` there but for the grace of God , ' it is far too self-conscious to draw you deeply into its world .\n7418\tThere are simply too many ideas floating around -- part farce , part Sliding Doors , part pop video -- and yet failing to exploit them .\n7419\tIt takes a strange kind of laziness to waste the talents of Robert Forster , Anne Meara , Eugene Levy , and Reginald VelJohnson all in the same movie .\n7420\tWe have n't seen such hilarity since Say It Is n't So !\n7421\tExpect the same-old , lame-old slasher nonsense , just with different scenery .\n7422\tThe Cold Turkey would 've been a far better title .\n7423\tThe idea of 49-year-old Roberto Benigni playing the wooden boy Pinocchio is scary enough .\n7424\tThe reality of the new live-action Pinocchio he directed , cowrote and starred in borders on the grotesque .\n7425\tThe ga-zillionth airhead movie about a wife in distress who resorts to desperate measures .\n7426\tZaidan 's script has barely enough plot to string the stunts together and not quite enough characterization to keep the faces straight .\n7427\tTry as I may , I ca n't think of a single good reason to see this movie , even though everyone in my group extemporaneously shouted , ` Thank you ! '\n7428\twhen Leguizamo finally plugged an irritating character late in the movie .\n7429\tWhile it 's nice to watch a movie that has n't been focus-grouped into tedium , Yu 's cinematic alchemy produces nearly as much lead as gold .\n7430\tIt treats women like idiots .\n7431\tThough Catch Me If You Can is n't badly made , the fun slowly leaks out of the movie .\n7432\tJust an average comedic dateflick but not a waste of time .\n7433\tA valueless kiddie paean to pro basketball underwritten by the NBA .\n7434\tImpostor has a handful of thrilling moments and a couple of good performances , but the movie does n't quite fly .\n7435\tFor starters , the story is just too slim .\n7436\tSo much facile technique , such cute ideas , so little movie .\n7437\tThe experience of going to a film festival is a rewarding one ; the experiencing of sampling one through this movie is not .\n7438\tThe film takes the materials of human tragedy and dresses them in lovely costumes , Southern California locations and star power .\n7439\tIt has its moments of swaggering camaraderie , but more often just feels generic , derivative and done to death .\n7440\tAlmost gags on its own gore .\n7441\tHow do you spell clichÃ© ?\n7442\tIt 's sweet , harmless , dumb , occasionally funny and about as compelling as a fishing show .\n7443\tThe moviegoing equivalent of going to a dinner party and being forced to watch the host and hostess 's home video of their baby 's birth .\n7444\tWhile -LRB- Hill -RRB- has learned new tricks , the tricks alone are not enough to salvage this lifeless boxing film .\n7445\tIn the real world , an actor this uncharismatically beautiful would have a rÃ©sumÃ© loaded with credits like `` Girl in Bar # 3 . ''\n7446\tToo much of it feels unfocused and underdeveloped .\n7447\tUnder 15 ?\n7448\tA giggle a minute .\n7449\tOver age 15 ?\n7450\tBig Fat Waste of Time .\n7451\tHey Arnold !\n7452\tThe Movie is what happens when you blow up small potatoes to 10 times their natural size , and it ai n't pretty .\n7453\tSometimes seems less like storytelling than something the otherwise compelling director needed to get off his chest .\n7454\tThis is not the undisputed worst boxing movie ever , but it 's certainly not a champion - the big loser is the audience .\n7455\tYou really have to wonder how on earth anyone , anywhere could have thought they 'd make audiences guffaw with a script as utterly diabolical as this .\n7456\tIn the end , we are left with something like two ships passing in the night rather than any insights into gay love , Chinese society or the price one pays for being dishonest .\n7457\tChokes on its own depiction of upper-crust decorum .\n7458\tWell-nigh unendurable ... though the picture strains to become cinematic poetry , it remains depressingly prosaic and dull .\n7459\tI thought my own watch had stopped keeping time as I slogged my way through Clockstoppers .\n7460\tWhile much of the cast has charm -- especially Allodi and Nolden -- the performers are sunk by the film 's primitive approach to the mechanics of comedy .\n7461\tThis directorial debut from music video show-off Higuchinsky is all flash .\n7462\tYes , Ballistic is silly .\n7463\tUnfortunately , it 's not silly fun unless you enjoy really bad movies .\n7464\tThe twist that ends the movie is the one with the most emotional resonance , but twists are getting irritating , and this is the kind of material where the filmmakers should be very careful about raising eyebrows .\n7465\tThe longer the movie goes , the worse it gets , but it 's actually pretty good in the first few minutes .\n7466\tWhile it 's genuinely cool to hear characters talk about early rap records -LRB- Sugar Hill Gang , etc. -RRB- , the constant referencing of hip-hop arcana can alienate even the savviest audiences .\n7467\tNot only unfunny , but downright repellent .\n7468\tCare deftly captures the wonder and menace of growing up , but he never really embraces the joy of Fuhrman 's destructive escapism or the grace-in-rebellion found by his characters .\n7469\tForced , familiar and thoroughly condescending .\n7470\tDoes little more than play an innocuous game of fill-in - the-blanks with a tragic past .\n7471\tK-19 exploits our substantial collective fear of nuclear holocaust to generate cheap Hollywood tension .\n7472\tHas a long and clunky ending ... which forces the audience to fidget through ten pseudo-serious minutes while waiting for the ending credits and the deleted scenes montage to break the audience 's awkward silence\n7473\tA ragbag of promising ideas and failed narrative , of good acting and plain old bad filmmaking .\n7474\tWhaley 's determination to immerse you in sheer , unrelenting wretchedness is exhausting .\n7475\tUncommonly stylish but equally silly ... the picture fails to generate much suspense , nor does it ask searching enough questions to justify its pretensions .\n7476\tThe entire movie is about a boring , sad man being boring and sad .\n7477\tThe plot convolutions ultimately add up to nothing more than jerking the audience 's chain .\n7478\tConfirms the nagging suspicion that Ethan Hawke would be even worse behind the camera than he is in front of it .\n7479\tMade with no discernible craft and monstrously sanctimonious in dealing with childhood loss .\n7480\tIt 's a trifle of a movie , with a few laughs surrounding an unremarkable soft center .\n7481\tHolden Caulfield did it better .\n7482\tA synthesis of cliches and absurdities that seems positively decadent in its cinematic flash and emptiness .\n7483\tOh come on .\n7484\tLike you could n't smell this turkey rotting from miles away .\n7485\tIf it 's seldom boring , well , it 's also rarely coherent .\n7486\tSimplistic fluff-ball of whimsy .\n7487\tNot exactly the Bees Knees\n7488\tIt does nothing new with the old story , except to show fisticuffs in this sort of stop-go slow motion that makes the gang rumbles look like they 're being streamed over a 28K modem .\n7489\tThe kind of spectacularly misconceived enterprise that only a sophisticated cinephile could have perpetrated .\n7490\tMakes for some truly odd , at times confusing , kids entertainment ... but at least this time there 's some centered storytelling to go along with all the weird stuff .\n7491\tThe film contains no good jokes , no good scenes , barely a moment when Carvey 's Saturday Night Live-honed mimicry rises above the level of embarrassment .\n7492\tJacquot 's rendering of Puccini 's tale of devotion and double-cross is more than just a filmed opera .\n7493\tIn his first stab at the form , Jacquot takes a slightly anarchic approach that works only sporadically .\n7494\tChabrol has taken promising material for a black comedy and turned it instead into a somber chamber drama .\n7495\tIt 's as if you 're watching a movie that was made in 1978 but not released then because it was so weak , and it has been unearthed and released now , when it has become even weaker .\n7496\tThis is nothing but familiar territory .\n7497\tIn execution , this clever idea is far less funny than the original , Killers From Space .\n7498\tOne of the more irritating cartoons you will see this , or any , year .\n7499\tA broad , melodramatic estrogen opera that 's pretty toxic in its own right .\n7500\tToo slow , too long and too little happens .\n7501\tThe film 's few ideas are stretched to the point of evaporation ; the whole central section is one big chase that seems to have no goal and no urgency .\n7502\tIt 's just filler .\n7503\tSacrifices the value of its wealth of archival foot-age with its less-than-objective stance .\n7504\tUtterly lacking in charm , wit and invention , Roberto Benigni 's Pinocchio is an astonishingly bad film .\n7505\tA hamfisted romantic comedy that makes our girl the hapless facilitator of an extended cheap shot across the Mason-Dixon line .\n7506\tScores no points for originality , wit , or intelligence .\n7507\tIt 's a cookie-cutter movie , a cut-and-paste job .\n7508\tThey takes a long time to get to its gasp-inducing ending .\n7509\tBarely gets off the ground .\n7510\tEven on those rare occasions when the narrator stops yammering , Miller 's hand often feels unsure .\n7511\tPumpkin means to be an outrageous dark satire on fraternity life , but its ambitions far exceed the abilities of writer Adam Larson Broder and his co-director , Tony R. Abrams , in their feature debut .\n7512\tAt its best , Queen is campy fun like the Vincent Price horror classics of the '60s .\n7513\tAt its worst , it implodes in a series of very bad special effects .\n7514\tFrom the opening scenes , it 's clear that All About the Benjamins is a totally formulaic movie .\n7515\tIt takes a certain kind of horror movie to qualify as ` worse than expected , ' but Ghost Ship somehow manages to do exactly that .\n7516\tOn the bright side , it contains Jesse Ventura 's best work since the XFL .\n7517\tDespite impeccable acting ... and a script that takes some rather unexpected -LRB- even , at times , preposterous -RRB- turns , Love is just too , too precious in the end .\n7518\tA TV style murder mystery with a few big screen moments -LRB- including one that seems to be made for a different film altogether -RRB- .\n7519\tBy getting myself wrapped up in the visuals and eccentricities of many of the characters , I found myself confused when it came time to get to the heart of the movie .\n7520\tToo often , the viewer is n't reacting to humor so much as they are wincing back in repugnance .\n7521\tDilbert without the right-on satiric humor .\n7522\tManages to show life in all of its banality when the intention is quite the opposite .\n7523\tDo not see this film .\n7524\tMinority Report is exactly what the title indicates , a report .\n7525\tDelivers the same old same old , tarted up with Latin flava and turned out by Hollywood playas .\n7526\tIf you believe any of this , I can make you a real deal on leftover Enron stock that will double in value a week from Friday .\n7527\tTo call The Other Side of Heaven `` appalling '' would be to underestimate just how dangerous entertainments like it can be .\n7528\tIn exactly 89 minutes , most of which passed as slowly as if I 'd been sitting naked on an igloo , Formula 51 sank from quirky to jerky to utter turkey .\n7529\tIf only the story about a multi-million dollar con bothered to include the con .\n7530\tI 'd have to say the star and director are the big problems here .\n7531\tWithout the dark spookiness of Crystal Lake Camp , the horror concept completely loses its creepy menace .\n7532\tIt 's like every bad idea that 's ever gone into an after-school special compiled in one place , minus those daytime programs ' slickness and sophistication -LRB- and who knew they even had any ? -RRB- .\n7533\tWhile the Resident Evil games may have set new standards for thrills , suspense , and gore for video games , the movie really only succeeds in the third of these .\n7534\tFor close to two hours the audience is forced to endure three terminally depressed , mostly inarticulate , hyper dysfunctional families for the price of one .\n7535\tTo my taste , the film 's comic characters come perilously close to being Amoses and Andys for a new generation .\n7536\tWhat the director ca n't do is make either of Val Kilmer 's two personas interesting or worth caring about .\n7537\tIn an effort , I suspect , not to offend by appearing either too serious or too lighthearted , it offends by just being wishy-washy .\n7538\tIt 's difficult to imagine the process that produced such a script , but here 's guessing that spray cheese and underarm noises played a crucial role .\n7539\tHarland Williams is so funny in drag he should consider permanent sex-reassignment .\n7540\t... nothing scary here except for some awful acting and lame special effects .\n7541\tIt 's not that Kung Pow is n't funny some of the time -- it just is n't any funnier than bad martial arts movies are all by themselves , without all Oedekerk 's impish augmentation .\n7542\tA very long movie , dull in stretches , with entirely too much focus on meal preparation and igloo construction .\n7543\tNot an objectionable or dull film ; it merely lacks everything except good intentions .\n7544\tA science-fiction pastiche so lacking in originality that if you stripped away its inspirations there would be precious little left .\n7545\tOnce -LRB- Kim -RRB- begins to overplay the shock tactics and bait-and-tackle metaphors , you may decide it 's too high a price to pay for a shimmering picture postcard .\n7546\tThe words , ` Frankly , my dear , I do n't give a damn , ' have never been more appropriate .\n7547\tWhat 's next : `` My Mother the Car ? ''\n7548\tAll the amped-up Tony Hawk-style stunts and thrashing rap-metal ca n't disguise the fact that , really , we 've been here , done that .\n7549\tA sequel that 's much too big for its britches .\n7550\tSo unremittingly awful that labeling it a dog probably constitutes cruelty to canines .\n7551\tWhat was once original has been co-opted so frequently that it now seems pedestrian .\n7552\tA perplexing example of promise unfulfilled , despite many charming moments .\n7553\tFor all the writhing and wailing , tears , rage and opium overdoses , there 's no sense of actual passion being washed away in love 's dissolution .\n7554\tA coarse and stupid gross-out .\n7555\ta nightmare date with a half-formed wit done a great disservice by a lack of critical distance and a sad trust in liberal arts college bumper sticker platitudes .\n7556\tDoes n't offer much besides glib soullessness , raunchy language and a series of brutal set pieces ... that raise the bar on stylized screen violence .\n7557\tThere 's something with potential here , but the movie decides , like Lavinia , to go the conservative route .\n7558\tIt 's one pussy-ass world when even killer-thrillers revolve around group therapy sessions .\n7559\tThe stripped-down approach does give the film a certain timeless quality , but the measured pace and lack of dramatic inflection can also seem tedious .\n7560\tBut the power of these -LRB- subjects -RRB- is obscured by the majority of the film that shows a stationary camera on a subject that could be mistaken for giving a public oration , rather than contributing to a film 's narrative .\n7561\tRarely has so much money delivered so little entertainment .\n7562\tTries to add some spice to its quirky sentiments but the taste is all too familiar .\n7563\tPaid In Full is so stale , in fact , that its most vibrant scene is one that uses clips from Brian De Palma 's Scarface .\n7564\tThat 's a cheat .\n7565\tHarrison 's Flowers puts its heart in the right place , but its brains are in no particular place at all .\n7566\tThis re-do is so dumb and so exploitative in its violence that , ironically , it becomes everything that the rather clumsy original was railing against .\n7567\tA string of rehashed sight gags based in insipid vulgarity .\n7568\tThe movie is Dawn of the Dead crossed with John Carpenter 's Ghosts of Mars , with zombies not as ghoulish as the first and trains not as big as the second .\n7569\tBasically a static series of semi-improvised -LRB- and semi-coherent -RRB- raps between the stars .\n7570\tToo restrained to be a freak show , too mercenary and obvious to be cerebral , too dull and pretentious to be engaging ... The Isle defies an easy categorization .\n7571\tAn unpredictable blend of gal-pal smart talk , romantic comedy and dark tragedy that bites off considerably more than writer\\/director John McKay can swallow .\n7572\tIt 's one of those baseball pictures where the hero is stoic , the wife is patient , the kids are as cute as all get-out and the odds against success are long enough to intimidate , but short enough to make a dream seem possible .\n7573\t`` The Time Machine '' is a movie that has no interest in itself .\n7574\tIt does n't believe in itself , it has no sense of humor ... it 's just plain bored .\n7575\t... a hollow joke told by a cinematic gymnast having too much fun embellishing the misanthropic tale to actually engage it .\n7576\tA morose little soap opera about three vapid , insensitive people who take turns hurting each other .\n7577\tIt 's a feature-length adaptation of one of those `` Can This Marriage Be Saved ? ''\n7578\tcolumns from Ladies Home Journal ...\n7579\tThe film 's essentially over by the meet-cute .\n7580\tI 'm sure if you 're a Hartley fan , you might enjoy yourself ... Me , I did n't care for it .\n7581\tIt 's about following your dreams , no matter what your parents think .\n7582\tSocrates motions for hemlock .\n7583\tThe script is n't very good ; not even someone as gifted as Hoffman -LRB- the actor -RRB- can make it work .\n7584\tWalter Hill 's pulpy , stylized boxing melodrama Undisputed nearly overcomes its questionable in-the-ring match-up with solid fight choreography and gritty prison authenticity .\n7585\tIt has all the excitement of eating oatmeal .\n7586\tIt 's hard to know whether or not to recommend this film because for every thing it does right there 's at least one and occasionally two things it gets ever so wrong .\n7587\tAlthough there are several truly jolting scares , there 's also an abundance of hackneyed dialogue and more silly satanic business than you can shake a severed limb at .\n7588\tI 'll bet the video game is a lot more fun than the film .\n7589\tStar Trek : Nemesis meekly goes where nearly every Star Trek movie has gone before .\n7590\tWince-inducing dialogue , thrift-shop costumes , prosthetic makeup by Silly Putty and Kmart blue-light-special effects all conspire to test Trekkie loyalty .\n7591\tLike all abstract art , the film does not make this statement in an easily accessible way , and -- unless prewarned -- it would be very possible for a reasonably intelligent person to sit through its tidal wave of imagery and not get this vision at all .\n7592\tI do n't mind having my heartstrings pulled , but do n't treat me like a fool .\n7593\t... although this idea is `` new '' the results are tired .\n7594\tI 'm guessing the director is a magician .\n7595\tAfter all , he took three minutes of dialogue , 30 seconds of plot and turned them into a 90-minute movie that feels five hours long .\n7596\tAn unencouraging threefold expansion on the former MTV series , accompanying the stunt-hungry dimwits in a random series of collected gags , pranks , pratfalls , dares , injuries , etc. .\n7597\tIts well of thorn and vinegar -LRB- and simple humanity -RRB- has long been plundered by similar works featuring the insight and punch this picture so conspicuously lacks .\n7598\tFor all its impressive craftsmanship , and despite an overbearing series of third-act crescendos , Lily Chou-Chou never really builds up a head of emotional steam .\n7599\tDo n't be fooled by the impressive cast list - Eye See You is pure junk .\n7600\tNot since Freddy Got Fingered has a major release been so painful to sit through .\n7601\tThe documentary does little , apart from raising the topic , to further stoke the conversation .\n7602\tPlays like a volatile and overlong W magazine fashion spread .\n7603\tA better title , for all concerned , might be Swept Under the Rug .\n7604\tThis movie seems to have been written using Mad-libs .\n7605\tThere can be no other explanation .\n7606\tHilariously inept and ridiculous .\n7607\tVera 's technical prowess ends up selling his film short ; he smoothes over hard truths even as he uncovers them .\n7608\t-LRB- A -RRB- shapeless blob of desperate entertainment .\n7609\tFeels too formulaic and too familiar to produce the transgressive thrills of early underground work .\n7610\tGiven how heavy-handed and portent-heavy it is , this could be the worst thing Soderbergh has ever done .\n7611\ta by-the-numbers patient\\/doctor pic that covers all the usual ground\n7612\tA dumb movie with dumb characters doing dumb things and you have to be really dumb not to see where this is going .\n7613\tStealing Harvard aspires to comedic grand larceny but stands convicted of nothing more than petty theft of your time .\n7614\tPretension , in its own way , is a form of bravery .\n7615\tFor this reason and this reason only -- the power of its own steadfast , hoity-toity convictions -- Chelsea Walls deserves a medal .\n7616\tWith the exception of some fleetingly amusing improvisations by Cedric the Entertainer as Perry 's boss , there is n't a redeeming moment here .\n7617\tIt 's a grab bag of genres that do n't add up to a whole lot of sense .\n7618\tMovie fans , get ready to take off ... the other direction .\n7619\t-LRB- director -RRB- O'Fallon manages to put some lovely pictures up on the big screen , but his skill at telling a story -- he also contributed to the screenplay -- falls short .\n7620\tThe intent is almost exactly the same -LRB- as The Full Monty -RRB- .\n7621\tAll that 's missing is the spontaneity , originality and delight .\n7622\tNo one but a convict guilty of some truly heinous crime should have to sit through The Master of Disguise .\n7623\tEven the finest chef ca n't make a hotdog into anything more than a hotdog , and Robert De Niro ca n't make this movie anything more than a trashy cop buddy comedy .\n7624\tThere 's too much falseness to the second half , and what began as an intriguing look at youth fizzles into a dull , ridiculous attempt at heart-tugging .\n7625\tIt 's not without its pleasures , but I 'll stick with The Tune .\n7626\tMiller is playing so free with emotions , and the fact that children are hostages to fortune , that he makes the audience hostage to his swaggering affectation of seriousness .\n7627\tDespite the evocative aesthetics evincing the hollow state of modern love life , the film never percolates beyond a monotonous whine .\n7628\tMore maudlin than sharp .\n7629\tThis is an egotistical endeavor from the daughter of horror director Dario Argento -LRB- a producer here -RRB- , but her raw performance and utter fearlessness make it strangely magnetic .\n7630\tIt 's slow -- very , very slow .\n7631\tIt 's not the ultimate Depression-era gangster movie .\n7632\tThat 's pure PR hype .\n7633\tCharacters still need to function according to some set of believable and comprehensible impulses , no matter how many drugs they do or how much artistic license Avary employs .\n7634\tComes ... uncomfortably close to coasting in the treads of The Bicycle Thief .\n7635\tVisually rather stunning , but ultimately a handsome-looking bore , the true creativity would have been to hide Treasure Planet entirely and completely reimagine it .\n7636\tStealing Harvard is evidence that the Farrelly Bros. -- Peter and Bobby -- and their brand of screen comedy are wheezing to an end , along with Green 's half-hearted movie career .\n7637\tThere seems to be no clear path as to where the story 's going , or how long it 's going to take to get there .\n7638\tIf you 're a WWF fan , or you related to the people who watched the robots getting butchered in A.I. , you 'll probably like Rollerball .\n7639\tI do n't think I laughed out loud once .\n7640\tAnd when you 're talking about a slapstick comedy , that 's a pretty big problem .\n7641\tIt 's so mediocre , despite the dynamic duo on the marquee , that we just ca n't get no satisfaction .\n7642\tSlapstick buffoonery can tickle many a preschooler 's fancy , but when it costs a family of four about $ 40 to see a film in theaters , why spend money on a dog like this when you can rent a pedigree instead ?\n7643\t... turns so unforgivably trite in its last 10 minutes that anyone without a fortified sweet tooth will likely go into sugar shock .\n7644\tThe notion that bombing buildings is the funniest thing in the world goes entirely unexamined in this startlingly unfunny comedy .\n7645\tMy reaction in a word : disappointment .\n7646\tHis last movie was poetically romantic and full of indelible images , but his latest has nothing going for it .\n7647\tIt kinda works and qualifies as cool at times , but is just too lame to work or be cool at others .\n7648\tSustains its dreamlike glide through a succession of cheesy coincidences and voluptuous cheap effects , not the least of which is Rebecca Romijn-Stamos .\n7649\tIntriguing documentary which is emotionally diluted by focusing on the story 's least interesting subject .\n7650\tFeels haphazard , as if the writers mistakenly thought they could achieve an air of frantic spontaneity by simply tossing in lots of characters doing silly stuff and stirring the pot .\n7651\tFor each chuckle there are at least 10 complete misses , many coming from the amazingly lifelike Tara Reid , whose acting skills are comparable to a cardboard cutout .\n7652\tIn its own way , Joshua is as blasphemous and nonsensical as a Luis BuÃ±uel film without the latter 's attendant intelligence , poetry , passion , and genius .\n7653\tI 've always dreamed of attending Cannes , but after seeing this film , it 's not that big a deal .\n7654\tThe vintage is pure ' 87 , with a halfhearted twist on its cautionary message : Fatal Attraction = do n't have an affair with a nutjob ; Unfaithful = do n't if you 're married to one .\n7655\tA workshop mentality prevails .\n7656\tIt can not be enjoyed , even on the level that one enjoys a bad slasher flick , primarily because it is dull .\n7657\tYes , dull .\n7658\tPumpkin wants to have it both ways .\n7659\tDirector Uwe Boll and the actors provide scant reason to care in this crude '70s throwback .\n7660\t-LRB- W -RRB- hile long on amiable monkeys and worthy environmentalism , Jane Goodall 's Wild Chimpanzees is short on the thrills the oversize medium demands .\n7661\tOuter-space buffs might love this film , but others will find its pleasures intermittent .\n7662\tThis piece of Channel 5 grade trash is , quite frankly , an insult to the intelligence of the true genre enthusiast .\n7663\tAn occasionally funny , but overall limp , fish-out-of-water story .\n7664\tA bloated gasbag thesis grotesquely impressed by its own gargantuan aura of self-importance ...\n7665\tIt 's mighty tedious for the viewer who has to contend with unpleasant characters , hit-and-miss performances and awkwardly staged scenes .\n7666\tAs A Rumor of Angels reveals itself to be a sudsy tub of supernatural hokum , not even Ms. Redgrave 's noblest efforts can redeem it from hopeless sentimentality .\n7667\tNew Best Friend 's Playboy-mansion presentation of college life is laugh-out-loud ludicrous .\n7668\tan appalling ` Ace Ventura ' rip-off that somehow manages to bring together Kevin Pollak , former wrestler Chyna and Dolly Parton .\n7669\tIf any of them list this ` credit ' on their resumes in the future , that 'll be much funnier than anything in the film ...\n7670\tThe humor is forced and heavy-handed , and occasionally simply unpleasant .\n7671\tScorsese at his best makes gangster films that are equally lovely but also relentlessly brutal and brutally intelligent ; Perdition , meanwhile , reads more like Driving Miss Daisy than GoodFellas .\n7672\tWhile the script starts promisingly , it loses steam towards the middle and never really develops beyond attacking obvious target .\n7673\tAs the latest bid in the TV-to-movie franchise game , I Spy makes its big-screen entry with little of the nervy originality of its groundbreaking small-screen progenitor .\n7674\tThis is n't even Madonna 's Swept Away .\n7675\tThis is her Blue Lagoon .\n7676\tThe director knows how to apply textural gloss , but his portrait of sex-as-war is strictly sitcom .\n7677\t... the film suffers from a lack of humor -LRB- something needed to balance out the violence -RRB- ...\n7678\tBurns never really harnesses to full effect the energetic cast .\n7679\tAn overemphatic , would-be wacky , ultimately tedious sex farce .\n7680\tHas all the depth of a wading pool .\n7681\tThis is the sort of burly action flick where one coincidence pummels another , narrative necessity is a drunken roundhouse , and whatever passes for logic is a factor of the last plot device left standing .\n7682\tThe so-inept - it 's - surreal dubbing -LRB- featuring the voices of Glenn Close , Regis Philbin and Breckin Meyer -RRB- brings back memories of cheesy old Godzilla flicks .\n7683\t... the movie is just a plain old monster .\n7684\tIf this disposable tissue has one wild card , it 's John Turturro , who 's simply fab as a Spanish butler with a foot fetish .\n7685\tOne long string of cliches .\n7686\tFancy a real downer ?\n7687\t-LRB- Leigh -RRB- lays it on so thick this time that it feels like a suicide race .\n7688\tProfessionally speaking , it 's tempting to jump ship in January to avoid ridiculous schlock like this shoddy suspense thriller .\n7689\tNelson 's brutally unsentimental approach ... sucks the humanity from the film , leaving behind an horrific but weirdly unemotional spectacle .\n7690\tWeaves a spell over you , with its disturbingly close-up look at damaged psyches and its subtle undercurrents of danger .\n7691\tBut its awkward structure keeps breaking the spell .\n7692\tAt once half-baked and overheated .\n7693\tThere 's a solid woman - finding-herself story somewhere in here , but you 'd have to dig pretty deep to uncover it .\n7694\tI still ca n't relate to Stuart : He 's a mouse , for cryin ' out loud , and all he does is milk it with despondent eyes and whine that nobody treats him human enough .\n7695\t-LRB- Serry -RRB- wants to blend politics and drama , an admirable ambition .\n7696\tIt 's too bad that the helping hand he uses to stir his ingredients is also a heavy one .\n7697\tBy the miserable standards to which the slasher genre has sunk , ... actually pretty good .\n7698\tOf course , by more objective measurements it 's still quite bad .\n7699\tThe only entertainment you 'll derive from this choppy and sloppy affair will be from unintentional giggles -- several of them .\n7700\tSam Mendes has become valedictorian at the School for Soft Landings and Easy Ways Out .\n7701\tExactly what it claims to be -- a simple diversion for the kids .\n7702\tIts story may be a thousand years old , but why did it have to seem like it took another thousand to tell it to us ?\n7703\tThe problem with this film is that it lacks focus .\n7704\tI sympathize with the plight of these families , but the movie does n't do a very good job conveying the issue at hand .\n7705\tA momentary escape from the summer heat and the sedentary doldrums that set in at this time of year .\n7706\t... think of it as American Pie On Valium .\n7707\tDull , lifeless , and amateurishly assembled .\n7708\tPuportedly `` Based on True Events , '' a convolution of language that suggests it 's impossible to claim that it is `` Based on a True Story '' with a straight face .\n7709\t... a plotline that 's as lumpy as two-day old porridge ... the filmmakers ' paws , sad to say , were all over this `` un-bear-able '' project !\n7710\tIt 's a bad thing when a movie has about as much substance as its end credits blooper reel .\n7711\tWith its dogged Hollywood naturalism and the inexorable passage of its characters toward sainthood , Windtalkers is nothing but a sticky-sweet soap .\n7712\tSome of it is clever , but it is never melodic \\/\n7713\tBetter to just call it ABC Kiarostami .\n7714\tFor AIDS and Africa are nothing more than part of the scenery .\n7715\tNo aspirations to social import inform the movie version .\n7716\tThis is a shameless sham , calculated to cash in on the popularity of its stars .\n7717\tManages to be somewhat well-acted , not badly art-directed and utterly unengaging no matter how hard it tries to be thrilling , touching or , yikes , uproarious .\n7718\tThis rather superficial arthouse middle-brow film knows how to please a crowd , and that 's about all it does well .\n7719\tIt 's clear the filmmakers were n't sure where they wanted their story to go , and even more clear that they lack the skills to get us to this undetermined destination .\n7720\tAs vulgar as it is banal .\n7721\tYou wonder why Enough was n't just a music video rather than a full-length movie .\n7722\tThe film 's tone and pacing are off almost from the get-go .\n7723\tThe talented and clever Robert Rodriguez perhaps put a little too much heart into his first film and did n't reserve enough for his second .\n7724\tMore whiny downer than corruscating commentary .\n7725\tTambor and Clayburgh make an appealing couple -- he 's understated and sardonic , she 's appealingly manic and energetic .\n7726\tBoth deserve better .\n7727\tSuffocated by its fussy script and uptight characters , this musty adaptation is all the more annoying since it 's been packaged and sold back to us by Hollywood .\n7728\tCoughs and sputters on its own postmodern conceit .\n7729\tA wildly inconsistent emotional experience .\n7730\tSit through this one , and you wo n't need a magic watch to stop time ; your DVD player will do it for you .\n7731\tA sometimes tedious film .\n7732\tTeen movies have really hit the skids .\n7733\tThere are plot holes big enough for Shamu the killer whale to swim through .\n7734\t... plays like somebody spliced random moments of a Chris Rock routine into what is otherwise a cliche-riddled but self-serious spy thriller .\n7735\tNasty , ugly , pointless and depressing , even if you hate clowns .\n7736\tWhat is 100 % missing here is a script of even the most elemental literacy , an inkling of genuine wit , and anything resembling acting .\n7737\tdoes paint some memorable images ... , but Makhmalbaf keeps her distance from the characters\n7738\tIt uses the pain and violence of war as background material for color .\n7739\tjust not campy enough\n7740\tThe movie , directed by Mick Jackson , leaves no cliche unturned , from the predictable plot to the characters straight out of central casting .\n7741\tIt 's everything you do n't go to the movies for .\n7742\tLike watching a dress rehearsal the week before the show goes up : everything 's in place but something 's just a little off-kilter .\n7743\tThe affectionate loopiness that once seemed congenital to Demme 's perspective has a tough time emerging from between the badly dated cutesy-pie mystery scenario and the newfangled Hollywood post-production effects .\n7744\tFor all its technical virtuosity , the film is so mired in juvenile and near-xenophobic pedagogy that it 's enough to make one pine for the day when Godard can no longer handle the rigors of filmmaking .\n7745\tAmerican Chai encourages rueful laughter at stereotypes only an Indian-American would recognize .\n7746\tAnd the lesson , in the end , is nothing new .\n7747\tIt made me want to wrench my eyes out of my head and toss them at the screen .\n7748\tDue to some script weaknesses and the casting of the director 's brother , the film trails off into inconsequentiality .\n7749\t... plot holes so large and obvious a marching band might as well be stomping through them in clown clothes , playing a college football fight song on untuned instruments .\n7750\tSo devoid of any kind of intelligible story that it makes films like XXX and Collateral Damage seem like thoughtful treatises\n7751\tCombining quick-cut editing and a blaring heavy metal much of the time , Beck seems to be under the illusion that he 's shooting the latest System of a Down video .\n7752\tDragonfly has no atmosphere , no tension -- nothing but Costner , flailing away .\n7753\tIt 's a buggy drag .\n7754\tWorks hard to establish rounded characters , but then has nothing fresh or particularly interesting to say about them .\n7755\tThe action switches between past and present , but the material link is too tenuous to anchor the emotional connections that purport to span a 125-year divide .\n7756\tNonsensical , dull `` cyber-horror '' flick is a grim , hollow exercise in flat scares and bad acting .\n7757\tInstead of hiding Pinocchio from critics , Miramax should have hidden it from everyone .\n7758\tManages to be both repulsively sadistic and mundane .\n7759\tA great ensemble cast ca n't lift this heartfelt enterprise out of the familiar .\n7760\tThere ought to be a directing license , so that Ed Burns can have his revoked .\n7761\tThe structure the film takes may find Matt Damon and Ben Affleck once again looking for residuals as this officially completes a Good Will Hunting trilogy that was never planned .\n7762\tWhereas last year 's exemplary Sexy Beast seemed to revitalize the British gangster movie , this equally brutal outing merely sustains it .\n7763\t... a boring parade of talking heads and technical gibberish that will do little to advance the Linux cause .\n7764\tGreen might want to hang onto that ski mask , as robbery may be the only way to pay for his next project .\n7765\tI can take infantile humor ... but this is the sort of infantile that makes you wonder about changing the director and writer 's diapers .\n7766\tThere is n't nearly enough fun here , despite the presence of some appealing ingredients .\n7767\tThe tale of Tok -LRB- Andy Lau -RRB- , a sleek sociopath on the trail of O -LRB- Takashi Sorimachi -RRB- , the most legendary of Asian hitmen , is too scattershot to take hold .\n7768\tDirected in a paint-by-numbers manner .\n7769\tA cheerful enough but imminently forgettable rip-off of -LRB- Besson 's -RRB- earlier work .\n7770\tA lackluster , unessential sequel to the classic Disney adaptation of J.M. Barrie 's Peter Pan .\n7771\tSamira Makhmalbaf 's new film Blackboards is much like the ethos of a stream of consciousness , although , it 's unfortunate for the viewer that the thoughts and reflections coming through are torpid and banal\n7772\t... routine , harmless diversion and little else .\n7773\tLate Marriage 's stiffness is unlikely to demonstrate the emotional clout to sweep U.S. viewers off their feet .\n7774\tThis time Mr. Burns is trying something in the Martin Scorsese street-realist mode , but his self-regarding sentimentality trips him up again .\n7775\tWhile there 's something intrinsically funny about Sir Anthony Hopkins saying ` Get in the car , bitch , ' this Jerry Bruckheimer production has little else to offer\n7776\tIt 's hampered by a Lifetime-channel kind of plot and a lead actress who is out of her depth .\n7777\tLet 's hope -- shall we ?\n7778\t-- that the ` true story ' by which All the Queen 's Men is allegedly `` inspired '' was a lot funnier and more deftly enacted than what 's been cobbled together onscreen .\n7779\tIs there a group of more self-absorbed women than the mother and daughters featured in this film ?\n7780\tI do n't think so .\n7781\tNothing wrong with performances here , but the whiney characters bugged me .\n7782\tThere is very little dread or apprehension , and though I like the creepy ideas , they are not executed with anything more than perfunctory skill .\n7783\tIf you 've ever entertained the notion of doing what the title of this film implies , what Sex With Strangers actually shows may put you off the idea forever .\n7784\tIn the end , the movie collapses on its shaky foundation despite the best efforts of director Joe Carnahan .\n7785\tAdults will wish the movie were less simplistic , obvious , clumsily plotted and shallowly characterized .\n7786\tBut what are adults doing in the theater at all ?\n7787\tSticky sweet sentimentality , clumsy plotting and a rosily myopic view of life in the WWII-era Mississippi Delta undermine this adaptation .\n7788\tIt 's another stale , kill-by-numbers flick , complete with blade-thin characters and terrible , pun-laden dialogue .\n7789\tEvery time you look , Sweet Home Alabama is taking another bummer of a wrong turn .\n7790\tPartway through watching this saccharine , Easter-egg-colored concoction , you realize that it is made up of three episodes of a rejected TV show .\n7791\tThe overall effect is less like a children 's movie than a recruitment film for future Hollywood sellouts .\n7792\tPortentous and pretentious , The Weight of Water is appropriately titled , given the heavy-handedness of it drama .\n7793\tA fitfully amusing romp that , if nothing else , will appeal to fans of Malcolm in the Middle and its pubescent star , Frankie Muniz .\n7794\tJason X is positively anti-Darwinian : nine sequels and 400 years later , the teens are none the wiser and Jason still kills on auto-pilot .\n7795\tTo say this was done better in Wilder 's Some Like It Hot is like saying the sun rises in the east .\n7796\tAt the very least , if you do n't know anything about Derrida when you walk into the theater , you wo n't know much more when you leave .\n7797\tThe actors are appealing , but Elysian Fields is idiotic and absurdly sentimental .\n7798\tAs ` chick flicks ' go , this one is pretty miserable , resorting to string-pulling rather than legitimate character development and intelligent plotting .\n7799\tThe only excitement comes when the credits finally roll and you get to leave the theater .\n7800\tThere 's no emotional pulse to Solaris .\n7801\tWith an emotional sterility to match its outer space setting , Soderbergh 's spectacular swing for the fence yields only a spectacular whiff .\n7802\tIt ca n't decide if it wants to be a mystery\\/thriller , a romance or a comedy .\n7803\tDenis O'Neill 's script avoids the prime sports cliche , a last-second goal to win the championship , but it neglects few others .\n7804\tThe character of ZigZag is not sufficiently developed to support a film constructed around him .\n7805\tOne of those pictures whose promising , if rather precious , premise is undercut by amateurish execution .\n7806\tServing Sara does n't serve up a whole lot of laughs .\n7807\tThe most hopelessly monotonous film of the year , noteworthy only for the gimmick of being filmed as a single unbroken 87-minute take .\n7808\tWith virtually no interesting elements for an audience to focus on , Chelsea Walls is a triple-espresso endurance challenge .\n7809\tDeadeningly dull , mired in convoluted melodrama , nonsensical jargon and stiff-upper-lip laboriousness .\n7810\tA misogynistic piece of filth that attempts to pass itself off as hip , young adult entertainment .\n7811\tLike the Chelsea 's denizens ... Burdette 's collage-form scenario tends to over-romanticize the spiritual desolation of the struggling artiste .\n7812\tIt 's basically an overlong episode of Tales from the Crypt .\n7813\tThe film makes a fatal mistake : It asks us to care about a young man whose only apparent virtue is that he is not quite as unpleasant as some of the people in his life .\n7814\tAnother in-your-face wallow in the lower depths made by people who have never sung those blues .\n7815\tShaky close-ups of turkey-on-rolls , stubbly chins , liver spots , red noses and the filmmakers new bobbed do draw easy chuckles but lead nowhere .\n7816\tI ca n't quite recommend it -- it 's too patched together -- but I almost can ; it 's the kind of movie that makes you want to like it .\n7817\tComplete lack of originality , cleverness or even visible effort\n7818\tThough Perry and Hurley make inspiring efforts to breathe life into the disjointed , haphazard script by Jay Scherick and David Ronn , neither the actors nor director Reginald Hudlin can make it more than fitfully entertaining .\n7819\tSomething akin to a Japanese Alice Through the Looking Glass , except that it seems to take itself far more seriously .\n7820\tIt takes talent to make a lifeless movie about the most heinous man who ever lived .\n7821\tOn the whole , the movie lacks wit , feeling and believability to compensate for its incessant coarseness and banality .\n7822\tThe story and the friendship proceeds in such a way that you 're watching a soap opera rather than a chronicle of the ups and downs that accompany lifelong friendships .\n7823\tOffers very little genuine romance and even fewer laughs ... a sad sitcom of a movie , largely devoid of charm .\n7824\tMakes for a pretty unpleasant viewing experience .\n7825\tThe movie fails to live up to the sum of its parts .\n7826\tAlthough Huppert 's intensity and focus has a raw exhilaration about it , The Piano Teacher is anything but fun .\n7827\tIt showcases Carvey 's talent for voices , but not nearly enough and not without taxing every drop of one 's patience to get to the good stuff .\n7828\tBad .\n7829\tVery bad .\n7830\tStultifyingly , dumbfoundingly , mind-numbingly bad .\n7831\tMay reawaken discussion of the Kennedy assassination but this fictional film looks made for cable rather than for the big screen .\n7832\tIf looking for a thrilling sci-fi cinematic ride , do n't settle for this Imposter .\n7833\tNot really bad so much as distasteful : We need kidnapping suspense dramas right now like we need doomsday thrillers .\n7834\tThe result is a gaudy bag of stale candy , something from a Halloween that died .\n7835\tDavis ... is so enamored of her own creation that she ca n't see how insufferable the character is .\n7836\tThe Man From Elysian Fields is a cold , bliss-less work that groans along thinking itself some important comment on how life throws us some beguiling curves .\n7837\tThe messages of compassion and mercy are clearly , squarely and specifically expounded via computer animated Old Testament tale of Jonah and the Whale .\n7838\tDetermined to be fun , and bouncy , with energetic musicals , the humor did n't quite engage this adult .\n7839\tHistorical dramas fused with love triangle is a well worn conceit .\n7840\tBut this films lacks the passion required to sell the material .\n7841\tLong Time Dead ?\n7842\tNot nearly long enough .\n7843\tNothing more substantial than a fitfully clever doodle .\n7844\tA solid film ... but more conscientious than it is truly stirring .\n7845\tThere 's not enough here to justify the almost two hours .\n7846\tThe X potion gives the quickly named Blossom , Bubbles and Buttercup supernatural powers that include extraordinary strength and laser-beam eyes , which unfortunately do n't enable them to discern flimsy screenplays .\n7847\tPerceptive in its vision of nascent industrialized world politics as a new art form , but far too clunky , didactic and saddled with scenes that seem simply an ill fit for this movie .\n7848\tVerbinski implements every hack-artist trick to give us the ooky-spookies .\n7849\tMcConaughey 's fun to watch , the dragons are okay , not much fire in the script .\n7850\tAn unwise amalgam of Broadcast News and Vibes .\n7851\tSkins has a right to yawp , and we have a right to our grains of salt .\n7852\tWho needs love like this ?\n7853\tHit and miss as far as the comedy goes and a big ole ' miss in the way of story .\n7854\tReturning aggressively to his formula of dimwitted comedy and even dimmer characters , Sandler , who also executive produces , has made a film that makes previous vehicles look smart and sassy .\n7855\tExists then as an occasionally insightful acting exercise .\n7856\tTrite , banal , cliched , mostly inoffensive .\n7857\tMattei is tiresomely grave and long-winded , as if circularity itself indicated profundity .\n7858\tIt 's not original , and , robbed of the element of surprise , it does n't have any huge laughs in its story of irresponsible cops who love to play pranks .\n7859\tWhenever its story is n't bogged down by idiocy involving the CIA and a lost U.S. satellite , Hunter -- starring Irwin and his American wife\\/colleague , Terri -- is a movie children should enjoy .\n7860\tIt offers little beyond the momentary joys of pretty and weightless intellectual entertainment .\n7861\tA sequence of ridiculous shoot - 'em - up scenes .\n7862\tNothing in Waking Up in Reno ever inspired me to think of its inhabitants as anything more than markers in a screenplay .\n7863\tI 'm just too bored to care .\n7864\tIrwin is a man with enough charisma and audacity to carry a dozen films , but this particular result is ultimately held back from being something greater .\n7865\tNot a stereotype is omitted nor a clichÃ© left unsaid .\n7866\tAs befits its title , this PG-13-rated piffle is ultimately as threatening as the Snuggle Fabric Softener bear .\n7867\tAttempts by this ensemble film to impart a message are so heavy-handed that they instead pummel the audience .\n7868\tIt all feels like a Monty Python sketch gone horribly wrong .\n7869\tNervous breakdowns are not entertaining .\n7870\tScorsese does n't give us a character worth giving a damn about .\n7871\tA beautifully made piece of unwatchable drivel .\n7872\tLike being trapped at a perpetual frat party ... How can something so gross be so boring ?\n7873\tThis is so bad .\n7874\tEven film silliness needs a little gravity , beyond good hair and humping .\n7875\tI felt sad for Lise not so much because of what happens as because she was captured by this movie when she obviously belongs in something lighter and sunnier , by Rohmer , for example .\n7876\tPrurient playthings aside , there 's little to love about this English trifle .\n7877\tThis is a train wreck of an action film -- a stupefying attempt by the filmmakers to force-feed James Bond into the mindless XXX mold and throw 40 years of cinematic history down the toilet in favor of bright flashes and loud bangs .\n7878\tThe film flat lines when it should peak and is more missed opportunity and trifle than dark , decadent truffle .\n7879\tIt 's played in the most straight-faced fashion , with little humor to lighten things up .\n7880\tThe heavy-handed film is almost laughable as a consequence .\n7881\tVan Wilder brings a whole new meaning to the phrase ` comedy gag . '\n7882\tAt least one scene is so disgusting that viewers may be hard pressed to retain their lunch .\n7883\tA disappointment for those who love alternate versions of the Bard , particularly ones that involve deep fryers and hamburgers .\n7884\tThe film tries too hard to be funny and tries too hard to be hip .\n7885\tThe end result is a film that 's neither .\n7886\tEvery nanosecond of the The New Guy reminds you that you could be doing something else far more pleasurable .\n7887\tSomething like scrubbing the toilet .\n7888\tOr emptying rat traps .\n7889\tOr doing last year 's taxes with your ex-wife .\n7890\tScooby Dooby Doo \\/ And Shaggy too \\/ You both look and sound great .\n7891\t\\/ But Daphne , you 're too Buff \\/ Fred thinks he 's tough \\/ And Velma - wow , you 've lost weight !\n7892\tIs the time really ripe for a warmed-over James Bond adventure , with a village idiot as the 007 clone ?\n7893\tThere 's enough melodrama in this Magnolia Primavera to make PTA proud yet director Muccino 's characters are less worthy of Puccini than they are of daytime television .\n7894\tHowever it may please those who love movies that blare with pop songs , young science fiction fans will stomp away in disgust .\n7895\tThe humor is n't as sharp , the effects not as innovative , nor the story as imaginative as in the original .\n7896\tBut it could have been worse .\n7897\tSome of their jokes work , but most fail miserably and in the end , Pumpkin is far more offensive than it is funny .\n7898\tEven horror fans will most likely not find what they 're seeking with Trouble Every Day ; the movie lacks both thrills and humor .\n7899\tcomes off like a rejected ABC Afterschool Special , freshened up by the dunce of a Screenwriting 101 class .\n7900\t... Designed to provide a mix of smiles and tears , `` Crossroads '' instead provokes a handful of unintentional howlers and numerous yawns .\n7901\tit seems to me the film is about the art of ripping people off without ever letting them consciously know you have done so\n7902\tIt 's just disappointingly superficial -- a movie that has all the elements necessary to be a fascinating , involving character study , but never does more than scratch the surface .\n7903\tThe title not only describes its main characters , but the lazy people behind the camera as well .\n7904\tSometimes it feels as if it might have been made in the '70s or '80s , and starred Chevy Chase and Goldie Hawn .\n7905\tSchaeffer has to find some hook on which to hang his persistently useless movies , and it might as well be the resuscitation of the middle-aged character .\n7906\tDemands too much of most viewers .\n7907\tThe story drifts so inexorably into cliches about tortured -LRB- and torturing -RRB- artists and consuming but impossible love that you ca n't help but become more disappointed as each overwrought new sequence plods on .\n7908\tIt should be mentioned that the set design and interiors of the haunted vessel are more than effectively creepy and moodily lit .\n7909\tSo I just did .\n7910\tShamelessly sappy and , worse , runs away from its own provocative theme .\n7911\tThe Ring just left me cold and wet like I was out in the Seattle drizzle without rainwear .\n7912\tThe film seems a dead weight .\n7913\tThe lack of pace kills it , although , in a movie about cancer , this might be apt .\n7914\tFor anyone who grew up on Disney 's 1950 Treasure Island , or remembers the 1934 Victor Fleming classic , this one feels like an impostor .\n7915\tA clutchy , indulgent and pretentious travelogue and diatribe against ... well , just stuff .\n7916\tWatching Scarlet Diva , one is poised for titillation , raw insight or both .\n7917\tInstead , we just get messy anger , a movie as personal therapy .\n7918\tMeandering , sub-aquatic mess : It 's so bad it 's good , but only if you slide in on a freebie .\n7919\tThe ending is a cop-out .\n7920\tWhat happens to John Q ?\n7921\tI do n't have an I Am Sam clue .\n7922\tHas the feel of an unedited personal journal .\n7923\tRemember when Bond had more glamour than clamor ?\n7924\tNo more .\n7925\tCry havoc and let slip the dogs of cheese , indeed .\n7926\tThis charmless nonsense ensues amid clanging film references that make Jay and Silent Bob 's Excellent Adventure seem understated .\n7927\tIt does n't quite deserve the gong , but there are more fascinating acts than `` Confessions of a Dangerous Mind . ''\n7928\tThe subject of swinging still seems ripe for a documentary -- just not this one .\n7929\t... Hudlin is stuck trying to light a fire with soggy leaves .\n7930\tUnlike his directorial efforts , La Femme Nikita and The Professional , The Transporter lacks Besson 's perspective as a storyteller .\n7931\tThe overall effect is so completely inane that one would have to be mighty bored to even think of staying with this for more than , say , ten ... make that three minutes .\n7932\tMost of the supporting characters in Eastwood films are weak , as are most of the subplots .\n7933\tThis one 's weaker than most .\n7934\tAudiences will find no mention of political prisoners or persecutions that might paint the Castro regime in less than saintly tones .\n7935\tThe film takes too long getting to the good stuff , then takes too long figuring out what to do next .\n7936\tYou can practically smell the patchouli oil .\n7937\tTo say Analyze That is De Niro 's best film since Meet the Parents sums up the sad state of his recent career .\n7938\tThe actors do n't inhabit their roles -- they 're trapped by them , forced to change behavior in bizarre unjustified fashion and spout dialog that consists mostly of platitudes .\n7939\tAn often-deadly boring , strange reading of a classic whose witty dialogue is treated with a baffling casual approach\n7940\tThis film was made to get laughs from the slowest person in the audience -- just pure slapstick with lots of inane , inoffensive screaming and exaggerated facial expressions .\n7941\tConsists of a plot and jokes done too often by people far more talented than Ali G\n7942\tAnother week , another gross-out college comedy -- ugh .\n7943\tModerately involving despite bargain-basement photography and hackneyed romance .\n7944\tThere is no insight into the anguish of Heidi 's life -- only a depiction of pain , today 's version of Greek tragedy , the talk-show guest decrying her fate .\n7945\tThe editing is chaotic , the photography grainy and badly focused , the writing unintentionally hilarious , the direction unfocused , the performances as wooden .\n7946\tWhen -LRB- De Palma 's -RRB- bad , he 's really bad , and Femme Fatale ranks with the worst he has done .\n7947\tTadpole is emblematic of the witless ageism afflicting films : Young is cool , and too young is too cool .\n7948\tI doubt anyone will remember the picture by the time Christmas really rolls around , but maybe it 'll be on video by then .\n7949\tUncertain in tone ... a garbled exercise in sexual politics , a junior varsity Short Cuts by way of Very Bad Things .\n7950\tAll 's well that ends well , and rest assured , the consciousness-raising lessons are cloaked in gross-out gags .\n7951\tThe only thing worse than your substandard , run-of-the-mill Hollywood picture is an angst-ridden attempt to be profound .\n7952\tIf you think that Jennifer Lopez has shown poor judgment in planning to marry Ben Affleck , wait till you see Maid in Manhattan .\n7953\tStars Matthew Perry and Elizabeth Hurley illicit more than a chuckle , and more jokes land than crash , but ultimately Serving Sara does n't distinguish itself from the herd .\n7954\tIt 's best to avoid imprisonment with the dull , nerdy folks that inhabit Cherish .\n7955\tCulkin exudes none of the charm or charisma that might keep a more general audience even vaguely interested in his bratty character .\n7956\tIn the end , Ted Bundy 's only justification is the director 's common but unexplored fascination with the frustrated maniac ; there 's no larger point , and little social context .\n7957\t... -LRB- like -RRB- channel surfing between the Discovery Channel and a late-night made-for-cable action movie .\n7958\tA movie that , rather than skip along the Seine , more or less slogs its way through soggy Paris , tongue uncomfortably in cheek .\n7959\tShot perhaps ` artistically ' with handheld cameras and apparently no movie lights by Joaquin Baca-Asay , the low-budget production swings annoyingly between vertigo and opacity .\n7960\tImagine a really bad community theater production of West Side Story without the songs .\n7961\tSoul is what 's lacking in every character in this movie and , subsequently , the movie itself .\n7962\tA one-trick pony whose few T&A bits still ca n't save itself from being unoriginal , unfunny and unrecommendable .\n7963\tThe worst kind of independent ; the one where actors play dress down hicks and ponderously mope around trying to strike lightning as captured by their 1970s predecessors\n7964\tIt may be a prize winner , but Teacher is a bomb .\n7965\tThe production values are up there .\n7966\tThe use of CGI and digital ink-and-paint make the thing look really slick .\n7967\tThe voices are fine as well .\n7968\tThe problem , it is with most of these things , is the script .\n7969\tIt 's got its heart in the right place , but it also wilts after awhile .\n7970\tProves that a movie about goodness is not the same thing as a good movie .\n7971\tWell , it does go on forever .\n7972\tThis overproduced and generally disappointing effort is n't likely to rouse the Rush Hour crowd .\n7973\tTopkapi this is not .\n7974\tIf Shayamalan wanted to tell a story about a man who loses his faith , why did n't he just do it , instead of using bad sci-fi as window dressing ?\n7975\tEthan Hawke has always fancied himself the bastard child of the Beatnik generation and it 's all over his Chelsea Walls .\n7976\tEqual parts bodice-ripper and plodding costume drama .\n7977\tI 'm not suggesting that you actually see it , unless you 're the kind of person who has seen every Wim Wenders film of the '70s .\n7978\tWhile the film misfires at every level , the biggest downside is the paucity of laughter in what 's supposed to be a comedy .\n7979\tIf you liked the 1982 film then , you 'll still like it now .\n7980\tA 93-minute condensation of a 26-episode TV series , with all of the pitfalls of such you 'd expect .\n7981\tGuillen rarely gets beneath the surface of things .\n7982\tShe lists ingredients , but never mixes and stirs .\n7983\tAudiences can be expected to suspend their disbelief only so far -- and that does not include the 5 o'clock shadow on the tall wooden kid as he skips off to school .\n7984\tTo imagine the life of Harry Potter as a martial arts adventure told by a lobotomized Woody Allen is to have some idea of the fate that lies in store for moviegoers lured to the mediocrity that is Kung Pow : Enter the Fist .\n7985\tIt delivers some chills and sustained unease , but flounders in its quest for Deeper Meaning .\n7986\tCredibility levels are low and character development a non-starter .\n7987\tI would have preferred a transfer down the hall to Mr. Holland 's class for the music , or to Robin Williams 's lecture so I could listen to a teacher with humor , passion , and verve .\n7988\tFor the most part , the ingredients are there .\n7989\tBut an unwillingness to explore beyond the surfaces of her characters prevents Nettelbeck 's film from coming together .\n7990\tAn earnest , heartrending look at the divide between religious fundamentalists and their gay relatives .\n7991\tIt 's also heavy-handed and devotes too much time to bigoted views .\n7992\tA mawkish , implausible platonic romance that makes Chaplin 's City Lights seem dispassionate by comparison .\n7993\tYes , one enjoys seeing Joan grow from awkward young woman to strong , determined monarch , but her love for the philandering Philip only diminishes her stature .\n7994\tIt 's a film that hinges on its casting , and Glover really does n't fit the part .\n7995\tThis is a throwaway , junk-food movie whose rap soundtrack was better tended to than the film itself .\n7996\t... with the candy-like taste of it fading faster than 25-cent bubble gum , I realized this is a throwaway movie that wo n't stand the test of time .\n7997\tIt 's a trifle .\n7998\tLiterally nothing in The Pool is new , but if you grew up on the stalker flicks of the 1980 's this one should appease you for 90 minutes .\n7999\tArguably the year 's silliest and most incoherent movie .\n8000\tAnyway , for one reason or another , Crush turns into a dire drama partway through .\n8001\tAfter that , it just gets stupid and maudlin .\n8002\tToo bad , but thanks to some lovely comedic moments and several fine performances , it 's not a total loss .\n8003\tChao was Chen Kaige 's assistant for years in China .\n8004\tHe has not learnt that storytelling is what the movies are about .\n8005\tA mixed bag of a comedy that ca n't really be described as out of this world .\n8006\tThe film is a travesty of the genre and even as spoof takes itself too seriously .\n8007\tMarries the amateurishness of The Blair Witch Project with the illogic of Series 7 : The Contenders to create a completely crass and forgettable movie .\n8008\tThe Piano Teacher is the sort of movie that discourages American audiences from ever wanting to see another foreign film .\n8009\tIf it 's another regurgitated action movie you 're after , there 's no better film than Half Past Dead .\n8010\tSo what is the point ?\n8011\tLovingly choreographed bloodshed taking place in a pristine movie neverland , basically .\n8012\tThis is junk food cinema at its greasiest .\n8013\tWhen it 's all wet , Blue Crush is highly enjoyable .\n8014\tWhen it 's on dry land , though , this surfer-girl melodrama starts gasping like a beached grouper .\n8015\tMost new movies have a bright sheen .\n8016\tSome , like Ballistic , arrive stillborn ... looking like the beaten , well-worn video box cover of seven years into the future .\n8017\tThe story is naturally poignant , but first-time screenwriter Paul Pender overloads it with sugary bits of business .\n8018\tYou see Robert De Niro singing - and dancing to - West Side Story show tunes .\n8019\tChoose your reaction : A. -RRB- That sure is funny !\n8020\tB. -RRB- That sure is pathetic !\n8021\tA sermonizing and lifeless paean to teenage dullards .\n8022\tThis dramatically shaky contest of wills only reiterates the old Hollywood saw : Evil is interesting and good is boring .\n8023\tBefore long , the film starts playing like General Hospital crossed with a Saturday Night Live spoof of Dog Day Afternoon .\n8024\tThe charms of willful eccentricity , at least as evidenced by this latest cinematic essay , are beginning to wear a bit thin .\n8025\tInstead of accurately accounting a terrible true story , the film 's more determined to become the next Texas Chainsaw Massacre .\n8026\tBut what about the countless other people who 'd merely like to watch a solid tale about a universally interesting soul ?\n8027\tA silly , self-indulgent film about a silly , self-indulgent filmmaker .\n8028\tScarlet Diva has a voyeuristic tug , but all in all it 's a lot less sensational than it wants to be .\n8029\tThe character is too forced and overwritten to be funny or believable much of the time , and Clayburgh does n't always improve the over-the-top mix .\n8030\tFlashy , pretentious and as impenetrable as Morvern 's thick , working-class Scottish accent .\n8031\tA battle between bug-eye theatre and dead-eye matinee .\n8032\tThe movie is virtually without context -- journalistic or historical .\n8033\tWhat 's worse is that Pelosi knows it .\n8034\t... instead go rent `` Shakes The Clown '' , a much funnier film with a similar theme and an equally great Robin Williams performance .\n8035\tLame , haphazard teen comedy .\n8036\tIt 's the kind of movie that ends up festooning U.S. art house screens for no reason other than the fact that it 's in French -LRB- well , mostly -RRB- with English subtitles and is magically ` significant ' because of that .\n8037\tThis miserable excuse of a movie runs on empty , believing Flatbush machismo will get it through .\n8038\tExpect to be reminded of other , better films , especially Seven , which director William Malone slavishly copies .\n8039\tNair stuffs the film with dancing , henna , ornamentation , and group song , but her narrative clichÃ©s and telegraphed episodes smell of old soap opera .\n8040\tIt 's getting harder and harder to ignore the fact that Hollywood is n't laughing with us , folks .\n8041\tIt 's laughing at us .\n8042\tMight have been better off as a documentary , with less of Mr. Eyre 's uninspired dramatics and more of his sense of observation and outrage .\n8043\tEvery good actor needs to do his or her own Hamlet .\n8044\tFor Benigni it was n't Shakespeare whom he wanted to define his career with but Pinocchio .\n8045\tIt might as well have been Problem Child IV .\n8046\tArnold 's jump from little screen to big will leave frowns on more than a few faces .\n8047\tBoth awful and appealing .\n8048\tThe lack of opposing viewpoints soon grows tiresome -- the film feels more like a series of toasts at a testimonial dinner than a documentary .\n8049\tNothing plot-wise is worth e-mailing home about .\n8050\tWe are left with a superficial snapshot that , however engaging , is insufficiently enlightening and inviting .\n8051\tHelmer DeVito ... attempts to do too many things in this story about ethics , payola , vice , murder , kids ' TV and revenge .\n8052\tIt would n't be my preferred way of spending 100 minutes or $ 7.00 .\n8053\tI hated every minute of it .\n8054\t-LRB- T -RRB- hose same extremes prevent us from taking its message seriously , and the Stepford Wives mentality does n't work in a modern context .\n8055\tObvious politics and rudimentary animation reduce the chances that the appeal of Hey Arnold !\n8056\tThe Movie will reach far beyond its core demographic .\n8057\tThere 's no mistaking the fact that this hybrid misses the impact of the Disney classic , and even that of the excellent 1934 MGM version .\n8058\tA simple , sometimes maddeningly slow film that has just enough charm and good acting to make it interesting , but is ultimately pulled under by the pacing and lack of creativity within .\n8059\tRoger Michell , who did an appealing job directing Persuasion and Notting Hill in England , gets too artsy in his American debut .\n8060\tThere is an almost poignant dimension to the way that every major stunt Seagal 's character ... performs is shot from behind , as if it could fool us into thinking that we 're not watching a double .\n8061\tAnthony Hopkins ?\n8062\tBig deal !\n8063\tWe 've already seen the prequel to The Silence of the Lambs and Hannibal -- and it was better the first time .\n8064\tOstensibly celebrates middle-aged girl power , even as it presents friendship between women as pathetic , dysfunctional and destructive .\n8065\tIf this is an example of the type of project that Robert Redford 's lab is willing to lend its imprimatur to , then perhaps it 's time to rethink independent films .\n8066\tPumpkin sits in a patch somewhere between mirthless Todd Solondzian satire and callow student film .\n8067\tNot so much funny as aggressively sitcom-cute , it 's full of throwaway one-liners , not-quite jokes , and a determined TV amiability that Allen personifies .\n8068\tIt 's not that Waiting For Happiness is a bad film , because it is n't .\n8069\tIt 's just incredibly dull .\n8070\tThe sad thing about Knockaround Guys is its lame aspiration for grasping the coolness vibes when in fact the film is n't as flippant or slick as it thinks it is .\n8071\tA cumbersome and cliche-ridden movie greased with every emotional device known to man .\n8072\tDirector Ferzan Ozpetek creates an interesting dynamic with the members of this group , who live in the same apartment building .\n8073\tBut he loses his focus when he concentrates on any single person .\n8074\tEgoyan 's movie is too complicated to sustain involvement , and , if you 'll excuse a little critical heresy , too intellectually ambitious .\n8075\tIt wants to be thought of as a subversive little indie film , but it has all the qualities of a modern situation comedy .\n8076\tDespite apparent motives to the contrary , it ends up being , like -LRB- Seinfeld 's -RRB- revered TV show , about pretty much nothing .\n8077\tShadyac shoots his film like an M. Night Shyamalan movie , and he frequently maintains the same snail 's pace ; he just forgot to add any genuine tension .\n8078\tPlays less like a coming-of-age romance than an infomercial .\n8079\tThere are a few laughs and clever sight gags scattered about , but not enough to make this anything more than another big-budget bust .\n8080\tThe story 's so preposterous that I did n't believe it for a second , despite the best efforts of everyone involved .\n8081\tI 've heard that the fans of the first Men in Black have come away hating the second one .\n8082\tI wonder why .\n8083\tThey felt like the same movie to me .\n8084\tDespite her relentless vim and winsome facial symmetry , Witherspoon is just too dialed-up to be America 's Sweetheart .\n8085\tAn ultra-low-budget indie debut that smacks more of good intentions than talent .\n8086\tBirot is a competent enough filmmaker , but her story has nothing fresh or very exciting about it .\n8087\tDe Niro and McDormand give solid performances , but their screen time is sabotaged by the story 's inability to create interest .\n8088\tEven those of a single digit age will be able to recognize that this story is too goofy ... even for Disney .\n8089\tThat is essentially what 's missing from Blackboards -- the sense of something bigger , some ultimate point .\n8090\tA compendium of Solondz 's own worst instincts in under 90 minutes .\n8091\tIf the title is a Jeopardy question , then the answer might be `` How does Steven Seagal come across these days ? ''\n8092\tor maybe `` How will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering ? ''\n8093\tIt is a comedy that 's not very funny and an action movie that is not very thrilling -LRB- and an uneasy alliance , at that -RRB- .\n8094\tThe story is familiar from its many predecessors ; like them , it eventually culminates in the not-exactly - stunning insight that crime does n't pay .\n8095\tYou 'll have more fun setting fire to yourself in the parking lot .\n8096\tYou 'll be more entertained getting hit by a bus .\n8097\tDissing a Bond movie is quite like calling a dog stupid , but when it has the temerity to run over two hours , you feel like winding up with a kick .\n8098\tRitchie 's treatment of the class reversal is majorly ham-fisted , from the repetitive manifestos that keep getting thrown in people 's faces to the fact Amber is such a joke .\n8099\tFlat , but with a revelatory performance by Michelle Williams .\n8100\tLittle more than a frothy vanity project .\n8101\tThe film goes from being an unusual sci-fi character study to a chase flick that detracts from its ending .\n8102\tVerbinski substitutes atmosphere for action , tedium for thrills .\n8103\tFor all its surface frenzy , High Crimes should be charged with loitering -- so much on view , so little to offer .\n8104\tThe Sum of All Fears is almost impossible to follow -- and there 's something cringe-inducing about seeing an American football stadium nuked as pop entertainment .\n8105\tAlex Nohe 's documentary plays like a travelogue for what mostly resembles a real-life , big-budget NC-17 version of Tank Girl .\n8106\tThe title Trapped turns out to be a pretty fair description of how you feel while you 're watching this ultra-manipulative thriller .\n8107\tThe appeal of the vulgar , sexist , racist humour went over my head or -- considering just how low brow it is -- perhaps it snuck under my feet .\n8108\tThe story really has no place to go since Simone is not real -- she ca n't provide any conflict .\n8109\tIHOPs do n't pile on this much syrup .\n8110\tFor the most part , I Spy was an amusing lark that will probably rank as one of Murphy 's better performances in one of his lesser-praised movies .\n8111\tfocuses on Joan 's raging hormones and sledgehammers the audience with Spanish inquisitions about her `` madness '' so much that I became mad that I wasted 123 minutes and $ 9.50 on this 21st century torture device .\n8112\tThis series should have died long ago , but they keep bringing it back another day as punishment for paying money to see the last James Bond movie .\n8113\tA bit of an unwieldy mess .\n8114\tWith a story as bizarre and mysterious as this , you do n't want to be worrying about whether the ineffectual Broomfield is going to have the courage to knock on that door .\n8115\tThe filmmakers juggle and juxtapose three story lines but fail to come up with one cogent point , unless it 's that life stinks , especially for sensitive married women who really love other women .\n8116\tThe movie feels like it 's going to be great , and it carries on feeling that way for a long time , but takeoff just never happens .\n8117\tA gimmick in search of a movie : how to get Carvey into as many silly costumes and deliver as many silly voices as possible , plot mechanics be damned .\n8118\t... the last time I saw a theater full of people constantly checking their watches was during my SATs .\n8119\t... fifty minutes of tedious adolescent melodramatics followed by thirty-five minutes of inflated nonsense .\n8120\t... lacks the punch and verve needed to make this genre soar .\n8121\tIt 's often faintly amusing , but the problems of the characters never become important to us , and the story never takes hold .\n8122\tIt 's tough , astringent , darkly funny and ... well , it 's also generic , untidy , condescending and mild of impact rather than stunning .\n8123\tLargely a for-fans artifact .\n8124\tThere 's no denying the elaborateness of the artist 's conceptions , nor his ability to depict them with outrageous elan , but really the whole series is so much pretentious nonsense , lavishly praised by those who equate obscurity with profundity .\n8125\tCharacters wander into predictably treacherous situations even though they should know better .\n8126\tThere 's plenty of style in Guillermo Del Toro 's sequel to the 1998 hit but why do we need 117 minutes to tell a tale that simply ca n't sustain more than 90 minutes .\n8127\t-LRB- I -RRB- f you 've been to more than one indie flick in your life , chances are you 've already seen this kind of thing .\n8128\tFirst-time director JoÃ£o Pedro Rodrigues ' unwillingness to define his hero 's background or motivations becomes more and more frustrating as the film goes on .\n8129\tNo reason for anyone to invest their hard-earned bucks into a movie which obviously did n't invest much into itself either .\n8130\tA strong first quarter , slightly less so second quarter , and average second half .\n8131\tA boring , wincingly cute and nauseatingly politically correct cartoon guaranteed to drive anyone much over age 4 screaming from the theater .\n8132\tThe vampire thriller Blade II starts off as a wild hoot and then sucks the blood out of its fun -- toward the end , you can feel your veins cringing from the workout .\n8133\tWhen the first few villians are introduced as `` Spider '' and `` Snake '' you know you 're in for a real winner , creativity at its peak .\n8134\tAn Afterschool Special without the courage of its convictions .\n8135\tThe final result makes for adequate entertainment , I suppose , but anyone who has seen Chicago on stage will leave the theater feeling they 've watched nothing but a pale imitation of the real deal .\n8136\t-LRB- Director -RRB- Byler may yet have a great movie in him , but Charlotte Sometimes is only half of one .\n8137\tSo few movies explore religion that it 's disappointing to see one reduce it to an idea that fits in a sampler .\n8138\tIt 's also clear from the start that The Transporter is running purely on adrenaline , and once the initial high wears off , the film 's shortcomings start to shine through .\n8139\tWatching it is rather like viewing a long soap opera in which only the first episode was any good .\n8140\tIt 's fun , but a psychological mess , with Austin Powers bumping his head on the way out of the closet .\n8141\tThere are touching moments in Etoiles , but for the most part this is a dull , dour documentary on what ought to be a joyful or at least fascinating subject .\n8142\tCould the whole plan here have been to produce something that makes Fatal Attraction look like a classic by comparison ?\n8143\tThat 's the only sane rationale I can think of for Swimfan 's existence .\n8144\tI did n't laugh at the ongoing efforts of Cube , and his skinny buddy Mike Epps , to make like Laurel and Hardy 'n the hood .\n8145\tThe only way this supernatural snore-fest could give anyone a case of the frights is if they were put to sleep by the movie and had a nightmare .\n8146\tI wonder what the reaction of Israelis will be to this supposedly evenhanded presentation .\n8147\tThe film would work much better as a video installation in a museum , where viewers would be free to leave .\n8148\tImmediately .\n8149\tHuman Nature initially succeeds by allowing itself to go crazy , but ultimately fails by spinning out of control .\n8150\t-LRB- It 's -RRB- a prison soccer movie starring charismatic tough guy Vinnie Jones , but it had too much spitting for me to enjoy .\n8151\tNot even the Hanson Brothers can save it\n8152\tThe thriller side of this movie is falling flat , as the stalker does n't do much stalking , and no cop or lawyer grasps the concept of actually investigating the case .\n8153\t... -LRB- a -RRB- strained comedy that jettisons all opportunities for Rock to make his mark by serving up the usual chaotic nonsense .\n8154\tA sour , nasty offering .\n8155\tFeels like one of those contrived , only-in - Hollywood productions where name actors deliver big performances created for the sole purpose of generating Oscar talk .\n8156\tObstacles are too easily overcome and there is n't much in the way of character development in the script .\n8157\tIt tells more than it shows .\n8158\tEarnest falls short of its Ideal predecessor largely due to Parker 's ill-advised meddling with the timeless source material .\n8159\tThe film might have been more satisfying if it had , in fact , been fleshed out a little more instead of going for easy smiles .\n8160\tPretentious editing ruins a potentially terrific flick .\n8161\tNot every animated film from Disney will become a classic , but forgive me if I 've come to expect more from this studio than some 79-minute after-school `` cartoon '' .\n8162\tDo not , under any circumstances , consider taking a child younger than middle school age to this wallow in crude humor .\n8163\tNothing debases a concept comedy quite like the grinding of bad ideas , and Showtime is crammed full of them .\n8164\tMuch-anticipated and ultimately lackluster movie .\n8165\tThis is really just another genre picture .\n8166\tEach story on its own could have been expanded and worked into a compelling single feature , but in its current incarnation , Storytelling never quite gets over its rather lopsided conception .\n8167\tWilliam Shatner , as a pompous professor , is the sole bright spot ...\n8168\tA trite psychological thriller designed to keep the audience guessing and guessing -- which is not to be confused with suspecting -- until it comes time to wrap things up and send the viewers home .\n8169\tNeither funny nor suspenseful nor particularly well-drawn .\n8170\tActing , particularly by Tambor , almost makes `` Never Again '' worthwhile , but -LRB- writer\\/director -RRB- Schaeffer should follow his titular advice\n8171\tBoth stars manage to be funny , but , like the recent I Spy , the star chemistry begs the question of whether random gags add up to a movie .\n8172\t`` Collateral Damage '' goes by the numbers and reps decent action entertainment -- until the silly showdown ending that forces the viewer to totally suspend disbelief\n8173\t` Enigma ' is a good name for a movie this delibrately obtuse and unapproachable .\n8174\tA waste of good performances .\n8175\tA dreary , incoherent , self-indulgent mess of a movie in which a bunch of pompous windbags drone on inanely for two hours ... a cacophony of pretentious , meaningless prattle .\n8176\tI kept thinking over and over again , ' I should be enjoying this . '\n8177\tBut I was n't .\n8178\tAs conceived by Mr. Schaeffer , Christopher and Grace are little more than collections of quirky traits lifted from a screenwriter 's outline and thrown at actors charged with the impossible task of making them jell .\n8179\tLike so many other allegedly scary movies , it gets so tangled up in The Twist that it chokes the energy right out of the very audience it seeks to frighten .\n8180\tThe essential problem in Orange County is that , having created an unusually vivid set of characters worthy of its strong cast , the film flounders when it comes to giving them something to do .\n8181\tJust like Hearst 's enormous yacht , it 's slow and unwieldy and takes a long time to reach its destination .\n8182\tThere is not a character in the movie with a shred of plausibility , not an event that is believable , not a confrontation that is not staged , not a moment that is not false .\n8183\tWhere last time jokes flowed out of Cho 's life story , which provided an engrossing dramatic through line , here the comedian hides behind obviously constructed routines .\n8184\tWhy come up with something even quasi-original , when you can pillage from Shirley Jackson , Richard Matheson ... and puke up something like ROSE RED ?\n8185\tA broadly played , lowbrow comedy in which the cast delivers mildly amusing performances and no farm animals were injured by any of the gags .\n8186\t... too gory to be a comedy and too silly to be an effective horror film .\n8187\tLacks heart , depth and , most of all , purpose .\n8188\tThough a bit of a patchwork in script and production , a glossy , rich green , environment almost makes the picture work .\n8189\tperfectly enjoyable , instantly forgettable , nothing to write home about .\n8190\tWasabi is slight fare indeed , with the entire project having the feel of something tossed off quickly -LRB- like one of Hubert 's punches -RRB- , but it should go down smoothly enough with popcorn .\n8191\tSomehow both wildly implausible and strangely conventional .\n8192\tThis ill-fitting Tuxedo is strictly off-the-rack .\n8193\tThe premise is in extremely bad taste , and the film 's supposed insights are so poorly thought-out and substance-free that even a high school senior taking his or her first psychology class could dismiss them .\n8194\tSets up a nice concept for its fiftysomething leading ladies , but fails loudly in execution .\n8195\tKidman is really the only thing that 's worth watching in Birthday Girl , a film by the stage-trained Jez Butterworth -LRB- Mojo -RRB- that serves as yet another example of the sad decline of British comedies in the post-Full Monty world .\n8196\tImagine the James Woods character from Videodrome making a home movie of Audrey Rose and showing it to the kid from The Sixth Sense and you 've imagined The Ring .\n8197\tThis time Kaufman 's imagination has failed him .\n8198\tAn intermittently pleasing but mostly routine effort .\n8199\tIt becomes gimmicky instead of compelling .\n8200\t`` Interview '' loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into .\n8201\t` Unfaithful ' cheats on itself and retreats to comfortable territory .\n8202\tToo bad .\n8203\tFrenetic but not really funny .\n8204\tTaken individually or collectively , the stories never add up to as much as they promise .\n8205\tIf you 're not a prepubescent girl , you 'll be laughing at Britney Spears ' movie-starring debut whenever it does n't have you impatiently squinting at your watch .\n8206\tA didactic and dull documentary glorifying software anarchy .\n8207\tSluggishly directed by episodic TV veteran Joe Zwick , it 's a sitcom without the snap-crackle .\n8208\tYou could nap for an hour and not miss a thing .\n8209\tDirector Clare Kilner 's debut is never as daft as it should have been .\n8210\tNew Best Friend should n't have gone straight to video ; it should have gone straight to a Mystery Science Theater 3000 video .\n8211\tWallace seems less like he 's been burning to tell a war story than he 's been itching to somehow tack one together\n8212\tThe thrill is -LRB- long -RRB- gone .\n8213\tBegan life as a computer game , then morphed into a movie -- a bad one , of course .\n8214\tPart comedy , part drama , the movie winds up accomplishing neither in full , and leaves us feeling touched and amused by several moments and ideas , but nevertheless dissatisfied with the movie as a whole .\n8215\tGodawful boring slug of a movie .\n8216\tDull , if not devoid of wit , this shaggy dog longs to frisk through the back alleys of history , but scarcely manages more than a modest , snoozy charm .\n8217\tScene-by-scene , things happen , but you 'd be hard-pressed to say what or why .\n8218\t... an unimaginative , nasty , glibly cynical piece of work .\n8219\tIt is , by conventional standards , a fairly terrible movie ... but it is also weirdly fascinating , a ready-made Eurotrash cult object .\n8220\tIt is also , at times , curiously moving .\n8221\tThe tug-of-war at the core of Beijing Bicycle becomes weighed down with agonizing contrivances , overheated pathos and long , wistful gazes .\n8222\tVile and tacky are the two best adjectives to describe Ghost Ship .\n8223\tSome decent actors inflict big damage upon their reputations .\n8224\tBeing author Wells ' great-grandson , you 'd think filmmaker Simon Wells would have more reverence for the material .\n8225\tBut this costly dud is a far cry from either the book or the beloved film .\n8226\tOffensive in the way it exploits the hot-button issue of domestic abuse for cheap thrills and disgusting in the manner it repeatedly puts a small child in jeopardy , treating her as little more than a prop to be cruelly tormented .\n8227\tMark me down as a non-believer in werewolf films that are not serious and rely on stupidity as a substitute for humor .\n8228\tThoughtless , random , superficial humour and a lot of very bad Scouse accents\n8229\tAspires for the piquant but only really achieves a sort of ridiculous sourness .\n8230\tAccuracy and realism are terrific , but if your film becomes boring , and your dialogue is n't smart , then you need to use more poetic license .\n8231\tFor all its highfalutin title and corkscrew narrative , the movie turns out to be not much more than a shaggy human tale .\n8232\tA soggy , cliche-bound epic-horror yarn that ends up being even dumber than its title .\n8233\tOne groan-inducing familiarity begets another .\n8234\tAlthough based on a real-life person , John , in the movie , is a rather dull person to be stuck with for two hours .\n8235\tGreat story , bad idea for a movie .\n8236\tWith Spy Kids 2 : The Island of Lost Dreams writer\\/director\\/producer Robert Rodriguez has cobbled together a film that feels like a sugar high gone awry .\n8237\tThere is no entry portal in The Rules of Attraction , and I spent most of the movie feeling depressed by the shallow , selfish , greedy characters .\n8238\tIt 's hard to tell with all the crashing and banging where the salesmanship ends and the movie begins .\n8239\t`` My god , I 'm behaving like an idiot ! ''\n8240\tYes , you are , Ben Kingsley .\n8241\tA dreadful live-action movie .\n8242\tDivertingly ridiculous , headbangingly noisy .\n8243\tAn earnest racial-issues picture that might have gotten respectful critical praise in a different era -- say , the '60s .\n8244\tA hideous , confusing spectacle , one that may well put the nail in the coffin of any future Rice adaptations .\n8245\tAll I can say is fuhgeddaboutit .\n8246\tBetween bedroom scenes , viewers may find themselves wishing they could roll over and take a nap .\n8247\tIf you collected all the moments of coherent dialogue , they still would n't add up to the time required to boil a four - minute egg .\n8248\tDespite all the talking , by the time the bloody climax arrives we still do n't feel enough of an attachment to these guys to care one way or another .\n8249\tEvery bit as bogus as most Disney live action family movies are -- no real plot , no real conflict , no real point .\n8250\tA sensual performance from Abbass buoys the flimsy story , but her inner journey is largely unexplored and we 're left wondering about this exotic-looking woman whose emotional depths are only hinted at .\n8251\tNever engaging , utterly predictable and completely void of anything remotely interesting or suspenseful .\n8252\tSpousal abuse is a major problem in contemporary society , but the film reduces this domestic tragedy to florid melodrama .\n8253\tOedekerk wrote Patch Adams , for which he should not be forgiven .\n8254\tWhy he was given free reign over this project -- he wrote , directed , starred and produced -- is beyond me .\n8255\tThe creaking , rusty ship makes a fine backdrop , but the ghosts ' haunting is routine .\n8256\tWhatever Eyre 's failings as a dramatist , he deserves credit for bringing audiences into this hard and bitter place .\n8257\tScotland , PA. blurs the line between black comedy and black hole .\n8258\tIt tries too hard , and overreaches the logic of its own world .\n8259\tThe whole damn thing is ripe for the Jerry Springer crowd .\n8260\tIt 's all pretty cynical and condescending , too .\n8261\tI cry for I Spy -- or I would if this latest and laziest imaginable of all vintage-TV spinoffs were capable of engendering an emotional response of any kind .\n8262\tA boring , formulaic mix of serial killers and stalk 'n' slash .\n8263\tWhat you would end up with if you took Orwell , Bradbury , Kafka , George Lucas and the Wachowski Brothers and threw them into a blender .\n8264\tBut that 's just the problem with it - the director has n't added enough of his own ingredients .\n8265\tWith recent tensions rekindled by the Kathleen Soliah trial and the upcoming trial of SLA members Emily and William Harris , not to mention Sept. 11 , its difficult these days to appreciate Fire 's bright side .\n8266\tFlaunts its quirky excesses like a New Year 's Eve drunk sporting a paper party hat .\n8267\tWrithing under dialogue like ` You 're from two different worlds ' and ` Tonight the maid is a lie and this , this is who you are , ' this schlock-filled fairy tale hits new depths of unoriginality and predictability .\n8268\t... too slow , too boring , and occasionally annoying .\n8269\tIs there enough material to merit a documentary on the making of Wilco 's last album ?\n8270\tFaultlessly professional but finally slight .\n8271\tSchmaltzy and unfunny , Adam Sandler 's cartoon about Hanukkah is numbingly bad , Little Nicky bad , 10 Worst List bad .\n8272\tIt 's really yet another anemic and formulaic Lethal Weapon-derived buddy-cop movie , trying to pass off its lack of imagination as hip knowingness .\n8273\tScotland , Pa. is a strangely drab romp .\n8274\tSome studio pizazz might have helped .\n8275\tWhen Perry fists a bull at the Moore Farm , it 's only a matter of time before he gets the upper hand in matters of the heart .\n8276\tThere 's more scatological action in 8 Crazy Nights than a proctologist is apt to encounter in an entire career .\n8277\tToo loud , too long and too frantic by half , Die Another Day suggests that the Bond franchise has run into a creative wall that 007 can not fly over , tunnel under or barrel through .\n8278\tThe cartoon is about as true to the spirit of the Festival of Lights as Mr. Deeds was to that of Frank Capra .\n8279\t... the sum of the parts equals largely a confused mediocrity .\n8280\tThe tone shifts abruptly from tense to celebratory to soppy .\n8281\tIf we do n't demand a standard of quality for the art that we choose , we deserve the trash that we get .\n8282\tA modest and messy metaphysical thriller offering more questions than answers .\n8283\tJulia is played with exasperating blandness by Laura Regan .\n8284\tMorrissette 's script and direction show a fair amount of intelligence and wit -- but it does n't signify a whole lot either .\n8285\tThere 's suspension of disbelief and then there 's bad screenwriting ... this film packs a wallop of the latter .\n8286\tAll Ms. Jovovich , as the sanctified heroine , has to do is look radiant , grimly purposeful and mildly alarmed while forcing open doors , wielding wrenches and fleeing monsters .\n8287\tMocking kung fu pictures when they were a staple of exploitation theater programming was witty .\n8288\tMocking them now is an exercise in pointlessness .\n8289\tThis is a particularly toxic little bonbon , palatable to only a chosen and very jaundiced few .\n8290\tThis is n't just the CliffsNotes version of Nicholas Nickleby , it 's the CliffsNotes with pages missing .\n8291\tConsidering the harsh locations and demanding stunts , this must have been a difficult shoot , but the movie proves rough going for the audience as well .\n8292\tBetter at putting you to sleep than a sound machine .\n8293\tSo clichÃ©d that , at one point , they literally upset an apple cart .\n8294\tIt 's a decent glimpse into a time period , and an outcast , that is no longer accessible , but it does n't necessarily shed more light on its subject than the popular predecessor .\n8295\tIt might be the first sci-fi comedy that could benefit from a Three 's Company-style laugh track .\n8296\tWhen the plot kicks in , the film loses credibility .\n8297\tCredibility sinks into a mire of sentiment .\n8298\tThe movie takes itself too seriously and , as a result , it makes for only intermittent fun .\n8299\t-LRB- Davis -RRB- has a bright , chipper style that keeps things moving , while never quite managing to connect her wish-fulfilling characters to the human race .\n8300\tDoes n't amount to much of anything .\n8301\tBullock 's complete lack of focus and ability quickly derails the film\n8302\tSo stupid , so ill-conceived , so badly drawn , it created whole new levels of ugly .\n8303\tThe truth is that The Truth About Charlie gets increasingly tiresome .\n8304\tEnduring love but exhausting cinema .\n8305\tSome of Seagal 's action pictures are guilty pleasures , but this one is so formulaic that it seems to be on auto-pilot .\n8306\tA ponderous meditation on love that feels significantly longer than its relatively scant 97 minutes .\n8307\tA long-winded and stagy session of romantic contrivances that never really gels like the shrewd feminist fairy tale it could have been .\n8308\tA little too pat for its own good .\n8309\tThere are films that try the patience of even the most cinema-besotted critic -- and this was one of them .\n8310\tWatching Trouble Every Day , at least if you do n't know what 's coming , is like biting into what looks like a juicy , delicious plum on a hot summer day and coming away with your mouth full of rotten pulp and living worms .\n8311\tWell-intentioned though it may be , its soap-opera morality tales have the antiseptic , preprogrammed feel of an after-school special .\n8312\tWhat would Jesus do if He was a film director ?\n8313\tHe 'd create a movie better than this .\n8314\tWhen a set of pre-shooting guidelines a director came up with for his actors turns out to be cleverer , better written and of considerable more interest than the finished film , that 's a bad sign .\n8315\tA very bad sign .\n8316\tIt 's a deeply serious movie that cares passionately about its subject , but too often becomes ponderous in its teaching of history , or lost in the intricate connections and multiple timelines of its story .\n8317\tCa n't kick about the assembled talent and the Russos show genuine promise as comic filmmakers .\n8318\tStill , this thing feels flimsy and ephemeral .\n8319\tDiane Lane shines in Unfaithful .\n8320\tAlmost everything else is wan .\n8321\tI 'm afraid you wo n't get through this frankly fantastical by-the-numbers B-flick with just a suspension of disbelief .\n8322\tRather , you 'll have to wrestle disbelief to the ground and then apply the chloroform-soaked handkerchief .\n8323\tSo relentlessly wholesome it made me want to swipe something .\n8324\tThe title helpfully offers the most succinct review of it you 'll read anywhere .\n8325\tThe makers of Divine Secrets of the Ya-Ya Sisterhood should offer a free ticket -LRB- second prize , of course , two free tickets -RRB- to anyone who can locate a genuinely honest moment in their movie .\n8326\tGod help the poor woman if Attal is this insecure in real life : his fictional Yvan 's neuroses are aggravating enough to exhaust the patience of even the most understanding spouse .\n8327\tLet 's cut to the consumer-advice bottom line : Stay home .\n8328\tUndercover Brother does n't go far enough .\n8329\tIt 's just a silly black genre spoof .\n8330\tThe film 's implicit premise is that the faith of the Tonga people is in every way inferior to that of John .\n8331\tRates an ` E ' for effort -- and a ` B ' for boring .\n8332\tYou 've already seen Heartbreak if you 've watched the far superior Nurse Betty or Sunset Boulevard .\n8333\tEven the unwatchable Soapdish is more original .\n8334\tPlays like one of those conversations that Comic Book Guy on `` The Simpsons '' has .\n8335\tA journey that 's too random and inconclusive to be compelling , but which Hoffman 's brilliance almost makes worth taking .\n8336\tThe movie bounces all over the map .\n8337\tBut buying into sham truths and routine `` indie '' filmmaking , Freundlich has made just another safe movie .\n8338\tIt 's not horrible , just horribly mediocre .\n8339\tNot always too whimsical for its own good -LRB- but enough to do harm -RRB- , this strange hybrid of crime thriller , quirky character study , third-rate romance and female empowerment fantasy never really finds the tonal or thematic glue it needs .\n8340\t`` Juwanna Mann ? ''\n8341\tNo thanks .\n8342\tWewannour money back , actually .\n8343\tIt 's a sometimes interesting remake that does n't compare to the brilliant original .\n8344\tYou 're too conscious of the effort it takes to be this spontaneous .\n8345\tFeel bad for King , who 's honestly trying , and Schwartzman , who 's shot himself in the foot .\n8346\tSome actors steal scenes .\n8347\tTom Green just gives them a bad odor .\n8348\tThis self-infatuated goofball is far from the only thing wrong with the clumsy comedy Stealing Harvard , but he 's the most obvious one .\n8349\tSometimes , fond memories should stay in the past : a lesson this film teaches all too well .\n8350\tThe enormous comic potential of an oafish idiot impersonating an aristocrat remains sadly unrealized .\n8351\tBegins as a promising meditation on one of America 's most durable obsessions but winds up as a slender cinematic stunt .\n8352\tA monster combat thriller as impersonal in its relentlessness as the videogame series that inspired it .\n8353\tProof that a thriller can be sleekly shot , expertly cast , paced with crisp professionalism ... and still be a letdown if its twists and turns hold no more surprise than yesterday 's weather report .\n8354\tThe reason we keep seeing the same movie with roughly the same people every year is because so many of us keep going and then , out of embarrassment or stupidity , not warning anyone .\n8355\tThere 's not much going on in this movie unless you simply decide to buy into the notion that something inexplicably strange once happened in Point Pleasant .\n8356\tIn the second half of the film , Frei 's control loosens in direct proportion to the amount of screen time he gives Nachtwey for self-analysis .\n8357\tDirector Barry Skolnick and his screenwriters glibly tick off every point of `` The Longest Yard '' playbook like a checklist .\n8358\tThe furious coherence that -LRB- DeNiro -RRB- brings to this part only underscores the fuzzy sentimentality of the movie itself , which feels , as it plods toward the end , less like a movie than like the filmed reading of a script in need of polishing .\n8359\tOh , it 's extreme , all right .\n8360\tExtremely dumb .\n8361\tExtremely confusing .\n8362\tExtremely boring .\n8363\tWe never really feel involved with the story , as all of its ideas remain just that : abstract ideas .\n8364\tFor a shoot - 'em - up , Ballistic is oddly lifeless .\n8365\tOne minute , you think you 're watching a serious actioner ; the next , it 's as though clips from The Pink Panther Strikes Again and\\/or Sailor Moon have been spliced in .\n8366\tWhat happened with Pluto Nash ?\n8367\tHow did it ever get made ?\n8368\tWe may never think of band camp as a geeky or nerdy thing again .\n8369\tOpens as promising as any war\\/adventure film you 'll ever see and dissolves into a routine courtroom drama , better suited for a movie titled `` Glory : A Soldier 's Story . ''\n8370\tThe result is solemn and horrifying , yet strangely detached .\n8371\tThese spiders can outrun a motorcycle and wrap a person in a sticky cocoon in seconds , but they fall short of being interesting or entertaining .\n8372\tA long slog for anyone but the most committed Pokemon fan .\n8373\tMatthew McConaughey tries , and fails , to control the screen with swaggering machismo and over-the-top lunacy .\n8374\tHow on earth , or anywhere else , did director Ron Underwood manage to blow $ 100 million on this ?\n8375\tEveryone connected to this movie seems to be part of an insider clique , which tends to breed formulaic films rather than fresh ones .\n8376\tWith a story inspired by the tumultuous surroundings of Los Angeles , where feelings of marginalization loom for every dreamer with a burst bubble , The Dogwalker has a few characters and ideas , but it never manages to put them on the same path .\n8377\tIts lack of quality earns it a place alongside those other two recent Dumas botch-jobs , The Man in the Iron Mask and The Musketeer .\n8378\tA benign but forgettable sci-fi diversion .\n8379\tThe plot grinds on with yawn-provoking dullness .\n8380\tIt 's never a good sign when a film 's star spends the entirety of the film in a coma .\n8381\tIt 's a worse sign when you begin to envy her condition .\n8382\tIt does n't help that the director and cinematographer Stephen Kazmierski shoot on grungy video , giving the whole thing a dirty , tasteless feel .\n8383\tDesperately unfunny when it tries to makes us laugh and desperately unsuspenseful when it tries to make us jump out of our seats .\n8384\tThis film 's relationship to actual tension is the same as what Christmas-tree flocking in a spray can is to actual snow : a poor -- if durable -- imitation .\n8385\tJohn McTiernan 's botched remake may be subtler than Norman Jewison 's 1975 ultraviolent futuristic corporate-sports saga .\n8386\tIt 's also stupider .\n8387\tDirector Dirk Shafer and co-writer Greg Hinton ride the dubious divide where gay porn reaches for serious drama .\n8388\tBorrows from so many literary and cinematic sources that this future world feels absolutely deja vu .\n8389\tAs -LRB- the characters -RRB- get more depressed , the story gets more tiresome , especially as it continues to mount a conspicuous effort to be profound .\n8390\tThe acting by the over-25s lacks spark , with Csokas particularly unconnected .\n8391\tThough Howard demonstrates a great eye as a director , this Southern Gothic drama is sadly a tough sit , with an undeveloped narrative and enough flashbacks and heavy-handed metaphors to choke a horse -- or at least slow him down to a canter .\n8392\tFalters when it takes itself too seriously and when it depends too heavily on its otherwise talented cast to clown in situations that are n't funny .\n8393\tThe fight scenes are fun , but it grows tedious .\n8394\tAnyone who can count to five -LRB- the film 's target market ? -RRB-\n8395\tcan see where this dumbed-down concoction is going .\n8396\tAll this turns out to be neither funny nor provocative - only dull .\n8397\tDemme 's loose approach kills the suspense .\n8398\tThis idea has lost its originality ... and neither star appears very excited at rehashing what was basically a one-joke picture .\n8399\t-LRB- Plays -RRB- in broad outline as pandering middle-age buddy-comedy .\n8400\tThe film is itself a sort of cinematic high crime , one that brings military courtroom dramas down very , very low .\n8401\tNothing more than a mediocre trifle .\n8402\tA turgid little history lesson , humourless and dull .\n8403\tToo silly to be frightening , too stolid to be funny , it projects the same lazy affability as its nominal star , David Arquette .\n8404\tIf Kaufman kept Cameron Diaz a prisoner in a cage with her ape , in his latest , he 'd have them mate .\n8405\tTrivial where it should be profound , and hyper-cliched where it should be sincere .\n8406\tIt would be hard to think of a recent movie that has worked this hard to achieve this little fun .\n8407\tTheology aside , why put someone who ultimately does n't learn at the center of a kids ' story ?\n8408\tAll that -LRB- Powerpuff Girls -RRB- charm is present in the movie , but it 's spread too thin .\n8409\tSometimes smart but more often sophomoric .\n8410\tThe ill-conceived modern-day ending falls flat where it should deliver a moral punch .\n8411\tCollateral Damage is , despite its alleged provocation post-9 \\/ 11 , an antique , in the end .\n8412\tAs are its star , its attitude and its obliviousness .\n8413\tDawdles and drags when it should pop ; it does n't even have the virtue of enough mindless violence to break up the tedium of all its generational bonding .\n8414\tIts save-the-planet message clashes with its crass marketing .\n8415\tA great idea becomes a not-great movie .\n8416\t... watching this film nearly provoked me to take my own life .\n8417\tAnd if The Hours wins ` Best Picture ' I just might .\n8418\tBy the end , I was looking for something hard with which to bludgeon myself unconscious .\n8419\tNot a movie but a live-action agitprop cartoon so shameless and coarse , it 's almost funny .\n8420\tFeels like six different movies fighting each other for attention .\n8421\tLife is a crock -- or something like it .\n8422\tMade by jackasses for jackasses .\n8423\tDespite a powerful portrayal by Binoche , it 's a period romance that suffers from an overly deliberate pace and uneven narrative momentum .\n8424\tThe picture is a primer on what happens when lack of know-how mixes with lack of give-a-damn .\n8425\tBartleby is a one-joke movie , and a bad joke at that .\n8426\tGiven that both movies expect us to root for convicted violent felons over those assigned to protect us from same , we need every bit of sympathy the cons can muster ; this time , there is n't much .\n8427\tA bravura exercise in emptiness .\n8428\tPhilip K. Dick must be turning in his grave , along with my stomach .\n8429\tDespite the premise of a good story ... it wastes all its star power on cliched or meaningless roles .\n8430\tAll prints of this film should be sent to and buried on Pluto .\n8431\tNot only does the movie fail to make us part of its reality , it fails the most basic relevancy test as well .\n8432\tFirst good , then bothersome .\n8433\tExcellent acting and direction .\n8434\tThis goofy gangster yarn never really elevates itself from being yet another earnestly generic crime-busting comic vehicle -- a well-intentioned remake that shows some spunk and promise but fails to register as anything distinctive or daring\n8435\tIt 's difficult to say whether The Tuxedo is more boring or embarrassing -- I 'm prepared to call it a draw .\n8436\tEven as lame horror flicks go , this is lame .\n8437\tSo routine , familiar and predictable , it raises the possibility that it wrote itself as a newly automated Final Draft computer program .\n8438\tSunshine State lacks the kind of dynamic that Limbo offers , and in some ways is a rather indulgent piece .\n8439\tEven legends like Alfred Hitchcock and John Huston occasionally directed trifles ... so it 's no surprise to see a world-class filmmaker like Zhang Yimou behind the camera for a yarn that 's ultimately rather inconsequential .\n8440\tA long-winded , predictable scenario .\n8441\tToo close to Phantom Menace for comfort .\n8442\tAlthough trying to balance self-referential humor and a normal ol' slasher plot seemed like a decent endeavor , the result does n't fully satisfy either the die-hard Jason fans or those who can take a good joke .\n8443\tToo clunky and too busy ribbing itself to be truly entertaining .\n8444\tThis movie is about lying , cheating , but loving the friends you betray .\n8445\tIt smacks of purely commercial motivation , with no great love for the original .\n8446\tMelanie eventually slugs the Yankee .\n8447\tToo bad the former Murphy Brown does n't pop Reese back .\n8448\tAt the bottom rung of the series ' entries .\n8449\tA real clunker .\n8450\tA well-made , thoughtful , well-acted clunker , but a clunker nonetheless .\n8451\tA dreary rip-off of Goodfellas that serves as a muddled and offensive cautionary tale for Hispanic Americans .\n8452\tThe picture , scored by a perversely cheerful Marcus Miller accordion\\/harmonica\\/banjo abomination , is a monument to bad in all its florid variety .\n8453\tGood for a few unintentional laughs , `` Extreme Ops '' was obviously made for the `` XXX '' crowd , people who enjoy mindless action without the benefit of decent acting , writing , and direction .\n8454\t... a big , baggy , sprawling carnival of a movie , stretching out before us with little rhyme or reason .\n8455\tA frustrating combination of strained humor and heavy-handed sentimentality .\n8456\tLawrence preaches strictly to the converted .\n8457\tAs written by Michael Berg and Michael J. Wilson from a story by Wilson , this relentless , all-wise-guys-all-the-time approach tries way too hard and gets tiring in no time at all .\n8458\tWill probably stay in the shadow of its two older , more accessible Qatsi siblings .\n8459\tJust when the movie seems confident enough to handle subtlety , it dives into soapy bathos .\n8460\tChoppy editing and too many repetitive scenes spoil what could have been an important documentary about stand-up comedy .\n8461\t... the film falls back on the same old formula of teen sex , outrageous pranks and scenes designed to push the envelope of bad taste for laughs .\n8462\tThe only thing in Pauline and Paulette that you have n't seen before is a scene featuring a football field-sized Oriental rug crafted out of millions of vibrant flowers .\n8463\tIf you 're looking for comedy to be served up , better look elsewhere .\n8464\tIt virtually defines a comedy that 's strongly mediocre , with funny bits surfacing every once in a while .\n8465\tAn instant candidate for worst movie of the year .\n8466\tDespite its title , Amy 's Orgasm is not a porno , though it is as tedious as one .\n8467\tLike a tone-deaf singer at a benefit concert , John Q. is a bad movie appearing on behalf of a good cause .\n8468\tAdam Sandler is to Gary Cooper what a gnat is to a racehorse .\n8469\tWhat kids will discover is a new collectible .\n8470\tWhat parents will suspect is that they 're watching a 76-minute commercial .\n8471\tBeers , who , when she 's given the right lines , can charm the paint off the wall ... -LRB- but -RRB- the script goes wrong at several key junctures .\n8472\tWithout September 11 , Collateral Damage would have been just another bad movie .\n8473\tNow it 's a bad , embarrassing movie .\n8474\tDrags along in a dazed and enervated , drenched-in-the - past numbness .\n8475\tThere 's a disturbing ` Great White Hope ' undertone to The Other Side of Heaven that subtly undermines its message of Christian love and compassion .\n8476\tUnless you are in dire need of a Diesel fix , there is no real reason to see it .\n8477\tWait for video -- and then do n't rent it .\n8478\tThe attempt is courageous , even if the result is wildly uneven .\n8479\tThere 's something fundamental missing from this story : something or someone to care about .\n8480\tToo much of this well-acted but dangerously slow thriller feels like a preamble to a bigger , more complicated story , one that never materializes .\n8481\tWhen a film is created SOLELY because it 's a marketable product , soulless and ugly movies like this are the result .\n8482\tLet your silly childhood nostalgia slumber unmolested .\n8483\tUnfortunately , Heartbreak Hospital wants to convey the same kind of haughtiness in its own sketchy material but this territory has already been explored previously with better aplomb and sardonic wit .\n8484\tThe more Kevin Costner rests on his pretty-boy laurels , the public is , regrettably , going to have tepid films like Dragonfly tossed at them .\n8485\t-LRB- It 's -RRB- difficult to get beyond the overall blandness of American Chai , despite its likable performances and refreshingly naive point of view .\n8486\tThe latest installment in the Pokemon canon , Pokemon 4ever is surprising less moldy and trite than the last two , likely because much of the Japanese anime is set in a scenic forest where Pokemon graze in peace .\n8487\tTaken purely as an exercise in style , this oppressively gloomy techno-horror clambake is impossible to ignore .\n8488\tBut as a movie , it 's a humorless , disjointed mess .\n8489\tIf Myers decides to make another Austin Powers movie , maybe he should just stick with Austin and Dr Evil .\n8490\tThe backyard battles you staged with your green plastic army men were more exciting and almost certainly made more sense .\n8491\tToo stupid to be satire , too obviously hateful to be classified otherwise , Frank Novak 's irritating slice of lumpen life is as reliably soul-killing as its title is nearly meaningless .\n8492\tOverly stylized with lots of flash black - & - white freeze frames reminiscent of a pseudo-hip luxury car commercial , -LRB- it 's -RRB- at its worst when it 's actually inside the ring .\n8493\tWhat is captured during the conceptual process does n't add up to a sufficient explanation of what the final dance work , The Selection , became in its final form .\n8494\tIf this is satire , it 's the smug and self-congratulatory kind that lets the audience completely off the hook .\n8495\tHad the film boasted a clearer , more memorable , the creepiness would have gotten under the skin .\n8496\tThese people would n't know subtle characterization if it put on a giant furry monster costume and then gave them a lapdance .\n8497\tImagine if you will a Tony Hawk skating video interspliced with footage from Behind Enemy Lines and set to Jersey shore techno .\n8498\tIt does n't quite work , but there 's enough here to make us look forward to the Russos ' next offering .\n8499\tAny film featuring young children threatened by a terrorist bomb can no longer pass as mere entertainment .\n8500\tThe director 's twitchy sketchbook style and adroit perspective shifts grow wearisome amid leaden pacing and indifferent craftsmanship -LRB- most notably wretched sound design -RRB- .\n8501\tAbout as satisfying and predictable as the fare at your local drive through .\n8502\tApparently kissing leads to suicide attempts and tragic deaths .\n8503\tMarisa Tomei is good , but Just A Kiss is just a mess .\n8504\tOpens at a funeral , ends on the protagonist 's death bed and does n't get much livelier in the three hours in between .\n8505\tThe noble tradition of men in drag hits an all-time low in Sorority Boys , whose makers apparently believe that women 's clothing can cover up any deficiency in acting , writing or direction .\n8506\tTo portray modern women the way director Davis has done is just unthinkable .\n8507\tToo simple for its own good .\n8508\tFlaccid drama and exasperatingly slow journey .\n8509\tA chaotic panorama that 's too busy flying a lot of metaphoric flags .\n8510\tSuffers from rambling , repetitive dialogue and the visual drabness endemic to digital video .\n8511\tThe screenplay sabotages the movie 's strengths at almost every juncture .\n8512\tAll the characters are stereotypes , and their interaction is numbingly predictable .\n8513\tA trashy , exploitative , thoroughly unpleasant experience .\n8514\tNewcomer helmer Kevin Donovan is hamstrung by a badly handled screenplay of what is really an amusing concept -- a high-tech tux that transforms its wearer into a superman .\n8515\tShould n't have been allowed to use the word `` new '' in its title , because there 's not an original character , siuation or joke in the entire movie .\n8516\tOften silly -- and gross -- but it 's rarely as moronic as some campus gross-out films .\n8517\tThe advantage of a postapocalyptic setting is that it can be made on the cheap .\n8518\tAny rock pile will do for a set .\n8519\tReign of Fire has the disadvantage of also looking cheap .\n8520\tThe performances are so leaden , Michael Rymer 's direction is so bloodless and the dialogue is so corny that the audience laughs out loud .\n8521\tA subtle variation on I Spit On Your Grave in which our purported heroine pathologically avenges a hatred for men .\n8522\tReggio 's trippy , ambitious downer can also sometimes come across like nothing more than a glorified Nike ad .\n8523\tAs Tweedy talks about canning his stockbroker and repairing his pool , you yearn for a few airborne TV sets or nude groupies on the nod to liven things up .\n8524\tIf somebody was bored and ... decided to make a dull , pretentious version of Jesus ' Son , they 'd come up with something like Bart Freundlich 's World Traveler .\n8525\tThe best you can say about it is it 's so uninspired , it barely gives one pause when considering some of the other dreck out there right now .\n8526\tA tough go , but Leigh 's depth and rigor , and his skill at inspiring accomplished portrayals that are all the more impressive for their lack of showiness , offsets to a notable degree the film 's often-mined and despairing milieu .\n8527\tAn overstuffed compendium of teen-Catholic-movie dogma .\n8528\tToo leisurely paced and visually drab for its own good , it succeeds in being only sporadically amusing .\n8529\tBen Affleck as Jack Ryan , Tom Clancy 's intrepid hero ?\n8530\tRidiculous .\n8531\tWhat 's next ?\n8532\tD.J. Qualls as Indiana Jones ?\n8533\tOr Tom Green as Han Solo ?\n8534\tThe movie 's biggest offense is its complete and utter lack of tension .\n8535\tThe film is directed by Wally Wolodarsky from a script by Joe Jarvis and Greg Coolidge .\n8536\tThese are names to remember , in order to avoid them in the future .\n8537\tIf this is the resurrection of the Halloween franchise , it would have been better off dead .\n8538\tThis formulaic chiller will do little to boost Stallone 's career .\n8539\tI saw Knockaround Guys yesterday , and already the details have faded like photographs from the Spanish-American War ... It 's so unmemorable that it turned my ballpoint notes to invisible ink .\n8540\tThough Avary has done his best to make something out of Ellis ' nothing novel , in the end , his Rules is barely worth following .\n8541\tThe average local news columnist has a bigger rant on the war between modern landscape architecture and small-town America .\n8542\tNo worse than a lot of the crap we 've been offered this summer , and slightly better than Men in Black 2 as far as slapdash extraterrestrial comedies go .\n8543\tThe plot is so predictable and sentimental that viewers are likely to lose interest before Sandrine and her goats walk off into the sunset .\n8544\tAt first , the sight of a blind man directing a film is hilarious , but as the film goes on , the joke wears thin .\n8545\tNever Again swings between false sentiment and unfunny madcap comedy and , along the way , expects the audience to invest in the central relationship as some kind of marriage of true minds .\n8546\tthe story itself is uninteresting , and the songs are painfully undistinguished : They Might Be Giants ' So to Be One of Us may be the most tuneless tune ever composed .\n8547\tTechnically , the film is about as interesting as an insurance commercial .\n8548\tThe title 's lameness should clue you in on how bad the movie is .\n8549\tThe parts are better than the whole -LRB- bizarre , funny , tragic - like love in New York -RRB- .\n8550\tWhile the film shuns the glamour or glitz that an American movie might demand , Scherfig tosses us a romantic scenario that is just as simplistic as a Hollywood production .\n8551\tThe humor is hinged on the belief that knees in the crotch , elbows in the face and spit in the eye are inherently funny .\n8552\tIt 's a movie forged in the fires of Chick Flick Hell .\n8553\tIts characters are thinner than cardboard -- or even comic-book paper .\n8554\tAny one episode of The Sopranos would send this ill-conceived folly to sleep with the fishes .\n8555\tFeels like the grittiest movie that was ever made for the Lifetime cable television network .\n8556\tLanie 's professional success means she must be a failure at life , because she 's driven by ambition and Does n't Know How to Have Fun .\n8557\tCredit must be given to Harland Williams , Michael Rosenbaum and Barry Watson , who inject far more good-natured spirit and talent into this project than it deserves\n8558\tDenzel Washington 's efforts are sunk by all the sanctimony .\n8559\tIf this holiday movie is supposed to be a gift , somebody unwrapped it early , took out all the good stuff , and left behind the crap -LRB- literally -RRB- .\n8560\tSo faithful to the doldrums of the not-quite-urban , not-quite-suburban milieu as to have viewers recoiling from the reality check .\n8561\tRambles on in a disjointed , substandard fashion from one poorly executed action sequence to the next .\n8562\tThere 's an audience for it , but it could have been funnier and more innocent .\n8563\tI can only imagine one thing worse than Kevin Spacey trying on an Irish accent , and that 's sultry Linda Fiorentino doing the same thing .\n8564\tAn awkward and indigestible movie .\n8565\tThe movie has very little to offer besides unintentional laughs .\n8566\tHaneke keeps us at arm 's length .\n8567\tGuided more by intellect than heart , his story flattens instead of sharpens .\n8568\tAll the well-meaningness in the world ca n't erase the fact that The Believer feels like a 12-Step Program for the Jewish Nazi .\n8569\tLike most sequels , it takes what worked last time , repeats it and adds more characters , more stunts , more stuff in attempt to camouflage its sameness .\n8570\tThere 's no way to sort out the mess in our heads and deconstruct where it all went wrong .\n8571\tThis is an hour and a half of daydreaming .\n8572\tMessage movie or an action-packed submarine spectacular ?\n8573\tAlas , it 's neither .\n8574\tNo movement , no yuks , not much of anything .\n8575\t` Dragonfly ' is a movie about a bus wreck that turns into a film wreck .\n8576\tThirty years ago , it would have been groundbreaking .\n8577\tNow it 's just tired .\n8578\tHeavy-handed exercise in time-vaulting literary pretension .\n8579\tThe movie is too cute to take itself too seriously , but it still feels like it was made by some very stoned college students .\n8580\tA thinly veiled excuse for Wilson to play his self-deprecating act against Murphy 's well-honed prima donna shtick .\n8581\tA minor picture with a major identity crisis -- it 's sort of true and it 's sort of bogus and it 's ho-hum all the way through .\n8582\tThe movie succumbs to being nothing more than a formulaic chase in the dark .\n8583\tPlays as hollow catharsis , with lots of tears but very little in the way of insights .\n8584\tIt will come as no surprise that the movie is n't scary .\n8585\tBut here 's the real damn : It is n't funny , either .\n8586\tQuick : who wants to see a comedy about shoddy airport security ?\n8587\tThe reason I found myself finally unmoved by this film , which is immaculately produced and has serious things to say , is that it comes across rather too plainly as allegory .\n8588\tWhat you get with Empire is a movie you 've seen many times before , repackaged as new material because there is a Latino in the lead .\n8589\tCho 's fans are sure to be entertained ; it 's only fair in the interest of full disclosure to say that -- on the basis of this film alone -- I 'm not one of them .\n8590\tLooks awfully like one long tourist spot for a Mississippi that may never have existed outside of a scriptwriter 's imagination .\n8591\tThe period -- swinging London in the time of the mods and the rockers -- gets the once-over once again in Gangster No. 1 , but falls apart long before the end .\n8592\tHigh Crimes miscasts nearly every leading character .\n8593\tThe overall feel of the film is pretty cheesy , but there 's still a real sense that the Star Trek tradition has been honored as best it can , given the embarrassing script and weak direction .\n8594\tDe Niro looks bored , Murphy recycles Murphy , and you mentally add Showtime to the pile of Hollywood dreck that represents nothing more than the art of the deal .\n8595\tI did n't believe for a moment in these villains or their plot .\n8596\tAnother rent installment for the Ian Fleming estate .\n8597\tWith Danilo Donati 's witty designs and Dante Spinotti 's luscious cinematography , this might have made a decent children 's movie -- if only Benigni had n't insisted on casting himself in the title role .\n8598\tSo lazy and slipshod it confuses the mere flashing of kinky soft-core imagery with naughty fun .\n8599\tThough it draws several decent laughs , it 's low-cal Woody at best .\n8600\tHas little on its mind aside from scoring points with drag gags .\n8601\tBritney 's performance can not be faulted .\n8602\tLucy 's a dull girl , that 's all .\n8603\tWell-shot but badly written tale set in a future ravaged by dragons .\n8604\tSadly , Hewitt 's forte is leaning forward while wearing low-cut gowns , not making snappy comebacks .\n8605\tIf Melville is creatively a great whale , this film is canned tuna .\n8606\tThis film is so slick , superficial and trend-hoppy , that it 's easy to imagine that a new software program spit out the screenplay .\n8607\tJust one more collection of penis , breast and flatulence gags in search of a story .\n8608\tOr a profit .\n8609\tOr some damn thing .\n8610\tThe acting is stiff , the story lacks all trace of wit , the sets look like they were borrowed from Gilligan 's Island -- and the CGI Scooby might well be the worst special-effects creation of the year .\n8611\tEnough trivializes an important crisis , reduces it to an almost comic embarrassment .\n8612\tThe makers have forsaken the entertaining elements of the original and , instead , rehash old jokes and leave any life at the doorstep .\n8613\tI like Frank the Pug , though .\n8614\tA restrained Ribisi convinces as an Italian , though if ever a movie needed one of the actor 's whiny jags to pump it up , this has to be among the rare ones .\n8615\tGee , a second assassin shot Kennedy ?\n8616\tMoot point .\n8617\tA hysterical yet humorless disquisition on the thin line between sucking face and literally sucking face .\n8618\tNeedless to say , the dramatics that follow are utter hooey .\n8619\tThe problem is that rather than dramatizing this premise , Mr. Desplechin is content to state it .\n8620\tMadonna still ca n't act a lick .\n8621\tEven the imaginative gore ca n't hide the musty scent of Todd Farmer 's screenplay , which is a simple retread of the 1979 Alien , with a plucky heroine battling a monster loose in a spaceship .\n8622\tIf you pitch your expectations at an all time low , you could do worse than this oddly cheerful -- but not particularly funny -- body-switching farce .\n8623\tThe episodic film makes valid points about the depersonalization of modern life .\n8624\tBut the characters tend to be cliches whose lives are never fully explored .\n8625\tSerry does a fine job of capturing the climate of the times and , perhaps unwittingly , relating it to what is happening in America in 2002 .\n8626\tBut hard-to-believe plot twists force the movie off track in its final half hour .\n8627\tDo n't let your festive spirit go this far .\n8628\tThough the book runs only about 300 pages , it is so densely packed ... that even an ambitious adaptation and elaborate production like Mr. Schepisi 's seems skimpy and unclear .\n8629\tHey , at least the title of this film lets you know exactly where it 's heading .\n8630\tIntended to be a comedy about relationships , this wretched work falls flat in just about every conceivable area .\n8631\tSensitive though not quite revelatory documentary .\n8632\tDirector Brian Levant , who never strays far from his sitcom roots , skates blithely from one implausible situation to another , pausing only to tie up loose ends with more bows than you 'll find on a French poodle .\n8633\t... perhaps the heaviest , most joyless movie ever made about giant dragons taking over the world .\n8634\tSuggests puns about ingredients and soup and somebody being off their noodle , but let 's just say the ingredients do n't quite add up to a meal .\n8635\tI 'd give real money to see the perpetrators of Chicago torn apart by dingoes .\n8636\tMovies like this are selling the old European candor , the old wink of ` bold ' revelation .\n8637\tBut in 2002 , such revelations wilt .\n8638\tThe timing in nearly every scene seems a half beat off .\n8639\tI admire it and yet can not recommend it , because it overstays its natural running time .\n8640\tA fairly by-the-books blend of action and romance with sprinklings of intentional and unintentional comedy .\n8641\tFlounders due to the general sense that no two people working on the production had exactly the same thing in mind .\n8642\tEven if you feel like you 've seen this movie a thousand times before , it is kind of enjoyable thanks mainly to Belushi 's easy-going likableness .\n8643\tThe story bogs down in a mess of purposeless violence .\n8644\tDespite some gulps the film is a fuzzy huggy .\n8645\tMcKay deflates his piece of puffery with a sour cliche and heavy doses of mean-spiritedness\n8646\tA recipe for cinematic disaster ... part Quentin Tarantino , part Guy Ritchie , and part 1960s spy spoof , it 's all bad .\n8647\tThe cumulative effect of the relentless horror on parade numbs the movie 's power as a work of drama .\n8648\tAnother big , dumb action movie in the vein of XXX , The Transporter is riddled with plot holes big enough for its titular hero to drive his sleek black BMW through .\n8649\tAaliyah rarely dampens her diva persona enough to spark genuine chemistry with Townsend .\n8650\tWhen she speaks , her creepy Egyptian demigod voice is as computer processed and overproduced as it was in her music .\n8651\tOutrageousness is all Plympton seemed to be going for this time .\n8652\tWe miss the quirky amazement that used to come along for an integral part of the ride .\n8653\tMuch of what is meant to be ` inspirational ' and ` uplifting ' is simply distasteful to audiences not already sharing -LRB- the movie 's -RRB- mindset .\n8654\tWell before it 's over , Beijing Bicycle begins spinning its wheels .\n8655\tHome Alone goes Hollywood , a funny premise until the kids start pulling off stunts not even Steven Spielberg would know how to do .\n8656\tBesides , real movie producers are n't this nice .\n8657\t-LRB- Nelson 's -RRB- movie about morally compromised figures leaves viewers feeling compromised , unable to find their way out of the fog and the ashes .\n8658\tPassion , lip-synching , tragedy , and lots of really really high notes .\n8659\tFor me , this opera is n't a favorite , so it 's a long time before the fat lady sings .\n8660\tLooks like a high school film project completed the day before it was due .\n8661\tTruth to tell , if you 've seen more than half-a-dozen horror films , there 's nothing here you have n't seen before .\n8662\tAbandons all pretense of creating historical context and waltzes off into a hectic soap about the ups and downs of the heavy breathing between the two artists .\n8663\tEven die-hard fans of Japanese animation ... will find this one a challenge .\n8664\tFilmmakers have to dig deep to sink this low .\n8665\tFortunately for all involved , this movie is likely to disappear as quickly as an ice cube thrown into a pot of boiling water .\n8666\tThe movie gets muted and routine .\n8667\tThe issue of faith is not explored very deeply\n8668\tIt 's a bad sign when you 're rooting for the film to hurry up and get to its subjects ' deaths just so the documentary will be over , but it 's indicative of how uncompelling the movie is unless it happens to cover your particular area of interest .\n8669\tThe situations and jokes are as predictable and as lowbrow as the endless pratfalls the boys take in their high heels .\n8670\tIt 's frustrating to see these guys -- who are obviously pretty clever -- waste their talent on parodies of things they probably thought were funniest when they were high .\n8671\tI was perplexed to watch it unfold with an astonishing lack of passion or uniqueness .\n8672\tK-19 may not hold a lot of water as a submarine epic , but it holds even less when it turns into an elegiacally soggy Saving Private Ryanovich .\n8673\tA very stylish but ultimately extremely silly tale ... a slick piece of nonsense but nothing more .\n8674\tAutomatically pegs itself for the straight-to-video sci-fi rental shelf .\n8675\tThe film is like a series of beginnings and middles that never take off .\n8676\tFeels less like it 's about teenagers , than it was written by teenagers .\n8677\tJa Rule and Kurupt should have gotten to rap .\n8678\tIt would have benefitted the dialogue .\n8679\tA standard haunted house tale transplanted to the high seas .\n8680\tElicits more groans from the audience than Jar Jar Binks , Scrappy Doo and Scooby Dumb , all wrapped up into one .\n8681\tIt 's badly acted , blandly directed , and could have been scripted by someone who just graduated from elementary school .\n8682\tIn the end , White Oleander is n't an adaptation of a novel .\n8683\tIt 's a flashy , star-splashed reduction .\n8684\tThis film , starring Anthony Hopkins and Chris Rock , is your typical ` fish out of water ' story .\n8685\tYou 've seen them a million times .\n8686\tJust one problem : Fish out of water usually die .\n8687\tThis one does .\n8688\tThe angst-ridden , affluent slacker characters are more grating than engaging .\n8689\tA soggy , shapeless mess ... just a dumb excuse for a waterlogged equivalent of a haunted-house movie .\n8690\tMen in Black II has sequel-itis something fierce .\n8691\tAn ungainly , comedy-deficient , B-movie rush job ...\n8692\tA combination of standard , stiff TV-style animation and snazzy-looking digital effects that do little to disguise the fact that the characters barely move .\n8693\tAn unsatisfying hybrid of Blair Witch and typical stalk-and-slash fare , where the most conservative protagonist is always the last one living .\n8694\tSay this for the soundtrack , it drowns out the lousy dialogue .\n8695\tAfter seeing SWEPT AWAY , I feel sorry for Madonna .\n8696\tInstead of kicking off the intrigue and suspense and mystery of the whole thing , Hart 's War , like the St. Louis Rams in the Super Bowl , waits until after halftime to get started .\n8697\tA gob of drivel so sickly sweet , even the eager consumers of Moore 's pasteurized ditties will retch it up like rancid crÃ¨me brÃ»lÃ©e .\n8698\tMaudlin and melodramatic we expected .\n8699\tBoring we did n't .\n8700\tNever quite transcends jokester status ... and the punchline does n't live up to Barry 's dead-eyed , perfectly chilled delivery .\n8701\tThe film 's bathos often overwhelms what could have been a more multifaceted look at this interesting time and place .\n8702\tIt almost plays like Solaris , but with guns and jokes .\n8703\tA baffling misfire , and possibly the weakest movie -LRB- Woody Allen -RRB- has made in the last twenty years .\n8704\tIt wo n't be long before you 'll spy I Spy at a video store near you .\n8705\tThis film looks like it was produced in 1954 , shelved for 48 years , and repackaged for a 2002 audience .\n8706\tPropelled not by characters but by caricatures .\n8707\tThere is not an ounce of honesty in the entire production .\n8708\tThis extremely unfunny film clocks in at 80 minutes , but feels twice as long .\n8709\tEarnest but earthbound ... a slow , soggy , soporific , visually dank crime melodrama\\/character study that would be more at home on the small screen but for its stellar cast .\n8710\tThe pivotal narrative point is so ripe the film ca n't help but go soft and stinky .\n8711\tFor all its alleged youthful fire , XXX is no less subservient to Bond 's tired formula of guns , girls and gadgets while brandishing a new action hero .\n8712\tA predictable and stereotypical little B-movie .\n8713\tIf I Spy were funny -LRB- enough -RRB- or exciting -LRB- enough -RRB- then it would be fairly simple to forgive the financial extortion it 's trying to reap from the moviegoing public .\n8714\tFrustratingly , Dridi tells us nothing about El Gallo other than what emerges through his music .\n8715\tPlaces a slightly believable love triangle in a difficult-to-swallow setting , and then disappointingly moves the story into the realm of an improbable thriller .\n8716\tStephen Earnhart 's documentary is a decomposition of healthy eccentric inspiration and ambition -- wearing a cloak of unsentimental , straightforward text -- when it 's really an exercise in gross romanticization of the delusional personality type .\n8717\tA very average science fiction film .\n8718\tUndone by its overly complicated and derivative screenplay , the glacier-paced direction and the stereotypical characters .\n8719\tHow anyone over the age of 2 can stomach the touchy-feely message this preachy produce promotes is beyond us .\n8720\tThe sort of movie that gives tastelessness a bad rap .\n8721\tThe cold and dreary weather is a perfect metaphor for the movie itself , which contains few laughs and not much drama .\n8722\tThe plot is straight off the shelf , the performances are television - caliber and the message of providing solace through deception is a little creepy .\n8723\tordinary melodrama that is heavy on religious symbols but wafer-thin on dramatic substance\n8724\tA whimsical if predictable time-travel fable marred by a willful single-mindedness .\n8725\tThose who managed to avoid the Deconstructionist theorizing of French philosopher Jacques Derrida in college can now take an 85-minute brush-up course with the documentary Derrida .\n8726\tOr , you can do something fun tonight .\n8727\tJolie 's performance vanishes somewhere between her hair and her lips .\n8728\tAs with too many studio pics , plot mechanics get in the way of what should be the lighter-than-air adventure .\n8729\tStatic , repetitive , muddy and blurry , Hey Arnold !\n8730\twould seem to have a lock on the title of ugliest movie of the year .\n8731\tFor all of the contemporary post-colonialist consciousness that Kapur tries to bring to The Four Feathers , the oddest thing about the movie is how it winds up affirming the same damn moldy values the material has always held dear .\n8732\tWhen it comes to entertainment , children deserve better than Pokemon 4Ever .\n8733\tWhat The Four Feathers lacks is genuine sweep or feeling or even a character worth caring about .\n8734\tWhile Benigni -LRB- who stars and co-wrote -RRB- seems to be having a wonderful time , he might be alone in that .\n8735\tYes , 4Ever is harmless in the extreme and it 'll mute your kids for nearly 80 minutes , but why not just treat the little yard apes to the real deal and take them to Spirited Away ?\n8736\tPreposterous and tedious , Sonny is spiked with unintentional laughter that , unfortunately , occurs too infrequently to make the film even a guilty pleasure .\n8737\tCalling this movie brainless would be paying it a compliment : it 's more like entertainment for trolls .\n8738\tNone of these characters resembles anyone you 've ever met in real life , unless you happen to know annoyingly self-involved people who speak in glib sentences that could have only come from the pen of a screenwriter .\n8739\t... just a big mess of a movie , full of images and events , but no tension or surprise .\n8740\tAs elegantly crafted as it often is , Anderson 's movie is essentially a one-trick pony that , hampered by an undeveloped script , ultimately pulls up lame .\n8741\tSplashes its drama all over the screen , subjecting its audience and characters to action that feels not only manufactured , but also so false you can see the filmmakers ' puppet strings .\n8742\t... has virtually no script at all ...\n8743\tWill only satisfy those who ca n't tell the difference between the good , the bad and the ugly .\n8744\tThis kind of dark comedy requires a delicate , surgical touch .\n8745\tBut director Danny DeVito and screenwriter Adam Resnick -LRB- remember Cabin Boy ? -RRB-\n8746\tjust pound away .\n8747\tAt times , however , Dogtown and Z-Boys lapses into an insider 's lingo and mindset that the uninitiated may find hard to follow , or care about .\n8748\tRather quickly , the film falls into a soothing formula of brotherly conflict and reconciliation .\n8749\tScreenwriters Scott Abbott and Michael Petroni have turned Rice 's complex Akasha into a cartoon monster .\n8750\tThe writers , director Wally Wolodarsky , and all the actors should start their own coeducational fraternity : Kappa Rho Alpha Phi .\n8751\tBad beyond belief and ridiculous beyond description .\n8752\tThe new faces are interesting , but the old story is n't , especially when it starts to seem more improvised than scripted .\n8753\tMost of the action setups are incoherent .\n8754\tLiman , of Swingers and Go , makes his big-budget action film debut something of a clunker as he delivers a long , low-heat chase , interrupted by a middling car chase .\n8755\t... surprisingly inert for a movie in which the main character travels back and forth between epochs .\n8756\tThe problem is n't that the movie hits so close to home so much as that it hits close to home while engaging in such silliness as that snake-down-the-throat business and the inevitable shot of Schwarzenegger outrunning a fireball .\n8757\tDreary , highly annoying ... ` Some Body ' will appeal to No One .\n8758\tThere 's something deeply creepy about Never Again , a new arrow in Schaeffer 's quiver of ineptitudes .\n8759\tThe problem with concept films is that if the concept is a poor one , there 's no saving the movie .\n8760\tSorry , Charlie\n8761\tA painfully leaden film destined for pre-dawn cable television slots .\n8762\tBlessed with immense physical prowess he may well be , but Ahola is simply not an actor .\n8763\tAnd in truth , cruel as it may sound , he makes Arnold Schwarzenegger look like Spencer Tracy .\n8764\tThe cartoon that is n't really good enough to be on afternoon TV is now a movie that is n't really good enough to be in theaters .\n8765\tShocking only in that it reveals the filmmaker 's bottomless pit of self-absorption .\n8766\tThis pep-talk for faith , hope and charity does little to offend , but if saccharine earnestness were a crime , the film 's producers would be in the clink for life .\n8767\tAll ends well , sort of , but the frenzied comic moments never click .\n8768\tIf this is the Danish idea of a good time , prospective tourists might want to consider a different destination -- some jolly country embroiled in a bloody civil war , perhaps .\n8769\tFormula 51 is so trite that even Yu 's high-energy action stylings ca n't break through the stupor .\n8770\tOnly a few minutes elapse before the daddy of all slashers arrives , still with the boiler suit and white mask , which look remarkably clean for a guy who has been mass-murdering since 1978 but has never been seen doing laundry .\n8771\tWhen the painted backdrops in a movie are more alive than its characters , you know you 're in trouble .\n8772\t-LRB- Two -RRB- fairly dull -- contrasting and interlocking stories about miserable Scandinavian settlers in 18th-century Canada , and yuppie sailboaters in the here and now .\n8773\tThe film is really not so much bad as bland .\n8774\tThe central story lacks punch .\n8775\tThough Ganesh is successful in a midlevel sort of way , there 's nothing so striking or fascinating or metaphorically significant about his career as to rate two hours of our attention .\n8776\tThis may be the dumbest , sketchiest movie on record about an aspiring writer 's coming-of-age .\n8777\tSuccumbs to the same kind of maudlin , sentimental mysticism that mars the Touched by an Angel school of non-God spiritual-uplift movies .\n8778\tA harmless and mildly amusing family comedy .\n8779\tWhat was subtle and mystifying in the novella is now broad and farcical .\n8780\tThe kids often appear to be reading the lines and are incapable of conveying any emotion .\n8781\t`` Men in Black II , '' has all the earmarks of a sequel .\n8782\tThe story is less vibrant , the jokes are a little lukewarm , but will anyone really care ?\n8783\tSucking all the ` classic ' out of Robert Louis Stevenson 's Treasure Island and filling the void with sci-fi video game graphics and Disney-fied adolescent angst ...\n8784\tThis 72-minute film does have some exciting scenes , but it 's a tad slow .\n8785\tWhile Super Troopers is above Academy standards , its quintet of writers could still use some more schooling .\n8786\tA mix of velocity and idiocy , this ruinous remake lacks the brawn -- and the brains -- of the 1970s original .\n8787\tThe low-budget Full Frontal was one of the year 's murkiest , intentionally obscure and self-indulgent pictures , and Solaris is its big-budget brother .\n8788\tThe plot is very clever , but Boyd weighs it down with too many characters and events , all intertwined and far too complicated to keep track of .\n8789\tThe film seems all but destined to pop up on a television screen in the background of a scene in a future Quentin Tarantino picture\n8790\tA free-for-all of half-baked thoughts , clumsily used visual tricks and self-indulgent actor moments .\n8791\tApallingly absurd ... the chemistry or lack thereof between Newton and Wahlberg could turn an Imax theater into a 9 '' black and white portable TV .\n8792\tA well acted and well intentioned snoozer .\n8793\tThe smug , oily demeanor that Donovan adopts throughout the stupidly named Pipe Dream is just repulsive .\n8794\tMust-see viewing for anyone involved in the high-tech industry .\n8795\tOthers may find it migraine-inducing , despite Moore 's attempts at whimsy and spoon feeding .\n8796\tDespite its good nature and some genuinely funny moments , Super Troopers suffers from a bad case of arrested development .\n8797\tIt 's hard not to feel you 've just watched a feature-length video game with some really heavy back story .\n8798\tI watched the brainless insanity of No Such Thing with mounting disbelief .\n8799\tThis limp gender-bender-baller from a first-time director and rookie screenwriter steals wholesale from that 1982 's Tootsie , forgetting only to retain a single laugh .\n8800\tKwan makes the mix-and - match metaphors intriguing , while lulling us into torpor with his cultivated allergy to action .\n8801\tWhile obviously an extremely personal work , it remains inextricably stuck in an emotionally unavailable rut .\n8802\tAny movie this boring should be required to have ushers in the theater that hand you a cup of coffee every few minutes .\n8803\tLike a marathon runner trying to finish a race , you need a constant influx of liquid just to get through it .\n8804\tI loved looking at this movie .\n8805\tI just did n't care as much for the story .\n8806\tHas all the poignancy of a Hallmark card and all the comedy of a Gallagher stand-up act .\n8807\tIt does n't do the original any particular dishonor , but neither does it exude any charm or personality .\n8808\tfear dot com is so rambling and disconnected it never builds any suspense .\n8809\tA gorgeous , somnolent show that is splendidly mummified and thoroughly unsurprising .\n8810\tA semi-autobiographical film that 's so sloppily written and cast that you can not believe anyone more central to the creation of Bugsy than the caterer had anything to do with it .\n8811\tIt feels like a community theater production of a great Broadway play : Even at its best , it will never hold a candle to the original .\n8812\tThe film apparently takes place in a fantasy world where people in hotel hallways recite poetry in voice-over instead of speaking to each other .\n8813\tThe element of surprise might be the only thing Femme Fatale has going for it .\n8814\tIt 's the kind of movie you ca n't quite recommend because it is all windup and not much of a pitch , yet you ca n't bring yourself to dislike it .\n8815\tMaybe it 's asking too much , but if a movie is truly going to inspire me , I want a little more than this .\n8816\tA graceless , witless attempt at mating Some Like It Hot with the WWII espionage thriller .\n8817\tThe story and characters are nowhere near gripping enough .\n8818\tBased on a David Leavitt story , the film shares that writer 's usual blend of observant cleverness , too-facile coincidence and slightly noxious preciousness .\n8819\tJust like every other Seagal movie , only louder and without that silly ponytail .\n8820\tTo enjoy this movie 's sharp dialogue and delightful performance by Jolie and Burns , you have to gloss over the no sense ending .\n8821\tNational Lampoon 's Van Wilder could be the worst thing to come out of National Lampoon since Class Reunion\n8822\tThis is a great subject for a movie , but Hollywood has squandered the opportunity , using it as a prop for warmed-over melodrama and the kind of choreographed mayhem that director John Woo has built his career on .\n8823\tEcks this one off your must-see list .\n8824\tOverall , the film misses the brilliance of Jelinek 's novel by some way .\n8825\tIt settles for being merely grim .\n8826\tThe Irwins emerge unscathed , but the fictional footage is unconvincing and criminally badly acted .\n8827\tIt 's not thirsty , consuming passion which drives this movie .\n8828\tNo , it 's the repetition of said behavior , and so Children of the Century is more mindless love than mad , more grating and boring than anything else .\n8829\tJust because it really happened to you , honey , does n't mean that it 's interesting to anyone else .\n8830\tJust like the deli sandwich : lots of ham , lots of cheese , with a sickly sweet coating to disguise its excrescence until just after -LRB- or during -RRB- consumption of its second half .\n8831\tEvery so often a movie comes along that confirms one 's worse fears about civilization as we know it .\n8832\tThe New Guy is one of them .\n8833\tThis is n't a `` Friday '' worth waiting for .\n8834\tEverything that 's worthwhile about Collision Course can already be seen on television .\n8835\tIf this movie belonged to a sorority , it would be called Beta Alpha Delta .\n8836\tNot a cheap slasher flick , as the subject matter would suggest , but is a little like a nature film , showing a patient predator and his foolish prey .\n8837\tUneasy mishmash of styles and genres .\n8838\tHerzog is obviously looking for a moral to his fable , but the notion that a strong , unified showing among Germany and Eastern European Jews might have changed 20th-Century history is undermined by Ahola 's inadequate performance .\n8839\tAll in all , there 's only one thing to root for : expulsion for everyone .\n8840\tBeyond a handful of mildly amusing lines ... there just is n't much to laugh at .\n8841\tSecret Ballot is too contemplative to be really funny .\n8842\tThe film 's center will not hold .\n8843\tMyers never knows when to let a gag die ; thus , we 're subjected to one mind-numbingly lengthy riff on poo and pee jokes after another .\n8844\tToo lazy to take advantage of its semi-humorous premise .\n8845\tA great ending does n't make up for a weak movie , and Crazy as Hell does n't even have a great ending .\n8846\tDialogue-heavy and too cerebral for its own good -- or , at any rate , too cerebral for its racy subject matter .\n8847\tIts over-reliance on genre conventions , character types and formulaic conflict resolutions crushes all the goodwill it otherwise develops .\n8848\tAs an actor , The Rock is aptly named .\n8849\tA mostly tired retread of several other mob tales .\n8850\tI wish I could say `` Thank God It 's Friday '' , but the truth of the matter is I was glad when it was over .\n8851\tNothing about it fits .\n8852\tAs it abruptly crosscuts among the five friends , it fails to lend the characters ' individual stories enough dramatic resonance to make us care about them .\n8853\tSomehow we 're meant to buy that this doting mother would shun her kids , travel to one of the most dangerous parts of the world , don fatigues and become G.I. Jane .\n8854\tThe cast is so low-wattage that none of the characters comes off as big ... and the setting remains indistinct .\n8855\tConsider the title 's clunk-on-the-head that suggests the overtime someone put in to come up with an irritatingly unimaginative retread concept .\n8856\tThe movie quickly drags on becoming boring and predictable .\n8857\tI tried to read the time on my watch .\n8858\tThe film makes a tragic error by going on for too long , trying to mirror every subsequent event in Chinese history : war , revolution , Communism , etc. .\n8859\tJohnson has , in his first film , set himself a task he is not nearly up to .\n8860\tUltimately the project comes across as clinical , detached , uninvolving , possibly prompting audience members to wonder , ` What 's the point ? '\n8861\tThe two leads are almost good enough to camouflage the dopey plot , but so much naturalistic small talk , delivered in almost muffled exchanges , eventually has a lulling effect .\n8862\tThe film meant well in its horse tale about freedom , but was n't able to reach the heart because it was too overbearing .\n8863\tThe movie is as far as you can get from racy , to the point where it almost stops the blood flow to your brain ; it has a dull , costumey feel .\n8864\tOnce the audience figure out what 's being said , the filmmaker 's relative passivity will make it tough for them to really care .\n8865\tThere 's nothing provocative about this film save for the ways in which it studiously avoids provoking thought .\n8866\tIt seems just a long , convoluted ploy to get men into drag -- period drag , no less .\n8867\tThe premise for this kegger comedy probably sounded brilliant four six-packs and a pitcher of margaritas in , but the film must have been written ... in the thrall of a vicious hangover .\n8868\tEven by dumb action-movie standards , Ballistic : Ecks vs. Sever is a dumb action movie .\n8869\tThe film equivalent of a toy chest whose contents get scattered over the course of 80 minutes .\n8870\tJust a bloody mess .\n8871\tCreepy but ultimately unsatisfying thriller .\n8872\tYou would be better off investing in the worthy EMI recording that serves as the soundtrack , or the home video of the 1992 Malfitano-Domingo production .\n8873\tHas something to say ... but it is a statement and issue worthy of a much more thoughtfulness and insight than a melodramatic and wholly predictable thriller .\n8874\tBears is bad .\n8875\tNot ` terrible filmmaking ' bad , but more like , ' I once had a nightmare like this , and it 's now coming true ' bad .\n8876\tAs is most commonly case with projects such noble and lofty ambitions , the film is less poetic than simply pretentious .\n8877\tGeorge , hire a real director and good writers for the next installment , please .\n8878\tFor a film about two mismatched buddies , Crystal and De Niro share little screen time and even less chemistry .\n8879\tHowever clever Nelson has been in providing variation within the confines of her structure and staging , the question remains whether this should , indeed , have been presented as a theatrical release .\n8880\tExtreme Oops - oops , ops , no matter how you spell it , it 's still a mistake to go see it .\n8881\tWhat could and should have been biting and droll is instead a tepid waste of time and talent .\n8882\tWhat will , most likely , turn out to be the most repellent movie of 2002 .\n8883\t... too dull to enjoy .\n8884\tA morality tale whose thought-provoking potential is hampered by a made-for-TV look , rigid performances and an asinine ` twist ' that brazenly rips off The Sixth Sense .\n8885\tHere 's a self-congratulatory 3D IMAX rah-rah .\n8886\tEastwood is an icon of moviemaking , one of the best actors , directors and producers around , responsible for some excellent work .\n8887\tBut even a hero can stumble sometimes .\n8888\tA sophomoric exploration of ` life problems ' most people solved long ago -- or at least got tired of hearing people kvetch about .\n8889\tIt 's all very cute , though not terribly funny if you 're more than six years old .\n8890\tThe impact of the Armenian genocide is diluted by too much stage business in the modern day .\n8891\tGoing to the website may be just as fun -LRB- and scary -RRB- as going to the film .\n8892\tLacking gravitas , MacDowell is a placeholder for grief , and ergo this sloppy drama is an empty vessel .\n8893\tLeave these Flowers unpicked -- they 're dead on the vine .\n8894\tAdmirable , certainly , but not much fun to watch .\n8895\tFor Caine Lovers only .\n8896\tA shambles of a movie -- visually unattractive , unbearably loud and utterly silly ... its hilarity is completely unintentional .\n8897\tDe Niro may enjoy the same free ride from critics afforded to Clint Eastwood in the lazy Bloodwork .\n8898\tBut like Bruce Springsteen 's gone-to-pot Asbury Park , New Jersey , this sad-sack waste of a movie is a City of ruins .\n8899\tNo , it 's not nearly as good as any of its influences .\n8900\tA reasonably efficient mechanism , but it offers few surprises and finds its stars slumming in territory they should have avoided .\n8901\tThe rest of the plot is impossible to explain without blowing whatever tension there is , although it 's more comedy than suspense De Palma creates .\n8902\tHuman Nature talks the talk , but it fails to walk the silly walk that distinguishes the merely quirky from the surreal .\n8903\tCity by the Sea is the cinematic equivalent of defensive driving : It 's careful , conscientious and makes no major mistakes .\n8904\tBut what saves lives on the freeway does not necessarily make for persuasive viewing .\n8905\tThe Marquis de Sade could n't have been as dull a person as this film makes him out to be .\n8906\tWhat could have been a neat little story about believing in yourself is swamped by heavy-handed melodrama .\n8907\tThe cast is uniformly excellent ... but the film itself is merely mildly charming .\n8908\tDrives for the same kind of bittersweet , conciliatory tone that Three Seasons achieved but loses its way in rhetorical excess and blatant sentimentality .\n8909\tA bigger holiday downer than your end-of-year 401 -LRB- k -RRB- statement .\n8910\tThe whole thing plays out with the drowsy heaviness of synchronized swimmer wearing a wool wetsuit .\n8911\tFairly successful at faking some pretty cool stunts but a complete failure at trying to create some pretty cool characters .\n8912\tAnd forget about any attempt at a plot !\n8913\tIt will probably prove interesting to Ram Dass fans , but to others it may feel like a parody of the mellow , peace-and-love side of the '60s counterculture .\n8914\tTake away all the cliches and the carbon copy scenes from every drug movie we 've seen and all you have left are John Leguizamo 's cool jackets .\n8915\tIt 's so full of wrong choices that all you can do is shake your head in disbelief -- and worry about what classic Oliver Parker intends to mangle next time .\n8916\tShowtime is closer to Slowtime .\n8917\tIt may be an easy swipe to take , but this Barbershop just does n't make the cut .\n8918\tThe Weight of Water uses water as a metaphor for subconscious desire , but this leaky script barely stays afloat .\n8919\t` How many more voyages can this limping but dearly-loved franchise survive ? '\n8920\tDespite a blue-chip cast and a provocative title , writer-director Peter Mattei 's first feature microwaves dull leftover romantic motifs basted in faux-contemporary gravy .\n8921\tFans of the TV series will be disappointed , and everyone else will be slightly bored .\n8922\tThe only element of suspense is whether the movie will change titles or distributors again before the closing credits roll .\n8923\tBarely goes beyond comic book status .\n8924\tIt 's disappointing when filmmakers throw a few big-name actors and cameos at a hokey script .\n8925\tI Spy is an embarrassment , a monotonous , disjointed jumble of borrowed plot points and situations .\n8926\tIt 's as flat as an open can of pop left sitting in the sun .\n8927\tAn eccentric little comic\\/thriller deeply in love with its own quirky personality .\n8928\tAfraid to pitch into farce , yet only half-hearted in its spy mechanics , All the Queen 's Men is finally just one long drag .\n8929\tMaybe it 's the star power of the cast or the redundant messages , but something aboul `` Full Frontal '' seems , well , contrived .\n8930\t-LRB- Morgan -RRB- , Judd and Franklin ca n't save the script , rooted in a novel by Joseph Finder , from some opportunism .\n8931\tPassably entertaining but also mechanical and joyless .\n8932\tSafe Conduct , however ambitious and well-intentioned , fails to hit the entertainment bull 's - eye .\n8933\tMy response to the film is best described as lukewarm .\n8934\tMaybe I found the proceedings a little bit too conventional .\n8935\tToo timid to bring a sense of closure to an ugly chapter of the twentieth century .\n8936\tIt 's push-the-limits teen comedy , the type written by people who ca n't come up with legitimate funny , and it 's used so extensively that good bits are hopelessly overshadowed .\n8937\tIt 's too long , too repetitive , and takes way too many years to resolve to be a total winner .\n8938\tA sudsy cautionary tale .\n8939\tA movie that tries to fuse the two ` woods ' but winds up a Bolly-Holly masala mess .\n8940\tMr. Wedge and Mr. Saldanha handle the mix of verbal jokes and slapstick well .\n8941\tTheir film falters , however , in its adherence to the Disney philosophy of required poignancy , a salute that I 'd hoped the movie would avoid .\n8942\tLeaves you with a knot in your stomach , its power is undercut by its own head-banging obviousness .\n8943\tWatching it is rather like an overlong visit from a large group of your relatives .\n8944\tAs your relatives swap one mundane story after another , you begin to wonder if they are ever going to depart .\n8945\tUnfortunately , as a writer , Mr. Montias is n't nearly as good to his crew as he is as a director or actor .\n8946\tOn the right track to something that 's creepy and effective ... It 's just going to take more than a man in a Bullwinkle costume to get there .\n8947\tThe only thing that could possibly make them less interesting than they already are is for them to get full montied into a scrappy , jovial team .\n8948\tOne of those movies where you walk out of the theater not feeling cheated exactly , but feeling pandered to , which , in the end , might be all the more infuriating .\n8949\t... this movie has a glossy coat of action movie excess while remaining heartless at its core .\n8950\tMurder By Numbers is like a couple of mediocre TV-movie - of-the-week films clumsily stuck together .\n8951\tThe film is surprisingly well-directed by Brett Ratner , who keeps things moving well -- at least until the problematic third act .\n8952\tWarmed-over Tarantino by way of wannabe Elmore Leonard .\n8953\t-LRB- Sen 's -RRB- soap opera-ish approach undermines his good intentions .\n8954\tShowtime is one of the hapless victims of the arrogant `` if we put together a wry white man and a chatty black man and give them guns , the movie will be funny '' syndrome .\n8955\tSushi for the connoisseurs of the macabre .\n8956\tDo n't waste your money .\n8957\tThough certainly original in form , Altar Boys requires a taste for Swamp Thing-type animation , doubled with a deafening score .\n8958\tThere are n't many laughs in this interesting study of the cultural mores of Georgian Jews in Tel Aviv .\n8959\tThere 's not enough to sustain the comedy .\n8960\tLike those to Rome , all roads in The Banger Sisters inevitably lead to a joke about Hawn 's breasts , which constantly threaten to upstage the woman sporting them .\n8961\tWe may get the full visceral impact of a ruthless army on the warpath but no sense of the devilish complexity of the Balkans conflict .\n8962\tYou 're better off staying home and watching The X-Files .\n8963\tChaotic , self-indulgent and remarkably ugly to look at , it 's ... like a series of pretentiously awful student films strung together into one feature-length horror .\n8964\tBears resemblance to , and shares the weaknesses of , too many recent action-fantasy extravaganzas in which special effects overpower cogent story-telling and visual clarity during the big action sequences .\n8965\tThis is the type of movie best enjoyed by frat boys and college kids while sucking on the bong and downing one alcoholic beverage after another .\n8966\tFriday After Next has the same problem that Next Friday did -- it 's called Where 's Chris Tucker When You Need Him ?\n8967\tThis film is full of rabbits .\n8968\tBrimful .\n8969\tBut like most rabbits , it seems to lack substance .\n8970\tI weep for the future when a good portion of the respected critical community in this country consider Blue Crush to be an intelligent film about young women .\n8971\tI kept wishing I was watching a documentary about the wartime Navajos and what they accomplished instead of all this specious Hollywood hoo-ha .\n8972\tNo number of fantastic sets , extras , costumes and spectacular locales can disguise the emptiness at the center of the story .\n8973\tA movie far more cynical and lazy than anything a fictitious Charlie Kaufman might object to .\n8974\tCould The Country Bears really be as bad as its trailers ?\n8975\tIn a word -- yes .\n8976\tIf High Crimes were any more generic it would have a universal product code instead of a title .\n8977\tReggio falls victim to relying on the very digital technology that he fervently scorns , creating a meandering , inarticulate and ultimately disappointing film .\n8978\tThe movie makes absolutely no sense .\n8979\tIts underlying mythology is a hodgepodge of inconsistencies that pose the question : Since when did dumb entertainment have to be this dumb ?\n8980\tThe problem with this film is that it 's forced to make its characters idiots in order to advance the plot .\n8981\tHad anyone here done anything remotely intelligent , we all could have stopped watching long ago .\n8982\tDespite the authenticity of the trappings , the film is overblown in its plotting , hackneyed in its dialogue and anachronistic in its style .\n8983\tMurder and mayhem of this sort quickly becomes monotonous .\n8984\tThe journey toward redemption feels more like a cinematic experiment than a full-blown movie .\n8985\tThat Zhang would make such a strainingly cute film -- with a blind orphan at its center , no less -- indicates where his ambitions have wandered .\n8986\tThe Gantzes ' interviews tend to let the guys off the hook .\n8987\tThe streets , shot by cinematographer Michael Ballhaus , may be as authentic as they are mean , but it is nearly impossible to care about what happens on them .\n8988\tThis is a good movie in spurts , but when it does n't work , it 's at important times .\n8989\tParker probably thinks he 's shaking up a classic the way Kenneth Branagh and Baz Luhrmann have , but this half-hearted messing-about just makes us miss Wilde 's still-contemporary play .\n8990\tFlotsam in the sea of moviemaking , not big enough for us to worry about it causing significant harm and not smelly enough to bother despising .\n8991\tA TV episode inflated past its natural length .\n8992\tInvolving at times , but lapses quite casually into the absurd .\n8993\tAll these developments and challenges facing Santa weigh down the plot so heavily that they drain all the film of its energy and needlessly strain credibility .\n8994\tThere are weird resonances between actor and role here , and they 're not exactly flattering .\n8995\tThe unceasing sadism is so graphically excessive , the director just ends up exposing his own obsession .\n8996\tThe story ... is moldy and obvious .\n8997\tIt 's drained of life in an attempt to be sober and educational , and yet it 's so devoid of realism that its lack of whistles and bells just makes it obnoxious and stiff .\n8998\tSuffocated at conception by its Munchausen-by-proxy mum .\n8999\tPunish the vehicle to adore the star .\n9000\tEven if Britney Spears is really cute , her movie is really bad .\n9001\tBig Fat Liar is just futile silliness looking to tap into the kiddie sensibilities .\n9002\tUsually when I get this much syrup , I like pancakes to go with it .\n9003\tAll the necessary exposition prevents the picture from rising above your generic sand 'n' sandal adventure .\n9004\tGlib , satirical documentary that fudges facts , makes facile points and engages in the cinematic equivalent of tabloid journalism .\n9005\tGangs of New York is an unapologetic mess , whose only saving grace is that it ends by blowing just about everything up .\n9006\tAn overblown clunker full of bad jokes , howling cliches and by-the-numbers action sequences .\n9007\tWithout a strong script and energetic acting , Dogma films can produce the same sleep-inducing effects as watching your neighbor 's home videos .\n9008\tA mild , reluctant , thumbs down .\n9009\tStrong setup and ambitious goals fade as the film descends into unsophisticated scare tactics and B-film thuggery .\n9010\tSchindler 's List it ai n't .\n9011\tA cinematic sleeping pill of impressive potency .\n9012\tIt 's an awfully derivative story .\n9013\tThe movie barely makes sense , with its unbelievable naÃ¯vetÃ© and arbitrary flashbacks .\n9014\tIt 's an earnest debut full of heartfelt performances , but is ultimately let down by a story that is all too predictable .\n9015\tAbout as cutting-edge as Pet Rock : The Movie .\n9016\tWith generic sets and B-grade special effects , Jason is about as convincing on the sci-fi front as TV 's defunct Cleopatra 2525 .\n9017\tNot sweet enough to liven up its predictable story and will leave even fans of hip-hop sorely disappointed .\n9018\tWinds up feeling like lots of other quirky movies that try to score hipness points with young adults .\n9019\tOft-described as the antidote to American Pie-type sex comedies , it actually has a bundle in common with them , as the film diffuses every opportunity for a breakthrough\n9020\tThe pacing is glacial , the screenplay is stiff as a board , and things heat up only in the movie 's final scenes .\n9021\tThe premise is overshadowed by the uberviolence of the Clericks as this becomes just another kung-fu sci-fi movie with silly action sequences .\n9022\tWith its hints of a greater intelligence lurking somewhere , The Ring makes its stupidity more than obvious .\n9023\tIt 's painful .\n9024\tPumpkin struts about with `` courage '' pinned to its huckster lapel while a yellow streak a mile wide decorates its back .\n9025\tAn uneven film dealing with too many problems to be taken seriously .\n9026\tSheridan ... smoothes over sources of conflict that could have lent the film a bit more depth .\n9027\tAn atonal estrogen opera that demonizes feminism while gifting the most sympathetic male of the piece with a nice vomit bath at his wedding .\n9028\tHalf of it is composed of snappy patter and pseudo-sophisticated cultural observations , while the remainder ... would be more at home on a daytime television serial .\n9029\tWriter\\/director John McKay ignites some charming chemistry between Kate and Jed but , when he veers into sodden melodrama , punctuated by violins , it 's disastrous and Kate 's jealous female friends become downright despicable .\n9030\t-LRB- Newton -RRB- wanders through CHARLIE completely unaware she needs to show some presence and star quality .\n9031\tUnfortunately , the picture failed to capture me .\n9032\tI found it slow , drab , and bordering on melodramatic .\n9033\tA lousy movie that 's not merely unwatchable , but also unlistenable .\n9034\tThe best way to hope for any chance of enjoying this film is by lowering your expectations .\n9035\tThen lower them a bit more .\n9036\tWhen not obscured by the booming bass-heavy soundtrack , the conversation presents the kind of linguistic fumbling not heard since Macy Gray 's game of Chinese whispers with Mr Bean .\n9037\tCliches are as thick as the cigarette smoke .\n9038\tA woozy , roisterous , exhausting mess , and the off-beat casting of its two leads turns out to be as ill-starred as you might expect .\n9039\t` Abandon all hope , ye who enter here ' ... you should definitely let Dante 's gloomy words be your guide .\n9040\tWhat begins as a seemingly brainless , bubbly romantic comedy becomes a cliche-drenched melodrama by mid-film and , by film 's end , a feminist action fantasy .\n9041\tA grim , flat and boring werewolf movie that refuses to develop an energy level .\n9042\tBirot 's directorial debut -LRB- she co-wrote the script with Christophe HonorÃ© -RRB- is n't so much bad as it is bland .\n9043\tWatching the film is like reading a Times Portrait of Grief that keeps shifting focus to the journalist who wrote it .\n9044\tEnough similarities to Gymkata and Howie Long 's Firestorm that my fingernails instinctively crawled towards my long-suffering eyeballs .\n9045\tSucceeds in providing a disquiet world the long-dreaded completion of the Police Academy series .\n9046\tChristians sensitive to a reductionist view of their Lord as a luv-spreading Dr. Feelgood or omnipotent slacker will feel vastly more affronted than secularists , who might even praise God for delivering such an instant camp classic .\n9047\tIf this dud had been made in the '70s , it would have been called The Hills Have Antlers and played for about three weeks in drive-ins .\n9048\tA frantic search for laughs , with a hit-to-miss ratio that does n't exactly favour the audience .\n9049\tLike a documentary version of Fight Club , shorn of social insight , intellectual pretension and cinematic interest .\n9050\t`` An entire film about researchers quietly reading dusty old letters . ''\n9051\tPryor Lite , with half the demons , half the daring , much less talent , many fewer laughs .\n9052\tWhat 's at stake in this film is nothing more than an obsolete , if irritating , notion of class .\n9053\tThe stories here suffer from the chosen format .\n9054\tWhile the mystery surrounding the nature of the boat 's malediction remains intriguing enough to sustain mild interest , the picture refuses to offer much accompanying sustenance in the way of characterization , humor or plain old popcorn fun .\n9055\tJust how extreme are these ops ?\n9056\tI regret to report that these ops are just not extreme enough .\n9057\tThe actors are forced to grapple with hazy motivations that never come into focus .\n9058\tJohn Leguizamo may be a dramatic actor -- just not in this movie .\n9059\tThe sequel has turned completely and irrevocably bizarre to the point of utter nonsense .\n9060\tHardly makes the kind of points Egoyan wanted to make , nor does it exist as the kind of monument he wanted to build , to victims whose voices have never gained the ears of the world .\n9061\tBuild some robots , haul 'em to the theatre with you for the late show , and put on your own Mystery Science Theatre 3000 tribute to what is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year .\n9062\tRainy days and movies about the disintegration of families always get me down .\n9063\t... has about 3\\/4th the fun of its spry 2001 predecessor -- but it 's a rushed , slapdash , sequel-for-the-sake - of-a-sequel with less than half the plot and ingenuity .\n9064\tThe Master Of Disaster - it 's a piece of dreck disguised as comedy .\n9065\tThe film has a few cute ideas and several modest chuckles but it is n't exactly kiddie-friendly ... Alas , Santa is more ho-hum than ho-ho-ho and the Snowman -LRB- who never gets to play that flute -RRB- has all the charm of a meltdown .\n9066\tThe stupidest , most insulting movie of 2002 's first quarter .\n9067\tIt 's so underwritten that you ca n't figure out just where the other characters , including Ana 's father and grandfather , come down on the issue of Ana 's future .\n9068\tA film so tedious that it is impossible to care whether that boast is true or not .\n9069\tNone of this violates the letter of Behan 's book , but missing is its spirit , its ribald , full-throated humor .\n9070\tBad Company leaves a bad taste , not only because of its bad-luck timing , but also the staleness of its script .\n9071\tEven if it ultimately disappoints , the picture does have about a matinee admission 's worth of funny to keep it afloat .\n9072\tFails to bring as much to the table .\n9073\tA film made with as little wit , interest , and professionalism as artistically possible for a slummy Hollywood caper flick .\n9074\tDisturbingly superficial in its approach to the material .\n9075\tIf you 're not the target demographic ... this movie is one long chick-flick slog .\n9076\tI hate this movie\n9077\tIt 's tough to tell which is in more abundant supply in this woefully hackneyed movie , directed by Scott Kalvert , about street gangs and turf wars in 1958 Brooklyn -- stale cliches , gratuitous violence , or empty machismo .\n9078\tGooding and Coburn are both Oscar winners , a fact which , as you watch them clumsily mugging their way through Snow Dogs , seems inconceivable .\n9079\tAt every opportunity to do something clever , the film goes right over the edge and kills every sense of believability ... all you have left is a no-surprise series of explosions and violence while Banderas looks like he 's not trying to laugh at how bad it\n9080\t... pitiful , slapdash disaster .\n9081\tA DOA dud from frame one .\n9082\tJaw-droppingly superficial , straining to get by on humor that is not even as daring as John Ritter 's glory days on Three 's Company .\n9083\tThere are plenty of scenes in Frida that do work , but rarely do they involve the title character herself .\n9084\tAlthough God Is Great addresses interesting matters of identity and heritage , it 's hard to shake the feeling that it was intended to be a different kind of film .\n9085\tThe dark and bittersweet twist feels strange as things turn nasty and tragic during the final third of the film .\n9086\tFirst-timer John McKay is never able to pull it back on course .\n9087\tDistances you by throwing out so many red herrings , so many false scares , that the genuine ones barely register .\n9088\tGodard uses his characters -- if that 's not too glorified a term -- as art things , mouthpieces , visual motifs , blanks .\n9089\tThe movie generates plot points with a degree of randomness usually achieved only by lottery drawing .\n9090\tA predictable , manipulative stinker .\n9091\tThe story passes time until it 's time for an absurd finale of twisted metal , fireballs and revenge .\n9092\tEastwood winces , clutches his chest and gasps for breath .\n9093\tIt 's a spectacular performance - ahem , we hope it 's only acting .\n9094\tThe movie suffers from two fatal ailments -- a dearth of vitality and a story that 's shapeless and uninflected .\n9095\tIt 's just weirdness for the sake of weirdness , and where Human Nature should be ingratiating , it 's just grating .\n9096\tAn ambitiously naturalistic , albeit half-baked , drama about an abused , inner-city autistic teen .\n9097\tonce she lets her love depraved leads meet , -LRB- Denis ' -RRB- story becomes a hopeless , unsatisfying muddle\n9098\tThe dose is strong and funny , for the first 15 minutes anyway ; after that , the potency wanes dramatically .\n9099\tThe people in ABC Africa are treated as docile , mostly wordless ethnographic extras .\n9100\tWhat 's really sad is to see two Academy Award winning actresses -LRB- and one Academy Award winning actor -RRB- succumb to appearing in this junk that 's TV sitcom material at best .\n9101\tNo doubt the star and everyone else involved had their hearts in the right place .\n9102\tWhere their heads were is anyone 's guess .\n9103\tCall me a cynic , but there 's something awfully deadly about any movie with a life-affirming message .\n9104\tA gratingly unfunny groaner littered with zero-dimensional , unlikable characters and hackneyed , threadbare comic setups .\n9105\tGot some good , organic character work , lots of obvious political insights and little room for engaging , imaginative filmmaking in its nearly 2Â 1\\/2 - hour , dissipated length .\n9106\tA painfully slow cliche-ridden film filled with more holes than Clyde Barrow 's car .\n9107\tLike leafing through an album of photos accompanied by the sketchiest of captions .\n9108\tI guess it just goes to show that if you give a filmmaker an unlimited amount of phony blood , nothing good can happen .\n9109\tGaghan captures the half-lit , sometimes creepy intimacy of college dorm rooms , a subtlety that makes the silly , over-the-top coda especially disappointing .\n9110\tFeels less like a change in -LRB- Herzog 's -RRB- personal policy than a half-hearted fluke .\n9111\tOne of the most unpleasant things the studio has ever produced .\n9112\tWill anyone who is n't a Fangoria subscriber be excited that it has n't gone straight to video ?\n9113\tA selection of scenes in search of a movie .\n9114\t-LRB- Janey -RRB- forgets about her other obligations , leading to a tragedy which is somehow guessable from the first few minutes , maybe because it echoes the by now intolerable morbidity of so many recent movies .\n9115\tWill undoubtedly play well in European markets , where Mr. Besson is a brand name , and in Asia , where Ms. Shu is an institution , but American audiences will probably find it familiar and insufficiently cathartic .\n9116\tTrue to its animatronic roots : ... as stiff , ponderous and charmless as a mechanical apparatus ... ` The Country Bears ' should never have been brought out of hibernation .\n9117\t-LRB- Evans is -RRB- a fascinating character , and deserves a better vehicle than this facetious smirk of a movie .\n9118\tThe script 's judgment and sense of weight is way , way off .\n9119\tYou come away wishing , though , that the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that 's at the center of the story .\n9120\tEvelyn may be based on a true and historically significant story , but the filmmakers have made every effort to disguise it as an unimaginative screenwriter 's invention .\n9121\tA derivative collection of horror and sci-fi cliches .\n9122\tLoosely speaking , we 're in All of Me territory again , and , strictly speaking , Schneider is no Steve Martin .\n9123\tAs aimless as an old pickup skidding completely out of control on a long patch of black ice , the movie makes two hours feel like four .\n9124\tLimps along on a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very , very slowly .\n9125\tJust the sort of lazy tearjerker that gives movies about ordinary folk a bad name .\n9126\tThe redeeming feature of Chan 's films has always been the action , but the stunts in The Tuxedo seem tired and , what 's worse , routine .\n9127\tWhile The Importance of Being Earnest offers opportunities for occasional smiles and chuckles , it does n't give us a reason to be in the theater beyond Wilde 's wit and the actors ' performances .\n9128\tHas all the scenic appeal of a cesspool .\n9129\tA rambling ensemble piece with loosely connected characters and plots that never quite gel .\n9130\tA Lifetime movie about men .\n9131\tThe Balkans provide the obstacle course for the love of a good woman .\n9132\tIt 's hard to say who might enjoy this , are there Tolstoy groupies out there ?\n9133\tIt 's dark and tragic , and lets the business of the greedy talent agents get in the way of saying something meaningful about facing death\n9134\tThis is a movie that starts out like Heathers , then becomes Bring it On , then becomes unwatchable .\n9135\tThe screenplay flounders under the weight of too many story lines .\n9136\tI think it was Plato who said , ' I think , therefore I know better than to rush to the theatre for this one . '\n9137\tIf Damon and Affleck attempt another Project Greenlight , next time out they might try paying less attention to the miniseries and more attention to the film it is about .\n9138\tThis is rote drivel aimed at Mom and Dad 's wallet .\n9139\tContrived , maudlin and cliche-ridden ... if this sappy script was the best the contest received , those rejected must have been astronomically bad .\n9140\tI hate the feeling of having been slimed in the name of High Art .\n9141\tThis is more a case of ` Sacre bleu ! '\n9142\tthan ` Magnifique ' .\n9143\tThe kids in the audience at the preview screening seemed bored , cheering the pratfalls but little else ; their parents , wise folks that they are , read books .\n9144\tWhether Jason X is this bad on purpose is never clear .\n9145\tBut one thing 's for sure : It never comes close to being either funny or scary .\n9146\tYet another weepy Southern bore-athon .\n9147\tI like all four of the lead actors a lot and they manage to squeeze a few laughs out of the material , but they 're treading water at best in this forgettable effort .\n9148\tPerhaps the most annoying thing about Who Is Cletis Tout ?\n9149\tis that it 's a crime movie made by someone who obviously knows nothing about crime .\n9150\tExcept as an acting exercise or an exceptionally dark joke , you wonder what anyone saw in this film that allowed it to get made .\n9151\tThis insufferable movie is meant to make you think about existential suffering .\n9152\tInstead , it 'll only put you to sleep .\n9153\tWho is this movie for ?\n9154\tNot kids , who do n't need the lesson in repugnance .\n9155\tIt 's also not smart or barbed enough for older viewers -- not everyone thinks poo-poo jokes are ` edgy . '\n9156\tA sleep-inducingly slow-paced crime drama with clumsy dialogue , heavy-handed phoney-feeling sentiment , and an overly-familiar set of plot devices .\n9157\tIt 's so tedious that it makes you forgive every fake , dishonest , entertaining and , ultimately , more perceptive moment in Bridget Jones 's Diary .\n9158\tAlmost as offensive as `` Freddy Got Fingered . ''\n9159\tThe gifted Crudup has the perfect face to play a handsome blank yearning to find himself , and his cipherlike personality and bad behavior would play fine if the movie knew what to do with him .\n9160\tIt is depressing , ruthlessly pained and depraved , the movie equivalent of staring into an open wound .\n9161\tPonderous , plodding soap opera disguised as a feature film .\n9162\tCold , pretentious , thoroughly dislikable study in sociopathy .\n9163\tFor the future , one hopes Mr. Plympton will find room for one more member of his little band , a professional screenwriter .\n9164\tA cheap scam put together by some cynical creeps at Revolution Studios and Imagine Entertainment to make the suckers out there surrender $ 9 and 93 minutes of unrecoverable life .\n9165\tReign of Fire never comes close to recovering from its demented premise , but it does sustain an enjoyable level of ridiculousness .\n9166\tHuman Nature is a goofball movie , in the way that Malkovich was , but it tries too hard .\n9167\tOriginality is sorely lacking .\n9168\tThe plot 's clearly mythic structure may owe more to Disney 's strong sense of formula than to the original story .\n9169\tBut while the highly predictable narrative falls short , Treasure Planet is truly gorgeous to behold .\n9170\tThough there are entertaining and audacious moments , the movie 's wildly careening tone and an extremely flat lead performance do little to salvage this filmmaker 's flailing reputation .\n9171\tRam Dass Fierce Grace moulds itself as an example to up-and-coming documentarians , of the overlooked pitfalls of such an endeavour .\n9172\tLucky Break is perfectly inoffensive and harmless , but it 's also drab and inert .\n9173\tFor a story set at sea , Ghost Ship is pretty landbound , with its leaden acting , dull exposition and telegraphed ` surprises . '\n9174\tThere might be some sort of credible gender-provoking philosophy submerged here , but who the hell cares ?\n9175\tNothing more than a stifling morality tale dressed up in peekaboo clothing .\n9176\tI like my Christmas movies with more elves and snow and less pimps and ho 's .\n9177\tIt all seemed wasted like DeNiro 's once promising career and the once grand Long Beach boardwalk .\n9178\t-LRB- I -RRB- t 's certainly laudable that the movie deals with hot-button issues in a comedic context , but Barbershop is n't as funny as it should be .\n9179\tUnfortunately , a cast of competent performers from movies , television and the theater are cast adrift in various New York City locations with no unifying rhythm or visual style .\n9180\tJust entertaining enough not to hate , too mediocre to love .\n9181\t` Sophisticated ' viewers who refuse to admit that they do n't like it will likely call it ` challenging ' to their fellow sophisticates .\n9182\tEquilibrium the movie , as opposed to the manifesto , is really , really stupid .\n9183\tExcruciatingly unfunny and pitifully unromantic .\n9184\tThe film 's thoroughly recycled plot and tiresome jokes ... drag the movie down .\n9185\tIt does n't offer audiences any way of gripping what its point is , or even its attitude toward its subject .\n9186\tThis kiddie-oriented stinker is so bad that I even caught the gum stuck under my seat trying to sneak out of the theater\n9187\tThough Impostor deviously adopts the guise of a modern motion picture , it too is a bomb .\n9188\tCox offers plenty of glimpses at existing photos , but there are no movies of Nijinsky , so instead the director treats us to an aimless hodgepodge .\n9189\tEvery note rings false .\n9190\tWhen the screenwriter responsible for one of the worst movies of one year directs an equally miserable film the following year , you 'd have a hard time believing it was just coincidence .\n9191\tIt never rises to its clever what-if concept .\n9192\tAdmirably ambitious but self-indulgent .\n9193\tThis story of unrequited love does n't sustain interest beyond the first half-hour .\n9194\tThis angst-ridden territory was covered earlier and much better in Ordinary People .\n9195\tThe entire film is one big excuse to play one lewd scene after another .\n9196\tAbout half of them are funny , a few are sexy and none are useful in telling the story , which is paper-thin and decidedly unoriginal .\n9197\tA big , loud , bang-the-drum bore .\n9198\t-LRB- Less a movie than -RRB- an appalling , odoriferous thing ... so rotten in almost every single facet of production that you 'll want to crawl up your own \\*\\*\\* in embarrassment .\n9199\tThe concept behind Kung Pow : Enter the Fist is hilarious .\n9200\tIt 's too bad nothing else is .\n9201\tHardman is a grating , mannered onscreen presence , which is especially unfortunate in light of the fine work done by most of the rest of her cast .\n9202\tEl Crimen Del Padre Amaro would likely be most effective if used as a tool to rally anti-Catholic protestors .\n9203\tInteresting and thoroughly unfaithful version of Carmen\n9204\tA serious movie with serious ideas .\n9205\tBut seriously , folks , it does n't work .\n9206\tThere 's nothing exactly wrong here , but there 's not nearly enough that 's right .\n9207\tThe action here is unusually tame , the characters are too simplistic to maintain interest , and the plot offers few surprises .\n9208\tI could n't help but feel the wasted potential of this slapstick comedy .\n9209\tWhat Madonna does here ca n't properly be called acting -- more accurately , it 's moving and it 's talking and it 's occasionally gesturing , sometimes all at once .\n9210\t-LRB- A -RRB- painfully flat gross-out comedy ...\n9211\tEven if you 're an Elvis person , you wo n't find anything to get excited about on this DVD .\n9212\tThe movie certainly has its share of clever moments and biting dialogue , but there 's just not much lurking below its abstract surface .\n9213\tIt 's bedeviled by labored writing and slack direction .\n9214\tI 'm sure there 's a teenage boy out there somewhere who 's dying for this kind of entertainment .\n9215\tThe Tuxedo miscalculates badly by forcing the star to play second fiddle to the dull effects that allow the suit to come to life .\n9216\tThe film is a confusing melange of tones and styles , one moment a romantic trifle and the next a turgid drama .\n9217\tObviously , a lot of people wasted a lot of their time -LRB- including mine -RRB- on something very inconsequential .\n9218\tThere 's a little violence and lots of sex in a bid to hold our attention , but it grows monotonous after a while , as do Joan and Philip 's repetitive arguments , schemes and treachery .\n9219\tIt drowns in sap .\n9220\tDeliberately and devotedly constructed , Far from Heaven is too picture postcard perfect , too neat and new pin-like , too obviously a recreation to resonate .\n9221\tIt 's rare that a movie can be as intelligent as this one is in every regard except its storyline ; everything that 's good is ultimately scuttled by a plot that 's just too boring and obvious .\n9222\tI 'm giving it thumbs down due to the endlessly repetitive scenes of embarrassment .\n9223\tThere 's got to be a more graceful way of portraying the devastation of this disease .\n9224\tThe good thing -- the only good thing -- about Extreme Ops is that it 's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list .\n9225\tThe modern-day characters are nowhere near as vivid as the 19th-century ones .\n9226\tBlessed with a searing lead performance by Ryan Gosling -LRB- Murder by Numbers -RRB- , the movie is powerful and provocative .\n9227\tIt 's also built on a faulty premise , one it follows into melodrama and silliness .\n9228\tUneven performances and a spotty script add up to a biting satire that has no teeth .\n9229\tDirector Jay Russell stomps in hobnail boots over Natalie Babbitt 's gentle , endearing 1975 children 's novel .\n9230\tBenigni 's Pinocchio is extremely straight and mind-numbingly stilted , its episodic pacing keeping the film from developing any storytelling flow .\n9231\tThe troubling thing about Clockstoppers is that it does n't make any sense .\n9232\tWith its paint fights , motorized scooter chases and dewy-eyed sentiment , it 's a pretty listless collection of kid-movie clichÃ©s .\n9233\tMostly the film is just hectic and homiletic : two parts exhausting Men in Black mayhem to one part family values .\n9234\tKicks off with an inauspicious premise , mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper .\n9235\tA rote exercise in both animation and storytelling .\n9236\tThe material and the production itself are little more than routine .\n9237\tThe movie 's major and most devastating flaw is its reliance on formula , though , and it 's quite enough to lessen the overall impact the movie could have had .\n9238\tNot even Steven Spielberg has dreamed up such blatant and sickening product placement in a movie .\n9239\tIt 's all surface psychodramatics .\n9240\tThe Mothman Prophecies , which is mostly a bore , seems to exist only for its climactic setpiece .\n9241\tThat frenetic spectacle -LRB- on the TV show -RRB- has usually been leavened by a charm that 's conspicuously missing from the Girls ' big-screen blowout .\n9242\tKitschy , flashy , overlong soap opera .\n9243\tFor all the time we spend with these people , we never really get inside of them .\n9244\tYet another Arnold vehicle that fails to make adequate use of his particular talents .\n9245\tSandra Bullock , despite downplaying her good looks , carries a little too much ai n't - she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff .\n9246\tAn undistinguished attempt to make a classic theater piece cinematic .\n9247\ttoo many scenarios in which the hero might have an opportunity to triumphantly sermonize , and too few that allow us to wonder for ourselves if things will turn out okay .\n9248\tThere is simply not enough of interest onscreen to sustain its seventy-minute running time .\n9249\tA wordy wisp of a comedy .\n9250\tBroomfield 's style of journalism is hardly journalism at all , and even those with an avid interest in the subject will grow impatient .\n9251\t-LRB- Seagal 's -RRB- strenuous attempt at a change in expression could very well clinch him this year 's Razzie .\n9252\tHas the disjointed feel of a bunch of strung-together TV episodes .\n9253\tA series of escapades demonstrating the adage that what is good for the goose is also good for the gander , some of which occasionally amuses but none of which amounts to much of a story .\n9254\tOzpetek offers an AIDS subtext , skims over the realities of gay sex , and presents yet another tired old vision of the gay community as an all-inclusive world where uptight , middle class bores like Antonia can feel good about themselves .\n9255\tA dopey movie clothed in excess layers of hipness .\n9256\tThe Sweetest Thing is expressly for idiots who do n't care what kind of sewage they shovel into their mental gullets to simulate sustenance .\n9257\tSinks so low in a poorly played game of absurd plot twists , idiotic court maneuvers and stupid characters that even Freeman ca n't save it .\n9258\tI realized that no matter how fantastic Reign of Fire looked , its story was making no sense at all .\n9259\tIt made me realize that we really have n't had a good cheesy B-movie playing in theaters since ... well ... since last week 's Reign of Fire .\n9260\tSome movies were made for the big screen , some for the small screen , and some , like Ballistic : Ecks vs. Sever , were made for the palm screen .\n9261\tSC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit , yet it 's geared toward an audience full of masters of both .\n9262\tAfter all the big build-up , the payoff for the audience , as well as the characters , is messy , murky , unsatisfying .\n9263\tSeems content to dog-paddle in the mediocre end of the pool , and it 's a sad , sick sight .\n9264\tIt 's refreshing that someone understands the need for the bad boy ; Diesel , with his brawny frame and cool , composed delivery , fits the bill perfectly .\n9265\tIf all of Eight Legged Freaks was as entertaining as the final hour , I would have no problem giving it an unqualified recommendation .\n9266\tSuffers from a flat script and a low budget .\n9267\tThere are deeply religious and spiritual people in this world who would argue that entering a church , synagogue or temple does n't mean you have to check your brain at the door .\n9268\tThe same should go for movie theaters .\n9269\tSeemingly a vehicle to showcase the Canadian 's inane ramblings , Stealing Harvard is a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore .\n9270\tThe film tries to touch on spousal abuse but veers off course and becomes just another revenge film .\n9271\tAs it stands it 's an opera movie for the buffs .\n9272\tThis franchise has not spawned a single good film .\n9273\tThe crap continues .\n9274\tIts inescapable absurdities are tantamount to insulting the intelligence of anyone who has n't been living under a rock -LRB- since Sept. 11 -RRB- .\n9275\tHigh drama , Disney-style - a wing and a prayer and a hunky has-been pursuing his castle in the sky .\n9276\tLike its script , which nurses plot holes gaping enough to pilot an entire Olympic swim team through , the characters in Swimfan seem motivated by nothing short of dull , brain-deadening hangover .\n9277\tOne big blustery movie where nothing really happens .\n9278\tWhen it comes out on video , then it 's the perfect cure for insomnia .\n9279\tLike a comedian who starts off promisingly but then proceeds to flop , Comedian runs out of steam after a half hour .\n9280\tThe pairing does sound promising in theory ... but their lack of chemistry makes Eddie Murphy and Robert DeNiro in Showtime look like old , familiar vaudeville partners .\n9281\tDirector Chris Eyre is going through the paces again with his usual high melodramatic style of filmmaking .\n9282\tAs it stands , there 's some fine sex onscreen , and some tense arguing , but not a whole lot more .\n9283\tI could just feel the screenwriter at every moment ` Tap , tap , tap , tap , tapping away ' on this screenplay .\n9284\tThe picture does n't know it 's a comedy .\n9285\tA stupid , derivative horror film that substitutes extreme gore for suspense .\n9286\tThe rollerball sequences feel sanitised and stagey .\n9287\tRoman Polanski directs The Pianist like a surgeon mends a broken heart ; very meticulously but without any passion .\n9288\tNothing more than a run-of-the-mill action flick .\n9289\tLan Yu is certainly a serviceable melodrama , but it does n't even try for the greatness that Happy Together shoots for -LRB- and misses -RRB- .\n9290\tThis is an action movie with an action icon who 's been all but decommissioned .\n9291\tEven if it is generally amusing from time to time , I Spy has all the same problems the majority of action comedies have .\n9292\tMuch like Robin Williams , Death to Smoochy has already reached its expiration date .\n9293\tAn annoying orgy of excess and exploitation that has no point and goes nowhere .\n9294\tA tired , unnecessary retread ... a stale copy of a picture that was n't all that great to begin with .\n9295\tAn often unfunny romp .\n9296\tA worthy idea , but the uninspired scripts , acting and direction never rise above the level of an after-school TV special .\n9297\tTwenty years later , Reggio still knows how to make a point with poetic imagery , but his ability to startle has been stifled by the very prevalence of the fast-forward technology that he so stringently takes to task .\n9298\tEar-splitting exercise in formula crash-and-bash action .\n9299\tWe have an actor who is great fun to watch performing in a film that is only mildly diverting .\n9300\tDespite Hoffman 's best efforts , Wilson remains a silent , lumpish cipher ; his encounters reveal nothing about who he is or who he was before .\n9301\tThere 's a thin line between likably old-fashioned and fuddy-duddy , and The Count of Monte Cristo ... never quite settles on either side .\n9302\tThe emotional overload of female angst irreparably drags the film down .\n9303\tSchaefer 's ... determination to inject farcical raunch ... drowns out the promise of the romantic angle .\n9304\tLike Showgirls and Glitter , the most entertaining moments here are unintentional .\n9305\tWhile some of the camera work is interesting , the film 's mid-to-low budget is betrayed by the surprisingly shoddy makeup work .\n9306\tThe origin story is well told , and the characters will not disappoint anyone who values the original comic books .\n9307\tIt 's in the action scenes that things fall apart .\n9308\tImpostor is a step down for director Gary Fleder .\n9309\tSeagal , who looks more like Danny Aiello these days , mumbles his way through the movie .\n9310\tThe movie is a negligible work of manipulation , an exploitation piece doing its usual worst to guilt-trip parents .\n9311\tLacks dramatic punch and depth .\n9312\tThere are moments of real pleasure to be found in Sara Sugarman 's whimsical comedy Very Annie-Mary but not enough to sustain the film .\n9313\tI can analyze this movie in three words : Thumbs Friggin ' Down .\n9314\tSadly , ` Garth ' has n't progressed as nicely as ` Wayne . '\n9315\tMake like the title and dodge this one .\n9316\tThis is not one of the movies you 'd want to watch if you only had a week to live .\n9317\tThe first hour is tedious though Ford and Neeson capably hold our interest , but its just not a thrilling movie .\n9318\tHere 's a case of two actors who do everything humanly possible to create characters who are sweet and believable , and are defeated by a screenplay that forces them into bizarre , implausible behavior .\n9319\tIt 's obvious -LRB- Je-Gyu is -RRB- trying for poetry ; what he gets instead has all the lyricism of a limerick scrawled in a public restroom .\n9320\tSweet Home Alabama is one dumb movie , but its stupidity is so relentlessly harmless that it almost wins you over in the end .\n9321\t-LRB- Green is -RRB- the comedy equivalent of Saddam Hussein , and I 'm just about ready to go to the U.N. and ask permission for a preemptive strike .\n9322\tNo amount of good acting is enough to save Oleander 's uninspired story .\n9323\tA vile , incoherent mess ... a scummy ripoff of David Cronenberg 's brilliant ` Videodrome . '\n9324\tMurphy and Wilson actually make a pretty good team ... but the project surrounding them is distressingly rote .\n9325\tDespite its raucous intent , XXX is as conventional as a Nike ad and as rebellious as spring break .\n9326\tThink The Lion King redone for horses , with fewer deliberate laughs , more inadvertent ones and stunningly trite songs by Bryan Adams , the world 's most generic rock star .\n9327\tIt is one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective .\n9328\tIt 's tough being a black man in America , especially when the Man has taken away your car , your work-hours and denied you health insurance .\n9329\tA small fortune in salaries and stunt cars might have been saved if the director , Tom Dey , had spliced together bits and pieces of Midnight Run and 48 Hours -LRB- and , for that matter , Shrek -RRB- .\n9330\tAn amateurish , quasi-improvised acting exercise shot on ugly digital video .\n9331\tThe holes in this film remain agape -- holes punched through by an inconsistent , meandering , and sometimes dry plot .\n9332\tWould Benigni 's Italian Pinocchio have been any easier to sit through than this hastily dubbed disaster ?\n9333\tUnofficially , National Lampoon 's Van Wilder is Son of Animal House .\n9334\tOfficially , it is twice as bestial but half as funny .\n9335\tThis is a fragmented film , once a good idea that was followed by the bad idea to turn it into a movie .\n9336\tMindless yet impressively lean spinoff of last summer 's bloated effects fest The Mummy Returns .\n9337\tHalfway through the movie , the humor dwindles .\n9338\tIt 's replaced by some dramatic scenes that are jarring and deeply out of place in what could have -LRB- and probably should have -RRB- been a lighthearted comedy .\n9339\twill be far more interesting to the Soderbergh faithful than it will be to the casual moviegoer who might be lured in by Julia Roberts ...\n9340\tAuthentic , and at times endearing , humorous , spooky , educational , but at other times as bland as a block of snow .\n9341\tControl-Alt-Delete Simone as quickly as possible\n9342\tFollows the original film virtually scene for scene and yet manages to bleed it almost completely dry of humor , verve and fun .\n9343\tThe filmmaker ascends , literally , to the Olympus of the art world , but he would have done well to end this flawed , dazzling series with the raising of something other than his own cremaster .\n9344\tThe screenplay comes across , rather unintentionally , as Hip-Hop Scooby-Doo .\n9345\tHas lost some of the dramatic conviction that underlies the best of comedies ...\n9346\tVaguely interesting , but it 's just too too much .\n9347\t... no charm , no laughs , no fun , no reason to watch .\n9348\tA generic family comedy unlikely to be appreciated by anyone outside the under-10 set .\n9349\tKung Pow seems like some futile concoction that was developed hastily after Oedekerk and his fellow moviemakers got through crashing a college keg party .\n9350\tKurys seems intimidated by both her subject matter and the period trappings of this debut venture into the heritage business .\n9351\tThe film virtually chokes on its own self-consciousness .\n9352\tA manipulative feminist empowerment tale thinly posing as a serious drama about spousal abuse .\n9353\tEverything in Maid in Manhattan is exceedingly pleasant , designed not to offend .\n9354\tIt goes down easy , leaving virtually no aftertaste .\n9355\tA profoundly stupid affair , populating its hackneyed and meanspirited storyline with cardboard characters and performers who value cash above credibility .\n9356\t... pays tribute to heroes the way Julia Roberts hands out awards -- with phony humility barely camouflaging grotesque narcissism .\n9357\tTime stands still in more ways that one in Clockstoppers , a sci-fi thriller as lazy as it is interminable .\n9358\tAs a director , Eastwood is off his game -- there 's no real sense of suspense , and none of the plot ` surprises ' are really surprising .\n9359\tEccentric enough to stave off doldrums , Caruso 's self-conscious debut is also eminently forgettable .\n9360\tTo work , love stories require the full emotional involvement and support of a viewer .\n9361\tThat is made almost impossible by events that set the plot in motion .\n9362\tAlthough Barbershop boasts some of today 's hottest and hippest acts from the world of television , music and stand-up comedy , this movie strangely enough has the outdated swagger of a shameless ` 70s blaxploitation shuck-and-jive sitcom .\n9363\tA puzzle whose pieces do not fit .\n9364\tSome are fascinating and others are not , and in the end , it is almost a good movie .\n9365\tWould that Greengrass had gone a tad less for grit and a lot more for intelligibility .\n9366\tThe good is very , very good ... The rest runs from mildly unimpressive to despairingly awful .\n9367\t` Butterfingered ' is the word for the big-fisted direction of Jez Butterworth , who manages to blast even the smallest sensitivities from the romance with his clamorous approach .\n9368\tBe forewarned , if you 're depressed about anything before watching this film , you may just end up trying to drown yourself in a lake afterwards .\n9369\ta terrible adaptation of a play that only ever walked the delicate tightrope between farcical and loathsome .\n9370\tIn the wrong hands , i.e. Peploe 's , it 's simply unbearable\n9371\tAn inexperienced director , Mehta has much to learn .\n9372\tA limp Eddie Murphy vehicle that even he seems embarrassed to be part of .\n9373\tSo muddled , repetitive and ragged that it says far less about the horrifying historical reality than about the filmmaker 's characteristic style .\n9374\tA gushy episode of `` M \\* A \\* S \\* H '' only this time from an Asian perspective .\n9375\t`` Looking For Leonard '' just seems to kinda sit in neutral , hoping for a stiff wind to blow it uphill or something .\n9376\tNothing more than four or five mild chuckles surrounded by 86 minutes of overly-familiar and poorly-constructed comedy .\n9377\tDefinitely in the guilty pleasure B-movie category , Reign of Fire is so incredibly inane that it is laughingly enjoyable .\n9378\tGood-looking but relentlessly lowbrow outing plays like Clueless Does South Fork .\n9379\tentertaining enough , but nothing new\n9380\t... one resurrection too many .\n9381\tThis is a film about the irksome , tiresome nature of complacency that remains utterly satisfied to remain the same throughout .\n9382\tEven as the hero of the story rediscovers his passion in life , the mood remains oddly detached .\n9383\tDeMeo is not without talent ; he just needs better material .\n9384\tIn spite of featuring a script credited to no fewer than five writers , apparently nobody here bothered to check it twice .\n9385\tNo one involved , save Dash , shows the slightest aptitude for acting , and the script , credited to director Abdul Malik Abbott and Ernest ` Tron ' Anderson , seems entirely improvised .\n9386\tInitially gripping , eventually cloying POW drama .\n9387\tA timid , soggy near miss .\n9388\tWorks better in the conception than it does in the execution ... winds up seeming just a little too clever .\n9389\tTo the vast majority of more casual filmgoers , it will probably be a talky bore .\n9390\tObservant intelligence constantly vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom .\n9391\tThis version of H.G. Wells ' Time Machine was directed by H.G. Wells ' great-grandson .\n9392\tThey should have found Orson Welles ' great-grandson .\n9393\tShunji Iwai 's All About Lily Chou Chou is a beautifully shot , but ultimately flawed film about growing up in Japan .\n9394\tWith more character development this might have been an eerie thriller ; with better payoffs , it could have been a thinking man 's monster movie .\n9395\tThriller directorial debut for Traffic scribe Gaghan has all the right parts , but the pieces do n't quite fit together .\n9396\t... would be a total loss if not for two supporting performances taking place at the movie 's edges .\n9397\tThere 's not a single jump-in-your-seat moment and believe it or not , Jason actually takes a backseat in his own film to special effects .\n9398\tGoldbacher draws on an elegant visual sense and a talent for easy , seductive pacing ... but she and writing partner Laurence Coriat do n't manage an equally assured narrative coinage .\n9399\tThough Harris is affecting at times , he can not overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities .\n9400\tThe documentary is much too conventional -- lots of boring talking heads , etc. -- to do the subject matter justice .\n9401\tThe movie itself appears to be running on hypertime in reverse as the truly funny bits get further and further apart .\n9402\tThis is not a Jackie Chan movie .\n9403\tIt 's just a movie that happens to have Jackie Chan in it .\n9404\tAnd that makes all the difference .\n9405\tFar too clever by half , Howard 's film is really a series of strung-together moments , with all the spaces in between filled with fantasies , daydreams , memories and one fantastic visual trope after another .\n9406\tThe problem with movies about angels is they have a tendency to slip into hokum .\n9407\tA Rumor of Angels does n't just slip -- it avalanches into forced fuzziness .\n9408\tNo big whoop , nothing new to see , zero thrills , too many flashbacks and a choppy ending make for a bad film .\n9409\tI do n't think this movie loves women at all .\n9410\tShankman ... and screenwriter Karen Janszen bungle their way through the narrative as if it were a series of Bible parables and not an actual story .\n9411\tA negligible British comedy .\n9412\tFails to convince the audience that these brats will ever be anything more than losers .\n9413\tSlack and uninspired , and peopled mainly by characters so unsympathetic that you 're left with a sour taste in your mouth .\n9414\tSkip this turd and pick your nose instead because you 're sure to get more out of the latter experience .\n9415\tWhat can one say about a balding 50-year-old actor playing an innocent boy carved from a log ?\n9416\tTrailer trash cinema so uncool the only thing missing is the `` Gadzooks ! ''\n9417\tHer film is like a beautiful food entrÃ©e that is n't heated properly , so that it ends up a bit cold and relatively flavorless .\n9418\tLike the world of his film , Hartley created a monster but did n't know how to handle it .\n9419\tNo new plot conceptions or environmental changes , just different bodies for sharp objects to rip through .\n9420\tNeeds more impressionistic cinematography and exhilarating point-of-view shots and fewer slow-motion ` grandeur ' shots and quick-cut edits that often detract from the athleticism .\n9421\tIn the end , there is n't much to it .\n9422\tA waste of fearless purity in the acting craft .\n9423\tThe film is ultimately about as inspiring as a Hallmark card .\n9424\tAnyone not into high-tech splatterfests is advised to take the warning literally , and log on to something more user-friendly .\n9425\tDisreputable doings and exquisite trappings are dampened by a lackluster script and substandard performances .\n9426\tYou could easily mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time .\n9427\tDirectors Harry Gantz and Joe Gantz have chosen a fascinating subject matter , but the couples exposing themselves are n't all that interesting .\n9428\tYet another entry in the sentimental oh-those-wacky-Brits genre that was ushered in by The Full Monty and is still straining to produce another smash hit .\n9429\tfor those for whom the name Woody Allen was once a guarantee of something fresh , sometimes funny , and usually genuinely worthwhile , Hollywood Ending is a depressing experience\n9430\tFemme Fatale offers nothing more than a bait-and-switch that is beyond playing fair with the audience .\n9431\tAre we dealing with dreams , visions or being told what actually happened as if it were the third ending of Clue ?\n9432\tIt could have been something special , but two things drag it down to mediocrity -- director Clare Peploe 's misunderstanding of Marivaux 's rhythms , and Mira Sorvino 's limitations as a classical actress .\n9433\tFluffy neo-noir hiding behind cutesy film references .\n9434\tImagine Susan Sontag falling in love with Howard Stern .\n9435\tLike being trapped inside a huge video game , where exciting , inane images keep popping past your head and the same illogical things keep happening over and over again .\n9436\tShould have been worth cheering as a breakthrough but is devoid of wit and humor .\n9437\tThe best thing about the movie is its personable , amusing cast .\n9438\tThese guys seem great to knock back a beer with but they 're simply not funny performers .\n9439\tEverything was as superficial as the forced New Jersey lowbrow accent Uma had .\n9440\tDirector David Fincher and writer David Koepp ca n't sustain it .\n9441\tFinally coming down off of Miramax 's deep shelves after a couple of aborted attempts , Waking Up in Reno makes a strong case for letting sleeping dogs lie .\n9442\tA movie that feels like the pilot episode of a new teen-targeted action TV series .\n9443\tOne of the most highly-praised disappointments I 've had the misfortune to watch in quite some time .\n9444\tThe animation and backdrops are lush and inventive , yet Return to Neverland never manages to take us to that elusive , lovely place where we suspend our disbelief .\n9445\tDirector Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini have tried hard to modernize and reconceptualize things , but the barriers finally prove to be too great .\n9446\tStrong filmmaking requires a clear sense of purpose , and in that oh-so-important category , The Four Feathers comes up short .\n9447\tThe thought of watching this film with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes -LRB- of which they 'll get plenty -RRB- fills me with revulsion .\n9448\tDevolves into the derivative , leaning on badly-rendered CGI effects .\n9449\tAnyone who gets chills from movies with giant plot holes will find plenty to shake and shiver about in ` The Ring . '\n9450\tA grand fart coming from a director beginning to resemble someone 's crazy French grandfather .\n9451\tThe script is a disaster , with cloying messages and irksome characters .\n9452\tboth overstuffed and undernourished ... The film ca n't be called a solid success , although there 's plenty of evidence here to indicate Clooney might have better luck next time .\n9453\tPlods along , minus the twisted humor and eye-popping visuals that have made Miike ... a cult hero .\n9454\tHollywood has taken quite a nosedive from Alfred Hitchcock 's imaginative flight to Shyamalan 's self-important summer fluff .\n9455\tThe film 's maudlin focus on the young woman 's infirmity and her naive dreams play like the worst kind of Hollywood heart-string plucking .\n9456\tI firmly believe that a good video game movie is going to show up soon .\n9457\tI also believe that Resident Evil is not it .\n9458\tIt has the air of a surprisingly juvenile lark , a pop-influenced prank whose charms are immediately apparent and wear thin with repetition .\n9459\tThe plot meanders from gripping to plodding and back .\n9460\tThis is cruel , misanthropic stuff with only weak claims to surrealism and black comedy .\n9461\tNo amount of nostalgia for Carvey 's glory days can disguise the fact that the new film is a lame kiddie flick and that Carvey 's considerable talents are wasted in it .\n9462\tBest described as I Know What You Did Last Winter .\n9463\t-LRB- Taylor -RRB- takes us on a ride that 's consistently surprising , easy to watch -- but , oh , so dumb .\n9464\tIt 's difficult for a longtime admirer of his work to not be swept up in Invincible and overlook its drawbacks .\n9465\tLazily directed by Charles Stone III ... from a leaden script by Matthew Cirulnick and novelist Thulani Davis .\n9466\tThough Jones and Snipes are enthralling , the movie bogs down in rhetoric and clichÃ© .\n9467\tThe most remarkable -LRB- and frustrating -RRB- thing about World Traveler , which opens today in Manhattan , is that its protagonist , after being an object of intense scrutiny for 104 minutes , remains a complete blank .\n9468\tAn artsploitation movie with too much exploitation and too little art .\n9469\tThe pacing is often way off and there are too many bona fide groaners among too few laughs .\n9470\tWith lines that feel like long soliloquies -- even as they are being framed in conversation -- Max is static , stilted .\n9471\tBarely manages for but a few seconds over its seemingly eternal running time to pique your interest , your imagination , your empathy or anything , really , save your disgust and your indifference .\n9472\tWriter\\/director Burr Steers emphasizes the Q in Quirky , with mixed results .\n9473\tOne senses in World Traveler and in his earlier film that Freundlich bears a grievous but obscure complaint against fathers , and circles it obsessively , without making contact .\n9474\tIn between the icy stunts , the actors spout hilarious dialogue about following your dream and ` just letting the mountain tell you what to do . '\n9475\tThe obligatory break-ups and hook-ups do n't seem to have much emotional impact on the characters .\n9476\tMake no mistake , ivans xtc .\n9477\tis a mess .\n9478\tHypnotically dull , relentlessly downbeat , laughably predictable wail pitched to the cadence of a depressed fifteen-year-old 's suicidal poetry .\n9479\tThe concept is a hoot .\n9480\tThe trailer is a riot .\n9481\tThe movie is a dud .\n9482\tIt 's a boring movie about a boring man , made watchable by a bravura performance from a consummate actor incapable of being boring .\n9483\tBecause the intelligence level of the characters must be low , very low , very very low , for the masquerade to work , the movie contains no wit , only labored gags .\n9484\tIt 's hard to imagine another director ever making his wife look so bad in a major movie .\n9485\tSome stunning visuals -- and some staggeringly boring cinema .\n9486\tThese characters become wearisome .\n9487\tA hit - and-miss affair , consistently amusing but not as outrageous or funny as Cho may have intended or as imaginative as one might have hoped .\n9488\tThis may be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar .\n9489\tKim Ki-Deok seems to have in mind an -LRB- emotionally at least -RRB- adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested .\n9490\tA sterling film - a cross between Boys Do n't Cry , Deliverance , and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard , but that film is yet to be made .\n9491\tAfter sitting through this sloppy , made-for-movie comedy special , it makes me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work .\n9492\tContrived pastiche of caper clichÃ©s .\n9493\tMany shallower movies these days seem too long , but this one is egregiously short .\n9494\tJust a Kiss wants desperately to come off as a fanciful film about the typical problems of average people .\n9495\tBut it is set in a world that is very , very far from the one most of us inhabit .\n9496\tThe most ill-conceived animated comedy since the 1991 dog Rover Dangerfield .\n9497\tLike shave ice without the topping , this cinematic snow cone is as innocuous as it is flavorless .\n9498\tDespite its sincere acting , Signs is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype .\n9499\tYet another movie which presumes that high school social groups are at war , let alone conscious of each other 's existence .\n9500\tLoud , chaotic and largely unfunny .\n9501\tI ca n't remember the last time I saw an audience laugh so much during a movie , but there 's only one problem ... it 's supposed to be a drama .\n9502\tQualities that were once amusing are becoming irritating .\n9503\tWell , Jason 's gone to Manhattan and Hell , I guess a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels -LRB- hey , do n't shoot the messenger -RRB- .\n9504\tDonovan ... squanders his main asset , Jackie Chan , and fumbles the vital action sequences .\n9505\tThere is no psychology here , and no real narrative logic -- just a series of carefully choreographed atrocities , which become strangely impersonal and abstract .\n9506\tBread , My Sweet has so many flaws it would be easy for critics to shred it .\n9507\tIt may even fall into the category of Films You Love to Hate .\n9508\tI admit it , I hate to like it .\n9509\tFrida is certainly no disaster , but neither is it the Kahlo movie Frida fans have been looking for .\n9510\tLeaks treacle from every pore .\n9511\tThe characters are so generic and the plot so bland that even as rogue CIA assassins working for Chris Cooper 's agency boss close in on the resourceful amnesiac , we do n't feel much for Damon\\/Bourne or his predicament .\n9512\tKapur weighs down the tale with bogus profundities .\n9513\tWhile we want MacDowell 's character to retrieve her husband , we have to ask whether her personal odyssey trumps the carnage that claims so many lives around her .\n9514\tBlue Crush is as predictable as the tides .\n9515\t... The movie feels stitched together from stock situations and characters from other movies .\n9516\tIf you enjoy being rewarded by a script that assumes you are n't very bright , then Blood Work is for you .\n9517\tTrouble Every Day is a success in some sense , but it 's hard to like a film so cold and dead .\n9518\tThe film 's stagecrafts are intimate and therefore bolder than the otherwise calculated artifice that defines and overwhelms the film 's production design .\n9519\tA well-intentioned effort that 's still too burdened by the actor 's offbeat sensibilities for the earnest emotional core to emerge with any degree of accessibility .\n9520\tA family-friendly fantasy that ends up doing very little with its imaginative premise .\n9521\tA plodding look at the French Revolution through the eyes of aristocrats .\n9522\tTom Shadyac has learned a bit more craft since directing Adams , but he still lingers over every point until the slowest viewer grasps it .\n9523\tUnspools like a highbrow , low-key , 102-minute infomercial , blending entrepreneurial zeal with the testimony of satisfied customers .\n9524\tA fast-paced , glitzy but extremely silly piece .\n9525\tAny reasonably creative eighth-grader could have written a more credible script , though with the same number of continuity errors .\n9526\t... while the humor aspects of ` Jason X ' were far more entertaining than I had expected , everything else about the film tanks .\n9527\tYour taste for Jonah - A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit .\n9528\tLike an Afterschool Special with costumes by Gianni Versace , Mad Love looks better than it feels .\n9529\tWhile certain cues , like the happy music , suggest that this movie is supposed to warm our hearts , Jeong-Hyang Lee 's film is just as likely to blacken that organ with cold vengefulness .\n9530\tThe script , the gags , the characters are all direct-to-video stuff , and that 's where this film should have remained .\n9531\tA thriller without thrills and a mystery devoid of urgent questions .\n9532\tA collage of clichÃ©s and a dim echo of allusions to other films .\n9533\tThe film is hampered by its predictable plot and paper-thin supporting characters .\n9534\tJonah is only so-so ... the addition of a biblical message will either improve the film for you , or it will lessen it .\n9535\tAn excruciating demonstration of the unsalvageability of a movie saddled with an amateurish screenplay .\n9536\tHow many more times will indie filmmakers subject us to boring , self-important stories of how horrible we are to ourselves and each other ?\n9537\tThere are some laughs in this movie , but Williams ' anarchy gets tiresome , the satire is weak .\n9538\tAs steamy as last week 's pork dumplings .\n9539\tThe somber pacing and lack of dramatic fireworks make Green Dragon seem more like medicine than entertainment .\n9540\tThe filmmakers needed more emphasis on the storytelling and less on the glamorous machine that thrusts the audience into a future they wo n't much care about .\n9541\tAnother wholly unnecessary addition to the growing , moldering pile of , well , extreme stunt pictures .\n9542\tThis strenuously unfunny Showtime deserves the hook .\n9543\tThe whole thing 's fairly lame , making it par for the course for Disney sequels .\n9544\t... its solemn pretension prevents us from sharing the awe in which it holds itself .\n9545\t... the good and different idea -LRB- of middle-aged romance -RRB- is not handled well and , except for the fine star performances , there is little else to recommend `` Never Again . ''\n9546\tIf Disney 's Cinderella proved that ' a dream is a wish your heart makes , ' then Cinderella II proves that a nightmare is a wish a studio 's wallet makes .\n9547\tFeatures nonsensical and laughable plotting , wooden performances , ineptly directed action sequences and some of the worst dialogue in recent memory .\n9548\tWith Rare Birds , as with The Shipping News before it , an attempt is made to transplant a Hollywood star into Newfoundland 's wild soil -- and The Rock once again resists the intrusion .\n9549\tNothing about this movie works .\n9550\tIf the idea of the white man arriving on foreign shores to show wary natives the true light is abhorrent to you , the simplistic Heaven will quite likely be more like hell .\n9551\tA spooky yarn of demonic doings on the high seas that works better the less the brain is engaged .\n9552\tNone of Birthday Girl 's calculated events take us by surprise ...\n9553\tAre monsters born , or made ?\n9554\tLisa Rinzler 's cinematography may be lovely , but Love Liza 's tale itself virtually collapses into an inhalant blackout , maintaining consciousness just long enough to achieve callow pretension .\n9555\tThe narrator and the other characters try to convince us that acting transfigures Esther , but she 's never seen speaking on stage ; one feels cheated , and Esther seems to remain an unchanged dullard .\n9556\tIt 's exactly the kind of movie Toback 's detractors always accuse him of making .\n9557\tWith the dog days of August upon us , think of this dog of a movie as the cinematic equivalent of high humidity .\n9558\tLess about Shakespeare than the spawn of fools who saw Quentin Tarantino 's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations .\n9559\tThe film is like sitting in a downtown cafÃ© , overhearing a bunch of typical late-twenty-somethings natter on about nothing , and desperately wishing you could change tables .\n9560\tThis rather unfocused , all-over-the-map movie would be a lot better if it pared down its plots and characters to a few rather than dozens ... or if it were subtler ... or if it had a sense of humor .\n9561\tTakes a clunky TV-movie approach to detailing a chapter in the life of the celebrated Irish playwright , poet and drinker .\n9562\tNot only does the thoroughly formulaic film represent totally exemplify middle-of-the-road mainstream , it also represents glossy Hollywood at its laziest .\n9563\tA shame that Stealing Harvard is too busy getting in its own way to be anything but frustrating , boring , and forgettable .\n9564\tNearly every attempt at humor here is DOA .\n9565\tCollapses under its own meager weight .\n9566\tThis is mild-mannered , been-there material given a pedestrian spin by a director who needed a touch of the flamboyant , the outrageous .\n9567\tIf you adored The Full Monty so resoundingly that you 're dying to see the same old thing in a tired old setting , then this should keep you reasonably entertained .\n9568\tTechnically and artistically inept .\n9569\tThose who are only mildly curious , I fear , will be put to sleep or bewildered by the artsy and often pointless visuals .\n9570\tThough Tom Shadyac 's film kicks off spookily enough , around the halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance .\n9571\tA long , dull procession of despair , set to cello music culled from a minimalist funeral .\n9572\tCall me a cold-hearted curmudgeon for not being able to enjoy a mindless action movie , but I believe a movie can be mindless without being the peak of all things insipid .\n9573\tDeath might be a release .\n9574\t`` -LRB- Hopkins -RRB- does n't so much phone in his performance as fax it .\n9575\tNo , even that 's too committed .\n9576\tHe gets his secretary to fax it . ''\n9577\tSodden and glum , even in those moments where it 's supposed to feel funny and light .\n9578\tPriggish , lethargically paced parable of renewal .\n9579\tA beautifully shot but dull and ankle-deep ` epic . '\n9580\tEven with its $ 50-million US budget , Pinocchio never quite achieves the feel of a fanciful motion picture .\n9581\tThis is a third-person story now , told by Hollywood , and much more ordinary for it .\n9582\tThe filmmakers know how to please the eye , but it is not always the prettiest pictures that tell the best story .\n9583\tWritten , flatly , by David Kendall and directed , barely , by There 's Something About Mary co-writer Ed Decter .\n9584\tThe characters are interesting and the relationship between Yosuke and Saeko is worth watching as it develops , but there 's not enough to the story to fill two hours .\n9585\tVery well made , but does n't generate a lot of tension .\n9586\tLike being invited to a classy dinner soiree and not knowing anyone .\n9587\tYou leave the same way you came -- a few tasty morsels under your belt , but no new friends .\n9588\tIt 's depressing to see how far Herzog has fallen .\n9589\tThe question hanging over The Time Machine is not , as the main character suggests , ` what if ? '\n9590\tbut rather , ` How can you charge money for this ? '\n9591\tMillions of dollars heaped upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry .\n9592\t`` Freaky Friday , '' it 's not .\n9593\tPerhaps a better celebration of these unfairly dismissed heroes would be a film that is n't this painfully forced , false and fabricated .\n9594\tAlthough no pastry is violated , this nasty comedy pokes fun at the same easy targets as other rowdy raunch-fests -- farts , boobs , unmentionables -- without much success .\n9595\tIn this film , Aussie David Caesar channels the not-quite-dead career of Guy Ritchie .\n9596\tMaybe you 'll be lucky , and there 'll be a power outage during your screening so you can get your money back .\n9597\tThe characterizations and dialogue lack depth or complexity , with the ironic exception of Scooter .\n9598\tThis film was made by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers .\n9599\tFor the rest of us , sitting through Dahmer 's two hours amounts to little more than punishment .\n9600\tNarc can only remind us of brilliant crime dramas without becoming one itself .\n9601\tSomewhere inside the mess that is World Traveler , there is a mediocre movie trying to get out .\n9602\tA tedious parable about honesty and good sportsmanship .\n9603\tIts strengths and weaknesses play off each other virtually to a stand-off , with the unfortunate trump card being the dreary mid-section of the film .\n9604\tAn artful yet depressing film that makes a melodramatic mountain out of the molehill of a missing bike .\n9605\tThe movie 's ultimate point -- that everyone should be themselves -- is trite , but the screenwriter and director Michel Gondry restate it to the point of ridiculousness .\n9606\tA glossy knock-off of a B-movie revenge flick .\n9607\t... expands the horizons of boredom to the point of collapse , turning into a black hole of dullness , from which no interesting concept can escape .\n9608\tIt 's just plain boring .\n9609\tSad nonsense , this .\n9610\tBut not without cheesy fun factor .\n9611\tOne of those decades-spanning historical epics that strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time .\n9612\tReally dumb but occasionally really funny .\n9613\tThe movie wavers between Hallmark card sentimentality and goofy , life-affirming moments straight out of a cellular phone commercial .\n9614\tThe director 's many dodges and turns add up to little more than a screenful of gamesmanship that 's low on both suspense and payoff .\n9615\tWhile the transgressive trappings -LRB- especially the frank sex scenes -RRB- ensure that the film is never dull , Rodrigues 's beast-within metaphor is ultimately rather silly and overwrought , making the ambiguous ending seem goofy rather than provocative .\n9616\tThe satire is unfocused , while the story goes nowhere .\n9617\tThey threw loads of money at an idea that should 've been so much more even if it was only made for teenage boys and wrestling fans .\n9618\tIt 's mired in a shabby script that piles layer upon layer of Action Man clichÃ© atop wooden dialogue and a shifting tone that falls far short of the peculiarly moral amorality of -LRB- Woo 's -RRB- best work .\n9619\tReyes ' directorial debut has good things to offer , but ultimately it 's undone by a sloppy script\n9620\tIf you 're over 25 , have an IQ over 90 , and have a driver 's license , you should be able to find better entertainment .\n9621\tThe darker elements of misogyny and unprovoked violence suffocate the illumination created by the two daughters and the sparse instances of humor meant to shine through the gloomy film noir veil .\n9622\t... the picture 's cleverness is ironically muted by the very people who are intended to make it shine .\n9623\tNever does `` Lilo & Stitch '' reach the emotion or timelessness of Disney 's great past , or even that of more recent successes such as `` Mulan '' or `` Tarzan . ''\n9624\tOne of those so-so films that could have been much better .\n9625\tCrossroads feels like a teenybopper Ed Wood film , replete with the pubescent scandalous innuendo and the high-strung but flaccid drama .\n9626\tFails to satisfactorily exploit its gender politics , genre thrills or inherent humor .\n9627\tInterview With the Assassin is structured less as a documentary and more as a found relic , and as such the film has a difficult time shaking its Blair Witch Project real-time roots .\n9628\tCacoyannis ' vision is far less mature , interpreting the play as a call for pity and sympathy for anachronistic phantasms haunting the imagined glory of their own pasts .\n9629\tIt has more in common with a fireworks display than a movie , which normally is expected to have characters and a storyline .\n9630\tIt appears to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept .\n9631\tLess a heartfelt appeal for the handicapped than a nice Belgian waffle .\n9632\tIt 's not helpful to listen to extremist name-calling , regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter .\n9633\tAbandon spends 90 minutes trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed .\n9634\tThe only problem is that , by the end , no one in the audience or the film seems to really care .\n9635\tNo Such Thing is sort of a minimalist Beauty and the Beast , but in this case the Beast should definitely get top billing .\n9636\tRobert John Burke as The Monster horns in and steals the show .\n9637\tDue to stodgy , soap opera-ish dialogue , the rest of the cast comes across as stick figures reading lines from a TelePrompTer .\n9638\t-LRB- T -RRB- he film is never sure to make a clear point -- even if it seeks to rely on an ambiguous presentation .\n9639\tWhile it may not add up to the sum of its parts , Holofcener 's film offers just enough insight to keep it from being simpleminded , and the ensemble cast is engaging enough to keep you from shifting in your chair too often .\n9640\tAn overwrought Taiwanese soaper about three people and their mixed-up relationship .\n9641\tNobody seems to have cared much about any aspect of it , from its cheesy screenplay to the grayish quality of its lighting to its last-minute , haphazard theatrical release .\n9642\tA thoroughly awful movie -- dumb , narratively chaotic , visually sloppy ... a weird amalgam of ` The Thing ' and a geriatric ` Scream . '\n9643\t... another example of how Sandler is losing his touch .\n9644\tNothing sticks , really , except a lingering creepiness one feels from being dragged through a sad , sordid universe of guns , drugs , avarice and damaged dreams .\n9645\tWhat goes on for the 110 minutes of `` Panic Room '' is a battle of witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals .\n9646\tThe plot 's contrivances are uncomfortably strained .\n9647\tGuilty of the worst sin of attributable to a movie like this : it 's not scary in the slightest .\n9648\tSchnieder bounces around with limp wrists , wearing tight tummy tops and hip huggers , twirling his hair on his finger and assuming that 's enough to sustain laughs ...\n9649\tIts simplicity puts an exclamation point on the fact that this is n't something to be taken seriously , but it also wrecks any chance of the movie rising above similar fare .\n9650\tBy the final whistle you 're convinced that this Mean Machine was a decent TV outing that just does n't have big screen magic .\n9651\tTo say that this vapid vehicle is downright doltish and uneventful is just as obvious as telling a country skunk that he has severe body odor .\n9652\tA film of empty , fetishistic violence in which murder is casual and fun .\n9653\tPretend it 's a werewolf itself by avoiding eye contact and walking slowly away .\n9654\tIt 's fun , but it 's a real howler .\n9655\tSome fine acting , but ultimately a movie with no reason for being .\n9656\tIt 's difficult to feel anything much while watching this movie , beyond mild disturbance or detached pleasure at the acting .\n9657\tA waterlogged version of ` Fatal Attraction ' for the teeny-bopper set ... a sad , soggy potboiler that wastes the talents of its attractive young leads .\n9658\tIt tells its story in a flat manner and leaves you with the impression that you should have gotten more out of it than you did .\n9659\tSweet gentle Jesus , did the screenwriters just do a cut-and-paste of every bad action-movie line in history ?\n9660\tIt 's not the worst comedy of the year , but it certainly wo n't win any honors .\n9661\tThis is for the most part a useless movie , even with a great director at the helm .\n9662\tA loud , witless mess that has none of the charm and little of the intrigue from the TV series .\n9663\tEven on its own ludicrous terms , The Sum of All Fears generates little narrative momentum , and invites unflattering comparisons to other installments in the Ryan series .\n9664\tThough it inspires some -LRB- out-of-field -RRB- creative thought , the film is -- to its own detriment -- much more a cinematic collage than a polemical tract .\n9665\tAs predictable as the outcome of a Globetrotters-Generals game , Juwanna Mann is even more ludicrous than you 'd expect from the guy-in-a-dress genre , and a personal low for everyone involved .\n9666\tSinks into the usual cafeteria goulash of fart jokes , masturbation jokes , and racist Japanese jokes .\n9667\tWhere Tom Green stages his gags as assaults on America 's knee-jerk moral sanctimony , Jackass lacks aspirations of social upheaval .\n9668\tMore of an intriguing curiosity than a gripping thriller .\n9669\tThe April 2002 instalment of the American War for Independence , complete with loads of CGI and bushels of violence , but not a drop of human blood .\n9670\tContains all the substance of a Twinkie -- easy to swallow , but scarcely nourishing .\n9671\tReturn to Neverland manages to straddle the line between another classic for the company and just another run-of-the-mill Disney sequel intended for the home video market .\n9672\tRarely does a film so graceless and devoid of merit as this one come along .\n9673\tIt 's a thin notion , repetitively stretched out to feature length , awash in self-consciously flashy camera effects , droning house music and flat , flat dialogue .\n9674\tOn a certain base level , Blue Crush delivers what it promises , just not well enough to recommend it .\n9675\tThe colorful Masseur wastes its time on mood rather than riding with the inherent absurdity of Ganesh 's rise up the social ladder .\n9676\t... an incredibly heavy-handed , manipulative dud that feels all too familiar .\n9677\tWimps out by going for that PG-13 rating , so the more graphic violence is mostly off-screen and the sexuality is muted .\n9678\tTrapped presents a frightening and compelling ` What if ? '\n9679\tscenario that will give most parents pause ... Then , something terrible happens .\n9680\tMadonna has made herself over so often now , there 's apparently nothing left to work with , sort of like Michael Jackson 's nose .\n9681\tNever having seen the first two films in the series , I ca n't compare Friday After Next to them , but nothing would change the fact that what we have here is a load of clams left in the broiling sun for a good three days .\n9682\tThe story is lacking any real emotional impact , and the plot is both contrived and cliched .\n9683\tA depraved , incoherent , instantly disposable piece of hackery .\n9684\tIt 's a bad action movie because there 's no rooting interest and the spectacle is grotesque and boring .\n9685\t-LRB- Soderbergh -RRB- tends to place most of the psychological and philosophical material in italics rather than trust an audience 's intelligence , and he creates an overall sense of brusqueness .\n9686\tHandsome and sincere but slightly awkward in its combination of entertainment and evangelical boosterism .\n9687\tSo aggressively cheery that Pollyana would reach for a barf bag .\n9688\tScooby-Doo does n't know if it wants to be a retro-refitting exercise in campy recall for older fans or a silly , Nickelodeon-esque kiddie flick .\n9689\tRussell lacks the visual panache , the comic touch , and perhaps the budget of Sommers 's title-bout features .\n9690\tHighly uneven and inconsistent ... Margarita Happy Hour kinda resembles the el cheapo margaritas served within .\n9691\tVery stupid and annoying .\n9692\tThe Sum of All Fears pretends to be a serious exploration of nuclear terrorism , but it 's really nothing more than warmed-over Cold War paranoia .\n9693\tA listless and desultory affair .\n9694\tRepresents the depths to which the girls-behaving-badly film has fallen .\n9695\tHow inept is Serving Sara ?\n9696\tIt makes even Elizabeth Hurley seem graceless and ugly .\n9697\tJam-packed with literally bruising jokes .\n9698\tEvery five minutes or so , someone gets clocked .\n9699\tWins my vote for ` The 2002 Enemy of Cinema ' Award .\n9700\tAny Chekhov is better than no Chekhov , but it would be a shame if this was your introduction to one of the greatest plays of the last 100 years .\n9701\tHelmer Hudlin tries to make a hip comedy , but his dependence on slapstick defeats the possibility of creating a more darkly edged tome .\n9702\tLazy , miserable and smug .\n9703\tThis is one of the biggest disappointments of the year .\n9704\tFormula 51 has dulled your senses faster and deeper than any recreational drug on the market .\n9705\tEvery visual joke is milked , every set-up obvious and lengthy , every punchline predictable .\n9706\tThere 's no energy .\n9707\tApparently writer-director Attal thought he need only cast himself and his movie-star wife sitting around in their drawers to justify a film .\n9708\tAfter the setup , the air leaks out of the movie , flattening its momentum with about an hour to go .\n9709\tThis is a poster movie , a mediocre tribute to films like Them !\n9710\tAt three hours and with very little story or character development , there is plenty of room for editing , and a much shorter cut surely would have resulted in a smoother , more focused narrative without sacrificing any of the cultural intrigue .\n9711\tA bit too derivative to stand on its own as the psychological thriller it purports to be .\n9712\tA crude teen-oriented variation on a theme that the playwright Craig Lucas explored with infinitely more grace and eloquence in his Prelude to a Kiss .\n9713\tThe film 's darker moments become smoothed over by an overwhelming need to tender inspirational tidings , especially in the last few cloying moments .\n9714\tIf you recognize Zeus -LRB- the dog from Snatch -RRB- it will make you wish you were at home watching that movie instead of in the theater watching this one .\n9715\tThis is the kind of movie that you only need to watch for about thirty seconds before you say to yourself , ` Ah , yes , here we have a bad , bad , bad movie . '\n9716\tShanghai Ghetto should be applauded for finding a new angle on a tireless story , but you might want to think twice before booking passage .\n9717\tPlays like a checklist of everything Rob Reiner and his cast were sending up .\n9718\tThere 's too much forced drama in this wildly uneven movie , about a young man 's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present .\n9719\tIt 's at once laughable and compulsively watchable , in its committed dumbness .\n9720\tAll the sensuality , all the eroticism of a good vampire tale has been , pardon the pun , sucked out and replaced by goth goofiness .\n9721\tA cross between Blow and Boyz N The Hood , this movie strives to be more , but does n't quite get there .\n9722\tGood performances keep it from being a total rehash .\n9723\tThe screenplay is hugely overwritten , with tons and tons of dialogue -- most of it given to children .\n9724\tTroll the cult section of your local video store for the real deal .\n9725\tAt times , the movie looks genuinely pretty .\n9726\tYour nightmares , on the other hand , will be anything but .\n9727\tNot even Felinni would know what to make of this Italian freakshow .\n9728\tElmo touts his drug as being 51 times stronger than coke .\n9729\tIf you 're looking for a tale of Brits behaving badly , watch Snatch again .\n9730\tIt 's 51 times better than this .\n9731\tIt 's difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing , let alone funny .\n9732\tDespite its promising cast of characters , Big Trouble remains a loosely tied series of vignettes which only prove that ` zany ' does n't necessarily mean ` funny . '\n9733\tBoth shrill and soporific , and because everything is repeated five or six times , it can seem tiresomely simpleminded .\n9734\tDoes not go far enough in its humor or stock ideas to stand out as particularly memorable or even all that funny .\n9735\tNeither revelatory nor truly edgy -- merely crassly flamboyant and comedically labored .\n9736\tJust about everyone involved here seems to be coasting .\n9737\tThere are a few modest laughs , but certainly no thrills .\n9738\tFails so fundamentally on every conventional level that it achieves some kind of goofy grandeur .\n9739\tThere 's a persistent theatrical sentiment and a woozy quality to the manner of the storytelling , which undercuts the devastatingly telling impact of utter loss personified in the film 's simple title .\n9740\tWhile Howard 's appreciation of Brown and his writing is clearly well-meaning and sincere , the movie would be impossible to sit through were it not for the supporting cast .\n9741\tA preposterous , prurient whodunit .\n9742\tGo , girls , right down the reality drain .\n9743\tBoasting some of the most poorly staged and lit action in memory , Impostor is as close as you can get to an imitation movie .\n9744\tCan be classified as one of those ` alternate reality ' movies ... except that it would have worked so much better dealing in only one reality .\n9745\tPredictable and cloying , though Brown Sugar is so earnest in its yearning for the days before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle .\n9746\t... unlikable , uninteresting , unfunny , and completely , utterly inept .\n9747\tThe film is so busy making reference to other films and trying to be other films that it fails to have a heart , mind or humor of its own .\n9748\tAn imponderably stilted and self-consciously arty movie .\n9749\tMuddled , melodramatic paranormal romance is an all-time low for Kevin Costner .\n9750\tToo clumsy in key moments ... to make a big splash .\n9751\tJust a bunch of good actors flailing around in a caper that 's neither original nor terribly funny .\n9752\t` Matrix ' - style massacres erupt throughout ... but the movie has a tougher time balancing its violence with Kafka-inspired philosophy .\n9753\tAt least it 's a fairly impressive debut from the director , Charles Stone III .\n9754\tIt all unfolds predictably , and the adventures that happen along the way seem repetitive and designed to fill time , providing no real sense of suspense .\n9755\tWanker Goths are on the loose !\n9756\tRun for your lives !\n9757\tWhy would anyone cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects ?\n9758\tA grating , emaciated flick .\n9759\tUnambitious writing emerges in the movie , using a plot that could have come from an animated-movie screenwriting textbook .\n9760\tPresents a good case while failing to provide a reason for us to care beyond the very basic dictums of human decency .\n9761\tWe have poignancy jostling against farce , thoughtful dialogue elbowed aside by one-liners , and a visual style that incorporates rotoscope animation for no apparent reason except , maybe , that it looks neat .\n9762\tAccording to the script , Grant and Bullock 's characters are made for each other .\n9763\tBut you 'd never guess that from the performances .\n9764\tThe animation merely serves up a predictable , maudlin story that swipes heavily from Bambi and The Lion King , yet lacks the emotional resonance of either of those movies .\n9765\tArarat feels like a book report\n9766\tSteve Oedekerk is , alas , no Woody Allen .\n9767\tA lot like the imaginary sport it projects onto the screen -- loud , violent and mindless .\n9768\tAn amalgam of The Fugitive , Blade Runner , and Total Recall , only without much energy or tension .\n9769\tThe acting is amateurish , the cinematography is atrocious , the direction is clumsy , the writing is insipid and the violence is at once luridly graphic and laughably unconvincing .\n9770\tShows that Jackie Chan is getting older , and that 's something I would rather live in denial about\n9771\tWith miscast leads , banal dialogue and an absurdly overblown climax , Killing Me Softly belongs firmly in the so-bad-it 's - good camp .\n9772\tAlas , the black-and-white archival footage of their act showcases pretty mediocre shtick .\n9773\tThe slapstick is labored , and the bigger setpieces flat .\n9774\tThis is the kind of movie where people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks .\n9775\tThe problem with the mayhem in Formula 51 is not that it 's offensive , but that it 's boring .\n9776\tMuch of the digitally altered footage appears jagged , as if filmed directly from a television monitor , while the extensive use of stock footage quickly becomes a tiresome clichÃ© .\n9777\tthe film never rises above a conventional , two dimension tale\n9778\tMark Wahlberg ... may look classy in a '60s - homage pokepie hat , but as a character he 's dry , dry , dry .\n9779\tTold in scattered fashion , the movie only intermittently lives up to the stories and faces and music of the men who are its subject .\n9780\tThe irony is that this film 's cast is uniformly superb ; their performances could have -- should have -- been allowed to stand on their own .\n9781\tNow I can see why people thought I was too hard on `` The Mothman Prophecies '' .\n9782\tIf ever a concept came handed down from the movie gods on a silver platter , this is it .\n9783\tIf ever such a dependable concept was botched in execution , this is it .\n9784\tWith an unusual protagonist -LRB- a kilt-wearing Jackson -RRB- and subject matter , the improbable `` Formula 51 '' is somewhat entertaining , but it could have been much stronger .\n9785\tSandra Bullock 's best dramatic performance to date -LRB- is -RRB- almost enough to lift -LRB- this -RRB- thrill-kill cat-and-mouser ... above its paint-by-numbers plot .\n9786\tA feel-good movie that does n't give you enough to feel good about .\n9787\tAdolescents will be adequately served by the movie 's sophomoric blend of shenanigans and slapstick , although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a ` topless tutorial service . '\n9788\tThis mistaken-identity picture is so film-culture referential that the final product is a ghost .\n9789\tThe picture emerges as a surprisingly anemic disappointment .\n9790\tDe Niro cries .\n9791\tYou 'll cry for your money back .\n9792\tSlap me , I saw this movie .\n9793\t-LRB- The kid 's -RRB- just too bratty for sympathy , and as the film grows to its finale , his little changes ring hollow .\n9794\tBehind the glitz , Hollywood is sordid and disgusting .\n9795\tQuelle surprise !\n9796\tScherfig , who has had a successful career in TV , tackles more than she can handle .\n9797\tJust consider what New Best Friend does not have , beginning with the minor omission of a screenplay .\n9798\tOscar caliber cast does n't live up to material\n9799\tThe problems of the people in Love in the Time of Money are hardly specific to their era .\n9800\tThey just have problems , which are neither original nor are presented in convincing way .\n9801\tCarrying this wafer-thin movie on his nimble shoulders , Chan wades through putrid writing , direction and timing with a smile that says , ` If I stay positive , maybe I can channel one of my greatest pictures , Drunken Master . '\n9802\tSo putrid it is not worth the price of the match that should be used to burn every print of the film .\n9803\tIn the end , the movie bogs down in insignificance , saying nothing about Kennedy 's assassination and revealing nothing about the pathology it pretends to investigate .\n9804\tStarts out ballsy and stylish but fails to keep it up and settles into clichÃ©s .\n9805\tSometimes makes less sense than the Bruckheimeresque American action flicks it emulates .\n9806\tOne of those films where the characters inhabit that special annex of hell where adults behave like kids , children behave like adults and everyone screams at the top of their lungs no matter what the situation .\n9807\tThere 's only one way to kill Michael Myers for good : stop buying tickets to these movies .\n9808\t` Rare Birds ' tries to force its quirkiness upon the audience .\n9809\tThe movie is about as humorous as watching your favorite pet get buried alive .\n9810\tResident Evil is what comes from taking John Carpenter 's Ghosts of Mars and eliminating the beheadings .\n9811\tIn other words , about as bad a film you 're likely to see all year .\n9812\tFive screenwriters are credited with the clichÃ©-laden screenplay ; it seems as if each watered down the version of the one before .\n9813\tThe whole thing comes off like a particularly amateurish episode of Bewitched that takes place during Spring Break .\n9814\tWell made but uninvolving , Bloodwork is n't a terrible movie , just a stultifyingly obvious one -- an unrewarding collar for a murder mystery .\n9815\tSo we got Ten Little Indians meets Friday the 13th by way of Clean and Sober , filmed on the set of Carpenter 's The Thing and loaded with actors you 're most likely to find on the next inevitable incarnation of The Love Boat .\n9816\tThe movie 's blatant derivativeness is one reason it 's so lackluster .\n9817\tKids do n't mind crappy movies as much as adults , provided there 's lots of cute animals and clumsy people .\n9818\t` Snow Dogs ' has both .\n9819\tIt 's almost as if it 's an elaborate dare more than a full-blooded film .\n9820\tWobbly Senegalese updating of `` Carmen '' which is best for the stunning star turn by Djeinaba Diop Gai\n9821\tIt 's the humanizing stuff that will probably sink the film for anyone who does n't think about percentages all day long .\n9822\tKen Russell would love this .\n9823\tIn one scene , we get a stab at soccer hooliganism , a double-barreled rip-off of Quentin Tarantino 's climactic shootout -- and Meat Loaf explodes .\n9824\tBella is the picture of health with boundless energy until a few days before she dies .\n9825\tThis is absolutely and completely ridiculous and an insult to every family whose mother has suffered through the horrible pains of a death by cancer .\n9826\tThe premise of `` Abandon '' holds promise , ... but its delivery is a complete mess .\n9827\tWhat could have been a pointed little chiller about the frightening seductiveness of new technology loses faith in its own viability and succumbs to joyless special-effects excess .\n9828\tA little too ponderous to work as shallow entertainment , not remotely incisive enough to qualify as drama , Monsoon Wedding serves mostly to whet one 's appetite for the Bollywood films .\n9829\tUnless Bob Crane is someone of particular interest to you , this film 's impressive performances and adept direction are n't likely to leave a lasting impression .\n9830\tThe Rock has a great presence but one battle after another is not the same as one battle followed by killer CGI effects .\n9831\tThe bottom line with Nemesis is the same as it has been with all the films in the series : Fans will undoubtedly enjoy it , and the uncommitted need n't waste their time on it .\n9832\tThe lousy John Q all but spits out Denzel Washington 's fine performance in the title role .\n9833\tThe whole thing feels like a ruse , a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or , worse yet , nonexistent -- ideas .\n9834\tWhat a stiflingly unfunny and unoriginal mess this is !\n9835\tThe film is so packed with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film .\n9836\tOpera on film is never satisfactory .\n9837\tThe art demands live viewing .\n9838\tThe innate theatrics that provide its thrills and extreme emotions lose their luster when flattened onscreen .\n9839\tDespite all the closed-door hanky-panky , the film is essentially juiceless .\n9840\tIt is parochial , accessible to a chosen few , standoffish to everyone else , and smugly suggests a superior moral tone is more important than filmmaking skill\n9841\tThe Sweetest Thing leaves an awful sour taste .\n9842\tIt 's lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay .\n9843\tTerminally bland , painfully slow and needlessly confusing ... The movie , shot on digital videotape rather than film , is frequently indecipherable .\n9844\tAs dumb and cheesy as they may be , the cartoons look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy , supposed family-friendly comedy .\n9845\tAloof and lacks any real raw emotion , which is fatal for a film that relies on personal relationships .\n9846\tA low-rent retread of the Alien pictures .\n9847\tServiceable at best , slightly less than serviceable at worst .\n9848\tIts initial excitement settles into a warmed over pastiche .\n9849\tA big meal of cliches that the talented cast generally chokes on .\n9850\tThe story has little wit and no surprises .\n9851\tThe Merchant-Ivory team continues to systematically destroy everything we hold dear about cinema , only now it 's begun to split up so that it can do even more damage .\n9852\tWhat should have been a cutting Hollywood satire is instead about as fresh as last week 's issue of Variety .\n9853\tHey everybody , wanna watch a movie in which a guy dressed as a children 's party clown gets violently gang-raped ?\n9854\tI did n't think so .\n9855\tA little more intensity and a little less charm would have saved this film a world of hurt .\n9856\t-LRB- T -RRB- his slop does n't even have potential as a cult film , as it 's too loud to shout insults at the screen .\n9857\tThe movie 's plot is almost entirely witless and inane , carrying every gag two or three times beyond its limit to sustain a laugh .\n9858\t... may work as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence .\n9859\tThis Scarlet 's letter is A. . .\n9860\tas in aimless , arduous , and arbitrary .\n9861\tPlays like a glossy melodrama that occasionally verges on camp .\n9862\tThe central character is n't complex enough to hold our interest .\n9863\tA modestly comic , modestly action-oriented World War II adventure that , in terms of authenticity , is one of those films that requires the enemy to never shoot straight .\n9864\tA puppy dog so desperate for attention it nearly breaks its little neck trying to perform entertaining tricks .\n9865\tJust about all of the film is confusing on one level or another , making Ararat far more demanding than it needs to be .\n9866\tA little less extreme than in the past , with longer exposition sequences between them , and with fewer gags to break the tedium .\n9867\tThere 's a heavy stench of ` been there , done that ' hanging over the film .\n9868\tIt 's everything you 'd expect -- but nothing more .\n9869\tThe biggest problem with Satin Rouge is Lilia herself .\n9870\tShe 's a cipher , played by an actress who smiles and frowns but does n't reveal an inner life .\n9871\tA quaint , romanticized rendering .\n9872\tWhat with the incessant lounge music playing in the film 's background , you may mistake Love Liza for an Adam Sandler Chanukah song .\n9873\tThe movie 's heavy-handed screenplay navigates a fast fade into pomposity and pretentiousness .\n9874\tA potentially good comic premise and excellent cast are terribly wasted .\n9875\tWoody Allen used to ridicule movies like Hollywood Ending .\n9876\tNow he makes them .\n9877\tShe 's not yet an actress , not quite a singer ...\n9878\tNot a bad premise , but the execution is lackluster at best .\n9879\tBeen there done that .\n9880\tThere is only so much baked cardboard I need to chew .\n9881\tA movie like The Guys is why film criticism can be considered work .\n9882\tSchnitzler 's film has a great hook , some clever bits and well-drawn , if standard issue , characters , but is still only partly satisfying .\n9883\tEven if it made its original release date last fall , it would 've reeked of a been-there , done-that sameness .\n9884\tOnly two-fifths of a satisfying movie experience .\n9885\tA loud , ugly , irritating movie without any of its satirical salvos hitting a discernible target .\n9886\tA movie version of a paint-by-numbers picture .\n9887\tWe can tell what it is supposed to be , but ca n't really call it a work of art .\n9888\tIt 's a brilliant , honest performance by Nicholson , but the film is an agonizing bore except when the fantastic Kathy Bates turns up .\n9889\tBravado Kathy !\n9890\t... Liotta is put in an impossible spot because his character 's deceptions ultimately undo him and the believability of the entire scenario .\n9891\tToo bad .\n9892\tYou can thank me for this .\n9893\tI saw Juwanna Mann so you do n't have to .\n9894\tUnfunny and lacking any sense of commitment to or affection for its characters , the Reginald Hudlin comedy relies on toilet humor , ethnic slurs .\n9895\tBasically , it 's pretty but dumb .\n9896\tThis romantic\\/comedy asks the question how much souvlaki can you take before indigestion sets in .\n9897\tSquandering his opportunity to make absurdist observations , Burns gets caught up in the rush of slapstick thoroughfare .\n9898\tThere 's a neat twist , subtly rendered , that could have wrapped things up at 80 minutes , but Kang tacks on three or four more endings .\n9899\tReeboir varies between a sweet smile and an angry bark , while Said attempts to wear down possible pupils through repetition .\n9900\tIt has no affect on the Kurds , but it wore me down .\n9901\tThe actors improvise and scream their way around this movie directionless , lacking any of the rollicking dark humor so necessary to make this kind of idea work on screen .\n9902\tCo-writer\\/director Jonathan Parker 's attempts to fashion a Brazil-like , hyper-real satire fall dreadfully short .\n9903\tIf this silly little cartoon can inspire a few kids not to grow up to be greedy bastards , more power to it .\n9904\tA superfluous sequel ... plagued by that old familiar feeling of ` let 's get this thing over with ' : Everyone has shown up at the appointed time and place , but visible enthusiasm is mighty hard to find .\n9905\tIf there 's a heaven for bad movies , Deuces Wild is on its way .\n9906\tComes off like a bad imitation of the Bard .\n9907\tWhat 's missing in Murder by Numbers is any real psychological grounding for the teens ' deviant behaviour .\n9908\tBeing latently gay and liking to read are hardly enough .\n9909\tAn uninspired preachy and clichÃ©d war film .\n9910\tHorrendously amateurish filmmaking that is plainly dull and visually ugly when it is n't incomprehensible .\n9911\tA movie that harps on media-constructed ` issues ' like whether compromise is the death of self ... this Orgasm -LRB- wo n't be an -RRB- exceedingly memorable one for most people .\n9912\tSlackers ' jokey approach to college education is disappointingly simplistic -- the film 's biggest problem -- and there are no unforgettably stupid stunts or uproariously rude lines of dialogue to remember it by .\n9913\tIf Festival in Cannes nails hard - boiled Hollywood argot with a bracingly nasty accuracy , much about the film , including some of its casting , is frustratingly unconvincing .\n9914\tThe movie is too impressed with its own solemn insights to work up much entertainment value .\n9915\tI have n't seen such self-amused trash since Freddy Got Fingered .\n9916\tLittle more than a well-mounted history lesson .\n9917\tRob Schneider 's infantile cross-dressing routines fill The Hot Chick , the latest gimmick from this unimaginative comedian .\n9918\tA horrible , 99-minute stink bomb .\n9919\tThe film is weighed down by supporting characters who are either too goodly , wise and knowing or downright comically evil .\n9920\tThe film is so bad it does n't improve upon the experience of staring at a blank screen .\n9921\tSheridan 's take on the author 's schoolboy memoir ... is a rather toothless take on a hard young life .\n9922\tIt jumps around with little logic or continuity , presenting backstage bytes of information that never amount to a satisfying complete picture of this particular , anciently demanding mÃ©tier .\n9923\tHow I Killed My Father is one of those art house films that makes you feel like you 're watching an iceberg melt -- only it never melts .\n9924\tWhen it comes to the battle of Hollywood vs. Woo , it looks like Woo 's a P.O.W.\n9925\tThere are a few chuckles , but not a single gag sequence that really scores , and the stars seem to be in two different movies .\n9926\tThe Chateau has one very funny joke and a few other decent ones , but all it amounts to is a mildly funny , sometimes tedious , ultimately insignificant film .\n9927\tIt 's dull , spiritless , silly and monotonous : an ultra-loud blast of pointless mayhem , going nowhere fast .\n9928\tThe mushy finale turns John Q into a movie-of-the-week tearjerker .\n9929\tContent merely to lionize its title character and exploit his anger - all for easy sanctimony , formulaic thrills and a ham-fisted sermon on the need for national health insurance .\n9930\tThe movie turns out to be -LRB- Assayas ' -RRB- homage to the Gallic ` tradition of quality , ' in all its fusty squareness .\n9931\tIts message has merit and , in the hands of a brutally honest individual like Prophet Jack , might have made a point or two regarding life .\n9932\t-LRB- Seems -RRB- even more uselessly redundant and shamelessly money-grubbing than most third-rate horror sequels .\n9933\tIt 's hard to imagine that even very small children will be impressed by this tired retread .\n9934\tNeither as scary-funny as Tremors nor demented-funny as Starship Troopers , the movie is n't tough to take as long as you 've paid a matinee price .\n9935\tIf swimfan does catch on , it may be because teens are looking for something to make them laugh .\n9936\tWhat might 've been an exhilarating exploration of an odd love triangle becomes a sprawl of uncoordinated vectors .\n9937\tThe Master of Disguise may have made a great Saturday Night Live sketch , but a great movie it is not .\n9938\tIt 's quite an achievement to set and shoot a movie at the Cannes Film Festival and yet fail to capture its visual appeal or its atmosphere .\n9939\tBoll uses a lot of quick cutting and blurry step-printing to goose things up , but dopey dialogue and sometimes inadequate performances kill the effect .\n9940\tIt 's always disappointing when a documentary fails to live up to -- or offer any new insight into -- its chosen topic .\n9941\tUnfortunately , that 's precisely what Arthur Dong 's Family Fundamentals does .\n9942\tHas the marks of a septuagenarian ; it 's a crusty treatment of a clever gimmick .\n9943\tLike a medium-grade network sitcom -- mostly inoffensive , fitfully amusing , but ultimately so weightless that a decent draft in the auditorium might blow it off the screen .\n9944\tSomething must have been lost in the translation .\n9945\tBecomes the last thing you would expect from a film with this title or indeed from any Plympton film : boring .\n9946\tIn the end , the film feels homogenized and a bit contrived , as if we 're looking back at a tattered and ugly past with rose-tinted glasses .\n9947\tChan 's stunts are limited and so embellished by editing that there 's really not much of a sense of action or even action-comedy .\n9948\tRock 's stand-up magic wanes .\n9949\tHopkins , squarely fills the screen .\n9950\tAction - mechanical .\n9951\t`` The Tuxedo '' should have been the vehicle for Chan that `` The Mask '' was for Jim Carrey .\n9952\tAlas , it 's the man that makes the clothes .\n9953\tFor casual moviegoers who stumble into Rules expecting a slice of American Pie hijinks starring the kid from Dawson 's Creek , they 'll probably run out screaming .\n9954\tThe biggest problem I have -LRB- other than the very sluggish pace -RRB- is we never really see her Esther blossom as an actress , even though her talent is supposed to be growing .\n9955\tWhat puzzles me is the lack of emphasis on music in Britney Spears ' first movie .\n9956\tPlot , characters , drama , emotions , ideas -- all are irrelevant to the experience of seeing The Scorpion King .\n9957\tCity by the Sea is a gritty police thriller with all the dysfunctional family dynamics one could wish for .\n9958\tBut how it washed out despite all of that is the project 's prime mystery .\n9959\tWhatever the movie 's sentimental , hypocritical lessons about sexism , its true colors come out in various wet T-shirt and shower scenes .\n9960\tAs a hybrid teen thriller and murder mystery , Murder by Numbers fits the profile too closely .\n9961\tThere ai n't a lot more painful than an unfunny movie that thinks it 's hilarious .\n9962\tI enjoyed the movie in a superficial way , while never sure what its purpose was .\n9963\tWhat a pity ... that the material is so second-rate .\n9964\tDoes n't deliver a great story , nor is the action as gripping as in past Seagal films .\n9965\tThe kind of film that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an ill-advised and poorly executed idea .\n9966\tNicks refuses to let Slackers be seen as just another teen movie , which means he can be forgiven for frequently pandering to fans of the gross-out comedy .\n9967\tNothing about the film -- with the possible exception of Elizabeth Hurley 's breasts -- is authentic .\n9968\tAmid the clichÃ© and foreshadowing , Cage manages a degree of casual realism ... that is routinely dynamited by Blethyn .\n9969\tMostly , Shafer and co-writer Gregory Hinton lack a strong-minded viewpoint , or a sense of humor .\n9970\tNo cliche escapes the perfervid treatment of gang warfare called ces Wild .\n9971\tEddie Murphy and Owen Wilson have a cute partnership in I Spy , but the movie around them is so often nearly nothing that their charm does n't do a load of good .\n9972\tStrictly a ` guy 's film ' in the worst sense of the expression .\n9973\tThere 's some good material in their story about a retail clerk wanting more out of life , but the movie too often spins its wheels with familiar situations and repetitive scenes .\n9974\tIt 's a lot to ask people to sit still for two hours and change watching such a character , especially when rendered in as flat and impassive a manner as Phoenix 's .\n9975\tThere 's something fishy about a seasonal holiday kids ' movie ... that derives its moment of most convincing emotional gravity from a scene where Santa gives gifts to grownups .\n9976\tWe 're left with a story that tries to grab us , only to keep letting go at all the wrong moments .\n9977\tLike many such biographical melodramas , it suffers from the awkwardness that results from adhering to the messiness of true stories .\n9978\tThere is nothing redeeming about this movie .\n9979\tThe film has -LRB- its -RRB- moments , but they are few and far between .\n9980\tI was trying to decide what annoyed me most about God is Great ... I 'm Not , and then I realized that I just did n't care .\n9981\tDerailed by bad writing and possibly also by some of that extensive post-production reworking to aim the film at young males in the throes of their first full flush of testosterone .\n9982\tDeserves high marks for political courage but barely gets by on its artistic merits .\n9983\t... comes alive only when it switches gears to the sentimental .\n9984\tBrosnan 's finest non-Bondish performance yet fails to overcome the film 's manipulative sentimentality and annoying stereotypes .\n9985\tA film that will be best appreciated by those willing to endure its extremely languorous rhythms , Waiting for Happiness is ultimately thoughtful without having much dramatic impact .\n9986\tTo me , it sounds like a cruel deception carried out by men of marginal intelligence , with reactionary ideas about women and a total lack of empathy .\n9987\tTsai may be ploughing the same furrow once too often .\n9988\tFlashy gadgets and whirling fight sequences may look cool , but they ca n't distract from the flawed support structure holding Equilibrium up .\n9989\tZigZag might have been richer and more observant if it were less densely plotted .\n9990\tHow can such a cold movie claim to express warmth and longing ?\n9991\tIn truth , it has all the heart of a porno flick -LRB- but none of the sheer lust -RRB- .\n9992\tNicks and Steinberg match their own creations for pure venality -- that 's giving it the old college try .\n9993\tEpisode II -- Attack of the Clones is a technological exercise that lacks juice and delight .\n9994\tThe problem with all of this : It 's not really funny .\n9995\t-LRB- Denis ' -RRB- bare-bones narrative more closely resembles an outline for a '70s exploitation picture than the finished product .\n9996\tWanders all over the map thematically and stylistically , and borrows heavily from Lynch , Jeunet , and von Trier while failing to find a spark of its own .\n9997\tViewing this underdramatized but overstated film is like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet .\n9998\tOverall tomfoolery like this is a matter of taste .\n9999\tThe mantra behind the project seems to have been ` it 's just a kids ' flick . '\n10000\tTranslation : ` We do n't need to try very hard . '\n10001\tIn all the annals of the movies , few films have been this odd , inexplicable and unpleasant .\n10002\tIt takes a really long , slow and dreary time to dope out what TUCK EVERLASTING is about .\n10003\tSo here it is : It 's about a family of sour immortals .\n10004\tan essentially awkward version of the lightweight female empowerment picture we 've been watching for decades\n10005\tThe author 's devotees will probably find it fascinating ; others may find it baffling .\n10006\tWriter-director Walter Hill and co-writer David Giler try to create characters out of the obvious cliches , but wind up using them as punching bags .\n10007\tThere 's a scientific law to be discerned here that producers would be well to heed : Mediocre movies start to drag as soon as the action speeds up ; when the explosions start , they fall to pieces .\n10008\tA cockeyed shot all the way .\n10009\tLush and beautifully photographed -LRB- somebody suggested the stills might make a nice coffee table book -RRB- , but ultimately you 'll leave the theater wondering why these people mattered .\n10010\tUnfortunately , One Hour Photo lives down to its title .\n10011\tThanks largely to Williams , all the interesting developments are processed in 60 minutes -- the rest is just an overexposed waste of film .\n10012\tCold , Sterile And Lacking Any Color Or Warmth .\n10013\tThe film is undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold .\n10014\tSeems like someone going through the motions .\n10015\tFor a film about explosions and death and spies , `` Ballistic : Ecks vs. Sever '' seems as safe as a children 's film .\n10016\tWell , in some of those , the mother deer even dies .\n10017\tWallace gets a bit heavy handed with his message at times , and has a visual flair that waxes poetic far too much for our taste .\n10018\tImpostor does n't do much with its template , despite a remarkably strong cast .\n10019\tWraps itself in the guise of a dark and quirky comedy , but it is n't as quirky as it thinks it is and its comedy is generally mean-spirited .\n10020\tChoppy , overlong documentary about ` The Lifestyle . '\n10021\tOne sloughs one 's way through the mire of this alleged psychological thriller in search of purpose or even a plot .\n10022\tA film which presses familiar Herzog tropes into the service of a limpid and conventional historical fiction , when really what we demand of the director is to be mesmerised .\n10023\tIt 's a fanboy ` what if ? '\n10024\tbrought to life on the big screen .\n10025\tThe story itself is actually quite vapid .\n10026\tIt 's a hellish , numbing experience to watch , and it does n't offer any insights that have n't been thoroughly debated in the media already , back in the Dahmer heyday of the mid - '90s .\n10027\tWait for pay per view or rental but do n't dismiss BarberShop out of hand .\n10028\tA few zingers aside , the writing is indifferent , and Jordan Brady 's direction is prosaic .\n10029\tEach scene drags , underscoring the obvious , and sentiment is slathered on top .\n10030\tWould 've been nice if the screenwriters had trusted audiences to understand a complex story , and left off the film 's predictable denouement .\n10031\tThen Nadia 's birthday might not have been such a bad day after all .\n10032\tOne of those staggeringly well-produced , joylessly extravagant pictures that keep whooshing you from one visual marvel to the next , hastily , emptily .\n10033\tNair just does n't have the necessary self-control to guide a loose , poorly structured film through the pitfalls of incoherence and redundancy .\n10034\tEnthusiastically taking up the current teen movie concern with bodily functions , Walt Becker 's film pushes all the demographically appropriate comic buttons .\n10035\tIt 's the funniest American comedy since Graffiti Bridge .\n10036\tThat neither protagonist has a distinguishable condition hardly matters because both are just actory concoctions , defined by childlike dimness and a handful of quirks .\n10037\tWhat starts off as a possible Argentine American Beauty reeks like a room stacked with pungent flowers .\n10038\tThe project 's filmmakers forgot to include anything even halfway scary as they poorly rejigger Fatal Attraction into a high school setting .\n10039\tIn old-fashioned screenwriting parlance , Ms. Shreve 's novel proved too difficult a text to ` lick , ' despite the efforts of a first-rate cast .\n10040\tSolondz may well be the only one laughing at his own joke\n10041\tStitch is a bad mannered , ugly and destructive little \\*\\*\\*\\* .\n10042\tNo cute factor here ... Not that I mind ugly ; the problem is he has no character , loveable or otherwise .\n10043\tDeep down , I realized the harsh reality of my situation : I would leave the theater with a lower I.Q. than when I had entered .\n10044\tA really funny fifteen-minute short stretched beyond its limits to fill an almost feature-length film .\n10045\tAside from the fact that the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea , the film gets added disdain for the fact that it is nearly impossible to look at or understand .\n10046\tIt is bad , but certainly not without merit as entertainment .\n10047\tFor its 100 minutes running time , you 'll wait in vain for a movie to happen .\n10048\tA work that lacks both a purpose and a strong pulse .\n10049\tA faster paced family flick .\n10050\tUpper Teens may get cynical .\n10051\tSmaller numbered kidlets will enjoy .\n10052\tWhile this film has an ` A ' list cast and some strong supporting players , the tale -- like its central figure , Vivi -- is just a little bit hard to love .\n10053\tIt 's a road-trip drama with too many wrong turns .\n10054\tMost fish stories are a little peculiar , but this is one that should be thrown back in the river .\n10055\tIt 's all gratuitous before long , as if Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story .\n10056\t`` I blame all men for war , '' -LRB- the warden 's daughter -RRB- tells her father .\n10057\tThe movie is about as deep as that sentiment .\n10058\tIt 's fitfully funny but never really takes off .\n10059\tI 've seen some bad singer-turned actors , but Lil Bow Wow takes the cake .\n10060\tBy halfway through this picture I was beginning to hate it , and , of course , feeling guilty for it ... Then , miracle of miracles , the movie does a flip-flop .\n10061\tFor all the complications , it 's all surprisingly predictable .\n10062\tIt 's been 20 years since 48 Hrs .\n10063\tmade Eddie Murphy a movie star and the man has n't aged a day .\n10064\tBut his showboating wise-cracker stock persona sure is getting old .\n10065\tIf Deuces Wild had been tweaked up a notch it would have become a camp adventure , one of those movies that 's so bad it starts to become good .\n10066\tBut it was n't .\n10067\tFor a film about action , Ultimate X is the gabbiest giant-screen movie ever , bogging down in a barrage of hype .\n10068\t... a low rate Annie featuring some kid who ca n't act , only echoes of Jordan , and weirdo actor Crispin Glover screwing things up old school .\n10069\tIt might not be 1970s animation , but everything else about it is straight from the Saturday morning cartoons -- a retread story , bad writing , and the same old silliness .\n10070\tThe picture seems uncertain whether it wants to be an acidic all-male All About Eve or a lush , swooning melodrama in the Intermezzo strain .\n10071\tA nearly 21\\/2 hours , the film is way too indulgent .\n10072\tGorgeous to look at but insufferably tedious and turgid ... a curiously constricted epic .\n10073\tIt looks much more like a cartoon in the end than The Simpsons ever has .\n10074\tWith a tighter editorial process and firmer direction this material could work , especially since the actresses in the lead roles are all more than competent , but as is , Personal Velocity seems to be idling in neutral .\n10075\tDoes n't really add up to much .\n10076\tIt 's better suited for the history or biography channel , but there 's no arguing the tone of the movie - it leaves a bad taste in your mouth and questions on your mind .\n10077\tAn entertainment so in love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots .\n10078\tA prolonged extrusion of psychopathic pulp .\n10079\tBorrows from other movies like it in the most ordinary and obvious fashion .\n10080\tIt 's surprisingly bland despite the heavy doses of weird performances and direction .\n10081\tA chilly , remote , emotionally distant piece ... so dull that its tagline should be : ` In space , no one can hear you snore . '\n10082\tThe characters seem one-dimensional , and the film is superficial and will probably be of interest primarily to its target audience .\n10083\tSorvino makes the princess seem smug and cartoonish , and the film only really comes alive when poor Hermocrates and Leontine pathetically compare notes about their budding amours .\n10084\tIt 's like a drive-by .\n10085\tYou can drive right by it without noticing anything special , save for a few comic turns , intended and otherwise .\n10086\tEverything -- even life on an aircraft carrier -- is sentimentalized .\n10087\tThis would-be ` James Bond for the Extreme Generation ' pic is one big , dumb action movie .\n10088\tStress ` dumb . '\n10089\tThe movie has generic virtues , and despite a lot of involved talent , seems done by the numbers .\n10090\tWhen your subject is illusion versus reality , should n't the reality seem at least passably real ?\n10091\tIt 's a terrible movie in every regard , and utterly painful to watch .\n10092\tThis is rote spookiness , with nary an original idea -LRB- or role , or edit , or score , or anything , really -RRB- in sight , and the whole of the proceedings beg the question ` Why ? '\n10093\tA fan film that for the uninitiated plays better on video with the sound turned down .\n10094\tToo infuriatingly quirky and taken with its own style .\n10095\tThere 's a whole heap of nothing at the core of this slight coming-of-age\\/coming-out tale .\n10096\tAs much as I laughed throughout the movie , I can not mount a cogent defense of the film as entertainment , or even performance art , although the movie does leave you marveling at these guys ' superhuman capacity to withstand pain .\n10097\tThe type of dumbed-down exercise in stereotypes that gives the -LRB- teen comedy -RRB- genre a bad name .\n10098\tDistinctly sub-par ... more likely to drown a viewer in boredom than to send any shivers down his spine .\n10099\tPlays like a bad blend of an overripe episode of TV 's Dawson 's Creek and a recycled and dumbed-down version of Love Story .\n10100\tUnless you come in to the film with a skateboard under your arm , you 're going to feel like you were n't invited to the party .\n10101\tWhen the casting call for this movie went out , it must have read ` seeking anyone with acting ambition but no sense of pride or shame . '\n10102\tJust is n't as weird as it ought to be .\n10103\tA `` Home Alone '' film that is staged like `` Rosemary 's Baby , '' but is not as well-conceived as either of those films .\n10104\t-LRB- Siegel -RRB- and co-writers Lisa Bazadona and Grace Woodard have relied too much on convention in creating the characters who surround Frankie .\n10105\tNo film could possibly be more contemptuous of the single female population .\n10106\t` Hey Arnold ! '\n10107\thas some visual wit ... but little imagination elsewhere .\n10108\tThey 're going through the motions , but the zip is gone .\n10109\tA sluggish pace and lack of genuine narrative hem the movie in every bit as much as life hems in the spirits of these young women .\n10110\tA low-budget affair , Tadpole was shot on digital video , and the images often look smeary and blurry , to the point of distraction .\n10111\tThen again , in a better movie , you might not have noticed .\n10112\tIt 's mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love .\n10113\tThe movie is like a year late for tapping into our reality tv obsession , and even tardier for exploiting the novelty of the `` webcast . ''\n10114\ttale will be all too familiar for anyone who 's seen George Roy Hill 's 1973 film , `` The Sting . ''\n10115\tGets the look and the period trappings right , but it otherwise drowns in a sea of visual and verbal clichÃ©s .\n10116\tIt 's hard to quibble with a flick boasting this many genuine cackles , but Notorious C.H.O. still feels like a promising work-in-progress .\n10117\tAnyone who wants to start writing screenplays can just follow the same blueprint from hundreds of other films , sell it to the highest bidder and walk away without anyone truly knowing your identity .\n10118\tThe problem with The Bread , My Sweet is that it 's far too sentimental .\n10119\tA late-night cable sexploitation romp masquerading as a thriller about the ruthless social order that governs college cliques .\n10120\tFalls short in explaining the music and its roots .\n10121\tNever inspires more than an interested detachment .\n10122\tWhat might have emerged as hilarious lunacy in the hands of Woody Allen or Mel Brooks -LRB- at least during their '70s heyday -RRB- comes across as lame and sophomoric in this debut indie feature .\n10123\tDespite slick production values and director Roger Michell 's tick-tock pacing , the final effect is like having two guys yelling in your face for two hours .\n10124\tPretty much sucks , but has a funny moment or two .\n10125\tThey do a good job of painting this family dynamic for the audience but they tried to squeeze too many elements into the film .\n10126\tA supernatural mystery that does n't know whether it wants to be a suspenseful horror movie or a weepy melodrama .\n10127\tIt ends up being neither , and fails at both endeavors .\n10128\tTwo badly interlocked stories drowned by all too clever complexity .\n10129\tIt is so earnest , so overwrought and so wildly implausible that it begs to be parodied .\n10130\tThese are textbook lives of quiet desperation .\n10131\tSwimfan , like Fatal Attraction , eventually goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub .\n10132\tClaims to sort the bad guys from the good , which is its essential problem .\n10133\tPurposefully shocking in its eroticized gore , if unintentionally dull in its lack of poetic frissons .\n10134\tFeels like pieces a bunch of other , better movies slapped together .\n10135\tAlmost everything about the film is unsettling , from the preposterous hairpiece worn by Lai 's villainous father to the endless action sequences .\n10136\tWriter-director Randall Wallace has bitten off more than he or anyone else could chew , and his movie veers like a drunken driver through heavy traffic .\n10137\tIt follows the Blair Witch formula for an hour , in which we 're told something creepy and vague is in the works , and then it goes awry in the final 30 minutes .\n10138\tOne ca n't shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney 's latest album .\n10139\tPhoned-in business as usual .\n10140\tThere 's an epic here , but you have to put it together yourself .\n10141\tWhat little atmosphere is generated by the shadowy lighting , macabre sets , and endless rain is offset by the sheer ugliness of everything else .\n10142\tDirector-chef Gabriele Muccino keeps it fast -- zippy , comin ' at ya -- as if fearing that his film is molto superficiale .\n10143\tTartakovsky 's team has some freakish powers of visual charm , but the five writers slip into the modern rut of narrative banality .\n10144\tThe most horrific movie experience I 've had since `` Ca n't Stop The Music . ''\n10145\tIt may as well be called `` Jar-Jar Binks : The Movie . ''\n10146\tIt 's that painful .\n10147\tGod is great , the movie 's not .\n10148\tLike a three-ring circus , there are side stories aplenty -- none of them memorable .\n10149\tWhen in doubt , the film ratchets up the stirring soundtrack , throws in a fish-out-of-water gag and lets the cliched dialogue rip .\n10150\tOr else a doggie winks .\n10151\tA ` Girls Gone Wild ' video for the boho art-house crowd , The Burning Sensation is n't a definitive counter-cultural document -- its makers are n't removed and inquisitive enough for that .\n10152\tAs original and insightful as last week 's episode of Behind the Music .\n10153\tPlays like John Le CarrÃ© with a couple of burnt-out cylinders .\n10154\tYou may be galled that you 've wasted nearly two hours of your own precious life with this silly little puddle of a movie .\n10155\tIt 's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy , but it has its moments .\n10156\tDespite the surface attractions -- Conrad L. Hall 's cinematography will likely be nominated for an Oscar next year -- there 's something impressive and yet lacking about everything .\n10157\tA smug and convoluted action-comedy that does n't allow an earnest moment to pass without reminding audiences that it 's only a movie .\n10158\t-LRB- Crystal and De Niro -RRB- manage to squeeze out some good laughs but not enough to make this silly con job sing .\n10159\tWorthless , from its pseudo-rock-video opening to the idiocy of its last frames .\n10160\tThe Christ allegory does n't work because there is no foundation for it\n10161\tGo for La Salle 's performance , and make do as best you can with a stuttering script .\n10162\tIt 's hard to care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful , self-satisfied 22-year-old girlfriend and an equally beautiful , self-satisfied 18-year-old mistress .\n10163\tTries too hard to be funny in a way that 's too loud , too goofy and too short of an attention span .\n10164\tI did n't find much fascination in the swinging .\n10165\tWhat they 're doing is a matter of plumbing arrangements and mind games , of no erotic or sensuous charge .\n10166\tBut that they are doing it is thought-provoking .\n10167\tThe acting is just fine , but there 's not enough substance here to sustain interest for the full 90 minutes , especially with the weak payoff .\n10168\tAfter Collateral Damage , you might imagine that most every aggrieved father clichÃ© has been unturned .\n10169\tBut no. .\n10170\tUltimately the , yes , snail-like pacing and lack of thematic resonance make the film more silly than scary , like some sort of Martha Stewart decorating program run amok .\n10171\tReleasing a film with the word ` dog ' in its title in January lends itself to easy jokes and insults , and Snow Dogs deserves every single one of them .\n10172\tTedious Norwegian offering which somehow snagged an Oscar nomination .\n10173\tIt was a dark and stormy night ...\n10174\tA dark-as-pitch comedy that frequently veers into corny sentimentality , probably would not improve much after a therapeutic zap of shock treatment .\n10175\tThis sort of cute and cloying material is far from Zhang 's forte and it shows .\n10176\tBray is completely at sea ; with nothing but a Savage Garden music video on his resume , he has no clue about making a movie .\n10177\tFreundlich 's made -LRB- Crudup -RRB- a suburban architect , and a cipher .\n10178\ta huge disappointment coming , as it does , from filmmakers and performers of this calibre\n10179\tThough it pretends to expose the life of male hustlers , it 's exploitive without being insightful .\n10180\tAimed squarely at the least demanding of demographic groups : very small children who will be delighted simply to spend more time with familiar cartoon characters .\n10181\tWhat starts off as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points .\n10182\tExhibits the shallow sensationalism characteristic of soap opera ... more salacious telenovela than serious drama .\n10183\tSeagal is painfully foolish in trying to hold onto what 's left of his passe ' chopsocky glory .\n10184\tEven with Harris 's strong effort , the script gives him little to effectively probe Lear 's soul-stripping breakdown .\n10185\tThe story is bogus and its characters tissue-thin .\n10186\tWhereas the extremely competent hitman films such as Pulp Fiction and Get Shorty resonate a sardonic verve to their caustic purpose for existing , Who Is Cletis Tout ?\n10187\tis an inexpressible and drab wannabe looking for that exact niche .\n10188\tWhile American Adobo has its heart -LRB- and its palate -RRB- in the right place , its brain is a little scattered -- ditsy , even .\n10189\tImagine a film that begins as a Seven rip-off , only to switch to a mix of The Shining , The Thing , and any naked teenagers horror flick from the 1980s .\n10190\tMost of the dialogue made me want to pack raw dough in my ears .\n10191\tCostner 's warm-milk persona is just as ill-fitting as Shadyac 's perfunctory directing chops , and some of the more overtly silly dialogue would sink Laurence Olivier .\n10192\tIt 's coherent , well shot , and tartly acted , but it wears you down like a dinner guest showing off his doctorate .\n10193\tDirected by Kevin Bray , whose crisp framing , edgy camera work , and wholesale ineptitude with acting , tone and pace very obviously mark him as a video helmer making his feature debut .\n10194\tturns a potentially interesting idea into an excruciating film school experience that plays better only for the film 's publicists or for people who take as many drugs as the film 's characters\n10195\tRobin Williams departs from his fun friendly demeanor in exchange for a darker unnerving role .\n10196\tHigh Crimes is a cinematic misdemeanor , a routine crime thriller remarkable only for its lack of logic and misuse of two fine actors , Morgan Freeman and Ashley Judd .\n10197\tSet in a 1986 Harlem that does n't look much like anywhere in New York .\n10198\tThe chocolate factory without Charlie .\n10199\tLong on twinkly-eyed close-ups and short on shame .\n10200\tHip-hop rarely comes alive as its own fire-breathing entity in this picture .\n10201\tA dull , somnambulant exercise in pretension whose pervasive quiet is broken by frequent outbursts of violence and noise .\n10202\tDeserving of its critical backlash and more .\n10203\tNeither a rousing success nor a blinding embarrassment .\n10204\tStill , it just sits there like a side dish no one ordered .\n10205\tThe Sum of All Fears is remarkably fuddled about motives and context , which drains it of the dramatic substance that would shake us in our boots -LRB- or cinema seats -RRB- .\n10206\tThe movie spends more time with Schneider than with newcomer McAdams , even though her performance is more interesting -LRB- and funnier -RRB- than his .\n10207\tThis low-rent -- and even lower-wit -- rip-off of the Farrelly brothers ' oeuvre gets way too mushy -- and in a relatively short amount of time .\n10208\tIt recycles every clichÃ© about gays in what is essentially an extended soap opera .\n10209\tI 'm all for the mentally challenged getting their fair shot in the movie business , but surely it does n't have to be as a collection of keening and self-mutilating sideshow geeks .\n10210\tMay offend viewers not amused by the sick sense of humor .\n10211\tMany of Benjamins ' elements feel like they 've been patched in from an episode of Miami Vice .\n10212\tIt aimlessly and unsuccessfully attempts to fuse at least three dull plots into one good one .\n10213\tMost folks with a real stake in the American sexual landscape will find it either moderately amusing or just plain irrelevant .\n10214\tIf you 're not fans of the adventues of Steve and Terri , you should avoid this like the dreaded King Brown snake .\n10215\tPersonally , I 'd rather watch them on the Animal Planet .\n10216\tCherish is a dud -- a romantic comedy that 's not the least bit romantic and only mildly funny .\n10217\tFeels as if the inmates have actually taken over the asylum .\n10218\tAll of the filmmakers ' calculations ca n't rescue Brown Sugar from the curse of blandness .\n10219\tThe movie 's gloomy atmosphere is fascinating , though , even if the movie itself does n't stand a ghost of a chance .\n10220\t... post-September 11 , `` The Sum Of All Fears '' seems more tacky and reprehensible , manipulating our collective fear without bestowing the subject with the intelligence or sincerity it unequivocally deserves .\n10221\tThe exclamation point seems to be the only bit of glee you 'll find in this dreary mess .\n10222\tNo matter how you slice it , Mark Wahlberg and Thandie Newton are not Hepburn and Grant , two cinematic icons with chemistry galore .\n10223\tGodard 's ode to tackling life 's wonderment is a rambling and incoherent manifesto about the vagueness of topical excess ... In Praise of Love remains a ponderous and pretentious endeavor that 's unfocused and tediously exasperating .\n10224\tHumorless , self-conscious art drivel , made without a glimmer of intelligence or invention .\n10225\tThe movie 's progression into rambling incoherence gives new meaning to the phrase ` fatal script error . '\n10226\tSolondz may be convinced that he has something significant to say , but he is n't talking a talk that appeals to me .\n10227\tMore tiring than anything .\n10228\tNelson 's intentions are good , but the end result does no justice to the story itself .\n10229\tIt 's horribly depressing and not very well done .\n10230\t... the efforts of its star , Kline , to lend some dignity to a dumb story are for naught .\n10231\tA good-natured ensemble comedy that tries hard to make the most of a bumper cast , but never quite gets off the ground .\n10232\tIs n't it a bit early in his career for director Barry Sonnenfeld to do a homage to himself ?\n10233\tAnd it 's a lousy one at that .\n10234\tOverly long and worshipful bio-doc .\n10235\tI 'll go out on a limb .\n10236\tIt is n't quite one of the worst movies of the year .\n10237\tIt 's just merely very bad .\n10238\tWriter-director Ritchie reduces Wertmuller 's social mores and politics to tiresome jargon .\n10239\tAbout Amy 's cuteness , Amy 's career success -LRB- she 's a best-selling writer of self-help books who ca n't help herself -RRB- , and Amy 's neuroses when it comes to men .\n10240\tEverything about Girls Ca n't Swim , even its passages of sensitive observation , feels secondhand , familiar -- and not in a good way .\n10241\tFeels aimless for much of its running time , until late in the film when a tidal wave of plot arrives , leaving questions in its wake .\n10242\tIn my own very humble opinion , In Praise of Love lacks even the most fragmented charms I have found in almost all of his previous works .\n10243\tThe script is too mainstream and the psychology too textbook to intrigue .\n10244\tMuddled , simplistic and more than a little pretentious .\n10245\tMeandering and glacially paced , and often just plain dull .\n10246\tA disaster of a drama , saved only by its winged assailants .\n10247\tA road trip that will get you thinking , ` Are we there yet ? '\n10248\tDirector Elie Chouraqui , who co-wrote the script , catches the chaotic horror of war , but why bother if you 're going to subjugate truth to the tear-jerking demands of soap opera ?\n10249\tDong never pushes for insights beyond the superficial tensions of the dynamic he 's dissecting , and the film settles too easily along the contours of expectation .\n10250\tIf there was any doubt that Peter O'Fallon did n't have an original bone in his body , A Rumor of Angels should dispel it .\n10251\tAn occasionally interesting but mostly repetitive look at a slice of counterculture that might be best forgotten .\n10252\tWhat could have been right at home as a nifty plot line in Steven Soderbergh 's Traffic fails to arrive at any satisfying destination .\n10253\tThe movie is like Scorsese 's Mean Streets redone by someone who ignored it in favor of old ` juvenile delinquent ' paperbacks with titles like Leather Warriors and Switchblade Sexpot .\n10254\tThis pathetic junk is barely an hour long .\n10255\tNevertheless , it still seems endless .\n10256\tIt is n't that Stealing Harvard is a horrible movie -- if only it were that grand a failure !\n10257\tIt 's just that it 's so not-at-all-good .\n10258\tAnd I expect much more from a talent as outstanding as director Bruce McCulloch .\n10259\tDolman confines himself to shtick and sentimentality -- the one bald and the other sloppy .\n10260\tIs it possible for a documentary to be utterly entranced by its subject and still show virtually no understanding of it ?\n10261\tIt 's supposed to be a romantic comedy - it suffers from too much Norma Rae and not enough Pretty Woman .\n10262\tThe leads are so unmemorable , despite several attempts at lengthy dialogue scenes , that one eventually resents having to inhale this gutter romancer 's secondhand material .\n10263\tStaggers between flaccid satire and what is supposed to be madcap farce .\n10264\tNot that any of us should be complaining when a film clocks in around 90 minutes these days , but the plotting here leaves a lot to be desired .\n10265\tBrainy , artistic and muted , almost to the point of suffocation .\n10266\tPlays like the old disease-of-the-week small-screen melodramas .\n10267\tLike life on the island , the movie grows boring despite the scenery .\n10268\tThe truth about Charlie is that it 's a brazenly misguided project .\n10269\tdisplays the potential for a better movie than what Bailly manages to deliver\n10270\tSo exaggerated and broad that it comes off as annoying rather than charming .\n10271\tAn awkward hybrid of genres that just does n't work .\n10272\tThe latest vapid actor 's exercise to appropriate the structure of Arthur Schnitzler 's Reigen .\n10273\tSnipes is both a snore and utter tripe .\n10274\tRitchie 's film is easier to swallow than Wertmuller 's polemical allegory , but it 's self-defeatingly decorous .\n10275\tChalk it up as the worst kind of hubristic folly .\n10276\tIt 's the kind of under-inspired , overblown enterprise that gives Hollywood sequels a bad name .\n10277\tRosenthal -LRB- Halloween II -RRB- seems to have forgotten everything he ever knew about generating suspense .\n10278\tEven Murphy 's expert comic timing and famed charisma ca n't rescue this effort .\n10279\tRodriguez ... was unable to reproduce the special spark between the characters that made the first film such a delight .\n10280\tA sleek advert for youthful anomie that never quite equals the sum of its pretensions .\n10281\tSome Body smacks of exhibitionism more than it does cathartic truth telling .\n10282\tThis is n't a terrible film by any means , but it 's also far from being a realized work .\n10283\tApparently , romantic comedy with a fresh point of view just does n't figure in the present Hollywood program .\n10284\tDepressingly thin and exhaustingly contrived .\n10285\tOnly masochistic moviegoers need apply .\n10286\tA movie that 's held captive by mediocrity .\n10287\tNot bad , but not all that good .\n10288\tBacon keeps things interesting , but do n't go out of your way to pay full price .\n10289\tWhat 's next ?\n10290\tRob Schneider , Dana Carvey and Sarah Michelle Gellar in The Philadelphia Story ?\n10291\tDavid Spade as Citizen Kane ?\n10292\tCa n't seem to get anywhere near the story 's center .\n10293\tThe problem , amazingly enough , is the screenplay .\n10294\tIt 's a Frankenstein-monster of a film that does n't know what it wants to be .\n10295\tUpper West Sidey exercise in narcissism and self-congratulation disguised as a tribute .\n10296\tOn its icy face , the new film is a subzero version of Monsters , Inc. , without the latter 's imagination , visual charm or texture .\n10297\tI ca n't say this enough : This movie is about an adult male dressed in pink jammies .\n10298\tIt 's a mindless action flick with a twist -- far better suited to video-viewing than the multiplex .\n10299\tAfter a while , the only way for a reasonably intelligent person to get through The Country Bears is to ponder how a whole segment of pop-music history has been allowed to get wet , fuzzy and sticky .\n10300\tWe get light showers of emotion a couple of times , but then -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle .\n10301\tSummer 's far too fleeting to squander on offal like this .\n10302\tThe film is grossly contradictory in conveying its social message , if indeed there is one .\n10303\tOften lingers just as long on the irrelevant as on the engaging , which gradually turns What Time Is It There ?\n10304\tinto How Long Is This Movie ?\n10305\tToo bad Kramer could n't make a guest appearance to liven things up .\n10306\tDeuces Wild is an encyclopedia of cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence .\n10307\tIt 's a barely tolerable slog over well-trod ground .\n10308\tEpps has neither the charisma nor the natural affability that has made Tucker a star .\n10309\tIt 's sweet ... but just a little bit too precious at the start and a little too familiar at the end .\n10310\tA dull , dumb and derivative horror film .\n10311\tAn awkwardly contrived exercise in magic realism .\n10312\tDemme gets a lot of flavor and spice into his Charade remake , but he ca n't disguise that he 's spiffing up leftovers that are n't so substantial or fresh .\n10313\tThis is a heartfelt story ... it just is n't a very involving one .\n10314\tThese self-styled athletes have banged their brains into the ground so frequently and furiously , their capacity to explain themselves has gone the same way as their natural instinct for self-preservation .\n10315\tThe fact that the ` best part ' of the movie comes from a 60-second homage to one of Demme 's good films does n't bode well for the rest of it .\n10316\tRichard Pryor mined his personal horrors and came up with a treasure chest of material , but Lawrence gives us mostly fool 's gold .\n10317\tThe band performances featured in Drumline are red hot ... -LRB- but -RRB- from a mere story point of view , the film 's ice cold .\n10318\t... built on the premise that middle-class Arkansas consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids .\n10319\tA laughable -- or rather , unlaughable -- excuse for a film .\n10320\tThe sequel is everything the original was not : contrived , overblown and tie-in ready .\n10321\tLike a grinning Jack O ' Lantern , its apparent glee is derived from a lobotomy , having had all its vital essence scooped out and discarded .\n10322\tA sentimental hybrid that could benefit from the spice of specificity .\n10323\t... familiar and predictable , and 4\\/5ths of it might as well have come from a Xerox machine rather than -LRB- writer-director -RRB- Franc .\n10324\tReyes ' word processor .\n10325\tGive Shapiro , Goldman , and Bolado credit for good intentions , but there 's nothing here that they could n't have done in half an hour .\n10326\tIt 's so devoid of joy and energy it makes even Jason X ... look positively Shakesperean by comparison .\n10327\tA little objectivity could have gone a long way .\n10328\tOne of the worst films of 2002 .\n10329\tI believe Silberling had the best intentions here , but he just does n't have the restraint to fully realize them .\n10330\tplays like an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood .\n10331\tMcTiernan 's remake may be lighter on its feet -- the sober-minded original was as graceful as a tap-dancing rhino -- but it is just as boring and as obvious .\n10332\tHigh Crimes carries almost no organic intrigue as a government \\/ Marine\\/legal mystery , and that 's because the movie serves up all of that stuff , nearly subliminally , as the old-hat province of male intrigue .\n10333\tThis movie is about the worst thing Chan has done in the United States .\n10334\tThe explosion essentially ruined -- or , rather , overpowered -- the fiction of the movie for me .\n10335\tThis ludicrous film is predictable at every turn .\n10336\tAn incredibly irritating comedy about thoroughly vacuous people ... manages to embody the worst excesses of nouvelle vague without any of its sense of fun or energy .\n10337\tThe film desperately sinks further and further into comedy futility .\n10338\tInstead of a balanced film that explains the zeitgeist that is the X Games , we get a cinematic postcard that 's superficial and unrealized .\n10339\tThe crassness of this reactionary thriller is matched only by the ridiculousness of its premise .\n10340\tI wish it would have just gone more over-the-top instead of trying to have it both ways .\n10341\tThe superior plotline is n't quite enough to drag along the dead -LRB- water -RRB- weight of the other .\n10342\tThe film does n't really care about the thousands of Americans who die hideously , it cares about how Ryan meets his future wife and makes his start at the CIA .\n10343\tAdrift , Bentley and Hudson stare and sniffle , respectively , as Ledger attempts , in vain , to prove that movie-star intensity can overcome bad hair design .\n10344\tAfter an hour and a half of wondering -- sometimes amusedly , sometimes impatiently -- just what this strenuously unconventional movie is supposed to be , you discover that the answer is as conventional as can be .\n10345\t` Linklater fans , or pretentious types who want to appear avant-garde will suck up to this project ... '\n10346\tA woefully dull , redundant concept that bears more than a whiff of exploitation , despite Iwai 's vaunted empathy .\n10347\tScreenwriter Chris ver Weil 's directing debut is good-natured and never dull , but its virtues are small and easily overshadowed by its predictability .\n10348\tIf you really want to understand what this story is really all about , you 're far better served by the source material .\n10349\tIt 's mildly sentimental , unabashedly consumerist ... studiously inoffensive and completely disposable .\n10350\tLike its title character , Esther Kahn is unusual but unfortunately also irritating .\n10351\tThe star who helped give a spark to `` Chasing Amy '' and `` Changing Lanes '' falls flat as thinking man CIA agent Jack Ryan in this summer 's new action film , `` The Sum of All Fears . ''\n10352\tA summary of the plot does n't quite do justice to the awfulness of the movie , for that comes through all too painfully in the execution .\n10353\tEvery conceivable mistake a director could make in filming opera has been perpetrated here .\n10354\tSnoots will no doubt rally to its cause , trotting out threadbare standbys like ` masterpiece ' and ` triumph ' and all that malarkey , but rarely does an established filmmaker so ardently waste viewers ' time with a gobbler like this .\n10355\t-LRB- The film 's -RRB- taste for `` shock humor '' will wear thin on all but those weaned on the comedy of Tom Green and the Farrelly Brothers .\n10356\tAny enjoyment will be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things .\n10357\tIf legendary shlockmeister Ed Wood had ever made a movie about a vampire , it probably would look a lot like this alarming production , adapted from Anne Rice 's novel The Vampire Chronicles .\n10358\tHardly a nuanced portrait of a young woman 's breakdown , the film nevertheless works up a few scares .\n10359\tInterminably bleak , to say nothing of boring .\n10360\tThings really get weird , though not particularly scary : the movie is all portent and no content .\n10361\tIt 's difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion .\n10362\tBogs down badly as we absorb Jia 's moody , bad-boy behavior which he portrays himself in a one-note performance .\n10363\tThe camera whirls !\n10364\tThe camera twirls !\n10365\tOh , look at that clever angle !\n10366\tWow , a jump cut !\n10367\tDemme finally succeeds in diminishing his stature from Oscar-winning master to lowly studio hack .\n10368\tThe action scenes have all the suspense of a 20-car pileup , while the plot holes are big enough for a train car to drive through -- if Kaos had n't blown them all up .\n10369\tIt almost feels as if the movie is more interested in entertaining itself than in amusing us .\n10370\tIt puts Washington , as honest working man John Q. Archibald , on a pedestal , then keeps lifting the pedestal higher .\n10371\tUltimately , the film amounts to being lectured to by tech-geeks , if you 're up for that sort of thing .\n10372\tFar more enjoyable than its predecessor .\n10373\t-LRB- Gayton 's script -RRB- telegraphs every discovery and layers on the gloss of convenience .\n10374\tFull Frontal , which opens today nationwide , could almost be classified as a movie-industry satire , but it lacks the generous inclusiveness that is the genre 's definitive , if disingenuous , feature .\n10375\tA ragbag of cliches .\n10376\tThis rough trade Punch-and-Judy act did n't play well then and it plays worse now .\n10377\tThe three leads produce adequate performances , but what 's missing from this material is any depth of feeling .\n10378\tIt 's possible that something hip and transgressive was being attempted here that stubbornly refused to gel , but the result is more puzzling than unsettling .\n10379\tThis painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications ... that have no bearing on the story .\n10380\tShort and sweet , but also more than anything else slight ... Tadpole pulls back from the consequences of its own actions and revelations .\n10381\tHas its moments , but it 's pretty far from a treasure .\n10382\tWhat more can be expected from a college comedy that 's target audience has n't graduated from junior high school ?\n10383\tCollateral Damage offers formula payback and the Big Payoff , but the explosions tend to simply hit their marks , pyro-correctly .\n10384\tThe plan to make Enough into ` an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller ' has flopped as surely as a soufflÃ© gone wrong .\n10385\tInstead of letting the laughs come as they may , Lawrence unleashes his trademark misogyny -- er , comedy -- like a human volcano or an overflowing septic tank , take your pick .\n10386\tYou know that ten bucks you 'd spend on a ticket ?\n10387\tJust send it to Cranky .\n10388\tWe do n't get paid enough to sit through crap like this .\n10389\tAn even more predictable , cliche-ridden endeavor than its predecessor .\n10390\tThe whole thing plays like a tired Tyco ad .\n10391\tThe film does n't show enough of the creative process or even of what was created for the non-fan to figure out what makes Wilco a big deal .\n10392\tThe soupy end result has the odd distinction of being playful without being fun , too .\n10393\tNo , I do n't know why Steven Seagal is considered a star , nor why he keeps being cast in action films when none of them are ever any good or make any money .\n10394\tEven by the intentionally low standards of frat-boy humor , Sorority Boys is a bowser .\n10395\tOne well-timed explosion in a movie can be a knockout , but a hundred of them can be numbing .\n10396\tProof of this is Ballistic : Ecks vs. Sever .\n10397\tHalfway through , however , having sucked dry the undead action flick formula , Blade II mutates into a gross-out monster movie with effects that are more silly than scary .\n10398\tWeighted down with slow , uninvolving storytelling and flat acting .\n10399\tWe ca n't accuse Kung Pow for misfiring , since it is exactly what it wants to be : an atrociously , mind-numbingly , indescribably bad movie .\n10400\tUnfortunately , we 'd prefer a simple misfire .\n10401\tThere is n't one moment in the film that surprises or delights .\n10402\t` Would n't it be nice if all guys got a taste of what it 's like on the other side of the bra ? '\n10403\tThe movie is essentially a series of fleetingly interesting actors ' moments .\n10404\tMost of the information has already appeared in one forum or another and , no matter how Broomfield dresses it up , it tends to speculation , conspiracy theories or , at best , circumstantial evidence .\n10405\tThis movie , a certain scene in particular , brought me uncomfortably close to losing my lunch .\n10406\tThe secrets of time travel will have been discovered , indulged in and rejected as boring before I see this piece of crap again .\n10407\tSmug , artificial , ill-constructed and fatally overlong ... it never finds a consistent tone and lacks bite , degenerating into a pious , preachy soap opera .\n10408\tChelsea Walls is a case of too many chefs fussing over too weak a recipe .\n10409\tEvery joke is repeated at least four times .\n10410\tEvery joke is repeated at least four times .\n10411\tEvery joke is repeated at least -- annoying , is n't it ?\n10412\tComes across as a fairly weak retooling .\n10413\tThe lousy lead performances ... keep the movie from ever reaching the comic heights it obviously desired .\n10414\tIts and pieces of The Hot Chick are so hilarious , and Schneider 's performance is so fine , it 's a real shame that so much of the movie -- again , as in The Animal -- is a slapdash mess .\n10415\t-LRB- Creates -RRB- the worst kind of mythologizing , the kind that sacrifices real heroism and abject suffering for melodrama .\n10416\tThe movie resolutely avoids all the comic possibilities of its situation , and becomes one more dumb high school comedy about sex gags and prom dates .\n10417\tEarnest and heartfelt but undernourished and plodding .\n10418\tA sugar-coated Rocky whose valuable messages are forgotten 10 minutes after the last trombone honks .\n10419\tRomanek keeps adding flourishes -- artsy fantasy sequences -- that simply feel wrong .\n10420\tThey cheapen the overall effect .\n10421\tHas all the complexity and realistic human behavior of an episode of General Hospital .\n10422\tAn acceptable way to pass a little over an hour with moviegoers ages 8-10 , but it 's unlikely to inspire anything more than a visit to McDonald 's , let alone some savvy street activism .\n10423\t-LRB- Allen 's -RRB- been making piffle for a long while , and Hollywood Ending may be his way of saying that piffle is all that the airhead movie business deserves from him right now .\n10424\tAn exercise in cynicism every bit as ugly as the shabby digital photography and muddy sound .\n10425\tNot good enough to pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans .\n10426\tThe movie is silly beyond comprehension , and even if it were n't silly , it would still be beyond comprehension .\n10427\tWatchable up until the point where the situations and the dialogue spin hopelessly out of control -- that is to say , when Carol Kane appears on the screen .\n10428\tThe scriptwriters are no less a menace to society than the film 's characters .\n10429\tMerchant has n't directed this movie so much as produced it -- like sausage .\n10430\tThe film has a nearly terminal case of the cutes , and it 's neither as funny nor as charming as it thinks it is .\n10431\tMore a gunfest than a Rock concert .\n10432\tIt 's a frightful vanity film that , no doubt , pays off what debt Miramax felt they owed to Benigni .\n10433\tA muddy psychological thriller rife with miscalculations .\n10434\tIt makes me say the obvious : Abandon all hope of a good movie ye who enter here .\n10435\tIt 's not original enough .\n10436\tA listless sci-fi comedy in which Eddie Murphy deploys two guises and elaborate futuristic sets to no particularly memorable effect .\n10437\tLittle more than a super-sized infomercial for the cable-sports channel and its Summer X Games .\n10438\tA generic bloodbath that often becomes laughably unbearable when it is n't merely offensive .\n10439\tJulie Davis is the Kathie Lee Gifford of film directors , sadly proving once again ego does n't always go hand in hand with talent .\n10440\tAn unholy mess , driven by the pathetic idea that if you shoot something on crummy-looking videotape , it must be labelled ` hip ' , ` innovative ' and ` realistic ' .\n10441\tThe story 's pathetic and the gags are puerile . .\n10442\tCuriously , Super Troopers suffers because it does n't have enough vices to merit its 103-minute length .\n10443\tSo bland and utterly forgettable that it might as well have been titled Generic Jennifer Lopez Romantic Comedy .\n10444\tI was sent a copyof this film to review on DVD .\n10445\tFor free .\n10446\tI still want my money back .\n10447\tIt plods along methodically , somehow under the assumption that its `` dead wife communicating from beyond the grave '' framework is even remotely new or interesting .\n10448\tIt 's hard to believe that a relationship like Holly and Marina 's could survive the hothouse emotions of teendom , and its longevity gets more inexplicable as the characterizations turn more crassly reductive .\n10449\tAll too familiar ... basically the sort of cautionary tale that was old when ` Angels With Dirty Faces ' appeared in 1938 .\n10450\t... passable enough for a shoot-out in the o.k. court house of life type of flick .\n10451\tStrictly middle of the road .\n10452\tAlthough purportedly a study in modern alienation , it 's really little more than a particularly slanted , gay s\\/m fantasy , enervating and deadeningly drawn-out .\n10453\tAfter the first 10 minutes , which is worth seeing , the movie sinks into an abyss of clichÃ©s , depression and bad alternative music .\n10454\tNo one can doubt the filmmakers ' motives , but The Guys still feels counterproductive .\n10455\tA very slow , uneventful ride around a pretty tattered old carousel .\n10456\tWith little visible talent and no energy , Colin Hanks is in bad need of major acting lessons and maybe a little coffee .\n10457\t`` Feardotcom '' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel , but it simply becomes a routine shocker .\n10458\tA Meatballs for the bare-midriff generation .\n10459\tWell-meaning to a fault , Antwone Fisher manages the dubious feat of turning one man 's triumph of will into everyman 's romance comedy .\n10460\tSeemingly disgusted with the lazy material and the finished product 's unshapely look , director Fisher Stevens inexplicably dips key moments from the film in Waking Life water colors .\n10461\tFormula 51 promises a new kind of high but delivers the same old bad trip .\n10462\tEverything that was right about Blade is wrong in its sequel .\n10463\tA few energetic stunt sequences briefly enliven the film , but the wheezing terrorist subplot has n't the stamina for the 100-minute running time , and the protagonists ' bohemian boorishness mars the spirit of good clean fun .\n10464\tThe film was produced by Jerry Bruckheimer and directed by Joel Schumacher , and reflects the worst of their shallow styles : wildly overproduced , inadequately motivated every step of the way and demographically targeted to please every one -LRB- and no one -RRB- .\n10465\tDisney again ransacks its archives for a quick-buck sequel .\n10466\tCoarse , cliched and clunky , this trifling romantic comedy in which opposites attract for no better reason than that the screenplay demands it squanders the charms of stars Hugh Grant and Sandra Bullock .\n10467\tAnyone who suffers through this film deserves , at the very least , a big box of consolation candy .\n10468\tHow much you are moved by the emotional tumult of -LRB- FranÃ§ois and MichÃ¨le 's -RRB- relationship depends a lot on how interesting and likable you find them .\n10469\tThey presume their audience wo n't sit still for a sociology lesson , however entertainingly presented , so they trot out the conventional science-fiction elements of bug-eyed monsters and futuristic women in skimpy clothes .\n10470\tCollapses after 30 minutes into a slap-happy series of adolescent violence .\n10471\tThe following things are not at all entertaining : The bad sound , the lack of climax and , worst of all , watching Seinfeld -LRB- who is also one of the film 's producers -RRB- do everything he can to look like a good guy .\n10472\tAttal 's hang-ups surrounding infidelity are so old-fashioned and , dare I say , outdated , it 's a wonder that he could n't have brought something fresher to the proceedings simply by accident .\n10473\tObvious , obnoxious and didactic burlesque .\n10474\tThe most surprising thing about this film is that they are actually releasing it into theaters .\n10475\tMichele is a such a brainless flibbertigibbet that it 's hard to take her spiritual quest at all seriously .\n10476\tUltimately , clarity matters , both in breaking codes and making movies .\n10477\tEnigma lacks it .\n10478\tPotty-mouthed enough for PG-13 , yet not as hilariously raunchy as South Park , this strangely schizo cartoon seems suited neither to kids or adults .\n10479\t... has its moments , but ultimately , its curmudgeon does n't quite make the cut of being placed on any list of favorites .\n10480\tA distinctly minor effort that will be seen to better advantage on cable , especially considering its barely feature-length running time of one hour .\n10481\tMost of the movie is so deadly dull that watching the proverbial paint dry would be a welcome improvement .\n10482\tIn the end , Tuck Everlasting falls victim to that everlasting conundrum experienced by every human who ever lived : too much to do , too little time to do it in .\n10483\tRather less than the sum of its underventilated pÃ¨re-fils confrontations .\n10484\tMcKay shows crushingly little curiosity about , or is ill-equipped to examine , the interior lives of the characters in his film , much less incorporate them into his narrative .\n10485\tPlays like a series of vignettes -- clips of a film that are still looking for a common through-line .\n10486\tNew Yorkers always seem to find the oddest places to dwell ...\n10487\tAmid the shock and curiosity factors , the film is just a corny examination of a young actress trying to find her way .\n10488\tYes , Spirited Away is a triumph of imagination , but it 's also a failure of storytelling .\n10489\tA characteristically engorged and sloppy coming-of-age movie .\n10490\tA somewhat disappointing and meandering saga .\n10491\tWhenever you think you 've seen the end of the movie , we cut to a new scene , which also appears to be the end .\n10492\tBut , no , we get another scene , and then another .\n10493\tYou begin to long for the end credits as the desert does for rain .\n10494\tAn empty , ugly exercise in druggy trance-noir and trumped-up street credibility .\n10495\tThe screenplay , co-written by director Imogen Kimmel , lacks the wit necessary to fully exploit the comic elements of the premise , making the proceedings more bizarre than actually amusing .\n10496\tThe milieu is wholly unconvincing ... and the histrionics reach a truly annoying pitch .\n10497\tUnfunny comedy with a lot of static set ups , not much camera movement , and most of the scenes take place indoors in formal settings with motionless characters .\n10498\tEach story is built on a potentially interesting idea , but the first two are ruined by amateurish writing and acting , while the third feels limited by its short running time .\n10499\tExcept for Paymer as the boss who ultimately expresses empathy for Bartleby 's pain , the performances are so stylized as to be drained of human emotion .\n10500\tWill no doubt delight Plympton 's legion of fans ; others may find 80 minutes of these shenanigans exhausting .\n10501\tThe laughs are as rare as snake foo yung .\n10502\tFor a film that celebrates radical , nonconformist values , What to Do in Case of Fire ?\n10503\tlazily and glumly settles into a most traditional , reserved kind of filmmaking .\n10504\tKnockaround Guys plays like a student film by two guys who desperately want to be Quentin Tarantino when they grow up .\n10505\tBut they lack their idol 's energy and passion for detail .\n10506\tMattei so completely loses himself to the film 's circular structure to ever offer any insightful discourse on , well , Love in the Time of Money .\n10507\tIt briefly flirts with player masochism , but the point of real interest - -- audience sadism -- is evaded completely .\n10508\tHolland lets things peter out midway , but it 's notably better acted -- and far less crass - than some other recent efforts in the burgeoning genre of films about black urban professionals .\n10509\tFor every articulate player , such as skateboarder Tony Hawk or BMX rider Mat Hoffman , are about a half dozen young Turks angling to see how many times they can work the words `` radical '' or `` suck '' into a sentence .\n10510\tThere 's not a fresh idea at the core of this tale .\n10511\tAn impenetrable and insufferable ball of pseudo-philosophic twaddle .\n10512\tIt 's unfortunate that Wallace , who wrote Gibson 's Braveheart as well as the recent Pearl Harbor , has such an irrepressible passion for sappy situations and dialogue .\n10513\tI liked the movie , but I know I would have liked it more if it had just gone that one step further .\n10514\tI 'm left slightly disappointed that it did n't .\n10515\tDreary tale of middle-class angst\n10516\tFor a movie about the power of poetry and passion , there is precious little of either .\n10517\t-LRB- Jackson and Bledel -RRB- seem to have been picked not for their acting chops , but for their looks and appeal to the pre-teen crowd .\n10518\tLillard and Cardellini earn their Scooby Snacks , but not anyone else .\n10519\tLike Schindler 's List , The Grey Zone attempts to be grandiloquent , but ends up merely pretentious -- in a grisly sort of way .\n10520\tAn unremittingly ugly movie to look at , listen to , and think about , it is quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film .\n10521\t-LRB- Screenwriter -RRB- Pimental took the Farrelly Brothers comedy and feminized it , but it is a rather poor imitation .\n10522\tIt 's kind of sad that so many people put so much time and energy into this turkey .\n10523\tFriday After Next is a lot more bluster than bite .\n10524\tIts juxtaposition of overwrought existentialism and stomach-churning gore will have you forever on the verge of either cracking up or throwing up .\n10525\tA decidedly mixed bag .\n10526\tThere are cheesy backdrops , ridiculous action sequences , and many tired jokes about men in heels .\n10527\tIce Cube is n't quite out of ripe screwball ideas , but Friday After Next spreads them pretty thin .\n10528\tNot everything in the film works , including its somewhat convenient ending .\n10529\tThe characters , cast in impossibly contrived situations , are totally estranged from reality .\n10530\tEverything else about High Crimes is , like the military system of justice it portrays , tiresomely regimented .\n10531\tJust dreadful .\n10532\tI do n't blame Eddie Murphy but should n't Owen Wilson know a movie must have a story and a script ?\n10533\tSweet Home Alabama certainly wo n't be remembered as one of -LRB- Witherspoon 's -RRB- better films .\n10534\thard as this may be to believe , Here on Earth , a surprisingly similar teen drama , was a better film .\n10535\tThis is just lazy writing .\n10536\tEven kids deserve better .\n10537\tThe pretensions -- and disposable story -- sink the movie .\n10538\tAnd Diesel is n't the actor to save it .\n10539\tBravo reveals the true intent of her film by carefully selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda .\n10540\t... a preachy parable stylized with a touch of John Woo bullet ballet .\n10541\tFrank Capra played this story straight .\n10542\tBut the 2002 film does n't really believe in it , and breaks the mood with absurdly inappropriate ` comedy ' scenes .\n10543\tHow about starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap ?\n10544\tThe problem is that for the most part , the film is deadly dull .\n10545\tHandled correctly , Wilde 's play is a masterpiece of elegant wit and artifice .\n10546\tHere , alas , it collapses like an overcooked soufflÃ© .\n10547\t`` Sorority Boys '' was funnier , and that movie was pretty bad .\n10548\tA bizarre piece of work , with premise and dialogue at the level of kids ' television and plot threads as morose as teen pregnancy , rape and suspected murder\n10549\tPaul Bettany is good at being the ultra-violent gangster wannabe , but the movie is certainly not number 1 .\n10550\tIt 's a gag that 's worn a bit thin over the years , though Do n't Ask still finds a few chuckles .\n10551\tAn uplifting drama ... What Antwone Fisher is n't , however , is original .\n10552\tOften likable , but just as often it 's meandering , low on energy , and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy .\n10553\tCertain to be distasteful to children and adults alike , Eight Crazy Nights is a total misfire .\n10554\tElaborate special effects take centre screen , so that the human story is pushed to one side .\n10555\tShowtime is n't particularly assaultive , but it can still make you feel that you never want to see another car chase , explosion or gunfight again .\n10556\tAll the characters are clinically depressed and have abandoned their slim hopes and dreams .\n10557\tThis Tuxedo ... should have been sent back to the tailor for some major alterations .\n10558\tI have no problem with `` difficult '' movies , or movies that ask the audience to meet them halfway and connect the dots instead of having things all spelled out .\n10559\tBut first , you have to give the audience a reason to want to put for that effort\n10560\tBeen there , done that ... a thousand times already , and better .\n10561\tWhat 's most offensive is n't the waste of a good cast , but the film 's denial of sincere grief and mourning in favor of bogus spiritualism .\n10562\tSunk by way too much indulgence of scene-chewing , teeth-gnashing actorliness .\n10563\tFans of Plympton 's shorts may marginally enjoy the film , but it is doubtful this listless feature will win him any new viewers .\n10564\tBarrels along at the start before becoming mired in sentimentality .\n10565\tNone of this sounds promising and , indeed , the first half of Sorority Boys is as appalling as any ` comedy ' to ever spill from a projector 's lens .\n10566\tThe kind of movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics .\n10567\t` Punch-Drunk Love is so convinced of its own brilliance that , if it were a person , you 'd want to smash its face in . '\n10568\tAt once overly old-fashioned in its sudsy plotting and heavy-handed in its effort to modernize it with encomia to diversity and tolerance .\n10569\tThe trashy teen-sleaze equivalent of Showgirls .\n10570\tWhile the production details are lavish , film has little insight into the historical period and its artists , particularly in how Sand developed a notorious reputation .\n10571\tA crass and insulting homage to great films like Some Like It Hot and the John Wayne classics .\n10572\tWhat 's the most positive thing that can be said about the new Rob Schneider vehicle ?\n10573\tWell , it 's not as pathetic as The Animal .\n10574\tWith all the sympathy , empathy and pity fogging up the screen ... His Secret Life enters the land of unintentional melodrama and tiresome love triangles .\n10575\tThe problematic characters and overly convenient plot twists foul up Shum 's good intentions .\n10576\tWhat ` Blade Runner ' would 've looked like as a low-budget series on a UHF channel .\n10577\tHas all the values of a straight-to-video movie , but because it has a bigger-name cast , it gets a full theatrical release .\n10578\tWith its lackadaisical plotting and mindless action , All About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s .\n10579\tIt never quite makes it to the boiling point , but manages to sustain a good simmer for most of its running time .\n10580\tLoud , silly , stupid and pointless .\n10581\tMandel Holland 's direction is uninspired , and his scripting unsurprising , but the performances by Phifer and Black are ultimately winning .\n10582\tYou 'll find yourself wishing that you and they were in another movie .\n10583\tA yawn-provoking little farm melodrama .\n10584\tDid no one on the set have a sense of humor , or did they not have the nerve to speak up ?\n10585\tSeriously , rent the Disney version .\n10586\tAs David Letterman and The Onion have proven , the worst of tragedies can be fertile sources of humor , but Lawrence has only a fleeting grasp of how to develop them .\n10587\tLike its parade of predecessors , this Halloween is a gory slash-fest .\n10588\tIt ca n't escape its past , and it does n't want to .\n10589\t`` Abandon '' will leave you wanting to abandon the theater .\n10590\tProblem is , we have no idea what in creation is going on .\n10591\tA live-action cartoon , a fast-moving and cheerfully simplistic 88 minutes of exaggerated action put together with the preteen boy in mind .\n10592\tA loquacious and dreary piece of business .\n10593\tWhat the audience feels is exhaustion , from watching a movie that is dark -LRB- dark green , to be exact -RRB- , sour , bloody and mean .\n10594\tdirector Hoffman , his writer and Kline 's agent should serve detention\n10595\tDodgy mixture of cutesy romance , dark satire and murder mystery .\n10596\tMeticulously mounted , exasperatingly well-behaved film , which ticks off Kahlo 's lifetime milestones with the dutiful precision of a tax accountant .\n10597\tTime of Favor could have given audiences the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation .\n10598\tI 'm not sure which will take longer to heal : the welt on Johnny Knoxville 's stomach from a riot-control projectile or my own tortured psyche .\n10599\tWhile Serving Sara does have a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza , there 's nothing here to match that movie 's intermittent moments of inspiration .\n10600\tI 'm not sure which is worse : the poor acting by the ensemble cast , the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen .\n10601\tThe only reason you should see this movie is if you have a case of masochism and an hour and a half to blow .\n10602\tWhatever about warning kids about the dangers of ouija boards , someone should dispense the same advice to film directors .\n10603\tAs with so many merchandised-to-the-max movies of this type , more time appears to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script , which has a handful of smart jokes and not much else .\n10604\tThe Irwins ' scenes are fascinating ; the movie as a whole is cheap junk and an insult to their death-defying efforts .\n10605\tIf routine action and jokes like this are your cup of tea , then pay your $ 8 and get ready for the big shear .\n10606\tThis is one baaaaaaaaad movie .\n10607\tA man leaving the screening said the film was better than Saving Private Ryan .\n10608\tHe may have meant the Internet short Saving Ryan 's Privates .\n10609\tBut Windtalkers does n't beat that one , either .\n10610\tMay puzzle his most ardent fans .\n10611\tStarts as a tart little lemon drop of a movie and ends up as a bitter pill .\n10612\tWe never feel anything for these characters , and as a result the film is basically just a curiosity .\n10613\tThose unfamiliar with Mormon traditions may find The Singles Ward occasionally bewildering .\n10614\tRitchie may not have a novel thought in his head , but he knows how to pose Madonna .\n10615\tThe story , touching though it is , does not quite have enough emotional resonance or variety of incident to sustain a feature , and even at 85 minutes it feels a bit long .\n10616\tFeels like the work of an artist who is simply tired -- of fighting the same fights , of putting the weight of the world on his shoulders , of playing with narrative form .\n10617\tWhile you have to admit it 's semi-amusing to watch Robert DeNiro belt out `` When you 're a Jet , you 're a Jet all the way , '' it 's equally distasteful to watch him sing the lyrics to `` Tonight . ''\n10618\tThe whole mess boils down to a transparently hypocritical work that feels as though it 's trying to set the women 's liberation movement back 20 years . '\n10619\t... the cast portrays their cartoon counterparts well ... but quite frankly , Scoob and Shag do n't eat enough during the film . '\n10620\tMore of the same old garbage Hollywood has been trying to pass off as acceptable teen entertainment for some time now .\n10621\tTV skit-com material fervently deposited on the big screen .\n10622\t-LRB- Johnnie To and Wai Ka Fai are -RRB- sure to find an enthusiastic audience among American action-adventure buffs , but the film 's interests may be too narrow to attract crossover viewers .\n10623\tIf there was ever a movie where the upbeat ending feels like a copout , this is the one .\n10624\tIt 's as sorry a mess as its director 's diabolical debut , Mad Cows .\n10625\tAny attempts at nuance given by the capable cast is drowned out by director Jon Purdy 's sledgehammer sap .\n10626\tIts audacious ambitions sabotaged by pomposity , Steven Soderbergh 's space opera emerges as a numbingly dull experience .\n10627\tDespite some strong performances , never rises above the level of a telanovela .\n10628\tThis is a picture that Maik , the firebrand turned savvy ad man , would be envious of : it hijacks the heat of revolution and turns it into a sales tool .\n10629\tFeels slight , as if it were an extended short , albeit one made by the smartest kids in class .\n10630\tUnspeakable , of course , barely begins to describe the plot and its complications .\n10631\tVulgar is too optimistic a title .\n10632\tThe actors pull out all the stops in nearly every scene , but to diminishing effect .\n10633\tThe characters never change .\n10634\tIf The Last Man were the last movie left on earth , there would be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows .\n10635\tWelles groupie\\/scholar Peter Bogdanovich took a long time to do it , but he 's finally provided his own broadside at publishing giant William Randolph Hearst .\n10636\tMakes the same mistake as the music industry it criticizes , becoming so slick and watered-down it almost loses what made you love it in the first place .\n10637\tEven as I valiantly struggled to remain interested , or at least conscious , I could feel my eyelids ... getting ... very ... heavy ...\n10638\tA bad movie that happened to good actors .\n10639\tBoasts eye-catching art direction but has a forcefully quirky tone that quickly wears out its limited welcome .\n10640\tScreenwriter Dan Schneider and director Shawn Levy substitute volume and primary colors for humor and bite .\n10641\tOversexed , at times overwrought comedy\\/drama that offers little insight into the experience of being forty , female and single .\n10642\tThat such a horrible movie could have sprung from such a great one is one of the year 's worst cinematic tragedies .\n10643\tIt all starts to smack of a Hallmark Hall of Fame , with a few four letter words thrown in that are generally not heard on television .\n10644\tRarely has a film 's title served such dire warning .\n10645\tIf you saw Benigni 's Pinocchio at a public park , you 'd grab your kids and run and then probably call the police .\n10646\tThe animation is competent , and some of the gags are quite funny , but Jonah ... never shakes the oppressive , morally superior good-for-you quality that almost automatically accompanies didactic entertainment .\n10647\tThe pace of the film is very slow -LRB- for obvious reasons -RRB- and that too becomes off-putting .\n10648\tMr. Wollter and Ms. Seldhal give strong and convincing performances , but neither reaches into the deepest recesses of the character to unearth the quaking essence of passion , grief and fear .\n10649\tShafer 's feature does n't offer much in terms of plot or acting .\n10650\tIn his role of observer of the scene , Lawrence sounds whiny and defensive , as if his life-altering experiences made him bitter and less mature .\n10651\t-LRB- T -RRB- he ideas of Revolution # 9 are more compelling than the execution\n10652\tThe film did n't convince me that Calvin Jr. 's Barbershop represents some sort of beacon of hope in the middle of Chicago 's South Side .\n10653\tWhat happens when something goes bump in the night and nobody cares ?\n10654\tDespite some comic sparks , Welcome to Collinwood never catches fire .\n10655\tDirector George Hickenlooper has had some success with documentaries , but here his sense of story and his juvenile camera movements smack of a film school undergrad , and his maudlin ending might not have gotten him into film school in the first place .\n10656\tShows moments of promise but ultimately succumbs to cliches and pat storytelling .\n10657\tEven accepting this in the right frame of mind can only provide it with so much leniency .\n10658\tSome Body is a shaky , uncertain film that nevertheless touches a few raw nerves .\n10659\tAll the small moments and flashbacks do n't add up to much more than trite observations on the human condition .\n10660\t-LRB- A -RRB- stale retread of the '53 original .\n10661\tOne thing 's for sure -- if George Romero had directed this movie , it would n't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head .\n10662\tFor dance completists only .\n10663\tSpreads itself too thin , leaving these actors , as well as the members of the commune , short of profound characterizations\n10664\tIt would n't matter so much that this arrogant Richard Pryor wannabe 's routine is offensive , puerile and unimaginatively foul-mouthed if it was at least funny .\n10665\tThe locale ... remains far more interesting than the story at hand .\n10666\tYo , it 's The Days Of Our Lives meets Electric Boogaloo .\n10667\tI liked the original short story but this movie , even at an hour and twenty-some minutes , it 's too long and it goes nowhere .\n10668\tThis little film is so slovenly done , so primitive in technique , that it ca n't really be called animation .\n10669\tMakes 98 minutes feel like three hours .\n10670\tHawke 's film , a boring , pretentious waste of nearly two hours , does n't tell you anything except that the Chelsea Hotel today is populated by whiny , pathetic , starving and untalented artistes .\n10671\tAspires to the cracked lunacy of The Adventures of Buckaroo Banzai , but thanks to an astonishingly witless script ends up more like The Adventures of Ford Fairlane .\n10672\tReal-life strongman Ahola lacks the charisma and ability to carry the film on his admittedly broad shoulders .\n10673\tThe title , alone , should scare any sane person away .\n10674\tLow comedy does n't come much lower .\n10675\tAppropriately cynical social commentary aside , # 9 never quite ignites .\n10676\tIt 's crap on a leash -- far too polite to scale the lunatic heights of Joe Dante 's similarly styled Gremlins .\n10677\tOne of the most depressing movie-going experiences I can think of is to sit through about 90 minutes of a so-called ` comedy ' and not laugh once .\n10678\tThis is the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream .\n10679\tLet 's face it -- there are n't many reasons anyone would want to see Crossroads if they 're not big fans of teen pop kitten Britney Spears .\n10680\tA loud , brash and mainly unfunny high school comedy .\n10681\tAn exceptionally dreary and overwrought bit of work , every bit as imperious as Katzenberg 's The Prince of Egypt from 1998 .\n10682\tThe movie is so resolutely cobbled together out of older movies that it even uses a totally unnecessary prologue , just because it seems obligatory .\n10683\tThe movie 's vision of a white American zealously spreading a Puritanical brand of Christianity to South Seas islanders is one only a true believer could relish .\n10684\tMaid in Manhattan proves that it 's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies .\n10685\tA fairly harmless but ultimately lifeless feature-length afterschool special .\n10686\tI ca n't remember the last time I saw a movie where I wanted so badly for the protagonist to fail .\n10687\t... the whole thing succeeded only in making me groggy .\n10688\tLike most of Jaglom 's films , some of it is honestly affecting , but more of it seems contrived and secondhand .\n10689\tOne long , numbing action sequence made up mostly of routine stuff Yuen has given us before .\n10690\tForgettable , if good-hearted , movie .\n10691\tThe film 's most improbable feat ?\n10692\tIt did n't go straight to video .\n10693\t... about as exciting to watch as two last-place basketball teams playing one another on the final day of the season .\n10694\tThe Chateau ... is less concerned with cultural and political issues than doting on its eccentric characters .\n10695\tCruel and inhuman cinematic punishment ... simultaneously degrades its characters , its stars and its audience .\n10696\tIt 's not too fast and not too slow .\n10697\tIt 's not too racy and it 's not too offensive .\n10698\tIt 's not too much of anything .\n10699\tThe great pity is that those responsible did n't cut their losses -- and ours -- and retitle it The Adventures of Direct-to-Video Nash , and send it to its proper home .\n10700\tAbout as original as a gangster sweating bullets while worrying about a contract on his life .\n10701\tAn empty shell of an epic rather than the real deal .\n10702\tWe could have expected a little more human being , and a little less product .\n10703\tInstead of using George and Lucy 's most obvious differences to ignite sparks , Lawrence desperately looks elsewhere , seizing on George 's haplessness and Lucy 's personality tics .\n10704\tWhether Quitting will prove absorbing to American audiences is debatable .\n10705\tBecomes a bit of a mishmash : a tearjerker that does n't and a thriller that wo n't .\n10706\tFamily togetherness takes a back seat to inter-family rivalry and workplace ambition ... whole subplots have no explanation or even plot relevance .\n10707\tGrant is n't Cary and Bullock is n't Katherine .\n10708\tLike a fish that 's lived too long , Austin Powers in Goldmember has some unnecessary parts and is kinda wrong in places .\n10709\tTwo tedious acts light on great scares and a good surprise ending .\n10710\tShyamalan should stop trying to please his mom .\n10711\tThe entire movie is in need of a scented bath .\n10712\tI 'm sorry to say that this should seal the deal - Arnold is not , nor will he be , back .\n10713\tThe story of Trouble Every Day ... is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film , and the movie 's fragmentary narrative style makes piecing the story together frustrating difficult .\n10714\tA Movie to Forget\n10715\tFor all of its insights into the dream world of teen life , and its electronic expression through cyber culture , the film gives no quarter to anyone seeking to pull a cohesive story out of its 2Â 1\\/2 - hour running time .\n10716\tEnough is not a bad movie , just mediocre .\n10717\tThe performances are so overstated , the effect comes off as self-parody .\n10718\tIt looks good , but it is essentially empty .\n10719\tThe film never finds its tone and several scenes run too long .\n10720\tThe idea is more interesting than the screenplay , which lags badly in the middle and lurches between not-very-funny comedy , unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run .\n10721\tVan Wilder has a built-in audience , but only among those who are drying out from spring break and are still unconcerned about what they ingest .\n10722\tIt 's hard to believe that something so short could be so flabby .\n10723\tDo we really need another film that praises female self-sacrifice ?\n10724\tThe major problem with Windtalkers is that the bulk of the movie centers on the wrong character .\n10725\tTennessee Williams by way of Oprah 's Book Club .\n10726\tSo verbally flatfooted and so emotionally predictable or bland that it plays like the standard made-for-TV movie .\n10727\tThe entire point of a shaggy dog story , of course , is that it goes nowhere , and this is classic nowheresville in every sense .\n10728\tStale and clichÃ©d to a fault .\n10729\tThis film is too busy hitting all of its assigned marks to take on any life of its own .\n10730\tWatching junk like this induces a kind of abstract guilt , as if you were paying dues for good books unread , fine music never heard .\n10731\tThe script feels as if it started to explore the obvious voyeuristic potential of ` hypertime ' but then backed off when the producers saw the grosses for Spy Kids .\n10732\tStarts off witty and sophisticated and you want to love it -- but filmmaker Yvan Attal quickly writes himself into a corner .\n10733\tSome Like It Hot on the Hardwood proves once again that a man in drag is not in and of himself funny .\n10734\tUnfortunately , contrived plotting , stereotyped characters and Woo 's over-the-top instincts as a director undermine the moral dilemma at the movie 's heart .\n10735\tWitless and utterly pointless .\n10736\tWhen ` science fiction ' takes advantage of the fact that its intended audience has n't yet had much science , it does a disservice to the audience and to the genre .\n10737\tShow me the mugging .\n10738\tRepresents something very close to the nadir of the thriller\\/horror genre .\n10739\tVisually sumptuous but intellectually stultifying .\n10740\tAs a feature-length film , it wears out its welcome as tryingly as the title character .\n10741\tA guilty pleasure at best , and not worth seeing unless you want to laugh at it .\n10742\tA sleep-inducing thriller with a single twist that everyone except the characters in it can see coming a mile away .\n10743\tWith a `` Spy Kids '' sequel opening next week , why bother with a contemptible imitator starring a `` SNL '' has-been acting like an 8-year-old channeling Roberto Benigni ?\n10744\tIt 's just rather leaden and dull .\n10745\tLacks the visual flair and bouncing bravado that characterizes better hip-hop clips and is content to recycle images and characters that were already tired 10 years ago .\n10746\tStatham employs an accent that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British .\n10747\tInstead of trying to bust some blondes , -LRB- Diggs -RRB- should be probing why a guy with his talent ended up in a movie this bad .\n10748\tInitial strangeness inexorably gives way to rote sentimentality and mystical tenderness becomes narrative expedience .\n10749\tDe Ayala is required to supply too much of the energy in a film that is , overall , far too staid for its subject matter .\n10750\tDismally dull sci-fi comedy .\n10751\tThere 's surely something wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits .\n10752\tWhen one hears Harry Shearer is going to make his debut as a film director , one would hope for the best\n10753\tThe leads we are given here are simply too bland to be interesting .\n10754\t-LRB- Toback 's -RRB- fondness for fancy split-screen , stuttering editing and pompous references to Wittgenstein and Kirkegaard ... blends uneasily with the titillating material .\n10755\tAdam Sandler 's 8 Crazy Nights is 75 wasted minutes of Sandler as the voice-over hero in Columbia Pictures ' perverse idea of an animated holiday movie .\n10756\tessentially `` Fatal Attraction '' remade for viewers who were in diapers when the original was released in 1987 .\n10757\t... this story gets sillier , not scarier , as it goes along ...\n10758\tEven a hardened voyeur would require the patience of Job to get through this interminable , shapeless documentary about the swinging subculture .\n10759\tThe film 's hero is a bore and his innocence soon becomes a questionable kind of inexcusable dumb innocence .\n10760\tA singularly off-putting romantic comedy .\n10761\tThis is an exercise not in biography but in hero worship .\n10762\tIt all comes down to whether you can tolerate Leon Barlow .\n10763\tI ca n't .\n10764\tIn the spirit of the season , I assign one bright shining star to Roberto Benigni 's Pinocchio -- but I guarantee that no wise men will be following after it .\n10765\tCheck your brain and your secret agent decoder ring at the door because you do n't want to think too much about what 's going on .\n10766\tThe movie does has some entertainment value - how much depends on how well you like Chris Rock .\n10767\tA movie that seems motivated more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story .\n10768\tA culture clash comedy only half as clever as it thinks it is .\n10769\tThe logic of it all will be Greek to anyone not predisposed to the movie 's rude and crude humor .\n10770\tAs self-aware movies go , Who is Cletis Tout ?\n10771\tis clever enough , though thin writing proves its undoing .\n10772\tStarts out strongly before quickly losing its focus , point and purpose in a mess of mixed messages , over-blown drama and Bruce Willis with a scar .\n10773\t... a fascinating curiosity piece -- fascinating , that is , for about ten minutes .\n10774\tAfter that it becomes long and tedious like a classroom play in a college history course .\n10775\tDirector Jay Russell weighs down his capricious fairy-tale with heavy sentiment and lightweight meaning .\n10776\tThere are many things that solid acting can do for a movie , but crafting something promising from a mediocre screenplay is not one of them .\n10777\tIts screenplay serves as auto-critique , and its clumsiness as its own most damning censure .\n10778\tAt times , it actually hurts to watch .\n10779\tNemesis suffers from a paunchy midsection , several plodding action sequences and a wickedly undramatic central theme .\n10780\tThe jokes are telegraphed so far in advance they must have been lost in the mail .\n10781\t-LRB- Tries -RRB- to parody a genre that 's already a joke in the United States .\n10782\tThe movie is the equivalent of French hip-hop , which also seems to play on a 10-year delay .\n10783\tA beyond-lame satire , Teddy Bears ' Picnic ranks among the most pitiful directing debuts by an esteemed writer-actor .\n10784\tI 've never seen -LRB- a remake -RRB- do anything as stomach-turning as the way Adam Sandler 's new movie rapes , pillages and incinerates Frank Capra 's classic ...\n10785\tHollywood 's answer to an air ball .\n10786\tAnd people make fun of me for liking Showgirls .\n10787\tSuch a wildly uneven hit-and-miss enterprise , you ca n't help suspecting that it was improvised on a day-to-day basis during production .\n10788\tA weird little movie that 's amusing enough while you watch it , offering fine acting moments and pungent insights into modern L.A. 's show-biz and media subcultures .\n10789\tBut it does n't leave you with much .\n10790\tI 'm convinced I could keep a family of five blind , crippled , Amish people alive in this situation better than these British soldiers do at keeping themselves kicking .\n10791\tLike Mike is a slight and uninventive movie : Like the exalted Michael Jordan referred to in the title , many can aspire but none can equal .\n10792\tThere is nothing funny in this every-joke-has - been-told-a - thousand-times - before movie .\n10793\tAlways destined to be measured against Anthony Asquith 's acclaimed 1952 screen adaptation .\n10794\tThis is standard crime drama fare ... instantly forgettable and thoroughly dull .\n10795\tThere 's some outrageously creative action in The Transporter ... -LRB- b -RRB- ut by the time Frank parachutes down onto a moving truck , it 's just another cartoon with an unstoppable superman .\n10796\tOne of those based-on-truth stories that persuades you , with every scene , that it could never really have happened this way .\n10797\tFrom its nauseating spinning credits sequence to a very talented but underutilized supporting cast , Bartleby squanders as much as it gives out .\n10798\tYet another genre exercise , Gangster No. 1 is as generic as its title .\n10799\tDespite the holes in the story and the somewhat predictable plot , moments of the movie caused me to jump in my chair ...\n10800\tThere 's an admirable rigor to Jimmy 's relentless anger , and to the script 's refusal of a happy ending , but as those monologues stretch on and on , you realize there 's no place for this story to go but down .\n10801\tOnce again , the intelligence of gay audiences has been grossly underestimated , and a meaty plot and well-developed characters have been sacrificed for skin and flash that barely fizzle .\n10802\tA lightweight , uneven action comedy that freely mingles French , Japanese and Hollywood cultures .\n10803\tSuch a fine idea for a film , and such a stultifying , lifeless execution .\n10804\t-LRB- Allen 's -RRB- best works understand why snobbery is a better satiric target than middle-America diversions could ever be .\n10805\tThis overlong infomercial , due out on video before month 's end , is tepid and tedious .\n10806\tAn ambitious , guilt-suffused melodrama crippled by poor casting .\n10807\tRarely has sex on screen been so aggressively anti-erotic .\n10808\tA dull , inconsistent , dishonest female bonding picture .\n10809\tSo much about the film is loopy and ludicrous ... that it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened .\n10810\tA disappointment for a movie that should have been the ultimate IMAX trip .\n10811\tDoes little to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon .\n10812\tThis Sade is hardly a perverse , dangerous libertine and agitator -- which would have made for better drama .\n10813\tHe 's just a sad aristocrat in tattered finery , and the film seems as deflated as he does .\n10814\tThe film 's needlessly opaque intro takes its doe-eyed Crudup out of pre-9 \\/ 11 New York and onto a cross-country road trip of the Homeric kind .\n10815\tIt 's as if a bored Cage spent the duration of the film 's shooting schedule waiting to scream : `` Got AIDS yet ? ''\n10816\tIn a strange way , Egoyan has done too much .\n10817\tHe 's worked too hard on this movie .\n10818\tThe film has the thrown-together feel of a summer-camp talent show : hastily written , underrehearsed , arbitrarily plotted and filled with crude humor and vulgar innuendo .\n10819\tThe last three narcissists left on earth compete for each others ' affections .\n10820\tA clash between the artificial structure of the story and the more contemporary , naturalistic tone of the film ...\n10821\tThe movie 's messages are quite admirable , but the story is just too clichÃ©d and too often strains credulity .\n10822\tWhat we have here is n't a disaster , exactly , but a very handsomely produced let-down .\n10823\tThe script was reportedly rewritten a dozen times -- either 11 times too many or else too few .\n10824\tA shoddy male hip hop fantasy filled with guns , expensive cars , lots of naked women and Rocawear clothing .\n10825\tTo the filmmakers , Ivan is a prince of a fellow , but he comes across as shallow and glib though not mean-spirited , and there 's no indication that he 's been responsible for putting together any movies of particular value or merit .\n10826\tThis is a movie filled with unlikable , spiteful idiots ; whether or not their friendship is salvaged makes no difference in the least .\n10827\tIt 's as if Allen , at 66 , has stopped challenging himself .\n10828\tScotland , PA is entirely too straight-faced to transcend its clever concept .\n10829\tA movie that the less charitable might describe as a castrated cross between Highlander and Lolita .\n10830\tNot only does LeBlanc make one spectacularly ugly-looking broad , but he appears miserable throughout as he swaggers through his scenes .\n10831\tThere 's little to recommend Snow Dogs , unless one considers cliched dialogue and perverse escapism a source of high hilarity .\n10832\tIt 's deep-sixed by a compulsion to catalog every bodily fluids gag in There 's Something About Mary and devise a parallel clone-gag .\n10833\tThe film rehashes several old themes and is capped with pointless extremes -- it 's insanely violent and very graphic .\n10834\tSorority Boys , which is as bad at it is cruel , takes every potential laugh and stiletto-stomps the life out of it .\n10835\tHere the love scenes all end in someone screaming .\n10836\tMaybe there 's a metaphor here , but figuring it out would n't make Trouble Every Day any better .\n10837\tThis is the first film I 've ever seen that had no obvious directing involved .\n10838\tFans of so-bad-they 're - good cinema may find some fun in this jumbled mess .\n10839\tWeiss and Speck never make a convincing case for the relevance of these two 20th-century footnotes .\n10840\tSheridan is painfully bad , a fourth-rate Jim Carrey who does n't understand the difference between dumb fun and just plain dumb .\n10841\tPresents nothing special and , until the final act , nothing overtly disagreeable .\n10842\tThe most excruciating 86 minutes one might sit through this summer that do not involve a dentist drill .\n10843\tWas that movie nothing more than a tepid exercise in trotting out a formula that worked five years ago but has since lost its fizz ?\n10844\tIt goes on for too long and bogs down in a surfeit of characters and unnecessary subplots .\n10845\tIt 's absolutely amazing how first-time director Kevin Donovan managed to find something new to add to the canon of Chan .\n10846\tMake Chan 's action sequences boring .\n10847\tYou ... get a sense of good intentions derailed by a failure to seek and strike just the right tone .\n10848\t` In this poor remake of such a well loved classic , Parker exposes the limitations of his skill and the basic flaws in his vision . '\n10849\tIt 's the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn .\n10850\tThe film 's final hour , where nearly all the previous unseen material resides , is unconvincing soap opera that Tornatore was right to cut .\n10851\tThe movie does such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating .\n10852\tI found it slow , predictable and not very amusing .\n10853\tDirector Yu seems far more interested in gross-out humor than in showing us well-thought stunts or a car chase that we have n't seen 10,000 times .\n10854\tViewers will need all the luck they can muster just figuring out who 's who in this pretentious mess .\n10855\tA pint-sized ` Goodfellas ' designed to appeal to the younger set , it 's not a very good movie in any objective sense , but it does mostly hold one 's interest .\n10856\tGet out your pooper-scoopers .\n10857\tWhile the material is slight , the movie is better than you might think .\n10858\tIt 's definitely not made for kids or their parents , for that matter , and I think even fans of Sandler 's comic taste may find it uninteresting .\n10859\tSheridan seems terrified of the book 's irreverent energy , and scotches most of its Ã©lan , humor , bile , and irony .\n10860\tMore busy than exciting , more frantic than involving , more chaotic than entertaining .\n10861\tThere are more shots of children smiling for the camera than typical documentary footage which hurts the overall impact of the film .\n10862\tIt 's makes a better travelogue than movie .\n10863\tIt 's as if Solondz had two ideas for two movies , could n't really figure out how to flesh either out , so he just slopped ` em together here .\n10864\tThe fourth in a series that I 'll bet most parents had thought -- hoped !\n10865\t-- was a fad that had long since vanished .\n10866\tIt 's a long way from Orwell 's dark , intelligent warning cry -LRB- 1984 -RRB- to the empty stud knockabout of Equilibrium , and what once was conviction is now affectation .\n10867\tIts premise is smart , but the execution is pretty weary .\n10868\tThe holiday message of the 37-minute Santa vs. the Snowman leaves a lot to be desired .\n10869\tmore precious than perspicacious\n10870\tIf you saw it on TV , you 'd probably turn it off , convinced that you had already seen that movie .\n10871\t-LRB- T -RRB- he script is n't up to the level of the direction , nor are the uneven performances by the cast members , who seem bound and determined to duplicate Bela Lugosi 's now-cliched vampire accent .\n10872\tIf this is cinema , I pledge allegiance to Cagney and Lacey .\n10873\tEnigma looks great , has solid acting and a neat premise .\n10874\tYet why it fails is a riddle wrapped in a mystery inside an enigma .\n10875\tMost of the characters come off as pantomimesque sterotypes .\n10876\tStarts promisingly but disintegrates into a dreary , humorless soap opera .\n10877\tWhile there 's likely very little crossover appeal to those without much interest in the Elizabethans -LRB- as well as rank frustration from those in the know about Rubbo 's dumbed-down tactics -RRB- , Much Ado About Something is an amicable endeavor .\n10878\tIt 's actually too sincere -- the crime movie equivalent of a chick flick .\n10879\tMost of the film feels conceived and shot on the fly -- like between lunch breaks for Shearer 's radio show and his Simpson voice-overs .\n10880\tPerry 's good and his is an interesting character , but `` Serving Sara '' has n't much more to serve than silly fluff .\n10881\tNor is it a romantic comedy .\n10882\tCulkin turns his character into what is basically an anti-Harry Potter -- right down to the Gryffindor scarf .\n10883\tMemorable for a peculiar malaise that renders its tension flaccid and , by extension , its surprises limp and its resolutions ritual .\n10884\tIt 's a documentary that says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good .\n10885\tIn the not-too-distant future , movies like Ghost Ship will be used as analgesic balm for overstimulated minds .\n10886\tRight now , they 're merely signposts marking the slow , lingering death of imagination .\n10887\tThe movie 's biggest shocks come from seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell .\n10888\tLike most movies about the pitfalls of bad behavior ... Circuit gets drawn into the party .\n10889\tIt appears as if even the filmmakers did n't know what kind of movie they were making .\n10890\tBeneath the uncanny , inevitable and seemingly shrewd facade of movie-biz farce ... lies a plot cobbled together from largely flat and uncreative moments .\n10891\tSnipes relies too much on a scorchingly plotted dramatic scenario for its own good .\n10892\tPiccoli 's performance is amazing , yes , but the symbols of loss and denial and life-at-arm 's - length in the film seem irritatingly transparent .\n10893\tStarts out mediocre , spirals downward , and thuds to the bottom of the pool with an utterly incompetent conclusion .\n10894\tNicolas Cage is n't the first actor to lead a group of talented friends astray , and this movie wo n't create a ruffle in what is already an erratic career .\n10895\tIt lacks the compassion , good-natured humor and the level of insight that made -LRB- Eyre 's -RRB- first film something of a sleeper success .\n10896\tThe result is good gossip , entertainingly delivered , yet with a distinctly musty odour , its expiry date long gone .\n10897\tA sustained fest of self-congratulation between actor and director that leaves scant place for the viewer .\n10898\tAll Analyze That proves is that there is really only one movie 's worth of decent gags to be gleaned from the premise .\n10899\tGreen ruins every single scene he 's in , and the film , while it 's not completely wreaked , is seriously compromised by that .\n10900\tThere 's not a comedic moment in this romantic comedy .\n10901\tThe story is predictable , the jokes are typical Sandler fare , and the romance with Ryder is puzzling .\n10902\tWallace directs with such patronising reverence , it turns the stomach .\n10903\tResurrection has the dubious distinction of being a really bad imitation of the really bad Blair Witch Project .\n10904\tPoor Ben Bratt could n't find stardom if MapQuest emailed him point-to-point driving directions .\n10905\tPretend like your SAT scores are below 120 and you might not notice the flaws .\n10906\tUnlike Trey Parker , Sandler does n't understand that the idea of exploiting molestation for laughs is funny , not actually exploiting it yourself .\n10907\tA fake street drama that keeps telling you things instead of showing them .\n10908\tAn empty , purposeless exercise .\n10909\tEarnest and tentative even when it aims to shock .\n10910\tHaneke 's script -LRB- from Elfriede Jelinek 's novel -RRB- is contrived , unmotivated , and psychologically unpersuasive , with an inconclusive ending .\n10911\tA sometimes incisive and sensitive portrait that is undercut by its awkward structure and a final veering toward melodrama .\n10912\tThose 24-and-unders looking for their own Caddyshack to adopt as a generational signpost may have to keep on looking .\n10913\tA distinctly mixed bag , the occasional bursts of sharp writing alternating with lots of sloppiness and the obligatory moments of sentimental ooze .\n10914\tWhat begins brightly gets bogged down over 140 minutes .\n10915\tUltimately , Jane learns her place as a girl , softens up and loses some of the intensity that made her an interesting character to begin with .\n10916\tAh-nuld 's action hero days might be over .\n10917\tIt 's clear why Deuces Wild , which was shot two years ago , has been gathering dust on MGM 's shelf .\n10918\tFeels like nothing quite so much as a middle-aged moviemaker 's attempt to surround himself with beautiful , half-naked women .\n10919\tWhen the precise nature of Matthew 's predicament finally comes into sharp focus , the revelation fails to justify the build-up .\n10920\tThis picture is murder by numbers , and as easy to be bored by as your ABC 's , despite a few whopping shootouts .\n10921\tHilarious musical comedy though stymied by accents thick as mud .\n10922\tIf you are into splatter movies , then you will probably have a reasonably good time with The Salton Sea .\n10923\tA dull , simple-minded and stereotypical tale of drugs , death and mind-numbing indifference on the inner-city streets .\n10924\tThe feature-length stretch ... strains the show 's concept .\n10925\tThis slender plot feels especially thin stretched over the nearly 80-minute running time .\n10926\tA film that will probably please people already fascinated by Behan but leave everyone else yawning with admiration .\n10927\tDavis the performer is plenty fetching enough , but she needs to shake up the mix , and work in something that does n't feel like a half-baked stand-up routine .\n10928\tThe densest distillation of Roberts ' movies ever made .\n10929\tUltimately , the film never recovers from the clumsy clichÃ© of the ugly American abroad , and the too-frosty exterior Ms. Paltrow employs to authenticate her British persona is another liability .\n10930\tA handsome but unfulfilling suspense drama more suited to a quiet evening on PBS than a night out at an AMC .\n10931\tTom Green and an Ivy League college should never appear together on a marquee , especially when the payoff is an unschooled comedy like Stealing Harvard , which fails to keep 80 minutes from seeming like 800 .\n10932\t-LRB- It -RRB- highlights not so much the crime lord 's messianic bent , but Spacey 's .\n10933\tMaster of Disguise runs for only 71 minutes and feels like three hours .\n10934\tA reworking of Die Hard and Cliffhanger but it 's nowhere near as exciting as either .\n10935\tSuffers from unlikable characters and a self-conscious sense of its own quirky hipness .\n10936\tA film without surprise geared toward maximum comfort and familiarity .\n10937\tFessenden continues to do interesting work , and it would be nice to see what he could make with a decent budget .\n10938\tBut the problem with Wendigo , for all its effective moments , is n't really one of resources .\n10939\tSpirit is a visual treat , and it takes chances that are bold by studio standards , but it lacks a strong narrative .\n10940\tIt stars schticky Chris Rock and stolid Anthony Hopkins , who seem barely in the same movie .\n10941\tTheir contrast is neither dramatic nor comic -- it 's just a weird fizzle .\n10942\tThis is a children 's film in the truest sense .\n10943\tIt 's packed with adventure and a worthwhile environmental message , so it 's great for the kids .\n10944\tParents , on the other hand , will be ahead of the plot at all times , and there is n't enough clever innuendo to fil\n10945\tThe niftiest trick perpetrated by The Importance of Being Earnest is the alchemical transmogrification of Wilde into Austen -- and a Hollywood-ized Austen at that .\n10946\tTykwer 's surface flash is n't just a poor fit with Kieslowski 's lyrical pessimism ; it completely contradicts everything Kieslowski 's work aspired to , including the condition of art .\n10947\tIce Age is the first computer-generated feature cartoon to feel like other movies , and that makes for some glacial pacing early on .\n10948\tToo slick and manufactured to claim street credibility .\n10949\tCherry Orchard is badly edited , often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a ` back story . '\n10950\tWhat ensues are much blood-splattering , mass drug-induced bowel evacuations , and none-too-funny commentary on the cultural distinctions between Americans and Brits .\n10951\tA dark comedy that goes for sick and demented humor simply to do so .\n10952\tThe movie is without intent .\n10953\tVisually exciting sci-fi film which suffers from a lackluster screenplay .\n10954\tWhile Hollywood Ending has its share of belly laughs -LRB- including a knockout of a closing line -RRB- , the movie winds up feeling like a great missed opportunity .\n10955\tIf The Full Monty was a freshman fluke , Lucky Break is -LRB- Cattaneo -RRB- sophomore slump .\n10956\tSandra Bullock and Hugh Grant make a great team , but this predictable romantic comedy should get a pink slip .\n10957\tAllegiance to Chekhov , which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard , is a particularly vexing handicap .\n10958\tYou expect more from director Michael Apted -LRB- Enigma -RRB- and screenwriter Nicholas Kazan -LRB- Reversal of Fortune -RRB- than this cliche pileup .\n10959\tThe first mistake , I suspect , is casting Shatner as a legendary professor and Kunis as a brilliant college student -- where 's Pauly Shore as the rocket scientist ?\n10960\tThe dramatic scenes are frequently unintentionally funny , and the action sequences -- clearly the main event -- are surprisingly uninvolving .\n10961\tReplacing John Carpenter 's stylish tracking shots is degraded , handheld Blair Witch video-cam footage .\n10962\tOf all the Halloween 's , this is the most visually unappealing .\n10963\tIt has the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references .\n10964\tDespite its dry wit and compassion , the film suffers from a philosophical emptiness and maddeningly sedate pacing .\n10965\t... feels as if -LRB- there 's -RRB- a choke leash around your neck so director Nick Cassavetes can give it a good , hard yank whenever he wants you to feel something .\n10966\tAttal pushes too hard to make this a comedy or serious drama .\n10967\tHe seems to want both , but succeeds in making neither .\n10968\tI could have used my two hours better watching Being John Malkovich again .\n10969\tIt 's not a bad plot ; but , unfortunately , the movie is nowhere near as refined as all the classic dramas it borrows from .\n10970\tGirlfriends are bad , wives are worse and babies are the kiss of death in this bitter Italian comedy .\n10971\tThe only young people who possibly will enjoy it are infants ... who might be distracted by the movie 's quick movements and sounds .\n10972\tThe film boasts at least a few good ideas and features some decent performances , but the result is disappointing .\n10973\tNo Such Thing breaks no new ground and treads old turf like a hippopotamus ballerina .\n10974\tUnfortunately , neither Sendak nor the directors are particularly engaging or articulate .\n10975\tA wishy-washy melodramatic movie that shows us plenty of sturm und drung , but explains its characters ' decisions only unsatisfactorily .\n10976\tBang !\n10977\tZoom !\n10978\tIt 's actually pretty funny , but in all the wrong places .\n10979\tLurid and less than lucid work .\n10980\tA wannabe comedy of manners about a brainy prep-school kid with a Mrs. Robinson complex founders on its own preciousness -- and squanders its beautiful women .\n10981\tAt a brief 42 minutes , we need more X and less blab .\n10982\tIf anything , see it for Karen Black , who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick .\n10983\tThis 90-minute dud could pass for Mike Tyson 's E !\n10984\tTrue Hollywood Story .\n10985\tThis is surely one of the most frantic , virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio .\n10986\tOnce the expectation of laughter has been quashed by whatever obscenity is at hand , even the funniest idea is n't funny .\n10987\tA porn film without the sex scenes .\n10988\tThe connected stories of Breitbart and Hanussen are actually fascinating , but the filmmaking in Invincible is such that the movie does not do them justice .\n10989\tA depressingly retrograde , ` post-feminist ' romantic comedy that takes an astonishingly condescending attitude toward women .\n10990\tReturn to Never Land is much more P.C. than the original version -LRB- no more racist portraits of Indians , for instance -RRB- , but the excitement is missing .\n10991\tBy the end , you just do n't care whether that cold-hearted snake Petrovich -LRB- that would be Reno -RRB- gets his comeuppance .\n10992\tJust bring on the Battle Bots , please !\n10993\tWhile it 's all quite tasteful to look at , the attention process tends to do a little fleeing of its own .\n10994\tBroder 's screenplay is shallow , offensive and redundant , with pitifully few real laughs .\n10995\tYes they can swim , the title is merely Anne-Sophie Birot 's off-handed way of saying girls find adolescence difficult to wade through .\n10996\tDon Michael Paul uses quick-cuts , -LRB- very -RRB- large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double -LRB- for Seagal -RRB- .\n10997\tSlow , silly and unintentionally hilarious .\n10998\tThe Sweetest Thing leaves a bitter taste .\n10999\tIn a big corner office in Hell , Satan is throwing up his hands in surrender , is firing his R&D people , and has decided he will just screen The Master of Disguise 24\\/7 .\n11000\tFor something as splendid-looking as this particular film , the viewer expects something special but instead gets -LRB- sci-fi -RRB- rehash .\n11001\tA thriller without a lot of thrills .\n11002\tThis stuck pig of a movie flails limply between bizarre comedy and pallid horror .\n11003\tAh , the travails of metropolitan life !\n11004\tAlas , another breathless movie about same !\n11005\tIn Moonlight Mile , no one gets shut out of the hug cycle .\n11006\tThough uniformly well acted , especially by young Ballesta and Galan -LRB- a first-time actor -RRB- , writer\\/director Achero Manas 's film is schematic and obvious .\n11007\tDone in mostly by a weak script that ca n't support the epic treatment .\n11008\tDespite its visual virtuosity , ` Naqoyqatsi ' is banal in its message and the choice of material to convey it .\n11009\tSlap her - she 's not funny !\n11010\tNo French people were harmed during the making of this movie , but they were insulted and the audience was put through torture for an hour and a half .\n11011\tThough its rather routine script is loaded with familiar situations , the movie has a cinematic fluidity and sense of intelligence that makes it work more than it probably should .\n11012\t`` One look at a girl in tight pants and big tits and you turn stupid ? ''\n11013\tUm ... is n't that the basis for the entire plot ?\n11014\t`` Not really as bad as you might think ! ''\n11015\tStrident and inelegant in its ` message-movie ' posturing .\n11016\tOne regards Reign of Fire with awe .\n11017\tWhat a vast enterprise has been marshaled in the service of such a minute idea .\n11018\tIt has the right approach and the right opening premise , but it lacks the zest and it goes for a plot twist instead of trusting the material .\n11019\tIts impressive images of crematorium chimney fires and stacks of dead bodies are undermined by the movie 's presentation , which is way too stagy .\n11020\tSeeing as the film lacks momentum and its position remains mostly undeterminable , the director 's experiment is a successful one .\n11021\tThe plot is romantic comedy boilerplate from start to finish .\n11022\tI suspect this is the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD .\n11023\tAn unfortunate title for a film that has nothing endearing about it .\n11024\tNinety minutes of Viva Castro !\n11025\tcan be as tiresome as 9 seconds of Jesse Helms ' anti- Castro rhetoric , which are included\n11026\tComes off as a long , laborious whine , the bellyaching of a paranoid and unlikable man .\n11027\tIt just goes to show , an intelligent person is n't necessarily an admirable storyteller .\n11028\tIn a 102-minute film , Aaliyah gets at most 20 minutes of screen time .\n11029\t... most viewers will wish there had been more of the `` Queen '' and less of the `` Damned . ''\n11030\tHopelessly inane , humorless and under-inspired .\n11031\tKapur fails to give his audience a single character worth rooting for -LRB- or worth rooting against , for that matter -RRB- .\n11032\tIt reduces the complexities to bromides and slogans and it gets so preachy-keen and so tub-thumpingly loud it makes you feel like a chump just for sitting through it .\n11033\tNone of this has the suavity or classical familiarity of Bond , but much of it is good for a laugh .\n11034\tThe problem with `` XXX '' is that its own action is n't very effective .\n11035\tA great script brought down by lousy direction .\n11036\tSame guy with both hats .\n11037\tBig mistake .\n11038\tA mediocre exercise in target demographics , unaware that it 's the butt of its own joke .\n11039\tDirector Kevin Bray excels in breaking glass and marking off the `` Miami Vice '' checklist of power boats , Latin music and dog tracks .\n11040\tHe does n't , however , deliver nearly enough of the show 's trademark style and flash .\n11041\tIn gleefully , thumpingly hyperbolic terms , it covers just about every cliche in the compendium about crass , jaded movie types and the phony baloney movie biz .\n11042\tThe Spalding Gray equivalent of a teen gross-out comedy .\n11043\tPerhaps even the SLC high command found writer-director Mitch Davis 's wall of kitsch hard going .\n11044\tAccording to Wendigo , ` nature ' loves the members of the upper class almost as much as they love themselves .\n11045\tAn encouraging effort from McCrudden\n11046\tThe romance between the leads is n't as compelling or as believable as it should be .\n11047\tIf I could have looked into my future and saw how bad this movie was , I would go back and choose to skip it .\n11048\tFortunately , you still have that option .\n11049\tSupposedly authentic account of a historical event that 's far too tragic to merit such superficial treatment .\n11050\tAdroit but finally a trifle flat , Mad Love does n't galvanize its outrage the way , say , Jane Campion might have done , but at least it possesses some .\n11051\tTo Blandly Go Where We Went 8 Movies Ago ...\n11052\tA slow-moving police-procedural thriller that takes its title all too literally .\n11053\tThis u-boat does n't have a captain .\n11054\tWith nary a glimmer of self-knowledge , -LRB- Crane -RRB- becomes more specimen than character -- and Auto Focus remains a chilly , clinical lab report .\n11055\tThis one aims for the toilet and scores a direct hit .\n11056\tDull , a road-trip movie that 's surprisingly short of both adventure and song .\n11057\tI walked away not really know who `` they '' were , what `` they '' looked like .\n11058\tWhy `` they '' were here and what `` they '' wanted and quite honestly , I did n't care .\n11059\tAfter several scenes of this tacky nonsense , you 'll be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions , especially because Half Past Dead is like The Rock on a Wal-Mart budget .\n11060\tA relatively effective little potboiler until its absurd , contrived , overblown , and entirely implausible finale .\n11061\tThe Country Bears wastes an exceptionally good idea .\n11062\tBut the movie that does n't really deliver for country music fans or for family audiences\n11063\tAdults will certainly want to spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio .\n11064\tAs for children , they wo n't enjoy the movie at all .\n11065\t... you can be forgiven for realizing that you 've spent the past 20 minutes looking at your watch and waiting for Frida to just die already .\n11066\tToo bad writer-director Adam Rifkin situates it all in a plot as musty as one of the Golden Eagle 's carpets .\n11067\tIt 's lazy for a movie to avoid solving one problem by trying to distract us with the solution to another .\n11068\tThe movie is genial but never inspired , and little about it will stay with you .\n11069\tThe movie obviously seeks to re-create the excitement of such '50s flicks as Jules Verne 's ' 20,000 Leagues Under the Sea ' and the George Pal version of H.G. Wells ' ` The Time Machine . '\n11070\tBut its storytelling prowess and special effects are both listless .\n11071\tDespite the opulent lushness of every scene , the characters never seem to match the power of their surroundings .\n11072\teven after 90 minutes of playing opposite each other Bullock and Grant still look ill at ease sharing the same scene .\n11073\tWhat should have been a painless time-killer becomes instead a grating endurance test .\n11074\tA bland , obnoxious 88-minute infomercial for Universal Studios and its ancillary products . . .\n11075\tlittle action , almost no suspense or believable tension , one-dimensional characters up the wazoo and sets that can only be described as sci-fi generic .\n11076\tThe movie strains to stay on the light , comic side of the issue , despite the difficulty of doing so when dealing with the destruction of property and , potentially , of life itself .\n11077\tThe Master of Disguise is awful .\n11078\tIt 's Pauly Shore awful .\n11079\tDo n't say you were n't warned .\n11080\tDisappointing in comparison to other recent war movies ... or any other John Woo flick for that matter .\n11081\tThe entire movie is filled with deja vu moments .\n11082\t` Opening up ' the play more has partly closed it down .\n11083\tWhat -LRB- Frei -RRB- gives us ... is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows .\n11084\tAn ugly , revolting movie .\n11085\tThe film is way too full of itself ; it 's stuffy and pretentious in a give-me-an-Oscar kind of way .\n11086\tThe movie is concocted and carried out by folks worthy of scorn , and the nicest thing I can say is that I ca n't remember a single name responsible for it .\n11087\tWatching `` Ending '' is too often like looking over the outdated clothes and plastic knickknacks at your neighbor 's garage sale .\n11088\tYou ca n't believe anyone would really buy this stuff .\n11089\tCertainly beautiful to look at , but its not very informative about its titular character and no more challenging than your average television biopic .\n11090\tIt desperately wants to be a wacky , screwball comedy , but the most screwy thing here is how so many talented people were convinced to waste their time .\n11091\tThe skills of a calculus major at M.I.T. are required to balance all the formulaic equations in the long-winded heist comedy Who Is Cletis Tout ?\n11092\tFrom the choppy editing to the annoying score to ` special effects ' by way of replacing objects in a character 's hands below the camera line , `` Besotted '' is misbegotten\n11093\tMy advice is to skip the film and pick up the soundtrack .\n11094\tA film that presents an interesting , even sexy premise then ruins itself with too many contrivances and goofy situations .\n11095\tFilled with low-brow humor , gratuitous violence and a disturbing disregard for life .\n11096\tdirected in a flashy , empty sub-music video style by a director so self-possessed he actually adds a period to his first name\n11097\tThe 70-year-old Godard has become , to judge from In Praise of Love , the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large without doing all that much to correct them .\n11098\tAn unsophisticated sci-fi drama that takes itself all too seriously .\n11099\tSolondz is without doubt an artist of uncompromising vision , but that vision is beginning to feel , if not morally bankrupt , at least terribly monotonous .\n11100\tHarvard Man is a semi-throwback , a reminiscence without nostalgia or sentimentality .\n11101\tSupposedly based upon real , or at least soberly reported incidents , the film ends with a large human tragedy .\n11102\tAlas , getting there is not even half the interest .\n11103\tWhile Hoffman 's performance is great , the subject matter goes nowhere .\n11104\tThe smash 'em - up , crash 'em - up , shoot 'em - up ending comes out of nowhere substituting mayhem for suspense .\n11105\tDeuces Wild treads heavily into Romeo and Juliet\\/West Side Story territory , where it plainly has no business going .\n11106\tHart 's War seems to want to be a character study , but apparently ca n't quite decide which character .\n11107\tTheological matters aside , the movie is so clumsily sentimental and ineptly directed it may leave you speaking in tongues .\n11108\tThis latest installment of the horror film franchise that is apparently as invulnerable as its trademark villain has arrived for an incongruous summer playoff , demonstrating yet again that the era of the intelligent , well-made B movie is long gone .\n11109\tNovak contemplates a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama .\n11110\tBeen there , done that , liked it much better the first time around - when it was called The Professional .\n11111\tThe film is all over the place , really .\n11112\tIt dabbles all around , never gaining much momentum .\n11113\tThe beautiful , unusual music is this film 's chief draw , but its dreaminess may lull you to sleep .\n11114\tThe action quickly sinks into by-the-numbers territory .\n11115\tForages for audience sympathy like a temperamental child begging for attention , giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining .\n11116\tWhen -LRB- Reno -RRB- lets her radical flag fly , taking angry potshots at George W. Bush , Henry Kissinger , Larry King , et al. , Reno devolves into a laugh-free lecture .\n11117\tSuch a premise is ripe for all manner of lunacy , but Kaufman and Gondry rarely seem sure of where it should go .\n11118\tBurns ' fifth beer-soaked film feels in almost every possible way -- from the writing and direction to the soggy performances -- tossed off .\n11119\tWhile this one gets off with a good natured warning , future Lizard endeavors will need to adhere more closely to the laws of laughter\n11120\tAnother boorish movie from the I-heard-a-joke - at-a-frat-party school of screenwriting .\n11121\tToo much of the movie feels contrived , as if the filmmakers were worried the story would n't work without all those gimmicks .\n11122\tIt 's hard to understand why anyone in his right mind would even think to make the attraction a movie .\n11123\tAnd it 's harder still to believe that anyone in his right mind would want to see the it .\n11124\tThe ethos of the Chelsea Hotel may shape Hawke 's artistic aspirations , but he has n't yet coordinated his own DV poetry with the Beat he hears in his soul .\n11125\tThe sight of the name Bruce Willis brings to mind images of a violent battlefield action picture , but the film has a lot more on its mind -- maybe too much .\n11126\tWhy sit through a crummy , wannabe-hip crime comedy that refers incessantly to old movies , when you could just rent those movies instead , let alone seek out a respectable new one ?\n11127\tThe obnoxious special effects , the obligatory outbursts of flatulence and the incessant , so-five-minutes-ago pop music on the soundtrack overwhelm what is left of the scruffy , dopey old Hanna-Barbera charm .\n11128\tExploring value choices is a worthwhile topic for a film -- but here the choices are as contrived and artificial as Kerrigan 's platinum-blonde hair .\n11129\tThe movie 's downfall is to substitute plot for personality .\n11130\tIt does n't really know or care about the characters , and uses them as markers for a series of preordained events .\n11131\tAll mood and no movie .\n11132\tPress the delete key .\n11133\tSimone is not a bad film .\n11134\tIt just does n't have anything really interesting to say .\n11135\tOnce he starts learning to compromise with reality enough to become comparatively sane and healthy , the film becomes predictably conventional .\n11136\t... hopefully it 'll be at the dollar theatres by the time Christmas rolls around .\n11137\tWait to see it then .\n11138\tThere 's no disguising this as one of the worst films of the summer .\n11139\tOr for the year , for that matter .\n11140\tLacks the spirit of the previous two , and makes all those jokes about hos and even more unmentionable subjects seem like mere splashing around in the muck .\n11141\tThis hastily mounted production exists only to capitalize on Hopkins ' inclination to play Hannibal Lecter again , even though Harris has no immediate inclination to provide a fourth book .\n11142\tDeath to Smoochy tells a moldy-oldie , not-nearly - as-nasty - as-it - thinks-it-is joke .\n11143\tOver and over again .\n11144\tThe threat implied in the title PokÃ©mon 4ever is terrifying -- like locusts in a horde these things will keep coming .\n11145\tThe film never gets over its own investment in conventional arrangements , in terms of love , age , gender , race , and class .\n11146\tTo call this film a lump of coal would only be to flatter it .\n11147\tEntertainment more disposable than Hanna-Barbera 's half-hour cartoons ever were .\n11148\tThe film falls short on tension , eloquence , spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries .\n11149\tBy the end of it all I sort of loved the people onscreen , even though I could not stand them .\n11150\tPerhaps the film should be seen as a conversation starter .\n11151\tIt 's not an easy one to review .\n11152\tAt best this is a film for the under-7 crowd .\n11153\tBut it would be better to wait for the video .\n11154\tAnd a very rainy day .\n11155\tThe whole talking-animal thing is grisly .\n11156\tNever Again , while nothing special , is pleasant , diverting and modest -- definitely a step in the right direction .\n11157\tWould n't it be funny if a bunch of Allied soldiers went undercover as women in a German factory during World War II ?\n11158\tUm , no. .\n11159\tBut here 's a movie about it anyway .\n11160\tHas not so much been written as assembled , Frankenstein-like , out of other , marginally better shoot-em-ups .\n11161\tThe punch lines that miss , unfortunately , outnumber the hits by three-to-one .\n11162\tBut Death to Smoochy keeps firing until the bitter end .\n11163\tMushes the college-friends genre -LRB- The Big Chill -RRB- together with the contrivances and overwrought emotion of soap operas .\n11164\tShowtime 's starry cast could be both an asset and a detriment .\n11165\tThose who trek to the ` plex predisposed to like it probably will enjoy themselves .\n11166\tBut ticket-buyers with great expectations will wind up as glum as Mr. De Niro .\n11167\tA determined , ennui-hobbled slog that really does n't have much to say beyond the news flash that loneliness can make people act weird .\n11168\tToo daft by half ... but supremely good natured .\n11169\tFails in making this character understandable , in getting under her skin , in exploring motivation ... Well before the end , the film grows as dull as its characters , about whose fate it is hard to care .\n11170\tIt 's a shame that the storyline and its underlying themes ... finally seem so impersonal or even shallow .\n11171\tWoody , what happened ?\n11172\tJuliette Binoche 's Sand is vivacious , but it 's hard to sense that powerhouse of 19th-century prose behind her childlike smile .\n11173\tIt 's supposed to be post-feminist breezy but ends up as tedious as the chatter of parrots raised on Oprah .\n11174\tYou can tell almost immediately that Welcome to Collinwood is n't going to jell .\n11175\tThroughout all the tumult , a question comes to mind : So why is this so boring ?\n11176\tCattaneo reworks the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work .\n11177\tRoutine and rather silly .\n11178\tA rip-off twice removed , modeled after -LRB- Seagal 's -RRB- earlier copycat Under Siege , sometimes referred to as Die Hard on a boat .\n11179\tTotally overwrought , deeply biased , and wholly designed to make you feel guilty about ignoring what the filmmakers clearly believe are The Greatest Musicians of All Time .\n11180\tYou can practically hear George Orwell turning over .\n11181\tBehan 's memoir is great material for a film -- rowdy , brawny and lyrical in the best Irish sense -- but Sheridan has settled for a lugubrious romance .\n11182\tWhile Holm is terrific as both men and Hjejle quite appealing , the film fails to make the most out of the intriguing premise .\n11183\tLazy filmmaking , with the director taking a hands-off approach when he should have shaped the story to show us why it 's compelling .\n11184\tIf it were any more of a turkey , it would gobble in Dolby Digital stereo .\n11185\tIf nothing else , `` Rollerball '' 2002 may go down in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J.\n11186\tA movie that falls victim to frazzled wackiness and frayed satire .\n11187\tHow do you make a movie with depth about a man who lacked any ?\n11188\tOn the evidence before us , the answer is clear : Not easily and , in the end , not well enough .\n11189\tThe film 's trailer also looked like crap , so crap is what I was expecting .\n11190\tMore trifle than triumph .\n11191\tThe movie is almost completely lacking in suspense , surprise and consistent emotional conviction .\n11192\tFesters in just such a dungpile that you 'd swear you were watching monkeys flinging their feces at you .\n11193\tLyne 's latest , the erotic thriller Unfaithful , further demonstrates just how far his storytelling skills have eroded .\n11194\tIt sounds like another clever if pointless excursion into the abyss , and that 's more or less how it plays out .\n11195\tRumor , a muddled drama about coming to terms with death , feels impersonal , almost generic .\n11196\tReport card : Does n't live up to the exalted tagline - there 's definite room for improvement .\n11197\tDoes n't deserve a passing grade -LRB- even on a curve -RRB- .\n11198\tThe pacing is deadly , the narration helps little and Naipaul , a juicy writer , is negated .\n11199\tAs his circle of friends keeps getting smaller one of the characters in Long Time Dead says ` I 'm telling you , this is f \\*\\*\\* ed ' .\n11200\tMaybe he was reading the minds of the audience .\n11201\t... if it had been only half-an-hour long or a TV special , the humor would have been fast and furious -- at ninety minutes , it drags .\n11202\tBean drops the ball too many times ... hoping the nifty premise will create enough interest to make up for an unfocused screenplay .\n11203\tA well-acted , but one-note film .\n11204\tBlood Work is laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood 's Dirty Harry period .\n11205\tThe movie is too amateurishly square to make the most of its own ironic implications .\n11206\t-LRB- Lee -RRB- treats his audience the same way that Jim Brown treats his women -- as dumb , credulous , unassuming , subordinate subjects .\n11207\tAnd Lee seems just as expectant of an adoring , wide-smiling reception .\n11208\tThere 's not one decent performance from the cast and not one clever line of dialogue .\n11209\tNo amount of burning , blasting , stabbing , and shooting can hide a weak script .\n11210\tIt 's an odd show , pregnant with moods , stillborn except as a harsh conceptual exercise .\n11211\tNearly all the fundamentals you take for granted in most films are mishandled here .\n11212\tThe Armenian genocide deserves a more engaged and honest treatment .\n11213\tEarnest yet curiously tepid and choppy recycling in which predictability is the only winner .\n11214\tUltimately this is a frustrating patchwork : an uneasy marriage of Louis Begley 's source novel -LRB- About Schmidt -RRB- and an old Payne screenplay .\n11215\tThe exploitative , clumsily staged violence overshadows everything , including most of the actors .\n11216\tWe started to wonder if ... some unpaid intern had just typed ` Chris Rock , ' ` Anthony Hopkins ' and ` terrorists ' into some Univac-like script machine .\n11217\tEven when Crush departs from the 4W formula ... it feels like a glossy rehash .\n11218\tMore likely to have you scratching your head than hiding under your seat .\n11219\tBears is even worse than I imagined a movie ever could be .\n11220\tWhen you find yourself rooting for the monsters in a horror movie , you know the picture is in trouble .\n11221\tThis is very much of a mixed bag , with enough negatives to outweigh the positives .\n11222\tMarinated in clichÃ©s and mawkish dialogue .\n11223\tWhether it 's the worst movie of 2002 , I ca n't say for sure : Memories of Rollerball have faded , and I skipped Country Bears .\n11224\tBut this new jangle of noise , mayhem and stupidity must be a serious contender for the title .\n11225\t-LRB- A -RRB- boldly stroked , luridly coloured , uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain .\n11226\tNot once in the rush to save the day did I become very involved in the proceedings ; to me , it was just a matter of ` eh . '\n11227\tRollerball IS as bad as you think , and worse than you can imagine .\n11228\tThe first question to ask about Bad Company is why Anthony Hopkins is in it .\n11229\tWe assume he had a bad run in the market or a costly divorce , because there is no earthly reason other than money why this distinguished actor would stoop so low .\n11230\tNot exaggerated enough to be a parody of gross-out flicks , college flicks , or even flicks in general .\n11231\tIt merely indulges in the worst elements of all of them .\n11232\tShame on writer\\/director Vicente Aranda for making a florid biopic about mad queens , obsessive relationships , and rampant adultery so dull .\n11233\tSuffers from a decided lack of creative storytelling .\n11234\tViolent , vulgar and forgettably entertaining .\n11235\tNothing happens , and it happens to flat characters .\n11236\tWith a completely predictable plot , you 'll swear that you 've seen it all before , even if you 've never come within a mile of The Longest Yard .\n11237\tRemember back when thrillers actually thrilled ?\n11238\tWhen the twist endings were actually surprising ?\n11239\tWhen the violence actually shocked ?\n11240\tWhen the heroes were actually under 40 ?\n11241\tSadly , as Blood Work proves , that was a long , long time ago .\n11242\tBlue Crush has all the trappings of an energetic , extreme-sports adventure , but ends up more of a creaky `` Pretty Woman '' retread , with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought .\n11243\tThis movie plays like an extended dialogue exercise in Retard 101 .\n11244\tWhat we get in FearDotCom is more like something from a bad Clive Barker movie .\n11245\tIn other words , it 's badder than bad .\n11246\tIf they broke out into elaborate choreography , singing and finger snapping it might have held my attention , but as it stands I kept looking for the last exit from Brooklyn .\n11247\tA sloppy slapstick throwback to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken .\n11248\tA small independent film suffering from a severe case of Hollywood-itis .\n11249\tWhere the film falters is in its tone .\n11250\tThe story alone could force you to scratch a hole in your head .\n11251\tUltimately , Sarah 's dedication to finding her husband seems more psychotic than romantic , and nothing in the movie makes a convincing case that one woman 's broken heart outweighs all the loss we witness .\n11252\tIt 's supposed to be a humorous , all-too-human look at how hope can breed a certain kind of madness -- and strength -- but it never quite adds up .\n11253\tFeels more like a rejected X-Files episode than a credible account of a puzzling real-life happening .\n11254\tSome motion pictures portray ultimate passion ; others create ultimate thrills .\n11255\tMen in Black II achieves ultimate insignificance -- it 's the sci-fi comedy spectacle as Whiffle-Ball epic .\n11256\tAn enigmatic film that 's too clever for its own good , it 's a conundrum not worth solving .\n11257\tA zombie movie in every sense of the word -- mindless , lifeless , meandering , loud , painful , obnoxious .\n11258\tA film that clearly means to preach exclusively to the converted .\n11259\tIt does n't take a rocket scientist to figure out that this is a Mormon family movie , and a sappy , preachy one at that .\n11260\tDefinitely a crowd-pleaser , but then , so was the Roman Colosseum .\n11261\tCertainly not a good movie , but it was n't horrible either .\n11262\tAlthough it starts off so bad that you feel like running out screaming , it eventually works its way up to merely bad rather than painfully awful .\n11263\tThe result is so tame that even slightly wised-up kids would quickly change the channel .\n11264\tIt appears to have been modeled on the worst revenge-of-the-nerds clichÃ©s the filmmakers could dredge up .\n11265\tNothing but an episode of Smackdown !\n11266\tin period costume and with a bigger budget .\n11267\tIt takes you somewhere you 're not likely to have seen before , but beneath the exotic surface -LRB- and exotic dancing -RRB- it 's surprisingly old-fashioned .\n11268\tWhile the story is better-focused than the incomprehensible Anne Rice novel it 's based upon , Queen Of The Damned is a pointless , meandering celebration of the goth-vampire , tortured woe-is-me lifestyle .\n11269\tIt should be interesting , it should be poignant , it turns out to be affected and boring .\n11270\tA good-looking but ultimately pointless political thriller with plenty of action and almost no substance .\n11271\tA tired , predictable , bordering on offensive , waste of time , money and celluloid .\n11272\tIf Hill is n't quite his generation 's Don Siegel -LRB- or Robert Aldrich -RRB- , it 's because there 's no discernible feeling beneath the chest hair ; it 's all bluster and clichÃ© .\n11273\tStealing Harvard will dip into your wallet , swipe 90 minutes of your time , and offer you precisely this in recompense : A few early laughs scattered around a plot as thin as it is repetitious .\n11274\tThis is an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors .\n11275\tDoes anyone much think the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink ?\n11276\t` Martin Lawrence Live ' is so self-pitying , I almost expected there to be a collection taken for the comedian at the end of the show .\n11277\tThe dialogue is cumbersome , the simpering soundtrack and editing more so .\n11278\tNever decides whether it wants to be a black comedy , drama , melodrama or some combination of the three .\n11279\tIt has become apparent that the franchise 's best years are long past .\n11280\tDoes what should seem impossible : it makes serial killer Jeffrey Dahmer boring .\n11281\tDo n't hate El Crimen del Padre Amaro because it 's anti-Catholic .\n11282\tHate it because it 's lousy .\n11283\t... better described as a ghost story gone badly awry .\n11284\tLike a bad improvisation exercise , the superficially written characters ramble on tediously about their lives , loves and the art they 're struggling to create .\n11285\tThe filmmakers are playing to the Big Boys in New York and L.A. To that end , they mock the kind of folks they do n't understand , ones they figure the power-lunchers do n't care to understand , either .\n11286\tCompetently directed but terminally cute drama .\n11287\tThe big finish is a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing .\n11288\tNot just unlikable .\n11289\tDisturbing .\n11290\tDisgusting .\n11291\tWithout any redeeming value whatsoever .\n11292\tThis thing is virtually unwatchable .\n11293\tThose eternally devoted to the insanity of Black will have an intermittently good time .\n11294\tFeel free to go get popcorn whenever he 's not onscreen .\n11295\tThe self-serious Equilibrium makes its point too well ; a movie , like life , is n't much fun without the highs and lows .\n11296\tThe work of an exhausted , desiccated talent who ca n't get out of his own way .\n11297\tThe main characters are simply named The Husband , The Wife and The Kidnapper , emphasizing the disappointingly generic nature of the entire effort .\n11298\tIn terms of execution this movie is careless and unfocused .\n11299\tSwims in mediocrity , sticking its head up for a breath of fresh air now and then .\n11300\tThe only type of lives this glossy comedy-drama resembles are ones in formulaic mainstream movies .\n11301\tThe characters ... are paper-thin , and their personalities undergo radical changes when it suits the script .\n11302\tA Sha-Na-Na sketch punctuated with graphic violence .\n11303\tThe trouble is , its filmmakers run out of clever ideas and visual gags about halfway through .\n11304\tSpy-vs .\n11305\t- spy action flick with Antonio Banderas and Lucy Liu never comes together .\n11306\tA so-so , made-for-TV something posing as a real movie .\n11307\tThe only upside to all of this unpleasantness is , given its Labor Day weekend upload , FearDotCom should log a minimal number of hits .\n11308\tWhether this is art imitating life or life imitating art , it 's an unhappy situation all around .\n11309\tAn uneasy mix of run-of-the-mill raunchy humor and seemingly sincere personal reflection .\n11310\tA formula family tearjerker told with a heavy Irish brogue ... accentuating , rather than muting , the plot 's saccharine thrust .\n11311\tThis is Sandler running on empty , repeating what he 's already done way too often .\n11312\tThis is as lax and limp a comedy as I 've seen in a while , a meander through worn-out material .\n11313\tTime literally stops on a dime in the tries-so-hard-to-be-cool `` Clockstoppers , '' but that does n't mean it still wo n't feel like the longest 90 minutes of your movie-going life .\n11314\tThe sort of picture in which , whenever one of the characters has some serious soul searching to do , they go to a picture-perfect beach during sunset .\n11315\tAptly named , this shimmering , beautifully costumed and filmed production does n't work for me .\n11316\tA preposterously melodramatic paean to gang-member teens in Brooklyn circa 1958 .\n11317\tHas none of the crackle of `` Fatal Attraction '' , `` 9 1\\/2 Weeks '' , or even `` Indecent Proposal '' , and feels more like Lyne 's stolid remake of `` Lolita '' .\n11318\tEverything its title implies , a standard-issue crime drama spat out from the Tinseltown assembly line .\n11319\tAn extraordinarily silly thriller .\n11320\tA rehash of every gangster movie from the past decade .\n11321\tGaping plot holes sink this ` sub ' - standard thriller and drag audience enthusiasm to crush depth .\n11322\tTalkiness is n't necessarily bad , but the dialogue frequently misses the mark .\n11323\tThe beautiful images and solemn words can not disguise the slack complacency of -LRB- Godard 's -RRB- vision , any more than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice .\n11324\tThe stunt work is top-notch ; the dialogue and drama often food-spittingly funny .\n11325\tThe movie is n't painfully bad , something to be ` fully experienced ' ; it 's just tediously bad , something to be fully forgotten .\n11326\tCharly comes off as emotionally manipulative and sadly imitative of innumerable past Love Story derisions .\n11327\tWhat a great shame that such a talented director as Chen Kaige has chosen to make his English-language debut with a film so poorly plotted and scripted .\n11328\tNo amount of good intentions is able to overcome the triviality of the story .\n11329\tThe film ... presents classic moral-condundrum drama : What would you have done to survive ?\n11330\tThe problem with the film is whether these ambitions , laudable in themselves , justify a theatrical simulation of the death camp of Auschwitz II-Birkenau .\n11331\t... for all its social and political potential , State Property does n't end up being very inspiring or insightful .\n11332\tA film really has to be exceptional to justify a three hour running time , and this is n't .\n11333\tLittle more than a stylish exercise in revisionism whose point ... is no doubt true , but serves as a rather thin moral to such a knowing fable .\n11334\tThe nonstop artifice ultimately proves tiresome , with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations .\n11335\tThis is a monumental achievement in practically every facet of inept filmmaking : joyless , idiotic , annoying , heavy-handed , visually atrocious , and often downright creepy .\n11336\tThis off-putting French romantic comedy is sure to test severely the indulgence of fans of AmÃ©lie .\n11337\toverburdened with complicated plotting and banal dialogue\n11338\tEnsemble movies , like soap operas , depend on empathy .\n11339\tIf there ai n't none , you have a problem .\n11340\tThe Master of Disguise falls under the category of ` should have been a sketch on Saturday Night Live . '\n11341\tYet another self-consciously overwritten story about a rag-tag bunch of would-be characters that team up for a ca n't - miss heist -- only to have it all go wrong .\n11342\tKoepp 's screenplay is n't nearly surprising or clever enough to sustain a reasonable degree of suspense on its own .\n11343\tIs it really an advantage to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets ?\n11344\tMore successful at relating history than in creating an emotionally complex , dramatically satisfying heroine\n11345\tClumsy , obvious , preposterous , the movie will likely set the cause of woman warriors back decades .\n11346\tIt 's hard to pity the ` plain ' girl who becomes a ravishing waif after applying a smear of lip-gloss .\n11347\tRather , pity anyone who sees this mishmash .\n11348\tA banal , virulently unpleasant excuse for a romantic comedy .\n11349\tThe drama discloses almost nothing .\n11350\tA minor-league soccer remake of The Longest Yard .\n11351\tBelongs in the too-hot-for-TV direct-to-video\\/DVD category , and this is why I have given it a one-star rating .\n11352\tAs earnest as a community-college advertisement , American Chai is enough to make you put away the guitar , sell the amp , and apply to medical school .\n11353\tA dim-witted and lazy spin-off of the Animal Planet documentary series , Crocodile Hunter is entertainment opportunism at its most glaring .\n11354\tThere is more than one joke about putting the toilet seat down .\n11355\tAnd that should tell you everything you need to know about All the Queen 's Men .\n11356\tEven fans of Ismail Merchant 's work , I suspect , would have a hard time sitting through this one .\n11357\tIt 's really just another silly Hollywood action film , one among a multitude of simple-minded , yahoo-ing death shows .\n11358\tIt 's not a particularly good film , but neither is it a monsterous one .\n11359\tThe world needs more filmmakers with passionate enthusiasms like Martin Scorsese .\n11360\tBut it does n't need Gangs of New York .\n11361\tEnchanted with low-life tragedy and liberally seasoned with emotional outbursts ... What is sorely missing , however , is the edge of wild , lunatic invention that we associate with Cage 's best acting .\n11362\tHarry Potter and the Chamber of Secrets is deja vu all over again , and while that is a cliche , nothing could be more appropriate .\n11363\tIt 's likely that whatever you thought of the first production -- pro or con -- you 'll likely think of this one .\n11364\tSade achieves the near-impossible : It turns the Marquis de Sade into a dullard .\n11365\t-LRB- Lin Chung 's -RRB- voice is rather unexceptional , even irritating -LRB- at least to this Western ear -RRB- , making it awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters .\n11366\tOne of the most plain , unimaginative romantic comedies I 've ever seen .\n11367\tThough there 's a clarity of purpose and even-handedness to the film 's direction , the drama feels rigged and sluggish .\n11368\tUnfortunately , the experience of actually watching the movie is less compelling than the circumstances of its making .\n11369\tUnless there are zoning ordinances to protect your community from the dullest science fiction , Impostor is opening today at a theater near you .\n11370\tIt should be doing a lot of things , but does n't .\n11371\tChen films the resolutely downbeat Smokers Only with every indulgent , indie trick in the book .\n11372\t... a rather bland affair .\n11373\tFar-fetched premise , convoluted plot , and thematic mumbo jumbo about destiny and redemptive love .\n11374\tThe movie tries to be ethereal , but ends up seeming goofy .\n11375\tI was hoping that it would be sleazy and fun , but it was neither .\n11376\tHarris is supposed to be the star of the story , but comes across as pretty dull and wooden .\n11377\tSoulless and -- even more damning -- virtually joyless , XXX achieves near virtuosity in its crapulence .\n11378\tA boring masquerade ball where normally good actors , even Kingsley , are made to look bad .\n11379\tAll the Queen 's Men is a throwback war movie that fails on so many levels , it should pay reparations to viewers .\n11380\tThe filmmakers keep pushing the jokes at the expense of character until things fall apart .\n11381\tRather than real figures , Elling and Kjell Bjarne become symbolic characters whose actions are supposed to relate something about the naÃ¯f 's encounter with the world .\n11382\tMariah Carey gives us another peek at some of the magic we saw in Glitter here in Wisegirls .\n11383\tIt 's all arty and jazzy and people sit and stare and turn away from one another instead of talking and it 's all about the silences and if you 're into that , have at it .\n11384\tI suspect that you 'll be as bored watching Morvern Callar as the characters are in it .\n11385\tIf you go , pack your knitting needles .\n11386\tThe lead actors share no chemistry or engaging charisma .\n11387\tWe do n't even like their characters .\n11388\tSome writer dude , I think his name was , uh , Michael Zaidan , was supposed to have like written the screenplay or something , but , dude , the only thing that I ever saw that was written down were the zeroes on my paycheck .\n11389\tThe movie does n't generate a lot of energy .\n11390\tIt is dark , brooding and slow , and takes its central idea way too seriously .\n11391\tThis feature is about as necessary as a hole in the head\n11392\tSpectators will indeed sit open-mouthed before the screen , not screaming but yawning .\n11393\tIt feels like very light Errol Morris , focusing on eccentricity but failing , ultimately , to make something bigger out of its scrapbook of oddballs .\n11394\tA period story about a Catholic boy who tries to help a Jewish friend get into heaven by sending the audience straight to hell .\n11395\tThe premise itself is just SOOOOO tired .\n11396\tPair that with really poor comedic writing ... and you 've got a huge mess .\n11397\tProves a lovely trifle that , unfortunately , is a little too in love with its own cuteness .\n11398\tDid we really need a remake of `` Charade ? ''\n11399\tSome movies can get by without being funny simply by structuring the scenes as if they were jokes : a setup , delivery and payoff .\n11400\tStealing Harvard ca n't even do that much .\n11401\tEach scene immediately succumbs to gravity and plummets to earth .\n11402\tThe only fun part of the movie is playing the obvious game .\n11403\tYou try to guess the order in which the kids in the house will be gored .\n11404\tI spied with my little eye ... a mediocre collection of cookie-cutter action scenes and occasionally inspired dialogue bits\n11405\tEntertains not so much because of its music or comic antics , but through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel .\n11406\tThe satire is just too easy to be genuinely satisfying .\n11407\tLess funny than it should be and less funny than it thinks it is .\n11408\tan `` O Bruin , Where Art Thou ? ''\n11409\t- style cross-country adventure ... it has sporadic bursts of liveliness , some so-so slapstick and a few ear-pleasing songs on its soundtrack .\n11410\tA feeble Tootsie knockoff .\n11411\tAn awful movie that will only satisfy the most emotionally malleable of filmgoers .\n11412\t... the story is far-flung , illogical , and plain stupid .\n11413\tThe very simple story seems too simple and the working out of the plot almost arbitrary .\n11414\tAn allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing , but the supernatural trappings only obscure the message .\n11415\tA very familiar tale , one that 's been told by countless filmmakers about Italian - , Chinese - , Irish - , Latin - , Indian - , Russian - and other hyphenate American young men struggling to balance conflicting cultural messages .\n11416\tOne key problem with these ardently Christian storylines is that there is never any question of how things will turn out .\n11417\tEssentially , the film is weak on detail and strong on personality\n11418\tA relentless , bombastic and ultimately empty World War II action flick .\n11419\t-LRB- Hell is -RRB- looking down at your watch and realizing Serving Sara is n't even halfway through .\n11420\tToo long , and larded with exposition , this somber cop drama ultimately feels as flat as the scruffy sands of its titular community .\n11421\tLeaves viewers out in the cold and undermines some phenomenal performances .\n11422\t... a ho-hum affair , always watchable yet hardly memorable .\n11423\tSwiftly deteriorates into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell .\n11424\tThe histrionic muse still eludes Madonna and , playing a charmless witch , she is merely a charmless witch .\n11425\tYou have no affinity for most of the characters .\n11426\tNothing about them is attractive .\n11427\tWhat they see in each other also is difficult to fathom .\n11428\tDiaz , Applegate , Blair and Posey are suitably kooky which should appeal to women and they strip down often enough to keep men alert , if not amused .\n11429\tA technically well-made suspenser ... but its abrupt drop in IQ points as it races to the finish line proves simply too discouraging to let slide .\n11430\tAn inept , tedious spoof of '70s kung fu pictures , it contains almost enough chuckles for a three-minute sketch , and no more .\n11431\tIt 's a mystery how the movie could be released in this condition .\n11432\tAbsolutely -LRB- and unintentionally -RRB- terrifying .\n11433\tEckstraordinarily lame and Severely boring .\n11434\tEight Legged Freaks falls flat as a spoof .\n11435\tNo matter how much he runs around and acts like a doofus , accepting a 50-year-old in the role is creepy in a Michael Jackson sort of way .\n11436\tYou 'll just have your head in your hands wondering why Lee 's character did n't just go to a bank manager and save everyone the misery .\n11437\t` Dragonfly ' dwells on crossing-over mumbo jumbo , manipulative sentimentality , and sappy dialogue .\n11438\tIn his determination to lighten the heavy subject matter , Silberling also , to a certain extent , trivializes the movie with too many nervous gags and pratfalls .\n11439\tBlade II has a brilliant director and charismatic star , but it suffers from rampant vampire devaluation .\n11440\tVeers uncomfortably close to pro-Serb propaganda .\n11441\tMovies like High Crimes flog the dead horse of surprise as if it were an obligation .\n11442\tHow about surprising us by trying something new ?\n11443\tFinal verdict : You 've seen it all before .\n11444\tThrowing in everything except someone pulling the pin from a grenade with his teeth , Windtalkers seems to have ransacked every old World War II movie for overly familiar material .\n11445\tIf A Few Good Men told us that we `` ca n't handle the truth '' than High Crimes poetically states at one point in this movie that we `` do n't care about the truth . ''\n11446\tFurther sad evidence that Tom Tykwer , director of the resonant and sense-spinning Run Lola Run , has turned out to be a one-trick pony -- a maker of softheaded metaphysical claptrap .\n11447\tYou 'll trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy .\n11448\tThe movie is a little tired ; maybe the original inspiration has run its course .\n11449\tThis will go on so long as there are moviegoers anxious to see strange young guys doing strange guy things .\n11450\tA full-frontal attack on audience patience .\n11451\tAny intellectual arguments being made about the nature of God are framed in a drama so clumsy , there is a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors .\n11452\tIt 's a big idea , but the film itself is small and shriveled .\n11453\tDebut effort by `` Project Greenlight '' winner is sappy and amateurish .\n11454\tOne gets the impression the creators of Do n't Ask Do n't Tell laughed a hell of a lot at their own jokes .\n11455\tToo bad none of it is funny .\n11456\tThe cast has a high time , but de Broca has little enthusiasm for such antique pulp .\n11457\tThe film , like Jimmy 's routines , could use a few good laughs .\n11458\tThe film has too many spots where it 's on slippery footing , but is acceptable entertainment for the entire family and one that 's especially fit for the kiddies .\n11459\tPurports to be a Hollywood satire but winds up as the kind of film that should be the target of something deeper and more engaging .\n11460\tOh , and more entertaining , too .\n11461\t... in the pile of useless actioners from MTV schmucks who do n't know how to tell a story for more than four minutes .\n11462\tThough it was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal , I felt disrespected .\n11463\tHumor in I Spy is so anemic .\n11464\tThe film is strictly routine .\n11465\tSkillful as he is , Mr. Shyamalan is undone by his pretensions .\n11466\tWhile the new film is much more eye-catching than its blood-drenched Stephen Norrington-directed predecessor , the new script by the returning David S. Goyer is much sillier .\n11467\tIn addition to sporting one of the worst titles in recent cinematic history , Ballistic : Ecks Vs. Sever also features terrible , banal dialogue ; convenient , hole-ridden plotting ; superficial characters and a rather dull , unimaginative car chase .\n11468\tIt shares the first two films ' loose-jointed structure , but laugh-out-loud bits are few and far between .\n11469\tThe Santa Clause 2 is a barely adequate babysitter for older kids , but I 've got to give it thumbs down .\n11470\tYou can not guess why the cast and crew did n't sign a pact to burn the negative and the script and pretend the whole thing never existed .\n11471\tBarney throws away the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull .\n11472\tIf you 're really renting this you 're not interested in discretion in your entertainment choices , you 're interested in Anne Geddes , John Grisham , and Thomas Kincaid .\n11473\tWe get the comedy we settle for .\n11474\tThe uneven movie does have its charms and its funny moments but not quite enough of them .\n11475\tTwo hours of sepia-tinted heavy metal images and surround sound effects of people moaning .\n11476\tA word of advice to the makers of The Singles Ward : Celebrity cameos do not automatically equal laughs .\n11477\tAnd neither do cliches , no matter how ` inside ' they are .\n11478\tThe campy results make Mel Brooks ' Borscht Belt schtick look sophisticated .\n11479\tIts appeal will probably limited to LDS Church members and undemanding armchair tourists .\n11480\tThe Hanukkah spirit seems fried in pork .\n11481\tCherish would 've worked a lot better had it been a short film .\n11482\tManipulative claptrap , a period-piece movie-of-the-week , plain old blarney ... take your pick .\n11483\tAll three descriptions suit Evelyn , a besotted and obvious drama that tells us nothing new .\n11484\tHey Arnold !\n11485\tis now stretched to barely feature length , with a little more attention paid to the animation .\n11486\tStill , the updated Dickensian sensibility of writer Craig Bartlett 's story is appealing .\n11487\tTrue to its title , it traps audiences in a series of relentlessly nasty situations that we would pay a considerable ransom not to be looking at .\n11488\tDoes n't come close to justifying the hype that surrounded its debut at the Sundance Film Festival two years ago .\n11489\tThe plot is paper-thin and the characters are n't interesting enough to watch them go about their daily activities for two whole hours .\n11490\tKaufman 's script is never especially clever and often is rather pretentious .\n11491\tThe film did n't move me one way or the other , but it was an honest effort and if you want to see a flick about telemarketers this one will due .\n11492\tQueen of the Damned is too long with too little going on .\n11493\tIt collapses when Mr. Taylor tries to shift the tone to a thriller 's rush .\n11494\tAny film that does n't even in passing mention political prisoners , poverty and the boat loads of people who try to escape the country is less a documentary and more propaganda by way of a valentine sealed with a kiss .\n11495\t... Blade II is still top-heavy with blazing guns , cheatfully filmed martial arts , disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves .\n11496\tThe Rules of Attraction gets us too drunk on the party favors to sober us up with the transparent attempts at moralizing .\n11497\tThough there are many tense scenes in Trapped , they prove more distressing than suspenseful .\n11498\tIn this film we at least see a study in contrasts ; the wide range of one actor , and the limited range of a comedian .\n11499\tFeels strangely hollow at its emotional core .\n11500\tYou have once again entered the bizarre realm where director Adrian Lyne holds sway , where all relationships are simultaneously broadly metaphorical , oddly abstract , and excruciatingly literal .\n11501\tThe high-concept scenario soon proves preposterous , the acting is robotically italicized , and truth-in-advertising hounds take note : There 's very little hustling on view .\n11502\tThis director 's cut -- which adds 51 minutes -- takes a great film and turns it into a mundane soap opera .\n11503\tCharacterisation has been sacrificed for the sake of spectacle .\n11504\tthe Venezuelans say things like `` si , pretty much '' and `` por favor , go home '' when talking to Americans .\n11505\tThat 's muy loco , but no more ridiculous than most of the rest of `` Dragonfly . ''\n11506\tIt 's a movie that ends with Truckzilla , for cryin ' out loud .\n11507\tIf that does n't clue you in that something 's horribly wrong , nothing will .\n11508\tDirector Tom Shadyac and star Kevin Costner glumly mishandle the story 's promising premise of a physician who needs to heal himself .\n11509\tIt 's difficult to imagine that a more confused , less interesting and more sloppily made film could possibly come down the road in 2002 .\n11510\tLike the Tuck family themselves , this movie just goes on and on and on and on\n11511\tAs pedestrian as they come .\n11512\tA film that plays things so nice 'n safe as to often play like a milquetoast movie of the week blown up for the big screen .\n11513\tIt 's a feel-bad ending for a depressing story that throws a bunch of hot-button items in the viewer 's face and asks to be seen as hip , winking social commentary .\n11514\tPut it somewhere between Sling Blade and South of Heaven , West of Hell in the pantheon of Billy Bob 's body of work .\n11515\tMore intellectually scary than dramatically involving .\n11516\tAn inconsequential , barely there bit of piffle .\n11517\tThe abiding impression , despite the mild hallucinogenic buzz , is of overwhelming waste -- the acres of haute couture ca n't quite conceal that there 's nothing resembling a spine here .\n11518\tAs saccharine as it is disposable .\n11519\tYou come away thinking not only that Kate is n't very bright , but that she has n't been worth caring about and that maybe she , Janine and Molly -- an all-woman dysfunctional family -- deserve one another .\n11520\tThe metaphors are provocative , but too often , the viewer is left puzzled by the mechanics of the delivery .\n11521\tVery much a home video , and so devoid of artifice and purpose that it appears not to have been edited at all .\n11522\tToo much power , not enough puff .\n11523\tThe attempt to build up a pressure cooker of horrified awe emerges from the simple fact that the movie has virtually nothing to show .\n11524\tIt 's provocative stuff , but the speculative effort is hampered by Taylor 's cartoonish performance and the film 's ill-considered notion that Hitler 's destiny was shaped by the most random of chances .\n11525\tA cellophane-pop remake of the punk classic Ladies and Gentlemen , The Fabulous Stains ... Crossroads is never much worse than bland or better than inconsequential .\n11526\tMuddled , trashy and incompetent\n11527\tFor this sort of thing to work , we need agile performers , but the proficient , dull Sorvino has no light touch , and Rodan is out of his league .\n11528\tNarc is all menace and atmosphere .\n11529\tThough excessively tiresome , The Uncertainty Principle , as verbally pretentious as the title may be , has its handful of redeeming features , as long as you discount its ability to bore .\n11530\tDespite Juliet Stevenon 's attempt to bring cohesion to Pamela 's emotional roller coaster life , it is not enough to give the film the substance it so desperately needs .\n11531\tIt 's tough to be startled when you 're almost dozing .\n11532\this -LRB- Nelson 's -RRB- screenplay needs some serious re-working to show more of the dilemma , rather than have his characters stage shouting matches about it .\n11533\tIt 's so downbeat and nearly humorless that it becomes a chore to sit through -- despite some first-rate performances by its lead .\n11534\tA terrible movie that some people will nevertheless find moving .\n11535\tThere are many definitions of ` time waster ' but this movie must surely be one of them .\n11536\tAs it stands , Crocodile Hunter has the hurried , badly cobbled look of the 1959 Godzilla , which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster 's path of destruction .\n11537\tThe thing looks like a made-for-home-video quickie .\n11538\tEnigma is well-made , but it 's just too dry and too placid .\n11539\t`` Sweet Home Alabama '' is what it is -- a nice , harmless date film ...\n11540\tOne of the best , most understated performances of -LRB- Jack Nicholson 's -RRB- career .\n11541\tThe Dangerous Lives of Altar Boys ' take on adolescence feels painfully true .\n11542\tIt 's a masterpiece .\n11543\tIt may not be `` Last Tango in Paris '' but ...\n11544\tThey crush each other under cars , throw each other out windows , electrocute and dismember their victims in full consciousness .\n11545\tAnd we do n't avert our eyes for a moment .\n11546\tCharming and funny -LRB- but ultimately silly -RRB- movie .\n11547\tThird time 's the charm ... yeah , baby !\n11548\tA pleasant , if forgettable , romp of a film .\n11549\tBy the end of the movie , you 're definitely convinced that these women are spectacular .\n11550\tBirot creates a drama with such a well-defined sense of place and age -- as in , 15 years old -- that the torments and angst become almost as operatic to us as they are to her characters .\n11551\t` Stock up on silver bullets for director Neil Marshall 's intense freight train of a film . '\n11552\tThe film delivers what it promises : A look at the `` wild ride '' that ensues when brash young men set out to conquer the online world with laptops , cell phones and sketchy business plans .\n11553\tAs a film director , LaBute continues to improve .\n11554\tWill warm your heart without making you feel guilty about it .\n11555\tCatch it ... if you can !\n11556\tWorse than ` Silence of the Lambs ' better than ` Hannibal '\n11557\tAmerican and European cinema has amassed a vast Holocaust literature , but it is impossible to think of any film more challenging or depressing than The Grey Zone .\n11558\t` Possession , ' based on the book by A.S. Byatt , demands that LaBute deal with the subject of love head-on ; trading in his cynicism for reverence and a little wit\n11559\tIt 's the kind of movie that , aside from Robert Altman , Spike Lee , the Coen Brothers and a few others , our moviemakers do n't make often enough .\n11560\tAlternates between deadpan comedy and heartbreaking loneliness and is n't afraid to provoke introspection in both its characters and its audience .\n11561\tThe script is smart , not cloying .\n11562\tVisually , ` Santa Clause 2 ' is wondrously creative .\n11563\tA bittersweet contemporary comedy about benevolent deception , which , while it may not rival the filmmaker 's period pieces , is still very much worth seeing .\n11564\tOne fantastic -LRB- and educational -RRB- documentary .\n11565\tAn ambitious ` what if ? '\n11566\tthat works .\n11567\t`` The Dangerous Lives of Altar Boys '' has flaws , but it also has humor and heart and very talented young actors\n11568\tNice piece of work .\n11569\t` Stock up on silver bullets for director Neil Marshall 's intense freight train of a film . '\n11570\tIt 's funny , as the old saying goes , because it 's true .\n11571\tThough the film is static , its writer-director 's heart is in the right place , his plea for democracy and civic action laudable .\n11572\tThe filmmaker 's heart is in the right place ...\n11573\tFrom blushing to gushing -- Imamura squirts the screen in ` Warm Water Under a Red Bridge '\n11574\tApart from anything else , this is one of the best-sustained ideas I have ever seen on the screen .\n11575\tNot a schlocky creature feature but something far more stylish and cerebral -- and , hence , more chillingly effective .\n11576\tStupid , infantile , redundant , sloppy , over-the-top , and amateurish .\n11577\tYep , it 's `` Waking up in Reno . ''\n11578\tGo back to sleep .\n11579\tI did n't laugh .\n11580\tI did n't smile .\n11581\tI survived .\n11582\tThe worst film of the year .\n11583\tIn the book-on-tape market , the film of `` The Kid Stays in the Picture '' would be an abridged edition\n11584\tA sour attempt at making a Farrelly Brothers-style , down-and-dirty laugher for the female set .\n11585\tEisenstein lacks considerable brio for a film about one of cinema 's directorial giants .\n11586\tTaken as a whole , The Tuxedo does n't add up to a whole lot .\n11587\tThis is no `` Waterboy ! ''\n11588\tSomething has been lost in the translation ... another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise .\n11589\tThe result is an ` action film ' mired in stasis .\n11590\t... a movie that , quite simply , should n't have been made .\n11591\tBy turns pretentious , fascinating , ludicrous , provocative and vainglorious .\n11592\tI ca n't recommend it .\n11593\tBut it 's surprisingly harmless .\n11594\tWhat 's next ?\n11595\tThe Porky 's Revenge : Ultimate Edition ?\n11596\tThe script is a dim-witted pairing of teen-speak and animal gibberish .\n11597\tThere 's no real reason to see it , and no real reason not to .\n11598\tIs `` Ballistic '' worth the price of admission ?\n11599\tAbsolutely not .\n11600\tIt sucked .\n11601\tWould I see it again ?\n11602\tPlease see previous answer .\n11603\tIt 's exactly what you 'd expect .\n11604\t`` The Kid Stays in the Picture '' is a great story , terrifically told by the man who wrote it but this Cliff Notes edition is a cheat .\n11605\tA prison comedy that never really busts out of its comfy little cell .\n11606\tThe movie is obviously a labour of love so Howard appears to have had free rein to be as pretentious as he wanted .\n11607\tThis is n't a movie ; it 's a symptom .\n11608\tWhat we have is a character faced with the possibility that her life is meaningless , vapid and devoid of substance , in a movie that is definitely meaningless , vapid and devoid of substance .\n11609\tIf only it were , well , funnier .\n11610\tThe script ?\n11611\tPlease .\n11612\tDoes n't add up to much .\n11613\tOne of the worst movies of the year .\n11614\tA complete waste of time .\n11615\tLong before it 's over , you 'll be thinking of 51 ways to leave this loser .\n11616\tOne of the worst movies of the year .\n11617\t... Watching it was painful .\n11618\tThe cinematic equivalent of patronizing a bar favored by pretentious , untalented artistes who enjoy moaning about their cruel fate .\n11619\tSpiderman ROCKS\n11620\tA compelling coming-of-age drama about the arduous journey of a sensitive young girl through a series of foster homes and a fierce struggle to pull free from her dangerous and domineering mother 's hold over her .\n11621\tAn imaginative comedy\\/thriller .\n11622\tThoroughly enjoyable .\n11623\t-LRB- A -RRB- rare , beautiful film .\n11624\tFamily fare .\n11625\tBoisterous , heartfelt comedy .\n11626\t-LRB- An -RRB- hilarious romantic comedy .\n11627\tAn exhilarating experience .\n11628\tNever -LRB- sinks -RRB- into exploitation .\n11629\tCompellingly watchable .\n11630\tTroubling and powerful .\n11631\tOften hilarious .\n11632\tA modest masterpiece .\n11633\tNever once predictable .\n11634\tAn uplifting , near-masterpiece .\n11635\tWarm and exotic .\n11636\t... a true delight .\n11637\tA true pleasure .\n11638\tPolished , well-structured film .\n11639\tSexy and romantic .\n11640\tPsychologically savvy .\n11641\tdelightfully rendered\n11642\tFun and nimble .\n11643\tFunny and touching .\n11644\tSerious and thoughtful .\n11645\tIt strikes hardest ... when it reminds you how pertinent its dynamics remain .\n11646\tFifty years after the fact , the world 's political situation seems little different , and -LRB- director Phillip -RRB- Noyce brings out the allegory with remarkable skill .\n11647\tOne-of-a-kind near-masterpiece .\n11648\tLightweight but appealing .\n11649\tHighly engaging .\n11650\tFeral and uncomfortable .\n11651\tA gripping drama .\n11652\tBeautifully produced .\n11653\tSmart and taut .\n11654\tHighly watchable stuff .\n11655\tPsychologically revealing .\n11656\tA fast paced and suspenseful Argentinian thriller about the shadow side of play .\n11657\t... wise and elegiac ...\n11658\tSpare yet audacious ...\n11659\tSurprisingly insightful\n11660\tAn intoxicating experience .\n11661\tReassuring , retro uplifter .\n11662\tVisually captivating .\n11663\tLavishly , exhilaratingly tasteless .\n11664\tTouchÃ© !\n11665\tAn impressive hybrid .\n11666\tA tasty masala .\n11667\tRefreshing .\n11668\tFeatherweight romantic comedy has a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock .\n11669\tPoignant and funny .\n11670\tSee it .\n11671\tDebate it .\n11672\tRemember it .\n11673\tMorvern rocks .\n11674\tIntelligent and moving .\n11675\tGenuinely unnerving .\n11676\tA compelling film .\n11677\tDeliciously slow .\n11678\tA riveting documentary .\n11679\tAn enjoyable experience .\n11680\tA good thriller .\n11681\tA glorious mess .\n11682\tNeatly constructed thriller .\n11683\tIntimate and panoramic .\n11684\tExciting documentary .\n11685\tGood , solid storytelling .\n11686\tInfidelity drama is nicely shot , well-edited and features a standout performance by Diane Lane .\n11687\tAudacious-impossible yet compelling ...\n11688\tA muted freak-out\n11689\tMoving and vibrant .\n11690\t... quite endearing .\n11691\tHarmless fun .\n11692\tGood-naturedly cornball sequel .\n11693\tOddly compelling .\n11694\tWitless but watchable .\n11695\tMr. Deeds is sure to give you a lot of laughs in this simple , sweet and romantic comedy .\n11696\tHard to resist .\n11697\tA true-blue delight .\n11698\tA fun ride .\n11699\tWeird .\n11700\tRewarding .\n11701\tSleek and arty .\n11702\tFantastic !\n11703\tA thought-provoking picture .\n11704\tA stylish thriller .\n11705\tAlmost peerlessly unsettling .\n11706\tDelirious fun .\n11707\tExciting and well-paced .\n11708\tReally quite funny .\n11709\tA well-executed spy-thriller .\n11710\tIdiotic and ugly .\n11711\tA funny film .\n11712\t-LRB- A -RRB- satisfying niblet .\n11713\tPoetic , heartbreaking .\n11714\tFormuliac , but fun .\n11715\tFeels untidily honest .\n11716\t`` Red Dragon '' never cuts corners .\n11717\tFull of surprises .\n11718\tQuietly engaging .\n11719\tDense , exhilarating documentary .\n11720\ta joyous occasion\n11721\t-LRB- An -RRB- absorbing documentary .\n11722\tA genuine mind-bender .\n11723\tGreat character interaction .\n11724\tIntriguing and stylish .\n11725\tMany insightful moments .\n11726\tEverything is off .\n11727\tEarnest but heavy-handed .\n11728\tOne lousy movie .\n11729\t... hypnotically dull .\n11730\tCalculated swill .\n11731\tThoroughly awful .\n11732\tTruly terrible .\n11733\tFluffy and disposible .\n11734\tBy-the-numbers yarn .\n11735\tAan opportunity wasted .\n11736\tStorytelling feels slight .\n11737\tBad company .\n11738\tBad movie .\n11739\tJust plain bad .\n11740\t-LRB- A -RRB- soulless , stupid sequel ...\n11741\tA high-minded snoozer .\n11742\tExecrable .\n11743\tAmazingly dopey .\n11744\tBanal and predictable .\n11745\tCrikey indeed .\n11746\tBrisk hack job .\n11747\t... the maudlin way its story unfolds suggests a director fighting against the urge to sensationalize his material .\n11748\t... bibbidy-bobbidi-bland .\n11749\tObvious .\n11750\tIts one-sidedness ... flirts with propaganda .\n11751\t... a pretentious mess ...\n11752\t-LRB- A -RRB- rather thinly-conceived movie .\n11753\tSo-so entertainment .\n11754\tPunitively affirmational parable .\n11755\tDecent but dull .\n11756\tThin period piece .\n11757\t-LRB- A -RRB- stuporously solemn film .\n11758\tWell-meant but unoriginal .\n11759\tOdd and weird .\n11760\tCinematic poo .\n11761\t... stale and uninspired .\n11762\tA dreary movie .\n11763\tPompous and garbled .\n11764\tUtter mush ... conceited pap .\n11765\tWell-meaning but inert .\n11766\t... overly melodramatic ...\n11767\tExtremely bad .\n11768\tShrewd but pointless .\n11769\tSluggish , tonally uneven .\n11770\tGeneric thriller junk .\n11771\tTeens only .\n11772\tA non-mystery mystery .\n11773\tWhat an embarrassment .\n11774\tA noble failure .\n11775\tWoefully pretentious .\n11776\t... irritating soul-searching garbage .\n11777\tA relative letdown .\n11778\tWarmed-over hash .\n11779\tA puzzling experience .\n11780\tStale , futile scenario .\n11781\tAggravating and tedious .\n11782\tLacks depth .\n11783\tunder-rehearsed and lifeless\n11784\tLaughably , irredeemably awful .\n11785\tUnwieldy contraption .\n11786\tOverwrought , melodramatic bodice-ripper .\n11787\tAn awful snooze .\n11788\tJust plain silly .\n11789\tFeeble comedy .\n11790\t... salaciously simplistic .\n11791\tShallow .\n11792\tA less-than-thrilling thriller .\n11793\tDisjointed parody .\n11794\t... silly humbuggery ...\n11795\tEh .\n11796\tBlack-and-white and unrealistic .\n11797\tTwo-bit potboiler .\n11798\t-LRB- U -RRB- nrelentingly stupid .\n11799\tPainfully padded .\n11800\tAnemic , pretentious .\n11801\tGrating and tedious .\n11802\tIt bites hard .\n11803\t-LRB- A -RRB- mess .\n11804\tDramatically lackluster .\n11805\tStay away .\n11806\tFar away .\n11807\t... a pretentious mess ...\n11808\tPredictably soulless techno-tripe .\n11809\tArty gay film .\n11810\tIncoherence reigns .\n11811\tA half-assed film .\n11812\tAbysmally pathetic\n11813\t... unbearably lame .\n11814\tBland but harmless .\n11815\tDense and enigmatic ... elusive ... stagy and stilted\n11816\t-LRB- L -RRB- ame and unnecessary .\n11817\tA dreary indulgence .\n11818\t-LRB- A -RRB- crushing disappointment .\n11819\tTends to plod .\n11820\tA major waste ... generic .\n11821\t... a confusing drudgery .\n11822\tA well-crafted letdown .\n11823\tBoring and meandering .\n11824\tLess than fresh .\n11825\tA lame comedy .\n11826\tA reality-snubbing hodgepodge .\n11827\tMildly amusing .\n11828\tFairly run-of-the-mill .\n11829\tMildly entertaining .\n11830\tTerrible .\n11831\tDegenerates into hogwash .\n11832\tMeandering and confusing .\n11833\tCrummy .\n11834\tAn opportunity missed .\n11835\tWishy-washy .\n11836\tInconsequential road-and-buddy pic .\n11837\tInsufferably naive .\n11838\tIll-considered , unholy hokum .\n11839\tAmazingly lame .\n11840\t-LRB- A -RRB- slummer .\n11841\t-LRB- A -RRB- poorly executed comedy .\n11842\t... really horrible drek .\n11843\tAn intriguing near-miss .\n11844\tFlat , misguided comedy .\n11845\tPredictably melodramatic .\n11846\tRashomon-for-dipsticks tale .\n11847\tBearable .\n11848\tBarely .\n11849\tStaggeringly dreadful romance .\n11850\tWell-made but mush-hearted .\n11851\tA real snooze .\n11852\tNo surprises .\n11853\tWe 've seen the hippie-turned-yuppie plot before , but there 's an enthusiastic charm in Fire that makes the formula fresh again .\n11854\tHer fans walked out muttering words like `` horrible '' and `` terrible , '' but had so much fun dissing the film that they did n't mind the ticket cost .\n11855\tIn this case zero .\n"
  },
  {
    "path": "a2/utils/datasets/stanfordSentimentTreebank/datasetSplit.txt",
    "content": "sentence_index,splitset_label\n1,1\n2,1\n3,2\n4,2\n5,2\n6,2\n7,2\n8,2\n9,2\n10,2\n11,2\n12,2\n13,2\n14,2\n15,2\n16,2\n17,2\n18,2\n19,2\n20,2\n21,2\n22,2\n23,2\n24,2\n25,2\n26,2\n27,2\n28,2\n29,2\n30,2\n31,2\n32,2\n33,2\n34,2\n35,2\n36,2\n37,2\n38,2\n39,2\n40,2\n41,2\n42,2\n43,2\n44,2\n45,2\n46,2\n47,2\n48,2\n49,2\n50,2\n51,2\n52,2\n53,2\n54,2\n55,2\n56,2\n57,2\n58,2\n59,2\n60,2\n61,1\n62,1\n63,1\n64,1\n65,2\n66,2\n67,2\n68,1\n69,2\n70,2\n71,2\n72,1\n73,2\n74,2\n75,2\n76,2\n77,2\n78,2\n79,2\n80,2\n81,2\n82,1\n83,2\n84,2\n85,2\n86,2\n87,2\n88,2\n89,2\n90,2\n91,2\n92,2\n93,2\n94,2\n95,2\n96,2\n97,2\n98,2\n99,2\n100,2\n101,2\n102,2\n103,2\n104,2\n105,2\n106,2\n107,2\n108,2\n109,2\n110,2\n111,2\n112,2\n113,2\n114,2\n115,2\n116,2\n117,2\n118,2\n119,2\n120,2\n121,2\n122,2\n123,2\n124,2\n125,2\n126,2\n127,2\n128,2\n129,2\n130,2\n131,1\n132,1\n133,1\n134,1\n135,1\n136,1\n137,2\n138,2\n139,2\n140,2\n141,2\n142,2\n143,2\n144,2\n145,2\n146,2\n147,2\n148,2\n149,2\n150,2\n151,2\n152,2\n153,2\n154,2\n155,2\n156,2\n157,2\n158,2\n159,2\n160,2\n161,2\n162,2\n163,2\n164,2\n165,2\n166,2\n167,2\n168,2\n169,2\n170,2\n171,2\n172,2\n173,2\n174,2\n175,2\n176,2\n177,2\n178,2\n179,2\n180,2\n181,2\n182,2\n183,2\n184,2\n185,2\n186,2\n187,2\n188,2\n189,2\n190,2\n191,2\n192,2\n193,2\n194,2\n195,2\n196,2\n197,2\n198,2\n199,2\n200,2\n201,2\n202,2\n203,2\n204,2\n205,2\n206,2\n207,2\n208,2\n209,2\n210,2\n211,2\n212,2\n213,2\n214,1\n215,2\n216,2\n217,2\n218,2\n219,2\n220,2\n221,2\n222,2\n223,2\n224,2\n225,2\n226,2\n227,2\n228,1\n229,2\n230,2\n231,2\n232,2\n233,2\n234,2\n235,2\n236,2\n237,2\n238,2\n239,2\n240,2\n241,2\n242,2\n243,2\n244,2\n245,2\n246,2\n247,2\n248,2\n249,2\n250,2\n251,2\n252,2\n253,2\n254,2\n255,2\n256,2\n257,2\n258,2\n259,2\n260,2\n261,2\n262,2\n263,2\n264,2\n265,2\n266,2\n267,2\n268,2\n269,2\n270,2\n271,2\n272,2\n273,2\n274,2\n275,2\n276,2\n277,2\n278,2\n279,2\n280,2\n281,2\n282,2\n283,2\n284,2\n285,2\n286,2\n287,2\n288,2\n289,2\n290,2\n291,2\n292,2\n293,2\n294,2\n295,2\n296,2\n297,2\n298,2\n299,2\n300,2\n301,2\n302,2\n303,2\n304,2\n305,2\n306,2\n307,2\n308,2\n309,2\n310,2\n311,2\n312,2\n313,2\n314,2\n315,2\n316,2\n317,2\n318,2\n319,2\n320,2\n321,2\n322,2\n323,2\n324,2\n325,2\n326,2\n327,2\n328,2\n329,2\n330,2\n331,2\n332,2\n333,2\n334,2\n335,2\n336,2\n337,2\n338,2\n339,2\n340,1\n341,2\n342,2\n343,2\n344,2\n345,2\n346,2\n347,2\n348,2\n349,2\n350,2\n351,2\n352,2\n353,2\n354,2\n355,2\n356,2\n357,2\n358,2\n359,2\n360,2\n361,2\n362,2\n363,2\n364,2\n365,2\n366,2\n367,2\n368,2\n369,2\n370,2\n371,2\n372,2\n373,2\n374,2\n375,2\n376,2\n377,2\n378,2\n379,2\n380,2\n381,2\n382,2\n383,1\n384,2\n385,2\n386,2\n387,1\n388,1\n389,2\n390,2\n391,2\n392,2\n393,2\n394,2\n395,2\n396,2\n397,2\n398,2\n399,2\n400,2\n401,2\n402,2\n403,2\n404,2\n405,2\n406,2\n407,2\n408,2\n409,2\n410,2\n411,2\n412,2\n413,2\n414,2\n415,2\n416,2\n417,2\n418,2\n419,2\n420,2\n421,2\n422,2\n423,2\n424,2\n425,2\n426,2\n427,2\n428,1\n429,1\n430,2\n431,2\n432,2\n433,2\n434,2\n435,2\n436,2\n437,2\n438,2\n439,2\n440,2\n441,2\n442,2\n443,2\n444,2\n445,2\n446,1\n447,2\n448,2\n449,2\n450,2\n451,2\n452,2\n453,2\n454,2\n455,2\n456,2\n457,2\n458,2\n459,2\n460,2\n461,2\n462,2\n463,2\n464,2\n465,2\n466,2\n467,1\n468,1\n469,2\n470,2\n471,2\n472,2\n473,1\n474,1\n475,2\n476,2\n477,2\n478,2\n479,2\n480,2\n481,2\n482,2\n483,2\n484,2\n485,2\n486,1\n487,1\n488,1\n489,2\n490,2\n491,2\n492,2\n493,2\n494,2\n495,2\n496,2\n497,2\n498,2\n499,2\n500,2\n501,2\n502,2\n503,2\n504,2\n505,2\n506,2\n507,2\n508,2\n509,2\n510,2\n511,2\n512,2\n513,2\n514,1\n515,2\n516,2\n517,2\n518,2\n519,2\n520,2\n521,2\n522,2\n523,2\n524,2\n525,2\n526,2\n527,2\n528,2\n529,2\n530,2\n531,2\n532,2\n533,2\n534,2\n535,2\n536,2\n537,2\n538,2\n539,2\n540,2\n541,2\n542,2\n543,2\n544,2\n545,2\n546,2\n547,2\n548,2\n549,2\n550,2\n551,2\n552,2\n553,2\n554,2\n555,2\n556,2\n557,2\n558,2\n559,2\n560,2\n561,2\n562,2\n563,2\n564,2\n565,2\n566,2\n567,2\n568,2\n569,2\n570,2\n571,2\n572,2\n573,2\n574,2\n575,2\n576,2\n577,2\n578,2\n579,2\n580,2\n581,2\n582,2\n583,2\n584,1\n585,2\n586,2\n587,2\n588,2\n589,2\n590,2\n591,2\n592,2\n593,2\n594,2\n595,2\n596,2\n597,2\n598,2\n599,2\n600,2\n601,2\n602,2\n603,2\n604,2\n605,2\n606,2\n607,2\n608,2\n609,2\n610,2\n611,2\n612,2\n613,2\n614,2\n615,2\n616,2\n617,2\n618,2\n619,2\n620,2\n621,2\n622,2\n623,2\n624,2\n625,2\n626,2\n627,2\n628,2\n629,2\n630,2\n631,2\n632,2\n633,2\n634,2\n635,2\n636,2\n637,2\n638,2\n639,2\n640,2\n641,2\n642,2\n643,2\n644,2\n645,2\n646,2\n647,2\n648,2\n649,2\n650,2\n651,2\n652,2\n653,2\n654,2\n655,2\n656,2\n657,2\n658,2\n659,2\n660,2\n661,2\n662,2\n663,2\n664,2\n665,2\n666,2\n667,2\n668,2\n669,2\n670,1\n671,2\n672,2\n673,2\n674,2\n675,2\n676,2\n677,2\n678,2\n679,2\n680,2\n681,2\n682,2\n683,2\n684,2\n685,2\n686,2\n687,2\n688,2\n689,2\n690,2\n691,2\n692,1\n693,2\n694,2\n695,2\n696,2\n697,2\n698,2\n699,2\n700,2\n701,2\n702,1\n703,1\n704,1\n705,1\n706,2\n707,2\n708,2\n709,2\n710,2\n711,2\n712,2\n713,2\n714,2\n715,2\n716,2\n717,2\n718,2\n719,2\n720,2\n721,2\n722,2\n723,2\n724,2\n725,2\n726,2\n727,2\n728,2\n729,2\n730,2\n731,2\n732,2\n733,2\n734,2\n735,2\n736,2\n737,2\n738,2\n739,2\n740,2\n741,2\n742,1\n743,2\n744,2\n745,2\n746,2\n747,2\n748,1\n749,1\n750,2\n751,2\n752,2\n753,2\n754,2\n755,2\n756,2\n757,2\n758,2\n759,2\n760,2\n761,2\n762,2\n763,2\n764,2\n765,2\n766,2\n767,2\n768,2\n769,2\n770,2\n771,2\n772,2\n773,2\n774,2\n775,2\n776,2\n777,2\n778,2\n779,2\n780,2\n781,2\n782,2\n783,2\n784,2\n785,2\n786,2\n787,2\n788,2\n789,2\n790,2\n791,2\n792,2\n793,2\n794,2\n795,2\n796,2\n797,2\n798,2\n799,2\n800,2\n801,2\n802,2\n803,2\n804,2\n805,2\n806,2\n807,2\n808,2\n809,2\n810,2\n811,2\n812,2\n813,2\n814,2\n815,2\n816,2\n817,2\n818,2\n819,2\n820,2\n821,2\n822,2\n823,2\n824,2\n825,2\n826,2\n827,2\n828,2\n829,2\n830,2\n831,2\n832,2\n833,2\n834,2\n835,2\n836,2\n837,2\n838,2\n839,2\n840,1\n841,2\n842,2\n843,2\n844,2\n845,2\n846,2\n847,2\n848,2\n849,2\n850,2\n851,2\n852,2\n853,2\n854,2\n855,2\n856,2\n857,2\n858,2\n859,2\n860,2\n861,2\n862,2\n863,2\n864,2\n865,2\n866,2\n867,2\n868,2\n869,2\n870,2\n871,2\n872,2\n873,2\n874,2\n875,2\n876,2\n877,2\n878,2\n879,2\n880,2\n881,2\n882,2\n883,2\n884,2\n885,2\n886,2\n887,2\n888,2\n889,2\n890,2\n891,2\n892,2\n893,1\n894,1\n895,2\n896,1\n897,1\n898,2\n899,2\n900,2\n901,2\n902,2\n903,2\n904,2\n905,2\n906,2\n907,2\n908,2\n909,2\n910,2\n911,2\n912,2\n913,2\n914,2\n915,2\n916,2\n917,2\n918,2\n919,2\n920,2\n921,2\n922,2\n923,2\n924,2\n925,2\n926,2\n927,2\n928,2\n929,2\n930,2\n931,2\n932,2\n933,2\n934,2\n935,2\n936,2\n937,2\n938,2\n939,2\n940,2\n941,2\n942,2\n943,2\n944,2\n945,2\n946,2\n947,2\n948,2\n949,2\n950,2\n951,2\n952,2\n953,2\n954,2\n955,2\n956,2\n957,2\n958,2\n959,2\n960,2\n961,2\n962,2\n963,2\n964,2\n965,2\n966,2\n967,2\n968,2\n969,2\n970,2\n971,2\n972,2\n973,2\n974,2\n975,2\n976,2\n977,2\n978,2\n979,2\n980,2\n981,2\n982,2\n983,2\n984,2\n985,2\n986,2\n987,2\n988,2\n989,2\n990,2\n991,2\n992,2\n993,2\n994,2\n995,2\n996,2\n997,2\n998,2\n999,2\n1000,2\n1001,2\n1002,2\n1003,2\n1004,2\n1005,2\n1006,2\n1007,2\n1008,2\n1009,2\n1010,2\n1011,2\n1012,2\n1013,2\n1014,2\n1015,2\n1016,2\n1017,2\n1018,2\n1019,2\n1020,2\n1021,2\n1022,2\n1023,2\n1024,2\n1025,2\n1026,2\n1027,2\n1028,2\n1029,2\n1030,2\n1031,2\n1032,2\n1033,2\n1034,2\n1035,2\n1036,2\n1037,2\n1038,2\n1039,2\n1040,2\n1041,2\n1042,2\n1043,2\n1044,2\n1045,2\n1046,2\n1047,2\n1048,2\n1049,2\n1050,2\n1051,2\n1052,2\n1053,2\n1054,2\n1055,2\n1056,2\n1057,2\n1058,2\n1059,2\n1060,2\n1061,2\n1062,2\n1063,2\n1064,2\n1065,2\n1066,2\n1067,2\n1068,2\n1069,2\n1070,2\n1071,2\n1072,2\n1073,2\n1074,2\n1075,2\n1076,2\n1077,2\n1078,2\n1079,2\n1080,2\n1081,2\n1082,2\n1083,2\n1084,2\n1085,2\n1086,2\n1087,2\n1088,2\n1089,2\n1090,2\n1091,2\n1092,2\n1093,2\n1094,2\n1095,2\n1096,2\n1097,2\n1098,2\n1099,2\n1100,2\n1101,2\n1102,2\n1103,2\n1104,2\n1105,2\n1106,2\n1107,2\n1108,2\n1109,2\n1110,2\n1111,2\n1112,1\n1113,2\n1114,2\n1115,2\n1116,2\n1117,3\n1118,3\n1119,3\n1120,3\n1121,3\n1122,3\n1123,3\n1124,3\n1125,3\n1126,3\n1127,3\n1128,3\n1129,3\n1130,3\n1131,3\n1132,3\n1133,3\n1134,3\n1135,3\n1136,3\n1137,3\n1138,3\n1139,3\n1140,3\n1141,3\n1142,3\n1143,3\n1144,3\n1145,3\n1146,3\n1147,3\n1148,3\n1149,3\n1150,3\n1151,3\n1152,3\n1153,1\n1154,1\n1155,3\n1156,3\n1157,3\n1158,3\n1159,3\n1160,3\n1161,3\n1162,3\n1163,3\n1164,3\n1165,3\n1166,3\n1167,3\n1168,3\n1169,3\n1170,3\n1171,3\n1172,3\n1173,3\n1174,3\n1175,3\n1176,3\n1177,3\n1178,3\n1179,3\n1180,3\n1181,3\n1182,3\n1183,3\n1184,3\n1185,3\n1186,3\n1187,3\n1188,3\n1189,3\n1190,3\n1191,3\n1192,3\n1193,3\n1194,3\n1195,3\n1196,3\n1197,3\n1198,3\n1199,3\n1200,3\n1201,3\n1202,3\n1203,3\n1204,3\n1205,3\n1206,3\n1207,3\n1208,3\n1209,3\n1210,3\n1211,3\n1212,3\n1213,3\n1214,3\n1215,1\n1216,3\n1217,3\n1218,3\n1219,3\n1220,3\n1221,3\n1222,3\n1223,3\n1224,3\n1225,3\n1226,3\n1227,3\n1228,3\n1229,3\n1230,3\n1231,3\n1232,3\n1233,3\n1234,3\n1235,3\n1236,3\n1237,3\n1238,3\n1239,3\n1240,3\n1241,1\n1242,3\n1243,3\n1244,3\n1245,3\n1246,3\n1247,3\n1248,3\n1249,3\n1250,3\n1251,3\n1252,3\n1253,3\n1254,3\n1255,3\n1256,1\n1257,3\n1258,3\n1259,3\n1260,3\n1261,3\n1262,3\n1263,3\n1264,3\n1265,3\n1266,3\n1267,3\n1268,3\n1269,3\n1270,3\n1271,3\n1272,3\n1273,3\n1274,1\n1275,3\n1276,3\n1277,3\n1278,3\n1279,3\n1280,3\n1281,3\n1282,3\n1283,3\n1284,3\n1285,3\n1286,3\n1287,3\n1288,3\n1289,3\n1290,3\n1291,3\n1292,3\n1293,3\n1294,3\n1295,3\n1296,3\n1297,3\n1298,3\n1299,3\n1300,3\n1301,3\n1302,3\n1303,3\n1304,3\n1305,3\n1306,3\n1307,3\n1308,3\n1309,3\n1310,3\n1311,3\n1312,3\n1313,3\n1314,3\n1315,3\n1316,3\n1317,3\n1318,3\n1319,3\n1320,3\n1321,3\n1322,3\n1323,3\n1324,3\n1325,3\n1326,3\n1327,3\n1328,3\n1329,3\n1330,3\n1331,3\n1332,3\n1333,3\n1334,3\n1335,3\n1336,3\n1337,3\n1338,3\n1339,3\n1340,3\n1341,3\n1342,3\n1343,3\n1344,3\n1345,3\n1346,3\n1347,3\n1348,3\n1349,3\n1350,3\n1351,3\n1352,3\n1353,3\n1354,3\n1355,3\n1356,3\n1357,3\n1358,3\n1359,3\n1360,3\n1361,3\n1362,3\n1363,3\n1364,3\n1365,3\n1366,3\n1367,3\n1368,3\n1369,3\n1370,3\n1371,3\n1372,3\n1373,3\n1374,3\n1375,3\n1376,3\n1377,3\n1378,3\n1379,3\n1380,3\n1381,3\n1382,3\n1383,3\n1384,3\n1385,3\n1386,3\n1387,3\n1388,3\n1389,3\n1390,3\n1391,3\n1392,3\n1393,3\n1394,3\n1395,3\n1396,3\n1397,3\n1398,3\n1399,3\n1400,3\n1401,3\n1402,3\n1403,3\n1404,3\n1405,3\n1406,3\n1407,3\n1408,3\n1409,3\n1410,3\n1411,3\n1412,3\n1413,3\n1414,3\n1415,3\n1416,3\n1417,3\n1418,3\n1419,3\n1420,3\n1421,3\n1422,3\n1423,3\n1424,3\n1425,3\n1426,3\n1427,3\n1428,3\n1429,3\n1430,3\n1431,3\n1432,3\n1433,3\n1434,3\n1435,3\n1436,3\n1437,3\n1438,3\n1439,3\n1440,3\n1441,3\n1442,3\n1443,3\n1444,3\n1445,3\n1446,3\n1447,3\n1448,3\n1449,3\n1450,3\n1451,3\n1452,3\n1453,3\n1454,3\n1455,3\n1456,3\n1457,3\n1458,3\n1459,3\n1460,3\n1461,3\n1462,3\n1463,3\n1464,3\n1465,3\n1466,3\n1467,3\n1468,3\n1469,3\n1470,3\n1471,3\n1472,3\n1473,3\n1474,3\n1475,3\n1476,3\n1477,3\n1478,3\n1479,3\n1480,3\n1481,3\n1482,1\n1483,3\n1484,3\n1485,3\n1486,3\n1487,3\n1488,3\n1489,1\n1490,3\n1491,3\n1492,3\n1493,3\n1494,3\n1495,3\n1496,3\n1497,3\n1498,3\n1499,3\n1500,3\n1501,3\n1502,3\n1503,3\n1504,3\n1505,3\n1506,3\n1507,3\n1508,3\n1509,3\n1510,3\n1511,3\n1512,3\n1513,3\n1514,3\n1515,3\n1516,3\n1517,3\n1518,3\n1519,3\n1520,3\n1521,3\n1522,3\n1523,3\n1524,3\n1525,3\n1526,3\n1527,3\n1528,3\n1529,3\n1530,3\n1531,3\n1532,3\n1533,3\n1534,3\n1535,3\n1536,3\n1537,3\n1538,3\n1539,3\n1540,3\n1541,3\n1542,3\n1543,3\n1544,3\n1545,3\n1546,3\n1547,3\n1548,3\n1549,3\n1550,3\n1551,3\n1552,3\n1553,3\n1554,3\n1555,3\n1556,3\n1557,3\n1558,3\n1559,3\n1560,3\n1561,3\n1562,3\n1563,3\n1564,3\n1565,3\n1566,3\n1567,3\n1568,3\n1569,3\n1570,3\n1571,3\n1572,3\n1573,3\n1574,3\n1575,3\n1576,3\n1577,3\n1578,3\n1579,3\n1580,3\n1581,3\n1582,3\n1583,3\n1584,3\n1585,3\n1586,3\n1587,3\n1588,1\n1589,3\n1590,3\n1591,3\n1592,3\n1593,3\n1594,3\n1595,3\n1596,3\n1597,3\n1598,3\n1599,3\n1600,3\n1601,3\n1602,3\n1603,3\n1604,3\n1605,3\n1606,3\n1607,3\n1608,3\n1609,3\n1610,3\n1611,3\n1612,3\n1613,3\n1614,3\n1615,3\n1616,3\n1617,3\n1618,3\n1619,3\n1620,3\n1621,3\n1622,3\n1623,3\n1624,3\n1625,3\n1626,3\n1627,3\n1628,3\n1629,3\n1630,3\n1631,3\n1632,3\n1633,3\n1634,3\n1635,3\n1636,3\n1637,3\n1638,3\n1639,3\n1640,3\n1641,3\n1642,3\n1643,3\n1644,3\n1645,3\n1646,3\n1647,3\n1648,3\n1649,3\n1650,3\n1651,3\n1652,3\n1653,3\n1654,3\n1655,3\n1656,3\n1657,3\n1658,3\n1659,3\n1660,3\n1661,3\n1662,3\n1663,3\n1664,3\n1665,3\n1666,3\n1667,3\n1668,3\n1669,3\n1670,3\n1671,1\n1672,1\n1673,1\n1674,1\n1675,1\n1676,1\n1677,1\n1678,1\n1679,1\n1680,1\n1681,1\n1682,1\n1683,1\n1684,1\n1685,1\n1686,1\n1687,1\n1688,1\n1689,1\n1690,1\n1691,1\n1692,1\n1693,1\n1694,1\n1695,1\n1696,1\n1697,1\n1698,1\n1699,1\n1700,1\n1701,1\n1702,1\n1703,1\n1704,1\n1705,1\n1706,1\n1707,1\n1708,1\n1709,1\n1710,1\n1711,1\n1712,1\n1713,1\n1714,1\n1715,1\n1716,1\n1717,1\n1718,1\n1719,1\n1720,1\n1721,1\n1722,1\n1723,1\n1724,1\n1725,1\n1726,1\n1727,1\n1728,1\n1729,1\n1730,1\n1731,1\n1732,1\n1733,1\n1734,1\n1735,1\n1736,1\n1737,1\n1738,1\n1739,1\n1740,1\n1741,1\n1742,1\n1743,1\n1744,1\n1745,1\n1746,1\n1747,1\n1748,1\n1749,1\n1750,1\n1751,1\n1752,1\n1753,1\n1754,1\n1755,1\n1756,1\n1757,1\n1758,1\n1759,1\n1760,1\n1761,1\n1762,1\n1763,1\n1764,1\n1765,1\n1766,1\n1767,1\n1768,1\n1769,1\n1770,1\n1771,1\n1772,1\n1773,1\n1774,1\n1775,1\n1776,1\n1777,1\n1778,1\n1779,1\n1780,1\n1781,1\n1782,1\n1783,1\n1784,1\n1785,1\n1786,1\n1787,1\n1788,1\n1789,1\n1790,1\n1791,1\n1792,1\n1793,1\n1794,1\n1795,1\n1796,1\n1797,1\n1798,1\n1799,1\n1800,1\n1801,1\n1802,1\n1803,1\n1804,1\n1805,1\n1806,1\n1807,1\n1808,1\n1809,1\n1810,1\n1811,1\n1812,1\n1813,1\n1814,1\n1815,1\n1816,1\n1817,1\n1818,1\n1819,1\n1820,1\n1821,1\n1822,1\n1823,1\n1824,1\n1825,1\n1826,1\n1827,1\n1828,1\n1829,1\n1830,1\n1831,1\n1832,1\n1833,1\n1834,1\n1835,1\n1836,1\n1837,1\n1838,1\n1839,1\n1840,1\n1841,1\n1842,1\n1843,1\n1844,1\n1845,1\n1846,1\n1847,1\n1848,1\n1849,1\n1850,1\n1851,1\n1852,1\n1853,1\n1854,1\n1855,1\n1856,1\n1857,1\n1858,1\n1859,1\n1860,1\n1861,1\n1862,1\n1863,1\n1864,1\n1865,1\n1866,1\n1867,1\n1868,1\n1869,1\n1870,1\n1871,1\n1872,1\n1873,1\n1874,1\n1875,1\n1876,1\n1877,1\n1878,1\n1879,1\n1880,1\n1881,1\n1882,1\n1883,1\n1884,1\n1885,1\n1886,1\n1887,1\n1888,1\n1889,1\n1890,1\n1891,1\n1892,1\n1893,1\n1894,1\n1895,1\n1896,1\n1897,1\n1898,1\n1899,1\n1900,1\n1901,1\n1902,1\n1903,1\n1904,1\n1905,1\n1906,1\n1907,1\n1908,1\n1909,1\n1910,1\n1911,1\n1912,1\n1913,1\n1914,1\n1915,1\n1916,1\n1917,1\n1918,1\n1919,1\n1920,1\n1921,1\n1922,1\n1923,1\n1924,1\n1925,1\n1926,1\n1927,1\n1928,1\n1929,1\n1930,1\n1931,1\n1932,1\n1933,1\n1934,1\n1935,1\n1936,1\n1937,1\n1938,1\n1939,1\n1940,1\n1941,1\n1942,1\n1943,1\n1944,1\n1945,1\n1946,1\n1947,1\n1948,1\n1949,1\n1950,1\n1951,1\n1952,1\n1953,1\n1954,1\n1955,1\n1956,1\n1957,1\n1958,1\n1959,1\n1960,1\n1961,1\n1962,1\n1963,1\n1964,1\n1965,1\n1966,1\n1967,1\n1968,1\n1969,1\n1970,1\n1971,1\n1972,1\n1973,1\n1974,1\n1975,1\n1976,1\n1977,1\n1978,1\n1979,1\n1980,1\n1981,1\n1982,1\n1983,1\n1984,1\n1985,1\n1986,1\n1987,1\n1988,1\n1989,1\n1990,1\n1991,1\n1992,1\n1993,1\n1994,1\n1995,1\n1996,1\n1997,1\n1998,1\n1999,1\n2000,1\n2001,1\n2002,1\n2003,1\n2004,1\n2005,1\n2006,1\n2007,1\n2008,1\n2009,1\n2010,1\n2011,1\n2012,1\n2013,1\n2014,1\n2015,1\n2016,1\n2017,1\n2018,1\n2019,1\n2020,1\n2021,1\n2022,1\n2023,1\n2024,1\n2025,1\n2026,1\n2027,1\n2028,1\n2029,1\n2030,1\n2031,1\n2032,1\n2033,1\n2034,1\n2035,1\n2036,1\n2037,1\n2038,1\n2039,1\n2040,1\n2041,1\n2042,1\n2043,1\n2044,1\n2045,1\n2046,1\n2047,1\n2048,1\n2049,1\n2050,1\n2051,1\n2052,1\n2053,1\n2054,1\n2055,1\n2056,1\n2057,1\n2058,1\n2059,1\n2060,1\n2061,1\n2062,1\n2063,1\n2064,1\n2065,1\n2066,1\n2067,1\n2068,1\n2069,1\n2070,1\n2071,1\n2072,1\n2073,1\n2074,1\n2075,1\n2076,1\n2077,1\n2078,1\n2079,1\n2080,1\n2081,1\n2082,1\n2083,1\n2084,1\n2085,1\n2086,1\n2087,1\n2088,1\n2089,1\n2090,1\n2091,1\n2092,1\n2093,1\n2094,1\n2095,1\n2096,1\n2097,1\n2098,1\n2099,1\n2100,1\n2101,1\n2102,1\n2103,1\n2104,1\n2105,1\n2106,1\n2107,1\n2108,1\n2109,1\n2110,1\n2111,1\n2112,1\n2113,1\n2114,1\n2115,1\n2116,1\n2117,1\n2118,1\n2119,1\n2120,1\n2121,1\n2122,1\n2123,1\n2124,1\n2125,1\n2126,1\n2127,1\n2128,1\n2129,1\n2130,1\n2131,1\n2132,1\n2133,1\n2134,1\n2135,1\n2136,1\n2137,1\n2138,1\n2139,1\n2140,1\n2141,1\n2142,1\n2143,1\n2144,1\n2145,1\n2146,1\n2147,1\n2148,1\n2149,1\n2150,1\n2151,1\n2152,1\n2153,1\n2154,1\n2155,1\n2156,1\n2157,1\n2158,1\n2159,1\n2160,1\n2161,1\n2162,1\n2163,1\n2164,1\n2165,1\n2166,1\n2167,1\n2168,1\n2169,1\n2170,1\n2171,1\n2172,1\n2173,1\n2174,1\n2175,1\n2176,1\n2177,1\n2178,1\n2179,1\n2180,1\n2181,1\n2182,1\n2183,1\n2184,1\n2185,1\n2186,1\n2187,1\n2188,1\n2189,1\n2190,1\n2191,1\n2192,1\n2193,1\n2194,1\n2195,1\n2196,1\n2197,1\n2198,1\n2199,1\n2200,1\n2201,1\n2202,1\n2203,1\n2204,1\n2205,1\n2206,1\n2207,1\n2208,1\n2209,1\n2210,1\n2211,1\n2212,1\n2213,1\n2214,1\n2215,1\n2216,1\n2217,1\n2218,1\n2219,1\n2220,1\n2221,1\n2222,1\n2223,1\n2224,1\n2225,1\n2226,1\n2227,1\n2228,1\n2229,1\n2230,1\n2231,1\n2232,1\n2233,1\n2234,1\n2235,1\n2236,1\n2237,1\n2238,1\n2239,1\n2240,1\n2241,1\n2242,1\n2243,1\n2244,1\n2245,1\n2246,1\n2247,1\n2248,1\n2249,1\n2250,1\n2251,1\n2252,1\n2253,1\n2254,1\n2255,1\n2256,1\n2257,1\n2258,1\n2259,1\n2260,1\n2261,1\n2262,1\n2263,1\n2264,1\n2265,1\n2266,1\n2267,1\n2268,1\n2269,1\n2270,1\n2271,1\n2272,1\n2273,1\n2274,1\n2275,1\n2276,1\n2277,1\n2278,1\n2279,1\n2280,1\n2281,1\n2282,1\n2283,1\n2284,1\n2285,1\n2286,1\n2287,1\n2288,1\n2289,1\n2290,1\n2291,1\n2292,1\n2293,1\n2294,1\n2295,1\n2296,1\n2297,1\n2298,1\n2299,1\n2300,1\n2301,1\n2302,1\n2303,1\n2304,1\n2305,1\n2306,1\n2307,1\n2308,1\n2309,1\n2310,1\n2311,1\n2312,1\n2313,1\n2314,1\n2315,1\n2316,1\n2317,1\n2318,1\n2319,1\n2320,1\n2321,1\n2322,1\n2323,1\n2324,1\n2325,1\n2326,1\n2327,1\n2328,1\n2329,1\n2330,1\n2331,1\n2332,1\n2333,1\n2334,1\n2335,1\n2336,1\n2337,1\n2338,1\n2339,1\n2340,1\n2341,1\n2342,1\n2343,1\n2344,1\n2345,1\n2346,1\n2347,1\n2348,1\n2349,1\n2350,1\n2351,1\n2352,1\n2353,1\n2354,1\n2355,1\n2356,1\n2357,1\n2358,1\n2359,1\n2360,1\n2361,1\n2362,1\n2363,1\n2364,1\n2365,1\n2366,1\n2367,1\n2368,1\n2369,1\n2370,1\n2371,1\n2372,1\n2373,1\n2374,1\n2375,1\n2376,1\n2377,1\n2378,1\n2379,1\n2380,1\n2381,1\n2382,1\n2383,1\n2384,1\n2385,1\n2386,1\n2387,1\n2388,1\n2389,1\n2390,1\n2391,1\n2392,1\n2393,1\n2394,1\n2395,1\n2396,1\n2397,1\n2398,1\n2399,1\n2400,1\n2401,1\n2402,1\n2403,1\n2404,1\n2405,1\n2406,1\n2407,1\n2408,1\n2409,1\n2410,1\n2411,1\n2412,1\n2413,1\n2414,1\n2415,1\n2416,1\n2417,1\n2418,1\n2419,1\n2420,1\n2421,1\n2422,1\n2423,1\n2424,1\n2425,1\n2426,1\n2427,1\n2428,1\n2429,1\n2430,1\n2431,1\n2432,1\n2433,1\n2434,1\n2435,1\n2436,1\n2437,1\n2438,1\n2439,1\n2440,1\n2441,1\n2442,1\n2443,1\n2444,1\n2445,1\n2446,1\n2447,1\n2448,1\n2449,1\n2450,1\n2451,1\n2452,1\n2453,1\n2454,1\n2455,1\n2456,1\n2457,1\n2458,1\n2459,1\n2460,1\n2461,1\n2462,1\n2463,1\n2464,1\n2465,1\n2466,1\n2467,1\n2468,1\n2469,1\n2470,1\n2471,1\n2472,1\n2473,1\n2474,1\n2475,1\n2476,1\n2477,1\n2478,1\n2479,1\n2480,1\n2481,1\n2482,1\n2483,1\n2484,1\n2485,1\n2486,1\n2487,1\n2488,1\n2489,1\n2490,1\n2491,1\n2492,1\n2493,1\n2494,1\n2495,1\n2496,1\n2497,1\n2498,1\n2499,1\n2500,1\n2501,1\n2502,1\n2503,1\n2504,1\n2505,1\n2506,1\n2507,1\n2508,1\n2509,1\n2510,1\n2511,1\n2512,1\n2513,1\n2514,1\n2515,1\n2516,1\n2517,1\n2518,1\n2519,1\n2520,1\n2521,1\n2522,1\n2523,1\n2524,1\n2525,1\n2526,1\n2527,1\n2528,1\n2529,1\n2530,1\n2531,1\n2532,1\n2533,1\n2534,1\n2535,1\n2536,1\n2537,1\n2538,1\n2539,1\n2540,1\n2541,1\n2542,1\n2543,1\n2544,1\n2545,1\n2546,1\n2547,1\n2548,1\n2549,1\n2550,1\n2551,1\n2552,1\n2553,1\n2554,1\n2555,1\n2556,1\n2557,1\n2558,1\n2559,1\n2560,1\n2561,1\n2562,1\n2563,1\n2564,1\n2565,1\n2566,1\n2567,1\n2568,1\n2569,1\n2570,1\n2571,1\n2572,1\n2573,1\n2574,1\n2575,1\n2576,1\n2577,1\n2578,1\n2579,1\n2580,1\n2581,1\n2582,1\n2583,1\n2584,1\n2585,1\n2586,1\n2587,1\n2588,1\n2589,1\n2590,1\n2591,1\n2592,1\n2593,1\n2594,1\n2595,1\n2596,1\n2597,1\n2598,1\n2599,1\n2600,1\n2601,1\n2602,1\n2603,1\n2604,1\n2605,1\n2606,1\n2607,1\n2608,1\n2609,1\n2610,1\n2611,1\n2612,1\n2613,1\n2614,1\n2615,1\n2616,1\n2617,1\n2618,1\n2619,1\n2620,1\n2621,1\n2622,1\n2623,1\n2624,1\n2625,1\n2626,1\n2627,1\n2628,1\n2629,1\n2630,1\n2631,1\n2632,1\n2633,1\n2634,1\n2635,1\n2636,1\n2637,1\n2638,1\n2639,1\n2640,1\n2641,1\n2642,1\n2643,1\n2644,1\n2645,1\n2646,1\n2647,1\n2648,1\n2649,1\n2650,1\n2651,1\n2652,1\n2653,1\n2654,1\n2655,1\n2656,1\n2657,1\n2658,1\n2659,1\n2660,1\n2661,1\n2662,1\n2663,1\n2664,1\n2665,1\n2666,1\n2667,1\n2668,1\n2669,1\n2670,1\n2671,1\n2672,1\n2673,1\n2674,1\n2675,1\n2676,1\n2677,1\n2678,1\n2679,1\n2680,1\n2681,1\n2682,1\n2683,1\n2684,1\n2685,1\n2686,1\n2687,1\n2688,1\n2689,1\n2690,1\n2691,1\n2692,1\n2693,1\n2694,1\n2695,1\n2696,1\n2697,1\n2698,1\n2699,1\n2700,1\n2701,1\n2702,1\n2703,1\n2704,1\n2705,1\n2706,1\n2707,1\n2708,1\n2709,1\n2710,1\n2711,1\n2712,1\n2713,1\n2714,1\n2715,1\n2716,1\n2717,1\n2718,1\n2719,1\n2720,1\n2721,1\n2722,1\n2723,1\n2724,1\n2725,1\n2726,1\n2727,1\n2728,1\n2729,1\n2730,1\n2731,1\n2732,1\n2733,1\n2734,1\n2735,1\n2736,1\n2737,1\n2738,1\n2739,1\n2740,1\n2741,1\n2742,1\n2743,1\n2744,1\n2745,1\n2746,1\n2747,1\n2748,1\n2749,1\n2750,1\n2751,1\n2752,1\n2753,1\n2754,1\n2755,1\n2756,1\n2757,1\n2758,1\n2759,1\n2760,1\n2761,1\n2762,1\n2763,1\n2764,1\n2765,1\n2766,1\n2767,1\n2768,1\n2769,1\n2770,1\n2771,1\n2772,1\n2773,1\n2774,1\n2775,1\n2776,1\n2777,1\n2778,1\n2779,1\n2780,1\n2781,1\n2782,1\n2783,1\n2784,1\n2785,1\n2786,1\n2787,1\n2788,1\n2789,1\n2790,1\n2791,1\n2792,1\n2793,1\n2794,1\n2795,1\n2796,1\n2797,1\n2798,1\n2799,1\n2800,1\n2801,1\n2802,1\n2803,1\n2804,1\n2805,1\n2806,1\n2807,1\n2808,1\n2809,1\n2810,1\n2811,1\n2812,1\n2813,1\n2814,1\n2815,1\n2816,1\n2817,1\n2818,1\n2819,1\n2820,1\n2821,1\n2822,1\n2823,1\n2824,1\n2825,1\n2826,1\n2827,1\n2828,1\n2829,1\n2830,1\n2831,1\n2832,1\n2833,1\n2834,1\n2835,1\n2836,1\n2837,1\n2838,1\n2839,1\n2840,1\n2841,1\n2842,1\n2843,1\n2844,1\n2845,1\n2846,1\n2847,1\n2848,1\n2849,1\n2850,1\n2851,1\n2852,1\n2853,1\n2854,1\n2855,1\n2856,1\n2857,1\n2858,1\n2859,1\n2860,1\n2861,1\n2862,1\n2863,1\n2864,1\n2865,1\n2866,1\n2867,1\n2868,1\n2869,1\n2870,1\n2871,1\n2872,1\n2873,1\n2874,1\n2875,1\n2876,1\n2877,1\n2878,1\n2879,1\n2880,1\n2881,1\n2882,1\n2883,1\n2884,1\n2885,1\n2886,1\n2887,1\n2888,1\n2889,1\n2890,1\n2891,1\n2892,1\n2893,1\n2894,1\n2895,1\n2896,1\n2897,1\n2898,1\n2899,1\n2900,1\n2901,1\n2902,1\n2903,1\n2904,1\n2905,1\n2906,1\n2907,1\n2908,1\n2909,1\n2910,1\n2911,1\n2912,1\n2913,1\n2914,1\n2915,1\n2916,1\n2917,1\n2918,1\n2919,1\n2920,1\n2921,1\n2922,1\n2923,1\n2924,1\n2925,1\n2926,1\n2927,1\n2928,1\n2929,1\n2930,1\n2931,1\n2932,1\n2933,1\n2934,1\n2935,1\n2936,1\n2937,1\n2938,1\n2939,1\n2940,1\n2941,1\n2942,1\n2943,1\n2944,1\n2945,1\n2946,1\n2947,1\n2948,1\n2949,1\n2950,1\n2951,1\n2952,1\n2953,1\n2954,1\n2955,1\n2956,1\n2957,1\n2958,1\n2959,1\n2960,1\n2961,1\n2962,1\n2963,1\n2964,1\n2965,1\n2966,1\n2967,1\n2968,1\n2969,1\n2970,1\n2971,1\n2972,1\n2973,1\n2974,1\n2975,1\n2976,1\n2977,1\n2978,1\n2979,1\n2980,1\n2981,1\n2982,1\n2983,1\n2984,1\n2985,1\n2986,1\n2987,1\n2988,1\n2989,1\n2990,1\n2991,1\n2992,1\n2993,1\n2994,1\n2995,1\n2996,1\n2997,1\n2998,1\n2999,1\n3000,1\n3001,1\n3002,1\n3003,1\n3004,1\n3005,1\n3006,1\n3007,1\n3008,1\n3009,1\n3010,1\n3011,1\n3012,1\n3013,1\n3014,1\n3015,1\n3016,1\n3017,1\n3018,1\n3019,1\n3020,1\n3021,1\n3022,1\n3023,1\n3024,1\n3025,1\n3026,1\n3027,1\n3028,1\n3029,1\n3030,1\n3031,1\n3032,1\n3033,1\n3034,1\n3035,1\n3036,1\n3037,1\n3038,1\n3039,1\n3040,1\n3041,1\n3042,1\n3043,1\n3044,1\n3045,1\n3046,1\n3047,1\n3048,1\n3049,1\n3050,1\n3051,1\n3052,1\n3053,1\n3054,1\n3055,1\n3056,1\n3057,1\n3058,1\n3059,1\n3060,1\n3061,1\n3062,1\n3063,1\n3064,1\n3065,1\n3066,1\n3067,1\n3068,1\n3069,1\n3070,1\n3071,1\n3072,1\n3073,1\n3074,1\n3075,1\n3076,1\n3077,1\n3078,1\n3079,1\n3080,1\n3081,1\n3082,1\n3083,1\n3084,1\n3085,1\n3086,1\n3087,1\n3088,1\n3089,1\n3090,1\n3091,1\n3092,1\n3093,1\n3094,1\n3095,1\n3096,1\n3097,1\n3098,1\n3099,1\n3100,1\n3101,1\n3102,1\n3103,1\n3104,1\n3105,1\n3106,1\n3107,1\n3108,1\n3109,1\n3110,1\n3111,1\n3112,1\n3113,1\n3114,1\n3115,1\n3116,1\n3117,1\n3118,1\n3119,1\n3120,1\n3121,1\n3122,1\n3123,1\n3124,1\n3125,1\n3126,1\n3127,1\n3128,1\n3129,1\n3130,1\n3131,1\n3132,1\n3133,1\n3134,1\n3135,1\n3136,1\n3137,1\n3138,1\n3139,1\n3140,1\n3141,1\n3142,1\n3143,1\n3144,1\n3145,1\n3146,1\n3147,1\n3148,1\n3149,1\n3150,1\n3151,1\n3152,1\n3153,1\n3154,1\n3155,1\n3156,1\n3157,1\n3158,1\n3159,1\n3160,1\n3161,1\n3162,1\n3163,1\n3164,1\n3165,1\n3166,1\n3167,1\n3168,1\n3169,1\n3170,1\n3171,1\n3172,1\n3173,1\n3174,1\n3175,1\n3176,1\n3177,1\n3178,1\n3179,1\n3180,1\n3181,1\n3182,1\n3183,1\n3184,1\n3185,1\n3186,1\n3187,1\n3188,1\n3189,1\n3190,1\n3191,1\n3192,1\n3193,1\n3194,1\n3195,1\n3196,1\n3197,1\n3198,1\n3199,1\n3200,1\n3201,1\n3202,1\n3203,1\n3204,1\n3205,1\n3206,1\n3207,1\n3208,1\n3209,1\n3210,1\n3211,1\n3212,1\n3213,1\n3214,1\n3215,1\n3216,1\n3217,1\n3218,1\n3219,1\n3220,1\n3221,1\n3222,1\n3223,1\n3224,1\n3225,1\n3226,1\n3227,1\n3228,1\n3229,1\n3230,1\n3231,1\n3232,1\n3233,1\n3234,1\n3235,1\n3236,1\n3237,1\n3238,1\n3239,1\n3240,1\n3241,1\n3242,1\n3243,1\n3244,1\n3245,1\n3246,1\n3247,1\n3248,1\n3249,1\n3250,1\n3251,1\n3252,1\n3253,1\n3254,1\n3255,1\n3256,1\n3257,1\n3258,1\n3259,1\n3260,1\n3261,1\n3262,1\n3263,1\n3264,1\n3265,1\n3266,1\n3267,1\n3268,1\n3269,1\n3270,1\n3271,1\n3272,1\n3273,1\n3274,1\n3275,1\n3276,1\n3277,1\n3278,1\n3279,1\n3280,1\n3281,1\n3282,1\n3283,1\n3284,1\n3285,1\n3286,1\n3287,1\n3288,1\n3289,1\n3290,1\n3291,1\n3292,1\n3293,1\n3294,1\n3295,1\n3296,1\n3297,1\n3298,1\n3299,1\n3300,1\n3301,1\n3302,1\n3303,1\n3304,1\n3305,1\n3306,1\n3307,1\n3308,1\n3309,1\n3310,1\n3311,1\n3312,1\n3313,1\n3314,1\n3315,1\n3316,1\n3317,1\n3318,1\n3319,1\n3320,1\n3321,1\n3322,1\n3323,1\n3324,1\n3325,1\n3326,1\n3327,1\n3328,1\n3329,1\n3330,1\n3331,1\n3332,1\n3333,1\n3334,1\n3335,1\n3336,1\n3337,1\n3338,1\n3339,1\n3340,1\n3341,1\n3342,1\n3343,1\n3344,1\n3345,1\n3346,1\n3347,1\n3348,1\n3349,1\n3350,1\n3351,1\n3352,1\n3353,1\n3354,1\n3355,1\n3356,1\n3357,1\n3358,1\n3359,1\n3360,1\n3361,1\n3362,1\n3363,1\n3364,1\n3365,1\n3366,1\n3367,1\n3368,1\n3369,1\n3370,1\n3371,1\n3372,1\n3373,1\n3374,1\n3375,1\n3376,1\n3377,1\n3378,1\n3379,1\n3380,1\n3381,1\n3382,1\n3383,1\n3384,1\n3385,1\n3386,1\n3387,1\n3388,1\n3389,1\n3390,1\n3391,1\n3392,1\n3393,1\n3394,1\n3395,1\n3396,1\n3397,1\n3398,1\n3399,1\n3400,1\n3401,1\n3402,1\n3403,1\n3404,1\n3405,1\n3406,1\n3407,1\n3408,1\n3409,1\n3410,1\n3411,1\n3412,1\n3413,1\n3414,1\n3415,1\n3416,1\n3417,1\n3418,1\n3419,1\n3420,1\n3421,1\n3422,1\n3423,1\n3424,1\n3425,1\n3426,1\n3427,1\n3428,1\n3429,1\n3430,1\n3431,1\n3432,1\n3433,1\n3434,1\n3435,1\n3436,1\n3437,1\n3438,1\n3439,1\n3440,1\n3441,1\n3442,1\n3443,1\n3444,1\n3445,1\n3446,1\n3447,1\n3448,1\n3449,1\n3450,1\n3451,1\n3452,1\n3453,1\n3454,1\n3455,1\n3456,1\n3457,1\n3458,1\n3459,1\n3460,1\n3461,1\n3462,1\n3463,1\n3464,1\n3465,1\n3466,1\n3467,1\n3468,1\n3469,1\n3470,1\n3471,1\n3472,1\n3473,1\n3474,1\n3475,1\n3476,1\n3477,1\n3478,1\n3479,1\n3480,1\n3481,1\n3482,1\n3483,1\n3484,1\n3485,1\n3486,1\n3487,1\n3488,1\n3489,1\n3490,1\n3491,1\n3492,1\n3493,1\n3494,1\n3495,1\n3496,1\n3497,1\n3498,1\n3499,1\n3500,1\n3501,1\n3502,1\n3503,1\n3504,1\n3505,1\n3506,1\n3507,1\n3508,1\n3509,1\n3510,1\n3511,1\n3512,1\n3513,1\n3514,1\n3515,1\n3516,1\n3517,1\n3518,1\n3519,1\n3520,1\n3521,1\n3522,1\n3523,1\n3524,1\n3525,1\n3526,1\n3527,1\n3528,1\n3529,1\n3530,1\n3531,1\n3532,1\n3533,1\n3534,1\n3535,1\n3536,1\n3537,1\n3538,1\n3539,1\n3540,1\n3541,1\n3542,1\n3543,1\n3544,1\n3545,1\n3546,1\n3547,1\n3548,1\n3549,1\n3550,1\n3551,1\n3552,1\n3553,1\n3554,1\n3555,1\n3556,1\n3557,1\n3558,1\n3559,1\n3560,1\n3561,1\n3562,1\n3563,1\n3564,1\n3565,1\n3566,1\n3567,1\n3568,1\n3569,1\n3570,1\n3571,1\n3572,1\n3573,1\n3574,1\n3575,1\n3576,1\n3577,1\n3578,1\n3579,1\n3580,1\n3581,1\n3582,1\n3583,1\n3584,1\n3585,1\n3586,1\n3587,1\n3588,1\n3589,1\n3590,1\n3591,1\n3592,1\n3593,1\n3594,1\n3595,1\n3596,1\n3597,1\n3598,1\n3599,1\n3600,1\n3601,1\n3602,1\n3603,1\n3604,1\n3605,1\n3606,1\n3607,1\n3608,1\n3609,1\n3610,1\n3611,1\n3612,1\n3613,1\n3614,1\n3615,1\n3616,1\n3617,1\n3618,1\n3619,1\n3620,1\n3621,1\n3622,1\n3623,1\n3624,1\n3625,1\n3626,1\n3627,1\n3628,1\n3629,1\n3630,1\n3631,1\n3632,1\n3633,1\n3634,1\n3635,1\n3636,1\n3637,1\n3638,1\n3639,1\n3640,1\n3641,1\n3642,1\n3643,1\n3644,1\n3645,1\n3646,1\n3647,1\n3648,1\n3649,1\n3650,1\n3651,1\n3652,1\n3653,1\n3654,1\n3655,1\n3656,1\n3657,1\n3658,1\n3659,1\n3660,1\n3661,1\n3662,1\n3663,1\n3664,1\n3665,1\n3666,1\n3667,1\n3668,1\n3669,1\n3670,1\n3671,1\n3672,1\n3673,1\n3674,1\n3675,1\n3676,1\n3677,1\n3678,1\n3679,1\n3680,1\n3681,1\n3682,1\n3683,1\n3684,1\n3685,1\n3686,1\n3687,1\n3688,1\n3689,1\n3690,1\n3691,1\n3692,1\n3693,1\n3694,1\n3695,1\n3696,1\n3697,1\n3698,1\n3699,1\n3700,1\n3701,1\n3702,1\n3703,1\n3704,1\n3705,1\n3706,1\n3707,1\n3708,1\n3709,1\n3710,1\n3711,1\n3712,1\n3713,1\n3714,1\n3715,1\n3716,1\n3717,1\n3718,1\n3719,1\n3720,1\n3721,1\n3722,1\n3723,1\n3724,1\n3725,1\n3726,1\n3727,1\n3728,1\n3729,1\n3730,1\n3731,1\n3732,1\n3733,1\n3734,1\n3735,1\n3736,1\n3737,1\n3738,1\n3739,1\n3740,1\n3741,1\n3742,1\n3743,1\n3744,1\n3745,1\n3746,1\n3747,1\n3748,1\n3749,1\n3750,1\n3751,1\n3752,1\n3753,1\n3754,1\n3755,1\n3756,1\n3757,1\n3758,1\n3759,1\n3760,1\n3761,1\n3762,1\n3763,1\n3764,1\n3765,1\n3766,1\n3767,1\n3768,1\n3769,1\n3770,1\n3771,1\n3772,1\n3773,1\n3774,1\n3775,1\n3776,1\n3777,1\n3778,1\n3779,1\n3780,1\n3781,1\n3782,1\n3783,1\n3784,1\n3785,1\n3786,1\n3787,1\n3788,1\n3789,1\n3790,1\n3791,1\n3792,1\n3793,1\n3794,1\n3795,1\n3796,1\n3797,1\n3798,1\n3799,1\n3800,1\n3801,1\n3802,1\n3803,1\n3804,1\n3805,1\n3806,1\n3807,1\n3808,1\n3809,1\n3810,1\n3811,1\n3812,1\n3813,1\n3814,1\n3815,1\n3816,1\n3817,1\n3818,1\n3819,1\n3820,1\n3821,1\n3822,1\n3823,1\n3824,1\n3825,1\n3826,1\n3827,1\n3828,1\n3829,1\n3830,1\n3831,1\n3832,1\n3833,1\n3834,1\n3835,1\n3836,1\n3837,1\n3838,1\n3839,1\n3840,1\n3841,1\n3842,1\n3843,1\n3844,1\n3845,1\n3846,1\n3847,1\n3848,1\n3849,1\n3850,1\n3851,1\n3852,1\n3853,1\n3854,1\n3855,1\n3856,1\n3857,1\n3858,1\n3859,1\n3860,1\n3861,1\n3862,1\n3863,1\n3864,1\n3865,1\n3866,1\n3867,1\n3868,1\n3869,1\n3870,1\n3871,1\n3872,1\n3873,1\n3874,1\n3875,1\n3876,1\n3877,1\n3878,1\n3879,1\n3880,1\n3881,1\n3882,1\n3883,1\n3884,1\n3885,1\n3886,1\n3887,1\n3888,1\n3889,1\n3890,1\n3891,1\n3892,1\n3893,1\n3894,1\n3895,1\n3896,1\n3897,1\n3898,1\n3899,1\n3900,1\n3901,1\n3902,1\n3903,1\n3904,1\n3905,1\n3906,1\n3907,1\n3908,1\n3909,1\n3910,1\n3911,1\n3912,1\n3913,1\n3914,1\n3915,1\n3916,1\n3917,1\n3918,1\n3919,1\n3920,1\n3921,1\n3922,1\n3923,1\n3924,1\n3925,1\n3926,1\n3927,1\n3928,1\n3929,1\n3930,1\n3931,1\n3932,1\n3933,1\n3934,1\n3935,1\n3936,1\n3937,1\n3938,1\n3939,1\n3940,1\n3941,1\n3942,1\n3943,1\n3944,1\n3945,1\n3946,1\n3947,1\n3948,1\n3949,1\n3950,1\n3951,1\n3952,1\n3953,1\n3954,1\n3955,1\n3956,1\n3957,1\n3958,1\n3959,1\n3960,1\n3961,1\n3962,1\n3963,1\n3964,1\n3965,1\n3966,1\n3967,1\n3968,1\n3969,1\n3970,1\n3971,1\n3972,1\n3973,1\n3974,1\n3975,1\n3976,1\n3977,1\n3978,1\n3979,1\n3980,1\n3981,1\n3982,1\n3983,1\n3984,1\n3985,1\n3986,1\n3987,1\n3988,1\n3989,1\n3990,1\n3991,1\n3992,1\n3993,1\n3994,1\n3995,1\n3996,1\n3997,1\n3998,1\n3999,1\n4000,1\n4001,1\n4002,1\n4003,1\n4004,1\n4005,1\n4006,1\n4007,1\n4008,1\n4009,1\n4010,1\n4011,1\n4012,1\n4013,1\n4014,1\n4015,1\n4016,1\n4017,1\n4018,1\n4019,1\n4020,1\n4021,1\n4022,1\n4023,1\n4024,1\n4025,1\n4026,1\n4027,1\n4028,1\n4029,1\n4030,1\n4031,1\n4032,1\n4033,1\n4034,1\n4035,1\n4036,1\n4037,1\n4038,1\n4039,1\n4040,1\n4041,1\n4042,1\n4043,1\n4044,1\n4045,1\n4046,1\n4047,1\n4048,1\n4049,1\n4050,1\n4051,1\n4052,1\n4053,1\n4054,1\n4055,1\n4056,1\n4057,1\n4058,1\n4059,1\n4060,1\n4061,1\n4062,1\n4063,1\n4064,1\n4065,1\n4066,1\n4067,1\n4068,1\n4069,1\n4070,1\n4071,1\n4072,1\n4073,1\n4074,1\n4075,1\n4076,1\n4077,1\n4078,1\n4079,1\n4080,1\n4081,1\n4082,1\n4083,1\n4084,1\n4085,1\n4086,1\n4087,1\n4088,1\n4089,1\n4090,1\n4091,1\n4092,1\n4093,1\n4094,1\n4095,1\n4096,1\n4097,1\n4098,1\n4099,1\n4100,1\n4101,1\n4102,1\n4103,1\n4104,1\n4105,1\n4106,1\n4107,1\n4108,1\n4109,1\n4110,1\n4111,1\n4112,1\n4113,1\n4114,1\n4115,1\n4116,1\n4117,1\n4118,1\n4119,1\n4120,1\n4121,1\n4122,1\n4123,1\n4124,1\n4125,1\n4126,1\n4127,1\n4128,1\n4129,1\n4130,1\n4131,1\n4132,1\n4133,1\n4134,1\n4135,1\n4136,1\n4137,1\n4138,1\n4139,1\n4140,1\n4141,1\n4142,1\n4143,1\n4144,1\n4145,1\n4146,1\n4147,1\n4148,1\n4149,1\n4150,1\n4151,1\n4152,1\n4153,1\n4154,1\n4155,1\n4156,1\n4157,1\n4158,1\n4159,1\n4160,1\n4161,1\n4162,1\n4163,1\n4164,1\n4165,1\n4166,1\n4167,1\n4168,1\n4169,1\n4170,1\n4171,1\n4172,1\n4173,1\n4174,1\n4175,1\n4176,1\n4177,1\n4178,1\n4179,1\n4180,1\n4181,1\n4182,1\n4183,1\n4184,1\n4185,1\n4186,1\n4187,1\n4188,1\n4189,1\n4190,1\n4191,1\n4192,1\n4193,1\n4194,1\n4195,1\n4196,1\n4197,1\n4198,1\n4199,1\n4200,1\n4201,1\n4202,1\n4203,1\n4204,1\n4205,1\n4206,1\n4207,1\n4208,1\n4209,1\n4210,1\n4211,1\n4212,1\n4213,1\n4214,1\n4215,1\n4216,1\n4217,1\n4218,1\n4219,1\n4220,1\n4221,1\n4222,1\n4223,1\n4224,1\n4225,1\n4226,1\n4227,1\n4228,1\n4229,1\n4230,1\n4231,1\n4232,1\n4233,1\n4234,1\n4235,1\n4236,1\n4237,1\n4238,1\n4239,1\n4240,1\n4241,1\n4242,1\n4243,1\n4244,1\n4245,1\n4246,1\n4247,1\n4248,1\n4249,1\n4250,1\n4251,1\n4252,1\n4253,1\n4254,1\n4255,1\n4256,1\n4257,1\n4258,1\n4259,1\n4260,1\n4261,1\n4262,1\n4263,1\n4264,1\n4265,1\n4266,1\n4267,1\n4268,1\n4269,1\n4270,1\n4271,1\n4272,1\n4273,1\n4274,1\n4275,1\n4276,1\n4277,1\n4278,1\n4279,1\n4280,1\n4281,1\n4282,1\n4283,1\n4284,1\n4285,1\n4286,1\n4287,1\n4288,1\n4289,1\n4290,1\n4291,1\n4292,1\n4293,1\n4294,1\n4295,1\n4296,1\n4297,1\n4298,1\n4299,1\n4300,1\n4301,1\n4302,1\n4303,1\n4304,1\n4305,1\n4306,1\n4307,1\n4308,1\n4309,1\n4310,1\n4311,1\n4312,1\n4313,1\n4314,1\n4315,1\n4316,1\n4317,1\n4318,1\n4319,1\n4320,1\n4321,1\n4322,1\n4323,1\n4324,1\n4325,1\n4326,1\n4327,1\n4328,1\n4329,1\n4330,1\n4331,1\n4332,1\n4333,1\n4334,1\n4335,1\n4336,1\n4337,1\n4338,1\n4339,1\n4340,1\n4341,1\n4342,1\n4343,1\n4344,1\n4345,1\n4346,1\n4347,1\n4348,1\n4349,1\n4350,1\n4351,1\n4352,1\n4353,1\n4354,1\n4355,1\n4356,1\n4357,1\n4358,1\n4359,1\n4360,1\n4361,1\n4362,1\n4363,1\n4364,1\n4365,1\n4366,1\n4367,1\n4368,1\n4369,1\n4370,1\n4371,1\n4372,1\n4373,1\n4374,1\n4375,1\n4376,1\n4377,1\n4378,1\n4379,1\n4380,1\n4381,1\n4382,1\n4383,1\n4384,1\n4385,1\n4386,1\n4387,1\n4388,1\n4389,1\n4390,1\n4391,1\n4392,1\n4393,1\n4394,1\n4395,1\n4396,1\n4397,1\n4398,1\n4399,1\n4400,1\n4401,1\n4402,1\n4403,1\n4404,1\n4405,1\n4406,1\n4407,1\n4408,1\n4409,1\n4410,1\n4411,1\n4412,1\n4413,1\n4414,1\n4415,1\n4416,1\n4417,1\n4418,1\n4419,1\n4420,1\n4421,1\n4422,1\n4423,1\n4424,1\n4425,1\n4426,1\n4427,1\n4428,1\n4429,1\n4430,1\n4431,1\n4432,1\n4433,1\n4434,1\n4435,1\n4436,1\n4437,1\n4438,1\n4439,1\n4440,1\n4441,1\n4442,1\n4443,1\n4444,1\n4445,1\n4446,1\n4447,1\n4448,1\n4449,1\n4450,1\n4451,1\n4452,1\n4453,1\n4454,1\n4455,1\n4456,1\n4457,1\n4458,1\n4459,1\n4460,1\n4461,1\n4462,1\n4463,1\n4464,1\n4465,1\n4466,1\n4467,1\n4468,1\n4469,1\n4470,1\n4471,1\n4472,1\n4473,1\n4474,1\n4475,1\n4476,1\n4477,1\n4478,1\n4479,1\n4480,1\n4481,1\n4482,1\n4483,1\n4484,1\n4485,1\n4486,1\n4487,1\n4488,1\n4489,1\n4490,1\n4491,1\n4492,1\n4493,1\n4494,1\n4495,1\n4496,1\n4497,1\n4498,1\n4499,1\n4500,1\n4501,1\n4502,1\n4503,1\n4504,1\n4505,1\n4506,1\n4507,1\n4508,1\n4509,1\n4510,1\n4511,1\n4512,1\n4513,1\n4514,1\n4515,1\n4516,1\n4517,1\n4518,1\n4519,1\n4520,1\n4521,1\n4522,1\n4523,1\n4524,1\n4525,1\n4526,1\n4527,1\n4528,1\n4529,1\n4530,1\n4531,1\n4532,1\n4533,1\n4534,1\n4535,1\n4536,1\n4537,1\n4538,1\n4539,1\n4540,1\n4541,1\n4542,1\n4543,1\n4544,1\n4545,1\n4546,1\n4547,1\n4548,1\n4549,1\n4550,1\n4551,1\n4552,1\n4553,1\n4554,1\n4555,1\n4556,1\n4557,1\n4558,1\n4559,1\n4560,1\n4561,1\n4562,1\n4563,1\n4564,1\n4565,1\n4566,1\n4567,1\n4568,1\n4569,1\n4570,1\n4571,1\n4572,1\n4573,1\n4574,1\n4575,1\n4576,1\n4577,1\n4578,1\n4579,1\n4580,1\n4581,1\n4582,1\n4583,1\n4584,1\n4585,1\n4586,1\n4587,1\n4588,1\n4589,1\n4590,1\n4591,1\n4592,1\n4593,1\n4594,1\n4595,1\n4596,1\n4597,1\n4598,1\n4599,1\n4600,1\n4601,1\n4602,1\n4603,1\n4604,1\n4605,1\n4606,1\n4607,1\n4608,1\n4609,1\n4610,1\n4611,1\n4612,1\n4613,1\n4614,1\n4615,1\n4616,1\n4617,1\n4618,1\n4619,1\n4620,1\n4621,1\n4622,1\n4623,1\n4624,1\n4625,1\n4626,1\n4627,1\n4628,1\n4629,1\n4630,1\n4631,1\n4632,1\n4633,1\n4634,1\n4635,1\n4636,1\n4637,1\n4638,1\n4639,1\n4640,1\n4641,1\n4642,1\n4643,1\n4644,1\n4645,1\n4646,1\n4647,1\n4648,1\n4649,1\n4650,1\n4651,1\n4652,1\n4653,1\n4654,1\n4655,1\n4656,1\n4657,1\n4658,1\n4659,1\n4660,1\n4661,1\n4662,1\n4663,1\n4664,1\n4665,1\n4666,1\n4667,1\n4668,1\n4669,1\n4670,1\n4671,1\n4672,1\n4673,1\n4674,1\n4675,1\n4676,1\n4677,1\n4678,1\n4679,1\n4680,1\n4681,1\n4682,1\n4683,1\n4684,1\n4685,1\n4686,1\n4687,1\n4688,1\n4689,1\n4690,1\n4691,1\n4692,1\n4693,1\n4694,1\n4695,1\n4696,1\n4697,1\n4698,1\n4699,1\n4700,1\n4701,1\n4702,1\n4703,1\n4704,1\n4705,1\n4706,1\n4707,1\n4708,1\n4709,1\n4710,1\n4711,1\n4712,1\n4713,1\n4714,1\n4715,1\n4716,1\n4717,1\n4718,1\n4719,1\n4720,1\n4721,1\n4722,1\n4723,1\n4724,1\n4725,1\n4726,1\n4727,1\n4728,1\n4729,1\n4730,1\n4731,1\n4732,1\n4733,1\n4734,1\n4735,1\n4736,1\n4737,1\n4738,1\n4739,1\n4740,1\n4741,1\n4742,1\n4743,1\n4744,1\n4745,1\n4746,1\n4747,1\n4748,1\n4749,1\n4750,1\n4751,1\n4752,1\n4753,1\n4754,1\n4755,1\n4756,1\n4757,1\n4758,1\n4759,1\n4760,1\n4761,1\n4762,1\n4763,1\n4764,1\n4765,1\n4766,1\n4767,1\n4768,1\n4769,1\n4770,1\n4771,1\n4772,1\n4773,1\n4774,1\n4775,1\n4776,1\n4777,1\n4778,1\n4779,1\n4780,1\n4781,1\n4782,1\n4783,1\n4784,1\n4785,1\n4786,1\n4787,1\n4788,1\n4789,1\n4790,1\n4791,1\n4792,1\n4793,1\n4794,1\n4795,1\n4796,1\n4797,1\n4798,1\n4799,1\n4800,1\n4801,1\n4802,1\n4803,1\n4804,1\n4805,1\n4806,1\n4807,1\n4808,1\n4809,1\n4810,1\n4811,1\n4812,1\n4813,1\n4814,1\n4815,1\n4816,1\n4817,1\n4818,1\n4819,1\n4820,1\n4821,1\n4822,1\n4823,1\n4824,1\n4825,1\n4826,1\n4827,1\n4828,1\n4829,1\n4830,1\n4831,1\n4832,1\n4833,1\n4834,1\n4835,1\n4836,1\n4837,1\n4838,1\n4839,1\n4840,1\n4841,1\n4842,1\n4843,1\n4844,1\n4845,1\n4846,1\n4847,1\n4848,1\n4849,1\n4850,1\n4851,1\n4852,1\n4853,1\n4854,1\n4855,1\n4856,1\n4857,1\n4858,1\n4859,1\n4860,1\n4861,1\n4862,1\n4863,1\n4864,1\n4865,1\n4866,1\n4867,1\n4868,1\n4869,1\n4870,1\n4871,1\n4872,1\n4873,1\n4874,1\n4875,1\n4876,1\n4877,1\n4878,1\n4879,1\n4880,1\n4881,1\n4882,1\n4883,1\n4884,1\n4885,1\n4886,1\n4887,1\n4888,1\n4889,1\n4890,1\n4891,1\n4892,1\n4893,1\n4894,1\n4895,1\n4896,1\n4897,1\n4898,1\n4899,1\n4900,1\n4901,1\n4902,1\n4903,1\n4904,1\n4905,1\n4906,1\n4907,1\n4908,1\n4909,1\n4910,1\n4911,1\n4912,1\n4913,1\n4914,1\n4915,1\n4916,1\n4917,1\n4918,1\n4919,1\n4920,1\n4921,1\n4922,1\n4923,1\n4924,1\n4925,1\n4926,1\n4927,1\n4928,1\n4929,1\n4930,1\n4931,1\n4932,1\n4933,1\n4934,1\n4935,1\n4936,1\n4937,1\n4938,1\n4939,1\n4940,1\n4941,1\n4942,1\n4943,1\n4944,1\n4945,1\n4946,1\n4947,1\n4948,1\n4949,1\n4950,1\n4951,1\n4952,1\n4953,1\n4954,1\n4955,1\n4956,1\n4957,1\n4958,1\n4959,1\n4960,1\n4961,1\n4962,1\n4963,1\n4964,1\n4965,1\n4966,1\n4967,1\n4968,1\n4969,1\n4970,1\n4971,1\n4972,1\n4973,1\n4974,1\n4975,1\n4976,1\n4977,1\n4978,1\n4979,1\n4980,1\n4981,1\n4982,1\n4983,1\n4984,1\n4985,1\n4986,1\n4987,1\n4988,1\n4989,1\n4990,1\n4991,1\n4992,1\n4993,1\n4994,1\n4995,1\n4996,1\n4997,1\n4998,1\n4999,1\n5000,1\n5001,1\n5002,1\n5003,1\n5004,1\n5005,1\n5006,1\n5007,1\n5008,1\n5009,1\n5010,1\n5011,1\n5012,1\n5013,1\n5014,1\n5015,1\n5016,1\n5017,1\n5018,1\n5019,1\n5020,1\n5021,1\n5022,1\n5023,1\n5024,1\n5025,1\n5026,1\n5027,1\n5028,1\n5029,1\n5030,1\n5031,1\n5032,1\n5033,1\n5034,1\n5035,1\n5036,1\n5037,1\n5038,1\n5039,1\n5040,1\n5041,1\n5042,1\n5043,1\n5044,1\n5045,1\n5046,1\n5047,1\n5048,1\n5049,1\n5050,1\n5051,1\n5052,1\n5053,1\n5054,1\n5055,1\n5056,1\n5057,1\n5058,1\n5059,1\n5060,1\n5061,1\n5062,1\n5063,1\n5064,1\n5065,1\n5066,1\n5067,1\n5068,1\n5069,1\n5070,1\n5071,1\n5072,1\n5073,1\n5074,1\n5075,1\n5076,1\n5077,1\n5078,1\n5079,1\n5080,1\n5081,1\n5082,1\n5083,1\n5084,1\n5085,1\n5086,1\n5087,1\n5088,1\n5089,1\n5090,1\n5091,1\n5092,1\n5093,1\n5094,1\n5095,1\n5096,1\n5097,1\n5098,1\n5099,1\n5100,1\n5101,1\n5102,1\n5103,1\n5104,1\n5105,1\n5106,1\n5107,1\n5108,1\n5109,1\n5110,1\n5111,1\n5112,1\n5113,1\n5114,1\n5115,1\n5116,1\n5117,1\n5118,1\n5119,1\n5120,1\n5121,1\n5122,1\n5123,1\n5124,1\n5125,1\n5126,1\n5127,1\n5128,1\n5129,1\n5130,1\n5131,1\n5132,1\n5133,1\n5134,1\n5135,1\n5136,1\n5137,1\n5138,1\n5139,1\n5140,1\n5141,1\n5142,1\n5143,1\n5144,1\n5145,1\n5146,1\n5147,1\n5148,1\n5149,1\n5150,1\n5151,1\n5152,1\n5153,1\n5154,1\n5155,1\n5156,1\n5157,1\n5158,1\n5159,1\n5160,1\n5161,1\n5162,1\n5163,1\n5164,1\n5165,1\n5166,1\n5167,1\n5168,1\n5169,1\n5170,1\n5171,1\n5172,1\n5173,1\n5174,1\n5175,1\n5176,1\n5177,1\n5178,1\n5179,1\n5180,1\n5181,1\n5182,1\n5183,1\n5184,1\n5185,1\n5186,1\n5187,1\n5188,1\n5189,1\n5190,1\n5191,1\n5192,1\n5193,1\n5194,1\n5195,1\n5196,1\n5197,1\n5198,1\n5199,1\n5200,1\n5201,1\n5202,1\n5203,1\n5204,1\n5205,1\n5206,1\n5207,1\n5208,1\n5209,1\n5210,1\n5211,1\n5212,1\n5213,1\n5214,1\n5215,1\n5216,1\n5217,1\n5218,1\n5219,1\n5220,1\n5221,1\n5222,1\n5223,1\n5224,1\n5225,1\n5226,1\n5227,1\n5228,1\n5229,1\n5230,1\n5231,1\n5232,1\n5233,1\n5234,1\n5235,1\n5236,1\n5237,1\n5238,1\n5239,1\n5240,1\n5241,1\n5242,1\n5243,1\n5244,1\n5245,1\n5246,1\n5247,1\n5248,1\n5249,1\n5250,1\n5251,1\n5252,1\n5253,1\n5254,1\n5255,1\n5256,1\n5257,1\n5258,1\n5259,1\n5260,1\n5261,1\n5262,1\n5263,1\n5264,1\n5265,1\n5266,1\n5267,1\n5268,1\n5269,1\n5270,1\n5271,1\n5272,1\n5273,1\n5274,1\n5275,1\n5276,1\n5277,1\n5278,1\n5279,1\n5280,1\n5281,1\n5282,1\n5283,1\n5284,1\n5285,1\n5286,1\n5287,1\n5288,1\n5289,1\n5290,1\n5291,1\n5292,1\n5293,1\n5294,1\n5295,1\n5296,1\n5297,1\n5298,1\n5299,1\n5300,1\n5301,1\n5302,1\n5303,1\n5304,1\n5305,1\n5306,1\n5307,1\n5308,1\n5309,1\n5310,1\n5311,1\n5312,1\n5313,1\n5314,1\n5315,1\n5316,1\n5317,1\n5318,1\n5319,1\n5320,1\n5321,1\n5322,1\n5323,1\n5324,1\n5325,1\n5326,1\n5327,1\n5328,1\n5329,1\n5330,1\n5331,1\n5332,1\n5333,1\n5334,1\n5335,1\n5336,1\n5337,1\n5338,1\n5339,1\n5340,1\n5341,1\n5342,1\n5343,1\n5344,1\n5345,1\n5346,1\n5347,1\n5348,1\n5349,1\n5350,1\n5351,1\n5352,1\n5353,1\n5354,1\n5355,1\n5356,1\n5357,1\n5358,1\n5359,1\n5360,1\n5361,1\n5362,1\n5363,1\n5364,1\n5365,1\n5366,1\n5367,1\n5368,1\n5369,1\n5370,1\n5371,1\n5372,1\n5373,1\n5374,1\n5375,1\n5376,1\n5377,1\n5378,1\n5379,1\n5380,1\n5381,1\n5382,1\n5383,1\n5384,1\n5385,1\n5386,1\n5387,1\n5388,1\n5389,1\n5390,1\n5391,1\n5392,1\n5393,1\n5394,1\n5395,1\n5396,1\n5397,1\n5398,1\n5399,1\n5400,1\n5401,1\n5402,1\n5403,1\n5404,1\n5405,1\n5406,1\n5407,1\n5408,1\n5409,1\n5410,1\n5411,1\n5412,1\n5413,1\n5414,1\n5415,1\n5416,1\n5417,1\n5418,1\n5419,1\n5420,1\n5421,1\n5422,1\n5423,1\n5424,1\n5425,1\n5426,1\n5427,1\n5428,1\n5429,1\n5430,1\n5431,1\n5432,1\n5433,1\n5434,1\n5435,1\n5436,1\n5437,1\n5438,1\n5439,1\n5440,1\n5441,1\n5442,1\n5443,1\n5444,1\n5445,1\n5446,1\n5447,1\n5448,1\n5449,1\n5450,1\n5451,1\n5452,1\n5453,1\n5454,1\n5455,1\n5456,1\n5457,1\n5458,1\n5459,1\n5460,1\n5461,1\n5462,1\n5463,1\n5464,1\n5465,1\n5466,1\n5467,1\n5468,1\n5469,1\n5470,1\n5471,1\n5472,1\n5473,1\n5474,1\n5475,1\n5476,1\n5477,1\n5478,1\n5479,1\n5480,1\n5481,1\n5482,1\n5483,1\n5484,1\n5485,1\n5486,1\n5487,1\n5488,1\n5489,1\n5490,1\n5491,1\n5492,1\n5493,1\n5494,1\n5495,1\n5496,1\n5497,1\n5498,1\n5499,1\n5500,1\n5501,1\n5502,1\n5503,1\n5504,1\n5505,1\n5506,1\n5507,1\n5508,1\n5509,1\n5510,1\n5511,1\n5512,1\n5513,1\n5514,1\n5515,1\n5516,1\n5517,1\n5518,1\n5519,1\n5520,1\n5521,1\n5522,1\n5523,1\n5524,1\n5525,1\n5526,1\n5527,1\n5528,1\n5529,1\n5530,1\n5531,1\n5532,1\n5533,1\n5534,1\n5535,1\n5536,1\n5537,1\n5538,1\n5539,1\n5540,1\n5541,1\n5542,1\n5543,1\n5544,1\n5545,1\n5546,1\n5547,1\n5548,1\n5549,1\n5550,1\n5551,1\n5552,1\n5553,1\n5554,1\n5555,1\n5556,1\n5557,1\n5558,1\n5559,1\n5560,1\n5561,1\n5562,1\n5563,1\n5564,1\n5565,1\n5566,1\n5567,1\n5568,1\n5569,1\n5570,1\n5571,1\n5572,1\n5573,1\n5574,1\n5575,1\n5576,1\n5577,1\n5578,1\n5579,1\n5580,1\n5581,1\n5582,1\n5583,1\n5584,1\n5585,1\n5586,1\n5587,1\n5588,1\n5589,1\n5590,1\n5591,1\n5592,1\n5593,1\n5594,1\n5595,1\n5596,1\n5597,1\n5598,1\n5599,1\n5600,1\n5601,1\n5602,1\n5603,1\n5604,1\n5605,1\n5606,1\n5607,1\n5608,1\n5609,1\n5610,1\n5611,1\n5612,1\n5613,1\n5614,1\n5615,1\n5616,1\n5617,1\n5618,1\n5619,1\n5620,1\n5621,1\n5622,1\n5623,1\n5624,1\n5625,1\n5626,1\n5627,1\n5628,1\n5629,1\n5630,1\n5631,1\n5632,1\n5633,1\n5634,1\n5635,1\n5636,1\n5637,1\n5638,1\n5639,1\n5640,1\n5641,1\n5642,1\n5643,1\n5644,1\n5645,1\n5646,1\n5647,1\n5648,1\n5649,1\n5650,1\n5651,1\n5652,1\n5653,1\n5654,1\n5655,1\n5656,1\n5657,1\n5658,1\n5659,1\n5660,1\n5661,1\n5662,1\n5663,1\n5664,1\n5665,1\n5666,1\n5667,1\n5668,1\n5669,1\n5670,1\n5671,1\n5672,1\n5673,1\n5674,1\n5675,1\n5676,1\n5677,1\n5678,1\n5679,1\n5680,1\n5681,1\n5682,1\n5683,1\n5684,1\n5685,1\n5686,1\n5687,1\n5688,1\n5689,1\n5690,1\n5691,1\n5692,1\n5693,1\n5694,1\n5695,1\n5696,1\n5697,1\n5698,1\n5699,1\n5700,1\n5701,1\n5702,1\n5703,1\n5704,1\n5705,1\n5706,1\n5707,1\n5708,1\n5709,1\n5710,1\n5711,1\n5712,1\n5713,1\n5714,1\n5715,1\n5716,1\n5717,1\n5718,1\n5719,1\n5720,1\n5721,1\n5722,1\n5723,1\n5724,1\n5725,1\n5726,1\n5727,1\n5728,1\n5729,1\n5730,1\n5731,1\n5732,1\n5733,1\n5734,1\n5735,1\n5736,1\n5737,1\n5738,1\n5739,1\n5740,1\n5741,1\n5742,1\n5743,1\n5744,1\n5745,1\n5746,1\n5747,1\n5748,1\n5749,1\n5750,1\n5751,1\n5752,1\n5753,1\n5754,1\n5755,1\n5756,1\n5757,1\n5758,1\n5759,1\n5760,1\n5761,1\n5762,1\n5763,1\n5764,1\n5765,1\n5766,1\n5767,1\n5768,1\n5769,1\n5770,1\n5771,1\n5772,1\n5773,1\n5774,1\n5775,1\n5776,1\n5777,1\n5778,1\n5779,1\n5780,1\n5781,1\n5782,1\n5783,1\n5784,1\n5785,1\n5786,1\n5787,1\n5788,1\n5789,1\n5790,1\n5791,1\n5792,1\n5793,1\n5794,1\n5795,1\n5796,1\n5797,1\n5798,1\n5799,1\n5800,1\n5801,1\n5802,1\n5803,1\n5804,1\n5805,1\n5806,1\n5807,1\n5808,1\n5809,1\n5810,1\n5811,1\n5812,1\n5813,1\n5814,1\n5815,1\n5816,1\n5817,1\n5818,1\n5819,1\n5820,1\n5821,1\n5822,1\n5823,1\n5824,1\n5825,1\n5826,1\n5827,1\n5828,1\n5829,1\n5830,1\n5831,1\n5832,1\n5833,1\n5834,1\n5835,1\n5836,1\n5837,1\n5838,1\n5839,1\n5840,1\n5841,1\n5842,1\n5843,1\n5844,1\n5845,1\n5846,1\n5847,1\n5848,1\n5849,1\n5850,1\n5851,1\n5852,1\n5853,1\n5854,1\n5855,1\n5856,1\n5857,1\n5858,1\n5859,1\n5860,1\n5861,1\n5862,1\n5863,1\n5864,1\n5865,1\n5866,1\n5867,1\n5868,1\n5869,1\n5870,1\n5871,1\n5872,1\n5873,1\n5874,1\n5875,1\n5876,1\n5877,1\n5878,1\n5879,1\n5880,1\n5881,1\n5882,1\n5883,1\n5884,1\n5885,1\n5886,1\n5887,1\n5888,1\n5889,1\n5890,1\n5891,1\n5892,1\n5893,1\n5894,1\n5895,1\n5896,1\n5897,1\n5898,1\n5899,1\n5900,1\n5901,1\n5902,1\n5903,1\n5904,1\n5905,1\n5906,1\n5907,1\n5908,1\n5909,1\n5910,1\n5911,1\n5912,1\n5913,1\n5914,1\n5915,1\n5916,1\n5917,1\n5918,1\n5919,1\n5920,1\n5921,1\n5922,1\n5923,1\n5924,1\n5925,1\n5926,1\n5927,1\n5928,1\n5929,1\n5930,1\n5931,1\n5932,1\n5933,1\n5934,1\n5935,1\n5936,1\n5937,1\n5938,1\n5939,1\n5940,1\n5941,1\n5942,1\n5943,1\n5944,1\n5945,1\n5946,1\n5947,1\n5948,1\n5949,1\n5950,1\n5951,1\n5952,1\n5953,1\n5954,1\n5955,1\n5956,1\n5957,1\n5958,1\n5959,1\n5960,1\n5961,1\n5962,1\n5963,1\n5964,1\n5965,1\n5966,1\n5967,1\n5968,1\n5969,1\n5970,1\n5971,1\n5972,1\n5973,1\n5974,1\n5975,1\n5976,1\n5977,1\n5978,1\n5979,1\n5980,1\n5981,1\n5982,1\n5983,1\n5984,1\n5985,1\n5986,1\n5987,1\n5988,1\n5989,1\n5990,1\n5991,1\n5992,1\n5993,1\n5994,1\n5995,1\n5996,1\n5997,1\n5998,1\n5999,1\n6000,1\n6001,1\n6002,1\n6003,1\n6004,1\n6005,1\n6006,1\n6007,1\n6008,1\n6009,1\n6010,1\n6011,1\n6012,1\n6013,1\n6014,1\n6015,1\n6016,1\n6017,1\n6018,1\n6019,1\n6020,1\n6021,1\n6022,1\n6023,1\n6024,1\n6025,1\n6026,1\n6027,1\n6028,1\n6029,1\n6030,1\n6031,1\n6032,1\n6033,1\n6034,1\n6035,1\n6036,1\n6037,1\n6038,1\n6039,1\n6040,1\n6041,1\n6042,1\n6043,1\n6044,1\n6045,1\n6046,1\n6047,1\n6048,1\n6049,1\n6050,1\n6051,1\n6052,1\n6053,1\n6054,1\n6055,1\n6056,1\n6057,1\n6058,1\n6059,1\n6060,1\n6061,1\n6062,1\n6063,1\n6064,1\n6065,1\n6066,1\n6067,1\n6068,1\n6069,1\n6070,1\n6071,1\n6072,1\n6073,1\n6074,1\n6075,1\n6076,1\n6077,1\n6078,1\n6079,1\n6080,1\n6081,1\n6082,1\n6083,1\n6084,1\n6085,1\n6086,1\n6087,1\n6088,1\n6089,1\n6090,1\n6091,1\n6092,1\n6093,1\n6094,1\n6095,1\n6096,1\n6097,1\n6098,1\n6099,1\n6100,1\n6101,1\n6102,1\n6103,1\n6104,1\n6105,1\n6106,1\n6107,1\n6108,1\n6109,1\n6110,1\n6111,1\n6112,1\n6113,1\n6114,1\n6115,1\n6116,1\n6117,1\n6118,1\n6119,1\n6120,1\n6121,1\n6122,1\n6123,1\n6124,1\n6125,1\n6126,1\n6127,1\n6128,1\n6129,1\n6130,1\n6131,1\n6132,1\n6133,1\n6134,1\n6135,1\n6136,1\n6137,1\n6138,1\n6139,1\n6140,1\n6141,1\n6142,1\n6143,1\n6144,1\n6145,1\n6146,1\n6147,1\n6148,1\n6149,1\n6150,1\n6151,1\n6152,1\n6153,1\n6154,1\n6155,1\n6156,1\n6157,1\n6158,1\n6159,1\n6160,1\n6161,1\n6162,1\n6163,1\n6164,1\n6165,1\n6166,1\n6167,1\n6168,1\n6169,1\n6170,1\n6171,1\n6172,1\n6173,1\n6174,1\n6175,1\n6176,1\n6177,1\n6178,1\n6179,1\n6180,1\n6181,1\n6182,1\n6183,1\n6184,1\n6185,1\n6186,1\n6187,1\n6188,1\n6189,1\n6190,1\n6191,1\n6192,1\n6193,1\n6194,1\n6195,1\n6196,1\n6197,1\n6198,1\n6199,1\n6200,1\n6201,1\n6202,1\n6203,1\n6204,1\n6205,1\n6206,1\n6207,1\n6208,1\n6209,1\n6210,1\n6211,1\n6212,1\n6213,1\n6214,1\n6215,1\n6216,1\n6217,1\n6218,1\n6219,1\n6220,1\n6221,1\n6222,1\n6223,1\n6224,1\n6225,1\n6226,1\n6227,1\n6228,1\n6229,1\n6230,1\n6231,1\n6232,1\n6233,1\n6234,1\n6235,1\n6236,1\n6237,1\n6238,1\n6239,1\n6240,1\n6241,1\n6242,1\n6243,1\n6244,1\n6245,1\n6246,1\n6247,1\n6248,1\n6249,1\n6250,1\n6251,1\n6252,1\n6253,1\n6254,1\n6255,1\n6256,1\n6257,1\n6258,1\n6259,1\n6260,1\n6261,1\n6262,1\n6263,1\n6264,1\n6265,1\n6266,1\n6267,1\n6268,1\n6269,1\n6270,1\n6271,1\n6272,1\n6273,1\n6274,1\n6275,1\n6276,1\n6277,1\n6278,1\n6279,1\n6280,1\n6281,1\n6282,1\n6283,1\n6284,1\n6285,1\n6286,1\n6287,1\n6288,1\n6289,1\n6290,1\n6291,1\n6292,1\n6293,1\n6294,1\n6295,1\n6296,1\n6297,1\n6298,1\n6299,1\n6300,1\n6301,1\n6302,1\n6303,1\n6304,1\n6305,1\n6306,1\n6307,1\n6308,1\n6309,1\n6310,1\n6311,1\n6312,1\n6313,1\n6314,1\n6315,1\n6316,1\n6317,1\n6318,1\n6319,1\n6320,1\n6321,1\n6322,1\n6323,1\n6324,1\n6325,1\n6326,1\n6327,1\n6328,1\n6329,1\n6330,1\n6331,1\n6332,1\n6333,1\n6334,1\n6335,1\n6336,1\n6337,1\n6338,1\n6339,1\n6340,1\n6341,1\n6342,1\n6343,1\n6344,1\n6345,1\n6346,1\n6347,1\n6348,1\n6349,1\n6350,1\n6351,1\n6352,1\n6353,1\n6354,1\n6355,1\n6356,1\n6357,1\n6358,1\n6359,1\n6360,1\n6361,1\n6362,1\n6363,1\n6364,1\n6365,1\n6366,1\n6367,1\n6368,1\n6369,1\n6370,1\n6371,1\n6372,1\n6373,1\n6374,1\n6375,1\n6376,1\n6377,1\n6378,1\n6379,1\n6380,1\n6381,1\n6382,1\n6383,1\n6384,1\n6385,1\n6386,1\n6387,1\n6388,1\n6389,1\n6390,1\n6391,1\n6392,1\n6393,1\n6394,1\n6395,1\n6396,1\n6397,1\n6398,1\n6399,1\n6400,1\n6401,1\n6402,1\n6403,1\n6404,1\n6405,1\n6406,1\n6407,1\n6408,1\n6409,1\n6410,1\n6411,1\n6412,1\n6413,1\n6414,1\n6415,1\n6416,1\n6417,1\n6418,1\n6419,1\n6420,1\n6421,1\n6422,1\n6423,1\n6424,1\n6425,1\n6426,1\n6427,1\n6428,1\n6429,1\n6430,1\n6431,1\n6432,1\n6433,1\n6434,1\n6435,1\n6436,1\n6437,1\n6438,1\n6439,1\n6440,1\n6441,1\n6442,1\n6443,1\n6444,1\n6445,1\n6446,1\n6447,1\n6448,1\n6449,1\n6450,1\n6451,1\n6452,1\n6453,1\n6454,1\n6455,1\n6456,1\n6457,1\n6458,1\n6459,1\n6460,1\n6461,1\n6462,1\n6463,1\n6464,1\n6465,1\n6466,1\n6467,1\n6468,1\n6469,1\n6470,1\n6471,1\n6472,1\n6473,1\n6474,1\n6475,1\n6476,1\n6477,1\n6478,1\n6479,1\n6480,1\n6481,1\n6482,1\n6483,1\n6484,1\n6485,1\n6486,1\n6487,1\n6488,1\n6489,1\n6490,1\n6491,1\n6492,1\n6493,1\n6494,1\n6495,1\n6496,1\n6497,1\n6498,1\n6499,1\n6500,1\n6501,1\n6502,1\n6503,1\n6504,1\n6505,1\n6506,1\n6507,1\n6508,1\n6509,1\n6510,1\n6511,1\n6512,1\n6513,1\n6514,1\n6515,1\n6516,1\n6517,1\n6518,1\n6519,1\n6520,1\n6521,1\n6522,1\n6523,1\n6524,1\n6525,1\n6526,1\n6527,1\n6528,1\n6529,1\n6530,1\n6531,1\n6532,1\n6533,1\n6534,1\n6535,1\n6536,1\n6537,1\n6538,1\n6539,1\n6540,1\n6541,1\n6542,1\n6543,1\n6544,1\n6545,1\n6546,1\n6547,1\n6548,1\n6549,1\n6550,1\n6551,1\n6552,1\n6553,1\n6554,1\n6555,1\n6556,1\n6557,1\n6558,1\n6559,1\n6560,1\n6561,1\n6562,1\n6563,1\n6564,1\n6565,1\n6566,1\n6567,1\n6568,1\n6569,1\n6570,1\n6571,1\n6572,1\n6573,1\n6574,1\n6575,1\n6576,1\n6577,1\n6578,1\n6579,1\n6580,1\n6581,1\n6582,1\n6583,1\n6584,1\n6585,1\n6586,1\n6587,1\n6588,1\n6589,1\n6590,1\n6591,1\n6592,1\n6593,1\n6594,1\n6595,1\n6596,1\n6597,1\n6598,1\n6599,1\n6600,1\n6601,1\n6602,1\n6603,1\n6604,1\n6605,1\n6606,1\n6607,1\n6608,1\n6609,1\n6610,1\n6611,1\n6612,1\n6613,1\n6614,1\n6615,1\n6616,1\n6617,1\n6618,1\n6619,1\n6620,1\n6621,1\n6622,1\n6623,1\n6624,1\n6625,1\n6626,1\n6627,1\n6628,1\n6629,1\n6630,1\n6631,1\n6632,1\n6633,1\n6634,1\n6635,1\n6636,1\n6637,1\n6638,1\n6639,1\n6640,1\n6641,1\n6642,1\n6643,1\n6644,1\n6645,1\n6646,1\n6647,1\n6648,1\n6649,1\n6650,1\n6651,1\n6652,1\n6653,1\n6654,1\n6655,1\n6656,1\n6657,1\n6658,1\n6659,1\n6660,1\n6661,1\n6662,1\n6663,1\n6664,1\n6665,1\n6666,1\n6667,1\n6668,1\n6669,1\n6670,1\n6671,1\n6672,1\n6673,1\n6674,1\n6675,1\n6676,1\n6677,1\n6678,1\n6679,1\n6680,1\n6681,1\n6682,1\n6683,1\n6684,1\n6685,1\n6686,1\n6687,1\n6688,1\n6689,1\n6690,1\n6691,1\n6692,1\n6693,1\n6694,1\n6695,1\n6696,1\n6697,1\n6698,1\n6699,1\n6700,1\n6701,1\n6702,1\n6703,1\n6704,1\n6705,1\n6706,1\n6707,1\n6708,1\n6709,1\n6710,1\n6711,1\n6712,1\n6713,1\n6714,1\n6715,1\n6716,1\n6717,1\n6718,1\n6719,1\n6720,1\n6721,1\n6722,1\n6723,1\n6724,1\n6725,1\n6726,1\n6727,1\n6728,1\n6729,1\n6730,1\n6731,1\n6732,1\n6733,1\n6734,1\n6735,1\n6736,1\n6737,1\n6738,1\n6739,1\n6740,1\n6741,1\n6742,1\n6743,1\n6744,1\n6745,1\n6746,1\n6747,1\n6748,1\n6749,1\n6750,1\n6751,1\n6752,1\n6753,1\n6754,1\n6755,1\n6756,1\n6757,1\n6758,1\n6759,1\n6760,1\n6761,1\n6762,1\n6763,1\n6764,1\n6765,1\n6766,1\n6767,1\n6768,1\n6769,1\n6770,1\n6771,1\n6772,1\n6773,1\n6774,1\n6775,1\n6776,1\n6777,1\n6778,1\n6779,1\n6780,1\n6781,1\n6782,1\n6783,1\n6784,1\n6785,1\n6786,1\n6787,1\n6788,1\n6789,1\n6790,1\n6791,1\n6792,1\n6793,1\n6794,1\n6795,1\n6796,1\n6797,1\n6798,1\n6799,1\n6800,1\n6801,1\n6802,1\n6803,1\n6804,1\n6805,1\n6806,1\n6807,1\n6808,1\n6809,1\n6810,1\n6811,1\n6812,1\n6813,1\n6814,1\n6815,1\n6816,1\n6817,1\n6818,1\n6819,1\n6820,1\n6821,1\n6822,1\n6823,1\n6824,1\n6825,1\n6826,1\n6827,1\n6828,1\n6829,1\n6830,1\n6831,1\n6832,1\n6833,1\n6834,1\n6835,1\n6836,1\n6837,1\n6838,1\n6839,1\n6840,1\n6841,1\n6842,1\n6843,1\n6844,1\n6845,1\n6846,1\n6847,1\n6848,1\n6849,1\n6850,1\n6851,1\n6852,1\n6853,1\n6854,1\n6855,1\n6856,1\n6857,1\n6858,1\n6859,1\n6860,1\n6861,1\n6862,1\n6863,1\n6864,1\n6865,1\n6866,1\n6867,1\n6868,1\n6869,1\n6870,1\n6871,1\n6872,1\n6873,1\n6874,1\n6875,1\n6876,1\n6877,1\n6878,1\n6879,1\n6880,1\n6881,1\n6882,1\n6883,1\n6884,1\n6885,1\n6886,1\n6887,1\n6888,1\n6889,1\n6890,1\n6891,1\n6892,1\n6893,1\n6894,1\n6895,1\n6896,1\n6897,1\n6898,1\n6899,1\n6900,1\n6901,1\n6902,1\n6903,1\n6904,1\n6905,1\n6906,1\n6907,1\n6908,1\n6909,1\n6910,1\n6911,1\n6912,1\n6913,1\n6914,1\n6915,1\n6916,1\n6917,1\n6918,1\n6919,1\n6920,1\n6921,1\n6922,1\n6923,1\n6924,1\n6925,1\n6926,1\n6927,1\n6928,1\n6929,1\n6930,1\n6931,1\n6932,1\n6933,1\n6934,1\n6935,1\n6936,1\n6937,1\n6938,1\n6939,1\n6940,1\n6941,1\n6942,1\n6943,1\n6944,1\n6945,1\n6946,1\n6947,1\n6948,1\n6949,1\n6950,1\n6951,1\n6952,1\n6953,1\n6954,1\n6955,1\n6956,1\n6957,1\n6958,1\n6959,1\n6960,1\n6961,1\n6962,1\n6963,1\n6964,1\n6965,1\n6966,1\n6967,1\n6968,1\n6969,1\n6970,1\n6971,1\n6972,1\n6973,1\n6974,1\n6975,1\n6976,1\n6977,1\n6978,1\n6979,1\n6980,1\n6981,1\n6982,1\n6983,1\n6984,1\n6985,1\n6986,1\n6987,1\n6988,1\n6989,1\n6990,1\n6991,1\n6992,1\n6993,1\n6994,1\n6995,1\n6996,1\n6997,1\n6998,1\n6999,1\n7000,1\n7001,1\n7002,1\n7003,1\n7004,1\n7005,1\n7006,1\n7007,1\n7008,1\n7009,1\n7010,1\n7011,1\n7012,1\n7013,1\n7014,1\n7015,1\n7016,1\n7017,1\n7018,1\n7019,1\n7020,1\n7021,1\n7022,1\n7023,1\n7024,1\n7025,1\n7026,1\n7027,1\n7028,1\n7029,1\n7030,1\n7031,1\n7032,1\n7033,1\n7034,1\n7035,1\n7036,1\n7037,1\n7038,1\n7039,1\n7040,1\n7041,1\n7042,1\n7043,1\n7044,1\n7045,1\n7046,1\n7047,1\n7048,1\n7049,1\n7050,1\n7051,1\n7052,1\n7053,1\n7054,1\n7055,1\n7056,1\n7057,1\n7058,1\n7059,1\n7060,1\n7061,1\n7062,1\n7063,1\n7064,1\n7065,1\n7066,1\n7067,1\n7068,1\n7069,1\n7070,1\n7071,1\n7072,1\n7073,1\n7074,1\n7075,1\n7076,1\n7077,1\n7078,1\n7079,1\n7080,1\n7081,1\n7082,1\n7083,1\n7084,1\n7085,1\n7086,1\n7087,1\n7088,1\n7089,1\n7090,1\n7091,1\n7092,1\n7093,1\n7094,1\n7095,1\n7096,1\n7097,1\n7098,1\n7099,1\n7100,1\n7101,1\n7102,1\n7103,1\n7104,1\n7105,1\n7106,1\n7107,1\n7108,1\n7109,1\n7110,1\n7111,1\n7112,1\n7113,1\n7114,1\n7115,1\n7116,1\n7117,1\n7118,1\n7119,1\n7120,1\n7121,1\n7122,1\n7123,1\n7124,1\n7125,1\n7126,1\n7127,1\n7128,1\n7129,1\n7130,1\n7131,1\n7132,1\n7133,1\n7134,1\n7135,1\n7136,1\n7137,1\n7138,1\n7139,1\n7140,1\n7141,1\n7142,1\n7143,1\n7144,1\n7145,1\n7146,1\n7147,1\n7148,1\n7149,1\n7150,1\n7151,1\n7152,1\n7153,1\n7154,1\n7155,1\n7156,1\n7157,1\n7158,1\n7159,1\n7160,1\n7161,1\n7162,1\n7163,1\n7164,1\n7165,1\n7166,1\n7167,1\n7168,1\n7169,1\n7170,1\n7171,1\n7172,1\n7173,1\n7174,1\n7175,1\n7176,1\n7177,1\n7178,1\n7179,1\n7180,1\n7181,1\n7182,1\n7183,1\n7184,1\n7185,1\n7186,1\n7187,1\n7188,1\n7189,1\n7190,1\n7191,1\n7192,1\n7193,1\n7194,1\n7195,1\n7196,1\n7197,1\n7198,1\n7199,1\n7200,1\n7201,1\n7202,1\n7203,1\n7204,1\n7205,1\n7206,1\n7207,1\n7208,1\n7209,1\n7210,1\n7211,1\n7212,1\n7213,1\n7214,1\n7215,1\n7216,1\n7217,1\n7218,1\n7219,1\n7220,1\n7221,1\n7222,1\n7223,1\n7224,1\n7225,1\n7226,1\n7227,1\n7228,1\n7229,1\n7230,1\n7231,1\n7232,1\n7233,1\n7234,1\n7235,1\n7236,1\n7237,1\n7238,1\n7239,1\n7240,1\n7241,1\n7242,1\n7243,1\n7244,1\n7245,1\n7246,1\n7247,1\n7248,1\n7249,1\n7250,1\n7251,1\n7252,1\n7253,1\n7254,1\n7255,1\n7256,1\n7257,1\n7258,1\n7259,1\n7260,1\n7261,1\n7262,1\n7263,1\n7264,1\n7265,1\n7266,1\n7267,1\n7268,1\n7269,1\n7270,1\n7271,1\n7272,1\n7273,1\n7274,1\n7275,1\n7276,1\n7277,1\n7278,1\n7279,1\n7280,1\n7281,1\n7282,1\n7283,1\n7284,1\n7285,1\n7286,1\n7287,1\n7288,1\n7289,1\n7290,1\n7291,1\n7292,1\n7293,1\n7294,1\n7295,1\n7296,1\n7297,1\n7298,1\n7299,1\n7300,1\n7301,1\n7302,1\n7303,1\n7304,1\n7305,1\n7306,1\n7307,1\n7308,1\n7309,1\n7310,1\n7311,1\n7312,1\n7313,1\n7314,1\n7315,1\n7316,1\n7317,1\n7318,1\n7319,1\n7320,1\n7321,1\n7322,1\n7323,1\n7324,1\n7325,1\n7326,1\n7327,1\n7328,1\n7329,1\n7330,1\n7331,1\n7332,3\n7333,3\n7334,3\n7335,3\n7336,3\n7337,3\n7338,3\n7339,3\n7340,3\n7341,3\n7342,3\n7343,3\n7344,3\n7345,3\n7346,3\n7347,3\n7348,3\n7349,3\n7350,3\n7351,3\n7352,3\n7353,3\n7354,3\n7355,3\n7356,3\n7357,3\n7358,3\n7359,3\n7360,3\n7361,3\n7362,3\n7363,3\n7364,3\n7365,3\n7366,3\n7367,3\n7368,3\n7369,3\n7370,3\n7371,3\n7372,3\n7373,3\n7374,3\n7375,3\n7376,3\n7377,3\n7378,3\n7379,3\n7380,3\n7381,3\n7382,3\n7383,3\n7384,3\n7385,3\n7386,3\n7387,3\n7388,3\n7389,3\n7390,3\n7391,3\n7392,3\n7393,3\n7394,3\n7395,3\n7396,3\n7397,3\n7398,3\n7399,3\n7400,3\n7401,3\n7402,3\n7403,3\n7404,3\n7405,3\n7406,3\n7407,3\n7408,3\n7409,3\n7410,3\n7411,3\n7412,3\n7413,3\n7414,3\n7415,3\n7416,3\n7417,3\n7418,3\n7419,3\n7420,3\n7421,3\n7422,3\n7423,3\n7424,3\n7425,3\n7426,3\n7427,3\n7428,3\n7429,3\n7430,3\n7431,3\n7432,3\n7433,3\n7434,3\n7435,3\n7436,3\n7437,3\n7438,3\n7439,3\n7440,3\n7441,3\n7442,3\n7443,3\n7444,3\n7445,1\n7446,3\n7447,3\n7448,3\n7449,3\n7450,3\n7451,3\n7452,3\n7453,3\n7454,3\n7455,3\n7456,3\n7457,3\n7458,3\n7459,3\n7460,3\n7461,3\n7462,3\n7463,3\n7464,3\n7465,3\n7466,3\n7467,3\n7468,3\n7469,3\n7470,3\n7471,3\n7472,3\n7473,3\n7474,3\n7475,3\n7476,3\n7477,3\n7478,3\n7479,3\n7480,3\n7481,3\n7482,3\n7483,3\n7484,3\n7485,3\n7486,3\n7487,3\n7488,3\n7489,3\n7490,3\n7491,3\n7492,3\n7493,3\n7494,3\n7495,3\n7496,3\n7497,3\n7498,3\n7499,3\n7500,3\n7501,3\n7502,3\n7503,3\n7504,3\n7505,3\n7506,3\n7507,3\n7508,3\n7509,3\n7510,3\n7511,3\n7512,3\n7513,3\n7514,3\n7515,3\n7516,3\n7517,3\n7518,3\n7519,3\n7520,3\n7521,3\n7522,3\n7523,3\n7524,3\n7525,3\n7526,3\n7527,3\n7528,3\n7529,3\n7530,3\n7531,3\n7532,3\n7533,3\n7534,3\n7535,3\n7536,3\n7537,3\n7538,3\n7539,3\n7540,3\n7541,3\n7542,3\n7543,3\n7544,3\n7545,3\n7546,3\n7547,3\n7548,3\n7549,3\n7550,3\n7551,3\n7552,3\n7553,3\n7554,3\n7555,3\n7556,3\n7557,3\n7558,3\n7559,3\n7560,3\n7561,3\n7562,3\n7563,3\n7564,3\n7565,3\n7566,3\n7567,3\n7568,3\n7569,3\n7570,3\n7571,3\n7572,3\n7573,3\n7574,3\n7575,3\n7576,3\n7577,3\n7578,3\n7579,3\n7580,3\n7581,3\n7582,3\n7583,3\n7584,3\n7585,3\n7586,3\n7587,3\n7588,3\n7589,3\n7590,3\n7591,3\n7592,3\n7593,1\n7594,1\n7595,1\n7596,1\n7597,3\n7598,3\n7599,3\n7600,3\n7601,3\n7602,3\n7603,3\n7604,3\n7605,3\n7606,3\n7607,3\n7608,3\n7609,3\n7610,3\n7611,3\n7612,3\n7613,3\n7614,3\n7615,3\n7616,3\n7617,3\n7618,3\n7619,3\n7620,3\n7621,3\n7622,3\n7623,3\n7624,3\n7625,3\n7626,3\n7627,3\n7628,3\n7629,3\n7630,3\n7631,3\n7632,3\n7633,3\n7634,3\n7635,3\n7636,3\n7637,3\n7638,3\n7639,3\n7640,3\n7641,3\n7642,3\n7643,3\n7644,3\n7645,3\n7646,3\n7647,3\n7648,3\n7649,3\n7650,3\n7651,3\n7652,1\n7653,3\n7654,3\n7655,3\n7656,3\n7657,3\n7658,3\n7659,3\n7660,3\n7661,3\n7662,3\n7663,3\n7664,3\n7665,3\n7666,3\n7667,3\n7668,1\n7669,1\n7670,3\n7671,3\n7672,3\n7673,3\n7674,3\n7675,3\n7676,3\n7677,3\n7678,3\n7679,3\n7680,3\n7681,3\n7682,3\n7683,3\n7684,3\n7685,3\n7686,3\n7687,3\n7688,3\n7689,3\n7690,3\n7691,3\n7692,3\n7693,3\n7694,3\n7695,3\n7696,3\n7697,3\n7698,3\n7699,1\n7700,3\n7701,3\n7702,3\n7703,3\n7704,3\n7705,3\n7706,3\n7707,3\n7708,1\n7709,1\n7710,3\n7711,3\n7712,3\n7713,3\n7714,3\n7715,3\n7716,3\n7717,3\n7718,3\n7719,3\n7720,3\n7721,3\n7722,3\n7723,3\n7724,3\n7725,1\n7726,1\n7727,3\n7728,3\n7729,3\n7730,3\n7731,3\n7732,3\n7733,3\n7734,3\n7735,3\n7736,3\n7737,3\n7738,3\n7739,3\n7740,3\n7741,3\n7742,3\n7743,3\n7744,3\n7745,3\n7746,3\n7747,3\n7748,3\n7749,3\n7750,3\n7751,3\n7752,3\n7753,3\n7754,3\n7755,3\n7756,3\n7757,3\n7758,3\n7759,3\n7760,3\n7761,3\n7762,3\n7763,3\n7764,3\n7765,3\n7766,3\n7767,3\n7768,3\n7769,3\n7770,3\n7771,3\n7772,3\n7773,3\n7774,3\n7775,3\n7776,3\n7777,3\n7778,1\n7779,1\n7780,1\n7781,1\n7782,3\n7783,3\n7784,3\n7785,3\n7786,3\n7787,3\n7788,3\n7789,3\n7790,3\n7791,3\n7792,3\n7793,3\n7794,3\n7795,3\n7796,3\n7797,3\n7798,3\n7799,3\n7800,3\n7801,3\n7802,3\n7803,3\n7804,3\n7805,3\n7806,3\n7807,3\n7808,3\n7809,3\n7810,3\n7811,3\n7812,3\n7813,3\n7814,3\n7815,3\n7816,3\n7817,3\n7818,3\n7819,3\n7820,3\n7821,3\n7822,3\n7823,3\n7824,3\n7825,3\n7826,3\n7827,3\n7828,3\n7829,3\n7830,3\n7831,3\n7832,3\n7833,3\n7834,3\n7835,3\n7836,3\n7837,3\n7838,3\n7839,3\n7840,3\n7841,3\n7842,3\n7843,3\n7844,3\n7845,3\n7846,3\n7847,3\n7848,3\n7849,3\n7850,3\n7851,3\n7852,3\n7853,3\n7854,3\n7855,3\n7856,3\n7857,3\n7858,3\n7859,3\n7860,3\n7861,3\n7862,3\n7863,3\n7864,3\n7865,1\n7866,3\n7867,3\n7868,3\n7869,3\n7870,3\n7871,3\n7872,3\n7873,3\n7874,3\n7875,3\n7876,3\n7877,3\n7878,3\n7879,3\n7880,3\n7881,3\n7882,3\n7883,3\n7884,3\n7885,3\n7886,3\n7887,3\n7888,3\n7889,3\n7890,3\n7891,3\n7892,3\n7893,3\n7894,3\n7895,3\n7896,3\n7897,3\n7898,3\n7899,3\n7900,3\n7901,3\n7902,3\n7903,3\n7904,3\n7905,3\n7906,2\n7907,2\n7908,2\n7909,2\n7910,2\n7911,2\n7912,2\n7913,2\n7914,2\n7915,2\n7916,2\n7917,2\n7918,2\n7919,2\n7920,2\n7921,2\n7922,2\n7923,2\n7924,2\n7925,2\n7926,2\n7927,2\n7928,2\n7929,2\n7930,2\n7931,2\n7932,2\n7933,2\n7934,2\n7935,2\n7936,2\n7937,2\n7938,2\n7939,2\n7940,2\n7941,2\n7942,1\n7943,2\n7944,2\n7945,2\n7946,2\n7947,2\n7948,2\n7949,2\n7950,2\n7951,2\n7952,2\n7953,2\n7954,2\n7955,2\n7956,2\n7957,2\n7958,2\n7959,2\n7960,2\n7961,2\n7962,2\n7963,2\n7964,2\n7965,2\n7966,2\n7967,2\n7968,2\n7969,2\n7970,2\n7971,2\n7972,2\n7973,2\n7974,2\n7975,2\n7976,2\n7977,2\n7978,2\n7979,2\n7980,2\n7981,2\n7982,2\n7983,2\n7984,2\n7985,2\n7986,2\n7987,2\n7988,2\n7989,2\n7990,2\n7991,2\n7992,2\n7993,2\n7994,2\n7995,2\n7996,2\n7997,2\n7998,2\n7999,2\n8000,2\n8001,2\n8002,2\n8003,2\n8004,2\n8005,2\n8006,2\n8007,2\n8008,2\n8009,2\n8010,2\n8011,2\n8012,2\n8013,2\n8014,2\n8015,2\n8016,2\n8017,2\n8018,2\n8019,2\n8020,2\n8021,2\n8022,2\n8023,2\n8024,2\n8025,2\n8026,2\n8027,2\n8028,2\n8029,2\n8030,2\n8031,1\n8032,1\n8033,1\n8034,1\n8035,2\n8036,2\n8037,2\n8038,2\n8039,2\n8040,2\n8041,2\n8042,2\n8043,2\n8044,2\n8045,2\n8046,2\n8047,2\n8048,2\n8049,2\n8050,2\n8051,2\n8052,2\n8053,2\n8054,2\n8055,2\n8056,2\n8057,2\n8058,2\n8059,2\n8060,2\n8061,2\n8062,2\n8063,2\n8064,2\n8065,2\n8066,2\n8067,2\n8068,2\n8069,2\n8070,2\n8071,2\n8072,2\n8073,2\n8074,2\n8075,2\n8076,2\n8077,2\n8078,2\n8079,2\n8080,2\n8081,2\n8082,2\n8083,2\n8084,2\n8085,2\n8086,2\n8087,2\n8088,2\n8089,2\n8090,2\n8091,1\n8092,1\n8093,2\n8094,2\n8095,2\n8096,2\n8097,2\n8098,2\n8099,2\n8100,2\n8101,2\n8102,2\n8103,2\n8104,2\n8105,2\n8106,2\n8107,1\n8108,1\n8109,2\n8110,2\n8111,2\n8112,2\n8113,2\n8114,2\n8115,2\n8116,2\n8117,2\n8118,2\n8119,2\n8120,2\n8121,2\n8122,2\n8123,2\n8124,2\n8125,2\n8126,2\n8127,2\n8128,1\n8129,2\n8130,2\n8131,2\n8132,2\n8133,2\n8134,2\n8135,2\n8136,2\n8137,2\n8138,2\n8139,2\n8140,2\n8141,2\n8142,2\n8143,2\n8144,2\n8145,2\n8146,2\n8147,2\n8148,2\n8149,2\n8150,2\n8151,2\n8152,2\n8153,2\n8154,2\n8155,2\n8156,2\n8157,2\n8158,2\n8159,2\n8160,2\n8161,2\n8162,2\n8163,2\n8164,2\n8165,2\n8166,2\n8167,2\n8168,2\n8169,2\n8170,2\n8171,2\n8172,2\n8173,2\n8174,2\n8175,2\n8176,2\n8177,2\n8178,2\n8179,2\n8180,2\n8181,2\n8182,2\n8183,2\n8184,2\n8185,2\n8186,2\n8187,2\n8188,2\n8189,2\n8190,2\n8191,2\n8192,2\n8193,2\n8194,2\n8195,2\n8196,2\n8197,2\n8198,2\n8199,2\n8200,1\n8201,1\n8202,1\n8203,2\n8204,2\n8205,2\n8206,2\n8207,2\n8208,2\n8209,2\n8210,2\n8211,2\n8212,2\n8213,2\n8214,2\n8215,2\n8216,2\n8217,2\n8218,2\n8219,2\n8220,2\n8221,2\n8222,2\n8223,2\n8224,2\n8225,2\n8226,2\n8227,2\n8228,1\n8229,2\n8230,2\n8231,2\n8232,2\n8233,2\n8234,2\n8235,2\n8236,2\n8237,2\n8238,2\n8239,2\n8240,2\n8241,2\n8242,2\n8243,2\n8244,2\n8245,2\n8246,2\n8247,2\n8248,2\n8249,2\n8250,2\n8251,2\n8252,2\n8253,2\n8254,2\n8255,2\n8256,2\n8257,2\n8258,2\n8259,2\n8260,2\n8261,2\n8262,2\n8263,2\n8264,2\n8265,2\n8266,2\n8267,2\n8268,2\n8269,2\n8270,2\n8271,2\n8272,2\n8273,2\n8274,2\n8275,2\n8276,2\n8277,2\n8278,2\n8279,2\n8280,2\n8281,2\n8282,2\n8283,2\n8284,2\n8285,2\n8286,2\n8287,2\n8288,2\n8289,2\n8290,2\n8291,2\n8292,2\n8293,2\n8294,2\n8295,2\n8296,2\n8297,2\n8298,2\n8299,2\n8300,2\n8301,2\n8302,2\n8303,2\n8304,2\n8305,2\n8306,2\n8307,2\n8308,2\n8309,2\n8310,2\n8311,2\n8312,2\n8313,2\n8314,2\n8315,2\n8316,2\n8317,2\n8318,2\n8319,2\n8320,2\n8321,2\n8322,2\n8323,2\n8324,2\n8325,2\n8326,2\n8327,2\n8328,2\n8329,2\n8330,2\n8331,2\n8332,2\n8333,2\n8334,1\n8335,2\n8336,2\n8337,2\n8338,2\n8339,2\n8340,1\n8341,1\n8342,1\n8343,2\n8344,2\n8345,2\n8346,2\n8347,2\n8348,2\n8349,2\n8350,2\n8351,2\n8352,2\n8353,2\n8354,2\n8355,2\n8356,2\n8357,2\n8358,2\n8359,2\n8360,2\n8361,2\n8362,2\n8363,2\n8364,2\n8365,2\n8366,2\n8367,2\n8368,2\n8369,2\n8370,2\n8371,2\n8372,2\n8373,2\n8374,2\n8375,2\n8376,2\n8377,2\n8378,2\n8379,2\n8380,2\n8381,2\n8382,2\n8383,2\n8384,2\n8385,2\n8386,2\n8387,2\n8388,2\n8389,2\n8390,2\n8391,2\n8392,2\n8393,2\n8394,2\n8395,2\n8396,2\n8397,2\n8398,2\n8399,2\n8400,2\n8401,2\n8402,2\n8403,2\n8404,2\n8405,2\n8406,2\n8407,2\n8408,2\n8409,2\n8410,2\n8411,2\n8412,2\n8413,2\n8414,2\n8415,2\n8416,2\n8417,2\n8418,2\n8419,2\n8420,2\n8421,2\n8422,2\n8423,2\n8424,2\n8425,2\n8426,2\n8427,2\n8428,2\n8429,2\n8430,2\n8431,2\n8432,2\n8433,2\n8434,2\n8435,2\n8436,2\n8437,2\n8438,2\n8439,2\n8440,2\n8441,2\n8442,2\n8443,2\n8444,2\n8445,2\n8446,2\n8447,2\n8448,2\n8449,2\n8450,2\n8451,2\n8452,2\n8453,2\n8454,2\n8455,2\n8456,2\n8457,2\n8458,2\n8459,2\n8460,2\n8461,2\n8462,2\n8463,2\n8464,2\n8465,2\n8466,2\n8467,2\n8468,2\n8469,2\n8470,2\n8471,2\n8472,2\n8473,2\n8474,2\n8475,2\n8476,2\n8477,2\n8478,2\n8479,2\n8480,2\n8481,2\n8482,2\n8483,2\n8484,2\n8485,2\n8486,2\n8487,2\n8488,2\n8489,2\n8490,2\n8491,2\n8492,2\n8493,2\n8494,2\n8495,2\n8496,2\n8497,2\n8498,2\n8499,2\n8500,2\n8501,2\n8502,2\n8503,2\n8504,2\n8505,2\n8506,2\n8507,2\n8508,2\n8509,2\n8510,2\n8511,2\n8512,2\n8513,2\n8514,1\n8515,1\n8516,1\n8517,1\n8518,1\n8519,1\n8520,2\n8521,2\n8522,2\n8523,2\n8524,2\n8525,2\n8526,2\n8527,2\n8528,2\n8529,2\n8530,2\n8531,2\n8532,2\n8533,2\n8534,2\n8535,2\n8536,2\n8537,2\n8538,2\n8539,2\n8540,2\n8541,2\n8542,2\n8543,2\n8544,2\n8545,2\n8546,2\n8547,2\n8548,2\n8549,2\n8550,2\n8551,2\n8552,2\n8553,2\n8554,2\n8555,2\n8556,2\n8557,2\n8558,2\n8559,2\n8560,2\n8561,2\n8562,2\n8563,2\n8564,2\n8565,2\n8566,2\n8567,2\n8568,2\n8569,2\n8570,2\n8571,2\n8572,2\n8573,2\n8574,2\n8575,2\n8576,2\n8577,2\n8578,2\n8579,2\n8580,2\n8581,2\n8582,2\n8583,2\n8584,2\n8585,2\n8586,2\n8587,2\n8588,2\n8589,2\n8590,2\n8591,2\n8592,2\n8593,2\n8594,2\n8595,2\n8596,2\n8597,2\n8598,2\n8599,2\n8600,2\n8601,1\n8602,1\n8603,2\n8604,2\n8605,2\n8606,2\n8607,2\n8608,2\n8609,2\n8610,2\n8611,2\n8612,2\n8613,2\n8614,2\n8615,2\n8616,2\n8617,2\n8618,2\n8619,2\n8620,2\n8621,2\n8622,2\n8623,2\n8624,2\n8625,2\n8626,2\n8627,2\n8628,2\n8629,2\n8630,2\n8631,2\n8632,2\n8633,2\n8634,2\n8635,2\n8636,2\n8637,2\n8638,2\n8639,1\n8640,2\n8641,2\n8642,2\n8643,2\n8644,2\n8645,2\n8646,2\n8647,2\n8648,2\n8649,2\n8650,2\n8651,2\n8652,2\n8653,2\n8654,2\n8655,2\n8656,2\n8657,2\n8658,2\n8659,2\n8660,2\n8661,2\n8662,2\n8663,2\n8664,2\n8665,2\n8666,2\n8667,2\n8668,1\n8669,2\n8670,2\n8671,2\n8672,2\n8673,2\n8674,2\n8675,2\n8676,2\n8677,2\n8678,2\n8679,2\n8680,2\n8681,2\n8682,2\n8683,2\n8684,2\n8685,2\n8686,2\n8687,2\n8688,2\n8689,2\n8690,2\n8691,2\n8692,2\n8693,2\n8694,2\n8695,2\n8696,2\n8697,2\n8698,2\n8699,2\n8700,2\n8701,2\n8702,2\n8703,2\n8704,2\n8705,2\n8706,2\n8707,2\n8708,2\n8709,2\n8710,2\n8711,2\n8712,2\n8713,2\n8714,2\n8715,2\n8716,1\n8717,2\n8718,2\n8719,2\n8720,2\n8721,2\n8722,2\n8723,2\n8724,2\n8725,2\n8726,2\n8727,2\n8728,2\n8729,2\n8730,2\n8731,2\n8732,2\n8733,2\n8734,2\n8735,2\n8736,2\n8737,2\n8738,2\n8739,2\n8740,2\n8741,2\n8742,2\n8743,2\n8744,2\n8745,2\n8746,2\n8747,2\n8748,2\n8749,2\n8750,2\n8751,2\n8752,2\n8753,2\n8754,2\n8755,2\n8756,2\n8757,2\n8758,2\n8759,2\n8760,2\n8761,2\n8762,2\n8763,2\n8764,2\n8765,2\n8766,2\n8767,2\n8768,2\n8769,2\n8770,2\n8771,2\n8772,2\n8773,2\n8774,2\n8775,2\n8776,2\n8777,2\n8778,2\n8779,2\n8780,2\n8781,2\n8782,2\n8783,2\n8784,2\n8785,2\n8786,2\n8787,2\n8788,2\n8789,2\n8790,2\n8791,2\n8792,2\n8793,2\n8794,2\n8795,2\n8796,2\n8797,2\n8798,2\n8799,2\n8800,2\n8801,2\n8802,2\n8803,2\n8804,2\n8805,2\n8806,2\n8807,2\n8808,2\n8809,2\n8810,1\n8811,2\n8812,2\n8813,2\n8814,2\n8815,2\n8816,2\n8817,2\n8818,2\n8819,2\n8820,2\n8821,2\n8822,2\n8823,2\n8824,2\n8825,2\n8826,2\n8827,2\n8828,2\n8829,2\n8830,2\n8831,2\n8832,2\n8833,2\n8834,2\n8835,2\n8836,2\n8837,2\n8838,2\n8839,2\n8840,2\n8841,2\n8842,2\n8843,2\n8844,2\n8845,2\n8846,2\n8847,2\n8848,2\n8849,2\n8850,2\n8851,2\n8852,2\n8853,2\n8854,2\n8855,2\n8856,2\n8857,2\n8858,2\n8859,2\n8860,2\n8861,2\n8862,2\n8863,2\n8864,2\n8865,2\n8866,2\n8867,2\n8868,2\n8869,2\n8870,2\n8871,2\n8872,2\n8873,2\n8874,2\n8875,2\n8876,2\n8877,2\n8878,2\n8879,2\n8880,2\n8881,2\n8882,2\n8883,2\n8884,2\n8885,2\n8886,2\n8887,2\n8888,2\n8889,2\n8890,2\n8891,2\n8892,2\n8893,2\n8894,2\n8895,2\n8896,2\n8897,2\n8898,2\n8899,2\n8900,2\n8901,2\n8902,2\n8903,2\n8904,2\n8905,2\n8906,2\n8907,2\n8908,2\n8909,2\n8910,2\n8911,2\n8912,2\n8913,2\n8914,2\n8915,2\n8916,2\n8917,2\n8918,2\n8919,2\n8920,2\n8921,2\n8922,2\n8923,2\n8924,2\n8925,2\n8926,2\n8927,2\n8928,2\n8929,2\n8930,2\n8931,2\n8932,2\n8933,2\n8934,2\n8935,2\n8936,2\n8937,2\n8938,2\n8939,2\n8940,2\n8941,2\n8942,2\n8943,2\n8944,2\n8945,2\n8946,2\n8947,2\n8948,2\n8949,2\n8950,2\n8951,2\n8952,2\n8953,2\n8954,2\n8955,2\n8956,2\n8957,2\n8958,2\n8959,2\n8960,2\n8961,2\n8962,2\n8963,2\n8964,2\n8965,2\n8966,2\n8967,2\n8968,2\n8969,2\n8970,2\n8971,2\n8972,2\n8973,2\n8974,2\n8975,2\n8976,2\n8977,2\n8978,2\n8979,2\n8980,2\n8981,2\n8982,2\n8983,2\n8984,2\n8985,2\n8986,2\n8987,2\n8988,2\n8989,2\n8990,2\n8991,2\n8992,2\n8993,2\n8994,2\n8995,2\n8996,2\n8997,2\n8998,2\n8999,2\n9000,2\n9001,2\n9002,2\n9003,2\n9004,2\n9005,2\n9006,2\n9007,2\n9008,2\n9009,2\n9010,2\n9011,2\n9012,2\n9013,1\n9014,2\n9015,2\n9016,2\n9017,2\n9018,2\n9019,2\n9020,2\n9021,2\n9022,2\n9023,2\n9024,1\n9025,2\n9026,2\n9027,2\n9028,2\n9029,2\n9030,2\n9031,2\n9032,2\n9033,2\n9034,2\n9035,2\n9036,2\n9037,2\n9038,2\n9039,2\n9040,2\n9041,2\n9042,2\n9043,2\n9044,2\n9045,2\n9046,2\n9047,2\n9048,2\n9049,2\n9050,2\n9051,2\n9052,2\n9053,2\n9054,2\n9055,2\n9056,2\n9057,2\n9058,2\n9059,2\n9060,2\n9061,1\n9062,2\n9063,1\n9064,2\n9065,2\n9066,2\n9067,2\n9068,2\n9069,2\n9070,2\n9071,2\n9072,2\n9073,2\n9074,2\n9075,2\n9076,2\n9077,1\n9078,1\n9079,1\n9080,1\n9081,1\n9082,1\n9083,1\n9084,1\n9085,1\n9086,1\n9087,1\n9088,1\n9089,1\n9090,1\n9091,1\n9092,1\n9093,1\n9094,1\n9095,1\n9096,1\n9097,1\n9098,1\n9099,1\n9100,1\n9101,1\n9102,1\n9103,1\n9104,1\n9105,1\n9106,1\n9107,1\n9108,1\n9109,1\n9110,1\n9111,1\n9112,1\n9113,1\n9114,1\n9115,1\n9116,1\n9117,1\n9118,1\n9119,1\n9120,1\n9121,1\n9122,1\n9123,1\n9124,1\n9125,1\n9126,1\n9127,1\n9128,1\n9129,1\n9130,1\n9131,1\n9132,1\n9133,1\n9134,1\n9135,1\n9136,1\n9137,1\n9138,1\n9139,1\n9140,1\n9141,1\n9142,1\n9143,1\n9144,1\n9145,1\n9146,1\n9147,1\n9148,1\n9149,1\n9150,1\n9151,1\n9152,1\n9153,1\n9154,1\n9155,1\n9156,1\n9157,1\n9158,1\n9159,1\n9160,1\n9161,1\n9162,1\n9163,1\n9164,1\n9165,1\n9166,1\n9167,1\n9168,1\n9169,1\n9170,1\n9171,1\n9172,1\n9173,1\n9174,1\n9175,1\n9176,1\n9177,1\n9178,1\n9179,1\n9180,1\n9181,1\n9182,1\n9183,1\n9184,1\n9185,1\n9186,1\n9187,1\n9188,1\n9189,1\n9190,1\n9191,1\n9192,1\n9193,1\n9194,1\n9195,1\n9196,1\n9197,1\n9198,1\n9199,1\n9200,1\n9201,1\n9202,1\n9203,1\n9204,1\n9205,1\n9206,1\n9207,1\n9208,1\n9209,1\n9210,1\n9211,1\n9212,1\n9213,1\n9214,1\n9215,1\n9216,1\n9217,1\n9218,1\n9219,1\n9220,1\n9221,1\n9222,1\n9223,1\n9224,1\n9225,1\n9226,1\n9227,1\n9228,1\n9229,1\n9230,1\n9231,1\n9232,1\n9233,1\n9234,1\n9235,1\n9236,1\n9237,1\n9238,1\n9239,1\n9240,1\n9241,1\n9242,1\n9243,1\n9244,1\n9245,1\n9246,1\n9247,1\n9248,1\n9249,1\n9250,1\n9251,1\n9252,1\n9253,1\n9254,1\n9255,1\n9256,1\n9257,1\n9258,1\n9259,1\n9260,1\n9261,1\n9262,1\n9263,1\n9264,1\n9265,1\n9266,1\n9267,1\n9268,1\n9269,1\n9270,1\n9271,1\n9272,1\n9273,1\n9274,1\n9275,1\n9276,1\n9277,1\n9278,1\n9279,1\n9280,1\n9281,1\n9282,1\n9283,1\n9284,1\n9285,1\n9286,1\n9287,1\n9288,1\n9289,1\n9290,1\n9291,1\n9292,1\n9293,1\n9294,1\n9295,1\n9296,1\n9297,1\n9298,1\n9299,1\n9300,1\n9301,1\n9302,1\n9303,1\n9304,1\n9305,1\n9306,1\n9307,1\n9308,1\n9309,1\n9310,1\n9311,1\n9312,1\n9313,1\n9314,1\n9315,1\n9316,1\n9317,1\n9318,1\n9319,1\n9320,1\n9321,1\n9322,1\n9323,1\n9324,1\n9325,1\n9326,1\n9327,1\n9328,1\n9329,1\n9330,1\n9331,1\n9332,1\n9333,1\n9334,1\n9335,1\n9336,1\n9337,1\n9338,1\n9339,1\n9340,1\n9341,1\n9342,1\n9343,1\n9344,1\n9345,1\n9346,1\n9347,1\n9348,1\n9349,1\n9350,1\n9351,1\n9352,1\n9353,1\n9354,1\n9355,1\n9356,1\n9357,1\n9358,1\n9359,1\n9360,1\n9361,1\n9362,1\n9363,1\n9364,1\n9365,1\n9366,1\n9367,1\n9368,1\n9369,1\n9370,1\n9371,1\n9372,1\n9373,1\n9374,1\n9375,1\n9376,1\n9377,1\n9378,1\n9379,1\n9380,1\n9381,1\n9382,1\n9383,1\n9384,1\n9385,1\n9386,1\n9387,1\n9388,1\n9389,1\n9390,1\n9391,1\n9392,1\n9393,1\n9394,1\n9395,1\n9396,1\n9397,1\n9398,1\n9399,1\n9400,1\n9401,1\n9402,1\n9403,1\n9404,1\n9405,1\n9406,1\n9407,1\n9408,1\n9409,1\n9410,1\n9411,1\n9412,1\n9413,1\n9414,1\n9415,1\n9416,1\n9417,1\n9418,1\n9419,1\n9420,1\n9421,1\n9422,1\n9423,1\n9424,1\n9425,1\n9426,1\n9427,1\n9428,1\n9429,1\n9430,1\n9431,1\n9432,1\n9433,1\n9434,1\n9435,1\n9436,1\n9437,1\n9438,1\n9439,1\n9440,1\n9441,1\n9442,1\n9443,1\n9444,1\n9445,1\n9446,1\n9447,1\n9448,1\n9449,1\n9450,1\n9451,1\n9452,1\n9453,1\n9454,1\n9455,1\n9456,1\n9457,1\n9458,1\n9459,1\n9460,1\n9461,1\n9462,1\n9463,1\n9464,1\n9465,1\n9466,1\n9467,1\n9468,1\n9469,1\n9470,1\n9471,1\n9472,1\n9473,1\n9474,1\n9475,1\n9476,1\n9477,1\n9478,1\n9479,1\n9480,1\n9481,1\n9482,1\n9483,1\n9484,1\n9485,1\n9486,1\n9487,1\n9488,1\n9489,1\n9490,1\n9491,1\n9492,1\n9493,1\n9494,1\n9495,1\n9496,1\n9497,1\n9498,1\n9499,1\n9500,1\n9501,1\n9502,1\n9503,1\n9504,1\n9505,1\n9506,1\n9507,1\n9508,1\n9509,1\n9510,1\n9511,1\n9512,1\n9513,1\n9514,1\n9515,1\n9516,1\n9517,1\n9518,1\n9519,1\n9520,1\n9521,1\n9522,1\n9523,1\n9524,1\n9525,1\n9526,1\n9527,1\n9528,1\n9529,1\n9530,1\n9531,1\n9532,1\n9533,1\n9534,1\n9535,1\n9536,1\n9537,1\n9538,1\n9539,1\n9540,1\n9541,1\n9542,1\n9543,1\n9544,1\n9545,1\n9546,1\n9547,1\n9548,1\n9549,1\n9550,1\n9551,1\n9552,1\n9553,1\n9554,1\n9555,1\n9556,1\n9557,1\n9558,1\n9559,1\n9560,1\n9561,1\n9562,1\n9563,1\n9564,1\n9565,1\n9566,1\n9567,1\n9568,1\n9569,1\n9570,1\n9571,1\n9572,1\n9573,1\n9574,1\n9575,1\n9576,1\n9577,1\n9578,1\n9579,1\n9580,1\n9581,1\n9582,1\n9583,1\n9584,1\n9585,1\n9586,1\n9587,1\n9588,1\n9589,1\n9590,1\n9591,1\n9592,1\n9593,1\n9594,1\n9595,1\n9596,1\n9597,1\n9598,1\n9599,1\n9600,1\n9601,1\n9602,1\n9603,1\n9604,1\n9605,1\n9606,1\n9607,1\n9608,1\n9609,1\n9610,1\n9611,1\n9612,1\n9613,1\n9614,1\n9615,1\n9616,1\n9617,1\n9618,1\n9619,1\n9620,1\n9621,1\n9622,1\n9623,1\n9624,1\n9625,1\n9626,1\n9627,1\n9628,1\n9629,1\n9630,1\n9631,1\n9632,1\n9633,1\n9634,1\n9635,1\n9636,1\n9637,1\n9638,1\n9639,1\n9640,1\n9641,1\n9642,1\n9643,1\n9644,1\n9645,1\n9646,1\n9647,1\n9648,1\n9649,1\n9650,1\n9651,1\n9652,1\n9653,1\n9654,1\n9655,1\n9656,1\n9657,1\n9658,1\n9659,1\n9660,1\n9661,1\n9662,1\n9663,1\n9664,1\n9665,1\n9666,1\n9667,1\n9668,1\n9669,1\n9670,1\n9671,1\n9672,1\n9673,1\n9674,1\n9675,1\n9676,1\n9677,1\n9678,1\n9679,1\n9680,1\n9681,1\n9682,1\n9683,1\n9684,1\n9685,1\n9686,1\n9687,1\n9688,1\n9689,1\n9690,1\n9691,1\n9692,1\n9693,1\n9694,1\n9695,1\n9696,1\n9697,1\n9698,1\n9699,1\n9700,1\n9701,1\n9702,1\n9703,1\n9704,1\n9705,1\n9706,1\n9707,1\n9708,1\n9709,1\n9710,1\n9711,1\n9712,1\n9713,1\n9714,1\n9715,1\n9716,1\n9717,1\n9718,1\n9719,1\n9720,1\n9721,1\n9722,1\n9723,1\n9724,1\n9725,1\n9726,1\n9727,1\n9728,1\n9729,1\n9730,1\n9731,1\n9732,1\n9733,1\n9734,1\n9735,1\n9736,1\n9737,1\n9738,1\n9739,1\n9740,1\n9741,1\n9742,1\n9743,1\n9744,1\n9745,1\n9746,1\n9747,1\n9748,1\n9749,1\n9750,1\n9751,1\n9752,1\n9753,1\n9754,1\n9755,1\n9756,1\n9757,1\n9758,1\n9759,1\n9760,1\n9761,1\n9762,1\n9763,1\n9764,1\n9765,1\n9766,1\n9767,1\n9768,1\n9769,1\n9770,1\n9771,1\n9772,1\n9773,1\n9774,1\n9775,1\n9776,1\n9777,1\n9778,1\n9779,1\n9780,1\n9781,1\n9782,1\n9783,1\n9784,1\n9785,1\n9786,1\n9787,1\n9788,1\n9789,1\n9790,1\n9791,1\n9792,1\n9793,1\n9794,1\n9795,1\n9796,1\n9797,1\n9798,1\n9799,1\n9800,1\n9801,1\n9802,1\n9803,1\n9804,1\n9805,1\n9806,1\n9807,1\n9808,1\n9809,1\n9810,1\n9811,1\n9812,1\n9813,1\n9814,1\n9815,1\n9816,1\n9817,1\n9818,1\n9819,1\n9820,1\n9821,1\n9822,1\n9823,1\n9824,1\n9825,1\n9826,1\n9827,1\n9828,1\n9829,1\n9830,1\n9831,1\n9832,1\n9833,1\n9834,1\n9835,1\n9836,1\n9837,1\n9838,1\n9839,1\n9840,1\n9841,1\n9842,1\n9843,1\n9844,1\n9845,1\n9846,1\n9847,1\n9848,1\n9849,1\n9850,1\n9851,1\n9852,1\n9853,1\n9854,1\n9855,1\n9856,1\n9857,1\n9858,1\n9859,1\n9860,1\n9861,1\n9862,1\n9863,1\n9864,1\n9865,1\n9866,1\n9867,1\n9868,1\n9869,1\n9870,1\n9871,1\n9872,1\n9873,1\n9874,1\n9875,1\n9876,1\n9877,1\n9878,1\n9879,1\n9880,1\n9881,1\n9882,1\n9883,1\n9884,1\n9885,1\n9886,1\n9887,1\n9888,1\n9889,1\n9890,1\n9891,1\n9892,1\n9893,1\n9894,1\n9895,1\n9896,1\n9897,1\n9898,1\n9899,1\n9900,1\n9901,1\n9902,1\n9903,1\n9904,1\n9905,1\n9906,1\n9907,1\n9908,1\n9909,1\n9910,1\n9911,1\n9912,1\n9913,1\n9914,1\n9915,1\n9916,1\n9917,1\n9918,1\n9919,1\n9920,1\n9921,1\n9922,1\n9923,1\n9924,1\n9925,1\n9926,1\n9927,1\n9928,1\n9929,1\n9930,1\n9931,1\n9932,1\n9933,1\n9934,1\n9935,1\n9936,1\n9937,1\n9938,1\n9939,1\n9940,1\n9941,1\n9942,1\n9943,1\n9944,1\n9945,1\n9946,1\n9947,1\n9948,1\n9949,1\n9950,1\n9951,1\n9952,1\n9953,1\n9954,1\n9955,1\n9956,1\n9957,1\n9958,1\n9959,1\n9960,1\n9961,1\n9962,1\n9963,1\n9964,1\n9965,1\n9966,1\n9967,1\n9968,1\n9969,1\n9970,1\n9971,1\n9972,1\n9973,1\n9974,1\n9975,1\n9976,1\n9977,1\n9978,1\n9979,1\n9980,1\n9981,1\n9982,1\n9983,1\n9984,1\n9985,1\n9986,1\n9987,1\n9988,1\n9989,1\n9990,1\n9991,1\n9992,1\n9993,1\n9994,1\n9995,1\n9996,1\n9997,1\n9998,1\n9999,1\n10000,1\n10001,1\n10002,1\n10003,1\n10004,1\n10005,1\n10006,1\n10007,1\n10008,1\n10009,1\n10010,1\n10011,1\n10012,1\n10013,1\n10014,1\n10015,1\n10016,1\n10017,1\n10018,1\n10019,1\n10020,1\n10021,1\n10022,1\n10023,1\n10024,1\n10025,1\n10026,1\n10027,1\n10028,1\n10029,1\n10030,1\n10031,1\n10032,1\n10033,1\n10034,1\n10035,1\n10036,1\n10037,1\n10038,1\n10039,1\n10040,1\n10041,1\n10042,1\n10043,1\n10044,1\n10045,1\n10046,1\n10047,1\n10048,1\n10049,1\n10050,1\n10051,1\n10052,1\n10053,1\n10054,1\n10055,1\n10056,1\n10057,1\n10058,1\n10059,1\n10060,1\n10061,1\n10062,1\n10063,1\n10064,1\n10065,1\n10066,1\n10067,1\n10068,1\n10069,1\n10070,1\n10071,1\n10072,1\n10073,1\n10074,1\n10075,1\n10076,1\n10077,1\n10078,1\n10079,1\n10080,1\n10081,1\n10082,1\n10083,1\n10084,1\n10085,1\n10086,1\n10087,1\n10088,1\n10089,1\n10090,1\n10091,1\n10092,1\n10093,1\n10094,1\n10095,1\n10096,1\n10097,1\n10098,1\n10099,1\n10100,1\n10101,1\n10102,1\n10103,1\n10104,1\n10105,1\n10106,1\n10107,1\n10108,1\n10109,1\n10110,1\n10111,1\n10112,1\n10113,1\n10114,1\n10115,1\n10116,1\n10117,1\n10118,1\n10119,1\n10120,1\n10121,1\n10122,1\n10123,1\n10124,1\n10125,1\n10126,1\n10127,1\n10128,1\n10129,1\n10130,1\n10131,1\n10132,1\n10133,1\n10134,1\n10135,1\n10136,1\n10137,1\n10138,1\n10139,1\n10140,1\n10141,1\n10142,1\n10143,1\n10144,1\n10145,1\n10146,1\n10147,1\n10148,1\n10149,1\n10150,1\n10151,1\n10152,1\n10153,1\n10154,1\n10155,1\n10156,1\n10157,1\n10158,1\n10159,1\n10160,1\n10161,1\n10162,1\n10163,1\n10164,1\n10165,1\n10166,1\n10167,1\n10168,1\n10169,1\n10170,1\n10171,1\n10172,1\n10173,1\n10174,1\n10175,1\n10176,1\n10177,1\n10178,1\n10179,1\n10180,1\n10181,1\n10182,1\n10183,1\n10184,1\n10185,1\n10186,1\n10187,1\n10188,1\n10189,1\n10190,1\n10191,1\n10192,1\n10193,1\n10194,1\n10195,1\n10196,1\n10197,1\n10198,1\n10199,1\n10200,1\n10201,1\n10202,1\n10203,1\n10204,1\n10205,1\n10206,1\n10207,1\n10208,1\n10209,1\n10210,1\n10211,1\n10212,1\n10213,1\n10214,1\n10215,1\n10216,1\n10217,1\n10218,1\n10219,1\n10220,1\n10221,1\n10222,1\n10223,1\n10224,1\n10225,1\n10226,1\n10227,1\n10228,1\n10229,1\n10230,1\n10231,1\n10232,1\n10233,1\n10234,1\n10235,1\n10236,1\n10237,1\n10238,1\n10239,1\n10240,1\n10241,1\n10242,1\n10243,1\n10244,1\n10245,1\n10246,1\n10247,1\n10248,1\n10249,1\n10250,1\n10251,1\n10252,1\n10253,1\n10254,1\n10255,1\n10256,1\n10257,1\n10258,1\n10259,1\n10260,1\n10261,1\n10262,1\n10263,1\n10264,1\n10265,1\n10266,1\n10267,1\n10268,1\n10269,1\n10270,1\n10271,1\n10272,1\n10273,1\n10274,1\n10275,1\n10276,1\n10277,1\n10278,1\n10279,1\n10280,1\n10281,1\n10282,1\n10283,1\n10284,1\n10285,1\n10286,1\n10287,1\n10288,1\n10289,1\n10290,1\n10291,1\n10292,1\n10293,1\n10294,1\n10295,1\n10296,1\n10297,1\n10298,1\n10299,1\n10300,1\n10301,1\n10302,1\n10303,1\n10304,1\n10305,1\n10306,1\n10307,1\n10308,1\n10309,1\n10310,1\n10311,1\n10312,1\n10313,1\n10314,1\n10315,1\n10316,1\n10317,1\n10318,1\n10319,1\n10320,1\n10321,1\n10322,1\n10323,1\n10324,1\n10325,1\n10326,1\n10327,1\n10328,1\n10329,1\n10330,1\n10331,1\n10332,1\n10333,1\n10334,1\n10335,1\n10336,1\n10337,1\n10338,1\n10339,1\n10340,1\n10341,1\n10342,1\n10343,1\n10344,1\n10345,1\n10346,1\n10347,1\n10348,1\n10349,1\n10350,1\n10351,1\n10352,1\n10353,1\n10354,1\n10355,1\n10356,1\n10357,1\n10358,1\n10359,1\n10360,1\n10361,1\n10362,1\n10363,1\n10364,1\n10365,1\n10366,1\n10367,1\n10368,1\n10369,1\n10370,1\n10371,1\n10372,1\n10373,1\n10374,1\n10375,1\n10376,1\n10377,1\n10378,1\n10379,1\n10380,1\n10381,1\n10382,1\n10383,1\n10384,1\n10385,1\n10386,1\n10387,1\n10388,1\n10389,1\n10390,1\n10391,1\n10392,1\n10393,1\n10394,1\n10395,1\n10396,1\n10397,1\n10398,1\n10399,1\n10400,1\n10401,1\n10402,1\n10403,1\n10404,1\n10405,1\n10406,1\n10407,1\n10408,1\n10409,1\n10410,1\n10411,1\n10412,1\n10413,1\n10414,1\n10415,1\n10416,1\n10417,1\n10418,1\n10419,1\n10420,1\n10421,1\n10422,1\n10423,1\n10424,1\n10425,1\n10426,1\n10427,1\n10428,1\n10429,1\n10430,1\n10431,1\n10432,1\n10433,1\n10434,1\n10435,1\n10436,1\n10437,1\n10438,1\n10439,1\n10440,1\n10441,1\n10442,1\n10443,1\n10444,1\n10445,1\n10446,1\n10447,1\n10448,1\n10449,1\n10450,1\n10451,1\n10452,1\n10453,1\n10454,1\n10455,1\n10456,1\n10457,1\n10458,1\n10459,1\n10460,1\n10461,1\n10462,1\n10463,1\n10464,1\n10465,1\n10466,1\n10467,1\n10468,1\n10469,1\n10470,1\n10471,1\n10472,1\n10473,1\n10474,1\n10475,1\n10476,1\n10477,1\n10478,1\n10479,1\n10480,1\n10481,1\n10482,1\n10483,1\n10484,1\n10485,1\n10486,1\n10487,1\n10488,1\n10489,1\n10490,1\n10491,1\n10492,1\n10493,1\n10494,1\n10495,1\n10496,1\n10497,1\n10498,1\n10499,1\n10500,1\n10501,1\n10502,1\n10503,1\n10504,1\n10505,1\n10506,1\n10507,1\n10508,1\n10509,1\n10510,1\n10511,1\n10512,1\n10513,1\n10514,1\n10515,1\n10516,1\n10517,1\n10518,1\n10519,1\n10520,1\n10521,1\n10522,1\n10523,1\n10524,1\n10525,1\n10526,1\n10527,1\n10528,1\n10529,1\n10530,1\n10531,1\n10532,1\n10533,1\n10534,1\n10535,1\n10536,1\n10537,1\n10538,1\n10539,1\n10540,1\n10541,1\n10542,1\n10543,1\n10544,1\n10545,1\n10546,1\n10547,1\n10548,1\n10549,1\n10550,1\n10551,1\n10552,1\n10553,1\n10554,1\n10555,1\n10556,1\n10557,1\n10558,1\n10559,1\n10560,1\n10561,1\n10562,1\n10563,1\n10564,1\n10565,1\n10566,1\n10567,1\n10568,1\n10569,1\n10570,1\n10571,1\n10572,1\n10573,1\n10574,1\n10575,1\n10576,1\n10577,1\n10578,1\n10579,1\n10580,1\n10581,1\n10582,1\n10583,1\n10584,1\n10585,1\n10586,1\n10587,1\n10588,1\n10589,1\n10590,1\n10591,1\n10592,1\n10593,1\n10594,1\n10595,1\n10596,1\n10597,1\n10598,1\n10599,1\n10600,1\n10601,1\n10602,1\n10603,1\n10604,1\n10605,1\n10606,1\n10607,1\n10608,1\n10609,1\n10610,1\n10611,1\n10612,1\n10613,1\n10614,1\n10615,1\n10616,1\n10617,1\n10618,1\n10619,1\n10620,1\n10621,1\n10622,1\n10623,1\n10624,1\n10625,1\n10626,1\n10627,1\n10628,1\n10629,1\n10630,1\n10631,1\n10632,1\n10633,1\n10634,1\n10635,1\n10636,1\n10637,1\n10638,1\n10639,1\n10640,1\n10641,1\n10642,1\n10643,1\n10644,1\n10645,1\n10646,1\n10647,1\n10648,1\n10649,1\n10650,1\n10651,1\n10652,1\n10653,1\n10654,1\n10655,1\n10656,1\n10657,1\n10658,1\n10659,1\n10660,1\n10661,1\n10662,1\n10663,1\n10664,1\n10665,1\n10666,1\n10667,1\n10668,1\n10669,1\n10670,1\n10671,1\n10672,1\n10673,1\n10674,1\n10675,1\n10676,1\n10677,1\n10678,1\n10679,1\n10680,1\n10681,1\n10682,1\n10683,1\n10684,1\n10685,1\n10686,1\n10687,1\n10688,1\n10689,1\n10690,1\n10691,1\n10692,1\n10693,1\n10694,1\n10695,1\n10696,1\n10697,1\n10698,1\n10699,1\n10700,1\n10701,1\n10702,1\n10703,1\n10704,1\n10705,1\n10706,1\n10707,1\n10708,1\n10709,1\n10710,1\n10711,1\n10712,1\n10713,1\n10714,1\n10715,1\n10716,1\n10717,1\n10718,1\n10719,1\n10720,1\n10721,1\n10722,1\n10723,1\n10724,1\n10725,1\n10726,1\n10727,1\n10728,1\n10729,1\n10730,1\n10731,1\n10732,1\n10733,1\n10734,1\n10735,1\n10736,1\n10737,1\n10738,1\n10739,1\n10740,1\n10741,1\n10742,1\n10743,1\n10744,1\n10745,1\n10746,1\n10747,1\n10748,1\n10749,1\n10750,1\n10751,1\n10752,1\n10753,1\n10754,1\n10755,1\n10756,1\n10757,1\n10758,1\n10759,1\n10760,1\n10761,1\n10762,1\n10763,1\n10764,1\n10765,1\n10766,1\n10767,1\n10768,1\n10769,1\n10770,1\n10771,1\n10772,1\n10773,1\n10774,1\n10775,1\n10776,1\n10777,1\n10778,1\n10779,1\n10780,1\n10781,1\n10782,1\n10783,1\n10784,1\n10785,1\n10786,1\n10787,1\n10788,1\n10789,1\n10790,1\n10791,1\n10792,1\n10793,1\n10794,1\n10795,1\n10796,1\n10797,1\n10798,1\n10799,1\n10800,1\n10801,1\n10802,1\n10803,1\n10804,1\n10805,1\n10806,1\n10807,1\n10808,1\n10809,1\n10810,1\n10811,1\n10812,1\n10813,1\n10814,1\n10815,1\n10816,1\n10817,1\n10818,1\n10819,1\n10820,1\n10821,1\n10822,1\n10823,1\n10824,1\n10825,1\n10826,1\n10827,1\n10828,1\n10829,1\n10830,1\n10831,1\n10832,1\n10833,1\n10834,1\n10835,1\n10836,1\n10837,1\n10838,1\n10839,1\n10840,1\n10841,1\n10842,1\n10843,1\n10844,1\n10845,1\n10846,1\n10847,1\n10848,1\n10849,1\n10850,1\n10851,1\n10852,1\n10853,1\n10854,1\n10855,1\n10856,1\n10857,1\n10858,1\n10859,1\n10860,1\n10861,1\n10862,1\n10863,1\n10864,1\n10865,1\n10866,1\n10867,1\n10868,1\n10869,1\n10870,1\n10871,1\n10872,1\n10873,1\n10874,1\n10875,1\n10876,1\n10877,1\n10878,1\n10879,1\n10880,1\n10881,1\n10882,1\n10883,1\n10884,1\n10885,1\n10886,1\n10887,1\n10888,1\n10889,1\n10890,1\n10891,1\n10892,1\n10893,1\n10894,1\n10895,1\n10896,1\n10897,1\n10898,1\n10899,1\n10900,1\n10901,1\n10902,1\n10903,1\n10904,1\n10905,1\n10906,1\n10907,1\n10908,1\n10909,1\n10910,1\n10911,1\n10912,1\n10913,1\n10914,1\n10915,1\n10916,1\n10917,1\n10918,1\n10919,1\n10920,1\n10921,1\n10922,1\n10923,1\n10924,1\n10925,1\n10926,1\n10927,1\n10928,1\n10929,1\n10930,1\n10931,1\n10932,1\n10933,1\n10934,1\n10935,1\n10936,1\n10937,1\n10938,1\n10939,1\n10940,1\n10941,1\n10942,1\n10943,1\n10944,1\n10945,1\n10946,1\n10947,1\n10948,1\n10949,1\n10950,1\n10951,1\n10952,1\n10953,1\n10954,1\n10955,1\n10956,1\n10957,1\n10958,1\n10959,1\n10960,1\n10961,1\n10962,1\n10963,1\n10964,1\n10965,1\n10966,1\n10967,1\n10968,1\n10969,1\n10970,1\n10971,1\n10972,1\n10973,1\n10974,1\n10975,1\n10976,1\n10977,1\n10978,1\n10979,1\n10980,1\n10981,1\n10982,1\n10983,1\n10984,1\n10985,1\n10986,1\n10987,1\n10988,1\n10989,1\n10990,1\n10991,1\n10992,1\n10993,1\n10994,1\n10995,1\n10996,1\n10997,1\n10998,1\n10999,1\n11000,1\n11001,1\n11002,1\n11003,1\n11004,1\n11005,1\n11006,1\n11007,1\n11008,1\n11009,1\n11010,1\n11011,1\n11012,1\n11013,1\n11014,1\n11015,1\n11016,1\n11017,1\n11018,1\n11019,1\n11020,1\n11021,1\n11022,1\n11023,1\n11024,1\n11025,1\n11026,1\n11027,1\n11028,1\n11029,1\n11030,1\n11031,1\n11032,1\n11033,1\n11034,1\n11035,1\n11036,1\n11037,1\n11038,1\n11039,1\n11040,1\n11041,1\n11042,1\n11043,1\n11044,1\n11045,1\n11046,1\n11047,1\n11048,1\n11049,1\n11050,1\n11051,1\n11052,1\n11053,1\n11054,1\n11055,1\n11056,1\n11057,1\n11058,1\n11059,1\n11060,1\n11061,1\n11062,1\n11063,1\n11064,1\n11065,1\n11066,1\n11067,1\n11068,1\n11069,1\n11070,1\n11071,1\n11072,1\n11073,1\n11074,1\n11075,1\n11076,1\n11077,1\n11078,1\n11079,1\n11080,1\n11081,1\n11082,1\n11083,1\n11084,1\n11085,1\n11086,1\n11087,1\n11088,1\n11089,1\n11090,1\n11091,1\n11092,1\n11093,1\n11094,1\n11095,1\n11096,1\n11097,1\n11098,1\n11099,1\n11100,1\n11101,1\n11102,1\n11103,1\n11104,1\n11105,1\n11106,1\n11107,1\n11108,1\n11109,1\n11110,1\n11111,1\n11112,1\n11113,1\n11114,1\n11115,1\n11116,1\n11117,1\n11118,1\n11119,1\n11120,1\n11121,1\n11122,1\n11123,1\n11124,1\n11125,1\n11126,1\n11127,1\n11128,1\n11129,1\n11130,1\n11131,1\n11132,1\n11133,1\n11134,1\n11135,1\n11136,1\n11137,1\n11138,1\n11139,1\n11140,1\n11141,1\n11142,1\n11143,1\n11144,1\n11145,1\n11146,1\n11147,1\n11148,1\n11149,1\n11150,1\n11151,1\n11152,1\n11153,1\n11154,1\n11155,1\n11156,1\n11157,1\n11158,1\n11159,1\n11160,1\n11161,1\n11162,1\n11163,1\n11164,1\n11165,1\n11166,1\n11167,1\n11168,1\n11169,1\n11170,1\n11171,1\n11172,1\n11173,1\n11174,1\n11175,1\n11176,1\n11177,1\n11178,1\n11179,1\n11180,1\n11181,1\n11182,1\n11183,1\n11184,1\n11185,1\n11186,1\n11187,1\n11188,1\n11189,1\n11190,1\n11191,1\n11192,1\n11193,1\n11194,1\n11195,1\n11196,1\n11197,1\n11198,1\n11199,1\n11200,1\n11201,1\n11202,1\n11203,1\n11204,1\n11205,1\n11206,1\n11207,1\n11208,1\n11209,1\n11210,1\n11211,1\n11212,1\n11213,1\n11214,1\n11215,1\n11216,1\n11217,1\n11218,1\n11219,1\n11220,1\n11221,1\n11222,1\n11223,1\n11224,1\n11225,1\n11226,1\n11227,1\n11228,1\n11229,1\n11230,1\n11231,1\n11232,1\n11233,1\n11234,1\n11235,1\n11236,1\n11237,1\n11238,1\n11239,1\n11240,1\n11241,1\n11242,1\n11243,1\n11244,1\n11245,1\n11246,1\n11247,1\n11248,1\n11249,1\n11250,1\n11251,1\n11252,1\n11253,1\n11254,1\n11255,1\n11256,1\n11257,1\n11258,1\n11259,1\n11260,1\n11261,1\n11262,1\n11263,1\n11264,1\n11265,1\n11266,1\n11267,1\n11268,1\n11269,1\n11270,1\n11271,1\n11272,1\n11273,1\n11274,1\n11275,1\n11276,1\n11277,1\n11278,1\n11279,1\n11280,1\n11281,1\n11282,1\n11283,1\n11284,1\n11285,1\n11286,1\n11287,1\n11288,1\n11289,1\n11290,1\n11291,1\n11292,1\n11293,1\n11294,1\n11295,1\n11296,1\n11297,1\n11298,1\n11299,1\n11300,1\n11301,1\n11302,1\n11303,1\n11304,1\n11305,1\n11306,1\n11307,1\n11308,1\n11309,1\n11310,1\n11311,1\n11312,1\n11313,1\n11314,1\n11315,1\n11316,1\n11317,1\n11318,1\n11319,1\n11320,1\n11321,1\n11322,1\n11323,1\n11324,1\n11325,1\n11326,1\n11327,1\n11328,1\n11329,1\n11330,1\n11331,1\n11332,1\n11333,1\n11334,1\n11335,1\n11336,1\n11337,1\n11338,1\n11339,1\n11340,1\n11341,1\n11342,1\n11343,1\n11344,1\n11345,1\n11346,1\n11347,1\n11348,1\n11349,1\n11350,1\n11351,1\n11352,1\n11353,1\n11354,1\n11355,1\n11356,1\n11357,1\n11358,1\n11359,1\n11360,1\n11361,1\n11362,1\n11363,1\n11364,1\n11365,1\n11366,1\n11367,1\n11368,1\n11369,1\n11370,1\n11371,1\n11372,1\n11373,1\n11374,1\n11375,1\n11376,1\n11377,1\n11378,1\n11379,1\n11380,1\n11381,1\n11382,1\n11383,1\n11384,1\n11385,1\n11386,1\n11387,1\n11388,1\n11389,1\n11390,1\n11391,1\n11392,1\n11393,1\n11394,1\n11395,1\n11396,1\n11397,1\n11398,1\n11399,1\n11400,1\n11401,1\n11402,1\n11403,1\n11404,1\n11405,1\n11406,1\n11407,1\n11408,1\n11409,1\n11410,1\n11411,1\n11412,1\n11413,1\n11414,1\n11415,1\n11416,1\n11417,1\n11418,1\n11419,1\n11420,1\n11421,1\n11422,1\n11423,1\n11424,1\n11425,1\n11426,1\n11427,1\n11428,1\n11429,1\n11430,1\n11431,1\n11432,1\n11433,1\n11434,1\n11435,1\n11436,1\n11437,1\n11438,1\n11439,1\n11440,1\n11441,1\n11442,1\n11443,1\n11444,1\n11445,1\n11446,1\n11447,1\n11448,1\n11449,1\n11450,1\n11451,1\n11452,1\n11453,1\n11454,1\n11455,1\n11456,1\n11457,1\n11458,1\n11459,1\n11460,1\n11461,1\n11462,1\n11463,1\n11464,1\n11465,1\n11466,1\n11467,1\n11468,1\n11469,1\n11470,1\n11471,1\n11472,1\n11473,1\n11474,1\n11475,1\n11476,1\n11477,1\n11478,1\n11479,1\n11480,1\n11481,1\n11482,1\n11483,1\n11484,1\n11485,1\n11486,1\n11487,1\n11488,1\n11489,1\n11490,1\n11491,1\n11492,1\n11493,1\n11494,1\n11495,1\n11496,1\n11497,1\n11498,1\n11499,1\n11500,1\n11501,1\n11502,1\n11503,1\n11504,1\n11505,1\n11506,1\n11507,1\n11508,1\n11509,1\n11510,1\n11511,1\n11512,1\n11513,1\n11514,1\n11515,1\n11516,1\n11517,1\n11518,1\n11519,1\n11520,1\n11521,1\n11522,1\n11523,1\n11524,1\n11525,1\n11526,1\n11527,1\n11528,1\n11529,1\n11530,1\n11531,1\n11532,1\n11533,1\n11534,1\n11535,1\n11536,1\n11537,1\n11538,1\n11539,1\n11540,1\n11541,1\n11542,1\n11543,1\n11544,1\n11545,1\n11546,1\n11547,1\n11548,1\n11549,1\n11550,1\n11551,1\n11552,1\n11553,1\n11554,1\n11555,1\n11556,1\n11557,1\n11558,1\n11559,1\n11560,1\n11561,1\n11562,1\n11563,1\n11564,1\n11565,1\n11566,1\n11567,1\n11568,1\n11569,1\n11570,1\n11571,1\n11572,1\n11573,1\n11574,1\n11575,1\n11576,1\n11577,1\n11578,1\n11579,1\n11580,1\n11581,1\n11582,1\n11583,1\n11584,1\n11585,1\n11586,1\n11587,1\n11588,1\n11589,1\n11590,1\n11591,1\n11592,1\n11593,1\n11594,1\n11595,1\n11596,1\n11597,1\n11598,1\n11599,1\n11600,1\n11601,1\n11602,1\n11603,1\n11604,1\n11605,1\n11606,1\n11607,1\n11608,1\n11609,1\n11610,1\n11611,1\n11612,1\n11613,1\n11614,1\n11615,1\n11616,1\n11617,1\n11618,1\n11619,1\n11620,1\n11621,2\n11622,1\n11623,2\n11624,1\n11625,1\n11626,2\n11627,1\n11628,2\n11629,1\n11630,1\n11631,1\n11632,1\n11633,1\n11634,1\n11635,1\n11636,1\n11637,1\n11638,1\n11639,1\n11640,1\n11641,1\n11642,1\n11643,1\n11644,1\n11645,1\n11646,1\n11647,1\n11648,1\n11649,1\n11650,1\n11651,1\n11652,1\n11653,1\n11654,1\n11655,1\n11656,1\n11657,1\n11658,1\n11659,1\n11660,1\n11661,1\n11662,1\n11663,1\n11664,1\n11665,1\n11666,1\n11667,1\n11668,1\n11669,1\n11670,1\n11671,1\n11672,1\n11673,1\n11674,1\n11675,1\n11676,1\n11677,1\n11678,1\n11679,1\n11680,1\n11681,1\n11682,1\n11683,1\n11684,1\n11685,1\n11686,1\n11687,1\n11688,1\n11689,1\n11690,1\n11691,1\n11692,1\n11693,1\n11694,1\n11695,1\n11696,1\n11697,1\n11698,1\n11699,1\n11700,1\n11701,1\n11702,1\n11703,1\n11704,1\n11705,1\n11706,1\n11707,1\n11708,1\n11709,1\n11710,1\n11711,1\n11712,1\n11713,1\n11714,1\n11715,1\n11716,1\n11717,1\n11718,1\n11719,1\n11720,1\n11721,1\n11722,1\n11723,1\n11724,1\n11725,1\n11726,1\n11727,1\n11728,1\n11729,1\n11730,1\n11731,1\n11732,1\n11733,1\n11734,1\n11735,1\n11736,1\n11737,1\n11738,1\n11739,1\n11740,1\n11741,1\n11742,1\n11743,1\n11744,1\n11745,1\n11746,1\n11747,1\n11748,1\n11749,1\n11750,1\n11751,1\n11752,1\n11753,1\n11754,1\n11755,1\n11756,1\n11757,1\n11758,1\n11759,1\n11760,1\n11761,1\n11762,1\n11763,1\n11764,1\n11765,1\n11766,1\n11767,1\n11768,1\n11769,1\n11770,1\n11771,1\n11772,1\n11773,1\n11774,1\n11775,1\n11776,1\n11777,1\n11778,1\n11779,1\n11780,1\n11781,1\n11782,1\n11783,1\n11784,1\n11785,1\n11786,1\n11787,1\n11788,1\n11789,1\n11790,1\n11791,1\n11792,1\n11793,1\n11794,1\n11795,1\n11796,1\n11797,1\n11798,2\n11799,1\n11800,1\n11801,1\n11802,1\n11803,1\n11804,1\n11805,1\n11806,1\n11807,1\n11808,1\n11809,1\n11810,1\n11811,1\n11812,1\n11813,1\n11814,1\n11815,1\n11816,1\n11817,1\n11818,1\n11819,1\n11820,1\n11821,1\n11822,1\n11823,1\n11824,1\n11825,1\n11826,1\n11827,1\n11828,1\n11829,1\n11830,1\n11831,1\n11832,1\n11833,1\n11834,1\n11835,1\n11836,1\n11837,1\n11838,1\n11839,1\n11840,1\n11841,1\n11842,1\n11843,1\n11844,1\n11845,1\n11846,1\n11847,1\n11848,1\n11849,1\n11850,1\n11851,1\n11852,1\n11853,1\n11854,1\n11855,1\n"
  },
  {
    "path": "a2/utils/datasets/stanfordSentimentTreebank/original_rt_snippets.txt",
    "content": "The Rock is destined to be the 21st Century's new ``Conan'' and that he's going to make a splash even greater than Arnold Schwarzenegger, Jean-Claud Van Damme or Steven Segal.\nThe gorgeously elaborate continuation of ``The Lord of the Rings'' trilogy is so huge that a column of words cannot adequately describe co-writer/director Peter Jackson's expanded vision of J.R.R. Tolkien's Middle-earth.\nEffective but too-tepid biopic\nIf you sometimes like to go to the movies to have fun, Wasabi is a good place to start.\nEmerges as something rare, an issue movie that's so honest and keenly observed that it doesn't feel like one.\nThe film provides some great insight into the neurotic mindset of all comics -- even those who have reached the absolute top of the game.\nOffers that rare combination of entertainment and education.\nPerhaps no picture ever made has more literally showed that the road to hell is paved with good intentions.\nSteers turns in a snappy screenplay that curls at the edges; it's so clever you want to hate it. But he somehow pulls it off.\nTake Care of My Cat offers a refreshingly different slice of Asian cinema.\nThis is a film well worth seeing, talking and singing heads and all.\nWhat really surprises about Wisegirls is its low-key quality and genuine tenderness.\n(Wendigo is) why we go to the cinema: to be fed through the eye, the heart, the mind.\nOne of the greatest family-oriented, fantasy-adventure movies ever.\nUltimately, it ponders the reasons we need stories so much.\nAn utterly compelling 'who wrote it' in which the reputation of the most famous author who ever lived comes into question.\nIlluminating if overly talky documentary.\nA masterpiece four years in the making.\nThe movie's ripe, enrapturing beauty will tempt those willing to probe its inscrutable mysteries.\nOffers a breath of the fresh air of true sophistication.\nA thoughtful, provocative, insistently humanizing film.\nWith a cast that includes some of the top actors working in independent film, Lovely & Amazing involves us because it is so incisive, so bleakly amusing about how we go about our lives.\nA disturbing and frighteningly evocative assembly of imagery and hypnotic music composed by Philip Glass.\nNot for everyone, but for those with whom it will connect, it's a nice departure from standard moviegoing fare.\nScores a few points for doing what it does with a dedicated and good-hearted professionalism.\nOccasionally melodramatic, it's also extremely effective.\nAn idealistic love story that brings out the latent 15-year-old romantic in everyone.\nAt about 95 minutes, Treasure Planet maintains a brisk pace as it races through the familiar story. However, it lacks grandeur and that epic quality often associated with Stevenson's tale as well as with earlier Disney efforts.\nIt helps that Lil Bow Wow ... tones down his pint-sized gangsta act to play someone who resembles a real kid.\nGuaranteed to move anyone who ever shook, rattled, or rolled.\nA masterful film from a master filmmaker, unique in its deceptive grimness, compelling in its fatalist worldview.\nLight, cute and forgettable.\nIf there's a way to effectively teach kids about the dangers of drugs, I think it's in projects like the (unfortunately R-rated) Paid.\nWhile it would be easy to give Crush the new title of Two Weddings and a Funeral, it's a far more thoughtful film than any slice of Hugh Grant whimsy.\nThough everything might be literate and smart, it never took off and always seemed static.\nCantet perfectly captures the hotel lobbies, two-lane highways, and roadside cafes that permeate Vincent's days\nMs. Fulford-Wierzbicki is almost spooky in her sulky, calculating Lolita turn.\nThough it is by no means his best work, Laissez-Passer is a distinguished and distinctive effort by a bona-fide master, a fascinating film replete with rewards to be had by all willing to make the effort to reap them.\nLike most Bond outings in recent years, some of the stunts are so outlandish that they border on being cartoonlike. A heavy reliance on CGI technology is beginning to creep into the series.\nNewton draws our attention like a magnet, and acts circles around her better known co-star, Mark Wahlberg.\nThe story loses its bite in a last-minute happy ending that's even less plausible than the rest of the picture. Much of the way, though, this is a refreshingly novel ride.\nFuller would surely have called this gutsy and at times exhilarating movie a great yarn.\nThe film makes a strong case for the importance of the musicians in creating the Motown sound.\nKarmen moves like rhythm itself, her lips chanting to the beat, her long, braided hair doing little to wipe away the jeweled beads of sweat.\nGosling provides an amazing performance that dwarfs everything else in the film.\nA real movie, about real people, that gives us a rare glimpse into a culture most of us don't know.\nTender yet lacerating and darkly funny fable.\nMay be spoofing an easy target -- those old '50's giant creature features -- but ... it acknowledges and celebrates their cheesiness as the reason why people get a kick out of watching them today.\nAn engaging overview of Johnson's eccentric career.\nIn its ragged, cheap and unassuming way, the movie works.\nSome actors have so much charisma that you'd be happy to listen to them reading the phone book. Hugh Grant and Sandra Bullock are two such likeable actors.\nSandra Nettelbeck beautifully orchestrates the transformation of the chilly, neurotic, and self-absorbed Martha as her heart begins to open.\nBehind the snow games and lovable Siberian huskies (plus one sheep dog), the picture hosts a parka-wrapped dose of heart.\nEverytime you think Undercover Brother has run out of steam, it finds a new way to surprise and amuse.\nManages to be original, even though it rips off many of its ideas.\nSinger/composer Bryan Adams contributes a slew of songs -- a few potential hits, a few more simply intrusive to the story -- but the whole package certainly captures the intended, er, spirit of the piece.\nYou'd think by now America would have had enough of plucky British eccentrics with hearts of gold. Yet the act is still charming here.\nWhether or not you're enlightened by any of Derrida's lectures on ``the other'' and ``the self,'' Derrida is an undeniably fascinating and playful fellow.\nA pleasant enough movie, held together by skilled ensemble actors.\nThis is the best American movie about troubled teens since 1998's Whatever.\nDisney has always been hit-or-miss when bringing beloved kids' books to the screen...Tuck Everlasting is a little of both.\nJust the labour involved in creating the layered richness of the imagery in this chiaroscuro of madness and light is astonishing.\nThe animated subplot keenly depicts the inner struggles of our adolescent heroes - insecure, uncontrolled, and intense.\nThe invincible Werner Herzog is alive and well and living in LA\nMorton is a great actress portraying a complex character, but Morvern Callar grows less compelling the farther it meanders from its shocking start.\nPart of the charm of Satin Rouge is that it avoids the obvious with humour and lightness.\nSon of the Bride may be a good half-hour too long but comes replete with a flattering sense of mystery and quietness.\nA simmering psychological drama in which the bursts of sudden violence are all the more startling for the slow buildup that has preceded them.\nA taut, intelligent psychological drama.\nA truly moving experience, and a perfect example of how art -- when done right -- can help heal, clarify, and comfort.\nThis delicately observed story, deeply felt and masterfully stylized, is a triumph for its maverick director.\nAt heart the movie is a deftly wrought suspense yarn whose richer shadings work as coloring rather than substance.\nThe appearance of Treebeard and Gollum's expanded role will either have you loving what you're seeing, or rolling your eyes. I loved it! Gollum's 'performance' is incredible!\na screenplay more ingeniously constructed than ``Memento''\nIf this movie were a book, it would be a page-turner, you can't wait to see what happens next.\nHaneke challenges us to confront the reality of sexual aberration.\nAbsorbing and disturbing -- perhaps more disturbing than originally intended -- but a little clarity would have gone a long way.\nIt's the best film of the year so far, the benchmark against which all other Best Picture contenders should be measured.\nPainful to watch, but viewers willing to take a chance will be rewarded with two of the year's most accomplished and riveting film performances.\nThis is a startling film that gives you a fascinating, albeit depressing view of Iranian rural life close to the Iraqi border.\nA few artsy flourishes aside, Narc is as gritty as a movie gets these days.\nWhile The Isle is both preposterous and thoroughly misogynistic, its vistas are incredibly beautiful to look at.\nTogether, Tok and O orchestrate a buoyant, darkly funny dance of death. In the process, they demonstrate that there's still a lot of life in Hong Kong cinema.\nDirector Kapur is a filmmaker with a real flair for epic landscapes and adventure, and this is a better film than his earlier English-language movie, the overpraised Elizabeth.\nThe movie is a blast of educational energy, as bouncy animation and catchy songs escort you through the entire 85 minutes.\nA sports movie with action that's exciting on the field and a story you care about off it.\nDoug Liman, the director of Bourne, directs the traffic well, gets a nice wintry look from his locations, absorbs us with the movie's spycraft and uses Damon's ability to be focused and sincere.\nThe tenderness of the piece is still intact.\nKatz uses archival footage, horrifying documents of lynchings, still photographs and charming old reel-to-reel recordings of Meeropol entertaining his children to create his song history, but most powerful of all is the song itself\nLike the film's almost anthropologically detailed realization of early-'80s suburbia, it's significant without being overstated.\nWhile McFarlane's animation lifts the film firmly above the level of other coming-of-age films ... it's also so jarring that it's hard to get back into the boys' story.\nIf nothing else, this movie introduces a promising, unusual kind of psychological horror.\nIn a normal screen process, these bromides would be barely enough to sustain an interstitial program on the Discovery Channel. But in Imax 3-D, the clichés disappear into the vertiginous perspectives opened up by the photography.\nWriter-director Burger imaginatively fans the embers of a dormant national grief and curiosity that has calcified into chronic cynicism and fear.\n...a roller-coaster ride of a movie\nI enjoyed Time of Favor while I was watching it, but I was surprised at how quickly it faded from my memory.\nChicago is sophisticated, brash, sardonic, completely joyful in its execution.\nSteve Irwin's method is Ernest Hemmingway at accelerated speed and volume.\nA refreshing Korean film about five female high school friends who face an uphill battle when they try to take their relationships into deeper waters.\nOn the surface, it's a lovers-on-the-run crime flick, but it has a lot in common with Piesiewicz's and Kieslowski's earlier work, films like The Double Life of Veronique.\nThe values that have held the Enterprise crew together through previous adventures and perils do so again-courage, self-sacrifice and patience under pressure.\nIf it's possible for a sequel to outshine the original, then SL2 does just that.\nA romantic comedy that operates by the rules of its own self-contained universe.\n4 friends, 2 couples, 2000 miles, and all the Pabst Blue Ribbon beer they can drink - it's the ultimate redneck road-trip.\nThe film is often filled with a sense of pure wonderment and excitement not often seen in today's cinema du sarcasm\nIt might be tempting to regard Mr. Andrew and his collaborators as oddballs, but Mr. Earnhart's quizzical, charming movie allows us to see them, finally, as artists.\nA feel-good picture in the best sense of the term.\nEdited and shot with a syncopated style mimicking the work of his subjects, Pray turns the idea of the documentary on its head, making it rousing, invigorating fun lacking any MTV puffery.\nA mostly intelligent, engrossing and psychologically resonant suspenser.\nIt's this memory-as-identity obviation that gives Secret Life its intermittent unease, reaffirming that long-held illusions are indeed reality, and that erasing them recasts the self.\nHip-hop has a history, and it's a metaphor for this love story.\nIn scope, ambition and accomplishment, Children of the Century ... takes Kurys' career to a whole new level.\nThis may not have the dramatic gut-wrenching impact of other Holocaust films, but it's a compelling story, mainly because of the way it's told by the people who were there.\nBetween the drama of Cube?s personal revelations regarding what the shop means in the big picture, iconic characters gambol fluidly through the story, with charming results.\nA gentle, compassionate drama about grief and healing.\nSomewhere short of Tremors on the modern B-scene: neither as funny nor as clever, though an agreeably unpretentious way to spend ninety minutes.\nDigital-video documentary about stand-up comedians is a great glimpse into a very different world.\nUnlike most teen flicks, Swimming takes its time to tell its story, casts mostly little-known performers in key roles, and introduces some intriguing ambiguity.\nAn enthralling, playful film that constantly frustrates our desire to know the 'truth' about this man, while deconstructing the very format of the biography in a manner that Derrida would doubtless give his blessing to.\n``Extreme Ops'' exceeds expectations. Good fun, good action, good acting, good dialogue, good pace, good cinematography.\nYou Should Pay Nine Bucks for This: Because you can hear about suffering Afghan refugees on the news and still be unaffected. Dramas like this make it human.\nA thunderous ride at first, quiet cadences of pure finesse are few and far between; their shortage dilutes the potency of otherwise respectable action. Still, this flick is fun, and host to some truly excellent sequences.\nIt's obviously struck a responsive chord with many South Koreans, and should work its magic in other parts of the world.\nRun, don't walk, to see this barbed and bracing comedy on the big screen.\nA classy item by a legend who may have nothing left to prove but still has the chops and drive to show how its done.\nIt is nature against progress. In Fessenden's horror trilogy, this theme has proved important to him and is especially so in the finale.\nIt's not exactly a gourmet meal but the fare is fair, even coming from the drive-thru.\nThis is what IMAX was made for: Strap on a pair of 3-D goggles, shut out the real world, and take a vicarious voyage to the last frontier -- space.\nMerely as a technical, logistical feat, Russian Ark marks a cinematic milestone.\n(Schweiger is) talented and terribly charismatic, qualities essential to both movie stars and social anarchists.\nIt's a great deal of sizzle and very little steak. But what spectacular sizzle it is!...In this incarnation its fizz is infectious.\nAn original gem about an obsession with time.\nIt will delight newcomers to the story and those who know it from bygone days.\nGloriously goofy (and gory) midnight movie stuff.\nThe film overcomes the regular minefield of coming-of-age cliches with potent doses of honesty and sensitivity.\nIf your senses haven't been dulled by slasher films and gorefests, if you're a connoisseur of psychological horror, this is your ticket.\nIt's a minor comedy that tries to balance sweetness with coarseness, while it paints a sad picture of the singles scene.\nIt is intensely personal and yet -- unlike Quills -- deftly shows us the temper of the times.\nAs lo-fi as the special effects are, the folks who cobbled Nemesis together indulge the force of humanity over hardware in a way that George Lucas has long forgotten.\nLike Mike doesn't win any points for originality. It does succeed by following a feel-good formula with a winning style, and by offering its target audience of urban kids some welcome role models and optimism.\nIt's a hoot and a half, and a great way for the American people to see what a candidate is like when he's not giving the same 15-cent stump speech.\nFar from perfect, but its heart is in the right place...innocent and well-meaning.\nA sad, superior human comedy played out on the back roads of life.\nWaydowntown is by no means a perfect film, but its boasts a huge charm factor and smacks of originality.\nTim Allen is great in his role but never hogs the scenes from his fellow cast, as there are plenty of laughs and good lines for everyone in this comedy.\nMore a load of enjoyable, Conan-esque claptrap than the punishing, special-effects soul assaults the Mummy pictures represent.\nEnormously likable, partly because it is aware of its own grasp of the absurd.\nHere's a British flick gleefully unconcerned with plausibility, yet just as determined to entertain you.\nIt's an old story, but a lively script, sharp acting and partially animated interludes make Just a Kiss seem minty fresh.\nMust be seen to be believed.\nRay Liotta and Jason Patric do some of their best work in their underwritten roles, but don't be fooled: Nobody deserves any prizes here.\nEverything that has to do with Yvan and Charlotte, and everything that has to do with Yvan's rambunctious, Jewish sister and her non-Jew husband, feels funny and true.\nThe year's happiest surprise, a movie that deals with a real subject in an always surprising way.\nFans of Behan's work and of Irish movies in general will be rewarded by Borstal Boy.\nIts mysteries are transparently obvious, and it's too slowly paced to be a thriller. (But it's) worth recommending because of two marvelous performances by Michael Caine and Brendan Fraser.\nThe film is faithful to what one presumes are the book's twin premises -- that we become who we are on the backs of our parents, but we have no idea who they were at our age; and that time is a fleeting and precious commodity no matter how old you are.\nStephen Earnhart's homespun documentary Mule Skinner Blues has nothing but love for its posse of trailer park denizens.\nA solidly seaworthy chiller.\nIf you can get past the fantastical aspects and harsh realities of ``The Isle'' you'll get a sock-you-in-the-eye flick that is a visual tour-de-force and a story that is unlike any you will likely see anywhere else.\nThere are as many misses as hits, but ultimately, it finds humor in the foibles of human behavior, and it's a welcome return to the roots of a genre that should depend on surprises.\nA well-made thriller with a certain level of intelligence and non-reactionary morality.\nThere's enough science to make it count as educational, and enough beauty to make it unforgettable.\nRemains a solid, if somewhat heavy-handed, account of the near-disaster...done up by Howard with a steady, if not very imaginative, hand.\nMakmalbaf follows a resolutely realistic path in this uncompromising insight into the harsh existence of the Kurdish refugees of Iran's borderlands.\nFor a good chunk of its running time, Trapped is an effective and claustrophobic thriller.\nMost of Crush is a clever and captivating romantic comedy with a welcome pinch of tartness.\nNair does capture the complexity of a big family and its trials and tribulations...\nThe seaside splendor and shallow, beautiful people are nice to look at while you wait for the story to get going.\nRare is the 'urban comedy' that even attempts the insight and honesty of this disarming indie.\nRanks among Willams' best screen work.\nEngagingly captures the maddening and magnetic ebb and flow of friendship.\nAn experience so engrossing it is like being buried in a new environment.\nIt's traditional moviemaking all the way, but it's done with a lot of careful period attention as well as some very welcome wit.\nMaybe it's just because this past year has seen the release of some of the worst film comedies in decades ... But honestly, Analyze That really isn't all that bad.\nA droll, well-acted, character-driven comedy with unexpected deposits of feeling.\nThis is simply the most fun you'll ever have with a documentary!\nA very funny movie.\nWatching Haneke's film is, aptly enough, a challenge and a punishment. But watching Huppert, a great actress tearing into a landmark role, is riveting.\nA cop story that understands the medium amazingly well.\nBritney has been delivered to the big screen safe and sound, the way we like our 20-year-old superstar girls to travel on the fame freeway.\nThose outside show business will enjoy a close look at people they don't really want to know.\nThe kind of nervous film that will either give you a mild headache or exhilarate you.\nWatching Beanie and his gang put together his slasher video from spare parts and borrowed materials is as much fun as it must have been for them to make it.\nChildren may not understand everything that happens -- I'm not sure even Miyazaki himself does -- but they will almost certainly be fascinated, and undoubtedly delighted.\nA fascinating and fun film.\nTadpole is a sophisticated, funny and good-natured treat, slight but a pleasure.\nThis insightful, Oscar-nominated documentary, in which children on both sides of the ever-escalating conflict have their say away from watchful parental eyes, gives peace yet another chance.\nI admired this work a lot.\nWhether you're moved and love it, or bored or frustrated by the film, you'll still feel something.\n...there are enough moments of heartbreaking honesty to keep one glued to the screen.\nMy goodness, Queen Latifah has a lot to offer and she seemed to have no problem flaunting her natural gifts. She must have a very strong back.\nA smart, sweet and playful romantic comedy.\nAustralian actor/director John Polson and award-winning English cinematographer Giles Nuttgens make a terrific effort at disguising the obvious with energy and innovation.\nWithout heavy-handedness, Dong provides perspective with his intelligent grasp of human foibles and contradictions.\nSolid, lump-in-the-throat family entertainment that derives its power by sticking to the facts.\nAs an entertainment, the movie keeps you diverted and best of all, it lightens your wallet without leaving a sting.\nIt is interesting and fun to see Goodall and her chimpanzees on the bigger-than-life screen.\nIt won't bust your gut -- and it's not intended to -- it's merely a blandly cinematic surgical examination of what makes a joke a joke.\nA somewhat crudely constructed but gripping, questing look at a person so racked with self-loathing, he becomes an enemy to his own race.\nIt extends the writings of Jean Genet and John Rechy, the films of Fassbinder, perhaps even the nocturnal works of Goya.\nNarc may not get an 'A' for originality, but it wears its B-movie heritage like a badge of honor.\nWith the film's striking ending, one realizes that we have a long way to go before we fully understand all the sexual permutations involved.\n(Drumline) is entertaining for what it does, and admirable for what it doesn't do.\nAt its best early on as it plays the culture clashes between the brothers.\nAn unabashedly schmaltzy and thoroughly enjoyable true story.\nA thoughtful look at a painful incident that made headlines in 1995.\nYou walk out of The Good Girl with mixed emotions -- disapproval of Justine combined with a tinge of understanding for her actions.\nTsai Ming-liang has taken his trademark style and refined it to a crystalline point.\nPurely propaganda, a work of unabashed hero worship, it is nonetheless -- and likely inadvertently -- a timely and invaluable implicit reminder of the role that U.S. foreign policy has played in the rise of Castro.\nNow trimmed by about 20 minutes, this lavish three-year-old production has enough grandeur and scale to satisfy as grown-up escapism.\nWe get some truly unique character studies and a cross-section of Americana that Hollywood couldn't possibly fictionalize and be believed.\nThough this film can be clumsy, its ambitions are equally -- and admirably -- uncommercial.\nDaring, mesmerizing and exceedingly hard to forget.\nMoore's performance impresses almost as much as her work with Haynes in 1995's Safe.\nVisits spy-movie territory like a novel you can't put down, examines a footnote to history seldom brought to light on the screen, and keeps you guessing from first frame to last.\nAn absorbing, slice-of-depression life that touches nerves and rings true.\nMr. Parker has brilliantly updated his source and grasped its essence, composing a sorrowful and hilarious tone poem about alienated labor, or an absurdist workplace sitcom.\nThe result is something quite fresh and delightful.\nAll but the most persnickety preteens should enjoy this nonthreatening but thrilling adventure.\nDespite its many infuriating flaws -- not the least of which is Amy's self-absorbed personality -- Amy's O's honesty will win you over.\nThis is one of Polanski's best films.\nDay is not a great Bond movie, but it is a good Bond movie, which still makes it much better than your typical Bond knock-offs.\nPolished Korean political-action film is just as good -- and bad -- as Hollywood action epics. Is this progress?\nElling, portrayed with quiet fastidiousness by Per Christian Ellefsen, is a truly singular character, one whose frailties are only slightly magnified versions of the ones that vex nearly everyone.\nDenis and co-writer Michele Petin's impeccable screenplay penetrates with a rawness that that is both unflinching and tantalizing. Lead provocatuers Testud and Parmentier give superlative performances\nAn absorbing trip into the minds and motivations of people under stress as well as a keen, unsentimental look at variations on the theme of motherhood.\nI admired it, particularly that unexpected downer of an ending.\nThe passions aroused by the discord between old and new cultures are set against the strange, stark beauty of the Mideast desert, so lovingly and perceptively filmed that you can almost taste the desiccated air.\nRemarkably accessible and affecting.\nNever mind whether you buy the stuff about Barris being a CIA hit man. The kooky yet shadowy vision Clooney sustains throughout is daring, inventive and impressive.\nA triumph of art direction over narrative, but what art direction!\nBehan himself knew how to spin a tale and one can't help but think he'd appreciate this attempt to turn his life into art.\nJirí Hubac's script is a gem. His characters are engaging, intimate and the dialogue is realistic and greatly moving. The scope of the Silberstein family is large and we grow attached to their lives, full of strength, warmth and vitality..\nMoore's complex and important film is also, believe it or not, immensely entertaining, a David and Goliath story that's still very much playing itself out.\nThe additional storyline is interesting and entertaining, but it doesn't have the same magical quality as the beginning of the story. I like the new footage and still love the old stuff.\nThough Mama takes a bit too long to find its rhythm and a third-act plot development is somewhat melodramatic, its ribald humor and touching nostalgia are sure to please anyone in search of a Jules and Jim for the new millennium.\nYou might not buy the ideas. But you'll definitely want the T-shirt.\nProvides an intriguing window into the imagination and hermetic analysis of Todd Solondz.\nWindtalkers is shapelessly gratifying, the kind of movie that invites you to pick apart its faults even as you have to admit that somehow it hit you where you live.\nPresents an astute appraisal of Middle American musical torpor and the desperate struggle to escape it.\nJust what makes us happy, anyway?\nA thoughtful, moving piece that faces difficult issues with honesty and beauty.\nOne of the greatest romantic comedies of the past decade.\nYou wouldn't call The Good Girl a date movie (an anti-date movie is more like it), but when it's good, it's good and horrid.\nBenefits from a strong performance from Zhao, but it's Dong Jie's face you remember at the end.\nThis is a film brimming with detail and nuance and one that speaks volumes about the ability of the human spirit to find solace in events that could easily crush it forever.\nThe director, Steven Shainberg, has succeeded by focusing intently on his characters, making them quirky individuals rather than figures of fun.\nIt ultimately stands forth as an important chronicle of the abuses of one of Latin America's most oppressive regimes.\nThe movie has a soft, percolating magic, a deadpan suspense.\nA well-made and often lovely depiction of the mysteries of friendship.\nUsing his audience as a figurative port-of-call, Dong pulls his even-handed ideological ship to their dock for unloading, before he continues his longer journey still ahead.\n... understands that a generation defines its music as much as the music defines a generation.\nThe Transporter is as lively and as fun as it is unapologetically dumb\nAs a witness to several Greek-American weddings -- but, happily, a victim of none -- I can testify to the comparative accuracy of Ms. Vardalos' memories and insights.\nHas it ever been possible to say that Williams has truly inhabited a character? It is now.\nBy presenting an impossible romance in an impossible world, Pumpkin dares us to say why either is impossible -- which forces us to confront what's possible and what we might do to make it so.\nAn impressive debut for first-time writer-director Mark Romanek, especially considering his background is in music video.\nAn incendiary, deeply thought-provoking look at one of the most peculiar (and peculiarly venomous) bigotries in our increasingly frightening theocracy\nAll the performances are top notch and, once you get through the accents, All or Nothing becomes an emotional, though still positive, wrench of a sit.\n``its successes are also tempered with elements which prove the direct antithesis of what it gets right.''\nIt's solid and affecting and exactly as thought-provoking as it should be.\nThis is such a dazzlingly self-assured directorial debut that it's hard to know what to praise first.\nParker holds true to Wilde's own vision of a pure comedy with absolutely no meaning, and no desire to be anything but a polished, sophisticated entertainment that is in love with its own cleverness.\nMünch's genuine insight makes the film's occasional overindulgence forgivable.\nThankfully, the film, which skirts that rapidly deteriorating line between fantasy and reality ... takes a tongue-in-cheek attitude even as it pushes the Croc Hunter agenda.\nUltimately, the message of Trouble Every Day seems to be that all sexual desire disrupts life's stasis.\nIf you're like me, a sucker for a good old fashion romance and someone who shamelessly loves to eat, then Mostly Martha offers all the perfect ingredients to more than satisfy your appetite.\nThe film has just enough of everything -- re-enactments, archival footage, talking-head interviews -- and the music is simply sublime.\nThere are a few stabs at absurdist comedy ... but mostly the humor is of the sweet, gentle and occasionally cloying kind that has become an Iranian specialty.\nA wonderful character-based comedy.\nIt would be interesting to hear from the other side, but in Talk to Her, the women are down for the count.\nAn endearingly offbeat romantic comedy with a great meet-cute gimmick.\nThe unique tug-of-war with viewer expectations is undeniable, if not a pleasure in its own right.\nIt uses an old-time formula, it's not terribly original and it's rather messy -- but you just have to love the big, dumb, happy movie My Big Fat Greek Wedding.\nIt's almost impossible not to be moved by the movie's depiction of sacrifice and its stirring epilogue in post-Soviet Russia.\nWho knows what exactly Godard is on about in this film, but his words and images don't have to add up to mesmerize you.\nThe tone is balanced, reflective and reasonable.\nThe principals in this cast are all fine, but Bishop and Stevenson are standouts.\nIt could change America, not only because it is full of necessary discussion points, but because it is so accessible that it makes complex politics understandable to viewers looking for nothing but energetic entertainment.\nWhat's most striking about this largely celebratory film ... is the sense of isolation that permeates these bastions of individuality in an Ikea world.\n...if you're in a mind set for goofy comedy, the troopers will entertain with their gross outs, bawdy comedy and head games.\nSomewhat blurred, but Kinnear's performance is razor sharp.\nAs a director, Mr. Ratliff wisely rejects the temptation to make fun of his subjects.\nFor anyone who remembers the '60s or is interested in one man's response to stroke, Ram Dass: Fierce Grace is worth seeking out.\nIntriguing and beautiful film, but those of you who read the book are likely to be disappointed.\nThe New Guy does have a heart. Now, if it only had a brain.\nA savvy exploration of paranoia and insecurity in America's culture of fear.\nLegendary Irish writer Brendan Behan's memoir, Borstal Boy, has been given a loving screen transferral.\nThe film's greatest asset is how much it's not just another connect-the-dots, spy-on-the-run picture.\nThis clever caper movie has twists worthy of David Mamet and is enormous fun for thinking audiences.\nIt's one of the saddest films I have ever seen that still manages to be uplifting but not overly sentimental.\nMorton is, as usual, brilliant.\nEven with all those rough edges safely sanded down, the American Insomnia is still pretty darned good.\nI don't know precisely what to make of Steven Soderbergh's Full Frontal, though that didn't stop me from enjoying much of it.\nThe tug of war that ensues is as much a snapshot of modern China in microcosm as it is a crash course in movie mythology.\nNearly surreal, dabbling in French, this is no simple movie, and you'll be taking a risk if you choose to see it. I enjoyed the ride (bumps and all), creamy depth, and ultimate theme.\nYou could say that it's slow at times, you could say that a few of the characters act in ways that real people wouldn't, but one thing you couldn't say is that Alias Betty is predictable.\nAsia authors herself as Anna Battista, an Italian superstar and aspiring directress who just happens to be her own worst enemy.\nRoman Coppola may never become the filmmaker his Dad was, but heck – few filmmakers will. But based on CQ, I'll certainly be keeping an eye out for his next project.\nAn amusing, breezily apolitical documentary about life on the campaign trail.\nHigh on melodrama. But it's emotionally engrossing, too, thanks to strong, credible performances from the whole cast.\nFinally, a genre movie that delivers -- in a couple of genres, no less.\nIt's not so much enjoyable to watch as it is enlightening to listen to new sides of a previous reality, and to visit with some of the people who were able to make an impact in the theater world.\nSpielberg is the rare director who does not want to invite viewers to gawk at or applaud his special effects. He just wants them to be part of the action, the wallpaper of his chosen reality. Here, thankfully, they are.\nPost 9/11 the philosophical message of ``Personal Freedom First'' might not be as palatable as intended.\nHu and Liu offer natural, matter-of-fact performances that glint with sorrow, longing and love.\nThis bold and lyrical first feature from Raja Amari expands the pat notion that middle-aged women just wanna have fun into a rousing treatise of sensual empowerment.\nEasier to respect than enthuse over, Andersson's rigorous personal vision is not only distanced but distancing.\nGirls gone wild and gone civil again\n...Tunney is allowed to build an uncommonly human character, an almost real-live girl complete with trouble and hope.\nWhile this film is not in the least surprising, it is still ultimately very satisfying. Think of it as a sort of comfort food for the mind.\nClever, brutal and strangely soulful movie.\n... always remains movingly genuine.\nAn intelligent fiction about learning through cultural clash.\nWill grab your children by the imagination and amaze them and amuse them.\nA remarkable 179-minute meditation on the nature of revolution.\nThose who would follow Haneke on his creepy explorations ... are rewarded by brutal, committed performances from Huppert and Magimel.\nAn involving true story of a Chinese actor who takes up drugs and winds up in an institution--acted mostly by the actual people involved.\nHands down the year's most thought-provoking film. But it pays a price for its intricate intellectual gamesmanship.\nIt's a terrific American sports movie and Dennis Quaid is its athletic heart.\nThis is such a high-energy movie where the drumming and the marching are so excellent, who cares if the story's a little weak.\nCompelling revenge thriller, though somewhat weakened by a miscast leading lady.\nIt's amazingly perceptive in its subtle, supportive but unsentimental look at the Marks family.\nA whole lot foul, freaky and funny.\nAttal mixes comedy with a serious exploration of ego and jealousy within a seemingly serene marriage.\nThe diversity of the artists represented, both in terms of style and ethnicity, prevents the proceedings from feeling repetitious, as does the appropriately brief 40-minute running time.\nThe Pianist is a fine valedictory work for Polanski, made richer by his own experiences, making his other movies somehow richer in the bargain.\nFoster nails the role, giving a tight, focused performance illuminated by shards of feeling.\nEven if you can't pronounce ``gyro'' correctly, you'll appreciate much of Vardalos' humor, which transcends ethnic boundaries.\nIs office work really as alienating as 'Bartleby' so effectively makes it?\nFarrell ... thankfully manages to outshine the role and successfully plays the foil to Willis's world-weary colonel.\nAudiences conditioned to getting weepy over saucer-eyed, downy-cheeked moppets and their empathetic caretakers will probably feel emotionally cheated by the film's tart, sugar-free wit.\nBennett's dramatization of her personal descent into post-breakup perdition has a morbid appeal that's tough to shake.\nAn intriguing and entertaining introduction to Johnson.\nAs expected, Sayles' smart wordplay and clever plot contrivances are as sharp as ever, though they may be overshadowed by some strong performances.\nA model of what films like this should be like.\nAs Weber and Weissman demonstrate with such insight and celebratory verve, the Cockettes weren't as much about gender, sexual preference or political agitprop as they were simply a triumph of the indomitable human will to rebel, connect and create.\nYeah, these flicks are just that damn good. Isn't it great?\nAn unbelievably fun film just a leading man away from perfection.\nOver-the-top and a bit ostentatious, this is a movie that's got oodles of style and substance.\n...a poignant and powerful narrative that reveals that reading writing and arithmetic are not the only subjects to learn in life.\nNicely serves as an examination of a society in transition.\nA tender and touching drama, based on the true story of a troubled African-American's quest to come to terms with his origins, reveals the yearning we all have in our hearts for acceptance within the family circle.\nAs a randy film about sexy people in gorgeous places being pushed and pulled (literally and figuratively) by desire ... (Sex and Lucía) makes for an arousing good time.\nAbsorbing character study by André Turpin.\nCelebrated at Sundance, this slight comedy of manners has winning performances and a glossy, glib charm that's hard to beat.\nRenner's performance as Dahmer is unforgettable, deeply absorbing.\nIf no one singles out any of these performances as award-worthy, it's only because we would expect nothing less from this bunch.\nIf you love reading and/or poetry, then by all means check it out. You'll probably love it.\nThough of particular interest to students and enthusiast of international dance and world music, the film is designed to make viewers of all ages, cultural backgrounds and rhythmic ability want to get up and dance.\nEnergetic and boldly provocative.\nStar Wars is back in a major way.\nIt's a movie -- and an album -- you won't want to miss.\nIt's rare to find a film that dazzles the eye, challenges the brain, AND satisfies our lust for fast-paced action, but Minority Report delivers all that and a whole lot more.\nWhile not all transitions to adulthood are so fraught, there's much truth and no small amount of poetry in Girls Can't Swim.\nIf there's nothing fresh about Wannabes, which was written by Mr. DeMeo, who produced and directed the film with Charles A. Addessi, much of the time the movie feels authentic.\nJacquot's Tosca is a treat.\nBy the end of No Such Thing the audience, like Beatrice, has a watchful affection for the monster.\nIf you liked such movies as Notting Hill, Four Weddings And A Funeral, Bridget Jones' Diary or High Fidelity, then you won't want to miss About A Boy.\n...the gentle melding of drama and comedy makes ``What Time Is It There?'' something the true film buff will enjoy.\nRomanek keeps the film constantly taut...reflecting the character's instability with a metaphorical visual style and an unnerving, heartbeat-like score.\nI whole-heartedly recommend that everyone see this movie-- for its historical significance alone.\nHey, who else needs a shower?\nLongley has constructed a remarkably coherent, horrifically vivid snapshot of those turbulent days.\nAlthough it bangs a very cliched drum at times, this crowd-pleaser's fresh dialogue, energetic music, and good-natured spunk are often infectious.\nOften gruelling and heartbreaking to witness, but Seldahl and Wollter's sterling performances raise this far above the level of the usual maudlin disease movie.\nGo see it and enjoy.\nThe stunning, dreamlike visuals will impress even those viewers who have little patience for Euro-film pretension.\nGeorge Clooney proves he's quite a talented director and Sam Rockwell shows us he's a world-class actor with Confessions of a Dangerous Mind.\nThere's a vastness implied in Metropolis that is just breathtaking.\nMurderous Maids may well be the most comprehensive of these films and also strike closest to the truth.\nThe people in Dogtown and Z-Boys are so funny, aggressive and alive, you have to watch them because you can't wait to see what they do next.\nAs green-guts monster movies go, it's a beaut.\nAs Bundy, Michael Reilly Burke (Octopus 2: River of Fear) has just the right amount of charisma and menace.\nA deceivingly simple film, one that grows in power in retrospect.\nAna is a vivid, vibrant individual and the movie's focus upon her makes it successful and accessible.\nA slick, skillful little horror film.\nA very witty take on change, risk and romance, and the film uses humour to make its points about acceptance and growth.\n(Anderson) uses a hit-or-miss aesthetic that hits often enough to keep the film entertaining even if none of it makes a lick of sense.\nBubba Ho-Tep is a wonderful film with a bravura lead performance by Bruce Campbell that doesn't deserve to leave the building until everyone is aware of it.\ndespite the long running time, the pace never feels slack -- there's no scene that screams ``bathroom break!''\nBullock does a good job here of working against her natural likability.\nA film of precious increments artfully camouflaged as everyday activities.\nKinnear gives a tremendous performance.\nThe best movie of its kind since 'Brazil.' Lucas, take notes. This is how you use special effects.\n``Frailty'' has been written so well, that even a simple ``Goddammit!'' near the end takes on a whole other meaning.\nOne Hour Photo is an intriguing snapshot of one man and his delusions; it's just too bad it doesn't have more flashes of insight.\nKaufman creates an eerie sense of not only being there at the time of these events but the very night Matthew was killed.\nChalk it up to my adoration for both De Niro and Murphy, but I had a pretty good time with this movie - despite its myriad flaws.\nIts scenes and sensibility are all more than familiar, but it exudes a kind of nostalgic spy-movie charm and, at the same time, is so fresh and free of the usual thriller nonsense that it all seems to be happening for the first time.\nIt represents better-than-average movie-making that doesn't demand a dumb, distracted audience.\nA charming yet poignant tale of the irrevocable ties that bind.\nAn enchanting spectacular for Potter fans anxious to ride the Hogwarts Express toward a new year of magic and mischief.\nThe talents of the actors helps ``Moonlight Mile'' rise above its heart-on-its-sleeve writing.\nIt's a humble effort, but spiced with wry humor and genuine pathos, especially between Morgan and Redgrave.\nThis examination of aquatic life off the shores of the Baja California peninsula of Mexico offers an engrossing way to demonstrate the virtues of the IMAX format.\nDark and disturbing, but also surprisingly funny.\nThe movie has an avalanche of eye-popping visual effects.\nStarts off with a bang, but then fizzles like a wet stick of dynamite at the very end. It's still worth a look.\nMost impressive, though, is the film's open-ended finale that refuses to entirely close its characters' emotional wounds.\nA hip ride into hyper-time, Clockstoppers is a lively and enjoyable adventure for all ages at any time.\nGrenier is terrific, bringing an unforced, rapid-fire delivery to Toback's Heidegger- and Nietzsche-referencing dialogue.\n... a polished and relatively sincere piece of escapism.\nThe story wraps back around on itself in the kind of elegant symmetry that's rare in film today, but be warned: It's a slow slog to get there.\nThe whole cast looks to be having so much fun with the slapstick antics and silly street patois, tossing around obscure expressions like Bellini and Mullinski, that the compact 86 minutes breezes by.\n...has freaky scenes where the crew wonder if they're ghosts imagining themselves as alive. It's a sly wink to The Others without becoming a postmodern joke, made creepy by its ``men in a sardine can'' warped logic.\nLong after you leave Justine, you'll be wondering what will happen to her and wishing her the best -- whatever that might mean.\nStill pretentious and filled with subtext, but entertaining enough at 'face value' to recommend to anyone looking for something different.\nCall me a wimp, but I cried, not once, but three times in this animated sweet film.\nNotorious C.H.O. has oodles of vulgar highlights.\nAn inspiring and heart-affecting film about the desperate attempts of Vietnamese refugees living in U.S. relocation camps to keep their hopes alive in 1975.\nThe level of maturity displayed by this 33-year-old first-time feature director is astonishing, considering her inexperience and her subject matter.\nA splendid entertainment, young in spirit but accomplished in all aspects with the fullness of spirit and sense of ease that comes only with experience.\nDisney's live-action division has a history of releasing cinematic flotsam, but this is one occasion when they have unearthed a rare gem.\nIf the message seems more facile than the earlier films, the images have such a terrible beauty you may not care.\nWhether Kiss is a future cult classic or destined to be completely forgotten is open to question, but the risk-takers in the crowd should check it out and form their own opinion.\nThere are moments in this account of the life of artist Frida Kahlo that are among cinema's finest this year. Unfortunately, they're sandwiched in between the most impossibly dry account of Kahlo's life imaginable.\nThere are moments it can be heart-rending in an honest and unaffected (and gentle) way.\nStay clear of reminding yourself that it's a ``true story'' and you're likely to have one helluva time at the movies.\nThere are just enough twists in the tale to make it far more satisfying than almost any horror film in recent memory.\nThe Sundance Film Festival has become so buzz-obsessed that fans and producers descend upon Utah each January to ferret out The Next Great Thing. 'Tadpole' was one of the films so declared this year, but it's really more of The Next Pretty Good Thing.\nWorking from Elliott's memoir, Rohmer fashions the sort of delicate, articulate character- and- relationship study he's favored for decades.\nThe story feels more like a serious read, filled with heavy doses of always enticing Sayles dialogue.\nWhen it really counts ... Bloody Sunday connects on a visceral level that transcends language.\nThe crime matters less than the characters, although the filmmakers supply enough complications, close calls and double-crosses to satisfy us.\nThe actors are fantastic. They are what makes it worth the trip to the theatre.\nRanging from funny to shattering and featuring some of the year's best acting, Personal Velocity gathers plenty of dramatic momentum.\nI complain all the time about seeing the same ideas repeated in films over and over again, but The Bourne Identity proves that a fresh take is always possible.\nRecalls quiet freak-outs like L'Avventura and Repulsion.\nOnly an epic documentary could get it all down, and Spike Lee's Jim Brown: All American at long last gives its subject a movie worthy of his talents.\n...as the story congeals you feel the pieces of the Star Wars saga falling into place in a way that makes your spine tingle with revelation and excitement.\nA great comedy filmmaker knows great comedy needn't always make us laugh. Tim Story's not there yet - but 'Barbershop' shows he's on his way.\nThe movie is one of the best examples of artful Large Format filmmaking you are likely to see anytime soon.\nLends itself to the narcotizing bland (sinister, though not nearly so sinister as the biennial Disney girl movie) machinations of the biennial Disney boy movie.\nWell-written, nicely acted and beautifully shot and scored, the film works on several levels, openly questioning social mores while ensnaring the audience with its emotional pull.\nJason X has cheesy effects and a hoary plot, but its macabre, self-deprecating sense of humor makes up for a lot.\n(Taymor) utilizes the idea of making Kahlo's art a living, breathing part of the movie, often catapulting the artist into her own work. This isn't a new idea. It's been done before but never so vividly or with so much passion.\nAn impressive if flawed effort that indicates real talent.\nTwo generations within one family test boundaries in this intelligent and restrained coming-of-age drama.\nit sounds sick and twisted, but the miracle of Shainberg's film is that it truly is romance\nDisturbing and brilliant documentary.\n... mesmerizing, an eye-opening tour of modern Beijing culture in a journey of rebellion, retreat into oblivion and return.\nOne of the best examples of how to treat a subject, you're not fully aware is being examined, much like a photo of yourself you didn't know was being taken.\nNot too far below the gloss you can still feel director Denis Villeneuve's beating heart and the fondness he has for his characters.\nAs if to prove a female director can make a movie with no soft edges, Kathryn Bigelow offers no sugar-coating or interludes of lightness. Her film is unrelentingly claustrophobic and unpleasant.\n(Villeneuve) seems to realize intuitively that even morality is reduced to an option by the ultimate mysteries of life and death.\nThe result is mesmerizing -- filled with menace and squalor.\nFisher has bared his soul and confronted his own shortcomings here in a way...that feels very human and very true to life.\nIt's fun, but the code-talk will fly right over everyone's head\nBourne, Jason Bourne. He can scale a building like a super hero, he can out-stealth any agent, he'll get the girl. He's Super Spy!\nWhat makes the movie a comedy is the way it avoids the more serious emotions involved.\nThis cuddly sequel to the 1999 hit is a little more visually polished, a little funnier, and a little more madcap.\nThe pleasures of Super Troopers may be fleeting, but they'll register strongly with anybody who still retains a soft spot for precollegiate humor.\nThe film is exhilarating to watch because Sandler, liberated from the constraints of formula, reveals unexpected depths as an actor.\nA distant, even sterile, yet compulsively watchable look at the sordid life of Hogan's Heroes star Bob Crane.\nThe film delivers not just the full assault of Reno's immense wit and insight, but a time travel back to what it felt like during those unforgettably uncertain days.\nWhat might have been a predictably heartwarming tale is suffused with complexity.\nSound the trumpets: For the first time since Desperately Seeking Susan, Madonna doesn't suck as an actress.\nAlthough very much like the first movie based on J.K. Rowling's phenomenal fantasy best sellers, this second go-round possesses a quite pleasing, headlong thrust and a likably delinquent attitude.\n(``Take Care of My Cat'') is an honestly nice little film that takes us on an examination of young adult life in urban South Korea through the hearts and minds of the five principals.\nAs the story moves inexorably through its seven day timeframe, the picture becomes increasingly mesmerizing.\nMaguire is a surprisingly effective Peter/Spider-Man.\nNot a cozy or ingratiating work, but it's challenging, sometimes clever, and always interesting, and those are reasons enough to see it.\nThe film runs on equal parts of innocence and wisdom -- wisdom that comes with experience. It has fun being grown up.\nLike old myths and wonder tales spun afresh.\nRarely do films come along that are as intelligent, exuberant, and moving as Monsoon Wedding.\nOne scarcely needs the subtitles to enjoy this colorful action farce.\nQuite funny for the type of movie it is...\nIt's often infuriatingly glib and posturing, and yet it has been made with great evident care and manages to deliver up the man in a way to arouse further curiosity in even the most unknowing viewer.\nOne of (Herzog's) least inspired works.\nThis boisterous comedy serves up a cruel reminder of the fate of hundreds of thousands of Chinese, one which can only qualify as a terrible tragedy.\nElling really is about a couple of crazy guys, and it's therapeutic to laugh along with them.\nAn irresistible combination of a rousing good story set on a truly grand scale.\nThere's no denying the physically spectacular qualities of the film ... or the emotional integrity of the performances.\nFew films this year have been as resolute in their emotional nakedness.\nExquisitely acted and masterfully if preciously interwoven... (the film) addresses in a fascinating, intelligent manner the intermingling of race, politics and local commerce.\nStevenson's performance is at once clueless and fiercely committed, a volatile combination.\nThis is a very fine movie -- go see it.\nAs shaky as the plot is, Kaufman's script is still memorable for some great one-liners.\nDespite its flaws, Secretary stays in your head and makes you question your own firmly held positions.\nOne of those rare, exhilarating cinematic delights that gets even better in hindsight, as you mull over its every nuance in your mind.\nNot everything works, but the average is higher than in Mary and most other recent comedies.\nA byzantine melodrama that stimulates the higher brain functions as well as the libido.\nA sensitive and expertly acted crowd-pleaser that isn't above a little broad comedy and a few unabashedly sentimental tears.\nThe film's sharp, often mischievous sense of humor will catch some off guard...\nDoes what a fine documentary does best: It extends a warm invitation into an unfamiliar world, then illuminates it fully and allows the larger implications of the journey to sink in unobtrusively.\nAlmost every scene in this film is a gem that could stand alone, a perfectly realized observation of mood, behavior and intent.\nA psychologically rich and suspenseful moral thriller with a stellar performance by Al Pacino.\nYou won't believe much of it, but you will laugh at the audacity, at the who's who casting and the sheer insanity of it all.\nThis version's no classic like its predecessor, but its pleasures are still plentiful.\nThe Bourne Identity is what summer screen escapism used to be in the decades when it was geared more to grownups.\nProvide(s) nail-biting suspense and credible characters without relying on technology-of-the-moment technique or pretentious dialogue.\nIf it tried to do anything more, it would fail and perhaps explode, but at this level of manic whimsy, it is just about right.\nToo sincere to exploit its subjects and too honest to manipulate its audience.\nThe saturation bombing of Reggio's images and Glass' evocative music ... ultimately leaves viewers with the task of divining meaning.\nFor all its serious sense of purpose ... (it) finds a way to lay bare the tragedies of its setting with a good deal of warmth and humor.\nA depressing confirmation of everything those of us who don't object to the description ``unelected'' have suspected all along: George W. Bush is an incurious, uncharismatic, overgrown frat boy with a mean streak a mile wide.\nThis road movie gives you emotional whiplash, and you'll be glad you went along for the ride.\nSure, it's more of the same, but as the film proves, that's not always a bad thing.\nA lighthearted, feel-good film that embraces the time-honored truth that the most powerful thing in life is love.\nA bowel-curdling, heart-stopping recipe for terror.\nDaughter from Danang is a film that should be seen by all, especially those who aren't aware of, or have forgotten about the unmentioned victims of war.\nZhang Yimou delivers warm, genuine characters who lie not through dishonesty, but because they genuinely believe it's the only way to bring happiness to their loved ones.\n...breathes surprising new life into the familiar by amalgamating genres and adding true human complexity to its not-so-stock characters.\n'...both hokey and super-cool, and definitely not in a hurry, so sit back, relax and have a few laughs while the little ones get a fuzzy treat.'\nA pleasant romantic comedy.\nIt's a Count for our times.\nGreengrass has delivered an undoubted stylistic tour-de-force, and has managed elements such as sound and cinematography with skill\nSmith's point is simple and obvious -- people's homes are extensions of themselves, and particularly eccentric people have particularly eccentric living spaces -- but his subjects are charmers.\nA romantic comedy, yes, but one with characters who think and talk about their goals, and are working on hard decisions.\nVividly conveys both the pitfalls and the pleasures of over-the-top love.\n...a weak, manipulative, pencil-thin story that is miraculously able to entertain anyway.\nA pro-fat farce that overcomes much of its excessive moral baggage thanks to two appealing lead performances.\nFor the first two-thirds of this sparklingly inventive and artful, always fast and furious tale, kids will go happily along for the ride.\nMajidi's poetic love story is a ravishing consciousness-raiser, if a bit draggy at times.\nThe smartest bonehead comedy of the summer.\nEffectively feeds our senses with the chilling sights and sounds from within the camp to create a completely numbing experience.\nI love the way that it took chances and really asks you to take these great leaps of faith and pays off.\nIn his debut as a film director, Denzel Washington delivers a lean and engaging work.\nOnly two words will tell you what you know when deciding to see it: Anthony. Hopkins.\nThe movie's quiet affirmation of neighborhood values gives it an honest, lived-in glow.\nA teasing drama whose relentless good-deed/bad-deed reversals are just interesting enough to make a sinner like me pray for an even more interesting, less symmetrical, less obviously cross-shaped creation.\nHayek is stunning as Frida and...a star-making project.\nIt's both a necessary political work and a fascinating documentary...\nHilarious, acidic Brit comedy.\nAs a revenge thriller, the movie is serviceable, but it doesn't really deliver the delicious guilty pleasure of the better film versions.\nAn ironic speculation on democracy in a culture unaccustomed to it.\nIt's not life-affirming -- its vulgar and mean, but I liked it.\nSeveral degrees shy of the gross-out contests one expects from current teen fare.\nThe inherent strength of the material as well as the integrity of the filmmakers gives this coming-of-age story restraint as well as warmth.\nLed by Griffin's smartly nuanced performance and enthusiasm, the cast has a lot of fun with the material.\nTuck Everlasting achieves a delicate balance of romantic innocence and philosophical depth.\nA gentle blend of present day testimonials, surviving footage of Burstein and his family performing, historical archives, and telling stills.\nA Generation X artifact, capturing a brief era of insanity in the sports arena that surely cannot last.\nPossession is Elizabeth Barrett Browning meets Nancy Drew, and it's directed by... Neil LaBute. Hmm.\nAn uneven but intriguing drama that is part homage and part remake of the Italian masterpiece.\nWindtalkers celebrates the human spirit and packs an emotional wallop.\nHaving never been a huge fan of Dickens' 800-page novel, it surprised me how much pleasure I had watching McGrath's version.\nThe best thing the film does is to show us not only what that mind looks like, but how the creative process itself operates.\nFor all its failed connections, Divine Secrets of the Ya-Ya Sisterhood is nurturing, in a gauzy, dithering way.\nThis is pretty dicey material. But some unexpected zigs and zags help.\nThe filmmakers skillfully evoke the sense of menace that nature holds for many urban dwellers.\nThe laser-projected paintings provide a spell-casting beauty, while Russell and Dreyfus are a romantic pairing of hearts, preciously exposed as history corners them.\nYou don't have to be an especially tough grader to give a charitable B-minus to The Emperor's Club.\nThis romantic thriller is steeped in the atmosphere of wartime England, and ably captures the speech patterns, moral codes and ideals of the 1940s.\nDivine Secrets of the Ya-Ya Sisterhood may not be exactly divine, but it's definitely -- defiantly -- ya ya, what with all of those terrific songs and spirited performances.\nViewed on its own terms, Treasure Planet is better-than-average family entertainment, but true fans of the Stevenson's novel will likely prefer Disney's more faithful 1950 live-action swashbuckling classic.\nA journey through memory, a celebration of living, and a sobering rumination on fatality, classism, and ignorance.\nResourceful and ingenious entertainment.\n``Antwone Fisher'' is an earnest, by-the-numbers effort by Washington. It won't rock any boats but is solid meat-and-potatoes filmmaking.\nA historical epic with the courage of its convictions about both scope and detail.\nWe need (Moore's) noisy, cocky energy, his passion and class consciousness; we need his shticks, we need his stones.\nAlthough the editing might have been tighter, Hush! sympathetically captures the often futile lifestyle of young people in modern Japan.\n(Gai) comes closer to any actress I can remember to personifying independence in its purest and, yes, most intimidating form.\nThese are lives worth watching, paths worth following.\nIt's rather like a Lifetime special -- pleasant, sweet and forgettable.\nA moody horror/thriller elevated by deft staging and the director's well-known narrative gamesmanship.\nAs a singular character study, it's perfect. It's also the year's sweetest movie.\nA graceful, contemplative film that gradually and artfully draws us into a world where the personal and the political get fatally intertwined.\nWhile not as aggressively impressive as its American counterpart, ``In the Bedroom,'' Moretti's film makes its own, quieter observations\nThe experience of watching blobby old-school CGI animation in this superlarge format is just surreal enough to be diverting.\nTime Changer may not be the most memorable cinema session but its profound self-evaluation message about our fragile existence and the absence of spiritual guidance should at least invade an abundance of mindsets\n``The Emperor's New Clothes'' begins with a simple plan....Well, at least that's the plan.\nHaynes has so fanatically fetishized every bizarre old-movie idiosyncrasy with such monastic devotion you're not sure if you should applaud or look into having him committed.\n(Director Peter) Jackson and his crew have so steeped themselves in the majesty of Tolkien's writing that every frame produces new joys, whether you're a fan of the books or not.\nWhile the glass slipper doesn't quite fit, Pumpkin is definitely a unique modern fairytale.\nThe drama is played out with such aching beauty and truth that it brings tears to your eyes.\nAn exciting and involving rock music doc, a smart and satisfying look inside that tumultuous world.\nAn offbeat, sometimes gross and surprisingly appealing animated film about the true meaning of the holidays.\nThis version incarnates the prophetic book in a way even its exacting author might admire.\nSometimes, nothing satisfies like old-fashioned swashbuckling. And in this regard, On Guard delivers.\n... ambition is in short supply in the cinema, and Egoyan tackles his themes and explores his characters' crises with seriousness and compassion.\nAn impossible romance, but we root for the patronized Iranian lad.\nLike Dickens with his passages, McGrath crafts quite moving scenes throughout his resolutely dramatic variation on the novel.\nThere's a disreputable air about the whole thing, and that's what makes it irresistible.\nan exceedingly clever piece of cinema.another great `what you don't see' is much more terrifying than what you do see thriller, coupled with some arresting effects, incandescent tones and stupendous performances\nA carefully structured scream of consciousness that is tortured and unsettling--but unquestionably alive.\nA quietly reflective and melancholy New Zealand film about an eventful summer in a 13-year-old girl's life.\nCute, funny, heartwarming digitally animated feature film with plenty of slapstick humor for the kids, lots of in-jokes for the adults and heart enough for everyone.\nvery solid, very watchable first feature for director Peter Sheridan\na budget affair that exposes the generally sad existence of the Bedouins while providing a precious twinkle of insight into their lives.\nIt suggests the wide-ranging effects of media manipulation, from the kind of reporting that is done by the supposedly liberal media ... to the intimate and ultimately tragic heartache of maverick individuals like Hatfield and Hicks.\nWorkmanlike, maybe, but still a film with all the elements that made the other three great, scary times at the movies.\nA pleasant enough comedy that should have found a summer place.\nBranagh, in his most forceful non-Shakespeare screen performance, grounds even the softest moments in the angry revolt of his wit.\nThough the violence is far less sadistic than usual, the film is typical Miike: fast, furious and full of off-the-cuff imaginative flourishes.\nCompelling as it is exotic, Fast Runner has a plot that rivals Shakespeare for intrigue, treachery and murder.\nWhat it lacks in originality it makes up for in intelligence and B-grade stylishness.\nThe warm presence of Zhao Benshan makes the preposterous lying hero into something more than he reasonably should be.\nThis is as powerful a set of evidence as you'll ever find of why art matters, and how it can resonate far beyond museum walls and through to the most painfully marginal lives.\nDirector Rob Marshall went out gunning to make a great one.\nSkip work to see it at the first opportunity.\nBow's best moments are when he's getting busy on the basketball court because that's when he really scores.\nOffers enough playful fun to entertain the preschool set while embracing a wholesome attitude.\nIn the end, Punch-Drunk Love is one of those films that I wanted to like much more than I actually did. Sometimes, that's enough.\nAn intimate, good-humored ethnic comedy like numerous others but cuts deeper than expected.\nIce Cube holds the film together with an engaging and warm performance...\nBoth deeply weird and charmingly dear.\nAs blunt as it is in depicting child abuse, El Bola is a movie steeped in an ambiguity that lends its conflicts a symbolic resonance.\nDespite a story predictable enough to make The Sound of Music play like a nail-biting thriller, its heart is so much in the right place it is difficult to get really peeved at it.\nAn incredibly low-rent Danish film, it brings a group of people together in a sweet and charming way, if a little convenient\nIt's the cinematic equivalent of a good page-turner, and even if it's nonsense, its claws dig surprisingly deep.\nDirector Nalin Pan doesn't do much to weigh any arguments one way or the other. He simply presents his point of view that Ayurveda works. No question.\nWhat ``Empire'' lacks in depth it makes up for with its heart.\nClaude Miller airs out a tight plot with an easy pace and a focus on character drama over crime-film complications.\nWhat Full Frontal lacks in thematic coherence it largely makes up for as loosey-goosey, experimental entertainment. Still, I'm not quite sure what the point is...\nRich in detail, gorgeously shot and beautifully acted, Les Destinees is, in its quiet, epic way, daring, inventive and refreshingly unusual.\n(A) Hollywood sheen bedevils the film from the very beginning...(but) Lohman's moist, deeply emotional eyes shine through this bogus veneer...\nDo we really need a 77-minute film to tell us exactly why a romantic relationship between a 15-year-old boy and a 40-year-old woman doesn't work?\nFord deserves to be remembered at Oscar time for crafting this wonderful portrait of a conflicted soldier.\nThe film's 45-minute running time stops shy of overkill, though viewers may be more exhausted than the athletes onscreen.\nDon't expect any surprises in this checklist of teamwork cliches...\nAs adapted by Kevin Molony from Simon Leys' novel ``The Death of Napoleon'' and directed by Alan Taylor, Napoleon's journey is interesting but his Parisian rebirth is stillborn\nThe movie addresses a hungry need for PG-rated, nonthreatening family movies, but it doesn't go too much further.\nThis warm and gentle romantic comedy has enough interesting characters to fill several movies, and its ample charms should win over the most hard-hearted cynics.\nA yarn that respects the Marvel version without becoming ensnared by it.\nThis is a happy throwback to the time when cartoons were cinema's most idiosyncratic form instead of one of its most predictable.\nComplex, affecting and uniquely Almodóvar, the film evokes strong emotions and pushes viewers to question their deepest notions of moral right and wrong.\nGood ol' urban legend stuff.\nNot so much a movie as a picture book for the big screen. This isn't my favorite in the series, still I enjoyed it enough to recommend.\nIt's one of the most honest films ever made about Hollywood.\nIt is a film that will have people walking out halfway through, will encourage others to stand up and applaud, and will, undoubtedly, leave both camps engaged in a ferocious debate for years to come.\nOn its own cinematic terms, it successfully showcases the passions of both the director and novelist Byatt.\nLight, silly, photographed with colour and depth, and rather a good time.\nPray's film works well and will appeal even to those who aren't too familiar with turntablism.\nGood movie. Good actress. But if you expect light romantic comedy, good gosh, will you be shocked.\nIt has the courage to wonder about big questions with sincerity and devotion. It risks seeming slow and pretentious, because it thinks the gamble is worth the promise.\nWith youthful high spirits, Tautou remains captivating throughout Michele's religious and romantic quests, and she is backed by a likable cast.\nIt's an example of sophisticated, challenging filmmaking that stands, despite its noticeable lack of emotional heft, in welcome contrast to the indulgent dead-end experimentation of the director's previous Full Frontal.\nA very funny look at how another culture handles the process of courting and marriage.\nBut tongue-in-cheek preposterousness has always been part of For the most part Wilde's droll whimsy helps ``Being Earnest'' overcome its weaknesses and Parker's creative interference...\nMuch of the movie's charm lies in the utter cuteness of Stuart and Margolo. Their computer-animated faces are very expressive.\nThe path Ice Age follows most closely, though, is the one established by Warner Bros. giant Chuck Jones, who died a matter of weeks before the movie's release.\nAnchored by a terrific performance by Abbass, Satin Rouge shows that the idea of women's self-actualization knows few continental divides.\nAwkward but sincere and, ultimately, it wins you over.\nSmith profiles five extraordinary American homes, and because the owners seem fully aware of the uses and abuses of fame, it's a pleasure to enjoy their eccentricities.\nThough the plot is predictable, the movie never feels formulaic, because the attention is on the nuances of the emotional development of the delicate characters.\nSam Jones became a very lucky filmmaker the day Wilco got dropped from their record label, proving that one man's ruin may be another's fortune.\nGoyer's screenplay and direction are thankfully understated, and he has drawn excellent performances from his cast.\nBinoche and Magimel are perfect in these roles.\nWhen your leading ladies are a couple of screen-eating dominatrixes like Goldie Hawn and Susan Sarandon at their raunchy best, even hokum goes down easily.\nWhile Undercover Brother is definitely one for the masses, it's also full of sharp, smart satire.\nGets under the skin of a man who has just lost his wife.\nNo wonder they're talking about ``Talk to Her.'' It's astonishing.\nFor its seriousness, high literary aspirations and stunning acting, the film can only be applauded.\nLook, this is a terrific flick replete with dazzling camera-work, dancing and music.\nIt is inspirational in characterizing how people from such diverse cultures share the same human and spiritual needs.\nIt's fairly self-aware in its dumbness.\nA triumph, relentless and beautiful in its downbeat darkness.\nTailored to entertain!\nA compelling, moving film that respects its audience and its source material.\nhas a plot full of twists upon knots...and a nonstop parade of mock-Tarantino scuzbag types that starts out clever but veers into overkill.\nA work of astonishing delicacy and force.\nThe film benefits greatly from a less manic tone than its predecessor, as Cho appears to have settled comfortably into her skin.\nFor the first time in several years, Mr. Allen has surpassed himself with the magic he's spun with the Hollywood empress of Ms. Leoni's Ellie.\nIsn't quite the equal of Woo's best earlier work, but it's easily his finest American film...comes close to recapturing the brilliance of his Hong Kong films.\nThe film hinges on its performances, and both leads are up to the task.\nAn intelligent, earnest, intimate film that drops the ball only when it pauses for blunt exposition to make sure you're getting its metaphysical point.\nA modest pleasure that accomplishes its goals with ease and confidence.\nA breezy, diverting, conventional, well-acted tale of two men locked in an ongoing game of cat-and-cat.\nWhat Jackson has accomplished here is amazing on a technical level.\nAs teen movies go, ``Orange County'' is a refreshing change\nMakes S&M seem very romantic, and Maggie Gyllenhaal is a delight.\nA deliciously mordant, bitter black comedy.\nAlthough Life or Something Like It is very much in the mold of feel-good movies, the cast and director Stephen Herek's polished direction pour delightfully piquant wine from aged bottles.\nIt is risky, intelligent, romantic and rapturous from start to finish.\nThe movie sticks much closer to Hornby's drop-dead confessional tone than the film version of High Fidelity did.\nA pleasant ramble through the sort of idoosyncratic terrain that Errol Morris has often dealt with...it does possess a loose, lackadaisical charm.\n...spiced with humor ('I speak fluent flatula,' advises Denlopp after a rather, er, bubbly exchange with an alien deckhand) and witty updatings (Silver's parrot has been replaced with Morph, a cute alien creature who mimics everyone and everything around)\nThis is a raw and disturbing tale that took five years to make, and the trio's absorbing narrative is a heart-wrenching showcase indeed.\nA beautiful and haunting examination of the stories we tell ourselves to make sense of the mundane horrors of the world.\nAside from being the funniest movie of the year, Simone, Andrew Niccol's brilliant anti-Hollywood satire, has a wickedly eccentric enchantment to it.\nWatstein handily directs and edits around his screenplay's sappier elements ... and sustains Off the Hook's buildup with remarkable assuredness for a first-timer.\nJust another fish-out-of-water story that barely stays afloat.\nThere's an energy to Y Tu Mamá También. Much of it comes from the brave, uninhibited performances by its lead actors.\nIt's the kind of pigeonhole-resisting romp that Hollywood too rarely provides.\nReinforces the often forgotten fact of the world's remarkably varying human population and mindset, and its capacity to heal using creative, natural and ancient antidotes.\nYou can feel the heat that ignites this gripping tale, and the humor and humanity that root it in feeling.\nIt's hard not to be seduced by (Witherspoon's) charisma, even in this run-of-the-mill vehicle, because this girl knows how to drive it to the max.\nA movie for 11-year-old boys with sports dreams of their own and the preteen girls who worship Lil' Bow Wow.\nA refreshingly authentic coming-of-age tale.\nIf you're not into the Pokemon franchise, this fourth animated movie in four years won't convert you -- or even keep your eyes open. But fans should have fun meeting a brand-new Pokemon called Celebi.\nFrom the big giant titles of the opening credits to Elmer Bernstein's perfectly melodic score, Haynes gets just about everything right.\nWhether seen on a 10-inch television screen or at your local multiplex, the edge-of-your-seat, educational antics of Steve Irwin are priceless entertainment.\nHas a shambling charm...a cheerfully inconsequential diversion.\nFerrara directs the entire film with the kind of detachment that makes any given frame look like a family's custom-made Christmas card.\nThe movie has lots of dancing and fabulous music. There are slow and repetitive parts, but it has just enough spice to keep it interesting.\nAn incredibly clever and superbly paced caper filled with scams within scams within scams.\nThere's not much more to this adaptation of the Nick Hornby novel than charm -- effortless, pleasurable, featherweight charm.\nAs a belated nod to some neglected all-stars, Standing in the Shadows of Motown is cultural history of the best kind: informative, revealing and richly entertaining.\nEven if the ride's a little bumpy, with a final lap that's all too suspiciously smooth, you gotta give director Roger Michell, best known for the superfluous Notting Hill, credit for trying.\nNot as distinctive or even as humorous as its needs to be to stand out, but it has clearly been made with affection and care.\nThis is Carion's debut feature but his script and direction hums with a confidence that many spend entire careers trying to reach.\nAn intelligent, moving and invigorating film.\n... one of the most ingenious and entertaining thrillers I've seen in quite a long time.\nA clever blend of fact and fiction.\nA vivid cinematic portrait.\nHilarious, touching and wonderfully dyspeptic.\nTheirs is a simple and heart-warming story, full of mirth that should charm all but the most cynical.\nThe film is an enjoyable family film -- pretty much aimed at any youngster who loves horses.\nA frisky and fresh romantic comedy exporing sexual politics and the challenges of friendships between women.\nIt's a good film -- not a classic, but odd, entertaining and authentic.\nFlavorful and romantic, you could call this How Martha Got Her Groove Back -- assuming, that is, she ever had one to begin with.\nHappily for Mr. Chin -- though unhappily for his subjects -- the invisible hand of the marketplace wrote a script that no human screenwriter could have hoped to match.\nThurman and Lewis are hilarious throughout.\nthe plot is so amusingly contrived and outlandish in its coincidences that no one could ever mistake it for anything resembling reality\nHits one out of the park for the 'they don't make 'em like that anymore' department.\nIt dares to be a little different, and that shading is what makes it worthwhile.\n(Fessenden) is much more into ambiguity and creating mood than he is for on screen thrills\nThe comic performances are all spot on, especially Lee Ross's turn as Ken.\na compelling journey...and ``His Best Friend Remembers'' is up there with the finest of specials.\nAt nearly three hours, the whole of Safe Conduct is less than the sum of its parts.\nThe Hours makes you examine your own life in much the same way its characters do, and the experience is profound. The Hours is what movies are supposed to be...\nA bold and subversive film that cuts across the grain of what is popular and powerful in this high-tech age, speaking its truths with spellbinding imagery and the entrancing music of Philip Glass.\nPretty darn good, despite its smarty-pants aura.\nSo young, so smart, such talent, such a wise ***.\nWoo's fights have a distinct flair. His warriors collide in balletic explosion that implies an underlying order throughout the chaos.\nBarney has created a tour de force that is weird, wacky and wonderful.\nThe ending does leave you unfulfilled, but these are performances to enjoy in a memorable ensemble piece.\n... an agreeable time-wasting device -- but George Pal's low-tech 1960 version still rules the epochs.\nIt's a brave attempt to tap into the heartbeat of the world, a salute to the universal language of rhythm and a zippy sampling of sounds.\nOffers an unusual opportunity to observe the inequities in the death penalty, not just the inherent immorality but also the haphazard administration of it and public misperception of how the whole thing works.\nI don't think I've been as entranced and appalled by an Asian film since Shinya Tsukamoto's Iron Man.\nIt is so refreshing to see Robin Williams turn 180 degrees from the string of insultingly innocuous and sappy fiascoes he's been making for the last several years.\nDirector Benoit Jacquot, making his first opera-to-film translation with Tosca, conveys the heaving passion of Puccini's famous love-jealousy- murder-suicide fandango with great cinematic innovation.\nLilia's transformation from strict mother to sensual siren is superficially preposterous, but Abbas infuses the role with an unimpeachable core of emotional truth.\nFrida's artistic brilliance is undeniable -- it's among the most breathtakingly designed films I've ever seen.\nThe perfect film for those who like sick comedies that can be snide.\n'Charly' will divide its audience in two separate groups, those reaching for more tissues and those begging for mercy...\nNervy and sensitive, it taps into genuine artistic befuddlement, and at the same time presents a scathing indictment of what drives Hollywood.\nA marvellous journey from childhood idealism to adolescent self-absorption.\nThe film is just a big, gorgeous, mind-blowing, breath-taking mess.\nSharp, lively, funny and ultimately sobering film.\nThough the film's scenario is certainly not earthshaking, this depiction of fluctuating female sexuality has two winning lead performances and charm to spare.\nA worthy tribute to a great humanitarian and her vibrant 'co-stars.'\nA recent favourite at Sundance, this white-trash satire will inspire the affection of even those unlucky people who never owned a cassette of Def Leppard's Pyromania.\nThe recording session is the only part of the film that is enlightening -- and how appreciative you are of this depends on your level of fandom.\nOccasionally funny and consistently odd, and it works reasonably well as a star vehicle for Zhao.\nBright seems alternately amused and disgusted with this material, and he can't help throwing in a few of his own touches.\nThe 3D images only enhance the film's otherworldly quality, giving it a strange combo of you-are-there closeness with the disorienting unreality of the seemingly broken-down fourth wall of the movie screen.\nAndersson creates a world that's at once surreal and disturbingly familiar; absurd, yet tremendously sad.\nIt's predictable, but it jumps through the expected hoops with style and even some depth.\nOften hilarious, well-shot and, importantly, entertaining, Hell House is a fascinating document of an event that has to be seen to be believed.\nDe Oliveira creates an emotionally rich, poetically plump and visually fulsome, but never showy, film whose bittersweet themes are reinforced and brilliantly personified by Michel Piccoli.\n...an inviting piece of film.\nThe film's real appeal won't be to Clooney fans or adventure buffs, but to moviegoers who enjoy thinking about compelling questions with no easy answers.\nThe fact that The Rookie is a nearly impeccable cinematic experience -- and a wonderful all-ages triumph besides -- is a miracle akin to the story the film portrays.\nA deviant topical comedy which is funny from start to finish.\nA startling and fresh examination of how the bike still remains an ambiguous icon in Chinese society.\nA highly intriguing thriller, coupled with some ingenious plot devices and some lavishly built settings..it's a worthwhile tutorial in quantum physics and slash-dash\nAs Hugh Grant says repeatedly throughout the movie, 'Lovely! Brilliant!'\nCho's fearless in picking apart human foibles, not afraid to lay her life bare in front of an audience. Her delivery and timing are flawless.\nWorks because, for the most part, it avoids the stupid cliches and formulaic potholes that befall its brethren.\nAt its best, The Good Girl is a refreshingly adult take on adultery...\nAn amazing and incendiary movie that dives straight into the rough waters of contradiction.\nAbout nowhere kids who appropriated turfs as they found them and become self-made celebrity athletes -- a low-down version of the American dream.\nOccasionally, in the course of reviewing art-house obscurities and slam-bam action flicks, a jaded critic smacks into something truly new.\nA miniscule little bleep on the film radar, but one that many more people should check out\n``13 Conversations'' holds its goodwill close, but is relatively slow to come to the point.\nA slick, well-oiled machine, exquisitely polished and upholstered.\nDon't plan on the perfect ending, but Sweet Home Alabama hits the mark with critics who escaped from a small town life.\nIt has a subtle way of getting under your skin and sticking with you long after it's over.\nThe movie stays afloat thanks to its hallucinatory production design.\nIt helps that the central performers are experienced actors, and that they know their roles so well.\nA provocative movie about loss, anger, greed, jealousy, sickness and love.\nWorth the effort to watch.\nThat rara avis: the intelligent romantic comedy with actual ideas on its mind.\nBoisterous and daft documentary.\nHawke draws out the best from his large cast in beautifully articulated portrayals that are subtle and so expressive they can sustain the poetic flights in Burdette's dialogue.\nA work of the utmost subtlety and perception, it marks the outstanding feature debut of writer-director Eric Byler, who understands the power of the implicit and the virtues of simplicity and economy.\nFull Frontal is the antidote for Soderbergh fans who think he's gone too commercial since his two Oscar nominated films in 2000\nIt turns out to be a cut above the norm, thanks to some clever writing and sprightly acting.\nYou might not want to hang out with Samantha, but you'll probably see a bit of yourself in her unfinished story.\nA work of intricate elegance, literary lyricism and profound common sense.\nIt's as close as we'll ever come to looking through a photographer's viewfinder as he works.\nThoughtful, provocative and entertaining.\nWitty, touching and well paced.\nLee Jeong-Hyang tells it so lovingly and films it so beautifully that I couldn't help being captivated by it.\nYou have to pay attention to follow all the stories, but they're each interesting. The movie is well shot and very tragic, and one to ponder after the credits roll.\nEnjoy it for what it is; you can hate yourself later.\nA map of the inner rhythms of love and jealousy and sacrifice drawn with a master's steady stroke.\nA psychological thriller with a smart script and an obsessive-compulsive's attention to detail.\nGrant gets to display his cadness to perfection, but also to show acting range that may surprise some who thought light-hearted comedy was his forte.\nAt times funny and at other times candidly revealing, it's an intriguing look at two performers who put themselves out there because they love what they do.\nWestfeldt and Juergensen exude a chemistry and comfort level that's both saucy and endearing.\nHarsh, effective documentary on life in the Israeli-occupied Palestinian territories.\nThe film is all a little Lit Crit 101, but it's extremely well played and often very funny.\nEarns its laughs from stock redneck 'types' and from the many, many moments when we recognize even without the Elizabethan prose, the play behind the thing.\nA real story about real people living their lives concerned about the future of an elderly, mentally handicapped family member.\nIt's absolutely spooky how Lillard channels the Shagster right down to the original Casey Kasem-furnished voice.\nA dream cast of solid female talent who build a seamless ensemble. There isn't a weak or careless performance amongst them.\nSmart science fiction for grown-ups, with only a few false steps along the way.\nIt's a refreshing change from the self-interest and paranoia that shape most American representations of Castro.\nOften moving and explores the discomfort inherent in the contacts between the American 'hosts' and their 'guests.'\nThough the controversial Korean filmmaker's latest effort is not for all tastes, it offers gorgeous imagery, effective performances, and an increasingly unsettling sense of foreboding.\nLathan and Diggs have considerable personal charm, and their screen rapport makes the old story seem new.\nThe story may not be new, but Australian director John Polson, making his American feature debut, jazzes it up adroitly.\nIt's endearing to hear Madame D. refer to her husband as 'Jackie' -- and he does make for excellent company, not least as a self-conscious performer.\nThe film often achieves a mesmerizing poetry.\nMore than makes up for its mawkish posing by offering rousing spates of genuine feeling.\nIt's neither as romantic nor as thrilling as it should be. But it offers plenty to ponder and chew on as its unusual relationship slowly unfolds.\nOccasionally funny, always very colorful and enjoyably overblown in the traditional Almodóvar style.\nMerchant effectively translates Naipaul's lively mix of characters from the page to screen.\nSome movies are like a tasty hors-d'oeuvre; this one is a feast.\nWhat could have become just another cautionary fable is allowed to play out as a clever, charming tale – as pleasantly in its own way as its self-dramatizing characters.\nDavis has filled out his cast with appealing fresh faces.\nAchieves a sort of filmic epiphany that revels in the true potential of the medium.\nOnce you get into its rhythm ... the movie becomes a heady experience.\n``Auto Focus'' works as an unusual biopic and document of male swingers in the Playboy era\nIf Mr. Zhang's subject matter is, to some degree at least, quintessentially American, his approach to storytelling might be called Iranian.\nA fast-moving and remarkable film that appears destined to become a landmark in Japanese animation.\n...a sour little movie at its core; an exploration of the emptiness that underlay the relentless gaiety of the 1920's ...The film's ending has a ``What was it all for?'' feeling to it, but like the 1920's, the trip there is a great deal of fun.\nA worthy entry into a very difficult genre.\n(Broomfield) uncovers a story powerful enough to leave the screen sizzling with intrigue.\nEight Crazy Nights is a showcase for Sandler's many talents.\nA sweet-natured reconsideration of one of San Francisco's most vital, if least widely recognized, creative fountainheads.\nThis is one of the most visually stunning and thematically moving epics in recent memory, and in spite of numerous minor flaws, Scorsese's best in more than a decade.\nEverywhere the camera looks there is something worth seeing.\nA richly imagined and admirably mature work from a gifted director who definitely has something on his mind.\nIt's a nicely detailed world of pawns, bishops and kings, of wagers in dingy backrooms or pristine forests.\nA charming, quirky and leisurely paced Scottish comedy -- except with an outrageous central gimmick that could have been a reject from Monty Python's Meaning of Life.\nIt never fails to engage us.\nIts direction, its script, and Weaver's performance as a vaguely discontented woman of substance make for a mildly entertaining 77 minutes, if that's what you're in the mood for.\nA charming romantic comedy that is by far the lightest Dogme film and among the most enjoyable.\nThis is the kind of movie that used to be right at home at the Saturday matinee, and it still is.\nThe spark of special anime magic here is unmistakable and hard to resist.\nLike its two predecessors, 1983's Koyaanisqatsi and 1988's Powaqqatsi, the cinematic collage Naqoyqatsi could be the most navel-gazing film ever.\nBaran isn't the most transporting or gripping film from Iran -- or, indeed, by its director -- but it's a worthy companion to the many fine, focused films emerging from that most surprising of nations.\nThe visuals alone make Metropolis worth seeing.\nDark, resonant, inventively detailed and packed with fleet turns of plot and a feast of visual amazement.\nA picture that extols the virtues of comradeship and community in a spunky, spirited fashion.\nA resonant tale of racism, revenge and retribution.\nNoyce's film is contemplative and mournfully reflective.\nHere, Adrian Lyne comes as close to profundity as he is likely to get.\nEvokes a little of the fear that parents have for the possible futures of their children--and the sometimes bad choices mothers and fathers make in the interests of doing them good.\nRain is a small treasure, enveloping the viewer in a literal and spiritual torpor that is anything but cathartic.\nAn elegant, exquisitely modulated psychological thriller.\nThis concoction, so bizarre to the adult mind, is actually a charming triumph where its intended under-12 audience is concerned.\nDroll caper-comedy remake of ``Big Deal on Madonna Street'' that's a sly, amusing, laugh-filled little gem in which the ultimate ``Bellini'' begins to look like a ``real Kaputschnik.''\nIt's a beautifully accomplished lyrical meditation on a bunch of despondent and vulnerable characters living in the renown Chelsea Hotel ...\nIs it a total success? No. Is it something any true film addict will want to check out? You bet.\nZany, exuberantly irreverent animated space adventure.\nDolgin and Franco fashion a fascinating portrait of a Vietnamese-born youngster who eagerly and easily assimilated as an all-American girl with a brand new name in southern Tennessee.\nThe disarming cornball atmosphere has a way of infecting the entire crowd as the film rolls on.\nA refreshingly honest and ultimately touching tale of the sort of people usually ignored in contemporary American film. Search it out.\nEngrossing and affecting, if ultimately not quite satisfying.\nThe story, like life, refuses to be simple, and the result is a compelling slice of awkward emotions.\nA sly game of cat and mouse that's intense and thrilling at times, but occasionally stretches believability to its limits and relies on predictable plot contrivances.\nFunny and, at times, poignant, the film from director George Hickenlooper all takes place in Pasadena, ``a city where people still read.''\nThis horror-comedy doesn't go for the usual obvious laughs at the expense of cheap-looking monsters -- unless you count Elvira's hooters.\nThe movie's eventual success should be credited to Dennis Quaid, in fighting trim shape as an athlete as well as an actor\nNot a bad journey at all.\nSits uneasily as a horror picture ... but finds surprising depth in its look at the binds of a small family.\nWindtalkers blows this way and that, but there's no mistaking the filmmaker in the tall grass, true to himself.\nThere is a refreshing absence of cynicism in Stuart Little 2--quite a rarity, even in the family film market. Eventually, it wins you over.\nNoyce films it more as a shocking history lesson than as drama.\nLike a south-of-the-border Melrose Place.\nThose with an interest in new or singular sorts of film experiences will find What Time Is It There? well worth the time.\nA wildly funny prison caper.\nHuppert gives Erika a persona that is so intriguing that you find yourself staring hypnotically at her, trying to understand her and wondering if she'll crack.\nDespite what anyone believes about the goal of its makers, the show ... represents a spectacular piece of theater, and there's no denying the talent of the creative forces behind it.\nYou'll be left with the sensation of having just witnessed a great performance and, perhaps, give in to the urge to get on your feet and shake it.\nThe actors are so terrific at conveying their young angst, we do indeed feel for them.\nThe reason this picture works better than its predecessors is that Myers is no longer simply spoofing the mini-mod-madness of '60s spy movies.\nIt is a kickass, dense sci-fi action thriller hybrid that delivers and then some. I haven't seen one in so long, no wonder I didn't recognize it at first.\na compelling portrait of moral emptiness\nIn Adobo, ethnicity is not just the spice, but at the heart of more universal concerns.\nIt is ridiculous, of course... but it is also refreshing, disarming, and just outright enjoyable despite its ridiculousness.\n... Blade II is more enjoyable than the original.\nA film that takes you inside the rhythms of its subject: You experience it as you watch.\nThe movie exists for its soccer action and its fine acting.\nThe movie is saved from unbearable lightness by the simplicity of the storytelling and the authenticity of the performances.\nThe film starts out as competent but unremarkable ... and gradually grows into something of considerable power.\nNothing Denis has made before, like Beau Travil and Nenette et Boni, could prepare us for this gory, perverted, sex-soaked riff on the cannibal genre.\nReinforces the talents of screenwriter Charlie Kaufman, creator of Adaptation and Being John Malkovich.\nGreene delivers a typically solid performance in a role that is a bit of a departure from the noble characters he has played in the past, and he is matched by Schweig, who carries the film on his broad, handsome shoulders.\nFinds a way to tell a simple story, perhaps the simplest story of all, in a way that seems compelling and even original.\nA stunning piece of visual poetry that will, hopefully, be remembered as one of the most important stories to be told in Australia's film history.\nThis is art paying homage to art.\n... a joke at once flaky and resonant, lightweight and bizarrely original.\nInvincible is a wonderful movie.\n... a cute and sometimes side-splittingly funny blend of Legally Blonde and Drop Dead Gorgeous, starring Piper Perabo in what could be her breakthrough role.\nDazzling and sugar-sweet, a blast of shallow magnificence that only sex, scandal, and a chorus line of dangerous damsels can deliver.\nOccasionally amateurishly made but a winsome cast and nice dialogue keeps it going.\nJapan's premier stylist of sex and blood hits audiences with what may be his most demented film to date.\nCulkin, who's in virtually every scene, shines as a young man who uses sarcastic lies like a shield.\nCuts right through the B.S. giving a big middle-fingered ``shut up'' to those who talk up what is nothing more than two guys beating the hell outta one another.\nThe AM-radio soundtrack and game cast -- Tierney and the inimitable Walken especially -- keep this unusual comedy from choking on its own conceit.\n...does such a fine job of engulfing you in its world and allying you with its characters' choices, good and ill, that its shortcomings are remembered only as an afterthought.\nMarvelous, merry and, yes, melancholy film.\nFrom spiritual rebirth to bruising defeat, Vincent's odyssey resonates in a profound way, comparable to the classic films of Jean Renoir.\nNovak manages to capture a cruelly hilarious vein of black comedy in the situation with his cast of non-actors and a gritty, no-budget approach.\nInsomnia is involving. Still, I thought it could have been more.\nThere was time on that second round to see the subtleties of Ramsay's portrait of grief.\nWe can see the wheels turning, and we might resent it sometimes, but this is still a nice little picture, made by bright and friendly souls with a lot of good cheer.\nA comprehensive and provocative film -- one that pushes the boundaries of biography, and challenges its audience.\nThe way Coppola professes his love for movies -- both colorful pop junk and the classics that unequivocally qualify as art -- is giddily entertaining.\nA worthwhile way to spend two hours.\nFrancophiles will snicker knowingly and you'll want to slap them.\nSensitive, insightful and beautifully rendered film. One of the best of the year.\nA love for films shines through each frame and the era is recreated with obvious affection, scored to perfection with some tasty boogaloo beats.\nThrowing caution to the wind with an invitation to the hedonist in us all, Nair has constructed this motion picture in such a way that even the most cynical curmudgeon with find himself or herself smiling at one time or another.\nMakes an aborbing if arguable case for the man's greatness.\nAn endlessly fascinating, landmark movie that is as bold as anything the cinema has seen in years.\n...a haunting vision, with images that seem more like disturbing hallucinations.\nIt is not a mass-market entertainment but an uncompromising attempt by one artist to think about another.\nFrailty isn't as gory or explicit. But in its child-centered, claustrophobic context, it can be just as frightening and disturbing -- even punishing.\nMixes likeable personalities, inventive photography and cutting, and wall-to-wall toe-tapping music to paint a picture of a subculture that is at once exhilarating, silly, perverse, hopeful and always fun.\nThe long-range appeal of ``Minority Report'' should transcend any awards it bags. This is one for the ages.\n(A) superbly controlled, passionate adaptation of Graham Greene's 1955 novel.\nMuch monkeyfun for all.\nAn enchanting film that presents an audacious tour of the past and takes within its warm embrace the bounties of cultural artifacts inside St.Petersburg's Hermitage Museum.\n(Hawn's character)is so bluntly written, without a trace of sentimentality, and so blisteringly defined, that every other character seems overlooked and underwritten.\nThe heightened symmetry of this new/old Cinema Paradiso makes the film a fuller experience, like an old friend haunted by the exigencies of time.\nThe Powers team has fashioned a comedy with more laughs than many, no question. But this time there's some mold on the gold.\nWhile surprisingly sincere, this average little story is adorned with some awesome action photography and surfing.\nIt is far from the worst, thanks to the topical issues it raises, the performances of Stewart and Hardy, and that essential feature -- a decent full-on space battle.\nA film that is a portrait of grace in an imperfect world.\nA pleasurably jacked-up piece of action moviemaking.\nNicolas Philibert observes life inside a one-room schoolhouse in northern France in his documentary To Be and to Have, easily one of the best films of the year.\nA perverse little truffle, dainty psychological terror on the outside with a creamy filling of familial jealousy and unrepentant domestic psychopathy.\nThis ecologically minded, wildlife friendly film teaches good ethics while entertaining with its unconventionally wacky but loving family\nAn enjoyably half-wit remake of the venerable Italian comedy Big Deal on Madonna Street.\nIt takes this never-ending confusion and hatred, puts a human face on it, evokes shame among all who are party to it and even promotes understanding.\nReign of Fire may be little more than another platter of reheated Aliens, but it's still pretty tasty.\nThere are times when A Rumor of Angels plays like an extended episode of Touched by an Angel -- a little too much dancing, a few too many weeping scenes -- but I liked its heart and its spirit.\nTwo hours of melodramatic musical married to two hours of underdog sports intrigue, if the picture also shares the weaknesses of both genres, more's the pity.\nThis cheery, down-to-earth film is warm with the cozy feeling of relaxing around old friends.\nThrilling, provocative and darkly funny, this timely sci-fi mystery works on so many different levels that it not only invites, it demands repeated viewings.\nA tale of horror and revenge that is nearly perfect in its relentless descent to the depths of one man's tortured soul.\nAn epic of grandeur and scale that's been decades gone from the popcorn pushing sound stages of Hollywood.\nGenuinely touching because it's realistic about all kinds of love.\nLauren Ambrose comes alive under the attention from two strangers in town - with honest performances and realistic interaction between the characters, this is a coming-of-age story with a twist.\nThere has been much puzzlement among critics about what the election symbolizes. I believe the message is in the messenger: The agent is a woman.\nAn enjoyable film for the family, amusing and cute for both adults and kids.\n``The Mothman Prophecies'' is a difficult film to shake from your conscience when night falls.\nThe second chapter of the Harry Potter series is even more magical than the first and simply the best family film of the year.\nMore honest about Alzheimer's disease, I think, than Iris.\nThe acting alone is worth the price of admission.\nAn excellent romp that boasts both a heart and a mind.\nInteracting eyeball-to-eyeball and toe-to-toe, Hopkins and Norton are a winning combination -- but Fiennes steals 'Red Dragon' right from under their noses.\nThis is a terrific character study, a probe into the life of a complex man.\nImpresses you with its open-endedness and surprises.\nThis isn't a narrative film -- I don't know if it's possible to make a narrative film about September 11th, though I'm sure some will try -- but it's as close as anyone has dared to come.\nMy oh my, is this an invigorating, electric movie.\nThe two leads chomp considerably more scenery with their acting than fire-breathing monsters barbecue with their breath...\nCedar takes a very open-minded approach to this sensitive material, showing impressive control, both visually and in the writing.\nBiggie and Tupac is so single-mindedly daring, it puts far more polished documentaries to shame.\nSo many documentaries like this presuppose religious bigotry or zealous nuttiness of its antagonists, but Family Fundamentals displays a rare gift for unflinching impartiality.\nThe cast is uniformly excellent and relaxed.\nAfter making several adaptations of other writers' work, Armenian-Canadian director Atom Egoyan broached an original treatment of a deeply personal subject.\nThe film is painfully authentic, and the performances of the young players are utterly convincing.\nIf it seems like a minor miracle that its septuagenarian star is young enough to be the nonagenarian filmmaker's son, more incredible still are the clear-eyed boldness and quiet irony with which actor and director take on life's urgent questions.\nA candid and often fascinating documentary about a Pentecostal church in Dallas that assembles an elaborate haunted house each year to scare teenagers into attending services.\nFans of the animated wildlife adventure show will be in warthog heaven; others need not necessarily apply.\nWithout resorting to hyperbole, I can state that Kissing Jessica Stein may be the best same-sex romance I have seen.\nNolan bravely treads where few American films dare to delve -- into the world of ambivalence and ambiguity...\nUnlike the nauseating fictions peddled by such 'Have-yourself-a-happy-little-Holocaust' movies as Life Is Beautiful and Jakob the Liar, The Grey Zone is honest enough to deny the possibility of hope in Auschwitz.\nA potent allegorical love story.\nEven those who would like to dismiss the film outright should find much to mull and debate.\nThis is cool, slick stuff, ready to quench the thirst of an audience that misses the summer blockbusters.\nThe movie is full of fine performances, led by Josef Bierbichler as Brecht and Monica Bleibtreu as Helene Weigel, his wife.\nA captivating cross-cultural comedy of manners.\nAndy Garcia enjoys one of his richest roles in years and Mick Jagger gives his best movie performance since, well, Performance.\nThe movie isn't always easy to look at. But if it is indeed a duty of art to reflect life, than Leigh has created a masterful piece of artistry right here.\nIt's (Ricci's) best work yet, this girl-woman who sincerely believes she can thwart the world's misery with blind good will.\nHighlights are the terrific performances by Christopher Plummer, as the prime villain, and Nathan Lane as Vincent Crummles, the eccentric theater company manager.\n(Howard) so good as Leon Barlow ... that he hardly seems to be acting.\nSuperior genre storytelling, which gets under our skin simply by crossing the nuclear line.\nBy taking Entertainment Tonight subject matter and giving it humor and poignancy, Auto Focus becomes both gut-bustingly funny and crushingly depressing.\nIt's a bittersweet and lyrical mix of elements.\nSubversive, meditative, clinical and poetic, The Piano Teacher is a daring work of genius.\nThe weakest of the four Harry Potter books has been transformed into the stronger of the two films by the thinnest of margins.\nIts gross-out gags and colorful set pieces... are of course stultifyingly contrived and too stylized by half. Still, it gets the job done -- a sleepy afternoon rental.\nIt further declares its director, Zhang Yang of Shower, as a boldly experimental, contemporary stylist with a bright future.\nSmith's approach is never to tease, except gently and in that way that makes us consider our own eccentricities and how they are expressed through our homes.\nFull of profound, real-life moments that anyone can relate to, it deserves a wide audience.\nA movie that will touch the hearts of both children and adults, as well as bring audiences to the edge of their seats.\nLeave it to Rohmer, now 82, to find a way to bend current technique to the service of a vision of the past that is faithful to both architectural glories and commanding open spaces of the city as it was more than two centuries ago.\nFine acting but there is no sense of connecting the dots, just dots.\nAn extraordinary Swedish film about the soul adventure of marriage -- the kind of intimate and character-driven film that Bille August does best.\nA blessed gift to film geeks and historians. If the '70's were your idea of a good time at the movies, this will make you very happy.\nIt took 19 predecessors to get THIS?\nThoughtful, even stinging at times, and lots of fun.\nOne of the most haunting, viciously honest coming-of-age films in recent memory.\nThe WWII drama is well plotted, visually striking and filled with enjoyably complex characters who are never what they first appear.\nIt's a pleasure to see Seinfeld griping about the biz with buddies Chris Rock, Garry Shandling and Colin Quinn.\nIf you love Motown music, you'll love this documentary.\nThis time out, (Sade) is an unsettlingly familiar figure -- in turns loyal and deceitful, responsible and reckless, idealistically selfless and coldly self-interested.\nHuman Resources was a good, straightforward tale, but Time Out is better. It's haunting. It's like a poem.\nTo the film's credit, the acting is fresh and unselfconscious, and Munch is a marvel of reality versus sappy sentiment.\nChicago is, in many ways, an admirable achievement.\nShainberg weaves a carefully balanced scenario that is controlled by neither character, is weirdly sympathetic to both and manages to be tender and darkly comic.\nEven when foreign directors ... borrow stuff from Hollywood, they invariably shake up the formula and make it more interesting.\nA cockamamie tone poem pitched precipitously between swoony lyricism and violent catastrophe... the most aggressively nerve-wracking and screamingly neurotic romantic comedy in cinema history.\nSturdy, entertaining period drama ... both Caine and Fraser have their moments.\nWhether (Binoche and Magimel) are being charming or angst-ridden, they easily fill their scenes and, fine judges both, never overcook the hysteria.\nA spunky, original take on a theme that will resonate with singles of many ages.\nIt's a glorious groove that leaves you wanting more.\nMajidi gets uniformly engaging performances from his largely amateur cast.\n...a well-observed and disturbing little movie\nFans of Nijinsky will savor every minute of Cox's work.\nEverything you loved about it in 1982 is still there, for everybody who wants to be a kid again, or show it to their own kids.\nJagger the actor is someone you want to see again.\nEscapism in its purest form.\nThere is a kind of attentive concern that Hoffman brings to his characters, as if he has been giving them private lessons, and now it is time for their first public recital.\nA comic gem with some serious sparkles.\nU.S. audiences may find (Attal and Gainsbourg's) unfamiliar personas give the film an intimate and quaint reality that is a little closer to human nature than what Hollywood typically concocts.\n``Cremaster 3'' should come with the warning ``For serious film buffs only!''\nOnce again, director Jackson strikes a rewarding balance between emotion on the human scale and action/effects on the spectacular scale.\nA loving little film of considerable appeal.\nAlthough it's a bit smug and repetitive, this documentary engages your brain in a way few current films do.\nFlawed but worthy look at life in U.S. relocation camps.\nIt's a lovely film with lovely performances by Buy and Accorsi.\nNo one goes unindicted here, which is probably for the best. And if you're not nearly moved to tears by a couple of scenes, you've got ice water in your veins.\nA warm, funny, engaging film.\nUses sharp humor and insight into human nature to examine class conflict, adolescent yearning, the roots of friendship and sexual identity.\nHalf Submarine flick, Half Ghost Story, All in one criminally neglected film\nEntertains by providing good, lively company.\nDazzles with its fully-written characters, its determined stylishness (which always relates to characters and story) and Johnny Dankworth's best soundtrack in years.\nVisually imaginative, thematically instructive and thoroughly delightful, it takes us on a roller-coaster ride from innocence to experience without even a hint of that typical kiddie-flick sentimentality.\nNothing's at stake, just a twisty double-cross you can smell a mile away--still, the derivative Nine Queens is lots of fun.\nUnlike the speedy wham-bam effect of most Hollywood offerings, character development -- and more importantly, character empathy -- is at the heart of Italian for Beginners.\nYou'll gasp appalled and laugh outraged and possibly, watching the spectacle of a promising young lad treading desperately in a nasty sea, shed an errant tear.\nThe band's courage in the face of official repression is inspiring, especially for aging hippies (this one included).\nAlthough German cooking does not come readily to mind when considering the world's best cuisine, Mostly Martha could make Deutchland a popular destination for hungry tourists.\nA beguiling splash of pastel colors and prankish comedy from Disney.\nAs surreal as a dream and as detailed as a photograph, as visually dexterous as it is at times imaginatively overwhelming.\n(Lawrence bounces) all over the stage, dancing, running, sweating, mopping his face and generally displaying the wacky talent that brought him fame in the first place.\nThe film serves as a valuable time capsule to remind us of the devastating horror suffered by an entire people.\nWhat's surprising about Full Frontal is that despite its overt self-awareness, parts of the movie still manage to break past the artifice and thoroughly engage you.\nWhether you like rap music or loathe it, you can't deny either the tragic loss of two young men in the prime of their talent or the power of this movie.\n... an otherwise intense, twist-and-turn thriller that certainly shouldn't hurt talented young Gaghan's resume.\nIt provides the grand, intelligent entertainment of a superior cast playing smart people amid a compelling plot.\nThere's ... tremendous energy from the cast, a sense of playfulness and excitement that seems appropriate.\nIt moves quickly, adroitly, and without fuss; it doesn't give you time to reflect on the inanity -- and the Cold War datedness -- of its premise.\nA deep and meaningful film.\nThe film's welcome breeziness and some unbelievably hilarious moments -- most portraying the idiocy of the film industry -- make it mostly worth the trip.\nIt's a remarkably solid and subtly satirical tour de force.\nEnormously entertaining for moviegoers of any age.\nA poignant, artfully crafted meditation on mortality.\nA rarity among recent Iranian films: It's a comedy full of gentle humor that chides the absurdity of its protagonist's plight.\nNot only is Undercover Brother as funny, if not more so, than both Austin Powers films, but it's also one of the smarter, savvier spoofs to come along in some time.\nIn a way, the film feels like a breath of fresh air, but only to those that allow it in.\nWoody Allen's latest is an ambling, broad comedy about all there is to love -- and hate -- about the movie biz.\nIt's a stunning lyrical work of considerable force and truth.\nThe inhospitability of the land emphasizes the spare precision of the narratives and helps to give them an atavistic power, as if they were tales that had been handed down since the beginning of time.\n(Næs) directed the stage version of Elling, and gets fine performances from his two leads who originated the characters on stage.\nMade me unintentionally famous -- as the queasy-stomached critic who staggered from the theater and blacked out in the lobby. But believe it or not, it's one of the most beautiful, evocative works I've seen.\nA coda in every sense, The Pinochet Case splits time between a minute-by-minute account of the British court's extradition chess game and the regime's talking-head survivors.\nLike Mike is a winner for kids, and no doubt a winner for Lil Bow Wow, who can now add movies to the list of things he does well.\n(T)his beguiling Belgian fable, very much its own droll and delicate little film, has some touching things to say about what is important in life and why.\nHere's yet another studio horror franchise mucking up its storyline with glitches casual fans could correct in their sleep. But taken as a stylish and energetic one-shot, The Queen of the Damned cannot be said to suck.\nYou won't like Roger, but you will quickly recognize him. And that's a big part of why we go to the movies.\nWhile the stoically delivered hokum of Hart's War is never fun, it's still a worthy addition to the growing canon of post-Saving Private Ryan tributes to the greatest generation.\nWe know the plot's a little crazy, but it held my interest from start to finish.\nA sober and affecting chronicle of the leveling effect of loss.\nA fast, funny, highly enjoyable movie.\nA celebration of quirkiness, eccentricity, and certain individuals' tendency to let it all hang out, and damn the consequences.\nWriter/director Joe Carnahan's grimy crime drama is a manual of precinct cliches, but it moves fast enough to cover its clunky dialogue and lapses in logic.\nA smart, witty follow-up.\nWhile the ideas about techno-saturation are far from novel, they're presented with a wry dark humor.\nAn infectious cultural fable with a tasty balance of family drama and frenetic comedy.\nAlthough occasionally static to the point of resembling a stage play, the film delivers a solid mixture of sweetness and laughs.\nIt provides an honest look at a community striving to anchor itself in new grounds.\nAdd yet another hat to a talented head, Clooney's a good director.\nBuilding slowly and subtly, the film, sporting a breezy spontaneity and realistically drawn characterizations, develops into a significant character study that is both moving and wise.\nUltimately feels empty and unsatisfying, like swallowing a Communion wafer without the wine.\nChilling, well-acted, and finely directed: David Jacobson's Dahmer.\nA swashbuckling tale of love, betrayal, revenge and above all, faith.\nWithout ever becoming didactic, director Carlos Carrera expertly weaves this novelistic story of entangled interrelationships and complex morality.\nIt's a coming-of-age story we've all seen bits of in other films -- but it's rarely been told with such affecting grace and cultural specificity.\nA literate presentation that wonderfully weaves a murderous event in 1873 with murderous rage in 2002.\nMakes even the claustrophobic on-board quarters seem fun.\nThis is as respectful a film as Byatt fans could hope for, though lovers of the book may wonder why it's necessary.\nOne of the best films of the year with its exploration of the obstacles to happiness faced by five contemporary individuals...a psychological masterpiece.\nNot far beneath the surface, this reconfigured tale asks disturbing questions about those things we expect from military epics.\nFor the most part Stevens glides through on some solid performances and witty dialogue.\nBroomfield turns his distinctive 'blundering' style into something that could really help clear up the case.\nAgainst all odds in heaven and hell, it creeped me out just fine.\nIt's refreshing to see a girl-power movie that doesn't feel it has to prove anything.\nIt's worth seeing just on the basis of the wisdom, and at times, the startling optimism, of the children.\nA rigorously structured and exquisitely filmed drama about a father and son connection that is a brief shooting star of love.\nThis surreal Gilliam-esque film is also a troubling interpretation of Ecclesiastes. A rewarding work of art for only the most patient and challenge-hungry moviegoers.\nA quiet treasure -- a film to be savored.\nMay be far from the best of the series, but it's assured, wonderfully respectful of its past and thrilling enough to make it abundantly clear that this movie phenomenon has once again reinvented itself for a new generation.\nA compelling Spanish film about the withering effects of jealousy in the life of a young monarch whose sexual passion for her husband becomes an obsession.\nHuston nails both the glad-handing and the choking sense of hollow despair.\nmay not have generated many sparks, but with his affection for Astoria and its people he has given his tale a warm glow.\nA delirious celebration of the female orgasm.\nExquisitely nuanced in mood tics and dialogue, this chamber drama is superbly acted by the deeply appealing veteran Bouquet and the chilling but quite human Berling.\nIt's fascinating to see how Bettany and McDowell play off each other.\nThe film is beautifully mounted, but, more to the point, the issues are subtly presented, managing to walk a fine line with regard to the question of Joan's madness.\nLeigh's film is full of memorable performances from top to bottom.\nOne of the most significant moviegoing pleasures of the year.\nJose Campanella delivers a loosely autobiographical story brushed with sentimentality but brimming with gentle humor, bittersweet pathos, and lyric moments that linger like snapshots of memory.\nGenerally, Clockstoppers will fulfill your wildest fantasies about being a different kind of time traveler, while happily killing 94 minutes.\nThe movie is beautiful to behold and engages one in a sense of epic struggle -- inner and outer -- that's all too rare in Hollywood's hastier productions.\nNeither Parker nor Donovan is a typical romantic lead, but they bring a fresh, quirky charm to the formula.\nIt's a much more emotional journey than what Shyamalan has given us in his past two movies, and Gibson, stepping in for Bruce Willis, is the perfect actor to take us on the trip.\nNot only are the special effects and narrative flow much improved, and Daniel Radcliffe more emotionally assertive this time around as Harry, but the film conjures the magic of author J.K. Rowling's books.\nJaglom ... put(s) the audience in the privileged position of eavesdropping on his characters\nBeautifully observed, miraculously unsentimental comedy-drama.\nA must-see for the David Mamet enthusiast and for anyone who appreciates intelligent, stylish moviemaking.\nCrackerjack entertainment -- nonstop romance, music, suspense and action.\nThe acting, costumes, music, cinematography and sound are all astounding given the production's austere locales.\nGarcía Bernal and Talancón are an immensely appealing couple, and even though their story is predictable, you'll want things to work out.\nFar more imaginative and ambitious than the trivial, cash-in features Nickelodeon has made from its other animated TV series.\nThe very definition of the 'small' movie, but it is a good stepping stone for director Sprecher.\nA gripping, searing portrait of a lost soul trying to find her way through life.\nSuffers from the lack of a compelling or comprehensible narrative. Still, as a visual treat, the film is almost unsurpassed.\nSo unassuming and pure of heart, you can't help but warmly extend your arms and yell 'Safe!'\nAn intriguing cinematic omnibus and round-robin that occasionally is more interesting in concept than in execution.\nSo refreshingly incisive is Grant that for the first time he'll probably appeal more to guys than to their girlfriends who drag them to this movie for the Hugh factor.\nAt a time when half the so-called real movies are little more than live-action cartoons, it's refreshing to see a cartoon that knows what it is, and knows the form's history.\nThe magic of the film lies not in the mysterious spring but in the richness of its performances.\nHoffman notches in the nuances of pain, but his smart, edgy voice and waddling profile (emphasized here) accent the humor of Wilson's plight, and that saves his pathos from drippiness.\nWhat better message than 'love thyself' could young women of any size receive?\nThe second coming of Harry Potter is a film far superior to its predecessor. A movie that successfully crushes a best selling novel into a timeframe that mandates that you avoid the Godzilla sized soda.\n84 minutes of rolling musical back beat and supercharged cartoon warfare. It's also, clearly, great fun.\n...takes the beauty of baseball and melds it with a story that could touch anyone regardless of their familiarity with the sport\nSeldahl's Barbara is a precise and moving portrait of someone whose world is turned upside down, first by passion and then by illness.\nA warm but realistic meditation on friendship, family and affection.\nByler reveals his characters in a way that intrigues and even fascinates us, and he never reduces the situation to simple melodrama.\nTurns potentially forgettable formula into something strangely diverting.\nBogdanovich tantalizes by offering a peep show into the lives of the era's creme de la celluloid.\nPeople cinema at its finest.\nThe performances take the movie to a higher level.\nwhat really makes it special is that it pulls us into its world, gives us a hero whose suffering and triumphs we can share, surrounds him with interesting characters and sends us out of the theater feeling we've shared a great adventure.\n...a spoof comedy that carries its share of laughs – sometimes a chuckle, sometimes a guffaw and, to my great pleasure, the occasional belly laugh.\nManages to transcend the sex, drugs and show-tunes plot into something far richer.\nDense with characters and contains some thrilling moments.\nLaPaglia's ability to convey grief and hope works with Weaver's sensitive reactions to make this a two-actor master class.\nReign of Fire looks as if it was made without much thought -- and is best watched that way.\nAltogether, this is successful as a film, while at the same time being a most touching reconsideration of the familiar masterpiece.\nWe root for (Clara and Paul), even like them, though perhaps it's an emotion closer to pity.\nThe best film about baseball to hit theaters since Field of Dreams.\nInstead of a hyperbolic beat-charged urban western, it's an unpretentious, sociologically pointed slice of life.\nthe film tunes into a grief that could lead a man across centuries.\nIf The Count of Monte Cristo doesn't transform Caviezel into a movie star, then the game is even more rigged than it was two centuries ago.\n(D)oesn't bother being as cloying or preachy as equivalent evangelical Christian movies -- maybe the filmmakers know that the likely audience will already be among the faithful.\nAs a tolerable diversion, the film suffices; a Triumph, however, it is not.\nIf director Michael Dowse only superficially understands his characters, he doesn't hold them in contempt.\nIf your taste runs to 'difficult' films you absolutely can't miss it.\n(City) reminds us how realistically nuanced a Robert De Niro performance can be when he is not more lucratively engaged in the shameless self-caricature of 'Analyze This' (1999) and 'Analyze That,' promised (or threatened) for later this year.\n... a story we haven't seen on the big screen before, and it's a story that we as Americans, and human beings, should know.\nLike Leon, it's frustrating and still oddly likable.\nAll in all, The Count of Monte Cristo is okay, but it is surely no classic, like the novel upon which it is based.\nIf you can stomach the rough content, it's worth checking out for the performances alone.\nLooking aristocratic, luminous yet careworn in Jane Hamilton's exemplary costumes, Rampling gives a performance that could not be improved upon.\n'...Mafia, rap stars and hood rats butt their ugly heads in a regurgitation of cinematic violence that gives brutal birth to an unlikely, but likable, hero.'\nOn this tricky topic, Tadpole is very much a step in the right direction, with its blend of frankness, civility and compassion.\nFun, flip and terribly hip bit of cinematic entertainment.\nMontias ... pumps a lot of energy into his nicely nuanced narrative and surrounds himself with a cast of quirky -- but not stereotyped -- street characters.\nFalls neatly into the category of Good Stupid Fun.\nThe film's performances are thrilling.\nEven in its most tedious scenes, Russian Ark is mesmerizing.\nThe continued good chemistry between Carmen and Juni is what keeps this slightly disappointing sequel going, with enough amusing banter -- blessedly curse-free -- to keep both kids and parents entertained.\nReggio's continual visual barrage is absorbing as well as thought-provoking.\nUnfortunately, it appears that (Jackie) Chan's US influence is starting to show in his Hong Kong films.\nIt all adds up to good fun.\nA big, gorgeous, sprawling swashbuckler that delivers its diversions in grand, uncomplicated fashion.\nThe wanton slipperiness of *Corpus and its amiable jerking and reshaping of physical time and space would make it a great piece to watch with kids and use to introduce video as art.\nA stunning and overwhelmingly cogent case for Kissinger as a calculating war criminal.\nSade is an engaging look at the controversial eponymous and fiercely atheistic hero.\na quiet, pure, elliptical film\nKinnear doesn't aim for our sympathy, but rather delivers a performance of striking skill and depth.\nThe subtle strength of ``Elling'' is that it never loses touch with the reality of the grim situation.\nA study in shades of gray, offering itself up in subtle plot maneuvers...\nThe format gets used best ... to capture the dizzying heights achieved by motocross and BMX riders, whose balletic hotdogging occasionally ends in bone-crushing screwups.\nHas a lot of the virtues of Eastwood at his best.\nChilling but uncommercial look into the mind of Jeffrey Dahmer, serial killer.\nThough it's become almost redundant to say so, major kudos go to Leigh for actually casting people who look working-class.\nIt deserves to be seen by anyone with even a passing interest in the events shaping the world beyond their own horizons.\nA movie that reminds us of just how exciting and satisfying the fantasy cinema can be when it's approached with imagination and flair.\nThanks to Scott's charismatic Roger and Eisenberg's sweet nephew, Roger Dodger is one of the most compelling variations on In the Company of Men.\nNine Queens is not only than a frighteningly capable debut and genre piece, but also a snapshot of a dangerous political situation on the verge of coming to a head.\nIt's the chemistry between the women and the droll scene-stealing wit and wolfish pessimism of Anna Chancellor that makes this ``Two Weddings and a Funeral'' fun.\nWill amuse and provoke adventurous adults in specialty venues.\nYou don't have to know about music to appreciate the film's easygoing blend of comedy and romance.\nA film about a young man finding God that is accessible and touching to the marrow.\nFor the first time in years, De Niro digs deep emotionally, perhaps because he's been stirred by the powerful work of his co-stars.\nThe film's snags and stumblings are more than compensated for by its wryly subversive tone.\nInside the film's conflict-powered plot there is a decent moral trying to get out, but it's not that, it's the tension that keeps you in your seat. Affleck and Jackson are good sparring partners.\nThe old-world- meets-new mesh is incarnated in the movie's soundtrack, a joyful effusion of disco Bollywood that, by the end of Monsoon Wedding, sent my spirit soaring out of the theater.\nAn effectively creepy, fear-inducing (not fear-reducing) film from Japanese director Hideo Nakata, who takes the superstitious curse on chain letters and actually applies it.\nHaving had the good sense to cast actors who are, generally speaking, adored by the movie-going public, Khouri then gets terrific performances from them all.\nA subtle and well-crafted (for the most part) chiller.\nWarm Water Under a Red Bridge is a quirky and poignant Japanese film that explores the fascinating connections between women, water, nature, and sexuality.\nAlthough laced with humor and a few fanciful touches, the film is a refreshingly serious look at young women.\nThe best revenge may just be living well because this film, unlike other Dumas adaptations, is far more likened to a treasure than a lengthy jail sentence.\nA delectable and intriguing thriller filled with surprises, Read My Lips is an original. This is a story of two misfits who don't stand a chance alone, but together they are magnificent.\nHighbrow self-appointed guardians of culture need not apply, but those who loved Cool as Ice have at last found a worthy follow-up.\nOne of creepiest, scariest movies to come along in a long, long time, easily rivaling Blair Witch or The Others.\nMaud and Roland's search for an unknowable past makes for a haunting literary detective story, but LaBute pulls off a neater trick in Possession: He makes language sexy.\nPacino is brilliant as the sleep-deprived Dormer, his increasing weariness as much existential as it is physical.\nRare Birds has more than enough charm to make it memorable.\nManages to be sweet and wickedly satisfying at the same time.\nThis Nickleby thing might have more homosexual undertones than an Eddie Murphy film. And just when you think it can't get any more gay, in pops Nathan Lane.\nNo sophomore slump for director Sam Mendes, who segues from Oscar winner to Oscar-winning potential with a smooth sleight of hand.\nThe movie isn't just hilarious: It's witty and inventive, too, and in hindsight, it isn't even all that dumb.\nOld-form moviemaking at its best.\nAhhhh ... revenge is sweet!\nYakusho and Shimizu ... create engaging characterizations in Imamura's lively and enjoyable cultural mix.\nYou will emerge with a clearer view of how the gears of justice grind on and the death report comes to share airtime alongside the farm report.\nRuzowitzky has taken this mothball-y stuff and made a rather sturdy, old-fashioned entertainment out of it.\nIn spite of Good Housekeeping's unsavory characters and WWF mentality, this white trash War of the Roses is a surprisingly engaging film.\nCollateral Damage finally delivers the goods for Schwarzenegger fans.\nThere has always been something likable about the Marquis de Sade.\nAs a first-time director, Paxton has tapped something in himself as an actor that provides Frailty with its dark soul.\nFor the most part, director Anne-Sophie Birot's first feature is a sensitive, extraordinarily well-acted drama.\nBy the time we learn that Andrew's Turnabout Is Fair Play is every bit as awful as Borchardt's Coven, we can enjoy it anyway.\nThis riveting World War II moral suspense story deals with the shadow side of American culture: racial prejudice in its ugly and diverse forms.\nA tender, heartfelt family drama.\nA difficult, absorbing film that manages to convey more substance despite its repetitions and inconsistencies than do most films than are far more pointed and clear.\nFor the most part, it's a work of incendiary genius, steering clear of knee-jerk reactions and quick solutions.\nIt has the charm of the original American road movies, feasting on the gorgeous, ramshackle landscape of the filmmaker's motherland.\n(Chaiken's) talent lies in an evocative, accurate observation of a distinctive milieu and in the lively, convincing dialogue she creates for her characters.\nIn all, this is a watchable movie that's not quite the memorable experience it might have been.\nHuppert's superbly controlled display of murderous vulnerability ensures that malice has a very human face.\nMy thoughts were focused on the characters. That is a compliment to Kuras and Miller. If I had been thinking about the visual medium, they would have been doing something wrong.\nOne of the more intelligent children's movies to hit theaters this year.\nRemember the kind of movie we were hoping ``Ecks vs. Sever'' or ``xXx'' was going to be? This is it.\nNot for the prurient or squeamish, it's a daring if overlong examination of an idolized culture, self-loathing and sexual politics.\nA cartoon that's truly cinematic in scope, and a story that's compelling and heartfelt -- even if the heart belongs to a big, four-legged herbivore.\nThe film's almost unbearable portrait of sadness and grief transcends its specific story to speak to the ways in which need, history and presumption tangle, and sometimes destroy, blood ties.\nTravels a fascinating arc from hope and euphoria to reality and disillusionment.\nThere's something auspicious, and daring, too, about the artistic instinct that pushes a majority-oriented director like Steven Spielberg to follow A.I. with this challenging report so liable to unnerve the majority.\nFor anyone unfamiliar with pentacostal practices in general and theatrical phenomenon of Hell Houses in particular, it's an eye-opener.\nIt seems like I have been waiting my whole life for this movie and now I can't wait for the sequel.\nIt's a bit disappointing that it only manages to be decent instead of dead brilliant.\nAn operatic, sprawling picture that's entertainingly acted, magnificently shot and gripping enough to sustain most of its 170-minute length.\nThe far future may be awesome to consider, but from period detail to matters of the heart, this film is most transporting when it stays put in the past.\nIt inspires a continuing and deeply satisfying awareness of the best movies as monumental 'picture shows.'\nAwesome creatures, breathtaking scenery, and epic battle scenes add up to another 'spectacular spectacle.'\nBy candidly detailing the politics involved in the creation of an extraordinary piece of music, (Jones) calls our attention to the inherent conflict between commerce and creativity.\nIt's unnerving to see Recoing's bizzarre reaction to his unemployment. Good film, but very glum.\nMuch as we might be interested in gratuitous sexualization, Haneke has a different objective in mind--namely the implications of our craving for fake stimulation.\nDazzling in its complexity, disturbing for its extraordinary themes, The Piano Teacher is a film that defies categorisation. It haunts, horrifies, startles and fascinates; it is impossible to look away. Ah yes, and then there's the music...\nIt has charm to spare, and unlike many romantic comedies, it does not alienate either gender in the audience.\nAlthough Jackson is doubtless reserving the darkest hours for The Return of the King, we long for a greater sense of urgency in the here and now of The Two Towers.\nIt is great summer fun to watch Arnold and his buddy Gerald bounce off a quirky cast of characters.\nBleakly funny, its characters all the more touching for refusing to pity or memorialize themselves.\nIt will not appeal to the impatient, but those who like long books and movies will admire the way it accumulates power and depth.\nThis flick is about as cool and crowd-pleasing as a documentary can get.\n``The Ring'' is pretty much an English-language copy of the film that inspired it, and it carries the same strengths and flaws.\nThe Wild Thornberrys Movie is a jolly surprise.\nGriffiths proves she's that rare luminary who continually raises the standard of her profession.\nPrancing his way through the tailor-made part of a male hooker approaching the end of his vitality, Jagger obviously relishes every self-mocking moment.\nOffers much to enjoy ... and a lot to mull over in terms of love, loyalty and the nature of staying friends.\nAn important movie, a reminder of the power of film to move us and to make us examine our values.\nIs this love or is it masochism? Binoche makes it interesting trying to find out.\nThe mesmerizing performances of the leads keep the film grounded and keep the audience riveted.\nWorth watching for Dong Jie's performance -- and for the way it documents a culture in the throes of rapid change.\nTwo hours fly by -- opera's a pleasure when you don't have to endure intermissions -- and even a novice to the form comes away exhilarated.\nIt's one heck of a character study -- not of Hearst or Davies but of the unique relationship between them.\nCandid Camera on methamphetamines.\nA subject like this should inspire reaction in its audience; The Pianist does not.\nEquilibrium is what George Orwell might have imagined had today's mood-altering drug therapy been envisioned by chemists in 1949.\nCreepy, authentic and dark.This disturbing bio-pic is hard to forget.\nMartin and Barbara are complex characters -- sometimes tender, sometimes angry -- and the delicate performances by Sven Wollter and Viveka Seldahl make their hopes and frustrations vivid.\nA twisty, moody slice of Southern Gothic...\nIt's so good that you can practically see the Hollywood 'suits' trying to put together the cast and filmmaking team for the all-too -inevitable American remake.\nThe weight of the piece, the unerring professionalism of the chilly production, and the fascination embedded in the lurid topic prove recommendation enough.\nAn absurdist comedy about alienation, separation and loss.\n'They' begins and ends with scenes so terrifying I'm still stunned. And I've decided to leave a light on every night from now on.\nThis tenth feature is a big deal, indeed -- at least the third-best, and maybe even a notch above the previous runner-up, Nicholas Meyer's Star Trek VI: The Undiscovered Country.\n...with ``The Bourne Identity'' we return to the more traditional action genre.\nBeneath Clouds is a succinct low-budget film whose compelling characters and intelligent script are exactly what was missing from Rabbit-Proof Fence.\nThe film is a contrivance, as artificial as the video games Japanese teens play in a nightclub sequence, but it's an enjoyable one.\nHolm ... embodies the character with an effortlessly regal charisma.\nIt is amusing, and that's all it needs to be.\nAmong the year's most intriguing explorations of alientation.\nA full world has been presented onscreen, not some series of carefully structured plot points building to a pat resolution.\nSeldom has a movie so closely matched the spirit of a man and his work.\nAudrey Tatou has a knack for picking roles that magnify her outrageous charm, and in this literate French comedy, she's as morning-glory exuberant as she was in Amélie.\nThe movie has an infectious exuberance that will engage anyone with a passing interest in the skate/surf culture, the L.A. beach scene and the imaginative (and sometimes illegal) ways kids can make a playground out of the refuse of adults.\nEven if you don't think (Kissinger's) any more guilty of criminal activity than most contemporary statesmen, he'd sure make a courtroom trial great fun to watch.\nThe story and structure are well-honed. Fresnadillo's dark and jolting images have a way of plying into your subconscious like the nightmare you had a week ago that won't go away.\nIt's made with deftly unsettling genre flair.\nIt just may inspire a few younger moviegoers to read Stevenson's book, which is a treasure in and of itself.\nFunny but perilously slight.\nOverall very good for what it's trying to do.\nForgettable horror -- more gory than psychological -- with a highly satisfying quotient of Friday-night excitement and Milla power.\nRamsay, as in Ratcatcher, remains a filmmaker with an acid viewpoint and a real gift for teasing chilly poetry out of lives and settings that might otherwise seem drab and sordid.\nIt may seem long at 110 minutes if you're not a fan, because it includes segments of 12 songs at a reunion concert.\nA lean, deftly shot, well-acted, weirdly retro thriller that recalls a raft of '60s and '70s European-set spy pictures.\nIt proves quite compelling as an intense, brooding character study.\nThe Son's Room is a triumph of gentility that earns its moments of pathos.\nMorton uses her face and her body language to bring us Morvern's soul, even though the character is almost completely deadpan.\nThe film may appear naked in its narrative form... but it goes deeper than that, to fundamental choices that include the complexity of the Catholic doctrine\nA superbly acted and funny/gritty fable of the humanizing of one woman at the hands of the unseen forces of fate.\nOne of the smartest takes on singles culture I've seen in a long time.\nThere is a fabric of complex ideas here, and feelings that profoundly deepen them.\nCQ's reflection of artists and the love of cinema-and-self suggests nothing less than a new voice that deserves to be considered as a possible successor to the best European directors.\nThe emotions are raw and will strike a nerve with anyone who's ever had family trauma.\nHoly mad maniac in a mask, Splat-Man! Good old-fashioned slash-and-hack is back!\nAs unseemly as its title suggests.\nThe French are rather good at this kind of thing, unlike the Americans, who have a passion for Musketeers, only to spoof them.\nThe fly-on-the-wall method used to document rural French school life is a refreshing departure from the now more prevalent technique of the docu-makers being a visible part of their work.\nIt's an offbeat treat that pokes fun at the democratic exercise while also examining its significance for those who take part.\nAllows us to hope that Nolan is poised to embark a major career as a commercial yet inventive filmmaker.\nManeuvers skillfully through the plot's hot brine -- until it's undone by the sogginess of its contemporary characters, and actors.\nIt has the ability to offend and put off everyone, but it holds you with its outrageousness.\nAnchored by Friel and Williams's exceptional performances, the film's power lies in its complexity. Nothing is black and white.\nIt's a charming and often affecting journey.\nNo screen fantasy-adventure in recent memory has the showmanship of Clones' last 45 minutes.\nA poignant and compelling story about relationships, Food of Love takes us on a bumpy but satisfying journey of the heart.\nThe Chateau cleverly probes the cross-cultural differences between Gauls and Yanks.\nNot since Tom Cruise in Risky Business has an actor made such a strong impression in his underwear.\nAside from minor tinkering, this is the same movie you probably loved in 1994, except that it looks even better.\nUses high comedy to evoke surprising poignance.\nIt confirms Fincher's status as a film maker who artfully bends technical know-how to the service of psychological insight.\nVera's three actors -- Mollà, Gil and Bardem -- excel in insightful, empathetic performances.\nA marvel like none you've seen.\nWith tightly organized efficiency, numerous flashbacks and a constant edge of tension, Miller's film is one of 2002's involvingly adult surprises.\nMr. Tsai is a very original artist in his medium, and What Time Is It There? should be seen at the very least for its spasms of absurdist humor.\nWriter/director Mark Romanek spotlights the underlying caste system in America. It's a scathing portrayal.\nThis is a good script, good dialogue, funny even for adults. The characters are interesting and often very creatively constructed from figure to backstory. The film will play equally well on both the standard and giant screens.\nMoody, heartbreaking, and filmed in a natural, unforced style that makes its characters seem entirely convincing even when its script is not.\nNot a film to rival To Live, but a fine little amuse-bouche to keep your appetite whetted.\nTrue tale of courage -- and complicity -- at Auschwitz is a harrowing drama that tries to tell of the unspeakable.\nGives you the steady pulse of life in a beautiful city viewed through the eyes of a character who, in spite of tragic loss and increasing decrepitude, knows in his bones that he is one of the luckiest men alive.\nMacDowell, whose wifty Southern charm has anchored lighter affairs ... brings an absolutely riveting conviction to her role.\nWhat Time Is It There? is not easy. It haunts you, you can't forget it, you admire its conception and are able to resolve some of the confusions you had while watching it.\nif you are an actor who can relate to the search for inner peace by dramatically depicting the lives of others onstage, then Esther's story is a compelling quest for truth.\nAlthough the level of the comedy declines as the movie proceeds, there's no denying the fun of watching De Niro and Crystal having fun.\nClaude Chabrol has here a thriller without thrills, but that's okay.\nFor movie lovers as well as opera lovers, Tosca is a real treat.\nUnflinchingly bleak and desperate\nMoretti's compelling anatomy of grief and the difficult process of adapting to loss.\nChallenging, intermittently engrossing and unflaggingly creative. But it's too long and too convoluted and it ends in a muddle.\nThe vivid lead performances sustain interest and empathy, but the journey is far more interesting than the final destination.\nA painfully funny ode to bad behavior.\n'Easily my choice for one of the year's best films.'\nCharles' entertaining film chronicles Seinfeld's return to stand-up comedy after the wrap of his legendary sitcom, alongside wannabe comic Adams' attempts to get his shot at the big time.\nThat dogged good will of the parents and `vain' Jia's defoliation of ego, make the film touching despite some doldrums.\nThe movie is for fans who can't stop loving anime, and the fanatical excess built into it.\nThe volatile dynamics of female friendship is the subject of this unhurried, low-key film that is so off-Hollywood that it seems positively French in its rhythms and resonance.\nA densely constructed, highly referential film, and an audacious return to form that can comfortably sit among Jean-Luc Godard's finest work.\nMichael Gerbosi's script is economically packed with telling scenes.\nA strangely compelling and brilliantly acted psychological drama.\nCandid and comfortable; a film that deftly balances action and reflection as it lets you grasp and feel the passion others have for their work.\nOpen-minded kids -- kids who read, kids who dream -- will be comforted by the way it deals with big issues like death and destiny.\nBennett's naturalistic performance speaks volumes more truth than any 'reality' show, and anybody contemplating their own drastic life changes should watch Some Body first.\n... a good, if not entirely fresh, look at war.\nThe film is powerful, accessible and funny. You won't miss its messages, but you'll be entertained as well.\n``Frailty'' starts out like a typical Bible killer story, but it turns out to be significantly different (and better) than most films with this theme.\nIf you dig on David Mamet's mind tricks...rent this movie and enjoy!\nThe primitive force of this film seems to bubble up from the vast collective memory of the combatants. It's like watching a nightmare made flesh.\nIt is the sheer, selfish, wound-licking, bar-scrapping doggedness of Leon's struggle to face and transmute his demons that makes the movie a spirited and touching occasion, despite its patchy construction.\nA gorgeous, high-spirited musical from India that exquisitely blends music, dance, song, and high drama.\nIt's hard to imagine Alan Arkin being better than he is in this performance.\nFor those who pride themselves on sophisticated, discerning taste, this might not seem like the proper cup of tea, however it is almost guaranteed that even the stuffiest cinema goers will laugh their *** off for an hour-and-a-half.\nDespite the 2-D animation, The Wild Thornberrys Movie makes for a surprisingly cinematic experience.\n... a fun little timewaster, helped especially by the cool presence of Jean Reno.\n(Majidi) makes us think twice about immigrants we see around us every day.\nThough only 60 minutes long, the film is packed with information and impressions.\nI have no way of knowing exactly how much is exaggeration, but I've got a creepy feeling that the film is closer to the mark than I want to believe.\nImmersing us in the endlessly inventive, fiercely competitive world of hip-hop DJs, the project is sensational and revelatory, even if scratching makes you itch.\nFurther proof that the epicenter of cool, beautiful, thought-provoking foreign cinema is smack-dab in the middle of Dubya's Axis of Evil.\nThere's really only one good idea in this movie, but the director runs with it and presents it with an unforgettable visual panache.\nA simple, but gritty and well-acted ensemble drama that encompasses a potent metaphor for a country still dealing with its fascist past.\nLovely and poignant. Puts a human face on a land most Westerners are unfamiliar with.\nI can't say that I liked Homeboy; it'd be more accurate to say that I found it intriguing, bizarre, Dogma-like in spots - and quite truthful, in its way.\nDisplaying about equal amounts of naiveté, passion and talent, Beneath Clouds establishes Sen as a filmmaker of considerable potential.\nThe vitality of the actors keeps the intensity of the film high, even as the strafings blend together.\nNot since Japanese filmmaker Akira Kurosawa's Ran have the savagery of combat and the specter of death been visualized with such operatic grandeur.\nWe learn a lot about dying coral and see a lot of life on the reef.\nIf the first Men in Black was money, the second is small change. But it still jingles in the pocket. It's fun lite.\nPassable entertainment, but it's the kind of motion picture that won't make much of a splash when it's released, and will not be remembered long afterwards.\nI just loved every minute of this film.\nThis is a winning ensemble comedy that shows Canadians can put gentle laughs and equally gentle sentiments on the button, just as easily as their counterparts anywhere else in the world.\nJust as moving, uplifting and funny as ever.\nMy Wife Is an Actress is an utterly charming French comedy that feels so American in sensibility and style it's virtually its own Hollywood remake.\nIt will grip even viewers who aren't interested in rap, as it cuts to the heart of American society in an unnerving way.\nA muckraking job, the cinematic equivalent of a legal indictment, and a fairly effective one at that.\nA tender, witty, captivating film about friendship, love, memory, trust and loyalty.\nBelongs to Daniel Day-Lewis as much as it belongs to Martin Scorsese; it's a memorable performance in a big, brassy, disturbing, unusual and highly successful film.\nAn exhilarating futuristic thriller-noir, Minority Report twists the best of technology around a gripping story, delivering a riveting, pulse intensifying escapist adventure of the first order\nA psychological thriller with a genuinely spooky premise and an above-average cast, actor Bill Paxton's directing debut is a creepy slice of gothic rural Americana.\nWhile locals will get a kick out of spotting Cleveland sites, the rest of the world will enjoy a fast-paced comedy with quirks that might make the award-winning Coen brothers envious.\nPumpkin takes an admirable look at the hypocrisy of political correctness, but it does so with such an uneven tone that you never know when humor ends and tragedy begins.\nIf you're hard up for raunchy college humor, this is your ticket right here.\nFew films capture so perfectly the hopes and dreams of little boys on baseball fields as well as the grown men who sit in the stands.\nCorny, schmaltzy and predictable, but still manages to be kind of heartwarming, nonetheless. It's the perfect kind of film to see when you don't want to use your brain. At all.\nWhile it regards 1967 as the key turning point of the 20th century, and returns again and again to images of dissidents in the streets, it's alarmingly current.\nFeature debuter D.J. Caruso directs a crack ensemble cast, bringing screenwriter Tony Gayton's narcotics noir to life.\nEvery dance becomes about seduction, where backstabbing and betrayals are celebrated, and sex is currency.\nHarris commands the screen, using his frailty to suggest the ravages of a life of corruption and ruthlessness.\nStephen Rea, Aidan Quinn, and Alan Bates play Desmond's legal eagles, and when joined by Brosnan, the sight of this grandiloquent quartet lolling in pretty Irish settings is a pleasant enough thing, 'tis.\nDirector of photography Benoit Delhomme shot the movie in delicious colors, and the costumes and sets are grand.\nThe movie's relatively simple plot and uncomplicated morality play well with the affable cast.\nThe film is quiet, threatening and unforgettable.\nThis illuminating documentary transcends our preconceived vision of the Holy Land and its inhabitants, revealing the human complexities beneath.\ndeliriously funny, fast and loose, accessible to the uninitiated, and full of surprises\nTrademark American triteness and simplicity are tossed out the window with the intelligent French drama that deftly explores the difficult relationship between a father and son.\nOne from the heart.\nMore concerned with Sade's ideas than with his actions. The movie achieves as great an impact by keeping these thoughts hidden as... (Quills) did by showing them.\nAn entertaining, colorful, action-filled crime story with an intimate heart.\nWhile Undisputed isn't exactly a high, it is a gripping, tidy little movie that takes Mr. Hill higher than he's been in a while.\nThe most compelling Wiseman epic of recent years.\nThe socio-histo-political treatise is told in earnest strides... (and) personal illusion is deconstructed with poignancy.\nIt's great escapist fun that recreates a place and time that will never happen again.\nGood car chases, great fight scenes, and a distinctive blend of European, American and Asian influences.\nLiotta put on 30 pounds for the role, and has completely transformed himself from his smooth, Goodfellas image.\nA woman's pic directed with resonance by Ilya Chaiken.\n(Grant's) bumbling magic takes over the film, and it turns out to be another winning star vehicle.\n...Brian De Palma is utterly mad: cinema mad, set-piece mad, style mad. It's a beautiful madness.\nGenerally provides its target audience of youngsters enough stimulating eye and ear candy to make its moral medicine go down.\nThere are some wonderfully fresh moments that smooth the moral stiffness with human kindness and hopefulness.\nA grimly competent and stolid and earnest military courtroom drama.\nEscaping the studio, Piccoli is warmly affecting and so is this adroitly minimalist movie.\nVery psychoanalytical -- provocatively so -- and also refreshingly literary.\nA gorgeous, witty, seductive movie.\nThe special effects and many scenes of weightlessness look as good or better than in the original, while the Oscar-winning sound and James Horner's rousing score make good use of the hefty audio system.\nOn the heels of The Ring comes a similarly morose and humorless horror movie that, although flawed, is to be commended for its straight-ahead approach to creepiness.\nWith Rabbit-Proof Fence, Noyce has tailored an epic tale into a lean, economical movie.\n(A)n utterly charming and hilarious film that reminded me of the best of the Disney comedies from the 60s.\nPreaches to two completely different choirs at the same time, which is a pretty amazing accomplishment.\nThanks to Haynes' absolute control of the film's mood, and buoyed by three terrific performances, Far From Heaven actually pulls off this stylistic juggling act.\nBirthday Girl is an amusing joy ride, with some surprisingly violent moments.\nMore romantic, more emotional and ultimately more satisfying than the teary-eyed original.\nAn appealingly juvenile trifle that delivers its share of laughs and smiles.\nWriter-director's Mehta's effort has tons of charm and the whimsy is in the mixture, the intoxicating masala, of cultures and film genres.\nThe draw (for ``Big Bad Love'') is a solid performance by Arliss Howard.\nIt gets onto the screen just about as much of the novella as one could reasonably expect, and is engrossing and moving in its own right.\nThe terrific and bewilderingly underrated Campbell Scott gives a star performance that is nothing short of mesmerizing.\nCool? This movie is a snow emergency.\nLike Mike isn't interested in recycling old cliches. It wants to tweak them with a taste of tangy new humor.\nSmith is careful not to make fun of these curious owners of architectural oddities. Instead, he shows them the respect they are due.\nA mess when it comes to the characters and writing...but works its way underneath the skin like few movies have in recent memory.\nDrops you into a dizzying, volatile, pressure-cooker of a situation that quickly snowballs out of control, while focusing on the what much more than the why.\nZhang ... has done an amazing job of getting realistic performances from his mainly nonprofessional cast.\nA solid examination of the male midlife crisis.\nIf you're in the mood for a Bollywood film, here's one for you.\nAs the two leads, Lathan and Diggs are charming and have chemistry both as friends and lovers.\nA beguiling, slow-moving parable about the collision of past and present on a remote seacoast in Iran.\nMy Big Fat Greek Wedding uses stereotypes in a delightful blend of sweet romance and lovingly dished out humor.\nKept aloft largely by a comically adept ensemble.\nThe sort of film that makes me miss Hitchcock, but also feel optimistic that there's hope for popular cinema yet.\nFirst-time writer-director Serry shows a remarkable gift for storytelling with this moving, effective little film.\nIt cuts to the core of what it actually means to face your fears, to be a girl in a world of boys, to be a boy truly in love with a girl, and to ride the big metaphorical wave that is life -- wherever it takes you.\nAtom Egoyan has conjured up a multilayered work that tackles any number of fascinating issues\nessentially an exceptionally well-written, well-edited, well-directed, well-acted, bald rip-off of Aliens.\n'De Niro...is a veritable source of sincere passion that this Hollywood contrivance orbits around.'\nThe whole is quite entertaining, but despite its virtues, there is an unsettled feeling to the film.\nWhile its careful pace and seemingly opaque story may not satisfy every moviegoer's appetite, the film's final scene is soaringly, transparently moving.\nHardly a masterpiece, but it introduces viewers to a good charitable enterprise and some interesting real people.\nBased on a devilishly witty script by Heather McGowan and Niels Mueller, the film gets great laughs, but never at the expense of its characters\nIt's somewhat clumsy and too lethargically paced -- but its story about a mysterious creature with psychic abilities offers a solid build-up, a terrific climax, and some nice chills along the way.\nIf you've ever wondered what an ending without the input of studio executives or test audiences would look like, here it is.\nExciting and direct, with ghost imagery that shows just enough to keep us on our toes.\nWhether writer-director Anne Fontaine's film is a ghost story, an account of a nervous breakdown, a trip down memory lane, all three or none of the above, it is as seductive as it is haunting.\nWhat the film lacks in general focus it makes up for in compassion, as Corcuera manages to find the seeds of hope in the form of collective action.\nIf you enjoy more thoughtful comedies with interesting conflicted characters; this one is for you.\nThe quality of the art combined with the humor and intelligence of the script allow the filmmakers to present the biblical message of forgiveness without it ever becoming preachy or syrupy.\nThis film seems thirsty for reflection, itself taking on adolescent qualities.\nAnother one of those estrogen overdose movies like ``Divine Secrets of the Ya Ya Sisterhood,'' except that the writing, acting and character development are a lot better.\nA breezy romantic comedy that has the punch of a good sitcom, while offering exceptionally well-detailed characters.\nA romantic comedy enriched by a sharp eye for manners and mores.\nViewers of ``The Ring'' are more likely to remember the haunting images than the plot holes.\nA delightful coming-of-age story.\nOne of those energetic surprises, an original that pleases almost everyone who sees it.\nAn exquisitely crafted and acted tale.\nA taut psychological thriller that doesn't waste a moment of its two-hour running time.\nJones ... does offer a brutal form of charisma.\nDespite its title, Punch-Drunk Love is never heavy-handed. The jabs it employs are short, carefully placed and dead-center.\nThere's a wickedly subversive bent to the best parts of Birthday Girl.\nLikely to expertly drum up repressed teenage memories in any viewer.\nBlanchett's performance confirms her power once again.\n...a magnificent drama well worth tracking down.\nA good piece of work more often than not.\nThe movie understands like few others how the depth and breadth of emotional intimacy give the physical act all of its meaning and most of its pleasure.\nWhat distinguishes Time of Favor from countless other thrillers is its underlying concern with the consequences of words and with the complicated emotions fueling terrorist acts.\nSmart, provocative and blisteringly funny.\nNothing is sacred in this gut-buster.\nThe movie occasionally threatens to become didactic, but it's too grounded in the reality of its characters to go over the edge. A touch of humor or an unexpected plot twist always pulls it back.\nFilmmakers who can deftly change moods are treasures and even marvels. So, too, is this comedy about mild culture clashing in today's New Delhi.\nIf Steven Soderbergh's 'Solaris' is a failure it is a glorious failure.\n``Mostly Martha'' is a bright, light modern day family parable that wears its heart on its sleeve for all to see.\nIt's a scattershot affair, but when it hits its mark it's brilliant.\nA pleasant enough romance with intellectual underpinnings, the kind of movie that entertains even as it turns maddeningly predictable.\nFeaturing a dangerously seductive performance from the great Daniel Auteuil, ``Sade'' covers the same period as Kaufmann's ``Quills'' with more unsettlingly realistic results.\nA spellbinding African film about the modern condition of rootlessness, a state experienced by millions around the globe.\nIt's a work by an artist so in control of both his medium and his message that he can improvise like a jazzman.\nA moody, multi-dimensional love story and sci-fi mystery, Solaris is a thought-provoking, haunting film that allows the seeds of the imagination to germinate.\nA very well-made, funny and entertaining picture.\nA giggle-inducing comedy with snappy dialogue and winning performances by an unlikely team of Oscar-winners: Susan Sarandon and Goldie Hawn.\nIts maker, Steven Spielberg, hasn't had so much fun in two decades, since he was schlepping Indiana Jones around the globe in search of a giant misplaced ashtray.\nOscar Wilde's masterpiece, The Importance of Being Earnest, may be the best play of the 19th century. It's so good that its relentless, polished wit can withstand not only inept school productions, but even Oliver Parker's movie adaptation.\nThe movie does a good job of laying out some of the major issues that we encounter as we journey through life.\nBrilliantly explores the conflict between following one's heart and following the demands of tradition.\nThis remake gets all there is to get out of a peculiar premise with promise: Al Pacino loathing Robin Williams.\nThe next generation of mob movie. Part low rent Godfather. Part Three Stooges.\nLan Yu is at times too restrained, yet there are moments it captures the erotics of intimacy in a way that makes most American love stories look downright unfree.\nA thinly veiled look at different aspects of Chinese life clashing with each other.\nLight years/ several warp speeds/ levels and levels of dilithium crystals better than the pitiful Insurrection. Which isn't to say that it's the equal of some of its predecessors.\nIf this story must be told and retold -- and indeed it must -- then The Grey Zone is to be lauded for finding a new and ingenious angle.\nThe Lion King was a roaring success when it was released eight years ago, but on Imax it seems better, not just bigger.\nA gripping movie, played with performances that are all understated and touching.\nThe piece plays as well as it does thanks in large measure to Anspaugh's three lead actresses.\nThe inspirational screenplay by Mike Rich covers a lot of ground, perhaps too much, but ties things together, neatly, by the end.\nNot the kind of film that will appeal to a mainstream American audience, but there is a certain charm about the film that makes it a suitable entry into the fest circuit.\nDirector Andrew Niccol...demonstrates a wry understanding of the quirks of fame. His healthy sense of satire is light and fun....\nAbout a manga-like heroine who fights back at her abusers, it's energetic and satisfying if not deep and psychological.\nThis is human comedy at its most amusing, interesting and confirming.\nAn artful, intelligent film that stays within the confines of a well-established genre.\nMajidi is an unconventional storyteller, capable of finding beauty in the most depressing places.\nRichard Gere and Diane Lane put in fine performances as does French actor Oliver Martinez.\nThe minor figures surrounding (Bobby) ... form a gritty urban mosaic.\nThis is wild surreal stuff, but brilliant and the camera just kind of sits there and lets you look at this and its like you're going from one room to the next and none of them have any relation to the other.\nIt's a demented kitsch mess (although the smeary digital video does match the muddled narrative), but it's savvy about celebrity and has more guts and energy than much of what will open this year.\nThere is nothing outstanding about this film, but it is good enough and will likely be appreciated most by sailors and folks who know their way around a submarine.\nAll-in-all, the film is an enjoyable and frankly told tale of a people who live among us, but not necessarily with us.\nAn interesting story with a pertinent (cinematically unique) message, told fairly well and scored to perfection, I found myself struggling to put my finger on that elusive ``missing thing.''\nA movie with a real anarchic flair.\nA welcome relief from baseball movies that try too hard to be mythic, this one is a sweet and modest and ultimately winning story.\nA crisp psychological drama (and) a fascinating little thriller that would have been perfect for an old ``Twilight Zone'' episode.\nIt has more than a few moments that are insightful enough to be fondly remembered in the endlessly challenging maze of moviegoing.\nOpening with some contrived banter, cliches and some loose ends, the screenplay only comes into its own in the second half.\nAn uncluttered, resonant gem that relays its universal points without lectures or confrontations.\n'(The Cockettes) provides a window into a subculture hell-bent on expressing itself in every way imaginable.'\nA smart, steamy mix of road movie, coming-of-age story and political satire.\nThe modern-day royals have nothing on these guys when it comes to scandals. It's only in fairy tales that princesses that are married for political reason live happily ever after.\nA terrific B movie -- in fact, the best in recent memory.\n``Birthday Girl'' is an actor's movie first and foremost.\nI walked away from this new version of E.T. just as I hoped I would -- with moist eyes.\nFor devotees of French cinema, Safe Conduct is so rich with period minutiae it's like dying and going to celluloid heaven.\nWhat's really so appealing about the characters is their resemblance to everyday children.\nShamelessly resorting to pee-related sight gags that might even cause Tom Green a grimace; still, Myer's energy and the silliness of it all eventually prevail\nAn absurdist spider web.\nIf you're as happy listening to movies as you are watching them, and the slow parade of human frailty fascinates you, then you're at the right film.\nThis version moves beyond the original's nostalgia for the communal film experiences of yesteryear to a deeper realization of cinema's inability to stand in for true, lived experience.\nSome movies blend together as they become distant memories. Mention ``Solaris'' five years from now and I'm sure those who saw it will have an opinion to share.\nAllen's funniest and most likeable movie in years.\nIt's a glorious spectacle like those D.W. Griffith made in the early days of silent film.\nThis comic gem is as delightful as it is derivative.\nMore timely than its director could ever have dreamed, this quietly lyrical tale probes the ambiguous welcome extended by Iran to the Afghani refugees who streamed across its borders, desperate for work and food.\nThe leaping story line, shaped by director Peter Kosminsky into sharp slivers and cutting impressions, shows all the signs of rich detail condensed into a few evocative images and striking character traits.\nWith three excellent principal singers, a youthful and good-looking diva and tenor and richly handsome locations, it's enough to make you wish Jacquot had left well enough alone and just filmed the opera without all these distortions of perspective.\nThe production has been made with an enormous amount of affection, so we believe these characters love each other.\nCertainly the performances are worthwhile.\nWinds up being both revelatory and narcissistic, achieving some honest insight into relationships that most high-concept films candy-coat with pat storylines, precious circumstances and beautiful stars.\nWatching these eccentrics is both inspiring and pure joy.\nSteven Spielberg brings us another masterpiece\nFinally, the French-produced ``Read My Lips'' is a movie that understands characters must come first.\nMs. Seigner and Mr. Serrault bring fresh, unforced naturalism to their characters.\nAllen shows he can outgag any of those young whippersnappers making moving pictures today.\nA good film with a solid pedigree both in front of and, more specifically, behind the camera.\nBy no means a slam-dunk and sure to ultimately disappoint the action fans who will be moved to the edge of their seats by the dynamic first act, it still comes off as a touching, transcendent love story.\nI encourage young and old alike to go see this unique and entertaining twist on the classic whale's tale -- you won't be sorry!\nA literary detective story is still a detective story and aficionados of the whodunit won't be disappointed.\nHigh Crimes steals so freely from other movies and combines enough disparate types of films that it can't help but engage an audience.\nIf you're a fan of the series you'll love it and probably want to see it twice. I will be.\nIt celebrates the group's playful spark of nonconformity, glancing vividly back at what Hibiscus grandly called his 'angels of light.'\nThe story ... is inspiring, ironic, and revelatory of just how ridiculous and money-oriented the record industry really is. It is also a testament to the integrity and vision of the band.\nLaced with liberal doses of dark humor, gorgeous exterior photography, and a stable-full of solid performances, No Such Thing is a fascinating little tale.\nHuppert's show to steal and she makes a meal of it, channeling Kathy Baker's creepy turn as the repressed mother on Boston Public just as much as 8 Women's Augustine.\nNair doesn't treat the issues lightly. She allows each character to confront their problems openly and honestly.\nOne of the best silly horror movies of recent memory, with some real shocks in store for unwary viewers.\nThe work of a filmmaker who has secrets buried at the heart of his story and knows how to take time revealing them. Strange occurrences build in the mind of the viewer and take on extreme urgency.\nHas a certain ghoulish fascination, and generates a fair amount of B-movie excitement.\nFamiliar but utterly delightful.\nA fascinating, dark thriller that keeps you hooked on the delicious pulpiness of its lurid fiction.\nThe film aims to be funny, uplifting and moving, sometimes all at once. The extent to which it succeeds is impressive.\nThe film brilliantly shines on all the characters, as the direction is intelligently accomplished.\nWhile not for every taste, this often very funny collegiate gross-out comedy goes a long way toward restoring the luster of the National Lampoon film franchise, too long reduced to direct-to-video irrelevancy.\nAs broad and cartoonish as the screenplay is, there is an accuracy of observation in the work of the director, Frank Novak, that keeps the film grounded in an undeniable social realism.\nIn addition to Hoffman's powerful acting clinic, this is that rare drama that offers a thoughtful and rewarding glimpse into the sort of heartache everyone has felt, or will feel someday.\nJeffrey Tambor's performance as the intelligent jazz-playing exterminator is Oscar-worthy.\nFrom the opening strains of the Average White Band's ``Pick up the Pieces'', you can feel the love.\nStevens' vibrant creative instincts are the difference between this and countless other flicks about guys and dolls.\nthat it'll probably be the best and most mature comedy of the 2002 summer season speaks more of the season than the picture\nOld people will love this movie, and I mean that in the nicest possible way: Last Orders will touch the heart of anyone old enough to have earned a 50-year friendship.\nMeyjes' provocative film might be called an example of the haphazardness of evil.\nTian emphasizes the isolation of these characters by confining color to Liyan's backyard.\nThe movie is pretty funny now and then without in any way demeaning its subjects.\nimagine a scenario where Bergman approaches Swedish fatalism using Gary Larson's Far Side humor\nToo damn weird to pass up, and for the blacklight crowd, way cheaper (and better) than Pink Floyd tickets.\nIt is most remarkable not because of its epic scope, but because of the startling intimacy it achieves despite that breadth.\nIt's not a great monster movie. But if you've paid a matinee price and bought a big tub of popcorn, there's guilty fun to be had here. Chomp chomp!\nThe Grey Zone gives voice to a story that needs to be heard in the sea of Holocaust movies...but the film suffers from its own difficulties.\nOthers, more attuned to the anarchist maxim that 'the urge to destroy is also a creative urge', or more willing to see with their own eyes, will find Morrison's iconoclastic uses of technology to be liberating.\nMiller tells this very compelling tale with little fuss or noise, expertly plucking tension from quiet.\nTime Out is existential drama without any of the pretension associated with the term.\nIt's a sweet, laugh-a-minute crowd pleaser that lifts your spirits as well as the corners of your mouth.\nWriter/director Alexander Payne (Election)and his co-writer Jim Taylor brilliantly employ their quirky and fearless ability to look American angst in the eye and end up laughing.\nA movie that at its best doesn't just make the most out of its characters' flaws but insists on the virtue of imperfection.\nIt's tough to watch, but it's a fantastic movie.\nThe best animated feature to hit theaters since Beauty and the Beast 11 years ago.\nWhat saves this deeply affecting film from being merely a collection of wrenching cases is Corcuera's attention to detail.\nPacino is the best he's been in years and Keener is marvelous.\nA solid, spooky entertainment worthy of the price of a ticket.\nBy turns fanciful, grisly and engagingly quixotic.\n... very funny, very enjoyable ...\nAdaptation is intricately constructed and in a strange way nails all of Orlean's themes without being a true adaptation of her book.\nSo purely enjoyable that you might not even notice it's a fairly straightforward remake of Hollywood comedies such as Father of the Bride.\nMoonlight Mile gives itself the freedom to feel contradictory things. It is sentimental but feels free to offend, is analytical and then surrenders to the illogic of its characters, is about grief and yet permits laughter.\nThe real triumphs in Igby come from Philippe, who makes Oliver far more interesting than the character's lines would suggest, and Sarandon, who couldn't be better as a cruel but weirdly likable WASP matron.\nRobin Williams has thankfully ditched the saccharine sentimentality of Bicentennial Man in favour of an altogether darker side.\nIf you're willing to have fun with it, you won't feel cheated by the high infidelity of Unfaithful.\nAustralia: Land Beyond Time is an enjoyable Big Movie primarily because Australia is a weirdly beautiful place.\nHoffman's performance is authentic to the core of his being.\nTold just proficiently enough to trounce its overly comfortable trappings.\nAn enthralling aesthetic experience, one that's steeped in mystery and a ravishing, baroque beauty.\nThe quirky drama touches the heart and the funnybone thanks to the energetic and always surprising performance by Rachel Griffiths.\nA captivating coming-of-age story that may also be the first narrative film to be truly informed by the wireless age.\nWhat could have been a daytime soap opera is actually a compelling look at a young woman's tragic odyssey.\nDuvall is strong as always.\nA no-holds-barred cinematic treat.\nYou'd have to be a most hard-hearted person not to be moved by this drama.\nAllen's underestimated charm delivers more goodies than lumps of coal.\nMeasured against practically any like-themed film other than its Oscar-sweeping franchise predecessor The Silence of the Lambs, Red Dragon rates as an exceptional thriller.\nAn exhilarating serving of movie fluff.\nMaelstrom is strange and compelling, engrossing and different, a moral tale with a twisted sense of humor.\nIt makes you believe the cast and crew thoroughly enjoyed themselves and believed in their small-budget film.\nDark and disturbing, yet compelling to watch.\nToo often, Son of the Bride becomes an exercise in trying to predict when a preordained ``big moment'' will occur and not ``if.''\nThe picture uses humor and a heartfelt conviction to tell a story about discovering your destination in life, but also acknowledging the places, and the people, from whence you came.\nA solid piece of journalistic work that draws a picture of a man for whom political expedience became a deadly foreign policy.\nA terrific insider look at the star-making machinery of tinseltown.\nIt's a diverting enough hour-and-a-half for the family audience.\nA party-hearty teen flick that scalds like acid.\nAs giddy and whimsical and relevant today as it was 270 years ago.\nThe film offers an intriguing what-if premise.\nThe Pianist is the film Roman Polanski may have been born to make.\nThis version does justice both to Stevenson and to the sci-fi genre.\nPoignant and delicately complex.\nEnough may pander to our basest desires for payback, but unlike many revenge fantasies, it ultimately delivers.\nCho's latest comic set isn't as sharp or as fresh as I'm the One That I Want... but it's still damn funny stuff.\nIn The Pianist, Polanski is saying what he has long wanted to say, confronting the roots of his own preoccupations and obsessions, and he allows nothing to get in the way.\nDespite the film's shortcomings, the stories are quietly moving.\nThose who love Cinema Paradiso will find the new scenes interesting, but few will find the movie improved.\nIf you come from a family that eats, meddles, argues, laughs, kibbitzes and fights together, then go see this delightful comedy.\nThis bracingly truthful antidote to Hollywood teenage movies that slather Clearasil over the blemishes of youth captures the combustible mixture of a chafing inner loneliness and desperate grandiosity that tend to characterize puberty.\nThe reason to see ``Sade'' lay with the chemistry and complex relationship between the marquis (Auteil) and Emilie (Le Besco).\nIt's the filmmakers' post-camp comprehension of what made old-time B movies good-bad that makes Eight Legged Freaks a perfectly entertaining summer diversion.\nThe film's strength isn't in its details, but in the larger picture it paints - of a culture in conflict with itself, with the thin veneer of nationalism that covers our deepest, media-soaked fears.\n...best seen as speculative history, as much an exploration of the paranoid impulse as a creative sequel to the Warren Report.\nIt has its faults, but it is a kind, unapologetic, sweetheart of a movie, and Mandy Moore leaves a positive impression.\nThe Saigon of 1952 is an uneasy mix of sensual delights and simmering violence, and The Quiet American brings us right into the center of that world.\nDespite its shortcomings, Girls Can't Swim represents an engaging and intimate first feature by a talented director to watch, and it's a worthy entry in the French coming-of-age genre.\nFlawed, but worth seeing for Ambrose's performance.\nWith Dirty Deeds, David Caesar has stepped into the mainstream of filmmaking with an assurance worthy of international acclaim and with every cinematic tool well under his control -- driven by a natural sense for what works on screen.\nThe humor and humanity of Monsoon Wedding are in perfect balance.\nLookin' for sin, American-style? Try Hell House, which documents the cautionary Christian spook-a-rama of the same name.\nA compelling motion picture that illustrates an American tragedy.\nAs comedic spotlights go, Notorious C.H.O. hits all the verbal marks it should.\nIt's a day at the beach -- with air conditioning and popcorn.\nFrida isn't that much different from many a Hollywood romance. What sets it apart is the vision that Taymor, the avant garde director of Broadway's The Lion King and the film Titus, brings.\nStevens has a flair for dialogue comedy, the film operates nicely off the element of surprise, and the large cast is solid.\nExtremely well acted by the four primary actors, this is a seriously intended movie that is not easily forgotten.\nThe film exudes the urbane sweetness that Woody Allen seems to have bitterly forsaken.\nK-19: The Widowmaker is derivative, overlong, and bombastic -- yet surprisingly entertaining.\nIt's good, hard-edged stuff, violent and a bit exploitative but also nicely done, morally alert and street-smart.\nCineasts will revel in those visual in-jokes, as in the film's verbal pokes at everything from the likes of Miramax chief Harvey Weinstein's bluff personal style to the stylistic rigors of Denmark's Dogma movement.\nIt's a rare window on an artistic collaboration.\n...begins with promise, but runs aground after being snared in its own tangled plot.\nPerhaps the best sports movie I've ever seen.\nCho's timing is priceless.\n...creates a visceral sense of its characters' lives and conflicted emotions that carries it far above...what could have been a melodramatic, Lifetime Channel-style anthology.\nA sensitive, moving, brilliantly constructed work.\nAn edgy thriller that delivers a surprising punch.\nA reasonably entertaining sequel to 1994's surprise family hit that may strain adult credibility.\n(Reno) delivers a monologue that manages to incorporate both the horror and the absurdity of the situation in a well-balanced fashion.\nthere is truth here\na confident, richly acted, emotionally devastating piece of work and 2002's first great film\nA touching, small-scale story of family responsibility and care in the community.\nArteta directs one of the best ensemble casts of the year\nThe casting of von Sydow ... is itself Intacto's luckiest stroke.\nNo, it's not as single-minded as John Carpenter's original, but it's sure a lot smarter and more unnerving than the sequels.\nA gem of a romantic crime comedy that turns out to be clever, amusing and unpredictable.\nStands as one of the year's most intriguing movie experiences, letting its imagery speak for it while it forces you to ponder anew what a movie can be.\n...the first 2/3 of the film are incredibly captivating and insanely funny, thanks in part to interesting cinematic devices ( cool visual backmasking), a solid cast, and some wickedly sick and twisted humor...\nThis movie got me grinning. There's a part of us that cannot help be entertained by the sight of someone getting away with something.\nAn old-fashioned drama of substance about a teacher's slide down the slippery slope of dishonesty after an encounter with the rich and the powerful who have nothing but disdain for virtue.\nWhat's not to like about a movie with a 'children's' song that includes the line 'My stepdad's not mean, he's just adjusting'?\nThis English-language version ... does full honor to Miyazaki's teeming and often unsettling landscape, and to the conflicted complexity of his characters.\nThe pleasures that it does afford may be enough to keep many moviegoers occupied amidst some of the more serious-minded concerns of other year-end movies.\nNot everyone will welcome or accept The Trials of Henry Kissinger as faithful portraiture, but few can argue that the debate it joins is a necessary and timely one.\nThere are no special effects, and no Hollywood endings.\nLike the original, this version is raised a few notches above kiddie fantasy pablum by Allen's astringent wit.\nDespite its Hawaiian setting, the science-fiction trimmings and some moments of rowdy slapstick, the basic plot of ``Lilo'' could have been pulled from a tear-stained vintage Shirley Temple script.\nA brutally honest documentary about a much anticipated family reunion that goes wrong thanks to culture shock and a refusal to empathize with others.\nFilled with honest performances and exceptional detail, Baran is a gentle film with dramatic punch, a haunting ode to humanity.\nSparkles in its deft portrait of Tinseltown's seasoned veterans of gossip, wealth, paranoia, and celebrityhood.\nIn its dry and forceful way, it delivers the same message as Jiri Menzel's Closely Watched Trains and Danis Tanovic's No Man's Land.\n...a triumph of emotionally and narratively complex filmmaking.\n(Haynes') homage to such films as ``All That Heaven Allows'' and ``Imitation of Life'' transcends them. Simply put, ``Far From Heaven'' is a masterpiece.\nAn intense and effective film about loneliness and the chilly anonymity of the environments where so many of us spend so much of our time.\nAlthough fairly involving as far as it goes, the film doesn't end up having much that is fresh to say about growing up Catholic or, really, anything.\nProves mainly that South Korean filmmakers can make undemanding action movies with all the alacrity of their Hollywood counterparts.\nA very funny romantic comedy about two skittish New York middle-agers who stumble into a relationship and then struggle furiously with their fears and foibles.\nTop-notch action powers this romantic drama.\nBeresford nicely mixes in as much humor as pathos to take us on his sentimental journey of the heart. It really is a shame that more won't get an opportunity to embrace small, sweet 'Evelyn.'\nI stopped thinking about how good it all was, and started doing nothing but reacting to it - feeling a part of its grand locations, thinking urgently as the protagonists struggled, feeling at the mercy of its inventiveness, gasping at its visual delights.\nProbably the best case for Christianity since Chesterton and Lewis.\nA gently funny, sweetly adventurous film that makes you feel genuinely good, that is to say, entirely unconned by false sentiment or sharp, overmanipulative Hollywood practices.\nWould be an unendurable viewing experience for this ultra-provincial New Yorker if 26-year-old Reese Witherspoon were not on hand to inject her pure fantasy character, Melanie Carmichael, with a massive infusion of old-fashioned Hollywood magic.\nVisually fascinating ... an often intense character study about fathers and sons, loyalty and duty.\nA lyrical metaphor for cultural and personal self-discovery and a picaresque view of a little-remembered world.\nSchütte's dramatic snapshot of the artist three days before his death offers an interesting bit of speculation as to the issues Brecht faced as his life drew to a close.\nA slick, engrossing melodrama.\nS1M0NE's satire is not subtle, but it is effective. It's a quirky, off-beat project.\nWhile some will object to the idea of a Vietnam picture with such a rah-rah, patriotic tone, Soldiers ultimately achieves its main strategic objective: dramatizing the human cost of the conflict that came to define a generation.\nEven if you don't know the band or the album's songs by heart, you will enjoy seeing how both evolve, and you will also learn a good deal about the state of the music business in the 21st Century.\nThe solid filmmaking and convincing characters makes this a high water mark for this genre.\nFilms about loss, grief and recovery are pretty valuable these days. Seen in that light, Moonlight Mile should strike a nerve in many.\nIt's endlessly inventive, consistently intelligent and sickeningly savage.\nIt is definitely worth seeing.\nAn impeccable study in perversity.\nFar From Heaven is a dazzling conceptual feat, but more than that, it's a work of enthralling drama.\nA movie that both thrills the eye and, in its over-the-top way, touches the heart.\nStuffed to the brim with ideas, American instigator Michael Moore's film is a rambling examination of American gun culture that uses his usual modus operandi of crucifixion through juxtaposition.\nAffectionately reminds us that, in any language, the huge stuff in life can usually be traced back to the little things.\nA drama of great power, yet some members of the audience will leave the theater believing they have seen a comedy.\nThe large-frame IMAX camera lends itself beautifully to filming the teeming life on the reefs, making this gorgeous film a must for everyone from junior scientists to grown-up fish lovers.\nThe result is more depressing than liberating, but it's never boring.\nA story about intelligent high school students that deals with first love sweetly but also seriously. It is also beautifully acted.\nIt isn't that the picture is unfamiliar, but that it manages to find new avenues of discourse on old problems.\nSame song, second verse, coulda been better, but it coulda been worse.\nIt's a technically superb film, shining with all the usual Spielberg flair, expertly utilizing the talents of his top-notch creative team.\nWilco fans will have a great time, and the movie should win the band a few new converts, too.\nTsai has a well-deserved reputation as one of the cinema world's great visual stylists, and in this film, every shot enhances the excellent performances.\nThe date movie that Franz Kafka would have made.\nThe fact is that the screen is most alive when it seems most likely that Broomfield's interviewees, or even himself, will not be for much longer.\nLeguizamo and Jones are both excellent and the rest of the cast is uniformly superb.\nI liked this film a lot...\n...there is enough originality in 'Life' to distance it from the pack of paint-by-number romantic comedies that so often end up on cinema screens.\nA solid and refined piece of moviemaking imbued with passion and attitude.\nNettelbeck has crafted an engaging fantasy of flavours and emotions, one part romance novel, one part recipe book.\nWith or without the sex, a wonderful tale of love and destiny, told well by a master storyteller\nOn the surface a silly comedy, Scotland, PA would be forgettable if it weren't such a clever adaptation of the bard's tragic play.\nA weird, arresting little ride.\nA fine film, but it would be a lot better if it stuck to Betty Fisher and left out the other stories.\nA first-class road movie that proves you can run away from home, but your ego and all your problems go with you.\nYou might want to take a reality check before you pay the full ticket price to see ``Simone,'' and consider a DVD rental instead.\nWell cast and well directed - a powerful drama with enough sardonic wit to keep it from being maudlin.\nA backstage must-see for true fans of comedy.\nThere's back-stabbing, inter-racial desire and, most importantly, singing and dancing.\nThe film sounds like the stuff of lurid melodrama, but what makes it interesting as a character study is the fact that the story is told from Paul's perspective.\nJones ... makes a great impression as the writer-director of this little $1.8 million charmer, which may not be cutting-edge indie filmmaking but has a huge heart.\nIn the disturbingly involving family dysfunctional drama How I Killed My Father, French director Anne Fontaine delivers an inspired portrait of male-ridden angst and the emotional blockage that accompanies this human condition\nBelow may not mark Mr. Twohy's emergence into the mainstream, but his promise remains undiminished.\nThere's no reason to miss Interview with the Assassin\nHappily stays close to the ground in a spare and simple manner and doesn't pummel us with phony imagery or music.\nIts sheer dynamism is infectious.\nFor his first attempt at film noir, Spielberg presents a fascinating but flawed look at the near future.\nit somehow managed to make its way past my crappola radar and find a small place in my heart\nPerhaps it's cliche to call the film 'refreshing,' but it is. 'Drumline' shows a level of young, Black manhood that is funny, touching, smart and complicated.\nIt does give a taste of the Burning Man ethos, an appealing blend of counter-cultural idealism and hedonistic creativity.\nThe limited sets and small confined and dark spaces also are homages to a classic low-budget film noir movie.\nThe movie is well done, but slow.\n(A) wonderfully loopy tale of love, longing, and voting.\nThe fascination comes in the power of the Huston performance, which seems so larger than life and yet so fragile, and in the way the Ivan character accepts the news of his illness so quickly but still finds himself unable to react.\nThe last scenes of the film are anguished, bitter and truthful. Mr. Koshashvili is a director to watch.\nPredictable storyline and by-the-book scripting is all but washed away by sumptuous ocean visuals and the cinematic stylings of director John Stockwell.\nAntwone Fisher certainly does the trick of making us care about its protagonist and celebrate his victories but, with few exceptions, it rarely stoops to cheap manipulation or corny conventions to do it.\nOne feels the dimming of a certain ambition, but in its place a sweetness, clarity and emotional openness that recalls the classics of early Italian neorealism.\nIt challenges, this nervy oddity, like modern art should.\nWhenever you think you've figured out Late Marriage, it throws you for a loop.\nThe Pianist is Polanski's best film.\nIt is a testament of quiet endurance, of common concern, of reconciled survival.\nThis Orange has some juice, but it's far from fresh-squeezed.\nA sensitive, modest comic tragedy that works as both character study and symbolic examination of the huge economic changes sweeping modern China.\nHigh Crimes knows the mistakes that bad movies make and is determined not to make them, and maybe that is nobility of a sort.\nCusack's just brilliant in this.\nKnows how to make our imagination wonder.\nJae-eun Jeong's Take Care of My Cat brings a beguiling freshness to a coming-of-age story with such a buoyant, expressive flow of images that it emerges as another key contribution to the flowering of the South Korean cinema.\nThe overall fabric is hypnotic, and Mr. Mattei fosters moments of spontaneous intimacy.\nEvokes a palpable sense of disconnection, made all the more poignant by the incessant use of cell phones.\nMalcolm McDowell is cool. Paul Bettany is cool. Paul Bettany playing Malcolm McDowell? Cool.\nA touching, sophisticated film that almost seems like a documentary in the way it captures an Italian immigrant family on the brink of major changes.\n...a trashy little bit of fluff stuffed with enjoyable performances and a bewildering sense of self-importance\nAn inventive, absorbing movie that's as hard to classify as it is hard to resist.\nIt made me want to get made-up and go see this movie with my sisters. I thought the relationships were wonderful, the comedy was funny, and the love 'real'.\n(Caine) proves once again he hasn't lost his touch, bringing off a superb performance in an admittedly middling film.\nBogdanovich puts history in perspective and, via Kirsten Dunst's remarkable performance, he showcases Davies as a young woman of great charm, generosity and diplomacy.\nThis breezy caper movie becomes a soulful, incisive meditation on the way we were, and the way we are.\nA captivating new film.\nThose who aren't put off by the film's austerity will find it more than capable of rewarding them.\nIt's a clear-eyed portrait of an intensely lived time, filled with nervous energy, moral ambiguity and great uncertainties.\nReveals how important our special talents can be when put in service of of others. It also shows how deeply felt emotions can draw people together across the walls that might otherwise separate them.\nWith the same sort of good-natured fun found in films like Tremors, Eight Legged Freaks is prime escapist fare.\nA sharp, amusing study of the cult of celebrity.\nThe sentimental cliches mar an otherwise excellent film. A powerful performance from Mel Gibson and a brutal 90-minute battle sequence that does everything but issue you a dog-tag and an M-16.\nA graceful, moving tribute to the courage of New York's finest and a nicely understated expression of the grief shared by the nation at their sacrifice.\nA coming-of-age tale from New Zealand whose boozy, languid air is balanced by a rich visual clarity and deeply felt performances across the board.\nMade to be Jaglomized is the Cannes Film Festival, the annual Riviera spree of flesh, buzz, blab and money. The charming result is Festival in Cannes.\nIf you're looking for something new and hoping for something entertaining, you're in luck.\nA hugely rewarding experience that's every bit as enlightening, insightful and entertaining as Grant's two best films -- Four Weddings and a Funeral and Bridget Jones's Diary.\nA rip-roaring comedy action fest that'll put hairs on your chest.\nIf there's no art here, it's still a good yarn -- which is nothing to sneeze at these days.\nSimultaneously heart-breaking and very funny, The Last Kiss is really all about performances.\nThere is a subversive element to this Disney cartoon, providing unexpected fizzability.\nAn unforgettable look at morality, family, and social expectation through the prism of that omnibus tradition called marriage.\nAn enjoyable, if occasionally flawed, experiment.\nMiyazaki is one of world cinema's most wondrously gifted artists and storytellers.\nIf Ayurveda can help us return to a sane regimen of eating, sleeping and stress-reducing contemplation, it is clearly a good thing.\nMeeting, even exceeding expectations, it's the best sequel since The Empire Strikes Back ... a majestic achievement, an epic of astonishing grandeur and surprising emotional depth.\nLeigh is one of the rare directors who feels acting is the heart and soul of cinema. He allows his cast members to make creative contributions to the story and dialogue. This method almost never fails him, and it works superbly here.\nPoetry in motion captured on film. While it can be a bit repetitive, overall it's an entertaining and informative documentary.\nDirecting with a sure and measured hand, (Haneke) steers clear of the sensational and offers instead an unflinching and objective look at a decidedly perverse pathology.\nThe entire movie establishes a wonderfully creepy mood.\nI found The Ring moderately absorbing, largely for its elegantly colorful look and sound.\nThe filmmakers want nothing else than to show us a good time, and in their cheap, B movie way, they succeed.\nAmari has dressed up this little parable in a fairly irresistible package full of privileged moments and memorable performances.\nRabbit-Proof Fence will probably make you angry. But it will just as likely make you weep, and it will do so in a way that doesn't make you feel like a sucker.\nBoth heartbreaking and heartwarming...just a simple fable done in an artless sytle, but it's tremendously moving.\nThis masterfully calibrated psychological thriller thrives on its taut performances and creepy atmosphere even if the screenplay falls somewhat short.\nThe film's sense of imagery gives it a terrible strength, but it's propelled by the acting.\nThe Pianist (is) a supremely hopeful cautionary tale of war's madness remembered that we, today, can prevent its tragic waste of life. Here is a divine monument to a single man's struggle to regain his life, his dignity and his music.\nStrange it is, but delightfully so.\nElegant, mannered and teasing.\nAn average coming-of-age tale elevated by the wholesome twist of a pesky mother interfering during her son's discovery of his homosexuality.\nThe ingenuity that Parker displays in freshening the play is almost in a class with that of Wilde himself.\nDecasia is what has happened already to so many silent movies, newsreels and the like. The unexpected thing is that its dying, in this shower of black-and-white psychedelia, is quite beautiful.\nA droll, bitchy frolic which pokes fun at the price of popularity and small-town pretension in the Lone Star State.\nWith each of her three protagonists, Miller eloquently captures the moment when a woman's life, out of a deep-seated, emotional need, is about to turn onto a different path.\nRyan Gosling ... is at 22 a powerful young actor.\nA minor work yet there's no denying the potency of Miller's strange, fleeting brew of hopeful perseverance and hopeless closure.\nAs an introduction to the man's theories and influence, Derrida is all but useless; as a portrait of the artist as an endlessly inquisitive old man, however, it's invaluable.\nThe film is a verbal duel between two gifted performers.\nImperfect? Yes, but also intriguing and honorable, a worthwhile addition to a distinguished film legacy.\nYou'll get the enjoyable basic minimum. But not a whit more.\nWhat a great way to spend 4 units of your day.\nThe movie is hardly a masterpiece, but it does mark Ms. Bullock's best work in some time.\nAs simple and innocent a movie as you can imagine. This is a movie you can trust.\nPassionate, irrational, long-suffering but cruel as a tarantula, Helga figures prominently in this movie, and helps keep the proceedings as funny for grown-ups as for rugrats.\n``It's all about the image.''\nVividly conveys the passion, creativity, and fearlessness of one of Mexico's most colorful and controversial artists -- a captivating drama that will speak to the nonconformist in us all.\nHollywood Ending is not show-stoppingly hilarious, but scathingly witty nonetheless.\nMaybe Thomas Wolfe was right: You can't go home again.\nA compelling yarn, but not quite a ripping one.\nOn the Granger Movie Gauge of 1 to 10, The Powerpuff Girls is a fast, frenetic, funny, even punny 6 -- aimed specifically at a grade-school audience.\nThe film has several strong performances.\nI've never bought from telemarketers, but I bought this movie.\nPerfectly pitched between comedy and tragedy, hope and despair, About Schmidt instead comes far closer than many movies to expressing the way many of us live -- someplace between consuming self-absorption and insistently demanding otherness.\nThe funny thing is, I didn't mind all this contrived nonsense a bit.\n(Shyamalan) turns the goose-pimple genre on its empty head and fills it with spirit, purpose and emotionally bruised characters who add up to more than body count.\nA sexy, peculiar and always entertaining costume drama set in Renaissance Spain, and the fact that it's based on true events somehow makes it all the more compelling.\nAn entertaining documentary that freshly considers arguments the Bard's immortal plays were written by somebody else.\nA highly spirited, imaginative kid's movie that broaches neo-Augustinian theology: Is God stuck in Heaven because He's afraid of His best-known creation?\nCall it magic realism or surrealism, but Miss Wonton floats beyond reality with a certain degree of wit and dignity.\nRaimi and his team couldn't have done any better in bringing the story of Spider-Man to the big screen.\nThe director explores all three sides of his story with a sensitivity and an inquisitiveness reminiscent of Truffaut.\nWell-acted, well-directed and, for all its moodiness, not too pretentious.\nIt's a satisfying summer blockbuster and worth a look.\nBoomers and their kids will have a Barrie good time.\nReal Women Have Curves wears its empowerment on its sleeve but even its worst harangues are easy to swallow thanks to remarkable performances by Ferrera and Ontiveros.\nUltimately, ``MIB II'' succeeds due to its rapid-fire delivery and enough inspired levity that it can't be dismissed as mindless.\nStage director Sam Mendes showcases Tom Hanks as a depression era hit-man in this dark tale of revenge.\nSitting in the third row of the IMAX cinema at Sydney's Darling Harbour, but I sometimes felt as though I was in the tiny two seater plane that carried the giant camera around Australia, sweeping and gliding, banking and hovering over some of the most not\nThe real charm of this trifle is the deadpan comic face of its star, Jean Reno, who resembles Sly Stallone in a hot sake half-sleep.\nWhat's so fun about this silly, outrageous, ingenious thriller is the director's talent. Watching a Brian DePalma movie is like watching an Alfred Hitchcock movie after drinking twelve beers.\nStrip it of all its excess debris, and you'd have a 90-minute, four-star movie. As it is, it's too long and unfocused.\nAn immensely entertaining look at some of the unsung heroes of 20th century pop music.\nThis familiar rise-and-fall tale is long on glamour and short on larger moralistic consequences, though it's told with sharp ears and eyes for the tenor of the times.\nThis beautifully animated epic is never dull.\nBrian Tufano's handsome widescreen photography and Paul Grabowsky's excellent music turn this fairly parochial melodrama into something really rather special.\nIt makes compelling, provocative and prescient viewing.\nA thoroughly entertaining comedy that uses Grant's own twist of acidity to prevent itself from succumbing to its own bathos.\nUsing a stock plot, About a Boy injects just enough freshness into the proceedings to provide an enjoyable 100 minutes in a movie theater.\nWhat Eric Schaeffer has accomplished with Never Again may not, strictly speaking, qualify as revolutionary. But it's defiantly and delightfully against the grain.\nThe hard-to-predict and absolutely essential chemistry between the down-to-earth Bullock and the nonchalant Grant proves to be sensational, and everything meshes in this elegant entertainment.\nA positively thrilling combination of ethnography and all the intrigue, betrayal, deceit and murder of a Shakespearean tragedy or a juicy soap opera.\nMr. Clooney, Mr. Kaufman and all their collaborators are entitled to take a deep bow for fashioning an engrossing entertainment out of an almost sure-fire prescription for a critical and commercial disaster.\nDefinitely funny stuff, but it's more of the 'laughing at' variety than the 'laughing with.'\nEasily the most thoughtful fictional examination of the root causes of anti-Semitism ever seen on screen.\nA real winner -- smart, funny, subtle, and resonant.\nFamily portrait of need, neurosis and nervy negativity is a rare treat that shows the promise of digital filmmaking.\nThe pitch must have read like a discarded House Beautiful spread.\nUplifting as only a document of the worst possibilities of mankind can be, and among the best films of the year.\nDirector David Jacobson gives Dahmer a consideration that the murderer never game his victims.\nThe film has a terrific look and Salma Hayek has a feel for the character at all stages of her life.\nA decided lack of spontaneity in its execution and a dearth of real poignancy in its epiphanies.\nThe performances are remarkable.\nIt's Burns' visuals, characters and his punchy dialogue, not his plot, that carry waydowntown.\nAs literary desecrations go, this makes for perfectly acceptable, occasionally very enjoyable children's entertainment. You'll forget about it by Monday, though, and if they're old enough to have developed some taste, so will your kids.\nWhile I can't say it's on par with the first one, Stuart Little 2 is a light, fun cheese puff of a movie.\nStrange, funny, twisted, brilliant and macabre.\nA genuinely moving and wisely unsentimental drama.\nHeaven is a haunting dramatization of a couple's moral ascension.\nThe Mothman Prophecies is best when illustrating the demons bedevilling the modern masculine journey.\nPlays out with a dogged and eventually winning squareness that would make it the darling of many a kids-and-family-oriented cable channel.\nAn entertaining British hybrid of comedy, caper thrills and quirky romance.\nAlain Choquart's camera barely stops moving, portraying both the turmoil of the time and giving Conduct a perpetual sense of urgency, which, for a film that takes nearly three hours to unspool, is both funny and irritating.\nMostly Martha could have used a little trimming -- 10 or 15 minutes could be cut and no one would notice -- but it's a pleasurable trifle. The only pain you'll feel as the credits roll is your stomach grumbling for some tasty grub.\nHardly an objective documentary, but it's great cinematic polemic...love Moore or loathe him, you've got to admire...the intensity with which he's willing to express his convictions.\nThe mark of a respectable summer blockbuster is one of two things: unadulterated thrills or genuine laughs.\nThe film is visually dazzling, the depicted events dramatic, funny and poignant.\nA directorial tour de force by Bernard Rose, ivans xtc. is one of this year's very best pictures.\nWhat makes the movie work -- to an admittedly limited extent -- is the commitment of two genuinely engaging performers. Weaver and LaPaglia are both excellent, in the kind of low-key way that allows us to forget that they are actually movie folk.\nEven the digressions are funny.\nMr. Spielberg and his company just want you to enjoy yourselves without feeling conned. And they succeed merrily at their noble endeavor.\nMelodrama with a message.\nA perfectly pleasant if slightly pokey comedy.\nCoppola's directorial debut is an incredibly layered and stylistic film that, despite a fairly slow paced, almost humdrum approach to character development, still manages at least a decent attempt at meaningful cinema.\nAt the end, when the now computerized Yoda finally reveals his martial artistry, the film ascends to a kinetic life so teeming that even cranky adults may rediscover the quivering kid inside.\nWang Xiaoshuai directs this intricately structured and well-realized drama that presents a fascinating glimpse of urban life and the class warfare that embroils two young men.\nIt's hard to imagine anybody ever being ``in the mood'' to view a movie as harrowing and painful as The Grey Zone, but it's equally hard to imagine anybody being able to tear their eyes away from the screen once it's started.\nBogdanovich taps deep into the Hearst mystique, entertainingly reenacting a historic scandal.\nA moving tale of love and destruction in unexpected places, unexamined lives.\nClooney directs this film always keeping the balance between the fantastic and the believable...\nEven if you don't understand what on earth is going on, this is a movie that will stimulate hours of post viewing discussion, if only to be reminded of who did what to whom and why.\n... a lesson in prehistoric hilarity.\nA fantastically vital movie that manages to invest real humor, sensuality, and sympathy into a story about two adolescent boys.\nLawrence plumbs personal tragedy and also the human comedy.\nThough a capable thriller, somewhere along the way K-19 jettisoned some crucial drama.\nJust about the surest bet for an all-around good time at the movies this summer.\nIt would be disingenuous to call Reno a great film, but you can say that about most of the flicks moving in and out of the multiplex. This is a movie that is what it is: a pleasant distraction, a Friday night diversion, an excuse to eat popcorn.\nThere is a certain sense of experimentation and improvisation to this film that may not always work, but it is nevertheless compelling.\nThe Four Feathers has rewards, from the exoticism of its seas of sand to the fierce grandeur of its sweeping battle scenes.\nA delicious, quirky movie with a terrific screenplay and fanciful direction by Michael Gondry.\nThis story still seems timely and important. And there's an element of heartbreak to watching it now, with older and wiser eyes, because we know what will happen after Greene's story ends.\nThe bodily function jokes are about what you'd expect, but there are rich veins of funny stuff in this movie.\nThe performances are amiable and committed, and the comedy more often than not hits the bullseye.\nThis time, the hype is quieter, and while the movie is slightly less successful than the first, it's still a rollicking good time for the most part.\nThere's plenty to enjoy -- in no small part thanks to Lau.\nWith a romantic comedy plotline straight from the ages, this Cinderella story doesn't have a single surprise up its sleeve. But it does somehow manage to get you under its spell.\nThough few will argue that it ranks with the best of Herzog's works, Invincible shows he's back in form, with an astoundingly rich film.\n``Catch Me'' feels capable of charming the masses with star power, a pop-induced score and sentimental moments that have become a Spielberg trademark.\nBy no means a great movie, but it is a refreshingly forthright one.\nThe casting of Raymond J. Barry as the 'assassin' greatly enhances the quality of Neil Burger's impressive fake documentary.\nDespite Besson's high-profile name being Wasabi's big selling point, there is no doubt that Krawczyk deserves a huge amount of the credit for the film's thoroughly winning tone.\nThis documentary is a dazzling, remarkably unpretentious reminder of what (Evans) had, lost, and got back.\nA thoughtful movie, a movie that is concerned with souls and risk and schemes and the consequences of one's actions.\nAs satisfyingly odd and intriguing a tale as it was a century and a half ago...has a delightfully dour, deadpan tone and stylistic consistency.\nMethodical, measured, and gently tedious in its comedy, Secret Ballot is a purposefully reductive movie -- which may be why it's so successful at lodging itself in the brain.\nA witty, trenchant, wildly unsentimental but flawed look at the ins and outs of modern moviemaking.\nFor most of the distance the picture provides a satisfyingly unsettling ride into the dark places of our national psyche.\nBy the standards of knucklehead swill, The Hot Chick is pretty damned funny.\nOne of the most gloriously unsubtle and adrenalized extreme shockers since The Evil Dead.\n(Reaches) wholly believable and heart-wrenching depths of despair.\nAn absorbing and unsettling psychological drama.\nThis movie may not have the highest production values you've ever seen, but it's the work of an artist, one whose view of America, history and the awkwardness of human life is generous and deep.\nThough it's not very well shot or composed or edited, the score is too insistent and the dialogue is frequently overwrought and crudely literal, the film shatters you in waves.\nThe entire cast is extraordinarily good.\nYakusho, as always, is wonderful as the long-faced sad sack ... and his chemistry with Shimizu is very believable.\nYoung Hanks and Fisk, who vaguely resemble their celebrity parents, bring fresh good looks and an ease in front of the camera to the work.\nA captivatingly quirky hybrid of character portrait, romantic comedy and beat-the-clock thriller.\nThe film sparkles with the the wisdom and humor of its subjects.\nIf (Jaglom's) latest effort is not the director at his most sparkling, some of its repartee is still worth hearing.\nLike The English Patient and The Unbearable Lightness of Being, The Hours is one of those reputedly ``unfilmable'' novels that has bucked the odds to emerge as an exquisite motion picture in its own right.\nJust about the best straight-up, old-school horror film of the last 15 years.\nA chilling tale of one of the great crimes of 20th Century France: the murder of two rich women by their servants in 1933.\nAn oddity, to be sure, but one that you might wind up remembering with a degree of affection rather than revulsion.\nWhile the film is not entirely successful, it still manages to string together enough charming moments to work.\nA winning piece of work filled with love for the movies of the 1960s.\nE.T. works because its flabbergasting principals, 14-year-old Robert MacNaughton, 6-year-old Drew Barrymore and 10-year-old Henry Thomas, convince us of the existence of the wise, wizened visitor from a faraway planet.\nHelps to remind the First World that HIV/AIDS is far from being yesterday's news.\nA heartening tale of small victories and enduring hope.\nThe vistas are sweeping and the acting is far from painful.\nJackson and co have brought back the value and respect for the term epic cinema.\nIt may be a somewhat backhanded compliment to say that the film makes the viewer feel like the movie's various victimized audience members after a while, but it also happens to be the movie's most admirable quality\nCharlotte Sometimes is a brilliant movie. It is about irrational, unexplainable life and it seems so real because it does not attempt to filter out the complexity.\nA delightful stimulus for the optic nerves, so much that it's forgivable that the plot feels like every other tale of a totalitarian tomorrow.\nDefies logic, the laws of physics and almost anyone's willingness to believe in it. But darned if it doesn't also keep us riveted to our seats.\nA complex psychological drama about a father who returns to his son's home after decades away.\nWriter and director Otar Iosseliani's pleasant tale about a factory worker who escapes for a holiday in Venice reveals how we all need a playful respite from the grind to refresh our souls.\nThis is NOT a retread of ``Dead Poets' Society.''\nSweet and memorable film.\nA smart, arch and rather cold-blooded comedy.\nKeenly observed and refreshingly natural, Swimming gets the details right, from its promenade of barely clad bodies in Myrtle Beach, S.C., to the adrenaline jolt of a sudden lunch rush at the diner.\n...begins on a high note and sustains it beautifully.\nDavis ... gets vivid performances from her cast and pulls off some deft Ally McBeal-style fantasy sequences.\n'it's better to go in knowing full well what's going to happen, but willing to let the earnestness of its execution and skill of its cast take you down a familiar road with a few twists. Cynics need not apply.'\nFunny, somber, absurd, and, finally, achingly sad, Bartleby is a fine, understated piece of filmmaking.\n``Red Dragon'' is entertaining. An obvious copy of one of the best films ever made, how could it not be? But it is entertaining on an inferior level. It is a popcorn film, not a must-own, or even a must-see.\nSucceeds only because Bullock and Grant were made to share the silver screen.\nBoth flawed and delayed, Martin Scorcese's Gangs of New York still emerges as his most vital work since GoodFellas.\nAs any creature-feature fan knows, when you cross toxic chemicals with a bunch of exotic creatures, you get a lot of running around, screaming and death. On that score, the film certainly doesn't disappoint.\nAs the movie traces Mr. Brown's athletic exploits, it is impossible not to be awed by the power and grace of one of the greatest natural sportsmen of modern times.\nA moving and solidly entertaining comedy/drama that should bolster director and co-writer Juan José Campanella's reputation in the United States.\nThanks to confident filmmaking and a pair of fascinating performances, the way to that destination is a really special walk in the woods.\nBeautifully shot, delicately scored and powered by a set of heartfelt performances, it's a lyrical endeavour.\nA macabre and very stylized Swedish fillm about a modern city where all the religious and civic virtues that hold society in place are in tatters.\nA stylistic romp that's always fun to watch.\nInformative, intriguing, observant, often touching...gives a human face to what's often discussed in purely abstract terms.\n...once the true impact of the day unfolds, the power of this movie is undeniable.\nAn honest, sensitive story from a Vietnamese point of view.\nA buoyant romantic comedy about friendship, love, and the truth that we're all in this together.\nThe film's intimate camera work and searing performances pull us deep into the girls' confusion and pain as they struggle tragically to comprehend the chasm of knowledge that's opened between them.\nIt's the perfect star vehicle for Grant, allowing him to finally move away from his usual bumbling, tongue-tied screen persona.\nGaunt, silver-haired and leonine, (Harris) brings a tragic dimension and savage full-bodied wit and cunning to the aging Sandeman.\nA disturbing examination of what appears to be the definition of a 'bad' police shooting.\nIt's been made with an innocent yet fervid conviction that our Hollywood has all but lost.\nNot only a reminder of how they used to make movies, but also how they sometimes still can be made.\nA three-hour cinema master class.\nEyre is on his way to becoming the American Indian Spike Lee.\nA witty, whimsical feature debut.\nWarm in its loving yet unforgivingly inconsistent depiction of everyday people, relaxed in its perfect quiet pace and proud in its message. I loved this film.\nIt provides a grim, upsetting glimpse at the lives of some of the 1.2 million Palestinians who live in the crowded cities and refugee camps of Gaza.\nClint Eastwood's Blood Work is a lot like a well-made PB& J sandwich: familiar, fairly uneventful and boasting no real surprises – but still quite tasty and inviting all the same.\nA movie that will surely be profane, politically charged music to the ears of Cho's fans.\nMuch of this slick and sprightly CGI feature is sufficiently funny to amuse even the most resolutely unreligious parents who escort their little ones to megaplex screenings.\nRarely, a movie is more than a movie. Go.\nJacquot's strategy allows his cast the benefit of being able to give full performances ... while demonstrating vividly that the beauty and power of the opera reside primarily in the music itself.\nQuitting delivers a sucker-punch, and its impact is all the greater beause director Zhang's last film, the cuddly Shower, was a non-threatening multi-character piece centered around a public bath house.\nBy not averting his eyes, Solondz forces us to consider the unthinkable, the unacceptable, the unmentionable.\nOne Hour Photo may seem disappointing in its generalities, but it's the little nuances that perhaps had to escape from director Mark Romanek's self-conscious scrutiny to happen, that finally get under your skin.\nWhile general audiences might not come away with a greater knowledge of the facts of Cuban music, they'll be treated to an impressive and highly entertaining celebration of its sounds.\nA fascinating documentary that provides a rounded and revealing overview of this ancient holistic healing system\nBirthday Girl lucks out with Chaplin and Kidman, who are capable of anteing up some movie star charisma when they need it to sell us on this twisted love story, but who can also negotiate the movie's darker turns.\nAn interesting look behind the scenes of Chicago-based rock group Wilco...\nSharp edges and a deep vein of sadness run through its otherwise comic narrative.\nThere's lots of cool stuff packed into ESPN's Ultimate X.\nRock solid family fun out of the gates, extremely imaginative through out, but wanes in the middle\nThe Ya-Ya's have many secrets and one is - the books are better. Translating complex characters from novels to the big screen is an impossible task but they are true to the essence of what it is to be Ya-Ya.\nThe touch is generally light enough and the performances, for the most part, credible.\nI liked About Schmidt a lot, but I have a feeling that I would have liked it much more if Harry & Tonto never existed.\nSteers has an unexpectedly adamant streak of warm-blooded empathy for all his disparate Manhattan denizens--especially the a**holes.\nThat Storytelling has value cannot be denied. Not even Solondz's thirst for controversy, sketchy characters and immature provocations can fully succeed at cheapening it.\nOnce the downward spiral comes to pass, Auto Focus bears out as your typical junkie opera...\nA knowing sense of humor and a lot of warmth ignite Son of the Bride.\nA rich tale of our times, very well told with an appropriate minimum of means.\nThe characters are complex and quirky, but entirely believable as the remarkable ensemble cast brings them to life.\nIn all fairness, I must report that the children of varying ages in my audience never coughed, fidgeted or romped up and down the aisles for bathroom breaks.\nAs gory as the scenes of torture and self-mutilation may be, they are pitted against shimmering cinematography that lends the setting the ethereal beauty of an Asian landscape painting.\nEfficient, suitably anonymous chiller.\nGorgeous scenes, masterful performances, but the sickly sweet gender normative narrative left an acrid test in this gourmet's mouth.\nThe hot topics of the plot are relegated to the background -- a welcome step forward from the Sally Jesse Raphael atmosphere of films like Philadelphia and American Beauty.\nIt's usually a bad sign when directors abandon their scripts and go where the moment takes them, but Olympia, Wash., based filmmakers Anne de Marcken and Marilyn Freeman did just that and it's what makes their project so interesting.\nA memorable experience that, like many of his works, presents weighty issues colorfully wrapped up in his own idiosyncratic strain of kitschy goodwill.\nExecuted with such gentle but insistent sincerity, with such good humor and appreciation of the daily grind that only the most hardhearted Scrooge could fail to respond.\nThe gentle comic treatment of adolescent sturm und drang should please fans of Chris Fuhrman's posthumously published cult novel.\nDirector Claude Chabrol has become the master of innuendo. It is not what you see, it is what you think you see.\nA deftly entertaining film, smartly played and smartly directed.\nA documentary to make the stones weep -- as shameful as it is scary.\nI hope the movie is widely seen and debated with appropriate ferocity and thoughtfulness.\nA thought-provoking look at how Western foreign policy - however well intentioned - can wreak havoc in other cultures.\nAsks what truth can be discerned from non-firsthand experience, and specifically questions cinema's capability for recording truth.\nThe journey to the secret's eventual discovery is a separate adventure, and thrill enough.\nA quiet, disquieting triumph.\nDarkly funny and frequently insightful.\n...the tale of her passionate, tumultuous affair with Musset unfolds as Sand's masculine persona, with its love of life and beauty, takes form.\nIf you want to see a train wreck that you can't look away from, then look no further, because here it is.\nThere's so much to look at in Metropolis you hate to tear your eyes away from the images long enough to read the subtitles.\nThe search for redemption makes for a touching love story, mainly because Blanchett and Ribisi compellingly tap into a spiritual aspect of their characters' suffering.\nA film of ideas and wry comic mayhem.\nAt its worst the screenplay is callow, but at its best it is a young artist's thoughtful consideration of fatherhood.\nA worthwhile documentary, whether you're into rap or not, even if it may still leave you wanting more answers as the credits roll.\nFessenden's narrative is just as much about the ownership and redefinition of myth as it is about a domestic unit finding their way to joy.\nThat the film opens with maggots crawling on a dead dog is not an out of place metaphor.\nStanley Kwan has directed not only one of the best gay love stories ever made, but one of the best love stories of any stripe.\nThe concert footage is stirring, the recording sessions are intriguing, and -- on the way to striking a blow for artistic integrity -- this quality band may pick up new admirers.\nNorton holds the film together.\n(There's) quite a bit of heart, as you would expect from the directors of The Little Mermaid and Aladdin.\nYou won't have any trouble getting kids to eat up these Veggies.\nA creaky staircase gothic.\nEnjoyably dumb, sweet, and intermittently hilarious -- if you've a taste for the quirky, steal a glimpse.\nA movie that sends you out of the theater feeling like you've actually spent time living in another community.\nLight-years ahead of paint-by-number American blockbusters like Pearl Harbor, at least artistically.\nA fascinating documentary about the long and eventful spiritual journey of the guru who helped launch the New Age.\nIsabelle Huppert excels as the enigmatic Mika and Anna Mouglalis is a stunning new young talent in one of Chabrol's most intense psychological mysteries.\nPerhaps not since Nelson Eddy crooned his Indian Love Call to Jeanette MacDonald has there been a movie so unabashedly Canadian, not afraid to risk American scorn or disinterest.\nWedding feels a bit anachronistic. Still, not every low-budget movie must be quirky or bleak, and a happy ending is no cinematic sin.\nIt's still a comic book, but Maguire makes it a comic book with soul.\nBrings to a spectacular completion one of the most complex, generous and subversive artworks of the last decade.\nAn amusing and unexpectedly insightful examination of sexual jealousy, resentment and the fine line between passion and pretence.\nA fascinating, bombshell documentary that should shame Americans, regardless of whether or not ultimate blame finally lies with Kissinger. Should be required viewing for civics classes and would-be public servants alike.\nAdaptation's success in engaging the audience in the travails of creating a screenplay is extraordinary.\nA polished and vastly entertaining caper film that puts the sting back into the con.\nIt's no surprise that as a director Washington demands and receives excellent performances, from himself and from newcomer Derek Luke.\n... while each moment of this broken character study is rich in emotional texture, the journey doesn't really go anywhere.\nThe film gets close to the chimps the same way Goodall did, with a serious minded patience, respect and affection.\nIt's an often-cute film but either needs more substance to fill the time or some judicious editing.\nThis may be Burns's strongest film since The Brothers McMullen.\nWhat makes this film special is Serry's ability to take what is essentially a contained family conflict and put it into a much larger historical context.\nIt's Quaid who anchors the film with his effortless performance and that trademark grin of his -- so perfect for a ballplayer.\nIt is OK for a movie to be something of a sitcom apparatus, if the lines work, the humor has point and the actors are humanly engaged.\nThough not for everyone, The Guys is a somber trip worth taking.\nA sly female empowerment movie, although not in a way anyone would expect.\nYou really have to salute writer-director Haneke (he adapted Elfriede Jelinek's novel) for making a film that isn't nearly as graphic but much more powerful, brutally shocking and difficult to watch.\nIt's a wonderful, sobering, heart-felt drama.\nRuns on the pure adrenalin of Pacino's performance.\nThe Paradiso's rusted-out ruin and ultimate collapse during the film's final (restored) third...emotionally belittle a cinema classic. Sometimes shorter is better.\nPhillip Noyce and all of his actors -- as well as his cinematographer, Christopher Doyle -- understand the delicate forcefulness of Greene's prose, and it's there on the screen in their version of The Quiet American.\nThe film just might turn on many people to opera, in general, an art form at once visceral and spiritual, wonderfully vulgar and sublimely lofty -- and as emotionally grand as life.\nAs a vehicle to savour Binoche's skill, the film is well worthwhile.\nThe huskies are beautiful, the border collie is funny and the overall feeling is genial and decent.\nWhatever complaints I might have, I'd take (its) earnest errors and hard-won rewards over the bombastic self-glorification of other feel-good fiascos like Antwone Fisher or The Emperor's Club any time.\nMastering its formidable arithmetic of cameras and souls, Group articulates a flood of emotion.\nA pretty decent kid-pleasing, tolerable-to-adults lark of a movie.\nEven during the climactic hourlong cricket match, boredom never takes hold.\nCombine the paranoid claustrophobia of a submarine movie with the unsettling spookiness of the supernatural -- why didn't Hollywood think of this sooner?\nLike Kubrick, Soderbergh isn't afraid to try any genre and to do it his own way.\nNothing can detract from the affection of that moral favorite: friends will be friends through thick and thin.\nIf the film has a problem, its shortness disappoints: You want the story to go on and on.\nUnlike most anime, whose most ardent fans outside Japan seem to be introverted young men with fantasy fetishes, Metropolis never seems hopelessly juvenile.\nThe plot twists give I Am Trying to Break Your Heart an attraction it desperately needed.\nThe most brilliant and brutal UK crime film since Jack Carter went back to Newcastle, the first half of Gangster No. 1 drips with style and, at times, blood.\nLike its New England characters, most of whom wander about in thick clouds of denial, the movie eventually gets around to its real emotional business, striking deep chords of sadness.\nThe Bai brothers have taken an small slice of history and opened it up for all of us to understand, and they've told a nice little story in the process.\nFlamboyant in some movies and artfully restrained in others, 65-year-old Jack Nicholson could be looking at his 12th Oscar nomination by proving that he's now, more than ever, choosing his roles with the precision of the insurance actuary.\n...is there a deeper, more direct connection between these women, one that spans time and reveals meaning? You bet there is and it's what makes this rather convoluted journey worth taking.\nThe most amazing super-sized dosage of goofball stunts any ``Jackass'' fan could want.\nReal Women may have many agendas, but it also will win you over, in a big way.\nYoung Everlyn Sampi, as the courageous Molly Craig, simply radiates star-power potential in this remarkable and memorable film.\nSurprisingly powerful and universal.\nApart from its own considerable achievement, Metropolis confirms Tezuka's status as both the primary visual influence on the animé tradition and its defining philosophical conscience.\nI'll put it this way: If you're in the mood for a melodrama narrated by talking fish, this is the movie for you.\nMorvern Callar confirms Lynne Ramsay as an important, original talent in international cinema.\nWell-done supernatural thriller with keen insights into parapsychological phenomena and the soulful nuances of the grieving process.\nA plethora of engaging diatribes on the meaning of 'home,' delivered in grand passion by the members of the various households.\nIt's technically sumptuous but also almost wildly alive.\nThis film puts Wang at the forefront of China's Sixth Generation of film makers.\nit's refreshing to see a movie that embraces its old-fashioned themes and in the process comes out looking like something wholly original.\nWiseman is patient and uncompromising, letting his camera observe and record the lives of women torn apart by a legacy of abuse.\nThere's none of the happily-ever -after spangle of Monsoon Wedding in Late Marriage -- and that's part of what makes Dover Kosashvili's outstanding feature debut so potent.\nAn ingenious and often harrowing look at damaged people and how families can offer either despair or consolation.\nArguably the best script that Besson has written in years.\nIt's no lie -- Big Fat Liar is a real charmer.\nInvigorating, surreal, and resonant with a rainbow of emotion.\nDirector Alfonso Cuaron gets vivid, convincing performances from a fine cast, and generally keeps things going at a rapid pace, occasionally using an omniscient voice-over narrator in the manner of French New Wave films.\nPray has really done his subject justice.\nAn unexpectedly sweet story of sisterhood.\nMaintains your sympathy for this otherwise challenging soul by letting you share her one-room world for a while.\nA subtle, humorous, illuminating study of politics, power and social mobility.\nEven if you have no interest in the gang-infested, East-vs.-West Coast rap wars, this modern mob music drama never fails to fascinate.\nNair's attention to detail creates an impeccable sense of place, while Thurman and Lewis give what can easily be considered career-best performances.\nBerry's saucy, full-bodied performance gives this aging series a much needed kick, making ``Die Another Day'' one of the most entertaining Bonds in years\nRed Dragon is less baroque and showy than Hannibal, and less emotionally affecting than Silence. But, like Silence, it's a movie that gets under your skin.\nCaviezel embodies the transformation of his character completely.\nA creepy, intermittently powerful study of a self-destructive man...about as unsettling to watch as an exploratory medical procedure or an autopsy.\nPacino and Williams seem to keep upping the ante on each other, just as their characters do in the film. What results is the best performance from either in years.\nThe cast is top-notch and I predict there will be plenty of female audience members drooling over Michael Idemoto as Michael.\nBéart and Berling are both superb, while Huppert ... is magnificent.\nAll the actors are good in Pauline & Paulette but van der Groen, described as 'Belgium's national treasure,' is especially terrific as Pauline.\nMiyazaki has created such a vibrant, colorful world, it's almost impossible not to be swept away by the sheer beauty of his images.\nMuccino seems to be exploring the idea of why human beings long for what they don't have, and how this gets us in trouble. But even while his characters are acting horribly, he is always sympathetic.\nWhether or not you buy Mr. Broomfield's findings, the film acquires an undeniable entertainment value as the slight, pale Mr. Broomfield continues to force himself on people and into situations that would make lesser men run for cover.\nOzpetek joins the ranks of those gay filmmakers who have used the emigre experience to explore same-sex culture in ways that elude the more nationally settled.\n...an eerily suspenseful, deeply absorbing piece that works as a treatise on spirituality as well as a solid sci-fi thriller.\nI've never seen or heard anything quite like this film, and I recommend it for its originality alone.\nNicole Kidman makes it a party worth attending.\nThe direction has a fluid, no-nonsense authority, and the performances by Harris, Phifer and Cam'ron seal the deal.\nThe Komediant is a tale worth catching.\nThe writing is clever and the cast is appealing.\nThe simplicity of The Way Home has few equals this side of Aesop\nLife on the rez is no picnic: this picture shows you why.\nSpielberg has managed to marry science fiction with film noir and action flicks with philosophical inquiry.\nIt's the type of film about growing up that we don't see often enough these days: realistic, urgent, and not sugarcoated in the least.\nA taut, sobering film.\nExudes the fizz of a Busby Berkeley musical and the visceral excitement of a sports extravaganza.\nIt's full of cheesy dialogue, but great trashy fun that finally returns De Palma to his pulpy thrillers of the early '80s.\nThe results, if not memorable, are at least interesting.\nA quietly moving look back at what it was to be Iranian-American in 1979.\nLike a veteran head cutter, Barbershop is tuned in to its community.\nI'm sure mainstream audiences will be baffled, but, for those with at least a minimal appreciation of Woolf and Clarissa Dalloway, The Hours represents two of those well spent.\nYou live the mood rather than savour the story.\nAngela Gheorghiu as famous prima donna Floria Tosca, Roberto Alagna as her lover Mario Cavaradossi, and Ruggero as the villainous, lecherous police chief Scarpia, all sing beautifully and act adequately.\nWhile there are times when the film's reach exceeds its grasp, the production works more often than it doesn't.\nWhile Scorsese's bold images and generally smart casting ensure that ``Gangs'' is never lethargic, the movie is hindered by a central plot that's peppered with false starts and populated by characters who are nearly impossible to care about.\nWatching this gentle, mesmerizing portrait of a man coming to terms with time, you barely realize your mind is being blown.\nThe beautifully choreographed kitchen ballet is simple but absorbing.\nThere's...an underlying Old World sexism to Monday Morning that undercuts its charm.\n``The best Disney movie since the Lion King''\nTranscends its agenda to deliver awe-inspiring, at times sublime, visuals and offer a fascinating glimpse into the subculture of extreme athletes whose derring-do puts the X into the games.\nThink of it as Gidget, only with muscles and a lot more smarts, but just as endearing and easy to watch.\nThere is no solace here, no entertainment value, merely a fierce lesson in where filmmaking can take us.\nGiggling at the absurdities and inconsistencies is part of the fun. But the talented cast alone will keep you watching, as will the fight scenes.\nArteta paints a picture of lives lived in a state of quiet desperation.\nDrug abuse, infidelity and death aren't usually comedy fare, but Turpin's film allows us to chuckle through the angst.\nWhile Insomnia is in many ways a conventional, even predictable remake, Nolan's penetrating undercurrent of cerebral and cinemantic flair lends (it) stimulating depth.\nEfteriades gives the neighborhood -- scenery, vibe and all -- the cinematic equivalent of a big, tender hug.\nThis is a nicely handled affair, a film about human darkness but etched with a light (yet unsentimental) touch.\nAmazing! A college story that works even without vulgarity, sex scenes, and cussing!\nThe amazing film work is so convincing that by movies' end you'll swear you are wet in some places and feel sand creeping in others.\nA raunchy and frequently hilarious follow-up to the gifted Korean American stand-up's I'm the One That I Want.\nIf you ever wanted to be an astronaut, this is the ultimate movie experience - it's informative and breathtakingly spectacular.\nWhile Parker and co-writer Catherine di Napoli are faithful to Melville's plotline, they and a fully engaged supporting cast ... have made the old boy's characters more quick-witted than any English Lit major would have thought possible.\nA smart, sassy and exceptionally charming romantic comedy.\nThere are flaws, but also stretches of impact and moments of awe; we're wrapped up in the characters, how they make their choices, and why.\nA gift to anyone who loves both dance and cinema\nIt seems Grant doesn't need the floppy hair and the self-deprecating stammers after all.\nA reminder that beyond all the hype and recent digital glitz, Spielberg knows how to tell us about people.\nOne of the finest, most humane and important Holocaust movies ever made.\nAn engrossing and infectiously enthusiastic documentary.\nA beautiful, timeless and universal tale of heated passions -- jealousy, betrayal, forgiveness and murder.\nA culture-clash comedy that, in addition to being very funny, captures some of the discomfort and embarrassment of being a bumbling American in Europe.\nShattering, devastating documentary on two maladjusted teens in a downward narcotized spiral. Extraordinary debut from Josh Koury.\nThe most compelling performance of the year adds substantial depth to this shocking testament to anti-Semitism and neo-fascism.\nFor those who are intrigued by politics of the '70s, the film is every bit as fascinating as it is flawed.\nAll right, so it's not a brilliant piece of filmmaking, but it is a funny (sometimes hilarious) comedy with a deft sense of humor about itself, a playful spirit and a game cast.\nDouglas McGrath's Nicholas Nickleby does Dickens as it should be done cinematically.\nIt's a lovely, eerie film that casts an odd, rapt spell.\nThe quirky and recessive charms of co-stars Martin Donovan and Mary-Louise Parker help overcome the problematic script.\nIt's good to see Michael Caine whipping out the dirty words and punching people in the stomach again.\nYou just know something terrible is going to happen. But when it does, you're entirely unprepared.\nIt's fun, wispy, wise and surprisingly inoffensive for a film about a teen in love with his stepmom.\nAble to provide insight into a fascinating part of theater history.\nAn unflinching, complex portrait of a modern Israel that is rarely seen on-screen.\nA Jewish WW II doc that isn't trying simply to out-shock, out-outrage or out-depress its potential audience! Who knew...\nIt's a familiar story, but one that is presented with great sympathy and intelligence.\nGently humorous and touching.\nIt won't hold up over the long haul, but in the moment, Finch's tale provides the forgettable pleasures of a Saturday matinee.\nKinnear's performance is a career-defining revelation.\nThe film is predictable in the reassuring manner of a beautifully sung holiday carol.\n...hits every cliche we've come to expect, including the assumption that ``crazy'' people are innocent, childlike and inherently funny.\nThe strong subject matter continues to shock throughout the film. Not everyone will play the dark, challenging tune taught by The Piano Teacher.\nA certain sexiness underlines even the dullest tangents.\nYou may be captivated, as I was, by its moods, and by its subtly transformed star, and still wonder why Paul Thomas Anderson ever had the inclination to make the most sincere and artful movie in which Adam Sandler will probably ever appear.\nThere is no substitute for on-screen chemistry, and when Friel pulls the strings that make Williams sink into melancholia, the reaction in Williams is as visceral as a gut punch.\nThat old adage about women being unknowable gets an exhilarating new interpretation in Morvern Callar.\nA mix of gritty realism, crisp storytelling and radiant compassion that effortlessly draws you in.\nAfter watching it, you can only love the players it brings to the fore for the gifted but no-nonsense human beings they are and for the still-inestimable contribution they have made to our shared history.\nIn his U.S. debut, Mr. Schnitzler proves himself a deft pace master and stylist.\nUltimate X is a ride, basically the kind of greatest-hits reel that might come with a subscription to ESPN the Magazine.\nRich in shadowy metaphor and as sharp as a samurai sword, Jiang Wen's Devils on the Doorstep is a wartime farce in the alternately comic and gut-wrenching style of Joseph Heller or Kurt Vonnegut.\nOffers a clear-eyed chronicle of a female friendship that is more complex and honest than anything represented in a Hollywood film.\nA winning comedy with its wry observations about long-lived friendships and the ways in which we all lose track of ourselves by trying to please others.\nIts cast full of caffeinated comedy performances more than make up for its logical loopholes, which fly by so fast there's no time to think about them anyway.\nLohman adapts to the changes required of her, but the actress and director Peter Kosminsky never get the audience to break through the wall her character erects\nAlthough it includes a fair share of dumb drug jokes and predictable slapstick, ``Orange County'' is far funnier than it would seem to have any right to be.\nFor a movie audience, The Hours doesn't connect in a neat way, but introduces characters who illuminate mysteries of sex, duty and love.\nA bright, inventive, thoroughly winning flight of revisionist fancy.\nOzpetek's effort has the scope and shape of an especially well-executed television movie.\nAffirms the gifts of all involved, starting with Spielberg and going right through the ranks of the players -- on-camera and off -- that he brings together.\nA delightful little film that revels in its own simplicity, Mostly Martha will leave you with a smile on your face and a grumble in your stomach.\nMakes one thing abundantly clear. American musical comedy as we know it wouldn't exist without the precedent of Yiddish theater, whose jolly, fun-for-fun's-sake communal spirit goes to the essence of Broadway.\nDeepa Mehta provides an accessible introduction as well as some intelligent observations on the success of Bollywood in the Western world.\nIf anything, the film is doing something of a public service -- shedding light on a group of extremely talented musicians who might otherwise go unnoticed and underappreciated by music fans.\nIn addition to gluing you to the edge of your seat, Changing Lanes is also a film of freshness, imagination and insight.\nPan Nalin's exposition is beautiful and mysterious, and the interviews that follow, with the practitioners of this ancient Indian practice, are as subtle and as enigmatic.\nThe mood, look and tone of the film fit the incredible storyline to a T.\nIt's crafty, energetic and smart -- the kid is sort of like a fourteen-year old Ferris Bueller.\nA work of extraordinary journalism, but it is also a work of deft and subtle poetry.\nIt's funny and human and really pretty damned wonderful, all at once.\nAt 78 minutes it just zings along with vibrance and warmth.\nA strangely stirring experience that finds warmth in the coldest environment and makes each crumb of emotional comfort feel like a 10-course banquet.\nSometimes this 'Blood' seems as tired as its protagonist...Still, the pulse never disappears entirely, and the picture crosses the finish line winded but still game.\nThe stripped-down dramatic constructs, austere imagery and abstract characters are equal parts poetry and politics, obvious at times but evocative and heartfelt.\nDogtown and Z-Boys more than exposes the roots of the skateboarding boom that would become ``the punk kids' revolution.''\n...plenty of warmth to go around, with music and laughter and the love of family.\nIt'll keep you wide awake and ... very tense.\nCould use a little more humanity, but it never lacks in eye-popping visuals.\n(Danny Huston gives) an astounding performance that deftly, gradually reveals a real human soul buried beneath a spellbinding serpent's smirk.\nThese three films form a remarkably cohesive whole, both visually and thematically, through their consistently sensitive and often exciting treatment of an ignored people.\nA funny and well-contructed black comedy where the old adage ``be careful what you wish for'' is given a full workout.\nIt reaffirms life as it looks in the face of death.\nThe film is reasonably entertaining, though it begins to drag two-thirds through, when the melodramatic aspects start to overtake the comedy.\nThis is more fascinating -- being real -- than anything seen on Jerry Springer.\nA different movie -- sometimes tedious -- by a director many viewers would like to skip but film buffs should get to know.\nWilliams plays Sy, another of his open-faced, smiling madmen, like the killer in Insomnia. He does this so well you don't have the slightest difficulty accepting him in the role.\nTwist open the Ouzo! It's time to let your hair down – Greek style. A vibrant whirlwind of love, family and all that goes with it, My Big Fat Greek Wedding is a non-stop funny feast of warmth, colour and cringe.\nThought-provoking and stylish, if also somewhat hermetic.\nBroomfield is energized by Volletta Wallace's maternal fury, her fearlessness, and because of that, his film crackles.\nWhile it has definite weaknesses -- like a rather unbelievable love interest and a meandering ending -- this '60s caper film is a riveting, brisk delight.\nFunny in a sick, twisted sort of way.\nIf cinema had been around to capture the chaos of France in the 1790's, one imagines the result would look like something like this.\nIt's a talking head documentary, but a great one.\nThe Fast Runner' transports the viewer into an unusual space\nUltimately engages less for its story of actorly existential despair than for its boundary-hopping formal innovations and glimpse into another kind of Chinese 'cultural revolution.'\n...a solid, well-formed satire.\nAs part of Mr. Dong's continuing exploration of homosexuality in America, Family Fundamentals is an earnest study in despair.\nMost consumers of lo mein and General Tso's chicken barely give a thought to the folks who prepare and deliver it, so, hopefully, this film will attach a human face to all those little steaming cartons.\nHatosy ... portrays young Brendan with his usual intelligence and subtlety, not to mention a convincing brogue.\nThe filmmakers' eye for detail and the high standards of performance convey a strong sense of the girls' environment.\nUneven, self-conscious but often hilarious spoof.\nEven bigger and more ambitious than the first installment, Spy Kids 2 looks as if it were made by a highly gifted 12-year-old instead of a grown man.\nThanks to The Château's balance of whimsicality, narrative discipline and serious improvisation, almost every relationship and personality in the film yields surprises.\nAlan and his fellow survivors are idiosyncratic enough to lift the movie above its playwriting 101 premise.\nFresh and raw like a blown-out vein, Narc takes a walking-dead, cop-flick subgenre and beats new life into it.\nThe premise of Jason X is silly but strangely believable.\nIt's a wise and powerful tale of race and culture forcefully told, with superb performances throughout.\nAn awfully good, achingly human picture.\nThe cast comes through even when the movie doesn't.\nYou'll laugh at either the obviousness of it all or its stupidity or maybe even its inventiveness, but the point is, you'll laugh.\nDefinitely worth 95 minutes of your time.\nThe film jolts the laughs from the audience--as if by cattle prod.\nA sexy, surprising romance... Idemoto and Kim make a gorgeous pair... their scenes brim with sexual possibility and emotional danger.\nToes the fine line between cheese and earnestness remarkably well; everything is delivered with such conviction that it's hard not to be carried away.\nWhereas Oliver Stone's conspiracy thriller JFK was long, intricate, star-studded and visually flashy, Interview with the Assassin draws its considerable power from simplicity.\nFunny, sexy, devastating and incurably romantic.\nTriple X is a double agent, and he's one bad dude. When you've got the wildly popular Vin Diesel in the equation, it adds up to big box office bucks all but guaranteed.\nVery well-written and very well-acted.\nA powerful and telling story that examines forbidden love, racial tension, and other issues that are as valid today as they were in the 1950s.\nYou emerge dazed, confused as to whether you've seen pornography or documentary.\nIt ain't art, by a long shot, but unlike last year's lame Musketeer, this Dumas adaptation entertains.\nlikeable thanks to its cast, its cuisine and its quirky tunes.\nChilling in its objective portrait of dreary, lost twenty-first century America.\nHighly recommended as an engrossing story about a horrifying historical event and the elements which contributed to it.\n... there's enough cool fun here to warm the hearts of animation enthusiasts of all ages.\nIt manages to squeeze by on Angelina Jolie's surprising flair for self-deprecating comedy.\nSecretary manages a neat trick, bundling the flowers of perversity, comedy and romance into a strangely tempting bouquet of a movie.\nJudith and Zaza's extended bedroom sequence ... is so intimate and sensual and funny and psychologically self-revealing that it makes most of what passes for sex in the movies look like cheap hysterics.\nPhotographed with melancholy richness and eloquently performed yet also decidedly uncinematic.\nA knowing look at female friendship, spiked with raw urban humor.\nAs I settled into my World War II memories, I found myself strangely moved by even the corniest and most hackneyed contrivances.\nThe overall effect is awe and affection -- and a strange urge to get on a board and, uh, shred, dude.\nIt's that rare family movie -- genuine and sweet without relying on animation or dumb humor.\nThe Trinity Assembly approaches the endeavor with a shocking lack of irony, and George Ratliff's documentary, Hell House, reflects their earnestness -- which makes for a terrifying film.\nConfessions may not be a straightforward bio, nor does it offer much in the way of Barris' motivations, but the film is an oddly fascinating depiction of an architect of pop culture.\nA special kind of movie, this melancholic film noir reminded me a lot of Memento...\nSimple, poignant and leavened with humor, it's a film that affirms the nourishing aspects of love and companionship.\nTogether, Miller, Kuras and the actresses make Personal Velocity into an intricate, intimate and intelligent journey.\nThe wonder of Mostly Martha is the performance of Gedeck, who makes Martha enormously endearing.\nWith Notorious C.H.O. Cho proves she has the stuff to stand tall with Pryor, Carlin and Murphy.\nLess front-loaded and more shapely than the two-hour version released here in 1990.\nWatching War Photographer, you come to believe that Nachtwey hates the wars he shows and empathizes with the victims he reveals.\n(A) real pleasure in its laid-back way.\nSome may choose to interpret the film's end as hopeful or optimistic but I think Payne is after something darker.\nThough it runs 163 minutes, Safe Conduct is anything but languorous. It's packed to bursting with incident, and with scores of characters, some fictional, some from history.\nA much better documentary -- more revealing, more emotional and more surprising -- than its pedestrian English title would have you believe.\nNotwithstanding my problem with the movie's final half hour, I'm going to recommend SECRETARY, based on the wonderful acting clinic put on by Spader and Gyllenhaal, and also the unique way Shainberg goes about telling what at heart is a sweet little girl-\nA well-crafted film that is all the more remarkable because it achieves its emotional power and moments of revelation with restraint and a delicate ambiguity.\nThe film has the uncanny ability to right itself precisely when you think it's in danger of going wrong.\nMy Big Fat Greek Wedding is that rare animal known as 'a perfect family film,' because it's about family.\nwould make an excellent companion piece to the similarly themed 'The French Lieutenant's Woman.'\n... with the gifted Pearce on hand to keep things on semi-stable ground dramatically, this retooled Machine is ultimately effective enough at achieving the modest, crowd-pleasing goals it sets for itself.\nA movie that's just plain awful but still manages to entertain on a guilty-pleasure, so-bad-it's-funny level.\nA disoriented but occasionally disarming saga packed with moments out of an Alice in Wonderland adventure, a stalker thriller, and a condensed season of TV's Big Brother.\nFunctions as both a revealing look at the collaborative process and a timely, tongue-in-cheek profile of the corporate circus that is the recording industry in the current climate of mergers and downsizing.\nWith a confrontational stance, Todd Solondz takes aim on political correctness and suburban families.\nA mess, but it's a sincere mess.\nThis odd, distant Portuguese import more or less borrows from Bad Lieutenant and Les Vampires, and comes up with a kind of art-house gay porn film.\nFor a debut film, Skin of Man, Heart of Beast feels unusually assured.\nA photographic marvel of sorts, and it's certainly an invaluable record of that special fishy community.\nIt's soulful and unslick, and that's apparently just what (Aniston) has always needed to grow into a movie career.\nAlthough Olivier Assayas' elegantly appointed period drama seems, at times, padded with incident in the way of a too-conscientious adaptation ... its three-hour running time plays closer to two.\nA jaw-droppingly beautiful work that upends nearly every cliché of Japanese animation while delivering a more than satisfactory amount of carnage.\nTerry is a sort of geriatric Dirty Harry, which will please Eastwood's loyal fans -- and suits the story, wherein our hero must ride roughshod over incompetent cops to get his man.\nParts seem like they were lifted from Terry Gilliam's subconscious, pressed through Kafka's meat grinder and into Buñuel's casings\n'Like a child with an important message to tell...(Skins') faults are easy to forgive because the intentions are lofty.'\nA delightful entree in the tradition of food movies.\nAn escapist confection that's pure entertainment.\nThe Ring is worth a look, if you don't demand much more than a few cheap thrills from your Halloween entertainment.\nThe movie ultimately relies a bit too heavily on grandstanding, emotional, Rocky-like moments ... but it's such a warm and charming package that you'll feel too happy to argue much.\nThrowing it all away for the fleeting joys of love's brief moment.\nArmed with a game supporting cast, from the pitch-perfect Forster to the always hilarious Meara and Levy, Like Mike shoots and scores, doing its namesake proud.\nA decent-enough nail-biter that stands a good chance of being the big hit Franklin needs to stay afloat in Hollywood.\nBegins like a docu-drama but builds its multi-character story with a flourish.\nOne of the most genuinely sweet films to come along in quite some time.\nAfter an uncertain start, Murder hits and generally sustains a higher plateau with Bullock's memorable first interrogation of Gosling.\nThe story ultimately takes hold and grips hard.\nA bit of a downer and a little over-dramatic at times, but this is a beautiful film for people who like their romances to have that French realism.\nAn emotionally strong and politically potent piece of cinema.\nEnticing and often funny documentary.\nGoing to this movie is a little like chewing whale blubber - it's an acquired taste that takes time to enjoy, but it's worth it, even if it does take 3 hours to get through.\nA portrait of hell so shattering it's impossible to shake.\nAlmodovar is an imaginative teacher of emotional intelligence in this engaging film about two men who discover what William James once called 'the gift of tears.'\nBetter than the tepid Star Trek: Insurrection; falls short of First Contact because the villain couldn't pick the lint off Borg Queen Alice Krige's cape; and finishes half a parsec (a nose) ahead of Generations.\nAt times a bit melodramatic and even a little dated (depending upon where you live), Ignorant Fairies is still quite good-natured and not a bad way to spend an hour or two.\nTense, terrific, sweaty-palmed fun.\nMajidi's direction has never been smoother or more confident.\nWhat a bewilderingly brilliant and entertaining movie this is.\nHard, endearing, caring, warm. Bring tissues.\nA thriller with an edge -- which is to say that it doesn't follow the stale, standard, connect-the-dots storyline which has become commonplace in movies that explore the seamy underbelly of the criminal world.\n``Me Without You'' is a probing examination of a female friendship set against a few dynamic decades.\nInherently caustic and oddly whimsical, the film chimes in on the grieving process and strangely draws the audience into the unexplainable pain and eccentricities that are attached to the concept of loss.\nThough Frodo's quest remains unfulfilled, a hardy group of determined New Zealanders has proved its creative mettle.\nIt's a square, sentimental drama that satisfies, as comfort food often can.\nPure cinematic intoxication, a wildly inventive mixture of comedy and melodrama, tastelessness and swooning elegance.\nRamsay is clearly extraordinarily talented, and based on three short films and two features, here's betting her third feature will be something to behold.\nI was impressed by how many tit-for-tat retaliatory responses the filmmakers allow before pulling the plug on the conspirators and averting an American-Russian Armageddon.\nA classy, sprightly spin on film.\nfast, frantic and fun, but also soon forgotten\nA spiffy animated feature about an unruly adolescent boy who is yearning for adventure and a chance to prove his worth.\nDevos and Cassel have tremendous chemistry -- their sexual and romantic tension, while never really vocalized, is palpable.\nFulfills the minimum requirement of Disney animation.\nA moving, if uneven, success.\nWith one exception, every blighter in this particular South London housing project digs into dysfunction like it's a big, comforting jar of Marmite, to be slathered on crackers and served as a feast of bleakness.\nWickedly funny, visually engrossing, never boring, this movie challenges us to think about the ways we consume pop culture.\nThere's plenty to impress about E.T.\nA chronicle not only of one man's quest to be president, but of how that man single-handedly turned a plane full of hard-bitten, cynical journalists into what was essentially, by campaign's end, an extended publicity department.\nUntil it goes off the rails in its final 10 or 15 minutes, Wendigo, Larry Fessenden's spooky new thriller, is a refreshingly smart and newfangled variation on several themes derived from far less sophisticated and knowing horror films.\n(Woo's) most resonant film since The Killer.\nCollateral Damage is trash, but it earns extra points by acting as if it weren't.\nA whole lot of fun and funny in the middle, though somewhat less hard-hitting at the start and finish.\nMaybe it is formula filmmaking, but there's nothing wrong with that if the film is well-crafted and this one is.\n(Fincher's) camera sense and assured pacing make it an above-average thriller.\nThe film is insightful about Kissinger's background and history.\nAn engrossing portrait of a man whose engaging manner and flamboyant style made him a truly larger-than-life character.\nA lot of the credit for the film's winning tone must go to Grant, who hasn't lost a bit of the dry humor that first made audiences on both sides of the Atlantic love him.\nExploits (headbanger) stereotypes in good fun, while adding a bit of heart and unsettling subject matter.\nA journey that is as difficult for the audience to take as it is for the protagonist -- yet it's potentially just as rewarding.\nRatliff's two previous titles, Plutonium Circus and Purgatory County show his penchant for wry, contentious configurations, and this film is part of that delicate canon.\nFrom its invitingly upbeat overture to its pathos-filled but ultimately life-affirming finale, Martin is a masterfully conducted work.\nPassions, obsessions, and loneliest dark spots are pushed to their most virtuous limits, lending the narrative an unusually surreal tone.\nA comedy that swings and jostles to the rhythms of life.\nAt times Auto Focus feels so distant you might as well be watching it through a telescope. Yet in its own aloof, unreachable way it's so fascinating you won't be able to look away for a second.\nIf you're part of her targeted audience, you'll cheer. Otherwise, maybe.\nAs animation increasingly emphasizes the computer and the cool, this is a film that takes a stand in favor of tradition and warmth.\nBlade II merges bits and pieces from fighting games, wire fu, horror movies, mystery, James Bond, wrestling, sci-fi and anime into one big bloody stew.\nInstead of hitting the audience over the head with a moral, Schrader relies on subtle ironies and visual devices to convey point of view.\nK-19 will not go down in the annals of cinema as one of the great submarine stories, but it is an engaging and exciting narrative of Man confronting the Demons of his own fear and paranoia.\nContrived as this may sound, Mr. Rose's updating works surprisingly well.\nA glib but bouncy bit of sixties-style slickness in which the hero might wind up caught but the audience gets pure escapism.\nYou don't need to be a hip-hop fan to appreciate Scratch, and that's the mark of a documentary that works.\nBetween bursts of automatic gunfire, the story offers a trenchant critique of capitalism.\nCombines improbable melodrama (gored bullfighters, comatose ballerinas) with subtly kinky bedside vigils and sensational denouements, and yet at the end, we are undeniably touched.\nWhile the story's undeniably hard to follow, Iwai's gorgeous visuals seduce.\nIf you can get past the taboo subject matter, it will be well worth your time.\nA lovely film...elegant, witty and beneath a prim exterior unabashedly romantic...hugely enjoyable in its own right though not really faithful to its source's complexity.\nScooby Doo is surely everything its fans are hoping it will be, and in that sense is a movie that deserves recommendation.\n(A) devastatingly powerful and astonishingly vivid Holocaust drama.\nA solid cast, assured direction and complete lack of modern day irony.\nThese characters are so well established that the gang feels comfortable with taking insane liberties and doing the goofiest stuff out of left field, and I'm all for that.\nA sun-drenched masterpiece, part parlor game, part psychological case study, part droll social satire.\nWorth a look as a curiosity.\nYou watch for that sense of openness, the little surprises.\nDirector Peter Kosminsky gives these women a forum to demonstrate their acting 'chops' and they take full advantage.\nAuto Focus is not your standard Hollywood bio-pic. Schrader aims to present an unflinching look at one man's downfall, brought about by his lack of self-awareness.\nThe Bourne Identity shouldn't be half as entertaining as it is, but director Doug Liman and his colleagues have managed to pack it with enough action to satisfy the boom-bam crowd without a huge sacrifice of character and mood.\nFor VeggieTales fans, this is more appetizing than a side dish of asparagus. If you're not a fan, it might be like trying to eat Brussels sprouts.\nRemove Spider-Man the movie from its red herring surroundings and it's apparent that this is one summer film that satisfies.\nThe whole mildly pleasant outing -- the R rating is for brief nudity and a grisly corpse -- remains aloft not on its own self-referential hot air, but on the inspired performance of Tim Allen.\nA gorgeously strange movie, Heaven is deeply concerned with morality, but it refuses to spell things out for viewers.\nThe Emperor's Club, ruthless in its own placid way, finds one of our most conservative and hidebound movie-making traditions and gives it new texture, new relevance, new reality.\nIt's truly awful and heartbreaking subject matter, but one whose lessons are well worth revisiting as many times as possible.\nThough intrepid in exploring an attraction that crosses sexual identity, Ozpetek falls short in showing us Antonia's true emotions ... But at the very least, His Secret Life will leave you thinking.\nThere is little question that this is a serious work by an important director who has something new to say about how, in the flip-flop of courtship, we often reel in when we should be playing out.\nThe message of such reflections--intentional or not--is that while no art grows from a vacuum, many artists exist in one.\nGooding is the energetic frontman, and it's hard to resist his enthusiasm, even if the filmmakers come up with nothing original in the way of slapstick sequences.\nThe otherwise good-naturedness of Mr. Deeds, with its embrace of sheer goofiness and cameos of less- than-likely New York celebrities ... certainly raises the film above anything Sandler's been attached to before.\nThe movie is brilliant, really. It is philosophy, illustrated through everyday events.\nIt's stylishly directed with verve...\nGives an intriguing twist to the French coming-of-age genre.\nOffers an interesting look at the rapidly changing face of Beijing.\nA solid, psychological action film from Hong Kong.\nSee it now, before the inevitable Hollywood remake flattens out all its odd, intriguing wrinkles.\nHolm does his sly, intricate magic, and Iben Hjelje is entirely appealing as Pumpkin.\nAn enjoyable feel-good family comedy regardless of race.\nFeatures what is surely the funniest and most accurate depiction of writer's block ever.\nIt would take a complete moron to foul up a screen adaptation of Oscar Wilde's classic satire.\nIt's bright, pristine style and bold colors make it as much fun as reading an oversized picture book before bedtime.\nIn the long, dishonorable history of quickie teen-pop exploitation, Like Mike stands out for its only partly synthetic decency.\nBravo for history rewritten, and for the uncompromising knowledge that the highest power of all is the power of love.\nLead actress Gaï, she of the impossibly long limbs and sweetly conspiratorial smile, is a towering siren.\nEven if you've seen ``Stomp'' (the stage show), you still have to see this!\n... a light, yet engrossing piece. Lux, now in her eighties, does a great combination act as narrator, Jewish grandmother and subject – taking us through a film that is part biography, part entertainment and part history.\nIt's a setup so easy it borders on facile, but keeping the film from cheap-shot mediocrity is its crack cast.\nRife with the rueful, wry humor springing out of Yiddish culture and language.\nA time machine, a journey back to your childhood, when cares melted away in the dark theater, and films had the ability to mesmerize, astonish and entertain.\nRubbo's humorously tendentious intervention into the who-wrote-Shakespeare controversy.\nCantet beautifully illuminates what it means sometimes to be inside looking out, and at other times outside looking in.\nK-19: The Widowmaker is a great yarn.\nIt's as raw and action-packed an experience as a ringside seat at a tough-man contest.\nEvokes the frustration, the awkwardness and the euphoria of growing up, without relying on the usual tropes.\nA brilliant gag at the expense of those who paid for it and those who pay to see it.\nVisually striking and viscerally repellent.\nOvercomes its visual hideousness with a sharp script and strong performances.\nAstonishingly skillful and moving...it could become a historically significant work as well as a masterfully made one.\nBeautifully crafted and cooly unsettling...recreates the atmosphere of the crime expertly.\nThe year 2002 has conjured up more coming-of-age stories than seem possible, but Take Care of My Cat emerges as the very best of them.\nAlthough it doesn't always hang together -- violence and whimsy don't combine easily -- ``Cherish'' certainly isn't dull.\nThe sight of the spaceship on the launching pad is duly impressive in IMAX dimensions, as are shots of the astronauts floating in their cabins.\nTime is a beautiful film to watch, an interesting and at times captivating take on loss and loneliness.\nAn intriguing look at the French film industry during the German occupation; its most delightful moments come when various characters express their quirky inner selves.\nA fine documentary can be distinguished from a mediocre one by the better film's ability to make its subject interesting to those who aren't part of its supposed target audience. Judging by those standards, 'Scratch' is a pretty decent little documentary.\nFubar is very funny, but not always in a laugh-out-loud way.\nA diverse and astonishingly articulate cast of Palestinian and Israeli children.\nSlight but enjoyable documentary.\n'The film is stark, straightforward and deadly... an unnatural calm that's occasionally shaken by...blasts of rage, and later, violent jealousy.'\nCall this The Full Monty on ice, the underdog sports team formula redux.\nUnfolds in a low-key, organic way that encourages you to accept it as life and go with its flow.\nA beguiling evocation of the quality that keeps Dickens evergreen: the exuberant openness with which he expresses our most basic emotions.\nThe heat of the moment prevails. It cooks Conduct in a low, smoky and inviting sizzle.\nA riveting story well told.\nDenis forges out of the theories of class- based rage and sisterly obsession a razor-sided tuning fork that rings with cultural, sexual and social discord.\nA compelling pre-WWII drama with vivid characters and a warm, moving message.\nThe stars may be college kids, but the subject matter is as adult as you can get: the temptations of the flesh are unleashed by a slightly crazed, overtly determined young woman and a one-night swim turns into an ocean of trouble.\nPretty good little movie.\nBy turns touching, raucously amusing, uncomfortable, and, yes, even sexy, Never Again is a welcome and heartwarming addition to the romantic comedy genre.\nIf you haven't seen the film lately, you may be surprised at the variety of tones in Spielberg's work. Much of it is funny, but there are also some startling, surrealistic moments...\n(The digital effects) reminded me of Terry Gilliam's rudimentary old Monty Python cartoons, in which he would cut out figures from drawings and photographs and paste them together.\nAn entertaining mix of period drama and flat-out farce that should please history fans.\nCanada's arctic light shines bright on this frozen tundra soap opera that breathes extraordinary life into the private existence of the Inuit people.\nThe fluid motion is astounding on any number of levels -- including the physical demands made on Büttner -- and it implies in its wake the intractable, irreversible flow of history.\nAlternately hilarious and sad, aggravating and soulful, scathing and joyous. It's a masterpeice.\nThe film's messages of tolerance and diversity aren't particularly original, but one can't help but be drawn in by the sympathetic characters.\nThough it lacks the utter authority of a genre gem, there's a certain robustness to this engaging mix of love and bloodletting.\nA conventional, but well-crafted film about a historic legal battle in Ireland over a man's right to raise his own children.\nYes, it's as good as you remember. In fact, even better.\nHartley adds enough quirky and satirical touches in the screenplay to keep the film entertaining.\nAn uncomfortable movie, suffocating and sometimes almost senseless, The Grey Zone does have a center, though a morbid one.\nThis is a harrowing movie about how parents know where all the buttons are, and how to push them.\nA stirring road movie.\nOne of the best films I have ever seen, constantly pulling the rug from underneath us, seeing things from new sides, plunging deeper, getting more intense.\nInsanely hilarious! I haven't laughed that hard in years!\nAnyone who's ever suffered under a martinet music instructor has no doubt fantasized about what an unhappy, repressed and twisted personal life their tormentor deserved. These people are really going to love The Piano Teacher.\nIt's a tour de force, written and directed so quietly that it's implosion rather than explosion you fear.\nIt may not be history – but then again, what if it is? – but it makes for one of the most purely enjoyable and satisfying evenings at the movies I've had in a while.\nIf ``Lilo & Stitch'' isn't the most edgy piece of Disney animation to hit the silver screen, then this first film to use a watercolor background since ``Dumbo'' certainly ranks as the most original in years.\nThis may be Dover Kosashvili's feature directing debut, but it looks an awful lot like life -- gritty, awkward and ironic.\nThis ready-made midnight movie probably won't stand the cold light of day, but under the right conditions, it's goofy (if not entirely wholesome) fun.\nSee Scratch for the history, see Scratch for the music, see Scratch for a lesson in scratching, but, most of all, see it for the passion.\n...``Bowling for Columbine'' remains a disquieting and thought-provoking film...\nEven though it is infused with the sensibility of a video director, it doesn't make for completely empty entertainment\nBut even with the two-wrongs-make-a-right chemistry between Jolie and Burns...this otherwise appealing picture loses its soul to Screenwriting For Dummies conformity.\nTalk to Her is so darned assured, we have absolutely no idea who the main characters are until the film is well under way -- and yet it's hard to stop watching.\nStar/producer Salma Hayek and director Julie Taymor have infused Frida with a visual style unique and inherent to the titular character's paintings and in the process created a masterful work of art of their own.\nA truly wonderful tale combined with stunning animation.\nA low-key labor of love that strikes a very resonant chord.\nAn average kid-empowerment fantasy with slightly above-average brains.\nConfessions isn't always coherent, but it's sharply comic and surprisingly touching, so hold the gong.\nWhile Guzmán frustratingly refuses to give Pinochet's crimes a political context, his distance from the material is mostly admirable.\n... a story, an old and scary one, about the monsters we make, and the vengeance they take.\nA sentimental but entirely irresistible portrait of three aging sisters.\nWhite Oleander may leave you rolling your eyes in the dark, but that doesn't mean you won't like looking at it.\nIn painting an unabashedly romantic picture of a nation whose songs spring directly from the lives of the people, the movie exalts the Marxian dream of honest working folk, with little to show for their labor, living harmoniously, joined in song.\nThe most brilliant work in this genre since the 1984 uncut version of Sergio Leone's flawed but staggering Once Upon a Time in America.\nIt looks closely, insightfully at fragile, complex relationships.\nNot a bad choice here, assuming that... the air-conditioning in the theater is working properly.\nA fine effort, an interesting topic, some intriguing characters and a sad ending. Certainly the big finish wasn't something Galinsky and Hawley could have planned for... but part of being a good documentarian is being there when the rope snaps.\nIt must be the end of the world: the best film so far this year is a franchise sequel starring Wesley Snipes.\nThere are moments of hilarity to be had.\nA hypnotic portrait of this sad, compulsive life.\n(While The Last Metro) was more melodramatic, confined to a single theater company and its strategies and deceptions, while Tavernier is more concerned with the entire period of history.\nOne of the best films of the year with its exquisite acting, inventive screenplay, mesmerizing music, and many inimitable scenes of tenderness, loss, discontent, and yearning.\nReturn to Never Land is reliable, standard Disney animated fare, with enough creative energy and wit to entertain all ages.\nMichael Moore's latest documentary about America's thirst for violence is his best film yet...\nSuffice to say that after seeing this movie in IMAX form, you'll be more acquainted with the tiniest details of Tom Hanks' face than his wife is.\nLike a Tarantino movie with heart, Alias Betty is richly detailed, deftly executed and utterly absorbing.\nMarvelously entertaining and deliriously joyous documentary.\nA brisk, reverent, and subtly different sequel.\nA movie I loved on first sight and, even more important, love in remembrance.\nDeserves a place of honor next to Nanook as a landmark in film history.\nMurderous Maids pulls no punches in its depiction of the lives of the Papin sister and the events that led to their notorious rise to infamy...\nThis is an undeniably intriguing film from an adventurous young talent who finds his inspiration on the fringes of the American underground.\nThe Sweetest Thing, a romantic comedy with outrageous tendencies, may be a mess in a lot of ways. But it does have one saving grace. A lot of its gags and observations reflect a woman's point-of-view.\nThis is lightweight filmmaking, to be sure, but it's pleasant enough -- and oozing with attractive men.\nAt its most basic, this cartoon adventure is that wind-in-the-hair exhilarating.\nFans of critics' darling band Wilco will marvel at the sometimes murky, always brooding look of I Am Trying to Break Your Heart.\nThe film presents visceral and dangerously honest revelations about the men and machines behind the curtains of our planet.\n(Gosling's) combination of explosive physical energy and convincing intelligence helps create a complex, unpredictable character.\nConfounding because it solemnly advances a daringly preposterous thesis. Acting cannot be acted.\nFulford-Wierzbicki ... deftly captures the wise-beyond-her-years teen.\nA wild ride juiced with enough energy and excitement for at least three films.\nIt's a cool event for the whole family. Maybe not a classic, but a movie the kids will want to see over and over again.\nThe movie is not as terrible as the synergistic impulse that created it.\nA typically observant, carefully nuanced and intimate French coming-of-age film that is an encouraging debut feature but has a needlessly downbeat ending that is too heavy for all that has preceded it.\nLess an examination of neo-Nazism than a probe into the nature of faith itself.\nA moving and weighty depiction of one family's attempts to heal after the death of a child.\nI don't think most of the people who loved the 1989 Paradiso will prefer this new version. But I do.\nA zinger-filled crowd-pleaser that open-minded Elvis fans (but by no means all) will have fun with.\nDiggs and Lathan are among the chief reasons Brown Sugar is such a sweet and sexy film.\nEntirely suspenseful, extremely well-paced and ultimately... dare I say, entertaining!\nThe riveting performances by the incredibly flexible cast make Love a joy to behold.\nTerrific as Nadia, a Russian mail-order bride who comes to America speaking not a word of English, it's Kidman who holds the film together with a supremely kittenish performance that gradually accumulates more layers.\nWith an unflappable air of decadent urbanity, Everett remains a perfect Wildean actor, and a relaxed Firth displays impeccable comic skill.\nThe re-release of Ron Howard's Apollo 13 in the IMAX format proves absolutely that really, really, really good things can come in enormous packages.\nVery well written and directed with brutal honesty and respect for its audience.\nWonderful fencing scenes and an exciting plot make this an eminently engrossing film.\nIt's pretty linear and only makeup-deep, but Bogdanovich ties it together with efficiency and an affection for the period.\nA surprisingly charming and even witty match for the best of Hollywood's comic-book adaptations.\nThis is a superior horror flick.\nAdaptation is simply brilliant.\nSmart and alert, Thirteen Conversations About One Thing is a small gem.\nThe pleasure of Read My Lips is like seeing a series of perfect black pearls clicking together to form a string. We're drawn in by the dark luster.\nA haunting tale of murder and mayhem.\nI love the opening scenes of a wintry New York City in 1899. Cinematic poetry showcases the city's old-world charm before machines change nearly everything.\nIt's hard to imagine anyone managing to steal a movie not only from charismatic rising star Jake Gyllenhaal but also from accomplished Oscar winners Susan Sarandon, Dustin Hoffman and Holly Hunter, yet newcomer Ellen Pompeo pulls off the feat with aplomb.\nOne of the best rock documentaries ever. Wilco is a phenomenal band with such an engrossing story that will capture the minds and hearts of many.\nIan Holm conquers France as an earthy Napoleon\nOffers big, fat, dumb laughs that may make you hate yourself for giving in. Ah, what the hell.\n(Sports) admirable energy, full-bodied characterizations and narrative urgency.\nA portrait of an artist.\nDirectors Brett Morgen and Nanette Burstein have put together a bold biographical fantasia.\nThe subtitled costume drama is set in a remote African empire before cell phones, guns, and the internal combustion engine, but the politics that thump through it are as timely as tomorrow.\nA tremendous piece of work.\nA delightful, if minor, pastry of a movie.\nWhile obviously aimed at kids, The Country Bears ... should keep parents amused with its low groan-to-guffaw ratio.\nLaBute masterfully balances both Traditional or Modern stories together in a manner that one never overwhelms the other. Something for everyone.\nIrwin is so earnest that it's hard to resist his pleas to spare wildlife and respect their environs. There are far worse messages to teach a young audience, which will probably be perfectly happy with the sloppy slapstick comedy.\nLeigh succeeds in delivering a dramatic slap in the face that's simultaneously painful and refreshing.\nNot about scares but a mood in which an ominous, pervasive, and unknown threat lurks just below the proceedings and adds an almost constant mindset of suspense.\n'Film aficionados cannot help but love Cinema Paradiso, whether the original version or new Director's Cut.'\nA fascinating glimpse into an insular world that gives the lie to many clichés and showcases a group of dedicated artists.\nIt's one thing to read about or rail against the ongoing - and unprecedented - construction project going on over our heads. It's quite another to feel physically caught up in the process.\nContradicts everything we've come to expect from movies nowadays. Instead of simply handling conventional material in a conventional way, Secretary takes the most unexpected material and handles it in the most unexpected way.\nCould I have been more geeked when I heard that Apollo 13 was going to be released in IMAX format? In a word: No.\nMurderous Maids has a lot going for it, not least the brilliant performances by Testud ... and Parmentier.\nFilmmaker Stacy Peralta has a flashy editing style that doesn't always jell with Sean Penn's monotone narration, but he respects the material without sentimentalizing it.\nThere are a couple of things that elevate ``Glory'' above most of its ilk, most notably the mere presence of Duvall.\nIt's light on the chills and heavy on the atmospheric weirdness, and there are moments of jaw-droppingly odd behavior -- yet I found it weirdly appealing.\n(Rises) above its oh-so-Hollywood rejiggering and its conventional direction to give the film a soul and an unabashed sense of good old-fashioned escapism.\nA breezy blend of art, history, esoteric musings and philosophy.\nKids will love its fantasy and adventure, and grownups should appreciate its whimsical humor.\nTsai Ming-liang's ghosts are painfully aware of their not-being.\nLeaping from one arresting image to another, Songs from the Second Floor has all the enjoyable randomness of a very lively dream and so manages to be compelling, amusing and unsettling at the same time.\nSean Penn, you owe Nicolas Cage an apology.\nThe performances are uniformly good.\nShe's all-powerful, a voice for a pop-cyber culture that feeds on her Bjorkness.\nIt's a perfect show of respect to just one of those underrated professionals who deserve but rarely receive it.\nFor all its plot twists, and some of them verge on the bizarre as the film winds down, Blood Work is a strong, character-oriented piece.\nThe story line may be 127 years old, but El Crimen del Padre Amaro ... couldn't be more timely in its despairing vision of corruption within the Catholic establishment.\nThis in-depth study of important developments of the computer industry should make it required viewing in university computer science departments for years to come.\nIt shows us a slice of life that's very different from our own and yet instantly recognizable.\nA wonderfully speculative character study that made up for its rather slow beginning by drawing me into the picture.\nHas its share of arresting images.\nLeave it to John Sayles to take on developers, the Chamber of Commerce, tourism, historical pageants, and commercialism all in the same movie ... without neglecting character development for even one minute.\nReign of Fire just might go down as one of the all-time great apocalypse movies.\nA smart little indie.\nPayne has created a beautiful canvas, and Nicholson proves once again that he's the best brush in the business.\nTry as you might to resist, if you've got a place in your heart for Smokey Robinson, this movie will worm its way there.\nA riveting profile of law enforcement, and a visceral, nasty journey into an urban Hades.\nDirector Douglas McGrath takes on Nickleby with all the halfhearted zeal of an 8th grade boy delving into required reading.\nStands as a document of what it felt like to be a New Yorker -- or, really, to be a human being -- in the weeks after 9/11.\nI am not generally a huge fan of cartoons derived from TV shows, but Hey Arnold! The Movie is clever, offbeat and even gritty enough to overcome my resistance.\nWith not a lot of help from the screenplay (proficient, but singularly cursory), (Testud) acts with the feral intensity of the young Bette Davis.\nIt's a film that's destined to win a wide summer audience through word-of-mouth reviews and, not far down the line, to find a place among the studio's animated classics.\nSlow and ponderous, but Rohmer's drama builds to an intense indoor drama about compassion, sacrifice, and Christian love in the face of political corruption.\nIf you're not totally weirded- out by the notion of cinema as community-therapy spectacle, Quitting hits home with disorienting force.\nAustin Powers for the most part is extremely funny, the first part making up for any flaws that come later.\nWhile Tattoo borrows heavily from both Seven and The Silence of the Lambs, it manages to maintain both a level of sophisticated intrigue and human-scale characters that suck the audience in.\nCho continues her exploration of the outer limits of raunch with considerable brio.\nElvira fans could hardly ask for more.\nA canny, derivative, wildly gruesome portrait of a London sociopath who's the scariest of sadists.\nThe movie should be credited with remembering his victims.\nFast-paced and wonderfully edited, the film is extremely thorough.\nA bracing, unblinking work that serves as a painful elegy and sobering cautionary tale.\nHashiguchi uses the situation to evoke a Japan bustling atop an undercurrent of loneliness and isolation.\nAs if trying to grab a lump of Play-Doh, the harder that Liman tries to squeeze his story, the more details slip out between his fingers.\nMy Big Fat Greek Wedding is not only the best date movie of the year, it's also a -- dare I say it twice -- delightfully charming -- and totally American, I might add -- slice of comedic bliss.\nFew films have captured the chaos of an urban conflagration with such fury, and audience members will leave feeling as shaken as Nesbitt's Cooper looks when the bullets stop flying.\nAnother love story in 2002's remarkable procession of sweeping pictures that have reinvigorated the romance genre.\nIt's another retelling of Alexandre Dumas' classic. Why? Who knows, but it works under the direction of Kevin Reynolds.\n(F)rom the performances and the cinematography to the outstanding soundtrack and unconventional narrative, the film is blazingly alive and admirable on many levels.\nShiri is an action film that delivers on the promise of excitement, but it also has a strong dramatic and emotional pull that gradually sneaks up on the audience.\nProvides the kind of 'laugh therapy' I need from movie comedies -- offbeat humor, amusing characters, and a happy ending. After seeing 'Analyze That,' I feel better already.\nA penetrating, potent exploration of sanctimony, self-awareness, self-hatred and self-determination.\nThis isn't a retooled genre piece, the tale of a guy and his gun, but an amiably idiosyncratic work.\nOverall, it's a very entertaining, thought-provoking film with a simple message: God is love.\nIt may not be a great piece of filmmaking, but its power comes from its soul's-eye view of how well-meaning patronizing masked a social injustice, at least as represented by this case.\nAlthough mainstream American movies tend to exploit the familiar, every once in a while a film arrives from the margin that gives viewers a chance to learn, to grow, to travel.\nJeong-Hyang Lee's film is deceptively simple, deeply satisfying.\nThe film is a hoot, and is just as good, if not better than much of what's on Saturday morning TV especially the pseudo-educational stuff we all can't stand.\nGeorge Clooney, in his first directorial effort, presents this utterly ridiculous shaggy dog story as one of the most creative, energetic and original comedies to hit the screen in years.\nEven when it drags, we are forced to reflect that its visual imagination is breathtaking\nAlthough commentary on Nachtwey is provided ... it's the image that really tells the tale.\nA life-size reenactment of those Jack Chick cartoon tracts that always ended with some hippie getting tossed into the lake of fire.\nGrainy photography mars an otherwise delightful comedy of errors.\nthis film is not a love letter for the slain rappers, it's a taunt -a call for justice for two crimes from which many of us have not yet recovered.\nThe film is impressive for the sights and sounds of the wondrous beats the world has to offer.\nDaily struggles and simple pleasures usurp the preaching message so that, by the time the credits roll across the pat ending, a warm, fuzzy feeling prevails.\n...in no way original, or even all that memorable, but as downtown Saturday matinee brain candy, it doesn't disappoint.\nClever and unflinching in its comic barbs, Slap Her is a small but rewarding comedy that takes aim at contemporary southern adolescence and never lets up.\nCremaster 3 is at once a tough pill to swallow and a minor miracle of self-expression.\nSex is one of those films that aims to confuse.\nCompared to his series of spectacular belly flops both on and off the screen, RunTelDat is something of a triumph.\n(Moore's) better at fingering problems than finding solutions. But though he only scratches the surface, at least he provides a strong itch to explore more.\nThe powerful success of Read My Lips with such provocative material shows why, after only three films, director/co-writer Jacques Audiard, though little known in this country, belongs in the very top rank of French filmmakers.\nIn his debut as a director, Washington has a sure hand. His work with actors is particularly impressive.\nA generous, inspiring film that unfolds with grace and humor and gradually becomes a testament to faith.\nDelivers the sexy razzle-dazzle that everyone, especially movie musical fans, has been hoping for.\nVincent Gallo is right at home in this French shocker playing his usual bad boy weirdo role.\nFierce, glaring and unforgettable.\nCletis is playful but highly studied and dependent for its success on a patient viewer.\nLike its predecessor, it's no classic, but it provides a reasonably attractive holiday contraption, one that families looking for a clean, kid-friendly outing should investigate.\nCampanella gets the tone just right -- funny in the middle of sad in the middle of hopeful.\nEither a fascinating study of the relationship between mothers and their children or a disturbing story about sociopaths and their marks.\n...gripping and handsome execution, (but) there isn't much about K-19 that's unique or memorable.\nEffective in all its aspects, Margarita Happy Hour represents an auspicious feature debut for Chaiken.\nThe delicious trimmings...arrive early and stay late, filling nearly every minute...with a lighthearted glow, some impudent snickers, and a glorious dose of humankind's liberating ability to triumph over a Scrooge or two.\nStanding by Yourself is haunting...(It's) what punk rock music used to be, and what the video medium could use more of: spirit, perception, conviction.\nNot the best Herzog perhaps, but unmistakably Herzog.\nEnjoyably fast-moving, hard-hitting documentary.\nRehearsals are frequently more fascinating than the results. Last Dance, whatever its flaws, fulfills one facet of its mission in making me want to find out whether, in this case, that's true.\nThe film's constant mood of melancholy and its unhurried narrative are masterfully controlled. But ... in trying to capture the novel's deeper intimate resonances, the film has – ironically - distanced us from the characters.\nThis is a stunning film, a one-of-a-kind tour de force.\n(Cho's face is) an amazing slapstick instrument, creating a scrapbook of living mug shots.\nIt's about as convincing as any other Arnie musclefest, but has a little too much resonance with real world events and ultimately comes off as insultingly simplistic.\nWhile not quite a comedy, the film tackles its relatively serious subject with an open mind and considerable good cheer, and is never less than engaging.\nAn extremely funny, ultimately heartbreaking look at life in contemporary China.\nYour response to its new sequel, Analyze That, may hinge on what you thought of the first film.\nDavis is funny, charming and quirky in her feature film acting debut as Amy.\nBloody Sunday has the grace to call for prevention rather than to place blame, making it one of the best war movies ever made. It's a movie that accomplishes so much that one viewing can't possibly be enough.\nA lively and engaging examination of how similar obsessions can dominate a family.\nIn the new release of Cinema Paradiso, the tale has turned from sweet to bittersweet, and when the tears come during that final, beautiful scene, they finally feel absolutely earned.\nFaithful without being forceful, sad without being shrill, ``A Walk to Remember'' succeeds through sincerity.\nThe film is a masterpiece of nuance and characterization, marred only by an inexplicable, utterly distracting blunder at the very end.\nThe film is full of charm.\nThe movie is well crafted, and well executed. If you're paying attention, the ``big twists'' are pretty easy to guess - but that doesn't make the movie any less entertaining.\nOne of those unassuming films that sneaks up on you and stays with you long after you have left the theatre.\n...Pray doesn't have a passion for the material. He nonetheless appreciates the art and reveals a music scene that transcends culture and race.\nThe one-liners are snappy, the situations volatile and the comic opportunities richly rewarded.\nIt's anchored by splendid performances from an honored screen veteran and a sparkling newcomer who instantly transform themselves into a believable mother/daughter pair.\nFathers and sons, and the uneasy bonds between them, rarely have received such a sophisticated and unsentimental treatment on the big screen as they do in this marvelous film.\nThis sci-fi techno-sex thriller starts out bizarre and just keeps getting weirder.\nLast Orders nurtures the multi-layers of its characters, allowing us to remember that life's ultimately a gamble and last orders are to be embraced. It's affecting, amusing, sad and reflective.\nA slight but sweet film.\nWriter/director Walter Hill is in his hypermasculine element here, once again able to inject some real vitality and even art into a pulpy concept that, in many other hands would be completely forgettable.\nIt is a happy, heady jumble of thought and storytelling, an insane comic undertaking that ultimately coheres into a sane and breathtakingly creative film.\nThis new Time Machine is hardly perfect... yet it proves surprisingly serviceable. Even at its worst, it's not half-bad.\nAlmost everyone growing up believes their family must look like ``The Addams Family'' to everyone looking in... ``My Big Fat Greek Wedding'' comes from the heart...\nOnce folks started hanging out at the barbershop, they never wanted to leave. Chances are you won't, either.\nGeorge Lucas returns as a visionary with a tale full of nuance and character dimension.\nCan be viewed as pure composition and form -- film as music\nAn extraordinary dramatic experience.\nEvery individual will see the movie through the prism of his or her own beliefs and prejudices, but the one thing most will take away is the sense that peace is possible. That, in itself, is extraordinary.\nIf you can tolerate the redneck-versus-blueblood cliches that the film trades in, Sweet Home Alabama is diverting in the manner of Jeff Foxworthy's stand-up act.\nIt's a treat watching Shaw, a British stage icon, melting under the heat of Phocion's attentions.\nAll in all, an interesting look at the life of the campaign-trail press, especially ones that don't really care for the candidate they're forced to follow.\nNarc is a no-bull throwback to 1970s action films. It zips along with B-movie verve while adding the rich details and go-for-broke acting that heralds something special.\nMe Without You has a bracing truth that's refreshing after the phoniness of female-bonding pictures like Divine Secrets of the Ya-Ya Sisterhood.\nIt's a strange film, one that was hard for me to warm up to.\nGoes a long way on hedonistic gusto.\nThe result puts a human face on Derrida, and makes one of the great minds of our times interesting and accessible to people who normally couldn't care less.\nThe Scorpion King is more fun than Conan the Barbarian.\nIf there's one big point to Promises, it's that nothing can change while physical and psychological barriers keep the sides from speaking even one word to each other.\nUnexpected moments of authentically impulsive humor are the hallmark of this bittersweet, uncommonly sincere movie that portrays the frank humanity of...emotional recovery.\nJacquot has filmed the opera exactly as the libretto directs, ideally capturing the opera's drama and lyricism.\nThis is a sincerely crafted picture that deserves to emerge from the traffic jam of holiday movies.\nI liked it because it was so endlessly, grotesquely, inventive.\nAudiard successfully maintains suspense on different levels throughout a film that is both gripping and compelling.\nCredit director Ramsay for taking the sometimes improbable story and making it feel realistic.\nThis is DiCaprio's best performance in anything ever, and easily the most watchable film of the year.\nWitherspoon puts to rest her valley-girl image, but it's Dench who really steals the show.\nEven when there are lulls, the emotions seem authentic, and the picture is so lovely toward the end ... you almost don't notice the 129-minute running time.\nWhile dutifully pulling on heartstrings, directors Dean Deblois and Chris Sanders valiantly keep punching up the mix.\nAmbitious, unsettling psychodrama that takes full, chilling advantage of its rough-around-the-edges, low-budget constraints.\nEric Byler's nuanced pic avoids easy sentiments and explanations ...\nManages to be wholesome and subversive at the same time.\nWhen it's not wallowing in hormonal melodrama, ``Real Women Have Curves'' is a sweet, honest, and enjoyable comedy-drama about a young woman who wants many things in life, but fears she'll become her mother before she gets to fulfill her dreams.\nThe film runs on a little longer than it needs to -- Muccino either doesn't notice when his story ends or just can't tear himself away from the characters -- but it's smooth and professional.\nBlithely anachronistic and slyly achronological.\nThis starts off with a 1950's Doris Day feel and it gets very ugly, very fast. The first five minutes will have you talking 'til the end of the year!\nTriumph of Love is a very silly movie, but the silliness has a pedigree.\nDiscursive but oddly riveting documentary.\nThe movie has no respect for laws, political correctness or common decency, but it displays something more important: respect for its flawed, crazy people.\nOn its own, Big Trouble could be considered a funny little film.\nAn undeniably gorgeous, terminally smitten document of a troubadour, his acolytes, and the triumph of his band.\nThis cinema verite speculation on the assassination of John F. Kennedy may have been inspired by Blair Witch, but it takes its techniques into such fresh territory that the film never feels derivative.\nA beautifully observed character piece.\nA coming-of-age movie that Hollywood wouldn't have the guts to make.\nIt is quite a vision.\nThere are laughs aplenty, and, as a bonus, viewers don't have to worry about being subjected to farts, urine, feces, semen, or any of the other foul substances that have overrun modern-day comedies.\nA bittersweet drama about the limbo of grief and how truth-telling can open the door to liberation.\nA strong and confident work which works so well for the first 89 minutes, but ends so horrendously confusing in the final two\nSalma goes native and she's never been better in this colorful bio-pic of a Mexican icon.\nFilled with Alexandre Desplat's haunting and sublime music, the movie completely transfixes the audience.\nAs chilling and fascinating as Philippe Mora's modern Hitler-study, Snide and Prejudice.\nAn hour and a half of joyful solo performance.\nStrange and beautiful film.\nNo worse a film than Breaking Out, and Breaking Out was utterly charming.\nParker cannot sustain the buoyant energy level of the film's city beginnings into its country conclusion\n'... Despite lagging near the finish line, the movie runs a good race, one that will have you at the edge of your seat for long stretches.'\n...a guiltless film for nice evening out.\nDeflated ending aside, there's much to recommend the film.\nIt's a treat – a delightful, witty, improbable romantic comedy with a zippy jazzy score... Grant and Bullock make it look as though they are having so much fun.\nPerformances all around are tops, with the two leads delivering Oscar-caliber performances.\nEverything about The Quiet American is good, except its timing.\nA savage John Waters-like humor that dances on the edge of tastelessness without ever quite falling over.\nAt once a testament to the divine calling of education and a demonstration of the painstaking process of imparting knowledge.\nMay seriously impair your ability to ever again maintain a straight face while speaking to a highway patrolman.\nIt's an interesting effort (particularly for JFK conspiracy nuts), and Barry's cold-fish act makes the experience worthwhile.\nThey're just a couple of cops in Copmovieland, these two, but in Narc, they find new routes through a familiar neighborhood.\nBrings awareness to an issue often overlooked -- women's depression.\nIt's a shame the marvelous first 101 minutes have to be combined with the misconceived final 5.\nIt has a caffeinated, sloppy brilliance, sparkling with ideas you wish had been developed with more care, but animated by an energy that puts the dutiful efforts of more disciplined grade-grubbers to shame.\nYou can almost see Mendes and company getting together before a single frame had been shot and collectively vowing, 'This is going to be something really good.' And it is.\nFoster and Whitaker are especially fine. She is a lioness, protecting her cub, and he a reluctant villain, incapable of controlling his crew.\nUndoubtedly the scariest movie ever made about tattoos.\nA movie that will wear you out and make you misty even when you don't want to be.\nNot only better than its predecessor, it may rate as the most magical and most fun family fare of this or any recent holiday season.\nThough the story ... is hackneyed, the characters have a freshness and modesty that transcends their predicament.\nAlthough Frailty fits into a classic genre, in its script and execution it is a remarkably original work.\nIf this movie leaves you cool, it also leaves you intriguingly contemplative.\nThe climactic events are so well realized that you may forget all about the original conflict, just like the movie does\nA rude black comedy about the catalytic effect a holy fool has upon those around him in the cutthroat world of children's television.\nAll comedy is subversive, but this unrelenting bleak insistence on opting out of any opportunity for finding meaning in relationships or work just becomes sad.\nIf a horror movie's primary goal is to frighten and disturb, then They works spectacularly well...A shiver-inducing, nerve-rattling ride.\nA playful Iranian parable about openness, particularly the need for people of diverse political perspectives to get along despite their ideological differences.\nBrilliantly written and well-acted, Yellow Asphalt is an uncompromising film.\nThat 'Alabama' manages to be pleasant in spite of its predictability and occasional slowness is due primarily to the perkiness of Witherspoon (who is always a joy to watch, even when her material is not first-rate)...\nPersonal Velocity has a no-frills docu-Dogma plainness, yet Miller lingers on invisible, nearly psychic nuances, leaping into digressions of memory and desire. She boxes these women's souls right open for us.\nA fascinating literary mystery story with multiple strands about the controversy of who really wrote Shakespeare's plays.\nThroughout, Mr. Audiard's direction is fluid and quick.\nA dashing and absorbing outing with one of France's most inventive directors.\nIt's a fine, old-fashioned-movie movie, which is to say it's unburdened by pretensions to great artistic significance.\n...flat-out amusing, sometimes endearing and often fabulous, with a solid cast, noteworthy characters, delicious dialogue and a wide supply of effective sight gags.\nThe Trials of Henry Kissinger is a remarkable piece of filmmaking ... because you get it.\nNachtwey clears the cynicism right out of you. He makes you realize that deep inside righteousness can be found a tough beauty.\nWhat it lacks in substance it makes up for in heart.\nRobert Harmon's less-is-more approach delivers real bump-in -the-night chills -- his greatest triumph is keeping the creepy crawlies hidden in the film's thick shadows.\nWith its hint of an awkward Hitchcockian theme in tact, Harmon's daunting narrative promotes a reasonable landscape of conflict and pathos to support the scattershot terrorizing tone\nIn Auteil's less dramatic but equally incisive performance, he's a charismatic charmer likely to seduce and conquer.\nThe heart of the film is a touching reflection on aging, suffering and the prospect of death.\nWill you go ape over this movie? Well, it probably won't have you swinging from the trees hooting it's praises, but it's definitely worth taking a look.\nIts director's most substantial feature for some time.\nFontaine's direction, especially her agreeably startling use of close-ups and her grace with a moving camera, creates sheerly cinematic appeal.\nThe Son Of The Bride's humour is born out of an engaging storyline, which also isn't embarrassed to make you reach for the tissues. This movie is to be cherished.\n... a visually seductive, unrepentantly trashy take on Rice's second installment of her Vampire Chronicles.\nThe story's scope and pageantry are mesmerizing, and Mr. Day-Lewis roars with leonine power.\nP.T. Anderson understands the grandness of romance and how love is the great equalizer that can calm us of our daily ills and bring out joys in our lives that we never knew were possible.\nTwenty years later, E.T. is still a cinematic touchstone.\nThis fascinating experiment plays as more of a poetic than a strict reality, creating an intriguing species of artifice that gives The Lady and the Duke something of a theatrical air.\nIt's virtually impossible to like any of these despicable characters.\nThis is mostly well-constructed fluff, which is all it seems intended to be.\nEven through its flaws, Revolution #9 proves to be a compelling, interestingly told film.\nThe best way to describe it is as a cross between Paul Thomas Anderson's Magnolia and David Lynch's Mulholland Dr.\nSchepisi, aided by a cast that seems to include every top-notch British actor who did not appear in Gosford Park (as well as one, Ms. Mirren, who did), has succeeded beyond all expectation.\nWatching this film, one is left with the inescapable conclusion that Hitchens' obsession with Kissinger is, at bottom, a sophisticated flower child's desire to purge the world of the tooth and claw of human power.\nThere is no denying the power of Polanski's film...\nThe movie is amateurish, but it's a minor treat.\nThis charming but slight tale has warmth, wit and interesting characters compassionately portrayed.\nOffers a persuasive look at a defeated but defiant nation in flux.\nA return to pure Disney magic and is enjoyable family fare.\nTakes a fresh and absorbing look at a figure whose legacy had begun to bronze.\nA triumph of pure craft and passionate heart.\nGosling creates a staggeringly compelling character, a young man whose sharp intellect is at the very root of his contradictory, self-hating, self-destructive ways.\nWitty and often surprising, a dark little morality tale disguised as a romantic comedy.\nEven as it pays earnest homage to turntablists and beat jugglers, old schoolers and current innovators, Scratch is great fun, full of the kind of energy it's documenting.\nGot a David Lynch jones? Then you'd do well to check this one out because it's straight up Twin Peaks action...\nAstonishing...(frames) profound ethical and philosophical questions in the form of dazzling pop entertainment.\nTake Care is nicely performed by a quintet of actresses, but nonetheless it drags during its 112-minute length.\nIt's hard to fairly judge a film like RINGU when you've seen the remake first. Many of the effective horror elements are dampened through familiarity, (yet) are worthwhile.\nOne of the very best movies ever made about the life of moviemaking.\nRarely does such high-profile talent serve such literate material.\nAn elegant and sly deadpan comedy.\nThe way the roundelay of partners functions, and the interplay within partnerships and among partnerships and the general air of Gator-bashing are consistently delightful.\nLand, people and narrative flow together in a stark portrait of motherhood deferred and desire explored.\n'Blue Crush' swims away with the Sleeper Movie of the Summer award.\nYou're not merely watching history, you're engulfed by it.\nA chick flick for guys.\nIt's mildly entertaining, especially if you find comfort in familiarity. But it's hardly a necessary enterprise.\nThe Quiet American isn't a bad film, it's just one that could easily wait for your pay per view dollar.\nAs home movie gone haywire, it's pretty enjoyable, but as sexual manifesto, I'd rather listen to old Tori Amos records.\nIn its treatment of the dehumanizing and ego-destroying process of unemployment, Time Out offers an exploration that is more accurate than anything I have seen in an American film.\nLike an episode of MTV's Undressed, with 20 times the creativity but without any more substance...indulgently entertaining but could have and should have been deeper.\nA sensitive, cultivated treatment of Greene's work as well as a remarkably faithful one.\nIt's not just a feel-good movie, it's a feel movie. You feel good, you feel sad, you feel pissed off, but in the end, you feel alive - which is what they did.\nIt's a piece of handiwork that shows its indie tatters and self-conscious seams in places, but has some quietly moving moments and an intelligent subtlety.\nWhat makes Barbershop so likable, with all its flaws, is that it has none of the pushiness and decibel volume of most contemporary comedies.\nWatching these two actors play against each other so intensely, but with restraint, is a treat.\nAn example of quiet, confident craftsmanship that tells a sweet, charming tale of intergalactic friendship.\nA meditation on faith and madness, Frailty is blood-curdling stuff.\nThe production design, score and choreography are simply intoxicating.\nA comedy that is warm, inviting, and surprising.\nSo vivid a portrait of a woman consumed by lust and love and crushed by betrayal that it conjures up the intoxicating fumes and emotional ghosts of a freshly painted Rembrandt.\nSuspend your disbelief here and now, or you'll be shaking your head all the way to the credits.\nTrades run-of-the-mill revulsion for extreme unease.\n...one of the more influential works of the 'Korean New Wave'.\nImplicitly acknowledges and celebrates the glorious chicanery and self-delusion of this most American of businesses, and for that reason it may be the most oddly honest Hollywood document of all.\nA beautifully tooled action thriller about love and terrorism in Korea.\nDirector-writer Bille August ... depicts this relationship with economical grace, letting his superb actors convey Martin's deterioration and Barbara's sadness -- and, occasionally, anger.\nVictor Rosa is Leguizamo's best movie work so far, a subtle and richly internalized performance.\nBirthday Girl doesn't try to surprise us with plot twists, but rather seems to enjoy its own transparency.\nsmart, funny and just honest enough to provide the pleasures of a slightly naughty, just-above-average off- Broadway play.\nTopics that could make a sailor blush - but lots of laughs.\nMichael Moore has perfected the art of highly entertaining, self-aggrandizing, politically motivated documentary-making, and he's got as potent a topic as ever here.\nA fine production with splendid singing by Angela Gheorghiu, Ruggero Raimondi, and Roberto Alagna.\nAbout a Boy vividly recalls the Cary Grant of Room for One More, Houseboat and Father Goose in its affectionate depiction of the gentle war between a reluctant, irresponsible man and the kid who latches onto him.\nNone of this is meaningful or memorable, but frosting isn't, either, and you wouldn't turn down a big bowl of that, would you?\nThe film is a fierce dance of destruction. Its flame-like, roiling black-and-white inspires trembling and gratitude.\nMay lack the pungent bite of its title, but it's an enjoyable trifle nonetheless.\n... manages to fall closer in quality to Silence than to the abysmal Hannibal.\nYou may think you have figured out the con and the players in this debut film by Argentine director Fabian Bielinsky, but while you were thinking someone made off with your wallet.\nDiane Lane works nothing short of a minor miracle in Unfaithful.\nTakashi Miike keeps pushing the envelope: Ichi the Killer\nA fantastic premise anchors this movie, but what it needs is either a more rigid, Blair Witch-style commitment to its mockumentary format, or a more straightforward, dramatic treatment, with all the grandiosity that that implies.\nExhilarating but blatantly biased.\nMuch of what we see is horrible but it's also undeniably exceedingly clever.\nIt understands, in a way that speaks forcefully enough about the mechanisms of poverty to transcend the rather simplistic filmmaking.\nRamsay succeeds primarily with her typical blend of unsettling atmospherics, delivering a series of abrasive, stylized sequences that burn themselves upon the viewer's memory.\n... a thoughtful what-if for the heart as well as the mind.\nLike its bizarre heroine, it irrigates our souls.\nHawn and Sarandon form an acting bond that makes The Banger Sisters a fascinating character study with laughs to spare.\nIt's a fun adventure movie for kids (of all ages) that like adventure.\nA very capable nailbiter.\nBecause the genre is well established, what makes the movie fresh is smart writing, skewed characters, and the title performance by Kieran Culkin.\n``White Oleander,'' the movie, is akin to a Reader's Digest condensed version of the source material.\nIt's like going to a house party and watching the host defend himself against a frothing ex-girlfriend. You don't want to call the cops. You want to call Domino's.\nWhat's most refreshing about Real Women Have Curves is its unforced comedy-drama and its relaxed, natural-seeming actors.\nThe low-key direction is pleasingly emphatic in this properly intense, claustrophobic tale of obsessive love.\nSecretary is just too original to be ignored.\nThat rare film whose real-life basis is, in fact, so interesting that no embellishment is needed.\nSmart and fun, but far more witty than it is wise.\nThis isn't a stand up and cheer flick; it's a sit down and ponder affair. And thanks to Kline's superbly nuanced performance, that pondering is highly pleasurable.\nOriginality ain't on the menu, but there's never a dull moment in the giant spider invasion comic chiller.\nWalter Hill's Undisputed is like a 1940s Warner Bros. B picture, and I mean that as a compliment.\nThis one is not nearly as dreadful as expected. In fact, it's quite fun in places.\nWith elements cribbed from Lang's Metropolis, Welles' Kane, and Eisenstein's Potemkin, the true wonder of Rintarô's Metropolis is the number of lasting images all its own.\nA biopic about Crane's life in the classic tradition but evolves into what has become of us all in the era of video.\nThe best of the Pierce Brosnan James Bond films to date.\nThanks to a small star with big heart, this family film sequel is plenty of fun for all.\nWhile the now 72-year-old Robert Evans been slowed down by a stroke, he has at least one more story to tell: his own.\nIt's about individual moments of mood, and an aimlessness that's actually sort of amazing.\nThe people in Jessica are so recognizable and true that, as in real life, we're never sure how things will work out.\nA tone poem of transgression.\nCreeps you out in high style, even if Nakata did it better.\nRubbo runs through a remarkable amount of material in the film's short 90 minutes.\nVisually engrossing, seldom hammy, honorably Mexican and burns its Kahlories with conviction.\nThis is Christmas Future for a lot of baby boomers.\nDespite a quieter middle section, involving Aragorn's dreams of Arwen, this is even better than The Fellowship. There are scenes of cinematic perfection that steal your heart away.\nSpider-Man is in the same category as X-Men - occasionally brilliant but mostly average, showing signs of potential for the sequels, but not giving us much this time around.\nThe obnoxious title character provides the drama that gives added clout to this doc.\nAnyone who welcomes a dash of the avant-garde fused with their humor should take pleasure in this crazed, joyous romp of a film.\nThe fun of the movie is the chance it affords to watch Jackson, who also served as executive producer, take his smooth, shrewd, powerful act abroad.\nSaddled with an unwieldy cast of characters and angles, but the payoff is powerful and revelatory.\nIt's something of the ultimate Scorsese film, with all the stomach-turning violence, colorful New York gang lore and other hallmarks of his personal cinema painted on their largest-ever historical canvas.\nMr. Caine and Mr. Fraser are the whole show here, with their memorable and resourceful performances.\nA frustrating yet deeply watchable melodrama that makes you think it's a tougher picture than it is.\nA giddy and provocative sexual romp that has something to say.\n(Russell) makes good B movies (The Mask, The Blob), and The Scorpion King more than ably meets those standards.\nOtto-Sallies has a real filmmaker's eye.\nThis is a smart movie that knows its classical music, knows its Freud and knows its Sade.\nThe film has an infectious enthusiasm and we're touched by the film's conviction that all life centered on that place, that time and that sport.\nBeautifully reclaiming the story of Carmen and recreating it an in an African idiom.\nThe camera soars above the globe in dazzling panoramic shots that make the most of the large-screen format, before swooping down on a string of exotic locales, scooping the whole world up in a joyous communal festival of rhythm.\nA flawed but engrossing thriller.\nDemonstrates the unusual power of thoughtful, subjective filmmaking.\nExpect no major discoveries, nor any stylish sizzle, but the film sits with square conviction and touching good sense on the experience of its women.\nThe success of Undercover Brother is found in its ability to spoof both black and white stereotypes equally.\nThis is the kind of subject matter that could so easily have been fumbled by a lesser filmmaker, but Ayres makes the right choices at every turn.\nCox creates a fluid and mesmerizing sequence of images to match the words of Nijinsky's diaries.\nWhat Bloody Sunday lacks in clarity, it makes up for with a great, fiery passion.\nIts adult themes of familial separation and societal betrayal are head and shoulders above much of the director's previous popcorn work.\nDirector Nancy Savoca's no-frills record of a show forged in still-raw emotions captures the unsettled tenor of that post 9-11 period far better than a more measured or polished production ever could.\nThe film grows on you. And how.\nOne thing you have to give them credit for: The message of the movie is consistent with the messages espoused in the company's previous video work.\nHalloween: Resurrection isn't exactly quality cinema, but it isn't nearly as terrible as it cold have been.\nAs banal as the telling may be -- and at times, All My Loved Ones more than flirts with kitsch -- the tale commands attention.\nRomantic comedy and Dogme 95 filmmaking may seem odd bedfellows, but they turn out to be delightfully compatible here.\nThe most wondrous love story in years, it is a great film.\nSome movies suck you in despite their flaws, and Heaven is one such beast.\nMy Wife Is an Actress works as well as it does because (the leads) are such a companionable couple.\nWith Spy Kids 2: The Island of Lost Dreams, however, Robert Rodriguez adorns his family-film plot with an elegance and maturity that even most contemporary adult movies are lacking.\nBased on Dave Barry's popular book of the same name, the movie benefits from having a real writer plot out all of the characters' moves and overlapping story.\nBouquet gives a performance that is masterly.\nA poignant comedy that offers food for thought.\n...a series of tales told with the intricate preciseness of the best short story writing.\nIf you're content with a clever pseudo-bio that manages to have a good time as it doles out pieces of the famous director's life, Eisenstein delivers.\nThis filmed Tosca -- not the first, by the way -- is a pretty good job, if it's filmed Tosca that you want. I'll stay with the stage versions, however, which bite cleaner, and deeper.\nWhile the path may be familiar, first-time director Denzel Washington and a top-notch cast manage to keep things interesting.\nAn engaging criminal romp that will have viewers guessing just who's being conned right up to the finale.\nThe picture runs a mere 84 minutes, but it's no glance. It's a head-turner -- thoughtfully written, beautifully read and, finally, deeply humanizing.\nIt asks nothing of the audience other than to sit back and enjoy a couple of great actors hamming it up.\nIt is as uncompromising as it is nonjudgmental, and makes clear that a prostitute can be as lonely and needy as any of the clients.\n``Barbershop'' is a good-hearted ensemble comedy with a variety of quirky characters and an engaging story.\nTully is in many ways the perfect festival film: a calm, self-assured portrait of small town regret, love, duty and friendship that appeals to the storytelling instincts of a slightly more literate filmgoing audience.\nI like this movie a lot. I like that Smith, he's not making fun of these people, he's not laughing at them.\n...the implication is Kissinger may have decided that -- when it comes to truncheoning -- it's better to give than to receive.\n'What's the Russian word for Wow!?'\nKiarostami has crafted a deceptively casual ode to children and managed to convey a tiny sense of hope.\nI had more fun watching Spy than I had with most of the big summer movies.\nWhat Lee does so marvelously compelling is present Brown as a catalyst for the struggle of black manhood in restrictive and chaotic America...sketchy but nevertheless gripping portrait of Jim Brown, a celebrated wonder in the spotlight\nMurder by Numbers' isn't a great movie, but it's a perfectly acceptable widget.\nFor those of an indulgent, slightly sunbaked and summery mind, Sex and Lucia may well prove diverting enough.\nWhat (Denis) accomplishes in his chilling, unnerving film is a double portrait of two young women whose lives were as claustrophic, suffocating and chilly as the attics to which they were inevitably consigned.\nA well-done film of a self-reflexive, philosophical nature.\nTexan director George Ratliff had unlimited access to families and church meetings, and he delivers fascinating psychological fare.\nThe rich performances by Friel -- and especially Williams, an American actress who becomes fully English -- round out the square edges.\nThe new Insomnia is a surprisingly faithful remake of its chilly predecessor, and when it does elect to head off in its own direction, it employs changes that fit it well rather than ones that were imposed for the sake of commercial sensibilities.\nA film in a class with Spike Lee's masterful Do The Right Thing.\nJagger, Stoppard and director Michael Apted ... deliver a riveting and surprisingly romantic ride.\nGreengrass (working from Don Mullan's script) forgoes the larger socio-political picture of the situation in Northern Ireland in favour of an approach that throws one in the pulsating thick of a truly frightening situation.\nA thought-provoking and often-funny drama about isolation.\nWhatever one makes of its political edge, this is beautiful filmmaking from one of French cinema's master craftsmen.\nMama Africa pretty much delivers on that promise. It does give you a peek. The main problem being that it's only a peek.\nRoman Polanski's autobiographical gesture at redemption is better than 'Shindler's List' - it is more than merely a Holocaust movie.\nA perfectly respectable, perfectly inoffensive, easily forgettable film.\nRomanek's themes are every bit as distinctive as his visuals. Beyond the cleverness, the weirdness and the pristine camerawork, One Hour Photo is a sobering meditation on why we take pictures.\nSeeing Seinfeld at home as he watches his own appearance on Letterman with a clinical eye reminds you that the key to stand-up is to always make it look easy, even though the reality is anything but.\nSpeaks eloquently about the symbiotic relationship between art and life.\nThe work of an artist tormented by his heritage, using his storytelling ability to honor the many faceless victims.\nThe audacity to view one of Shakespeare's better known tragedies as a dark comedy is, by itself, deserving of discussion.\nThis is an exercise in chilling style, and Twohy films the sub, inside and out, with an eye on preserving a sense of mystery.\nAn uncomfortable experience, but one as brave and challenging as you could possibly expect these days from American cinema.\nHailed as a clever exercise in neo-Hitchcockianism, this clever and very satisfying picture is more accurately Chabrolian.\nFunny and also heartwarming without stooping to gooeyness.\nAt the film's centre is a precisely layered performance by an actor in his mid-seventies, Michel Piccoli.\nThe viewer takes great pleasure in watching the resourceful Molly stay a step ahead of her pursuers.\nWith amazing finesse, the film shadows Heidi's trip back to Vietnam and the city where her mother, Mai Thi Kim, still lives.\nDirector Charles Stone III applies more detail to the film's music than to the story line; what's best about Drumline is its energy.\nA heroic tale of persistence that is sure to win viewers' hearts.\nIt's all a rather shapeless good time...\nhas far more energy, wit and warmth than should be expected from any movie with a ``2'' at the end of its title.\nA little better than Sorcerer's Stone.\nA chilling movie without oppressive gore.\nA uniquely sensual metaphorical dramatization of sexual obsession that spends a bit too much time on its fairly ludicrous plot.\nIf you like peace, you'll like Promises.\nBe prepared to cling to the edge of your seat, tense with suspense. The Ring never lets you off the hook.\nThumbs up to Paxton for not falling into the Hollywood trap and making a vanity project with nothing new to offer.\nAt once disarmingly straightforward and strikingly devious.\nIf you like quirky, odd movies and/or the ironic, here's a fun one.\nSensitive ensemble performances and good period reconstruction add up to a moving tragedy with some buoyant human moments.\nIt's not the least of Afghan tragedies that this noble warlord would be consigned to the dustbin of history.\nIt's a lovely, sad dance highlighted by Kwan's unique directing style.\nThe script by David Koepp is perfectly serviceable and because he gives the story some soul ... he elevates the experience to a more mythic level.\nThis is a visually stunning rumination on love, memory, history and the war between art and commerce.\nShort-story quaint, touchingly mending a child's pain for his dead mother via communication with an old woman straight out of Eudora Welty.\nIt's always fascinating to watch Marker the essayist at work.\nA quiet family drama with a little bit of romance and a dose of darkness.\nThe tasteful little revision works wonders, enhancing the cultural and economic subtext, bringing richer meaning to the story's morals.\nKosminsky ... puts enough salt into the wounds of the tortured and self-conscious material to make it sting.\nOne of the greatest films I've ever seen.\nIts gentle, touching story creeps into your heart.\nAbout as big a crowdpleaser as they possibly come.\nBound to appeal to women looking for a howlingly trashy time.\nEven these tales of just seven children seem at times too many, although in reality they are not enough. Every child's story is what matters. This film can only point the way -- but thank goodness for this signpost.\nA poignant and gently humorous parable that loves its characters and communicates something rather beautiful about human nature.\nReal Women Have Curves doesn't offer any easy answers.\nVampire epic succeeds as spooky action-packed trash of the highest order.\nOne of the funniest motion pictures of the year, but...also one of the most curiously depressing.\nWhile somewhat less than it might have been, the film is a good one, and you've got to hand it to director George Clooney for biting off such a big job the first time out.\nLike the chilled breath of oral storytelling frozen onto film.\nA charmer from Belgium.\nA wild, endearing, masterful documentary.\nJackie Chan movies are a guilty pleasure - he's easy to like and always leaves us laughing.\nBrown Sugar signals director Rick Famuyiwa's emergence as an articulate, grown-up voice in African-American cinema.\nWith exquisite craftsmanship ... Olivier Assayas has fashioned an absorbing look at provincial bourgeois French society.\nIt's rare for any movie to be as subtle and touching as The Son's Room.\nIt has a way of seeping into your consciousness, with lingering questions about what the film is really getting at.\nMaelstrom is a deliberately unsteady mixture of stylistic elements.\n(Leigh) has a true talent for drawing wrenching performances from his actors (improvised over many months) and for conveying the way tiny acts of kindness make ordinary life survivable.\n(D)espite its familiar subject matter, Ice Age is consistently amusing and engrossing ...\nThe ingenious construction (adapted by David Hare from Michael Cunningham's novel) constantly flows forwards and back, weaving themes among three strands which allow us to view events as if through a prism\nAssured, glossy and shot through with brittle desperation.\nThe bottom line is the piece works brilliantly.\nIt was only a matter of time before some savvy producer saw the potential success inherent in the mixture of Bullock Bubble and Hugh Goo.\nIt is Scott's convincing portrayal of Roger the sad cad that really gives the film its oomph.\nWhile this movie, by necessity, lacks Fellowship's heart, Two Towers outdoes its spectacle.\nMeyjes ... has done his homework and soaked up some jazzy new revisionist theories about the origins of Nazi politics and aesthetics.\nAside from Rohmer's bold choices regarding point of view, The Lady and the Duke represents the filmmaker's lifelong concern with formalist experimentation in cinematic art.\nWhat 'Dumb and Dumber' would have been without the vulgarity and with an intelligent, life-affirming script.\n...a vivid, thoughtful, unapologetically raw coming-of-age tale full of sex, drugs and rock 'n' roll.\nYou wouldn't want to live waydowntown, but it is a hilarious place to visit.\nFilms are made of little moments. Changing Lanes tries for more. It doesn't reach them, but the effort is gratefully received.\nWhen the movie mixes the cornpone and the Cosa Nostra, it finds a nice rhythm.\nThe story is a rather simplistic one: grief drives her, love drives him, and a second chance to find love in the most unlikely place - it struck a chord in me.\nTerrific casting and solid execution give all three stories life.\nA hard look at one man's occupational angst and its subsequent reinvention, a terrifying study of bourgeois desperation worthy of Claude Chabrol.\n(Ramsay) visually transforms the dreary expanse of dead-end distaste the characters inhabit into a poem of art, music and metaphor.\nFrequent flurries of creative belly laughs and genuinely enthusiastic performances...keep the movie slaloming through its hackneyed elements with enjoyable ease.\nAt its best, this is grand-scale moviemaking for a larger-than-life figure, an artist who has been awarded mythic status in contemporary culture.\nThe plot of the comeback curlers isn't very interesting actually, but what I like about Men With Brooms and what is kind of special is how the film knows what's unique and quirky about Canadians.\n10 minutes into the film you'll be white-knuckled and unable to look away.\nIt's a beautiful film, full of elaborate and twisted characters - and it's also pretty funny.\nCould this be the first major studio production shot on video tape instead of film?\nNot since Ghostbusters has a film used Manhattan's architecture in such a gloriously goofy way.\nAs tricky and satisfying as any of David Mamet's airless cinematic shell games.\nThe universal theme of becoming a better person through love has never been filmed more irresistibly than in 'Baran.'\nCube's charisma and chemistry compensate for corniness and cliche.\nWith lesser talents, High Crimes would be entertaining, but forgettable. With Freeman and Judd, I'll at least remember their characters.\nAs a director, Paxton is surprisingly brilliant, deftly sewing together what could have been a confusing and horrifying vision into an intense and engrossing head-trip.\nThe film is filled with humorous observations about the general absurdity of modern life as seen through the eyes outsiders, but deftly manages to avoid many of the condescending stereotypes that so often plague films dealing with the mentally ill.\nDaughter From Danang sticks with its subjects a little longer and tells a deeper story\nA coming-of-age film that avoids the cartoonish clichés and sneering humor of the genre as it provides a fresh view of an old type -- the uncertain girl on the brink of womanhood.\nThe faithful will enjoy this sometimes wry adaptation of V.S. Naipaul's novel, but newcomers may find themselves stifling a yawn or two during the first hour.\nA distinguished and thoughtful film, marked by acute writing and a host of splendid performances.\nBarry convinces us he's a dangerous, secretly unhinged guy who could easily have killed a president because it made him feel powerful.\nTakes you by the face, strokes your cheeks and coos beseechingly at you: slow down, shake off your tensions and take this picture at its own breezy, distracted rhythms.\nI don't feel the least bit ashamed in admitting that my enjoyment came at the expense of seeing justice served, even if it's a dish that's best served cold.\nIt's a smart, solid, kinetically-charged spy flick worthy of a couple hours of summertime and a bucket of popcorn. Nothing overly original, mind you, but solidly entertaining.\nChanging Lanes is an anomaly for a Hollywood movie; it's a well-written and occasionally challenging social drama that actually has something interesting to say.\nborrows a bit from the classics ``Wait Until Dark'' and ``Extremities'' ... But in terms of its style, the movie is in a class by itself.\nBecause Eight Legged Freaks is partly an homage to Them, Tarantula and other low- budget B-movie thrillers of the 1950s and '60s, the movie is a silly (but not sophomoric) romp through horror and hellish conditions.\nPuts a refreshing and comical spin on the all-too-familiar saga of the contemporary single woman.\nIf you grew up on Scooby -- you'll love this movie. Matthew Lillard is born to play Shaggy!\nThough filmed partly in Canada, Paid in Full has clever ways of capturing inner-city life during the Reagan years.\n``Spider-man is better than any summer blockbuster we had to endure last summer, and hopefully, sets the tone for a summer of good stuff. If you're a comic fan, you can't miss it. If you're not, you'll still have a good time.''\nThis movie has a strong message about never giving up on a loved one, but it's not an easy movie to watch and will probably disturb many who see it.\nThe movie is a trove of delights.\nExcellent performances from Jacqueline Bisset and Martha Plimpton grace this deeply touching melodrama.\nIn a summer of clones, Harvard Man is something rare and riveting: a wild ride that relies on more than special effects.\nWhile the humor is recognizably Plympton, he has actually bothered to construct a real story this time.\nJolting into Charleston rhythms, the story has the sizzle of old news that has finally found the right vent (accurate? Who cares?).\nAn overly melodramatic but somewhat insightful French coming-of-age film ...\nMost thrillers send audiences out talking about specific scary scenes or startling moments; ``Frailty'' leaves us with the terrifying message that the real horror may be waiting for us at home.\nClose enough in spirit to its freewheeling trash-cinema roots to be a breath of fresh air.\nSkillfully weaves both the elements of the plot and a powerfully evocative mood combining heated sexuality with a haunting sense of malaise.\nDamon brings the proper conviction to his role as (Jason Bourne).\nFor the most part, it works beautifully as a movie without sacrificing the integrity of the opera.\nAs played by Ryan Gosling, Danny is a frighteningly fascinating contradiction.\nThis is not Chabrol's best, but even his lesser works outshine the best some directors can offer.\nDespite its flaws, Crazy as Hell marks an encouraging new direction for La Salle.\nYou'll end up moved.\nIf you ever wondered what it would be like to be smack in the middle of a war zone armed with nothing but a camera, this Oscar-nominated documentary takes you there.\nThe Woodman seems to have directly influenced this girl-meets-girl love story, but even more reassuring is how its makers actually seem to understand what made Allen's romantic comedies so pertinent and enduring.\nI loved the look of this film.\nThose with a modicum of patience will find in these characters' foibles a timeless and unique perspective.\nBeautiful to watch and holds a certain charm.\n13 Conversations may be a bit too enigmatic and overly ambitious to be fully successful, but Sprecher and her screenwriting partner and sister, Karen Sprecher, don't seem ever to run out of ideas.\nThe movie is our story as much as it is Schmidt's, no matter if it's viewed as a self-reflection or cautionary tale.\nFoster breathes life into a roll that could have otherwise been bland and run of the mill.\nQuitting offers piercing domestic drama with spikes of sly humor.\nSome people want the ol' ball-and-chain and then there are those who just want the Ball and Chain.\n(Barry) gives Assassin a disquieting authority.\nIt's refreshing to see a romance this smart.\nAt its best (and it does have some very funny sequences) Looking for Leonard reminds you just how comically subversive silence can be.\nAs improbable as this premise may seem, Abbass's understated, shining performance offers us the sense that on some elemental level, Lilia deeply wants to break free of her old life.\nAnyone who ever fantasized about space travel but can't afford the $20 million ticket to ride a Russian rocket should catch this IMAX offering.\n``The turntable is now outselling the electric guitar...''\nTransforms one of (Shakespeare's) deepest tragedies into a smart new comedy.\nAn intelligent and deeply felt work about impossible, irrevocable choices and the price of making them.\nIt may sound like a mere disease-of- the-week TV movie, but A Song For Martin is made infinitely more wrenching by the performances of real-life spouses Seldahl and Wollter.\nSayles is making a statement about the inability of dreams and aspirations to carry forward into the next generation.\nAs Antonia is assimilated into this newfangled community, the film settles in and becomes compulsively watchable in a guilty-pleasure, daytime-drama sort of fashion.\nevery once in a while, a movie will come along that turns me into that annoying specimen of humanity that I usually dread encountering the most - The Fanboy\nOn its own staggeringly unoriginal terms, this gender-bending comedy is generally quite funny.\nIt's never dull and always looks good.\nThe tonal shifts are jolting, and though Wen's messages are profound and thoughtfully delivered, more thorough transitions would have made the film more cohesive.\nAs commander-in-chief of this film, Bigelow demonstrates a breadth of vision and an attention to detail that propels her into the upper echelons of the directing world.\nWith wit and empathy to spare, waydowntown acknowledges the silent screams of workaday inertia but stops short of indulging its characters' striving solipsism.\nAll of it works smoothly under the direction of Spielberg, who does a convincing impersonation here of a director enjoying himself immensely.\nThe kind of sweet-and-sour insider movie that film buffs will eat up like so much gelati.\nWith 'Bowling for Columbine,' Michael Moore gives us the perfect starting point for a national conversation about guns, violence, and fear.\nOne of the year's most weirdly engaging and unpredictable character pieces.\nOne of the best inside-show-biz yarns ever.\nNone of his actors stand out, but that's less of a problem here than it would be in another film: Characterization matters less than atmosphere.\nA terrifically entertaining specimen of Spielbergian sci-fi.\nA rare and lightly entertaining look behind the curtain that separates comics from the people laughing in the crowd.\nSolondz is so intent on hammering home his message that he forgets to make it entertaining.\nWhatever heartwarming scene the impressively discreet filmmakers may have expected to record with their mini DV, they show a remarkable ability to document both sides of this emotional car-wreck.\nIt establishes its ominous mood and tension swiftly, and if the suspense never rises to a higher level, it is nevertheless maintained throughout.\nAlthough What Time offers Tsai's usual style and themes, it has a more colorful, more playful tone than his other films.\nA moving and stark reminder that the casualties of war reach much further than we imagine.\nA thoroughly engaging, surprisingly touching British comedy.\nA sloppy, amusing comedy that proceeds from a stunningly unoriginal premise.\n...a rich and intelligent film that uses its pulpy core conceit to probe questions of attraction and interdependence and how the heart accomodates practical needs. It is an unstinting look at a collaboration between damaged people that may or may not qual\ncaptures that perverse element of the Kafkaesque where identity, overnight, is robbed and replaced with a persecuted ``other.''\nThe actors are simply too good, and the story too intriguing, for technical flaws to get in the way.\nAn estrogen opera so intensely feminine that it serves as the antidote (and cannier doppelganger) to Diesel's XXX flex-a-thon.\nImamura has said that Warm Water Under a Red Bridge is a poem to the enduring strengths of women. It may also be the best sex comedy about environmental pollution ever made.\nIt's a ripper of a yarn and I for one enjoyed the thrill of the chill. Naomi Watts is terrific as Rachel; her petite frame and vulnerable persona emphasising her plight and isolation.\nA family film that contains some hefty thematic material on time, death, eternity, and what is needed to live a rich and full life.\nWith Dickens' words and writer-director Douglas McGrath's even-toned direction, a ripping good yarn is told.\nExactly what its title implies: lusty, boisterous and utterly charming.\nThe film is darkly funny in its observation of just how much more grueling and time-consuming the illusion of work is than actual work.\nA smart, compelling drama.\nA must-see for fans of thoughtful war films and those interested in the sights and sounds of battle.\nI found myself liking the film, though in this case one man's treasure could prove to be another man's garbage.\n...Rogers's mouth never stops shut about the war between the sexes and how to win the battle.\nDeliberately and skillfully uses ambiguity to suggest possibilities which imbue the theme with added depth and resonance.\nIt's all entertaining enough, but don't look for any hefty anti-establishment message in what is essentially a whip-crack of a buddy movie that ends with a whimper.\nNicholson's understated performance is wonderful. As Warren he stumbles in search of all the emotions and life experiences he's neglected over the years.\nDespite its old-hat set-up and predictable plot, Empire still has enough moments to keep it entertaining.\nAnother entertaining romp from Robert Rodriguez.\nIt's not a classic spy-action or buddy movie, but it's entertaining enough and worth a look.\nI am more offended by his lack of faith in his audience than by anything on display here.\nA sharp satire of desperation and cinematic deception.\nTsai convincingly paints a specifically urban sense of disassociation here.\nIf you can swallow its absurdities and crudities Lagaan really is enormously good fun.\nAn unorthodox little film noir organized crime story that includes one of the strangest love stories you will ever see.\nA pleasing, often-funny comedy.\n(A) rare movie that makes us re-assess the basis for our lives and evaluate what is truly ours in a world of meaningless activity.\nAll three actresses are simply dazzling, particularly Balk, who's finally been given a part worthy of her considerable talents.\nAn Asian neo-realist treasure.\nPlummer steals the show without resorting to camp as Nicholas' wounded and wounding Uncle Ralph. It's a great performance and a reminder of Dickens' grandeur.\n... less a story than an inexplicable nightmare, right down to the population's shrugging acceptance to each new horror.\nI am highly amused by the idea that we have come to a point in society where it has been deemed important enough to make a film in which someone has to be hired to portray Richard Dawson.\nA compassionate, moving portrait of an American (and an America) always reaching for something just outside his grasp.\nAn original little film about one young woman's education.\nThe film is about the relationships rather than about the outcome. And it sees those relationships, including that between the son and his wife, and the wife and the father, and between the two brothers, with incredible subtlety and acumen.\nOne of those terrific documentaries that collect a bunch of people who are enthusiastic about something and then figures out how to make us share their enthusiasm.\nAn instance of an old dog not only learning but inventing a remarkable new trick.\nRodriguez has the chops of a smart-aleck film school brat and the imagination of a big kid...\nAmy and Matthew have a bit of a phony relationship, but the film works in spite of it.\nGarcia and the other actors help make the wobbly premise work.\nIt's surprisingly decent, particularly for a tenth installment in a series.\nA fascinating, unnerving examination of the delusions of one unstable man.\nIt's no accident that The Accidental Spy is a solid action pic that returns the martial arts master to top form.\nLeave it to the French to truly capture the terrifying angst of the modern working man without turning the film into a cheap thriller, a dumb comedy or a sappy melodrama.\nThe director, Mark Pellington, does a terrific job conjuring up a sinister, menacing atmosphere though unfortunately all the story gives us is flashing red lights, a rattling noise, and a bump on the head.\nHeartwarming here relies less on forced air than on Petter Næss' delicate, clever direction ... and a wonderful, imaginative script by Axel Hellstenius.\nMakes the case for a strong education and good teachers being more valuable in the way they help increase an average student's self-esteem, and not strictly in the knowledge imparted.\nSteers refreshingly clear of the usual cliches.\n``Home Movie'' is a sweet treasure and something well worth your time.\nHighly recommended viewing for its courage, ideas, technical proficiency and great acting.\nThe movie's thesis -- elegant technology for the masses -- is surprisingly refreshing.\nScott delivers a terrific performance in this fascinating portrait of a modern Lothario.\n... Wallace is smart to vary the pitch of his movie, balancing deafening battle scenes with quieter domestic scenes of women back home receiving War Department telegrams.\nCombines sharp comedy, old-fashioned monster movie atmospherics, and genuine heart to create a film that's not merely about kicking undead ***, but also about dealing with regret and, ultimately, finding redemption.\nWhile most films these days are about nothing, this film seems to be about everything that's plaguing the human spirit in a relentlessly globalizing world.\nMarshall puts a suspenseful spin on standard horror flick formula.\nAs lively an account as Seinfeld is deadpan.\nThough Lan Yu lacks a sense of dramatic urgency, the film makes up for it with a pleasing verisimilitude.\nYou may leave the theater with more questions than answers, but darned if your toes won't still be tapping.\nTake any 12-year-old boy to see this picture, and he'll be your slave for a year.\nBut this is not a movie about an inhuman monster; it's about a very human one.\nAt times THE GUYS taps into some powerful emotions, but this kind of material is more effective on stage. It's not a motion picture; it's an utterly static picture.\nWhat makes it worth watching is Quaid's performance.\nSoderbergh skims the fat from the 1972 film. What's left is a rich stew of longing.\nIt's the brilliant surfing photography bringing you right inside the massive waves that lifts Blue Crush into one of the summer's most pleasurable movies.\nMore of the same from Taiwanese auteur Tsai Ming-liang, which is good news to anyone who's fallen under the sweet, melancholy spell of this unique director's previous films.\nHatfield and Hicks make the oddest of couples, and in this sense the movie becomes a study of the gambles of the publishing world, offering a case study that exists apart from all the movie's political ramifications.\nBest of all is Garcia, who perfectly portrays the desperation of a very insecure man.\nThe filmmakers try to balance pointed, often incisive satire and unabashed sweetness, with results that are sometimes bracing, sometimes baffling and quite often, and in unexpected ways, touching.\nA sobering and powerful documentary about the most severe kind of personal loss: rejection by one's mother.\nOften overwrought and at times positively irritating, the film turns into an engrossing thriller almost in spite of itself.\nHumorous and heartfelt, Douglas McGrath's version of 'Nicholas Nickleby' left me feeling refreshed and hopeful. Not many movies have that kind of impact on me these days.\nA poignant lyricism runs through Balzac and the Little Chinese Seamstress that transforms this story about love and culture into a cinematic poem.\nThis is SO De Palma. If you love him, you'll like it. If you don't...well, skip to another review.\nRouge is less about a superficial midlife crisis than it is about the need to stay in touch with your own skin, at 18 or 80.\nThe moral shrapnel and mental shellshock will linger long after this film has ended.\nUnfolds in a series of achronological vignettes whose cumulative effect is chilling.\nThe movie enters a realm where few non-porn films venture, and comes across as darkly funny, energetic, and surprisingly gentle.\nAlthough the subject matter may still be too close to recent national events, the film works - mostly due to its superior cast of characters.\nIt's not going to be everyone's bag of popcorn, but it definitely gives you something to chew on.\nHuppert and Girardot give performances of exceptional honesty.\nIt has that rare quality of being able to creep the living hell out of you...\nA cautionary tale about the grandiosity of a college student who sees himself as impervious to a fall.\nAn infinitely wittier version of the Home Alone formula.\nFeardotcom's thrills are all cheap, but they mostly work.\n(Hayek) throws herself into this dream Hispanic role with a teeth-clenching gusto, she strikes a potent chemistry with Molina and she gradually makes us believe she is Kahlo.\nMr. Deeds is, as comedy goes, very silly -- and in the best way.\nYou could love Safe Conduct (Laissez Passer) for being a subtitled French movie that is 170 minutes long. You could hate it for the same reason.\nWith We Were Soldiers, Hollywood makes a valiant attempt to tell a story about the Vietnam War before the pathology set in.\n'Moore is like a progressive bull in a china shop, a provocateur crashing into ideas and special-interest groups as he slaps together his own brand of liberalism.'\nBroomfield reveals an ironic manifestation of institutionalized slavery that ties a black-owned record label with a white-empowered police force.\nAt just over an hour, Home Movie will leave you wanting more, not to mention leaving you with some laughs and a smile on your face.\nStuart's poor-me persona needs a whole bunch of Snowball's cynicism to cut through the sugar coating. But once the falcon arrives in the skies above Manhattan, the adventure is on red alert.\nThere is greatness here.\nBoasts enough funny dialogue and sharp characterizations to be mildly amusing.\nDirector Juan Jose Campanella could have turned this into an Argentine retread of ``Iris'' or ``American Beauty,'' but instead pulls a little from each film and creates something more beautiful than either of those films.\nIf you love the music, and I do, its hard to imagine having more fun watching a documentary ...\nNakata's technique is to imply terror by suggestion, rather than the overuse of special effects.\n``13 Conversations About One Thing'' is an intelligent flick that examines many different ideas from happiness to guilt in an intriguing bit of storytelling.\nSatin Rouge is not a new, or inventive, journey, but it's encouraging to see a three-dimensional, average, middle-aged woman's experience of self-discovery handled with such sensitivity.\nThough an important political documentary, this does not really make the case the Kissinger should be tried as a war criminal.\nCannon's confidence and laid-back good spirits are, with the drumming routines, among the film's saving graces.\nIn its understanding, often funny way, it tells a story whose restatement is validated by the changing composition of the nation.\nShe may not be real, but the laughs are.\nA fiercely clever and subtle film, capturing the precarious balance between the extravagant confidence of the exiled aristocracy and the cruel earnestness of the victorious revolutionaries.\nOK arthouse. The power of this script, and the performances that come with it, is that the whole damned thing didn't get our moral hackles up.\nThe movie itself is far from disappointing, offering an original take on courtroom movies, a few nifty twists that are so crucial to the genre and another first-rate performance by top-billed star Bruce Willis.\nAbout Schmidt is undoubtedly one of the finest films of the year. If you're not deeply touched by this movie, check your pulse.\nThe charm of Revolution OS is rather the way it introduces you to new, fervently held ideas and fanciful thinkers.\nUntil its final minutes this is a perceptive study of two families in crisis -- and of two girls whose friendship is severely tested by bad luck and their own immaturity.\nOffers the flash of rock videos fused with solid performances and eerie atmosphere.\nFilmmakers Dana Janklowicz-Mann and Amir Mann area headed east, Far East, in retelling a historically significant, and personal, episode detailing how one international city welcomed tens of thousands of German Jewish refugees while the world's democracie\nFor all its problems ... The Lady and the Duke surprisingly manages never to grow boring... which proves that Rohmer still has a sense of his audience.\nAn edifying glimpse into the wit and revolutionary spirit of these performers and their era.\nCraig Bartlett and director Tuck Tucker should be commended for illustrating the merits of fighting hard for something that really matters.\nThe film is saved from aren't-kids-cute sentimentality by a warmth that isn't faked and a stately sense of composition.\nThis is one of the year's best films.\nA fleet-footed and pleasingly upbeat family diversion.\nSorvino is delightful in the central role. She nearly glows with enthusiasm, sensuality and a conniving wit.\nIt's immensely ambitious, different than anything that's been done before and amazingly successful in terms of what it's trying to do.\nThe story, once it gets rolling, is nothing short of a great one.\nGreat performances, stylish cinematography and a gritty feel help make Gangster No. 1 a worthwhile moviegoing experience.\n``Mr. Deeds'' is suitable summer entertainment that offers escapism without requiring a great deal of thought.\nIt's an ambitious film, and as with all ambitious films, it has some problems. But on the whole, you're gonna like this movie.\nChaiken ably balances real-time rhythms with propulsive incident.\nThis is an extraordinary film, not least because it is Japanese and yet feels universal.\nIn a summer overrun with movies dominated by CGI aliens and super heroes, it revigorates the mind to see a feature that concentrates on people, a project in which the script and characters hold sway.\nThere's just something about watching a squad of psychopathic underdogs whale the tar out of unsuspecting lawmen that reaches across time and distance.\nA funny and touching film that is gorgeously acted by a British cast to rival Gosford Park's.\nThere's nothing more satisfying during a summer of event movies than a spy thriller like The Bourne Identity that's packed with just as much intelligence as action.\nI'm not generally a fan of vegetables but this batch is pretty cute.\nQutting may be a flawed film, but it is nothing if not sincere.\nBeautifully crafted, engaging filmmaking that should attract upscale audiences hungry for quality and a nostalgic, twisty yarn that will keep them guessing.\nA thoughtful and surprisingly affecting portrait of a screwed-up man who dared to mess with some powerful people, seen through the eyes of the idealistic kid who chooses to champion his ultimately losing cause.\nA cultural wildcard experience: wacky, different, unusual, even nutty.\nDaughter From Danang reveals that efforts toward closure only open new wounds. It doesn't flinch from its unsettling prognosis, namely, that the legacy of war is a kind of perpetual pain.\nFor most of its footage, the new thriller proves that director M. Night Shyamalan can weave an eerie spell and that Mel Gibson can gasp, shudder and even tremble without losing his machismo.\nThis is not an easy film. But it could be, by its art and heart, a necessary one.\nA very good film sits in the place where a masterpiece should be.\n...spellbinding fun and deliciously exploitative.\nIt's Jagger's bone-dry, mournfully brittle delivery that gives the film its bittersweet bite.\nImpossible as it may sound, this film's heart is even more embracing than Monty, if only because it accepts nasty behavior and severe flaws as part of the human condition.\nDespite the predictable parent vs. child coming-of-age theme, first-class, natural acting and a look at ``the real Americans'' make this a charmer.\nOne of the smarter offerings the horror genre has produced in recent memory, even if it's far tamer than advertised.\nOne of recent memory's most thoughtful films about art, ethics, and the cost of moral compromise.\nthe film doesn't sustain its initial promise with a jarring, new-agey tone creeping into the second half\nBlade II is as estrogen-free as movies get, so you might want to leave your date behind for this one, or she's gonna make you feel like you owe her big-time.\nThe message is that even the most unlikely can link together to conquer all kinds of obstacles, whether they be of nature, of man or of one another.\nMany a parent and their teen (or preteen) kid could bond while watching A Walk To Remember. So could young romantics out on a date.\nAll leather pants & augmented boobs, Hawn is hilarious as she tries to resuscitate the fun-loving libertine lost somewhere inside the conservative, handbag-clutching Sarandon.\nThe members manage to pronounce KOK exactly as you think they might, thus giving the cast ample opportunity to use that term as often as possible. It's very Beavis and Butthead, yet always seems to elicit a chuckle.\nWhile this gentle and affecting melodrama will have luvvies in raptures, it's far too slight and introspective to appeal to anything wider than a niche audience.\nChicago offers much colorful eye candy, including the spectacle of Gere in his dancing shoes, hoofing and crooning with the best of them.\nA difficult but worthy film that bites off more than it can chew by linking the massacre of Armenians in 1915 with some difficult relationships in the present.\nBy and large this is Mr. Kilmer's movie, and it's his strongest performance since The Doors.\nSome of the most ravaging, gut-wrenching, frightening war scenes since ``Saving Private Ryan'' have been recreated by John Woo in this little-known story of Native Americans and their role in the second great war.\nA charming but slight comedy.\nHenry Bean's thoughtful screenplay provides no easy answers, but offers a compelling investigation of faith versus intellect\nA great cast and a wonderful but sometimes confusing flashback movie about growing up in a dysfunctional family.\nPlaying a role of almost Bergmanesque intensity ... Bisset is both convincing and radiant.\nA smart, provocative drama that does the nearly impossible: It gets under the skin of a man we only know as an evil, monstrous lunatic.\nAn alternately fascinating and frustrating documentary.\nGriffin & Co. manage to be spectacularly outrageous.\nNair's cast is so large it's Altman-esque, but she deftly spins the multiple stories in a vibrant and intoxicating fashion.\nThe movie plays up the cartoon's more obvious strength of snazziness while neglecting its less conspicuous writing strength.\nPoignant Japanese epic about adolescent anomie and heartbreak.\nWe've seen it all before in one form or another, but director Hoffman, with great help from Kevin Kline, makes us care about this latest reincarnation of the world's greatest teacher.\nSecretary is not a movie about fetishism. It is a movie about passion.\nEven though it's common knowledge that Park and his founding partner, Yong Kang, lost Kozmo in the end, you can't help but get caught up in the thrill of the company's astonishing growth.\nAlthough some viewers will not be able to stomach so much tongue-in-cheek weirdness, those who do will have found a cult favorite to enjoy for a lifetime.\nWhat could have easily become a cold, calculated exercise in postmodern pastiche winds up a powerful and deeply moving example of melodramatic moviemaking.\nA delightful surprise because despite all the backstage drama, this is a movie that tells stories that work -- is charming, is moving, is funny and looks professional.\nThe IMAX screen enhances the personal touch of manual animation.\nDoes an impressive job of relating the complicated history of the war and of filling in the background.\nIt's all about Anakin ... and the lustrous polished visuals rich in color and creativity and, of course, special effect.\nLacks the inspiration of the original and has a bloated plot that stretches the running time about 10 minutes past a child's interest and an adult's patience. But it also has many of the things that made the first one charming.\nIt's funny, touching, dramatically forceful, and beautifully shot.\nIts rawness and vitality give it considerable punch.\nA live-wire film that never loses its ability to shock and amaze.\nThe year's greatest adventure, and Jackson's limited but enthusiastic adaptation has made literature literal without killing its soul -- a feat any thinking person is bound to appreciate.\nIt's fairly solid--not to mention well edited so that it certainly doesn't feel like a film that strays past the two and a half mark.\nBrims with passion: for words, for its eccentric, accident-prone characters, and for the crazy things that keep people going in this crazy life.\nIt's secondary to American Psycho but still has claws enough to get inside you and stay there for a couple of hours.\nThe Hours, a delicately crafted film, is an impressive achievement in spite of a river of sadness that pours into every frame.\nFudges fact and fancy with such confidence that we feel as if we're seeing something purer than the real thing.\nThis is unusual, food-for-thought cinema that's as entertaining as it is instructive.\nWith an expressive face reminiscent of Gong Li and a vivid personality like Zhang Ziyi's, Dong stakes out the emotional heart of Happy.\nNohe's documentary about the event is sympathetic without being gullible: He isn't blind to the silliness, but also captures moments of spontaneous creativity and authentic co-operative interaction.\nIt may not be as cutting, as witty or as true as back in the glory days of Weekend and Two or Three Things I Know About Her, but who else engaged in filmmaking today is so cognizant of the cultural and moral issues involved in the process?\nSecret Ballot is a funny, puzzling movie ambiguous enough to be engaging and oddly moving.\nAlthough devoid of objectivity and full of nostalgic comments from the now middle-aged participants, Dogtown and Z-Boys has a compelling story to tell.\nIt's got some pretentious eye-rolling moments and it didn't entirely grab me, but there's stuff here to like.\nBirthday Girl walks a tricky tightrope between being wickedly funny and just plain wicked.\nThe enjoyable Undercover Brother, a zany mix of Saturday Night Live-style parody, '70s Blaxploitation films and goofball action comedy gone wild, dishes out a ton of laughs that everyone can enjoy.\nBrings an irresistible blend of warmth and humor and a consistent embracing humanity in the face of life's harshness.\nJackson is always watchable.\nTo the degree that ivans xtc. works, it's thanks to Huston's revelatory performance.\nA wild ride of a movie that keeps throwing fastballs.\nConfessions is without a doubt a memorable directorial debut from King Hunk.\nWeird, vulgar comedy that's definitely an acquired taste.\nA...cynical and serious look at teenage boys doing what they do best - being teenagers.\nThe film is a very good viewing alternative for young women.\nAustralian filmmaker David Flatman uses the huge-screen format to make an old-fashioned nature film that educates viewers with words and pictures while entertaining them.\nA dazzling dream of a documentary.\nA keep-'em-guessing plot and an affectionate take on its screwed-up characters.\nBrave and sweetly rendered love story.\nThe film proves unrelentingly grim -- and equally engrossing.\nA hallmark film in an increasingly important film industry and worth the look.\nThe Last Kiss will probably never achieve the popularity of My Big Fat Greek Wedding, but its provocative central wedding sequence has far more impact.\nIf you like blood, guts and crazy beasts stalking men with guns though... you will likely enjoy this monster.\nThe difference between Cho and most comics is that her confidence in her material is merited.\nSad to say -- it accurately reflects the rage and alienation that fuels the self-destructiveness of many young people.\nThere is a strong directorial stamp on every frame of this stylish film that is able to visualize schizophrenia but is still confident enough to step back and look at the sick character with a sane eye.\n'Anyone with a passion for cinema, and indeed sex, should see it as soon as possible.'\nSeeks to transcend its genre with a curiously stylized, quasi-Shakespearean portrait of pure misogynist evil.\nMordantly funny and intimately knowing ...\nWhat makes the movie special is its utter sincerity.\nFast and funny, an action cartoon that's suspenseful enough for older kids but not too scary for the school-age crowd.\nOne of those rare films that come by once in a while with flawless amounts of acting, direction, story and pace.\nThe AAA of action, XXX is a blast of adrenalin, rated EEE for excitement. And Vin Diesel is the man.\nEarnest, unsubtle and Hollywood-predictable, Green Dragon is still a deeply moving effort to put a human face on the travail of thousands of Vietnamese.\nAn ambitious movie that, like Shiner's organizing of the big fight, pulls off enough of its effects to make up for the ones that don't come off.\nNair and writer Laura Cahill dare to build a movie around some flawed but rather unexceptional women, emerging with a fine character study that's short on plot but rich in the tiny revelations of real life.\nThe film's unhurried pace is actually one of its strengths. Entirely appropriately, the tale unfolds like a lazy summer afternoon and concludes with the crisp clarity of a fall dawn.\nDespite its floating narrative, this is a remarkably accessible and haunting film.\nVibrantly colored and beautifully designed, Metropolis is a feast for the eyes.\nSweetly sexy, funny and touching.\n...while Dark Water isn't a complete wash (no pun intended), watched side-by-side with Ringu, it ultimately comes off as a pale successor.\nIs truth stranger than fiction? In (screenwriter) Charlie Kaufman's world, truth and fiction are equally strange, and his for the taking.\nFor decades we've marveled at Disney's rendering of water, snow, flames and shadows in a hand-drawn animated world. Prepare to marvel again.\nA witty, low-key romantic comedy.\nMore good than great but Freeman and Judd make it work.\nIf you're looking for a smart, nuanced look at de Sade and what might have happened at Picpus, Sade is your film.\nCould have been crisper and punchier, but it's likely to please audiences who like movies that demand four hankies.\nTogether writer-director Danny Verete's three tales comprise a powerful and reasonably fulfilling gestalt.\nBursting through the constraints of its source, this is one adapted- from-television movie that actually looks as if it belongs on the big screen.\nIts almost too-spectacular coastal setting distracts slightly from an eccentric and good-naturedly aimless story.\nIn other words, it's just another sports drama/character study. Yet this one makes up for in heart what it lacks in outright newness. Plus, like I already mentioned...it's Robert Duvall! C'mon!\nThis story of a determined woman's courage to find her husband in a war zone offers winning performances and some effecting moments.\nLike Shrek, Spirit's visual imagination reminds you of why animation is such a perfect medium for children, because of the way it allows the mind to enter and accept another world.\nA modestly made but profoundly moving documentary.\nIt irritates and saddens me that Martin Lawrence's latest vehicle can explode obnoxiously into 2,500 screens while something of Bubba Ho-Tep's clearly evident quality may end up languishing on a shelf somewhere.\nNot everything in this ambitious comic escapade works, but Coppola, along with his sister, Sofia, is a real filmmaker. It must be in the genes.\nThe performers are so spot on, it is hard to conceive anyone else in their roles.\nThis slight premise ... works because of the ideal casting of the masterful British actor Ian Holm as the aged Napoleon.\nHashiguchi covers this territory with wit and originality, suggesting that with his fourth feature -- the first to be released in the U.S. -- a major director is emerging in world cinema.\nAlthough the film boils down to a lightweight story about matchmaking, the characters make Italian for Beginners worth the journey\nThe dragons are the real stars of Reign of Fire and you won't be disappointed.\nKudos to the most enchanting film of the year.\nIt works well enough, since the thrills pop up frequently, and the dispatching of the cast is as often imaginative as it is gory.\nColorful and deceptively buoyant until it suddenly pulls the rug out from under you, Burkinabe filmmaker Dani Kouyate's reworking of a folk story whose roots go back to 7th-century oral traditions is also a pointed political allegory.\nIt's a powerful though flawed movie, guaranteed to put a lump in your throat while reaffirming Washington as possibly the best actor working in movies today.\nDirector Paul Cox's unorthodox, abstract approach to visualizing Nijinsky's diaries is both stimulating and demanding.\nFor 95 often hilarious minutes, (Cho) riffs on the diciness of colonics, on straight versus gay personal ads, on how men would act if they had periods, and on the perils of a certain outré sexual practice.\nMost of the things that made the original Men in Black such a pleasure are still there.\nMostly honest, this somber picture reveals itself slowly, intelligently, artfully.\nBest enjoyed as a work of fiction inspired by real-life events. Those seeking a definitive account of Eisenstein's life would do better elsewhere.\n(Westbrook) makes a wonderful subject for the camera.\nA film that's flawed and brilliant in equal measure.\nEven if Invincible is not quite the career peak that The Pianist is for Roman Polanski, it demonstrates that Werner Herzog can still leave us with a sense of wonder at the diverse, marvelously twisted shapes history has taken.\nUltimately too repellent to fully endear itself to American art house audiences, but it is notable for its stylistic austerity and forcefulness.\nHardly a film that comes along every day.\nA wild ride with eight boarders from Venice Beach that was a deserved co-winner of the Audience Award for documentaries at the Sundance Film Festival.\nThe film's only missteps come from the script's insistence on providing deep emotional motivation for each and every one of Abagnale's antics.\nA sweet, tender sermon about a 12-year-old Welsh boy more curious about God than girls, who learns that believing in something does matter.\nthe film belongs to the marvelous Verdu, a sexy slip of an earth mother who mourns her tragedies in private and embraces life in public\nMore intimate than spectacular, E.T. is carried less by wow factors than by its funny, moving yarn that holds up well after two decades.\nFor once, a movie does not proclaim the truth about two love-struck somebodies, but permits them time and space to convince us of that all on their own.\nIf you're burnt out on It's a Wonderful Life marathons and bored with A Christmas Carol, it might just be the movie you're looking for. It depends on how well flatulence gags fit into your holiday concept.\nMoonlight Mile doesn't quite go the distance but the cast is impressive and they all give life to these broken characters who are trying to make their way through this tragedy.\nIt is an indelible epic American story about two families, one black and one white, facing change in both their inner and outer lives.\nNot as well-written as Sexy Beast, not as gloriously flippant as Lock, Stock and Two Smoking Barrels, but stylish and moody and exceptionally well-acted.\nQuite simply, a joy to watch and--especially--to listen to.\nA flawed film but an admirable one that tries to immerse us in a world of artistic abandon and political madness and very nearly succeeds.\nThe filmmakers wisely decided to let Crocodile Hunter Steve Irwin do what he does best, and fashion a story around him.\nA winning and wildly fascinating work.\nWe do get the distinct impression that this franchise is drawing to a close.\nWorth catching for Griffiths' warm and winning central performance.\nThe tone errs on the shrill side, tempered by a soft southern gentility that speaks of beauty, grace and a closet full of skeletons.\nAn interesting psychological game of cat-and-mouse, three-dimensional characters and believable performances all add up to a satisfying crime drama.\nA meatier deeper beginning and/or ending would have easily tipped this film into the ``A'' range, as is, it's a very very strong ``B+.'' I love the robust middle of this picture.\nThe power of Shanghai Ghetto, a documentary by Dana Janklowicz-Mann and Amir Mann, rests in the voices of men and women, now in their 70s, who lived there in the 1940s.\nMaintains your interest until the end and even leaves you with a few lingering animated thoughts.\nThere is a beautiful, aching sadness to it all. Paul Cox needed to show it. It is up to you to decide if you need to see it.\nIf Divine Secrets of the Ya-Ya Sisterhood suffers from a ploddingly melodramatic structure, it comes to life in the performances.\nIf you ignore the cliches and concentrate on City by the Sea's interpersonal drama, it ain't half-bad.\nThere aren't too many films that can be as simultaneously funny, offbeat and heartwarming (without a thick shmear of the goo, at least), but ``Elling'' manages to do all three quite well, making it one of the year's most enjoyable releases.\nReign of Fire is hardly the most original fantasy film ever made -- beyond Road Warrior, it owes enormous debts to Aliens and every previous dragon drama -- but that barely makes it any less entertaining.\nAn earnest, roughshod document, it serves as a workable primer for the region's recent history, and would make a terrific 10th-grade learning tool.\nSamuel Beckett applied to the Iranian voting process.\nThe Bard as black comedy -- Willie would have loved it.\nAnother trumpet blast that there may be a New Mexican Cinema a-bornin'.\n'...the film's considered approach to its subject matter is too calm and thoughtful for agitprop, and the thinness of its characterizations makes it a failure as straight drama.'\nTadpole may be one of the most appealing movies ever made about an otherwise appalling, and downright creepy, subject -- a teenage boy in love with his stepmother.\nThis is a story that zings all the way through with originality, humour and pathos.\nAs underwater ghost stories go, Below casts its spooky net out into the Atlantic Ocean and spits it back, grizzled and charred, somewhere northwest of the Bermuda Triangle.\nIt is a challenging film, if not always a narratively cohesive one.\nTrapped won't score points for political correctness, but it may cause parents a few sleepless hours -- a sign of its effectiveness.\nA rock-solid gangster movie with a fair amount of suspense, intriguing characters and bizarre bank robberies, plus a heavy dose of father-and-son dynamics.\nIt's incredible the number of stories the Holocaust has generated. Just when you think that every possible angle has been exhausted by documentarians, another new film emerges with yet another remarkable yet shockingly little-known perspective.\nAs they used to say in the 1950s sci-fi movies, Signs is a tribute to Shyamalan's gifts, which are such that we'll keep watching the skies for his next project.\nThere's no conversion effort, much of the writing is genuinely witty and both stars are appealing enough to probably have a good shot at a Hollywood career, if they want one.\nLike a skillful fisher, the director uses the last act to reel in the audience since its poignancy hooks us completely.\nA film with contemporary political resonance illustrated by a winning family story.\nKids five and up will be delighted with the fast, funny, and even touching story. Parents may even find that it goes by quickly, because it has some of the funniest jokes of any movie this year, including those intended for adults.\nAn unsettling, memorable cinematic experience that does its predecessors proud.\nMaid in Manhattan might not look so appealing on third or fourth viewing down the road ... But as a high concept vehicle for two bright stars of the moment who can rise to fans' lofty expectations, the movie passes inspection.\nMuch of All About Lily Chou-Chou is mesmerizing: some of its plaintiveness could make you weep.\nFerrara's strongest and most touching movie of recent years.\nSpielberg's first real masterpiece, it deserved all the hearts it won -- and wins still, 20 years later.\nThe screenwriters dig themselves in deeper every time they toss logic and science into what is essentially a ``Dungeons and Dragons'' fantasy with modern military weaponry...\nMore than simply a portrait of early extreme sports, this peek into the 1970s skateboard revolution is a skateboard film as social anthropology...\nWhat I saw, I enjoyed.\nThe level of acting elevates the material above pat inspirational status and gives it a sturdiness and solidity that we've long associated with Washington the actor.\nA deft, delightful mix of sulky teen drama and overcoming-obstacles sports-movie triumph.\nDaringly perceptive, taut, piercing and feisty, Biggie and Tupac is undeniably subversive and involving in its bold presentation.\nDelivers more than its fair share of saucy hilarity.\nA fairly enjoyable mixture of Longest Yard ... and the 1999 Guy Ritchie caper Lock Stock and Two Smoking Barrels.\nHappily, some things are immune to the folly of changing taste and attitude. For proof of that on the cinematic front, look no further than this 20th anniversary edition of the film that Spielberg calls, retrospectively, his most personal work yet.\nHugely entertaining from start to finish, featuring a fall from grace that still leaves shockwaves, it will gratify anyone who has ever suspected Hollywood of being overrun by corrupt and hedonistic weasels.\nIt's not like having a real film of Nijinsky, but at least it's better than that eponymous 1980 biopic that used soap in the places where the mysteries lingered.\nIt's probably worth catching solely on its visual merits. If only it had the story to match.\nLike other great documentaries ... this goes after one truth (the Ford administration's complicity in tearing 'orphans' from their mothers) and stumbles upon others even more compelling.\n...only Bond can save us from the latest eccentric, super-wealthy megalomaniac bent on world domination and destruction.\nThe first half bursts with a goofy energy previous Disney films only used for a few minutes here and there.\nIt's quite diverting nonsense.\nAn old-fashioned scary movie, one that relies on lingering terror punctuated by sudden shocks and not constant bloodshed punctuated by flying guts.\nFor all the wit and hoopla, Festival In Cannes offers rare insight into the structure of relationships.\nWhat makes How I Killed My Father compelling, besides its terrific performances, is Fontaine's willingness to wander into the dark areas of parent-child relationships without flinching.\nRenner?s face is chillingly unemotive, yet he communicates a great deal in his performance. See it for his performance if nothing else.\n...the kind of entertainment that parents love to have their kids see.\nIt's a fine, focused piece of work that reopens an interesting controversy and never succumbs to sensationalism.\nIts engaging simplicity is driven by appealing leads.\nSwimming is above all about a young woman's face, and by casting an actress whose face projects that woman's doubts and yearnings, it succeeds.\nA respectable venture on its own terms, lacking the broader vision that has seen certain Trek films ... cross over to a more mainstream audience.\nIt's weird, wonderful, and not necessarily for kids.\nAn elegant film with often surprising twists and an intermingling of naiveté and sophistication.\nBlessed with two fine, nuanced lead performances.\nWhile this has the making of melodrama, the filmmaker cuts against this natural grain, producing a work that's more interested in asking questions than in answering them.\nAs a girl-meets-girl romantic comedy, Kissing Jessica Steinis quirky, charming and often hilarious. Yet it's not quite the genre-busting film it's been hyped to be because it plays everything too safe.\nYou don't need to know your Ice-T's from your Cool-J's to realize that as far as these shootings are concerned, something is rotten in the state of California.\nTurturro is fabulously funny and over the top as a 'very sneaky' butler who excels in the art of impossible disappearing/reappearing acts\nMeant for Star Wars fans. It is there to give them a good time.\nFrom a deceptively simple premise, this deeply moving French drama develops a startling story that works both as a detailed personal portrait and as a rather frightening examination of modern times.\nSimply and eloquently articulates the tangled feelings of particular New Yorkers deeply touched by an unprecedented tragedy.\nProvides a very moving and revelatory footnote to the Holocaust.\nTerrific performances, great to look at, and funny. A little uneven to be the cat's meow, but it's good enough to be the purr.\nIt's a compelling and horrifying story, and The Laramie Project is worthwhile for reminding us that this sort of thing does, in fact, still happen in America.\nI like it. There is a freedom to watching stunts that are this crude, this fast-paced and this insane.\nThat rare documentary that incorporates so much of human experience -- drama, conflict, tears and surprise -- that it transcends the normal divisions between fiction and nonfiction film.\nThat rare movie that works on any number of levels -- as a film of magic and whimsy for children, a heartfelt romance for teenagers and a compelling argument about death, both pro and con, for adults.\nIt's both degrading and strangely liberating to see people working so hard at leading lives of sexy intrigue, only to be revealed by the dispassionate Gantz brothers as ordinary, pasty lumpen.\nA sharp and quick documentary that is funny and pithy, while illuminating an era of theatrical comedy that, while past, really isn't.\nThe film does a solid job of slowly, steadily building up to the climactic burst of violence.\nFred Schepisi's tale of four Englishmen facing the prospect of their own mortality views youthful affluence not as a lost ideal but a starting point.\nThe directive to protect the code at all costs also begins to blur as the importance of the man and the code merge\nOverall, Cletis Tout is a winning comedy that excites the imagination and tickles the funny bone.\nEasily one of the best and most exciting movies of the year.\nThe script manages the rare trick of seeming at once both refreshingly different and reassuringly familiar.\nAn engaging, formulaic sports drama that carries a charge of genuine excitement.\nInsomnia is one of the year's best films and Pacino gives one of his most daring, and complicated, performances.\nLike Vardalos and Corbett, who play their roles with vibrant charm, the film, directed by Joel Zwick, is heartfelt and hilarious in ways you can't fake.\nI don't know if Frailty will turn Bill Paxton into an A-list director, but he can rest contentedly with the knowledge that he's made at least one damn fine horror movie.\nDespite its flaws ... Belinsky is still able to create an engaging story that keeps you guessing at almost every turn.\nEach punch seen through prison bars, the fights become not so much a struggle of man vs. man as Brother-Man vs. The Man.\nThe evocative imagery and gentle, lapping rhythms of this film are infectious -- it gets under our skin and draws us in long before the plot kicks into gear.\nLike the best of Godard's movies ... it is visually ravishing, penetrating, impenetrable.\nHorns and Halos benefits from serendipity but also reminds us of our own responsibility to question what is told as the truth.\n(Has) an immediacy and an intimacy that sucks you in and dares you not to believe it's all true.\nIt treats Ana's journey with honesty that is tragically rare in the depiction of young women in film.\nCaptivates as it shows excess in business and pleasure, allowing us to find the small, human moments, and leaving off with a grand whimper.\nA refreshingly realistic, affectation-free coming-of-age tale.\nHow good this film might be, depends if you believe that the shocking conclusion is too much of a plunge or not.\nGreat fun both for sports aficionados and for ordinary louts whose idea of exercise is climbing the steps of a stadium-seat megaplex.\nFeatures one of the most affecting depictions of a love affair ever committed to film.\nTo honestly address the flaws inherent in how medical aid is made available to American workers, a more balanced or fair portrayal of both sides will be needed.\nOne of the best movies of the year.\nThe usual movie rah-rah, pleasantly and predictably delivered in low-key style by director Michael Apted and writer Tom Stoppard.\nA superlative B movie -- funny, sexy, and rousing.\nThose prone to indignation need not apply; those susceptible to blue hilarity, step right up.\nLike Mike isn't going to make box office money that makes Michael Jordan jealous, but it has some cute moments, funny scenes, and hits the target audience (young Bow Wow fans) - with nothing but net.\n(Dong) makes a valiant effort to understand everyone's point of view, and he does such a good job of it that Family Fundamentals gets you riled up.\nThe trick when watching Godard is to catch the pitch of his poetics, savor the pleasure of his sounds and images, and ponder the historical, philosophical, and ethical issues that intersect with them.\nAt its best, which occurs often, Michael Moore's Bowling for Columbine rekindles the muckraking, soul-searching spirit of the 'Are we a sick society?' journalism of the 1960s.\nA modestly surprising movie.\nA headline-fresh thriller set among orthodox Jews on the West Bank, Joseph Cedar's Time Of Favor manages not only to find a compelling dramatic means of addressing a complex situation, it does so without compromising that complexity.\nThere's a spontaneity to The Chateau, a sense of light-heartedness, that makes it attractive throughout.\nThe first Tunisian film I have ever seen, and it's also probably the most good-hearted yet sensual entertainment I'm likely to see all year.\nLike any good romance, Son of the Bride, proves it's never too late to learn.\n(Kline's) utterly convincing -- and deeply appealing -- as a noble teacher who embraces a strict moral code, and as a flawed human being who can't quite live up to it.\nThe film, while not exactly assured in its execution, is notable for its sheer audacity and openness.\nA thoroughly enjoyable, heartfelt coming-of-age comedy.\nFeeling like a dope has rarely been more fun than it is in Nine Queens.\nLeigh makes these lives count. And he allows a gawky actor like Spall -- who could too easily become comic relief in any other film -- to reveal his impressively delicate range.\nA lot of fun, with an undeniable energy sparked by two actresses in their 50s working at the peak of their powers.\nPromises is one film that's truly deserving of its Oscar nomination.\nWhat bubbles up out of John C. Walsh's Pipe Dream is the distinct and very welcome sense of watching intelligent people making a movie they might actually want to watch.\nIf Reno is to the left of liberal on the political spectrum, her tough, funny, rather chaotic show isn't subversive so much as it is nit-picky about the hypocrisies of our time.\nBeautiful, angry and sad, with a curious sick poetry, as if the Marquis de Sade had gone in for pastel landscapes.\nMs. Hutchins is talented enough and charismatic enough to make us care about Zelda's ultimate fate.\nMonte Cristo smartly emphasizes the well-wrought story and omits needless chase scenes and swordfights as the revenge unfolds.\nA mesmerizing cinematic poem from the first frame to the last.\n(It's) a clever thriller with enough unexpected twists to keep our interest.\nAn undeniably moving film to experience, and ultimately that's what makes it worth a recommendation.\nNicole Kidman evolved from star to superstar some time over the past year, which means that Birthday Girl is the kind of quirkily appealing minor movie she might not make for a while.\nVividly conveys the shadow side of the 30-year friendship between two English women.\nThe story has some nice twists but the ending and some of the back-story is a little tired. The performances are all solid; it merely lacks originality to make it a great movie.\nManages to please its intended audience -- children -- without placing their parents in a coma-like state.\nWhen you think you've figured out Bielinsky's great game, that's when you're in the most trouble: He's the con, and you're just the mark.\nA strong first act and absolutely, inescapably gorgeous, skyscraper-trapeze motion of the amazing Spider-Man.\nDriven by a fantastic dual performance from Ian Holm...the film is funny, insightfully human and a delightful lark for history buffs.\nA well-put-together piece of urban satire.\nIt's the sweet Cinderella story that ``Pretty Woman'' wanted to be.\nIt will make you think twice about what might be going on inside each trailer park you drive past -- even if it chiefly inspires you to drive a little faster.\nWhat doesn't this film have that an impressionable kid couldn't stand to hear?\nWhat saves it ... and makes it one of the better video-game-based flicks, is that the film acknowledges upfront that the plot makes no sense, such that the lack of linearity is the point of emotional and moral departure for protagonist Alice.\nA deeply felt and vividly detailed story about newcomers in a strange new world.\nIt's a visual delight and a decent popcorn adventure, as long as you don't try to look too deep into the story\nIt's a feel-good movie about which you can actually feel good.\nA full experience, a love story and a murder mystery that expands into a meditation on the deep deceptions of innocence.\nThe Powerpuff Girls arrive on the big screen with their super-powers, their super-simple animation and their super-dooper-adorability intact.\n(Raimi's) matured quite a bit with Spider-Man, even though it's one of the most plain white toast comic book films you'll ever see.\nA new film from Bill Plympton, the animation master, is always welcome.\nA devastating indictment of unbridled greed and materalism.\nWhat makes the film special is the refreshingly unhibited enthusiasm that the people, in spite of clearly evident poverty and hardship, bring to their music.\nThe film has a kind of hard, cold effect.\nThe gags are often a stitch.\nThe asylum material is gripping, as are the scenes of Jia with his family.\nA bonanza of wacky sight gags, outlandish color schemes, and corny visual puns that can be appreciated equally as an abstract Frank Tashlin comedy and as a playful recapitulation of the artist's career.\nOne can't deny its seriousness and quality.\nGood performances and a realistic, non-exploitive approach make Paid in Full worth seeing.\nThis engrossing, characteristically complex Tom Clancy thriller is shifty in the manner in which it addresses current terrorism anxieties and sidesteps them at the same time.\nRyan Gosling is, in a word, brilliant as the conflicted Daniel.\n...somehow manages to escape the shackles of its own clichés to be the best espionage picture to come out in weeks.\nMuch of The Lady and the Duke is about quiet, decisive moments between members of the cultural elite as they determine how to proceed as the world implodes.\nTakes a simple premise and carries it to unexpected heights.\nWith few respites, Marshall keeps the energy humming, and his edits, unlike those in Moulin Rouge, are crisp and purposeful without overdoing it.\nIts metaphors are opaque enough to avoid didacticism, and the film succeeds as an emotionally accessible, almost mystical work.\nProvides a satisfactory overview of the bizarre world of extreme athletes as several daredevils express their own views.\nInventive, fun, intoxicatingly sexy, violent, self-indulgent and maddening.\nComedian, like its subjects, delivers the goods and audiences will have a fun, no-frills ride.\nA naturally funny film, Home Movie makes you crave Chris Smith's next movie.\nPipe Dream does have its charms. The leads are natural and lovely, the pace is serene, the humor wry and sprightly.\nThose who want to be jolted out of their gourd should drop everything and run to Ichi.\n...enthusiastically invokes the percussion rhythm, the brass soul and the sense of fierce competition that helps make great marching bands half the fun of college football games.\nSheds light on a subject few are familiar with, and makes you care about music you may not have heard before.\nDespite the film's bizarre developments, Hoffman keeps us riveted with every painful nuance, unexpected flashes of dark comedy and the character's gripping humanity.\nTo get at the root psychology of this film would require many sessions on the couch of Dr. Freud.\nGreat over-the-top moviemaking if you're in a slap-happy mood.\nViveka Seldahl and Sven Wollter will touch you to the core in a film you will never forget -- that you should never forget.\nThe magic (and original running time) of ace Japanimator Hayao Miyazaki's Spirited Away survives intact in BV's re-voiced version.\nFrom the dull, surreal ache of mortal awareness emerges a radiant character portrait.\nCaptures the raw comic energy of one of our most flamboyant female comics.\nIt's not particularly subtle ... However, it still manages to build to a terrifying, if obvious, conclusion.\nThe auteur's ear for the way fears and slights are telegraphed in the most blithe exchanges gives the film its lingering tug.\nBolstered by exceptional performances and a clear-eyed take on the economics of dealing and the pathology of ghetto fabulousness.\nThis enthralling documentary ... is at once playful and haunting, an in-depth portrait of an iconoclastic artist who was fundamentally unknowable even to his closest friends.\nSome remarkable achival film about how Shanghai (of all places) served Jews who escaped the Holocaust.\nIn a movie full of surprises, the biggest is that Secret Ballot is a comedy, both gentle and biting.\nThe urban landscapes are detailed down to the signs on the kiosks, and the color palette, with lots of somber blues and pinks, is dreamy and evocative.\nA manically generous Christmas vaudeville.\nTony Gayton's script doesn't give us anything we haven't seen before, but director D.J. Caruso's grimy visual veneer and Kilmer's absorbing performance increase the gravitational pull considerably.\nA psychic journey deep into the very fabric of Iranian ... life.\nIt's a smartly directed, grown-up film of ideas.\nWhile puerile men dominate the story, the women shine.\nUnlike lots of Hollywood fluff, this has layered, well-developed characters and some surprises.\nFor a film that's being advertised as a comedy, Sweet Home Alabama isn't as funny as you'd hoped. For a film that's being advertised as a comedy, Sweet Home Alabama isn't as funny as you'd hoped.\nVera has created a provocative, absorbing drama that reveals the curse of a self-hatred instilled by rigid social mores.\nA French film with a more down-home flavor.\nDepending upon your reaction to this movie, you may never again be able to look at a red felt Sharpie pen without disgust, a thrill, or the giggles.\nWhile Bollywood/Hollywood will undoubtedly provide its keenest pleasures to those familiar with Bombay musicals, it also has plenty for those (like me) who aren't.\nThere are times when you wish that the movie had worked a little harder to conceal its contrivances, but Brown Sugar turns out to be a sweet and enjoyable fantasy.\nFontaine masterfully creates a portrait of two strong men in conflict, inextricably entwined through family history, each seeing himself in the other, neither liking what he sees.\nAs Janice, Eileen Walsh, an engaging, wide-eyed actress whose teeth are a little too big for her mouth, infuses the movie with much of its slender, glinting charm.\nSure, it's contrived and predictable, but its performances are so well tuned that the film comes off winningly, even though it's never as solid as you want it to be.\nDong shows how intolerance has the power to deform families, then tear them apart.\nThe Chateau belongs to Rudd, whose portrait of a therapy-dependent flakeball spouting French malapropisms ... is a nonstop hoot.\nThe cast, collectively a successful example of the lovable-loser protagonist, shows deft comic timing.\nIt trusts the story it sets out to tell.\nI couldn't recommend this film more.\nAs a good old-fashioned adventure for kids, Spirit: Stallion of the Cimarron is a winner.\nAn effective portrait of a life in stasis -- of the power of inertia to arrest development in a dead-end existence.\nSucceeds as a well-made evocation of a subculture.\n...an interesting slice of history.\nMe no lika da accents so good, but I thoroughly enjoyed the love story. Scott Baio is turning in some delightful work on indie projects.\nIt's an experience in understanding a unique culture that is presented with universal appeal.\nWhat's surprising is how well it holds up in an era in which computer-generated images are the norm.\nBrings together some of the biggest names in Japanese anime, with impressive results.\nWonder, hope and magic can never escape the heart of the boy when the right movie comes along, especially if it begins with the name of Star Wars\nA flick about our infantilized culture that isn't entirely infantile.\nAn exceptionally acted, quietly affecting cop drama.\nSensual, funny and, in the end, very touching.\nAngel presents events partly from the perspective of Aurelie and Christelle, and infuses the film with the sensibility of a particularly nightmarish fairytale.\nWho needs mind-bending drugs when they can see this, the final part of the 'qatsi' trilogy, directed by Godfrey Reggio, with music by Philip Glass?\n(A) smarter and much funnier version of the old Police Academy flicks.\nProof once again that if the filmmakers just follow the books, they can't go wrong. Better effects, better acting and a hilarious Kenneth Branagh. An excellent sequel.\nBoth a grand tour through 300 hundred years of Russian cultural identity and a stunning technical achievement.\nJust how these families interact may surprise you.\nProves that some movie formulas don't need messing with -- like the big-bug movie.\nA surprisingly funny movie.\nThis new movie version of the Alexandre Dumas classic is the stuff of high romance, brought off with considerable wit.\nLike all of Egoyan's work, Ararat is fiercely intelligent and uncommonly ambitious.\nIf a big musical number like 'Praise the Lord, He's the God of Second Chances' doesn't put you off, this will be an enjoyable choice for younger kids.\n...fuses the events of her life with the imagery in her paintings so vividly that the artist's work may take on a striking new significance for anyone who sees the film.\n(Clooney's) debut can be accused of being a bit undisciplined, but it has a tremendous, offbeat sense of style and humor that suggests he was influenced by some of the filmmakers who have directed him, especially the Coen brothers and Steven Soderbergh.\nAlthough made on a shoestring and unevenly acted, conjures a Lynch-like vision of the rotting underbelly of Middle America.\nA piquant meditation on the things that prevent people from reaching happiness.\nA timely look back at civil disobedience, anti-war movements and the power of strong voices.\nRifkin's references are ... impeccable throughout.\nI'd be lying if I said my ribcage didn't ache by the end of Kung Pow.\nMore than their unique residences, Home Movie is about the people who live in them, who have carved their own comfortable niche in the world and have been kind enough to share it.\nThe movie is ingenious fun. See it.\nThe combination of lightness and strictness in this instance gives Italian for Beginners an amiable aimlessness that keeps it from seeming predictably formulaic.\nThe script is smart and dark - hallelujah for small favors.\nAn intelligent, multi-layered and profoundly humanist (not to mention gently political) meditation on the values of knowledge, education, and the affects of cultural and geographical displacement.\nMr. Polanski is in his element here: alone, abandoned, but still consoled by his art, which is more than he has ever revealed before about the source of his spiritual survival.\nSpectacular in every sense of the word, even if you don' t know an Orc from a Uruk-Hai.\nThis isn't exactly profound cinema, but it's good-natured and sometimes quite funny.\nThis is a finely written, superbly acted offbeat thriller.\nTres Greek writer and star Nia Vardalos has crafted here a worldly-wise and very funny script.\nA tasty appetizer that leaves you wanting more.\nIt gives devastating testimony to both people's capacity for evil and their heroic capacity for good.\nThe film reminds me of a vastly improved Germanic version of My Big Fat Greek Wedding -- with better characters, some genuine quirkiness and at least a measure of style. The difference is that I truly enjoyed most of Mostly Martha while I ne\nMorton deserves an Oscar nomination.\nA colorful, vibrant introduction to a universal human impulse, lushly photographed and beautifully recorded.\nThe screenplay never lets us forget that Bourne was once an amoral assassin just like the ones who are pursuing him ... There is never really a true ``us'' versus ``them''.\nThe history is fascinating; the action is dazzling. They just don't work in concert.\nFor those in search of something different, Wendigo is a genuinely bone-chilling tale.\nA lovely film for the holiday season.\nIt remains to be seen whether Statham can move beyond the crime-land action genre, but then again, who says he has to?\nA hypnotic cyber hymn and a cruel story of youth culture.\nIt's a fairy tale that comes from a renowned Indian film culture that allows Americans to finally revel in its splendor.\nAt once subtle and visceral, the film never succumbs to the trap of the maudlin or tearful, offering instead with its unflinching gaze a measure of faith in the future.\nThe performances of the children, untrained in acting, have an honesty and dignity that breaks your heart.\nDespite its lavish formalism and intellectual austerity, the film manages to keep you at the edge of your seat with its shape-shifting perils, political intrigue and brushes with calamity.\nThis rush to profits has created a predictably efficient piece of business notable largely for its overwhelming creepiness, for an eagerness to create images you wish you hadn't seen, which, in this day and age, is of course the point.\nAdams, with four scriptwriters, takes care with the characters, who are so believable that you feel what they feel.\nA completely spooky piece of business that gets under your skin and, some plot blips aside, stays there for the duration.\nSuperbly photographed and staged by Mendes with a series of riveting set pieces the likes of which mainstream audiences have rarely seen.\nThe ensemble cast turns in a collectively stellar performance, and the writing is tight and truthful, full of funny situations and honest observations.\nNot quite as miraculous as its DreamWorks makers would have you believe, but it more than adequately fills the eyes and stirs the emotions.\nA properly spooky film about the power of spirits to influence us whether we believe in them or not.\nThe lightest, most breezy movie Steven Spielberg has made in more than a decade. And the positive change in tone here seems to have recharged him.\nLike Edward Norton in American History X, Ryan Gosling (Murder By Numbers) delivers a magnetic performance.\nThis is a very funny, heartwarming film. It has fun with the quirks of family life, but it also treats the subject with fondness and respect.\nRarely, indeed almost never, is such high-wattage brainpower coupled with pitch-perfect acting and an exquisite, unfakable sense of cinema.\nThe leanest and meanest of Solondz's misanthropic comedies.\nA dark, quirky road movie that constantly defies expectation.\nThere are some movies that hit you from the first scene and you know it's going to be a trip. Igby Goes Down is one of those movies.\nOften messy and frustrating, but very pleasing at its best moments, it's very much like life itself.\nA burst of color, music, and dance that only the most practiced curmudgeon could fail to crack a smile at.\nAn energetic, violent movie with a momentum that never lets up.\nLasker's canny, meditative script distances sex and love, as Byron and Luther ... realize they can't get no satisfaction without the latter.\nIt turns out to be smarter and more diabolical than you could have guessed at the beginning.\nCage makes an unusual but pleasantly haunting debut behind the camera.\nNoyce has worked wonders with the material.\nIt's mostly a pleasure to watch. And the reason for that is a self-aware, often self-mocking, intelligence.\nThe Chateau is a risky venture that never quite goes where you expect and often surprises you with unexpected comedy.\nA very well-meaning movie, and it will stand in future years as an eloquent memorial to the World Trade Center tragedy.\nThere aren't many conclusive answers in the film, but there is an interesting story of pointed personalities, courage, tragedy and the little guys vs. the big guys.\nVividly demonstrates that the director of such Hollywood blockbusters as Patriot Games can still turn out a small, personal film with an emotional wallop.\nA four star performance from Kevin Kline who unfortunately works with a two star script.\nDogtown & Z-Boys evokes the blithe rebel fantasy with the kind of insouciance embedded in the sexy demise of James Dean.\nIf you don't flee, you might be seduced. If you don't laugh, flee.\nPayne constructs a hilarious ode to middle America and middle age with this unlikely odyssey, featuring a pathetic, endearing hero who is all too human.\nKoury frighteningly and honestly exposes one teenager's uncomfortable class resentment and, in turn, his self-inflicted retaliation.\nThe Santa Clause 2 proves itself a more streamlined and thought out encounter than the original could ever have hoped to be.\nNow as a former Gong Show addict, I'll admit it, my only complaint is that we didn't get more re-creations of all those famous moments from the show.\nSucceeds where its recent predecessor miserably fails because it demands that you suffer the dreadfulness of war from both sides.\nThe first Bond movie in ages that isn't fake fun.\nThis odd, poetic road movie, spiked by jolts of pop music, pretty much takes place in Morton's ever-watchful gaze -- and it's a tribute to the actress, and to her inventive director, that the journey is such a mesmerizing one.\nA film centering on a traditional Indian wedding in contemporary New Delhi may not sound like specialized fare, but Mira Nair's film is an absolute delight for all audiences.\nA weird and wonderful comedy.\nThe movie should jolt you out of your seat a couple of times, give you a few laughs, and leave you feeling like it was worth your seven bucks, even though it does turn out to be a bit of a cheat in the end.\nHas the capability of effecting change and inspiring hope.\nA first-class, thoroughly involving B movie that effectively combines two surefire, beloved genres -- the prison flick and the fight film.\nLaBute's careful handling makes the material seem genuine rather than pandering.\nIn between all the emotional seesawing, it's hard to figure the depth of these two literary figures, and even the times in which they lived. But they fascinate in their recklessness.\nDeath to Smoochy is often very funny, but what's even more remarkable is the integrity of DeVito's misanthropic vision.\nA beautiful, entertaining two hours. You get the idea, though, that Kapur intended the film to be more than that.\nA wonderful, ghastly film.\nAmid the new populist comedies that underscore the importance of family tradition and familial community, one would be hard-pressed to find a movie with a bigger, fatter heart than Barbershop.\nParris' performance is credible and remarkably mature.\n'Enigma' is the kind of engaging historical drama that Hollywood appears to have given up on in favor of sentimental war movies in the vein of 'We Were Soldiers.'\nMunch's screenplay is tenderly observant of his characters. He watches them as they float within the seas of their personalities. His scenes are short and often unexpected.\nIt grabs you in the dark and shakes you vigorously for its duration.\nLeigh's daring here is that without once denying the hardscrabble lives of people on the economic fringes of Margaret Thatcher's ruinous legacy, he insists on the importance of those moments when people can connect and express their love for each other.\nHashiguchi vividly captures the way young Japanese live now, chafing against their culture's manic mix of millennial brusqueness and undying, traditional politesse.\nUneven but a lot of fun.\nI know that I'll never listen to Marvin Gaye or the Supremes the same way again\nThe two leads, nearly perfect in their roles, bring a heart and reality that buoy the film, and at times, elevate it to a superior crime movie.\nNot as good as The Full Monty, but a really strong second effort.\nWhenever it threatens to get bogged down in earnest dramaturgy, a stirring visual sequence like a surge through swirling rapids or a leap from pinnacle to pinnacle rouses us. If horses could fly, this is surely what they'd look like.\nUnfolds as one of the most politically audacious films of recent decades from any country, but especially from France.\nThis real-life Hollywood fairy-tale is more engaging than the usual fantasies Hollywood produces.\nThe graphic carnage and re-creation of war-torn Croatia is uncomfortably timely, relevant, and sickeningly real.\nLeft me with the visceral sensation of longing, lasting traces of Charlotte's web of desire and desperation.\nThe characters are more deeply thought through than in most 'right-thinking' films.\nCrammed with incident, and bristles with passion and energy.\nIt's fun, splashy and entertainingly nasty.\nA simple tale of an unlikely friendship, but thanks to the gorgeous locales and exceptional lead performances, it has considerable charm.\nIt might be 'easier' to watch on video at home, but that shouldn't stop die-hard French film connoisseurs from going out and enjoying the big-screen experience.\nThere's very little sense to what's going on here, but the makers serve up the cliches with considerable dash.\nWitty, contemplative, and sublimely beautiful.\nA surprisingly 'solid' achievement by director Malcolm D. Lee and writer John Ridley.\nWoven together handsomely, recalling sixties' rockumentary milestones from Lonely Boy to Don't Look Back.\nThis is pure, exciting moviemaking. You won't exactly know what's happening but you'll be blissfully exhausted.\nThe 1960s rebellion was misdirected: you can't fight your culture.\nWorks because Reno doesn't become smug or sanctimonious towards the audience.\nNettelbeck ... has a pleasing way with a metaphor.\nA pure participatory event that malnourished intellectuals will gulp down in a frenzy.\nThe cast delivers without sham the raw-nerved story.\nSteven Soderbergh's digital video experiment is a clever and cutting, quick and dirty look at modern living and movie life.\nThe film's highlight is definitely its screenplay, both for the rhapsodic dialogue that jumps off the page, and for the memorable character creations.\nIt lets you brush up against the humanity of a psycho, without making him any less psycho.\nSillier, cuter, and shorter than the first (as best I remember), but still a very good time at the cinema.\nThe film is bright and flashy in all the right ways.\nElegant and eloquent (meditation) on death and that most elusive of passions, love.\nCut through the layers of soap-opera emotion and you find a scathing portrayal of a powerful entity strangling the life out of the people who want to believe in it the most.\nFilmmaker Tian Zhuangzhuang triumphantly returns to narrative filmmaking with a visually masterful work of quiet power.\nIt excels because, unlike so many other Hollywood movies of its ilk, it offers hope.\nShot in rich, shadowy black-and-white, Devils chronicles, with increasingly amused irony, the relationship between reluctant captors and befuddled captives.\nThere's no clear picture of who killed Bob Crane. But here's a glimpse at his life.\nSpectacularly beautiful, not to mention mysterious, sensual, emotionally intense, and replete with virtuoso throat-singing.\nA summer entertainment adults can see without feeling embarrassed, but it could have been more.\nSparse but oddly compelling.\nA stirring, funny and finally transporting re-imagining of Beauty and the Beast and 1930s horror films\nThe Pinochet Case is a searing album of remembrance from those who, having survived, suffered most.\nA sweet-tempered comedy that forgoes the knee-jerk misogyny that passes for humor in so many teenage comedies.\nArgento, at only 26, brings a youthful, out-to-change-the-world aggressiveness to the project, as if she's cut open a vein and bled the raw film stock.\nWith so many bad romances out there, this is the kind of movie that deserves a chance to shine.\nBrash, intelligent and erotically perplexing, Haneke's portrait of an upper class Austrian society and the suppression of its tucked away demons is uniquely felt with a sardonic jolt.\nThough Jackson doesn't always succeed in integrating the characters in the foreground into the extraordinarily rich landscape, it must be said that he is an imaginative filmmaker who can see the forest for the trees.\n``The Quiet American'' begins in Saigon in 1952. That's its first sign of trouble.\nA dazzling thing to behold -- as long as you're wearing the somewhat cumbersome 3D goggles the theater provides.\nBe patient with the lovely Hush! and your reward will be a thoughtful, emotional movie experience.\nThe large-format film is well suited to capture these musicians in full regalia and the incredible IMAX sound system lets you feel the beat down to your toes.\nGodard has never made a more sheerly beautiful film than this unexpectedly moving meditation on love, history, memory, resistance and artistic transcendence.\nThe kind of movie that comes along only occasionally, one so unconventional, gutsy and perfectly executed it takes your breath away.\nUnlike most surf movies, Blue Crush thrillingly uses modern technology to take the viewer inside the wave. By the end you can't help but feel 'stoked.'\nThe off-center humor is a constant, and the ensemble gives it a buoyant delivery.\nA tasty slice of droll whimsy.\nMike Leigh populates his movie with a wonderful ensemble cast of characters that bring the routine day to day struggles of the working class to life\nAwesome work: ineffable, elusive, yet inexplicably powerful\nSparkling, often hilarious romantic jealousy comedy... Attal looks so much like a young Robert DeNiro that it seems the film should instead be called 'My Husband Is Travis Bickle'.\nEven if you're an agnostic carnivore, you can enjoy much of Jonah simply, and gratefully, as laugh-out-loud lunacy with a pronounced Monty Pythonesque flavor.\nWhere Bowling for Columbine is at its most valuable is in its examination of America's culture of fear as a root cause of gun violence.\nThe result is somewhat satisfying -- it still comes from Spielberg, who has never made anything that wasn't at least watchable. But it's also disappointing to a certain degree.\nThe all-French cast is marveilleux.\nThere's a lot to recommend Read My Lips.\nA minor film with major pleasures from Portuguese master Manoel de Oliviera...\nBrosnan gives a portrayal as solid and as perfect as his outstanding performance as Bond in Die Another Day.\nAudiences are advised to sit near the back and squint to avoid noticing some truly egregious lip-non-synching, but otherwise the production is suitably elegant.\nThe movie is ... very funny as you peek at it through the fingers in front of your eyes.\nNicks sustains the level of exaggerated, stylized humor throughout by taking your expectations and twisting them just a bit.\nA refreshing change from the usual whoopee-cushion effort aimed at the youth market.\nIt finds its moviegoing pleasures in the tiny events that could make a person who has lived her life half-asleep suddenly wake up and take notice.\n... an enjoyably frothy 'date movie'...\nThe genius of the work speaks volumes, offering up a hallucinatory dreamscape that frustrates and captivates.\nTwo Weeks Notice has appeal beyond being a Sandra Bullock vehicle or a standard romantic comedy.\nThe movie's seams may show...but Pellington gives ``Mothman'' an irresistibly uncanny ambience that goes a long way toward keeping the picture compelling.\nIf Mostly Martha is mostly unsurprising, it's still a sweet, even delectable diversion.\nA wild comedy that could only spring from the demented mind of the writer of Being John Malkovich.\nSchnitzler does a fine job contrasting the sleekness of the film's present with the playful paranoia of the film's past.\n'A fresh-faced, big-hearted and frequently funny thrill ride for the kiddies, with enough eye candy and cheeky wit to keep parents away from the concession stand.'\nMana gives us compelling, damaged characters who we want to help -- or hurt.\nThe sentimental script has problems, but the actors pick up the slack.\nA good documentary can make interesting a subject you thought would leave you cold. A case in point: Doug Pray's Scratch.\nAbderrahmane Sissako's Heremakono (Waiting for Happiness) is an elegiac portrait of a transit city on the West African coast struggling against foreign influences.\nIn XXX, Diesel is that rare creature -- an action hero with table manners, and one who proves that elegance is more than tattoo deep.\nAn engrossing and grim portrait of hookers: what they think of themselves and their clients.\nIt all plays out ... like a high-end John Hughes comedy, a kind of Elder Bueller's Time Out.\nThe film is enriched by an imaginatively mixed cast of antic spirits, headed by Christopher Plummer as the subtlest and most complexly evil Uncle Ralph I've ever seen in the many film and stage adaptations of the work.\nThis is one of the rarest kinds of films: a family-oriented non-Disney film that is actually funny without hitting below the belt.\nIt is refreshingly undogmatic about its characters.\nA moving and important film.\nDeep intelligence and a warm, enveloping affection breathe out of every frame.\nFamuyiwa's feature deals with its subject matter in a tasteful, intelligent manner, rather than forcing us to endure every plot contrivance that the cliché-riddled genre can offer.\nShowtime is a fine-looking film with a bouncy score and a clutch of lively songs for deft punctuation.\nSweet Home Alabama isn't going to win any Academy Awards, but this date-night diversion will definitely win some hearts.\na cruelly funny twist on teen comedy packed with inventive cinematic tricks and an ironically killer soundtrack\nA gracious, eloquent film that by its end offers a ray of hope to the refugees able to look ahead and resist living in a past forever lost.\nEven though many of these guys are less than adorable (their lamentations are pretty much self-centered), there's something vital about the movie.\nA tour de force drama about the astonishingly pivotal role of imagination in the soulful development of two rowdy teenagers.\nIt is a strength of a documentary to disregard available bias, especially as temptingly easy as it would have been with this premise.\nWhen twentysomething hotsies make movies about their lives, hard-driving narcissism is a given, but what a world we'd live in if Argento's Hollywood counterparts ... had this much imagination and nerve.\nMaryam is more timely now than ever.\nAn eloquent, reflective and beautifully acted meditation on both the profoundly devastating events of one year ago and the slow, painful healing process that has followed in their wake.\nPiccoli gives a superb performance full of deep feeling.\nWhat a concept, what an idea, what a thrill ride. This is a more fascinating look at the future than ``Bladerunner'' and one of the most high-concept sci fi adventures attempted for the screen.\nThe rare movie that's as crisp and to the point as the novel on which it's based.\nA film of epic scale with an intimate feeling, a saga of the ups and downs of friendships.\nSayles has an eye for the ways people of different ethnicities talk to and about others outside the group.\n``Nicholas Nickleby'' is a perfect family film to take everyone to since there's no new ``A Christmas Carol'' out in the theaters this year. Charlie Hunnam has the twinkling eyes, repressed smile and determined face needed to carry out a Dickensian hero.\nNiccol the filmmaker merges his collaborators' symbolic images with his words, insinuating, for example, that in Hollywood, only God speaks to the press\nKhouri manages, with terrific flair, to keep the extremes of screwball farce and blood-curdling family intensity on one continuum.\nImpresses as a skillfully assembled, highly polished and professional adaptation...just about as chilling and unsettling as 'Manhunter' was.\nIt's a solid movie about people whose lives are anything but.\nThough a touch too Arthouse 101 in its poetic symbolism, Heaven proves to be a good match of the sensibilities of two directors.\nI simply can't recommend it enough.\nWiseman reveals the victims of domestic abuse in all of their pity and terror.\nMuccino, who directed from his own screenplay, is a canny crowd pleaser, and The Last Kiss ... provides more than enough sentimental catharsis for a satisfying evening at the multiplex.\nWe want the funk - and this movie's got it.\nWow, so who knew Charles Dickens could be so light-hearted?\nMany went to see the attraction for the sole reason that it was hot outside and there was air conditioning inside, and I don't think that A.C. will help this movie one bit.\nThe storylines are woven together skilfully, the magnificent swooping aerial shots are breathtaking, and the overall experience is awesome.\nA miraculous movie, I'm Going Home is so slight, yet overflows with wisdom and emotion.\nBaran is shockingly devoid of your typical Majid Majidi shoe-loving, crippled children.\nEvery moment crackles with tension, and by the end of the flick, you're on the edge of your seat.\nA fine, rousing, G-rated family film, aimed mainly at little kids but with plenty of entertainment value to keep grown-ups from squirming in their seats.\nThe series' message about making the right choice in the face of tempting alternatives remains prominent, as do the girls' amusing personalities.\nRichly entertaining and suggestive of any number of metaphorical readings.\nA compelling allegory about the last days of Germany's democratic Weimar Republic.\nOffers a guilt-free trip into feel-good territory.\nA B-movie you can sit through, enjoy on a certain level and then forget.\nDevos delivers a perfect performance that captures the innocence and budding demons within a wallflower.\nDisappointingly, the characters are too strange and dysfunctional, Tom included, to ever get under the skin, but this is compensated in large part by the off-the-wall dialogue, visual playfulness and the outlandishness of the idea itself.\nDirector Todd Solondz has made a movie about critical reaction to his two previous movies, and about his responsibility to the characters that he creates.\nThe word that comes to mind, while watching Eric Rohmer's tribute to a courageous Scottish lady, is painterly.\nA fascinating case study of flower-power liberation -- and the price that was paid for it.\nBluer than the Atlantic and more biologically detailed than an autopsy, the movie ... is, also, frequently hilarious.\nReally is a pan-American movie, with moments of genuine insight into the urban heart.\nAn overly familiar scenario is made fresh by an intelligent screenplay and gripping performances in this low-budget, video-shot, debut indie effort.\nPeppering this urban study with references to Norwegian folktales, Villeneuve creates in Maelstrom a world where the bizarre is credible and the real turns magical.\nOng's promising debut is a warm and well-told tale of one recent Chinese immigrant's experiences in New York City.\nThat the real Antwone Fisher was able to overcome his personal obstacles and become a good man is a wonderful thing; that he has been able to share his story so compellingly with us is a minor miracle.\nThere's not much to Fatale, outside of its stylish surprises... but that's OK.\nWhat redeems the film is the cast, particularly the Ya-Yas themselves.\nBeautiful, cold, oddly colorful and just plain otherworldly, a freaky bit of art that's there to scare while we delight in the images.\nIt's up to (Watts) to lend credibility to this strange scenario, and her presence succeeds in making us believe.\nThe film is darkly atmospheric, with Herrmann quietly suggesting the sadness and obsession beneath Hearst's forced avuncular chortles.\nShyamalan takes a potentially trite and overused concept (aliens come to Earth) and infuses it into a rustic, realistic, and altogether creepy tale of hidden invasion.\n...the story, like Ravel's Bolero, builds to a crescendo that encompasses many more paths than we started with.\nIt's plotless, shapeless -- and yet, it must be admitted, not entirely humorless. Indeed, the more outrageous bits achieve a shock-you-into-laughter intensity of almost Dadaist proportions.\nGondry's direction is adequate ... but what gives Human Nature its unique feel is Kaufman's script.\nThe film's plot may be shallow, but you've never seen the deep like you see it in these harrowing surf shots.\nWith a large cast representing a broad cross-section, Tavernier's film bounds along with the rat-a-tat energy of ``His Girl Friday,'' maintaining a light touch while tackling serious themes.\nThe observations of this social/economic/urban environment are canny and spiced with irony.\nRenner carries much of the film with a creepy and dead-on performance.\nJarecki and Gibney do find enough material to bring Kissinger's record into question and explain how the diplomat's tweaked version of statecraft may have cost thousands and possibly millions of lives.\nThe spaniel-eyed Jean Reno infuses Hubert with a mixture of deadpan cool, wry humor and just the measure of tenderness required to give this comic slugfest some heart.\nAniston has at last decisively broken with her Friends image in an independent film of satiric fire and emotional turmoil.\nA mildly enjoyable if toothless adaptation of a much better book.\nUnexpected, and often contradictory, truths emerge.\n300 years of Russian history and culture compressed into an evanescent, seamless and sumptuous stream of consciousness.\nIntelligent, caustic take on a great writer and dubious human being.\nMay take its sweet time to get wherever it's going, but if you have the patience for it, you won't feel like it's wasted yours.\nLess the sensational true-crime hell-jaunt purists might like and more experimental in its storytelling (though no less horrifying for it).\nThe film is one of the year's best.\nEerily accurate depiction of depression.\n...a delicious crime drama on par with the slickest of Mamet.\nCharming and witty, it's also somewhat clumsy.\nDirected with purpose and finesse by England's Roger Mitchell, who handily makes the move from pleasing, relatively lightweight commercial fare such as Notting Hill to commercial fare with real thematic heft.\nEscapes the precious trappings of most romantic comedies, infusing into the story very real, complicated emotions.\nThis big screen caper has a good bark, far from being a bow-wow.\n(Allen) manages to breathe life into this somewhat tired premise.\nI have two words to say about Reign of Fire. Great dragons!\nBy surrounding us with hyper-artificiality, Haynes makes us see familiar issues, like racism and homophobia, in a fresh way.\nA deliberative account of a lifestyle characterized by its surface-obsession – one that typifies the delirium of post, pre, and extant stardom.\nSuperb production values & Christian Bale's charisma make up for a derivative plot.\nThe film has the courage of its convictions and excellent performances on its side.\nI know I shouldn't have laughed, but hey, those farts got to my inner nine-year-old.\nA movie that will thrill you, touch you and make you laugh as well.\nIt's a smart, funny look at an arcane area of popular culture, and if it isn't entirely persuasive, it does give exposure to some talented performers.\nMore vaudeville show than well-constructed narrative, but on those terms it's inoffensive and actually rather sweet.\nThe case is a convincing one, and should give anyone with a conscience reason to pause.\nThe actresses find their own rhythm and protect each other from the script's bad ideas and awkwardness.\nDiverting French comedy in which a husband has to cope with the pesky moods of jealousy.\nCaptivates and shows how a skillful filmmaker can impart a message without bludgeoning the audience over the head.\nThere is a welcome lack of pretension about the film, which very simply sets out to entertain and ends up delivering in good measure.\nCoy but exhilarating, with really solid performances by Ving Rhames and Wesley Snipes.\nIt is a likable story, told with competence.\nNot only does Spider-Man deliver, but I suspect it might deliver again and again.\nTackles the difficult subject of grief and loss with such life-embracing spirit that the theme doesn't drag an audience down.\nA small movie with a big impact.\nThe movie, despite its rough edges and a tendency to sag in certain places, is wry and engrossing.\nI admire the closing scenes of the film, which seem to ask whether our civilization offers a cure for Vincent's complaint.\nLike Rudy Yellow Lodge, Eyre needs to take a good sweat to clarify his cinematic vision before his next creation and remember the lessons of the trickster spider.\na delightful romantic comedy with plenty of bite. It's far from a frothy piece, and the characters are complex, laden with plenty of baggage and tinged with tragic undertones.\nUsing an endearing cast, writer/director Dover Kosashvili takes a slightly dark look at relationships, both sexual and kindred.\nWhen a movie has stuck around for this long, you know there's something there. It's that good.\nSmart, sassy interpretation of the Oscar Wilde play.\nForget about one Oscar nomination for Julianne Moore this year - she should get all five.\nJapanese director Shohei Imamura's latest film is an odd but ultimately satisfying blend of the sophomoric and the sublime.\nKwan is a master of shadow, quietude, and room noise, and Lan Yu is a disarmingly lived-in movie.\nWhile the plot follows a predictable connect-the-dots course... director John Schultz colors the picture in some evocative shades.\nKatz's documentary doesn't have much panache, but with material this rich it doesn't need it.\nWe get an image of Big Papa spanning history, rather than suspending it.\nEvelyn's strong cast and surehanded direction make for a winning, heartwarming yarn.\nA conventional but heartwarming tale.\nThis is one of the outstanding thrillers of recent years.\nSkins has a desolate air, but Eyre, a Native American raised by white parents, manages to infuse the rocky path to sibling reconciliation with flashes of warmth and gentle humor.\nA film of quiet power.\nMore concerned with overall feelings, broader ideas, and open-ended questions than concrete story and definitive answers, Soderbergh's Solaris is a gorgeous and deceptively minimalist cinematic tone poem.\nAn intelligent romantic thriller of a very old-school kind of quality.\nThe sword fighting is well done and Auteuil is a goofy pleasure.\nYes, MIBII is rote work and predictable, but with a philosophical visual coming right at the end that extravagantly redeems it.\nFilm can't quite maintain its initial momentum, but remains sporadically funny throughout.\nO Fantasma is boldly, confidently orchestrated, aesthetically and sexually, and its impact is deeply and rightly disturbing.\nIt's still Adam Sandler, and it's not Little Nicky. And for many of us, that's good enough.\nHere's yet another cool crime movie that actually manages to bring something new into the mix.\nLee's achievement extends to his supple understanding of the role that Brown played in American culture as an athlete, a movie star, and an image of black indomitability.\nKaufman and Jonze take huge risks to ponder the whole notion of passion -- our desire as human beings for passion in our lives and the emptiness one feels when it is missing.\nIt tends to remind one of a really solid Woody Allen film, with its excellent use of New York locales and sharp writing\nWhile centered on the life experiences of a particular theatrical family, this marvelous documentary touches -- ever so gracefully -- on the entire history of the Yiddish theater, both in America and Israel.\nThe film, despite the gratuitous cinematic distractions impressed upon it, is still good fun.\nThe immersive powers of the giant screen and its hyper-realistic images are put to perfect use in the breathtakingly beautiful outer-space documentary Space Station 3D.\nHas an unmistakable, easy joie de vivre.\nMore than anything else, Kissing Jessica Stein injects freshness and spirit into the romantic comedy genre, which has been held hostage by generic scripts that seek to remake Sleepless in Seattle again and again.\nThis movie has the usual impossible stunts ... But it has just as many scenes that are lean and tough enough to fit in any modern action movie.\nMostly works because of the universal themes, earnest performances ... and excellent use of music by India's popular Gulzar and Jagjit Singh.\n...the one thing this Wild film has that other Imax films don't: chimps, lots of chimps, all blown up to the size of a house. That's fun for kids of any age.\nWriter/director David Caesar ladles on the local flavour with a hugely enjoyable film about changing times, clashing cultures and the pleasures of a well-made pizza.\nRarely have I seen a film so willing to champion the fallibility of the human heart.\nHolofcener rejects patent solutions to dramatize life's messiness from inside out, in all its strange quirks.\nLike The Full Monty, this is sure to raise audience's spirits and leave them singing long after the credits roll.\n... a gleefully grungy, hilariously wicked black comedy ...\nKinnear and Dafoe give what may be the performances of their careers.\nAll in all, a great party.\nA moving story of determination and the human spirit.\n``Brown Sugar'' admirably aspires to be more than another ``Best Man'' clone by weaving a theme throughout this funny film.\n(Gulpilil) is a commanding screen presence, and his character's abundant humanism makes him the film's moral compass.\nAn effortlessly accomplished and richly resonant work.\nIn some ways, Lagaan is quintessential Bollywood. Except it's much, much better.\nThough it never rises to its full potential as a film, still offers a great deal of insight into the female condition and the timeless danger of emotions repressed.\nScotland looks wonderful, the fans are often funny fanatics, the showdown sure beats a bad day of golf.\nWhat enlivens this film, beyond the astute direction of Cardoso and beautifully detailed performances by all of the actors, is a note of defiance over social dictates.\nThe emotion is impressively true for being so hot-blooded, and both leads are up to the task.\nAlthough it lacks the detail of the book, the film does pack some serious suspense.\nI'd watch these two together again in a New York minute.\nThere's nothing like love to give a movie a B-12 shot, and CQ shimmers with it.\nA moving essay about the specter of death, especially suicide.\nThis film is so different from The Apple and so striking that it can only encourage us to see Samira Makhmalbaf as a very distinctive sensibility, working to develop her own film language with conspicuous success.\nLike a less dizzily gorgeous companion to Mr. Wong's In the Mood for Love -- very much a Hong Kong movie despite its mainland setting.\n...a somber film, almost completely unrelieved by any comedy beyond the wistful everyday ironies of the working poor.\nCoral Reef Adventure is a heavyweight film that fights a good fight on behalf of the world's endangered reefs -- and it lets the pictures do the punching.\nThe overall result is an intelligent, realistic portrayal of testing boundaries.\nPoignant and moving, A Walk to Remember is an inspirational love story, capturing the innocence and idealism of that first encounter.\nWorth a salute just for trying to be more complex than your average film.\nHandsome and sophisticated approach to the workplace romantic comedy.\nA shimmeringly lovely coming-of-age portrait, shot in artful, watery tones of blue, green and brown.\nWhile Cherish doesn't completely survive its tonal transformation from dark comedy to suspense thriller, it's got just enough charm and appealing character quirks to forgive that still serious problem.\nIn many ways, reminiscent of 1992's Unforgiven which also utilized the scintillating force of its actors to draw out the menace of its sparse dialogue.\nWe admire this film for its harsh objectivity and refusal to seek our tears, our sympathies.\nAn often watchable, though goofy and lurid, blast of a costume drama set in the late 15th century.\nThe entire cast is first-rate, especially Sorvino.\nThe Cat's Meow marks a return to form for director Peter Bogdanovich ...\nThis one is strictly a lightweight escapist film.\nThis sensitive, smart, savvy, compelling coming-of-age drama delves into the passive-aggressive psychology of co-dependence and the struggle for self-esteem.\nThe culmination of everyone's efforts is given life when A Selection appears in its final form (in ``Last Dance'').\nIn questioning the election process, Payami graphically illustrates the problems of fledgling democracies, but also the strength and sense of freedom the Iranian people already possess, with or without access to the ballot box.\nA very charming and funny movie.\nThis is a film that manages to find greatness in the hue of its drastic iconography.\nStreamlined to a tight, brisk 85-minute screwball thriller, ``Big Trouble'' is funny, harmless and as substantial as a tub of popcorn with extra butter.\nConsummate actor Barry has done excellent work here.\nThe biggest problem with this movie is that it's not nearly long enough.\nWhile not all that bad of a movie, it's nowhere near as good as the original.\nAli's graduation from little screen to big is far less painful than his opening scene encounter with an over-amorous terrier.\nI have always appreciated a smartly written motion picture, and, whatever flaws Igby Goes Down may possess, it is undeniably that.\nYou can sip your vintage wines and watch your Merchant Ivory productions; I'll settle for a nice cool glass of iced tea and a Jerry Bruckheimer flick any day of the week.\nMay be the most undeserving victim of critical overkill since Town and Country.\nA chilly, brooding but quietly resonant psychological study of domestic tension and unhappiness.\nThe movie does its best to work us over, with second helpings of love, romance, tragedy, false dawns, real dawns, comic relief, two separate crises during marriage ceremonies, and the lush scenery of the Cotswolds.\nCold, nervy and memorable.\nBecomes a fascinating study of isolation and frustration that successfully recreates both the physical setting and emotional tensions of the Papin sisters.\nSpend your Benjamins on a matinee.\nAll in all, it's a pretty good execution of a story that's a lot richer than the ones Hollywood action screenwriters usually come up with on their own.\nWorth seeing just for Weaver and LaPaglia.\nA pleasant piece of escapist entertainment.\nAmong the many pleasures are the lively intelligence of the artists and their perceptiveness about their own situations.\nIt's consistently funny, in an irresistible junior-high way, and consistently free of any gag that would force you to give it a millisecond of thought.\nIt's the cute frissons of discovery and humor between Chaplin and Kidman that keep this nicely wound clock not just ticking, but humming.\nThe storytelling may be ordinary, but the cast is one of those all-star reunions that fans of Gosford Park have come to assume is just another day of Brit cinema.\nThere's something about a marching band that gets me where I live.\nCuaron repeatedly, perversely undercuts the joie de vivre even as he creates it, giving the movie a mournful undercurrent that places the good-time shenanigans in welcome perspective.\nIt's definitely an improvement on the first Blade, since it doesn't take itself so deadly seriously.\nA slam-bang extravaganza that is all about a wild-and-woolly, wall-to-wall good time.\nWhat's infuriating about Full Frontal is that it's too close to real life to make sense. What's invigorating about it is that it doesn't give a damn.\nIs Red Dragon worthy of a place alongside the other Hannibal movies? As Hannibal would say, yes, 'It's like having an old friend for dinner'.\nWriter-director Juan Carlos Fresnadillo makes a feature debut that is fully formed and remarkably assured.\ninsightfully written, delicately performed\nPerhaps the grossest movie ever made. Funny, though.\nThis 90-minute postmodern voyage was more diverting and thought-provoking than I'd expected it to be.\nOne of those exceedingly rare films in which the talk alone is enough to keep us involved.\nA heartbreakingly thoughtful minor classic, the work of a genuine and singular artist.\nAn affectionately goofy satire that's unafraid to throw elbows when necessary...\nBetween them, De Niro and Murphy make Showtime the most savory and hilarious guilty pleasure of many a recent movie season.\nJackson tries to keep the plates spinning as best he can, but all the bouncing back and forth can't help but become a bit tedious -- even with the breathtaking landscapes and villainous varmints there to distract you from the ricocheting.\nFilmmakers David Weissman and Bill Weber benefit enormously from the Cockettes' camera craziness -- not only did they film performances, but they did the same at home.\nInteresting both as a historical study and as a tragic love story.\nA stylish but steady, and ultimately very satisfying, piece of character-driven storytelling.\nIt picked me up, swung me around, and dropped me back in my seat with more emotional force than any other recent film.\nGraham Greene's novel of colonialism and empire is elevated by Michael Caine's performance as a weary journalist in a changing world.\nThough it's equally solipsistic in tone, the movie has enough vitality to justify the notion of creating a screen adaptation of Evans' saga of Hollywood excess.\nCompulsively watchable, no matter how degraded things get.\nDelivers roughly equal amounts of beautiful movement and inside information.\nBon appétit! Just like a splendid meal, Red Dragon satisfies – from its ripe recipe, inspiring ingredients, certified cuisine and palatable presentation.\nThe structure is simple, but in its own way, Rabbit-Proof Fence is a quest story as grand as The Lord of the Rings.\nThis charming, thought-provoking New York fest of life and love has its rewards.\nSome people march to the beat of a different drum, and if you ever wondered what kind of houses those people live in, this documentary takes a look at 5 alternative housing options.\nPlayfully profound... and crazier than Michael Jackson on the top floor of a skyscraper nursery surrounded by open windows.\nA film that will enthrall the whole family.\nThe charm of the first movie is still there, and the story feels like the logical, unforced continuation of the careers of a pair of spy kids.\nK 19 stays afloat as decent drama/action flick\nIt sends you away a believer again and quite cheered at just that.\nLike the best 60 Minutes exposé, the film (at 80 minutes) is actually quite entertaining.\nan 83 minute document of a project which started in a muddle, seesawed back and forth between controlling interests multiple times, then found its sweet spot\nAn emotionally and spiritually compelling journey seen through the right eyes, with the right actors and with the kind of visual flair that shows what great cinema can really do.\nNair doesn't use (Monsoon Wedding) to lament the loss of culture. Instead, she sees it as a chance to revitalize what is and always has been remarkable about clung-to traditions.\nBoth Grant and Hoult carry the movie because they are believable as people -- flawed, assured of the wrong things, and scared to admit how much they may really need the company of others.\nLeading a double life in an American film only comes to no good, but not here. Matters play out realistically if not always fairly.\nIn the affable Maid in Manhattan, Jennifer Lopez's most aggressive and most sincere attempt to take movies by storm, the diva shrewdly surrounds herself with a company of strictly A-list players.\nLike Mike is a harmlessly naïve slice of b-ball fantasy, fit for filling in during the real NBA's off-season.\nThough writer/director Bart Freundlich's film ultimately becomes a simplistic story about a dysfunctional parent-child relationship, it has some special qualities and the soulful gravity of Crudup's anchoring performance.\nWhat the movie lacks in action it more than makes up for in drama, suspense, revenge, and romance.\nJust offbeat enough to keep you interested without coming close to bowling you over.\nProbes in a light-hearted way the romantic problems of individuals for whom the yearning for passion spells discontent.\nWhat elevates the movie above the run-of-the-mill singles blender is its surreal sense of humor and technological finish.\nA film about female friendship that men can embrace and women will talk about for hours.\nThe directing and story are disjointed, flaws that have to be laid squarely on Taylor's doorstep. But the actors make this worth a peek.\nLight the candles, bring out the cake and don't fret about the calories because there's precious little substance in Birthday Girl -- it's simply, and surprisingly, a nice, light treat.\nIt may be about drug dealers, kidnapping, and unsavory folks, but the tone and pacing are shockingly intimate.\nMassoud's story is an epic, but also a tragedy, the record of a tenacious, humane fighter who was also the prisoner (and ultimately the victim) of history.\nIf villainous vampires are your cup of blood, Blade 2 is definitely a cut above the rest.\nDrumline ably captures the complicated relationships in a marching band.\nBecause the film deliberately lacks irony, it has a genuine dramatic impact; it plays like a powerful 1957 drama we've somehow never seen before.\nDoes point the way for adventurous Indian filmmakers toward a crossover into nonethnic markets.\nSeems based on ugly ideas instead of ugly behavior, as Happiness was... Hence, Storytelling is far more appealing.\n``Sum'' is Jack Ryan's ``do-over.'' Give credit to everyone from Robinson down to the key grip that this bold move works. Especially give credit to Affleck.\nAn intelligently made (and beautifully edited) picture that at the very least has a spark of life to it -- more than you can say for plenty of movies that flow through the Hollywood pipeline without a hitch.\nA terrific date movie, whatever your orientation.\nNot all of the stories work and the ones that do are thin and scattered, but the film works well enough to make it worth watching.\nWhat it lacks in originality it makes up for in effective if cheap moments of fright and dread.\nThe pain, loneliness and insecurity of the screenwriting process are vividly and painfully brought to slovenly life in this self-deprecating, biting and witty feature written by Charlie Kaufman and his twin brother, Donald, and directed by Spike Jonze.\nA gem of a movie.\nWitty, vibrant, and intelligent.\nIt's all stitched together with energy, intelligence and verve, enhanced by a surplus of vintage archive footage.\nMiller comes at film with bracing intelligence and a vision both painterly and literary.\nThe film is moody, oozing, chilling and heart-warming all at once...a twisting, unpredictable, cat-and-mouse thriller.\nEight Legged Freaks is clever and funny, is amused by its special effects, and leaves you feeling like you've seen a movie instead of an endless trailer.\nThis is historical filmmaking without the balm of right-thinking ideology, either liberal or conservative. Mr. Scorsese's bravery and integrity in advancing this vision can hardly be underestimated.\nA thriller whose style, structure and rhythms are so integrated with the story, you cannot separate them.\nIt's a hoot watching The Rock chomp on jumbo ants, pull an arrow out of his back, and leap unscathed through raging fire!\nReturning director Rob Minkoff ... and screenwriter Bruce Joel Rubin ... have done a fine job of updating White's dry wit to a new age.\nUnfolds with such a wallop of you-are-there immediacy that when the bullets start to fly, your first instinct is to duck.\nA strong script, powerful direction and splendid production design allows us to be transported into the life of Wladyslaw Szpilman, who is not only a pianist, but a good human being.\nAn unflinching look at the world's dispossessed.\nIf the film fails to fulfill its own ambitious goals, it nonetheless sustains interest during the long build-up of expository material.\nPolanski has found the perfect material with which to address his own World War II experience in his signature style.\nIt is life affirming and heartbreaking, sweet without the decay factor, funny and sad.\nAn off-beat and fanciful film about the human need for monsters to blame for all that is amiss in the world.\nA colorful, joyous celebration of life; a tapestry woven of romance, dancing, singing, and unforgettable characters.\nFrei assembles a fascinating profile of a deeply humanistic artist who, in spite of all that he's witnessed, remains surprisingly idealistic, and retains an extraordinary faith in the ability of images to communicate the truth of the world around him.\nNicely combines the enigmatic features of `Memento' with the hallucinatory drug culture of `Requiem for a Dream.'\nA well paced and satisfying little drama that deserved better than a `direct-to-video' release.\nThe best part about ``Gangs'' was Daniel Day-Lewis.\nA treat for its depiction on not giving up on dreams when you're a struggling nobody.\nOne of those rare films that seems as though it was written for no one, but somehow manages to convince almost everyone that it was put on the screen, just for them.\nA gripping documentary that reveals how deep the antagonism lies in war-torn Jerusalem.\nDirector Chris Wedge and screenwriters Michael Berg, Michael J. Wilson and Peter Ackerman create some episodes that rival vintage Looney Tunes for the most creative mayhem in a brief amount of time.\nOne of the film's most effective aspects is its Tchaikovsky soundtrack of neurasthenic regret.\nSolondz creates some effective moments of discomfort for character and viewer alike.\nThe film's appeal has a lot to do with the casting of Juliette Binoche as Sand, who brings to the role her pale, dark beauty and characteristic warmth.\nI was amused and entertained by the unfolding of Bielinsky's cleverly constructed scenario, and greatly impressed by the skill of the actors involved in the enterprise.\nSomehow Ms. Griffiths and Mr. Pryce bring off this wild Welsh whimsy.\nMore mature than Fatal Attraction, more complete than Indecent Proposal and more relevant than 9 ½ Weeks, Unfaithful is at once intimate and universal cinema.\nFor all the dolorous trim, Secretary is a genial romance that maintains a surprisingly buoyant tone throughout, notwithstanding some of the writers' sporadic dips into pop Freudianism.\nA fanciful drama about Napoleon's last years and his surprising discovery of love and humility.\nA highly personal look at the effects of living a dysfunctionally privileged lifestyle, and by the end, we only wish we could have spent more time in its world.\nEric Schweig and Graham Greene both exude an air of dignity that's perfect for the proud warrior that still lingers in the souls of these characters.\nLovely and Amazing is Holofcener's deep, uncompromising curtsy to women she knows, and very likely is. When all is said and done, she loves them to pieces -- and so, I trust, will you.\nCampbell Scott finds the ideal outlet for his flick-knife diction in the role of Roger Swanson.\n(Fiji diver Rusi Vulakoro and the married couple Howard and Michelle Hall) show us the world they love and make us love it, too.\nRussian Ark is a new treasure of the Hermitage.\nThe animated sequences are well done and perfectly constructed to convey a sense of childhood imagination and creating adventure out of angst.\nIt's definitely a step in the right direction.\nAs the princess, Sorvino glides gracefully from male persona to female without missing a beat. Ben Kingsley is truly funny, playing a kind of Ghandi gone bad.\nOurside the theatre Roger might be intolerable company, but inside it he's well worth spending some time with.\nA gem, captured in the unhurried, low-key style favored by many directors of the Iranian new wave.\nIn an era where big stars and high production values are standard procedure, Narc strikes a defiantly retro chord, and outpaces its contemporaries with daring and verve.\nRanges from laugh-out-loud hilarious to wonder-what- time-it-is tedious.\nThe film's gamble to occasionally break up the live-action scenes with animated sequences pays off, as does its sensitive handling of some delicate subject matter.\nTalk To Her is not the perfect movie many have made it out to be, but it's still quite worth seeing.\nBeating the Austin Powers films at their own game, this blaxploitation spoof downplays the raunch in favor of gags that rely on the strength of their own cleverness as opposed to the extent of their outrageousness.\nThis is a dark, gritty, sometimes funny little gem.\nFor all its visual panache and compelling supporting characters, the heart of the film rests in the relationship between Sullivan and his son.\nWhat makes Salton Sea surprisingly engrossing is that Caruso takes an atypically hypnotic approach to a world that's often handled in fast-edit, hopped-up fashion.\nA hidden-agenda drama that shouts classic French nuance.\nWith Spy Kids 2: The Island of Lost Dreams, the Spy Kids franchise establishes itself as a durable part of the movie landscape: a James Bond series for kids.\nAn invaluable historical document thanks to the filmmaker's extraordinary access to Massoud, whose charm, cultivation and devotion to his people are readily apparent.\nThe performances of the four main actresses bring their characters to life. A little melodramatic, but with enough hope to keep you engaged.\nLan Yu seems altogether too slight to be called any kind of masterpiece. It is, however, a completely honest, open-hearted film that should appeal to anyone willing to succumb to it.\nEveryone should be able to appreciate the wonderful cinematography and naturalistic acting.\nThis often-hilarious farce manages to generate the belly laughs of lowbrow comedy without sacrificing its high-minded appeal.\nExpands the limits of what a film can be, taking us into the lives of women to whom we might not give a second look if we passed them on the street.\nThe farcical elements seemed too pat and familiar to hold my interest, yet its diverting grim message is a good one.\nShanghai Ghetto may not be as dramatic as Roman Polanski's The Pianist, but its compassionate spirit soars every bit as high.\nDespite these annoyances, the capable Clayburgh and Tambor really do a great job of anchoring the characters in the emotional realities of middle age.\nThe underworld urban angst is derivative of Martin Scorsese's Taxi Driver and Goodfellas, but this film speaks for itself.\nThe film's heady yet far from impenetrable theory suggests that Russians take comfort in their closed-off nationalist reality.\nDespite modest aspirations its occasional charms are not to be dismissed.\nConstantly touching, surprisingly funny, semi-surrealist exploration of the creative act.\nThe journey is worth your time, especially if you have Ellen Pompeo sitting next to you for the ride.\nMerci pour le movie.\nFor every cheesy scene, though, there is a really cool bit -- the movie's conception of a future-world holographic librarian (Orlando Jones) who knows everything and answers all questions, is visually smart, cleverly written, and nicely realized.\nWhat sets Ms. Birot's film apart from others in the genre is a greater attention to the parents -- and particularly the fateful fathers -- in the emotional evolution of the two bewitched adolescents.\nAll three women deliver remarkable performances.\nClaire is a terrific role for someone like Judd, who really ought to be playing villains.\nIt's clear that Mehta simply wanted to update her beloved genre for the thousands of Indians who fancy themselves too sophisticated for the cheese-laced spectacles that pack 'em in on the subcontinent.\nCompassionately explores the seemingly irreconcilable situation between conservative Christian parents and their estranged gay and lesbian children.\nThe soundtrack alone is worth the price of admission.\nRodriguez does a splendid job of racial profiling Hollywood style--casting excellent Latin actors of all ages--a trend long overdue.\nBeneath the film's obvious determination to shock at any cost lies considerable skill and determination, backed by sheer nerve.\nBielinsky is a filmmaker of impressive talent.\nSo beautifully acted and directed, it's clear that Washington most certainly has a new career ahead of him if he so chooses.\nA visual spectacle full of stunning images and effects.\nA gentle and engrossing character study.\nIt's enough to watch Huppert scheming, with her small, intelligent eyes as steady as any noir villain, and to enjoy the perfectly pitched web of tension that Chabrol spins.\nAn engrossing portrait of uncompromising artists trying to create something original against the backdrop of a corporate music industry that only seems to care about the bottom line.\nA mischievous visual style and oodles of charm make 'Cherish' a very good (but not great) movie.\nJust as the recent Argentine film Son of the Bride reminded us that a feel-good movie can still show real heart, Time of Favor presents us with an action movie that actually has a brain.\n(A) strong piece of work.\nA stirring tribute to the bravery and dedication of the world's reporters who willingly walk into the nightmare of war not only to record the events for posterity, but to help us clearly see the world of our making.\nThe Importance of Being Earnest, so thick with wit it plays like a reading from Bartlett's Familiar Quotations\nDaring and beautifully made.\nMade for teens and reviewed as such, this is recommended only for those under 20 years of age...and then only as a very mild rental.\nImagine O. Henry's The Gift of the Magi relocated to the scuzzy underbelly of NYC's drug scene. Merry friggin' Christmas!\nThe film does give a pretty good overall picture of the situation in Laramie following the murder of Matthew Shepard.\nBoth lead performances are Oscar-size. Quaid is utterly fearless as the tortured husband living a painful lie, and Moore wonderfully underplays the long-suffering heroine with an unflappable '50s dignity somewhere between Jane Wyman and June Cleaver.\nFerrara's best film in years.\nA remarkably insightful look at the backstage angst of the stand-up comic.\nNothing short of wonderful with its ten-year-old female protagonist and its steadfast refusal to set up a dualistic battle between good and evil.\nDavis' candid, archly funny and deeply authentic take on intimate relationships comes to fruition in her sophomore effort.\nIt's more enjoyable than I expected, though, and that's because the laughs come from fairly basic comedic constructs. Cinematic pratfalls given a working over. The cast is spot on and the mood is laid back.\nMatches neorealism's impact by showing the humanity of a war-torn land filled with people who just want to live their lives.\nThose moviegoers who would automatically bypass a hip-hop documentary should give ``Scratch'' a second look.\nBaby-faced Renner is eerily convincing as this bland blank of a man with unimaginable demons within.\nRomantic, riveting and handsomely animated.\nA competent, unpretentious entertainment destined to fill the after-school slot at shopping mall theaters across the country.\nShot largely in small rooms, the film has a gentle, unforced intimacy that never becomes claustrophobic.\nWhere Janice Beard falters in its recycled aspects, implausibility, and sags in pace, it rises in its courageousness, and comedic employment.\nByler is too savvy a filmmaker to let this morph into a typical romantic triangle. Instead, he focuses on the anguish that can develop when one mulls leaving the familiar to traverse uncharted ground.\nMcGrath has deftly trimmed Dickens' wonderfully sprawling soap opera, the better to focus on the hero's odyssey from cowering poverty to courage and happiness.\nA chance to see three splendid actors turn a larky chase movie into an emotionally satisfying exploration of the very human need to be somebody, and to belong to somebody.\nMetaphors abound, but it is easy to take this film at face value and enjoy its slightly humorous and tender story.\nAs directed by Dani Kouyate of Burkina Faso, Sia lacks visual flair. But Kouyate elicits strong performances from his cast, and he delivers a powerful commentary on how governments lie, no matter who runs them.\nThe best comedy concert movie I've seen since Cho's previous concert comedy film, I'm the One That I Want, in 2000.\nBroomfield reminds us that beneath the hype, the celebrity, the high life, the conspiracies and the mystery there were once a couple of bright young men -- promising, talented, charismatic and tragically doomed.\nOffers laughs and insight into one of the toughest ages a kid can go through.\nA perceptive, good-natured movie.\nAn amused indictment of Jaglom's own profession.\nA small movie with a big heart.\nHugely accomplished slice of Hitchcockian suspense.\nThe formula is familiar but enjoyable.\nTells a fascinating, compelling story.\nA triumph, a film that hews out a world and carries us effortlessly from darkness to light.\nWhat begins as a conventional thriller evolves into a gorgeously atmospheric meditation on life-changing chance encounters.\nThe Lady and the Duke is a smart, romantic drama that dares to depict the French Revolution from the aristocrats' perspective.\nMost haunting about ``Fence'' is its conclusion, when we hear the ultimate fate of these girls and realize, much to our dismay, that this really did happen. Noyce's greatest mistake is thinking that we needed sweeping, dramatic, Hollywood moments to keep us\nWorld Traveler might not go anywhere new, or arrive anyplace special, but it's certainly an honest attempt to get at something.\nThere's much tongue in cheek in the film and there's no doubt the filmmaker is having fun with it all.\nThere's absolutely no reason why Blue Crush, a late-summer surfer girl entry, should be as entertaining as it is\nAn action/thriller of the finest kind, evoking memories of Day of the Jackal, The French Connection, and Heat.\nThe best movie in many a moon about the passions that sometimes fuel our best achievements and other times leave us stranded with nothing more than our lesser appetites.\nIn capturing the understated comedic agony of an ever-ruminating, genteel yet decadent aristocracy that can no longer pay its bills, the film could just as well be addressing the turn of the 20th century into the 21st.\nInsomnia does not become one of those rare remakes to eclipse the original, but it doesn't disgrace it, either.\nclassic cinema served up with heart and humor\n(Stephen) Earnhart's film is more about the optimism of a group of people who are struggling to give themselves a better lot in life than the ones they currently have.\nThe events of the film are just so WEIRD that I honestly never knew what the hell was coming next.\nNicole Holofcener's Lovely and Amazing, from her own screenplay, jumps to the head of the class of women's films that manage to avoid the ghetto of sentimental chick-flicks by treating female follies with a satirical style.\nThat Jack Nicholson makes this man so watchable is a tribute not only to his craft, but to his legend.\nHas a solid emotional impact.\nSuccessfully blended satire, high camp and yet another sexual taboo into a really funny movie.\nMark Pellington's latest pop thriller is as kooky and overeager as it is spooky and subtly in love with myth.\nWhile maintaining the appearance of clinical objectivity, this sad, occasionally horrifying but often inspiring film is among Wiseman's warmest.\nRaimi crafted a complicated hero who is a welcome relief from the usual two-dimensional offerings.\nAn enjoyable above average summer diversion.\nThere is simply no doubt that this film asks the right questions at the right time in the history of our country.\nIf you've the patience, there are great rewards here.\nAs a science fiction movie, ``Minority Report'' astounds.\nWatching E.T now, in an era dominated by cold, loud special-effects-laden extravaganzas, one is struck less by its lavish grandeur than by its intimacy and precision.\nVisually breathtaking, viscerally exciting, and dramatically moving, it's the very definition of epic adventure.\nChris Columbus' sequel is faster, livelier and a good deal funnier than his original.\nWatching this film, what we feel isn't mainly suspense or excitement. The dominant feeling is something like nostalgia.\n'...a great, participatory spectator sport.'\nA rather brilliant little cult item: a pastiche of children's entertainment, superhero comics, and Japanese animation.\nBelieves so fervently in humanity that it feels almost anachronistic, and it is too cute by half. But arriving at a particularly dark moment in history, it offers flickering reminders of the ties that bind us.\nAdam SANDLER! In an ART FILM!\nAs averse as I usually am to feel-good, follow-your-dream Hollywood fantasies, this one got to me.\nStone seems to have a knack for wrapping the theater in a cold blanket of urban desperation.\n...a funny yet dark and seedy clash of cultures and generations.\nThe hook is the drama within the drama, as an unsolved murder and an unresolved moral conflict jockey for the spotlight.\nOver the years, Hollywood has crafted a solid formula for successful animated movies, and Ice Age only improves on it, with terrific computer graphics, inventive action sequences and a droll sense of humor.\nLike Smoke Signals, the film is also imbued with strong themes of familial ties and spirituality that are powerful and moving without stooping to base melodrama\nOne of those movies that make us pause and think of what we have given up to acquire the fast-paced contemporary society.\nOne of the most original American productions this year, you'll find yourself remembering this refreshing visit to a Sunshine State.\nMelds derivative elements into something that is often quite rich and exciting, and always a beauty to behold.\nGives everyone something to shout about.\nThe entire movie has a truncated feeling, but what's available is lovely and lovable.\n(A) thoughtful, visually graceful work.\nAdmirers of director Abel Ferrara may be relieved that his latest feature, R Xmas, marks a modest if encouraging return to form.\nThe slam-bang superheroics are kinetic enough to engross even the most antsy youngsters.\nA worthy addition to the cinematic canon, which, at last count, numbered 52 different versions.\nDeliciously mean-spirited and wryly observant.\nThe kind of primal storytelling that George Lucas can only dream of.\nEven if The Ring has a familiar ring, it's still unusually crafty and intelligent for Hollywood horror.\nThe sheer joy and pride they took in their work -- and in each other -- shines through every frame.\nA solidly constructed, entertaining thriller that stops short of true inspiration.\nThe cast ... keeps this pretty watchable, and casting Mick Jagger as director of the escort service was inspired.\nAn entertaining, if somewhat standardized, action movie.\nIt has a dashing and resourceful hero; a lisping, reptilian villain; big fights; big hair; lavish period scenery; and a story just complicated enough to let you bask in your own cleverness as you figure it out.\nAn enjoyable comedy of lingual and cultural differences... The Château is a film -- full of life and small delights -- that has all the wiggling energy of young kitten.\nIntriguing and downright intoxicating.\nAn incredibly thoughtful, deeply meditative picture that neatly and effectively captures the debilitating grief felt in the immediate aftermath of the terrorist attacks.\nWith an obvious rapport with her actors and a striking style behind the camera, Hélène Angel is definitely a director to watch.\n...could easily be called the best Korean film of 2002.\nFull of detail about the man and his country, and is well worth seeing.\nThe banter between Calvin and his fellow barbers feels like a streetwise McLaughlin Group ... and never fails to entertain.\nThoroughly engrossing and ultimately tragic.\nPeter Jackson and company once again dazzle and delight us, fulfilling practically every expectation either a longtime Tolkien fan or a movie-going neophyte could want.\nBill Morrison's Decasia is uncompromising, difficult and unbearably beautiful.\nFull of bland hotels, highways, parking lots, with some glimpses of nature and family warmth, Time Out is a discreet moan of despair about entrapment in the maze of modern life.\nEven with all its botches, Enigma offers all the pleasure of a handsome and well-made entertainment.\nHis work transcends the boy-meets-girl posturing of typical love stories.\nIf the real-life story is genuinely inspirational, the movie stirs us as well.\nAn ebullient Tunisian film about the startling transformation of a tradition-bound widow who is drawn into the exotic world of belly dancing.\nThe dramatic crisis doesn't always succeed in its quest to be taken seriously, but Huppert's volatile performance makes for a riveting movie experience.\nHighly irritating at first, Mr. Koury's passive technique eventually begins to yield some interesting results.\nAbout Schmidt belongs to Nicholson. Gone are the flamboyant mannerisms that are the trademark of several of his performances. As Schmidt, Nicholson walks with a slow, deliberate gait, chooses his words carefully and subdues his natural exuberance.\nThe powder blues and sun-splashed whites of Tunis make an alluring backdrop for this sensuous and spirited tale of a prim widow who finds an unlikely release in belly-dancing clubs.\nIt doesn't make for great cinema, but it is interesting to see where one's imagination will lead when given the opportunity.\nIt's sobering, particularly if anyone still thinks this conflict can be resolved easily, or soon.\nIf it's not entirely memorable, the movie is certainly easy to watch.\n... by the time it's done with us, Mira Nair's new movie has its audience giddy with the delight of discovery, of having been immersed in a foreign culture only to find that human nature is pretty much the same all over.\nBest indie of the year, so far.\n(Ferrera) has the charisma of a young woman who knows how to hold the screen.\n...the plot weaves us into a complex web.\nDon't judge this one too soon - it's a dark, gritty story but it takes off in totally unexpected directions and keeps on going.\nIn Death to Smoochy, we don't get Williams' usual tear and a smile, just sneers and bile, and the spectacle is nothing short of refreshing.\nA serviceable Euro-trash action extravaganza, with a decent sense of humor and plenty of things that go boom -- handguns, BMWs and seaside chateaus.\nFortunately, Elling never gets too cloying thanks to the actors' perfect comic timing and sweet, genuine chemistry.\nIf you've grown tired of going where no man has gone before, but several movies have - take heart. This is the best Star Trek movie in a long time.\nGreg Kinnear gives a mesmerizing performance as a full-fledged sex addict who is in complete denial about his obsessive behavior.\nNot only a coming-of-age story and cautionary parable, but also a perfectly rendered period piece.\nou've got to love a Disney pic with as little cleavage as this one has, and a heroine as feisty and principled as Jane.\nA funny, triumphant, and moving documentary.\nLathan and Diggs carry the film with their charisma, and both exhibit sharp comic timing that makes the more hackneyed elements of the film easier to digest.\nAbout Schmidt is Nicholson's goofy, heartfelt, mesmerizing King Lear.\nA confluence of kiddie entertainment, sophisticated wit and symbolic graphic design.\nGay or straight, Kissing Jessica Stein is one of the greatest date movies in years.\nThis is a movie full of grace and, ultimately, hope.\nEven better than the first one!\nIts compelling mix of trial movie, escape movie and unexpected fable ensures the film never feels draggy.\nA must see for all sides of the political spectrum\n(Reynolds) takes a classic story, casts attractive and talented actors and uses a magnificent landscape to create a feature film that is wickedly fun to watch.\nThere are problems with this film that even 3 Oscar winners can't overcome, but it's a nice girl-buddy movie once it gets rock-n-rolling.\nRich in atmosphere of the post-war art world, it manages to instruct without reeking of research library dust.\nHas the rare capability to soothe and break your heart with a single stroke.\nIt rapidly develops into a gut-wrenching examination of the way cultural differences and emotional expectations collide.\nThough it flirts with bathos and pathos and the further Oprahfication of the world as we know it, it still cuts all the way down to broken bone.\nThis humbling little film, fueled by the light comedic work of Zhao Benshan and the delicate ways of Dong Jie, is just the sort for those moviegoers who complain that 'they don't make movies like they used to anymore.'\nIt will break your heart many times over.\nA straight-shooting family film which awards animals the respect they've rarely been given.\nOverall, interesting as a documentary -- but not very Imaxy.\nThis is one of those war movies that focuses on human interaction rather than battle and action sequences ... and it's all the stronger because of it.\n``Secretary'' is owned by its costars, Spader and Gyllenhaal. Maggie G. makes an amazing breakthrough in her first starring role and eats up the screen.\nThe film fits into a genre that has been overexposed, redolent of a thousand cliches, and yet remains uniquely itself, vibrant with originality.\nNot only is it a charming, funny and beautifully crafted import, it uses very little dialogue, making it relatively effortless to read and follow the action at the same time.\nThe kind of sense of humor that derives from a workman's grasp of pun and entendre and its attendant need to constantly draw attention to itself.\nToo much of Storytelling moves away from Solondz's social critique, casting its audience as that of intellectual lector in contemplation of the auteur's professional injuries.\nThe story is virtually impossible to follow here, but there's a certain style and wit to the dialogue.\nThe music makes a nice album, the food is enticing and Italy beckons us all.\nThe film is an earnest try at beachcombing verismo, but it would be even more indistinct than it is were it not for the striking, quietly vulnerable personality of Ms. Ambrose.\nThe film is small in scope, yet perfectly formed.\nJones has delivered a solidly entertaining and moving family drama.\nHappy Times maintains an appealing veneer without becoming too cute about it.\nOliveira seems to pursue silent film representation with every mournful composition.\nOne of the pleasures in Walter's documentary ... is the parade of veteran painters, confounded dealers, and miscellaneous bohos who expound upon the subject's mysterious personality without ever explaining him.\nCaptures all the longing, anguish and ache, the confusing sexual messages and the wish to be a part of that elusive adult world.\nHe's the scariest guy you'll see all summer.\n``Frailty'' offers chills much like those that you get when sitting around a campfire around midnight, telling creepy stories to give each other the willies. And, there's no way you won't be talking about the film once you exit the theater.\nIf I have to choose between gorgeous animation and a lame story (like, say, Treasure Planet) or so-so animation and an exciting, clever story with a batch of appealing characters, I'll take the latter every time.\nQuiet, adult and just about more stately than any contemporary movie this year... a true study, a film with a questioning heart and mind that isn't afraid to admit it doesn't have all the answers.\nIn the end, the film is less the cheap thriller you'd expect than it is a fairly revealing study of its two main characters -- damaged-goods people whose orbits will inevitably and dangerously collide.\nSome of the visual flourishes are a little too obvious, but restrained and subtle storytelling, and fine performances make this delicate coming-of-age tale a treat.\nIt is hard not to be especially grateful for freedom after a film like this.\nThe dirty jokes provide the funniest moments in this oddly sweet comedy about jokester highway patrolmen.\nY Tu Mamá También is hilariously, gloriously alive, and quite often hotter than Georgia asphalt.\n... works on some levels and is certainly worth seeing at least once.\nYou come away from his film overwhelmed, hopeful and, perhaps paradoxically, illuminated.\nIf the material is slight and admittedly manipulative, Jacquot preserves Tosca's intoxicating ardor through his use of the camera.\nThirteen Conversations About One Thing lays out a narrative puzzle that interweaves individual stories, and, like a Mobius strip, elliptically loops back to where it began.\nOverall, it's a wacky and inspired little film that works effortlessly at delivering genuine, acerbic laughs.\nA must for fans of British cinema, if only because so many titans of the industry are along for the ride.\nTsai has managed to create an underplayed melodrama about family dynamics and dysfunction that harks back to the spare, unchecked heartache of Yasujiro Ozu.\nUntil (the) superfluous...epilogue that leaks suspension of disbelief like a sieve, Die Another Day is as stimulating & heart-rate-raising as any James Bond thriller.\nIt's a good film, but it falls short of its aspiration to be a true 'epic'.\nAll the pieces fall together without much surprise, but little moments give it a boost.\nThe beauty of Alexander Payne's ode to the Everyman is in the details.\nA touching drama about old age and grief with a tour de force performance by Michel Piccoli.\nThe ending feels at odds with the rest of the film.\nA tone of rueful compassion ... reverberates throughout this film, whose meaning and impact is sadly heightened by current world events.\nA beautiful paean to a time long past.\nDense and thoughtful and brimming with ideas that are too complex to be rapidly absorbed.\nIf you thought Tom Hanks was just an ordinary big-screen star, wait until you've seen him eight stories tall.\nWith this masterful, flawless film, (Wang) emerges in the front ranks of China's now numerous, world-renowned filmmakers.\nShyamalan offers copious hints along the way -- myriad signs, if you will -- that beneath the familiar, funny surface is a far bigger, far more meaningful story than one in which little green men come to Earth for harvesting purposes.\nThis film is an act of spiritual faith -- an eloquent, deeply felt meditation on the nature of compassion.\nA different kind of love story - one that is dark, disturbing, painful to watch, yet compelling.\nSplendidly illustrates the ability of the human spirit to overcome adversity.\nA compelling, gut-clutching piece of advocacy cinema that carries you along in a torrent of emotion as it explores the awful complications of one terrifying day.\nShe's as rude and profane as ever, always hilarious and, most of the time, absolutely right in her stinging social observations.\nTo those who have not read the book, the film is a much better mother-daughter tale than last summer's 'Divine Secrets of the Ya-Ya Sisterhood,' but that's not saying much.\nEven before it builds up to its insanely staged ballroom scene, in which 3000 actors appear in full regalia, it's waltzed itself into the art film pantheon.\nA thoughtful, reverent portrait of what is essentially a subculture, with its own rules regarding love and family, governance and hierarchy.\nIt seems impossible that an epic four-hour Indian musical about a cricket game could be this good, but it is.\nWill certainly appeal to Asian cult cinema fans and Asiaphiles interested to see what all the fuss is about.\nTouches smartly and wistfully on a number of themes, not least the notion that the marginal members of society ... might benefit from a helping hand and a friendly kick in the pants.\nA wildly entertaining scan of Evans' career.\nA mature, deeply felt fantasy of a director's travel through 300 years of Russian history.\nBoldly engineering a collision between tawdry B-movie flamboyance and grandiose spiritual anomie, Rose's film, true to its source material, provides a tenacious demonstration of death as the great equalizer.\nA finely tuned mood piece, a model of menacing atmosphere.\nThe Salton Sea has moments of inspired humour, though every scrap is of the darkest variety.\nBoth a beautifully made nature film and a tribute to a woman whose passion for this region and its inhabitants still shines in her quiet blue eyes.\nAlthough shot with little style, Skins is heartfelt and achingly real.\nHarks back to a time when movies had more to do with imagination than market research.\nUpsetting and thought-provoking, the film has an odd purity that doesn't bring you into the characters so much as it has you study them.\nA very pretty after-school special. It's an effort to watch this movie, but it eventually pays off and is effective if you stick with it.\nA harrowing account of a psychological breakdown.\nContinually challenges perceptions of guilt and innocence, of good guys and bad, and asks us whether a noble end can justify evil means.\nIt certainly won't win any awards in the plot department but it sets out with no pretensions and delivers big time.\nDog Soldiers doesn't transcend genre -- it embraces it, energizes it and takes big bloody chomps out of it.\nAt once emotional and richly analytical, the Cosby-Seinfeld encounter alone confirms the serious weight behind this superficially loose, larky documentary.\nIt may scream low budget, but this charmer has a spirit that cannot be denied.\n'Alice's adventure through the looking glass and into zombie-land' is filled with strange and wonderful creatures.\nWithout (De Niro), City By The Sea would slip under the waves. He drags it back, single-handed.\nA good music documentary, probably one of the best since The Last Waltz.\nIf the plot seems a bit on the skinny side, that's because Panic Room is interested in nothing more than sucking you in...and making you sweat.\n...(the film) works, due mostly to the tongue-in-cheek attitude of the screenplay.\nThe film becomes an overwhelming pleasure, and you find yourself rooting for Gai's character to avoid the fate that has befallen every other Carmen before her.\nBroomfield has a rather unique approach to documentary. He thinks the film is just as much a document about him as it is about the subject.\nAt its best when the guarded, resentful Betty and the manipulative yet needy Margot are front and center.\nGloriously straight from the vagina.\nIt's excessively quirky and a little underconfident in its delivery, but otherwise this is the best 'old neighborhood' project since Christopher Walken kinda romanced Cyndi Lauper in The Opportunists.\nThe film oozes craft.\nRobinson's web of suspense matches the page-turning frenzy that Clancy creates.\nManages to be both hugely entertaining and uplifting.\nA classic fairy tale that perfectly captures the wonders and worries of childhood in a way that few movies have ever approached.\nIt's the unsettling images of a war-ravaged land that prove more potent and riveting than the unlikely story of Sarah and Harrison.\na wonderfully warm human drama that remains vividly in memory long after viewing\nJaunty fun, with its celeb-strewn backdrop well used.\nRecoing's fantastic performance doesn't exactly reveal what makes Vincent tick, but perhaps any definitive explanation for it would have felt like a cheat.\nWashington overcomes the script's flaws and envelops the audience in his character's anguish, anger and frustration.\nThe film fearlessly gets under the skin of the people involved ... This makes it not only a detailed historical document, but an engaging and moving portrait of a subculture.\nA searing, epic treatment of a nationwide blight that seems to be, horrifyingly, ever on the rise.\nNot a film for the faint of heart or conservative of spirit, but for the rest of us -- especially San Francisco lovers -- it's a spirited film and a must-see.\nRead My Lips is to be viewed and treasured for its extraordinary intelligence and originality as well as its lyrical variations on the game of love.\nThe color sense of Stuart Little 2 is its most immediate and most obvious pleasure, but it would count for very little if the movie weren't as beautifully shaped and as delicately calibrated in tone as it is.\nwhile (Roman Coppola) scores points for style, he staggers in terms of story.\nAny movie that makes hard work seem heroic deserves a look.\nIt may not be a huge cut of above the rest, but I enjoyed Barbershop. It's a funny little movie with clever dialogue and likeable characters.\nA different and emotionally reserved type of survival story -- a film less about refracting all of World War II through the specific conditions of one man, and more about that man lost in its midst.\nIt's sweet, funny, charming, and completely delightful.\nA perfectly competent and often imaginative film that lacks what little Lilo & Stitch had in spades -- charisma.\nBeautifully shot against the frozen winter landscapes of Grenoble and Geneva, the film unfolds with all the mounting tension of an expert thriller, until the tragedy beneath it all gradually reveals itself.\nMedem may have disrobed most of the cast, leaving their bodies exposed, but the plot remains as guarded as a virgin with a chastity belt. That's why Sex and Lucia is so alluring.\nAn elegant work, Food of Love is as consistently engaging as it is revealing.\nAlthough largely a heavy-handed indictment of parental failings and the indifference of Spanish social workers and legal system towards child abuse, the film retains ambiguities that make it well worth watching.\nA behind the scenes look at the training and dedication that goes into becoming a world-class fencer and the champion that's made a difference to NYC inner-city youth.\nA brain twister, less a movie-movie than a funny and weird meditation on Hollywood, success, artistic integrity and intellectual bankruptcy.\nA powerful, inflammatory film about religion that dares to question an ancient faith, and about hatred that offers no easy, comfortable resolution.\nIn its own floundering way, it gets to you. Just like Igby.\nReturn to Never Land may be another shameless attempt by Disney to rake in dough from baby boomer families, but it's not half-bad.\nWise and deadpan humorous.\nGod bless Crudup and his aversion to taking the easy Hollywood road and cashing in on his movie-star gorgeousness.\nIf Signs is a good film, and it is, the essence of a great one is in there somewhere.\nVeterans of the dating wars will smirk uneasily at the film's nightmare versions of everyday sex-in-the-city misadventures.\nSchrader examines Crane's decline with unblinking candor.\nYou can watch, giggle and get an adrenaline boost without feeling like you've completely lowered your entertainment standards.\nIt thankfully goes easy on the reel/real world dichotomy that (Jaglom) pursued with such enervating determination in Venice/Venice.\nThis rich, bittersweet Israeli documentary, about the life of song-and-dance-man Pasach'ke Burstein and his family, transcends ethnic lines.\nSensitively examines general issues of race and justice among the poor, and specifically raises serious questions about the death penalty and asks what good the execution of a mentally challenged woman could possibly do.\nCool gadgets and creatures keep this fresh. Not as good as the original, but what is...\nPresents a side of contemporary Chinese life that many outsiders will be surprised to know exists, and does so with an artistry that also smacks of revelation.\n(Jeff's) gorgeous, fluid compositions, underlined by Neil Finn and Edmund McWilliams's melancholy music, are charged with metaphor, but rarely easy, obvious or self-indulgent.\nEngages us in constant fits of laughter, until we find ourselves surprised at how much we care about the story, and end up walking out not only satisfied but also somewhat touched.\na bilingual charmer, just like the woman who inspired it\nBlisteringly rude, scarily funny, sorrowfully sympathetic to the damage it surveys, the film has in Kieran Culkin a pitch-perfect Holden.\nThe fourth ``Pokemon'' is a diverting--if predictable--adventure suitable for a matinee, with a message that cautions children about disturbing the world's delicate ecological balance.\nWhat one is left with, even after the most awful acts are committed, is an overwhelming sadness that feels as if it has made its way into your very bloodstream.\n(It) has the feel of a summer popcorn movie. Nothing too deep or substantial. Explosions, jokes, and sexual innuendoes abound.\nMiyazaki's nonstop images are so stunning, and his imagination so vivid, that the only possible complaint you could have about Spirited Away is that there is no rest period, no timeout.\n... a delightfully unpredictable, hilarious comedy with wonderful performances that tug at your heart in ways that utterly transcend gender labels.\nAssured, vital and well wrought, the film is, arguably, the most accomplished work to date from Hong Kong's versatile Stanley Kwan.\nDelia, Greta, and Paula rank as three of the most multilayered and sympathetic female characters of the year. As each of them searches for their place in the world, Miller digs into their very minds to find an unblinking, flawed humanity.\nA surprisingly sweet and gentle comedy.\nShanghai Ghetto, much stranger than any fiction, brings this unknown slice of history affectingly to life.\nIt's not particularly well made, but since I found myself howling more than cringing, I'd say the film works.\nBut this is Lohman's film. Her performance moves between heartbreak and rebellion as she continually tries to accommodate to fit in and gain the unconditional love she seeks.\nThough its story is only surface deep, the visuals and enveloping sounds of Blue Crush make this surprisingly decent flick worth a summertime look-see.\nRyosuke has created a wry, winning, if languidly paced, meditation on the meaning and value of family.\nSometimes charming, sometimes infuriating, this Argentinean 'dramedy' succeeds mainly on the shoulders of its actors.\nYou may feel compelled to watch the film twice or pick up a book on the subject.\nOften shocking but ultimately worthwhile exploration of motherhood and desperate mothers.\nA venturesome, beautifully realized psychological mood piece that reveals its first-time feature director's understanding of the expressive power of the camera.\nLike The Rugrats movies, The Wild Thornberrys Movie doesn't offer much more than the series, but its emphasis on caring for animals and respecting other cultures is particularly welcome.\nTaken outside the context of the current political climate (see: terrorists are more evil than ever!), The Sum of All Fears is simply a well-made and satisfying thriller.\nThe setting is so cool that it chills the characters, reducing our emotional stake in the outcome of ``Intacto's'' dangerous and seductively stylish game.\nA lovely and beautifully photographed romance.\nOne of the most splendid entertainments to emerge from the French film industry in years.\nIts vision of that awkward age when sex threatens to overwhelm everything else is acute enough to make everyone who has been there squirm with recognition.\nFor almost the first two-thirds of Martin Scorsese's 168-minute Gangs of New York, I was entranced.\nOpen-ended and composed of layer upon layer, Talk to Her is a cinephile's feast, an invitation to countless interpretations.\nOne of the most slyly exquisite anti-adult movies ever made.\nWhat makes Esther Kahn so demanding is that it progresses in such a low-key manner that it risks monotony. But it's worth the concentration.\nNeither the funniest film that Eddie Murphy nor Robert De Niro has ever made, Showtime is nevertheless efficiently amusing for a good while. Before it collapses into exactly the kind of buddy cop comedy it set out to lampoon, anyway.\nA clever script and skilled actors bring new energy to the familiar topic of office politics.\nThe determination of Pinochet's victims to seek justice, and their often heartbreaking testimony, spoken directly into director Patricio Guzman's camera, pack a powerful emotional wallop.\nDisney aficionados will notice distinct parallels between this story and the 1971 musical ``Bedknobs and Broomsticks,'' which also dealt with British children rediscovering the power of fantasy during wartime.\nIt's ... worth the extra effort to see an artist, still committed to growth in his ninth decade, change while remaining true to his principles with a film whose very subject is, quite pointedly, about the peril of such efforts.\nDark and unrepentant, this excursion into the epicenter of percolating mental instability is not easily dismissed or forgotten.\nIt's a rollicking adventure for you and all your mateys, regardless of their ages.\nBoasts a handful of virtuosic set pieces and offers a fair amount of trashy, kinky fun.\n...Myers has turned his franchise into the movie version of an adolescent dirty-joke book done up in post-Tarantino pop-culture riffs...\nIf you're down for a silly hack-and-slash flick, you can do no wrong with Jason X.\nThis is a very ambitious project for a fairly inexperienced filmmaker, but good actors, good poetry and good music help sustain it.\nThe modern master of the chase sequence returns with a chase to end all chases\nThe messy emotions raging throughout this three-hour effort are instantly recognizable, allowing the film to paradoxically feel familiar and foreign at the same time.\n...either you're willing to go with this claustrophobic concept or you're not.\nJust watch Bettany strut his stuff. You'll know a star when you see one.\nAustin Powers in Goldmember is a cinematic car wreck, a catastrophic collision of tastelessness and gall that nevertheless will leave fans clamoring for another ride.\nYou can fire a torpedo through some of Clancy's holes, and the scripters don't deserve any Oscars. But the nerve-raked acting, the crackle of lines, the impressive stagings of hardware, make for some robust and scary entertainment.\ncontrasting the original Ringu with the current Americanized adaptation is akin to comparing The Evil Dead with Evil Dead II\nA small gem of a movie that defies classification and is as thought-provoking as it is funny, scary and sad.\nFor a long time the film succeeds with its dark, delicate treatment of these characters and its unerring respect for them.\nIt's the kind of effectively creepy-scary thriller that has you fixating on a far corner of the screen at times because your nerves just can't take it any more.\nLate Marriage is an in-your-face family drama and black comedy that is filled with raw emotions conveying despair and love.\nAn ambitious and moving but bleak film.\nIt's too harsh to work as a piece of storytelling, but as an intellectual exercise -- an unpleasant debate that's been given the drive of a narrative and that's been acted out -- The Believer is nothing less than a provocative piece of work.\nIt's sweet. It's funny. It wears its heart on the sleeve of its gaudy Hawaiian shirt. And, thanks to the presence of 'the King,' it also rocks.\nIt's never laugh-out-loud funny, but it is frequently amusing.\nA bittersweet film, simple in form but rich with human events.\nThe unexplored story opportunities of ``Punch-Drunk Love'' may have worked against the maker's minimalist intent but it is an interesting exercise by talented writer/director Anderson.\n``Punch-Drunk Love'' is a little like a chocolate milk moustache...\n... digs beyond the usual portrayals of good kids and bad seeds to reveal a more ambivalent set of characters and motivations.\nThe beauty of the piece is that it counts heart as important as humor.\nPiercingly affecting...while clearly a manipulative film, emerges as powerful rather than cloying.\nVery amusing, not the usual route in a thriller, and the performances are odd and pixilated and sometimes both.\nWhile the frequent allusions to gurus and doshas will strike some Westerners as verging on mumbo-jumbo ... broad streaks of common sense emerge with unimpeachable clarity.\nThe cast is phenomenal, especially the women.\nA marvel of production design.\nThe byplay and bickering between the now spy-savvy siblings, Carmen (Vega) and Juni (Sabara) Cortez, anchor the film in a very real and amusing give-and-take.\nGood actors have a radar for juicy roles -- there's a plethora of characters in this picture, and not one of them is flat.\nThough in some ways similar to Catherine Breillat's Fat Girl, Rain is the far superior film.\nIs not so much a work of entertainment as it is a unique, well-crafted psychological study of grief.\nRemarkable for its excellent storytelling, its economical, compressed characterisations and for its profound humanity, it's an adventure story and history lesson all in one.\nColorful, energetic and sweetly whimsical...the rare sequel that's better than its predecessor.\nReno himself can take credit for most of the movie's success. He's one of the few 'cool' actors who never seems aware of his own coolness.\nSignificantly better than its 2002 children's-movie competition.\nUB equally spoofs and celebrates the more outre aspects of 'black culture' and the dorkier aspects of 'white culture,' even as it points out how inseparable the two are.\nA lot smarter than your average Bond.\n...bright, intelligent, and humanly funny film.\nPainful, horrifying and oppressively tragic, this film should not be missed.\nPart of the film's cheeky charm comes from its vintage schmaltz.\nSo unique and stubborn and charismatic that you want it to be better and more successful than it is.\nI won't argue with anyone who calls 'Slackers' dumb, insulting, or childish... but I laughed so much that I didn't mind.\nIt arrives with an impeccable pedigree, mongrel pep, and almost indecipherable plot complications.\nSo fiendishly cunning that even the most jaded cinema audiences will leave the auditorium feeling dizzy, confused, and totally disorientated. Not to mention absolutely refreshed.\nA vibrant, colorful, semimusical rendition.\nThe film sometimes flags...but there is enough secondary action to keep things moving along at a brisk, amusing pace.\nIt's a drawling, slobbering, lovable run-on sentence of a film, a Southern Gothic with the emotional arc of its raw blues soundtrack.\nNolan proves that he can cross swords with the best of them and helm a more traditionally plotted popcorn thriller while surrendering little of his intellectual rigor or creative composure.\nIt is different from others in its genre in that it is does not rely on dumb gags, anatomical humor, or character cliches; it primarily relies on character to tell its story.\nBoth a successful adaptation and an enjoyable film in its own right.\nAll the filmmakers are asking of us, is to believe in something that is improbable.\nIf the very concept makes you nervous ... you'll have an idea of the film's creepy, scary effectiveness.\nWorth a look by those on both sides of the issues, if only for the perspective it offers, one the public rarely sees.\nA mostly believable, refreshingly low-key and quietly inspirational little sports drama.\nMay be more genial than ingenious, but it gets the job done.\nA stylish cast and some clever scripting solutions help Chicago make the transition from stage to screen with considerable appeal intact.\nExhilarating, funny and fun.\nWhile not quite ``Shrek'' or ``Monsters, Inc.'', it's not too bad. It's worth taking the kids to.\nIn the end there is one word that best describes this film: honest.\nWriter-director David Jacobson and his star, Jeremy Renner, have made a remarkable film that explores the monster's psychology not in order to excuse him but rather to demonstrate that his pathology evolved from human impulses that grew hideously twisted.\nThe action sequences are fun and reminiscent of combat scenes from the Star Wars series.\nNorton is magnetic as Graham.\nSavvy director Robert J. Siegel and his co-writers keep the story subtle and us in suspense.\nIt pulls the rug out from under you, just when you're ready to hate one character, or really sympathize with another character, something happens to send you off in different direction.\nTwenty years after its first release, E.T. remains the most wondrous of all Hollywood fantasies -- and the apex of Steven Spielberg's misunderstood career.\nIt says a lot about a filmmaker when he can be wacky without clobbering the audience over the head and still maintain a sense of urgency and suspense.\nGives us a lot to chew on, but not all of it has been properly digested.\nIt's an exhilarating place to visit, this laboratory of laughter.\n``Simone'' is a fun and funky look into an artificial creation in a world that thrives on artificiality.\nA great companion piece to other Napoleon films.\nTo some eyes this will seem like a recycling of clichés, an assassin's greatest hits. To others, it will remind them that Hong Kong action cinema is still alive and kicking.\nAt the end of the movie, my 6-year-old nephew said, ``I guess I come from a broken family, and my uncles are all aliens, too.'' Congrats Disney on a job well done, I enjoyed it just as much!\nA remarkably alluring film set in the constrictive Eisenhower era about one suburban woman's yearning in the face of a loss that shatters her cheery and tranquil suburban life.\nBerling and Béart ... continue to impress, and Isabelle Huppert ... again shows uncanny skill in getting under the skin of her characters.\nUplifting, funny and wise.\nRemarkable for its intelligence and intensity.\nThe hypnotic imagery and fragmentary tale explore the connections between place and personal identity.\nBrosnan is more feral in this film than I've seen him before and Halle Berry does her best to keep up with him.\nA film that begins with the everyday lives of naval personnel in San Diego and ends with scenes so true and heartbreaking that tears welled up in my eyes both times I saw the film.\n``On Guard!'' won't be placed in the pantheon of the best of the swashbucklers but it is a whole lot of fun and you get to see the one of the world's best actors, Daniel Auteuil, have a whale of a good time.\nThe movie starts with a legend and ends with a story that is so far-fetched it would be impossible to believe if it weren't true. This is the stuff that Disney movies are made of.\nLike all great films about a life you never knew existed, it offers much to absorb and even more to think about after the final frame.\nThat the e-graveyard holds as many good ideas as bad is the cold comfort that Chin's film serves up with style and empathy.\nWhile we no longer possess the lack-of-attention span that we did at seventeen, we had no trouble sitting for Blade II.\nlike a poor man's You Can Count On Me\n...a solid, unassuming drama.\nA seriocomic debut of extravagant promise by Georgian-Israeli director Dover Kosashvili.\nThanks to Ice Cube, Benjamins feels an awful lot like Friday in Miami.\nThe real star of this movie is the score, as in the songs translate well to film, and it's really well directed.\nIt's rare to find a film to which the adjective 'gentle' applies, but the word perfectly describes Pauline & Paulette.\nMy Wife is an Actress has its moments in looking at the comic effects of jealousy. In the end, though, it is only mildly amusing when it could have been so much more.\nBoth Garcia and Jagger turn in perfectly executed and wonderfully sympathetic characters, who are alternately touching and funny.\nHumorous, artsy, and even cute, in an off-kilter, dark, vaguely disturbing way.\nThe more you think about the movie, the more you will probably like it.\n...a powerful sequel and one of the best films of the year.\nFor the most part, the film does hold up pretty well.\nTogether (Time Out and Human Resources) establish Mr. Cantet as France's foremost cinematic poet of the workplace.\nYou can take the grandkids or the grandparents and never worry about anyone being bored ... audience is a sea of constant smiles and frequent laughter.\nLike these Russo guys lookin' for their Mamet instead found their Sturges.\nThere has been a string of ensemble cast romances recently ... but Peter Mattei's Love in the Time of Money sets itself apart by forming a chain of relationships that come full circle to end on a positive (if tragic) note.\nBy applying definition to both sides of the man, the picture realizes a fullness that does not negate the subject.\nWho is the audience for Cletis Tout? Anybody who enjoys quirky, fun, popcorn movies with a touch of silliness and a little bloodshed.\n(Cuarón has) created a substantive movie out of several cliched movie structures: the road movie, the coming-of-age movie, and the teenage sex comedy.\nPuts to rest any thought that the German film industry cannot make a delightful comedy centering on food.\nWitty dialog between realistic characters showing honest emotions. It's touching and tender and proves that even in sorrow you can find humor. Like blended shades of lipstick, these components combine into one terrific story with lots of laughs.\nAsh Wednesday is not Edward Burns' best film, but it is a good and ambitious film. And it marks him as one of the most interesting writer/directors working today.\nAfter one gets the feeling that the typical Hollywood disregard for historical truth and realism is at work here, it's a matter of finding entertainment in the experiences of Zishe and the fiery presence of Hanussen.\nThe footage of the rappers at play and the prison interview with Suge Knight are just two of the elements that will grab you.\n... it's as comprehensible as any Dummies guide, something even non-techies can enjoy.\nDon't wait to see this terrific film with your kids -- if you don't have kids borrow some.\nMoretti ... is the rare common-man artist who's wise enough to recognize that there are few things in this world more complex -- and, as it turns out, more fragile -- than happiness.\nThe movie's captivating details are all in the performances, from Foreman's barking-mad Taylor to Thewlis's smoothly sinister Freddie and Bettany/McDowell's hard-eyed gangster.\nFeatures Fincher's characteristically startling visual style and an almost palpable sense of intensity.\nPrecocious smarter-than-thou wayward teen struggles to rebel against his oppressive, right-wing, propriety-obsessed family. Anyone else seen this before?\nMoore provides an invaluable service by sparking debate and encouraging thought. Better still, he does all of this, and more, while remaining one of the most savagely hilarious social critics this side of Jonathan Swift.\nAlternating between facetious comic parody and pulp melodrama, this smart-aleck movie ... tosses around some intriguing questions about the difference between human and android life.\nA cutesy romantic tale with a twist.\nThis is a gorgeous film - vivid with color, music and life. Delight your senses and crash this wedding!\nA brutally dry satire of Middle American numbness.\nMore sophisticated and literate than such pictures usually are...an amusing little catch.\nSmith examines the intimate, unguarded moments of folks who live in unusual homes -- which pop up in nearly every corner of the country.\nWith an admirably dark first script by Brent Hanley, Paxton, making his directorial feature debut, does strong, measured work.\nA compelling French psychological drama examining the encounter of an aloof father and his chilly son after 20 years apart.\n...even if you've never heard of Chaplin, you'll still be glued to the screen.\nYou have enough finely tuned acting to compensate for the movie's failings.\nAs the dominant Christine, Sylvie Testud is icily brilliant.\nAlthough tender and touching, the movie would have benefited from a little more dramatic tension and some more editing.\nThe story that emerges has elements of romance, tragedy and even silent-movie comedy.\n(``Safe Conduct'') is a long movie at 163 minutes but it fills the time with drama, romance, tragedy, bravery, political intrigue, partisans and sabotage. Viva le Resistance!\nIt offers a glimpse of the Solomonic decision facing Jewish parents in those turbulent times: to save their children and yet to lose them.\nThe film is delicately narrated by Martin Landau and directed with sensitivity and skill by Dana Janklowicz-Mann.\nMartyr gets royally screwed and comes back for more.\nA virtual roller-coaster ride of glamour and sleaze.\nan admirable, sometimes exceptional film\nIf you like an extreme action-packed film with a hint of humor, then Triple X marks the spot.\nIf you're the kind of parent who enjoys intentionally introducing your kids to films which will cause loads of irreparable damage that years and years of costly analysis could never fix, I have just one word for you -– Decasia\nMay not be a breakthrough in filmmaking, but it is unwavering and arresting.\nThe film's images give a backbone to the company and provide an emotional edge to its ultimate demise.\nA bodice-ripper for intellectuals.\nThe locations go from stark desert to gorgeous beaches. The story plays out slowly, but the characters are intriguing and realistic.\nCount on his movie to work at the back of your neck long after you leave the theater.\nNeil Burger here succeeded in ... making the mystery of four decades back the springboard for a more immediate mystery in the present.\nThe complex, politically charged tapestry of contemporary Chinese life this exciting new filmmaker has brought to the screen is like nothing we Westerners have seen before.\nA thriller made from a completist's checklist rather than with a cultist's passion.\nTry as you might to scrutinize the ethics of Kaufman's approach, somehow it all comes together to create a very compelling, sensitive, intelligent and almost cohesive piece of film entertainment.\nAs quiet, patient and tenacious as Mr. Lopez himself, who approaches his difficult, endless work with remarkable serenity and discipline.\nThough the film never veers from its comic course, its unintentional parallels might inadvertently evoke memories and emotions which are anything but humorous.\nEvokes the style and flash of the double-cross that made Mamet's ``House of Games'' and last fall's ``Heist'' so much fun.\nSo original in its base concept that you cannot help but get caught up.\nIt may be a no-brainer, but at least it's a funny no-brainer.\nA lot more dimensional and complex than its sunny disposition would lead you to believe.\nJeffs has created a breathtakingly assured and stylish work of spare dialogue and acute expressiveness.\nUnderachieves only in not taking the Shakespeare parallels quite far enough.\nThe most audacious, outrageous, sexually explicit, psychologically probing, pure libido film of the year has arrived from Portugal.\nThe creative animation work may not look as fully 'rendered' as Pixar's industry standard, but it uses lighting effects and innovative backgrounds to an equally impressive degree.\nArt-house to the core, Read My Lips is a genre-curling crime story that revives the free-wheeling noir spirit of old French cinema.\nGrant is certainly amusing, but the very hollowness of the character he plays keeps him at arms length\nConceptually brilliant...Plays like a living-room War Of The Worlds, gaining most of its unsettling force from the suggested and the unknown.\n... manages to deliver a fair bit of vampire fun.\nDrama of temptation, salvation and good intentions is a thoughtful examination of faith, love and power.\nThe strength of the film comes not from any cinematic razzle-dazzle but from its recovery of an historical episode that, in the simple telling, proves simultaneously harrowing and uplifting.\nThe performances are strong, though the subject matter demands acting that borders on hammy at times.\nA damn fine and a truly distinctive and a deeply pertinent film.\nStill rapturous after all these years, Cinema Paradiso stands as one of the great films about movie love.\nReggio and Glass put on an intoxicating show.\nMacDowell ... gives give a solid, anguished performance that eclipses nearly everything else she's ever done.\nThe thing about guys like Evans is this: You're never quite sure where self-promotion ends and the truth begins. But as you watch the movie, you're too interested to care.\nI liked a lot of the smaller scenes.\nThe film will appeal to Discovery Channel fans and will surely widen the perspective of those of us who see the continent through rose-colored glasses.\nAn eye-boggling blend of psychedelic devices, special effects and backgrounds, 'Spy Kids 2' is a visual treat for all audiences.\nStraightforward and old-fashioned in the best possible senses of both those words, Possession is a movie that puts itself squarely in the service of the lovers who inhabit it.\nIt may ... work as a jaunt down memory lane for teens and young adults who grew up on televised Scooby-Doo shows or reruns.\nOne of those movies that catches you up in something bigger than yourself, namely, an archetypal desire to enjoy good trash every now and then.\nThis harrowing journey into combat hell vividly captures the chaotic insanity and personal tragedies that are all too abundant when human hatred spews forth unchecked.\nFar more successful, if considerably less ambitious, than last year's Kubrick-meets-Spielberg exercise.\nElling builds gradually until you feel fully embraced by this gentle comedy.\nA fascinating examination of the joyous, turbulent self-discovery made by a proper, middle-aged woman.\nHere is a VH1 Behind the Music special that has something a little more special behind it: music that didn't sell many records but helped change a nation.\nBuy popcorn. Take nothing seriously and enjoy the ride.\nCarrying off a spot-on Scottish burr, Duvall (also a producer) peels layers from this character that may well not have existed on paper.\nThe acting, for the most part, is terrific, although the actors must struggle with the fact that they're playing characters who sometimes feel more like literary conceits than flesh-and-blood humans.\nSome Body will take you places you haven't been, and also places you have.\nVereté has a whip-smart sense of narrative bluffs.\nParts of the film feel a bit too much like an infomercial for Ram Dass's latest book aimed at the boomer demographic. But mostly it's a work that, with humor, warmth, and intelligence, captures a life interestingly lived.\nWere it not for a sentimental resolution that explains way more about Cal than does the movie or the character any good, Freundlich's World Traveler might have been one of the more daring and surprising American movies of the year.\n``Home Movie'' is the film equivalent of a lovingly rendered coffee table book.\nGraphic sex may be what's attracting audiences to Unfaithful, but gripping performances by Lane and Gere are what will keep them awake.\nWhen compared to the usual, more somber festival entries, Davis' highly personal brand of romantic comedy is a tart, smart breath of fresh air that stands out from the pack even if the picture itself is somewhat problematic.\nBoth damning and damned compelling.\nMuch has been written about those years when the psychedelic '60s grooved over into the gay '70s, but words don't really do the era justice. You have to see it.\nEven if it pushes its agenda too forcefully, this remains a film about something, one that attempts and often achieves a level of connection and concern.\nWhat lifts the film high above run-of-the-filth gangster flicks is its refusal to recognise any of the signposts, as if discovering a way through to the bitter end without a map.\nBoth an admirable reconstruction of terrible events, and a fitting memorial to the dead of that day, and of the thousands thereafter.\nA sly dissection of the inanities of the contemporary music business and a rather sad story of the difficulties of artistic collaboration.\nThe unique niche of self-critical, behind-the-scenes navel-gazing Kaufman has carved from Orleans' story and his own infinite insecurity is a work of outstanding originality.\nLovingly photographed in the manner of a Golden Book sprung to life, Stuart Little 2 manages sweetness largely without stickiness.\nConsistently clever and suspenseful.\nIt's like a ``Big Chill'' reunion of the Baader-Meinhof Gang, only these guys are more harmless pranksters than political activists.\nThe story gives ample opportunity for large-scale action and suspense, which director Shekhar Kapur supplies with tremendous skill.\nFresnadillo has something serious to say about the ways in which extravagant chance can distort our perspective and throw us off the path of good sense.\nThrows in enough clever and unexpected twists to make the formula feel fresh.\nWeighty and ponderous but every bit as filling as the treat of the title.\nA real audience-pleaser that will strike a chord with anyone who's ever waited in a doctor's office, emergency room, hospital bed or insurance company office.\nGenerates an enormous feeling of empathy for its characters.\nExposing the ways we fool ourselves is One Hour Photo's real strength.\nIt's up to you to decide whether to admire these people's dedication to their cause or be repelled by their dogmatism, manipulativeness and narrow, fearful view of American life.\nMostly, (Goldbacher) just lets her complicated characters be unruly, confusing and, through it all, human.\n...quite good at providing some good old fashioned spooks.\nAt its worst, the movie is pretty diverting; the pity is that it rarely achieves its best.\nScherfig's light-hearted profile of emotional desperation is achingly honest and delightfully cheeky.\nA journey spanning nearly three decades of bittersweet camaraderie and history, in which we feel that we truly know what makes Holly and Marina tick, and our hearts go out to them as both continue to negotiate their imperfect, love-hate relationship.\nThe wonderfully lush Morvern Callar is pure punk existentialism, and Ms. Ramsay and her co-writer, Liana Dognini, have dramatized the Alan Warner novel, which itself felt like an answer to Irvine Welsh's book Trainspotting.\nAs it turns out, you can go home again.\nYou've already seen City by the Sea under a variety of titles, but it's worth yet another visit.\nThis kind of hands-on storytelling is ultimately what makes Shanghai Ghetto move beyond a good, dry, reliable textbook and what allows it to rank with its worthy predecessors.\nMaking such a tragedy the backdrop to a love story risks trivializing it, though Chouraqui no doubt intended the film to affirm love's power to help people endure almost unimaginable horror.\nGrown-up quibbles are beside the point here. The little girls understand, and McCracken knows that's all that matters.\nA powerful, chilling, and affecting study of one man's dying fall.\nThis is a fascinating film because there is no clear-cut hero and no all-out villain.\nA dreadful day in Irish history is given passionate, if somewhat flawed, treatment.\n...a good film that must have baffled the folks in the marketing department.\n...is funny in the way that makes you ache with sadness (the way Chekhov is funny), profound without ever being self-important, warm without ever succumbing to sentimentality.\nDevotees of Star Trek II: The Wrath of Khan will feel a nagging sense of deja vu, and the grandeur of the best Next Generation episodes is lacking.\nA soul-stirring documentary about the Israeli/Palestinian conflict as revealed through the eyes of some children who remain curious about each other against all odds.\nWhat's so striking about Jolie's performance is that she never lets her character become a caricature -- not even with that radioactive hair.\nThe main story ... is compelling enough, but it's difficult to shrug off the annoyance of that chatty fish.\nThe performances are immaculate, with Roussillon providing comic relief.\nKinnear ... gives his best screen performance with an oddly winning portrayal of one of life's ultimate losers.\nHugh Grant, who has a good line in charm, has never been more charming than in About a Boy.\nThere's a lot of tooth in Roger Dodger. But what's nice is that there's a casual intelligence that permeates the script.\nReminiscent of Alfred Hitchcock's thrillers, most of the scary parts in 'Signs' occur while waiting for things to happen.\nOne of the best looking and stylish animated movies in quite a while ...\nIts use of the thriller form to examine the labyrinthine ways in which people's lives cross and change, buffeted by events seemingly out of their control, is intriguing, provocative stuff.\nDenver should not get the first and last look at one of the most triumphant performances of Vanessa Redgrave's career. It deserves to be seen everywhere.\nYou needn't be steeped in '50s sociology, pop culture or movie lore to appreciate the emotional depth of Haynes' work. Though Haynes' style apes films from the period ... its message is not rooted in that decade.\nWaiting for Godard can be fruitful: 'In Praise of Love' is the director's epitaph for himself.\nA gangster movie with the capacity to surprise.\nThe film has a laundry list of minor shortcomings, but the numerous scenes of gory mayhem are worth the price of admission...if ``gory mayhem'' is your idea of a good time.\nIf not a home run, then at least a solid base hit.\nGoldmember is funny enough to justify the embarrassment of bringing a barf bag to the moviehouse.\n...a fairly disposable yet still entertaining B picture.\nIt may not be particularly innovative, but the film's crisp, unaffected style and air of gentle longing make it unexpectedly rewarding.\nThe film truly does rescue (the Funk Brothers) from Motown's shadows. It's about time.\nDrawing on an irresistible, languid romanticism, Byler reveals the ways in which a sultry evening or a beer-fueled afternoon in the sun can inspire even the most retiring heart to venture forth.\nWorks because we're never sure if Ohlinger's on the level or merely a dying, delusional man trying to get into the history books before he croaks.\n(Scherfig) has made a movie that will leave you wondering about the characters' lives after the clever credits roll.\nA heady, biting, be-bop ride through nighttime Manhattan, a loquacious videologue of the modern male and the lengths to which he'll go to weave a protective cocoon around his own ego.\nSkin Of Man gets a few cheap shocks from its kids-in-peril theatrics, but it also taps into the primal fears of young people trying to cope with the mysterious and brutal nature of adults.\nThe Piano Teacher is not an easy film. It forces you to watch people doing unpleasant things to each other and themselves, and it maintains a cool distance from its material that is deliberately unsettling.\nAs refreshing as a drink from a woodland stream.\nWilliams absolutely nails Sy's queasy infatuation and overall strangeness.\nCan I admit XXX is as deep as a Petri dish and as well-characterized as a telephone book but still say it was a guilty pleasure?\nWhile it's nothing we haven't seen before from Murphy, I Spy is still fun and enjoyable and so aggressively silly that it's more than a worthwhile effort.\nBy the time it ends in a rush of sequins, flashbulbs, blaring brass and back-stabbing babes, it has said plenty about how show business has infiltrated every corner of society -- and not always for the better.\nAn intimate contemplation of two marvelously messy lives.\nRarely has skin looked as beautiful, desirable, even delectable, as it does in Trouble Every Day.\nThis is one of those rare docs that paints a grand picture of an era and makes the journey feel like a party.\nPoignant if familiar story of a young person suspended between two cultures.\nA metaphor for a modern-day urban China searching for its identity.\nFor all its brooding quality, Ash Wednesday is suspenseful and ultimately unpredictable, with a sterling ensemble cast.\nAn odd drama set in the world of lingerie models and bar dancers in the Midwest that held my interest precisely because it didn't try to.\nThe film feels uncomfortably real, its language and locations bearing the unmistakable stamp of authority.\nDespite its faults, Gangs excels in spectacle and pacing.\nEntertaining despite its one-joke premise with the thesis that women from Venus and men from Mars can indeed get together.\nA tightly directed, highly professional film that's old-fashioned in all the best possible ways.\nIt's dark but has wonderfully funny moments; you care about the characters; and the action and special effects are first-rate.\nIn visual fertility Treasure Planet rivals the top Japanese animations of recent vintage.\nEnormously enjoyable, high-adrenaline documentary.\nBuy is an accomplished actress, and this is a big, juicy role.\nIt works its magic with such exuberance and passion that the film's length becomes a part of its fun.\nBeautifully crafted and brutally honest, Promises offers an unexpected window into the complexities of the Middle East struggle and into the humanity of its people.\nAn old-fashioned but emotionally stirring adventure tale of the kind they rarely make anymore.\nCharlotte Sometimes is a gem. It's always enthralling.\nIn my opinion, Analyze That is not as funny or entertaining as Analyze This, but it is a respectable sequel.\nA remarkable film by Bernard Rose.\nZhuangzhuang creates delicate balance of style, text, and subtext that's so simple and precise that anything discordant would topple the balance, but against all odds, nothing does.\nA much more successful translation than its most famous previous film adaptation, writer-director Anthony Friedman's similarly updated 1970 British production.\nan original and highly cerebral examination of the psychopathic mind\nMichel Piccoli's moving performance is this films reason for being.\nA captivating and intimate study about dying and loving...\nThis is an elegantly balanced movie -- every member of the ensemble has something fascinating to do -- that doesn't reveal even a hint of artifice.\n(Grant) goes beyond his usual fluttering and stammering and captures the soul of a man in pain who gradually comes to recognize it and deal with it.\nA high-spirited buddy movie about the reunion of Berlin anarchists who face arrest 15 years after their crime.\nAbout the best thing you could say about Narc is that it's a rock-solid little genre picture. Whether you like it or not is basically a matter of taste.\nAn involving, inspirational drama that sometimes falls prey to its sob-story trappings.\nSome of the most inventive silliness you are likely to witness in a movie theatre for some time.\nCanadian filmmaker Gary Burns' inventive and mordantly humorous take on the soullessness of work in the city.\nA rollicking ride, with jaw-dropping action sequences, striking villains, a gorgeous color palette, astounding technology, stirring music and a boffo last hour that leads up to a strangely sinister happy ending.\nEveryone's insecure in Lovely and Amazing, a poignant and wryly amusing film about mothers, daughters and their relationships.\nThe closest thing to the experience of space travel\nConnoisseurs of Chinese film will be pleased to discover that Tian's meticulous talent has not withered during his enforced hiatus.\nIf you can push on through the slow spots, you'll be rewarded with some fine acting.\nAn unusually dry-eyed, even analytical approach to material that is generally played for maximum moisture.\nSymbolically, Warm Water Under a Red Bridge is a celebration of feminine energy, a tribute to the power of women to heal.\nSpy Kids 2 also happens to be that rarity among sequels: It actually improves upon the original hit movie.\nExceptionally well acted by Diane Lane and Richard Gere.\nLike a precious and finely cut diamond, magnificent to behold in its sparkling beauty yet in reality it's one tough rock.\nIn addition to scoring high for originality of plot -- putting together familiar themes of family, forgiveness and love in a new way -- Lilo & Stitch has a number of other assets to commend it to movie audiences both innocent and jaded.\nMiller has crafted an intriguing story of maternal instincts and misguided acts of affection.\nOne of the most exciting action films to come out of China in recent years.\nThis is a nervy, risky film, and Villeneuve has inspired Croze to give herself over completely to the tormented persona of Bibi.\nMY LITTLE EYE is the best little ``horror'' movie I've seen in years.\nTunney, brimming with coltish, neurotic energy, holds the screen like a true star.\nEven if the Naipaul original remains the real masterpiece, the movie possesses its own languorous charm.\n(The film) tackles the topic of relationships in such a straightforward, emotionally honest manner that by the end, it's impossible to ascertain whether the film is, at its core, deeply pessimistic or quietly hopeful.\nSometimes we feel as if the film careens from one colorful event to another without respite, but sometimes it must have seemed to Frida Kahlo as if her life did, too.\nThe strength of the film lies in its two central performances by Sven Wollter as the stricken composer and Viveka Seldahl as his desperate violinist wife.\nLike the series, the movie is funny, smart, visually inventive, and most of all, alive.\nIt was filled with shootings, beatings, and more cussing than you could shake a stick at.\nYou don't know whether to admire the film's stately nature and call it classicism or be exasperated by a noticeable lack of pace. Or both.\nSure, I hated myself in the morning. But then again, I hate myself most mornings. I still like Moonlight Mile, better judgment be damned.\nTime Out is as serious as a pink slip. And more than that, it's an observant, unfussily poetic meditation about identity and alienation.\nWill assuredly rank as one of the cleverest, most deceptively amusing comedies of the year.\nMaryam is a small film, but it offers large rewards.\nA highly watchable, giggly little story with a sweet edge to it.\nThe most consistently funny of the Austin Powers films.\nAna's journey is not a stereotypical one of self-discovery, as she's already comfortable enough in her own skin to be proud of her Rubenesque physique...\nCockettes has the glorious, gaudy benefit of much stock footage of Those Days, featuring all manner of drag queen, bearded lady and lactating hippie.\nThere's something poignant about an artist of 90-plus years taking the effort to share his impressions of life and loss and time and art with us.\nThe comedy makes social commentary more palatable.\nAn ideal love story for those intolerant of the more common saccharine genre.\nOne funny popcorn flick.\nThis New Zealand coming-of-age movie isn't really about anything. When it's this rich and luscious, who cares?\nTully is worth a look for its true-to-life characters, its sensitive acting, its unadorned view of rural life and the subtle direction of first-timer Hilary Birmingham.\nThis gorgeous epic is guaranteed to lift the spirits of the whole family.\nThe Wild Thornberrys Movie is pleasant enough and the message of our close ties with animals can certainly not be emphasized enough.\nWilliams creates a stunning, Taxi Driver-esque portrayal of a man teetering on the edge of sanity.\nIf you're in the right B-movie frame of mind, it may just scare the pants off you.\nA movie of riveting power and sadness.\nBoth a detective story and a romance spiced with the intrigue of academic skullduggery and politics.\nLudicrous, but director Carl Franklin adds enough flourishes and freak-outs to make it entertaining.\nDirector Roger Kumble offers just enough sweet and traditional romantic comedy to counter the crudity. And there's the inimitable Diaz, holding it all together.\nSpielberg's picture is smarter and subtler than (Total Recall and Blade Runner), although its plot may prove too convoluted for fun-seeking summer audiences.\nIt's got all the familiar Bruckheimer elements, and Schumacher does probably as good a job as anyone at bringing off the Hopkins/Rock collision of acting styles and onscreen personas.\nA grittily beautiful film that looks, sounds, and feels more like an extended, open-ended poem than a traditionally structured story.\nThe production values are of the highest and the performances attractive without being memorable.\nA well-rounded tribute to a man whose achievements -- and complexities -- reached far beyond the end zone.\nfinely crafted, finely written, exquisitely performed\nRamsay and Morton fill this character study with poetic force and buoyant feeling.\nThis submarine drama earns the right to be favorably compared to Das Boot.\nClaude Chabrol's camera has a way of gently swaying back and forth as it cradles its characters, veiling tension beneath otherwise tender movements.\nThere's a great deal of corny dialogue and preposterous moments. And yet, it still works.\nThe film was immensely enjoyable thanks to great performances by both Steve Buscemi and Rosario Dawson...\nLike many Western action films, this thriller is too loud and thoroughly overbearing, but its heartfelt concern about North Korea's recent past and South Korea's future adds a much needed moral weight.\nSpecial P.O.V. camera mounts on bikes, skateboards, and motorcycles provide an intense experience when splashed across the immense IMAX screen.\nMike White's deft combination of serious subject matter and dark, funny humor make ``The Good Girl'' a film worth watching.\nThis is a shrewd and effective film from a director who understands how to create and sustain a mood.\nMeant to reduce Blake's philosophy into a tragic coming-of-age saga punctuated by bursts of animator Todd McFarlane's superhero dystopia.\nAssayas' ambitious, sometimes beautiful adaptation of Jacques Chardonne's novel.\nAs ex-Marine Walter, who may or may not have shot Kennedy, actor Raymond J. Barry is perfectly creepy and believable.\nThose who don't entirely 'get' Godard's distinctive discourse will still come away with a sense of his reserved but existential poignancy.\nPete's screenplay manages to find that real natural, even-flowing tone that few movies are able to accomplish.\nLike Brosnan's performance, Evelyn comes from the heart.\nIt uses some of the figures from the real-life story to portray themselves in the film. The result is a powerful, naturally dramatic piece of low-budget filmmaking.\nIts spirit of iconoclastic abandon -- however canned -- makes for unexpectedly giddy viewing.\nThe early and middle passages are surprising in how much they engage and even touch us. This is not a classical dramatic animated feature, nor a hip, contemporary, in-jokey one. It's sort of in-between, and it works.\nThis quiet, introspective and entertaining independent is worth seeking.\nWhether our action-and-popcorn obsessed culture will embrace this engaging and literate psychodrama isn't much of a mystery, unfortunately.\nWhether or not Ram Dass proves as clear and reliable an authority on that as he was about inner consciousness, Fierce Grace reassures us that he will once again be an honest and loving one.\nSly, sophisticated and surprising.\nSpare but quietly effective retelling.\nDemonstrates a vivid imagination and an impressive style that result in some terrific setpieces.\nBy its modest, straight-ahead standards, Undisputed scores a direct hit.\nIts story about a young Chinese woman, Ah Na, who has come to New York City to replace past tragedy with the American Dream is one that any art-house moviegoer is likely to find compelling.\nFor those who like quirky, slightly strange French films, this is a must!\nThere are so few films about the plight of American Indians in modern America that Skins comes as a welcome, if downbeat, missive from a forgotten front.\n(Shyamalan) continues to cut a swathe through mainstream Hollywood, while retaining an integrity and refusing to compromise his vision.\nA whale of a good time for both children and parents seeking Christian-themed fun.\nWhat begins as a film in the tradition of The Graduate quickly switches into something more recyclable than significant.\nMuch smarter and more attentive than it first sets out to be.\nThe story is smart and entirely charming in intent and execution.\nA movie of technical skill and rare depth of intellect and feeling.\nRepresents a worthy departure from the culture clash comedies that have marked an emerging Indian American cinema.\nDoesn't do more than expand a TV show to movie length. However, it's pleasant enough and its ecological, pro-wildlife sentiments are certainly welcome.\nIf you're looking for an intelligent movie in which you can release your pent up anger, ENOUGH is just the ticket you need.\nA pointed, often tender, examination of the pros and cons of unconditional love and familial duties.\nAs well-acted and well-intentioned as All or Nothing is, however, the film comes perilously close to being too bleak, too pessimistic and too unflinching for its own good.\nA comedy-drama of nearly epic proportions rooted in a sincere performance by the title character undergoing midlife crisis.\nIt's about issues most adults have to face in marriage and I think that's what I liked about it -- the real issues tucked between the silly and crude storyline.\nElegantly produced and expressively performed, the six musical numbers crystallize key plot moments into minutely detailed wonders of dreamlike ecstasy.\nEnriched by a strong and unforced supporting cast.\nWriter/ director M. Night Shyamalan's ability to pull together easily accessible stories that resonate with profundity is undeniable.\nIf you can keep your eyes open amid all the blood and gore, you'll see Del Toro has brought unexpected gravity to Blade II.\nNot a strike against Yang's similarly themed Yi Yi, but I found What Time? to be more engaging on an emotional level, funnier, and on the whole less detached.\nA breathtaking adventure for all ages, Spirit tells its poignant and uplifting story in a stunning fusion of music and images.\nA charming and funny story of clashing cultures and a clashing mother/daughter relationship.\nNever lets go your emotions, taking them to surprising highs, sorrowful lows and hidden impulsive niches...gorgeous, passionate, and at times uncommonly moving.\n``...something appears to have been lost in the translation this time. The Importance of Being Earnest movie seems to be missing a great deal of the acerbic repartee of the play.''\n(Washington's) strong hand, keen eye, sweet spirit and good taste are reflected in almost every scene.\nShiner can certainly go the distance, but isn't world championship material\nThe film's desire to be liked sometimes undermines the possibility for an exploration of the thornier aspects of the nature/nurture argument in regards to homosexuality.\n...a quietly introspective portrait of the self-esteem of employment and the shame of losing a job...\nAffable if not timeless, Like Mike raises some worthwhile themes while delivering a wholesome fantasy for kids.\nA film of delicate interpersonal dances. Caine makes us watch as his character awakens to the notion that to be human is eventually to have to choose. It's a sight to behold.\nIt's an unusual, thoughtful bio-drama with a rich subject and some fantastic moments and scenes.\nSaved from being merely way-cool by a basic, credible compassion.\nThe increasingly diverse French director has created a film that one can honestly describe as looking, sounding and simply feeling like no other film in recent history.\nGangs, despite the gravity of its subject matter, is often as fun to watch as a good spaghetti western.\nPeter Jackson has done the nearly impossible. He has improved upon the first and taken it a step further, richer and deeper. What Jackson has done is proven that no amount of imagination, no creature, no fantasy story and no incredibly outlandish scenery\nThere has to be a few advantages to never growing old. Like being able to hit on a 15-year old when you're over 100.\nIce Age won't drop your jaw, but it will warm your heart, and I'm giving it a strong thumbs up.\nLike Kissing Jessica Stein, Amy's Orgasm has a key strength in its willingness to explore its principal characters with honesty, insight and humor.\nThe Lady and the Duke is Eric Rohmer's economical antidote to the bloated costume drama\nOne of the year's best films, featuring an Oscar-worthy performance by Julianne Moore.\nA small gem from Belgium.\nCombines a comically dismal social realism with a farcically bawdy fantasy of redemption and regeneration.\nA soap-opera quality twist in the last 20 minutes...almost puts the kibosh on what is otherwise a sumptuous work of B-movie imagination.\nThe most ingenious film comedy since Being John Malkovich.\nThere's something to be said for a studio-produced film that never bothers to hand viewers a suitcase full of easy answers.\nA movie where story is almost an afterthought amidst a swirl of colors and inexplicable events.\nManages to accomplish what few sequels can -- it equals the original and in some ways even betters it.\nTo call this one an eventual cult classic would be an understatement, and woe is the horror fan who opts to overlook this goofily endearing and well-lensed gorefest.\nJolie gives it that extra little something that makes it worth checking out at theaters, especially if you're in the mood for something more comfortable than challenging.\nAlthough melodramatic and predictable, this romantic comedy explores the friendship between five Filipino-Americans and their frantic efforts to find love.\nI have a new favorite musical -- and I'm not even a fan of the genre\nIt's unlikely we'll see a better thriller this year.\nThere is a real subject here, and it is handled with intelligence and care.\nJason Patric and Ray Liotta make for one splendidly cast pair.\nNoyce creates a film of near-hypnotic physical beauty even as he tells a story as horrifying as any in the heart-breakingly extensive annals of white-on-black racism.\nStarts slowly, but Adrien Brody – in the title role – helps make the film's conclusion powerful and satisfying.\nVery predictable but still entertaining\nNothing short of a masterpiece -- and a challenging one.\nPratfalls aside, Barbershop gets its greatest play from the timeless spectacle of people really talking to each other.\nThis amiable picture talks tough, but it's all bluster -- in the end it's as sweet as Greenfingers ...\nThis is one of Mr. Chabrol's subtlest works, but also one of his most uncanny.\nAn engrossing Iranian film about two itinerant teachers and some lost and desolate people they encounter in a place where war has savaged the lives and liberties of the poor and the dispossessed.\nEven though we know the outcome, the seesawing of the general's fate in the arguments of competing lawyers has the stomach-knotting suspense of a legal thriller, while the testimony of witnesses lends the film a resonant undertone of tragedy.\nWatching Spirited Away is like watching an Eastern imagination explode.\nAs relationships shift, director Robert J. Siegel allows the characters to inhabit their world without cleaving to a narrative arc.\nTwohy knows how to inflate the mundane into the scarifying, and gets full mileage out of the rolling of a stray barrel or the unexpected blast of a phonograph record.\nWhile the story does seem pretty unbelievable at times, it's awfully entertaining to watch.\nA smart and funny, albeit sometimes superficial, cautionary tale of a technology in search of an artist.\nExamines its explosive subject matter as nonjudgmentally as Wiseman's previous studies of inner-city high schools, hospitals, courts and welfare centers.\nI prefer Soderbergh's concentration on his two lovers over Tarkovsky's mostly male, mostly patriarchal debating societies.\n'If you are in the mood for an intelligent weepy, it can easily worm its way into your heart.'\nIn IMAX in short, it's just as wonderful on the big screen.\nDoes a good job of establishing a time and place, and of telling a fascinating character's story.\nI'm going to give it a marginal thumbs up. I liked it just enough.\nThose of you who don't believe in Santa Claus probably also think that sequels can never capture the magic of the original. Well, this movie proves you wrong on both counts.\nA deliciously nonsensical comedy about a city coming apart at its seams.\nThe rare Imax movie that you'll wish was longer than an hour.\nMy Wife's plotting is nothing special; it's the delivery that matters here.\nI've yet to find an actual Vietnam War combat movie actually produced by either the North or South Vietnamese, but at least now we've got something pretty damn close.\nA moving and not infrequently breathtaking film.\nIt's a sharp movie about otherwise dull subjects.\nIt's like Rocky and Bullwinkle on Speed, but that's neither completely enlightening, nor does it catch the intensity of the movie's strangeness.\nAs action-adventure, this space-based homage to Robert Louis Stevenson's Treasure Island fires on all plasma conduits.\nA melancholy, emotional film.\nWhile the filmmaking may be a bit disjointed, the subject matter is so fascinating that you won't care.\nIntensely romantic, thought-provoking and even an engaging mystery.\nGoofy, nutty, consistently funny. And educational!\nAnother in a long line of ultra-violent war movies, this one is not quite what it could have been as a film, but the story and theme make up for it.\nIt leaves little doubt that Kidman has become one of our best actors.\nThe film boasts dry humor and jarring shocks, plus moments of breathtaking mystery.\nBeautifully directed and convincingly acted.\nGambling and throwing a basketball game for money isn't a new plot -- in fact Toback himself used it in Black and White. But Toback's deranged immediacy makes it seem fresh again.\nIn the director's cut, the film is not only a love song to the movies but it also is more fully an example of the kind of lush, all-enveloping movie experience it rhapsodizes.\nBring on the sequel.\nGraced with the kind of social texture and realism that would be foreign in American teen comedies.\nIf we sometimes need comforting fantasies about mental illness, we also need movies like Tim McCann's Revolution No. 9.\nThe film occasionally tries the viewer's patience with slow pacing and a main character who sometimes defies sympathy, but it ultimately satisfies with its moving story.\nA big-budget/all-star movie as unblinkingly pure as The Hours is a distinct rarity, and an event.\n... certainly an entertaining ride, despite many talky, slow scenes. But something seems to be missing. A sense of real magic, perhaps.\nThat Haynes can both maintain and dismantle the facades that his genre and his character construct is a wonderous accomplishment of veracity and narrative grace.\nThe movie worked for me right up to the final scene, and then it caved in.\n...one of the most entertaining monster movies in ages...\nPlunges you into a reality that is, more often then not, difficult and sad, and then, without sentimentalizing it or denying its brutality, transforms that reality into a lyrical and celebratory vision.\nWould you laugh if a tuba-playing dwarf rolled down a hill in a trash can? Do you chuckle at the thought of an ancient librarian whacking a certain part of a man's body? If you answered yes, by all means enjoy The New Guy.\nThe film is ... determined to treat its characters, weak and strong, as fallible human beings, not caricatures, and to carefully delineate the cost of the inevitable conflicts between human urges and an institution concerned with self-preservation.\nMissteps take what was otherwise a fascinating, riveting story and send it down the path of the mundane.\nAn indispensable peek at the art and the agony of making people laugh.\nSteadfastly uncinematic but powerfully dramatic.\nThe engagingly primitive animated special effects contribute to a mood that's sustained through the surprisingly somber conclusion.\nMade-Up lampoons the moviemaking process itself, while shining a not particularly flattering spotlight on America's skin-deep notions of pulchritude.\nEvokes the 19th century with a subtlety that is an object lesson in period filmmaking.\nYa-Yas everywhere will forgive the flaws and love the film.\nThe film's best trick is the way that it treats conspiracy as a kind of political Blair Witch, a monstrous murk that haunts us precisely because it can never be seen.\nThe artwork is spectacular and unlike most animaton from Japan, the characters move with grace and panache.\nThe picture's fascinating byways are littered with trenchant satirical jabs at the peculiar egocentricities of the acting breed.\nThe modern remake of Dumas's story is long on narrative and (too) short on action.\nFred Schepisi's film is paced at a speed that is slow to those of us in middle age and deathly slow to any teen. With a cast of A-list Brit actors, it is worth searching out.\nSuffers from its timid parsing of the barn-side target of sons trying to breach gaps in their relationships with their fathers.\nNonchalantly freaky and uncommonly pleasurable, Warm Water may well be the year's best and most unpredictable comedy.\nIt's like an old Warner Bros. costumer jived with sex -- this could be the movie Errol Flynn always wanted to make, though Bette Davis, cast as Joan, would have killed him.\nIt's a great American adventure and a wonderful film to bring to IMAX.\nSatisfyingly scarifying, fresh and old-fashioned at the same time.\nOh, James! Your 20th outing shows off a lot of stamina and vitality, and get this, Madonna's cameo doesn't suck!\nThat death is merely a transition is a common tenet in the world's religions. This deeply spiritual film taps into the meaning and consolation in afterlife communications.\nThere is something that is so meditative and lyrical about Babak Payami's boldly quirky Iranian drama Secret Ballot...a charming and evoking little ditty that manages to show the gentle and humane side of Middle Eastern world politics\nA huge box-office hit in Korea, Shiri is a must for genre fans.\nI'm not a fan of the phrase 'life affirming' because it usually means 'schmaltzy,' but Real Women Have Curves truly is life affirming.\nThe symbols float like butterflies and the spinning styx sting like bees. I wanted more.\nIf it's unnerving suspense you're after -- you'll find it with Ring, an indisputably spooky film; with a screenplay to die for.\nThe art direction and costumes are gorgeous and finely detailed, and Kurys' direction is clever and insightful.\nRed Dragon makes one appreciate Silence of the Lambs.\nProves a servicable World War II drama that can't totally hide its contrivances, but it at least calls attention to a problem Hollywood too long has ignored.\nLeigh isn't breaking new ground, but he knows how a daily grind can kill love.\nWhile Broomfield's film doesn't capture the effect of these tragic deaths on hip-hop culture, it succeeds as a powerful look at a failure of our justice system.\n...strips Bible stores of the potential for sanctimoniousness, making them meaningful for both kids and church-wary adults.\nLaugh-out-loud lines, adorably ditsy but heartfelt performances, and sparkling, bittersweet dialogue that cuts to the chase of the modern girl's dilemma.\nTends to pile too many ``serious issues'' on its plate at times, yet remains fairly light, always entertaining, and smartly written.\nA solidly entertaining little film.\nIt's an entertaining movie, and the effects, boosted to the size of a downtown hotel, will all but take you to outer space.\nSayles has a knack for casting, often resurrecting performers who rarely work in movies now ... and drawing flavorful performances from bland actors.\nDespite an overwrought ending, the film works as well as it does because of the performances.\nA passionately inquisitive film determined to uncover the truth and hopefully inspire action.\nThough Nijinsky's words grow increasingly disturbed, the film maintains a beguiling serenity and poise that make it accessible for a non-narrative feature.\nA muddle splashed with bloody beauty as vivid as any Scorsese has ever given us.\nFrom both a great and a terrible story, Mr. Nelson has made a film that is an undeniably worthy and devastating experience.\nSpider-Man is about growing strange hairs, getting a more mature body, and finding it necessary to hide new secretions from the parental units.\nThe first shocking thing about Sorority Boys is that it's actually watchable. Even more baffling is that it's funny.\nHighlighted by a gritty style and an excellent cast, it's better than one might expect when you look at the list of movies starring Ice-T in a major role.\nNeither quite a comedy nor a romance, more of an impish divertissement of themes that interest Attal and Gainsbourg -- they live together -- the film has a lot of charm.\nFirst and foremost...the reason to go see ``Blue Crush'' is the phenomenal, water-born cinematography by David Hennings.\nA visionary marvel, but it's lacking a depth in storytelling usually found in anime like this.\nThe problems and characters it reveals are universal and involving, and the film itself -- as well its delightful cast -- is so breezy, pretty and gifted, it really won my heart.\nIn his latest effort, Storytelling, Solondz has finally made a movie that isn't just offensive -- it also happens to be good.\nHow I Killed My Father would be a rarity in Hollywood. It's an actor's showcase that accomplishes its primary goal without the use of special effects, but rather by emphasizing the characters -- including the supporting ones.\nI just saw this movie... well, it's probably not accurate to call it a movie.\nWhat's most memorable about Circuit is that it's shot on digital video, whose tiny camera enables Shafer to navigate spaces both large ... and small ... with considerable aplomb.\nScherfig, the writer-director, has made a film so unabashedly hopeful that it actually makes the heart soar. Yes, soar.\nA delicious and delicately funny look at the residents of a Copenhagen neighborhood coping with the befuddling complications life tosses at them.\n``What really happened?'' is a question for philosophers, not filmmakers; all the filmmakers need to do is engage an audience.\nSoderbergh, like Kubrick before him, may not touch the planet's skin, but understands the workings of its spirit.\nMuch credit must be given to the water-camera operating team of Don King, Sonny Miller, and Michael Stewart. Their work is fantastic.\nCrush is so warm and fuzzy you might be able to forgive its mean-spirited second half.\nFranco is an excellent choice for the walled-off but combustible hustler, but he does not give the transcendent performance SONNY needs to overcome gaps in character development and story logic.\nTsai Ming-liang's witty, wistful new film, What Time Is It There?, is a temporal inquiry that shoulders its philosophical burden lightly.\nThe Pianist lacks the quick emotional connections of Steven Spielberg's Schindler's List. But Mr. Polanski creates images even more haunting than those in Mr. Spielberg's 1993 classic.\nSteers, in his feature film debut, has created a brilliant motion picture.\nA brilliant, absurd collection of vignettes that, in their own idiosyncratic way, sum up the strange horror of life in the new millennium.\nAs warm as it is wise, deftly setting off uproarious humor with an underlying seriousness that sneaks up on the viewer, providing an experience that is richer than anticipated.\nThe film may not hit as hard as some of the better drug-related pictures, but it still manages to get a few punches in.\nOld-fashioned but thoroughly satisfying entertainment.\nAn energizing, intoxicating documentary charting the rise of hip-hop culture in general and the art of scratching (or turntablism) in particular.\nA fun family movie that's suitable for all ages -- a movie that will make you laugh, cry and realize, 'It's never too late to believe in your dreams.'\nIf you open yourself up to Mr. Reggio's theory of this imagery as the movie's set ... it can impart an almost visceral sense of dislocation and change.\nI had a dream that a smart comedy would come along to rescue me from a summer of teen-driven, toilet-humor codswallop, and its name was Earnest.\nEven though the film doesn't manage to hit all of its marks, it's still entertaining to watch the target practice.\nWhere This was lazy but enjoyable, a formula comedy redeemed by its stars, That is even lazier and far less enjoyable.\nThe 3-D vistas from orbit, with the space station suspended like a huge set of wind chimes over the great blue globe, are stanzas of breathtaking, awe-inspiring visual poetry.\nThe attraction between these two marginal characters is complex from the start -- and, refreshingly, stays that way.\nFans of the modern day Hong Kong action film finally have the worthy successor to A Better Tomorrow and The Killer which they have been patiently waiting for.\nEven when he's not at his most critically insightful, Godard can still be smarter than any 50 other filmmakers still at work.\nWhat sets this romantic comedy apart from most Hollywood romantic comedies is its low-key way of tackling what seems like done-to-death material.\nHas enough wit, energy and geniality to please not only the fanatical adherents on either side, but also people who know nothing about the subject and think they're not interested.\nThis seductive tease of a thriller gets the job done. It's a scorcher.\nBittersweet comedy/drama full of life, hand gestures, and some really adorable Italian guys.\nWorks as pretty contagious fun.\nThe best didacticism is one carried by a strong sense of humanism, and Bertrand Tavernier's oft-brilliant Safe Conduct (``Laissez-passer'') wears its heart on its sleeve.\nA realistically terrifying movie that puts another notch in the belt of the long list of renegade-cop tales.\nA charming, banter-filled comedy... one of those airy cinematic bon bons whose aims -- and by extension, accomplishments -- seem deceptively slight on the surface.\nA film with almost as many delights for adults as there are for children and dog lovers.\nSerious movie-goers embarking upon this journey will find that The Road to Perdition leads to a satisfying destination.\nHeartwarming and gently comic even as the film breaks your heart.\nCaruso sometimes descends into sub-Tarantino cuteness ... but for the most part he makes sure The Salton Sea works the way a good noir should, keeping it tight and nasty.\nA ``black Austin Powers?'' I prefer to think of it as ``Pootie Tang with a budget.'' Sa da TAY!\nOddly, the film isn't nearly as downbeat as it sounds, but strikes a tone that's alternately melancholic, hopeful and strangely funny.\nI would be shocked if there was actually one correct interpretation, but that shouldn't make the movie or the discussion any less enjoyable.\nChouraqui brings documentary-like credibility to the horrors of the killing field and the barbarism of 'ethnic cleansing.'\nThe best thing I can say about this film is that I can't wait to see what the director does next.\nSmarter than its commercials make it seem.\nOne of the funnier movies in town.\nCampanella's competent direction and his excellent cast overcome the obstacles of a predictable outcome and a screenplay that glosses over Rafael's evolution.\nBy turns very dark and very funny.\nSteven Soderbergh doesn't remake Andrei Tarkovsky's Solaris so much as distill it.\nFor more than two decades Mr. Nachtwey has traveled to places in the world devastated by war, famine and poverty and documented the cruelty and suffering he has found with an devastating, eloquent clarity.\nSimultaneously heartbreakingly beautiful and exquisitely sad.\nThough overall an overwhelmingly positive portrayal, the film doesn't ignore the more problematic aspects of Brown's life.\nThe philosophical musings of the dialogue jar against the tawdry soap opera antics of the film's action in a way that is surprisingly enjoyable.\nNot too fancy, not too filling, not too fluffy, but definitely tasty and sweet.\nDirector Lee has a true cinematic knack, but it's also nice to see a movie with its heart so thoroughly, unabashedly on its sleeve.\nAs Allen's execution date closes in, the documentary gives an especially poignant portrait of her friendship with the never flagging legal investigator David Presson.\nJones has tackled a meaty subject and drawn engaging characters while peppering the pages with memorable zingers.\nA vivid, spicy footnote to history, and a movie that grips and holds you in rapt attention from start to finish.\nIf S&M seems like a strange route to true love, maybe it is, but it's to this film's (and its makers') credit that we believe that that's exactly what these two people need to find each other -- and themselves.\nIf the film's vision of sport as a secular religion is a bit cloying, its through-line of family and community is heartening in the same way that each season marks a new start.\nOne of the best of a growing strain of daring films ... that argue that any sexual relationship that doesn't hurt anyone and works for its participants is a relationship that is worthy of our respect.\n...an adorably whimsical comedy that deserves more than a passing twinkle.\nAn engrossing story that combines psychological drama, sociological reflection, and high-octane thriller.\nIt's easy to be cynical about documentaries in which underdogs beat the odds and the human spirit triumphs, but Westbrook's foundation and Dalrymple's film earn their uplift.\nMel Gibson fights the good fight in Vietnam in director Randall Wallace's flag-waving war flick with a core of decency.\nThere's real visual charge to the filmmaking, and a strong erotic spark to the most crucial lip-reading sequence.\nA brutal and funny work. Nicole Holofcenter, the insightful writer/director responsible for this illuminating comedy doesn't wrap the proceedings up neatly but the ideas tie together beautifully.\nThe film is a blunt indictment, part of a perhaps surreal campaign to bring Kissinger to trial for crimes against humanity.\nOne of the most important and exhilarating forms of animated filmmaking since old Walt doodled Steamboat Willie.\nMove over Bond; this girl deserves a sequel.\nThe kind of trifle that date nights were invented for.\n. It's a testament to the film's considerable charm that it succeeds in entertaining, despite playing out like a feature-length sitcom replete with stereotypical familial quandaries. There's a sheer unbridled delight in the way the story unfurls...\nTells (the story) with such atmospheric ballast that shrugging off the plot's persnickety problems is simply a matter of (being) in a shrugging mood.\nThe film is hard to dismiss -- moody, thoughtful, and lit by flashes of mordant humor.\nIf The Man from Elysian Fields is doomed by its smallness, it is also elevated by it--the kind of movie that you enjoy more because you're one of the lucky few who sought it out.\nWhat emerges is an unsettling picture of childhood innocence combined with indoctrinated prejudice. Promises is a compelling piece that demonstrates just how well children can be trained to live out and carry on their parents' anguish.\nMeticulously uncovers a trail of outrageous force and craven concealment.\nHey, Happy! is many things -- stoner midnight flick, sci-fi deconstruction, gay fantasia -- but above all it's a love story as sanguine as its title.\nYou won't look at religious fanatics -- or backyard sheds -- the same way again.\nAt its best ... Festival in Cannes bubbles with the excitement of the festival in Cannes.\nThere is a general air of exuberance in All About The Benjamins that's hard to resist.\nA lovably old-school Hollywood confection.\nI'm happy to have seen it -- not as an alternate version, but as the ultimate exercise in viewing deleted scenes.\nBy turns gripping, amusing, tender and heart-wrenching, Laissez-passer has all the earmarks of French cinema at its best.\nThe warnings to resist temptation in this film ... are blunt and challenging and offer no easy rewards for staying clean.\nWonder of wonders -- a teen movie with a humanistic message.\nA quirky comedy set in Newfoundland that cleverly captures the dry wit that's so prevalent on The Rock.\nPeppered with witty dialogue and inventive moments.\nI'd rather watch a rerun of The Powerpuff Girls\nWith the prospect of films like Kangaroo Jack about to burst across America's winter movie screens it's a pleasure to have a film like The Hours as an alternative.\nThe wonderful combination of the sweetness and the extraordinary technical accomplishments of the first film are maintained, but its overall impact falls a little flat with a storyline that never quite delivers the original magic.\nLike its title character, this Nicholas Nickleby finds itself in reduced circumstances -- and, also like its hero, it remains brightly optimistic, coming through in the end.\nAs a thoughtful and unflinching examination of an alternative lifestyle, Sex with Strangers is a success.\nunpretentious, charming, quirky, original\nSpinning a web of dazzling entertainment may be overstating it, but ``Spider-Man'' certainly delivers the goods.\nOther than the slightly flawed (and fairly unbelievable) finale, everything else is top shelf.\nThis fascinating look at Israel in ferment feels as immediate as the latest news footage from Gaza and, because of its heightened, well-shaped dramas, twice as powerful.\nManages to delight without much of a story.\nThere's no denying that Burns is a filmmaker with a bright future ahead of him.\nI have a confession to make: I didn't particularly like E.T. the first time I saw it as a young boy. That is because - damn it! - I also wanted a little alien as a friend!\nFairy-tale formula, serves as a paper skeleton for some very good acting, dialogue, comedy, direction and especially charm.\nA genuinely funny ensemble comedy that also asks its audience -- in a heartwarming, nonjudgmental kind of way -- to consider what we value in our daily lives.\nThough the aboriginal aspect lends the ending an extraordinary poignancy, and the story itself could be played out in any working class community in the nation.\nAn energetic and engaging film that never pretends to be something it isn't.\nA violent initiation rite for the audience, as much as it is for Angelique, the (opening) dance guarantees Karmen's enthronement among the cinema's memorable women.\nAn animation landmark as monumental as Disney's 1937 breakthrough Snow White and the Seven Dwarfs.\nAn entertaining, if ultimately minor, thriller.\nSex With Strangers is fascinating ...\nA subtle, poignant picture of goodness that is flawed, compromised and sad.\nA wry, affectionate delight.\nThe acting in Pauline And Paulette is good all round, but what really sets the film apart is Debrauwer's refusal to push the easy emotional buttons.\nOne of those joyous films that leaps over national boundaries and celebrates universal human nature.\nA penetrating glimpse into the tissue-thin ego of the stand-up comic.\nKids should have a stirring time at this beautifully drawn movie. And adults will at least have a dream image of the West to savor whenever the film's lamer instincts are in the saddle.\nPaid in Full is remarkably engaging despite being noticeably derivative of Goodfellas and at least a half dozen other trouble-in-the-ghetto flicks.\nLess cinematically powerful than quietly and deeply moving, which is powerful in itself.\nwaydowntown manages to nail the spirit-crushing ennui of denuded urban living without giving in to it.\nEach of these stories has the potential for Touched by an Angel simplicity and sappiness, but Thirteen Conversations About One Thing, for all its generosity and optimism, never resorts to easy feel-good sentiments.\nIf Borstal Boy isn't especially realistic, it is an engaging nostalgia piece.\nOften demented in a good way, but it is an uneven film for the most part.\nThe script's snazzy dialogue establishes a realistic atmosphere that involves us in the unfolding crisis, but the lazy plotting ensures that little of our emotional investment pays off.\nMaggie Smith as the Ya-Ya member with the O2-tank will absolutely crack you up with her crass, then gasp for gas, verbal deportment.\nThis is a movie that refreshes the mind and spirit along with the body, so original is its content, look, and style.\nAlthough I didn't hate this one, it's not very good either. It can be safely recommended as a video/DVD babysitter.\nAnother Best of the Year selection.\nThe film has the high-buffed gloss and high-octane jolts you expect of De Palma, but what makes it transporting is that it's also one of the smartest, most pleasurable expressions of pure movie love to come from an American director in years.\nIt's a very valuable film...\nMax pokes, provokes, takes expressionistic license and hits a nerve...as far as art is concerned, it's mission accomplished.\nLiterary purists may not be pleased, but as far as mainstream matinee-style entertainment goes, it does a bang-up job of pleasing the crowds.\nHere Polanski looks back on those places he saw at childhood, and captures them by freeing them from artefact, and by showing them heartbreakingly drably.\nThe story itself it mostly told through on-camera interviews with several survivors, whose riveting memories are rendered with such clarity that it's as if it all happened only yesterday.\nA compelling story of musical passion against governmental odds.\nWith ``Ichi the Killer'', Takashi Miike, Japan's wildest filmmaker gives us a crime fighter carrying more emotional baggage than Batman...\nYou never know where Changing Lanes is going to take you but it's a heck of a ride. Samuel L. Jackson is one of the best actors there is.\n(Breheny's) lensing of the New Zealand and Cook Island locations captures both the beauty of the land and the people.\nAn almost unbearably morbid love story.\nThe Wild Thornberrys Movie has all the sibling rivalry and general family chaos to which anyone can relate.\nA forceful drama of an alienated executive who re-invents himself.\nSpielberg's realization of a near-future America is masterful. This makes Minority Report necessary viewing for sci-fi fans, as the film has some of the best special effects ever.\nThe gags that fly at such a furiously funny pace that the only rip off that we were aware of was the one we felt when the movie ended so damned soon.\nThe best film of the year 2002.\nAn enthralling, entertaining feature.\nStripped almost entirely of such tools as nudity, profanity and violence, LaBute does manage to make a few points about modern man and his problematic quest for human connection.\nA remarkable movie with an unsatisfying ending, which is just the point.\nAll in all, Brown Sugar is a satisfying well-made romantic comedy that's both charming and well acted. It will guarantee to have you leaving the theater with a smile on your face.\nSmith finds amusing juxtapositions that justify his exercise.\nWorking from a surprisingly sensitive script co-written by Gianni Romoli ... Ozpetek avoids most of the pitfalls you'd expect in such a potentially sudsy set-up.\nAn older cad instructs a younger lad in Zen and the art of getting laid in this prickly indie comedy of manners and misanthropy.\n``Austin Powers in Goldmember'' has the right stuff for silly summer entertainment and has enough laughs to sustain interest to the end.\nOne of (Jaglom's) better efforts -- a wry and sometime bitter movie about love.\nSchaeffer isn't in this film, which may be why it works as well as it does.\nA fresh, entertaining comedy that looks at relationships minus traditional gender roles.\nAlthough Estela Bravo's documentary is cloyingly hagiographic in its portrait of Cuban leader Fidel Castro, it's still a guilty pleasure to watch.\nSurprisingly, the film is a hilarious adventure and I shamelessly enjoyed it.\nThe Way Home is an ode to unconditional love and compassion garnered from years of seeing it all, a condition only the old are privy to, and...often misconstrued as weakness.\nBrutally honest and told with humor and poignancy, which makes its message resonate.\nIf you can read the subtitles (the opera is sung in Italian) and you like 'Masterpiece Theatre' type costumes, you'll enjoy this movie.\nA pretty funny movie, with most of the humor coming, as before, from the incongruous but chemically perfect teaming of Crystal and De Niro.\nGangster No. 1 is solid, satisfying fare for adults.\nThis Chicago has hugely imaginative and successful casting to its great credit, as well as one terrific score and attitude to spare.\nHas enough gun battles and throwaway humor to cover up the yawning chasm where the plot should be.\nWith its jerky hand-held camera and documentary feel, Bloody Sunday is a sobering recount of a very bleak day in Derry.\nYou will likely prefer to keep on watching.\nInsomnia loses points when it surrenders to a formulaic bang-bang, shoot-em-up scene at the conclusion. But the performances of Pacino, Williams, and Swank keep the viewer wide-awake all the way through.\nWhat might have been readily dismissed as the tiresome rant of an aging filmmaker still thumbing his nose at convention takes a surprising, subtle turn at the midway point.\nAt a time when commercialism has squeezed the life out of whatever idealism American moviemaking ever had, Godfrey Reggio's career shines like a lonely beacon.\nAn Inuit masterpiece that will give you goosebumps as its uncanny tale of love, communal discord, and justice unfolds.\nThis is popcorn movie fun with equal doses of action, cheese, ham and cheek (as well as a serious debt to The Road Warrior), but it feels like unrealized potential\nIt's a testament to De Niro and director Michael Caton-Jones that by movie's end, we accept the characters and the film, flaws and all.\nPerformances are potent, and the women's stories are ably intercut and involving.\nAn enormously entertaining movie, like nothing we've ever seen before, and yet completely familiar.\nLan Yu is a genuine love story, full of traditional layers of awakening and ripening and separation and recovery.\nYour children will be occupied for 72 minutes.\nPull(s) off the rare trick of recreating not only the look of a certain era, but also the feel.\nTwohy's a good yarn-spinner, and ultimately the story compels.\n'Tobey Maguire is a poster boy for the geek generation.'\n... a sweetly affecting story about four sisters who are coping, in one way or another, with life's endgame.\nPassion, melodrama, sorrow, laugther, and tears cascade over the screen effortlessly...\nRoad to Perdition does display greatness, and it's worth seeing. But it also comes with the laziness and arrogance of a thing that already knows it's won.\nA marvelous performance by Allison Lohman as an identity-seeking foster child.\nArliss Howard's ambitious, moving, and adventurous directorial debut, Big Bad Love, meets so many of the challenges it poses for itself that one can forgive the film its flaws.\nCritics need a good laugh, too, and this too-extreme-for-TV rendition of the notorious MTV show delivers the outrageous, sickening, sidesplitting goods in steaming, visceral heaps.\nWhat a dumb, fun, curiously adolescent movie this is.\nThe charms of the lead performances allow us to forget most of the film's problems.\nA vivid, sometimes surreal, glimpse into the mysteries of human behavior.\nA tour de force of modern cinema.\nPeralta captures, in luminous interviews and amazingly evocative film from three decades ago, the essence of the Dogtown experience.\nThe lively appeal of The Last Kiss lies in the ease with which it integrates thoughtfulness and pasta-fagioli comedy.\nWithout resorting to camp or parody, Haynes (like Sirk, but differently) has transformed the rhetoric of Hollywood melodrama into something provocative, rich, and strange.\nThe performances are an absolute joy.\nA quasi-documentary by French filmmaker Karim Dridi that celebrates the hardy spirit of Cuban music.\nGrant carries the day with impeccable comic timing, raffish charm and piercing intellect.\nA sensitive and astute first feature by Anne-Sophie Birot.\nBoth exuberantly romantic and serenely melancholy, What Time Is It There? may prove to be (Tsai's) masterpiece.\nMazel tov to a film about a family's joyous life acting on the Yiddish stage.\nStanding in the Shadows of Motown is the best kind of documentary, one that makes a depleted yesterday feel very much like a brand-new tomorrow.\nIt's nice to see Piscopo again after all these years, and Chaykin and Headly are priceless.\nProvides a porthole into that noble, trembling incoherence that defines us all.\nSimplistic, silly and tedious.\nIt's so laddish and juvenile, only teenage boys could possibly find it funny.\nExploitative and largely devoid of the depth or sophistication that would make watching such a graphic treatment of the crimes bearable.\n(Garbus) discards the potential for pathological study, exhuming instead, the skewed melodrama of the circumstantial situation.\nA visually flashy but narratively opaque and emotionally vapid exercise in style and mystification.\nThe story is also as unoriginal as they come, already having been recycled more times than I'd care to count.\nAbout the only thing to give the movie points for is bravado -- to take an entirely stale concept and push it through the audience's meat grinder one more time.\nNot so much farcical as sour.\nUnfortunately the story and the actors are served with a hack script.\nAll the more disquieting for its relatively gore-free allusions to the serial murders, but it falls down in its attempts to humanize its subject.\nA sentimental mess that never rings true.\nWhile the performances are often engaging, this loose collection of largely improvised numbers would probably have worked better as a one-hour TV documentary.\nInteresting, but not compelling.\nOn a cutting room floor somewhere lies...footage that might have made No Such Thing a trenchant, ironic cultural satire instead of a frustrating misfire.\nWhile the ensemble player who gained notice in Guy Ritchie's Lock, Stock and Two Smoking Barrels and Snatch has the bod, he's unlikely to become a household name on the basis of his first starring vehicle.\nThere is a difference between movies with the courage to go over the top and movies that don't care about being stupid\nNothing here seems as funny as it did in Analyze This, not even Joe Viterelli as De Niro's right-hand goombah.\nSuch master screenwriting comes courtesy of John Pogue, the Yale grad who previously gave us ``The Skulls'' and last year's ``Rollerball.'' Enough said, except: Film overboard!\nHere, common sense flies out the window, along with the hail of bullets, none of which ever seem to hit Sascha.\nThis 100-minute movie only has about 25 minutes of decent material.\nThe execution is so pedestrian that the most positive comment we can make is that Rob Schneider actually turns in a pretty convincing performance as a prissy teenage girl.\nOn its own, it's not very interesting. As a remake, it's a pale imitation.\nIt shows that some studios firmly believe that people have lost the ability to think and will forgive any shoddy product as long as there's a little girl-on-girl action.\nA farce of a parody of a comedy of a premise, it isn't a comparison to reality so much as it is a commentary about our knowledge of films.\nAs exciting as all this exoticism might sound to the typical Pax viewer, the rest of us will be lulled into a coma.\nThe party scenes deliver some tawdry kicks. The rest of the film ... is dudsville.\nOur culture is headed down the toilet with the ferocity of a frozen burrito after an all-night tequila bender -- and I know this because I've seen 'jackass: the movie.'\nThe criticism never rises above easy, cynical potshots at morally bankrupt characters...\nThe movie's something-borrowed construction feels less the product of loving, well integrated homage and more like a mere excuse for the wan, thinly sketched story. Killing time, that's all that's going on here.\nSomewhere in the middle, the film compels, as Demme experiments he harvests a few movie moment gems, but the field of roughage dominates.\nThe action clichés just pile up.\nPayami tries to raise some serious issues about Iran's electoral process, but the result is a film that's about as subtle as a party political broadcast.\nThe only surprise is that heavyweights Joel Silver and Robert Zemeckis agreed to produce this; I assume the director has pictures of them cavorting in ladies' underwear.\nAnother useless recycling of a brutal mid-'70s American sports movie.\nPlease, someone, stop Eric Schaeffer before he makes another film.\nMost of the problems with the film don't derive from the screenplay, but rather the mediocre performances by most of the actors involved\n...if you're just in the mood for a fun -- but bad -- movie, you might want to catch Freaks as a matinee.\nCurling may be a unique sport but Men with Brooms is distinctly ordinary.\nThough the opera itself takes place mostly indoors, Jacquot seems unsure of how to evoke any sort of naturalism on the set.\nThere's no getting around the fact that this is Revenge Of The Nerds Revisited -- again.\nThe effort is sincere and the results are honest, but the film is so bleak that it's hardly watchable.\nAnalyze That regurgitates and waters down many of the previous film's successes, with a few new swings thrown in.\nWith flashbulb editing as cover for the absence of narrative continuity, Undisputed is nearly incoherent, an excuse to get to the closing bout ... by which time it's impossible to care who wins.\nStinks from start to finish, like a wet burlap sack of gloom.\nTo the civilized mind, a movie like Ballistic: Ecks Vs. Sever is more of an ordeal than an amusement.\nEqulibrium could pass for a thirteen-year-old's book report on the totalitarian themes of 1984 and Farenheit 451.\nThe lack of naturalness makes everything seem self-consciously poetic and forced...It's a pity that (Nelson's) achievement doesn't match his ambition.\nWhen Seagal appeared in an orange prison jumpsuit, I wanted to stand up in the theater and shout, 'Hey, Kool-Aid!'\nAn easy watch, except for the annoying demeanour of its lead character.\nImagine the CleanFlicks version of 'Love Story,' with Ali MacGraw's profanities replaced by romance-novel platitudes.\nPC stability notwithstanding, the film suffers from a simplistic narrative and a pat, fairy-tale conclusion.\nForget the misleading title, what's with the unexplained baboon cameo?\nAn odd, haphazard, and inconsequential romantic comedy.\nThough her fans will assuredly have their funny bones tickled, others will find their humor-seeking dollars best spent elsewhere.\nPascale Bailly's rom-com provides Amélie's Audrey Tautou with another fabuleux destin -- i.e., a banal spiritual quest.\nA static and sugary little half-hour, after-school special about interfaith understanding, stretched out to 90 minutes.\nWatching the chemistry between Freeman and Judd, however, almost makes this movie worth seeing. Almost.\n... a pretentious and ultimately empty examination of a sick and evil woman.\nThe Country Bears has no scenes that will upset or frighten young viewers. Unfortunately, there is almost nothing in this flat effort that will amuse or entertain them, either.\nThe cumulative effect of watching this 65-minute trifle is rather like being trapped while some weird relative trots out the video he took of the family vacation to Stonehenge. Before long, you're desperate for the evening to end.\nThe characters are never more than sketches ... which leaves any true emotional connection or identification frustratingly out of reach.\nMattei's underdeveloped effort here is nothing but a convenient conveyor belt of brooding personalities that parade about as if they were coming back from Stock Character camp -- a drowsy drama infatuated by its own pretentious self-examination.\nOnly in its final surprising shots does Rabbit-Proof Fence find the authority it's looking for.\nIsn't as sharp as the original...Despite some visual virtues, 'Blade II' just doesn't cut it.\n...plays like a badly edited, 91-minute trailer (and) the director can't seem to get a coherent rhythm going. In fact, it doesn't even seem like she tried.\nMaybe LeBlanc thought, ``Hey, the movie about the baseball-playing monkey was worse.''\nWhat you expect is just what you get...assuming the bar of expectations hasn't been raised above sixth-grade height.\nBarry Sonnenfeld owes Frank the Pug big time\nThe biggest problem with Roger Avary's uproar against the MPAA is that, even in all its director's cut glory, he's made a film that's barely shocking, barely interesting and most of all, barely anything.\nSo riddled with unanswered questions that it requires gargantuan leaps of faith just to watch it plod along.\nI approached the usher and said that if she had to sit through it again, she should ask for a raise.\nIf Sinise's character had a brain his ordeal would be over in five minutes but instead the plot goes out of its way to introduce obstacles for him to stumble over.\nToo slow for a younger crowd, too shallow for an older one.\nThere's a reason the studio didn't offer an advance screening. ``The Adventures of Pluto Nash'' is a big time stinker.\nA punch line without a premise, a joke built entirely from musty memories of half-dimensional characters.\nTakes one character we don't like and another we don't believe, and puts them into a battle of wills that is impossible to care about and isn't very funny.\nThe things this movie tries to get the audience to buy just won't fly with most intelligent viewers.\nEven if the enticing prospect of a lot of nubile young actors in a film about campus depravity didn't fade amid the deliberate, tiresome ugliness, it would be rendered tedious by Avary's failure to construct a story with even a trace of dramatic interest.\nSitting through the last reel (spoiler alert!) is significantly less charming than listening to a four-year-old with a taste for exaggeration recount his Halloween trip to the Haunted House.\nConfuses its message with an ultimate desire to please, and contorting itself into an idea of expectation is the last thing any of these three actresses, nor their characters, deserve.\nDeadly dull, pointless meditation on losers in a gone-to-seed hotel.\nWith this new Rollerball, sense and sensibility have been overrun by what can only be characterized as robotic sentiment.\nOne can only assume that the jury who bestowed star Hoffman's brother Gordy with the Waldo Salt Screenwriting award at 2002's Sundance Festival were honoring an attempt to do something different over actually pulling it off\nA movie more to be prescribed than recommended -- as visually bland as a dentist's waiting room, complete with soothing Muzak and a cushion of predictable narrative rhythms.\nSex ironically has little to do with the story, which becomes something about how lame it is to try and evade your responsibilities and that you should never, ever, leave a large dog alone with a toddler. But never mind all that; the boobs are fantasti\nThe script covers huge, heavy topics in a bland, surfacey way that doesn't offer any insight into why, for instance, good things happen to bad people.\nA portrait of alienation so perfect, it will certainly succeed in alienating most viewers.\nThe code talkers deserved better than a hollow tribute.\nSkip the film and buy the Philip Glass soundtrack CD.\nFeels like a cold old man going through the motions.\nDignified CEO's meet at a rustic retreat and pee against a tree. Can you bear the laughter?\nDull and mechanical, kinda like a very goofy museum exhibit\nThere's no point of view, no contemporary interpretation of Joan's prefeminist plight, so we're left thinking the only reason to make the movie is because present standards allow for plenty of nudity.\nBeware the quirky Brit-com. They can and will turn on a dime from oddly humorous to tediously sentimental.\nHas its moments -- and almost as many subplots.\nThe gags, and the script, are a mixed bag.\nCompletely awful Iranian drama...as much fun as a grouchy ayatollah in a cold mosque.\nNarratively, Trouble Every Day is a plodding mess.\nThere's no point in extracting the bare bones of Byatt's plot for purposes of bland Hollywood romance.\nDirectors John Musker and Ron Clements, the team behind The Little Mermaid, have produced sparkling retina candy, but they aren't able to muster a lot of emotional resonance in the cold vacuum of space.\nAdam Sandler's heart may be in the right place, but he needs to pull his head out of his butt\nThere's no doubting that this is a highly ambitious and personal project for Egoyan, but it's also one that, next to his best work, feels clumsy and convoluted.\nDespite engaging offbeat touches, Knockaround Guys rarely seems interested in kicking around a raison d'etre that's as fresh-faced as its young-guns cast.\nIt's all pretty tame. The most offensive thing about the movie is that Hollywood expects people to pay to see it.\nThe movie is a mess from start to finish.\nThe trouble with making this queen a thoroughly modern maiden is that it also makes her appear foolish and shallow rather than, as was more likely, a victim of mental illness.\nI'm not saying that Ice Age doesn't have some fairly pretty pictures, but there's not enough substance in the story to actually give them life.\nIn the telling of a story largely untold, Bui chooses to produce something that is ultimately suspiciously familiar.\nThe plot is nothing but boilerplate clichés from start to finish, and the script assumes that not only would subtlety be lost on the target audience, but that it's also too stupid to realize that they've already seen this exact same movie a hundred times\nTerminally brain dead production.\nSome episodes work, some don't.\nBeautifully filmed and well acted... but admittedly problematic in its narrative specifics.\nJ. Lo will earn her share of the holiday box office pie, although this movie makes one thing perfectly clear: She's a pretty woman, but she's no working girl.\nRymer doesn't trust laughs -- and doesn't conjure proper respect for followers of the whole dead-undead genre, who deserve more from a vampire pic than a few shrieky special effects.\nNot only are the film's Sopranos gags incredibly dated and unfunny, they also demonstrate how desperate the makers of this 'we're -doing-it-for -the-cash' sequel were.\nWow. I have not been this disappointed by a movie in a long time.\nOff the Hook is overlong and not well-acted, but credit writer-producer-director Adam Watstein with finishing it at all.\nIt's a drag how Nettelbeck sees working women -- or at least this working woman -- for whom she shows little understanding.\nWatching Harris ham it up while physically and emotionally disintegrating over the course of the movie has a certain poignancy in light of his recent death, but Boyd's film offers little else of consequence.\nIt's also curious to note that this film, like the similarly ill-timed Antitrust, is easily as bad at a fraction the budget.\nWill probably be one of those movies barely registering a blip on the radar screen of 2002.\nThe problem is not that it's all derivative, because plenty of funny movies recycle old tropes. The problem is that Van Wilder does little that is actually funny with the material.\nThere's nothing interesting in Unfaithful whatsoever.\nNone of this is half as moving as the filmmakers seem to think.\nA processed comedy chop suey.\nAs spent screen series go, Star Trek: Nemesis is even more suggestive of a 65th class reunion mixer where only eight surviving members show up -- and there's nothing to drink.\nFails as a dystopian movie, as a retooling of Fahrenheit 451, and even as a rip-off of The Matrix.\nFull of the kind of obnoxious chitchat that only self-aware neurotics engage in.\nAn erotic thriller that's neither too erotic nor very thrilling, either.\nThe movie, like Bartleby, is something of a stiff -- an extra-dry office comedy that seems twice as long as its 83 minutes.\nWith its parade of almost perpetually wasted characters ... Margarita feels like a hazy high that takes too long to shake.\nIf you value your time and money, find an escape clause and avoid seeing this trite, predictable rehash.\nThe director and her capable cast appear to be caught in a heady whirl of New Age-inspired good intentions, but the spell they cast isn't the least bit mesmerizing.\nEverything is pegged into the groove of a New York dating comedy with 'issues' to simplify.\nA dramatic comedy as pleasantly dishonest and pat as any Hollywood fluff.\nThe cameo-packed, M:I-2-spoofing title sequence is the funniest 5 minutes to date in this spy comedy franchise...Then Mike Myers shows up and ruins everything.\nIt comes off as so silly that you wouldn't be surprised if BA, Murdock and rest of the A-Team were seen giving chase in a black and red van.\nThe 50-something lovebirds are too immature and unappealing to care about.\nSo genial is the conceit, this is one of those rare pictures that you root for throughout, dearly hoping that the rich promise of the script will be realized on the screen. It never is, not fully.\nEven in the summertime, the most restless young audience deserves the dignity of an action hero motivated by something more than franchise possibilities.\nWhat with all the blanket statements and dime-store ruminations on vanity, the worries of the rich and sudden wisdom, the film becomes a sermon for most of its running time.\nAs gamely as the movie tries to make sense of its title character, there remains a huge gap between the film's creepy, clean-cut Dahmer (Jeremy Renner) and fiendish acts that no amount of earnest textbook psychologizing can bridge.\nPlodding, peevish and gimmicky.\nThe Four Feathers is definitely horse feathers, but if you go in knowing that, you might have fun in this cinematic sandbox.\nOozes condescension from every pore.\n``Solaris'' is a shapeless inconsequential move relying on the viewer to do most of the work.\nThe direction, by George Hickenlooper, has no snap to it, no wiseacre crackle or hard-bitten cynicism.\nThough this saga would be terrific to read about, it is dicey screen material that only a genius should touch.\nIt has plenty of laughs. It just doesn't have much else... especially in a moral sense.\nAn awful lot like one of (Spears') music videos in content -- except that it goes on for at least 90 more minutes and, worse, that you have to pay if you want to see it.\nConfusion is one of my least favourite emotions, especially when I have to put up with 146 minutes of it.\n(H)ad I suffered and bled on the hard ground of Ia Drang, I'd want something a bit more complex than We Were Soldiers to be remembered by.\nOccasionally loud and offensive, but more often, it simply lulls you into a gentle waking coma.\nit may play well as a double feature with mainstream foreign mush like My Big Fat Greek Wedding\nBy the time you reach the finale, you're likely wondering why you've been watching all this strutting and posturing.\nJournalistically dubious, inept and often lethally dull.\nPutting the primitive murderer inside a high-tech space station unleashes a Pandora's Box of special effects that run the gamut from cheesy to cheesier to cheesiest.\nAt its best, it's Black Hawk Down with more heart. At its worst, it's Rambo- meets-John Ford.\nExactly what you'd expect from a guy named Kaos.\nThis movie ... doesn't deserve the energy it takes to describe how bad it is.\nWith or without ballast tanks, K-19 sinks to a Harrison Ford low.\nDirector Oliver Parker labors so hard to whip life into The Importance of Being Earnest that he probably pulled a muscle or two.\nYou might be shocked to discover that Seinfeld's real life is boring.\nIt's not nearly as fresh or enjoyable as its predecessor, but there are enough high points to keep this from being a complete waste of time.\nWalsh can't quite negotiate the many inconsistencies in Janice's behavior or compensate for them by sheer force of charm.\nThis 10th film in the series looks and feels tired.\nIt leers, offering next to little insight into its intriguing subject.\nI found myself growing more and more frustrated and detached as Vincent became more and more abhorrent.\nOne of the oddest and most inexplicable sequels in movie history.\nThere's nothing to gain from watching They. It isn't scary. It hates its characters. It finds no way to entertain or inspire its viewers.\nFear permeates the whole of Stortelling, Todd Solondz' oftentimes funny, yet ultimately cowardly autocritique.\nThe skirmishes for power waged among victims and predators settle into an undistinguished rhythm of artificial suspense.\n... Ice Age treads predictably along familiar territory, making it a passable family film that won't win many fans over the age of 12.\nThough the film is well-intentioned, one could rent the original and get the same love story and parable.\nJust too silly and sophomoric to ensnare its target audience.\nThe video work is so grainy and rough, so dependent on being 'naturalistic' rather than carefully lit and set up, that it's exhausting to watch.\nA cleverly crafted but ultimately hollow mockumentary.\nIt gets bogged down by hit-and-miss topical humour before getting to the truly good stuff.\nAn achingly enthralling premise, the film is hindered by uneven dialogue and plot lapses.\nIt's Tommy's job to clean the peep booths surrounding her, and after viewing this one, you'll feel like mopping up, too.\nRifkin no doubt fancies himself something of a Hubert Selby Jr., but there isn't an ounce of honest poetry in his entire script; it's simply crude and unrelentingly exploitative.\nSuch a bad movie that its luckiest viewers will be seated next to one of those ignorant pinheads who talk throughout the show.\nIf you go into the theater expecting a scary, action-packed chiller, you might soon be looking for a sign. An EXIT sign, that is.\nHolds limited appeal to those who like explosions, sadism and seeing people beat each other to a pulp.\nThe dialogue is very choppy and monosyllabic despite the fact that it is being dubbed.\nA feature-length, R-rated, road-trip version of Mama's Family.\nWhat you end up getting is the Vertical Limit of surfing movies - memorable stunts with lots of downtime in between.\nStealing Harvard doesn't care about cleverness, wit or any other kind of intelligent humor.\nBigelow handles the nuclear crisis sequences evenly but milks drama when she should be building suspense, and drags out too many scenes toward the end that should move quickly.\nThere's undeniable enjoyment to be had from films crammed with movie references, but the fun wears thin -- then out -- when there's nothing else happening.\nImagine Kevin Smith, the blasphemous bad boy of suburban Jersey, if he were stripped of most of his budget and all of his sense of humor. The result might look like Vulgar.\nSuffers from a lack of clarity and audacity that a subject as monstrous and pathetic as Dahmer demands.\nWhat soured me on The Santa Clause 2 was that Santa bumps up against 21st century reality so hard, it's icky.\nIt's an 88-minute highlight reel that's 86 minutes too long.\nThe film favors the scientific over the spectacular (visually speaking).\nSuch an incomprehensible mess that it feels less like bad cinema than like being stuck in a dark pit having a nightmare about bad cinema.\nWith the exception of McCoist, the players don't have a clue on the park. The acting isn't much better.\nThe whole affair is as predictable as can be.\nA not-so-Divine Secrets of the Ya-Ya Sisterhood with a hefty helping of Re-Fried Green Tomatoes.\nThis cloying, voices-from-the-other-side story is hell.\nA suffocating rape-payback horror show that hinges on the subgenre's most enabling victim ... and an ebullient affection for industrial-model meat freezers.\nStar Trek was kind of terrific once, but now it is a copy of a copy of a copy.\n(N)o matter how much good will the actors generate, Showtime eventually folds under its own thinness.\nEvery potential twist is telegraphed well in advance, every performance respectably muted; the movie itself seems to have been made under the influence of Rohypnol.\nPuts on airs of a Hal Hartley wannabe film -- without the vital comic ingredient of the hilarious writer-director himself.\nVer Wiel's desperate attempt at wit is lost, leaving the character of Critical Jim two-dimensional and pointless.\nDespite a performance of sustained intelligence from Stanford and another of subtle humour from Bebe Neuwirth, as an older woman who seduces Oscar, the film founders on its lack of empathy for the social milieu - rich New York intelligentsia - and its off\nAlthough Disney follows its standard formula in this animated adventure, it feels more forced than usual.\nGaghan ... has thrown every suspenseful cliché in the book at this nonsensical story.\nA sham construct based on theory, sleight-of-hand, and ill-wrought hypothesis.\n(P)artnering Murphy with Robert De Niro for the TV-cops comedy Showtime would seem to be surefire casting. The catch is that they're stuck with a script that prevents them from firing on all cylinders.\n'You'll laugh for not quite and hour and a half, but come out feeling strangely unsatisfied. You'll feel like you ate a Reeses without the peanut butter...'\nGooding offers a desperately ingratiating performance.\nParker should be commended for taking a fresh approach to familiar material, but his determination to remain true to the original text leads him to adopt a somewhat mannered tone ... that ultimately dulls the human tragedy at the story's core.\nThe director has injected self-consciousness into the proceedings at every turn. The results are far more alienating than involving.\nBogdanich is unashamedly pro-Serbian and makes little attempt to give voice to the other side.\nA lack of thesis makes Maryam, in the end, play out with the intellectual and emotional impact of an after-school special.\nWithout Shakespeare's eloquent language, the update is dreary and sluggish.\nIf H.G. Wells had a time machine and could take a look at his kin's reworked version, what would he say? 'It looks good, Sonny, but you missed the point.'\nDuring The Tuxedo's 90 minutes of screen time, there isn't one true 'Chan moment'.\nBisset delivers a game performance, but she is unable to save the movie.\nWatching Austin Powers in Goldmember is like binging on cotton candy. It's sweet and fluffy at the time, but it may leave you feeling a little sticky and unsatisfied.\nThe most anti-human big studio picture since 3000 Miles to Graceland.\nThe film can depress you about life itself.\nI'm sure the filmmakers found this a remarkable and novel concept, but anybody who has ever seen an independent film can report that it is instead a cheap cliché.\nThe acting is fine but the script is about as interesting as a recording of conversations at the Wal-Mart checkout line.\nIts weighty themes are too grave for youngsters, but the story is too steeped in fairy tales and other childish things to appeal much to teenagers.\nThe plot plummets into a comedy graveyard before Janice comes racing to the rescue in the final reel.\nSometimes there are very, very good reasons for certain movies to be sealed in a jar and left on a remote shelf indefinitely.\nAt 90 minutes this movie is short, but it feels much longer.\nHere's my advice, Kev. Start reading your scripts before signing that dotted line.\nAn alternately raucous and sappy ethnic sitcom...you'd be wise to send your regrets.\nAn ugly-duckling tale so hideously and clumsily told it feels accidental.\nUnfortunately, it's also not very good. Especially compared with the television series that inspired the movie.\nIt wraps up a classic mother/daughter struggle in recycled paper with a shiny new bow and while the audience can tell it's not all new, at least it looks pretty.\nGlazed with a tawdry B-movie scum.\nThis is the kind of movie during which you want to bang your head on the seat in front of you, at its cluelessness, at its idiocy, at its utterly misplaced earnestness.\nIt winds up moving in many directions as it searches (vainly, I think) for something fresh to say.\nAll in all, Road to Perdition is more in love with strangeness than excellence.\nA big fat pain.\nA mimetic approximation of better films like Contempt and 8 1/2.\nUnintelligible, poorly acted, brain-slappingly bad, Harvard Man is ludicrous enough that it could become a cult classic.\nWatching The Powerpuff Girls Movie, my mind kept returning to one anecdote for comparison: the cartoon in Japan that gave people seizures.\nAn inelegant combination of two unrelated shorts that falls far short of the director's previous work in terms of both thematic content and narrative strength.\nTo build a feel-good fantasy around a vain dictator-madman is off-putting, to say the least, not to mention inappropriate and wildly undeserved.\nWith the cheesiest monsters this side of a horror spoof, which They isn't, it is more likely to induce sleep than fright.\nMild, meandering teen flick.\nThough its atmosphere is intriguing ... the drama is finally too predictable to leave much of an impression.\nThough this rude and crude film does deliver a few gut-busting laughs, its digs at modern society are all things we've seen before.\nAlthough it tries to be much more, it's really just another Major League.\nAstonishing isn't the word -- neither is incompetent, incoherent or just plain crap. Indeed, none of these words really gets at the very special type of badness that is Deuces Wild.\nOne thing is for sure: This movie does not tell you a whole lot about Lily Chou-Chou.\nWith a tone as variable as the cinematography, Schaeffer's film never settles into the light-footed enchantment the material needs, and the characters' quirks and foibles never jell into charm.\nTo better understand why this didn't connect with me would require another viewing, and I won't be sitting through this one again...that in itself is commentary enough.\nCuba Gooding Jr. valiantly mugs his way through Snow Dogs, but even his boisterous energy fails to spark this leaden comedy.\nDiane Lane's sophisticated performance can't rescue Adrian Lyne's Unfaithful from its sleazy moralizing.\nNot at all clear what it's trying to say and even if it were – I doubt it would be all that interesting.\n(Swimfan) falls victim to sloppy plotting, an insultingly unbelievable final act and a villainess who is too crazy to be interesting.\nThis remake of Lina Wertmuller's 1975 eroti-comedy might just be the biggest husband-and-wife disaster since John and Bo Derek made the ridiculous Bolero.\nSilly, loud and goofy.\nWhy spend $9 on the same stuff you can get for a buck or so in that greasy little vidgame pit in the theater lobby?\nThe French director has turned out nearly 21/2 hours of unfocused, excruciatingly tedious cinema that, half an hour in, starts making water torture seem appealing.\nThe basic premise is intriguing but quickly becomes distasteful and downright creepy.\nThe Pool drowned me in boredom.\nIt's like an all-star salute to Disney's cheesy commercialism.\nIt's hard to imagine any recent film, independent or otherwise, that makes as much of a mess as this one.\nSome of the computer animation is handsome, and various amusing sidekicks add much-needed levity to the otherwise bleak tale, but overall the film never rises above mediocrity.\nThere's an excellent 90-minute film here; unfortunately, it runs for 170.\nAs saccharine movies go, this is likely to cause massive cardiac arrest if taken in large doses.\nDie Another Day is only intermittently entertaining but it's hard not to be a sucker for its charms, or perhaps it's just impossible not to feel nostalgia for movies you grew up with.\nAs is often the case with ambitious, eager first-time filmmakers, Mr. Murray, a prolific director of music videos, stuffs his debut with more plot than it can comfortably hold.\nThe mystery of Enigma is how a rich historical subject, combined with so much first-rate talent ... could have yielded such a flat, plodding picture.\nIt throws quirky characters, odd situations, and off-kilter dialogue at us, all as if to say, ``Look at this! This is an interesting movie!'' But the film itself is ultimately quite unengaging.\nThe inherent limitations of using a video game as the source material movie are once again made all too clear in this schlocky horror/action hybrid.\nIt's not only dull because we've seen (Eddie) Murphy do the genial-rogue shtick to death, but because the plot is equally hackneyed.\nAvary's film never quite emerges from the shadow of Ellis' book.\nA poorly scripted, preachy fable that forgets about unfolding a coherent, believable story in its zeal to spread propaganda.\nWhile it is interesting to witness the conflict from the Palestinian side, Longley's film lacks balance ... and fails to put the struggle into meaningful historical context.\nWoo has as much right to make a huge action sequence as any director, but how long will filmmakers copy the ``Saving Private Ryan'' battle scenes before realizing Steven Spielberg got it right the first time?\nIt's sincere to a fault, but, unfortunately, not very compelling or much fun.\n... Jones, despite a definitely distinctive screen presence, just isn't able to muster for a movie that, its title notwithstanding, should have been a lot nastier if it wanted to fully capitalize on its lead's specific gifts.\nThis follow-up seems so similar to the 1953 Disney classic that it makes one long for a geriatric Peter.\nWhy, you may ask, why should you buy the movie milk when the TV cow is free? There's no good answer to that one.\nThis slow-moving Swedish film offers not even a hint of joy, preferring to focus on the humiliation of Martin as he defecates in bed and urinates on the plants at his own birthday party.\nA muddled limp biscuit of a movie, a vampire soap opera that doesn't make much sense even on its own terms.\nThere's the plot, and a maddeningly insistent and repetitive piano score that made me want to scream.\nThis is a movie so insecure about its capacity to excite that it churns up not one but two flagrantly fake thunderstorms to underscore the action.\nThis is amusing for about three minutes.\nKlein, charming in comedies like American Pie and dead-on in Election, delivers one of the saddest action hero performances ever witnessed.\nIt's rare to see a movie that takes such a speedy swan dive from ``promising'' to ``interesting'' to ``familiar'' before landing squarely on ``stupid''.\nThis is the sort of low-grade dreck that usually goes straight to video --with a lousy script, inept direction, pathetic acting, poorly dubbed dialogue and murky cinematography, complete with visible boom mikes.\nThe direction occasionally rises to the level of marginal competence, but for most of the film it is hard to tell who is chasing who or why.\nThere are few things more frustrating to a film buff than seeing an otherwise good movie marred beyond redemption by a disastrous ending.\nIt won't harm anyone, but neither can I think of a very good reason to rush right out and see it. After all, it'll probably be in video stores by Christmas, and it might just be better suited to a night in the living room than a night at the movies.\nLooks more like a travel-agency video targeted at people who like to ride bikes topless and roll in the mud than a worthwhile glimpse of independent-community guiding lights.\nGiven too much time to consider the looseness of the piece, the picture begins to resemble the shapeless, grasping actors' workshop that it is.\nThey kept much of the plot but jettisoned the stuff that would make this a moving experience for people who haven't read the book.\nJust because A Walk to Remember is shrewd enough to activate girlish tear ducts doesn't mean it's good enough for our girls.\n(Carvey's) characters are both overplayed and exaggerated, but then again, subtlety has never been his trademark.\nIt's mildly interesting to ponder the peculiar American style of justice that plays out here, but it's so muddled and derivative that few will bother thinking it all through.\nThis dreadfully earnest inversion of the Concubine love triangle eschews the previous film's historical panorama and roiling pathos for bug-eyed mugging and gay-niche condescension.\nBrown's saga, like many before his, makes for snappy prose but a stumblebum of a movie.\nThe boys' sparring, like the succession of blows dumped on Guei, wears down the story's more cerebral, and likable, plot elements.\nThe script by Vincent R. Nebrida ... tries to cram too many ingredients into one small pot.\nThe story is so light and sugary that were it a Macy's Thanksgiving Day Parade balloon, extra heavy-duty ropes would be needed to keep it from floating away.\nOedekerk mugs mercilessly, and the genuinely funny jokes are few and far between.\nSince Dahmer resorts to standard slasher flick thrills when it should be most in the mind of the killer, it misses a major opportunity to be truly revelatory about his psyche.\nOnly those most addicted to film violence in all its forms will find anything here to appreciate.\nCold and scattered, Minority Report commands interest almost solely as an exercise in gorgeous visuals. That's not vintage Spielberg and that, finally, is minimally satisfying.\nEvery now and again, a movie comes along to remind us of how very bad a motion picture can truly be. Frank McKlusky C.I. is that movie!\nIt's not difficult to spot the culprit early-on in this predictable thriller.\n...a mostly boring affair with a confusing sudden finale that's likely to irk viewers.\nThe trappings of I Spy are so familiar you might as well be watching a rerun.\nWhat starts off as a potentially incredibly twisting mystery becomes simply a monster chase film.\nIn the wake of Saving Private Ryan, Black Hawk Down and We Were Soldiers, you are likely to be as heartily sick of mayhem as Cage's war-weary marine.\nIt is messy, uncouth, incomprehensible, vicious and absurd.\nReally does feel like a short stretched out to feature length.\nHampered -- no, paralyzed -- by a self-indulgent script ... that aims for poetry and ends up sounding like satire.\nCheap, vulgar dialogue and a plot that crawls along at a snail's pace.\nAnd if you appreciate the one-sided theme to Lawrence's over-indulgent tirade, then knock yourself out and enjoy the big screen postcard that is a self-glorified Martin Lawrence lovefest. If you are willing to do this, then you so crazy!\nDirected without the expected flair or imagination by Hong Kong master John Woo, Windtalkers airs just about every cliche in the war movie compendium across its indulgent two-hour-and-fifteen-minute length.\nIt's a very tasteful rock and roll movie. You could put it on a coffee table anywhere.\nThe movie is loaded with good intentions, but in his zeal to squeeze the action and our emotions into the all-too-familiar dramatic arc of the Holocaust escape story, Minac drains his movie of all individuality.\nAn infuriating film. Just when you think you are making sense of it, something happens that tells you there is no sense.\nThe entire movie is so formulaic and forgettable that it's hardly over before it begins to fade from memory.\nThe setting turns out to be more interesting than any of the character dramas, which never reach satisfying conclusions.\nAs an entertainment destination for the general public, Kung Pow sets a new benchmark for lameness.\nThis misty-eyed Southern nostalgia piece, in treading the line between sappy and sanguine, winds up mired in tear-drenched quicksand.\nAs pure over-the-top trash, any John Waters movie has it beat by a country mile.\nWendigo wants to be a monster movie for the art-house crowd, but it falls into the trap of pretention almost every time.\nBigelow offers some flashy twists and turns that occasionally fortify this turgid fable. But for the most part, The Weight of Water comes off as a two-way time-switching myopic mystery that stalls in its lackluster gear of emotional blandness.\nThis film biggest problem? No laughs.\nLess-than-compelling documentary of a Yiddish theater clan.\nThat the Chuck Norris ``grenade gag'' occurs about 7 times during Windtalkers is a good indication of how serious-minded the film is.\nViewers are asked so often to suspend belief that were it not for Holm's performance, the film would be a total washout.\nIt's not exactly worth the bucks to expend the full price for a date, but when it comes out on video, it's well worth a rental.\nI can't begin to tell you how tedious, how resolutely unamusing, how thoroughly unrewarding all of this is, and what a reckless squandering of four fine acting talents...\nEverybody loves a David and Goliath story, and this one is told almost entirely from David's point of view.\nThrow Smoochy from the train!\nEventually, they will have a showdown, but, by then, your senses are as mushy as peas and you don't care who fires the winning shot.\nIrwin and his director never come up with an adequate reason why we should pay money for what we can get on television for free.\nA light, engaging comedy that fumbles away almost all of its accumulated enjoyment with a crucial third act miscalculation.\nCedar somewhat defuses this provocative theme by submerging it in a hoary love triangle.\nTo paraphrase a line from another Dickens' novel, Nicholas Nickleby is too much like a fragment of an underdone potato.\nThe actresses may have worked up a back story for the women they portray so convincingly, but viewers don't get enough of that background for the characters to be involving as individuals rather than types.\nThe result, however well-intentioned, is ironically just the sort of disposable, kitchen-sink homage that illustrates why the whole is so often less than the sum of its parts in today's Hollywood.\nAn extremely unpleasant film.\nA movie just for Friday fans, critics be damned. If you already like this sort of thing, this is that sort of thing all over again.\nA sincere but dramatically conflicted gay coming-of-age tale.\nWait for it to hit cable.\nUltimately feels like just one more in the long line of films this year about the business of making movies.\nNothing but one relentlessly depressing situation after another for its entire running time, something that you could easily be dealing with right now in your lives.\n77 minutes of Pokemon may not last 4ever, it just seems like it does. My only wish is that Celebi could take me back to a time before I saw this movie and I could just skip it.\nThe one not-so-small problem with Expecting is that the entire exercise has no real point.\nA movie you observe, rather than one you enter into.\n(At least) Moore is a real charmer.\nJohn Carlen's script is full of unhappy, two-dimensional characters who are anything but compelling.\nLaBute can't avoid a fatal mistake in the modern era: He's changed the male academic from a lower-class Brit to an American, a choice that upsets the novel's exquisite balance and shreds the fabric of the film.\nThe notion of deleting emotion from people, even in an advanced Prozac Nation, is so insanely dysfunctional that the rampantly designed Equilibrium becomes a concept doofus.\nStale first act, Scrooge story, blatant product placement, some very good comedic songs, strong finish, dumb fart jokes.\nUnsurprisingly, the way this all works out makes the women look more like stereotypical caretakers and moral teachers, instead of serious athletes.\nA film that loses sight of its own story.\nAdam Sandler's Eight Crazy Nights grows on you -- like a rash.\nThe big-screen Scooby makes the silly original cartoon seem smart and well-crafted in comparison.\nFew of the increasingly far-fetched events that first-time writer-director Neil Burger follows up with are terribly convincing, which is a pity, considering Barry's terrific performance.\nGets better after Foster leaves that little room.\nThe movie is as padded as Allen's jelly belly.\nResident Evil isn't a product of its cinematic predecessors so much as an MTV, sugar hysteria, and PlayStation cocktail.\nA rather average action film that benefits from several funny moments supplied by Epps.\n...unspeakably, unbearably dull, featuring reams of flatly delivered dialogue and a heroine who comes across as both shallow and dim-witted.\nResembles a soft porn Brian De Palma pastiche.\nBluto Blutarsky, we miss you.\nInnocuous enough to make even Jean-Claude Van Damme look good.\nIt's a glorified sitcom, and a long, unfunny one at that.\nWoody Allen can write and deliver a one liner as well as anybody. But I had a lot of problems with this movie.\nDevoid of any of the qualities that made the first film so special.\nAll movie long, City by the Sea swings from one approach to the other, but in the end, it stays in formula -- which is a waste of De Niro, McDormand and the other good actors in the cast.\nPlotless collection of moronic stunts is by far the worst movie of the year.\nHowever sincere it may be, The Rising Place never quite justifies its own existence.\nParker updates the setting in an attempt to make the film relevant today, without fully understanding what it was that made the story relevant in the first place.\nIt's sort of a 21st century morality play with a Latino hip hop beat. But the second half of the movie really goes downhill.\nPaxton's uneven directorial debut fails to unlock the full potential of what is in many ways a fresh and dramatically substantial spin on the genre.\nThe script becomes lifeless and falls apart like a cheap lawn chair.\nThe script falls back on too many tried-and-true shenanigans that hardly distinguish it from the next teen comedy.\nThe film starts promisingly, but the ending is all too predictable and far too cliched to really work.\nLet's issue a moratorium, effective immediately, on treacly films about inspirational prep-school professors and the children they so heartwarmingly motivate.\nIt's the element of condescension, as the filmmakers look down on their working-class subjects from their lofty perch, that finally makes Sex With Strangers, which opens today in the New York metropolitan area, so distasteful.\nAlternately frustrating and rewarding.\nIt's impossible to even categorize this as a smutty guilty pleasure.\nDespite suffering a sense-of-humour failure, The Man Who Wrote Rocky does not deserve to go down with a ship as leaky as this.\nSwinging, the film makes it seem, is not a hobby that attracts the young and fit. Or intelligent.\nThe most memorable moment was when Green threw medical equipment at a window; not because it was particularly funny, but because I had a serious urge to grab the old lady at the end of my aisle's walker and toss it at the screen in frustration.\nSee Clockstoppers if you have nothing better to do with 94 minutes. But be warned, you too may feel time has decided to stand still. Or that the battery on your watch has died.\nSuffers from over-familiarity since hit-hungry British filmmakers have strip-mined the Monty formula mercilessly since 1997.\nThere are enough throwaway references to faith and rainbows to plant smile-button faces on that segment of the populace that made A Walk to Remember a niche hit.\nYes, I have given this movie a rating of zero. But fans of the show should not consider this a diss. Consider it 'perfection.'\nThe cumulative effect of the movie is repulsive and depressing.\nChildren and adults enamored of all things Pokemon won't be disappointed.\nI don't even care that there's no plot in this Antonio Banderas-Lucy Liu faceoff. It's still terrible!\nChildren of the Century, though well dressed and well made, ultimately falls prey to the contradiction that afflicts so many movies about writers.\nIt's not so much a movie as a joint promotion for the National Basketball Association and teenaged rap and adolescent poster-boy Lil' Bow Wow.\nPeralta's mythmaking could have used some informed, adult hindsight.\nA close-to-solid espionage thriller with the misfortune of being released a few decades too late.\nCloaks a familiar anti-feminist equation (career - kids = misery) in tiresome romantic-comedy duds.\nThe Good Girl is a film in which the talent is undeniable but the results are underwhelming.\nJust a collection of this and that -- whatever fills time -- with no unified whole.\nThe animation and game phenomenon that peaked about three years ago is actually dying a slow death, if the poor quality of Pokemon 4 Ever is any indication.\nOnly about as sexy and dangerous as an actress in a role that reminds at every turn of Elizabeth Berkley's flopping dolphin-gasm.\nKids who are into this Thornberry stuff will probably be in wedgie heaven. Anyone else who may, for whatever reason, be thinking about going to see this movie is hereby given fair warning.\nMr. Soderbergh's direction and visual style struck me as unusually and unimpressively fussy and pretentious.\nDo you say ``hi'' to your lover when you wake up in the morning?\nIt makes me feel weird / Thinking about all the bad things in the world / Like puppies with broken legs / And butterflies that die / And movies starring pop queens\nDirector Tom Dey demonstrated a knack for mixing action and idiosyncratic humor in his charming 2000 debut Shanghai Noon, but Showtime's uninspired send-up of TV cop show cliches mostly leaves him shooting blanks.\n'Yes, that's right: it's Forrest Gump, Angel Of Death.'\nA wildly erratic drama with sequences that make you wince in embarrassment and others, thanks to the actors, that are quite touching.\nWhile easier to sit through than most of Jaglom's self-conscious and gratingly irritating films, it's still tainted by cliches, painful improbability and murky points.\nAbout as enjoyable, I would imagine, as searching for a quarter in a giant pile of elephant feces...positively dreadful.\nA generic international version of a typical American horror film.\n... while certainly clever in spots, this too-long, spoofy update of Shakespeare's Macbeth doesn't sustain a high enough level of invention.\nLucas has in fact come closer than anyone could desire to the cheap, graceless, hackneyed sci-fi serials of the '30s and '40s.\nThere's a lot of good material here, but there's also a lot of redundancy and unsuccessful crudeness accompanying it.\nAbsurdities and clichés accumulate like lint in a fat man's navel.\nIf you think it's a riot to see Rob Schneider in a young woman's clothes, then you'll enjoy The Hot Chick.\nThe sheer dumbness of the plot (other than its one good idea) and the movie's inescapable air of sleaziness get you down.\nStrangely comes off as a kingdom more mild than wild.\nThe next big thing's not-so-big (and not-so-hot) directorial debut.\nYet another iteration of what's become one of the movies' creepiest conventions, in which the developmentally disabled are portrayed with almost supernatural powers to humble, teach and ultimately redeem their mentally ``superior'' friends, family...\nBond-inspired? Certainly. Likely to have decades of life as a classic movie franchise? Let's hope not.\nThis flat run at a hip-hop Tootsie is so poorly paced you could fit all of Pootie Tang in between its punchlines.\nDavis has energy, but she doesn't bother to make her heroine's book sound convincing, the gender-war ideas original, or the comic scenes fly.\nSurprisingly, considering that Baird is a former film editor, the movie is rather choppy.\nNone of this is very original, and it isn't particularly funny.\n...a bland murder-on-campus yawner.\nA humorless journey into a philosophical void.\nThese two are generating about as much chemistry as an Iraqi factory poised to receive a UN inspector.\nJust as the lousy Tarantino imitations have subsided, here comes the first lousy Guy Ritchie imitation.\nA passable romantic comedy, in need of another couple of passes through the word processor.\nThe movie attempts to mine laughs from a genre -- the gangster/crime comedy -- that wore out its welcome with audiences several years ago, and its cutesy reliance on movie-specific cliches isn't exactly endearing.\nshows Holmes has the screen presence to become a major-league leading lady, (but) the movie itself is an underachiever, a psychological mystery that takes its sweet time building to a climax that's scarcely a surprise by the time it arrives.\nUltimately ... the movie is too heady for children, and too preachy for adults.\nIt's just a little too self-satisfied.\nClever but not especially compelling.\nMcKay seems embarrassed by his own invention and tries to rush through the intermediary passages, apparently hoping that the audience will not notice the glaring triteness of the plot device he has put in service.\nA piece of mildly entertaining, inoffensive fluff that drifts aimlessly for 90 minutes before lodging in the cracks of that ever-growing category: unembarrassing but unmemorable.\nLaBute was more fun when his characters were torturing each other psychologically and talking about their genitals in public.\nThe movie weighs no more than a glass of flat champagne.\nThe problem with ANTWONE FISHER is that it has a screenplay written by Antwone Fisher based on the book by Antwone Fisher.\nAlarms for Duvall's throbbing sincerity and his elderly propensity for patting people while he talks.\nWhat little grace (Rifkin's) tale of precarious skid-row dignity achieves is pushed into the margins by predictable plotting and tiresome histrionics.\nTries to work in the same vein as the brilliance of Animal House but instead comes closer to the failure of the third Revenge of the Nerds sequel.\nUnfortunately, Kapur modernizes A.E.W. Mason's story to suit the sensibilities of a young American, a decision that plucks ``The Four Feathers'' bare.\n...what a banal bore the preachy Circuit turns out to be\nFalsehoods pile up, undermining the movie's reality and stifling its creator's comic voice.\nA mechanical action-comedy whose seeming purpose is to market the charismatic Jackie Chan to even younger audiences.\nOne of the most incoherent features in recent memory.\nLow rent from frame one.\nEight Legged Freaks? No big hairy deal.\nThe issues are presented in such a lousy way, complete with some of the year's (unintentionally) funniest moments, that it's impossible to care.\nLaggard drama wending its way to an uninspired philosophical epiphany.\nThe respective charms of Sandra Bullock and Hugh Grant have worn threadbare.\n'This movie sucks.'\nNone of this so-called satire has any sting to it, as if Woody is afraid of biting the hand that has finally, to some extent, warmed up to him.\nA few nonbelievers may rethink their attitudes when they see the joy the characters take in this creed, but skeptics aren't likely to enter the theater.\nBad in such a bizarre way that it's almost worth seeing, if only to witness the crazy confluence of purpose and taste.\nThere's more repetition than creativity throughout the movie.\nHugh Grant's act is so consuming that sometimes it's difficult to tell who the other actors in the movie are.\nAlthough the sequel has all the outward elements of the original, the first film's lovely flakiness is gone, replaced by the forced funniness found in the dullest kiddie flicks.\nI've had more interesting -- and, dare I say, thematically complex -- bowel movements than this long-on-the-shelf, point-and-shoot exercise in gimmicky crime drama.\nWhat we get ... is Caddyshack crossed with the Loyal Order of Raccoons.\nThe jokes are flat, and the action looks fake.\nWhen a movie asks you to feel sorry for Mick Jagger's sex life, it already has one strike against it.\nThere are now two signs that M. Night Shyamalan's debut feature sucked up all he has to give to the mystic genres of cinema: Unbreakable and Signs.\n...hokey art house pretension.\n... a weak and ineffective ghost story without a conclusion or pay off.\nGussied up with so many distracting special effects and visual party tricks that it's not clear whether we're supposed to shriek or laugh.\nPlodding, poorly written, murky and weakly acted, the picture feels as if everyone making it lost their movie mojo.\nThis is a fudged opportunity of gigantic proportions -- a lunar mission with no signs of life.\nA baffling subplot involving smuggling drugs inside Danish cows falls flat, and if you're going to alter the Bard's ending, you'd better have a good alternative.\nSoderbergh seems capable only of delivering artfully lighted, earnest inquiries that lack the kind of genuine depth that would make them redeemable.\nThe only thing that distinguishes a Randall Wallace film from any other is the fact that there is nothing distinguishing in a Randall Wallace film.\nSilly stuff, all mixed up together like a term paper from a kid who can't quite distinguish one sci-fi work from another.\nThere is so much plodding sensitivity.\nThe town has kind of an authentic feel, but each one of these people stand out and everybody else is in the background and it just seems manufactured to me and artificial.\n...too sappy for its own good.\nCircuit queens won't learn a thing, they'll be too busy cursing the film's strategically placed white sheets.\nAs an actress, Madonna is one helluva singer. As the Mediterranean sparkles, 'Swept Away' sinks.\nEvery so often a film comes along that is so insanely stupid, so awful in so many ways that watching it leaves you giddy. Half Past Dead is just such an achievement.\nExpanded to 65 minutes for theatrical release, it still feels somewhat unfinished.\nIt all looks and plays like a $40 million version of a game you're more likely to enjoy on a computer.\n(Javier Bardem is) one of the few reasons to watch the film, which director Gerardo Vera has drenched in swoony music and fever-pitched melodrama.\nFeels shrill, simple and soapy.\nAdults, other than the parents...will be hard pressed to succumb to the call of the wild.\nBrady achieves the remarkable feat of squandering a topnotch foursome of actors ... by shoving them into every clichéd white-trash situation imaginable.\nIn the name of an allegedly inspiring and easily marketable flick, The Emperor's Club turns a blind eye to the very history it pretends to teach.\nNo amount of blood and disintegrating vampire cadavers can obscure this movie's lack of ideas.\nA direct-to-void release, heading nowhere.\nTypical animé, with cheapo animation (like Saturday morning TV in the '60s), a complex sword-and-sorcery plot and characters who all have big round eyes and Japanese names.\nBelow is well below expectations.\nAt no point during K-19:The Widowmaker did this viewer feel enveloped in a story that, though meant to be universal in its themes of loyalty, courage and dedication to a common goal, never seems to leave the lot.\n...standard guns versus martial arts cliche with little new added.\nEmpire can't make up its mind whether it wants to be a gangster flick or an art film. It doesn't work as either.\nGiven the fact that virtually no one is bound to show up at theatres for it, the project should have been made for the tube.\nPossession is in the end an honorable, interesting failure. It falls far short of poetry, but it's not bad prose.\nJonathan Parker's Bartleby should have been the be-all-end-all of the modern-office anomie films.\nThere may have been a good film in ``Trouble Every Day,'' but it is not what is on the screen.\nUnfortunately, Carvey's rubber-face routine is no match for the insipid script he has crafted with Harris Goldberg.\nViewed as a comedy, a romance, a fairy tale, or a drama, there's nothing remotely triumphant about this motion picture.\nThere's something unintentionally comic in the film's drumbeat about authenticity, given the stale plot and pornographic way the film revels in swank apartments, clothes and parties.\nThe Master of Disguise is funny--not ``ha ha'' funny, ``dead circus performer'' funny. And for all the wrong reasons besides.\nA zippy 96 minutes of mediocre special effects, hoary dialogue, fluxing accents, and -- worst of all -- silly-looking Morlocks.\nA 75-minute sample of puerile rubbish that is listless, witless, and devoid of anything resembling humor.\nYou leave feeling like you've endured a long workout without your pulse ever racing.\nThe waterlogged script plumbs uncharted depths of stupidity, incoherence and sub-sophomoric sexual banter.\nWith McConaughey in an entirely irony-free zone and Bale reduced mainly to batting his sensitive eyelids, there's not enough intelligence, wit or innovation on the screen to attract and sustain an older crowd.\nIt's the type of stunt the Academy loves: a powerful political message stuffed into an otherwise mediocre film.\nIn theory, a middle-aged romance pairing Clayburgh and Tambor sounds promising, but in practice it's something else altogether -- clownish and offensive and nothing at all like real life.\nSo mind-numbingly awful that you hope Britney won't do it one more time, as far as movies are concerned.\nThe images are usually abbreviated in favor of mushy obviousness and telegraphed pathos, particularly where Whitaker's misfit artist is concerned.\nIf Welles was unhappy at the prospect of the human race splitting in two, he probably wouldn't be too crazy with his great-grandson's movie splitting up in pretty much the same way.\nSets animation back 30 years, musicals back 40 years and Judaism back at least 50.\nWeirdly, Broomfield has compelling new material but he doesn't unveil it until the end, after endless scenes of him wheedling reluctant witnesses and pointing his camera through the smeared windshield of his rental car.\nMight best be enjoyed as a daytime soaper.\neventually arrives at its heart, as simple self-reflection meditation.\nA showcase for both the scenic splendor of the mountains and for legendary actor Michel Serrault, the film is less successful on other levels.\nBoy oh boy, it's a howler.\nA few pieces of the film buzz and whir; very little of it actually clicks. The thing just never gets off the ground.\n...contains very few laughs and even less surprises.\nThe actors must indeed be good to recite some of this laughable dialogue with a straight face.\nMost of the storylines feel like time fillers between surf shots. The movie isn't horrible, but you can see mediocre cresting on the next wave.\nHowever stale the material, Lawrence's delivery remains perfect; his great gift is that he can actually trick you into thinking some of this worn-out, pandering palaver is actually funny.\nThere's nothing remotely topical or sexy here.\nThe Tuxedo wasn't just bad; it was, as my friend David Cross would call it, 'Hungry-Man portions of bad'.\nBlue Crush is so prolonged and boring it isn't even close to being the barn-burningly bad movie it promised it would be.\nThe sequel plays out like a flimsy excuse to give Blade fans another look at Wesley Snipes' iconic hero doing battle with dozens of bad guys -- at once.\nWhile Van Wilder may not be the worst National Lampoon film, it's far from being this generation's Animal House.\nSo devoid of pleasure or sensuality that it cannot even be dubbed hedonistic.\nReeks of rot and hack work from start to finish.\nAn exhausting family drama about a porcelain empire and just as hard a flick as its subject matter.\nWoody Allen has really found his groove these days. The problem is that it is one that allows him to churn out one mediocre movie after another.\nThe bland outweighs the nifty, and Cletis Tout never becomes the clever crime comedy it thinks it is.\nIt's such a mechanical endeavor (that) it never bothers to question why somebody might devote time to see it.\nThe art direction is often exquisite, and the anthropomorphic animal characters are beautifully realized through clever makeup design, leaving one to hope that the eventual DVD release will offer subtitles and the original Italian-language soundtrack.\nIf the predictability of bland comfort food appeals to you, then the film is a pleasant enough dish.\nUltimately, in the history of the Academy, people may be wondering what all that jazz was about ``Chicago'' in 2002. Zellweger's whiny pouty-lipped poof faced and spindly attempt at playing an ingenue makes her nomination as best actress even more of a an a\nA seriously bad film with seriously warped logic by writer-director Kurt Wimmer at the screenplay level.\nA pleasant and engaging enough sit, but in trying to have the best of both worlds it ends up falling short as a whole.\nIts plot and animation offer daytime TV serviceability, but little more.\nA tired, unimaginative and derivative variation of that already-shallow genre.\nHuman Nature, in short, isn't nearly as funny as it thinks it is; neither is it as smart.\nA film with a great premise but only a great premise.\nInstead of building to a laugh riot we are left with a handful of disparate funny moments of no real consequence.\nKirshner and Monroe seem to be in a contest to see who can out-bad-act the other. (Kirshner wins, but it's close.)\nA lame romantic comedy about an unsympathetic character and someone who would not likely be so stupid as to get involved with her.\nWhat started out as a taut contest of wills between Bacon and Theron, deteriorates into a protracted and borderline silly chase sequence.\n(Sam's) self-flagellation is more depressing than entertaining.\nAn ugly, pointless, stupid movie.\nSimply put, there should have been a more compelling excuse to pair Susan Sarandon and Goldie Hawn.\nThe Master of Disguise represents Adam Sandler's latest attempt to dumb down the universe.\nThis is an ungainly movie, ill-fitting, with its elbows sticking out where the knees should be.\nToo silly to take seriously.\nThe inevitable double- and triple-crosses arise, but the only drama is in waiting to hear how John Malkovich's reedy consigliere will pronounce his next line.\nEverything's serious, poetic, earnest and -- sadly -- dull.\nI like it. No, I hate it. No, I love it...hell, I dunno.\nThis mess of a movie is nothing short of a travesty of a transvestite comedy.\nIt's clotted with heavy-handed symbolism, dime-store psychology and endless scenic shots that make 105 minutes seem twice as long.\nA fifty car pileup of cliches.\nIt's a stale, overused cocktail using the same olives since 1962 as garnish. Not only is entry number twenty the worst of the Brosnan bunch, it's one of the worst of the entire franchise.\nWhat ultimately makes Windtalkers a disappointment is the superficial way it deals with its story.\nAs an actor's showcase, Hart's War has much to recommend it, even if the top-billed Willis is not the most impressive player. As a story of dramatic enlightenment, the screenplay by Billy Ray and Terry George leaves something to be desired.\nA non-Britney person might survive a screening with little harm done, except maybe for the last 15 minutes, which are as maudlin as any after-school special you can imagine.\nIt's not hateful. It's simply stupid, irrelevant and deeply, truly, bottomlessly cynical.\nPossibly not since Grumpy Old Men have I heard a film so solidly connect with one demographic while striking out with another.\nThe drama was so uninspiring that even a story immersed in love, lust, and sin couldn't keep my attention.\nA rather tired exercise in nostalgia.\nThe misery of these people becomes just another voyeuristic spectacle, to be consumed and forgotten.\nSome Body often looks like an episode of the TV show Blind Date, only less technically proficient and without the pop-up comments.\nBad Company has one of the most moronic screenplays of the year, full of holes that will be obvious even to those who aren't looking for them.\nPredecessors The Mummy and The Mummy Returns stand as intellectual masterpieces next to The Scorpion King.\nA markedly inactive film, City is conversational bordering on confessional.\nWhile kids will probably eat the whole thing up, most adults will be way ahead of the plot.\nDespite an impressive roster of stars and direction from Kathryn Bigelow, The Weight of Water is oppressively heavy.\nWe've liked Klein's other work but Rollerball left us cold.\nThey were afraid to show this movie to reviewers before its opening, afraid of the bad reviews they thought they'd earn. They were right.\nIt would be churlish to begrudge anyone for receiving whatever consolation that can be found in Dragonfly, yet it is impossible to find the film anything but appalling, shamelessly manipulative and contrived, and totally lacking in conviction.\nOffers no new insight on the matter, nor do its characters exactly spring to life.\nNohe has made a decent 'intro' documentary, but he feels like a spectator and not a participant.\nApparently designed as a reverie about memory and regret, but the only thing you'll regret is remembering the experience of sitting through it.\nA 94-minute travesty of unparalleled proportions, writer-director Parker seems to go out of his way to turn the legendary wit's classic mistaken identity farce into brutally labored and unfunny hokum.\nGuy gets girl, guy loses girl, audience falls asleep.\nToo ordinary to restore (Harmon) to prominence, despite some creepy scenes that evoke childish night terrors, and a praiseworthy attempt to generate suspense rather than gross out the audience.\nStirs potentially enticing ingredients into an uneasy blend of Ghost and Close Encounters of the Third Kind.\nThe weird thing about The Santa Clause 2, purportedly a children's movie, is that there is nothing in it to engage children emotionally.\nIt's pretentious in a way that verges on the amateurish.\nContains the humor, characterization, poignancy, and intelligence of a bad sitcom.\nIt doesn't matter that the film is less than 90 minutes. It still feels like a prison stretch.\nPartly a schmaltzy, by-the-numbers romantic comedy, partly a shallow rumination on the emptiness of success -- and entirely soulless.\nOng chooses to present Ah Na's life as a slight, weightless fairy tale, whose most unpleasant details seem to melt away in the face of the character's blank-faced optimism.\nThe overall feel is not unlike watching a glorified episode of ``7th Heaven.''\nJust a Kiss is a just a waste.\n...this isn't even a movie we can enjoy as mild escapism; it is one in which fear and frustration are provoked to intolerable levels.\nFrankly, it's kind of insulting, both to men and women. And it's not that funny -- which is just generally insulting.\nAs if Drop Dead Gorgeous wasn't enough, this equally derisive clunker is fixated on the spectacle of small-town competition.\nA wretched movie that reduces the Second World War to one man's quest to find an old flame.\nThis is a remake by the numbers, linking a halfwit plot to a series of standup routines in which Wilson and Murphy show how funny they could have been in a more ambitious movie.\nIt's better than mid-range Steven Seagal, but not as sharp as Jet Li on rollerblades.\nThere's a reason why halftime is only fifteen minutes long.\nThe talk-heavy film plays like one of Robert Altman's lesser works.\nAs happily glib and vicious as its characters.\nOne of those films that started with a great premise and then just fell apart.\nNo better or worse than 'Truth or Consequences, N.M.' or any other interchangeable actioner with imbecilic Mafia toolbags botching a routine assignment in a Western backwater.\n(MacDowell) ventures beyond her abilities several times here and reveals how bad an actress she is.\nI can imagine this movie as a b&w British comedy, circa 1960, with Peter Sellers, Kenneth Williams, et al., but at this time, with this cast, this movie is hopeless.\nTalky, artificial and opaque...an interesting technical exercise, but a tedious picture.\nKurys never shows why, of all the period's volatile romantic lives, Sand and Musset are worth particular attention.\nAlmost nothing else -- raunchy and graphic as it may be in presentation -- is one-sided, outwardly sexist or mean-spirited. And in a sense, that's a liability.\nIt's easy to love Robin Tunney -- she's pretty and she can act -- but it gets harder and harder to understand her choices.\nIf you've got a house full of tots -- don't worry, this will be on video long before they grow up and you can wait till then.\nThe new film of Anton Chekhov's The Cherry Orchard puts the 'ick' in 'classic.'\nHas an uppity musical beat that you can dance to, but its energy can't compare to the wit, humor and snappy dialogue of the original. If I want music, I'll buy the soundtrack. If I want a real movie, I'll buy the Criterion DVD.\nAn unremarkable, modern action/comedy buddy movie whose only nod to nostalgia is in the title.\nHas all the right elements but completely fails to gel together.\nWriter-director Stephen Gaghan has made the near-fatal mistake of being what the English call 'too clever by half.'\nSeagal ran out of movies years ago, and this is just the proof.\nThe movie is so contrived, nonsensical and formulaic that, come to think of it, the day-old shelf would be a more appropriate location to store it.\nAn awkwardly garish showcase that diverges from anything remotely probing or penetrating.\nThe name says it all. Jackass is a vulgar and cheap-looking version of Candid Camera staged for the Marquis de Sade set.\nChildren, Christian or otherwise, deserve to hear the full story of Jonah's despair -- in all its agonizing, Catch-22 glory -- even if they spend years trying to comprehend it.\nPleasant but not more than recycled jock piffle.\n...the kind of movie you see because the theater has air conditioning.\nWith Zoe Clarke-Williams's lackluster thriller ``New Best Friend'', who needs enemies? Just another generic drama that has nothing going for it other than its exploitive array of obligatory cheap thrills.\nHip-hop prison thriller of stupefying absurdity.\nAn uneven mix of dark satire and childhood awakening.\naside from showing us in explicit detail how difficult it is to win over the two-drink-minimum crowd, there's little to be learned from watching 'Comedian'\nA perfectly acceptable, perfectly bland, competently acted but by no means scary horror movie.\nThe film would have been more enjoyable had the balance shifted in favor of water-bound action over the land-based 'drama,' but the emphasis on the latter leaves Blue Crush waterlogged.\nThe problem is the needlessly poor quality of its archival prints and film footage. The images lack contrast, are murky and are frequently too dark to be decipherable.\nLike a soft drink that's been sitting open too long: it's too much syrup and not enough fizz.\nAs the movie dragged on, I thought I heard a mysterious voice, and felt myself powerfully drawn toward the light -- the light of the exit sign. I have returned from the beyond to warn you: this movie is 90 minutes long, and life is too short.\nThere are some fairly unsettling scenes, but they never succeed in really rattling the viewer.\nThe Emperor's Club is one of those films that possesses all the good intentions in the world, but ...\nIn the end, The Weight of Water comes to resemble the kind of soft-core twaddle you'd expect to see on Showtime's 'Red Shoe Diaries.'\nA straight-ahead thriller that never rises above superficiality.\nGlizty but formulaic and silly...Cagney's 'top of the world' has been replaced by the bottom of the barrel.\nThe re- enactments, however fascinating they may be as history, are too crude to serve the work especially well.\nIs anyone else out there getting tired of the whole slo-mo, double-pistoled, ballistic-pyrotechnic Hong Kong action aesthetic?\nOnce again, director Chris Columbus takes a hat-in-hand approach to Rowling that stifles creativity and allows the film to drag on for nearly three hours.\nServing Sara is little more than a mall movie designed to kill time.\nToo smart to ignore but a little too smugly superior to like, this could be a movie that ends up slapping its target audience in the face by shooting itself in the foot.\nA well-made but emotionally scattered film whose hero gives his heart only to the dog.\nThe most repugnant adaptation of a classic text since Roland Joffé and Demi Moore's The Scarlet Letter.\nThe isolated moments of creative insanity finally are lost in the thin soup of canned humor.\nAs a movie, it never seems fresh and vital. It never plays as dramatic even when dramatic things happen to people. It labours as storytelling.\nThe Adventures of Pluto Nash is a whole lot of nada.\nA really good premise is frittered away in middle-of-the-road blandness.\nLawrence should stick to his day job. He's a better actor than a standup comedian.\nDespite the fact that this film wasn't as bad as I thought it was going to be, it's still not a good movie\nA well made indieflick in need of some trims and a more chemistry between its stars.\nI never thought I'd say this, but I'd much rather watch teens poking their genitals into fruit pies!\nA film neither bitter nor sweet, neither romantic nor comedic, neither warm nor fuzzy.\nTiresomely derivative and hammily acted.\nWe never truly come to care about the main characters and whether or not they'll wind up together, and Michele's spiritual quest is neither amusing nor dramatic enough to sustain interest.\nThe plot grows thin soon, and you find yourself praying for a quick resolution.\nToo bad Maggio couldn't come up with a better script.\nMuch of the cast is stiff or just plain bad.\nRice is too pedestrian a filmmaker to bring any edge or personality to The Rising Place that would set it apart from other Deep South stories.\nAt best, Cletis Tout might inspire a trip to the video store -- in search of a better movie experience.\nWitless, pointless, tasteless and idiotic.\nNot really a thriller so much as a movie for teens to laugh, groan and hiss at.\nAs plain and pedestrian as catsup--\nAn improvement on the feeble examples of big-screen Poke-mania that have preceded it.\nI know we're not supposed to take it seriously, but I can't shake the thought that Undercover Brother missed an opportunity to strongly present some profound social commentary.\nYour stomach for Heaven depends largely on your appetite for canned corn.\nA picture as erratic as its central character.\nWhatever satire Lucky Break was aiming for, it certainly got lost in the ``soon-to-be-forgettable'' section of the quirky rip-off prison romp pile. It's petty thievery like this that puts flimsy flicks like this behind bars\nThe package in which this fascinating -- and timely -- content comes wrapped is disappointingly generic.\nGuys say mean things and shoot a lot of bullets. Some of the characters die and others don't, and the film pretends that those living have learned some sort of lesson, and, really, nobody in the viewing audience cares.\nWildly incompetent but brilliantly named Half Past Dead -- or for Seagal pessimists: Totally Past His Prime.\nJust another combination of bad animation and mindless violence...lacking the slightest bit of wit or charm.\nAll the movie's narrative gymnastics can't disguise the fact that it's inauthentic at its core and that its story just isn't worth telling.\nMuch like its easily dismissive take on the upscale lifestyle, there isn't much there here.\nThe film ultimately offers nothing more than people in an urban jungle needing other people to survive...\nFor all its shoot-outs, fistfights, and car chases, this movie is a phlegmatic bore, so tedious it makes the silly spy vs. spy film The Sum of All Fears, starring Ben Affleck, seem downright Hitchcockian.\nThis mild-mannered farce, directed by one of its writers, John C. Walsh, is corny in a way that bespeaks an expiration date passed a long time ago.\nA bit too eager to please.\nYou'd be hard put to find a movie character more unattractive or odorous (than Leon).\nKapur's contradictory feelings about his material result in a movie that works against itself.\n``the road paved with good intentions leads to the video store''\nAnimated drivel meant to enhance the self-image of drooling idiots.\nOne scene after another in this supposedly funny movie falls to the floor with a sickening thud.\n'The Château is never quite able to overcome the cultural moat surrounding its ludicrous and contrived plot.'\nMeyjes focuses too much on Max when he should be filling the screen with this tortured, dull artist and monster-in-the- making.\nJacobi, the most fluent of actors, is given relatively dry material from Nijinsky's writings to perform, and the visuals, even erotically frank ones, become dullingly repetitive.\nCrudup's screen presence is the one thing that holds interest in the midst of a mushy, existential exploration of why men leave their families.\nThere is one surefire way to get a nomination for a best-foreign-film Oscar: Make a movie about whimsical folk who learn a nonchallenging, life-affirming lesson while walking around a foreign city with stunning architecture.\nDespite terrific special effects and funnier gags, Harry Potter and the Chamber of Secrets finds a way to make J.K. Rowling's marvelous series into a deadly bore.\nAn incredibly narrow in-joke targeted to the tiniest segment of an already obscure demographic.\nThe only thing I laughed at were the people who paid to see it.\nAll of the elements are in place for a great film noir, but director George Hickenlooper's approach to the material is too upbeat.\nThe hackneyed story about an affluent damsel in distress who decides to fight her bully of a husband is simply too overdone.\nthe phone rings and a voice tells you you've got seven days left to live. Then you get another phone call warning you that if the video isn't back at Blockbuster before midnight, you're going to face frightening late fees. O.K., not really.\nPossibly the most irresponsible picture ever released by a major film studio.\nThe film's overall mood and focus is interesting but constantly unfulfilling.\n...a cheap, ludicrous attempt at serious horror.\nThose of you who are not an eighth grade girl will most likely doze off during this one.\nBefuddled in its characterizations as it begins to seem as long as the two year affair which is its subject\nFrom beginning to end, this overheated melodrama plays like a student film.\nThe movie would seem less of a trifle if Ms. Sugarman followed through on her defiance of the saccharine.\nIt's just not very smart.\nLike the excruciating End of Days, Collateral Damage presents Schwarzenegger as a tragic figure, but sympathy really belongs with any viewer forced to watch him try out so many complicated facial expressions.\nImagine (if possible) a Pasolini film without passion or politics, or an Almodovar movie without beauty or humor, and you have some idea of the glum, numb experience of watching O Fantasma.\nIn trying to be daring and original, it comes off as only occasionally satirical and never fresh.\n90 punitive minutes of eardrum-dicing gunplay, screeching-metal smashups, and flaccid odd-couple sniping.\nSadly, though many of the actors throw off a spark or two when they first appear, they can't generate enough heat in this cold vacuum of a comedy to start a reaction.\nNever capitalizes on this concept and opts for the breezy and amateurish feel of an after school special on the subject of tolerance.\nAfter a while, Hoffman's quirks and mannerisms, particularly his penchant for tearing up on cue -- things that seem so real in small doses -- become annoying and artificial.\nThis wretchedly unfunny wannabe comedy is inane and awful - no doubt, it's the worst movie I've seen this summer.\nIt's drab. It's uninteresting. It squanders Chan's uniqueness; it could even be said to squander Jennifer Love Hewitt!\nThe movie keeps coming back to the achingly unfunny Phonce and his several silly subplots.\nThis tale has been told and retold; the races and rackets change, but the song remains the same.\nA surprisingly flat retread, hobbled by half-baked setups and sluggish pacing.\nForget the Psychology 101 study of romantic obsession and just watch the procession of costumes in castles and this won't seem like such a bore.\nA film that should be relegated to a dark video store corner is somehow making its way instead to theaters. It's hard to imagine acting that could be any flatter.\nNew ways of describing badness need to be invented to describe exactly how bad it is.\nLots of effort and intelligence are on display but in execution it is all awkward, static, and lifeless rumblings.\nWhen cowering and begging at the feet a scruffy Giannini, Madonna gives her best performance since Abel Ferrara had her beaten to a pulp in his Dangerous Game.\nI suspect that there are more interesting ways of dealing with the subject.\nThe film itself is about something very interesting and odd that would probably work better as a real documentary without the insinuation of mediocre acting or a fairly trite narrative.\nAn unintentional parody of every teen movie made in the last five years.\nOnly for young children, if them. Their parents would do well to cram earplugs in their ears and put pillowcases over their heads for 87 minutes.\nFor all its violence, the movie is remarkably dull with only Caine making much of an impression.\nNo matter how firmly director John Stainton has his tongue in his cheek, the fact remains that a wacky concept does not a movie make.\nA sub-formulaic slap in the face to seasonal cheer.\nThe action is reasonably well-done ... yet story, character and comedy bits are too ragged to ever fit smoothly together.\nSeveral uninteresting, unlikeable people do bad things to and with each other in ``Unfaithful.'' Why anyone who is not a character in this movie should care is beyond me.\nHill looks to be going through the motions, beginning with the pale script.\nHoward conjures the past via surrealist flourishes so overwrought you'd swear he just stepped out of a Buñuel retrospective.\nThe best thing that can be said of the picture is that it does have a few cute moments.\nIt's not a bad premise, just a bad movie.\nAn already thin story boils down to surviving invaders seeking an existent anti-virus. If only there were one for this kind of movie.\nBy the time the surprise ending is revealed, interest cannot be revived.\nThe heedless impetuousness of youth is on full, irritating display in (this) meandering and pointless French coming-of-age import from writer-director Anne-Sophie Birot.\nA peculiar misfire that even Tunney can't save.\nWatching Queen of the Damned is like reading a research paper, with special effects tossed in.\nI can't remember the last time I saw worse stunt editing or cheaper action movie production values than in Extreme Ops.\nToo much of Nemesis has a tired, talky feel.\nI felt trapped and with no obvious escape for the entire 100 minutes.\nWhen Mr. Hundert tells us in his narration that 'this is a story without surprises,' we nod in agreement.\nLeaves us wondering less about its ideas and more about its characterization of Hitler and the contrived nature of its provocative conclusion.\nIt is that rare combination of bad writing, bad direction and bad acting -- the trifecta of badness.\nEach scene wreaks of routine; the film never manages to generate a single threat of suspense.\nA soulless jumble of ineptly assembled cliches and pabulum that plays like a 95-minute commercial for NBA properties.\nBorstal Boy represents the worst kind of filmmaking, the kind that pretends to be passionate and truthful but is really frustratingly timid and soggy.\nThe film's lack of personality permeates all its aspects -- from the TV movie-esque, affected child acting to the dullest Irish pub scenes ever filmed.\nworks on the whodunit level as its larger themes get lost in the murk of its own making\nCrush could be the worst film a man has made about women since Valley of the Dolls.\n4Ever has the same sledgehammer appeal as Pokemon videos, but it breathes more on the big screen and induces headaches more slowly.\nFeels like the work of someone who may indeed have finally aged past his prime ... and, perhaps more than he realizes, just wants to be liked by the people who can still give him work.\nTrailer park Magnolia: too long, too cutesy, too sure of its own importance, and possessed of that peculiar tension of being too dense & about nothing at all.\nViewers of Barney's crushingly self-indulgent spectacle will see nothing in it to match the ordeal of sitting through it.\n...its stupidities wind up sticking in one's mind a lot more than the cool bits.\nSayles ... once again strands his superb performers in the same old story.\nThe Piano Teacher, like its title character, is repellantly out of control.\nI have to admit I walked out of Runteldat. I did go back and check out the last 10 minutes, but these were more repulsive than the first 30 or 40 minutes.\nThe filmmakers lack the nerve ... to fully exploit the script's potential for sick humor.\nThe film wasn't preachy, but it was feminism by the book.\n... the same tired old gags, modernized for the extreme sports generation. There's already been too many of these films...\nSeveral of Steven Soderbergh's earlier films were hailed as the works of an artist. Sadly, Full Frontal plays like the work of a dilettante.\nClockstoppers is one of those crazy, mixed-up films that doesn't know what it wants to be when it grows up.\nAlthough bright, well-acted and thought-provoking, Tuck Everlasting suffers from a laconic pace and a lack of traditional action.\n'The War of the Roses,' trailer-trash style. Entertaining but like shooting fish in a barrel.\nSupposedly, Pokemon can't be killed, but Pokemon 4Ever practically assures that the pocket monster movie franchise is nearly ready to keel over.\nWhite hasn't developed characters so much as caricatures, one-dimensional buffoons that get him a few laughs but nothing else.\nWhen you resurrect a dead man, Hard Copy should come a-knocking, no?\nCattaneo should have followed the runaway success of his first film, The Full Monty, with something different.\nThe film feels formulaic, its plot and pacing typical Hollywood war-movie stuff, while the performances elicit more of a sense of deja vu than awe.\nThis overproduced piece of dreck is shockingly bad and absolutely unnecessary. Hmmm...might I suggest that the wayward wooden one end it all by stuffing himself into an electric pencil sharpener?\nThe makers of Mothman Prophecies succeed in producing that most frightening of all movies -- a mediocre horror film too bad to be good and too good to be bad.\nMr. Deeds is not really a film as much as it is a loose collection of not-so-funny gags, scattered moments of lazy humor.\nHow this one escaped the Lifetime network I'll never know.\nCouldn't someone take Rob Schneider and have him switch bodies with a funny person?\nOne of these days Hollywood will come up with an original idea for a teen movie, but until then there's always these rehashes to feed to the younger generations.\nFor all its brilliant touches, Dragon loses its fire midway, nearly flickering out by its perfunctory conclusion.\nI have to admit that I am baffled by Jason X.\nA mean-spirited film made by someone who surely read The Catcher in the Rye but clearly suffers from dyslexia\nInstead of a witty expose on the banality and hypocrisy of too much kid-vid, we get an ugly, mean-spirited lashing out by an adult who's apparently been forced by his kids to watch too many Barney videos.\nThis is a film living far too much in its own head.\nThe umpteenth summer skinny dip in Jerry Bruckheimer's putrid pond of retread action twaddle.\nNational Lampoon's Van Wilder may aim to be the next Animal House, but it more closely resembles this year's version of Tomcats.\nThe film thrusts the inchoate but already eldritch Christian Right propaganda machine into national media circles.\nDogtown is hollow, self-indulgent, and - worst of all - boring.\nA movie so bad that it quickly enters the pantheon of wreckage that includes Battlefield Earth and Showgirls.\nMore of a career curio than a major work.\nIt's just too bad the screenwriters eventually shoot themselves in the feet with cop flick cliches like an oily arms dealer, squad car pile-ups and the requisite screaming captain.\nCox is far more concerned with aggrandizing madness, not the man, and the results might drive you crazy.\nTo be influenced chiefly by humanity's greatest shame, reality shows -- reality shows for God's sake! -- is a crime that should be punishable by chainsaw.\nAs we have come to learn -- as many times as we have fingers to count on -- Jason is a killer who doesn't know the meaning of the word 'quit.' The filmmakers might want to look it up.\nA frustrating 'tweener' -- too slick, contrived and exploitative for the art houses and too cynical, small and decadent for the malls.\nWhat's surprising about this traditional thriller, moderately successful but not completely satisfying, is exactly how genteel and unsurprising the execution turns out to be.\nDrowning's too good for this sucker.\nAn instantly forgettable snow-and-stuntwork extravaganza that likely will be upstaged by an avalanche of more appealing holiday-season product.\nFrankly, it's pretty stupid. I had more fun with Ben Stiller's Zoolander, which I thought was rather clever. But there's plenty to offend everyone...\nLove Liza is a festival film that would have been better off staying on the festival circuit.\nThere are things to like about Murder By Numbers -- but, in the end, the disparate elements don't gel.\n...tackling a low-budget movie in which inexperienced children play the two main characters might not be the best way to cut your teeth in the film industry.\nQuite frankly, I can't see why any actor of talent would ever work in a McCulloch production again if they looked at how this movie turned out.\nMy precious new Star Wars movie is a lumbering, wheezy drag...\nThe innocence of holiday cheer ain't what it used to be.\nToo campy to work as straight drama and too violent and sordid to function as comedy, Vulgar is, truly and thankfully, a one-of-a-kind work.\nHorrid little propaganda film with fascinating connections not only to the Serbs themselves but also to a network of American right-wing extremists.\nShould have gone straight to video. It looks like an action movie, but it's so poorly made, on all levels, that it doesn't even qualify as a spoof of such.\nIt is supremely unfunny and unentertaining to watch middle-age and older men drink to excess, piss on trees, b.s. one another and put on a show in drag.\nConsider the film a celluloid litmus test for the intellectual and emotional pedigree of your date and a giant step backward for a director I admire.\nA boring, pretentious muddle that uses a sensational, real-life 19th-Century crime as a metaphor for -- well, I'm not exactly sure what -- and has all the dramatic weight of a raindrop.\nSheridan had a wonderful account to work from, but, curiously, he waters it down, turning grit and vulnerability into light reading.\nHeavy with flabby rolls of typical Toback machinations.\nIt is very difficult to care about the character, and that is the central flaw of the film.\nSnow Dogs finds its humour in a black man getting humiliated by a pack of dogs who are smarter than him\nWhole stretches of the film may be incomprehensible to moviegoers not already clad in basic black.\nReggio and Glass so rhapsodize cynicism, with repetition and languorous slo-mo sequences, that Glass's dirgelike score becomes a fang-baring lullaby.\nEnds up offering nothing more than the latest Schwarzenegger or Stallone flick would.\nThe film makes strong arguments regarding the social status of America's indigenous people, but really only exists to try to eke out an emotional tug of the heart, one which it fails to get.\nCharlize CHASES Kevin with a GUN. Courtney CHASES Stuart with a CELL PHONE. The sound of GUNFIRE and cell phones RINGING.\nIf The Tuxedo actually were a suit, it would fit Chan like a $99 bargain-basement special.\nParents beware; this is downright movie penance.\n...a complete shambles of a movie so sloppy, so uneven, so damn unpleasant that I can't believe any viewer, young or old, would have a good time here.\nHas nothing good to speak about other than the fact that it is relatively short, tries its best to hide the fact that Seagal's overweight and out of shape.\nA pathetically inane and unimaginative cross between XXX and Vertical Limit.\nImpeccably filmed, sexually charged, but ultimately lacking in substance, not to mention dragged down by a leaden closing act.\nFeels at times like a giant commercial for Universal Studios, where much of the action takes place.\nWhile the mystery unravels, the characters respond by hitting on each other.\nBritney Spears' phoniness is nothing compared to the movie's contrived, lame screenplay and listless direction.\nEvery sequel you skip will be two hours gained. Consider this review life-affirming.\nIf the movie were all comedy, it might work better. But it has an ambition to say something about its subjects, but not a willingness.\nThe movie, while beautiful, feels labored, with a hint of the writing exercise about it.\nTwenty-three movies into a mostly magnificent directorial career, Clint Eastwood's efficiently minimalist style finally has failed him. Big time.\nThis heist flick about young Brooklyn hoods is off the shelf after two years to capitalize on the popularity of Vin Diesel, Seth Green and Barry Pepper. It should have stayed there.\nThe film has a childlike quality about it. But the feelings evoked in the film are lukewarm and quick to pass.\nThe most opaque, self-indulgent and just plain goofy an excuse for a movie as you can imagine.\nIt's not a film to be taken literally on any level, but its focus always appears questionable.\nBig Fat Liar is little more than Home Alone raised to a new, self-deprecating level.\nThe movie is gorgeously made, but it is also somewhat shallow and art-conscious.\nThe only time 8 Crazy Nights comes close to hitting a comedic or satirical target is during the offbeat musical numbers.\nLoses its sense of humor in a vat of failed jokes, twitchy acting, and general boorishness.\nThere's a delightfully quirky movie to be made from curling, but Brooms isn't it.\nThe story suffers a severe case of oversimplification, superficiality and silliness.\nChamber of Secrets will find millions of eager fans. But if the essence of magic is its make-believe promise of life that soars above the material realm, this is the opposite of a truly magical movie.\nToo clever by about nine-tenths.\nHas all the hallmarks of a movie designed strictly for children's home video, a market so insatiable it absorbs all manner of lame entertainment, as long as 3-year-olds find it diverting.\nBears about as much resemblance to the experiences of most battered women as Spider-Man does to the experiences of most teenagers.\nToward the end Sum of All Fears morphs into a mundane '70s disaster flick.\nDirector Carl Franklin, so crisp and economical in One False Move, bogs down in genre cliches here.\nMendes still doesn't quite know how to fill a frame. Like the Hanks character, he's a slow study: The action is stilted and the tabloid energy embalmed.\nThis thing is just garbage.\nAs crimes go, writer-director Michael Kalesniko's How to Kill Your Neighbor's Dog is slight but unendurable.\nThere must be an audience that enjoys the Friday series, but I wouldn't be interested in knowing any of them personally.\nA bold (and lovely) experiment that will almost certainly bore most audiences into their own brightly colored dreams.\nAn uplifting, largely bogus story.\nAn empty exercise, a florid but ultimately vapid crime melodrama with lots of surface flash but little emotional resonance.\nIf you are curious to see the darker side of what's going on with young TV actors (Dawson Leery did what?!?), or see some interesting storytelling devices, you might want to check it out, but there's nothing very attractive about this movie.\nMy own minority report is that it stinks.\nTrying to make head or tail of the story in the hip-hop indie Snipes is enough to give you brain strain -- and the pay-off is negligible.\nThe script is high on squaddie banter, low on shocks.\n...if you, like me, think an action film disguised as a war tribute is disgusting to begin with, then you're in for a painful ride.\nWhile Solondz tries and tries hard, Storytelling fails to provide much more insight than the inside column of a torn book jacket.\nWith very little to add beyond the dark visions already relayed by superb recent predecessors like Swimming With Sharks and The Player, this latest skewering ... may put off insiders and outsiders alike.\n(Davis) wants to cause his audience an epiphany, yet he refuses to give us real situations and characters.\nWithout a fresh infusion of creativity, 4Ever is neither a promise nor a threat so much as wishful thinking.\n...unlike (Scorsese's Mean Streets), Ash Wednesday is essentially devoid of interesting characters or even a halfway intriguing plot.\nBeing unique doesn't necessarily equate to being good, no matter how admirably the filmmakers have gone for broke.\nA few hours after you've seen it, you forget you've been to the movies.\nwaydowntown may not be an important movie, or even a good one, but it provides a nice change of mindless pace in collision with the hot Oscar season currently underway.\nYes, I suppose it's lovely that Cal works out his issues with his dad and comes to terms with his picture-perfect life -- but World Traveler gave me no reason to care, so I didn't.\nShadyac, who belongs with the damned for perpetrating Patch Adams, trots out every ghost trick from The Sixth Sense to The Mothman Prophecies.\nThe photographer's show-don't-tell stance is admirable, but it can make him a problematic documentary subject.\nIt is not the first time that director Sara Sugarman stoops to having characters drop their pants for laughs and not the last time she fails to provoke them.\nI'd be hard pressed to think of a film more cloyingly sappy than Evelyn this year.\nNothing more than an amiable but unfocused bagatelle that plays like a loosely-connected string of acting-workshop exercises.\nmeanders between its powerful moments.\nWhat remains is a variant of the nincompoop Benigni persona, here a more annoying, though less angry version of the irresponsible Sandlerian manchild, undercut by the voice of the star of Road Trip.\nA backhanded ode to female camaraderie penned by a man who has little clue about either the nature of women or of friendship.\nPure of intention and passably diverting, His Secret Life is light, innocuous and unremarkable.\n...delivers few moments of inspiration amid the bland animation and simplistic story.\nTake away the controversy, and it's not much more watchable than a Mexican soap opera.\nIt's got the brawn, but not the brains.\nMindless and boring martial arts and gunplay with too little excitement and zero compelling storyline.\nA lot of talent is wasted in this crass, low-wattage endeavor.\nTo show these characters in the act and give them no feelings of remorse -- and to cut repeatedly to the flashback of the original rape -- is overkill to the highest degree.\n(T)oo many of these gross out scenes...\nAbout one in three gags in White's intermittently wise script hits its mark; the rest are padding unashamedly appropriated from the teen-exploitation playbook.\nLittle is done to support the premise other than fling gags at it to see which ones shtick.\nReno does what he can in a thankless situation, the film ricochets from humor to violence and back again, and Ryoko Hirosue makes us wonder if she is always like that.\nIf Jews were Catholics, this would be Catechism\nOne of those films that seems tailor made to air on pay cable to offer some modest amusements when one has nothing else to watch.\nThe big ending surprise almost saves the movie. It's too bad that the rest isn't more compelling.\nCharming, if overly complicated...\nSchneider's mugging is relentless and his constant need to suddenly transpose himself into another character undermines the story's continuity and progression.\nAll very stylish and beautifully photographed, but far more trouble than it's worth, with fantasy mixing with reality and actors playing more than one role just to add to the confusion.\nIt's probably not easy to make such a worthless film ...\nHope keeps arising that the movie will live up to the apparent skills of its makers and the talents of its actors, but it doesn't.\nHas no reason to exist, other than to employ Hollywood kids and people who owe favors to their famous parents.\nFor a guy who has waited three years with breathless anticipation for a new Hal Hartley movie to pore over, No Such Thing is a big letdown.\nConstantly slips from the grasp of its maker.\nSmothered by its own solemnity.\n'Christian Bale's Quinn (is) a leather clad grunge-pirate with a hairdo like Gandalf in a wind-tunnel and a simply astounding cor-blimey-luv-a-duck cockney accent.'\nMight be one of those vanity projects in which a renowned filmmaker attempts to show off his talent by surrounding himself with untalented people.\nAfter you laugh once (maybe twice), you will have completely forgotten the movie by the time you get back to your car in the parking lot.\nNot one moment in the enterprise didn't make me want to lie down in a dark room with something cool to my brow.\nIn the era of The Sopranos, it feels painfully redundant and inauthentic.\nThe overall vibe is druggy and self-indulgent, like a spring-break orgy for pretentious arts majors.\nBreen's script is sketchy with actorish notations on the margin of acting.\nThere's no question that Epps scores once or twice, but it's telling that his funniest moment comes when he falls about ten feet onto his head.\nIf only Merchant paid more attention the story.\nAt the one-hour mark, Herzog simply runs out of ideas and the pace turns positively leaden as the movie sputters to its inevitable tragic conclusion.\n...too contrived to be as naturally charming as it needs to be.\nA simpler, leaner treatment would have been preferable; after all, being about nothing is sometimes funnier than being about something.\nThe characters are based on stock clichés, and the attempt to complicate the story only defies credibility.\nEverything about it from the bland songs to the colorful but flat drawings is completely serviceable and quickly forgettable.\nNot the Great American Comedy, but if you liked the previous movies in the series, you'll have a good time with this one too.\nA domestic melodrama with weak dialogue and biopic cliches.\nMr. Goyer's loose, unaccountable direction is technically sophisticated in the worst way.\nThe movie is so thoughtlessly assembled.\nBenigni presents himself as the boy puppet Pinocchio, complete with receding hairline, weathered countenance and American Breckin Meyer's ridiculously inappropriate Valley Boy voice.\nplays like some corny television production from a bygone era\nThe end result is like cold porridge with only the odd enjoyably chewy lump.\nFor all the charm of Kevin Kline and a story that puts old-fashioned values under the microscope, there's something creepy about this movie.\nI was feeling this movie until it veered off too far into the Exxon zone, and left me behind at the station looking for a return ticket to realism.\nProducer John Penotti surveyed high school students...and came back with the astonishing revelation that ``they wanted to see something that didn't talk down to them.'' Ignoring that, he made Swimfan anyway\nNaipaul fans may be disappointed. Those who are not acquainted with the author's work, on the other hand, may fall fast asleep.\nHoffman waits too long to turn his movie in an unexpected direction, and even then his tone retains a genteel, prep-school quality that feels dusty and leatherbound.\nIf you're a Crocodile Hunter fan, you'll enjoy at least the ``real'' portions of the film. If you're looking for a story, don't bother.\nFull Frontal had no effect and elicited no sympathies for any of the characters. By that measure, it is a failure.\nA baffling mixed platter of gritty realism and magic realism with a hard-to-swallow premise.\nAn affable but undernourished romantic comedy that fails to match the freshness of the actress-producer and writer's previous collaboration, Miss Congeniality.\nSometimes this modest little number clicks, and sometimes it doesn't.\nLike a pack of dynamite sticks, built for controversy. The film is explosive, but a few of those sticks are wet.\nHas its charming quirks and its dull spots.\nAn admitted egomaniac, Evans is no Hollywood villain, and yet this grating showcase almost makes you wish he'd gone the way of Don Simpson.\nThe audience when I saw this one was chuckling at all the wrong times, and that's a bad sign when they're supposed to be having a collective heart attack.\nEveryone's to blame here.\nYou get the impression that writer and director Burr Steers knows the territory ... but his sense of humor has yet to lose the smug self-satisfaction usually associated with the better private schools.\nLess a study in madness or love than a study in schoolgirl obsession.\nRice never clearly defines his characters or gives us a reason to care about them.\nIt's a bizarre curiosity memorable mainly for the way it fritters away its potentially interesting subject matter via a banal script, unimpressive acting and indifferent direction.\nA slight and obvious effort, even for one whose target demographic is likely still in the single digits, age-wise.\nSex With Strangers will shock many with its unblinking frankness. But what is missing from it all is a moral. What is the filmmakers' point? Why did they deem it necessary to document all this emotional misery?\nYou see Robin Williams and psycho killer, and you think, hmmmmm. You see the movie and you think, zzzzzzzzz.\nDownright transparent is the script's endless assault of embarrassingly ham-fisted sex jokes that reek of a script rewrite designed to garner the film a ``cooler'' PG-13 rating.\nThe movie slides downhill as soon as macho action conventions assert themselves.\nFormulaic to the 51st power, more like.\nDraggin' about dragons\nHoward and his co-stars all give committed performances, but they're often undone by Howard's self-conscious attempts to find a 'literary' filmmaking style to match his subject.\nA respectable but uninspired thriller that's intelligent and considered in its details, but ultimately weak in its impact.\nJones helps breathe some life into the insubstantial plot, but even he is overwhelmed by predictability.\nThe movie just has too much on its plate to really stay afloat for its just under ninety minute running time.\nComes off more like a misdemeanor, a flat, unconvincing drama that never catches fire.\nOffers absolutely nothing I hadn't already seen.\n``Analyze That'' is one of those crass, contrived sequels that not only fails on its own, but makes you second-guess your affection for the original.\nYou might say Tykwer has done all that Heaven allows, if you wanted to make as anti-Kieslowski a pun as possible. Suffice to say its total promise is left slightly unfulfilled.\nComplex, sinuously plotted and, somehow, off-puttingly cold.\nFirst-time writer-director Dylan Kidd also has a good ear for dialogue, and the characters sound like real people.\n...an airless, prepackaged Julia Roberts wannabe that stinks so badly of hard-sell image-mongering you'll wonder if Lopez's publicist should share screenwriting credit.\nGoldmember has none of the visual wit of the previous pictures, and it looks as though Jay Roach directed the film from the back of a taxicab.\nCould as easily have been called 'Under Siege 3: In Alcatraz'...a cinematic corpse that never springs to life.\nIn comparison to his earlier films it seems a disappointingly thin slice of lower-class London life; despite the title...amounts to surprisingly little.\nLame Sweet Home leaves no Southern stereotype unturned.\nSlow, dry, poorly cast, but beautifully shot.\nThe jokes are sophomoric, stereotypes are sprinkled everywhere and the acting ranges from bad to bodacious.\nWill give many ministers and Bible-study groups hours of material to discuss. But mainstream audiences will find little of interest in this film, which is often preachy and poorly acted.\nIn its chicken heart, Crush goes to absurd lengths to duck the very issues it raises.\nThis long and relentlessly saccharine film is a clear case of preaching to the converted.\nThe film is flat.\nThe movie is a lumbering load of hokum but ... it's at least watchable.\nIt's a boom-box of a movie that might have been titled 'The Loud and the Ludicrous'...the pandering to a moviegoing audience dominated by young males is all too calculated.\nAn unbelievably stupid film, though occasionally fun enough to make you forget its absurdity.\nThe first Fatal Attraction was vile enough. Do we really need the Tiger Beat version?\nThis Bond film goes off the beaten path, not necessarily for the better.\nThe problem is that the movie has no idea of it is serious or not.\nWhen the fire burns out, we've only come face-to-face with a couple dragons and that's where the film ultimately fails.\nIt would work much better as a one-hour TV documentary.\nThe elements were all there but lack of a pyschological center knocks it flat.\nAnemic chronicle of money grubbing New Yorkers and their serial loveless hook ups.\nSimply doesn't have sufficient heft to justify its two-hour running time.\nAn unsuccessful attempt at a movie of ideas.\nQueen of the Damned as you might have guessed, makes sorry use of Aaliyah in her one and only starring role -- she does little here but point at things that explode into flame.\nThis toothless Dog, already on cable, loses all bite on the big screen.\nIt made me feel unclean, and I'm the guy who liked There's Something About Mary and both American Pie movies. Oh, and Booty Call.\nNot only is it hokey, manipulative and as bland as Wonder Bread dipped in milk, but it also does the absolute last thing we need Hollywood doing to us: It preaches.\nIt's so crammed with scenes and vistas and pretty moments that it's left a few crucial things out, like character development and coherence.\nServing Sara should be served an eviction notice at every theater stuck with it.\nDirector Roger Michell does so many of the little things right that it's difficult not to cuss him out severely for bungling the big stuff.\nA loud, low-budget and tired formula film that arrives cloaked in the euphemism 'urban drama.'\nThe movie has a script (by Paul Pender) made of wood, and it's relentlessly folksy, a procession of stagy set pieces stacked with binary oppositions.\nA pathetic exploitation film that tries to seem sincere, and just seems worse for the effort.\nAt some point, all this visual trickery stops being clever and devolves into flashy, vaguely silly overkill.\nDespite some charm and heart, this quirky soccer import is forgettable\nMeyjes's movie, like Max Rothman's future, does not work.\nWhat's needed so badly but what is virtually absent here is either a saving dark humor or the feel of poetic tragedy.\nSchneidermeister... Makin' a fool of himself... Losin' his fan base...\nAn ambitious, serious film that manages to do virtually everything wrong; sitting through it is something akin to an act of cinematic penance.\nNot once does it come close to being exciting.\nA Frankenstein mishmash that careens from dark satire to cartoonish slapstick, Bartleby performs neither one very well.\nIt plays like a big-budget, after-school special with a generous cast, who at times lift the material from its well-meaning clunkiness.\nThere's something not entirely convincing about The Quiet American. And that holds true for both the movie and the title character played by Brendan Fraser.\nOne of those strained caper movies that's hardly any fun to watch and begins to vaporize from your memory minutes after it ends.\nNeeded a little less bling-bling and a lot more romance.\nThe ending doesn't work ... but most of the movie works so well I'm almost recommending it, anyway -- maybe not to everybody, but certainly to people with a curiosity about how a movie can go very right, and then step wrong.\nIt's hard to believe these jokers are supposed to have pulled off four similar kidnappings before.\nI'm not exactly sure what this movie thinks it is about.\nCal is an unpleasantly shallow and immature character with whom to spend 110 claustrophobic minutes.\nSo brisk is Wang's pacing that none of the excellent cast are given air to breathe.\nThe bottom line, at least in my opinion, is Imposter makes a better short story than it does a film.\nSome elements of it really blow the big one, but other parts are decent.\nIt is just too bad the film's story does not live up to its style.\nUnless you're a fanatic, the best advice is: 'Scooby' don't.\nA cautionary tale about the folly of superficiality that is itself endlessly superficial.\nFor single digits kidlets Stuart Little 2 is still a no brainer. If you're looking to rekindle the magic of the first film, you'll need a stronger stomach than us.\nShreve's graceful dual narrative gets clunky on the screen, and we keep getting torn away from the compelling historical tale to a less-compelling soap opera.\nContains a few big laughs but many more that graze the funny bone or miss it altogether, in part because the consciously dumbed-down approach wears thin.\nNothing more than a widget cranked out on an assembly line to see if stupid Americans will get a kick out of goofy Brits with cute accents performing ages-old slapstick and unfunny tricks.\nThis is a film tailor-made for those who when they were in high school would choose the Cliff-Notes over reading a full-length classic.\nThe movie is undone by a filmmaking methodology that's just experimental enough to alienate the mainstream audience while ringing cliched to hardened indie-heads.\nA jumbled fantasy comedy that did not figure out a coherent game plan at scripting, shooting or post-production stages.\nA sad and rote exercise in milking a played-out idea -- a straight guy has to dress up in drag -- that shockingly manages to be even worse than its title would imply.\nPersonal Velocity ought to be exploring these women's inner lives, but it never moves beyond their surfaces.\nWe hate (Madonna) within the film's first five minutes, and she lacks the skill or presence to regain any ground.\nSounding like Arnold Schwarzenegger, with a physique to match, (Ahola) has a wooden delivery and encounters a substantial arc of change that doesn't produce any real transformation.\nTwo big things are missing -- anything approaching a visceral kick, and anything approaching even a vague reason to sit through it all.\nA fascinating but choppy documentary.\nScarcely worth a mention apart from reporting on the number of tumbleweeds blowing through the empty theatres graced with its company.\nThe doofus-on- the-loose banter of Welcome to Collinwood has a cocky, after-hours loopiness to it. And as with most late-night bull sessions, eventually the content isn't nearly as captivating as the rowdy participants think it is.\nToo stagey, talky -- and long -- for its own good.\nApparently reassembled from the cutting-room floor of any given daytime soap.\nThe sinister inspiration that fuelled DeVito's early work is confused in Death to Smoochy into something both ugly and mindless.\nDespite Auteuil's performance, it's a rather listless amble down the middle of the road, where the thematic ironies are too obvious and the sexual politics too smug.\nDirector Boris von Sychowski instead opts for a routine slasher film that was probably more fun to make than it is to sit through.\n...little more than a well-acted television melodrama shot for the big screen.\nNever comes together as a coherent whole.\nAn unintentionally surreal kid's picture ... in which actors in bad bear suits enact a sort of inter-species parody of a VH1 Behind the Music episode.\nFirst, for a movie that tries to be smart, it's kinda dumb. And second, what's with all the shooting?\nDon't even bother to rent this on video.\nThere is something in Full Frontal, I guess, about artifice and acting and how it distorts reality for people who make movies and watch them, but like most movie riddles, it works only if you have an interest in the characters you see.\nThis is the kind of movie that gets a quick release before real contenders arrive in September.\nNot counting a few gross-out comedies I've been trying to forget, this is the first film in a long time that made me want to bolt the theater in the first 10 minutes.\nPlays like one long, meandering sketch inspired by the works of John Waters and Todd Solondz, rather than a fully developed story.\nThe film doesn't have enough innovation or pizazz to attract teenagers, and it lacks the novel charm that made Spy Kids a surprising winner with both adults and younger audiences.\nA mawkish self-parody that plays like some weird Masterpiece Theater sketch with neither a point of view nor a compelling reason for being.\nAn average B-movie with no aspirations to be anything more.\nBartlett's hero remains a reactive cipher, when opening the man's head and heart is the only imaginable reason for the film to be made.\nGibney and Jarecki just want to string the bastard up.\nThe plot is plastered with one Hollywood cliche after another, most of which involve precocious kids getting the better of obnoxious adults.\nLess worrying about covering all the drama in Frida's life and more time spent exploring her process of turning pain into art would have made this a superior movie.\nA film that suffers because of its many excesses.\nToo bland and fustily tasteful to be truly prurient.\nIn any case, I would recommend Big Bad Love only to Winger fans who have missed her since 1995's Forget Paris. But even then, I'd recommend waiting for DVD and just skipping straight to her scenes.\nDepicts the sorriest and most sordid of human behavior on the screen, then laughs at how clever it's being.\nNijinsky says, 'I know how to suffer' and if you see this film you'll know too.\n'CQ may one day be fondly remembered as Roman Coppola's brief pretentious period before going on to other films that actually tell a story worth caring about\nThe only thing scary about feardotcom is that the filmmakers and studio are brazen enough to attempt to pass this stinker off as a scary movie.\n...the story simply putters along looking for astute observations and coming up blank.\nInstead of contriving a climactic hero's death for the beloved-major- character-who-shall- remain-nameless, why not invite some genuine spontaneity into the film by having the evil aliens' laser guns actually hit something for once?\nIt just didn't mean much to me and played too skewed to ever get a hold on (or be entertained by).\nThis action-thriller/dark comedy is one of the most repellent things to pop up in a cinematic year already littered with celluloid garbage.\nMIB II is a movie that makes it possible for the viewer to doze off for a few minutes or make several runs to the concession stand and/or restroom and not feel as if he or she has missed anything. That's because relatively nothing happens.\nNo amount of arty theorizing -- the special effects are 'German-Expressionist,' according to the press notes -- can render it anything but laughable.\nBlue Crush follows the formula, but throws in too many conflicts to keep the story compelling.\nBoyd's screenplay (co-written with Guardian hack Nick Davies) has a florid turn of phrase that owes more to Guy Ritchie than the Bard of Avon.\nThere's not a spark of new inspiration in it, just more of the same, done with noticeably less energy and imagination.\nJackson shamefully strolls through this mess with a smug grin, inexplicably wearing a kilt and carrying a bag of golf clubs over one shoulder.\nA moving picture that does not move.\nRuh-roh! Romething's really wrong with this ricture!\nIts salient points are simultaneously buried, drowned and smothered in the excesses of writer-director Roger Avary.\nI'm not sure these words have ever been together in the same sentence: This erotic cannibal movie is boring.\n'God help us, but Capra and Cooper are rolling over in their graves.'\n...an hour-and-a-half of inoffensive, unmemorable filler.\nIs it a comedy? A drama? A romance? A cartoon?\nZe movie starts out so funny, then she is nothing.\nDid the film inform and educate me? Yes. Did it move me to care about what happened in 1915 Armenia? No. And that is where Ararat went astray.\nIt's a bad sign in a thriller when you instantly know whodunit.\nHas a customarily jovial air but a deficit of flim-flam inventiveness.\nEight Legged Freaks won't join the pantheon of great monster/science fiction flicks that we have come to love...\nIt gets the details of its time frame right but it completely misses its emotions.\nWho, exactly, is fighting whom here? Ah, yes, that would be me: fighting off the urge to doze.\nA kilted Jackson is an unsettling sight, and indicative of his, if you will, out-of-kilter character, who rambles aimlessly through ill-conceived action pieces.\nContrived, awkward and filled with unintended laughs, the film shows signs that someone other than the director got into the editing room and tried to improve things by making the movie go faster.\nStarts out with tremendous promise, introducing an intriguing and alluring premise, only to fall prey to a boatload of screenwriting cliches that sink it faster than a leaky freighter.\nThe film lapses too often into sugary sentiment and withholds delivery on the pell-mell pyrotechnics its punchy style promises.\nThe only question ... is to determine how well the schmaltz is manufactured -- to assess the quality of the manipulative engineering. Average, at best, I'm afraid.\nThis movie is so bad, that it's almost worth seeing because it's so bad.\nA crisply made movie that is no more than mildly amusing.\nThis movie feel more like a non-stop cry for attention, than an attempt at any kind of satisfying entertainment.\nOverall, it's a pretty mediocre family film.\nLove may have been in the air onscreen, but I certainly wasn't feeling any of it.\nIn addition to the overcooked, ham-fisted direction, which has all the actors reaching for the back row, the dialogue sounds like horrible poetry.\nThe very definition of what critics have come to term an ``ambitious failure.''\nIt's as if De Palma spent an hour setting a fancy table and then served up Kraft Macaroni and Cheese.\nThe movie ends with outtakes in which most of the characters forget their lines and just utter 'uhhh,' which is better than most of the writing in the movie.\nWorthy of the gong.\nWhile certainly more naturalistic than its Australian counterpart, Amari's film falls short in building the drama of Lilia's journey.\nI found the movie as divided against itself as the dysfunctional family it portrays.\nThe soul-searching deliberateness of the film, although leavened nicely with dry absurdist wit, eventually becomes too heavy for the plot.\nThe movie doesn't add anything fresh to the myth.\nAs inept as big-screen remakes of The Avengers and The Wild Wild West.\nComes across as a relic from a bygone era, and its convolutions...feel silly rather than plausible.\nMoves in such odd plot directions and descends into such message-mongering moralism that its good qualities are obscured.\nIt's a very sincere work, but it would be better as a diary or documentary.\nOnce one experiences Mr. Haneke's own sadistic tendencies toward his audience, one is left with a sour taste in one's mouth, and little else.\nOops, she's really done it this time. That chirpy songbird Britney Spears has popped up with more mindless drivel.\nIt's a loathsome movie, it really is and it makes absolutely no sense.\nA chiller resolutely without chills.\nFor those of us who respond more strongly to storytelling than computer-generated effects, the new Star Wars installment hasn't escaped the rut dug by the last one.\nThe director mostly plays it straight, turning Leys' fable into a listless climb down the social ladder.\n``Bad'' is the operative word for ``Bad Company,'' and I don't mean that in a good way.\nThough Frida is easier to swallow than Julie Taymor's preposterous Titus, the eye candy here lacks considerable brio.\nDrumline is -- the mere suggestion, albeit a visually compelling one, of a fully realized story.\nThe whole movie is simply a lazy exercise in bad filmmaking that asks you to not only suspend your disbelief but your intelligence as well.\nThe film affords us intriguing glimpses of the insights gleaned from a lifetime of spiritual inquiry, but Ram Dass: Fierce Grace doesn't organize it with any particular insight.\nBilly Crystal and Robert De Niro sleepwalk through vulgarities in a sequel you can refuse.\nIt's loud and boring; watching it is like being trapped at a bad rock concert.\nMerely (and literally) tosses around sex toys and offers half-hearted paeans to empowerment that are repeatedly undercut by the brutality of the jokes, most at women's expense.\nIf you want a movie time trip, the 1960 version is a far smoother ride.\nTraffics in the kind of prechewed racial clichés that have already been through the corporate stand-up-comedy mill.\nThe story is -- forgive me -- a little thin, and the filmmaking clumsy and rushed.\n...grows decidedly flimsier with its many out-sized, out of character and logically porous action set pieces.\nI wish Windtalkers had had more faith in the dramatic potential of this true story. This would have been better than the fiction it has concocted, and there still could have been room for the war scenes.\nAggressive self-glorification and a manipulative whitewash. Stay for the credits and see a devastating comic impersonation by Dustin Hoffman that is revelatory.\nNone of the characters or plot-lines are fleshed-out enough to build any interest.\nAs social exposé, Skins has its heart in the right place, but that's not much to hang a soap opera on.\nThe whole film has this sneaky feel to it – as if the director is trying to dupe the viewer into taking it all as Very Important simply because the movie is ugly to look at and not a Hollywood product.\nThere's a bit of thematic meat on the bones of Queen of the Damned, as its origins in an Anne Rice novel dictate, but generally, it's a movie that emphasizes style over character and substance.\nThe only way to tolerate this insipid, brutally clueless film might be with a large dose of painkillers.\nThis one is certainly well-meaning, but it's also simple-minded and contrived.\nCoppola has made a film of intoxicating atmosphere and little else.\nBad and baffling from the get-go.\nA series of immaculately composed shots of Patch Adams quietly freaking out does not make for much of a movie.\nAt a time when we've learned the hard way just how complex international terrorism is, Collateral Damage paints an absurdly simplistic picture.\nThe impulses that produced this project ... are commendable, but the results are uneven.\nA well-acted movie that simply doesn't gel.\nLike a can of 2-day old Coke. You can taste it, but there's no fizz.\nThere's no excuse for following up a delightful, well-crafted family film with a computer-generated cold fish.\nBoth the crime story and the love story are unusual. But they don't fit well together and neither is well told.\nIt's both sitcomishly predictable and cloying in its attempts to be poignant.\nOther than a mildly engaging central romance, Hospital is sickly entertainment at best and mind-destroying cinematic pollution at worst.\nJaglom offers the none-too-original premise that everyone involved with moviemaking is a con artist and a liar.\nOutside of Burger's desire to make some kind of film, it's really unclear why this project was undertaken\nWas I scared? Only at the prospect of Beck's next project. Let's see, a haunted house, a haunted ship, what's next ... Ghost Blimp?\nA fragile framework upon which to hang broad, mildly fleshed-out characters that seem to have been conjured up only 10 minutes prior to filming.\nBy the time the plot grinds itself out in increasingly incoherent fashion, you might be wishing for a watch that makes time go faster rather than the other way around.\nSince Lee is a sentimentalist, the film is more worshipful than your random E! True Hollywood Story.\nWes Craven's presence is felt; not the Craven of 'A Nightmare on Elm Street' or 'The Hills Have Eyes,' but the sad schlock merchant of 'Deadly Friend.'\nSunshine State surveys the landscape and assesses the issues with a clear passion for sociology. But the cinematography is cloudy, the picture making becalmed.\nIt's one long bore.\nIt gets old quickly. Watch Barbershop again if you're in need of a Cube fix--this isn't worth sitting through.\nIt's leaden and predictable, and laughs are lacking.\n...a cinematic disaster so inadvertently sidesplitting it's worth the price of admission for the ridicule factor alone.\nSkip this dreck, rent Animal House and go back to the source.\nThe movie is a desperate miscalculation. It gives poor Dana Carvey nothing to do that is really funny, and then expects us to laugh because he acts so goofy all the time.\nWe just don't really care too much about this love story. In that setting, their struggle is simply too ludicrous and borderline insulting.\nThe Transporter bombards the viewer with so many explosions and side snap kicks that it ends up being surprisingly dull.\nUzumaki's interesting social parallel and defiant aesthetic seems a prostituted muse...\n'Men in Black II creates a new threat for the MIB, but recycles the same premise.\nLarge budget notwithstanding, the movie is such a blip on the year's radar screen that it's tempting just to go with it for the ride. But this time, the old MIB label stands for Milder Isn't Better.\nFeels familiar and tired.\nA retread of material already thoroughly plumbed by Martin Scorsese.\nInstead of making his own style, director Marcus Adams just copies from various sources – good sources, bad mixture\nCriminal conspiracies and true romances move so easily across racial and cultural lines in the film that it makes My Big Fat Greek Wedding look like an apartheid drama.\nA bore that tends to hammer home every one of its points.\nA story which fails to rise above its disgusting source material.\nIt's fitting that a movie as artificial and soulless as The Country Bears owes its genesis to an animatronic display at Disneyland.\nStarts as an intense political and psychological thriller but is sabotaged by ticking time bombs and other Hollywood-action cliches.\nCompletely creatively stillborn and executed in a manner that I'm not sure could be a single iota worse... a soulless hunk of exploitative garbage.\nAn uneven look into a grim future that doesn't come close to the level of intelligence and visual splendour that can be seen in other films based on Philip K. Dick stories.\nHorrible.\nThe disjointed mess flows as naturally as Jolie's hideous yellow 'do.\nBolstered by an astonishing voice cast (excepting Love Hewitt), an interesting racial tension, and a storyline that I haven't encountered since at least Pete's Dragon.\nAn authentically vague, but ultimately purposeless, study in total pandemonium.\nMakes a joke out of car chases for an hour and then gives us half an hour of car chases.\nAs the sulking, moody male hustler in the title role, (Franco) has all of Dean's mannerisms and self-indulgence, but none of his sweetness and vulnerability.\nThe only thing to fear about ``Fear Dot Com'' is hitting your head on the theater seat in front of you when you doze off thirty minutes into the film.\nIt's too interested in jerking off in all its Byzantine incarnations to bother pleasuring its audience.\n'Synthetic' is the best description of this well-meaning, beautifully produced film that sacrifices its promise for a high-powered star pedigree.\nIt concentrates far too much on the awkward interplay and utter lack of chemistry between Chan and Hewitt.\nImpostor can't think of a thing to do with these characters except have them run through dark tunnels, fight off various anonymous attackers, and evade elaborate surveillance technologies.\nJudd's characters ought to pick up the durable best seller Smart Women, Foolish Choices for advice.\nThe script has less spice than a rat burger and The Rock's fighting skills are more in line with Steven Seagal.\nThis ill-conceived and expensive project winds up looking like a bunch of talented thesps slumming it.\n... there's a choppy, surface-effect feeling to the whole enterprise.\nDoesn't get the job done, running off the limited chemistry created by Ralph Fiennes and Jennifer Lopez.\nA particularly joyless, and exceedingly dull, period coming-of-age tale.\nIt's impossible to indulge the fanciful daydreams of Janice Beard (Eileen Walsh) when her real-life persona is so charmless and vacant.\n...it wasn't the subject matter that ultimately defeated the film...It was the unfulfilling, incongruous, ``wait a second, did I miss something?'' ending.\nThis is a movie where the most notable observation is how long you've been sitting still.\nPoor editing, bad bluescreen, and ultra-cheesy dialogue highlight the radical action.\nIt's super- violent, super-serious and super-stupid.\nSo earnest and well-meaning, and so stocked with talent, that you almost forget the sheer, ponderous awfulness of its script.\nJust a string of stale gags, with no good inside dope, and no particular bite.\nIt's Splash without the jokes.\nThe Château would have been benefited from a sharper, cleaner script before it went in front of the camera. Not to mention a sharper, cleaner camera lens.\nShallow, noisy and pretentious.\nMorrissette has performed a difficult task indeed - he's taken one of the world's most fascinating stories and made it dull, lifeless, and irritating.\nGranddad of Le Nouvelle Vague, Jean-Luc Godard continues to baffle the faithful with his games of hide-and-seek.\nThis loud and thoroughly obnoxious comedy about a pair of squabbling working-class spouses is a deeply unpleasant experience.\nIt's better than The Phantom Menace. But unless you're an absolute raving Star Wars junkie, it isn't much fun.\nPhilosophically, intellectually and logistically a mess.\nA standard police-oriented drama that, were it not for De Niro's participation, would have likely wound up a TNT Original.\nCoupling disgracefully written dialogue with flailing bodily movements that substitute for acting, Circuit is the awkwardly paced soap opera-ish story.\nHollywood Ending just isn't very funny.\nThough clearly well-intentioned, this cross-cultural soap opera is painfully formulaic and stilted.\nA technical triumph and an extraordinary bore.\nI can easily imagine Benigni's Pinocchio becoming a Christmas perennial. Coal isn't as easy to come by as it used to be and this would be a worthy substitute for naughty children's stockings.\nTwo hours of junk.\nEnds up being mostly about ravishing costumes, eye-filling, wide-screen production design and Joan's wacky decision to stand by her man, no matter how many times he demonstrates that he's a disloyal satyr.\nSelf-congratulatory, misguided, and ill-informed, if nonetheless compulsively watchable.\nA clumsily manufactured exploitation flick, a style-free exercise in manipulation and mayhem.\nThe whole affair, true story or not, feels incredibly hokey... (it) comes off like a Hallmark commercial.\nWhat's missing is what we call the 'wow' factor.\nThe nicest thing that can be said about Stealing Harvard (which might have been called Freddy Gets Molested by a Dog) is that it's not as obnoxious as Tom Green's Freddie Got Fingered.\n... Tara Reid plays a college journalist, but she looks like the six-time winner of the Miss Hawaiian Tropic Pageant, so I don't know what she's doing in here ...\nThe young stars are too cute; the story and ensuing complications are too manipulative; the message is too blatant; the resolutions are too convenient.\nNormally, Rohmer's talky films fascinate me, but when he moves his setting to the past, and relies on a historical text, he loses the richness of characterization that makes his films so memorable.\nI highly recommend Irwin, but not in the way this film showcases him.\nIt's been 13 months and 295 preview screenings since I last walked out on a movie, but Resident Evil really earned my indignant, preemptive departure.\nThis picture is mostly a lump of run-of-the-mill profanity sprinkled with a few remarks so geared toward engendering audience sympathy that you might think he was running for office -- or trying to win over a probation officer.\nMalone does have a gift for generating nightmarish images that will be hard to burn out of your brain. But the movie's narrative hook is way too muddled to be an effectively chilling guilty pleasure.\nThough it goes further than both, anyone who has seen The Hunger or Cat People will find little new here, but a tasty performance from Vincent Gallo lifts this tale of cannibal lust above the ordinary.\nA Blair Witch- style adventure that plays like a bad soap opera, with passable performances from everyone in the cast.\nDiaz wears out her welcome in her most charmless performance\nIt is too bad that this likable movie isn't more accomplished. The actors try hard but come off too amateurish and awkward.\nThe plot has a number of holes, and at times it's simply baffling.\nAn ill-conceived jumble that's not scary, not smart and not engaging.\nBrainless, but enjoyably over-the-top, the retro gang melodrama, Deuces Wild represents fifties teen-gang machismo in a way that borders on rough-trade homo-eroticism.\nGets bogged down by an overly sillified plot and stop-and-start pacing.\n``What John does is heroic, but we don't condone it,'' one of the film's stars recently said, a tortuous comment that perfectly illustrates the picture's moral schizophrenia.\nLike coming into a long-running, well-written television series where you've missed the first half-dozen episodes and probably won't see the next six.\nIts generic villains lack any intrigue (other than their funny accents) and the action scenes are poorly delivered.\nDripping with cliche and bypassing no opportunity to trivialize the material.\nHard-core slasher aficionados will find things to like ... but overall the Halloween series has lost its edge.\nStiff and schmaltzy and clumsily directed.\nThe story the movie tells is of Brian De Palma's addiction to the junk-calorie suspense tropes that have all but ruined his career.\nToo many improbabilities and rose-colored situations temper what could've been an impacting film.\nGeneric slasher-movie nonsense, but it's not without style.\nWith tiny little jokes and nary an original idea, this sappy ethnic sleeper proves that not only blockbusters pollute the summer movie pool.\nIt sticks rigidly to the paradigm, rarely permitting its characters more than two obvious dimensions and repeatedly placing them in contrived, well-worn situations.\nEver see one of those comedies that just seem like a bad idea from frame one?\nOnce Ice-T sticks his mug in the window of the couple's BMW and begins haranguing the wife in bad stage dialogue, all credibility flies out the window.\nThe best drug addition movies are usually depressing but rewarding. Quitting, however, manages just to be depressing, as the lead actor phones in his autobiographical performance.\nIt would be great to see this turd squashed under a truck, preferably a semi.\nIn the end, all you can do is admire the ensemble players and wonder what the point of it is.\nFor most movies, 84 minutes is short, but this one feels like a life sentence.\nWhile Glover, the irrepressible eccentric of River's Edge, Dead Man and Back to the Future, is perfect casting for the role, he represents Bartleby's main overall flaw.\nShatner is probably the funniest person in the film, which gives you an idea just how bad it was.\nTries so hard to be quirky and funny that the strain is all too evident.\nAs immaculate as Stuart Little 2 is, it could be a lot better if it were, well, more adventurous.\nSimply a re-hash of the other seven films.\nWith jump cuts, fast editing and lots of pyrotechnics, Yu clearly hopes to camouflage how bad his movie is. He fails.\nI found myself more appreciative of what the director was trying to do than of what he had actually done.\nA very depressing movie of many missed opportunities.\nGoes on and on to the point of nausea.\nBy turns numbingly dull-witted and disquietingly creepy.\nBoy, has this franchise ever run out of gas.\nOne problem with the movie, directed by Joel Schumacher, is that it jams too many prefabricated story elements into the running time.\nThe comedy is nonexistent.\n...a bland, pretentious mess.\nIt's a pedestrian, flat drama that screams out 'amateur' in almost every frame.\nA bland animated sequel that hardly seems worth the effort.\nIt's not just the vampires that are damned in Queen of the Damned -- the viewers will feel they suffer the same fate.\nIf religious films aren't your bailiwick, stay away. Otherwise, this could be a passable date film.\nThis is the case of a pregnant premise being wasted by a script that takes few chances and manages to insult the intelligence of everyone in the audience.\nThe pace and the visuals are so hyped up that a curious sense of menace informs everything.\nStuffy, full of itself, morally ambiguous and nothing to shout about.\nIt is most of the things Costner movies are known for; it's sanctimonious, self-righteous and so eager to earn our love that you want to slap it.\nDon't let the subtitles fool you; the movie only proves that Hollywood no longer has a monopoly on mindless action.\nChai's structure and pacing are disconcertingly slack.\nTo be oblivious to the existence of this film would be very sweet indeed.\nThe director, with his fake backdrops and stately pacing, never settles on a consistent tone.\nOne just waits grimly for the next shock without developing much attachment to the characters.\nInstead of panoramic sweep, Kapur gives us episodic choppiness, undermining the story's emotional thrust.\nThe director seems to take an unseemly pleasure in (the characters') misery and at the same time to congratulate himself for having the guts to confront it.\nThis dubious product of a college-spawned (Colgate U.) comedy ensemble known as Broken Lizard plays like a mix of Cheech and Chong and CHiPs.\nThe movie doesn't think much of its characters, its protagonist, or of us.\nSuper Troopers is an odd amalgam of comedy genres, existing somewhere between the often literal riffs of early Zucker Brothers/Abrahams films, and the decidedly foul stylings of their post-modern contemporaries, The Farrelly Brothers.\n...will always be remembered for the 9-11 terrorist attacks. After seeing the film, I can tell you that there's no other reason why anyone should bother remembering it.\nMade me feel uneasy, even queasy, because (Solondz's) cool compassion is on the border of bemused contempt.\nAs a kind of colorful, dramatized PBS program, Frida gets the job done. But, for that, why not watch a documentary?\nWith minimal imagination, you could restage the whole thing in your bathtub.\nNights feels more like a quickie TV special than a feature film... It's not even a TV special you'd bother watching past the second commercial break.\nAlthough...visually striking and slickly staged, it's also cold,grey, antiseptic and emotionally desiccated.\nYou can see where Big Bad Love is trying to go, but it never quite gets there.\nFriday After Next is the kind of film that could only be made by African-Americans because of its broad racial insensitivity towards African-Americans.\nIt's not as awful as some of the recent Hollywood trip tripe ... but it's far from a groundbreaking endeavor.\nThe only thing ``swept away'' is the one hour and thirty-three minutes spent watching this waste of time.\nOne-sided documentary offers simplistic explanations to a very complex situation. ... Stylistically, the movie is a disaster.\nThe corpse count ultimately overrides what little we learn along the way about vicarious redemption.\nAs violent, profane and exploitative as the most offensive action flick you've ever seen.\nEgoyan's work often elegantly considers various levels of reality and uses shifting points of view, but here he has constructed a film so labyrinthine that it defeats his larger purpose.\nLife or Something Like It has its share of high points, but it misses too many opportunities.\nThis is a truly, truly bad movie.\nDespite bearing the Paramount imprint, it's a bargain-basement European pickup. What's hard to understand is why anybody picked it up. Wiser souls would have tactfully pretended not to see it and left it lying there\nBelievability wasn't one of the film's virtues.\nSewer rats could watch this movie and be so skeeved out that they'd need a shower.\nThe Santa Clause 2's plot may sound like it was co-written by Mattel executives and lobbyists for the tinsel industry.\nHis best film remains his shortest, The Hole, which makes many of the points that this film does but feels less repetitive.\nJust another disjointed, fairly predictable psychological thriller.\n...stumbles over every cheap trick in the book trying to make the outrage come even easier.\nEven the hastily and amateurishly drawn animation cannot engage.\nKung Pow is Oedekerk's realization of his childhood dream to be in a martial-arts flick, and proves that sometimes the dreams of youth should remain just that.\nBusy urban comedy is clearly not Zhang's forte, his directorial touch is neither light nor magical enough to bring off this kind of whimsy.\nNot completely loveable -- but what underdog movie since The Bad News Bears has been? -- but certainly hard to hate.\nA movie that can't get sufficient distance from Leroy's delusions to escape their maudlin influence.\nIt's Young Guns meets Goodfellas in this easily skippable hayseeds-vs.-greaseballs mob action-comedy.\nLouiso lets the movie dawdle in classic disaffected-indie-film mode, and brother Hoffman's script stumbles over a late-inning twist that just doesn't make sense.\nThe movie straddles the fence between escapism and social commentary, and on both sides it falls short.\nThe film is old-fashioned, occasionally charming and as subtle as boldface.\nCan't get enough of libidinous young city dwellers? Try this obscenely bad dark comedy, so crass that it makes Edward Burns' Sidewalks of New York look like Oscar Wilde.\nIn The New Guy, even the bull gets recycled.\nLargely, this is a movie that also does it by the numbers.\nOn top of a foundering performance, (Madonna's) denied her own athleticism by lighting that emphasizes every line and sag.\nThis is the first full scale WWII flick from Hong Kong's John Woo. He's not good with people.\nPatchy combination of soap opera, low-tech magic realism and, at times, ploddingly sociological commentary.\n(Stevens is) so stoked to make an important film about human infidelity and happenstance that he tosses a kitchen sink onto a story already overladen with plot conceits.\nSo boring that even its target audience talked all the way through it.\nOne of the more glaring signs of this movie's servitude to its superstar is the way it skirts around any scenes that might have required genuine acting from Ms. Spears.\nHollywood Ending is the most disappointing Woody Allen movie ever. He has a great cast and a great idea. But the execution is a flop with the exception of about six gags that really work.\n... generically, forgettably pleasant from start to finish.\nIt's just hard to believe that a life like this can sound so dull.\nWhen not wallowing in its characters' frustrations, the movie is busy contriving false, sitcom-worthy solutions to their problems.\nAn overstylized, puréed mélange of sex, psychology, drugs and philosophy. Sometimes entertaining, sometimes indulgent -- but never less than pure wankery.\n'Lovely and Amazing,' unhappily, is neither...excessively strained and contrived.\nRingu is a disaster of a story, full of holes and completely lacking in chills. Ignore the reputation, and ignore the film.\nThis one is a few bits funnier than Malle's dud, if only because the cast is so engagingly messing around like Slob City reductions of Damon Runyon crooks.\n'It's painful to watch Witherspoon's talents wasting away inside unnecessary films like Legally Blonde and Sweet Home Abomination, I mean, Alabama.'\nA plodding teen remake that's so mechanical you can smell the grease on the plot twists.\nTrying to figure out the rules of the Country Bear universe -- when are bears bears and when are they like humans, only hairier -- would tax Einstein's brain.\nEven in terms of the low-grade cheese standards on which it operates, it never quite makes the grade as tawdry trash.\nAmidst the action, the script carries Arnold (and the viewers) into the forbidden zone of sympathizing with terrorist motivations by presenting the ``other side of the story.''\nRife with nutty cliches and far too much dialogue.\nIt's a 100-year old mystery that is constantly being interrupted by Elizabeth Hurley in a bathing suit.\n...one big laugh, three or four mild giggles, and a whole lot of not much else.\nToo intensely focused on the travails of being Hal Hartley to function as pastiche, No Such Thing is Hartley's least accessible screed yet.\nKenneth Branagh's energetic sweet-and-sour performance as a curmudgeonly British playwright grounds this overstuffed, erratic dramedy in which he and his improbably forbearing wife contend with craziness and child-rearing in Los Angeles.\nDirector Uwe Boll and writer Robert Dean Klein fail to generate any interest in an unsympathetic hero caught up in an intricate plot that while cleverly worked out, cannot overcome blah characters.\nMs. Phoenix is completely lacking in charm and charisma, and is unable to project either Esther's initial anomie or her eventual awakening.\nThe movie fails to portray its literarily talented and notorious subject as anything much more than a dirty old man.\nA clichéd and shallow cautionary tale about the hard-partying lives of gay men.\nThe fetid underbelly of fame has never looked uglier.\nA little weak -- and it isn't that funny.\nWhile it is welcome to see a Chinese film depict a homosexual relationship in a mature and frank fashion, Lan Yu never catches dramatic fire.\nThe script boasts some tart TV-insider humor, but the film has not a trace of humanity or empathy.\nDespite the pyrotechnics, Narc is strictly by the book.\nIn both the writing and cutting, it does not achieve the kind of dramatic unity that transports you. You end up simply admiring this bit or that, this performance or that.\nCacoyannis is perhaps too effective in creating an atmosphere of dust-caked stagnation and labored gentility.\nWorth seeing once, but its charm quickly fades.\nThe original wasn't a good movie but this remake makes it look like a masterpiece!\nOne suspects that Craven endorses They simply because this movie makes his own look much better by comparison.\nGere gives a good performance in a film that doesn't merit it.\nYour appreciation of it will depend on what experiences you bring to it and what associations you choose to make.\nIncludes too much obvious padding.\nThere's no palpable chemistry between Lopez and male lead Ralph Fiennes, plus the script by Working Girl scribe Kevin Wade is workmanlike in the extreme.\nI'm not sure which half of Dragonfly is worse: The part where nothing's happening, or the part where something's happening, but it's stupid.\nDon't expect any subtlety from this latest entry in the increasingly threadbare gross-out comedy cycle.\nThe only camouflage Carvey should now be considering is a paper bag to wear over his head when he goes out into public, to avoid being recognized as the man who bilked unsuspecting moviegoers.\nShot like a postcard and overacted with all the boozy self-indulgence that brings out the worst in otherwise talented actors...\nSpain's greatest star wattage doesn't overcome the tumult of maudlin tragedy.\nConforms itself with creating a game of 'who's who' ... where the characters' moves are often more predictable than their consequences.\nLooks and feels like a low-budget hybrid of Scarface or Carlito's Way.\nThe script is a tired one, with few moments of joy rising above the stale material.\nSuffers from all the excesses of the genre.\nThe verdict: Two bodies and hardly a laugh between them.\nThe latest Adam Sandler assault and possibly the worst film of the year.\nDownbeat, period-perfect biopic hammers home a heavy-handed moralistic message.\nWhile the film is competent, it's also uninspired, lacking the real talent and wit to elevate it beyond its formula to the level of classic romantic comedy to which it aspires.\nThey ought to be a whole lot scarier than they are in this tepid genre offering.\nIt's harmless, diverting fluff. But it's hard to imagine a more generic effort in the genre.\nIt's just plain lurid when it isn't downright silly.\nComedy troupe Broken Lizard's first movie is very funny but too concerned with giving us a plot.\nPap invested in undergraduate doubling subtexts and ridiculous stabs at existentialism reminding of the discovery of the wizard of God in the fifth Trek flick.\nA horror movie with seriously dumb characters, which somewhat dilutes the pleasure of watching them stalked by creepy-crawly bug things that live only in the darkness.\nIt's a film with an idea buried somewhere inside its fabric, but never clearly seen or felt.\n'All in all, Reign of Fire will be a good (successful) rental.'\nOccasionally funny, sometimes inspiring, often boring.\nA movie in which two not very absorbing characters are engaged in a romance you can't wait to see end.\nThe predominantly amateur cast is painful to watch, so stilted and unconvincing are the performances.\nWho are 'they'? Well, they're 'they'. They're the unnamed, easily substitutable forces that serve as whatever terror the heroes of horror movies try to avoid. They exist for hushed lines like ``They're back!'', ``They're out there!'' and ``They're coming!''\nElegantly crafted but emotionally cold, a puzzle whose intricate construction one can admire but is difficult to connect with on any deeper level.\nWere Dylan Thomas alive to witness first-time director Ethan Hawke's strained Chelsea Walls, he might have been tempted to change his landmark poem to, 'Do Not Go Gentle Into That Good Theatre.'\nThe story has its redundancies, and the young actors, not very experienced, are sometimes inexpressive.\nI'm sure the filmmaker would disagree, but, honestly, I don't see the point. It's a visual Rorschach test and I must have failed.\nThe film is really closer to porn than a serious critique of what's wrong with this increasingly pervasive aspect of gay culture.\nMurder by Numbers just doesn't add up.\nClare Peploe's airless movie adaptation could use a little American Pie-like irreverence.\nVideo games are more involving than this mess.\nClayburgh and Tambor are charming performers; neither of them deserves Eric Schaeffer.\nA pale Xerox of other, better crime movies.\n...a hokey piece of nonsense that tries too hard to be emotional.\nIlliterate, often inert sci-fi action thriller.\nA perfect example of rancid, well-intentioned, but shamelessly manipulative movie making.\nThe adventure doesn't contain half the excitement of Balto, or quarter the fun of Toy Story 2.\nEssentially a collection of bits -- and they're all naughty.\nA mess. The screenplay does too much meandering, Norton has to recite bland police procedural details, Fiennes wanders around in an attempt to seem weird and distanced, Hopkins looks like a drag queen.\nThe screenplay by James Eric, James Horton and director Peter O'Fallon ... is so pat it makes your teeth hurt.\nBefore it takes a sudden turn and devolves into a bizarre sort of romantic comedy, Steven Shainberg's adaptation of Mary Gaitskill's harrowing short story ... is a brilliantly played, deeply unsettling experience.\nSolaris is rigid and evasive in ways that Soderbergh's best films, ``Erin Brockovich,'' ``Out of Sight'' and ``Ocean's Eleven,'' never were.\nSeems like something American and European gay movies were doing 20 years ago.\nIn the process of trimming the movie to an expeditious 84 minutes, director Roger Kumble seems to have dumped a whole lot of plot in favor of...outrageous gags.\nYou can see the would-be surprises coming a mile away, and the execution of these twists is delivered with a hammer. Thumbs down.\nThe characters are paper thin and the plot is so cliched and contrived that it makes your least favorite James Bond movie seem as cleverly plotted as The Usual Suspects.\n... del Toro maintains a dark mood that makes the film seem like something to endure instead of enjoy.\nThe movie eventually snaps under the strain of its plot contrivances and its need to reassure.\nThe real question this movie poses is not 'Who?' but 'Why?'\nNow here's a sadistic bike flick that would have made Vittorio De Sica proud.\nA movie that's about as overbearing and over-the-top as the family it depicts.\nA movie in which laughter and self-exploitation merge into jolly soft-porn 'empowerment.'\nOccasionally interesting but essentially unpersuasive, a footnote to a still evolving story.\nIf we're to slap protagonist Genevieve LePlouff because she's French, do we have that same option to slap her creators because they're clueless and inept?\nMoretti plays Giovanni, a psychiatrist who predictably finds it difficult to sustain interest in his profession after the family tragedy. Too predictably, in fact.\nAlternative medicine obviously has its merits ... but Ayurveda does the field no favors.\nThis thing works on no level whatsoever for me.\nIt follows the basic plot trajectory of nearly every Schwarzenegger film: Someone crosses Arnie. Arnie blows things up.\nIce Age posits a heretofore unfathomable question: Is it possible for computer-generated characters to go through the motions?\nAn incoherent jumble of a film that's rarely as entertaining as it could have been.\n...they missed the boat.\nMore dutiful than enchanting...terribly episodic and lacking the spark of imagination that might have made it an exhilarating treat.\nLaconic and very stilted in its dialogue, this indie flick never found its audience, probably because it's extremely hard to relate to any of the characters.\nThe comedy Death to Smoochy is a rancorous curiosity: a movie without an apparent audience.\nBarney's ideas about creation and identity don't really seem all that profound, at least by way of what can be gleaned from this three-hour endurance test built around an hour's worth of actual material.\nAffleck merely creates an outline for a role he still needs to grow into, a role that Ford effortlessly filled with authority.\nCinematic pyrotechnics aside, the only thing Avary seems to care about are mean giggles and pulchritude. It makes sense that he went back to school to check out the girls -- his film is a frat boy's idea of a good time.\nThe narrative is so consistently unimaginative that probably the only way to have saved the film is with the aid of those wisecracking Mystery Science Theater 3000 guys.\nNothing more or less than an outright bodice-ripper -- it should have ditched the artsy pretensions and revelled in the entertaining shallows.\nA living testament to the power of the eccentric and the strange. The fact that it isn't very good is almost beside the point.\nFeels less like a cousin to Blade Runner than like a bottom-feeder sequel in the Escape From New York series.\nWhat might have been acceptable on the printed page of Iles' book does not translate well to the screen.\nIf Oscar had a category called Best Bad Film You Thought Was Going To Be Really Awful But Wasn't, Guys would probably be duking it out with The Queen of the Damned for the honor.\nA poky and pseudo-serious exercise in sham actor workshops and an affected malaise.\nMediocre fable from Burkina Faso.\nFessenden has nurtured his metaphors at the expense of his narrative, but he does display an original talent.\nSince the movie is based on a Nicholas Sparks best seller, you know death is lurking around the corner, just waiting to spoil things.\nBottom-rung New Jack City wannabe.\nFincher takes no apparent joy in making movies, and he gives none to the audience.\nIt's mildly amusing, but I certainly can't recommend it.\nNicholas Nickleby celebrates the human spirit with such unrelenting Dickensian decency that it turned me (horrors!) into Scrooge.\nFear Dot Com is more frustrating than a modem that disconnects every 10 seconds.\nFull of flatulence jokes and mild sexual references, Kung Pow! is the kind of movie that's critic-proof, simply because it aims so low.\nMay cause you to bite your tongue to keep from laughing at the ridiculous dialog or the oh-so convenient plot twists.\nThere are just too many characters saying too many clever things and getting into too many pointless situations. Where's the movie here?\nA dark, dull thriller with a parting shot that misfires.\nLacking substance and soul, Crossroads comes up shorter than Britney's cutoffs.\nCassavetes thinks he's making Dog Day Afternoon with a cause, but all he's done is to reduce everything he touches to a shrill, didactic cartoon.\nBuries an interesting storyline about morality and the choices we make underneath such a mountain of clichés and borrowed images that it might more accurately be titled Mr. Chips off the Old Block.\nAlthough sensitive to a fault, it's often overwritten, with a surfeit of weighty revelations, flowery dialogue, and nostalgia for the past and roads not taken.\nIt's so badly made on every level that I'm actually having a hard time believing people were paid to make it.\nWithout non-stop techno or the existential overtones of a Kieslowski morality tale, Maelström is just another Winter Sleepers.\nNicks, seemingly uncertain what's going to make people laugh, runs the gamut from stale parody to raunchy sex gags to formula romantic comedy.\n'A' for creativity but comes across more as a sketch for a full-length comedy.\nIf there's one thing this world needs less of, it's movies about college that are written and directed by people who couldn't pass an entrance exam.\nThe script kicks in, and Mr. Hartley's distended pace and foot-dragging rhythms follow.\n(E)ventually, every idea in this film is flushed down the latrine of heroism.\nI am sorry that I was unable to get the full brunt of the comedy.\nNo telegraphing is too obvious or simplistic for this movie.\nLooks and feels like a project better suited for the small screen.\nIn its best moments, resembles a bad high school production of Grease, without benefit of song.\nIndifferently implausible popcorn programmer of a movie.\nIt's inoffensive, cheerful, built to inspire the young people, set to an unending soundtrack of beach party pop numbers and aside from its remarkable camerawork and awesome scenery, it's about as exciting as a sunburn.\nHis comedy premises are often hackneyed or just plain crude, calculated to provoke shocked laughter, without following up on a deeper level.\nChristina Ricci comedy about sympathy, hypocrisy and love is a misfire.\nAt times, the suspense is palpable, but by the end there's a sense that the crux of the mystery hinges on a technicality that strains credulity and leaves the viewer haunted by the waste of potential.\nThey should have called it Gutterball.\nThekids will probably stay amused at the kaleidoscope of big, colorful characters. Mom and Dad can catch some quality naptime along the way.\nIt's too self-important and plodding to be funny, and too clipped and abbreviated to be an epic.\nThe best that can be said about the work here of Scottish director Ritchie ... is that he obviously doesn't have his heart in it.\nLess dizzying than just dizzy, the jaunt is practically over before it begins.\nSlick piece of cross-promotion.\nTaylor appears to have blown his entire budget on soundtrack rights and had nothing left over for jokes.\nIt believes it's revealing some great human truths, when, in reality, it's churning ground that has long passed the point of being fertile.\nIt all drags on so interminably it's like watching a miserable relationship unfold in real time.\nVilleneuve spends too much time wallowing in Bibi's generic angst (there are a lot of shots of her gazing out windows).\n(T)here's only so much anyone can do with a florid, overplotted, Anne Rice rock 'n' roll vampire novel before the built-in silliness of the whole affair defeats them.\nIt's another video movie photographed like a film, with the bad lighting that's often written off as indie film naturalism.\nThe techno tux is good for a few laughs, as are Chan and Hewitt, but when such a good design turns out to be a cheap knockoff, we can't recommend anything but a rental for The Tuxedo.\nI got a headache watching this meaningless downer.\nApart from dazzling cinematography, we've seen just about everything in Blue Crush in one form or the other.\nToo much of the humor falls flat.\nDetox is ultimately a pointless endeavor.\nVan Wilder doesn't bring anything new to the proverbial table, but it does possess a coherence absent in recent crass-a-thons like Tomcats, Freddy Got Fingered, and Slackers.\nThe piquant story needs more dramatic meat on its bones.\nVery special effects, brilliantly bold colors and heightened reality can't hide the giant Achilles' heel in ``Stuart Little 2``: There's just no story, folks.\nThe plot combines The Blues Brothers and Almost Famous (but with bears, and a G rating), with an excruciating dollop of Disney sentimentality mixed in for good measure.\nNo way I can believe this load of junk.\n``Roger Michell (''Notting Hill``) directs a morality thriller.''\nIt's dumb, but more importantly, it's just not scary.\nThere is no pleasure in watching a child suffer. Just embarrassment and a vague sense of shame.\nThe movie's accumulated force still feels like an ugly knot tightening in your stomach. But is that knot from dramatic tension or a symptom of artistic malnutrition?\nEven with a green Mohawk and a sheet of fire-red flame tattoos covering his shoulder, however, Kilmer seems to be posing, rather than acting. And that leaves a hole in the center of The Salton Sea.\nThere's just no currency in deriding James Bond for being a clichéd, doddering, misogynistic boy's club.\nWhen the film ended, I felt tired and drained and wanted to lie on my own deathbed for a while.\nFull of witless jokes, dealing in broad stereotypes and outrageously unbelievable scenarios, and saddled with a general air of misogyny\nThe film's hackneyed message is not helped by the thin characterizations, nonexistent plot and pretentious visual style.\nThe Iditarod lasts for days - this just felt like it did.\nIt feels like an after-school special gussied up with some fancy special effects, and watching its rote plot points connect is about as exciting as gazing at an egg timer for 93 minutes.\nThis movie is maddening. It conveys a simple message in a visual style that is willfully overwrought.\nShould have been someone else-\nThe film is based on truth and yet there is something about it that feels incomplete, as if the real story starts just around the corner.\nWhy make a documentary about these marginal historical figures? Wouldn't one about their famous dad, author of Death in Venice, etc., be more valuable?\nThe lower your expectations, the more you'll enjoy it.\nRarely has leukemia looked so shimmering and benign.\n... is an arthritic attempt at directing by Callie Khouri. I had to look away - this was god awful.\nEven in this less-than-magic kingdom, Reese rules.\nVelocity represents everything wrong with ''independent film'' as a commodified, sold-out concept on the American filmmaking scene.\nJust one bad idea after another.\nBecause of an unnecessary and clumsy last scene, 'Swimfan' left me with a very bad feeling.\nThough Moonlight Mile is replete with acclaimed actors and actresses and tackles a subject that's potentially moving, the movie is too predictable and too self-conscious to reach a level of high drama.\nA movie that hovers somewhere between an acute character study and a trite power struggle.\nCorpus Collosum -- while undeniably interesting -- wore out its welcome well before the end credits rolled about 45 minutes in.\nThe last 20 minutes are somewhat redeeming, but most of the movie is the same teenage American road-trip drek we've seen before - only this time you have to read the fart jokes\nIt's hard to like a film about a guy who is utterly unlikeable, and Shiner, starring Michael Caine as an aging British boxing promoter desperate for a taste of fame and fortune, is certainly that.\nA by-the-numbers effort that won't do much to enhance the franchise.\nInvolves two mysteries -- one it gives away and the other featuring such badly drawn characters that its outcome hardly matters.\nOverall the film feels like a low-budget TV pilot that could not find a buyer to play it on the tube.\nIt's of the quality of a lesser Harrison Ford movie - Six Days, Seven Nights, maybe, or that dreadful Sabrina remake.\nIt appears that something has been lost in the translation to the screen.\nDespite all evidence to the contrary, this clunker has somehow managed to pose as an actual feature movie, the kind that charges full admission and gets hyped on TV and purports to amuse small children and ostensible adults.\nAn unclassifiably awful study in self- and audience-abuse.\nThis movie is something of an impostor itself, stretching and padding its material in a blur of dead ends and distracting camera work.\nHey Arnold! The Movie could have been made 40 years ago, and parents' appreciation of it may depend on whether they consider that a good thing.\nThis one is definitely one to skip, even for horror movie fanatics.\nExcessive, profane, packed with cartoonish violence and comic-strip characters.\nOnce the 50 year old Benigni appears as the title character, we find ourselves longing for the block of wood to come back.\nA working class ``us vs. them'' opera that leaves no heartstring untugged and no liberal cause unplundered.\nIf the movie succeeds in instilling a wary sense of 'there but for the grace of God,' it is far too self-conscious to draw you deeply into its world.\nThere are simply too many ideas floating around -- part farce, part Sliding Doors, part pop video -- and yet failing to exploit them.\nIt takes a strange kind of laziness to waste the talents of Robert Forster, Anne Meara, Eugene Levy, and Reginald VelJohnson all in the same movie.\nWe haven't seen such hilarity since Say It Isn't So!\nExpect the same-old, lame-old slasher nonsense, just with different scenery.\nThe Cold Turkey would've been a far better title.\nThe idea of 49-year-old Roberto Benigni playing the wooden boy Pinocchio is scary enough. The reality of the new live-action Pinocchio he directed, cowrote and starred in borders on the grotesque.\nThe ga-zillionth airhead movie about a wife in distress who resorts to desperate measures.\nZaidan's script has barely enough plot to string the stunts together and not quite enough characterization to keep the faces straight.\nTry as I may, I can't think of a single good reason to see this movie, even though everyone in my group extemporaneously shouted, 'Thank you!' when Leguizamo finally plugged an irritating character late in the movie.\nWhile it's nice to watch a movie that hasn't been focus-grouped into tedium, Yu's cinematic alchemy produces nearly as much lead as gold.\nIt treats women like idiots.\nThough Catch Me If You Can isn't badly made, the fun slowly leaks out of the movie.\nJust an average comedic dateflick but not a waste of time.\nA valueless kiddie paean to pro basketball underwritten by the NBA.\nImpostor has a handful of thrilling moments and a couple of good performances, but the movie doesn't quite fly. For starters, the story is just too slim.\nSo much facile technique, such cute ideas, so little movie.\nThe experience of going to a film festival is a rewarding one; the experiencing of sampling one through this movie is not.\nThe film takes the materials of human tragedy and dresses them in lovely costumes, Southern California locations and star power.\nIt has its moments of swaggering camaraderie, but more often just feels generic, derivative and done to death.\nAlmost gags on its own gore.\nHow do you spell cliché?\nIt's sweet, harmless, dumb, occasionally funny and about as compelling as a fishing show.\nThe moviegoing equivalent of going to a dinner party and being forced to watch the host and hostess's home video of their baby's birth.\nWhile (Hill) has learned new tricks, the tricks alone are not enough to salvage this lifeless boxing film.\nIn the real world, an actor this uncharismatically beautiful would have a résumé loaded with credits like ``Girl in Bar #3.''\nToo much of it feels unfocused and underdeveloped.\nUnder 15? A giggle a minute. Over age 15? Big Fat Waste of Time.\nHey Arnold! The Movie is what happens when you blow up small potatoes to 10 times their natural size, and it ain't pretty.\nSometimes seems less like storytelling than something the otherwise compelling director needed to get off his chest.\nThis is not the undisputed worst boxing movie ever, but it's certainly not a champion - the big loser is the audience.\nYou really have to wonder how on earth anyone, anywhere could have thought they'd make audiences guffaw with a script as utterly diabolical as this.\nIn the end, we are left with something like two ships passing in the night rather than any insights into gay love, Chinese society or the price one pays for being dishonest.\nChokes on its own depiction of upper-crust decorum.\nWell-nigh unendurable...though the picture strains to become cinematic poetry, it remains depressingly prosaic and dull.\nI thought my own watch had stopped keeping time as I slogged my way through Clockstoppers.\nWhile much of the cast has charm -- especially Allodi and Nolden -- the performers are sunk by the film's primitive approach to the mechanics of comedy.\nThis directorial debut from music video show-off Higuchinsky is all flash.\nYes, Ballistic is silly. Unfortunately, it's not silly fun unless you enjoy really bad movies.\nThe twist that ends the movie is the one with the most emotional resonance, but twists are getting irritating, and this is the kind of material where the filmmakers should be very careful about raising eyebrows.\nThe longer the movie goes, the worse it gets, but it's actually pretty good in the first few minutes.\nWhile it's genuinely cool to hear characters talk about early rap records (Sugar Hill Gang, etc.), the constant referencing of hip-hop arcana can alienate even the savviest audiences.\nNot only unfunny, but downright repellent.\nCare deftly captures the wonder and menace of growing up, but he never really embraces the joy of Fuhrman's destructive escapism or the grace-in-rebellion found by his characters.\nForced, familiar and thoroughly condescending.\nDoes little more than play an innocuous game of fill-in- the-blanks with a tragic past.\nK-19 exploits our substantial collective fear of nuclear holocaust to generate cheap Hollywood tension.\nHas a long and clunky ending ... which forces the audience to fidget through ten pseudo-serious minutes while waiting for the ending credits and the deleted scenes montage to break the audience's awkward silence\nA ragbag of promising ideas and failed narrative, of good acting and plain old bad filmmaking.\nWhaley's determination to immerse you in sheer, unrelenting wretchedness is exhausting.\nUncommonly stylish but equally silly...the picture fails to generate much suspense, nor does it ask searching enough questions to justify its pretensions.\nThe entire movie is about a boring, sad man being boring and sad.\nThe plot convolutions ultimately add up to nothing more than jerking the audience's chain.\nConfirms the nagging suspicion that Ethan Hawke would be even worse behind the camera than he is in front of it.\nMade with no discernible craft and monstrously sanctimonious in dealing with childhood loss.\nIt's a trifle of a movie, with a few laughs surrounding an unremarkable soft center.\nHolden Caulfield did it better.\nA synthesis of cliches and absurdities that seems positively decadent in its cinematic flash and emptiness.\nOh come on. Like you couldn't smell this turkey rotting from miles away.\nIf it's seldom boring, well, it's also rarely coherent.\nSimplistic fluff-ball of whimsy.\nNot exactly the Bees Knees\nIt does nothing new with the old story, except to show fisticuffs in this sort of stop-go slow motion that makes the gang rumbles look like they're being streamed over a 28K modem.\nThe kind of spectacularly misconceived enterprise that only a sophisticated cinephile could have perpetrated.\nMakes for some truly odd, at times confusing, kids entertainment ... but at least this time there's some centered storytelling to go along with all the weird stuff.\nThe film contains no good jokes, no good scenes, barely a moment when Carvey's Saturday Night Live-honed mimicry rises above the level of embarrassment.\nJacquot's rendering of Puccini's tale of devotion and double-cross is more than just a filmed opera. In his first stab at the form, Jacquot takes a slightly anarchic approach that works only sporadically.\nChabrol has taken promising material for a black comedy and turned it instead into a somber chamber drama.\nIt's as if you're watching a movie that was made in 1978 but not released then because it was so weak, and it has been unearthed and released now, when it has become even weaker.\nThis is nothing but familiar territory.\nIn execution, this clever idea is far less funny than the original, Killers From Space.\nOne of the more irritating cartoons you will see this, or any, year.\nA broad, melodramatic estrogen opera that's pretty toxic in its own right.\nToo slow, too long and too little happens.\nThe film's few ideas are stretched to the point of evaporation; the whole central section is one big chase that seems to have no goal and no urgency. It's just filler.\nSacrifices the value of its wealth of archival foot-age with its less-than-objective stance.\nUtterly lacking in charm, wit and invention, Roberto Benigni's Pinocchio is an astonishingly bad film.\nA hamfisted romantic comedy that makes our girl the hapless facilitator of an extended cheap shot across the Mason-Dixon line.\nScores no points for originality, wit, or intelligence. It's a cookie-cutter movie, a cut-and-paste job.\nThey takes a long time to get to its gasp-inducing ending.\nBarely gets off the ground.\nEven on those rare occasions when the narrator stops yammering, Miller's hand often feels unsure.\nPumpkin means to be an outrageous dark satire on fraternity life, but its ambitions far exceed the abilities of writer Adam Larson Broder and his co-director, Tony R. Abrams, in their feature debut.\nAt its best, Queen is campy fun like the Vincent Price horror classics of the '60s. At its worst, it implodes in a series of very bad special effects.\nFrom the opening scenes, it's clear that All About the Benjamins is a totally formulaic movie.\nIt takes a certain kind of horror movie to qualify as 'worse than expected,' but Ghost Ship somehow manages to do exactly that.\nOn the bright side, it contains Jesse Ventura's best work since the XFL.\nDespite impeccable acting ... and a script that takes some rather unexpected (even, at times, preposterous) turns, Love is just too, too precious in the end.\nA TV style murder mystery with a few big screen moments (including one that seems to be made for a different film altogether).\nBy getting myself wrapped up in the visuals and eccentricities of many of the characters, I found myself confused when it came time to get to the heart of the movie.\nToo often, the viewer isn't reacting to humor so much as they are wincing back in repugnance.\nDilbert without the right-on satiric humor.\nManages to show life in all of its banality when the intention is quite the opposite.\nDo not see this film.\nMinority Report is exactly what the title indicates, a report.\nDelivers the same old same old, tarted up with Latin flava and turned out by Hollywood playas.\nIf you believe any of this, I can make you a real deal on leftover Enron stock that will double in value a week from Friday.\nTo call The Other Side of Heaven ``appalling'' would be to underestimate just how dangerous entertainments like it can be.\nIn exactly 89 minutes, most of which passed as slowly as if I'd been sitting naked on an igloo, Formula 51 sank from quirky to jerky to utter turkey.\nIf only the story about a multi-million dollar con bothered to include the con.\nI'd have to say the star and director are the big problems here.\nWithout the dark spookiness of Crystal Lake Camp, the horror concept completely loses its creepy menace.\nIt's like every bad idea that's ever gone into an after-school special compiled in one place, minus those daytime programs' slickness and sophistication (and who knew they even had any?).\nWhile the Resident Evil games may have set new standards for thrills, suspense, and gore for video games, the movie really only succeeds in the third of these.\nFor close to two hours the audience is forced to endure three terminally depressed, mostly inarticulate, hyper dysfunctional families for the price of one.\nTo my taste, the film's comic characters come perilously close to being Amoses and Andys for a new generation.\nWhat the director can't do is make either of Val Kilmer's two personas interesting or worth caring about.\nIn an effort, I suspect, not to offend by appearing either too serious or too lighthearted, it offends by just being wishy-washy.\nIt's difficult to imagine the process that produced such a script, but here's guessing that spray cheese and underarm noises played a crucial role.\nHarland Williams is so funny in drag he should consider permanent sex-reassignment.\n...nothing scary here except for some awful acting and lame special effects.\nIt's not that Kung Pow isn't funny some of the time -- it just isn't any funnier than bad martial arts movies are all by themselves, without all Oedekerk's impish augmentation.\nA very long movie, dull in stretches, with entirely too much focus on meal preparation and igloo construction.\nNot an objectionable or dull film; it merely lacks everything except good intentions.\nA science-fiction pastiche so lacking in originality that if you stripped away its inspirations there would be precious little left.\nOnce (Kim) begins to overplay the shock tactics and bait-and-tackle metaphors, you may decide it's too high a price to pay for a shimmering picture postcard.\nThe words, 'Frankly, my dear, I don't give a damn,' have never been more appropriate.\nWhat's next: ``My Mother the Car?''\nAll the amped-up Tony Hawk-style stunts and thrashing rap-metal can't disguise the fact that, really, we've been here, done that.\nA sequel that's much too big for its britches.\nSo unremittingly awful that labeling it a dog probably constitutes cruelty to canines.\nWhat was once original has been co-opted so frequently that it now seems pedestrian.\nA perplexing example of promise unfulfilled, despite many charming moments.\nFor all the writhing and wailing, tears, rage and opium overdoses, there's no sense of actual passion being washed away in love's dissolution.\nA coarse and stupid gross-out.\na nightmare date with a half-formed wit done a great disservice by a lack of critical distance and a sad trust in liberal arts college bumper sticker platitudes.\nDoesn't offer much besides glib soullessness, raunchy language and a series of brutal set pieces ... that raise the bar on stylized screen violence.\nThere's something with potential here, but the movie decides, like Lavinia, to go the conservative route.\nIt's one pussy-ass world when even killer-thrillers revolve around group therapy sessions.\nThe stripped-down approach does give the film a certain timeless quality, but the measured pace and lack of dramatic inflection can also seem tedious.\nBut the power of these (subjects) is obscured by the majority of the film that shows a stationary camera on a subject that could be mistaken for giving a public oration, rather than contributing to a film's narrative.\nRarely has so much money delivered so little entertainment.\nTries to add some spice to its quirky sentiments but the taste is all too familiar.\nPaid In Full is so stale, in fact, that its most vibrant scene is one that uses clips from Brian De Palma's Scarface. That's a cheat.\nHarrison's Flowers puts its heart in the right place, but its brains are in no particular place at all.\nThis re-do is so dumb and so exploitative in its violence that, ironically, it becomes everything that the rather clumsy original was railing against.\nA string of rehashed sight gags based in insipid vulgarity.\nThe movie is Dawn of the Dead crossed with John Carpenter's Ghosts of Mars, with zombies not as ghoulish as the first and trains not as big as the second.\nBasically a static series of semi-improvised (and semi-coherent) raps between the stars.\nToo restrained to be a freak show, too mercenary and obvious to be cerebral, too dull and pretentious to be engaging...The Isle defies an easy categorization.\nAn unpredictable blend of gal-pal smart talk, romantic comedy and dark tragedy that bites off considerably more than writer/director John McKay can swallow.\nIt's one of those baseball pictures where the hero is stoic, the wife is patient, the kids are as cute as all get-out and the odds against success are long enough to intimidate, but short enough to make a dream seem possible.\n``The Time Machine'' is a movie that has no interest in itself. It doesn't believe in itself, it has no sense of humor...it's just plain bored.\n... a hollow joke told by a cinematic gymnast having too much fun embellishing the misanthropic tale to actually engage it.\nA morose little soap opera about three vapid, insensitive people who take turns hurting each other. It's a feature-length adaptation of one of those ``Can This Marriage Be Saved?'' columns from Ladies Home Journal...\nThe film's essentially over by the meet-cute.\nI'm sure if you're a Hartley fan, you might enjoy yourself... Me, I didn't care for it.\nIt's about following your dreams, no matter what your parents think. Socrates motions for hemlock.\nThe script isn't very good; not even someone as gifted as Hoffman (the actor) can make it work.\nWalter Hill's pulpy, stylized boxing melodrama Undisputed nearly overcomes its questionable in-the-ring match-up with solid fight choreography and gritty prison authenticity.\nIt has all the excitement of eating oatmeal.\nIt's hard to know whether or not to recommend this film because for every thing it does right there's at least one and occasionally two things it gets ever so wrong.\nAlthough there are several truly jolting scares, there's also an abundance of hackneyed dialogue and more silly satanic business than you can shake a severed limb at.\nI'll bet the video game is a lot more fun than the film.\nStar Trek: Nemesis meekly goes where nearly every Star Trek movie has gone before. Wince-inducing dialogue, thrift-shop costumes, prosthetic makeup by Silly Putty and Kmart blue-light-special effects all conspire to test Trekkie loyalty.\nLike all abstract art, the film does not make this statement in an easily accessible way, and -- unless prewarned -- it would be very possible for a reasonably intelligent person to sit through its tidal wave of imagery and not get this vision at all.\nI don't mind having my heartstrings pulled, but don't treat me like a fool.\n...although this idea is ``new'' the results are tired.\nI'm guessing the director is a magician. After all, he took three minutes of dialogue, 30 seconds of plot and turned them into a 90-minute movie that feels five hours long.\nAn unencouraging threefold expansion on the former MTV series, accompanying the stunt-hungry dimwits in a random series of collected gags, pranks, pratfalls, dares, injuries, etc.\nIts well of thorn and vinegar (and simple humanity) has long been plundered by similar works featuring the insight and punch this picture so conspicuously lacks.\nFor all its impressive craftsmanship, and despite an overbearing series of third-act crescendos, Lily Chou-Chou never really builds up a head of emotional steam.\nDon't be fooled by the impressive cast list - Eye See You is pure junk.\nNot since Freddy Got Fingered has a major release been so painful to sit through.\nThe documentary does little, apart from raising the topic, to further stoke the conversation.\nPlays like a volatile and overlong W magazine fashion spread.\nA better title, for all concerned, might be Swept Under the Rug.\nThis movie seems to have been written using Mad-libs. There can be no other explanation. Hilariously inept and ridiculous.\nVera's technical prowess ends up selling his film short; he smoothes over hard truths even as he uncovers them.\n(A) shapeless blob of desperate entertainment.\nFeels too formulaic and too familiar to produce the transgressive thrills of early underground work.\nGiven how heavy-handed and portent-heavy it is, this could be the worst thing Soderbergh has ever done.\na by-the-numbers patient/doctor pic that covers all the usual ground\nA dumb movie with dumb characters doing dumb things and you have to be really dumb not to see where this is going.\nStealing Harvard aspires to comedic grand larceny but stands convicted of nothing more than petty theft of your time.\nPretension, in its own way, is a form of bravery. For this reason and this reason only -- the power of its own steadfast, hoity-toity convictions -- Chelsea Walls deserves a medal.\nWith the exception of some fleetingly amusing improvisations by Cedric the Entertainer as Perry's boss, there isn't a redeeming moment here.\nIt's a grab bag of genres that don't add up to a whole lot of sense.\nMovie fans, get ready to take off...the other direction.\n(director) O'Fallon manages to put some lovely pictures up on the big screen, but his skill at telling a story -- he also contributed to the screenplay -- falls short.\nThe intent is almost exactly the same (as The Full Monty). All that's missing is the spontaneity, originality and delight.\nNo one but a convict guilty of some truly heinous crime should have to sit through The Master of Disguise.\nEven the finest chef can't make a hotdog into anything more than a hotdog, and Robert De Niro can't make this movie anything more than a trashy cop buddy comedy.\nThere's too much falseness to the second half, and what began as an intriguing look at youth fizzles into a dull, ridiculous attempt at heart-tugging.\nIt's not without its pleasures, but I'll stick with The Tune.\nMiller is playing so free with emotions, and the fact that children are hostages to fortune, that he makes the audience hostage to his swaggering affectation of seriousness.\nDespite the evocative aesthetics evincing the hollow state of modern love life, the film never percolates beyond a monotonous whine.\nMore maudlin than sharp.\nThis is an egotistical endeavor from the daughter of horror director Dario Argento (a producer here), but her raw performance and utter fearlessness make it strangely magnetic.\nIt's slow -- very, very slow. It's not the ultimate Depression-era gangster movie. That's pure PR hype.\nCharacters still need to function according to some set of believable and comprehensible impulses, no matter how many drugs they do or how much artistic license Avary employs.\nComes ... uncomfortably close to coasting in the treads of The Bicycle Thief.\nVisually rather stunning, but ultimately a handsome-looking bore, the true creativity would have been to hide Treasure Planet entirely and completely reimagine it.\nStealing Harvard is evidence that the Farrelly Bros. -- Peter and Bobby -- and their brand of screen comedy are wheezing to an end, along with Green's half-hearted movie career.\nThere seems to be no clear path as to where the story's going, or how long it's going to take to get there.\nIf you're a WWF fan, or you related to the people who watched the robots getting butchered in A.I., you'll probably like Rollerball.\nI don't think I laughed out loud once. And when you're talking about a slapstick comedy, that's a pretty big problem.\nIt's so mediocre, despite the dynamic duo on the marquee, that we just can't get no satisfaction.\nSlapstick buffoonery can tickle many a preschooler's fancy, but when it costs a family of four about $40 to see a film in theaters, why spend money on a dog like this when you can rent a pedigree instead?\n...turns so unforgivably trite in its last 10 minutes that anyone without a fortified sweet tooth will likely go into sugar shock.\nThe notion that bombing buildings is the funniest thing in the world goes entirely unexamined in this startlingly unfunny comedy.\nMy reaction in a word: disappointment. His last movie was poetically romantic and full of indelible images, but his latest has nothing going for it.\nIt kinda works and qualifies as cool at times, but is just too lame to work or be cool at others.\nSustains its dreamlike glide through a succession of cheesy coincidences and voluptuous cheap effects, not the least of which is Rebecca Romijn-Stamos.\nIntriguing documentary which is emotionally diluted by focusing on the story's least interesting subject.\nFeels haphazard, as if the writers mistakenly thought they could achieve an air of frantic spontaneity by simply tossing in lots of characters doing silly stuff and stirring the pot.\nFor each chuckle there are at least 10 complete misses, many coming from the amazingly lifelike Tara Reid, whose acting skills are comparable to a cardboard cutout.\nIn its own way, Joshua is as blasphemous and nonsensical as a Luis Buñuel film without the latter's attendant intelligence, poetry, passion, and genius.\nI've always dreamed of attending Cannes, but after seeing this film, it's not that big a deal.\nThe vintage is pure '87, with a halfhearted twist on its cautionary message: Fatal Attraction = don't have an affair with a nutjob; Unfaithful = don't if you're married to one.\nA workshop mentality prevails.\nIt cannot be enjoyed, even on the level that one enjoys a bad slasher flick, primarily because it is dull. Yes, dull.\nPumpkin wants to have it both ways.\nDirector Uwe Boll and the actors provide scant reason to care in this crude '70s throwback.\n(W)hile long on amiable monkeys and worthy environmentalism, Jane Goodall's Wild Chimpanzees is short on the thrills the oversize medium demands.\nOuter-space buffs might love this film, but others will find its pleasures intermittent.\nThis piece of Channel 5 grade trash is, quite frankly, an insult to the intelligence of the true genre enthusiast.\nAn occasionally funny, but overall limp, fish-out-of-water story.\nA bloated gasbag thesis grotesquely impressed by its own gargantuan aura of self-importance...\nIt's mighty tedious for the viewer who has to contend with unpleasant characters, hit-and-miss performances and awkwardly staged scenes.\nAs A Rumor of Angels reveals itself to be a sudsy tub of supernatural hokum, not even Ms. Redgrave's noblest efforts can redeem it from hopeless sentimentality.\nNew Best Friend's Playboy-mansion presentation of college life is laugh-out-loud ludicrous.\nan appalling 'Ace Ventura' rip-off that somehow manages to bring together Kevin Pollak, former wrestler Chyna and Dolly Parton. If any of them list this 'credit' on their resumes in the future, that'll be much funnier than anything in the film...\nThe humor is forced and heavy-handed, and occasionally simply unpleasant.\nScorsese at his best makes gangster films that are equally lovely but also relentlessly brutal and brutally intelligent; Perdition, meanwhile, reads more like Driving Miss Daisy than GoodFellas.\nWhile the script starts promisingly, it loses steam towards the middle and never really develops beyond attacking obvious target.\nAs the latest bid in the TV-to-movie franchise game, I Spy makes its big-screen entry with little of the nervy originality of its groundbreaking small-screen progenitor.\nThis isn't even Madonna's Swept Away. This is her Blue Lagoon.\nThe director knows how to apply textural gloss, but his portrait of sex-as-war is strictly sitcom.\n...the film suffers from a lack of humor (something needed to balance out the violence)...\nBurns never really harnesses to full effect the energetic cast.\nAn overemphatic, would-be wacky, ultimately tedious sex farce.\nHas all the depth of a wading pool.\nThis is the sort of burly action flick where one coincidence pummels another, narrative necessity is a drunken roundhouse, and whatever passes for logic is a factor of the last plot device left standing.\nThe so-inept- it's-surreal dubbing (featuring the voices of Glenn Close, Regis Philbin and Breckin Meyer) brings back memories of cheesy old Godzilla flicks.\n... the movie is just a plain old monster.\nIf this disposable tissue has one wild card, it's John Turturro, who's simply fab as a Spanish butler with a foot fetish.\nOne long string of cliches.\nFancy a real downer? (Leigh) lays it on so thick this time that it feels like a suicide race.\nProfessionally speaking, it's tempting to jump ship in January to avoid ridiculous schlock like this shoddy suspense thriller.\nNelson's brutally unsentimental approach ... sucks the humanity from the film, leaving behind an horrific but weirdly unemotional spectacle.\nWeaves a spell over you, with its disturbingly close-up look at damaged psyches and its subtle undercurrents of danger. But its awkward structure keeps breaking the spell.\nAt once half-baked and overheated.\nThere's a solid woman- finding-herself story somewhere in here, but you'd have to dig pretty deep to uncover it.\nI still can't relate to Stuart: He's a mouse, for cryin' out loud, and all he does is milk it with despondent eyes and whine that nobody treats him human enough.\n(Serry) wants to blend politics and drama, an admirable ambition. It's too bad that the helping hand he uses to stir his ingredients is also a heavy one.\nBy the miserable standards to which the slasher genre has sunk,...actually pretty good. Of course, by more objective measurements it's still quite bad.\nThe only entertainment you'll derive from this choppy and sloppy affair will be from unintentional giggles – several of them.\nSam Mendes has become valedictorian at the School for Soft Landings and Easy Ways Out.\nExactly what it claims to be -- a simple diversion for the kids.\nIts story may be a thousand years old, but why did it have to seem like it took another thousand to tell it to us?\nThe problem with this film is that it lacks focus. I sympathize with the plight of these families, but the movie doesn't do a very good job conveying the issue at hand.\nA momentary escape from the summer heat and the sedentary doldrums that set in at this time of year.\n... think of it as American Pie On Valium.\nDull, lifeless, and amateurishly assembled.\nPuportedly ``Based on True Events,'' a convolution of language that suggests it's impossible to claim that it is ``Based on a True Story'' with a straight face.\n...a plotline that's as lumpy as two-day old porridge...the filmmakers' paws, sad to say, were all over this ``un-bear-able'' project!\nIt's a bad thing when a movie has about as much substance as its end credits blooper reel.\nWith its dogged Hollywood naturalism and the inexorable passage of its characters toward sainthood, Windtalkers is nothing but a sticky-sweet soap.\nSome of it is clever, but it is never melodic/\nBetter to just call it ABC Kiarostami. For AIDS and Africa are nothing more than part of the scenery.\nNo aspirations to social import inform the movie version. This is a shameless sham, calculated to cash in on the popularity of its stars.\nManages to be somewhat well-acted, not badly art-directed and utterly unengaging no matter how hard it tries to be thrilling, touching or, yikes, uproarious.\nThis rather superficial arthouse middle-brow film knows how to please a crowd, and that's about all it does well.\nIt's clear the filmmakers weren't sure where they wanted their story to go, and even more clear that they lack the skills to get us to this undetermined destination.\nAs vulgar as it is banal.\nYou wonder why Enough wasn't just a music video rather than a full-length movie.\nThe film's tone and pacing are off almost from the get-go.\nThe talented and clever Robert Rodriguez perhaps put a little too much heart into his first film and didn't reserve enough for his second.\nMore whiny downer than corruscating commentary.\nTambor and Clayburgh make an appealing couple -- he's understated and sardonic, she's appealingly manic and energetic. Both deserve better.\nSuffocated by its fussy script and uptight characters, this musty adaptation is all the more annoying since it's been packaged and sold back to us by Hollywood.\nCoughs and sputters on its own postmodern conceit.\nA wildly inconsistent emotional experience.\nSit through this one, and you won't need a magic watch to stop time; your DVD player will do it for you.\nA sometimes tedious film.\nTeen movies have really hit the skids.\nThere are plot holes big enough for Shamu the killer whale to swim through.\n...plays like somebody spliced random moments of a Chris Rock routine into what is otherwise a cliche-riddled but self-serious spy thriller.\nNasty, ugly, pointless and depressing, even if you hate clowns.\nWhat is 100% missing here is a script of even the most elemental literacy, an inkling of genuine wit, and anything resembling acting.\ndoes paint some memorable images ..., but Makhmalbaf keeps her distance from the characters\nIt uses the pain and violence of war as background material for color.\njust not campy enough\nThe movie, directed by Mick Jackson, leaves no cliche unturned, from the predictable plot to the characters straight out of central casting.\nIt's everything you don't go to the movies for.\nLike watching a dress rehearsal the week before the show goes up: everything's in place but something's just a little off-kilter.\nThe affectionate loopiness that once seemed congenital to Demme's perspective has a tough time emerging from between the badly dated cutesy-pie mystery scenario and the newfangled Hollywood post-production effects.\nFor all its technical virtuosity, the film is so mired in juvenile and near-xenophobic pedagogy that it's enough to make one pine for the day when Godard can no longer handle the rigors of filmmaking.\nAmerican Chai encourages rueful laughter at stereotypes only an Indian-American would recognize. And the lesson, in the end, is nothing new.\nIt made me want to wrench my eyes out of my head and toss them at the screen.\nDue to some script weaknesses and the casting of the director's brother, the film trails off into inconsequentiality.\n...plot holes so large and obvious a marching band might as well be stomping through them in clown clothes, playing a college football fight song on untuned instruments.\nSo devoid of any kind of intelligible story that it makes films like XXX and Collateral Damage seem like thoughtful treatises\nCombining quick-cut editing and a blaring heavy metal much of the time, Beck seems to be under the illusion that he's shooting the latest System of a Down video.\nDragonfly has no atmosphere, no tension -- nothing but Costner, flailing away. It's a buggy drag.\nWorks hard to establish rounded characters, but then has nothing fresh or particularly interesting to say about them.\nThe action switches between past and present, but the material link is too tenuous to anchor the emotional connections that purport to span a 125-year divide.\nNonsensical, dull ``cyber-horror'' flick is a grim, hollow exercise in flat scares and bad acting.\nInstead of hiding Pinocchio from critics, Miramax should have hidden it from everyone.\nManages to be both repulsively sadistic and mundane.\nA great ensemble cast can't lift this heartfelt enterprise out of the familiar.\nThere ought to be a directing license, so that Ed Burns can have his revoked.\nThe structure the film takes may find Matt Damon and Ben Affleck once again looking for residuals as this officially completes a Good Will Hunting trilogy that was never planned.\nWhereas last year's exemplary Sexy Beast seemed to revitalize the British gangster movie, this equally brutal outing merely sustains it.\n... a boring parade of talking heads and technical gibberish that will do little to advance the Linux cause.\nGreen might want to hang onto that ski mask, as robbery may be the only way to pay for his next project.\nI can take infantile humor ... but this is the sort of infantile that makes you wonder about changing the director and writer's diapers.\nThere isn't nearly enough fun here, despite the presence of some appealing ingredients.\nThe tale of Tok (Andy Lau), a sleek sociopath on the trail of O (Takashi Sorimachi), the most legendary of Asian hitmen, is too scattershot to take hold.\nDirected in a paint-by-numbers manner.\nA cheerful enough but imminently forgettable rip-off of (Besson's) earlier work.\nA lackluster, unessential sequel to the classic Disney adaptation of J.M. Barrie's Peter Pan.\nSamira Makhmalbaf's new film Blackboards is much like the ethos of a stream of consciousness, although, it's unfortunate for the viewer that the thoughts and reflections coming through are torpid and banal\n...routine, harmless diversion and little else.\nLate Marriage's stiffness is unlikely to demonstrate the emotional clout to sweep U.S. viewers off their feet.\nThis time Mr. Burns is trying something in the Martin Scorsese street-realist mode, but his self-regarding sentimentality trips him up again.\nWhile there's something intrinsically funny about Sir Anthony Hopkins saying 'Get in the car, bitch,' this Jerry Bruckheimer production has little else to offer\nIt's hampered by a Lifetime-channel kind of plot and a lead actress who is out of her depth.\nLet's hope -- shall we? -- that the 'true story' by which All the Queen's Men is allegedly ``inspired'' was a lot funnier and more deftly enacted than what's been cobbled together onscreen.\nIs there a group of more self-absorbed women than the mother and daughters featured in this film? I don't think so. Nothing wrong with performances here, but the whiney characters bugged me.\nThere is very little dread or apprehension, and though I like the creepy ideas, they are not executed with anything more than perfunctory skill.\nIf you've ever entertained the notion of doing what the title of this film implies, what Sex With Strangers actually shows may put you off the idea forever.\nIn the end, the movie collapses on its shaky foundation despite the best efforts of director Joe Carnahan.\nAdults will wish the movie were less simplistic, obvious, clumsily plotted and shallowly characterized. But what are adults doing in the theater at all?\nSticky sweet sentimentality, clumsy plotting and a rosily myopic view of life in the WWII-era Mississippi Delta undermine this adaptation.\nIt's another stale, kill-by-numbers flick, complete with blade-thin characters and terrible, pun-laden dialogue.\nEvery time you look, Sweet Home Alabama is taking another bummer of a wrong turn.\nPartway through watching this saccharine, Easter-egg-colored concoction, you realize that it is made up of three episodes of a rejected TV show.\nThe overall effect is less like a children's movie than a recruitment film for future Hollywood sellouts.\nPortentous and pretentious, The Weight of Water is appropriately titled, given the heavy-handedness of it drama.\nA fitfully amusing romp that, if nothing else, will appeal to fans of Malcolm in the Middle and its pubescent star, Frankie Muniz.\nJason X is positively anti-Darwinian: nine sequels and 400 years later, the teens are none the wiser and Jason still kills on auto-pilot.\nTo say this was done better in Wilder's Some Like It Hot is like saying the sun rises in the east.\nAt the very least, if you don't know anything about Derrida when you walk into the theater, you won't know much more when you leave.\nThe actors are appealing, but Elysian Fields is idiotic and absurdly sentimental.\nAs 'chick flicks' go, this one is pretty miserable, resorting to string-pulling rather than legitimate character development and intelligent plotting.\nThe only excitement comes when the credits finally roll and you get to leave the theater.\nThere's no emotional pulse to Solaris. With an emotional sterility to match its outer space setting, Soderbergh's spectacular swing for the fence yields only a spectacular whiff.\nIt can't decide if it wants to be a mystery/thriller, a romance or a comedy.\nDenis O'Neill's script avoids the prime sports cliche, a last-second goal to win the championship, but it neglects few others.\nThe character of ZigZag is not sufficiently developed to support a film constructed around him.\nOne of those pictures whose promising, if rather precious, premise is undercut by amateurish execution.\nServing Sara doesn't serve up a whole lot of laughs.\nThe most hopelessly monotonous film of the year, noteworthy only for the gimmick of being filmed as a single unbroken 87-minute take.\nWith virtually no interesting elements for an audience to focus on, Chelsea Walls is a triple-espresso endurance challenge.\nDeadeningly dull, mired in convoluted melodrama, nonsensical jargon and stiff-upper-lip laboriousness.\nA misogynistic piece of filth that attempts to pass itself off as hip, young adult entertainment.\nLike the Chelsea's denizens ... Burdette's collage-form scenario tends to over-romanticize the spiritual desolation of the struggling artiste.\nIt's basically an overlong episode of Tales from the Crypt.\nThe film makes a fatal mistake: It asks us to care about a young man whose only apparent virtue is that he is not quite as unpleasant as some of the people in his life.\nAnother in-your-face wallow in the lower depths made by people who have never sung those blues.\nShaky close-ups of turkey-on-rolls, stubbly chins, liver spots, red noses and the filmmakers new bobbed do draw easy chuckles but lead nowhere.\nI can't quite recommend it -- it's too patched together -- but I almost can; it's the kind of movie that makes you want to like it.\nComplete lack of originality, cleverness or even visible effort\nThough Perry and Hurley make inspiring efforts to breathe life into the disjointed, haphazard script by Jay Scherick and David Ronn, neither the actors nor director Reginald Hudlin can make it more than fitfully entertaining.\nSomething akin to a Japanese Alice Through the Looking Glass, except that it seems to take itself far more seriously.\nIt takes talent to make a lifeless movie about the most heinous man who ever lived.\nOn the whole, the movie lacks wit, feeling and believability to compensate for its incessant coarseness and banality.\nThe story and the friendship proceeds in such a way that you're watching a soap opera rather than a chronicle of the ups and downs that accompany lifelong friendships.\nOffers very little genuine romance and even fewer laughs...a sad sitcom of a movie, largely devoid of charm.\nMakes for a pretty unpleasant viewing experience.\nThe movie fails to live up to the sum of its parts.\nAlthough Huppert's intensity and focus has a raw exhilaration about it, The Piano Teacher is anything but fun.\nIt showcases Carvey's talent for voices, but not nearly enough and not without taxing every drop of one's patience to get to the good stuff.\nBad. Very bad. Stultifyingly, dumbfoundingly, mind-numbingly bad.\nMay reawaken discussion of the Kennedy assassination but this fictional film looks made for cable rather than for the big screen.\nIf looking for a thrilling sci-fi cinematic ride, don't settle for this Imposter.\nNot really bad so much as distasteful: We need kidnapping suspense dramas right now like we need doomsday thrillers.\nThe result is a gaudy bag of stale candy, something from a Halloween that died.\nDavis ... is so enamored of her own creation that she can't see how insufferable the character is.\nThe Man From Elysian Fields is a cold, bliss-less work that groans along thinking itself some important comment on how life throws us some beguiling curves.\nThe messages of compassion and mercy are clearly, squarely and specifically expounded via computer animated Old Testament tale of Jonah and the Whale. Determined to be fun, and bouncy, with energetic musicals, the humor didn't quite engage this adult.\nHistorical dramas fused with love triangle is a well worn conceit. But this films lacks the passion required to sell the material.\nLong Time Dead? Not nearly long enough.\nNothing more substantial than a fitfully clever doodle.\nA solid film...but more conscientious than it is truly stirring.\nThere's not enough here to justify the almost two hours.\nThe X potion gives the quickly named Blossom, Bubbles and Buttercup supernatural powers that include extraordinary strength and laser-beam eyes, which unfortunately don't enable them to discern flimsy screenplays.\nPerceptive in its vision of nascent industrialized world politics as a new art form, but far too clunky, didactic and saddled with scenes that seem simply an ill fit for this movie.\nVerbinski implements every hack-artist trick to give us the ooky-spookies.\nMcConaughey's fun to watch, the dragons are okay, not much fire in the script.\nAn unwise amalgam of Broadcast News and Vibes.\nSkins has a right to yawp, and we have a right to our grains of salt.\nWho needs love like this?\nHit and miss as far as the comedy goes and a big ole' miss in the way of story.\nReturning aggressively to his formula of dimwitted comedy and even dimmer characters, Sandler, who also executive produces, has made a film that makes previous vehicles look smart and sassy.\nExists then as an occasionally insightful acting exercise.\nTrite, banal, cliched, mostly inoffensive.\nMattei is tiresomely grave and long-winded, as if circularity itself indicated profundity.\nIt's not original, and, robbed of the element of surprise, it doesn't have any huge laughs in its story of irresponsible cops who love to play pranks.\nWhenever its story isn't bogged down by idiocy involving the CIA and a lost U.S. satellite, Hunter -- starring Irwin and his American wife/colleague, Terri -- is a movie children should enjoy.\nIt offers little beyond the momentary joys of pretty and weightless intellectual entertainment.\nA sequence of ridiculous shoot-'em-up scenes.\nNothing in Waking Up in Reno ever inspired me to think of its inhabitants as anything more than markers in a screenplay.\nI'm just too bored to care.\nIrwin is a man with enough charisma and audacity to carry a dozen films, but this particular result is ultimately held back from being something greater.\nNot a stereotype is omitted nor a cliché left unsaid.\nAs befits its title, this PG-13-rated piffle is ultimately as threatening as the Snuggle Fabric Softener bear.\nAttempts by this ensemble film to impart a message are so heavy-handed that they instead pummel the audience.\nIt all feels like a Monty Python sketch gone horribly wrong.\nNervous breakdowns are not entertaining.\nScorsese doesn't give us a character worth giving a damn about.\nA beautifully made piece of unwatchable drivel.\nLike being trapped at a perpetual frat party...How can something so gross be so boring?\nThis is so bad.\nEven film silliness needs a little gravity, beyond good hair and humping.\nI felt sad for Lise not so much because of what happens as because she was captured by this movie when she obviously belongs in something lighter and sunnier, by Rohmer, for example.\nPrurient playthings aside, there's little to love about this English trifle.\nThis is a train wreck of an action film -- a stupefying attempt by the filmmakers to force-feed James Bond into the mindless XXX mold and throw 40 years of cinematic history down the toilet in favor of bright flashes and loud bangs.\nThe film flat lines when it should peak and is more missed opportunity and trifle than dark, decadent truffle.\nIt's played in the most straight-faced fashion, with little humor to lighten things up. The heavy-handed film is almost laughable as a consequence.\nVan Wilder brings a whole new meaning to the phrase 'comedy gag.' At least one scene is so disgusting that viewers may be hard pressed to retain their lunch.\nA disappointment for those who love alternate versions of the Bard, particularly ones that involve deep fryers and hamburgers.\nThe film tries too hard to be funny and tries too hard to be hip. The end result is a film that's neither.\nEvery nanosecond of the The New Guy reminds you that you could be doing something else far more pleasurable. Something like scrubbing the toilet. Or emptying rat traps. Or doing last year's taxes with your ex-wife.\nScooby Dooby Doo / And Shaggy too / You both look and sound great. / But Daphne, you're too Buff / Fred thinks he's tough / And Velma - wow, you've lost weight!\nIs the time really ripe for a warmed-over James Bond adventure, with a village idiot as the 007 clone?\nThere's enough melodrama in this Magnolia Primavera to make PTA proud yet director Muccino's characters are less worthy of Puccini than they are of daytime television.\nHowever it may please those who love movies that blare with pop songs, young science fiction fans will stomp away in disgust.\nThe humor isn't as sharp, the effects not as innovative, nor the story as imaginative as in the original. But it could have been worse.\nSome of their jokes work, but most fail miserably and in the end, Pumpkin is far more offensive than it is funny.\nEven horror fans will most likely not find what they're seeking with Trouble Every Day; the movie lacks both thrills and humor.\ncomes off like a rejected ABC Afterschool Special, freshened up by the dunce of a Screenwriting 101 class. ...Designed to provide a mix of smiles and tears, ``Crossroads'' instead provokes a handful of unintentional howlers and numerous yawns.\nit seems to me the film is about the art of ripping people off without ever letting them consciously know you have done so\nIt's just disappointingly superficial -- a movie that has all the elements necessary to be a fascinating, involving character study, but never does more than scratch the surface.\nThe title not only describes its main characters, but the lazy people behind the camera as well.\nSometimes it feels as if it might have been made in the '70s or '80s, and starred Chevy Chase and Goldie Hawn.\nSchaeffer has to find some hook on which to hang his persistently useless movies, and it might as well be the resuscitation of the middle-aged character.\nDemands too much of most viewers.\nThe story drifts so inexorably into cliches about tortured (and torturing) artists and consuming but impossible love that you can't help but become more disappointed as each overwrought new sequence plods on.\nIt should be mentioned that the set design and interiors of the haunted vessel are more than effectively creepy and moodily lit. So I just did.\nShamelessly sappy and, worse, runs away from its own provocative theme.\nThe Ring just left me cold and wet like I was out in the Seattle drizzle without rainwear.\nThe film seems a dead weight. The lack of pace kills it, although, in a movie about cancer, this might be apt.\nFor anyone who grew up on Disney's 1950 Treasure Island, or remembers the 1934 Victor Fleming classic, this one feels like an impostor.\nA clutchy, indulgent and pretentious travelogue and diatribe against... well, just stuff. Watching Scarlet Diva, one is poised for titillation, raw insight or both. Instead, we just get messy anger, a movie as personal therapy.\nMeandering, sub-aquatic mess: It's so bad it's good, but only if you slide in on a freebie.\nThe ending is a cop-out. What happens to John Q? I don't have an I Am Sam clue.\nHas the feel of an unedited personal journal.\nRemember when Bond had more glamour than clamor? No more.\nCry havoc and let slip the dogs of cheese, indeed.\nThis charmless nonsense ensues amid clanging film references that make Jay and Silent Bob's Excellent Adventure seem understated.\nIt doesn't quite deserve the gong, but there are more fascinating acts than ``Confessions of a Dangerous Mind.''\nThe subject of swinging still seems ripe for a documentary -- just not this one.\n... Hudlin is stuck trying to light a fire with soggy leaves.\nUnlike his directorial efforts, La Femme Nikita and The Professional, The Transporter lacks Besson's perspective as a storyteller.\nThe overall effect is so completely inane that one would have to be mighty bored to even think of staying with this for more than, say, ten... make that three minutes.\nMost of the supporting characters in Eastwood films are weak, as are most of the subplots. This one's weaker than most.\nAudiences will find no mention of political prisoners or persecutions that might paint the Castro regime in less than saintly tones.\nThe film takes too long getting to the good stuff, then takes too long figuring out what to do next.\nYou can practically smell the patchouli oil.\nTo say Analyze That is De Niro's best film since Meet the Parents sums up the sad state of his recent career.\nThe actors don't inhabit their roles -- they're trapped by them, forced to change behavior in bizarre unjustified fashion and spout dialog that consists mostly of platitudes.\nAn often-deadly boring, strange reading of a classic whose witty dialogue is treated with a baffling casual approach\nThis film was made to get laughs from the slowest person in the audience -- just pure slapstick with lots of inane, inoffensive screaming and exaggerated facial expressions.\nConsists of a plot and jokes done too often by people far more talented than Ali G\nAnother week, another gross-out college comedy--ugh.\nModerately involving despite bargain-basement photography and hackneyed romance.\nThere is no insight into the anguish of Heidi's life -- only a depiction of pain, today's version of Greek tragedy, the talk-show guest decrying her fate.\nThe editing is chaotic, the photography grainy and badly focused, the writing unintentionally hilarious, the direction unfocused, the performances as wooden.\nWhen (De Palma's) bad, he's really bad, and Femme Fatale ranks with the worst he has done.\nTadpole is emblematic of the witless ageism afflicting films: Young is cool, and too young is too cool.\nI doubt anyone will remember the picture by the time Christmas really rolls around, but maybe it'll be on video by then.\nUncertain in tone... a garbled exercise in sexual politics, a junior varsity Short Cuts by way of Very Bad Things.\nAll's well that ends well, and rest assured, the consciousness-raising lessons are cloaked in gross-out gags.\nThe only thing worse than your substandard, run-of-the-mill Hollywood picture is an angst-ridden attempt to be profound.\nIf you think that Jennifer Lopez has shown poor judgment in planning to marry Ben Affleck, wait till you see Maid in Manhattan.\nStars Matthew Perry and Elizabeth Hurley illicit more than a chuckle, and more jokes land than crash, but ultimately Serving Sara doesn't distinguish itself from the herd.\nIt's best to avoid imprisonment with the dull, nerdy folks that inhabit Cherish.\nCulkin exudes none of the charm or charisma that might keep a more general audience even vaguely interested in his bratty character.\nIn the end, Ted Bundy's only justification is the director's common but unexplored fascination with the frustrated maniac; there's no larger point, and little social context.\n... (like)channel surfing between the Discovery Channel and a late-night made-for-cable action movie.\nA movie that, rather than skip along the Seine, more or less slogs its way through soggy Paris, tongue uncomfortably in cheek.\nShot perhaps 'artistically' with handheld cameras and apparently no movie lights by Joaquin Baca-Asay, the low-budget production swings annoyingly between vertigo and opacity.\nImagine a really bad community theater production of West Side Story without the songs.\nSoul is what's lacking in every character in this movie and, subsequently, the movie itself.\nA one-trick pony whose few T&A bits still can't save itself from being unoriginal, unfunny and unrecommendable.\nThe worst kind of independent; the one where actors play dress down hicks and ponderously mope around trying to strike lightning as captured by their 1970s predecessors\nIt may be a prize winner, but Teacher is a bomb.\nThe production values are up there. The use of CGI and digital ink-and-paint make the thing look really slick. The voices are fine as well. The problem, it is with most of these things, is the script.\nIt's got its heart in the right place, but it also wilts after awhile.\nProves that a movie about goodness is not the same thing as a good movie.\nWell, it does go on forever.\nThis overproduced and generally disappointing effort isn't likely to rouse the Rush Hour crowd.\nTopkapi this is not.\nIf Shayamalan wanted to tell a story about a man who loses his faith, why didn't he just do it, instead of using bad sci-fi as window dressing?\nEthan Hawke has always fancied himself the bastard child of the Beatnik generation and it's all over his Chelsea Walls.\nEqual parts bodice-ripper and plodding costume drama.\nI'm not suggesting that you actually see it, unless you're the kind of person who has seen every Wim Wenders film of the '70s.\nWhile the film misfires at every level, the biggest downside is the paucity of laughter in what's supposed to be a comedy.\nIf you liked the 1982 film then, you'll still like it now.\nA 93-minute condensation of a 26-episode TV series, with all of the pitfalls of such you'd expect.\nGuillen rarely gets beneath the surface of things. She lists ingredients, but never mixes and stirs.\nAudiences can be expected to suspend their disbelief only so far -- and that does not include the 5 o'clock shadow on the tall wooden kid as he skips off to school.\nTo imagine the life of Harry Potter as a martial arts adventure told by a lobotomized Woody Allen is to have some idea of the fate that lies in store for moviegoers lured to the mediocrity that is Kung Pow: Enter the Fist.\nIt delivers some chills and sustained unease, but flounders in its quest for Deeper Meaning.\nCredibility levels are low and character development a non-starter.\nI would have preferred a transfer down the hall to Mr. Holland's class for the music, or to Robin Williams's lecture so I could listen to a teacher with humor, passion, and verve.\nFor the most part, the ingredients are there. But an unwillingness to explore beyond the surfaces of her characters prevents Nettelbeck's film from coming together.\nAn earnest, heartrending look at the divide between religious fundamentalists and their gay relatives. It's also heavy-handed and devotes too much time to bigoted views.\nA mawkish, implausible platonic romance that makes Chaplin's City Lights seem dispassionate by comparison.\nYes, one enjoys seeing Joan grow from awkward young woman to strong, determined monarch, but her love for the philandering Philip only diminishes her stature.\nIt's a film that hinges on its casting, and Glover really doesn't fit the part.\nThis is a throwaway, junk-food movie whose rap soundtrack was better tended to than the film itself.\n...with the candy-like taste of it fading faster than 25-cent bubble gum, I realized this is a throwaway movie that won't stand the test of time. It's a trifle.\nLiterally nothing in The Pool is new, but if you grew up on the stalker flicks of the 1980's this one should appease you for 90 minutes.\nArguably the year's silliest and most incoherent movie.\nAnyway, for one reason or another, Crush turns into a dire drama partway through. After that, it just gets stupid and maudlin. Too bad, but thanks to some lovely comedic moments and several fine performances, it's not a total loss.\nChao was Chen Kaige's assistant for years in China. He has not learnt that storytelling is what the movies are about.\nA mixed bag of a comedy that can't really be described as out of this world.\nThe film is a travesty of the genre and even as spoof takes itself too seriously.\nMarries the amateurishness of The Blair Witch Project with the illogic of Series 7: The Contenders to create a completely crass and forgettable movie.\nThe Piano Teacher is the sort of movie that discourages American audiences from ever wanting to see another foreign film.\nIf it's another regurgitated action movie you're after, there's no better film than Half Past Dead.\nSo what is the point? Lovingly choreographed bloodshed taking place in a pristine movie neverland, basically.\nThis is junk food cinema at its greasiest.\nWhen it's all wet, Blue Crush is highly enjoyable. When it's on dry land, though, this surfer-girl melodrama starts gasping like a beached grouper.\nMost new movies have a bright sheen. Some, like Ballistic, arrive stillborn... looking like the beaten, well-worn video box cover of seven years into the future.\nThe story is naturally poignant, but first-time screenwriter Paul Pender overloads it with sugary bits of business.\nYou see Robert De Niro singing - and dancing to - West Side Story show tunes. Choose your reaction: A.) That sure is funny! B.) That sure is pathetic!\nA sermonizing and lifeless paean to teenage dullards.\nThis dramatically shaky contest of wills only reiterates the old Hollywood saw: Evil is interesting and good is boring.\nBefore long, the film starts playing like General Hospital crossed with a Saturday Night Live spoof of Dog Day Afternoon.\nThe charms of willful eccentricity, at least as evidenced by this latest cinematic essay, are beginning to wear a bit thin.\nInstead of accurately accounting a terrible true story, the film's more determined to become the next Texas Chainsaw Massacre. But what about the countless other people who'd merely like to watch a solid tale about a universally interesting soul?\nA silly, self-indulgent film about a silly, self-indulgent filmmaker.\nScarlet Diva has a voyeuristic tug, but all in all it's a lot less sensational than it wants to be.\nThe character is too forced and overwritten to be funny or believable much of the time, and Clayburgh doesn't always improve the over-the-top mix.\nFlashy, pretentious and as impenetrable as Morvern's thick, working-class Scottish accent.\nA battle between bug-eye theatre and dead-eye matinee.\nThe movie is virtually without context -- journalistic or historical. What's worse is that Pelosi knows it.\n... instead go rent ``Shakes The Clown'', a much funnier film with a similar theme and an equally great Robin Williams performance.\nLame, haphazard teen comedy.\nIt's the kind of movie that ends up festooning U.S. art house screens for no reason other than the fact that it's in French (well, mostly) with English subtitles and is magically 'significant' because of that.\nThis miserable excuse of a movie runs on empty, believing Flatbush machismo will get it through.\nExpect to be reminded of other, better films, especially Seven, which director William Malone slavishly copies.\nNair stuffs the film with dancing, henna, ornamentation, and group song, but her narrative clichés and telegraphed episodes smell of old soap opera.\nIt's getting harder and harder to ignore the fact that Hollywood isn't laughing with us, folks. It's laughing at us.\nMight have been better off as a documentary, with less of Mr. Eyre's uninspired dramatics and more of his sense of observation and outrage.\nEvery good actor needs to do his or her own Hamlet. For Benigni it wasn't Shakespeare whom he wanted to define his career with but Pinocchio. It might as well have been Problem Child IV.\nArnold's jump from little screen to big will leave frowns on more than a few faces.\nBoth awful and appealing.\nThe lack of opposing viewpoints soon grows tiresome -- the film feels more like a series of toasts at a testimonial dinner than a documentary.\nNothing plot-wise is worth e-mailing home about.\nWe are left with a superficial snapshot that, however engaging, is insufficiently enlightening and inviting.\nHelmer DeVito...attempts to do too many things in this story about ethics, payola, vice, murder, kids' TV and revenge.\nIt wouldn't be my preferred way of spending 100 minutes or $7.00.\nI hated every minute of it.\n(T)hose same extremes prevent us from taking its message seriously, and the Stepford Wives mentality doesn't work in a modern context.\nObvious politics and rudimentary animation reduce the chances that the appeal of Hey Arnold! The Movie will reach far beyond its core demographic.\nThere's no mistaking the fact that this hybrid misses the impact of the Disney classic, and even that of the excellent 1934 MGM version.\nA simple, sometimes maddeningly slow film that has just enough charm and good acting to make it interesting, but is ultimately pulled under by the pacing and lack of creativity within.\nRoger Michell, who did an appealing job directing Persuasion and Notting Hill in England, gets too artsy in his American debut.\nThere is an almost poignant dimension to the way that every major stunt Seagal's character ... performs is shot from behind, as if it could fool us into thinking that we're not watching a double.\nAnthony Hopkins? Big deal! We've already seen the prequel to The Silence of the Lambs and Hannibal -- and it was better the first time.\nOstensibly celebrates middle-aged girl power, even as it presents friendship between women as pathetic, dysfunctional and destructive.\nIf this is an example of the type of project that Robert Redford's lab is willing to lend its imprimatur to, then perhaps it's time to rethink independent films.\nPumpkin sits in a patch somewhere between mirthless Todd Solondzian satire and callow student film.\nNot so much funny as aggressively sitcom-cute, it's full of throwaway one-liners, not-quite jokes, and a determined TV amiability that Allen personifies.\nIt's not that Waiting For Happiness is a bad film, because it isn't. It's just incredibly dull.\nThe sad thing about Knockaround Guys is its lame aspiration for grasping the coolness vibes when in fact the film isn't as flippant or slick as it thinks it is.\nA cumbersome and cliche-ridden movie greased with every emotional device known to man.\nDirector Ferzan Ozpetek creates an interesting dynamic with the members of this group, who live in the same apartment building. But he loses his focus when he concentrates on any single person.\nEgoyan's movie is too complicated to sustain involvement, and, if you'll excuse a little critical heresy, too intellectually ambitious.\nIt wants to be thought of as a subversive little indie film, but it has all the qualities of a modern situation comedy.\nDespite apparent motives to the contrary, it ends up being, like (Seinfeld's) revered TV show, about pretty much nothing.\nShadyac shoots his film like an M. Night Shyamalan movie, and he frequently maintains the same snail's pace; he just forgot to add any genuine tension.\nPlays less like a coming-of-age romance than an infomercial.\nThere are a few laughs and clever sight gags scattered about, but not enough to make this anything more than another big-budget bust.\nThe story's so preposterous that I didn't believe it for a second, despite the best efforts of everyone involved.\nI've heard that the fans of the first Men in Black have come away hating the second one. I wonder why. They felt like the same movie to me.\nDespite her relentless vim and winsome facial symmetry, Witherspoon is just too dialed-up to be America's Sweetheart.\nAn ultra-low-budget indie debut that smacks more of good intentions than talent.\nBirot is a competent enough filmmaker, but her story has nothing fresh or very exciting about it.\nDe Niro and McDormand give solid performances, but their screen time is sabotaged by the story's inability to create interest.\nEven those of a single digit age will be able to recognize that this story is too goofy... even for Disney.\nThat is essentially what's missing from Blackboards -- the sense of something bigger, some ultimate point.\nA compendium of Solondz's own worst instincts in under 90 minutes.\nIf the title is a Jeopardy question, then the answer might be ``How does Steven Seagal come across these days?'' or maybe ``How will you feel after an 88-minute rip-off of The Rock with action confined to slo-mo gun firing and random glass-shattering?''\nIt is a comedy that's not very funny and an action movie that is not very thrilling (and an uneasy alliance, at that).\nThe story is familiar from its many predecessors; like them, it eventually culminates in the not-exactly -stunning insight that crime doesn't pay.\nYou'll have more fun setting fire to yourself in the parking lot. You'll be more entertained getting hit by a bus.\nDissing a Bond movie is quite like calling a dog stupid, but when it has the temerity to run over two hours, you feel like winding up with a kick.\nRitchie's treatment of the class reversal is majorly ham-fisted, from the repetitive manifestos that keep getting thrown in people's faces to the fact Amber is such a joke.\nFlat, but with a revelatory performance by Michelle Williams.\nLittle more than a frothy vanity project.\nThe film goes from being an unusual sci-fi character study to a chase flick that detracts from its ending.\nVerbinski substitutes atmosphere for action, tedium for thrills.\nFor all its surface frenzy, High Crimes should be charged with loitering -- so much on view, so little to offer.\nThe Sum of All Fears is almost impossible to follow -- and there's something cringe-inducing about seeing an American football stadium nuked as pop entertainment.\nAlex Nohe's documentary plays like a travelogue for what mostly resembles a real-life, big-budget NC-17 version of Tank Girl.\nThe title Trapped turns out to be a pretty fair description of how you feel while you're watching this ultra-manipulative thriller.\nThe appeal of the vulgar, sexist, racist humour went over my head or -- considering just how low brow it is -- perhaps it snuck under my feet.\nThe story really has no place to go since Simone is not real--she can't provide any conflict.\nIHOPs don't pile on this much syrup.\nFor the most part, I Spy was an amusing lark that will probably rank as one of Murphy's better performances in one of his lesser-praised movies.\nfocuses on Joan's raging hormones and sledgehammers the audience with Spanish inquisitions about her ``madness'' so much that I became mad that I wasted 123 minutes and $9.50 on this 21st century torture device.\nThis series should have died long ago, but they keep bringing it back another day as punishment for paying money to see the last James Bond movie.\nA bit of an unwieldy mess.\nWith a story as bizarre and mysterious as this, you don't want to be worrying about whether the ineffectual Broomfield is going to have the courage to knock on that door.\nThe filmmakers juggle and juxtapose three story lines but fail to come up with one cogent point, unless it's that life stinks, especially for sensitive married women who really love other women.\nThe movie feels like it's going to be great, and it carries on feeling that way for a long time, but takeoff just never happens.\nA gimmick in search of a movie: how to get Carvey into as many silly costumes and deliver as many silly voices as possible, plot mechanics be damned.\n...the last time I saw a theater full of people constantly checking their watches was during my SATs.\n...fifty minutes of tedious adolescent melodramatics followed by thirty-five minutes of inflated nonsense.\n...lacks the punch and verve needed to make this genre soar.\nIt's often faintly amusing, but the problems of the characters never become important to us, and the story never takes hold.\nIt's tough, astringent, darkly funny and... well, it's also generic, untidy, condescending and mild of impact rather than stunning.\nLargely a for-fans artifact.\nThere's no denying the elaborateness of the artist's conceptions, nor his ability to depict them with outrageous elan, but really the whole series is so much pretentious nonsense, lavishly praised by those who equate obscurity with profundity.\nCharacters wander into predictably treacherous situations even though they should know better.\nThere's plenty of style in Guillermo Del Toro's sequel to the 1998 hit but why do we need 117 minutes to tell a tale that simply can't sustain more than 90 minutes.\n(I)f you've been to more than one indie flick in your life, chances are you've already seen this kind of thing.\nFirst-time director João Pedro Rodrigues' unwillingness to define his hero's background or motivations becomes more and more frustrating as the film goes on.\nNo reason for anyone to invest their hard-earned bucks into a movie which obviously didn't invest much into itself either.\nA strong first quarter, slightly less so second quarter, and average second half.\nA boring, wincingly cute and nauseatingly politically correct cartoon guaranteed to drive anyone much over age 4 screaming from the theater.\nThe vampire thriller Blade II starts off as a wild hoot and then sucks the blood out of its fun – toward the end, you can feel your veins cringing from the workout.\nWhen the first few villians are introduced as ``Spider'' and ``Snake'' you know you're in for a real winner, creativity at its peak.\nAn Afterschool Special without the courage of its convictions.\nThe final result makes for adequate entertainment, I suppose, but anyone who has seen Chicago on stage will leave the theater feeling they've watched nothing but a pale imitation of the real deal.\n(Director) Byler may yet have a great movie in him, but Charlotte Sometimes is only half of one.\nSo few movies explore religion that it's disappointing to see one reduce it to an idea that fits in a sampler.\nIt's also clear from the start that The Transporter is running purely on adrenaline, and once the initial high wears off, the film's shortcomings start to shine through.\nWatching it is rather like viewing a long soap opera in which only the first episode was any good.\nIt's fun, but a psychological mess, with Austin Powers bumping his head on the way out of the closet.\nThere are touching moments in Etoiles, but for the most part this is a dull, dour documentary on what ought to be a joyful or at least fascinating subject.\nCould the whole plan here have been to produce something that makes Fatal Attraction look like a classic by comparison? That's the only sane rationale I can think of for Swimfan's existence.\nI didn't laugh at the ongoing efforts of Cube, and his skinny buddy Mike Epps, to make like Laurel and Hardy 'n the hood.\nThe only way this supernatural snore-fest could give anyone a case of the frights is if they were put to sleep by the movie and had a nightmare.\nI wonder what the reaction of Israelis will be to this supposedly evenhanded presentation.\nThe film would work much better as a video installation in a museum, where viewers would be free to leave. Immediately.\nHuman Nature initially succeeds by allowing itself to go crazy, but ultimately fails by spinning out of control.\n(It's) a prison soccer movie starring charismatic tough guy Vinnie Jones, but it had too much spitting for me to enjoy.\nNot even the Hanson Brothers can save it\nThe thriller side of this movie is falling flat, as the stalker doesn't do much stalking, and no cop or lawyer grasps the concept of actually investigating the case.\n...(a) strained comedy that jettisons all opportunities for Rock to make his mark by serving up the usual chaotic nonsense.\nA sour, nasty offering.\nFeels like one of those contrived, only-in -Hollywood productions where name actors deliver big performances created for the sole purpose of generating Oscar talk.\nObstacles are too easily overcome and there isn't much in the way of character development in the script.\nIt tells more than it shows.\nEarnest falls short of its Ideal predecessor largely due to Parker's ill-advised meddling with the timeless source material.\nThe film might have been more satisfying if it had, in fact, been fleshed out a little more instead of going for easy smiles.\nPretentious editing ruins a potentially terrific flick.\nNot every animated film from Disney will become a classic, but forgive me if I've come to expect more from this studio than some 79-minute after-school ``cartoon''.\nDo not, under any circumstances, consider taking a child younger than middle school age to this wallow in crude humor.\nNothing debases a concept comedy quite like the grinding of bad ideas, and Showtime is crammed full of them.\nMuch-anticipated and ultimately lackluster movie.\nThis is really just another genre picture.\nEach story on its own could have been expanded and worked into a compelling single feature, but in its current incarnation, Storytelling never quite gets over its rather lopsided conception.\nWilliam Shatner, as a pompous professor, is the sole bright spot...\nA trite psychological thriller designed to keep the audience guessing and guessing -- which is not to be confused with suspecting -- until it comes time to wrap things up and send the viewers home.\nNeither funny nor suspenseful nor particularly well-drawn.\nActing, particularly by Tambor, almost makes ``Never Again'' worthwhile, but (writer/director) Schaeffer should follow his titular advice\nBoth stars manage to be funny, but, like the recent I Spy, the star chemistry begs the question of whether random gags add up to a movie.\n``Collateral Damage'' goes by the numbers and reps decent action entertainment – until the silly showdown ending that forces the viewer to totally suspend disbelief\n'Enigma' is a good name for a movie this delibrately obtuse and unapproachable. A waste of good performances.\nA dreary, incoherent, self-indulgent mess of a movie in which a bunch of pompous windbags drone on inanely for two hours...a cacophony of pretentious, meaningless prattle.\nI kept thinking over and over again, 'I should be enjoying this.' But I wasn't.\nAs conceived by Mr. Schaeffer, Christopher and Grace are little more than collections of quirky traits lifted from a screenwriter's outline and thrown at actors charged with the impossible task of making them jell.\nLike so many other allegedly scary movies, it gets so tangled up in The Twist that it chokes the energy right out of the very audience it seeks to frighten.\nThe essential problem in Orange County is that, having created an unusually vivid set of characters worthy of its strong cast, the film flounders when it comes to giving them something to do.\nJust like Hearst's enormous yacht, it's slow and unwieldy and takes a long time to reach its destination.\nThere is not a character in the movie with a shred of plausibility, not an event that is believable, not a confrontation that is not staged, not a moment that is not false.\nWhere last time jokes flowed out of Cho's life story, which provided an engrossing dramatic through line, here the comedian hides behind obviously constructed routines.\nWhy come up with something even quasi-original, when you can pillage from Shirley Jackson, Richard Matheson ... and puke up something like ROSE RED?\nA broadly played, lowbrow comedy in which the cast delivers mildly amusing performances and no farm animals were injured by any of the gags.\n... too gory to be a comedy and too silly to be an effective horror film.\nLacks heart, depth and, most of all, purpose.\nThough a bit of a patchwork in script and production, a glossy, rich green, environment almost makes the picture work.\nperfectly enjoyable, instantly forgettable, nothing to write home about.\nWasabi is slight fare indeed, with the entire project having the feel of something tossed off quickly (like one of Hubert's punches), but it should go down smoothly enough with popcorn.\nSomehow both wildly implausible and strangely conventional.\nThis ill-fitting Tuxedo is strictly off-the-rack.\nThe premise is in extremely bad taste, and the film's supposed insights are so poorly thought-out and substance-free that even a high school senior taking his or her first psychology class could dismiss them.\nSets up a nice concept for its fiftysomething leading ladies, but fails loudly in execution.\nKidman is really the only thing that's worth watching in Birthday Girl, a film by the stage-trained Jez Butterworth (Mojo) that serves as yet another example of the sad decline of British comedies in the post-Full Monty world.\nImagine the James Woods character from Videodrome making a home movie of Audrey Rose and showing it to the kid from The Sixth Sense and you've imagined The Ring.\nThis time Kaufman's imagination has failed him.\nAn intermittently pleasing but mostly routine effort.\nIt becomes gimmicky instead of compelling. ``Interview'' loses its overall sense of mystery and becomes a TV episode rather than a documentary that you actually buy into.\n'Unfaithful' cheats on itself and retreats to comfortable territory. Too bad.\nFrenetic but not really funny.\nTaken individually or collectively, the stories never add up to as much as they promise.\nIf you're not a prepubescent girl, you'll be laughing at Britney Spears' movie-starring debut whenever it doesn't have you impatiently squinting at your watch.\nA didactic and dull documentary glorifying software anarchy.\nSluggishly directed by episodic TV veteran Joe Zwick, it's a sitcom without the snap-crackle.\nYou could nap for an hour and not miss a thing.\nDirector Clare Kilner's debut is never as daft as it should have been.\nNew Best Friend shouldn't have gone straight to video; it should have gone straight to a Mystery Science Theater 3000 video.\nWallace seems less like he's been burning to tell a war story than he's been itching to somehow tack one together\nThe thrill is (long) gone.\nBegan life as a computer game, then morphed into a movie -- a bad one, of course.\nPart comedy, part drama, the movie winds up accomplishing neither in full, and leaves us feeling touched and amused by several moments and ideas, but nevertheless dissatisfied with the movie as a whole.\nGodawful boring slug of a movie.\nDull, if not devoid of wit, this shaggy dog longs to frisk through the back alleys of history, but scarcely manages more than a modest, snoozy charm.\nScene-by-scene, things happen, but you'd be hard-pressed to say what or why.\n... an unimaginative, nasty, glibly cynical piece of work.\nIt is, by conventional standards, a fairly terrible movie ... but it is also weirdly fascinating, a ready-made Eurotrash cult object. It is also, at times, curiously moving.\nThe tug-of-war at the core of Beijing Bicycle becomes weighed down with agonizing contrivances, overheated pathos and long, wistful gazes.\nVile and tacky are the two best adjectives to describe Ghost Ship.\nSome decent actors inflict big damage upon their reputations.\nBeing author Wells' great-grandson, you'd think filmmaker Simon Wells would have more reverence for the material. But this costly dud is a far cry from either the book or the beloved film.\nOffensive in the way it exploits the hot-button issue of domestic abuse for cheap thrills and disgusting in the manner it repeatedly puts a small child in jeopardy, treating her as little more than a prop to be cruelly tormented.\nMark me down as a non-believer in werewolf films that are not serious and rely on stupidity as a substitute for humor.\nThoughtless, random, superficial humour and a lot of very bad Scouse accents\nAspires for the piquant but only really achieves a sort of ridiculous sourness.\nAccuracy and realism are terrific, but if your film becomes boring, and your dialogue isn't smart, then you need to use more poetic license.\nFor all its highfalutin title and corkscrew narrative, the movie turns out to be not much more than a shaggy human tale.\nA soggy, cliche-bound epic-horror yarn that ends up being even dumber than its title.\nOne groan-inducing familiarity begets another.\nAlthough based on a real-life person, John, in the movie, is a rather dull person to be stuck with for two hours.\nGreat story, bad idea for a movie.\nWith Spy Kids 2: The Island of Lost Dreams writer/director/producer Robert Rodriguez has cobbled together a film that feels like a sugar high gone awry.\nThere is no entry portal in The Rules of Attraction, and I spent most of the movie feeling depressed by the shallow, selfish, greedy characters.\nIt's hard to tell with all the crashing and banging where the salesmanship ends and the movie begins.\n``My god, I'm behaving like an idiot!'' Yes, you are, Ben Kingsley.\nA dreadful live-action movie.\nDivertingly ridiculous, headbangingly noisy.\nAn earnest racial-issues picture that might have gotten respectful critical praise in a different era -- say, the '60s.\nA hideous, confusing spectacle, one that may well put the nail in the coffin of any future Rice adaptations.\nAll I can say is fuhgeddaboutit.\nBetween bedroom scenes, viewers may find themselves wishing they could roll over and take a nap.\nIf you collected all the moments of coherent dialogue, they still wouldn't add up to the time required to boil a four- minute egg.\nDespite all the talking, by the time the bloody climax arrives we still don't feel enough of an attachment to these guys to care one way or another.\nEvery bit as bogus as most Disney live action family movies are -- no real plot, no real conflict, no real point.\nA sensual performance from Abbass buoys the flimsy story, but her inner journey is largely unexplored and we're left wondering about this exotic-looking woman whose emotional depths are only hinted at.\nNever engaging, utterly predictable and completely void of anything remotely interesting or suspenseful.\nSpousal abuse is a major problem in contemporary society, but the film reduces this domestic tragedy to florid melodrama.\nOedekerk wrote Patch Adams, for which he should not be forgiven. Why he was given free reign over this project -- he wrote, directed, starred and produced -- is beyond me.\nThe creaking, rusty ship makes a fine backdrop, but the ghosts' haunting is routine.\nWhatever Eyre's failings as a dramatist, he deserves credit for bringing audiences into this hard and bitter place.\nScotland, PA. blurs the line between black comedy and black hole.\nIt tries too hard, and overreaches the logic of its own world.\nThe whole damn thing is ripe for the Jerry Springer crowd. It's all pretty cynical and condescending, too.\nI cry for I Spy -- or I would if this latest and laziest imaginable of all vintage-TV spinoffs were capable of engendering an emotional response of any kind.\nA boring, formulaic mix of serial killers and stalk'n'slash.\nWhat you would end up with if you took Orwell, Bradbury, Kafka, George Lucas and the Wachowski Brothers and threw them into a blender. But that's just the problem with it - the director hasn't added enough of his own ingredients.\nWith recent tensions rekindled by the Kathleen Soliah trial and the upcoming trial of SLA members Emily and William Harris, not to mention Sept. 11, its difficult these days to appreciate Fire's bright side.\nFlaunts its quirky excesses like a New Year's Eve drunk sporting a paper party hat.\nWrithing under dialogue like 'You're from two different worlds' and 'Tonight the maid is a lie and this, this is who you are,' this schlock-filled fairy tale hits new depths of unoriginality and predictability.\n...too slow, too boring, and occasionally annoying.\nIs there enough material to merit a documentary on the making of Wilco's last album?\nFaultlessly professional but finally slight.\nSchmaltzy and unfunny, Adam Sandler's cartoon about Hanukkah is numbingly bad, Little Nicky bad, 10 Worst List bad.\nIt's really yet another anemic and formulaic Lethal Weapon-derived buddy-cop movie, trying to pass off its lack of imagination as hip knowingness.\nScotland, Pa. is a strangely drab romp. Some studio pizazz might have helped.\nWhen Perry fists a bull at the Moore Farm, it's only a matter of time before he gets the upper hand in matters of the heart.\nThere's more scatological action in 8 Crazy Nights than a proctologist is apt to encounter in an entire career.\nToo loud, too long and too frantic by half, Die Another Day suggests that the Bond franchise has run into a creative wall that 007 cannot fly over, tunnel under or barrel through.\nThe cartoon is about as true to the spirit of the Festival of Lights as Mr. Deeds was to that of Frank Capra.\n...the sum of the parts equals largely a confused mediocrity.\nThe tone shifts abruptly from tense to celebratory to soppy.\nIf we don't demand a standard of quality for the art that we choose, we deserve the trash that we get.\nA modest and messy metaphysical thriller offering more questions than answers.\nJulia is played with exasperating blandness by Laura Regan.\nMorrissette's script and direction show a fair amount of intelligence and wit -- but it doesn't signify a whole lot either.\nThere's suspension of disbelief and then there's bad screenwriting...this film packs a wallop of the latter.\nAll Ms. Jovovich, as the sanctified heroine, has to do is look radiant, grimly purposeful and mildly alarmed while forcing open doors, wielding wrenches and fleeing monsters.\nMocking kung fu pictures when they were a staple of exploitation theater programming was witty. Mocking them now is an exercise in pointlessness.\nThis is a particularly toxic little bonbon, palatable to only a chosen and very jaundiced few.\nThis isn't just the CliffsNotes version of Nicholas Nickleby, it's the CliffsNotes with pages missing.\nConsidering the harsh locations and demanding stunts, this must have been a difficult shoot, but the movie proves rough going for the audience as well.\nBetter at putting you to sleep than a sound machine.\nSo clichéd that, at one point, they literally upset an apple cart.\nIt's a decent glimpse into a time period, and an outcast, that is no longer accessible, but it doesn't necessarily shed more light on its subject than the popular predecessor.\nIt might be the first sci-fi comedy that could benefit from a Three's Company-style laugh track.\nWhen the plot kicks in, the film loses credibility.\nCredibility sinks into a mire of sentiment.\nThe movie takes itself too seriously and, as a result, it makes for only intermittent fun.\n(Davis) has a bright, chipper style that keeps things moving, while never quite managing to connect her wish-fulfilling characters to the human race.\nDoesn't amount to much of anything.\nBullock's complete lack of focus and ability quickly derails the film\nSo stupid, so ill-conceived, so badly drawn, it created whole new levels of ugly.\nThe truth is that The Truth About Charlie gets increasingly tiresome.\nEnduring love but exhausting cinema.\nSome of Seagal's action pictures are guilty pleasures, but this one is so formulaic that it seems to be on auto-pilot.\nA ponderous meditation on love that feels significantly longer than its relatively scant 97 minutes.\nA long-winded and stagy session of romantic contrivances that never really gels like the shrewd feminist fairy tale it could have been.\nA little too pat for its own good.\nThere are films that try the patience of even the most cinema-besotted critic -- and this was one of them.\nWatching Trouble Every Day, at least if you don't know what's coming, is like biting into what looks like a juicy, delicious plum on a hot summer day and coming away with your mouth full of rotten pulp and living worms.\nWell-intentioned though it may be, its soap-opera morality tales have the antiseptic, preprogrammed feel of an after-school special.\nWhat would Jesus do if He was a film director? He'd create a movie better than this.\nWhen a set of pre-shooting guidelines a director came up with for his actors turns out to be cleverer, better written and of considerable more interest than the finished film, that's a bad sign. A very bad sign.\nIt's a deeply serious movie that cares passionately about its subject, but too often becomes ponderous in its teaching of history, or lost in the intricate connections and multiple timelines of its story.\nCan't kick about the assembled talent and the Russos show genuine promise as comic filmmakers. Still, this thing feels flimsy and ephemeral.\nDiane Lane shines in Unfaithful. Almost everything else is wan.\nI'm afraid you won't get through this frankly fantastical by-the-numbers B-flick with just a suspension of disbelief. Rather, you'll have to wrestle disbelief to the ground and then apply the chloroform-soaked handkerchief.\nSo relentlessly wholesome it made me want to swipe something.\nThe title helpfully offers the most succinct review of it you'll read anywhere.\nThe makers of Divine Secrets of the Ya-Ya Sisterhood should offer a free ticket (second prize, of course, two free tickets) to anyone who can locate a genuinely honest moment in their movie.\nGod help the poor woman if Attal is this insecure in real life: his fictional Yvan's neuroses are aggravating enough to exhaust the patience of even the most understanding spouse.\nLet's cut to the consumer-advice bottom line: Stay home.\nUndercover Brother doesn't go far enough. It's just a silly black genre spoof.\nThe film's implicit premise is that the faith of the Tonga people is in every way inferior to that of John.\nRates an 'E' for effort -- and a 'B' for boring.\nYou've already seen Heartbreak if you've watched the far superior Nurse Betty or Sunset Boulevard. Even the unwatchable Soapdish is more original.\nPlays like one of those conversations that Comic Book Guy on ``The Simpsons'' has.\nA journey that's too random and inconclusive to be compelling, but which Hoffman's brilliance almost makes worth taking.\nThe movie bounces all over the map.\nBut buying into sham truths and routine ``indie'' filmmaking, Freundlich has made just another safe movie. It's not horrible, just horribly mediocre.\nNot always too whimsical for its own good (but enough to do harm), this strange hybrid of crime thriller, quirky character study, third-rate romance and female empowerment fantasy never really finds the tonal or thematic glue it needs.\n``Juwanna Mann?'' No thanks. Wewannour money back, actually.\nIt's a sometimes interesting remake that doesn't compare to the brilliant original.\nYou're too conscious of the effort it takes to be this spontaneous.\nFeel bad for King, who's honestly trying, and Schwartzman, who's shot himself in the foot.\nSome actors steal scenes. Tom Green just gives them a bad odor. This self-infatuated goofball is far from the only thing wrong with the clumsy comedy Stealing Harvard, but he's the most obvious one.\nSometimes, fond memories should stay in the past: a lesson this film teaches all too well.\nThe enormous comic potential of an oafish idiot impersonating an aristocrat remains sadly unrealized.\nBegins as a promising meditation on one of America's most durable obsessions but winds up as a slender cinematic stunt.\nA monster combat thriller as impersonal in its relentlessness as the videogame series that inspired it.\nProof that a thriller can be sleekly shot, expertly cast, paced with crisp professionalism... and still be a letdown if its twists and turns hold no more surprise than yesterday's weather report.\nThe reason we keep seeing the same movie with roughly the same people every year is because so many of us keep going and then, out of embarrassment or stupidity, not warning anyone.\nThere's not much going on in this movie unless you simply decide to buy into the notion that something inexplicably strange once happened in Point Pleasant.\nIn the second half of the film, Frei's control loosens in direct proportion to the amount of screen time he gives Nachtwey for self-analysis.\nDirector Barry Skolnick and his screenwriters glibly tick off every point of ``The Longest Yard'' playbook like a checklist.\nThe furious coherence that (DeNiro) brings to this part only underscores the fuzzy sentimentality of the movie itself, which feels, as it plods toward the end, less like a movie than like the filmed reading of a script in need of polishing.\nOh, it's extreme, all right. Extremely dumb. Extremely confusing. Extremely boring.\nWe never really feel involved with the story, as all of its ideas remain just that: abstract ideas.\nFor a shoot-'em-up, Ballistic is oddly lifeless.\nOne minute, you think you're watching a serious actioner; the next, it's as though clips from The Pink Panther Strikes Again and/or Sailor Moon have been spliced in.\nWhat happened with Pluto Nash? How did it ever get made?\nWe may never think of band camp as a geeky or nerdy thing again.\nOpens as promising as any war/adventure film you'll ever see and dissolves into a routine courtroom drama, better suited for a movie titled ``Glory: A Soldier's Story.''\nThe result is solemn and horrifying, yet strangely detached.\nThese spiders can outrun a motorcycle and wrap a person in a sticky cocoon in seconds, but they fall short of being interesting or entertaining.\nA long slog for anyone but the most committed Pokemon fan.\nMatthew McConaughey tries, and fails, to control the screen with swaggering machismo and over-the-top lunacy.\nHow on earth, or anywhere else, did director Ron Underwood manage to blow $100 million on this?\nEveryone connected to this movie seems to be part of an insider clique, which tends to breed formulaic films rather than fresh ones.\nWith a story inspired by the tumultuous surroundings of Los Angeles, where feelings of marginalization loom for every dreamer with a burst bubble, The Dogwalker has a few characters and ideas, but it never manages to put them on the same path.\nIts lack of quality earns it a place alongside those other two recent Dumas botch-jobs, The Man in the Iron Mask and The Musketeer.\nA benign but forgettable sci-fi diversion.\nThe plot grinds on with yawn-provoking dullness.\nIt's never a good sign when a film's star spends the entirety of the film in a coma. It's a worse sign when you begin to envy her condition.\nIt doesn't help that the director and cinematographer Stephen Kazmierski shoot on grungy video, giving the whole thing a dirty, tasteless feel.\nDesperately unfunny when it tries to makes us laugh and desperately unsuspenseful when it tries to make us jump out of our seats.\nThis film's relationship to actual tension is the same as what Christmas-tree flocking in a spray can is to actual snow: a poor -- if durable -- imitation.\nJohn McTiernan's botched remake may be subtler than Norman Jewison's 1975 ultraviolent futuristic corporate-sports saga. It's also stupider.\nDirector Dirk Shafer and co-writer Greg Hinton ride the dubious divide where gay porn reaches for serious drama.\nBorrows from so many literary and cinematic sources that this future world feels absolutely deja vu.\nAs (the characters) get more depressed, the story gets more tiresome, especially as it continues to mount a conspicuous effort to be profound.\nThe acting by the over-25s lacks spark, with Csokas particularly unconnected.\nThough Howard demonstrates a great eye as a director, this Southern Gothic drama is sadly a tough sit, with an undeveloped narrative and enough flashbacks and heavy-handed metaphors to choke a horse -- or at least slow him down to a canter.\nFalters when it takes itself too seriously and when it depends too heavily on its otherwise talented cast to clown in situations that aren't funny.\nThe fight scenes are fun, but it grows tedious.\nAnyone who can count to five (the film's target market?) can see where this dumbed-down concoction is going.\nAll this turns out to be neither funny nor provocative - only dull.\nDemme's loose approach kills the suspense.\nThis idea has lost its originality ... and neither star appears very excited at rehashing what was basically a one-joke picture.\n(Plays) in broad outline as pandering middle-age buddy-comedy.\nThe film is itself a sort of cinematic high crime, one that brings military courtroom dramas down very, very low.\nNothing more than a mediocre trifle.\nA turgid little history lesson, humourless and dull.\nToo silly to be frightening, too stolid to be funny, it projects the same lazy affability as its nominal star, David Arquette.\nIf Kaufman kept Cameron Diaz a prisoner in a cage with her ape, in his latest, he'd have them mate.\nTrivial where it should be profound, and hyper-cliched where it should be sincere.\nIt would be hard to think of a recent movie that has worked this hard to achieve this little fun.\nTheology aside, why put someone who ultimately doesn't learn at the center of a kids' story?\nAll that (Powerpuff Girls) charm is present in the movie, but it's spread too thin.\nSometimes smart but more often sophomoric.\nThe ill-conceived modern-day ending falls flat where it should deliver a moral punch.\nCollateral Damage is, despite its alleged provocation post-9/11, an antique, in the end. As are its star, its attitude and its obliviousness.\nDawdles and drags when it should pop; it doesn't even have the virtue of enough mindless violence to break up the tedium of all its generational bonding.\nIts save-the-planet message clashes with its crass marketing.\nA great idea becomes a not-great movie.\n...watching this film nearly provoked me to take my own life. And if The Hours wins 'Best Picture' I just might.\nBy the end, I was looking for something hard with which to bludgeon myself unconscious.\nNot a movie but a live-action agitprop cartoon so shameless and coarse, it's almost funny.\nFeels like six different movies fighting each other for attention.\nLife is a crock -- or something like it.\nMade by jackasses for jackasses.\nDespite a powerful portrayal by Binoche, it's a period romance that suffers from an overly deliberate pace and uneven narrative momentum.\nThe picture is a primer on what happens when lack of know-how mixes with lack of give-a-damn.\nBartleby is a one-joke movie, and a bad joke at that.\nGiven that both movies expect us to root for convicted violent felons over those assigned to protect us from same, we need every bit of sympathy the cons can muster; this time, there isn't much.\nA bravura exercise in emptiness.\nPhilip K. Dick must be turning in his grave, along with my stomach.\nDespite the premise of a good story ... it wastes all its star power on cliched or meaningless roles.\nAll prints of this film should be sent to and buried on Pluto.\nNot only does the movie fail to make us part of its reality, it fails the most basic relevancy test as well.\nFirst good, then bothersome. Excellent acting and direction.\nThis goofy gangster yarn never really elevates itself from being yet another earnestly generic crime-busting comic vehicle -- a well-intentioned remake that shows some spunk and promise but fails to register as anything distinctive or daring\nIt's difficult to say whether The Tuxedo is more boring or embarrassing--I'm prepared to call it a draw.\nEven as lame horror flicks go, this is lame.\nSo routine, familiar and predictable, it raises the possibility that it wrote itself as a newly automated Final Draft computer program.\nSunshine State lacks the kind of dynamic that Limbo offers, and in some ways is a rather indulgent piece.\nEven legends like Alfred Hitchcock and John Huston occasionally directed trifles... so it's no surprise to see a world-class filmmaker like Zhang Yimou behind the camera for a yarn that's ultimately rather inconsequential.\nA long-winded, predictable scenario.\nToo close to Phantom Menace for comfort.\nAlthough trying to balance self-referential humor and a normal ol' slasher plot seemed like a decent endeavor, the result doesn't fully satisfy either the die-hard Jason fans or those who can take a good joke.\nToo clunky and too busy ribbing itself to be truly entertaining.\nThis movie is about lying, cheating, but loving the friends you betray.\nIt smacks of purely commercial motivation, with no great love for the original.\nMelanie eventually slugs the Yankee. Too bad the former Murphy Brown doesn't pop Reese back.\nAt the bottom rung of the series' entries.\nA real clunker. A well-made, thoughtful, well-acted clunker, but a clunker nonetheless.\nA dreary rip-off of Goodfellas that serves as a muddled and offensive cautionary tale for Hispanic Americans.\nThe picture, scored by a perversely cheerful Marcus Miller accordion/harmonica/banjo abomination, is a monument to bad in all its florid variety.\nGood for a few unintentional laughs, ``Extreme Ops'' was obviously made for the ``XXX'' crowd, people who enjoy mindless action without the benefit of decent acting, writing, and direction.\n...a big, baggy, sprawling carnival of a movie, stretching out before us with little rhyme or reason.\nA frustrating combination of strained humor and heavy-handed sentimentality.\nLawrence preaches strictly to the converted.\nAs written by Michael Berg and Michael J. Wilson from a story by Wilson, this relentless, all-wise-guys-all-the-time approach tries way too hard and gets tiring in no time at all.\nWill probably stay in the shadow of its two older, more accessible Qatsi siblings.\nJust when the movie seems confident enough to handle subtlety, it dives into soapy bathos.\nChoppy editing and too many repetitive scenes spoil what could have been an important documentary about stand-up comedy.\n...the film falls back on the same old formula of teen sex, outrageous pranks and scenes designed to push the envelope of bad taste for laughs.\nThe only thing in Pauline and Paulette that you haven't seen before is a scene featuring a football field-sized Oriental rug crafted out of millions of vibrant flowers.\nIf you're looking for comedy to be served up, better look elsewhere.\nIt virtually defines a comedy that's strongly mediocre, with funny bits surfacing every once in a while.\nAn instant candidate for worst movie of the year.\nDespite its title, Amy's Orgasm is not a porno, though it is as tedious as one.\nLike a tone-deaf singer at a benefit concert, John Q. is a bad movie appearing on behalf of a good cause.\nAdam Sandler is to Gary Cooper what a gnat is to a racehorse.\nWhat kids will discover is a new collectible. What parents will suspect is that they're watching a 76-minute commercial.\nBeers, who, when she's given the right lines, can charm the paint off the wall ... (but) the script goes wrong at several key junctures.\nWithout September 11, Collateral Damage would have been just another bad movie. Now it's a bad, embarrassing movie.\nDrags along in a dazed and enervated, drenched-in-the- past numbness.\nThere's a disturbing 'Great White Hope' undertone to The Other Side of Heaven that subtly undermines its message of Christian love and compassion.\nUnless you are in dire need of a Diesel fix, there is no real reason to see it. Wait for video -- and then don't rent it.\nThe attempt is courageous, even if the result is wildly uneven.\nThere's something fundamental missing from this story: something or someone to care about.\nToo much of this well-acted but dangerously slow thriller feels like a preamble to a bigger, more complicated story, one that never materializes.\nWhen a film is created SOLELY because it's a marketable product, soulless and ugly movies like this are the result. Let your silly childhood nostalgia slumber unmolested.\nUnfortunately, Heartbreak Hospital wants to convey the same kind of haughtiness in its own sketchy material but this territory has already been explored previously with better aplomb and sardonic wit.\nThe more Kevin Costner rests on his pretty-boy laurels, the public is, regrettably, going to have tepid films like Dragonfly tossed at them.\n(It's) difficult to get beyond the overall blandness of American Chai, despite its likable performances and refreshingly naive point of view.\nThe latest installment in the Pokemon canon, Pokemon 4ever is surprising less moldy and trite than the last two, likely because much of the Japanese anime is set in a scenic forest where Pokemon graze in peace.\nTaken purely as an exercise in style, this oppressively gloomy techno-horror clambake is impossible to ignore. But as a movie, it's a humorless, disjointed mess.\nIf Myers decides to make another Austin Powers movie, maybe he should just stick with Austin and Dr Evil.\nThe backyard battles you staged with your green plastic army men were more exciting and almost certainly made more sense.\nToo stupid to be satire, too obviously hateful to be classified otherwise, Frank Novak's irritating slice of lumpen life is as reliably soul-killing as its title is nearly meaningless.\nOverly stylized with lots of flash black-&-white freeze frames reminiscent of a pseudo-hip luxury car commercial, (it's) at its worst when it's actually inside the ring.\nWhat is captured during the conceptual process doesn't add up to a sufficient explanation of what the final dance work, The Selection, became in its final form.\nIf this is satire, it's the smug and self-congratulatory kind that lets the audience completely off the hook.\nHad the film boasted a clearer, more memorable, the creepiness would have gotten under the skin.\nThese people wouldn't know subtle characterization if it put on a giant furry monster costume and then gave them a lapdance.\nImagine if you will a Tony Hawk skating video interspliced with footage from Behind Enemy Lines and set to Jersey shore techno.\nIt doesn't quite work, but there's enough here to make us look forward to the Russos' next offering.\nAny film featuring young children threatened by a terrorist bomb can no longer pass as mere entertainment.\nThe director's twitchy sketchbook style and adroit perspective shifts grow wearisome amid leaden pacing and indifferent craftsmanship (most notably wretched sound design).\nAbout as satisfying and predictable as the fare at your local drive through.\nApparently kissing leads to suicide attempts and tragic deaths. Marisa Tomei is good, but Just A Kiss is just a mess.\nOpens at a funeral, ends on the protagonist's death bed and doesn't get much livelier in the three hours in between.\nThe noble tradition of men in drag hits an all-time low in Sorority Boys, whose makers apparently believe that women's clothing can cover up any deficiency in acting, writing or direction.\nTo portray modern women the way director Davis has done is just unthinkable.\nToo simple for its own good.\nFlaccid drama and exasperatingly slow journey.\nA chaotic panorama that's too busy flying a lot of metaphoric flags.\nSuffers from rambling, repetitive dialogue and the visual drabness endemic to digital video.\nThe screenplay sabotages the movie's strengths at almost every juncture. All the characters are stereotypes, and their interaction is numbingly predictable.\nA trashy, exploitative, thoroughly unpleasant experience.\nNewcomer helmer Kevin Donovan is hamstrung by a badly handled screenplay of what is really an amusing concept – a high-tech tux that transforms its wearer into a superman.\nShouldn't have been allowed to use the word ``new'' in its title, because there's not an original character, siuation or joke in the entire movie.\nOften silly – and gross – but it's rarely as moronic as some campus gross-out films.\nThe advantage of a postapocalyptic setting is that it can be made on the cheap. Any rock pile will do for a set. Reign of Fire has the disadvantage of also looking cheap.\nThe performances are so leaden, Michael Rymer's direction is so bloodless and the dialogue is so corny that the audience laughs out loud.\nA subtle variation on I Spit On Your Grave in which our purported heroine pathologically avenges a hatred for men.\nReggio's trippy, ambitious downer can also sometimes come across like nothing more than a glorified Nike ad.\nAs Tweedy talks about canning his stockbroker and repairing his pool, you yearn for a few airborne TV sets or nude groupies on the nod to liven things up.\nIf somebody was bored and ... decided to make a dull, pretentious version of Jesus' Son, they'd come up with something like Bart Freundlich's World Traveler.\nThe best you can say about it is it's so uninspired, it barely gives one pause when considering some of the other dreck out there right now.\nA tough go, but Leigh's depth and rigor, and his skill at inspiring accomplished portrayals that are all the more impressive for their lack of showiness, offsets to a notable degree the film's often-mined and despairing milieu.\nAn overstuffed compendium of teen-Catholic-movie dogma.\nToo leisurely paced and visually drab for its own good, it succeeds in being only sporadically amusing.\nBen Affleck as Jack Ryan, Tom Clancy's intrepid hero? Ridiculous. What's next? D.J. Qualls as Indiana Jones? Or Tom Green as Han Solo?\nThe movie's biggest offense is its complete and utter lack of tension.\nThe film is directed by Wally Wolodarsky from a script by Joe Jarvis and Greg Coolidge. These are names to remember, in order to avoid them in the future.\nIf this is the resurrection of the Halloween franchise, it would have been better off dead.\nThis formulaic chiller will do little to boost Stallone's career.\nI saw Knockaround Guys yesterday, and already the details have faded like photographs from the Spanish-American War ... It's so unmemorable that it turned my ballpoint notes to invisible ink.\nThough Avary has done his best to make something out of Ellis' nothing novel, in the end, his Rules is barely worth following.\nThe average local news columnist has a bigger rant on the war between modern landscape architecture and small-town America.\nNo worse than a lot of the crap we've been offered this summer, and slightly better than Men in Black 2 as far as slapdash extraterrestrial comedies go.\nThe plot is so predictable and sentimental that viewers are likely to lose interest before Sandrine and her goats walk off into the sunset.\nAt first, the sight of a blind man directing a film is hilarious, but as the film goes on, the joke wears thin.\nNever Again swings between false sentiment and unfunny madcap comedy and, along the way, expects the audience to invest in the central relationship as some kind of marriage of true minds.\nthe story itself is uninteresting, and the songs are painfully undistinguished: They Might Be Giants' So to Be One of Us may be the most tuneless tune ever composed.\nTechnically, the film is about as interesting as an insurance commercial.\nThe title's lameness should clue you in on how bad the movie is.\nThe parts are better than the whole (bizarre, funny, tragic - like love in New York).\nWhile the film shuns the glamour or glitz that an American movie might demand, Scherfig tosses us a romantic scenario that is just as simplistic as a Hollywood production.\nThe humor is hinged on the belief that knees in the crotch, elbows in the face and spit in the eye are inherently funny.\nIt's a movie forged in the fires of Chick Flick Hell.\nIts characters are thinner than cardboard -- or even comic-book paper.\nAny one episode of The Sopranos would send this ill-conceived folly to sleep with the fishes.\nFeels like the grittiest movie that was ever made for the Lifetime cable television network.\nLanie's professional success means she must be a failure at life, because she's driven by ambition and Doesn't Know How to Have Fun.\nCredit must be given to Harland Williams, Michael Rosenbaum and Barry Watson, who inject far more good-natured spirit and talent into this project than it deserves\nDenzel Washington's efforts are sunk by all the sanctimony.\nIf this holiday movie is supposed to be a gift, somebody unwrapped it early, took out all the good stuff, and left behind the crap (literally).\nSo faithful to the doldrums of the not-quite-urban, not-quite-suburban milieu as to have viewers recoiling from the reality check.\nRambles on in a disjointed, substandard fashion from one poorly executed action sequence to the next.\nThere's an audience for it, but it could have been funnier and more innocent.\nI can only imagine one thing worse than Kevin Spacey trying on an Irish accent, and that's sultry Linda Fiorentino doing the same thing.\nAn awkward and indigestible movie.\nThe movie has very little to offer besides unintentional laughs.\nHaneke keeps us at arm's length. Guided more by intellect than heart, his story flattens instead of sharpens.\nAll the well-meaningness in the world can't erase the fact that The Believer feels like a 12-Step Program for the Jewish Nazi.\nLike most sequels, it takes what worked last time, repeats it and adds more characters, more stunts, more stuff in attempt to camouflage its sameness.\nThere's no way to sort out the mess in our heads and deconstruct where it all went wrong. This is an hour and a half of daydreaming.\nMessage movie or an action-packed submarine spectacular? Alas, it's neither.\nNo movement, no yuks, not much of anything.\n'Dragonfly' is a movie about a bus wreck that turns into a film wreck.\nThirty years ago, it would have been groundbreaking. Now it's just tired.\nHeavy-handed exercise in time-vaulting literary pretension.\nThe movie is too cute to take itself too seriously, but it still feels like it was made by some very stoned college students.\nA thinly veiled excuse for Wilson to play his self-deprecating act against Murphy's well-honed prima donna shtick.\nA minor picture with a major identity crisis -- it's sort of true and it's sort of bogus and it's ho-hum all the way through.\nThe movie succumbs to being nothing more than a formulaic chase in the dark.\nPlays as hollow catharsis, with lots of tears but very little in the way of insights.\nIt will come as no surprise that the movie isn't scary. But here's the real damn: It isn't funny, either.\nQuick: who wants to see a comedy about shoddy airport security?\nThe reason I found myself finally unmoved by this film, which is immaculately produced and has serious things to say, is that it comes across rather too plainly as allegory.\nWhat you get with Empire is a movie you've seen many times before, repackaged as new material because there is a Latino in the lead.\nCho's fans are sure to be entertained; it's only fair in the interest of full disclosure to say that -- on the basis of this film alone -- I'm not one of them.\nLooks awfully like one long tourist spot for a Mississippi that may never have existed outside of a scriptwriter's imagination.\nThe period -- swinging London in the time of the mods and the rockers -- gets the once-over once again in Gangster No. 1, but falls apart long before the end.\nHigh Crimes miscasts nearly every leading character.\nThe overall feel of the film is pretty cheesy, but there's still a real sense that the Star Trek tradition has been honored as best it can, given the embarrassing script and weak direction.\nDe Niro looks bored, Murphy recycles Murphy, and you mentally add Showtime to the pile of Hollywood dreck that represents nothing more than the art of the deal.\nI didn't believe for a moment in these villains or their plot.\nAnother rent installment for the Ian Fleming estate.\nWith Danilo Donati's witty designs and Dante Spinotti's luscious cinematography, this might have made a decent children's movie -- if only Benigni hadn't insisted on casting himself in the title role.\nSo lazy and slipshod it confuses the mere flashing of kinky soft-core imagery with naughty fun.\nThough it draws several decent laughs, it's low-cal Woody at best.\nHas little on its mind aside from scoring points with drag gags.\nBritney's performance cannot be faulted. Lucy's a dull girl, that's all.\nWell-shot but badly written tale set in a future ravaged by dragons.\nSadly, Hewitt's forte is leaning forward while wearing low-cut gowns, not making snappy comebacks.\nIf Melville is creatively a great whale, this film is canned tuna.\nThis film is so slick, superficial and trend-hoppy, that it's easy to imagine that a new software program spit out the screenplay.\nJust one more collection of penis, breast and flatulence gags in search of a story. Or a profit. Or some damn thing.\nThe acting is stiff, the story lacks all trace of wit, the sets look like they were borrowed from Gilligan's Island -- and the CGI Scooby might well be the worst special-effects creation of the year.\nEnough trivializes an important crisis, reduces it to an almost comic embarrassment.\nThe makers have forsaken the entertaining elements of the original and, instead, rehash old jokes and leave any life at the doorstep. I like Frank the Pug, though.\nA restrained Ribisi convinces as an Italian, though if ever a movie needed one of the actor's whiny jags to pump it up, this has to be among the rare ones.\nGee, a second assassin shot Kennedy? Moot point.\nA hysterical yet humorless disquisition on the thin line between sucking face and literally sucking face.\nNeedless to say, the dramatics that follow are utter hooey.\nThe problem is that rather than dramatizing this premise, Mr. Desplechin is content to state it.\nMadonna still can't act a lick.\nEven the imaginative gore can't hide the musty scent of Todd Farmer's screenplay, which is a simple retread of the 1979 Alien, with a plucky heroine battling a monster loose in a spaceship.\nIf you pitch your expectations at an all time low, you could do worse than this oddly cheerful -- but not particularly funny -- body-switching farce.\nThe episodic film makes valid points about the depersonalization of modern life. But the characters tend to be cliches whose lives are never fully explored.\nSerry does a fine job of capturing the climate of the times and, perhaps unwittingly, relating it to what is happening in America in 2002. But hard-to-believe plot twists force the movie off track in its final half hour.\nDon't let your festive spirit go this far.\nThough the book runs only about 300 pages, it is so densely packed ... that even an ambitious adaptation and elaborate production like Mr. Schepisi's seems skimpy and unclear.\nHey, at least the title of this film lets you know exactly where it's heading.\nIntended to be a comedy about relationships, this wretched work falls flat in just about every conceivable area.\nSensitive though not quite revelatory documentary.\nDirector Brian Levant, who never strays far from his sitcom roots, skates blithely from one implausible situation to another, pausing only to tie up loose ends with more bows than you'll find on a French poodle.\n...perhaps the heaviest, most joyless movie ever made about giant dragons taking over the world.\nSuggests puns about ingredients and soup and somebody being off their noodle, but let's just say the ingredients don't quite add up to a meal.\nI'd give real money to see the perpetrators of Chicago torn apart by dingoes.\nMovies like this are selling the old European candor, the old wink of 'bold' revelation. But in 2002, such revelations wilt.\nThe timing in nearly every scene seems a half beat off.\nI admire it and yet cannot recommend it, because it overstays its natural running time.\nA fairly by-the-books blend of action and romance with sprinklings of intentional and unintentional comedy.\nFlounders due to the general sense that no two people working on the production had exactly the same thing in mind.\nEven if you feel like you've seen this movie a thousand times before, it is kind of enjoyable thanks mainly to Belushi's easy-going likableness.\nThe story bogs down in a mess of purposeless violence.\nDespite some gulps the film is a fuzzy huggy.\nMcKay deflates his piece of puffery with a sour cliche and heavy doses of mean-spiritedness\nA recipe for cinematic disaster...part Quentin Tarantino, part Guy Ritchie, and part 1960s spy spoof, it's all bad.\nThe cumulative effect of the relentless horror on parade numbs the movie's power as a work of drama.\nAnother big, dumb action movie in the vein of XXX, The Transporter is riddled with plot holes big enough for its titular hero to drive his sleek black BMW through.\nAaliyah rarely dampens her diva persona enough to spark genuine chemistry with Townsend. When she speaks, her creepy Egyptian demigod voice is as computer processed and overproduced as it was in her music.\nOutrageousness is all Plympton seemed to be going for this time. We miss the quirky amazement that used to come along for an integral part of the ride.\nMuch of what is meant to be 'inspirational' and 'uplifting' is simply distasteful to audiences not already sharing (the movie's) mindset.\nWell before it's over, Beijing Bicycle begins spinning its wheels.\nHome Alone goes Hollywood, a funny premise until the kids start pulling off stunts not even Steven Spielberg would know how to do. Besides, real movie producers aren't this nice.\n(Nelson's) movie about morally compromised figures leaves viewers feeling compromised, unable to find their way out of the fog and the ashes.\nPassion, lip-synching, tragedy, and lots of really really high notes. For me, this opera isn't a favorite, so it's a long time before the fat lady sings.\nLooks like a high school film project completed the day before it was due.\nTruth to tell, if you've seen more than half-a-dozen horror films, there's nothing here you haven't seen before.\nAbandons all pretense of creating historical context and waltzes off into a hectic soap about the ups and downs of the heavy breathing between the two artists.\nEven die-hard fans of Japanese animation ... will find this one a challenge.\nFilmmakers have to dig deep to sink this low. Fortunately for all involved, this movie is likely to disappear as quickly as an ice cube thrown into a pot of boiling water.\nThe movie gets muted and routine.\nThe issue of faith is not explored very deeply\nIt's a bad sign when you're rooting for the film to hurry up and get to its subjects' deaths just so the documentary will be over, but it's indicative of how uncompelling the movie is unless it happens to cover your particular area of interest.\nThe situations and jokes are as predictable and as lowbrow as the endless pratfalls the boys take in their high heels.\nIt's frustrating to see these guys -- who are obviously pretty clever -- waste their talent on parodies of things they probably thought were funniest when they were high.\nI was perplexed to watch it unfold with an astonishing lack of passion or uniqueness.\nK-19 may not hold a lot of water as a submarine epic, but it holds even less when it turns into an elegiacally soggy Saving Private Ryanovich.\nA very stylish but ultimately extremely silly tale...a slick piece of nonsense but nothing more.\nAutomatically pegs itself for the straight-to-video sci-fi rental shelf.\nThe film is like a series of beginnings and middles that never take off.\nFeels less like it's about teenagers, than it was written by teenagers.\nJa Rule and Kurupt should have gotten to rap. It would have benefitted the dialogue.\nA standard haunted house tale transplanted to the high seas.\nElicits more groans from the audience than Jar Jar Binks, Scrappy Doo and Scooby Dumb, all wrapped up into one.\nIt's badly acted, blandly directed, and could have been scripted by someone who just graduated from elementary school.\nIn the end, White Oleander isn't an adaptation of a novel. It's a flashy, star-splashed reduction.\nThis film, starring Anthony Hopkins and Chris Rock, is your typical 'fish out of water' story. You've seen them a million times. Just one problem: Fish out of water usually die. This one does.\nThe angst-ridden, affluent slacker characters are more grating than engaging.\nA soggy, shapeless mess...just a dumb excuse for a waterlogged equivalent of a haunted-house movie.\nMen in Black II has sequel-itis something fierce. An ungainly, comedy-deficient, B-movie rush job...\nA combination of standard, stiff TV-style animation and snazzy-looking digital effects that do little to disguise the fact that the characters barely move.\nAn unsatisfying hybrid of Blair Witch and typical stalk-and-slash fare, where the most conservative protagonist is always the last one living.\nSay this for the soundtrack, it drowns out the lousy dialogue.\nAfter seeing SWEPT AWAY, I feel sorry for Madonna.\nInstead of kicking off the intrigue and suspense and mystery of the whole thing, Hart's War, like the St. Louis Rams in the Super Bowl, waits until after halftime to get started.\nA gob of drivel so sickly sweet, even the eager consumers of Moore's pasteurized ditties will retch it up like rancid crème brûlée.\nMaudlin and melodramatic we expected. Boring we didn't.\nNever quite transcends jokester status ... and the punchline doesn't live up to Barry's dead-eyed, perfectly chilled delivery.\nThe film's bathos often overwhelms what could have been a more multifaceted look at this interesting time and place.\nIt almost plays like Solaris, but with guns and jokes.\nA baffling misfire, and possibly the weakest movie (Woody Allen) has made in the last twenty years.\nIt won't be long before you'll spy I Spy at a video store near you.\nThis film looks like it was produced in 1954, shelved for 48 years, and repackaged for a 2002 audience.\nPropelled not by characters but by caricatures.\nThere is not an ounce of honesty in the entire production.\nThis extremely unfunny film clocks in at 80 minutes, but feels twice as long.\nEarnest but earthbound...a slow, soggy, soporific, visually dank crime melodrama/character study that would be more at home on the small screen but for its stellar cast.\nThe pivotal narrative point is so ripe the film can't help but go soft and stinky.\nFor all its alleged youthful fire, XXX is no less subservient to Bond's tired formula of guns, girls and gadgets while brandishing a new action hero.\nA predictable and stereotypical little B-movie.\nIf I Spy were funny (enough) or exciting (enough) then it would be fairly simple to forgive the financial extortion it's trying to reap from the moviegoing public.\nFrustratingly, Dridi tells us nothing about El Gallo other than what emerges through his music.\nPlaces a slightly believable love triangle in a difficult-to-swallow setting, and then disappointingly moves the story into the realm of an improbable thriller.\nStephen Earnhart's documentary is a decomposition of healthy eccentric inspiration and ambition – wearing a cloak of unsentimental, straightforward text – when it's really an exercise in gross romanticization of the delusional personality type.\nA very average science fiction film.\nUndone by its overly complicated and derivative screenplay, the glacier-paced direction and the stereotypical characters.\nHow anyone over the age of 2 can stomach the touchy-feely message this preachy produce promotes is beyond us.\nThe sort of movie that gives tastelessness a bad rap.\nThe cold and dreary weather is a perfect metaphor for the movie itself, which contains few laughs and not much drama.\nThe plot is straight off the shelf, the performances are television- caliber and the message of providing solace through deception is a little creepy.\nordinary melodrama that is heavy on religious symbols but wafer-thin on dramatic substance\nA whimsical if predictable time-travel fable marred by a willful single-mindedness.\nThose who managed to avoid the Deconstructionist theorizing of French philosopher Jacques Derrida in college can now take an 85-minute brush-up course with the documentary Derrida. Or, you can do something fun tonight.\nJolie's performance vanishes somewhere between her hair and her lips.\nAs with too many studio pics, plot mechanics get in the way of what should be the lighter-than-air adventure.\nStatic, repetitive, muddy and blurry, Hey Arnold! would seem to have a lock on the title of ugliest movie of the year.\nFor all of the contemporary post-colonialist consciousness that Kapur tries to bring to The Four Feathers, the oddest thing about the movie is how it winds up affirming the same damn moldy values the material has always held dear.\nWhen it comes to entertainment, children deserve better than Pokemon 4Ever.\nWhat The Four Feathers lacks is genuine sweep or feeling or even a character worth caring about.\nWhile Benigni (who stars and co-wrote) seems to be having a wonderful time, he might be alone in that.\nYes, 4Ever is harmless in the extreme and it'll mute your kids for nearly 80 minutes, but why not just treat the little yard apes to the real deal and take them to Spirited Away?\nPreposterous and tedious, Sonny is spiked with unintentional laughter that, unfortunately, occurs too infrequently to make the film even a guilty pleasure.\nCalling this movie brainless would be paying it a compliment: it's more like entertainment for trolls.\nNone of these characters resembles anyone you've ever met in real life, unless you happen to know annoyingly self-involved people who speak in glib sentences that could have only come from the pen of a screenwriter.\n... just a big mess of a movie, full of images and events, but no tension or surprise.\nAs elegantly crafted as it often is, Anderson's movie is essentially a one-trick pony that, hampered by an undeveloped script, ultimately pulls up lame.\nSplashes its drama all over the screen, subjecting its audience and characters to action that feels not only manufactured, but also so false you can see the filmmakers' puppet strings.\n... has virtually no script at all ...\nWill only satisfy those who can't tell the difference between the good, the bad and the ugly.\nThis kind of dark comedy requires a delicate, surgical touch. But director Danny DeVito and screenwriter Adam Resnick (remember Cabin Boy?) just pound away.\nAt times, however, Dogtown and Z-Boys lapses into an insider's lingo and mindset that the uninitiated may find hard to follow, or care about.\nRather quickly, the film falls into a soothing formula of brotherly conflict and reconciliation.\nScreenwriters Scott Abbott and Michael Petroni have turned Rice's complex Akasha into a cartoon monster.\nThe writers, director Wally Wolodarsky, and all the actors should start their own coeducational fraternity: Kappa Rho Alpha Phi.\nBad beyond belief and ridiculous beyond description.\nThe new faces are interesting, but the old story isn't, especially when it starts to seem more improvised than scripted.\nMost of the action setups are incoherent.\nLiman, of Swingers and Go, makes his big-budget action film debut something of a clunker as he delivers a long, low-heat chase, interrupted by a middling car chase.\n... surprisingly inert for a movie in which the main character travels back and forth between epochs.\nThe problem isn't that the movie hits so close to home so much as that it hits close to home while engaging in such silliness as that snake-down-the-throat business and the inevitable shot of Schwarzenegger outrunning a fireball.\nDreary, highly annoying...'Some Body' will appeal to No One.\nThere's something deeply creepy about Never Again, a new arrow in Schaeffer's quiver of ineptitudes.\nThe problem with concept films is that if the concept is a poor one, there's no saving the movie. Sorry, Charlie\nA painfully leaden film destined for pre-dawn cable television slots.\nBlessed with immense physical prowess he may well be, but Ahola is simply not an actor. And in truth, cruel as it may sound, he makes Arnold Schwarzenegger look like Spencer Tracy.\nThe cartoon that isn't really good enough to be on afternoon TV is now a movie that isn't really good enough to be in theaters.\nShocking only in that it reveals the filmmaker's bottomless pit of self-absorption.\nThis pep-talk for faith, hope and charity does little to offend, but if saccharine earnestness were a crime, the film's producers would be in the clink for life.\nAll ends well, sort of, but the frenzied comic moments never click.\nIf this is the Danish idea of a good time, prospective tourists might want to consider a different destination -- some jolly country embroiled in a bloody civil war, perhaps.\nFormula 51 is so trite that even Yu's high-energy action stylings can't break through the stupor.\nOnly a few minutes elapse before the daddy of all slashers arrives, still with the boiler suit and white mask, which look remarkably clean for a guy who has been mass-murdering since 1978 but has never been seen doing laundry.\nWhen the painted backdrops in a movie are more alive than its characters, you know you're in trouble.\n(Two) fairly dull -- contrasting and interlocking stories about miserable Scandinavian settlers in 18th-century Canada, and yuppie sailboaters in the here and now.\nThe film is really not so much bad as bland.\nThe central story lacks punch.\nThough Ganesh is successful in a midlevel sort of way, there's nothing so striking or fascinating or metaphorically significant about his career as to rate two hours of our attention.\nThis may be the dumbest, sketchiest movie on record about an aspiring writer's coming-of-age.\nSuccumbs to the same kind of maudlin, sentimental mysticism that mars the Touched by an Angel school of non-God spiritual-uplift movies.\nA harmless and mildly amusing family comedy.\nWhat was subtle and mystifying in the novella is now broad and farcical.\nThe kids often appear to be reading the lines and are incapable of conveying any emotion.\n``Men in Black II,'' has all the earmarks of a sequel. The story is less vibrant, the jokes are a little lukewarm, but will anyone really care?\nSucking all the 'classic' out of Robert Louis Stevenson's Treasure Island and filling the void with sci-fi video game graphics and Disney-fied adolescent angst...\nThis 72-minute film does have some exciting scenes, but it's a tad slow.\nWhile Super Troopers is above Academy standards, its quintet of writers could still use some more schooling.\nA mix of velocity and idiocy, this ruinous remake lacks the brawn -- and the brains -- of the 1970s original.\nThe low-budget Full Frontal was one of the year's murkiest, intentionally obscure and self-indulgent pictures, and Solaris is its big-budget brother.\nThe plot is very clever, but Boyd weighs it down with too many characters and events, all intertwined and far too complicated to keep track of.\nThe film seems all but destined to pop up on a television screen in the background of a scene in a future Quentin Tarantino picture\nA free-for-all of half-baked thoughts, clumsily used visual tricks and self-indulgent actor moments.\nApallingly absurd...the chemistry or lack thereof between Newton and Wahlberg could turn an Imax theater into a 9\" black and white portable TV.\nA well acted and well intentioned snoozer.\nThe smug, oily demeanor that Donovan adopts throughout the stupidly named Pipe Dream is just repulsive.\nMust-see viewing for anyone involved in the high-tech industry. Others may find it migraine-inducing, despite Moore's attempts at whimsy and spoon feeding.\nDespite its good nature and some genuinely funny moments, Super Troopers suffers from a bad case of arrested development.\nIt's hard not to feel you've just watched a feature-length video game with some really heavy back story.\nI watched the brainless insanity of No Such Thing with mounting disbelief.\nThis limp gender-bender-baller from a first-time director and rookie screenwriter steals wholesale from that 1982's Tootsie, forgetting only to retain a single laugh.\nKwan makes the mix-and- match metaphors intriguing, while lulling us into torpor with his cultivated allergy to action.\nWhile obviously an extremely personal work, it remains inextricably stuck in an emotionally unavailable rut.\nAny movie this boring should be required to have ushers in the theater that hand you a cup of coffee every few minutes. Like a marathon runner trying to finish a race, you need a constant influx of liquid just to get through it.\nI loved looking at this movie. I just didn't care as much for the story.\nHas all the poignancy of a Hallmark card and all the comedy of a Gallagher stand-up act.\nIt doesn't do the original any particular dishonor, but neither does it exude any charm or personality.\nfear dot com is so rambling and disconnected it never builds any suspense.\nA gorgeous, somnolent show that is splendidly mummified and thoroughly unsurprising.\nA semi-autobiographical film that's so sloppily written and cast that you cannot believe anyone more central to the creation of Bugsy than the caterer had anything to do with it.\nIt feels like a community theater production of a great Broadway play: Even at its best, it will never hold a candle to the original.\nThe film apparently takes place in a fantasy world where people in hotel hallways recite poetry in voice-over instead of speaking to each other.\nThe element of surprise might be the only thing Femme Fatale has going for it.\nIt's the kind of movie you can't quite recommend because it is all windup and not much of a pitch, yet you can't bring yourself to dislike it.\nMaybe it's asking too much, but if a movie is truly going to inspire me, I want a little more than this.\nA graceless, witless attempt at mating Some Like It Hot with the WWII espionage thriller.\nThe story and characters are nowhere near gripping enough.\nBased on a David Leavitt story, the film shares that writer's usual blend of observant cleverness, too-facile coincidence and slightly noxious preciousness.\nJust like every other Seagal movie, only louder and without that silly ponytail.\nTo enjoy this movie's sharp dialogue and delightful performance by Jolie and Burns, you have to gloss over the no sense ending.\nNational Lampoon's Van Wilder could be the worst thing to come out of National Lampoon since Class Reunion\nThis is a great subject for a movie, but Hollywood has squandered the opportunity, using it as a prop for warmed-over melodrama and the kind of choreographed mayhem that director John Woo has built his career on.\nEcks this one off your must-see list.\nOverall, the film misses the brilliance of Jelinek's novel by some way. It settles for being merely grim.\nThe Irwins emerge unscathed, but the fictional footage is unconvincing and criminally badly acted.\nIt's not thirsty, consuming passion which drives this movie. No, it's the repetition of said behavior, and so Children of the Century is more mindless love than mad, more grating and boring than anything else.\nJust because it really happened to you, honey, doesn't mean that it's interesting to anyone else.\nJust like the deli sandwich: lots of ham, lots of cheese, with a sickly sweet coating to disguise its excrescence until just after (or during) consumption of its second half.\nEvery so often a movie comes along that confirms one's worse fears about civilization as we know it. The New Guy is one of them.\nThis isn't a ``Friday'' worth waiting for.\nEverything that's worthwhile about Collision Course can already be seen on television.\nIf this movie belonged to a sorority, it would be called Beta Alpha Delta.\nNot a cheap slasher flick, as the subject matter would suggest, but is a little like a nature film, showing a patient predator and his foolish prey.\nUneasy mishmash of styles and genres.\nHerzog is obviously looking for a moral to his fable, but the notion that a strong, unified showing among Germany and Eastern European Jews might have changed 20th-Century history is undermined by Ahola's inadequate performance.\nAll in all, there's only one thing to root for: expulsion for everyone.\nBeyond a handful of mildly amusing lines ... there just isn't much to laugh at.\nSecret Ballot is too contemplative to be really funny.\nThe film's center will not hold.\nMyers never knows when to let a gag die; thus, we're subjected to one mind-numbingly lengthy riff on poo and pee jokes after another.\nToo lazy to take advantage of its semi-humorous premise.\nA great ending doesn't make up for a weak movie, and Crazy as Hell doesn't even have a great ending.\nDialogue-heavy and too cerebral for its own good -- or, at any rate, too cerebral for its racy subject matter.\nIts over-reliance on genre conventions, character types and formulaic conflict resolutions crushes all the goodwill it otherwise develops.\nAs an actor, The Rock is aptly named.\nA mostly tired retread of several other mob tales.\nI wish I could say ``Thank God It's Friday'', but the truth of the matter is I was glad when it was over.\nNothing about it fits.\nAs it abruptly crosscuts among the five friends, it fails to lend the characters' individual stories enough dramatic resonance to make us care about them.\nSomehow we're meant to buy that this doting mother would shun her kids, travel to one of the most dangerous parts of the world, don fatigues and become G.I. Jane.\nThe cast is so low-wattage that none of the characters comes off as big ... and the setting remains indistinct.\nConsider the title's clunk-on-the-head that suggests the overtime someone put in to come up with an irritatingly unimaginative retread concept.\nThe movie quickly drags on becoming boring and predictable. I tried to read the time on my watch.\nThe film makes a tragic error by going on for too long, trying to mirror every subsequent event in Chinese history: war, revolution, Communism, etc.\nJohnson has, in his first film, set himself a task he is not nearly up to.\nUltimately the project comes across as clinical, detached, uninvolving, possibly prompting audience members to wonder, 'What's the point?'\nThe two leads are almost good enough to camouflage the dopey plot, but so much naturalistic small talk, delivered in almost muffled exchanges, eventually has a lulling effect.\nThe film meant well in its horse tale about freedom, but wasn't able to reach the heart because it was too overbearing.\nThe movie is as far as you can get from racy, to the point where it almost stops the blood flow to your brain; it has a dull, costumey feel.\nOnce the audience figure out what's being said, the filmmaker's relative passivity will make it tough for them to really care.\nThere's nothing provocative about this film save for the ways in which it studiously avoids provoking thought.\nIt seems just a long, convoluted ploy to get men into drag -- period drag, no less.\nThe premise for this kegger comedy probably sounded brilliant four six-packs and a pitcher of margaritas in, but the film must have been written ... in the thrall of a vicious hangover.\nEven by dumb action-movie standards, Ballistic: Ecks vs. Sever is a dumb action movie.\nThe film equivalent of a toy chest whose contents get scattered over the course of 80 minutes.\nJust a bloody mess.\nCreepy but ultimately unsatisfying thriller.\nYou would be better off investing in the worthy EMI recording that serves as the soundtrack, or the home video of the 1992 Malfitano-Domingo production.\nHas something to say... but it is a statement and issue worthy of a much more thoughtfulness and insight than a melodramatic and wholly predictable thriller.\nBears is bad. Not 'terrible filmmaking' bad, but more like, 'I once had a nightmare like this, and it's now coming true' bad.\nAs is most commonly case with projects such noble and lofty ambitions, the film is less poetic than simply pretentious.\nGeorge, hire a real director and good writers for the next installment, please.\nFor a film about two mismatched buddies, Crystal and De Niro share little screen time and even less chemistry.\nHowever clever Nelson has been in providing variation within the confines of her structure and staging, the question remains whether this should, indeed, have been presented as a theatrical release.\nExtreme Oops - oops, ops, no matter how you spell it, it's still a mistake to go see it.\nWhat could and should have been biting and droll is instead a tepid waste of time and talent.\nWhat will, most likely, turn out to be the most repellent movie of 2002.\n...too dull to enjoy.\nA morality tale whose thought-provoking potential is hampered by a made-for-TV look, rigid performances and an asinine 'twist' that brazenly rips off The Sixth Sense.\nHere's a self-congratulatory 3D IMAX rah-rah.\nEastwood is an icon of moviemaking, one of the best actors, directors and producers around, responsible for some excellent work. But even a hero can stumble sometimes.\nA sophomoric exploration of 'life problems' most people solved long ago -- or at least got tired of hearing people kvetch about.\nIt's all very cute, though not terribly funny if you're more than six years old.\nThe impact of the Armenian genocide is diluted by too much stage business in the modern day.\nGoing to the website may be just as fun (and scary) as going to the film.\nLacking gravitas, MacDowell is a placeholder for grief, and ergo this sloppy drama is an empty vessel. Leave these Flowers unpicked -- they're dead on the vine.\nAdmirable, certainly, but not much fun to watch. For Caine Lovers only.\nA shambles of a movie--visually unattractive, unbearably loud and utterly silly...its hilarity is completely unintentional.\nDe Niro may enjoy the same free ride from critics afforded to Clint Eastwood in the lazy Bloodwork. But like Bruce Springsteen's gone-to-pot Asbury Park, New Jersey, this sad-sack waste of a movie is a City of ruins.\nNo, it's not nearly as good as any of its influences.\nA reasonably efficient mechanism, but it offers few surprises and finds its stars slumming in territory they should have avoided.\nThe rest of the plot is impossible to explain without blowing whatever tension there is, although it's more comedy than suspense De Palma creates.\nHuman Nature talks the talk, but it fails to walk the silly walk that distinguishes the merely quirky from the surreal.\nCity by the Sea is the cinematic equivalent of defensive driving: It's careful, conscientious and makes no major mistakes. But what saves lives on the freeway does not necessarily make for persuasive viewing.\nThe Marquis de Sade couldn't have been as dull a person as this film makes him out to be.\nWhat could have been a neat little story about believing in yourself is swamped by heavy-handed melodrama.\nThe cast is uniformly excellent ... but the film itself is merely mildly charming.\nDrives for the same kind of bittersweet, conciliatory tone that Three Seasons achieved but loses its way in rhetorical excess and blatant sentimentality.\nA bigger holiday downer than your end-of-year 401(k) statement.\nThe whole thing plays out with the drowsy heaviness of synchronized swimmer wearing a wool wetsuit.\nFairly successful at faking some pretty cool stunts but a complete failure at trying to create some pretty cool characters. And forget about any attempt at a plot!\nIt will probably prove interesting to Ram Dass fans, but to others it may feel like a parody of the mellow, peace-and-love side of the '60s counterculture.\nTake away all the cliches and the carbon copy scenes from every drug movie we've seen and all you have left are John Leguizamo's cool jackets.\nIt's so full of wrong choices that all you can do is shake your head in disbelief -- and worry about what classic Oliver Parker intends to mangle next time.\nShowtime is closer to Slowtime.\nIt may be an easy swipe to take, but this Barbershop just doesn't make the cut.\nThe Weight of Water uses water as a metaphor for subconscious desire, but this leaky script barely stays afloat.\n'How many more voyages can this limping but dearly-loved franchise survive?'\nDespite a blue-chip cast and a provocative title, writer-director Peter Mattei's first feature microwaves dull leftover romantic motifs basted in faux-contemporary gravy.\nFans of the TV series will be disappointed, and everyone else will be slightly bored.\nThe only element of suspense is whether the movie will change titles or distributors again before the closing credits roll.\nBarely goes beyond comic book status.\nIt's disappointing when filmmakers throw a few big-name actors and cameos at a hokey script.\nI Spy is an embarrassment, a monotonous, disjointed jumble of borrowed plot points and situations. It's as flat as an open can of pop left sitting in the sun.\nAn eccentric little comic/thriller deeply in love with its own quirky personality.\nAfraid to pitch into farce, yet only half-hearted in its spy mechanics, All the Queen's Men is finally just one long drag.\nMaybe it's the star power of the cast or the redundant messages, but something aboul ``Full Frontal'' seems, well, contrived.\n(Morgan), Judd and Franklin can't save the script, rooted in a novel by Joseph Finder, from some opportunism.\nPassably entertaining but also mechanical and joyless.\nSafe Conduct, however ambitious and well-intentioned, fails to hit the entertainment bull's-eye.\nMy response to the film is best described as lukewarm. Maybe I found the proceedings a little bit too conventional.\nToo timid to bring a sense of closure to an ugly chapter of the twentieth century.\nIt's push-the-limits teen comedy, the type written by people who can't come up with legitimate funny, and it's used so extensively that good bits are hopelessly overshadowed.\nIt's too long, too repetitive, and takes way too many years to resolve to be a total winner.\nA sudsy cautionary tale.\nA movie that tries to fuse the two 'woods' but winds up a Bolly-Holly masala mess.\nMr. Wedge and Mr. Saldanha handle the mix of verbal jokes and slapstick well. Their film falters, however, in its adherence to the Disney philosophy of required poignancy, a salute that I'd hoped the movie would avoid.\nLeaves you with a knot in your stomach, its power is undercut by its own head-banging obviousness.\nWatching it is rather like an overlong visit from a large group of your relatives. As your relatives swap one mundane story after another, you begin to wonder if they are ever going to depart.\nUnfortunately, as a writer, Mr. Montias isn't nearly as good to his crew as he is as a director or actor.\nOn the right track to something that's creepy and effective ... It's just going to take more than a man in a Bullwinkle costume to get there.\nThe only thing that could possibly make them less interesting than they already are is for them to get full montied into a scrappy, jovial team.\nOne of those movies where you walk out of the theater not feeling cheated exactly, but feeling pandered to, which, in the end, might be all the more infuriating.\n...this movie has a glossy coat of action movie excess while remaining heartless at its core.\nMurder By Numbers is like a couple of mediocre TV-movie -of-the-week films clumsily stuck together.\nThe film is surprisingly well-directed by Brett Ratner, who keeps things moving well -- at least until the problematic third act.\nWarmed-over Tarantino by way of wannabe Elmore Leonard.\n(Sen's) soap opera-ish approach undermines his good intentions.\nShowtime is one of the hapless victims of the arrogant ``if we put together a wry white man and a chatty black man and give them guns, the movie will be funny'' syndrome.\nSushi for the connoisseurs of the macabre.\nDon't waste your money.\nThough certainly original in form, Altar Boys requires a taste for Swamp Thing-type animation, doubled with a deafening score.\nThere aren't many laughs in this interesting study of the cultural mores of Georgian Jews in Tel Aviv.\nThere's not enough to sustain the comedy.\nLike those to Rome, all roads in The Banger Sisters inevitably lead to a joke about Hawn's breasts, which constantly threaten to upstage the woman sporting them.\nWe may get the full visceral impact of a ruthless army on the warpath but no sense of the devilish complexity of the Balkans conflict.\nYou're better off staying home and watching The X-Files.\nChaotic, self-indulgent and remarkably ugly to look at, it's...like a series of pretentiously awful student films strung together into one feature-length horror.\nBears resemblance to, and shares the weaknesses of, too many recent action-fantasy extravaganzas in which special effects overpower cogent story-telling and visual clarity during the big action sequences.\nThis is the type of movie best enjoyed by frat boys and college kids while sucking on the bong and downing one alcoholic beverage after another.\nFriday After Next has the same problem that Next Friday did -- it's called Where's Chris Tucker When You Need Him?\nThis film is full of rabbits. Brimful. But like most rabbits, it seems to lack substance.\nI weep for the future when a good portion of the respected critical community in this country consider Blue Crush to be an intelligent film about young women.\nI kept wishing I was watching a documentary about the wartime Navajos and what they accomplished instead of all this specious Hollywood hoo-ha.\nNo number of fantastic sets, extras, costumes and spectacular locales can disguise the emptiness at the center of the story.\nA movie far more cynical and lazy than anything a fictitious Charlie Kaufman might object to.\nCould The Country Bears really be as bad as its trailers? In a word -- yes.\nIf High Crimes were any more generic it would have a universal product code instead of a title.\nReggio falls victim to relying on the very digital technology that he fervently scorns, creating a meandering, inarticulate and ultimately disappointing film.\nThe movie makes absolutely no sense. Its underlying mythology is a hodgepodge of inconsistencies that pose the question: Since when did dumb entertainment have to be this dumb?\nThe problem with this film is that it's forced to make its characters idiots in order to advance the plot. Had anyone here done anything remotely intelligent, we all could have stopped watching long ago.\nDespite the authenticity of the trappings, the film is overblown in its plotting, hackneyed in its dialogue and anachronistic in its style.\nMurder and mayhem of this sort quickly becomes monotonous.\nThe journey toward redemption feels more like a cinematic experiment than a full-blown movie.\nThat Zhang would make such a strainingly cute film -- with a blind orphan at its center, no less -- indicates where his ambitions have wandered.\nThe Gantzes' interviews tend to let the guys off the hook.\nThe streets, shot by cinematographer Michael Ballhaus, may be as authentic as they are mean, but it is nearly impossible to care about what happens on them.\nThis is a good movie in spurts, but when it doesn't work, it's at important times.\nParker probably thinks he's shaking up a classic the way Kenneth Branagh and Baz Luhrmann have, but this half-hearted messing-about just makes us miss Wilde's still-contemporary play.\nFlotsam in the sea of moviemaking, not big enough for us to worry about it causing significant harm and not smelly enough to bother despising.\nA TV episode inflated past its natural length.\nInvolving at times, but lapses quite casually into the absurd.\nAll these developments and challenges facing Santa weigh down the plot so heavily that they drain all the film of its energy and needlessly strain credibility.\nThere are weird resonances between actor and role here, and they're not exactly flattering.\nThe unceasing sadism is so graphically excessive, the director just ends up exposing his own obsession.\nThe story ... is moldy and obvious.\nIt's drained of life in an attempt to be sober and educational, and yet it's so devoid of realism that its lack of whistles and bells just makes it obnoxious and stiff.\nSuffocated at conception by its Munchausen-by-proxy mum. Punish the vehicle to adore the star.\nEven if Britney Spears is really cute, her movie is really bad.\nBig Fat Liar is just futile silliness looking to tap into the kiddie sensibilities.\nUsually when I get this much syrup, I like pancakes to go with it.\nAll the necessary exposition prevents the picture from rising above your generic sand 'n' sandal adventure.\nGlib, satirical documentary that fudges facts, makes facile points and engages in the cinematic equivalent of tabloid journalism.\nGangs of New York is an unapologetic mess, whose only saving grace is that it ends by blowing just about everything up.\nAn overblown clunker full of bad jokes, howling cliches and by-the-numbers action sequences.\nWithout a strong script and energetic acting, Dogma films can produce the same sleep-inducing effects as watching your neighbor's home videos.\nA mild, reluctant, thumbs down.\nStrong setup and ambitious goals fade as the film descends into unsophisticated scare tactics and B-film thuggery.\nSchindler's List it ain't.\nA cinematic sleeping pill of impressive potency.\nIt's an awfully derivative story.\nThe movie barely makes sense, with its unbelievable naïveté and arbitrary flashbacks.\nIt's an earnest debut full of heartfelt performances, but is ultimately let down by a story that is all too predictable.\nAbout as cutting-edge as Pet Rock: The Movie.\nWith generic sets and B-grade special effects, Jason is about as convincing on the sci-fi front as TV's defunct Cleopatra 2525.\nNot sweet enough to liven up its predictable story and will leave even fans of hip-hop sorely disappointed.\nWinds up feeling like lots of other quirky movies that try to score hipness points with young adults.\nOft-described as the antidote to American Pie-type sex comedies, it actually has a bundle in common with them, as the film diffuses every opportunity for a breakthrough\nThe pacing is glacial, the screenplay is stiff as a board, and things heat up only in the movie's final scenes.\nThe premise is overshadowed by the uberviolence of the Clericks as this becomes just another kung-fu sci-fi movie with silly action sequences.\nWith its hints of a greater intelligence lurking somewhere, The Ring makes its stupidity more than obvious. It's painful.\nPumpkin struts about with ``courage'' pinned to its huckster lapel while a yellow streak a mile wide decorates its back.\nAn uneven film dealing with too many problems to be taken seriously.\nSheridan ... smoothes over sources of conflict that could have lent the film a bit more depth.\nAn atonal estrogen opera that demonizes feminism while gifting the most sympathetic male of the piece with a nice vomit bath at his wedding.\nHalf of it is composed of snappy patter and pseudo-sophisticated cultural observations, while the remainder...would be more at home on a daytime television serial.\nWriter/director John McKay ignites some charming chemistry between Kate and Jed but, when he veers into sodden melodrama, punctuated by violins, it's disastrous and Kate's jealous female friends become downright despicable.\n(Newton)wanders through CHARLIE completely unaware she needs to show some presence and star quality.\nUnfortunately, the picture failed to capture me. I found it slow, drab, and bordering on melodramatic.\nA lousy movie that's not merely unwatchable, but also unlistenable.\nThe best way to hope for any chance of enjoying this film is by lowering your expectations. Then lower them a bit more.\nWhen not obscured by the booming bass-heavy soundtrack, the conversation presents the kind of linguistic fumbling not heard since Macy Gray's game of Chinese whispers with Mr Bean.\nCliches are as thick as the cigarette smoke.\nA woozy, roisterous, exhausting mess, and the off-beat casting of its two leads turns out to be as ill-starred as you might expect.\n'Abandon all hope, ye who enter here'...you should definitely let Dante's gloomy words be your guide.\nWhat begins as a seemingly brainless, bubbly romantic comedy becomes a cliche-drenched melodrama by mid-film and, by film's end, a feminist action fantasy.\nA grim, flat and boring werewolf movie that refuses to develop an energy level.\nBirot's directorial debut (she co-wrote the script with Christophe Honoré) isn't so much bad as it is bland.\nWatching the film is like reading a Times Portrait of Grief that keeps shifting focus to the journalist who wrote it.\nEnough similarities to Gymkata and Howie Long's Firestorm that my fingernails instinctively crawled towards my long-suffering eyeballs.\nSucceeds in providing a disquiet world the long-dreaded completion of the Police Academy series.\nChristians sensitive to a reductionist view of their Lord as a luv-spreading Dr. Feelgood or omnipotent slacker will feel vastly more affronted than secularists, who might even praise God for delivering such an instant camp classic.\nIf this dud had been made in the '70s, it would have been called The Hills Have Antlers and played for about three weeks in drive-ins.\nA frantic search for laughs, with a hit-to-miss ratio that doesn't exactly favour the audience.\nLike a documentary version of Fight Club, shorn of social insight, intellectual pretension and cinematic interest.\n``An entire film about researchers quietly reading dusty old letters.''\nPryor Lite, with half the demons, half the daring, much less talent, many fewer laughs.\nWhat's at stake in this film is nothing more than an obsolete, if irritating, notion of class.\nThe stories here suffer from the chosen format.\nWhile the mystery surrounding the nature of the boat's malediction remains intriguing enough to sustain mild interest, the picture refuses to offer much accompanying sustenance in the way of characterization, humor or plain old popcorn fun.\nJust how extreme are these ops? I regret to report that these ops are just not extreme enough.\nThe actors are forced to grapple with hazy motivations that never come into focus.\nJohn Leguizamo may be a dramatic actor -- just not in this movie.\nThe sequel has turned completely and irrevocably bizarre to the point of utter nonsense.\nHardly makes the kind of points Egoyan wanted to make, nor does it exist as the kind of monument he wanted to build, to victims whose voices have never gained the ears of the world.\nBuild some robots, haul 'em to the theatre with you for the late show, and put on your own Mystery Science Theatre 3000 tribute to what is almost certainly going to go down as the worst -- and only -- killer website movie of this or any other year.\nRainy days and movies about the disintegration of families always get me down.\n...has about 3/4th the fun of its spry 2001 predecessor -- but it's a rushed, slapdash, sequel-for-the-sake- of-a-sequel with less than half the plot and ingenuity.\nThe Master Of Disaster - it's a piece of dreck disguised as comedy.\nThe film has a few cute ideas and several modest chuckles but it isn't exactly kiddie-friendly... Alas, Santa is more ho-hum than ho-ho-ho and the Snowman (who never gets to play that flute) has all the charm of a meltdown.\nThe stupidest, most insulting movie of 2002's first quarter.\nIt's so underwritten that you can't figure out just where the other characters, including Ana's father and grandfather, come down on the issue of Ana's future.\nA film so tedious that it is impossible to care whether that boast is true or not.\nNone of this violates the letter of Behan's book, but missing is its spirit, its ribald, full-throated humor.\nBad Company leaves a bad taste, not only because of its bad-luck timing, but also the staleness of its script.\nEven if it ultimately disappoints, the picture does have about a matinee admission's worth of funny to keep it afloat.\nFails to bring as much to the table.\nA film made with as little wit, interest, and professionalism as artistically possible for a slummy Hollywood caper flick.\nDisturbingly superficial in its approach to the material.\nIf you're not the target demographic ... this movie is one long chick-flick slog.\nI hate this movie\nIt's tough to tell which is in more abundant supply in this woefully hackneyed movie, directed by Scott Kalvert, about street gangs and turf wars in 1958 Brooklyn -- stale cliches, gratuitous violence, or empty machismo.\nGooding and Coburn are both Oscar winners, a fact which, as you watch them clumsily mugging their way through Snow Dogs, seems inconceivable.\nAt every opportunity to do something clever, the film goes right over the edge and kills every sense of believability... all you have left is a no-surprise series of explosions and violence while Banderas looks like he's not trying to laugh at how bad it\n...pitiful, slapdash disaster. A DOA dud from frame one.\nJaw-droppingly superficial, straining to get by on humor that is not even as daring as John Ritter's glory days on Three's Company.\nThere are plenty of scenes in Frida that do work, but rarely do they involve the title character herself.\nAlthough God Is Great addresses interesting matters of identity and heritage, it's hard to shake the feeling that it was intended to be a different kind of film.\nThe dark and bittersweet twist feels strange as things turn nasty and tragic during the final third of the film. First-timer John McKay is never able to pull it back on course.\nDistances you by throwing out so many red herrings, so many false scares, that the genuine ones barely register.\nGodard uses his characters -- if that's not too glorified a term -- as art things, mouthpieces, visual motifs, blanks.\nThe movie generates plot points with a degree of randomness usually achieved only by lottery drawing.\nA predictable, manipulative stinker. The story passes time until it's time for an absurd finale of twisted metal, fireballs and revenge.\nEastwood winces, clutches his chest and gasps for breath. It's a spectacular performance - ahem, we hope it's only acting.\nThe movie suffers from two fatal ailments -- a dearth of vitality and a story that's shapeless and uninflected.\nIt's just weirdness for the sake of weirdness, and where Human Nature should be ingratiating, it's just grating.\nAn ambitiously naturalistic, albeit half-baked, drama about an abused, inner-city autistic teen.\nonce she lets her love depraved leads meet, (Denis') story becomes a hopeless, unsatisfying muddle\nThe dose is strong and funny, for the first 15 minutes anyway; after that, the potency wanes dramatically.\nThe people in ABC Africa are treated as docile, mostly wordless ethnographic extras.\nWhat's really sad is to see two Academy Award winning actresses (and one Academy Award winning actor) succumb to appearing in this junk that's TV sitcom material at best.\nNo doubt the star and everyone else involved had their hearts in the right place. Where their heads were is anyone's guess.\nCall me a cynic, but there's something awfully deadly about any movie with a life-affirming message.\nA gratingly unfunny groaner littered with zero-dimensional, unlikable characters and hackneyed, threadbare comic setups.\nGot some good, organic character work, lots of obvious political insights and little room for engaging, imaginative filmmaking in its nearly 2 1/2-hour, dissipated length.\nA painfully slow cliche-ridden film filled with more holes than Clyde Barrow's car.\nLike leafing through an album of photos accompanied by the sketchiest of captions.\nI guess it just goes to show that if you give a filmmaker an unlimited amount of phony blood, nothing good can happen.\nGaghan captures the half-lit, sometimes creepy intimacy of college dorm rooms, a subtlety that makes the silly, over-the-top coda especially disappointing.\nFeels less like a change in (Herzog's) personal policy than a half-hearted fluke.\nOne of the most unpleasant things the studio has ever produced.\nWill anyone who isn't a Fangoria subscriber be excited that it hasn't gone straight to video?\nA selection of scenes in search of a movie.\n(Janey) forgets about her other obligations, leading to a tragedy which is somehow guessable from the first few minutes, maybe because it echoes the by now intolerable morbidity of so many recent movies.\nWill undoubtedly play well in European markets, where Mr. Besson is a brand name, and in Asia, where Ms. Shu is an institution, but American audiences will probably find it familiar and insufficiently cathartic.\nTrue to its animatronic roots:...as stiff, ponderous and charmless as a mechanical apparatus...'The Country Bears' should never have been brought out of hibernation.\n(Evans is) a fascinating character, and deserves a better vehicle than this facetious smirk of a movie.\nThe script's judgment and sense of weight is way, way off.\nYou come away wishing, though, that the movie spent a lot less time trying to make a credible case for reports from the afterlife and a lot more time on the romantic urgency that's at the center of the story.\nEvelyn may be based on a true and historically significant story, but the filmmakers have made every effort to disguise it as an unimaginative screenwriter's invention.\nA derivative collection of horror and sci-fi cliches.\nLoosely speaking, we're in All of Me territory again, and, strictly speaking, Schneider is no Steve Martin.\nAs aimless as an old pickup skidding completely out of control on a long patch of black ice, the movie makes two hours feel like four.\nLimps along on a squirm-inducing fish-out-of-water formula that goes nowhere and goes there very, very slowly.\nJust the sort of lazy tearjerker that gives movies about ordinary folk a bad name.\nThe redeeming feature of Chan's films has always been the action, but the stunts in The Tuxedo seem tired and, what's worse, routine.\nWhile The Importance of Being Earnest offers opportunities for occasional smiles and chuckles, it doesn't give us a reason to be in the theater beyond Wilde's wit and the actors' performances.\nHas all the scenic appeal of a cesspool.\nA rambling ensemble piece with loosely connected characters and plots that never quite gel.\nA Lifetime movie about men.\nThe Balkans provide the obstacle course for the love of a good woman.\nIt's hard to say who might enjoy this, are there Tolstoy groupies out there? It's dark and tragic, and lets the business of the greedy talent agents get in the way of saying something meaningful about facing death\nThis is a movie that starts out like Heathers, then becomes Bring it On, then becomes unwatchable.\nThe screenplay flounders under the weight of too many story lines.\nI think it was Plato who said, 'I think, therefore I know better than to rush to the theatre for this one.'\nIf Damon and Affleck attempt another Project Greenlight, next time out they might try paying less attention to the miniseries and more attention to the film it is about.\nThis is rote drivel aimed at Mom and Dad's wallet.\nContrived, maudlin and cliche-ridden...if this sappy script was the best the contest received, those rejected must have been astronomically bad.\nI hate the feeling of having been slimed in the name of High Art.\nThis is more a case of 'Sacre bleu!' than 'Magnifique'.\nThe kids in the audience at the preview screening seemed bored, cheering the pratfalls but little else; their parents, wise folks that they are, read books.\nWhether Jason X is this bad on purpose is never clear. But one thing's for sure: It never comes close to being either funny or scary.\nYet another weepy Southern bore-athon.\nI like all four of the lead actors a lot and they manage to squeeze a few laughs out of the material, but they're treading water at best in this forgettable effort.\nPerhaps the most annoying thing about Who Is Cletis Tout? is that it's a crime movie made by someone who obviously knows nothing about crime.\nExcept as an acting exercise or an exceptionally dark joke, you wonder what anyone saw in this film that allowed it to get made.\nThis insufferable movie is meant to make you think about existential suffering. Instead, it'll only put you to sleep.\nWho is this movie for? Not kids, who don't need the lesson in repugnance. It's also not smart or barbed enough for older viewers -- not everyone thinks poo-poo jokes are 'edgy.'\nA sleep-inducingly slow-paced crime drama with clumsy dialogue, heavy-handed phoney-feeling sentiment, and an overly-familiar set of plot devices.\nIt's so tedious that it makes you forgive every fake, dishonest, entertaining and, ultimately, more perceptive moment in Bridget Jones's Diary.\nAlmost as offensive as ``Freddy Got Fingered.''\nThe gifted Crudup has the perfect face to play a handsome blank yearning to find himself, and his cipherlike personality and bad behavior would play fine if the movie knew what to do with him.\nIt is depressing, ruthlessly pained and depraved, the movie equivalent of staring into an open wound.\nPonderous, plodding soap opera disguised as a feature film.\nCold, pretentious, thoroughly dislikable study in sociopathy.\nFor the future, one hopes Mr. Plympton will find room for one more member of his little band, a professional screenwriter.\nA cheap scam put together by some cynical creeps at Revolution Studios and Imagine Entertainment to make the suckers out there surrender $9 and 93 minutes of unrecoverable life.\nReign of Fire never comes close to recovering from its demented premise, but it does sustain an enjoyable level of ridiculousness.\nHuman Nature is a goofball movie, in the way that Malkovich was, but it tries too hard.\nOriginality is sorely lacking.\nThe plot's clearly mythic structure may owe more to Disney's strong sense of formula than to the original story. But while the highly predictable narrative falls short, Treasure Planet is truly gorgeous to behold.\nThough there are entertaining and audacious moments, the movie's wildly careening tone and an extremely flat lead performance do little to salvage this filmmaker's flailing reputation.\nRam Dass Fierce Grace moulds itself as an example to up-and-coming documentarians, of the overlooked pitfalls of such an endeavour.\nLucky Break is perfectly inoffensive and harmless, but it's also drab and inert.\nFor a story set at sea, Ghost Ship is pretty landbound, with its leaden acting, dull exposition and telegraphed 'surprises.'\nThere might be some sort of credible gender-provoking philosophy submerged here, but who the hell cares?\nNothing more than a stifling morality tale dressed up in peekaboo clothing.\nI like my Christmas movies with more elves and snow and less pimps and ho's.\nIt all seemed wasted like DeNiro's once promising career and the once grand Long Beach boardwalk.\n(I)t's certainly laudable that the movie deals with hot-button issues in a comedic context, but Barbershop isn't as funny as it should be.\nUnfortunately, a cast of competent performers from movies, television and the theater are cast adrift in various New York City locations with no unifying rhythm or visual style.\nJust entertaining enough not to hate, too mediocre to love.\n'Sophisticated' viewers who refuse to admit that they don't like it will likely call it 'challenging' to their fellow sophisticates.\nEquilibrium the movie, as opposed to the manifesto, is really, really stupid.\nExcruciatingly unfunny and pitifully unromantic.\nThe film's thoroughly recycled plot and tiresome jokes ... drag the movie down.\nIt doesn't offer audiences any way of gripping what its point is, or even its attitude toward its subject.\nThis kiddie-oriented stinker is so bad that I even caught the gum stuck under my seat trying to sneak out of the theater\nThough Impostor deviously adopts the guise of a modern motion picture, it too is a bomb.\nCox offers plenty of glimpses at existing photos, but there are no movies of Nijinsky, so instead the director treats us to an aimless hodgepodge.\nEvery note rings false.\nWhen the screenwriter responsible for one of the worst movies of one year directs an equally miserable film the following year, you'd have a hard time believing it was just coincidence.\nIt never rises to its clever what-if concept.\nAdmirably ambitious but self-indulgent.\nThis story of unrequited love doesn't sustain interest beyond the first half-hour.\nThis angst-ridden territory was covered earlier and much better in Ordinary People.\nThe entire film is one big excuse to play one lewd scene after another. About half of them are funny, a few are sexy and none are useful in telling the story, which is paper-thin and decidedly unoriginal.\nA big, loud, bang-the-drum bore.\n(Less a movie than) an appalling, odoriferous thing... so rotten in almost every single facet of production that you'll want to crawl up your own *** in embarrassment.\nThe concept behind Kung Pow: Enter the Fist is hilarious. It's too bad nothing else is.\nHardman is a grating, mannered onscreen presence, which is especially unfortunate in light of the fine work done by most of the rest of her cast.\nEl Crimen Del Padre Amaro would likely be most effective if used as a tool to rally anti-Catholic protestors.\nInteresting and thoroughly unfaithful version of Carmen\nA serious movie with serious ideas. But seriously, folks, it doesn't work.\nThere's nothing exactly wrong here, but there's not nearly enough that's right.\nThe action here is unusually tame, the characters are too simplistic to maintain interest, and the plot offers few surprises.\nI couldn't help but feel the wasted potential of this slapstick comedy.\nWhat Madonna does here can't properly be called acting -- more accurately, it's moving and it's talking and it's occasionally gesturing, sometimes all at once.\n(A) painfully flat gross-out comedy ...\nEven if you're an Elvis person, you won't find anything to get excited about on this DVD.\nThe movie certainly has its share of clever moments and biting dialogue, but there's just not much lurking below its abstract surface.\nIt's bedeviled by labored writing and slack direction.\nI'm sure there's a teenage boy out there somewhere who's dying for this kind of entertainment.\nThe Tuxedo miscalculates badly by forcing the star to play second fiddle to the dull effects that allow the suit to come to life.\nThe film is a confusing melange of tones and styles, one moment a romantic trifle and the next a turgid drama.\nObviously, a lot of people wasted a lot of their time (including mine) on something very inconsequential.\nThere's a little violence and lots of sex in a bid to hold our attention, but it grows monotonous after a while, as do Joan and Philip's repetitive arguments, schemes and treachery.\nIt drowns in sap.\nDeliberately and devotedly constructed, Far from Heaven is too picture postcard perfect, too neat and new pin-like, too obviously a recreation to resonate.\nIt's rare that a movie can be as intelligent as this one is in every regard except its storyline; everything that's good is ultimately scuttled by a plot that's just too boring and obvious.\nI'm giving it thumbs down due to the endlessly repetitive scenes of embarrassment. There's got to be a more graceful way of portraying the devastation of this disease.\nThe good thing -- the only good thing -- about Extreme Ops is that it's so inane that it gave me plenty of time to ponder my Thanksgiving to-do list.\nThe modern-day characters are nowhere near as vivid as the 19th-century ones.\nBlessed with a searing lead performance by Ryan Gosling (Murder by Numbers), the movie is powerful and provocative. It's also built on a faulty premise, one it follows into melodrama and silliness.\nUneven performances and a spotty script add up to a biting satire that has no teeth.\nDirector Jay Russell stomps in hobnail boots over Natalie Babbitt's gentle, endearing 1975 children's novel.\nBenigni's Pinocchio is extremely straight and mind-numbingly stilted, its episodic pacing keeping the film from developing any storytelling flow.\nThe troubling thing about Clockstoppers is that it doesn't make any sense.\nWith its paint fights, motorized scooter chases and dewy-eyed sentiment, it's a pretty listless collection of kid-movie clichés.\nMostly the film is just hectic and homiletic: two parts exhausting Men in Black mayhem to one part family values.\nKicks off with an inauspicious premise, mopes through a dreary tract of virtually plotless meanderings and then ends with a whimper.\nA rote exercise in both animation and storytelling.\nThe material and the production itself are little more than routine.\nThe movie's major and most devastating flaw is its reliance on formula, though, and it's quite enough to lessen the overall impact the movie could have had.\nNot even Steven Spielberg has dreamed up such blatant and sickening product placement in a movie.\nIt's all surface psychodramatics.\nThe Mothman Prophecies, which is mostly a bore, seems to exist only for its climactic setpiece.\nThat frenetic spectacle (on the TV show) has usually been leavened by a charm that's conspicuously missing from the Girls' big-screen blowout.\nKitschy, flashy, overlong soap opera.\nFor all the time we spend with these people, we never really get inside of them.\nYet another Arnold vehicle that fails to make adequate use of his particular talents.\nSandra Bullock, despite downplaying her good looks, carries a little too much ain't- she-cute baggage into her lead role as a troubled and determined homicide cop to quite pull off the heavy stuff.\nAn undistinguished attempt to make a classic theater piece cinematic.\ntoo many scenarios in which the hero might have an opportunity to triumphantly sermonize, and too few that allow us to wonder for ourselves if things will turn out okay.\nThere is simply not enough of interest onscreen to sustain its seventy-minute running time.\nA wordy wisp of a comedy.\nBroomfield's style of journalism is hardly journalism at all, and even those with an avid interest in the subject will grow impatient.\n(Seagal's) strenuous attempt at a change in expression could very well clinch him this year's Razzie.\nHas the disjointed feel of a bunch of strung-together TV episodes.\nA series of escapades demonstrating the adage that what is good for the goose is also good for the gander, some of which occasionally amuses but none of which amounts to much of a story.\nOzpetek offers an AIDS subtext, skims over the realities of gay sex, and presents yet another tired old vision of the gay community as an all-inclusive world where uptight, middle class bores like Antonia can feel good about themselves.\nA dopey movie clothed in excess layers of hipness.\nThe Sweetest Thing is expressly for idiots who don't care what kind of sewage they shovel into their mental gullets to simulate sustenance.\nSinks so low in a poorly played game of absurd plot twists, idiotic court maneuvers and stupid characters that even Freeman can't save it.\nI realized that no matter how fantastic Reign of Fire looked, its story was making no sense at all.\nIt made me realize that we really haven't had a good cheesy B-movie playing in theaters since... well... since last week's Reign of Fire.\nSome movies were made for the big screen, some for the small screen, and some, like Ballistic: Ecks vs. Sever, were made for the palm screen.\nSC2 is an autopilot Hollywood concoction lacking in imagination and authentic Christmas spirit, yet it's geared toward an audience full of masters of both.\nAfter all the big build-up, the payoff for the audience, as well as the characters, is messy, murky, unsatisfying.\nSeems content to dog-paddle in the mediocre end of the pool, and it's a sad, sick sight.\nIt's refreshing that someone understands the need for the bad boy; Diesel, with his brawny frame and cool, composed delivery, fits the bill perfectly.\nIf all of Eight Legged Freaks was as entertaining as the final hour, I would have no problem giving it an unqualified recommendation.\nSuffers from a flat script and a low budget.\nThere are deeply religious and spiritual people in this world who would argue that entering a church, synagogue or temple doesn't mean you have to check your brain at the door. The same should go for movie theaters.\nSeemingly a vehicle to showcase the Canadian's inane ramblings, Stealing Harvard is a smorgasbord of soliloquies about nothing delivered by the former Mr. Drew Barrymore.\nThe film tries to touch on spousal abuse but veers off course and becomes just another revenge film.\nAs it stands it's an opera movie for the buffs.\nThis franchise has not spawned a single good film. The crap continues.\nIts inescapable absurdities are tantamount to insulting the intelligence of anyone who hasn't been living under a rock (since Sept. 11).\nHigh drama, Disney-style - a wing and a prayer and a hunky has-been pursuing his castle in the sky.\nLike its script, which nurses plot holes gaping enough to pilot an entire Olympic swim team through, the characters in Swimfan seem motivated by nothing short of dull, brain-deadening hangover.\nOne big blustery movie where nothing really happens. When it comes out on video, then it's the perfect cure for insomnia.\nLike a comedian who starts off promisingly but then proceeds to flop, Comedian runs out of steam after a half hour.\nThe pairing does sound promising in theory...but their lack of chemistry makes Eddie Murphy and Robert DeNiro in Showtime look like old, familiar vaudeville partners.\nDirector Chris Eyre is going through the paces again with his usual high melodramatic style of filmmaking.\nAs it stands, there's some fine sex onscreen, and some tense arguing, but not a whole lot more.\nI could just feel the screenwriter at every moment 'Tap, tap, tap, tap, tapping away' on this screenplay.\nThe picture doesn't know it's a comedy.\nA stupid, derivative horror film that substitutes extreme gore for suspense.\nThe rollerball sequences feel sanitised and stagey.\nRoman Polanski directs The Pianist like a surgeon mends a broken heart; very meticulously but without any passion.\nNothing more than a run-of-the-mill action flick.\nLan Yu is certainly a serviceable melodrama, but it doesn't even try for the greatness that Happy Together shoots for (and misses).\nThis is an action movie with an action icon who's been all but decommissioned.\nEven if it is generally amusing from time to time, I Spy has all the same problems the majority of action comedies have.\nMuch like Robin Williams, Death to Smoochy has already reached its expiration date.\nAn annoying orgy of excess and exploitation that has no point and goes nowhere.\nA tired, unnecessary retread...a stale copy of a picture that wasn't all that great to begin with.\nAn often unfunny romp.\nA worthy idea, but the uninspired scripts, acting and direction never rise above the level of an after-school TV special.\nTwenty years later, Reggio still knows how to make a point with poetic imagery, but his ability to startle has been stifled by the very prevalence of the fast-forward technology that he so stringently takes to task.\nEar-splitting exercise in formula crash-and-bash action.\nWe have an actor who is great fun to watch performing in a film that is only mildly diverting.\nDespite Hoffman's best efforts, Wilson remains a silent, lumpish cipher; his encounters reveal nothing about who he is or who he was before.\nThere's a thin line between likably old-fashioned and fuddy-duddy, and The Count of Monte Cristo ... never quite settles on either side.\nThe emotional overload of female angst irreparably drags the film down.\nSchaefer's...determination to inject farcical raunch...drowns out the promise of the romantic angle.\nLike Showgirls and Glitter, the most entertaining moments here are unintentional.\nWhile some of the camera work is interesting, the film's mid-to-low budget is betrayed by the surprisingly shoddy makeup work.\nThe origin story is well told, and the characters will not disappoint anyone who values the original comic books. It's in the action scenes that things fall apart.\nImpostor is a step down for director Gary Fleder.\nSeagal, who looks more like Danny Aiello these days, mumbles his way through the movie.\nThe movie is a negligible work of manipulation, an exploitation piece doing its usual worst to guilt-trip parents.\nLacks dramatic punch and depth.\nThere are moments of real pleasure to be found in Sara Sugarman's whimsical comedy Very Annie-Mary but not enough to sustain the film.\nI can analyze this movie in three words: Thumbs Friggin' Down.\nSadly, 'Garth' hasn't progressed as nicely as 'Wayne.'\nMake like the title and dodge this one.\nThis is not one of the movies you'd want to watch if you only had a week to live.\nThe first hour is tedious though Ford and Neeson capably hold our interest, but its just not a thrilling movie.\nHere's a case of two actors who do everything humanly possible to create characters who are sweet and believable, and are defeated by a screenplay that forces them into bizarre, implausible behavior.\nIt's obvious (Je-Gyu is) trying for poetry; what he gets instead has all the lyricism of a limerick scrawled in a public restroom.\nSweet Home Alabama is one dumb movie, but its stupidity is so relentlessly harmless that it almost wins you over in the end.\n(Green is) the comedy equivalent of Saddam Hussein, and I'm just about ready to go to the U.N. and ask permission for a preemptive strike.\nNo amount of good acting is enough to save Oleander's uninspired story.\nA vile, incoherent mess...a scummy ripoff of David Cronenberg's brilliant 'Videodrome.'\nMurphy and Wilson actually make a pretty good team... but the project surrounding them is distressingly rote.\nDespite its raucous intent, XXX is as conventional as a Nike ad and as rebellious as spring break.\nThink The Lion King redone for horses, with fewer deliberate laughs, more inadvertent ones and stunningly trite songs by Bryan Adams, the world's most generic rock star.\nIt is one more celluloid testimonial to the cruelties experienced by Southern blacks as distilled through a Caucasian perspective.\nIt's tough being a black man in America, especially when the Man has taken away your car, your work-hours and denied you health insurance.\nA small fortune in salaries and stunt cars might have been saved if the director, Tom Dey, had spliced together bits and pieces of Midnight Run and 48 Hours (and, for that matter, Shrek).\nAn amateurish, quasi-improvised acting exercise shot on ugly digital video.\nThe holes in this film remain agape -- holes punched through by an inconsistent, meandering, and sometimes dry plot.\nWould Benigni's Italian Pinocchio have been any easier to sit through than this hastily dubbed disaster?\nUnofficially, National Lampoon's Van Wilder is Son of Animal House. Officially, it is twice as bestial but half as funny.\nThis is a fragmented film, once a good idea that was followed by the bad idea to turn it into a movie.\nMindless yet impressively lean spinoff of last summer's bloated effects fest The Mummy Returns.\nHalfway through the movie, the humor dwindles. It's replaced by some dramatic scenes that are jarring and deeply out of place in what could have (and probably should have) been a lighthearted comedy.\nwill be far more interesting to the Soderbergh faithful than it will be to the casual moviegoer who might be lured in by Julia Roberts...\nAuthentic, and at times endearing, humorous, spooky, educational, but at other times as bland as a block of snow.\nControl-Alt-Delete Simone as quickly as possible\nFollows the original film virtually scene for scene and yet manages to bleed it almost completely dry of humor, verve and fun.\nThe filmmaker ascends, literally, to the Olympus of the art world, but he would have done well to end this flawed, dazzling series with the raising of something other than his own cremaster.\nThe screenplay comes across, rather unintentionally, as Hip-Hop Scooby-Doo.\nHas lost some of the dramatic conviction that underlies the best of comedies...\nVaguely interesting, but it's just too too much.\n...no charm, no laughs, no fun, no reason to watch.\nA generic family comedy unlikely to be appreciated by anyone outside the under-10 set.\nKung Pow seems like some futile concoction that was developed hastily after Oedekerk and his fellow moviemakers got through crashing a college keg party.\nKurys seems intimidated by both her subject matter and the period trappings of this debut venture into the heritage business.\nThe film virtually chokes on its own self-consciousness.\nA manipulative feminist empowerment tale thinly posing as a serious drama about spousal abuse.\nEverything in Maid in Manhattan is exceedingly pleasant, designed not to offend. It goes down easy, leaving virtually no aftertaste.\nA profoundly stupid affair, populating its hackneyed and meanspirited storyline with cardboard characters and performers who value cash above credibility.\n...pays tribute to heroes the way Julia Roberts hands out awards--with phony humility barely camouflaging grotesque narcissism.\nTime stands still in more ways that one in Clockstoppers, a sci-fi thriller as lazy as it is interminable.\nAs a director, Eastwood is off his game -- there's no real sense of suspense, and none of the plot 'surprises' are really surprising.\nEccentric enough to stave off doldrums, Caruso's self-conscious debut is also eminently forgettable.\nTo work, love stories require the full emotional involvement and support of a viewer. That is made almost impossible by events that set the plot in motion.\nAlthough Barbershop boasts some of today's hottest and hippest acts from the world of television, music and stand-up comedy, this movie strangely enough has the outdated swagger of a shameless `70s blaxploitation shuck-and-jive sitcom.\nA puzzle whose pieces do not fit. Some are fascinating and others are not, and in the end, it is almost a good movie.\nWould that Greengrass had gone a tad less for grit and a lot more for intelligibility.\nThe good is very, very good... The rest runs from mildly unimpressive to despairingly awful.\n'Butterfingered' is the word for the big-fisted direction of Jez Butterworth, who manages to blast even the smallest sensitivities from the romance with his clamorous approach.\nBe forewarned, if you're depressed about anything before watching this film, you may just end up trying to drown yourself in a lake afterwards.\na terrible adaptation of a play that only ever walked the delicate tightrope between farcical and loathsome. In the wrong hands, i.e. Peploe's, it's simply unbearable\nAn inexperienced director, Mehta has much to learn.\nA limp Eddie Murphy vehicle that even he seems embarrassed to be part of.\nSo muddled, repetitive and ragged that it says far less about the horrifying historical reality than about the filmmaker's characteristic style.\nA gushy episode of ``M*A*S*H'' only this time from an Asian perspective.\n``Looking For Leonard'' just seems to kinda sit in neutral, hoping for a stiff wind to blow it uphill or something.\nNothing more than four or five mild chuckles surrounded by 86 minutes of overly-familiar and poorly-constructed comedy.\nDefinitely in the guilty pleasure B-movie category, Reign of Fire is so incredibly inane that it is laughingly enjoyable.\nGood-looking but relentlessly lowbrow outing plays like Clueless Does South Fork.\nentertaining enough, but nothing new\n...one resurrection too many.\nThis is a film about the irksome, tiresome nature of complacency that remains utterly satisfied to remain the same throughout. Even as the hero of the story rediscovers his passion in life, the mood remains oddly detached.\nDeMeo is not without talent; he just needs better material.\nIn spite of featuring a script credited to no fewer than five writers, apparently nobody here bothered to check it twice.\nNo one involved, save Dash, shows the slightest aptitude for acting, and the script, credited to director Abdul Malik Abbott and Ernest 'Tron' Anderson, seems entirely improvised.\nInitially gripping, eventually cloying POW drama.\nA timid, soggy near miss.\nWorks better in the conception than it does in the execution...winds up seeming just a little too clever.\nTo the vast majority of more casual filmgoers, it will probably be a talky bore.\nObservant intelligence constantly vies with pretension -- and sometimes plain wacky implausibility -- throughout Maelstrom.\nThis version of H.G. Wells' Time Machine was directed by H.G. Wells' great-grandson. They should have found Orson Welles' great-grandson.\nShunji Iwai's All About Lily Chou Chou is a beautifully shot, but ultimately flawed film about growing up in Japan.\nWith more character development this might have been an eerie thriller; with better payoffs, it could have been a thinking man's monster movie.\nThriller directorial debut for Traffic scribe Gaghan has all the right parts, but the pieces don't quite fit together.\n...would be a total loss if not for two supporting performances taking place at the movie's edges.\nThere's not a single jump-in-your-seat moment and believe it or not, Jason actually takes a backseat in his own film to special effects.\nGoldbacher draws on an elegant visual sense and a talent for easy, seductive pacing ... but she and writing partner Laurence Coriat don't manage an equally assured narrative coinage.\nThough Harris is affecting at times, he cannot overcome the sense that Pumpkin is a mere plot pawn for two directors with far less endearing disabilities.\nThe documentary is much too conventional -- lots of boring talking heads, etc. -- to do the subject matter justice.\nThe movie itself appears to be running on hypertime in reverse as the truly funny bits get further and further apart.\nThis is not a Jackie Chan movie. It's just a movie that happens to have Jackie Chan in it. And that makes all the difference.\nFar too clever by half, Howard's film is really a series of strung-together moments, with all the spaces in between filled with fantasies, daydreams, memories and one fantastic visual trope after another.\nThe problem with movies about angels is they have a tendency to slip into hokum. A Rumor of Angels doesn't just slip -- it avalanches into forced fuzziness.\nNo big whoop, nothing new to see, zero thrills, too many flashbacks and a choppy ending make for a bad film.\nI don't think this movie loves women at all.\nShankman ... and screenwriter Karen Janszen bungle their way through the narrative as if it were a series of Bible parables and not an actual story.\nA negligible British comedy.\nFails to convince the audience that these brats will ever be anything more than losers.\nSlack and uninspired, and peopled mainly by characters so unsympathetic that you're left with a sour taste in your mouth.\nSkip this turd and pick your nose instead because you're sure to get more out of the latter experience.\nWhat can one say about a balding 50-year-old actor playing an innocent boy carved from a log?\nTrailer trash cinema so uncool the only thing missing is the ``Gadzooks!''\nHer film is like a beautiful food entrée that isn't heated properly, so that it ends up a bit cold and relatively flavorless.\nLike the world of his film, Hartley created a monster but didn't know how to handle it.\nNo new plot conceptions or environmental changes, just different bodies for sharp objects to rip through.\nNeeds more impressionistic cinematography and exhilarating point-of-view shots and fewer slow-motion 'grandeur' shots and quick-cut edits that often detract from the athleticism.\nIn the end, there isn't much to it.\nA waste of fearless purity in the acting craft.\nThe film is ultimately about as inspiring as a Hallmark card.\nAnyone not into high-tech splatterfests is advised to take the warning literally, and log on to something more user-friendly.\nDisreputable doings and exquisite trappings are dampened by a lackluster script and substandard performances.\nYou could easily mistake it for a sketchy work-in-progress that was inexplicably rushed to the megaplexes before its time.\nDirectors Harry Gantz and Joe Gantz have chosen a fascinating subject matter, but the couples exposing themselves aren't all that interesting.\nYet another entry in the sentimental oh-those-wacky-Brits genre that was ushered in by The Full Monty and is still straining to produce another smash hit.\nfor those for whom the name Woody Allen was once a guarantee of something fresh, sometimes funny, and usually genuinely worthwhile, Hollywood Ending is a depressing experience\nFemme Fatale offers nothing more than a bait-and-switch that is beyond playing fair with the audience. Are we dealing with dreams, visions or being told what actually happened as if it were the third ending of Clue?\nIt could have been something special, but two things drag it down to mediocrity -- director Clare Peploe's misunderstanding of Marivaux's rhythms, and Mira Sorvino's limitations as a classical actress.\nFluffy neo-noir hiding behind cutesy film references.\nImagine Susan Sontag falling in love with Howard Stern.\nLike being trapped inside a huge video game, where exciting, inane images keep popping past your head and the same illogical things keep happening over and over again.\nShould have been worth cheering as a breakthrough but is devoid of wit and humor.\nThe best thing about the movie is its personable, amusing cast.\nThese guys seem great to knock back a beer with but they're simply not funny performers.\nEverything was as superficial as the forced New Jersey lowbrow accent Uma had.\nDirector David Fincher and writer David Koepp can't sustain it.\nFinally coming down off of Miramax's deep shelves after a couple of aborted attempts, Waking Up in Reno makes a strong case for letting sleeping dogs lie.\nA movie that feels like the pilot episode of a new teen-targeted action TV series.\nOne of the most highly-praised disappointments I've had the misfortune to watch in quite some time.\nThe animation and backdrops are lush and inventive, yet Return to Neverland never manages to take us to that elusive, lovely place where we suspend our disbelief.\nDirector Shekhar Kapur and screenwriters Michael Schiffer and Hossein Amini have tried hard to modernize and reconceptualize things, but the barriers finally prove to be too great.\nStrong filmmaking requires a clear sense of purpose, and in that oh-so-important category, The Four Feathers comes up short.\nThe thought of watching this film with an audience full of teenagers fixating on its body humour and reinforcement of stereotypes (of which they'll get plenty) fills me with revulsion.\nDevolves into the derivative, leaning on badly-rendered CGI effects.\nAnyone who gets chills from movies with giant plot holes will find plenty to shake and shiver about in 'The Ring.'\nA grand fart coming from a director beginning to resemble someone's crazy French grandfather.\nThe script is a disaster, with cloying messages and irksome characters.\nboth overstuffed and undernourished... The film can't be called a solid success, although there's plenty of evidence here to indicate Clooney might have better luck next time.\nPlods along, minus the twisted humor and eye-popping visuals that have made Miike ... a cult hero.\nHollywood has taken quite a nosedive from Alfred Hitchcock's imaginative flight to Shyamalan's self-important summer fluff.\nThe film's maudlin focus on the young woman's infirmity and her naive dreams play like the worst kind of Hollywood heart-string plucking.\nI firmly believe that a good video game movie is going to show up soon. I also believe that Resident Evil is not it.\nIt has the air of a surprisingly juvenile lark, a pop-influenced prank whose charms are immediately apparent and wear thin with repetition.\nThe plot meanders from gripping to plodding and back.\nThis is cruel, misanthropic stuff with only weak claims to surrealism and black comedy.\nNo amount of nostalgia for Carvey's glory days can disguise the fact that the new film is a lame kiddie flick and that Carvey's considerable talents are wasted in it.\nBest described as I Know What You Did Last Winter.\n(Taylor) takes us on a ride that's consistently surprising, easy to watch -- but, oh, so dumb.\nIt's difficult for a longtime admirer of his work to not be swept up in Invincible and overlook its drawbacks.\nLazily directed by Charles Stone III ... from a leaden script by Matthew Cirulnick and novelist Thulani Davis.\nThough Jones and Snipes are enthralling, the movie bogs down in rhetoric and cliché.\nThe most remarkable (and frustrating) thing about World Traveler, which opens today in Manhattan, is that its protagonist, after being an object of intense scrutiny for 104 minutes, remains a complete blank.\nAn artsploitation movie with too much exploitation and too little art.\nThe pacing is often way off and there are too many bona fide groaners among too few laughs.\nWith lines that feel like long soliloquies -- even as they are being framed in conversation -- Max is static, stilted.\nBarely manages for but a few seconds over its seemingly eternal running time to pique your interest, your imagination, your empathy or anything, really, save your disgust and your indifference.\nWriter/director Burr Steers emphasizes the Q in Quirky, with mixed results.\nOne senses in World Traveler and in his earlier film that Freundlich bears a grievous but obscure complaint against fathers, and circles it obsessively, without making contact.\nIn between the icy stunts, the actors spout hilarious dialogue about following your dream and 'just letting the mountain tell you what to do.'\nThe obligatory break-ups and hook-ups don't seem to have much emotional impact on the characters.\nMake no mistake, ivans xtc. is a mess.\nHypnotically dull, relentlessly downbeat, laughably predictable wail pitched to the cadence of a depressed fifteen-year-old's suicidal poetry.\nThe concept is a hoot. The trailer is a riot. The movie is a dud.\nIt's a boring movie about a boring man, made watchable by a bravura performance from a consummate actor incapable of being boring.\nBecause the intelligence level of the characters must be low, very low, very very low, for the masquerade to work, the movie contains no wit, only labored gags.\nIt's hard to imagine another director ever making his wife look so bad in a major movie.\nSome stunning visuals -- and some staggeringly boring cinema.\nThese characters become wearisome.\nA hit- and-miss affair, consistently amusing but not as outrageous or funny as Cho may have intended or as imaginative as one might have hoped.\nThis may be the first cartoon ever to look as if it were being shown on the projection television screen of a sports bar.\nKim Ki-Deok seems to have in mind an (emotionally at least) adolescent audience demanding regular shocks and bouts of barely defensible sexual violence to keep it interested.\nA sterling film - a cross between Boys Don't Cry, Deliverance, and Ode to Billy Joe - lies somewhere in the story of Matthew Shepard, but that film is yet to be made.\nAfter sitting through this sloppy, made-for-movie comedy special, it makes me wonder if Lawrence hates criticism so much that he refuses to evaluate his own work.\nContrived pastiche of caper clichés.\nMany shallower movies these days seem too long, but this one is egregiously short.\nJust a Kiss wants desperately to come off as a fanciful film about the typical problems of average people. But it is set in a world that is very, very far from the one most of us inhabit.\nThe most ill-conceived animated comedy since the 1991 dog Rover Dangerfield.\nLike shave ice without the topping, this cinematic snow cone is as innocuous as it is flavorless.\nDespite its sincere acting, Signs is just another unoriginal run of the mill sci-fi film with a flimsy ending and lots of hype.\nYet another movie which presumes that high school social groups are at war, let alone conscious of each other's existence.\nLoud, chaotic and largely unfunny.\nI can't remember the last time I saw an audience laugh so much during a movie, but there's only one problem...it's supposed to be a drama.\nQualities that were once amusing are becoming irritating.\nWell, Jason's gone to Manhattan and Hell, I guess a space station in the year 2455 can be crossed off the list of ideas for the inevitable future sequels (hey, don't shoot the messenger).\nDonovan ... squanders his main asset, Jackie Chan, and fumbles the vital action sequences.\nThere is no psychology here, and no real narrative logic -- just a series of carefully choreographed atrocities, which become strangely impersonal and abstract.\nBread, My Sweet has so many flaws it would be easy for critics to shred it. It may even fall into the category of Films You Love to Hate. I admit it, I hate to like it.\nFrida is certainly no disaster, but neither is it the Kahlo movie Frida fans have been looking for.\nLeaks treacle from every pore.\nThe characters are so generic and the plot so bland that even as rogue CIA assassins working for Chris Cooper's agency boss close in on the resourceful amnesiac, we don't feel much for Damon/Bourne or his predicament.\nKapur weighs down the tale with bogus profundities.\nWhile we want MacDowell's character to retrieve her husband, we have to ask whether her personal odyssey trumps the carnage that claims so many lives around her.\nBlue Crush is as predictable as the tides. ... The movie feels stitched together from stock situations and characters from other movies.\nIf you enjoy being rewarded by a script that assumes you aren't very bright, then Blood Work is for you.\nTrouble Every Day is a success in some sense, but it's hard to like a film so cold and dead.\nThe film's stagecrafts are intimate and therefore bolder than the otherwise calculated artifice that defines and overwhelms the film's production design.\nA well-intentioned effort that's still too burdened by the actor's offbeat sensibilities for the earnest emotional core to emerge with any degree of accessibility.\nA family-friendly fantasy that ends up doing very little with its imaginative premise.\nA plodding look at the French Revolution through the eyes of aristocrats.\nTom Shadyac has learned a bit more craft since directing Adams, but he still lingers over every point until the slowest viewer grasps it.\nUnspools like a highbrow, low-key, 102-minute infomercial, blending entrepreneurial zeal with the testimony of satisfied customers.\nA fast-paced, glitzy but extremely silly piece.\nAny reasonably creative eighth-grader could have written a more credible script, though with the same number of continuity errors.\n...while the humor aspects of 'Jason X' were far more entertaining than I had expected, everything else about the film tanks.\nYour taste for Jonah - A Veggie Tales Movie may well depend on your threshold for pop manifestations of the Holy Spirit.\nLike an Afterschool Special with costumes by Gianni Versace, Mad Love looks better than it feels.\nWhile certain cues, like the happy music, suggest that this movie is supposed to warm our hearts, Jeong-Hyang Lee's film is just as likely to blacken that organ with cold vengefulness.\nThe script, the gags, the characters are all direct-to-video stuff, and that's where this film should have remained.\nA thriller without thrills and a mystery devoid of urgent questions.\nA collage of clichés and a dim echo of allusions to other films.\nThe film is hampered by its predictable plot and paper-thin supporting characters.\nJonah is only so-so... the addition of a biblical message will either improve the film for you, or it will lessen it.\nAn excruciating demonstration of the unsalvageability of a movie saddled with an amateurish screenplay.\nHow many more times will indie filmmakers subject us to boring, self-important stories of how horrible we are to ourselves and each other?\nThere are some laughs in this movie, but Williams' anarchy gets tiresome, the satire is weak.\nAs steamy as last week's pork dumplings.\nThe somber pacing and lack of dramatic fireworks make Green Dragon seem more like medicine than entertainment.\nThe filmmakers needed more emphasis on the storytelling and less on the glamorous machine that thrusts the audience into a future they won't much care about.\nAnother wholly unnecessary addition to the growing, moldering pile of, well, extreme stunt pictures.\nThis strenuously unfunny Showtime deserves the hook.\nThe whole thing's fairly lame, making it par for the course for Disney sequels.\n...its solemn pretension prevents us from sharing the awe in which it holds itself.\n...the good and different idea (of middle-aged romance) is not handled well and, except for the fine star performances, there is little else to recommend ``Never Again.''\nIf Disney's Cinderella proved that 'a dream is a wish your heart makes,' then Cinderella II proves that a nightmare is a wish a studio's wallet makes.\nFeatures nonsensical and laughable plotting, wooden performances, ineptly directed action sequences and some of the worst dialogue in recent memory.\nWith Rare Birds, as with The Shipping News before it, an attempt is made to transplant a Hollywood star into Newfoundland's wild soil -- and The Rock once again resists the intrusion.\nNothing about this movie works.\nIf the idea of the white man arriving on foreign shores to show wary natives the true light is abhorrent to you, the simplistic Heaven will quite likely be more like hell.\nA spooky yarn of demonic doings on the high seas that works better the less the brain is engaged.\nNone of Birthday Girl's calculated events take us by surprise...\nAre monsters born, or made?\nLisa Rinzler's cinematography may be lovely, but Love Liza's tale itself virtually collapses into an inhalant blackout, maintaining consciousness just long enough to achieve callow pretension.\nThe narrator and the other characters try to convince us that acting transfigures Esther, but she's never seen speaking on stage; one feels cheated, and Esther seems to remain an unchanged dullard.\nIt's exactly the kind of movie Toback's detractors always accuse him of making.\nWith the dog days of August upon us, think of this dog of a movie as the cinematic equivalent of high humidity.\nLess about Shakespeare than the spawn of fools who saw Quentin Tarantino's handful of raucous gangster films and branched out into their own pseudo-witty copycat interpretations.\nThe film is like sitting in a downtown café, overhearing a bunch of typical late-twenty-somethings natter on about nothing, and desperately wishing you could change tables.\nThis rather unfocused, all-over-the-map movie would be a lot better if it pared down its plots and characters to a few rather than dozens... or if it were subtler... or if it had a sense of humor.\nTakes a clunky TV-movie approach to detailing a chapter in the life of the celebrated Irish playwright, poet and drinker.\nNot only does the thoroughly formulaic film represent totally exemplify middle-of-the-road mainstream, it also represents glossy Hollywood at its laziest.\nA shame that Stealing Harvard is too busy getting in its own way to be anything but frustrating, boring, and forgettable.\nNearly every attempt at humor here is DOA.\nCollapses under its own meager weight.\nThis is mild-mannered, been-there material given a pedestrian spin by a director who needed a touch of the flamboyant, the outrageous.\nIf you adored The Full Monty so resoundingly that you're dying to see the same old thing in a tired old setting, then this should keep you reasonably entertained.\nTechnically and artistically inept.\nThose who are only mildly curious, I fear, will be put to sleep or bewildered by the artsy and often pointless visuals.\nThough Tom Shadyac's film kicks off spookily enough, around the halfway mark it takes an abrupt turn into glucose sentimentality and laughable contrivance.\nA long, dull procession of despair, set to cello music culled from a minimalist funeral.\nCall me a cold-hearted curmudgeon for not being able to enjoy a mindless action movie, but I believe a movie can be mindless without being the peak of all things insipid.\nDeath might be a release.\n``(Hopkins)doesn't so much phone in his performance as fax it. No, even that's too committed. He gets his secretary to fax it.''\nSodden and glum, even in those moments where it's supposed to feel funny and light.\nPriggish, lethargically paced parable of renewal.\nA beautifully shot but dull and ankle-deep 'epic.'\nEven with its $50-million US budget, Pinocchio never quite achieves the feel of a fanciful motion picture.\nThis is a third-person story now, told by Hollywood, and much more ordinary for it.\nThe filmmakers know how to please the eye, but it is not always the prettiest pictures that tell the best story.\nWritten, flatly, by David Kendall and directed, barely, by There's Something About Mary co-writer Ed Decter.\nThe characters are interesting and the relationship between Yosuke and Saeko is worth watching as it develops, but there's not enough to the story to fill two hours.\nVery well made, but doesn't generate a lot of tension.\nLike being invited to a classy dinner soiree and not knowing anyone. You leave the same way you came -- a few tasty morsels under your belt, but no new friends.\nIt's depressing to see how far Herzog has fallen.\nThe question hanging over The Time Machine is not, as the main character suggests, 'what if?' but rather, 'How can you charge money for this?'\nMillions of dollars heaped upon a project of such vast proportions need to reap more rewards than spiffy bluescreen technique and stylish weaponry.\n``Freaky Friday,'' it's not.\nPerhaps a better celebration of these unfairly dismissed heroes would be a film that isn't this painfully forced, false and fabricated.\nAlthough no pastry is violated, this nasty comedy pokes fun at the same easy targets as other rowdy raunch-fests -- farts, boobs, unmentionables -- without much success.\nIn this film, Aussie David Caesar channels the not-quite-dead career of Guy Ritchie.\nMaybe you'll be lucky, and there'll be a power outage during your screening so you can get your money back.\nThe characterizations and dialogue lack depth or complexity, with the ironic exception of Scooter.\nThis film was made by and for those folks who collect the serial killer cards and are fascinated by the mere suggestion of serial killers. For the rest of us, sitting through Dahmer's two hours amounts to little more than punishment.\nNarc can only remind us of brilliant crime dramas without becoming one itself.\nSomewhere inside the mess that is World Traveler, there is a mediocre movie trying to get out.\nA tedious parable about honesty and good sportsmanship.\nIts strengths and weaknesses play off each other virtually to a stand-off, with the unfortunate trump card being the dreary mid-section of the film.\nAn artful yet depressing film that makes a melodramatic mountain out of the molehill of a missing bike.\nThe movie's ultimate point -- that everyone should be themselves -- is trite, but the screenwriter and director Michel Gondry restate it to the point of ridiculousness.\nA glossy knock-off of a B-movie revenge flick.\n... expands the horizons of boredom to the point of collapse, turning into a black hole of dullness, from which no interesting concept can escape.\nIt's just plain boring.\nSad nonsense, this. But not without cheesy fun factor.\nOne of those decades-spanning historical epics that strives to be intimate and socially encompassing but fails to do justice to either effort in three hours of screen time.\nReally dumb but occasionally really funny.\nThe movie wavers between Hallmark card sentimentality and goofy, life-affirming moments straight out of a cellular phone commercial.\nThe director's many dodges and turns add up to little more than a screenful of gamesmanship that's low on both suspense and payoff.\nWhile the transgressive trappings (especially the frank sex scenes) ensure that the film is never dull, Rodrigues's beast-within metaphor is ultimately rather silly and overwrought, making the ambiguous ending seem goofy rather than provocative.\nThe satire is unfocused, while the story goes nowhere.\nThey threw loads of money at an idea that should've been so much more even if it was only made for teenage boys and wrestling fans.\nIt's mired in a shabby script that piles layer upon layer of Action Man cliché atop wooden dialogue and a shifting tone that falls far short of the peculiarly moral amorality of (Woo's) best work.\nReyes' directorial debut has good things to offer, but ultimately it's undone by a sloppy script\nIf you're over 25, have an IQ over 90, and have a driver's license, you should be able to find better entertainment.\nThe darker elements of misogyny and unprovoked violence suffocate the illumination created by the two daughters and the sparse instances of humor meant to shine through the gloomy film noir veil.\n...the picture's cleverness is ironically muted by the very people who are intended to make it shine.\nNever does ``Lilo & Stitch'' reach the emotion or timelessness of Disney's great past, or even that of more recent successes such as ``Mulan'' or ``Tarzan.''\nOne of those so-so films that could have been much better.\nCrossroads feels like a teenybopper Ed Wood film, replete with the pubescent scandalous innuendo and the high-strung but flaccid drama.\nFails to satisfactorily exploit its gender politics, genre thrills or inherent humor.\nInterview With the Assassin is structured less as a documentary and more as a found relic, and as such the film has a difficult time shaking its Blair Witch Project real-time roots.\nCacoyannis' vision is far less mature, interpreting the play as a call for pity and sympathy for anachronistic phantasms haunting the imagined glory of their own pasts.\nIt has more in common with a fireworks display than a movie, which normally is expected to have characters and a storyline.\nIt appears to have been made by people to whom the idea of narrative logic or cohesion is an entirely foreign concept.\nLess a heartfelt appeal for the handicapped than a nice Belgian waffle.\nIt's not helpful to listen to extremist name-calling, regardless of whether you think Kissinger was a calculating fiend or just a slippery self-promoter.\nAbandon spends 90 minutes trying figure out whether or not some cocky pseudo-intellectual kid has intentionally left college or was killed. The only problem is that, by the end, no one in the audience or the film seems to really care.\nNo Such Thing is sort of a minimalist Beauty and the Beast, but in this case the Beast should definitely get top billing. Robert John Burke as The Monster horns in and steals the show.\nDue to stodgy, soap opera-ish dialogue, the rest of the cast comes across as stick figures reading lines from a TelePrompTer.\n(T)he film is never sure to make a clear point – even if it seeks to rely on an ambiguous presentation.\nWhile it may not add up to the sum of its parts, Holofcener's film offers just enough insight to keep it from being simpleminded, and the ensemble cast is engaging enough to keep you from shifting in your chair too often.\nAn overwrought Taiwanese soaper about three people and their mixed-up relationship.\nNobody seems to have cared much about any aspect of it, from its cheesy screenplay to the grayish quality of its lighting to its last-minute, haphazard theatrical release.\nA thoroughly awful movie--dumb, narratively chaotic, visually sloppy...a weird amalgam of 'The Thing' and a geriatric 'Scream.'\n...another example of how Sandler is losing his touch.\nNothing sticks, really, except a lingering creepiness one feels from being dragged through a sad, sordid universe of guns, drugs, avarice and damaged dreams.\nWhat goes on for the 110 minutes of ``Panic Room'' is a battle of witlessness between a not-so-bright mother and daughter and an even less capable trio of criminals.\nThe plot's contrivances are uncomfortably strained.\nGuilty of the worst sin of attributable to a movie like this: it's not scary in the slightest.\nSchnieder bounces around with limp wrists, wearing tight tummy tops and hip huggers, twirling his hair on his finger and assuming that's enough to sustain laughs...\nIts simplicity puts an exclamation point on the fact that this isn't something to be taken seriously, but it also wrecks any chance of the movie rising above similar fare.\nBy the final whistle you're convinced that this Mean Machine was a decent TV outing that just doesn't have big screen magic.\nTo say that this vapid vehicle is downright doltish and uneventful is just as obvious as telling a country skunk that he has severe body odor.\nA film of empty, fetishistic violence in which murder is casual and fun.\nPretend it's a werewolf itself by avoiding eye contact and walking slowly away. It's fun, but it's a real howler.\nSome fine acting, but ultimately a movie with no reason for being.\nIt's difficult to feel anything much while watching this movie, beyond mild disturbance or detached pleasure at the acting.\nA waterlogged version of 'Fatal Attraction' for the teeny-bopper set...a sad, soggy potboiler that wastes the talents of its attractive young leads.\nIt tells its story in a flat manner and leaves you with the impression that you should have gotten more out of it than you did.\nSweet gentle Jesus, did the screenwriters just do a cut-and-paste of every bad action-movie line in history?\nIt's not the worst comedy of the year, but it certainly won't win any honors.\nThis is for the most part a useless movie, even with a great director at the helm.\nA loud, witless mess that has none of the charm and little of the intrigue from the TV series.\nEven on its own ludicrous terms, The Sum of All Fears generates little narrative momentum, and invites unflattering comparisons to other installments in the Ryan series.\nThough it inspires some (out-of-field) creative thought, the film is -- to its own detriment -- much more a cinematic collage than a polemical tract.\nAs predictable as the outcome of a Globetrotters-Generals game, Juwanna Mann is even more ludicrous than you'd expect from the guy-in-a-dress genre, and a personal low for everyone involved.\nSinks into the usual cafeteria goulash of fart jokes, masturbation jokes, and racist Japanese jokes.\nWhere Tom Green stages his gags as assaults on America's knee-jerk moral sanctimony, Jackass lacks aspirations of social upheaval.\nMore of an intriguing curiosity than a gripping thriller.\nThe April 2002 instalment of the American War for Independence, complete with loads of CGI and bushels of violence, but not a drop of human blood.\nContains all the substance of a Twinkie -- easy to swallow, but scarcely nourishing.\nReturn to Neverland manages to straddle the line between another classic for the company and just another run-of-the-mill Disney sequel intended for the home video market.\nRarely does a film so graceless and devoid of merit as this one come along.\nIt's a thin notion, repetitively stretched out to feature length, awash in self-consciously flashy camera effects, droning house music and flat, flat dialogue.\nOn a certain base level, Blue Crush delivers what it promises, just not well enough to recommend it.\nThe colorful Masseur wastes its time on mood rather than riding with the inherent absurdity of Ganesh's rise up the social ladder.\n... an incredibly heavy-handed, manipulative dud that feels all too familiar.\nWimps out by going for that PG-13 rating, so the more graphic violence is mostly off-screen and the sexuality is muted.\nTrapped presents a frightening and compelling 'What if?' scenario that will give most parents pause... Then, something terrible happens.\nMadonna has made herself over so often now, there's apparently nothing left to work with, sort of like Michael Jackson's nose.\nNever having seen the first two films in the series, I can't compare Friday After Next to them, but nothing would change the fact that what we have here is a load of clams left in the broiling sun for a good three days.\nThe story is lacking any real emotional impact, and the plot is both contrived and cliched.\nA depraved, incoherent, instantly disposable piece of hackery.\nIt's a bad action movie because there's no rooting interest and the spectacle is grotesque and boring.\n(Soderbergh) tends to place most of the psychological and philosophical material in italics rather than trust an audience's intelligence, and he creates an overall sense of brusqueness.\nHandsome and sincere but slightly awkward in its combination of entertainment and evangelical boosterism.\nSo aggressively cheery that Pollyana would reach for a barf bag.\nScooby-Doo doesn't know if it wants to be a retro-refitting exercise in campy recall for older fans or a silly, Nickelodeon-esque kiddie flick.\nRussell lacks the visual panache, the comic touch, and perhaps the budget of Sommers's title-bout features.\nHighly uneven and inconsistent ... Margarita Happy Hour kinda resembles the el cheapo margaritas served within.\nVery stupid and annoying.\nThe Sum of All Fears pretends to be a serious exploration of nuclear terrorism, but it's really nothing more than warmed-over Cold War paranoia.\nA listless and desultory affair.\nRepresents the depths to which the girls-behaving-badly film has fallen.\nHow inept is Serving Sara? It makes even Elizabeth Hurley seem graceless and ugly.\nJam-packed with literally bruising jokes. Every five minutes or so, someone gets clocked.\nWins my vote for 'The 2002 Enemy of Cinema' Award.\nAny Chekhov is better than no Chekhov, but it would be a shame if this was your introduction to one of the greatest plays of the last 100 years.\nHelmer Hudlin tries to make a hip comedy, but his dependence on slapstick defeats the possibility of creating a more darkly edged tome.\nLazy, miserable and smug. This is one of the biggest disappointments of the year.\nFormula 51 has dulled your senses faster and deeper than any recreational drug on the market.\nEvery visual joke is milked, every set-up obvious and lengthy, every punchline predictable. There's no energy.\nApparently writer-director Attal thought he need only cast himself and his movie-star wife sitting around in their drawers to justify a film.\nAfter the setup, the air leaks out of the movie, flattening its momentum with about an hour to go.\nThis is a poster movie, a mediocre tribute to films like Them!\nAt three hours and with very little story or character development, there is plenty of room for editing, and a much shorter cut surely would have resulted in a smoother, more focused narrative without sacrificing any of the cultural intrigue.\nA bit too derivative to stand on its own as the psychological thriller it purports to be.\nA crude teen-oriented variation on a theme that the playwright Craig Lucas explored with infinitely more grace and eloquence in his Prelude to a Kiss.\nThe film's darker moments become smoothed over by an overwhelming need to tender inspirational tidings, especially in the last few cloying moments.\nIf you recognize Zeus (the dog from Snatch) it will make you wish you were at home watching that movie instead of in the theater watching this one.\nThis is the kind of movie that you only need to watch for about thirty seconds before you say to yourself, 'Ah, yes, here we have a bad, bad, bad movie.'\nShanghai Ghetto should be applauded for finding a new angle on a tireless story, but you might want to think twice before booking passage.\nPlays like a checklist of everything Rob Reiner and his cast were sending up.\nThere's too much forced drama in this wildly uneven movie, about a young man's battle with his inescapable past and uncertain future in a very shapable but largely unfulfilling present.\nIt's at once laughable and compulsively watchable, in its committed dumbness.\nAll the sensuality, all the eroticism of a good vampire tale has been, pardon the pun, sucked out and replaced by goth goofiness.\nA cross between Blow and Boyz N The Hood, this movie strives to be more, but doesn't quite get there. Good performances keep it from being a total rehash.\nThe screenplay is hugely overwritten, with tons and tons of dialogue -- most of it given to children.\nTroll the cult section of your local video store for the real deal.\nAt times, the movie looks genuinely pretty. Your nightmares, on the other hand, will be anything but. Not even Felinni would know what to make of this Italian freakshow.\nElmo touts his drug as being 51 times stronger than coke. If you're looking for a tale of Brits behaving badly, watch Snatch again. It's 51 times better than this.\nIt's difficult to conceive of anyone who has reached puberty actually finding the characters in Slackers or their antics amusing, let alone funny.\nDespite its promising cast of characters, Big Trouble remains a loosely tied series of vignettes which only prove that 'zany' doesn't necessarily mean 'funny.'\nBoth shrill and soporific, and because everything is repeated five or six times, it can seem tiresomely simpleminded.\nDoes not go far enough in its humor or stock ideas to stand out as particularly memorable or even all that funny.\nNeither revelatory nor truly edgy--merely crassly flamboyant and comedically labored.\nJust about everyone involved here seems to be coasting. There are a few modest laughs, but certainly no thrills.\nFails so fundamentally on every conventional level that it achieves some kind of goofy grandeur.\nThere's a persistent theatrical sentiment and a woozy quality to the manner of the storytelling, which undercuts the devastatingly telling impact of utter loss personified in the film's simple title.\nWhile Howard's appreciation of Brown and his writing is clearly well-meaning and sincere, the movie would be impossible to sit through were it not for the supporting cast.\nA preposterous, prurient whodunit.\nGo, girls, right down the reality drain.\nBoasting some of the most poorly staged and lit action in memory, Impostor is as close as you can get to an imitation movie.\nCan be classified as one of those 'alternate reality' movies... except that it would have worked so much better dealing in only one reality.\nPredictable and cloying, though Brown Sugar is so earnest in its yearning for the days before rap went nihilistic that it summons more spirit and bite than your average formulaic romantic quadrangle.\n...unlikable, uninteresting, unfunny, and completely, utterly inept.\nThe film is so busy making reference to other films and trying to be other films that it fails to have a heart, mind or humor of its own.\nAn imponderably stilted and self-consciously arty movie.\nMuddled, melodramatic paranormal romance is an all-time low for Kevin Costner.\nToo clumsy in key moments ... to make a big splash.\nJust a bunch of good actors flailing around in a caper that's neither original nor terribly funny.\n`Matrix'-style massacres erupt throughout...but the movie has a tougher time balancing its violence with Kafka-inspired philosophy.\nAt least it's a fairly impressive debut from the director, Charles Stone III.\nIt all unfolds predictably, and the adventures that happen along the way seem repetitive and designed to fill time, providing no real sense of suspense.\nWanker Goths are on the loose! Run for your lives!\nWhy would anyone cast the magnificent Jackie Chan in a movie full of stunt doubles and special effects?\nA grating, emaciated flick.\nUnambitious writing emerges in the movie, using a plot that could have come from an animated-movie screenwriting textbook.\nPresents a good case while failing to provide a reason for us to care beyond the very basic dictums of human decency.\nWe have poignancy jostling against farce, thoughtful dialogue elbowed aside by one-liners, and a visual style that incorporates rotoscope animation for no apparent reason except, maybe, that it looks neat.\nAccording to the script, Grant and Bullock's characters are made for each other. But you'd never guess that from the performances.\nThe animation merely serves up a predictable, maudlin story that swipes heavily from Bambi and The Lion King, yet lacks the emotional resonance of either of those movies.\nArarat feels like a book report\nSteve Oedekerk is, alas, no Woody Allen.\nA lot like the imaginary sport it projects onto the screen -- loud, violent and mindless.\nAn amalgam of The Fugitive, Blade Runner, and Total Recall, only without much energy or tension.\nThe acting is amateurish, the cinematography is atrocious, the direction is clumsy, the writing is insipid and the violence is at once luridly graphic and laughably unconvincing.\nShows that Jackie Chan is getting older, and that's something I would rather live in denial about\nWith miscast leads, banal dialogue and an absurdly overblown climax, Killing Me Softly belongs firmly in the so-bad-it's-good camp.\nAlas, the black-and-white archival footage of their act showcases pretty mediocre shtick.\nThe slapstick is labored, and the bigger setpieces flat.\nThis is the kind of movie where people who have never picked a lock do so easily after a few tries and become expert fighters after a few weeks.\nThe problem with the mayhem in Formula 51 is not that it's offensive, but that it's boring.\nMuch of the digitally altered footage appears jagged, as if filmed directly from a television monitor, while the extensive use of stock footage quickly becomes a tiresome cliché.\nthe film never rises above a conventional, two dimension tale\nMark Wahlberg...may look classy in a '60s-homage pokepie hat, but as a character he's dry, dry, dry.\nTold in scattered fashion, the movie only intermittently lives up to the stories and faces and music of the men who are its subject.\nThe irony is that this film's cast is uniformly superb; their performances could have -- should have -- been allowed to stand on their own.\nNow I can see why people thought I was too hard on ``The Mothman Prophecies''.\nIf ever a concept came handed down from the movie gods on a silver platter, this is it. If ever such a dependable concept was botched in execution, this is it.\nWith an unusual protagonist (a kilt-wearing Jackson) and subject matter, the improbable ``Formula 51'' is somewhat entertaining, but it could have been much stronger.\nSandra Bullock's best dramatic performance to date (is) almost enough to lift (this) thrill-kill cat-and-mouser...above its paint-by-numbers plot.\nA feel-good movie that doesn't give you enough to feel good about.\nAdolescents will be adequately served by the movie's sophomoric blend of shenanigans and slapstick, although the more lascivious-minded might be disappointed in the relative modesty of a movie that sports a 'topless tutorial service.'\nThis mistaken-identity picture is so film-culture referential that the final product is a ghost.\nThe picture emerges as a surprisingly anemic disappointment.\nDe Niro cries. You'll cry for your money back.\nSlap me, I saw this movie.\n(The kid's) just too bratty for sympathy, and as the film grows to its finale, his little changes ring hollow.\nBehind the glitz, Hollywood is sordid and disgusting. Quelle surprise!\nScherfig, who has had a successful career in TV, tackles more than she can handle.\nJust consider what New Best Friend does not have, beginning with the minor omission of a screenplay.\nOscar caliber cast doesn't live up to material\nThe problems of the people in Love in the Time of Money are hardly specific to their era. They just have problems, which are neither original nor are presented in convincing way.\nCarrying this wafer-thin movie on his nimble shoulders, Chan wades through putrid writing, direction and timing with a smile that says, 'If I stay positive, maybe I can channel one of my greatest pictures, Drunken Master.'\nSo putrid it is not worth the price of the match that should be used to burn every print of the film.\nIn the end, the movie bogs down in insignificance, saying nothing about Kennedy's assassination and revealing nothing about the pathology it pretends to investigate.\nStarts out ballsy and stylish but fails to keep it up and settles into clichés.\nSometimes makes less sense than the Bruckheimeresque American action flicks it emulates.\nOne of those films where the characters inhabit that special annex of hell where adults behave like kids, children behave like adults and everyone screams at the top of their lungs no matter what the situation.\nThere's only one way to kill Michael Myers for good: stop buying tickets to these movies.\n'Rare Birds' tries to force its quirkiness upon the audience.\nThe movie is about as humorous as watching your favorite pet get buried alive.\nResident Evil is what comes from taking John Carpenter's Ghosts of Mars and eliminating the beheadings. In other words, about as bad a film you're likely to see all year.\nFive screenwriters are credited with the cliché-laden screenplay; it seems as if each watered down the version of the one before.\nThe whole thing comes off like a particularly amateurish episode of Bewitched that takes place during Spring Break.\nWell made but uninvolving, Bloodwork isn't a terrible movie, just a stultifyingly obvious one -- an unrewarding collar for a murder mystery.\nSo we got Ten Little Indians meets Friday the 13th by way of Clean and Sober, filmed on the set of Carpenter's The Thing and loaded with actors you're most likely to find on the next inevitable incarnation of The Love Boat.\nThe movie's blatant derivativeness is one reason it's so lackluster.\nKids don't mind crappy movies as much as adults, provided there's lots of cute animals and clumsy people. 'Snow Dogs' has both.\nIt's almost as if it's an elaborate dare more than a full-blooded film.\nWobbly Senegalese updating of ``Carmen'' which is best for the stunning star turn by Djeinaba Diop Gai\nIt's the humanizing stuff that will probably sink the film for anyone who doesn't think about percentages all day long.\nKen Russell would love this. In one scene, we get a stab at soccer hooliganism, a double-barreled rip-off of Quentin Tarantino's climactic shootout -- and Meat Loaf explodes.\nBella is the picture of health with boundless energy until a few days before she dies. This is absolutely and completely ridiculous and an insult to every family whose mother has suffered through the horrible pains of a death by cancer.\nThe premise of ``Abandon'' holds promise,... but its delivery is a complete mess.\nWhat could have been a pointed little chiller about the frightening seductiveness of new technology loses faith in its own viability and succumbs to joyless special-effects excess.\nA little too ponderous to work as shallow entertainment, not remotely incisive enough to qualify as drama, Monsoon Wedding serves mostly to whet one's appetite for the Bollywood films.\nUnless Bob Crane is someone of particular interest to you, this film's impressive performances and adept direction aren't likely to leave a lasting impression.\nThe Rock has a great presence but one battle after another is not the same as one battle followed by killer CGI effects.\nThe bottom line with Nemesis is the same as it has been with all the films in the series: Fans will undoubtedly enjoy it, and the uncommitted needn't waste their time on it.\nThe lousy John Q all but spits out Denzel Washington's fine performance in the title role.\nThe whole thing feels like a ruse, a tactic to cover up the fact that the picture is constructed around a core of flimsy -- or, worse yet, nonexistent -- ideas.\nWhat a stiflingly unfunny and unoriginal mess this is!\nThe film is so packed with subplots involving the various Silbersteins that it feels more like the pilot episode of a TV series than a feature film.\nOpera on film is never satisfactory. The art demands live viewing. The innate theatrics that provide its thrills and extreme emotions lose their luster when flattened onscreen.\nDespite all the closed-door hanky-panky, the film is essentially juiceless.\nIt is parochial, accessible to a chosen few, standoffish to everyone else, and smugly suggests a superior moral tone is more important than filmmaking skill\nThe Sweetest Thing leaves an awful sour taste.\nIt's lost the politics and the social observation and become just another situation romance about a couple of saps stuck in an inarticulate screenplay.\nTerminally bland, painfully slow and needlessly confusing ... The movie, shot on digital videotape rather than film, is frequently indecipherable.\nAs dumb and cheesy as they may be, the cartoons look almost Shakespearean -- both in depth and breadth -- after watching this digital-effects-heavy, supposed family-friendly comedy.\nAloof and lacks any real raw emotion, which is fatal for a film that relies on personal relationships.\nA low-rent retread of the Alien pictures.\nServiceable at best, slightly less than serviceable at worst.\nIts initial excitement settles into a warmed over pastiche.\nA big meal of cliches that the talented cast generally chokes on.\nThe story has little wit and no surprises.\nThe Merchant-Ivory team continues to systematically destroy everything we hold dear about cinema, only now it's begun to split up so that it can do even more damage.\nWhat should have been a cutting Hollywood satire is instead about as fresh as last week's issue of Variety.\nHey everybody, wanna watch a movie in which a guy dressed as a children's party clown gets violently gang-raped? I didn't think so.\nA little more intensity and a little less charm would have saved this film a world of hurt.\n(T)his slop doesn't even have potential as a cult film, as it's too loud to shout insults at the screen.\nThe movie's plot is almost entirely witless and inane, carrying every gag two or three times beyond its limit to sustain a laugh.\n...may work as an addictive guilty pleasure but the material never overcomes its questionable satirical ambivalence. This Scarlet's letter is A...as in aimless, arduous, and arbitrary.\nPlays like a glossy melodrama that occasionally verges on camp.\nThe central character isn't complex enough to hold our interest.\nA modestly comic, modestly action-oriented World War II adventure that, in terms of authenticity, is one of those films that requires the enemy to never shoot straight.\nA puppy dog so desperate for attention it nearly breaks its little neck trying to perform entertaining tricks.\nJust about all of the film is confusing on one level or another, making Ararat far more demanding than it needs to be.\nA little less extreme than in the past, with longer exposition sequences between them, and with fewer gags to break the tedium.\nThere's a heavy stench of 'been there, done that' hanging over the film. It's everything you'd expect -- but nothing more.\nThe biggest problem with Satin Rouge is Lilia herself. She's a cipher, played by an actress who smiles and frowns but doesn't reveal an inner life.\nA quaint, romanticized rendering.\nWhat with the incessant lounge music playing in the film's background, you may mistake Love Liza for an Adam Sandler Chanukah song.\nThe movie's heavy-handed screenplay navigates a fast fade into pomposity and pretentiousness.\nA potentially good comic premise and excellent cast are terribly wasted.\nWoody Allen used to ridicule movies like Hollywood Ending. Now he makes them.\nShe's not yet an actress, not quite a singer...\nNot a bad premise, but the execution is lackluster at best.\nBeen there done that.\nThere is only so much baked cardboard I need to chew.\nA movie like The Guys is why film criticism can be considered work.\nSchnitzler's film has a great hook, some clever bits and well-drawn, if standard issue, characters, but is still only partly satisfying.\nEven if it made its original release date last fall, it would've reeked of a been-there, done-that sameness.\nOnly two-fifths of a satisfying movie experience.\nA loud, ugly, irritating movie without any of its satirical salvos hitting a discernible target.\nA movie version of a paint-by-numbers picture. We can tell what it is supposed to be, but can't really call it a work of art.\nIt's a brilliant, honest performance by Nicholson, but the film is an agonizing bore except when the fantastic Kathy Bates turns up. Bravado Kathy!\n...Liotta is put in an impossible spot because his character's deceptions ultimately undo him and the believability of the entire scenario. Too bad.\nYou can thank me for this. I saw Juwanna Mann so you don't have to.\nUnfunny and lacking any sense of commitment to or affection for its characters, the Reginald Hudlin comedy relies on toilet humor, ethnic slurs.\nBasically, it's pretty but dumb.\nThis romantic/comedy asks the question how much souvlaki can you take before indigestion sets in.\nSquandering his opportunity to make absurdist observations, Burns gets caught up in the rush of slapstick thoroughfare.\nThere's a neat twist, subtly rendered, that could have wrapped things up at 80 minutes, but Kang tacks on three or four more endings.\nReeboir varies between a sweet smile and an angry bark, while Said attempts to wear down possible pupils through repetition. It has no affect on the Kurds, but it wore me down.\nThe actors improvise and scream their way around this movie directionless, lacking any of the rollicking dark humor so necessary to make this kind of idea work on screen.\nCo-writer/director Jonathan Parker's attempts to fashion a Brazil-like, hyper-real satire fall dreadfully short.\nIf this silly little cartoon can inspire a few kids not to grow up to be greedy bastards, more power to it.\nA superfluous sequel...plagued by that old familiar feeling of 'let's get this thing over with': Everyone has shown up at the appointed time and place, but visible enthusiasm is mighty hard to find.\nIf there's a heaven for bad movies, Deuces Wild is on its way.\nComes off like a bad imitation of the Bard.\nWhat's missing in Murder by Numbers is any real psychological grounding for the teens' deviant behaviour. Being latently gay and liking to read are hardly enough.\nAn uninspired preachy and clichéd war film.\nHorrendously amateurish filmmaking that is plainly dull and visually ugly when it isn't incomprehensible.\nA movie that harps on media-constructed 'issues' like whether compromise is the death of self... this Orgasm (won't be an) exceedingly memorable one for most people.\nSlackers' jokey approach to college education is disappointingly simplistic -- the film's biggest problem -- and there are no unforgettably stupid stunts or uproariously rude lines of dialogue to remember it by.\nIf Festival in Cannes nails hard- boiled Hollywood argot with a bracingly nasty accuracy, much about the film, including some of its casting, is frustratingly unconvincing.\nThe movie is too impressed with its own solemn insights to work up much entertainment value.\nI haven't seen such self-amused trash since Freddy Got Fingered.\nLittle more than a well-mounted history lesson.\nRob Schneider's infantile cross-dressing routines fill The Hot Chick, the latest gimmick from this unimaginative comedian.\nA horrible, 99-minute stink bomb.\nThe film is weighed down by supporting characters who are either too goodly, wise and knowing or downright comically evil.\nThe film is so bad it doesn't improve upon the experience of staring at a blank screen.\nSheridan's take on the author's schoolboy memoir ... is a rather toothless take on a hard young life.\nIt jumps around with little logic or continuity, presenting backstage bytes of information that never amount to a satisfying complete picture of this particular, anciently demanding métier.\nHow I Killed My Father is one of those art house films that makes you feel like you're watching an iceberg melt -- only it never melts.\nWhen it comes to the battle of Hollywood vs. Woo, it looks like Woo's a P.O.W.\nThere are a few chuckles, but not a single gag sequence that really scores, and the stars seem to be in two different movies.\nThe Chateau has one very funny joke and a few other decent ones, but all it amounts to is a mildly funny, sometimes tedious, ultimately insignificant film.\nIt's dull, spiritless, silly and monotonous: an ultra-loud blast of pointless mayhem, going nowhere fast.\nThe mushy finale turns John Q into a movie-of-the-week tearjerker.\nContent merely to lionize its title character and exploit his anger - all for easy sanctimony, formulaic thrills and a ham-fisted sermon on the need for national health insurance.\nThe movie turns out to be (Assayas') homage to the Gallic 'tradition of quality,' in all its fusty squareness.\nIts message has merit and, in the hands of a brutally honest individual like Prophet Jack, might have made a point or two regarding life.\n(Seems) even more uselessly redundant and shamelessly money-grubbing than most third-rate horror sequels.\nIt's hard to imagine that even very small children will be impressed by this tired retread.\nNeither as scary-funny as Tremors nor demented-funny as Starship Troopers, the movie isn't tough to take as long as you've paid a matinee price.\nIf swimfan does catch on, it may be because teens are looking for something to make them laugh.\nWhat might've been an exhilarating exploration of an odd love triangle becomes a sprawl of uncoordinated vectors.\nThe Master of Disguise may have made a great Saturday Night Live sketch, but a great movie it is not.\nIt's quite an achievement to set and shoot a movie at the Cannes Film Festival and yet fail to capture its visual appeal or its atmosphere.\nBoll uses a lot of quick cutting and blurry step-printing to goose things up, but dopey dialogue and sometimes inadequate performances kill the effect.\nIt's always disappointing when a documentary fails to live up to -- or offer any new insight into -- its chosen topic. Unfortunately, that's precisely what Arthur Dong's Family Fundamentals does.\nHas the marks of a septuagenarian; it's a crusty treatment of a clever gimmick.\nLike a medium-grade network sitcom--mostly inoffensive, fitfully amusing, but ultimately so weightless that a decent draft in the auditorium might blow it off the screen.\nSomething must have been lost in the translation.\nBecomes the last thing you would expect from a film with this title or indeed from any Plympton film: boring.\nIn the end, the film feels homogenized and a bit contrived, as if we're looking back at a tattered and ugly past with rose-tinted glasses.\nChan's stunts are limited and so embellished by editing that there's really not much of a sense of action or even action-comedy.\nRock's stand-up magic wanes. Hopkins, squarely fills the screen. Action - mechanical.\n``The Tuxedo'' should have been the vehicle for Chan that ``The Mask'' was for Jim Carrey. Alas, it's the man that makes the clothes.\nFor casual moviegoers who stumble into Rules expecting a slice of American Pie hijinks starring the kid from Dawson's Creek, they'll probably run out screaming.\nThe biggest problem I have (other than the very sluggish pace) is we never really see her Esther blossom as an actress, even though her talent is supposed to be growing.\nWhat puzzles me is the lack of emphasis on music in Britney Spears' first movie.\nPlot, characters, drama, emotions, ideas -- all are irrelevant to the experience of seeing The Scorpion King.\nCity by the Sea is a gritty police thriller with all the dysfunctional family dynamics one could wish for. But how it washed out despite all of that is the project's prime mystery.\nWhatever the movie's sentimental, hypocritical lessons about sexism, its true colors come out in various wet T-shirt and shower scenes.\nAs a hybrid teen thriller and murder mystery, Murder by Numbers fits the profile too closely.\nThere ain't a lot more painful than an unfunny movie that thinks it's hilarious.\nI enjoyed the movie in a superficial way, while never sure what its purpose was.\nWhat a pity ... that the material is so second-rate.\nDoesn't deliver a great story, nor is the action as gripping as in past Seagal films.\nThe kind of film that leaves you scratching your head in amazement over the fact that so many talented people could participate in such an ill-advised and poorly executed idea.\nNicks refuses to let Slackers be seen as just another teen movie, which means he can be forgiven for frequently pandering to fans of the gross-out comedy.\nNothing about the film -- with the possible exception of Elizabeth Hurley's breasts -- is authentic.\nAmid the cliché and foreshadowing, Cage manages a degree of casual realism ... that is routinely dynamited by Blethyn.\nMostly, Shafer and co-writer Gregory Hinton lack a strong-minded viewpoint, or a sense of humor.\nNo cliche escapes the perfervid treatment of gang warfare called ces Wild.\nEddie Murphy and Owen Wilson have a cute partnership in I Spy, but the movie around them is so often nearly nothing that their charm doesn't do a load of good.\nStrictly a 'guy's film' in the worst sense of the expression.\nThere's some good material in their story about a retail clerk wanting more out of life, but the movie too often spins its wheels with familiar situations and repetitive scenes.\nIt's a lot to ask people to sit still for two hours and change watching such a character, especially when rendered in as flat and impassive a manner as Phoenix's.\nThere's something fishy about a seasonal holiday kids' movie ... that derives its moment of most convincing emotional gravity from a scene where Santa gives gifts to grownups.\nWe're left with a story that tries to grab us, only to keep letting go at all the wrong moments.\nLike many such biographical melodramas, it suffers from the awkwardness that results from adhering to the messiness of true stories.\nThere is nothing redeeming about this movie.\nThe film has (its) moments, but they are few and far between.\nI was trying to decide what annoyed me most about God is Great... I'm Not, and then I realized that I just didn't care.\nDerailed by bad writing and possibly also by some of that extensive post-production reworking to aim the film at young males in the throes of their first full flush of testosterone.\nDeserves high marks for political courage but barely gets by on its artistic merits.\n... comes alive only when it switches gears to the sentimental.\nBrosnan's finest non-Bondish performance yet fails to overcome the film's manipulative sentimentality and annoying stereotypes.\nA film that will be best appreciated by those willing to endure its extremely languorous rhythms, Waiting for Happiness is ultimately thoughtful without having much dramatic impact.\nTo me, it sounds like a cruel deception carried out by men of marginal intelligence, with reactionary ideas about women and a total lack of empathy.\nTsai may be ploughing the same furrow once too often.\nFlashy gadgets and whirling fight sequences may look cool, but they can't distract from the flawed support structure holding Equilibrium up.\nZigZag might have been richer and more observant if it were less densely plotted.\nHow can such a cold movie claim to express warmth and longing? In truth, it has all the heart of a porno flick (but none of the sheer lust).\nNicks and Steinberg match their own creations for pure venality -- that's giving it the old college try.\nEpisode II-- Attack of the Clones is a technological exercise that lacks juice and delight.\nThe problem with all of this: It's not really funny.\n(Denis') bare-bones narrative more closely resembles an outline for a '70s exploitation picture than the finished product.\nWanders all over the map thematically and stylistically, and borrows heavily from Lynch, Jeunet, and von Trier while failing to find a spark of its own.\nViewing this underdramatized but overstated film is like watching a transcript of a therapy session brought to humdrum life by some Freudian puppet.\nOverall tomfoolery like this is a matter of taste.\nThe mantra behind the project seems to have been 'it's just a kids' flick.' Translation: 'We don't need to try very hard.'\nIn all the annals of the movies, few films have been this odd, inexplicable and unpleasant.\nIt takes a really long, slow and dreary time to dope out what TUCK EVERLASTING is about. So here it is: It's about a family of sour immortals.\nan essentially awkward version of the lightweight female empowerment picture we've been watching for decades\nThe author's devotees will probably find it fascinating; others may find it baffling.\nWriter-director Walter Hill and co-writer David Giler try to create characters out of the obvious cliches, but wind up using them as punching bags.\nThere's a scientific law to be discerned here that producers would be well to heed: Mediocre movies start to drag as soon as the action speeds up; when the explosions start, they fall to pieces.\nA cockeyed shot all the way.\nLush and beautifully photographed (somebody suggested the stills might make a nice coffee table book), but ultimately you'll leave the theater wondering why these people mattered.\nUnfortunately, One Hour Photo lives down to its title. Thanks largely to Williams, all the interesting developments are processed in 60 minutes -- the rest is just an overexposed waste of film.\nCold, Sterile And Lacking Any Color Or Warmth.\nThe film is undone by anachronistic quick edits and occasional jarring glimpses of a modern theater audience watching the events unfold.\nSeems like someone going through the motions.\nFor a film about explosions and death and spies, ``Ballistic: Ecks vs. Sever'' seems as safe as a children's film. Well, in some of those, the mother deer even dies.\nWallace gets a bit heavy handed with his message at times, and has a visual flair that waxes poetic far too much for our taste.\nImpostor doesn't do much with its template, despite a remarkably strong cast.\nWraps itself in the guise of a dark and quirky comedy, but it isn't as quirky as it thinks it is and its comedy is generally mean-spirited.\nChoppy, overlong documentary about 'The Lifestyle.'\nOne sloughs one's way through the mire of this alleged psychological thriller in search of purpose or even a plot.\nA film which presses familiar Herzog tropes into the service of a limpid and conventional historical fiction, when really what we demand of the director is to be mesmerised.\nIt's a fanboy 'what if?' brought to life on the big screen.\nThe story itself is actually quite vapid.\nIt's a hellish, numbing experience to watch, and it doesn't offer any insights that haven't been thoroughly debated in the media already, back in the Dahmer heyday of the mid-'90s.\nWait for pay per view or rental but don't dismiss BarberShop out of hand.\nA few zingers aside, the writing is indifferent, and Jordan Brady's direction is prosaic.\nEach scene drags, underscoring the obvious, and sentiment is slathered on top.\nWould've been nice if the screenwriters had trusted audiences to understand a complex story, and left off the film's predictable denouement. Then Nadia's birthday might not have been such a bad day after all.\nOne of those staggeringly well-produced, joylessly extravagant pictures that keep whooshing you from one visual marvel to the next, hastily, emptily.\nNair just doesn't have the necessary self-control to guide a loose, poorly structured film through the pitfalls of incoherence and redundancy.\nEnthusiastically taking up the current teen movie concern with bodily functions, Walt Becker's film pushes all the demographically appropriate comic buttons.\nIt's the funniest American comedy since Graffiti Bridge.\nThat neither protagonist has a distinguishable condition hardly matters because both are just actory concoctions, defined by childlike dimness and a handful of quirks.\nWhat starts off as a possible Argentine American Beauty reeks like a room stacked with pungent flowers.\nThe project's filmmakers forgot to include anything even halfway scary as they poorly rejigger Fatal Attraction into a high school setting.\nIn old-fashioned screenwriting parlance, Ms. Shreve's novel proved too difficult a text to 'lick,' despite the efforts of a first-rate cast.\nSolondz may well be the only one laughing at his own joke\nStitch is a bad mannered, ugly and destructive little ****. No cute factor here.... Not that I mind ugly; the problem is he has no character, loveable or otherwise.\nDeep down, I realized the harsh reality of my situation: I would leave the theater with a lower I.Q. than when I had entered.\nA really funny fifteen-minute short stretched beyond its limits to fill an almost feature-length film.\nAside from the fact that the film idiotically uses the website feardotcom.com or the improperly hammy performance from poor Stephen Rea, the film gets added disdain for the fact that it is nearly impossible to look at or understand.\nIt is bad, but certainly not without merit as entertainment.\nFor its 100 minutes running time, you'll wait in vain for a movie to happen.\nA work that lacks both a purpose and a strong pulse.\nA faster paced family flick. Upper Teens may get cynical. Smaller numbered kidlets will enjoy.\nWhile this film has an 'A' list cast and some strong supporting players, the tale -- like its central figure, Vivi -- is just a little bit hard to love.\nIt's a road-trip drama with too many wrong turns.\nMost fish stories are a little peculiar, but this is one that should be thrown back in the river.\nIt's all gratuitous before long, as if Schwentke were fulfilling a gross-out quota for an anticipated audience demographic instead of shaping the material to fit the story.\n``I blame all men for war,'' (the warden's daughter) tells her father. The movie is about as deep as that sentiment.\nIt's fitfully funny but never really takes off.\nI've seen some bad singer-turned actors, but Lil Bow Wow takes the cake.\nBy halfway through this picture I was beginning to hate it, and, of course, feeling guilty for it.... Then, miracle of miracles, the movie does a flip-flop.\nFor all the complications, it's all surprisingly predictable.\nIt's been 20 years since 48 Hrs. made Eddie Murphy a movie star and the man hasn't aged a day. But his showboating wise-cracker stock persona sure is getting old.\nIf Deuces Wild had been tweaked up a notch it would have become a camp adventure, one of those movies that's so bad it starts to become good. But it wasn't.\nFor a film about action, Ultimate X is the gabbiest giant-screen movie ever, bogging down in a barrage of hype.\n...a low rate Annie featuring some kid who can't act, only echoes of Jordan, and weirdo actor Crispin Glover screwing things up old school.\nIt might not be 1970s animation, but everything else about it is straight from the Saturday morning cartoons – a retread story, bad writing, and the same old silliness.\nThe picture seems uncertain whether it wants to be an acidic all-male All About Eve or a lush, swooning melodrama in the Intermezzo strain.\nA nearly 21/2 hours, the film is way too indulgent.\nGorgeous to look at but insufferably tedious and turgid...a curiously constricted epic.\nIt looks much more like a cartoon in the end than The Simpsons ever has.\nWith a tighter editorial process and firmer direction this material could work, especially since the actresses in the lead roles are all more than competent, but as is, Personal Velocity seems to be idling in neutral.\nDoesn't really add up to much.\nIt's better suited for the history or biography channel, but there's no arguing the tone of the movie - it leaves a bad taste in your mouth and questions on your mind.\nAn entertainment so in love with its overinflated mythology that it no longer recognizes the needs of moviegoers for real characters and compelling plots.\nA prolonged extrusion of psychopathic pulp.\nBorrows from other movies like it in the most ordinary and obvious fashion.\nIt's surprisingly bland despite the heavy doses of weird performances and direction.\nA chilly, remote, emotionally distant piece...so dull that its tagline should be: 'In space, no one can hear you snore.'\nThe characters seem one-dimensional, and the film is superficial and will probably be of interest primarily to its target audience.\nSorvino makes the princess seem smug and cartoonish, and the film only really comes alive when poor Hermocrates and Leontine pathetically compare notes about their budding amours.\nIt's like a drive-by. You can drive right by it without noticing anything special, save for a few comic turns, intended and otherwise.\nEverything -- even life on an aircraft carrier -- is sentimentalized.\nThis would-be 'James Bond for the Extreme Generation' pic is one big, dumb action movie. Stress 'dumb.'\nThe movie has generic virtues, and despite a lot of involved talent, seems done by the numbers.\nWhen your subject is illusion versus reality, shouldn't the reality seem at least passably real?\nIt's a terrible movie in every regard, and utterly painful to watch.\nThis is rote spookiness, with nary an original idea (or role, or edit, or score, or anything, really) in sight, and the whole of the proceedings beg the question 'Why?'\nA fan film that for the uninitiated plays better on video with the sound turned down.\nToo infuriatingly quirky and taken with its own style.\nThere's a whole heap of nothing at the core of this slight coming-of-age/coming-out tale.\nAs much as I laughed throughout the movie, I cannot mount a cogent defense of the film as entertainment, or even performance art, although the movie does leave you marveling at these guys' superhuman capacity to withstand pain.\nThe type of dumbed-down exercise in stereotypes that gives the (teen comedy) genre a bad name.\nDistinctly sub-par...more likely to drown a viewer in boredom than to send any shivers down his spine.\nPlays like a bad blend of an overripe episode of TV's Dawson's Creek and a recycled and dumbed-down version of Love Story.\nUnless you come in to the film with a skateboard under your arm, you're going to feel like you weren't invited to the party.\nWhen the casting call for this movie went out, it must have read 'seeking anyone with acting ambition but no sense of pride or shame.'\nJust isn't as weird as it ought to be.\nA ``Home Alone'' film that is staged like ``Rosemary's Baby,'' but is not as well-conceived as either of those films.\n(Siegel) and co-writers Lisa Bazadona and Grace Woodard have relied too much on convention in creating the characters who surround Frankie.\nNo film could possibly be more contemptuous of the single female population.\n`Hey Arnold!' has some visual wit ... but little imagination elsewhere.\nThey're going through the motions, but the zip is gone.\nA sluggish pace and lack of genuine narrative hem the movie in every bit as much as life hems in the spirits of these young women.\nA low-budget affair, Tadpole was shot on digital video, and the images often look smeary and blurry, to the point of distraction. Then again, in a better movie, you might not have noticed.\nIt's mindless junk like this that makes you appreciate original romantic comedies like Punch-Drunk Love.\nThe movie is like a year late for tapping into our reality tv obsession, and even tardier for exploiting the novelty of the ``webcast.''\ntale will be all too familiar for anyone who's seen George Roy Hill's 1973 film, ``The Sting.''\nGets the look and the period trappings right, but it otherwise drowns in a sea of visual and verbal clichés.\nIt's hard to quibble with a flick boasting this many genuine cackles, but Notorious C.H.O. still feels like a promising work-in-progress.\nAnyone who wants to start writing screenplays can just follow the same blueprint from hundreds of other films, sell it to the highest bidder and walk away without anyone truly knowing your identity.\nThe problem with The Bread, My Sweet is that it's far too sentimental.\nA late-night cable sexploitation romp masquerading as a thriller about the ruthless social order that governs college cliques.\nFalls short in explaining the music and its roots.\nNever inspires more than an interested detachment.\nWhat might have emerged as hilarious lunacy in the hands of Woody Allen or Mel Brooks (at least during their '70s heyday) comes across as lame and sophomoric in this debut indie feature.\nDespite slick production values and director Roger Michell's tick-tock pacing, the final effect is like having two guys yelling in your face for two hours.\nPretty much sucks, but has a funny moment or two.\nThey do a good job of painting this family dynamic for the audience but they tried to squeeze too many elements into the film.\nA supernatural mystery that doesn't know whether it wants to be a suspenseful horror movie or a weepy melodrama. It ends up being neither, and fails at both endeavors.\nTwo badly interlocked stories drowned by all too clever complexity.\nIt is so earnest, so overwrought and so wildly implausible that it begs to be parodied.\nThese are textbook lives of quiet desperation.\nSwimfan, like Fatal Attraction, eventually goes overboard with a loony melodramatic denouement in which a high school swimming pool substitutes for a bathtub.\nClaims to sort the bad guys from the good, which is its essential problem.\nPurposefully shocking in its eroticized gore, if unintentionally dull in its lack of poetic frissons.\nFeels like pieces a bunch of other, better movies slapped together.\nAlmost everything about the film is unsettling, from the preposterous hairpiece worn by Lai's villainous father to the endless action sequences.\nWriter-director Randall Wallace has bitten off more than he or anyone else could chew, and his movie veers like a drunken driver through heavy traffic.\nIt follows the Blair Witch formula for an hour, in which we're told something creepy and vague is in the works, and then it goes awry in the final 30 minutes.\nOne can't shake the feeling that Crossroads is nothing more than an hour-and-a-half-long commercial for Britney's latest album.\nPhoned-in business as usual.\nThere's an epic here, but you have to put it together yourself.\nWhat little atmosphere is generated by the shadowy lighting, macabre sets, and endless rain is offset by the sheer ugliness of everything else.\nDirector-chef Gabriele Muccino keeps it fast -- zippy, comin' at ya -- as if fearing that his film is molto superficiale.\nTartakovsky's team has some freakish powers of visual charm, but the five writers slip into the modern rut of narrative banality.\nThe most horrific movie experience I've had since ``Can't Stop The Music.'' It may as well be called ``Jar-Jar Binks: The Movie.'' It's that painful.\nGod is great, the movie's not.\nLike a three-ring circus, there are side stories aplenty -- none of them memorable.\nWhen in doubt, the film ratchets up the stirring soundtrack, throws in a fish-out-of-water gag and lets the cliched dialogue rip. Or else a doggie winks.\nA 'Girls Gone Wild' video for the boho art-house crowd, The Burning Sensation isn't a definitive counter-cultural document -- its makers aren't removed and inquisitive enough for that.\nAs original and insightful as last week's episode of Behind the Music.\nPlays like John Le Carré with a couple of burnt-out cylinders.\nYou may be galled that you've wasted nearly two hours of your own precious life with this silly little puddle of a movie.\nIt's neither as sappy as Big Daddy nor as anarchic as Happy Gilmore or The Waterboy, but it has its moments.\nDespite the surface attractions -- Conrad L. Hall's cinematography will likely be nominated for an Oscar next year -- there's something impressive and yet lacking about everything.\nA smug and convoluted action-comedy that doesn't allow an earnest moment to pass without reminding audiences that it's only a movie.\n(Crystal and De Niro) manage to squeeze out some good laughs but not enough to make this silly con job sing.\nWorthless, from its pseudo-rock-video opening to the idiocy of its last frames.\nThe Christ allegory doesn't work because there is no foundation for it\nGo for La Salle's performance, and make do as best you can with a stuttering script.\nIt's hard to care about a film that proposes as epic tragedy the plight of a callow rich boy who is forced to choose between his beautiful, self-satisfied 22-year-old girlfriend and an equally beautiful, self-satisfied 18-year-old mistress.\nTries too hard to be funny in a way that's too loud, too goofy and too short of an attention span.\nI didn't find much fascination in the swinging. What they're doing is a matter of plumbing arrangements and mind games, of no erotic or sensuous charge. But that they are doing it is thought-provoking.\nThe acting is just fine, but there's not enough substance here to sustain interest for the full 90 minutes, especially with the weak payoff.\nAfter Collateral Damage, you might imagine that most every aggrieved father cliché has been unturned. But no.\nUltimately the, yes, snail-like pacing and lack of thematic resonance make the film more silly than scary, like some sort of Martha Stewart decorating program run amok.\nReleasing a film with the word 'dog' in its title in January lends itself to easy jokes and insults, and Snow Dogs deserves every single one of them.\nTedious Norwegian offering which somehow snagged an Oscar nomination.\nIt was a dark and stormy night...\nA dark-as-pitch comedy that frequently veers into corny sentimentality, probably would not improve much after a therapeutic zap of shock treatment.\nThis sort of cute and cloying material is far from Zhang's forte and it shows.\nBray is completely at sea; with nothing but a Savage Garden music video on his resume, he has no clue about making a movie.\nFreundlich's made (Crudup) a suburban architect, and a cipher.\na huge disappointment coming, as it does, from filmmakers and performers of this calibre\nThough it pretends to expose the life of male hustlers, it's exploitive without being insightful.\nAimed squarely at the least demanding of demographic groups: very small children who will be delighted simply to spend more time with familiar cartoon characters.\nWhat starts off as a satisfying kids flck becomes increasingly implausible as it races through contrived plot points.\nExhibits the shallow sensationalism characteristic of soap opera...more salacious telenovela than serious drama.\nSeagal is painfully foolish in trying to hold onto what's left of his passe' chopsocky glory.\nEven with Harris's strong effort, the script gives him little to effectively probe Lear's soul-stripping breakdown.\nThe story is bogus and its characters tissue-thin.\nWhereas the extremely competent hitman films such as Pulp Fiction and Get Shorty resonate a sardonic verve to their caustic purpose for existing, Who Is Cletis Tout? is an inexpressible and drab wannabe looking for that exact niche.\nWhile American Adobo has its heart (and its palate) in the right place, its brain is a little scattered -- ditsy, even.\nImagine a film that begins as a Seven rip-off, only to switch to a mix of The Shining, The Thing, and any naked teenagers horror flick from the 1980s.\nMost of the dialogue made me want to pack raw dough in my ears.\nCostner's warm-milk persona is just as ill-fitting as Shadyac's perfunctory directing chops, and some of the more overtly silly dialogue would sink Laurence Olivier.\nIt's coherent, well shot, and tartly acted, but it wears you down like a dinner guest showing off his doctorate.\nDirected by Kevin Bray, whose crisp framing, edgy camera work, and wholesale ineptitude with acting, tone and pace very obviously mark him as a video helmer making his feature debut.\nturns a potentially interesting idea into an excruciating film school experience that plays better only for the film's publicists or for people who take as many drugs as the film's characters\nRobin Williams departs from his fun friendly demeanor in exchange for a darker unnerving role.\nHigh Crimes is a cinematic misdemeanor, a routine crime thriller remarkable only for its lack of logic and misuse of two fine actors, Morgan Freeman and Ashley Judd.\nSet in a 1986 Harlem that doesn't look much like anywhere in New York.\nThe chocolate factory without Charlie.\nLong on twinkly-eyed close-ups and short on shame.\nHip-hop rarely comes alive as its own fire-breathing entity in this picture.\nA dull, somnambulant exercise in pretension whose pervasive quiet is broken by frequent outbursts of violence and noise.\nDeserving of its critical backlash and more.\nNeither a rousing success nor a blinding embarrassment. Still, it just sits there like a side dish no one ordered.\nThe Sum of All Fears is remarkably fuddled about motives and context, which drains it of the dramatic substance that would shake us in our boots (or cinema seats).\nThe movie spends more time with Schneider than with newcomer McAdams, even though her performance is more interesting (and funnier) than his.\nThis low-rent -- and even lower-wit -- rip-off of the Farrelly brothers' oeuvre gets way too mushy -- and in a relatively short amount of time.\nIt recycles every cliché about gays in what is essentially an extended soap opera.\nI'm all for the mentally challenged getting their fair shot in the movie business, but surely it doesn't have to be as a collection of keening and self-mutilating sideshow geeks.\nMay offend viewers not amused by the sick sense of humor.\nMany of Benjamins' elements feel like they've been patched in from an episode of Miami Vice.\nIt aimlessly and unsuccessfully attempts to fuse at least three dull plots into one good one.\nMost folks with a real stake in the American sexual landscape will find it either moderately amusing or just plain irrelevant.\nIf you're not fans of the adventues of Steve and Terri, you should avoid this like the dreaded King Brown snake. Personally, I'd rather watch them on the Animal Planet.\nCherish is a dud -- a romantic comedy that's not the least bit romantic and only mildly funny.\nFeels as if the inmates have actually taken over the asylum.\nAll of the filmmakers' calculations can't rescue Brown Sugar from the curse of blandness.\nThe movie's gloomy atmosphere is fascinating, though, even if the movie itself doesn't stand a ghost of a chance.\n...post-September 11, ``The Sum Of All Fears'' seems more tacky and reprehensible, manipulating our collective fear without bestowing the subject with the intelligence or sincerity it unequivocally deserves.\nThe exclamation point seems to be the only bit of glee you'll find in this dreary mess.\nNo matter how you slice it, Mark Wahlberg and Thandie Newton are not Hepburn and Grant, two cinematic icons with chemistry galore.\nGodard's ode to tackling life's wonderment is a rambling and incoherent manifesto about the vagueness of topical excess...In Praise of Love remains a ponderous and pretentious endeavor that's unfocused and tediously exasperating.\nHumorless, self-conscious art drivel, made without a glimmer of intelligence or invention.\nThe movie's progression into rambling incoherence gives new meaning to the phrase 'fatal script error.'\nSolondz may be convinced that he has something significant to say, but he isn't talking a talk that appeals to me.\nMore tiring than anything.\nNelson's intentions are good, but the end result does no justice to the story itself. It's horribly depressing and not very well done.\n...the efforts of its star, Kline, to lend some dignity to a dumb story are for naught.\nA good-natured ensemble comedy that tries hard to make the most of a bumper cast, but never quite gets off the ground.\nIsn't it a bit early in his career for director Barry Sonnenfeld to do a homage to himself? And it's a lousy one at that.\nOverly long and worshipful bio-doc.\nI'll go out on a limb. It isn't quite one of the worst movies of the year. It's just merely very bad.\nWriter-director Ritchie reduces Wertmuller's social mores and politics to tiresome jargon.\nAbout Amy's cuteness, Amy's career success (she's a best-selling writer of self-help books who can't help herself), and Amy's neuroses when it comes to men.\nEverything about Girls Can't Swim, even its passages of sensitive observation, feels secondhand, familiar -- and not in a good way.\nFeels aimless for much of its running time, until late in the film when a tidal wave of plot arrives, leaving questions in its wake.\nIn my own very humble opinion, In Praise of Love lacks even the most fragmented charms I have found in almost all of his previous works.\nThe script is too mainstream and the psychology too textbook to intrigue.\nMuddled, simplistic and more than a little pretentious.\nMeandering and glacially paced, and often just plain dull.\nA disaster of a drama, saved only by its winged assailants.\nA road trip that will get you thinking, 'Are we there yet?'\nDirector Elie Chouraqui, who co-wrote the script, catches the chaotic horror of war, but why bother if you're going to subjugate truth to the tear-jerking demands of soap opera?\nDong never pushes for insights beyond the superficial tensions of the dynamic he's dissecting, and the film settles too easily along the contours of expectation.\nIf there was any doubt that Peter O'Fallon didn't have an original bone in his body, A Rumor of Angels should dispel it.\nAn occasionally interesting but mostly repetitive look at a slice of counterculture that might be best forgotten.\nWhat could have been right at home as a nifty plot line in Steven Soderbergh's Traffic fails to arrive at any satisfying destination.\nThe movie is like Scorsese's Mean Streets redone by someone who ignored it in favor of old 'juvenile delinquent' paperbacks with titles like Leather Warriors and Switchblade Sexpot.\nThis pathetic junk is barely an hour long. Nevertheless, it still seems endless.\nIt isn't that Stealing Harvard is a horrible movie--if only it were that grand a failure! It's just that it's so not-at-all-good. And I expect much more from a talent as outstanding as director Bruce McCulloch.\nDolman confines himself to shtick and sentimentality -- the one bald and the other sloppy.\nIs it possible for a documentary to be utterly entranced by its subject and still show virtually no understanding of it?\nIt's supposed to be a romantic comedy - it suffers from too much Norma Rae and not enough Pretty Woman.\nThe leads are so unmemorable, despite several attempts at lengthy dialogue scenes, that one eventually resents having to inhale this gutter romancer's secondhand material.\nStaggers between flaccid satire and what is supposed to be madcap farce.\nNot that any of us should be complaining when a film clocks in around 90 minutes these days, but the plotting here leaves a lot to be desired.\nBrainy, artistic and muted, almost to the point of suffocation.\nPlays like the old disease-of-the-week small-screen melodramas.\nLike life on the island, the movie grows boring despite the scenery.\nThe truth about Charlie is that it's a brazenly misguided project.\ndisplays the potential for a better movie than what Bailly manages to deliver\nSo exaggerated and broad that it comes off as annoying rather than charming.\nAn awkward hybrid of genres that just doesn't work.\nThe latest vapid actor's exercise to appropriate the structure of Arthur Schnitzler's Reigen.\nSnipes is both a snore and utter tripe.\nRitchie's film is easier to swallow than Wertmuller's polemical allegory, but it's self-defeatingly decorous.\nChalk it up as the worst kind of hubristic folly.\nIt's the kind of under-inspired, overblown enterprise that gives Hollywood sequels a bad name.\nRosenthal (Halloween II) seems to have forgotten everything he ever knew about generating suspense.\nEven Murphy's expert comic timing and famed charisma can't rescue this effort.\nRodriguez...was unable to reproduce the special spark between the characters that made the first film such a delight.\nA sleek advert for youthful anomie that never quite equals the sum of its pretensions.\nSome Body smacks of exhibitionism more than it does cathartic truth telling.\nThis isn't a terrible film by any means, but it's also far from being a realized work.\nApparently, romantic comedy with a fresh point of view just doesn't figure in the present Hollywood program.\nDepressingly thin and exhaustingly contrived. Only masochistic moviegoers need apply.\nA movie that's held captive by mediocrity. Not bad, but not all that good. Bacon keeps things interesting, but don't go out of your way to pay full price.\nWhat's next? Rob Schneider, Dana Carvey and Sarah Michelle Gellar in The Philadelphia Story? David Spade as Citizen Kane?\nCan't seem to get anywhere near the story's center.\nThe problem, amazingly enough, is the screenplay.\nIt's a Frankenstein-monster of a film that doesn't know what it wants to be.\nUpper West Sidey exercise in narcissism and self-congratulation disguised as a tribute.\nOn its icy face, the new film is a subzero version of Monsters, Inc., without the latter's imagination, visual charm or texture.\nI can't say this enough: This movie is about an adult male dressed in pink jammies.\nIt's a mindless action flick with a twist -- far better suited to video-viewing than the multiplex.\nAfter a while, the only way for a reasonably intelligent person to get through The Country Bears is to ponder how a whole segment of pop-music history has been allowed to get wet, fuzzy and sticky.\nWe get light showers of emotion a couple of times, but then -- strangely -- these wane to an inconsistent and ultimately unsatisfying drizzle.\nSummer's far too fleeting to squander on offal like this.\nThe film is grossly contradictory in conveying its social message, if indeed there is one.\nOften lingers just as long on the irrelevant as on the engaging, which gradually turns What Time Is It There? into How Long Is This Movie?\nToo bad Kramer couldn't make a guest appearance to liven things up.\nDeuces Wild is an encyclopedia of cliches that shoplifts shamelessly from farewell-to-innocence movies like The Wanderers and A Bronx Tale without cribbing any of their intelligence.\nIt's a barely tolerable slog over well-trod ground.\nEpps has neither the charisma nor the natural affability that has made Tucker a star.\nIt's sweet... but just a little bit too precious at the start and a little too familiar at the end.\nA dull, dumb and derivative horror film.\nAn awkwardly contrived exercise in magic realism.\nDemme gets a lot of flavor and spice into his Charade remake, but he can't disguise that he's spiffing up leftovers that aren't so substantial or fresh.\nThis is a heartfelt story ... it just isn't a very involving one.\nThese self-styled athletes have banged their brains into the ground so frequently and furiously, their capacity to explain themselves has gone the same way as their natural instinct for self-preservation.\nThe fact that the 'best part' of the movie comes from a 60-second homage to one of Demme's good films doesn't bode well for the rest of it.\nRichard Pryor mined his personal horrors and came up with a treasure chest of material, but Lawrence gives us mostly fool's gold.\nThe band performances featured in Drumline are red hot... (but) from a mere story point of view, the film's ice cold.\n... built on the premise that middle-class Arkansas consists of monster truck-loving good ol' boys and peroxide blond honeys whose worldly knowledge comes from TV reruns and supermarket tabloids.\nA laughable -- or rather, unlaughable -- excuse for a film.\nThe sequel is everything the original was not: contrived, overblown and tie-in ready.\nLike a grinning Jack O' Lantern, its apparent glee is derived from a lobotomy, having had all its vital essence scooped out and discarded.\nA sentimental hybrid that could benefit from the spice of specificity.\n...familiar and predictable, and 4/5ths of it might as well have come from a Xerox machine rather than (writer-director) Franc. Reyes' word processor.\nGive Shapiro, Goldman, and Bolado credit for good intentions, but there's nothing here that they couldn't have done in half an hour.\nIt's so devoid of joy and energy it makes even Jason X ... look positively Shakesperean by comparison.\nA little objectivity could have gone a long way.\nOne of the worst films of 2002.\nI believe Silberling had the best intentions here, but he just doesn't have the restraint to fully realize them.\nplays like an unbalanced mixture of graphic combat footage and almost saccharine domestic interludes that are pure Hollywood.\nMcTiernan's remake may be lighter on its feet -- the sober-minded original was as graceful as a tap-dancing rhino -- but it is just as boring and as obvious.\nHigh Crimes carries almost no organic intrigue as a government/ Marine/legal mystery, and that's because the movie serves up all of that stuff, nearly subliminally, as the old-hat province of male intrigue.\nThis movie is about the worst thing Chan has done in the United States.\nThe explosion essentially ruined -- or, rather, overpowered -- the fiction of the movie for me.\nThis ludicrous film is predictable at every turn.\nAn incredibly irritating comedy about thoroughly vacuous people...manages to embody the worst excesses of nouvelle vague without any of its sense of fun or energy.\nThe film desperately sinks further and further into comedy futility.\nInstead of a balanced film that explains the zeitgeist that is the X Games, we get a cinematic postcard that's superficial and unrealized.\nThe crassness of this reactionary thriller is matched only by the ridiculousness of its premise.\nI wish it would have just gone more over-the-top instead of trying to have it both ways.\nThe superior plotline isn't quite enough to drag along the dead (water) weight of the other.\nThe film doesn't really care about the thousands of Americans who die hideously, it cares about how Ryan meets his future wife and makes his start at the CIA.\nAdrift, Bentley and Hudson stare and sniffle, respectively, as Ledger attempts, in vain, to prove that movie-star intensity can overcome bad hair design.\nAfter an hour and a half of wondering -- sometimes amusedly, sometimes impatiently -- just what this strenuously unconventional movie is supposed to be, you discover that the answer is as conventional as can be.\n'Linklater fans, or pretentious types who want to appear avant-garde will suck up to this project...'\nA woefully dull, redundant concept that bears more than a whiff of exploitation, despite Iwai's vaunted empathy.\nScreenwriter Chris ver Weil's directing debut is good-natured and never dull, but its virtues are small and easily overshadowed by its predictability.\nIf you really want to understand what this story is really all about, you're far better served by the source material.\nIt's mildly sentimental, unabashedly consumerist ... studiously inoffensive and completely disposable.\nLike its title character, Esther Kahn is unusual but unfortunately also irritating.\nThe star who helped give a spark to ``Chasing Amy'' and ``Changing Lanes'' falls flat as thinking man CIA agent Jack Ryan in this summer's new action film, ``The Sum of All Fears.''\nA summary of the plot doesn't quite do justice to the awfulness of the movie, for that comes through all too painfully in the execution.\nEvery conceivable mistake a director could make in filming opera has been perpetrated here.\nSnoots will no doubt rally to its cause, trotting out threadbare standbys like 'masterpiece' and 'triumph' and all that malarkey, but rarely does an established filmmaker so ardently waste viewers' time with a gobbler like this.\n(The film's) taste for ``shock humor'' will wear thin on all but those weaned on the comedy of Tom Green and the Farrelly Brothers.\nAny enjoyment will be hinge from a personal threshold of watching sad but endearing characters do extremely unconventional things.\nIf legendary shlockmeister Ed Wood had ever made a movie about a vampire, it probably would look a lot like this alarming production, adapted from Anne Rice's novel The Vampire Chronicles.\nHardly a nuanced portrait of a young woman's breakdown, the film nevertheless works up a few scares.\nInterminably bleak, to say nothing of boring.\nThings really get weird, though not particularly scary: the movie is all portent and no content.\nIt's difficult to discern if this is a crazy work of disturbed genius or merely 90 minutes of post-adolescent Electra rebellion.\nBogs down badly as we absorb Jia's moody, bad-boy behavior which he portrays himself in a one-note performance.\nThe camera whirls! The camera twirls! Oh, look at that clever angle! Wow, a jump cut!\nDemme finally succeeds in diminishing his stature from Oscar-winning master to lowly studio hack.\nThe action scenes have all the suspense of a 20-car pileup, while the plot holes are big enough for a train car to drive through -- if Kaos hadn't blown them all up.\nIt almost feels as if the movie is more interested in entertaining itself than in amusing us.\nIt puts Washington, as honest working man John Q. Archibald, on a pedestal, then keeps lifting the pedestal higher.\nUltimately, the film amounts to being lectured to by tech-geeks, if you're up for that sort of thing.\nFar more enjoyable than its predecessor.\n(Gayton's script) telegraphs every discovery and layers on the gloss of convenience.\nFull Frontal, which opens today nationwide, could almost be classified as a movie-industry satire, but it lacks the generous inclusiveness that is the genre's definitive, if disingenuous, feature.\nA ragbag of cliches.\nThis rough trade Punch-and-Judy act didn't play well then and it plays worse now.\nThe three leads produce adequate performances, but what's missing from this material is any depth of feeling.\nIt's possible that something hip and transgressive was being attempted here that stubbornly refused to gel, but the result is more puzzling than unsettling.\nThis painfully unfunny farce traffics in tired stereotypes and encumbers itself with complications ... that have no bearing on the story.\nShort and sweet, but also more than anything else slight... Tadpole pulls back from the consequences of its own actions and revelations.\nHas its moments, but it's pretty far from a treasure.\nWhat more can be expected from a college comedy that's target audience hasn't graduated from junior high school?\nCollateral Damage offers formula payback and the Big Payoff, but the explosions tend to simply hit their marks, pyro-correctly.\nThe plan to make Enough into `an inspiring tale of survival wrapped in the heart-pounding suspense of a stylish psychological thriller' has flopped as surely as a soufflé gone wrong.\nInstead of letting the laughs come as they may, Lawrence unleashes his trademark misogyny -- er, comedy -- like a human volcano or an overflowing septic tank, take your pick.\nYou know that ten bucks you'd spend on a ticket? Just send it to Cranky. We don't get paid enough to sit through crap like this.\nAn even more predictable, cliche-ridden endeavor than its predecessor.\nThe whole thing plays like a tired Tyco ad.\nThe film doesn't show enough of the creative process or even of what was created for the non-fan to figure out what makes Wilco a big deal.\nThe soupy end result has the odd distinction of being playful without being fun, too.\nNo, I don't know why Steven Seagal is considered a star, nor why he keeps being cast in action films when none of them are ever any good or make any money.\nEven by the intentionally low standards of frat-boy humor, Sorority Boys is a bowser.\nOne well-timed explosion in a movie can be a knockout, but a hundred of them can be numbing. Proof of this is Ballistic: Ecks vs. Sever.\nHalfway through, however, having sucked dry the undead action flick formula, Blade II mutates into a gross-out monster movie with effects that are more silly than scary.\nWeighted down with slow, uninvolving storytelling and flat acting.\nWe can't accuse Kung Pow for misfiring, since it is exactly what it wants to be: an atrociously, mind-numbingly, indescribably bad movie. Unfortunately, we'd prefer a simple misfire.\nThere isn't one moment in the film that surprises or delights.\n'Wouldn't it be nice if all guys got a taste of what it's like on the other side of the bra?'\nThe movie is essentially a series of fleetingly interesting actors' moments.\nMost of the information has already appeared in one forum or another and, no matter how Broomfield dresses it up, it tends to speculation, conspiracy theories or, at best, circumstantial evidence.\nThis movie, a certain scene in particular, brought me uncomfortably close to losing my lunch.\nThe secrets of time travel will have been discovered, indulged in and rejected as boring before I see this piece of crap again.\nSmug, artificial, ill-constructed and fatally overlong...it never finds a consistent tone and lacks bite, degenerating into a pious, preachy soap opera.\nChelsea Walls is a case of too many chefs fussing over too weak a recipe.\nEvery joke is repeated at least four times. Every joke is repeated at least four times. Every joke is repeated at least--annoying, isn't it?\nComes across as a fairly weak retooling.\nThe lousy lead performances... keep the movie from ever reaching the comic heights it obviously desired.\nIts and pieces of The Hot Chick are so hilarious, and Schneider's performance is so fine, it's a real shame that so much of the movie -- again, as in The Animal -- is a slapdash mess.\n(Creates) the worst kind of mythologizing, the kind that sacrifices real heroism and abject suffering for melodrama.\nThe movie resolutely avoids all the comic possibilities of its situation, and becomes one more dumb high school comedy about sex gags and prom dates.\nEarnest and heartfelt but undernourished and plodding.\nA sugar-coated Rocky whose valuable messages are forgotten 10 minutes after the last trombone honks.\nRomanek keeps adding flourishes -- artsy fantasy sequences -- that simply feel wrong. They cheapen the overall effect.\nHas all the complexity and realistic human behavior of an episode of General Hospital.\nAn acceptable way to pass a little over an hour with moviegoers ages 8-10, but it's unlikely to inspire anything more than a visit to McDonald's, let alone some savvy street activism.\n(Allen's) been making piffle for a long while, and Hollywood Ending may be his way of saying that piffle is all that the airhead movie business deserves from him right now.\nAn exercise in cynicism every bit as ugly as the shabby digital photography and muddy sound.\nNot good enough to pass for a litmus test of the generation gap and not bad enough to repulse any generation of its fans.\nThe movie is silly beyond comprehension, and even if it weren't silly, it would still be beyond comprehension.\nWatchable up until the point where the situations and the dialogue spin hopelessly out of control -- that is to say, when Carol Kane appears on the screen.\nThe scriptwriters are no less a menace to society than the film's characters.\nMerchant hasn't directed this movie so much as produced it -- like sausage.\nThe film has a nearly terminal case of the cutes, and it's neither as funny nor as charming as it thinks it is.\nMore a gunfest than a Rock concert.\nIt's a frightful vanity film that, no doubt, pays off what debt Miramax felt they owed to Benigni.\nA muddy psychological thriller rife with miscalculations. It makes me say the obvious: Abandon all hope of a good movie ye who enter here.\nIt's not original enough.\nA listless sci-fi comedy in which Eddie Murphy deploys two guises and elaborate futuristic sets to no particularly memorable effect.\nLittle more than a super-sized infomercial for the cable-sports channel and its Summer X Games.\nA generic bloodbath that often becomes laughably unbearable when it isn't merely offensive.\nJulie Davis is the Kathie Lee Gifford of film directors, sadly proving once again ego doesn't always go hand in hand with talent.\nAn unholy mess, driven by the pathetic idea that if you shoot something on crummy-looking videotape, it must be labelled 'hip', 'innovative' and 'realistic'.\nThe story's pathetic and the gags are puerile.\n. Curiously, Super Troopers suffers because it doesn't have enough vices to merit its 103-minute length.\nSo bland and utterly forgettable that it might as well have been titled Generic Jennifer Lopez Romantic Comedy.\nI was sent a copyof this film to review on DVD. For free. I still want my money back.\nIt plods along methodically, somehow under the assumption that its ``dead wife communicating from beyond the grave'' framework is even remotely new or interesting.\nIt's hard to believe that a relationship like Holly and Marina's could survive the hothouse emotions of teendom, and its longevity gets more inexplicable as the characterizations turn more crassly reductive.\nAll too familiar...basically the sort of cautionary tale that was old when 'Angels With Dirty Faces' appeared in 1938.\n...passable enough for a shoot-out in the o.k. court house of life type of flick. Strictly middle of the road.\nAlthough purportedly a study in modern alienation, it's really little more than a particularly slanted, gay s/m fantasy, enervating and deadeningly drawn-out.\nAfter the first 10 minutes, which is worth seeing, the movie sinks into an abyss of clichés, depression and bad alternative music.\nNo one can doubt the filmmakers' motives, but The Guys still feels counterproductive.\nA very slow, uneventful ride around a pretty tattered old carousel.\nWith little visible talent and no energy, Colin Hanks is in bad need of major acting lessons and maybe a little coffee.\n``Feardotcom'' has the makings of an interesting meditation on the ethereal nature of the internet and the otherworldly energies it could channel, but it simply becomes a routine shocker.\nA Meatballs for the bare-midriff generation.\nWell-meaning to a fault, Antwone Fisher manages the dubious feat of turning one man's triumph of will into everyman's romance comedy.\nSeemingly disgusted with the lazy material and the finished product's unshapely look, director Fisher Stevens inexplicably dips key moments from the film in Waking Life water colors.\nFormula 51 promises a new kind of high but delivers the same old bad trip.\nEverything that was right about Blade is wrong in its sequel.\nA few energetic stunt sequences briefly enliven the film, but the wheezing terrorist subplot hasn't the stamina for the 100-minute running time, and the protagonists' bohemian boorishness mars the spirit of good clean fun.\nThe film was produced by Jerry Bruckheimer and directed by Joel Schumacher, and reflects the worst of their shallow styles: wildly overproduced, inadequately motivated every step of the way and demographically targeted to please every one (and no one).\nDisney again ransacks its archives for a quick-buck sequel.\nCoarse, cliched and clunky, this trifling romantic comedy in which opposites attract for no better reason than that the screenplay demands it squanders the charms of stars Hugh Grant and Sandra Bullock.\nAnyone who suffers through this film deserves, at the very least, a big box of consolation candy.\nHow much you are moved by the emotional tumult of (François and Michèle's) relationship depends a lot on how interesting and likable you find them.\nThey presume their audience won't sit still for a sociology lesson, however entertainingly presented, so they trot out the conventional science-fiction elements of bug-eyed monsters and futuristic women in skimpy clothes.\nCollapses after 30 minutes into a slap-happy series of adolescent violence.\nThe following things are not at all entertaining: The bad sound, the lack of climax and, worst of all, watching Seinfeld (who is also one of the film's producers) do everything he can to look like a good guy.\nAttal's hang-ups surrounding infidelity are so old-fashioned and, dare I say, outdated, it's a wonder that he couldn't have brought something fresher to the proceedings simply by accident.\nObvious, obnoxious and didactic burlesque.\nThe most surprising thing about this film is that they are actually releasing it into theaters.\nMichele is a such a brainless flibbertigibbet that it's hard to take her spiritual quest at all seriously.\nUltimately, clarity matters, both in breaking codes and making movies. Enigma lacks it.\nPotty-mouthed enough for PG-13, yet not as hilariously raunchy as South Park, this strangely schizo cartoon seems suited neither to kids or adults.\n... has its moments, but ultimately, its curmudgeon doesn't quite make the cut of being placed on any list of favorites.\nA distinctly minor effort that will be seen to better advantage on cable, especially considering its barely feature-length running time of one hour.\nMost of the movie is so deadly dull that watching the proverbial paint dry would be a welcome improvement.\nIn the end, Tuck Everlasting falls victim to that everlasting conundrum experienced by every human who ever lived: too much to do, too little time to do it in.\nRather less than the sum of its underventilated père-fils confrontations.\nMcKay shows crushingly little curiosity about, or is ill-equipped to examine, the interior lives of the characters in his film, much less incorporate them into his narrative.\nPlays like a series of vignettes -- clips of a film that are still looking for a common through-line.\nNew Yorkers always seem to find the oddest places to dwell...\nAmid the shock and curiosity factors, the film is just a corny examination of a young actress trying to find her way.\nYes, Spirited Away is a triumph of imagination, but it's also a failure of storytelling.\nA characteristically engorged and sloppy coming-of-age movie.\nA somewhat disappointing and meandering saga.\nWhenever you think you've seen the end of the movie, we cut to a new scene, which also appears to be the end. But, no, we get another scene, and then another. You begin to long for the end credits as the desert does for rain.\nAn empty, ugly exercise in druggy trance-noir and trumped-up street credibility.\nThe screenplay, co-written by director Imogen Kimmel, lacks the wit necessary to fully exploit the comic elements of the premise, making the proceedings more bizarre than actually amusing.\nThe milieu is wholly unconvincing ... and the histrionics reach a truly annoying pitch.\nUnfunny comedy with a lot of static set ups, not much camera movement, and most of the scenes take place indoors in formal settings with motionless characters.\nEach story is built on a potentially interesting idea, but the first two are ruined by amateurish writing and acting, while the third feels limited by its short running time.\nExcept for Paymer as the boss who ultimately expresses empathy for Bartleby's pain, the performances are so stylized as to be drained of human emotion.\nWill no doubt delight Plympton's legion of fans; others may find 80 minutes of these shenanigans exhausting.\nThe laughs are as rare as snake foo yung.\nFor a film that celebrates radical, nonconformist values, What to Do in Case of Fire? lazily and glumly settles into a most traditional, reserved kind of filmmaking.\nKnockaround Guys plays like a student film by two guys who desperately want to be Quentin Tarantino when they grow up. But they lack their idol's energy and passion for detail.\nMattei so completely loses himself to the film's circular structure to ever offer any insightful discourse on, well, Love in the Time of Money.\nIt briefly flirts with player masochism, but the point of real interest -– audience sadism -- is evaded completely.\nHolland lets things peter out midway, but it's notably better acted -- and far less crass - than some other recent efforts in the burgeoning genre of films about black urban professionals.\nFor every articulate player, such as skateboarder Tony Hawk or BMX rider Mat Hoffman, are about a half dozen young Turks angling to see how many times they can work the words ``radical'' or ``suck'' into a sentence.\nThere's not a fresh idea at the core of this tale.\nAn impenetrable and insufferable ball of pseudo-philosophic twaddle.\nIt's unfortunate that Wallace, who wrote Gibson's Braveheart as well as the recent Pearl Harbor, has such an irrepressible passion for sappy situations and dialogue.\nI liked the movie, but I know I would have liked it more if it had just gone that one step further. I'm left slightly disappointed that it didn't.\nDreary tale of middle-class angst\nFor a movie about the power of poetry and passion, there is precious little of either.\n(Jackson and Bledel) seem to have been picked not for their acting chops, but for their looks and appeal to the pre-teen crowd.\nLillard and Cardellini earn their Scooby Snacks, but not anyone else.\nLike Schindler's List, The Grey Zone attempts to be grandiloquent, but ends up merely pretentious -- in a grisly sort of way.\nAn unremittingly ugly movie to look at, listen to, and think about, it is quite possibly the sturdiest example yet of why the DV revolution has cheapened the artistry of making a film.\n(Screenwriter) Pimental took the Farrelly Brothers comedy and feminized it, but it is a rather poor imitation.\nIt's kind of sad that so many people put so much time and energy into this turkey.\nFriday After Next is a lot more bluster than bite.\nIts juxtaposition of overwrought existentialism and stomach-churning gore will have you forever on the verge of either cracking up or throwing up.\nA decidedly mixed bag.\nThere are cheesy backdrops, ridiculous action sequences, and many tired jokes about men in heels.\nIce Cube isn't quite out of ripe screwball ideas, but Friday After Next spreads them pretty thin.\nNot everything in the film works, including its somewhat convenient ending.\nThe characters, cast in impossibly contrived situations, are totally estranged from reality.\nEverything else about High Crimes is, like the military system of justice it portrays, tiresomely regimented.\nJust dreadful. I don't blame Eddie Murphy but shouldn't Owen Wilson know a movie must have a story and a script?\nSweet Home Alabama certainly won't be remembered as one of (Witherspoon's) better films.\nhard as this may be to believe, Here on Earth, a surprisingly similar teen drama, was a better film.\nThis is just lazy writing. Even kids deserve better.\nThe pretensions -- and disposable story -- sink the movie. And Diesel isn't the actor to save it.\nBravo reveals the true intent of her film by carefully selecting interview subjects who will construct a portrait of Castro so predominantly charitable it can only be seen as propaganda.\n... a preachy parable stylized with a touch of John Woo bullet ballet.\nFrank Capra played this story straight. But the 2002 film doesn't really believe in it, and breaks the mood with absurdly inappropriate 'comedy' scenes.\nHow about starting with a more original story instead of just slapping extreme humor and gross-out gags on top of the same old crap?\nThe problem is that for the most part, the film is deadly dull.\nHandled correctly, Wilde's play is a masterpiece of elegant wit and artifice. Here, alas, it collapses like an overcooked soufflé.\n``Sorority Boys'' was funnier, and that movie was pretty bad.\nA bizarre piece of work, with premise and dialogue at the level of kids' television and plot threads as morose as teen pregnancy, rape and suspected murder\nPaul Bettany is good at being the ultra-violent gangster wannabe, but the movie is certainly not number 1.\nIt's a gag that's worn a bit thin over the years, though Don't Ask still finds a few chuckles.\nAn uplifting drama ... What Antwone Fisher isn't, however, is original.\nOften likable, but just as often it's meandering, low on energy, and too eager to be quirky at moments when a little old-fashioned storytelling would come in handy.\nCertain to be distasteful to children and adults alike, Eight Crazy Nights is a total misfire.\nElaborate special effects take centre screen, so that the human story is pushed to one side.\nShowtime isn't particularly assaultive, but it can still make you feel that you never want to see another car chase, explosion or gunfight again.\nAll the characters are clinically depressed and have abandoned their slim hopes and dreams.\nThis Tuxedo ... should have been sent back to the tailor for some major alterations.\nI have no problem with ``difficult'' movies, or movies that ask the audience to meet them halfway and connect the dots instead of having things all spelled out. But first, you have to give the audience a reason to want to put for that effort\nBeen there, done that... a thousand times already, and better.\nWhat's most offensive isn't the waste of a good cast, but the film's denial of sincere grief and mourning in favor of bogus spiritualism.\nSunk by way too much indulgence of scene-chewing, teeth-gnashing actorliness.\nFans of Plympton's shorts may marginally enjoy the film, but it is doubtful this listless feature will win him any new viewers.\nBarrels along at the start before becoming mired in sentimentality.\nNone of this sounds promising and, indeed, the first half of Sorority Boys is as appalling as any 'comedy' to ever spill from a projector's lens.\nThe kind of movie that leaves vague impressions and a nasty aftertaste but little clear memory of its operational mechanics.\n'Punch-Drunk Love is so convinced of its own brilliance that, if it were a person, you'd want to smash its face in.'\nAt once overly old-fashioned in its sudsy plotting and heavy-handed in its effort to modernize it with encomia to diversity and tolerance.\nThe trashy teen-sleaze equivalent of Showgirls.\nWhile the production details are lavish, film has little insight into the historical period and its artists, particularly in how Sand developed a notorious reputation.\nA crass and insulting homage to great films like Some Like It Hot and the John Wayne classics.\nWhat's the most positive thing that can be said about the new Rob Schneider vehicle? Well, it's not as pathetic as The Animal.\nWith all the sympathy, empathy and pity fogging up the screen...His Secret Life enters the land of unintentional melodrama and tiresome love triangles.\nThe problematic characters and overly convenient plot twists foul up Shum's good intentions.\nWhat 'Blade Runner' would've looked like as a low-budget series on a UHF channel.\nHas all the values of a straight-to-video movie, but because it has a bigger-name cast, it gets a full theatrical release.\nWith its lackadaisical plotting and mindless action, All About the Benjamins evokes the bottom tier of blaxploitation flicks from the 1970s.\nIt never quite makes it to the boiling point, but manages to sustain a good simmer for most of its running time.\nLoud, silly, stupid and pointless.\nMandel Holland's direction is uninspired, and his scripting unsurprising, but the performances by Phifer and Black are ultimately winning. You'll find yourself wishing that you and they were in another movie.\nA yawn-provoking little farm melodrama.\nDid no one on the set have a sense of humor, or did they not have the nerve to speak up?\nSeriously, rent the Disney version.\nAs David Letterman and The Onion have proven, the worst of tragedies can be fertile sources of humor, but Lawrence has only a fleeting grasp of how to develop them.\nLike its parade of predecessors, this Halloween is a gory slash-fest. It can't escape its past, and it doesn't want to.\n``Abandon'' will leave you wanting to abandon the theater.\nProblem is, we have no idea what in creation is going on.\nA live-action cartoon, a fast-moving and cheerfully simplistic 88 minutes of exaggerated action put together with the preteen boy in mind.\nA loquacious and dreary piece of business.\nWhat the audience feels is exhaustion, from watching a movie that is dark (dark green, to be exact), sour, bloody and mean.\ndirector Hoffman, his writer and Kline's agent should serve detention\nDodgy mixture of cutesy romance, dark satire and murder mystery.\nMeticulously mounted, exasperatingly well-behaved film, which ticks off Kahlo's lifetime milestones with the dutiful precision of a tax accountant.\nTime of Favor could have given audiences the time of day by concentrating on the elements of a revealing alienation among a culture of people who sadly are at hostile odds with one another through recklessness and retaliation.\nI'm not sure which will take longer to heal: the welt on Johnny Knoxville's stomach from a riot-control projectile or my own tortured psyche.\nWhile Serving Sara does have a long way to go before it reaches the level of crudity in the latest Austin Powers extravaganza, there's nothing here to match that movie's intermittent moments of inspiration.\nI'm not sure which is worse: the poor acting by the ensemble cast, the flat dialogue by Vincent R. Nebrida or the gutless direction by Laurice Guillen.\nThe only reason you should see this movie is if you have a case of masochism and an hour and a half to blow.\nWhatever about warning kids about the dangers of ouija boards, someone should dispense the same advice to film directors.\nAs with so many merchandised-to-the-max movies of this type, more time appears to have gone into recruiting the right bands for the playlist and the costuming of the stars than into the script, which has a handful of smart jokes and not much else.\nThe Irwins' scenes are fascinating; the movie as a whole is cheap junk and an insult to their death-defying efforts.\nIf routine action and jokes like this are your cup of tea, then pay your $8 and get ready for the big shear. This is one baaaaaaaaad movie.\nA man leaving the screening said the film was better than Saving Private Ryan. He may have meant the Internet short Saving Ryan's Privates. But Windtalkers doesn't beat that one, either.\nMay puzzle his most ardent fans.\nStarts as a tart little lemon drop of a movie and ends up as a bitter pill.\nWe never feel anything for these characters, and as a result the film is basically just a curiosity.\nThose unfamiliar with Mormon traditions may find The Singles Ward occasionally bewildering.\nRitchie may not have a novel thought in his head, but he knows how to pose Madonna.\nThe story, touching though it is, does not quite have enough emotional resonance or variety of incident to sustain a feature, and even at 85 minutes it feels a bit long.\nFeels like the work of an artist who is simply tired -- of fighting the same fights, of putting the weight of the world on his shoulders, of playing with narrative form.\nWhile you have to admit it's semi-amusing to watch Robert DeNiro belt out ``When you're a Jet, you're a Jet all the way,'' it's equally distasteful to watch him sing the lyrics to ``Tonight.''\nThe whole mess boils down to a transparently hypocritical work that feels as though it's trying to set the women's liberation movement back 20 years.\n'...the cast portrays their cartoon counterparts well...but quite frankly, Scoob and Shag don't eat enough during the film.'\nMore of the same old garbage Hollywood has been trying to pass off as acceptable teen entertainment for some time now.\nTV skit-com material fervently deposited on the big screen.\n(Johnnie To and Wai Ka Fai are) sure to find an enthusiastic audience among American action-adventure buffs, but the film's interests may be too narrow to attract crossover viewers.\nIf there was ever a movie where the upbeat ending feels like a copout, this is the one.\nIt's as sorry a mess as its director's diabolical debut, Mad Cows.\nAny attempts at nuance given by the capable cast is drowned out by director Jon Purdy's sledgehammer sap.\nIts audacious ambitions sabotaged by pomposity, Steven Soderbergh's space opera emerges as a numbingly dull experience.\nDespite some strong performances, never rises above the level of a telanovela.\nThis is a picture that Maik, the firebrand turned savvy ad man, would be envious of: it hijacks the heat of revolution and turns it into a sales tool.\nFeels slight, as if it were an extended short, albeit one made by the smartest kids in class.\nUnspeakable, of course, barely begins to describe the plot and its complications. Vulgar is too optimistic a title.\nThe actors pull out all the stops in nearly every scene, but to diminishing effect. The characters never change.\nIf The Last Man were the last movie left on earth, there would be a toss-up between presiding over the end of cinema as we know it and another night of delightful hand shadows.\nWelles groupie/scholar Peter Bogdanovich took a long time to do it, but he's finally provided his own broadside at publishing giant William Randolph Hearst.\nMakes the same mistake as the music industry it criticizes, becoming so slick and watered-down it almost loses what made you love it in the first place.\nEven as I valiantly struggled to remain interested, or at least conscious, I could feel my eyelids ... getting ... very ... heavy ...\nA bad movie that happened to good actors.\nBoasts eye-catching art direction but has a forcefully quirky tone that quickly wears out its limited welcome.\nScreenwriter Dan Schneider and director Shawn Levy substitute volume and primary colors for humor and bite.\nOversexed, at times overwrought comedy/drama that offers little insight into the experience of being forty, female and single.\nThat such a horrible movie could have sprung from such a great one is one of the year's worst cinematic tragedies.\nIt all starts to smack of a Hallmark Hall of Fame, with a few four letter words thrown in that are generally not heard on television.\nRarely has a film's title served such dire warning.\nIf you saw Benigni's Pinocchio at a public park, you'd grab your kids and run and then probably call the police.\nThe animation is competent, and some of the gags are quite funny, but Jonah ... never shakes the oppressive, morally superior good-for-you quality that almost automatically accompanies didactic entertainment.\nThe pace of the film is very slow (for obvious reasons) and that too becomes off-putting.\nMr. Wollter and Ms. Seldhal give strong and convincing performances, but neither reaches into the deepest recesses of the character to unearth the quaking essence of passion, grief and fear.\nShafer's feature doesn't offer much in terms of plot or acting.\nIn his role of observer of the scene, Lawrence sounds whiny and defensive, as if his life-altering experiences made him bitter and less mature.\n(T)he ideas of Revolution #9 are more compelling than the execution\nThe film didn't convince me that Calvin Jr.'s Barbershop represents some sort of beacon of hope in the middle of Chicago's South Side.\nWhat happens when something goes bump in the night and nobody cares?\nDespite some comic sparks, Welcome to Collinwood never catches fire.\nDirector George Hickenlooper has had some success with documentaries, but here his sense of story and his juvenile camera movements smack of a film school undergrad, and his maudlin ending might not have gotten him into film school in the first place.\nShows moments of promise but ultimately succumbs to cliches and pat storytelling.\nEven accepting this in the right frame of mind can only provide it with so much leniency.\nSome Body is a shaky, uncertain film that nevertheless touches a few raw nerves.\nAll the small moments and flashbacks don't add up to much more than trite observations on the human condition.\n(A) stale retread of the '53 original.\nOne thing's for sure--if George Romero had directed this movie, it wouldn't have taken the protagonists a full hour to determine that in order to kill a zombie you must shoot it in the head.\nFor dance completists only.\nSpreads itself too thin, leaving these actors, as well as the members of the commune, short of profound characterizations\nIt wouldn't matter so much that this arrogant Richard Pryor wannabe's routine is offensive, puerile and unimaginatively foul-mouthed if it was at least funny.\nThe locale ... remains far more interesting than the story at hand.\nYo, it's The Days Of Our Lives meets Electric Boogaloo.\nI liked the original short story but this movie, even at an hour and twenty-some minutes, it's too long and it goes nowhere.\nThis little film is so slovenly done, so primitive in technique, that it can't really be called animation.\nMakes 98 minutes feel like three hours.\nHawke's film, a boring, pretentious waste of nearly two hours, doesn't tell you anything except that the Chelsea Hotel today is populated by whiny, pathetic, starving and untalented artistes.\nAspires to the cracked lunacy of The Adventures of Buckaroo Banzai, but thanks to an astonishingly witless script ends up more like The Adventures of Ford Fairlane.\nReal-life strongman Ahola lacks the charisma and ability to carry the film on his admittedly broad shoulders.\nThe title, alone, should scare any sane person away.\nLow comedy doesn't come much lower.\nAppropriately cynical social commentary aside, #9 never quite ignites.\nIt's crap on a leash--far too polite to scale the lunatic heights of Joe Dante's similarly styled Gremlins.\nOne of the most depressing movie-going experiences I can think of is to sit through about 90 minutes of a so-called 'comedy' and not laugh once.\nThis is the kind of movie where the big scene is a man shot out of a cannon into a vat of ice cream.\nLet's face it -- there aren't many reasons anyone would want to see Crossroads if they're not big fans of teen pop kitten Britney Spears.\nA loud, brash and mainly unfunny high school comedy.\nAn exceptionally dreary and overwrought bit of work, every bit as imperious as Katzenberg's The Prince of Egypt from 1998.\nThe movie is so resolutely cobbled together out of older movies that it even uses a totally unnecessary prologue, just because it seems obligatory.\nThe movie's vision of a white American zealously spreading a Puritanical brand of Christianity to South Seas islanders is one only a true believer could relish.\nMaid in Manhattan proves that it's easier to change the sheets than to change hackneyed concepts when it comes to dreaming up romantic comedies.\nA fairly harmless but ultimately lifeless feature-length afterschool special.\nI can't remember the last time I saw a movie where I wanted so badly for the protagonist to fail.\n...the whole thing succeeded only in making me groggy.\nLike most of Jaglom's films, some of it is honestly affecting, but more of it seems contrived and secondhand.\nOne long, numbing action sequence made up mostly of routine stuff Yuen has given us before.\nForgettable, if good-hearted, movie.\nThe film's most improbable feat? It didn't go straight to video.\n...about as exciting to watch as two last-place basketball teams playing one another on the final day of the season.\nThe Chateau... is less concerned with cultural and political issues than doting on its eccentric characters.\nCruel and inhuman cinematic punishment... simultaneously degrades its characters, its stars and its audience.\nIt's not too fast and not too slow. It's not too racy and it's not too offensive. It's not too much of anything.\nThe great pity is that those responsible didn't cut their losses – and ours – and retitle it The Adventures of Direct-to-Video Nash, and send it to its proper home.\nAbout as original as a gangster sweating bullets while worrying about a contract on his life.\nAn empty shell of an epic rather than the real deal.\nWe could have expected a little more human being, and a little less product.\nInstead of using George and Lucy's most obvious differences to ignite sparks, Lawrence desperately looks elsewhere, seizing on George's haplessness and Lucy's personality tics.\nWhether Quitting will prove absorbing to American audiences is debatable.\nBecomes a bit of a mishmash: a tearjerker that doesn't and a thriller that won't.\nFamily togetherness takes a back seat to inter-family rivalry and workplace ambition... whole subplots have no explanation or even plot relevance.\nGrant isn't Cary and Bullock isn't Katherine.\nLike a fish that's lived too long, Austin Powers in Goldmember has some unnecessary parts and is kinda wrong in places.\nTwo tedious acts light on great scares and a good surprise ending.\nShyamalan should stop trying to please his mom.\nThe entire movie is in need of a scented bath.\nI'm sorry to say that this should seal the deal - Arnold is not, nor will he be, back.\nThe story of Trouble Every Day ... is so sketchy it amounts to little more than preliminary notes for a science-fiction horror film, and the movie's fragmentary narrative style makes piecing the story together frustrating difficult.\nA Movie to Forget\nFor all of its insights into the dream world of teen life, and its electronic expression through cyber culture, the film gives no quarter to anyone seeking to pull a cohesive story out of its 2 1/2-hour running time.\nEnough is not a bad movie, just mediocre. The performances are so overstated, the effect comes off as self-parody.\nIt looks good, but it is essentially empty.\nThe film never finds its tone and several scenes run too long.\nThe idea is more interesting than the screenplay, which lags badly in the middle and lurches between not-very-funny comedy, unconvincing dramatics and some last-minute action strongly reminiscent of Run Lola Run.\nVan Wilder has a built-in audience, but only among those who are drying out from spring break and are still unconcerned about what they ingest.\nIt's hard to believe that something so short could be so flabby.\nDo we really need another film that praises female self-sacrifice?\nThe major problem with Windtalkers is that the bulk of the movie centers on the wrong character.\nTennessee Williams by way of Oprah's Book Club.\nSo verbally flatfooted and so emotionally predictable or bland that it plays like the standard made-for-TV movie.\nThe entire point of a shaggy dog story, of course, is that it goes nowhere, and this is classic nowheresville in every sense.\nStale and clichéd to a fault.\nThis film is too busy hitting all of its assigned marks to take on any life of its own.\nWatching junk like this induces a kind of abstract guilt, as if you were paying dues for good books unread, fine music never heard.\nThe script feels as if it started to explore the obvious voyeuristic potential of 'hypertime' but then backed off when the producers saw the grosses for Spy Kids.\nStarts off witty and sophisticated and you want to love it -- but filmmaker Yvan Attal quickly writes himself into a corner.\nSome Like It Hot on the Hardwood proves once again that a man in drag is not in and of himself funny.\nUnfortunately, contrived plotting, stereotyped characters and Woo's over-the-top instincts as a director undermine the moral dilemma at the movie's heart.\nWitless and utterly pointless.\nWhen 'science fiction' takes advantage of the fact that its intended audience hasn't yet had much science, it does a disservice to the audience and to the genre.\nShow me the mugging.\nRepresents something very close to the nadir of the thriller/horror genre.\nVisually sumptuous but intellectually stultifying.\nAs a feature-length film, it wears out its welcome as tryingly as the title character.\nA guilty pleasure at best, and not worth seeing unless you want to laugh at it.\nA sleep-inducing thriller with a single twist that everyone except the characters in it can see coming a mile away.\nWith a ``Spy Kids'' sequel opening next week, why bother with a contemptible imitator starring a ``SNL'' has-been acting like an 8-year-old channeling Roberto Benigni?\nIt's just rather leaden and dull.\nLacks the visual flair and bouncing bravado that characterizes better hip-hop clips and is content to recycle images and characters that were already tired 10 years ago.\nStatham employs an accent that I think is supposed to be an attempt at hardass American but sometimes just lapses into unhidden British.\nInstead of trying to bust some blondes, (Diggs) should be probing why a guy with his talent ended up in a movie this bad.\nInitial strangeness inexorably gives way to rote sentimentality and mystical tenderness becomes narrative expedience.\nDe Ayala is required to supply too much of the energy in a film that is, overall, far too staid for its subject matter.\nDismally dull sci-fi comedy.\nThere's surely something wrong with a comedy where the only belly laughs come from the selection of outtakes tacked onto the end credits.\nWhen one hears Harry Shearer is going to make his debut as a film director, one would hope for the best\nThe leads we are given here are simply too bland to be interesting.\n(Toback's) fondness for fancy split-screen, stuttering editing and pompous references to Wittgenstein and Kirkegaard ... blends uneasily with the titillating material.\nAdam Sandler's 8 Crazy Nights is 75 wasted minutes of Sandler as the voice-over hero in Columbia Pictures' perverse idea of an animated holiday movie.\nessentially ``Fatal Attraction'' remade for viewers who were in diapers when the original was released in 1987. ...this story gets sillier, not scarier, as it goes along...\nEven a hardened voyeur would require the patience of Job to get through this interminable, shapeless documentary about the swinging subculture.\nThe film's hero is a bore and his innocence soon becomes a questionable kind of inexcusable dumb innocence.\nA singularly off-putting romantic comedy.\nThis is an exercise not in biography but in hero worship.\nIt all comes down to whether you can tolerate Leon Barlow. I can't.\nIn the spirit of the season, I assign one bright shining star to Roberto Benigni's Pinocchio -- but I guarantee that no wise men will be following after it.\nCheck your brain and your secret agent decoder ring at the door because you don't want to think too much about what's going on. The movie does has some entertainment value - how much depends on how well you like Chris Rock.\nA movie that seems motivated more by a desire to match mortarboards with Dead Poets Society and Good Will Hunting than by its own story.\nA culture clash comedy only half as clever as it thinks it is.\nThe logic of it all will be Greek to anyone not predisposed to the movie's rude and crude humor.\nAs self-aware movies go, Who is Cletis Tout? is clever enough, though thin writing proves its undoing.\nStarts out strongly before quickly losing its focus, point and purpose in a mess of mixed messages, over-blown drama and Bruce Willis with a scar.\n... a fascinating curiosity piece -- fascinating, that is, for about ten minutes. After that it becomes long and tedious like a classroom play in a college history course.\nDirector Jay Russell weighs down his capricious fairy-tale with heavy sentiment and lightweight meaning.\nThere are many things that solid acting can do for a movie, but crafting something promising from a mediocre screenplay is not one of them.\nIts screenplay serves as auto-critique, and its clumsiness as its own most damning censure.\nAt times, it actually hurts to watch.\nNemesis suffers from a paunchy midsection, several plodding action sequences and a wickedly undramatic central theme.\nThe jokes are telegraphed so far in advance they must have been lost in the mail.\n(Tries) to parody a genre that's already a joke in the United States. The movie is the equivalent of French hip-hop, which also seems to play on a 10-year delay.\nA beyond-lame satire, Teddy Bears' Picnic ranks among the most pitiful directing debuts by an esteemed writer-actor.\nI've never seen (a remake) do anything as stomach-turning as the way Adam Sandler's new movie rapes, pillages and incinerates Frank Capra's classic...\nHollywood's answer to an air ball.\nAnd people make fun of me for liking Showgirls.\nSuch a wildly uneven hit-and-miss enterprise, you can't help suspecting that it was improvised on a day-to-day basis during production.\nA weird little movie that's amusing enough while you watch it, offering fine acting moments and pungent insights into modern L.A.'s show-biz and media subcultures. But it doesn't leave you with much.\nI'm convinced I could keep a family of five blind, crippled, Amish people alive in this situation better than these British soldiers do at keeping themselves kicking.\nLike Mike is a slight and uninventive movie: Like the exalted Michael Jordan referred to in the title, many can aspire but none can equal.\nThere is nothing funny in this every-joke-has- been-told-a- thousand-times- before movie.\nAlways destined to be measured against Anthony Asquith's acclaimed 1952 screen adaptation.\nThis is standard crime drama fare... instantly forgettable and thoroughly dull.\nThere's some outrageously creative action in The Transporter ... (b)ut by the time Frank parachutes down onto a moving truck, it's just another cartoon with an unstoppable superman.\nOne of those based-on-truth stories that persuades you, with every scene, that it could never really have happened this way.\nFrom its nauseating spinning credits sequence to a very talented but underutilized supporting cast, Bartleby squanders as much as it gives out.\nYet another genre exercise, Gangster No. 1 is as generic as its title.\nDespite the holes in the story and the somewhat predictable plot, moments of the movie caused me to jump in my chair...\nThere's an admirable rigor to Jimmy's relentless anger, and to the script's refusal of a happy ending, but as those monologues stretch on and on, you realize there's no place for this story to go but down.\nOnce again, the intelligence of gay audiences has been grossly underestimated, and a meaty plot and well-developed characters have been sacrificed for skin and flash that barely fizzle.\nA lightweight, uneven action comedy that freely mingles French, Japanese and Hollywood cultures.\nSuch a fine idea for a film, and such a stultifying, lifeless execution.\n(Allen's) best works understand why snobbery is a better satiric target than middle-America diversions could ever be.\nThis overlong infomercial, due out on video before month's end, is tepid and tedious.\nAn ambitious, guilt-suffused melodrama crippled by poor casting.\nRarely has sex on screen been so aggressively anti-erotic.\nA dull, inconsistent, dishonest female bonding picture.\nSo much about the film is loopy and ludicrous ... that it could have been a hoot in a bad-movie way if the laborious pacing and endless exposition had been tightened.\nA disappointment for a movie that should have been the ultimate IMAX trip.\nDoes little to elaborate the conceit of setting this blood-soaked tragedy of murderous ambition in the era of Richard Nixon.\nThis Sade is hardly a perverse, dangerous libertine and agitator -- which would have made for better drama. He's just a sad aristocrat in tattered finery, and the film seems as deflated as he does.\nThe film's needlessly opaque intro takes its doe-eyed Crudup out of pre-9/11 New York and onto a cross-country road trip of the Homeric kind.\nIt's as if a bored Cage spent the duration of the film's shooting schedule waiting to scream: ``Got AIDS yet?''\nIn a strange way, Egoyan has done too much. He's worked too hard on this movie.\nThe film has the thrown-together feel of a summer-camp talent show: hastily written, underrehearsed, arbitrarily plotted and filled with crude humor and vulgar innuendo.\nThe last three narcissists left on earth compete for each others' affections.\nA clash between the artificial structure of the story and the more contemporary, naturalistic tone of the film ...\nThe movie's messages are quite admirable, but the story is just too clichéd and too often strains credulity.\nWhat we have here isn't a disaster, exactly, but a very handsomely produced let-down.\nThe script was reportedly rewritten a dozen times -- either 11 times too many or else too few.\nA shoddy male hip hop fantasy filled with guns, expensive cars, lots of naked women and Rocawear clothing.\nTo the filmmakers, Ivan is a prince of a fellow, but he comes across as shallow and glib though not mean-spirited, and there's no indication that he's been responsible for putting together any movies of particular value or merit.\nThis is a movie filled with unlikable, spiteful idiots; whether or not their friendship is salvaged makes no difference in the least.\nIt's as if Allen, at 66, has stopped challenging himself.\nScotland, PA is entirely too straight-faced to transcend its clever concept.\nA movie that the less charitable might describe as a castrated cross between Highlander and Lolita.\nNot only does LeBlanc make one spectacularly ugly-looking broad, but he appears miserable throughout as he swaggers through his scenes.\nThere's little to recommend Snow Dogs, unless one considers cliched dialogue and perverse escapism a source of high hilarity.\nIt's deep-sixed by a compulsion to catalog every bodily fluids gag in There's Something About Mary and devise a parallel clone-gag.\nThe film rehashes several old themes and is capped with pointless extremes -- it's insanely violent and very graphic.\nSorority Boys, which is as bad at it is cruel, takes every potential laugh and stiletto-stomps the life out of it.\nHere the love scenes all end in someone screaming. Maybe there's a metaphor here, but figuring it out wouldn't make Trouble Every Day any better.\nThis is the first film I've ever seen that had no obvious directing involved.\nFans of so-bad-they're-good cinema may find some fun in this jumbled mess.\nWeiss and Speck never make a convincing case for the relevance of these two 20th-century footnotes.\nSheridan is painfully bad, a fourth-rate Jim Carrey who doesn't understand the difference between dumb fun and just plain dumb.\nPresents nothing special and, until the final act, nothing overtly disagreeable.\nThe most excruciating 86 minutes one might sit through this summer that do not involve a dentist drill.\nWas that movie nothing more than a tepid exercise in trotting out a formula that worked five years ago but has since lost its fizz?\nIt goes on for too long and bogs down in a surfeit of characters and unnecessary subplots.\nIt's absolutely amazing how first-time director Kevin Donovan managed to find something new to add to the canon of Chan. Make Chan's action sequences boring.\nYou ... get a sense of good intentions derailed by a failure to seek and strike just the right tone.\n'In this poor remake of such a well loved classic, Parker exposes the limitations of his skill and the basic flaws in his vision.'\nIt's the movie equivalent of a sweaty old guy in a rain coat shopping for cheap porn.\nThe film's final hour, where nearly all the previous unseen material resides, is unconvincing soap opera that Tornatore was right to cut.\nThe movie does such an excellent job of critiquing itself at every faltering half-step of its development that criticizing feels more like commiserating.\nI found it slow, predictable and not very amusing.\nDirector Yu seems far more interested in gross-out humor than in showing us well-thought stunts or a car chase that we haven't seen 10,000 times.\nViewers will need all the luck they can muster just figuring out who's who in this pretentious mess.\nA pint-sized 'Goodfellas' designed to appeal to the younger set, it's not a very good movie in any objective sense, but it does mostly hold one's interest.\nGet out your pooper-scoopers.\nWhile the material is slight, the movie is better than you might think.\nIt's definitely not made for kids or their parents, for that matter, and I think even fans of Sandler's comic taste may find it uninteresting.\nSheridan seems terrified of the book's irreverent energy, and scotches most of its élan, humor, bile, and irony.\nMore busy than exciting, more frantic than involving, more chaotic than entertaining.\nThere are more shots of children smiling for the camera than typical documentary footage which hurts the overall impact of the film. It's makes a better travelogue than movie.\nIt's as if Solondz had two ideas for two movies, couldn't really figure out how to flesh either out, so he just slopped `em together here.\nThe fourth in a series that I'll bet most parents had thought --hoped! -- was a fad that had long since vanished.\nIt's a long way from Orwell's dark, intelligent warning cry (1984) to the empty stud knockabout of Equilibrium, and what once was conviction is now affectation.\nIts premise is smart, but the execution is pretty weary.\nThe holiday message of the 37-minute Santa vs. the Snowman leaves a lot to be desired.\nmore precious than perspicacious\nIf you saw it on TV, you'd probably turn it off, convinced that you had already seen that movie.\n(T)he script isn't up to the level of the direction, nor are the uneven performances by the cast members, who seem bound and determined to duplicate Bela Lugosi's now-cliched vampire accent.\nIf this is cinema, I pledge allegiance to Cagney and Lacey.\nEnigma looks great, has solid acting and a neat premise. Yet why it fails is a riddle wrapped in a mystery inside an enigma.\nMost of the characters come off as pantomimesque sterotypes.\nStarts promisingly but disintegrates into a dreary, humorless soap opera.\nWhile there's likely very little crossover appeal to those without much interest in the Elizabethans (as well as rank frustration from those in the know about Rubbo's dumbed-down tactics), Much Ado About Something is an amicable endeavor.\nIt's actually too sincere -- the crime movie equivalent of a chick flick.\nMost of the film feels conceived and shot on the fly -- like between lunch breaks for Shearer's radio show and his Simpson voice-overs.\nPerry's good and his is an interesting character, but ``Serving Sara'' hasn't much more to serve than silly fluff. Nor is it a romantic comedy.\nCulkin turns his character into what is basically an anti-Harry Potter -- right down to the Gryffindor scarf.\nMemorable for a peculiar malaise that renders its tension flaccid and, by extension, its surprises limp and its resolutions ritual.\nIt's a documentary that says that the alternate sexuality meant to set you free may require so much relationship maintenance that celibacy can start looking good.\nIn the not-too-distant future, movies like Ghost Ship will be used as analgesic balm for overstimulated minds. Right now, they're merely signposts marking the slow, lingering death of imagination.\nThe movie's biggest shocks come from seeing former nymphette Juliette Lewis playing a salt-of-the-earth mommy named Minnie and watching Slim travel incognito in a ridiculous wig no respectable Halloween costume shop would ever try to sell.\nLike most movies about the pitfalls of bad behavior ... Circuit gets drawn into the party.\nIt appears as if even the filmmakers didn't know what kind of movie they were making.\nBeneath the uncanny, inevitable and seemingly shrewd facade of movie-biz farce...lies a plot cobbled together from largely flat and uncreative moments.\nSnipes relies too much on a scorchingly plotted dramatic scenario for its own good.\nPiccoli's performance is amazing, yes, but the symbols of loss and denial and life-at-arm's-length in the film seem irritatingly transparent.\nStarts out mediocre, spirals downward, and thuds to the bottom of the pool with an utterly incompetent conclusion.\nNicolas Cage isn't the first actor to lead a group of talented friends astray, and this movie won't create a ruffle in what is already an erratic career.\nIt lacks the compassion, good-natured humor and the level of insight that made (Eyre's) first film something of a sleeper success.\nThe result is good gossip, entertainingly delivered, yet with a distinctly musty odour, its expiry date long gone.\nA sustained fest of self-congratulation between actor and director that leaves scant place for the viewer.\nAll Analyze That proves is that there is really only one movie's worth of decent gags to be gleaned from the premise.\nGreen ruins every single scene he's in, and the film, while it's not completely wreaked, is seriously compromised by that.\nThere's not a comedic moment in this romantic comedy.\nThe story is predictable, the jokes are typical Sandler fare, and the romance with Ryder is puzzling.\nWallace directs with such patronising reverence, it turns the stomach.\nResurrection has the dubious distinction of being a really bad imitation of the really bad Blair Witch Project.\nPoor Ben Bratt couldn't find stardom if MapQuest emailed him point-to-point driving directions.\nPretend like your SAT scores are below 120 and you might not notice the flaws.\nUnlike Trey Parker, Sandler doesn't understand that the idea of exploiting molestation for laughs is funny, not actually exploiting it yourself.\nA fake street drama that keeps telling you things instead of showing them.\nAn empty, purposeless exercise.\nEarnest and tentative even when it aims to shock.\nHaneke's script (from Elfriede Jelinek's novel) is contrived, unmotivated, and psychologically unpersuasive, with an inconclusive ending.\nA sometimes incisive and sensitive portrait that is undercut by its awkward structure and a final veering toward melodrama.\nThose 24-and-unders looking for their own Caddyshack to adopt as a generational signpost may have to keep on looking.\nA distinctly mixed bag, the occasional bursts of sharp writing alternating with lots of sloppiness and the obligatory moments of sentimental ooze.\nWhat begins brightly gets bogged down over 140 minutes.\nUltimately, Jane learns her place as a girl, softens up and loses some of the intensity that made her an interesting character to begin with.\nAh-nuld's action hero days might be over.\nIt's clear why Deuces Wild, which was shot two years ago, has been gathering dust on MGM's shelf.\nFeels like nothing quite so much as a middle-aged moviemaker's attempt to surround himself with beautiful, half-naked women.\nWhen the precise nature of Matthew's predicament finally comes into sharp focus, the revelation fails to justify the build-up.\nThis picture is murder by numbers, and as easy to be bored by as your ABC's, despite a few whopping shootouts.\nHilarious musical comedy though stymied by accents thick as mud.\nIf you are into splatter movies, then you will probably have a reasonably good time with The Salton Sea.\nA dull, simple-minded and stereotypical tale of drugs, death and mind-numbing indifference on the inner-city streets.\nThe feature-length stretch ... strains the show's concept.\nThis slender plot feels especially thin stretched over the nearly 80-minute running time.\nA film that will probably please people already fascinated by Behan but leave everyone else yawning with admiration.\nDavis the performer is plenty fetching enough, but she needs to shake up the mix, and work in something that doesn't feel like a half-baked stand-up routine.\nThe densest distillation of Roberts' movies ever made.\nUltimately, the film never recovers from the clumsy cliché of the ugly American abroad, and the too-frosty exterior Ms. Paltrow employs to authenticate her British persona is another liability.\nA handsome but unfulfilling suspense drama more suited to a quiet evening on PBS than a night out at an AMC.\nTom Green and an Ivy League college should never appear together on a marquee, especially when the payoff is an unschooled comedy like Stealing Harvard, which fails to keep 80 minutes from seeming like 800.\n(It) highlights not so much the crime lord's messianic bent, but Spacey's.\nMaster of Disguise runs for only 71 minutes and feels like three hours.\nA reworking of Die Hard and Cliffhanger but it's nowhere near as exciting as either.\nSuffers from unlikable characters and a self-conscious sense of its own quirky hipness.\nA film without surprise geared toward maximum comfort and familiarity.\nFessenden continues to do interesting work, and it would be nice to see what he could make with a decent budget. But the problem with Wendigo, for all its effective moments, isn't really one of resources.\nSpirit is a visual treat, and it takes chances that are bold by studio standards, but it lacks a strong narrative.\nIt stars schticky Chris Rock and stolid Anthony Hopkins, who seem barely in the same movie. Their contrast is neither dramatic nor comic -- it's just a weird fizzle.\nThis is a children's film in the truest sense. It's packed with adventure and a worthwhile environmental message, so it's great for the kids. Parents, on the other hand, will be ahead of the plot at all times, and there isn't enough clever innuendo to fil\nThe niftiest trick perpetrated by The Importance of Being Earnest is the alchemical transmogrification of Wilde into Austen--and a Hollywood-ized Austen at that.\nTykwer's surface flash isn't just a poor fit with Kieslowski's lyrical pessimism; it completely contradicts everything Kieslowski's work aspired to, including the condition of art.\nIce Age is the first computer-generated feature cartoon to feel like other movies, and that makes for some glacial pacing early on.\nToo slick and manufactured to claim street credibility.\nCherry Orchard is badly edited, often awkwardly directed and suffers from the addition of a wholly unnecessary pre-credit sequence designed to give some of the characters a 'back story.'\nWhat ensues are much blood-splattering, mass drug-induced bowel evacuations, and none-too-funny commentary on the cultural distinctions between Americans and Brits.\nA dark comedy that goes for sick and demented humor simply to do so. The movie is without intent.\nVisually exciting sci-fi film which suffers from a lackluster screenplay.\nWhile Hollywood Ending has its share of belly laughs (including a knockout of a closing line), the movie winds up feeling like a great missed opportunity.\nIf The Full Monty was a freshman fluke, Lucky Break is (Cattaneo) sophomore slump.\nSandra Bullock and Hugh Grant make a great team, but this predictable romantic comedy should get a pink slip.\nAllegiance to Chekhov, which director Michael Cacoyannis displays with somber earnestness in the new adaptation of The Cherry Orchard, is a particularly vexing handicap.\nYou expect more from director Michael Apted (Enigma) and screenwriter Nicholas Kazan (Reversal of Fortune) than this cliche pileup.\nThe first mistake, I suspect, is casting Shatner as a legendary professor and Kunis as a brilliant college student--where's Pauly Shore as the rocket scientist?\nThe dramatic scenes are frequently unintentionally funny, and the action sequences -- clearly the main event -- are surprisingly uninvolving.\nReplacing John Carpenter's stylish tracking shots is degraded, handheld Blair Witch video-cam footage. Of all the Halloween's, this is the most visually unappealing.\nIt has the requisite faux-urban vibe and hotter-two-years-ago rap and R&B names and references.\nDespite its dry wit and compassion, the film suffers from a philosophical emptiness and maddeningly sedate pacing.\n...feels as if (there's) a choke leash around your neck so director Nick Cassavetes can give it a good, hard yank whenever he wants you to feel something.\nAttal pushes too hard to make this a comedy or serious drama. He seems to want both, but succeeds in making neither.\nI could have used my two hours better watching Being John Malkovich again.\nIt's not a bad plot; but, unfortunately, the movie is nowhere near as refined as all the classic dramas it borrows from.\nGirlfriends are bad, wives are worse and babies are the kiss of death in this bitter Italian comedy.\nThe only young people who possibly will enjoy it are infants... who might be distracted by the movie's quick movements and sounds.\nThe film boasts at least a few good ideas and features some decent performances, but the result is disappointing.\nNo Such Thing breaks no new ground and treads old turf like a hippopotamus ballerina.\nUnfortunately, neither Sendak nor the directors are particularly engaging or articulate.\nA wishy-washy melodramatic movie that shows us plenty of sturm und drung, but explains its characters' decisions only unsatisfactorily.\nBang! Zoom! It's actually pretty funny, but in all the wrong places.\nLurid and less than lucid work.\nA wannabe comedy of manners about a brainy prep-school kid with a Mrs. Robinson complex founders on its own preciousness -- and squanders its beautiful women.\nAt a brief 42 minutes, we need more X and less blab.\nIf anything, see it for Karen Black, who camps up a storm as a fringe feminist conspiracy theorist named Dirty Dick.\nThis 90-minute dud could pass for Mike Tyson's E! True Hollywood Story.\nThis is surely one of the most frantic, virulent and foul-natured Christmas season pics ever delivered by a Hollywood studio.\nOnce the expectation of laughter has been quashed by whatever obscenity is at hand, even the funniest idea isn't funny.\nA porn film without the sex scenes.\nThe connected stories of Breitbart and Hanussen are actually fascinating, but the filmmaking in Invincible is such that the movie does not do them justice.\nA depressingly retrograde, 'post-feminist' romantic comedy that takes an astonishingly condescending attitude toward women.\nReturn to Never Land is much more P.C. than the original version (no more racist portraits of Indians, for instance), but the excitement is missing.\nBy the end, you just don't care whether that cold-hearted snake Petrovich (that would be Reno) gets his comeuppance. Just bring on the Battle Bots, please!\nWhile it's all quite tasteful to look at, the attention process tends to do a little fleeing of its own.\nBroder's screenplay is shallow, offensive and redundant, with pitifully few real laughs.\nYes they can swim, the title is merely Anne-Sophie Birot's off-handed way of saying girls find adolescence difficult to wade through.\nDon Michael Paul uses quick-cuts, (very) large shadows and wide-angle shots taken from a distance to hide the liberal use of a body double (for Seagal).\nSlow, silly and unintentionally hilarious.\nThe Sweetest Thing leaves a bitter taste.\nIn a big corner office in Hell, Satan is throwing up his hands in surrender, is firing his R&D people, and has decided he will just screen The Master of Disguise 24/7.\nFor something as splendid-looking as this particular film, the viewer expects something special but instead gets (sci-fi) rehash.\nA thriller without a lot of thrills.\nThis stuck pig of a movie flails limply between bizarre comedy and pallid horror.\nAh, the travails of metropolitan life! Alas, another breathless movie about same!\nIn Moonlight Mile, no one gets shut out of the hug cycle.\nThough uniformly well acted, especially by young Ballesta and Galan (a first-time actor), writer/director Achero Manas's film is schematic and obvious.\nDone in mostly by a weak script that can't support the epic treatment.\nDespite its visual virtuosity, 'Naqoyqatsi' is banal in its message and the choice of material to convey it.\nSlap her - she's not funny! No French people were harmed during the making of this movie, but they were insulted and the audience was put through torture for an hour and a half.\nThough its rather routine script is loaded with familiar situations, the movie has a cinematic fluidity and sense of intelligence that makes it work more than it probably should.\n``One look at a girl in tight pants and big tits and you turn stupid?'' Um.....isn't that the basis for the entire plot?\n``Not really as bad as you might think!''\nStrident and inelegant in its 'message-movie' posturing.\nOne regards Reign of Fire with awe. What a vast enterprise has been marshaled in the service of such a minute idea.\nIt has the right approach and the right opening premise, but it lacks the zest and it goes for a plot twist instead of trusting the material.\nIts impressive images of crematorium chimney fires and stacks of dead bodies are undermined by the movie's presentation, which is way too stagy.\nSeeing as the film lacks momentum and its position remains mostly undeterminable, the director's experiment is a successful one.\nThe plot is romantic comedy boilerplate from start to finish.\nI suspect this is the kind of production that would have been funnier if the director had released the outtakes theatrically and used the film as a bonus feature on the DVD.\nAn unfortunate title for a film that has nothing endearing about it.\nNinety minutes of Viva Castro! can be as tiresome as 9 seconds of Jesse Helms' anti- Castro rhetoric, which are included\nComes off as a long, laborious whine, the bellyaching of a paranoid and unlikable man.\nIt just goes to show, an intelligent person isn't necessarily an admirable storyteller.\nIn a 102-minute film, Aaliyah gets at most 20 minutes of screen time. ... most viewers will wish there had been more of the ``Queen'' and less of the ``Damned.''\nHopelessly inane, humorless and under-inspired.\nKapur fails to give his audience a single character worth rooting for (or worth rooting against, for that matter).\nIt reduces the complexities to bromides and slogans and it gets so preachy-keen and so tub-thumpingly loud it makes you feel like a chump just for sitting through it.\nNone of this has the suavity or classical familiarity of Bond, but much of it is good for a laugh. The problem with ``XXX'' is that its own action isn't very effective.\nA great script brought down by lousy direction. Same guy with both hats. Big mistake.\nA mediocre exercise in target demographics, unaware that it's the butt of its own joke.\nDirector Kevin Bray excels in breaking glass and marking off the ``Miami Vice'' checklist of power boats, Latin music and dog tracks. He doesn't, however, deliver nearly enough of the show's trademark style and flash.\nIn gleefully, thumpingly hyperbolic terms, it covers just about every cliche in the compendium about crass, jaded movie types and the phony baloney movie biz.\nThe Spalding Gray equivalent of a teen gross-out comedy.\nPerhaps even the SLC high command found writer-director Mitch Davis's wall of kitsch hard going.\nAccording to Wendigo, 'nature' loves the members of the upper class almost as much as they love themselves.\nAn encouraging effort from McCrudden\nThe romance between the leads isn't as compelling or as believable as it should be.\nIf I could have looked into my future and saw how bad this movie was, I would go back and choose to skip it. Fortunately, you still have that option.\nSupposedly authentic account of a historical event that's far too tragic to merit such superficial treatment.\nAdroit but finally a trifle flat, Mad Love doesn't galvanize its outrage the way, say, Jane Campion might have done, but at least it possesses some.\nTo Blandly Go Where We Went 8 Movies Ago ...\nA slow-moving police-procedural thriller that takes its title all too literally.\nThis u-boat doesn't have a captain.\nWith nary a glimmer of self-knowledge, (Crane) becomes more specimen than character -- and Auto Focus remains a chilly, clinical lab report.\nThis one aims for the toilet and scores a direct hit.\nDull, a road-trip movie that's surprisingly short of both adventure and song.\nI walked away not really know who ``they'' were, what ``they'' looked like. Why ``they'' were here and what ``they'' wanted and quite honestly, I didn't care.\nAfter several scenes of this tacky nonsense, you'll be wistful for the testosterone-charged wizardry of Jerry Bruckheimer productions, especially because Half Past Dead is like The Rock on a Wal-Mart budget.\nA relatively effective little potboiler until its absurd, contrived, overblown, and entirely implausible finale.\nThe Country Bears wastes an exceptionally good idea. But the movie that doesn't really deliver for country music fans or for family audiences\nAdults will certainly want to spend their time in the theater thinking up grocery lists and ways to tell their kids how not to act like Pinocchio. As for children, they won't enjoy the movie at all.\n...you can be forgiven for realizing that you've spent the past 20 minutes looking at your watch and waiting for Frida to just die already.\nToo bad writer-director Adam Rifkin situates it all in a plot as musty as one of the Golden Eagle's carpets.\nIt's lazy for a movie to avoid solving one problem by trying to distract us with the solution to another.\nThe movie is genial but never inspired, and little about it will stay with you.\nThe movie obviously seeks to re-create the excitement of such '50s flicks as Jules Verne's '20,000 Leagues Under the Sea' and the George Pal version of H.G. Wells' 'The Time Machine.' But its storytelling prowess and special effects are both listless.\nDespite the opulent lushness of every scene, the characters never seem to match the power of their surroundings.\neven after 90 minutes of playing opposite each other Bullock and Grant still look ill at ease sharing the same scene. What should have been a painless time-killer becomes instead a grating endurance test.\nA bland, obnoxious 88-minute infomercial for Universal Studios and its ancillary products.\n..little action, almost no suspense or believable tension, one-dimensional characters up the wazoo and sets that can only be described as sci-fi generic.\nThe movie strains to stay on the light, comic side of the issue, despite the difficulty of doing so when dealing with the destruction of property and, potentially, of life itself.\nThe Master of Disguise is awful. It's Pauly Shore awful. Don't say you weren't warned.\nDisappointing in comparison to other recent war movies...or any other John Woo flick for that matter.\nThe entire movie is filled with deja vu moments.\n'Opening up' the play more has partly closed it down.\nWhat (Frei) gives us ... is a man who uses the damage of war -- far more often than the warfare itself -- to create the kind of art shots that fill gallery shows.\nAn ugly, revolting movie.\nThe film is way too full of itself; it's stuffy and pretentious in a give-me-an-Oscar kind of way.\nThe movie is concocted and carried out by folks worthy of scorn, and the nicest thing I can say is that I can't remember a single name responsible for it.\nWatching ``Ending'' is too often like looking over the outdated clothes and plastic knickknacks at your neighbor's garage sale. You can't believe anyone would really buy this stuff.\nCertainly beautiful to look at, but its not very informative about its titular character and no more challenging than your average television biopic.\nIt desperately wants to be a wacky, screwball comedy, but the most screwy thing here is how so many talented people were convinced to waste their time.\nThe skills of a calculus major at M.I.T. are required to balance all the formulaic equations in the long-winded heist comedy Who Is Cletis Tout?\nFrom the choppy editing to the annoying score to 'special effects' by way of replacing objects in a character's hands below the camera line, ``Besotted'' is misbegotten\nMy advice is to skip the film and pick up the soundtrack.\nA film that presents an interesting, even sexy premise then ruins itself with too many contrivances and goofy situations.\nFilled with low-brow humor, gratuitous violence and a disturbing disregard for life.\ndirected in a flashy, empty sub-music video style by a director so self-possessed he actually adds a period to his first name\nThe 70-year-old Godard has become, to judge from In Praise of Love, the sort of bitter old crank who sits behind his light meter and harangues the supposed injustices of the artistic world-at-large without doing all that much to correct them.\nAn unsophisticated sci-fi drama that takes itself all too seriously.\nSolondz is without doubt an artist of uncompromising vision, but that vision is beginning to feel, if not morally bankrupt, at least terribly monotonous.\nHarvard Man is a semi-throwback, a reminiscence without nostalgia or sentimentality.\nSupposedly based upon real, or at least soberly reported incidents, the film ends with a large human tragedy. Alas, getting there is not even half the interest.\nWhile Hoffman's performance is great, the subject matter goes nowhere.\nThe smash 'em-up, crash 'em-up, shoot 'em-up ending comes out of nowhere substituting mayhem for suspense.\nDeuces Wild treads heavily into Romeo and Juliet/West Side Story territory, where it plainly has no business going.\nHart's War seems to want to be a character study, but apparently can't quite decide which character.\nTheological matters aside, the movie is so clumsily sentimental and ineptly directed it may leave you speaking in tongues.\nThis latest installment of the horror film franchise that is apparently as invulnerable as its trademark villain has arrived for an incongruous summer playoff, demonstrating yet again that the era of the intelligent, well-made B movie is long gone.\nNovak contemplates a heartland so overwhelmed by its lack of purpose that it seeks excitement in manufactured high drama.\nBeen there, done that, liked it much better the first time around - when it was called The Professional.\nThe film is all over the place, really. It dabbles all around, never gaining much momentum.\nThe beautiful, unusual music is this film's chief draw, but its dreaminess may lull you to sleep.\nThe action quickly sinks into by-the-numbers territory.\nForages for audience sympathy like a temperamental child begging for attention, giving audiences no reason to truly care for its decrepit freaks beyond the promise of a reprieve from their incessant whining.\nWhen (Reno) lets her radical flag fly, taking angry potshots at George W. Bush, Henry Kissinger, Larry King, et al., Reno devolves into a laugh-free lecture.\nSuch a premise is ripe for all manner of lunacy, but Kaufman and Gondry rarely seem sure of where it should go.\nBurns' fifth beer-soaked film feels in almost every possible way -- from the writing and direction to the soggy performances -- tossed off.\nWhile this one gets off with a good natured warning, future Lizard endeavors will need to adhere more closely to the laws of laughter\nAnother boorish movie from the I-heard-a-joke- at-a-frat-party school of screenwriting.\nToo much of the movie feels contrived, as if the filmmakers were worried the story wouldn't work without all those gimmicks.\nIt's hard to understand why anyone in his right mind would even think to make the attraction a movie. And it's harder still to believe that anyone in his right mind would want to see the it.\nThe ethos of the Chelsea Hotel may shape Hawke's artistic aspirations, but he hasn't yet coordinated his own DV poetry with the Beat he hears in his soul.\nThe sight of the name Bruce Willis brings to mind images of a violent battlefield action picture, but the film has a lot more on its mind--maybe too much.\nWhy sit through a crummy, wannabe-hip crime comedy that refers incessantly to old movies, when you could just rent those movies instead, let alone seek out a respectable new one?\nThe obnoxious special effects, the obligatory outbursts of flatulence and the incessant, so-five-minutes-ago pop music on the soundtrack overwhelm what is left of the scruffy, dopey old Hanna-Barbera charm.\nExploring value choices is a worthwhile topic for a film -- but here the choices are as contrived and artificial as Kerrigan's platinum-blonde hair.\nThe movie's downfall is to substitute plot for personality. It doesn't really know or care about the characters, and uses them as markers for a series of preordained events.\nAll mood and no movie.\nPress the delete key.\nSimone is not a bad film. It just doesn't have anything really interesting to say.\nOnce he starts learning to compromise with reality enough to become comparatively sane and healthy, the film becomes predictably conventional.\n...hopefully it'll be at the dollar theatres by the time Christmas rolls around. Wait to see it then.\nThere's no disguising this as one of the worst films of the summer. Or for the year, for that matter.\nLacks the spirit of the previous two, and makes all those jokes about hos and even more unmentionable subjects seem like mere splashing around in the muck.\nThis hastily mounted production exists only to capitalize on Hopkins' inclination to play Hannibal Lecter again, even though Harris has no immediate inclination to provide a fourth book.\nDeath to Smoochy tells a moldy-oldie, not-nearly -as-nasty -as-it- thinks-it-is joke. Over and over again.\nThe threat implied in the title Pokémon 4ever is terrifying – like locusts in a horde these things will keep coming.\nThe film never gets over its own investment in conventional arrangements, in terms of love, age, gender, race, and class.\nTo call this film a lump of coal would only be to flatter it.\nEntertainment more disposable than Hanna-Barbera's half-hour cartoons ever were.\nThe film falls short on tension, eloquence, spiritual challenge -- things that have made the original New Testament stories so compelling for 20 centuries.\nBy the end of it all I sort of loved the people onscreen, even though I could not stand them. Perhaps the film should be seen as a conversation starter. It's not an easy one to review.\nAt best this is a film for the under-7 crowd. But it would be better to wait for the video. And a very rainy day.\nThe whole talking-animal thing is grisly.\nNever Again, while nothing special, is pleasant, diverting and modest -- definitely a step in the right direction.\nWouldn't it be funny if a bunch of Allied soldiers went undercover as women in a German factory during World War II? Um, no. But here's a movie about it anyway.\nHas not so much been written as assembled, Frankenstein-like, out of other, marginally better shoot-em-ups.\nThe punch lines that miss, unfortunately, outnumber the hits by three-to-one. But Death to Smoochy keeps firing until the bitter end.\nMushes the college-friends genre (The Big Chill) together with the contrivances and overwrought emotion of soap operas.\nShowtime's starry cast could be both an asset and a detriment. Those who trek to the 'plex predisposed to like it probably will enjoy themselves. But ticket-buyers with great expectations will wind up as glum as Mr. De Niro.\nA determined, ennui-hobbled slog that really doesn't have much to say beyond the news flash that loneliness can make people act weird.\nToo daft by half ... but supremely good natured.\nFails in making this character understandable, in getting under her skin, in exploring motivation...Well before the end, the film grows as dull as its characters, about whose fate it is hard to care.\nIt's a shame that the storyline and its underlying themes ... finally seem so impersonal or even shallow.\nWoody, what happened?\nJuliette Binoche's Sand is vivacious, but it's hard to sense that powerhouse of 19th-century prose behind her childlike smile.\nIt's supposed to be post-feminist breezy but ends up as tedious as the chatter of parrots raised on Oprah.\nYou can tell almost immediately that Welcome to Collinwood isn't going to jell.\nThroughout all the tumult, a question comes to mind: So why is this so boring?\nCattaneo reworks the formula that made The Full Monty a smashing success ... but neglects to add the magic that made it all work.\nRoutine and rather silly.\nA rip-off twice removed, modeled after (Seagal's) earlier copycat Under Siege, sometimes referred to as Die Hard on a boat.\nTotally overwrought, deeply biased, and wholly designed to make you feel guilty about ignoring what the filmmakers clearly believe are The Greatest Musicians of All Time.\nYou can practically hear George Orwell turning over.\nBehan's memoir is great material for a film -- rowdy, brawny and lyrical in the best Irish sense -- but Sheridan has settled for a lugubrious romance.\nWhile Holm is terrific as both men and Hjejle quite appealing, the film fails to make the most out of the intriguing premise.\nLazy filmmaking, with the director taking a hands-off approach when he should have shaped the story to show us why it's compelling.\nIf it were any more of a turkey, it would gobble in Dolby Digital stereo. If nothing else, ``Rollerball'' 2002 may go down in cinema history as the only movie ever in which the rest of the cast was outshined by LL Cool J.\nA movie that falls victim to frazzled wackiness and frayed satire.\nHow do you make a movie with depth about a man who lacked any? On the evidence before us, the answer is clear: Not easily and, in the end, not well enough.\nThe film's trailer also looked like crap, so crap is what I was expecting.\nMore trifle than triumph.\nThe movie is almost completely lacking in suspense, surprise and consistent emotional conviction.\nFesters in just such a dungpile that you'd swear you were watching monkeys flinging their feces at you.\nLyne's latest, the erotic thriller Unfaithful, further demonstrates just how far his storytelling skills have eroded.\nIt sounds like another clever if pointless excursion into the abyss, and that's more or less how it plays out.\nRumor, a muddled drama about coming to terms with death, feels impersonal, almost generic.\nReport card: Doesn't live up to the exalted tagline - there's definite room for improvement. Doesn't deserve a passing grade (even on a curve).\nThe pacing is deadly, the narration helps little and Naipaul, a juicy writer, is negated.\nAs his circle of friends keeps getting smaller one of the characters in Long Time Dead says 'I'm telling you, this is f***ed'. Maybe he was reading the minds of the audience.\n...if it had been only half-an-hour long or a TV special, the humor would have been fast and furious-- at ninety minutes, it drags.\nBean drops the ball too many times... hoping the nifty premise will create enough interest to make up for an unfocused screenplay.\nA well-acted, but one-note film.\nBlood Work is laughable in the solemnity with which it tries to pump life into overworked elements from Eastwood's Dirty Harry period.\nThe movie is too amateurishly square to make the most of its own ironic implications.\n(Lee) treats his audience the same way that Jim Brown treats his women -- as dumb, credulous, unassuming, subordinate subjects. And Lee seems just as expectant of an adoring, wide-smiling reception.\nThere's not one decent performance from the cast and not one clever line of dialogue.\nNo amount of burning, blasting, stabbing, and shooting can hide a weak script.\nIt's an odd show, pregnant with moods, stillborn except as a harsh conceptual exercise.\nNearly all the fundamentals you take for granted in most films are mishandled here.\nThe Armenian genocide deserves a more engaged and honest treatment.\nEarnest yet curiously tepid and choppy recycling in which predictability is the only winner.\nUltimately this is a frustrating patchwork: an uneasy marriage of Louis Begley's source novel (About Schmidt) and an old Payne screenplay.\nThe exploitative, clumsily staged violence overshadows everything, including most of the actors.\nWe started to wonder if ... some unpaid intern had just typed 'Chris Rock,' 'Anthony Hopkins' and 'terrorists' into some Univac-like script machine.\nEven when Crush departs from the 4W formula ... it feels like a glossy rehash.\nMore likely to have you scratching your head than hiding under your seat.\nBears is even worse than I imagined a movie ever could be.\nWhen you find yourself rooting for the monsters in a horror movie, you know the picture is in trouble.\nThis is very much of a mixed bag, with enough negatives to outweigh the positives.\nMarinated in clichés and mawkish dialogue.\nWhether it's the worst movie of 2002, I can't say for sure: Memories of Rollerball have faded, and I skipped Country Bears. But this new jangle of noise, mayhem and stupidity must be a serious contender for the title.\n(A) boldly stroked, luridly coloured, uni-dimensional nonsense machine that strokes the eyeballs while it evaporates like so much crypt mist in the brain.\nNot once in the rush to save the day did I become very involved in the proceedings; to me, it was just a matter of 'eh.'\nRollerball IS as bad as you think, and worse than you can imagine.\nThe first question to ask about Bad Company is why Anthony Hopkins is in it. We assume he had a bad run in the market or a costly divorce, because there is no earthly reason other than money why this distinguished actor would stoop so low.\nNot exaggerated enough to be a parody of gross-out flicks, college flicks, or even flicks in general. It merely indulges in the worst elements of all of them.\nShame on writer/director Vicente Aranda for making a florid biopic about mad queens, obsessive relationships, and rampant adultery so dull.\nSuffers from a decided lack of creative storytelling.\nViolent, vulgar and forgettably entertaining.\nNothing happens, and it happens to flat characters.\nWith a completely predictable plot, you'll swear that you've seen it all before, even if you've never come within a mile of The Longest Yard.\nRemember back when thrillers actually thrilled? When the twist endings were actually surprising? When the violence actually shocked? When the heroes were actually under 40? Sadly, as Blood Work proves, that was a long, long time ago.\nBlue Crush has all the trappings of an energetic, extreme-sports adventure, but ends up more of a creaky ``Pretty Woman'' retread, with the emphasis on self-empowering schmaltz and big-wave surfing that gives pic its title an afterthought.\nThis movie plays like an extended dialogue exercise in Retard 101.\nWhat we get in FearDotCom is more like something from a bad Clive Barker movie. In other words, it's badder than bad.\nIf they broke out into elaborate choreography, singing and finger snapping it might have held my attention, but as it stands I kept looking for the last exit from Brooklyn.\nA sloppy slapstick throwback to long gone bottom-of-the-bill fare like The Ghost and Mr. Chicken.\nA small independent film suffering from a severe case of Hollywood-itis.\nWhere the film falters is in its tone.\nThe story alone could force you to scratch a hole in your head.\nUltimately, Sarah's dedication to finding her husband seems more psychotic than romantic, and nothing in the movie makes a convincing case that one woman's broken heart outweighs all the loss we witness.\nIt's supposed to be a humorous, all-too-human look at how hope can breed a certain kind of madness -- and strength -- but it never quite adds up.\nFeels more like a rejected X-Files episode than a credible account of a puzzling real-life happening.\nSome motion pictures portray ultimate passion; others create ultimate thrills. Men in Black II achieves ultimate insignificance -- it's the sci-fi comedy spectacle as Whiffle-Ball epic.\nAn enigmatic film that's too clever for its own good, it's a conundrum not worth solving.\nA zombie movie in every sense of the word--mindless, lifeless, meandering, loud, painful, obnoxious.\nA film that clearly means to preach exclusively to the converted.\nIt doesn't take a rocket scientist to figure out that this is a Mormon family movie, and a sappy, preachy one at that.\nDefinitely a crowd-pleaser, but then, so was the Roman Colosseum.\nCertainly not a good movie, but it wasn't horrible either.\nAlthough it starts off so bad that you feel like running out screaming, it eventually works its way up to merely bad rather than painfully awful.\nThe result is so tame that even slightly wised-up kids would quickly change the channel.\nIt appears to have been modeled on the worst revenge-of-the-nerds clichés the filmmakers could dredge up.\nNothing but an episode of Smackdown! in period costume and with a bigger budget.\nIt takes you somewhere you're not likely to have seen before, but beneath the exotic surface (and exotic dancing) it's surprisingly old-fashioned.\nWhile the story is better-focused than the incomprehensible Anne Rice novel it's based upon, Queen Of The Damned is a pointless, meandering celebration of the goth-vampire, tortured woe-is-me lifestyle.\nIt should be interesting, it should be poignant, it turns out to be affected and boring.\nA good-looking but ultimately pointless political thriller with plenty of action and almost no substance.\nA tired, predictable, bordering on offensive, waste of time, money and celluloid.\nIf Hill isn't quite his generation's Don Siegel (or Robert Aldrich), it's because there's no discernible feeling beneath the chest hair; it's all bluster and cliché.\nStealing Harvard will dip into your wallet, swipe 90 minutes of your time, and offer you precisely this in recompense: A few early laughs scattered around a plot as thin as it is repetitious.\nThis is an insultingly inept and artificial examination of grief and its impacts upon the relationships of the survivors.\nDoes anyone much think the central story of Brendan Behan is that he was a bisexual sweetheart before he took to drink?\n`Martin Lawrence Live' is so self-pitying, I almost expected there to be a collection taken for the comedian at the end of the show.\nThe dialogue is cumbersome, the simpering soundtrack and editing more so.\nNever decides whether it wants to be a black comedy, drama, melodrama or some combination of the three.\nIt has become apparent that the franchise's best years are long past.\nDoes what should seem impossible: it makes serial killer Jeffrey Dahmer boring.\nDon't hate El Crimen del Padre Amaro because it's anti-Catholic. Hate it because it's lousy.\n... better described as a ghost story gone badly awry.\nLike a bad improvisation exercise, the superficially written characters ramble on tediously about their lives, loves and the art they're struggling to create.\nThe filmmakers are playing to the Big Boys in New York and L.A. To that end, they mock the kind of folks they don't understand, ones they figure the power-lunchers don't care to understand, either.\nCompetently directed but terminally cute drama.\nThe big finish is a bit like getting all excited about a chocolate eclair and then biting into it and finding the filling missing.\nNot just unlikable. Disturbing. Disgusting. Without any redeeming value whatsoever.\nThis thing is virtually unwatchable.\nThose eternally devoted to the insanity of Black will have an intermittently good time. Feel free to go get popcorn whenever he's not onscreen.\nThe self-serious Equilibrium makes its point too well; a movie, like life, isn't much fun without the highs and lows.\nThe work of an exhausted, desiccated talent who can't get out of his own way.\nThe main characters are simply named The Husband, The Wife and The Kidnapper, emphasizing the disappointingly generic nature of the entire effort.\nIn terms of execution this movie is careless and unfocused.\nSwims in mediocrity, sticking its head up for a breath of fresh air now and then.\nThe only type of lives this glossy comedy-drama resembles are ones in formulaic mainstream movies.\nThe characters ... are paper-thin, and their personalities undergo radical changes when it suits the script.\nA Sha-Na-Na sketch punctuated with graphic violence.\nThe trouble is, its filmmakers run out of clever ideas and visual gags about halfway through.\nSpy-vs.-spy action flick with Antonio Banderas and Lucy Liu never comes together.\nA so-so, made-for-TV something posing as a real movie.\nThe only upside to all of this unpleasantness is, given its Labor Day weekend upload, FearDotCom should log a minimal number of hits.\nWhether this is art imitating life or life imitating art, it's an unhappy situation all around.\nAn uneasy mix of run-of-the-mill raunchy humor and seemingly sincere personal reflection.\nA formula family tearjerker told with a heavy Irish brogue...accentuating, rather than muting, the plot's saccharine thrust.\nThis is Sandler running on empty, repeating what he's already done way too often.\nThis is as lax and limp a comedy as I've seen in a while, a meander through worn-out material.\nTime literally stops on a dime in the tries-so-hard-to-be-cool ``Clockstoppers,'' but that doesn't mean it still won't feel like the longest 90 minutes of your movie-going life.\nThe sort of picture in which, whenever one of the characters has some serious soul searching to do, they go to a picture-perfect beach during sunset.\nAptly named, this shimmering, beautifully costumed and filmed production doesn't work for me.\nA preposterously melodramatic paean to gang-member teens in Brooklyn circa 1958.\nHas none of the crackle of ``Fatal Attraction'', ``9 ½ Weeks'', or even ``Indecent Proposal'', and feels more like Lyne's stolid remake of ``Lolita''.\nEverything its title implies, a standard-issue crime drama spat out from the Tinseltown assembly line.\nAn extraordinarily silly thriller.\nA rehash of every gangster movie from the past decade.\nGaping plot holes sink this 'sub'-standard thriller and drag audience enthusiasm to crush depth.\nTalkiness isn't necessarily bad, but the dialogue frequently misses the mark.\nThe beautiful images and solemn words cannot disguise the slack complacency of (Godard's) vision, any more than the gorgeous piano and strings on the soundtrack can drown out the tinny self-righteousness of his voice.\nThe stunt work is top-notch; the dialogue and drama often food-spittingly funny.\nThe movie isn't painfully bad, something to be 'fully experienced'; it's just tediously bad, something to be fully forgotten.\nCharly comes off as emotionally manipulative and sadly imitative of innumerable past Love Story derisions.\nWhat a great shame that such a talented director as Chen Kaige has chosen to make his English-language debut with a film so poorly plotted and scripted.\nNo amount of good intentions is able to overcome the triviality of the story.\nThe film ... presents classic moral-condundrum drama: What would you have done to survive? The problem with the film is whether these ambitions, laudable in themselves, justify a theatrical simulation of the death camp of Auschwitz II-Birkenau.\n... for all its social and political potential, State Property doesn't end up being very inspiring or insightful.\nA film really has to be exceptional to justify a three hour running time, and this isn't.\nLittle more than a stylish exercise in revisionism whose point ... is no doubt true, but serves as a rather thin moral to such a knowing fable.\nThe nonstop artifice ultimately proves tiresome, with the surface histrionics failing to compensate for the paper-thin characterizations and facile situations.\nThis is a monumental achievement in practically every facet of inept filmmaking: joyless, idiotic, annoying, heavy-handed, visually atrocious, and often downright creepy.\nThis off-putting French romantic comedy is sure to test severely the indulgence of fans of Amélie.\noverburdened with complicated plotting and banal dialogue\nEnsemble movies, like soap operas, depend on empathy. If there ain't none, you have a problem.\nThe Master of Disguise falls under the category of 'should have been a sketch on Saturday Night Live.'\nYet another self-consciously overwritten story about a rag-tag bunch of would-be characters that team up for a can't-miss heist -- only to have it all go wrong.\nKoepp's screenplay isn't nearly surprising or clever enough to sustain a reasonable degree of suspense on its own.\nIs it really an advantage to invest such subtlety and warmth in an animatronic bear when the humans are acting like puppets?\nMore successful at relating history than in creating an emotionally complex, dramatically satisfying heroine\nClumsy, obvious, preposterous, the movie will likely set the cause of woman warriors back decades.\nIt's hard to pity the 'plain' girl who becomes a ravishing waif after applying a smear of lip-gloss. Rather, pity anyone who sees this mishmash.\nA banal, virulently unpleasant excuse for a romantic comedy.\nThe drama discloses almost nothing.\nA minor-league soccer remake of The Longest Yard.\nBelongs in the too-hot-for-TV direct-to-video/DVD category, and this is why I have given it a one-star rating.\nAs earnest as a community-college advertisement, American Chai is enough to make you put away the guitar, sell the amp, and apply to medical school.\nA dim-witted and lazy spin-off of the Animal Planet documentary series, Crocodile Hunter is entertainment opportunism at its most glaring.\nThere is more than one joke about putting the toilet seat down. And that should tell you everything you need to know about All the Queen's Men.\nEven fans of Ismail Merchant's work, I suspect, would have a hard time sitting through this one.\nIt's really just another silly Hollywood action film, one among a multitude of simple-minded, yahoo-ing death shows.\nIt's not a particularly good film, but neither is it a monsterous one.\nThe world needs more filmmakers with passionate enthusiasms like Martin Scorsese. But it doesn't need Gangs of New York.\nEnchanted with low-life tragedy and liberally seasoned with emotional outbursts ... What is sorely missing, however, is the edge of wild, lunatic invention that we associate with Cage's best acting.\nHarry Potter and the Chamber of Secrets is deja vu all over again, and while that is a cliche, nothing could be more appropriate. It's likely that whatever you thought of the first production -- pro or con -- you'll likely think of this one.\nSade achieves the near-impossible: It turns the Marquis de Sade into a dullard.\n(Lin Chung's) voice is rather unexceptional, even irritating (at least to this Western ear), making it awfully hard to buy the impetus for the complicated love triangle that develops between the three central characters.\nOne of the most plain, unimaginative romantic comedies I've ever seen.\nThough there's a clarity of purpose and even-handedness to the film's direction, the drama feels rigged and sluggish.\nUnfortunately, the experience of actually watching the movie is less compelling than the circumstances of its making.\nUnless there are zoning ordinances to protect your community from the dullest science fiction, Impostor is opening today at a theater near you.\nIt should be doing a lot of things, but doesn't.\nChen films the resolutely downbeat Smokers Only with every indulgent, indie trick in the book.\n...a rather bland affair.\nFar-fetched premise, convoluted plot, and thematic mumbo jumbo about destiny and redemptive love.\nThe movie tries to be ethereal, but ends up seeming goofy.\nI was hoping that it would be sleazy and fun, but it was neither.\nHarris is supposed to be the star of the story, but comes across as pretty dull and wooden.\nSoulless and -- even more damning -- virtually joyless, XXX achieves near virtuosity in its crapulence.\nA boring masquerade ball where normally good actors, even Kingsley, are made to look bad.\nAll the Queen's Men is a throwback war movie that fails on so many levels, it should pay reparations to viewers.\nThe filmmakers keep pushing the jokes at the expense of character until things fall apart.\nRather than real figures, Elling and Kjell Bjarne become symbolic characters whose actions are supposed to relate something about the naïf's encounter with the world.\nMariah Carey gives us another peek at some of the magic we saw in Glitter here in Wisegirls.\nIt's all arty and jazzy and people sit and stare and turn away from one another instead of talking and it's all about the silences and if you're into that, have at it.\nI suspect that you'll be as bored watching Morvern Callar as the characters are in it. If you go, pack your knitting needles.\nThe lead actors share no chemistry or engaging charisma. We don't even like their characters.\nSome writer dude, I think his name was, uh, Michael Zaidan, was supposed to have like written the screenplay or something, but, dude, the only thing that I ever saw that was written down were the zeroes on my paycheck.\nThe movie doesn't generate a lot of energy. It is dark, brooding and slow, and takes its central idea way too seriously.\nThis feature is about as necessary as a hole in the head\nSpectators will indeed sit open-mouthed before the screen, not screaming but yawning.\nIt feels like very light Errol Morris, focusing on eccentricity but failing, ultimately, to make something bigger out of its scrapbook of oddballs.\nA period story about a Catholic boy who tries to help a Jewish friend get into heaven by sending the audience straight to hell.\nThe premise itself is just SOOOOO tired. Pair that with really poor comedic writing...and you've got a huge mess.\nProves a lovely trifle that, unfortunately, is a little too in love with its own cuteness.\nDid we really need a remake of ``Charade?''\nSome movies can get by without being funny simply by structuring the scenes as if they were jokes: a setup, delivery and payoff. Stealing Harvard can't even do that much. Each scene immediately succumbs to gravity and plummets to earth.\nThe only fun part of the movie is playing the obvious game. You try to guess the order in which the kids in the house will be gored.\nI spied with my little eye...a mediocre collection of cookie-cutter action scenes and occasionally inspired dialogue bits\nEntertains not so much because of its music or comic antics, but through the perverse pleasure of watching Disney scrape the bottom of its own cracker barrel.\nThe satire is just too easy to be genuinely satisfying.\nLess funny than it should be and less funny than it thinks it is.\nan ``O Bruin, Where Art Thou?''-style cross-country adventure... it has sporadic bursts of liveliness, some so-so slapstick and a few ear-pleasing songs on its soundtrack.\nA feeble Tootsie knockoff.\nAn awful movie that will only satisfy the most emotionally malleable of filmgoers.\n...the story is far-flung, illogical, and plain stupid.\nThe very simple story seems too simple and the working out of the plot almost arbitrary.\nAn allegory concerning the chronically mixed signals African American professionals get about overachieving could be intriguing, but the supernatural trappings only obscure the message.\nA very familiar tale, one that's been told by countless filmmakers about Italian-, Chinese-, Irish-, Latin-, Indian-, Russian- and other hyphenate American young men struggling to balance conflicting cultural messages.\nOne key problem with these ardently Christian storylines is that there is never any question of how things will turn out.\nEssentially, the film is weak on detail and strong on personality\nA relentless, bombastic and ultimately empty World War II action flick.\n(Hell is) looking down at your watch and realizing Serving Sara isn't even halfway through.\nToo long, and larded with exposition, this somber cop drama ultimately feels as flat as the scruffy sands of its titular community.\nLeaves viewers out in the cold and undermines some phenomenal performances.\n...a ho-hum affair, always watchable yet hardly memorable.\nSwiftly deteriorates into a terribly obvious melodrama and rough-hewn vanity project for lead actress Andie MacDowell.\nThe histrionic muse still eludes Madonna and, playing a charmless witch, she is merely a charmless witch.\nYou have no affinity for most of the characters. Nothing about them is attractive. What they see in each other also is difficult to fathom.\nDiaz, Applegate, Blair and Posey are suitably kooky which should appeal to women and they strip down often enough to keep men alert, if not amused.\nA technically well-made suspenser...but its abrupt drop in IQ points as it races to the finish line proves simply too discouraging to let slide.\nAn inept, tedious spoof of '70s kung fu pictures, it contains almost enough chuckles for a three-minute sketch, and no more.\nIt's a mystery how the movie could be released in this condition.\nAbsolutely (and unintentionally) terrifying.\nEckstraordinarily lame and Severely boring.\nEight Legged Freaks falls flat as a spoof.\nNo matter how much he runs around and acts like a doofus, accepting a 50-year-old in the role is creepy in a Michael Jackson sort of way.\nYou'll just have your head in your hands wondering why Lee's character didn't just go to a bank manager and save everyone the misery.\n'Dragonfly' dwells on crossing-over mumbo jumbo, manipulative sentimentality, and sappy dialogue.\nIn his determination to lighten the heavy subject matter, Silberling also, to a certain extent, trivializes the movie with too many nervous gags and pratfalls.\nBlade II has a brilliant director and charismatic star, but it suffers from rampant vampire devaluation.\nVeers uncomfortably close to pro-Serb propaganda.\nMovies like High Crimes flog the dead horse of surprise as if it were an obligation. How about surprising us by trying something new?\nFinal verdict: You've seen it all before.\nThrowing in everything except someone pulling the pin from a grenade with his teeth, Windtalkers seems to have ransacked every old World War II movie for overly familiar material.\nIf A Few Good Men told us that we ``can't handle the truth'' than High Crimes poetically states at one point in this movie that we ``don't care about the truth.''\nFurther sad evidence that Tom Tykwer, director of the resonant and sense-spinning Run Lola Run, has turned out to be a one-trick pony -- a maker of softheaded metaphysical claptrap.\nYou'll trudge out of the theater feeling as though you rode the Zipper after eating a corn dog and an extra-large cotton candy.\nThe movie is a little tired; maybe the original inspiration has run its course.\nThis will go on so long as there are moviegoers anxious to see strange young guys doing strange guy things.\nA full-frontal attack on audience patience.\nAny intellectual arguments being made about the nature of God are framed in a drama so clumsy, there is a real danger less sophisticated audiences will mistake it for an endorsement of the very things that Bean abhors.\nIt's a big idea, but the film itself is small and shriveled.\nDebut effort by ``Project Greenlight'' winner is sappy and amateurish.\nOne gets the impression the creators of Don't Ask Don't Tell laughed a hell of a lot at their own jokes. Too bad none of it is funny.\nThe cast has a high time, but de Broca has little enthusiasm for such antique pulp.\nThe film, like Jimmy's routines, could use a few good laughs.\nThe film has too many spots where it's on slippery footing, but is acceptable entertainment for the entire family and one that's especially fit for the kiddies.\nPurports to be a Hollywood satire but winds up as the kind of film that should be the target of something deeper and more engaging. Oh, and more entertaining, too.\n...in the pile of useless actioners from MTV schmucks who don't know how to tell a story for more than four minutes.\nThough it was made with careful attention to detail and is well-acted by James Spader and Maggie Gyllenhaal, I felt disrespected.\nHumor in I Spy is so anemic.\nThe film is strictly routine.\nSkillful as he is, Mr. Shyamalan is undone by his pretensions.\nWhile the new film is much more eye-catching than its blood-drenched Stephen Norrington-directed predecessor, the new script by the returning David S. Goyer is much sillier.\nIn addition to sporting one of the worst titles in recent cinematic history, Ballistic: Ecks Vs. Sever also features terrible, banal dialogue; convenient, hole-ridden plotting; superficial characters and a rather dull, unimaginative car chase.\nIt shares the first two films' loose-jointed structure, but laugh-out-loud bits are few and far between.\nThe Santa Clause 2 is a barely adequate babysitter for older kids, but I've got to give it thumbs down.\nYou cannot guess why the cast and crew didn't sign a pact to burn the negative and the script and pretend the whole thing never existed.\nBarney throws away the goodwill the first half of his movie generates by orchestrating a finale that is impenetrable and dull.\nIf you're really renting this you're not interested in discretion in your entertainment choices, you're interested in Anne Geddes, John Grisham, and Thomas Kincaid.\nWe get the comedy we settle for.\nThe uneven movie does have its charms and its funny moments but not quite enough of them.\nTwo hours of sepia-tinted heavy metal images and surround sound effects of people moaning.\nA word of advice to the makers of The Singles Ward: Celebrity cameos do not automatically equal laughs. And neither do cliches, no matter how 'inside' they are.\nThe campy results make Mel Brooks' Borscht Belt schtick look sophisticated.\nIts appeal will probably limited to LDS Church members and undemanding armchair tourists.\nThe Hanukkah spirit seems fried in pork.\nCherish would've worked a lot better had it been a short film.\nManipulative claptrap, a period-piece movie-of-the-week, plain old blarney... take your pick. All three descriptions suit Evelyn, a besotted and obvious drama that tells us nothing new.\nHey Arnold! is now stretched to barely feature length, with a little more attention paid to the animation. Still, the updated Dickensian sensibility of writer Craig Bartlett's story is appealing.\nTrue to its title, it traps audiences in a series of relentlessly nasty situations that we would pay a considerable ransom not to be looking at.\nDoesn't come close to justifying the hype that surrounded its debut at the Sundance Film Festival two years ago.\nThe plot is paper-thin and the characters aren't interesting enough to watch them go about their daily activities for two whole hours.\nKaufman's script is never especially clever and often is rather pretentious.\nThe film didn't move me one way or the other, but it was an honest effort and if you want to see a flick about telemarketers this one will due.\nQueen of the Damned is too long with too little going on.\nIt collapses when Mr. Taylor tries to shift the tone to a thriller's rush.\nAny film that doesn't even in passing mention political prisoners, poverty and the boat loads of people who try to escape the country is less a documentary and more propaganda by way of a valentine sealed with a kiss.\n... Blade II is still top-heavy with blazing guns, cheatfully filmed martial arts, disintegrating bloodsucker computer effects and jagged camera moves that serve no other purpose than to call attention to themselves.\nThe Rules of Attraction gets us too drunk on the party favors to sober us up with the transparent attempts at moralizing.\nThough there are many tense scenes in Trapped, they prove more distressing than suspenseful.\nIn this film we at least see a study in contrasts; the wide range of one actor, and the limited range of a comedian.\nFeels strangely hollow at its emotional core.\nYou have once again entered the bizarre realm where director Adrian Lyne holds sway, where all relationships are simultaneously broadly metaphorical, oddly abstract, and excruciatingly literal.\nThe high-concept scenario soon proves preposterous, the acting is robotically italicized, and truth-in-advertising hounds take note: There's very little hustling on view.\nThis director's cut -- which adds 51 minutes -- takes a great film and turns it into a mundane soap opera.\nCharacterisation has been sacrificed for the sake of spectacle.\nthe Venezuelans say things like ``si, pretty much'' and ``por favor, go home'' when talking to Americans. That's muy loco, but no more ridiculous than most of the rest of ``Dragonfly.''\nIt's a movie that ends with Truckzilla, for cryin' out loud. If that doesn't clue you in that something's horribly wrong, nothing will.\nDirector Tom Shadyac and star Kevin Costner glumly mishandle the story's promising premise of a physician who needs to heal himself.\nIt's difficult to imagine that a more confused, less interesting and more sloppily made film could possibly come down the road in 2002.\nLike the Tuck family themselves, this movie just goes on and on and on and on\nAs pedestrian as they come.\nA film that plays things so nice 'n safe as to often play like a milquetoast movie of the week blown up for the big screen.\nIt's a feel-bad ending for a depressing story that throws a bunch of hot-button items in the viewer's face and asks to be seen as hip, winking social commentary.\nPut it somewhere between Sling Blade and South of Heaven, West of Hell in the pantheon of Billy Bob's body of work.\nMore intellectually scary than dramatically involving.\nAn inconsequential, barely there bit of piffle.\nThe abiding impression, despite the mild hallucinogenic buzz, is of overwhelming waste -- the acres of haute couture can't quite conceal that there's nothing resembling a spine here.\nAs saccharine as it is disposable.\nYou come away thinking not only that Kate isn't very bright, but that she hasn't been worth caring about and that maybe she, Janine and Molly -- an all-woman dysfunctional family -- deserve one another.\nThe metaphors are provocative, but too often, the viewer is left puzzled by the mechanics of the delivery.\nVery much a home video, and so devoid of artifice and purpose that it appears not to have been edited at all.\nToo much power, not enough puff.\nThe attempt to build up a pressure cooker of horrified awe emerges from the simple fact that the movie has virtually nothing to show.\nIt's provocative stuff, but the speculative effort is hampered by Taylor's cartoonish performance and the film's ill-considered notion that Hitler's destiny was shaped by the most random of chances.\nA cellophane-pop remake of the punk classic Ladies and Gentlemen, The Fabulous Stains...Crossroads is never much worse than bland or better than inconsequential.\nMuddled, trashy and incompetent\nFor this sort of thing to work, we need agile performers, but the proficient, dull Sorvino has no light touch, and Rodan is out of his league.\nNarc is all menace and atmosphere.\nThough excessively tiresome, The Uncertainty Principle, as verbally pretentious as the title may be, has its handful of redeeming features, as long as you discount its ability to bore.\nDespite Juliet Stevenon's attempt to bring cohesion to Pamela's emotional roller coaster life, it is not enough to give the film the substance it so desperately needs.\nIt's tough to be startled when you're almost dozing.\nhis (Nelson's) screenplay needs some serious re-working to show more of the dilemma, rather than have his characters stage shouting matches about it.\nIt's so downbeat and nearly humorless that it becomes a chore to sit through -- despite some first-rate performances by its lead.\nA terrible movie that some people will nevertheless find moving.\nThere are many definitions of 'time waster' but this movie must surely be one of them.\nAs it stands, Crocodile Hunter has the hurried, badly cobbled look of the 1959 Godzilla, which combined scenes of a Japanese monster flick with canned shots of Raymond Burr commenting on the monster's path of destruction.\nThe thing looks like a made-for-home-video quickie.\nEnigma is well-made, but it's just too dry and too placid.\n``Sweet Home Alabama'' is what it is – a nice, harmless date film...\nOne of the best, most understated performances of (Jack Nicholson's) career.\nThe Dangerous Lives of Altar Boys' take on adolescence feels painfully true.\nIt's a masterpiece.\nIt may not be ``Last Tango in Paris'' but...\nThey crush each other under cars, throw each other out windows, electrocute and dismember their victims in full consciousness. And we don't avert our eyes for a moment.\nCharming and funny (but ultimately silly) movie.\nThird time's the charm...yeah, baby!\nA pleasant, if forgettable, romp of a film.\nBy the end of the movie, you're definitely convinced that these women are spectacular.\nBirot creates a drama with such a well-defined sense of place and age -- as in, 15 years old -- that the torments and angst become almost as operatic to us as they are to her characters.\n'Stock up on silver bullets for director Neil Marshall's intense freight train of a film.'\nThe film delivers what it promises: A look at the ``wild ride'' that ensues when brash young men set out to conquer the online world with laptops, cell phones and sketchy business plans.\nAs a film director, LaBute continues to improve.\nWill warm your heart without making you feel guilty about it.\nCatch it... if you can!\nWorse than 'Silence of the Lambs' better than 'Hannibal'\nAmerican and European cinema has amassed a vast Holocaust literature, but it is impossible to think of any film more challenging or depressing than The Grey Zone.\n'Possession,' based on the book by A.S. Byatt, demands that LaBute deal with the subject of love head-on; trading in his cynicism for reverence and a little wit\nIt's the kind of movie that, aside from Robert Altman, Spike Lee, the Coen Brothers and a few others, our moviemakers don't make often enough.\nAlternates between deadpan comedy and heartbreaking loneliness and isn't afraid to provoke introspection in both its characters and its audience.\nThe script is smart, not cloying.\nVisually, 'Santa Clause 2' is wondrously creative.\nA bittersweet contemporary comedy about benevolent deception, which, while it may not rival the filmmaker's period pieces, is still very much worth seeing.\nOne fantastic (and educational) documentary.\nAn ambitious 'what if?' that works.\n``The Dangerous Lives of Altar Boys'' has flaws, but it also has humor and heart and very talented young actors\nNice piece of work.\n'Stock up on silver bullets for director Neil Marshall's intense freight train of a film.'\nIt's funny, as the old saying goes, because it's true.\nThough the film is static, its writer-director's heart is in the right place, his plea for democracy and civic action laudable.\nThe filmmaker's heart is in the right place...\nFrom blushing to gushing---Imamura squirts the screen in `Warm Water Under a Red Bridge'\nApart from anything else, this is one of the best-sustained ideas I have ever seen on the screen.\nNot a schlocky creature feature but something far more stylish and cerebral--and, hence, more chillingly effective.\nStupid, infantile, redundant, sloppy, over-the-top, and amateurish. Yep, it's ``Waking up in Reno.'' Go back to sleep.\nI didn't laugh. I didn't smile. I survived.\nThe worst film of the year.\nIn the book-on-tape market, the film of ``The Kid Stays in the Picture'' would be an abridged edition\nA sour attempt at making a Farrelly Brothers-style, down-and-dirty laugher for the female set.\nEisenstein lacks considerable brio for a film about one of cinema's directorial giants.\nTaken as a whole, The Tuxedo doesn't add up to a whole lot.\nThis is no ``Waterboy!''\nSomething has been lost in the translation...another routine Hollywood frightfest in which the slack execution italicizes the absurdity of the premise.\nThe result is an 'action film' mired in stasis.\n...a movie that, quite simply, shouldn't have been made.\nBy turns pretentious, fascinating, ludicrous, provocative and vainglorious.\nI can't recommend it. But it's surprisingly harmless.\nWhat's next? The Porky's Revenge: Ultimate Edition?\nThe script is a dim-witted pairing of teen-speak and animal gibberish.\nThere's no real reason to see it, and no real reason not to.\nIs ``Ballistic'' worth the price of admission? Absolutely not. It sucked. Would I see it again? Please see previous answer.\nIt's exactly what you'd expect.\n``The Kid Stays in the Picture'' is a great story, terrifically told by the man who wrote it but this Cliff Notes edition is a cheat.\nA prison comedy that never really busts out of its comfy little cell.\nThe movie is obviously a labour of love so Howard appears to have had free rein to be as pretentious as he wanted.\nThis isn't a movie; it's a symptom.\nWhat we have is a character faced with the possibility that her life is meaningless, vapid and devoid of substance, in a movie that is definitely meaningless, vapid and devoid of substance.\nIf only it were, well, funnier.\nThe script? Please.\nDoesn't add up to much.\nOne of the worst movies of the year.\nA complete waste of time.\nLong before it's over, you'll be thinking of 51 ways to leave this loser.\nOne of the worst movies of the year. ... Watching it was painful.\nThe cinematic equivalent of patronizing a bar favored by pretentious, untalented artistes who enjoy moaning about their cruel fate.\nSpiderman ROCKS\nA compelling coming-of-age drama about the arduous journey of a sensitive young girl through a series of foster homes and a fierce struggle to pull free from her dangerous and domineering mother's hold over her.\nAn imaginative comedy/thriller.\nThoroughly enjoyable.\n(A) rare, beautiful film.\nFamily fare.\nBoisterous, heartfelt comedy.\n(An) hilarious romantic comedy.\nAn exhilarating experience.\nNever (sinks) into exploitation.\nCompellingly watchable.\nTroubling and powerful.\nOften hilarious.\nA modest masterpiece.\nNever once predictable.\nAn uplifting, near-masterpiece.\nWarm and exotic.\n...a true delight.\nA true pleasure.\nPolished, well-structured film.\nSexy and romantic.\nPsychologically savvy.\ndelightfully rendered\nFun and nimble.\nFunny and touching.\nSerious and thoughtful.\nIt strikes hardest... when it reminds you how pertinent its dynamics remain. Fifty years after the fact, the world's political situation seems little different, and (director Phillip) Noyce brings out the allegory with remarkable skill.\nOne-of-a-kind near-masterpiece.\nLightweight but appealing.\nHighly engaging.\nFeral and uncomfortable.\nA gripping drama.\nBeautifully produced.\nSmart and taut.\nHighly watchable stuff.\nPsychologically revealing.\nA fast paced and suspenseful Argentinian thriller about the shadow side of play.\n... wise and elegiac ...\nSpare yet audacious...\nSurprisingly insightful\nAn intoxicating experience.\nReassuring, retro uplifter.\nVisually captivating.\nLavishly, exhilaratingly tasteless.\nTouché!\nAn impressive hybrid.\nA tasty masala.\nRefreshing.\nFeatherweight romantic comedy has a few nice twists in a standard plot and the charisma of Hugh Grant and Sandra Bullock.\nPoignant and funny.\nSee it. Debate it. Remember it.\nMorvern rocks.\nIntelligent and moving.\nGenuinely unnerving.\nA compelling film.\nDeliciously slow.\nA riveting documentary.\nAn enjoyable experience.\nA good thriller.\nA glorious mess.\nNeatly constructed thriller.\nIntimate and panoramic.\nExciting documentary.\nGood, solid storytelling.\nInfidelity drama is nicely shot, well-edited and features a standout performance by Diane Lane.\nAudacious-impossible yet compelling...\nA muted freak-out\nMoving and vibrant.\n...quite endearing.\nHarmless fun.\nGood-naturedly cornball sequel.\nOddly compelling.\nWitless but watchable.\nMr. Deeds is sure to give you a lot of laughs in this simple, sweet and romantic comedy.\nHard to resist.\nA true-blue delight.\nA fun ride.\nWeird. Rewarding.\nSleek and arty.\nFantastic!\nA thought-provoking picture.\nA stylish thriller.\nAlmost peerlessly unsettling.\nDelirious fun.\nExciting and well-paced.\nReally quite funny.\nA well-executed spy-thriller.\nIdiotic and ugly.\nA funny film.\n(A) satisfying niblet.\nPoetic, heartbreaking.\nFormuliac, but fun.\nFeels untidily honest.\n``Red Dragon'' never cuts corners.\nFull of surprises.\nQuietly engaging.\nDense, exhilarating documentary.\na joyous occasion\n(An) absorbing documentary.\nA genuine mind-bender.\nGreat character interaction.\nIntriguing and stylish.\nMany insightful moments.\nEverything is off.\nEarnest but heavy-handed.\nOne lousy movie.\n...hypnotically dull.\nCalculated swill.\nThoroughly awful.\nTruly terrible.\nFluffy and disposible.\nBy-the-numbers yarn.\nAan opportunity wasted.\nStorytelling feels slight.\nBad company. Bad movie. Just plain bad.\n(A) soulless, stupid sequel ...\nA high-minded snoozer.\nExecrable.\nAmazingly dopey.\nBanal and predictable.\nCrikey indeed.\nBrisk hack job.\n...the maudlin way its story unfolds suggests a director fighting against the urge to sensationalize his material.\n...bibbidy-bobbidi-bland.\nObvious.\nIts one-sidedness ... flirts with propaganda.\n...a pretentious mess...\n(A) rather thinly-conceived movie.\nSo-so entertainment.\nPunitively affirmational parable.\nDecent but dull.\nThin period piece.\n(A) stuporously solemn film.\nWell-meant but unoriginal.\nOdd and weird.\nCinematic poo.\n...stale and uninspired.\nA dreary movie.\nPompous and garbled.\nUtter mush... conceited pap.\nWell-meaning but inert.\n...overly melodramatic...\nExtremely bad.\nShrewd but pointless.\nSluggish, tonally uneven.\nGeneric thriller junk. Teens only.\nA non-mystery mystery.\nWhat an embarrassment.\nA noble failure.\nWoefully pretentious.\n...irritating soul-searching garbage.\nA relative letdown.\nWarmed-over hash.\nA puzzling experience.\nStale, futile scenario.\nAggravating and tedious.\nLacks depth.\nunder-rehearsed and lifeless\nLaughably, irredeemably awful.\nUnwieldy contraption.\nOverwrought, melodramatic bodice-ripper.\nAn awful snooze.\nJust plain silly.\nFeeble comedy.\n...salaciously simplistic.\nShallow.\nA less-than-thrilling thriller.\nDisjointed parody.\n...silly humbuggery...\nEh.\nBlack-and-white and unrealistic.\nTwo-bit potboiler.\n(U)nrelentingly stupid.\nPainfully padded.\nAnemic, pretentious.\nGrating and tedious.\nIt bites hard.\n(A) mess.\nDramatically lackluster.\nStay away. Far away.\n...a pretentious mess...\nPredictably soulless techno-tripe.\nArty gay film.\nIncoherence reigns.\nA half-assed film.\nAbysmally pathetic\n...unbearably lame.\nBland but harmless.\nDense and enigmatic...elusive...stagy and stilted\n(L)ame and unnecessary.\nA dreary indulgence.\n(A) crushing disappointment.\nTends to plod.\nA major waste...generic.\n... a confusing drudgery.\nA well-crafted letdown.\nBoring and meandering.\nLess than fresh.\nA lame comedy.\nA reality-snubbing hodgepodge.\nMildly amusing.\nFairly run-of-the-mill.\nMildly entertaining.\nTerrible.\nDegenerates into hogwash.\nMeandering and confusing.\nCrummy.\nAn opportunity missed.\nWishy-washy.\nInconsequential road-and-buddy pic.\nInsufferably naive.\nIll-considered, unholy hokum.\nAmazingly lame.\n(A) slummer.\n(A) poorly executed comedy.\n...really horrible drek.\nAn intriguing near-miss.\nFlat, misguided comedy.\nPredictably melodramatic.\nRashomon-for-dipsticks tale.\nBearable. Barely.\nStaggeringly dreadful romance.\nWell-made but mush-hearted.\nA real snooze.\nNo surprises.\nWe’ve seen the hippie-turned-yuppie plot before, but there’s an enthusiastic charm in Fire that makes the formula fresh again.\nHer fans walked out muttering words like ``horrible'' and ``terrible,'' but had so much fun dissing the film that they didn't mind the ticket cost. In this case zero.\n"
  },
  {
    "path": "a2/utils/datasets/stanfordSentimentTreebank/sentiment_labels.txt",
    "content": "phrase ids|sentiment values\n0|0.5\n1|0.5\n2|0.44444\n3|0.5\n4|0.42708\n5|0.375\n6|0.41667\n7|0.54167\n8|0.33333\n9|0.45833\n10|0.47222\n11|0.59722\n12|0.33333\n13|0.93056\n14|0.80556\n15|0.81944\n16|0.76389\n17|0.5\n18|0.5\n19|0.69444\n20|0.5\n21|0.75\n22|0.29167\n23|0.31944\n24|0.73611\n25|0.77778\n26|0.59722\n27|0.58333\n28|0.68056\n29|0.48611\n30|0.52778\n31|0.23611\n32|0.29167\n33|0.56944\n34|0.375\n35|0.47222\n36|0.29167\n37|0.375\n38|0.30556\n39|0.52778\n40|0.18056\n41|0.61111\n42|0.59722\n43|0.72222\n44|0.33333\n45|0.52778\n46|0.40278\n47|0.22222\n48|0.31944\n49|0.29167\n50|0.66667\n51|0.61111\n52|0.43056\n53|0.77778\n54|0.40278\n55|0.55556\n56|0.55556\n57|0.76389\n58|0.18056\n59|0.43056\n60|0.36111\n61|0.47222\n62|0.33333\n63|0.31944\n64|0.5\n65|0.48611\n66|0.33333\n67|0.25\n68|0.30556\n69|0.5\n70|0.5\n71|0.69444\n72|0.52778\n73|0.66667\n74|0.5\n75|0.51389\n76|0.44444\n77|0.55556\n78|0.5\n79|0.34722\n80|0.30556\n81|0.5\n82|0.26389\n83|0.29167\n84|0.5\n85|0.5\n86|0.72222\n87|0.61111\n88|0.76389\n89|0.77778\n90|0.5\n91|0.5\n92|0.5\n93|0.44444\n94|0.54167\n95|0.5\n96|0.45833\n97|0.5\n98|0.5\n99|0.5\n100|0.65278\n101|0.54167\n102|0.69444\n103|0.77778\n104|0.13889\n105|0.055556\n106|0.22222\n107|0.19444\n108|0.5\n109|0.54167\n110|0.66667\n111|0.69444\n112|0.77778\n113|0.84722\n114|0.58333\n115|0.069444\n116|0.54167\n117|0.63889\n118|0.38889\n119|0.93056\n120|0.77778\n121|0.77778\n122|0.88889\n123|0.83333\n124|0.875\n125|0.52778\n126|0.52778\n127|0.5\n128|0.55556\n129|0.55556\n130|0.77778\n131|0.63889\n132|0.30556\n133|0.47222\n134|0.45833\n135|0.44444\n136|0.55556\n137|0.61111\n138|0.55556\n139|0.5\n140|0.45833\n141|0.72222\n142|0.61111\n143|0.72222\n144|0.625\n145|0.65278\n146|0.63889\n147|0.77778\n148|0.75\n149|0.30556\n150|0.33333\n151|0.19444\n152|0.29167\n153|0.66667\n154|0.69444\n155|0.31944\n156|0.29167\n157|0.19444\n158|0.38889\n159|0.25\n160|0.16667\n161|0.5\n162|0.5\n163|0.55556\n164|0.875\n165|0.63889\n166|0.65278\n167|0.70833\n168|0.59722\n169|0.56944\n170|0.61111\n171|0.77778\n172|0.66667\n173|0.69444\n174|0.63889\n175|0.80556\n176|0.83333\n177|0.77778\n178|0.66667\n179|0.69444\n180|0.83333\n181|0.93056\n182|0.76389\n183|0.77778\n184|0.5\n185|0.5\n186|0.5\n187|0.56944\n188|0.52778\n189|0.55556\n190|0.5\n191|0.52778\n192|0.47222\n193|0.625\n194|0.54167\n195|0.5\n196|0.19444\n197|0.44444\n198|0.375\n199|0.61111\n200|0.70833\n201|0.65278\n202|0.77778\n203|0.80556\n204|0.5\n205|0.27778\n206|0.33333\n207|0.34722\n208|0.55556\n209|0.66667\n210|0.5\n211|0.5\n212|0.29167\n213|0.20833\n214|0.5\n215|0.5\n216|0.38889\n217|0.29167\n218|0.52778\n219|0.29167\n220|0.38889\n221|0.18056\n222|0.20833\n223|0.41667\n224|0.27778\n225|0.43056\n226|0.72222\n227|0.94444\n228|0.86111\n229|0.81944\n230|0.88889\n231|0.77778\n232|0.68056\n233|0.77778\n234|0.66667\n235|0.80556\n236|0.52778\n237|0.69444\n238|0.51389\n239|0.27778\n240|0.375\n241|0.36111\n242|0.56944\n243|0.33333\n244|0.47222\n245|0.41667\n246|0.23611\n247|0.25\n248|0.33333\n249|0.48611\n250|0.55556\n251|0.56944\n252|0.54167\n253|0.45833\n254|0.5\n255|0.40278\n256|0.41667\n257|0.26389\n258|0.56944\n259|0.15278\n260|0.44444\n261|0.58333\n262|0.43056\n263|0.55556\n264|0.375\n265|0.66667\n266|0.80556\n267|0.76389\n268|0.79167\n269|0.70833\n270|0.63889\n271|0.40278\n272|0.375\n273|0.625\n274|0.59722\n275|0.5\n276|0.40278\n277|0.65278\n278|0.80556\n279|0.81944\n280|0.68056\n281|0.44444\n282|0.47222\n283|0.70833\n284|0.73611\n285|0.83333\n286|0.81944\n287|0.59722\n288|0.73611\n289|0.73611\n290|0.73611\n291|0.52778\n292|0.875\n293|0.93056\n294|0.76389\n295|0.36111\n296|0.55556\n297|0.61111\n298|0.5\n299|0.5\n300|0.5\n301|0.55556\n302|0.34722\n303|0.63889\n304|0.90278\n305|0.5\n306|0.56944\n307|0.5\n308|0.44444\n309|0.55556\n310|0.56944\n311|0.69444\n312|0.54167\n313|0.43056\n314|0.5\n315|0.52778\n316|0.375\n317|0.36111\n318|0.72222\n319|0.20833\n320|0.22222\n321|0.55556\n322|0.51389\n323|0.5\n324|0.55556\n325|0.56944\n326|0.5\n327|0.61111\n328|0.54167\n329|0.30556\n330|0.33333\n331|0.38889\n332|0.5\n333|0.59722\n334|0.77778\n335|0.81944\n336|0.63889\n337|0.69444\n338|0.47222\n339|0.54167\n340|0.44444\n341|0.19444\n342|0.11111\n343|0.61111\n344|0.47222\n345|0.5\n346|0.40278\n347|0.66667\n348|0.30556\n349|0.47222\n350|0.5\n351|0.5\n352|0.5\n353|0.44444\n354|0.31944\n355|0.52778\n356|0.56944\n357|0.5\n358|0.52778\n359|0.5\n360|0.77778\n361|0.44444\n362|0.625\n363|0.5\n364|0.55556\n365|0.66667\n366|0.5\n367|0.5\n368|0.33333\n369|0.5\n370|0.47222\n371|0.54167\n372|0.79167\n373|0.61111\n374|0.51389\n375|0.54167\n376|0.54167\n377|0.72222\n378|0.47222\n379|0.48611\n380|0.33333\n381|0.73611\n382|0.55556\n383|0.70833\n384|0.5\n385|0.31944\n386|0.38889\n387|0.72222\n388|0.625\n389|0.65278\n390|0.625\n391|0.54167\n392|0.72222\n393|0.73611\n394|0.81944\n395|0.5\n396|0.27778\n397|0.73611\n398|0.69444\n399|0.51389\n400|0.41667\n401|0.58333\n402|0.52778\n403|0.51389\n404|0.19444\n405|0.19444\n406|0.27778\n407|0.44444\n408|0.5\n409|0.5\n410|0.81944\n411|0.55556\n412|0.56944\n413|0.66667\n414|0.5\n415|0.44444\n416|0.54167\n417|0.55556\n418|0.48611\n419|0.5\n420|0.48611\n421|0.5\n422|0.5\n423|0.52778\n424|0.5\n425|0.55556\n426|0.38889\n427|0.51389\n428|0.5\n429|0.77778\n430|0.5\n431|0.77778\n432|0.5\n433|0.65278\n434|0.75\n435|0.5\n436|0.5\n437|0.23611\n438|0.375\n439|0.55556\n440|0.63889\n441|0.70833\n442|0.70833\n443|0.34722\n444|0.33333\n445|0.18056\n446|0.44444\n447|0.69444\n448|0.47222\n449|0.55556\n450|0.43056\n451|0.80556\n452|0.83333\n453|0.66667\n454|0.83333\n455|0.76389\n456|0.73611\n457|0.48611\n458|0.38889\n459|0.79167\n460|0.59722\n461|0.54167\n462|0.5\n463|0.97222\n464|0.625\n465|0.54167\n466|0.5\n467|0.51389\n468|0.5\n469|0.5\n470|0.34722\n471|0.48611\n472|0.5\n473|0.54167\n474|0.72222\n475|0.44444\n476|0.44444\n477|0.44444\n478|0.55556\n479|0.40278\n480|0.5\n481|0.38889\n482|0.5\n483|0.52778\n484|0.79167\n485|0.16667\n486|0.68056\n487|0.77778\n488|0.56944\n489|0.5\n490|0.45833\n491|0.40278\n492|0.52778\n493|0.51389\n494|0.51389\n495|0.51389\n496|0.47222\n497|0.33333\n498|0.77778\n499|0.79167\n500|0.66667\n501|0.48611\n502|0.63889\n503|0.54167\n504|0.55556\n505|0.72222\n506|0.56944\n507|0.56944\n508|0.75\n509|0.44444\n510|0.25\n511|0.5\n512|0.51389\n513|0.58333\n514|0.52778\n515|0.52778\n516|0.52778\n517|0.5\n518|0.86111\n519|0.55556\n520|0.55556\n521|0.51389\n522|0.5\n523|0.5\n524|0.5\n525|0.51389\n526|0.61111\n527|0.44444\n528|0.41667\n529|0.48611\n530|0.45833\n531|0.29167\n532|0.25\n533|0.19444\n534|0.30556\n535|0.43056\n536|0.43056\n537|0.125\n538|0.77778\n539|0.44444\n540|0.36111\n541|0.26389\n542|0.27778\n543|0.44444\n544|0.30556\n545|0.43056\n546|0.54167\n547|0.5\n548|0.16667\n549|0.51389\n550|0.097222\n551|0.47222\n552|0.61111\n553|0.77778\n554|0.13889\n555|0.5\n556|0.55556\n557|0.69444\n558|0.34722\n559|0.18056\n560|0.5\n561|0.52778\n562|0.56944\n563|0.58333\n564|0.5\n565|0.55556\n566|0.76389\n567|0.77778\n568|0.5\n569|0.58333\n570|0.47222\n571|0.40278\n572|0.58333\n573|0.5\n574|0.63889\n575|0.5\n576|0.5\n577|0.22222\n578|0.5\n579|0.51389\n580|0.47222\n581|0.5\n582|0.56944\n583|0.51389\n584|0.30556\n585|0.33333\n586|0.5\n587|0.5\n588|0.51389\n589|0.22222\n590|0.52778\n591|0.5\n592|0.69444\n593|0.72222\n594|0.55556\n595|0.625\n596|0.56944\n597|0.80556\n598|0.83333\n599|0.5\n600|0.375\n601|0.5\n602|0.11111\n603|0.5\n604|0.16667\n605|0.51389\n606|0.5\n607|0.5\n608|0.31944\n609|0.29167\n610|0.31944\n611|0.25\n612|0.47222\n613|0.29167\n614|0.40278\n615|0.26389\n616|0.43056\n617|0.5\n618|0.44444\n619|0.55556\n620|0.51389\n621|0.5\n622|0.5\n623|0.43056\n624|0.43056\n625|0.61111\n626|0.5\n627|0.59722\n628|0.54167\n629|0.5\n630|0.69444\n631|0.76389\n632|0.75\n633|0.75\n634|0.97222\n635|0.5\n636|0.52778\n637|0.44444\n638|0.5\n639|0.13889\n640|0.5\n641|0.48611\n642|0.5\n643|0.5\n644|0.16667\n645|0.69444\n646|0.69444\n647|0.68056\n648|0.44444\n649|0.5\n650|0.44444\n651|0.38889\n652|0.44444\n653|0.72222\n654|0.45833\n655|0.11111\n656|0.44444\n657|0.59722\n658|0.5\n659|0.18056\n660|0.5\n661|0.56944\n662|0.16667\n663|0.5\n664|0.55556\n665|0.5\n666|0.43056\n667|0.69444\n668|0.5\n669|0.56944\n670|0.58333\n671|0.30556\n672|0.30556\n673|0.36111\n674|0.75\n675|0.5\n676|0.5\n677|0.44444\n678|0.36111\n679|0.5\n680|0.55556\n681|0.5\n682|0.47222\n683|0.5\n684|0.77778\n685|0.66667\n686|0.22222\n687|0.45833\n688|0.41667\n689|0.38889\n690|0.90278\n691|0.54167\n692|0.5\n693|0.58333\n694|0.83333\n695|0.83333\n696|0.5\n697|0.61111\n698|0.5\n699|0.63889\n700|0.55556\n701|0.5\n702|0.75\n703|0.44444\n704|0.68056\n705|0.55556\n706|0.63889\n707|0.73611\n708|0.73611\n709|0.5\n710|0.5\n711|0.80556\n712|0.5\n713|0.5\n714|0.58333\n715|0.5\n716|0.47222\n717|0.56944\n718|0.54167\n719|0.51389\n720|0.70833\n721|0.65278\n722|0.5\n723|0.73611\n724|0.63889\n725|0.875\n726|0.38889\n727|0.44444\n728|0.61111\n729|0.48611\n730|0.5\n731|0.26389\n732|0.48611\n733|0.25\n734|0.56944\n735|0.59722\n736|0.5\n737|0.30556\n738|0.5\n739|0.40278\n740|0.33333\n741|0.73611\n742|0.83333\n743|0.11111\n744|0.18056\n745|0.43056\n746|0.55556\n747|0.5\n748|0.44444\n749|0.38889\n750|0.69444\n751|0.625\n752|0.70833\n753|0.5\n754|0.44444\n755|0.51389\n756|0.375\n757|0.48611\n758|0.38889\n759|0.38889\n760|0.52778\n761|0.625\n762|0.51389\n763|0.83333\n764|0.79167\n765|0.875\n766|0.73611\n767|0.81944\n768|0.76389\n769|0.93056\n770|0.5\n771|0.45833\n772|0.41667\n773|0.72222\n774|0.52778\n775|0.5\n776|0.61111\n777|0.59722\n778|0.76389\n779|0.66667\n780|0.65278\n781|0.77778\n782|0.625\n783|0.91667\n784|0.54167\n785|0.56944\n786|0.59722\n787|0.90278\n788|0.83333\n789|0.27778\n790|0.38889\n791|0.5\n792|0.51389\n793|0.58333\n794|0.5\n795|0.52778\n796|0.52778\n797|0.44444\n798|0.76389\n799|0.76389\n800|0.375\n801|0.38889\n802|0.44444\n803|0.44444\n804|0.5\n805|0.33333\n806|0.61111\n807|0.44444\n808|0.13889\n809|0.30556\n810|0.43056\n811|0.5\n812|0.38889\n813|0.5\n814|0.54167\n815|0.5\n816|0.5\n817|0.5\n818|0.31944\n819|0.31944\n820|0.43056\n821|0.40278\n822|0.33333\n823|0.43056\n824|0.43056\n825|0.44444\n826|0.40278\n827|0.47222\n828|0.5\n829|0.42361\n830|0.56944\n831|0.44444\n832|0.5\n833|0.55556\n834|0.76389\n835|0.81944\n836|0.63889\n837|0.51389\n838|0.30556\n839|0.40278\n840|0.68056\n841|0.43056\n842|0.44444\n843|0.5\n844|0.45833\n845|0.18056\n846|0.375\n847|0.29167\n848|0.38889\n849|0.66667\n850|0.48611\n851|0.5\n852|0.55556\n853|0.69444\n854|0.77778\n855|0.36111\n856|0.5\n857|0.36111\n858|0.26389\n859|0.055556\n860|0.51389\n861|0.66667\n862|0.5\n863|0.5\n864|0.55556\n865|0.61111\n866|0.52778\n867|0.55556\n868|0.52778\n869|0.55556\n870|0.52778\n871|0.5\n872|0.52778\n873|0.5\n874|0.5\n875|0.5\n876|0.13889\n877|0.27778\n878|0.36111\n879|0.51389\n880|0.51389\n881|0.38889\n882|0.73611\n883|0.48611\n884|0.44444\n885|0.27778\n886|0.61111\n887|0.65278\n888|0.81944\n889|0.76389\n890|0.65278\n891|0.86111\n892|0.75\n893|0.86111\n894|0.16667\n895|0.80556\n896|0.52778\n897|0.77778\n898|0.52778\n899|0.52778\n900|0.43056\n901|0.48611\n902|0.375\n903|0.29167\n904|0.25\n905|0.73611\n906|0.69444\n907|0.52778\n908|0.5\n909|0.61111\n910|0.5\n911|0.5\n912|0.5\n913|0.30556\n914|0.5\n915|0.55556\n916|0.5\n917|0.5\n918|0.52778\n919|0.54167\n920|0.5\n921|0.5\n922|0.22222\n923|0.56944\n924|0.5\n925|0.5\n926|0.55556\n927|0.54167\n928|0.16667\n929|0.5\n930|0.5\n931|0.56944\n932|0.55556\n933|0.625\n934|0.5\n935|0.81944\n936|0.5\n937|0.55556\n938|0.52778\n939|0.5\n940|0.43056\n941|0.375\n942|0.52778\n943|0.66667\n944|0.75\n945|0.52778\n946|0.44444\n947|0.51389\n948|0.34722\n949|0.23611\n950|0.55556\n951|0.55556\n952|0.66667\n953|0.65278\n954|0.63889\n955|0.5\n956|0.36111\n957|0.76389\n958|0.56944\n959|0.76389\n960|0.79167\n961|0.625\n962|0.20833\n963|0.63889\n964|0.77778\n965|0.22222\n966|0.51389\n967|0.5\n968|0.52778\n969|0.44444\n970|0.5\n971|0.5\n972|0.63889\n973|0.5\n974|0.54167\n975|0.66667\n976|0.5\n977|0.5\n978|0.5\n979|0.43056\n980|0.31944\n981|0.51389\n982|0.54167\n983|0.76389\n984|0.5\n985|0.44444\n986|0.41667\n987|0.77778\n988|0.19444\n989|0.27778\n990|0.22222\n991|0.55556\n992|0.72222\n993|0.55556\n994|0.5\n995|0.5\n996|0.34722\n997|0.5\n998|0.5\n999|0.5\n1000|0.5\n1001|0.5\n1002|0.54167\n1003|0.63889\n1004|0.47222\n1005|0.30556\n1006|0.43056\n1007|0.38889\n1008|0.56944\n1009|0.41667\n1010|0.54167\n1011|0.43056\n1012|0.125\n1013|0.5\n1014|0.55556\n1015|0.66667\n1016|0.52778\n1017|0.54167\n1018|0.22222\n1019|0.72222\n1020|0.27778\n1021|0.51389\n1022|0.58333\n1023|0.66667\n1024|0.5\n1025|0.65278\n1026|0.52778\n1027|0.55556\n1028|0.33333\n1029|0.20833\n1030|0.5\n1031|0.48611\n1032|0.5\n1033|0.51389\n1034|0.51389\n1035|0.66667\n1036|0.5\n1037|0.81944\n1038|0.65278\n1039|0.52778\n1040|0.40278\n1041|0.51389\n1042|0.19444\n1043|0.375\n1044|0.54167\n1045|0.26389\n1046|0.81944\n1047|0.88889\n1048|0.77778\n1049|0.34722\n1050|0.27778\n1051|0.45833\n1052|0.27778\n1053|0.58333\n1054|0.5\n1055|0.30556\n1056|0.30556\n1057|0.38889\n1058|0.41667\n1059|0.61111\n1060|0.83333\n1061|0.5\n1062|0.5\n1063|0.5\n1064|0.54167\n1065|0.61111\n1066|0.5\n1067|0.875\n1068|0.84722\n1069|0.61111\n1070|0.48611\n1071|0.5\n1072|0.27778\n1073|0.40278\n1074|0.52778\n1075|0.51389\n1076|0.33333\n1077|0.43056\n1078|0.5\n1079|0.5\n1080|0.51389\n1081|0.72222\n1082|0.81944\n1083|0.43056\n1084|0.45833\n1085|0.5\n1086|0.43056\n1087|0.5\n1088|0.63889\n1089|0.5\n1090|0.5\n1091|0.54167\n1092|0.73611\n1093|0.73611\n1094|0.77778\n1095|0.72222\n1096|0.52778\n1097|0.70833\n1098|0.56944\n1099|0.77778\n1100|0.63889\n1101|0.44444\n1102|0.69444\n1103|0.91667\n1104|0.81944\n1105|0.94444\n1106|0.75\n1107|0.625\n1108|0.61111\n1109|0.23611\n1110|0.41667\n1111|0.52778\n1112|0.80556\n1113|0.73611\n1114|0.48611\n1115|0.68056\n1116|0.65278\n1117|0.66667\n1118|0.5\n1119|0.66667\n1120|0.58333\n1121|0.5\n1122|0.5\n1123|0.5\n1124|0.45833\n1125|0.5\n1126|0.47222\n1127|0.43056\n1128|0.61111\n1129|0.26389\n1130|0.63889\n1131|0.5\n1132|0.5\n1133|0.48611\n1134|0.43056\n1135|0.52778\n1136|0.48611\n1137|0.38889\n1138|0.5\n1139|0.44444\n1140|0.55556\n1141|0.52778\n1142|0.61111\n1143|0.86111\n1144|0.55556\n1145|0.81944\n1146|0.43056\n1147|0.65278\n1148|0.58333\n1149|0.47222\n1150|0.5\n1151|0.52083\n1152|0.34722\n1153|0.33333\n1154|0.76389\n1155|0.38889\n1156|0.77778\n1157|0.36111\n1158|0.40278\n1159|0.80556\n1160|0.5\n1161|0.52778\n1162|0.40278\n1163|0.61111\n1164|0.88889\n1165|0.30556\n1166|0.34722\n1167|0.625\n1168|0.5\n1169|0.5\n1170|0.40278\n1171|0.375\n1172|0.76389\n1173|0.5\n1174|0.30556\n1175|0.54167\n1176|0.52778\n1177|0.61111\n1178|0.69444\n1179|0.5\n1180|0.5\n1181|0.61111\n1182|0.73611\n1183|0.52778\n1184|0.56944\n1185|0.84722\n1186|0.63889\n1187|0.5\n1188|0.5\n1189|0.59722\n1190|0.80556\n1191|0.61111\n1192|0.25\n1193|0.54167\n1194|0.55556\n1195|0.58333\n1196|0.51389\n1197|0.5\n1198|0.5\n1199|0.51389\n1200|0.5\n1201|0.54167\n1202|0.38889\n1203|0.5\n1204|0.69444\n1205|0.41667\n1206|0.68056\n1207|0.51389\n1208|0.5\n1209|0.51389\n1210|0.44444\n1211|0.44444\n1212|0.34722\n1213|0.38889\n1214|0.61111\n1215|0.70833\n1216|0.59722\n1217|0.40278\n1218|0.055556\n1219|0.83333\n1220|0.58333\n1221|0.5\n1222|0.055556\n1223|0.5\n1224|0.38889\n1225|0.55556\n1226|0.5\n1227|0.5\n1228|0.48611\n1229|0.55556\n1230|0.55556\n1231|0.5\n1232|0.5\n1233|0.58333\n1234|0.68056\n1235|0.61111\n1236|0.5\n1237|0.5\n1238|0.70833\n1239|0.875\n1240|0.625\n1241|0.58333\n1242|0.58333\n1243|0.61111\n1244|0.61111\n1245|0.625\n1246|0.81944\n1247|0.44444\n1248|0.58333\n1249|0.5\n1250|0.55556\n1251|0.56944\n1252|0.44444\n1253|0.44444\n1254|0.31944\n1255|0.31944\n1256|0.22222\n1257|0.22222\n1258|0.19444\n1259|0.19444\n1260|0.77778\n1261|0.55556\n1262|0.65278\n1263|0.72222\n1264|0.36111\n1265|0.23611\n1266|0.55556\n1267|0.45833\n1268|0.36111\n1269|0.5\n1270|0.75\n1271|0.63889\n1272|0.80556\n1273|0.36111\n1274|0.58333\n1275|0.16667\n1276|0.11111\n1277|0.5\n1278|0.55556\n1279|0.5\n1280|0.55556\n1281|0.29167\n1282|0.58333\n1283|0.36111\n1284|0.22222\n1285|0.5\n1286|0.47222\n1287|0.47222\n1288|0.11111\n1289|0.55556\n1290|0.55556\n1291|0.083333\n1292|0.47222\n1293|0.5\n1294|0.5\n1295|0.61111\n1296|0.75\n1297|0.54167\n1298|0.66667\n1299|0.56944\n1300|0.20833\n1301|0.58333\n1302|0.27778\n1303|0.56944\n1304|0.52778\n1305|0.52778\n1306|0.31944\n1307|0.38889\n1308|0.51389\n1309|0.68056\n1310|0.52778\n1311|0.38889\n1312|0.5\n1313|0.66667\n1314|0.61111\n1315|0.55556\n1316|0.61111\n1317|0.63889\n1318|0.54167\n1319|0.54167\n1320|0.5625\n1321|0.55556\n1322|0.59722\n1323|0.44444\n1324|0.44444\n1325|0.5\n1326|0.52778\n1327|0.5\n1328|0.58333\n1329|0.5\n1330|0.5\n1331|0.52778\n1332|0.5\n1333|0.72222\n1334|0.69444\n1335|0.22222\n1336|0.51389\n1337|0.48611\n1338|0.40278\n1339|0.36111\n1340|0.5\n1341|0.55556\n1342|0.5\n1343|0.72222\n1344|0.41667\n1345|0.55556\n1346|0.5\n1347|0.51389\n1348|0.52778\n1349|0.73611\n1350|0.38889\n1351|0.47222\n1352|0.5\n1353|0.72222\n1354|0.69444\n1355|0.76389\n1356|0.54167\n1357|0.65278\n1358|0.5\n1359|0.23611\n1360|0.52778\n1361|0.375\n1362|0.38889\n1363|0.40278\n1364|0.27778\n1365|0.33333\n1366|0.40278\n1367|0.58333\n1368|0.72222\n1369|0.30556\n1370|0.45833\n1371|0.45833\n1372|0.77778\n1373|0.76389\n1374|0.45833\n1375|0.88889\n1376|0.56944\n1377|0.72222\n1378|0.76389\n1379|0.5\n1380|0.80556\n1381|0.5\n1382|0.52778\n1383|0.48611\n1384|0.33333\n1385|0.83333\n1386|0.625\n1387|0.68056\n1388|0.11111\n1389|0.51389\n1390|0.83333\n1391|0.86111\n1392|0.97222\n1393|0.56944\n1394|0.40278\n1395|0.38889\n1396|0.22222\n1397|0.40278\n1398|0.51389\n1399|0.72222\n1400|0.59722\n1401|0.51389\n1402|0.70833\n1403|0.30556\n1404|0.59722\n1405|0.19444\n1406|0.45833\n1407|0.83333\n1408|0.34722\n1409|0.70833\n1410|0.90278\n1411|0.43056\n1412|0.69444\n1413|0.63889\n1414|0.58333\n1415|0.55556\n1416|0.47222\n1417|0.66667\n1418|0.30556\n1419|0.23611\n1420|0.5\n1421|0.52778\n1422|0.19444\n1423|0.18056\n1424|0.33333\n1425|0.625\n1426|0.68056\n1427|0.625\n1428|0.66667\n1429|0.54167\n1430|0.38889\n1431|0.15278\n1432|0.30556\n1433|0.43056\n1434|0.66667\n1435|0.15278\n1436|0.15278\n1437|0.33333\n1438|0.54167\n1439|0.45833\n1440|0.73611\n1441|0.77778\n1442|0.5\n1443|0.36111\n1444|0.80556\n1445|0.93056\n1446|0.83333\n1447|0.83333\n1448|0.86111\n1449|0.90278\n1450|0.30556\n1451|0.19444\n1452|0.625\n1453|0.15278\n1454|0.19444\n1455|0.26389\n1456|0.20833\n1457|0.56944\n1458|0.68056\n1459|0.36111\n1460|0.41667\n1461|0.36111\n1462|0.65278\n1463|0.73611\n1464|0.59722\n1465|0.375\n1466|0.38889\n1467|0.81944\n1468|0.41667\n1469|0.72222\n1470|0.69444\n1471|0.625\n1472|0.56944\n1473|0.76389\n1474|0.69444\n1475|0.75\n1476|0.59722\n1477|0.43056\n1478|0.52778\n1479|0.45833\n1480|0.34722\n1481|0.72222\n1482|0.80556\n1483|0.65278\n1484|0.125\n1485|0.625\n1486|0.80556\n1487|0.23611\n1488|0.36111\n1489|0.44444\n1490|0.79167\n1491|0.55556\n1492|0.75\n1493|0.25\n1494|0.55556\n1495|0.5\n1496|0.48611\n1497|0.375\n1498|0.33333\n1499|0.34722\n1500|0.27778\n1501|0.375\n1502|0.52778\n1503|0.51389\n1504|0.56944\n1505|0.5\n1506|0.44444\n1507|0.45833\n1508|0.56944\n1509|0.58333\n1510|0.5\n1511|0.625\n1512|0.51389\n1513|0.22222\n1514|0.44444\n1515|0.5\n1516|0.51389\n1517|0.5\n1518|0.51389\n1519|0.52778\n1520|0.31944\n1521|0.5\n1522|0.5\n1523|0.52778\n1524|0.38889\n1525|0.59722\n1526|0.55556\n1527|0.5\n1528|0.27778\n1529|0.47222\n1530|0.097222\n1531|0.5\n1532|0.5\n1533|0.45833\n1534|0.33333\n1535|0.5\n1536|0.56944\n1537|0.52778\n1538|0.76389\n1539|0.5\n1540|0.5\n1541|0.47222\n1542|0.54167\n1543|0.54167\n1544|0.5\n1545|0.20833\n1546|0.19444\n1547|0.44444\n1548|0.19444\n1549|0.54167\n1550|0.73611\n1551|0.94444\n1552|0.86111\n1553|0.70833\n1554|0.75\n1555|0.72222\n1556|0.51389\n1557|0.5\n1558|0.69444\n1559|0.55556\n1560|0.44444\n1561|0.23611\n1562|0.47222\n1563|0.5\n1564|0.25\n1565|0.33333\n1566|0.30556\n1567|0.18056\n1568|0.30556\n1569|0.18056\n1570|0.33333\n1571|0.5\n1572|0.5\n1573|0.59722\n1574|0.56944\n1575|0.5\n1576|0.76389\n1577|0.75\n1578|0.83333\n1579|0.58333\n1580|0.38889\n1581|0.38889\n1582|0.5\n1583|0.45833\n1584|0.51389\n1585|0.29167\n1586|0.19444\n1587|0.51389\n1588|0.5\n1589|0.625\n1590|0.33333\n1591|0.47222\n1592|0.5\n1593|0.54167\n1594|0.18056\n1595|0.56944\n1596|0.77778\n1597|0.56944\n1598|0.69444\n1599|0.54167\n1600|0.66667\n1601|0.55556\n1602|0.68056\n1603|0.79167\n1604|0.45833\n1605|0.5\n1606|0.51389\n1607|0.5\n1608|0.59722\n1609|0.30556\n1610|0.34722\n1611|0.5\n1612|0.77778\n1613|0.76389\n1614|0.52778\n1615|0.5\n1616|0.38889\n1617|0.30556\n1618|0.375\n1619|0.5\n1620|0.5\n1621|0.47222\n1622|0.68056\n1623|0.72222\n1624|0.38889\n1625|0.55556\n1626|0.72222\n1627|0.48611\n1628|0.5\n1629|0.5\n1630|0.47222\n1631|0.34722\n1632|0.5\n1633|0.51389\n1634|0.33333\n1635|0.13889\n1636|0.5\n1637|0.56944\n1638|0.66667\n1639|0.52778\n1640|0.88889\n1641|0.90278\n1642|0.55556\n1643|0.65278\n1644|0.47222\n1645|0.83333\n1646|0.84722\n1647|0.88889\n1648|0.73611\n1649|0.72222\n1650|0.86111\n1651|0.69444\n1652|0.58333\n1653|0.44444\n1654|0.58333\n1655|0.55556\n1656|0.43056\n1657|0.40278\n1658|0.61111\n1659|0.375\n1660|0.375\n1661|0.5\n1662|0.36111\n1663|0.5\n1664|0.54167\n1665|0.61111\n1666|0.63889\n1667|0.51389\n1668|0.52778\n1669|0.54167\n1670|0.5\n1671|0.51389\n1672|0.68056\n1673|0.83333\n1674|0.5\n1675|0.26389\n1676|0.34722\n1677|0.58333\n1678|0.52778\n1679|0.52778\n1680|0.44444\n1681|0.27778\n1682|0.36111\n1683|0.33333\n1684|0.29167\n1685|0.26389\n1686|0.72222\n1687|0.5\n1688|0.55556\n1689|0.63889\n1690|0.55556\n1691|0.65278\n1692|0.30556\n1693|0.54167\n1694|0.5\n1695|0.5\n1696|0.5\n1697|0.55556\n1698|0.55556\n1699|0.56944\n1700|0.58333\n1701|0.38889\n1702|0.26389\n1703|0.51389\n1704|0.90278\n1705|0.88889\n1706|0.56944\n1707|0.16667\n1708|0.5\n1709|0.47222\n1710|0.5\n1711|0.5\n1712|0.26389\n1713|0.16667\n1714|0.33333\n1715|0.23611\n1716|0.29167\n1717|0.66667\n1718|0.26389\n1719|0.52778\n1720|0.43056\n1721|0.26389\n1722|0.5\n1723|0.30556\n1724|0.51389\n1725|0.38889\n1726|0.34722\n1727|0.54167\n1728|0.5\n1729|0.5\n1730|0.5\n1731|0.27778\n1732|0.55556\n1733|0.44444\n1734|0.59722\n1735|0.38889\n1736|0.23611\n1737|0.5\n1738|0.38889\n1739|0.41667\n1740|0.36111\n1741|0.81944\n1742|0.66667\n1743|0.47222\n1744|0.59722\n1745|0.41667\n1746|0.5\n1747|0.45833\n1748|0.44444\n1749|0.375\n1750|0.33333\n1751|0.125\n1752|0.5\n1753|0.69444\n1754|0.61111\n1755|0.5\n1756|0.59722\n1757|0.69444\n1758|0.59722\n1759|0.70833\n1760|0.55556\n1761|0.55556\n1762|0.63889\n1763|0.72222\n1764|0.55556\n1765|0.43056\n1766|0.63889\n1767|0.625\n1768|0.16667\n1769|0.5\n1770|0.55556\n1771|0.52778\n1772|0.51389\n1773|0.52778\n1774|0.70833\n1775|0.48611\n1776|0.5\n1777|0.5\n1778|0.5\n1779|0.5\n1780|0.5\n1781|0.56944\n1782|0.51389\n1783|0.5\n1784|0.5\n1785|0.29167\n1786|0.51389\n1787|0.30556\n1788|0.79167\n1789|0.625\n1790|0.70833\n1791|0.77778\n1792|0.79167\n1793|0.72222\n1794|0.5\n1795|0.94444\n1796|0.83333\n1797|0.83333\n1798|0.72222\n1799|0.81944\n1800|0.65278\n1801|0.27778\n1802|0.5\n1803|0.55556\n1804|0.41667\n1805|0.41667\n1806|0.45833\n1807|0.88889\n1808|0.81944\n1809|0.52778\n1810|0.44444\n1811|0.41667\n1812|0.55556\n1813|0.5\n1814|0.54167\n1815|0.625\n1816|0.30556\n1817|0.43056\n1818|0.52778\n1819|0.48611\n1820|0.5\n1821|0.44444\n1822|0.44444\n1823|0.55556\n1824|0.5\n1825|0.33333\n1826|0.5\n1827|0.43056\n1828|0.70833\n1829|0.52778\n1830|0.58333\n1831|0.5\n1832|0.19444\n1833|0.30556\n1834|0.5\n1835|0.29167\n1836|0.55556\n1837|0.625\n1838|0.22222\n1839|0.375\n1840|0.44444\n1841|0.36111\n1842|0.5\n1843|0.31944\n1844|0.54167\n1845|0.5\n1846|0.31944\n1847|0.68056\n1848|0.625\n1849|0.68056\n1850|0.20833\n1851|0.20833\n1852|0.40278\n1853|0.26389\n1854|0.47222\n1855|0.5\n1856|0.23611\n1857|0.52778\n1858|0.59722\n1859|0.72222\n1860|0.77778\n1861|0.68056\n1862|0.38889\n1863|0.40278\n1864|0.31944\n1865|0.30556\n1866|0.30556\n1867|0.22222\n1868|0.38889\n1869|0.375\n1870|0.61111\n1871|0.5\n1872|0.44444\n1873|0.63889\n1874|0.48611\n1875|0.72222\n1876|0.375\n1877|0.5\n1878|0.5\n1879|0.44444\n1880|0.5\n1881|0.33333\n1882|0.79167\n1883|0.27778\n1884|0.625\n1885|0.47222\n1886|0.65278\n1887|0.50694\n1888|0.68056\n1889|0.5\n1890|0.45833\n1891|0.52778\n1892|0.41667\n1893|0.5\n1894|0.45833\n1895|0.5\n1896|0.51389\n1897|0.52778\n1898|0.5\n1899|0.36111\n1900|0.5\n1901|0.58333\n1902|0.5\n1903|0.51389\n1904|0.5\n1905|0.5\n1906|0.5\n1907|0.45833\n1908|0.5\n1909|0.52778\n1910|0.5\n1911|0.59722\n1912|0.58333\n1913|0.5\n1914|0.61111\n1915|0.5\n1916|0.47222\n1917|0.55556\n1918|0.54167\n1919|0.47222\n1920|0.51389\n1921|0.58333\n1922|0.65278\n1923|0.41667\n1924|0.58333\n1925|0.61111\n1926|0.34722\n1927|0.52778\n1928|0.51389\n1929|0.51389\n1930|0.15278\n1931|0.25\n1932|0.5\n1933|0.40278\n1934|0.38889\n1935|0.33333\n1936|0.5\n1937|0.55556\n1938|0.47222\n1939|0.5\n1940|0.27778\n1941|0.52778\n1942|0.66667\n1943|0.31944\n1944|0.51389\n1945|0.61111\n1946|0.375\n1947|0.43056\n1948|0.23611\n1949|0.33333\n1950|0.52778\n1951|0.59722\n1952|0.5\n1953|0.34722\n1954|0.38889\n1955|0.5\n1956|0.5\n1957|0.40278\n1958|0.5\n1959|0.25\n1960|0.68056\n1961|0.80556\n1962|0.47222\n1963|0.44444\n1964|0.55556\n1965|0.5\n1966|0.44444\n1967|0.56944\n1968|0.38889\n1969|0.43056\n1970|0.30556\n1971|0.40278\n1972|0.44444\n1973|0.61111\n1974|0.61111\n1975|0.51389\n1976|0.66667\n1977|0.5\n1978|0.61111\n1979|0.5\n1980|0.5\n1981|0.5\n1982|0.59722\n1983|0.61111\n1984|0.38889\n1985|0.375\n1986|0.5\n1987|0.47222\n1988|0.5\n1989|0.5\n1990|0.51389\n1991|0.5\n1992|0.5\n1993|0.59722\n1994|0.26389\n1995|0.38889\n1996|0.36111\n1997|0.34722\n1998|0.5\n1999|0.5\n2000|0.80556\n2001|0.83333\n2002|0.44444\n2003|0.55556\n2004|0.48611\n2005|0.58333\n2006|0.54167\n2007|0.41667\n2008|0.40278\n2009|0.5\n2010|0.5\n2011|0.5\n2012|0.52778\n2013|0.66667\n2014|0.51389\n2015|0.5\n2016|0.5\n2017|0.55556\n2018|0.25\n2019|0.52778\n2020|0.5\n2021|0.54167\n2022|0.86111\n2023|0.875\n2024|0.94444\n2025|0.69444\n2026|0.52778\n2027|0.5\n2028|0.26389\n2029|0.5\n2030|0.34722\n2031|0.51389\n2032|0.51389\n2033|0.5\n2034|0.61111\n2035|0.79167\n2036|0.52778\n2037|0.5\n2038|0.51389\n2039|0.5\n2040|0.88889\n2041|0.44444\n2042|0.66667\n2043|0.5\n2044|0.5\n2045|0.55556\n2046|0.40278\n2047|0.91667\n2048|0.93056\n2049|0.52778\n2050|0.44444\n2051|0.40278\n2052|0.80556\n2053|0.80556\n2054|0.86111\n2055|0.65278\n2056|0.88889\n2057|0.31944\n2058|0.48611\n2059|0.5\n2060|0.55556\n2061|0.5\n2062|0.54167\n2063|0.63889\n2064|0.5\n2065|0.55556\n2066|0.51389\n2067|0.58333\n2068|0.48611\n2069|0.51389\n2070|0.5\n2071|0.47222\n2072|0.61111\n2073|0.54167\n2074|0.56944\n2075|0.55556\n2076|0.51389\n2077|0.5\n2078|0.55556\n2079|0.5\n2080|0.68056\n2081|0.875\n2082|0.77778\n2083|0.5\n2084|0.55556\n2085|0.5\n2086|0.63889\n2087|0.76389\n2088|0.75\n2089|0.58333\n2090|0.43056\n2091|0.34722\n2092|0.54167\n2093|0.81944\n2094|0.58333\n2095|0.16667\n2096|0.61111\n2097|0.76389\n2098|0.81944\n2099|0.52778\n2100|0.72222\n2101|0.48611\n2102|0.55556\n2103|0.375\n2104|0.38889\n2105|0.43056\n2106|0.23611\n2107|0.54167\n2108|0.44444\n2109|0.40278\n2110|0.55556\n2111|0.63889\n2112|0.47222\n2113|0.5\n2114|0.33333\n2115|0.45833\n2116|0.34722\n2117|0.5\n2118|0.63889\n2119|0.77778\n2120|0.31944\n2121|0.47222\n2122|0.375\n2123|0.5\n2124|0.51389\n2125|0.069444\n2126|0.36111\n2127|0.58333\n2128|0.48611\n2129|0.33333\n2130|0.5\n2131|0.66667\n2132|0.55556\n2133|0.5\n2134|0.77778\n2135|0.5\n2136|0.48611\n2137|0.625\n2138|0.54167\n2139|0.47222\n2140|0.5\n2141|0.5\n2142|0.5\n2143|0.66667\n2144|0.51389\n2145|0.5\n2146|0.44444\n2147|0.48611\n2148|0.5\n2149|0.31944\n2150|0.38889\n2151|0.54167\n2152|0.375\n2153|0.625\n2154|0.48611\n2155|0.56944\n2156|0.79167\n2157|0.56944\n2158|0.68056\n2159|0.38889\n2160|0.43056\n2161|0.55556\n2162|0.45833\n2163|0.72222\n2164|0.5\n2165|0.55556\n2166|0.45833\n2167|0.61111\n2168|0.70833\n2169|0.27778\n2170|0.63889\n2171|0.5\n2172|0.44444\n2173|0.68056\n2174|0.5\n2175|0.38889\n2176|0.65278\n2177|0.5\n2178|0.58333\n2179|0.79167\n2180|0.54167\n2181|0.5\n2182|0.36111\n2183|0.33333\n2184|0.31944\n2185|0.26389\n2186|0.23611\n2187|0.31944\n2188|0.22222\n2189|0.45833\n2190|0.51389\n2191|0.43056\n2192|0.55556\n2193|0.84722\n2194|0.72222\n2195|0.75\n2196|0.83333\n2197|0.72222\n2198|0.33333\n2199|0.73611\n2200|0.61111\n2201|0.5\n2202|0.5\n2203|0.055556\n2204|0.5\n2205|0.5\n2206|0.41667\n2207|0.5\n2208|0.5\n2209|0.5\n2210|0.54167\n2211|0.58333\n2212|0.5\n2213|0.5\n2214|0.5\n2215|0.31944\n2216|0.22222\n2217|0.29167\n2218|0.63889\n2219|0.5\n2220|0.5\n2221|0.41667\n2222|0.56944\n2223|0.54167\n2224|0.5\n2225|0.5\n2226|0.47222\n2227|0.19444\n2228|0.22222\n2229|0.16667\n2230|0.36111\n2231|0.40278\n2232|0.625\n2233|0.65278\n2234|0.33333\n2235|0.15278\n2236|0.5\n2237|0.38889\n2238|0.19444\n2239|0.375\n2240|0.51389\n2241|0.54167\n2242|0.52778\n2243|0.54167\n2244|0.54167\n2245|0.5\n2246|0.5\n2247|0.72222\n2248|0.65278\n2249|0.5\n2250|0.61111\n2251|0.73611\n2252|0.36111\n2253|0.5\n2254|0.45833\n2255|0.56944\n2256|0.5\n2257|0.52778\n2258|0.26389\n2259|0.25\n2260|0.40278\n2261|0.26389\n2262|0.29167\n2263|0.5\n2264|0.38889\n2265|0.34722\n2266|0.33333\n2267|0.5\n2268|0.44444\n2269|0.30556\n2270|0.48611\n2271|0.83333\n2272|0.56944\n2273|0.5\n2274|0.44444\n2275|0.33333\n2276|0.31944\n2277|0.30556\n2278|0.20833\n2279|0.19444\n2280|0.54167\n2281|0.52778\n2282|0.40278\n2283|0.23611\n2284|0.5\n2285|0.54167\n2286|0.51389\n2287|0.65278\n2288|0.44444\n2289|0.5\n2290|0.70833\n2291|0.55556\n2292|0.58333\n2293|0.59722\n2294|0.55556\n2295|0.5\n2296|0.59722\n2297|0.16667\n2298|0.51389\n2299|0.55556\n2300|0.34722\n2301|0.51389\n2302|0.38889\n2303|0.34722\n2304|0.45833\n2305|0.22222\n2306|0.20833\n2307|0.16667\n2308|0.63889\n2309|0.625\n2310|0.47222\n2311|0.125\n2312|0.44444\n2313|0.81944\n2314|0.34722\n2315|0.65278\n2316|0.5\n2317|0.66667\n2318|0.375\n2319|0.5\n2320|0.30556\n2321|0.30556\n2322|0.5\n2323|0.51389\n2324|0.70833\n2325|0.52778\n2326|0.41667\n2327|0.48611\n2328|0.16667\n2329|0.72222\n2330|0.083333\n2331|0.25\n2332|0.41667\n2333|0.47222\n2334|0.38889\n2335|0.22222\n2336|0.5\n2337|0.38889\n2338|0.31944\n2339|0.5\n2340|0.56944\n2341|0.55556\n2342|0.51389\n2343|0.72222\n2344|0.65278\n2345|0.72222\n2346|0.80556\n2347|0.75\n2348|0.77778\n2349|0.76389\n2350|0.77778\n2351|0.65278\n2352|0.44444\n2353|0.52778\n2354|0.5\n2355|0.27778\n2356|0.45833\n2357|0.73611\n2358|0.55556\n2359|0.5\n2360|0.52778\n2361|0.5\n2362|0.58333\n2363|0.69444\n2364|0.51389\n2365|0.30556\n2366|0.61111\n2367|0.55556\n2368|0.72222\n2369|0.59722\n2370|0.5\n2371|0.55556\n2372|0.30556\n2373|0.61111\n2374|0.54167\n2375|0.66667\n2376|0.63889\n2377|0.59722\n2378|0.48611\n2379|0.43056\n2380|0.52778\n2381|0.375\n2382|0.59722\n2383|0.5\n2384|0.5\n2385|0.72222\n2386|0.55556\n2387|0.45833\n2388|0.72222\n2389|0.52778\n2390|0.5\n2391|0.73611\n2392|0.55556\n2393|0.56944\n2394|0.5\n2395|0.55556\n2396|0.33333\n2397|0.5\n2398|0.625\n2399|0.43056\n2400|0.11111\n2401|0.54167\n2402|0.30556\n2403|0.34722\n2404|0.31944\n2405|0.43056\n2406|0.43056\n2407|0.5\n2408|0.77778\n2409|0.52778\n2410|0.5\n2411|0.72222\n2412|0.36111\n2413|0.5\n2414|0.52778\n2415|0.5\n2416|0.5\n2417|0.19444\n2418|0.55556\n2419|0.54167\n2420|0.5\n2421|0.5\n2422|0.5\n2423|0.5\n2424|0.5\n2425|0.72222\n2426|0.52778\n2427|0.30556\n2428|0.83333\n2429|0.76389\n2430|0.875\n2431|0.5\n2432|0.55556\n2433|0.5\n2434|0.38889\n2435|0.55556\n2436|0.5\n2437|0.44444\n2438|0.56944\n2439|0.54167\n2440|0.47222\n2441|0.72222\n2442|0.63889\n2443|0.63889\n2444|0.30556\n2445|0.45833\n2446|0.5\n2447|0.56944\n2448|0.84722\n2449|0.80556\n2450|0.76389\n2451|0.69444\n2452|0.5\n2453|0.58333\n2454|0.56944\n2455|0.625\n2456|0.56944\n2457|0.77778\n2458|0.5\n2459|0.5\n2460|0.66667\n2461|0.5\n2462|0.63889\n2463|0.22222\n2464|0.5\n2465|0.70833\n2466|0.61111\n2467|0.5\n2468|0.5\n2469|0.47222\n2470|0.30556\n2471|0.5\n2472|0.63889\n2473|0.77778\n2474|0.58333\n2475|0.5\n2476|0.52778\n2477|0.5\n2478|0.5\n2479|0.59722\n2480|0.58333\n2481|0.38889\n2482|0.5\n2483|0.27778\n2484|0.36111\n2485|0.44444\n2486|0.52778\n2487|0.5\n2488|0.75\n2489|0.48611\n2490|0.5\n2491|0.5\n2492|0.41667\n2493|0.5\n2494|0.5\n2495|0.625\n2496|0.52778\n2497|0.81944\n2498|0.22222\n2499|0.77778\n2500|0.34722\n2501|0.625\n2502|0.55556\n2503|0.58333\n2504|0.375\n2505|0.29167\n2506|0.20833\n2507|0.26389\n2508|0.61111\n2509|0.77778\n2510|0.77778\n2511|0.79167\n2512|0.77778\n2513|0.76389\n2514|0.34722\n2515|0.56944\n2516|0.63889\n2517|0.70833\n2518|0.44444\n2519|0.55556\n2520|0.72222\n2521|0.5\n2522|0.5\n2523|0.55556\n2524|0.61111\n2525|0.55556\n2526|0.36111\n2527|0.375\n2528|0.30556\n2529|0.38889\n2530|0.38889\n2531|0.36111\n2532|0.5\n2533|0.80556\n2534|0.5\n2535|0.5\n2536|0.5\n2537|0.58333\n2538|0.65278\n2539|0.625\n2540|0.5\n2541|0.5\n2542|0.41667\n2543|0.66667\n2544|0.75\n2545|0.59722\n2546|0.38889\n2547|0.61111\n2548|0.5\n2549|0.51389\n2550|0.5\n2551|0.31944\n2552|0.375\n2553|0.52778\n2554|0.5\n2555|0.44444\n2556|0.16667\n2557|0.54167\n2558|0.48611\n2559|0.47222\n2560|0.5\n2561|0.31944\n2562|0.58333\n2563|0.51389\n2564|0.61111\n2565|0.5\n2566|0.5\n2567|0.5\n2568|0.44444\n2569|0.375\n2570|0.5\n2571|0.5\n2572|0.29167\n2573|0.45833\n2574|0.5\n2575|0.27778\n2576|0.38889\n2577|0.5\n2578|0.5\n2579|0.5\n2580|0.81944\n2581|0.875\n2582|0.13889\n2583|0.22222\n2584|0.013889\n2585|0.15278\n2586|0.083333\n2587|0.73611\n2588|0.66667\n2589|0.56944\n2590|0.45833\n2591|0.54167\n2592|0.5\n2593|0.69444\n2594|0.5\n2595|0.5\n2596|0.5\n2597|0.30556\n2598|0.29167\n2599|0.20833\n2600|0.66667\n2601|0.70833\n2602|0.44444\n2603|0.5\n2604|0.77778\n2605|0.54167\n2606|0.55556\n2607|0.5\n2608|0.5\n2609|0.58333\n2610|0.5\n2611|0.38889\n2612|0.69444\n2613|0.66667\n2614|0.56944\n2615|0.45833\n2616|0.5\n2617|0.5\n2618|0.55556\n2619|0.51389\n2620|0.61111\n2621|0.16667\n2622|0.58333\n2623|0.58333\n2624|0.34722\n2625|0.66667\n2626|0.65278\n2627|0.63889\n2628|0.63889\n2629|0.52778\n2630|0.36111\n2631|0.44444\n2632|0.27778\n2633|0.5\n2634|0.55556\n2635|0.48611\n2636|0.48611\n2637|0.625\n2638|0.55556\n2639|0.5\n2640|0.77778\n2641|0.27778\n2642|0.30556\n2643|0.30556\n2644|0.625\n2645|0.38889\n2646|0.80556\n2647|0.88889\n2648|0.93056\n2649|0.56944\n2650|0.65278\n2651|0.61111\n2652|0.59722\n2653|0.5\n2654|0.58333\n2655|0.59722\n2656|0.19444\n2657|0.25\n2658|0.20833\n2659|0.20833\n2660|0.52778\n2661|0.5\n2662|0.44444\n2663|0.58333\n2664|0.51389\n2665|0.83333\n2666|0.69444\n2667|0.58333\n2668|0.5\n2669|0.61111\n2670|0.73611\n2671|0.61111\n2672|0.5\n2673|0.45833\n2674|0.375\n2675|0.25\n2676|0.16667\n2677|0.59722\n2678|0.56944\n2679|0.52778\n2680|0.55556\n2681|0.56944\n2682|0.59722\n2683|0.52778\n2684|0.51389\n2685|0.34722\n2686|0.34722\n2687|0.30556\n2688|0.13889\n2689|0.41667\n2690|0.31944\n2691|0.51389\n2692|0.54167\n2693|0.375\n2694|0.34722\n2695|0.41667\n2696|0.34722\n2697|0.59722\n2698|0.68056\n2699|0.38889\n2700|0.40278\n2701|0.38889\n2702|0.375\n2703|0.19444\n2704|0.5\n2705|0.5\n2706|0.5\n2707|0.5\n2708|0.5\n2709|0.625\n2710|0.22222\n2711|0.22222\n2712|0.51389\n2713|0.56944\n2714|0.59722\n2715|0.33333\n2716|0.375\n2717|0.25\n2718|0.58333\n2719|0.625\n2720|0.55556\n2721|0.18056\n2722|0.43056\n2723|0.5\n2724|0.27778\n2725|0.23611\n2726|0.33333\n2727|0.23611\n2728|0.5\n2729|0.61111\n2730|0.52778\n2731|0.5\n2732|0.58333\n2733|0.56944\n2734|0.5\n2735|0.41667\n2736|0.51389\n2737|0.5\n2738|0.59722\n2739|0.5\n2740|0.56944\n2741|0.51389\n2742|0.5\n2743|0.5\n2744|0.61111\n2745|0.19444\n2746|0.30556\n2747|0.26389\n2748|0.5\n2749|0.59722\n2750|0.52778\n2751|0.27778\n2752|0.16667\n2753|0.5\n2754|0.70833\n2755|0.55556\n2756|0.52778\n2757|0.54167\n2758|0.47222\n2759|0.54167\n2760|0.55556\n2761|0.22222\n2762|0.5\n2763|0.5\n2764|0.5\n2765|0.54167\n2766|0.5\n2767|0.51389\n2768|0.55556\n2769|0.47222\n2770|0.61111\n2771|0.5\n2772|0.59722\n2773|0.5\n2774|0.52778\n2775|0.36111\n2776|0.47222\n2777|0.44444\n2778|0.5\n2779|0.5\n2780|0.34722\n2781|0.5\n2782|0.70833\n2783|0.70833\n2784|0.38889\n2785|0.58333\n2786|0.75\n2787|0.69444\n2788|0.51389\n2789|0.55556\n2790|0.56944\n2791|0.65278\n2792|0.55556\n2793|0.52778\n2794|0.51389\n2795|0.48611\n2796|0.52778\n2797|0.48611\n2798|0.43056\n2799|0.55556\n2800|0.5\n2801|0.5\n2802|0.52778\n2803|0.5\n2804|0.51389\n2805|0.33333\n2806|0.36111\n2807|0.5\n2808|0.77778\n2809|0.5\n2810|0.66667\n2811|0.51389\n2812|0.54167\n2813|0.13889\n2814|0.34722\n2815|0.41667\n2816|0.5\n2817|0.23611\n2818|0.20833\n2819|0.5\n2820|0.5\n2821|0.44444\n2822|0.5\n2823|0.13889\n2824|0.31944\n2825|0.27778\n2826|0.29167\n2827|0.51389\n2828|0.45833\n2829|0.5\n2830|0.73611\n2831|0.54167\n2832|0.5\n2833|0.5\n2834|0.5\n2835|0.5\n2836|0.54167\n2837|0.375\n2838|0.5\n2839|0.80556\n2840|0.94444\n2841|0.47222\n2842|0.16667\n2843|0.22222\n2844|0.63889\n2845|0.61111\n2846|0.45833\n2847|0.27778\n2848|0.41667\n2849|0.27778\n2850|0.055556\n2851|0.25\n2852|0.36111\n2853|0.56944\n2854|0.55556\n2855|0.5\n2856|0.26389\n2857|0.25\n2858|0.45833\n2859|0.59722\n2860|0.625\n2861|0.69444\n2862|0.45833\n2863|0.41667\n2864|0.5\n2865|0.52778\n2866|0.75\n2867|0.5\n2868|0.5\n2869|0.013889\n2870|0.041667\n2871|0.5\n2872|0.5\n2873|0.5\n2874|0.5\n2875|0.125\n2876|0.125\n2877|0.5\n2878|0.5\n2879|0.5\n2880|0.43056\n2881|0.52778\n2882|0.58333\n2883|0.51389\n2884|0.5\n2885|0.69444\n2886|0.55556\n2887|0.61111\n2888|0.31944\n2889|0.58333\n2890|0.34722\n2891|0.5\n2892|0.83333\n2893|0.72222\n2894|0.55556\n2895|0.54167\n2896|0.47222\n2897|0.5\n2898|0.5\n2899|0.30556\n2900|0.54167\n2901|0.55556\n2902|0.5\n2903|0.5\n2904|0.40278\n2905|0.48611\n2906|0.5\n2907|0.5\n2908|0.5\n2909|0.16667\n2910|0.26389\n2911|0.81944\n2912|0.47222\n2913|0.5\n2914|0.55556\n2915|0.70833\n2916|0.52778\n2917|0.77778\n2918|0.59722\n2919|0.66667\n2920|0.77778\n2921|0.61111\n2922|0.81944\n2923|0.5\n2924|0.48611\n2925|0.5\n2926|0.94444\n2927|0.51389\n2928|0.54167\n2929|0.48611\n2930|0.76389\n2931|0.41667\n2932|0.55556\n2933|0.55556\n2934|0.52778\n2935|0.61111\n2936|0.63889\n2937|0.5\n2938|0.097222\n2939|0.18056\n2940|0.40278\n2941|0.48611\n2942|0.5\n2943|0.47222\n2944|0.55556\n2945|0.43056\n2946|0.56944\n2947|0.43056\n2948|0.55556\n2949|0.40278\n2950|0.40278\n2951|0.65278\n2952|0.55556\n2953|0.58333\n2954|0.11111\n2955|0.5\n2956|0.63889\n2957|0.5\n2958|0.40278\n2959|0.72222\n2960|0.43056\n2961|0.34722\n2962|0.55556\n2963|0.79167\n2964|0.59722\n2965|0.52778\n2966|0.52778\n2967|0.66667\n2968|0.34722\n2969|0.55556\n2970|0.73611\n2971|0.54167\n2972|0.51389\n2973|0.58333\n2974|0.31944\n2975|0.33333\n2976|0.63889\n2977|0.44444\n2978|0.375\n2979|0.36111\n2980|0.30556\n2981|0.41667\n2982|0.18056\n2983|0.33333\n2984|0.25\n2985|0.61111\n2986|0.26389\n2987|0.5\n2988|0.43056\n2989|0.43056\n2990|0.66667\n2991|0.66667\n2992|0.055556\n2993|0.23611\n2994|0.30556\n2995|0.61111\n2996|0.52778\n2997|0.40278\n2998|0.59722\n2999|0.48611\n3000|0.5\n3001|0.5\n3002|0.40278\n3003|0.48611\n3004|0.44444\n3005|0.47222\n3006|0.63889\n3007|0.375\n3008|0.51389\n3009|0.38889\n3010|0.5\n3011|0.33333\n3012|0.125\n3013|0.29167\n3014|0.22222\n3015|0.40278\n3016|0.34722\n3017|0.23611\n3018|0.47222\n3019|0.5\n3020|0.41667\n3021|0.38889\n3022|0.29167\n3023|0.20833\n3024|0.29167\n3025|0.19444\n3026|0.375\n3027|0.25\n3028|0.5\n3029|0.55556\n3030|0.61111\n3031|0.72222\n3032|0.55556\n3033|0.5\n3034|0.84722\n3035|0.79167\n3036|0.22222\n3037|0.38889\n3038|0.80556\n3039|0.76389\n3040|0.77778\n3041|0.5\n3042|0.56944\n3043|0.55556\n3044|0.55556\n3045|0.52778\n3046|0.5\n3047|0.52778\n3048|0.19444\n3049|0.51389\n3050|0.33333\n3051|0.29167\n3052|0.41667\n3053|0.69444\n3054|0.54167\n3055|0.52778\n3056|0.56944\n3057|0.27778\n3058|0.58333\n3059|0.55556\n3060|0.52778\n3061|0.44444\n3062|0.44444\n3063|0.77778\n3064|0.79167\n3065|0.5\n3066|0.33333\n3067|0.5\n3068|0.25\n3069|0.25\n3070|0.5\n3071|0.75\n3072|0.47222\n3073|0.56944\n3074|0.27778\n3075|0.055556\n3076|0.125\n3077|0.30556\n3078|0.27778\n3079|0.5\n3080|0.72222\n3081|0.51389\n3082|0.5\n3083|0.55556\n3084|0.30556\n3085|0.43056\n3086|0.34722\n3087|0.48611\n3088|0.66667\n3089|0.56944\n3090|0.375\n3091|0.69444\n3092|0.72222\n3093|0.80556\n3094|0.94444\n3095|0.5\n3096|0.73611\n3097|0.52778\n3098|0.43056\n3099|0.52778\n3100|0.5\n3101|0.5\n3102|0.52778\n3103|0.625\n3104|0.70833\n3105|0.43056\n3106|0.36111\n3107|0.33333\n3108|0.35417\n3109|0.52778\n3110|0.56944\n3111|0.5\n3112|0.52778\n3113|0.44444\n3114|0.27778\n3115|0.36111\n3116|0.5\n3117|0.33333\n3118|0.48611\n3119|0.625\n3120|0.5\n3121|0.54167\n3122|0.36111\n3123|0.5\n3124|0.30556\n3125|0.5\n3126|0.38889\n3127|0.23611\n3128|0.38889\n3129|0.55556\n3130|0.47222\n3131|0.625\n3132|0.51389\n3133|0.52778\n3134|0.52778\n3135|0.55556\n3136|0.29167\n3137|0.51389\n3138|0.34722\n3139|0.45833\n3140|0.33333\n3141|0.33333\n3142|0.27778\n3143|0.68056\n3144|0.54167\n3145|0.66667\n3146|0.375\n3147|0.5\n3148|0.52778\n3149|0.79167\n3150|0.68056\n3151|0.5\n3152|0.44444\n3153|0.44444\n3154|0.68056\n3155|0.55556\n3156|0.63889\n3157|0.51389\n3158|0.55556\n3159|0.5\n3160|0.51389\n3161|0.72222\n3162|0.5\n3163|0.44444\n3164|0.61111\n3165|0.55556\n3166|0.79167\n3167|0.51389\n3168|0.45833\n3169|0.43056\n3170|0.59722\n3171|0.63889\n3172|0.66667\n3173|0.5\n3174|0.11111\n3175|0.41667\n3176|0.55556\n3177|0.66667\n3178|0.625\n3179|0.52778\n3180|0.58333\n3181|0.54167\n3182|0.5\n3183|0.5\n3184|0.33333\n3185|0.69444\n3186|0.54167\n3187|0.76389\n3188|0.54167\n3189|0.61111\n3190|0.81944\n3191|0.5\n3192|0.80556\n3193|0.19444\n3194|0.43056\n3195|0.61111\n3196|0.5\n3197|0.43056\n3198|0.13889\n3199|0.36111\n3200|0.56944\n3201|0.51389\n3202|0.625\n3203|0.38889\n3204|0.51389\n3205|0.45833\n3206|0.44444\n3207|0.41667\n3208|0.55556\n3209|0.54167\n3210|0.25\n3211|0.68056\n3212|0.58333\n3213|0.88889\n3214|0.44444\n3215|0.5\n3216|0.30556\n3217|0.52778\n3218|0.5\n3219|0.52778\n3220|0.5\n3221|0.51389\n3222|0.51389\n3223|0.5\n3224|0.5\n3225|0.48611\n3226|0.5\n3227|0.18056\n3228|0.43056\n3229|0.36111\n3230|0.36111\n3231|0.55556\n3232|0.55556\n3233|0.73611\n3234|0.5\n3235|0.5\n3236|0.51389\n3237|0.5\n3238|0.5\n3239|0.48611\n3240|0.45833\n3241|0.52778\n3242|0.48611\n3243|0.5\n3244|0.5\n3245|0.54167\n3246|0.55556\n3247|0.63889\n3248|0.30556\n3249|0.375\n3250|0.65278\n3251|0.5\n3252|0.5\n3253|0.5\n3254|0.5\n3255|0.5\n3256|0.055556\n3257|0.5\n3258|0.5\n3259|0.33333\n3260|0.31944\n3261|0.5\n3262|0.51389\n3263|0.55556\n3264|0.33333\n3265|0.45833\n3266|0.51389\n3267|0.93056\n3268|0.76389\n3269|0.36111\n3270|0.30556\n3271|0.5\n3272|0.5\n3273|0.18056\n3274|0.38542\n3275|0.5\n3276|0.72222\n3277|0.22222\n3278|0.5\n3279|0.18056\n3280|0.5\n3281|0.5\n3282|0.47222\n3283|0.5\n3284|0.25\n3285|0.22222\n3286|0.5\n3287|0.5\n3288|0.51389\n3289|0.83333\n3290|0.58333\n3291|0.40278\n3292|0.5\n3293|0.44444\n3294|0.375\n3295|0.5\n3296|0.19444\n3297|0.5\n3298|0.48611\n3299|0.27778\n3300|0.44444\n3301|0.5\n3302|0.5\n3303|0.20833\n3304|0.30556\n3305|0.22222\n3306|0.875\n3307|0.80556\n3308|0.72222\n3309|0.69444\n3310|0.26389\n3311|0.40278\n3312|0.5\n3313|0.20833\n3314|0.055556\n3315|0.36111\n3316|0.72222\n3317|0.69444\n3318|0.51389\n3319|0.79167\n3320|0.29167\n3321|0.66667\n3322|0.33333\n3323|0.52778\n3324|0.47222\n3325|0.73611\n3326|0.55556\n3327|0.36111\n3328|0.23611\n3329|0.66667\n3330|0.76389\n3331|0.52778\n3332|0.36111\n3333|0.125\n3334|0.22222\n3335|0.19444\n3336|0.5\n3337|0.30556\n3338|0.30556\n3339|0.55556\n3340|0.5\n3341|0.48611\n3342|0.38889\n3343|0.40278\n3344|0.5\n3345|0.125\n3346|0.5\n3347|0.94444\n3348|0.25\n3349|0.43056\n3350|0.29167\n3351|0.19444\n3352|0.16667\n3353|0.34722\n3354|0.27778\n3355|0.36111\n3356|0.43056\n3357|0.38889\n3358|0.51389\n3359|0.44444\n3360|0.61111\n3361|0.70833\n3362|0.18056\n3363|0.18056\n3364|0.66667\n3365|0.65278\n3366|0.61111\n3367|0.5\n3368|0.5\n3369|0.5\n3370|0.22222\n3371|0.51389\n3372|0.44444\n3373|0.5\n3374|0.625\n3375|0.58333\n3376|0.22222\n3377|0.5\n3378|0.43056\n3379|0.61111\n3380|0.5\n3381|0.52778\n3382|0.16667\n3383|0.5\n3384|0.5\n3385|0.5\n3386|0.125\n3387|0.47222\n3388|0.5\n3389|0.80556\n3390|0.70833\n3391|0.5\n3392|0.5\n3393|0.5\n3394|0.61111\n3395|0.54167\n3396|0.5\n3397|0.52778\n3398|0.75\n3399|0.66667\n3400|0.65278\n3401|0.79167\n3402|0.84722\n3403|0.48611\n3404|0.52778\n3405|0.5\n3406|0.47222\n3407|0.52778\n3408|0.44444\n3409|0.58333\n3410|0.47222\n3411|0.5\n3412|0.43056\n3413|0.47222\n3414|0.5\n3415|0.5\n3416|0.47222\n3417|0.52778\n3418|0.5\n3419|0.5\n3420|0.54167\n3421|0.5\n3422|0.61111\n3423|0.54167\n3424|0.625\n3425|0.48611\n3426|0.34722\n3427|0.375\n3428|0.51389\n3429|0.5\n3430|1\n3431|0.80556\n3432|0.5\n3433|0.5\n3434|0.54167\n3435|0.61111\n3436|0.19444\n3437|0.27778\n3438|0.25\n3439|0.25\n3440|0.18056\n3441|0.5\n3442|0.59722\n3443|0.5\n3444|0.5\n3445|0.33333\n3446|0.29167\n3447|0.38889\n3448|0.40278\n3449|0.5\n3450|0.5\n3451|0.40278\n3452|0.55556\n3453|0.20833\n3454|0.29167\n3455|0.5\n3456|0.52778\n3457|0.55556\n3458|0.43056\n3459|0.45833\n3460|0.5\n3461|0.59722\n3462|0.44444\n3463|0.5\n3464|0.5\n3465|0.16667\n3466|0.125\n3467|0.013889\n3468|0.54167\n3469|0.59722\n3470|0.23611\n3471|0.23611\n3472|0.26389\n3473|0.55556\n3474|0.76389\n3475|0.59722\n3476|0.93056\n3477|0.95833\n3478|1\n3479|0.25\n3480|0.47222\n3481|0.76389\n3482|0.69444\n3483|0.69444\n3484|0.66667\n3485|0.52778\n3486|0.27778\n3487|0.055556\n3488|0.72222\n3489|0.5\n3490|0.5\n3491|0.59722\n3492|0.55556\n3493|0.45833\n3494|0.5\n3495|0.5\n3496|0.59722\n3497|0.5\n3498|0.5\n3499|0.5\n3500|0.5\n3501|0.5\n3502|0.55556\n3503|0.5\n3504|0.5\n3505|0.5\n3506|0.5\n3507|0.52778\n3508|0.45833\n3509|0.27778\n3510|0.30556\n3511|0.33333\n3512|0.125\n3513|0.31944\n3514|0.29167\n3515|0.19444\n3516|0.013889\n3517|0.47222\n3518|0.5\n3519|0.48611\n3520|0.11111\n3521|0.5\n3522|0.5\n3523|0.5\n3524|0.5\n3525|0.5\n3526|0.069444\n3527|0.5\n3528|0.5\n3529|0.375\n3530|0.5\n3531|0.51389\n3532|0.5\n3533|0.83333\n3534|0.84722\n3535|0.30556\n3536|0.34722\n3537|0.41667\n3538|0.5\n3539|0.23611\n3540|0.097222\n3541|0.25\n3542|0.5\n3543|0.5\n3544|0.5\n3545|0.5\n3546|0.70833\n3547|0.75\n3548|0.77778\n3549|0.5\n3550|0.52778\n3551|0.5\n3552|0.44444\n3553|0.45833\n3554|0.5\n3555|0.47222\n3556|0.59722\n3557|0.54167\n3558|0.27778\n3559|0.52778\n3560|0.66667\n3561|0.5\n3562|0.5\n3563|0.5\n3564|0.5\n3565|0.84722\n3566|0.81944\n3567|0.84722\n3568|0.51389\n3569|0.5\n3570|0.51389\n3571|0.097222\n3572|0.61111\n3573|0.25\n3574|0.097222\n3575|0.73611\n3576|0.51389\n3577|0.44444\n3578|0.83333\n3579|0.76389\n3580|0.70833\n3581|0.58333\n3582|0.61111\n3583|0.45833\n3584|0.31944\n3585|0.56944\n3586|0.5\n3587|0.22222\n3588|0.20833\n3589|0.5\n3590|0.5\n3591|0.5\n3592|0.29167\n3593|0.20833\n3594|0.38889\n3595|0.20833\n3596|0.16667\n3597|0.56944\n3598|0.41667\n3599|0.20833\n3600|0.22222\n3601|0.5\n3602|0.41667\n3603|0.19444\n3604|0.055556\n3605|0.27778\n3606|0.47222\n3607|0.54167\n3608|0.66667\n3609|0.65278\n3610|0.93056\n3611|0.93056\n3612|0.86111\n3613|0.77778\n3614|0.69444\n3615|0.5\n3616|0.55556\n3617|0.375\n3618|0.43056\n3619|0.5\n3620|0.33333\n3621|0.29167\n3622|0.48611\n3623|0.25\n3624|0.47222\n3625|0.52778\n3626|0.40278\n3627|0.48611\n3628|0.5\n3629|0.083333\n3630|0.56944\n3631|0.5\n3632|0.61111\n3633|0.5\n3634|0.88889\n3635|0.75\n3636|0.51389\n3637|0.55556\n3638|0.30556\n3639|0.027778\n3640|0.055556\n3641|0.055556\n3642|0.5\n3643|0.51389\n3644|0.55556\n3645|0.61111\n3646|0.34722\n3647|0.5\n3648|0.61111\n3649|0.27778\n3650|0.83333\n3651|0.73611\n3652|0.33333\n3653|0.51389\n3654|0.34722\n3655|0.27778\n3656|0.36111\n3657|0.5\n3658|0.70833\n3659|0.45833\n3660|0.19444\n3661|0.36111\n3662|0.27778\n3663|0.27778\n3664|0.26389\n3665|0.33333\n3666|0.34722\n3667|0.375\n3668|0.25\n3669|0.36111\n3670|0.47222\n3671|0.55556\n3672|0.77778\n3673|0.5\n3674|0.44444\n3675|0.38889\n3676|0.52778\n3677|0.81944\n3678|0.83333\n3679|0.45833\n3680|0.47222\n3681|0.47222\n3682|0.38889\n3683|0.30556\n3684|0.72222\n3685|0.58333\n3686|0.75\n3687|0.81944\n3688|0.73611\n3689|0.52778\n3690|0.72222\n3691|0.79167\n3692|0.61111\n3693|0.52778\n3694|0.5\n3695|0.5\n3696|0.41667\n3697|0.43056\n3698|0.48611\n3699|0.61111\n3700|0.59722\n3701|0.59722\n3702|0.68056\n3703|0.70833\n3704|0.625\n3705|0.72222\n3706|0.5\n3707|0.40278\n3708|0.5\n3709|0.65278\n3710|0.72222\n3711|0.73611\n3712|0.81944\n3713|0.61111\n3714|0.94444\n3715|0.45833\n3716|0.47222\n3717|0.48611\n3718|0.33333\n3719|0.54167\n3720|0.20833\n3721|0.22222\n3722|0.20833\n3723|0.27778\n3724|0.27778\n3725|0.25\n3726|0.45833\n3727|0.33333\n3728|0.36111\n3729|0.23611\n3730|0.26389\n3731|0.26389\n3732|0.51389\n3733|0.69444\n3734|0.47222\n3735|0.52778\n3736|0.5\n3737|0.55556\n3738|0.375\n3739|0.11111\n3740|0.11111\n3741|0.13889\n3742|0.25\n3743|0.18056\n3744|0.56944\n3745|0.66667\n3746|0.54167\n3747|0.63889\n3748|0.88889\n3749|0.83333\n3750|0.72222\n3751|0.79167\n3752|0.81944\n3753|0.375\n3754|0.36111\n3755|0.23611\n3756|0.30556\n3757|0.15278\n3758|0.59722\n3759|0.59722\n3760|0.90278\n3761|0.5\n3762|0.5\n3763|0.5\n3764|0.55556\n3765|0.55556\n3766|0.45833\n3767|0.52778\n3768|0.47222\n3769|0.55556\n3770|0.5\n3771|0.5\n3772|0.65278\n3773|0.73611\n3774|0.72222\n3775|0.69444\n3776|0.65278\n3777|0.5\n3778|0.52778\n3779|0.5\n3780|0.52778\n3781|0.33333\n3782|0.5\n3783|0.15278\n3784|0.15278\n3785|0.72222\n3786|0.65278\n3787|0.625\n3788|0.55556\n3789|0.5\n3790|0.20833\n3791|0.68056\n3792|0.93056\n3793|0.81944\n3794|0.76389\n3795|0.88889\n3796|0.36111\n3797|0.19444\n3798|0.58333\n3799|0.51389\n3800|0.84722\n3801|0.81944\n3802|0.5\n3803|0.58333\n3804|0.69444\n3805|0.59722\n3806|0.5\n3807|0.61111\n3808|0.52778\n3809|0.52778\n3810|0.44444\n3811|0.38889\n3812|0.66667\n3813|0.45833\n3814|0.52778\n3815|0.5\n3816|0.59722\n3817|0.38889\n3818|0.59722\n3819|0.76389\n3820|0.68056\n3821|0.44444\n3822|0.69444\n3823|0.625\n3824|0.94444\n3825|0.80556\n3826|0.84722\n3827|0.31944\n3828|0.81944\n3829|0.76389\n3830|0.81944\n3831|0.75\n3832|0.66667\n3833|0.77778\n3834|0.81944\n3835|0.68056\n3836|0.5\n3837|0.34722\n3838|0.77778\n3839|0.80556\n3840|0.58333\n3841|0.77778\n3842|0.66667\n3843|0.76389\n3844|0.72222\n3845|0.70833\n3846|0.47222\n3847|0.34722\n3848|0.36111\n3849|0.63889\n3850|0.58333\n3851|0.79167\n3852|0.88889\n3853|0.80556\n3854|0.69444\n3855|0.68056\n3856|0.79167\n3857|0.79167\n3858|0.66667\n3859|0.75\n3860|0.66667\n3861|0.58333\n3862|0.55556\n3863|0.44444\n3864|0.52778\n3865|0.73611\n3866|0.80556\n3867|0.5\n3868|0.55556\n3869|0.25\n3870|0.22222\n3871|0.55556\n3872|0.66667\n3873|0.80556\n3874|0.51389\n3875|0.41667\n3876|0.375\n3877|0.55556\n3878|0.49306\n3879|0.34722\n3880|0.55556\n3881|0.81944\n3882|0.76389\n3883|0.72222\n3884|0.25\n3885|0.34722\n3886|0.33333\n3887|0.5\n3888|0.51389\n3889|0.5\n3890|0.44444\n3891|0.5\n3892|0.16667\n3893|0.73611\n3894|0.80556\n3895|0.84722\n3896|0.625\n3897|0.66667\n3898|0.63889\n3899|0.72222\n3900|0.66667\n3901|0.44444\n3902|0.34722\n3903|0.36111\n3904|0.54167\n3905|0.61111\n3906|0.81944\n3907|0.77778\n3908|0.66667\n3909|0.58333\n3910|0.36111\n3911|0.43056\n3912|0.55556\n3913|0.5\n3914|0.63889\n3915|0.86111\n3916|0.63889\n3917|0.86111\n3918|0.43056\n3919|0.47222\n3920|0.38889\n3921|0.25\n3922|0.41667\n3923|0.31944\n3924|0.5\n3925|0.48611\n3926|0.43056\n3927|0.5\n3928|0.47222\n3929|0.65278\n3930|0.72222\n3931|0.51389\n3932|0.5\n3933|0.47222\n3934|0.5\n3935|0.18056\n3936|0.13889\n3937|0.027778\n3938|0.097222\n3939|0.055556\n3940|0.34722\n3941|0.48611\n3942|0.25\n3943|0.16667\n3944|0.93056\n3945|0.80556\n3946|0.875\n3947|0.54167\n3948|0.43056\n3949|0.43056\n3950|0.5\n3951|0.72222\n3952|0.40278\n3953|0.76389\n3954|0.90278\n3955|0.94444\n3956|0.41667\n3957|0.31944\n3958|0.125\n3959|0.29167\n3960|0.125\n3961|0.31944\n3962|0.22222\n3963|0.069444\n3964|0.25\n3965|0.23611\n3966|0.48611\n3967|0.38889\n3968|0.47222\n3969|0.54167\n3970|0.70833\n3971|0.76389\n3972|0.81944\n3973|0.66667\n3974|0.16667\n3975|0.20833\n3976|0.59722\n3977|0.61111\n3978|0.83333\n3979|0.77778\n3980|0.5\n3981|0.58333\n3982|0.625\n3983|0.58333\n3984|0.83333\n3985|0.70833\n3986|0.66667\n3987|0.77778\n3988|0.29167\n3989|0.38889\n3990|0.38889\n3991|0.41667\n3992|0.86111\n3993|0.59722\n3994|0.77778\n3995|0.63889\n3996|0.61111\n3997|0.66667\n3998|0.59722\n3999|0.36111\n4000|0.77778\n4001|0.16667\n4002|0.18056\n4003|0.5\n4004|0.56944\n4005|0.5\n4006|0.27778\n4007|0.43056\n4008|0.51389\n4009|0.5\n4010|0.26389\n4011|0.18056\n4012|0.25\n4013|0.73611\n4014|0.88889\n4015|0.47222\n4016|0.5\n4017|0.68056\n4018|0.73611\n4019|0.59722\n4020|0.15278\n4021|0.59722\n4022|0.52778\n4023|0.5\n4024|0.48611\n4025|0.38889\n4026|0.27778\n4027|0.31944\n4028|0.5\n4029|0.5\n4030|0.40278\n4031|0.63889\n4032|0.77778\n4033|0.72222\n4034|0.5\n4035|0.5\n4036|0.41667\n4037|0.55556\n4038|0.5\n4039|0.94444\n4040|0.5\n4041|0.5\n4042|0.44444\n4043|0.16667\n4044|0.16667\n4045|0.15278\n4046|0.73611\n4047|0.73611\n4048|0.75\n4049|0.69444\n4050|0.81944\n4051|0.83333\n4052|0.79167\n4053|0.875\n4054|0.93056\n4055|0.875\n4056|0.90278\n4057|0.52778\n4058|0.625\n4059|0.61111\n4060|0.44444\n4061|0.55556\n4062|0.33333\n4063|0.38889\n4064|0.36111\n4065|0.31944\n4066|0.55556\n4067|0.63889\n4068|0.5\n4069|0.5\n4070|0.59722\n4071|0.84722\n4072|0.875\n4073|0.875\n4074|0.52778\n4075|0.86111\n4076|0.94444\n4077|0.97222\n4078|0.77778\n4079|0.5\n4080|0.61111\n4081|0.65278\n4082|0.75\n4083|0.44444\n4084|0.29167\n4085|0.61111\n4086|0.72222\n4087|0.77778\n4088|0.54167\n4089|0.5\n4090|0.5\n4091|0.29167\n4092|0.52778\n4093|0.875\n4094|0.45833\n4095|0.70833\n4096|0.91667\n4097|0.54167\n4098|0.44444\n4099|0.47222\n4100|0.5\n4101|0.41667\n4102|0.38889\n4103|0.41667\n4104|0.38889\n4105|0.36111\n4106|0.58333\n4107|0.63889\n4108|0.52778\n4109|0.44444\n4110|0.43056\n4111|0.48611\n4112|0.77778\n4113|0.79167\n4114|0.77778\n4115|0.5\n4116|0.69444\n4117|0.75\n4118|0.83333\n4119|0.79167\n4120|0.84722\n4121|0.59722\n4122|0.40278\n4123|0.47222\n4124|0.52778\n4125|0.63889\n4126|0.56944\n4127|0.66667\n4128|0.65278\n4129|0.79167\n4130|0.72222\n4131|0.58333\n4132|0.625\n4133|0.55556\n4134|0.61111\n4135|0.30556\n4136|0.5\n4137|0.48611\n4138|0.5\n4139|0.94444\n4140|0.65278\n4141|0.75\n4142|0.61111\n4143|0.47222\n4144|0.84722\n4145|0.91667\n4146|0.38889\n4147|0.56944\n4148|0.5\n4149|0.59722\n4150|0.72222\n4151|0.84722\n4152|0.66667\n4153|0.66667\n4154|0.875\n4155|0.77778\n4156|0.91667\n4157|0.81944\n4158|0.93056\n4159|0.81944\n4160|0.94444\n4161|0.5\n4162|0.5\n4163|0.73611\n4164|0.72222\n4165|0.5\n4166|0.19444\n4167|0.625\n4168|0.65278\n4169|0.56944\n4170|0.29167\n4171|0.11111\n4172|0.27778\n4173|0.52778\n4174|0.20833\n4175|0.72222\n4176|0.90278\n4177|0.51389\n4178|0.30556\n4179|0.15278\n4180|0.66667\n4181|0.77778\n4182|0.81944\n4183|0.81944\n4184|0.5\n4185|0.22222\n4186|0.41667\n4187|0.20833\n4188|0.51389\n4189|0.77778\n4190|0.69444\n4191|0.58333\n4192|0.63889\n4193|0.55556\n4194|0.55556\n4195|0.16667\n4196|0.5\n4197|0.16667\n4198|0.19444\n4199|0.097222\n4200|0.56944\n4201|0.73611\n4202|0.5\n4203|0.75\n4204|0.66667\n4205|0.77778\n4206|0.83333\n4207|0.94444\n4208|0.69444\n4209|0.80556\n4210|0.80556\n4211|0.88889\n4212|0.76389\n4213|0.72222\n4214|0.79167\n4215|0.66667\n4216|0.83333\n4217|0.84722\n4218|0.63889\n4219|0.43056\n4220|0.34722\n4221|0.13889\n4222|0.51389\n4223|0.5\n4224|0.5\n4225|0.41667\n4226|0.5\n4227|0.43056\n4228|0.61111\n4229|0.52778\n4230|0.61111\n4231|0.25\n4232|0.15278\n4233|0.125\n4234|0.11111\n4235|0.20833\n4236|0.041667\n4237|0.069444\n4238|0.76389\n4239|0.61111\n4240|0.94444\n4241|0.80556\n4242|0.59722\n4243|0.73611\n4244|0.72222\n4245|0.30556\n4246|0.61111\n4247|0.81944\n4248|0.84722\n4249|1\n4250|0.88889\n4251|0.83333\n4252|0.65278\n4253|0.5\n4254|0.5\n4255|0.41667\n4256|0.52778\n4257|0.125\n4258|0.625\n4259|0.63889\n4260|0.41667\n4261|0.34722\n4262|0.48611\n4263|0.33333\n4264|0.59722\n4265|0.77778\n4266|0.5\n4267|0.55556\n4268|0.23611\n4269|0.47222\n4270|0.22222\n4271|0.48611\n4272|0.38889\n4273|0.76389\n4274|0.97222\n4275|0.86111\n4276|0.88889\n4277|0.5\n4278|0.44444\n4279|0.5\n4280|0.65278\n4281|0.45833\n4282|0.5\n4283|0.5\n4284|0.33333\n4285|0.51389\n4286|0.58333\n4287|0.36111\n4288|0.84722\n4289|0.86111\n4290|0.80556\n4291|0.86111\n4292|0.375\n4293|0.65278\n4294|0.41667\n4295|0.5\n4296|0.56944\n4297|0.5\n4298|0.83333\n4299|0.83333\n4300|0.65278\n4301|0.83333\n4302|0.80556\n4303|0.77778\n4304|0.88889\n4305|0.86111\n4306|0.44444\n4307|0.41667\n4308|0.38889\n4309|0.5\n4310|0.61111\n4311|0.52778\n4312|0.5\n4313|0.61111\n4314|0.54167\n4315|0.70833\n4316|0.30556\n4317|0.27778\n4318|0.26389\n4319|0.73611\n4320|0.73611\n4321|0.83333\n4322|0.91667\n4323|0.68056\n4324|0.56944\n4325|0.52778\n4326|0.38889\n4327|0.5\n4328|0.51389\n4329|0.51389\n4330|0.5\n4331|0.41667\n4332|0.55556\n4333|0.54167\n4334|0.72222\n4335|0.125\n4336|0.5\n4337|0.5\n4338|0.44444\n4339|0.66667\n4340|0.30556\n4341|0.51389\n4342|0.5\n4343|0.48611\n4344|0.43056\n4345|0.52778\n4346|0.58333\n4347|0.375\n4348|0.29167\n4349|0.5\n4350|0.55556\n4351|0.5\n4352|0.51389\n4353|0.25\n4354|0.43056\n4355|0.61111\n4356|0.56944\n4357|0.55556\n4358|0.61111\n4359|0.51389\n4360|0.66667\n4361|0.5\n4362|0.48611\n4363|0.13889\n4364|0.44444\n4365|0.61111\n4366|0.19444\n4367|0\n4368|0.5\n4369|0.56944\n4370|0.61111\n4371|0.625\n4372|0.68056\n4373|0.65278\n4374|0.66667\n4375|0.83333\n4376|0.5\n4377|0.76389\n4378|0.5\n4379|0.5\n4380|0.5\n4381|0.58333\n4382|0.70833\n4383|0.51389\n4384|0.5\n4385|0.68056\n4386|0.40278\n4387|0.5\n4388|0.65278\n4389|0.58333\n4390|0.5\n4391|0.56944\n4392|0.5\n4393|0.68056\n4394|0.5\n4395|0.48611\n4396|0.44444\n4397|0.069444\n4398|0.54167\n4399|0.55556\n4400|0.58333\n4401|0.5\n4402|0.5\n4403|0.5\n4404|0.52778\n4405|0.65278\n4406|0.30556\n4407|0.48611\n4408|0.5\n4409|0.66667\n4410|0.52778\n4411|0.48611\n4412|0.5\n4413|0.5\n4414|0.5\n4415|0.45833\n4416|0.48611\n4417|0.55556\n4418|0.56944\n4419|0.51389\n4420|0.84722\n4421|0.69444\n4422|0.5\n4423|0.5\n4424|0.52778\n4425|0.51389\n4426|0.5\n4427|0.63889\n4428|0.58333\n4429|0.625\n4430|0.43056\n4431|0.40278\n4432|0.43056\n4433|0.25\n4434|0.34722\n4435|0.26389\n4436|0.31944\n4437|0.069444\n4438|0.20833\n4439|0.51389\n4440|0.5\n4441|0.47222\n4442|0.38889\n4443|0.5\n4444|0.38889\n4445|0.5\n4446|0.47222\n4447|0.43056\n4448|0.23611\n4449|0.5\n4450|0.51389\n4451|0.375\n4452|0.34722\n4453|0.26389\n4454|0.44444\n4455|0.41667\n4456|0.43056\n4457|0.11111\n4458|0.61111\n4459|0.5\n4460|0.45833\n4461|0.5\n4462|0.5\n4463|0.5\n4464|0.22222\n4465|0.5\n4466|0.5\n4467|0.61111\n4468|0.5\n4469|0.66667\n4470|0.5\n4471|0.5\n4472|0.44444\n4473|0.51389\n4474|0.33333\n4475|0.33333\n4476|0.25\n4477|0.26389\n4478|0.5\n4479|0.56944\n4480|0.43056\n4481|0.5\n4482|0.27778\n4483|0.51389\n4484|0.5\n4485|0.65278\n4486|0.44444\n4487|0.52778\n4488|0.56944\n4489|0.5\n4490|0.5\n4491|0.36111\n4492|0.30556\n4493|0.55556\n4494|0.5\n4495|0.55556\n4496|0.55556\n4497|0.43056\n4498|0.33333\n4499|0.23611\n4500|0.36111\n4501|0.48611\n4502|0.36111\n4503|0.43056\n4504|0.51389\n4505|0.5\n4506|0.27778\n4507|0.51389\n4508|0.59722\n4509|0.63889\n4510|0.54167\n4511|0.45833\n4512|0.44444\n4513|0.5\n4514|0.44444\n4515|0.51389\n4516|0.5\n4517|0.58333\n4518|0.80556\n4519|0.83333\n4520|0.5\n4521|0.48611\n4522|0.5\n4523|0.52778\n4524|0.5\n4525|0.44444\n4526|0.5\n4527|0.55556\n4528|0.13889\n4529|0.11111\n4530|0.375\n4531|0.27778\n4532|0.36111\n4533|0.5\n4534|0.25\n4535|0.5\n4536|0.5\n4537|0.31944\n4538|0.40278\n4539|0.44444\n4540|0.79167\n4541|0.41667\n4542|0.58333\n4543|0.81944\n4544|0.88889\n4545|0.79167\n4546|0.90278\n4547|0.84722\n4548|0.58333\n4549|0.5\n4550|0.375\n4551|0.5\n4552|0.5\n4553|0.54167\n4554|0.77778\n4555|0.083333\n4556|0.16667\n4557|0.43056\n4558|0.22222\n4559|0.44444\n4560|0.375\n4561|0.5\n4562|0.5\n4563|0.77778\n4564|0.40278\n4565|0.5\n4566|0.65278\n4567|0.63889\n4568|0.61111\n4569|0.44444\n4570|0.63889\n4571|0.20833\n4572|0.68056\n4573|0.5\n4574|0.5\n4575|0.5\n4576|0.31944\n4577|0.5\n4578|0.27778\n4579|0.16667\n4580|0.38889\n4581|0.875\n4582|0.5\n4583|0.56944\n4584|0.66667\n4585|0.083333\n4586|0.5\n4587|0.48611\n4588|0.5\n4589|0.58333\n4590|0.48611\n4591|0.47222\n4592|0.23611\n4593|0.30556\n4594|0.18056\n4595|0.16667\n4596|0.5\n4597|0.69444\n4598|0.90278\n4599|0.66667\n4600|0.625\n4601|0.45833\n4602|0.625\n4603|0.5\n4604|0.5\n4605|0.47222\n4606|0.52778\n4607|0.41667\n4608|0.45833\n4609|0.29167\n4610|0\n4611|0.31944\n4612|0.375\n4613|0.43056\n4614|0.36111\n4615|0.5\n4616|0.52778\n4617|0.5\n4618|0.5\n4619|0.41667\n4620|0.625\n4621|0.63889\n4622|0.5\n4623|0.75\n4624|0.69444\n4625|0.13889\n4626|0.5\n4627|0.5\n4628|0.30556\n4629|0.55556\n4630|0.43056\n4631|0.55556\n4632|0.31944\n4633|0.58333\n4634|0.66667\n4635|0.59722\n4636|0.26389\n4637|0.44444\n4638|0.51389\n4639|0.26389\n4640|0.77778\n4641|0.83333\n4642|0.77778\n4643|0.79167\n4644|0.77778\n4645|0.44444\n4646|0.44444\n4647|0.77778\n4648|0.70833\n4649|0.72222\n4650|0.55556\n4651|0.58333\n4652|0.76389\n4653|0.54167\n4654|0.38889\n4655|0.80556\n4656|0.94444\n4657|0.61111\n4658|0.80556\n4659|0.375\n4660|0.40278\n4661|0.5\n4662|0.5\n4663|0.63889\n4664|0.75\n4665|0.93056\n4666|0.44444\n4667|0.66667\n4668|0.65278\n4669|0.80556\n4670|0.875\n4671|0.75\n4672|0.44444\n4673|0.55556\n4674|0.44444\n4675|0.30556\n4676|0.25\n4677|0.52778\n4678|0.29167\n4679|0.22222\n4680|0.29167\n4681|0.30556\n4682|0.33333\n4683|0.41667\n4684|0.41667\n4685|0.51389\n4686|0.083333\n4687|0.79167\n4688|0.45833\n4689|0.55556\n4690|0.68056\n4691|0.55556\n4692|0.75\n4693|0.30556\n4694|0.16667\n4695|0.25\n4696|0.27778\n4697|0.15278\n4698|0.13889\n4699|0.36111\n4700|0.27778\n4701|0.29167\n4702|0.11111\n4703|0.40278\n4704|0.33333\n4705|0.36111\n4706|0.625\n4707|0.26389\n4708|0.41667\n4709|0.5\n4710|0.51389\n4711|0.52778\n4712|0.375\n4713|0.5\n4714|0.54167\n4715|0.5\n4716|0.34722\n4717|0.5\n4718|0.27778\n4719|0.44444\n4720|0.31944\n4721|0.5\n4722|0.16667\n4723|0.5\n4724|0.40278\n4725|0.43056\n4726|0.5\n4727|0.27778\n4728|0.47222\n4729|0.40278\n4730|0.69444\n4731|0.5\n4732|0.18056\n4733|0.25\n4734|0.26389\n4735|0.22222\n4736|0.26389\n4737|0.13889\n4738|0.5\n4739|0.5\n4740|0.5\n4741|0.65278\n4742|0.51389\n4743|0.52778\n4744|0.45833\n4745|0.5\n4746|0.44444\n4747|0.5\n4748|0.48611\n4749|0.58333\n4750|0.45833\n4751|0.48611\n4752|0.41667\n4753|0.51389\n4754|0.5\n4755|0.20833\n4756|0.5\n4757|0.5\n4758|0.47222\n4759|0.47222\n4760|0.65278\n4761|0.5\n4762|0.30556\n4763|0.25\n4764|0.25\n4765|0.5\n4766|0.5\n4767|0.30556\n4768|0.5\n4769|0.69444\n4770|0.52778\n4771|0.56944\n4772|0.79167\n4773|0.36111\n4774|0.36111\n4775|0.48611\n4776|0.5\n4777|0.41667\n4778|0.5\n4779|0.44444\n4780|0.44444\n4781|0.30556\n4782|0.25\n4783|0.84722\n4784|0.5\n4785|0.29167\n4786|0.34722\n4787|0.70833\n4788|0.70833\n4789|0.63889\n4790|0.5\n4791|0.45833\n4792|0.5\n4793|0.61111\n4794|0.40278\n4795|0.5\n4796|0.81944\n4797|0.41667\n4798|0.51389\n4799|0.375\n4800|0.48611\n4801|0.48611\n4802|0.38889\n4803|0.13889\n4804|0.68056\n4805|0.76389\n4806|0.875\n4807|0.44444\n4808|0.45833\n4809|0.055556\n4810|0.61111\n4811|0.41667\n4812|0.5\n4813|0.52778\n4814|0.61111\n4815|0.25\n4816|0.51389\n4817|0.5\n4818|0.20833\n4819|0.11111\n4820|0.33333\n4821|0.51389\n4822|0.65278\n4823|0.68056\n4824|0.13889\n4825|0.5\n4826|0.52778\n4827|0.5\n4828|0.125\n4829|0.27778\n4830|0.5\n4831|0.5\n4832|0.45833\n4833|0.11111\n4834|0.44444\n4835|0.43056\n4836|0.52778\n4837|0.43056\n4838|0.45833\n4839|0.375\n4840|0.33333\n4841|0.61111\n4842|0.31944\n4843|0.75\n4844|0.61111\n4845|0.58333\n4846|0.47222\n4847|0.70833\n4848|0.51389\n4849|0.54167\n4850|0.54167\n4851|0.51389\n4852|0.5\n4853|0.72222\n4854|0.55556\n4855|0.52778\n4856|0.41667\n4857|0.11111\n4858|0.29167\n4859|0.18056\n4860|0.27778\n4861|0.41667\n4862|0.59722\n4863|0.20833\n4864|0.26389\n4865|0.34722\n4866|0.69444\n4867|0.013889\n4868|0.31944\n4869|0.58333\n4870|0.61111\n4871|0.5\n4872|0.5\n4873|0.43056\n4874|0.52778\n4875|0.72222\n4876|0.47222\n4877|0.48611\n4878|0.125\n4879|0.48611\n4880|0.47222\n4881|0.11111\n4882|0.61111\n4883|0.51389\n4884|0.5\n4885|0.77778\n4886|0.38889\n4887|0.36111\n4888|0.51389\n4889|0.5\n4890|0.5\n4891|0.69444\n4892|0.69444\n4893|0.51389\n4894|0.30556\n4895|0.51389\n4896|0.22222\n4897|0.51389\n4898|0.48611\n4899|0.58333\n4900|0.29167\n4901|0.58333\n4902|0.55556\n4903|0.5\n4904|0.59722\n4905|0.5\n4906|0.22222\n4907|0.5\n4908|0.5\n4909|0.5\n4910|0.52778\n4911|0.48611\n4912|0.18056\n4913|0.11111\n4914|0.5\n4915|0.5\n4916|0.5\n4917|0.5\n4918|0.625\n4919|0.47222\n4920|0.55556\n4921|0.34722\n4922|0.5\n4923|0.61111\n4924|0.43056\n4925|0.23611\n4926|0.25\n4927|0.76389\n4928|0.5\n4929|0.27778\n4930|0.33333\n4931|0.47222\n4932|0.51389\n4933|0.5\n4934|0.55556\n4935|0.5\n4936|0.55556\n4937|0.5\n4938|0.47222\n4939|0.55556\n4940|0.5\n4941|0.48611\n4942|0.5\n4943|0.5\n4944|0.22222\n4945|0.61111\n4946|0.5\n4947|0.51389\n4948|0.44444\n4949|0.33333\n4950|0.36111\n4951|0.083333\n4952|0.54167\n4953|0.47222\n4954|0.73611\n4955|0.72222\n4956|0.88889\n4957|0.875\n4958|0.88889\n4959|0.5\n4960|0.5\n4961|0.55556\n4962|0.5\n4963|0.5\n4964|0.54167\n4965|0.16667\n4966|0.25\n4967|0.33333\n4968|0.5\n4969|0.43056\n4970|0.5\n4971|0.40278\n4972|0.43056\n4973|0.5\n4974|0.5\n4975|0.43056\n4976|0.44444\n4977|0.48611\n4978|0.47222\n4979|0.31944\n4980|0.52778\n4981|0.59722\n4982|0.625\n4983|0.125\n4984|0.19444\n4985|0.40278\n4986|0.54167\n4987|0.80556\n4988|0.23611\n4989|0.25\n4990|0.5\n4991|0.52778\n4992|0.58333\n4993|0.47222\n4994|0.5\n4995|0.25\n4996|0.45833\n4997|0.5\n4998|0.55556\n4999|0.72222\n5000|0.65278\n5001|0.5\n5002|0.5\n5003|0.61111\n5004|0.5\n5005|0.51389\n5006|0.5\n5007|0.5\n5008|0.55556\n5009|0.55556\n5010|0.52778\n5011|0.52778\n5012|0.51389\n5013|0.58333\n5014|0.68056\n5015|0.5\n5016|0.54167\n5017|0.52778\n5018|0.40278\n5019|0.375\n5020|0.27778\n5021|0.29167\n5022|0.40278\n5023|0.5\n5024|0.27778\n5025|0.86111\n5026|0.56944\n5027|0.29167\n5028|0.66667\n5029|0.29167\n5030|0.68056\n5031|0.51389\n5032|0.44444\n5033|0.66667\n5034|0.61111\n5035|0.625\n5036|0.52778\n5037|0.055556\n5038|0.069444\n5039|0.5\n5040|0.45833\n5041|0.38889\n5042|0.5\n5043|0.47222\n5044|0.61111\n5045|0.80556\n5046|0.80556\n5047|0.19444\n5048|0.72222\n5049|0.5\n5050|0.5\n5051|0.54167\n5052|0.69444\n5053|0.65278\n5054|0.44444\n5055|0.58333\n5056|0.44444\n5057|0.56944\n5058|0.069444\n5059|0.069444\n5060|0.083333\n5061|0.94444\n5062|0.51389\n5063|0.77778\n5064|0.65278\n5065|0.58333\n5066|0.5\n5067|0.88889\n5068|0.59722\n5069|0.66667\n5070|0.51389\n5071|0.48611\n5072|0.34722\n5073|0.5\n5074|0.5\n5075|0.5\n5076|0.5\n5077|0.5\n5078|0.54167\n5079|0.45833\n5080|0.40278\n5081|0.5\n5082|0.25\n5083|0.72222\n5084|0.20833\n5085|0.27778\n5086|0.25\n5087|0.56944\n5088|0.34722\n5089|0.34722\n5090|0.40278\n5091|0.375\n5092|0.38889\n5093|0.36111\n5094|0.5\n5095|0.40278\n5096|0.5\n5097|0.45833\n5098|0.58333\n5099|0.055556\n5100|0.41667\n5101|0.72222\n5102|0.5\n5103|0.43056\n5104|0.26389\n5105|0.45833\n5106|0.52778\n5107|0.59722\n5108|0.55556\n5109|0.51389\n5110|0.63889\n5111|0.5\n5112|0.5\n5113|0.54167\n5114|0.51389\n5115|0.84722\n5116|0.79167\n5117|0.55556\n5118|0.55556\n5119|0.55556\n5120|0.47222\n5121|0.31944\n5122|0.51389\n5123|0.58333\n5124|0.77778\n5125|0.76389\n5126|0.875\n5127|0.97222\n5128|0.63889\n5129|0.77778\n5130|0.83333\n5131|0.47222\n5132|0.5\n5133|0.45833\n5134|0.19444\n5135|0.47222\n5136|0.52778\n5137|0.5\n5138|0.31944\n5139|0.40278\n5140|0.5\n5141|0.55556\n5142|0.27778\n5143|0.29167\n5144|0.56944\n5145|0.44444\n5146|0.27778\n5147|0.22222\n5148|0.45833\n5149|0.31944\n5150|0.58333\n5151|0.52778\n5152|0.38889\n5153|0.63889\n5154|0.52778\n5155|0.34722\n5156|0.23611\n5157|0.63889\n5158|0.73611\n5159|0.5\n5160|0.41667\n5161|0.38889\n5162|0.5\n5163|0.45833\n5164|0.55556\n5165|0.56944\n5166|0.27778\n5167|0.625\n5168|0.59722\n5169|0.22222\n5170|0.5\n5171|0.41667\n5172|0.45833\n5173|0.51389\n5174|0.55556\n5175|0.51389\n5176|0.31944\n5177|0.45833\n5178|0.45833\n5179|0.20833\n5180|0.51389\n5181|0.375\n5182|0.43056\n5183|0.79167\n5184|0.77778\n5185|0.80556\n5186|0.88889\n5187|0.93056\n5188|0.79167\n5189|0.80556\n5190|0.65278\n5191|0.58333\n5192|0.5\n5193|0.29167\n5194|0.27778\n5195|0.22222\n5196|0.5\n5197|0.22222\n5198|0.52778\n5199|0.54167\n5200|0.375\n5201|0.43056\n5202|0.45833\n5203|0.5\n5204|0.5\n5205|0.36111\n5206|0.34722\n5207|0.19444\n5208|0.5\n5209|0.5\n5210|0.5\n5211|0.51389\n5212|0.55556\n5213|0.16667\n5214|0.56944\n5215|0.56944\n5216|0.5\n5217|0.5\n5218|0.44444\n5219|0.25\n5220|0.18056\n5221|0.30556\n5222|0.23611\n5223|0.16667\n5224|0.13889\n5225|0.19444\n5226|0.18056\n5227|0.45833\n5228|0.5\n5229|0.51389\n5230|0.43056\n5231|0.22222\n5232|0.16667\n5233|0.27778\n5234|0.16667\n5235|0.72222\n5236|0.61111\n5237|0.63889\n5238|0.77778\n5239|0.83333\n5240|0.875\n5241|0.86111\n5242|0.94444\n5243|0.5\n5244|0.5\n5245|0.56944\n5246|0.61111\n5247|0.5\n5248|0.58333\n5249|0.61111\n5250|0.88889\n5251|0.43056\n5252|0.30556\n5253|0.51389\n5254|0.44444\n5255|0.22222\n5256|0.54167\n5257|0.54167\n5258|0.63889\n5259|0.5\n5260|0.70833\n5261|0.5\n5262|0.5\n5263|0.5\n5264|0.5\n5265|0.22222\n5266|0.38889\n5267|0.23611\n5268|0.47222\n5269|0.34722\n5270|0.36111\n5271|0.66667\n5272|0.69444\n5273|0.77778\n5274|0.69444\n5275|0.55556\n5276|0.875\n5277|0.41667\n5278|0.66667\n5279|0.81944\n5280|0.61111\n5281|0.68056\n5282|0.63889\n5283|0.5\n5284|0.5\n5285|0.75\n5286|0.77778\n5287|0.41667\n5288|0.65278\n5289|0.63889\n5290|0.84722\n5291|0.5\n5292|0.5\n5293|0.45833\n5294|0.47222\n5295|0.44444\n5296|0.52778\n5297|0.58333\n5298|0.59722\n5299|0.55556\n5300|0.5\n5301|0.61111\n5302|0.51389\n5303|0.55556\n5304|0.63889\n5305|0.51389\n5306|0.55556\n5307|0.5\n5308|0.66667\n5309|0.55556\n5310|0.45833\n5311|0.5\n5312|0.5\n5313|0.31944\n5314|0.5\n5315|0.66667\n5316|0.65278\n5317|0.66667\n5318|0.51389\n5319|0.40278\n5320|0.52778\n5321|0.54167\n5322|0.55556\n5323|0.52778\n5324|0.54167\n5325|0.91667\n5326|0.72222\n5327|0.5\n5328|0.36111\n5329|0.33333\n5330|0.51389\n5331|0.5\n5332|0.5\n5333|0.47222\n5334|0.5\n5335|0.33333\n5336|0.26389\n5337|0.88889\n5338|0.5\n5339|0.61111\n5340|0.5\n5341|0.5\n5342|0.80556\n5343|0.44444\n5344|0.5\n5345|0.5\n5346|0.20833\n5347|0.47222\n5348|0.625\n5349|0.5\n5350|0.51389\n5351|0.5\n5352|0.54167\n5353|0.65278\n5354|0.51389\n5355|0.66667\n5356|0.81944\n5357|0.51389\n5358|0.5\n5359|0.55556\n5360|0.5\n5361|0.77778\n5362|0.29167\n5363|0.47222\n5364|0.51389\n5365|0.5\n5366|0.5\n5367|0.5\n5368|0.5\n5369|0.5\n5370|0.5\n5371|0.55556\n5372|0.5\n5373|0.44444\n5374|0.29167\n5375|0.52778\n5376|0.36111\n5377|0.47222\n5378|0.5\n5379|0.55556\n5380|0.5\n5381|0.5\n5382|0.29167\n5383|0.5\n5384|0.63889\n5385|0.5\n5386|0.5\n5387|0.48611\n5388|0.58333\n5389|0.65278\n5390|0.375\n5391|0.43056\n5392|0.43056\n5393|0.5\n5394|0.47222\n5395|0.70833\n5396|0.77778\n5397|0.52778\n5398|0.25\n5399|0.33333\n5400|0.40278\n5401|0.5\n5402|0.5\n5403|0.45833\n5404|0.52778\n5405|0.33333\n5406|0.34722\n5407|0.19444\n5408|0.63889\n5409|0.5\n5410|0.5\n5411|0.5\n5412|0.27778\n5413|0.40278\n5414|0.84722\n5415|0.55556\n5416|0.47222\n5417|0.52778\n5418|0.45833\n5419|0.47222\n5420|0.52778\n5421|0.5\n5422|0.20833\n5423|0.75\n5424|0.69444\n5425|0.80556\n5426|0.58333\n5427|0.58333\n5428|0.5\n5429|0.34722\n5430|0.47222\n5431|0.5\n5432|0.875\n5433|0.52778\n5434|0.44444\n5435|0.5\n5436|0.83333\n5437|0.66667\n5438|0.63889\n5439|0.5\n5440|0.55556\n5441|0.69444\n5442|0.61111\n5443|0.56944\n5444|0.66667\n5445|0.5\n5446|0.25\n5447|0.52778\n5448|0.20833\n5449|0.61111\n5450|0.625\n5451|0.5\n5452|0.30556\n5453|0.5\n5454|0.31944\n5455|0.45833\n5456|0.5\n5457|0.5\n5458|0.5\n5459|0.41667\n5460|0.29167\n5461|0.5\n5462|0.54167\n5463|0.5\n5464|0.63889\n5465|0.30556\n5466|0.51389\n5467|0.52778\n5468|0.69444\n5469|0.52778\n5470|0.875\n5471|0.51389\n5472|0.25\n5473|0.73611\n5474|0.5\n5475|0.5\n5476|0.76389\n5477|0.5\n5478|0.72222\n5479|0.76389\n5480|0.5\n5481|0.44444\n5482|0.48611\n5483|0.54167\n5484|0.56944\n5485|0.59722\n5486|0.65278\n5487|0.52778\n5488|0.59722\n5489|0.72222\n5490|0.69444\n5491|0.75\n5492|0.80556\n5493|0.5\n5494|0.5\n5495|0.36111\n5496|0.52778\n5497|0.5\n5498|0.5\n5499|0.56944\n5500|0.5\n5501|0.5\n5502|0.5\n5503|0.69444\n5504|0.33333\n5505|0.36111\n5506|0.25\n5507|0.73611\n5508|0.51389\n5509|0.54167\n5510|0.625\n5511|0.5\n5512|0.68056\n5513|0.70833\n5514|0.77778\n5515|0.52778\n5516|0.51389\n5517|0.5\n5518|0.18056\n5519|0.5\n5520|0.48611\n5521|0.47222\n5522|0.5\n5523|0.44444\n5524|0.25\n5525|0.27778\n5526|0.30556\n5527|0.33333\n5528|0.18056\n5529|0.52778\n5530|0.5\n5531|0.5\n5532|0.11111\n5533|0.25\n5534|0.55556\n5535|0.55556\n5536|0.52778\n5537|0.5\n5538|0.5\n5539|0.51389\n5540|0.61111\n5541|0.48611\n5542|0.54167\n5543|0.5\n5544|0.47222\n5545|0.76389\n5546|0.33333\n5547|0.5\n5548|0.5\n5549|0.5\n5550|0.5\n5551|0.44444\n5552|0.18056\n5553|0.5\n5554|0.59722\n5555|0.65278\n5556|0.44444\n5557|0.54167\n5558|0.5\n5559|0.59722\n5560|0.5\n5561|0.5\n5562|0.51389\n5563|0.51389\n5564|0.5\n5565|0.5\n5566|0.33333\n5567|0.26389\n5568|0.47222\n5569|0.44444\n5570|0.5\n5571|0.23611\n5572|0.27778\n5573|0.5\n5574|0.5\n5575|0.5\n5576|0.69444\n5577|0.52778\n5578|0.5\n5579|0.76389\n5580|0.875\n5581|0.23611\n5582|0.68056\n5583|0.54167\n5584|0.68056\n5585|0.73611\n5586|0.70833\n5587|0.88889\n5588|0.61111\n5589|0.72222\n5590|0.77778\n5591|0.79167\n5592|0.31944\n5593|0.34722\n5594|0.40278\n5595|0.36111\n5596|0.33333\n5597|0.16667\n5598|0.34722\n5599|0.625\n5600|0.43056\n5601|0.27778\n5602|0.31944\n5603|0.20833\n5604|0.23611\n5605|0.5\n5606|0.44444\n5607|0.19444\n5608|0.5\n5609|0.48611\n5610|0.33333\n5611|0.22222\n5612|0.29167\n5613|0.16667\n5614|0.51389\n5615|0.48611\n5616|0.45833\n5617|0.26389\n5618|0.47222\n5619|0.54167\n5620|0.61111\n5621|0.5\n5622|0.20833\n5623|0.25\n5624|0.41667\n5625|0.29167\n5626|0.125\n5627|0.47222\n5628|0.18056\n5629|0.44444\n5630|0.33333\n5631|0.5\n5632|0.23611\n5633|0.88889\n5634|0.5\n5635|0.5\n5636|0.44444\n5637|0.5\n5638|0.44444\n5639|0.48611\n5640|0.5\n5641|0.51389\n5642|0.44444\n5643|0.70833\n5644|0.72222\n5645|0.75\n5646|0.29167\n5647|0.61111\n5648|0.52778\n5649|0.33333\n5650|0.19444\n5651|0.29167\n5652|0.83333\n5653|0.52778\n5654|0.18056\n5655|0.16667\n5656|0.48611\n5657|0.73611\n5658|0.73611\n5659|0.55556\n5660|0.76389\n5661|0.5\n5662|0.5\n5663|0.55556\n5664|0.5\n5665|0.5\n5666|0.61111\n5667|0.5\n5668|0.63889\n5669|0.72222\n5670|0.5\n5671|0.83333\n5672|0.65278\n5673|0.91667\n5674|0.83333\n5675|0.72222\n5676|0.77778\n5677|0.90278\n5678|0.72222\n5679|0.68056\n5680|0.38889\n5681|0.58333\n5682|0.54167\n5683|0.5\n5684|0.51389\n5685|0.33333\n5686|0.5\n5687|0.5\n5688|0.55556\n5689|0.45833\n5690|0.5\n5691|0.5\n5692|0.5\n5693|0.41667\n5694|0.79167\n5695|0.81944\n5696|0.65278\n5697|0.30556\n5698|0.47222\n5699|0.58333\n5700|0.47222\n5701|0.5\n5702|0.52778\n5703|0.055556\n5704|0.55556\n5705|0.5\n5706|0.5\n5707|0.44444\n5708|0.47222\n5709|0.5\n5710|0.66667\n5711|0.625\n5712|0.51389\n5713|0.81944\n5714|0.41667\n5715|0.52778\n5716|0.84722\n5717|0.65278\n5718|0.86111\n5719|0.54167\n5720|0.41667\n5721|0.55556\n5722|0.61111\n5723|0.72222\n5724|0.44444\n5725|0.625\n5726|0.70833\n5727|0.72222\n5728|0.44444\n5729|0.5\n5730|0.43056\n5731|0.48611\n5732|0.43056\n5733|0.30556\n5734|0.25\n5735|0.44444\n5736|0.52778\n5737|0.52778\n5738|0.33333\n5739|0.5\n5740|0.5\n5741|0.54167\n5742|0.59722\n5743|0.625\n5744|0.43056\n5745|0.38889\n5746|0.44444\n5747|0.61111\n5748|0.51389\n5749|0.63889\n5750|0.16667\n5751|0.76389\n5752|0.68056\n5753|0.69444\n5754|0.5\n5755|0.61111\n5756|0.58333\n5757|0.54167\n5758|0.86111\n5759|0.5\n5760|0.45833\n5761|0.041667\n5762|0.34722\n5763|0.5\n5764|0.66667\n5765|0.55556\n5766|0.38889\n5767|0.375\n5768|0.27778\n5769|0.375\n5770|0.13889\n5771|0.15278\n5772|0.61111\n5773|0.52778\n5774|0.55556\n5775|0.5\n5776|0.72222\n5777|0.5\n5778|0.5\n5779|0.5\n5780|0.45833\n5781|0.5\n5782|0.58333\n5783|0.51389\n5784|0.44444\n5785|0.66667\n5786|0.47222\n5787|0.36111\n5788|0.83333\n5789|0.56944\n5790|0.33333\n5791|0.48611\n5792|0.33333\n5793|0.54167\n5794|0.61111\n5795|0.95833\n5796|0.55556\n5797|0.58333\n5798|0.56944\n5799|0.56944\n5800|0.375\n5801|0.34722\n5802|0.5\n5803|0.45833\n5804|0.59722\n5805|0.45833\n5806|0.44444\n5807|0.38889\n5808|0.55556\n5809|0.5\n5810|0.25\n5811|0.44444\n5812|0.041667\n5813|0.11111\n5814|0.61111\n5815|0.47222\n5816|0.58333\n5817|0.55556\n5818|0.55556\n5819|0.52778\n5820|0.5\n5821|0.5\n5822|0.55556\n5823|0.55556\n5824|0.41667\n5825|0.47222\n5826|0.5\n5827|0.52778\n5828|0.5\n5829|0.34722\n5830|0.52778\n5831|0.5\n5832|0.55556\n5833|0.59722\n5834|0.63889\n5835|0.54167\n5836|0.59722\n5837|0.81944\n5838|0.44444\n5839|0.44444\n5840|0.5\n5841|0.56944\n5842|0.5\n5843|0.79167\n5844|0.70833\n5845|0.66667\n5846|0.61111\n5847|0.75\n5848|0.5\n5849|0.77778\n5850|0.66667\n5851|0.56944\n5852|0.34722\n5853|0.31944\n5854|0.5\n5855|0.5\n5856|0.55556\n5857|0.15278\n5858|0.51389\n5859|0.45833\n5860|0.27778\n5861|0.15278\n5862|0.45833\n5863|0.47222\n5864|0.55556\n5865|0.55556\n5866|0.26389\n5867|0.47222\n5868|0.5\n5869|0.66667\n5870|0.55556\n5871|0.59722\n5872|0.43056\n5873|0.72222\n5874|0.66667\n5875|0.61111\n5876|0.5\n5877|0.5\n5878|0.54167\n5879|0.90278\n5880|0.55556\n5881|0.5\n5882|0.86111\n5883|0.84722\n5884|0.77778\n5885|0.52778\n5886|0.72222\n5887|0.45833\n5888|0.40278\n5889|0.48611\n5890|0.41667\n5891|0.58333\n5892|0.33333\n5893|0.52778\n5894|0.41667\n5895|0.38889\n5896|0.59722\n5897|0.5\n5898|0.5\n5899|0.61111\n5900|0.55556\n5901|0.15278\n5902|0.54167\n5903|0.61111\n5904|0.41667\n5905|0.083333\n5906|0.5\n5907|0.18056\n5908|0.22222\n5909|0.18056\n5910|0.5\n5911|0.15278\n5912|0.5\n5913|0.5\n5914|0.51389\n5915|0.31944\n5916|0.55556\n5917|0.83333\n5918|0.5\n5919|0.61111\n5920|0.65278\n5921|0.55556\n5922|0.47222\n5923|0.18056\n5924|0.22222\n5925|0.31944\n5926|0.38889\n5927|0.58333\n5928|0.52778\n5929|0.30556\n5930|0.63889\n5931|0.52778\n5932|0.65278\n5933|0.5\n5934|0.52778\n5935|0.51389\n5936|0.55556\n5937|0.55556\n5938|0.31944\n5939|0.11111\n5940|0.36111\n5941|0.33333\n5942|0.45833\n5943|0.26389\n5944|0.54167\n5945|0.5\n5946|0.5\n5947|0.44444\n5948|0.41667\n5949|0.5\n5950|0.23611\n5951|0.47222\n5952|0.27778\n5953|0.55556\n5954|0.45833\n5955|0.43056\n5956|0.5\n5957|0.27778\n5958|0.16667\n5959|0.16667\n5960|0.51389\n5961|0.59722\n5962|0.375\n5963|0.38889\n5964|0.23611\n5965|0.55556\n5966|0.58333\n5967|0.52778\n5968|0.5\n5969|0.5\n5970|0.875\n5971|0.5\n5972|0.5\n5973|0.80556\n5974|0.94444\n5975|0.5\n5976|0.5\n5977|0.15278\n5978|0.18056\n5979|0.083333\n5980|0.34722\n5981|0.38889\n5982|0.5\n5983|0.45833\n5984|0.22222\n5985|0.5\n5986|0.44444\n5987|0.34722\n5988|0.38889\n5989|0.5\n5990|0.5\n5991|0.33333\n5992|0.40278\n5993|0.027778\n5994|0.29167\n5995|0.34722\n5996|0.27778\n5997|0.26389\n5998|0.27778\n5999|0.43056\n6000|0.41667\n6001|0.375\n6002|0.33333\n6003|0.22222\n6004|0.38889\n6005|0\n6006|0.20833\n6007|0.055556\n6008|0.51389\n6009|0.41667\n6010|0.45833\n6011|0.25\n6012|0.41667\n6013|0.52778\n6014|0.41667\n6015|0.33333\n6016|0.63889\n6017|0.45833\n6018|0.5\n6019|0.15278\n6020|0.5\n6021|0.625\n6022|0.5\n6023|0.5\n6024|0.54167\n6025|0.5\n6026|0.66667\n6027|0.31944\n6028|0.40278\n6029|0.40278\n6030|0.055556\n6031|0.22222\n6032|0.31944\n6033|0.30556\n6034|0.19444\n6035|0.26389\n6036|0.69444\n6037|0.33333\n6038|0.44444\n6039|0.30556\n6040|0.20833\n6041|0.15278\n6042|0.16667\n6043|0.23611\n6044|0.36111\n6045|0.375\n6046|0.055556\n6047|0.51389\n6048|0.86111\n6049|0.41667\n6050|0.23611\n6051|0.41667\n6052|0.70833\n6053|0.72222\n6054|0.5\n6055|0.5\n6056|0.63889\n6057|0.5\n6058|0.47222\n6059|0.48611\n6060|0.36111\n6061|0.29167\n6062|0.27778\n6063|0.41667\n6064|0.45833\n6065|0.25\n6066|0.29167\n6067|0.40278\n6068|0.26389\n6069|0.31944\n6070|0.40278\n6071|0.34722\n6072|0.25\n6073|0.33333\n6074|0.36111\n6075|0.72222\n6076|0.61111\n6077|0.19444\n6078|0.027778\n6079|0.27778\n6080|0.68056\n6081|0.5\n6082|0.5\n6083|0.55556\n6084|0.44444\n6085|0.29167\n6086|0.40278\n6087|0.30556\n6088|0.44444\n6089|0.27778\n6090|0.38889\n6091|0.40278\n6092|0.43056\n6093|0.18056\n6094|0.013889\n6095|0.51389\n6096|0.5\n6097|0.31944\n6098|0.5\n6099|0.27778\n6100|0.5\n6101|0.5\n6102|0.013889\n6103|0.5\n6104|0.16667\n6105|0.31944\n6106|0.48611\n6107|0.5\n6108|0.5\n6109|0.61111\n6110|0.58333\n6111|0.66667\n6112|0.5\n6113|0.5\n6114|0.51389\n6115|0.59722\n6116|0.29167\n6117|0.26389\n6118|0.36111\n6119|0.29167\n6120|0.375\n6121|0.55556\n6122|0.5\n6123|0.65278\n6124|0.65278\n6125|0.59722\n6126|0.65278\n6127|0.77778\n6128|0.66667\n6129|0.36111\n6130|0.65278\n6131|0.58333\n6132|0.5\n6133|0.45833\n6134|0.36111\n6135|0.375\n6136|0.5\n6137|0.69444\n6138|0.58333\n6139|0.52778\n6140|0.48611\n6141|0.48611\n6142|0.5\n6143|0.61111\n6144|0.625\n6145|0.59722\n6146|0.73611\n6147|0.68056\n6148|0.5\n6149|0.44444\n6150|0.5\n6151|0.63889\n6152|0.55556\n6153|0.5\n6154|0.47222\n6155|0.33333\n6156|0.38889\n6157|0.5\n6158|0.54167\n6159|0.83333\n6160|0.75\n6161|0.80556\n6162|0.77778\n6163|0.55556\n6164|0.5\n6165|0.5\n6166|0.68056\n6167|0.77778\n6168|0.80556\n6169|0.34722\n6170|0.43056\n6171|0.63889\n6172|0.33333\n6173|0.54167\n6174|0.54167\n6175|0.31944\n6176|0.72222\n6177|0.80556\n6178|0.55556\n6179|0.59722\n6180|0.52778\n6181|0.66667\n6182|0.79167\n6183|0.77778\n6184|0.5\n6185|0.125\n6186|0.55556\n6187|0.55556\n6188|0.25\n6189|0.61111\n6190|0.52778\n6191|0.58333\n6192|0.65278\n6193|0.55556\n6194|0.51389\n6195|0.52778\n6196|0.5\n6197|0.79167\n6198|0.58333\n6199|0.5\n6200|0.5\n6201|0.72222\n6202|0.56944\n6203|0.5\n6204|0.33333\n6205|0.38889\n6206|0.69444\n6207|0.79167\n6208|0.81944\n6209|0.55556\n6210|0.625\n6211|0.40278\n6212|0.59722\n6213|0.59722\n6214|0.5\n6215|0.29167\n6216|0.375\n6217|0.52778\n6218|0.69444\n6219|0.63889\n6220|0.76389\n6221|0.51389\n6222|0.81944\n6223|0.76389\n6224|0.90278\n6225|0.70833\n6226|0.84722\n6227|0.59722\n6228|0.65278\n6229|0.5\n6230|0.31944\n6231|0.59722\n6232|0.54167\n6233|0.5\n6234|0.83333\n6235|0.61111\n6236|0.5\n6237|0.55556\n6238|0.55556\n6239|0.79167\n6240|0.52778\n6241|0.51389\n6242|0.5\n6243|0.5\n6244|0.19444\n6245|0.26389\n6246|0.5\n6247|0.5\n6248|0.47222\n6249|0.58333\n6250|0.77778\n6251|0.77778\n6252|0.81944\n6253|0.5\n6254|0.5\n6255|0.58333\n6256|0.5\n6257|0.625\n6258|0.5\n6259|0.44444\n6260|0.58333\n6261|0.55556\n6262|0.54167\n6263|0.625\n6264|0.5\n6265|0.56944\n6266|0.65278\n6267|0.52778\n6268|0.34722\n6269|0.625\n6270|0.34722\n6271|0.51389\n6272|0.55556\n6273|0.5\n6274|0.59722\n6275|0.44444\n6276|0.34722\n6277|0.36111\n6278|0.5\n6279|0.47222\n6280|0.63889\n6281|0.61111\n6282|0.61111\n6283|0.52778\n6284|0.47222\n6285|0.52778\n6286|0.40278\n6287|0.77778\n6288|0.77778\n6289|0.63889\n6290|0.5\n6291|0.55556\n6292|0.41667\n6293|0.5\n6294|0.30556\n6295|0.5\n6296|0.22222\n6297|0.47222\n6298|0.44444\n6299|0.54167\n6300|0.54167\n6301|0.55556\n6302|0.5\n6303|0.63889\n6304|0.75\n6305|0.5\n6306|0.44444\n6307|0.58333\n6308|0.58333\n6309|0.40278\n6310|0.52778\n6311|0.5\n6312|0.36111\n6313|0.16667\n6314|0.91667\n6315|0.44444\n6316|0.68056\n6317|0.48611\n6318|0.86111\n6319|0.84722\n6320|0.86111\n6321|0.875\n6322|0.70833\n6323|0.55556\n6324|0.51389\n6325|0.48611\n6326|0.5\n6327|0.5\n6328|0.44444\n6329|0.54167\n6330|0.58333\n6331|0.5\n6332|0.69444\n6333|0.33333\n6334|0.5\n6335|0.83333\n6336|0.5\n6337|0.5\n6338|0.26389\n6339|0.54167\n6340|0.27778\n6341|0.16667\n6342|0.5\n6343|0.55556\n6344|0.15278\n6345|0.5\n6346|0.45833\n6347|0.54167\n6348|0.51389\n6349|0.5\n6350|0.54167\n6351|0.52778\n6352|0.68056\n6353|0.5\n6354|0.5\n6355|0.5\n6356|0.43056\n6357|0.44444\n6358|0.61111\n6359|0.70833\n6360|0.69444\n6361|0.76389\n6362|0.66667\n6363|0.72222\n6364|0.84722\n6365|0.5\n6366|0.88889\n6367|0.5\n6368|0.38889\n6369|0.59722\n6370|0.68056\n6371|0.59722\n6372|0.375\n6373|0.33333\n6374|0.5\n6375|0.55556\n6376|0.5\n6377|0.5\n6378|0.30556\n6379|0.22222\n6380|0.5\n6381|0.55556\n6382|0.18056\n6383|0.31944\n6384|0.61111\n6385|0.55556\n6386|0.5\n6387|0.55556\n6388|0.23611\n6389|0.375\n6390|0.69444\n6391|0.27778\n6392|0.25\n6393|0.22222\n6394|0.25\n6395|0.5\n6396|0.55556\n6397|0.5\n6398|0.5\n6399|0.59722\n6400|0.63889\n6401|0.47222\n6402|0.56944\n6403|0.76389\n6404|0.66667\n6405|0.70833\n6406|0.055556\n6407|0.31944\n6408|0.90278\n6409|0.73611\n6410|0.31944\n6411|0.34722\n6412|0.375\n6413|0.31944\n6414|0.43056\n6415|0.51389\n6416|0.55556\n6417|0.34722\n6418|0.5\n6419|0.45833\n6420|0.31944\n6421|0.47222\n6422|0.5\n6423|0.72222\n6424|0.56944\n6425|0.55556\n6426|0.66667\n6427|0.5\n6428|0.40278\n6429|0.34722\n6430|0.43056\n6431|0.33333\n6432|0.59722\n6433|0.33333\n6434|0.54167\n6435|0.68056\n6436|0.63889\n6437|0.63889\n6438|0.5\n6439|0.61111\n6440|0.68056\n6441|0.86111\n6442|0.63889\n6443|0.65278\n6444|0.66667\n6445|0.63889\n6446|0.36111\n6447|0.34722\n6448|0.56944\n6449|0.22222\n6450|0.61111\n6451|0.26389\n6452|0.5\n6453|0.375\n6454|0.30556\n6455|0.27778\n6456|0.25\n6457|0.13889\n6458|0.125\n6459|0.25\n6460|0.31944\n6461|0.22222\n6462|0.88889\n6463|0.45833\n6464|0.43056\n6465|0.5\n6466|0.5\n6467|0.38889\n6468|0.44444\n6469|0.38889\n6470|0.47222\n6471|0.61111\n6472|0.56944\n6473|0.51389\n6474|0.5\n6475|0.5\n6476|0.36111\n6477|0.5\n6478|0.5\n6479|0.38889\n6480|0.38889\n6481|0.63889\n6482|0.5\n6483|0.5\n6484|0.54167\n6485|0.52778\n6486|0.5\n6487|0.5\n6488|0.5\n6489|0.72222\n6490|0.61111\n6491|0.91667\n6492|0.81944\n6493|0.66667\n6494|0.5\n6495|0.5\n6496|0.59722\n6497|0.63889\n6498|0.5\n6499|0.13889\n6500|0.51389\n6501|0.73611\n6502|0.76389\n6503|0.73611\n6504|0.65278\n6505|0.81944\n6506|0.83333\n6507|0.69444\n6508|0.45833\n6509|0.81944\n6510|0.72222\n6511|0.55556\n6512|0.38889\n6513|0.5\n6514|0.51389\n6515|0.55556\n6516|0.66667\n6517|0.875\n6518|0.83333\n6519|0.5\n6520|0.47222\n6521|0.65278\n6522|0.75\n6523|0.77778\n6524|0.61111\n6525|0.54167\n6526|0.5\n6527|0.5\n6528|0.5\n6529|0.33333\n6530|0.16667\n6531|0.72222\n6532|0.22222\n6533|0.375\n6534|0.125\n6535|0.19444\n6536|0.27778\n6537|0.68056\n6538|0.5\n6539|0.18056\n6540|0.48611\n6541|0.29167\n6542|0.5\n6543|0.5\n6544|0.52778\n6545|0.43056\n6546|0.54167\n6547|0.52778\n6548|0.5\n6549|0.18056\n6550|0.75\n6551|0.54167\n6552|0.48611\n6553|0.33333\n6554|0.55556\n6555|0.625\n6556|0.36111\n6557|0.48611\n6558|0.5\n6559|0.5\n6560|0.5\n6561|0.76389\n6562|0.5\n6563|0.5\n6564|0.20833\n6565|0.45833\n6566|0.5\n6567|0.5\n6568|0.51389\n6569|0.47222\n6570|0.45833\n6571|0.47222\n6572|0.23611\n6573|0.19444\n6574|0.58333\n6575|0.63889\n6576|0.56944\n6577|0.29167\n6578|0.22222\n6579|0.41667\n6580|0.27778\n6581|0.34722\n6582|0.13889\n6583|0.083333\n6584|0.5\n6585|0.34722\n6586|0.52778\n6587|0.625\n6588|0.58333\n6589|0.66667\n6590|0.51389\n6591|0.66667\n6592|0.47222\n6593|0.65278\n6594|0.5\n6595|0.38889\n6596|0.38889\n6597|0.54167\n6598|0.86111\n6599|0.77778\n6600|0.52778\n6601|0.70833\n6602|0.5\n6603|0.5\n6604|0.34722\n6605|0.52778\n6606|0.51389\n6607|0.36111\n6608|0.5\n6609|0.61111\n6610|0.5\n6611|0.44444\n6612|0.59028\n6613|0.5\n6614|0.56944\n6615|0.5\n6616|0.55556\n6617|0.069444\n6618|0.5\n6619|0.26389\n6620|0.5\n6621|0.40278\n6622|0.44444\n6623|0.52778\n6624|0.51389\n6625|0.55556\n6626|0.5\n6627|0.68056\n6628|0.91667\n6629|0.44444\n6630|0.45833\n6631|0.25\n6632|0.52778\n6633|0.44444\n6634|0.40278\n6635|0.5\n6636|0.5\n6637|0.18056\n6638|0.55556\n6639|0.79167\n6640|0.5\n6641|0.55556\n6642|0.5\n6643|0.51389\n6644|0.27778\n6645|0.5\n6646|0.44444\n6647|0.58333\n6648|0.26389\n6649|0.51389\n6650|0.44444\n6651|0.86111\n6652|0.47222\n6653|0.52778\n6654|0.72222\n6655|0.33333\n6656|0.5\n6657|0.61111\n6658|0.73611\n6659|0.70833\n6660|0.5\n6661|0.5\n6662|0.43056\n6663|0.5\n6664|0.76389\n6665|0.83333\n6666|0.91667\n6667|0.73611\n6668|0.80556\n6669|0.70833\n6670|0.66667\n6671|0.54167\n6672|0.5\n6673|0.72222\n6674|0.68056\n6675|0.5\n6676|0.48611\n6677|0.38889\n6678|0.30556\n6679|0.5\n6680|0.375\n6681|0.72222\n6682|0.41667\n6683|0.79167\n6684|0.5\n6685|0.59722\n6686|0.5\n6687|0.61111\n6688|0.79167\n6689|0.59722\n6690|0.61111\n6691|0.55556\n6692|0.65278\n6693|0.65278\n6694|0.36111\n6695|0.38889\n6696|0.54167\n6697|0.48611\n6698|0.34722\n6699|0.5\n6700|0.5\n6701|0.5\n6702|0.51389\n6703|0.45833\n6704|0.5\n6705|0.48611\n6706|0.47222\n6707|0.5\n6708|0.65278\n6709|0.20833\n6710|0.5\n6711|0.18056\n6712|0.70833\n6713|0.5\n6714|0.5\n6715|0.625\n6716|0.72222\n6717|0.83333\n6718|0.76389\n6719|0.84722\n6720|0.73611\n6721|0.5\n6722|0.5\n6723|0.5\n6724|0.47222\n6725|0.27778\n6726|0.38889\n6727|0.55556\n6728|0.55556\n6729|0.5\n6730|0.38889\n6731|0.36111\n6732|0.375\n6733|0.31944\n6734|0.48611\n6735|0.55556\n6736|0.055556\n6737|0.44444\n6738|0.5\n6739|0.5\n6740|0.44444\n6741|0.44444\n6742|0.5\n6743|0.26389\n6744|0.25\n6745|0.055556\n6746|0.63889\n6747|0.63889\n6748|0.75\n6749|0.75\n6750|0.72222\n6751|0.625\n6752|0.72222\n6753|0.69444\n6754|0.5\n6755|0.5\n6756|0.52778\n6757|0.43056\n6758|0.63889\n6759|0.5\n6760|0.40278\n6761|0.40278\n6762|0.83333\n6763|0.63889\n6764|0.44444\n6765|0.625\n6766|0.59722\n6767|0.41667\n6768|0.5\n6769|0.5\n6770|0.45833\n6771|0.59722\n6772|0.55556\n6773|0.59722\n6774|0.52778\n6775|0.63889\n6776|0.625\n6777|0.51389\n6778|0.43056\n6779|0.47222\n6780|0.33333\n6781|0.5\n6782|0.55556\n6783|0.5\n6784|0.5\n6785|0.5\n6786|0.68056\n6787|0.51389\n6788|0.72222\n6789|0.51389\n6790|0.36111\n6791|0.54167\n6792|0.70833\n6793|0.5\n6794|0.44444\n6795|0.875\n6796|0.375\n6797|0.59722\n6798|0.72222\n6799|0.59722\n6800|0.79167\n6801|0.79167\n6802|0.72222\n6803|0.083333\n6804|0.59722\n6805|0.5\n6806|0.11111\n6807|0.13889\n6808|0.79167\n6809|0.52778\n6810|0.70833\n6811|0.375\n6812|0.31944\n6813|0.26389\n6814|0.61111\n6815|0.72222\n6816|0.5\n6817|0.47222\n6818|0.38889\n6819|0.68056\n6820|0.52778\n6821|0.33333\n6822|0.19444\n6823|0.51389\n6824|0.80556\n6825|0.63889\n6826|0.5\n6827|0.70833\n6828|0.76389\n6829|0.51389\n6830|0.625\n6831|0.70833\n6832|0.55556\n6833|0.79167\n6834|0.84722\n6835|0.91667\n6836|0.84722\n6837|0.36111\n6838|0.83333\n6839|0.65278\n6840|0.63889\n6841|0.77778\n6842|0.77778\n6843|0.84722\n6844|0.80556\n6845|0.69444\n6846|0.5\n6847|0.59722\n6848|0.76389\n6849|0.33333\n6850|0.79167\n6851|0.54167\n6852|0.5\n6853|0.43056\n6854|0.44444\n6855|0.44444\n6856|0.51389\n6857|0.47222\n6858|0.48611\n6859|0.45833\n6860|0.55556\n6861|0.58333\n6862|0.20833\n6863|0.44444\n6864|0.5\n6865|0.79167\n6866|0.55556\n6867|0.31944\n6868|0.77778\n6869|0.56944\n6870|0.88889\n6871|0.63889\n6872|0.51389\n6873|0.5\n6874|0.88889\n6875|0.90278\n6876|0.66667\n6877|0.875\n6878|0.80556\n6879|0.88889\n6880|0.79167\n6881|0.5\n6882|0.55556\n6883|0.5\n6884|0.25\n6885|0.27778\n6886|0.36111\n6887|0.5\n6888|0.23611\n6889|0.625\n6890|0.72222\n6891|0.66667\n6892|0.5\n6893|0.58333\n6894|0.61111\n6895|0.55556\n6896|0.34722\n6897|0.52778\n6898|0.55556\n6899|0.40278\n6900|0.33333\n6901|0.41667\n6902|0.72222\n6903|0.40278\n6904|0.44444\n6905|0.45833\n6906|0.58333\n6907|0.54167\n6908|0.5\n6909|0.61111\n6910|0.5\n6911|0.23611\n6912|0.26389\n6913|0.31944\n6914|0.36111\n6915|0.5\n6916|0.48611\n6917|0.45833\n6918|0.5\n6919|0.31944\n6920|0.5\n6921|0.34722\n6922|0.5\n6923|0.5\n6924|0.33333\n6925|0.51389\n6926|0.5\n6927|0.55556\n6928|0.48611\n6929|0.52778\n6930|0.44444\n6931|0.65278\n6932|0.5\n6933|0.5\n6934|0.51389\n6935|0.79167\n6936|0.76389\n6937|0.86111\n6938|0.75\n6939|0.84722\n6940|0.875\n6941|0.59722\n6942|0.40278\n6943|0.56944\n6944|0.47222\n6945|0.45833\n6946|0.36111\n6947|0.15278\n6948|0.5\n6949|0.23611\n6950|0.55556\n6951|0.55556\n6952|0.51389\n6953|0.52778\n6954|0.54167\n6955|0.61111\n6956|0.5\n6957|0.44444\n6958|0.75\n6959|0.22222\n6960|0.30556\n6961|0.54167\n6962|0.36111\n6963|0.40278\n6964|0.30556\n6965|0.54167\n6966|0.5\n6967|0.51389\n6968|0.59722\n6969|0.5\n6970|0.5\n6971|0.30556\n6972|0.5\n6973|0.5\n6974|0.48611\n6975|0.5\n6976|0.5\n6977|0.55556\n6978|0.47222\n6979|0.5\n6980|0.63889\n6981|0.30556\n6982|0.34722\n6983|0.55556\n6984|0.30556\n6985|0.77778\n6986|0.83333\n6987|0.54167\n6988|0.43056\n6989|0.69444\n6990|0.45833\n6991|0.375\n6992|0.68056\n6993|0.65278\n6994|0.77778\n6995|0.69444\n6996|0.43056\n6997|0.58333\n6998|0.27778\n6999|0.76389\n7000|0.5\n7001|0.79167\n7002|0.47222\n7003|0.63889\n7004|0.56944\n7005|0.55556\n7006|0.5\n7007|0.73611\n7008|0.16667\n7009|0.55556\n7010|0.15278\n7011|0.11111\n7012|0.25\n7013|0.16667\n7014|0.29167\n7015|0.375\n7016|0.44444\n7017|0.47222\n7018|0.45833\n7019|0.72222\n7020|0.43056\n7021|0.38889\n7022|0.45833\n7023|0.80556\n7024|0.20833\n7025|0.40278\n7026|0.5\n7027|0.20833\n7028|0.51389\n7029|0.34722\n7030|0.20833\n7031|0.34722\n7032|0.5\n7033|0.70833\n7034|0.23611\n7035|0.36111\n7036|0.88889\n7037|0.30556\n7038|0.51389\n7039|0.47222\n7040|0.15278\n7041|0.31944\n7042|0.375\n7043|0.48611\n7044|0.38889\n7045|0.45833\n7046|0.66667\n7047|0.5\n7048|0.61111\n7049|0.125\n7050|0.38889\n7051|0.11111\n7052|0.5\n7053|0.36111\n7054|0.55556\n7055|0.30556\n7056|0.5\n7057|0.44444\n7058|0.44444\n7059|0.83333\n7060|0.72222\n7061|0.5\n7062|0.5\n7063|0.5\n7064|0.79167\n7065|0.11111\n7066|0.5\n7067|0.59722\n7068|0.77778\n7069|0.80556\n7070|0.66667\n7071|0.625\n7072|0.44444\n7073|0.51389\n7074|0.63889\n7075|0.75\n7076|0.47222\n7077|0.41667\n7078|0.55556\n7079|0.31944\n7080|0.34722\n7081|0.34722\n7082|0.5\n7083|0.11111\n7084|0.75\n7085|0.40278\n7086|0.56944\n7087|0.36111\n7088|0.83333\n7089|0.5\n7090|0.5\n7091|0.47222\n7092|0.55556\n7093|0.77778\n7094|0.80556\n7095|0.63889\n7096|0.22222\n7097|0.5\n7098|0.5\n7099|0.54167\n7100|0.55556\n7101|0.59722\n7102|0.69444\n7103|0.58333\n7104|0.79167\n7105|0.72222\n7106|0.63889\n7107|0.625\n7108|0.52778\n7109|0.5\n7110|0.61111\n7111|0.51389\n7112|0.63889\n7113|0.5\n7114|0.55556\n7115|0.25\n7116|0.31944\n7117|0.31944\n7118|0.69444\n7119|0.5\n7120|0.5\n7121|0.5\n7122|0.52778\n7123|0.52778\n7124|0.5\n7125|0.55556\n7126|0.5\n7127|0.38889\n7128|0.13889\n7129|0.33333\n7130|0.19444\n7131|0.20833\n7132|0.48611\n7133|0.19444\n7134|0.70833\n7135|0.72222\n7136|0.65278\n7137|0.59722\n7138|0.56944\n7139|0.93056\n7140|0.79167\n7141|0.90278\n7142|0.93056\n7143|0.5\n7144|0.94444\n7145|0.52778\n7146|0.5\n7147|0.375\n7148|0.69444\n7149|0.69444\n7150|0.56944\n7151|0.76389\n7152|0.625\n7153|0.59722\n7154|0.63889\n7155|0.52778\n7156|0.52778\n7157|0.5\n7158|0.5\n7159|0.69444\n7160|0.48611\n7161|0.5\n7162|0.48611\n7163|0.5\n7164|0.5\n7165|0.51389\n7166|0.61111\n7167|0.5\n7168|0.5\n7169|0.5\n7170|0.44444\n7171|0.51389\n7172|0.5\n7173|0.76389\n7174|0.59722\n7175|0.54167\n7176|0.43056\n7177|0.40278\n7178|0.61111\n7179|0.18056\n7180|0.55556\n7181|0.47222\n7182|0.22222\n7183|0.13889\n7184|0.25\n7185|0.40278\n7186|0.45833\n7187|0.44444\n7188|0.51389\n7189|0.52778\n7190|0.40278\n7191|0.375\n7192|0.5\n7193|0.59722\n7194|0.5\n7195|0.5\n7196|0.5\n7197|0.33333\n7198|0.40278\n7199|0.30556\n7200|0.52778\n7201|0.73611\n7202|0.5\n7203|0.52778\n7204|0.18056\n7205|0.375\n7206|0.55556\n7207|0.25\n7208|0.68056\n7209|0.56944\n7210|0.5\n7211|0.52778\n7212|0.5\n7213|0.80556\n7214|0.68056\n7215|0.875\n7216|0.43056\n7217|0.5\n7218|0.58333\n7219|0.36111\n7220|0.5\n7221|0.5\n7222|0.33333\n7223|0.5\n7224|0.5\n7225|0.5\n7226|0.5\n7227|0.47222\n7228|0.29167\n7229|0.5\n7230|0.13889\n7231|0.55556\n7232|0.51389\n7233|0.51389\n7234|0.44444\n7235|0.5\n7236|0.5\n7237|0.5\n7238|0.55556\n7239|0.52778\n7240|0.55556\n7241|0.54167\n7242|0.54167\n7243|0.33333\n7244|0.19444\n7245|0.5\n7246|0.29167\n7247|0.68056\n7248|0.90278\n7249|0.26389\n7250|0.5\n7251|0.5\n7252|0.25\n7253|0.26389\n7254|0.18056\n7255|0.055556\n7256|0.38889\n7257|0.48611\n7258|0.27778\n7259|0.29167\n7260|0.15278\n7261|0.22222\n7262|0.083333\n7263|0.13889\n7264|0.097222\n7265|0.16667\n7266|0.097222\n7267|0.44444\n7268|0.45833\n7269|0.68056\n7270|0.5\n7271|0.33333\n7272|0.27778\n7273|0.29167\n7274|0.29167\n7275|0.25\n7276|0.19444\n7277|0.41667\n7278|0.61111\n7279|0.79167\n7280|0.875\n7281|0.81944\n7282|0.55556\n7283|0.55556\n7284|0.88889\n7285|0.80556\n7286|0.73611\n7287|0.80556\n7288|0.72222\n7289|0.5\n7290|0.5\n7291|0.5\n7292|0.51389\n7293|0.125\n7294|0.52778\n7295|0.45833\n7296|0.75\n7297|0.66667\n7298|0.19444\n7299|0.15278\n7300|0.16667\n7301|0.45833\n7302|0.13889\n7303|0.30556\n7304|0.20833\n7305|0.27778\n7306|0.45833\n7307|0.5\n7308|0.5\n7309|0.63889\n7310|0.625\n7311|0.70833\n7312|0.5\n7313|0.43056\n7314|0.44444\n7315|0.44444\n7316|0.38889\n7317|0.22222\n7318|0.77778\n7319|0.72222\n7320|0.84722\n7321|0.79167\n7322|0.81944\n7323|0.055556\n7324|0.18056\n7325|0.19444\n7326|0.20833\n7327|0.11111\n7328|0.5\n7329|0.375\n7330|0.375\n7331|0.48611\n7332|0.31944\n7333|0.44444\n7334|0.5\n7335|0.44444\n7336|0.61111\n7337|0.36111\n7338|0.38889\n7339|0.56944\n7340|0.5\n7341|0.70833\n7342|0.65278\n7343|0.30556\n7344|0.34722\n7345|0.43056\n7346|0.16667\n7347|0.27778\n7348|0.61111\n7349|0.375\n7350|0.63889\n7351|0.81944\n7352|0.84722\n7353|0.27778\n7354|0.27778\n7355|0.41667\n7356|0.27778\n7357|0.45833\n7358|0.66667\n7359|0.5\n7360|0.26389\n7361|0.5\n7362|0.5\n7363|0.44444\n7364|0.23611\n7365|0.22222\n7366|0.19444\n7367|0.22222\n7368|0.16667\n7369|0.5\n7370|0.069444\n7371|0.51389\n7372|0.5\n7373|0.58333\n7374|0.11111\n7375|0.375\n7376|0.72222\n7377|0.61111\n7378|0.61111\n7379|0.94444\n7380|0.41667\n7381|0.45833\n7382|0.33333\n7383|0.36111\n7384|0.27778\n7385|0.66667\n7386|0.5\n7387|0.56944\n7388|0.59722\n7389|0.65278\n7390|0.40278\n7391|0.33333\n7392|0.41667\n7393|0.86111\n7394|0.61111\n7395|0.58333\n7396|0.84722\n7397|0.56944\n7398|0.5\n7399|0.5\n7400|0.5\n7401|0.27778\n7402|0.27778\n7403|0.5\n7404|0.5\n7405|0.5\n7406|0.51389\n7407|0.40278\n7408|0.56944\n7409|0.36111\n7410|0.625\n7411|0.81944\n7412|0.5\n7413|0.375\n7414|0.41667\n7415|0.34722\n7416|0.59722\n7417|0.47222\n7418|0.59722\n7419|0.31944\n7420|0.5\n7421|0.5\n7422|0.52778\n7423|0.5\n7424|0.5\n7425|0.83333\n7426|0.5\n7427|0.30556\n7428|0.5\n7429|0.52778\n7430|0.51389\n7431|0.47222\n7432|0.47222\n7433|0.30556\n7434|0.41667\n7435|0.19444\n7436|0.22222\n7437|0.54167\n7438|0.79167\n7439|0.83333\n7440|0.52778\n7441|0.48611\n7442|0.11111\n7443|0.52778\n7444|0.52778\n7445|0.55556\n7446|0.68056\n7447|0.59722\n7448|0.125\n7449|0.75\n7450|0.54167\n7451|0.41667\n7452|0.40278\n7453|0.5\n7454|0.5\n7455|0.38889\n7456|0.25\n7457|0.59722\n7458|0.44444\n7459|0.52778\n7460|0.5\n7461|0.59722\n7462|0.51389\n7463|0.58333\n7464|0.59722\n7465|0.44444\n7466|0.52778\n7467|0.40278\n7468|0.55556\n7469|0.56944\n7470|0.55556\n7471|0.5\n7472|0.44444\n7473|0.5\n7474|0.5\n7475|0.51389\n7476|0.5\n7477|0.5\n7478|0.27778\n7479|0.5\n7480|0.5\n7481|0.65278\n7482|0.61111\n7483|0.26389\n7484|0.20833\n7485|0.26389\n7486|0.41667\n7487|0.61111\n7488|0.47222\n7489|0.47222\n7490|0.55556\n7491|0.41667\n7492|0.58333\n7493|0.5\n7494|0.5\n7495|0.72222\n7496|0.56944\n7497|0.5\n7498|0.54167\n7499|0.52778\n7500|0.75\n7501|0.51389\n7502|0.5\n7503|0.5\n7504|0.56944\n7505|0.5\n7506|0.56944\n7507|0.29167\n7508|0.25\n7509|0.27778\n7510|0.45833\n7511|0.44444\n7512|0.54167\n7513|0.33333\n7514|0.68056\n7515|0.56944\n7516|0.63889\n7517|0.5\n7518|0.55556\n7519|0.5\n7520|0.41667\n7521|0.41667\n7522|0.26389\n7523|0.44444\n7524|0.33333\n7525|0.44444\n7526|0.47222\n7527|0.44444\n7528|0.16667\n7529|0.41667\n7530|0.83333\n7531|0.72222\n7532|0.72222\n7533|0.94444\n7534|0.84722\n7535|0.91667\n7536|0.77778\n7537|0.84722\n7538|0.38889\n7539|0.56944\n7540|0.31944\n7541|0.43056\n7542|0.55556\n7543|0.29167\n7544|0.47222\n7545|0.81944\n7546|0.80556\n7547|0.875\n7548|0.77778\n7549|0.84722\n7550|0.34722\n7551|0.83333\n7552|0.76389\n7553|0.83333\n7554|0.81944\n7555|0.80556\n7556|0.77778\n7557|0.76389\n7558|0.69444\n7559|0.5\n7560|0.097222\n7561|0.055556\n7562|0.13889\n7563|0.38889\n7564|0.36111\n7565|0.34722\n7566|0.45833\n7567|0.41667\n7568|0.40278\n7569|0.5\n7570|0.38889\n7571|0.25\n7572|0.63889\n7573|0.36111\n7574|0.40278\n7575|0.29167\n7576|0.26389\n7577|0.22222\n7578|0.66667\n7579|0.68056\n7580|0.72222\n7581|0.66667\n7582|0.77778\n7583|0.52778\n7584|0.72222\n7585|0.5\n7586|0.58333\n7587|0.51389\n7588|0.69444\n7589|0.26389\n7590|0.51389\n7591|0.52778\n7592|0.54167\n7593|0.55556\n7594|0.52778\n7595|0.38889\n7596|0.77778\n7597|0.55556\n7598|0.40278\n7599|0.47222\n7600|0.52778\n7601|0.45833\n7602|0.59722\n7603|0.52778\n7604|0.23611\n7605|0.65278\n7606|0.40278\n7607|0.40278\n7608|0.51389\n7609|0.59722\n7610|0.47222\n7611|0.65278\n7612|0.5\n7613|0.20833\n7614|0.61111\n7615|0.58333\n7616|0.70833\n7617|0.48611\n7618|0.38889\n7619|0.75\n7620|0.5\n7621|0.5\n7622|0.61111\n7623|0.70833\n7624|0.61111\n7625|0.15278\n7626|0.5\n7627|0.70833\n7628|0.65278\n7629|0.61111\n7630|0.5\n7631|0.5\n7632|0.5\n7633|0.22222\n7634|0.22222\n7635|0.041667\n7636|0.5\n7637|0.20833\n7638|0.19444\n7639|0.18056\n7640|0.70833\n7641|0.44444\n7642|0.36111\n7643|0.11111\n7644|0.76389\n7645|0.16667\n7646|0.48611\n7647|0.83333\n7648|0.19444\n7649|0.79167\n7650|0.48611\n7651|0.51389\n7652|0.83333\n7653|0.80556\n7654|0.27778\n7655|0.66667\n7656|0.83333\n7657|0.29167\n7658|0.77778\n7659|0.33333\n7660|0.26389\n7661|0.93056\n7662|0.81944\n7663|0.73611\n7664|0.84722\n7665|0.75\n7666|0.79167\n7667|0.59722\n7668|0.77778\n7669|0.36111\n7670|0.81944\n7671|0.76389\n7672|0.25\n7673|0.81944\n7674|0.25\n7675|0.76389\n7676|0.5\n7677|0.125\n7678|0.63889\n7679|0.61111\n7680|0.44444\n7681|0.38889\n7682|0.31944\n7683|0.5\n7684|0.65278\n7685|0.27778\n7686|0.63889\n7687|0.29167\n7688|0.38889\n7689|0.041667\n7690|0.45833\n7691|0.41667\n7692|0.43056\n7693|0.625\n7694|0.88889\n7695|0.55556\n7696|0.48611\n7697|0.26389\n7698|0.59722\n7699|0.33333\n7700|0.16667\n7701|0.625\n7702|0.13889\n7703|0.15278\n7704|0.72222\n7705|0.65278\n7706|0.73611\n7707|0.875\n7708|0.5\n7709|0.5\n7710|0.61111\n7711|0.5\n7712|0.15278\n7713|0.76389\n7714|0.45833\n7715|0.18056\n7716|0.44444\n7717|0.5\n7718|0.77778\n7719|0.25\n7720|0.375\n7721|0.55556\n7722|0.33333\n7723|0.52778\n7724|0.63889\n7725|0.45833\n7726|0.77778\n7727|0.54167\n7728|0.16667\n7729|0.375\n7730|0.47222\n7731|0.54167\n7732|0.375\n7733|0.27778\n7734|0.34722\n7735|0.65278\n7736|0.59722\n7737|0.48611\n7738|0.30556\n7739|0.625\n7740|0.44444\n7741|0.27083\n7742|0.20833\n7743|0.29167\n7744|0.5\n7745|0.38889\n7746|0.5\n7747|0.44444\n7748|0.44444\n7749|0.375\n7750|0.41667\n7751|0.31944\n7752|0.47222\n7753|0.56944\n7754|0.38889\n7755|0.375\n7756|0.34722\n7757|0.36111\n7758|0.80556\n7759|0.73611\n7760|0.44444\n7761|0.38889\n7762|0.76389\n7763|0.097222\n7764|0.34722\n7765|0.5\n7766|0.18056\n7767|0.95833\n7768|0.125\n7769|0.80556\n7770|0.91667\n7771|0.98611\n7772|0.5\n7773|0.33333\n7774|0.55556\n7775|0.16667\n7776|0.69444\n7777|0.77778\n7778|0.65278\n7779|0.80556\n7780|0.58333\n7781|0.55556\n7782|0.63889\n7783|0.90278\n7784|0.75\n7785|0.20833\n7786|0.055556\n7787|0.66667\n7788|0.90278\n7789|0.83333\n7790|0.16667\n7791|0.44444\n7792|0.33333\n7793|0.625\n7794|0.70833\n7795|0.83333\n7796|0.30556\n7797|0.13889\n7798|0.63889\n7799|0.5\n7800|0.16667\n7801|0.43056\n7802|0.27778\n7803|0.375\n7804|0.16667\n7805|0.22222\n7806|0.25\n7807|0.13889\n7808|0.86111\n7809|0.5\n7810|0.69444\n7811|0.52778\n7812|0.51389\n7813|0.43056\n7814|0.30556\n7815|0.80556\n7816|0.31944\n7817|0.38889\n7818|0.31944\n7819|0.27778\n7820|0.91667\n7821|0.33333\n7822|0.33333\n7823|0.48611\n7824|0.27778\n7825|0.61111\n7826|0.125\n7827|0.25\n7828|0.41667\n7829|0.26389\n7830|0.52778\n7831|0.5\n7832|0.83333\n7833|0.79167\n7834|0.5\n7835|0.83333\n7836|0.76389\n7837|0.58333\n7838|0.5\n7839|0.43056\n7840|0.16667\n7841|0.38889\n7842|0.25\n7843|0.20833\n7844|0.94444\n7845|0.90278\n7846|0.75\n7847|0.58333\n7848|0.54167\n7849|0.81944\n7850|0.70833\n7851|0.68056\n7852|0.69444\n7853|0.44444\n7854|0.80556\n7855|0.52778\n7856|0.66667\n7857|0.72222\n7858|0.027778\n7859|0.027778\n7860|0.80556\n7861|0.5\n7862|0.19444\n7863|0.20833\n7864|0.72222\n7865|0.097222\n7866|0.26389\n7867|0.16667\n7868|0.22222\n7869|0.16667\n7870|0.29167\n7871|0.11111\n7872|0.13889\n7873|0.375\n7874|0.41667\n7875|0.43056\n7876|0.47222\n7877|0.33333\n7878|0.41667\n7879|0.38889\n7880|0.26389\n7881|0.625\n7882|0.65278\n7883|0.80556\n7884|0.54167\n7885|0.51389\n7886|0.55556\n7887|0.26389\n7888|0.26389\n7889|0.70833\n7890|0.66667\n7891|0.73611\n7892|0.69444\n7893|0.76389\n7894|0.125\n7895|0.68056\n7896|0.83333\n7897|0.75\n7898|0.66667\n7899|0.40278\n7900|0.36111\n7901|0.20833\n7902|0.40278\n7903|0.11111\n7904|0.16667\n7905|0.5\n7906|0.23611\n7907|0.5\n7908|0.125\n7909|0.38889\n7910|0.69444\n7911|0.44444\n7912|0.083333\n7913|0.38889\n7914|0.58333\n7915|0.26389\n7916|0.33333\n7917|0.36111\n7918|0.375\n7919|0.33333\n7920|0.44444\n7921|0.30556\n7922|0.30556\n7923|0.45833\n7924|0.61111\n7925|0.33333\n7926|0.5\n7927|0.51389\n7928|0.625\n7929|0.63889\n7930|0.80556\n7931|0.40278\n7932|0.75\n7933|0.84722\n7934|0.77778\n7935|0.36111\n7936|0.26389\n7937|0.26389\n7938|0.11111\n7939|0.22222\n7940|0.41667\n7941|0.40278\n7942|0.5\n7943|0.25\n7944|0.20833\n7945|0.61111\n7946|0.11111\n7947|0.63889\n7948|0.76389\n7949|0.72222\n7950|0.76389\n7951|0.77778\n7952|0.34722\n7953|0.59722\n7954|0.5\n7955|0.44444\n7956|0.65278\n7957|0.625\n7958|0.70833\n7959|0.56944\n7960|0.18056\n7961|0.73611\n7962|0.38889\n7963|0.48611\n7964|0.38889\n7965|0.51389\n7966|0.52778\n7967|0.48611\n7968|0.54167\n7969|0.63889\n7970|0.65278\n7971|0.55556\n7972|0.40278\n7973|0.73611\n7974|0.013889\n7975|0.75\n7976|0.79167\n7977|0.33333\n7978|0.25\n7979|0.25\n7980|0.36111\n7981|0.48611\n7982|0.34722\n7983|0.22222\n7984|0.56944\n7985|0.77778\n7986|0.5\n7987|0.56944\n7988|0.72222\n7989|0.58333\n7990|0.44444\n7991|0.5\n7992|0.73611\n7993|0.48611\n7994|0.44444\n7995|0.5\n7996|0.52778\n7997|0.5\n7998|0.52778\n7999|0.52778\n8000|0.5\n8001|0.43056\n8002|0.51389\n8003|0.36111\n8004|0.38889\n8005|0.58333\n8006|0.40278\n8007|0.36111\n8008|0.5\n8009|0.54167\n8010|0.81944\n8011|0.84722\n8012|0.66667\n8013|0.47222\n8014|0.51389\n8015|0.38889\n8016|0.66667\n8017|0.59722\n8018|0.5\n8019|0.75\n8020|0.70833\n8021|0.75\n8022|0.68056\n8023|0.76389\n8024|0.88889\n8025|0.80556\n8026|0.86111\n8027|0.73611\n8028|0.79167\n8029|0.5\n8030|0.18056\n8031|0.30556\n8032|0.69444\n8033|0.38889\n8034|0.65278\n8035|0.5\n8036|0.65278\n8037|0.70833\n8038|0.22222\n8039|0.25\n8040|0.45833\n8041|0.25\n8042|0.5\n8043|0.5\n8044|0.61111\n8045|0.52778\n8046|0.51389\n8047|0.31944\n8048|0.51389\n8049|0.52778\n8050|0.58333\n8051|0.5\n8052|0.33333\n8053|0.44444\n8054|0.38889\n8055|0.625\n8056|0.63889\n8057|0.5\n8058|0.65278\n8059|0.625\n8060|0.5\n8061|0.66667\n8062|0.55556\n8063|0.55556\n8064|0.61111\n8065|0.63889\n8066|0.76389\n8067|0.76389\n8068|0.54167\n8069|0.22222\n8070|0.68056\n8071|0.26389\n8072|0.23611\n8073|0.26389\n8074|0.097222\n8075|0.45833\n8076|0.5\n8077|0.51389\n8078|0.70833\n8079|0.25\n8080|0.36111\n8081|0.54167\n8082|0.43056\n8083|0.51389\n8084|0.58333\n8085|0.5\n8086|0.15278\n8087|0.125\n8088|0.27778\n8089|0.31944\n8090|0.43056\n8091|0.55556\n8092|0.55556\n8093|0.70833\n8094|0.44444\n8095|0.5\n8096|0.59722\n8097|0.58333\n8098|0.51389\n8099|0.36111\n8100|0.55556\n8101|0.5\n8102|0.47222\n8103|0.5\n8104|0.61111\n8105|0.5\n8106|0.41667\n8107|0.44444\n8108|0.29167\n8109|0.5\n8110|0.61111\n8111|0.72222\n8112|0.69444\n8113|0.75\n8114|0.80556\n8115|0.84722\n8116|0.30556\n8117|0.26389\n8118|0.26389\n8119|0.23611\n8120|0.22222\n8121|0.097222\n8122|0.30556\n8123|0.47222\n8124|0.29167\n8125|0.36111\n8126|0.33333\n8127|0.34722\n8128|0.43056\n8129|0.29167\n8130|0.5\n8131|0.47222\n8132|0.61111\n8133|0.54167\n8134|0.44444\n8135|0.36111\n8136|0.75\n8137|0.625\n8138|0.5\n8139|0.5\n8140|0.61111\n8141|0.5\n8142|0.33333\n8143|0.56944\n8144|0.31944\n8145|0.40278\n8146|0.83333\n8147|0.44444\n8148|0.5\n8149|0.65278\n8150|0.65278\n8151|0.79167\n8152|0.55556\n8153|0.5\n8154|0.43056\n8155|0.72222\n8156|0.31944\n8157|0.63889\n8158|0.43056\n8159|0.5\n8160|0.5\n8161|0.5\n8162|0.25\n8163|0.30556\n8164|0.5\n8165|0.5\n8166|0.5\n8167|0.44444\n8168|0.66667\n8169|0.80556\n8170|0.66667\n8171|0.625\n8172|0.66667\n8173|0.72222\n8174|0.69444\n8175|0.73611\n8176|0.5\n8177|0.51389\n8178|0.51389\n8179|0.51389\n8180|0.5\n8181|0.55556\n8182|0.5\n8183|0.5\n8184|0.5\n8185|0.51389\n8186|0.5\n8187|0.11111\n8188|0.5\n8189|0.5\n8190|0.5\n8191|0.5\n8192|0.5\n8193|0.51389\n8194|0.5\n8195|0.51389\n8196|0.52778\n8197|0.66667\n8198|0.52778\n8199|0.5\n8200|0.5\n8201|0.51389\n8202|0.55556\n8203|0.55556\n8204|0.75\n8205|0.70833\n8206|0.68056\n8207|0.5\n8208|0.52778\n8209|0.66667\n8210|0.73611\n8211|0.48611\n8212|0.5\n8213|0.5\n8214|0.33333\n8215|0.20833\n8216|0.33333\n8217|0.18056\n8218|0.83333\n8219|0.5\n8220|0.52778\n8221|0.70833\n8222|0.63889\n8223|0.5\n8224|0.5\n8225|0.125\n8226|0.5\n8227|0.51389\n8228|0.5\n8229|0.54167\n8230|0.26389\n8231|0.5\n8232|0.44444\n8233|0.38889\n8234|0.45833\n8235|0.70833\n8236|0.63889\n8237|0.52778\n8238|0.5\n8239|0.18056\n8240|0.51389\n8241|0.15278\n8242|0.55556\n8243|0.63889\n8244|0.5\n8245|0.5\n8246|0.22222\n8247|0.43056\n8248|0.61111\n8249|0.54167\n8250|0.5\n8251|0.52778\n8252|0.55556\n8253|0.20833\n8254|0.20833\n8255|0.5\n8256|0.36111\n8257|0.069444\n8258|0.26389\n8259|0.22222\n8260|0.34722\n8261|0.23611\n8262|0.51389\n8263|0.5\n8264|0.52778\n8265|0.47222\n8266|0.23611\n8267|0.25\n8268|0.13889\n8269|0.44444\n8270|0.5\n8271|0.55556\n8272|0.44444\n8273|0.5\n8274|0.5\n8275|0.47222\n8276|0.5\n8277|0.5\n8278|0.58333\n8279|0.5\n8280|0.61111\n8281|0.5\n8282|0.5\n8283|0.54167\n8284|0.52778\n8285|0.25\n8286|0.083333\n8287|0.18056\n8288|0.30556\n8289|0.77778\n8290|0.70833\n8291|0.5\n8292|0.5\n8293|0.5\n8294|0.44444\n8295|0.5\n8296|0.77778\n8297|0.5\n8298|0.65278\n8299|0.44444\n8300|0.5\n8301|0.34722\n8302|0.44444\n8303|0.30556\n8304|0.66667\n8305|0.51389\n8306|0.5\n8307|0.5\n8308|0.41667\n8309|0.44444\n8310|0.52778\n8311|0.65278\n8312|0.48611\n8313|0.5\n8314|0.29167\n8315|0.52778\n8316|0.5\n8317|0.51389\n8318|0.5\n8319|0.38889\n8320|0.98611\n8321|0.5\n8322|0.5\n8323|0.5\n8324|0.77778\n8325|0.88889\n8326|0.93056\n8327|0.29167\n8328|0.31944\n8329|0.11111\n8330|0.15278\n8331|0.25\n8332|0.20833\n8333|0.20833\n8334|0.34722\n8335|0.16667\n8336|0.20833\n8337|0.23611\n8338|0.23611\n8339|0.055556\n8340|0.25\n8341|0.41667\n8342|0.61111\n8343|0.5\n8344|0.5\n8345|0.48611\n8346|0.41667\n8347|0.5\n8348|0.16667\n8349|0.55556\n8350|0.5\n8351|0.5\n8352|0.5\n8353|0.5\n8354|0.29167\n8355|0.58333\n8356|0.5\n8357|0.5\n8358|0.52778\n8359|0.48611\n8360|0.34722\n8361|0.66667\n8362|0.625\n8363|0.33333\n8364|0.84722\n8365|0.33333\n8366|0.16667\n8367|0.66667\n8368|0.80556\n8369|0.52778\n8370|0.5\n8371|0.48611\n8372|0.5\n8373|0.375\n8374|0.31944\n8375|0.097222\n8376|0.5\n8377|0.55556\n8378|0.26389\n8379|0.29167\n8380|0.22222\n8381|0.65278\n8382|0.5\n8383|0.33333\n8384|0.47222\n8385|0.48611\n8386|0.48611\n8387|0.38889\n8388|0.25\n8389|0.27778\n8390|0.38889\n8391|0.44444\n8392|0.54167\n8393|0.45833\n8394|0.44444\n8395|0.73611\n8396|0.63889\n8397|0.30556\n8398|0.22222\n8399|0.375\n8400|0.27778\n8401|0.125\n8402|0.5\n8403|0.5\n8404|0.44444\n8405|0.54167\n8406|0.48611\n8407|0.66667\n8408|0.33333\n8409|0.45833\n8410|0.20833\n8411|0.59722\n8412|0.5\n8413|0.56944\n8414|0.5\n8415|0.38889\n8416|0.55556\n8417|0.56944\n8418|0.55556\n8419|0.43056\n8420|0.52778\n8421|0.63889\n8422|0.52778\n8423|0.63889\n8424|0.65278\n8425|0.52778\n8426|0.34722\n8427|0.5\n8428|0.55556\n8429|0.61111\n8430|0.66667\n8431|0.75\n8432|0.61111\n8433|0.63889\n8434|0.5\n8435|0.55556\n8436|0.66667\n8437|0.58333\n8438|0.55556\n8439|0.40278\n8440|0.44444\n8441|0.44444\n8442|0.68056\n8443|0.27778\n8444|0.45833\n8445|0.43056\n8446|0.77778\n8447|0.83333\n8448|0.027778\n8449|0.30556\n8450|0.18056\n8451|0.48611\n8452|0.30556\n8453|0.22222\n8454|0.19444\n8455|0.5\n8456|0.30556\n8457|0.5\n8458|0.36111\n8459|0.5\n8460|0.55556\n8461|0.38889\n8462|0.38889\n8463|0.51389\n8464|0.47222\n8465|0.69444\n8466|0.55556\n8467|0.47222\n8468|0.27778\n8469|0.5\n8470|0.29167\n8471|0.5\n8472|0.48611\n8473|0.56944\n8474|0.375\n8475|0.56944\n8476|0.65278\n8477|0.5\n8478|0.58333\n8479|0.625\n8480|0.375\n8481|0.47222\n8482|0.5\n8483|0.51389\n8484|0.54167\n8485|0.54167\n8486|0.66667\n8487|0.375\n8488|0.30556\n8489|0.27778\n8490|0.5\n8491|0.58333\n8492|0.59722\n8493|0.63889\n8494|0.55556\n8495|0.5\n8496|0.5\n8497|0.5\n8498|0.27778\n8499|0.38889\n8500|0.15278\n8501|0.48611\n8502|0.47222\n8503|0.5\n8504|0.5\n8505|0.55556\n8506|0.26389\n8507|0.36111\n8508|0.29167\n8509|0.625\n8510|0.34722\n8511|0.30556\n8512|0.27778\n8513|0.29167\n8514|0.26389\n8515|0.83333\n8516|0.44444\n8517|0.47222\n8518|0.45833\n8519|0.34722\n8520|0.44444\n8521|0.61111\n8522|0.44444\n8523|0.51389\n8524|0.55556\n8525|0.41667\n8526|0.75\n8527|0.79167\n8528|0.69444\n8529|0.56944\n8530|0.58333\n8531|0.58333\n8532|0.51389\n8533|0.38889\n8534|0.16667\n8535|0.48611\n8536|0.5\n8537|0.25\n8538|0.33333\n8539|0.58333\n8540|0.55556\n8541|0.65278\n8542|0.13889\n8543|0.18056\n8544|0.38889\n8545|0.5\n8546|0.5\n8547|0.56944\n8548|0.22222\n8549|0.66667\n8550|0.40278\n8551|0.5\n8552|0.52778\n8553|0.43056\n8554|0.31944\n8555|0.20833\n8556|0.38889\n8557|0.43056\n8558|0.20833\n8559|0.38889\n8560|0.375\n8561|0.34722\n8562|0.40278\n8563|0.45833\n8564|0.45833\n8565|0.23611\n8566|0.5\n8567|0.13889\n8568|0.79167\n8569|0.55556\n8570|0.66667\n8571|0.84722\n8572|0.625\n8573|0.55556\n8574|0.5\n8575|0.70833\n8576|0.18056\n8577|0.375\n8578|0.44444\n8579|0.44444\n8580|0.44444\n8581|0.5\n8582|0.51389\n8583|0.5\n8584|0.5\n8585|0.5\n8586|0.40278\n8587|0.5\n8588|0.63889\n8589|0.5\n8590|0.5\n8591|0.77778\n8592|0.94444\n8593|0.56944\n8594|0.47222\n8595|0.29167\n8596|0.33333\n8597|0.013889\n8598|0.63889\n8599|0.44444\n8600|0.5\n8601|0.51389\n8602|0.81944\n8603|0.5\n8604|0.94444\n8605|0.5\n8606|0.5\n8607|0.22222\n8608|0.54167\n8609|0.59722\n8610|0.68056\n8611|0.59722\n8612|0.55556\n8613|0.54167\n8614|0.54167\n8615|0.70833\n8616|0.55556\n8617|0.69444\n8618|0.93056\n8619|0.72222\n8620|0.5\n8621|0.73611\n8622|0.41667\n8623|0.81944\n8624|0.43056\n8625|0.069444\n8626|0.19444\n8627|0.45833\n8628|0.75\n8629|0.5\n8630|0.61111\n8631|0.18056\n8632|0.16667\n8633|0.63889\n8634|0.5\n8635|0.5\n8636|0.44444\n8637|0.58333\n8638|0.55556\n8639|0.77778\n8640|0.5\n8641|0.5\n8642|0.5\n8643|0.65278\n8644|0.43056\n8645|0.48611\n8646|0.75\n8647|0.73611\n8648|0.54167\n8649|0.55556\n8650|0.76389\n8651|0.84722\n8652|0.5\n8653|0.58333\n8654|0.097222\n8655|0.54167\n8656|0.52778\n8657|0.5\n8658|0.51389\n8659|0.5\n8660|0.30556\n8661|0.51389\n8662|0.55556\n8663|0.5\n8664|0.5\n8665|0.52778\n8666|0.55556\n8667|0.75\n8668|0.69444\n8669|0.68056\n8670|0.625\n8671|0.5\n8672|0.5\n8673|0.33333\n8674|0.51389\n8675|0.36111\n8676|0.56944\n8677|0.5\n8678|0.5\n8679|0.5\n8680|0.58333\n8681|0.52778\n8682|0.48611\n8683|0.52778\n8684|0.5\n8685|0.73611\n8686|0.79167\n8687|0.81944\n8688|0.80556\n8689|0.83333\n8690|0.5\n8691|0.51389\n8692|0.48611\n8693|0.33333\n8694|0.22222\n8695|0.65278\n8696|0.5\n8697|0.47222\n8698|0.51389\n8699|0.47222\n8700|0.5\n8701|0.52778\n8702|0.94444\n8703|0.98611\n8704|0.88889\n8705|0.86111\n8706|0.76389\n8707|0.5\n8708|0.875\n8709|1\n8710|0.5\n8711|0.88889\n8712|0.33333\n8713|0.27778\n8714|0.11111\n8715|0.11111\n8716|0.34722\n8717|0.63889\n8718|0.55556\n8719|0.25\n8720|0.31944\n8721|0.5\n8722|0.51389\n8723|0.25\n8724|0.41667\n8725|0.41667\n8726|0.33333\n8727|0.55556\n8728|0.54167\n8729|0.68056\n8730|0.97222\n8731|0.43056\n8732|0.48611\n8733|0.5\n8734|0.5\n8735|0.375\n8736|0.43056\n8737|0.27778\n8738|0.51389\n8739|0.5\n8740|0.5\n8741|0.44444\n8742|0.56944\n8743|0.55556\n8744|0.33333\n8745|0.40278\n8746|0.33333\n8747|0.5\n8748|0.625\n8749|0.52778\n8750|0.51389\n8751|0.36111\n8752|0.38889\n8753|0.41667\n8754|0.51389\n8755|0.33333\n8756|0.5\n8757|0.81944\n8758|0.56944\n8759|0.55556\n8760|0.55556\n8761|0.5\n8762|0.44444\n8763|0.5\n8764|0.5\n8765|0.55556\n8766|0.48611\n8767|0.5\n8768|0.16667\n8769|0.55556\n8770|0.69444\n8771|0.59722\n8772|0.69444\n8773|0.625\n8774|0.72222\n8775|0.56944\n8776|0.44444\n8777|0.52778\n8778|0.5\n8779|0.54167\n8780|0.5\n8781|0.5\n8782|0.5\n8783|0.44444\n8784|0.5\n8785|0.41667\n8786|0.5\n8787|0.55556\n8788|0.125\n8789|0.51389\n8790|0.48611\n8791|0.5\n8792|0.59722\n8793|0.54167\n8794|0.48611\n8795|0.5\n8796|0.54167\n8797|0.375\n8798|0.44444\n8799|0.375\n8800|0.45833\n8801|0.16667\n8802|0.34722\n8803|0.30556\n8804|0.40278\n8805|0.20833\n8806|0.38889\n8807|0.11111\n8808|0.13889\n8809|0.13889\n8810|0.16667\n8811|0.25\n8812|0.36111\n8813|0.22222\n8814|0.5\n8815|0.5\n8816|0.5\n8817|0.36111\n8818|0.30556\n8819|0.29167\n8820|0.41667\n8821|0.22222\n8822|0.19444\n8823|0.22222\n8824|0.5\n8825|0.47222\n8826|0.375\n8827|0.66667\n8828|0.51389\n8829|0.52778\n8830|0.55556\n8831|0.61111\n8832|0.66667\n8833|0.5\n8834|0.54167\n8835|0.45833\n8836|0.5\n8837|0.75\n8838|0.34722\n8839|0.20833\n8840|0.45833\n8841|0.33333\n8842|0.5\n8843|0.5\n8844|0.5\n8845|0.18056\n8846|0.34722\n8847|0.22222\n8848|0.33333\n8849|0.48611\n8850|0.44444\n8851|0.45833\n8852|0.52778\n8853|0.5\n8854|0.55556\n8855|0.61111\n8856|0.47222\n8857|0.77778\n8858|0.75\n8859|0.48611\n8860|0.5\n8861|0.43056\n8862|0.59722\n8863|0.66667\n8864|0.5\n8865|0.63889\n8866|0.5\n8867|0.52778\n8868|0.48611\n8869|0.54167\n8870|0.44444\n8871|0.34722\n8872|0.55556\n8873|0.45833\n8874|0.41667\n8875|0.44444\n8876|0.055556\n8877|0.55556\n8878|0.81944\n8879|0.70833\n8880|0.91667\n8881|0.5\n8882|0.38889\n8883|0.375\n8884|0.41667\n8885|0.26389\n8886|0.54167\n8887|0.23611\n8888|0.55556\n8889|0.5\n8890|0.5\n8891|0.5\n8892|0.5\n8893|0.16667\n8894|0.54167\n8895|0.86111\n8896|0.79167\n8897|0.20833\n8898|0.5\n8899|0.5\n8900|0.375\n8901|0.77778\n8902|0.5\n8903|0.41667\n8904|0.5\n8905|0.5\n8906|0.5\n8907|0.5\n8908|1\n8909|0.84722\n8910|0.65278\n8911|0.61111\n8912|0.5\n8913|0.77778\n8914|0.58333\n8915|0.72222\n8916|0.69444\n8917|0.81944\n8918|0.75\n8919|0.59722\n8920|0.625\n8921|0.56944\n8922|0.26389\n8923|0.55556\n8924|0.52778\n8925|0.65278\n8926|0.79167\n8927|0.56944\n8928|0.27778\n8929|0.47222\n8930|0.43056\n8931|0.52778\n8932|0.55556\n8933|0.625\n8934|0.51389\n8935|0.41667\n8936|0.38889\n8937|0.5\n8938|0.31944\n8939|0.5\n8940|0.5\n8941|0.19444\n8942|0.16667\n8943|0.44444\n8944|0.34722\n8945|0.54167\n8946|0.34722\n8947|0.44444\n8948|0.36111\n8949|0.38889\n8950|0.34722\n8951|0.36111\n8952|0.27778\n8953|0.5\n8954|0.47222\n8955|0.52778\n8956|0.5\n8957|0.27778\n8958|0.16667\n8959|0.375\n8960|0.29167\n8961|0.5\n8962|0.36111\n8963|0.61111\n8964|0.58333\n8965|0.72222\n8966|0.80556\n8967|0.69444\n8968|0.70833\n8969|0.15278\n8970|0.27778\n8971|0.31944\n8972|0.5\n8973|0.5\n8974|0.5\n8975|0.65278\n8976|0.61111\n8977|0.33333\n8978|0.31944\n8979|0.5\n8980|0.5\n8981|0.52778\n8982|0.18056\n8983|0.27778\n8984|0.40278\n8985|0.375\n8986|0.5\n8987|0.5\n8988|0.5\n8989|0.26389\n8990|0.36111\n8991|0.26389\n8992|0.5\n8993|0.16667\n8994|0.20833\n8995|0.083333\n8996|0.055556\n8997|0\n8998|0.013889\n8999|0.22222\n9000|0.27778\n9001|0.40278\n9002|0.5\n9003|0.54167\n9004|0.56944\n9005|0.51389\n9006|0.56944\n9007|0.27778\n9008|0.625\n9009|0.55556\n9010|0.5\n9011|0.55556\n9012|0.5\n9013|0.44444\n9014|0.44444\n9015|0.47222\n9016|0.55556\n9017|0.51389\n9018|0.5\n9019|0.5\n9020|0.625\n9021|0.40278\n9022|0.65278\n9023|0.069444\n9024|0.38889\n9025|0.083333\n9026|0.40278\n9027|0.44444\n9028|0.5\n9029|0.5\n9030|0.70833\n9031|0.43056\n9032|0.54167\n9033|0.5\n9034|0.41667\n9035|0.5\n9036|0.41667\n9037|0.5\n9038|0.15278\n9039|0.34722\n9040|0.83333\n9041|0.38889\n9042|0.77778\n9043|0.69444\n9044|0.13889\n9045|0.5\n9046|0.11111\n9047|0.069444\n9048|0.055556\n9049|0.5\n9050|0.5\n9051|0.52778\n9052|0.44444\n9053|0.375\n9054|0.73611\n9055|0.5\n9056|0.5\n9057|0.55556\n9058|0.52778\n9059|0.73611\n9060|0.80556\n9061|0.5\n9062|0.38889\n9063|0.5\n9064|0.34722\n9065|0.31944\n9066|0.375\n9067|0.80556\n9068|0.80556\n9069|0.75\n9070|0.875\n9071|0.34722\n9072|0.38889\n9073|0.375\n9074|0.26389\n9075|0.29167\n9076|0.16667\n9077|0.22222\n9078|0.43056\n9079|0.25\n9080|0.58333\n9081|0.5\n9082|0.38889\n9083|0.45833\n9084|0.48611\n9085|0.48611\n9086|0.56944\n9087|0.48611\n9088|0.55556\n9089|0.65278\n9090|0.69444\n9091|0.5\n9092|0.58333\n9093|0.47222\n9094|0.80556\n9095|0.44444\n9096|0.44444\n9097|0.44444\n9098|0.56944\n9099|0.47222\n9100|0.68056\n9101|0.54167\n9102|0.65278\n9103|0.80556\n9104|1\n9105|0.5\n9106|0.20833\n9107|0.44444\n9108|0.5\n9109|0.625\n9110|0.72222\n9111|0.83333\n9112|0.34722\n9113|0.38889\n9114|0.68056\n9115|0.66667\n9116|0.68056\n9117|0.73611\n9118|0.75\n9119|0.55556\n9120|0.40278\n9121|0.18056\n9122|0.38889\n9123|0.48611\n9124|0.45833\n9125|0.44444\n9126|0.33333\n9127|0.47222\n9128|0.11111\n9129|0.43056\n9130|0.43056\n9131|0.43056\n9132|0.27778\n9133|0.5\n9134|0.58333\n9135|0.36111\n9136|0.625\n9137|0.65278\n9138|0.22222\n9139|0.055556\n9140|0.069444\n9141|0.055556\n9142|0.5\n9143|0.51389\n9144|0.55556\n9145|0.61111\n9146|0.83333\n9147|0.5\n9148|0.38889\n9149|0.44444\n9150|0.43056\n9151|0.70833\n9152|0.75\n9153|0.083333\n9154|0.25\n9155|0.48611\n9156|0.48611\n9157|0.16667\n9158|0.19444\n9159|0.40278\n9160|0.5\n9161|0.5\n9162|0.47222\n9163|0.44444\n9164|0.36111\n9165|0.5\n9166|0.47222\n9167|0.26389\n9168|0.65278\n9169|0.5\n9170|0.52778\n9171|0.5\n9172|0.5\n9173|0.5\n9174|0.44444\n9175|0.5\n9176|0.52778\n9177|0.51389\n9178|0.45833\n9179|0.47222\n9180|0.66667\n9181|0.38889\n9182|0.41667\n9183|0.23611\n9184|0.45833\n9185|0.38889\n9186|0.22222\n9187|0.5\n9188|0.48611\n9189|0.36111\n9190|0.27778\n9191|0.26389\n9192|0.5\n9193|0.5\n9194|0.36111\n9195|0.44444\n9196|0.5\n9197|0.58333\n9198|0.5\n9199|0.55556\n9200|0.59722\n9201|0.59722\n9202|0.76389\n9203|0.75\n9204|0.5\n9205|0.5\n9206|0.68056\n9207|0.27778\n9208|0.44444\n9209|0.52778\n9210|0.61111\n9211|0.58333\n9212|0.40278\n9213|0.83333\n9214|0.54167\n9215|0.5\n9216|0.20833\n9217|0.41667\n9218|0.5\n9219|0.55556\n9220|0.41667\n9221|0.5\n9222|0.5\n9223|0.5\n9224|0.70833\n9225|0.56944\n9226|0.55556\n9227|0.5\n9228|0.44444\n9229|0.55556\n9230|0.36111\n9231|0.48611\n9232|0.59722\n9233|0.5\n9234|0.34722\n9235|0.5\n9236|0.56944\n9237|0.5\n9238|0.63889\n9239|0.54167\n9240|0.55556\n9241|0.5\n9242|0.5\n9243|0.5\n9244|0.30556\n9245|0.23611\n9246|0.59722\n9247|0.36111\n9248|0.29167\n9249|0.84722\n9250|0.5\n9251|0.5\n9252|0.5\n9253|0.125\n9254|0.41667\n9255|0.51389\n9256|0.5\n9257|0.69444\n9258|0.19444\n9259|0.79167\n9260|0.30556\n9261|0.27778\n9262|0.75\n9263|0.51389\n9264|0.51389\n9265|0.58333\n9266|0.27778\n9267|0.58333\n9268|0.70833\n9269|0.51389\n9270|0.55556\n9271|0.5\n9272|0.5\n9273|0.5\n9274|0.5\n9275|0.45833\n9276|0.36111\n9277|0.44444\n9278|0.5\n9279|0.55556\n9280|0.70833\n9281|0.5\n9282|0.55556\n9283|0.56944\n9284|0.33333\n9285|0.61111\n9286|0.5\n9287|0.5\n9288|0.52778\n9289|0.54167\n9290|0.36111\n9291|0.5\n9292|0.41667\n9293|0.54167\n9294|0.5\n9295|0.375\n9296|0.54167\n9297|0.5\n9298|0.5\n9299|0.41667\n9300|0.47222\n9301|0.5\n9302|0.59722\n9303|0.52778\n9304|0.5\n9305|0.56944\n9306|0.51389\n9307|0.5\n9308|0.55556\n9309|0.63889\n9310|0.5\n9311|0.5\n9312|0.51389\n9313|0.18056\n9314|0.097222\n9315|0.5\n9316|0.54167\n9317|0.48611\n9318|0.34722\n9319|0.63889\n9320|0.45833\n9321|0.76389\n9322|0.48611\n9323|0.5\n9324|0.23611\n9325|0.34722\n9326|0.5\n9327|0.44444\n9328|0.52778\n9329|0.5\n9330|0.45833\n9331|0.30556\n9332|0.5\n9333|0.48611\n9334|0.61111\n9335|0.44444\n9336|0.69444\n9337|0.26389\n9338|0.93056\n9339|0.52778\n9340|0.5\n9341|0.45833\n9342|0.81944\n9343|0.55556\n9344|0.55556\n9345|0.55556\n9346|0.56944\n9347|0.40278\n9348|0.36111\n9349|0.54167\n9350|0.72222\n9351|0.47222\n9352|0.33333\n9353|0.30556\n9354|0.61111\n9355|0.51389\n9356|0.52778\n9357|0.44444\n9358|0.5\n9359|0.5\n9360|0.18056\n9361|0.31944\n9362|0.16667\n9363|0.43056\n9364|0.33333\n9365|0.47222\n9366|0.5\n9367|0.63889\n9368|0.84722\n9369|0.54167\n9370|0.27778\n9371|0.48611\n9372|0.52778\n9373|0.61111\n9374|0.45833\n9375|0.16667\n9376|0.5\n9377|0.56944\n9378|0.73611\n9379|0.51389\n9380|0.54167\n9381|0.5\n9382|0.41667\n9383|0.52778\n9384|0.26389\n9385|0.69444\n9386|0.56944\n9387|0.48611\n9388|0.51389\n9389|0.41667\n9390|0.5\n9391|0.125\n9392|0.72222\n9393|0.54167\n9394|0.16667\n9395|0.63889\n9396|0.23611\n9397|0.27778\n9398|0.18056\n9399|0.48611\n9400|0.33333\n9401|0.20833\n9402|0.34722\n9403|0.5\n9404|0.5\n9405|0.5\n9406|0.55556\n9407|0.5\n9408|0.5\n9409|0.5\n9410|0.47222\n9411|0.5\n9412|0.52778\n9413|0.75\n9414|0.31944\n9415|0.5\n9416|0.51389\n9417|0.43056\n9418|0.45833\n9419|0.33333\n9420|0.47222\n9421|0.56944\n9422|0.63889\n9423|0.72222\n9424|0.34722\n9425|0.75\n9426|0.66667\n9427|0.33333\n9428|0.75\n9429|0.68056\n9430|0.76389\n9431|0.51389\n9432|0.61111\n9433|0.80556\n9434|0.26389\n9435|0.5\n9436|0.375\n9437|0.55556\n9438|0.45833\n9439|0.48611\n9440|0.40278\n9441|0.44444\n9442|0.52778\n9443|0.34722\n9444|0.72222\n9445|0.625\n9446|0.48611\n9447|0.5\n9448|0.55556\n9449|0.68056\n9450|0.61111\n9451|0.41667\n9452|0.48611\n9453|0.5\n9454|0.54167\n9455|0.5\n9456|0.55556\n9457|0.36111\n9458|0.55556\n9459|0.5\n9460|0.5\n9461|0.40278\n9462|0.51389\n9463|0.36111\n9464|0.27778\n9465|0.5\n9466|0.38889\n9467|0.041667\n9468|0.54167\n9469|0.5\n9470|0.5\n9471|0.5\n9472|0.23611\n9473|0.69444\n9474|0.73611\n9475|0.38889\n9476|0.47222\n9477|0.43056\n9478|0.36111\n9479|0.5\n9480|0.5\n9481|0.83333\n9482|0.84722\n9483|0.38889\n9484|0.63889\n9485|0.44444\n9486|0.25\n9487|0.81944\n9488|0.83333\n9489|0.72222\n9490|0.80556\n9491|0.66667\n9492|0.83333\n9493|1\n9494|0.20833\n9495|0.26389\n9496|0.88889\n9497|0.76389\n9498|0.80556\n9499|0.79167\n9500|0.77778\n9501|0.65278\n9502|0.77778\n9503|0.47222\n9504|0.52778\n9505|0.61111\n9506|0.44444\n9507|0.5\n9508|0.55556\n9509|0.44444\n9510|0.47222\n9511|0.30556\n9512|0.18056\n9513|0.45833\n9514|0.56944\n9515|0.51389\n9516|0.55556\n9517|0.56944\n9518|0.33333\n9519|0.44444\n9520|0.5\n9521|0.375\n9522|0.29167\n9523|0.51389\n9524|0.56944\n9525|0.61111\n9526|0.13889\n9527|0.40278\n9528|0.51389\n9529|0.59722\n9530|0.36111\n9531|0.54167\n9532|0.68056\n9533|0.5\n9534|0.55556\n9535|0.36111\n9536|0.52778\n9537|0.5\n9538|0.5\n9539|0.58333\n9540|0.375\n9541|0.22222\n9542|0.15278\n9543|0.65278\n9544|0.65278\n9545|0.55556\n9546|0.5\n9547|0.36111\n9548|0.5\n9549|0.5\n9550|0.44444\n9551|0.48611\n9552|0.19444\n9553|0.5\n9554|0.34722\n9555|0.5\n9556|0.5\n9557|0.20833\n9558|0.25\n9559|0.30556\n9560|0.61111\n9561|0.43056\n9562|0.27778\n9563|0.29167\n9564|0.23611\n9565|0.38889\n9566|0.375\n9567|0.11111\n9568|0.5\n9569|0.48611\n9570|0.25\n9571|0.22222\n9572|0.30556\n9573|0.33333\n9574|0.23611\n9575|0.27778\n9576|0.16667\n9577|0.31944\n9578|0.5\n9579|0.52778\n9580|0.51389\n9581|0.29167\n9582|0.18056\n9583|0.11111\n9584|0.48611\n9585|0.30556\n9586|0.18056\n9587|0.22222\n9588|0.125\n9589|0.5\n9590|0.5\n9591|0.375\n9592|0.61111\n9593|0.59722\n9594|0.5\n9595|0.27778\n9596|0.22222\n9597|0.36111\n9598|0.5\n9599|0.45833\n9600|0.61111\n9601|0.52778\n9602|0.31944\n9603|0.5\n9604|0.5\n9605|0.51389\n9606|0.52778\n9607|0.5\n9608|0.41667\n9609|0.5\n9610|0.44444\n9611|0.33333\n9612|0.5\n9613|0.5\n9614|0.5\n9615|0.55556\n9616|0.5\n9617|0.5\n9618|0.41667\n9619|0.58333\n9620|0.48611\n9621|0.40278\n9622|0.5\n9623|0.58333\n9624|0.52778\n9625|0.61111\n9626|0.55556\n9627|0.47222\n9628|0.30556\n9629|0.54167\n9630|0.56944\n9631|0.27778\n9632|0.30556\n9633|0.58333\n9634|0.52778\n9635|0.51389\n9636|0.51389\n9637|0.33333\n9638|0.5\n9639|0.5\n9640|0.38889\n9641|0.54167\n9642|0.48611\n9643|0.44444\n9644|0.5\n9645|0.41667\n9646|0.41667\n9647|0.083333\n9648|0.44444\n9649|0.5\n9650|0.55556\n9651|0.63889\n9652|0.5\n9653|0.65278\n9654|0.75\n9655|0.61111\n9656|0.625\n9657|0.5\n9658|0.54167\n9659|0.5\n9660|0.5\n9661|0.55556\n9662|0.5\n9663|0.625\n9664|0.48611\n9665|0.79167\n9666|0.77778\n9667|0.5\n9668|0.5\n9669|0.52778\n9670|0.44444\n9671|0.52778\n9672|0.80556\n9673|0.86111\n9674|0.69444\n9675|0.88889\n9676|0.81944\n9677|0.72222\n9678|0.68056\n9679|0.52778\n9680|0.5\n9681|0.51389\n9682|0.5\n9683|0.36111\n9684|0.5\n9685|0.5\n9686|0.43056\n9687|0.41667\n9688|0.65278\n9689|0.30556\n9690|0.5\n9691|0.5\n9692|0.63889\n9693|0.30556\n9694|0.61111\n9695|0.5\n9696|0.5\n9697|0.5\n9698|0.5\n9699|0.5\n9700|0.23611\n9701|0.97222\n9702|0.66667\n9703|0.55556\n9704|0.51389\n9705|0.91667\n9706|0.5\n9707|0.5\n9708|0.65278\n9709|0.5\n9710|0.055556\n9711|0.38889\n9712|0.5\n9713|0.27778\n9714|0.34722\n9715|0.26389\n9716|0.54167\n9717|0.41667\n9718|0.41667\n9719|0.29167\n9720|0.38889\n9721|0.5\n9722|0.375\n9723|0.29167\n9724|0.30556\n9725|0.56944\n9726|0.5\n9727|0.5\n9728|0.5\n9729|0.55556\n9730|0.5\n9731|0.52778\n9732|0.52778\n9733|0.70833\n9734|0.61111\n9735|0.59722\n9736|0.61111\n9737|0.66667\n9738|0.79167\n9739|0.52778\n9740|0.61111\n9741|0.55556\n9742|0.38889\n9743|0.55556\n9744|0.54167\n9745|0.47222\n9746|0.43056\n9747|0.19444\n9748|0.47222\n9749|0.5\n9750|0.55556\n9751|0.77778\n9752|0.72222\n9753|0.48611\n9754|0.5\n9755|0.47222\n9756|0.40278\n9757|0.66667\n9758|0.45833\n9759|0.5\n9760|0.61111\n9761|0.61111\n9762|0.75\n9763|0.86111\n9764|0.84722\n9765|0.68056\n9766|0.63889\n9767|0.75\n9768|0.625\n9769|0.77778\n9770|0.83333\n9771|0.36111\n9772|0.55556\n9773|0.54167\n9774|0.11111\n9775|0.5\n9776|0.27778\n9777|0.54167\n9778|0.44444\n9779|0.43056\n9780|0.45833\n9781|0.33333\n9782|0.27778\n9783|0.38889\n9784|0.16667\n9785|0.44444\n9786|0.27778\n9787|0.5\n9788|0.51389\n9789|0.43056\n9790|0.22222\n9791|0.5\n9792|0.5\n9793|0.45833\n9794|0.5\n9795|0.5\n9796|0.5\n9797|0.875\n9798|0.81944\n9799|0.91667\n9800|0.77778\n9801|0.91667\n9802|0.69444\n9803|0.875\n9804|0.79167\n9805|0.94444\n9806|0.70833\n9807|0.5\n9808|0.69444\n9809|0.61111\n9810|0.40278\n9811|0.41667\n9812|0.58333\n9813|0.47222\n9814|0.19444\n9815|0.47222\n9816|0.5\n9817|0.5\n9818|0.44444\n9819|0.5\n9820|0.40278\n9821|0.36111\n9822|0.375\n9823|0.38889\n9824|0.59722\n9825|0.51389\n9826|0.69444\n9827|0.61111\n9828|0.36111\n9829|0.55556\n9830|0.83333\n9831|0.76389\n9832|0.11111\n9833|0.36111\n9834|0.54167\n9835|0.34722\n9836|0.5\n9837|0.61111\n9838|0.29167\n9839|0.23611\n9840|0.34722\n9841|0.5\n9842|0.5\n9843|0.43056\n9844|0.65278\n9845|0.79167\n9846|0.875\n9847|0.65278\n9848|0.76389\n9849|0.5\n9850|0.5\n9851|0.5\n9852|0.5\n9853|0.45833\n9854|0.5\n9855|0.625\n9856|0.52778\n9857|0.52778\n9858|0.5\n9859|0.11111\n9860|0.5\n9861|0.75\n9862|0.84722\n9863|0.33333\n9864|0.52778\n9865|0.5\n9866|0.51389\n9867|0.58333\n9868|0.63889\n9869|0.54167\n9870|0.54167\n9871|0.30556\n9872|0.33333\n9873|0.54167\n9874|0.58333\n9875|0.79167\n9876|0.5\n9877|0.70833\n9878|0.51389\n9879|0.65278\n9880|0.55556\n9881|0.80556\n9882|0.54167\n9883|0.31944\n9884|0.72222\n9885|0.61111\n9886|0.55556\n9887|0.38889\n9888|0.68056\n9889|0.48611\n9890|0.61111\n9891|0.77778\n9892|0.66667\n9893|0.76389\n9894|0.55556\n9895|0.34722\n9896|0.43056\n9897|0.45833\n9898|0.55556\n9899|0.73611\n9900|0.44444\n9901|0.41667\n9902|0.11111\n9903|0.55556\n9904|0.77778\n9905|0.5\n9906|0.56944\n9907|0.22222\n9908|0.23611\n9909|0.45833\n9910|0.5\n9911|0.40278\n9912|0.375\n9913|0.55556\n9914|0.61111\n9915|0.5\n9916|0.5\n9917|0.52778\n9918|0.44444\n9919|0.5\n9920|0.5\n9921|0.11111\n9922|0.51389\n9923|0.5\n9924|0.61111\n9925|0.48611\n9926|0.16667\n9927|0.19444\n9928|0.13889\n9929|0.36111\n9930|0.11111\n9931|0.22222\n9932|0.55556\n9933|0.5\n9934|0.65278\n9935|0.76389\n9936|0.26389\n9937|0.5\n9938|0.63889\n9939|0.34722\n9940|0.27778\n9941|0.23611\n9942|0.75\n9943|0.88889\n9944|0.5\n9945|0.5\n9946|0.5\n9947|0.5\n9948|0.45833\n9949|0.51389\n9950|0.41667\n9951|0.36111\n9952|0.56944\n9953|0.38889\n9954|0.47222\n9955|0.48611\n9956|0.56944\n9957|0.58333\n9958|0.56944\n9959|0.86111\n9960|0.51389\n9961|0.5\n9962|0.51389\n9963|0.5\n9964|0.61111\n9965|0.375\n9966|0.54167\n9967|0.43056\n9968|0.38889\n9969|0.40278\n9970|0.41667\n9971|0.58333\n9972|0.625\n9973|0.48611\n9974|0.51389\n9975|0.5\n9976|0.51389\n9977|0.5\n9978|0.45833\n9979|0.52778\n9980|0.56944\n9981|0.44444\n9982|0.33333\n9983|0.51389\n9984|0.5\n9985|0.5\n9986|0.5\n9987|0.55556\n9988|0.41667\n9989|0.5\n9990|0.38889\n9991|0.22222\n9992|0.23611\n9993|0.5\n9994|0.20833\n9995|0.63889\n9996|0.70833\n9997|0.47222\n9998|0.625\n9999|0.44444\n10000|0.16667\n10001|0.013889\n10002|0.33333\n10003|0.5\n10004|0.097222\n10005|0.30556\n10006|0.51389\n10007|0.52778\n10008|0.52778\n10009|0.63889\n10010|0.45833\n10011|0.44444\n10012|0.54167\n10013|0.54167\n10014|0.55556\n10015|0.5\n10016|0.5\n10017|0.51389\n10018|0.5\n10019|0.54167\n10020|0.72222\n10021|0.5\n10022|0.5\n10023|0.52778\n10024|0.63889\n10025|0.80556\n10026|0.5\n10027|0.55556\n10028|0.5\n10029|0.55556\n10030|0.52778\n10031|0.5\n10032|0.58333\n10033|0.625\n10034|0.5\n10035|0.5\n10036|0.63889\n10037|0.5\n10038|0.54167\n10039|0.5\n10040|0.83333\n10041|0.59722\n10042|0.31944\n10043|0.68056\n10044|0.22222\n10045|0.55556\n10046|0.47222\n10047|0.36111\n10048|0.41667\n10049|0.52778\n10050|0.54167\n10051|0.625\n10052|0.58333\n10053|0.44444\n10054|0.38889\n10055|0.34722\n10056|0.54167\n10057|0.51389\n10058|0.5\n10059|0.38889\n10060|0.54167\n10061|0.31944\n10062|0.22222\n10063|0.23611\n10064|0.47222\n10065|0.72222\n10066|0.66667\n10067|0.55556\n10068|0.70833\n10069|0.77778\n10070|0.80556\n10071|0.77778\n10072|0.41667\n10073|0.30556\n10074|0.20833\n10075|0.5\n10076|0.55556\n10077|0.55556\n10078|0.44444\n10079|0.55556\n10080|0.51389\n10081|0.5\n10082|0.58333\n10083|0.52778\n10084|0.40278\n10085|0.44444\n10086|0.38889\n10087|0.56944\n10088|0.61111\n10089|0.79167\n10090|0.26389\n10091|0.83333\n10092|0.875\n10093|0.84722\n10094|0.48611\n10095|0.5\n10096|0.58333\n10097|0.76389\n10098|0.5\n10099|0.5\n10100|0.5\n10101|0.45833\n10102|0.84722\n10103|0.81944\n10104|0.5\n10105|0.5\n10106|0.5\n10107|0.55556\n10108|0.79167\n10109|0.72222\n10110|0.72222\n10111|0.625\n10112|0.33333\n10113|0.23611\n10114|0.58333\n10115|0.56944\n10116|0\n10117|0.5\n10118|0.31944\n10119|0.5\n10120|0.44444\n10121|0.54167\n10122|0.41667\n10123|0.58333\n10124|0.70833\n10125|0.63889\n10126|0.90278\n10127|0.84722\n10128|0.83333\n10129|0.44444\n10130|0.5\n10131|0.5\n10132|0.56944\n10133|0.31944\n10134|0.18056\n10135|0.33333\n10136|0.38889\n10137|0.5\n10138|0.47222\n10139|0.56944\n10140|0.66667\n10141|0.55556\n10142|0.44444\n10143|0.5\n10144|0.76389\n10145|0.61111\n10146|0.52778\n10147|0.5\n10148|0.73611\n10149|0.73611\n10150|0.5\n10151|0.5\n10152|0.5\n10153|0.5\n10154|0.38889\n10155|0.51389\n10156|0.52778\n10157|0.66667\n10158|0.43056\n10159|0.5\n10160|0.34722\n10161|0.26389\n10162|0.13889\n10163|0.625\n10164|0.51389\n10165|0.34722\n10166|0.5\n10167|0.47222\n10168|0.58333\n10169|0.58333\n10170|0.59722\n10171|0.66667\n10172|0.77778\n10173|0.55556\n10174|0.84722\n10175|0.84722\n10176|0.77778\n10177|0.97222\n10178|0.38889\n10179|0.55556\n10180|0.5\n10181|0.5\n10182|0.5\n10183|0.5\n10184|0.5\n10185|0.44444\n10186|0.5\n10187|0.63889\n10188|0.52778\n10189|0.5\n10190|0.58333\n10191|0.54167\n10192|0.61111\n10193|0.52778\n10194|0.5\n10195|0.5\n10196|0.63889\n10197|0.55556\n10198|0.77778\n10199|0.69444\n10200|0.63889\n10201|0.5\n10202|0.5\n10203|0.5\n10204|0.5\n10205|0.5\n10206|0.5\n10207|0.31944\n10208|0.22222\n10209|0.5\n10210|0.55556\n10211|0.70833\n10212|0.45833\n10213|0.5\n10214|0.41667\n10215|0.375\n10216|0.22222\n10217|0.52778\n10218|0.75\n10219|0.5\n10220|0.52778\n10221|0.36111\n10222|0.5\n10223|0.52778\n10224|0.38889\n10225|0.23611\n10226|0.51389\n10227|0.5\n10228|0.38889\n10229|0.54167\n10230|0.5\n10231|0.5\n10232|0.45833\n10233|0.51389\n10234|0.5\n10235|0.13889\n10236|0.38889\n10237|0.26389\n10238|0.41667\n10239|0.61111\n10240|0.75\n10241|0.5\n10242|0.31944\n10243|0.22222\n10244|0.58333\n10245|0.59722\n10246|0.625\n10247|0.41667\n10248|0.27778\n10249|0.29167\n10250|0.5\n10251|0.5\n10252|0.55556\n10253|0.5\n10254|0.5\n10255|0.5\n10256|0.5\n10257|0.5\n10258|0.58333\n10259|0.5\n10260|0.5\n10261|0.63889\n10262|0.77778\n10263|0.69444\n10264|0.59722\n10265|0.77778\n10266|0.79167\n10267|0.69444\n10268|0.77778\n10269|0.83333\n10270|0.5\n10271|0.43056\n10272|0.36111\n10273|0.5\n10274|0.5\n10275|0.48611\n10276|0.75\n10277|0.69444\n10278|0.27778\n10279|0.30556\n10280|0.61111\n10281|0.72222\n10282|0.45833\n10283|0.45833\n10284|0.29167\n10285|0.5\n10286|0.11111\n10287|0.22222\n10288|0.15278\n10289|0.27778\n10290|0.19444\n10291|0.27778\n10292|0.31944\n10293|0.43056\n10294|0.18056\n10295|0.5\n10296|0.5\n10297|0.52778\n10298|0.63889\n10299|0.43056\n10300|0.30556\n10301|0.5\n10302|0.54167\n10303|0.5\n10304|0.5\n10305|0.5\n10306|0.5\n10307|0.5\n10308|0.51389\n10309|0.097222\n10310|0.5\n10311|0.55556\n10312|0.54167\n10313|0.51389\n10314|0.52778\n10315|0.47222\n10316|0.30556\n10317|0.58333\n10318|0.5\n10319|0.61111\n10320|0.61111\n10321|0.5\n10322|0.34722\n10323|0.41667\n10324|0.44444\n10325|0.55556\n10326|0.375\n10327|0.55556\n10328|0.33333\n10329|0.5\n10330|0.34722\n10331|0.29167\n10332|0.68056\n10333|0.63889\n10334|0.5\n10335|0.45833\n10336|0.25\n10337|0.375\n10338|0.16667\n10339|0.29167\n10340|0.5\n10341|0.59722\n10342|0.25\n10343|0.5\n10344|0.45833\n10345|0.55556\n10346|0.76389\n10347|0.5\n10348|0.5\n10349|0.5\n10350|0.55556\n10351|0.45833\n10352|0.33333\n10353|0.45833\n10354|0.22222\n10355|0.18056\n10356|0.25\n10357|0.56944\n10358|0.52778\n10359|0.375\n10360|0.44444\n10361|0.61111\n10362|0.44444\n10363|0.58333\n10364|0.56944\n10365|0.48611\n10366|0.66667\n10367|0.55556\n10368|0.22222\n10369|0.5\n10370|0.5\n10371|0.55556\n10372|0.55556\n10373|0.45833\n10374|0.54167\n10375|0.70833\n10376|0.52778\n10377|0.81944\n10378|0.47222\n10379|0.5\n10380|0.47222\n10381|0.59722\n10382|0.5\n10383|0.61111\n10384|0.52778\n10385|0.5\n10386|0.52778\n10387|0.56944\n10388|0.48611\n10389|0.48611\n10390|0.54167\n10391|0.55556\n10392|0.61111\n10393|0.88889\n10394|0.5\n10395|0.56944\n10396|0.43056\n10397|0.36111\n10398|0.47222\n10399|0.51389\n10400|0.45833\n10401|0.5\n10402|0.19444\n10403|0.56944\n10404|0.90278\n10405|0.5\n10406|0.48611\n10407|0.33333\n10408|0.43056\n10409|0.041667\n10410|0.52778\n10411|0.30556\n10412|0.26389\n10413|0.33333\n10414|0.27778\n10415|0.5\n10416|0.52778\n10417|0.48611\n10418|0.5\n10419|0.45833\n10420|0.48611\n10421|0.30556\n10422|0.41667\n10423|0.5\n10424|0.55556\n10425|0.5\n10426|0.18056\n10427|0.47222\n10428|0.36111\n10429|0.41667\n10430|0.34722\n10431|0.51389\n10432|0.5\n10433|0.48611\n10434|0.5\n10435|0.59722\n10436|0.56944\n10437|0.375\n10438|0.375\n10439|0.55556\n10440|0.5\n10441|0.55556\n10442|0.69444\n10443|0.69444\n10444|0.16667\n10445|0.16667\n10446|0.54167\n10447|0.45833\n10448|0.44444\n10449|0.069444\n10450|0.34722\n10451|0.26389\n10452|0.22222\n10453|0.38889\n10454|0.45833\n10455|0.51389\n10456|0.61111\n10457|0.56944\n10458|0.5\n10459|0.73611\n10460|0.80556\n10461|0.81944\n10462|0.75\n10463|0.68056\n10464|0.38889\n10465|0.5\n10466|0.47222\n10467|0.5\n10468|0.5\n10469|0.51389\n10470|0.5\n10471|0.66667\n10472|0.5\n10473|0.43056\n10474|0.55556\n10475|0.52778\n10476|0.5\n10477|0.45833\n10478|0.52778\n10479|0.5\n10480|0.45833\n10481|0.15278\n10482|0.25\n10483|0.33333\n10484|0.27778\n10485|0.33333\n10486|0.59722\n10487|0.625\n10488|0.72222\n10489|0.5\n10490|0.5\n10491|0.55556\n10492|0.55556\n10493|0.5\n10494|0.44444\n10495|0.5\n10496|0.375\n10497|0.25\n10498|0.29167\n10499|0.40278\n10500|0.41667\n10501|0.27778\n10502|0.54167\n10503|0.33333\n10504|0.5\n10505|0.51389\n10506|0.5\n10507|0.55556\n10508|0.56944\n10509|0.5\n10510|0.20833\n10511|0.41667\n10512|0.5\n10513|0.54167\n10514|0.5\n10515|0.22222\n10516|0.41667\n10517|0.43056\n10518|0.51389\n10519|0.52778\n10520|0.38889\n10521|0.41667\n10522|0.5\n10523|0.70833\n10524|0.47222\n10525|0.375\n10526|0.58333\n10527|0.73611\n10528|0.31944\n10529|0.76389\n10530|0.88889\n10531|0.93056\n10532|0.73611\n10533|0.79167\n10534|0.33333\n10535|0.79167\n10536|0.58333\n10537|0.77778\n10538|0.70833\n10539|0.65278\n10540|0.80556\n10541|0.5\n10542|0.76389\n10543|0.55556\n10544|0.5\n10545|0.5\n10546|0.52778\n10547|0.48611\n10548|0.55556\n10549|0.31944\n10550|0.77778\n10551|0.44444\n10552|0.26389\n10553|0.23611\n10554|0.33333\n10555|0.69444\n10556|0.45833\n10557|0.38889\n10558|0.125\n10559|0.055556\n10560|0.56944\n10561|0.55556\n10562|0.38889\n10563|0.22222\n10564|0.54167\n10565|0.5\n10566|0.56944\n10567|0.58333\n10568|0.16667\n10569|0.51389\n10570|0.34722\n10571|0.47222\n10572|0.61111\n10573|0.34722\n10574|0.5\n10575|0.125\n10576|0.41667\n10577|0.43056\n10578|0.375\n10579|0.5\n10580|0.54167\n10581|0.52778\n10582|0.5\n10583|0.54167\n10584|0.52778\n10585|0.5\n10586|0.56944\n10587|0.5\n10588|0.5\n10589|0.66667\n10590|0.5\n10591|0.40278\n10592|0.5\n10593|0.41667\n10594|0.5\n10595|0.61111\n10596|0.56944\n10597|0.55556\n10598|0.51389\n10599|0.52778\n10600|0.63889\n10601|0.43056\n10602|0.26389\n10603|0.34722\n10604|0.52778\n10605|0.5\n10606|0.77778\n10607|0.66667\n10608|0.65278\n10609|0.56944\n10610|0.48611\n10611|0.5\n10612|0.069444\n10613|0.70833\n10614|0.58333\n10615|0.625\n10616|0.40278\n10617|0.47222\n10618|0.75\n10619|0.56944\n10620|0.45833\n10621|0.54167\n10622|0.16667\n10623|0.5\n10624|0.69444\n10625|0.88889\n10626|0.52778\n10627|0.26389\n10628|0.27778\n10629|0.5\n10630|0.59722\n10631|0.5\n10632|0.70833\n10633|0.54167\n10634|0.54167\n10635|0.36111\n10636|0.5\n10637|0.52778\n10638|0.55556\n10639|0.40278\n10640|0.38889\n10641|0.5\n10642|0.51389\n10643|0.5\n10644|0.48611\n10645|0.5\n10646|0.5\n10647|0.34722\n10648|0.5\n10649|0.5\n10650|0.41667\n10651|0.59722\n10652|0.80556\n10653|0.59722\n10654|0.81944\n10655|0.625\n10656|0.43056\n10657|0.72222\n10658|0.72222\n10659|0.5\n10660|0.5\n10661|0.45833\n10662|0.375\n10663|0.44444\n10664|0.27778\n10665|0.33333\n10666|0.16667\n10667|0.16667\n10668|0.44444\n10669|0.15278\n10670|0.45833\n10671|0.51389\n10672|0.52778\n10673|0.56944\n10674|0.66667\n10675|0.51389\n10676|0.5\n10677|0.54167\n10678|0.30556\n10679|0.44444\n10680|0.61111\n10681|0.875\n10682|0.84722\n10683|0.88889\n10684|0.73611\n10685|0.5\n10686|0.44444\n10687|0.55556\n10688|0.44444\n10689|0.5\n10690|0.5\n10691|0.27778\n10692|0.5\n10693|0.41667\n10694|0.19444\n10695|0.5\n10696|0.5\n10697|0.47222\n10698|0.16667\n10699|0.15278\n10700|0.30556\n10701|0.25\n10702|0.5\n10703|0.51389\n10704|0.38889\n10705|0.47222\n10706|0.30556\n10707|0.44444\n10708|0.52778\n10709|0.20833\n10710|0.77778\n10711|0.56944\n10712|0.55556\n10713|0.55556\n10714|0.69444\n10715|0.55556\n10716|0.30556\n10717|0.69444\n10718|0.72222\n10719|0.77778\n10720|0.5\n10721|0.69444\n10722|0.40278\n10723|0.5\n10724|0.65278\n10725|0.38889\n10726|0.625\n10727|0.45833\n10728|0.25\n10729|0.19444\n10730|0.15278\n10731|0.30556\n10732|0.11111\n10733|0.083333\n10734|0.5\n10735|0.77778\n10736|0.5\n10737|0.40278\n10738|0.30556\n10739|0.5\n10740|0.5\n10741|0.44444\n10742|0.44444\n10743|0.54167\n10744|0.45833\n10745|0.55556\n10746|0.45833\n10747|0.38889\n10748|0.45833\n10749|0.069444\n10750|0.055556\n10751|0.11111\n10752|0.73611\n10753|0.47222\n10754|0.5\n10755|0.76389\n10756|0.22222\n10757|0.36111\n10758|0.73611\n10759|0.33333\n10760|0.5\n10761|0.27778\n10762|0.5\n10763|0.48611\n10764|0.5\n10765|0.5\n10766|0.375\n10767|0.61111\n10768|0.40278\n10769|0.27778\n10770|0.5\n10771|0.43056\n10772|0.5\n10773|0.5\n10774|0.51389\n10775|0.375\n10776|0.36111\n10777|0.11111\n10778|0.29167\n10779|0.5\n10780|0.36111\n10781|0.625\n10782|0.47222\n10783|0.44444\n10784|0.63889\n10785|0.47222\n10786|0.66667\n10787|0.56944\n10788|0.63889\n10789|0.34722\n10790|0.41667\n10791|0.19444\n10792|0.5\n10793|0.5\n10794|0.5\n10795|0.80556\n10796|0.88889\n10797|0.5\n10798|0.54167\n10799|0.56944\n10800|0.44444\n10801|0.27778\n10802|0.31944\n10803|0.79167\n10804|0.61111\n10805|0.5\n10806|0.54167\n10807|0.5\n10808|0.34722\n10809|0.70833\n10810|0.51389\n10811|0.72222\n10812|0.93056\n10813|0.81944\n10814|0.875\n10815|0.79167\n10816|0.52778\n10817|0.59722\n10818|0.40278\n10819|0.80556\n10820|0.70833\n10821|0.875\n10822|0.83333\n10823|0.80556\n10824|0.75\n10825|0.5\n10826|0.5\n10827|0.43056\n10828|0.29167\n10829|0.38889\n10830|0.63889\n10831|0.22222\n10832|0.25\n10833|0.29167\n10834|0.38889\n10835|0.26389\n10836|0.38889\n10837|0.25\n10838|0.40278\n10839|0.56944\n10840|0.44444\n10841|0.88889\n10842|0.83333\n10843|0.70833\n10844|0.55556\n10845|0.5\n10846|0.5\n10847|0.66667\n10848|0.47222\n10849|0.55556\n10850|0.52778\n10851|0.59722\n10852|0.84722\n10853|0.55556\n10854|0.58333\n10855|0.15278\n10856|0.48611\n10857|0.52778\n10858|0.59722\n10859|0.75\n10860|0.5\n10861|0.80556\n10862|0.58333\n10863|0.55556\n10864|0.66667\n10865|0.54167\n10866|0.52778\n10867|0.54167\n10868|0.77778\n10869|0.54167\n10870|0.58333\n10871|0.625\n10872|0.59722\n10873|0.31944\n10874|0.38889\n10875|0.68056\n10876|0.26389\n10877|0.27778\n10878|0.61111\n10879|0.69444\n10880|0.625\n10881|0.69444\n10882|0.26389\n10883|0.38889\n10884|0.48611\n10885|0.59722\n10886|0.72222\n10887|0.75\n10888|0.81944\n10889|0.5\n10890|0.5\n10891|0.5\n10892|0.47222\n10893|0.5\n10894|0.55556\n10895|0.59722\n10896|0.16667\n10897|0.069444\n10898|0.19444\n10899|0.38889\n10900|0.58333\n10901|0.5\n10902|0.66667\n10903|0.72222\n10904|0.5\n10905|0.54167\n10906|0.375\n10907|0.45833\n10908|0.45833\n10909|0.38889\n10910|0.22222\n10911|0.5\n10912|0.5\n10913|0.47222\n10914|0.5\n10915|0.45833\n10916|0.5\n10917|0.61111\n10918|0.55556\n10919|0.44444\n10920|0.48611\n10921|0.48611\n10922|0.5\n10923|0.5\n10924|0.5\n10925|0.65278\n10926|0.5\n10927|0.45833\n10928|0.20833\n10929|0.29167\n10930|0.27778\n10931|0.5\n10932|0.48611\n10933|0.25\n10934|0.33333\n10935|0.54167\n10936|0.65278\n10937|0.13889\n10938|0.75\n10939|0.48611\n10940|0.38889\n10941|0.625\n10942|0.19444\n10943|0.25\n10944|0.625\n10945|0.59722\n10946|0.80556\n10947|0.73611\n10948|0.93056\n10949|0.375\n10950|0.41667\n10951|0.375\n10952|0.5\n10953|0.44444\n10954|0.5\n10955|0.44444\n10956|0.45833\n10957|0.36111\n10958|0.36111\n10959|0.30556\n10960|0.54167\n10961|0.77778\n10962|0.65278\n10963|0.43056\n10964|0.625\n10965|0.77778\n10966|0.70833\n10967|0.33333\n10968|0.33333\n10969|0.58333\n10970|0.69444\n10971|0.375\n10972|0.5\n10973|0.22222\n10974|0.16667\n10975|0.5\n10976|0.5\n10977|0.5\n10978|0.56944\n10979|0.52778\n10980|0.61111\n10981|0.5\n10982|0.65278\n10983|0.52778\n10984|0.33333\n10985|0.52778\n10986|0.5\n10987|0.61111\n10988|0.45833\n10989|0.52778\n10990|0.52778\n10991|0.30556\n10992|0.5\n10993|0.56944\n10994|0.59722\n10995|0.51389\n10996|0.43056\n10997|0.61111\n10998|0.38889\n10999|0.33333\n11000|0.40278\n11001|0.5\n11002|0.22222\n11003|0.16667\n11004|0.41667\n11005|0.69444\n11006|0.73611\n11007|0.43056\n11008|0.48611\n11009|0.22222\n11010|0.52778\n11011|0.22222\n11012|0.52778\n11013|0.45833\n11014|0.61111\n11015|0.5\n11016|0.5\n11017|0.55556\n11018|0.27778\n11019|0.5\n11020|0.30556\n11021|0.54167\n11022|0.58333\n11023|0.5\n11024|0.47222\n11025|0.5\n11026|0.30556\n11027|0.44444\n11028|0.45833\n11029|0.68056\n11030|0.5\n11031|0.61111\n11032|0.68056\n11033|0.84722\n11034|0.13889\n11035|0.68056\n11036|0.27778\n11037|0.30556\n11038|0.29167\n11039|0.81944\n11040|0.19444\n11041|0.34722\n11042|0.72222\n11043|0.70833\n11044|0.23611\n11045|0.29167\n11046|0.375\n11047|0.45833\n11048|0.5\n11049|0.47222\n11050|0.33333\n11051|0.77778\n11052|0.30556\n11053|0.38889\n11054|0.54167\n11055|0.59722\n11056|0.29167\n11057|0.65278\n11058|0.65278\n11059|0.65278\n11060|0.56944\n11061|0.70833\n11062|0.75\n11063|0.77778\n11064|0.73611\n11065|0.5\n11066|0.19444\n11067|0.19444\n11068|0.56944\n11069|0.44444\n11070|0.55556\n11071|0.36111\n11072|0.51389\n11073|0.61111\n11074|0.66667\n11075|0.43056\n11076|0.43056\n11077|0.98611\n11078|0.72222\n11079|0.38889\n11080|0.61111\n11081|0.81944\n11082|0.5\n11083|0.59722\n11084|0.86111\n11085|0.47222\n11086|0.22222\n11087|0.56944\n11088|0.5\n11089|0.65278\n11090|0.36111\n11091|0.5\n11092|0.54167\n11093|0.58333\n11094|0.33333\n11095|0.27778\n11096|0.25\n11097|0.61111\n11098|0.58333\n11099|0.55556\n11100|0.84722\n11101|0.79167\n11102|0.34722\n11103|0.58333\n11104|0.20833\n11105|0.47222\n11106|0.52778\n11107|0.51389\n11108|0.51389\n11109|0.19444\n11110|0.31944\n11111|0.63889\n11112|0.47222\n11113|0.30556\n11114|0.61111\n11115|0.68056\n11116|0.54167\n11117|0.5\n11118|0.125\n11119|0.47222\n11120|0.5\n11121|0.16667\n11122|0.26389\n11123|0.70833\n11124|0.31944\n11125|0.45833\n11126|0.73611\n11127|0.51389\n11128|0.58333\n11129|0.55556\n11130|0.5\n11131|0.45833\n11132|0.44444\n11133|0.15278\n11134|0.22222\n11135|0.375\n11136|0.30556\n11137|0.51389\n11138|0.45833\n11139|0.40278\n11140|0.22222\n11141|0.44444\n11142|0.375\n11143|0.22222\n11144|0.51389\n11145|0.51389\n11146|0.38889\n11147|0.70833\n11148|0.41667\n11149|0.31944\n11150|0.20833\n11151|0.5\n11152|0.44444\n11153|0.40278\n11154|0.51389\n11155|0.36111\n11156|0.58333\n11157|0.56944\n11158|0.52778\n11159|0.41667\n11160|0.59722\n11161|0.125\n11162|0.27778\n11163|0.18056\n11164|0.30556\n11165|0.5\n11166|0.56944\n11167|0.31944\n11168|0.5\n11169|0.72222\n11170|0.55556\n11171|0.54167\n11172|0.51389\n11173|0.22222\n11174|0.31944\n11175|0.5\n11176|0.5\n11177|0.63889\n11178|0.69444\n11179|0.66667\n11180|0.52778\n11181|0.51389\n11182|0.5\n11183|0.5\n11184|0.5\n11185|0.34722\n11186|0.47222\n11187|0.5\n11188|0.48611\n11189|0.34722\n11190|0.44444\n11191|0.5\n11192|0.30556\n11193|0.26389\n11194|0.47222\n11195|0.5\n11196|0.48611\n11197|0.5\n11198|0.61111\n11199|0.23611\n11200|0.33333\n11201|0.5\n11202|0.58333\n11203|0.47222\n11204|0.40278\n11205|0.15278\n11206|0.52778\n11207|0.48611\n11208|0.38889\n11209|0.54167\n11210|0.5\n11211|0.875\n11212|0.76389\n11213|0.69444\n11214|0.72222\n11215|0.5\n11216|0.5\n11217|0.55556\n11218|0.5\n11219|0.40278\n11220|0.16667\n11221|0.5\n11222|0.54167\n11223|0.5\n11224|0.72222\n11225|0.66667\n11226|0.5\n11227|0.65278\n11228|0.59722\n11229|0.65278\n11230|0.68056\n11231|0.58333\n11232|0.73611\n11233|0.625\n11234|0.34722\n11235|0.40278\n11236|0.34722\n11237|0.29167\n11238|0.55556\n11239|0.70833\n11240|0.77778\n11241|0.47222\n11242|0.48611\n11243|0.5\n11244|0.45833\n11245|0.56944\n11246|0.5\n11247|0.55556\n11248|0.27778\n11249|0.38889\n11250|0.44444\n11251|0.40278\n11252|0.43056\n11253|0.5\n11254|0.79167\n11255|0.73611\n11256|0.55556\n11257|0.5\n11258|0.69444\n11259|0.5\n11260|0.47222\n11261|0.51389\n11262|0.55556\n11263|0.5\n11264|0.55556\n11265|0.5\n11266|0.22222\n11267|0.55556\n11268|0.5\n11269|0.56944\n11270|0.52778\n11271|0.55556\n11272|0.33333\n11273|0.27778\n11274|0.30556\n11275|0.34722\n11276|0.51389\n11277|0.47222\n11278|0.38889\n11279|0.5\n11280|0.5\n11281|0.5\n11282|0.45833\n11283|0.59722\n11284|0.23611\n11285|0.31944\n11286|0.43056\n11287|0.43056\n11288|0.86111\n11289|0.5\n11290|0.5\n11291|0.5\n11292|0.77778\n11293|0.73611\n11294|0.5\n11295|0.54167\n11296|0.375\n11297|0.40278\n11298|0.52778\n11299|0.58333\n11300|0.45833\n11301|0.27778\n11302|0.52778\n11303|0.5\n11304|0.56944\n11305|0.61111\n11306|0.55556\n11307|0.52778\n11308|0.59722\n11309|0.44444\n11310|0.5\n11311|0.5\n11312|0.84722\n11313|0.33333\n11314|0.55556\n11315|0.66667\n11316|0.5\n11317|0.61111\n11318|0.5\n11319|0.54167\n11320|0.55556\n11321|0.51389\n11322|0.65278\n11323|0.52778\n11324|0.44444\n11325|0.30556\n11326|0.79167\n11327|0.16667\n11328|0.34722\n11329|0.15278\n11330|0.11111\n11331|0.23611\n11332|0.61111\n11333|0.27778\n11334|0.55556\n11335|0.56944\n11336|0.54167\n11337|0.79167\n11338|0.54167\n11339|0.40278\n11340|0.58333\n11341|0.54167\n11342|0.5\n11343|0.38889\n11344|0.55556\n11345|0.5\n11346|0.55556\n11347|0.51389\n11348|0.69444\n11349|0.76389\n11350|0.63889\n11351|0.65278\n11352|0.66667\n11353|0.68056\n11354|0.59722\n11355|0.5\n11356|0.47222\n11357|0.5\n11358|0.55556\n11359|0.13889\n11360|0.5\n11361|0.5\n11362|0.5\n11363|0.5\n11364|0.625\n11365|0.68056\n11366|0.63889\n11367|0.72222\n11368|0.63889\n11369|0.5\n11370|0.94444\n11371|0.5\n11372|0.58333\n11373|0.68056\n11374|0.45833\n11375|0.54167\n11376|0.38889\n11377|0.47222\n11378|0.63889\n11379|0.54167\n11380|0.625\n11381|0.40278\n11382|0.45833\n11383|0.79167\n11384|0.88889\n11385|0.625\n11386|0.18056\n11387|0.16667\n11388|0.15278\n11389|0.30556\n11390|0.25\n11391|0.36111\n11392|0.16667\n11393|0.36111\n11394|0.44444\n11395|0.48611\n11396|0.61111\n11397|0.23611\n11398|0.94444\n11399|0.97222\n11400|0.90278\n11401|0.84722\n11402|0.94444\n11403|0.93056\n11404|0.73611\n11405|0.86111\n11406|0.5\n11407|0.375\n11408|0.34722\n11409|0.45833\n11410|0.65278\n11411|0.55556\n11412|0.069444\n11413|0.5\n11414|0.91667\n11415|0.91667\n11416|0.5\n11417|0.38889\n11418|0.5\n11419|0.33333\n11420|0.51389\n11421|0.5\n11422|0.52778\n11423|0.5\n11424|0.59722\n11425|0.54167\n11426|0.63889\n11427|0.58333\n11428|0.34722\n11429|0.625\n11430|0.55556\n11431|0.34722\n11432|0.34722\n11433|0.55556\n11434|0.56944\n11435|0.52778\n11436|0.47222\n11437|0.51389\n11438|0.5\n11439|0.69444\n11440|0.56944\n11441|0.58333\n11442|0.52778\n11443|0.51389\n11444|0.47222\n11445|0.45833\n11446|0.59722\n11447|0.38889\n11448|0.76389\n11449|0.63889\n11450|0.59722\n11451|0.625\n11452|0.34722\n11453|0.51389\n11454|0.51389\n11455|0.65278\n11456|0.69444\n11457|0.31944\n11458|0.5\n11459|0.48611\n11460|0.54167\n11461|0.5\n11462|0.51389\n11463|0.55556\n11464|0.41667\n11465|0.41667\n11466|0.25\n11467|0.40278\n11468|0.26389\n11469|0.23611\n11470|0.16667\n11471|0.26389\n11472|0.13889\n11473|0.13889\n11474|0.45833\n11475|0.43056\n11476|0.55556\n11477|0.68056\n11478|0.33333\n11479|0.5\n11480|0.55556\n11481|0.61111\n11482|0.55556\n11483|0.5\n11484|0.33333\n11485|0.44444\n11486|0.43056\n11487|0.48611\n11488|0.43056\n11489|0.33333\n11490|0.20833\n11491|0.5\n11492|0.43056\n11493|0.38889\n11494|0.34722\n11495|0.47222\n11496|0.45833\n11497|0.33333\n11498|0.31944\n11499|0.54167\n11500|0.5\n11501|0.51389\n11502|0.52778\n11503|0.5\n11504|0.5\n11505|0.5\n11506|0.58333\n11507|0.5\n11508|0.55556\n11509|0.77778\n11510|0.5\n11511|0.5\n11512|0.80556\n11513|0.73611\n11514|0.70833\n11515|0.68056\n11516|0.68056\n11517|0.72222\n11518|0.69444\n11519|0.55556\n11520|0.75\n11521|0.58333\n11522|0.55556\n11523|0.52778\n11524|0.48611\n11525|0.625\n11526|0.52778\n11527|0.54167\n11528|0.76389\n11529|0.625\n11530|0.68056\n11531|0.31944\n11532|0.41667\n11533|0.5\n11534|0.51389\n11535|0.65278\n11536|0.54167\n11537|0.52778\n11538|0.5\n11539|0.43056\n11540|0.45833\n11541|0.38889\n11542|0.5\n11543|0.52778\n11544|0.45833\n11545|0.5\n11546|0.40278\n11547|0.44444\n11548|0.34722\n11549|0.31944\n11550|0.18056\n11551|0.15278\n11552|0.16667\n11553|0.48611\n11554|0.47222\n11555|0.13889\n11556|0.5\n11557|0.55556\n11558|0.5\n11559|0.875\n11560|0.80556\n11561|0.47222\n11562|0.55556\n11563|0.59722\n11564|0.54167\n11565|0.51389\n11566|0.75\n11567|0.51389\n11568|0.66667\n11569|0.70833\n11570|0.44444\n11571|0.20833\n11572|0.43056\n11573|0.5\n11574|0.66667\n11575|0.5\n11576|0.54167\n11577|0.48611\n11578|0.47222\n11579|0.43056\n11580|0.15278\n11581|0.16667\n11582|0.52778\n11583|0.52778\n11584|0.52778\n11585|0.45833\n11586|0.44444\n11587|0.33333\n11588|0.61111\n11589|0.61111\n11590|0.52778\n11591|0.5\n11592|0.40278\n11593|0.5\n11594|0.54167\n11595|0.48611\n11596|0.5\n11597|0.59722\n11598|0.5\n11599|0.59722\n11600|0.5\n11601|0.5\n11602|0.5\n11603|0.48611\n11604|0.13889\n11605|0.26389\n11606|0.5\n11607|0.5\n11608|0.29167\n11609|0.5\n11610|0.5\n11611|0.48611\n11612|0.44444\n11613|0.44444\n11614|0.55556\n11615|0.36111\n11616|0.56944\n11617|0.5\n11618|0.5\n11619|0.56944\n11620|0.55556\n11621|0.5\n11622|0.5\n11623|0.5\n11624|0.34722\n11625|0.47222\n11626|0.43056\n11627|0.45833\n11628|0.625\n11629|0.70833\n11630|0.72222\n11631|0.83333\n11632|0.84722\n11633|0.875\n11634|0.88889\n11635|0.51389\n11636|0.41667\n11637|0.30556\n11638|0.20833\n11639|0.11111\n11640|0.27778\n11641|0.15278\n11642|0.41667\n11643|0.30556\n11644|0.5\n11645|0.52778\n11646|0.61111\n11647|0.5\n11648|0.55556\n11649|0.59722\n11650|0.65278\n11651|0.48611\n11652|0.27778\n11653|0.29167\n11654|0.30556\n11655|0.38889\n11656|0.25\n11657|0.18056\n11658|0.25\n11659|0.59722\n11660|0.5\n11661|0.5\n11662|0.34722\n11663|0.52778\n11664|0.68056\n11665|0.5\n11666|0.20833\n11667|0.34722\n11668|0.25\n11669|0.34722\n11670|0.33333\n11671|0.43056\n11672|0.30556\n11673|0.44444\n11674|0.5\n11675|0.40278\n11676|0.31944\n11677|0.36111\n11678|0.73611\n11679|0.73611\n11680|0.65278\n11681|0.55556\n11682|0.76389\n11683|0.72222\n11684|0.72222\n11685|0.75\n11686|0.72222\n11687|0.5\n11688|0.36111\n11689|0.40278\n11690|0.38889\n11691|0.16667\n11692|0.29167\n11693|0.51389\n11694|0.73611\n11695|0.5\n11696|0.54167\n11697|0.51389\n11698|0.20833\n11699|0.38889\n11700|0.15278\n11701|0.5\n11702|0.47222\n11703|0.58333\n11704|0.45833\n11705|0.5\n11706|0.72222\n11707|0.61111\n11708|0.47222\n11709|0.5\n11710|0.27778\n11711|0.27778\n11712|0.26389\n11713|0.22222\n11714|0.52778\n11715|0.16667\n11716|0.47222\n11717|0.36111\n11718|0.34722\n11719|0.5\n11720|0.61111\n11721|0.73611\n11722|0.83333\n11723|0.75\n11724|0.83333\n11725|0.69444\n11726|0.69444\n11727|0.94444\n11728|0.55556\n11729|0.65278\n11730|0.54167\n11731|0.38889\n11732|0.47222\n11733|0.69444\n11734|0.66667\n11735|0.81944\n11736|0.80556\n11737|0.69444\n11738|0.5\n11739|0.5\n11740|0.80556\n11741|0.51389\n11742|0.16667\n11743|0.30556\n11744|0.5\n11745|0.27778\n11746|0.59722\n11747|0.61111\n11748|0.34722\n11749|0.56944\n11750|0.5\n11751|0.5\n11752|0.5\n11753|0.055556\n11754|0.069444\n11755|0.77778\n11756|0.45833\n11757|0.375\n11758|0.30556\n11759|0.30556\n11760|0.30556\n11761|0.097222\n11762|0.11111\n11763|0.25\n11764|0.15278\n11765|0.23611\n11766|0.125\n11767|0.16667\n11768|0.29167\n11769|0.36111\n11770|0.26389\n11771|0.5\n11772|0.23611\n11773|0.55556\n11774|0.59722\n11775|0.5\n11776|0.51389\n11777|0.55556\n11778|0.5\n11779|0.5\n11780|0.5\n11781|0.56944\n11782|0.5\n11783|0.52778\n11784|0.5\n11785|0.5\n11786|0.5\n11787|0.41667\n11788|0.52778\n11789|0.52778\n11790|0.72222\n11791|0.40278\n11792|0.56944\n11793|0.44444\n11794|0.36111\n11795|0.55556\n11796|0.73611\n11797|0.5\n11798|0.63889\n11799|0.44444\n11800|0.66667\n11801|0.63889\n11802|0.68056\n11803|0.5\n11804|0.56944\n11805|0.55556\n11806|0.5\n11807|0.5\n11808|0.40278\n11809|0.41667\n11810|0.5\n11811|0.54167\n11812|0.5\n11813|0.5\n11814|0.47222\n11815|0.66667\n11816|0.48611\n11817|0.40278\n11818|0.36111\n11819|0.5\n11820|0.5\n11821|0.5\n11822|0.5\n11823|0.56944\n11824|0.5\n11825|0.51389\n11826|0.5\n11827|0.44444\n11828|0.68056\n11829|0.68056\n11830|0.58333\n11831|0.68056\n11832|0.73611\n11833|0.79167\n11834|0.90278\n11835|0.83333\n11836|0.98611\n11837|0.5\n11838|0.5\n11839|0.51389\n11840|0.58333\n11841|0.44444\n11842|0.47222\n11843|0.44444\n11844|0.5\n11845|0.47222\n11846|0.5\n11847|0.18056\n11848|0.15278\n11849|0.5\n11850|0.44444\n11851|0.19444\n11852|0.61111\n11853|0.72222\n11854|0.5\n11855|0.52778\n11856|0.5\n11857|0.5\n11858|0.13889\n11859|0.16667\n11860|0.5\n11861|0.16667\n11862|0.097222\n11863|0.34722\n11864|0.34722\n11865|0.19444\n11866|0.5\n11867|0.5\n11868|0.65278\n11869|0.55556\n11870|1\n11871|0.94444\n11872|0.84722\n11873|0.77778\n11874|0.31944\n11875|0.375\n11876|0.44444\n11877|0.41667\n11878|0.375\n11879|0.52778\n11880|0.51389\n11881|0.5\n11882|0.43056\n11883|0.38889\n11884|0.75\n11885|0.36111\n11886|0.22222\n11887|0.18056\n11888|0.61111\n11889|0.55556\n11890|0.55556\n11891|0.5\n11892|0.5\n11893|0.5\n11894|0.5\n11895|0.56944\n11896|0.5\n11897|0.5\n11898|0.375\n11899|0.27778\n11900|0.22222\n11901|0.20833\n11902|0.16667\n11903|0.125\n11904|0.19444\n11905|0.16667\n11906|0.52778\n11907|0.61111\n11908|0.34722\n11909|0.76389\n11910|0.52778\n11911|0.73611\n11912|0.56944\n11913|0.80556\n11914|0.56944\n11915|0.44444\n11916|0.5\n11917|0.77778\n11918|0.59722\n11919|0.59722\n11920|0.59722\n11921|0.75\n11922|0.5\n11923|0.5\n11924|0.88889\n11925|0.83333\n11926|0.84722\n11927|0.84722\n11928|0.5\n11929|0.52778\n11930|0.55556\n11931|0.72222\n11932|0.26389\n11933|0.5\n11934|0.45833\n11935|0.44444\n11936|0.22222\n11937|0.055556\n11938|0.52778\n11939|0.52778\n11940|0.83333\n11941|0.75\n11942|0.59722\n11943|0.55556\n11944|0.83333\n11945|0.63889\n11946|0.59722\n11947|0.51389\n11948|0.52778\n11949|0.59722\n11950|0.61111\n11951|0.61111\n11952|0.5\n11953|0.91667\n11954|0.55556\n11955|0.72222\n11956|0.36111\n11957|0.48611\n11958|0.375\n11959|0.43056\n11960|0.61111\n11961|0.51389\n11962|0.5\n11963|0.27778\n11964|0.44444\n11965|0.38889\n11966|0.40278\n11967|0.54167\n11968|0.47222\n11969|0.45833\n11970|0.31944\n11971|0.70833\n11972|0.58333\n11973|0.5\n11974|0.66667\n11975|0.54167\n11976|0.27778\n11977|0.80556\n11978|0.66667\n11979|0.5\n11980|0.51389\n11981|0.5\n11982|0.52778\n11983|0.55556\n11984|0.52778\n11985|0.47222\n11986|0.54167\n11987|0.52778\n11988|0.5\n11989|0.5\n11990|0.47222\n11991|0.40278\n11992|0.29167\n11993|0.58333\n11994|0.5\n11995|0.55556\n11996|0.44444\n11997|0.65278\n11998|0.5\n11999|0.47222\n12000|0.5\n12001|0.5\n12002|0.52778\n12003|0.56944\n12004|0.375\n12005|0.5\n12006|0.5\n12007|0.5\n12008|0.54167\n12009|0.5\n12010|0.45833\n12011|0.5\n12012|0.54167\n12013|0.45833\n12014|0.52778\n12015|0.5\n12016|0.52778\n12017|0.5\n12018|0.5\n12019|0.5\n12020|0.5\n12021|0.5\n12022|0.80556\n12023|0.86111\n12024|0.40278\n12025|0.40278\n12026|0.5\n12027|0.5\n12028|0.5\n12029|0.54167\n12030|0.44444\n12031|0.55556\n12032|0.5\n12033|0.5\n12034|0.54167\n12035|0.5\n12036|0.875\n12037|0.83333\n12038|0.27778\n12039|0.22222\n12040|0.125\n12041|0.5\n12042|0.66667\n12043|0.55556\n12044|0.5\n12045|0.5\n12046|0.54167\n12047|0.055556\n12048|0\n12049|0.013889\n12050|0.11111\n12051|0.5\n12052|0.5\n12053|0.97222\n12054|0.66667\n12055|0.86111\n12056|0.94444\n12057|0.95833\n12058|0.48611\n12059|0.45833\n12060|0.44444\n12061|0.52778\n12062|0.5\n12063|0.27778\n12064|0.5\n12065|0.52778\n12066|0.55556\n12067|0.33333\n12068|0.40278\n12069|0.36111\n12070|0.5\n12071|0.5\n12072|0.55556\n12073|0.66667\n12074|0.45833\n12075|0.51389\n12076|0.5\n12077|0.33333\n12078|0.59722\n12079|0.5\n12080|0.5\n12081|0.61111\n12082|0.5\n12083|0.44444\n12084|0.375\n12085|0.19444\n12086|0.30556\n12087|0.91667\n12088|0.75\n12089|0.15278\n12090|0.47222\n12091|0.875\n12092|0.80556\n12093|0.79167\n12094|0.5\n12095|0.5\n12096|0.31944\n12097|0.45833\n12098|0.20833\n12099|0.45833\n12100|0.5\n12101|0.11111\n12102|0.36111\n12103|0.34722\n12104|0.5\n12105|0.41667\n12106|0.66667\n12107|0.5\n12108|0.41667\n12109|0.26389\n12110|0.5\n12111|0.26389\n12112|0.52778\n12113|0.22222\n12114|0.63889\n12115|0.58333\n12116|0.47917\n12117|0.19444\n12118|0.18056\n12119|0.51389\n12120|0.45833\n12121|0.31944\n12122|0.5\n12123|0.33333\n12124|0.81944\n12125|0.41667\n12126|0.68056\n12127|0.52778\n12128|0.54167\n12129|0.48611\n12130|0.55556\n12131|0.29167\n12132|0.22222\n12133|0.59722\n12134|0.88889\n12135|0.40278\n12136|0.625\n12137|0.56944\n12138|0.58333\n12139|0.69444\n12140|0.38889\n12141|0.45833\n12142|0.48611\n12143|0.63889\n12144|0.30556\n12145|0.66667\n12146|0.52778\n12147|0.66667\n12148|0.36111\n12149|0.375\n12150|0.30556\n12151|0.56944\n12152|0.61111\n12153|0.19444\n12154|0.27778\n12155|0.26389\n12156|0.375\n12157|0.44444\n12158|0.65278\n12159|0.70833\n12160|0.40278\n12161|1\n12162|0.97222\n12163|0.097222\n12164|0.125\n12165|0.77778\n12166|0.70833\n12167|0.55556\n12168|0.26389\n12169|0.43056\n12170|0.52778\n12171|0.55556\n12172|0.69444\n12173|0.45833\n12174|0.23611\n12175|0.48611\n12176|0.5\n12177|0.44444\n12178|0.44444\n12179|0.51389\n12180|0.30556\n12181|0.41667\n12182|0.15278\n12183|0.25\n12184|0.31944\n12185|0.36111\n12186|0.625\n12187|0.51389\n12188|0.5\n12189|0.55556\n12190|0.61111\n12191|0.61111\n12192|0.22222\n12193|0.31944\n12194|0.38889\n12195|0.34722\n12196|0.375\n12197|0.625\n12198|0.51389\n12199|0.80556\n12200|0.72222\n12201|0.88889\n12202|0.77778\n12203|0.5\n12204|0.33333\n12205|0.56944\n12206|0.5\n12207|0.51389\n12208|0.5\n12209|0.52778\n12210|0.26389\n12211|0.23611\n12212|0.097222\n12213|0.20833\n12214|0.56944\n12215|0.5\n12216|0.5\n12217|0.29167\n12218|0.33333\n12219|0.5\n12220|0.5\n12221|0.055556\n12222|0.125\n12223|0.77778\n12224|0.5\n12225|0.11111\n12226|0.34722\n12227|0.5\n12228|0.76389\n12229|0.36111\n12230|0.47222\n12231|0.44444\n12232|0.51389\n12233|0.41667\n12234|0.5\n12235|0.125\n12236|0.38889\n12237|0.31944\n12238|0.52778\n12239|0.61111\n12240|0.29167\n12241|0.25\n12242|0.26389\n12243|0.26389\n12244|0.30556\n12245|0.52778\n12246|0.5\n12247|0.11111\n12248|0.22222\n12249|0.29167\n12250|0.80556\n12251|0.72222\n12252|0.76389\n12253|0.73611\n12254|0.52778\n12255|0.5\n12256|0.38889\n12257|0.29167\n12258|0.63889\n12259|0.61111\n12260|0.51389\n12261|0.52778\n12262|0.88889\n12263|0.83333\n12264|0.55556\n12265|0.79167\n12266|0.41667\n12267|0.51389\n12268|0.5\n12269|0.61111\n12270|0.5\n12271|0.22222\n12272|0.5\n12273|0.26389\n12274|0.18056\n12275|0.5\n12276|0.44444\n12277|0.5\n12278|0.44444\n12279|0.5\n12280|0.5\n12281|0.5\n12282|0.375\n12283|0.5\n12284|0.25\n12285|0.80556\n12286|0.5\n12287|0.52778\n12288|0.5\n12289|0.36111\n12290|0.41667\n12291|0.5\n12292|0.51389\n12293|0.38889\n12294|0.76389\n12295|0.40278\n12296|0.5\n12297|0.59722\n12298|0.52778\n12299|0.11111\n12300|0.5\n12301|0.58333\n12302|0.5\n12303|0.18056\n12304|0.5\n12305|0.20833\n12306|0.5\n12307|0.625\n12308|0.5\n12309|0.5\n12310|0.375\n12311|0.5\n12312|0.51389\n12313|0.625\n12314|0.38889\n12315|0.66667\n12316|0.58333\n12317|0.61111\n12318|0.54167\n12319|0.20833\n12320|0.58333\n12321|0.77778\n12322|0.73611\n12323|0.61111\n12324|0.33333\n12325|0.54167\n12326|0.25\n12327|0.5\n12328|0.59722\n12329|0.47222\n12330|0.54167\n12331|0.38889\n12332|0.5\n12333|0.56944\n12334|0.5\n12335|0.27778\n12336|0.94444\n12337|0.375\n12338|0.58333\n12339|0.56944\n12340|0.44444\n12341|0.48611\n12342|0.069444\n12343|0.63889\n12344|0.5\n12345|0.20833\n12346|0.25\n12347|0.43056\n12348|0.34722\n12349|0.375\n12350|0.61111\n12351|0.52778\n12352|0.40278\n12353|0.51389\n12354|0.29167\n12355|0.43056\n12356|0.55556\n12357|0.77778\n12358|0.61111\n12359|0.55556\n12360|0.069444\n12361|0.51389\n12362|0.45833\n12363|0.55556\n12364|0.73611\n12365|0.5\n12366|0.44444\n12367|0.83333\n12368|0.55556\n12369|0.34722\n12370|0.31944\n12371|0.41667\n12372|0.25\n12373|0.31944\n12374|0.55556\n12375|0.5\n12376|0.51389\n12377|0.72222\n12378|0.5\n12379|0.18056\n12380|0.25\n12381|0.73611\n12382|0.5\n12383|0.33333\n12384|0.625\n12385|0.33333\n12386|0.36111\n12387|0.68056\n12388|0.47222\n12389|0.34722\n12390|0.25\n12391|0.54167\n12392|0.66667\n12393|0.66667\n12394|0.51389\n12395|0.875\n12396|0.72222\n12397|0.54167\n12398|0.59722\n12399|0.22222\n12400|0.40278\n12401|0.36111\n12402|0.33333\n12403|0.19444\n12404|0.52778\n12405|0.75\n12406|0.66667\n12407|0.59722\n12408|0.26389\n12409|0.76389\n12410|0.47222\n12411|0.5\n12412|0.55556\n12413|0.52778\n12414|0.23611\n12415|0.63889\n12416|0.33333\n12417|0.38889\n12418|0.68056\n12419|0.61111\n12420|0.27778\n12421|0.23611\n12422|0.33333\n12423|0.52778\n12424|0.55556\n12425|0.47222\n12426|0.45833\n12427|0.5\n12428|0.45833\n12429|0.5\n12430|0.5\n12431|0.55556\n12432|0.27778\n12433|0.45833\n12434|0.30556\n12435|0.66667\n12436|0.55556\n12437|0.56944\n12438|0.56944\n12439|0.36111\n12440|0.5\n12441|0.5\n12442|0.58333\n12443|0.41667\n12444|0.25\n12445|0.56944\n12446|0.27778\n12447|0.625\n12448|0.5\n12449|0.5\n12450|0.23611\n12451|0.56944\n12452|0.54167\n12453|0.54167\n12454|0.5\n12455|0.56944\n12456|0.56944\n12457|0.5\n12458|0.25\n12459|0.5\n12460|0.54167\n12461|0.51389\n12462|0.26389\n12463|0.125\n12464|0.52778\n12465|0.19444\n12466|0.47222\n12467|0.5\n12468|0.51389\n12469|0.5\n12470|0.625\n12471|0.5\n12472|0.27778\n12473|0.5\n12474|0.91667\n12475|0.48611\n12476|0.51389\n12477|0.5\n12478|0.52778\n12479|0.38889\n12480|0.29167\n12481|0.34722\n12482|0.40278\n12483|0.29167\n12484|0.22222\n12485|0.23611\n12486|0.86111\n12487|0.29167\n12488|0.18056\n12489|0.27778\n12490|0.31944\n12491|0.33333\n12492|0.23611\n12493|0.79167\n12494|0.40278\n12495|0.5\n12496|0.5\n12497|0.36111\n12498|0.22222\n12499|0.15278\n12500|0.11111\n12501|0.36111\n12502|0.069444\n12503|0.36111\n12504|0.43056\n12505|0.375\n12506|0.31944\n12507|0.41667\n12508|0.23611\n12509|0.31944\n12510|0.375\n12511|0.38889\n12512|0.75\n12513|0.29167\n12514|0.51389\n12515|0.27778\n12516|0.26389\n12517|0.36111\n12518|0.31944\n12519|0.5\n12520|0.54167\n12521|0.5\n12522|0.93056\n12523|0.5\n12524|0.45833\n12525|0.625\n12526|0.5\n12527|0.5\n12528|0.44444\n12529|0.5\n12530|0.5\n12531|0.68056\n12532|0.63889\n12533|0.66667\n12534|0.51389\n12535|0.61111\n12536|0.38889\n12537|0.38889\n12538|0.36111\n12539|0.55556\n12540|0.23611\n12541|0.65278\n12542|0.61111\n12543|0.76389\n12544|0.65278\n12545|0.5\n12546|0.5\n12547|0.51389\n12548|0.66667\n12549|0.18056\n12550|0.25\n12551|0.55556\n12552|0.5\n12553|0.26389\n12554|0.52778\n12555|0.69444\n12556|0.80556\n12557|0.48611\n12558|0.68056\n12559|0.63889\n12560|0.59722\n12561|0.5\n12562|0.58333\n12563|0.56944\n12564|0.33333\n12565|0.11111\n12566|0.625\n12567|0.45833\n12568|0.47222\n12569|0.55556\n12570|0.41667\n12571|0.45833\n12572|0.41667\n12573|0.16667\n12574|0.31944\n12575|0.51389\n12576|0.54167\n12577|0.30556\n12578|0.69444\n12579|0.625\n12580|0.83333\n12581|0.90278\n12582|0.56944\n12583|0.29167\n12584|0.5\n12585|0.5\n12586|0.5\n12587|0.5\n12588|0.38889\n12589|0.36111\n12590|0.38889\n12591|0.5\n12592|0.66667\n12593|0.65278\n12594|0.61111\n12595|0.52778\n12596|0.48611\n12597|0.56944\n12598|0.41667\n12599|0.41667\n12600|0.5\n12601|0.44444\n12602|0.70833\n12603|0.56944\n12604|0.59722\n12605|0.5\n12606|0.52778\n12607|0.40278\n12608|0.5\n12609|0.69444\n12610|0.5\n12611|0.5\n12612|0.61111\n12613|0.5\n12614|0.11111\n12615|0.18056\n12616|0.15278\n12617|0.055556\n12618|0.75\n12619|0.54167\n12620|0.5\n12621|0.66667\n12622|0.27778\n12623|0.30556\n12624|0.34722\n12625|0.34722\n12626|0.375\n12627|0.34722\n12628|0.22222\n12629|0.069444\n12630|0.48611\n12631|0.22222\n12632|0.16667\n12633|0.31944\n12634|0.40278\n12635|0.54167\n12636|0.55556\n12637|0.34722\n12638|0.375\n12639|0.43056\n12640|0.77778\n12641|0.51389\n12642|0.58333\n12643|0.875\n12644|0.68056\n12645|0.86111\n12646|0.44444\n12647|0.5\n12648|0.5\n12649|0.52778\n12650|0.63889\n12651|0.44444\n12652|0.45833\n12653|0.27778\n12654|0.55556\n12655|0.30556\n12656|0.29167\n12657|0.31944\n12658|0.18056\n12659|0.375\n12660|0.31944\n12661|0.55556\n12662|0.56944\n12663|0.5\n12664|0.16667\n12665|0.66667\n12666|0.48611\n12667|0.34722\n12668|0.27778\n12669|0.23611\n12670|0.26389\n12671|0.54167\n12672|0.61111\n12673|0.40278\n12674|0.055556\n12675|0.15278\n12676|0.36111\n12677|0.44444\n12678|0.23611\n12679|0.44444\n12680|0.33333\n12681|0.18056\n12682|0.33333\n12683|0.15278\n12684|0.20833\n12685|0.51389\n12686|0.88889\n12687|0.19444\n12688|0.36111\n12689|0.56944\n12690|0.20833\n12691|0.33333\n12692|0.097222\n12693|0.38889\n12694|0.083333\n12695|0.45833\n12696|0.41667\n12697|0.5\n12698|0.5\n12699|0.40278\n12700|0.29167\n12701|0.5\n12702|0.70833\n12703|0.5\n12704|0.125\n12705|0.083333\n12706|0.43056\n12707|0.51389\n12708|0.79167\n12709|0.68056\n12710|0.61111\n12711|0.75\n12712|0.47222\n12713|0.5\n12714|0.51389\n12715|0.51389\n12716|0.19444\n12717|0.25\n12718|0.027778\n12719|0.48611\n12720|0.45833\n12721|0.58333\n12722|0.73611\n12723|0.23611\n12724|0.5\n12725|0.875\n12726|0.44444\n12727|0.5\n12728|0.5\n12729|0.27778\n12730|0.20833\n12731|0.44444\n12732|0.41667\n12733|0.45833\n12734|0.48611\n12735|0.20833\n12736|0.5\n12737|0.5\n12738|0.52778\n12739|0.375\n12740|0.43056\n12741|0.5\n12742|0.5\n12743|0.5\n12744|0.55556\n12745|0.52778\n12746|0.58333\n12747|0.375\n12748|0.55556\n12749|0.41667\n12750|0.30556\n12751|0.27778\n12752|0.18056\n12753|0.31944\n12754|0.11111\n12755|0.38889\n12756|0.33333\n12757|0.19444\n12758|0.27778\n12759|0.52778\n12760|0.5\n12761|0.16667\n12762|0.27778\n12763|0.48611\n12764|0.5\n12765|0.47222\n12766|0.56944\n12767|0.77778\n12768|0.84722\n12769|0.77778\n12770|0.52778\n12771|0.83333\n12772|0.91667\n12773|0.625\n12774|0.83333\n12775|0.86111\n12776|0.83333\n12777|0.86111\n12778|0.94444\n12779|0.61111\n12780|0.41667\n12781|0.375\n12782|0.34722\n12783|0.5\n12784|0.5\n12785|0.30556\n12786|0.5\n12787|0.5\n12788|0.23611\n12789|0.29167\n12790|0.5\n12791|0.11111\n12792|0.31944\n12793|0.40278\n12794|0.5\n12795|0.5\n12796|0.23611\n12797|0.56944\n12798|0.61111\n12799|0.76389\n12800|0.73611\n12801|0.5\n12802|0.65278\n12803|0.58333\n12804|0.63889\n12805|0.5\n12806|0.38889\n12807|0.48611\n12808|0.56944\n12809|0.41667\n12810|0.33333\n12811|0.51389\n12812|0.055556\n12813|0.25\n12814|0.23611\n12815|0.41667\n12816|0.34722\n12817|0.5\n12818|0.23611\n12819|0.5\n12820|0.5\n12821|0.29167\n12822|0.73611\n12823|0.5\n12824|0.34722\n12825|0.5\n12826|0.44444\n12827|0.38889\n12828|0.45833\n12829|0.20833\n12830|0.52778\n12831|0.25\n12832|0.44444\n12833|0.52778\n12834|0.375\n12835|0.52778\n12836|0.56944\n12837|0.44444\n12838|0.45833\n12839|0.31944\n12840|0.63889\n12841|0.69444\n12842|0.38889\n12843|0.77778\n12844|0.61111\n12845|0.81944\n12846|0.77778\n12847|0.41667\n12848|0.38889\n12849|0.44444\n12850|0.13889\n12851|0.19444\n12852|0.5\n12853|0.16667\n12854|0.22222\n12855|0.77778\n12856|0.95833\n12857|0.91667\n12858|0.40278\n12859|0.375\n12860|0.44444\n12861|0.29167\n12862|0.29167\n12863|0.19444\n12864|0.20833\n12865|0.52778\n12866|0.76389\n12867|0.72222\n12868|0.055556\n12869|0.5\n12870|0.16667\n12871|0.5\n12872|0.55556\n12873|0.5\n12874|0.5\n12875|0.58333\n12876|0.61111\n12877|0.72222\n12878|0.30556\n12879|0.29167\n12880|0.29167\n12881|0.097222\n12882|0.59722\n12883|0.5\n12884|0.5\n12885|0.79167\n12886|0.88889\n12887|0.5\n12888|0.5\n12889|0.5\n12890|0.5\n12891|0.36111\n12892|0.44444\n12893|0.31944\n12894|0.36111\n12895|0.47222\n12896|0.31944\n12897|0.29167\n12898|0.13889\n12899|0.19444\n12900|0.11111\n12901|0.5\n12902|0.5\n12903|0.15278\n12904|0.18056\n12905|0.59722\n12906|0.54167\n12907|0.68056\n12908|0.5\n12909|0.22222\n12910|0.61111\n12911|0.5\n12912|0.40278\n12913|0.44444\n12914|0.5\n12915|0.5\n12916|0.54167\n12917|0.5\n12918|0.5\n12919|0.5\n12920|0.5\n12921|0.51389\n12922|0.66667\n12923|0.5\n12924|0.55556\n12925|0.66667\n12926|0.65278\n12927|0.68056\n12928|0.66667\n12929|0.79167\n12930|0.68056\n12931|0.73611\n12932|0.5\n12933|0.5\n12934|0.77778\n12935|0.47222\n12936|0.41667\n12937|0.44444\n12938|0.47222\n12939|0.69444\n12940|0.38889\n12941|0.19444\n12942|0.22222\n12943|0.25\n12944|0.38889\n12945|0.55556\n12946|0.33333\n12947|0.19444\n12948|0.76389\n12949|0.52778\n12950|0.58333\n12951|0.86111\n12952|0.94444\n12953|0.94444\n12954|0.55556\n12955|0.43056\n12956|0.44444\n12957|0.38889\n12958|0.61111\n12959|0.76389\n12960|0.5\n12961|0.45833\n12962|0.56944\n12963|0.29167\n12964|0.34722\n12965|0.41667\n12966|0.18056\n12967|0.52778\n12968|0.56944\n12969|0.51389\n12970|0.25\n12971|0.375\n12972|0.22222\n12973|0.38889\n12974|0.27778\n12975|0.52778\n12976|0.55556\n12977|0.375\n12978|0.52778\n12979|0.36111\n12980|0.18056\n12981|0.34722\n12982|0.27778\n12983|0.16667\n12984|0.20833\n12985|0.70833\n12986|0.44444\n12987|0.47222\n12988|0.38889\n12989|0.5\n12990|0.51389\n12991|0.41667\n12992|0.56944\n12993|0.41667\n12994|0.40278\n12995|0.5\n12996|0.56944\n12997|0.5\n12998|0.47222\n12999|0.77778\n13000|0.30556\n13001|0.22222\n13002|0.19444\n13003|0.63889\n13004|0.65278\n13005|0.44444\n13006|0.875\n13007|0.40278\n13008|0.5\n13009|0.44444\n13010|0.29167\n13011|0.48611\n13012|0.5\n13013|0.58333\n13014|0.5\n13015|0.48611\n13016|0.375\n13017|0.44444\n13018|0.43056\n13019|0.20833\n13020|0.56944\n13021|0.63889\n13022|0.54167\n13023|0.33333\n13024|0.34722\n13025|0.36111\n13026|0.52778\n13027|0.30556\n13028|0.375\n13029|0.73611\n13030|0.66667\n13031|0.30556\n13032|0.38889\n13033|0.47222\n13034|0.5\n13035|0.65278\n13036|0.54167\n13037|0.54167\n13038|0.29167\n13039|0.23611\n13040|0.76389\n13041|0.72222\n13042|0.69444\n13043|0.68056\n13044|0.70833\n13045|0.625\n13046|0.5\n13047|0.36111\n13048|0.31944\n13049|0.375\n13050|0.56944\n13051|0.55556\n13052|0.5\n13053|0.52778\n13054|0.47222\n13055|0.5\n13056|0.47222\n13057|0.61111\n13058|0.26389\n13059|0.54167\n13060|0.5\n13061|0.70833\n13062|0.69444\n13063|0.30556\n13064|0.70833\n13065|0.5\n13066|0.52778\n13067|0.70833\n13068|0.5\n13069|0.56944\n13070|0.77778\n13071|0.5\n13072|0.52778\n13073|0.84722\n13074|0.5\n13075|0.55556\n13076|0.54167\n13077|0.51389\n13078|0.52778\n13079|0.51389\n13080|0.80556\n13081|0.69444\n13082|0.083333\n13083|0.58333\n13084|0.61111\n13085|0.44444\n13086|0.13889\n13087|0.61111\n13088|0.47222\n13089|0.44444\n13090|0.22222\n13091|0.25\n13092|0.5\n13093|0.48611\n13094|0.61111\n13095|0.69444\n13096|0.54167\n13097|0.77778\n13098|0.65278\n13099|0.66667\n13100|0.625\n13101|0.5\n13102|0.5\n13103|0.31944\n13104|0.5\n13105|0.55556\n13106|0.55556\n13107|0.16667\n13108|0.94444\n13109|0.58333\n13110|0.48611\n13111|0.51389\n13112|0.55556\n13113|0.5\n13114|0.625\n13115|0.5\n13116|0.69444\n13117|0.66667\n13118|0.30556\n13119|0.86111\n13120|0.25\n13121|0.77778\n13122|0.77778\n13123|0.58333\n13124|0.80556\n13125|0.31944\n13126|0.75\n13127|0.45833\n13128|0.52778\n13129|0.72222\n13130|0.80556\n13131|0.36111\n13132|0.69444\n13133|0.80556\n13134|0.73611\n13135|0.375\n13136|0.36111\n13137|0.55556\n13138|0.61111\n13139|0.5\n13140|0.34722\n13141|0.72222\n13142|0.59722\n13143|0.56944\n13144|0.5\n13145|0.013889\n13146|0.25\n13147|0.125\n13148|0.069444\n13149|0.52778\n13150|0.055556\n13151|0.47222\n13152|0.54167\n13153|0.66667\n13154|0.44444\n13155|0.5\n13156|0.58333\n13157|0.61111\n13158|0.15278\n13159|0.52778\n13160|0.36111\n13161|0.58333\n13162|0.41667\n13163|0.66667\n13164|0.69444\n13165|0.54167\n13166|0.76389\n13167|0.69444\n13168|0.5\n13169|0.875\n13170|0.70833\n13171|0.66667\n13172|0.44444\n13173|0.66667\n13174|0.51389\n13175|0.72222\n13176|0.61111\n13177|0.5\n13178|0.43056\n13179|0.79167\n13180|0.5\n13181|0.72222\n13182|0.88889\n13183|0.5\n13184|0.5\n13185|0.65278\n13186|0.5\n13187|0.52778\n13188|0.5\n13189|0.55556\n13190|0.47222\n13191|0.5\n13192|0.54167\n13193|0.44444\n13194|0.33333\n13195|0.48611\n13196|0.52778\n13197|0.34722\n13198|0.125\n13199|0.5\n13200|0.33333\n13201|0.19444\n13202|0.27778\n13203|0.45833\n13204|0.40278\n13205|0.40278\n13206|0.33333\n13207|0.47222\n13208|0.27778\n13209|0.30556\n13210|0.22222\n13211|0.5\n13212|0.33333\n13213|0.5\n13214|0.61111\n13215|0.77778\n13216|0.80556\n13217|0.75\n13218|0.81944\n13219|0.83333\n13220|0.5\n13221|0.5\n13222|0.5\n13223|0.72222\n13224|0.43056\n13225|0.25\n13226|0.20833\n13227|0.52778\n13228|0.16667\n13229|0.55556\n13230|0.5\n13231|0.18056\n13232|0.44444\n13233|0.55556\n13234|0.61111\n13235|0.25\n13236|0.26389\n13237|0.72222\n13238|0.79167\n13239|0.5\n13240|0.5\n13241|0.5\n13242|0.52778\n13243|0.61111\n13244|0.77778\n13245|0.58333\n13246|0.5\n13247|0.31944\n13248|0.5\n13249|0.30556\n13250|0.33333\n13251|0.15278\n13252|0.75\n13253|0.63889\n13254|0.58333\n13255|0.5\n13256|0.38889\n13257|0.58333\n13258|0.47222\n13259|0.15278\n13260|0.66667\n13261|0.44444\n13262|0.5\n13263|0.38889\n13264|0.77778\n13265|0.63889\n13266|0.47222\n13267|0.63889\n13268|0.44444\n13269|0.33333\n13270|0.44444\n13271|0.48611\n13272|0.43056\n13273|0.54167\n13274|0.43056\n13275|0.16667\n13276|0.5\n13277|0.80556\n13278|0.79167\n13279|0.5\n13280|0.5\n13281|0.52778\n13282|0.5\n13283|0.52778\n13284|0.5\n13285|0.73611\n13286|0.52778\n13287|0.59722\n13288|0.77778\n13289|0.56944\n13290|0.5\n13291|0.44444\n13292|0.51389\n13293|0.58333\n13294|0.26389\n13295|0.41667\n13296|0.33333\n13297|0.20833\n13298|0.33333\n13299|0.31944\n13300|0.33333\n13301|0.45833\n13302|0.5\n13303|0.013889\n13304|0.23611\n13305|0.61111\n13306|0.61111\n13307|0.26389\n13308|0.40278\n13309|0.44444\n13310|0.19444\n13311|0.51389\n13312|0.44444\n13313|0.65278\n13314|0.44444\n13315|0.52778\n13316|0.22222\n13317|0.51389\n13318|0.51389\n13319|0.52778\n13320|0.13889\n13321|0.27778\n13322|0.125\n13323|0.44444\n13324|0.45833\n13325|0.33333\n13326|0.5\n13327|0.16667\n13328|0.25\n13329|0.5\n13330|0.43056\n13331|0.59722\n13332|0.65278\n13333|0.875\n13334|0.875\n13335|0.33333\n13336|0.5\n13337|1\n13338|0.52778\n13339|0.375\n13340|0.44444\n13341|0.26389\n13342|0.22222\n13343|0.29167\n13344|0.44444\n13345|0.47222\n13346|0.52778\n13347|0.36111\n13348|0.45833\n13349|0.38889\n13350|0.63889\n13351|0.55556\n13352|0.84722\n13353|0.76389\n13354|0.97222\n13355|0.97222\n13356|0.63889\n13357|0.45833\n13358|0.55556\n13359|0.11111\n13360|0.125\n13361|0.5\n13362|0.083333\n13363|0.76389\n13364|0.5\n13365|0.41667\n13366|0.63889\n13367|0.16667\n13368|0.33333\n13369|0.5\n13370|0.40278\n13371|0.15278\n13372|0.22222\n13373|0.18056\n13374|0.27778\n13375|0.54167\n13376|0.5\n13377|0.22222\n13378|0.40278\n13379|0.48611\n13380|0.72222\n13381|0.54167\n13382|0.83333\n13383|0.48611\n13384|0.52778\n13385|0.58333\n13386|0.55556\n13387|0.5\n13388|0.5\n13389|0.5\n13390|0.52778\n13391|0.75\n13392|0.5\n13393|0.5\n13394|0.36111\n13395|0.56944\n13396|0.41667\n13397|0.5\n13398|0.5\n13399|0.52778\n13400|0.40278\n13401|0.5\n13402|0.76389\n13403|0.72222\n13404|0.59722\n13405|0.5\n13406|0.77778\n13407|0.88889\n13408|0.61111\n13409|0.84722\n13410|0.5\n13411|0.75\n13412|0.95833\n13413|0.44444\n13414|0.5\n13415|0.88889\n13416|0.5\n13417|0.5\n13418|0.5\n13419|0.5\n13420|0.54167\n13421|0.27778\n13422|0.43056\n13423|0.55556\n13424|0.63889\n13425|0.61111\n13426|0.48611\n13427|0.66667\n13428|0.55556\n13429|0.52778\n13430|0.5\n13431|0.55556\n13432|0.69444\n13433|0.80556\n13434|0.56944\n13435|0.80556\n13436|0.34722\n13437|0.23611\n13438|0.84722\n13439|0.88889\n13440|0.65278\n13441|0.69444\n13442|0.77778\n13443|0.68056\n13444|0.75\n13445|0.75\n13446|0.63889\n13447|0.84722\n13448|0.77778\n13449|0.72222\n13450|0.36111\n13451|0.38889\n13452|0.59722\n13453|0.68056\n13454|0.83333\n13455|0.79167\n13456|0.13889\n13457|0.75\n13458|0.72222\n13459|0.81944\n13460|0.69444\n13461|0.36111\n13462|0.47222\n13463|0.29167\n13464|0.26389\n13465|0.43056\n13466|0.55556\n13467|0.5\n13468|0.73611\n13469|0.59722\n13470|0.83333\n13471|0.75\n13472|0.61111\n13473|0.73611\n13474|0.625\n13475|0.65278\n13476|0.68056\n13477|0.80556\n13478|1\n13479|0.875\n13480|0.63889\n13481|0.58333\n13482|0.44444\n13483|0.48611\n13484|0.55556\n13485|0.73611\n13486|0.61111\n13487|0.65278\n13488|0.625\n13489|0.5\n13490|0.59722\n13491|0.75\n13492|0.52778\n13493|0.84722\n13494|0.51389\n13495|0.5\n13496|0.45833\n13497|0.81944\n13498|0.72222\n13499|0.40278\n13500|0.68056\n13501|0.77778\n13502|0.81944\n13503|0.65278\n13504|0.76389\n13505|0.73611\n13506|0.81944\n13507|0.63889\n13508|0.36111\n13509|0.59722\n13510|0.36111\n13511|0.875\n13512|0.875\n13513|0.66667\n13514|0.66667\n13515|0.76389\n13516|0.43056\n13517|0.70833\n13518|0.86111\n13519|0.66667\n13520|0.83333\n13521|0.58333\n13522|0.59722\n13523|0.33333\n13524|0.59722\n13525|0.72222\n13526|0.76389\n13527|0.55556\n13528|0.65278\n13529|0.81944\n13530|0.55556\n13531|0.59722\n13532|0.52778\n13533|0.38889\n13534|0.66667\n13535|0.65278\n13536|0.66667\n13537|0.81944\n13538|0.70833\n13539|0.38889\n13540|0.5\n13541|0.80556\n13542|0.76389\n13543|0.84722\n13544|0.68056\n13545|0.5\n13546|0.77778\n13547|0.33333\n13548|0.18056\n13549|0.52778\n13550|0.76389\n13551|0.44444\n13552|0.55556\n13553|0.75\n13554|0.76389\n13555|0.5\n13556|0.61111\n13557|0.76389\n13558|0.55556\n13559|0.52778\n13560|0.5\n13561|0.79167\n13562|0.5\n13563|0.61111\n13564|0.69444\n13565|0.66667\n13566|0.45833\n13567|0.68056\n13568|0.93056\n13569|0.45833\n13570|0.63889\n13571|0.875\n13572|0.61111\n13573|0.75\n13574|0.56944\n13575|0.25\n13576|0.5\n13577|0.5\n13578|0.5\n13579|0.81944\n13580|0.81944\n13581|0.73611\n13582|0.83333\n13583|0.72222\n13584|0.72222\n13585|0.5\n13586|0.88889\n13587|0.54167\n13588|0.43056\n13589|0.76389\n13590|0.84722\n13591|0.375\n13592|0.38889\n13593|0.72222\n13594|0.45833\n13595|0.76389\n13596|0.72222\n13597|0.79167\n13598|0.72222\n13599|0.55556\n13600|0.81944\n13601|0.90278\n13602|0.69444\n13603|0.75\n13604|0.73611\n13605|0.83333\n13606|0.22222\n13607|0.125\n13608|0.55556\n13609|0.625\n13610|0.65278\n13611|0.58333\n13612|0.81944\n13613|0.58333\n13614|0.84722\n13615|0.63889\n13616|0.45833\n13617|0.33333\n13618|0.5\n13619|0.40278\n13620|0.45833\n13621|0.75\n13622|0.68056\n13623|0.45833\n13624|0.5\n13625|0.54167\n13626|0.44444\n13627|0.65278\n13628|0.86111\n13629|0.58333\n13630|0.83333\n13631|0.70833\n13632|0.72222\n13633|0.66667\n13634|0.375\n13635|0.30556\n13636|0.72222\n13637|0.61111\n13638|0.79167\n13639|0.625\n13640|0.69444\n13641|0.66667\n13642|0.65278\n13643|0.5\n13644|0.5\n13645|0.51389\n13646|0.55556\n13647|0.58333\n13648|0.76389\n13649|0.70833\n13650|0.72222\n13651|0.29167\n13652|0.76389\n13653|0.61111\n13654|0.5\n13655|0.625\n13656|0.77778\n13657|0.77778\n13658|0.80556\n13659|0.75\n13660|0.58333\n13661|0.83333\n13662|0.68056\n13663|0.43056\n13664|0.84722\n13665|0.61111\n13666|0.5\n13667|0.59722\n13668|0.65278\n13669|0.45833\n13670|0.83333\n13671|0.5\n13672|0.72222\n13673|0.29167\n13674|0.83333\n13675|0.625\n13676|0.58333\n13677|0.65278\n13678|0.5\n13679|0.4375\n13680|0.5\n13681|0.73611\n13682|0.5\n13683|0.40278\n13684|0.47222\n13685|0.30556\n13686|0.48611\n13687|0.5\n13688|0.33333\n13689|0.5\n13690|0.5\n13691|0.95833\n13692|0.5\n13693|0.73611\n13694|0.5\n13695|0.73611\n13696|0.77778\n13697|0.65278\n13698|0.5\n13699|0.48611\n13700|0.5\n13701|0.44444\n13702|0.40278\n13703|0.79167\n13704|0.80556\n13705|0.55556\n13706|0.5\n13707|0.5\n13708|0.5\n13709|0.76389\n13710|0.5\n13711|0.51389\n13712|0.77778\n13713|0.5\n13714|0.81944\n13715|0.52778\n13716|0.66667\n13717|0.31944\n13718|0.65278\n13719|0.79167\n13720|0.90278\n13721|0.75\n13722|0.5\n13723|0.38889\n13724|0.56944\n13725|0.5\n13726|0.5\n13727|0.5\n13728|0.55556\n13729|0.54167\n13730|0.5\n13731|0.5\n13732|0.5\n13733|0.54167\n13734|0.40278\n13735|0.5\n13736|0.5\n13737|0.33333\n13738|0.43056\n13739|0.5\n13740|0.61111\n13741|0.58333\n13742|0.77778\n13743|0.5\n13744|0.5\n13745|0.5\n13746|0.66667\n13747|0.16667\n13748|0.80556\n13749|0.58333\n13750|0.23611\n13751|0.80556\n13752|0.73611\n13753|0.76389\n13754|0.48611\n13755|0.5\n13756|0.5\n13757|0.70833\n13758|0.77778\n13759|0.83333\n13760|0.5\n13761|0.66667\n13762|0.75\n13763|0.66667\n13764|0.59722\n13765|0.58333\n13766|0.83333\n13767|0.76389\n13768|0.90278\n13769|0.86111\n13770|0.75\n13771|0.94444\n13772|0.44444\n13773|0.61111\n13774|0.52778\n13775|0.79167\n13776|0.73611\n13777|0.51389\n13778|0.25\n13779|0.40278\n13780|0.95833\n13781|0.84722\n13782|0.90278\n13783|0.94444\n13784|0.97222\n13785|0.83333\n13786|0.76389\n13787|0.66667\n13788|0.66667\n13789|0.55556\n13790|0.77778\n13791|0.75\n13792|0.875\n13793|0.58333\n13794|0.48611\n13795|0.625\n13796|0.5\n13797|0.72222\n13798|0.81944\n13799|0.75\n13800|0.80556\n13801|0.83333\n13802|0.76389\n13803|0.68056\n13804|0.77778\n13805|0.65278\n13806|0.70833\n13807|0.54167\n13808|0.80556\n13809|0.86111\n13810|0.5\n13811|0.80556\n13812|0.65278\n13813|0.81944\n13814|0.72222\n13815|0.76389\n13816|0.58333\n13817|0.80556\n13818|0.94444\n13819|0.90278\n13820|0.875\n13821|0.84722\n13822|0.88889\n13823|0.68056\n13824|0.83333\n13825|0.65278\n13826|0.51389\n13827|0.47222\n13828|0.66667\n13829|0.36111\n13830|0.5\n13831|0.5\n13832|0.44444\n13833|0.5\n13834|0.93056\n13835|0.58333\n13836|0.5\n13837|0.5\n13838|0.5\n13839|0.5\n13840|0.5\n13841|0.63889\n13842|0.77778\n13843|0.77778\n13844|0.63889\n13845|0.54167\n13846|0.77778\n13847|0.79167\n13848|0.77778\n13849|0.625\n13850|0.68056\n13851|0.77778\n13852|0.83333\n13853|0.72222\n13854|0.45833\n13855|0.77778\n13856|0.55556\n13857|0.5\n13858|0.65278\n13859|0.5\n13860|0.5\n13861|0.5\n13862|0.33333\n13863|0.5\n13864|0.5\n13865|0.54167\n13866|0.83333\n13867|0.33333\n13868|0.66667\n13869|0.5\n13870|0.5\n13871|0.51389\n13872|0.5\n13873|0.43056\n13874|0.5\n13875|0.83333\n13876|0.65278\n13877|0.72222\n13878|0.375\n13879|0.58333\n13880|0.47222\n13881|0.5\n13882|0.5\n13883|0.44444\n13884|0.72222\n13885|0.63889\n13886|0.5\n13887|0.55556\n13888|0.5\n13889|0.5\n13890|0.44444\n13891|0.56944\n13892|0.63889\n13893|0.88889\n13894|0.88889\n13895|0.5\n13896|0.5\n13897|0.69444\n13898|0.45833\n13899|0.5\n13900|0.48611\n13901|0.55556\n13902|0.41667\n13903|0.5\n13904|0.44444\n13905|0.5\n13906|0.51389\n13907|0.5\n13908|0.44444\n13909|0.44444\n13910|0.55556\n13911|0.55556\n13912|0.44444\n13913|0.5\n13914|0.5\n13915|0.76389\n13916|0.5\n13917|0.5\n13918|0.5\n13919|0.5\n13920|0.5\n13921|0.70833\n13922|0.54167\n13923|0.52778\n13924|0.68056\n13925|0.43056\n13926|0.5\n13927|0.84722\n13928|0.86111\n13929|0.47222\n13930|0.55556\n13931|0.5\n13932|0.5\n13933|0.5\n13934|0.69444\n13935|0.61111\n13936|0.5\n13937|0.5\n13938|0.5\n13939|0.5\n13940|0.5\n13941|0.5\n13942|0.45833\n13943|0.90278\n13944|0.55556\n13945|0.41667\n13946|0.80556\n13947|0.52778\n13948|0.73611\n13949|0.47222\n13950|0.55556\n13951|0.54167\n13952|0.5\n13953|0.5\n13954|0.5\n13955|0.58333\n13956|0.5\n13957|0.5\n13958|0.5\n13959|0.72222\n13960|0.5\n13961|0.5\n13962|0.77778\n13963|0.73611\n13964|0.5\n13965|0.54167\n13966|0.5\n13967|0.79167\n13968|0.5\n13969|0.5\n13970|0.61111\n13971|0.68056\n13972|0.5\n13973|0.5\n13974|0.61111\n13975|0.56944\n13976|0.51389\n13977|0.54167\n13978|0.5\n13979|0.80556\n13980|0.5\n13981|0.5\n13982|0.5\n13983|0.5\n13984|0.5\n13985|0.84722\n13986|0.5\n13987|0.5\n13988|0.5\n13989|0.51389\n13990|0.5\n13991|0.40278\n13992|0.63889\n13993|0.63889\n13994|0.65278\n13995|0.51389\n13996|0.5\n13997|0.45833\n13998|0.76389\n13999|0.86111\n14000|0.70833\n14001|0.83333\n14002|0.5\n14003|0.5\n14004|0.59722\n14005|0.95833\n14006|0.72222\n14007|0.5\n14008|0.5\n14009|0.5\n14010|0.51389\n14011|0.77778\n14012|0.70833\n14013|0.45833\n14014|0.5\n14015|0.55556\n14016|0.84722\n14017|0.5\n14018|0.65278\n14019|0.73611\n14020|0.5\n14021|0.5\n14022|0.83333\n14023|0.94444\n14024|0.52778\n14025|0.5\n14026|0.80556\n14027|0.5\n14028|0.5\n14029|0.69444\n14030|0.5\n14031|0.65278\n14032|0.48611\n14033|0.47222\n14034|0.41667\n14035|0.5\n14036|0.44444\n14037|0.76389\n14038|0.5\n14039|0.5\n14040|0.5\n14041|0.97222\n14042|0.48611\n14043|0.5\n14044|0.5\n14045|0.5\n14046|0.52778\n14047|0.33333\n14048|0.5\n14049|0.70833\n14050|0.61111\n14051|0.5\n14052|0.51389\n14053|0.47222\n14054|0.94444\n14055|0.58333\n14056|0.48611\n14057|0.58333\n14058|0.77778\n14059|0.77778\n14060|0.80556\n14061|0.5\n14062|0.51389\n14063|0.70833\n14064|0.5\n14065|0.98611\n14066|0.5\n14067|0.5\n14068|0.5\n14069|0.55556\n14070|0.61111\n14071|0.80556\n14072|0.83333\n14073|0.5\n14074|0.45833\n14075|0.61111\n14076|0.5\n14077|0.5\n14078|0.68056\n14079|0.5\n14080|0.5\n14081|0.5\n14082|0.59722\n14083|0.41667\n14084|0.38889\n14085|0.5\n14086|0.5\n14087|0.5\n14088|0.38889\n14089|0.22222\n14090|0.5\n14091|0.59722\n14092|0.875\n14093|0.625\n14094|0.47222\n14095|0.91667\n14096|0.83333\n14097|0.5\n14098|0.40278\n14099|0.45833\n14100|0.83333\n14101|0.72222\n14102|0.44444\n14103|0.66667\n14104|0.47222\n14105|0.18056\n14106|0.29167\n14107|0.48611\n14108|0.51389\n14109|0.86111\n14110|0.5\n14111|0.52778\n14112|0.83333\n14113|0.5\n14114|0.75\n14115|0.48611\n14116|0.54167\n14117|0.56944\n14118|0.80556\n14119|0.90625\n14120|0.91667\n14121|0.88889\n14122|0.63889\n14123|0.73611\n14124|0.43056\n14125|0.79167\n14126|0.63889\n14127|0.47222\n14128|0.44444\n14129|0.66667\n14130|0.45833\n14131|0.52778\n14132|0.65278\n14133|0.52778\n14134|0.59722\n14135|0.38889\n14136|0.65278\n14137|0.66667\n14138|0.86111\n14139|0.5\n14140|0.5\n14141|0.625\n14142|0.5\n14143|0.55556\n14144|0.38889\n14145|0.5\n14146|0.5\n14147|0.5\n14148|0.5\n14149|0.40278\n14150|0.5\n14151|0.51389\n14152|0.47222\n14153|0.5\n14154|0.5\n14155|0.5\n14156|0.25\n14157|0.44444\n14158|0.79167\n14159|0.61111\n14160|0.5\n14161|0.77778\n14162|0.30556\n14163|0.70833\n14164|0.88889\n14165|1\n14166|0.58333\n14167|0.75\n14168|0.83333\n14169|0.77778\n14170|0.76389\n14171|0.5\n14172|0.76389\n14173|0.81944\n14174|0.77778\n14175|0.65278\n14176|0.45833\n14177|0.625\n14178|0.69444\n14179|0.90278\n14180|0.51389\n14181|0.45833\n14182|0.5\n14183|0.52778\n14184|0.33333\n14185|0.73611\n14186|0.41667\n14187|0.5\n14188|0.5\n14189|0.5\n14190|0.56944\n14191|0.5\n14192|0.5\n14193|0.5\n14194|0.5\n14195|0.47222\n14196|0.5\n14197|0.5\n14198|0.55556\n14199|0.5\n14200|0.41667\n14201|0.5\n14202|0.65278\n14203|0.5\n14204|0.5\n14205|0.5\n14206|0.63889\n14207|0.58333\n14208|0.5\n14209|0.66667\n14210|0.76389\n14211|0.5\n14212|0.5\n14213|0.52778\n14214|0.43056\n14215|0.5\n14216|0.5\n14217|0.5\n14218|0.5\n14219|0.5\n14220|0.45833\n14221|0.5\n14222|0.5\n14223|0.88889\n14224|0.5\n14225|0.5\n14226|0.81944\n14227|0.5\n14228|0.61111\n14229|0.54167\n14230|0.51389\n14231|0.59722\n14232|0.66667\n14233|0.5\n14234|0.73611\n14235|0.31944\n14236|0.31944\n14237|0.69444\n14238|0.73611\n14239|0.5\n14240|0.5\n14241|0.54167\n14242|0.5\n14243|0.5\n14244|0.5\n14245|0.41667\n14246|0.54167\n14247|0.76389\n14248|0.77778\n14249|0.75\n14250|0.5\n14251|0.5\n14252|0.44444\n14253|0.5\n14254|0.61111\n14255|0.44444\n14256|0.54167\n14257|0.5\n14258|0.52778\n14259|0.5\n14260|0.55556\n14261|0.5\n14262|0.61111\n14263|0.80556\n14264|0.5\n14265|0.125\n14266|0.5\n14267|0.5\n14268|0.5\n14269|0.5\n14270|0.76389\n14271|0.5\n14272|0.55556\n14273|0.56944\n14274|0.44444\n14275|0.69444\n14276|0.77778\n14277|0.5\n14278|0.55556\n14279|0.45833\n14280|0.56944\n14281|0.5\n14282|0.5\n14283|0.56944\n14284|0.52778\n14285|0.48611\n14286|0.79167\n14287|0.625\n14288|0.5\n14289|0.84722\n14290|0.52778\n14291|0.5\n14292|0.5\n14293|0.125\n14294|0.15278\n14295|0.5\n14296|0.5\n14297|0.72222\n14298|0.5\n14299|0.55556\n14300|0.5\n14301|0.5\n14302|0.5\n14303|0.52778\n14304|0.5\n14305|0.5\n14306|0.73611\n14307|0.5\n14308|0.47222\n14309|0.5\n14310|0.5\n14311|0.45833\n14312|0.5\n14313|0.56944\n14314|0.70833\n14315|0.5\n14316|0.5\n14317|0.5\n14318|0.5\n14319|0.61111\n14320|0.77778\n14321|0.77778\n14322|0.5\n14323|0.77778\n14324|0.38889\n14325|0.70833\n14326|0.31944\n14327|0.69444\n14328|0.33333\n14329|0.56944\n14330|0.65278\n14331|0.5\n14332|0.5\n14333|0.90278\n14334|0.5\n14335|0.5\n14336|0.41667\n14337|0.44444\n14338|0.11111\n14339|0.13889\n14340|0.40278\n14341|0.36111\n14342|0.61111\n14343|0.73611\n14344|0.43056\n14345|0.41667\n14346|0.58333\n14347|0.40278\n14348|0.77778\n14349|0.5\n14350|0.88889\n14351|0.83333\n14352|0.55556\n14353|0.45833\n14354|0.72222\n14355|0.61111\n14356|0.5\n14357|0.93056\n14358|0.5\n14359|0.86111\n14360|0.88889\n14361|0.5\n14362|0.5\n14363|0.55556\n14364|0.19444\n14365|0.13889\n14366|0.66667\n14367|0.5\n14368|0.5\n14369|0.36111\n14370|0.47222\n14371|0.69444\n14372|0.5\n14373|0.41667\n14374|0.5\n14375|0.55556\n14376|0.5\n14377|0.5\n14378|0.5\n14379|0.5\n14380|0.55556\n14381|0.79167\n14382|0.5\n14383|0.47222\n14384|0.43056\n14385|0.5\n14386|0.5\n14387|0.5\n14388|0.98611\n14389|0.93056\n14390|0.54167\n14391|0.875\n14392|0.5\n14393|0.48611\n14394|0.66667\n14395|0.25\n14396|0.45833\n14397|0.5\n14398|0.55556\n14399|0.5\n14400|0.5\n14401|0.5\n14402|0.5\n14403|0.5\n14404|0.90278\n14405|0.5\n14406|0.5\n14407|0.66667\n14408|0.5\n14409|0.56944\n14410|0.5\n14411|0.5\n14412|0.5\n14413|0.79167\n14414|0.5\n14415|0.5\n14416|0.75\n14417|0.5\n14418|0.58333\n14419|0.72222\n14420|0.5\n14421|0.45833\n14422|0.55556\n14423|0.5\n14424|0.52778\n14425|0.625\n14426|0.5\n14427|0.66667\n14428|0.5\n14429|0.5\n14430|0.5\n14431|0.55556\n14432|0.65278\n14433|0.76389\n14434|0.5\n14435|0.5\n14436|0.76389\n14437|0.91667\n14438|0.5\n14439|0.44444\n14440|0.33333\n14441|0.26389\n14442|0.5\n14443|0.5\n14444|0.34722\n14445|0.5\n14446|0.5\n14447|0.5\n14448|0.65278\n14449|0.77778\n14450|0.5\n14451|0.5\n14452|0.51389\n14453|0.77778\n14454|0.54167\n14455|0.45833\n14456|0.5\n14457|0.66667\n14458|0.5\n14459|0.5\n14460|0.5\n14461|0.5\n14462|0.5\n14463|0.5\n14464|0.43056\n14465|0.5\n14466|0.81944\n14467|0.80556\n14468|0.5\n14469|0.66667\n14470|0.5\n14471|0.81944\n14472|0.5\n14473|0.5\n14474|0.5\n14475|0.76389\n14476|0.63889\n14477|0.72222\n14478|0.80556\n14479|0.5\n14480|0.5\n14481|0.5\n14482|0.5\n14483|0.5\n14484|0.86111\n14485|0.23611\n14486|0.5\n14487|0.83333\n14488|0.77778\n14489|0.66667\n14490|0.5\n14491|0.5\n14492|0.51389\n14493|0.93056\n14494|0.5\n14495|0.97222\n14496|0.70833\n14497|0.80556\n14498|0.59722\n14499|0.72222\n14500|0.70833\n14501|0.56944\n14502|0.40278\n14503|0.5\n14504|0.5\n14505|0.90278\n14506|0.76389\n14507|0.93056\n14508|0.70833\n14509|0.73611\n14510|0.43056\n14511|0.45833\n14512|0.52778\n14513|0.625\n14514|0.72222\n14515|0.80556\n14516|0.5\n14517|0.75\n14518|0.70833\n14519|0.5\n14520|0.90278\n14521|0.5\n14522|0.79167\n14523|0.33333\n14524|0.77778\n14525|0.5\n14526|0.61111\n14527|0.54167\n14528|0.72222\n14529|0.72222\n14530|0.91667\n14531|0.77778\n14532|0.59722\n14533|0.69444\n14534|0.90278\n14535|0.76389\n14536|0.95833\n14537|0.77778\n14538|0.88889\n14539|0.27778\n14540|0.76389\n14541|0.5\n14542|0.47222\n14543|0.625\n14544|0.5\n14545|0.47222\n14546|0.33333\n14547|0.45833\n14548|0.65278\n14549|0.5\n14550|0.5\n14551|0.86111\n14552|0.5\n14553|0.47222\n14554|0.51389\n14555|0.5\n14556|0.84722\n14557|0.70833\n14558|0.86111\n14559|0.5\n14560|0.5\n14561|0.80556\n14562|0.72222\n14563|0.375\n14564|0.84722\n14565|0.66667\n14566|0.56944\n14567|0.27778\n14568|0.5\n14569|0.5\n14570|0.38889\n14571|0.31944\n14572|0.5\n14573|0.5\n14574|0.55556\n14575|0.47222\n14576|0.47222\n14577|0.56944\n14578|0.5\n14579|0.56944\n14580|0.45833\n14581|0.5\n14582|0.44444\n14583|0.11111\n14584|0.36111\n14585|0.63889\n14586|0.54167\n14587|0.43056\n14588|0.5\n14589|0.5\n14590|0.48611\n14591|0.47222\n14592|0.5\n14593|0.56944\n14594|0.5\n14595|0.54167\n14596|0.5\n14597|0.5\n14598|0.5\n14599|0.70833\n14600|0.5\n14601|0.5\n14602|0.083333\n14603|0.80556\n14604|0.5\n14605|0.34722\n14606|0.81944\n14607|0.5\n14608|0.5\n14609|0.81944\n14610|0.5\n14611|0.5\n14612|0.5\n14613|0.625\n14614|0.5\n14615|0.5\n14616|0.48611\n14617|0.80556\n14618|0.47222\n14619|0.66667\n14620|0.5\n14621|0.54167\n14622|0.375\n14623|0.30556\n14624|0.61111\n14625|0.52778\n14626|0.75\n14627|0.5\n14628|0.5\n14629|0.66667\n14630|0.5\n14631|0.5\n14632|0.76389\n14633|0.86111\n14634|0.68056\n14635|0.88889\n14636|0.5\n14637|0.68056\n14638|0.75\n14639|0.81944\n14640|0.54167\n14641|0.5\n14642|0.73611\n14643|0.5\n14644|0.72222\n14645|0.5\n14646|0.5\n14647|0.73611\n14648|0.83333\n14649|0.72222\n14650|0.5\n14651|0.5\n14652|0.5\n14653|0.38889\n14654|0.5\n14655|0.56944\n14656|0.5\n14657|0.52778\n14658|0.625\n14659|0.5\n14660|0.5\n14661|0.63889\n14662|0.33333\n14663|0.625\n14664|0.63889\n14665|0.5\n14666|0.72222\n14667|0.88889\n14668|0.75\n14669|0.52778\n14670|0.45833\n14671|0.083333\n14672|0.375\n14673|0.72222\n14674|0.76389\n14675|0.75\n14676|0.86111\n14677|0.94444\n14678|0.5\n14679|0.875\n14680|0.84722\n14681|0.52778\n14682|0.55556\n14683|0.56944\n14684|0.375\n14685|0.25\n14686|0.83333\n14687|0.56944\n14688|0.54167\n14689|0.44444\n14690|0.5\n14691|0.90278\n14692|0.5\n14693|0.47222\n14694|0.5\n14695|0.5\n14696|0.84722\n14697|0.77778\n14698|0.83333\n14699|0.5\n14700|0.625\n14701|0.75\n14702|0.58333\n14703|0.5\n14704|0.5\n14705|0.72222\n14706|0.55556\n14707|0.79167\n14708|0.69792\n14709|0.5\n14710|0.86111\n14711|0.80556\n14712|0.41667\n14713|0.52778\n14714|0.65278\n14715|0.79167\n14716|0.63889\n14717|0.66667\n14718|0.93056\n14719|0.79167\n14720|0.75\n14721|0.81944\n14722|0.75\n14723|0.73611\n14724|0.84722\n14725|0.51389\n14726|0.88889\n14727|0.81944\n14728|0.73611\n14729|0.5\n14730|0.5\n14731|0.5\n14732|0.51389\n14733|0.79167\n14734|0.22222\n14735|0.59722\n14736|0.66667\n14737|0.86111\n14738|0.84722\n14739|0.86111\n14740|0.54167\n14741|0.75\n14742|0.51389\n14743|0.68056\n14744|0.86111\n14745|0.86111\n14746|0.63889\n14747|0.70833\n14748|0.5\n14749|0.5\n14750|0.73611\n14751|0.81944\n14752|0.79167\n14753|0.80556\n14754|0.76389\n14755|0.52778\n14756|0.70833\n14757|0.56944\n14758|0.84722\n14759|0.66667\n14760|0.31944\n14761|0.40278\n14762|0.75\n14763|0.72222\n14764|0.625\n14765|0.52778\n14766|0.54167\n14767|0.76389\n14768|0.65278\n14769|0.84722\n14770|0.86111\n14771|0.47222\n14772|0.48611\n14773|0.52778\n14774|0.56944\n14775|0.76389\n14776|0.73611\n14777|0.79167\n14778|0.54167\n14779|0.55556\n14780|0.90278\n14781|0.5\n14782|0.56944\n14783|0.38889\n14784|0.56944\n14785|0.58333\n14786|0.5\n14787|0.73611\n14788|0.55556\n14789|0.59722\n14790|0.86111\n14791|0.69444\n14792|0.625\n14793|0.79167\n14794|0.61111\n14795|0.5\n14796|0.85417\n14797|0.5\n14798|0.5\n14799|0.5\n14800|0.66667\n14801|0.83333\n14802|0.83333\n14803|0.86111\n14804|0.95833\n14805|0.69444\n14806|0.33333\n14807|0.63889\n14808|0.68056\n14809|0.84722\n14810|0.86111\n14811|0.5\n14812|0.55556\n14813|0.68056\n14814|0.70833\n14815|0.75\n14816|0.76389\n14817|0.625\n14818|0.66667\n14819|0.81944\n14820|0.59722\n14821|0.63889\n14822|0.41667\n14823|0.61111\n14824|0.33333\n14825|0.375\n14826|0.75\n14827|0.86111\n14828|0.43056\n14829|0.80556\n14830|0.44444\n14831|0.56944\n14832|0.54167\n14833|0.65278\n14834|0.69444\n14835|0.48611\n14836|0.77778\n14837|0.75\n14838|0.73611\n14839|0.76389\n14840|0.58333\n14841|0.76389\n14842|0.56944\n14843|0.44444\n14844|0.66667\n14845|0.625\n14846|0.76389\n14847|0.72222\n14848|0.58333\n14849|0.58333\n14850|0.73611\n14851|0.55556\n14852|0.94444\n14853|0.56944\n14854|0.68056\n14855|0.59722\n14856|0.66667\n14857|0.54167\n14858|0.65278\n14859|0.76389\n14860|0.88889\n14861|0.75\n14862|0.65278\n14863|0.81944\n14864|0.51042\n14865|0.625\n14866|0.5\n14867|0.5\n14868|0.5\n14869|0.5\n14870|0.59722\n14871|0.48611\n14872|0.5\n14873|0.44444\n14874|0.51389\n14875|0.55556\n14876|0.56944\n14877|0.55556\n14878|0.44444\n14879|0.43056\n14880|0.70833\n14881|0.51389\n14882|0.80556\n14883|0.58333\n14884|0.5\n14885|0.40278\n14886|0.5\n14887|0.5\n14888|0.77778\n14889|0.59722\n14890|0.79167\n14891|0.5\n14892|0.73611\n14893|0.81944\n14894|0.56944\n14895|0.45833\n14896|0.625\n14897|0.625\n14898|0.5\n14899|0.51389\n14900|0.86111\n14901|0.5\n14902|0.76389\n14903|0.81944\n14904|0.51389\n14905|0.72222\n14906|0.81944\n14907|0.79167\n14908|0.63889\n14909|0.83333\n14910|0.83333\n14911|0.44444\n14912|0.63889\n14913|0.55556\n14914|0.5\n14915|0.68056\n14916|0.93056\n14917|0.61111\n14918|0.5\n14919|0.27778\n14920|0.25\n14921|0.66667\n14922|0.47222\n14923|0.75\n14924|0.5\n14925|0.47222\n14926|0.65278\n14927|0.61111\n14928|0.5\n14929|0.5\n14930|0.51389\n14931|0.39583\n14932|0.5\n14933|0.41667\n14934|0.65278\n14935|0.58333\n14936|0.66667\n14937|0.66667\n14938|0.55556\n14939|0.77778\n14940|0.65278\n14941|0.75\n14942|0.27778\n14943|0.5\n14944|0.38889\n14945|0.75\n14946|0.83333\n14947|0.91667\n14948|0.94444\n14949|0.77778\n14950|0.80556\n14951|0.68056\n14952|0.80556\n14953|0.83333\n14954|0.58333\n14955|0.68056\n14956|0.83333\n14957|0.88889\n14958|0.5\n14959|0.63889\n14960|0.61111\n14961|0.91667\n14962|0.81944\n14963|0.52778\n14964|0.625\n14965|0.44444\n14966|0.70833\n14967|0.36111\n14968|0.31944\n14969|0.52778\n14970|0.5\n14971|0.51389\n14972|0.5\n14973|0.81944\n14974|0.77778\n14975|0.40278\n14976|0.30556\n14977|0.86111\n14978|0.43056\n14979|0.51389\n14980|0.5\n14981|0.5\n14982|0.5\n14983|0.5\n14984|0.56944\n14985|0.5\n14986|0.5\n14987|0.5\n14988|0.5\n14989|0.5\n14990|0.45833\n14991|0.59722\n14992|0.5\n14993|0.88889\n14994|0.44444\n14995|0.45833\n14996|0.72222\n14997|0.58333\n14998|0.76389\n14999|0.73611\n15000|0.59722\n15001|0.5\n15002|0.47222\n15003|0.40278\n15004|0.55556\n15005|0.84722\n15006|0.77778\n15007|0.80556\n15008|0.63889\n15009|0.5\n15010|0.77778\n15011|0.68056\n15012|0.73611\n15013|0.70833\n15014|0.33333\n15015|0.5\n15016|0.38889\n15017|0.63542\n15018|0.72222\n15019|0.66667\n15020|0.375\n15021|0.47222\n15022|0.5\n15023|0.69444\n15024|0.5\n15025|0.63889\n15026|0.47222\n15027|0.33333\n15028|0.59722\n15029|0.27778\n15030|0.52778\n15031|0.72222\n15032|0.83333\n15033|0.77778\n15034|0.68056\n15035|0.72222\n15036|0.72222\n15037|0.5\n15038|0.47222\n15039|0.38889\n15040|0.625\n15041|0.5\n15042|0.5\n15043|0.5\n15044|0.5\n15045|0.56944\n15046|0.83333\n15047|0.56944\n15048|0.56944\n15049|0.69444\n15050|0.58333\n15051|0.56944\n15052|0.73611\n15053|0.45833\n15054|0.45833\n15055|0.45833\n15056|0.65278\n15057|0.55556\n15058|0.75\n15059|0.72222\n15060|0.45833\n15061|0.73611\n15062|0.52778\n15063|0.5\n15064|0.55556\n15065|0.53125\n15066|0.5\n15067|0.41667\n15068|0.66667\n15069|0.72222\n15070|0.5\n15071|0.73611\n15072|0.5\n15073|0.16667\n15074|0.65278\n15075|0.45833\n15076|0.47222\n15077|0.66667\n15078|0.47222\n15079|0.70833\n15080|0.75\n15081|0.70833\n15082|0.66667\n15083|0.44444\n15084|0.5\n15085|0.55556\n15086|0.61111\n15087|0.66667\n15088|0.52083\n15089|0.51389\n15090|0.73611\n15091|0.66667\n15092|0.31944\n15093|0.56944\n15094|0.54167\n15095|0.5\n15096|0.52778\n15097|0.79167\n15098|0.81944\n15099|0.5\n15100|0.5\n15101|0.63889\n15102|0.625\n15103|0.75\n15104|0.58333\n15105|0.5\n15106|0.66667\n15107|0.63889\n15108|0.5\n15109|0.52778\n15110|0.68056\n15111|0.45833\n15112|0.29167\n15113|0.5\n15114|0.5\n15115|0.68056\n15116|0.5\n15117|0.52778\n15118|0.5\n15119|0.55556\n15120|0.66667\n15121|0.58333\n15122|0.34722\n15123|0.54167\n15124|0.59722\n15125|0.54167\n15126|0.47222\n15127|0.81944\n15128|0.88889\n15129|0.48611\n15130|0.91667\n15131|0.97222\n15132|0.51389\n15133|0.66667\n15134|0.54167\n15135|0.83333\n15136|0.16667\n15137|0.38889\n15138|0.77778\n15139|0.80556\n15140|0.58333\n15141|0.55556\n15142|0.70833\n15143|0.5\n15144|0.68056\n15145|0.625\n15146|0.70833\n15147|0.55556\n15148|0.5\n15149|0.55556\n15150|0.65278\n15151|0.58333\n15152|0.55556\n15153|0.55556\n15154|0.5\n15155|0.5\n15156|0.41667\n15157|0.34722\n15158|0.80556\n15159|0.63889\n15160|0.79167\n15161|0.5\n15162|0.81944\n15163|0.79167\n15164|0.54167\n15165|0.47222\n15166|0.56944\n15167|0.5\n15168|0.5\n15169|0.5\n15170|0.68056\n15171|0.69444\n15172|0.26389\n15173|0.56944\n15174|0.5\n15175|0.76389\n15176|0.68056\n15177|0.33333\n15178|0.55556\n15179|0.5\n15180|0.5\n15181|0.5\n15182|0.58333\n15183|0.5\n15184|0.5\n15185|0.5\n15186|0.45833\n15187|0.56944\n15188|0.80556\n15189|0.5\n15190|0.58333\n15191|0.66667\n15192|0.44444\n15193|0.19444\n15194|0.33333\n15195|0.70833\n15196|0.55556\n15197|0.36111\n15198|0.56944\n15199|0.52778\n15200|0.70833\n15201|0.58333\n15202|0.47222\n15203|0.44444\n15204|0.63889\n15205|0.66667\n15206|0.47222\n15207|0.45833\n15208|0.58333\n15209|0.61111\n15210|0.97222\n15211|0.55556\n15212|0.58333\n15213|0.52778\n15214|0.40278\n15215|0.51389\n15216|0.36111\n15217|0.5\n15218|0.5\n15219|0.44444\n15220|0.93056\n15221|0.77778\n15222|0.84722\n15223|0.69444\n15224|0.79167\n15225|0.76389\n15226|0.68056\n15227|0.68056\n15228|0.86111\n15229|0.083333\n15230|0.33333\n15231|0.31944\n15232|0.69444\n15233|0.27778\n15234|0.45833\n15235|0.5\n15236|0.5\n15237|0.5\n15238|0.5\n15239|0.59722\n15240|0.44444\n15241|0.59722\n15242|0.38889\n15243|0.5\n15244|0.72222\n15245|0.61111\n15246|0.79167\n15247|0.80556\n15248|0.5\n15249|0.79167\n15250|0.86111\n15251|0.79167\n15252|0.72222\n15253|0.68056\n15254|0.875\n15255|0.69444\n15256|0.52778\n15257|0.55556\n15258|0.5\n15259|0.61111\n15260|0.5\n15261|0.52778\n15262|0.68056\n15263|0.66667\n15264|0.5\n15265|0.5\n15266|0.34722\n15267|0.43056\n15268|0.375\n15269|0.65278\n15270|0.30556\n15271|0.70833\n15272|0.77778\n15273|0.5\n15274|0.84722\n15275|0.88889\n15276|0.5\n15277|0.83333\n15278|0.5\n15279|0.41667\n15280|0.5\n15281|0.29167\n15282|0.097222\n15283|0.5\n15284|0.19444\n15285|0.40278\n15286|0.44444\n15287|0.77778\n15288|0.79167\n15289|0.5\n15290|0.61111\n15291|0.5\n15292|0.5\n15293|0.52778\n15294|0.84722\n15295|0.75\n15296|0.875\n15297|0.69444\n15298|0.625\n15299|0.5\n15300|0.5\n15301|0.5\n15302|0.69444\n15303|0.5\n15304|0.52778\n15305|0.58333\n15306|0.31944\n15307|0.66667\n15308|0.41667\n15309|0.23611\n15310|0.54167\n15311|0.54167\n15312|0.81944\n15313|0.72222\n15314|0.59722\n15315|0.40278\n15316|0.56944\n15317|0.70833\n15318|0.78125\n15319|0.81944\n15320|0.51389\n15321|0.59722\n15322|0.81944\n15323|0.70833\n15324|0.72222\n15325|0.65278\n15326|0.68056\n15327|0.79167\n15328|0.73611\n15329|0.72222\n15330|0.58333\n15331|0.88889\n15332|0.29167\n15333|0.45833\n15334|0.84722\n15335|0.5\n15336|0.51389\n15337|0.54167\n15338|0.52778\n15339|0.54167\n15340|0.88889\n15341|0.48611\n15342|0.38889\n15343|0.5\n15344|0.80556\n15345|0.31944\n15346|0.26389\n15347|0.45833\n15348|0.51389\n15349|0.80556\n15350|0.44444\n15351|0.66667\n15352|0.5\n15353|0.5\n15354|0.55556\n15355|0.63889\n15356|0.48611\n15357|0.51389\n15358|0.83333\n15359|0.66667\n15360|0.52778\n15361|0.47222\n15362|0.29167\n15363|0.52778\n15364|0.5\n15365|0.91667\n15366|0.5\n15367|0.72222\n15368|0.45833\n15369|0.73611\n15370|0.5\n15371|0.5\n15372|0.69444\n15373|0.65278\n15374|0.75\n15375|0.79167\n15376|0.5\n15377|0.44444\n15378|0.63889\n15379|0.79167\n15380|0.51389\n15381|0.375\n15382|0.72222\n15383|0.70833\n15384|0.73611\n15385|0.77778\n15386|0.72222\n15387|0.5\n15388|0.58333\n15389|0.58333\n15390|0.66667\n15391|0.44444\n15392|0.56944\n15393|0.55556\n15394|0.59722\n15395|0.63889\n15396|0.72222\n15397|0.72222\n15398|0.75\n15399|0.61111\n15400|0.83333\n15401|0.76389\n15402|0.77778\n15403|0.75\n15404|0.40278\n15405|0.33333\n15406|0.5\n15407|0.54167\n15408|0.5\n15409|0.52778\n15410|0.5\n15411|0.5\n15412|0.5\n15413|0.44444\n15414|0.5\n15415|0.5\n15416|0.44444\n15417|0.91667\n15418|0.44444\n15419|0.5\n15420|0.5\n15421|0.61111\n15422|0.48611\n15423|0.55556\n15424|0.65278\n15425|0.63889\n15426|0.38889\n15427|0.65278\n15428|0.69444\n15429|0.83333\n15430|0.81944\n15431|0.5\n15432|0.25\n15433|0.61111\n15434|0.5\n15435|0.41667\n15436|0.44444\n15437|0.56944\n15438|0.44444\n15439|0.5\n15440|0.5\n15441|0.5\n15442|0.5\n15443|0.5\n15444|0.61111\n15445|0.41667\n15446|0.72222\n15447|0.52778\n15448|0.375\n15449|0.51389\n15450|0.44444\n15451|0.5\n15452|0.5\n15453|0.5\n15454|0.61111\n15455|0.73611\n15456|0.63889\n15457|0.66667\n15458|0.61111\n15459|0.69444\n15460|0.72222\n15461|0.92708\n15462|0.625\n15463|0.47222\n15464|0.66667\n15465|0.58333\n15466|0.5\n15467|0.55556\n15468|0.44444\n15469|0.48611\n15470|0.52778\n15471|0.52778\n15472|0.61111\n15473|0.44444\n15474|0.66667\n15475|0.22222\n15476|0.5\n15477|0.56944\n15478|0.55556\n15479|0.5\n15480|0.47222\n15481|0.54167\n15482|0.55556\n15483|0.5\n15484|0.51389\n15485|0.375\n15486|0.47222\n15487|0.5\n15488|0.5\n15489|0.26389\n15490|0.27778\n15491|0.5\n15492|0.55556\n15493|0.5\n15494|0.5\n15495|0.63889\n15496|0.38889\n15497|0.29167\n15498|0.33333\n15499|0.34722\n15500|0.44444\n15501|0.77778\n15502|0.79167\n15503|0.55556\n15504|0.70833\n15505|0.5\n15506|0.51389\n15507|0.45833\n15508|0.44444\n15509|0.45833\n15510|0.63889\n15511|0.79167\n15512|0.86111\n15513|0.56944\n15514|0.875\n15515|0.93056\n15516|0.875\n15517|0.52778\n15518|0.63889\n15519|0.72222\n15520|0.72222\n15521|0.68056\n15522|0.51389\n15523|0.77778\n15524|0.77778\n15525|0.5\n15526|0.5\n15527|0.5\n15528|0.36111\n15529|0.5\n15530|0.54167\n15531|0.58333\n15532|0.51389\n15533|0.41667\n15534|0.68056\n15535|0.66667\n15536|0.70833\n15537|0.88889\n15538|0.61111\n15539|0.55556\n15540|0.44444\n15541|0.33333\n15542|0.72222\n15543|0.5\n15544|0.66667\n15545|0.86111\n15546|0.80556\n15547|0.44444\n15548|0.55556\n15549|0.52778\n15550|0.5\n15551|0.63889\n15552|0.625\n15553|0.79167\n15554|0.83333\n15555|0.54167\n15556|0.47222\n15557|0.45833\n15558|0.44444\n15559|0.70833\n15560|0.36111\n15561|0.5\n15562|0.38889\n15563|0.88889\n15564|0.52778\n15565|0.66667\n15566|0.52778\n15567|0.77778\n15568|0.34722\n15569|0.5\n15570|0.5\n15571|0.52778\n15572|0.55556\n15573|0.54167\n15574|0.61111\n15575|0.68056\n15576|0.52778\n15577|0.59722\n15578|0.30556\n15579|0.48611\n15580|0.66667\n15581|0.63889\n15582|0.65278\n15583|0.69444\n15584|0.5\n15585|0.48611\n15586|0.63889\n15587|0.70833\n15588|0.52778\n15589|0.83333\n15590|0.41667\n15591|0.38889\n15592|0.44444\n15593|0.51389\n15594|0.51389\n15595|0.34722\n15596|0.75\n15597|0.91667\n15598|0.86111\n15599|0.73611\n15600|0.5\n15601|0.55556\n15602|0.61111\n15603|0.5\n15604|0.86111\n15605|0.5\n15606|0.41667\n15607|0.45833\n15608|0.25\n15609|0.26389\n15610|0.48611\n15611|0.73611\n15612|0.45833\n15613|0.5\n15614|0.5\n15615|0.5\n15616|0.5\n15617|0.48611\n15618|0.5\n15619|0.52778\n15620|0.38889\n15621|0.51389\n15622|0.47222\n15623|0.44444\n15624|0.58333\n15625|0.5\n15626|0.58333\n15627|0.56944\n15628|0.30556\n15629|0.84722\n15630|0.54167\n15631|0.55556\n15632|0.52778\n15633|0.54167\n15634|0.48611\n15635|0.5\n15636|0.43056\n15637|0.63889\n15638|0.68056\n15639|0.55556\n15640|0.65278\n15641|0.59722\n15642|0.69444\n15643|0.73611\n15644|0.75\n15645|0.86111\n15646|0.76389\n15647|0.69444\n15648|0.86111\n15649|0.5\n15650|0.65278\n15651|0.45833\n15652|0.27778\n15653|0.44444\n15654|0.72222\n15655|0.84722\n15656|0.58333\n15657|0.97222\n15658|0.55556\n15659|0.79167\n15660|0.65278\n15661|0.70833\n15662|0.80556\n15663|0.61111\n15664|0.80556\n15665|0.61111\n15666|0.81944\n15667|0.5\n15668|0.84722\n15669|0.86111\n15670|0.75\n15671|0.90278\n15672|0.33333\n15673|0.47222\n15674|0.63889\n15675|0.52778\n15676|0.5\n15677|0.58333\n15678|0.5\n15679|0.56944\n15680|0.48611\n15681|0.54167\n15682|0.34722\n15683|0.16667\n15684|0.51389\n15685|0.56944\n15686|0.30556\n15687|0.52778\n15688|0.55556\n15689|0.5\n15690|0.55556\n15691|0.52778\n15692|0.51389\n15693|0.55556\n15694|0.5\n15695|0.5\n15696|0.5\n15697|0.66667\n15698|0.5\n15699|0.5\n15700|0.44444\n15701|0.68056\n15702|0.65278\n15703|0.5\n15704|0.51389\n15705|0.68056\n15706|0.98611\n15707|0.63889\n15708|0.83333\n15709|0.40278\n15710|0.81944\n15711|0.84722\n15712|0.81944\n15713|0.5\n15714|0.56944\n15715|0.5\n15716|0.51389\n15717|0.79167\n15718|0.90278\n15719|0.5\n15720|0.65278\n15721|0.68056\n15722|0.93056\n15723|0.48611\n15724|0.56944\n15725|0.5\n15726|0.45833\n15727|0.51389\n15728|0.68056\n15729|0.55556\n15730|0.5\n15731|0.59722\n15732|0.63889\n15733|0.69444\n15734|0.5\n15735|0.375\n15736|0.73611\n15737|0.52778\n15738|0.55556\n15739|0.5\n15740|0.72222\n15741|0.70833\n15742|0.45833\n15743|0.77778\n15744|0.59722\n15745|0.875\n15746|0.88889\n15747|0.77778\n15748|0.80556\n15749|0.40278\n15750|0.45833\n15751|0.5\n15752|0.5\n15753|0.55556\n15754|0.51389\n15755|0.58333\n15756|0.76389\n15757|0.84722\n15758|0.80556\n15759|0.72222\n15760|0.80556\n15761|0.5\n15762|0.5\n15763|0.80556\n15764|0.5\n15765|0.30556\n15766|0.41667\n15767|0.38889\n15768|0.5\n15769|0.88889\n15770|0.5\n15771|0.55556\n15772|0.5\n15773|0.52778\n15774|0.5\n15775|0.45833\n15776|0.66667\n15777|0.77778\n15778|0.77778\n15779|0.54167\n15780|0.66667\n15781|0.83333\n15782|0.68056\n15783|0.63889\n15784|0.43056\n15785|0.59722\n15786|0.70833\n15787|0.54167\n15788|0.41667\n15789|0.75\n15790|0.5\n15791|0.72222\n15792|0.5\n15793|0.56944\n15794|0.66667\n15795|0.56944\n15796|0.86111\n15797|0.54167\n15798|0.72222\n15799|0.5\n15800|0.43056\n15801|0.5\n15802|0.5\n15803|0.80556\n15804|0.81944\n15805|0.70833\n15806|0.30556\n15807|0.80556\n15808|0.5\n15809|0.44444\n15810|0.80556\n15811|0.88889\n15812|0.48611\n15813|0.58333\n15814|0.38889\n15815|0.54167\n15816|0.63889\n15817|0.72222\n15818|0.5\n15819|0.54167\n15820|0.44444\n15821|0.45833\n15822|0.58333\n15823|0.5\n15824|0.61111\n15825|0.5\n15826|0.47222\n15827|0.43056\n15828|0.5\n15829|0.56944\n15830|0.5\n15831|0.54167\n15832|0.72222\n15833|0.56944\n15834|0.44444\n15835|0.80556\n15836|0.83333\n15837|0.58333\n15838|0.56944\n15839|0.83333\n15840|0.5\n15841|0.54167\n15842|0.5\n15843|0.625\n15844|0.52778\n15845|0.47222\n15846|0.5\n15847|0.52778\n15848|0.25\n15849|0.23611\n15850|0.54167\n15851|0.61111\n15852|0.70833\n15853|0.90278\n15854|0.81944\n15855|0.68056\n15856|0.69444\n15857|0.77778\n15858|0.51389\n15859|0.875\n15860|0.76389\n15861|0.5\n15862|0.61111\n15863|0.79167\n15864|0.72222\n15865|0.72222\n15866|0.83333\n15867|0.5\n15868|0.5\n15869|0.70833\n15870|0.58333\n15871|0.51389\n15872|0.43056\n15873|0.5\n15874|0.5\n15875|0.5\n15876|0.43056\n15877|0.55556\n15878|0.11111\n15879|0.54167\n15880|0.72222\n15881|0.72222\n15882|0.56944\n15883|0.63889\n15884|0.625\n15885|0.44444\n15886|0.80556\n15887|0.66667\n15888|0.58333\n15889|0.66667\n15890|0.80556\n15891|0.55556\n15892|0.54167\n15893|0.75\n15894|0.70833\n15895|0.5\n15896|0.72222\n15897|0.625\n15898|0.875\n15899|0.625\n15900|0.80556\n15901|0.54167\n15902|0.61111\n15903|0.72222\n15904|0.81944\n15905|0.73611\n15906|0.83333\n15907|0.81944\n15908|0.58333\n15909|0.72222\n15910|0.58333\n15911|0.41667\n15912|0.41667\n15913|0.56944\n15914|0.56944\n15915|0.5\n15916|0.875\n15917|0.77083\n15918|0.77778\n15919|0.63889\n15920|0.77778\n15921|0.70833\n15922|0.76389\n15923|0.61111\n15924|0.65278\n15925|0.79167\n15926|0.43056\n15927|0.55556\n15928|0.40278\n15929|0.75\n15930|0.56944\n15931|0.80556\n15932|0.69444\n15933|0.27778\n15934|0.41667\n15935|0.61111\n15936|0.76389\n15937|0.69444\n15938|0.58333\n15939|0.44444\n15940|0.5\n15941|0.5\n15942|0.59722\n15943|0.65278\n15944|0.83333\n15945|0.73611\n15946|0.72222\n15947|0.73611\n15948|0.23611\n15949|0.54167\n15950|0.5\n15951|0.45833\n15952|0.52778\n15953|0.69444\n15954|0.61111\n15955|0.54167\n15956|0.61111\n15957|0.73611\n15958|0.27778\n15959|0.45833\n15960|0.66667\n15961|0.69444\n15962|0.38889\n15963|0.72222\n15964|0.625\n15965|0.48611\n15966|0.22222\n15967|0.083333\n15968|0.68056\n15969|0.5\n15970|0.5\n15971|0\n15972|0.43056\n15973|0.72222\n15974|0.77778\n15975|0.75\n15976|0.65278\n15977|0.375\n15978|0.55556\n15979|0.59722\n15980|0.75\n15981|0.52778\n15982|0.86111\n15983|0.88889\n15984|0.95833\n15985|0.56944\n15986|0.47222\n15987|0.5\n15988|0.68056\n15989|0.70833\n15990|0.44444\n15991|0.20833\n15992|0.68056\n15993|0.25\n15994|0.5\n15995|0.54167\n15996|0.61111\n15997|0.5\n15998|0.45833\n15999|0.47222\n16000|0.66667\n16001|0.44444\n16002|0.38889\n16003|0.38889\n16004|0.5\n16005|0.51389\n16006|0.73611\n16007|0.84722\n16008|0.61111\n16009|0.55556\n16010|0.55556\n16011|0.44444\n16012|0.5\n16013|0.54167\n16014|0.58333\n16015|0.40278\n16016|0.5\n16017|0.55556\n16018|0.43056\n16019|0.625\n16020|0.5\n16021|0.58333\n16022|0.5\n16023|0.61111\n16024|0.5\n16025|0.93056\n16026|0.55556\n16027|0.66667\n16028|0.5\n16029|0.79167\n16030|0.5\n16031|0.51389\n16032|0.5\n16033|0.88889\n16034|0.73611\n16035|0.75\n16036|0.5\n16037|0.5\n16038|0.45833\n16039|0.5\n16040|0.36111\n16041|0.5\n16042|0.5\n16043|0.5\n16044|0.41667\n16045|0.5\n16046|0.84722\n16047|0.63889\n16048|0.5\n16049|0.66667\n16050|0.58333\n16051|0.63889\n16052|0.79167\n16053|0.52778\n16054|0.54167\n16055|0.375\n16056|0.38889\n16057|0.75\n16058|0.5\n16059|0.5\n16060|0.76389\n16061|0.5\n16062|0.69444\n16063|0.63889\n16064|0.5\n16065|0.86111\n16066|0.5\n16067|0.5\n16068|0.22222\n16069|0.41667\n16070|0.5\n16071|0.76389\n16072|0.55556\n16073|0.61111\n16074|0.52778\n16075|0.5\n16076|0.625\n16077|0.63889\n16078|0.5\n16079|0.5\n16080|0.55556\n16081|0.88889\n16082|0.61111\n16083|0.79167\n16084|0.59722\n16085|0.59722\n16086|0.26389\n16087|0.36111\n16088|0.36111\n16089|0.47222\n16090|0.58333\n16091|0.86111\n16092|0.45833\n16093|0.55556\n16094|0.75\n16095|0.5\n16096|0.75\n16097|0.72222\n16098|0.68056\n16099|0.76389\n16100|0.51389\n16101|0.5\n16102|0.54167\n16103|0.63889\n16104|0.80556\n16105|0.5\n16106|0.55556\n16107|0.5\n16108|0.55556\n16109|0.69444\n16110|0.54167\n16111|0.5\n16112|0.43056\n16113|0.41667\n16114|0.5\n16115|0.51389\n16116|0.36111\n16117|0.45833\n16118|0.5\n16119|0.5\n16120|0.5\n16121|0.44444\n16122|0.45833\n16123|0.5\n16124|0.44444\n16125|0.5\n16126|0.63889\n16127|0.70833\n16128|0.55556\n16129|0.5\n16130|0.51389\n16131|0.56944\n16132|0.59722\n16133|0.65278\n16134|0.40278\n16135|0.5\n16136|0.61111\n16137|0.38889\n16138|0.58333\n16139|0.625\n16140|0.58333\n16141|0.5\n16142|0.44444\n16143|0.5\n16144|0.51389\n16145|0.5\n16146|0.70833\n16147|0.77778\n16148|0.84722\n16149|0.5\n16150|0.59722\n16151|0.5\n16152|0.5\n16153|0.61111\n16154|0.66667\n16155|0.86111\n16156|0.83333\n16157|0.5\n16158|0.5\n16159|0.625\n16160|0.63889\n16161|0.45833\n16162|0.47222\n16163|0.26389\n16164|0.34722\n16165|0.70833\n16166|0.75\n16167|0.84722\n16168|0.5\n16169|0.77778\n16170|0.55556\n16171|0.75\n16172|0.81944\n16173|0.76389\n16174|0.54167\n16175|0.72222\n16176|0.61111\n16177|0.88889\n16178|0.5\n16179|0.38889\n16180|0.5\n16181|0.5\n16182|0.51389\n16183|0.72222\n16184|0.52778\n16185|0.44444\n16186|0.47222\n16187|0.55556\n16188|0.56944\n16189|0.52778\n16190|0.70833\n16191|0.5\n16192|0.61111\n16193|0.66667\n16194|0.72222\n16195|0.79167\n16196|0.84722\n16197|0.75\n16198|0.59722\n16199|0.59722\n16200|0.52778\n16201|0.76389\n16202|0.80556\n16203|0.5\n16204|0.31944\n16205|0.80556\n16206|0.75\n16207|0.875\n16208|0.81944\n16209|0.65278\n16210|0.45833\n16211|0.69444\n16212|0.76389\n16213|0.93056\n16214|0.79167\n16215|0.84722\n16216|0.73611\n16217|0.70833\n16218|0.84722\n16219|0.88889\n16220|0.81944\n16221|0.77778\n16222|0.84722\n16223|0.69444\n16224|0.73611\n16225|0.84722\n16226|0.875\n16227|0.69444\n16228|0.54167\n16229|0.81944\n16230|0.81944\n16231|0.88889\n16232|0.54167\n16233|0.77778\n16234|0.86111\n16235|0.83333\n16236|0.69444\n16237|0.59722\n16238|0.61111\n16239|0.81944\n16240|0.69444\n16241|0.77778\n16242|0.77778\n16243|0.30556\n16244|0.63889\n16245|0.44444\n16246|0.45833\n16247|0.38889\n16248|0.26389\n16249|0.27778\n16250|0.25\n16251|0.84722\n16252|0.88889\n16253|0.75\n16254|0.73611\n16255|0.56944\n16256|0.69444\n16257|0.90278\n16258|0.875\n16259|0.81944\n16260|0.66667\n16261|0.84722\n16262|0.63889\n16263|0.73611\n16264|0.76389\n16265|0.70833\n16266|0.73611\n16267|0.83333\n16268|0.76389\n16269|0.86111\n16270|0.55556\n16271|0.61111\n16272|0.36111\n16273|0.625\n16274|0.75\n16275|0.80556\n16276|0.76389\n16277|0.61111\n16278|0.76389\n16279|0.93056\n16280|0.98611\n16281|0.73611\n16282|0.88889\n16283|0.88889\n16284|0.52778\n16285|0.51389\n16286|0.625\n16287|0.68056\n16288|0.91667\n16289|0.86111\n16290|0.5\n16291|0.5\n16292|0.79167\n16293|0.875\n16294|0.61111\n16295|0.5\n16296|0.44444\n16297|0.5\n16298|0.84722\n16299|0.52778\n16300|0.5\n16301|0.72222\n16302|0.84722\n16303|0.76389\n16304|0.66667\n16305|0.63889\n16306|0.47222\n16307|0.73611\n16308|0.875\n16309|0.63889\n16310|0.68056\n16311|0.36111\n16312|0.77778\n16313|0.77778\n16314|0.41667\n16315|0.45833\n16316|0.23611\n16317|0.20833\n16318|0.36111\n16319|0.38889\n16320|0.48611\n16321|0.77778\n16322|0.58333\n16323|0.59722\n16324|0.72222\n16325|0.73611\n16326|0.63889\n16327|0.55556\n16328|0.72222\n16329|0.51389\n16330|0.63889\n16331|0.77778\n16332|0.58333\n16333|0.44444\n16334|0.55556\n16335|0.79167\n16336|0.22222\n16337|0.84722\n16338|0.66667\n16339|0.72222\n16340|0.5\n16341|0.61111\n16342|0.625\n16343|0.54167\n16344|0.55556\n16345|0.41667\n16346|0.31944\n16347|0.65278\n16348|0.16667\n16349|0.68056\n16350|0.51389\n16351|0.15278\n16352|0.59722\n16353|0.23611\n16354|0.51389\n16355|0.66667\n16356|0.23611\n16357|0.84722\n16358|0.68056\n16359|0.61111\n16360|0.61111\n16361|0.66667\n16362|0.72222\n16363|0.5\n16364|0.5\n16365|0.36111\n16366|0.58333\n16367|0.79167\n16368|0.625\n16369|0.41667\n16370|0.54167\n16371|0.86111\n16372|0.875\n16373|0.31944\n16374|0.47222\n16375|0.55556\n16376|0.41667\n16377|0.55556\n16378|0.75\n16379|0.65278\n16380|0.65278\n16381|0.44444\n16382|0.63889\n16383|0.55556\n16384|0.61111\n16385|0.77778\n16386|0.65278\n16387|0.59722\n16388|0.5\n16389|0.43056\n16390|0.5\n16391|0.54167\n16392|0.38889\n16393|0.58333\n16394|0.68056\n16395|0.375\n16396|0.55556\n16397|0.65278\n16398|0.5\n16399|0.55556\n16400|0.5\n16401|0.48611\n16402|0.5\n16403|0.66667\n16404|0.48611\n16405|0.44444\n16406|0.5\n16407|0.41667\n16408|0.875\n16409|0.55556\n16410|0.041667\n16411|0.59722\n16412|0.70833\n16413|0.80556\n16414|0.76389\n16415|0.58333\n16416|0.5\n16417|0.5\n16418|0.5\n16419|0.44444\n16420|0.56944\n16421|0.80208\n16422|0.44444\n16423|0.375\n16424|0.44444\n16425|0.40278\n16426|0.61111\n16427|0.72222\n16428|0.43056\n16429|0.38889\n16430|0.55556\n16431|0.5\n16432|0.43056\n16433|0.38889\n16434|0.45833\n16435|0.5\n16436|0.5\n16437|0.5\n16438|0.36111\n16439|0.5\n16440|0.5\n16441|0.29167\n16442|0.23611\n16443|0.31944\n16444|0.51389\n16445|0.44444\n16446|0.56944\n16447|0.81944\n16448|0.56944\n16449|0.69444\n16450|0.56944\n16451|0.65278\n16452|0.45833\n16453|0.63889\n16454|0.61111\n16455|0.41667\n16456|0.5\n16457|0.5\n16458|0.52778\n16459|0.43056\n16460|0.66667\n16461|0.59722\n16462|0.31944\n16463|0.72222\n16464|0.76389\n16465|0.55556\n16466|0.5\n16467|0.5\n16468|0.44444\n16469|0.72222\n16470|0.375\n16471|0.38889\n16472|0.47222\n16473|0.59722\n16474|0.81944\n16475|0.5\n16476|0.38889\n16477|0.27778\n16478|0.51389\n16479|0.5\n16480|0.55556\n16481|0.375\n16482|0.5\n16483|0.45833\n16484|0.5\n16485|0.47222\n16486|0.55556\n16487|0.5\n16488|0.61111\n16489|0.5\n16490|0.47222\n16491|0.34722\n16492|0.69444\n16493|0.75\n16494|0.72222\n16495|0.76389\n16496|0.68056\n16497|0.63889\n16498|0.90278\n16499|0.59722\n16500|0.88889\n16501|0.93056\n16502|0.83333\n16503|0.59722\n16504|0.45833\n16505|0.59722\n16506|0.88889\n16507|0.56944\n16508|0.47222\n16509|0.31944\n16510|0.61111\n16511|0.65278\n16512|0.625\n16513|0.88889\n16514|0.055556\n16515|0.25\n16516|0.77778\n16517|0.59722\n16518|0.5\n16519|0.5\n16520|0.48611\n16521|0.5\n16522|0.625\n16523|0.5\n16524|0.38889\n16525|0.47222\n16526|0.66667\n16527|0.81944\n16528|0.59722\n16529|0.61111\n16530|0.68056\n16531|0.59722\n16532|0.66667\n16533|0.70833\n16534|0.79167\n16535|0.83333\n16536|0.5\n16537|0.30556\n16538|0.5\n16539|0.5\n16540|0.81944\n16541|0.80556\n16542|0.98611\n16543|0.55556\n16544|1\n16545|0.94444\n16546|0.65278\n16547|0.54167\n16548|0.23611\n16549|0.625\n16550|0.55556\n16551|0.41667\n16552|0.5\n16553|0.38889\n16554|0.44444\n16555|0.61111\n16556|0.41667\n16557|0.38889\n16558|0.41667\n16559|0.56944\n16560|0.5\n16561|0.56944\n16562|0.5\n16563|0.20833\n16564|0.625\n16565|0.54167\n16566|0.43056\n16567|0.51389\n16568|0.77778\n16569|0.55556\n16570|0.29167\n16571|0.5\n16572|0.58333\n16573|0.47222\n16574|0.45833\n16575|0.43056\n16576|0.44444\n16577|0.41667\n16578|0.5\n16579|0.55556\n16580|0.65278\n16581|0.30556\n16582|0.38889\n16583|0.45833\n16584|0.5\n16585|0.48611\n16586|0.29167\n16587|0.27778\n16588|0.83333\n16589|0.55556\n16590|0.55556\n16591|0.58333\n16592|0.44444\n16593|0.5\n16594|0.20833\n16595|0.81944\n16596|0.61111\n16597|0.72222\n16598|0.875\n16599|0.5\n16600|0.55556\n16601|0.875\n16602|0.44444\n16603|0.72222\n16604|0.76389\n16605|0.75\n16606|0.44444\n16607|0.40278\n16608|0.38889\n16609|0.5\n16610|0.77778\n16611|0.66667\n16612|0.95833\n16613|0.45833\n16614|0.5\n16615|0.5\n16616|0.52778\n16617|0.47222\n16618|0.69444\n16619|0.48611\n16620|0.45833\n16621|0.52778\n16622|0.5\n16623|0.5\n16624|0.58333\n16625|0.625\n16626|0.52778\n16627|0.38889\n16628|0.59722\n16629|0.43056\n16630|0.51389\n16631|0.44444\n16632|0.47222\n16633|0.63889\n16634|0.72222\n16635|0.68056\n16636|0.31944\n16637|0.61111\n16638|0.56944\n16639|0.27778\n16640|0.625\n16641|0.23611\n16642|0.18056\n16643|0.36111\n16644|0.25\n16645|0.38889\n16646|0.13889\n16647|0.36111\n16648|0.52778\n16649|0.625\n16650|0.23611\n16651|0.11111\n16652|0.25\n16653|0.5\n16654|0.5\n16655|0.5\n16656|0.55556\n16657|0.54167\n16658|0.5\n16659|0.5\n16660|0.5\n16661|0.65278\n16662|0.5\n16663|0.69444\n16664|0.5\n16665|0.5\n16666|0.55556\n16667|0.30556\n16668|0.27778\n16669|0.38889\n16670|0.43056\n16671|0.81944\n16672|0.38889\n16673|0.63889\n16674|0.48611\n16675|0.56944\n16676|0.5\n16677|0.43056\n16678|0.31944\n16679|0.47917\n16680|0.5\n16681|0.38889\n16682|0.44444\n16683|0.5\n16684|0.25\n16685|0.5\n16686|0.68056\n16687|0.33333\n16688|0.22222\n16689|0.22222\n16690|0.52778\n16691|0.54167\n16692|0.5\n16693|0.41667\n16694|0.5\n16695|0.68056\n16696|0.65278\n16697|0.5\n16698|0.5\n16699|0.5\n16700|0.5\n16701|0.5\n16702|0.5\n16703|0.5\n16704|0.43056\n16705|0.5\n16706|0.44444\n16707|0.48611\n16708|0.5\n16709|0.56944\n16710|0.5\n16711|0.5\n16712|0.41667\n16713|0.54167\n16714|0.51389\n16715|0.5\n16716|0.80556\n16717|0.5\n16718|0.5\n16719|0.23611\n16720|0.5\n16721|0.5\n16722|0.54167\n16723|0.43056\n16724|0.27778\n16725|0.43056\n16726|0.5\n16727|0.66667\n16728|0.5\n16729|0.77778\n16730|0.45833\n16731|0.23611\n16732|0.48611\n16733|0.5\n16734|0.61111\n16735|0.65278\n16736|0.55556\n16737|0.58333\n16738|0.55556\n16739|0.5\n16740|0.61111\n16741|0.91667\n16742|0.5\n16743|0.55556\n16744|0.54167\n16745|0.81944\n16746|0.44444\n16747|0.54167\n16748|0.47222\n16749|0.61111\n16750|0.66667\n16751|0.36111\n16752|0.625\n16753|0.47222\n16754|0.66667\n16755|0.5\n16756|0.41667\n16757|0.51389\n16758|0.55556\n16759|0.5\n16760|0.625\n16761|0.5\n16762|0.5\n16763|0.56944\n16764|0.55556\n16765|0.5\n16766|0.63889\n16767|0.80556\n16768|0.44444\n16769|0.30556\n16770|0.013889\n16771|0.5\n16772|0.27778\n16773|0.44444\n16774|0.40278\n16775|0.5\n16776|0.52778\n16777|0.5\n16778|0.44444\n16779|0.56944\n16780|0.59722\n16781|0.5\n16782|0.5\n16783|0.81944\n16784|0.52778\n16785|0.83333\n16786|0.79167\n16787|0.80556\n16788|0.55556\n16789|0.38889\n16790|0.4375\n16791|0.5\n16792|0.47222\n16793|0.5\n16794|0.54167\n16795|0.58333\n16796|0.52778\n16797|0.81944\n16798|0.45833\n16799|0.5\n16800|0.5\n16801|0.041667\n16802|0.88889\n16803|0.51389\n16804|0.72222\n16805|0.48611\n16806|0.33333\n16807|0.68056\n16808|0.72222\n16809|0.5\n16810|0.5\n16811|0.5\n16812|0.5\n16813|0.44444\n16814|0.52778\n16815|0.52778\n16816|0.68056\n16817|0.81944\n16818|0.55556\n16819|0.875\n16820|0.40278\n16821|0.5\n16822|0.5\n16823|0.31944\n16824|0.5\n16825|0.5\n16826|0.44444\n16827|0.5\n16828|0.44444\n16829|0.45833\n16830|0.44444\n16831|0.61111\n16832|0.5\n16833|0.5\n16834|0.65278\n16835|0.69444\n16836|0.51389\n16837|0.26389\n16838|0.5\n16839|0.61111\n16840|0.52778\n16841|0.5\n16842|0.5\n16843|0.59722\n16844|0.5\n16845|0.52778\n16846|0.59722\n16847|0.625\n16848|0.5\n16849|0.375\n16850|0.72222\n16851|0.44444\n16852|0.5\n16853|0.58333\n16854|0.5\n16855|0.5\n16856|0.36111\n16857|0.51389\n16858|0.58333\n16859|0.63889\n16860|0.59722\n16861|0.40278\n16862|0.81944\n16863|0.65278\n16864|0.88889\n16865|0.5\n16866|0.51389\n16867|0.625\n16868|0.5\n16869|0.5\n16870|0.54167\n16871|0.5\n16872|0.5\n16873|0.58333\n16874|0.55556\n16875|0.55556\n16876|0.55556\n16877|0.55556\n16878|0.59722\n16879|0.81944\n16880|0.55556\n16881|0.36111\n16882|0.5\n16883|0.5\n16884|0.79167\n16885|0.54167\n16886|0.55556\n16887|0.33333\n16888|0.16667\n16889|0.625\n16890|0.66667\n16891|0.5\n16892|0.5\n16893|0.44444\n16894|0.45833\n16895|0.61111\n16896|0.75\n16897|0.84722\n16898|0.22222\n16899|0.22222\n16900|0.375\n16901|0.33333\n16902|0.5\n16903|0.52778\n16904|0.5\n16905|0.55556\n16906|0.5\n16907|0.73611\n16908|0.875\n16909|0.29167\n16910|0.5\n16911|0.51389\n16912|0.5\n16913|0.5\n16914|0.5\n16915|0.5\n16916|0.48611\n16917|0.5\n16918|0.55556\n16919|0.625\n16920|0.59722\n16921|0.81944\n16922|0.5\n16923|0.47222\n16924|0.52778\n16925|0.625\n16926|0.5\n16927|0.75\n16928|0.625\n16929|0.47222\n16930|0.73611\n16931|0.80556\n16932|0.875\n16933|0.54167\n16934|0.5\n16935|0.5\n16936|0.30556\n16937|0.44444\n16938|0.5\n16939|0.5\n16940|0.5\n16941|0.5\n16942|0.43056\n16943|0.45833\n16944|0.69444\n16945|0.5\n16946|0.5\n16947|0.54167\n16948|0.5\n16949|0.55556\n16950|0.5\n16951|0.44444\n16952|0.47222\n16953|0.5\n16954|0.5\n16955|0.55556\n16956|0.55556\n16957|0.5\n16958|0.51389\n16959|0.83333\n16960|0.79167\n16961|0.77778\n16962|0.75\n16963|0.52778\n16964|0.52778\n16965|0.69444\n16966|0.55556\n16967|0.73611\n16968|0.84722\n16969|0.5\n16970|0.61111\n16971|0.5\n16972|0.55556\n16973|0.59722\n16974|0.44444\n16975|0.44444\n16976|0.66667\n16977|0.5\n16978|0.61111\n16979|0.875\n16980|0.5\n16981|0.65278\n16982|0.58333\n16983|0.70833\n16984|0.66667\n16985|0.5\n16986|0.5\n16987|0.22222\n16988|0.51389\n16989|0.5\n16990|0.65278\n16991|0.5\n16992|0.5\n16993|0.54167\n16994|0.66667\n16995|0.5\n16996|0.61111\n16997|0.83333\n16998|0.43056\n16999|0.72222\n17000|0.88889\n17001|0.88889\n17002|0.80556\n17003|0.77778\n17004|0.76389\n17005|0.75\n17006|0.69444\n17007|0.52778\n17008|0.48611\n17009|0.38889\n17010|0.70833\n17011|0.26389\n17012|0.40278\n17013|0.90278\n17014|0.80556\n17015|0.875\n17016|0.5\n17017|0.72222\n17018|0.45833\n17019|0.55556\n17020|0.5\n17021|0.59722\n17022|0.55556\n17023|0.5\n17024|0.45833\n17025|0.51389\n17026|0.5\n17027|0.41667\n17028|0.47222\n17029|0.29167\n17030|0.44444\n17031|0.55556\n17032|0.93056\n17033|0.91667\n17034|0.63889\n17035|0.69444\n17036|0.36111\n17037|0.44444\n17038|0.5\n17039|0.5\n17040|0.91667\n17041|0.45833\n17042|0.54167\n17043|0.5\n17044|0.61111\n17045|0.52778\n17046|0.59722\n17047|0.55556\n17048|0.5\n17049|0.5\n17050|0.59722\n17051|0.51389\n17052|0.5\n17053|0.56944\n17054|0.55556\n17055|0.58333\n17056|0.84722\n17057|0.5\n17058|0.48611\n17059|0.5\n17060|0.5\n17061|0.5\n17062|0.5\n17063|0.68056\n17064|0.75\n17065|0.5\n17066|0.34722\n17067|0.44444\n17068|0.5\n17069|0.5\n17070|0.77778\n17071|0.58333\n17072|0.73611\n17073|0.72222\n17074|0.55556\n17075|0.72222\n17076|0.625\n17077|0.77778\n17078|0.5\n17079|0.55556\n17080|0.5\n17081|0.55556\n17082|0.45833\n17083|0.5\n17084|0.45833\n17085|0.44444\n17086|0.76389\n17087|0.75\n17088|0.5\n17089|0.47222\n17090|0.5\n17091|0.56944\n17092|0.5\n17093|0.45833\n17094|0.75\n17095|0.63889\n17096|0.72222\n17097|0.73611\n17098|0.66667\n17099|0.61111\n17100|0.58333\n17101|0.58333\n17102|0.5\n17103|0.5\n17104|0.41667\n17105|0.91667\n17106|0.66667\n17107|0.65278\n17108|0.5\n17109|0.51389\n17110|0.625\n17111|0.59722\n17112|0.70833\n17113|0.61111\n17114|0.47222\n17115|0.70833\n17116|0.83333\n17117|0.5\n17118|0.013889\n17119|0.91667\n17120|0.56944\n17121|0.56944\n17122|0.5\n17123|0.5\n17124|0.52778\n17125|0.5\n17126|0.22222\n17127|0.51389\n17128|0.45833\n17129|0.625\n17130|0.625\n17131|0.22222\n17132|0.47222\n17133|0.5\n17134|0.51389\n17135|0.70833\n17136|0.22222\n17137|0.63889\n17138|0.68056\n17139|0.40278\n17140|0.44444\n17141|0.83333\n17142|0.5\n17143|0.66667\n17144|0.5\n17145|0.51389\n17146|0.73611\n17147|0.44444\n17148|0.58333\n17149|0.61111\n17150|0.58333\n17151|0.55556\n17152|0.79167\n17153|0.52778\n17154|0.56944\n17155|0.5\n17156|0.58333\n17157|0.72222\n17158|0.5\n17159|0.30556\n17160|0.58333\n17161|0.69444\n17162|0.45833\n17163|0.11111\n17164|0.68056\n17165|0.5\n17166|0.38889\n17167|0.58333\n17168|0.5\n17169|0.31944\n17170|0.40278\n17171|0.65278\n17172|0.5\n17173|0.58333\n17174|0.55556\n17175|0.44444\n17176|0.44444\n17177|0.44444\n17178|0.44444\n17179|0.48611\n17180|0.66667\n17181|0.68056\n17182|0.75\n17183|0.76389\n17184|0.38889\n17185|0.5\n17186|0.47222\n17187|0.59722\n17188|0.5\n17189|0.5\n17190|0.55556\n17191|0.39583\n17192|0.56944\n17193|0.5\n17194|0.5\n17195|0.73611\n17196|0.5\n17197|0.73611\n17198|0.5\n17199|0.61111\n17200|0.56944\n17201|0.5\n17202|0.66667\n17203|0.65278\n17204|0.5\n17205|0.76389\n17206|0.55556\n17207|0.58333\n17208|0.90278\n17209|0.43056\n17210|0.5\n17211|0.45833\n17212|0.5\n17213|0.54167\n17214|0.33333\n17215|0.22222\n17216|0.70833\n17217|0.70833\n17218|0.83333\n17219|0.56944\n17220|0.5\n17221|0.47222\n17222|0.70833\n17223|0.33333\n17224|0.44444\n17225|0.77778\n17226|0.80556\n17227|0.68056\n17228|0.80556\n17229|0.5\n17230|0.5\n17231|0.5\n17232|0.72222\n17233|0.68056\n17234|0.61111\n17235|0.625\n17236|0.73611\n17237|0.44444\n17238|0.72222\n17239|0.80556\n17240|0.63889\n17241|0.5\n17242|0.55556\n17243|0.875\n17244|0.43056\n17245|0.20833\n17246|0.72222\n17247|0.31944\n17248|0.30556\n17249|0.45833\n17250|0.70833\n17251|0.77778\n17252|0.66667\n17253|0.52778\n17254|0.59722\n17255|0.77778\n17256|0.66667\n17257|0.73611\n17258|0.59722\n17259|0.83333\n17260|0.72222\n17261|0.45833\n17262|0.34722\n17263|0.22222\n17264|0.63889\n17265|0.29167\n17266|0.83333\n17267|0.75\n17268|0.84722\n17269|0.76389\n17270|0.66667\n17271|0.81944\n17272|0.5\n17273|0.77778\n17274|0.51389\n17275|0.63889\n17276|0.69444\n17277|0.5\n17278|0.45833\n17279|0.75\n17280|0.30556\n17281|0.5\n17282|0.58333\n17283|0.73611\n17284|0.875\n17285|0.94444\n17286|0.75\n17287|0.81944\n17288|0.55556\n17289|0.44444\n17290|0.5\n17291|0.54167\n17292|0.5\n17293|0.47222\n17294|0.27778\n17295|0.66667\n17296|0.5\n17297|0.5\n17298|0.52778\n17299|0.44444\n17300|0.51389\n17301|0.52778\n17302|0.45833\n17303|0.40278\n17304|0.5\n17305|0.5\n17306|0.5\n17307|0.5\n17308|0.44444\n17309|0.52778\n17310|0.45833\n17311|0.48611\n17312|0.61111\n17313|0.52778\n17314|0.38889\n17315|0.55556\n17316|0.61111\n17317|0.34722\n17318|0.5\n17319|0.5\n17320|0.63889\n17321|0.83333\n17322|0.47222\n17323|0.59722\n17324|0.59722\n17325|0.61111\n17326|0.72222\n17327|0.54167\n17328|0.5\n17329|0.73611\n17330|0.5\n17331|0.5\n17332|0.5\n17333|0.70833\n17334|0.76389\n17335|0.66667\n17336|0.5\n17337|0.83333\n17338|0.29167\n17339|0.5\n17340|0.5\n17341|0.5\n17342|0.5\n17343|0.55556\n17344|0.5\n17345|0.5\n17346|0.52778\n17347|0.5\n17348|0.76389\n17349|0.86111\n17350|0.77778\n17351|0.5\n17352|0.36111\n17353|0.36111\n17354|0.38889\n17355|0.25\n17356|0.44444\n17357|0.72222\n17358|0.56944\n17359|0.5\n17360|0.81944\n17361|0.48611\n17362|0.54167\n17363|0.61111\n17364|0.27778\n17365|0.66667\n17366|0.55556\n17367|0.69444\n17368|0.5\n17369|0.5\n17370|0.52778\n17371|0.5\n17372|0.76389\n17373|0.61111\n17374|0.5\n17375|0.61111\n17376|0.55556\n17377|0.58333\n17378|0.625\n17379|0.80556\n17380|0.76389\n17381|0.48611\n17382|0.625\n17383|0.66667\n17384|0.80556\n17385|0.51389\n17386|0.5\n17387|0.54167\n17388|0.47222\n17389|0.51389\n17390|0.56944\n17391|0.45833\n17392|0.84722\n17393|0.75\n17394|0.5\n17395|0.45833\n17396|0.63889\n17397|0.55556\n17398|0.5\n17399|0.70833\n17400|0.44444\n17401|0.40278\n17402|0.72222\n17403|0.5\n17404|0.19444\n17405|0.61111\n17406|0.47222\n17407|0.55556\n17408|0.5\n17409|0.36111\n17410|0.44444\n17411|0.5\n17412|0.38889\n17413|0.5\n17414|0.34722\n17415|0.76389\n17416|0.68056\n17417|0.61111\n17418|0.22222\n17419|0.5\n17420|0.59722\n17421|0.44444\n17422|0.77778\n17423|0.54167\n17424|0.48611\n17425|0.70833\n17426|0.47222\n17427|0.56944\n17428|0.625\n17429|0.79167\n17430|0.63889\n17431|0.5\n17432|0.29167\n17433|0.56944\n17434|0.5\n17435|0.5\n17436|0.51389\n17437|0.70833\n17438|0.77778\n17439|0.38889\n17440|0.47222\n17441|0.58333\n17442|0.5\n17443|0.55556\n17444|0.76389\n17445|0.72222\n17446|0.86111\n17447|0.55556\n17448|0.41667\n17449|0.77778\n17450|0.30556\n17451|0.59722\n17452|0.54167\n17453|0.44444\n17454|0.44444\n17455|0.61111\n17456|0.38889\n17457|0.30556\n17458|0.47222\n17459|0.54167\n17460|0.5\n17461|0.56944\n17462|0.55556\n17463|0.55556\n17464|0.5\n17465|0.58333\n17466|0.41667\n17467|0.44444\n17468|0.5\n17469|0.5\n17470|0.5\n17471|0.5\n17472|0.55556\n17473|0.47222\n17474|0.54167\n17475|0.54167\n17476|0.61111\n17477|0.97222\n17478|0.94444\n17479|0.27778\n17480|0.70833\n17481|0.44444\n17482|0.43056\n17483|0.72222\n17484|0.97222\n17485|0.84722\n17486|0.97222\n17487|0.88889\n17488|0.98611\n17489|1\n17490|0.58333\n17491|0.5\n17492|0.5\n17493|0.55556\n17494|0.65278\n17495|0.5\n17496|0.54167\n17497|0.5\n17498|0.5\n17499|0.5\n17500|0.5\n17501|0.375\n17502|0.56944\n17503|0.56944\n17504|0.52778\n17505|0.5\n17506|0.77778\n17507|0.33333\n17508|0.54167\n17509|0.55556\n17510|0.61111\n17511|0.51389\n17512|0.52778\n17513|0.38889\n17514|0.33333\n17515|0.5\n17516|0.5\n17517|0.51389\n17518|0.5\n17519|0.55556\n17520|0.65278\n17521|0.76389\n17522|0.66667\n17523|0.5\n17524|0.5\n17525|0.5\n17526|0.5\n17527|0.51389\n17528|0.5\n17529|0.375\n17530|0.55556\n17531|0.54167\n17532|0.5\n17533|0.5\n17534|0.63889\n17535|0.52778\n17536|0.625\n17537|0.48611\n17538|0.5\n17539|0.27778\n17540|0.72222\n17541|0.625\n17542|0.77778\n17543|0.77778\n17544|0.41667\n17545|0.5\n17546|0.54167\n17547|0.45833\n17548|0.40278\n17549|0.54167\n17550|0.44444\n17551|0.43056\n17552|0.44444\n17553|0.47222\n17554|0.61111\n17555|0.68056\n17556|0.84722\n17557|0.5\n17558|0.81944\n17559|0.88889\n17560|0.38889\n17561|0.41667\n17562|0.5\n17563|0.61111\n17564|0.59722\n17565|0.51389\n17566|0.52778\n17567|0.83333\n17568|0.625\n17569|0.5\n17570|0.51389\n17571|0.625\n17572|0.72222\n17573|0.72222\n17574|0.52778\n17575|0.5\n17576|0.5\n17577|0.47222\n17578|0.58333\n17579|0.5\n17580|0.58333\n17581|0.41667\n17582|0.5\n17583|0.65278\n17584|0.5\n17585|0.5\n17586|0.5\n17587|0.45833\n17588|0.27778\n17589|0.5\n17590|0.66667\n17591|0.81944\n17592|0.81944\n17593|0.83333\n17594|0.5\n17595|0.55556\n17596|0.76389\n17597|0.80556\n17598|0.66667\n17599|0.5\n17600|0.58333\n17601|0.38889\n17602|0.55556\n17603|0.69444\n17604|0.5\n17605|0.5\n17606|0.5\n17607|0.5\n17608|0.5\n17609|0.36111\n17610|0.5\n17611|0.52778\n17612|0.5\n17613|0.5\n17614|0.70833\n17615|0.5\n17616|0.58333\n17617|0.66667\n17618|0.56944\n17619|0.56944\n17620|0.375\n17621|0.44444\n17622|0.54167\n17623|0.41667\n17624|0.59722\n17625|0.5\n17626|0.72222\n17627|0.41667\n17628|0.48611\n17629|0.61111\n17630|0.5\n17631|0.11111\n17632|0.5\n17633|0.61111\n17634|0.38889\n17635|0.5\n17636|0.5\n17637|0.72222\n17638|0.31944\n17639|0.43056\n17640|0.41667\n17641|0.54167\n17642|0.5\n17643|0.51389\n17644|0.27778\n17645|0.47222\n17646|0.66667\n17647|0.5\n17648|0.5\n17649|0.52778\n17650|0.5\n17651|0.51389\n17652|0.44444\n17653|0.44444\n17654|0.43056\n17655|0.5\n17656|0.48611\n17657|0.5\n17658|0.51389\n17659|0.5\n17660|0.54167\n17661|0.52778\n17662|0.5\n17663|0.5\n17664|0.47222\n17665|0.44444\n17666|0.5\n17667|0.5\n17668|0.70833\n17669|0.73611\n17670|0.5\n17671|0.47222\n17672|0.5\n17673|0.63889\n17674|0.70833\n17675|0.55556\n17676|0.69444\n17677|0.5\n17678|0.51389\n17679|0.70833\n17680|0.5\n17681|0.5\n17682|0.125\n17683|0\n17684|0.5\n17685|0.5\n17686|0.51389\n17687|0.83333\n17688|0.91667\n17689|0.5\n17690|0.84722\n17691|0.77778\n17692|0.41667\n17693|0.72222\n17694|0.56944\n17695|0.44444\n17696|0.5\n17697|0.44444\n17698|0.47222\n17699|0.68056\n17700|0.56944\n17701|0.375\n17702|0.59722\n17703|0.5\n17704|0.54167\n17705|0.5\n17706|0.60417\n17707|0.75\n17708|0.79167\n17709|0.88889\n17710|0.38889\n17711|0.52778\n17712|0.72222\n17713|0.5\n17714|0.33333\n17715|0.5\n17716|0.47222\n17717|0.5\n17718|0.77778\n17719|0.33333\n17720|0.51389\n17721|0.83333\n17722|0.875\n17723|0.20833\n17724|0.51389\n17725|0.56944\n17726|0.38889\n17727|0.66667\n17728|0.875\n17729|0.5\n17730|0.66667\n17731|0.5\n17732|0.80556\n17733|0.83333\n17734|0.52778\n17735|0.81944\n17736|0.5\n17737|0.61111\n17738|0.55556\n17739|0.76389\n17740|0.59722\n17741|0.55556\n17742|0.52778\n17743|0.5\n17744|0.48611\n17745|0.76389\n17746|0.5\n17747|0.5\n17748|0.125\n17749|0.59722\n17750|0.80556\n17751|0.5\n17752|0.5\n17753|0.47222\n17754|0.5\n17755|0.54167\n17756|0.625\n17757|0.70833\n17758|0.45833\n17759|0.55556\n17760|0.5\n17761|0.75\n17762|0.41667\n17763|0.77778\n17764|0.81944\n17765|0.59722\n17766|0.48611\n17767|0.48611\n17768|0.72222\n17769|0.52778\n17770|0.5\n17771|0.83333\n17772|0.625\n17773|0.76389\n17774|0.61111\n17775|0.72222\n17776|0.76389\n17777|0.65278\n17778|0.59722\n17779|0.59722\n17780|0.55556\n17781|0.66667\n17782|0.5\n17783|0.70833\n17784|0.625\n17785|0.58333\n17786|0.48611\n17787|0.375\n17788|0.61111\n17789|0.73611\n17790|0.47222\n17791|0.5\n17792|0.58333\n17793|0.44444\n17794|0.5\n17795|0.5\n17796|0.72222\n17797|0.58333\n17798|0.5\n17799|0.55556\n17800|0.5\n17801|0.5\n17802|0.73611\n17803|0.26389\n17804|0.68056\n17805|0.73611\n17806|0.33333\n17807|0.55556\n17808|0.80556\n17809|0.5\n17810|0.68056\n17811|0.375\n17812|0.54167\n17813|0.27778\n17814|0.68056\n17815|0.5\n17816|0.88889\n17817|0.43056\n17818|0.72222\n17819|0.5\n17820|0.80556\n17821|0.41667\n17822|0.58333\n17823|0.47222\n17824|0.58333\n17825|0.5\n17826|0.58333\n17827|0.58333\n17828|0.43056\n17829|0.56944\n17830|0.63889\n17831|0.73611\n17832|0.5\n17833|0.5\n17834|0.55556\n17835|0.54167\n17836|0.54167\n17837|0.54167\n17838|0.5\n17839|0.5\n17840|0.5\n17841|0.69444\n17842|0.55556\n17843|0.5\n17844|0.55556\n17845|0.5\n17846|0.72222\n17847|0.5\n17848|0.54167\n17849|0.5\n17850|0.5\n17851|0.48611\n17852|0.56944\n17853|0.5\n17854|0.5\n17855|0.47222\n17856|0.72222\n17857|0.34722\n17858|0.625\n17859|0.61111\n17860|0.5\n17861|0.52778\n17862|0.55556\n17863|0.58333\n17864|0.55556\n17865|0.33333\n17866|0.59722\n17867|0.36111\n17868|0.375\n17869|0.5\n17870|0.65278\n17871|0.52778\n17872|0.76389\n17873|0.63889\n17874|0.48611\n17875|0.5\n17876|0.48611\n17877|0.55556\n17878|0.625\n17879|0.40278\n17880|0.59722\n17881|0.47222\n17882|0.55556\n17883|0.5\n17884|0.73611\n17885|0.27778\n17886|0.33333\n17887|0.5\n17888|0.73611\n17889|0.95833\n17890|0.93056\n17891|0.875\n17892|0.88889\n17893|0.5\n17894|0.5\n17895|0.625\n17896|0.73611\n17897|0.875\n17898|0.88889\n17899|0.88889\n17900|0.90278\n17901|0.83333\n17902|0.5\n17903|0.55556\n17904|0.5\n17905|0.33333\n17906|0.55556\n17907|0.76389\n17908|0.66667\n17909|0.26389\n17910|0.29167\n17911|0.73611\n17912|0.52778\n17913|0.36111\n17914|0.44444\n17915|0.88889\n17916|0.84722\n17917|0.47222\n17918|0.56944\n17919|0.59722\n17920|0.55556\n17921|0.54167\n17922|0.77778\n17923|0.43056\n17924|0.26389\n17925|0.51389\n17926|0.80556\n17927|0.5\n17928|0.86111\n17929|0.31944\n17930|0.40278\n17931|0.73611\n17932|0.58333\n17933|0.66667\n17934|0.5\n17935|0.44444\n17936|0.44444\n17937|0.80556\n17938|0.69444\n17939|0.56944\n17940|0.61111\n17941|0.58333\n17942|0.54167\n17943|0.54167\n17944|0.625\n17945|0.5\n17946|0.73611\n17947|0.65278\n17948|0.56944\n17949|0.61111\n17950|0.48611\n17951|0.61111\n17952|0.75\n17953|0.5\n17954|0.5625\n17955|0.45833\n17956|0.55556\n17957|0.58333\n17958|0.54167\n17959|0.44444\n17960|0.88889\n17961|0.84722\n17962|0.86111\n17963|0.44444\n17964|0.72222\n17965|0.59722\n17966|0.81944\n17967|0.51389\n17968|0.70833\n17969|0.65278\n17970|0.94444\n17971|0.81944\n17972|0.51389\n17973|0.83333\n17974|0.44444\n17975|0.5\n17976|0.44444\n17977|0.65278\n17978|0.73611\n17979|0.51389\n17980|0.30556\n17981|0.52778\n17982|0.65278\n17983|0.29167\n17984|0.5\n17985|0.61111\n17986|0.48611\n17987|0.91667\n17988|0.83333\n17989|0.5\n17990|0.54167\n17991|0.52778\n17992|0.77778\n17993|0.5\n17994|0.66667\n17995|0.625\n17996|0.55556\n17997|0.625\n17998|0.45833\n17999|0.55556\n18000|0.625\n18001|0.38889\n18002|0.58333\n18003|0.63889\n18004|0.59722\n18005|0.72222\n18006|0.79167\n18007|0.66667\n18008|0.44444\n18009|0.79167\n18010|0.83333\n18011|0.81944\n18012|0.5\n18013|0.58333\n18014|0.88889\n18015|0.5\n18016|0.5\n18017|0.5\n18018|0.44444\n18019|0.79167\n18020|0.54167\n18021|0.84722\n18022|0.70833\n18023|0.875\n18024|0.47222\n18025|0.5\n18026|0.59722\n18027|0.52778\n18028|0.51389\n18029|0.38889\n18030|0.5\n18031|0.77778\n18032|0.625\n18033|0.54167\n18034|0.5\n18035|0.38889\n18036|0.55556\n18037|0.38889\n18038|0.5\n18039|0.55556\n18040|0.48611\n18041|0.48611\n18042|0.88889\n18043|0.51389\n18044|0.44444\n18045|0.5\n18046|0.54167\n18047|0.51389\n18048|0.73611\n18049|0.5\n18050|0.43056\n18051|0.69444\n18052|0.79167\n18053|0.73611\n18054|0.77778\n18055|0.72222\n18056|0.45833\n18057|0.73611\n18058|0.55556\n18059|0.86111\n18060|0.81944\n18061|0.51389\n18062|0.44444\n18063|0.625\n18064|0.44444\n18065|0.52778\n18066|0.77778\n18067|0.72222\n18068|0.55556\n18069|0.63889\n18070|0.70833\n18071|0.65278\n18072|0.52778\n18073|0.77778\n18074|0.80556\n18075|0.5\n18076|0.41667\n18077|0.5\n18078|0.47222\n18079|0.5\n18080|0.5\n18081|0.5\n18082|0.5\n18083|0.5\n18084|0.68056\n18085|0.81944\n18086|0.5\n18087|0.70833\n18088|0.73611\n18089|0.84722\n18090|0.625\n18091|0.77778\n18092|0.80556\n18093|0.56944\n18094|0.63889\n18095|0.80556\n18096|0.83333\n18097|0.58333\n18098|0.79167\n18099|0.86111\n18100|0.38889\n18101|0.56944\n18102|0.80556\n18103|0.5\n18104|0.625\n18105|0.70833\n18106|0.75\n18107|0.38889\n18108|0.5\n18109|0.55556\n18110|0.47222\n18111|0.91667\n18112|0.55556\n18113|0.51389\n18114|0.5\n18115|0.61111\n18116|0.54167\n18117|0.5\n18118|0.54167\n18119|0.81944\n18120|0.44444\n18121|0.51389\n18122|0.48611\n18123|0.5\n18124|0.58333\n18125|0.5\n18126|0.20833\n18127|0.76389\n18128|0.875\n18129|0.69444\n18130|0.375\n18131|0.56944\n18132|0.52778\n18133|0.47222\n18134|0.44444\n18135|0.41667\n18136|0.75\n18137|0.81944\n18138|0.5\n18139|0.5\n18140|0.5\n18141|0.47222\n18142|0.61111\n18143|0.5\n18144|0.5\n18145|0.5\n18146|0.44444\n18147|0.65278\n18148|0.61111\n18149|0.63889\n18150|0.38889\n18151|0.68056\n18152|0.79167\n18153|0.56944\n18154|0.72222\n18155|0.75\n18156|0.76389\n18157|0.5\n18158|0.5\n18159|0.77778\n18160|0.375\n18161|0.81944\n18162|0.77778\n18163|0.5\n18164|0.52778\n18165|0.61111\n18166|0.54167\n18167|0.79167\n18168|0.44444\n18169|0.5\n18170|0.20833\n18171|0.31944\n18172|0.56944\n18173|0.41667\n18174|0.5\n18175|0.51389\n18176|0.55556\n18177|0.5\n18178|0.66667\n18179|0.55556\n18180|0.45833\n18181|0.5\n18182|0.91667\n18183|0.5\n18184|0.72222\n18185|0.5\n18186|0.72222\n18187|0.70833\n18188|0.77778\n18189|0.45833\n18190|0.54167\n18191|0.52778\n18192|0.27778\n18193|0.88889\n18194|0.625\n18195|0.38889\n18196|0.56944\n18197|0.5\n18198|0.59722\n18199|0.75\n18200|0.55556\n18201|0.5\n18202|0.73611\n18203|0.41667\n18204|0.69444\n18205|0.77778\n18206|0.66667\n18207|0.90278\n18208|0.72222\n18209|0.47222\n18210|0.54167\n18211|0.68056\n18212|0.55556\n18213|0.41667\n18214|0.44444\n18215|0.69444\n18216|0.72222\n18217|0.76389\n18218|0.72222\n18219|0.5\n18220|0.36111\n18221|0.72222\n18222|0.38889\n18223|0.65278\n18224|0.86111\n18225|0.51389\n18226|0.44444\n18227|0.33333\n18228|0.41667\n18229|0.73611\n18230|0.56944\n18231|0.41667\n18232|0.66667\n18233|0.29167\n18234|0.38889\n18235|0.5\n18236|0.5\n18237|0.5\n18238|0.5\n18239|0.95833\n18240|0.34722\n18241|0.5\n18242|0.625\n18243|0.5\n18244|0.5\n18245|0.5\n18246|0.5\n18247|0.52778\n18248|0.44444\n18249|0.31944\n18250|0.5\n18251|0.58333\n18252|0.75\n18253|0.68056\n18254|0.22222\n18255|0.40278\n18256|0.61111\n18257|0.51389\n18258|0.94444\n18259|0.875\n18260|0.55556\n18261|0.43056\n18262|0.72222\n18263|0.5\n18264|0.5\n18265|0.84722\n18266|0.72222\n18267|0.45833\n18268|0.65278\n18269|0.68056\n18270|0.5\n18271|0.29167\n18272|0.69444\n18273|0.95833\n18274|0.84722\n18275|0.79167\n18276|0.83333\n18277|0.875\n18278|0.875\n18279|0.76389\n18280|0.93056\n18281|0.72222\n18282|0.73611\n18283|0.73611\n18284|0.5\n18285|0.94444\n18286|0.61111\n18287|0.76389\n18288|0.23611\n18289|0.625\n18290|0.81944\n18291|0.77778\n18292|0.48611\n18293|0.70833\n18294|0.54167\n18295|0.51389\n18296|0.22222\n18297|0.31944\n18298|0.93056\n18299|0.81944\n18300|0.56944\n18301|0.61111\n18302|0.52778\n18303|0.86111\n18304|0.55556\n18305|0.84722\n18306|0.375\n18307|0.34722\n18308|0.80556\n18309|0.88889\n18310|0.65278\n18311|0.61111\n18312|0.61111\n18313|0.51389\n18314|0.5\n18315|0.63889\n18316|0.48611\n18317|0.47222\n18318|0.81944\n18319|0.83333\n18320|0.11111\n18321|0.36111\n18322|0.44444\n18323|0.51389\n18324|0.55556\n18325|0.55556\n18326|0.81944\n18327|0.875\n18328|0.66667\n18329|0.18056\n18330|0.5\n18331|0.52778\n18332|0.90278\n18333|0.59722\n18334|0.5\n18335|0.625\n18336|0.80556\n18337|0.61111\n18338|0.625\n18339|0.86111\n18340|0.83333\n18341|0.5\n18342|0.69444\n18343|0.65278\n18344|0.77778\n18345|0.79167\n18346|0.56944\n18347|0.69444\n18348|0.29167\n18349|0.63889\n18350|0.63889\n18351|0.375\n18352|0.79167\n18353|0.625\n18354|0.55556\n18355|0.20833\n18356|0.5\n18357|0.5\n18358|0.66667\n18359|0.38889\n18360|0.90278\n18361|0.5\n18362|0.72222\n18363|0.51389\n18364|0.58333\n18365|0.44444\n18366|0.5\n18367|0.84722\n18368|0.72222\n18369|0.56944\n18370|0.75\n18371|0.625\n18372|0.65278\n18373|0.77778\n18374|0.66667\n18375|0.72222\n18376|0.45833\n18377|0.90278\n18378|0.72222\n18379|0.44444\n18380|0.61111\n18381|0.47222\n18382|0.5\n18383|0.29167\n18384|0.69444\n18385|0.77778\n18386|0.79167\n18387|0.13889\n18388|0.5\n18389|0.69444\n18390|0.66667\n18391|0.69444\n18392|0.66667\n18393|0.77778\n18394|0.55556\n18395|0.66667\n18396|0.69444\n18397|0.66667\n18398|0.47222\n18399|0.73611\n18400|0.80556\n18401|0.27778\n18402|0.5\n18403|0.70833\n18404|0.625\n18405|0.72222\n18406|0.5\n18407|0.51389\n18408|0.5\n18409|0.79167\n18410|0.93056\n18411|0.68056\n18412|0.83333\n18413|0.69444\n18414|0.875\n18415|0.61111\n18416|0.73611\n18417|0.56944\n18418|0.61111\n18419|0.51389\n18420|0.19444\n18421|0.55556\n18422|0.81944\n18423|0.86111\n18424|0.43056\n18425|0.84722\n18426|0.56944\n18427|0.54167\n18428|0.72222\n18429|0.86111\n18430|0.77778\n18431|0.875\n18432|0.65278\n18433|0.61111\n18434|0.27778\n18435|0.70833\n18436|0.5\n18437|0.41667\n18438|0.56944\n18439|0.73611\n18440|0.61111\n18441|0.5\n18442|0.5\n18443|0.90278\n18444|0.75\n18445|0.68056\n18446|0.5\n18447|0.41667\n18448|0.22222\n18449|0.72222\n18450|0.63194\n18451|0.66667\n18452|0.76389\n18453|0.65278\n18454|0.40278\n18455|0.76389\n18456|0.70833\n18457|0.83333\n18458|0.84722\n18459|0.55556\n18460|0.73611\n18461|0.58333\n18462|0.56944\n18463|0.44444\n18464|0.41667\n18465|0.61111\n18466|0.84722\n18467|0.5\n18468|0.81944\n18469|0.75\n18470|0.83333\n18471|0.59722\n18472|0.54167\n18473|0.77778\n18474|0.55556\n18475|0.79167\n18476|0.81944\n18477|0.58333\n18478|0.39583\n18479|0.5\n18480|0.81944\n18481|0.79167\n18482|0.93056\n18483|0.51389\n18484|0.86111\n18485|0.91667\n18486|0.93056\n18487|0.90278\n18488|0.43056\n18489|0.25\n18490|0.69444\n18491|0.72222\n18492|0.51389\n18493|0.81944\n18494|0.75\n18495|0.55556\n18496|0.83333\n18497|0.75\n18498|0.54167\n18499|0.77778\n18500|0.68056\n18501|0.5\n18502|0.45833\n18503|0.47222\n18504|0.5\n18505|0.83333\n18506|0.72222\n18507|0.38889\n18508|0.65278\n18509|0.72222\n18510|0.43056\n18511|0.61111\n18512|0.69444\n18513|0.80556\n18514|0.5\n18515|0.22222\n18516|0.55556\n18517|0.68056\n18518|0.79167\n18519|0.55556\n18520|0.66667\n18521|0.5\n18522|0.25\n18523|0.33333\n18524|0.66667\n18525|0.31944\n18526|0.72222\n18527|0.77778\n18528|0.5\n18529|0.5\n18530|0.5\n18531|0.5\n18532|0.59722\n18533|0.40278\n18534|0.5\n18535|0.5\n18536|0.5\n18537|0.5\n18538|0.84722\n18539|0.59722\n18540|0.70833\n18541|0.83333\n18542|0.94444\n18543|0.63889\n18544|0.66667\n18545|0.66667\n18546|0.86111\n18547|0.47222\n18548|0.70833\n18549|0.68056\n18550|0.72222\n18551|0.94444\n18552|0.55556\n18553|0.47222\n18554|0.44444\n18555|0.5\n18556|0.51389\n18557|0.54167\n18558|0.5\n18559|0.5\n18560|0.5\n18561|0.5\n18562|0.55556\n18563|0.25\n18564|0.5\n18565|0.23611\n18566|0.40278\n18567|0.5\n18568|0.5\n18569|0.5\n18570|0.31944\n18571|0.75\n18572|0.77778\n18573|0.80556\n18574|0.73611\n18575|0.63889\n18576|0.5\n18577|0.68056\n18578|0.70833\n18579|0.625\n18580|0.72222\n18581|0.90278\n18582|0.61111\n18583|0.77778\n18584|0.94444\n18585|0.88889\n18586|0.875\n18587|0.75\n18588|0.84722\n18589|0.58333\n18590|0.72222\n18591|0.79167\n18592|0.86111\n18593|0.88889\n18594|0.80556\n18595|0.84722\n18596|0.70833\n18597|0.77778\n18598|0.72222\n18599|0.86111\n18600|0.875\n18601|0.90278\n18602|0.79167\n18603|0.86111\n18604|0.93056\n18605|0.86111\n18606|0.79167\n18607|0.77778\n18608|0.5\n18609|0.79167\n18610|0.83333\n18611|0.5\n18612|0.83333\n18613|0.86111\n18614|0.5\n18615|0.5\n18616|0.5\n18617|0.5\n18618|0.5\n18619|0.5\n18620|0.5\n18621|0.30556\n18622|0.5\n18623|0.5\n18624|0.73611\n18625|0.5\n18626|0.83333\n18627|0.5\n18628|0.95833\n18629|0.80556\n18630|0.51389\n18631|0.31944\n18632|0.75\n18633|0.5\n18634|0.5\n18635|0.5\n18636|0.86111\n18637|0.47222\n18638|0.44444\n18639|0.5\n18640|0.5\n18641|0.5\n18642|0.5\n18643|0.54167\n18644|0.63889\n18645|0.79167\n18646|0.30556\n18647|0.72222\n18648|0.77778\n18649|0.69444\n18650|0.70833\n18651|0.76389\n18652|0.84722\n18653|0.84722\n18654|0.73611\n18655|0.81944\n18656|0.95833\n18657|0.91667\n18658|0.86111\n18659|0.84722\n18660|0.94444\n18661|0.72222\n18662|0.83333\n18663|0.88889\n18664|0.80556\n18665|0.88889\n18666|0.90278\n18667|0.77778\n18668|0.79167\n18669|0.79167\n18670|0.88889\n18671|0.80556\n18672|0.51389\n18673|0.77778\n18674|0.79167\n18675|0.76389\n18676|0.86111\n18677|0.72222\n18678|0.5\n18679|0.86111\n18680|0.5\n18681|0.5\n18682|0.5\n18683|0.5\n18684|0.5\n18685|0.5\n18686|0.58333\n18687|0.31944\n18688|0.5\n18689|0.5\n18690|0.375\n18691|0.5\n18692|0.77778\n18693|0.81944\n18694|0.86111\n18695|0.5\n18696|0.65278\n18697|0.79167\n18698|0.77778\n18699|0.66667\n18700|0.54167\n18701|0.5\n18702|0.77778\n18703|0.52778\n18704|0.63889\n18705|0.5\n18706|0.55556\n18707|0.5\n18708|0.69444\n18709|0.5\n18710|0.375\n18711|0.33333\n18712|0.5\n18713|0.5\n18714|0.5\n18715|0.5\n18716|0.5\n18717|0.5\n18718|0.5\n18719|0.61111\n18720|0.59722\n18721|0.5\n18722|0.5\n18723|0.61111\n18724|0.72222\n18725|0.72222\n18726|0.68056\n18727|0.5\n18728|0.5\n18729|0.51389\n18730|0.58333\n18731|0.52778\n18732|0.5\n18733|0.54167\n18734|0.41667\n18735|0.5\n18736|0.5\n18737|0.66667\n18738|0.77778\n18739|0.31944\n18740|0.54167\n18741|0.5\n18742|0.5\n18743|0.5\n18744|0.5\n18745|0.5\n18746|0.5\n18747|0.5\n18748|0.5\n18749|0.5\n18750|0.51389\n18751|0.5\n18752|0.5\n18753|0.94444\n18754|0.69444\n18755|0.5\n18756|0.5\n18757|0.73611\n18758|0.86111\n18759|0.81944\n18760|0.34722\n18761|0.58333\n18762|0.5\n18763|0.55556\n18764|0.76389\n18765|0.48611\n18766|0.66667\n18767|0.5\n18768|0.47222\n18769|0.5\n18770|0.5\n18771|0.41667\n18772|0.5\n18773|0.5\n18774|0.5\n18775|0.375\n18776|0.63889\n18777|0.61111\n18778|0.88889\n18779|0.5\n18780|0.76389\n18781|0.51389\n18782|0.5\n18783|0.5\n18784|0.51389\n18785|0.48611\n18786|0.5\n18787|0.5\n18788|0.61111\n18789|0.5\n18790|0.81944\n18791|0.73611\n18792|0.5\n18793|1\n18794|0.5\n18795|0.5\n18796|0.88889\n18797|0.83333\n18798|0.65278\n18799|0.5\n18800|0.5\n18801|0.5\n18802|0.5\n18803|0.5\n18804|0.54167\n18805|0.33333\n18806|0.31944\n18807|0.44444\n18808|0.68056\n18809|0.80556\n18810|0.91667\n18811|0.41667\n18812|0.44444\n18813|0.75\n18814|0.73611\n18815|0.5\n18816|0.5\n18817|0.5\n18818|0.5\n18819|0.5\n18820|0.125\n18821|0.72222\n18822|0.5\n18823|0.5\n18824|0.5\n18825|0.5\n18826|0.5\n18827|0.84722\n18828|0.94444\n18829|0.5\n18830|0.55556\n18831|0.75\n18832|0.79167\n18833|0.45833\n18834|0.19444\n18835|0.52778\n18836|0.5\n18837|0.45833\n18838|0.5\n18839|0.5\n18840|0.5\n18841|0.38889\n18842|0.5\n18843|0.59722\n18844|0.45833\n18845|0.5\n18846|0.5\n18847|0.72222\n18848|0.75\n18849|0.69444\n18850|0.77778\n18851|0.80556\n18852|0.5\n18853|0.375\n18854|0.5\n18855|0.47222\n18856|0.73611\n18857|0.48611\n18858|0.80556\n18859|0.5\n18860|0.55556\n18861|0.48611\n18862|0.5\n18863|0.73611\n18864|0.33333\n18865|0.5\n18866|0.5\n18867|0.55556\n18868|0.54167\n18869|0.72222\n18870|0.5\n18871|0.79167\n18872|0.66667\n18873|0.55556\n18874|0.83333\n18875|0.5\n18876|0.66667\n18877|0.5\n18878|0.51389\n18879|0.55556\n18880|0.45833\n18881|0.5\n18882|0.875\n18883|0.88889\n18884|0.55556\n18885|0.45833\n18886|0.5\n18887|0.625\n18888|0.45833\n18889|0.58333\n18890|0.90278\n18891|0.75\n18892|0.5\n18893|0.55556\n18894|0.5\n18895|0.55556\n18896|0.81944\n18897|0.5\n18898|0.65278\n18899|0.11111\n18900|0.5\n18901|0.55556\n18902|0.59722\n18903|0.5\n18904|0.5\n18905|0.5\n18906|0.5\n18907|0.5\n18908|0.5\n18909|0.54167\n18910|0.75\n18911|0.47222\n18912|0.5\n18913|0.63889\n18914|0.81944\n18915|0.5\n18916|0.5\n18917|0.5\n18918|0.58333\n18919|0.55556\n18920|0.68056\n18921|0.5\n18922|0.27778\n18923|0.56944\n18924|0.66667\n18925|0.80556\n18926|0.5\n18927|0.5\n18928|0.5\n18929|0.72222\n18930|0.5\n18931|0.44444\n18932|0.5\n18933|0.51389\n18934|0.63889\n18935|0.70833\n18936|0.22222\n18937|0.5\n18938|0.5\n18939|0.44444\n18940|0.5\n18941|0.83333\n18942|0.5\n18943|0.5\n18944|0.5\n18945|0.5\n18946|0.5\n18947|0.52778\n18948|0.70833\n18949|0.66667\n18950|0.69444\n18951|0.875\n18952|0.68056\n18953|0.45833\n18954|0.79167\n18955|0.81944\n18956|0.88889\n18957|0.5\n18958|0.51389\n18959|0.94444\n18960|0.33333\n18961|0.56944\n18962|0.5\n18963|0.93056\n18964|0.55556\n18965|0.83333\n18966|0.5\n18967|0.5\n18968|0.33333\n18969|0.69444\n18970|0.88889\n18971|0.83333\n18972|0.75\n18973|0.51389\n18974|0.5\n18975|0.5\n18976|0.5\n18977|0.77778\n18978|0.5\n18979|0.5\n18980|0.5\n18981|0.76389\n18982|0.75\n18983|0.44444\n18984|0.5\n18985|0.65278\n18986|0.55556\n18987|0.88889\n18988|0.18056\n18989|0.15278\n18990|0.77778\n18991|0.83333\n18992|0.84722\n18993|0.83333\n18994|0.83333\n18995|0.72222\n18996|0.81944\n18997|0.625\n18998|0.97222\n18999|0.86111\n19000|0.69444\n19001|0.5\n19002|0.875\n19003|0.5\n19004|0.88889\n19005|0.59722\n19006|0.48611\n19007|0.77778\n19008|0.45833\n19009|0.45833\n19010|0.51389\n19011|0.76389\n19012|0.5\n19013|0.58333\n19014|0.47222\n19015|0.61111\n19016|0.5\n19017|0.5\n19018|0.5\n19019|0.79167\n19020|0.5\n19021|0.5\n19022|0.5\n19023|0.5\n19024|0.5\n19025|0.5\n19026|0.97222\n19027|0.5\n19028|0.5\n19029|0.5\n19030|0.5\n19031|0.38889\n19032|0.61111\n19033|0.5\n19034|0.5\n19035|0.51389\n19036|0.77778\n19037|0.66667\n19038|0.5\n19039|0.5\n19040|0.5\n19041|0.88889\n19042|0.95833\n19043|0.94444\n19044|0.5\n19045|0.5\n19046|0.5\n19047|0.41667\n19048|0.5\n19049|0.94444\n19050|0.875\n19051|0.75\n19052|0.5\n19053|0.34722\n19054|0.5\n19055|0.59722\n19056|0.5\n19057|0.76389\n19058|0.5\n19059|0.5\n19060|0.5\n19061|0.5\n19062|0.31944\n19063|0.25\n19064|0.5\n19065|0.5\n19066|0.5\n19067|0.5\n19068|0.5\n19069|0.33333\n19070|0.5\n19071|0.5\n19072|0.5\n19073|0.5\n19074|0.75\n19075|0.51389\n19076|0.5\n19077|0.98611\n19078|0.83333\n19079|0.98611\n19080|0.5\n19081|0.38889\n19082|0.47222\n19083|0.5\n19084|0.5\n19085|0.5\n19086|0.5\n19087|0.5\n19088|0.5\n19089|0.5\n19090|0.72222\n19091|0.72222\n19092|0.55556\n19093|0.5\n19094|0.5\n19095|0.5\n19096|0.5\n19097|0.76389\n19098|0.84722\n19099|0.5\n19100|0.68056\n19101|0.5\n19102|0.5\n19103|0.94444\n19104|0.88889\n19105|0.80556\n19106|0.5\n19107|0.5\n19108|0.5\n19109|0.5\n19110|0.94444\n19111|0.5\n19112|0.61111\n19113|0.5\n19114|0.5\n19115|0.5\n19116|0.27778\n19117|0.44444\n19118|0.90278\n19119|0.5\n19120|0.40278\n19121|0.5\n19122|0.5\n19123|0.5\n19124|0.70833\n19125|0.5\n19126|0.58333\n19127|0.58333\n19128|0.72222\n19129|0.22222\n19130|0.77778\n19131|0.38889\n19132|0.29167\n19133|0.88889\n19134|0.65278\n19135|0.5\n19136|0.75\n19137|0.70833\n19138|0.52778\n19139|0.38889\n19140|0.40278\n19141|0.41667\n19142|0.5\n19143|0.5\n19144|0.44444\n19145|0.5\n19146|0.40278\n19147|0.52083\n19148|0.77778\n19149|0.5\n19150|0.44444\n19151|0.47222\n19152|0.38889\n19153|0.41667\n19154|0.5\n19155|0.36111\n19156|0.48611\n19157|0.875\n19158|0.58333\n19159|0.80556\n19160|0.30556\n19161|0.97222\n19162|0.5\n19163|0.48611\n19164|0.23611\n19165|0.58333\n19166|0.5\n19167|0.90278\n19168|0.5\n19169|0.5\n19170|0.5\n19171|0.5\n19172|0.51389\n19173|0.5\n19174|0.5\n19175|0.5\n19176|0.5\n19177|0.5\n19178|0.44444\n19179|0.88889\n19180|0.68056\n19181|0.66667\n19182|0.5\n19183|0.5\n19184|0.44444\n19185|0.54167\n19186|0.55556\n19187|0.29167\n19188|0.5\n19189|0.5\n19190|0.55556\n19191|0.73611\n19192|0.77778\n19193|0.55556\n19194|0.68056\n19195|0.83333\n19196|0.51389\n19197|0.81944\n19198|0.52778\n19199|0.34722\n19200|0.16667\n19201|0.22222\n19202|0.5\n19203|0.5\n19204|0.5\n19205|0.5\n19206|0.5\n19207|0.5\n19208|0.72222\n19209|0.5\n19210|0.5\n19211|0.5\n19212|0.5\n19213|0.66667\n19214|0.90278\n19215|0.80556\n19216|0.5\n19217|0.5\n19218|0.5\n19219|0.55556\n19220|0.91667\n19221|0.44444\n19222|0.5\n19223|0.44444\n19224|0.5\n19225|0.5\n19226|0.5\n19227|0.63889\n19228|0.80556\n19229|0.5\n19230|0.83333\n19231|0.5\n19232|0.5\n19233|0.5\n19234|0.51389\n19235|0.5\n19236|0.5\n19237|0.56944\n19238|0.48611\n19239|0.5\n19240|0.77778\n19241|0.86111\n19242|0.5\n19243|0.91667\n19244|0.61111\n19245|0.5\n19246|0.54167\n19247|0.5\n19248|0.5\n19249|0.51389\n19250|0.5\n19251|0.5\n19252|0.48611\n19253|0.47222\n19254|0.29167\n19255|0.84722\n19256|0.5\n19257|0.54167\n19258|0.83333\n19259|0.84722\n19260|0.73611\n19261|0.55556\n19262|0.76389\n19263|0.5\n19264|0.22222\n19265|0.44444\n19266|0.5\n19267|0.5\n19268|0.5\n19269|0.5\n19270|0.31944\n19271|0.68056\n19272|0.5\n19273|0.5\n19274|0.55556\n19275|0.5\n19276|0.5\n19277|0.5\n19278|0.5\n19279|0.5\n19280|0.5\n19281|0.94444\n19282|0.55556\n19283|0.52778\n19284|0.5\n19285|0.29167\n19286|0.51389\n19287|0.41667\n19288|0.5\n19289|0.5\n19290|0.77778\n19291|0.70833\n19292|0.5\n19293|0.69444\n19294|0.5\n19295|0.83333\n19296|0.48611\n19297|0.54167\n19298|0.94444\n19299|0.77778\n19300|0.90278\n19301|0.5\n19302|0.5\n19303|0.81944\n19304|0.52778\n19305|0.5\n19306|0.69444\n19307|0.5\n19308|0.72222\n19309|0.81944\n19310|0.77778\n19311|0.86111\n19312|0.56944\n19313|0.88889\n19314|0.86111\n19315|0.86111\n19316|0.56944\n19317|0.61111\n19318|0.88889\n19319|0.5\n19320|0.5\n19321|0.88889\n19322|0.86111\n19323|0.5\n19324|0.51389\n19325|0.68056\n19326|0.81944\n19327|0.5\n19328|0.875\n19329|0.5\n19330|0.5\n19331|0.75\n19332|0.41667\n19333|0.83333\n19334|0.83333\n19335|0.55556\n19336|0.73611\n19337|0.69444\n19338|0.5\n19339|0.61111\n19340|0.5\n19341|0.58333\n19342|0.66667\n19343|0.56944\n19344|0.52778\n19345|0.875\n19346|0.5\n19347|0.77778\n19348|0.94444\n19349|0.43056\n19350|0.70833\n19351|0.5\n19352|0.5\n19353|0.90278\n19354|0.83333\n19355|0.75\n19356|0.61111\n19357|0.88889\n19358|0.73611\n19359|0.90278\n19360|0.5\n19361|0.43056\n19362|0.75\n19363|0.77778\n19364|0.91667\n19365|0.79167\n19366|0.69444\n19367|0.48611\n19368|0.80556\n19369|0.25\n19370|0.69444\n19371|0.63889\n19372|0.83333\n19373|0.38889\n19374|0.48611\n19375|0.5\n19376|0.5\n19377|0.5\n19378|0.5\n19379|0.5\n19380|0.38889\n19381|0.41667\n19382|0.5\n19383|0.5\n19384|0.77778\n19385|0.5\n19386|0.63889\n19387|0.5\n19388|0.5\n19389|0.51389\n19390|0.44444\n19391|0.48611\n19392|0.51389\n19393|0.5\n19394|0.5\n19395|0.56944\n19396|0.68056\n19397|0.5\n19398|0.5\n19399|0.55556\n19400|0.70833\n19401|0.91667\n19402|0.36111\n19403|0.5\n19404|0.45833\n19405|0.5\n19406|0.625\n19407|0.5\n19408|0.5\n19409|0.75\n19410|0.66667\n19411|0.5\n19412|0.5\n19413|0.76389\n19414|0.73611\n19415|0.51389\n19416|0.34722\n19417|0.66667\n19418|0.80556\n19419|0.45833\n19420|0.77778\n19421|0.5\n19422|0.52778\n19423|0.22222\n19424|0.70833\n19425|0.5\n19426|0.5\n19427|0.5\n19428|0.25\n19429|0.52778\n19430|0.93056\n19431|0.5\n19432|0.86111\n19433|0.5\n19434|0.5\n19435|0.5\n19436|0.5\n19437|0.69444\n19438|0.5\n19439|0.5\n19440|0.79167\n19441|0.5\n19442|0.92708\n19443|0.33333\n19444|0.55556\n19445|0.38889\n19446|0.66667\n19447|0.29167\n19448|0.48611\n19449|0.5\n19450|0.5\n19451|0.5\n19452|0.61111\n19453|0.5\n19454|0.45833\n19455|0.5\n19456|0.5\n19457|0.5\n19458|0.65278\n19459|0.625\n19460|0.5\n19461|0.59722\n19462|0.77778\n19463|0.33333\n19464|0.29167\n19465|0.52778\n19466|0.72222\n19467|0.66667\n19468|0.5\n19469|0.58333\n19470|0.5\n19471|0.36111\n19472|0.625\n19473|0.5\n19474|0.51389\n19475|0.63889\n19476|0.69444\n19477|0.29167\n19478|0.83333\n19479|0.76389\n19480|0.5\n19481|0.29167\n19482|0.5\n19483|0.40278\n19484|0.47222\n19485|0.51389\n19486|0.61111\n19487|0.88889\n19488|0.88889\n19489|0.83333\n19490|0.80556\n19491|0.77778\n19492|0.5\n19493|0.77778\n19494|0.86111\n19495|0.90278\n19496|0.86111\n19497|0.94444\n19498|0.59722\n19499|0.66667\n19500|0.48611\n19501|0.48611\n19502|0.83333\n19503|0.63889\n19504|0.80556\n19505|0.83333\n19506|0.77778\n19507|0.72222\n19508|0.76389\n19509|0.77778\n19510|0.90278\n19511|0.76389\n19512|0.5\n19513|0.43056\n19514|0.81944\n19515|0.43056\n19516|0.61111\n19517|0.58333\n19518|0.77778\n19519|0.55556\n19520|0.65278\n19521|0.5\n19522|0.63889\n19523|0.5\n19524|0.36111\n19525|0.91667\n19526|0.94444\n19527|0.55556\n19528|0.76389\n19529|0.55556\n19530|0.63889\n19531|0.63889\n19532|0.5\n19533|0.65278\n19534|0.19792\n19535|0.48611\n19536|0.73611\n19537|0.5\n19538|0.81944\n19539|0.5\n19540|0.69444\n19541|0.5\n19542|0.33333\n19543|0.41667\n19544|0.86111\n19545|0.93056\n19546|0.875\n19547|0.86111\n19548|0.98611\n19549|0.83333\n19550|0.79167\n19551|0.83333\n19552|0.77778\n19553|0.68056\n19554|0.72222\n19555|0.66667\n19556|0.5\n19557|0.5\n19558|0.63889\n19559|0.86111\n19560|0.38889\n19561|0.54167\n19562|0.83333\n19563|0.63889\n19564|0.75\n19565|0.83333\n19566|0.47222\n19567|0.18056\n19568|0.56944\n19569|0.88889\n19570|0.40278\n19571|0.65278\n19572|0.72222\n19573|0.5\n19574|0.5\n19575|0.30556\n19576|0.5\n19577|0.22222\n19578|0.60417\n19579|0.70833\n19580|0.5\n19581|0.55556\n19582|0.63889\n19583|0.5\n19584|0.5\n19585|0.75\n19586|0.69444\n19587|0.65278\n19588|0.625\n19589|0.5\n19590|0.81944\n19591|0.94444\n19592|0.86111\n19593|0.375\n19594|0.86111\n19595|0.90278\n19596|0.55556\n19597|0.55556\n19598|0.84722\n19599|0.95833\n19600|0.5\n19601|0.30556\n19602|0.79167\n19603|0.81944\n19604|0.56944\n19605|0.80556\n19606|0.68056\n19607|0.48611\n19608|0.84722\n19609|0.90278\n19610|0.5\n19611|0.38889\n19612|0.75\n19613|0.77778\n19614|0.55556\n19615|0.875\n19616|0.33333\n19617|0.22222\n19618|0.83333\n19619|0.83333\n19620|0.90278\n19621|0.73611\n19622|0.66667\n19623|0.5\n19624|0.23611\n19625|0.5\n19626|0.54167\n19627|1\n19628|0.95833\n19629|0.58333\n19630|0.40278\n19631|0.77778\n19632|0.75\n19633|0.72222\n19634|0.5\n19635|0.5\n19636|0.5\n19637|0.5\n19638|0.65278\n19639|0.44444\n19640|0.375\n19641|0.47222\n19642|0.5\n19643|0.51389\n19644|0.58333\n19645|0.5\n19646|0.83333\n19647|0.72222\n19648|0.625\n19649|0.72222\n19650|0.65278\n19651|0.48611\n19652|0.013889\n19653|0.11111\n19654|0.69444\n19655|0.625\n19656|0.33333\n19657|0.5\n19658|0.41667\n19659|0.22222\n19660|0.5\n19661|0.58333\n19662|0.61111\n19663|0.84722\n19664|0.26389\n19665|0.5\n19666|0.51389\n19667|0.76389\n19668|0.5\n19669|0.5\n19670|0.52083\n19671|0.77778\n19672|0.51389\n19673|0.5\n19674|0.93056\n19675|0.81944\n19676|0.54167\n19677|0.5\n19678|0.72222\n19679|0.55556\n19680|0.44444\n19681|0.59722\n19682|0.84722\n19683|0.5\n19684|0.5\n19685|0.5\n19686|0.80556\n19687|0.51389\n19688|0.44444\n19689|0.23611\n19690|0.68056\n19691|0.5\n19692|0.55556\n19693|0.61111\n19694|0.55556\n19695|0.55556\n19696|0.55556\n19697|0.5\n19698|0.56944\n19699|0.41667\n19700|0.63889\n19701|0.80556\n19702|0.91667\n19703|0.56944\n19704|0.52778\n19705|0.77778\n19706|0.5\n19707|0.5\n19708|0.55556\n19709|0.875\n19710|0.65278\n19711|0.52778\n19712|0.38889\n19713|0.48611\n19714|0.81944\n19715|0.59722\n19716|0.80556\n19717|0.34722\n19718|0.77778\n19719|0.93056\n19720|0.80556\n19721|0.76389\n19722|0.79167\n19723|0.90278\n19724|0.55556\n19725|0.625\n19726|0.80556\n19727|0.86111\n19728|0.33333\n19729|0.72222\n19730|0.75\n19731|0.36111\n19732|0.29167\n19733|0.5\n19734|0.59722\n19735|0.22222\n19736|0.125\n19737|0.375\n19738|0.86111\n19739|0.72222\n19740|0.54167\n19741|0.61111\n19742|0.44444\n19743|0.84722\n19744|0.44444\n19745|0.55556\n19746|0.75\n19747|0.69444\n19748|0.44444\n19749|0.70833\n19750|0.5\n19751|0.5\n19752|0.5\n19753|0.38889\n19754|0.59722\n19755|0.55556\n19756|0.875\n19757|0.65278\n19758|0.5\n19759|0.44444\n19760|0.45833\n19761|0.47222\n19762|0.5\n19763|0.83333\n19764|0.61458\n19765|0.73611\n19766|0.84722\n19767|0.55556\n19768|0.55556\n19769|0.77778\n19770|0.75\n19771|0.44444\n19772|0.5\n19773|0.77778\n19774|0.66667\n19775|0.65278\n19776|0.5\n19777|0.5\n19778|0.5\n19779|0.5\n19780|0.5\n19781|0.5\n19782|0.5\n19783|0.5\n19784|0.55556\n19785|0.5\n19786|0.5\n19787|0.5\n19788|0.77778\n19789|0.5\n19790|0.5\n19791|0.38889\n19792|0.5\n19793|0.88889\n19794|0.27778\n19795|0.5\n19796|0.70833\n19797|0.65278\n19798|0.61111\n19799|0.72222\n19800|0.55556\n19801|0.76389\n19802|0.55556\n19803|0.5\n19804|0.72222\n19805|0.55556\n19806|0.76389\n19807|0.19444\n19808|0.22222\n19809|0.55556\n19810|0.86111\n19811|0.73611\n19812|0.55556\n19813|0.68056\n19814|0.70833\n19815|0.5\n19816|0.51389\n19817|0.51389\n19818|0.5\n19819|0.80556\n19820|0.5\n19821|0.66667\n19822|0.77778\n19823|0.77778\n19824|0.55556\n19825|0.5\n19826|0.70833\n19827|0.5\n19828|0.5\n19829|0.5\n19830|0.68056\n19831|0.80556\n19832|0.55556\n19833|0.5\n19834|0.84722\n19835|0.61111\n19836|0.83333\n19837|0.5\n19838|0.44444\n19839|0.48611\n19840|0.5\n19841|0.88889\n19842|0.45833\n19843|0.68056\n19844|0.055556\n19845|0.5\n19846|0.56944\n19847|0.75\n19848|0.33333\n19849|0.65278\n19850|0.70833\n19851|0.88889\n19852|0.72222\n19853|0.77778\n19854|0.38889\n19855|0.77778\n19856|0.5\n19857|0.70833\n19858|0.5\n19859|0.5\n19860|0.5\n19861|0.55556\n19862|0.56944\n19863|0.36111\n19864|0.5\n19865|0.52778\n19866|0.38889\n19867|0.84722\n19868|0.5\n19869|0.73611\n19870|0.45833\n19871|0.72222\n19872|0.76389\n19873|0.63889\n19874|0.5\n19875|0.52778\n19876|0.80556\n19877|0.73611\n19878|0.61111\n19879|0.5\n19880|0.56944\n19881|0.73611\n19882|0.55556\n19883|0.41667\n19884|0.5\n19885|0.72222\n19886|0.77778\n19887|0.61111\n19888|0.70833\n19889|0.73611\n19890|0.38889\n19891|0.83333\n19892|0.75\n19893|0.5\n19894|0.5\n19895|0.83333\n19896|0.55556\n19897|0.81944\n19898|0.68056\n19899|0.75\n19900|0.69444\n19901|0.55556\n19902|0.55556\n19903|0.65278\n19904|0.55556\n19905|0.5\n19906|0.625\n19907|0.52778\n19908|0.18056\n19909|0.47222\n19910|0.30556\n19911|0.30556\n19912|0.33333\n19913|0.41667\n19914|0.63889\n19915|0.77778\n19916|0.5\n19917|0.93056\n19918|0.5\n19919|0.72222\n19920|0.5\n19921|0.5\n19922|0.56944\n19923|0.5\n19924|0.5\n19925|0.54167\n19926|0.53125\n19927|0.66667\n19928|0.79167\n19929|0.5\n19930|0.66667\n19931|0.54167\n19932|0.51389\n19933|0.58333\n19934|0.65278\n19935|0.5\n19936|0.5\n19937|0.54167\n19938|0.5\n19939|0.5\n19940|0.52778\n19941|0.66667\n19942|0.66667\n19943|0.43056\n19944|0.70833\n19945|0.58333\n19946|0.44444\n19947|0.76389\n19948|0.72222\n19949|0.81944\n19950|0.93056\n19951|0.11111\n19952|0.16667\n19953|0.5\n19954|0.5\n19955|0.72222\n19956|0.58333\n19957|0.27778\n19958|0.63889\n19959|0.73611\n19960|0.81944\n19961|0.90278\n19962|0.83333\n19963|0.66667\n19964|0.75\n19965|0.875\n19966|0.83333\n19967|0.5\n19968|0.47222\n19969|0.80556\n19970|0.72222\n19971|0.83333\n19972|0.77778\n19973|0.875\n19974|0.5\n19975|0.72222\n19976|0.61111\n19977|0.38889\n19978|0.33333\n19979|0.58333\n19980|0.68056\n19981|0.5\n19982|0.65278\n19983|0.61111\n19984|0.77778\n19985|0.52778\n19986|0.5\n19987|0.52778\n19988|0.72222\n19989|0.54167\n19990|0.5\n19991|0.5\n19992|0.5\n19993|0.54167\n19994|0.61111\n19995|0.5\n19996|0.5\n19997|0.52778\n19998|0.70833\n19999|0.25\n20000|0.5\n20001|0.68056\n20002|0.61111\n20003|0.83333\n20004|0.625\n20005|0.52778\n20006|0.79167\n20007|0.45833\n20008|0.84722\n20009|0.52778\n20010|0.54167\n20011|0.73611\n20012|0.75\n20013|0.52778\n20014|0.55556\n20015|0.77778\n20016|0.70833\n20017|0.5\n20018|0.48611\n20019|0.66667\n20020|0.69444\n20021|0.44444\n20022|0.30556\n20023|0.77778\n20024|0.59722\n20025|0.73611\n20026|0.5\n20027|0.5\n20028|0.625\n20029|0.44444\n20030|0.41667\n20031|0.5\n20032|0.5\n20033|0.48611\n20034|0.5\n20035|0.51389\n20036|0.51389\n20037|0.56944\n20038|0.52778\n20039|0.68056\n20040|0.5\n20041|0.86111\n20042|0.5\n20043|0.54167\n20044|0.51389\n20045|0.72222\n20046|0.5\n20047|0.54167\n20048|0.5\n20049|0.38889\n20050|0.91667\n20051|0.51389\n20052|0.36111\n20053|0.88889\n20054|0.59722\n20055|0.5\n20056|0.5\n20057|0.083333\n20058|0.25\n20059|0.5\n20060|0.86111\n20061|0.47222\n20062|0.5\n20063|0.30556\n20064|0.55556\n20065|0.5\n20066|0.79167\n20067|0.94444\n20068|0.51389\n20069|0.5\n20070|0.5\n20071|0.5\n20072|0.5\n20073|0.38889\n20074|0.63889\n20075|0.55556\n20076|0.5\n20077|0.45833\n20078|0.16667\n20079|0.79167\n20080|0.36111\n20081|0.56944\n20082|0.75\n20083|0.94444\n20084|0.72222\n20085|0.43056\n20086|0.23611\n20087|0.44444\n20088|0.72222\n20089|0.66667\n20090|0.23611\n20091|0.55556\n20092|0.76389\n20093|0.61111\n20094|0.75\n20095|0.66667\n20096|0.84722\n20097|0.52778\n20098|0.51389\n20099|0.70833\n20100|0.26389\n20101|0.73611\n20102|0.63889\n20103|0.51389\n20104|0.5\n20105|0.5\n20106|0.44444\n20107|0.54167\n20108|0.79167\n20109|0.55556\n20110|0.51389\n20111|0.44444\n20112|0.5\n20113|0.90278\n20114|0.73611\n20115|0.70833\n20116|0.80556\n20117|0.83333\n20118|0.5\n20119|0.55556\n20120|0.5\n20121|0.66667\n20122|0.66667\n20123|0.33333\n20124|0.51389\n20125|0.34722\n20126|0.63889\n20127|0.76389\n20128|0.84722\n20129|0.58333\n20130|0.86111\n20131|0.5\n20132|0.5\n20133|0.66667\n20134|0.73611\n20135|0.44444\n20136|0.66667\n20137|0.83333\n20138|0.5\n20139|0.41667\n20140|0.55556\n20141|0.69444\n20142|0.45833\n20143|0.875\n20144|0.77778\n20145|0.84722\n20146|0.61111\n20147|0.44444\n20148|0.91667\n20149|0.84722\n20150|0.54167\n20151|0.5\n20152|0.55556\n20153|0.75\n20154|0.5\n20155|0.47222\n20156|0.59722\n20157|0.61111\n20158|0.81944\n20159|0.55556\n20160|0.875\n20161|0.80556\n20162|0.88889\n20163|0.70833\n20164|0.72222\n20165|0.875\n20166|0.34722\n20167|0.80556\n20168|0.38889\n20169|0.75\n20170|0.66667\n20171|0.38889\n20172|0.66667\n20173|0.33333\n20174|0.5\n20175|0.45833\n20176|0.91667\n20177|0.76389\n20178|0.76389\n20179|0.77778\n20180|0.69444\n20181|0.59722\n20182|0.75\n20183|0.5\n20184|0.11111\n20185|0.59722\n20186|0.5\n20187|0.70833\n20188|0.48611\n20189|0.45833\n20190|0.66667\n20191|0.625\n20192|0.72222\n20193|0.51389\n20194|0.44444\n20195|0.34722\n20196|0.5\n20197|0.5\n20198|0.5\n20199|0.16667\n20200|0.47222\n20201|0.70833\n20202|0.83333\n20203|0.52778\n20204|0.59722\n20205|0.56944\n20206|0.5\n20207|0.5\n20208|0.47222\n20209|0.56944\n20210|0.79167\n20211|0.5\n20212|0.5\n20213|0.45833\n20214|0.5\n20215|0.75\n20216|0.47222\n20217|0.625\n20218|0.58333\n20219|0.375\n20220|0.75\n20221|0.72222\n20222|0.25\n20223|0.5\n20224|0.52778\n20225|0.5\n20226|0.5\n20227|0.52778\n20228|0.27778\n20229|0.69444\n20230|0.70833\n20231|0.52778\n20232|0.5\n20233|0.73611\n20234|0.72222\n20235|0.86111\n20236|0.72222\n20237|0.84722\n20238|0.5\n20239|0.58333\n20240|0.52778\n20241|0.58333\n20242|0.5\n20243|0.66667\n20244|0.75\n20245|0.81944\n20246|0.33333\n20247|0.72222\n20248|0.51389\n20249|0.5\n20250|0.51389\n20251|0.55556\n20252|0.59722\n20253|0.80556\n20254|0.68056\n20255|0.76389\n20256|0.5\n20257|0.5\n20258|0.5\n20259|0.34722\n20260|0.5\n20261|0.69444\n20262|0.5\n20263|0.56944\n20264|0.59722\n20265|0.55556\n20266|0.5\n20267|0.70833\n20268|0.56944\n20269|0.77778\n20270|0.68056\n20271|0.63889\n20272|0.83333\n20273|0.5\n20274|0.55556\n20275|0.63889\n20276|0.69444\n20277|0.66667\n20278|0.73611\n20279|0.75\n20280|0.5\n20281|0.61111\n20282|0.55556\n20283|0.58333\n20284|0.56944\n20285|0.5\n20286|0.43056\n20287|0.66667\n20288|0.59722\n20289|0.5\n20290|0.51389\n20291|0.5\n20292|0.5\n20293|0.55556\n20294|0.75\n20295|0.80556\n20296|0.5\n20297|0.5\n20298|0.41667\n20299|0.80556\n20300|0.81944\n20301|0.41667\n20302|0.19444\n20303|0.5\n20304|0.43056\n20305|0.33333\n20306|0.54167\n20307|0.48611\n20308|0.52778\n20309|0.56944\n20310|0.63889\n20311|0.68056\n20312|0.52778\n20313|0.66667\n20314|0.65278\n20315|0.78125\n20316|0.25\n20317|0.41667\n20318|0.5\n20319|0.86111\n20320|0.76389\n20321|0.27778\n20322|0.5\n20323|0.5\n20324|0.61111\n20325|0.5\n20326|0.52778\n20327|0.68056\n20328|0.44444\n20329|0.5\n20330|0.41667\n20331|0.5\n20332|0.5\n20333|0.33333\n20334|0.94444\n20335|0.90278\n20336|0.54167\n20337|0.73611\n20338|0.70833\n20339|0.88889\n20340|0.86111\n20341|0.54167\n20342|0.76389\n20343|0.88889\n20344|0.41667\n20345|0.73611\n20346|0.5\n20347|0.44444\n20348|0.58333\n20349|0.65278\n20350|0.79167\n20351|0.80556\n20352|0.5\n20353|0.69444\n20354|0.52778\n20355|0.72222\n20356|0.79167\n20357|0.69444\n20358|0.38889\n20359|0.5\n20360|0.055556\n20361|0.77778\n20362|0.77778\n20363|0.55556\n20364|0.38889\n20365|0.5\n20366|0.55556\n20367|0.38889\n20368|0.44792\n20369|0.5\n20370|0.72222\n20371|0.23611\n20372|0.45833\n20373|0.45833\n20374|0.375\n20375|0.83333\n20376|0.54167\n20377|0.66667\n20378|0.69444\n20379|0.31944\n20380|0.55556\n20381|0.68056\n20382|0.55556\n20383|0.33333\n20384|0.5\n20385|0.5\n20386|0.51389\n20387|0.22222\n20388|0.22222\n20389|0.48611\n20390|0.5\n20391|0.19444\n20392|0.41667\n20393|0.54167\n20394|0.40278\n20395|0.48611\n20396|0.38889\n20397|0.41667\n20398|0.56944\n20399|0.69444\n20400|0.70833\n20401|0.77778\n20402|0.5\n20403|0.5\n20404|0.5\n20405|0.61111\n20406|0.36458\n20407|0.29167\n20408|0.61111\n20409|0.61111\n20410|0.30556\n20411|0.27778\n20412|0.33333\n20413|0.58333\n20414|0.45833\n20415|0.40278\n20416|0.19444\n20417|0.44444\n20418|0.5\n20419|0.51389\n20420|0.58333\n20421|0.58333\n20422|0.72222\n20423|0.44444\n20424|0.38889\n20425|0.38889\n20426|0.47222\n20427|0.16667\n20428|0.58333\n20429|0.51389\n20430|0.61111\n20431|0.15278\n20432|0.5\n20433|0.5\n20434|0.44444\n20435|0.33333\n20436|0.59722\n20437|0.44444\n20438|0.44444\n20439|0.66667\n20440|0.56944\n20441|0.66667\n20442|0.72222\n20443|0.44444\n20444|0.29167\n20445|0.34722\n20446|0.76389\n20447|0.68056\n20448|0.72222\n20449|0.77778\n20450|0.79167\n20451|0.61111\n20452|0.83333\n20453|0.77778\n20454|0.80556\n20455|0.70833\n20456|0.79167\n20457|0.65278\n20458|0.73611\n20459|0.88889\n20460|0.875\n20461|0.80556\n20462|0.77778\n20463|0.83333\n20464|0.69444\n20465|0.80556\n20466|0.61111\n20467|0.94444\n20468|0.875\n20469|0.66667\n20470|0.72222\n20471|0.5\n20472|0.69444\n20473|0.63889\n20474|0.80556\n20475|0.70833\n20476|0.72222\n20477|0.58333\n20478|0.625\n20479|0.625\n20480|0.66667\n20481|0.5\n20482|0.76389\n20483|0.42708\n20484|0.59722\n20485|0.51389\n20486|0.5\n20487|0.5\n20488|0.5\n20489|0.41667\n20490|0.33333\n20491|0.52778\n20492|0.61111\n20493|0.27778\n20494|0.44444\n20495|0.51389\n20496|0.51389\n20497|0.5\n20498|0.31944\n20499|0.625\n20500|0.69444\n20501|0.5\n20502|0.5\n20503|0.51389\n20504|0.83333\n20505|0.58333\n20506|0.73611\n20507|0.45833\n20508|0.58333\n20509|0.84722\n20510|0.79167\n20511|0.61111\n20512|0.23611\n20513|0.5\n20514|0.58333\n20515|0.68056\n20516|0.5\n20517|0.5\n20518|0.55556\n20519|0.61111\n20520|0.55556\n20521|0.875\n20522|0.875\n20523|0.48611\n20524|0.55556\n20525|0.5\n20526|0.5\n20527|0.55556\n20528|0.61111\n20529|0.59375\n20530|0.66667\n20531|0.72222\n20532|0.55556\n20533|0.54167\n20534|0.40278\n20535|0.36111\n20536|0.29167\n20537|0.72222\n20538|0.77778\n20539|0.44444\n20540|0.55556\n20541|0.54167\n20542|0.56944\n20543|0.44444\n20544|0.44444\n20545|0.61111\n20546|0.55556\n20547|0.55556\n20548|0.5\n20549|0.44444\n20550|0.66667\n20551|0.70833\n20552|0.55556\n20553|0.66667\n20554|0.88889\n20555|0.58333\n20556|0.51389\n20557|0.70833\n20558|0.55556\n20559|0.5\n20560|0.5\n20561|0.5\n20562|0.48611\n20563|0.22222\n20564|0.15278\n20565|0.5\n20566|0.54167\n20567|0.66667\n20568|0.625\n20569|0.47222\n20570|0.51389\n20571|0.45833\n20572|0.52778\n20573|0.5\n20574|0.83333\n20575|0.5\n20576|0.69444\n20577|0.86111\n20578|0.5\n20579|0.55556\n20580|0.51389\n20581|0.5\n20582|0.58333\n20583|0.625\n20584|0.84722\n20585|0.5\n20586|0.5\n20587|0.65278\n20588|0.5\n20589|0.55556\n20590|0.65278\n20591|0.5\n20592|0.44444\n20593|0.48611\n20594|0.625\n20595|0.5\n20596|0.44444\n20597|0.38889\n20598|0.52778\n20599|0.65278\n20600|0.33333\n20601|0.66667\n20602|0.73611\n20603|0.38889\n20604|0.75\n20605|0.43056\n20606|0.66667\n20607|0.58333\n20608|0.84722\n20609|0.72222\n20610|0.47222\n20611|0.5\n20612|0.5\n20613|0.5\n20614|0.72222\n20615|0.75\n20616|0.44444\n20617|0.58333\n20618|0.55556\n20619|0.75\n20620|0.5\n20621|0.5\n20622|0.44444\n20623|0.68056\n20624|0.88889\n20625|0.91667\n20626|0.86111\n20627|0.66667\n20628|0.5\n20629|0.55556\n20630|0.45833\n20631|0.47222\n20632|0.61111\n20633|0.45833\n20634|0.5\n20635|0.5\n20636|0.66667\n20637|0.58333\n20638|0.69444\n20639|0.80556\n20640|0.61111\n20641|0.72222\n20642|0.77778\n20643|0.55556\n20644|0.41667\n20645|0.5\n20646|0.61111\n20647|0.58333\n20648|0.40278\n20649|0.52778\n20650|0.33333\n20651|0.97222\n20652|0.5\n20653|0.77778\n20654|0.95833\n20655|0.94444\n20656|0.68056\n20657|0.38889\n20658|0.59722\n20659|0.5\n20660|0.47222\n20661|0.52778\n20662|0.51389\n20663|0.55556\n20664|0.5\n20665|0.52778\n20666|0.5\n20667|0.83333\n20668|0.5\n20669|0.84722\n20670|0.77778\n20671|0.75\n20672|0.73611\n20673|0.66667\n20674|0.77778\n20675|0.81944\n20676|0.54167\n20677|0.73611\n20678|0.93056\n20679|0.86111\n20680|0.81944\n20681|0.5\n20682|0.79167\n20683|0.79167\n20684|0.84722\n20685|0.66667\n20686|0.66667\n20687|0.95833\n20688|0.88889\n20689|0.5\n20690|0.44444\n20691|0.5\n20692|0.18056\n20693|0.375\n20694|0.5\n20695|0.76389\n20696|0.56944\n20697|0.63889\n20698|0.625\n20699|0.65278\n20700|0.22222\n20701|0.66667\n20702|0.5\n20703|0.5\n20704|0.5\n20705|0.55556\n20706|0.48611\n20707|0.5\n20708|0.22222\n20709|0.76389\n20710|0.86111\n20711|0.83333\n20712|0.70833\n20713|0.69444\n20714|0.72222\n20715|0.72222\n20716|0.66667\n20717|0.72222\n20718|0.81944\n20719|0.84722\n20720|0.54167\n20721|0.72222\n20722|0.80556\n20723|0.47222\n20724|0.79167\n20725|0.83333\n20726|0.83333\n20727|0.76389\n20728|0.81944\n20729|0.79167\n20730|0.66667\n20731|0.55556\n20732|0.75\n20733|0.76389\n20734|0.80556\n20735|0.5\n20736|0.5\n20737|0.56944\n20738|0.68056\n20739|0.83333\n20740|0.81944\n20741|0.79167\n20742|0.76389\n20743|0.94444\n20744|0.93056\n20745|1\n20746|0.83333\n20747|0.56944\n20748|0.73611\n20749|0.66667\n20750|0.16667\n20751|0.54167\n20752|0.94444\n20753|0.65278\n20754|0.66667\n20755|0.88889\n20756|0.88889\n20757|0.83333\n20758|0.80556\n20759|0.69444\n20760|0.77778\n20761|0.86111\n20762|0.81944\n20763|0.58333\n20764|0.45833\n20765|0.51389\n20766|0.5\n20767|0.5\n20768|0.63889\n20769|0.68056\n20770|0.65278\n20771|0.48611\n20772|0.5\n20773|0.55556\n20774|0.83333\n20775|0.34722\n20776|0.38889\n20777|0.38889\n20778|0.5\n20779|0.54167\n20780|0.45833\n20781|0.61111\n20782|0.55556\n20783|0.5\n20784|0.54167\n20785|0.88889\n20786|0.55556\n20787|0.66667\n20788|0.5\n20789|0.5\n20790|0.5\n20791|0.5\n20792|0.5\n20793|0.5\n20794|0.5\n20795|0.5\n20796|0.45833\n20797|0.47222\n20798|0.61111\n20799|0.5\n20800|0.5\n20801|0.5\n20802|0.5\n20803|0.5\n20804|0.48611\n20805|0.5\n20806|0.5\n20807|0.5\n20808|0.51389\n20809|0.5\n20810|0.5\n20811|0.5\n20812|0.53125\n20813|0.5\n20814|0.73611\n20815|0.69444\n20816|0.54167\n20817|0.61111\n20818|0.625\n20819|0.44444\n20820|0.38889\n20821|0.38889\n20822|0.59722\n20823|0.75\n20824|0.90278\n20825|0.88889\n20826|0.15278\n20827|0.29167\n20828|0.625\n20829|0.33333\n20830|0.5\n20831|0.68056\n20832|0.55556\n20833|0.5\n20834|0.55556\n20835|0.58333\n20836|0.58333\n20837|0.66667\n20838|0.63889\n20839|0.83333\n20840|0.65278\n20841|0.68056\n20842|0.52778\n20843|0.61111\n20844|0.51389\n20845|0.27778\n20846|0.27778\n20847|0.44444\n20848|0.72222\n20849|0.38889\n20850|0.58333\n20851|0.68056\n20852|0.66667\n20853|0.5\n20854|0.5\n20855|0.65278\n20856|0.66667\n20857|0.51389\n20858|0.5\n20859|0.55556\n20860|0.91667\n20861|0.83333\n20862|0.91667\n20863|0.5\n20864|0.5\n20865|0.5\n20866|0.80556\n20867|0.55556\n20868|0.38889\n20869|0.40278\n20870|0.69444\n20871|0.61111\n20872|0.76389\n20873|0.77083\n20874|0.81944\n20875|0.875\n20876|0.45833\n20877|0.5\n20878|0.55556\n20879|0.43056\n20880|0.5\n20881|0.5\n20882|0.5\n20883|0.5\n20884|0.5\n20885|0.29167\n20886|0.45833\n20887|0.47222\n20888|0.54167\n20889|0.55556\n20890|0.56944\n20891|0.36111\n20892|0.44444\n20893|0.47222\n20894|0.5\n20895|0.38889\n20896|0.77778\n20897|0.59722\n20898|0.5\n20899|0.68056\n20900|0.48611\n20901|0.5\n20902|0.5\n20903|0.5\n20904|0.69444\n20905|0.58333\n20906|0.36111\n20907|0.5\n20908|0.63889\n20909|0.5\n20910|0.55556\n20911|0.55556\n20912|0.68056\n20913|0.5\n20914|0.88889\n20915|0.44444\n20916|0.52778\n20917|0.5\n20918|0.5\n20919|0.5\n20920|0.5\n20921|0.5\n20922|0.48611\n20923|0.5\n20924|0.51389\n20925|0.43056\n20926|0.88889\n20927|0.5\n20928|0.51389\n20929|0.31944\n20930|0.41667\n20931|0.5\n20932|0.54167\n20933|0.5\n20934|0.63889\n20935|0.65278\n20936|0.11111\n20937|0.19444\n20938|0.5\n20939|0.5\n20940|0.68056\n20941|0.45833\n20942|0.69444\n20943|0.44444\n20944|0.5\n20945|0.72222\n20946|0.81944\n20947|0.51389\n20948|0.51389\n20949|0.54167\n20950|0.54167\n20951|0.84722\n20952|0.55556\n20953|0.51389\n20954|0.55556\n20955|0.58333\n20956|0.88889\n20957|0.79167\n20958|0.93056\n20959|0.75\n20960|0.5\n20961|0.5\n20962|0.44444\n20963|0.55556\n20964|0.47222\n20965|0.59722\n20966|0.75\n20967|0.83333\n20968|0.83333\n20969|0.81944\n20970|0.70833\n20971|0.5\n20972|0.59722\n20973|0.77778\n20974|0.61111\n20975|0.63889\n20976|0.52778\n20977|0.68056\n20978|0.5\n20979|0.58333\n20980|0.61111\n20981|0.48611\n20982|0.91667\n20983|0.94444\n20984|0.40278\n20985|0.625\n20986|0.84722\n20987|0.88889\n20988|0.83333\n20989|0.90278\n20990|0.97222\n20991|0.81944\n20992|0.875\n20993|0.93056\n20994|0.76389\n20995|0.88889\n20996|0.83333\n20997|0.5\n20998|0.55556\n20999|0.94444\n21000|0.875\n21001|0.88889\n21002|0.90278\n21003|0.61111\n21004|0.61111\n21005|0.875\n21006|0.86111\n21007|0.66667\n21008|0.83333\n21009|0.61111\n21010|0.55556\n21011|0.5\n21012|0.81944\n21013|0.75\n21014|0.84722\n21015|0.72222\n21016|0.91667\n21017|0.94444\n21018|0.63889\n21019|0.72222\n21020|0.95833\n21021|0.63889\n21022|0.72222\n21023|0.69444\n21024|0.55556\n21025|0.55556\n21026|0.375\n21027|0.41667\n21028|0.5\n21029|0.5\n21030|0.5\n21031|0.83333\n21032|0.55556\n21033|0.48611\n21034|0.48611\n21035|0.94444\n21036|0.5\n21037|0.61111\n21038|0.59722\n21039|0.5\n21040|0.23611\n21041|0.375\n21042|0.31944\n21043|0.27778\n21044|0.5\n21045|0.5\n21046|0.69444\n21047|0.54167\n21048|0.88889\n21049|0.94444\n21050|0.33333\n21051|0.625\n21052|0.91667\n21053|0.80556\n21054|0.84722\n21055|0.77778\n21056|0.83333\n21057|0.79167\n21058|0.88889\n21059|0.36111\n21060|0.79167\n21061|0.81944\n21062|0.80556\n21063|0.97222\n21064|1\n21065|0.79167\n21066|0.41667\n21067|0.58333\n21068|0.47222\n21069|0.75\n21070|0.44444\n21071|0.5\n21072|0.23611\n21073|0.79167\n21074|0.76389\n21075|0.79167\n21076|0.95833\n21077|0.80556\n21078|0.63889\n21079|0.375\n21080|0.44444\n21081|0.33333\n21082|0.5\n21083|0.75\n21084|0.75\n21085|0.80556\n21086|0.52778\n21087|0.875\n21088|0.38889\n21089|0.48611\n21090|0.625\n21091|0.30556\n21092|0.94444\n21093|0.72222\n21094|0.22222\n21095|0.76389\n21096|0.34722\n21097|0.23611\n21098|0.29167\n21099|0.33333\n21100|0.29167\n21101|0.73611\n21102|0.80556\n21103|0.5\n21104|0.59722\n21105|0.73611\n21106|0.61111\n21107|0.55556\n21108|0.86111\n21109|0.76389\n21110|0.77778\n21111|0.61458\n21112|0.68056\n21113|0.48611\n21114|0.84722\n21115|0.79167\n21116|0.88889\n21117|0.013889\n21118|0.81944\n21119|0.77778\n21120|0.47222\n21121|0.5\n21122|0.34722\n21123|0.36111\n21124|0.36111\n21125|0.5\n21126|0.5\n21127|0.72222\n21128|0.63889\n21129|0.59722\n21130|0.72222\n21131|0.81944\n21132|0.61111\n21133|0.5\n21134|0.5\n21135|0.625\n21136|0.86111\n21137|0.38889\n21138|0.61111\n21139|0.66667\n21140|0.66667\n21141|0.75\n21142|0.55556\n21143|0.55556\n21144|0.5\n21145|0.11111\n21146|0.22222\n21147|0.55556\n21148|0.61111\n21149|0.16667\n21150|0.58333\n21151|0.5\n21152|0.52778\n21153|0.5\n21154|0.75\n21155|0.875\n21156|0.81944\n21157|0.88889\n21158|0.56944\n21159|0.70833\n21160|0.76389\n21161|0.47222\n21162|0.5\n21163|0.26389\n21164|0.63889\n21165|0.68056\n21166|0.19444\n21167|0.51389\n21168|1\n21169|0.59722\n21170|0.76389\n21171|0.36111\n21172|0.83333\n21173|0.98611\n21174|0.66667\n21175|0.79167\n21176|0.375\n21177|0.5\n21178|0.63889\n21179|0.70833\n21180|0.66667\n21181|0.63889\n21182|0.51389\n21183|0.69444\n21184|0.77778\n21185|0.76389\n21186|0.84722\n21187|0.5\n21188|0.5\n21189|0.69444\n21190|0.36111\n21191|0.68056\n21192|0.75\n21193|0.5\n21194|0.55556\n21195|0.29167\n21196|0.51389\n21197|0.5\n21198|0.55556\n21199|0.72222\n21200|0.66667\n21201|0.70833\n21202|0.66667\n21203|0.51389\n21204|0.5\n21205|0.5\n21206|0.55556\n21207|0.5\n21208|0.52778\n21209|0.52778\n21210|0.54167\n21211|0.33333\n21212|0.44444\n21213|0.33333\n21214|0.5\n21215|0.5\n21216|0.47222\n21217|0.5\n21218|0.61111\n21219|0.5\n21220|0.66667\n21221|0.5\n21222|0.5\n21223|0.16667\n21224|0.097222\n21225|0.5\n21226|0.63889\n21227|0.83333\n21228|0.84722\n21229|0.44444\n21230|0.75\n21231|0.66667\n21232|0.38889\n21233|0.16667\n21234|0.51389\n21235|0.52778\n21236|0.63889\n21237|0.5\n21238|0.34722\n21239|0.20833\n21240|0.86111\n21241|0.90278\n21242|0.56944\n21243|0.36111\n21244|0.34722\n21245|0.5\n21246|0.5\n21247|0.61111\n21248|0.38889\n21249|0.38889\n21250|0.375\n21251|0.48611\n21252|0.76389\n21253|0.90278\n21254|0.80556\n21255|0.80556\n21256|0.76389\n21257|0.73611\n21258|0.44444\n21259|0.63889\n21260|0.5\n21261|0.22222\n21262|0.38889\n21263|0.59722\n21264|0.66667\n21265|0.63889\n21266|0.55556\n21267|0.75\n21268|0.86111\n21269|0.52778\n21270|0.375\n21271|0.55556\n21272|0.61111\n21273|0.66667\n21274|0.41667\n21275|0.5\n21276|0.75\n21277|0.75\n21278|0.5\n21279|0.33333\n21280|0.84722\n21281|0.90278\n21282|0.5\n21283|0.69444\n21284|0.80556\n21285|0.61111\n21286|0.68056\n21287|0.90278\n21288|0.5\n21289|0.51389\n21290|0.5\n21291|0.81944\n21292|0.75\n21293|0.69444\n21294|0.5\n21295|0.041667\n21296|0.5\n21297|0.56944\n21298|0.43056\n21299|0.5\n21300|0.51389\n21301|0.54167\n21302|0.76389\n21303|0.88889\n21304|0.375\n21305|0.5\n21306|0.54167\n21307|0.44444\n21308|0.5\n21309|0.5\n21310|0.84722\n21311|0.54167\n21312|0.38889\n21313|0.70833\n21314|0.86111\n21315|0.91667\n21316|0.72222\n21317|0.5\n21318|0.5\n21319|0.83333\n21320|0.5\n21321|0.5\n21322|0.5\n21323|0.63889\n21324|0.55556\n21325|0.51389\n21326|0.34722\n21327|0.23611\n21328|0.48611\n21329|0.38889\n21330|0.31944\n21331|0.5\n21332|0.5\n21333|0.20833\n21334|0.38889\n21335|0.375\n21336|0.5\n21337|0.61111\n21338|0.68056\n21339|0.5\n21340|0.43056\n21341|0.44444\n21342|0.125\n21343|0.45833\n21344|0.52778\n21345|0.76389\n21346|0.63889\n21347|0.88889\n21348|0.77778\n21349|0.25\n21350|0.34722\n21351|0.45833\n21352|0.27778\n21353|0.33333\n21354|0.80556\n21355|0.77778\n21356|0.81944\n21357|0.72222\n21358|0.5\n21359|0.76389\n21360|0.61111\n21361|0.51389\n21362|0.83333\n21363|0.5\n21364|0.5\n21365|0.72222\n21366|0.80556\n21367|0.5\n21368|0.76389\n21369|0.66667\n21370|0.83333\n21371|0.73611\n21372|0.5\n21373|0.5\n21374|0.5\n21375|0.5\n21376|0.45833\n21377|0.76389\n21378|0.55556\n21379|0.19444\n21380|0.5\n21381|0.5\n21382|0.72222\n21383|0.33333\n21384|0.19444\n21385|0.61111\n21386|0.58333\n21387|0.27778\n21388|0.63889\n21389|0.5\n21390|0.69444\n21391|0.69444\n21392|0.40278\n21393|0.47222\n21394|0.61111\n21395|0.5\n21396|0.625\n21397|0.77778\n21398|0.61111\n21399|0.55556\n21400|0.51389\n21401|0.84722\n21402|0.94444\n21403|0.65278\n21404|0.81944\n21405|0.77778\n21406|0.5\n21407|0.5\n21408|0.54167\n21409|0.41667\n21410|0.5\n21411|0.5\n21412|0.68056\n21413|0.56944\n21414|0.70833\n21415|0.5\n21416|0.51389\n21417|0.5\n21418|0.5\n21419|0.61111\n21420|0.5\n21421|0.5\n21422|0.33333\n21423|0.5\n21424|0.30556\n21425|0.5\n21426|0.45833\n21427|0.5\n21428|0.66667\n21429|0.65278\n21430|0.5\n21431|0.44444\n21432|0.58333\n21433|0.41667\n21434|0.13889\n21435|0.44444\n21436|0.5\n21437|0.61111\n21438|0.83333\n21439|0.70833\n21440|0.5\n21441|0.19444\n21442|0.34722\n21443|0.34722\n21444|0.5\n21445|0.59722\n21446|0.81944\n21447|0.55556\n21448|0.26389\n21449|0.65278\n21450|0.375\n21451|0.25\n21452|0.43056\n21453|0.19444\n21454|0.47222\n21455|0.55556\n21456|0.45833\n21457|0.55556\n21458|0.45833\n21459|0.25\n21460|0.30556\n21461|0.31944\n21462|0.43056\n21463|0.66667\n21464|0.5\n21465|0.58333\n21466|0.44444\n21467|0.44444\n21468|0.47222\n21469|0.5\n21470|0.51389\n21471|0.375\n21472|0.5\n21473|0.55556\n21474|0.55556\n21475|0.5\n21476|0.5\n21477|0.38889\n21478|0.22222\n21479|0.5\n21480|0.38889\n21481|0.5\n21482|0.51389\n21483|0.86111\n21484|0.5\n21485|0.75\n21486|0.5\n21487|0.38889\n21488|0.77778\n21489|0.5\n21490|0.5\n21491|0.5\n21492|0.5\n21493|0.5\n21494|0.68056\n21495|0.5\n21496|0.5\n21497|0.5\n21498|0.61111\n21499|0.5\n21500|0.55556\n21501|0.5\n21502|0.5\n21503|0.625\n21504|0.63889\n21505|0.5\n21506|0.68056\n21507|0.44444\n21508|0.69444\n21509|0.88889\n21510|0.5\n21511|0.55556\n21512|0.86111\n21513|0.44444\n21514|0.5\n21515|0.72222\n21516|0.5\n21517|0.48611\n21518|0.44444\n21519|0.56944\n21520|0.58333\n21521|0.51389\n21522|0.5\n21523|0.58333\n21524|0.84722\n21525|0.72222\n21526|0.54167\n21527|0.55556\n21528|0.55556\n21529|0.5\n21530|0.5\n21531|0.66667\n21532|0.66667\n21533|0.51389\n21534|0.44444\n21535|0.19444\n21536|0.27778\n21537|0.40278\n21538|0.68056\n21539|0.61111\n21540|0.5\n21541|0.5\n21542|0.63889\n21543|0.44444\n21544|0.5\n21545|0.41667\n21546|0.51389\n21547|0.55556\n21548|0.77778\n21549|0.54167\n21550|0.77778\n21551|0.5\n21552|0.5\n21553|0.5\n21554|0.5\n21555|0.38889\n21556|0.41667\n21557|0.51389\n21558|0.52778\n21559|0.93056\n21560|0.95833\n21561|0.55556\n21562|0.54167\n21563|0.56944\n21564|0.5\n21565|0.41667\n21566|0.5\n21567|0.36111\n21568|0.5\n21569|0.5\n21570|0.56944\n21571|0.5\n21572|0.79167\n21573|0.5\n21574|0.73611\n21575|0.5\n21576|0.38889\n21577|0.5\n21578|0.5\n21579|0.5\n21580|0.44444\n21581|0.61111\n21582|0.43056\n21583|0.55556\n21584|0.40278\n21585|0.51389\n21586|0.5\n21587|0.5\n21588|0.5\n21589|0.22222\n21590|0.55556\n21591|0.75\n21592|0.875\n21593|0.80556\n21594|0.73958\n21595|0.88889\n21596|0.52778\n21597|0.84722\n21598|0.5\n21599|0.5\n21600|0.58333\n21601|0.51389\n21602|0.54167\n21603|0.66667\n21604|0.77778\n21605|0.52778\n21606|0.63889\n21607|0.30556\n21608|0.51389\n21609|0.44444\n21610|0.5\n21611|0.51389\n21612|0.5\n21613|0.56944\n21614|0.5\n21615|0.29167\n21616|0.5\n21617|0.94444\n21618|0.76389\n21619|0.77778\n21620|0.5\n21621|0.58333\n21622|0.44444\n21623|0.5\n21624|0.55556\n21625|0.5\n21626|0.45833\n21627|0.76389\n21628|0.33333\n21629|0.5\n21630|0.38889\n21631|0.29167\n21632|0.90278\n21633|0.80556\n21634|0.70833\n21635|0.625\n21636|0.65278\n21637|0.5\n21638|0.58333\n21639|0.625\n21640|0.45833\n21641|0.41667\n21642|0.5\n21643|0.55556\n21644|0.83333\n21645|0.52778\n21646|0.5\n21647|0.45833\n21648|0.5\n21649|0.5\n21650|0.44444\n21651|0.5\n21652|0.81944\n21653|0.51389\n21654|0.69444\n21655|0.22222\n21656|0.54167\n21657|0.40278\n21658|0.38889\n21659|0.63889\n21660|0.5\n21661|0.56944\n21662|0.51389\n21663|0.61111\n21664|0.5\n21665|0.44444\n21666|0.55556\n21667|0.70833\n21668|0.45833\n21669|0.61111\n21670|0.48611\n21671|0.41667\n21672|0.54167\n21673|0.55556\n21674|0.5\n21675|0.36111\n21676|0.44444\n21677|0.63889\n21678|0.34722\n21679|0.84722\n21680|0.58333\n21681|0.5\n21682|0.5\n21683|0.55556\n21684|0.34722\n21685|0.27778\n21686|0.47222\n21687|0.38889\n21688|0.61111\n21689|0.625\n21690|0.59722\n21691|0.069444\n21692|0.54167\n21693|0.5\n21694|0.51389\n21695|0.44444\n21696|0.43056\n21697|0.36111\n21698|0.47222\n21699|0.38889\n21700|0.29167\n21701|0.29167\n21702|0.51389\n21703|0.76389\n21704|0.5\n21705|0.33333\n21706|0.75\n21707|0.45833\n21708|0.55556\n21709|0.73611\n21710|0.61111\n21711|0.70833\n21712|0.43056\n21713|0.86111\n21714|0.98611\n21715|0.54167\n21716|0.51389\n21717|0.36111\n21718|0.34722\n21719|0.47222\n21720|0.54167\n21721|0.55556\n21722|0.54167\n21723|0.44444\n21724|0.5\n21725|0.55556\n21726|0.72222\n21727|0.36111\n21728|0.61111\n21729|0.5\n21730|0.81944\n21731|0.88889\n21732|0.80556\n21733|0.83333\n21734|0.81944\n21735|0.81944\n21736|0.44444\n21737|0.55556\n21738|0.45833\n21739|0.5\n21740|0.5\n21741|0.72222\n21742|0.75\n21743|0.75\n21744|0.77778\n21745|0.75\n21746|0.45833\n21747|0.55556\n21748|0.5\n21749|0.5\n21750|0.40278\n21751|0.5\n21752|0.44444\n21753|0.53125\n21754|0.86111\n21755|0.83333\n21756|0.69444\n21757|0.69444\n21758|0.5\n21759|0.65278\n21760|0.5\n21761|0.5\n21762|0.72222\n21763|0.5\n21764|0.30556\n21765|0.76389\n21766|0.80556\n21767|0.625\n21768|0.72222\n21769|0.5\n21770|0.5\n21771|0.5\n21772|0.22222\n21773|0.5\n21774|0.5\n21775|0.5\n21776|0.5\n21777|0.5\n21778|0.44444\n21779|0.81944\n21780|0.55556\n21781|0.81944\n21782|0.5\n21783|0.76389\n21784|0.51389\n21785|0.5\n21786|0.88889\n21787|0.5\n21788|0.5\n21789|0.45833\n21790|0.38889\n21791|0.51389\n21792|0.65278\n21793|0.51389\n21794|0.58333\n21795|0.88889\n21796|0.88889\n21797|0.5\n21798|0.76389\n21799|0.76389\n21800|0.56944\n21801|0.61111\n21802|0.5\n21803|0.19444\n21804|0.33333\n21805|0.76389\n21806|0.79167\n21807|0.69444\n21808|0.83333\n21809|0.22222\n21810|0.51389\n21811|0.54167\n21812|0.5\n21813|0.58333\n21814|0.52778\n21815|0.44444\n21816|0.5\n21817|0.55556\n21818|0.41667\n21819|0.39583\n21820|0.55556\n21821|0.84722\n21822|0.51389\n21823|0.41667\n21824|0.625\n21825|0.44444\n21826|0.56944\n21827|0.63889\n21828|0.91667\n21829|0.88889\n21830|0.83333\n21831|0.61111\n21832|0.72222\n21833|0.75\n21834|0.77778\n21835|0.58333\n21836|0.72222\n21837|0.45833\n21838|0.5\n21839|0.25\n21840|0.55556\n21841|0.61111\n21842|0.61111\n21843|0.73611\n21844|0.76389\n21845|0.75\n21846|0.56944\n21847|0.81944\n21848|0.5\n21849|0.5\n21850|0.5\n21851|0.47222\n21852|0.45833\n21853|0.5\n21854|0.26389\n21855|0.5\n21856|0.72222\n21857|0.75\n21858|0.52778\n21859|0.81944\n21860|0.66667\n21861|0.5\n21862|0.56944\n21863|0.56944\n21864|0.61111\n21865|0.83333\n21866|0.44444\n21867|0.61111\n21868|0.79167\n21869|0.68056\n21870|0.5\n21871|0.5\n21872|0.875\n21873|0.70833\n21874|0.625\n21875|0.75\n21876|0.52778\n21877|0.77778\n21878|0.77778\n21879|0.44444\n21880|0.55556\n21881|0.5\n21882|0.5\n21883|0.61111\n21884|0.55556\n21885|0.44444\n21886|0.58333\n21887|0.63889\n21888|0.54167\n21889|0.29167\n21890|0.55556\n21891|0.5\n21892|0.30556\n21893|0.68056\n21894|0.51389\n21895|0.33333\n21896|0.5\n21897|0.48611\n21898|0.80556\n21899|0.81944\n21900|0.72222\n21901|0.55556\n21902|0.38889\n21903|0.5\n21904|0.66667\n21905|0.52778\n21906|0.38889\n21907|0.31944\n21908|0.41667\n21909|0.5\n21910|0.66667\n21911|0.29167\n21912|0.27778\n21913|0.5\n21914|0.5\n21915|0.5\n21916|0.81944\n21917|0.80556\n21918|0.79167\n21919|0.54167\n21920|0.5\n21921|0.56944\n21922|0.51389\n21923|0.45139\n21924|0.38889\n21925|0.5\n21926|0.55556\n21927|0.40278\n21928|0.56944\n21929|0.625\n21930|0.65278\n21931|0.72222\n21932|0.72222\n21933|0.52778\n21934|0.52778\n21935|0.66667\n21936|0.61111\n21937|0.94444\n21938|0.54167\n21939|0.5\n21940|0.5\n21941|0.5\n21942|0.44444\n21943|0.84722\n21944|0.75\n21945|0.76389\n21946|0.38889\n21947|0.5\n21948|0.51389\n21949|0.29167\n21950|0.75\n21951|0.56944\n21952|0.5\n21953|0.5\n21954|0.72222\n21955|0.5\n21956|0.68056\n21957|0.75\n21958|0.5\n21959|0.5\n21960|0.5\n21961|0.5\n21962|0.625\n21963|0.375\n21964|0.55556\n21965|0.38889\n21966|0.5\n21967|0.5\n21968|0.76389\n21969|0.83333\n21970|0.5\n21971|0.55556\n21972|0.83333\n21973|0.5\n21974|0.52778\n21975|0.72222\n21976|0.72222\n21977|0.68056\n21978|0.5\n21979|0.5\n21980|0.65278\n21981|0.44444\n21982|0.65278\n21983|0.45833\n21984|0.5\n21985|0.625\n21986|0.56944\n21987|0.625\n21988|0.70833\n21989|0.27778\n21990|0.29167\n21991|0.375\n21992|0.18056\n21993|0.61111\n21994|0.36111\n21995|0.88889\n21996|0.5\n21997|0.63889\n21998|0.72222\n21999|0.91667\n22000|0.93056\n22001|0.84722\n22002|0.68056\n22003|0.90278\n22004|0.90278\n22005|0.77778\n22006|0.61111\n22007|0.5\n22008|0.76389\n22009|0.55556\n22010|0.38889\n22011|0.83333\n22012|0.83333\n22013|0.84722\n22014|0.63889\n22015|0.83333\n22016|0.65278\n22017|0.72222\n22018|0.77778\n22019|0.66667\n22020|0.80556\n22021|0.81944\n22022|0.88889\n22023|0.26389\n22024|0.25\n22025|0.31944\n22026|0.77778\n22027|0.22222\n22028|0.58333\n22029|0.52778\n22030|0.73611\n22031|0.73611\n22032|0.73611\n22033|0.65278\n22034|0.5\n22035|0.5\n22036|0.83333\n22037|0.56944\n22038|0.97222\n22039|0.61111\n22040|0.79167\n22041|0.5\n22042|0.5\n22043|0.54167\n22044|0.70833\n22045|0.5\n22046|0.5\n22047|0.54167\n22048|0.33333\n22049|0.61111\n22050|0.45833\n22051|0.34722\n22052|0.5\n22053|0.86111\n22054|0.5\n22055|0.70833\n22056|0.86111\n22057|0.5\n22058|0.77778\n22059|0.80556\n22060|0.88889\n22061|0.79167\n22062|0.83333\n22063|0.5\n22064|0.66667\n22065|0.77778\n22066|0.5\n22067|0.55556\n22068|0.54167\n22069|0.5\n22070|0.72222\n22071|0.68056\n22072|0.5\n22073|0.75\n22074|0.25\n22075|0.5\n22076|0.79167\n22077|0.38889\n22078|0.94444\n22079|0.83333\n22080|0.72222\n22081|0.5\n22082|0.59722\n22083|0.5\n22084|0.73611\n22085|0.63889\n22086|0.76389\n22087|0.51389\n22088|0.65278\n22089|0.5\n22090|0.79167\n22091|0.65278\n22092|0.76389\n22093|0.66667\n22094|0.77778\n22095|0.77778\n22096|0.88889\n22097|0.86111\n22098|0.83333\n22099|0.5\n22100|0.51389\n22101|0.11111\n22102|0.48611\n22103|0.58333\n22104|0.64583\n22105|0.79167\n22106|0.66667\n22107|0.52778\n22108|0.61111\n22109|0.77083\n22110|0.76389\n22111|0.875\n22112|0.875\n22113|0.56944\n22114|0.5\n22115|0.5\n22116|0.625\n22117|0.55556\n22118|0.75\n22119|0.20833\n22120|0.58333\n22121|0.73611\n22122|0.61111\n22123|0.38889\n22124|0.5\n22125|0.27778\n22126|0.80556\n22127|0.44444\n22128|0.40278\n22129|0.83333\n22130|0.61111\n22131|0.66667\n22132|0.44444\n22133|0.52778\n22134|0.41667\n22135|0.47222\n22136|0.44444\n22137|0.54167\n22138|0.88889\n22139|0.55556\n22140|0.77778\n22141|0.5\n22142|0.51389\n22143|0.80556\n22144|0.79167\n22145|0.51389\n22146|0.5\n22147|0.52778\n22148|0.51389\n22149|0.56944\n22150|0.44444\n22151|0.80556\n22152|0.875\n22153|0.90278\n22154|0.94444\n22155|0.66667\n22156|0.72222\n22157|0.5\n22158|0.44444\n22159|0.44444\n22160|0.44444\n22161|0.5\n22162|0.75\n22163|0.27778\n22164|0.58333\n22165|0.5\n22166|0.55556\n22167|0.5\n22168|0.27778\n22169|0.77778\n22170|0.84722\n22171|0.79167\n22172|0.375\n22173|0.625\n22174|0.5\n22175|0.38889\n22176|0.93056\n22177|0.5\n22178|0.43056\n22179|0.73611\n22180|0.55556\n22181|0.63889\n22182|0.5\n22183|0.81944\n22184|0.38889\n22185|0.90278\n22186|0.88889\n22187|0.33333\n22188|0.77778\n22189|0.5\n22190|0.51389\n22191|0.5\n22192|0.44444\n22193|0.38889\n22194|0.61111\n22195|0.51389\n22196|0.44444\n22197|0.55556\n22198|0.5\n22199|0.25\n22200|0.63889\n22201|0.68056\n22202|0.77778\n22203|0.65278\n22204|0.63889\n22205|0.16667\n22206|0.34722\n22207|0.68056\n22208|0.44444\n22209|0.44444\n22210|0.79167\n22211|0.5\n22212|0.5\n22213|0.51389\n22214|0.58333\n22215|0.5\n22216|0.44444\n22217|0.56944\n22218|0.5\n22219|0.5\n22220|0.5\n22221|0.5\n22222|0.5\n22223|0.5\n22224|0.59722\n22225|0.45833\n22226|0.38889\n22227|0.55556\n22228|0.77778\n22229|0.5\n22230|0.61111\n22231|0.5\n22232|0.5\n22233|0.625\n22234|0.5\n22235|0.72222\n22236|0.5\n22237|0.5\n22238|0.5\n22239|0.86111\n22240|0.72222\n22241|0.72222\n22242|0.75\n22243|0.5\n22244|0.55556\n22245|0.5\n22246|0.5\n22247|0.44444\n22248|0.625\n22249|0.5\n22250|0.75\n22251|0.55556\n22252|0.5\n22253|0.5\n22254|0.63889\n22255|0.43056\n22256|0.44444\n22257|0.83333\n22258|0.875\n22259|0.51389\n22260|0.31944\n22261|0.375\n22262|0.56944\n22263|0.5\n22264|0.72222\n22265|0.5\n22266|0.43056\n22267|0.56944\n22268|0.54167\n22269|0.375\n22270|0.54167\n22271|0.56944\n22272|0.72222\n22273|0.75\n22274|0.56944\n22275|0.61111\n22276|0.66667\n22277|0.73611\n22278|0.5\n22279|0.5\n22280|0.38889\n22281|0.5\n22282|0.55556\n22283|0.69444\n22284|0.79167\n22285|0.95833\n22286|0.55556\n22287|0.84722\n22288|0.51389\n22289|0.61111\n22290|0.66667\n22291|0.63889\n22292|0.5\n22293|0.81944\n22294|0.55556\n22295|0.44444\n22296|0.47222\n22297|0.48611\n22298|0.45833\n22299|0.5\n22300|0.5\n22301|0.51389\n22302|0.58333\n22303|0.44444\n22304|0.66667\n22305|0.80556\n22306|0.16667\n22307|0.36111\n22308|0.44444\n22309|0.88889\n22310|0.5\n22311|0.5\n22312|0.59722\n22313|0.5\n22314|0.70833\n22315|0.69444\n22316|0.86111\n22317|0.93056\n22318|0.5\n22319|0.55556\n22320|0.5\n22321|0.51389\n22322|0.33333\n22323|0.5\n22324|0.5\n22325|0.51389\n22326|0.5\n22327|0.66667\n22328|0.5\n22329|0.5\n22330|0.55556\n22331|0.55556\n22332|0.875\n22333|0.5\n22334|0.5\n22335|0.65278\n22336|0.72222\n22337|0.66667\n22338|0.5\n22339|0.61111\n22340|0.72222\n22341|0.66667\n22342|0.5\n22343|0.51389\n22344|0.72222\n22345|0.5\n22346|0.68056\n22347|0.72222\n22348|0.76389\n22349|0.5\n22350|0.5\n22351|0.5\n22352|0.5\n22353|0.5\n22354|0.54167\n22355|0.72222\n22356|0.73611\n22357|0.81944\n22358|0.5\n22359|0.5\n22360|0.48611\n22361|0.79167\n22362|0.59722\n22363|0.5\n22364|0.44444\n22365|0.5\n22366|0.5\n22367|0.5\n22368|0.5\n22369|0.76389\n22370|0.55556\n22371|0.86111\n22372|0.55556\n22373|0.5\n22374|0.31944\n22375|0.48611\n22376|0.51389\n22377|0.22222\n22378|0.33333\n22379|0.55556\n22380|0.70833\n22381|0.5\n22382|0.51389\n22383|0.52778\n22384|0.51389\n22385|0.41667\n22386|0.94444\n22387|0.83333\n22388|0.5\n22389|0.58333\n22390|0.5\n22391|0.5\n22392|0.55556\n22393|0.33333\n22394|0.5\n22395|0.80556\n22396|0.55556\n22397|0.55556\n22398|0.5\n22399|0.5\n22400|0.11111\n22401|0.75\n22402|0.44444\n22403|0.61111\n22404|0.55556\n22405|0.88889\n22406|0.16667\n22407|0.5\n22408|0.47222\n22409|0.5\n22410|0.5\n22411|0.5\n22412|0.44444\n22413|0.95833\n22414|0.84722\n22415|0.5\n22416|0.44444\n22417|0.5\n22418|0.5\n22419|0.58333\n22420|0.73611\n22421|0.66667\n22422|0.51389\n22423|0.5\n22424|0.5\n22425|0.56944\n22426|0.5\n22427|0.5\n22428|0.84722\n22429|0.83333\n22430|0.83333\n22431|0.94444\n22432|0.85417\n22433|0.68056\n22434|0.25\n22435|0.23611\n22436|0.91667\n22437|0.69444\n22438|0.86111\n22439|0.61111\n22440|0.84722\n22441|0.79167\n22442|0.70833\n22443|0.5\n22444|0.40278\n22445|0.61111\n22446|0.94444\n22447|0.86111\n22448|0.73611\n22449|0.5\n22450|0.31944\n22451|0.47222\n22452|0.5\n22453|0.44444\n22454|0.33333\n22455|0.63889\n22456|0.69444\n22457|0.65278\n22458|0.83333\n22459|0.83333\n22460|0.5\n22461|0.44444\n22462|0.19444\n22463|0.5\n22464|0.44444\n22465|0.84722\n22466|0.5\n22467|0.5\n22468|0.63889\n22469|0.68056\n22470|0.73611\n22471|0.58333\n22472|0.75\n22473|0.59722\n22474|0.5\n22475|0.5\n22476|0.5\n22477|0.56944\n22478|0.16667\n22479|0.48611\n22480|0.68056\n22481|0.81944\n22482|0.65278\n22483|0.61111\n22484|0.66667\n22485|0.51389\n22486|0.27778\n22487|0.72222\n22488|0.83333\n22489|0.43056\n22490|0.61111\n22491|0.65278\n22492|0.54167\n22493|0.5\n22494|0.66667\n22495|0.51389\n22496|0.5\n22497|0.625\n22498|0.5\n22499|0.5\n22500|0.44444\n22501|0.83333\n22502|0.55556\n22503|0.61111\n22504|0.5\n22505|0.51389\n22506|0.81944\n22507|0.5\n22508|0.59722\n22509|0.65278\n22510|0.55556\n22511|0.5\n22512|0.70833\n22513|0.45833\n22514|0.54167\n22515|0.63889\n22516|0.5\n22517|0.58333\n22518|0.5\n22519|0.63889\n22520|0.59722\n22521|0.61111\n22522|0.77778\n22523|0.65278\n22524|0.45833\n22525|0.5\n22526|0.48611\n22527|0.70833\n22528|0.51389\n22529|0.76389\n22530|0.5\n22531|0.44444\n22532|0.72222\n22533|0.65278\n22534|0.55556\n22535|0.61111\n22536|0.65278\n22537|0.69444\n22538|0.69444\n22539|0.56944\n22540|0.70833\n22541|0.54167\n22542|0.73611\n22543|0.61111\n22544|0.63889\n22545|0.625\n22546|0.61111\n22547|0.5\n22548|0.44444\n22549|0.51389\n22550|0.5\n22551|0.51389\n22552|0.80556\n22553|0.76389\n22554|0.55556\n22555|0.63889\n22556|0.5\n22557|0.56944\n22558|0.5\n22559|0.5\n22560|0.44444\n22561|0.5\n22562|0.72222\n22563|0.5\n22564|0.31944\n22565|0.59722\n22566|0.77778\n22567|0.75\n22568|0.5\n22569|0.52778\n22570|0.66667\n22571|0.52778\n22572|0.94444\n22573|0.20833\n22574|0.98611\n22575|0.5\n22576|0.5\n22577|0.36111\n22578|0.55556\n22579|0.5\n22580|0.73611\n22581|0.73611\n22582|0.76389\n22583|0.44444\n22584|0.47222\n22585|0.5\n22586|0.61111\n22587|0.61111\n22588|0.5\n22589|0.5\n22590|0.76389\n22591|0.5\n22592|0.5\n22593|0.48611\n22594|0.55556\n22595|0.83333\n22596|0.91667\n22597|0.375\n22598|0.45833\n22599|0.52778\n22600|0.45833\n22601|0.55556\n22602|0.48611\n22603|0.68056\n22604|0.55556\n22605|0.54167\n22606|0.77778\n22607|0.79167\n22608|0.59722\n22609|0.56944\n22610|0.89583\n22611|0.73611\n22612|0.48611\n22613|0.48611\n22614|0.58333\n22615|0.47222\n22616|0.77778\n22617|0.77778\n22618|0.38889\n22619|0.61111\n22620|0.61111\n22621|0.91667\n22622|0.52778\n22623|0.52778\n22624|0.52778\n22625|0.5\n22626|0.80556\n22627|0.73611\n22628|0.5\n22629|0.30556\n22630|0.51389\n22631|0.97222\n22632|0.55556\n22633|0.75\n22634|0.77778\n22635|0.41667\n22636|0.61111\n22637|0.33333\n22638|0.68056\n22639|0.63889\n22640|0.61111\n22641|0.18056\n22642|0.13889\n22643|0.72222\n22644|0.94444\n22645|0.61111\n22646|0.38889\n22647|0.40278\n22648|0.59722\n22649|0.76389\n22650|0.38889\n22651|0.47222\n22652|0.44444\n22653|0.51389\n22654|0.80556\n22655|0.63889\n22656|0.56944\n22657|0.56944\n22658|0.5\n22659|0.75\n22660|0.5\n22661|0.77778\n22662|0.83333\n22663|0.5\n22664|0.52778\n22665|0.5\n22666|0.5\n22667|0.68056\n22668|0.54167\n22669|0.5\n22670|0.68056\n22671|0.52778\n22672|0.16667\n22673|0.63889\n22674|0.61111\n22675|0.5\n22676|0.55556\n22677|0.68056\n22678|0.31944\n22679|0.44444\n22680|0.44444\n22681|0.26389\n22682|0.36111\n22683|0.5\n22684|0.51389\n22685|0.44444\n22686|0.5\n22687|0.91667\n22688|0.84722\n22689|0.5\n22690|0.30556\n22691|0.79167\n22692|0.54167\n22693|0.38889\n22694|0.56944\n22695|0.79167\n22696|0.55556\n22697|0.55556\n22698|0.5\n22699|0.61111\n22700|0.5\n22701|0.69444\n22702|0.75\n22703|0.81944\n22704|0.65278\n22705|0.5\n22706|0.66667\n22707|0.55556\n22708|0.5\n22709|0.55556\n22710|0.75\n22711|0.75\n22712|0.86111\n22713|0.51389\n22714|0.33333\n22715|0.38889\n22716|0.63889\n22717|0.27778\n22718|0.95833\n22719|0.38889\n22720|0.31944\n22721|0.36111\n22722|0.44444\n22723|0.44444\n22724|0.5\n22725|0.66667\n22726|0.69444\n22727|0.52778\n22728|0.68056\n22729|0.61111\n22730|0.83333\n22731|0.5\n22732|0.66667\n22733|0.33333\n22734|0.11111\n22735|0.38889\n22736|0.58333\n22737|0.27778\n22738|0.38889\n22739|0.38889\n22740|0.43056\n22741|0.91667\n22742|0.81944\n22743|0.88889\n22744|0.77778\n22745|0.66667\n22746|0.70833\n22747|0.875\n22748|0.5\n22749|0.38889\n22750|0.52778\n22751|0.58333\n22752|0.56944\n22753|0.5\n22754|0.52778\n22755|0.5\n22756|0.77778\n22757|0.5\n22758|0.44444\n22759|0.38889\n22760|0.45833\n22761|0.66667\n22762|0.61111\n22763|0.76389\n22764|0.66667\n22765|0.73611\n22766|0.5\n22767|0.44444\n22768|0.5\n22769|0.56944\n22770|0.27778\n22771|0.43056\n22772|0.44444\n22773|0.73611\n22774|0.83333\n22775|0.5\n22776|0.66667\n22777|0.5\n22778|0.44444\n22779|0.33333\n22780|0.375\n22781|0.26389\n22782|0.5\n22783|0.5\n22784|0.41667\n22785|0.54167\n22786|0.375\n22787|0.5\n22788|0.61111\n22789|0.45833\n22790|0.5\n22791|0.45833\n22792|0.5\n22793|0.61111\n22794|1\n22795|0.43056\n22796|0.44444\n22797|0.66667\n22798|0.81944\n22799|0.73611\n22800|0.80556\n22801|0.5\n22802|0.69444\n22803|0.84722\n22804|0.23611\n22805|0.16667\n22806|0.88889\n22807|0.83333\n22808|0.75\n22809|0.69444\n22810|0.84722\n22811|0.91667\n22812|0.70833\n22813|0.66667\n22814|0.52778\n22815|0.5\n22816|0.63889\n22817|0.5\n22818|0.5\n22819|0.5\n22820|0.55556\n22821|0.29167\n22822|0.94444\n22823|0.79167\n22824|0.79167\n22825|0.77778\n22826|0.54167\n22827|0.79167\n22828|0.65278\n22829|0.18056\n22830|0.55556\n22831|0.69444\n22832|0.375\n22833|0.51389\n22834|0.76389\n22835|0.75\n22836|0.51389\n22837|0.55556\n22838|0.52778\n22839|0.61111\n22840|0.47222\n22841|0.75\n22842|0.55556\n22843|0.43056\n22844|0.5\n22845|0.34722\n22846|0.59722\n22847|0.54167\n22848|0.80556\n22849|0.625\n22850|0.55556\n22851|0.48611\n22852|0.47222\n22853|0.75\n22854|0.72222\n22855|0.73611\n22856|0.56944\n22857|0.88889\n22858|0.91667\n22859|0.5\n22860|0.5\n22861|0.69444\n22862|0.56944\n22863|0.79167\n22864|0.5\n22865|0.5\n22866|0.52778\n22867|0.63889\n22868|0.72222\n22869|0.91667\n22870|0.44444\n22871|0.47222\n22872|0.55556\n22873|0.29167\n22874|0.70833\n22875|0.72222\n22876|0.75\n22877|0.52778\n22878|0.72222\n22879|0.52778\n22880|0.27778\n22881|0.48611\n22882|0.5\n22883|0.90278\n22884|0.70833\n22885|0.5\n22886|0.51389\n22887|0.5\n22888|0.5\n22889|0.5\n22890|0.66667\n22891|0.79167\n22892|0.72222\n22893|0.48611\n22894|0.68056\n22895|0.41667\n22896|0.77778\n22897|0.23611\n22898|0.80556\n22899|0.75\n22900|0.79167\n22901|0.72222\n22902|0.51389\n22903|0.5\n22904|0.47222\n22905|0.33333\n22906|0.66667\n22907|0.59722\n22908|0.88889\n22909|0.73611\n22910|0.58333\n22911|0.56944\n22912|0.5\n22913|0.36111\n22914|0.31944\n22915|0.5\n22916|0.76389\n22917|0.83333\n22918|0.86111\n22919|0.90278\n22920|0.875\n22921|0.40278\n22922|0.51389\n22923|0.55556\n22924|0.5\n22925|0.52778\n22926|0.68056\n22927|0.55556\n22928|0.5\n22929|0.90278\n22930|0.88889\n22931|0.84722\n22932|0.5\n22933|0.5\n22934|0.40278\n22935|0.52778\n22936|0.86111\n22937|1\n22938|0.48611\n22939|0.83333\n22940|0.5\n22941|0.5\n22942|0.56944\n22943|0.5\n22944|0.5\n22945|0.55556\n22946|0.40278\n22947|0.65278\n22948|0.61111\n22949|0.61111\n22950|0.5\n22951|0.75\n22952|0.38889\n22953|0.33333\n22954|0.5\n22955|0.48611\n22956|0.625\n22957|0.43056\n22958|0.52778\n22959|0.34722\n22960|0.66667\n22961|0.79167\n22962|0.5\n22963|0.5\n22964|0.33333\n22965|0.5\n22966|0.625\n22967|0.59722\n22968|0.75\n22969|0.54167\n22970|0.58333\n22971|0.5\n22972|0.52778\n22973|0.66667\n22974|0.69444\n22975|0.5\n22976|0.70833\n22977|0.71875\n22978|0.70833\n22979|0.72222\n22980|0.29167\n22981|0.27778\n22982|0.81944\n22983|0.19444\n22984|0.83333\n22985|0.38889\n22986|0.55556\n22987|0.5\n22988|0.5\n22989|0.5\n22990|0.61111\n22991|0.76389\n22992|0.90278\n22993|0.94444\n22994|0.5\n22995|0.55556\n22996|0.55556\n22997|0.55556\n22998|0.5\n22999|0.83333\n23000|0.83333\n23001|0.56944\n23002|0.625\n23003|0.55556\n23004|0.25\n23005|0.18056\n23006|0.38889\n23007|0.5\n23008|0.5\n23009|0.66667\n23010|0.55556\n23011|0.54167\n23012|0.51389\n23013|0.5\n23014|0.80556\n23015|0.44444\n23016|0.27778\n23017|0.33333\n23018|0.29167\n23019|0.72222\n23020|0.83333\n23021|0.45833\n23022|0.33333\n23023|0.33333\n23024|0.55556\n23025|0.76389\n23026|0.91667\n23027|0.83333\n23028|0.88889\n23029|0.5\n23030|0.51389\n23031|0.77778\n23032|0.54167\n23033|0.5\n23034|0.52778\n23035|0.77778\n23036|0.55556\n23037|0.5\n23038|0.55556\n23039|0.72222\n23040|0.79167\n23041|0.20833\n23042|0.68056\n23043|0.41667\n23044|0.72222\n23045|0.76389\n23046|0.68056\n23047|0.44444\n23048|0.29167\n23049|0.94444\n23050|1\n23051|0.69444\n23052|0.80556\n23053|0.65278\n23054|0.68056\n23055|0.38889\n23056|0.45833\n23057|0.86111\n23058|0.82292\n23059|0.84722\n23060|0.65278\n23061|0.69444\n23062|0.69444\n23063|0.77778\n23064|0.67708\n23065|0.63889\n23066|0.75\n23067|0.79167\n23068|0.75\n23069|0.66667\n23070|0.68056\n23071|0.875\n23072|0.80556\n23073|0.81944\n23074|0.86111\n23075|0.55556\n23076|0.72222\n23077|0.65278\n23078|0.55556\n23079|0.5\n23080|0.43056\n23081|0.77778\n23082|0.91667\n23083|0.79167\n23084|0.83333\n23085|0.88889\n23086|0.88889\n23087|0.98611\n23088|0.66667\n23089|0.63889\n23090|0.77778\n23091|0.75\n23092|0.81944\n23093|0.54167\n23094|0.83333\n23095|0.73611\n23096|0.79167\n23097|0.68056\n23098|0.73611\n23099|0.81944\n23100|0.59722\n23101|0.63889\n23102|0.36111\n23103|0.58333\n23104|0.5\n23105|0.5\n23106|0.77778\n23107|0.90278\n23108|0.5\n23109|0.83333\n23110|0.79167\n23111|0.83333\n23112|0.94444\n23113|0.47222\n23114|0.88889\n23115|0.875\n23116|0.55556\n23117|0.5\n23118|0.88889\n23119|0.54167\n23120|0.44444\n23121|0.61111\n23122|0.625\n23123|0.58333\n23124|0.79167\n23125|0.5\n23126|0.73611\n23127|0.69444\n23128|0.68056\n23129|0.58333\n23130|0.31944\n23131|0.77778\n23132|0.73611\n23133|0.5\n23134|0.81944\n23135|0.5\n23136|0.5\n23137|0.69444\n23138|0.5\n23139|0.47222\n23140|0.33333\n23141|0.375\n23142|0.875\n23143|0.86111\n23144|0.75\n23145|0.34722\n23146|0.61111\n23147|0.59722\n23148|0.66667\n23149|0.79167\n23150|0.36111\n23151|0.33333\n23152|0.61111\n23153|0.88889\n23154|0.75\n23155|0.5\n23156|0.875\n23157|0.90278\n23158|0.38889\n23159|0.45833\n23160|0.73611\n23161|0.59722\n23162|0.56944\n23163|0.56944\n23164|0.73611\n23165|0.59722\n23166|0.77778\n23167|0.70833\n23168|0.48611\n23169|0.54167\n23170|0.76389\n23171|0.81944\n23172|0.52778\n23173|0.38889\n23174|0.73611\n23175|0.73958\n23176|0.88889\n23177|0.66667\n23178|0.69444\n23179|0.58333\n23180|0.5\n23181|0.31944\n23182|0.5\n23183|0.80556\n23184|0.66667\n23185|0.5\n23186|0.33333\n23187|0.77778\n23188|0.65278\n23189|0.59722\n23190|0.43056\n23191|0.69444\n23192|0.76389\n23193|0.70833\n23194|0.66667\n23195|0.70833\n23196|0.33333\n23197|0.125\n23198|0.43056\n23199|0.66667\n23200|0.48611\n23201|0.48611\n23202|0.5\n23203|0.94444\n23204|0.55556\n23205|0.66667\n23206|0.75\n23207|0.47222\n23208|0.625\n23209|0.81944\n23210|0.5\n23211|0.88889\n23212|0.5\n23213|0.80556\n23214|0.69444\n23215|0.66667\n23216|0.91667\n23217|0.5\n23218|0.45833\n23219|0.68056\n23220|0.79167\n23221|0.65278\n23222|0.5\n23223|0.88889\n23224|0.5\n23225|0.625\n23226|0.5\n23227|0.73611\n23228|0.5\n23229|0.47222\n23230|0.40278\n23231|0.5\n23232|0.5\n23233|0.70833\n23234|0.81944\n23235|0.5\n23236|0.51389\n23237|0.77778\n23238|0.38889\n23239|0.75\n23240|0.34722\n23241|0.875\n23242|0.5\n23243|0.5\n23244|0.65278\n23245|0.5\n23246|0.75\n23247|0.63889\n23248|0.72222\n23249|0.5\n23250|0.625\n23251|0.5\n23252|0.63889\n23253|0.55556\n23254|0.5\n23255|0.5\n23256|0.5\n23257|0.5\n23258|0.52778\n23259|0.5\n23260|0.75\n23261|0.44444\n23262|0.43056\n23263|0.5\n23264|0.55556\n23265|0.80556\n23266|0.86111\n23267|0.5\n23268|0.45833\n23269|0.38889\n23270|0.19444\n23271|0.83333\n23272|0.88889\n23273|0.5\n23274|0.5\n23275|0.625\n23276|0.80556\n23277|0.72222\n23278|0.59722\n23279|0.30556\n23280|0.45833\n23281|0.66667\n23282|0.76389\n23283|0.5\n23284|0.5\n23285|0.40278\n23286|0.65278\n23287|0.5\n23288|0.72222\n23289|0.66667\n23290|0.77778\n23291|0.80556\n23292|0.75\n23293|0.63889\n23294|0.84722\n23295|0.76389\n23296|0.72222\n23297|0.75\n23298|0.51389\n23299|0.5\n23300|0.44444\n23301|0.83333\n23302|0.75\n23303|0.94444\n23304|0.69444\n23305|0.375\n23306|0.86111\n23307|0.5\n23308|0.36111\n23309|0.63889\n23310|0.59722\n23311|0.33333\n23312|0.66667\n23313|0.94444\n23314|0.83333\n23315|0.65278\n23316|0.88889\n23317|0.65278\n23318|0.69792\n23319|0.72222\n23320|0.70833\n23321|0.77778\n23322|0.81944\n23323|0.72222\n23324|0.70833\n23325|0.43056\n23326|0.90278\n23327|0.80556\n23328|0.80556\n23329|0.73611\n23330|0.79167\n23331|0.625\n23332|0.91667\n23333|0.60417\n23334|0.77778\n23335|0.94444\n23336|0.72222\n23337|0.80556\n23338|0.5\n23339|0.68056\n23340|0.625\n23341|0.86111\n23342|0.63889\n23343|0.68056\n23344|0.84722\n23345|0.65278\n23346|0.5\n23347|0.90278\n23348|0.73611\n23349|0.84722\n23350|0.5\n23351|0.38889\n23352|0.65278\n23353|0.90278\n23354|0.69444\n23355|0.76389\n23356|0.57292\n23357|0.75\n23358|0.875\n23359|0.68056\n23360|0.33333\n23361|0.76389\n23362|0.40278\n23363|0.56944\n23364|0.66667\n23365|0.56944\n23366|0.625\n23367|0.59722\n23368|0.77778\n23369|0.86111\n23370|0.70833\n23371|0.80556\n23372|0.73611\n23373|0.73611\n23374|0.70833\n23375|0.73611\n23376|0.88889\n23377|0.58333\n23378|0.83333\n23379|0.5\n23380|0.52778\n23381|0.51389\n23382|0.52778\n23383|0.63889\n23384|0.77778\n23385|0.34722\n23386|0.5\n23387|0.5\n23388|0.58333\n23389|0.86111\n23390|0.66667\n23391|0.65278\n23392|0.69444\n23393|0.34722\n23394|0.5\n23395|0.66667\n23396|0.69444\n23397|0.73611\n23398|0.80556\n23399|0.61111\n23400|0.84722\n23401|0.77778\n23402|0.55556\n23403|0.77778\n23404|0.5\n23405|0.27778\n23406|0.56944\n23407|0.84722\n23408|0.5\n23409|0.63889\n23410|0.38889\n23411|0.72222\n23412|0.5\n23413|0.77778\n23414|0.69444\n23415|0.875\n23416|0.52778\n23417|0.86111\n23418|0.61111\n23419|0.55556\n23420|0.5\n23421|0.51389\n23422|0.65278\n23423|0.55556\n23424|0.36111\n23425|0.68056\n23426|0.47222\n23427|0.5\n23428|0.76389\n23429|0.41667\n23430|0.625\n23431|0.73611\n23432|0.66667\n23433|0.79167\n23434|0.875\n23435|0.79167\n23436|0.73611\n23437|0.69444\n23438|0.79167\n23439|0.79167\n23440|0.66667\n23441|0.59722\n23442|0.33333\n23443|0.72222\n23444|0.5\n23445|0.68056\n23446|0.83333\n23447|0.65278\n23448|0.70833\n23449|0.54167\n23450|0.77778\n23451|0.91667\n23452|0.55208\n23453|0.54167\n23454|0.5\n23455|0.61111\n23456|0.83333\n23457|0.56944\n23458|0.5\n23459|0.43056\n23460|0.5\n23461|0.52778\n23462|0.91667\n23463|0.625\n23464|0.58333\n23465|0.55556\n23466|0.5\n23467|0.29167\n23468|0.52778\n23469|0.59722\n23470|0.38889\n23471|0.75\n23472|0.54167\n23473|0.38889\n23474|0.63889\n23475|0.72222\n23476|0.77778\n23477|0.63889\n23478|0.77778\n23479|0.83333\n23480|0.75\n23481|0.84722\n23482|0.75\n23483|0.63889\n23484|0.48611\n23485|0.54167\n23486|0.79167\n23487|0.70833\n23488|0.5\n23489|0.77778\n23490|0.52778\n23491|0.69444\n23492|0.56944\n23493|0.27778\n23494|0.77778\n23495|1\n23496|0.84722\n23497|0.81944\n23498|0.93056\n23499|0.76389\n23500|0.61111\n23501|0.73611\n23502|0.36458\n23503|0.31944\n23504|0.77778\n23505|0.66667\n23506|0.76389\n23507|0.59722\n23508|0.34722\n23509|0.70833\n23510|0.33333\n23511|0.66667\n23512|0.75\n23513|0.51389\n23514|0.61111\n23515|0.43056\n23516|0.69444\n23517|0.54167\n23518|0.56944\n23519|0.86111\n23520|0.5\n23521|0.76389\n23522|0.33333\n23523|0.52778\n23524|0.93056\n23525|0.40278\n23526|0.61111\n23527|0.80556\n23528|0.79167\n23529|0.65278\n23530|0.69444\n23531|0.80556\n23532|0.72222\n23533|0.61111\n23534|0.65278\n23535|0.66667\n23536|0.79167\n23537|0.55556\n23538|0.54167\n23539|0.63889\n23540|0.56944\n23541|0.86111\n23542|0.75\n23543|0.5\n23544|0.83333\n23545|0.61111\n23546|0.55556\n23547|0.53125\n23548|0.75\n23549|0.55556\n23550|0.80556\n23551|0.5\n23552|0.73611\n23553|0.43056\n23554|0.41667\n23555|0.84722\n23556|0.47222\n23557|0.54167\n23558|0.73611\n23559|0.63889\n23560|0.38889\n23561|0.72222\n23562|0.56944\n23563|0.72222\n23564|0.59722\n23565|0.40278\n23566|0.88889\n23567|0.77778\n23568|0.56944\n23569|0.63889\n23570|0.625\n23571|0.65278\n23572|0.77778\n23573|0.52778\n23574|0.84722\n23575|0.68056\n23576|0.51389\n23577|0.40278\n23578|0.43056\n23579|0.84722\n23580|0.61111\n23581|0.90278\n23582|0.91667\n23583|0.47222\n23584|0.61111\n23585|0.66667\n23586|0.52778\n23587|0.625\n23588|0.77778\n23589|0.97222\n23590|0.72917\n23591|0.5\n23592|0.79167\n23593|0.5\n23594|0.59722\n23595|0.66667\n23596|0.55556\n23597|0.68056\n23598|0.76389\n23599|0.69444\n23600|0.55556\n23601|0.83333\n23602|0.5\n23603|0.38889\n23604|0.5\n23605|0.55556\n23606|0.5\n23607|0.5\n23608|0.45833\n23609|0.5\n23610|0.45833\n23611|0.48611\n23612|0.75\n23613|0.72222\n23614|0.84722\n23615|0.55556\n23616|0.75\n23617|0.80556\n23618|0.66667\n23619|0.68056\n23620|0.51389\n23621|0.38889\n23622|0.55556\n23623|0.83333\n23624|0.61111\n23625|0.70833\n23626|0.55556\n23627|0.54167\n23628|0.59722\n23629|0.61111\n23630|0.38889\n23631|0.54167\n23632|0.80556\n23633|0.79167\n23634|0.63889\n23635|1\n23636|0.80556\n23637|0.86111\n23638|0.83333\n23639|0.48611\n23640|0.88889\n23641|0.65278\n23642|0.83333\n23643|0.43056\n23644|0.58333\n23645|0.66667\n23646|0.86111\n23647|0.81944\n23648|0.94444\n23649|0.91667\n23650|0.83333\n23651|0.47222\n23652|0.5\n23653|0.55556\n23654|0.84722\n23655|0.48611\n23656|0.56944\n23657|0.5\n23658|0.66667\n23659|0.72222\n23660|0.88889\n23661|0.88889\n23662|0.86111\n23663|0.375\n23664|0.65278\n23665|0.59722\n23666|0.5\n23667|0.5\n23668|0.83333\n23669|0.84722\n23670|0.5\n23671|0.44444\n23672|0.31944\n23673|0.41667\n23674|0.61111\n23675|0.5\n23676|0.45833\n23677|0.30556\n23678|0.25\n23679|0.58333\n23680|0.81944\n23681|0.30556\n23682|0.55556\n23683|0.79167\n23684|0.83333\n23685|0.75\n23686|0.5\n23687|0.77778\n23688|0.61111\n23689|0.72222\n23690|0.5\n23691|0.93056\n23692|0.68056\n23693|0.75\n23694|0.55556\n23695|0.68056\n23696|0.81944\n23697|0.93056\n23698|0.61111\n23699|0.61111\n23700|0.77778\n23701|0.69444\n23702|0.5\n23703|0.75\n23704|0.83333\n23705|0.79167\n23706|0.88889\n23707|0.61111\n23708|0.58333\n23709|0.44444\n23710|0.95833\n23711|0.83333\n23712|0.72222\n23713|0.68056\n23714|0.86111\n23715|0.59722\n23716|0.55556\n23717|0.27778\n23718|0.54167\n23719|0.81944\n23720|0.70833\n23721|0.61111\n23722|0.66667\n23723|0.51389\n23724|0.5\n23725|0.79167\n23726|0.81944\n23727|0.76389\n23728|0.81944\n23729|0.73611\n23730|0.73611\n23731|0.76389\n23732|0.77778\n23733|0.65278\n23734|0.375\n23735|0.47917\n23736|0.63889\n23737|0.55556\n23738|0.59722\n23739|0.5\n23740|0.45833\n23741|0.47222\n23742|0.72222\n23743|0.65278\n23744|0.88889\n23745|0.875\n23746|0.70833\n23747|0.36111\n23748|0.48611\n23749|0.51389\n23750|0.75\n23751|0.81944\n23752|0.625\n23753|0.41667\n23754|0.52778\n23755|0.51389\n23756|0.56944\n23757|0.77778\n23758|0.5\n23759|0.90278\n23760|0.66667\n23761|0.5\n23762|0.88889\n23763|0.65278\n23764|0.80556\n23765|0.86111\n23766|0.58333\n23767|0.61111\n23768|0.66667\n23769|0.26389\n23770|0.55556\n23771|0.79167\n23772|0.91667\n23773|0.44444\n23774|0.68056\n23775|0.72222\n23776|0.80556\n23777|0.875\n23778|0.5\n23779|0.5\n23780|0.86458\n23781|0.625\n23782|0.88889\n23783|0.77778\n23784|0.55556\n23785|0.66667\n23786|0.61111\n23787|0.65278\n23788|0.83333\n23789|0.5\n23790|0.5\n23791|0.63889\n23792|0.76389\n23793|0.66667\n23794|0.5\n23795|0.41667\n23796|0.72222\n23797|0.77778\n23798|0.68056\n23799|0.5\n23800|0.44444\n23801|0.73611\n23802|0.55556\n23803|0.79167\n23804|0.33333\n23805|0.75\n23806|0.41667\n23807|0.5\n23808|0.68056\n23809|0.40278\n23810|0.5\n23811|0.77778\n23812|0.68056\n23813|0.41667\n23814|0.20833\n23815|0.5\n23816|0.66667\n23817|0.625\n23818|0.55556\n23819|0.81944\n23820|0.36111\n23821|0.77778\n23822|0.83333\n23823|0.5\n23824|0.48611\n23825|0.63889\n23826|0.66667\n23827|0.72222\n23828|0.56944\n23829|0.45833\n23830|0.625\n23831|0.5\n23832|0.66667\n23833|0.72222\n23834|0.61111\n23835|0.5\n23836|0.76389\n23837|0.52778\n23838|0.61111\n23839|0.90278\n23840|0.34722\n23841|0.23611\n23842|0.90278\n23843|0.63889\n23844|0.51389\n23845|0.5\n23846|0.59722\n23847|0.55556\n23848|0.55208\n23849|0.69444\n23850|0.45833\n23851|0.69444\n23852|0.59722\n23853|0.33333\n23854|0.83333\n23855|0.34722\n23856|0.55556\n23857|0.51389\n23858|0.75\n23859|0.51389\n23860|0.79167\n23861|0.5\n23862|0.61111\n23863|0.48611\n23864|0.38889\n23865|0.54167\n23866|0.80556\n23867|0.86111\n23868|0.84722\n23869|0.61111\n23870|0.83333\n23871|0.72222\n23872|0.73611\n23873|0.51389\n23874|0.5\n23875|0.5\n23876|0.44444\n23877|0.625\n23878|0.80556\n23879|0.69444\n23880|0.69444\n23881|0.72222\n23882|0.54167\n23883|0.52778\n23884|0.86111\n23885|0.72222\n23886|0.76389\n23887|0.44444\n23888|0.68056\n23889|0.5\n23890|0.61111\n23891|0.41667\n23892|0.55556\n23893|0.79167\n23894|0.88889\n23895|0.76389\n23896|0.375\n23897|0.80556\n23898|0.61111\n23899|0.91667\n23900|0.5\n23901|0.68056\n23902|0.86111\n23903|0.83333\n23904|0.77778\n23905|0.90278\n23906|0.77778\n23907|0.91667\n23908|0.93056\n23909|0.5\n23910|0.79167\n23911|0.55556\n23912|0.54167\n23913|0.68056\n23914|0.47222\n23915|0.5\n23916|0.83333\n23917|0.5\n23918|0.54167\n23919|0.5\n23920|0.72222\n23921|0.29167\n23922|0.86111\n23923|0.77778\n23924|0.29167\n23925|0.75\n23926|0.22222\n23927|0.81944\n23928|0.77778\n23929|0.41667\n23930|0.59722\n23931|0.83333\n23932|0.75\n23933|0.22222\n23934|0.375\n23935|0.66667\n23936|0.83333\n23937|0.80556\n23938|0.34722\n23939|0.61111\n23940|0.70833\n23941|0.76389\n23942|0.375\n23943|0.80556\n23944|0.36111\n23945|0.44444\n23946|0.5\n23947|0.375\n23948|0.43056\n23949|0.15278\n23950|0.34722\n23951|0.875\n23952|0.51389\n23953|0.5\n23954|0.83333\n23955|0.79167\n23956|0.33333\n23957|0.625\n23958|0.45833\n23959|0.69444\n23960|0.80556\n23961|0.25\n23962|0.51389\n23963|0.61111\n23964|0.77778\n23965|0.63889\n23966|0.80556\n23967|0.73958\n23968|0.76389\n23969|0.5\n23970|0.66667\n23971|0.58333\n23972|0.52778\n23973|0.66667\n23974|0.52778\n23975|0.5\n23976|0.65278\n23977|0.76389\n23978|0.90278\n23979|0.84722\n23980|0.70833\n23981|0.81944\n23982|0.83333\n23983|0.59722\n23984|0.33333\n23985|0.75\n23986|0.70833\n23987|0.79167\n23988|0.875\n23989|0.47222\n23990|0.77778\n23991|0.80556\n23992|0.47222\n23993|0.68056\n23994|0.63889\n23995|0.55556\n23996|0.40278\n23997|0.5\n23998|0.86111\n23999|0.41667\n24000|0.36111\n24001|0.83333\n24002|0.27778\n24003|0.63889\n24004|0.47222\n24005|0.43056\n24006|0.77778\n24007|0.81944\n24008|0.69444\n24009|0.45833\n24010|0.5\n24011|0.56944\n24012|0.19444\n24013|0.93056\n24014|0.51389\n24015|0.55556\n24016|0.47222\n24017|0.79167\n24018|0.72222\n24019|0.34722\n24020|0.55556\n24021|0.72222\n24022|0.55556\n24023|0.75\n24024|0.83333\n24025|0.70833\n24026|0.625\n24027|0.91667\n24028|0.47222\n24029|0.58333\n24030|0.58333\n24031|0.66667\n24032|0.68056\n24033|0.31944\n24034|0.68056\n24035|0.54167\n24036|0.5\n24037|0.84722\n24038|0.43056\n24039|0.58333\n24040|0.43056\n24041|0.5\n24042|0.58333\n24043|0.44444\n24044|0.36111\n24045|0.88889\n24046|0.38889\n24047|0.83333\n24048|0.72222\n24049|0.55556\n24050|0.5\n24051|0.70833\n24052|0.72222\n24053|0.77778\n24054|0.56944\n24055|0.63889\n24056|0.55556\n24057|0.77778\n24058|0.43056\n24059|0.375\n24060|0.63889\n24061|0.69444\n24062|0.63889\n24063|0.5\n24064|0.61111\n24065|0.55556\n24066|0.875\n24067|0.56944\n24068|0.56944\n24069|0.68056\n24070|0.625\n24071|0.77778\n24072|0.41667\n24073|0.33333\n24074|0.70833\n24075|0.54167\n24076|0.5\n24077|0.65278\n24078|0.94444\n24079|0.80556\n24080|0.79167\n24081|0.38889\n24082|0.77778\n24083|0.5\n24084|0.73611\n24085|0.5\n24086|0.84722\n24087|0.5\n24088|0.83333\n24089|0.38889\n24090|0.65278\n24091|0.5\n24092|0.83333\n24093|0.5\n24094|0.73958\n24095|0.5\n24096|0.5\n24097|0.5\n24098|0.5\n24099|0.91667\n24100|0.33333\n24101|0.5\n24102|0.5\n24103|0.5\n24104|0.5\n24105|0.55556\n24106|0.76389\n24107|0.72222\n24108|0.5\n24109|0.5\n24110|0.5\n24111|0.33333\n24112|0.63889\n24113|0.76389\n24114|0.91667\n24115|0.59722\n24116|0.16667\n24117|0.16667\n24118|0.56944\n24119|0.125\n24120|0.56944\n24121|0.65278\n24122|0.48611\n24123|0.45833\n24124|0.68056\n24125|0.84722\n24126|0.19444\n24127|0.56944\n24128|0.95833\n24129|0.72222\n24130|0.76389\n24131|0.33333\n24132|0.43056\n24133|0.63889\n24134|0.40278\n24135|0.81944\n24136|0.625\n24137|0.5\n24138|0.34722\n24139|0.77778\n24140|0.79167\n24141|0.43056\n24142|0.84722\n24143|0.47222\n24144|0.5\n24145|0.63889\n24146|0.75\n24147|0.58333\n24148|0.75\n24149|0.79167\n24150|0.76389\n24151|0.73611\n24152|0.81944\n24153|0.84722\n24154|0.75\n24155|0.59722\n24156|0.68056\n24157|0.94444\n24158|0.97222\n24159|0.55556\n24160|0.52778\n24161|0.5\n24162|0.83333\n24163|0.68056\n24164|0.84722\n24165|0.61111\n24166|0.77778\n24167|0.52778\n24168|0.45833\n24169|0.63889\n24170|0.5\n24171|0.51389\n24172|0.83333\n24173|0.875\n24174|0.5\n24175|0.5\n24176|0.55556\n24177|0.48611\n24178|0.5\n24179|0.72222\n24180|0.55556\n24181|0.5\n24182|0.5\n24183|0.58333\n24184|0.48611\n24185|0.5\n24186|0.63889\n24187|0.5\n24188|0.5\n24189|0.48611\n24190|0.43056\n24191|0.48611\n24192|0.5\n24193|0.38889\n24194|0.5\n24195|0.5\n24196|0.72222\n24197|0.5\n24198|0.5\n24199|0.5\n24200|0.5\n24201|0.5\n24202|0.5\n24203|0.48611\n24204|0.5\n24205|0.5\n24206|0.5\n24207|0.5\n24208|0.5\n24209|0.51389\n24210|0.5\n24211|0.58333\n24212|0.55556\n24213|0.75\n24214|0.43056\n24215|0.52778\n24216|0.5\n24217|0.5\n24218|0.56944\n24219|0.55556\n24220|0.5\n24221|0.5\n24222|0.5\n24223|0.5\n24224|0.55556\n24225|0.45833\n24226|0.625\n24227|0.5\n24228|0.5\n24229|0.55556\n24230|0.5\n24231|0.54167\n24232|0.88889\n24233|0.5\n24234|0.45833\n24235|0.75\n24236|0.5\n24237|0.5\n24238|0.72222\n24239|0.34722\n24240|0.79167\n24241|0.83333\n24242|0.63889\n24243|0.75\n24244|0.5\n24245|0.58333\n24246|0.875\n24247|0.79167\n24248|0.51389\n24249|0.88889\n24250|0.16667\n24251|0.31944\n24252|0.48611\n24253|0.77778\n24254|0.56944\n24255|0.375\n24256|0.5\n24257|0.45833\n24258|0.5\n24259|0.45833\n24260|0.77778\n24261|0.77778\n24262|0.875\n24263|0.65278\n24264|0.80556\n24265|0.91667\n24266|0.84722\n24267|0.90278\n24268|0.91667\n24269|0.91667\n24270|0.88889\n24271|0.875\n24272|0.77778\n24273|0.69444\n24274|0.80556\n24275|0.88889\n24276|0.5\n24277|0.76389\n24278|0.94444\n24279|0.80556\n24280|0.83333\n24281|0.61111\n24282|0.55556\n24283|0.70833\n24284|0.77778\n24285|0.875\n24286|0.81944\n24287|0.84722\n24288|0.76389\n24289|0.61111\n24290|0.68056\n24291|0.73611\n24292|0.79167\n24293|0.84722\n24294|0.80556\n24295|0.83333\n24296|0.77778\n24297|0.875\n24298|0.84722\n24299|0.77778\n24300|0.40278\n24301|0.625\n24302|0.55556\n24303|0.45833\n24304|0.86111\n24305|0.88889\n24306|0.88889\n24307|0.69444\n24308|0.86111\n24309|0.70833\n24310|0.75\n24311|0.79167\n24312|0.83333\n24313|0.76389\n24314|0.875\n24315|0.88889\n24316|0.77778\n24317|0.72917\n24318|0.875\n24319|0.73611\n24320|0.72222\n24321|0.625\n24322|0.56944\n24323|0.27778\n24324|0.41667\n24325|0.43056\n24326|0.69444\n24327|0.77778\n24328|0.90278\n24329|0.375\n24330|0.66667\n24331|0.73611\n24332|0.70833\n24333|0.61458\n24334|0.5\n24335|0.93056\n24336|0.88889\n24337|0.88889\n24338|0.86111\n24339|0.88889\n24340|0.98611\n24341|0.65625\n24342|0.70833\n24343|0.88889\n24344|0.70833\n24345|0.76389\n24346|0.59722\n24347|0.73611\n24348|0.83333\n24349|0.69444\n24350|0.56944\n24351|0.77778\n24352|0.76389\n24353|0.80556\n24354|0.83333\n24355|0.84722\n24356|0.83333\n24357|0.75\n24358|0.77778\n24359|0.55556\n24360|0.61111\n24361|0.80556\n24362|0.81944\n24363|0.70833\n24364|0.875\n24365|0.73611\n24366|0.72222\n24367|0.83333\n24368|0.84722\n24369|0.83333\n24370|0.625\n24371|0.88889\n24372|0.86111\n24373|0.73611\n24374|0.77778\n24375|0.93056\n24376|0.83333\n24377|0.875\n24378|0.80556\n24379|0.5\n24380|0.83333\n24381|0.83333\n24382|0.83333\n24383|0.94444\n24384|0.44444\n24385|0.41667\n24386|0.76389\n24387|0.69444\n24388|0.68056\n24389|0.73611\n24390|0.55556\n24391|0.79167\n24392|0.5\n24393|0.72222\n24394|0.59722\n24395|0.75\n24396|0.81944\n24397|1\n24398|0.88889\n24399|0.45833\n24400|0.77778\n24401|0.65278\n24402|0.63889\n24403|0.72222\n24404|0.75\n24405|0.70833\n24406|0.65278\n24407|0.77778\n24408|0.73611\n24409|0.70833\n24410|0.65278\n24411|0.69444\n24412|0.95833\n24413|0.66667\n24414|0.70833\n24415|0.43056\n24416|0.58333\n24417|0.65278\n24418|0.77778\n24419|0.625\n24420|0.72222\n24421|0.875\n24422|0.83333\n24423|0.94444\n24424|0.79167\n24425|0.83333\n24426|0.93056\n24427|0.63889\n24428|0.65278\n24429|0.79167\n24430|0.75\n24431|0.66667\n24432|0.875\n24433|0.66667\n24434|0.69792\n24435|0.69444\n24436|0.84722\n24437|0.72222\n24438|0.76389\n24439|0.77778\n24440|0.88889\n24441|0.88889\n24442|0.94444\n24443|0.80556\n24444|0.61111\n24445|0.79167\n24446|0.93056\n24447|0.76389\n24448|0.875\n24449|0.58333\n24450|0.79167\n24451|0.72222\n24452|0.72222\n24453|0.83333\n24454|0.83333\n24455|0.94444\n24456|0.81944\n24457|0.52778\n24458|0.73611\n24459|0.79167\n24460|0.55556\n24461|0.80556\n24462|0.88889\n24463|0.76389\n24464|0.61111\n24465|0.55556\n24466|0.91667\n24467|0.79167\n24468|0.81944\n24469|0.83333\n24470|0.75\n24471|0.86111\n24472|0.69444\n24473|0.5\n24474|0.66667\n24475|0.625\n24476|0.875\n24477|0.81944\n24478|0.44444\n24479|0.875\n24480|1\n24481|0.69444\n24482|0.70833\n24483|0.76389\n24484|0.59722\n24485|0.65278\n24486|0.76389\n24487|0.77778\n24488|0.5\n24489|0.88889\n24490|0.66667\n24491|0.68056\n24492|0.70833\n24493|0.56944\n24494|0.79167\n24495|0.98611\n24496|0.77778\n24497|0.94444\n24498|0.875\n24499|0.72222\n24500|0.69444\n24501|0.86111\n24502|0.88889\n24503|0.81944\n24504|0.70833\n24505|0.83333\n24506|0.875\n24507|0.84722\n24508|0.5\n24509|0.88889\n24510|0.80208\n24511|0.79167\n24512|0.72222\n24513|0.625\n24514|0.625\n24515|0.80556\n24516|0.70833\n24517|0.83333\n24518|0.76389\n24519|0.77778\n24520|0.58333\n24521|0.76389\n24522|0.68056\n24523|0.5\n24524|0.54167\n24525|0.5\n24526|0.84722\n24527|0.86111\n24528|0.5\n24529|0.5\n24530|0.5\n24531|0.5\n24532|0.70833\n24533|0.5\n24534|0.59722\n24535|0.69444\n24536|0.5\n24537|0.5\n24538|0.81944\n24539|0.83333\n24540|0.65278\n24541|0.5\n24542|0.5\n24543|0.66667\n24544|0.44444\n24545|0.5\n24546|0.77778\n24547|0.5\n24548|0.48611\n24549|0.69444\n24550|0.44444\n24551|0.59722\n24552|0.75\n24553|0.5\n24554|0.51389\n24555|0.75\n24556|0.5\n24557|0.66667\n24558|0.5\n24559|0.5\n24560|0.5\n24561|0.45833\n24562|0.68056\n24563|0.83333\n24564|0.5\n24565|0.54167\n24566|0.51389\n24567|0.41667\n24568|0.5\n24569|0.5\n24570|0.5\n24571|0.5\n24572|0.5\n24573|0.83333\n24574|0.38889\n24575|0.68056\n24576|0.63889\n24577|0.77778\n24578|0.43056\n24579|0.63889\n24580|0.55556\n24581|0.77778\n24582|0.38889\n24583|0.55556\n24584|0.38889\n24585|0.66667\n24586|0.52778\n24587|0.83333\n24588|0.56944\n24589|0.84722\n24590|0.5\n24591|0.5\n24592|0.22222\n24593|0.5\n24594|0.5\n24595|0.5\n24596|0.5\n24597|0.61111\n24598|0.54167\n24599|0.58333\n24600|0.55556\n24601|0.5\n24602|0.61111\n24603|0.61111\n24604|0.56944\n24605|0.65278\n24606|0.94444\n24607|0.90278\n24608|0.88889\n24609|0.38889\n24610|0.88889\n24611|0.81944\n24612|0.97222\n24613|0.84722\n24614|0.88889\n24615|0.83333\n24616|0.98611\n24617|0.80556\n24618|0.75\n24619|0.77778\n24620|0.63889\n24621|0.83333\n24622|0.875\n24623|0.90278\n24624|0.81944\n24625|0.69444\n24626|0.94444\n24627|0.90278\n24628|0.84722\n24629|0.83333\n24630|0.79167\n24631|0.81944\n24632|0.58333\n24633|0.34722\n24634|0.76389\n24635|0.75\n24636|0.69444\n24637|0.94444\n24638|0.76389\n24639|0.13889\n24640|0.41667\n24641|0.66667\n24642|0.79167\n24643|0.65278\n24644|0.80556\n24645|0.875\n24646|0.91667\n24647|0.83333\n24648|0.83333\n24649|0.72222\n24650|0.65278\n24651|0.77778\n24652|0.83333\n24653|0.75\n24654|0.77778\n24655|0.90278\n24656|0.73611\n24657|0.73611\n24658|0.34722\n24659|0.68056\n24660|0.55556\n24661|0.875\n24662|0.72222\n24663|0.83333\n24664|0.68056\n24665|0.70833\n24666|0.80556\n24667|0.77778\n24668|0.58333\n24669|0.61111\n24670|0.61111\n24671|0.80556\n24672|0.76389\n24673|0.69444\n24674|0.73611\n24675|0.45833\n24676|0.77778\n24677|0.58333\n24678|0.5\n24679|0.70833\n24680|0\n24681|0.5\n24682|0.75\n24683|0.63889\n24684|0.5\n24685|0.5\n24686|0.86111\n24687|0.80556\n24688|0.66667\n24689|0.5\n24690|0.5\n24691|0.75\n24692|0.5\n24693|0.5\n24694|0.5\n24695|0.61111\n24696|0.5\n24697|0.5\n24698|0.5\n24699|0.61111\n24700|0.63889\n24701|0.5\n24702|0.5\n24703|0.5\n24704|0.65278\n24705|0.61111\n24706|0.58333\n24707|0.44444\n24708|0.94444\n24709|0.625\n24710|0.81944\n24711|0.55556\n24712|0.76389\n24713|0.57292\n24714|0.65278\n24715|0.26389\n24716|0.5\n24717|0.875\n24718|0.44444\n24719|0.38889\n24720|0.44444\n24721|0.43056\n24722|0.33333\n24723|0.66667\n24724|0.56944\n24725|0.33333\n24726|0.33333\n24727|0.63889\n24728|0.81944\n24729|0.81944\n24730|0.81944\n24731|0.59722\n24732|0.88889\n24733|0.48611\n24734|0.5\n24735|0.97222\n24736|1\n24737|0.48611\n24738|0.5\n24739|0.44444\n24740|0.875\n24741|0.72222\n24742|0.73611\n24743|0.5\n24744|0.23611\n24745|0.75\n24746|0.83333\n24747|0.65278\n24748|0.5\n24749|0.5\n24750|0.5\n24751|0.65278\n24752|0.5\n24753|0.375\n24754|0.5\n24755|0.66667\n24756|0.5\n24757|0.5\n24758|0.5\n24759|0.5\n24760|0.5\n24761|0.625\n24762|0.65278\n24763|0.68056\n24764|0.5\n24765|0.5\n24766|0.63889\n24767|0.63889\n24768|0.55556\n24769|0.30556\n24770|0.58333\n24771|0.59722\n24772|0.83333\n24773|0.5\n24774|0.54167\n24775|0.66667\n24776|0.5\n24777|0.45833\n24778|0.66667\n24779|0.54167\n24780|0.5\n24781|0.5\n24782|0.5\n24783|0.44444\n24784|0.27778\n24785|0.59722\n24786|0.5\n24787|0.5\n24788|0.65278\n24789|0.68056\n24790|0.61111\n24791|0.375\n24792|0.5\n24793|0.81944\n24794|0.5\n24795|0.43056\n24796|0.5\n24797|0.51389\n24798|0.51389\n24799|0.5\n24800|0.81944\n24801|0.81944\n24802|0.875\n24803|0.97222\n24804|0.34722\n24805|0.375\n24806|0.55556\n24807|0.75\n24808|0.61111\n24809|0.5\n24810|0.5\n24811|0.56944\n24812|0.5\n24813|0.5\n24814|0.5\n24815|0.66667\n24816|0.5\n24817|0.5\n24818|0.52778\n24819|0.5\n24820|0.65278\n24821|0.5\n24822|0.5\n24823|0.55556\n24824|0.5\n24825|0.58333\n24826|0.86111\n24827|0.5\n24828|0.5\n24829|0.44444\n24830|0.625\n24831|0.84722\n24832|0.5\n24833|0.5\n24834|0.80556\n24835|0.5\n24836|0.5\n24837|0.52778\n24838|0.93056\n24839|0.5\n24840|0.5\n24841|0.36111\n24842|0.54167\n24843|0.44444\n24844|0.79167\n24845|0.5\n24846|0.5\n24847|0.45833\n24848|0.5\n24849|0.5\n24850|0.29167\n24851|0.5\n24852|0.68056\n24853|0.5\n24854|0.58333\n24855|0.5\n24856|0.69444\n24857|0.63889\n24858|0.5\n24859|0.48611\n24860|0.38889\n24861|0.52778\n24862|0.5\n24863|0.5\n24864|0.5\n24865|0.5\n24866|0.5\n24867|0.72222\n24868|0.76389\n24869|0.5\n24870|0.55556\n24871|0.63889\n24872|0.81944\n24873|0.5\n24874|0.5\n24875|0.5\n24876|0.58333\n24877|0.86111\n24878|0.5\n24879|0.5\n24880|0.70833\n24881|0.66667\n24882|0.5\n24883|0.5\n24884|0.56944\n24885|0.61111\n24886|0.55556\n24887|0.56944\n24888|0.79167\n24889|0.5\n24890|0.5\n24891|0.5\n24892|0.5\n24893|0.5\n24894|0.68056\n24895|0.5\n24896|0.5\n24897|0.5\n24898|0.5\n24899|0.5\n24900|0.5\n24901|0.40278\n24902|0.72222\n24903|0.5\n24904|0.5\n24905|0.5\n24906|0.5\n24907|0.5\n24908|0.73611\n24909|0.90278\n24910|0.18056\n24911|0.73611\n24912|0.6875\n24913|0.72222\n24914|0.29167\n24915|0.73611\n24916|0.5\n24917|0.5\n24918|0.77778\n24919|0.56944\n24920|0.44444\n24921|0.16667\n24922|0.55556\n24923|0.5\n24924|0.55556\n24925|0.5\n24926|0.88889\n24927|0.77778\n24928|0.5\n24929|0.68056\n24930|0.52778\n24931|0.5\n24932|0.5\n24933|0.375\n24934|0.83333\n24935|0.5\n24936|0.5\n24937|0.5\n24938|0.5\n24939|0.625\n24940|0.75\n24941|0.63889\n24942|0.5\n24943|0.5\n24944|0.5\n24945|0.5\n24946|0.5\n24947|0.36111\n24948|0.5\n24949|0.44444\n24950|0.625\n24951|0.5\n24952|0.51389\n24953|0.72222\n24954|0.5\n24955|0.875\n24956|0.5\n24957|0.5\n24958|0.5\n24959|0.55556\n24960|0.90278\n24961|0.55556\n24962|0.5\n24963|0.5\n24964|0.5\n24965|0.5\n24966|0.5\n24967|0.59722\n24968|0.66667\n24969|0.80556\n24970|0.625\n24971|0.88889\n24972|0.69444\n24973|0.63889\n24974|0.56944\n24975|0.5\n24976|0.34722\n24977|0.5\n24978|0.5\n24979|0.81944\n24980|0.91667\n24981|0.70833\n24982|0.65278\n24983|0.5\n24984|0.5\n24985|0.5\n24986|0.61111\n24987|0.5\n24988|0.5\n24989|0.45833\n24990|0.56944\n24991|0.5\n24992|0.5\n24993|0.44444\n24994|0.5\n24995|0.5\n24996|0.5\n24997|0.61111\n24998|0.43056\n24999|0.66667\n25000|0.79167\n25001|0.83333\n25002|0.73611\n25003|0.5\n25004|0.5\n25005|0.38889\n25006|0.41667\n25007|0.5\n25008|0.44444\n25009|0.61111\n25010|0.55556\n25011|0.69444\n25012|0.5\n25013|0.58333\n25014|0.5\n25015|0.5\n25016|0.5\n25017|0.5\n25018|0.83333\n25019|0.83333\n25020|0.61111\n25021|0.73611\n25022|0.81944\n25023|0.5\n25024|0.5\n25025|0.66667\n25026|0.51389\n25027|0.5\n25028|0.5\n25029|0.5\n25030|0.5\n25031|0.5\n25032|0.5\n25033|0.66667\n25034|0.375\n25035|0.45833\n25036|1\n25037|0.5\n25038|0.45833\n25039|0.5\n25040|0.5\n25041|0.40278\n25042|0.5\n25043|0.5\n25044|0.5\n25045|0.5\n25046|0.5\n25047|0.44444\n25048|0.73611\n25049|0.63889\n25050|0.83333\n25051|0.90278\n25052|0.5\n25053|0.43056\n25054|0.5\n25055|0.63889\n25056|0.5\n25057|0.5\n25058|0.43056\n25059|0.375\n25060|0.5\n25061|0.5\n25062|0.5\n25063|0.75\n25064|0.5\n25065|0.5\n25066|0.5\n25067|0.5\n25068|0.33333\n25069|0.90278\n25070|0.61458\n25071|0.47222\n25072|0.77778\n25073|0.5\n25074|0.5\n25075|0.5\n25076|0.59722\n25077|0.625\n25078|0.88889\n25079|0.80556\n25080|0.97222\n25081|0.84722\n25082|0.80556\n25083|0.80556\n25084|0.77778\n25085|0.5\n25086|0.94444\n25087|0.16667\n25088|0.66667\n25089|0.5\n25090|0.38889\n25091|0.56944\n25092|0.5\n25093|0.5\n25094|0.5\n25095|0.27083\n25096|0.30556\n25097|0.83333\n25098|0.79167\n25099|0.77778\n25100|0.58333\n25101|0.91667\n25102|0.41667\n25103|0.54167\n25104|0.45833\n25105|0.61111\n25106|0.54167\n25107|0.70833\n25108|0.5\n25109|0.72222\n25110|0.98611\n25111|0.5\n25112|0.5\n25113|0.44444\n25114|0.5\n25115|0.65278\n25116|0.61111\n25117|0.5\n25118|0.5\n25119|0.54167\n25120|0.54167\n25121|0.5\n25122|0.60417\n25123|0.5\n25124|0.90625\n25125|0.5\n25126|0.54167\n25127|0.5\n25128|0.5\n25129|0.76389\n25130|0.5\n25131|0.5\n25132|0.47222\n25133|0.88889\n25134|0.73611\n25135|0.5\n25136|0.58333\n25137|0.23958\n25138|0.69444\n25139|0.875\n25140|0.63889\n25141|0.5\n25142|0.5\n25143|0.66667\n25144|0.27778\n25145|0.83333\n25146|0.5\n25147|0.33333\n25148|0.33333\n25149|0.19444\n25150|0.27778\n25151|0.65278\n25152|0.13889\n25153|0.5\n25154|0.66667\n25155|0.88889\n25156|0.88889\n25157|0.61111\n25158|0.5\n25159|0.5\n25160|0.5\n25161|0.81944\n25162|0.58333\n25163|0.5\n25164|0.5\n25165|0.66667\n25166|0.65278\n25167|0.5\n25168|0.5\n25169|0.5\n25170|0.55556\n25171|0.66667\n25172|0.875\n25173|0.38889\n25174|0.86111\n25175|0.48611\n25176|0.5\n25177|0.61111\n25178|0.61111\n25179|0.83333\n25180|0.65278\n25181|0.5\n25182|1\n25183|0.94444\n25184|0.51389\n25185|0.5\n25186|0.54167\n25187|0.77778\n25188|0.80556\n25189|0.5\n25190|0.77778\n25191|0.80556\n25192|0.5\n25193|0.59722\n25194|0.83333\n25195|0.69444\n25196|0.5\n25197|0.54167\n25198|0.5\n25199|0.5\n25200|0.70833\n25201|0.56944\n25202|0.55208\n25203|0.5\n25204|0.5\n25205|0.5\n25206|0.40278\n25207|0.5\n25208|0.61111\n25209|0.68056\n25210|0.5\n25211|0.5\n25212|0.61111\n25213|0.65278\n25214|0.5\n25215|0.63889\n25216|0.5\n25217|0.5\n25218|0.5\n25219|0.5\n25220|0.5\n25221|0.5\n25222|0.5\n25223|0.72222\n25224|0.38889\n25225|0.59722\n25226|0.70833\n25227|0.61111\n25228|0.55556\n25229|0.98611\n25230|0.86111\n25231|0.68056\n25232|0.5\n25233|0.48611\n25234|0.70833\n25235|0.72222\n25236|0.63889\n25237|0.5\n25238|0.5\n25239|0.80556\n25240|0.5\n25241|0.5\n25242|0.55556\n25243|0.5\n25244|0.66667\n25245|0.5\n25246|0.5\n25247|0.72222\n25248|0.69444\n25249|0.43056\n25250|0.51389\n25251|0.43056\n25252|0.68056\n25253|0.66667\n25254|0.5\n25255|0.55556\n25256|0.5\n25257|0.69444\n25258|0.5\n25259|0.73611\n25260|0.55556\n25261|0.93056\n25262|0.51389\n25263|0.84722\n25264|0.61111\n25265|0.5\n25266|0.55556\n25267|0.27778\n25268|0.65278\n25269|0.875\n25270|0.90278\n25271|0.95833\n25272|0.83333\n25273|0.98611\n25274|0.55556\n25275|0.54167\n25276|0.5\n25277|0.73611\n25278|0.65278\n25279|0.58333\n25280|0.84722\n25281|0.75\n25282|0.65278\n25283|0.79167\n25284|0.66667\n25285|0.73611\n25286|0.75\n25287|0.5\n25288|0.77778\n25289|0.81944\n25290|0.86111\n25291|0.80556\n25292|0.56944\n25293|0.48611\n25294|0.77778\n25295|0.5\n25296|0.58333\n25297|0.45833\n25298|0.5\n25299|0.52778\n25300|0.88889\n25301|0.5\n25302|0.84722\n25303|0.48611\n25304|0.44444\n25305|0.5\n25306|0.5\n25307|0.55556\n25308|0.80556\n25309|0.61111\n25310|0.80556\n25311|0.34722\n25312|0.33333\n25313|0.5\n25314|0.68056\n25315|0.71875\n25316|0.77778\n25317|0.76389\n25318|0.69444\n25319|0.14583\n25320|0.66667\n25321|0.47222\n25322|0.625\n25323|0.66667\n25324|0.29167\n25325|0.73611\n25326|0.44444\n25327|0.76389\n25328|0.70833\n25329|0.875\n25330|0.69444\n25331|0.61111\n25332|0.84722\n25333|0.55556\n25334|0.65278\n25335|0.55556\n25336|0.70833\n25337|0.65278\n25338|0.77778\n25339|0.75\n25340|0.5\n25341|0.84722\n25342|0.93056\n25343|0.73611\n25344|0.34722\n25345|0.5\n25346|0.83333\n25347|0.5\n25348|0.56944\n25349|0.43056\n25350|0.41667\n25351|0.5\n25352|0.5\n25353|0.5\n25354|0.5\n25355|0.66667\n25356|0.63889\n25357|0.27778\n25358|0.5\n25359|0.5\n25360|0.88889\n25361|0.875\n25362|0.97222\n25363|0.5\n25364|0.5\n25365|0.59722\n25366|0.5\n25367|0.5\n25368|0.34722\n25369|0.56944\n25370|0.75\n25371|0.69444\n25372|0.79167\n25373|0.80556\n25374|0.55556\n25375|0.84722\n25376|0.84722\n25377|0.76389\n25378|0.65278\n25379|0.5\n25380|0.76389\n25381|0.79167\n25382|0.81944\n25383|0.70833\n25384|0.76389\n25385|0.5\n25386|0.36111\n25387|0.5\n25388|0.5\n25389|0.5\n25390|0.5\n25391|0.5\n25392|0.5\n25393|0.5\n25394|0.5\n25395|0.77778\n25396|0.52778\n25397|0.88889\n25398|0.86111\n25399|0.5\n25400|0.5\n25401|0.5\n25402|0.58333\n25403|0.5\n25404|0.5\n25405|0.31944\n25406|0.5\n25407|0.22222\n25408|0.61111\n25409|0.5\n25410|0.44444\n25411|0.5\n25412|0.5\n25413|0.80556\n25414|0.91667\n25415|0.61111\n25416|0.5\n25417|0.5\n25418|0.63889\n25419|0.70833\n25420|0.5\n25421|0.65278\n25422|0.55556\n25423|0.40278\n25424|0.59722\n25425|0.61111\n25426|0.5\n25427|0.29167\n25428|0.84722\n25429|0.81944\n25430|0.81944\n25431|0.68056\n25432|0.81944\n25433|0.55556\n25434|0.77778\n25435|0.625\n25436|0.80556\n25437|0.61111\n25438|0.65278\n25439|0.5\n25440|0.5\n25441|0.5\n25442|0.65278\n25443|0.83333\n25444|0.5\n25445|0.55556\n25446|0.5\n25447|0.75\n25448|0.77778\n25449|0.5\n25450|0.5\n25451|0.81944\n25452|0.84722\n25453|0.66667\n25454|0.90278\n25455|0.44444\n25456|0.31944\n25457|0.5\n25458|0.5\n25459|0.76389\n25460|0.81944\n25461|0.58333\n25462|0.5\n25463|0.5\n25464|0.5\n25465|0.5\n25466|0.5\n25467|0.5\n25468|0.41667\n25469|0.44444\n25470|0.47222\n25471|0.44444\n25472|0.5\n25473|0.625\n25474|0.61111\n25475|0.70833\n25476|0.75\n25477|0.5\n25478|0.5\n25479|0.5\n25480|0.54167\n25481|0.22222\n25482|0.73611\n25483|0.70833\n25484|0.5\n25485|0.5\n25486|0.5\n25487|0.77778\n25488|0.70833\n25489|0.75\n25490|0.5\n25491|0.48611\n25492|0.5\n25493|0.33333\n25494|0.51389\n25495|0.5\n25496|0.66667\n25497|0.94444\n25498|0.38889\n25499|0.80556\n25500|0.5\n25501|0.95833\n25502|0.5\n25503|0.63889\n25504|0.5\n25505|0.5\n25506|0.43056\n25507|0.79167\n25508|0.875\n25509|0.44444\n25510|0.69444\n25511|0.63889\n25512|0.81944\n25513|0.80208\n25514|0.66667\n25515|0.5\n25516|0.5\n25517|0.5\n25518|0.20833\n25519|0.38889\n25520|0.81944\n25521|0.55556\n25522|0.58333\n25523|0.5\n25524|0.98611\n25525|0.65278\n25526|0.055556\n25527|0.19444\n25528|0.55556\n25529|0.61111\n25530|0.54167\n25531|0.5\n25532|0.5\n25533|0.65278\n25534|0.625\n25535|0.5\n25536|0.5\n25537|0.5\n25538|0.5\n25539|0.5\n25540|0.5\n25541|0.5\n25542|0.77778\n25543|0.5\n25544|0.45833\n25545|0.15278\n25546|0.625\n25547|0.5\n25548|0.72222\n25549|0.75\n25550|0.80556\n25551|0.88889\n25552|0.70833\n25553|0.66667\n25554|0.5\n25555|0.55556\n25556|0.69444\n25557|0.58333\n25558|0.54167\n25559|0.5\n25560|0.5\n25561|0.61111\n25562|0.44444\n25563|0.58333\n25564|0.5\n25565|0.5\n25566|0.72222\n25567|0.5\n25568|0.375\n25569|0.44444\n25570|0.5\n25571|0.48611\n25572|0.40278\n25573|0.72222\n25574|0.43056\n25575|0.65278\n25576|0.81944\n25577|0.66667\n25578|0.5\n25579|0.5\n25580|0.625\n25581|0.59722\n25582|0.94444\n25583|0.4375\n25584|0.5\n25585|0.52778\n25586|0.44444\n25587|0.5\n25588|0.5\n25589|0.5\n25590|0.5\n25591|0.5\n25592|0.60417\n25593|0.58333\n25594|0.25\n25595|0.5\n25596|0.5\n25597|0.47222\n25598|0.55556\n25599|0.55556\n25600|0.47222\n25601|0.63889\n25602|0.51389\n25603|0.88889\n25604|0.5\n25605|0.5\n25606|0.75\n25607|0.55556\n25608|0.70833\n25609|0.097222\n25610|0.5\n25611|0.23611\n25612|0.5\n25613|0.5\n25614|0.5\n25615|0.59722\n25616|0.59722\n25617|0.58333\n25618|0.91667\n25619|0.23611\n25620|0.81944\n25621|0.84722\n25622|0.94444\n25623|0.86111\n25624|0.43056\n25625|0.44444\n25626|0.52778\n25627|0.72222\n25628|0.75\n25629|0.5\n25630|0.56944\n25631|0.5\n25632|0.77778\n25633|0.76389\n25634|0.84722\n25635|0.5\n25636|0.38889\n25637|0.52778\n25638|0.5\n25639|0.5\n25640|0.5\n25641|0.5\n25642|0.55556\n25643|0.81944\n25644|0.48611\n25645|0.54167\n25646|0.58333\n25647|0.68056\n25648|0.58333\n25649|0.18056\n25650|0.38889\n25651|0.625\n25652|0.86111\n25653|0.375\n25654|0.44444\n25655|0.72917\n25656|0.5\n25657|0.61111\n25658|0.5\n25659|0.55556\n25660|0.68056\n25661|0.33333\n25662|0.29167\n25663|0.70833\n25664|0.66667\n25665|0.84722\n25666|0.41667\n25667|0.75\n25668|0.5\n25669|0.5\n25670|0.80556\n25671|0.69444\n25672|0.83333\n25673|0.88542\n25674|0.61111\n25675|0.65278\n25676|0.5\n25677|0.80556\n25678|0.55556\n25679|0.875\n25680|0.26389\n25681|0.55556\n25682|0.65278\n25683|0.5\n25684|0.47222\n25685|0.72222\n25686|0.65278\n25687|0.51389\n25688|0.61111\n25689|0.75\n25690|0.70833\n25691|0.5\n25692|0.31944\n25693|0.5\n25694|0.59722\n25695|0.72222\n25696|0.55556\n25697|0.73611\n25698|0.875\n25699|0.70833\n25700|0.63889\n25701|1\n25702|0.43056\n25703|0.5\n25704|0.5\n25705|0.55556\n25706|0.5\n25707|0.84722\n25708|0.55556\n25709|0.5\n25710|0.58333\n25711|0.63889\n25712|0.66667\n25713|0.75\n25714|0.48611\n25715|0.25\n25716|0.76042\n25717|0.5\n25718|0.44444\n25719|0.88889\n25720|0.51389\n25721|0.80556\n25722|0.61111\n25723|0.81944\n25724|0.72222\n25725|0.81944\n25726|0.27778\n25727|0.54167\n25728|0.875\n25729|0.80556\n25730|0.79167\n25731|0.72222\n25732|0.75\n25733|0.73611\n25734|0.80556\n25735|0.77778\n25736|0.83333\n25737|0.76389\n25738|0.77778\n25739|0.81944\n25740|0.84722\n25741|0.70833\n25742|0.81944\n25743|0.76389\n25744|0.68056\n25745|0.5\n25746|0.65278\n25747|0.31944\n25748|0.69444\n25749|0.80556\n25750|0.5\n25751|0.79167\n25752|0.55556\n25753|0.48611\n25754|0.68056\n25755|0.19444\n25756|0.58333\n25757|0.20833\n25758|0.48611\n25759|0.86111\n25760|0.48611\n25761|0.77778\n25762|0.79167\n25763|0.84722\n25764|0.77778\n25765|0.90278\n25766|0.69444\n25767|0.72222\n25768|0.88889\n25769|0.73611\n25770|0.81944\n25771|0.69444\n25772|0.5\n25773|0.76389\n25774|0.73611\n25775|0.76389\n25776|0.76389\n25777|0.81944\n25778|0.81944\n25779|0.94444\n25780|0.56944\n25781|0.79167\n25782|0.77778\n25783|0.84722\n25784|0.77778\n25785|0.68056\n25786|0.041667\n25787|0.61111\n25788|0.76389\n25789|0.83333\n25790|0.70833\n25791|0.88889\n25792|0.65278\n25793|0.31944\n25794|0.72222\n25795|0.93056\n25796|0.73611\n25797|0.63889\n25798|0.81944\n25799|0.73611\n25800|0.90278\n25801|0.375\n25802|0.61111\n25803|0.66667\n25804|0.19444\n25805|0.83333\n25806|0.25\n25807|0.58333\n25808|0.5\n25809|0.94444\n25810|0.5\n25811|0.55556\n25812|0.63889\n25813|0.33333\n25814|0.55556\n25815|0.56944\n25816|0.5\n25817|0.5\n25818|0.5\n25819|0.65278\n25820|0.5\n25821|0.5\n25822|0.5\n25823|0.5\n25824|0.57292\n25825|0.55556\n25826|0.51389\n25827|0.5\n25828|0.5\n25829|0.72222\n25830|0.5\n25831|0.5\n25832|0.72222\n25833|0.5\n25834|0.44444\n25835|0.5\n25836|0.5\n25837|0.80556\n25838|0.5\n25839|0.5\n25840|0.65278\n25841|0.61111\n25842|0.68056\n25843|0.5\n25844|0.5\n25845|0.5\n25846|0.63889\n25847|0.63889\n25848|0.625\n25849|0.48611\n25850|0.18056\n25851|0.68056\n25852|0.52778\n25853|0.5\n25854|0.5\n25855|0.44444\n25856|0.5\n25857|0.59722\n25858|0.5\n25859|0.63889\n25860|0.77778\n25861|0.5\n25862|0.5\n25863|0.5\n25864|0.5\n25865|0.5\n25866|0.5\n25867|0.5\n25868|0.5\n25869|0.5\n25870|0.61111\n25871|0.875\n25872|0.5\n25873|0.5\n25874|0.84722\n25875|0.5\n25876|0.5\n25877|0.5\n25878|0.5\n25879|0.5\n25880|0.19444\n25881|0.5\n25882|0.55556\n25883|0.5\n25884|0.5\n25885|0.5\n25886|0.44444\n25887|0.5\n25888|0.5\n25889|0.5\n25890|0.5\n25891|0.55556\n25892|0.5\n25893|0.5\n25894|0.76389\n25895|0.5\n25896|0.5\n25897|0.5\n25898|0.47222\n25899|0.5\n25900|0.77778\n25901|0.73611\n25902|0.47222\n25903|0.75\n25904|0.5\n25905|0.79167\n25906|0.5\n25907|0.51389\n25908|0.56944\n25909|0.5\n25910|0.65278\n25911|0.5\n25912|0.52778\n25913|0.36111\n25914|0.5\n25915|0.5\n25916|0.79167\n25917|0.59722\n25918|0.70833\n25919|0.61111\n25920|0.79167\n25921|0.5\n25922|0.55556\n25923|0.59722\n25924|0.5\n25925|0.5\n25926|0.61111\n25927|0.83333\n25928|0.5\n25929|0.5\n25930|0.73611\n25931|0.83333\n25932|0.5\n25933|0.79167\n25934|0.34722\n25935|0.65278\n25936|0.91667\n25937|0.5\n25938|0.80556\n25939|0.79167\n25940|0.5\n25941|0.5\n25942|0.79167\n25943|0.5\n25944|0.5\n25945|0.5\n25946|0.52778\n25947|0.55556\n25948|0.5\n25949|0.5\n25950|0.55556\n25951|0.95833\n25952|0.72222\n25953|0.5\n25954|0.27778\n25955|0.55556\n25956|0.63889\n25957|0.5\n25958|0.72222\n25959|0.5\n25960|0.5\n25961|0.65278\n25962|0.5\n25963|0.70833\n25964|0.66667\n25965|0.5\n25966|0.5\n25967|0.33333\n25968|0.52778\n25969|0.5\n25970|0.5\n25971|0.72917\n25972|0.5\n25973|0.48611\n25974|0.625\n25975|0.90278\n25976|0.81944\n25977|0.875\n25978|0.56944\n25979|0.625\n25980|0.90278\n25981|0.5\n25982|0.38889\n25983|0.5\n25984|0.375\n25985|0.54167\n25986|0.72222\n25987|0.5\n25988|0.5\n25989|0.5\n25990|0.5\n25991|0.5\n25992|0.72222\n25993|0.22222\n25994|0.43056\n25995|0.5\n25996|0.76389\n25997|0.5\n25998|0.5\n25999|0.46875\n26000|0.5\n26001|0.5\n26002|0.5\n26003|0.73611\n26004|0.5\n26005|0.80556\n26006|0.97222\n26007|0.80556\n26008|0.72222\n26009|0.5\n26010|0.5\n26011|0.5\n26012|0.5\n26013|0.5\n26014|0.5\n26015|0.44444\n26016|0.76389\n26017|0.58333\n26018|0.44444\n26019|0.5\n26020|0.34722\n26021|0.5\n26022|0.625\n26023|0.84722\n26024|0.77778\n26025|0.5\n26026|0.75\n26027|0.41667\n26028|0.5\n26029|0.70833\n26030|0.65278\n26031|0.76389\n26032|0.625\n26033|0.43056\n26034|0.52778\n26035|0.84722\n26036|0.61111\n26037|0.56944\n26038|0.5\n26039|0.625\n26040|0.5\n26041|0.93056\n26042|0.86111\n26043|0.5\n26044|0.5\n26045|0.69444\n26046|0.61111\n26047|0.5\n26048|0.5\n26049|0.51389\n26050|0.5\n26051|0.66667\n26052|0.88542\n26053|0.79167\n26054|0.5\n26055|0.5\n26056|0.55556\n26057|0.5\n26058|0.52778\n26059|0.70833\n26060|0.69444\n26061|0.83333\n26062|0.48611\n26063|0.72222\n26064|0.5\n26065|0.33333\n26066|0.5\n26067|0.5\n26068|0.68056\n26069|0.5\n26070|0.5\n26071|0.5\n26072|0.65278\n26073|0.5\n26074|0.5\n26075|0.76042\n26076|0.80556\n26077|0.55556\n26078|0.63889\n26079|0.5\n26080|0.55556\n26081|0.5\n26082|0.5\n26083|0.5\n26084|0.51389\n26085|0.72222\n26086|0.70833\n26087|0.70833\n26088|0.5\n26089|0.61111\n26090|0.90278\n26091|0.5\n26092|0.5\n26093|0.5\n26094|0.5\n26095|0.61111\n26096|0.5\n26097|0.5\n26098|0.5\n26099|0.84722\n26100|0.58333\n26101|0.66667\n26102|0.43056\n26103|0.5\n26104|0.38889\n26105|0.625\n26106|0.66667\n26107|0.5\n26108|0.66667\n26109|0.5\n26110|0.5\n26111|0.5\n26112|0.59722\n26113|0.5\n26114|0.72222\n26115|0.5\n26116|0.5\n26117|0.51389\n26118|0.5\n26119|0.66667\n26120|0.5\n26121|0.65278\n26122|0.55556\n26123|0.625\n26124|0.69444\n26125|0.84722\n26126|0.83333\n26127|0.81944\n26128|0.5\n26129|0.55556\n26130|0.73611\n26131|0.5\n26132|0.55556\n26133|0.5\n26134|0.5\n26135|0.5\n26136|0.5\n26137|0.66667\n26138|0.58333\n26139|0.83333\n26140|0.66667\n26141|0.72222\n26142|0.625\n26143|0.38889\n26144|0.5\n26145|0.5\n26146|0.5\n26147|0.56944\n26148|0.61111\n26149|0.72222\n26150|0.58333\n26151|0.88889\n26152|0.5\n26153|0.66667\n26154|0.5\n26155|0.5\n26156|0.61111\n26157|0.5\n26158|0.5\n26159|0.5\n26160|0.83333\n26161|0.5\n26162|0.5\n26163|0.5\n26164|0.54167\n26165|0.5\n26166|0.5\n26167|0.43056\n26168|0.48611\n26169|0.48611\n26170|0.61111\n26171|0.72222\n26172|0.5\n26173|0.5\n26174|0.48611\n26175|0.59722\n26176|0.65278\n26177|0.625\n26178|0.80556\n26179|0.52778\n26180|0.66667\n26181|0.5\n26182|0.54167\n26183|0.5\n26184|0.5\n26185|0.5\n26186|0.5\n26187|0.47222\n26188|0.5\n26189|0.5\n26190|0.88889\n26191|0.5\n26192|0.65278\n26193|0.63889\n26194|0.83333\n26195|0.27778\n26196|0.45833\n26197|0.55556\n26198|0.44444\n26199|0.61111\n26200|0.91667\n26201|0.625\n26202|0.5\n26203|0.90278\n26204|0.80556\n26205|0.83333\n26206|0.5\n26207|0.5\n26208|0.75\n26209|0.5\n26210|0.73611\n26211|0.23611\n26212|0.69444\n26213|0.72222\n26214|0.33333\n26215|0.31944\n26216|0.38889\n26217|0.38889\n26218|0.22222\n26219|0.41667\n26220|0.33333\n26221|0.41667\n26222|0.76389\n26223|0.44444\n26224|0.55556\n26225|0.61111\n26226|0.5\n26227|0.77778\n26228|0.77778\n26229|0.81944\n26230|0.30556\n26231|0.16667\n26232|0.66667\n26233|0.51389\n26234|0.5\n26235|0.77778\n26236|0.43056\n26237|0.69444\n26238|0.5\n26239|0.29167\n26240|0.59722\n26241|0.5\n26242|0.5\n26243|0.5\n26244|0.625\n26245|0.5\n26246|0.84722\n26247|0.5\n26248|0.5\n26249|0.63889\n26250|0.61111\n26251|0.5\n26252|0.52778\n26253|0.5\n26254|0.5\n26255|0.5\n26256|0.75\n26257|0.55556\n26258|0.77778\n26259|0.77778\n26260|0.5\n26261|0.79167\n26262|0.80556\n26263|0.44444\n26264|0.69444\n26265|0.875\n26266|0.5\n26267|0.55556\n26268|0.55556\n26269|1\n26270|0.90278\n26271|0.66667\n26272|0.56944\n26273|0.5\n26274|0.55556\n26275|0.88889\n26276|0.5\n26277|0.47222\n26278|0.58333\n26279|0.77778\n26280|0.83333\n26281|0.44444\n26282|0.875\n26283|0.51389\n26284|0.5\n26285|0.75\n26286|0.55556\n26287|0.63889\n26288|0.5\n26289|0.20833\n26290|0.47222\n26291|0.375\n26292|0.66667\n26293|0.81944\n26294|0.84722\n26295|0.96875\n26296|0.91667\n26297|0.88889\n26298|0.75\n26299|0.97222\n26300|0.84722\n26301|0.81944\n26302|0.78125\n26303|0.5\n26304|0.68056\n26305|0.68056\n26306|0.94444\n26307|0.5\n26308|0.625\n26309|0.5\n26310|0.5\n26311|0.72222\n26312|0.61111\n26313|0.84722\n26314|0.77778\n26315|0.77778\n26316|0.83333\n26317|0.90278\n26318|0.91667\n26319|0.48611\n26320|0.5\n26321|0.65278\n26322|0.5\n26323|0.83333\n26324|0.5\n26325|0.5\n26326|0.44444\n26327|0.5\n26328|0.5\n26329|0.5\n26330|0.5\n26331|0.5\n26332|0.5\n26333|0.5\n26334|0.5\n26335|0.77778\n26336|0.5\n26337|0.5\n26338|0.5\n26339|0.5\n26340|0.66667\n26341|0.5\n26342|0.5\n26343|0.5\n26344|0.875\n26345|0.5\n26346|0.5\n26347|0.61111\n26348|0.83333\n26349|0.5\n26350|0.5\n26351|0.5\n26352|0.51389\n26353|0.5\n26354|0.5\n26355|0.5\n26356|0.5\n26357|0.38889\n26358|0.38889\n26359|0.5\n26360|0.5\n26361|0.51389\n26362|0.36111\n26363|0.58333\n26364|0.5\n26365|0.5\n26366|0.55556\n26367|0.5\n26368|0.59722\n26369|0.5\n26370|0.63889\n26371|0.5\n26372|0.5\n26373|0.52778\n26374|0.48611\n26375|0.5\n26376|0.5\n26377|0.5\n26378|0.5\n26379|0.55556\n26380|0.44444\n26381|0.5\n26382|0.76389\n26383|0.77778\n26384|0.72222\n26385|0.77778\n26386|0.5\n26387|0.59722\n26388|0.5\n26389|0.5\n26390|0.5\n26391|0.88889\n26392|0.81944\n26393|0.5\n26394|0.5\n26395|0.66667\n26396|0.79167\n26397|0.44444\n26398|0.55556\n26399|0.41667\n26400|0.63889\n26401|0.65278\n26402|0.51389\n26403|0.5\n26404|0.5\n26405|0.5\n26406|0.80556\n26407|0.70833\n26408|0.5\n26409|0.5\n26410|0.86111\n26411|0.5\n26412|0.84722\n26413|0.5\n26414|0.5\n26415|0.56944\n26416|0.55556\n26417|0.5\n26418|0.76389\n26419|0.91667\n26420|0.5\n26421|0.75\n26422|0.44444\n26423|0.91667\n26424|0.51389\n26425|0.72222\n26426|0.47222\n26427|0.5\n26428|0.59722\n26429|0.5\n26430|0.5\n26431|0.5\n26432|0.5\n26433|0.51389\n26434|0.5\n26435|0.625\n26436|0.69444\n26437|0.79167\n26438|0.5\n26439|0.76389\n26440|0.66667\n26441|0.5\n26442|0.72222\n26443|0.38889\n26444|0.69444\n26445|0.55556\n26446|0.72222\n26447|0.65278\n26448|0.70833\n26449|0.55556\n26450|0.5\n26451|0.5\n26452|0.86111\n26453|0.5\n26454|0.097222\n26455|0.72222\n26456|0.72222\n26457|0.83333\n26458|0.58333\n26459|0.5\n26460|0.5\n26461|0.5\n26462|0.625\n26463|0.875\n26464|0.93056\n26465|0.88889\n26466|0.5\n26467|0.5\n26468|0.5\n26469|0.52778\n26470|0.48611\n26471|0.5\n26472|0.5\n26473|0.80556\n26474|0.5\n26475|0.61111\n26476|0.42708\n26477|0.5\n26478|0.61111\n26479|0.61111\n26480|0.5\n26481|0.65278\n26482|0.5\n26483|0.5\n26484|0.5\n26485|0.36111\n26486|0.5\n26487|0.5\n26488|0.5\n26489|0.88542\n26490|0.81944\n26491|0.75\n26492|0.88889\n26493|0.38889\n26494|0.5\n26495|0.5\n26496|0.5\n26497|0.76389\n26498|0.80556\n26499|0.5\n26500|0.58333\n26501|0.5\n26502|0.51389\n26503|0.5\n26504|0.66667\n26505|0.5\n26506|0.48611\n26507|0.69444\n26508|0.55556\n26509|0.5\n26510|0.63889\n26511|0.66667\n26512|0.65278\n26513|0.5\n26514|0.5\n26515|0.5\n26516|0.72222\n26517|0.66667\n26518|0.5\n26519|0.69444\n26520|0.61111\n26521|0.73611\n26522|0.5\n26523|0.54167\n26524|0.5\n26525|0.44444\n26526|0.5\n26527|0.5\n26528|0.51389\n26529|0.5\n26530|0.66667\n26531|0.58333\n26532|0.90278\n26533|0.5\n26534|0.5\n26535|0.58333\n26536|0.55556\n26537|0.5\n26538|0.63889\n26539|0.38889\n26540|0.61111\n26541|0.5\n26542|0.66667\n26543|0.65278\n26544|0.5\n26545|0.5\n26546|0.5\n26547|0.5\n26548|0.44444\n26549|0.5\n26550|0.5\n26551|0.66667\n26552|0.54167\n26553|0.97222\n26554|0.55556\n26555|0.5\n26556|0.5\n26557|0.625\n26558|0.29167\n26559|0.5\n26560|0.5\n26561|0.55556\n26562|0.5\n26563|0.54167\n26564|0.70833\n26565|0.36111\n26566|0.52778\n26567|0.5\n26568|0.70833\n26569|0.81944\n26570|0.5\n26571|0.5\n26572|0.5\n26573|0.5\n26574|0.61111\n26575|0.55556\n26576|0.5\n26577|0.5\n26578|0.5\n26579|0.5\n26580|0.47222\n26581|0.5\n26582|0.94444\n26583|0.93056\n26584|0.45833\n26585|0.5\n26586|0.55556\n26587|0.5\n26588|0.38542\n26589|0.72222\n26590|0.40278\n26591|0.66667\n26592|0.625\n26593|0.81944\n26594|0.63889\n26595|0.5\n26596|0.5\n26597|0.36111\n26598|0.61111\n26599|0.63889\n26600|0.44444\n26601|0.84722\n26602|0.70833\n26603|0.73958\n26604|0.5\n26605|0.30208\n26606|0.79167\n26607|0.79167\n26608|0.66667\n26609|0.73611\n26610|0.52778\n26611|0.5\n26612|0.75\n26613|0.79167\n26614|0.5\n26615|0.5\n26616|0.91667\n26617|0.5\n26618|0.5\n26619|0.65278\n26620|0.75\n26621|0.52778\n26622|0.5\n26623|0.65278\n26624|0.5\n26625|0.5\n26626|0.61111\n26627|0.80556\n26628|0.5\n26629|0.5\n26630|0.5\n26631|0.5\n26632|0.5\n26633|0.59722\n26634|0.86111\n26635|0.52778\n26636|0.625\n26637|0.65278\n26638|0.5\n26639|0.59722\n26640|0.45833\n26641|0.5\n26642|0.81944\n26643|0.48611\n26644|0.58333\n26645|0.5\n26646|0.5\n26647|0.54167\n26648|0.27778\n26649|0.81944\n26650|0.38889\n26651|0.5\n26652|0.5\n26653|0.5\n26654|0.51389\n26655|0.81944\n26656|0.11111\n26657|0.66667\n26658|0.59722\n26659|0.76389\n26660|0.5\n26661|0.5\n26662|0.22222\n26663|0.5\n26664|0.72222\n26665|0.43056\n26666|0.13889\n26667|0.48611\n26668|0.41667\n26669|0.5\n26670|0.72222\n26671|0.61111\n26672|0.5\n26673|0.875\n26674|0.68056\n26675|0.5\n26676|0.19444\n26677|0.52778\n26678|0.66667\n26679|0.65278\n26680|0.41667\n26681|0.65278\n26682|0.45833\n26683|0.73611\n26684|0.5\n26685|0.86111\n26686|0.68056\n26687|0.5\n26688|0.45833\n26689|0.5\n26690|0.63889\n26691|0.5\n26692|0.75\n26693|0.47222\n26694|0.72222\n26695|0.5\n26696|0.56944\n26697|0.76389\n26698|0.5\n26699|0.5\n26700|0.44444\n26701|0.55556\n26702|0.70833\n26703|0.90278\n26704|0.5\n26705|0.84722\n26706|0.5\n26707|0.90278\n26708|0.38889\n26709|0.55556\n26710|0.56944\n26711|0.5\n26712|0.79167\n26713|0.84722\n26714|0.76389\n26715|0.5\n26716|0.5\n26717|0.51389\n26718|0.47222\n26719|0.5\n26720|0.5\n26721|0.5\n26722|0.5\n26723|0.52778\n26724|0.56944\n26725|0.83333\n26726|0.5\n26727|0.52778\n26728|0.5\n26729|0.80556\n26730|0.70833\n26731|0.93056\n26732|0.5\n26733|0.68056\n26734|0.65278\n26735|0.77778\n26736|0.44444\n26737|0.5\n26738|0.84722\n26739|0.73611\n26740|0.5\n26741|0.41667\n26742|0.55556\n26743|0.44444\n26744|0.95833\n26745|0.5\n26746|0.5\n26747|0.73611\n26748|0.61111\n26749|0.86111\n26750|0.5\n26751|0.51389\n26752|0.90278\n26753|0.90278\n26754|0.91667\n26755|0.5\n26756|0.83333\n26757|0.55556\n26758|0.5\n26759|0.5\n26760|0.5\n26761|0.5\n26762|0.625\n26763|0.65278\n26764|0.66667\n26765|0.94792\n26766|0.83333\n26767|0.84722\n26768|0.73611\n26769|0.63889\n26770|0.52778\n26771|0.76389\n26772|0.5\n26773|0.94444\n26774|0.52778\n26775|0.88889\n26776|0.80556\n26777|0.72222\n26778|0.77778\n26779|0.45833\n26780|0.55556\n26781|0.52778\n26782|0.55556\n26783|0.5\n26784|0.80556\n26785|0.5\n26786|0.375\n26787|0.55556\n26788|0.55556\n26789|0.375\n26790|0.66667\n26791|0.5\n26792|0.875\n26793|0.83333\n26794|0.55556\n26795|0.27778\n26796|0.5\n26797|1\n26798|0.56944\n26799|0.70833\n26800|0.84722\n26801|0.76389\n26802|0.63889\n26803|0.33333\n26804|0.59722\n26805|0.59722\n26806|0.875\n26807|0.70833\n26808|0.86111\n26809|0.80556\n26810|0.77778\n26811|0.91667\n26812|0.59722\n26813|0.79167\n26814|0.36111\n26815|0.80556\n26816|0.73611\n26817|0.81944\n26818|0.76389\n26819|0.97222\n26820|0.70833\n26821|0.55556\n26822|0.77778\n26823|0.91667\n26824|0.72222\n26825|0.79167\n26826|0.88889\n26827|0.44444\n26828|0.79167\n26829|0.5\n26830|0.79167\n26831|0.5\n26832|0.76389\n26833|0.68056\n26834|0.68056\n26835|0.52778\n26836|0.55556\n26837|0.65278\n26838|0.625\n26839|0.88889\n26840|0.40278\n26841|0.38889\n26842|0.56944\n26843|0.53125\n26844|0.68056\n26845|0.76389\n26846|0.5\n26847|0.66667\n26848|0.875\n26849|0.80556\n26850|0.68056\n26851|0.95833\n26852|0.66667\n26853|0.84722\n26854|0.77778\n26855|0.73611\n26856|0.75\n26857|0.69444\n26858|0.56944\n26859|0.81944\n26860|0.59722\n26861|0.55556\n26862|0.77778\n26863|0.55556\n26864|0.80556\n26865|1\n26866|0.83333\n26867|0.44444\n26868|0.76389\n26869|0.55556\n26870|0.90278\n26871|0.875\n26872|0.58333\n26873|0.66667\n26874|0.77778\n26875|0.55556\n26876|0.5\n26877|0.97222\n26878|0.5\n26879|0.5\n26880|0.45833\n26881|0.97222\n26882|0.63889\n26883|0.54167\n26884|0.875\n26885|0.56944\n26886|0.66667\n26887|0.48611\n26888|0.69444\n26889|0.5\n26890|0.58333\n26891|0.75\n26892|0.44792\n26893|0.55556\n26894|0.69444\n26895|0.26389\n26896|0.61111\n26897|0.25\n26898|0.5\n26899|0.5\n26900|0.875\n26901|0.66667\n26902|0.61111\n26903|0.90278\n26904|0.72222\n26905|0.83333\n26906|0.5\n26907|0.77778\n26908|0.68056\n26909|0.59722\n26910|0.58333\n26911|0.61111\n26912|0.44444\n26913|0.84722\n26914|0.55556\n26915|0.55556\n26916|0.61111\n26917|0.48611\n26918|0.33333\n26919|0.59722\n26920|0.51389\n26921|0.61111\n26922|0.55556\n26923|0.68056\n26924|0.69444\n26925|0.76389\n26926|0.52778\n26927|0.68056\n26928|0.80556\n26929|0.875\n26930|0.125\n26931|0.30556\n26932|0.52778\n26933|0.5\n26934|0.33333\n26935|0.69444\n26936|0.5\n26937|0.80556\n26938|0.75\n26939|0.48611\n26940|0.76389\n26941|0.88889\n26942|0.33333\n26943|0.73611\n26944|0.5\n26945|0.93056\n26946|0.58333\n26947|0.5\n26948|0.79167\n26949|0.20833\n26950|0.19444\n26951|0.70833\n26952|0.75\n26953|0.38889\n26954|0.44444\n26955|0.5\n26956|0.66667\n26957|0.70833\n26958|0.83333\n26959|0.75\n26960|0.52778\n26961|0.5\n26962|0.86111\n26963|0.5\n26964|0.38889\n26965|0.27778\n26966|0.73611\n26967|0.40278\n26968|0.86111\n26969|0.88889\n26970|0.55556\n26971|0.44444\n26972|0.73611\n26973|0.68056\n26974|0.77778\n26975|0.68056\n26976|0.66667\n26977|0.90278\n26978|0.5\n26979|0.58333\n26980|0.90278\n26981|0.81944\n26982|0.66667\n26983|0.75\n26984|0.63889\n26985|0.81944\n26986|0.84722\n26987|0.77778\n26988|0.86111\n26989|0.55556\n26990|0.88542\n26991|0.48611\n26992|0.75\n26993|0.33333\n26994|0.88889\n26995|0.94444\n26996|0.90278\n26997|0.34722\n26998|0.55556\n26999|0.76389\n27000|0.66667\n27001|0.55556\n27002|0.75\n27003|0.36111\n27004|0.55556\n27005|0.66667\n27006|0.86111\n27007|0.68056\n27008|0.66667\n27009|0.72222\n27010|0.51389\n27011|0.68056\n27012|0.5\n27013|0.5\n27014|0.34722\n27015|0.5\n27016|0.27778\n27017|0.625\n27018|0.66667\n27019|0.95833\n27020|0.79167\n27021|0.88889\n27022|0.76389\n27023|0.63889\n27024|0.38889\n27025|0.70833\n27026|0.30556\n27027|0.61111\n27028|0.44444\n27029|0.75\n27030|0.41667\n27031|0.45833\n27032|0.55556\n27033|0.84722\n27034|0.75\n27035|0.77778\n27036|0.875\n27037|0.83333\n27038|0.88889\n27039|0.77778\n27040|0.65278\n27041|0.81944\n27042|0.83333\n27043|0.88889\n27044|0.5\n27045|0.72222\n27046|0.88889\n27047|0.65278\n27048|0.5\n27049|0.875\n27050|0.5\n27051|0.65278\n27052|0.65278\n27053|0.5\n27054|0.30556\n27055|0.36111\n27056|0.65278\n27057|0.5\n27058|0.73611\n27059|0.33333\n27060|0.41667\n27061|0.5\n27062|0.5\n27063|0.5\n27064|0.54167\n27065|0.5\n27066|0.79167\n27067|0.5\n27068|0.5\n27069|0.51389\n27070|0.5\n27071|0.5\n27072|0.68056\n27073|0.72222\n27074|0.59722\n27075|0.76389\n27076|0.75\n27077|0.5\n27078|0.83333\n27079|0.81944\n27080|0.5\n27081|0.51389\n27082|0.5\n27083|0.77778\n27084|0.5\n27085|0.5\n27086|0.54167\n27087|0.5\n27088|0.69444\n27089|0.75\n27090|0.83333\n27091|0.5\n27092|0.83333\n27093|0.5\n27094|0.55556\n27095|0.45833\n27096|0.51389\n27097|0.5\n27098|0.88889\n27099|0.75\n27100|0.5\n27101|0.11111\n27102|0.5\n27103|0.5\n27104|0.73611\n27105|0.76389\n27106|0.72222\n27107|0.26389\n27108|0.41667\n27109|0.65278\n27110|0.70833\n27111|0.61111\n27112|0.81944\n27113|0.5\n27114|0.69444\n27115|0.80556\n27116|0.5\n27117|0.5\n27118|0.44444\n27119|0.5\n27120|0.5\n27121|0.5\n27122|0.51389\n27123|0.76389\n27124|0.48611\n27125|0.5\n27126|0.5\n27127|0.5\n27128|0.5\n27129|0.79167\n27130|0.5\n27131|0.5\n27132|0.61111\n27133|0.73611\n27134|0.84722\n27135|0.90278\n27136|0.66667\n27137|0.79167\n27138|0.33333\n27139|0.625\n27140|0.5\n27141|0.44444\n27142|0.5\n27143|0.5\n27144|0.5\n27145|0.625\n27146|0.36111\n27147|0.5\n27148|0.68056\n27149|0.5\n27150|0.83333\n27151|0.5\n27152|0.5\n27153|0.33333\n27154|0.40278\n27155|0.5\n27156|0.55556\n27157|0.22222\n27158|0.5\n27159|0.5\n27160|0.75\n27161|0.44444\n27162|0.44444\n27163|0.73611\n27164|0.51389\n27165|0.75\n27166|0.51389\n27167|0.61111\n27168|0.625\n27169|0.5\n27170|0.5\n27171|0.5\n27172|0.5\n27173|0.55556\n27174|0.5\n27175|0.56944\n27176|0.48611\n27177|0.55556\n27178|0.44444\n27179|1\n27180|0.81944\n27181|0.5\n27182|0.5\n27183|0.72222\n27184|0.5\n27185|0.68056\n27186|0.5\n27187|0.65278\n27188|0.54167\n27189|0.375\n27190|0.75\n27191|0.69444\n27192|0.5\n27193|0.5\n27194|0.72222\n27195|0.66667\n27196|0.70833\n27197|0.45833\n27198|0.79167\n27199|0.23611\n27200|0.66667\n27201|0.52778\n27202|0.65278\n27203|0.33333\n27204|0.75\n27205|0.5\n27206|0.52778\n27207|0.68056\n27208|0.77778\n27209|0.77778\n27210|0.36111\n27211|0.54167\n27212|0.38889\n27213|0.47222\n27214|0.55556\n27215|0.51389\n27216|0.875\n27217|0.56944\n27218|0.79167\n27219|0.45833\n27220|0.625\n27221|0.69444\n27222|0.77778\n27223|0.77778\n27224|0.33333\n27225|0.59722\n27226|0.5\n27227|0.90278\n27228|0.54167\n27229|0.59722\n27230|0.5\n27231|0.68056\n27232|0.65278\n27233|0.77778\n27234|0.63889\n27235|0.86111\n27236|0.5\n27237|0.5\n27238|0.5\n27239|0.43056\n27240|0.63889\n27241|0.80556\n27242|0.5\n27243|0.79167\n27244|0.75\n27245|0.5\n27246|0.5\n27247|0.5\n27248|0.58333\n27249|0.75\n27250|0.625\n27251|0.93056\n27252|0.625\n27253|0.73611\n27254|0.61111\n27255|0.5\n27256|0.54167\n27257|0.5\n27258|0.83333\n27259|0.41667\n27260|0.5\n27261|0.5\n27262|0.59722\n27263|0.73611\n27264|0.5\n27265|0.5\n27266|0.65278\n27267|0.44444\n27268|0.80556\n27269|0.5\n27270|0.75\n27271|0.77778\n27272|0.5\n27273|0.76389\n27274|0.61111\n27275|0.81944\n27276|0.79167\n27277|0.5625\n27278|0.5\n27279|0.38889\n27280|0.27778\n27281|0.66667\n27282|0.5\n27283|0.59722\n27284|0.5\n27285|0.5\n27286|0.5\n27287|0.81944\n27288|0.5\n27289|0.5\n27290|0.83333\n27291|0.83333\n27292|0.66667\n27293|0.55556\n27294|0.86111\n27295|0.5\n27296|0.83333\n27297|0.59722\n27298|0.625\n27299|0.5\n27300|0.73611\n27301|0.65278\n27302|0.36111\n27303|0.63889\n27304|0.61111\n27305|0.20833\n27306|0.51389\n27307|0.26389\n27308|0.66667\n27309|0.66667\n27310|0.75\n27311|0.5\n27312|0.5\n27313|0.5\n27314|0.5\n27315|0.5\n27316|0.5\n27317|0.5\n27318|0.79167\n27319|0.55556\n27320|0.5\n27321|0.76389\n27322|0.5\n27323|0.52778\n27324|0.5\n27325|0.30556\n27326|0.5\n27327|0.88889\n27328|0.45833\n27329|0.55556\n27330|0.27778\n27331|0.5\n27332|0.5\n27333|0.51389\n27334|0.65278\n27335|0.44444\n27336|0.75\n27337|0.5\n27338|0.38889\n27339|0.48611\n27340|0.69444\n27341|0.5\n27342|0.5\n27343|0.61111\n27344|0.68056\n27345|0.5\n27346|0.5\n27347|0.43056\n27348|0.625\n27349|0.33333\n27350|0.51389\n27351|0.54167\n27352|0.65278\n27353|0.51389\n27354|0.79167\n27355|0.5\n27356|0.48958\n27357|0.93056\n27358|0.27778\n27359|0.20833\n27360|0.5\n27361|0.625\n27362|0.22222\n27363|0.25\n27364|0.19444\n27365|0.17708\n27366|0.81944\n27367|0.68056\n27368|0.5\n27369|0.47222\n27370|0.73611\n27371|0.70833\n27372|0.22222\n27373|0.68056\n27374|0.44444\n27375|0.61111\n27376|0.75\n27377|0.29167\n27378|0.44444\n27379|0.75\n27380|0.63889\n27381|0.26389\n27382|0.25\n27383|0.70833\n27384|0.70833\n27385|0.73611\n27386|0.55556\n27387|0.63889\n27388|0.73611\n27389|0.55556\n27390|0.5\n27391|0.55556\n27392|0.5\n27393|0.66667\n27394|0.61111\n27395|0.59722\n27396|0.58333\n27397|0.65278\n27398|0.80556\n27399|0.44444\n27400|0.56944\n27401|0.80556\n27402|0.5\n27403|0.5\n27404|0.52778\n27405|0.5\n27406|0.72222\n27407|0.58333\n27408|0.5\n27409|0.52778\n27410|0.61111\n27411|0.44444\n27412|0.69444\n27413|0.72222\n27414|0.83333\n27415|0.68056\n27416|0.5\n27417|0.44444\n27418|0.52778\n27419|0.55556\n27420|0.75\n27421|0.69444\n27422|0.68056\n27423|0.69444\n27424|0.73611\n27425|0.65278\n27426|0.58333\n27427|0.5\n27428|0.55556\n27429|0.63889\n27430|0.70833\n27431|0.76389\n27432|0.73611\n27433|0.56944\n27434|0.75\n27435|0.80556\n27436|0.56944\n27437|0.41667\n27438|0.63889\n27439|0.5\n27440|0.72222\n27441|0.84722\n27442|0.70833\n27443|0.91667\n27444|0.77778\n27445|0.73611\n27446|0.77778\n27447|0.625\n27448|0.75\n27449|0.72222\n27450|0.29167\n27451|0.59722\n27452|0.66667\n27453|0.38889\n27454|0.5\n27455|0.45833\n27456|0.625\n27457|0.56944\n27458|0.58333\n27459|0.16667\n27460|0.38889\n27461|0.66667\n27462|0.875\n27463|0.75\n27464|0.5\n27465|0.72222\n27466|0.77778\n27467|0.94444\n27468|0.76042\n27469|0.88889\n27470|0.5\n27471|0.47222\n27472|0.81944\n27473|0.88889\n27474|0.61111\n27475|0.48611\n27476|0.66667\n27477|0.55556\n27478|0.625\n27479|0.73611\n27480|0.5\n27481|0.65278\n27482|0.52778\n27483|0.69444\n27484|0.66667\n27485|0.38889\n27486|0.34722\n27487|0.63889\n27488|0.55556\n27489|0.5\n27490|0.51389\n27491|0.66667\n27492|0.5\n27493|0.54167\n27494|0.5\n27495|0.61111\n27496|0.54167\n27497|0.83333\n27498|0.76389\n27499|0.86111\n27500|0.83333\n27501|0.77778\n27502|0.83333\n27503|0.72222\n27504|0.72222\n27505|0.61111\n27506|0.98611\n27507|0.58333\n27508|0.5\n27509|0.61111\n27510|0.70833\n27511|0.61111\n27512|0.5\n27513|0.26389\n27514|0.55556\n27515|0.75\n27516|0.5\n27517|0.625\n27518|0.5\n27519|0.80556\n27520|0.86111\n27521|0\n27522|0.84722\n27523|0.84722\n27524|0.5\n27525|0.26389\n27526|0.83333\n27527|0.72222\n27528|0.77778\n27529|0.75\n27530|0.55556\n27531|0.55556\n27532|0.39583\n27533|0.5\n27534|0.55556\n27535|0.75\n27536|0.69444\n27537|0.63889\n27538|0.54167\n27539|0.69444\n27540|0.65278\n27541|0.76389\n27542|0.63889\n27543|0.88889\n27544|0.625\n27545|0.40278\n27546|0.54167\n27547|0.88889\n27548|0.91667\n27549|0.72222\n27550|0.93056\n27551|0.54167\n27552|0.72222\n27553|0.77778\n27554|0.85417\n27555|0.72222\n27556|0.75\n27557|0.90278\n27558|0.79167\n27559|0.83333\n27560|0.80556\n27561|0.73611\n27562|0.72222\n27563|0.77778\n27564|0.83333\n27565|0.77778\n27566|0.81944\n27567|0.70833\n27568|0.73611\n27569|0.38889\n27570|0.38889\n27571|0.41667\n27572|0.5\n27573|0.66667\n27574|0.77778\n27575|0.69444\n27576|0.75\n27577|0.73611\n27578|0.55556\n27579|0.36111\n27580|0.5\n27581|0.65278\n27582|0.52778\n27583|0.69444\n27584|0.66667\n27585|0.84722\n27586|0.63889\n27587|0.58333\n27588|0.66667\n27589|0.44444\n27590|0.52778\n27591|0.66667\n27592|0.69444\n27593|0.70833\n27594|0.76389\n27595|0.5\n27596|0.66667\n27597|0.31944\n27598|0.61111\n27599|0.79167\n27600|0.69444\n27601|0.55556\n27602|0.47222\n27603|0.81944\n27604|0.93056\n27605|0.91667\n27606|0.77778\n27607|0.5\n27608|0.65278\n27609|0.75\n27610|0.76042\n27611|0.65278\n27612|0.90278\n27613|0.81944\n27614|0.45833\n27615|0.72222\n27616|0.61111\n27617|0.58333\n27618|0.5\n27619|0.63889\n27620|0.73611\n27621|0.40278\n27622|0.41667\n27623|0.5\n27624|0.69444\n27625|0.375\n27626|0.40278\n27627|0.65278\n27628|0.63889\n27629|0.70833\n27630|0.56944\n27631|0.77778\n27632|0.69444\n27633|0.375\n27634|0.19444\n27635|0.5\n27636|0.29167\n27637|0.41667\n27638|0.55556\n27639|0.80556\n27640|0.47222\n27641|0.58333\n27642|0.76389\n27643|0.65278\n27644|0.80556\n27645|0.81944\n27646|0.66667\n27647|0.90625\n27648|0.73611\n27649|0.81944\n27650|0.5\n27651|0.33333\n27652|0.31944\n27653|0.5\n27654|0.33333\n27655|0.5\n27656|0.40278\n27657|0.88889\n27658|0.72222\n27659|0.54167\n27660|0.59722\n27661|0.72222\n27662|0.76389\n27663|0.94444\n27664|0.94444\n27665|0.86111\n27666|0.54167\n27667|0.5\n27668|0.5\n27669|0.26389\n27670|0.47222\n27671|0.875\n27672|0.86111\n27673|0.66667\n27674|0.65278\n27675|0.5\n27676|0.5\n27677|0.5\n27678|0.66667\n27679|0.51389\n27680|0.58333\n27681|0.72222\n27682|0.83333\n27683|0.75\n27684|0.83333\n27685|0.5\n27686|0.61111\n27687|0.31944\n27688|0.69444\n27689|0.75\n27690|0.65278\n27691|0.70833\n27692|0.77778\n27693|0.73611\n27694|0.69444\n27695|0.5\n27696|0.81944\n27697|0.72222\n27698|0.625\n27699|0.47222\n27700|0.95833\n27701|0.97222\n27702|0.76389\n27703|0.58333\n27704|0.51389\n27705|0.81944\n27706|0.63889\n27707|0.66667\n27708|0.69444\n27709|0.86111\n27710|0.79167\n27711|0.65278\n27712|0.43056\n27713|0.5\n27714|0.5\n27715|0.5\n27716|0.5\n27717|0.41667\n27718|0.73611\n27719|0.88889\n27720|0.59722\n27721|0.80556\n27722|0.83333\n27723|0.61111\n27724|0.75\n27725|0.5\n27726|0.56944\n27727|0.5\n27728|0.5\n27729|0.59722\n27730|0.5\n27731|0.875\n27732|0.80556\n27733|0.77778\n27734|0.66667\n27735|0.29167\n27736|0.84375\n27737|0.66667\n27738|0.72222\n27739|0.55556\n27740|0.70833\n27741|0.68056\n27742|0.72917\n27743|0.77778\n27744|0.80556\n27745|0.76389\n27746|0.68056\n27747|0.58333\n27748|0.56944\n27749|0.63889\n27750|0.75\n27751|0.88889\n27752|0.51389\n27753|0.95833\n27754|0.77778\n27755|0.77778\n27756|0.875\n27757|0.65278\n27758|0.83333\n27759|0.83333\n27760|0.66667\n27761|0.63889\n27762|0.76389\n27763|0.68056\n27764|0.69444\n27765|0.76389\n27766|0.38889\n27767|0.60417\n27768|0.66667\n27769|0.63542\n27770|0.79167\n27771|0.79167\n27772|0.86111\n27773|0.68056\n27774|0.80556\n27775|0.86111\n27776|0.44444\n27777|0.27778\n27778|0.29167\n27779|0.83333\n27780|0.88889\n27781|0.55556\n27782|0.77778\n27783|0.83333\n27784|0.68056\n27785|0.5\n27786|0.51389\n27787|0.76389\n27788|0.65278\n27789|0.625\n27790|0.68056\n27791|0.61111\n27792|0.43056\n27793|0.31944\n27794|0.81944\n27795|0.65278\n27796|0.875\n27797|0.79167\n27798|0.16667\n27799|0.5\n27800|0.86111\n27801|0.76389\n27802|0.81944\n27803|0.61111\n27804|0.65278\n27805|0.81944\n27806|0.88889\n27807|0.5\n27808|0.73611\n27809|0.5\n27810|0.5\n27811|0.66667\n27812|0.69444\n27813|0.73611\n27814|0.52778\n27815|0.69444\n27816|0.79167\n27817|0.66667\n27818|0.80556\n27819|0.875\n27820|0.79167\n27821|0.65278\n27822|0.45833\n27823|0.44444\n27824|0.86111\n27825|0.48611\n27826|0.29167\n27827|0.36111\n27828|0.83333\n27829|0.86111\n27830|0.63889\n27831|0.88889\n27832|0.48611\n27833|0.72222\n27834|0.69444\n27835|0.51389\n27836|0.63889\n27837|0.59722\n27838|0.65278\n27839|0.47222\n27840|0.55556\n27841|0.66667\n27842|0.72222\n27843|0.77778\n27844|0.55556\n27845|0.65278\n27846|0.45833\n27847|1\n27848|0.84722\n27849|0.63542\n27850|0.59722\n27851|0.5\n27852|0.61111\n27853|0.79167\n27854|0.77778\n27855|0.94444\n27856|0.5\n27857|0.77083\n27858|0.68056\n27859|0.61111\n27860|0.91667\n27861|0.40278\n27862|0.73611\n27863|0.66667\n27864|0.69444\n27865|0.88889\n27866|0.40278\n27867|0.56944\n27868|0.70833\n27869|0.91667\n27870|0.86111\n27871|0.81944\n27872|0.81944\n27873|0.5\n27874|0.5\n27875|0.54167\n27876|0.84722\n27877|0.66667\n27878|0.70833\n27879|0.73611\n27880|0.84722\n27881|0.73611\n27882|0.88889\n27883|0.66667\n27884|0.66667\n27885|0.72222\n27886|0.77778\n27887|0.66667\n27888|0.5\n27889|0.61111\n27890|0.25\n27891|0.83333\n27892|0.90278\n27893|0.91667\n27894|0.86111\n27895|0.91667\n27896|0.5\n27897|0.70833\n27898|0.59722\n27899|0.625\n27900|0.625\n27901|0.69444\n27902|0.61111\n27903|0.36111\n27904|0.375\n27905|0.86111\n27906|0.75\n27907|0.70833\n27908|0.75\n27909|0.5\n27910|0.58333\n27911|0.80556\n27912|0.51389\n27913|0.19444\n27914|0.30556\n27915|0.70833\n27916|0.375\n27917|0.76389\n27918|0.66667\n27919|0.72222\n27920|0.44444\n27921|0.84722\n27922|0.72222\n27923|0.68056\n27924|0.41667\n27925|0.51389\n27926|0.61111\n27927|0.875\n27928|0.40278\n27929|0.93056\n27930|0.73611\n27931|0.75\n27932|0.52778\n27933|0.55556\n27934|0.61111\n27935|0.75\n27936|0.77778\n27937|0.76389\n27938|0.83333\n27939|0.36111\n27940|0.58333\n27941|0.66667\n27942|0.84722\n27943|0.81944\n27944|0.59722\n27945|0.65278\n27946|0.77778\n27947|0.84722\n27948|0.79167\n27949|0.72222\n27950|0.83333\n27951|0.16667\n27952|0.26389\n27953|0\n27954|0.54167\n27955|0.61111\n27956|0.77778\n27957|0.83333\n27958|0.65278\n27959|0.27778\n27960|0.90278\n27961|0.83333\n27962|0.81944\n27963|0.77778\n27964|0.91667\n27965|0.78125\n27966|0.81944\n27967|0.84722\n27968|1\n27969|0.83333\n27970|0.83333\n27971|0.97222\n27972|0.5\n27973|0.58333\n27974|0.5\n27975|0.81944\n27976|0.68056\n27977|0.80556\n27978|0.84722\n27979|0.65278\n27980|0.84722\n27981|0.76389\n27982|0.65278\n27983|0.5\n27984|0.5\n27985|0.23611\n27986|0.5\n27987|0.51389\n27988|0.72222\n27989|0.68056\n27990|0.56944\n27991|0.5\n27992|0.61111\n27993|0.70833\n27994|0.66667\n27995|0.59722\n27996|0.5\n27997|0.5\n27998|0.5\n27999|0.63889\n28000|0.65278\n28001|0.70833\n28002|0.5\n28003|0.63889\n28004|0.51389\n28005|0.59722\n28006|0.88889\n28007|0.5\n28008|0.5\n28009|0.63889\n28010|0.5\n28011|0.5\n28012|0.5\n28013|0.77778\n28014|0.5\n28015|0.63889\n28016|0.5\n28017|0.55556\n28018|0.52778\n28019|0.51389\n28020|0.55556\n28021|0.76389\n28022|0.69444\n28023|0.5\n28024|0.5\n28025|0.55556\n28026|0.41667\n28027|0.5\n28028|0.59722\n28029|0.75\n28030|0.72222\n28031|0.375\n28032|0.51389\n28033|0.5\n28034|0.55556\n28035|0.52778\n28036|0.41667\n28037|0.5\n28038|0.51389\n28039|0.84722\n28040|0.5\n28041|0.56944\n28042|0.625\n28043|0.5\n28044|0.5\n28045|0.45833\n28046|0.68056\n28047|0.5\n28048|0.63889\n28049|0.65278\n28050|0.5\n28051|0.66667\n28052|0.625\n28053|0.75\n28054|0.54167\n28055|0.83333\n28056|0.73611\n28057|0.72222\n28058|0.76389\n28059|0.77778\n28060|0.875\n28061|0.56944\n28062|0.34722\n28063|0.625\n28064|0.5\n28065|0.41667\n28066|0.26389\n28067|0.5\n28068|0.55208\n28069|0.69444\n28070|0.73611\n28071|0.69444\n28072|0.77778\n28073|0.69444\n28074|0.875\n28075|0.75\n28076|0.5\n28077|0.86111\n28078|0.84722\n28079|0.83333\n28080|0.76389\n28081|0.66667\n28082|0.40278\n28083|0.5\n28084|0.45833\n28085|0.5\n28086|0.5\n28087|0.79167\n28088|0.80556\n28089|0.68056\n28090|0.72222\n28091|0.5\n28092|0.5\n28093|0.76389\n28094|0.27778\n28095|0.52778\n28096|0.48611\n28097|0.5\n28098|0.65278\n28099|0.5\n28100|0.84722\n28101|0.5\n28102|0.5\n28103|0.5\n28104|0.5\n28105|0.75\n28106|0.55556\n28107|0.54167\n28108|0.81944\n28109|0.56944\n28110|0.69444\n28111|0.59722\n28112|0.55556\n28113|0.5\n28114|0.5\n28115|0.88889\n28116|0.65278\n28117|0.625\n28118|0.5\n28119|0.61111\n28120|0.86111\n28121|0.5\n28122|0.79167\n28123|0.83333\n28124|0.5\n28125|0.79167\n28126|0.80556\n28127|0.76389\n28128|0.5\n28129|0.18056\n28130|0.55556\n28131|0.81944\n28132|0.73611\n28133|0.55556\n28134|0.80556\n28135|0.5\n28136|0.73611\n28137|0.55556\n28138|0.52778\n28139|0.52083\n28140|0.48611\n28141|0.083333\n28142|0.5\n28143|0.61111\n28144|0.625\n28145|0.70833\n28146|0.625\n28147|0.61111\n28148|0.38889\n28149|0.58333\n28150|0.77778\n28151|0.41667\n28152|0.72222\n28153|0.55556\n28154|0.52778\n28155|0.77778\n28156|0.40278\n28157|0.5\n28158|0.59722\n28159|0.45833\n28160|0.59722\n28161|0.22222\n28162|0.44444\n28163|0.5\n28164|0.27778\n28165|0.44444\n28166|0.375\n28167|0.38889\n28168|0.5\n28169|0.65278\n28170|0.19444\n28171|0.47222\n28172|0.48958\n28173|0.52778\n28174|0.5\n28175|0.63889\n28176|0.61111\n28177|0.5\n28178|0.5\n28179|0.5\n28180|0.73611\n28181|0.5\n28182|0.5\n28183|0.63889\n28184|0.5\n28185|0.55556\n28186|0.86111\n28187|0.5\n28188|0.5\n28189|0.63889\n28190|0.77778\n28191|0.5\n28192|0.44444\n28193|0.61111\n28194|0.5\n28195|0.26389\n28196|0.58333\n28197|0.52778\n28198|0.66667\n28199|0.58333\n28200|0.90278\n28201|0.56944\n28202|0.76389\n28203|0.375\n28204|0.5\n28205|0.58333\n28206|0.51389\n28207|0.58333\n28208|0.625\n28209|0.5\n28210|0.5\n28211|0.33333\n28212|0.5\n28213|0.44444\n28214|0.5\n28215|0.61111\n28216|0.61111\n28217|0.58333\n28218|0.65278\n28219|0.68056\n28220|0.68056\n28221|0.5\n28222|0.55556\n28223|0.875\n28224|0.56944\n28225|0.5\n28226|0.73611\n28227|0.375\n28228|0.875\n28229|0.86111\n28230|0.76389\n28231|0.63889\n28232|0.61111\n28233|0.5\n28234|0.85417\n28235|0.5\n28236|0.5\n28237|0.5\n28238|0.5\n28239|0.81944\n28240|0.76389\n28241|0.79167\n28242|0.66667\n28243|0.69444\n28244|0.80556\n28245|0.26389\n28246|0.84722\n28247|0.5\n28248|0.61111\n28249|0.55556\n28250|0.58333\n28251|0.52778\n28252|0.75\n28253|0.75\n28254|0.75\n28255|0.88889\n28256|0.55556\n28257|0.69444\n28258|0.76389\n28259|0.59722\n28260|0.56944\n28261|0.65278\n28262|0.5\n28263|0.52778\n28264|0.58333\n28265|0.43056\n28266|0.25\n28267|0.72222\n28268|0.72222\n28269|0.81944\n28270|0.83333\n28271|0.65625\n28272|0.72222\n28273|0.68056\n28274|0.22222\n28275|0.5\n28276|0.5\n28277|0.75\n28278|0.5\n28279|0.83333\n28280|0.5\n28281|0.80556\n28282|0.58333\n28283|0.48611\n28284|0.66667\n28285|0.55556\n28286|0.98611\n28287|0.86111\n28288|0.5\n28289|0.5\n28290|0.70833\n28291|0.86111\n28292|0.69444\n28293|0.69444\n28294|0.69444\n28295|0.875\n28296|0.80556\n28297|0.83333\n28298|0.66667\n28299|0.63889\n28300|0.5\n28301|0.5\n28302|0.55208\n28303|0.63889\n28304|0.70833\n28305|0.75\n28306|0.36111\n28307|0.66667\n28308|0.5\n28309|0.77778\n28310|0.73611\n28311|0.5\n28312|0.16667\n28313|0.55556\n28314|0.66667\n28315|0.55556\n28316|0.54167\n28317|0.48611\n28318|0.69444\n28319|0.63889\n28320|0.54167\n28321|0.73611\n28322|0.93056\n28323|0.5\n28324|0.65278\n28325|0.61111\n28326|0.72222\n28327|0.68056\n28328|0.5\n28329|0.63889\n28330|0.65278\n28331|0.65278\n28332|0.55556\n28333|0.38889\n28334|0.66667\n28335|0.84722\n28336|0.84722\n28337|0.76389\n28338|0.76389\n28339|0.83333\n28340|0.81944\n28341|0.73611\n28342|0.5\n28343|0.86111\n28344|0.5\n28345|0.44444\n28346|0.59722\n28347|0.66667\n28348|0.5\n28349|0.66667\n28350|0.625\n28351|0.5\n28352|0.58333\n28353|0.5\n28354|0.73611\n28355|0.72222\n28356|0.84722\n28357|0.93056\n28358|0.5\n28359|0.59722\n28360|0.79167\n28361|0.59722\n28362|0.84722\n28363|0.61111\n28364|0.73611\n28365|0.65278\n28366|0.72222\n28367|0.77778\n28368|0.77778\n28369|0.5\n28370|0.33333\n28371|0.44444\n28372|0.36111\n28373|0.375\n28374|0.61111\n28375|0.58333\n28376|0.65278\n28377|0.75\n28378|0.69444\n28379|0.73611\n28380|0.66667\n28381|0.83333\n28382|0.80556\n28383|0.5\n28384|0.83333\n28385|0.75\n28386|0.38889\n28387|0.55556\n28388|0.58333\n28389|0.44444\n28390|0.5\n28391|0.59722\n28392|0.5\n28393|0.80556\n28394|0.58333\n28395|0.70833\n28396|0.75\n28397|0.61111\n28398|0.875\n28399|0.38889\n28400|0.23611\n28401|0.51389\n28402|0.73611\n28403|0.63889\n28404|0.61111\n28405|0.76389\n28406|0.63889\n28407|0.72222\n28408|0.69444\n28409|0.51389\n28410|0.72222\n28411|0.66667\n28412|0.80556\n28413|0.34722\n28414|0.22222\n28415|0.55556\n28416|0.59722\n28417|0.47222\n28418|0.625\n28419|0.44444\n28420|0.48611\n28421|0.48611\n28422|0.61111\n28423|0.45833\n28424|0.84722\n28425|0.44444\n28426|0.45833\n28427|0.51389\n28428|0.61111\n28429|0.5\n28430|0.5\n28431|0.48611\n28432|0.65278\n28433|0.5\n28434|0.5\n28435|0.81944\n28436|0.5\n28437|0.38889\n28438|0.68056\n28439|0.84722\n28440|0.63889\n28441|0.5\n28442|0.56944\n28443|0.5\n28444|0.79167\n28445|0.54167\n28446|0.5\n28447|0.5\n28448|0.5\n28449|0.54167\n28450|0.88889\n28451|0.5\n28452|0.5\n28453|0.5\n28454|0.90278\n28455|0.75\n28456|0.5\n28457|0.77778\n28458|0.5\n28459|0.54167\n28460|0.55556\n28461|0.5\n28462|0.5\n28463|0.63889\n28464|0.5\n28465|0.25\n28466|0.5\n28467|0.5\n28468|0.80556\n28469|0.5\n28470|0.5\n28471|0.48611\n28472|0.58333\n28473|0.5\n28474|0.55556\n28475|0.52778\n28476|0.84722\n28477|0.94444\n28478|0.75\n28479|0.625\n28480|0.58333\n28481|0.36111\n28482|0.47222\n28483|0.63889\n28484|0.44444\n28485|0.5\n28486|0.26389\n28487|0.61111\n28488|0.80556\n28489|0.625\n28490|0.72222\n28491|0.51389\n28492|0.47222\n28493|0.55556\n28494|0.70833\n28495|0.55556\n28496|0.51389\n28497|0.79167\n28498|0.5\n28499|0.61111\n28500|0.63889\n28501|0.58333\n28502|0.63889\n28503|0.70833\n28504|0.72222\n28505|0.66667\n28506|0.70833\n28507|0.875\n28508|0.48611\n28509|0.59722\n28510|0.5\n28511|0.30556\n28512|0.77778\n28513|0.54167\n28514|0.73611\n28515|0.68056\n28516|0.81944\n28517|0.72222\n28518|0.5\n28519|0.52778\n28520|0.69444\n28521|0.77778\n28522|0.81944\n28523|0.86458\n28524|0.83333\n28525|0.625\n28526|0.69444\n28527|0.38889\n28528|0.79167\n28529|0.8125\n28530|0.93056\n28531|0.5\n28532|0.52778\n28533|0.56944\n28534|0.77778\n28535|0.66667\n28536|0.76389\n28537|0.69444\n28538|0.86111\n28539|0.54167\n28540|0.52778\n28541|0.45833\n28542|0.55556\n28543|0.26389\n28544|0.59722\n28545|0.58333\n28546|0.61111\n28547|0.5\n28548|0.79167\n28549|0.54167\n28550|0.55556\n28551|0.44444\n28552|0.34722\n28553|0.75\n28554|0.65278\n28555|0.77778\n28556|0.25\n28557|0.5\n28558|0.66667\n28559|0.5\n28560|0.5\n28561|0.47222\n28562|0.72222\n28563|0.72222\n28564|0.25\n28565|0.55556\n28566|0.27778\n28567|0.55556\n28568|0.59722\n28569|0.56944\n28570|0.52778\n28571|0.56944\n28572|0.5\n28573|0.16667\n28574|0.55556\n28575|0.44444\n28576|0.5\n28577|0.5\n28578|0.29167\n28579|0.36111\n28580|0.375\n28581|0.70833\n28582|0.5\n28583|0.33333\n28584|0.59722\n28585|0.51389\n28586|0.73611\n28587|0.76389\n28588|0.77778\n28589|0.69444\n28590|0.76389\n28591|0.73611\n28592|0.77778\n28593|0.65278\n28594|0.65278\n28595|0.66667\n28596|0.63889\n28597|0.65278\n28598|0.625\n28599|0.5\n28600|0.83333\n28601|0.94444\n28602|0.5\n28603|0.875\n28604|0.5\n28605|0.66667\n28606|0.63889\n28607|0.84722\n28608|0.66667\n28609|0.76389\n28610|0.61111\n28611|0.73611\n28612|0.54167\n28613|0.5\n28614|0.40278\n28615|0.54167\n28616|0.73611\n28617|0.83333\n28618|0.76389\n28619|0.72222\n28620|0.5\n28621|0.45833\n28622|0.5\n28623|0.65278\n28624|0.625\n28625|0.61111\n28626|0.55556\n28627|0.80556\n28628|0.68056\n28629|0.75\n28630|0.70833\n28631|0.73611\n28632|0.125\n28633|0.30556\n28634|0.5\n28635|0.77778\n28636|0.52778\n28637|0.76389\n28638|0.79167\n28639|0.73611\n28640|0.72222\n28641|0.86111\n28642|0.72222\n28643|0.83333\n28644|0.23611\n28645|0.80556\n28646|0.51389\n28647|0.58333\n28648|0.55556\n28649|0.55556\n28650|0.65278\n28651|0.38889\n28652|0.58333\n28653|0.75\n28654|0.5\n28655|0.5\n28656|0.55556\n28657|0.52778\n28658|0.5\n28659|0.52778\n28660|0.45833\n28661|0.625\n28662|0.81944\n28663|0.61111\n28664|0.5\n28665|0.44444\n28666|0.27778\n28667|0.81944\n28668|0.5\n28669|0.5\n28670|0.81944\n28671|0.63889\n28672|0.90278\n28673|0.55556\n28674|0.5\n28675|0.5\n28676|0.63889\n28677|0.36111\n28678|0.66667\n28679|0.55556\n28680|0.81944\n28681|0.56944\n28682|0.81944\n28683|0.51389\n28684|0.5\n28685|0.5\n28686|0.40278\n28687|0.88889\n28688|0.5\n28689|0.5\n28690|0.54167\n28691|0.51389\n28692|0.66667\n28693|0.52778\n28694|0.5\n28695|0.51389\n28696|0.875\n28697|0.86111\n28698|0.875\n28699|0.73611\n28700|0.68056\n28701|0.75\n28702|0.72222\n28703|0.55556\n28704|0.76389\n28705|0.80556\n28706|0.72222\n28707|0.47222\n28708|0.56944\n28709|0.56944\n28710|0.5\n28711|0.66667\n28712|0.5\n28713|0.51389\n28714|0.5\n28715|0.65278\n28716|0.68056\n28717|0.39583\n28718|0.5\n28719|0.63889\n28720|0.72222\n28721|0.5\n28722|0.33333\n28723|0.65278\n28724|0.5\n28725|0.79167\n28726|0.73611\n28727|0.73611\n28728|0.5\n28729|0.51389\n28730|0.59722\n28731|0.61111\n28732|0.80556\n28733|0.76389\n28734|0.45833\n28735|0.48611\n28736|0.44444\n28737|0.61111\n28738|0.56944\n28739|0.61111\n28740|0.5\n28741|0.72222\n28742|0.61111\n28743|0.55556\n28744|0.48611\n28745|0.68056\n28746|0.44444\n28747|0.65278\n28748|0.52778\n28749|0.56944\n28750|0.77778\n28751|0.625\n28752|0.69444\n28753|0.5\n28754|0.77778\n28755|0.84722\n28756|0.54167\n28757|0.41667\n28758|0.5\n28759|0.55556\n28760|0.56944\n28761|0.76389\n28762|0.72222\n28763|0.5\n28764|0.80556\n28765|0.55556\n28766|0.36111\n28767|0.72222\n28768|0.23611\n28769|0.68056\n28770|0.5\n28771|0.5\n28772|0.5\n28773|0.38889\n28774|0.80556\n28775|0.58333\n28776|0.5\n28777|0.56944\n28778|0.33333\n28779|0.84722\n28780|0.5\n28781|0.55556\n28782|0.34722\n28783|0.44444\n28784|0.5\n28785|0.61111\n28786|0.45833\n28787|0.56944\n28788|0.5\n28789|0.77778\n28790|0.69444\n28791|0.90278\n28792|0.68056\n28793|0.47222\n28794|0.5\n28795|0.77778\n28796|0.75\n28797|0.83333\n28798|0.68056\n28799|0.5\n28800|0.40278\n28801|0.72222\n28802|0.47222\n28803|0.59722\n28804|0.77778\n28805|0.5\n28806|0.72222\n28807|0.70833\n28808|0.5\n28809|0.5\n28810|0.93056\n28811|0.91667\n28812|0.51389\n28813|0.88889\n28814|0.5\n28815|0.77778\n28816|0.83333\n28817|0.83333\n28818|0.72222\n28819|0.5\n28820|0.75\n28821|0.77778\n28822|0.86111\n28823|0.625\n28824|0.80556\n28825|0.58333\n28826|0.5\n28827|0.61111\n28828|0.66667\n28829|0.5\n28830|0.81944\n28831|0.70833\n28832|0.59722\n28833|0.77778\n28834|0.75\n28835|0.5\n28836|0.47222\n28837|0.54167\n28838|0.36111\n28839|0.44444\n28840|0.33333\n28841|0.5\n28842|0.45833\n28843|0.61111\n28844|0.80556\n28845|0.69444\n28846|0.94444\n28847|0.875\n28848|0.56944\n28849|0.61111\n28850|0.66667\n28851|0.65278\n28852|0.73611\n28853|0.51389\n28854|0.73611\n28855|0.45833\n28856|0.59722\n28857|0.45833\n28858|0.19444\n28859|0.69444\n28860|0.55556\n28861|0.5\n28862|0.72222\n28863|0.77778\n28864|0.44444\n28865|0.65278\n28866|0.83333\n28867|0.90278\n28868|0.79167\n28869|0.5\n28870|0.73611\n28871|0.81944\n28872|0.81944\n28873|0.25\n28874|0.5\n28875|0.61111\n28876|0.5\n28877|0.59722\n28878|0.38889\n28879|0.69444\n28880|0.65278\n28881|0.5\n28882|0.375\n28883|0.5\n28884|0.75\n28885|0.27778\n28886|0.47222\n28887|0.31944\n28888|0.63889\n28889|0.27778\n28890|0.52778\n28891|0.22222\n28892|0.65278\n28893|0.48611\n28894|0.51389\n28895|0.56944\n28896|0.5\n28897|0.375\n28898|0.68056\n28899|0.36111\n28900|0.5\n28901|0.69444\n28902|0.77778\n28903|0.43056\n28904|0.5625\n28905|0.72917\n28906|0.52778\n28907|0.83333\n28908|0.66667\n28909|0.72222\n28910|0.73611\n28911|0.875\n28912|0.81944\n28913|0.72222\n28914|0.47222\n28915|0.65278\n28916|0.83333\n28917|0.75\n28918|0.38889\n28919|0.48611\n28920|0.36111\n28921|0.79167\n28922|0.5\n28923|0.83333\n28924|0.125\n28925|0.54167\n28926|0.26389\n28927|0.44444\n28928|0.47222\n28929|0.375\n28930|0.5\n28931|0.54167\n28932|0.56944\n28933|0.5\n28934|0.63889\n28935|0.83333\n28936|0.59722\n28937|0.55556\n28938|0.77778\n28939|0.61111\n28940|0.47222\n28941|0.83333\n28942|0.5\n28943|0.52778\n28944|0.41667\n28945|0.34722\n28946|0.125\n28947|0.66667\n28948|0.61111\n28949|0.66667\n28950|0.65278\n28951|0.36111\n28952|0.47222\n28953|0.13889\n28954|0.36111\n28955|0.41667\n28956|0.55556\n28957|0.58333\n28958|0.51389\n28959|0.5\n28960|0.63889\n28961|0.76389\n28962|0.5\n28963|0.63889\n28964|0.5\n28965|0.5\n28966|0.58333\n28967|0.63889\n28968|0.94444\n28969|0.5\n28970|0.5\n28971|0.66667\n28972|0.5\n28973|0.27778\n28974|0.5\n28975|0.5\n28976|0.58333\n28977|0.41667\n28978|0.66667\n28979|0.70833\n28980|0.5\n28981|0.81944\n28982|0.5\n28983|0.69444\n28984|0.5\n28985|0.83333\n28986|0.40278\n28987|0.5\n28988|0.52778\n28989|0.83333\n28990|0.47222\n28991|0.5\n28992|0.70833\n28993|0.47222\n28994|0.5\n28995|0.44444\n28996|0.68056\n28997|0.18056\n28998|0.33333\n28999|0.81944\n29000|0.54167\n29001|0.83333\n29002|0.70833\n29003|0.5\n29004|0.61111\n29005|0.76389\n29006|0.625\n29007|0.55556\n29008|0.54167\n29009|0.77778\n29010|0.66667\n29011|0.65278\n29012|0.66667\n29013|0.72222\n29014|0.55556\n29015|0.48611\n29016|0.86111\n29017|0.73611\n29018|0.55556\n29019|0.5\n29020|0.5\n29021|0.5\n29022|0.55556\n29023|0.5\n29024|0.79167\n29025|0.55556\n29026|0.84722\n29027|0.69444\n29028|0.81944\n29029|0.625\n29030|0.66667\n29031|0.97222\n29032|0.55556\n29033|0.72222\n29034|0.81944\n29035|0.5\n29036|0.55556\n29037|0.58333\n29038|0.70833\n29039|0.68056\n29040|0.97222\n29041|0.86111\n29042|0.63889\n29043|0.69444\n29044|0.83333\n29045|0.84722\n29046|0.90625\n29047|0.66667\n29048|0.73611\n29049|0.44444\n29050|0.5\n29051|0.61111\n29052|0.63889\n29053|0.93056\n29054|0.51389\n29055|0.86111\n29056|0.70833\n29057|0.75\n29058|0.66667\n29059|0.33333\n29060|0.48611\n29061|0.54167\n29062|0.40278\n29063|0.44444\n29064|0.5\n29065|0.51389\n29066|0.81944\n29067|0.86458\n29068|0.83333\n29069|0.90278\n29070|0.84722\n29071|0.55556\n29072|0.375\n29073|0.29167\n29074|0.88889\n29075|0.58333\n29076|0.61111\n29077|0.58333\n29078|0.48611\n29079|0.72222\n29080|0.58333\n29081|0.79167\n29082|0.875\n29083|0.61111\n29084|0.875\n29085|0.83333\n29086|0.55556\n29087|0.73611\n29088|0.27778\n29089|0.65278\n29090|0.69444\n29091|0.76389\n29092|0.59722\n29093|0.70833\n29094|0.44444\n29095|0.44444\n29096|0.47222\n29097|0.68056\n29098|0.54167\n29099|0.77778\n29100|0.51389\n29101|0.27778\n29102|0.68056\n29103|0.58333\n29104|0.54167\n29105|0.66667\n29106|0.84722\n29107|0.56944\n29108|0.72222\n29109|0.55556\n29110|0.38889\n29111|0.55556\n29112|0.61111\n29113|0.58333\n29114|0.69444\n29115|0.83333\n29116|0.55556\n29117|0.76389\n29118|0.55556\n29119|0.5\n29120|0.5\n29121|0.55556\n29122|0.36111\n29123|0.79167\n29124|0.68056\n29125|0.5\n29126|0.5\n29127|0.5\n29128|0.54167\n29129|0.5\n29130|0.63889\n29131|0.70833\n29132|0.5\n29133|0.5\n29134|0.5\n29135|0.34722\n29136|0.5\n29137|0.5\n29138|0.5\n29139|0.5\n29140|0.5\n29141|0.73611\n29142|0.5625\n29143|0.72222\n29144|0.84722\n29145|0.59722\n29146|0.66667\n29147|0.5\n29148|0.5\n29149|0.5\n29150|0.55556\n29151|0.625\n29152|0.55556\n29153|0.75\n29154|0.33333\n29155|0.44444\n29156|0.58333\n29157|0.61111\n29158|0.69444\n29159|0.38889\n29160|0.45833\n29161|0.77778\n29162|0.5\n29163|0.56944\n29164|0.47917\n29165|0.45833\n29166|0.68056\n29167|0.61111\n29168|0.55556\n29169|0.5\n29170|0.61111\n29171|0.48611\n29172|0.72222\n29173|0.43056\n29174|0.54167\n29175|0.61111\n29176|0.56944\n29177|0.61111\n29178|0.66667\n29179|0.51389\n29180|0.27778\n29181|0.31944\n29182|0.40278\n29183|0.66667\n29184|0.58333\n29185|0.33333\n29186|0.54167\n29187|0.56944\n29188|0.30556\n29189|0.41667\n29190|0.75\n29191|0.90278\n29192|0.33333\n29193|0.56944\n29194|0.5\n29195|0.5\n29196|0.5\n29197|0.16667\n29198|0.80556\n29199|0.61111\n29200|0.80556\n29201|0.30556\n29202|0.38889\n29203|0.55556\n29204|0.52778\n29205|0.5\n29206|0.44444\n29207|0.5\n29208|0.58333\n29209|0.38889\n29210|0.625\n29211|0.5\n29212|0.80556\n29213|0.88889\n29214|0.625\n29215|0.68056\n29216|0.54167\n29217|0.56944\n29218|0.54167\n29219|0.60417\n29220|0.86111\n29221|0.58333\n29222|0.54167\n29223|0.20833\n29224|0.59722\n29225|0.5\n29226|0.52778\n29227|0.58333\n29228|0.61111\n29229|0.5\n29230|0.5\n29231|0.55556\n29232|0.48611\n29233|0.58333\n29234|0.5\n29235|0.91667\n29236|0.51389\n29237|0.68056\n29238|0.73611\n29239|0.5\n29240|0.77778\n29241|0.61111\n29242|0.5\n29243|0.80556\n29244|0.625\n29245|0.65278\n29246|0.70833\n29247|0.66667\n29248|0.73611\n29249|0.72222\n29250|0.5\n29251|0.47222\n29252|0.52778\n29253|0.56944\n29254|0.83333\n29255|0.52778\n29256|0.5\n29257|0.66667\n29258|0.68056\n29259|0.5\n29260|0.625\n29261|0.51389\n29262|0.48611\n29263|0.58333\n29264|0.73611\n29265|0.72222\n29266|0.81944\n29267|0.90278\n29268|0.79167\n29269|0.75\n29270|0.63889\n29271|0.84722\n29272|0.38889\n29273|0.61111\n29274|0.55556\n29275|0.5\n29276|0.5\n29277|0.5\n29278|0.81944\n29279|0.51389\n29280|0.5\n29281|0.81944\n29282|0.76389\n29283|0.66667\n29284|0.61111\n29285|0.75\n29286|0.58333\n29287|0.59722\n29288|0.5\n29289|0.55556\n29290|0.84722\n29291|0.5\n29292|0.33333\n29293|0.51389\n29294|0.58333\n29295|0.875\n29296|0.45833\n29297|0.72222\n29298|0.59722\n29299|0.625\n29300|0.5\n29301|0.61458\n29302|0.27778\n29303|0.52778\n29304|0.625\n29305|0.43056\n29306|0.31944\n29307|0.18056\n29308|0.5\n29309|0.55556\n29310|0.61111\n29311|0.5\n29312|0.80556\n29313|0.44444\n29314|0.23611\n29315|0.5\n29316|0.52778\n29317|0.72222\n29318|0.68056\n29319|0.5\n29320|0.72222\n29321|0.59722\n29322|0.84722\n29323|0.80556\n29324|0.5\n29325|0.5\n29326|0.5\n29327|0.66667\n29328|0.22222\n29329|0.5\n29330|0.5\n29331|0.55556\n29332|0.69444\n29333|0.5\n29334|0.5\n29335|0.5\n29336|0.70833\n29337|0.63889\n29338|0.54167\n29339|0.59722\n29340|0.33333\n29341|0.79167\n29342|0.41667\n29343|0.5\n29344|0.5\n29345|0.65278\n29346|0.65278\n29347|0.5\n29348|0.44444\n29349|0.77778\n29350|0.52778\n29351|0.45833\n29352|0.48611\n29353|0.5\n29354|0.38889\n29355|0.45833\n29356|0.36111\n29357|0.66667\n29358|0.875\n29359|0.5\n29360|0.5\n29361|0.90278\n29362|0.90278\n29363|0.27778\n29364|0.38889\n29365|0.5\n29366|0.5\n29367|0.79167\n29368|0.5\n29369|0.13889\n29370|0.055556\n29371|0.40278\n29372|0.375\n29373|0.5\n29374|0.77778\n29375|0.5\n29376|0.5\n29377|0.72222\n29378|0.59722\n29379|0.47222\n29380|0.5\n29381|0.5\n29382|0.44444\n29383|0.43056\n29384|0.45833\n29385|0.70833\n29386|0.22222\n29387|0.5\n29388|0.5\n29389|0.5\n29390|0.5\n29391|0.5\n29392|0.54167\n29393|0.70833\n29394|0.58333\n29395|0.61111\n29396|0.61111\n29397|0.52778\n29398|0.5\n29399|0.44444\n29400|0.65278\n29401|0.77778\n29402|0.5\n29403|0.27778\n29404|0.72222\n29405|0.68056\n29406|0.41667\n29407|0.48611\n29408|0.80556\n29409|0.83333\n29410|0.77778\n29411|0.375\n29412|0.40278\n29413|0.54167\n29414|0.56944\n29415|0.38889\n29416|0.77778\n29417|0.66667\n29418|0.34722\n29419|0.73611\n29420|0.43056\n29421|0.55556\n29422|0.875\n29423|0.88889\n29424|0.66667\n29425|0.26389\n29426|0.70833\n29427|0.65278\n29428|0.68056\n29429|0.80556\n29430|0.70833\n29431|0.5\n29432|0.27778\n29433|0.70833\n29434|0.52778\n29435|0.90278\n29436|0.84722\n29437|0.51389\n29438|0.59722\n29439|0.77778\n29440|0.56944\n29441|0.61111\n29442|0.81944\n29443|0.61111\n29444|0.72222\n29445|0.55556\n29446|0.63889\n29447|0.11111\n29448|0.63889\n29449|0.44444\n29450|0.5\n29451|0.80556\n29452|0.75\n29453|0.76389\n29454|0.93056\n29455|0.86111\n29456|0.83333\n29457|0.77778\n29458|0.91667\n29459|0.90278\n29460|0.52778\n29461|0.80556\n29462|0.70833\n29463|0.66667\n29464|0.65278\n29465|0.61111\n29466|0.72222\n29467|0.55556\n29468|0.79167\n29469|0.68056\n29470|0.58333\n29471|0.69444\n29472|0.72222\n29473|0.72222\n29474|0.51389\n29475|0.29167\n29476|0.5\n29477|0.43056\n29478|0.625\n29479|0.77778\n29480|0.72222\n29481|0.70833\n29482|0.69444\n29483|0.83333\n29484|0.77778\n29485|0.5\n29486|0.44444\n29487|0.29167\n29488|0.33333\n29489|0.80556\n29490|0.75\n29491|0.40278\n29492|0.48611\n29493|0.68056\n29494|0.56944\n29495|0.5\n29496|0.45833\n29497|0.72222\n29498|0.83333\n29499|0.61111\n29500|0.5\n29501|0.36111\n29502|0.61111\n29503|0.52778\n29504|0.69444\n29505|0.45833\n29506|0.86111\n29507|0.66667\n29508|0.44444\n29509|0.45833\n29510|0.45833\n29511|0.5\n29512|0.34722\n29513|0.44444\n29514|0.33333\n29515|0.65278\n29516|0.69444\n29517|0.45833\n29518|0.625\n29519|0.5\n29520|0.63889\n29521|0.5\n29522|0.5\n29523|0.5\n29524|0.79167\n29525|0.81944\n29526|0.30556\n29527|0.70833\n29528|0.58333\n29529|0.5\n29530|0.55556\n29531|0.5\n29532|0.94444\n29533|0.56944\n29534|0.47222\n29535|0.55556\n29536|0.61111\n29537|0.61111\n29538|0.65278\n29539|0.63889\n29540|0.5\n29541|0.5\n29542|0.81944\n29543|0.52778\n29544|0.375\n29545|0.44444\n29546|0.5\n29547|0.66667\n29548|0.5\n29549|0.5\n29550|0.68056\n29551|0.76389\n29552|0.5\n29553|0.79167\n29554|0.58333\n29555|0.75\n29556|0.65278\n29557|0.90278\n29558|0.91667\n29559|0.88889\n29560|0.55556\n29561|0.625\n29562|0.55556\n29563|0.79167\n29564|0.72222\n29565|0.625\n29566|0.81944\n29567|0.88889\n29568|0.55556\n29569|0.5\n29570|0.70833\n29571|0.45833\n29572|0.61458\n29573|0.63889\n29574|0.66667\n29575|0.56944\n29576|0.69444\n29577|0.72222\n29578|0.5\n29579|0.54167\n29580|0.63889\n29581|0.5\n29582|0.25\n29583|0.5\n29584|0.5\n29585|0.41667\n29586|0.5\n29587|0.5\n29588|0.48611\n29589|0.5\n29590|0.5\n29591|0.5\n29592|0.5\n29593|0.61111\n29594|0.55556\n29595|0.5\n29596|0.5\n29597|0.51389\n29598|0.5\n29599|0.66667\n29600|0.73611\n29601|0.5\n29602|0.31944\n29603|0.5\n29604|0.5\n29605|0.44444\n29606|0.5\n29607|0.5\n29608|0.5\n29609|0.5\n29610|0.5\n29611|0.5\n29612|0.5\n29613|0.19792\n29614|0.44444\n29615|0.56944\n29616|0.77778\n29617|0.66667\n29618|0.72222\n29619|0.56944\n29620|0.54167\n29621|0.5\n29622|0.51389\n29623|0.375\n29624|0.5\n29625|0.72222\n29626|0.5\n29627|0.54167\n29628|0.51389\n29629|0.68056\n29630|0.65278\n29631|0.56944\n29632|0.63889\n29633|0.43056\n29634|0.68056\n29635|0.40278\n29636|0.34722\n29637|0.31944\n29638|0.30556\n29639|0.23611\n29640|0.41667\n29641|0.66667\n29642|0.38889\n29643|0.34722\n29644|0.29167\n29645|0.44444\n29646|0.54167\n29647|0.5\n29648|0.44444\n29649|0.5\n29650|0.43056\n29651|0.84722\n29652|0.5\n29653|0.22222\n29654|0.25\n29655|0.47222\n29656|0.84722\n29657|0.76389\n29658|0.63889\n29659|0.68056\n29660|0.58333\n29661|0.59722\n29662|0.52778\n29663|0.55556\n29664|0.11111\n29665|0.5\n29666|0.11111\n29667|0.33333\n29668|0.33333\n29669|0.5\n29670|0.5\n29671|0.5\n29672|0.55556\n29673|0.5\n29674|0.47222\n29675|0.5\n29676|0.5\n29677|0.5\n29678|0.5\n29679|0.73611\n29680|0.625\n29681|0.58333\n29682|0.66667\n29683|0.48611\n29684|0.43056\n29685|0.51389\n29686|0.40278\n29687|0.66667\n29688|0.625\n29689|0.5\n29690|0.56944\n29691|0.36111\n29692|0.77778\n29693|0.5\n29694|0.65278\n29695|0.55556\n29696|0.72222\n29697|0.83333\n29698|0.84722\n29699|0.75\n29700|0.59722\n29701|0.5\n29702|0.5\n29703|0.56944\n29704|0.27778\n29705|0.38889\n29706|0.52778\n29707|0.77778\n29708|0.38889\n29709|0.5\n29710|0.36111\n29711|0.61111\n29712|0.81944\n29713|0.66667\n29714|0.52778\n29715|0.27778\n29716|0.66667\n29717|0.5\n29718|0.5\n29719|0.5\n29720|0.55556\n29721|0.5\n29722|0.55556\n29723|0.76389\n29724|0.79167\n29725|0.83333\n29726|0.5\n29727|0.72222\n29728|0.69444\n29729|0.94444\n29730|0.55556\n29731|0.5\n29732|0.77778\n29733|0.86111\n29734|0.84722\n29735|0.90278\n29736|0.55556\n29737|0.55556\n29738|0.73611\n29739|0.66667\n29740|0.5\n29741|0.72222\n29742|0.875\n29743|0.73611\n29744|0.72222\n29745|0.77778\n29746|0.70833\n29747|0.58333\n29748|1\n29749|0.88889\n29750|0.79167\n29751|0.86111\n29752|0.80556\n29753|0.75\n29754|0.75\n29755|0.73611\n29756|0.45833\n29757|0.72222\n29758|0.44444\n29759|0.56944\n29760|0.70833\n29761|0.69444\n29762|0.27778\n29763|0.66667\n29764|0.68056\n29765|0.30556\n29766|0.65278\n29767|0.66667\n29768|0.56944\n29769|0.61111\n29770|0.44444\n29771|0.5\n29772|0.5\n29773|0.70833\n29774|0.88889\n29775|0.34722\n29776|0.38889\n29777|0.5\n29778|0.83333\n29779|0.5\n29780|0.66667\n29781|0.75\n29782|0.59722\n29783|0.72222\n29784|0.51389\n29785|0.44444\n29786|0.84722\n29787|0.80556\n29788|0.61111\n29789|0.625\n29790|0.81944\n29791|0.56944\n29792|0.66667\n29793|0.58333\n29794|0.75\n29795|0.73611\n29796|0.76389\n29797|0.5\n29798|0.56944\n29799|0.48611\n29800|0.69444\n29801|0.44444\n29802|0.54167\n29803|0.33333\n29804|0.65278\n29805|0.61111\n29806|0.81944\n29807|0.51389\n29808|0.38889\n29809|0.90278\n29810|0.47222\n29811|0.70833\n29812|0.68056\n29813|0.63889\n29814|0.73611\n29815|0.59722\n29816|0.72222\n29817|0.61111\n29818|0.5\n29819|0.5\n29820|0.79167\n29821|0.79167\n29822|0.59722\n29823|0.72222\n29824|0.75\n29825|0.875\n29826|0.83333\n29827|0.72222\n29828|0.80556\n29829|0.75\n29830|0.41667\n29831|0.5\n29832|0.875\n29833|0.63889\n29834|0.80556\n29835|0.70833\n29836|0.79167\n29837|0.31944\n29838|0.80556\n29839|0.44444\n29840|0.63889\n29841|0.84722\n29842|0.70833\n29843|0.63889\n29844|0.51389\n29845|0.52778\n29846|0.55556\n29847|0.25\n29848|0.55556\n29849|0.41667\n29850|0.5\n29851|0.77778\n29852|0.51389\n29853|0.58333\n29854|0.56944\n29855|0.5\n29856|0.90278\n29857|0.625\n29858|0.625\n29859|0.5\n29860|0.58333\n29861|0.34722\n29862|0.80556\n29863|0.79167\n29864|0.5\n29865|0.66667\n29866|0.26389\n29867|0.77778\n29868|0.65278\n29869|0.72222\n29870|0.69444\n29871|0.90278\n29872|0.83333\n29873|0.88889\n29874|0.70833\n29875|0.51389\n29876|0.83333\n29877|0.33333\n29878|0.41667\n29879|0.75\n29880|0.30556\n29881|0.22222\n29882|0.59722\n29883|0.58333\n29884|0.77778\n29885|0.63889\n29886|0.54167\n29887|0.79167\n29888|0.80556\n29889|0.18056\n29890|0.55556\n29891|0.79167\n29892|0.45833\n29893|0.5\n29894|0.5\n29895|0.5\n29896|0.59722\n29897|0.44444\n29898|0.5\n29899|0.5\n29900|0.77778\n29901|0.5\n29902|0.5\n29903|0.5\n29904|0.51389\n29905|0.5\n29906|0.69444\n29907|0.5\n29908|0.36458\n29909|0.5\n29910|0.69444\n29911|0.86111\n29912|0.93056\n29913|0.43056\n29914|0.66667\n29915|0.55556\n29916|0.5\n29917|0.55556\n29918|0.5\n29919|0.66667\n29920|0.63889\n29921|0.65278\n29922|0.5\n29923|0.69444\n29924|0.54167\n29925|0.81944\n29926|0.95833\n29927|0.51389\n29928|0.48611\n29929|0.5\n29930|0.5\n29931|0.63889\n29932|0.51389\n29933|0.44444\n29934|0.5\n29935|0.52778\n29936|0.5\n29937|0.55556\n29938|0.55556\n29939|0.76389\n29940|0.80556\n29941|0.33333\n29942|0.40278\n29943|0.65278\n29944|0.5\n29945|0.95833\n29946|0.54167\n29947|0.54167\n29948|0.72222\n29949|0.61111\n29950|0.48611\n29951|0.375\n29952|0.58333\n29953|0.65278\n29954|0.5\n29955|0.22222\n29956|0.56944\n29957|0.66667\n29958|0.47222\n29959|0.5\n29960|0.79167\n29961|0.79167\n29962|0.38889\n29963|0.70833\n29964|0.59722\n29965|0.48611\n29966|0.79167\n29967|0.44444\n29968|0.55556\n29969|0.47222\n29970|0.5\n29971|0.36111\n29972|0.5\n29973|0.5\n29974|0.33333\n29975|0.5\n29976|0.61111\n29977|0.43056\n29978|0.5\n29979|0.52778\n29980|0.5\n29981|0.80556\n29982|0.56944\n29983|0.33333\n29984|0.65278\n29985|0.625\n29986|0.82292\n29987|0.625\n29988|0.75\n29989|0.81944\n29990|0.23611\n29991|0.57292\n29992|0.77778\n29993|0.83333\n29994|0.72222\n29995|0.38889\n29996|0.625\n29997|0.63889\n29998|0.59722\n29999|0.52778\n30000|0.58333\n30001|0.55556\n30002|0.5\n30003|0.51389\n30004|0.38889\n30005|0.875\n30006|0.83333\n30007|0.86111\n30008|0.83333\n30009|0.45833\n30010|0.61111\n30011|0.59722\n30012|0.56944\n30013|0.81944\n30014|0.88889\n30015|0.55556\n30016|0.64583\n30017|0.25\n30018|0.5\n30019|0.65278\n30020|0.75\n30021|0.51389\n30022|0.51389\n30023|0.72222\n30024|0.88889\n30025|0.81944\n30026|0.76389\n30027|0.73611\n30028|0.72222\n30029|0.56944\n30030|0.61111\n30031|0.5\n30032|0.66667\n30033|0.5\n30034|0.61111\n30035|0.5\n30036|0.5\n30037|0.52778\n30038|0.76042\n30039|0.77778\n30040|0.69444\n30041|0.31944\n30042|0.5\n30043|0.80556\n30044|0.44444\n30045|0.72222\n30046|0.5\n30047|0.5\n30048|0.44444\n30049|0.47222\n30050|0.58333\n30051|0.5\n30052|0.81944\n30053|0.56944\n30054|0.68056\n30055|0.93056\n30056|0.5\n30057|0.5\n30058|0.26389\n30059|0.56944\n30060|0.5\n30061|0.5\n30062|0.5\n30063|0.36111\n30064|0.45833\n30065|0.69444\n30066|0.40278\n30067|0.5\n30068|0.625\n30069|0.93056\n30070|0.875\n30071|0.76389\n30072|0.5\n30073|0.44444\n30074|0.5\n30075|0.38889\n30076|0.5\n30077|0.5\n30078|0.5\n30079|0.55556\n30080|0.27778\n30081|0.63889\n30082|0.5\n30083|0.51389\n30084|0.56944\n30085|0.70833\n30086|0.72222\n30087|0.33333\n30088|0.5\n30089|0.5\n30090|0.5\n30091|0.5\n30092|0.30556\n30093|0.55556\n30094|0.625\n30095|0.88889\n30096|0.54167\n30097|0.43056\n30098|0.59722\n30099|0.54167\n30100|0.5\n30101|0.51389\n30102|0.55556\n30103|0.75\n30104|0.375\n30105|0.5\n30106|0.5\n30107|0.80556\n30108|0.69444\n30109|0.75\n30110|0.45833\n30111|0.72222\n30112|0.70833\n30113|0.625\n30114|0.625\n30115|0.75\n30116|0.76389\n30117|0.61111\n30118|0.76389\n30119|0.72222\n30120|0.75\n30121|0.77778\n30122|0.77778\n30123|0.26389\n30124|0.31944\n30125|0.65278\n30126|0.875\n30127|0.61111\n30128|0.5\n30129|0.65278\n30130|0.5\n30131|0.5\n30132|0.70833\n30133|0.68056\n30134|0.51389\n30135|0.81944\n30136|0.84722\n30137|0.76389\n30138|0.15278\n30139|0.069444\n30140|0.5\n30141|0.5\n30142|0.45833\n30143|0.55556\n30144|0.45833\n30145|0.40278\n30146|0.26389\n30147|0.055556\n30148|0.5\n30149|0.36111\n30150|0.59722\n30151|0.43056\n30152|0.58333\n30153|0.61111\n30154|0.81944\n30155|0.77778\n30156|0.52778\n30157|0.54167\n30158|0.43056\n30159|0.27778\n30160|0.30556\n30161|0.51389\n30162|0.59722\n30163|0.54167\n30164|0.5\n30165|0.5\n30166|0.36111\n30167|0.61111\n30168|0.5\n30169|0.95833\n30170|0.86111\n30171|1\n30172|0.625\n30173|0.61111\n30174|0.5\n30175|0.55556\n30176|0.5\n30177|0.56944\n30178|0.95833\n30179|0.83333\n30180|0.5\n30181|0.5\n30182|0.52778\n30183|0.5\n30184|0.65278\n30185|0.38889\n30186|0.77778\n30187|0.52778\n30188|0.56944\n30189|0.5\n30190|0.43056\n30191|0.5\n30192|0.5\n30193|0.59722\n30194|0.5\n30195|0.52778\n30196|0.61111\n30197|0.56944\n30198|0.38889\n30199|0.22222\n30200|0.11111\n30201|0.30556\n30202|0.48611\n30203|0.5\n30204|0.69444\n30205|0.80556\n30206|0.875\n30207|0.5\n30208|0.52778\n30209|0.84722\n30210|0.55556\n30211|0.59722\n30212|0.81944\n30213|0.80556\n30214|0.75\n30215|0.72222\n30216|0.33333\n30217|0.70833\n30218|0.68056\n30219|0.56944\n30220|0.56944\n30221|0.65278\n30222|0.55556\n30223|0.56944\n30224|0.79167\n30225|0.31944\n30226|0.30556\n30227|0.58333\n30228|0.66667\n30229|0.47222\n30230|0.70833\n30231|0.65278\n30232|0.55556\n30233|0.48611\n30234|0.5\n30235|0.5\n30236|0.58333\n30237|0.5\n30238|0.375\n30239|0.33333\n30240|0.5\n30241|0.5\n30242|0.5\n30243|0.52778\n30244|0.75\n30245|0.61111\n30246|0.40278\n30247|0.63889\n30248|0.51389\n30249|0.625\n30250|0.55556\n30251|0.58333\n30252|0.5\n30253|0.5\n30254|0.59722\n30255|0.5\n30256|0.94444\n30257|0.55556\n30258|0.61111\n30259|0.38889\n30260|0.59722\n30261|0.54167\n30262|0.51389\n30263|0.5\n30264|0.77778\n30265|0.56944\n30266|0.58333\n30267|0.86111\n30268|0.75\n30269|0.77778\n30270|0.5\n30271|0.44444\n30272|0.55556\n30273|0.56944\n30274|0.83333\n30275|0.76389\n30276|0.55556\n30277|0.5\n30278|0.69444\n30279|0.52778\n30280|0.55556\n30281|0.66667\n30282|0.5\n30283|0.5\n30284|0.5\n30285|0.44444\n30286|0.63889\n30287|0.5\n30288|0.66667\n30289|0.5\n30290|0.5\n30291|0.63889\n30292|0.59722\n30293|0.77778\n30294|0.81944\n30295|0.76389\n30296|0.56944\n30297|0.66667\n30298|0.79167\n30299|0.73611\n30300|0.56944\n30301|0.76389\n30302|0.5\n30303|0.56944\n30304|0.61111\n30305|0.30556\n30306|0.31944\n30307|0.63889\n30308|0.27778\n30309|0.19444\n30310|0.41667\n30311|0.55556\n30312|0.5\n30313|0.30556\n30314|0.625\n30315|0.61111\n30316|0.75\n30317|0.77778\n30318|0.45833\n30319|0.5\n30320|0.58333\n30321|0.61111\n30322|0.625\n30323|0.26389\n30324|0.40278\n30325|0.5\n30326|0.61111\n30327|0.44444\n30328|0.5\n30329|0.47222\n30330|0.5\n30331|0.51389\n30332|0.5\n30333|0.66667\n30334|0.51389\n30335|0.56944\n30336|0.5\n30337|0.5\n30338|0.30556\n30339|0.41667\n30340|0.33333\n30341|0.5\n30342|0.54167\n30343|0.63889\n30344|0.63889\n30345|0.48611\n30346|0.63889\n30347|0.80556\n30348|0.72222\n30349|0.5\n30350|0.55556\n30351|0.66667\n30352|0.52778\n30353|0.5\n30354|0.55556\n30355|0.77778\n30356|0.72222\n30357|0.76042\n30358|0.72222\n30359|0.55556\n30360|0.63889\n30361|0.63889\n30362|0.65278\n30363|0.52778\n30364|0.65278\n30365|0.4375\n30366|0.41667\n30367|0.77778\n30368|0.52778\n30369|0.5\n30370|0.76389\n30371|0.66667\n30372|0.56944\n30373|0.38889\n30374|0.55556\n30375|0.43056\n30376|0.5\n30377|0.29167\n30378|0.5\n30379|0.5\n30380|0.5\n30381|0.5\n30382|0.5\n30383|0.45833\n30384|0.5\n30385|0.75\n30386|0.27778\n30387|0.23611\n30388|0.55556\n30389|0.76389\n30390|0.72222\n30391|0.59722\n30392|0.38889\n30393|0.44444\n30394|0.45833\n30395|0.65278\n30396|0.61111\n30397|0.66667\n30398|0.76389\n30399|0.5\n30400|0.5\n30401|0.5\n30402|0.73611\n30403|0.76389\n30404|0.51389\n30405|0.45833\n30406|0.5\n30407|0.77778\n30408|0.75\n30409|0.61111\n30410|0.80556\n30411|0.52778\n30412|0.83333\n30413|0.83333\n30414|0.5\n30415|0.51389\n30416|0.5\n30417|0.58333\n30418|0.52778\n30419|0.5\n30420|0.55556\n30421|0.81944\n30422|0.72222\n30423|0.54167\n30424|0.66667\n30425|0.45833\n30426|0.41667\n30427|0.52778\n30428|0.41667\n30429|0.5\n30430|0.5\n30431|0.20833\n30432|0.41667\n30433|0.44444\n30434|0.65278\n30435|0.63889\n30436|0.65278\n30437|0.81944\n30438|0.83333\n30439|0.5\n30440|0.72222\n30441|0.77778\n30442|0.5\n30443|0.5\n30444|0.52778\n30445|0.5\n30446|0.5\n30447|0.72222\n30448|0.88889\n30449|0.80556\n30450|0.27778\n30451|0.52778\n30452|0.5\n30453|0.54167\n30454|0.5\n30455|0.54167\n30456|0.72222\n30457|0.61111\n30458|0.59722\n30459|0.40278\n30460|0.61111\n30461|0.44444\n30462|0.61111\n30463|0.66667\n30464|0.69444\n30465|0.5\n30466|0.79167\n30467|0.72222\n30468|0.44444\n30469|0.47222\n30470|0.63889\n30471|0.18056\n30472|0.91667\n30473|0.84722\n30474|0.88889\n30475|0.86111\n30476|0.66667\n30477|0.66667\n30478|0.84722\n30479|0.83333\n30480|0.94444\n30481|0.5\n30482|0.55556\n30483|0.81944\n30484|0.81944\n30485|0.69792\n30486|0.72222\n30487|0.73611\n30488|0.5\n30489|0.5\n30490|0.5\n30491|0.68056\n30492|0.51042\n30493|0.66667\n30494|0.51389\n30495|0.72917\n30496|0.51389\n30497|0.27778\n30498|0.65278\n30499|0.45833\n30500|0.54167\n30501|0.51389\n30502|0.31944\n30503|0.875\n30504|0.36111\n30505|0.55556\n30506|0.625\n30507|0.55556\n30508|0.40278\n30509|0.41667\n30510|0.51389\n30511|0.44444\n30512|0.5\n30513|0.45833\n30514|0.5\n30515|0.59722\n30516|0.5\n30517|0.45833\n30518|0.47222\n30519|0.5\n30520|0.72222\n30521|0.27778\n30522|0.48611\n30523|0.19792\n30524|0.70833\n30525|0.70833\n30526|0.5\n30527|0.44792\n30528|0.15278\n30529|0.69444\n30530|0.72222\n30531|0.5\n30532|0.84722\n30533|0.52778\n30534|0.5\n30535|0.55556\n30536|0.69444\n30537|0.5\n30538|0.88889\n30539|0.58333\n30540|0.52778\n30541|0.5\n30542|0.5\n30543|0.5\n30544|0.51389\n30545|0.65278\n30546|0.33333\n30547|0.38889\n30548|0.56944\n30549|0.5\n30550|0.5\n30551|0.45833\n30552|0.70833\n30553|0.75\n30554|0.75\n30555|0.5\n30556|0.51389\n30557|0.68056\n30558|0.44444\n30559|0.86111\n30560|0.40278\n30561|0.27778\n30562|0.52778\n30563|0.63889\n30564|0.55556\n30565|0.72222\n30566|0.625\n30567|0.5\n30568|0.45833\n30569|0.5\n30570|0.73611\n30571|0.79167\n30572|0.52778\n30573|0.83333\n30574|0.40278\n30575|0.40278\n30576|0.40625\n30577|0.73611\n30578|0.58333\n30579|0.59722\n30580|0.72222\n30581|0.79167\n30582|0.56944\n30583|0.38889\n30584|0.72222\n30585|0.72222\n30586|0.38889\n30587|0.47222\n30588|0.47222\n30589|0.72222\n30590|0.73611\n30591|0.5\n30592|0.5\n30593|0.5\n30594|0.86111\n30595|0.875\n30596|0.56944\n30597|0.5\n30598|0.5\n30599|0.54167\n30600|0.61111\n30601|0.33333\n30602|0.5\n30603|0.5\n30604|0.65278\n30605|0.66667\n30606|0.5\n30607|0.5\n30608|0.31944\n30609|0.23611\n30610|0.5\n30611|0.5\n30612|0.51389\n30613|0.54167\n30614|0.26389\n30615|0.38889\n30616|0.5\n30617|0.5\n30618|0.16667\n30619|0.69444\n30620|0.63889\n30621|0.5\n30622|0.55556\n30623|0.5\n30624|0.44444\n30625|0.75\n30626|0.83333\n30627|0.80556\n30628|0.81944\n30629|0.81944\n30630|0.72222\n30631|0.63889\n30632|0.54167\n30633|0.84722\n30634|0.61111\n30635|0.76389\n30636|0.63889\n30637|0.5\n30638|0.54167\n30639|0.58333\n30640|0.83333\n30641|0.47222\n30642|0.45833\n30643|0.5\n30644|0.73611\n30645|0.33333\n30646|0.66667\n30647|0.76389\n30648|0.73611\n30649|0.66667\n30650|0.54167\n30651|0.80556\n30652|0.5\n30653|0.5\n30654|0.72222\n30655|0.5\n30656|0.5\n30657|0.90278\n30658|0.83333\n30659|0.56944\n30660|0.61111\n30661|0.68056\n30662|0.81944\n30663|0.65278\n30664|0.55556\n30665|0.875\n30666|0.73611\n30667|0.59722\n30668|0.83333\n30669|0.75\n30670|0.66667\n30671|0.72222\n30672|0.84722\n30673|0.86111\n30674|0.76389\n30675|0.86111\n30676|0.72222\n30677|0.41667\n30678|0.48611\n30679|0.91667\n30680|0.61111\n30681|0.88889\n30682|0.51389\n30683|0.81944\n30684|0.29167\n30685|0.65278\n30686|0.70833\n30687|0.83333\n30688|1\n30689|0.68056\n30690|0.81944\n30691|0.86111\n30692|0.75\n30693|0.47222\n30694|0.82292\n30695|0.68056\n30696|0.72222\n30697|0.69444\n30698|0.81944\n30699|0.72222\n30700|0.5\n30701|0.44444\n30702|0.52778\n30703|0.79167\n30704|0.88889\n30705|0.44444\n30706|0.5\n30707|0.5\n30708|0.5\n30709|0.29167\n30710|0.625\n30711|0.48611\n30712|0.43056\n30713|0.41667\n30714|0.69444\n30715|0.36111\n30716|0.5\n30717|0.5\n30718|0.45833\n30719|0.63889\n30720|0.48611\n30721|0.38889\n30722|0.69444\n30723|0.5\n30724|0.5\n30725|0.79167\n30726|0.77778\n30727|0.73611\n30728|0.875\n30729|0.86111\n30730|0.93056\n30731|0.375\n30732|0.22222\n30733|0.29167\n30734|0.44444\n30735|0.34722\n30736|0.44444\n30737|0.44444\n30738|0.66667\n30739|0.44444\n30740|0.73611\n30741|0.47222\n30742|0.45833\n30743|0.40278\n30744|0.33333\n30745|0.44444\n30746|0.52778\n30747|0.5\n30748|0.097222\n30749|0.69444\n30750|0.97222\n30751|0.45833\n30752|0.86111\n30753|0.83333\n30754|0.54167\n30755|0.44444\n30756|0.65278\n30757|0.58333\n30758|0.31944\n30759|0.5\n30760|0.80556\n30761|0.63889\n30762|0.48611\n30763|0.5\n30764|0.51389\n30765|0.52778\n30766|0.5\n30767|0.66667\n30768|0.34722\n30769|0.30556\n30770|0.38889\n30771|0.375\n30772|0.44444\n30773|0.36111\n30774|0.33333\n30775|0.55556\n30776|0.5\n30777|0.36111\n30778|0.55556\n30779|0.58333\n30780|0.5\n30781|0.44444\n30782|0.72222\n30783|0.5\n30784|0.58333\n30785|0.79167\n30786|0.5\n30787|0.81944\n30788|0.88889\n30789|0.30556\n30790|0.5\n30791|0.52778\n30792|0.43056\n30793|0.30556\n30794|0.5\n30795|0.83333\n30796|0.70833\n30797|0.5\n30798|0.51389\n30799|0.51389\n30800|0.5\n30801|0.86111\n30802|0.5\n30803|0.5\n30804|0.76389\n30805|0.48611\n30806|0.51389\n30807|0.73611\n30808|0.5\n30809|0.5\n30810|0.5\n30811|0.83333\n30812|0.61111\n30813|0.5\n30814|0.38889\n30815|0.65278\n30816|0.59722\n30817|0.5\n30818|0.875\n30819|0.5\n30820|0.51389\n30821|0.76389\n30822|0.93056\n30823|0.40278\n30824|0.65278\n30825|0.72222\n30826|0.38889\n30827|0.5\n30828|0.47222\n30829|0.93056\n30830|0.34722\n30831|0.26389\n30832|0.41667\n30833|0.097222\n30834|0.013889\n30835|0.26389\n30836|0.11111\n30837|0.375\n30838|0.43056\n30839|0.5\n30840|0.73611\n30841|0.5\n30842|0.5\n30843|0.5\n30844|0.79167\n30845|0.5\n30846|0.83333\n30847|0.48611\n30848|0.38889\n30849|0.38889\n30850|0.70833\n30851|0.45833\n30852|0.63889\n30853|0.63889\n30854|0.19444\n30855|0.36111\n30856|0.30208\n30857|0.68056\n30858|0.33333\n30859|0.36111\n30860|0.30556\n30861|0.44444\n30862|0.72222\n30863|0.66667\n30864|0.5\n30865|0.51389\n30866|0.5\n30867|0.54167\n30868|0.5\n30869|0.5\n30870|0.40278\n30871|0.33333\n30872|0.59722\n30873|0.59375\n30874|0.52778\n30875|0.56944\n30876|0.69444\n30877|0.51042\n30878|0.61111\n30879|0.5\n30880|0.5\n30881|0.5\n30882|0.5\n30883|0.5\n30884|0.77778\n30885|0.86111\n30886|0.65278\n30887|0.61111\n30888|0.5\n30889|0.5\n30890|0.54167\n30891|0.40278\n30892|0.66667\n30893|0.84722\n30894|0.48611\n30895|0.5\n30896|0.5\n30897|0.31944\n30898|0.27778\n30899|0.59722\n30900|0.43056\n30901|0.5\n30902|0.66667\n30903|0.5\n30904|0.58333\n30905|0.72222\n30906|0.44444\n30907|0.76389\n30908|0.47222\n30909|0.83333\n30910|0.66667\n30911|0.5\n30912|0.33333\n30913|0.65278\n30914|0.26389\n30915|0.57292\n30916|0.61111\n30917|0.39583\n30918|0.40278\n30919|0.26389\n30920|0.26389\n30921|0.58333\n30922|0.43056\n30923|0.25\n30924|0.36111\n30925|0.66667\n30926|0.77778\n30927|0.88889\n30928|0.69444\n30929|0.625\n30930|0.5\n30931|0.38889\n30932|0.44444\n30933|0.22222\n30934|0.36111\n30935|0.5\n30936|0.40278\n30937|0.58333\n30938|0.5\n30939|0.63889\n30940|0.43056\n30941|0.61111\n30942|0.22222\n30943|0.68056\n30944|0.27778\n30945|0.40278\n30946|0.61458\n30947|0.58333\n30948|0.61111\n30949|0.44444\n30950|0.81944\n30951|0.81944\n30952|0.73611\n30953|0.93056\n30954|0.91667\n30955|0.55556\n30956|0.5\n30957|0.45833\n30958|0.59722\n30959|0.5\n30960|0.55556\n30961|0.51389\n30962|0.5\n30963|0.48611\n30964|0.66667\n30965|0.61111\n30966|0.44444\n30967|0.44444\n30968|0.34722\n30969|0.26389\n30970|0.5\n30971|0.5\n30972|0.63889\n30973|0.5\n30974|0.5\n30975|0.51389\n30976|0.5\n30977|0.68056\n30978|0.5\n30979|0.5\n30980|0.61111\n30981|0.75\n30982|0.55556\n30983|0.52778\n30984|0.80556\n30985|0.72222\n30986|0.54167\n30987|0.69444\n30988|0.72222\n30989|0.97222\n30990|0.81944\n30991|0.55556\n30992|0.68056\n30993|0.72222\n30994|0.77778\n30995|0.75\n30996|0.43056\n30997|0.5\n30998|0.5625\n30999|0.52778\n31000|0.56944\n31001|0.5\n31002|0.55556\n31003|0.83333\n31004|0.5\n31005|0.69444\n31006|0.72222\n31007|0.55556\n31008|0.65278\n31009|0.375\n31010|0.77778\n31011|0.66667\n31012|0.375\n31013|0.5\n31014|0.76389\n31015|0.75\n31016|0.75\n31017|0.68056\n31018|0.625\n31019|0.80556\n31020|0.47222\n31021|0.38889\n31022|0.55556\n31023|0.23611\n31024|0.84722\n31025|0.81944\n31026|0.61111\n31027|0.48611\n31028|0.51389\n31029|0.5\n31030|0.5\n31031|0.51389\n31032|0.69444\n31033|0.5\n31034|0.59722\n31035|0.5\n31036|0.73611\n31037|0.80556\n31038|0.75\n31039|0.55556\n31040|0.75\n31041|0.58333\n31042|0.47222\n31043|0.76389\n31044|0.75\n31045|0.44444\n31046|0.61111\n31047|0.5\n31048|0.5\n31049|0.5\n31050|0.55556\n31051|0.61458\n31052|0.88889\n31053|0.86111\n31054|0.55556\n31055|0.52778\n31056|0.58333\n31057|0.55556\n31058|0.68056\n31059|0.70833\n31060|0.375\n31061|0.5\n31062|0.52083\n31063|0.55556\n31064|0.61111\n31065|0.55556\n31066|0.52778\n31067|0.79167\n31068|0.72222\n31069|0.72222\n31070|0.84722\n31071|0.875\n31072|0.61111\n31073|0.66667\n31074|0.55556\n31075|0.5\n31076|0.72222\n31077|0.86111\n31078|0.77778\n31079|0.70833\n31080|0.31944\n31081|0.22222\n31082|0.11111\n31083|0.94444\n31084|0.61111\n31085|0.80556\n31086|0.72222\n31087|0.54167\n31088|0.93056\n31089|0.34722\n31090|0.59722\n31091|0.73611\n31092|0.66667\n31093|0.38889\n31094|0.68056\n31095|0.81944\n31096|0.77778\n31097|0.875\n31098|0.77778\n31099|0.73611\n31100|0.61111\n31101|0.83333\n31102|0.76389\n31103|0.73611\n31104|0.79167\n31105|0.52778\n31106|0.84722\n31107|0.66667\n31108|0.68056\n31109|0.77778\n31110|0.69444\n31111|0.73611\n31112|0.55556\n31113|0.66667\n31114|0.68056\n31115|0.77778\n31116|0.76389\n31117|0.88889\n31118|0.56944\n31119|0.83333\n31120|0.83333\n31121|0.76389\n31122|0.83333\n31123|0.5\n31124|0.77778\n31125|0.81944\n31126|0.72222\n31127|0.875\n31128|0.72222\n31129|0.66667\n31130|0.65278\n31131|0.44444\n31132|0.47222\n31133|0.72222\n31134|0.64583\n31135|0.63889\n31136|0.88889\n31137|0.61111\n31138|0.61111\n31139|0.59722\n31140|0.48611\n31141|0.81944\n31142|0.25\n31143|0.44444\n31144|0.875\n31145|0.65278\n31146|0.61111\n31147|0.5\n31148|0.5\n31149|0.54167\n31150|0.75\n31151|0.58333\n31152|0.44444\n31153|0.84722\n31154|0.5\n31155|0.375\n31156|0.75\n31157|0.72222\n31158|0.72222\n31159|0.88889\n31160|0.73611\n31161|0.79167\n31162|0.72222\n31163|0.81944\n31164|0.76389\n31165|0.88889\n31166|0.77778\n31167|0.59722\n31168|0.5\n31169|0.44444\n31170|0.5\n31171|0.55556\n31172|0.5\n31173|0.56944\n31174|0.77778\n31175|0.83333\n31176|0.5\n31177|0.61111\n31178|0.5\n31179|0.5\n31180|0.55556\n31181|0.77778\n31182|0.83333\n31183|0.81944\n31184|0.83333\n31185|0.83333\n31186|0.875\n31187|0.61111\n31188|0.625\n31189|0.55556\n31190|0.5\n31191|0.5\n31192|0.68056\n31193|0.5\n31194|0.52778\n31195|0.61111\n31196|0.5\n31197|0.5\n31198|0.55556\n31199|0.23958\n31200|0.5\n31201|0.5\n31202|0.61111\n31203|0.5\n31204|0.5\n31205|0.5\n31206|0.5\n31207|0.61111\n31208|0.54167\n31209|0.66667\n31210|0.61111\n31211|0.43056\n31212|0.69444\n31213|0.77778\n31214|0.61111\n31215|0.72222\n31216|0.55556\n31217|0.5\n31218|0.5\n31219|0.51389\n31220|0.5\n31221|0.63889\n31222|0.61111\n31223|0.58333\n31224|0.5\n31225|0.51389\n31226|0.63889\n31227|0.5\n31228|0.59722\n31229|0.43056\n31230|0.52778\n31231|0.5\n31232|0.5\n31233|0.26389\n31234|0.76389\n31235|0.83333\n31236|0.83333\n31237|0.76389\n31238|0.54167\n31239|0.59722\n31240|0.43056\n31241|0.63889\n31242|0.58333\n31243|0.5\n31244|0.75\n31245|0.5\n31246|0.45833\n31247|0.51389\n31248|0.5\n31249|0.69444\n31250|0.59722\n31251|0.72222\n31252|0.91667\n31253|0.41667\n31254|0.42708\n31255|0.55556\n31256|0.69444\n31257|0.44444\n31258|0.65278\n31259|0.44444\n31260|0.73611\n31261|0.625\n31262|0.5\n31263|0.65278\n31264|0.5\n31265|0.33333\n31266|0.30556\n31267|0.76389\n31268|0.52778\n31269|0.48611\n31270|0.66667\n31271|0.5\n31272|0.58333\n31273|0.59722\n31274|0.54167\n31275|0.76389\n31276|0.56944\n31277|0.66667\n31278|0.47222\n31279|0.54167\n31280|0.73611\n31281|0.47222\n31282|0.5\n31283|0.48611\n31284|0.5\n31285|0.5\n31286|0.16667\n31287|0.083333\n31288|0.44444\n31289|0.34722\n31290|0.5\n31291|0.97222\n31292|0.5\n31293|0.5\n31294|0.41667\n31295|0.52778\n31296|0.5\n31297|0.52778\n31298|0.54167\n31299|0.5\n31300|0.4375\n31301|0.5\n31302|0.72222\n31303|0.66667\n31304|0.5\n31305|0.69444\n31306|0.41667\n31307|0.55556\n31308|0.66667\n31309|0.5\n31310|0.56944\n31311|0.58333\n31312|0.51389\n31313|0.34722\n31314|0.625\n31315|0.72222\n31316|0.875\n31317|0.5\n31318|0.5\n31319|0.58333\n31320|0.86111\n31321|0.5\n31322|0.29167\n31323|0.5\n31324|0.5\n31325|0.70833\n31326|0.5\n31327|0.5\n31328|0.875\n31329|0.94444\n31330|0.90278\n31331|0.90278\n31332|0.84722\n31333|0.59722\n31334|0.65278\n31335|0.3125\n31336|0.36111\n31337|0.36111\n31338|0.33333\n31339|0.91667\n31340|0.69444\n31341|0.88889\n31342|0.80556\n31343|0.76389\n31344|0.375\n31345|0.33333\n31346|0.98611\n31347|0.625\n31348|0.5\n31349|0.5\n31350|0.83333\n31351|0.72222\n31352|0.38889\n31353|0.52778\n31354|0.44444\n31355|0.47222\n31356|0.72222\n31357|0.44444\n31358|0.51389\n31359|0.51389\n31360|0.5\n31361|0.625\n31362|0.54167\n31363|0.63889\n31364|0.55556\n31365|0.66667\n31366|0.5\n31367|0.52778\n31368|0.47222\n31369|0.77778\n31370|0.83333\n31371|0.61111\n31372|0.625\n31373|0.44444\n31374|0.29167\n31375|0.83333\n31376|0.61111\n31377|0.44444\n31378|0.86111\n31379|0.5\n31380|0.68056\n31381|0.68056\n31382|0.41667\n31383|0.5\n31384|0.47222\n31385|0.44444\n31386|0.48611\n31387|0.44444\n31388|0.5\n31389|0.5\n31390|0.70833\n31391|0.59722\n31392|0.80556\n31393|0.88889\n31394|0.95833\n31395|0.77778\n31396|0.79167\n31397|0.5\n31398|0.61111\n31399|0.55556\n31400|0.5\n31401|0.80556\n31402|0.83333\n31403|0.48611\n31404|0.61111\n31405|0.46875\n31406|0.77778\n31407|0.5\n31408|0.5\n31409|0.82292\n31410|0.93056\n31411|0.91667\n31412|0.72222\n31413|0.91667\n31414|0.875\n31415|0.97222\n31416|0.95833\n31417|0.625\n31418|0.73611\n31419|0.69444\n31420|0.47222\n31421|0.76389\n31422|0.76389\n31423|0.72222\n31424|0.77778\n31425|0.5\n31426|0.43056\n31427|0.95833\n31428|0.97222\n31429|0.88889\n31430|0.65278\n31431|0.83333\n31432|0.90278\n31433|0.55556\n31434|0.68056\n31435|0.55556\n31436|0.26389\n31437|0.47222\n31438|0.18056\n31439|0.30556\n31440|0.11111\n31441|0.13889\n31442|0.5\n31443|0.36111\n31444|0.75\n31445|0.68056\n31446|0.63889\n31447|0.83333\n31448|0.38889\n31449|0.45833\n31450|0.54167\n31451|0.66667\n31452|0.34722\n31453|0.30556\n31454|0.55556\n31455|0.77778\n31456|0.93056\n31457|0.5\n31458|0.5\n31459|0.5\n31460|0.54167\n31461|0.69444\n31462|0.59722\n31463|0.54167\n31464|0.5\n31465|0.5\n31466|0.47222\n31467|0.5\n31468|0.44444\n31469|0.68056\n31470|0.5\n31471|0.81944\n31472|0.69444\n31473|0.76389\n31474|0.75\n31475|0.38889\n31476|0.55556\n31477|0.79167\n31478|0.625\n31479|0.58333\n31480|0.44444\n31481|0.20833\n31482|0.26389\n31483|0.73611\n31484|0.65278\n31485|0.51389\n31486|0.44444\n31487|0.80556\n31488|0.5\n31489|0.72222\n31490|0.75\n31491|0.55556\n31492|0.69444\n31493|0.66667\n31494|0.51389\n31495|0.5\n31496|0.54167\n31497|0.73611\n31498|0.72917\n31499|0.80556\n31500|0.88889\n31501|0.75\n31502|0.70833\n31503|0.93056\n31504|0.80556\n31505|0.68056\n31506|0.66667\n31507|0.69444\n31508|0.55556\n31509|0.83333\n31510|0.5\n31511|0.83333\n31512|0.69444\n31513|0.97222\n31514|0.95833\n31515|0.72222\n31516|0.70833\n31517|0.22222\n31518|0.69444\n31519|0.86111\n31520|0.95833\n31521|0.22222\n31522|0.30556\n31523|0.41667\n31524|0.5\n31525|0.44444\n31526|0.69444\n31527|0.54167\n31528|0.5\n31529|0.52778\n31530|0.72222\n31531|0.77778\n31532|0.83333\n31533|0.90278\n31534|0.55556\n31535|0.63889\n31536|0.66667\n31537|0.72222\n31538|0.58333\n31539|0.77778\n31540|0.73611\n31541|0.625\n31542|0.55556\n31543|0.66667\n31544|0.72222\n31545|0.59722\n31546|0.5\n31547|0.5\n31548|0.5\n31549|0.81944\n31550|0.5\n31551|0.63889\n31552|0.75\n31553|0.68056\n31554|0.83333\n31555|0.61111\n31556|0.61111\n31557|0.80556\n31558|0.80208\n31559|0.88889\n31560|0.81944\n31561|0.79167\n31562|0.36111\n31563|0.083333\n31564|0.33333\n31565|0.41667\n31566|0.59722\n31567|0.72222\n31568|0.44444\n31569|0.4375\n31570|0.5\n31571|0.5\n31572|0.5\n31573|0.61111\n31574|0.61111\n31575|0.55556\n31576|0.56944\n31577|0.51389\n31578|0.5\n31579|0.61111\n31580|0.45833\n31581|0.44444\n31582|0.44444\n31583|0.5\n31584|0.63889\n31585|0.47222\n31586|0.56944\n31587|0.52778\n31588|0.59722\n31589|0.63889\n31590|0.33333\n31591|0.47222\n31592|0.52778\n31593|0.52778\n31594|0.5\n31595|0.63889\n31596|0.81944\n31597|0.43056\n31598|0.75\n31599|0.34722\n31600|0.5\n31601|0.56944\n31602|0.65278\n31603|0.66667\n31604|0.61111\n31605|0.83333\n31606|0.83333\n31607|0.80556\n31608|0.43056\n31609|0.22222\n31610|0.25\n31611|0.76389\n31612|0.69444\n31613|0.5\n31614|0.5\n31615|0.5\n31616|0.65278\n31617|0.5\n31618|0.5\n31619|0.66667\n31620|0.75\n31621|0.66667\n31622|0.81944\n31623|0.61111\n31624|0.5\n31625|0.5\n31626|0.75\n31627|0.73611\n31628|0.5\n31629|0.73611\n31630|0.5\n31631|0.47222\n31632|1\n31633|0.69444\n31634|0.88889\n31635|0.5\n31636|0.68056\n31637|0.81944\n31638|0.73611\n31639|0.70833\n31640|0.56944\n31641|0.76389\n31642|0.61111\n31643|0.56944\n31644|0.61111\n31645|0.5\n31646|0.61111\n31647|0.83333\n31648|0.63889\n31649|0.90278\n31650|0.80556\n31651|0.70833\n31652|0.88889\n31653|0.81944\n31654|0.77778\n31655|0.66667\n31656|0.625\n31657|0.5\n31658|0.875\n31659|0.84722\n31660|0.73611\n31661|0.65278\n31662|0.83333\n31663|0.68056\n31664|0.93056\n31665|0.68056\n31666|0.61111\n31667|0.55556\n31668|0.54167\n31669|0.58333\n31670|0.5\n31671|0.56944\n31672|0.51389\n31673|0.54167\n31674|0.5\n31675|0.65278\n31676|0.54167\n31677|0.5\n31678|0.45833\n31679|0.5\n31680|0.63889\n31681|0.45833\n31682|0.48611\n31683|0.69444\n31684|0.65278\n31685|0.94444\n31686|0.59722\n31687|0.5\n31688|0.5\n31689|0.59722\n31690|0.73611\n31691|0.33333\n31692|0.48611\n31693|0.84722\n31694|0.43056\n31695|0.55556\n31696|0.52778\n31697|0.70833\n31698|0.43056\n31699|0.5\n31700|0.5\n31701|0.48611\n31702|0.5\n31703|0.52778\n31704|0.54167\n31705|0.51389\n31706|0.45833\n31707|0.38889\n31708|0.73611\n31709|0.5\n31710|0.5\n31711|0.52778\n31712|0.5\n31713|0.5\n31714|0.5\n31715|0.33333\n31716|0.54167\n31717|0.52778\n31718|0.5\n31719|0.38889\n31720|0.55556\n31721|0.38889\n31722|0.5\n31723|0.77778\n31724|0.51389\n31725|0.55556\n31726|0.66667\n31727|0.56944\n31728|0.52778\n31729|0.69444\n31730|0.5\n31731|0.5\n31732|0.58333\n31733|0.5\n31734|0.56944\n31735|0.63889\n31736|0.61111\n31737|0.5\n31738|0.5\n31739|0.5\n31740|0.55556\n31741|0.55556\n31742|0.61111\n31743|0.5\n31744|0.80556\n31745|0.5\n31746|0.59722\n31747|0.51042\n31748|0.61111\n31749|0.41667\n31750|0.56944\n31751|0.76389\n31752|0.59722\n31753|0.59722\n31754|0.55556\n31755|0.5\n31756|0.76389\n31757|0.61111\n31758|0.63889\n31759|0.58333\n31760|0.5\n31761|0.44444\n31762|0.55556\n31763|0.56944\n31764|0.66667\n31765|0.5\n31766|0.5\n31767|0.68056\n31768|0.38889\n31769|0.69444\n31770|0.5\n31771|0.59722\n31772|0.38889\n31773|0.66667\n31774|0.45833\n31775|0.83333\n31776|0.56944\n31777|0.69444\n31778|0.40278\n31779|0.5\n31780|0.5\n31781|0.58333\n31782|0.77778\n31783|0.48611\n31784|0.375\n31785|0.625\n31786|0.68056\n31787|0.80556\n31788|0.5\n31789|0.51389\n31790|0.5\n31791|0.83333\n31792|0.625\n31793|0.55556\n31794|0.77778\n31795|0.80556\n31796|0.61111\n31797|0.66667\n31798|0.5\n31799|0.69444\n31800|0.43056\n31801|0.63889\n31802|0.54167\n31803|0.61111\n31804|0.65278\n31805|0.55556\n31806|0.54167\n31807|0.38889\n31808|0.5\n31809|0.34722\n31810|0.40278\n31811|0.5\n31812|0.5\n31813|0.63889\n31814|0.61111\n31815|0.61111\n31816|0.70833\n31817|0.47222\n31818|0.83333\n31819|0.44444\n31820|0.58333\n31821|0.5\n31822|0.5\n31823|0.41667\n31824|0.5\n31825|0.48611\n31826|0.5\n31827|0.5\n31828|0.47222\n31829|0.40278\n31830|0.26389\n31831|0.5\n31832|0.56944\n31833|0.5\n31834|0.80556\n31835|0.52778\n31836|0.55556\n31837|0.625\n31838|0.5\n31839|0.5\n31840|0.5\n31841|0.5\n31842|0.44444\n31843|0.44444\n31844|0.5\n31845|0.5\n31846|0.5\n31847|0.63889\n31848|0.48611\n31849|0.44444\n31850|0.5\n31851|0.56944\n31852|0.65278\n31853|0.77778\n31854|0.76389\n31855|0.625\n31856|0.52778\n31857|0.84722\n31858|0.76389\n31859|0.72222\n31860|0.84722\n31861|0.44444\n31862|0.79167\n31863|0.55556\n31864|0.5\n31865|0.5\n31866|0.33333\n31867|0.72222\n31868|0.75\n31869|0.61111\n31870|0.5\n31871|0.61111\n31872|0.5\n31873|0.38889\n31874|0.5\n31875|0.58333\n31876|0.5\n31877|0.66667\n31878|0.76389\n31879|0.5\n31880|0.88889\n31881|0.77778\n31882|0.5\n31883|0.5\n31884|0.76389\n31885|0.55556\n31886|0.45833\n31887|0.44444\n31888|0.5\n31889|0.5\n31890|0.44444\n31891|0.88889\n31892|0.5\n31893|0.75\n31894|0.69444\n31895|0.33333\n31896|0.5\n31897|0.48611\n31898|0.5\n31899|0.63889\n31900|0.5\n31901|0.5\n31902|0.5\n31903|0.625\n31904|0.44444\n31905|0.52778\n31906|0.54167\n31907|0.59722\n31908|0.90278\n31909|0.45833\n31910|0.55556\n31911|0.55556\n31912|0.22222\n31913|0.55556\n31914|0.56944\n31915|0.66667\n31916|0.54167\n31917|0.55556\n31918|0.38889\n31919|0.5\n31920|0.33333\n31921|0.51389\n31922|0.625\n31923|0.5\n31924|0.51389\n31925|0.48611\n31926|0.5\n31927|0.38889\n31928|0.55556\n31929|0.51389\n31930|0.55556\n31931|0.54167\n31932|0.5\n31933|0.66667\n31934|0.58333\n31935|0.63889\n31936|0.54167\n31937|0.47222\n31938|0.625\n31939|0.65278\n31940|0.83333\n31941|0.93056\n31942|0.68056\n31943|0.83333\n31944|0.58333\n31945|0.68056\n31946|0.75\n31947|0.5\n31948|0.63889\n31949|0.58333\n31950|0.51389\n31951|0.52778\n31952|0.61111\n31953|0.59722\n31954|0.75\n31955|0.56944\n31956|0.66667\n31957|0.70833\n31958|0.72222\n31959|0.73958\n31960|0.80556\n31961|0.63889\n31962|0.91667\n31963|0.94444\n31964|0.66667\n31965|0.80556\n31966|0.80556\n31967|0.77778\n31968|0.81944\n31969|0.70833\n31970|0.70833\n31971|0.94444\n31972|0.29167\n31973|0.83333\n31974|0.58333\n31975|0.80556\n31976|0.83333\n31977|0.41667\n31978|0.44444\n31979|0.38889\n31980|0.31944\n31981|0.83333\n31982|0.5\n31983|0.65278\n31984|0.52778\n31985|0.55556\n31986|0.52778\n31987|0.61111\n31988|0.38889\n31989|0.69444\n31990|0.5\n31991|0.76389\n31992|0.54167\n31993|0.44444\n31994|0.61111\n31995|0.44444\n31996|0.5\n31997|0.38889\n31998|0.51389\n31999|0.5\n32000|0.55556\n32001|0.33333\n32002|0.36111\n32003|0.79167\n32004|0.5\n32005|0.55556\n32006|0.5\n32007|0.83333\n32008|0.5\n32009|0.55556\n32010|0.61111\n32011|0.875\n32012|0.65278\n32013|0.54167\n32014|0.55556\n32015|0.48611\n32016|0.75\n32017|0.77778\n32018|0.73611\n32019|0.58333\n32020|0.61111\n32021|0.80556\n32022|0.5\n32023|0.80556\n32024|0.5\n32025|0.55556\n32026|0.69444\n32027|0.31944\n32028|0.22222\n32029|0.5\n32030|0.625\n32031|0.77778\n32032|0.80556\n32033|0.86458\n32034|0.94444\n32035|0.94444\n32036|0.69444\n32037|0.55556\n32038|0.80556\n32039|0.90278\n32040|0.45833\n32041|0.79167\n32042|0.86111\n32043|0.61111\n32044|0.69444\n32045|0.59722\n32046|0.38889\n32047|0.59722\n32048|0.66667\n32049|0.43056\n32050|0.47222\n32051|0.65278\n32052|0.73611\n32053|0.625\n32054|0.83333\n32055|0.5\n32056|0.55556\n32057|0.65278\n32058|0.5\n32059|0.55556\n32060|0.68056\n32061|0.69444\n32062|0.70833\n32063|0.54167\n32064|0.5\n32065|0.58333\n32066|0.80556\n32067|0.5\n32068|0.5\n32069|0.5\n32070|0.86111\n32071|0.70833\n32072|0.55556\n32073|0.88889\n32074|0.61111\n32075|0.86111\n32076|0.73611\n32077|0.79167\n32078|0.88889\n32079|0.83333\n32080|0.73611\n32081|0.68056\n32082|0.80556\n32083|0.51389\n32084|0.11111\n32085|0.48611\n32086|0.77778\n32087|0.51389\n32088|0.69444\n32089|0.77778\n32090|0.59722\n32091|0.58333\n32092|0.5\n32093|0.40278\n32094|0.61111\n32095|0.69444\n32096|0.77778\n32097|0.33333\n32098|0.29167\n32099|0.61111\n32100|0.80556\n32101|0.72917\n32102|0.51389\n32103|0.65278\n32104|0.76389\n32105|0.55556\n32106|0.68056\n32107|0.72222\n32108|0.48611\n32109|0.51389\n32110|0.68056\n32111|0.55556\n32112|0.66667\n32113|0.77778\n32114|0.63889\n32115|0.625\n32116|0.76042\n32117|0.55556\n32118|0.70833\n32119|0.19444\n32120|0.45833\n32121|0.79167\n32122|0.75\n32123|0.54167\n32124|0.72222\n32125|0.75\n32126|0.83333\n32127|0.69444\n32128|0.80556\n32129|0.84722\n32130|0.84722\n32131|0.88889\n32132|0.84722\n32133|0.72222\n32134|0.79167\n32135|0.72222\n32136|0.70833\n32137|0.70833\n32138|0.73611\n32139|0.63889\n32140|0.5\n32141|0.5\n32142|0.72222\n32143|0.77778\n32144|0.75\n32145|0.56944\n32146|0.5\n32147|0.69792\n32148|0.93056\n32149|0.72222\n32150|0.80556\n32151|0.88889\n32152|0.88889\n32153|0.13889\n32154|0.29167\n32155|0.55556\n32156|0.63889\n32157|0.33333\n32158|0.61111\n32159|0.375\n32160|0.5\n32161|0.66667\n32162|0.48611\n32163|0.75\n32164|0.66667\n32165|0.5\n32166|0.77778\n32167|0.81944\n32168|0.72222\n32169|0.5\n32170|0.875\n32171|0.73611\n32172|0.55556\n32173|0.70833\n32174|0.52778\n32175|0.5\n32176|0.81944\n32177|0.81944\n32178|0.86111\n32179|0.95833\n32180|0.84722\n32181|0.93056\n32182|0.58333\n32183|0.76389\n32184|0.75\n32185|0.83333\n32186|0.76389\n32187|0.63889\n32188|0.75\n32189|0.79167\n32190|0.88889\n32191|0.75\n32192|0.65278\n32193|0.72222\n32194|0.44444\n32195|0.54167\n32196|0.5\n32197|0.51389\n32198|0.29167\n32199|0.41667\n32200|0.52778\n32201|0.45833\n32202|0.68056\n32203|0.48611\n32204|0.47222\n32205|0.69444\n32206|0.94444\n32207|0.79167\n32208|0.52778\n32209|0.5\n32210|0.41667\n32211|0.375\n32212|0.20833\n32213|0.5\n32214|0.44444\n32215|0.5\n32216|0.5\n32217|0.55556\n32218|0.61111\n32219|0.51389\n32220|0.63889\n32221|0.5\n32222|0.625\n32223|0.77778\n32224|0.5\n32225|0.5\n32226|0.5\n32227|0.5\n32228|0.61111\n32229|0.86111\n32230|0.70833\n32231|0.5\n32232|0.5\n32233|0.76389\n32234|0.58333\n32235|0.38889\n32236|0.48611\n32237|0.36111\n32238|0.16667\n32239|0.5\n32240|0.5\n32241|0.5\n32242|0.48611\n32243|0.625\n32244|0.5\n32245|0.5\n32246|0.5\n32247|0.40278\n32248|0.61111\n32249|0.68056\n32250|0.5\n32251|0.55556\n32252|0.59722\n32253|0.63889\n32254|0.5\n32255|0.5\n32256|0.43056\n32257|0.30556\n32258|0.88889\n32259|0.625\n32260|0.79167\n32261|0.75\n32262|0.5\n32263|0.79167\n32264|0.77778\n32265|0.41667\n32266|0.56944\n32267|0.65278\n32268|0.79167\n32269|0.63889\n32270|0.45833\n32271|0.29167\n32272|0.84722\n32273|0.79167\n32274|0.72222\n32275|0.875\n32276|0.83333\n32277|0.76389\n32278|0.80556\n32279|0.77778\n32280|0.63542\n32281|0.76389\n32282|0.5\n32283|0.55556\n32284|0.72222\n32285|0.52778\n32286|0.80556\n32287|0.88889\n32288|0.44444\n32289|0.38889\n32290|0.72917\n32291|0.76389\n32292|0.20833\n32293|0.80556\n32294|0.72222\n32295|0.97222\n32296|0.93056\n32297|0.90278\n32298|0.75\n32299|0.54167\n32300|0.875\n32301|0.79167\n32302|0.77778\n32303|0.79167\n32304|0.66667\n32305|0.66667\n32306|0.80556\n32307|0.5\n32308|0.63889\n32309|0.77778\n32310|0.79167\n32311|0.5\n32312|0.77778\n32313|0.36111\n32314|0.58333\n32315|0.44444\n32316|0.29167\n32317|0.54167\n32318|0.48611\n32319|0.84722\n32320|0.79167\n32321|0.77778\n32322|0.54167\n32323|0.72222\n32324|0.33333\n32325|0.5\n32326|0.63889\n32327|0.5\n32328|0.66667\n32329|0.58333\n32330|0.80556\n32331|0.66667\n32332|0.5\n32333|0.66667\n32334|0.79167\n32335|0.66667\n32336|0.70833\n32337|0.79167\n32338|0.75\n32339|0.83333\n32340|0.76389\n32341|0.80556\n32342|0.61111\n32343|0.66667\n32344|0.51389\n32345|0.91667\n32346|0.91667\n32347|0.48611\n32348|0.31944\n32349|0.61111\n32350|0.16667\n32351|0.31944\n32352|0.52778\n32353|0.5\n32354|0.61111\n32355|0.44444\n32356|0.76389\n32357|0.69792\n32358|0.73611\n32359|0.79167\n32360|0.51389\n32361|0.59722\n32362|0.22222\n32363|0.56944\n32364|0.55556\n32365|0.48611\n32366|0.375\n32367|0.77778\n32368|0.55556\n32369|0.44444\n32370|0.54167\n32371|0.69444\n32372|0.52083\n32373|0.55556\n32374|0.30556\n32375|0.61111\n32376|0.5\n32377|0.79167\n32378|0.5\n32379|0.11111\n32380|0.40278\n32381|0.95833\n32382|0.81944\n32383|0.52778\n32384|0.54167\n32385|0.47222\n32386|0.59722\n32387|0.54167\n32388|0.38889\n32389|0.68056\n32390|0.5\n32391|0.69444\n32392|0.5\n32393|0.83333\n32394|0.52778\n32395|0.58333\n32396|0.66667\n32397|0.75\n32398|0.48611\n32399|0.58333\n32400|0.19444\n32401|0.5\n32402|0.5\n32403|0.56944\n32404|0.52778\n32405|0.51389\n32406|0.76389\n32407|0.76389\n32408|0.66667\n32409|0.52778\n32410|0.63889\n32411|0.59722\n32412|0.5\n32413|0.84722\n32414|0.83333\n32415|0.5\n32416|0.77778\n32417|0.5\n32418|0.66667\n32419|0.5\n32420|0.69444\n32421|0.88889\n32422|0.81944\n32423|0.81944\n32424|0.81944\n32425|0.66667\n32426|0.54167\n32427|0.66667\n32428|0.54167\n32429|0.5\n32430|0.61111\n32431|0.72222\n32432|0.5\n32433|0.58333\n32434|0.77778\n32435|0.76389\n32436|0.72222\n32437|0.80556\n32438|0.51389\n32439|0.75\n32440|0.80556\n32441|0.55556\n32442|0.54167\n32443|0.51389\n32444|0.83333\n32445|0.73611\n32446|0.79167\n32447|0.83333\n32448|0.63889\n32449|0.76042\n32450|0.90278\n32451|0.95833\n32452|0.51389\n32453|0.5\n32454|0.44444\n32455|0.61111\n32456|0.41667\n32457|0.52778\n32458|0.30556\n32459|0.52778\n32460|0.55556\n32461|0.52778\n32462|0.5\n32463|0.83333\n32464|0.5\n32465|0.51389\n32466|0.76389\n32467|0.72222\n32468|0.68056\n32469|0.61111\n32470|0.59722\n32471|0.55556\n32472|0.80556\n32473|0.72222\n32474|0.69444\n32475|0.51389\n32476|0.69444\n32477|0.5\n32478|0.36111\n32479|0.41667\n32480|0.5\n32481|0.58333\n32482|0.65278\n32483|0.5\n32484|0.63889\n32485|0.54167\n32486|0.5\n32487|0.63889\n32488|0.5\n32489|0.63889\n32490|0.73611\n32491|0.77778\n32492|0.55556\n32493|0.5\n32494|0.61111\n32495|0.52778\n32496|0.79167\n32497|0.75\n32498|0.52778\n32499|0.81944\n32500|0.86111\n32501|0.875\n32502|0.93056\n32503|0.83333\n32504|0.5\n32505|0.5\n32506|0.72222\n32507|0.5\n32508|0.70833\n32509|0.72222\n32510|0.72222\n32511|0.5\n32512|0.55556\n32513|0.63889\n32514|0.5\n32515|0.5\n32516|0.52778\n32517|0.5\n32518|0.5\n32519|0.31944\n32520|0.5\n32521|0.55556\n32522|0.5\n32523|0.59722\n32524|0.44444\n32525|0.55556\n32526|0.76389\n32527|0.86111\n32528|0.86111\n32529|0.77778\n32530|0.52778\n32531|0.72222\n32532|0.5\n32533|0.54167\n32534|0.75\n32535|0.5\n32536|0.52778\n32537|0.54167\n32538|0.86111\n32539|0.5\n32540|0.5\n32541|0.54167\n32542|0.58333\n32543|0.33333\n32544|0.38889\n32545|0.5\n32546|0.94444\n32547|0.5\n32548|0.5\n32549|0.51389\n32550|0.80556\n32551|0.55556\n32552|0.5\n32553|0.52778\n32554|0.5\n32555|0.43056\n32556|0.55556\n32557|0.90278\n32558|0.38889\n32559|0.5\n32560|0.68056\n32561|0.5\n32562|0.61111\n32563|0.48611\n32564|0.83333\n32565|0.76389\n32566|0.36111\n32567|0.58333\n32568|0.625\n32569|0.63889\n32570|0.77778\n32571|0.5\n32572|0.52083\n32573|0.36111\n32574|0.5\n32575|0.51389\n32576|0.63889\n32577|0.58333\n32578|0.73611\n32579|0.70833\n32580|0.5\n32581|0.27778\n32582|0.48611\n32583|0.5\n32584|0.76389\n32585|0.61111\n32586|0.70833\n32587|0.77778\n32588|0.65278\n32589|0.5\n32590|0.69444\n32591|0.70833\n32592|0.5\n32593|0.80556\n32594|0.5\n32595|0.5\n32596|0.875\n32597|0.72222\n32598|0.5\n32599|0.5\n32600|0.5\n32601|0.55556\n32602|0.59722\n32603|0.5\n32604|0.5\n32605|0.66667\n32606|0.51042\n32607|0.5\n32608|0.5\n32609|0.36111\n32610|0.41667\n32611|0.625\n32612|0.26389\n32613|0.36111\n32614|0.33333\n32615|0.44444\n32616|0.38889\n32617|0.16667\n32618|0.5\n32619|0.45833\n32620|0.63889\n32621|0.61111\n32622|0.875\n32623|0.84722\n32624|0.5\n32625|0.375\n32626|0.55556\n32627|0.70833\n32628|0.56944\n32629|0.5\n32630|0.72222\n32631|0.68056\n32632|0.75\n32633|0.81944\n32634|0.70833\n32635|0.55556\n32636|0.70833\n32637|0.81944\n32638|0.86111\n32639|0.5\n32640|0.80556\n32641|0.79167\n32642|0.23611\n32643|0.29167\n32644|0.5\n32645|0.58333\n32646|0.52778\n32647|0.5\n32648|0.73611\n32649|0.5\n32650|0.77778\n32651|0.5\n32652|0.65278\n32653|0.38889\n32654|0.5\n32655|0.48611\n32656|0.47222\n32657|0.5\n32658|0.5\n32659|0.5\n32660|0.5\n32661|0.44444\n32662|0.44444\n32663|0.61111\n32664|0.61111\n32665|0.54167\n32666|0.625\n32667|0.80556\n32668|0.68056\n32669|0.56944\n32670|0.76389\n32671|0.75\n32672|0.70833\n32673|0.70833\n32674|0.58333\n32675|0.52778\n32676|0.55556\n32677|0.5\n32678|0.66667\n32679|0.41667\n32680|0.625\n32681|0.875\n32682|0.5\n32683|0.5\n32684|0.52778\n32685|0.5\n32686|0.47222\n32687|0.66667\n32688|0.65278\n32689|0.5\n32690|0.5\n32691|0.5\n32692|0.5\n32693|0.72222\n32694|0.83333\n32695|0.86111\n32696|0.73611\n32697|0.77778\n32698|0.52778\n32699|0.5\n32700|0.5\n32701|0.43056\n32702|0.5\n32703|0.5\n32704|0.5\n32705|0.5\n32706|0.44444\n32707|0.52778\n32708|0.76389\n32709|0.5\n32710|0.55556\n32711|0.5\n32712|0.54167\n32713|0.625\n32714|0.43056\n32715|0.5\n32716|0.66667\n32717|0.55556\n32718|0.58333\n32719|0.56944\n32720|0.58333\n32721|0.5\n32722|0.27778\n32723|0.5\n32724|0.56944\n32725|0.58333\n32726|0.19444\n32727|0.5\n32728|0.45833\n32729|0.5\n32730|0.40278\n32731|0.5\n32732|0.44444\n32733|0.38889\n32734|0.58333\n32735|0.86111\n32736|0.94444\n32737|0.27778\n32738|0.63889\n32739|0.5\n32740|0.52778\n32741|0.61111\n32742|0.47222\n32743|0.33333\n32744|0.34722\n32745|0.54167\n32746|0.63889\n32747|0.52778\n32748|0.45833\n32749|0.25\n32750|0.77778\n32751|0.80556\n32752|0.27778\n32753|0.45833\n32754|0.625\n32755|0.90278\n32756|0.38889\n32757|0.43056\n32758|0.48611\n32759|0.48611\n32760|0.19444\n32761|0.70833\n32762|0.61111\n32763|0.43056\n32764|0.90278\n32765|0.88542\n32766|0.84722\n32767|0.79167\n32768|0.55556\n32769|0.81944\n32770|0.25\n32771|0.5\n32772|0.36111\n32773|0.38542\n32774|0.44444\n32775|0.5\n32776|0.40278\n32777|0.61111\n32778|0.65278\n32779|0.38889\n32780|0.54167\n32781|0.875\n32782|0.66667\n32783|0.79167\n32784|0.55556\n32785|0.54167\n32786|0.69444\n32787|0.69444\n32788|0.5\n32789|0.5\n32790|0.5\n32791|0.5\n32792|0.5\n32793|0.5\n32794|0.5\n32795|0.5\n32796|0.625\n32797|0.41667\n32798|0.79167\n32799|0.76389\n32800|0.5\n32801|0.5\n32802|0.5\n32803|0.5\n32804|0.5\n32805|0.33333\n32806|0.78125\n32807|0.5\n32808|0.5\n32809|0.55556\n32810|0.5\n32811|0.63889\n32812|0.81944\n32813|0.76389\n32814|0.36111\n32815|0.5\n32816|0.51389\n32817|0.47222\n32818|0.54167\n32819|0.55556\n32820|0.38889\n32821|0.48611\n32822|0.65278\n32823|0.84722\n32824|0.38889\n32825|0.76389\n32826|0.31944\n32827|0.55556\n32828|0.77778\n32829|0.77778\n32830|0.68056\n32831|0.79167\n32832|0.66667\n32833|0.81944\n32834|0.79167\n32835|0.86111\n32836|0.54167\n32837|0.55556\n32838|0.55556\n32839|0.80556\n32840|0.5\n32841|0.40278\n32842|0.86111\n32843|0.80556\n32844|0.31944\n32845|0.22222\n32846|0.56944\n32847|0.5\n32848|0.54167\n32849|0.5\n32850|0.44444\n32851|0.5\n32852|0.65278\n32853|0.90278\n32854|0.5\n32855|0.5\n32856|0.5\n32857|0.33333\n32858|0.54167\n32859|0.76389\n32860|0.63889\n32861|0.27778\n32862|0.5\n32863|0.63889\n32864|0.58333\n32865|0.80556\n32866|0.5\n32867|0.65278\n32868|0.61111\n32869|0.45833\n32870|0.36111\n32871|0.5\n32872|0.95833\n32873|0.73611\n32874|0.76389\n32875|0.43056\n32876|0.58333\n32877|0.45833\n32878|0.27778\n32879|0.30556\n32880|0.61111\n32881|0.54167\n32882|0.22222\n32883|0.48611\n32884|0.66667\n32885|0.70833\n32886|0.55556\n32887|0.70833\n32888|0.47222\n32889|0.23611\n32890|0.5\n32891|0.55556\n32892|0.5\n32893|0.70833\n32894|0.5\n32895|0.5\n32896|0.5\n32897|0.5\n32898|0.55556\n32899|0.5\n32900|0.5\n32901|0.5\n32902|0.5\n32903|0.66667\n32904|0.5\n32905|0.5\n32906|0.47222\n32907|0.5\n32908|0.5\n32909|0.40278\n32910|0.5\n32911|0.5\n32912|0.5\n32913|0.5\n32914|0.48611\n32915|0.625\n32916|0.75\n32917|0.88889\n32918|0.72222\n32919|0.5\n32920|0.65278\n32921|0.625\n32922|0.5\n32923|0.5\n32924|0.5\n32925|0.45833\n32926|0.44444\n32927|0.5\n32928|0.5\n32929|0.55556\n32930|0.52778\n32931|0.61111\n32932|0.5\n32933|0.34722\n32934|0.51389\n32935|0.47222\n32936|0.5\n32937|0.54167\n32938|0.5\n32939|0.5\n32940|0.625\n32941|0.55556\n32942|0.5\n32943|0.86111\n32944|0.88889\n32945|0.5\n32946|0.55556\n32947|0.59722\n32948|0.56944\n32949|1\n32950|0.5\n32951|0.68056\n32952|0.38889\n32953|0.5\n32954|0.76389\n32955|0.63889\n32956|0.58333\n32957|0.5\n32958|0.76389\n32959|0.70833\n32960|0.54167\n32961|0.625\n32962|0.47222\n32963|0.5\n32964|0.5\n32965|0.625\n32966|0.69444\n32967|0.5\n32968|0.44444\n32969|0.5\n32970|0.55556\n32971|0.5\n32972|0.5\n32973|0.52778\n32974|0.79167\n32975|0.375\n32976|0.625\n32977|0.75\n32978|0.73611\n32979|0.79167\n32980|0.5\n32981|0.69444\n32982|0.77778\n32983|0.38889\n32984|0.5\n32985|0.65278\n32986|0.5\n32987|0.55556\n32988|0.65278\n32989|0.65278\n32990|0.5\n32991|0.5\n32992|0.58333\n32993|0.36111\n32994|0.55556\n32995|0.52778\n32996|0.59722\n32997|0.5\n32998|0.52083\n32999|0.5\n33000|0.5\n33001|0.5\n33002|0.48611\n33003|0.43056\n33004|0.55556\n33005|0.61111\n33006|0.5\n33007|0.55556\n33008|0.90278\n33009|0.55556\n33010|0.98611\n33011|0.47222\n33012|0.84722\n33013|0.76389\n33014|0.73611\n33015|0.75\n33016|0.5\n33017|0.29167\n33018|0.22222\n33019|0.5\n33020|0.45833\n33021|0.91667\n33022|0.51389\n33023|0.51389\n33024|0.79167\n33025|0.88889\n33026|0.84722\n33027|0.33333\n33028|0.43056\n33029|0.41667\n33030|0.54167\n33031|0.77778\n33032|0.59722\n33033|0.41667\n33034|0.63889\n33035|0.76389\n33036|0.77778\n33037|0.59722\n33038|0.5\n33039|0.68056\n33040|0.20833\n33041|0.54167\n33042|0.5\n33043|0.5\n33044|0.27778\n33045|0.66667\n33046|0.63889\n33047|0.61111\n33048|0.61111\n33049|0.88889\n33050|0.41667\n33051|0.20833\n33052|0.77778\n33053|0.86111\n33054|0.875\n33055|0.66667\n33056|0.44444\n33057|0.55556\n33058|0.5\n33059|0.63889\n33060|0.18056\n33061|0.63889\n33062|0.66667\n33063|0.5\n33064|0.5\n33065|0.72222\n33066|0.625\n33067|0.44444\n33068|0.69444\n33069|0.5\n33070|0.5\n33071|0.5\n33072|0.44444\n33073|0.54167\n33074|0.81944\n33075|0.91667\n33076|0.83333\n33077|0.88889\n33078|0.84722\n33079|0.81944\n33080|0.70833\n33081|0.69444\n33082|0.75\n33083|0.63889\n33084|0.77778\n33085|0.80556\n33086|0.52778\n33087|0.41667\n33088|0.625\n33089|0.38889\n33090|0.22222\n33091|0.5625\n33092|0.97222\n33093|1\n33094|0.86111\n33095|0.79167\n33096|0.75\n33097|0.86111\n33098|0.80556\n33099|0.81944\n33100|0.83333\n33101|0.75\n33102|0.83333\n33103|0.5\n33104|0.875\n33105|0.83333\n33106|0.52778\n33107|0.76389\n33108|0.68056\n33109|0.70833\n33110|0.55556\n33111|0.44444\n33112|0.5\n33113|0.5\n33114|0.5\n33115|0.5\n33116|0.5\n33117|0.69444\n33118|0.81944\n33119|0.72222\n33120|0.79167\n33121|0.80556\n33122|0.69444\n33123|0.55556\n33124|0.58333\n33125|0.68056\n33126|0.38889\n33127|0.5\n33128|0.51389\n33129|0.77778\n33130|0.29167\n33131|0.59722\n33132|0.5\n33133|0.5\n33134|0.63889\n33135|0.51389\n33136|0.5\n33137|0.44444\n33138|0.54167\n33139|0.61111\n33140|0.45833\n33141|0.44444\n33142|0.70833\n33143|0.5\n33144|0.5\n33145|0.55556\n33146|0.55556\n33147|0.31944\n33148|0.5\n33149|0.83333\n33150|0.44444\n33151|0.58333\n33152|0.63889\n33153|0.65278\n33154|0.55556\n33155|0.69444\n33156|0.5\n33157|0.82292\n33158|0.79167\n33159|0.77778\n33160|0.53125\n33161|0.55556\n33162|0.38889\n33163|0.44444\n33164|0.73611\n33165|0.59722\n33166|0.58333\n33167|0.75\n33168|0.55556\n33169|1\n33170|0.69444\n33171|0.73611\n33172|0.79167\n33173|0.5\n33174|0.61111\n33175|0.41667\n33176|0.80556\n33177|0.52778\n33178|0.73611\n33179|0.83333\n33180|0.73611\n33181|0.79167\n33182|0.88889\n33183|0.80556\n33184|0.83333\n33185|1\n33186|0.84722\n33187|0.45833\n33188|0.5\n33189|0.54167\n33190|0.75\n33191|0.875\n33192|0.55556\n33193|0.77778\n33194|0.73611\n33195|0.625\n33196|0.54167\n33197|0.80208\n33198|0.84722\n33199|0.75\n33200|0.81944\n33201|0.70833\n33202|0.88889\n33203|0.75\n33204|0.5\n33205|0.58333\n33206|0.80556\n33207|0.56944\n33208|0.77778\n33209|0.66667\n33210|0.79167\n33211|0.93056\n33212|0.95833\n33213|0.69444\n33214|0.54167\n33215|0.38889\n33216|0.6875\n33217|0.69444\n33218|0.61111\n33219|0.65278\n33220|0.83333\n33221|0.80556\n33222|0.79167\n33223|0.027778\n33224|0.83333\n33225|0.41667\n33226|0.79167\n33227|0.93056\n33228|0.69444\n33229|0.73611\n33230|0.90278\n33231|0.83333\n33232|0.66667\n33233|0.90278\n33234|0.72222\n33235|0.66667\n33236|0.71875\n33237|0.56944\n33238|0.31944\n33239|0.72222\n33240|0.68056\n33241|0.72222\n33242|0.65278\n33243|0.55556\n33244|0.80556\n33245|0.90278\n33246|0.68056\n33247|0.61111\n33248|0.75\n33249|0.72917\n33250|0.44444\n33251|0.61111\n33252|0.55556\n33253|0.80556\n33254|0.80556\n33255|0.75\n33256|0.79167\n33257|0.61458\n33258|0.76389\n33259|0.79167\n33260|0.90278\n33261|0.84722\n33262|0.83333\n33263|0.83333\n33264|0.80556\n33265|0.83333\n33266|0.68056\n33267|0.76389\n33268|0.5\n33269|0.69444\n33270|0.75\n33271|0.77778\n33272|0.84722\n33273|0.77778\n33274|0.77778\n33275|0.90278\n33276|0.84722\n33277|0.38889\n33278|0.81944\n33279|0.81944\n33280|0.81944\n33281|0.93056\n33282|0.48611\n33283|0.91667\n33284|0.95833\n33285|0.5\n33286|0.83333\n33287|0.76389\n33288|0.55556\n33289|0.77778\n33290|0.86111\n33291|0.84722\n33292|0.93056\n33293|0.31944\n33294|0.88889\n33295|0.69444\n33296|0.65278\n33297|0.83333\n33298|0.66667\n33299|0.81944\n33300|0.54167\n33301|0.70833\n33302|0.94444\n33303|0.84722\n33304|0.59722\n33305|0.58333\n33306|0.81944\n33307|0.84722\n33308|0.73611\n33309|0.875\n33310|0.86111\n33311|0.65278\n33312|0.44444\n33313|0.27778\n33314|0.875\n33315|0.55556\n33316|0.44444\n33317|0.47222\n33318|0.55556\n33319|0.73611\n33320|0.72222\n33321|0.76389\n33322|0.76389\n33323|0.94444\n33324|0.68056\n33325|0.69444\n33326|0.83333\n33327|0.77778\n33328|0.52778\n33329|0.72222\n33330|0.58333\n33331|0.61111\n33332|0.75\n33333|0.72222\n33334|0.5\n33335|0.77778\n33336|0.88889\n33337|0.86111\n33338|0.97222\n33339|0.55556\n33340|0.48611\n33341|0.63889\n33342|0.76389\n33343|0.68056\n33344|0.84722\n33345|0.55556\n33346|0.90278\n33347|0.79167\n33348|0.33333\n33349|0.45833\n33350|0.61111\n33351|0.58333\n33352|0.41667\n33353|0.98611\n33354|0.79167\n33355|0.875\n33356|0.91667\n33357|0.72222\n33358|0.76389\n33359|0.83333\n33360|0.5\n33361|0.22222\n33362|0.81944\n33363|1\n33364|0.79167\n33365|0.33333\n33366|0.33333\n33367|0.48611\n33368|0.83333\n33369|0.97222\n33370|0.79167\n33371|0.38889\n33372|0.56944\n33373|0.44444\n33374|0.40278\n33375|0.56944\n33376|0.75\n33377|0.63889\n33378|0.875\n33379|0.84722\n33380|0.80556\n33381|0.69444\n33382|0.88889\n33383|0.79167\n33384|0.69444\n33385|0.68056\n33386|0.55556\n33387|0.61111\n33388|0.44792\n33389|0.54167\n33390|0.5\n33391|0.77778\n33392|0.77778\n33393|0.81944\n33394|0.79167\n33395|0.79167\n33396|0.72222\n33397|0.77778\n33398|0.875\n33399|0.40278\n33400|0.66667\n33401|0.59722\n33402|0.33333\n33403|0.33333\n33404|0.5\n33405|0.77778\n33406|0.79167\n33407|0.97222\n33408|0.48611\n33409|0.55556\n33410|0.80556\n33411|0.84722\n33412|0.75\n33413|0.72222\n33414|0.54167\n33415|0.45833\n33416|0.52778\n33417|0.25\n33418|0.44444\n33419|0.68056\n33420|0.55556\n33421|0.34722\n33422|0.38889\n33423|0.5\n33424|0.61111\n33425|0.625\n33426|0.68056\n33427|0.33333\n33428|0.38889\n33429|0.81944\n33430|0.11111\n33431|0.625\n33432|0.79167\n33433|0.55556\n33434|0.44444\n33435|0.63889\n33436|0.80556\n33437|0.29167\n33438|0.47222\n33439|0.56944\n33440|0.59722\n33441|0.75\n33442|0.86111\n33443|0.29167\n33444|0.44444\n33445|0.44444\n33446|0.58333\n33447|0.52778\n33448|0.83333\n33449|0.88889\n33450|0.88889\n33451|0.95833\n33452|0.68056\n33453|0.81944\n33454|0.94444\n33455|0.52778\n33456|0.5\n33457|0.41667\n33458|0.5\n33459|0.68056\n33460|0.5\n33461|0.80556\n33462|0.97222\n33463|0.79167\n33464|0.48611\n33465|0.20833\n33466|0.72222\n33467|0.59722\n33468|0.88889\n33469|0.81944\n33470|0.54167\n33471|0.26389\n33472|0.30556\n33473|0.88889\n33474|0.91667\n33475|0.72222\n33476|0.71875\n33477|0.61111\n33478|0.27778\n33479|0.5\n33480|0.18056\n33481|0.72222\n33482|0.69444\n33483|0.52778\n33484|0.54167\n33485|0.81944\n33486|0.73611\n33487|0.68056\n33488|0.79167\n33489|0.88889\n33490|0.55556\n33491|0.75\n33492|0.95833\n33493|0.73611\n33494|0.69444\n33495|0.75\n33496|0.76389\n33497|0.72222\n33498|0.875\n33499|0.95833\n33500|0.83333\n33501|0.65625\n33502|0.65278\n33503|0.93056\n33504|0.84722\n33505|0.375\n33506|0.29167\n33507|0.68056\n33508|0.57292\n33509|0.69444\n33510|0.69792\n33511|0.69444\n33512|0.56944\n33513|0.88889\n33514|0.45833\n33515|0.65278\n33516|0.5\n33517|0.55556\n33518|0.34722\n33519|0.38889\n33520|0.68056\n33521|0.47222\n33522|0.38889\n33523|0.51389\n33524|0.73611\n33525|0.5\n33526|0.5\n33527|0.55556\n33528|0.72222\n33529|0.72222\n33530|0.23611\n33531|0.73611\n33532|0.75\n33533|0.73611\n33534|0.98611\n33535|0.94444\n33536|0.86111\n33537|0.69444\n33538|0.86111\n33539|0.23611\n33540|0.86111\n33541|0.98611\n33542|0.8125\n33543|0.69792\n33544|0.66667\n33545|0.76389\n33546|0.81944\n33547|0.76389\n33548|0.625\n33549|0.76389\n33550|0.89583\n33551|0.90278\n33552|0.68056\n33553|0.68056\n33554|0.80556\n33555|0.61111\n33556|0.33333\n33557|0.75\n33558|0.93056\n33559|0.65278\n33560|0.625\n33561|0.66667\n33562|0.80556\n33563|0.76389\n33564|0.69444\n33565|0.97222\n33566|0.30556\n33567|0.76389\n33568|0.65278\n33569|0.98958\n33570|0.72222\n33571|0.72222\n33572|0.80556\n33573|0.84722\n33574|0.76389\n33575|0.88889\n33576|0.97222\n33577|0.59722\n33578|0.47222\n33579|0.73611\n33580|0.73611\n33581|0.79167\n33582|0.58333\n33583|0.68056\n33584|0.93056\n33585|0.84722\n33586|0.27778\n33587|0.77778\n33588|0.80556\n33589|0.79167\n33590|0.44444\n33591|0.44444\n33592|0.94444\n33593|0.84722\n33594|0.76389\n33595|0.88889\n33596|0.76389\n33597|0.63889\n33598|0.22222\n33599|0.79167\n33600|0.45833\n33601|0.95833\n33602|0.5\n33603|0.79167\n33604|0.93056\n33605|0.80556\n33606|0.80556\n33607|0.76389\n33608|0.76389\n33609|0.63889\n33610|0.58333\n33611|0.72222\n33612|0.81944\n33613|0.81944\n33614|0.5\n33615|0.65278\n33616|0.38889\n33617|0.61111\n33618|0.81944\n33619|0.375\n33620|0.5\n33621|0.66667\n33622|0.5\n33623|0.63889\n33624|0.5\n33625|0.5\n33626|0.5\n33627|0.40278\n33628|0.73611\n33629|0.72222\n33630|0.33333\n33631|0.77778\n33632|0.36111\n33633|0.66667\n33634|0.4375\n33635|0.54167\n33636|0.76389\n33637|0.70833\n33638|0.34722\n33639|0.33333\n33640|0.30208\n33641|0.27778\n33642|0.72222\n33643|0.69444\n33644|0.65278\n33645|0.84722\n33646|0.44444\n33647|0.63889\n33648|0.56944\n33649|0.59722\n33650|0.51389\n33651|0.84375\n33652|0.76389\n33653|0.83333\n33654|0.72222\n33655|0.72222\n33656|0.5\n33657|0.83333\n33658|0.70833\n33659|0.66667\n33660|0.5\n33661|0.5\n33662|0.84722\n33663|0.52778\n33664|0.65278\n33665|0.875\n33666|0.83333\n33667|0.44444\n33668|0.47222\n33669|0.52778\n33670|0.33333\n33671|0.56944\n33672|0.66667\n33673|0.44444\n33674|0.43056\n33675|0.5\n33676|0.19444\n33677|0.27778\n33678|0.38889\n33679|0.73611\n33680|0.77778\n33681|0.68056\n33682|0.47222\n33683|0.69444\n33684|0.68056\n33685|0.75\n33686|0.5\n33687|0.70833\n33688|0.51389\n33689|0.59722\n33690|0.56944\n33691|0.48611\n33692|0.33333\n33693|0.625\n33694|0.63889\n33695|0.91667\n33696|0.81944\n33697|0.625\n33698|0.5\n33699|0.38889\n33700|0.65278\n33701|0.77778\n33702|0.61111\n33703|0.69444\n33704|0.38889\n33705|0.5\n33706|0.72222\n33707|0.86111\n33708|0.97222\n33709|0.95833\n33710|0.5\n33711|0.75\n33712|0.5\n33713|0.72222\n33714|0.61111\n33715|0.48611\n33716|0.52778\n33717|0.77778\n33718|0.63542\n33719|0.70833\n33720|0.61111\n33721|0.68056\n33722|0.59722\n33723|0.55556\n33724|0.55556\n33725|0.88889\n33726|0.5\n33727|0.55556\n33728|0.54167\n33729|0.43056\n33730|0.51389\n33731|0.65278\n33732|0.65278\n33733|0.81944\n33734|0.68056\n33735|0.48611\n33736|0.5\n33737|0.5\n33738|0.77778\n33739|0.88889\n33740|0.80556\n33741|0.5\n33742|0.5\n33743|0.58333\n33744|0.38889\n33745|0.55556\n33746|0.69444\n33747|0.52778\n33748|0.72222\n33749|0.56944\n33750|0.69444\n33751|0.59722\n33752|0.31944\n33753|0.5\n33754|0.44444\n33755|0.27778\n33756|0.16667\n33757|0.47222\n33758|0.47222\n33759|0.625\n33760|0.5\n33761|0.45833\n33762|0.59722\n33763|0.5\n33764|0.5\n33765|0.83333\n33766|0.5\n33767|0.72222\n33768|0.40278\n33769|0.23611\n33770|0.65278\n33771|0.58333\n33772|0.59722\n33773|0.70833\n33774|0.27778\n33775|0.68056\n33776|0.5\n33777|0.70833\n33778|0.26389\n33779|0.79167\n33780|0.79167\n33781|0.75\n33782|0.90278\n33783|0.80556\n33784|0.91667\n33785|0.81944\n33786|0.56944\n33787|0.61111\n33788|0.77778\n33789|0.54167\n33790|0.36111\n33791|0.72222\n33792|0.45833\n33793|0.44444\n33794|0.36111\n33795|0.56944\n33796|0.70833\n33797|0.79167\n33798|0.5\n33799|0.5\n33800|0.43056\n33801|0.41667\n33802|0.52778\n33803|0.65278\n33804|0.30556\n33805|0.5\n33806|0.55556\n33807|0.23611\n33808|0.16667\n33809|0.72222\n33810|0.5\n33811|0.51389\n33812|0.59722\n33813|0.5\n33814|0.38889\n33815|0.48611\n33816|0.55556\n33817|0.5\n33818|0.47222\n33819|0.5\n33820|0.65278\n33821|0.68056\n33822|0.75\n33823|0.83333\n33824|0.5\n33825|0.5\n33826|0.61111\n33827|0.5\n33828|0.61111\n33829|0.65278\n33830|0.63889\n33831|0.59722\n33832|0.5\n33833|0.58333\n33834|0.66667\n33835|0.72222\n33836|0.5\n33837|0.33333\n33838|0.29167\n33839|0.22222\n33840|0.5\n33841|0.55556\n33842|0.68056\n33843|0.5\n33844|0.69444\n33845|0.55556\n33846|0.55556\n33847|0.5\n33848|0.83333\n33849|0.5\n33850|0.73611\n33851|0.5\n33852|0.34722\n33853|0.73611\n33854|0.43056\n33855|0.5\n33856|0.81944\n33857|0.5\n33858|0.5\n33859|0.5\n33860|0.30556\n33861|0.77778\n33862|0.5\n33863|0.55556\n33864|0.94444\n33865|0.68056\n33866|0.5\n33867|0.23611\n33868|0.55556\n33869|0.63889\n33870|0.65278\n33871|0.625\n33872|0.28125\n33873|0.31944\n33874|0.5\n33875|0.65278\n33876|0.56944\n33877|0.55556\n33878|0.5\n33879|0.33333\n33880|0.63889\n33881|0.52778\n33882|0.20833\n33883|0.375\n33884|0.47222\n33885|0.56944\n33886|0.38889\n33887|0.55556\n33888|0.75\n33889|0.5\n33890|0.52778\n33891|0.48611\n33892|0.68056\n33893|0.73611\n33894|0.73611\n33895|0.41667\n33896|0.5\n33897|0.80556\n33898|0.43056\n33899|0.61111\n33900|0.38889\n33901|0.38889\n33902|0.83333\n33903|0.76389\n33904|0.45833\n33905|0.22222\n33906|0.51389\n33907|0.44444\n33908|0.58333\n33909|0.80556\n33910|0.61111\n33911|0.83333\n33912|0.84722\n33913|0.83333\n33914|0.47222\n33915|0.38889\n33916|0.69444\n33917|0.90278\n33918|0.52778\n33919|0.33333\n33920|0.66667\n33921|0.55556\n33922|0.34722\n33923|0.88889\n33924|0.52778\n33925|0.83333\n33926|0.70833\n33927|0.63889\n33928|0.70833\n33929|0.63889\n33930|0.61111\n33931|0.59722\n33932|0.56944\n33933|0.55556\n33934|0.97222\n33935|0.91667\n33936|0.44444\n33937|0.33333\n33938|0.5\n33939|0.5\n33940|0.73611\n33941|0.47222\n33942|0.5\n33943|0.5\n33944|0.47222\n33945|0.45833\n33946|0.48611\n33947|0.5\n33948|0.5\n33949|0.70833\n33950|0.68056\n33951|0.44444\n33952|0.70833\n33953|0.52778\n33954|0.5\n33955|0.51389\n33956|0.5\n33957|0.73611\n33958|0.61111\n33959|0.75\n33960|0.61111\n33961|0.72222\n33962|0.41667\n33963|0.55556\n33964|0.5\n33965|0.54167\n33966|0.68056\n33967|0.30556\n33968|0.625\n33969|0.61111\n33970|0.69444\n33971|0.36111\n33972|0.5\n33973|0.51389\n33974|0.5\n33975|0.88889\n33976|0.5\n33977|0.55556\n33978|0.52778\n33979|0.44444\n33980|0.61111\n33981|0.51389\n33982|0.59722\n33983|0.48611\n33984|0.5\n33985|0.5\n33986|0.5\n33987|0.5\n33988|0.44444\n33989|0.5\n33990|0.58333\n33991|0.63889\n33992|0.61111\n33993|0.55556\n33994|0.80556\n33995|0.83333\n33996|0.63889\n33997|0.68056\n33998|0.70833\n33999|0.51389\n34000|0.68056\n34001|0.72222\n34002|0.56944\n34003|0.70833\n34004|0.59722\n34005|0.44444\n34006|0.83333\n34007|0.48611\n34008|0.75\n34009|0.73611\n34010|0.51389\n34011|0.20833\n34012|0.5\n34013|0.33333\n34014|0.61111\n34015|0.88889\n34016|0.16667\n34017|0.44444\n34018|0.65278\n34019|0.66667\n34020|0.5\n34021|0.5\n34022|0.91667\n34023|0.66667\n34024|0.63889\n34025|0.58333\n34026|0.66667\n34027|0.54167\n34028|0.33333\n34029|0.48611\n34030|0.51389\n34031|0.51389\n34032|0.45833\n34033|0.43056\n34034|0.55556\n34035|0.51389\n34036|0.69444\n34037|0.26042\n34038|0.55556\n34039|0.51389\n34040|0.5\n34041|0.55556\n34042|0.5\n34043|0.55556\n34044|0.80556\n34045|0.83333\n34046|0.66667\n34047|0.5\n34048|0.72222\n34049|0.44444\n34050|0.79167\n34051|0.81944\n34052|0.31944\n34053|0.59722\n34054|0.70833\n34055|0.5\n34056|0.63889\n34057|0.55556\n34058|0.5\n34059|0.5\n34060|0.5\n34061|0.875\n34062|0.5\n34063|0.67708\n34064|0.625\n34065|0.55556\n34066|0.52778\n34067|0.75\n34068|0.66667\n34069|0.72222\n34070|0.75\n34071|0.80556\n34072|0.58333\n34073|0.54167\n34074|0.69444\n34075|0.5\n34076|0.52778\n34077|0.5\n34078|0.44444\n34079|0.66667\n34080|0.5\n34081|0.5\n34082|0.5\n34083|0.73611\n34084|0.86111\n34085|0.66667\n34086|0.58333\n34087|0.76389\n34088|0.625\n34089|0.73611\n34090|0.52778\n34091|0.83333\n34092|0.51389\n34093|0.61111\n34094|0.625\n34095|0.58333\n34096|0.75\n34097|0.77778\n34098|0.25\n34099|0.5\n34100|0.40278\n34101|0.5\n34102|0.66667\n34103|0.52778\n34104|0.27778\n34105|0.33333\n34106|0.47222\n34107|0.45833\n34108|0.61111\n34109|0.48611\n34110|0.52778\n34111|0.5\n34112|0.5\n34113|0.22222\n34114|0.38889\n34115|0.54167\n34116|0.55556\n34117|0.54167\n34118|0.63889\n34119|0.55556\n34120|0.61111\n34121|0.33333\n34122|0.43056\n34123|0.375\n34124|0.80556\n34125|0.83333\n34126|0.72222\n34127|0.44444\n34128|0.43056\n34129|0.5\n34130|0.72222\n34131|0.52778\n34132|0.52778\n34133|0.56944\n34134|0.47222\n34135|0.34722\n34136|0.70833\n34137|0.72222\n34138|0.54167\n34139|0.65278\n34140|0.76389\n34141|0.75\n34142|0.73611\n34143|0.5\n34144|0.44444\n34145|0.48611\n34146|0.52778\n34147|0.44444\n34148|0.86111\n34149|0.15278\n34150|0.33333\n34151|0.48611\n34152|0.5\n34153|0.47222\n34154|0.55556\n34155|0.55556\n34156|0.68056\n34157|0.52778\n34158|0.5\n34159|0.55556\n34160|0.93056\n34161|0.5\n34162|0.51389\n34163|0.83333\n34164|0.86111\n34165|0.80556\n34166|0.54167\n34167|0.72222\n34168|0.80556\n34169|0.61111\n34170|0.5\n34171|0.66667\n34172|0.5\n34173|0.5\n34174|0.6875\n34175|0.5\n34176|0.5\n34177|0.5\n34178|0.33333\n34179|0.22222\n34180|0.73611\n34181|0.625\n34182|0.5\n34183|0.34722\n34184|0.5\n34185|0.36111\n34186|0.38889\n34187|0.5\n34188|0.58333\n34189|0.63889\n34190|0.51389\n34191|0.5\n34192|0.73611\n34193|0.69444\n34194|0.59722\n34195|0.5\n34196|0.38889\n34197|0.44444\n34198|0.5\n34199|0.58333\n34200|0.56944\n34201|0.26389\n34202|0.55556\n34203|0.5\n34204|0.40278\n34205|0.5\n34206|0.58333\n34207|0.16667\n34208|0.27778\n34209|0.27778\n34210|0.5\n34211|0.63889\n34212|0.79167\n34213|0.30556\n34214|0.56944\n34215|0.5\n34216|0.375\n34217|0.40278\n34218|0.27778\n34219|0.34722\n34220|0.33333\n34221|0.41667\n34222|0.33333\n34223|0.58333\n34224|0.69444\n34225|0.77778\n34226|0.68056\n34227|0.76389\n34228|0.5\n34229|0.77778\n34230|0.76389\n34231|0.59722\n34232|0.55556\n34233|0.88889\n34234|0.75\n34235|0.77778\n34236|0.69444\n34237|0.93056\n34238|0.59722\n34239|0.77778\n34240|0.63889\n34241|0.66667\n34242|0.81944\n34243|0.75\n34244|0.80556\n34245|0.70833\n34246|0.93056\n34247|0.83333\n34248|0.41667\n34249|0.33333\n34250|0.43056\n34251|0.27778\n34252|0.41667\n34253|0.70833\n34254|0.47222\n34255|0.54167\n34256|0.55556\n34257|0.80556\n34258|0.76389\n34259|0.33333\n34260|0.40278\n34261|0.72222\n34262|0.625\n34263|0.625\n34264|0.61111\n34265|0.55556\n34266|0.33333\n34267|0.38889\n34268|0.5\n34269|0.5\n34270|0.55556\n34271|0.68056\n34272|0.5\n34273|0.25\n34274|0.70833\n34275|0.77778\n34276|0.90278\n34277|0.5\n34278|0.77778\n34279|0.79167\n34280|0.75\n34281|0.23611\n34282|0.5\n34283|0.875\n34284|0.68056\n34285|0.80556\n34286|0.70833\n34287|0.52778\n34288|0.59722\n34289|0.625\n34290|0.45833\n34291|0.65278\n34292|0.5\n34293|0.55556\n34294|0.68056\n34295|0.69444\n34296|0.81944\n34297|0.61111\n34298|0.69444\n34299|0.77778\n34300|0.76389\n34301|0.5\n34302|0.66667\n34303|0.63889\n34304|0.70833\n34305|0.5\n34306|0.73611\n34307|0.80556\n34308|0.88889\n34309|0.5\n34310|0.55556\n34311|0.73611\n34312|0.77778\n34313|0.75\n34314|0.69444\n34315|0.61111\n34316|0.55556\n34317|0.69444\n34318|0.79167\n34319|0.52778\n34320|0.83333\n34321|0.58333\n34322|0.375\n34323|0.90278\n34324|0.58333\n34325|0.58333\n34326|0.69444\n34327|0.65278\n34328|0.44444\n34329|0.625\n34330|0.625\n34331|0.55556\n34332|0.80556\n34333|0.5\n34334|0.91667\n34335|0.5\n34336|0.5\n34337|0.5\n34338|0.56944\n34339|0.5\n34340|0.5\n34341|0.5\n34342|0.44444\n34343|0.5\n34344|0.68056\n34345|0.5\n34346|0.77778\n34347|0.5\n34348|0.81944\n34349|0.66667\n34350|0.76389\n34351|0.72222\n34352|0.75\n34353|0.5\n34354|0.61111\n34355|0.51389\n34356|0.5\n34357|0.41667\n34358|0.79167\n34359|0.44444\n34360|0.375\n34361|0.40278\n34362|0.41667\n34363|0.41667\n34364|0.38889\n34365|0.56944\n34366|0.5\n34367|0.5\n34368|0.5\n34369|0.375\n34370|0.75\n34371|0.51389\n34372|0.5\n34373|0.55556\n34374|0.51042\n34375|0.5\n34376|0.38889\n34377|0.5\n34378|0.5\n34379|0.5\n34380|0.5\n34381|0.79167\n34382|0.95833\n34383|0.54167\n34384|0.54167\n34385|0.55556\n34386|0.5\n34387|0.66667\n34388|0.88889\n34389|0.52778\n34390|0.66667\n34391|0.5\n34392|0.61111\n34393|0.65278\n34394|1\n34395|0.43056\n34396|0.54167\n34397|0.77778\n34398|0.5\n34399|0.48611\n34400|0.5\n34401|0.625\n34402|0.56944\n34403|0.63889\n34404|0.76389\n34405|0.68056\n34406|0.58333\n34407|0.40278\n34408|0.5\n34409|0.52778\n34410|0.47222\n34411|0.27778\n34412|0.36111\n34413|0.43056\n34414|0.95833\n34415|0.72222\n34416|0.66667\n34417|0.61111\n34418|0.65278\n34419|0.33333\n34420|0.44444\n34421|0.63889\n34422|0.43056\n34423|0.375\n34424|0.31944\n34425|0.59722\n34426|0.61111\n34427|0.58333\n34428|0.52778\n34429|0.73611\n34430|0.72222\n34431|0.44444\n34432|0.44444\n34433|0.66667\n34434|0.5\n34435|0.36111\n34436|0.22222\n34437|0.625\n34438|0.38889\n34439|0.5\n34440|0.36458\n34441|0.55556\n34442|0.70833\n34443|0.72222\n34444|0.81944\n34445|0.5\n34446|0.5\n34447|0.5\n34448|0.66667\n34449|0.88889\n34450|0.88889\n34451|0.52778\n34452|0.5\n34453|0.55556\n34454|0.80556\n34455|0.54167\n34456|0.41667\n34457|0.65278\n34458|0.77778\n34459|0.81944\n34460|0.76389\n34461|0.86111\n34462|0.625\n34463|0.44444\n34464|0.5\n34465|0.5\n34466|0.51389\n34467|0.75\n34468|0.80556\n34469|0.5\n34470|0.79167\n34471|0.88889\n34472|0.875\n34473|0.875\n34474|0.61111\n34475|0.61111\n34476|0.47222\n34477|0.22222\n34478|0.63889\n34479|0.5\n34480|0.5\n34481|0.58333\n34482|0.625\n34483|0.41667\n34484|0.38889\n34485|0.34722\n34486|0.30556\n34487|0.66667\n34488|0.5\n34489|0.5\n34490|0.58333\n34491|0.5\n34492|0.69444\n34493|0.79167\n34494|0.56944\n34495|0.5\n34496|0.54167\n34497|0.625\n34498|0.5\n34499|0.33333\n34500|0.33333\n34501|0.36111\n34502|0.31944\n34503|0.66667\n34504|0.5\n34505|0.5\n34506|0.52778\n34507|0.55556\n34508|0.58333\n34509|0.76389\n34510|0.61111\n34511|0.58333\n34512|0.61111\n34513|0.61111\n34514|0.56944\n34515|0.22222\n34516|0.44444\n34517|0.26389\n34518|0.56944\n34519|0.45833\n34520|0.40278\n34521|0.36111\n34522|0.68056\n34523|0.5\n34524|0.5\n34525|0.44444\n34526|0.35417\n34527|0.61111\n34528|0.33333\n34529|0.55556\n34530|0.59722\n34531|0.5\n34532|0.625\n34533|0.72222\n34534|0.40278\n34535|0.55556\n34536|0.72222\n34537|0.5\n34538|0.5\n34539|0.43056\n34540|0.56944\n34541|0.66667\n34542|0.5\n34543|0.44444\n34544|0.5\n34545|0.5\n34546|0.5\n34547|0.44444\n34548|0.47222\n34549|0.66667\n34550|0.5\n34551|0.68056\n34552|0.51389\n34553|0.31944\n34554|0.5\n34555|0.56944\n34556|0.5\n34557|0.44444\n34558|0.625\n34559|0.77778\n34560|0.77778\n34561|0.77778\n34562|0.41667\n34563|0.48611\n34564|0.72222\n34565|0.77778\n34566|0.38889\n34567|0.41667\n34568|0.44444\n34569|0.34722\n34570|0.5\n34571|0.69444\n34572|0.81944\n34573|0.66667\n34574|0.625\n34575|0.31944\n34576|0.58333\n34577|0.58333\n34578|0.61111\n34579|0.30556\n34580|0.58333\n34581|0.41667\n34582|0.5\n34583|0.55556\n34584|0.65278\n34585|0.43056\n34586|0.77778\n34587|0.52778\n34588|0.56944\n34589|0.52778\n34590|0.58333\n34591|0.55556\n34592|0.56944\n34593|0.625\n34594|0.5\n34595|0.70833\n34596|0.61111\n34597|0.76389\n34598|0.47222\n34599|0.47222\n34600|0.5\n34601|0.51389\n34602|0.5\n34603|0.48611\n34604|0.61111\n34605|0.55556\n34606|0.63889\n34607|0.48611\n34608|0.5\n34609|0.66667\n34610|0.65278\n34611|0.45833\n34612|0.5\n34613|0.51389\n34614|0.55556\n34615|0.5\n34616|0.55556\n34617|0.5\n34618|0.29167\n34619|0.94444\n34620|0.83333\n34621|0.625\n34622|0.66667\n34623|0.75\n34624|0.5\n34625|0.18056\n34626|0.33333\n34627|0.23611\n34628|0.81944\n34629|0.5\n34630|0.5\n34631|0.59722\n34632|0.63889\n34633|0.41667\n34634|0.36111\n34635|0.80556\n34636|0.66667\n34637|0.75\n34638|0.54167\n34639|0.40278\n34640|0.69444\n34641|0.52778\n34642|0.23611\n34643|0.27778\n34644|0.5\n34645|0.84722\n34646|0.93056\n34647|0.38889\n34648|0.5\n34649|0.23611\n34650|0.40278\n34651|0.5\n34652|0.55556\n34653|0.44444\n34654|0.15278\n34655|0.80556\n34656|0.68056\n34657|0.36111\n34658|0.69444\n34659|0.5\n34660|0.26389\n34661|0.15278\n34662|0.77778\n34663|0.94444\n34664|0.875\n34665|0.77778\n34666|0.72222\n34667|0.54167\n34668|0.65278\n34669|0.79167\n34670|0.65278\n34671|0.29167\n34672|0.26389\n34673|0.5\n34674|0.5\n34675|0.65278\n34676|0.5\n34677|0.5\n34678|0.5\n34679|0.44444\n34680|0.5\n34681|0.34722\n34682|0.52778\n34683|0.5\n34684|0.80556\n34685|0.23611\n34686|0.58333\n34687|0.33333\n34688|0.44444\n34689|0.66667\n34690|0.5\n34691|0.73611\n34692|0.75\n34693|0.625\n34694|0.56944\n34695|0.86111\n34696|0.77778\n34697|0.59722\n34698|0.5\n34699|0.5\n34700|0.61111\n34701|0.63889\n34702|0.79167\n34703|0.70833\n34704|0.5\n34705|0.61111\n34706|0.86111\n34707|0.66667\n34708|0.79167\n34709|0.70833\n34710|0.63889\n34711|0.88889\n34712|0.70833\n34713|0.75\n34714|0.55556\n34715|0.5\n34716|0.52778\n34717|0.60417\n34718|0.63889\n34719|0.70833\n34720|0.69444\n34721|0.47222\n34722|0.5\n34723|0.66667\n34724|0.63889\n34725|0.56944\n34726|0.58333\n34727|0.70833\n34728|0.44444\n34729|0.48611\n34730|0.55556\n34731|0.44444\n34732|0.65278\n34733|0.44444\n34734|0.63889\n34735|0.5\n34736|0.55556\n34737|0.47222\n34738|0.625\n34739|0.70833\n34740|0.45833\n34741|0.083333\n34742|0.61111\n34743|0.55556\n34744|0.40278\n34745|0.5\n34746|0.29167\n34747|0.43056\n34748|0.19444\n34749|0.45833\n34750|0.63889\n34751|0.5\n34752|0.5\n34753|0.59722\n34754|0.5\n34755|0.76389\n34756|0.66667\n34757|0.88889\n34758|0.73611\n34759|0.54167\n34760|0.5\n34761|0.77778\n34762|0.86111\n34763|0.72222\n34764|0.83333\n34765|0.5\n34766|0.83333\n34767|0.5\n34768|0.83333\n34769|0.63889\n34770|0.5\n34771|0.5\n34772|0.56944\n34773|0.5\n34774|0.52778\n34775|0.72222\n34776|0.52778\n34777|0.38889\n34778|0.41667\n34779|0.55556\n34780|0.5\n34781|0.61111\n34782|0.44444\n34783|0.52778\n34784|0.5\n34785|0.76389\n34786|0.5\n34787|0.55556\n34788|0.54167\n34789|0.51389\n34790|0.38889\n34791|0.5\n34792|0.52778\n34793|0.41667\n34794|0.59722\n34795|0.93056\n34796|0.70833\n34797|0.69444\n34798|0.5\n34799|0.47222\n34800|0.5\n34801|0.48611\n34802|0.36111\n34803|0.5\n34804|0.61111\n34805|0.55556\n34806|0.55556\n34807|0.43056\n34808|0.33333\n34809|0.34722\n34810|0.43056\n34811|0.36111\n34812|0.40278\n34813|0.5\n34814|0.5\n34815|0.51389\n34816|0.33333\n34817|0.70833\n34818|0.59722\n34819|0.48611\n34820|0.61111\n34821|0.65278\n34822|0.63889\n34823|0.91667\n34824|0.73611\n34825|0.52778\n34826|0.41667\n34827|0.51389\n34828|0.5\n34829|0.5\n34830|0.125\n34831|0.29167\n34832|0.34722\n34833|0.5\n34834|0.5\n34835|0.55556\n34836|0.5\n34837|0.51389\n34838|0.55556\n34839|0.52778\n34840|0.5\n34841|0.5\n34842|0.055556\n34843|0.40278\n34844|0.55556\n34845|0.47222\n34846|0.98611\n34847|0.88889\n34848|0.72222\n34849|0.81944\n34850|0.93056\n34851|0.25\n34852|0.54167\n34853|0.33333\n34854|0.5\n34855|0.44444\n34856|0.56944\n34857|0.55556\n34858|0.61111\n34859|0.84722\n34860|0.61458\n34861|0.52778\n34862|0.61111\n34863|0.54167\n34864|0.45833\n34865|0.36111\n34866|0.34722\n34867|0.26389\n34868|0.5\n34869|0.5\n34870|0.52778\n34871|0.33333\n34872|0.5\n34873|0.68056\n34874|0.54167\n34875|0.29167\n34876|0.47222\n34877|0.29167\n34878|0.65278\n34879|0.52778\n34880|0.30556\n34881|0.5\n34882|0.5\n34883|0.27778\n34884|0.75\n34885|0.77778\n34886|0.13889\n34887|0.66667\n34888|0.47222\n34889|0.45833\n34890|0.56944\n34891|0.5\n34892|0.77778\n34893|0.59722\n34894|0.44444\n34895|0.31944\n34896|0.5\n34897|0.63889\n34898|0.71875\n34899|0.5\n34900|0.55556\n34901|0.5\n34902|0.61111\n34903|0.5\n34904|0.54167\n34905|0.73611\n34906|0.75\n34907|0.68056\n34908|0.77778\n34909|0.81944\n34910|0.84722\n34911|0.77778\n34912|0.73611\n34913|0.5\n34914|0.47222\n34915|0.22222\n34916|0.43056\n34917|0.75\n34918|0.44444\n34919|0.47222\n34920|0.66667\n34921|0.70833\n34922|0.76389\n34923|0.125\n34924|0.5\n34925|0.5\n34926|0.31944\n34927|0.54167\n34928|0.56944\n34929|0.27778\n34930|0.44444\n34931|0.875\n34932|0.55556\n34933|0.31944\n34934|0.59722\n34935|0.69444\n34936|0.5\n34937|0.45833\n34938|0.5\n34939|0.27778\n34940|0.5\n34941|0.53125\n34942|0.56944\n34943|0.66667\n34944|0.79167\n34945|0.66667\n34946|0.44444\n34947|0.44444\n34948|0.23611\n34949|0.44444\n34950|0.5\n34951|0.5\n34952|0.5\n34953|0.23611\n34954|0.51389\n34955|0.72222\n34956|0.625\n34957|0.61111\n34958|0.72222\n34959|0.40278\n34960|0.38889\n34961|0.36111\n34962|0.36111\n34963|0.375\n34964|0.65278\n34965|0.55556\n34966|0.41667\n34967|0.48611\n34968|0.41667\n34969|0.38889\n34970|0.26042\n34971|0.5\n34972|0.375\n34973|0.25\n34974|0.38889\n34975|0.48611\n34976|0.44444\n34977|0.56944\n34978|0.43056\n34979|0.58333\n34980|0.13542\n34981|0.66667\n34982|0.44444\n34983|0.5\n34984|0.48611\n34985|0.48611\n34986|0.44444\n34987|0.47222\n34988|0.58333\n34989|0.5\n34990|0.48611\n34991|0.75\n34992|0.5\n34993|0.5\n34994|0.66667\n34995|0.72222\n34996|0.34722\n34997|0.13889\n34998|0.61111\n34999|0.61111\n35000|0.61111\n35001|0.76389\n35002|0.33333\n35003|0.58333\n35004|0.58333\n35005|0.77778\n35006|0.34722\n35007|0.625\n35008|0.61111\n35009|0.40278\n35010|0.43056\n35011|0.44444\n35012|0.77778\n35013|0.66667\n35014|0.52778\n35015|0.23611\n35016|0.5\n35017|0.5\n35018|0.5\n35019|0.66667\n35020|0.51389\n35021|0.66667\n35022|0.5\n35023|0.75\n35024|0.83333\n35025|0.54167\n35026|0.66667\n35027|0.42708\n35028|0.52778\n35029|0.625\n35030|0.61111\n35031|0.61111\n35032|0.5\n35033|0.43056\n35034|0.27778\n35035|0.5\n35036|0.27778\n35037|0.5\n35038|0.59722\n35039|0.625\n35040|0.52778\n35041|0.58333\n35042|0.5\n35043|0.5\n35044|0.5\n35045|0.35417\n35046|0.5\n35047|0.59722\n35048|0.5\n35049|0.5\n35050|0.65278\n35051|0.55556\n35052|0.84722\n35053|0.90278\n35054|0.40278\n35055|0.5\n35056|0.38889\n35057|0.72222\n35058|0.68056\n35059|0.58333\n35060|0.5\n35061|0.38889\n35062|0.36111\n35063|0.26389\n35064|0.36111\n35065|0.31944\n35066|0.47222\n35067|0.5\n35068|0.44444\n35069|0.63889\n35070|0.58333\n35071|0.5\n35072|0.54167\n35073|0.79167\n35074|0.5\n35075|0.61111\n35076|0.5\n35077|0.66667\n35078|0.5\n35079|0.5\n35080|0.5\n35081|0.56944\n35082|0.70833\n35083|0.5\n35084|0.25\n35085|0.68056\n35086|0.5\n35087|0.5\n35088|0.66667\n35089|0.5\n35090|0.5\n35091|0.5\n35092|0.47222\n35093|0.61111\n35094|0.84722\n35095|0.55556\n35096|0.5\n35097|0.5\n35098|0.5\n35099|0.5\n35100|0.5\n35101|0.56944\n35102|0.5\n35103|0.47222\n35104|0.33333\n35105|0.5\n35106|0.5\n35107|0.5\n35108|0.5\n35109|0.44444\n35110|0.5\n35111|0.5\n35112|0.5\n35113|0.5\n35114|0.5\n35115|0.5\n35116|0.54167\n35117|0.61111\n35118|0.5\n35119|0.44444\n35120|0.36111\n35121|0.79167\n35122|0.48611\n35123|0.55556\n35124|0.625\n35125|0.5\n35126|0.5\n35127|0.5\n35128|0.5\n35129|0.5\n35130|0.5\n35131|0.5\n35132|0.66667\n35133|0.5\n35134|0.45833\n35135|0.58333\n35136|0.5\n35137|0.69444\n35138|0.61111\n35139|0.5\n35140|0.44444\n35141|0.5\n35142|0.54167\n35143|0.61111\n35144|0.56944\n35145|0.80556\n35146|0.72222\n35147|0.61111\n35148|0.60417\n35149|0.52778\n35150|0.61111\n35151|0.86111\n35152|0.91667\n35153|0.79167\n35154|0.81944\n35155|0.45833\n35156|0.5\n35157|0.5\n35158|0.5\n35159|0.5\n35160|0.65278\n35161|0.5\n35162|0.5\n35163|0.33333\n35164|0.77778\n35165|0.5\n35166|0.5\n35167|0.5\n35168|0.68056\n35169|0.5\n35170|0.55556\n35171|0.83333\n35172|0.86111\n35173|0.47222\n35174|0.5\n35175|0.52778\n35176|0.44444\n35177|0.5\n35178|0.5\n35179|0.47222\n35180|0.5\n35181|0.5\n35182|0.51389\n35183|0.5\n35184|0.5\n35185|0.5\n35186|0.55556\n35187|0.75\n35188|0.65278\n35189|0.45833\n35190|0.625\n35191|0.5\n35192|0.66667\n35193|0.54167\n35194|0.45833\n35195|0.61111\n35196|0.77778\n35197|0.63889\n35198|0.66667\n35199|0.73611\n35200|0.5\n35201|0.5\n35202|0.26389\n35203|0.26389\n35204|0.55556\n35205|0.5\n35206|0.45833\n35207|0.5\n35208|0.5\n35209|0.75\n35210|0.51389\n35211|0.45833\n35212|0.73611\n35213|0.5\n35214|0.5\n35215|0.29167\n35216|0.625\n35217|0.54167\n35218|0.80556\n35219|0.68056\n35220|0.61111\n35221|0.77778\n35222|0.48611\n35223|0.5\n35224|0.45833\n35225|0.65278\n35226|0.58333\n35227|0.83333\n35228|0.66667\n35229|0.75\n35230|0.5\n35231|0.61111\n35232|0.59722\n35233|0.5\n35234|0.52778\n35235|0.61111\n35236|0.51389\n35237|0.25\n35238|0.51389\n35239|0.70833\n35240|0.56944\n35241|0.52778\n35242|0.5\n35243|0.5\n35244|0.54167\n35245|0.63889\n35246|0.66667\n35247|0.61111\n35248|0.40278\n35249|0.58333\n35250|0.625\n35251|0.73611\n35252|0.75\n35253|0.61111\n35254|0.69444\n35255|0.76389\n35256|0.55556\n35257|0.63889\n35258|0.81944\n35259|0.72222\n35260|0.625\n35261|0.65278\n35262|0.73611\n35263|0.5\n35264|0.5\n35265|0.83333\n35266|0.5\n35267|0.45833\n35268|0.40278\n35269|0.5\n35270|0.68056\n35271|0.63889\n35272|0.56944\n35273|0.27778\n35274|0.375\n35275|0.83333\n35276|0.55556\n35277|0.65278\n35278|0.51389\n35279|0.55556\n35280|0.66667\n35281|0.59722\n35282|0.45833\n35283|0.5\n35284|0.59722\n35285|1\n35286|0.70833\n35287|0.43056\n35288|0.63889\n35289|0.36111\n35290|0.63889\n35291|0.83333\n35292|0.66667\n35293|0.5\n35294|0.5\n35295|0.38889\n35296|0.5\n35297|0.63889\n35298|0.72222\n35299|0.51389\n35300|0.33333\n35301|0.48611\n35302|0.54167\n35303|0.5\n35304|0.5\n35305|0.5\n35306|0.84722\n35307|0.5\n35308|0.5\n35309|0.55556\n35310|0.93056\n35311|0.875\n35312|0.63889\n35313|0.43056\n35314|0.5\n35315|0.5\n35316|0.38889\n35317|0.55556\n35318|0.55556\n35319|0.56944\n35320|0.55556\n35321|0.59722\n35322|0.5\n35323|0.56944\n35324|0.5\n35325|0.5\n35326|0.77778\n35327|0.55556\n35328|0.31944\n35329|0.34722\n35330|0.77778\n35331|0.5\n35332|0.63889\n35333|0.375\n35334|0.23611\n35335|0.52778\n35336|0.55556\n35337|0.54167\n35338|0.22222\n35339|0.55556\n35340|0.48611\n35341|0.5\n35342|0.55556\n35343|0.625\n35344|0.5\n35345|0.61111\n35346|0.66667\n35347|0.30556\n35348|0.68056\n35349|0.375\n35350|0.51389\n35351|0.54167\n35352|0.66667\n35353|0.77778\n35354|0.5\n35355|0.69444\n35356|0.38889\n35357|0.34722\n35358|0.65278\n35359|0.5\n35360|0.54167\n35361|0.38889\n35362|0.72222\n35363|0.52778\n35364|0.55556\n35365|0.84722\n35366|0.5\n35367|0.63889\n35368|0.38889\n35369|0.5\n35370|0.61111\n35371|0.75\n35372|0.80556\n35373|0.625\n35374|0.70833\n35375|0.73611\n35376|0.5\n35377|0.44444\n35378|0.27778\n35379|0.5\n35380|0.5\n35381|0.47222\n35382|0.65278\n35383|0.44444\n35384|0.86111\n35385|0.5\n35386|0.61111\n35387|0.44444\n35388|0.51389\n35389|0.69444\n35390|0.55556\n35391|0.5\n35392|0.70833\n35393|0.59722\n35394|0.65278\n35395|0.5\n35396|0.625\n35397|0.86111\n35398|0.88889\n35399|0.56944\n35400|0.91667\n35401|0.77778\n35402|0.79167\n35403|0.5\n35404|0.625\n35405|0.77778\n35406|0.31944\n35407|0.52778\n35408|0.66667\n35409|0.51389\n35410|0.52778\n35411|0.77778\n35412|0.68056\n35413|0.83333\n35414|0.55556\n35415|0.79167\n35416|0.36111\n35417|0.51389\n35418|0.5\n35419|0.68056\n35420|0.5\n35421|0.48611\n35422|0.44444\n35423|0.5\n35424|0.83333\n35425|0.5\n35426|0.5\n35427|0.59722\n35428|0.5\n35429|0.65278\n35430|0.40278\n35431|0.52778\n35432|0.83333\n35433|0.625\n35434|0.83333\n35435|0.80556\n35436|0.88889\n35437|0.84722\n35438|0.58333\n35439|0.65278\n35440|0.52778\n35441|0.5\n35442|0.5\n35443|0.61111\n35444|0.73611\n35445|0.47222\n35446|0.63889\n35447|0.66667\n35448|0.5\n35449|0.65278\n35450|0.375\n35451|0.44444\n35452|0.5\n35453|0.5\n35454|0.5\n35455|0.5\n35456|0.5\n35457|0.5\n35458|0.5\n35459|0.48958\n35460|0.47222\n35461|0.45833\n35462|0.5\n35463|0.5\n35464|0.56944\n35465|0.81944\n35466|0.65278\n35467|0.5\n35468|0.65278\n35469|0.58333\n35470|0.66667\n35471|0.45833\n35472|0.73611\n35473|0.67708\n35474|0.76389\n35475|0.88889\n35476|0.80556\n35477|0.98611\n35478|0.84722\n35479|0.88542\n35480|1\n35481|0.5\n35482|0.63889\n35483|0.5\n35484|0.38889\n35485|0.5\n35486|0.65278\n35487|0.68056\n35488|0.55556\n35489|0.72222\n35490|0.61111\n35491|0.5\n35492|0.61111\n35493|0.48611\n35494|0.5\n35495|0.55556\n35496|0.875\n35497|0.41667\n35498|0.5\n35499|0.5\n35500|0.5\n35501|0.55556\n35502|0.65278\n35503|0.625\n35504|0.5\n35505|0.5\n35506|0.79167\n35507|0.54167\n35508|0.80556\n35509|0.61111\n35510|0.5\n35511|0.5\n35512|0.79167\n35513|0.52778\n35514|0.875\n35515|0.5\n35516|0.72222\n35517|0.5\n35518|0.5\n35519|0.58333\n35520|0.58333\n35521|0.5\n35522|0.5\n35523|0.58333\n35524|0.5\n35525|0.70833\n35526|0.5\n35527|0.56944\n35528|0.5\n35529|0.88889\n35530|0.5\n35531|0.83333\n35532|0.94444\n35533|0.51389\n35534|0.56944\n35535|0.5\n35536|0.5\n35537|0.5\n35538|0.44444\n35539|0.73611\n35540|0.59722\n35541|0.43056\n35542|0.5\n35543|0.73611\n35544|0.90278\n35545|0.76389\n35546|0.55556\n35547|0.44444\n35548|0.375\n35549|0.83333\n35550|0.47222\n35551|0.33333\n35552|0.63889\n35553|0.5\n35554|0.63889\n35555|0.75\n35556|0.5\n35557|0.77083\n35558|0.55556\n35559|0.5\n35560|0.68056\n35561|0.66667\n35562|0.5\n35563|0.51389\n35564|0.5\n35565|0.44444\n35566|0.65278\n35567|0.77778\n35568|0.72222\n35569|0.61111\n35570|0.65278\n35571|0.69444\n35572|0.5\n35573|0.88889\n35574|0.88889\n35575|0.58333\n35576|0.63889\n35577|0.58333\n35578|0.33333\n35579|0.97222\n35580|0.47222\n35581|0.80556\n35582|0.40278\n35583|0.48611\n35584|0.33333\n35585|0.23611\n35586|0.55556\n35587|0.51389\n35588|0.75\n35589|0.5\n35590|0.65278\n35591|0.55556\n35592|0.66667\n35593|0.61111\n35594|0.72222\n35595|0.5\n35596|0.55556\n35597|0.5\n35598|0.59722\n35599|0.875\n35600|0.66667\n35601|0.41667\n35602|0.38889\n35603|0.43056\n35604|0.54167\n35605|0.5\n35606|0.54167\n35607|0.40278\n35608|0.5\n35609|0.5\n35610|0.68056\n35611|0.5\n35612|0.38889\n35613|0.5\n35614|0.45833\n35615|0.63889\n35616|0.73611\n35617|0.5\n35618|0.83333\n35619|0.61111\n35620|0.66667\n35621|0.36111\n35622|0.5\n35623|0.55556\n35624|0.55556\n35625|0.5\n35626|0.44444\n35627|0.52778\n35628|0.72222\n35629|0.25\n35630|0.36111\n35631|0.52778\n35632|0.5\n35633|0.68056\n35634|0.5\n35635|0.51389\n35636|0.61111\n35637|0.5\n35638|0.58333\n35639|0.54167\n35640|0.5\n35641|0.5\n35642|0.5\n35643|0.5\n35644|0.5\n35645|0.43056\n35646|0.60417\n35647|0.52778\n35648|0.79167\n35649|0.55556\n35650|0.58333\n35651|0.88889\n35652|0.29167\n35653|0.55556\n35654|0.59722\n35655|0.68056\n35656|0.5\n35657|0.5\n35658|0.55556\n35659|0.5\n35660|0.66667\n35661|0.5\n35662|0.19444\n35663|0.5\n35664|0.61111\n35665|0.54167\n35666|0.86111\n35667|0.70833\n35668|0.5\n35669|0.59722\n35670|0.66667\n35671|0.55556\n35672|0.55556\n35673|0.54167\n35674|0.86111\n35675|0.5\n35676|0.5\n35677|0.5\n35678|0.59722\n35679|0.93056\n35680|0.68056\n35681|0.88889\n35682|0.93056\n35683|0.59722\n35684|0.55556\n35685|0.48611\n35686|0.63889\n35687|0.5\n35688|0.72222\n35689|0.61111\n35690|0.68056\n35691|0.75\n35692|0.79167\n35693|0.98611\n35694|0.83333\n35695|0.875\n35696|0.77778\n35697|0.94444\n35698|0.94444\n35699|1\n35700|0.875\n35701|0.47222\n35702|0.56944\n35703|0.5\n35704|0.72222\n35705|0.80556\n35706|0.80556\n35707|0.72222\n35708|0.73611\n35709|0.65278\n35710|0.5\n35711|0.5\n35712|0.5\n35713|0.5\n35714|0.36111\n35715|0.5\n35716|0.55556\n35717|0.41667\n35718|0.5\n35719|0.5\n35720|0.56944\n35721|0.51389\n35722|0.43056\n35723|0.81944\n35724|0.69444\n35725|0.5\n35726|0.27778\n35727|0.5\n35728|0.48611\n35729|0.72222\n35730|0.19444\n35731|0.5\n35732|0.625\n35733|0.375\n35734|0.5\n35735|0.5\n35736|0.44444\n35737|0.45833\n35738|0.5\n35739|0.25\n35740|0.5\n35741|0.47222\n35742|0.44444\n35743|0.75\n35744|0.55556\n35745|0.5\n35746|0.5\n35747|0.5\n35748|0.77778\n35749|0.5\n35750|0.5\n35751|0.5\n35752|0.5\n35753|0.68056\n35754|0.5\n35755|0.58333\n35756|0.75\n35757|0.5\n35758|0.5\n35759|0.5\n35760|0.61111\n35761|0.55556\n35762|0.5\n35763|0.5\n35764|0.5\n35765|0.41667\n35766|0.375\n35767|0.33333\n35768|0.5\n35769|0.33333\n35770|0.30556\n35771|0.5\n35772|0.52778\n35773|0.65278\n35774|0.5\n35775|0.45833\n35776|0.5\n35777|0.25\n35778|0.54167\n35779|0.26389\n35780|0.5\n35781|0.61111\n35782|0.69444\n35783|0.5\n35784|0.625\n35785|0.5\n35786|0.45833\n35787|0.48611\n35788|0.63889\n35789|0.5\n35790|0.5\n35791|0.625\n35792|0.65278\n35793|0.5\n35794|0.5\n35795|0.5\n35796|0.5\n35797|0.5\n35798|0.53125\n35799|0.54167\n35800|0.73611\n35801|0.5\n35802|0.5\n35803|0.40278\n35804|0.44444\n35805|0.86111\n35806|0.63889\n35807|0.66667\n35808|0.61111\n35809|0.70833\n35810|0.5\n35811|0.5\n35812|0.52778\n35813|0.5\n35814|0.61111\n35815|0.5\n35816|0.44444\n35817|0.58333\n35818|0.41667\n35819|0.54167\n35820|0.76389\n35821|0.84722\n35822|0.5\n35823|0.33333\n35824|0.5\n35825|0.65278\n35826|0.5\n35827|0.77778\n35828|0.5\n35829|0.41667\n35830|0.5\n35831|0.5\n35832|0.75\n35833|0.66667\n35834|0.83333\n35835|0.625\n35836|0.84722\n35837|0.5\n35838|0.58333\n35839|0.5\n35840|0.27778\n35841|0.34722\n35842|0.5\n35843|0.94444\n35844|0.55556\n35845|0.94444\n35846|0.94792\n35847|0.36111\n35848|0.41667\n35849|0.5\n35850|0.65278\n35851|0.27778\n35852|0.52778\n35853|0.55556\n35854|0.58333\n35855|0.55556\n35856|0.625\n35857|0.5\n35858|0.55556\n35859|0.65278\n35860|0.44444\n35861|0.375\n35862|0.45833\n35863|0.44444\n35864|0.51389\n35865|0.45833\n35866|0.5\n35867|0.63889\n35868|0.65278\n35869|0.69444\n35870|0.5\n35871|0.55556\n35872|0.47222\n35873|0.5\n35874|0.73611\n35875|0.58333\n35876|0.5\n35877|0.5\n35878|0.61111\n35879|0.55556\n35880|0.38889\n35881|0.5\n35882|0.61111\n35883|0.5\n35884|0.5\n35885|0.56944\n35886|0.5\n35887|0.47222\n35888|0.59722\n35889|0.59722\n35890|0.93056\n35891|0.5\n35892|0.77778\n35893|0.5\n35894|0.5\n35895|0.76389\n35896|0.36111\n35897|0.5\n35898|0.88889\n35899|0.5\n35900|0.5\n35901|0.5\n35902|0.5\n35903|0.51389\n35904|0.63889\n35905|0.55556\n35906|0.76389\n35907|0.5\n35908|0.66667\n35909|0.5\n35910|0.59722\n35911|0.52778\n35912|0.5\n35913|0.69444\n35914|0.52778\n35915|0.54167\n35916|0.5\n35917|0.5\n35918|0.38889\n35919|0.56944\n35920|0.77778\n35921|0.66667\n35922|0.76389\n35923|0.45833\n35924|0.51389\n35925|0.5\n35926|0.55556\n35927|0.41667\n35928|0.63889\n35929|0.36111\n35930|0.48611\n35931|0.5\n35932|0.61111\n35933|0.36111\n35934|0.5\n35935|0.55556\n35936|0.5\n35937|0.5\n35938|0.61111\n35939|0.65278\n35940|0.5\n35941|0.44444\n35942|0.5\n35943|0.47222\n35944|0.30556\n35945|0.5\n35946|0.5\n35947|0.5\n35948|0.5\n35949|0.125\n35950|0.5\n35951|0.65278\n35952|0.51389\n35953|0.83333\n35954|0.75\n35955|0.59722\n35956|0.5\n35957|0.77778\n35958|0.83333\n35959|0.38889\n35960|0.16667\n35961|0.66667\n35962|0.56944\n35963|0.77778\n35964|0.88889\n35965|0.69444\n35966|0.81944\n35967|0.69444\n35968|0.76389\n35969|0.875\n35970|0.84722\n35971|0.77778\n35972|0.70833\n35973|0.5\n35974|0.55556\n35975|0.77083\n35976|0.5\n35977|0.5\n35978|0.625\n35979|0.66667\n35980|0.45833\n35981|0.54167\n35982|0.69444\n35983|0.44444\n35984|0.5\n35985|0.59722\n35986|0.5\n35987|0.68056\n35988|0.52778\n35989|0.5\n35990|0.68056\n35991|0.5\n35992|0.55556\n35993|0.75\n35994|0.33333\n35995|0.72222\n35996|0.45833\n35997|0.15278\n35998|0.34722\n35999|0.625\n36000|0.70833\n36001|0.63889\n36002|0.5\n36003|0.5\n36004|0.5\n36005|0.51389\n36006|0.5\n36007|0.81944\n36008|0.5\n36009|0.44444\n36010|0.5\n36011|0.63889\n36012|0.77778\n36013|0.5\n36014|0.61111\n36015|0.72222\n36016|0.55556\n36017|0.66667\n36018|0.5\n36019|0.31944\n36020|0.44444\n36021|0.5\n36022|0.65278\n36023|0.33333\n36024|0.5\n36025|0.8125\n36026|0.65278\n36027|0.80556\n36028|0.55556\n36029|0.5\n36030|0.59722\n36031|0.76389\n36032|0.72222\n36033|0.22222\n36034|0.48611\n36035|0.72222\n36036|0.81944\n36037|0.75\n36038|0.63889\n36039|0.80556\n36040|0.72222\n36041|0.86111\n36042|0.72222\n36043|0.77778\n36044|0.63889\n36045|0.68056\n36046|0.81944\n36047|0.65278\n36048|0.5\n36049|0.56944\n36050|0.47222\n36051|0.83333\n36052|0.5\n36053|0.72222\n36054|0.58333\n36055|0.72222\n36056|0.66667\n36057|0.80556\n36058|0.55556\n36059|0.61111\n36060|0.76389\n36061|0.5\n36062|0.80556\n36063|0.47222\n36064|0.44444\n36065|0.5\n36066|0.5\n36067|0.5\n36068|0.5\n36069|0.66667\n36070|0.73611\n36071|0.5\n36072|0.25\n36073|0.63889\n36074|0.625\n36075|0.63889\n36076|0.91667\n36077|0.77778\n36078|0.5\n36079|0.65278\n36080|0.51389\n36081|0.54167\n36082|0.38889\n36083|0.22222\n36084|0.59722\n36085|0.5\n36086|0.51389\n36087|0.45833\n36088|0.5\n36089|0.5\n36090|0.55556\n36091|0.58333\n36092|0.83333\n36093|0.84722\n36094|0.5\n36095|0.55556\n36096|0.5\n36097|0.5\n36098|0.54167\n36099|0.55556\n36100|0.5\n36101|0.66667\n36102|0.875\n36103|0.55556\n36104|0.61111\n36105|0.625\n36106|0.5\n36107|0.22222\n36108|0.29167\n36109|0.69444\n36110|0.5\n36111|0.75\n36112|0.68056\n36113|0.91667\n36114|0.76389\n36115|0.5\n36116|0.61111\n36117|0.5\n36118|0.375\n36119|0.33333\n36120|0.5\n36121|0.41667\n36122|0.66667\n36123|0.51389\n36124|0.5\n36125|0.70833\n36126|0.45833\n36127|0.70833\n36128|0.77778\n36129|0.94444\n36130|0.77778\n36131|0.5\n36132|0.66667\n36133|0.5\n36134|0.55556\n36135|0.29167\n36136|0.26389\n36137|0.33333\n36138|0.65278\n36139|0.75\n36140|0.55556\n36141|0.25\n36142|0.58333\n36143|0.79167\n36144|0.45833\n36145|0.30556\n36146|0.63889\n36147|0.5\n36148|0.5\n36149|0.5\n36150|0.76389\n36151|0.58333\n36152|0.52778\n36153|0.75\n36154|0.63889\n36155|0.5\n36156|0.30556\n36157|0.5\n36158|0.26389\n36159|0.58333\n36160|0.55556\n36161|0.5\n36162|0.86111\n36163|0.93056\n36164|0.68056\n36165|0.5\n36166|0.5\n36167|0.625\n36168|0.56944\n36169|0.5\n36170|0.5\n36171|0.45833\n36172|0.68056\n36173|0.63889\n36174|0.5\n36175|0.38889\n36176|0.5\n36177|0.61111\n36178|0.5\n36179|0.70833\n36180|0.5\n36181|0.5\n36182|0.5\n36183|0.59722\n36184|0.56944\n36185|0.5\n36186|0.51389\n36187|0.72222\n36188|0.76389\n36189|0.77778\n36190|0.77778\n36191|0.625\n36192|0.66667\n36193|0.69444\n36194|0.66667\n36195|0.625\n36196|0.55556\n36197|0.70833\n36198|0.69444\n36199|0.52778\n36200|0.5\n36201|0.38889\n36202|0.5\n36203|0.5\n36204|0.75\n36205|0.88889\n36206|0.54167\n36207|0.70833\n36208|0.77778\n36209|0.90278\n36210|0.88889\n36211|0.70833\n36212|0.73611\n36213|0.54167\n36214|0.75\n36215|0.625\n36216|0.59722\n36217|0.69444\n36218|0.95833\n36219|0.65625\n36220|0.88889\n36221|0.55556\n36222|0.5\n36223|0.38889\n36224|0.44444\n36225|0.5\n36226|0.54167\n36227|0.65278\n36228|0.86111\n36229|0.5\n36230|0.80556\n36231|0.68056\n36232|0.81944\n36233|0.72222\n36234|0.72222\n36235|0.72222\n36236|0.68056\n36237|0.73611\n36238|0.5\n36239|0.5\n36240|0.66667\n36241|0.72222\n36242|0.70833\n36243|0.44444\n36244|0.76389\n36245|0.5\n36246|0.72222\n36247|0.68056\n36248|0.72222\n36249|0.875\n36250|0.79167\n36251|0.44444\n36252|0.33333\n36253|0.58333\n36254|0.5\n36255|0.30556\n36256|0.65278\n36257|0.5\n36258|0.5\n36259|0.51389\n36260|0.5\n36261|0.5\n36262|0.5\n36263|0.5\n36264|0.56944\n36265|0.77778\n36266|0.58333\n36267|0.44444\n36268|0.52778\n36269|0.77778\n36270|0.52778\n36271|0.54167\n36272|0.5\n36273|0.73611\n36274|0.56944\n36275|0.56944\n36276|0.63889\n36277|0.73611\n36278|0.38889\n36279|0.44444\n36280|0.45833\n36281|0.88889\n36282|0.5\n36283|0.51389\n36284|0.5\n36285|0.68056\n36286|0.73611\n36287|0.61111\n36288|0.58333\n36289|0.66667\n36290|0.55556\n36291|0.69444\n36292|0.65278\n36293|0.5\n36294|0.73611\n36295|0.68056\n36296|0.88889\n36297|0.77778\n36298|0.65278\n36299|0.77778\n36300|0.72222\n36301|0.54167\n36302|0.61111\n36303|0.79167\n36304|0.66667\n36305|0.73611\n36306|0.77778\n36307|0.88889\n36308|0.80556\n36309|0.27778\n36310|0.61111\n36311|0.73611\n36312|0.61111\n36313|0.5\n36314|0.41667\n36315|0.34722\n36316|0.33333\n36317|0.19444\n36318|0.41667\n36319|0.5\n36320|0.56944\n36321|0.36111\n36322|0.47222\n36323|0.43056\n36324|0.43056\n36325|0.55556\n36326|0.5\n36327|0.47222\n36328|0.5\n36329|0.38889\n36330|0.5\n36331|0.5\n36332|0.88889\n36333|0.875\n36334|0.75\n36335|0.76389\n36336|0.69444\n36337|0.79167\n36338|0.33333\n36339|0.69444\n36340|0.72222\n36341|0.45833\n36342|0.77778\n36343|0.72222\n36344|0.5\n36345|0.48611\n36346|0.77778\n36347|0.73611\n36348|0.51389\n36349|0.25\n36350|0.33333\n36351|0.5\n36352|0.5\n36353|0.44444\n36354|0.61111\n36355|0.58333\n36356|0.59722\n36357|0.58333\n36358|0.76389\n36359|0.43056\n36360|0.72222\n36361|0.64583\n36362|0.70833\n36363|0.5\n36364|0.83333\n36365|0.5\n36366|0.55556\n36367|0.75\n36368|0.70833\n36369|0.75\n36370|0.66667\n36371|0.63889\n36372|0.5\n36373|0.5\n36374|0.68056\n36375|0.5\n36376|0.80556\n36377|0.51389\n36378|0.86111\n36379|0.66667\n36380|0.77778\n36381|0.19444\n36382|0.11111\n36383|0.055556\n36384|0.73611\n36385|0.5\n36386|0.55556\n36387|0.59722\n36388|0.5\n36389|0.31944\n36390|0.52778\n36391|0.70833\n36392|0.84722\n36393|0.66667\n36394|0.5\n36395|0.66667\n36396|0.69444\n36397|0.5\n36398|0.44444\n36399|0.51389\n36400|0.65278\n36401|0.58333\n36402|0.5\n36403|0.65278\n36404|0.55556\n36405|0.48611\n36406|0.5\n36407|0.5\n36408|0.51389\n36409|0.63889\n36410|0.5\n36411|0.58333\n36412|0.91667\n36413|0.41667\n36414|0.59722\n36415|0.48611\n36416|0.45833\n36417|0.38889\n36418|0.375\n36419|0.5\n36420|0.55556\n36421|0.43056\n36422|0.88889\n36423|0.80556\n36424|0.55556\n36425|0.66667\n36426|0.81944\n36427|0.81944\n36428|0.77778\n36429|0.68056\n36430|0.88889\n36431|0.79167\n36432|0.79167\n36433|0.77778\n36434|0.83333\n36435|0.76389\n36436|0.81944\n36437|0.72222\n36438|0.69444\n36439|0.44444\n36440|0.5\n36441|0.54167\n36442|0.5\n36443|0.5\n36444|0.79167\n36445|0.38889\n36446|0.33333\n36447|0.59722\n36448|0.68056\n36449|0.77778\n36450|0.33333\n36451|0.5\n36452|0.5\n36453|0.5\n36454|0.68056\n36455|0.5\n36456|0.5\n36457|0.73611\n36458|0.76389\n36459|0.83333\n36460|0.59722\n36461|0.83333\n36462|0.77778\n36463|0.63889\n36464|0.44444\n36465|0.86111\n36466|0.33333\n36467|0.5\n36468|0.31944\n36469|0.55556\n36470|0.625\n36471|0.36111\n36472|0.5\n36473|0.38889\n36474|0.52778\n36475|0.5\n36476|0.33333\n36477|0.51389\n36478|0.79167\n36479|0.93056\n36480|0.80556\n36481|0.73611\n36482|0.83333\n36483|0.75\n36484|0.81944\n36485|0.73611\n36486|0.59722\n36487|0.625\n36488|0.76389\n36489|0.875\n36490|0.45833\n36491|0.5\n36492|0.30556\n36493|0.76389\n36494|0.5\n36495|0.55556\n36496|0.5\n36497|0.66667\n36498|0.72222\n36499|0.38889\n36500|0.36111\n36501|0.56944\n36502|0.44444\n36503|0.38889\n36504|0.31944\n36505|0.18056\n36506|0.80556\n36507|0.5\n36508|0.38889\n36509|0.5\n36510|0.84722\n36511|0.29167\n36512|0.47222\n36513|0.55556\n36514|0.45833\n36515|0.40278\n36516|0.5\n36517|0.80556\n36518|0.68056\n36519|0.61111\n36520|0.56944\n36521|0.66667\n36522|0.63889\n36523|0.66667\n36524|0.66667\n36525|0.81944\n36526|0.81944\n36527|0.5\n36528|0.38889\n36529|0.72222\n36530|0.69444\n36531|0.72222\n36532|0.875\n36533|0.65278\n36534|0.66667\n36535|0.58333\n36536|0.51389\n36537|0.45833\n36538|0.69444\n36539|0.5\n36540|0.5\n36541|0.69444\n36542|0.45833\n36543|0.41667\n36544|0.21875\n36545|0.5\n36546|0.56944\n36547|0.83333\n36548|0.83333\n36549|0.77778\n36550|0.76389\n36551|0.61111\n36552|0.55556\n36553|0.56944\n36554|0.44444\n36555|0.41667\n36556|0.44444\n36557|0.45833\n36558|0.5\n36559|0.53125\n36560|0.44444\n36561|0.77778\n36562|0.61111\n36563|0.77778\n36564|0.58333\n36565|0.56944\n36566|0.66667\n36567|0.875\n36568|0.76389\n36569|0.77778\n36570|0.56944\n36571|0.5\n36572|0.26389\n36573|0.29167\n36574|0.44444\n36575|0.5\n36576|0.69444\n36577|0.63889\n36578|0.61111\n36579|0.5\n36580|0.5\n36581|0.48611\n36582|0.31944\n36583|0.22222\n36584|0.47222\n36585|0.36111\n36586|0.5\n36587|0.55556\n36588|0.33333\n36589|0.41667\n36590|0.38889\n36591|0.83333\n36592|0.84722\n36593|0.61111\n36594|0.63889\n36595|0.94444\n36596|0.65278\n36597|0.83333\n36598|0.5\n36599|0.56944\n36600|0.5\n36601|0.61111\n36602|0.61111\n36603|0.77778\n36604|0.70833\n36605|0.5\n36606|0.44444\n36607|0.75\n36608|0.79167\n36609|0.5\n36610|0.73611\n36611|0.55556\n36612|0.54167\n36613|0.63889\n36614|0.72222\n36615|0.58333\n36616|0.72222\n36617|0.86111\n36618|0.48611\n36619|0.5\n36620|0.73611\n36621|0.56944\n36622|0.34722\n36623|0.34722\n36624|0.5\n36625|0.625\n36626|0.55556\n36627|0.73611\n36628|0.55556\n36629|0.6875\n36630|0.59722\n36631|0.29167\n36632|0.51389\n36633|0.44444\n36634|0.29167\n36635|0.34722\n36636|0.75\n36637|0.69444\n36638|0.5\n36639|0.22222\n36640|0.58333\n36641|0.5\n36642|0.22222\n36643|0.5\n36644|0.51389\n36645|0.5\n36646|0.47222\n36647|0.5\n36648|0.45833\n36649|0.5\n36650|0.5\n36651|0.5\n36652|0.13889\n36653|0.44444\n36654|0.40278\n36655|0.25\n36656|0.27778\n36657|0.43056\n36658|0.41667\n36659|0.44444\n36660|0.625\n36661|0.86111\n36662|0.77778\n36663|0.59722\n36664|0.5\n36665|0.22222\n36666|0.79167\n36667|0.63889\n36668|0.5\n36669|0.55556\n36670|0.66667\n36671|0.76389\n36672|0.59375\n36673|0.72222\n36674|0.69444\n36675|0.5\n36676|0.61111\n36677|0.63889\n36678|0.5\n36679|0.5\n36680|0.33333\n36681|0.61111\n36682|0.22222\n36683|0.36111\n36684|0.47222\n36685|0.44444\n36686|0.88889\n36687|0.44444\n36688|0.84722\n36689|0.88889\n36690|0.44444\n36691|0.38889\n36692|0.40278\n36693|0.5\n36694|0.54167\n36695|0.86111\n36696|0.5625\n36697|0.5\n36698|0.76389\n36699|0.5\n36700|0.61111\n36701|0.5\n36702|0.72222\n36703|0.5\n36704|0.375\n36705|0.55556\n36706|0.66667\n36707|0.5\n36708|0.5\n36709|0.55556\n36710|0.90278\n36711|0.63889\n36712|0.44444\n36713|0.38889\n36714|0.36111\n36715|0.58333\n36716|0.54167\n36717|0.53125\n36718|0.49306\n36719|0.5\n36720|0.30556\n36721|0.56944\n36722|0.38889\n36723|0.40278\n36724|0.65278\n36725|0.66667\n36726|0.80556\n36727|0.54167\n36728|0.63889\n36729|0.5\n36730|0.61111\n36731|0.5\n36732|0.5\n36733|0.61111\n36734|0.66667\n36735|0.77778\n36736|0.65278\n36737|0.61111\n36738|0.68056\n36739|0.68056\n36740|0.69444\n36741|0.72917\n36742|0.52778\n36743|0.54167\n36744|0.875\n36745|0.52778\n36746|0.56944\n36747|0.81944\n36748|0.625\n36749|0.30556\n36750|0.61111\n36751|0.79167\n36752|0.79167\n36753|0.22222\n36754|0.55556\n36755|0.5\n36756|0.18056\n36757|0.27778\n36758|0.43056\n36759|0.44444\n36760|0.54167\n36761|0.61111\n36762|0.73611\n36763|0.73611\n36764|0.5\n36765|0.61111\n36766|0.38889\n36767|0.55556\n36768|0.61111\n36769|0.47222\n36770|0.5\n36771|0.54167\n36772|0.625\n36773|0.38889\n36774|0.36111\n36775|0.5\n36776|0.61111\n36777|0.66667\n36778|0.43056\n36779|0.64583\n36780|0.44444\n36781|0.43056\n36782|0.55556\n36783|0.29167\n36784|0.44444\n36785|0.5\n36786|0.52778\n36787|0.38542\n36788|0.43056\n36789|0.54167\n36790|0.5\n36791|0.5\n36792|0.51389\n36793|0.625\n36794|0.44444\n36795|0.30556\n36796|0.55556\n36797|0.58333\n36798|0.47222\n36799|0.61111\n36800|0.56944\n36801|0.5\n36802|0.5\n36803|0.59722\n36804|0.5\n36805|0.55556\n36806|0.66667\n36807|0.44444\n36808|0.52778\n36809|0.90278\n36810|0.88889\n36811|0.75\n36812|0.55556\n36813|0.55556\n36814|0.61111\n36815|0.5\n36816|0.84722\n36817|0.5\n36818|0.5\n36819|0.5\n36820|0.44444\n36821|0.58333\n36822|0.68056\n36823|0.5\n36824|0.38889\n36825|0.5\n36826|0.61111\n36827|0.63889\n36828|0.625\n36829|0.5\n36830|0.84722\n36831|0.73611\n36832|0.81944\n36833|0.40278\n36834|0.22222\n36835|0.5\n36836|0.54167\n36837|0.63889\n36838|0.5\n36839|0.76389\n36840|0.73611\n36841|0.51389\n36842|0.5\n36843|0.5\n36844|0.5\n36845|0.43056\n36846|0.63889\n36847|0.5\n36848|0.5\n36849|0.5\n36850|0.77778\n36851|0.48611\n36852|0.55556\n36853|0.5\n36854|0.65278\n36855|0.51389\n36856|0.5\n36857|0.52778\n36858|0.55556\n36859|0.48611\n36860|0.5\n36861|0.5\n36862|0.5\n36863|0.5\n36864|0.625\n36865|0.58333\n36866|0.73611\n36867|0.65278\n36868|0.29167\n36869|0.25\n36870|0.30556\n36871|0.59722\n36872|0.43056\n36873|0.61111\n36874|0.31944\n36875|0.45833\n36876|0.5\n36877|0.5\n36878|0.5\n36879|0.56944\n36880|0.63889\n36881|0.56944\n36882|0.56944\n36883|0.5\n36884|0.70833\n36885|0.55556\n36886|0.20833\n36887|0.66667\n36888|0.83333\n36889|0.81944\n36890|0.70833\n36891|0.66667\n36892|0.5\n36893|0.90278\n36894|0.54167\n36895|0.625\n36896|0.5\n36897|0.81944\n36898|0.69444\n36899|0.47222\n36900|0.61111\n36901|0.5\n36902|0.55556\n36903|0.38889\n36904|0.66667\n36905|0.53125\n36906|0.19444\n36907|0.86111\n36908|0.54167\n36909|0.58333\n36910|0.88889\n36911|0.56944\n36912|0.61111\n36913|0.40278\n36914|0.625\n36915|0.71875\n36916|0.48611\n36917|0.66667\n36918|0.80556\n36919|0.81944\n36920|0.81944\n36921|0.5\n36922|0.61111\n36923|0.31944\n36924|0.52083\n36925|0.5\n36926|0.5\n36927|0.77778\n36928|0.55556\n36929|0.55556\n36930|0.95833\n36931|0.83333\n36932|0.77778\n36933|0.5\n36934|0.66667\n36935|0.5\n36936|0.66667\n36937|0.65278\n36938|0.5\n36939|0.51389\n36940|0.38889\n36941|0.66667\n36942|0.75\n36943|0.5\n36944|0.86111\n36945|0.72222\n36946|0.625\n36947|0.66667\n36948|0.36111\n36949|0.5\n36950|0.70833\n36951|0.33333\n36952|0.5\n36953|0.375\n36954|0.26389\n36955|0.5\n36956|0.375\n36957|0.47222\n36958|0.31944\n36959|0.55556\n36960|0.80208\n36961|0.375\n36962|0.66667\n36963|0.77778\n36964|0.84722\n36965|0.75\n36966|0.79167\n36967|0.44444\n36968|0.52778\n36969|0.5\n36970|0.375\n36971|0.5\n36972|0.52778\n36973|0.52083\n36974|0.40278\n36975|0.625\n36976|0.56944\n36977|0.93056\n36978|1\n36979|0.22222\n36980|0.66667\n36981|0.78125\n36982|0.40278\n36983|0.5\n36984|0.5\n36985|0.5\n36986|0.54167\n36987|0.54167\n36988|0.68056\n36989|0.56944\n36990|0.72222\n36991|0.68056\n36992|0.44444\n36993|0.44444\n36994|0.5\n36995|0.51389\n36996|0.38889\n36997|0.16667\n36998|0.45833\n36999|0.47917\n37000|0.41667\n37001|0.44444\n37002|0.31944\n37003|0.375\n37004|0.5\n37005|0.54167\n37006|0.51389\n37007|0.75\n37008|0.70833\n37009|0.54167\n37010|0.29167\n37011|0.625\n37012|0.40278\n37013|0.58333\n37014|0.81944\n37015|0.73611\n37016|0.5\n37017|0.23611\n37018|0.375\n37019|0.5\n37020|0.70833\n37021|0.58333\n37022|0.75\n37023|0.26389\n37024|0.43056\n37025|0.5\n37026|0.5\n37027|0.15278\n37028|0.22222\n37029|0.5\n37030|0.30556\n37031|0.5\n37032|0.61111\n37033|0.80556\n37034|0.47222\n37035|0.71875\n37036|0.625\n37037|0.38889\n37038|0.69444\n37039|0.59722\n37040|0.70833\n37041|0.72222\n37042|0.77778\n37043|0.80556\n37044|0.76389\n37045|0.80556\n37046|0.69444\n37047|0.72222\n37048|0.75\n37049|0.65278\n37050|0.73611\n37051|0.36111\n37052|0.38889\n37053|0.5\n37054|0.48611\n37055|0.625\n37056|0.59722\n37057|0.63889\n37058|0.36111\n37059|0.44444\n37060|0.30556\n37061|0.5\n37062|0.54167\n37063|0.41667\n37064|0.625\n37065|0.77778\n37066|0.59722\n37067|0.79167\n37068|0.38889\n37069|0.40278\n37070|0.61111\n37071|0.38889\n37072|0.75\n37073|0.65278\n37074|0.61111\n37075|0.80556\n37076|0.77778\n37077|0.20833\n37078|0.45833\n37079|0.55556\n37080|0.66667\n37081|0.58333\n37082|0.83333\n37083|0.66667\n37084|0.66667\n37085|0.66667\n37086|0.43056\n37087|0.68056\n37088|0.84722\n37089|0.44444\n37090|0.33333\n37091|0.5\n37092|0.73611\n37093|0.5\n37094|0.68056\n37095|0.52778\n37096|0.45833\n37097|0.5\n37098|0.5\n37099|0.5\n37100|0.61111\n37101|0.5\n37102|0.73611\n37103|0.5\n37104|0.70833\n37105|0.55556\n37106|0.55556\n37107|0.56944\n37108|0.56944\n37109|0.5\n37110|0.68056\n37111|0.69444\n37112|0.66667\n37113|0.91667\n37114|0.625\n37115|0.63889\n37116|0.61111\n37117|0.66667\n37118|0.77778\n37119|0.61111\n37120|0.5\n37121|0.81944\n37122|0.84722\n37123|0.77778\n37124|0.72222\n37125|0.77778\n37126|0.5\n37127|0.59722\n37128|0.65278\n37129|0.86111\n37130|0.81944\n37131|0.91667\n37132|0.61111\n37133|0.44444\n37134|0.30556\n37135|0.40278\n37136|0.93056\n37137|0.5\n37138|0.76389\n37139|0.68056\n37140|0.77778\n37141|0.68056\n37142|0.68056\n37143|0.48611\n37144|0.75\n37145|0.80556\n37146|0.40278\n37147|0.41667\n37148|0.70833\n37149|0.65278\n37150|0.625\n37151|0.65278\n37152|0.75\n37153|0.66667\n37154|0.54167\n37155|0.45833\n37156|0.79167\n37157|0.66667\n37158|0.77778\n37159|0.5\n37160|0.68056\n37161|0.55556\n37162|0.79167\n37163|0.70833\n37164|0.81944\n37165|0.30556\n37166|0.31944\n37167|0.83333\n37168|0.27778\n37169|0.69444\n37170|0.625\n37171|0.875\n37172|0.58333\n37173|0.5\n37174|0.61111\n37175|0.73611\n37176|0.5\n37177|0.44444\n37178|0.5\n37179|0.5\n37180|0.5\n37181|0.61111\n37182|0.5\n37183|0.5\n37184|0.5\n37185|0.44444\n37186|0.40278\n37187|0.5\n37188|0.5\n37189|0.48611\n37190|0.5\n37191|0.65278\n37192|0.40278\n37193|0.63889\n37194|0.52778\n37195|0.86111\n37196|0.86111\n37197|0.83333\n37198|0.83333\n37199|0.55556\n37200|0.52778\n37201|0.47222\n37202|0.5\n37203|0.5\n37204|0.68056\n37205|0.83333\n37206|0.61111\n37207|0.56944\n37208|0.5\n37209|0.5\n37210|0.5\n37211|0.69444\n37212|0.875\n37213|0.875\n37214|0.5\n37215|0.5\n37216|0.59722\n37217|0.61111\n37218|0.77778\n37219|0.86111\n37220|0.80556\n37221|0.76389\n37222|0.48611\n37223|0.5\n37224|0.61111\n37225|0.69444\n37226|0.69444\n37227|0.80556\n37228|0.81944\n37229|0.77778\n37230|0.81944\n37231|0.5\n37232|0.70833\n37233|0.45833\n37234|0.55556\n37235|0.45833\n37236|0.47222\n37237|0.59722\n37238|0.30556\n37239|0.44444\n37240|0.80556\n37241|0.5\n37242|0.5\n37243|0.55556\n37244|0.5\n37245|0.58333\n37246|0.625\n37247|0.52778\n37248|0.45833\n37249|0.55556\n37250|0.68056\n37251|0.70833\n37252|0.66667\n37253|0.47222\n37254|0.58333\n37255|0.65278\n37256|0.47222\n37257|0.72222\n37258|0.63889\n37259|0.68056\n37260|0.5\n37261|0.70833\n37262|0.61111\n37263|0.51389\n37264|0.56944\n37265|0.70833\n37266|0.72222\n37267|0.5\n37268|0.33333\n37269|0.5\n37270|0.5\n37271|0.59722\n37272|0.54167\n37273|0.56944\n37274|0.33333\n37275|0.54167\n37276|0.55556\n37277|0.65278\n37278|0.52778\n37279|0.94444\n37280|0.38889\n37281|0.56944\n37282|0.55556\n37283|0.77778\n37284|0.69444\n37285|0.61111\n37286|0.5\n37287|0.73611\n37288|0.5\n37289|0.5\n37290|0.86111\n37291|0.5\n37292|0.52778\n37293|0.625\n37294|0.5\n37295|0.77778\n37296|0.69444\n37297|0.40278\n37298|0.79167\n37299|0.66667\n37300|0.36111\n37301|0.5\n37302|0.80556\n37303|0.33333\n37304|0.5\n37305|0.66667\n37306|0.72222\n37307|0.68056\n37308|0.5\n37309|0.72222\n37310|0.70833\n37311|0.54167\n37312|0.58333\n37313|0.48611\n37314|0.66667\n37315|0.625\n37316|0.625\n37317|0.5\n37318|0.59722\n37319|0.93056\n37320|0.5\n37321|0.5\n37322|0.55556\n37323|0.5\n37324|0.51389\n37325|0.5\n37326|0.51389\n37327|0.5\n37328|0.65278\n37329|0.5\n37330|0.65278\n37331|0.66667\n37332|0.77778\n37333|0.70833\n37334|0.77778\n37335|0.81944\n37336|0.66667\n37337|0.75\n37338|0.73611\n37339|0.59722\n37340|0.73958\n37341|0.72222\n37342|0.65278\n37343|0.73611\n37344|0.69444\n37345|0.5\n37346|0.51389\n37347|0.75\n37348|0.625\n37349|0.83333\n37350|0.5\n37351|0.55556\n37352|0.79167\n37353|0.73611\n37354|0.5\n37355|0.79167\n37356|0.79167\n37357|0.51389\n37358|0.76389\n37359|0.43056\n37360|0.63889\n37361|0.44444\n37362|0.5\n37363|0.44444\n37364|0.43056\n37365|0.5\n37366|0.5\n37367|0.26389\n37368|0.45833\n37369|0.51389\n37370|0.5\n37371|0.55556\n37372|0.5\n37373|0.23611\n37374|0.52778\n37375|0.52778\n37376|0.5\n37377|0.44444\n37378|0.45833\n37379|0.625\n37380|0.5\n37381|0.45833\n37382|0.48611\n37383|0.56944\n37384|0.875\n37385|0.84722\n37386|0.79167\n37387|0.84722\n37388|0.625\n37389|0.66667\n37390|0.66667\n37391|0.65278\n37392|0.72222\n37393|0.66667\n37394|0.65278\n37395|0.83333\n37396|0.55556\n37397|0.44444\n37398|0.43056\n37399|0.45833\n37400|0.56944\n37401|0.38889\n37402|0.91667\n37403|0.90278\n37404|0.66667\n37405|0.69444\n37406|0.94444\n37407|0.91667\n37408|0.875\n37409|0.94444\n37410|0.125\n37411|0.51389\n37412|0.63889\n37413|0.72222\n37414|0.81944\n37415|0.84375\n37416|0.72222\n37417|0.5\n37418|0.75\n37419|0.59722\n37420|0.36111\n37421|0.5\n37422|0.52778\n37423|0.5\n37424|0.72222\n37425|0.76389\n37426|0.66667\n37427|0.66667\n37428|0.54167\n37429|0.68056\n37430|0.51389\n37431|0.66667\n37432|0.55556\n37433|0.88889\n37434|0.88889\n37435|0.59722\n37436|0.36111\n37437|0.40278\n37438|0.77778\n37439|0.88889\n37440|0.79167\n37441|0.84722\n37442|0.20833\n37443|0.69444\n37444|0.76389\n37445|0.77778\n37446|0.58333\n37447|0.5\n37448|0.84722\n37449|0.79167\n37450|0.625\n37451|0.65278\n37452|0.69444\n37453|0.65278\n37454|0.29167\n37455|0.125\n37456|0.33333\n37457|0.34722\n37458|0.70833\n37459|0.36111\n37460|0.63889\n37461|0.47222\n37462|0.54167\n37463|0.5\n37464|0.65278\n37465|0.52778\n37466|0.73611\n37467|0.77778\n37468|0.51389\n37469|0.55556\n37470|0.80556\n37471|0.70833\n37472|0.65278\n37473|0.73611\n37474|0.90278\n37475|0.75\n37476|0.75\n37477|0.43056\n37478|0.51389\n37479|0.63889\n37480|0.5\n37481|0.27778\n37482|0.95833\n37483|0.75\n37484|0.72222\n37485|0.5\n37486|0.5\n37487|0.36111\n37488|0.5\n37489|0.68056\n37490|0.5\n37491|0.5\n37492|0.5\n37493|0.40278\n37494|0.48611\n37495|0.33333\n37496|0.41667\n37497|0.5\n37498|0.5\n37499|0.22222\n37500|0.5\n37501|0.625\n37502|0.72222\n37503|0.61111\n37504|0.76389\n37505|0.80556\n37506|0.625\n37507|0.75\n37508|0.5\n37509|0.66667\n37510|0.76389\n37511|0.79167\n37512|0.76389\n37513|0.80556\n37514|0.70833\n37515|0.76389\n37516|0.80556\n37517|0.63889\n37518|0.61111\n37519|0.66667\n37520|0.5\n37521|0.66667\n37522|0.77778\n37523|0.66667\n37524|0.5\n37525|0.5\n37526|0.625\n37527|0.65278\n37528|0.47222\n37529|0.48611\n37530|0.55556\n37531|0.625\n37532|0.38889\n37533|0.65278\n37534|0.65278\n37535|0.79167\n37536|0.5\n37537|0.31944\n37538|0.61111\n37539|0.61111\n37540|0.79167\n37541|0.66667\n37542|0.43056\n37543|0.76389\n37544|0.73611\n37545|0.80556\n37546|0.52778\n37547|0.86111\n37548|0.79167\n37549|0.70833\n37550|0.55556\n37551|0.72222\n37552|0.66667\n37553|0.77778\n37554|0.45833\n37555|0.72222\n37556|0.73611\n37557|0.66667\n37558|0.5\n37559|0.5\n37560|0.52778\n37561|0.45833\n37562|0.61111\n37563|0.55556\n37564|0.51389\n37565|0.54167\n37566|0.63889\n37567|0.88889\n37568|0.69444\n37569|0.41667\n37570|0.55556\n37571|0.75\n37572|0.73611\n37573|0.79167\n37574|0.5\n37575|0.76389\n37576|0.625\n37577|0.63889\n37578|0.43056\n37579|0.54167\n37580|0.75\n37581|0.88889\n37582|0.5\n37583|0.625\n37584|0.72222\n37585|0.44444\n37586|0.44444\n37587|0.31944\n37588|0.59722\n37589|0.86111\n37590|0.61111\n37591|0.81944\n37592|0.61111\n37593|0.76389\n37594|0.80556\n37595|0.68056\n37596|0.5\n37597|0.76389\n37598|0.5\n37599|0.84722\n37600|0.66667\n37601|0.81944\n37602|0.63542\n37603|0.5\n37604|0.68056\n37605|0.45833\n37606|0.5\n37607|0.52778\n37608|0.51389\n37609|0.38889\n37610|0.5\n37611|0.51389\n37612|0.5\n37613|0.5\n37614|0.75\n37615|0.77778\n37616|0.65278\n37617|0.5\n37618|0.79167\n37619|0.48611\n37620|0.77778\n37621|0.5\n37622|0.79167\n37623|0.56944\n37624|0.75\n37625|0.5\n37626|0.5\n37627|0.61111\n37628|0.52778\n37629|0.58333\n37630|0.5\n37631|0.5\n37632|0.55556\n37633|0.83333\n37634|0.61111\n37635|0.38889\n37636|0.44444\n37637|0.59722\n37638|0.51389\n37639|0.27778\n37640|0.59722\n37641|0.55556\n37642|0.5\n37643|0.375\n37644|0.5\n37645|0.55556\n37646|0.36111\n37647|0.72222\n37648|0.40278\n37649|0.86111\n37650|0.5\n37651|0.41667\n37652|0.5\n37653|0.65278\n37654|0.72222\n37655|0.54167\n37656|0.47917\n37657|0.51389\n37658|0.52778\n37659|0.61111\n37660|0.58333\n37661|0.5\n37662|0.72222\n37663|0.98611\n37664|0.5\n37665|0.52778\n37666|0.65278\n37667|0.5\n37668|0.65278\n37669|0.27778\n37670|0.41667\n37671|0.73611\n37672|0.86111\n37673|0.93056\n37674|0.91667\n37675|0.72222\n37676|0.95833\n37677|0.84722\n37678|0.51389\n37679|0.5\n37680|0.27778\n37681|0.48611\n37682|0.5\n37683|0.5\n37684|0.5\n37685|0.5\n37686|0.76389\n37687|0.51389\n37688|0.5\n37689|0.43056\n37690|0.59722\n37691|0.26389\n37692|0.41667\n37693|0.5\n37694|0.55556\n37695|0.5\n37696|0.56944\n37697|0.625\n37698|0.5\n37699|0.45833\n37700|0.5\n37701|0.34722\n37702|0.65278\n37703|0.47222\n37704|0.5\n37705|0.66667\n37706|0.63889\n37707|0.5\n37708|0.54167\n37709|0.54167\n37710|0.5\n37711|0.52778\n37712|0.90278\n37713|0.5\n37714|0.5\n37715|0.34722\n37716|0.40278\n37717|0.5\n37718|0.5\n37719|0.58333\n37720|0.76389\n37721|0.52778\n37722|0.66667\n37723|0.61111\n37724|0.81944\n37725|0.55556\n37726|0.5\n37727|0.875\n37728|0.69444\n37729|0.66667\n37730|0.54167\n37731|0.40278\n37732|0.63889\n37733|0.54167\n37734|0.56944\n37735|0.77778\n37736|0.38889\n37737|0.72222\n37738|0.75\n37739|0.63889\n37740|0.56944\n37741|0.80556\n37742|0.55556\n37743|0.5\n37744|0.72222\n37745|0.65278\n37746|0.83333\n37747|0.66667\n37748|0.54167\n37749|0.55556\n37750|0.56944\n37751|0.56944\n37752|0.52778\n37753|0.47222\n37754|0.81944\n37755|0.47222\n37756|0.94444\n37757|0.625\n37758|0.90278\n37759|0.73611\n37760|0.58333\n37761|0.76389\n37762|0.5\n37763|0.63889\n37764|0.70833\n37765|0.80556\n37766|0.79167\n37767|0.55556\n37768|0.25\n37769|0.5\n37770|0.70833\n37771|0.56944\n37772|0.38889\n37773|0.5\n37774|0.38889\n37775|0.51389\n37776|0.56944\n37777|0.25\n37778|0.66667\n37779|0.84722\n37780|0.55556\n37781|0.55556\n37782|0.625\n37783|0.52778\n37784|0.72222\n37785|0.69444\n37786|0.58333\n37787|0.38889\n37788|0.44444\n37789|0.77778\n37790|0.80556\n37791|0.59722\n37792|0.72222\n37793|0.79167\n37794|0.77778\n37795|0.29167\n37796|0.66667\n37797|0.38889\n37798|0.84722\n37799|0.76389\n37800|0.83333\n37801|0.69444\n37802|0.55556\n37803|0.66667\n37804|0.88889\n37805|0.5\n37806|0.65278\n37807|0.5\n37808|0.75\n37809|0.77778\n37810|0.65278\n37811|0.83333\n37812|0.5\n37813|0.5\n37814|0.48611\n37815|0.76389\n37816|0.66667\n37817|0.68056\n37818|0.69444\n37819|0.59722\n37820|0.38889\n37821|0.75\n37822|0.80556\n37823|0.83333\n37824|0.47222\n37825|0.61111\n37826|0.72222\n37827|0.66667\n37828|0.68056\n37829|0.68056\n37830|0.67708\n37831|0.5\n37832|0.91667\n37833|0.73611\n37834|0.79167\n37835|0.25\n37836|0.54167\n37837|0.81944\n37838|0.83333\n37839|0.58333\n37840|0.51389\n37841|0.79167\n37842|0.79167\n37843|0.45833\n37844|0.59722\n37845|0.72222\n37846|0.72222\n37847|0.79167\n37848|0.5\n37849|0.63889\n37850|0.68056\n37851|0.69444\n37852|0.70833\n37853|0.86111\n37854|0.625\n37855|0.5\n37856|0.5\n37857|0.5\n37858|0.66667\n37859|0.45833\n37860|0.5\n37861|0.5\n37862|0.5\n37863|0.61111\n37864|0.61111\n37865|0.65278\n37866|0.51389\n37867|0.80556\n37868|0.34722\n37869|0.5\n37870|0.5\n37871|0.48611\n37872|0.70833\n37873|0.72222\n37874|0.5\n37875|0.77778\n37876|0.5\n37877|0.86111\n37878|0.51389\n37879|0.77778\n37880|0.58333\n37881|0.61111\n37882|0.76389\n37883|0.76389\n37884|0.68056\n37885|0.5\n37886|0.52778\n37887|0.56944\n37888|0.51389\n37889|0.51389\n37890|0.79167\n37891|0.5\n37892|0.75\n37893|0.79167\n37894|0.48611\n37895|0.65278\n37896|0.77778\n37897|0.58333\n37898|0.70833\n37899|0.26389\n37900|0.55556\n37901|0.48611\n37902|0.68056\n37903|0.84722\n37904|0.79167\n37905|0.44444\n37906|0.44444\n37907|0.63889\n37908|0.65278\n37909|0.84722\n37910|0.5\n37911|0.61111\n37912|0.38889\n37913|0.58333\n37914|0.77778\n37915|0.68056\n37916|0.52778\n37917|0.5\n37918|0.61111\n37919|0.61111\n37920|0.83333\n37921|0.20833\n37922|0.68056\n37923|0.88889\n37924|0.77778\n37925|0.5\n37926|0.63889\n37927|0.5\n37928|0.5\n37929|0.5\n37930|0.625\n37931|0.5\n37932|0.34722\n37933|0.72222\n37934|0.5\n37935|0.5\n37936|0.125\n37937|0.5\n37938|0.61111\n37939|0.44444\n37940|0.5\n37941|0.5\n37942|0.41667\n37943|0.5\n37944|0.48611\n37945|0.45833\n37946|0.43056\n37947|0.44444\n37948|0.54167\n37949|0.36111\n37950|0.55556\n37951|0.5\n37952|0.33333\n37953|0.51389\n37954|0.5\n37955|0.5\n37956|0.5\n37957|0.55556\n37958|0.75\n37959|0.5\n37960|0.5\n37961|0.88889\n37962|0.48611\n37963|0.41667\n37964|0.5\n37965|0.5\n37966|0.5\n37967|0.5\n37968|0.58333\n37969|0.44444\n37970|0.5\n37971|0.66667\n37972|0.55556\n37973|0.54167\n37974|0.45833\n37975|0.5\n37976|0.5\n37977|0.76389\n37978|0.45833\n37979|0.625\n37980|0.5\n37981|0.34722\n37982|0.25\n37983|0.33333\n37984|0.5\n37985|0.79167\n37986|0.76389\n37987|0.54167\n37988|0.625\n37989|0.5\n37990|0.58333\n37991|0.63889\n37992|0.5\n37993|0.48611\n37994|0.55556\n37995|0.61111\n37996|0.48611\n37997|0.5\n37998|0.5\n37999|0.65278\n38000|0.55556\n38001|0.59722\n38002|0.5\n38003|0.72222\n38004|0.58333\n38005|0.58333\n38006|0.66667\n38007|0.5\n38008|0.625\n38009|0.5\n38010|0.59722\n38011|0.75\n38012|0.5\n38013|0.5\n38014|0.5\n38015|0.61111\n38016|0.5\n38017|0.625\n38018|0.81944\n38019|0.5\n38020|0.5\n38021|0.79167\n38022|0.84722\n38023|0.64583\n38024|0.91667\n38025|0.76389\n38026|0.97222\n38027|0.94444\n38028|0.79167\n38029|0.86111\n38030|0.90278\n38031|0.84722\n38032|0.91667\n38033|0.76389\n38034|0.84722\n38035|0.54167\n38036|0.59722\n38037|0.5\n38038|0.44444\n38039|0.80556\n38040|0.5\n38041|0.56944\n38042|0.5\n38043|0.55556\n38044|0.5\n38045|0.5\n38046|0.5\n38047|0.56944\n38048|0.5\n38049|0.61111\n38050|0.56944\n38051|0.88889\n38052|0.5\n38053|0.68056\n38054|0.27778\n38055|0.48611\n38056|0.5\n38057|0.5\n38058|0.80556\n38059|0.75\n38060|0.83333\n38061|0.5\n38062|0.59722\n38063|0.52778\n38064|0.72222\n38065|0.44444\n38066|0.58333\n38067|0.55556\n38068|0.5\n38069|0.56944\n38070|0.66667\n38071|0.5\n38072|0.58333\n38073|0.80556\n38074|0.5\n38075|0.56944\n38076|0.40278\n38077|0.375\n38078|0.51389\n38079|0.5\n38080|1\n38081|0.51389\n38082|0.88889\n38083|0.51389\n38084|0.58333\n38085|0.75\n38086|0.625\n38087|0.55556\n38088|0.70833\n38089|0.73611\n38090|0.5\n38091|0.34722\n38092|0.5\n38093|0.34722\n38094|0.55556\n38095|0.5\n38096|0.5\n38097|0.47222\n38098|0.45833\n38099|0.72222\n38100|0.66667\n38101|0.65278\n38102|0.77778\n38103|0.5\n38104|0.5\n38105|0.75\n38106|0.79167\n38107|0.5625\n38108|0.59722\n38109|0.5\n38110|0.5\n38111|0.29167\n38112|0.65278\n38113|0.33333\n38114|0.625\n38115|0.5\n38116|0.72222\n38117|0.68056\n38118|0.83333\n38119|0.76389\n38120|0.52778\n38121|0.61111\n38122|0.625\n38123|0.58333\n38124|0.73611\n38125|0.5\n38126|0.48611\n38127|0.38889\n38128|0.5\n38129|0.625\n38130|0.5\n38131|0.63889\n38132|0.5\n38133|0.59722\n38134|0.25\n38135|0.5\n38136|0.44444\n38137|0.56944\n38138|0.44444\n38139|0.625\n38140|0.5\n38141|0.56944\n38142|0.76389\n38143|0.5\n38144|0.44444\n38145|0.83333\n38146|0.66667\n38147|0.83333\n38148|0.94444\n38149|0.58333\n38150|0.30556\n38151|0.48611\n38152|0.5\n38153|0.5\n38154|0.40278\n38155|0.59722\n38156|0.66667\n38157|0.5\n38158|0.5\n38159|0.55556\n38160|0.5\n38161|0.33333\n38162|0.77778\n38163|0.73611\n38164|0.5\n38165|0.5\n38166|0.5\n38167|0.55556\n38168|0.66667\n38169|0.5\n38170|0.79167\n38171|0.69444\n38172|0.5\n38173|0.5\n38174|0.5\n38175|0.43056\n38176|0.73611\n38177|0.44444\n38178|0.27778\n38179|0.80556\n38180|0.91667\n38181|0.34722\n38182|0.63889\n38183|0.61111\n38184|0.77778\n38185|0.70833\n38186|0.5\n38187|0.77778\n38188|0.61111\n38189|0.54167\n38190|0.81944\n38191|0.5\n38192|0.75\n38193|0.63889\n38194|0.5\n38195|0.25\n38196|0.5\n38197|0.38889\n38198|0.44444\n38199|0.77778\n38200|0.65278\n38201|0.59722\n38202|0.65278\n38203|0.86111\n38204|0.76389\n38205|0.66667\n38206|0.5\n38207|0.54167\n38208|0.88889\n38209|0.68056\n38210|0.88889\n38211|0.77778\n38212|0.77778\n38213|0.79167\n38214|0.80556\n38215|0.875\n38216|0.88889\n38217|0.83333\n38218|0.55556\n38219|0.84722\n38220|0.80556\n38221|0.66667\n38222|0.5\n38223|0.81944\n38224|0.94444\n38225|0.77778\n38226|0.80556\n38227|0.63889\n38228|0.56944\n38229|0.5\n38230|0.55556\n38231|0.54167\n38232|0.75\n38233|0.65278\n38234|0.63889\n38235|0.61111\n38236|0.5\n38237|0.72222\n38238|0.5\n38239|0.5\n38240|0.73611\n38241|0.61111\n38242|0.72222\n38243|0.875\n38244|0.86111\n38245|0.90278\n38246|0.625\n38247|0.5\n38248|0.76389\n38249|0.65278\n38250|0.55556\n38251|0.72222\n38252|0.59722\n38253|0.52778\n38254|0.72222\n38255|0.5\n38256|0.5\n38257|0.65278\n38258|0.5\n38259|0.5\n38260|0.43056\n38261|0.5\n38262|0.81944\n38263|0.55556\n38264|0.88889\n38265|1\n38266|0.5\n38267|0.53125\n38268|0.73611\n38269|0.23611\n38270|0.5\n38271|0.65278\n38272|0.5\n38273|0.55556\n38274|0.33333\n38275|0.38889\n38276|0.5\n38277|0.59722\n38278|0.5\n38279|0.33333\n38280|0.66667\n38281|0.63889\n38282|0.625\n38283|0.56944\n38284|0.875\n38285|0.61111\n38286|0.70833\n38287|0.83333\n38288|0.81944\n38289|0.5\n38290|0.48611\n38291|0.77778\n38292|0.80556\n38293|0.77778\n38294|0.38889\n38295|0.58333\n38296|0.5\n38297|0.61111\n38298|0.36111\n38299|0.55556\n38300|0.30556\n38301|0.79167\n38302|0.56944\n38303|0.51389\n38304|0.58333\n38305|0.90278\n38306|0.55556\n38307|0.66667\n38308|0.52778\n38309|0.75\n38310|0.5\n38311|0.73611\n38312|0.83333\n38313|0.54167\n38314|0.70833\n38315|0.875\n38316|0.5\n38317|0.55556\n38318|0.44444\n38319|0.55556\n38320|0.55556\n38321|0.52778\n38322|0.5\n38323|0.66667\n38324|0.73611\n38325|0.59722\n38326|0.63889\n38327|0.51389\n38328|0.5\n38329|0.625\n38330|0.41667\n38331|0.30556\n38332|0.18056\n38333|0.55556\n38334|0.5\n38335|0.33333\n38336|0.34722\n38337|0.45833\n38338|0.27778\n38339|0.5\n38340|0.47222\n38341|0.52778\n38342|0.5\n38343|0.5\n38344|0.55556\n38345|0.75\n38346|0.51389\n38347|0.79167\n38348|0.91667\n38349|0.81944\n38350|0.5\n38351|0.61111\n38352|0.5\n38353|0.47222\n38354|0.34722\n38355|0.5\n38356|0.5\n38357|0.5\n38358|0.77778\n38359|0.5\n38360|0.75\n38361|0.44444\n38362|0.56944\n38363|0.5\n38364|0.44444\n38365|0.93056\n38366|0.70833\n38367|0.54167\n38368|0.55556\n38369|0.83333\n38370|0.375\n38371|0.44444\n38372|0.22222\n38373|0.63889\n38374|0.5\n38375|0.5\n38376|0.52778\n38377|0.5\n38378|0.5\n38379|0.5\n38380|0.5\n38381|0.55556\n38382|0.5\n38383|0.5\n38384|0.59722\n38385|0.5\n38386|0.61111\n38387|0.5\n38388|0.58333\n38389|0.5\n38390|0.52778\n38391|0.55556\n38392|0.77778\n38393|0.86111\n38394|0.63889\n38395|0.61111\n38396|0.625\n38397|0.5\n38398|0.88889\n38399|0.5\n38400|0.75\n38401|0.5\n38402|0.61111\n38403|0.70833\n38404|0.88889\n38405|0.61458\n38406|0.54167\n38407|0.5\n38408|0.52778\n38409|0.5\n38410|0.59722\n38411|0.56944\n38412|0.54167\n38413|0.5\n38414|0.5\n38415|0.5\n38416|0.52778\n38417|0.55556\n38418|0.81944\n38419|0.75\n38420|0.5\n38421|0.81944\n38422|0.47222\n38423|0.52778\n38424|0.77778\n38425|0.94444\n38426|0.76389\n38427|0.80208\n38428|0.40278\n38429|0.61111\n38430|0.97222\n38431|0.48611\n38432|0.47222\n38433|0.83333\n38434|0.81944\n38435|0.84722\n38436|0.72222\n38437|0.23611\n38438|0.25\n38439|0.90278\n38440|0.73611\n38441|0.65278\n38442|0.33333\n38443|0.22222\n38444|0.55556\n38445|0.66667\n38446|0.76389\n38447|0.83333\n38448|0.75\n38449|0.83333\n38450|0.75\n38451|0.91667\n38452|0.66667\n38453|0.88889\n38454|0.97222\n38455|0.73611\n38456|0.5\n38457|0.5\n38458|0.80556\n38459|0.61111\n38460|0.5\n38461|0.61111\n38462|0.80556\n38463|0.5\n38464|0.77778\n38465|0.5\n38466|0.38889\n38467|0.58333\n38468|0.47222\n38469|0.23611\n38470|0.22222\n38471|0.5\n38472|0.29167\n38473|0.31944\n38474|0.625\n38475|0.72222\n38476|0.47222\n38477|0.51389\n38478|0.78125\n38479|0.5\n38480|0.65278\n38481|0.5\n38482|0.5\n38483|0.33333\n38484|0.61111\n38485|0.5\n38486|0.44444\n38487|0.61111\n38488|0.65278\n38489|0.47222\n38490|0.5\n38491|0.38889\n38492|0.43056\n38493|0.70833\n38494|0.5\n38495|0.59722\n38496|0.5\n38497|0.5\n38498|0.27778\n38499|0.61111\n38500|0.5\n38501|0.47222\n38502|0.58333\n38503|0.5\n38504|0.5\n38505|0.59722\n38506|0.65278\n38507|0.5\n38508|0.34722\n38509|0.93056\n38510|0.75\n38511|0.56944\n38512|0.51389\n38513|0.5\n38514|0.61111\n38515|0.47222\n38516|0.55556\n38517|0.59722\n38518|0.5\n38519|0.625\n38520|0.45833\n38521|0.95833\n38522|0.80556\n38523|0.625\n38524|0.5\n38525|0.5\n38526|0.81944\n38527|0.59722\n38528|0.5\n38529|0.61111\n38530|0.51389\n38531|0.66667\n38532|0.54167\n38533|0.47222\n38534|0.5\n38535|0.5\n38536|0.875\n38537|0.63889\n38538|0.38889\n38539|0.5\n38540|0.5\n38541|0.45833\n38542|0.77778\n38543|0.59722\n38544|0.23611\n38545|0.47222\n38546|0.59722\n38547|0.55556\n38548|0.5\n38549|0.55556\n38550|0.5\n38551|0.5\n38552|0.44444\n38553|0.54167\n38554|0.72222\n38555|0.70833\n38556|0.5\n38557|0.5\n38558|0.55556\n38559|0.72222\n38560|0.75\n38561|0.86111\n38562|0.75\n38563|0.44444\n38564|0.55556\n38565|0.41667\n38566|0.5\n38567|0.86111\n38568|0.69444\n38569|0.38889\n38570|0.63889\n38571|0.5\n38572|0.65278\n38573|0.56944\n38574|0.38889\n38575|0.44444\n38576|0.52778\n38577|0.5\n38578|0.5\n38579|0.5\n38580|0.5\n38581|0.59722\n38582|0.77778\n38583|0.55556\n38584|0.54167\n38585|0.5\n38586|0.61111\n38587|0.5\n38588|0.5\n38589|0.625\n38590|0.70833\n38591|0.52778\n38592|0.66667\n38593|0.79167\n38594|0.36111\n38595|0.69444\n38596|0.59722\n38597|0.41667\n38598|0.5\n38599|0.65278\n38600|0.65278\n38601|0.73611\n38602|0.77778\n38603|0.47222\n38604|0.44444\n38605|0.31944\n38606|0.52778\n38607|0.65278\n38608|0.5\n38609|0.31944\n38610|0.77778\n38611|0.81944\n38612|0.59722\n38613|0.58333\n38614|0.5\n38615|0.30556\n38616|0.53125\n38617|0.88889\n38618|0.45833\n38619|0.55556\n38620|0.5\n38621|0.69444\n38622|0.5\n38623|0.41667\n38624|0.66667\n38625|0.44444\n38626|0.51389\n38627|0.52778\n38628|0.36111\n38629|0.38889\n38630|0.61111\n38631|0.52778\n38632|0.72222\n38633|0.5\n38634|0.58333\n38635|0.44444\n38636|0.5\n38637|0.38542\n38638|0.48611\n38639|0.44444\n38640|0.65278\n38641|0.77778\n38642|0.43056\n38643|0.5\n38644|0.58333\n38645|0.33333\n38646|0.5\n38647|0.52778\n38648|0.72222\n38649|0.69444\n38650|0.45833\n38651|0.33333\n38652|0.58333\n38653|0.63889\n38654|0.55556\n38655|0.61111\n38656|0.65278\n38657|0.73611\n38658|0.75\n38659|0.63889\n38660|0.81944\n38661|0.72222\n38662|0.5\n38663|0.55556\n38664|0.54167\n38665|0.5\n38666|0.55556\n38667|0.5\n38668|0.5\n38669|0.5\n38670|0.5\n38671|0.59375\n38672|0.61111\n38673|0.5\n38674|0.27778\n38675|0.5\n38676|0.38889\n38677|0.55556\n38678|0.5\n38679|0.5\n38680|0.5\n38681|0.29167\n38682|0.58333\n38683|0.72222\n38684|0.38889\n38685|0.44444\n38686|0.5\n38687|0.66667\n38688|0.55556\n38689|0.52778\n38690|0.65278\n38691|0.5\n38692|0.66667\n38693|0.55556\n38694|0.55556\n38695|0.46875\n38696|0.52778\n38697|0.56944\n38698|0.63889\n38699|0.83333\n38700|0.61111\n38701|0.5\n38702|0.5\n38703|0.5\n38704|0.41667\n38705|0.72222\n38706|0.84722\n38707|0.77778\n38708|0.83333\n38709|0.5\n38710|0.47222\n38711|0.375\n38712|0.5\n38713|0.51389\n38714|0.72222\n38715|0.65278\n38716|0.61111\n38717|0.5\n38718|0.51389\n38719|0.47222\n38720|0.69444\n38721|0.33333\n38722|0.45833\n38723|0.47222\n38724|0.5\n38725|0.69444\n38726|0.65278\n38727|0.75\n38728|0.52778\n38729|0.375\n38730|0.65278\n38731|0.88889\n38732|0.51389\n38733|0.77778\n38734|0.5\n38735|0.5\n38736|0.5\n38737|0.5\n38738|0.59722\n38739|0.61111\n38740|0.61111\n38741|0.75\n38742|0.5\n38743|0.61111\n38744|0.375\n38745|0.45833\n38746|0.66667\n38747|0.5\n38748|0.44444\n38749|0.54167\n38750|0.47222\n38751|0.84722\n38752|0.80556\n38753|0.76389\n38754|0.80556\n38755|0.51389\n38756|0.61111\n38757|0.5\n38758|0.5\n38759|0.33333\n38760|0.22222\n38761|0.44444\n38762|0.55556\n38763|0.68056\n38764|0.75\n38765|0.625\n38766|0.625\n38767|0.77778\n38768|0.44444\n38769|0.67708\n38770|0.61111\n38771|0.38889\n38772|0.5\n38773|0.33333\n38774|0.5\n38775|0.55556\n38776|0.63889\n38777|0.27778\n38778|0.66667\n38779|0.66667\n38780|0.55556\n38781|0.5\n38782|0.54167\n38783|0.5\n38784|0.54167\n38785|0.625\n38786|0.38889\n38787|0.5\n38788|0.95833\n38789|0.25\n38790|0.44444\n38791|0.63889\n38792|0.55556\n38793|0.33333\n38794|0.5\n38795|0.98611\n38796|0.90278\n38797|0.61111\n38798|0.52778\n38799|0.45833\n38800|0.61111\n38801|0.51389\n38802|0.5\n38803|0.5\n38804|0.5\n38805|0.61111\n38806|0.5\n38807|0.59722\n38808|0.625\n38809|0.30556\n38810|0.625\n38811|0.5\n38812|0.5\n38813|0.34722\n38814|0.52778\n38815|0.51389\n38816|0.54167\n38817|0.625\n38818|0.54167\n38819|0.47222\n38820|0.56944\n38821|0.5\n38822|0.41667\n38823|0.48611\n38824|0.61111\n38825|0.5\n38826|0.69444\n38827|0.5\n38828|0.55556\n38829|0.77778\n38830|0.80556\n38831|0.65278\n38832|0.5\n38833|0.33333\n38834|0.5\n38835|0.22222\n38836|0.5\n38837|0.5\n38838|0.56944\n38839|0.66667\n38840|0.55556\n38841|0.5\n38842|0.45833\n38843|0.59722\n38844|0.5\n38845|0.63889\n38846|0.69444\n38847|1\n38848|0.72222\n38849|0.51389\n38850|0.73611\n38851|0.66667\n38852|0.91667\n38853|0.61111\n38854|0.76389\n38855|0.5\n38856|0.44444\n38857|0.51389\n38858|0.38889\n38859|0.59722\n38860|0.83333\n38861|0.875\n38862|0.76389\n38863|0.55556\n38864|0.69444\n38865|0.26389\n38866|0.76389\n38867|0.66667\n38868|0.16667\n38869|0.34722\n38870|0.83333\n38871|0.54167\n38872|0.5\n38873|0.77778\n38874|0.77083\n38875|0.625\n38876|0.63889\n38877|0.5\n38878|0.66667\n38879|0.70833\n38880|0.77778\n38881|0.69444\n38882|0.38889\n38883|0.5\n38884|0.52778\n38885|0.98611\n38886|0.83333\n38887|0.83333\n38888|0.63889\n38889|0.65278\n38890|0.75\n38891|0.77778\n38892|0.69444\n38893|0.48611\n38894|0.625\n38895|0.47222\n38896|0.91667\n38897|0.88889\n38898|0.94444\n38899|0.83333\n38900|0.61111\n38901|0.63889\n38902|0.5\n38903|0.5\n38904|0.5\n38905|0.63889\n38906|0.5\n38907|0.55556\n38908|0.41667\n38909|0.29167\n38910|0.63889\n38911|0.5\n38912|0.55208\n38913|0.45833\n38914|0.66667\n38915|0.77778\n38916|0.52778\n38917|0.375\n38918|0.61111\n38919|0.47222\n38920|0.5\n38921|0.5\n38922|0.55208\n38923|0.79167\n38924|0.4375\n38925|0.625\n38926|0.44444\n38927|0.5\n38928|0.95833\n38929|0.5\n38930|0.48611\n38931|0.56944\n38932|0.77778\n38933|0.72222\n38934|0.5\n38935|0.44444\n38936|0.77778\n38937|0.5\n38938|0.83333\n38939|0.88889\n38940|0.5\n38941|0.61111\n38942|0.48611\n38943|0.63889\n38944|0.69444\n38945|0.5\n38946|0.5\n38947|0.73611\n38948|0.52778\n38949|0.70833\n38950|0.625\n38951|0.88889\n38952|0.81944\n38953|0.88889\n38954|0.77778\n38955|0.68056\n38956|0.9375\n38957|0.70833\n38958|0.47222\n38959|0.5\n38960|0.27778\n38961|0.59722\n38962|0.55556\n38963|0.83333\n38964|0.5\n38965|0.94444\n38966|0.93056\n38967|0.30556\n38968|0.55556\n38969|0.5\n38970|0.59722\n38971|0.5\n38972|0.34722\n38973|0.65278\n38974|0.88889\n38975|0.51389\n38976|0.56944\n38977|0.59722\n38978|0.5\n38979|0.34722\n38980|0.47222\n38981|0.48611\n38982|0.31944\n38983|0.625\n38984|0.875\n38985|0.5\n38986|0.5\n38987|0.5\n38988|0.47222\n38989|0.33333\n38990|0.59722\n38991|0.65278\n38992|0.44444\n38993|0.58333\n38994|0.34722\n38995|0.5\n38996|0.5\n38997|0.45833\n38998|0.45833\n38999|0.86111\n39000|0.25\n39001|0.57292\n39002|0.84722\n39003|0.86111\n39004|0.55556\n39005|0.83333\n39006|0.68056\n39007|0.69444\n39008|0.30556\n39009|0.83333\n39010|0.69444\n39011|0.61111\n39012|0.86111\n39013|0.45833\n39014|0.58333\n39015|0.52778\n39016|0.58333\n39017|0.5\n39018|0.5\n39019|0.72222\n39020|0.5\n39021|0.875\n39022|0.55556\n39023|0.40278\n39024|0.44444\n39025|0.41667\n39026|0.52778\n39027|0.43056\n39028|0.5\n39029|0.44444\n39030|0.26389\n39031|0.36111\n39032|0.3125\n39033|0.31944\n39034|0.51389\n39035|0.66667\n39036|0.5\n39037|0.66667\n39038|0.83333\n39039|0.84722\n39040|0.5\n39041|0.66667\n39042|0.5\n39043|0.81944\n39044|0.90278\n39045|0.52778\n39046|0.5\n39047|0.26389\n39048|0.61111\n39049|0.54167\n39050|0.5\n39051|0.5\n39052|0.625\n39053|0.75\n39054|0.80556\n39055|0.51389\n39056|0.19444\n39057|0.65278\n39058|0.56944\n39059|0.5\n39060|0.45833\n39061|0.30556\n39062|0.40278\n39063|0.65278\n39064|0.625\n39065|0.38889\n39066|0.5\n39067|0.5\n39068|0.51389\n39069|0.5\n39070|0.5\n39071|0.70833\n39072|0.5\n39073|0.36111\n39074|0.38889\n39075|0.5\n39076|0.72222\n39077|0.51389\n39078|0.47222\n39079|0.625\n39080|0.52778\n39081|0.5\n39082|0.77778\n39083|0.69444\n39084|0.13889\n39085|0.61111\n39086|0.83333\n39087|0.66667\n39088|0.69444\n39089|0.70833\n39090|0.29167\n39091|0.5\n39092|0.63889\n39093|0.52778\n39094|0.5\n39095|0.625\n39096|0.52778\n39097|0.5\n39098|0.69444\n39099|0.79167\n39100|0.63889\n39101|0.68056\n39102|0.52778\n39103|0.91667\n39104|0.63889\n39105|0.58333\n39106|0.5\n39107|0.75\n39108|0.83333\n39109|0.55556\n39110|0.63889\n39111|0.625\n39112|0.65278\n39113|0.44444\n39114|0.5\n39115|0.5\n39116|0.75\n39117|0.56944\n39118|0.66667\n39119|0.80556\n39120|0.69444\n39121|0.5\n39122|0.83333\n39123|0.54167\n39124|0.55556\n39125|0.54167\n39126|0.44444\n39127|0.5\n39128|0.31944\n39129|0.45833\n39130|0.875\n39131|0.48611\n39132|0.61111\n39133|0.61111\n39134|0.63889\n39135|0.55556\n39136|0.45833\n39137|0.77778\n39138|0.80556\n39139|0.75\n39140|0.58333\n39141|0.56944\n39142|0.5\n39143|0.90278\n39144|0.5\n39145|0.51389\n39146|0.5\n39147|0.70833\n39148|0.59722\n39149|0.68056\n39150|0.73611\n39151|0.43056\n39152|0.66667\n39153|0.61111\n39154|0.56944\n39155|0.72222\n39156|0.5\n39157|0.51389\n39158|0.5\n39159|0.5\n39160|0.5\n39161|0.59722\n39162|0.54167\n39163|0.19444\n39164|0.34722\n39165|0.55556\n39166|0.69444\n39167|0.5\n39168|0.5\n39169|0.5\n39170|0.31944\n39171|0.55556\n39172|0.79167\n39173|0.5\n39174|0.59722\n39175|0.63889\n39176|0.72222\n39177|0.68056\n39178|0.65278\n39179|0.77778\n39180|0.73611\n39181|0.69444\n39182|0.61111\n39183|0.5\n39184|0.58333\n39185|0.41667\n39186|0.55556\n39187|0.56944\n39188|0.5\n39189|0.55556\n39190|0.55556\n39191|0.5\n39192|0.61111\n39193|0.55556\n39194|0.40278\n39195|0.55556\n39196|0.5\n39197|0.75\n39198|0.5\n39199|0.51389\n39200|0.47222\n39201|0.5\n39202|0.83333\n39203|0.70833\n39204|0.68056\n39205|0.47222\n39206|0.5\n39207|0.51389\n39208|0.5\n39209|0.55556\n39210|0.625\n39211|0.55556\n39212|0.51389\n39213|0.55556\n39214|0.48611\n39215|0.51389\n39216|0.55556\n39217|0.44444\n39218|0.5\n39219|0.72222\n39220|0.70833\n39221|0.76389\n39222|0.5\n39223|0.77778\n39224|0.75\n39225|0.77778\n39226|0.59722\n39227|0.77778\n39228|0.5\n39229|0.54167\n39230|0.56944\n39231|0.51389\n39232|0.59722\n39233|0.59722\n39234|0.5\n39235|0.44444\n39236|0.5\n39237|0.38889\n39238|0.55556\n39239|0.70833\n39240|0.5\n39241|0.5\n39242|0.58333\n39243|0.36111\n39244|0.5\n39245|0.5\n39246|0.77778\n39247|0.44444\n39248|0.5\n39249|0.83333\n39250|0.5\n39251|0.66667\n39252|0.75\n39253|0.75\n39254|0.48611\n39255|0.80556\n39256|0.5\n39257|0.625\n39258|0.55556\n39259|0.5\n39260|0.875\n39261|0.5\n39262|0.59722\n39263|0.5\n39264|0.44444\n39265|0.88889\n39266|0.625\n39267|0.54167\n39268|0.58333\n39269|0.52778\n39270|0.48611\n39271|0.5\n39272|0.65278\n39273|0.625\n39274|0.44444\n39275|0.51389\n39276|0.625\n39277|0.55556\n39278|0.75\n39279|0.55556\n39280|0.61111\n39281|0.69444\n39282|0.5\n39283|0.72222\n39284|0.63889\n39285|0.66667\n39286|0.70833\n39287|0.43056\n39288|0.5\n39289|0.88889\n39290|0.66667\n39291|0.51389\n39292|0.72222\n39293|0.43056\n39294|0.34722\n39295|0.33333\n39296|0.81944\n39297|0.5\n39298|0.56944\n39299|0.52778\n39300|0.45833\n39301|0.5\n39302|0.61111\n39303|0.81944\n39304|0.55556\n39305|0.30556\n39306|0.5\n39307|0.5\n39308|0.66667\n39309|0.44444\n39310|0.625\n39311|0.5\n39312|0.72917\n39313|0.75\n39314|0.77778\n39315|0.38889\n39316|0.625\n39317|0.5\n39318|0.5\n39319|0.54167\n39320|0.38889\n39321|0.68056\n39322|0.48611\n39323|0.63889\n39324|0.66667\n39325|0.56944\n39326|0.36111\n39327|0.40278\n39328|0.63889\n39329|0.83333\n39330|0.51389\n39331|0.61111\n39332|0.19444\n39333|0.23611\n39334|0.61111\n39335|0.27778\n39336|0.5\n39337|0.77778\n39338|0.55556\n39339|0.5\n39340|0.59722\n39341|0.625\n39342|0.75\n39343|0.66667\n39344|0.44444\n39345|0.52778\n39346|0.55556\n39347|0.55556\n39348|0.5\n39349|0.5\n39350|0.5\n39351|0.56944\n39352|0.61111\n39353|0.59722\n39354|0.55556\n39355|0.38889\n39356|0.30556\n39357|0.72222\n39358|0.83333\n39359|0.625\n39360|0.5\n39361|0.5\n39362|0.5\n39363|0.52778\n39364|0.73611\n39365|0.61111\n39366|0.66667\n39367|0.65278\n39368|0.75\n39369|0.5\n39370|0.625\n39371|0.81944\n39372|0.94444\n39373|0.75\n39374|0.5\n39375|0.77778\n39376|0.61111\n39377|0.84722\n39378|0.48611\n39379|0.51389\n39380|0.33333\n39381|0.30556\n39382|0.47222\n39383|0.44444\n39384|0.54167\n39385|0.38889\n39386|0.25\n39387|0.58333\n39388|0.51389\n39389|0.38889\n39390|0.45833\n39391|0.65278\n39392|0.44444\n39393|0.22222\n39394|0.59722\n39395|0.81944\n39396|0.5\n39397|0.61111\n39398|0.52778\n39399|0.55556\n39400|0.44444\n39401|0.19444\n39402|0.34375\n39403|0.41667\n39404|0.98611\n39405|0.77778\n39406|0.94444\n39407|0.84722\n39408|0.375\n39409|0.72222\n39410|0.80556\n39411|0.81944\n39412|0.93056\n39413|0.69444\n39414|0.69444\n39415|0.75\n39416|0.68056\n39417|0.5\n39418|0.5\n39419|0.5\n39420|0.66667\n39421|0.5\n39422|0.5\n39423|0.41667\n39424|0.38889\n39425|0.90278\n39426|0.65278\n39427|0.70833\n39428|0.59722\n39429|0.68056\n39430|0.55556\n39431|0.66667\n39432|0.61458\n39433|0.80556\n39434|0.70833\n39435|0.5\n39436|0.83333\n39437|0.44444\n39438|0.56944\n39439|0.44444\n39440|0.44444\n39441|0.13889\n39442|0.56944\n39443|0.66667\n39444|0.54167\n39445|0.68056\n39446|0.79167\n39447|0.77778\n39448|0.55556\n39449|0.22222\n39450|0.51389\n39451|0.47222\n39452|0.54167\n39453|0.5\n39454|0.5\n39455|0.55556\n39456|0.63889\n39457|0.5\n39458|0.55556\n39459|0.81944\n39460|0.70833\n39461|0.47222\n39462|0.43056\n39463|0.33333\n39464|0.27778\n39465|0.75\n39466|0.625\n39467|0.54167\n39468|0.47222\n39469|0.66667\n39470|0.5\n39471|0.76389\n39472|0.53125\n39473|0.88889\n39474|0.66667\n39475|0.5\n39476|0.83333\n39477|0.81944\n39478|0.81944\n39479|0.61111\n39480|0.68056\n39481|0.65278\n39482|0.65278\n39483|0.54167\n39484|0.47222\n39485|0.54167\n39486|0.51389\n39487|0.45833\n39488|0.5\n39489|0.5\n39490|0.66667\n39491|0.52778\n39492|0.55556\n39493|0.52778\n39494|0.47222\n39495|0.45833\n39496|0.63889\n39497|0.65278\n39498|0.23611\n39499|0.86111\n39500|0.83333\n39501|0.66667\n39502|0.5\n39503|0.58333\n39504|0.63889\n39505|0.65278\n39506|0.5\n39507|0.55556\n39508|0.41667\n39509|0.58333\n39510|0.51389\n39511|0.5\n39512|0.5\n39513|0.5\n39514|0.375\n39515|0.55208\n39516|0.5\n39517|0.5\n39518|0.44444\n39519|0.54167\n39520|0.5\n39521|0.79167\n39522|0.5\n39523|0.5\n39524|0.5\n39525|0.63889\n39526|0.66667\n39527|0.75\n39528|0.88889\n39529|0.5\n39530|0.73611\n39531|0.5\n39532|0.79167\n39533|0.5\n39534|0.5\n39535|0.47222\n39536|0.73611\n39537|0.61111\n39538|0.30556\n39539|0.36111\n39540|0.5\n39541|0.52778\n39542|0.6875\n39543|0.68056\n39544|0.51389\n39545|0.375\n39546|0.23611\n39547|0.625\n39548|0.5\n39549|0.52778\n39550|0.47222\n39551|0.44444\n39552|0.76389\n39553|0.30556\n39554|0.43056\n39555|0.5\n39556|0.55556\n39557|0.5\n39558|0.61111\n39559|0.72222\n39560|0.5\n39561|0.61111\n39562|0.65278\n39563|0.55556\n39564|0.5\n39565|0.5\n39566|0.48611\n39567|0.68056\n39568|0.70833\n39569|0.77778\n39570|0.11111\n39571|0.48611\n39572|0.80556\n39573|1\n39574|0.41667\n39575|0.23611\n39576|0.61111\n39577|0.5\n39578|0.40278\n39579|0.61111\n39580|0.61111\n39581|0.5\n39582|0.98611\n39583|0.91667\n39584|0.36111\n39585|0.65278\n39586|0.5\n39587|0.38889\n39588|0.44444\n39589|0.55556\n39590|0.5\n39591|0.54167\n39592|0.5\n39593|0.5\n39594|0.53125\n39595|0.5\n39596|0.61111\n39597|0.55556\n39598|0.58333\n39599|0.76389\n39600|0.52778\n39601|0.5\n39602|0.5\n39603|0.70833\n39604|0.61111\n39605|0.55556\n39606|0.81944\n39607|0.20833\n39608|0.77778\n39609|0.68056\n39610|0.31944\n39611|0.45833\n39612|0.45833\n39613|0.61111\n39614|0.74306\n39615|0.61111\n39616|0.65278\n39617|0.54167\n39618|0.83333\n39619|0.58333\n39620|0.375\n39621|0.33333\n39622|0.76389\n39623|0.45833\n39624|0.27778\n39625|0.26389\n39626|0.56944\n39627|0.56944\n39628|0.45833\n39629|0.20833\n39630|0.27778\n39631|0.44444\n39632|0.5\n39633|0.76389\n39634|0.69444\n39635|0.91667\n39636|0.38889\n39637|0.52778\n39638|0.47222\n39639|0.65278\n39640|0.79167\n39641|0.61111\n39642|0.5\n39643|0.31944\n39644|0.58333\n39645|0.34722\n39646|0.5\n39647|0.5\n39648|0.5\n39649|0.5\n39650|0.45833\n39651|0.61111\n39652|0.72222\n39653|0.56944\n39654|0.61111\n39655|0.56944\n39656|0.20833\n39657|0.44444\n39658|0.5\n39659|0.375\n39660|0.5\n39661|0.81944\n39662|0.44444\n39663|0.70833\n39664|0.61111\n39665|0.41667\n39666|0.83333\n39667|0.43056\n39668|0.44444\n39669|0.44444\n39670|0.22222\n39671|0.13889\n39672|0.22222\n39673|0.13889\n39674|0.47222\n39675|0.375\n39676|0.44444\n39677|0.44444\n39678|0.25\n39679|0.61111\n39680|0.61111\n39681|0.63889\n39682|0.54167\n39683|0.44444\n39684|0.30556\n39685|0.375\n39686|0.5\n39687|0.43056\n39688|0.61111\n39689|0.70833\n39690|0.44444\n39691|0.58333\n39692|0.55556\n39693|0.22222\n39694|0.5\n39695|0.54167\n39696|0.65278\n39697|0.59722\n39698|0.81944\n39699|0.58333\n39700|0.63889\n39701|0.22222\n39702|0.5\n39703|0.5\n39704|0.5\n39705|0.56944\n39706|0.44444\n39707|0.56944\n39708|0.5\n39709|0.45833\n39710|0.66667\n39711|0.5\n39712|0.70833\n39713|0.5\n39714|0.52778\n39715|0.79167\n39716|0.66667\n39717|0.47222\n39718|0.5\n39719|0.38889\n39720|0.36111\n39721|0.5\n39722|0.48611\n39723|0.5\n39724|0.72222\n39725|0.52778\n39726|0.52778\n39727|0.69444\n39728|0.73611\n39729|0.5\n39730|0.43056\n39731|0.5\n39732|0.56944\n39733|0.5\n39734|0.60417\n39735|0.29167\n39736|0.5\n39737|0.79167\n39738|0.65278\n39739|0.5\n39740|0.61111\n39741|0.55556\n39742|0.75\n39743|0.44444\n39744|0.77083\n39745|0.75\n39746|0.47222\n39747|0.36111\n39748|0.5\n39749|0.69444\n39750|0.55556\n39751|0.5\n39752|0.44444\n39753|0.22222\n39754|0.63889\n39755|0.5\n39756|0.63889\n39757|0.55556\n39758|0.65278\n39759|0.5\n39760|0.52778\n39761|0.51389\n39762|0.45833\n39763|0.29167\n39764|0.5\n39765|0.63889\n39766|0.81944\n39767|0.79167\n39768|0.77778\n39769|0.55556\n39770|0.77083\n39771|0.68056\n39772|0.75\n39773|0.55556\n39774|0.59722\n39775|0.61111\n39776|0.68056\n39777|0.80556\n39778|0.83333\n39779|0.88889\n39780|0.77778\n39781|0.31944\n39782|0.70833\n39783|0.63889\n39784|0.5\n39785|0.5\n39786|0.56944\n39787|0.38889\n39788|0.66667\n39789|0.86111\n39790|0.33333\n39791|0.80556\n39792|0.44444\n39793|0.5\n39794|0.5\n39795|0.26389\n39796|0.5\n39797|0.58333\n39798|0.5\n39799|0.73611\n39800|0.5\n39801|0.69444\n39802|0.94444\n39803|0.75\n39804|0.61111\n39805|0.58333\n39806|0.76389\n39807|0.73611\n39808|0.875\n39809|0.93056\n39810|0.5\n39811|0.61111\n39812|0.76042\n39813|0.31944\n39814|0.44444\n39815|0.45833\n39816|0.77778\n39817|0.61111\n39818|0.45833\n39819|0.44444\n39820|0.5\n39821|0.5\n39822|0.5\n39823|0.48611\n39824|0.52778\n39825|0.5\n39826|0.125\n39827|0.66667\n39828|0.55556\n39829|0.93056\n39830|0.5\n39831|0.5\n39832|0.66667\n39833|0.94444\n39834|0.16667\n39835|0.54167\n39836|0.77778\n39837|0.625\n39838|0.40278\n39839|0.80556\n39840|0.875\n39841|0.81944\n39842|0.77778\n39843|0.77778\n39844|0.86111\n39845|0.73611\n39846|0.73611\n39847|0.69444\n39848|0.84722\n39849|0.73611\n39850|0.77778\n39851|0.61111\n39852|0.72222\n39853|0.70833\n39854|0.70833\n39855|0.5\n39856|0.5\n39857|0.55556\n39858|0.38889\n39859|0.5\n39860|0.66667\n39861|0.5\n39862|0.5\n39863|0.54167\n39864|0.63889\n39865|0.22222\n39866|0.5\n39867|0.68056\n39868|0.66667\n39869|0.51389\n39870|0.76389\n39871|0.625\n39872|0.5\n39873|0.54167\n39874|0.5\n39875|0.48611\n39876|0.44444\n39877|0.33333\n39878|0.5\n39879|0.75\n39880|0.66667\n39881|0.73611\n39882|0.66667\n39883|0.33333\n39884|0.70833\n39885|0.54167\n39886|0.69444\n39887|0.5\n39888|0.72222\n39889|0.66667\n39890|0.5\n39891|0.66667\n39892|0.63889\n39893|0.22222\n39894|0.5\n39895|0.5\n39896|0.52778\n39897|0.18056\n39898|0.63889\n39899|0.77778\n39900|0.69444\n39901|0.47222\n39902|0.23611\n39903|0.11111\n39904|0.26389\n39905|0.13889\n39906|0.27778\n39907|0.27778\n39908|0.65278\n39909|0.73611\n39910|0.76389\n39911|0.56944\n39912|0.66667\n39913|0.61111\n39914|0.5\n39915|0.25\n39916|0.47222\n39917|0.58333\n39918|0.79167\n39919|0.77778\n39920|0.38889\n39921|0.59722\n39922|0.65278\n39923|0.70833\n39924|0.52778\n39925|0.61111\n39926|0.76389\n39927|0.84722\n39928|0.72222\n39929|0.76389\n39930|0.68056\n39931|0.80556\n39932|0.76389\n39933|0.70833\n39934|0.72222\n39935|0.61111\n39936|0.69444\n39937|0.77778\n39938|0.69444\n39939|0.56944\n39940|0.75\n39941|0.71875\n39942|0.68056\n39943|0.79167\n39944|0.52778\n39945|0.76389\n39946|0.55556\n39947|0.73611\n39948|0.66667\n39949|0.5\n39950|0.54167\n39951|0.5\n39952|0.55556\n39953|0.77778\n39954|0.48611\n39955|0.54167\n39956|0.55556\n39957|0.38889\n39958|0.5\n39959|0.55556\n39960|0.80556\n39961|0.77778\n39962|0.69444\n39963|0.34722\n39964|0.875\n39965|0.72222\n39966|0.61111\n39967|1\n39968|0.61111\n39969|0.5\n39970|0.69444\n39971|0.66667\n39972|0.5\n39973|0.5\n39974|0.5\n39975|0.88889\n39976|0.625\n39977|0.52778\n39978|0.38889\n39979|0.48611\n39980|0.58333\n39981|0.55556\n39982|0.5\n39983|0.41667\n39984|0.375\n39985|0.52778\n39986|0.58333\n39987|0.43056\n39988|0.33333\n39989|0.5\n39990|0.47222\n39991|0.72222\n39992|0.54167\n39993|0.5\n39994|0.5\n39995|0.80208\n39996|0.55556\n39997|0.52778\n39998|0.81944\n39999|0.65278\n40000|0.38889\n40001|0.5\n40002|0.5\n40003|0.5\n40004|0.55556\n40005|0.61111\n40006|0.20833\n40007|0.45833\n40008|0.625\n40009|0.58333\n40010|0.65278\n40011|0.5\n40012|0.58333\n40013|0.68056\n40014|0.77778\n40015|0.61111\n40016|0.84722\n40017|0.76042\n40018|0.72222\n40019|0.79167\n40020|0.73611\n40021|0.63889\n40022|0.375\n40023|0.40278\n40024|0.069444\n40025|0.45833\n40026|0.61111\n40027|0.63889\n40028|0.51389\n40029|0.83333\n40030|0.65278\n40031|0.5\n40032|0.5\n40033|0.44444\n40034|0.44444\n40035|0.5\n40036|0.76389\n40037|0.875\n40038|0.58333\n40039|0.5\n40040|0.47222\n40041|0.5\n40042|0.34722\n40043|0.36111\n40044|0.44444\n40045|0.375\n40046|0.75\n40047|0.65278\n40048|0.45833\n40049|0.5\n40050|0.72222\n40051|0.52778\n40052|0.45833\n40053|0.38889\n40054|0.65278\n40055|0.5\n40056|0.55556\n40057|0.69444\n40058|0.80556\n40059|0.55556\n40060|0.75\n40061|0.56944\n40062|0.44444\n40063|0.66667\n40064|0.58333\n40065|0.45833\n40066|0.47222\n40067|0.41667\n40068|0.59722\n40069|0.70833\n40070|0.36111\n40071|0.65278\n40072|0.73611\n40073|0.5\n40074|0.38889\n40075|0.65278\n40076|0.45833\n40077|0.47222\n40078|0.63542\n40079|0.5\n40080|0.5\n40081|0.61111\n40082|0.63889\n40083|0.5\n40084|0.5\n40085|0.5\n40086|0.66667\n40087|0.72222\n40088|0.65278\n40089|0.88889\n40090|0.88889\n40091|0.5\n40092|0.51389\n40093|0.56944\n40094|0.55556\n40095|0.5\n40096|0.55556\n40097|0.55556\n40098|0.72222\n40099|0.5\n40100|0.5\n40101|0.79167\n40102|0.83333\n40103|0.94444\n40104|0.48611\n40105|0.625\n40106|0.70833\n40107|0.66667\n40108|0.75\n40109|0.63889\n40110|0.52778\n40111|0.77778\n40112|0.65278\n40113|0.92708\n40114|0.80556\n40115|0.625\n40116|0.875\n40117|0.40278\n40118|0.65278\n40119|0.88889\n40120|0.63889\n40121|0.66667\n40122|0.027778\n40123|0.76389\n40124|0.76389\n40125|0.66667\n40126|0.44444\n40127|0.90278\n40128|0.75\n40129|0.68056\n40130|0.55556\n40131|0.79167\n40132|0.66667\n40133|0.83333\n40134|0.56944\n40135|0.66667\n40136|0.5\n40137|0.84722\n40138|0.5\n40139|0.61111\n40140|0.30556\n40141|0.88542\n40142|0.61111\n40143|0.54167\n40144|0.69444\n40145|0.875\n40146|0.58333\n40147|0.81944\n40148|0.76389\n40149|0.70833\n40150|0.69444\n40151|0.72222\n40152|0.66667\n40153|0.61111\n40154|0.77083\n40155|0.5\n40156|0.5\n40157|0.5\n40158|0.625\n40159|0.69792\n40160|0.72917\n40161|0.80556\n40162|0.61111\n40163|0.5\n40164|0.5\n40165|0.52778\n40166|0.63889\n40167|0.86111\n40168|0.66667\n40169|0.75\n40170|0.59722\n40171|0.55556\n40172|0.73611\n40173|0.84722\n40174|0.75\n40175|0.94444\n40176|0.97222\n40177|0.76389\n40178|0.65278\n40179|0.63889\n40180|0.55556\n40181|0.66667\n40182|0.93056\n40183|0.69444\n40184|0.54167\n40185|0.86111\n40186|0.63542\n40187|0.5\n40188|0.51389\n40189|0.83333\n40190|0.5\n40191|0.68056\n40192|0.5\n40193|0.65278\n40194|0.5\n40195|0.58333\n40196|0.66667\n40197|0.5\n40198|0.90278\n40199|0.75\n40200|0.77778\n40201|0.81944\n40202|0.44444\n40203|0.5\n40204|0.84722\n40205|0.70833\n40206|0.30556\n40207|0.77778\n40208|0.76389\n40209|0.72222\n40210|0.69444\n40211|0.90278\n40212|0.81944\n40213|0.38889\n40214|0.5\n40215|0.80556\n40216|0.86111\n40217|0.77778\n40218|0.69444\n40219|0.15278\n40220|0.76389\n40221|0.69444\n40222|0.66667\n40223|0.69444\n40224|0.72222\n40225|0.72222\n40226|0.45833\n40227|0.61111\n40228|0.56944\n40229|0.84722\n40230|0.88542\n40231|0.51389\n40232|0.70833\n40233|0.59722\n40234|0.77778\n40235|0.58333\n40236|0.83333\n40237|0.40278\n40238|0.77778\n40239|0.44444\n40240|0.84722\n40241|0.5\n40242|0.5\n40243|0.76389\n40244|0.80556\n40245|0.44444\n40246|0.097222\n40247|0.72222\n40248|0.83333\n40249|0.65278\n40250|0.65278\n40251|0.68056\n40252|0.88889\n40253|0.79167\n40254|0.68056\n40255|0.73611\n40256|0.73611\n40257|0.66667\n40258|0.77778\n40259|0.5\n40260|0.75\n40261|0.88889\n40262|0.83333\n40263|0.44444\n40264|0.58333\n40265|0.54167\n40266|0.66667\n40267|0.56944\n40268|0.55556\n40269|0.81944\n40270|0.33333\n40271|0.875\n40272|0.5\n40273|0.66667\n40274|0.66667\n40275|0.5\n40276|0.56944\n40277|0.80556\n40278|0.83333\n40279|0.5\n40280|0.63889\n40281|0.48611\n40282|0.65278\n40283|0.5\n40284|0.55556\n40285|0.5\n40286|0.5\n40287|0.63889\n40288|0.5\n40289|0.56944\n40290|0.5\n40291|0.63889\n40292|0.5\n40293|0.61111\n40294|0.33333\n40295|0.5\n40296|0.76389\n40297|0.58333\n40298|0.70833\n40299|0.38889\n40300|0.33333\n40301|0.59722\n40302|0.36111\n40303|0.5\n40304|0.66667\n40305|0.5\n40306|0.41667\n40307|0.79167\n40308|0.5\n40309|0.5\n40310|0.5\n40311|0.84722\n40312|0.75\n40313|0.84722\n40314|0.72222\n40315|0.69444\n40316|0.68056\n40317|0.61111\n40318|0.26389\n40319|0.34722\n40320|0.30556\n40321|0.38889\n40322|0.44444\n40323|0.23611\n40324|0.5\n40325|0.66667\n40326|0.61111\n40327|0.72222\n40328|0.5\n40329|0.91667\n40330|1\n40331|0.63889\n40332|0.66667\n40333|0.91667\n40334|0.69444\n40335|0.44444\n40336|0.75\n40337|0.81944\n40338|0.72222\n40339|0.77778\n40340|0.5\n40341|0.51389\n40342|0.33333\n40343|0.59722\n40344|0.55556\n40345|0.75\n40346|0.72222\n40347|0.73611\n40348|0.81944\n40349|0.81944\n40350|0.69444\n40351|0.66667\n40352|0.68056\n40353|0.69444\n40354|0.77778\n40355|0.61111\n40356|0.84722\n40357|0.5\n40358|0.59722\n40359|0.88889\n40360|0.69444\n40361|0.75\n40362|0.63889\n40363|0.81944\n40364|0.63889\n40365|0.79167\n40366|0.68056\n40367|0.76389\n40368|0.81944\n40369|0.76389\n40370|0.73611\n40371|0.88889\n40372|0.80556\n40373|0.83333\n40374|0.83333\n40375|0.26389\n40376|0.26389\n40377|0.5\n40378|0.75\n40379|0.5\n40380|0.43056\n40381|0.72222\n40382|0.81944\n40383|0.58333\n40384|0.65278\n40385|0.625\n40386|0.5\n40387|0.5\n40388|0.66667\n40389|0.5\n40390|0.5\n40391|0.81944\n40392|0.66667\n40393|0.59722\n40394|0.625\n40395|0.38889\n40396|0.375\n40397|0.55556\n40398|0.69444\n40399|0.85417\n40400|0.16667\n40401|0.69444\n40402|0.5\n40403|0.875\n40404|0.80556\n40405|0.51389\n40406|0.76389\n40407|0.84722\n40408|0.72222\n40409|1\n40410|0.63889\n40411|0.80556\n40412|0.19444\n40413|0.29167\n40414|0.69444\n40415|0.5\n40416|0.5\n40417|0.44444\n40418|0.66667\n40419|0.44444\n40420|0.58333\n40421|0.375\n40422|0.63889\n40423|0.44444\n40424|0.90278\n40425|0.58333\n40426|0.51389\n40427|0.5\n40428|0.65278\n40429|0.59722\n40430|0.76389\n40431|0.23611\n40432|0.22222\n40433|0.34722\n40434|0.77778\n40435|0.43056\n40436|0.40278\n40437|0.45833\n40438|0.625\n40439|0.5\n40440|0.5\n40441|0.45833\n40442|0.61111\n40443|0.38889\n40444|0.94444\n40445|0.69444\n40446|0.75\n40447|0.61111\n40448|0.55556\n40449|0.51389\n40450|0.5\n40451|0.44444\n40452|0.47222\n40453|0.66667\n40454|0.68056\n40455|0.29167\n40456|0.43056\n40457|0.52778\n40458|0.625\n40459|0.38889\n40460|0.66667\n40461|0.625\n40462|0.34722\n40463|0.73611\n40464|0.81944\n40465|0.61111\n40466|0.5\n40467|0.54167\n40468|0.76389\n40469|0.66667\n40470|0.875\n40471|0.56944\n40472|0.77778\n40473|0.56944\n40474|0.58333\n40475|0.72222\n40476|0.5\n40477|0.51389\n40478|0.5\n40479|0.5\n40480|0.51389\n40481|0.66667\n40482|0.44444\n40483|0.83333\n40484|0.58333\n40485|0.79167\n40486|0.5\n40487|0.5\n40488|0.51389\n40489|0.5\n40490|0.5\n40491|0.5\n40492|0.5\n40493|0.51389\n40494|0.66667\n40495|0.5\n40496|0.66667\n40497|0.5\n40498|0.65278\n40499|0.5\n40500|0.58333\n40501|0.5\n40502|0.5\n40503|0.52778\n40504|0.65278\n40505|0.5\n40506|0.54167\n40507|0.5\n40508|0.61111\n40509|0.5\n40510|0.5\n40511|0.625\n40512|0.5\n40513|0.65278\n40514|0.5\n40515|0.5\n40516|0.69444\n40517|0.77778\n40518|0.5\n40519|0.61111\n40520|0.77778\n40521|0.5\n40522|0.52778\n40523|0.75\n40524|0.56944\n40525|0.72222\n40526|0.5\n40527|0.54167\n40528|0.77778\n40529|0.56944\n40530|0.55556\n40531|0.59722\n40532|0.93056\n40533|0.5\n40534|0.61111\n40535|0.5\n40536|0.59722\n40537|0.5\n40538|0.61111\n40539|0.5\n40540|0.5\n40541|0.58333\n40542|0.38889\n40543|0.55556\n40544|0.66667\n40545|0.48611\n40546|0.80556\n40547|0.68056\n40548|0.77778\n40549|0.83333\n40550|0.83333\n40551|0.54167\n40552|0.38889\n40553|0.33333\n40554|0.44444\n40555|0.55556\n40556|0.55556\n40557|0.66667\n40558|0.59722\n40559|0.43056\n40560|0.48611\n40561|0.5\n40562|0.61111\n40563|0.5\n40564|0.70833\n40565|0.84722\n40566|0.44444\n40567|0.72222\n40568|0.55556\n40569|0.56944\n40570|0.83333\n40571|0.63889\n40572|0.5\n40573|0.48611\n40574|0.47222\n40575|0.33333\n40576|0.19444\n40577|0.31944\n40578|0.59722\n40579|0.72222\n40580|0.66667\n40581|0.36111\n40582|0.54167\n40583|0.59722\n40584|0.44444\n40585|0.65278\n40586|0.68056\n40587|0.70833\n40588|0.5\n40589|0.55556\n40590|0.5\n40591|0.52778\n40592|0.58333\n40593|0.94444\n40594|0.61111\n40595|0.34722\n40596|0.48611\n40597|0.47222\n40598|0.16667\n40599|0.83333\n40600|0.75\n40601|0.5\n40602|0.5\n40603|0.43056\n40604|0.47222\n40605|0.66667\n40606|0.5\n40607|0.48611\n40608|0.5\n40609|0.77778\n40610|0.61111\n40611|0.5\n40612|0.76389\n40613|0.81944\n40614|0.36111\n40615|0.69444\n40616|0.83333\n40617|0.83333\n40618|0.33333\n40619|0.5\n40620|0.51389\n40621|0.44444\n40622|0.73611\n40623|0.79167\n40624|0.65278\n40625|0.58333\n40626|0.43056\n40627|0.61111\n40628|0.63889\n40629|0.48611\n40630|0.55556\n40631|0.5\n40632|0.63889\n40633|0.52778\n40634|0.58333\n40635|0.72222\n40636|0.77778\n40637|0.90278\n40638|0.81944\n40639|0.66667\n40640|0.81944\n40641|0.73611\n40642|0.66667\n40643|0.79167\n40644|0.86111\n40645|0.84722\n40646|0.69444\n40647|0.70833\n40648|0.79167\n40649|0.75\n40650|0.69444\n40651|0.69444\n40652|0.83333\n40653|0.83333\n40654|0.91667\n40655|0.76389\n40656|0.76389\n40657|0.52778\n40658|0.80556\n40659|0.83333\n40660|0.375\n40661|0.59722\n40662|0.66667\n40663|0.63889\n40664|0.81944\n40665|0.79167\n40666|0.75\n40667|0.69444\n40668|0.90278\n40669|0.88889\n40670|0.83333\n40671|0.91667\n40672|0.77778\n40673|0.875\n40674|0.84722\n40675|0.77778\n40676|0.52778\n40677|0.33333\n40678|0.72222\n40679|0.59722\n40680|0.68056\n40681|0.79167\n40682|0.73611\n40683|0.76389\n40684|0.58333\n40685|0.84722\n40686|0.83333\n40687|0.76389\n40688|0.84722\n40689|0.83333\n40690|0.625\n40691|0.81944\n40692|0.81944\n40693|0.83333\n40694|0.81944\n40695|0.56944\n40696|0.625\n40697|0.58333\n40698|0.61111\n40699|0.70833\n40700|0.73611\n40701|0.79167\n40702|0.81944\n40703|0.875\n40704|0.63889\n40705|0.65278\n40706|0.77778\n40707|0.875\n40708|0.73611\n40709|0.97222\n40710|0.83333\n40711|0.91667\n40712|0.81944\n40713|0.80556\n40714|0.91667\n40715|0.77778\n40716|0.56944\n40717|0.43056\n40718|0.83333\n40719|0.80556\n40720|0.875\n40721|0.77778\n40722|0.75\n40723|0.90278\n40724|0.88889\n40725|0.83333\n40726|0.86111\n40727|0.79167\n40728|0.81944\n40729|0.88889\n40730|0.84722\n40731|0.84722\n40732|0.83333\n40733|0.84722\n40734|0.94444\n40735|0.76389\n40736|0.875\n40737|0.93056\n40738|0.5\n40739|0.75\n40740|0.80556\n40741|0.61111\n40742|0.77778\n40743|0.5\n40744|0.93056\n40745|0.86111\n40746|0.83333\n40747|0.72222\n40748|0.44444\n40749|0.68056\n40750|0.66667\n40751|0.83333\n40752|0.75\n40753|0.83333\n40754|0.83333\n40755|0.69444\n40756|0.59722\n40757|0.77778\n40758|0.77778\n40759|0.84722\n40760|0.81944\n40761|0.875\n40762|0.90278\n40763|0.47222\n40764|0.80556\n40765|0.59722\n40766|0.625\n40767|0.80556\n40768|0.84722\n40769|0.875\n40770|0.90278\n40771|0.83333\n40772|0.77778\n40773|0.5\n40774|0.80556\n40775|0.66667\n40776|0.5\n40777|0.58333\n40778|0.51389\n40779|0.56944\n40780|0.625\n40781|0.375\n40782|0.5\n40783|0.5\n40784|0.61111\n40785|0.38889\n40786|0.33333\n40787|0.36111\n40788|0.77778\n40789|0.59722\n40790|0.58333\n40791|0.61111\n40792|0.5\n40793|0.55556\n40794|0.5\n40795|0.55556\n40796|0.43056\n40797|0.68056\n40798|0.5\n40799|0.80556\n40800|0.70833\n40801|0.51389\n40802|0.54167\n40803|0.73611\n40804|0.77778\n40805|0.45833\n40806|0.59722\n40807|0.58333\n40808|0.51389\n40809|0.88889\n40810|0.68056\n40811|0.61111\n40812|0.69444\n40813|0.5\n40814|0.45833\n40815|0.55556\n40816|0.84722\n40817|0.5\n40818|0.5\n40819|0.5\n40820|0.77778\n40821|0.66667\n40822|0.56944\n40823|0.72222\n40824|0.77778\n40825|0.77778\n40826|0.5\n40827|0.38889\n40828|0.375\n40829|0.77778\n40830|0.84722\n40831|0.84722\n40832|0.61111\n40833|0.27778\n40834|0.52778\n40835|0.33333\n40836|0.45833\n40837|0.625\n40838|0.41667\n40839|0.51389\n40840|0.68056\n40841|0.75\n40842|0.88889\n40843|0.77778\n40844|0.52778\n40845|0.73611\n40846|0.72222\n40847|0.77778\n40848|0.84722\n40849|0.5\n40850|0.61111\n40851|0.5\n40852|0.5\n40853|0.79167\n40854|0.84722\n40855|0.77778\n40856|0.48611\n40857|0.61111\n40858|0.83333\n40859|0.56944\n40860|0.65278\n40861|0.34722\n40862|0.83333\n40863|0.45833\n40864|0.33333\n40865|0.76389\n40866|0.30556\n40867|0.33333\n40868|0.75\n40869|0.5\n40870|0.58333\n40871|0.27778\n40872|0.83333\n40873|0.875\n40874|0.5\n40875|0.5\n40876|0.5\n40877|0.5\n40878|0.77778\n40879|0.5\n40880|0.5\n40881|0.63889\n40882|0.66667\n40883|0.80556\n40884|0.5\n40885|0.625\n40886|0.79167\n40887|0.84722\n40888|0.81944\n40889|0.77778\n40890|0.80556\n40891|0.66667\n40892|0.55556\n40893|0.5\n40894|0.5\n40895|0.55556\n40896|1\n40897|0.875\n40898|0.83333\n40899|0.63889\n40900|0.36111\n40901|0.69444\n40902|0.84722\n40903|0.55556\n40904|0.55556\n40905|0.75\n40906|0.90278\n40907|0.75\n40908|0.38889\n40909|0.59722\n40910|0.88889\n40911|0.48611\n40912|0.68056\n40913|0.40278\n40914|0.41667\n40915|0.75\n40916|0.84722\n40917|0.5\n40918|0.72222\n40919|0.76389\n40920|0.75\n40921|0.90278\n40922|0.88889\n40923|0.5\n40924|0.66667\n40925|0.73611\n40926|0.81944\n40927|0.84722\n40928|0.81944\n40929|0.77778\n40930|0.83333\n40931|0.86111\n40932|0.625\n40933|0.77778\n40934|0.63889\n40935|0.77778\n40936|0.56944\n40937|0.5\n40938|0.44444\n40939|0.5\n40940|0.5\n40941|0.80556\n40942|0.875\n40943|0.93056\n40944|0.86111\n40945|0.5\n40946|0.5\n40947|0.61111\n40948|0.88889\n40949|0.5\n40950|0.5\n40951|0.5\n40952|0.81944\n40953|0.5\n40954|0.20833\n40955|0.33333\n40956|0.81944\n40957|0.75\n40958|0.76389\n40959|0.44444\n40960|0.44444\n40961|0.55556\n40962|0.875\n40963|0.77778\n40964|0.84722\n40965|0.83333\n40966|0.80556\n40967|0.59722\n40968|0.95833\n40969|0.75\n40970|0.5\n40971|0.55556\n40972|0.5\n40973|0.59722\n40974|0.97222\n40975|0.44444\n40976|0.5\n40977|0.59722\n40978|0.625\n40979|0.36111\n40980|0.43056\n40981|0.5\n40982|0.94444\n40983|0.90278\n40984|0.65278\n40985|0.44444\n40986|0.56944\n40987|0.80556\n40988|0.625\n40989|0.75\n40990|0.66667\n40991|0.73611\n40992|0.59722\n40993|0.44444\n40994|0.55556\n40995|0.65278\n40996|0.68056\n40997|0.23611\n40998|0.38889\n40999|0.77778\n41000|0.38889\n41001|0.45833\n41002|0.68056\n41003|0.97222\n41004|0.88889\n41005|0.90278\n41006|0.875\n41007|0.80556\n41008|0.72222\n41009|0.66667\n41010|0.61111\n41011|0.83333\n41012|0.66667\n41013|0.66667\n41014|0.72222\n41015|0.625\n41016|0.63889\n41017|0.90278\n41018|0.93056\n41019|0.11111\n41020|0.22222\n41021|0.70833\n41022|0.47222\n41023|0.54167\n41024|0.59722\n41025|0.30556\n41026|0.31944\n41027|0.38889\n41028|0.375\n41029|0.40278\n41030|0.56944\n41031|0.68056\n41032|0.76389\n41033|0.54167\n41034|0.5\n41035|0.51389\n41036|0.5\n41037|0.625\n41038|0.5\n41039|0.5\n41040|0.22222\n41041|0.31944\n41042|0.36111\n41043|0.70833\n41044|0.5\n41045|0.38889\n41046|0.55556\n41047|0.79167\n41048|0.26389\n41049|0.34722\n41050|0.68056\n41051|0.5\n41052|0.61111\n41053|0.55556\n41054|0.625\n41055|0.77778\n41056|0.68056\n41057|0.56944\n41058|0.59722\n41059|0.80556\n41060|0.76389\n41061|0.81944\n41062|0.70833\n41063|0.86111\n41064|0.5\n41065|0.5\n41066|0.63889\n41067|0.5\n41068|0.5\n41069|0.15278\n41070|0.38889\n41071|0.58333\n41072|0.83333\n41073|0.51389\n41074|0.52778\n41075|0.63889\n41076|0.81944\n41077|0.80556\n41078|0.30556\n41079|0.43056\n41080|0.68056\n41081|0.375\n41082|0.72222\n41083|0.5\n41084|0.58333\n41085|0.58333\n41086|0.83333\n41087|0.73611\n41088|0.68056\n41089|0.77778\n41090|0.66667\n41091|0.80556\n41092|0.43056\n41093|0.5\n41094|0.52778\n41095|0.41667\n41096|0.68056\n41097|0.625\n41098|0.72222\n41099|0.68056\n41100|0.75\n41101|0.5\n41102|0.55556\n41103|0.66667\n41104|0.45833\n41105|0.54167\n41106|0.5\n41107|0.47222\n41108|0.56944\n41109|0.70833\n41110|0.81944\n41111|0.41667\n41112|0.40278\n41113|0.34722\n41114|0.66667\n41115|0.33333\n41116|0.40278\n41117|0.65278\n41118|0.5\n41119|0.5\n41120|0.5\n41121|0.51389\n41122|0.5\n41123|0.5\n41124|0.5\n41125|0.59722\n41126|0.61111\n41127|0.5\n41128|0.76389\n41129|0.80556\n41130|0.36111\n41131|0.61111\n41132|0.68056\n41133|0.63889\n41134|0.5\n41135|0.66667\n41136|0.55556\n41137|0.80556\n41138|0.70833\n41139|0.5\n41140|0.97222\n41141|1\n41142|0.95833\n41143|0.94444\n41144|0.875\n41145|0.95833\n41146|0.80556\n41147|0.84722\n41148|0.80556\n41149|0.40278\n41150|0.25\n41151|0.81944\n41152|0.5\n41153|0.5\n41154|0.5\n41155|0.51389\n41156|0.5\n41157|0.66667\n41158|0.93056\n41159|0.73611\n41160|0.19444\n41161|0.19444\n41162|0.5\n41163|0.70833\n41164|0.51389\n41165|0.59722\n41166|0.55556\n41167|0.77778\n41168|0.26389\n41169|0.30556\n41170|0.59722\n41171|0.83333\n41172|0.72222\n41173|0.5\n41174|0.56944\n41175|0.5\n41176|0.5\n41177|0.33333\n41178|0.65278\n41179|0.83333\n41180|0.5\n41181|0.55556\n41182|0.65278\n41183|0.5\n41184|0.70833\n41185|0.51389\n41186|0.58333\n41187|0.61111\n41188|0.88889\n41189|0.5\n41190|0.72222\n41191|0.875\n41192|0.59722\n41193|0.68056\n41194|0.45833\n41195|0.59722\n41196|0.625\n41197|0.45833\n41198|0.66667\n41199|0.65278\n41200|0.61111\n41201|0.80556\n41202|0.5\n41203|0.77778\n41204|0.81944\n41205|0.72222\n41206|0.83333\n41207|0.59722\n41208|0.95833\n41209|0.375\n41210|0.45833\n41211|0.66667\n41212|0.55556\n41213|0.77778\n41214|0.5\n41215|0.70833\n41216|0.48611\n41217|0.80556\n41218|0.77778\n41219|0.52778\n41220|0.40278\n41221|0.5\n41222|0.45833\n41223|0.51389\n41224|0.65278\n41225|0.63889\n41226|0.70833\n41227|0.80556\n41228|0.51389\n41229|0.5\n41230|0.31944\n41231|0.5\n41232|0.73611\n41233|0.81944\n41234|0.79167\n41235|0.77778\n41236|0.80556\n41237|0.55556\n41238|0.58333\n41239|0.86111\n41240|0.65278\n41241|0.47222\n41242|0.61111\n41243|0.63889\n41244|0.81944\n41245|0.58333\n41246|0.79167\n41247|0.72222\n41248|0.75\n41249|0.61111\n41250|0.55556\n41251|0.55556\n41252|0.5\n41253|0.5\n41254|0.27778\n41255|0.40278\n41256|0.77778\n41257|0.76389\n41258|0.83333\n41259|0.55556\n41260|0.58333\n41261|0.73611\n41262|0.70833\n41263|0.56944\n41264|0.83333\n41265|0.44444\n41266|0.38889\n41267|0.81944\n41268|0.56944\n41269|0.76389\n41270|0.79167\n41271|0.47222\n41272|0.51389\n41273|0.54167\n41274|0.54167\n41275|0.51389\n41276|0.61111\n41277|0.73611\n41278|0.75\n41279|0.44444\n41280|0.76389\n41281|0.80556\n41282|0.66667\n41283|0.38889\n41284|0.75\n41285|0.76389\n41286|0.75\n41287|0.70833\n41288|0.73611\n41289|0.68056\n41290|0.61111\n41291|0.625\n41292|0.55556\n41293|0.55556\n41294|0.55556\n41295|0.75\n41296|0.80556\n41297|0.68056\n41298|0.36111\n41299|0.30556\n41300|0.83333\n41301|0.63889\n41302|0.75\n41303|0.66667\n41304|0.79167\n41305|0.59722\n41306|0.38889\n41307|0.66667\n41308|0.52778\n41309|0.61111\n41310|0.73611\n41311|0.81944\n41312|0.76389\n41313|0.5\n41314|0.625\n41315|0.38889\n41316|0.72222\n41317|0.90278\n41318|0.84722\n41319|0.76389\n41320|0.66667\n41321|0.80556\n41322|0.94444\n41323|0.43056\n41324|0.41667\n41325|0.63889\n41326|0.93056\n41327|0.86111\n41328|0.94444\n41329|0.31944\n41330|0.58333\n41331|0.70833\n41332|0.75\n41333|0.77778\n41334|0.44444\n41335|0.58333\n41336|0.79167\n41337|0.70833\n41338|0.59722\n41339|0.86111\n41340|0.65278\n41341|0.68056\n41342|0.81944\n41343|0.27778\n41344|0.33333\n41345|0.76389\n41346|0.84722\n41347|0.68056\n41348|0.77778\n41349|0.69444\n41350|0.5\n41351|0.5\n41352|0.5\n41353|0.5\n41354|0.47222\n41355|0.5\n41356|0.55556\n41357|0.5\n41358|0.58333\n41359|0.72222\n41360|0.55556\n41361|0.66667\n41362|0.77778\n41363|0.76389\n41364|0.70833\n41365|0.5\n41366|0.33333\n41367|0.5\n41368|0.36111\n41369|0.77778\n41370|0.47222\n41371|0.52778\n41372|0.625\n41373|0.55556\n41374|0.625\n41375|0.625\n41376|0.5\n41377|0.81944\n41378|0.5\n41379|0.58333\n41380|0.5\n41381|0.5\n41382|0.61111\n41383|0.72222\n41384|0.73611\n41385|0.54167\n41386|0.38889\n41387|0.68056\n41388|0.55556\n41389|0.58333\n41390|0.68056\n41391|0.55556\n41392|0.75\n41393|0.59722\n41394|0.56944\n41395|0.69444\n41396|0.80556\n41397|0.27778\n41398|0.44444\n41399|0.56944\n41400|0.51389\n41401|0.58333\n41402|0.51389\n41403|0.70833\n41404|0.33333\n41405|0.625\n41406|0.55556\n41407|0.48611\n41408|0.40278\n41409|0.72222\n41410|0.33333\n41411|0.34722\n41412|0.70833\n41413|0.54861\n41414|0.5\n41415|0.5\n41416|0.59722\n41417|0.52778\n41418|0.44444\n41419|0.27778\n41420|0.61111\n41421|0.875\n41422|0.38889\n41423|0.68056\n41424|0.55556\n41425|0.84722\n41426|0.81944\n41427|0.80556\n41428|0.76389\n41429|0.5\n41430|0.61111\n41431|0.48611\n41432|0.80556\n41433|0.86111\n41434|0.86111\n41435|0.875\n41436|0.81944\n41437|0.83333\n41438|0.91667\n41439|0.55556\n41440|0.56944\n41441|0.59722\n41442|0.5\n41443|0.66667\n41444|0.73611\n41445|0.80556\n41446|0.73611\n41447|0.55556\n41448|0.19444\n41449|0.59722\n41450|0.625\n41451|0.48611\n41452|0.77778\n41453|0.81944\n41454|0.93056\n41455|0.79167\n41456|0.40278\n41457|0.61111\n41458|0.5\n41459|0.5\n41460|0.69444\n41461|0.80556\n41462|0.79167\n41463|0.84722\n41464|0.31944\n41465|0.55556\n41466|0.88889\n41467|0.69444\n41468|0.52778\n41469|0.73611\n41470|0.73611\n41471|0.61111\n41472|0.47222\n41473|0.65278\n41474|0.61111\n41475|0.56944\n41476|0.84722\n41477|0.83333\n41478|0.72222\n41479|0.79167\n41480|0.61111\n41481|0.5\n41482|0.66667\n41483|0.83333\n41484|0.66667\n41485|0.69444\n41486|0.55556\n41487|0.77778\n41488|0.59722\n41489|0.68056\n41490|0.59722\n41491|0.625\n41492|0.56944\n41493|0.61111\n41494|0.66667\n41495|0.47222\n41496|0.5\n41497|0.72222\n41498|0.055556\n41499|0.43056\n41500|0.76389\n41501|0.27778\n41502|0.48611\n41503|0.5\n41504|0.70833\n41505|0.54167\n41506|0.75\n41507|0.66667\n41508|0.59722\n41509|0.875\n41510|0.58333\n41511|0.72222\n41512|0.58333\n41513|0.59722\n41514|0.5\n41515|0.5\n41516|0.5\n41517|0.79167\n41518|0.72222\n41519|0.75\n41520|0.5\n41521|0.56944\n41522|0.625\n41523|0.59722\n41524|0.43056\n41525|0.5\n41526|0.5\n41527|0.61111\n41528|0.5\n41529|0.5\n41530|0.65278\n41531|0.61111\n41532|0.73611\n41533|0.66667\n41534|0.69444\n41535|0.58333\n41536|0.36111\n41537|0.61111\n41538|0.65278\n41539|0.125\n41540|0.45833\n41541|0.77778\n41542|0.81944\n41543|0.52778\n41544|0.58333\n41545|0.40278\n41546|0.70833\n41547|0.86111\n41548|0.84722\n41549|0.79167\n41550|0.66667\n41551|0.66667\n41552|0.73611\n41553|0.68056\n41554|0.38889\n41555|0.625\n41556|0.47222\n41557|0.58333\n41558|0.44444\n41559|0.72222\n41560|0.625\n41561|0.5\n41562|0.55556\n41563|0.5\n41564|0.44444\n41565|0.625\n41566|0.44444\n41567|0.59722\n41568|0.63889\n41569|0.80556\n41570|0.81944\n41571|0.61111\n41572|0.51389\n41573|0.90278\n41574|0.65278\n41575|0.75\n41576|0.77778\n41577|0.66667\n41578|0.5\n41579|0.5\n41580|0.48611\n41581|0.5\n41582|0.5\n41583|0.58333\n41584|0.5\n41585|0.77778\n41586|0.88889\n41587|0.5\n41588|0.59722\n41589|0.5\n41590|0.625\n41591|0.59722\n41592|0.66667\n41593|0.43056\n41594|0.52778\n41595|0.51389\n41596|0.81944\n41597|0.5\n41598|0.43056\n41599|0.55556\n41600|0.55556\n41601|0.54167\n41602|0.51389\n41603|0.55556\n41604|0.33333\n41605|0.66667\n41606|0.72222\n41607|0.875\n41608|0.79167\n41609|0.80556\n41610|0.58333\n41611|0.70833\n41612|0.38889\n41613|0.44444\n41614|0.375\n41615|0.65278\n41616|0.5\n41617|0.75\n41618|0.38889\n41619|0.72222\n41620|0.81944\n41621|0.5\n41622|0.56944\n41623|0.66667\n41624|0.625\n41625|0.84722\n41626|0.83333\n41627|0.56944\n41628|0.61111\n41629|0.69444\n41630|0.52778\n41631|0.70833\n41632|0.5\n41633|0.83333\n41634|0.76389\n41635|0.61111\n41636|0.75\n41637|0.5\n41638|0.38889\n41639|0.56944\n41640|0.40278\n41641|0.55556\n41642|0.40278\n41643|0.5\n41644|0.56944\n41645|0.70833\n41646|0.88889\n41647|0.63889\n41648|0.65278\n41649|0.5\n41650|0.5\n41651|0.45833\n41652|0.5\n41653|0.55556\n41654|0.45833\n41655|0.77778\n41656|0.51389\n41657|0.625\n41658|0.22222\n41659|0.47222\n41660|0.55556\n41661|0.83333\n41662|0.41667\n41663|0.73611\n41664|0.54167\n41665|0.5\n41666|0.59722\n41667|0.80556\n41668|0.54167\n41669|0.79167\n41670|0.75\n41671|0.56944\n41672|0.59722\n41673|0.75\n41674|0.22222\n41675|0.58333\n41676|0.54167\n41677|0.5\n41678|0.625\n41679|0.5\n41680|0.66667\n41681|0.5\n41682|0.63889\n41683|0.41667\n41684|0.45833\n41685|0.59722\n41686|0.55556\n41687|0.55556\n41688|0.5\n41689|0.5\n41690|0.5\n41691|0.625\n41692|0.83333\n41693|0.69444\n41694|0.88889\n41695|0.5\n41696|0.66667\n41697|0.61111\n41698|0.83333\n41699|0.5\n41700|0.56944\n41701|0.54167\n41702|0.54167\n41703|0.76389\n41704|0.65278\n41705|0.73611\n41706|0.80556\n41707|0.72222\n41708|0.5\n41709|0.55556\n41710|0.375\n41711|0.5\n41712|0.5\n41713|0.5\n41714|0.52778\n41715|0.59722\n41716|0.41667\n41717|0.52778\n41718|0.5\n41719|0.41667\n41720|0.56944\n41721|0.625\n41722|0.54167\n41723|0.45833\n41724|0.44444\n41725|0.61111\n41726|0.55556\n41727|0.61111\n41728|0.77778\n41729|0.61111\n41730|0.38889\n41731|0.55556\n41732|0.58333\n41733|0.61111\n41734|0.34722\n41735|0.5\n41736|0.66667\n41737|0.5\n41738|0.47222\n41739|0.5\n41740|0.83333\n41741|0.59722\n41742|0.44444\n41743|0.83333\n41744|0.70833\n41745|0.69444\n41746|0.70833\n41747|0.83333\n41748|0.90278\n41749|0.56944\n41750|0.68056\n41751|0.41667\n41752|0.5\n41753|0.52778\n41754|0.80556\n41755|0.45833\n41756|0.30556\n41757|0.5\n41758|0.68056\n41759|0.5\n41760|0.5\n41761|0.81944\n41762|0.66667\n41763|0.86111\n41764|0.75\n41765|0.83333\n41766|0.84722\n41767|0.73611\n41768|0.63889\n41769|0.625\n41770|0.52778\n41771|0.625\n41772|0.68056\n41773|0.66667\n41774|0.58333\n41775|0.70833\n41776|0.66667\n41777|0.52778\n41778|0.38889\n41779|0.66667\n41780|0.63889\n41781|0.54167\n41782|0.83333\n41783|0.80556\n41784|0.44444\n41785|0.59722\n41786|0.23611\n41787|0.59722\n41788|0.59722\n41789|0.68056\n41790|0.40278\n41791|0.59722\n41792|0.61111\n41793|0.5\n41794|0.77778\n41795|0.58333\n41796|0.47222\n41797|0.5\n41798|0.63889\n41799|0.66667\n41800|0.70833\n41801|0.80556\n41802|0.80556\n41803|0.83333\n41804|0.56944\n41805|0.79167\n41806|0.68056\n41807|0.44444\n41808|0.56944\n41809|0.375\n41810|0.38889\n41811|0.56944\n41812|0.59722\n41813|0.72222\n41814|0.79167\n41815|0.69444\n41816|0.22222\n41817|0.43056\n41818|0.51389\n41819|0.34722\n41820|0.56944\n41821|0.55556\n41822|0.47222\n41823|0.69444\n41824|0.56944\n41825|0.875\n41826|0.73611\n41827|0.73611\n41828|0.84722\n41829|0.55556\n41830|0.45833\n41831|0.5\n41832|0.54167\n41833|0.59722\n41834|0.13889\n41835|0.48611\n41836|0.5\n41837|0.63889\n41838|0.56944\n41839|0.5\n41840|0.68056\n41841|0.47222\n41842|0.73611\n41843|0.77778\n41844|0.73611\n41845|0.84722\n41846|0.65278\n41847|0.73611\n41848|0.76389\n41849|0.80556\n41850|0.72222\n41851|0.77778\n41852|0.70833\n41853|0.65278\n41854|0.66667\n41855|0.73611\n41856|0.52778\n41857|0.69444\n41858|0.66667\n41859|0.65278\n41860|0.77778\n41861|0.63889\n41862|0.63889\n41863|0.84722\n41864|0.61111\n41865|0.81944\n41866|0.69444\n41867|0.54167\n41868|0.66667\n41869|0.41667\n41870|0.48611\n41871|0.54167\n41872|0.5\n41873|0.31944\n41874|0.75\n41875|0.44444\n41876|0.51389\n41877|0.76389\n41878|0.66667\n41879|0.55556\n41880|0.51389\n41881|0.69444\n41882|0.70833\n41883|0.59722\n41884|0.77778\n41885|0.79167\n41886|0.84722\n41887|0.61111\n41888|0.47222\n41889|0.47222\n41890|0.83333\n41891|0.73611\n41892|0.75\n41893|0.79167\n41894|0.77778\n41895|0.86111\n41896|0.88889\n41897|0.5\n41898|0.33333\n41899|0.54167\n41900|0.47222\n41901|0.43056\n41902|0.52778\n41903|0.36111\n41904|0.52778\n41905|0.93056\n41906|0.74306\n41907|0.63889\n41908|0.48611\n41909|0.38889\n41910|0.41667\n41911|0.5\n41912|0.84722\n41913|0.66667\n41914|0.16667\n41915|0.40278\n41916|0.40278\n41917|0.5\n41918|0.75\n41919|0.55556\n41920|0.61111\n41921|0.66667\n41922|0.61111\n41923|0.58333\n41924|0.68056\n41925|0.51389\n41926|0.63889\n41927|0.52778\n41928|0.58333\n41929|0.93056\n41930|0.22222\n41931|0.38889\n41932|0.83333\n41933|0.58333\n41934|0.5\n41935|0.47222\n41936|0.68056\n41937|0.52778\n41938|0.73611\n41939|0.70833\n41940|0.63889\n41941|0.77778\n41942|0.44444\n41943|0.625\n41944|0.52778\n41945|0.61111\n41946|0.69444\n41947|0.66667\n41948|0.61111\n41949|0.70833\n41950|0.80556\n41951|0.55556\n41952|0.81944\n41953|0.5\n41954|0.59722\n41955|0.44444\n41956|0.91667\n41957|0.56944\n41958|0.43056\n41959|0.68056\n41960|0.44444\n41961|0.61111\n41962|0.55556\n41963|0.59722\n41964|0.5\n41965|0.5\n41966|0.48611\n41967|0.5\n41968|0.41667\n41969|0.44444\n41970|0.68056\n41971|0.59722\n41972|0.75\n41973|0.55556\n41974|0.45833\n41975|0.79167\n41976|0.56944\n41977|0.69444\n41978|0.66667\n41979|0.80556\n41980|0.5\n41981|0.58333\n41982|0.79167\n41983|0.59722\n41984|0.5\n41985|0.51389\n41986|0.5\n41987|0.5\n41988|0.59722\n41989|0.5\n41990|0.5\n41991|0.43056\n41992|0.63889\n41993|0.44444\n41994|0.5\n41995|0.61111\n41996|0.48611\n41997|0.54167\n41998|0.5\n41999|0.77778\n42000|0.61111\n42001|0.65278\n42002|0.61111\n42003|0.66667\n42004|0.54167\n42005|0.16667\n42006|0.56944\n42007|0.73611\n42008|0.5\n42009|0.48611\n42010|0.38889\n42011|0.43056\n42012|0.72222\n42013|0.51389\n42014|0.30556\n42015|0.56944\n42016|0.61111\n42017|0.84722\n42018|0.77778\n42019|0.93056\n42020|0.94444\n42021|0.43056\n42022|0.52778\n42023|0.5\n42024|0.83333\n42025|0.88889\n42026|0.875\n42027|0.70833\n42028|0.66667\n42029|0.63889\n42030|0.65278\n42031|0.58333\n42032|0.56944\n42033|0.58333\n42034|0.51389\n42035|0.63889\n42036|0.51389\n42037|0.75\n42038|0.55556\n42039|0.65278\n42040|0.5\n42041|0.76389\n42042|0.73611\n42043|0.56944\n42044|0.79167\n42045|0.86111\n42046|0.5\n42047|0.63889\n42048|0.51389\n42049|0.55556\n42050|0.56944\n42051|0.5\n42052|0.58333\n42053|0.5\n42054|0.68056\n42055|0.70833\n42056|0.44444\n42057|0.5\n42058|0.61111\n42059|0.58333\n42060|0.58333\n42061|0.56944\n42062|0.58333\n42063|0.77778\n42064|0.81944\n42065|0.56944\n42066|0.5\n42067|0.59722\n42068|0.5\n42069|0.48611\n42070|0.58333\n42071|0.52778\n42072|0.69444\n42073|0.59722\n42074|0.80556\n42075|0.59722\n42076|0.52778\n42077|0.63889\n42078|0.5\n42079|0.52778\n42080|0.5\n42081|0.61111\n42082|0.625\n42083|0.61111\n42084|0.55556\n42085|0.61111\n42086|0.54167\n42087|0.5\n42088|0.58333\n42089|0.48611\n42090|0.72222\n42091|0.63889\n42092|0.80556\n42093|0.23611\n42094|0.63889\n42095|0.55556\n42096|0.61111\n42097|0.70833\n42098|0.84722\n42099|0.70833\n42100|0.65278\n42101|0.5\n42102|0.56944\n42103|0.69444\n42104|0.44444\n42105|0.58333\n42106|0.61111\n42107|0.75\n42108|0.73611\n42109|0.5\n42110|0.63889\n42111|0.625\n42112|0.88889\n42113|0.63889\n42114|0.63889\n42115|0.54167\n42116|0.83333\n42117|0.75\n42118|0.70833\n42119|0.77778\n42120|0.48611\n42121|0.61111\n42122|0.55556\n42123|0.73611\n42124|0.94444\n42125|0.81944\n42126|0.73611\n42127|0.79167\n42128|0.83333\n42129|0.81944\n42130|0.73611\n42131|0.55556\n42132|0.68056\n42133|0.68056\n42134|0.83333\n42135|0.56944\n42136|0.5\n42137|0.58333\n42138|0.54167\n42139|0.65278\n42140|0.59722\n42141|0.55556\n42142|0.59722\n42143|0.5\n42144|0.5\n42145|0.55556\n42146|0.83333\n42147|0.79167\n42148|0.77778\n42149|0.61111\n42150|0.72222\n42151|0.72222\n42152|0.73611\n42153|0.625\n42154|0.83333\n42155|0.86111\n42156|0.86111\n42157|0.73611\n42158|0.83333\n42159|0.61111\n42160|0.59722\n42161|0.83333\n42162|0.5\n42163|0.68056\n42164|0.81944\n42165|0.5\n42166|0.55556\n42167|0.75\n42168|0.66667\n42169|0.83333\n42170|0.5\n42171|0.5\n42172|0.56944\n42173|0.54167\n42174|0.63889\n42175|0.69444\n42176|0.70833\n42177|0.63889\n42178|0.59722\n42179|0.61111\n42180|0.70833\n42181|0.63889\n42182|0.58333\n42183|0.5\n42184|0.625\n42185|0.70833\n42186|0.61111\n42187|0.55556\n42188|0.33333\n42189|0.44444\n42190|0.38889\n42191|0.22222\n42192|0.68056\n42193|0.44444\n42194|0.55556\n42195|0.51389\n42196|0.52778\n42197|0.47222\n42198|0.76389\n42199|0.5\n42200|0.54167\n42201|0.68056\n42202|0.55556\n42203|0.5\n42204|0.76389\n42205|0.77778\n42206|0.80556\n42207|0.33333\n42208|0.13889\n42209|0.29167\n42210|0.84722\n42211|0.79167\n42212|0.76389\n42213|0.56944\n42214|0.69444\n42215|0.73611\n42216|0.83333\n42217|0.83333\n42218|0.58333\n42219|0.5\n42220|0.875\n42221|0.44444\n42222|0.44444\n42223|0.44444\n42224|0.84722\n42225|0.79167\n42226|0.73611\n42227|0.66667\n42228|0.88889\n42229|0.55556\n42230|0.75\n42231|0.72222\n42232|0.5\n42233|0.61111\n42234|0.5\n42235|0.5\n42236|0.5\n42237|0.5\n42238|0.55556\n42239|0.40278\n42240|0.51389\n42241|0.5\n42242|0.41667\n42243|0.375\n42244|0.59722\n42245|0.77778\n42246|0.625\n42247|0.69444\n42248|0.73611\n42249|0.51389\n42250|0.5\n42251|0.27778\n42252|0.73611\n42253|0.5\n42254|0.44444\n42255|0.55556\n42256|0.31944\n42257|0.625\n42258|0.61111\n42259|0.63889\n42260|0.5\n42261|0.66667\n42262|0.76389\n42263|0.69444\n42264|0.65278\n42265|0.5\n42266|0.5\n42267|0.55556\n42268|0.625\n42269|0.65278\n42270|0.72222\n42271|0.68056\n42272|0.56944\n42273|0.375\n42274|0.77778\n42275|0.625\n42276|0.5\n42277|0.44444\n42278|0.58333\n42279|0.43056\n42280|0.5\n42281|0.5\n42282|0.5\n42283|0.54167\n42284|0.73611\n42285|0.44444\n42286|0.69444\n42287|0.51389\n42288|0.54167\n42289|0.61111\n42290|0.44444\n42291|0.61111\n42292|0.5\n42293|0.55556\n42294|0.69444\n42295|0.75\n42296|0.375\n42297|0.5\n42298|0.52778\n42299|0.61111\n42300|0.5\n42301|0.76389\n42302|0.81944\n42303|0.73611\n42304|0.625\n42305|0.29167\n42306|0.79167\n42307|0.83333\n42308|0.72222\n42309|0.76389\n42310|0.66667\n42311|0.625\n42312|0.61111\n42313|0.72222\n42314|0.59722\n42315|0.55556\n42316|0.58333\n42317|0.61111\n42318|0.83333\n42319|0.63889\n42320|0.79167\n42321|0.75\n42322|0.76389\n42323|0.70833\n42324|0.55556\n42325|0.59722\n42326|0.38889\n42327|0.5\n42328|0.55556\n42329|0.66667\n42330|0.69444\n42331|0.75\n42332|0.66667\n42333|0.54167\n42334|0.59722\n42335|0.81944\n42336|0.69444\n42337|0.75\n42338|0.79167\n42339|0.70833\n42340|0.66667\n42341|0.70833\n42342|0.48611\n42343|0.625\n42344|0.72222\n42345|0.80556\n42346|0.58333\n42347|0.58333\n42348|0.44444\n42349|0.52778\n42350|0.48611\n42351|0.5\n42352|0.56944\n42353|0.61111\n42354|0.58333\n42355|0.51389\n42356|0.76389\n42357|0.68056\n42358|0.83333\n42359|0.55556\n42360|0.84722\n42361|0.875\n42362|0.44444\n42363|0.5\n42364|0.48611\n42365|0.44444\n42366|0.54167\n42367|0.59722\n42368|0.56944\n42369|0.5\n42370|0.66667\n42371|0.69444\n42372|0.70833\n42373|0.59722\n42374|0.56944\n42375|0.31944\n42376|0.88889\n42377|0.73611\n42378|0.76389\n42379|0.81944\n42380|0.5\n42381|0.5\n42382|0.81944\n42383|0.76389\n42384|0.47222\n42385|0.5\n42386|0.90278\n42387|0.58333\n42388|0.59722\n42389|0.52778\n42390|0.61111\n42391|0.83333\n42392|0.75\n42393|0.5\n42394|0.56944\n42395|0.5\n42396|0.44444\n42397|0.58333\n42398|0.40278\n42399|0.375\n42400|0.5\n42401|0.5\n42402|0.77778\n42403|0.91667\n42404|0.83333\n42405|0.5\n42406|0.48611\n42407|0.79167\n42408|0.83333\n42409|0.5\n42410|0.59722\n42411|0.58333\n42412|0.79167\n42413|0.41667\n42414|0.43056\n42415|0.29167\n42416|0.875\n42417|0.52778\n42418|0.5\n42419|0.58333\n42420|0.5\n42421|0.5\n42422|0.56944\n42423|0.58333\n42424|0.5\n42425|0.23611\n42426|0.5\n42427|0.45833\n42428|0.61111\n42429|0.5\n42430|0.52778\n42431|0.65278\n42432|0.5\n42433|0.68056\n42434|0.63889\n42435|0.61111\n42436|0.36111\n42437|0.65278\n42438|0.45833\n42439|0.58333\n42440|0.5\n42441|0.44444\n42442|0.77778\n42443|0.55556\n42444|0.5\n42445|0.73611\n42446|0.5\n42447|0.59722\n42448|0.69444\n42449|0.66667\n42450|0.63889\n42451|0.56944\n42452|0.58333\n42453|0.5\n42454|0.27778\n42455|0.68056\n42456|0.86111\n42457|0.5\n42458|0.63889\n42459|0.40278\n42460|0.76389\n42461|0.76389\n42462|0.77778\n42463|0.65278\n42464|0.54167\n42465|0.5\n42466|0.61111\n42467|0.58333\n42468|0.73611\n42469|0.77778\n42470|0.76389\n42471|0.5\n42472|0.63889\n42473|0.5\n42474|0.72222\n42475|0.56944\n42476|0.72222\n42477|0.48611\n42478|0.15278\n42479|0.70833\n42480|0.79167\n42481|0.52778\n42482|0.40278\n42483|0.38889\n42484|0.5\n42485|0.66667\n42486|0.56944\n42487|0.61111\n42488|0.75\n42489|0.81944\n42490|0.72222\n42491|0.44444\n42492|0.625\n42493|0.58333\n42494|0.61111\n42495|0.59722\n42496|0.54167\n42497|0.63889\n42498|0.69444\n42499|0.63889\n42500|0.41667\n42501|0.5\n42502|0.59722\n42503|0.68056\n42504|0.73611\n42505|0.55556\n42506|0.75\n42507|0.52778\n42508|0.58333\n42509|0.58333\n42510|0.5\n42511|0.5\n42512|0.59722\n42513|0.34722\n42514|0.58333\n42515|0.61111\n42516|0.5\n42517|0.5\n42518|0.66667\n42519|0.66667\n42520|0.61111\n42521|0.44444\n42522|0.5\n42523|0.43056\n42524|0.55556\n42525|0.61111\n42526|0.80556\n42527|0.5\n42528|0.52778\n42529|0.61111\n42530|0.76389\n42531|0.83333\n42532|0.73611\n42533|0.75\n42534|0.83333\n42535|0.77778\n42536|0.5\n42537|0.68056\n42538|0.61111\n42539|0.81944\n42540|0.54167\n42541|0.5\n42542|0.80556\n42543|0.83333\n42544|0.77778\n42545|0.59722\n42546|0.66667\n42547|0.56944\n42548|0.48611\n42549|0.55556\n42550|0.5\n42551|0.22222\n42552|0.625\n42553|0.73611\n42554|0.70833\n42555|0.56944\n42556|0.61111\n42557|0.75\n42558|0.56944\n42559|0.38889\n42560|0.72222\n42561|0.76389\n42562|0.76389\n42563|0.65278\n42564|0.66667\n42565|0.20833\n42566|0.5\n42567|0.25\n42568|0.19444\n42569|0.56944\n42570|0.61111\n42571|0.61111\n42572|0.5\n42573|0.68056\n42574|0.77778\n42575|0.47222\n42576|0.63889\n42577|0.54167\n42578|0.73611\n42579|0.38889\n42580|0.5\n42581|0.61111\n42582|0.97222\n42583|0.59722\n42584|0.55556\n42585|0.48611\n42586|0.41667\n42587|0.61111\n42588|0.58333\n42589|0.5\n42590|0.66667\n42591|0.79167\n42592|0.5\n42593|0.65278\n42594|0.54167\n42595|0.81944\n42596|0.77778\n42597|0.81944\n42598|0.58333\n42599|0.58333\n42600|0.625\n42601|0.58333\n42602|0.56944\n42603|0.55556\n42604|0.59722\n42605|0.52778\n42606|0.81944\n42607|0.5\n42608|0.5\n42609|0.5\n42610|0.72222\n42611|0.51389\n42612|0.5\n42613|0.55556\n42614|0.44444\n42615|0.58333\n42616|0.59722\n42617|0.5\n42618|0.45833\n42619|0.51389\n42620|0.66667\n42621|0.55556\n42622|0.52778\n42623|0.52778\n42624|0.59722\n42625|0.5\n42626|0.44444\n42627|0.52778\n42628|0.58333\n42629|0.5\n42630|0.5\n42631|0.38889\n42632|0.16667\n42633|0.23611\n42634|0.41667\n42635|0.54167\n42636|0.5\n42637|0.58333\n42638|0.625\n42639|0.68056\n42640|0.59722\n42641|0.58333\n42642|0.625\n42643|0.70833\n42644|0.77778\n42645|0.77778\n42646|0.30556\n42647|0.76389\n42648|0.72222\n42649|0.69444\n42650|0.56944\n42651|0.40278\n42652|0.77778\n42653|0.73611\n42654|0.72222\n42655|0.83333\n42656|0.77778\n42657|0.625\n42658|0.66667\n42659|0.76389\n42660|0.73611\n42661|0.47222\n42662|0.44444\n42663|0.41667\n42664|0.55556\n42665|0.84722\n42666|0.84722\n42667|0.88889\n42668|0.59722\n42669|0.68056\n42670|0.70833\n42671|0.55556\n42672|0.84722\n42673|0.72222\n42674|0.55556\n42675|0.54167\n42676|0.61111\n42677|0.56944\n42678|0.68056\n42679|0.34722\n42680|0.52778\n42681|0.54167\n42682|0.48611\n42683|0.5\n42684|0.625\n42685|0.52778\n42686|0.33333\n42687|0.59722\n42688|0.68056\n42689|0.41667\n42690|0.56944\n42691|0.72222\n42692|0.93056\n42693|0.83333\n42694|0.65278\n42695|0.56944\n42696|0.70833\n42697|0.41667\n42698|0.54167\n42699|0.38889\n42700|0.68056\n42701|0.20833\n42702|0.375\n42703|0.44444\n42704|0.81944\n42705|0.75\n42706|0.76389\n42707|0.59722\n42708|0.65278\n42709|0.61111\n42710|0.51389\n42711|0.83333\n42712|0.33333\n42713|0.5\n42714|0.47222\n42715|0.43056\n42716|0.81944\n42717|0.875\n42718|0.79167\n42719|0.52778\n42720|0.63889\n42721|0.75\n42722|0.625\n42723|0.40278\n42724|0.59722\n42725|0.47222\n42726|0.65278\n42727|0.48611\n42728|0.65278\n42729|0.75\n42730|0.5\n42731|0.58333\n42732|0.38889\n42733|0.29167\n42734|0.63889\n42735|0.75\n42736|0.80556\n42737|0.81944\n42738|0.48611\n42739|0.80556\n42740|0.75\n42741|0.65278\n42742|0.61111\n42743|0.41667\n42744|0.76389\n42745|0.47222\n42746|0.54167\n42747|0.375\n42748|0.5\n42749|0.5\n42750|0.52778\n42751|0.56944\n42752|0.5\n42753|0.5\n42754|0.69444\n42755|0.69444\n42756|0.58333\n42757|0.59722\n42758|0.66667\n42759|0.55556\n42760|0.61111\n42761|0.48611\n42762|0.59722\n42763|0.5\n42764|0.625\n42765|0.91667\n42766|0.66667\n42767|0.5\n42768|0.68056\n42769|0.75\n42770|0.54167\n42771|0.83333\n42772|0.56944\n42773|0.5\n42774|0.81944\n42775|0.68056\n42776|0.30556\n42777|0.31944\n42778|0.56944\n42779|0.72222\n42780|0.55556\n42781|0.69444\n42782|0.66667\n42783|0.5\n42784|0.5\n42785|0.38889\n42786|0.55556\n42787|0.80556\n42788|0.77778\n42789|0.83333\n42790|0.5\n42791|0.56944\n42792|0.38889\n42793|0.61111\n42794|0.63889\n42795|0.75\n42796|0.98611\n42797|0.79167\n42798|0.83333\n42799|0.56944\n42800|0.26389\n42801|0.55556\n42802|0.40278\n42803|0.5\n42804|0.38889\n42805|0.43056\n42806|0.91667\n42807|0.55556\n42808|0.58333\n42809|0.55556\n42810|0.51389\n42811|0.55556\n42812|0.55556\n42813|0.5\n42814|0.63889\n42815|0.90278\n42816|0.33333\n42817|0.61111\n42818|0.61111\n42819|0.79167\n42820|0.77778\n42821|0.81944\n42822|0.75\n42823|0.54167\n42824|0.5\n42825|0.5\n42826|0.54167\n42827|0.58333\n42828|0.58333\n42829|0.38889\n42830|0.77778\n42831|0.79167\n42832|0.38889\n42833|0.40278\n42834|0.55556\n42835|0.58333\n42836|0.55556\n42837|0.70833\n42838|0.70833\n42839|0.79167\n42840|0.875\n42841|0.51389\n42842|0.5\n42843|0.59722\n42844|0.47222\n42845|0.45833\n42846|0.58333\n42847|0.81944\n42848|0.81944\n42849|0.68056\n42850|0.44444\n42851|0.59722\n42852|0.66667\n42853|0.59722\n42854|0.73611\n42855|0.61111\n42856|0.59722\n42857|0.54167\n42858|0.45833\n42859|0.68056\n42860|0.59722\n42861|0.65278\n42862|0.70833\n42863|0.5\n42864|0.16667\n42865|0.875\n42866|0.70833\n42867|0.30556\n42868|0.55556\n42869|0.22222\n42870|0.61111\n42871|0.5\n42872|0.80556\n42873|0.63889\n42874|0.75\n42875|0.125\n42876|0.65278\n42877|0.5\n42878|0.5\n42879|0.68056\n42880|0.52778\n42881|0.56944\n42882|0.625\n42883|0.56944\n42884|0.54167\n42885|0.83333\n42886|0.77778\n42887|0.70833\n42888|0.625\n42889|0.875\n42890|0.56944\n42891|0.56944\n42892|0.5\n42893|0.70833\n42894|0.5\n42895|0.84722\n42896|0.5\n42897|0.70833\n42898|0.5\n42899|0.5\n42900|0.56944\n42901|0.54167\n42902|0.75\n42903|0.70833\n42904|0.61111\n42905|0.5\n42906|0.5\n42907|0.625\n42908|0.5\n42909|0.23611\n42910|0.5\n42911|0.36111\n42912|0.88889\n42913|0.84722\n42914|0.77778\n42915|0.75\n42916|0.81944\n42917|0.45833\n42918|0.77778\n42919|0.58333\n42920|0.66667\n42921|0.44444\n42922|0.5\n42923|0.69444\n42924|0.75\n42925|0.38889\n42926|0.66667\n42927|0.52778\n42928|0.5\n42929|0.5\n42930|0.54167\n42931|0.73611\n42932|0.66667\n42933|0.63889\n42934|0.5\n42935|0.88889\n42936|0.5\n42937|0.43056\n42938|0.44444\n42939|0.34722\n42940|0.65278\n42941|0.51389\n42942|0.58333\n42943|0.375\n42944|0.44444\n42945|0.61111\n42946|0.55556\n42947|0.52778\n42948|0.58333\n42949|0.33333\n42950|0.54167\n42951|0.5\n42952|0.5\n42953|0.5\n42954|0.625\n42955|0.55556\n42956|0.54167\n42957|0.77778\n42958|0.73611\n42959|0.75\n42960|0.73611\n42961|0.625\n42962|0.55556\n42963|0.52778\n42964|0.30556\n42965|0.40278\n42966|0.38889\n42967|0.56944\n42968|0.73611\n42969|0.5\n42970|0.5\n42971|0.5\n42972|0.56944\n42973|0.5\n42974|0.5\n42975|0.36111\n42976|0.38889\n42977|0.65278\n42978|0.66667\n42979|0.68056\n42980|0.45833\n42981|0.5\n42982|0.41667\n42983|0.54167\n42984|0.55556\n42985|0.61111\n42986|0.70833\n42987|0.76389\n42988|0.5\n42989|0.43056\n42990|0.63889\n42991|0.61111\n42992|0.5\n42993|0.5\n42994|0.55556\n42995|0.61111\n42996|0.48611\n42997|0.5\n42998|0.76389\n42999|0.56944\n43000|0.34722\n43001|0.61111\n43002|0.69444\n43003|0.5\n43004|0.51389\n43005|0.5\n43006|0.5\n43007|0.59722\n43008|0.5\n43009|0.84722\n43010|0.73611\n43011|0.875\n43012|0.5\n43013|0.81944\n43014|0.91667\n43015|0.80556\n43016|0.66667\n43017|0.58333\n43018|0.81944\n43019|0.81944\n43020|0.5\n43021|0.58333\n43022|0.61111\n43023|0.83333\n43024|0.77778\n43025|0.65278\n43026|0.625\n43027|0.66667\n43028|0.59722\n43029|0.73611\n43030|0.61111\n43031|0.73611\n43032|0.5\n43033|0.75\n43034|0.72222\n43035|0.76389\n43036|0.69444\n43037|0.79167\n43038|0.52778\n43039|0.5\n43040|0.52778\n43041|0.61111\n43042|0.52778\n43043|0.70833\n43044|0.83333\n43045|0.59722\n43046|0.59722\n43047|0.66667\n43048|0.5\n43049|0.55556\n43050|0.55556\n43051|0.56944\n43052|0.44444\n43053|0.59722\n43054|0.47222\n43055|0.30556\n43056|0.59722\n43057|0.61111\n43058|0.51389\n43059|0.5\n43060|0.625\n43061|0.5\n43062|0.5\n43063|0.77778\n43064|0.40278\n43065|0.5\n43066|0.5\n43067|0.59722\n43068|0.63889\n43069|0.90278\n43070|1\n43071|0.27778\n43072|0.5\n43073|0.77778\n43074|0.75\n43075|0.5\n43076|0.5\n43077|0.44444\n43078|0.58333\n43079|0.45833\n43080|0.59722\n43081|0.5\n43082|0.77778\n43083|0.5\n43084|0.5\n43085|0.38889\n43086|0.73611\n43087|0.5\n43088|0.61111\n43089|0.52778\n43090|0.5\n43091|0.5\n43092|0.65278\n43093|0.5\n43094|0.79167\n43095|0.68056\n43096|0.70833\n43097|0.80556\n43098|0.5\n43099|0.61111\n43100|0.80556\n43101|0.75\n43102|0.72222\n43103|0.38889\n43104|0.23611\n43105|0.55556\n43106|0.44444\n43107|0.44444\n43108|0.29167\n43109|0.91667\n43110|0.84722\n43111|0.94444\n43112|0.70833\n43113|0.58333\n43114|0.52778\n43115|0.75\n43116|0.70833\n43117|0.5\n43118|0.55556\n43119|0.55556\n43120|0.86111\n43121|0.51389\n43122|0.75\n43123|0.5\n43124|0.73611\n43125|0.69444\n43126|0.61111\n43127|0.5\n43128|0.5\n43129|0.375\n43130|0.66667\n43131|0.63889\n43132|0.45833\n43133|0.66667\n43134|0.5\n43135|0.27778\n43136|0.40278\n43137|0.43056\n43138|0.51389\n43139|0.56944\n43140|0.44444\n43141|0.23611\n43142|0.45833\n43143|0.63889\n43144|0.63889\n43145|0.22222\n43146|0.44444\n43147|0.30556\n43148|0.63889\n43149|0.70833\n43150|0.72222\n43151|0.59722\n43152|0.52778\n43153|0.63889\n43154|0.61111\n43155|0.66667\n43156|0.65278\n43157|0.47222\n43158|0.55556\n43159|0.80556\n43160|0.84722\n43161|0.77778\n43162|0.73611\n43163|0.58333\n43164|0.76389\n43165|0.72222\n43166|0.66667\n43167|0.70833\n43168|0.59722\n43169|0.66667\n43170|0.72222\n43171|0.75\n43172|0.69444\n43173|0.76389\n43174|0.58333\n43175|0.43056\n43176|0.51389\n43177|0.86111\n43178|0.86111\n43179|0.90278\n43180|0.93056\n43181|0.63889\n43182|0.625\n43183|0.72222\n43184|0.90278\n43185|0.80556\n43186|0.73611\n43187|0.625\n43188|0.83333\n43189|0.43056\n43190|0.61111\n43191|0.52778\n43192|0.5\n43193|0.44444\n43194|0.5\n43195|0.44444\n43196|0.5\n43197|0.54167\n43198|0.5\n43199|0.5\n43200|0.77778\n43201|0.58333\n43202|0.72222\n43203|0.58333\n43204|0.58333\n43205|0.75\n43206|0.75\n43207|0.5\n43208|0.81944\n43209|0.61111\n43210|0.83333\n43211|0.52778\n43212|0.5\n43213|0.55556\n43214|0.61111\n43215|0.79167\n43216|0.76389\n43217|0.5\n43218|0.5\n43219|0.5\n43220|0.68056\n43221|0.5\n43222|0.61111\n43223|0.48611\n43224|0.69444\n43225|0.29167\n43226|0.54167\n43227|0.63889\n43228|0.65278\n43229|0.80556\n43230|0.77778\n43231|0.81944\n43232|0.5\n43233|0.80556\n43234|0.58333\n43235|0.66667\n43236|0.68056\n43237|0.30556\n43238|0.29167\n43239|0.66667\n43240|0.44444\n43241|0.83333\n43242|0.93056\n43243|0.5\n43244|0.43056\n43245|0.5\n43246|0.84722\n43247|0.34722\n43248|0.5\n43249|0.44444\n43250|0.625\n43251|0.68056\n43252|0.97222\n43253|0.88889\n43254|0.55556\n43255|0.84722\n43256|0.72222\n43257|0.75\n43258|0.77778\n43259|0.77778\n43260|0.68056\n43261|0.73611\n43262|0.84722\n43263|0.055556\n43264|0.66667\n43265|0.63889\n43266|0.59722\n43267|0.44444\n43268|0.68056\n43269|0.90278\n43270|0.83333\n43271|0.55556\n43272|0.55556\n43273|0.77778\n43274|0.86111\n43275|0.625\n43276|0.61111\n43277|0.36111\n43278|0.56944\n43279|0.44444\n43280|0.72222\n43281|0.44444\n43282|0.27778\n43283|0.80556\n43284|0.77778\n43285|0.72222\n43286|0.69444\n43287|0.66667\n43288|0.29167\n43289|0.23611\n43290|0.33333\n43291|0.52778\n43292|0.29167\n43293|0.68056\n43294|0.66667\n43295|0.16667\n43296|0.52778\n43297|0.65278\n43298|0.55556\n43299|0.75\n43300|0.68056\n43301|0.5\n43302|0.31944\n43303|0.33333\n43304|0.45833\n43305|0.5\n43306|0.75\n43307|0.66667\n43308|0.59722\n43309|0.79167\n43310|0.70833\n43311|0.5\n43312|0.5\n43313|0.23611\n43314|0.68056\n43315|0.38889\n43316|0.41667\n43317|0.63889\n43318|0.70833\n43319|0.70833\n43320|0.81944\n43321|0.56944\n43322|0.61111\n43323|0.76389\n43324|0.69444\n43325|0.72222\n43326|0.70833\n43327|0.72222\n43328|0.26389\n43329|0.5\n43330|0.81944\n43331|0.72222\n43332|0.5\n43333|0.81944\n43334|0.63889\n43335|0.5\n43336|0.70833\n43337|0.75\n43338|0.88889\n43339|0.94444\n43340|0.58333\n43341|0.72222\n43342|0.59722\n43343|0.36111\n43344|0.5\n43345|0.52778\n43346|0.43056\n43347|0.63889\n43348|0.68056\n43349|0.88889\n43350|0.77778\n43351|0.75\n43352|0.51389\n43353|0.70833\n43354|0.52778\n43355|0.70833\n43356|0.22222\n43357|0.34722\n43358|0.93056\n43359|0.72222\n43360|0.5\n43361|0.29167\n43362|0.66667\n43363|0.52778\n43364|0.5\n43365|0.29167\n43366|0.5\n43367|0.66667\n43368|0.54167\n43369|0.76389\n43370|0.63889\n43371|0.88889\n43372|0.83333\n43373|0.5\n43374|0.5\n43375|0.5\n43376|0.55556\n43377|0.48611\n43378|0.5\n43379|0.48611\n43380|0.75\n43381|0.48611\n43382|0.5\n43383|0.55556\n43384|0.51389\n43385|0.5\n43386|0.5\n43387|0.5\n43388|0.94444\n43389|0.73611\n43390|0.80556\n43391|0.51389\n43392|0.5\n43393|0.5\n43394|0.77778\n43395|0.79167\n43396|0.69444\n43397|0.80556\n43398|0.75\n43399|0.52778\n43400|0.56944\n43401|0.51389\n43402|0.51389\n43403|0.73611\n43404|0.72222\n43405|0.65278\n43406|0.86111\n43407|0.66667\n43408|0.5\n43409|0.66667\n43410|0.5\n43411|0.83333\n43412|0.94444\n43413|0.5\n43414|0.5\n43415|0.77778\n43416|0.5\n43417|0.54167\n43418|0.5\n43419|0.48611\n43420|0.44444\n43421|0.5\n43422|0.5\n43423|0.44444\n43424|0.76389\n43425|0.70833\n43426|0.5\n43427|0.79167\n43428|0.51389\n43429|0.68056\n43430|0.55556\n43431|0.69444\n43432|0.77778\n43433|0.5\n43434|0.63889\n43435|0.76389\n43436|0.73611\n43437|0.66667\n43438|0.375\n43439|0.44444\n43440|0.76389\n43441|0.68056\n43442|0.59722\n43443|0.76389\n43444|0.52778\n43445|0.63889\n43446|0.98611\n43447|0.83333\n43448|0.625\n43449|0.63889\n43450|0.56944\n43451|0.76389\n43452|0.54167\n43453|0.44444\n43454|0.29167\n43455|0.44444\n43456|0.59722\n43457|0.83333\n43458|0.5\n43459|0.77778\n43460|0.125\n43461|0.68056\n43462|0.61111\n43463|0.81944\n43464|0.88889\n43465|0.5\n43466|0.5\n43467|0.34722\n43468|0.66667\n43469|0.90278\n43470|0.63889\n43471|0.73611\n43472|0.5\n43473|0.84722\n43474|0.73611\n43475|0.77778\n43476|0.5\n43477|0.66667\n43478|0.69444\n43479|0.5\n43480|0.75\n43481|0.58333\n43482|0.625\n43483|0.75\n43484|0.76389\n43485|0.69444\n43486|0.69444\n43487|0.83333\n43488|0.58333\n43489|0.51389\n43490|0.47222\n43491|0.47222\n43492|0.72222\n43493|0.70833\n43494|0.84722\n43495|0.83333\n43496|0.625\n43497|0.83333\n43498|0.86111\n43499|0.88889\n43500|0.77778\n43501|0.59722\n43502|0.33333\n43503|0.83333\n43504|0.69444\n43505|0.55556\n43506|0.55556\n43507|0.43056\n43508|0.65278\n43509|0.79167\n43510|0.69444\n43511|0.95833\n43512|0.48611\n43513|0.58333\n43514|0.58333\n43515|0.65278\n43516|0.65278\n43517|0.58333\n43518|0.63889\n43519|0.48611\n43520|0.5\n43521|0.16667\n43522|0.61111\n43523|0.625\n43524|0.34722\n43525|0.52778\n43526|0.72222\n43527|0.83333\n43528|0.54167\n43529|0.54167\n43530|0.44444\n43531|0.77778\n43532|0.625\n43533|0.73611\n43534|0.80556\n43535|0.76389\n43536|0.65278\n43537|0.83333\n43538|0.69444\n43539|0.27778\n43540|0.16667\n43541|0.65278\n43542|0.76389\n43543|0.625\n43544|0.72222\n43545|0.29167\n43546|0.30556\n43547|0.43056\n43548|0.375\n43549|0.33333\n43550|0.80556\n43551|0.31944\n43552|0.66667\n43553|0.36111\n43554|0.5\n43555|0.76389\n43556|0.61111\n43557|0.75\n43558|0.625\n43559|0.81944\n43560|0.69444\n43561|0.48611\n43562|0.59722\n43563|0.34722\n43564|0.56944\n43565|0.48611\n43566|0.66667\n43567|0.61111\n43568|0.59722\n43569|0.73611\n43570|0.70833\n43571|0.54167\n43572|0.54167\n43573|0.88889\n43574|0.51389\n43575|0.58333\n43576|0.41667\n43577|0.5\n43578|0.55556\n43579|0.45833\n43580|0.63889\n43581|0.84722\n43582|0.81944\n43583|0.54167\n43584|0.63889\n43585|0.69444\n43586|0.84722\n43587|0.77778\n43588|0.61111\n43589|0.5\n43590|0.52778\n43591|0.625\n43592|0.79167\n43593|0.86111\n43594|0.66667\n43595|0.55556\n43596|0.63889\n43597|0.51389\n43598|0.72222\n43599|0.48611\n43600|0.51389\n43601|0.41667\n43602|0.52778\n43603|0.5\n43604|0.65278\n43605|0.52778\n43606|0.52778\n43607|0.47222\n43608|0.51389\n43609|0.48611\n43610|0.84722\n43611|0.77778\n43612|0.84722\n43613|0.48611\n43614|0.81944\n43615|0.13889\n43616|0.70833\n43617|0.52778\n43618|0.625\n43619|0.81944\n43620|0.81944\n43621|0.69444\n43622|0.63889\n43623|0.73611\n43624|0.29167\n43625|0.59722\n43626|0.56944\n43627|0.69444\n43628|0.69444\n43629|0.875\n43630|0.11111\n43631|0.61111\n43632|0.54167\n43633|0.80556\n43634|0.73611\n43635|0.80556\n43636|0.72222\n43637|0.56944\n43638|0.45833\n43639|0.80556\n43640|0.65278\n43641|0.66667\n43642|0.84722\n43643|0.73611\n43644|0.72222\n43645|0.55556\n43646|0.65278\n43647|0.66667\n43648|0.72222\n43649|0.48611\n43650|0.58333\n43651|0.19444\n43652|0.5\n43653|0.66667\n43654|0.5\n43655|0.51389\n43656|0.63889\n43657|0.58333\n43658|0.56944\n43659|0.5\n43660|0.51389\n43661|0.5\n43662|0.625\n43663|0.44444\n43664|0.5\n43665|0.5\n43666|0.55556\n43667|0.66667\n43668|0.48611\n43669|0.5\n43670|0.47222\n43671|0.75\n43672|0.84722\n43673|0.19444\n43674|0.20833\n43675|0.72222\n43676|0.77778\n43677|0.51389\n43678|0.83333\n43679|0.43056\n43680|0.79167\n43681|0.84722\n43682|0.61111\n43683|0.54167\n43684|0.44444\n43685|0.61111\n43686|0.77778\n43687|0.59722\n43688|0.51389\n43689|0.375\n43690|0.56944\n43691|0.44444\n43692|0.58333\n43693|0.5\n43694|0.75\n43695|0.55556\n43696|0.33333\n43697|0.44444\n43698|0.79167\n43699|0.47222\n43700|0.51389\n43701|0.51389\n43702|0.45833\n43703|0.68056\n43704|0.45833\n43705|0.58333\n43706|0.55556\n43707|0.625\n43708|0.54167\n43709|0.61111\n43710|0.625\n43711|0.30556\n43712|0.72222\n43713|0.72222\n43714|0.91667\n43715|0.75\n43716|0.25\n43717|0.80556\n43718|0.73611\n43719|0.77778\n43720|0.72222\n43721|0.75\n43722|0.48611\n43723|0.69444\n43724|0.875\n43725|0.875\n43726|0.36111\n43727|0.65278\n43728|0.48611\n43729|0.72222\n43730|0.77778\n43731|0.70833\n43732|0.72222\n43733|0.79167\n43734|0.68056\n43735|0.56944\n43736|0.90278\n43737|0.73611\n43738|0.27778\n43739|0.97222\n43740|0.75\n43741|0.84722\n43742|0.625\n43743|0.34722\n43744|0.70833\n43745|0.625\n43746|0.58333\n43747|0.94444\n43748|0.52778\n43749|0.83333\n43750|0.75\n43751|0.55556\n43752|0.80556\n43753|0.61111\n43754|0.44444\n43755|0.79167\n43756|0.625\n43757|0.72222\n43758|0.72222\n43759|0.72222\n43760|0.63889\n43761|0.56944\n43762|0.72222\n43763|0.80556\n43764|0.68056\n43765|0.48611\n43766|0.51389\n43767|0.84722\n43768|0.55556\n43769|0.69444\n43770|0.5\n43771|0.625\n43772|0.84722\n43773|0.58333\n43774|0.41667\n43775|0.70833\n43776|0.66667\n43777|0.77778\n43778|0.91667\n43779|0.41667\n43780|0.84722\n43781|0.69444\n43782|0.75\n43783|0.625\n43784|0.625\n43785|0.84722\n43786|0.83333\n43787|0.65278\n43788|0.84722\n43789|0.55556\n43790|0.69444\n43791|0.73611\n43792|0.59722\n43793|0.72222\n43794|0.81944\n43795|0.48611\n43796|0.26389\n43797|0.5\n43798|0.66667\n43799|0.68056\n43800|0.72222\n43801|0.59722\n43802|0.75\n43803|0.72222\n43804|0.41667\n43805|0.77778\n43806|0.69444\n43807|0.29167\n43808|0.625\n43809|0.5\n43810|0.5\n43811|0.5\n43812|0.52778\n43813|0.51389\n43814|0.66667\n43815|0.47222\n43816|0.44444\n43817|0.65278\n43818|0.625\n43819|0.80556\n43820|0.625\n43821|0.5\n43822|0.61111\n43823|0.5\n43824|0.61111\n43825|0.5\n43826|0.5\n43827|0.5\n43828|0.5\n43829|0.5\n43830|0.5\n43831|0.98611\n43832|0.77778\n43833|0.5\n43834|0.5\n43835|0.51389\n43836|0.51389\n43837|0.5\n43838|0.5\n43839|0.5\n43840|0.5\n43841|0.5\n43842|0.61111\n43843|0.72222\n43844|0.5\n43845|0.51389\n43846|0.81944\n43847|0.65278\n43848|0.65278\n43849|0.55556\n43850|0.59722\n43851|0.86111\n43852|0.41667\n43853|0.84722\n43854|0.69444\n43855|0.77778\n43856|0.30556\n43857|0.54167\n43858|0.81944\n43859|0.43056\n43860|0.77778\n43861|0.83333\n43862|0.59722\n43863|0.80556\n43864|0.68056\n43865|0.58333\n43866|0.72222\n43867|0.69444\n43868|0.73611\n43869|0.75\n43870|0.84722\n43871|0.73611\n43872|0.91667\n43873|0.61111\n43874|0.5\n43875|0.51389\n43876|0.5\n43877|0.5\n43878|0.51389\n43879|0.44444\n43880|0.26389\n43881|0.27778\n43882|0.56944\n43883|0.5\n43884|0.54167\n43885|0.5\n43886|0.5\n43887|0.5\n43888|0.5\n43889|0.5\n43890|0.5\n43891|0.5\n43892|0.5\n43893|0.5\n43894|0.5\n43895|0.5\n43896|0.55556\n43897|0.5\n43898|0.56944\n43899|0.51389\n43900|0.5\n43901|0.5\n43902|0.44444\n43903|0.51389\n43904|0.5\n43905|0.48611\n43906|0.47222\n43907|0.5\n43908|0.5\n43909|0.5\n43910|0.58333\n43911|0.5\n43912|0.5\n43913|0.61111\n43914|0.44444\n43915|0.5\n43916|0.47222\n43917|0.47222\n43918|0.93056\n43919|0.58333\n43920|0.56944\n43921|0.625\n43922|0.5\n43923|0.5\n43924|0.5\n43925|0.5\n43926|0.55556\n43927|0.5\n43928|0.59722\n43929|0.5\n43930|0.5\n43931|0.51389\n43932|0.5\n43933|0.44444\n43934|0.5\n43935|0.51389\n43936|0.5\n43937|0.5\n43938|0.5\n43939|0.58333\n43940|0.75\n43941|0.5\n43942|0.5\n43943|0.5\n43944|0.44444\n43945|0.5\n43946|0.5\n43947|0.5\n43948|0.70833\n43949|0.63889\n43950|0.72222\n43951|0.98611\n43952|0.44444\n43953|0.79167\n43954|0.70833\n43955|0.95833\n43956|0.54167\n43957|0.5\n43958|0.58333\n43959|0.55556\n43960|0.51389\n43961|0.5\n43962|0.5\n43963|0.55556\n43964|0.83333\n43965|0.73611\n43966|0.81944\n43967|0.84722\n43968|0.52778\n43969|0.33333\n43970|0.625\n43971|0.5\n43972|0.80556\n43973|0.83333\n43974|0.68056\n43975|0.88889\n43976|0.68056\n43977|0.61111\n43978|0.44444\n43979|0.75\n43980|0.77778\n43981|0.84722\n43982|0.70833\n43983|0.75\n43984|0.81944\n43985|0.81944\n43986|0.875\n43987|0.75\n43988|0.76389\n43989|0.72222\n43990|0.44444\n43991|0.875\n43992|0.79167\n43993|0.69444\n43994|0.84722\n43995|0.86111\n43996|0.69444\n43997|0.75\n43998|0.73611\n43999|0.625\n44000|0.75\n44001|0.69444\n44002|0.66667\n44003|0.72222\n44004|0.63889\n44005|0.63889\n44006|0.79167\n44007|0.79167\n44008|0.69444\n44009|0.61111\n44010|0.72222\n44011|0.80556\n44012|0.76389\n44013|0.81944\n44014|0.75\n44015|0.59722\n44016|0.45833\n44017|0.61111\n44018|0.66667\n44019|0.70833\n44020|0.75\n44021|0.58333\n44022|0.66667\n44023|0.69444\n44024|0.75\n44025|0.79167\n44026|0.77778\n44027|0.16667\n44028|0.83333\n44029|0.73611\n44030|0.88889\n44031|0.88889\n44032|0.84722\n44033|0.84722\n44034|0.88889\n44035|0.72222\n44036|0.73611\n44037|0.88889\n44038|0.70833\n44039|0.80556\n44040|0.45833\n44041|0.45833\n44042|0.72222\n44043|0.40278\n44044|0.58333\n44045|0.86111\n44046|0.91667\n44047|0.70833\n44048|0.72222\n44049|0.97222\n44050|0.47222\n44051|0.43056\n44052|0.41667\n44053|0.51389\n44054|0.73611\n44055|0.59722\n44056|0.5\n44057|0.38889\n44058|0.22222\n44059|0.38889\n44060|0.81944\n44061|0.76389\n44062|0.94444\n44063|0.875\n44064|0.75\n44065|0.90278\n44066|0.76389\n44067|0.84722\n44068|0.83333\n44069|0.76389\n44070|0.79167\n44071|0.43056\n44072|0.81944\n44073|0.77778\n44074|0.69444\n44075|0.75\n44076|0.61111\n44077|0.88889\n44078|0.625\n44079|0.59722\n44080|0.61111\n44081|0.38889\n44082|0.88889\n44083|0.77778\n44084|0.66667\n44085|0.93056\n44086|0.80556\n44087|0.86111\n44088|0.93056\n44089|0.86111\n44090|0.84722\n44091|0.83333\n44092|0.77778\n44093|0.73611\n44094|0.86111\n44095|0.76389\n44096|0.80556\n44097|0.76389\n44098|0.97222\n44099|0.80556\n44100|0.90278\n44101|0.77778\n44102|0.83333\n44103|0.65278\n44104|0.79167\n44105|0.77778\n44106|0.77778\n44107|0.66667\n44108|0.88889\n44109|0.91667\n44110|0.86111\n44111|0.93056\n44112|0.79167\n44113|0.83333\n44114|0.80556\n44115|0.86111\n44116|0.52778\n44117|0.61111\n44118|0.80556\n44119|0.70833\n44120|0.70833\n44121|0.79167\n44122|0.88889\n44123|0.79167\n44124|0.73611\n44125|0.79167\n44126|0.72222\n44127|0.79167\n44128|0.84722\n44129|0.72222\n44130|0.81944\n44131|0.90278\n44132|0.93056\n44133|0.93056\n44134|0.93056\n44135|0.88889\n44136|0.51389\n44137|0.69444\n44138|0.56944\n44139|0.86111\n44140|0.875\n44141|0.66667\n44142|0.625\n44143|0.69444\n44144|0.83333\n44145|0.51389\n44146|0.33333\n44147|0.48611\n44148|0.76389\n44149|0.69444\n44150|0.59722\n44151|0.73611\n44152|0.75\n44153|0.625\n44154|0.48611\n44155|0.69444\n44156|0.625\n44157|0.79167\n44158|0.69444\n44159|0.77778\n44160|0.72222\n44161|0.125\n44162|0.52778\n44163|0.52778\n44164|0.44444\n44165|0.52778\n44166|0.5\n44167|0.44444\n44168|0.68056\n44169|0.80556\n44170|0.59722\n44171|0.80556\n44172|0.95833\n44173|0.44444\n44174|0.69444\n44175|0.79167\n44176|0.68056\n44177|0.84722\n44178|0.81944\n44179|0.88889\n44180|0.76389\n44181|0.79167\n44182|0.75\n44183|0.76389\n44184|0.38889\n44185|0.51389\n44186|0.54167\n44187|0.59722\n44188|0.84722\n44189|0.625\n44190|0.81944\n44191|0.77778\n44192|0.73611\n44193|0.61111\n44194|0.30556\n44195|0.69444\n44196|0.76389\n44197|0.65278\n44198|0.69444\n44199|0.75\n44200|0.81944\n44201|0.70833\n44202|0.77778\n44203|0.80556\n44204|0.94444\n44205|0.79167\n44206|0.875\n44207|0.90278\n44208|0.76389\n44209|0.79167\n44210|0.80556\n44211|0.77778\n44212|0.81944\n44213|0.77778\n44214|0.81944\n44215|0.80556\n44216|0.81944\n44217|0.97222\n44218|0.91667\n44219|0.72222\n44220|0.72222\n44221|0.75\n44222|0.83333\n44223|0.72222\n44224|0.77778\n44225|0.73611\n44226|0.79167\n44227|0.81944\n44228|0.56944\n44229|0.55556\n44230|0.73611\n44231|0.75\n44232|0.76389\n44233|0.65278\n44234|0.69444\n44235|0.76389\n44236|0.79167\n44237|0.88889\n44238|0.88889\n44239|0.875\n44240|0.875\n44241|0.79167\n44242|0.70833\n44243|0.77778\n44244|0.66667\n44245|0.83333\n44246|0.73611\n44247|0.83333\n44248|0.68056\n44249|0.88889\n44250|0.66667\n44251|0.81944\n44252|0.72222\n44253|0.69444\n44254|0.84722\n44255|0.66667\n44256|0.76389\n44257|0.47222\n44258|0.81944\n44259|0.84722\n44260|0.75\n44261|0.79167\n44262|0.75\n44263|0.93056\n44264|0.63889\n44265|0.61111\n44266|0.68056\n44267|0.72222\n44268|0.51389\n44269|0.54167\n44270|0.80556\n44271|0.88889\n44272|0.86111\n44273|0.54167\n44274|0.51389\n44275|0.66667\n44276|0.83333\n44277|0.375\n44278|0.73611\n44279|0.91667\n44280|0.58333\n44281|0.61111\n44282|0.88889\n44283|0.5\n44284|0.48611\n44285|0.77778\n44286|0.65278\n44287|0.16667\n44288|0.22222\n44289|0.75\n44290|0.72222\n44291|0.72222\n44292|0.61111\n44293|0.83333\n44294|0.80556\n44295|0.79167\n44296|0.66667\n44297|0.75\n44298|0.77778\n44299|0.88889\n44300|0.80556\n44301|0.68056\n44302|0.84722\n44303|1\n44304|0.59722\n44305|0.76389\n44306|0.43056\n44307|0.41667\n44308|0.81944\n44309|0.80556\n44310|0.75\n44311|0.75\n44312|0.43056\n44313|0.81944\n44314|0.75\n44315|0.5\n44316|0.625\n44317|0.66667\n44318|0.69444\n44319|0.83333\n44320|0.69444\n44321|0.75\n44322|0.875\n44323|0.77778\n44324|0.59722\n44325|0.625\n44326|0.61111\n44327|0.58333\n44328|0.72222\n44329|0.75\n44330|0.75\n44331|0.84722\n44332|0.97222\n44333|0.40278\n44334|0.48611\n44335|0.34722\n44336|0.72222\n44337|0.70833\n44338|0.73611\n44339|0.66667\n44340|0.79167\n44341|0.86111\n44342|0.79167\n44343|0.73611\n44344|0.27778\n44345|0.51389\n44346|0.79167\n44347|0.88889\n44348|0.79167\n44349|0.5\n44350|0.5\n44351|0.79167\n44352|0.5\n44353|0.5\n44354|0.54167\n44355|0.51389\n44356|0.68056\n44357|0.63889\n44358|0.70833\n44359|0.5\n44360|0.5\n44361|0.5\n44362|0.5\n44363|0.79167\n44364|0.61111\n44365|0.75\n44366|0.63889\n44367|0.68056\n44368|0.61111\n44369|0.5\n44370|0.44444\n44371|0.5\n44372|0.5\n44373|0.5\n44374|0.38889\n44375|0.55556\n44376|0.61111\n44377|0.5\n44378|0.5\n44379|0.51389\n44380|0.5\n44381|0.5\n44382|0.41667\n44383|0.5\n44384|0.51389\n44385|0.5\n44386|0.44444\n44387|0.5\n44388|0.61111\n44389|0.55556\n44390|0.5\n44391|0.5\n44392|0.5\n44393|0.5\n44394|0.61111\n44395|0.73611\n44396|0.58333\n44397|0.56944\n44398|0.36111\n44399|0.44444\n44400|0.59722\n44401|0.68056\n44402|0.55556\n44403|0.875\n44404|0.58333\n44405|0.66667\n44406|0.76389\n44407|0.51389\n44408|0.5\n44409|0.79167\n44410|0.75\n44411|0.61111\n44412|0.63889\n44413|0.58333\n44414|0.48611\n44415|0.625\n44416|0.29167\n44417|0.31944\n44418|0.56944\n44419|0.90278\n44420|0.5\n44421|0.5\n44422|0.5\n44423|0.66667\n44424|0.55556\n44425|0.52778\n44426|0.5\n44427|0.41667\n44428|0.52778\n44429|0.59722\n44430|0.52778\n44431|0.52778\n44432|0.65278\n44433|0.51389\n44434|0.44444\n44435|0.38889\n44436|0.65278\n44437|0.5\n44438|0.51389\n44439|0.5\n44440|0.40278\n44441|0.41667\n44442|0.5\n44443|0.5\n44444|0.5\n44445|0.5\n44446|0.5\n44447|0.51389\n44448|0.83333\n44449|0.94444\n44450|0.51389\n44451|0.58333\n44452|0.76389\n44453|0.65278\n44454|0.61111\n44455|0.36111\n44456|0.36111\n44457|0.59722\n44458|0.44444\n44459|0.88889\n44460|0.75\n44461|0.83333\n44462|0.48611\n44463|0.52778\n44464|0.81944\n44465|0.75\n44466|0.79167\n44467|0.66667\n44468|0.45833\n44469|0.69444\n44470|0.68056\n44471|0.84722\n44472|0.86111\n44473|0.79167\n44474|0.73611\n44475|0.81944\n44476|0.90278\n44477|0.80556\n44478|0.65278\n44479|0.79167\n44480|0.76389\n44481|0.875\n44482|0.91667\n44483|0.81944\n44484|0.66667\n44485|0.76389\n44486|0.90278\n44487|0.77778\n44488|0.94444\n44489|0.70833\n44490|0.5\n44491|0.68056\n44492|0.88889\n44493|0.76389\n44494|0.72222\n44495|0.73611\n44496|0.80556\n44497|0.84722\n44498|0.91667\n44499|0.84722\n44500|0.72222\n44501|0.40278\n44502|0.66667\n44503|0.72222\n44504|0.73611\n44505|0.75\n44506|0.84722\n44507|0.69444\n44508|0.84722\n44509|0.91667\n44510|0.75\n44511|0.69444\n44512|0.84722\n44513|0.55556\n44514|0.75\n44515|0.73611\n44516|0.77778\n44517|0.625\n44518|0.81944\n44519|0.66667\n44520|0.625\n44521|0.84722\n44522|0.88889\n44523|0.51389\n44524|0.55556\n44525|0.63889\n44526|0.69444\n44527|0.69444\n44528|0.73611\n44529|0.68056\n44530|0.55556\n44531|0.72222\n44532|0.70833\n44533|0.66667\n44534|0.5\n44535|0.75\n44536|0.65278\n44537|0.66667\n44538|0.77778\n44539|0.84722\n44540|0.79167\n44541|0.5\n44542|0.5\n44543|0.5\n44544|0.55556\n44545|0.5\n44546|0.5\n44547|0.45833\n44548|0.27778\n44549|0.69444\n44550|0.5\n44551|0.5\n44552|0.5\n44553|0.72222\n44554|0.70833\n44555|0.77778\n44556|0.69444\n44557|0.5\n44558|0.625\n44559|0.5\n44560|0.5\n44561|0.5\n44562|0.5\n44563|0.5\n44564|0.5\n44565|0.55556\n44566|0.72222\n44567|0.5\n44568|0.83333\n44569|0.22222\n44570|0.54167\n44571|0.5\n44572|0.38889\n44573|0.27778\n44574|0.61111\n44575|0.70833\n44576|0.55556\n44577|0.73611\n44578|0.5\n44579|0.79167\n44580|0.66667\n44581|0.76389\n44582|0.76389\n44583|0.90278\n44584|0.54167\n44585|0.83333\n44586|0.51389\n44587|0.23611\n44588|0.34722\n44589|0.54167\n44590|0.41667\n44591|0.80556\n44592|0.80556\n44593|0.66667\n44594|0.77778\n44595|0.5\n44596|0.77778\n44597|0.58333\n44598|0.875\n44599|0.30556\n44600|0.33333\n44601|0.625\n44602|0.58333\n44603|0.52778\n44604|0.43056\n44605|0.68056\n44606|0.5\n44607|0.5\n44608|0.48611\n44609|0.51389\n44610|0.66667\n44611|0.83333\n44612|0.51389\n44613|0.5\n44614|0.79167\n44615|0.88889\n44616|0.75\n44617|0.84722\n44618|0.72222\n44619|0.5\n44620|0.75\n44621|0.70833\n44622|0.54167\n44623|0.51389\n44624|0.5\n44625|0.27778\n44626|0.5\n44627|0.41667\n44628|0.94444\n44629|0.91667\n44630|0.83333\n44631|0.81944\n44632|0.84722\n44633|0.83333\n44634|0.84722\n44635|0.93056\n44636|0.5\n44637|0.5\n44638|0.55556\n44639|0.36111\n44640|0.40278\n44641|0.38889\n44642|0.55556\n44643|0.11111\n44644|0.38889\n44645|0.5\n44646|0.5\n44647|0.61111\n44648|0.55556\n44649|0.5\n44650|0.77778\n44651|0.5\n44652|0.5\n44653|0.5\n44654|0.5\n44655|0.72222\n44656|0.51389\n44657|0.51389\n44658|0.61111\n44659|0.36111\n44660|0.69444\n44661|0.80556\n44662|0.5\n44663|0.5\n44664|0.44444\n44665|0.625\n44666|0.86111\n44667|0.88889\n44668|0.86111\n44669|0.84722\n44670|0.88889\n44671|0.72222\n44672|0.66667\n44673|0.5\n44674|0.59722\n44675|0.5\n44676|0.58333\n44677|0.72222\n44678|0.88889\n44679|0.83333\n44680|0.44444\n44681|0.38889\n44682|0.38889\n44683|0.56944\n44684|0.625\n44685|0.66667\n44686|0.47222\n44687|0.5\n44688|0.75\n44689|0.58333\n44690|0.55556\n44691|0.79167\n44692|0.80556\n44693|0.81944\n44694|0.84722\n44695|0.80556\n44696|0.5\n44697|0.5\n44698|0.73611\n44699|0.5\n44700|0.75\n44701|0.5\n44702|0.5\n44703|0.51389\n44704|0.5\n44705|0.5\n44706|0.51389\n44707|0.43056\n44708|0.61111\n44709|0.5\n44710|0.5\n44711|0.63889\n44712|0.5\n44713|0.5\n44714|0.52778\n44715|0.5\n44716|0.52778\n44717|0.5\n44718|0.55556\n44719|0.5\n44720|0.5\n44721|0.54167\n44722|0.55556\n44723|0.52778\n44724|0.65278\n44725|0.65278\n44726|0.75\n44727|0.45833\n44728|0.48611\n44729|0.51389\n44730|0.5\n44731|0.5\n44732|0.5\n44733|0.88889\n44734|0.34722\n44735|0.58333\n44736|0.66667\n44737|0.5\n44738|0.45833\n44739|0.5\n44740|0.54167\n44741|0.52778\n44742|0.70833\n44743|0.55556\n44744|0.59722\n44745|0.81944\n44746|0.69444\n44747|0.5\n44748|0.73611\n44749|0.83333\n44750|0.5\n44751|0.55556\n44752|0.51389\n44753|0.54167\n44754|0.79167\n44755|0.5\n44756|0.5\n44757|0.5\n44758|0.23611\n44759|0.51389\n44760|0.34722\n44761|0.63889\n44762|0.69444\n44763|0.73611\n44764|0.63889\n44765|0.90278\n44766|0.56944\n44767|0.5\n44768|0.5\n44769|0.5\n44770|0.29167\n44771|0.47222\n44772|0.86111\n44773|0.875\n44774|0.5\n44775|0.5\n44776|0.75\n44777|0.70833\n44778|0.69444\n44779|0.875\n44780|0.51389\n44781|0.72222\n44782|0.875\n44783|0.54167\n44784|0.66667\n44785|0.5\n44786|0.5\n44787|0.5\n44788|0.5\n44789|0.5\n44790|0.44444\n44791|0.51389\n44792|0.5\n44793|0.5\n44794|0.48611\n44795|0.88889\n44796|0.5\n44797|0.88889\n44798|0.51389\n44799|0.5\n44800|0.5\n44801|0.38889\n44802|0.51389\n44803|0.52778\n44804|0.44444\n44805|0.40278\n44806|0.52778\n44807|0.61111\n44808|0.66667\n44809|0.52778\n44810|0.5\n44811|0.54167\n44812|0.5\n44813|0.83333\n44814|0.5\n44815|0.69444\n44816|0.79167\n44817|0.5\n44818|0.69444\n44819|0.33333\n44820|0.23611\n44821|0.5\n44822|0.73611\n44823|0.16667\n44824|0.83333\n44825|0.69444\n44826|0.80556\n44827|0.76389\n44828|0.81944\n44829|0.48611\n44830|0.54167\n44831|0.5\n44832|0.5\n44833|0.76389\n44834|0.73611\n44835|0.73611\n44836|0.5\n44837|0.5\n44838|0.70833\n44839|0.55556\n44840|0.80556\n44841|0.5\n44842|0.5\n44843|0.51389\n44844|0.94444\n44845|0.5\n44846|0.55556\n44847|0.65278\n44848|0.5\n44849|0.70833\n44850|0.55556\n44851|0.55556\n44852|0.79167\n44853|0.875\n44854|0.5\n44855|0.5\n44856|0.51389\n44857|0.61111\n44858|0.52778\n44859|0.5\n44860|0.5\n44861|0.5\n44862|0.69444\n44863|0.5\n44864|0.625\n44865|0.5\n44866|0.51389\n44867|0.5\n44868|0.48611\n44869|0.63889\n44870|0.72222\n44871|0.5\n44872|0.5\n44873|0.5\n44874|0.63889\n44875|0.66667\n44876|0.63889\n44877|0.80556\n44878|0.59722\n44879|0.43056\n44880|0.36111\n44881|0.44444\n44882|0.45833\n44883|0.48611\n44884|0.52778\n44885|0.5\n44886|0.5\n44887|0.5\n44888|0.5\n44889|0.68056\n44890|0.5\n44891|0.65278\n44892|0.68056\n44893|0.94444\n44894|0.5\n44895|0.5\n44896|0.5\n44897|0.5\n44898|0.56944\n44899|0.55556\n44900|0.5\n44901|0.88889\n44902|0.77778\n44903|0.43056\n44904|0.5\n44905|0.5\n44906|0.5\n44907|0.5\n44908|0.61111\n44909|0.30556\n44910|0.34722\n44911|0.33333\n44912|0.70833\n44913|0.73611\n44914|0.5\n44915|0.86111\n44916|0.44444\n44917|0.5\n44918|0.5\n44919|0.5\n44920|0.47222\n44921|0.44444\n44922|0.51389\n44923|0.65278\n44924|0.5\n44925|0.5\n44926|0.73611\n44927|0.63889\n44928|0.79167\n44929|0.61111\n44930|0.5\n44931|0.5\n44932|0.5\n44933|0.125\n44934|0.29167\n44935|0.38889\n44936|0.43056\n44937|0.48611\n44938|0.5\n44939|0.44444\n44940|0.5\n44941|0.5\n44942|0.5\n44943|0.5\n44944|0.55556\n44945|0.66667\n44946|0.5\n44947|0.5\n44948|0.47222\n44949|0.5\n44950|0.65278\n44951|0.5\n44952|0.58333\n44953|0.5\n44954|0.5\n44955|0.51389\n44956|0.58333\n44957|0.5\n44958|0.5\n44959|0.66667\n44960|0.66667\n44961|0.45833\n44962|0.61111\n44963|0.5\n44964|0.5\n44965|0.66667\n44966|0.5\n44967|0.5\n44968|0.5\n44969|0.70833\n44970|0.65278\n44971|0.36111\n44972|0.55556\n44973|0.63889\n44974|0.625\n44975|0.68056\n44976|0.52778\n44977|0.41667\n44978|0.5\n44979|0.40278\n44980|0.5\n44981|0.5\n44982|0.55556\n44983|0.5\n44984|0.69444\n44985|0.5\n44986|0.875\n44987|0.41667\n44988|0.61111\n44989|0.55556\n44990|0.44444\n44991|0.5\n44992|0.5\n44993|0.5\n44994|0.5\n44995|0.58333\n44996|0.72222\n44997|0.625\n44998|0.5\n44999|0.45833\n45000|0.55556\n45001|0.41667\n45002|0.51389\n45003|0.80556\n45004|0.5\n45005|0.5\n45006|0.47222\n45007|0.5\n45008|0.66667\n45009|0.88889\n45010|0.5\n45011|0.91667\n45012|0.90278\n45013|0.83333\n45014|0.79167\n45015|0.84722\n45016|0.76389\n45017|0.5\n45018|0.70833\n45019|0.5\n45020|0.51389\n45021|0.5\n45022|0.5\n45023|0.5\n45024|0.76389\n45025|0.52778\n45026|0.5\n45027|0.52778\n45028|0.44444\n45029|0.69444\n45030|0.5\n45031|0.84722\n45032|0.70833\n45033|0.56944\n45034|0.66667\n45035|0.55556\n45036|0.73611\n45037|0.5\n45038|0.5\n45039|0.5\n45040|0.5\n45041|0.5\n45042|0.55556\n45043|0.31944\n45044|0.5\n45045|0.5\n45046|0.55556\n45047|0.43056\n45048|0.72222\n45049|0.52778\n45050|0.25\n45051|0.41667\n45052|0.66667\n45053|0.52778\n45054|0.72222\n45055|0.38889\n45056|0.68056\n45057|0.40278\n45058|0.70833\n45059|0.5\n45060|0.5\n45061|0.51389\n45062|0.72222\n45063|0.68056\n45064|0.55556\n45065|0.72222\n45066|0.625\n45067|0.83333\n45068|0.66667\n45069|0.51389\n45070|0.55556\n45071|0.5\n45072|0.88889\n45073|0.77778\n45074|0.73611\n45075|0.91667\n45076|0.94444\n45077|0.38889\n45078|0.58333\n45079|0.56944\n45080|0.70833\n45081|0.51389\n45082|0.73611\n45083|0.76389\n45084|0.5\n45085|0.5\n45086|0.5\n45087|0.44444\n45088|0.48611\n45089|0.51389\n45090|0.5\n45091|0.70833\n45092|0.58333\n45093|0.59722\n45094|0.5\n45095|0.55556\n45096|0.56944\n45097|0.72222\n45098|0.5\n45099|0.77778\n45100|0.5\n45101|0.51389\n45102|0.5\n45103|0.5\n45104|0.81944\n45105|0.5\n45106|0.5\n45107|0.5\n45108|0.66667\n45109|0.63889\n45110|0.72222\n45111|0.63889\n45112|0.5\n45113|0.52778\n45114|0.55556\n45115|0.70833\n45116|0.93056\n45117|0.91667\n45118|0.98611\n45119|0.84722\n45120|0.70833\n45121|1\n45122|0.5\n45123|0.5\n45124|0.48611\n45125|0.5\n45126|0.625\n45127|0.66667\n45128|0.70833\n45129|0.68056\n45130|0.41667\n45131|0.55556\n45132|0.44444\n45133|0.5\n45134|0.79167\n45135|0.75\n45136|0.83333\n45137|0.73611\n45138|0.5\n45139|0.5\n45140|0.5\n45141|0.5\n45142|0.59722\n45143|0.5\n45144|0.40278\n45145|0.52778\n45146|0.45833\n45147|0.52778\n45148|0.83333\n45149|0.79167\n45150|0.75\n45151|0.5\n45152|0.59722\n45153|0.5\n45154|0.68056\n45155|0.47222\n45156|0.55556\n45157|0.63889\n45158|0.51389\n45159|0.5\n45160|0.51389\n45161|0.79167\n45162|0.55556\n45163|0.59722\n45164|0.5\n45165|0.5\n45166|0.44444\n45167|0.5\n45168|0.63889\n45169|0.5\n45170|0.5\n45171|0.75\n45172|0.72222\n45173|0.69444\n45174|0.77778\n45175|0.73611\n45176|0.45833\n45177|0.66667\n45178|0.44444\n45179|0.76389\n45180|0.44444\n45181|0.76389\n45182|0.52778\n45183|0.55556\n45184|0.625\n45185|0.48611\n45186|0.52778\n45187|0.38889\n45188|0.44444\n45189|0.45833\n45190|0.61111\n45191|0.23611\n45192|0.625\n45193|0.79167\n45194|0.73611\n45195|0.80556\n45196|0.81944\n45197|0.76389\n45198|0.68056\n45199|0.5\n45200|0.76389\n45201|0.80556\n45202|0.86111\n45203|0.90278\n45204|0.72222\n45205|0.875\n45206|0.5\n45207|0.65278\n45208|0.91667\n45209|0.40278\n45210|0.79167\n45211|0.5\n45212|0.63889\n45213|0.56944\n45214|0.5\n45215|0.79167\n45216|0.45833\n45217|0.88889\n45218|0.63889\n45219|0.79167\n45220|0.68056\n45221|0.72222\n45222|0.73611\n45223|0.72222\n45224|0.58333\n45225|0.5\n45226|0.5\n45227|0.5\n45228|0.54167\n45229|0.5\n45230|0.81944\n45231|0.5\n45232|0.83333\n45233|0.94444\n45234|0.76389\n45235|0.44444\n45236|0.5\n45237|0.5\n45238|0.51389\n45239|0.61111\n45240|0.58333\n45241|1\n45242|0.5\n45243|0.875\n45244|0.88889\n45245|0.5\n45246|0.61111\n45247|0.5\n45248|0.73611\n45249|0.77778\n45250|0.5\n45251|0.55556\n45252|0.77778\n45253|0.77778\n45254|0.68056\n45255|0.63889\n45256|0.72222\n45257|0.625\n45258|0.73611\n45259|0.5\n45260|0.5\n45261|0.5\n45262|0.61111\n45263|0.5\n45264|0.5\n45265|0.79167\n45266|0.5\n45267|0.48611\n45268|0.5\n45269|0.5\n45270|0.5\n45271|0.5\n45272|0.61111\n45273|0.5\n45274|0.44444\n45275|0.625\n45276|0.63889\n45277|0.90278\n45278|0.5\n45279|0.63889\n45280|0.55556\n45281|0.73611\n45282|0.69444\n45283|0.83333\n45284|0.27778\n45285|0.23611\n45286|0.26389\n45287|0.23611\n45288|0.5\n45289|0.5\n45290|0.41667\n45291|0.5\n45292|0.52778\n45293|0.375\n45294|0.43056\n45295|0.5\n45296|0.5\n45297|0.5\n45298|0.47222\n45299|0.44444\n45300|0.43056\n45301|0.5\n45302|0.5\n45303|0.55556\n45304|0.55556\n45305|0.52778\n45306|0.77778\n45307|0.5\n45308|0.56944\n45309|0.48611\n45310|0.44444\n45311|0.5\n45312|0.5\n45313|0.5\n45314|0.56944\n45315|0.625\n45316|0.76389\n45317|0.5\n45318|0.66667\n45319|0.70833\n45320|0.55556\n45321|0.5\n45322|0.5\n45323|0.77778\n45324|0.55556\n45325|0.66667\n45326|0.72222\n45327|0.84722\n45328|0.44444\n45329|0.80556\n45330|0.51389\n45331|0.5\n45332|0.77778\n45333|0.66667\n45334|0.5\n45335|0.79167\n45336|0.73611\n45337|0.88889\n45338|0.94444\n45339|0.66667\n45340|0.61111\n45341|0.5\n45342|0.81944\n45343|0.625\n45344|0.5\n45345|0.5\n45346|0.5\n45347|0.69444\n45348|0.5\n45349|0.5\n45350|0.5\n45351|0.5\n45352|0.33333\n45353|0.51389\n45354|0.69444\n45355|0.5\n45356|0.75\n45357|0.5\n45358|0.5\n45359|0.5\n45360|0.59722\n45361|0.5\n45362|0.66667\n45363|0.5\n45364|0.51389\n45365|0.5\n45366|0.51389\n45367|0.51389\n45368|0.54167\n45369|0.5\n45370|0.5\n45371|0.5\n45372|0.5\n45373|0.51389\n45374|0.76389\n45375|0.84722\n45376|0.72222\n45377|0.72222\n45378|0.81944\n45379|0.55556\n45380|0.5\n45381|0.625\n45382|0.83333\n45383|0.75\n45384|0.5\n45385|0.5\n45386|0.5\n45387|0.73611\n45388|0.69444\n45389|0.81944\n45390|0.93056\n45391|0.91667\n45392|0.80556\n45393|0.73611\n45394|0.81944\n45395|0.68056\n45396|0.5\n45397|0.75\n45398|0.55556\n45399|0.86111\n45400|0.875\n45401|0.84722\n45402|0.97222\n45403|0.69444\n45404|0.47222\n45405|0.5\n45406|0.5\n45407|0.47222\n45408|0.5\n45409|0.5\n45410|0.51389\n45411|0.61111\n45412|0.51389\n45413|0.59722\n45414|0.86111\n45415|0.51389\n45416|0.5\n45417|0.5\n45418|0.51389\n45419|0.5\n45420|0.83333\n45421|0.38889\n45422|0.54167\n45423|0.5\n45424|0.52778\n45425|0.5\n45426|0.51389\n45427|0.51389\n45428|0.80556\n45429|0.5\n45430|0.22222\n45431|0.63889\n45432|0.33333\n45433|0.68056\n45434|0.75\n45435|0.80556\n45436|0.84722\n45437|0.5\n45438|0.5\n45439|0.75\n45440|0.5\n45441|0.5\n45442|0.41667\n45443|0.5\n45444|0.5\n45445|0.66667\n45446|0.52778\n45447|0.72222\n45448|0.68056\n45449|0.68056\n45450|0.80556\n45451|0.52778\n45452|0.58333\n45453|0.70833\n45454|0.5\n45455|0.76389\n45456|0.55556\n45457|0.625\n45458|0.33333\n45459|0.75\n45460|0.45833\n45461|0.59722\n45462|0.5\n45463|0.5\n45464|0.5\n45465|0.51389\n45466|0.48611\n45467|0.5\n45468|0.625\n45469|0.5\n45470|0.48611\n45471|0.5\n45472|0.5\n45473|0.38889\n45474|0.52778\n45475|0.5\n45476|0.38889\n45477|0.54167\n45478|0.41667\n45479|0.43056\n45480|0.5\n45481|0.51389\n45482|0.51389\n45483|0.36111\n45484|0.47222\n45485|0.5\n45486|0.56944\n45487|0.51389\n45488|0.58333\n45489|0.58333\n45490|0.61111\n45491|0.55556\n45492|0.55556\n45493|0.51389\n45494|0.83333\n45495|0.63889\n45496|0.65278\n45497|0.73611\n45498|0.5\n45499|0.54167\n45500|0.58333\n45501|0.52778\n45502|0.73611\n45503|0.625\n45504|0.69444\n45505|0.68056\n45506|0.73611\n45507|0.59722\n45508|0.66667\n45509|0.51389\n45510|0.56944\n45511|0.61111\n45512|0.51389\n45513|0.5\n45514|0.44444\n45515|0.81944\n45516|0.44444\n45517|0.38889\n45518|0.5\n45519|0.47222\n45520|0.40278\n45521|0.51389\n45522|0.84722\n45523|0.52778\n45524|0.5\n45525|0.30556\n45526|0.80556\n45527|0.59722\n45528|0.51389\n45529|0.5\n45530|0.5\n45531|0.72222\n45532|0.5\n45533|0.5\n45534|0.5\n45535|0.44444\n45536|0.48611\n45537|0.625\n45538|0.47222\n45539|0.79167\n45540|0.61111\n45541|0.58333\n45542|0.72222\n45543|0.61111\n45544|0.54167\n45545|0.72222\n45546|0.5\n45547|0.51389\n45548|0.58333\n45549|0.70833\n45550|0.5\n45551|0.5\n45552|0.51389\n45553|0.69444\n45554|0.63889\n45555|0.55556\n45556|0.22222\n45557|0.51389\n45558|0.68056\n45559|0.30556\n45560|0.23611\n45561|0.30556\n45562|0.38889\n45563|0.47222\n45564|0.84722\n45565|0.55556\n45566|0.65278\n45567|0.86111\n45568|0.91667\n45569|0.875\n45570|0.68056\n45571|0.73611\n45572|0.40278\n45573|0.52778\n45574|0.36111\n45575|0.88889\n45576|0.5\n45577|0.43056\n45578|0.375\n45579|0.66667\n45580|0.56944\n45581|0.5\n45582|0.93056\n45583|0.76389\n45584|0.83333\n45585|0.51389\n45586|0.61111\n45587|0.61111\n45588|0.76389\n45589|0.79167\n45590|0.93056\n45591|0.66667\n45592|0.63889\n45593|0.84722\n45594|0.88889\n45595|0.875\n45596|0.55556\n45597|0.625\n45598|0.5\n45599|0.15278\n45600|0.5\n45601|0.55556\n45602|0.5\n45603|0.47222\n45604|0.72222\n45605|0.5\n45606|0.72222\n45607|0.5\n45608|0.33333\n45609|0.18056\n45610|0.83333\n45611|0.54167\n45612|0.61111\n45613|0.47222\n45614|0.33333\n45615|0.65278\n45616|0.5\n45617|0.40278\n45618|0.91667\n45619|1\n45620|0.68056\n45621|0.63889\n45622|0.66667\n45623|0.69444\n45624|0.59722\n45625|0.56944\n45626|0.65278\n45627|0.81944\n45628|0.63889\n45629|0.65278\n45630|0.40278\n45631|0.48611\n45632|0.47222\n45633|0.79167\n45634|0.68056\n45635|0.84722\n45636|0.63889\n45637|0.91667\n45638|0.5\n45639|0.5\n45640|0.51389\n45641|0.38889\n45642|0.75\n45643|0.56944\n45644|0.58333\n45645|0.70833\n45646|0.375\n45647|0.27778\n45648|0.76389\n45649|0.66667\n45650|0.63889\n45651|0.72222\n45652|0.69444\n45653|0.88889\n45654|0.61111\n45655|0.27778\n45656|0.61111\n45657|0.70833\n45658|0.41667\n45659|0.68056\n45660|0.5\n45661|0.63889\n45662|0.5\n45663|0.5\n45664|0.52778\n45665|0.51389\n45666|0.5\n45667|0.65278\n45668|0.69444\n45669|0.63889\n45670|0.79167\n45671|0.72222\n45672|0.86111\n45673|0.79167\n45674|0.84722\n45675|0.70833\n45676|0.56944\n45677|0.56944\n45678|0.5\n45679|0.44444\n45680|0.5\n45681|0.5\n45682|0.61111\n45683|0.5\n45684|0.44444\n45685|0.86111\n45686|0.61111\n45687|0.5\n45688|0.5\n45689|0.65278\n45690|0.41667\n45691|0.33333\n45692|0.45833\n45693|0.66667\n45694|0.59722\n45695|0.59722\n45696|0.5\n45697|0.625\n45698|0.625\n45699|0.77778\n45700|0.27778\n45701|0.88889\n45702|0.75\n45703|0.55556\n45704|0.58333\n45705|0.70833\n45706|0.63889\n45707|0.44444\n45708|0.069444\n45709|0.11111\n45710|0.63889\n45711|0.63889\n45712|0.63889\n45713|0.80556\n45714|0.80556\n45715|0.77778\n45716|0.79167\n45717|0.625\n45718|0.75\n45719|0.69444\n45720|0.27778\n45721|0.375\n45722|0.51389\n45723|0.47222\n45724|0.69444\n45725|0.61111\n45726|0.70833\n45727|0.98611\n45728|0.72222\n45729|0.54167\n45730|0.70833\n45731|0.56944\n45732|0.875\n45733|0.65278\n45734|0.61111\n45735|0.66667\n45736|0.79167\n45737|0.23611\n45738|0.31944\n45739|0.31944\n45740|0.48611\n45741|0.47222\n45742|0.18056\n45743|0.63889\n45744|0.23611\n45745|0.36111\n45746|0.66667\n45747|0.51389\n45748|0.73611\n45749|0.36111\n45750|0.84722\n45751|0.55556\n45752|0.22222\n45753|0.33333\n45754|0.36111\n45755|0.38889\n45756|0.34722\n45757|0.66667\n45758|0.43056\n45759|0.66667\n45760|0.16667\n45761|0.36111\n45762|0.44444\n45763|0.83333\n45764|0.80556\n45765|0.58333\n45766|0.34722\n45767|0.19444\n45768|0.47222\n45769|0.68056\n45770|0.66667\n45771|0.83333\n45772|0.77778\n45773|0.72222\n45774|0.72222\n45775|0.54167\n45776|0.72222\n45777|0.83333\n45778|0.66667\n45779|0.72222\n45780|0.83333\n45781|0.79167\n45782|0.73611\n45783|0.79167\n45784|0.72222\n45785|0.34722\n45786|0.19444\n45787|0.36111\n45788|0.72222\n45789|0.66667\n45790|0.65278\n45791|0.33333\n45792|0.16667\n45793|0.30556\n45794|0.55556\n45795|0.56944\n45796|0.80556\n45797|0.83333\n45798|0.76389\n45799|0.88889\n45800|0.73611\n45801|0.80556\n45802|0.65278\n45803|0.625\n45804|0.83333\n45805|0.56944\n45806|0.55556\n45807|0.75\n45808|0.83333\n45809|0.79167\n45810|0.65278\n45811|0.72222\n45812|0.76389\n45813|0.90278\n45814|0.91667\n45815|0.79167\n45816|0.91667\n45817|0.59722\n45818|0.44444\n45819|0.80556\n45820|0.54167\n45821|0.75\n45822|0.72222\n45823|0.98611\n45824|0.81944\n45825|0.77778\n45826|0.69444\n45827|0.40278\n45828|0.79167\n45829|0.48611\n45830|0.55556\n45831|0.86111\n45832|0.875\n45833|0.93056\n45834|0.75\n45835|0.72222\n45836|0.76389\n45837|0.34722\n45838|0.54167\n45839|0.45833\n45840|0.47222\n45841|0.47222\n45842|0.5\n45843|0.43056\n45844|0.5\n45845|0.5\n45846|0.5\n45847|0.5\n45848|0.52778\n45849|0.875\n45850|0.66667\n45851|0.55556\n45852|0.5\n45853|0.5\n45854|0.5\n45855|0.45833\n45856|0.5\n45857|0.5\n45858|0.70833\n45859|0.56944\n45860|0.5\n45861|0.70833\n45862|0.27778\n45863|0.5\n45864|0.5\n45865|0.51389\n45866|0.5\n45867|0.66667\n45868|0.54167\n45869|0.5\n45870|0.51389\n45871|0.55556\n45872|0.47222\n45873|0.38889\n45874|0.5\n45875|0.5\n45876|0.66667\n45877|0.5\n45878|0.5\n45879|0.5\n45880|0.5\n45881|0.5\n45882|0.5\n45883|0.79167\n45884|0.38889\n45885|0.61111\n45886|0.5\n45887|0.58333\n45888|1\n45889|0.51389\n45890|0.5\n45891|0.5\n45892|0.44444\n45893|0.5\n45894|0.5\n45895|0.5\n45896|0.52778\n45897|0.5\n45898|0.5\n45899|0.47222\n45900|0.5\n45901|0.80556\n45902|0.5\n45903|0.51389\n45904|0.5\n45905|0.65278\n45906|0.69444\n45907|0.875\n45908|0.65278\n45909|0.5\n45910|0.5\n45911|0.5\n45912|0.55556\n45913|0.5\n45914|0.51389\n45915|0.5\n45916|0.77778\n45917|0.875\n45918|0.79167\n45919|0.90278\n45920|0.875\n45921|0.93056\n45922|0.88889\n45923|0.79167\n45924|0.45833\n45925|0.625\n45926|0.63889\n45927|0.5\n45928|0.5\n45929|0.27778\n45930|0.55556\n45931|0.5\n45932|0.51389\n45933|0.47222\n45934|0.5\n45935|0.5\n45936|0.70833\n45937|0.51389\n45938|0.84722\n45939|0.625\n45940|0.45833\n45941|0.625\n45942|0.69444\n45943|0.70833\n45944|0.5\n45945|0.55556\n45946|0.72222\n45947|0.45833\n45948|0.61111\n45949|0.5\n45950|0.16667\n45951|0.5\n45952|0.51389\n45953|0.51389\n45954|0.77778\n45955|0.5\n45956|0.5\n45957|0.5\n45958|0.65278\n45959|0.83333\n45960|0.5\n45961|0.5\n45962|0.5\n45963|0.86111\n45964|0.5\n45965|0.51389\n45966|0.5\n45967|0.5\n45968|0.5\n45969|0.5\n45970|0.5\n45971|0.61111\n45972|0.38889\n45973|0.83333\n45974|0.86111\n45975|0.5\n45976|0.45833\n45977|0.56944\n45978|0.5\n45979|0.55556\n45980|0.20833\n45981|0.27778\n45982|0.51389\n45983|0.55556\n45984|0.52778\n45985|0.5\n45986|0.66667\n45987|0.88889\n45988|0.81944\n45989|0.5\n45990|0.5\n45991|0.5\n45992|0.5\n45993|0.45833\n45994|0.70833\n45995|0.5\n45996|0.5\n45997|0.61111\n45998|0.5\n45999|0.73611\n46000|0.5\n46001|0.55556\n46002|0.51389\n46003|0.55556\n46004|0.34722\n46005|0.5\n46006|0.51389\n46007|0.5\n46008|0.875\n46009|0.875\n46010|0.875\n46011|0.875\n46012|0.94444\n46013|0.5\n46014|0.55556\n46015|0.5\n46016|0.61111\n46017|0.5\n46018|0.38889\n46019|0.55556\n46020|0.55556\n46021|0.73611\n46022|0.625\n46023|0.86111\n46024|0.625\n46025|0.72222\n46026|0.52778\n46027|0.56944\n46028|0.55556\n46029|0.5\n46030|0.54167\n46031|0.55556\n46032|0.70833\n46033|0.51389\n46034|0.44444\n46035|0.54167\n46036|0.5\n46037|0.5\n46038|0.5\n46039|0.51389\n46040|0.5\n46041|0.5\n46042|0.5\n46043|0.375\n46044|0.63889\n46045|0.81944\n46046|0.76389\n46047|0.88889\n46048|0.80556\n46049|0.72222\n46050|0.83333\n46051|0.5\n46052|0.5\n46053|0.5\n46054|0.75\n46055|0.83333\n46056|0.79167\n46057|0.75\n46058|0.55556\n46059|0.5\n46060|0.72222\n46061|0.75\n46062|0.5\n46063|0.5\n46064|0.55556\n46065|0.76389\n46066|0.5\n46067|0.77778\n46068|0.66667\n46069|0.83333\n46070|0.86111\n46071|0.73611\n46072|0.83333\n46073|0.44444\n46074|0.44444\n46075|0.52778\n46076|0.72222\n46077|0.5\n46078|0.5\n46079|0.65278\n46080|0.69444\n46081|0.66667\n46082|0.5\n46083|0.5\n46084|0.5\n46085|0.5\n46086|0.5\n46087|0.84722\n46088|0.5\n46089|0.44444\n46090|0.5\n46091|0.54167\n46092|0.5\n46093|0.5\n46094|0.5\n46095|0.48611\n46096|0.68056\n46097|0.44444\n46098|0.5\n46099|0.5\n46100|0.55556\n46101|0.5\n46102|0.79167\n46103|0.52778\n46104|0.5\n46105|0.51389\n46106|0.69444\n46107|0.61111\n46108|0.5\n46109|0.83333\n46110|0.84722\n46111|0.5\n46112|0.5\n46113|0.625\n46114|0.61111\n46115|0.73611\n46116|0.86111\n46117|0.30556\n46118|0.34722\n46119|0.75\n46120|0.52778\n46121|0.43056\n46122|0.51389\n46123|0.52778\n46124|0.51389\n46125|0.5\n46126|0.66667\n46127|0.55556\n46128|0.5\n46129|0.5\n46130|0.83333\n46131|0.73611\n46132|0.51389\n46133|0.72222\n46134|0.51389\n46135|0.86111\n46136|0.54167\n46137|0.5\n46138|0.5\n46139|0.72222\n46140|1\n46141|0.5\n46142|0.5\n46143|0.375\n46144|0.52778\n46145|0.5\n46146|0.5\n46147|0.5\n46148|0.70833\n46149|0.55556\n46150|0.51389\n46151|0.5\n46152|0.5\n46153|0.5\n46154|0.5\n46155|0.54167\n46156|0.5\n46157|0.44444\n46158|0.51389\n46159|0.58333\n46160|0.55556\n46161|0.83333\n46162|0.5\n46163|0.73611\n46164|0.51389\n46165|0.51389\n46166|0.5\n46167|0.5\n46168|0.61111\n46169|0.66667\n46170|0.5\n46171|0.5\n46172|0.83333\n46173|0.55556\n46174|0.5\n46175|0.5\n46176|0.5\n46177|0.5\n46178|0.5\n46179|0.63889\n46180|0.59722\n46181|0.56944\n46182|0.5\n46183|0.34722\n46184|0.56944\n46185|0.84722\n46186|0.70833\n46187|0.5\n46188|0.5\n46189|0.5\n46190|0.5\n46191|0.79167\n46192|0.51389\n46193|0.5\n46194|0.5\n46195|0.43056\n46196|0.94444\n46197|0.5\n46198|0.5\n46199|0.5\n46200|0.61111\n46201|0.5\n46202|0.5\n46203|0.69444\n46204|0.79167\n46205|0.79167\n46206|0.375\n46207|0.40278\n46208|0.55556\n46209|0.65278\n46210|0.68056\n46211|0.58333\n46212|0.76389\n46213|0.61111\n46214|0.61111\n46215|0.68056\n46216|0.70833\n46217|0.80556\n46218|0.81944\n46219|0.72222\n46220|0.81944\n46221|0.38889\n46222|0.5\n46223|0.5\n46224|0.5\n46225|0.52778\n46226|0.70833\n46227|0.5\n46228|0.5\n46229|0.81944\n46230|0.79167\n46231|0.77778\n46232|0.84722\n46233|0.52778\n46234|0.5\n46235|0.51389\n46236|0.61111\n46237|0.5\n46238|0.5\n46239|0.5\n46240|0.52778\n46241|0.5\n46242|0.58333\n46243|0.5\n46244|0.51389\n46245|0.5\n46246|0.68056\n46247|0.5\n46248|0.5\n46249|0.51389\n46250|0.52778\n46251|0.70833\n46252|0.73611\n46253|0.75\n46254|0.81944\n46255|0.5\n46256|0.72917\n46257|0.73611\n46258|0.73611\n46259|0.80556\n46260|0.70833\n46261|0.55556\n46262|0.83333\n46263|0.98611\n46264|0.5\n46265|0.69444\n46266|0.63889\n46267|0.625\n46268|0.5\n46269|0.66667\n46270|0.44444\n46271|0.55556\n46272|0.69444\n46273|0.69444\n46274|0.5\n46275|0.5\n46276|0.80556\n46277|0.5\n46278|0.5\n46279|0.61111\n46280|0.48611\n46281|0.72222\n46282|0.83333\n46283|0.5\n46284|0.47222\n46285|0.51389\n46286|0.5\n46287|0.5\n46288|0.72222\n46289|0.48611\n46290|0.5\n46291|0.5\n46292|0.58333\n46293|0.5\n46294|0.5\n46295|0.5\n46296|0.61111\n46297|0.38889\n46298|0.61111\n46299|0.66667\n46300|0.5\n46301|0.54167\n46302|0.5\n46303|0.75\n46304|0.55556\n46305|0.47222\n46306|0.66667\n46307|0.5\n46308|0.5\n46309|0.55556\n46310|0.72222\n46311|0.66667\n46312|0.75\n46313|0.47222\n46314|0.5\n46315|0.5\n46316|0.69444\n46317|0.48611\n46318|0.5\n46319|0.5\n46320|0.5\n46321|0.5\n46322|0.5\n46323|0.56944\n46324|0.59722\n46325|0.63889\n46326|0.5\n46327|0.51389\n46328|0.55556\n46329|0.55556\n46330|0.48611\n46331|0.77778\n46332|0.79167\n46333|0.51389\n46334|0.44444\n46335|0.59722\n46336|0.5\n46337|0.55556\n46338|0.30556\n46339|0.34722\n46340|0.43056\n46341|0.88889\n46342|0.875\n46343|0.41667\n46344|0.41667\n46345|0.375\n46346|0.47222\n46347|0.68056\n46348|0.56944\n46349|0.41667\n46350|0.5\n46351|0.38889\n46352|0.36111\n46353|0.45833\n46354|0.65278\n46355|0.5\n46356|0.56944\n46357|0.73611\n46358|0.58333\n46359|0.80556\n46360|0.5\n46361|0.76389\n46362|0.45833\n46363|0.38889\n46364|0.31944\n46365|0.36111\n46366|0.38889\n46367|0.69444\n46368|0.80556\n46369|0.375\n46370|0.63889\n46371|0.375\n46372|0.61111\n46373|0.77778\n46374|0.73611\n46375|0.75\n46376|0.75\n46377|0.875\n46378|0.72222\n46379|0.69444\n46380|0.375\n46381|0.5\n46382|0.68056\n46383|0.79167\n46384|0.68056\n46385|0.68056\n46386|0.72222\n46387|0.93056\n46388|0.51389\n46389|0.83333\n46390|0.5\n46391|0.5\n46392|0.5\n46393|0.5\n46394|0.51389\n46395|0.51389\n46396|0.55556\n46397|0.5\n46398|0.5\n46399|0.83333\n46400|0.5\n46401|0.59722\n46402|0.5\n46403|0.66667\n46404|0.51389\n46405|0.625\n46406|0.61111\n46407|0.63889\n46408|0.54167\n46409|0.31944\n46410|0.29167\n46411|0.25\n46412|0.30556\n46413|0.22222\n46414|0.30556\n46415|0.51389\n46416|0.76389\n46417|0.79167\n46418|0.75\n46419|0.81944\n46420|0.77778\n46421|0.88889\n46422|0.55556\n46423|0.90278\n46424|0.70833\n46425|0.75\n46426|0.94444\n46427|0.81944\n46428|0.59722\n46429|0.83333\n46430|0.86111\n46431|0.625\n46432|0.79167\n46433|0.97222\n46434|0.51389\n46435|0.625\n46436|0.52778\n46437|0.72222\n46438|0.56944\n46439|0.52778\n46440|0.5\n46441|0.45833\n46442|0.45833\n46443|0.5\n46444|0.5\n46445|0.5\n46446|0.5\n46447|0.5\n46448|0.83333\n46449|0.83333\n46450|0.86111\n46451|0.80556\n46452|0.77778\n46453|0.88889\n46454|0.77778\n46455|0.77778\n46456|0.81944\n46457|0.95833\n46458|0.5\n46459|0.51389\n46460|0.83333\n46461|0.5\n46462|0.75\n46463|0.77778\n46464|0.5\n46465|0.5\n46466|0.59722\n46467|0.84722\n46468|0.80556\n46469|0.73611\n46470|0.88889\n46471|0.44444\n46472|0.45833\n46473|0.5\n46474|0.77778\n46475|0.47222\n46476|0.5\n46477|0.59722\n46478|0.5\n46479|0.44444\n46480|0.54167\n46481|0.55556\n46482|0.25\n46483|0.77778\n46484|0.55556\n46485|0.51389\n46486|0.77778\n46487|0.54167\n46488|0.5\n46489|0.5\n46490|0.5\n46491|0.75\n46492|0.84722\n46493|0.5\n46494|0.83333\n46495|0.5\n46496|0.5\n46497|0.65278\n46498|0.77778\n46499|0.875\n46500|0.58333\n46501|1\n46502|0.5\n46503|0.5\n46504|0.5\n46505|0.5\n46506|0.54167\n46507|0.5\n46508|0.5\n46509|0.73611\n46510|0.52778\n46511|0.61111\n46512|0.66667\n46513|0.69444\n46514|0.51389\n46515|0.51389\n46516|0.47222\n46517|0.51389\n46518|0.61111\n46519|0.5\n46520|0.44444\n46521|0.45833\n46522|0.51389\n46523|0.59722\n46524|0.76389\n46525|0.63889\n46526|0.83333\n46527|0.61111\n46528|0.5\n46529|0.5\n46530|0.56944\n46531|0.75\n46532|0.80556\n46533|0.73611\n46534|0.95833\n46535|0.61111\n46536|0.59722\n46537|0.59722\n46538|0.72222\n46539|0.66667\n46540|0.5\n46541|0.5\n46542|0.55556\n46543|0.52778\n46544|0.56944\n46545|0.59722\n46546|0.41667\n46547|0.47222\n46548|0.91667\n46549|0.40278\n46550|0.29167\n46551|0.36111\n46552|0.22222\n46553|0.63889\n46554|0.5\n46555|0.66667\n46556|0.76389\n46557|0.66667\n46558|0.5\n46559|0.54167\n46560|0.5\n46561|0.73611\n46562|0.70833\n46563|0.625\n46564|0.5\n46565|0.31944\n46566|0.66667\n46567|0.5\n46568|0.38889\n46569|0.5\n46570|0.5\n46571|0.44444\n46572|0.43056\n46573|0.44444\n46574|0.51389\n46575|0.68056\n46576|0.55556\n46577|0.44444\n46578|0.5\n46579|0.40278\n46580|0.29167\n46581|0.69444\n46582|0.69444\n46583|0.5\n46584|0.41667\n46585|0.5\n46586|0.5\n46587|0.5\n46588|0.88889\n46589|0.75\n46590|0.5\n46591|0.5\n46592|0.55556\n46593|0.75\n46594|0.5\n46595|0.51389\n46596|0.51389\n46597|0.5\n46598|0.5\n46599|0.38889\n46600|0.5\n46601|0.5\n46602|0.76389\n46603|0.55556\n46604|0.61111\n46605|0.54167\n46606|0.61111\n46607|0.76389\n46608|0.76389\n46609|0.5\n46610|0.5\n46611|0.5\n46612|0.51389\n46613|0.77778\n46614|0.59722\n46615|0.75\n46616|0.63889\n46617|0.5\n46618|0.875\n46619|0.5\n46620|0.5\n46621|0.5\n46622|0.47222\n46623|0.77778\n46624|0.51389\n46625|0.55556\n46626|0.5\n46627|0.5\n46628|0.5\n46629|0.51389\n46630|0.5\n46631|0.5\n46632|0.75\n46633|0.91667\n46634|0.5\n46635|0.51389\n46636|0.79167\n46637|0.5\n46638|0.51389\n46639|0.40278\n46640|0.45833\n46641|0.5\n46642|0.5\n46643|0.51389\n46644|0.5\n46645|0.88889\n46646|0.90278\n46647|0.79167\n46648|0.90278\n46649|0.83333\n46650|0.73611\n46651|0.51389\n46652|0.81944\n46653|0.5\n46654|0.5\n46655|0.51389\n46656|0.5\n46657|0.81944\n46658|0.5\n46659|0.5\n46660|0.5\n46661|0.5\n46662|0.38889\n46663|0.27778\n46664|0.33333\n46665|0.66667\n46666|0.68056\n46667|0.5\n46668|0.5\n46669|0.5\n46670|0.72222\n46671|0.5\n46672|0.56944\n46673|0.40278\n46674|0.5\n46675|0.5\n46676|0.70833\n46677|0.5\n46678|0.54167\n46679|0.34722\n46680|0.33333\n46681|0.47222\n46682|0.33333\n46683|0.26389\n46684|0.5\n46685|0.5\n46686|0.48611\n46687|0.80556\n46688|0.5\n46689|0.5\n46690|0.5\n46691|0.51389\n46692|0.68056\n46693|0.55556\n46694|0.63889\n46695|0.5\n46696|0.5\n46697|0.5\n46698|0.5\n46699|0.75\n46700|0.69444\n46701|0.45833\n46702|0.51389\n46703|0.52778\n46704|0.51389\n46705|0.625\n46706|0.51389\n46707|0.56944\n46708|0.55556\n46709|0.58333\n46710|0.47222\n46711|0.90278\n46712|0.5\n46713|0.83333\n46714|0.5\n46715|0.5\n46716|0.41667\n46717|0.5\n46718|0.44444\n46719|0.40278\n46720|0.5\n46721|0.44444\n46722|0.375\n46723|0.54167\n46724|0.58333\n46725|0.47222\n46726|0.61111\n46727|0.70833\n46728|0.72222\n46729|0.5\n46730|0.54167\n46731|0.5\n46732|0.51389\n46733|0.56944\n46734|0.45833\n46735|0.61111\n46736|0.5\n46737|0.55556\n46738|0.52778\n46739|0.41667\n46740|0.80556\n46741|0.75\n46742|0.54167\n46743|0.61111\n46744|0.44444\n46745|0.73611\n46746|0.80556\n46747|0.81944\n46748|0.88889\n46749|0.77778\n46750|0.76389\n46751|0.79167\n46752|0.5\n46753|0.5\n46754|0.51389\n46755|0.5\n46756|0.68056\n46757|0.55556\n46758|0.5\n46759|0.44444\n46760|0.45833\n46761|0.48611\n46762|0.63889\n46763|0.84722\n46764|0.5\n46765|0.55556\n46766|0.5\n46767|0.54167\n46768|0.5\n46769|0.5\n46770|0.5\n46771|0.70833\n46772|0.625\n46773|0.63889\n46774|0.72222\n46775|0.79167\n46776|0.77778\n46777|0.77778\n46778|0.86111\n46779|0.51389\n46780|0.65278\n46781|0.76389\n46782|0.68056\n46783|0.55556\n46784|0.5\n46785|0.5\n46786|0.83333\n46787|0.5\n46788|0.5\n46789|0.625\n46790|0.5\n46791|0.55556\n46792|0.75\n46793|0.86111\n46794|0.55556\n46795|0.5\n46796|0.5\n46797|0.5\n46798|0.5\n46799|0.5\n46800|0.5\n46801|0.5\n46802|0.54167\n46803|0.59722\n46804|0.44444\n46805|0.5\n46806|0.5\n46807|0.625\n46808|0.81944\n46809|0.52778\n46810|0.069444\n46811|0.5\n46812|0.98611\n46813|0.5\n46814|0.76389\n46815|0.73611\n46816|0.75\n46817|0.76389\n46818|0.72222\n46819|0.83333\n46820|0.84722\n46821|0.5\n46822|0.5\n46823|0.76389\n46824|0.5\n46825|0.44444\n46826|0.43056\n46827|0.45833\n46828|0.77778\n46829|0.875\n46830|0.41667\n46831|0.5\n46832|0.59722\n46833|0.76389\n46834|0.77778\n46835|0.45833\n46836|0.55556\n46837|0.55556\n46838|0.55556\n46839|0.77778\n46840|0.65278\n46841|0.5\n46842|0.40278\n46843|0.38889\n46844|0.52778\n46845|0.70833\n46846|0.26389\n46847|0.23611\n46848|0.51389\n46849|0.72222\n46850|0.55556\n46851|0.76389\n46852|0.72222\n46853|0.55556\n46854|0.55556\n46855|0.5\n46856|0.73611\n46857|0.5\n46858|0.52778\n46859|0.5\n46860|0.51389\n46861|0.5\n46862|0.5\n46863|0.5\n46864|0.5\n46865|0.73611\n46866|0.5\n46867|0.56944\n46868|0.77778\n46869|0.80556\n46870|0.88889\n46871|0.66667\n46872|0.51389\n46873|0.5\n46874|0.55556\n46875|0.5\n46876|0.5\n46877|0.5\n46878|0.5\n46879|0.5\n46880|0.5\n46881|0.5\n46882|0.5\n46883|0.5\n46884|0.75\n46885|0.51389\n46886|0.52778\n46887|0.61111\n46888|0.77778\n46889|0.63889\n46890|0.77778\n46891|0.77778\n46892|0.90278\n46893|0.83333\n46894|0.58333\n46895|0.54167\n46896|0.75\n46897|0.68056\n46898|0.5\n46899|0.51389\n46900|0.66667\n46901|0.5\n46902|0.69444\n46903|0.5\n46904|0.77778\n46905|0.5\n46906|0.5\n46907|0.47222\n46908|0.5\n46909|0.5\n46910|0.79167\n46911|0.51389\n46912|0.55556\n46913|0.55556\n46914|0.77778\n46915|0.90278\n46916|0.58333\n46917|0.63889\n46918|0.66667\n46919|0.69444\n46920|0.63889\n46921|0.55556\n46922|0.5\n46923|0.83333\n46924|0.68056\n46925|0.72222\n46926|0.80556\n46927|0.77778\n46928|0.54167\n46929|0.66667\n46930|0.38889\n46931|0.83333\n46932|0.75\n46933|0.88889\n46934|0.5\n46935|0.70833\n46936|0.54167\n46937|0.54167\n46938|0.5\n46939|0.5\n46940|0.5\n46941|0.5\n46942|0.45833\n46943|0.27778\n46944|0.5\n46945|0.51389\n46946|0.375\n46947|0.5\n46948|0.72222\n46949|0.5\n46950|0.5\n46951|0.40278\n46952|0.51389\n46953|0.54167\n46954|0.66667\n46955|0.70833\n46956|0.40278\n46957|0.5\n46958|0.5\n46959|0.5\n46960|0.68056\n46961|0.5\n46962|0.5\n46963|0.5\n46964|0.5\n46965|0.625\n46966|0.5\n46967|0.5\n46968|0.51389\n46969|0.63889\n46970|0.63889\n46971|0.77778\n46972|0.83333\n46973|0.5\n46974|0.44444\n46975|0.52778\n46976|0.25\n46977|0.45833\n46978|0.54167\n46979|0.63889\n46980|0.80556\n46981|0.83333\n46982|0.80556\n46983|0.70833\n46984|0.5\n46985|0.44444\n46986|0.36111\n46987|0.5\n46988|0.68056\n46989|0.76389\n46990|0.5\n46991|0.5\n46992|0.81944\n46993|0.54167\n46994|0.68056\n46995|0.5\n46996|0.80556\n46997|0.68056\n46998|0.63889\n46999|0.77778\n47000|0.5\n47001|0.47222\n47002|0.70833\n47003|0.5\n47004|0.44444\n47005|0.54167\n47006|0.5\n47007|0.77778\n47008|0.5\n47009|0.77778\n47010|0.55556\n47011|0.88889\n47012|0.51389\n47013|0.86111\n47014|0.5\n47015|0.63889\n47016|0.83333\n47017|0.69444\n47018|0.5\n47019|0.66667\n47020|0.51389\n47021|0.61111\n47022|0.72222\n47023|0.72222\n47024|0.55556\n47025|0.79167\n47026|0.70833\n47027|0.72222\n47028|0.77778\n47029|0.70833\n47030|0.27778\n47031|0.27778\n47032|0.41667\n47033|0.75\n47034|0.68056\n47035|0.84722\n47036|0.83333\n47037|0.55556\n47038|0.58333\n47039|0.84722\n47040|0.59722\n47041|0.73611\n47042|0.72222\n47043|0.79167\n47044|0.54167\n47045|0.48611\n47046|0.44444\n47047|0.55556\n47048|0.56944\n47049|0.72222\n47050|0.69444\n47051|0.84722\n47052|0.91667\n47053|0.625\n47054|0.83333\n47055|0.69444\n47056|0.75\n47057|0.80556\n47058|0.77778\n47059|0.097222\n47060|0.22222\n47061|0.30556\n47062|0.54167\n47063|0.59722\n47064|0.83333\n47065|0.80556\n47066|0.69444\n47067|0.51389\n47068|0.81944\n47069|0.79167\n47070|0.81944\n47071|0.83333\n47072|0.80556\n47073|0.69444\n47074|0.88889\n47075|0.80556\n47076|0.83333\n47077|0.83333\n47078|0.80556\n47079|0.83333\n47080|0.97222\n47081|0.38889\n47082|0.40278\n47083|0.79167\n47084|0.83333\n47085|0.25\n47086|0.51389\n47087|0.31944\n47088|0.625\n47089|0.66667\n47090|0.88889\n47091|0.70833\n47092|0.77778\n47093|0.625\n47094|0.84722\n47095|0.69444\n47096|0.72222\n47097|0.61111\n47098|0.5\n47099|0.61111\n47100|0.56944\n47101|0.54167\n47102|0.70833\n47103|0.58333\n47104|0.625\n47105|0.66667\n47106|0.79167\n47107|0.77778\n47108|0.81944\n47109|0.93056\n47110|0.83333\n47111|0.73611\n47112|0.88889\n47113|0.80556\n47114|0.55556\n47115|0.51389\n47116|0.68056\n47117|0.61111\n47118|0.625\n47119|0.65278\n47120|0.66667\n47121|0.75\n47122|0.88889\n47123|0.75\n47124|0.83333\n47125|0.70833\n47126|0.47222\n47127|0.76389\n47128|0.55556\n47129|0.93056\n47130|0.5\n47131|0.58333\n47132|0.48611\n47133|0.44444\n47134|0.83333\n47135|0.875\n47136|0.5\n47137|0.58333\n47138|0.81944\n47139|0.66667\n47140|0.625\n47141|0.48611\n47142|0.36111\n47143|0.47222\n47144|0.54167\n47145|0.5\n47146|0.72222\n47147|0.83333\n47148|0.88889\n47149|0.88889\n47150|0.88889\n47151|0.5\n47152|0.45833\n47153|0.44444\n47154|0.5\n47155|0.61111\n47156|0.61111\n47157|0.5\n47158|0.38889\n47159|0.44444\n47160|0.77778\n47161|0.81944\n47162|0.88889\n47163|0.5\n47164|0.45833\n47165|0.47222\n47166|0.72222\n47167|0.76389\n47168|0.79167\n47169|0.79167\n47170|0.52778\n47171|0.18056\n47172|0.25\n47173|0.41667\n47174|0.65278\n47175|0.72222\n47176|0.70833\n47177|0.88889\n47178|0.76389\n47179|0.38889\n47180|0.31944\n47181|0.29167\n47182|0.36111\n47183|0.69444\n47184|0.59722\n47185|0.88889\n47186|0.5\n47187|0.66667\n47188|0.55556\n47189|0.61111\n47190|0.38889\n47191|0.36111\n47192|0.52778\n47193|0.72222\n47194|0.76389\n47195|0.69444\n47196|0.75\n47197|0.81944\n47198|0.83333\n47199|0.65278\n47200|0.73611\n47201|0.66667\n47202|0.72222\n47203|1\n47204|0.5\n47205|0.81944\n47206|0.875\n47207|0.72222\n47208|0.76389\n47209|0.77778\n47210|0.5\n47211|0.79167\n47212|0.5\n47213|0.5\n47214|0.59722\n47215|0.72222\n47216|0.69444\n47217|0.5\n47218|0.625\n47219|0.72222\n47220|0.66667\n47221|0.5\n47222|0.77778\n47223|0.76389\n47224|0.65278\n47225|0.63889\n47226|0.83333\n47227|0.56944\n47228|0.75\n47229|0.77778\n47230|0.66667\n47231|0.83333\n47232|0.79167\n47233|0.58333\n47234|0.55556\n47235|0.66667\n47236|0.61111\n47237|0.77778\n47238|0.66667\n47239|0.68056\n47240|0.22222\n47241|0.26389\n47242|0.36111\n47243|0.58333\n47244|0.43056\n47245|0.38889\n47246|0.83333\n47247|0.5\n47248|0.61111\n47249|0.625\n47250|0.88889\n47251|0.66667\n47252|0.80556\n47253|0.69444\n47254|0.66667\n47255|1\n47256|0.5\n47257|0.44444\n47258|0.69444\n47259|0.55556\n47260|0.55556\n47261|0.69444\n47262|0.77778\n47263|0.66667\n47264|0.5\n47265|0.72222\n47266|0.55556\n47267|0.77778\n47268|0.90278\n47269|0.625\n47270|0.625\n47271|0.75\n47272|0.70833\n47273|0.73611\n47274|0.55556\n47275|0.80556\n47276|0.5\n47277|0.76389\n47278|0.59722\n47279|0.77778\n47280|0.48611\n47281|0.625\n47282|0.61111\n47283|0.75\n47284|0.77778\n47285|0.69444\n47286|0.90278\n47287|0.66667\n47288|0.80556\n47289|0.61111\n47290|0.52778\n47291|0.59722\n47292|0.73611\n47293|0.5\n47294|0.76389\n47295|0.75\n47296|0.61111\n47297|0.73611\n47298|0.80556\n47299|0.61111\n47300|0.25\n47301|0.47222\n47302|0.55556\n47303|0.69444\n47304|0.90278\n47305|0.61111\n47306|0.66667\n47307|0.83333\n47308|0.80556\n47309|0.75\n47310|0.47222\n47311|0.59722\n47312|0.41667\n47313|0.52778\n47314|0.70833\n47315|0.59722\n47316|0.61111\n47317|0.81944\n47318|0.27778\n47319|0.31944\n47320|0.375\n47321|0.625\n47322|0.65278\n47323|0.68056\n47324|0.72222\n47325|0.125\n47326|0.19444\n47327|0.31944\n47328|0.625\n47329|0.69444\n47330|0.5\n47331|0.55556\n47332|0.5\n47333|0.58333\n47334|0.52778\n47335|0.25\n47336|0.5\n47337|0.55556\n47338|0.68056\n47339|0.54167\n47340|0.27778\n47341|0.38889\n47342|0.91667\n47343|0.84722\n47344|0.47222\n47345|0.59722\n47346|0.79167\n47347|0.59722\n47348|0.77778\n47349|0.86111\n47350|0.81944\n47351|0.22222\n47352|0.58333\n47353|0.5\n47354|0.86111\n47355|0.54167\n47356|0.61111\n47357|0.5\n47358|0.33333\n47359|0.5\n47360|0.81944\n47361|0.68056\n47362|0.76389\n47363|0.52778\n47364|0.77778\n47365|0.83333\n47366|0.86111\n47367|0.88889\n47368|0.77778\n47369|0.45833\n47370|0.61111\n47371|0.76389\n47372|0.625\n47373|0.76389\n47374|0.81944\n47375|0.94444\n47376|0.66667\n47377|0.5\n47378|0.63889\n47379|0.5\n47380|0.25\n47381|0.22222\n47382|0.38889\n47383|0.63889\n47384|0.84722\n47385|0.5\n47386|0.72222\n47387|0.73611\n47388|0.61111\n47389|0.55556\n47390|0.72222\n47391|0.56944\n47392|0.51389\n47393|0.69444\n47394|0.77778\n47395|0.88889\n47396|0.80556\n47397|0.5\n47398|0.79167\n47399|0.5\n47400|0.45833\n47401|0.33333\n47402|0.70833\n47403|0.76389\n47404|0.69444\n47405|0.55556\n47406|0.5\n47407|0.5\n47408|0.56944\n47409|0.5\n47410|0.61111\n47411|0.56944\n47412|0.84722\n47413|0.68056\n47414|0.5\n47415|0.69444\n47416|0.33333\n47417|0.65278\n47418|0.94444\n47419|0.20833\n47420|0.22222\n47421|0.31944\n47422|0.15278\n47423|0.29167\n47424|0.5\n47425|0.75\n47426|0.5\n47427|0.5\n47428|0.5\n47429|0.55556\n47430|0.69444\n47431|0.44444\n47432|0.5\n47433|0.5\n47434|0.5\n47435|0.61111\n47436|0.5\n47437|0.56944\n47438|0.69444\n47439|0.51389\n47440|0.5\n47441|0.5\n47442|0.22222\n47443|0.5\n47444|0.44444\n47445|0.5\n47446|0.5\n47447|0.5\n47448|0.5\n47449|0.31944\n47450|0.76389\n47451|0.5\n47452|0.22222\n47453|0.81944\n47454|0.61111\n47455|0.95833\n47456|0.90278\n47457|0.81944\n47458|0.5\n47459|0.5\n47460|0.55556\n47461|0.55556\n47462|0.66667\n47463|0.51389\n47464|0.5\n47465|0.5\n47466|0.65278\n47467|0.5\n47468|0.79167\n47469|0.66667\n47470|0.69444\n47471|0.5\n47472|0.5\n47473|0.45833\n47474|0.5\n47475|0.68056\n47476|0.51389\n47477|0.5\n47478|0.58333\n47479|0.48611\n47480|0.73611\n47481|0.81944\n47482|0.73611\n47483|0.97222\n47484|0.77778\n47485|0.5\n47486|0.5\n47487|0.54167\n47488|0.5\n47489|0.48611\n47490|0.61111\n47491|0.68056\n47492|0.75\n47493|0.59722\n47494|0.88889\n47495|0.93056\n47496|0.5\n47497|0.48611\n47498|0.5\n47499|0.5\n47500|0.5\n47501|0.69444\n47502|0.27778\n47503|0.44444\n47504|0.68056\n47505|0.54167\n47506|0.63889\n47507|0.41667\n47508|0.41667\n47509|0.38889\n47510|0.34722\n47511|0.52778\n47512|0.61111\n47513|0.81944\n47514|0.48611\n47515|0.94444\n47516|0.66667\n47517|0.86111\n47518|0.56944\n47519|0.70833\n47520|0.5\n47521|0.5\n47522|0.51389\n47523|0.5\n47524|0.52778\n47525|0.45833\n47526|0.81944\n47527|0.61111\n47528|0.58333\n47529|0.76389\n47530|0.66667\n47531|0.83333\n47532|0.77778\n47533|0.5\n47534|0.47222\n47535|0.5\n47536|0.52778\n47537|0.5\n47538|0.41667\n47539|0.70833\n47540|0.76389\n47541|0.76389\n47542|0.66667\n47543|0.5\n47544|0.5\n47545|0.91667\n47546|0.5\n47547|0.5\n47548|0.45833\n47549|0.5\n47550|0.5\n47551|0.61111\n47552|0.59722\n47553|0.72222\n47554|0.65278\n47555|0.75\n47556|0.88889\n47557|0.5\n47558|0.5\n47559|0.5\n47560|0.55556\n47561|0.44444\n47562|0.5\n47563|0.56944\n47564|0.29167\n47565|0.38889\n47566|0.59722\n47567|0.84722\n47568|0.44444\n47569|0.55556\n47570|0.68056\n47571|0.56944\n47572|0.5\n47573|0.5\n47574|0.88889\n47575|0.72222\n47576|0.80556\n47577|0.72222\n47578|0.80556\n47579|0.5\n47580|0.72222\n47581|0.58333\n47582|0.70833\n47583|0.83333\n47584|0.77778\n47585|0.48611\n47586|0.44444\n47587|0.48611\n47588|0.69444\n47589|0.77778\n47590|0.44444\n47591|0.51389\n47592|0.66667\n47593|0.80556\n47594|0.61111\n47595|0.44444\n47596|0.75\n47597|0.77778\n47598|0.72222\n47599|0.59722\n47600|0.69444\n47601|0.56944\n47602|0.26389\n47603|0.72222\n47604|0.45833\n47605|0.61111\n47606|0.63889\n47607|0.375\n47608|0.79167\n47609|0.5\n47610|0.44444\n47611|0.36111\n47612|0.72222\n47613|0.41667\n47614|0.70833\n47615|0.43056\n47616|0.88889\n47617|0.27778\n47618|0.66667\n47619|0.55556\n47620|0.43056\n47621|0.44444\n47622|0.70833\n47623|0.66667\n47624|0.75\n47625|0.38889\n47626|0.70833\n47627|0.51389\n47628|0.31944\n47629|0.30556\n47630|0.69444\n47631|0.5\n47632|0.51389\n47633|0.44444\n47634|0.5\n47635|0.52778\n47636|0.77778\n47637|0.875\n47638|0.70833\n47639|0.80556\n47640|0.76389\n47641|0.61111\n47642|0.5\n47643|0.5\n47644|0.51389\n47645|0.80556\n47646|0.68056\n47647|0.5\n47648|0.83333\n47649|0.44444\n47650|0.81944\n47651|0.5\n47652|0.72222\n47653|0.65278\n47654|0.75\n47655|0.55556\n47656|0.83333\n47657|0.5\n47658|0.5\n47659|0.81944\n47660|0.93056\n47661|0.73611\n47662|0.83333\n47663|0.66667\n47664|0.45833\n47665|0.75\n47666|0.79167\n47667|0.55556\n47668|0.5\n47669|0.5\n47670|0.5\n47671|0.55556\n47672|0.55556\n47673|0.5\n47674|0.34722\n47675|0.5\n47676|0.75\n47677|0.68056\n47678|0.86111\n47679|0.75\n47680|0.66667\n47681|0.48611\n47682|0.45833\n47683|0.66667\n47684|0.59722\n47685|0.5\n47686|0.69444\n47687|0.81944\n47688|0.81944\n47689|0.5\n47690|0.5\n47691|0.59722\n47692|0.88889\n47693|0.65278\n47694|1\n47695|0.83333\n47696|0.5\n47697|0.5\n47698|0.5\n47699|0.5\n47700|0.75\n47701|0.43056\n47702|0.33333\n47703|0.59722\n47704|0.5\n47705|0.65278\n47706|0.5\n47707|0.5\n47708|0.5\n47709|0.5\n47710|0.625\n47711|0.73611\n47712|0.66667\n47713|0.68056\n47714|0.75\n47715|0.80556\n47716|0.5\n47717|0.5\n47718|0.5\n47719|0.72222\n47720|0.875\n47721|0.77778\n47722|0.5\n47723|0.5\n47724|0.5\n47725|0.5\n47726|0.5\n47727|0.61111\n47728|0.30556\n47729|0.27778\n47730|0.27778\n47731|0.34722\n47732|0.83333\n47733|0.81944\n47734|0.23611\n47735|0.41667\n47736|0.16667\n47737|0.30556\n47738|0.38889\n47739|0.47222\n47740|0.70833\n47741|0.48611\n47742|0.51389\n47743|0.55556\n47744|0.5\n47745|0.55556\n47746|0.5\n47747|0.875\n47748|0.5\n47749|0.5\n47750|0.38889\n47751|0.5\n47752|0.5\n47753|0.61111\n47754|0.48611\n47755|0.625\n47756|0.625\n47757|0.5\n47758|0.51389\n47759|0.58333\n47760|0.43056\n47761|0.5\n47762|0.51389\n47763|0.55556\n47764|0.48611\n47765|0.5\n47766|0.55556\n47767|0.83333\n47768|0.94444\n47769|0.51389\n47770|0.5\n47771|0.23611\n47772|0.44444\n47773|0.79167\n47774|0.86111\n47775|0.44444\n47776|0.51389\n47777|0.54167\n47778|0.41667\n47779|0.5\n47780|0.5\n47781|0.44444\n47782|0.52778\n47783|0.51389\n47784|0.80556\n47785|0.51389\n47786|0.5\n47787|0.5\n47788|0.44444\n47789|0.81944\n47790|0.875\n47791|0.5\n47792|0.44444\n47793|0.54167\n47794|0.75\n47795|0.5\n47796|0.5\n47797|0.55556\n47798|0.52778\n47799|0.45833\n47800|0.5\n47801|0.43056\n47802|0.48611\n47803|0.38889\n47804|0.54167\n47805|0.5\n47806|0.65278\n47807|0.54167\n47808|0.5\n47809|0.43056\n47810|0.29167\n47811|0.5\n47812|0.29167\n47813|0.069444\n47814|0.63889\n47815|0.84722\n47816|0.76389\n47817|0.66667\n47818|0.38889\n47819|0.51389\n47820|0.84722\n47821|0.52778\n47822|0.5\n47823|0.63889\n47824|0.72222\n47825|0.68056\n47826|0.70833\n47827|0.80556\n47828|0.61111\n47829|0.5\n47830|0.30556\n47831|0.33333\n47832|0.625\n47833|0.86111\n47834|0.70833\n47835|0.72222\n47836|0.68056\n47837|0.81944\n47838|0.72222\n47839|0.91667\n47840|0.97222\n47841|0.90278\n47842|0.93056\n47843|0.79167\n47844|0.625\n47845|0.68056\n47846|0.5\n47847|0.54167\n47848|0.63889\n47849|0.66667\n47850|0.55556\n47851|0.69444\n47852|0.77778\n47853|0.69444\n47854|0.81944\n47855|0.77778\n47856|0.5\n47857|0.61111\n47858|0.65278\n47859|0.69444\n47860|0.77778\n47861|0.5\n47862|0.63889\n47863|0.56944\n47864|0.5\n47865|0.65278\n47866|0.26389\n47867|0.36111\n47868|0.51389\n47869|0.5\n47870|0.51389\n47871|0.5\n47872|0.73611\n47873|0.5\n47874|0.73611\n47875|0.70833\n47876|0.66667\n47877|0.90278\n47878|0.75\n47879|0.5\n47880|0.5\n47881|0.625\n47882|0.73611\n47883|0.77778\n47884|0.72222\n47885|0.77778\n47886|0.73611\n47887|0.68056\n47888|0.76389\n47889|0.70833\n47890|0.66667\n47891|0.75\n47892|0.59722\n47893|0.88889\n47894|0.86111\n47895|0.51389\n47896|0.55556\n47897|0.56944\n47898|0.51389\n47899|0.51389\n47900|0.51389\n47901|0.68056\n47902|0.22222\n47903|0.26389\n47904|0.5\n47905|0.5\n47906|0.5\n47907|0.47222\n47908|0.75\n47909|0.63889\n47910|0.83333\n47911|0.72222\n47912|0.63889\n47913|0.38889\n47914|0.5\n47915|0.56944\n47916|0.041667\n47917|0.65278\n47918|0.44444\n47919|0.5\n47920|0.73611\n47921|0.61111\n47922|0.58333\n47923|0.5\n47924|0.66667\n47925|0.55556\n47926|0.77778\n47927|0.44444\n47928|0.75\n47929|0.66667\n47930|0.63889\n47931|0.44444\n47932|0.625\n47933|0.52778\n47934|0.61111\n47935|0.5\n47936|0.61111\n47937|0.52778\n47938|0.38889\n47939|0.55556\n47940|0.56944\n47941|0.5\n47942|0.5\n47943|0.58333\n47944|0.61111\n47945|0.625\n47946|0.76389\n47947|0.73611\n47948|0.66667\n47949|0.73611\n47950|0.66667\n47951|0.48611\n47952|0.625\n47953|0.44444\n47954|0.41667\n47955|0.5\n47956|0.86111\n47957|0.75\n47958|0.5\n47959|0.54167\n47960|0.56944\n47961|0.73611\n47962|0.5\n47963|0.66667\n47964|0.66667\n47965|0.59722\n47966|0.63889\n47967|0.51389\n47968|0.77778\n47969|0.77778\n47970|0.5\n47971|0.5\n47972|0.44444\n47973|0.5\n47974|0.51389\n47975|0.5\n47976|0.40278\n47977|0.55556\n47978|0.72222\n47979|0.5\n47980|0.69444\n47981|0.65278\n47982|0.625\n47983|0.45833\n47984|0.5\n47985|0.13889\n47986|0.54167\n47987|0.66667\n47988|0.58333\n47989|0.69444\n47990|0.70833\n47991|0.86111\n47992|0.33333\n47993|0.33333\n47994|0.22222\n47995|0.47222\n47996|0.52778\n47997|0.51389\n47998|0.66667\n47999|0.51389\n48000|0.56944\n48001|0.94444\n48002|0.80556\n48003|0.5\n48004|0.80556\n48005|0.79167\n48006|0.55556\n48007|0.54167\n48008|0.70833\n48009|0.79167\n48010|0.86111\n48011|0.80556\n48012|0.73611\n48013|0.75\n48014|0.625\n48015|0.84722\n48016|0.80556\n48017|0.69444\n48018|0.61111\n48019|0.5\n48020|0.65278\n48021|0.59722\n48022|0.5\n48023|0.51389\n48024|0.5\n48025|0.47222\n48026|0.625\n48027|0.59722\n48028|0.51389\n48029|0.55556\n48030|0.5\n48031|0.44444\n48032|0.59722\n48033|0.5\n48034|0.5\n48035|0.55556\n48036|0.76389\n48037|0.875\n48038|0.81944\n48039|0.83333\n48040|0.34722\n48041|0.63889\n48042|0.77778\n48043|0.52778\n48044|0.83333\n48045|0.73611\n48046|0.80556\n48047|0.55556\n48048|0.75\n48049|0.625\n48050|0.55556\n48051|0.66667\n48052|0.77778\n48053|0.59722\n48054|0.75\n48055|0.77778\n48056|0.86111\n48057|0.47222\n48058|0.72222\n48059|0.76389\n48060|0.5\n48061|0.54167\n48062|0.5\n48063|0.47222\n48064|0.58333\n48065|0.48611\n48066|0.29167\n48067|0.15278\n48068|0.84722\n48069|0.77778\n48070|0.72222\n48071|0.77778\n48072|0.77778\n48073|0.72222\n48074|0.79167\n48075|0.73611\n48076|0.84722\n48077|0.79167\n48078|0.80556\n48079|0.72222\n48080|0.77778\n48081|0.61111\n48082|0.5\n48083|0.80556\n48084|0.84722\n48085|0.88889\n48086|0.90278\n48087|0.76389\n48088|0.61111\n48089|0.5\n48090|0.69444\n48091|0.59722\n48092|0.40278\n48093|0.58333\n48094|0.30556\n48095|0.38889\n48096|0.81944\n48097|0.79167\n48098|0.73611\n48099|0.61111\n48100|0.70833\n48101|0.625\n48102|0.61111\n48103|0.79167\n48104|0.55556\n48105|0.61111\n48106|0.66667\n48107|0.55556\n48108|0.80556\n48109|0.72222\n48110|0.875\n48111|0.77778\n48112|0.70833\n48113|0.36111\n48114|0.5\n48115|0.5\n48116|0.38889\n48117|0.54167\n48118|0.80556\n48119|0.70833\n48120|0.80556\n48121|0.54167\n48122|0.5\n48123|0.66667\n48124|0.65278\n48125|0.77778\n48126|0.79167\n48127|0.55556\n48128|0.72222\n48129|0.44444\n48130|0.94444\n48131|0.5\n48132|0.5\n48133|0.44444\n48134|0.625\n48135|0.5\n48136|0.56944\n48137|0.5\n48138|0.77778\n48139|0.5\n48140|0.84722\n48141|0.5\n48142|0.44444\n48143|0.5\n48144|0.43056\n48145|0.61111\n48146|0.5\n48147|0.76389\n48148|0.83333\n48149|0.72222\n48150|0.77778\n48151|0.47222\n48152|0.79167\n48153|0.27778\n48154|0.84722\n48155|0.77778\n48156|0.61111\n48157|0.52778\n48158|0.5\n48159|0.43056\n48160|0.65278\n48161|0.5\n48162|0.68056\n48163|0.79167\n48164|0.41667\n48165|0.51389\n48166|0.83333\n48167|0.66667\n48168|0.88889\n48169|0.80556\n48170|0.5\n48171|0.94444\n48172|0.875\n48173|0.90278\n48174|0.94444\n48175|0.88889\n48176|0.55556\n48177|0.48611\n48178|0.44444\n48179|0.48611\n48180|0.55556\n48181|0.51389\n48182|0.55556\n48183|0.52778\n48184|0.63889\n48185|0.5\n48186|0.51389\n48187|0.72222\n48188|0.38889\n48189|0.70833\n48190|0.84722\n48191|0.61111\n48192|0.5\n48193|0.5\n48194|0.41667\n48195|0.83333\n48196|0.90278\n48197|0.5\n48198|0.5\n48199|0.55556\n48200|0.5\n48201|0.55556\n48202|0.5\n48203|0.69444\n48204|0.77778\n48205|0.61111\n48206|0.22222\n48207|0.5\n48208|0.47222\n48209|0.56944\n48210|0.83333\n48211|0.55556\n48212|0.625\n48213|0.73611\n48214|0.70833\n48215|0.5\n48216|0.48611\n48217|0.30556\n48218|0.70833\n48219|0.5\n48220|0.38889\n48221|0.69444\n48222|0.83333\n48223|0.76389\n48224|0.56944\n48225|0.54167\n48226|0.58333\n48227|0.66667\n48228|0.51389\n48229|0.875\n48230|0.69444\n48231|0.5\n48232|0.44444\n48233|0.43056\n48234|0.27778\n48235|0.55556\n48236|0.45833\n48237|0.58333\n48238|0.43056\n48239|0.70833\n48240|0.84722\n48241|0.84722\n48242|0.69444\n48243|0.625\n48244|0.19444\n48245|0.66667\n48246|0.55556\n48247|0.54167\n48248|0.44444\n48249|0.33333\n48250|0.81944\n48251|0.76389\n48252|0.56944\n48253|0.5\n48254|0.63889\n48255|0.55556\n48256|0.51389\n48257|0.5\n48258|0.66667\n48259|0.61111\n48260|0.55556\n48261|0.55556\n48262|0.5\n48263|0.5\n48264|0.61111\n48265|0.58333\n48266|0.44444\n48267|0.73611\n48268|0.59722\n48269|0.625\n48270|0.70833\n48271|0.33333\n48272|0.61111\n48273|0.52778\n48274|0.5\n48275|0.63889\n48276|0.79167\n48277|0.5\n48278|0.77778\n48279|0.66667\n48280|0.61111\n48281|0.625\n48282|0.75\n48283|0.55556\n48284|0.56944\n48285|0.56944\n48286|0.81944\n48287|0.58333\n48288|0.68056\n48289|0.77778\n48290|0.61111\n48291|0.79167\n48292|0.79167\n48293|0.88889\n48294|0.79167\n48295|0.61111\n48296|0.68056\n48297|0.88889\n48298|0.47222\n48299|0.66667\n48300|0.47222\n48301|0.48611\n48302|0.61111\n48303|0.44444\n48304|0.5\n48305|0.51389\n48306|0.40278\n48307|0.44444\n48308|0.27778\n48309|0.875\n48310|0.75\n48311|0.56944\n48312|0.70833\n48313|0.84722\n48314|0.625\n48315|0.80556\n48316|0.70833\n48317|0.625\n48318|0.69444\n48319|0.41667\n48320|0.72222\n48321|0.68056\n48322|0.76389\n48323|0.75\n48324|0.81944\n48325|0.26389\n48326|0.5\n48327|0.51389\n48328|0.5\n48329|0.88889\n48330|0.83333\n48331|0.55556\n48332|0.72222\n48333|0.79167\n48334|0.76389\n48335|0.73611\n48336|0.5\n48337|0.5\n48338|0.69444\n48339|0.43056\n48340|0.77778\n48341|0.79167\n48342|0.84722\n48343|0.77778\n48344|0.86111\n48345|0.77778\n48346|0.75\n48347|0.65278\n48348|0.70833\n48349|0.65278\n48350|0.77778\n48351|0.70833\n48352|0.63889\n48353|0.61111\n48354|0.68056\n48355|0.76389\n48356|0.65278\n48357|0.70833\n48358|0.73611\n48359|0.44444\n48360|0.44444\n48361|0.5\n48362|0.5\n48363|0.63889\n48364|0.76389\n48365|0.70833\n48366|0.29167\n48367|0.55556\n48368|0.66667\n48369|0.22222\n48370|0.38889\n48371|0.63889\n48372|0.55556\n48373|0.61111\n48374|0.52778\n48375|0.79167\n48376|0.5\n48377|0.5\n48378|0.70833\n48379|0.72222\n48380|0.81944\n48381|0.83333\n48382|0.90278\n48383|0.88889\n48384|0.61111\n48385|0.83333\n48386|0.73611\n48387|0.69444\n48388|0.80556\n48389|0.61111\n48390|0.52778\n48391|0.72222\n48392|0.5\n48393|0.83333\n48394|0.55556\n48395|0.5\n48396|0.30556\n48397|0.48611\n48398|0.76389\n48399|0.55556\n48400|0.75\n48401|0.5\n48402|0.5\n48403|0.52778\n48404|0.56944\n48405|0.44444\n48406|0.27778\n48407|0.625\n48408|0.55556\n48409|0.55556\n48410|0.69444\n48411|0.59722\n48412|0.58333\n48413|0.80556\n48414|0.73611\n48415|0.83333\n48416|0.76389\n48417|0.94444\n48418|0.83333\n48419|0.69444\n48420|0.76389\n48421|0.83333\n48422|0.81944\n48423|0.44444\n48424|0.5\n48425|0.5\n48426|0.5\n48427|0.51389\n48428|0.72222\n48429|0.93056\n48430|0.88889\n48431|0.80556\n48432|0.66667\n48433|0.91667\n48434|0.79167\n48435|0.81944\n48436|0.88889\n48437|0.86111\n48438|0.72222\n48439|0.72222\n48440|0.76389\n48441|0.55556\n48442|0.5\n48443|0.77778\n48444|0.38889\n48445|0.26389\n48446|0.65278\n48447|0.76389\n48448|0.51389\n48449|0.30556\n48450|0.59722\n48451|0.83333\n48452|0.61111\n48453|0.51389\n48454|0.86111\n48455|0.86111\n48456|0.72222\n48457|0.86111\n48458|0.23611\n48459|0.77778\n48460|0.68056\n48461|0.66667\n48462|0.625\n48463|0.27778\n48464|0.375\n48465|0.77778\n48466|0.56944\n48467|0.68056\n48468|0.55556\n48469|0.83333\n48470|0.75\n48471|0.47222\n48472|0.77778\n48473|0.56944\n48474|0.66667\n48475|0.55556\n48476|0.54167\n48477|0.54167\n48478|0.43056\n48479|0.43056\n48480|0.58333\n48481|0.55556\n48482|0.5\n48483|0.5\n48484|0.51389\n48485|0.73611\n48486|0.66667\n48487|0.83333\n48488|0.77778\n48489|0.66667\n48490|0.86111\n48491|0.63889\n48492|0.625\n48493|0.45833\n48494|0.45833\n48495|0.68056\n48496|0.70833\n48497|0.77778\n48498|0.51389\n48499|0.80556\n48500|0.79167\n48501|0.5\n48502|0.52778\n48503|0.5\n48504|0.48611\n48505|0.55556\n48506|0.73611\n48507|0.81944\n48508|0.70833\n48509|0.70833\n48510|0.86111\n48511|0.75\n48512|0.84722\n48513|0.66667\n48514|0.76389\n48515|0.77778\n48516|0.83333\n48517|0.38889\n48518|0.77778\n48519|0.44444\n48520|0.83333\n48521|0.73611\n48522|0.68056\n48523|0.83333\n48524|0.44444\n48525|0.40278\n48526|0.44444\n48527|0.33333\n48528|0.5\n48529|0.22222\n48530|0.65278\n48531|0.66667\n48532|0.61111\n48533|0.40278\n48534|0.58333\n48535|0.55556\n48536|0.44444\n48537|0.51389\n48538|0.59722\n48539|0.5\n48540|0.63889\n48541|0.51389\n48542|0.44444\n48543|0.5\n48544|0.61111\n48545|0.51389\n48546|0.73611\n48547|0.55556\n48548|0.70833\n48549|0.83333\n48550|0.5\n48551|0.55556\n48552|0.61111\n48553|0.83333\n48554|0.55556\n48555|0.44444\n48556|0.5\n48557|0.47222\n48558|0.55556\n48559|0.5\n48560|0.5\n48561|0.5\n48562|0.44444\n48563|0.66667\n48564|0.73611\n48565|0.5\n48566|0.72222\n48567|0.51389\n48568|0.56944\n48569|0.5\n48570|0.55556\n48571|0.5\n48572|0.5\n48573|0.72222\n48574|0.5\n48575|0.5\n48576|0.47222\n48577|0.44444\n48578|0.54167\n48579|0.55556\n48580|0.61111\n48581|0.75\n48582|0.55556\n48583|0.55556\n48584|0.80556\n48585|0.65278\n48586|0.56944\n48587|0.73611\n48588|0.56944\n48589|0.61111\n48590|0.73611\n48591|0.66667\n48592|0.75\n48593|0.27778\n48594|0.22222\n48595|0.5\n48596|0.68056\n48597|0.56944\n48598|0.5\n48599|0.55556\n48600|0.5\n48601|0.55556\n48602|0.51389\n48603|0.79167\n48604|0.58333\n48605|0.72222\n48606|0.5\n48607|0.59722\n48608|0.51389\n48609|0.45833\n48610|0.61111\n48611|0.66667\n48612|0.54167\n48613|0.73611\n48614|0.54167\n48615|0.51389\n48616|0.68056\n48617|0.66667\n48618|0.63889\n48619|0.66667\n48620|0.54167\n48621|0.68056\n48622|0.69444\n48623|0.77778\n48624|0.5\n48625|0.33333\n48626|0.40278\n48627|0.40278\n48628|0.38889\n48629|0.55556\n48630|0.59722\n48631|0.54167\n48632|0.47222\n48633|0.5\n48634|0.5\n48635|0.51389\n48636|0.5\n48637|0.73611\n48638|0.83333\n48639|0.75\n48640|0.51389\n48641|0.69444\n48642|0.55556\n48643|0.52778\n48644|0.55556\n48645|0.55556\n48646|0.5\n48647|0.5\n48648|0.52778\n48649|0.59722\n48650|0.79167\n48651|0.72222\n48652|0.76389\n48653|0.70833\n48654|0.79167\n48655|0.66667\n48656|0.55556\n48657|0.44444\n48658|0.69444\n48659|0.55556\n48660|0.63889\n48661|0.61111\n48662|0.5\n48663|0.5\n48664|0.5\n48665|0.5\n48666|0.56944\n48667|0.5\n48668|0.55556\n48669|0.54167\n48670|0.58333\n48671|0.65278\n48672|0.72222\n48673|0.5\n48674|0.48611\n48675|0.38889\n48676|0.88889\n48677|0.80556\n48678|0.83333\n48679|0.63889\n48680|0.55556\n48681|0.65278\n48682|0.58333\n48683|0.5\n48684|0.75\n48685|0.68056\n48686|0.66667\n48687|0.77778\n48688|0.80556\n48689|0.66667\n48690|0.59722\n48691|0.79167\n48692|0.5\n48693|0.5\n48694|0.56944\n48695|0.47222\n48696|0.52778\n48697|0.59722\n48698|0.77778\n48699|0.70833\n48700|0.5\n48701|0.65278\n48702|0.58333\n48703|0.61111\n48704|0.5\n48705|0.72222\n48706|0.84722\n48707|0.66667\n48708|0.55556\n48709|0.55556\n48710|0.5\n48711|0.51389\n48712|0.44444\n48713|0.5\n48714|0.83333\n48715|0.44444\n48716|0.51389\n48717|0.51389\n48718|0.5\n48719|0.29167\n48720|0.625\n48721|0.38889\n48722|0.72222\n48723|0.5\n48724|0.51389\n48725|0.40278\n48726|0.77778\n48727|0.54167\n48728|0.5\n48729|0.38889\n48730|0.38889\n48731|0.23611\n48732|0.5\n48733|0.44444\n48734|0.5\n48735|0.875\n48736|0.80556\n48737|0.61111\n48738|0.5\n48739|0.61111\n48740|0.47222\n48741|0.59722\n48742|0.56944\n48743|0.55556\n48744|0.44444\n48745|0.29167\n48746|0.27778\n48747|0.58333\n48748|0.75\n48749|0.56944\n48750|0.5\n48751|0.55556\n48752|0.83333\n48753|0.47222\n48754|0.48611\n48755|0.54167\n48756|0.51389\n48757|0.61111\n48758|0.36111\n48759|0.58333\n48760|0.5\n48761|0.5\n48762|0.56944\n48763|0.70833\n48764|0.52778\n48765|0.5\n48766|0.43056\n48767|0.59722\n48768|0.5\n48769|0.55556\n48770|0.61111\n48771|0.26389\n48772|0.5\n48773|0.52778\n48774|0.55556\n48775|0.51389\n48776|0.55556\n48777|0.86111\n48778|0.63889\n48779|0.5\n48780|0.73611\n48781|0.45833\n48782|0.30556\n48783|0.5\n48784|0.20833\n48785|0.19444\n48786|0.55556\n48787|0.68056\n48788|0.52778\n48789|0.73611\n48790|0.5\n48791|0.41667\n48792|0.51389\n48793|0.83333\n48794|0.58333\n48795|0.55556\n48796|0.75\n48797|0.66667\n48798|0.47222\n48799|0.55556\n48800|0.77778\n48801|0.77778\n48802|0.52778\n48803|0.5\n48804|0.69444\n48805|0.77778\n48806|0.63889\n48807|0.66667\n48808|0.83333\n48809|0.75\n48810|0.33333\n48811|0.55556\n48812|0.52778\n48813|0.61111\n48814|0.27778\n48815|0.5\n48816|0.5\n48817|0.36111\n48818|0.38889\n48819|0.61111\n48820|0.625\n48821|0.61111\n48822|0.48611\n48823|0.20833\n48824|0.16667\n48825|0.55556\n48826|0.48611\n48827|0.51389\n48828|0.54167\n48829|0.56944\n48830|0.68056\n48831|0.56944\n48832|0.76389\n48833|0.63889\n48834|0.69444\n48835|0.88889\n48836|0.5\n48837|0.625\n48838|0.68056\n48839|0.40278\n48840|0.29167\n48841|0.25\n48842|0.76389\n48843|0.90278\n48844|0.51389\n48845|0.69444\n48846|0.55556\n48847|0.81944\n48848|0.54167\n48849|0.875\n48850|0.88889\n48851|0.88889\n48852|0.5\n48853|0.40278\n48854|0.70833\n48855|0.68056\n48856|0.77778\n48857|0.875\n48858|0.84722\n48859|0.86111\n48860|0.72222\n48861|0.5\n48862|0.70833\n48863|0.68056\n48864|0.38889\n48865|0.63889\n48866|0.47222\n48867|0.61111\n48868|0.59722\n48869|0.5\n48870|0.69444\n48871|0.76389\n48872|0.73611\n48873|0.81944\n48874|0.5\n48875|0.61111\n48876|0.65278\n48877|0.66667\n48878|0.38889\n48879|0.44444\n48880|0.54167\n48881|0.5\n48882|0.5\n48883|0.80556\n48884|0.72222\n48885|0.95833\n48886|0.79167\n48887|0.80556\n48888|0.61111\n48889|0.51389\n48890|0.93056\n48891|0.69444\n48892|0.79167\n48893|0.69444\n48894|0.66667\n48895|0.59722\n48896|0.54167\n48897|0.55556\n48898|0.5\n48899|0.77778\n48900|0.5\n48901|0.43056\n48902|0.61111\n48903|0.75\n48904|0.80556\n48905|0.91667\n48906|0.63889\n48907|0.65278\n48908|0.75\n48909|0.55556\n48910|0.55556\n48911|0.59722\n48912|0.47222\n48913|0.51389\n48914|0.41667\n48915|0.44444\n48916|0.40278\n48917|0.56944\n48918|0.69444\n48919|0.83333\n48920|0.75\n48921|0.86111\n48922|0.70833\n48923|0.79167\n48924|0.75\n48925|0.51389\n48926|0.73611\n48927|0.70833\n48928|0.79167\n48929|0.73611\n48930|0.72222\n48931|0.79167\n48932|0.52778\n48933|0.84722\n48934|0.69444\n48935|0.5\n48936|0.55556\n48937|0.58333\n48938|0.94444\n48939|0.88889\n48940|0.95833\n48941|0.90278\n48942|0.69444\n48943|0.55556\n48944|0.55556\n48945|0.34722\n48946|0.40278\n48947|0.44444\n48948|0.5\n48949|0.88889\n48950|0.88889\n48951|0.93056\n48952|0.65278\n48953|0.66667\n48954|0.81944\n48955|0.47222\n48956|0.58333\n48957|0.72222\n48958|0.80556\n48959|0.63889\n48960|0.75\n48961|0.61111\n48962|0.68056\n48963|0.66667\n48964|0.69444\n48965|0.80556\n48966|0.63889\n48967|0.63889\n48968|0.83333\n48969|0.72222\n48970|0.55556\n48971|0.5\n48972|0.5\n48973|0.58333\n48974|0.69444\n48975|0.59722\n48976|0.76389\n48977|0.625\n48978|0.625\n48979|0.59722\n48980|0.77778\n48981|0.80556\n48982|0.54167\n48983|0.51389\n48984|0.55556\n48985|0.66667\n48986|0.93056\n48987|0.70833\n48988|0.68056\n48989|0.83333\n48990|0.93056\n48991|0.90278\n48992|0.625\n48993|0.41667\n48994|0.86111\n48995|0.59722\n48996|0.27778\n48997|0.65278\n48998|0.19444\n48999|0.48611\n49000|0.36111\n49001|0.61111\n49002|0.55556\n49003|0.76389\n49004|0.5\n49005|0.43056\n49006|0.47222\n49007|0.40278\n49008|0.40278\n49009|0.73611\n49010|0.69444\n49011|0.55556\n49012|0.51389\n49013|0.5\n49014|0.47222\n49015|0.375\n49016|0.5\n49017|0.5\n49018|0.58333\n49019|0.47222\n49020|0.5\n49021|0.38889\n49022|0.5\n49023|0.73611\n49024|0.5\n49025|0.5\n49026|0.55556\n49027|0.5\n49028|0.56944\n49029|0.5\n49030|0.55556\n49031|0.5\n49032|0.61111\n49033|0.51389\n49034|0.75\n49035|0.51389\n49036|0.41667\n49037|0.29167\n49038|0.54167\n49039|0.48611\n49040|0.63889\n49041|0.41667\n49042|0.61111\n49043|0.52778\n49044|0.58333\n49045|0.70833\n49046|0.59722\n49047|0.59722\n49048|0.66667\n49049|0.45833\n49050|0.52778\n49051|0.59722\n49052|0.55556\n49053|0.625\n49054|0.45833\n49055|0.55556\n49056|0.5\n49057|0.5\n49058|0.33333\n49059|0.77778\n49060|0.51389\n49061|0.5\n49062|0.47222\n49063|0.63889\n49064|0.84722\n49065|0.66667\n49066|0.84722\n49067|0.72222\n49068|0.5\n49069|0.55556\n49070|0.63889\n49071|0.51389\n49072|0.44444\n49073|0.44444\n49074|0.63889\n49075|0.56944\n49076|0.33333\n49077|0.51389\n49078|0.63889\n49079|0.5\n49080|0.5\n49081|0.54167\n49082|0.41667\n49083|0.33333\n49084|0.5\n49085|0.70833\n49086|0.5\n49087|0.5\n49088|0.52778\n49089|0.54167\n49090|0.5\n49091|0.29167\n49092|0.5\n49093|0.68056\n49094|0.5\n49095|0.5\n49096|0.5\n49097|0.5\n49098|0.5\n49099|0.69444\n49100|0.58333\n49101|0.55556\n49102|0.66667\n49103|0.48611\n49104|0.63889\n49105|0.72222\n49106|0.72222\n49107|0.63889\n49108|0.58333\n49109|0.5\n49110|0.27778\n49111|0.27778\n49112|0.76389\n49113|0.84722\n49114|0.52778\n49115|0.66667\n49116|0.63889\n49117|0.5\n49118|0.63889\n49119|0.5\n49120|0.44444\n49121|0.5\n49122|0.5\n49123|0.48611\n49124|0.18056\n49125|0.51389\n49126|0.65278\n49127|0.56944\n49128|0.40278\n49129|0.68056\n49130|0.625\n49131|0.72222\n49132|0.5\n49133|0.45833\n49134|0.45833\n49135|0.54167\n49136|0.5\n49137|0.80556\n49138|0.73611\n49139|0.72222\n49140|0.66667\n49141|0.69444\n49142|0.72222\n49143|0.86111\n49144|0.81944\n49145|0.70833\n49146|0.90278\n49147|0.83333\n49148|0.70833\n49149|0.5\n49150|0.75\n49151|0.76389\n49152|0.44444\n49153|0.33333\n49154|0.45833\n49155|0.68056\n49156|0.625\n49157|0.59722\n49158|0.68056\n49159|0.41667\n49160|0.84722\n49161|0.86111\n49162|0.29167\n49163|0.73611\n49164|0.86111\n49165|0.27778\n49166|0.73611\n49167|0.41667\n49168|0.625\n49169|0.56944\n49170|0.34722\n49171|0.43056\n49172|0.16667\n49173|0.58333\n49174|0.43056\n49175|0.36111\n49176|0.88889\n49177|0.83333\n49178|0.65278\n49179|0.63889\n49180|0.5\n49181|0.65278\n49182|0.48611\n49183|0.5\n49184|0.59722\n49185|0.5\n49186|0.59722\n49187|0.52778\n49188|0.36111\n49189|0.63889\n49190|0.72222\n49191|0.68056\n49192|0.66667\n49193|0.83333\n49194|0.72222\n49195|0.63889\n49196|0.68056\n49197|0.80556\n49198|0.5\n49199|0.63889\n49200|0.66667\n49201|0.55556\n49202|0.70833\n49203|0.77778\n49204|0.56944\n49205|0.65278\n49206|0.44444\n49207|0.5\n49208|0.75\n49209|0.69444\n49210|0.625\n49211|0.33333\n49212|0.77778\n49213|0.56944\n49214|0.38889\n49215|0.44444\n49216|0.5\n49217|0.70833\n49218|0.5\n49219|0.5\n49220|0.5\n49221|0.5\n49222|0.66667\n49223|0.81944\n49224|0.73611\n49225|0.5\n49226|0.51389\n49227|0.76389\n49228|0.19444\n49229|0.27778\n49230|0.63889\n49231|0.51389\n49232|0.73611\n49233|0.59722\n49234|0.73611\n49235|0.61111\n49236|0.69444\n49237|0.5\n49238|0.51389\n49239|0.5\n49240|0.5\n49241|0.55556\n49242|0.55556\n49243|0.72222\n49244|0.55556\n49245|0.5\n49246|0.5\n49247|0.77778\n49248|0.73611\n49249|0.56944\n49250|0.77778\n49251|0.63889\n49252|0.38889\n49253|0.66667\n49254|0.69444\n49255|0.5\n49256|0.5\n49257|0.5\n49258|0.72222\n49259|0.83333\n49260|0.69444\n49261|0.66667\n49262|0.44444\n49263|0.097222\n49264|0.51389\n49265|0.88889\n49266|0.75\n49267|0.5\n49268|0.73611\n49269|0.86111\n49270|0.86111\n49271|0.5\n49272|0.66667\n49273|0.66667\n49274|0.79167\n49275|0.63889\n49276|0.61111\n49277|0.75\n49278|0.69444\n49279|0.68056\n49280|0.70833\n49281|0.48611\n49282|0.43056\n49283|0.5\n49284|0.81944\n49285|0.51389\n49286|0.66667\n49287|0.5\n49288|0.5\n49289|0.55556\n49290|0.70833\n49291|0.51389\n49292|0.5\n49293|0.63889\n49294|0.48611\n49295|0.63889\n49296|0.44444\n49297|0.5\n49298|0.5\n49299|0.5\n49300|0.51389\n49301|0.29167\n49302|0.625\n49303|0.83333\n49304|0.79167\n49305|0.83333\n49306|0.76389\n49307|0.54167\n49308|0.51389\n49309|0.5\n49310|0.66667\n49311|0.5\n49312|0.5\n49313|0.77778\n49314|0.27778\n49315|0.51389\n49316|0.59722\n49317|0.56944\n49318|0.59722\n49319|0.61111\n49320|0.59722\n49321|0.66667\n49322|0.44444\n49323|0.34722\n49324|0.59722\n49325|0.5\n49326|0.65278\n49327|0.81944\n49328|0.45833\n49329|0.54167\n49330|0.38889\n49331|0.5\n49332|0.38889\n49333|0.79167\n49334|0.5\n49335|0.33333\n49336|0.5\n49337|0.47222\n49338|0.5\n49339|0.5\n49340|0.55556\n49341|0.5\n49342|0.55556\n49343|0.5\n49344|0.625\n49345|0.55556\n49346|0.55556\n49347|0.5\n49348|0.72222\n49349|0.41667\n49350|0.55556\n49351|0.86111\n49352|0.81944\n49353|0.61111\n49354|0.5\n49355|0.33333\n49356|0.52778\n49357|0.5\n49358|0.61111\n49359|0.61111\n49360|0.80556\n49361|0.72222\n49362|0.86111\n49363|0.80556\n49364|0.48611\n49365|0.66667\n49366|0.5\n49367|0.5\n49368|0.5\n49369|0.5\n49370|0.34722\n49371|0.5\n49372|0.58333\n49373|0.55556\n49374|0.56944\n49375|0.44444\n49376|0.51389\n49377|0.51389\n49378|0.72222\n49379|0.55556\n49380|0.81944\n49381|0.51389\n49382|0.68056\n49383|0.61111\n49384|0.56944\n49385|0.55556\n49386|0.72222\n49387|0.40278\n49388|0.61111\n49389|0.55556\n49390|0.5\n49391|0.58333\n49392|0.44444\n49393|0.52778\n49394|0.55556\n49395|0.56944\n49396|0.5\n49397|0.31944\n49398|0.61111\n49399|0.59722\n49400|0.36111\n49401|0.44444\n49402|0.5\n49403|0.52778\n49404|0.34722\n49405|0.55556\n49406|0.55556\n49407|0.61111\n49408|0.73611\n49409|0.54167\n49410|0.40278\n49411|0.61111\n49412|0.5\n49413|0.51389\n49414|0.51389\n49415|0.41667\n49416|0.44444\n49417|0.58333\n49418|0.55556\n49419|0.45833\n49420|0.61111\n49421|0.44444\n49422|0.72222\n49423|0.5\n49424|0.5\n49425|0.52778\n49426|0.66667\n49427|0.61111\n49428|0.55556\n49429|0.70833\n49430|0.875\n49431|0.52778\n49432|0.51389\n49433|0.61111\n49434|0.47222\n49435|0.5\n49436|0.875\n49437|0.75\n49438|0.54167\n49439|0.44444\n49440|0.5\n49441|0.81944\n49442|0.43056\n49443|0.70833\n49444|0.77778\n49445|0.73611\n49446|0.52778\n49447|0.40278\n49448|0.43056\n49449|0.45833\n49450|0.27778\n49451|0.22222\n49452|0.19444\n49453|0.52778\n49454|0.44444\n49455|0.69444\n49456|0.5\n49457|0.51389\n49458|0.34722\n49459|0.16667\n49460|0.20833\n49461|0.31944\n49462|0.38889\n49463|0.86111\n49464|0.55556\n49465|0.80556\n49466|0.47222\n49467|0.47222\n49468|0.38889\n49469|0.47222\n49470|0.5\n49471|0.43056\n49472|0.47222\n49473|0.44444\n49474|0.68056\n49475|0.52778\n49476|0.625\n49477|0.5\n49478|0.55556\n49479|0.16667\n49480|0.80556\n49481|0.5\n49482|0.51389\n49483|0.45833\n49484|0.5\n49485|0.45833\n49486|0.5\n49487|0.5\n49488|0.56944\n49489|0.52778\n49490|0.5\n49491|0.48611\n49492|0.38889\n49493|0.5\n49494|0.40278\n49495|0.375\n49496|0.77778\n49497|0.625\n49498|0.375\n49499|0.625\n49500|0.75\n49501|0.65278\n49502|0.88889\n49503|0.77778\n49504|0.55556\n49505|0.44444\n49506|0.41667\n49507|0.75\n49508|0.61111\n49509|0.65278\n49510|0.77778\n49511|0.44444\n49512|0.79167\n49513|0.45833\n49514|0.20833\n49515|0.55556\n49516|0.75\n49517|0.44444\n49518|0.29167\n49519|0.61111\n49520|0.73611\n49521|0.77778\n49522|0.84722\n49523|0.44444\n49524|0.44444\n49525|0.875\n49526|0.70833\n49527|0.68056\n49528|0.81944\n49529|0.61111\n49530|0.5\n49531|0.68056\n49532|0.79167\n49533|0.81944\n49534|0.55556\n49535|0.36111\n49536|0.38889\n49537|0.40278\n49538|0.44444\n49539|0.36111\n49540|0.79167\n49541|0.69444\n49542|0.77778\n49543|0.33333\n49544|0.55556\n49545|0.56944\n49546|0.5\n49547|0.83333\n49548|0.65278\n49549|0.73611\n49550|0.375\n49551|0.54167\n49552|0.59722\n49553|0.58333\n49554|0.5\n49555|0.5\n49556|0.81944\n49557|0.5\n49558|0.52778\n49559|0.625\n49560|0.55556\n49561|0.5\n49562|0.5\n49563|0.16667\n49564|0.40278\n49565|0.5\n49566|0.44444\n49567|0.65278\n49568|0.5\n49569|0.47222\n49570|0.84722\n49571|0.76389\n49572|0.55556\n49573|0.70833\n49574|0.77778\n49575|0.90278\n49576|0.76389\n49577|0.56944\n49578|0.55556\n49579|0.38889\n49580|0.70833\n49581|0.5\n49582|0.51389\n49583|0.58333\n49584|0.61111\n49585|0.61111\n49586|0.69444\n49587|0.51389\n49588|0.48611\n49589|0.66667\n49590|0.44444\n49591|0.5\n49592|0.77778\n49593|0.79167\n49594|0.65278\n49595|0.22222\n49596|0.44444\n49597|0.44444\n49598|0.33333\n49599|0.48611\n49600|0.47222\n49601|0.5\n49602|0.44444\n49603|0.47222\n49604|0.36111\n49605|0.5\n49606|0.29167\n49607|0.55556\n49608|0.5\n49609|0.5\n49610|0.80556\n49611|0.58333\n49612|0.56944\n49613|0.61111\n49614|0.51389\n49615|0.51389\n49616|0.5\n49617|0.83333\n49618|0.93056\n49619|0.27778\n49620|0.5\n49621|0.44444\n49622|0.30556\n49623|0.5\n49624|0.65278\n49625|0.61111\n49626|0.69444\n49627|0.65278\n49628|0.84722\n49629|0.94444\n49630|0.51389\n49631|0.66667\n49632|0.5\n49633|0.25\n49634|0.22222\n49635|0.23611\n49636|0.48611\n49637|0.76389\n49638|0.51389\n49639|0.61111\n49640|0.5\n49641|0.59722\n49642|0.55556\n49643|0.55556\n49644|0.63889\n49645|0.66667\n49646|0.5\n49647|0.75\n49648|0.69444\n49649|0.43056\n49650|0.61111\n49651|0.58333\n49652|0.40278\n49653|0.59722\n49654|0.41667\n49655|0.44444\n49656|0.31944\n49657|0.5\n49658|0.40278\n49659|0.66667\n49660|0.63889\n49661|0.76389\n49662|0.5\n49663|0.72222\n49664|0.59722\n49665|0.65278\n49666|0.5\n49667|0.54167\n49668|0.47222\n49669|0.44444\n49670|0.61111\n49671|0.66667\n49672|0.63889\n49673|0.5\n49674|0.75\n49675|0.80556\n49676|0.79167\n49677|0.70833\n49678|0.63889\n49679|0.66667\n49680|0.77778\n49681|0.70833\n49682|0.88889\n49683|0.58333\n49684|0.83333\n49685|0.68056\n49686|0.93056\n49687|0.69444\n49688|0.56944\n49689|0.52778\n49690|0.72222\n49691|0.38889\n49692|0.34722\n49693|0.69444\n49694|0.66667\n49695|0.63889\n49696|0.55556\n49697|0.77778\n49698|0.52778\n49699|0.83333\n49700|0.54167\n49701|0.52778\n49702|0.59722\n49703|0.58333\n49704|0.63889\n49705|0.5\n49706|0.63889\n49707|0.51389\n49708|0.63889\n49709|0.5\n49710|0.5\n49711|0.5\n49712|0.79167\n49713|0.375\n49714|0.55556\n49715|0.33333\n49716|0.5\n49717|0.61111\n49718|0.55556\n49719|0.5\n49720|0.27778\n49721|0.55556\n49722|0.23611\n49723|0.22222\n49724|0.55556\n49725|0.52778\n49726|0.75\n49727|0.83333\n49728|0.55556\n49729|0.375\n49730|0.56944\n49731|0.63889\n49732|0.625\n49733|0.625\n49734|0.56944\n49735|0.5\n49736|0.65278\n49737|0.72222\n49738|0.58333\n49739|0.16667\n49740|0.33333\n49741|0.625\n49742|0.36111\n49743|0.47222\n49744|0.52778\n49745|0.45833\n49746|0.375\n49747|0.27778\n49748|0.51389\n49749|0.5\n49750|0.5\n49751|0.5\n49752|0.61111\n49753|0.5\n49754|0.5\n49755|0.38889\n49756|0.31944\n49757|0.22222\n49758|0.375\n49759|0.55556\n49760|0.52778\n49761|0.55556\n49762|0.79167\n49763|0.47222\n49764|0.79167\n49765|0.43056\n49766|0.38889\n49767|0.43056\n49768|0.5\n49769|0.55556\n49770|0.56944\n49771|0.5\n49772|0.5\n49773|0.38889\n49774|0.54167\n49775|0.54167\n49776|0.625\n49777|0.44444\n49778|0.45833\n49779|0.5\n49780|0.51389\n49781|0.33333\n49782|0.44444\n49783|0.5\n49784|0.5\n49785|0.77778\n49786|0.5\n49787|0.5\n49788|0.45833\n49789|0.55556\n49790|0.55556\n49791|0.65278\n49792|0.52778\n49793|0.51389\n49794|0.77778\n49795|0.48611\n49796|0.36111\n49797|0.45833\n49798|0.5\n49799|0.40278\n49800|0.45833\n49801|0.5\n49802|0.56944\n49803|0.54167\n49804|0.5\n49805|0.55556\n49806|0.61111\n49807|0.41667\n49808|0.55556\n49809|0.5\n49810|0.5\n49811|0.77778\n49812|0.72222\n49813|0.51389\n49814|0.55556\n49815|0.38889\n49816|0.51389\n49817|0.94444\n49818|0.51389\n49819|0.68056\n49820|0.5\n49821|0.65278\n49822|0.875\n49823|0.81944\n49824|0.88889\n49825|0.73611\n49826|0.75\n49827|0.91667\n49828|0.93056\n49829|0.79167\n49830|0.625\n49831|0.80556\n49832|0.875\n49833|0.5\n49834|0.5\n49835|0.80556\n49836|0.66667\n49837|0.77778\n49838|0.83333\n49839|0.70833\n49840|0.5\n49841|0.55556\n49842|0.5\n49843|0.47222\n49844|0.55556\n49845|0.5\n49846|0.58333\n49847|0.77778\n49848|0.91667\n49849|0.80556\n49850|0.77778\n49851|0.625\n49852|0.5\n49853|0.73611\n49854|0.88889\n49855|0.79167\n49856|0.5\n49857|0.66667\n49858|0.5\n49859|0.90278\n49860|0.72222\n49861|0.5\n49862|0.5\n49863|0.5\n49864|0.51389\n49865|0.44444\n49866|0.41667\n49867|0.34722\n49868|0.44444\n49869|0.33333\n49870|0.5\n49871|0.80556\n49872|0.5\n49873|0.5\n49874|0.38889\n49875|0.38889\n49876|0.5\n49877|0.70833\n49878|0.68056\n49879|0.5\n49880|0.54167\n49881|0.55556\n49882|0.48611\n49883|0.66667\n49884|0.56944\n49885|0.59722\n49886|0.54167\n49887|0.52778\n49888|0.65278\n49889|0.5\n49890|0.52778\n49891|0.5\n49892|0.52778\n49893|0.33333\n49894|0.5\n49895|0.44444\n49896|0.47222\n49897|0.63889\n49898|0.66667\n49899|0.76389\n49900|0.66667\n49901|0.80556\n49902|0.5\n49903|0.73611\n49904|0.61111\n49905|0.70833\n49906|0.72222\n49907|0.5\n49908|0.77778\n49909|0.65278\n49910|0.68056\n49911|0.72222\n49912|0.63889\n49913|0.47222\n49914|0.47222\n49915|0.40278\n49916|0.88889\n49917|0.75\n49918|0.70833\n49919|0.51389\n49920|0.375\n49921|0.51389\n49922|0.5\n49923|0.5\n49924|0.5\n49925|0.5\n49926|0.83333\n49927|0.5\n49928|0.5\n49929|0.44444\n49930|0.51389\n49931|0.51389\n49932|0.41667\n49933|0.5\n49934|0.5\n49935|0.72222\n49936|0.72222\n49937|0.69444\n49938|0.73611\n49939|0.72222\n49940|0.5\n49941|0.77778\n49942|0.51389\n49943|0.55556\n49944|0.51389\n49945|0.5\n49946|0.5\n49947|0.58333\n49948|0.38889\n49949|0.5\n49950|0.48611\n49951|0.5\n49952|0.5\n49953|0.5\n49954|0.44444\n49955|0.59722\n49956|0.5\n49957|0.66667\n49958|0.76389\n49959|0.5\n49960|0.55556\n49961|0.47222\n49962|0.33333\n49963|0.5\n49964|0.77778\n49965|0.33333\n49966|0.625\n49967|0.5\n49968|0.51389\n49969|0.5\n49970|0.5\n49971|0.86111\n49972|0.40278\n49973|0.48611\n49974|0.66667\n49975|0.625\n49976|0.375\n49977|0.51389\n49978|0.19444\n49979|0.66667\n49980|0.80556\n49981|0.5\n49982|0.5\n49983|0.51389\n49984|0.5\n49985|0.38889\n49986|0.5\n49987|0.73611\n49988|0.5\n49989|0.55556\n49990|0.5\n49991|0.61111\n49992|0.56944\n49993|0.68056\n49994|0.51389\n49995|0.55556\n49996|0.5\n49997|0.5\n49998|0.375\n49999|0.66667\n50000|0.5\n50001|0.625\n50002|0.5\n50003|0.58333\n50004|0.84722\n50005|0.625\n50006|0.83333\n50007|0.61111\n50008|0.77778\n50009|0.5\n50010|0.56944\n50011|0.59722\n50012|0.81944\n50013|0.41667\n50014|0.61111\n50015|0.61111\n50016|0.47222\n50017|0.56944\n50018|0.63889\n50019|0.55556\n50020|0.34722\n50021|0.75\n50022|0.70833\n50023|0.45833\n50024|0.625\n50025|0.51389\n50026|0.625\n50027|0.34722\n50028|0.61111\n50029|0.55556\n50030|0.5\n50031|0.72222\n50032|0.66667\n50033|0.75\n50034|0.69444\n50035|0.68056\n50036|0.77778\n50037|0.83333\n50038|0.90278\n50039|0.80556\n50040|0.70833\n50041|0.77778\n50042|0.72222\n50043|0.79167\n50044|0.91667\n50045|0.51389\n50046|0.58333\n50047|0.5\n50048|0.61111\n50049|0.625\n50050|0.76389\n50051|0.55556\n50052|0.73611\n50053|0.63889\n50054|0.61111\n50055|0.56944\n50056|0.47222\n50057|0.76389\n50058|0.59722\n50059|0.69444\n50060|0.81944\n50061|0.51389\n50062|0.51389\n50063|0.5\n50064|0.41667\n50065|0.5\n50066|0.72222\n50067|0.5\n50068|0.51389\n50069|0.5\n50070|0.83333\n50071|0.55556\n50072|0.5\n50073|0.51389\n50074|0.52778\n50075|0.5\n50076|0.61111\n50077|0.91667\n50078|0.51389\n50079|0.36111\n50080|0.40278\n50081|0.27778\n50082|0.5\n50083|0.43056\n50084|0.15278\n50085|0.23611\n50086|0.83333\n50087|0.58333\n50088|0.66667\n50089|0.63889\n50090|0.65278\n50091|0.77778\n50092|0.73611\n50093|0.56944\n50094|0.5\n50095|0.51389\n50096|0.75\n50097|0.5\n50098|0.58333\n50099|0.5\n50100|0.5\n50101|0.5\n50102|0.625\n50103|0.61111\n50104|0.5\n50105|0.44444\n50106|0.5\n50107|0.79167\n50108|0.68056\n50109|0.41667\n50110|0.5\n50111|0.38889\n50112|0.43056\n50113|0.5\n50114|0.41667\n50115|0.65278\n50116|0.5\n50117|0.55556\n50118|0.5\n50119|0.33333\n50120|0.59722\n50121|0.48611\n50122|0.66667\n50123|0.5\n50124|0.77778\n50125|0.48611\n50126|0.54167\n50127|0.55556\n50128|0.43056\n50129|0.54167\n50130|0.44444\n50131|0.5\n50132|0.76389\n50133|0.76389\n50134|0.68056\n50135|0.72222\n50136|0.66667\n50137|0.83333\n50138|0.73611\n50139|0.83333\n50140|0.72222\n50141|0.86111\n50142|0.5\n50143|0.36111\n50144|0.19444\n50145|0.40278\n50146|0.59722\n50147|0.5\n50148|0.5\n50149|0.55556\n50150|0.5\n50151|0.38889\n50152|0.5\n50153|0.5\n50154|0.5\n50155|0.66667\n50156|0.5\n50157|0.36111\n50158|0.41667\n50159|0.66667\n50160|0.52778\n50161|0.5\n50162|0.5\n50163|0.77778\n50164|0.80556\n50165|0.41667\n50166|0.55556\n50167|0.75\n50168|0.5\n50169|0.61111\n50170|0.66667\n50171|0.30556\n50172|0.5\n50173|0.41667\n50174|0.69444\n50175|0.80556\n50176|0.68056\n50177|0.5\n50178|0.5\n50179|0.5\n50180|0.65278\n50181|0.55556\n50182|0.5\n50183|0.5\n50184|0.5\n50185|0.59722\n50186|0.5\n50187|0.5\n50188|0.5\n50189|0.51389\n50190|0.51389\n50191|0.5\n50192|0.55556\n50193|0.58333\n50194|0.55556\n50195|0.51389\n50196|0.61111\n50197|0.65278\n50198|0.625\n50199|0.44444\n50200|0.44444\n50201|0.38889\n50202|0.55556\n50203|0.33333\n50204|0.69444\n50205|0.5\n50206|0.5\n50207|0.75\n50208|0.625\n50209|0.76389\n50210|0.84722\n50211|0.72222\n50212|0.69444\n50213|0.36111\n50214|0.44444\n50215|0.5\n50216|0.5\n50217|0.44444\n50218|0.41667\n50219|0.61111\n50220|0.58333\n50221|0.63889\n50222|0.68056\n50223|0.47222\n50224|0.44444\n50225|0.5\n50226|0.5\n50227|0.44444\n50228|0.41667\n50229|0.5\n50230|0.61111\n50231|0.54167\n50232|0.625\n50233|0.63889\n50234|0.47222\n50235|0.5\n50236|0.48611\n50237|0.38889\n50238|0.59722\n50239|0.75\n50240|0.63889\n50241|0.72222\n50242|0.69444\n50243|0.61111\n50244|0.61111\n50245|0.36111\n50246|0.76389\n50247|0.47222\n50248|0.625\n50249|0.5\n50250|0.81944\n50251|0.5\n50252|0.59722\n50253|0.75\n50254|0.45833\n50255|0.61111\n50256|0.68056\n50257|0.56944\n50258|0.44444\n50259|0.5\n50260|0.55556\n50261|0.51389\n50262|0.76389\n50263|0.76389\n50264|0.77778\n50265|0.55556\n50266|0.61111\n50267|0.54167\n50268|0.5\n50269|0.55556\n50270|0.65278\n50271|0.5\n50272|0.61111\n50273|0.54167\n50274|0.83333\n50275|0.66667\n50276|0.94444\n50277|0.79167\n50278|0.81944\n50279|0.63889\n50280|0.54167\n50281|0.61111\n50282|0.73611\n50283|0.73611\n50284|0.5\n50285|0.41667\n50286|0.56944\n50287|0.5\n50288|0.44444\n50289|0.61111\n50290|0.72222\n50291|0.73611\n50292|0.38889\n50293|0.69444\n50294|0.61111\n50295|0.55556\n50296|0.5\n50297|0.72222\n50298|0.69444\n50299|0.55556\n50300|0.55556\n50301|0.55556\n50302|0.61111\n50303|0.61111\n50304|0.75\n50305|0.65278\n50306|0.73611\n50307|0.55556\n50308|0.72222\n50309|0.70833\n50310|0.5\n50311|0.58333\n50312|0.5\n50313|0.72222\n50314|0.76389\n50315|0.51389\n50316|0.51389\n50317|0.55556\n50318|0.73611\n50319|0.81944\n50320|0.69444\n50321|0.63889\n50322|0.58333\n50323|0.81944\n50324|0.70833\n50325|0.86111\n50326|0.83333\n50327|0.65278\n50328|0.80556\n50329|0.70833\n50330|0.77778\n50331|0.77778\n50332|0.83333\n50333|0.63889\n50334|0.68056\n50335|0.61111\n50336|0.65278\n50337|0.25\n50338|0.5\n50339|0.41667\n50340|0.66667\n50341|0.79167\n50342|0.63889\n50343|0.73611\n50344|0.63889\n50345|0.65278\n50346|0.58333\n50347|0.59722\n50348|0.58333\n50349|0.51389\n50350|0.38889\n50351|0.25\n50352|0.56944\n50353|0.5\n50354|0.66667\n50355|0.69444\n50356|0.54167\n50357|0.38889\n50358|0.5\n50359|0.61111\n50360|0.5\n50361|0.5\n50362|0.44444\n50363|0.38889\n50364|0.5\n50365|0.625\n50366|0.47222\n50367|0.43056\n50368|0.5\n50369|0.47222\n50370|0.51389\n50371|0.5\n50372|0.52778\n50373|0.69444\n50374|0.80556\n50375|0.73611\n50376|0.77778\n50377|0.83333\n50378|0.36111\n50379|0.33333\n50380|0.40278\n50381|0.38889\n50382|0.5\n50383|0.375\n50384|0.5\n50385|0.45833\n50386|0.5\n50387|0.5\n50388|0.52778\n50389|0.90278\n50390|0.77778\n50391|0.63889\n50392|0.72222\n50393|0.59722\n50394|0.43056\n50395|0.47222\n50396|0.55556\n50397|0.61111\n50398|0.63889\n50399|0.43056\n50400|0.56944\n50401|0.55556\n50402|0.33333\n50403|0.44444\n50404|0.55556\n50405|0.18056\n50406|0.5\n50407|0.51389\n50408|0.5\n50409|0.86111\n50410|0.29167\n50411|0.5\n50412|0.45833\n50413|0.5\n50414|0.33333\n50415|0.55556\n50416|0.72222\n50417|0.51389\n50418|0.5\n50419|0.625\n50420|0.84722\n50421|0.5\n50422|0.54167\n50423|0.73611\n50424|0.76389\n50425|0.625\n50426|0.65278\n50427|0.55556\n50428|0.44444\n50429|0.56944\n50430|0.22222\n50431|0.5\n50432|0.54167\n50433|0.61111\n50434|0.44444\n50435|0.44444\n50436|0.83333\n50437|0.52778\n50438|0.30556\n50439|0.375\n50440|0.55556\n50441|0.63889\n50442|0.097222\n50443|0.31944\n50444|0.16667\n50445|0.77778\n50446|0.44444\n50447|0.36111\n50448|0.44444\n50449|0.51389\n50450|0.55556\n50451|0.44444\n50452|0.52778\n50453|0.77778\n50454|0.875\n50455|0.52778\n50456|0.56944\n50457|0.51389\n50458|0.55556\n50459|0.72222\n50460|0.66667\n50461|0.875\n50462|0.66667\n50463|0.68056\n50464|0.625\n50465|0.77778\n50466|0.83333\n50467|0.69444\n50468|0.61111\n50469|0.77778\n50470|0.43056\n50471|0.5\n50472|0.15278\n50473|0.5\n50474|0.22222\n50475|0.36111\n50476|0.16667\n50477|0.5\n50478|0.5\n50479|0.5\n50480|0.5\n50481|0.51389\n50482|0.45833\n50483|0.43056\n50484|0.43056\n50485|0.41667\n50486|0.44444\n50487|0.44444\n50488|0.59722\n50489|0.25\n50490|0.33333\n50491|0.41667\n50492|0.41667\n50493|0.5\n50494|0.625\n50495|0.72222\n50496|0.75\n50497|0.81944\n50498|0.84722\n50499|0.44444\n50500|0.5\n50501|0.54167\n50502|0.5\n50503|0.5\n50504|0.48611\n50505|0.38889\n50506|0.61111\n50507|0.5\n50508|0.5\n50509|0.70833\n50510|0.5\n50511|0.5\n50512|0.48611\n50513|0.47222\n50514|0.55556\n50515|0.55556\n50516|0.63889\n50517|0.72222\n50518|0.5\n50519|0.68056\n50520|0.18056\n50521|0.54167\n50522|0.47222\n50523|0.5\n50524|0.33333\n50525|0.68056\n50526|0.68056\n50527|0.5\n50528|0.625\n50529|0.66667\n50530|0.375\n50531|0.61111\n50532|0.81944\n50533|0.55556\n50534|0.625\n50535|0.38889\n50536|0.20833\n50537|0.20833\n50538|0.29167\n50539|0.5\n50540|0.73611\n50541|0.72222\n50542|0.5\n50543|0.69444\n50544|0.63889\n50545|0.70833\n50546|0.625\n50547|0.61111\n50548|0.625\n50549|0.72222\n50550|0.77778\n50551|0.84722\n50552|0.5\n50553|0.52778\n50554|0.5\n50555|0.375\n50556|0.22222\n50557|0.22222\n50558|0.25\n50559|0.5\n50560|0.52778\n50561|0.33333\n50562|0.5\n50563|0.5\n50564|0.33333\n50565|0.44444\n50566|0.5\n50567|0.72222\n50568|0.45833\n50569|0.59722\n50570|0.52778\n50571|0.13889\n50572|0.48611\n50573|0.45833\n50574|0.48611\n50575|0.51389\n50576|0.83333\n50577|0.77778\n50578|0.41667\n50579|0.44444\n50580|0.54167\n50581|0.59722\n50582|0.33333\n50583|0.36111\n50584|0.44444\n50585|0.69444\n50586|0.61111\n50587|0.5\n50588|0.55556\n50589|0.51389\n50590|0.5\n50591|0.5\n50592|0.66667\n50593|0.73611\n50594|0.63889\n50595|0.40278\n50596|0.45833\n50597|0.33333\n50598|0.5\n50599|0.68056\n50600|0.58333\n50601|0.5\n50602|0.52778\n50603|0.47222\n50604|0.5\n50605|0.61111\n50606|0.69444\n50607|0.80556\n50608|0.83333\n50609|0.52778\n50610|0.70833\n50611|0.84722\n50612|0.27778\n50613|0.38889\n50614|0.76389\n50615|0.5\n50616|0.51389\n50617|0.5\n50618|0.59722\n50619|0.58333\n50620|0.55556\n50621|0.5\n50622|0.45833\n50623|0.72222\n50624|0.76389\n50625|0.51389\n50626|0.61111\n50627|0.51389\n50628|0.5\n50629|0.38889\n50630|0.44444\n50631|0.5\n50632|0.72222\n50633|0.84722\n50634|0.75\n50635|0.93056\n50636|0.38889\n50637|0.47222\n50638|0.52778\n50639|0.34722\n50640|0.30556\n50641|0.44444\n50642|0.47222\n50643|0.625\n50644|0.65278\n50645|0.77778\n50646|0.55556\n50647|0.51389\n50648|0.70833\n50649|0.77778\n50650|0.81944\n50651|0.5\n50652|0.55556\n50653|0.5\n50654|0.5\n50655|0.34722\n50656|0.88889\n50657|0.5\n50658|0.44444\n50659|0.68056\n50660|0.27778\n50661|0.47222\n50662|0.47222\n50663|0.59722\n50664|0.77778\n50665|0.66667\n50666|0.48611\n50667|0.36111\n50668|0.70833\n50669|0.5\n50670|0.43056\n50671|0.5\n50672|0.5\n50673|0.27778\n50674|0.44444\n50675|0.33333\n50676|0.54167\n50677|0.70833\n50678|0.22222\n50679|0.18056\n50680|0.40278\n50681|0.63889\n50682|0.5\n50683|0.44444\n50684|0.44444\n50685|0.27778\n50686|0.22222\n50687|0.33333\n50688|0.59722\n50689|0.47222\n50690|0.52778\n50691|0.68056\n50692|0.63889\n50693|0.59722\n50694|0.44444\n50695|0.23611\n50696|0.36111\n50697|0.58333\n50698|0.68056\n50699|0.61111\n50700|0.5\n50701|0.51389\n50702|0.69444\n50703|0.55556\n50704|0.73611\n50705|0.81944\n50706|0.80556\n50707|0.77778\n50708|0.5\n50709|0.70833\n50710|0.55556\n50711|0.80556\n50712|0.59722\n50713|0.68056\n50714|0.44444\n50715|0.54167\n50716|0.65278\n50717|0.5\n50718|0.69444\n50719|0.48611\n50720|0.34722\n50721|0.40278\n50722|0.79167\n50723|0.86111\n50724|0.80556\n50725|0.76389\n50726|0.86111\n50727|0.77778\n50728|0.81944\n50729|0.75\n50730|0.77778\n50731|0.73611\n50732|0.77778\n50733|0.76389\n50734|0.73611\n50735|0.86111\n50736|0.58333\n50737|0.875\n50738|0.88889\n50739|0.81944\n50740|0.73611\n50741|0.81944\n50742|0.73611\n50743|0.54167\n50744|0.72222\n50745|0.77778\n50746|0.65278\n50747|0.72222\n50748|0.73611\n50749|0.81944\n50750|0.70833\n50751|0.75\n50752|0.72222\n50753|0.45833\n50754|0.5\n50755|0.58333\n50756|0.38889\n50757|0.48611\n50758|0.22222\n50759|0.23611\n50760|0.23611\n50761|0.56944\n50762|0.5\n50763|0.79167\n50764|0.73611\n50765|0.52778\n50766|0.73611\n50767|0.88889\n50768|0.5\n50769|0.5\n50770|0.45833\n50771|0.55556\n50772|0.5\n50773|0.55556\n50774|0.52778\n50775|0.61111\n50776|0.44444\n50777|0.43056\n50778|0.5\n50779|0.5\n50780|0.52778\n50781|0.25\n50782|0.19444\n50783|0.69444\n50784|0.44444\n50785|0.875\n50786|0.77778\n50787|0.52778\n50788|0.61111\n50789|0.55556\n50790|0.38889\n50791|0.5\n50792|0.31944\n50793|0.69444\n50794|0.41667\n50795|0.38889\n50796|0.33333\n50797|0.41667\n50798|0.51389\n50799|0.54167\n50800|0.27778\n50801|0.41667\n50802|0.38889\n50803|0.36111\n50804|0.38889\n50805|0.56944\n50806|0.66667\n50807|0.52778\n50808|0.61111\n50809|0.59722\n50810|0.55556\n50811|0.73611\n50812|0.5\n50813|0.55556\n50814|0.51389\n50815|0.5\n50816|0.5\n50817|0.70833\n50818|0.51389\n50819|0.48611\n50820|0.5\n50821|0.65278\n50822|0.56944\n50823|0.52778\n50824|0.52778\n50825|0.5\n50826|0.5\n50827|0.44444\n50828|0.47222\n50829|0.61111\n50830|0.94444\n50831|0.65278\n50832|0.76389\n50833|0.55556\n50834|0.5\n50835|0.56944\n50836|0.5\n50837|0.55556\n50838|0.77778\n50839|0.5\n50840|0.5\n50841|0.55556\n50842|0.36111\n50843|0.5\n50844|0.52778\n50845|0.40278\n50846|0.40278\n50847|0.5\n50848|0.625\n50849|0.5\n50850|0.51389\n50851|0.75\n50852|0.52778\n50853|0.55556\n50854|0.55556\n50855|0.5\n50856|0.61111\n50857|0.5\n50858|0.5\n50859|0.55556\n50860|0.5\n50861|0.61111\n50862|0.5\n50863|0.5\n50864|0.5\n50865|0.63889\n50866|0.73611\n50867|0.66667\n50868|0.80556\n50869|0.75\n50870|0.94444\n50871|0.81944\n50872|0.83333\n50873|0.90278\n50874|0.79167\n50875|0.18056\n50876|0.20833\n50877|0.11111\n50878|0.54167\n50879|0.43056\n50880|0.48611\n50881|0.5\n50882|0.55556\n50883|0.61111\n50884|0.55556\n50885|0.16667\n50886|0.54167\n50887|0.44444\n50888|0.51389\n50889|0.72222\n50890|0.38889\n50891|0.43056\n50892|0.069444\n50893|0.44444\n50894|0.58333\n50895|0.69444\n50896|0.68056\n50897|0.38889\n50898|0.38889\n50899|0.51389\n50900|0.44444\n50901|0.65278\n50902|0.5\n50903|0.5\n50904|0.5\n50905|0.59722\n50906|0.625\n50907|0.84722\n50908|0.66667\n50909|0.54167\n50910|0.65278\n50911|0.38889\n50912|0.69444\n50913|0.68056\n50914|0.36111\n50915|0.66667\n50916|0.51389\n50917|0.66667\n50918|0.43056\n50919|0.58333\n50920|0.66667\n50921|0.55556\n50922|0.48611\n50923|0.58333\n50924|0.52778\n50925|0.5\n50926|0.18056\n50927|0.38889\n50928|0.31944\n50929|0.5\n50930|0.55556\n50931|0.44444\n50932|0.5\n50933|0.51389\n50934|0.63889\n50935|0.5\n50936|0.51389\n50937|0.72222\n50938|0.66667\n50939|0.5\n50940|0.61111\n50941|0.5\n50942|0.44444\n50943|0.72222\n50944|0.75\n50945|0.77778\n50946|0.69444\n50947|0.80556\n50948|0.65278\n50949|0.80556\n50950|0.77778\n50951|0.88889\n50952|0.5\n50953|0.55556\n50954|0.44444\n50955|0.47222\n50956|0.72222\n50957|0.44444\n50958|0.23611\n50959|0.36111\n50960|0.26389\n50961|0.5\n50962|0.69444\n50963|0.61111\n50964|0.30556\n50965|0.54167\n50966|0.5\n50967|0.73611\n50968|0.54167\n50969|0.55556\n50970|0.83333\n50971|0.66667\n50972|0.5\n50973|0.5\n50974|0.63889\n50975|0.38889\n50976|0.45833\n50977|0.52778\n50978|0.70833\n50979|0.63889\n50980|0.54167\n50981|0.68056\n50982|0.43056\n50983|0.38889\n50984|0.54167\n50985|0.45833\n50986|0.72222\n50987|0.63889\n50988|0.5\n50989|0.23611\n50990|0.86111\n50991|0.25\n50992|0.375\n50993|0.36111\n50994|0.84722\n50995|0.58333\n50996|0.69444\n50997|0.47222\n50998|0.52778\n50999|0.33333\n51000|0.38889\n51001|0.66667\n51002|0.5\n51003|0.27778\n51004|0.375\n51005|0.41667\n51006|0.38889\n51007|0.19444\n51008|0.47222\n51009|0.61111\n51010|0.44444\n51011|0.80556\n51012|0.625\n51013|0.59722\n51014|0.58333\n51015|0.63889\n51016|0.5\n51017|0.72222\n51018|0.51389\n51019|0.55556\n51020|0.5\n51021|0.44444\n51022|0.40278\n51023|0.5\n51024|0.58333\n51025|0.69444\n51026|0.63889\n51027|0.38889\n51028|0.55556\n51029|0.5\n51030|0.5\n51031|0.68056\n51032|0.80556\n51033|0.61111\n51034|0.5\n51035|0.52778\n51036|0.58333\n51037|0.68056\n51038|0.375\n51039|0.38889\n51040|0.52778\n51041|0.34722\n51042|0.44444\n51043|0.59722\n51044|0.38889\n51045|0.5\n51046|0.58333\n51047|0.5\n51048|0.55556\n51049|0.34722\n51050|0.36111\n51051|0.33333\n51052|0.59722\n51053|0.29167\n51054|0.75\n51055|0.80556\n51056|0.5\n51057|0.63889\n51058|0.36111\n51059|0.27778\n51060|0.5\n51061|0.5\n51062|0.5\n51063|0.5\n51064|0.61111\n51065|0.5\n51066|0.44444\n51067|0.54167\n51068|0.55556\n51069|0.65278\n51070|0.625\n51071|0.58333\n51072|0.70833\n51073|0.5\n51074|0.51389\n51075|0.5\n51076|0.5\n51077|0.5\n51078|0.5\n51079|0.27778\n51080|0.75\n51081|0.55556\n51082|0.55556\n51083|0.55556\n51084|0.5\n51085|0.66667\n51086|0.59722\n51087|0.54167\n51088|0.5\n51089|0.44444\n51090|0.5\n51091|0.44444\n51092|0.44444\n51093|0.5\n51094|0.55556\n51095|0.66667\n51096|0.59722\n51097|0.61111\n51098|0.5\n51099|0.54167\n51100|0.68056\n51101|0.43056\n51102|0.5\n51103|0.72222\n51104|0.63889\n51105|0.47222\n51106|0.55556\n51107|0.65278\n51108|0.75\n51109|0.5\n51110|0.5\n51111|0.5\n51112|0.44444\n51113|0.55556\n51114|0.69444\n51115|0.73611\n51116|0.75\n51117|0.51389\n51118|0.625\n51119|0.55556\n51120|0.65278\n51121|0.68056\n51122|0.5\n51123|0.36111\n51124|0.38889\n51125|0.5\n51126|0.5\n51127|0.51389\n51128|0.61111\n51129|0.55556\n51130|0.61111\n51131|0.68056\n51132|0.5\n51133|0.44444\n51134|0.5\n51135|0.73611\n51136|0.84722\n51137|0.70833\n51138|0.5\n51139|0.5\n51140|0.90278\n51141|0.58333\n51142|0.40278\n51143|0.68056\n51144|0.83333\n51145|0.90278\n51146|0.84722\n51147|0.40278\n51148|0.625\n51149|0.61111\n51150|0.54167\n51151|0.65278\n51152|0.86111\n51153|0.36111\n51154|0.44444\n51155|0.65278\n51156|0.47222\n51157|0.65278\n51158|0.61111\n51159|0.54167\n51160|0.66667\n51161|0.51389\n51162|0.77778\n51163|0.59722\n51164|0.72222\n51165|0.5\n51166|0.68056\n51167|0.79167\n51168|0.5\n51169|0.33333\n51170|0.29167\n51171|0.66667\n51172|0.51389\n51173|0.5\n51174|0.83333\n51175|0.5\n51176|0.59722\n51177|0.75\n51178|0.52778\n51179|0.5\n51180|0.5\n51181|0.61111\n51182|0.56944\n51183|0.54167\n51184|0.52778\n51185|0.77778\n51186|0.55556\n51187|0.44444\n51188|0.27778\n51189|0.29167\n51190|0.5\n51191|0.80556\n51192|0.59722\n51193|0.51389\n51194|0.40278\n51195|0.625\n51196|0.73611\n51197|0.79167\n51198|0.83333\n51199|0.72222\n51200|0.66667\n51201|0.69444\n51202|0.76389\n51203|0.54167\n51204|0.61111\n51205|0.70833\n51206|0.68056\n51207|0.80556\n51208|0.86111\n51209|0.63889\n51210|0.51389\n51211|0.58333\n51212|0.70833\n51213|0.73611\n51214|0.94444\n51215|0.81944\n51216|0.72222\n51217|0.84722\n51218|0.72222\n51219|0.72222\n51220|0.77778\n51221|0.88889\n51222|0.70833\n51223|0.63889\n51224|0.80556\n51225|0.76389\n51226|0.81944\n51227|0.65278\n51228|0.61111\n51229|0.75\n51230|0.66667\n51231|0.66667\n51232|0.83333\n51233|0.63889\n51234|0.68056\n51235|0.76389\n51236|0.75\n51237|0.61111\n51238|0.77778\n51239|0.83333\n51240|0.70833\n51241|0.86111\n51242|0.55556\n51243|0.52778\n51244|0.59722\n51245|0.66667\n51246|0.83333\n51247|0.56944\n51248|0.55556\n51249|0.76389\n51250|0.79167\n51251|0.56944\n51252|0.31944\n51253|0.52778\n51254|0.52778\n51255|0.58333\n51256|0.58333\n51257|0.38889\n51258|0.55556\n51259|0.73611\n51260|0.63889\n51261|0.72222\n51262|0.63889\n51263|0.61111\n51264|0.55556\n51265|0.59722\n51266|0.61111\n51267|0.5\n51268|0.44444\n51269|0.51389\n51270|0.73611\n51271|0.66667\n51272|0.81944\n51273|0.66667\n51274|0.76389\n51275|0.61111\n51276|0.63889\n51277|0.83333\n51278|0.79167\n51279|0.73611\n51280|0.58333\n51281|0.5\n51282|0.76389\n51283|0.65278\n51284|0.76389\n51285|0.97222\n51286|0.40278\n51287|0.44444\n51288|0.47222\n51289|0.5\n51290|0.5\n51291|0.54167\n51292|0.5\n51293|0.72222\n51294|0.55556\n51295|0.84722\n51296|0.81944\n51297|0.68056\n51298|0.58333\n51299|0.63889\n51300|0.51389\n51301|0.61111\n51302|0.5\n51303|0.88889\n51304|0.61111\n51305|0.61111\n51306|0.72222\n51307|0.5\n51308|0.5\n51309|0.5\n51310|0.5\n51311|0.54167\n51312|0.52778\n51313|0.55556\n51314|0.51389\n51315|0.56944\n51316|0.52778\n51317|0.73611\n51318|0.5\n51319|0.52778\n51320|0.48611\n51321|0.5\n51322|0.61111\n51323|0.80556\n51324|0.52778\n51325|0.54167\n51326|0.88889\n51327|0.80556\n51328|0.84722\n51329|0.69444\n51330|0.5\n51331|0.61111\n51332|0.72222\n51333|0.5\n51334|0.5\n51335|0.41667\n51336|0.56944\n51337|0.86111\n51338|0.63889\n51339|0.56944\n51340|0.5\n51341|0.66667\n51342|0.79167\n51343|0.5\n51344|0.55556\n51345|0.41667\n51346|0.41667\n51347|0.59722\n51348|0.61111\n51349|0.5\n51350|0.43056\n51351|0.5\n51352|0.61111\n51353|0.5\n51354|0.61111\n51355|0.77778\n51356|0.63889\n51357|0.45833\n51358|0.5\n51359|0.5\n51360|0.5\n51361|0.5\n51362|0.625\n51363|0.51389\n51364|0.51389\n51365|0.44444\n51366|0.61111\n51367|0.52778\n51368|0.5\n51369|0.94444\n51370|0.5\n51371|0.52778\n51372|0.5\n51373|0.55556\n51374|0.84722\n51375|0.68056\n51376|0.72222\n51377|0.59722\n51378|0.75\n51379|0.69444\n51380|0.54167\n51381|0.5\n51382|0.38889\n51383|0.55556\n51384|0.72222\n51385|0.43056\n51386|0.5\n51387|0.51389\n51388|0.66667\n51389|0.59722\n51390|0.55556\n51391|0.83333\n51392|0.63889\n51393|0.83333\n51394|0.84722\n51395|0.93056\n51396|0.81944\n51397|0.5\n51398|0.76389\n51399|0.70833\n51400|0.72222\n51401|0.84722\n51402|0.88889\n51403|0.83333\n51404|0.75\n51405|0.86111\n51406|0.83333\n51407|0.94444\n51408|0.69444\n51409|0.54167\n51410|0.34722\n51411|0.5\n51412|0.48611\n51413|0.68056\n51414|0.83333\n51415|0.5\n51416|0.5\n51417|0.72222\n51418|0.61111\n51419|0.59722\n51420|0.5\n51421|0.61111\n51422|0.61111\n51423|0.55556\n51424|0.55556\n51425|0.48611\n51426|0.51389\n51427|0.63889\n51428|0.44444\n51429|0.75\n51430|0.43056\n51431|0.75\n51432|0.83333\n51433|0.625\n51434|0.79167\n51435|0.48611\n51436|0.59722\n51437|0.58333\n51438|0.52778\n51439|0.58333\n51440|0.38889\n51441|0.88889\n51442|0.73611\n51443|0.93056\n51444|0.5\n51445|0.5\n51446|0.51389\n51447|0.48611\n51448|0.55556\n51449|0.44444\n51450|0.95833\n51451|0.95833\n51452|0.66667\n51453|0.52778\n51454|0.47222\n51455|0.76389\n51456|0.61111\n51457|0.625\n51458|0.65278\n51459|0.625\n51460|0.72222\n51461|0.68056\n51462|0.61111\n51463|0.5\n51464|0.54167\n51465|0.5\n51466|0.61111\n51467|0.44444\n51468|0.625\n51469|0.84722\n51470|0.5\n51471|0.5\n51472|0.44444\n51473|0.19444\n51474|0.11111\n51475|0.61111\n51476|0.63889\n51477|0.65278\n51478|0.66667\n51479|0.84722\n51480|0.44444\n51481|0.38889\n51482|0.16667\n51483|0.22222\n51484|0.625\n51485|0.5\n51486|0.30556\n51487|0.27778\n51488|0.58333\n51489|0.65278\n51490|0.55556\n51491|0.56944\n51492|0.63889\n51493|0.31944\n51494|0.27778\n51495|0.38889\n51496|0.29167\n51497|0.52778\n51498|0.80556\n51499|0.61111\n51500|0.52778\n51501|0.61111\n51502|0.59722\n51503|0.61111\n51504|0.55556\n51505|0.54167\n51506|0.5\n51507|0.77778\n51508|0.625\n51509|0.61111\n51510|0.51389\n51511|0.44444\n51512|0.55556\n51513|0.43056\n51514|0.66667\n51515|0.76389\n51516|0.72222\n51517|0.59722\n51518|0.65278\n51519|0.61111\n51520|0.51389\n51521|0.70833\n51522|0.95833\n51523|0.73611\n51524|0.875\n51525|0.88889\n51526|0.5\n51527|0.34722\n51528|0.5\n51529|0.54167\n51530|0.70833\n51531|0.69444\n51532|0.41667\n51533|0.59722\n51534|0.5\n51535|0.75\n51536|0.61111\n51537|0.5\n51538|0.5\n51539|0.77778\n51540|0.80556\n51541|0.66667\n51542|0.54167\n51543|0.43056\n51544|0.63889\n51545|0.76389\n51546|0.81944\n51547|0.69444\n51548|0.76389\n51549|0.58333\n51550|0.70833\n51551|0.61111\n51552|0.61111\n51553|0.70833\n51554|0.44444\n51555|0.33333\n51556|0.55556\n51557|0.58333\n51558|0.625\n51559|0.86111\n51560|0.77778\n51561|0.61111\n51562|0.58333\n51563|0.61111\n51564|0.56944\n51565|0.5\n51566|0.51389\n51567|0.61111\n51568|0.5\n51569|0.44444\n51570|0.68056\n51571|0.61111\n51572|0.5\n51573|0.27778\n51574|0.27778\n51575|0.36111\n51576|0.77778\n51577|0.41667\n51578|0.26389\n51579|0.75\n51580|0.75\n51581|0.5\n51582|0.69444\n51583|0.70833\n51584|0.55556\n51585|0.44444\n51586|0.54167\n51587|0.70833\n51588|0.80556\n51589|0.52778\n51590|0.875\n51591|0.13889\n51592|0.20833\n51593|0.38889\n51594|0.56944\n51595|0.38889\n51596|0.47222\n51597|0.5\n51598|0.66667\n51599|0.72222\n51600|0.72222\n51601|0.66667\n51602|0.59722\n51603|0.625\n51604|0.51389\n51605|0.68056\n51606|0.54167\n51607|0.59722\n51608|0.65278\n51609|0.63889\n51610|0.51389\n51611|0.47222\n51612|0.47222\n51613|0.29167\n51614|0.44444\n51615|0.47222\n51616|0.41667\n51617|0.73611\n51618|0.34722\n51619|0.56944\n51620|0.5\n51621|0.61111\n51622|0.43056\n51623|0.5\n51624|0.51389\n51625|0.51389\n51626|0.68056\n51627|0.63889\n51628|0.69444\n51629|0.43056\n51630|0.5\n51631|0.5\n51632|0.58333\n51633|0.5\n51634|0.5\n51635|0.52778\n51636|0.5\n51637|0.61111\n51638|0.63889\n51639|0.61111\n51640|0.79167\n51641|0.66667\n51642|0.70833\n51643|0.77778\n51644|0.59722\n51645|0.52778\n51646|0.5\n51647|0.5\n51648|0.83333\n51649|0.76389\n51650|0.84722\n51651|0.80556\n51652|0.5\n51653|0.5\n51654|0.69444\n51655|0.5\n51656|0.5\n51657|0.52778\n51658|0.68056\n51659|0.72222\n51660|0.69444\n51661|0.5\n51662|0.61111\n51663|0.5\n51664|0.5\n51665|0.51389\n51666|0.70833\n51667|0.5\n51668|0.51389\n51669|0.5\n51670|0.63889\n51671|0.61111\n51672|0.55556\n51673|0.83333\n51674|0.56944\n51675|0.81944\n51676|0.72222\n51677|0.5\n51678|0.55556\n51679|0.63889\n51680|0.43056\n51681|0.875\n51682|0.47222\n51683|0.5\n51684|0.5\n51685|0.55556\n51686|0.61111\n51687|0.5\n51688|0.54167\n51689|0.55556\n51690|0.43056\n51691|0.63889\n51692|0.56944\n51693|0.61111\n51694|0.83333\n51695|0.48611\n51696|0.625\n51697|0.5\n51698|0.5\n51699|0.625\n51700|0.51389\n51701|0.59722\n51702|0.5\n51703|0.65278\n51704|0.625\n51705|0.66667\n51706|0.5\n51707|0.75\n51708|0.56944\n51709|0.77778\n51710|0.51389\n51711|0.66667\n51712|0.90278\n51713|0.5\n51714|0.56944\n51715|0.51389\n51716|0.52778\n51717|0.83333\n51718|0.68056\n51719|0.43056\n51720|0.5\n51721|0.52778\n51722|0.77778\n51723|0.70833\n51724|0.5\n51725|0.58333\n51726|0.55556\n51727|0.5\n51728|0.26389\n51729|0.5\n51730|0.36111\n51731|0.44444\n51732|0.20833\n51733|0.20833\n51734|0.125\n51735|0.51389\n51736|0.51389\n51737|0.58333\n51738|0.16667\n51739|0.23611\n51740|0.51389\n51741|0.5\n51742|0.70833\n51743|0.68056\n51744|0.48611\n51745|0.36111\n51746|0.79167\n51747|0.41667\n51748|0.5\n51749|0.5\n51750|0.5\n51751|0.48611\n51752|0.54167\n51753|0.56944\n51754|0.52778\n51755|0.73611\n51756|0.55556\n51757|0.66667\n51758|0.44444\n51759|0.77778\n51760|0.72222\n51761|0.5\n51762|0.56944\n51763|0.54167\n51764|0.5\n51765|0.5\n51766|0.5\n51767|0.5\n51768|0.55556\n51769|0.52778\n51770|0.36111\n51771|0.11111\n51772|0.36111\n51773|0.55556\n51774|0.63889\n51775|0.5\n51776|0.5\n51777|0.83333\n51778|0.72222\n51779|0.45833\n51780|0.44444\n51781|0.75\n51782|0.52778\n51783|0.38889\n51784|0.69444\n51785|0.55556\n51786|0.65278\n51787|0.40278\n51788|0.79167\n51789|0.375\n51790|0.72222\n51791|0.41667\n51792|0.61111\n51793|0.5\n51794|0.52778\n51795|0.55556\n51796|0.79167\n51797|0.75\n51798|0.36111\n51799|0.73611\n51800|0.54167\n51801|0.55556\n51802|0.90278\n51803|0.44444\n51804|0.69444\n51805|0.83333\n51806|0.51389\n51807|0.54167\n51808|0.45833\n51809|0.5\n51810|0.54167\n51811|0.56944\n51812|0.52778\n51813|0.54167\n51814|0.72222\n51815|0.68056\n51816|0.5\n51817|0.61111\n51818|0.61111\n51819|0.55556\n51820|0.69444\n51821|0.54167\n51822|0.625\n51823|0.51389\n51824|0.55556\n51825|0.51389\n51826|0.66667\n51827|0.5\n51828|0.5\n51829|0.5\n51830|0.54167\n51831|0.5\n51832|0.5\n51833|0.55556\n51834|0.5\n51835|0.61111\n51836|0.55556\n51837|0.51389\n51838|0.5\n51839|0.5\n51840|0.5\n51841|0.58333\n51842|0.63889\n51843|0.59722\n51844|0.44444\n51845|0.59722\n51846|0.44444\n51847|0.5\n51848|0.43056\n51849|0.55556\n51850|0.44444\n51851|0.63889\n51852|0.5\n51853|0.72222\n51854|0.56944\n51855|0.25\n51856|0.22222\n51857|0.41667\n51858|0.27778\n51859|0.33333\n51860|0.56944\n51861|0.625\n51862|0.88889\n51863|0.41667\n51864|0.55556\n51865|0.56944\n51866|0.44444\n51867|0.52778\n51868|0.5\n51869|0.70833\n51870|0.69444\n51871|0.66667\n51872|0.5\n51873|0.77778\n51874|0.72222\n51875|0.5\n51876|0.30556\n51877|0.375\n51878|0.36111\n51879|0.5\n51880|0.51389\n51881|0.5\n51882|0.48611\n51883|0.94444\n51884|0.41667\n51885|0.66667\n51886|0.61111\n51887|0.44444\n51888|0.55556\n51889|0.41667\n51890|0.66667\n51891|0.80556\n51892|0.59722\n51893|0.72222\n51894|0.73611\n51895|0.33333\n51896|0.58333\n51897|0.76389\n51898|0.55556\n51899|0.66667\n51900|0.59722\n51901|0.69444\n51902|0.5\n51903|0.54167\n51904|0.625\n51905|0.68056\n51906|0.54167\n51907|0.83333\n51908|0.66667\n51909|0.72222\n51910|0.59722\n51911|0.5\n51912|0.51389\n51913|0.73611\n51914|0.5\n51915|0.75\n51916|0.5\n51917|0.5\n51918|0.51389\n51919|0.63889\n51920|0.5\n51921|0.36111\n51922|0.47222\n51923|0.47222\n51924|0.44444\n51925|0.55556\n51926|0.38889\n51927|0.5\n51928|0.59722\n51929|0.5\n51930|0.40278\n51931|0.51389\n51932|0.30556\n51933|0.52778\n51934|0.51389\n51935|0.72222\n51936|0.55556\n51937|0.66667\n51938|0.5\n51939|0.66667\n51940|0.52778\n51941|0.55556\n51942|0.5\n51943|0.48611\n51944|0.44444\n51945|0.52778\n51946|0.59722\n51947|0.55556\n51948|0.51389\n51949|0.40278\n51950|0.44444\n51951|0.45833\n51952|0.5\n51953|0.63889\n51954|0.61111\n51955|0.5\n51956|0.55556\n51957|0.59722\n51958|0.5\n51959|0.61111\n51960|0.43056\n51961|0.5\n51962|0.63889\n51963|0.55556\n51964|0.48611\n51965|0.61111\n51966|0.5\n51967|0.5\n51968|0.5\n51969|0.26389\n51970|0.36111\n51971|0.65278\n51972|0.29167\n51973|0.83333\n51974|0.72222\n51975|0.75\n51976|0.55556\n51977|0.84722\n51978|0.55556\n51979|0.51389\n51980|0.73611\n51981|0.44444\n51982|0.5\n51983|0.83333\n51984|0.76389\n51985|0.86111\n51986|0.86111\n51987|0.63889\n51988|0.73611\n51989|0.66667\n51990|0.76389\n51991|0.77778\n51992|0.72222\n51993|0.5\n51994|0.45833\n51995|0.5\n51996|0.72222\n51997|0.55556\n51998|0.77778\n51999|0.76389\n52000|0.80556\n52001|0.93056\n52002|0.66667\n52003|0.72222\n52004|0.76389\n52005|0.80556\n52006|0.73611\n52007|0.80556\n52008|0.79167\n52009|0.80556\n52010|0.76389\n52011|0.73611\n52012|0.83333\n52013|0.83333\n52014|0.88889\n52015|0.77778\n52016|0.56944\n52017|0.875\n52018|0.76389\n52019|0.81944\n52020|0.72222\n52021|0.69444\n52022|0.63889\n52023|0.69444\n52024|0.75\n52025|0.70833\n52026|0.69444\n52027|0.45833\n52028|0.38889\n52029|0.58333\n52030|0.61111\n52031|0.5\n52032|0.51389\n52033|0.27778\n52034|0.52778\n52035|0.73611\n52036|0.61111\n52037|0.44444\n52038|0.5\n52039|0.48611\n52040|0.61111\n52041|0.55556\n52042|0.5\n52043|0.33333\n52044|0.5\n52045|0.5\n52046|0.63889\n52047|0.5\n52048|0.44444\n52049|0.68056\n52050|0.58333\n52051|0.72222\n52052|0.69444\n52053|0.76389\n52054|0.43056\n52055|0.5\n52056|0.625\n52057|0.61111\n52058|0.70833\n52059|0.56944\n52060|0.625\n52061|0.73611\n52062|0.66667\n52063|0.68056\n52064|0.75\n52065|0.70833\n52066|0.72222\n52067|0.84722\n52068|0.81944\n52069|0.34722\n52070|0.86111\n52071|0.80556\n52072|0.77778\n52073|0.76389\n52074|0.81944\n52075|0.61111\n52076|0.66667\n52077|0.66667\n52078|0.56944\n52079|0.66667\n52080|0.52778\n52081|0.40278\n52082|0.54167\n52083|0.5\n52084|0.15278\n52085|0.5\n52086|0.55556\n52087|0.33333\n52088|0.51389\n52089|0.65278\n52090|0.5\n52091|0.55556\n52092|0.625\n52093|0.40278\n52094|0.61111\n52095|0.5\n52096|0.61111\n52097|0.66667\n52098|0.84722\n52099|0.69444\n52100|0.70833\n52101|0.54167\n52102|0.61111\n52103|0.69444\n52104|0.69444\n52105|0.58333\n52106|0.65278\n52107|0.83333\n52108|0.52778\n52109|0.66667\n52110|0.73611\n52111|0.80556\n52112|0.80556\n52113|0.83333\n52114|0.76389\n52115|0.77778\n52116|0.58333\n52117|0.58333\n52118|0.45833\n52119|0.72222\n52120|0.5\n52121|0.45833\n52122|0.52778\n52123|0.56944\n52124|0.58333\n52125|0.79167\n52126|0.73611\n52127|0.72222\n52128|0.81944\n52129|0.72222\n52130|0.5\n52131|0.44444\n52132|0.52778\n52133|0.63889\n52134|0.61111\n52135|0.51389\n52136|0.66667\n52137|0.55556\n52138|0.5\n52139|0.5\n52140|0.38889\n52141|0.5\n52142|0.63889\n52143|0.58333\n52144|0.77778\n52145|0.38889\n52146|0.5\n52147|0.52778\n52148|0.55556\n52149|0.68056\n52150|0.56944\n52151|0.45833\n52152|0.66667\n52153|0.5\n52154|0.70833\n52155|0.58333\n52156|0.58333\n52157|0.51389\n52158|0.23611\n52159|0.95833\n52160|0.68056\n52161|0.75\n52162|0.27778\n52163|0.5\n52164|0.5\n52165|0.41667\n52166|0.44444\n52167|0.72222\n52168|0.86111\n52169|0.5\n52170|0.72222\n52171|0.61111\n52172|0.5\n52173|0.59722\n52174|0.63889\n52175|0.625\n52176|0.55556\n52177|0.56944\n52178|0.63889\n52179|0.61111\n52180|0.33333\n52181|0.26389\n52182|0.41667\n52183|0.5\n52184|0.72222\n52185|0.5\n52186|0.5\n52187|0.5\n52188|0.58333\n52189|0.56944\n52190|0.77778\n52191|0.80556\n52192|0.61111\n52193|0.75\n52194|0.68056\n52195|0.73611\n52196|0.80556\n52197|0.63889\n52198|0.72222\n52199|0.80556\n52200|0.77778\n52201|0.69444\n52202|0.76389\n52203|0.66667\n52204|0.68056\n52205|0.52778\n52206|0.65278\n52207|0.55556\n52208|0.72222\n52209|0.5\n52210|0.70833\n52211|0.69444\n52212|0.76389\n52213|0.80556\n52214|0.80556\n52215|0.40278\n52216|0.875\n52217|0.875\n52218|0.86111\n52219|0.75\n52220|0.86111\n52221|0.33333\n52222|0.27778\n52223|0.40278\n52224|0.77778\n52225|0.51389\n52226|0.80556\n52227|0.5\n52228|0.69444\n52229|0.55556\n52230|0.88889\n52231|0.79167\n52232|0.5\n52233|0.34722\n52234|0.69444\n52235|0.73611\n52236|0.51389\n52237|0.66667\n52238|0.70833\n52239|0.56944\n52240|0.44444\n52241|0.51389\n52242|0.68056\n52243|0.54167\n52244|0.44444\n52245|0.45833\n52246|0.22222\n52247|0.66667\n52248|0.77778\n52249|0.75\n52250|0.61111\n52251|0.88889\n52252|0.88889\n52253|0.72222\n52254|0.86111\n52255|0.69444\n52256|0.83333\n52257|0.875\n52258|0.81944\n52259|0.69444\n52260|0.65278\n52261|0.72222\n52262|0.68056\n52263|0.66667\n52264|0.75\n52265|0.47222\n52266|0.80556\n52267|0.72222\n52268|0.56944\n52269|0.65278\n52270|0.90278\n52271|0.63889\n52272|0.44444\n52273|0.375\n52274|0.33333\n52275|0.33333\n52276|0.29167\n52277|0.58333\n52278|0.59722\n52279|0.66667\n52280|0.76389\n52281|0.625\n52282|0.47222\n52283|0.5\n52284|0.76389\n52285|0.76389\n52286|0.52778\n52287|0.79167\n52288|0.75\n52289|0.36111\n52290|0.45833\n52291|0.72222\n52292|0.5\n52293|0.76389\n52294|0.72222\n52295|0.44444\n52296|0.61111\n52297|0.72222\n52298|0.5\n52299|0.48611\n52300|0.55556\n52301|0.51389\n52302|0.5\n52303|0.5\n52304|0.5\n52305|0.5\n52306|0.36111\n52307|0.40278\n52308|0.69444\n52309|0.5\n52310|0.44444\n52311|0.61111\n52312|0.38889\n52313|0.75\n52314|0.5\n52315|0.52778\n52316|0.5\n52317|0.5\n52318|0.47222\n52319|0.41667\n52320|0.61111\n52321|0.38889\n52322|0.55556\n52323|0.375\n52324|0.5\n52325|0.47222\n52326|0.80556\n52327|0.83333\n52328|0.45833\n52329|0.81944\n52330|0.68056\n52331|0.30556\n52332|0.43056\n52333|0.51389\n52334|0.54167\n52335|0.44444\n52336|0.47222\n52337|0.38889\n52338|0.5\n52339|0.69444\n52340|0.70833\n52341|0.38889\n52342|0.5\n52343|0.51389\n52344|0.38889\n52345|0.20833\n52346|0.77778\n52347|0.76389\n52348|0.5\n52349|0.34722\n52350|0.625\n52351|0.72222\n52352|0.083333\n52353|0.52778\n52354|0.55556\n52355|0.625\n52356|0.47222\n52357|0.44444\n52358|0.55556\n52359|0.69444\n52360|0.73611\n52361|0.56944\n52362|0.31944\n52363|0.55556\n52364|0.29167\n52365|0.77778\n52366|0.77778\n52367|0.625\n52368|0.48611\n52369|0.84722\n52370|0.69444\n52371|0.76389\n52372|0.69444\n52373|0.5\n52374|0.80556\n52375|0.63889\n52376|0.80556\n52377|0.61111\n52378|0.81944\n52379|0.55556\n52380|0.5\n52381|0.38889\n52382|0.51389\n52383|0.54167\n52384|0.70833\n52385|0.76389\n52386|0.94444\n52387|0.5\n52388|0.73611\n52389|0.77778\n52390|0.625\n52391|0.625\n52392|0.79167\n52393|0.5\n52394|0.77778\n52395|0.69444\n52396|0.83333\n52397|0.77778\n52398|0.70833\n52399|0.91667\n52400|0.5\n52401|0.5\n52402|0.55556\n52403|0.55556\n52404|0.55556\n52405|0.61111\n52406|0.16667\n52407|0.33333\n52408|0.55556\n52409|0.69444\n52410|0.69444\n52411|0.72222\n52412|0.66667\n52413|0.69444\n52414|0.5\n52415|0.625\n52416|0.63889\n52417|0.81944\n52418|0.65278\n52419|0.5\n52420|0.51389\n52421|0.55556\n52422|0.77778\n52423|0.79167\n52424|0.69444\n52425|0.54167\n52426|0.72222\n52427|0.76389\n52428|0.69444\n52429|0.875\n52430|1\n52431|0.80556\n52432|0.72222\n52433|0.73611\n52434|0.48611\n52435|0.22222\n52436|0.72222\n52437|0.70833\n52438|0.81944\n52439|0.81944\n52440|0.625\n52441|0.70833\n52442|0.77778\n52443|0.43056\n52444|0.47222\n52445|0.375\n52446|0.5\n52447|0.45833\n52448|0.56944\n52449|0.23611\n52450|0.31944\n52451|0.38889\n52452|0.70833\n52453|0.73611\n52454|0.68056\n52455|0.73611\n52456|0.81944\n52457|0.33333\n52458|0.68056\n52459|0.5\n52460|0.5\n52461|0.54167\n52462|0.30556\n52463|0.40278\n52464|0.5\n52465|0.5\n52466|0.5\n52467|0.59722\n52468|0.5\n52469|0.5\n52470|0.36111\n52471|0.58333\n52472|0.26389\n52473|0.70833\n52474|0.55556\n52475|0.97222\n52476|0.38889\n52477|0.77778\n52478|0.81944\n52479|0.63889\n52480|0.70833\n52481|0.61111\n52482|0.59722\n52483|0.52778\n52484|0.69444\n52485|0.5\n52486|0.77778\n52487|0.54167\n52488|0.55556\n52489|0.52778\n52490|0.47222\n52491|0.5\n52492|0.5\n52493|0.38889\n52494|0.43056\n52495|0.48611\n52496|0.44444\n52497|0.41667\n52498|0.66667\n52499|0.80556\n52500|0.47222\n52501|0.61111\n52502|0.70833\n52503|0.84722\n52504|0.38889\n52505|0.52778\n52506|0.43056\n52507|0.86111\n52508|0.73611\n52509|0.80556\n52510|0.86111\n52511|0.63889\n52512|0.30556\n52513|0.36111\n52514|0.625\n52515|0.66667\n52516|0.56944\n52517|0.86111\n52518|0.5\n52519|0.77778\n52520|0.5\n52521|0.84722\n52522|0.79167\n52523|0.72222\n52524|0.45833\n52525|0.51389\n52526|0.5\n52527|0.66667\n52528|0.52778\n52529|0.58333\n52530|0.58333\n52531|0.38889\n52532|0.38889\n52533|0.70833\n52534|0.5\n52535|0.47222\n52536|0.73611\n52537|0.70833\n52538|0.72222\n52539|0.73611\n52540|0.66667\n52541|0.77778\n52542|0.61111\n52543|0.27778\n52544|0.73611\n52545|0.5\n52546|0.56944\n52547|0.47222\n52548|0.75\n52549|0.81944\n52550|0.5\n52551|0.61111\n52552|0.72222\n52553|0.63889\n52554|0.72222\n52555|0.66667\n52556|0.80556\n52557|0.41667\n52558|0.58333\n52559|0.5\n52560|0.5\n52561|0.51389\n52562|0.5\n52563|0.5\n52564|0.65278\n52565|0.58333\n52566|0.55556\n52567|0.5\n52568|0.72222\n52569|0.66667\n52570|0.52778\n52571|0.54167\n52572|0.61111\n52573|0.52778\n52574|0.5\n52575|0.5\n52576|0.55556\n52577|0.5\n52578|0.5\n52579|0.5\n52580|0.5\n52581|0.5\n52582|0.5\n52583|0.58333\n52584|0.5\n52585|0.5\n52586|0.5\n52587|0.54167\n52588|0.5\n52589|0.75\n52590|0.51389\n52591|0.51389\n52592|0.72222\n52593|0.51389\n52594|0.80556\n52595|0.77778\n52596|0.65278\n52597|0.69444\n52598|0.77778\n52599|0.73611\n52600|0.68056\n52601|0.51389\n52602|0.94444\n52603|0.88889\n52604|0.5\n52605|0.72222\n52606|0.94444\n52607|0.84722\n52608|0.75\n52609|0.86111\n52610|0.75\n52611|0.72222\n52612|0.51389\n52613|0.5\n52614|0.5\n52615|0.5\n52616|0.5\n52617|0.66667\n52618|0.5\n52619|0.5\n52620|0.5\n52621|0.55556\n52622|0.5\n52623|0.54167\n52624|0.5\n52625|0.75\n52626|0.5\n52627|0.48611\n52628|0.375\n52629|0.45833\n52630|0.5\n52631|0.41667\n52632|0.51389\n52633|0.5\n52634|0.52778\n52635|0.66667\n52636|0.5\n52637|0.44444\n52638|0.79167\n52639|0.38889\n52640|0.19444\n52641|0.625\n52642|0.59722\n52643|0.5\n52644|0.56944\n52645|0.5\n52646|0.83333\n52647|0.77778\n52648|0.81944\n52649|0.36111\n52650|0.56944\n52651|0.61111\n52652|0.51389\n52653|0.63889\n52654|0.625\n52655|0.44444\n52656|0.69444\n52657|0.73611\n52658|0.51389\n52659|0.77778\n52660|0.77778\n52661|0.77778\n52662|0.75\n52663|0.5\n52664|0.5\n52665|0.51389\n52666|0.59722\n52667|0.5\n52668|0.73611\n52669|0.5\n52670|0.33333\n52671|0.38889\n52672|0.68056\n52673|0.81944\n52674|0.51389\n52675|0.55556\n52676|0.48611\n52677|0.38889\n52678|0.52778\n52679|0.77778\n52680|0.69444\n52681|0.5\n52682|0.5\n52683|0.73611\n52684|0.36111\n52685|0.5\n52686|0.5\n52687|0.65278\n52688|0.27778\n52689|0.34722\n52690|0.59722\n52691|0.58333\n52692|0.5\n52693|0.38889\n52694|0.625\n52695|0.66667\n52696|0.79167\n52697|0.61111\n52698|0.5\n52699|0.69444\n52700|0.61111\n52701|0.45833\n52702|0.5\n52703|0.5\n52704|0.41667\n52705|0.76389\n52706|0.52778\n52707|0.66667\n52708|0.5\n52709|0.69444\n52710|0.69444\n52711|0.77778\n52712|0.59722\n52713|0.75\n52714|0.63889\n52715|0.66667\n52716|0.38889\n52717|0.55556\n52718|0.56944\n52719|0.48611\n52720|0.59722\n52721|0.61111\n52722|0.73611\n52723|0.48611\n52724|0.65278\n52725|0.63889\n52726|0.23611\n52727|0.55556\n52728|0.66667\n52729|0.45833\n52730|0.5\n52731|0.625\n52732|0.33333\n52733|0.5\n52734|0.5\n52735|0.51389\n52736|0.29167\n52737|0.55556\n52738|0.51389\n52739|0.81944\n52740|0.5\n52741|0.38889\n52742|0.72222\n52743|0.5\n52744|0.45833\n52745|0.66667\n52746|0.47222\n52747|0.66667\n52748|0.75\n52749|0.75\n52750|0.66667\n52751|0.81944\n52752|0.54167\n52753|0.68056\n52754|0.86111\n52755|0.38889\n52756|0.625\n52757|0.58333\n52758|0.63889\n52759|0.5\n52760|0.55556\n52761|0.77778\n52762|0.63889\n52763|0.51389\n52764|0.47222\n52765|0.79167\n52766|0.59722\n52767|0.55556\n52768|0.88889\n52769|0.95833\n52770|0.68056\n52771|0.81944\n52772|0.47222\n52773|0.5\n52774|0.51389\n52775|0.5\n52776|0.65278\n52777|0.5\n52778|0.30556\n52779|0.44444\n52780|0.72222\n52781|0.81944\n52782|0.77778\n52783|0.36111\n52784|0.55556\n52785|0.15278\n52786|0.51389\n52787|0.5\n52788|0.55556\n52789|0.61111\n52790|0.40278\n52791|0.58333\n52792|0.52778\n52793|0.40278\n52794|0.47222\n52795|0.61111\n52796|0.27778\n52797|0.77778\n52798|0.5\n52799|0.41667\n52800|0.36111\n52801|0.45833\n52802|0.48611\n52803|0.51389\n52804|0.29167\n52805|0.47222\n52806|0.44444\n52807|0.51389\n52808|0.69444\n52809|0.54167\n52810|0.79167\n52811|0.48611\n52812|0.55556\n52813|0.36111\n52814|0.63889\n52815|0.48611\n52816|0.52778\n52817|0.44444\n52818|0.34722\n52819|0.66667\n52820|0.76389\n52821|0.43056\n52822|0.66667\n52823|0.5\n52824|0.5\n52825|0.55556\n52826|0.38889\n52827|0.55556\n52828|0.59722\n52829|0.73611\n52830|0.63889\n52831|0.77778\n52832|0.44444\n52833|0.52778\n52834|0.61111\n52835|0.5\n52836|0.65278\n52837|0.5\n52838|0.16667\n52839|0.55556\n52840|0.51389\n52841|0.88889\n52842|0.73611\n52843|0.93056\n52844|0.77778\n52845|0.5\n52846|0.44444\n52847|0.5\n52848|0.55556\n52849|0.41667\n52850|0.65278\n52851|0.45833\n52852|0.76389\n52853|0.36111\n52854|0.72222\n52855|0.84722\n52856|0.81944\n52857|0.77778\n52858|0.73611\n52859|0.63889\n52860|0.55556\n52861|0.44444\n52862|0.66667\n52863|0.51389\n52864|0.51389\n52865|0.5\n52866|0.5\n52867|0.56944\n52868|0.5\n52869|0.44444\n52870|0.55556\n52871|0.77778\n52872|0.5\n52873|0.5\n52874|0.48611\n52875|0.5\n52876|0.56944\n52877|0.5\n52878|0.72222\n52879|0.61111\n52880|0.5\n52881|0.51389\n52882|0.54167\n52883|0.75\n52884|0.81944\n52885|0.59722\n52886|0.91667\n52887|0.88889\n52888|0.36111\n52889|0.625\n52890|0.5\n52891|0.41667\n52892|0.76389\n52893|0.52778\n52894|0.52778\n52895|0.59722\n52896|0.66667\n52897|0.55556\n52898|0.66667\n52899|0.5\n52900|0.44444\n52901|0.63889\n52902|0.54167\n52903|0.47222\n52904|0.5\n52905|0.5\n52906|0.5\n52907|0.58333\n52908|0.55556\n52909|0.52778\n52910|0.38889\n52911|0.68056\n52912|0.59722\n52913|0.59722\n52914|0.44444\n52915|0.68056\n52916|0.83333\n52917|0.52778\n52918|0.91667\n52919|0.51389\n52920|0.55556\n52921|0.65278\n52922|0.625\n52923|0.61111\n52924|0.5\n52925|0.54167\n52926|0.5\n52927|0.625\n52928|0.5\n52929|0.61111\n52930|0.5\n52931|0.5\n52932|0.59722\n52933|0.5\n52934|0.69444\n52935|0.5\n52936|0.51389\n52937|0.51389\n52938|0.55556\n52939|0.27778\n52940|0.58333\n52941|0.56944\n52942|0.44444\n52943|0.77778\n52944|0.51389\n52945|0.55556\n52946|0.68056\n52947|0.43056\n52948|0.59722\n52949|0.72222\n52950|0.51389\n52951|0.77778\n52952|0.66667\n52953|0.51389\n52954|0.5\n52955|0.5\n52956|0.625\n52957|0.5\n52958|0.52778\n52959|0.52778\n52960|0.5\n52961|0.5\n52962|0.83333\n52963|0.61111\n52964|0.75\n52965|0.5\n52966|0.44444\n52967|0.45833\n52968|0.63889\n52969|0.625\n52970|0.5\n52971|0.44444\n52972|0.58333\n52973|0.52778\n52974|0.59722\n52975|0.56944\n52976|0.45833\n52977|0.5\n52978|0.33333\n52979|0.5\n52980|0.55556\n52981|0.5\n52982|0.55556\n52983|0.5\n52984|0.51389\n52985|0.5\n52986|0.5\n52987|0.55556\n52988|0.75\n52989|0.5\n52990|0.51389\n52991|0.54167\n52992|0.66667\n52993|0.52778\n52994|0.625\n52995|0.58333\n52996|0.59722\n52997|0.5\n52998|0.70833\n52999|0.81944\n53000|0.56944\n53001|0.47222\n53002|0.5\n53003|0.5\n53004|0.61111\n53005|0.5\n53006|0.38889\n53007|0.5\n53008|0.5\n53009|0.72222\n53010|0.47222\n53011|0.5\n53012|0.66667\n53013|0.75\n53014|0.5\n53015|0.5\n53016|0.5\n53017|0.5\n53018|0.56944\n53019|0.44444\n53020|0.375\n53021|0.5\n53022|0.72222\n53023|0.5\n53024|0.23611\n53025|0.61111\n53026|0.40278\n53027|0.5\n53028|0.59722\n53029|0.83333\n53030|0.91667\n53031|0.73611\n53032|0.58333\n53033|0.76389\n53034|0.5\n53035|0.625\n53036|0.51389\n53037|0.40278\n53038|0.5\n53039|0.52778\n53040|0.5\n53041|0.5\n53042|0.5\n53043|0.44444\n53044|0.40278\n53045|0.31944\n53046|0.33333\n53047|0.30556\n53048|0.52778\n53049|0.5\n53050|0.625\n53051|0.54167\n53052|0.5\n53053|0.5\n53054|0.5\n53055|0.61111\n53056|0.31944\n53057|0.5\n53058|0.56944\n53059|0.33333\n53060|0.76389\n53061|0.77778\n53062|0.58333\n53063|0.52778\n53064|0.27778\n53065|0.22222\n53066|0.18056\n53067|0.29167\n53068|0.30556\n53069|0.5\n53070|0.41667\n53071|0.83333\n53072|0.47222\n53073|0.5\n53074|0.5\n53075|0.5\n53076|0.54167\n53077|0.51389\n53078|0.5\n53079|0.5\n53080|0.72222\n53081|0.5\n53082|0.375\n53083|0.51389\n53084|0.84722\n53085|0.5\n53086|0.63889\n53087|0.66667\n53088|0.83333\n53089|0.73611\n53090|0.5\n53091|0.44444\n53092|0.55556\n53093|0.54167\n53094|0.72222\n53095|0.52778\n53096|0.38889\n53097|0.5\n53098|0.44444\n53099|0.61111\n53100|0.63889\n53101|0.52778\n53102|0.54167\n53103|0.5\n53104|0.5\n53105|0.5\n53106|0.51389\n53107|0.81944\n53108|0.84722\n53109|0.63889\n53110|0.77778\n53111|0.59722\n53112|0.56944\n53113|0.41667\n53114|0.51389\n53115|0.65278\n53116|0.83333\n53117|0.70833\n53118|0.61111\n53119|0.66667\n53120|0.5\n53121|0.66667\n53122|0.75\n53123|0.625\n53124|0.80556\n53125|0.75\n53126|0.77778\n53127|0.84722\n53128|0.73611\n53129|0.70833\n53130|0.77778\n53131|0.63889\n53132|0.625\n53133|0.5\n53134|0.44444\n53135|0.59722\n53136|0.59722\n53137|0.70833\n53138|0.80556\n53139|0.5\n53140|0.65278\n53141|0.66667\n53142|0.63889\n53143|0.66667\n53144|0.80556\n53145|0.80556\n53146|0.61111\n53147|0.55556\n53148|0.63889\n53149|0.70833\n53150|0.58333\n53151|0.56944\n53152|0.625\n53153|0.59722\n53154|0.51389\n53155|0.75\n53156|0.61111\n53157|0.81944\n53158|0.73611\n53159|0.66667\n53160|0.69444\n53161|0.69444\n53162|0.63889\n53163|0.68056\n53164|0.625\n53165|0.25\n53166|0.54167\n53167|0.51389\n53168|0.5\n53169|0.63889\n53170|0.69444\n53171|0.73611\n53172|0.76389\n53173|0.5\n53174|0.55556\n53175|0.81944\n53176|0.59722\n53177|0.68056\n53178|0.5\n53179|0.54167\n53180|0.625\n53181|0.75\n53182|0.52778\n53183|0.5\n53184|0.59722\n53185|0.56944\n53186|0.55556\n53187|0.59722\n53188|0.47222\n53189|0.55556\n53190|0.56944\n53191|0.52778\n53192|0.59722\n53193|0.5\n53194|0.83333\n53195|0.5\n53196|0.33333\n53197|0.55556\n53198|0.76389\n53199|0.54167\n53200|0.70833\n53201|0.79167\n53202|0.81944\n53203|0.69444\n53204|0.55556\n53205|0.72222\n53206|0.65278\n53207|0.77778\n53208|0.79167\n53209|0.83333\n53210|0.70833\n53211|0.72222\n53212|0.55556\n53213|0.88889\n53214|0.72222\n53215|0.875\n53216|0.76389\n53217|0.65278\n53218|0.76389\n53219|0.69444\n53220|0.5\n53221|0.59722\n53222|0.65278\n53223|0.86111\n53224|0.56944\n53225|0.55556\n53226|0.51389\n53227|0.55556\n53228|0.63889\n53229|0.38889\n53230|0.29167\n53231|0.40278\n53232|0.25\n53233|0.72222\n53234|0.66667\n53235|0.44444\n53236|0.5\n53237|0.40278\n53238|0.5\n53239|0.56944\n53240|0.61111\n53241|0.55556\n53242|0.5\n53243|0.5\n53244|0.47222\n53245|0.38889\n53246|0.52778\n53247|0.58333\n53248|0.27778\n53249|0.94444\n53250|0.83333\n53251|0.88889\n53252|0.77778\n53253|0.5\n53254|0.84722\n53255|0.72222\n53256|0.625\n53257|0.97222\n53258|0.84722\n53259|0.77778\n53260|0.33333\n53261|0.77778\n53262|0.76389\n53263|0.56944\n53264|0.625\n53265|0.27778\n53266|0.38889\n53267|0.65278\n53268|0.88889\n53269|0.73611\n53270|0.68056\n53271|0.68056\n53272|0.83333\n53273|0.66667\n53274|0.77778\n53275|0.125\n53276|0.79167\n53277|0.79167\n53278|0.83333\n53279|0.77778\n53280|0.79167\n53281|0.86111\n53282|0.66667\n53283|0.47222\n53284|0.77778\n53285|0.77778\n53286|0.91667\n53287|0.33333\n53288|0.125\n53289|0.19444\n53290|0.76389\n53291|0.76389\n53292|0.97222\n53293|0.70833\n53294|0.76389\n53295|0.625\n53296|0.77778\n53297|0.76389\n53298|0.77778\n53299|0.76389\n53300|0.83333\n53301|0.83333\n53302|0.65278\n53303|0.69444\n53304|0.93056\n53305|0.76389\n53306|0.54167\n53307|0.70833\n53308|0.93056\n53309|0.75\n53310|0.75\n53311|0.56944\n53312|0.56944\n53313|0.73611\n53314|0.80556\n53315|0.625\n53316|0.29167\n53317|0.375\n53318|0.88889\n53319|0.80556\n53320|0.79167\n53321|0.79167\n53322|0.73611\n53323|0.72222\n53324|0.72222\n53325|0.79167\n53326|0.75\n53327|0.61111\n53328|0.80556\n53329|0.69444\n53330|0.5\n53331|0.31944\n53332|0.72222\n53333|0.79167\n53334|0.45833\n53335|0.44444\n53336|0.54167\n53337|0.47222\n53338|0.76389\n53339|0.76389\n53340|0.69444\n53341|0.81944\n53342|0.61111\n53343|0.76389\n53344|0.625\n53345|0.91667\n53346|0.77778\n53347|0.76389\n53348|0.80556\n53349|0.72222\n53350|0.68056\n53351|0.75\n53352|0.47222\n53353|0.59722\n53354|0.73611\n53355|0.72222\n53356|0.86111\n53357|0.83333\n53358|0.83333\n53359|0.79167\n53360|0.38889\n53361|0.56944\n53362|0.61111\n53363|0.47222\n53364|0.76389\n53365|0.5\n53366|0.23611\n53367|0.72222\n53368|0.625\n53369|0.625\n53370|0.33333\n53371|0.66667\n53372|0.75\n53373|0.66667\n53374|0.61111\n53375|0.55556\n53376|0.76389\n53377|0.79167\n53378|0.70833\n53379|0.69444\n53380|0.73611\n53381|0.5\n53382|0.51389\n53383|0.58333\n53384|0.76389\n53385|0.77778\n53386|0.45833\n53387|0.72222\n53388|0.81944\n53389|0.75\n53390|0.70833\n53391|0.81944\n53392|0.72222\n53393|0.36111\n53394|0.54167\n53395|0.81944\n53396|0.84722\n53397|0.66667\n53398|0.56944\n53399|0.44444\n53400|0.83333\n53401|0.66667\n53402|0.75\n53403|0.81944\n53404|0.70833\n53405|0.76389\n53406|0.625\n53407|0.65278\n53408|0.61111\n53409|0.75\n53410|0.5\n53411|0.68056\n53412|0.75\n53413|0.45833\n53414|0.36111\n53415|0.76389\n53416|0.73611\n53417|0.56944\n53418|0.76389\n53419|0.79167\n53420|0.86111\n53421|0.66667\n53422|0.5\n53423|0.51389\n53424|0.59722\n53425|0.75\n53426|0.94444\n53427|0.72222\n53428|0.56944\n53429|0.72222\n53430|0.54167\n53431|0.51389\n53432|0.72222\n53433|0.69444\n53434|0.59722\n53435|0.47222\n53436|0.72222\n53437|0.59722\n53438|0.72222\n53439|0.75\n53440|0.66667\n53441|0.5\n53442|0.52778\n53443|0.66667\n53444|0.76389\n53445|0.91667\n53446|0.33333\n53447|0.45833\n53448|0.43056\n53449|0.45833\n53450|0.5\n53451|0.55556\n53452|0.76389\n53453|0.625\n53454|0.61111\n53455|0.70833\n53456|0.73611\n53457|0.75\n53458|0.30556\n53459|0.29167\n53460|0.43056\n53461|0.5\n53462|0.81944\n53463|0.91667\n53464|0.95833\n53465|0.58333\n53466|0.48611\n53467|0.5\n53468|0.68056\n53469|0.61111\n53470|0.72222\n53471|0.56944\n53472|0.51389\n53473|0.20833\n53474|0.75\n53475|0.84722\n53476|0.88889\n53477|0.69444\n53478|0.88889\n53479|0.5\n53480|0.625\n53481|0.625\n53482|0.68056\n53483|0.80556\n53484|0.76389\n53485|0.81944\n53486|0.76389\n53487|0.68056\n53488|0.5\n53489|0.18056\n53490|0.5\n53491|0.88889\n53492|0.77778\n53493|0.69444\n53494|0.94444\n53495|0.875\n53496|0.84722\n53497|0.69444\n53498|0.63889\n53499|0.54167\n53500|0.625\n53501|0.88889\n53502|0.68056\n53503|0.72222\n53504|0.75\n53505|0.80556\n53506|0.94444\n53507|0.52778\n53508|0.5\n53509|0.43056\n53510|0.44444\n53511|0.56944\n53512|0.63889\n53513|0.81944\n53514|0.48611\n53515|0.44444\n53516|0.36111\n53517|0.56944\n53518|0.5\n53519|0.83333\n53520|0.23611\n53521|0.79167\n53522|0.76389\n53523|0.69444\n53524|0.51389\n53525|0.44444\n53526|0.69444\n53527|0.86111\n53528|0.875\n53529|0.61111\n53530|0.27778\n53531|0.47222\n53532|0.40278\n53533|0.58333\n53534|0.69444\n53535|0.68056\n53536|0.73611\n53537|0.72222\n53538|0.33333\n53539|0.68056\n53540|0.56944\n53541|0.52778\n53542|0.625\n53543|0.48611\n53544|0.73611\n53545|0.81944\n53546|0.75\n53547|0.5\n53548|0.66667\n53549|0.23611\n53550|0.66667\n53551|0.65278\n53552|0.66667\n53553|0.5\n53554|0.27778\n53555|0.47222\n53556|0.23611\n53557|0.86111\n53558|0.625\n53559|0.66667\n53560|0.86111\n53561|0.69444\n53562|0.66667\n53563|0.77778\n53564|0.66667\n53565|0.77778\n53566|0.95833\n53567|0.93056\n53568|0.875\n53569|0.76389\n53570|0.72222\n53571|0.75\n53572|0.83333\n53573|0.91667\n53574|0.875\n53575|0.93056\n53576|0.88889\n53577|0.79167\n53578|0.66667\n53579|0.73611\n53580|0.875\n53581|0.88889\n53582|0.80556\n53583|0.66667\n53584|0.69444\n53585|0.63889\n53586|0.55556\n53587|0.54167\n53588|0.76389\n53589|0.93056\n53590|0.625\n53591|0.66667\n53592|0.52778\n53593|0.73611\n53594|0.84722\n53595|0.55556\n53596|0.86111\n53597|0.86111\n53598|0.65278\n53599|0.66667\n53600|0.5\n53601|0.63889\n53602|0.59722\n53603|0.55556\n53604|0.63889\n53605|0.47222\n53606|0.80556\n53607|0.93056\n53608|0.625\n53609|0.66667\n53610|0.61111\n53611|0.44444\n53612|0.55556\n53613|0.51389\n53614|0.55556\n53615|0.56944\n53616|0.375\n53617|0.58333\n53618|0.52778\n53619|0.70833\n53620|0.63889\n53621|0.76389\n53622|0.27778\n53623|0.51389\n53624|0.33333\n53625|0.38889\n53626|0.5\n53627|0.73611\n53628|0.625\n53629|0.84722\n53630|0.84722\n53631|0.70833\n53632|0.72222\n53633|0.75\n53634|0.48611\n53635|0.61111\n53636|0.625\n53637|0.75\n53638|0.65278\n53639|0.66667\n53640|0.73611\n53641|0.63889\n53642|0.72222\n53643|0.65278\n53644|0.66667\n53645|0.72222\n53646|0.70833\n53647|0.79167\n53648|0.79167\n53649|0.68056\n53650|0.59722\n53651|0.5\n53652|0.88889\n53653|0.59722\n53654|0.5\n53655|0.66667\n53656|0.66667\n53657|0.58333\n53658|0.55556\n53659|0.76389\n53660|0.77778\n53661|0.93056\n53662|0.97222\n53663|0.91667\n53664|0.79167\n53665|0.72222\n53666|0.77778\n53667|0.59722\n53668|0.41667\n53669|0.55556\n53670|0.5\n53671|0.72222\n53672|0.43056\n53673|0.5\n53674|0.5\n53675|0.5\n53676|0.54167\n53677|0.875\n53678|0.73611\n53679|0.61111\n53680|0.48611\n53681|0.5\n53682|0.58333\n53683|0.30556\n53684|0.625\n53685|0.59722\n53686|0.55556\n53687|0.44444\n53688|0.88889\n53689|0.47222\n53690|0.63889\n53691|0.5\n53692|0.83333\n53693|0.77778\n53694|0.83333\n53695|0.66667\n53696|0.66667\n53697|0.73611\n53698|0.83333\n53699|0.80556\n53700|0.52778\n53701|0.56944\n53702|0.51389\n53703|0.54167\n53704|0.61111\n53705|0.77778\n53706|0.83333\n53707|0.55556\n53708|0.45833\n53709|0.69444\n53710|0.65278\n53711|0.51389\n53712|0.51389\n53713|0.61111\n53714|0.38889\n53715|0.73611\n53716|0.54167\n53717|0.43056\n53718|0.97222\n53719|0.75\n53720|0.80556\n53721|0.69444\n53722|0.79167\n53723|0.83333\n53724|0.52778\n53725|0.77778\n53726|0.68056\n53727|0.5\n53728|0.55556\n53729|0.56944\n53730|0.5\n53731|0.66667\n53732|0.55556\n53733|0.59722\n53734|0.91667\n53735|0.56944\n53736|0.63889\n53737|0.45833\n53738|0.52778\n53739|0.72222\n53740|0.75\n53741|0.77778\n53742|0.68056\n53743|0.76389\n53744|0.73611\n53745|0.84722\n53746|0.23611\n53747|0.98611\n53748|0.33333\n53749|0.51389\n53750|0.91667\n53751|0.56944\n53752|0.66667\n53753|0.26389\n53754|0.88889\n53755|0.54167\n53756|0.20833\n53757|0.69444\n53758|0.51389\n53759|0.83333\n53760|0.56944\n53761|0.77778\n53762|0.83333\n53763|0.75\n53764|0.55556\n53765|0.86111\n53766|0.66667\n53767|0.36111\n53768|0.83333\n53769|0.59722\n53770|0.40278\n53771|0.20833\n53772|0.84722\n53773|0.56944\n53774|0.11111\n53775|0.58333\n53776|0.72222\n53777|0.56944\n53778|0.77778\n53779|0.59722\n53780|0.75\n53781|0.72222\n53782|0.77778\n53783|0.66667\n53784|0.65278\n53785|0.69444\n53786|0.5\n53787|0.625\n53788|0.31944\n53789|0.54167\n53790|0.73611\n53791|0.51389\n53792|0.38889\n53793|0.55556\n53794|0.5\n53795|0.55556\n53796|0.54167\n53797|0.70833\n53798|0.48611\n53799|0.65278\n53800|0.625\n53801|0.5\n53802|0.63889\n53803|0.59722\n53804|0.61111\n53805|0.55556\n53806|0.70833\n53807|0.26389\n53808|0.30556\n53809|0.65278\n53810|0.84722\n53811|0.44444\n53812|0.59722\n53813|0.66667\n53814|0.69444\n53815|0.5\n53816|0.63889\n53817|0.73611\n53818|0.72222\n53819|0.63889\n53820|0.72222\n53821|0.77778\n53822|0.5\n53823|0.22222\n53824|0.77778\n53825|0.77778\n53826|0.83333\n53827|0.70833\n53828|0.81944\n53829|0.88889\n53830|0.81944\n53831|0.81944\n53832|0.33333\n53833|0.76389\n53834|0.66667\n53835|0.69444\n53836|0.51389\n53837|0.84722\n53838|0.75\n53839|0.70833\n53840|0.61111\n53841|0.5\n53842|0.51389\n53843|0.69444\n53844|0.77778\n53845|0.61111\n53846|0.59722\n53847|0.70833\n53848|0.38889\n53849|0.5\n53850|0.61111\n53851|0.44444\n53852|0.52778\n53853|0.5\n53854|0.88889\n53855|0.61111\n53856|0.55556\n53857|0.66667\n53858|0.30556\n53859|0.66667\n53860|0.75\n53861|0.5\n53862|0.59722\n53863|0.52778\n53864|0.86111\n53865|0.56944\n53866|0.56944\n53867|0.38889\n53868|0.76389\n53869|0.83333\n53870|0.625\n53871|0.52778\n53872|0.80556\n53873|0.875\n53874|0.73611\n53875|0.56944\n53876|0.44444\n53877|0.56944\n53878|0.61111\n53879|0.5\n53880|0.51389\n53881|0.625\n53882|0.52778\n53883|0.76389\n53884|0.875\n53885|0.15278\n53886|0.44444\n53887|0.44444\n53888|0.56944\n53889|0.55556\n53890|0.56944\n53891|0.63889\n53892|0.70833\n53893|0.88889\n53894|0.5\n53895|0.52778\n53896|0.59722\n53897|0.59722\n53898|0.375\n53899|0.5\n53900|0.40278\n53901|0.55556\n53902|0.52778\n53903|0.66667\n53904|0.59722\n53905|0.55556\n53906|0.38889\n53907|0.5\n53908|0.54167\n53909|0.72222\n53910|0.63889\n53911|0.48611\n53912|0.055556\n53913|0.30556\n53914|0.5\n53915|0.36111\n53916|0.75\n53917|0.66667\n53918|0.76389\n53919|0.77778\n53920|0.65278\n53921|0.75\n53922|0.54167\n53923|0.40278\n53924|0.72222\n53925|0.44444\n53926|0.45833\n53927|0.5\n53928|0.5\n53929|0.45833\n53930|0.61111\n53931|0.70833\n53932|0.68056\n53933|0.52778\n53934|0.65278\n53935|0.44444\n53936|0.48611\n53937|0.69444\n53938|0.5\n53939|0.65278\n53940|0.70833\n53941|0.5\n53942|0.58333\n53943|0.55556\n53944|0.45833\n53945|0.52778\n53946|0.52778\n53947|0.55556\n53948|0.5\n53949|0.51389\n53950|0.40278\n53951|0.75\n53952|0.38889\n53953|0.51389\n53954|0.51389\n53955|0.63889\n53956|0.52778\n53957|0.45833\n53958|0.51389\n53959|0.48611\n53960|0.5\n53961|0.30556\n53962|0.45833\n53963|0.38889\n53964|0.73611\n53965|0.5\n53966|0.69444\n53967|0.5\n53968|0.59722\n53969|0.55556\n53970|0.84722\n53971|0.73611\n53972|0.83333\n53973|0.51389\n53974|0.66667\n53975|0.36111\n53976|0.5\n53977|0.76389\n53978|0.5\n53979|0.63889\n53980|0.5\n53981|0.5\n53982|0.55556\n53983|0.52778\n53984|0.51389\n53985|0.5\n53986|0.5\n53987|0.68056\n53988|0.5\n53989|0.51389\n53990|0.55556\n53991|0.375\n53992|0.5\n53993|0.72222\n53994|0.61111\n53995|0.70833\n53996|0.61111\n53997|0.44444\n53998|0.5\n53999|0.51389\n54000|0.40278\n54001|0.44444\n54002|0.59722\n54003|0.5\n54004|0.77778\n54005|0.5\n54006|0.27778\n54007|0.72222\n54008|0.875\n54009|0.47222\n54010|0.48611\n54011|0.5\n54012|0.38889\n54013|0.52778\n54014|0.5\n54015|0.5\n54016|0.44444\n54017|0.5\n54018|0.51389\n54019|0.5\n54020|0.5\n54021|0.55556\n54022|0.5\n54023|0.5\n54024|0.81944\n54025|0.5\n54026|0.625\n54027|0.5\n54028|0.52778\n54029|0.72222\n54030|0.58333\n54031|0.66667\n54032|0.52778\n54033|0.48611\n54034|0.63889\n54035|0.5\n54036|0.5\n54037|0.27778\n54038|0.47222\n54039|0.45833\n54040|0.31944\n54041|0.19444\n54042|0.5\n54043|0.81944\n54044|0.55556\n54045|0.56944\n54046|0.5\n54047|0.56944\n54048|0.5\n54049|0.51389\n54050|0.69444\n54051|0.56944\n54052|0.73611\n54053|0.5\n54054|0.33333\n54055|0.33333\n54056|0.27778\n54057|0.93056\n54058|0.86111\n54059|0.70833\n54060|0.5\n54061|0.58333\n54062|0.55556\n54063|0.5\n54064|0.79167\n54065|0.40278\n54066|0.73611\n54067|0.63889\n54068|0.77778\n54069|0.72222\n54070|0.52778\n54071|0.59722\n54072|0.80556\n54073|0.79167\n54074|0.5\n54075|0.66667\n54076|0.80556\n54077|0.72222\n54078|0.70833\n54079|0.80556\n54080|0.52778\n54081|0.55556\n54082|0.51389\n54083|0.5\n54084|0.55556\n54085|0.45833\n54086|0.18056\n54087|0.5\n54088|0.5\n54089|0.55556\n54090|0.55556\n54091|0.61111\n54092|0.59722\n54093|0.90278\n54094|0.625\n54095|0.59722\n54096|0.63889\n54097|0.63889\n54098|0.79167\n54099|0.69444\n54100|0.5\n54101|0.65278\n54102|0.72222\n54103|0.625\n54104|0.79167\n54105|0.5\n54106|0.54167\n54107|0.083333\n54108|0.5\n54109|0.69444\n54110|0.5\n54111|0.38889\n54112|0.5\n54113|0.625\n54114|0.5\n54115|0.55556\n54116|0.47222\n54117|0.47222\n54118|0.61111\n54119|0.5\n54120|0.41667\n54121|0.5\n54122|0.55556\n54123|0.51389\n54124|0.58333\n54125|0.56944\n54126|0.68056\n54127|0.45833\n54128|0.66667\n54129|0.55556\n54130|0.22222\n54131|0.33333\n54132|0.61111\n54133|0.56944\n54134|0.55556\n54135|0.33333\n54136|0.26389\n54137|0.5\n54138|0.5\n54139|0.61111\n54140|0.5\n54141|0.5\n54142|0.55556\n54143|0.51389\n54144|0.68056\n54145|0.54167\n54146|0.45833\n54147|0.55556\n54148|0.69444\n54149|0.65278\n54150|0.44444\n54151|0.5\n54152|0.5\n54153|0.58333\n54154|0.23611\n54155|0.72222\n54156|0.79167\n54157|0.65278\n54158|0.91667\n54159|0.47222\n54160|0.76389\n54161|0.5\n54162|0.625\n54163|0.59722\n54164|0.65278\n54165|0.55556\n54166|0.79167\n54167|0.5\n54168|0.51389\n54169|0.33333\n54170|0.66667\n54171|0.5\n54172|0.5\n54173|0.51389\n54174|0.52778\n54175|0.52778\n54176|0.51389\n54177|0.76389\n54178|0.55556\n54179|0.66667\n54180|0.5\n54181|0.68056\n54182|0.69444\n54183|0.5\n54184|0.65278\n54185|0.5\n54186|0.5\n54187|0.90278\n54188|0.44444\n54189|0.44444\n54190|0.19444\n54191|0.5\n54192|0.52778\n54193|0.44444\n54194|0.5\n54195|0.34722\n54196|0.41667\n54197|0.56944\n54198|0.5\n54199|0.51389\n54200|0.5\n54201|0.70833\n54202|0.81944\n54203|0.86111\n54204|0.94444\n54205|0.54167\n54206|0.72222\n54207|0.5\n54208|0.29167\n54209|0.73611\n54210|0.72222\n54211|0.30556\n54212|0.30556\n54213|0.73611\n54214|0.27778\n54215|0.48611\n54216|0.66667\n54217|0.5\n54218|0.51389\n54219|0.61111\n54220|0.47222\n54221|0.38889\n54222|0.79167\n54223|0.61111\n54224|0.80556\n54225|0.61111\n54226|0.76389\n54227|0.76389\n54228|0.5\n54229|0.76389\n54230|0.61111\n54231|0.68056\n54232|0.61111\n54233|0.51389\n54234|0.5\n54235|0.5\n54236|0.58333\n54237|0.76389\n54238|0.93056\n54239|0.51389\n54240|0.58333\n54241|0.44444\n54242|0.36111\n54243|0.38889\n54244|0.51389\n54245|0.27778\n54246|0.20833\n54247|0.70833\n54248|0.54167\n54249|0.33333\n54250|0.56944\n54251|0.45833\n54252|0.33333\n54253|0.43056\n54254|0.5\n54255|0.61111\n54256|0.5\n54257|0.61111\n54258|0.58333\n54259|0.55556\n54260|0.51389\n54261|0.75\n54262|0.45833\n54263|0.31944\n54264|0.11111\n54265|0.55556\n54266|0.58333\n54267|0.58333\n54268|0.16667\n54269|0.36111\n54270|0.38889\n54271|0.55556\n54272|0.66667\n54273|0.77778\n54274|0.5\n54275|0.31944\n54276|0.81944\n54277|0.81944\n54278|0.44444\n54279|0.625\n54280|0.375\n54281|0.5\n54282|0.44444\n54283|0.5\n54284|0.36111\n54285|0.44444\n54286|0.625\n54287|0.44444\n54288|0.69444\n54289|0.5\n54290|0.51389\n54291|0.59722\n54292|0.55556\n54293|0.33333\n54294|0.47222\n54295|0.52778\n54296|0.52778\n54297|0.52778\n54298|0.51389\n54299|0.59722\n54300|0.375\n54301|0.34722\n54302|0.47222\n54303|0.40278\n54304|0.77778\n54305|0.81944\n54306|0.625\n54307|0.5\n54308|0.5\n54309|0.81944\n54310|0.5\n54311|0.5\n54312|0.51389\n54313|0.27778\n54314|0.36111\n54315|0.33333\n54316|0.55556\n54317|0.59722\n54318|0.5\n54319|0.54167\n54320|0.58333\n54321|0.5\n54322|0.5\n54323|0.55556\n54324|0.58333\n54325|0.33333\n54326|0.40278\n54327|0.30556\n54328|0.375\n54329|0.44444\n54330|0.18056\n54331|0.48611\n54332|0.43056\n54333|0.44444\n54334|0.40278\n54335|0.38889\n54336|0.5\n54337|0.61111\n54338|0.51389\n54339|0.44444\n54340|0.44444\n54341|0.27778\n54342|0.33333\n54343|0.44444\n54344|0.51389\n54345|0.5\n54346|0.43056\n54347|0.5\n54348|0.69444\n54349|0.875\n54350|0.79167\n54351|0.77778\n54352|0.73611\n54353|0.54167\n54354|0.52778\n54355|0.625\n54356|0.63889\n54357|0.5\n54358|0.54167\n54359|0.55556\n54360|0.55556\n54361|0.61111\n54362|0.5\n54363|0.38889\n54364|0.44444\n54365|0.44444\n54366|0.44444\n54367|0.30556\n54368|0.51389\n54369|0.33333\n54370|0.5\n54371|0.61111\n54372|0.26389\n54373|0.375\n54374|0.72222\n54375|0.47222\n54376|0.33333\n54377|0.40278\n54378|0.43056\n54379|0.41667\n54380|0.47222\n54381|0.65278\n54382|0.55556\n54383|0.41667\n54384|0.61111\n54385|0.5\n54386|0.5\n54387|0.61111\n54388|0.59722\n54389|0.75\n54390|0.625\n54391|0.69444\n54392|0.55556\n54393|0.61111\n54394|0.66667\n54395|0.5\n54396|0.73611\n54397|0.63889\n54398|0.59722\n54399|0.51389\n54400|0.55556\n54401|0.44444\n54402|0.55556\n54403|0.61111\n54404|0.5\n54405|0.66667\n54406|0.55556\n54407|0.55556\n54408|0.59722\n54409|0.68056\n54410|0.72222\n54411|0.76389\n54412|0.73611\n54413|0.66667\n54414|0.93056\n54415|0.94444\n54416|0.69444\n54417|0.5\n54418|0.81944\n54419|0.93056\n54420|0.97222\n54421|0.75\n54422|0.72222\n54423|0.34722\n54424|0.75\n54425|0.40278\n54426|0.20833\n54427|0.30556\n54428|0.22222\n54429|0.43056\n54430|0.38889\n54431|0.47222\n54432|0.66667\n54433|0.5\n54434|0.61111\n54435|0.66667\n54436|0.625\n54437|0.68056\n54438|0.45833\n54439|0.68056\n54440|0.54167\n54441|0.625\n54442|0.44444\n54443|0.36111\n54444|0.47222\n54445|0.47222\n54446|0.41667\n54447|0.5\n54448|0.375\n54449|0.48611\n54450|0.59722\n54451|0.55556\n54452|0.61111\n54453|0.61111\n54454|0.38889\n54455|0.48611\n54456|0.52778\n54457|0.34722\n54458|0.38889\n54459|0.44444\n54460|0.56944\n54461|0.38889\n54462|0.23611\n54463|0.48611\n54464|0.38889\n54465|0.41667\n54466|0.55556\n54467|0.5\n54468|0.72222\n54469|0.59722\n54470|0.55556\n54471|0.80556\n54472|0.66667\n54473|0.76389\n54474|0.75\n54475|0.47222\n54476|0.55556\n54477|0.55556\n54478|0.44444\n54479|0.77778\n54480|0.77778\n54481|0.83333\n54482|0.86111\n54483|0.84722\n54484|0.70833\n54485|0.91667\n54486|0.5\n54487|0.72222\n54488|0.5\n54489|0.5\n54490|0.45833\n54491|0.22222\n54492|0.79167\n54493|0.51389\n54494|0.52778\n54495|0.81944\n54496|0.88889\n54497|0.48611\n54498|0.5\n54499|0.11111\n54500|0.47222\n54501|0.5\n54502|0.76389\n54503|0.72222\n54504|0.5\n54505|0.5\n54506|0.40278\n54507|0.5\n54508|0.54167\n54509|0.59722\n54510|0.72222\n54511|0.58333\n54512|0.38889\n54513|0.45833\n54514|0.48611\n54515|0.66667\n54516|0.63889\n54517|0.5\n54518|0.66667\n54519|0.44444\n54520|0.5\n54521|0.59722\n54522|0.65278\n54523|0.59722\n54524|0.5\n54525|0.47222\n54526|0.5\n54527|0.55556\n54528|0.86111\n54529|0.69444\n54530|0.56944\n54531|0.59722\n54532|0.55556\n54533|0.68056\n54534|0.59722\n54535|0.45833\n54536|0.66667\n54537|0.63889\n54538|0.38889\n54539|0.30556\n54540|0.54167\n54541|0.36111\n54542|0.5\n54543|0.44444\n54544|0.77778\n54545|0.69444\n54546|0.625\n54547|0.84722\n54548|0.63889\n54549|0.63889\n54550|0.61111\n54551|0.5\n54552|0.51389\n54553|0.66667\n54554|0.79167\n54555|0.90278\n54556|0.68056\n54557|0.72222\n54558|0.69444\n54559|0.73611\n54560|0.73611\n54561|0.84722\n54562|0.73611\n54563|0.54167\n54564|0.58333\n54565|0.61111\n54566|0.875\n54567|0.875\n54568|0.75\n54569|0.59722\n54570|0.77778\n54571|0.77778\n54572|0.68056\n54573|0.72222\n54574|0.66667\n54575|0.77778\n54576|0.55556\n54577|0.77778\n54578|0.44444\n54579|0.63889\n54580|0.75\n54581|0.875\n54582|0.81944\n54583|0.38889\n54584|0.66667\n54585|0.73611\n54586|0.55556\n54587|0.30556\n54588|0.51389\n54589|0.44444\n54590|0.52778\n54591|0.44444\n54592|0.54167\n54593|0.68056\n54594|0.75\n54595|0.66667\n54596|0.66667\n54597|0.68056\n54598|0.75\n54599|0.73611\n54600|0.70833\n54601|0.66667\n54602|0.73611\n54603|0.72222\n54604|0.66667\n54605|0.44444\n54606|0.51389\n54607|0.5\n54608|0.5\n54609|0.36111\n54610|0.5\n54611|0.65278\n54612|0.5\n54613|0.54167\n54614|0.5\n54615|0.58333\n54616|0.48611\n54617|0.72222\n54618|0.61111\n54619|0.625\n54620|0.54167\n54621|0.5\n54622|0.51389\n54623|0.44444\n54624|0.52778\n54625|0.5\n54626|0.41667\n54627|0.5\n54628|0.5\n54629|0.80556\n54630|0.77778\n54631|0.55556\n54632|0.54167\n54633|0.75\n54634|0.41667\n54635|0.55556\n54636|0.58333\n54637|0.70833\n54638|0.63889\n54639|0.5\n54640|0.5\n54641|0.5\n54642|0.58333\n54643|0.5\n54644|0.55556\n54645|0.68056\n54646|0.88889\n54647|0.70833\n54648|0.72222\n54649|0.61111\n54650|0.5\n54651|0.5\n54652|0.51389\n54653|0.51389\n54654|0.65278\n54655|0.43056\n54656|0.54167\n54657|0.52778\n54658|0.76389\n54659|0.59722\n54660|0.41667\n54661|0.83333\n54662|0.66667\n54663|0.63889\n54664|0.73611\n54665|0.68056\n54666|0.40278\n54667|0.5\n54668|0.48611\n54669|0.61111\n54670|0.5\n54671|0.33333\n54672|0.36111\n54673|0.52778\n54674|0.83333\n54675|0.47222\n54676|0.41667\n54677|0.54167\n54678|0.30556\n54679|0.34722\n54680|0.34722\n54681|0.61111\n54682|0.55556\n54683|0.33333\n54684|0.375\n54685|0.34722\n54686|0.33333\n54687|0.5\n54688|0.5\n54689|0.65278\n54690|0.48611\n54691|0.51389\n54692|0.69444\n54693|0.56944\n54694|0.80556\n54695|0.77778\n54696|0.79167\n54697|0.5\n54698|0.44444\n54699|0.65278\n54700|0.54167\n54701|0.5\n54702|0.5\n54703|0.5\n54704|0.5\n54705|0.38889\n54706|0.76389\n54707|0.875\n54708|0.70833\n54709|0.55556\n54710|0.61111\n54711|0.5\n54712|0.61111\n54713|0.5\n54714|0.58333\n54715|0.61111\n54716|0.58333\n54717|0.72222\n54718|0.91667\n54719|0.33333\n54720|0.5\n54721|0.5\n54722|0.33333\n54723|0.40278\n54724|0.45833\n54725|0.54167\n54726|0.48611\n54727|0.41667\n54728|0.47222\n54729|0.58333\n54730|0.76389\n54731|0.41667\n54732|0.44444\n54733|0.51389\n54734|0.44444\n54735|0.44444\n54736|0.5\n54737|0.16667\n54738|0.16667\n54739|0.55556\n54740|0.52778\n54741|0.33333\n54742|0.45833\n54743|0.5\n54744|0.5\n54745|0.41667\n54746|0.55556\n54747|0.30556\n54748|0.5\n54749|0.5\n54750|0.5\n54751|0.36111\n54752|0.38889\n54753|0.5\n54754|0.48611\n54755|0.45833\n54756|0.5\n54757|0.5\n54758|0.5\n54759|0.51389\n54760|0.44444\n54761|0.44444\n54762|0.36111\n54763|0.61111\n54764|0.66667\n54765|0.84722\n54766|0.75\n54767|0.38889\n54768|0.43056\n54769|0.45833\n54770|0.65278\n54771|0.58333\n54772|0.55556\n54773|0.63889\n54774|0.61111\n54775|0.625\n54776|0.44444\n54777|0.5\n54778|0.61111\n54779|0.56944\n54780|0.625\n54781|0.47222\n54782|0.61111\n54783|0.81944\n54784|0.55556\n54785|0.40278\n54786|0.5\n54787|0.52778\n54788|0.83333\n54789|0.76389\n54790|0.58333\n54791|0.52778\n54792|0.38889\n54793|0.5\n54794|0.48611\n54795|0.625\n54796|0.47222\n54797|0.72222\n54798|0.55556\n54799|0.44444\n54800|0.58333\n54801|0.51389\n54802|0.43056\n54803|0.61111\n54804|0.58333\n54805|0.55556\n54806|0.66667\n54807|0.61111\n54808|0.66667\n54809|0.81944\n54810|0.63889\n54811|0.51389\n54812|0.47222\n54813|0.41667\n54814|0.68056\n54815|0.77778\n54816|0.26389\n54817|0.68056\n54818|0.48611\n54819|0.38889\n54820|0.875\n54821|0.56944\n54822|0.5\n54823|0.34722\n54824|0.69444\n54825|0.59722\n54826|0.22222\n54827|0.75\n54828|0.44444\n54829|0.5\n54830|0.80556\n54831|0.5\n54832|0.65278\n54833|0.51389\n54834|0.41667\n54835|0.55556\n54836|0.55556\n54837|0.5\n54838|0.5\n54839|0.80556\n54840|0.69444\n54841|0.72222\n54842|0.66667\n54843|0.5\n54844|0.79167\n54845|0.61111\n54846|0.63889\n54847|0.625\n54848|0.69444\n54849|0.45833\n54850|0.45833\n54851|0.52778\n54852|0.58333\n54853|0.66667\n54854|0.875\n54855|0.51389\n54856|0.47222\n54857|0.25\n54858|0.56944\n54859|0.66667\n54860|0.48611\n54861|0.51389\n54862|0.5\n54863|0.875\n54864|0.63889\n54865|0.55556\n54866|0.70833\n54867|0.625\n54868|0.83333\n54869|0.5\n54870|0.26389\n54871|0.375\n54872|0.41667\n54873|0.51389\n54874|0.55556\n54875|0.69444\n54876|0.40278\n54877|0.48611\n54878|0.5\n54879|0.77778\n54880|0.61111\n54881|0.66667\n54882|0.72222\n54883|0.80556\n54884|0.81944\n54885|0.54167\n54886|0.44444\n54887|0.54167\n54888|0.5\n54889|0.69444\n54890|0.31944\n54891|0.80556\n54892|0.75\n54893|0.41667\n54894|0.47222\n54895|0.86111\n54896|0.66667\n54897|0.80556\n54898|0.66667\n54899|0.84722\n54900|0.88889\n54901|0.61111\n54902|0.51389\n54903|0.44444\n54904|0.61111\n54905|0.55556\n54906|0.79167\n54907|0.66667\n54908|0.72222\n54909|0.70833\n54910|0.5\n54911|0.69444\n54912|0.59722\n54913|0.90278\n54914|0.73611\n54915|0.43056\n54916|0.5\n54917|0.44444\n54918|0.56944\n54919|0.41667\n54920|0.5\n54921|0.625\n54922|0.70833\n54923|0.76389\n54924|0.54167\n54925|0.55556\n54926|0.59722\n54927|0.5\n54928|0.55556\n54929|0.55556\n54930|0.58333\n54931|0.75\n54932|0.73611\n54933|0.65278\n54934|0.63889\n54935|0.59722\n54936|0.86111\n54937|0.77778\n54938|0.81944\n54939|0.5\n54940|0.5\n54941|0.66667\n54942|0.5\n54943|0.51389\n54944|0.625\n54945|0.55556\n54946|0.48611\n54947|0.44444\n54948|0.5\n54949|0.66667\n54950|0.58333\n54951|0.58333\n54952|0.77778\n54953|0.23611\n54954|0.33333\n54955|0.5\n54956|0.38889\n54957|0.5\n54958|0.33333\n54959|0.44444\n54960|0.43056\n54961|0.58333\n54962|0.58333\n54963|0.83333\n54964|0.75\n54965|0.65278\n54966|0.55556\n54967|0.31944\n54968|0.47222\n54969|0.5\n54970|0.52778\n54971|0.47222\n54972|0.5\n54973|0.47222\n54974|0.77778\n54975|0.58333\n54976|0.5\n54977|0.55556\n54978|0.27778\n54979|0.5\n54980|0.58333\n54981|0.5\n54982|0.56944\n54983|0.45833\n54984|0.5\n54985|0.76389\n54986|0.56944\n54987|0.58333\n54988|0.5\n54989|0.81944\n54990|0.84722\n54991|0.38889\n54992|0.5\n54993|0.72222\n54994|0.73611\n54995|0.5\n54996|0.66667\n54997|0.47222\n54998|0.33333\n54999|0.38889\n55000|0.55556\n55001|0.5\n55002|0.66667\n55003|0.51389\n55004|0.5\n55005|0.88889\n55006|0.55556\n55007|0.61111\n55008|0.66667\n55009|0.5\n55010|0.70833\n55011|0.61111\n55012|0.51389\n55013|0.61111\n55014|0.69444\n55015|0.48611\n55016|0.5\n55017|0.36111\n55018|0.66667\n55019|0.59722\n55020|0.48611\n55021|0.44444\n55022|0.11111\n55023|0.875\n55024|0.51389\n55025|0.52778\n55026|0.5\n55027|0.5\n55028|0.5\n55029|0.625\n55030|0.5\n55031|0.54167\n55032|0.41667\n55033|0.48611\n55034|0.55556\n55035|0.40278\n55036|0.54167\n55037|0.44444\n55038|0.44444\n55039|0.40278\n55040|0.40278\n55041|0.47222\n55042|0.52778\n55043|0.66667\n55044|0.38889\n55045|0.72222\n55046|0.5\n55047|0.36111\n55048|0.48611\n55049|0.69444\n55050|0.77778\n55051|0.86111\n55052|0.61111\n55053|0.47222\n55054|0.58333\n55055|0.5\n55056|0.55556\n55057|0.5\n55058|0.5\n55059|0.5\n55060|0.5\n55061|0.5\n55062|0.5\n55063|0.5\n55064|0.5\n55065|0.5\n55066|0.5\n55067|0.72222\n55068|0.66667\n55069|0.58333\n55070|0.70833\n55071|0.80556\n55072|0.69444\n55073|0.5\n55074|0.59722\n55075|0.34722\n55076|0.29167\n55077|0.81944\n55078|0.58333\n55079|0.81944\n55080|0.33333\n55081|0.38889\n55082|0.33333\n55083|0.73611\n55084|0.38889\n55085|0.70833\n55086|0.58333\n55087|0.47222\n55088|0.48611\n55089|0.43056\n55090|0.41667\n55091|0.36111\n55092|0.31944\n55093|0.36111\n55094|0.48611\n55095|0.52778\n55096|0.83333\n55097|0.56944\n55098|0.58333\n55099|0.70833\n55100|0.5\n55101|0.45833\n55102|0.54167\n55103|0.51389\n55104|0.51389\n55105|0.52778\n55106|0.52778\n55107|0.47222\n55108|0.625\n55109|0.52778\n55110|0.5\n55111|0.5\n55112|0.44444\n55113|0.20833\n55114|0.43056\n55115|0.5\n55116|0.5\n55117|0.43056\n55118|0.55556\n55119|0.47222\n55120|0.80556\n55121|0.31944\n55122|0.33333\n55123|0.31944\n55124|0.43056\n55125|0.40278\n55126|0.54167\n55127|0.38889\n55128|0.72222\n55129|0.36111\n55130|0.68056\n55131|0.61111\n55132|0.44444\n55133|0.41667\n55134|0.5\n55135|0.47222\n55136|0.20833\n55137|0.5\n55138|0.75\n55139|0.61111\n55140|0.5\n55141|0.63889\n55142|0.58333\n55143|0.5\n55144|0.5\n55145|0.75\n55146|0.66667\n55147|0.5\n55148|0.84722\n55149|0.63889\n55150|0.45833\n55151|0.51389\n55152|0.44444\n55153|0.59722\n55154|0.48611\n55155|0.38889\n55156|0.5\n55157|0.5\n55158|0.63889\n55159|0.38889\n55160|0.55556\n55161|0.5\n55162|0.65278\n55163|0.55556\n55164|0.77778\n55165|0.5\n55166|0.5\n55167|0.36111\n55168|0.44444\n55169|0.65278\n55170|0.70833\n55171|0.45833\n55172|0.5\n55173|0.56944\n55174|0.59722\n55175|0.5\n55176|0.51389\n55177|0.5\n55178|0.66667\n55179|0.34722\n55180|0.63889\n55181|0.5\n55182|0.47222\n55183|0.5\n55184|0.33333\n55185|0.33333\n55186|0.5\n55187|0.5\n55188|0.5\n55189|0.44444\n55190|0.45833\n55191|0.5\n55192|0.5\n55193|0.5\n55194|0.56944\n55195|0.55556\n55196|0.58333\n55197|0.55556\n55198|0.63889\n55199|0.45833\n55200|0.36111\n55201|0.69444\n55202|0.5\n55203|0.56944\n55204|0.56944\n55205|0.5\n55206|0.5\n55207|0.56944\n55208|0.5\n55209|0.58333\n55210|0.5\n55211|0.5\n55212|0.5\n55213|0.55556\n55214|0.61111\n55215|0.51389\n55216|0.5\n55217|0.51389\n55218|0.73611\n55219|0.41667\n55220|0.5\n55221|0.5\n55222|0.5\n55223|0.5\n55224|0.73611\n55225|0.59722\n55226|0.5\n55227|0.63889\n55228|0.55556\n55229|0.5\n55230|0.69444\n55231|0.625\n55232|0.5\n55233|0.65278\n55234|0.5\n55235|0.68056\n55236|0.58333\n55237|0.63889\n55238|0.5\n55239|0.59722\n55240|0.51389\n55241|0.5\n55242|0.5\n55243|0.5\n55244|0.5\n55245|0.38889\n55246|0.5\n55247|0.54167\n55248|0.5\n55249|0.44444\n55250|0.61111\n55251|0.29167\n55252|0.5\n55253|0.70833\n55254|0.625\n55255|0.375\n55256|0.5\n55257|0.55556\n55258|0.84722\n55259|0.29167\n55260|0.72222\n55261|0.45833\n55262|0.52778\n55263|0.55556\n55264|0.5\n55265|0.5\n55266|0.33333\n55267|0.44444\n55268|0.65278\n55269|0.5\n55270|0.36111\n55271|0.77778\n55272|0.83333\n55273|0.375\n55274|0.47222\n55275|0.5\n55276|0.55556\n55277|0.55556\n55278|0.52778\n55279|0.66667\n55280|0.30556\n55281|0.43056\n55282|0.55556\n55283|0.36111\n55284|0.5\n55285|0.51389\n55286|0.5\n55287|0.55556\n55288|0.13889\n55289|0.625\n55290|0.97222\n55291|0.58333\n55292|0.61111\n55293|0.59722\n55294|0.30556\n55295|0.55556\n55296|0.5\n55297|0.75\n55298|0.83333\n55299|0.56944\n55300|0.61111\n55301|0.5\n55302|0.52778\n55303|0.75\n55304|0.56944\n55305|0.44444\n55306|0.72222\n55307|0.54167\n55308|0.72222\n55309|0.73611\n55310|0.5\n55311|0.44444\n55312|0.5\n55313|0.5\n55314|0.5\n55315|0.47222\n55316|0.5\n55317|0.55556\n55318|0.38889\n55319|0.51389\n55320|0.65278\n55321|0.5\n55322|0.77778\n55323|0.63889\n55324|0.30556\n55325|0.59722\n55326|0.55556\n55327|0.5\n55328|0.375\n55329|0.5\n55330|0.77778\n55331|0.65278\n55332|0.34722\n55333|0.55556\n55334|0.5\n55335|0.625\n55336|0.375\n55337|0.5\n55338|0.38889\n55339|0.31944\n55340|0.5\n55341|0.58333\n55342|0.22222\n55343|0.58333\n55344|0.72222\n55345|0.90278\n55346|0.5\n55347|0.5\n55348|0.40278\n55349|0.70833\n55350|0.56944\n55351|0.83333\n55352|0.55556\n55353|0.61111\n55354|0.80556\n55355|0.48611\n55356|0.58333\n55357|0.70833\n55358|0.68056\n55359|0.59722\n55360|0.68056\n55361|0.52778\n55362|0.66667\n55363|0.5\n55364|0.58333\n55365|0.66667\n55366|0.625\n55367|0.73611\n55368|0.5\n55369|0.5\n55370|0.79167\n55371|0.54167\n55372|0.5\n55373|0.41667\n55374|0.54167\n55375|0.73611\n55376|0.70833\n55377|0.52778\n55378|0.55556\n55379|0.61111\n55380|0.5\n55381|0.44444\n55382|0.5\n55383|0.5\n55384|0.5\n55385|0.41667\n55386|0.55556\n55387|0.5\n55388|0.5\n55389|0.52778\n55390|0.88889\n55391|0.54167\n55392|0.5\n55393|0.66667\n55394|0.44444\n55395|0.63889\n55396|0.51389\n55397|0.55556\n55398|0.5\n55399|0.38889\n55400|0.55556\n55401|0.79167\n55402|0.66667\n55403|0.47222\n55404|0.5\n55405|0.5\n55406|0.45833\n55407|0.61111\n55408|0.5\n55409|0.69444\n55410|0.38889\n55411|0.61111\n55412|0.79167\n55413|0.61111\n55414|0.5\n55415|0.66667\n55416|0.5\n55417|0.52778\n55418|0.79167\n55419|0.5\n55420|0.375\n55421|0.51389\n55422|0.61111\n55423|0.5\n55424|0.56944\n55425|0.51389\n55426|0.48611\n55427|0.5\n55428|0.5\n55429|0.25\n55430|0.61111\n55431|0.47222\n55432|0.5\n55433|0.5\n55434|0.625\n55435|0.58333\n55436|0.66667\n55437|0.56944\n55438|0.30556\n55439|0.55556\n55440|0.65278\n55441|0.38889\n55442|0.5\n55443|0.59722\n55444|0.5\n55445|0.55556\n55446|0.5\n55447|0.51389\n55448|0.5\n55449|0.55556\n55450|0.375\n55451|0.55556\n55452|0.5\n55453|0.5\n55454|0.5\n55455|0.80556\n55456|0.5\n55457|0.5\n55458|0.55556\n55459|0.68056\n55460|0.55556\n55461|0.68056\n55462|0.5\n55463|0.66667\n55464|0.55556\n55465|0.54167\n55466|0.5\n55467|0.44444\n55468|0.5\n55469|0.5\n55470|0.5\n55471|0.69444\n55472|0.5\n55473|0.5\n55474|0.5\n55475|0.5\n55476|0.5\n55477|0.52778\n55478|0.69444\n55479|0.5\n55480|0.55556\n55481|0.41667\n55482|0.72222\n55483|0.625\n55484|0.52778\n55485|0.56944\n55486|0.55556\n55487|0.52778\n55488|0.5\n55489|0.5\n55490|0.41667\n55491|0.5\n55492|0.68056\n55493|0.72222\n55494|0.5\n55495|0.44444\n55496|0.51389\n55497|0.40278\n55498|0.41667\n55499|0.63889\n55500|0.51389\n55501|0.38889\n55502|0.72222\n55503|0.40278\n55504|0.55556\n55505|0.5\n55506|0.72222\n55507|0.5\n55508|0.51389\n55509|0.48611\n55510|0.66667\n55511|0.56944\n55512|0.5\n55513|0.51389\n55514|0.5\n55515|0.70833\n55516|0.5\n55517|0.65278\n55518|0.77778\n55519|0.5\n55520|0.70833\n55521|0.44444\n55522|0.51389\n55523|0.51389\n55524|0.5\n55525|0.58333\n55526|0.5\n55527|0.5\n55528|0.55556\n55529|0.51389\n55530|0.44444\n55531|0.54167\n55532|0.58333\n55533|0.63889\n55534|0.5\n55535|0.5\n55536|0.51389\n55537|0.22222\n55538|0.5\n55539|0.5\n55540|0.22222\n55541|0.51389\n55542|0.5\n55543|0.77778\n55544|0.52778\n55545|0.5\n55546|0.5\n55547|0.5\n55548|0.86111\n55549|0.625\n55550|0.90278\n55551|0.79167\n55552|0.5\n55553|0.5\n55554|0.33333\n55555|0.73611\n55556|0.47222\n55557|0.56944\n55558|0.65278\n55559|0.5\n55560|0.47222\n55561|0.40278\n55562|0.5\n55563|0.54167\n55564|0.68056\n55565|0.43056\n55566|0.45833\n55567|0.5\n55568|0.55556\n55569|0.5\n55570|0.5\n55571|0.56944\n55572|0.61111\n55573|0.5\n55574|0.34722\n55575|0.75\n55576|0.38889\n55577|0.52778\n55578|0.44444\n55579|0.54167\n55580|0.5\n55581|0.55556\n55582|0.5\n55583|0.51389\n55584|0.66667\n55585|0.38889\n55586|0.44444\n55587|0.52778\n55588|0.61111\n55589|0.63889\n55590|0.5\n55591|0.5\n55592|0.54167\n55593|0.5\n55594|0.5\n55595|0.5\n55596|0.68056\n55597|0.5\n55598|0.61111\n55599|0.44444\n55600|0.51389\n55601|0.66667\n55602|0.94444\n55603|0.33333\n55604|0.5\n55605|0.51389\n55606|0.55556\n55607|0.44444\n55608|0.56944\n55609|0.86111\n55610|0.68056\n55611|0.66667\n55612|0.5\n55613|0.51389\n55614|0.33333\n55615|0.63889\n55616|0.51389\n55617|0.5\n55618|0.61111\n55619|0.29167\n55620|0.88889\n55621|0.55556\n55622|0.5\n55623|0.5\n55624|0.5\n55625|0.5\n55626|0.5\n55627|0.51389\n55628|0.5\n55629|0.72222\n55630|0.45833\n55631|0.63889\n55632|0.5\n55633|0.65278\n55634|0.90278\n55635|0.61111\n55636|0.5\n55637|0.86111\n55638|0.5\n55639|0.34722\n55640|0.5\n55641|0.29167\n55642|0.5\n55643|0.54167\n55644|0.56944\n55645|0.55556\n55646|0.58333\n55647|0.5\n55648|0.69444\n55649|0.61111\n55650|0.63889\n55651|0.5\n55652|0.55556\n55653|0.55556\n55654|0.75\n55655|0.5\n55656|0.61111\n55657|0.48611\n55658|0.5\n55659|0.77778\n55660|0.61111\n55661|0.48611\n55662|0.5\n55663|0.83333\n55664|0.5\n55665|0.51389\n55666|0.5\n55667|0.5\n55668|0.61111\n55669|0.5\n55670|0.375\n55671|0.44444\n55672|0.58333\n55673|0.33333\n55674|0.36111\n55675|0.27778\n55676|0.66667\n55677|0.47222\n55678|0.86111\n55679|0.54167\n55680|0.52778\n55681|0.77778\n55682|0.73611\n55683|0.81944\n55684|0.70833\n55685|0.56944\n55686|0.70833\n55687|0.66667\n55688|0.72222\n55689|0.5\n55690|0.65278\n55691|0.65278\n55692|0.61111\n55693|0.72222\n55694|0.31944\n55695|0.41667\n55696|0.72222\n55697|0.5\n55698|0.55556\n55699|0.72222\n55700|0.625\n55701|0.43056\n55702|0.45833\n55703|0.80556\n55704|0.55556\n55705|0.55556\n55706|0.55556\n55707|0.44444\n55708|0.58333\n55709|0.72222\n55710|0.375\n55711|0.40278\n55712|0.51389\n55713|0.5\n55714|0.72222\n55715|0.5\n55716|0.66667\n55717|0.38889\n55718|0.5\n55719|0.56944\n55720|0.58333\n55721|0.73611\n55722|0.73611\n55723|0.63889\n55724|0.68056\n55725|0.34722\n55726|0.5\n55727|0.48611\n55728|0.56944\n55729|0.55556\n55730|0.55556\n55731|0.5\n55732|0.5\n55733|0.5\n55734|0.5\n55735|0.5\n55736|0.48611\n55737|0.5\n55738|0.5\n55739|0.66667\n55740|0.72222\n55741|0.61111\n55742|0.48611\n55743|0.34722\n55744|0.55556\n55745|0.5\n55746|0.45833\n55747|0.5\n55748|0.54167\n55749|0.55556\n55750|0.56944\n55751|0.61111\n55752|0.625\n55753|0.5\n55754|0.59722\n55755|0.66667\n55756|0.5\n55757|0.52778\n55758|0.59722\n55759|0.55556\n55760|0.5\n55761|0.56944\n55762|0.51389\n55763|0.5\n55764|0.56944\n55765|0.5\n55766|0.88889\n55767|0.48611\n55768|0.47222\n55769|0.54167\n55770|0.45833\n55771|0.625\n55772|0.63889\n55773|0.5\n55774|0.69444\n55775|0.69444\n55776|0.84722\n55777|0.29167\n55778|0.48611\n55779|0.375\n55780|0.75\n55781|0.88889\n55782|0.75\n55783|0.55556\n55784|0.83333\n55785|0.94444\n55786|0.91667\n55787|0.94444\n55788|0.5\n55789|0.51389\n55790|0.72222\n55791|0.875\n55792|0.5\n55793|0.76389\n55794|0.72222\n55795|0.55556\n55796|0.5\n55797|0.43056\n55798|0.45833\n55799|0.5\n55800|0.33333\n55801|0.38889\n55802|0.5\n55803|0.65278\n55804|0.55556\n55805|0.45833\n55806|0.44444\n55807|0.44444\n55808|0.33333\n55809|0.47222\n55810|0.77778\n55811|0.44444\n55812|0.41667\n55813|0.43056\n55814|0.5\n55815|0.5\n55816|0.61111\n55817|0.51389\n55818|0.5\n55819|0.5\n55820|0.52778\n55821|0.61111\n55822|0.61111\n55823|0.625\n55824|0.5\n55825|0.70833\n55826|0.59722\n55827|0.70833\n55828|0.61111\n55829|0.59722\n55830|0.63889\n55831|0.54167\n55832|0.5\n55833|0.76389\n55834|0.72222\n55835|0.5\n55836|0.5\n55837|0.44444\n55838|0.52778\n55839|0.5\n55840|0.5\n55841|0.61111\n55842|0.52778\n55843|0.61111\n55844|0.65278\n55845|0.55556\n55846|0.5\n55847|0.5\n55848|0.5\n55849|0.61111\n55850|0.61111\n55851|0.47222\n55852|0.55556\n55853|0.5\n55854|0.63889\n55855|0.80556\n55856|0.76389\n55857|0.86111\n55858|0.5\n55859|0.27778\n55860|0.5\n55861|0.52778\n55862|0.43056\n55863|0.66667\n55864|0.48611\n55865|0.44444\n55866|0.5\n55867|0.52778\n55868|0.5\n55869|0.52778\n55870|0.625\n55871|0.5\n55872|0.5\n55873|0.5\n55874|0.5\n55875|0.5\n55876|0.52778\n55877|0.61111\n55878|0.83333\n55879|0.77778\n55880|0.44444\n55881|0.68056\n55882|0.44444\n55883|0.44444\n55884|0.45833\n55885|0.58333\n55886|0.80556\n55887|0.41667\n55888|0.36111\n55889|0.31944\n55890|0.43056\n55891|0.45833\n55892|0.72222\n55893|0.54167\n55894|0.36111\n55895|0.15278\n55896|0.47222\n55897|0.47222\n55898|0.29167\n55899|0.34722\n55900|0.125\n55901|0.55556\n55902|0.5\n55903|0.5\n55904|0.5\n55905|0.44444\n55906|0.41667\n55907|0.5\n55908|0.5\n55909|0.48611\n55910|0.54167\n55911|0.5\n55912|0.55556\n55913|0.70833\n55914|0.55556\n55915|0.5\n55916|0.5\n55917|0.58333\n55918|0.52778\n55919|0.43056\n55920|0.5\n55921|0.5\n55922|0.63889\n55923|0.5\n55924|0.55556\n55925|0.44444\n55926|0.72222\n55927|0.40278\n55928|0.56944\n55929|0.43056\n55930|0.375\n55931|0.5\n55932|0.41667\n55933|0.375\n55934|0.25\n55935|0.44444\n55936|0.59722\n55937|0.63889\n55938|0.59722\n55939|0.5\n55940|0.34722\n55941|0.875\n55942|0.58333\n55943|0.61111\n55944|0.86111\n55945|0.20833\n55946|0.5\n55947|0.38889\n55948|0.52778\n55949|0.76389\n55950|0.5\n55951|0.91667\n55952|0.38889\n55953|0.18056\n55954|0.63889\n55955|0.5\n55956|0.45833\n55957|0.75\n55958|0.58333\n55959|0.81944\n55960|0.66667\n55961|0.29167\n55962|0.5\n55963|0.47222\n55964|0.83333\n55965|0.66667\n55966|0.45833\n55967|0.55556\n55968|0.27778\n55969|0.44444\n55970|0.27778\n55971|0.33333\n55972|0.43056\n55973|0.44444\n55974|0.65278\n55975|0.58333\n55976|0.5\n55977|0.36111\n55978|0.76389\n55979|0.69444\n55980|0.75\n55981|0.59722\n55982|0.66667\n55983|0.84722\n55984|0.79167\n55985|0.84722\n55986|0.76389\n55987|0.97222\n55988|0.48611\n55989|0.80556\n55990|0.45833\n55991|0.38889\n55992|0.5\n55993|0.5\n55994|0.45833\n55995|0.5\n55996|0.66667\n55997|0.5\n55998|0.51389\n55999|0.51389\n56000|0.61111\n56001|0.59722\n56002|0.66667\n56003|0.55556\n56004|0.56944\n56005|0.45833\n56006|0.70833\n56007|0.47222\n56008|0.375\n56009|0.31944\n56010|0.56944\n56011|0.69444\n56012|0.54167\n56013|0.80556\n56014|0.625\n56015|0.25\n56016|0.36111\n56017|0.23611\n56018|0.5\n56019|0.20833\n56020|0.23611\n56021|0.5\n56022|0.5\n56023|0.5\n56024|0.5\n56025|0.58333\n56026|0.54167\n56027|0.75\n56028|0.5\n56029|0.65278\n56030|0.48611\n56031|0.59722\n56032|0.26389\n56033|0.5\n56034|0.76389\n56035|0.30556\n56036|0.5\n56037|0.54167\n56038|0.5\n56039|0.5\n56040|0.51389\n56041|0.5\n56042|0.54167\n56043|0.5\n56044|0.59722\n56045|0.625\n56046|0.77778\n56047|0.5\n56048|0.66667\n56049|0.72222\n56050|0.72222\n56051|0.68056\n56052|0.61111\n56053|0.72222\n56054|0.63889\n56055|0.52778\n56056|0.55556\n56057|0.52778\n56058|0.75\n56059|0.73611\n56060|0.66667\n56061|0.625\n56062|0.70833\n56063|0.70833\n56064|0.61111\n56065|0.76389\n56066|0.83333\n56067|0.86111\n56068|0.77778\n56069|0.5\n56070|0.30556\n56071|0.5\n56072|0.59722\n56073|0.51389\n56074|0.54167\n56075|0.59722\n56076|0.61111\n56077|0.55556\n56078|0.55556\n56079|0.72222\n56080|0.34722\n56081|0.66667\n56082|0.77778\n56083|0.5\n56084|0.54167\n56085|0.55556\n56086|0.81944\n56087|0.48611\n56088|0.59722\n56089|0.72222\n56090|0.48611\n56091|0.5\n56092|0.70833\n56093|0.54167\n56094|0.5\n56095|0.48611\n56096|0.51389\n56097|0.52778\n56098|0.51389\n56099|0.43056\n56100|0.51389\n56101|0.48611\n56102|0.55556\n56103|0.5\n56104|0.5\n56105|0.47222\n56106|0.54167\n56107|0.59722\n56108|0.55556\n56109|0.5\n56110|0.52778\n56111|0.55556\n56112|0.79167\n56113|0.77778\n56114|0.72222\n56115|0.65278\n56116|0.5\n56117|0.5\n56118|0.5\n56119|0.5\n56120|0.5\n56121|0.44444\n56122|0.47222\n56123|0.5\n56124|0.5\n56125|0.44444\n56126|0.55556\n56127|0.63889\n56128|0.5\n56129|0.59722\n56130|0.75\n56131|0.63889\n56132|0.48611\n56133|0.56944\n56134|0.72222\n56135|0.80556\n56136|0.84722\n56137|0.65278\n56138|0.5\n56139|0.51389\n56140|0.47222\n56141|0.77778\n56142|0.61111\n56143|0.34722\n56144|0.44444\n56145|0.72222\n56146|0.70833\n56147|0.44444\n56148|0.5\n56149|0.52778\n56150|0.52778\n56151|0.41667\n56152|0.5\n56153|0.68056\n56154|0.5\n56155|0.625\n56156|0.47222\n56157|0.44444\n56158|0.43056\n56159|0.5\n56160|0.55556\n56161|0.58333\n56162|0.5\n56163|0.5\n56164|0.56944\n56165|0.69444\n56166|0.51389\n56167|0.66667\n56168|0.55556\n56169|0.61111\n56170|0.5\n56171|0.86111\n56172|0.56944\n56173|0.52778\n56174|0.33333\n56175|0.75\n56176|0.75\n56177|0.83333\n56178|0.75\n56179|0.76389\n56180|0.5\n56181|0.79167\n56182|0.625\n56183|0.5\n56184|0.44444\n56185|0.51389\n56186|0.52778\n56187|0.54167\n56188|0.5\n56189|0.54167\n56190|0.56944\n56191|0.45833\n56192|0.44444\n56193|0.55556\n56194|0.61111\n56195|0.44444\n56196|0.55556\n56197|0.51389\n56198|0.55556\n56199|0.51389\n56200|0.58333\n56201|0.66667\n56202|0.68056\n56203|0.70833\n56204|0.72222\n56205|0.5\n56206|0.56944\n56207|0.63889\n56208|0.5\n56209|0.44444\n56210|0.55556\n56211|0.5\n56212|0.375\n56213|0.55556\n56214|0.55556\n56215|0.63889\n56216|0.59722\n56217|0.625\n56218|0.81944\n56219|0.52778\n56220|0.52778\n56221|0.48611\n56222|0.70833\n56223|0.72222\n56224|0.79167\n56225|0.56944\n56226|0.58333\n56227|0.81944\n56228|0.59722\n56229|0.73611\n56230|0.79167\n56231|0.70833\n56232|0.72222\n56233|0.51389\n56234|0.86111\n56235|0.44444\n56236|0.51389\n56237|0.59722\n56238|0.75\n56239|0.68056\n56240|0.84722\n56241|0.75\n56242|0.69444\n56243|0.65278\n56244|0.625\n56245|0.65278\n56246|0.77778\n56247|0.63889\n56248|0.54167\n56249|0.81944\n56250|0.61111\n56251|0.56944\n56252|0.61111\n56253|0.5\n56254|0.58333\n56255|0.41667\n56256|0.5\n56257|0.33333\n56258|0.5\n56259|0.44444\n56260|0.52778\n56261|0.5\n56262|0.52778\n56263|0.58333\n56264|0.72222\n56265|0.55556\n56266|0.45833\n56267|0.5\n56268|0.55556\n56269|0.61111\n56270|0.72222\n56271|0.68056\n56272|0.33333\n56273|0.54167\n56274|0.72222\n56275|0.72222\n56276|0.66667\n56277|0.61111\n56278|0.69444\n56279|0.83333\n56280|0.81944\n56281|0.77778\n56282|0.48611\n56283|0.36111\n56284|0.80556\n56285|0.5\n56286|0.36111\n56287|0.34722\n56288|0.875\n56289|0.80556\n56290|0.44444\n56291|0.5\n56292|0.625\n56293|0.56944\n56294|0.5\n56295|0.5\n56296|0.88889\n56297|0.79167\n56298|0.79167\n56299|0.47222\n56300|0.68056\n56301|0.5\n56302|0.61111\n56303|0.47222\n56304|0.70833\n56305|0.79167\n56306|0.5\n56307|0.81944\n56308|0.52778\n56309|0.61111\n56310|0.72222\n56311|0.77778\n56312|0.76389\n56313|0.5\n56314|0.5\n56315|0.51389\n56316|0.38889\n56317|0.45833\n56318|0.30556\n56319|0.27778\n56320|0.44444\n56321|0.44444\n56322|0.41667\n56323|0.63889\n56324|0.58333\n56325|0.5\n56326|0.625\n56327|0.58333\n56328|0.56944\n56329|0.5\n56330|0.5\n56331|0.5\n56332|0.16667\n56333|0.65278\n56334|0.66667\n56335|0.52778\n56336|0.5\n56337|0.61111\n56338|0.52778\n56339|0.55556\n56340|0.55556\n56341|0.63889\n56342|0.66667\n56343|0.59722\n56344|0.69444\n56345|0.625\n56346|0.58333\n56347|0.65278\n56348|0.73611\n56349|0.69444\n56350|0.68056\n56351|0.625\n56352|0.44444\n56353|0.63889\n56354|0.59722\n56355|0.80556\n56356|0.79167\n56357|0.73611\n56358|0.68056\n56359|0.625\n56360|0.77778\n56361|0.77778\n56362|0.43056\n56363|0.69444\n56364|0.45833\n56365|0.5\n56366|0.55556\n56367|0.51389\n56368|0.5\n56369|0.63889\n56370|0.54167\n56371|0.52778\n56372|0.66667\n56373|0.75\n56374|0.26389\n56375|0.38889\n56376|0.51389\n56377|0.88889\n56378|0.5\n56379|0.5\n56380|0.51389\n56381|0.61111\n56382|0.61111\n56383|0.69444\n56384|0.68056\n56385|0.81944\n56386|0.69444\n56387|0.68056\n56388|0.33333\n56389|0.70833\n56390|0.81944\n56391|0.88889\n56392|0.30556\n56393|0.47222\n56394|0.875\n56395|0.56944\n56396|0.48611\n56397|0.68056\n56398|0.5\n56399|0.52778\n56400|0.5\n56401|0.55556\n56402|0.54167\n56403|0.65278\n56404|0.66667\n56405|0.63889\n56406|0.65278\n56407|0.59722\n56408|0.81944\n56409|0.61111\n56410|0.5\n56411|0.54167\n56412|0.76389\n56413|0.625\n56414|0.54167\n56415|0.59722\n56416|0.72222\n56417|0.69444\n56418|0.72222\n56419|0.77778\n56420|0.55556\n56421|0.54167\n56422|0.70833\n56423|0.69444\n56424|0.88889\n56425|0.5\n56426|0.56944\n56427|0.68056\n56428|0.47222\n56429|0.5\n56430|0.61111\n56431|0.52778\n56432|0.5\n56433|0.5\n56434|0.68056\n56435|0.81944\n56436|0.81944\n56437|0.33333\n56438|0.55556\n56439|0.625\n56440|0.69444\n56441|0.38889\n56442|0.55556\n56443|0.68056\n56444|0.5\n56445|0.5\n56446|0.55556\n56447|0.5\n56448|0.51389\n56449|0.56944\n56450|0.625\n56451|0.59722\n56452|0.52778\n56453|0.72222\n56454|0.15278\n56455|0.5\n56456|0.45833\n56457|0.5\n56458|0.5\n56459|0.51389\n56460|0.61111\n56461|0.5\n56462|0.63889\n56463|0.5\n56464|0.65278\n56465|0.76389\n56466|0.72222\n56467|0.68056\n56468|0.69444\n56469|0.72222\n56470|0.76389\n56471|0.40278\n56472|0.5\n56473|0.33333\n56474|0.5\n56475|0.44444\n56476|0.58333\n56477|0.73611\n56478|0.66667\n56479|0.5\n56480|0.44444\n56481|0.63889\n56482|0.5\n56483|0.5\n56484|0.58333\n56485|0.52778\n56486|0.69444\n56487|0.61111\n56488|0.80556\n56489|0.51389\n56490|0.5\n56491|0.5\n56492|0.5\n56493|0.5\n56494|0.75\n56495|0.55556\n56496|0.5\n56497|0.69444\n56498|0.5\n56499|0.29167\n56500|0.61111\n56501|0.66667\n56502|0.59722\n56503|0.73611\n56504|0.56944\n56505|0.61111\n56506|0.51389\n56507|0.55556\n56508|0.56944\n56509|0.66667\n56510|0.54167\n56511|0.76389\n56512|0.66667\n56513|0.77778\n56514|0.77778\n56515|0.76389\n56516|0.91667\n56517|0.88889\n56518|0.79167\n56519|0.5\n56520|0.375\n56521|0.66667\n56522|0.55556\n56523|0.59722\n56524|0.5\n56525|0.61111\n56526|0.61111\n56527|0.52778\n56528|0.52778\n56529|0.86111\n56530|0.81944\n56531|0.44444\n56532|0.72222\n56533|0.76389\n56534|0.59722\n56535|0.5\n56536|0.55556\n56537|0.5\n56538|0.61111\n56539|0.68056\n56540|0.5\n56541|0.44444\n56542|0.88889\n56543|0.68056\n56544|0.80556\n56545|0.70833\n56546|0.38889\n56547|0.5\n56548|0.36111\n56549|0.47222\n56550|0.41667\n56551|0.5\n56552|0.5\n56553|0.61111\n56554|0.44444\n56555|0.44444\n56556|0.40278\n56557|0.5\n56558|0.56944\n56559|0.5\n56560|0.47222\n56561|0.5\n56562|0.55556\n56563|0.51389\n56564|0.80556\n56565|0.72222\n56566|0.55556\n56567|0.69444\n56568|0.5\n56569|0.5\n56570|0.5\n56571|0.52778\n56572|0.55556\n56573|0.52778\n56574|0.65278\n56575|0.45833\n56576|0.55556\n56577|0.44444\n56578|0.70833\n56579|0.94444\n56580|0.44444\n56581|0.51389\n56582|0.44444\n56583|0.63889\n56584|0.55556\n56585|0.5\n56586|0.5\n56587|0.61111\n56588|0.56944\n56589|0.5\n56590|0.61111\n56591|0.5\n56592|0.73611\n56593|0.61111\n56594|0.61111\n56595|0.77778\n56596|0.65278\n56597|0.38889\n56598|0.5\n56599|0.52778\n56600|0.72222\n56601|0.18056\n56602|0.59722\n56603|0.5\n56604|0.59722\n56605|0.77778\n56606|0.75\n56607|0.58333\n56608|0.81944\n56609|0.91667\n56610|0.69444\n56611|0.56944\n56612|0.75\n56613|0.51389\n56614|0.76389\n56615|0.65278\n56616|0.16667\n56617|0.72222\n56618|0.83333\n56619|0.5\n56620|0.5\n56621|0.54167\n56622|0.55556\n56623|0.45833\n56624|0.55556\n56625|0.80556\n56626|0.80556\n56627|0.80556\n56628|0.625\n56629|0.66667\n56630|0.66667\n56631|0.55556\n56632|0.55556\n56633|0.72222\n56634|0.79167\n56635|0.5\n56636|0.86111\n56637|0.5\n56638|0.86111\n56639|0.66667\n56640|0.68056\n56641|0.61111\n56642|0.45833\n56643|0.61111\n56644|0.52778\n56645|0.77778\n56646|0.75\n56647|0.5\n56648|0.55556\n56649|0.16667\n56650|0.56944\n56651|0.63889\n56652|0.41667\n56653|0.375\n56654|0.40278\n56655|0.59722\n56656|0.5\n56657|0.76389\n56658|0.72222\n56659|0.61111\n56660|0.63889\n56661|0.55556\n56662|0.5\n56663|0.5\n56664|0.55556\n56665|0.77778\n56666|0.52778\n56667|0.5\n56668|0.5\n56669|0.36111\n56670|0.52778\n56671|0.5\n56672|0.76389\n56673|0.59722\n56674|0.55556\n56675|0.36111\n56676|0.36111\n56677|0.44444\n56678|0.38889\n56679|0.72222\n56680|0.19444\n56681|0.5\n56682|0.27778\n56683|0.38889\n56684|0.5\n56685|0.51389\n56686|0.5\n56687|0.5\n56688|0.5\n56689|0.41667\n56690|0.5\n56691|0.41667\n56692|0.5\n56693|0.52778\n56694|0.5\n56695|0.44444\n56696|0.5\n56697|0.66667\n56698|0.5\n56699|0.47222\n56700|0.80556\n56701|0.66667\n56702|0.83333\n56703|0.68056\n56704|0.66667\n56705|0.72222\n56706|0.76389\n56707|0.75\n56708|0.63889\n56709|0.73611\n56710|0.47222\n56711|0.72222\n56712|0.5\n56713|0.63889\n56714|0.63889\n56715|0.69444\n56716|0.55556\n56717|0.40278\n56718|0.59722\n56719|0.625\n56720|0.63889\n56721|0.59722\n56722|0.58333\n56723|0.45833\n56724|0.26389\n56725|0.43056\n56726|0.81944\n56727|0.72222\n56728|0.59722\n56729|0.44444\n56730|0.81944\n56731|0.43056\n56732|0.33333\n56733|0.41667\n56734|0.55556\n56735|0.5\n56736|0.41667\n56737|0.33333\n56738|0.56944\n56739|0.47222\n56740|0.51389\n56741|0.5\n56742|0.5\n56743|0.5\n56744|0.52778\n56745|0.5\n56746|0.59722\n56747|0.61111\n56748|0.69444\n56749|0.51389\n56750|0.5\n56751|0.5\n56752|0.55556\n56753|0.55556\n56754|0.5\n56755|0.5\n56756|0.5\n56757|0.55556\n56758|0.375\n56759|0.5\n56760|0.44444\n56761|0.76389\n56762|0.5\n56763|0.625\n56764|0.55556\n56765|0.5\n56766|0.43056\n56767|0.58333\n56768|0.61111\n56769|0.56944\n56770|0.5\n56771|0.55556\n56772|0.5\n56773|0.61111\n56774|0.51389\n56775|0.59722\n56776|0.875\n56777|0.55556\n56778|0.80556\n56779|0.63889\n56780|0.75\n56781|0.33333\n56782|0.5\n56783|0.56944\n56784|0.51389\n56785|0.51389\n56786|0.26389\n56787|0.16667\n56788|0.25\n56789|0.75\n56790|0.66667\n56791|0.68056\n56792|0.41667\n56793|0.38889\n56794|0.44444\n56795|0.81944\n56796|0.90278\n56797|0.5\n56798|0.5\n56799|0.70833\n56800|0.65278\n56801|0.70833\n56802|0.79167\n56803|0.77778\n56804|0.55556\n56805|0.36111\n56806|0.54167\n56807|0.34722\n56808|0.65278\n56809|0.56944\n56810|0.41667\n56811|0.58333\n56812|0.56944\n56813|0.80556\n56814|0.55556\n56815|0.58333\n56816|0.43056\n56817|0.61111\n56818|0.5\n56819|0.5\n56820|0.5\n56821|0.5\n56822|0.45833\n56823|0.55556\n56824|0.55556\n56825|0.44444\n56826|0.625\n56827|0.63889\n56828|0.55556\n56829|0.47222\n56830|0.48611\n56831|0.36111\n56832|0.26389\n56833|0.48611\n56834|0.55556\n56835|0.70833\n56836|0.55556\n56837|0.51389\n56838|0.52778\n56839|0.88889\n56840|0.77778\n56841|0.90278\n56842|0.61111\n56843|0.56944\n56844|0.58333\n56845|0.72222\n56846|0.72222\n56847|0.66667\n56848|0.63889\n56849|0.55556\n56850|0.625\n56851|0.61111\n56852|0.68056\n56853|0.5\n56854|0.20833\n56855|0.34722\n56856|0.69444\n56857|0.5\n56858|0.5\n56859|0.45833\n56860|0.5\n56861|0.33333\n56862|0.5\n56863|0.51389\n56864|0.55556\n56865|0.55556\n56866|0.61111\n56867|0.63889\n56868|0.5\n56869|0.69444\n56870|0.54167\n56871|0.43056\n56872|0.58333\n56873|0.56944\n56874|0.5\n56875|0.52778\n56876|0.81944\n56877|0.5\n56878|0.5\n56879|0.76389\n56880|0.52778\n56881|0.5\n56882|0.51389\n56883|0.84722\n56884|0.44444\n56885|0.5\n56886|0.68056\n56887|0.61111\n56888|0.55556\n56889|0.55556\n56890|0.61111\n56891|0.5\n56892|0.61111\n56893|0.80556\n56894|0.26389\n56895|0.59722\n56896|0.61111\n56897|0.48611\n56898|0.48611\n56899|0.55556\n56900|0.55556\n56901|0.55556\n56902|0.5\n56903|0.47222\n56904|0.90278\n56905|0.72222\n56906|0.66667\n56907|0.47222\n56908|0.5\n56909|0.47222\n56910|0.72222\n56911|0.81944\n56912|0.83333\n56913|0.80556\n56914|0.72222\n56915|0.76389\n56916|0.76389\n56917|0.70833\n56918|0.69444\n56919|0.94444\n56920|0.80556\n56921|0.73611\n56922|0.5\n56923|0.5\n56924|0.61111\n56925|0.58333\n56926|0.5\n56927|0.44444\n56928|0.54167\n56929|0.56944\n56930|0.27778\n56931|0.55556\n56932|0.83333\n56933|0.51389\n56934|0.58333\n56935|0.77778\n56936|0.66667\n56937|0.72222\n56938|0.44444\n56939|0.72222\n56940|0.76389\n56941|0.34722\n56942|0.61111\n56943|0.44444\n56944|0.68056\n56945|0.65278\n56946|0.70833\n56947|0.66667\n56948|0.88889\n56949|0.91667\n56950|0.63889\n56951|0.75\n56952|0.81944\n56953|0.66667\n56954|0.61111\n56955|0.5\n56956|0.66667\n56957|0.63889\n56958|0.90278\n56959|0.86111\n56960|0.73611\n56961|0.91667\n56962|0.59722\n56963|0.75\n56964|0.72222\n56965|0.83333\n56966|0.75\n56967|0.58333\n56968|0.84722\n56969|0.70833\n56970|0.68056\n56971|0.76389\n56972|0.5\n56973|0.72222\n56974|0.20833\n56975|0.22222\n56976|0.61111\n56977|0.5\n56978|0.33333\n56979|0.55556\n56980|0.77778\n56981|0.83333\n56982|0.5\n56983|0.51389\n56984|0.5\n56985|0.80556\n56986|0.83333\n56987|0.69444\n56988|0.25\n56989|0.5\n56990|0.55556\n56991|0.5\n56992|0.5\n56993|0.52778\n56994|0.55556\n56995|0.375\n56996|0.44444\n56997|0.5\n56998|0.55556\n56999|0.83333\n57000|0.77778\n57001|0.72222\n57002|0.63889\n57003|0.63889\n57004|0.66667\n57005|0.51389\n57006|0.52778\n57007|0.36111\n57008|0.45833\n57009|0.70833\n57010|0.56944\n57011|0.5\n57012|0.56944\n57013|0.5\n57014|0.79167\n57015|0.38889\n57016|0.52778\n57017|0.51389\n57018|0.80556\n57019|0.77778\n57020|0.5\n57021|0.5\n57022|0.55556\n57023|0.41667\n57024|0.30556\n57025|0.54167\n57026|0.83333\n57027|0.5\n57028|0.5\n57029|0.5\n57030|0.5\n57031|0.54167\n57032|0.5\n57033|0.55556\n57034|0.43056\n57035|0.66667\n57036|0.75\n57037|0.25\n57038|0.5\n57039|0.43056\n57040|0.52778\n57041|0.83333\n57042|0.5\n57043|0.5\n57044|0.38889\n57045|0.40278\n57046|0.5\n57047|0.61111\n57048|0.58333\n57049|0.76389\n57050|0.41667\n57051|0.30556\n57052|0.48611\n57053|0.33333\n57054|0.40278\n57055|0.5\n57056|0.33333\n57057|0.31944\n57058|0.375\n57059|0.5\n57060|0.5\n57061|0.44444\n57062|0.27778\n57063|0.40278\n57064|0.5\n57065|0.5\n57066|0.61111\n57067|0.47222\n57068|0.375\n57069|0.61111\n57070|0.5\n57071|0.54167\n57072|0.26389\n57073|0.45833\n57074|0.5\n57075|0.52778\n57076|0.5\n57077|0.5\n57078|0.5\n57079|0.86111\n57080|0.79167\n57081|0.77778\n57082|0.58333\n57083|0.83333\n57084|0.18056\n57085|0.44444\n57086|0.68056\n57087|0.51389\n57088|0.52778\n57089|0.44444\n57090|0.73611\n57091|0.47222\n57092|0.38889\n57093|0.5\n57094|0.48611\n57095|0.44444\n57096|0.13889\n57097|0.43056\n57098|0.27778\n57099|0.61111\n57100|0.66667\n57101|0.48611\n57102|0.83333\n57103|0.86111\n57104|0.80556\n57105|0.94444\n57106|0.76389\n57107|0.66667\n57108|0.54167\n57109|0.55556\n57110|0.41667\n57111|0.55556\n57112|0.41667\n57113|0.5\n57114|0.5\n57115|0.45833\n57116|0.45833\n57117|0.375\n57118|0.5\n57119|0.61111\n57120|0.77778\n57121|0.5\n57122|0.66667\n57123|0.79167\n57124|0.72222\n57125|0.81944\n57126|0.48611\n57127|0.625\n57128|0.55556\n57129|0.38889\n57130|0.38889\n57131|0.56944\n57132|0.65278\n57133|0.84722\n57134|0.48611\n57135|0.56944\n57136|0.5\n57137|0.52778\n57138|0.5\n57139|0.5\n57140|0.375\n57141|0.66667\n57142|0.76389\n57143|0.79167\n57144|0.72222\n57145|0.59722\n57146|0.68056\n57147|0.72222\n57148|0.76389\n57149|0.76389\n57150|0.81944\n57151|0.80556\n57152|0.47222\n57153|0.22222\n57154|0.34722\n57155|0.34722\n57156|0.52778\n57157|0.41667\n57158|0.27778\n57159|0.40278\n57160|0.31944\n57161|0.19444\n57162|0.55556\n57163|0.61111\n57164|0.34722\n57165|0.61111\n57166|0.72222\n57167|0.5\n57168|0.44444\n57169|0.5\n57170|0.5\n57171|0.55556\n57172|0.52778\n57173|0.63889\n57174|0.70833\n57175|0.68056\n57176|0.52778\n57177|0.5\n57178|0.68056\n57179|0.5\n57180|0.20833\n57181|0.375\n57182|0.55556\n57183|0.65278\n57184|0.56944\n57185|0.56944\n57186|0.56944\n57187|0.59722\n57188|0.56944\n57189|0.75\n57190|0.52778\n57191|0.59722\n57192|0.63889\n57193|0.38889\n57194|0.77778\n57195|0.81944\n57196|0.47222\n57197|0.51389\n57198|0.73611\n57199|0.68056\n57200|0.5\n57201|0.48611\n57202|0.73611\n57203|0.72222\n57204|0.66667\n57205|0.30556\n57206|0.72222\n57207|0.27778\n57208|0.38889\n57209|0.5\n57210|0.70833\n57211|0.38889\n57212|0.70833\n57213|0.375\n57214|0.34722\n57215|0.29167\n57216|0.38889\n57217|0.58333\n57218|0.625\n57219|0.5\n57220|0.51389\n57221|0.5\n57222|0.55556\n57223|0.55556\n57224|0.625\n57225|0.75\n57226|0.41667\n57227|0.75\n57228|0.51389\n57229|0.5\n57230|0.5\n57231|0.56944\n57232|0.47222\n57233|0.52778\n57234|0.56944\n57235|0.84722\n57236|0.63889\n57237|0.44444\n57238|0.5\n57239|0.5\n57240|0.70833\n57241|0.81944\n57242|0.58333\n57243|0.66667\n57244|0.625\n57245|0.625\n57246|0.625\n57247|0.52778\n57248|0.55556\n57249|0.36111\n57250|0.66667\n57251|0.54167\n57252|0.63889\n57253|0.5\n57254|0.5\n57255|0.51389\n57256|0.79167\n57257|0.44444\n57258|0.54167\n57259|0.54167\n57260|0.5\n57261|0.44444\n57262|0.43056\n57263|0.55556\n57264|0.51389\n57265|0.72222\n57266|0.83333\n57267|0.5\n57268|0.5\n57269|0.51389\n57270|0.34722\n57271|0.55556\n57272|0.56944\n57273|0.72222\n57274|0.36111\n57275|0.79167\n57276|0.65278\n57277|0.48611\n57278|0.61111\n57279|0.63889\n57280|0.45833\n57281|0.75\n57282|0.69444\n57283|0.5\n57284|0.5\n57285|0.5\n57286|0.54167\n57287|0.55556\n57288|0.51389\n57289|0.44444\n57290|0.55556\n57291|0.5\n57292|0.51389\n57293|0.51389\n57294|0.5\n57295|0.47222\n57296|0.66667\n57297|0.5\n57298|0.5\n57299|0.5\n57300|0.5\n57301|0.5\n57302|0.55556\n57303|0.54167\n57304|0.66667\n57305|0.54167\n57306|0.51389\n57307|0.94444\n57308|0.63889\n57309|0.61111\n57310|0.70833\n57311|0.58333\n57312|0.81944\n57313|0.51389\n57314|0.59722\n57315|0.66667\n57316|0.36111\n57317|0.5\n57318|0.625\n57319|0.48611\n57320|0.61111\n57321|0.61111\n57322|0.69444\n57323|0.70833\n57324|0.83333\n57325|0.58333\n57326|0.5\n57327|0.55556\n57328|0.66667\n57329|0.66667\n57330|0.38889\n57331|0.59722\n57332|0.68056\n57333|0.54167\n57334|0.61111\n57335|0.59722\n57336|0.40278\n57337|0.61111\n57338|0.375\n57339|0.72222\n57340|0.59722\n57341|0.5\n57342|0.88889\n57343|0.5\n57344|0.36111\n57345|0.34722\n57346|0.51389\n57347|0.86111\n57348|0.38889\n57349|0.81944\n57350|0.5\n57351|0.5\n57352|0.5\n57353|0.68056\n57354|0.63889\n57355|0.66667\n57356|0.75\n57357|0.625\n57358|0.75\n57359|0.65278\n57360|0.72222\n57361|0.59722\n57362|0.58333\n57363|0.58333\n57364|0.27778\n57365|0.52778\n57366|0.40278\n57367|0.66667\n57368|0.44444\n57369|0.18056\n57370|0.125\n57371|0.41667\n57372|0.5\n57373|0.88889\n57374|0.77778\n57375|0.43056\n57376|0.61111\n57377|0.38889\n57378|0.5\n57379|0.5\n57380|0.5\n57381|0.5\n57382|0.55556\n57383|0.5\n57384|0.52778\n57385|0.51389\n57386|0.61111\n57387|0.5\n57388|0.63889\n57389|0.61111\n57390|0.69444\n57391|0.5\n57392|0.38889\n57393|0.47222\n57394|0.38889\n57395|0.61111\n57396|0.48611\n57397|0.65278\n57398|0.45833\n57399|0.54167\n57400|0.5\n57401|0.59722\n57402|0.55556\n57403|0.61111\n57404|0.5\n57405|0.5\n57406|0.61111\n57407|0.5\n57408|0.59722\n57409|0.625\n57410|0.5\n57411|0.625\n57412|0.55556\n57413|0.5\n57414|0.43056\n57415|0.54167\n57416|0.69444\n57417|0.77778\n57418|0.5\n57419|0.65278\n57420|0.69444\n57421|0.77778\n57422|0.70833\n57423|0.66667\n57424|0.80556\n57425|0.29167\n57426|0.58333\n57427|0.52778\n57428|0.5\n57429|0.23611\n57430|0.68056\n57431|0.33333\n57432|0.30556\n57433|0.40278\n57434|0.5\n57435|0.55556\n57436|0.38889\n57437|0.51389\n57438|0.51389\n57439|0.29167\n57440|0.5\n57441|0.44444\n57442|0.44444\n57443|0.44444\n57444|0.5\n57445|0.83333\n57446|0.5\n57447|0.5\n57448|0.55556\n57449|0.70833\n57450|0.56944\n57451|0.56944\n57452|0.5\n57453|0.61111\n57454|0.72222\n57455|0.61111\n57456|0.66667\n57457|0.68056\n57458|0.61111\n57459|0.41667\n57460|0.5\n57461|0.5\n57462|0.75\n57463|0.55556\n57464|0.70833\n57465|0.79167\n57466|0.81944\n57467|0.79167\n57468|0.52778\n57469|0.51389\n57470|0.58333\n57471|0.41667\n57472|0.27778\n57473|0.76389\n57474|0.66667\n57475|0.66667\n57476|0.59722\n57477|0.44444\n57478|0.54167\n57479|0.81944\n57480|0.68056\n57481|0.43056\n57482|0.5\n57483|0.56944\n57484|0.72222\n57485|0.75\n57486|0.41667\n57487|0.5\n57488|0.33333\n57489|0.72222\n57490|0.55556\n57491|0.5\n57492|0.44444\n57493|0.5\n57494|0.33333\n57495|0.70833\n57496|0.94444\n57497|0.61111\n57498|0.61111\n57499|0.69444\n57500|0.51389\n57501|0.51389\n57502|0.76389\n57503|0.55556\n57504|0.68056\n57505|0.625\n57506|0.625\n57507|0.65278\n57508|0.77778\n57509|0.70833\n57510|0.83333\n57511|0.59722\n57512|0.48611\n57513|0.59722\n57514|0.59722\n57515|0.19444\n57516|0.11111\n57517|0.375\n57518|0.58333\n57519|0.5\n57520|0.5\n57521|0.52778\n57522|0.61111\n57523|0.77778\n57524|0.77778\n57525|0.76389\n57526|0.80556\n57527|0.41667\n57528|0.47222\n57529|0.625\n57530|0.55556\n57531|0.47222\n57532|0.43056\n57533|0.55556\n57534|0.5\n57535|0.5\n57536|0.55556\n57537|0.51389\n57538|0.56944\n57539|0.59722\n57540|0.56944\n57541|0.5\n57542|0.65278\n57543|0.84722\n57544|0.51389\n57545|0.75\n57546|0.77778\n57547|0.5\n57548|0.63889\n57549|0.69444\n57550|0.5\n57551|0.77778\n57552|0.55556\n57553|0.76389\n57554|0.77778\n57555|0.58333\n57556|0.84722\n57557|0.68056\n57558|0.83333\n57559|0.33333\n57560|0.61111\n57561|0.58333\n57562|0.5\n57563|0.5\n57564|0.51389\n57565|0.70833\n57566|0.66667\n57567|0.55556\n57568|0.5\n57569|0.65278\n57570|0.75\n57571|0.5\n57572|0.44444\n57573|0.5\n57574|0.13889\n57575|0.52778\n57576|0.5\n57577|0.5\n57578|0.5\n57579|0.5\n57580|0.5\n57581|0.80556\n57582|0.5\n57583|0.65278\n57584|0.34722\n57585|0.73611\n57586|0.79167\n57587|0.70833\n57588|0.48611\n57589|0.29167\n57590|0.47222\n57591|0.5\n57592|0.54167\n57593|0.55556\n57594|0.47222\n57595|0.5\n57596|0.90278\n57597|0.69444\n57598|0.80556\n57599|0.47222\n57600|0.72222\n57601|0.55556\n57602|0.52778\n57603|0.58333\n57604|0.80556\n57605|0.43056\n57606|0.44444\n57607|0.40278\n57608|0.5\n57609|0.5\n57610|0.58333\n57611|0.5\n57612|0.52778\n57613|0.43056\n57614|0.63889\n57615|0.65278\n57616|0.5\n57617|0.5\n57618|0.61111\n57619|0.43056\n57620|0.69444\n57621|0.61111\n57622|0.38889\n57623|0.48611\n57624|0.59722\n57625|0.68056\n57626|0.58333\n57627|0.48611\n57628|0.55556\n57629|0.52778\n57630|0.81944\n57631|0.79167\n57632|0.72222\n57633|0.43056\n57634|0.54167\n57635|0.5\n57636|0.75\n57637|0.5\n57638|0.5\n57639|0.51389\n57640|0.44444\n57641|0.55556\n57642|0.51389\n57643|0.55556\n57644|0.73611\n57645|0.77778\n57646|0.72222\n57647|0.69444\n57648|0.83333\n57649|0.5\n57650|0.48611\n57651|0.66667\n57652|0.5\n57653|0.45833\n57654|0.70833\n57655|0.5\n57656|0.5\n57657|0.77778\n57658|0.47222\n57659|0.90278\n57660|0.72222\n57661|0.875\n57662|0.88889\n57663|0.75\n57664|0.83333\n57665|0.88889\n57666|0.29167\n57667|0.34722\n57668|0.51389\n57669|0.61111\n57670|0.55556\n57671|0.44444\n57672|0.44444\n57673|0.83333\n57674|0.55556\n57675|0.5\n57676|0.52778\n57677|0.5\n57678|0.5\n57679|0.56944\n57680|0.5\n57681|0.58333\n57682|0.55556\n57683|0.5\n57684|0.44444\n57685|0.5\n57686|0.52778\n57687|0.55556\n57688|0.40278\n57689|0.5\n57690|0.5\n57691|0.5\n57692|0.5\n57693|0.52778\n57694|0.51389\n57695|0.36111\n57696|0.40278\n57697|0.5\n57698|0.58333\n57699|0.41667\n57700|0.625\n57701|0.5\n57702|0.61111\n57703|0.86111\n57704|0.48611\n57705|0.5\n57706|0.75\n57707|0.70833\n57708|0.79167\n57709|0.66667\n57710|0.80556\n57711|0.29167\n57712|0.54167\n57713|0.5\n57714|0.875\n57715|0.70833\n57716|0.58333\n57717|0.48611\n57718|0.54167\n57719|0.58333\n57720|0.55556\n57721|0.48611\n57722|0.40278\n57723|0.52778\n57724|0.44444\n57725|0.65278\n57726|0.61111\n57727|0.38889\n57728|0.875\n57729|0.68056\n57730|0.76389\n57731|0.5\n57732|0.55556\n57733|0.55556\n57734|0.40278\n57735|0.5\n57736|0.44444\n57737|0.54167\n57738|0.54167\n57739|0.54167\n57740|0.69444\n57741|0.69444\n57742|0.81944\n57743|0.41667\n57744|0.625\n57745|0.69444\n57746|0.48611\n57747|0.40278\n57748|0.38889\n57749|0.55556\n57750|0.40278\n57751|0.5\n57752|0.75\n57753|0.79167\n57754|0.86111\n57755|0.76389\n57756|0.66667\n57757|0.5\n57758|0.51389\n57759|0.61111\n57760|0.91667\n57761|0.72222\n57762|0.54167\n57763|0.76389\n57764|0.81944\n57765|0.5\n57766|0.73611\n57767|0.75\n57768|0.61111\n57769|0.84722\n57770|0.88889\n57771|0.5\n57772|0.61111\n57773|0.43056\n57774|0.73611\n57775|0.61111\n57776|0.59722\n57777|0.5\n57778|0.47222\n57779|0.51389\n57780|0.52778\n57781|0.41667\n57782|0.81944\n57783|0.72222\n57784|0.83333\n57785|0.77778\n57786|0.70833\n57787|0.77778\n57788|0.90278\n57789|0.83333\n57790|0.76389\n57791|0.69444\n57792|0.59722\n57793|0.47222\n57794|0.61111\n57795|0.27778\n57796|0.69444\n57797|0.66667\n57798|0.61111\n57799|0.73611\n57800|0.54167\n57801|0.45833\n57802|0.66667\n57803|0.58333\n57804|0.48611\n57805|0.56944\n57806|0.54167\n57807|0.55556\n57808|0.77778\n57809|0.65278\n57810|0.40278\n57811|0.83333\n57812|0.59722\n57813|0.5\n57814|0.66667\n57815|0.5\n57816|0.45833\n57817|0.65278\n57818|0.52778\n57819|0.66667\n57820|0.63889\n57821|0.54167\n57822|0.45833\n57823|0.90278\n57824|0.66667\n57825|0.80556\n57826|0.61111\n57827|0.73611\n57828|0.625\n57829|0.79167\n57830|0.73611\n57831|0.5\n57832|0.69444\n57833|0.69444\n57834|0.55556\n57835|0.5\n57836|0.5\n57837|0.54167\n57838|0.66667\n57839|0.83333\n57840|0.52778\n57841|0.5\n57842|0.66667\n57843|0.63889\n57844|0.27778\n57845|0.41667\n57846|0.29167\n57847|0.56944\n57848|0.51389\n57849|0.36111\n57850|0.56944\n57851|0.44444\n57852|0.51389\n57853|0.73611\n57854|0.5\n57855|0.73611\n57856|0.55556\n57857|0.375\n57858|0.56944\n57859|0.40278\n57860|0.5\n57861|0.72222\n57862|0.63889\n57863|0.69444\n57864|0.54167\n57865|0.54167\n57866|0.61111\n57867|0.68056\n57868|0.66667\n57869|0.22222\n57870|0.77778\n57871|0.66667\n57872|0.54167\n57873|0.59722\n57874|0.69444\n57875|0.66667\n57876|0.66667\n57877|0.76389\n57878|0.13889\n57879|0.58333\n57880|0.72222\n57881|0.68056\n57882|0.65278\n57883|0.72222\n57884|0.36111\n57885|0.72222\n57886|0.625\n57887|0.69444\n57888|0.76389\n57889|0.29167\n57890|0.47222\n57891|0.66667\n57892|0.72222\n57893|0.61111\n57894|0.83333\n57895|0.68056\n57896|0.68056\n57897|0.5\n57898|0.43056\n57899|0.40278\n57900|0.47222\n57901|0.59722\n57902|0.5\n57903|0.59722\n57904|0.48611\n57905|0.73611\n57906|0.38889\n57907|0.61111\n57908|0.375\n57909|0.80556\n57910|0.58333\n57911|0.5\n57912|0.52778\n57913|0.70833\n57914|0.72222\n57915|0.75\n57916|0.59722\n57917|0.44444\n57918|0.59722\n57919|0.66667\n57920|0.47222\n57921|0.33333\n57922|0.61111\n57923|0.5\n57924|0.59722\n57925|0.66667\n57926|0.36111\n57927|0.44444\n57928|0.5\n57929|0.58333\n57930|0.51389\n57931|0.5\n57932|0.55556\n57933|0.58333\n57934|0.5\n57935|0.5\n57936|0.44444\n57937|0.48611\n57938|0.5\n57939|0.5\n57940|0.5\n57941|0.48611\n57942|0.51389\n57943|0.5\n57944|0.5\n57945|0.5\n57946|0.5\n57947|0.55556\n57948|0.5\n57949|0.51389\n57950|0.5\n57951|0.51389\n57952|0.54167\n57953|0.51389\n57954|0.44444\n57955|0.5\n57956|0.5\n57957|0.54167\n57958|0.55556\n57959|0.625\n57960|0.55556\n57961|0.41667\n57962|0.48611\n57963|0.66667\n57964|0.5\n57965|0.5\n57966|0.45833\n57967|0.47222\n57968|0.33333\n57969|0.52778\n57970|0.5\n57971|0.5\n57972|0.51389\n57973|0.5\n57974|0.5\n57975|0.55556\n57976|0.5\n57977|0.58333\n57978|0.54167\n57979|0.61111\n57980|0.68056\n57981|0.36111\n57982|0.61111\n57983|0.77778\n57984|0.72222\n57985|0.77778\n57986|0.76389\n57987|0.5\n57988|0.22222\n57989|0.61111\n57990|0.5\n57991|0.5\n57992|0.5\n57993|0.5\n57994|0.65278\n57995|0.59722\n57996|0.44444\n57997|0.54167\n57998|0.26389\n57999|0.5\n58000|0.66667\n58001|0.72222\n58002|0.68056\n58003|0.69444\n58004|0.625\n58005|0.45833\n58006|0.56944\n58007|0.51389\n58008|0.54167\n58009|0.5\n58010|0.5\n58011|0.47222\n58012|0.66667\n58013|0.69444\n58014|0.44444\n58015|0.33333\n58016|0.44444\n58017|0.55556\n58018|0.5\n58019|0.88889\n58020|0.56944\n58021|0.63889\n58022|0.5\n58023|0.44444\n58024|0.5\n58025|0.63889\n58026|0.81944\n58027|0.625\n58028|0.72222\n58029|0.45833\n58030|0.58333\n58031|0.5\n58032|0.5\n58033|0.76389\n58034|0.48611\n58035|0.76389\n58036|0.5\n58037|0.5\n58038|0.5\n58039|0.5\n58040|0.44444\n58041|0.5\n58042|0.43056\n58043|0.63889\n58044|0.75\n58045|0.81944\n58046|0.75\n58047|0.77778\n58048|0.55556\n58049|0.5\n58050|0.65278\n58051|0.77778\n58052|0.83333\n58053|0.83333\n58054|0.84722\n58055|0.66667\n58056|0.63889\n58057|0.86111\n58058|0.90278\n58059|0.81944\n58060|0.83333\n58061|0.81944\n58062|0.63889\n58063|0.875\n58064|0.80556\n58065|0.83333\n58066|0.63889\n58067|0.63889\n58068|0.75\n58069|0.98611\n58070|0.77778\n58071|0.91667\n58072|0.97222\n58073|0.83333\n58074|0.84722\n58075|0.94444\n58076|1\n58077|0.72222\n58078|0.5\n58079|0.51389\n58080|0.65278\n58081|0.5\n58082|0.44444\n58083|0.72222\n58084|0.44444\n58085|0.5\n58086|0.51389\n58087|0.36111\n58088|0.15278\n58089|0.5\n58090|0.69444\n58091|0.52778\n58092|0.51389\n58093|0.72222\n58094|0.5\n58095|0.54167\n58096|0.77778\n58097|0.48611\n58098|0.45833\n58099|0.5\n58100|0.51389\n58101|0.5\n58102|0.47222\n58103|0.44444\n58104|0.54167\n58105|0.18056\n58106|0.75\n58107|0.5\n58108|0.5\n58109|0.72222\n58110|0.73611\n58111|0.5\n58112|0.5\n58113|0.55556\n58114|0.61111\n58115|0.69444\n58116|0.5\n58117|0.52778\n58118|0.72222\n58119|0.52778\n58120|0.59722\n58121|0.44444\n58122|0.77778\n58123|0.55556\n58124|0.77778\n58125|0.38889\n58126|0.19444\n58127|0.26389\n58128|0.625\n58129|0.54167\n58130|0.75\n58131|0.38889\n58132|0.45833\n58133|0.5\n58134|0.55556\n58135|0.55556\n58136|0.5\n58137|0.61111\n58138|0.5\n58139|0.5\n58140|0.44444\n58141|0.54167\n58142|0.76389\n58143|0.55556\n58144|0.55556\n58145|0.61111\n58146|0.52778\n58147|0.43056\n58148|0.52778\n58149|0.45833\n58150|0.5\n58151|0.5\n58152|0.47222\n58153|0.44444\n58154|0.38889\n58155|0.61111\n58156|0.27778\n58157|0.375\n58158|0.38889\n58159|0.48611\n58160|0.43056\n58161|0.54167\n58162|0.66667\n58163|0.55556\n58164|0.5\n58165|0.5\n58166|0.5\n58167|0.72222\n58168|0.81944\n58169|0.5\n58170|0.84722\n58171|0.55556\n58172|0.5\n58173|0.56944\n58174|0.45833\n58175|0.54167\n58176|0.38889\n58177|0.38889\n58178|0.61111\n58179|0.44444\n58180|0.5\n58181|0.5\n58182|0.375\n58183|0.30556\n58184|0.45833\n58185|0.52778\n58186|0.61111\n58187|0.45833\n58188|0.45833\n58189|0.5\n58190|0.44444\n58191|0.66667\n58192|0.69444\n58193|0.5\n58194|0.23611\n58195|0.72222\n58196|0.61111\n58197|0.83333\n58198|0.72222\n58199|0.68056\n58200|0.5\n58201|0.52778\n58202|0.54167\n58203|0.65278\n58204|0.5\n58205|0.76389\n58206|0.73611\n58207|0.72222\n58208|0.77778\n58209|0.55556\n58210|0.16667\n58211|0.5\n58212|0.5\n58213|0.56944\n58214|0.5\n58215|0.33333\n58216|0.44444\n58217|0.36111\n58218|0.54167\n58219|0.38889\n58220|0.38889\n58221|0.5\n58222|0.75\n58223|0.61111\n58224|0.5\n58225|0.51389\n58226|0.5\n58227|0.625\n58228|0.76389\n58229|0.65278\n58230|0.61111\n58231|0.48611\n58232|0.56944\n58233|0.45833\n58234|0.63889\n58235|0.59722\n58236|0.72222\n58237|0.27778\n58238|0.34722\n58239|0.84722\n58240|0.48611\n58241|0.54167\n58242|0.69444\n58243|0.51389\n58244|0.76389\n58245|0.73611\n58246|0.76389\n58247|0.51389\n58248|0.55556\n58249|0.5\n58250|0.54167\n58251|0.48611\n58252|0.44444\n58253|0.38889\n58254|0.44444\n58255|0.68056\n58256|0.55556\n58257|0.45833\n58258|0.83333\n58259|0.44444\n58260|0.625\n58261|0.58333\n58262|0.5\n58263|0.86111\n58264|0.77778\n58265|0.625\n58266|0.55556\n58267|0.66667\n58268|0.61111\n58269|0.81944\n58270|0.77778\n58271|0.86111\n58272|0.5\n58273|0.59722\n58274|0.47222\n58275|0.65278\n58276|0.43056\n58277|0.73611\n58278|0.55556\n58279|0.5\n58280|0.375\n58281|0.41667\n58282|0.68056\n58283|0.66667\n58284|0.77778\n58285|0.68056\n58286|0.63889\n58287|0.5\n58288|0.70833\n58289|0.63889\n58290|0.48611\n58291|0.55556\n58292|0.95833\n58293|0.43056\n58294|0.54167\n58295|0.56944\n58296|0.80556\n58297|0.30556\n58298|0.54167\n58299|0.63889\n58300|0.55556\n58301|0.5\n58302|0.59722\n58303|0.84722\n58304|0.80556\n58305|0.29167\n58306|0.88889\n58307|0.59722\n58308|0.625\n58309|0.63889\n58310|0.54167\n58311|0.13889\n58312|0.58333\n58313|0.29167\n58314|0.66667\n58315|0.86111\n58316|0.73611\n58317|0.81944\n58318|0.5\n58319|0.73611\n58320|0.56944\n58321|0.5\n58322|0.55556\n58323|0.75\n58324|0.75\n58325|0.5\n58326|0.55556\n58327|0.58333\n58328|0.73611\n58329|0.54167\n58330|0.61111\n58331|0.5\n58332|0.63889\n58333|0.5\n58334|0.5\n58335|0.625\n58336|0.56944\n58337|0.5\n58338|0.66667\n58339|0.80556\n58340|0.58333\n58341|0.73611\n58342|0.5\n58343|0.45833\n58344|0.51389\n58345|0.45833\n58346|0.58333\n58347|0.61111\n58348|0.77778\n58349|0.72222\n58350|0.77778\n58351|0.55556\n58352|0.63889\n58353|0.61111\n58354|0.625\n58355|0.83333\n58356|0.41667\n58357|0.625\n58358|0.48611\n58359|0.77778\n58360|0.68056\n58361|0.48611\n58362|0.5\n58363|0.5\n58364|0.5\n58365|0.45833\n58366|0.38889\n58367|0.38889\n58368|0.68056\n58369|0.59722\n58370|0.75\n58371|0.59722\n58372|0.59722\n58373|0.68056\n58374|0.65278\n58375|0.55556\n58376|0.5\n58377|0.5\n58378|0.51389\n58379|0.52778\n58380|0.27778\n58381|0.5\n58382|0.86111\n58383|0.90278\n58384|0.55556\n58385|0.59722\n58386|0.56944\n58387|0.55556\n58388|0.5\n58389|0.56944\n58390|0.68056\n58391|0.5\n58392|0.51389\n58393|0.45833\n58394|0.72222\n58395|0.58333\n58396|0.61111\n58397|0.79167\n58398|0.88889\n58399|0.38889\n58400|0.51389\n58401|0.23611\n58402|0.33333\n58403|0.58333\n58404|0.5\n58405|0.38889\n58406|0.51389\n58407|0.58333\n58408|0.73611\n58409|0.34722\n58410|0.33333\n58411|0.375\n58412|0.56944\n58413|0.18056\n58414|0.33333\n58415|0.5\n58416|0.61111\n58417|0.56944\n58418|0.51389\n58419|0.51389\n58420|0.625\n58421|0.625\n58422|0.59722\n58423|0.66667\n58424|0.68056\n58425|0.73611\n58426|0.61111\n58427|0.65278\n58428|0.27778\n58429|0.45833\n58430|0.5\n58431|0.72222\n58432|0.5\n58433|0.72222\n58434|0.5\n58435|0.73611\n58436|0.5\n58437|0.875\n58438|0.58333\n58439|0.5\n58440|0.56944\n58441|0.5\n58442|0.54167\n58443|0.069444\n58444|0.58333\n58445|0.59722\n58446|0.61111\n58447|0.5\n58448|0.51389\n58449|0.31944\n58450|0.48611\n58451|0.27778\n58452|0.41667\n58453|0.51389\n58454|0.75\n58455|0.55556\n58456|0.58333\n58457|0.22222\n58458|0.625\n58459|0.55556\n58460|0.45833\n58461|0.5\n58462|0.54167\n58463|0.55556\n58464|0.48611\n58465|0.66667\n58466|0.65278\n58467|0.375\n58468|0.5\n58469|0.5\n58470|0.5\n58471|0.5\n58472|0.5\n58473|0.5\n58474|0.5\n58475|0.69444\n58476|0.51389\n58477|0.69444\n58478|0.75\n58479|0.55556\n58480|0.52778\n58481|0.66667\n58482|0.52778\n58483|0.5\n58484|0.5\n58485|0.5\n58486|0.52778\n58487|0.40278\n58488|0.5\n58489|0.5\n58490|0.51389\n58491|0.75\n58492|0.58333\n58493|0.5\n58494|0.66667\n58495|0.5\n58496|0.55556\n58497|0.625\n58498|0.61111\n58499|0.36111\n58500|0.5\n58501|0.61111\n58502|0.625\n58503|0.58333\n58504|0.22222\n58505|0.81944\n58506|0.41667\n58507|0.38889\n58508|0.51389\n58509|0.94444\n58510|0.44444\n58511|0.72222\n58512|0.5\n58513|0.16667\n58514|0.38889\n58515|0.56944\n58516|0.40278\n58517|0.52778\n58518|0.80556\n58519|0.5\n58520|0.5\n58521|0.55556\n58522|0.31944\n58523|0.52778\n58524|0.51389\n58525|0.56944\n58526|0.55556\n58527|0.5\n58528|0.5\n58529|0.72222\n58530|0.5\n58531|0.5\n58532|0.65278\n58533|0.44444\n58534|0.5\n58535|0.58333\n58536|0.33333\n58537|0.16667\n58538|0.55556\n58539|0.55556\n58540|0.625\n58541|0.54167\n58542|0.5\n58543|0.54167\n58544|0.55556\n58545|0.54167\n58546|0.51389\n58547|0.69444\n58548|0.52778\n58549|0.5\n58550|0.44444\n58551|0.55556\n58552|0.5\n58553|0.5\n58554|0.625\n58555|0.56944\n58556|0.63889\n58557|0.5\n58558|0.5\n58559|0.41667\n58560|0.52778\n58561|0.61111\n58562|0.5\n58563|0.5\n58564|0.51389\n58565|0.73611\n58566|0.75\n58567|0.86111\n58568|0.625\n58569|0.875\n58570|0.70833\n58571|0.75\n58572|0.84722\n58573|0.45833\n58574|0.75\n58575|0.88889\n58576|0.65278\n58577|0.81944\n58578|0.55556\n58579|0.43056\n58580|0.66667\n58581|0.5\n58582|0.65278\n58583|0.33333\n58584|0.5\n58585|0.52778\n58586|0.5\n58587|0.54167\n58588|0.63889\n58589|0.5\n58590|0.5\n58591|0.5\n58592|0.375\n58593|0.47222\n58594|0.5\n58595|0.86111\n58596|0.5\n58597|0.66667\n58598|0.91667\n58599|0.58333\n58600|0.75\n58601|0.61111\n58602|0.70833\n58603|0.90278\n58604|0.63889\n58605|0.44444\n58606|0.40278\n58607|0.5\n58608|0.55556\n58609|0.5\n58610|0.52778\n58611|0.55556\n58612|0.5\n58613|0.5\n58614|0.45833\n58615|0.5\n58616|0.44444\n58617|0.875\n58618|0.76389\n58619|0.69444\n58620|0.41667\n58621|0.40278\n58622|0.52778\n58623|0.625\n58624|0.70833\n58625|0.55556\n58626|0.75\n58627|0.52778\n58628|0.51389\n58629|0.94444\n58630|0.5\n58631|0.41667\n58632|0.66667\n58633|0.625\n58634|0.63889\n58635|0.54167\n58636|0.375\n58637|0.48611\n58638|0.36111\n58639|0.55556\n58640|0.83333\n58641|0.66667\n58642|0.80556\n58643|0.84722\n58644|0.72222\n58645|0.88889\n58646|0.5\n58647|0.80556\n58648|0.79167\n58649|0.51389\n58650|0.44444\n58651|0.58333\n58652|0.66667\n58653|0.5\n58654|0.77778\n58655|0.5\n58656|0.80556\n58657|0.5\n58658|0.72222\n58659|0.5\n58660|0.41667\n58661|0.40278\n58662|0.40278\n58663|0.83333\n58664|0.5\n58665|0.5\n58666|0.5\n58667|0.77778\n58668|0.59722\n58669|0.5\n58670|0.76389\n58671|0.36111\n58672|0.58333\n58673|0.52778\n58674|0.58333\n58675|0.55556\n58676|0.38889\n58677|0.5\n58678|0.55556\n58679|0.5\n58680|0.25\n58681|0.59722\n58682|0.30556\n58683|0.58333\n58684|0.56944\n58685|0.625\n58686|0.55556\n58687|0.45833\n58688|0.5\n58689|0.5\n58690|0.61111\n58691|0.51389\n58692|0.61111\n58693|0.73611\n58694|0.63889\n58695|0.5\n58696|0.5\n58697|0.81944\n58698|0.81944\n58699|0.54167\n58700|0.5\n58701|0.5\n58702|0.88889\n58703|0.5\n58704|0.55556\n58705|0.45833\n58706|0.625\n58707|0.68056\n58708|0.52778\n58709|0.55556\n58710|0.48611\n58711|0.65278\n58712|0.69444\n58713|0.5\n58714|0.63889\n58715|0.56944\n58716|0.68056\n58717|0.63889\n58718|0.68056\n58719|0.51389\n58720|0.55556\n58721|0.34722\n58722|0.38889\n58723|0.25\n58724|0.27778\n58725|0.84722\n58726|0.77778\n58727|0.65278\n58728|0.25\n58729|0.375\n58730|0.34722\n58731|0.34722\n58732|0.27778\n58733|0.5\n58734|0.69444\n58735|0.66667\n58736|0.45833\n58737|0.5\n58738|0.63889\n58739|0.81944\n58740|0.59722\n58741|0.5\n58742|0.56944\n58743|0.5\n58744|0.36111\n58745|0.5\n58746|0.625\n58747|0.65278\n58748|0.63889\n58749|0.5\n58750|0.41667\n58751|0.625\n58752|0.68056\n58753|0.86111\n58754|0.5\n58755|0.58333\n58756|0.5\n58757|0.5\n58758|0.58333\n58759|0.5\n58760|0.5\n58761|0.61111\n58762|0.63889\n58763|0.51389\n58764|0.5\n58765|0.44444\n58766|0.65278\n58767|0.58333\n58768|0.58333\n58769|0.55556\n58770|0.83333\n58771|0.48611\n58772|0.51389\n58773|0.55556\n58774|0.5\n58775|0.73611\n58776|0.76389\n58777|0.70833\n58778|0.34722\n58779|0.65278\n58780|0.44444\n58781|0.66667\n58782|0.45833\n58783|0.43056\n58784|0.59722\n58785|0.69444\n58786|0.76389\n58787|0.55556\n58788|0.27778\n58789|0.5\n58790|0.11111\n58791|0.18056\n58792|0.31944\n58793|0.41667\n58794|0.58333\n58795|0.51389\n58796|0.73611\n58797|0.69444\n58798|0.56944\n58799|0.5\n58800|0.58333\n58801|0.56944\n58802|0.33333\n58803|0.5\n58804|0.5\n58805|0.47222\n58806|0.58333\n58807|0.75\n58808|0.45833\n58809|0.45833\n58810|0.31944\n58811|0.68056\n58812|0.52778\n58813|0.48611\n58814|0.68056\n58815|0.77778\n58816|0.63889\n58817|0.51389\n58818|0.51389\n58819|0.40278\n58820|0.38889\n58821|0.25\n58822|0.45833\n58823|0.45833\n58824|0.52778\n58825|0.5\n58826|0.56944\n58827|0.58333\n58828|0.51389\n58829|0.5\n58830|0.51389\n58831|0.63889\n58832|0.5\n58833|0.55556\n58834|0.55556\n58835|0.44444\n58836|0.5\n58837|0.59722\n58838|0.56944\n58839|0.48611\n58840|0.5\n58841|0.5\n58842|0.58333\n58843|0.55556\n58844|0.52778\n58845|0.76389\n58846|0.51389\n58847|0.63889\n58848|0.58333\n58849|0.5\n58850|0.5\n58851|0.55556\n58852|0.5\n58853|0.72222\n58854|0.63889\n58855|0.58333\n58856|0.5\n58857|0.625\n58858|0.77778\n58859|0.26389\n58860|0.36111\n58861|0.5\n58862|0.59722\n58863|0.5\n58864|0.44444\n58865|0.58333\n58866|0.70833\n58867|0.77778\n58868|0.79167\n58869|0.88889\n58870|0.55556\n58871|0.44444\n58872|0.51389\n58873|0.36111\n58874|0.5\n58875|0.26389\n58876|0.52778\n58877|0.5\n58878|0.51389\n58879|0.5\n58880|0.63889\n58881|0.51389\n58882|0.66667\n58883|0.52778\n58884|0.5\n58885|0.52778\n58886|0.51389\n58887|0.75\n58888|0.69444\n58889|0.5\n58890|0.52778\n58891|0.45833\n58892|0.5\n58893|0.40278\n58894|0.5\n58895|0.5\n58896|0.5\n58897|0.55556\n58898|0.70833\n58899|0.43056\n58900|0.84722\n58901|0.79167\n58902|0.40278\n58903|0.48611\n58904|0.75\n58905|0.5\n58906|0.63889\n58907|0.44444\n58908|0.48611\n58909|0.69444\n58910|0.66667\n58911|0.33333\n58912|0.81944\n58913|0.79167\n58914|0.54167\n58915|0.79167\n58916|0.76389\n58917|0.66667\n58918|0.72222\n58919|0.40278\n58920|0.73611\n58921|0.84722\n58922|0.55556\n58923|0.66667\n58924|0.5\n58925|0.68056\n58926|0.55556\n58927|0.55556\n58928|0.5\n58929|0.5\n58930|0.44444\n58931|0.51389\n58932|0.51389\n58933|0.66667\n58934|0.58333\n58935|0.51389\n58936|0.83333\n58937|0.55556\n58938|0.51389\n58939|0.5\n58940|0.38889\n58941|0.61111\n58942|0.45833\n58943|0.625\n58944|0.80556\n58945|0.56944\n58946|0.48611\n58947|0.41667\n58948|0.34722\n58949|0.48611\n58950|0.51389\n58951|0.5\n58952|0.84722\n58953|0.44444\n58954|0.5\n58955|0.41667\n58956|0.5\n58957|0.30556\n58958|0.56944\n58959|0.33333\n58960|0.69444\n58961|0.5\n58962|0.61111\n58963|0.5\n58964|0.66667\n58965|0.20833\n58966|0.25\n58967|0.625\n58968|0.66667\n58969|0.5\n58970|0.27778\n58971|0.26389\n58972|0.91667\n58973|0.48611\n58974|0.55556\n58975|0.5\n58976|0.5\n58977|0.55556\n58978|0.56944\n58979|0.59722\n58980|0.22222\n58981|0.55556\n58982|0.55556\n58983|0.72222\n58984|0.75\n58985|0.55556\n58986|0.73611\n58987|0.45833\n58988|0.5\n58989|0.5\n58990|0.84722\n58991|0.48611\n58992|0.29167\n58993|0.5\n58994|0.88889\n58995|0.72222\n58996|0.58333\n58997|0.72222\n58998|0.51389\n58999|0.77778\n59000|0.72222\n59001|0.83333\n59002|0.83333\n59003|0.33333\n59004|0.83333\n59005|0.81944\n59006|0.61111\n59007|0.5\n59008|0.5\n59009|0.44444\n59010|0.38889\n59011|0.54167\n59012|0.5\n59013|0.55556\n59014|0.58333\n59015|0.76389\n59016|0.55556\n59017|0.59722\n59018|0.625\n59019|0.66667\n59020|0.66667\n59021|0.72222\n59022|0.72222\n59023|0.84722\n59024|0.80556\n59025|0.5\n59026|0.61111\n59027|0.5\n59028|0.5\n59029|0.5\n59030|0.83333\n59031|0.61111\n59032|0.5\n59033|0.47222\n59034|0.52778\n59035|0.55556\n59036|0.43056\n59037|0.55556\n59038|0.51389\n59039|0.5\n59040|0.61111\n59041|0.79167\n59042|0.73611\n59043|0.5\n59044|0.73611\n59045|0.72222\n59046|0.5\n59047|0.91667\n59048|0.68056\n59049|0.72222\n59050|0.84722\n59051|0.875\n59052|0.75\n59053|0.5\n59054|0.5\n59055|0.73611\n59056|0.5\n59057|0.55556\n59058|0.51389\n59059|0.83333\n59060|0.66667\n59061|0.56944\n59062|0.625\n59063|0.54167\n59064|0.54167\n59065|0.83333\n59066|0.5\n59067|0.5\n59068|0.47222\n59069|0.33333\n59070|0.61111\n59071|0.31944\n59072|0.72222\n59073|0.83333\n59074|0.70833\n59075|0.66667\n59076|0.72222\n59077|0.79167\n59078|0.73611\n59079|0.76389\n59080|0.51389\n59081|0.40278\n59082|0.30556\n59083|0.625\n59084|0.55556\n59085|0.5\n59086|0.72222\n59087|0.61111\n59088|0.80556\n59089|0.5\n59090|0.5\n59091|0.5\n59092|0.61111\n59093|0.48611\n59094|0.69444\n59095|0.88889\n59096|0.77778\n59097|0.5\n59098|0.69444\n59099|0.66667\n59100|0.76389\n59101|0.59722\n59102|0.76389\n59103|0.59722\n59104|0.54167\n59105|0.51389\n59106|0.63889\n59107|0.5\n59108|0.5\n59109|0.55556\n59110|0.30556\n59111|0.44444\n59112|0.47222\n59113|0.44444\n59114|0.47222\n59115|0.31944\n59116|0.55556\n59117|0.44444\n59118|0.5\n59119|0.375\n59120|0.58333\n59121|0.63889\n59122|0.5\n59123|0.63889\n59124|0.73611\n59125|0.72222\n59126|0.5\n59127|0.77778\n59128|0.55556\n59129|0.52778\n59130|0.58333\n59131|0.69444\n59132|0.69444\n59133|0.68056\n59134|0.76389\n59135|0.51389\n59136|0.22222\n59137|0.56944\n59138|0.5\n59139|0.55556\n59140|0.63889\n59141|0.5\n59142|0.5\n59143|0.72222\n59144|0.70833\n59145|0.5\n59146|0.5\n59147|0.5\n59148|0.5\n59149|0.61111\n59150|0.58333\n59151|0.5\n59152|0.51389\n59153|0.5\n59154|0.5\n59155|0.58333\n59156|0.52778\n59157|0.5\n59158|0.81944\n59159|0.48611\n59160|0.59722\n59161|0.83333\n59162|0.69444\n59163|0.58333\n59164|0.61111\n59165|0.56944\n59166|0.68056\n59167|0.61111\n59168|0.88889\n59169|0.70833\n59170|0.5\n59171|0.47222\n59172|0.5\n59173|0.52778\n59174|0.75\n59175|0.79167\n59176|0.77778\n59177|0.875\n59178|0.75\n59179|0.69444\n59180|0.65278\n59181|0.72222\n59182|0.88889\n59183|0.51389\n59184|0.69444\n59185|0.75\n59186|0.63889\n59187|0.63889\n59188|0.51389\n59189|0.5\n59190|0.55556\n59191|0.86111\n59192|0.51389\n59193|0.33333\n59194|0.75\n59195|0.5\n59196|0.5\n59197|0.55556\n59198|0.5\n59199|0.52778\n59200|0.55556\n59201|0.61111\n59202|0.5\n59203|0.51389\n59204|0.5\n59205|0.27778\n59206|0.88889\n59207|0.58333\n59208|0.75\n59209|0.63889\n59210|0.58333\n59211|0.56944\n59212|0.5\n59213|0.34722\n59214|0.30556\n59215|0.55556\n59216|0.5\n59217|0.56944\n59218|0.22222\n59219|0.72222\n59220|0.5\n59221|0.5\n59222|0.65278\n59223|0.61111\n59224|0.80556\n59225|0.63889\n59226|0.5\n59227|0.73611\n59228|0.70833\n59229|0.38889\n59230|0.51389\n59231|0.72222\n59232|0.76389\n59233|0.48611\n59234|0.56944\n59235|0.5\n59236|0.5\n59237|0.83333\n59238|0.45833\n59239|0.59722\n59240|0.66667\n59241|0.55556\n59242|0.52778\n59243|0.76389\n59244|0.52778\n59245|0.59722\n59246|0.36111\n59247|0.45833\n59248|0.5\n59249|0.59722\n59250|0.45833\n59251|0.52778\n59252|0.76389\n59253|0.54167\n59254|0.55556\n59255|0.38889\n59256|0.58333\n59257|0.69444\n59258|0.72222\n59259|0.5\n59260|0.61111\n59261|0.625\n59262|0.51389\n59263|0.75\n59264|0.5\n59265|0.5\n59266|0.61111\n59267|0.56944\n59268|0.26389\n59269|0.5\n59270|0.83333\n59271|0.55556\n59272|0.40278\n59273|0.54167\n59274|0.38889\n59275|0.59722\n59276|0.76389\n59277|0.63889\n59278|0.70833\n59279|0.59722\n59280|0.69444\n59281|0.48611\n59282|0.33333\n59283|0.61111\n59284|0.76389\n59285|0.44444\n59286|0.68056\n59287|0.52778\n59288|0.52778\n59289|0.5\n59290|0.63889\n59291|0.23611\n59292|0.55556\n59293|0.55556\n59294|0.5\n59295|0.61111\n59296|0.61111\n59297|0.88889\n59298|0.5\n59299|0.48611\n59300|0.33333\n59301|0.20833\n59302|0.63889\n59303|0.5\n59304|0.5\n59305|0.5\n59306|0.43056\n59307|0.5\n59308|0.68056\n59309|0.51389\n59310|0.59722\n59311|0.48611\n59312|0.55556\n59313|0.55556\n59314|0.73611\n59315|0.56944\n59316|0.79167\n59317|0.43056\n59318|0.55556\n59319|0.56944\n59320|0.83333\n59321|0.5\n59322|0.75\n59323|0.81944\n59324|0.43056\n59325|0.38889\n59326|0.41667\n59327|0.5\n59328|0.61111\n59329|0.5\n59330|0.76389\n59331|0.43056\n59332|0.68056\n59333|0.48611\n59334|0.5\n59335|0.5\n59336|0.5\n59337|0.63889\n59338|0.61111\n59339|0.41667\n59340|0.27778\n59341|0.51389\n59342|0.63889\n59343|0.5\n59344|0.61111\n59345|0.625\n59346|0.5\n59347|0.5\n59348|0.40278\n59349|0.5\n59350|0.55556\n59351|0.63889\n59352|0.625\n59353|0.44444\n59354|0.65278\n59355|0.38889\n59356|0.48611\n59357|0.94444\n59358|0.58333\n59359|0.22222\n59360|0.5\n59361|0.66667\n59362|0.45833\n59363|0.52778\n59364|0.41667\n59365|0.5\n59366|0.61111\n59367|0.47222\n59368|0.52778\n59369|0.5\n59370|0.58333\n59371|0.66667\n59372|0.83333\n59373|0.68056\n59374|0.52778\n59375|0.61111\n59376|0.5\n59377|0.55556\n59378|0.56944\n59379|0.625\n59380|0.54167\n59381|0.76389\n59382|0.45833\n59383|0.69444\n59384|0.51389\n59385|0.69444\n59386|0.5\n59387|0.58333\n59388|0.5\n59389|0.38889\n59390|0.48611\n59391|0.52778\n59392|0.52778\n59393|0.44444\n59394|0.52778\n59395|0.45833\n59396|0.61111\n59397|0.58333\n59398|0.51389\n59399|0.63889\n59400|0.48611\n59401|0.55556\n59402|0.70833\n59403|0.52778\n59404|0.5\n59405|0.56944\n59406|0.5\n59407|0.54167\n59408|0.51389\n59409|0.5\n59410|0.33333\n59411|0.40278\n59412|0.56944\n59413|0.5\n59414|0.31944\n59415|0.59722\n59416|0.5\n59417|0.52778\n59418|0.43056\n59419|0.55556\n59420|0.48611\n59421|0.66667\n59422|0.5\n59423|0.55556\n59424|0.5\n59425|0.61111\n59426|0.55556\n59427|0.51389\n59428|0.30556\n59429|0.70833\n59430|0.61111\n59431|0.91667\n59432|0.68056\n59433|0.5\n59434|0.63889\n59435|0.69444\n59436|0.73611\n59437|0.69444\n59438|0.59722\n59439|0.65278\n59440|0.66667\n59441|0.61111\n59442|0.47222\n59443|0.43056\n59444|0.41667\n59445|0.5\n59446|0.81944\n59447|0.59722\n59448|0.30556\n59449|0.375\n59450|0.26389\n59451|0.125\n59452|0.29167\n59453|0.19444\n59454|0.5\n59455|0.875\n59456|0.5\n59457|0.27778\n59458|0.34722\n59459|0.11111\n59460|0.5\n59461|0.29167\n59462|0.22222\n59463|0.69444\n59464|0.31944\n59465|0.52778\n59466|0.5\n59467|0.81944\n59468|0.61111\n59469|0.79167\n59470|0.73611\n59471|0.91667\n59472|0.80556\n59473|0.88889\n59474|0.625\n59475|0.84722\n59476|0.81944\n59477|0.83333\n59478|0.68056\n59479|0.66667\n59480|0.625\n59481|0.30556\n59482|0.40278\n59483|0.43056\n59484|0.5\n59485|0.48611\n59486|0.56944\n59487|0.52778\n59488|0.5\n59489|0.5\n59490|0.45833\n59491|0.5\n59492|0.58333\n59493|0.45833\n59494|0.51389\n59495|0.44444\n59496|0.45833\n59497|0.54167\n59498|0.54167\n59499|0.52778\n59500|0.66667\n59501|0.76389\n59502|0.69444\n59503|0.55556\n59504|0.59722\n59505|0.68056\n59506|0.625\n59507|0.69444\n59508|0.70833\n59509|0.73611\n59510|0.54167\n59511|0.61111\n59512|0.5\n59513|0.5\n59514|0.5\n59515|0.55556\n59516|0.55556\n59517|0.47222\n59518|0.45833\n59519|0.34722\n59520|0.76389\n59521|0.69444\n59522|0.63889\n59523|0.5\n59524|0.52778\n59525|0.5\n59526|0.69444\n59527|0.76389\n59528|0.83333\n59529|0.48611\n59530|0.59722\n59531|0.5\n59532|0.68056\n59533|0.5\n59534|0.61111\n59535|0.48611\n59536|0.63889\n59537|0.76389\n59538|0.44444\n59539|0.55556\n59540|0.51389\n59541|0.5\n59542|0.38889\n59543|0.31944\n59544|0.47222\n59545|0.5\n59546|0.41667\n59547|0.68056\n59548|0.59722\n59549|0.61111\n59550|0.61111\n59551|0.75\n59552|0.875\n59553|0.55556\n59554|0.54167\n59555|0.55556\n59556|0.63889\n59557|0.44444\n59558|0.5\n59559|0.55556\n59560|0.79167\n59561|0.27778\n59562|0.5\n59563|0.34722\n59564|0.5\n59565|0.58333\n59566|0.44444\n59567|0.44444\n59568|0.51389\n59569|0.5\n59570|0.30556\n59571|0.5\n59572|0.55556\n59573|0.77778\n59574|0.83333\n59575|0.56944\n59576|0.5\n59577|0.80556\n59578|0.76389\n59579|0.38889\n59580|0.70833\n59581|0.79167\n59582|0.80556\n59583|0.80556\n59584|0.5\n59585|0.5\n59586|0.5\n59587|0.5\n59588|0.54167\n59589|0.5\n59590|0.83333\n59591|0.52778\n59592|0.375\n59593|0.81944\n59594|0.80556\n59595|0.93056\n59596|0.5\n59597|0.83333\n59598|0.47222\n59599|0.5\n59600|0.83333\n59601|0.5\n59602|0.52778\n59603|0.51389\n59604|0.55556\n59605|0.5\n59606|0.44444\n59607|0.5\n59608|0.40278\n59609|0.27778\n59610|0.25\n59611|0.77778\n59612|0.73611\n59613|0.125\n59614|0.77778\n59615|0.80556\n59616|0.5\n59617|0.44444\n59618|0.5\n59619|0.61111\n59620|0.51389\n59621|0.5\n59622|0.52778\n59623|0.375\n59624|0.47222\n59625|0.31944\n59626|0.5\n59627|0.75\n59628|0.51389\n59629|0.66667\n59630|0.41667\n59631|0.44444\n59632|0.38889\n59633|0.66667\n59634|0.58333\n59635|0.48611\n59636|0.44444\n59637|0.55556\n59638|0.54167\n59639|0.51389\n59640|0.5\n59641|0.5\n59642|0.5\n59643|0.27778\n59644|0.38889\n59645|0.66667\n59646|0.61111\n59647|0.5\n59648|0.625\n59649|0.69444\n59650|0.55556\n59651|0.34722\n59652|0.5\n59653|0.75\n59654|0.52778\n59655|0.94444\n59656|0.77778\n59657|0.44444\n59658|0.70833\n59659|0.65278\n59660|0.88889\n59661|0.61111\n59662|0.48611\n59663|0.79167\n59664|0.55556\n59665|0.66667\n59666|0.63889\n59667|0.55556\n59668|0.54167\n59669|0.125\n59670|0.34722\n59671|0.38889\n59672|0.33333\n59673|0.19444\n59674|0.11111\n59675|0.61111\n59676|0.68056\n59677|0.375\n59678|0.30556\n59679|0.45833\n59680|0.5\n59681|0.51389\n59682|0.59722\n59683|0.54167\n59684|0.69444\n59685|0.51389\n59686|0.38889\n59687|0.51389\n59688|0.36111\n59689|0.27778\n59690|0.33333\n59691|0.5\n59692|0.5\n59693|0.55556\n59694|0.63889\n59695|0.69444\n59696|0.72222\n59697|0.5\n59698|0.63889\n59699|0.59722\n59700|0.68056\n59701|0.26389\n59702|0.19444\n59703|0.38889\n59704|0.5\n59705|0.31944\n59706|0.875\n59707|0.45833\n59708|0.38889\n59709|0.44444\n59710|0.68056\n59711|0.61111\n59712|0.68056\n59713|0.73611\n59714|0.61111\n59715|0.5\n59716|0.54167\n59717|0.43056\n59718|0.83333\n59719|0.55556\n59720|0.83333\n59721|0.52778\n59722|0.58333\n59723|0.43056\n59724|0.51389\n59725|0.63889\n59726|0.38889\n59727|0.33333\n59728|0.44444\n59729|0.43056\n59730|0.5\n59731|0.40278\n59732|0.30556\n59733|0.33333\n59734|0.45833\n59735|0.51389\n59736|0.43056\n59737|0.36111\n59738|0.40278\n59739|0.5\n59740|0.54167\n59741|0.76389\n59742|0.55556\n59743|0.51389\n59744|0.36111\n59745|0.54167\n59746|0.61111\n59747|0.47222\n59748|0.15278\n59749|0.29167\n59750|0.38889\n59751|0.5\n59752|0.43056\n59753|0.77778\n59754|0.48611\n59755|0.5\n59756|0.68056\n59757|0.84722\n59758|0.88889\n59759|0.22222\n59760|0.27778\n59761|0.33333\n59762|0.5\n59763|0.5\n59764|0.5\n59765|0.76389\n59766|0.58333\n59767|0.45833\n59768|0.43056\n59769|0.40278\n59770|0.48611\n59771|0.5\n59772|0.47222\n59773|0.59722\n59774|0.69444\n59775|0.5\n59776|0.48611\n59777|0.91667\n59778|0.58333\n59779|0.54167\n59780|0.61111\n59781|0.66667\n59782|0.45833\n59783|0.54167\n59784|0.63889\n59785|0.51389\n59786|0.61111\n59787|0.54167\n59788|0.55556\n59789|0.5\n59790|0.5\n59791|0.5\n59792|0.55556\n59793|0.65278\n59794|0.69444\n59795|0.47222\n59796|0.73611\n59797|0.59722\n59798|0.40278\n59799|0.56944\n59800|0.38889\n59801|0.55556\n59802|0.86111\n59803|0.41667\n59804|0.83333\n59805|0.68056\n59806|0.75\n59807|0.69444\n59808|0.77778\n59809|0.56944\n59810|0.40278\n59811|0.73611\n59812|0.22222\n59813|0.5\n59814|0.61111\n59815|0.76389\n59816|0.79167\n59817|0.79167\n59818|0.77778\n59819|0.95833\n59820|0.90278\n59821|0.51389\n59822|0.51389\n59823|0.40278\n59824|0.63889\n59825|0.56944\n59826|0.63889\n59827|0.5\n59828|0.27778\n59829|0.5\n59830|0.5\n59831|0.55556\n59832|0.44444\n59833|0.51389\n59834|0.44444\n59835|0.55556\n59836|0.44444\n59837|0.61111\n59838|0.52778\n59839|0.5\n59840|0.77778\n59841|0.88889\n59842|0.91667\n59843|0.65278\n59844|0.73611\n59845|0.625\n59846|0.81944\n59847|0.79167\n59848|0.76389\n59849|0.83333\n59850|0.94444\n59851|0.79167\n59852|0.81944\n59853|0.55556\n59854|0.38889\n59855|0.83333\n59856|0.77778\n59857|0.73611\n59858|0.80556\n59859|0.83333\n59860|0.81944\n59861|0.59722\n59862|0.79167\n59863|0.5\n59864|0.93056\n59865|0.79167\n59866|0.72222\n59867|0.38889\n59868|0.5\n59869|0.5\n59870|0.51389\n59871|0.41667\n59872|0.43056\n59873|0.44444\n59874|0.54167\n59875|0.59722\n59876|0.5\n59877|0.5\n59878|0.5\n59879|0.58333\n59880|0.59722\n59881|0.29167\n59882|0.77778\n59883|0.79167\n59884|0.625\n59885|0.5\n59886|0.5\n59887|0.5\n59888|0.70833\n59889|0.80556\n59890|0.56944\n59891|0.51389\n59892|0.55556\n59893|0.56944\n59894|0.5\n59895|0.83333\n59896|0.83333\n59897|0.77778\n59898|0.875\n59899|0.63889\n59900|0.45833\n59901|0.72222\n59902|0.51389\n59903|0.61111\n59904|0.68056\n59905|0.5\n59906|0.5\n59907|0.5\n59908|0.41667\n59909|0.52778\n59910|0.47222\n59911|0.66667\n59912|0.90278\n59913|0.45833\n59914|0.56944\n59915|0.72222\n59916|0.76389\n59917|0.72222\n59918|0.33333\n59919|0.40278\n59920|0.25\n59921|0.56944\n59922|0.69444\n59923|0.47222\n59924|0.63889\n59925|0.86111\n59926|0.34722\n59927|0.45833\n59928|0.72222\n59929|0.5\n59930|0.50694\n59931|0.55556\n59932|0.77778\n59933|0.66667\n59934|0.45833\n59935|0.66667\n59936|0.41667\n59937|0.54167\n59938|0.5\n59939|0.81944\n59940|0.5\n59941|0.44444\n59942|0.44444\n59943|0.5\n59944|0.94444\n59945|0.86111\n59946|0.69444\n59947|0.48611\n59948|0.47222\n59949|0.40278\n59950|0.59722\n59951|0.5\n59952|0.55556\n59953|0.51389\n59954|0.65278\n59955|0.38889\n59956|0.69444\n59957|0.61111\n59958|0.5\n59959|0.72222\n59960|0.66667\n59961|0.375\n59962|0.5\n59963|0.56944\n59964|0.54167\n59965|0.54167\n59966|0.55556\n59967|0.55556\n59968|0.55556\n59969|0.5\n59970|0.63889\n59971|0.59722\n59972|0.5\n59973|0.5\n59974|0.61111\n59975|0.55556\n59976|0.63889\n59977|0.5\n59978|0.56944\n59979|0.54167\n59980|0.61111\n59981|0.5\n59982|0.5\n59983|0.40278\n59984|0.43056\n59985|0.58333\n59986|0.5\n59987|0.58333\n59988|0.5\n59989|0.5\n59990|0.5\n59991|0.73611\n59992|0.61111\n59993|0.68056\n59994|0.44444\n59995|0.56944\n59996|0.5\n59997|0.5\n59998|0.51389\n59999|0.47222\n60000|0.54167\n60001|0.44444\n60002|0.79167\n60003|0.73611\n60004|0.73611\n60005|0.58333\n60006|0.55556\n60007|0.58333\n60008|0.5\n60009|0.61111\n60010|0.61111\n60011|0.66667\n60012|0.83333\n60013|0.61111\n60014|0.45833\n60015|0.45833\n60016|0.69444\n60017|0.72222\n60018|0.75\n60019|0.73611\n60020|0.79167\n60021|0.77778\n60022|0.63889\n60023|0.76389\n60024|0.77778\n60025|0.84722\n60026|0.77778\n60027|0.76389\n60028|0.66667\n60029|0.77778\n60030|0.88889\n60031|0.73611\n60032|0.70833\n60033|0.65278\n60034|0.81944\n60035|0.73611\n60036|0.58333\n60037|0.81944\n60038|0.77778\n60039|0.52778\n60040|0.5\n60041|0.5\n60042|0.65278\n60043|0.75\n60044|0.33333\n60045|0.45833\n60046|0.5\n60047|0.56944\n60048|0.75\n60049|0.34722\n60050|0.5\n60051|0.5\n60052|0.5\n60053|0.5\n60054|0.5\n60055|0.59722\n60056|0.66667\n60057|0.52778\n60058|0.5\n60059|0.52778\n60060|0.33333\n60061|0.44444\n60062|0.75\n60063|0.58333\n60064|0.58333\n60065|0.55556\n60066|0.47222\n60067|0.68056\n60068|0.77778\n60069|0.61111\n60070|0.25\n60071|0.5\n60072|0.48611\n60073|0.5\n60074|0.5\n60075|0.51389\n60076|0.56944\n60077|0.52778\n60078|0.54167\n60079|0.5\n60080|0.51389\n60081|0.5\n60082|0.63889\n60083|0.55556\n60084|0.63889\n60085|0.52778\n60086|0.48611\n60087|0.70833\n60088|0.59722\n60089|0.80556\n60090|0.45833\n60091|0.5\n60092|0.5\n60093|0.5\n60094|0.54167\n60095|0.68056\n60096|0.5\n60097|0.5\n60098|0.63889\n60099|0.44444\n60100|0.55556\n60101|0.48611\n60102|0.63889\n60103|0.44444\n60104|0.45833\n60105|0.43056\n60106|0.70833\n60107|0.55556\n60108|0.40278\n60109|0.41667\n60110|0.5\n60111|0.65278\n60112|0.44444\n60113|0.38889\n60114|0.5\n60115|0.59722\n60116|0.55556\n60117|0.44444\n60118|0.79167\n60119|0.79167\n60120|0.63889\n60121|0.58333\n60122|0.51389\n60123|0.69444\n60124|0.68056\n60125|0.61111\n60126|0.61111\n60127|0.66667\n60128|0.77778\n60129|0.5\n60130|0.69444\n60131|0.79167\n60132|0.69444\n60133|0.27778\n60134|0.625\n60135|0.5\n60136|0.66667\n60137|0.70833\n60138|0.56944\n60139|0.44444\n60140|0.66667\n60141|0.56944\n60142|0.44444\n60143|0.61111\n60144|0.80556\n60145|0.36111\n60146|0.44444\n60147|0.80556\n60148|0.61111\n60149|0.59722\n60150|0.58333\n60151|0.38889\n60152|0.76389\n60153|0.63889\n60154|0.5\n60155|0.5\n60156|0.55556\n60157|0.5\n60158|0.77778\n60159|0.56944\n60160|0.77778\n60161|0.77778\n60162|0.55556\n60163|0.5\n60164|0.55556\n60165|0.61111\n60166|0.5\n60167|0.5\n60168|0.66667\n60169|0.66667\n60170|0.48611\n60171|0.33333\n60172|0.55556\n60173|0.5\n60174|0.5\n60175|0.51389\n60176|0.59722\n60177|0.5\n60178|0.5\n60179|0.5\n60180|0.72222\n60181|0.5\n60182|0.55556\n60183|0.86111\n60184|0.61111\n60185|0.77778\n60186|0.70833\n60187|0.65278\n60188|0.33333\n60189|0.375\n60190|0.44444\n60191|0.76389\n60192|0.79167\n60193|0.80556\n60194|0.55556\n60195|0.77778\n60196|0.54167\n60197|0.72222\n60198|0.44444\n60199|0.5\n60200|0.5\n60201|0.63889\n60202|0.52778\n60203|0.77778\n60204|0.72222\n60205|0.66667\n60206|0.5\n60207|0.36111\n60208|0.31944\n60209|0.79167\n60210|0.51389\n60211|0.5\n60212|0.55556\n60213|0.70833\n60214|0.76389\n60215|0.51389\n60216|0.55556\n60217|0.66667\n60218|0.72222\n60219|0.76389\n60220|0.66667\n60221|0.61111\n60222|0.84722\n60223|0.75\n60224|0.65278\n60225|0.51389\n60226|0.80556\n60227|0.73611\n60228|0.69444\n60229|0.72222\n60230|0.625\n60231|0.65278\n60232|0.66667\n60233|0.81944\n60234|0.77778\n60235|0.5\n60236|0.70833\n60237|0.56944\n60238|0.77778\n60239|0.56944\n60240|0.5\n60241|0.66667\n60242|0.65278\n60243|0.61111\n60244|0.72222\n60245|0.86111\n60246|0.5\n60247|0.33333\n60248|0.125\n60249|0.38889\n60250|0.33333\n60251|0.5\n60252|0.66667\n60253|0.72222\n60254|0.36111\n60255|0.47222\n60256|0.61111\n60257|0.69444\n60258|0.58333\n60259|0.56944\n60260|0.52778\n60261|0.63889\n60262|0.5\n60263|0.31944\n60264|0.83333\n60265|0.61111\n60266|0.5\n60267|0.5\n60268|0.38889\n60269|0.75\n60270|0.77778\n60271|0.65278\n60272|0.66667\n60273|0.58333\n60274|0.59722\n60275|0.5\n60276|0.52778\n60277|0.55556\n60278|0.54167\n60279|0.5\n60280|0.83333\n60281|0.77778\n60282|0.79167\n60283|0.72222\n60284|0.80556\n60285|0.72222\n60286|0.75\n60287|0.83333\n60288|0.5\n60289|0.51389\n60290|0.72222\n60291|0.61111\n60292|0.52778\n60293|0.51389\n60294|0.81944\n60295|0.30556\n60296|0.68056\n60297|0.5\n60298|0.5\n60299|0.61111\n60300|0.63889\n60301|0.75\n60302|0.5\n60303|0.5\n60304|0.41667\n60305|0.5\n60306|0.44444\n60307|0.61111\n60308|0.59722\n60309|0.44444\n60310|0.55556\n60311|0.61111\n60312|0.5\n60313|0.72222\n60314|0.72222\n60315|0.61111\n60316|0.55556\n60317|0.70833\n60318|0.68056\n60319|0.68056\n60320|0.81944\n60321|0.72222\n60322|0.77778\n60323|0.625\n60324|0.56944\n60325|0.54167\n60326|0.83333\n60327|0.73611\n60328|0.61111\n60329|0.80556\n60330|0.68056\n60331|0.88889\n60332|0.81944\n60333|0.66667\n60334|0.72222\n60335|0.625\n60336|0.51389\n60337|0.44444\n60338|0.66667\n60339|0.83333\n60340|0.625\n60341|0.79167\n60342|0.61111\n60343|0.61111\n60344|0.83333\n60345|0.5\n60346|0.66667\n60347|0.83333\n60348|0.76389\n60349|0.44444\n60350|0.77778\n60351|0.80556\n60352|0.5\n60353|0.55556\n60354|0.66667\n60355|0.61111\n60356|0.40278\n60357|0.51389\n60358|0.88889\n60359|0.55556\n60360|0.72222\n60361|0.55556\n60362|0.52778\n60363|0.65278\n60364|0.5\n60365|0.5\n60366|0.72222\n60367|0.76389\n60368|0.52778\n60369|0.79167\n60370|0.51389\n60371|0.23611\n60372|0.70833\n60373|0.625\n60374|0.5\n60375|0.875\n60376|0.61111\n60377|0.5\n60378|0.66667\n60379|0.69444\n60380|0.38889\n60381|0.55556\n60382|0.68056\n60383|0.52778\n60384|0.45833\n60385|0.66667\n60386|0.76389\n60387|0.375\n60388|0.47222\n60389|0.56944\n60390|0.73611\n60391|0.61111\n60392|0.625\n60393|0.55556\n60394|0.5\n60395|0.625\n60396|0.83333\n60397|0.56944\n60398|0.51389\n60399|0.5\n60400|0.5\n60401|0.33333\n60402|0.81944\n60403|0.68056\n60404|0.55556\n60405|0.5\n60406|0.81944\n60407|0.5\n60408|0.5\n60409|0.44444\n60410|0.70833\n60411|0.54167\n60412|0.63889\n60413|0.51389\n60414|0.56944\n60415|0.47222\n60416|0.625\n60417|0.5\n60418|0.52778\n60419|0.55556\n60420|0.54167\n60421|0.68056\n60422|0.72222\n60423|0.68056\n60424|0.51389\n60425|0.33333\n60426|0.5\n60427|0.58333\n60428|0.70833\n60429|0.94444\n60430|0.70833\n60431|0.65278\n60432|0.81944\n60433|0.69444\n60434|0.65278\n60435|0.61111\n60436|0.75\n60437|0.69444\n60438|0.61111\n60439|0.61111\n60440|0.44444\n60441|0.30556\n60442|0.23611\n60443|0.16667\n60444|0.25\n60445|0.5\n60446|0.54167\n60447|0.625\n60448|0.55556\n60449|0.33333\n60450|0.65278\n60451|0.83333\n60452|0.61111\n60453|0.73611\n60454|0.81944\n60455|0.84722\n60456|0.875\n60457|0.75\n60458|0.83333\n60459|0.72222\n60460|0.77778\n60461|0.5\n60462|0.88889\n60463|0.52778\n60464|0.70833\n60465|0.59722\n60466|0.52778\n60467|0.75\n60468|0.59722\n60469|0.55556\n60470|0.77778\n60471|0.86111\n60472|0.84722\n60473|0.61111\n60474|0.5\n60475|0.94444\n60476|0.22222\n60477|0.30556\n60478|0.76389\n60479|0.76389\n60480|0.68056\n60481|0.80556\n60482|0.34722\n60483|0.65278\n60484|0.51389\n60485|0.25\n60486|0.75\n60487|0.33333\n60488|0.5\n60489|0.5\n60490|0.75\n60491|0.66667\n60492|0.55556\n60493|0.36111\n60494|0.51389\n60495|0.51389\n60496|0.55556\n60497|0.5\n60498|0.45833\n60499|0.55556\n60500|0.44444\n60501|0.5\n60502|0.5\n60503|0.44444\n60504|0.55556\n60505|0.51389\n60506|0.5\n60507|0.375\n60508|0.30556\n60509|0.63889\n60510|0.5\n60511|0.51389\n60512|0.55556\n60513|0.5\n60514|0.48611\n60515|0.56944\n60516|0.5\n60517|0.5\n60518|0.5\n60519|0.43056\n60520|0.63889\n60521|0.5\n60522|0.73611\n60523|0.63889\n60524|0.41667\n60525|0.76389\n60526|0.55556\n60527|0.91667\n60528|0.76389\n60529|0.81944\n60530|0.54167\n60531|0.45833\n60532|0.5\n60533|0.38889\n60534|0.47222\n60535|0.72222\n60536|0.52778\n60537|0.55556\n60538|0.43056\n60539|0.625\n60540|0.61111\n60541|0.5\n60542|0.65278\n60543|0.69444\n60544|0.5\n60545|0.5\n60546|0.66667\n60547|0.5\n60548|0.68056\n60549|0.36111\n60550|0.55556\n60551|0.5\n60552|0.5\n60553|0.5\n60554|0.75\n60555|0.73611\n60556|0.79167\n60557|0.76389\n60558|0.5\n60559|0.77778\n60560|0.65278\n60561|0.55556\n60562|0.38889\n60563|0.65278\n60564|0.66667\n60565|0.55556\n60566|0.44444\n60567|0.29167\n60568|0.22222\n60569|0.31944\n60570|0.76389\n60571|0.625\n60572|0.23611\n60573|0.44444\n60574|0.72222\n60575|0.45833\n60576|0.54167\n60577|0.44444\n60578|0.33333\n60579|0.44444\n60580|0.66667\n60581|0.55556\n60582|0.30556\n60583|0.75\n60584|0.51389\n60585|0.5\n60586|0.51389\n60587|0.63889\n60588|0.56944\n60589|0.48611\n60590|0.61111\n60591|0.65278\n60592|0.5\n60593|0.27778\n60594|0.56944\n60595|0.72222\n60596|0.5\n60597|0.75\n60598|0.5\n60599|0.51389\n60600|0.58333\n60601|0.81944\n60602|0.44444\n60603|0.5\n60604|0.54167\n60605|0.55556\n60606|0.51389\n60607|0.43056\n60608|0.5\n60609|0.5\n60610|0.55556\n60611|0.61111\n60612|0.61111\n60613|0.5\n60614|0.5\n60615|0.5\n60616|0.44444\n60617|0.5\n60618|0.34722\n60619|0.5\n60620|0.5\n60621|0.58333\n60622|0.73611\n60623|0.70833\n60624|0.47222\n60625|0.5\n60626|0.5\n60627|0.58333\n60628|0.5\n60629|0.5\n60630|0.54167\n60631|0.5\n60632|0.77778\n60633|0.73611\n60634|0.22222\n60635|0.86111\n60636|0.65278\n60637|0.70833\n60638|0.5\n60639|0.73611\n60640|0.5\n60641|0.5\n60642|0.76389\n60643|0.5\n60644|0.5\n60645|0.875\n60646|0.77778\n60647|0.66667\n60648|0.51389\n60649|0.70833\n60650|0.86111\n60651|0.80556\n60652|0.625\n60653|0.68056\n60654|0.45833\n60655|0.83333\n60656|0.5\n60657|0.5\n60658|0.27778\n60659|0.65278\n60660|0.55556\n60661|0.5\n60662|0.77778\n60663|0.44444\n60664|0.52778\n60665|0.55556\n60666|0.55556\n60667|0.875\n60668|0.625\n60669|0.55556\n60670|0.625\n60671|0.68056\n60672|0.66667\n60673|0.84722\n60674|0.5\n60675|0.5\n60676|0.47222\n60677|0.5\n60678|0.56944\n60679|0.5\n60680|0.77778\n60681|0.65278\n60682|0.72222\n60683|0.61111\n60684|0.55556\n60685|0.51389\n60686|0.75\n60687|0.5\n60688|0.5\n60689|0.18056\n60690|0.69444\n60691|0.66667\n60692|0.76389\n60693|0.75\n60694|0.5\n60695|0.54167\n60696|0.56944\n60697|0.38889\n60698|0.59722\n60699|0.80556\n60700|0.63889\n60701|0.43056\n60702|0.56944\n60703|0.625\n60704|0.625\n60705|0.56944\n60706|0.5\n60707|0.55556\n60708|0.61111\n60709|0.77778\n60710|0.80556\n60711|0.77778\n60712|0.69444\n60713|0.63889\n60714|0.56944\n60715|0.5\n60716|0.58333\n60717|0.80556\n60718|0.48611\n60719|0.59722\n60720|0.47222\n60721|0.5\n60722|0.29167\n60723|0.375\n60724|0.58333\n60725|0.45833\n60726|0.625\n60727|0.5\n60728|0.5\n60729|0.22222\n60730|0.22222\n60731|0.5\n60732|0.5\n60733|0.5\n60734|0.47222\n60735|0.48611\n60736|0.73611\n60737|0.68056\n60738|0.58333\n60739|0.56944\n60740|0.80556\n60741|0.29167\n60742|0.5\n60743|0.5\n60744|0.66667\n60745|0.63889\n60746|0.625\n60747|0.47222\n60748|0.5\n60749|0.38889\n60750|0.59722\n60751|0.5\n60752|0.51389\n60753|0.44444\n60754|0.58333\n60755|0.5\n60756|0.63889\n60757|0.51389\n60758|0.47222\n60759|0.77778\n60760|0.56944\n60761|0.44444\n60762|0.55556\n60763|0.65278\n60764|0.38889\n60765|0.61111\n60766|0.5\n60767|0.76389\n60768|0.76389\n60769|0.72222\n60770|0.73611\n60771|0.75\n60772|0.59722\n60773|0.68056\n60774|0.5\n60775|0.52778\n60776|0.54167\n60777|0.44444\n60778|0.58333\n60779|0.43056\n60780|0.56944\n60781|0.66667\n60782|0.77778\n60783|0.81944\n60784|0.56944\n60785|0.73611\n60786|0.73611\n60787|0.63889\n60788|0.61111\n60789|0.61111\n60790|0.77778\n60791|0.44444\n60792|0.66667\n60793|0.16667\n60794|0.77778\n60795|0.75\n60796|0.76389\n60797|0.76389\n60798|0.63889\n60799|0.66667\n60800|0.52778\n60801|0.34722\n60802|0.40278\n60803|0.875\n60804|0.84722\n60805|0.69444\n60806|0.81944\n60807|0.55556\n60808|0.55556\n60809|0.80556\n60810|0.83333\n60811|0.86111\n60812|0.77778\n60813|0.72222\n60814|0.80556\n60815|0.86111\n60816|0.70833\n60817|0.66667\n60818|0.66667\n60819|0.81944\n60820|0.79167\n60821|0.5\n60822|0.88889\n60823|0.91667\n60824|0.84722\n60825|0.73611\n60826|0.73611\n60827|0.66667\n60828|0.76389\n60829|0.69444\n60830|0.5\n60831|0.58333\n60832|0.80556\n60833|0.72222\n60834|0.65278\n60835|0.58333\n60836|0.61111\n60837|0.94444\n60838|0.94444\n60839|0.73611\n60840|0.75\n60841|0.80556\n60842|0.61111\n60843|0.76389\n60844|0.75\n60845|0.88889\n60846|0.72222\n60847|0.66667\n60848|0.72222\n60849|0.70833\n60850|0.40278\n60851|0.44444\n60852|0.34722\n60853|0.27778\n60854|0.5\n60855|0.5\n60856|0.61111\n60857|0.61111\n60858|0.75\n60859|0.73611\n60860|0.69444\n60861|0.63889\n60862|0.875\n60863|0.75\n60864|0.65278\n60865|0.55556\n60866|0.80556\n60867|0.73611\n60868|0.75\n60869|0.45833\n60870|0.43056\n60871|0.73611\n60872|0.80556\n60873|0.33333\n60874|0.44444\n60875|0.52778\n60876|0.45833\n60877|0.29167\n60878|0.66667\n60879|0.73611\n60880|0.625\n60881|0.66667\n60882|0.75\n60883|0.95833\n60884|0.69444\n60885|0.84722\n60886|0.95833\n60887|0.77778\n60888|0.84722\n60889|0.80556\n60890|0.66667\n60891|0.47222\n60892|0.23611\n60893|0.22222\n60894|0.41667\n60895|0.27778\n60896|0.375\n60897|0.33333\n60898|0.16667\n60899|0.55556\n60900|0.83333\n60901|0.51389\n60902|0.83333\n60903|0.73611\n60904|0.68056\n60905|0.61111\n60906|0.54167\n60907|0.83333\n60908|0.875\n60909|0.75\n60910|0.56944\n60911|0.54167\n60912|0.58333\n60913|0.45833\n60914|0.81944\n60915|0.81944\n60916|0.5\n60917|0.59722\n60918|0.61111\n60919|0.72222\n60920|0.94444\n60921|0.94444\n60922|0.76389\n60923|0.88889\n60924|0.33333\n60925|0.70833\n60926|0.80556\n60927|0.38889\n60928|0.27778\n60929|0.77778\n60930|0.59722\n60931|0.83333\n60932|0.61111\n60933|0.69444\n60934|0.58333\n60935|0.72222\n60936|0.65278\n60937|0.70833\n60938|0.43056\n60939|0.76389\n60940|0.63889\n60941|0.48611\n60942|0.36111\n60943|0.51389\n60944|0.27778\n60945|0.88889\n60946|0.875\n60947|0.29167\n60948|0.5\n60949|0.84722\n60950|0.5\n60951|0.75\n60952|0.68056\n60953|0.61111\n60954|0.84722\n60955|0.70833\n60956|0.79167\n60957|0.80556\n60958|0.5\n60959|0.58333\n60960|0.75\n60961|0.66667\n60962|0.5\n60963|0.52778\n60964|0.5\n60965|0.5\n60966|0.375\n60967|0.23611\n60968|0.45833\n60969|0.38889\n60970|0.61111\n60971|0.59722\n60972|0.65278\n60973|0.55556\n60974|0.70833\n60975|0.5\n60976|0.55556\n60977|0.58333\n60978|0.68056\n60979|0.40278\n60980|0.63889\n60981|0.5\n60982|0.72222\n60983|0.72222\n60984|0.5\n60985|0.51389\n60986|0.81944\n60987|0.59722\n60988|0.73611\n60989|0.38889\n60990|0.27778\n60991|0.81944\n60992|0.52778\n60993|0.5\n60994|0.56944\n60995|0.69444\n60996|0.73611\n60997|0.68056\n60998|0.5\n60999|0.66667\n61000|0.625\n61001|0.5\n61002|0.33333\n61003|0.83333\n61004|0.48611\n61005|0.72222\n61006|0.66667\n61007|0.75\n61008|0.83333\n61009|0.58333\n61010|0.5\n61011|0.68056\n61012|0.81944\n61013|0.86111\n61014|0.66667\n61015|0.47222\n61016|0.68056\n61017|0.5\n61018|0.5\n61019|0.54167\n61020|0.80556\n61021|0.68056\n61022|0.55556\n61023|0.56944\n61024|0.81944\n61025|0.81944\n61026|0.79167\n61027|0.5\n61028|0.61111\n61029|0.52778\n61030|0.25\n61031|0.38889\n61032|0.58333\n61033|0.54167\n61034|0.79167\n61035|0.5\n61036|0.66667\n61037|0.45833\n61038|0.47222\n61039|0.54167\n61040|0.51389\n61041|0.80556\n61042|0.70833\n61043|0.65278\n61044|0.76389\n61045|0.77778\n61046|0.73611\n61047|0.72222\n61048|0.72222\n61049|0.72222\n61050|0.80556\n61051|0.81944\n61052|0.83333\n61053|0.88889\n61054|0.56944\n61055|0.84722\n61056|0.76389\n61057|0.91667\n61058|0.5\n61059|0.59722\n61060|0.55556\n61061|0.56944\n61062|0.76389\n61063|0.69444\n61064|0.83333\n61065|0.68056\n61066|0.5\n61067|0.66667\n61068|0.58333\n61069|0.36111\n61070|0.40278\n61071|0.55556\n61072|0.69444\n61073|0.66667\n61074|0.54167\n61075|0.65278\n61076|0.59722\n61077|0.36111\n61078|0.68056\n61079|0.86111\n61080|0.80556\n61081|0.625\n61082|0.45833\n61083|0.81944\n61084|0.44444\n61085|0.44444\n61086|0.77778\n61087|0.68056\n61088|0.86111\n61089|0.5\n61090|0.52778\n61091|0.36111\n61092|0.38889\n61093|0.73611\n61094|0.55556\n61095|0.72222\n61096|0.93056\n61097|0.41667\n61098|0.66667\n61099|0.63889\n61100|0.33333\n61101|0.40278\n61102|0.51389\n61103|0.125\n61104|0.11111\n61105|0.51389\n61106|0.45833\n61107|0.5\n61108|0.5\n61109|0.58333\n61110|0.51389\n61111|0.41667\n61112|0.27778\n61113|0.63889\n61114|0.61111\n61115|0.55556\n61116|0.75\n61117|0.59722\n61118|0.5\n61119|0.5\n61120|0.72222\n61121|0.63889\n61122|0.65278\n61123|0.86111\n61124|0.81944\n61125|0.75\n61126|0.58333\n61127|0.5\n61128|0.63889\n61129|0.90278\n61130|0.66667\n61131|0.66667\n61132|0.76389\n61133|0.38889\n61134|0.83333\n61135|0.38889\n61136|0.33333\n61137|0.86111\n61138|0.76389\n61139|0.73611\n61140|0.79167\n61141|0.79167\n61142|0.54167\n61143|0.61111\n61144|0.61111\n61145|0.91667\n61146|0.70833\n61147|0.36111\n61148|0.48611\n61149|0.375\n61150|0.38889\n61151|0.5\n61152|0.5\n61153|0.51389\n61154|0.48611\n61155|0.88889\n61156|0.875\n61157|0.86111\n61158|0.875\n61159|0.41667\n61160|0.5\n61161|0.59722\n61162|0.70833\n61163|0.48611\n61164|0.44444\n61165|0.44444\n61166|0.38889\n61167|0.36111\n61168|0.38889\n61169|0.77778\n61170|0.43056\n61171|0.38889\n61172|0.58333\n61173|0.36111\n61174|0.43056\n61175|0.45833\n61176|0.40278\n61177|0.5\n61178|0.41667\n61179|0.44444\n61180|0.59722\n61181|0.97222\n61182|0.83333\n61183|0.66667\n61184|0.66667\n61185|0.5\n61186|0.5\n61187|0.56944\n61188|0.5\n61189|0.73611\n61190|0.34722\n61191|0.36111\n61192|0.29167\n61193|0.5\n61194|0.55556\n61195|0.5\n61196|0.36111\n61197|0.61111\n61198|0.54167\n61199|0.38889\n61200|0.5\n61201|0.44444\n61202|0.63889\n61203|0.68056\n61204|0.86111\n61205|0.84722\n61206|0.36111\n61207|0.56944\n61208|0.66667\n61209|0.68056\n61210|0.56944\n61211|0.13889\n61212|0.72222\n61213|0.56944\n61214|0.56944\n61215|0.80556\n61216|0.38889\n61217|0.5\n61218|0.51389\n61219|0.58333\n61220|0.625\n61221|0.51389\n61222|0.72222\n61223|0.5\n61224|0.5\n61225|0.38889\n61226|0.5\n61227|0.75\n61228|0.5\n61229|0.88889\n61230|0.83333\n61231|0.66667\n61232|0.73611\n61233|0.875\n61234|0.81944\n61235|0.77778\n61236|0.83333\n61237|0.80556\n61238|0.54167\n61239|0.59722\n61240|0.81944\n61241|0.52778\n61242|0.55556\n61243|0.44444\n61244|0.77778\n61245|0.73611\n61246|0.90278\n61247|0.83333\n61248|0.66667\n61249|0.68056\n61250|0.48611\n61251|0.40278\n61252|0.59722\n61253|0.80556\n61254|0.5\n61255|0.63889\n61256|0.70833\n61257|0.94444\n61258|0.75\n61259|0.84722\n61260|0.5\n61261|0.55556\n61262|0.625\n61263|0.77778\n61264|0.55556\n61265|0.73611\n61266|0.86111\n61267|0.65278\n61268|0.65278\n61269|0.72222\n61270|0.61111\n61271|0.38889\n61272|0.52778\n61273|0.5\n61274|0.83333\n61275|0.73611\n61276|0.5\n61277|0.58333\n61278|0.86111\n61279|0.83333\n61280|0.63889\n61281|0.5\n61282|0.65278\n61283|0.70833\n61284|0.93056\n61285|0.81944\n61286|0.55556\n61287|0.68056\n61288|0.72222\n61289|0.63889\n61290|0.66667\n61291|0.66667\n61292|0.66667\n61293|0.69444\n61294|0.70833\n61295|0.81944\n61296|0.69444\n61297|0.75\n61298|0.72222\n61299|0.72222\n61300|0.44444\n61301|0.5\n61302|0.77778\n61303|0.79167\n61304|0.83333\n61305|0.5\n61306|0.61111\n61307|0.70833\n61308|0.79167\n61309|0.59722\n61310|0.88889\n61311|0.80556\n61312|0.5\n61313|0.75\n61314|0.76389\n61315|0.66667\n61316|0.51389\n61317|0.68056\n61318|0.5\n61319|0.63889\n61320|0.875\n61321|0.5\n61322|0.51389\n61323|0.77778\n61324|0.375\n61325|0.44444\n61326|0.75\n61327|0.51389\n61328|0.84722\n61329|0.61111\n61330|0.73611\n61331|0.43056\n61332|0.68056\n61333|0.48611\n61334|0.27778\n61335|0.5\n61336|0.56944\n61337|0.66667\n61338|0.75\n61339|0.66667\n61340|0.43056\n61341|0.72222\n61342|0.72222\n61343|0.5\n61344|0.45833\n61345|0.625\n61346|0.58333\n61347|0.38889\n61348|0.69444\n61349|0.58333\n61350|0.625\n61351|0.25\n61352|0.5\n61353|0.70833\n61354|0.56944\n61355|0.63889\n61356|0.44444\n61357|0.041667\n61358|0.23611\n61359|0.41667\n61360|0.875\n61361|0.58333\n61362|0.69444\n61363|0.58333\n61364|0.33333\n61365|0.75\n61366|0.70833\n61367|0.625\n61368|0.70833\n61369|0.59722\n61370|0.81944\n61371|0.80556\n61372|0.5\n61373|0.5\n61374|0.625\n61375|0.5\n61376|0.5\n61377|0.77778\n61378|0.5\n61379|0.5\n61380|0.52778\n61381|0.38889\n61382|0.59722\n61383|0.51389\n61384|0.77778\n61385|0.5\n61386|0.5\n61387|0.75\n61388|0.94444\n61389|0.84722\n61390|0.55556\n61391|0.625\n61392|0.54167\n61393|0.61111\n61394|0.43056\n61395|0.43056\n61396|0.45833\n61397|0.5\n61398|0.59722\n61399|0.63889\n61400|0.94444\n61401|0.73611\n61402|0.73611\n61403|0.48611\n61404|0.79167\n61405|0.83333\n61406|0.77778\n61407|0.63889\n61408|0.65278\n61409|0.41667\n61410|0.5\n61411|0.61111\n61412|0.77778\n61413|0.5\n61414|0.44444\n61415|0.51389\n61416|0.77778\n61417|0.90278\n61418|0.68056\n61419|0.5\n61420|0.58333\n61421|0.70833\n61422|0.81944\n61423|0.80556\n61424|0.80556\n61425|0.55556\n61426|0.76389\n61427|0.77778\n61428|0.55556\n61429|0.51389\n61430|0.55556\n61431|0.55556\n61432|0.73611\n61433|0.56944\n61434|0.69444\n61435|0.77778\n61436|0.44444\n61437|0.77778\n61438|0.72222\n61439|0.77778\n61440|0.75\n61441|0.69444\n61442|0.5\n61443|0.61111\n61444|0.52778\n61445|0.83333\n61446|0.77778\n61447|0.61111\n61448|0.79167\n61449|0.70833\n61450|0.77778\n61451|0.79167\n61452|0.95833\n61453|0.84722\n61454|0.5\n61455|0.75\n61456|0.5\n61457|0.66667\n61458|0.625\n61459|0.66667\n61460|0.5\n61461|0.875\n61462|0.625\n61463|0.63889\n61464|0.625\n61465|0.83333\n61466|0.56944\n61467|0.5\n61468|0.875\n61469|0.47222\n61470|0.29167\n61471|0.47222\n61472|0.59722\n61473|0.68056\n61474|0.44444\n61475|0.56944\n61476|0.56944\n61477|0.5\n61478|0.88889\n61479|0.54167\n61480|0.76389\n61481|0.75\n61482|0.5\n61483|0.66667\n61484|0.47222\n61485|0.72222\n61486|0.75\n61487|0.76389\n61488|0.5\n61489|0.55556\n61490|0.625\n61491|0.5\n61492|0.73611\n61493|0.75\n61494|0.59722\n61495|0.59722\n61496|0.5\n61497|0.43056\n61498|0.73611\n61499|0.51389\n61500|0.5\n61501|0.58333\n61502|0.5\n61503|0.80556\n61504|0.61111\n61505|0.5\n61506|0.75\n61507|0.5\n61508|0.52778\n61509|0.5\n61510|0.47222\n61511|0.81944\n61512|0.81944\n61513|0.5\n61514|0.5\n61515|0.73611\n61516|0.75\n61517|0.5\n61518|0.52778\n61519|0.40278\n61520|0.5\n61521|0.5\n61522|0.5\n61523|0.375\n61524|0.16667\n61525|0.47222\n61526|0.56944\n61527|0.61111\n61528|0.75\n61529|0.41667\n61530|0.51389\n61531|0.66667\n61532|0.5\n61533|0.51389\n61534|0.625\n61535|0.5\n61536|0.55556\n61537|0.58333\n61538|0.56944\n61539|0.44444\n61540|0.5\n61541|0.48611\n61542|0.55556\n61543|0.5\n61544|0.5\n61545|0.44444\n61546|0.51389\n61547|0.5\n61548|0.51389\n61549|0.625\n61550|0.625\n61551|0.5\n61552|0.79167\n61553|0.54167\n61554|0.625\n61555|0.56944\n61556|0.69444\n61557|0.5\n61558|0.5\n61559|0.58333\n61560|0.93056\n61561|0.73611\n61562|0.41667\n61563|0.5\n61564|0.69444\n61565|0.54167\n61566|0.72222\n61567|0.66667\n61568|0.44444\n61569|0.5\n61570|0.86111\n61571|0.68056\n61572|0.77778\n61573|0.70833\n61574|0.40278\n61575|0.51389\n61576|0.72222\n61577|0.22222\n61578|0.5\n61579|0.86111\n61580|0.56944\n61581|0.88889\n61582|0.72222\n61583|0.625\n61584|0.625\n61585|0.65278\n61586|0.77778\n61587|0.54167\n61588|0.81944\n61589|0.65278\n61590|0.81944\n61591|0.80556\n61592|0.83333\n61593|0.65278\n61594|0.5\n61595|0.73611\n61596|0.91667\n61597|0.70833\n61598|0.75\n61599|0.875\n61600|0.72222\n61601|0.68056\n61602|0.79167\n61603|0.90278\n61604|0.76389\n61605|0.83333\n61606|0.80556\n61607|0.77778\n61608|0.80556\n61609|0.19444\n61610|0.56944\n61611|0.63889\n61612|0.66667\n61613|0.55556\n61614|0.83333\n61615|0.55556\n61616|0.5\n61617|0.54167\n61618|0.81944\n61619|0.58333\n61620|0.5\n61621|0.5\n61622|0.76389\n61623|0.45833\n61624|0.61111\n61625|0.76389\n61626|0.59722\n61627|0.65278\n61628|0.81944\n61629|0.33333\n61630|0.72222\n61631|0.43056\n61632|0.69444\n61633|0.56944\n61634|0.5\n61635|0.81944\n61636|0.73611\n61637|0.81944\n61638|0.72222\n61639|0.73611\n61640|0.93056\n61641|0.58333\n61642|0.83333\n61643|0.56944\n61644|0.80556\n61645|0.83333\n61646|0.41667\n61647|0.55556\n61648|0.68056\n61649|0.61111\n61650|0.72222\n61651|0.84722\n61652|0.59722\n61653|0.83333\n61654|0.69444\n61655|0.69444\n61656|0.77778\n61657|0.63889\n61658|0.625\n61659|0.76389\n61660|0.72222\n61661|0.79167\n61662|0.83333\n61663|0.76389\n61664|0.54167\n61665|0.54167\n61666|0.625\n61667|0.88889\n61668|0.77778\n61669|0.5\n61670|0.69444\n61671|0.72222\n61672|0.76389\n61673|0.76389\n61674|0.76389\n61675|0.84722\n61676|0.86111\n61677|0.48611\n61678|0.45833\n61679|0.83333\n61680|0.54167\n61681|0.76389\n61682|0.69444\n61683|0.73611\n61684|0.61111\n61685|0.68056\n61686|0.27778\n61687|0.84722\n61688|0.65278\n61689|0.55556\n61690|0.76389\n61691|0.70833\n61692|0.95833\n61693|0.13889\n61694|0.72222\n61695|0.45833\n61696|0.29167\n61697|0.31944\n61698|0.83333\n61699|0.66667\n61700|0.75\n61701|0.65278\n61702|0.72222\n61703|0.66667\n61704|0.83333\n61705|0.84722\n61706|0.45833\n61707|0.5\n61708|0.625\n61709|0.66667\n61710|0.69444\n61711|0.88889\n61712|0.72222\n61713|0.81944\n61714|0.61111\n61715|0.875\n61716|0.61111\n61717|0.625\n61718|0.80556\n61719|0.51389\n61720|0.70833\n61721|0.72222\n61722|0.58333\n61723|0.66667\n61724|0.83333\n61725|0.66667\n61726|0.51389\n61727|0.45833\n61728|0.45833\n61729|0.63889\n61730|0.41667\n61731|0.94444\n61732|0.625\n61733|0.83333\n61734|0.77778\n61735|0.79167\n61736|0.33333\n61737|0.5\n61738|0.75\n61739|0.65278\n61740|0.66667\n61741|0.86111\n61742|0.77778\n61743|0.5\n61744|0.40278\n61745|0.31944\n61746|0.79167\n61747|0.65278\n61748|0.54167\n61749|0.5\n61750|0.51389\n61751|0.58333\n61752|0.70833\n61753|0.58333\n61754|0.45833\n61755|0.76389\n61756|0.72222\n61757|0.43056\n61758|0.63889\n61759|0.45833\n61760|0.45833\n61761|0.58333\n61762|0.61111\n61763|0.63889\n61764|0.48611\n61765|0.59722\n61766|0.5\n61767|0.54167\n61768|0.16667\n61769|0.76389\n61770|0.5\n61771|0.55556\n61772|0.625\n61773|0.58333\n61774|0.66667\n61775|0.95833\n61776|0.58333\n61777|0.56944\n61778|0.59722\n61779|0.5\n61780|0.34722\n61781|0.38889\n61782|0.81944\n61783|0.66667\n61784|0.625\n61785|0.69444\n61786|0.45833\n61787|0.76389\n61788|0.61111\n61789|0.72222\n61790|0.48611\n61791|0.72222\n61792|0.66667\n61793|0.72222\n61794|0.59722\n61795|0.61111\n61796|0.58333\n61797|0.5\n61798|0.5\n61799|0.5\n61800|0.72222\n61801|0.88889\n61802|0.63889\n61803|0.83333\n61804|0.5\n61805|0.34722\n61806|0.5\n61807|0.77778\n61808|0.29167\n61809|0.43056\n61810|0.47222\n61811|0.79167\n61812|0.63889\n61813|0.83333\n61814|0.73611\n61815|0.44444\n61816|0.73611\n61817|0.375\n61818|0.44444\n61819|0.83333\n61820|0.5\n61821|0.70833\n61822|0.5\n61823|0.61111\n61824|0.54167\n61825|0.68056\n61826|0.83333\n61827|0.40278\n61828|0.52778\n61829|0.66667\n61830|0.33333\n61831|0.47222\n61832|0.52778\n61833|0.61111\n61834|0.66667\n61835|0.55556\n61836|0.66667\n61837|0.48611\n61838|0.38889\n61839|0.73611\n61840|0.73611\n61841|0.5\n61842|0.45833\n61843|0.40278\n61844|0.75\n61845|0.69444\n61846|0.59722\n61847|0.45833\n61848|0.69444\n61849|0.65278\n61850|0.56944\n61851|0.33333\n61852|0.26389\n61853|0.47222\n61854|0.52778\n61855|0.63889\n61856|0.63889\n61857|0.66667\n61858|0.76389\n61859|0.54167\n61860|0.5\n61861|0.54167\n61862|0.77778\n61863|0.45833\n61864|0.5\n61865|0.72222\n61866|0.80556\n61867|0.33333\n61868|0.38889\n61869|0.5\n61870|0.51389\n61871|0.76389\n61872|0.61111\n61873|0.79167\n61874|0.48611\n61875|0.15278\n61876|0.61111\n61877|0.58333\n61878|0.27778\n61879|0.52778\n61880|0.48611\n61881|0.72222\n61882|0.625\n61883|0.75\n61884|0.73611\n61885|0.88889\n61886|0.81944\n61887|0.79167\n61888|0.59722\n61889|0.69444\n61890|0.54167\n61891|0.55556\n61892|0.66667\n61893|0.5\n61894|0.5\n61895|0.65278\n61896|0.66667\n61897|0.59722\n61898|0.29167\n61899|0.5\n61900|0.58333\n61901|0.70833\n61902|0.68056\n61903|0.5\n61904|0.65278\n61905|0.47222\n61906|0.44444\n61907|0.70833\n61908|0.73611\n61909|0.43056\n61910|0.47222\n61911|0.33333\n61912|0.75\n61913|0.70833\n61914|0.65278\n61915|0.70833\n61916|0.83333\n61917|0.56944\n61918|0.44444\n61919|0.84722\n61920|0.26389\n61921|0.69444\n61922|0.70833\n61923|0.41667\n61924|0.48611\n61925|0.55556\n61926|0.68056\n61927|0.5\n61928|0.41667\n61929|0.75\n61930|0.70833\n61931|0.43056\n61932|0.66667\n61933|0.56944\n61934|0.56944\n61935|0.58333\n61936|0.73611\n61937|0.68056\n61938|0.55556\n61939|0.5\n61940|0.68056\n61941|0.75\n61942|0.81944\n61943|0.73611\n61944|0.58333\n61945|0.88889\n61946|0.55556\n61947|0.77778\n61948|0.55556\n61949|0.625\n61950|0.55556\n61951|0.65278\n61952|0.84722\n61953|0.61111\n61954|0.55556\n61955|0.81944\n61956|0.59722\n61957|0.5\n61958|0.47222\n61959|0.625\n61960|0.5\n61961|0.375\n61962|0.77778\n61963|0.68056\n61964|0.70833\n61965|0.68056\n61966|0.45833\n61967|0.45833\n61968|0.58333\n61969|0.51389\n61970|0.5\n61971|0.93056\n61972|0.94444\n61973|0.70833\n61974|0.83333\n61975|0.72222\n61976|0.73611\n61977|0.61111\n61978|0.88889\n61979|0.65278\n61980|0.76389\n61981|0.86111\n61982|0.29167\n61983|0.5\n61984|0.44444\n61985|0.56944\n61986|0.61111\n61987|0.65278\n61988|0.75\n61989|0.5\n61990|0.38889\n61991|0.56944\n61992|0.44444\n61993|0.72222\n61994|0.76389\n61995|0.61111\n61996|0.625\n61997|0.86111\n61998|0.81944\n61999|0.40278\n62000|0.72222\n62001|0.38889\n62002|0.86111\n62003|0.93056\n62004|0.77778\n62005|0.36111\n62006|0.84722\n62007|0.27778\n62008|0.31944\n62009|0.66667\n62010|0.55556\n62011|0.70833\n62012|0.70833\n62013|0.27778\n62014|0.27778\n62015|0.34722\n62016|0.52778\n62017|0.70833\n62018|0.77778\n62019|0.83333\n62020|0.51389\n62021|0.55556\n62022|0.5\n62023|0.66667\n62024|0.63889\n62025|0.75\n62026|0.66667\n62027|0.91667\n62028|0.72222\n62029|0.73611\n62030|0.72222\n62031|0.51389\n62032|0.63889\n62033|0.54167\n62034|0.75\n62035|0.72222\n62036|0.73611\n62037|0.70833\n62038|0.23611\n62039|0.72222\n62040|0.65278\n62041|0.94444\n62042|0.54167\n62043|0.58333\n62044|0.55556\n62045|0.83333\n62046|0.76389\n62047|0.94444\n62048|0.48611\n62049|0.77778\n62050|0.79167\n62051|0.58333\n62052|0.76389\n62053|0.48611\n62054|0.55556\n62055|0.84722\n62056|0.70833\n62057|0.40278\n62058|0.83333\n62059|0.625\n62060|0.26389\n62061|0.83333\n62062|0.5\n62063|0.79167\n62064|0.84722\n62065|0.22222\n62066|0.86111\n62067|0.77778\n62068|0.58333\n62069|0.375\n62070|0.43056\n62071|0.29167\n62072|0.66667\n62073|0.63889\n62074|0.69444\n62075|0.625\n62076|0.52778\n62077|0.88889\n62078|0.56944\n62079|0.5\n62080|0.77778\n62081|0.47222\n62082|0.72222\n62083|0.66667\n62084|0.375\n62085|0.83333\n62086|0.59722\n62087|0.81944\n62088|0.83333\n62089|0.625\n62090|0.61111\n62091|0.41667\n62092|0.83333\n62093|0.68056\n62094|0.5\n62095|0.80556\n62096|0.52778\n62097|0.45833\n62098|0.72222\n62099|0.44444\n62100|0.90278\n62101|0.18056\n62102|0.72222\n62103|0.5\n62104|0.54167\n62105|0.26389\n62106|0.83333\n62107|0.38889\n62108|0.44444\n62109|0.38889\n62110|0.30556\n62111|0.55556\n62112|0.69444\n62113|0.44444\n62114|0.27778\n62115|0.375\n62116|0.86111\n62117|0.61111\n62118|0.55556\n62119|0.61111\n62120|0.72222\n62121|0.5\n62122|0.5\n62123|0.86111\n62124|0.73611\n62125|0.5\n62126|0.65278\n62127|0.51389\n62128|0.44444\n62129|0.72222\n62130|0.76389\n62131|0.88889\n62132|0.51389\n62133|0.80556\n62134|0.76389\n62135|0.5\n62136|0.61111\n62137|0.55556\n62138|0.59722\n62139|0.77778\n62140|0.31944\n62141|0.59722\n62142|0.47222\n62143|0.51389\n62144|0.36111\n62145|0.54167\n62146|0.33333\n62147|0.5\n62148|0.625\n62149|0.54167\n62150|0.69444\n62151|0.5\n62152|0.59722\n62153|0.52778\n62154|0.79167\n62155|0.52778\n62156|0.63889\n62157|0.75\n62158|0.77778\n62159|0.5\n62160|0.68056\n62161|0.625\n62162|0.65278\n62163|0.52778\n62164|0.52778\n62165|0.45833\n62166|0.43056\n62167|0.43056\n62168|0.47222\n62169|0.52778\n62170|0.25\n62171|0.34722\n62172|0.59722\n62173|0.56944\n62174|0.75\n62175|0.77778\n62176|0.81944\n62177|0.51389\n62178|0.76389\n62179|0.61111\n62180|0.72222\n62181|0.47222\n62182|0.70833\n62183|0.59722\n62184|0.65278\n62185|0.5\n62186|0.69444\n62187|0.61111\n62188|0.41667\n62189|0.48611\n62190|0.375\n62191|0.80556\n62192|0.70833\n62193|0.98611\n62194|0.54167\n62195|0.66667\n62196|0.5\n62197|0.58333\n62198|0.88889\n62199|0.56944\n62200|0.58333\n62201|0.65278\n62202|0.55556\n62203|0.44444\n62204|0.375\n62205|0.54167\n62206|0.25\n62207|0.56944\n62208|0.5\n62209|0.54167\n62210|0.55556\n62211|0.69444\n62212|0.76389\n62213|0.625\n62214|0.76389\n62215|0.40278\n62216|0.48611\n62217|0.13889\n62218|0.83333\n62219|0.83333\n62220|0.56944\n62221|0.79167\n62222|0.44444\n62223|0.625\n62224|0.84722\n62225|0.65278\n62226|0.70833\n62227|0.84722\n62228|0.68056\n62229|0.34722\n62230|0.55556\n62231|0.70833\n62232|0.65278\n62233|0.43056\n62234|0.72222\n62235|0.56944\n62236|0.88889\n62237|0.52778\n62238|0.47222\n62239|0.625\n62240|0.80556\n62241|0.54167\n62242|0.47222\n62243|0.44444\n62244|0.68056\n62245|0.58333\n62246|0.69444\n62247|0.66667\n62248|0.80556\n62249|0.75\n62250|0.56944\n62251|0.65278\n62252|0.70833\n62253|0.55556\n62254|0.65278\n62255|0.40278\n62256|0.5\n62257|0.55556\n62258|0.45833\n62259|0.69444\n62260|0.23611\n62261|0.81944\n62262|0.72222\n62263|0.75\n62264|0.66667\n62265|0.77778\n62266|0.65278\n62267|0.79167\n62268|0.75\n62269|0.73611\n62270|0.68056\n62271|0.83333\n62272|0.38889\n62273|0.66667\n62274|0.93056\n62275|0.83333\n62276|0.59722\n62277|0.77778\n62278|0.68056\n62279|0.76389\n62280|0.69444\n62281|0.69444\n62282|0.5\n62283|0.83333\n62284|0.77778\n62285|0.80556\n62286|0.59722\n62287|0.5\n62288|0.5\n62289|0.69444\n62290|0.72222\n62291|0.27778\n62292|0.93056\n62293|0.33333\n62294|0.66667\n62295|0.79167\n62296|0.44444\n62297|0.58333\n62298|0.59722\n62299|0.63889\n62300|0.13889\n62301|0.79167\n62302|0.69444\n62303|0.66667\n62304|0.77778\n62305|0.58333\n62306|0.70833\n62307|0.59722\n62308|0.58333\n62309|0.75\n62310|0.55556\n62311|0.68056\n62312|0.61111\n62313|0.98611\n62314|0.80556\n62315|0.61111\n62316|0.875\n62317|0.61111\n62318|0.88889\n62319|0.86111\n62320|0.77778\n62321|0.69444\n62322|0.76389\n62323|0.65278\n62324|0.5\n62325|0.83333\n62326|0.73611\n62327|0.73611\n62328|0.69444\n62329|0.94444\n62330|0.81944\n62331|0.61111\n62332|0.5\n62333|0.38889\n62334|0.83333\n62335|0.69444\n62336|0.5\n62337|0.80556\n62338|0.75\n62339|0.80556\n62340|0.61111\n62341|0.90278\n62342|0.90278\n62343|0.93056\n62344|0.86111\n62345|0.68056\n62346|0.45833\n62347|0.86111\n62348|0.93056\n62349|0.625\n62350|0.76389\n62351|0.68056\n62352|0.84722\n62353|0.88889\n62354|0.61111\n62355|0.83333\n62356|0.51389\n62357|0.65278\n62358|0.66667\n62359|0.83333\n62360|0.63889\n62361|0.80556\n62362|0.75\n62363|0.81944\n62364|0.61111\n62365|0.61111\n62366|0.84722\n62367|0.72222\n62368|0.77778\n62369|0.61111\n62370|0.66667\n62371|0.52778\n62372|0.72222\n62373|0.91667\n62374|0.5\n62375|0.59722\n62376|0.5\n62377|0.54167\n62378|0.61111\n62379|0.48611\n62380|0.36111\n62381|0.625\n62382|0.5\n62383|0.52778\n62384|0.56944\n62385|0.84722\n62386|0.5\n62387|0.52778\n62388|0.77778\n62389|0.70833\n62390|0.44444\n62391|0.41667\n62392|0.44444\n62393|0.33333\n62394|0.16667\n62395|0.66667\n62396|0.5\n62397|0.20833\n62398|0.66667\n62399|0.51389\n62400|0.20833\n62401|0.51389\n62402|0.375\n62403|0.81944\n62404|0.52778\n62405|0.55556\n62406|0.90278\n62407|0.58333\n62408|0.68056\n62409|0.56944\n62410|0.66667\n62411|0.91667\n62412|0.83333\n62413|0.77778\n62414|0.54167\n62415|0.625\n62416|0.45833\n62417|0.40278\n62418|0.54167\n62419|0.47222\n62420|0.5\n62421|0.36111\n62422|0.72222\n62423|0.625\n62424|0.69444\n62425|0.70833\n62426|0.41667\n62427|0.61111\n62428|0.91667\n62429|0.61111\n62430|0.875\n62431|0.5\n62432|0.54167\n62433|0.51389\n62434|0.63889\n62435|0.65278\n62436|0.76389\n62437|0.83333\n62438|0.86111\n62439|0.48611\n62440|0.79167\n62441|0.75\n62442|0.69444\n62443|0.83333\n62444|0.83333\n62445|0.56944\n62446|0.61111\n62447|0.66667\n62448|0.65278\n62449|0.73611\n62450|0.80556\n62451|0.63889\n62452|0.73611\n62453|0.47222\n62454|0.81944\n62455|0.76389\n62456|0.41667\n62457|0.5\n62458|0.5\n62459|0.5\n62460|0.61111\n62461|0.41667\n62462|0.77778\n62463|0.72222\n62464|0.58333\n62465|0.52778\n62466|0.63889\n62467|0.58333\n62468|0.45833\n62469|0.66667\n62470|0.77778\n62471|0.81944\n62472|0.61111\n62473|0.61111\n62474|0.55556\n62475|0.33333\n62476|0.5\n62477|0.5\n62478|0.5\n62479|0.65278\n62480|0.45833\n62481|0.40278\n62482|0.61111\n62483|0.68056\n62484|0.5\n62485|0.68056\n62486|0.40278\n62487|0.51389\n62488|0.5\n62489|0.77778\n62490|0.22222\n62491|0.80556\n62492|0.80556\n62493|0.38889\n62494|0.80556\n62495|0.52778\n62496|0.38889\n62497|0.66667\n62498|0.56944\n62499|0.66667\n62500|0.69444\n62501|0.72222\n62502|0.55556\n62503|0.94444\n62504|0.43056\n62505|0.5\n62506|0.52778\n62507|0.48611\n62508|0.5\n62509|0.5\n62510|0.55556\n62511|0.5\n62512|0.5\n62513|0.5\n62514|0.5\n62515|0.65278\n62516|0.5\n62517|0.79167\n62518|0.5\n62519|0.72222\n62520|0.69444\n62521|0.51389\n62522|0.5\n62523|0.5\n62524|0.5\n62525|0.5\n62526|0.5\n62527|0.48611\n62528|0.5\n62529|0.5\n62530|0.84722\n62531|0.5\n62532|0.5\n62533|0.55556\n62534|0.5\n62535|0.48611\n62536|0.5\n62537|0.55556\n62538|0.5\n62539|0.51389\n62540|0.5\n62541|0.88889\n62542|0.69444\n62543|0.5\n62544|0.625\n62545|0.77778\n62546|0.72222\n62547|0.65278\n62548|0.68056\n62549|0.83333\n62550|0.77778\n62551|0.93056\n62552|0.86111\n62553|0.68056\n62554|0.76389\n62555|0.83333\n62556|0.88889\n62557|0.68056\n62558|0.76389\n62559|0.875\n62560|0.83333\n62561|0.47222\n62562|0.5\n62563|0.80556\n62564|0.59722\n62565|0.875\n62566|0.30556\n62567|0.83333\n62568|0.83333\n62569|0.72222\n62570|0.5\n62571|0.72222\n62572|0.5\n62573|0.83333\n62574|0.66667\n62575|0.77778\n62576|0.73611\n62577|0.84722\n62578|0.59722\n62579|0.75\n62580|0.80556\n62581|0.80556\n62582|0.72222\n62583|0.5\n62584|0.66667\n62585|0.73611\n62586|0.77778\n62587|0.41667\n62588|0.94444\n62589|0.68056\n62590|0.5\n62591|0.88889\n62592|0.34722\n62593|0.76389\n62594|0.22222\n62595|0.59722\n62596|0.81944\n62597|0.55556\n62598|0.81944\n62599|0.70833\n62600|0.19444\n62601|0.91667\n62602|0.52778\n62603|0.43056\n62604|0.16667\n62605|0.83333\n62606|0.70833\n62607|0.75\n62608|0.66667\n62609|0.77778\n62610|0.80556\n62611|0.22222\n62612|0.22222\n62613|0.31944\n62614|0.81944\n62615|0.875\n62616|0.5\n62617|0.61111\n62618|0.68056\n62619|0.55556\n62620|0.61111\n62621|0.45833\n62622|0.51389\n62623|0.94444\n62624|0.63889\n62625|0.44444\n62626|0.48611\n62627|0.55556\n62628|0.61111\n62629|0.5\n62630|0.51389\n62631|0.5\n62632|0.51389\n62633|0.58333\n62634|0.5\n62635|0.5\n62636|0.51389\n62637|0.5\n62638|0.5\n62639|0.83333\n62640|0.80556\n62641|0.22222\n62642|0.22222\n62643|0.29167\n62644|0.65278\n62645|0.40278\n62646|0.5\n62647|0.58333\n62648|0.5\n62649|0.5\n62650|0.5\n62651|0.5\n62652|0.56944\n62653|0.5\n62654|0.5\n62655|0.5\n62656|0.5\n62657|0.5\n62658|0.5\n62659|0.44444\n62660|0.5\n62661|0.5\n62662|0.73611\n62663|0.5\n62664|0.5\n62665|0.5\n62666|0.5\n62667|0.55556\n62668|0.5\n62669|0.5\n62670|0.5\n62671|0.5\n62672|0.54167\n62673|0.5\n62674|0.45833\n62675|0.5\n62676|0.38889\n62677|0.5\n62678|0.45833\n62679|0.52778\n62680|0.5\n62681|0.5\n62682|0.5\n62683|0.56944\n62684|0.5\n62685|0.58333\n62686|0.5\n62687|0.5\n62688|0.5\n62689|0.5\n62690|0.51389\n62691|0.51389\n62692|0.5\n62693|0.5\n62694|0.5\n62695|0.5\n62696|0.51389\n62697|0.5\n62698|0.61111\n62699|0.5\n62700|0.45833\n62701|0.5\n62702|0.5\n62703|0.5\n62704|0.5\n62705|0.5\n62706|0.72222\n62707|0.51389\n62708|0.625\n62709|0.84722\n62710|0.5\n62711|0.51389\n62712|0.5\n62713|0.625\n62714|0.5\n62715|0.5\n62716|0.5\n62717|0.5\n62718|0.45833\n62719|0.52778\n62720|0.5\n62721|0.47222\n62722|0.5\n62723|0.5\n62724|0.52778\n62725|0.5\n62726|0.5\n62727|0.5\n62728|0.5\n62729|0.63889\n62730|0.5\n62731|0.5\n62732|0.51389\n62733|0.5\n62734|0.5\n62735|0.5\n62736|0.5\n62737|0.5\n62738|0.52778\n62739|0.5\n62740|0.59722\n62741|0.70833\n62742|0.58333\n62743|0.61111\n62744|0.80556\n62745|0.22222\n62746|0.34722\n62747|0.88889\n62748|0.77778\n62749|0.54167\n62750|0.69444\n62751|0.5\n62752|0.55556\n62753|0.5\n62754|0.625\n62755|0.54167\n62756|0.56944\n62757|0.77778\n62758|0.56944\n62759|0.5\n62760|0.625\n62761|0.61111\n62762|0.5\n62763|0.83333\n62764|0.63889\n62765|0.5\n62766|0.5\n62767|0.625\n62768|0.75\n62769|0.56944\n62770|0.5\n62771|0.65278\n62772|0.77778\n62773|0.84722\n62774|0.88889\n62775|0.81944\n62776|0.94444\n62777|0.90278\n62778|0.875\n62779|0.98611\n62780|0.875\n62781|0.61111\n62782|0.91667\n62783|0.86111\n62784|0.69444\n62785|0.83333\n62786|0.79167\n62787|0.5\n62788|0.48611\n62789|0.59722\n62790|0.5\n62791|0.26389\n62792|0.38889\n62793|0.23611\n62794|0.30556\n62795|0.65278\n62796|0.69444\n62797|0.69444\n62798|0.66667\n62799|0.68056\n62800|0.54167\n62801|0.54167\n62802|0.77778\n62803|0.58333\n62804|0.61111\n62805|0.55556\n62806|0.81944\n62807|0.77778\n62808|0.63889\n62809|0.76389\n62810|0.76389\n62811|0.77778\n62812|0.75\n62813|0.72222\n62814|0.47222\n62815|0.56944\n62816|0.66667\n62817|0.84722\n62818|0.5\n62819|0.70833\n62820|0.94444\n62821|0.66667\n62822|0.61111\n62823|0.44444\n62824|0.58333\n62825|0.5\n62826|0.5\n62827|0.61111\n62828|0.59722\n62829|0.72222\n62830|0.61111\n62831|0.73611\n62832|0.68056\n62833|0.61111\n62834|0.69444\n62835|0.61111\n62836|0.55556\n62837|0.41667\n62838|0.70833\n62839|0.72222\n62840|0.63889\n62841|0.45833\n62842|0.43056\n62843|0.61111\n62844|0.72222\n62845|0.63889\n62846|0.625\n62847|0.77778\n62848|0.81944\n62849|0.83333\n62850|0.5\n62851|0.81944\n62852|0.75\n62853|0.76389\n62854|0.83333\n62855|0.94444\n62856|0.68056\n62857|0.84722\n62858|0.77778\n62859|0.73611\n62860|0.73611\n62861|0.5\n62862|0.80556\n62863|0.77778\n62864|0.70833\n62865|0.77778\n62866|0.81944\n62867|0.73611\n62868|0.59722\n62869|0.625\n62870|0.75\n62871|0.77778\n62872|0.77778\n62873|0.84722\n62874|0.58333\n62875|0.48611\n62876|0.68056\n62877|0.70833\n62878|0.65278\n62879|0.73611\n62880|0.72222\n62881|0.72222\n62882|0.66667\n62883|0.80556\n62884|0.47222\n62885|0.55556\n62886|0.61111\n62887|0.59722\n62888|0.65278\n62889|0.47222\n62890|0.68056\n62891|0.66667\n62892|0.58333\n62893|0.72222\n62894|0.86111\n62895|0.68056\n62896|0.55556\n62897|0.59722\n62898|0.81944\n62899|0.79167\n62900|0.68056\n62901|0.40278\n62902|0.44444\n62903|0.68056\n62904|0.875\n62905|0.66667\n62906|0.86111\n62907|0.77778\n62908|0.80556\n62909|0.83333\n62910|0.80556\n62911|0.80556\n62912|0.77778\n62913|0.63889\n62914|0.68056\n62915|0.72222\n62916|0.76389\n62917|0.61111\n62918|0.59722\n62919|0.83333\n62920|0.72222\n62921|0.80556\n62922|0.88889\n62923|0.52778\n62924|0.61111\n62925|0.625\n62926|0.66667\n62927|0.70833\n62928|0.80556\n62929|0.77778\n62930|0.83333\n62931|0.75\n62932|0.83333\n62933|0.95833\n62934|0.79167\n62935|0.79167\n62936|0.86111\n62937|0.90278\n62938|0.90278\n62939|0.41667\n62940|0.58333\n62941|0.19444\n62942|0.48611\n62943|0.34722\n62944|0.47222\n62945|0.625\n62946|0.66667\n62947|0.66667\n62948|0.625\n62949|0.68056\n62950|0.56944\n62951|0.36111\n62952|0.625\n62953|0.875\n62954|0.83333\n62955|0.83333\n62956|0.66667\n62957|0.38889\n62958|0.23611\n62959|0.73611\n62960|0.75\n62961|0.75\n62962|0.625\n62963|0.72222\n62964|0.77778\n62965|0.88889\n62966|0.72222\n62967|0.59722\n62968|0.875\n62969|0.83333\n62970|0.90278\n62971|0.77778\n62972|0.83333\n62973|0.72222\n62974|0.79167\n62975|0.83333\n62976|0.70833\n62977|0.875\n62978|0.70833\n62979|0.83333\n62980|0.875\n62981|0.88889\n62982|0.81944\n62983|0.875\n62984|0.79167\n62985|0.94444\n62986|0.94444\n62987|0.875\n62988|0.63889\n62989|0.90278\n62990|0.80556\n62991|0.88889\n62992|0.55556\n62993|0.38889\n62994|0.51389\n62995|0.55556\n62996|0.91667\n62997|0.83333\n62998|0.81944\n62999|0.80556\n63000|0.875\n63001|0.81944\n63002|0.76389\n63003|0.81944\n63004|0.68056\n63005|0.75\n63006|0.72222\n63007|0.69444\n63008|0.75\n63009|0.69444\n63010|0.79167\n63011|0.48611\n63012|0.69444\n63013|0.75\n63014|0.77778\n63015|0.83333\n63016|0.77778\n63017|0.70833\n63018|0.80556\n63019|0.66667\n63020|0.75\n63021|0.75\n63022|0.73611\n63023|0.68056\n63024|0.70833\n63025|0.58333\n63026|0.72222\n63027|0.79167\n63028|0.63889\n63029|0.75\n63030|0.83333\n63031|0.91667\n63032|0.81944\n63033|0.81944\n63034|0.88889\n63035|0.81944\n63036|0.76389\n63037|0.875\n63038|0.72222\n63039|0.73611\n63040|0.18056\n63041|0.80556\n63042|0.55556\n63043|0.72222\n63044|0.76389\n63045|0.5\n63046|0.69444\n63047|0.73611\n63048|0.70833\n63049|0.90278\n63050|0.72222\n63051|0.80556\n63052|0.86111\n63053|0.72222\n63054|0.77778\n63055|0.58333\n63056|0.73611\n63057|0.625\n63058|0.65278\n63059|0.77778\n63060|0.83333\n63061|0.97222\n63062|0.84722\n63063|0.88889\n63064|0.79167\n63065|0.73611\n63066|0.86111\n63067|0.93056\n63068|0.98611\n63069|0.77778\n63070|0.94444\n63071|0.91667\n63072|0.83333\n63073|0.68056\n63074|0.70833\n63075|0.72222\n63076|0.61111\n63077|0.73611\n63078|0.66667\n63079|0.80556\n63080|0.70833\n63081|0.70833\n63082|0.76389\n63083|0.88889\n63084|0.70833\n63085|0.69444\n63086|0.77778\n63087|0.70833\n63088|0.79167\n63089|0.81944\n63090|0.79167\n63091|0.80556\n63092|0.77778\n63093|0.84722\n63094|0.72222\n63095|0.79167\n63096|0.68056\n63097|0.70833\n63098|0.73611\n63099|0.55556\n63100|0.55556\n63101|0.70833\n63102|0.625\n63103|0.52778\n63104|0.68056\n63105|0.73611\n63106|0.75\n63107|0.72222\n63108|0.77778\n63109|0.73611\n63110|0.70833\n63111|0.84722\n63112|0.86111\n63113|0.76389\n63114|0.80556\n63115|0.88889\n63116|0.5\n63117|0.69444\n63118|0.72222\n63119|0.52778\n63120|0.61111\n63121|0.27778\n63122|0.30556\n63123|0.45833\n63124|0.75\n63125|0.625\n63126|0.5\n63127|0.5\n63128|0.69444\n63129|0.75\n63130|0.65278\n63131|0.69444\n63132|0.56944\n63133|0.45833\n63134|0.47222\n63135|0.43056\n63136|0.61111\n63137|0.76389\n63138|0.45833\n63139|0.30556\n63140|0.31944\n63141|0.48611\n63142|0.68056\n63143|0.68056\n63144|0.80556\n63145|0.65278\n63146|0.80556\n63147|0.875\n63148|0.79167\n63149|0.84722\n63150|0.5\n63151|0.80556\n63152|0.81944\n63153|0.48611\n63154|0.79167\n63155|0.66667\n63156|0.88889\n63157|0.81944\n63158|0.79167\n63159|0.84722\n63160|0.83333\n63161|0.84722\n63162|0.79167\n63163|0.73611\n63164|0.5\n63165|0.73611\n63166|0.79167\n63167|0.77778\n63168|0.625\n63169|0.52778\n63170|0.61111\n63171|0.61111\n63172|0.81944\n63173|0.88889\n63174|0.80556\n63175|0.52778\n63176|0.58333\n63177|0.63889\n63178|0.54167\n63179|0.5\n63180|0.80556\n63181|0.83333\n63182|0.95833\n63183|0.84722\n63184|0.94444\n63185|0.5\n63186|0.84722\n63187|0.88889\n63188|0.45833\n63189|0.625\n63190|0.84722\n63191|0.88889\n63192|0.66667\n63193|0.66667\n63194|0.875\n63195|0.19444\n63196|0.55556\n63197|0.51389\n63198|0.79167\n63199|0.88889\n63200|0.68056\n63201|0.66667\n63202|0.55556\n63203|0.72222\n63204|0.66667\n63205|0.93056\n63206|0.88889\n63207|0.75\n63208|0.44444\n63209|0.80556\n63210|0.88889\n63211|0.625\n63212|0.72222\n63213|0.56944\n63214|0.76389\n63215|0.75\n63216|0.72222\n63217|0.77778\n63218|0.80556\n63219|0.80556\n63220|0.86111\n63221|0.80556\n63222|0.83333\n63223|0.875\n63224|0.83333\n63225|0.80556\n63226|0.77778\n63227|0.83333\n63228|0.875\n63229|0.5\n63230|0.56944\n63231|0.875\n63232|0.81944\n63233|0.61111\n63234|0.79167\n63235|0.65278\n63236|0.5\n63237|0.77778\n63238|0.80556\n63239|0.76389\n63240|0.66667\n63241|0.5\n63242|0.58333\n63243|0.66667\n63244|0.72222\n63245|0.61111\n63246|0.75\n63247|0.76389\n63248|0.86111\n63249|0.56944\n63250|0.63889\n63251|0.77778\n63252|0.70833\n63253|0.52778\n63254|0.79167\n63255|0.65278\n63256|0.59722\n63257|0.5\n63258|0.73611\n63259|0.88889\n63260|0.90278\n63261|0.73611\n63262|0.72222\n63263|0.88889\n63264|0.55556\n63265|0.83333\n63266|0.77778\n63267|0.86111\n63268|0.77778\n63269|0.55556\n63270|0.52778\n63271|0.58333\n63272|0.55556\n63273|0.61111\n63274|0.77778\n63275|0.83333\n63276|0.79167\n63277|1\n63278|0.625\n63279|0.68056\n63280|0.75\n63281|0.75\n63282|0.66667\n63283|0.77778\n63284|0.76389\n63285|0.76389\n63286|0.55556\n63287|0.55556\n63288|0.65278\n63289|0.55556\n63290|0.66667\n63291|0.66667\n63292|0.38889\n63293|0.59722\n63294|0.5\n63295|0.52778\n63296|0.69444\n63297|0.73611\n63298|0.56944\n63299|0.58333\n63300|0.70833\n63301|0.625\n63302|0.77778\n63303|0.70833\n63304|0.77778\n63305|0.80556\n63306|0.83333\n63307|0.66667\n63308|0.77778\n63309|0.77778\n63310|0.68056\n63311|0.83333\n63312|0.79167\n63313|0.79167\n63314|0.88889\n63315|0.48611\n63316|0.5\n63317|0.52778\n63318|0.91667\n63319|0.58333\n63320|0.69444\n63321|0.68056\n63322|0.59722\n63323|0.59722\n63324|0.54167\n63325|0.61111\n63326|0.88889\n63327|0.84722\n63328|0.70833\n63329|0.73611\n63330|0.65278\n63331|0.77778\n63332|0.83333\n63333|0.81944\n63334|0.73611\n63335|0.76389\n63336|0.72222\n63337|0.25\n63338|0.25\n63339|0.29167\n63340|0.54167\n63341|0.625\n63342|0.375\n63343|0.48611\n63344|0.55556\n63345|0.625\n63346|0.48611\n63347|0.81944\n63348|0.81944\n63349|0.77778\n63350|0.84722\n63351|0.72222\n63352|0.86111\n63353|0.81944\n63354|0.84722\n63355|0.81944\n63356|0.79167\n63357|0.88889\n63358|0.79167\n63359|0.75\n63360|0.58333\n63361|0.75\n63362|0.875\n63363|0.90278\n63364|0.65278\n63365|0.58333\n63366|0.59722\n63367|0.61111\n63368|0.5\n63369|0.875\n63370|0.84722\n63371|0.75\n63372|0.81944\n63373|0.88889\n63374|0.77778\n63375|0.66667\n63376|0.66667\n63377|0.29167\n63378|0.66667\n63379|0.73611\n63380|0.625\n63381|0.52778\n63382|0.70833\n63383|0.34722\n63384|0.86111\n63385|0.88889\n63386|0.83333\n63387|0.80556\n63388|0.72222\n63389|0.81944\n63390|0.875\n63391|0.86111\n63392|0.88889\n63393|0.84722\n63394|0.69444\n63395|0.875\n63396|0.72222\n63397|0.84722\n63398|0.80556\n63399|0.75\n63400|0.73611\n63401|0.76389\n63402|0.76389\n63403|0.625\n63404|0.68056\n63405|0.76389\n63406|0.76389\n63407|0.77778\n63408|0.77778\n63409|0.72222\n63410|0.70833\n63411|0.90278\n63412|0.72222\n63413|0.75\n63414|0.75\n63415|0.77778\n63416|0.72222\n63417|0.88889\n63418|0.76389\n63419|0.69444\n63420|0.84722\n63421|0.84722\n63422|0.38889\n63423|0.68056\n63424|0.72222\n63425|0.75\n63426|0.84722\n63427|0.88889\n63428|0.72222\n63429|0.77778\n63430|0.86111\n63431|0.77778\n63432|0.77778\n63433|0.80556\n63434|0.84722\n63435|0.84722\n63436|0.875\n63437|0.80556\n63438|0.81944\n63439|0.76389\n63440|0.5\n63441|0.83333\n63442|0.83333\n63443|0.625\n63444|0.58333\n63445|0.75\n63446|0.81944\n63447|0.95833\n63448|0.86111\n63449|0.91667\n63450|0.83333\n63451|0.68056\n63452|0.77778\n63453|0.86111\n63454|0.86111\n63455|0.77778\n63456|0.79167\n63457|0.76389\n63458|0.70833\n63459|0.73611\n63460|0.70833\n63461|0.72222\n63462|0.63889\n63463|0.75\n63464|0.79167\n63465|0.73611\n63466|0.81944\n63467|0.625\n63468|0.76389\n63469|0.65278\n63470|0.77778\n63471|0.72222\n63472|0.70833\n63473|0.73611\n63474|0.72222\n63475|0.72222\n63476|0.55556\n63477|0.75\n63478|0.75\n63479|0.69444\n63480|0.48611\n63481|0.83333\n63482|0.80556\n63483|0.90278\n63484|0.77778\n63485|0.93056\n63486|0.84722\n63487|0.94444\n63488|0.44444\n63489|0.81944\n63490|0.83333\n63491|0.90278\n63492|0.77778\n63493|0.59722\n63494|0.79167\n63495|0.81944\n63496|0.76389\n63497|0.54167\n63498|0.77778\n63499|0.77778\n63500|0.66667\n63501|0.81944\n63502|0.81944\n63503|0.68056\n63504|0.80556\n63505|0.68056\n63506|0.77778\n63507|0.77778\n63508|0.56944\n63509|0.77778\n63510|0.5\n63511|0.5\n63512|0.625\n63513|0.61111\n63514|0.68056\n63515|0.80556\n63516|0.66667\n63517|0.98611\n63518|0.88889\n63519|0.58333\n63520|0.69444\n63521|0.5\n63522|0.51389\n63523|0.75\n63524|0.56944\n63525|0.77778\n63526|0.875\n63527|0.90278\n63528|0.93056\n63529|0.90278\n63530|0.90278\n63531|0.66667\n63532|0.88889\n63533|0.72222\n63534|0.59722\n63535|0.68056\n63536|0.83333\n63537|0.625\n63538|0.56944\n63539|0.65278\n63540|0.83333\n63541|0.83333\n63542|0.88889\n63543|0.72222\n63544|0.61111\n63545|0.70833\n63546|0.76389\n63547|0.72222\n63548|0.83333\n63549|0.86111\n63550|0.73611\n63551|0.86111\n63552|0.72222\n63553|0.79167\n63554|0.875\n63555|0.81944\n63556|0.90278\n63557|0.75\n63558|0.77778\n63559|0.69444\n63560|0.625\n63561|0.69444\n63562|0.94444\n63563|0.80556\n63564|0.83333\n63565|0.75\n63566|0.77778\n63567|0.61111\n63568|0.73611\n63569|0.69444\n63570|0.72222\n63571|0.75\n63572|0.70833\n63573|0.58333\n63574|0.80556\n63575|0.66667\n63576|0.79167\n63577|0.76389\n63578|0.88889\n63579|0.81944\n63580|0.83333\n63581|0.80556\n63582|0.73611\n63583|0.58333\n63584|0.88889\n63585|0.80556\n63586|0.76389\n63587|0.75\n63588|0.77778\n63589|0.70833\n63590|0.81944\n63591|0.79167\n63592|0.76389\n63593|0.86111\n63594|0.81944\n63595|0.77778\n63596|0.77778\n63597|0.70833\n63598|0.77778\n63599|0.51389\n63600|0.875\n63601|0.70833\n63602|0.84722\n63603|0.68056\n63604|0.73611\n63605|0.65278\n63606|0.55556\n63607|0.5\n63608|0.5\n63609|0.56944\n63610|0.625\n63611|0.51389\n63612|0.48611\n63613|0.47222\n63614|0.59722\n63615|0.5\n63616|0.55556\n63617|0.77778\n63618|0.68056\n63619|0.5\n63620|0.5\n63621|0.5\n63622|0.81944\n63623|0.80556\n63624|0.83333\n63625|0.51389\n63626|0.58333\n63627|1\n63628|0.5\n63629|0.5\n63630|0.51389\n63631|0.41667\n63632|0.5\n63633|0.5\n63634|0.48611\n63635|0.51389\n63636|0.52778\n63637|0.68056\n63638|0.48611\n63639|0.5\n63640|0.56944\n63641|0.5\n63642|0.86111\n63643|0.5\n63644|0.61111\n63645|0.73611\n63646|0.88889\n63647|0.97222\n63648|0.56944\n63649|0.5\n63650|0.54167\n63651|0.51389\n63652|0.61111\n63653|0.75\n63654|0.38889\n63655|0.5\n63656|0.5\n63657|0.5\n63658|0.5\n63659|0.375\n63660|0.73611\n63661|0.5\n63662|0.48611\n63663|0.79167\n63664|0.5\n63665|0.34722\n63666|0.44444\n63667|0.5\n63668|0.55556\n63669|0.5\n63670|0.56944\n63671|0.625\n63672|0.61111\n63673|0.48611\n63674|0.72222\n63675|0.5\n63676|0.59722\n63677|0.61111\n63678|0.51389\n63679|0.5\n63680|0.5\n63681|0.5\n63682|0.54167\n63683|0.61111\n63684|0.48611\n63685|0.88889\n63686|0.5\n63687|0.5\n63688|0.61111\n63689|0.48611\n63690|0.45833\n63691|0.68056\n63692|0.43056\n63693|0.61111\n63694|0.52778\n63695|0.16667\n63696|0.125\n63697|0.5\n63698|0.77778\n63699|0.73611\n63700|0.59722\n63701|0.61111\n63702|0.77778\n63703|0.33333\n63704|0.63889\n63705|0.52778\n63706|0.86111\n63707|0.55556\n63708|0.70833\n63709|0.5\n63710|0.61111\n63711|0.625\n63712|0.83333\n63713|0.58333\n63714|0.5\n63715|0.80556\n63716|0.56944\n63717|0.77778\n63718|0.5\n63719|0.5\n63720|0.5\n63721|0.47222\n63722|0.5\n63723|0.5\n63724|0.65278\n63725|0.55556\n63726|0.83333\n63727|0.55556\n63728|0.5\n63729|0.44444\n63730|0.55556\n63731|0.51389\n63732|0.73611\n63733|0.72222\n63734|0.5\n63735|0.5\n63736|0.59722\n63737|0.76389\n63738|0.56944\n63739|0.44444\n63740|0.66667\n63741|0.66667\n63742|0.77778\n63743|0.54167\n63744|0.66667\n63745|0.375\n63746|0.63889\n63747|0.55556\n63748|0.80556\n63749|0.5\n63750|0.68056\n63751|0.33333\n63752|0.63889\n63753|0.34722\n63754|0.63889\n63755|0.47222\n63756|0.65278\n63757|0.41667\n63758|0.75\n63759|0.36111\n63760|0.52778\n63761|0.30556\n63762|0.58333\n63763|0.77778\n63764|0.34722\n63765|0.75\n63766|0.41667\n63767|0.70833\n63768|0.5\n63769|0.72222\n63770|0.59722\n63771|0.51389\n63772|0.41667\n63773|0.52778\n63774|0.5\n63775|0.91667\n63776|0.88889\n63777|0.73611\n63778|0.59722\n63779|0.77778\n63780|0.75\n63781|0.33333\n63782|0.625\n63783|0.29167\n63784|0.51389\n63785|0.54167\n63786|0.44444\n63787|0.5\n63788|0.5\n63789|0.48611\n63790|0.44444\n63791|0.5\n63792|0.55556\n63793|0.72222\n63794|0.5\n63795|0.5\n63796|0.72222\n63797|0.45833\n63798|0.5\n63799|0.5\n63800|0.5\n63801|0.51389\n63802|0.5\n63803|0.45833\n63804|0.75\n63805|0.5\n63806|0.63889\n63807|0.81944\n63808|0.5\n63809|0.5\n63810|0.5\n63811|0.69444\n63812|0.625\n63813|0.58333\n63814|0.5\n63815|0.5\n63816|0.5\n63817|0.36111\n63818|0.29167\n63819|0.375\n63820|0.48611\n63821|0.66667\n63822|0.80556\n63823|0.73611\n63824|0.70833\n63825|0.79167\n63826|0.56944\n63827|0.72222\n63828|0.72222\n63829|0.70833\n63830|0.80556\n63831|0.80556\n63832|0.75\n63833|0.65278\n63834|0.80556\n63835|0.55556\n63836|0.75\n63837|0.76389\n63838|0.77778\n63839|0.625\n63840|0.63889\n63841|0.75\n63842|0.58333\n63843|0.66667\n63844|0.625\n63845|0.69444\n63846|0.66667\n63847|0.63889\n63848|0.69444\n63849|0.73611\n63850|0.54167\n63851|0.88889\n63852|0.80556\n63853|0.77778\n63854|0.93056\n63855|0.91667\n63856|0.73611\n63857|0.88889\n63858|0.72222\n63859|0.81944\n63860|0.83333\n63861|0.72222\n63862|0.76389\n63863|0.79167\n63864|0.75\n63865|0.69444\n63866|0.79167\n63867|0.77778\n63868|0.58333\n63869|0.75\n63870|0.73611\n63871|0.70833\n63872|0.58333\n63873|0.66667\n63874|0.80556\n63875|0.875\n63876|0.86111\n63877|0.79167\n63878|0.80556\n63879|0.86111\n63880|0.70833\n63881|0.93056\n63882|0.79167\n63883|0.83333\n63884|0.76389\n63885|0.76389\n63886|0.56944\n63887|0.93056\n63888|0.48611\n63889|0.54167\n63890|0.5\n63891|0.75\n63892|0.81944\n63893|0.70833\n63894|0.75\n63895|0.84722\n63896|0.93056\n63897|0.81944\n63898|0.69444\n63899|0.5\n63900|0.75\n63901|0.93056\n63902|0.73611\n63903|0.76389\n63904|0.77778\n63905|0.76389\n63906|0.77778\n63907|0.51389\n63908|0.5\n63909|0.69444\n63910|0.73611\n63911|0.70833\n63912|0.83333\n63913|0.86111\n63914|0.83333\n63915|0.72222\n63916|0.80556\n63917|0.77778\n63918|0.76389\n63919|0.54167\n63920|0.76389\n63921|0.86111\n63922|0.84722\n63923|0.72222\n63924|0.75\n63925|0.875\n63926|0.72222\n63927|0.77778\n63928|0.76389\n63929|0.79167\n63930|0.79167\n63931|0.58333\n63932|0.76389\n63933|0.70833\n63934|0.51389\n63935|0.68056\n63936|0.76389\n63937|0.77778\n63938|0.68056\n63939|0.69444\n63940|0.59722\n63941|0.34722\n63942|0.77778\n63943|0.70833\n63944|0.55556\n63945|0.44444\n63946|0.15278\n63947|0.30556\n63948|0.34722\n63949|0.48611\n63950|0.68056\n63951|0.80556\n63952|0.79167\n63953|0.90278\n63954|0.75\n63955|0.81944\n63956|0.84722\n63957|0.83333\n63958|0.72222\n63959|0.83333\n63960|0.70833\n63961|0.77778\n63962|0.59722\n63963|0.66667\n63964|0.76389\n63965|0.69444\n63966|0.56944\n63967|0.56944\n63968|0.63889\n63969|0.73611\n63970|0.77778\n63971|0.84722\n63972|0.83333\n63973|0.5\n63974|0.51389\n63975|0.5\n63976|0.52778\n63977|0.5\n63978|0.73611\n63979|0.5\n63980|0.5\n63981|0.5\n63982|0.5\n63983|0.5\n63984|0.5\n63985|0.5\n63986|0.54167\n63987|0.75\n63988|0.5\n63989|0.5\n63990|0.69444\n63991|0.75\n63992|0.5\n63993|0.44444\n63994|0.70833\n63995|0.5\n63996|0.51389\n63997|0.76389\n63998|0.70833\n63999|0.55556\n64000|0.5\n64001|0.77778\n64002|0.56944\n64003|0.5\n64004|0.5\n64005|0.55556\n64006|0.56944\n64007|0.51389\n64008|0.375\n64009|0.88889\n64010|0.70833\n64011|0.69444\n64012|0.83333\n64013|0.83333\n64014|0.91667\n64015|0.47222\n64016|0.88889\n64017|0.48611\n64018|0.77778\n64019|0.59722\n64020|0.5\n64021|0.5\n64022|0.5\n64023|0.48611\n64024|0.5\n64025|0.5\n64026|0.5\n64027|0.56944\n64028|0.54167\n64029|0.5\n64030|0.79167\n64031|0.5\n64032|0.5\n64033|0.30556\n64034|0.44444\n64035|0.51389\n64036|0.5\n64037|0.33333\n64038|0.625\n64039|0.5\n64040|0.5\n64041|0.5\n64042|0.5\n64043|0.72222\n64044|0.55556\n64045|0.93056\n64046|0.33333\n64047|0.5\n64048|0.72222\n64049|0.83333\n64050|0.88889\n64051|0.80556\n64052|0.5\n64053|0.48611\n64054|0.45833\n64055|0.5\n64056|0.81944\n64057|0.70833\n64058|0.51389\n64059|0.55556\n64060|0.58333\n64061|0.5\n64062|0.55556\n64063|0.68056\n64064|0.5\n64065|0.61111\n64066|0.5\n64067|0.76389\n64068|0.51389\n64069|0.66667\n64070|0.52778\n64071|0.56944\n64072|0.5\n64073|0.43056\n64074|0.88889\n64075|0.61111\n64076|0.75\n64077|0.86111\n64078|0.76389\n64079|0.59722\n64080|0.70833\n64081|0.36111\n64082|0.65278\n64083|0.93056\n64084|0.79167\n64085|0.51389\n64086|0.84722\n64087|0.52778\n64088|0.77778\n64089|0.65278\n64090|0.66667\n64091|0.44444\n64092|0.44444\n64093|0.18056\n64094|0.26389\n64095|0.55556\n64096|0.80556\n64097|0.58333\n64098|0.34722\n64099|0.5\n64100|0.84722\n64101|0.5\n64102|0.79167\n64103|0.44444\n64104|0.76389\n64105|0.73611\n64106|0.76389\n64107|0.5\n64108|0.34722\n64109|0.76389\n64110|0.48611\n64111|0.68056\n64112|0.45833\n64113|0.55556\n64114|0.61111\n64115|0.5\n64116|0.5\n64117|0.59722\n64118|0.5\n64119|0.61111\n64120|0.5\n64121|0.66667\n64122|0.56944\n64123|0.76389\n64124|0.65278\n64125|0.88889\n64126|0.79167\n64127|0.70833\n64128|0.93056\n64129|0.81944\n64130|0.90278\n64131|0.90278\n64132|0.90278\n64133|0.875\n64134|0.5\n64135|0.80556\n64136|0.72222\n64137|0.5\n64138|0.93056\n64139|0.65278\n64140|0.875\n64141|0.48611\n64142|0.77778\n64143|0.19444\n64144|0.20833\n64145|0.22222\n64146|0.34722\n64147|0.58333\n64148|0.56944\n64149|0.5\n64150|0.875\n64151|0.5\n64152|0.75\n64153|0.81944\n64154|0.55556\n64155|0.875\n64156|0.5\n64157|0.25\n64158|0.29167\n64159|0.875\n64160|0.76389\n64161|0.73611\n64162|0.77778\n64163|0.69444\n64164|0.33333\n64165|0.52778\n64166|0.33333\n64167|0.29167\n64168|0.22222\n64169|0.68056\n64170|0.54167\n64171|0.52778\n64172|0.55556\n64173|0.52778\n64174|0.5\n64175|0.5\n64176|0.81944\n64177|0.5\n64178|0.68056\n64179|0.16667\n64180|0.30556\n64181|0.31944\n64182|0.51389\n64183|0.76389\n64184|0.5\n64185|0.5\n64186|0.5\n64187|0.5\n64188|0.5\n64189|0.69444\n64190|0.55556\n64191|0.875\n64192|0.5\n64193|0.5\n64194|0.5\n64195|0.65278\n64196|0.75\n64197|0.375\n64198|0.61111\n64199|0.58333\n64200|0.55556\n64201|0.5\n64202|0.84722\n64203|1\n64204|0.84722\n64205|0.5\n64206|0.80556\n64207|0.33333\n64208|0.5\n64209|0.5\n64210|0.625\n64211|0.51389\n64212|0.30556\n64213|0.48611\n64214|0.51389\n64215|0.5\n64216|0.52778\n64217|0.43056\n64218|0.41667\n64219|0.5\n64220|0.5\n64221|0.5\n64222|0.5\n64223|0.51389\n64224|0.54167\n64225|0.5\n64226|0.77778\n64227|0.5\n64228|0.5\n64229|0.40278\n64230|0.5\n64231|0.5\n64232|0.80556\n64233|0.55556\n64234|0.5\n64235|0.5\n64236|0.27778\n64237|0.5\n64238|0.5\n64239|0.5\n64240|0.83333\n64241|0.625\n64242|0.70833\n64243|0.5\n64244|0.5\n64245|0.47222\n64246|0.51389\n64247|0.54167\n64248|0.69444\n64249|0.5\n64250|0.59722\n64251|0.81944\n64252|0.5\n64253|0.51389\n64254|0.5\n64255|0.5\n64256|0.5\n64257|0.73611\n64258|0.5\n64259|0.72222\n64260|0.875\n64261|0.77778\n64262|0.77778\n64263|0.5\n64264|0.5\n64265|0.5\n64266|0.5\n64267|0.48611\n64268|0.72222\n64269|0.68056\n64270|0.80556\n64271|0.68056\n64272|0.73611\n64273|0.66667\n64274|0.79167\n64275|0.77778\n64276|0.70833\n64277|0.94444\n64278|0.84722\n64279|0.86111\n64280|0.83333\n64281|0.77778\n64282|0.88889\n64283|0.72222\n64284|0.83333\n64285|0.84722\n64286|0.875\n64287|0.90278\n64288|0.88889\n64289|0.83333\n64290|0.875\n64291|0.75\n64292|0.70833\n64293|0.48611\n64294|0.44444\n64295|0.5\n64296|0.44444\n64297|0.55556\n64298|0.27778\n64299|0.65278\n64300|0.80556\n64301|0.70833\n64302|0.80556\n64303|0.5\n64304|0.79167\n64305|0.83333\n64306|0.5\n64307|0.5\n64308|0.70833\n64309|0.63889\n64310|0.5\n64311|0.83333\n64312|0.5\n64313|0.5\n64314|0.61111\n64315|0.5\n64316|0.75\n64317|0.66667\n64318|0.5\n64319|0.5\n64320|0.5\n64321|0.5\n64322|0.5\n64323|0.5\n64324|0.51389\n64325|0.5\n64326|0.84722\n64327|0.80556\n64328|0.81944\n64329|0.34722\n64330|0.80556\n64331|0.91667\n64332|0.5\n64333|0.59722\n64334|0.77778\n64335|0.65278\n64336|0.76389\n64337|0.63889\n64338|0.73611\n64339|0.40278\n64340|0.56944\n64341|0.65278\n64342|0.5\n64343|0.94444\n64344|0.76389\n64345|0.5\n64346|0.5\n64347|0.5\n64348|0.70833\n64349|0.51389\n64350|0.66667\n64351|0.55556\n64352|0.5\n64353|0.84722\n64354|0.59722\n64355|0.40278\n64356|0.41667\n64357|0.73611\n64358|0.77778\n64359|0.73611\n64360|0.5\n64361|0.59722\n64362|0.52778\n64363|0.65278\n64364|0.66667\n64365|0.5\n64366|0.69444\n64367|0.61111\n64368|0.83333\n64369|0.625\n64370|0.83333\n64371|0.48611\n64372|0.625\n64373|0.93056\n64374|0.72222\n64375|0.625\n64376|0.38889\n64377|0.63889\n64378|0.51389\n64379|0.44444\n64380|0.33333\n64381|0.45833\n64382|0.65278\n64383|0.5\n64384|0.66667\n64385|0.48611\n64386|0.5\n64387|0.81944\n64388|0.5\n64389|0.5\n64390|0.81944\n64391|0.70833\n64392|0.72222\n64393|0.625\n64394|0.61111\n64395|0.47222\n64396|0.36111\n64397|0.48611\n64398|0.33333\n64399|0.5\n64400|0.83333\n64401|0.93056\n64402|0.93056\n64403|0.15278\n64404|0.5\n64405|0.51389\n64406|0.73611\n64407|0.5\n64408|0.38889\n64409|0.54167\n64410|0.70833\n64411|0.80556\n64412|0.5\n64413|0.66667\n64414|0.72222\n64415|0.68056\n64416|0.73611\n64417|0.5\n64418|0.51389\n64419|0.59722\n64420|0.66667\n64421|0.59722\n64422|0.76389\n64423|0.86111\n64424|0.80556\n64425|0.80556\n64426|0.54167\n64427|0.59722\n64428|0.5\n64429|0.375\n64430|0.5\n64431|0.5\n64432|0.5\n64433|0.76389\n64434|0.86111\n64435|0.81944\n64436|0.48611\n64437|0.69444\n64438|0.73611\n64439|0.88889\n64440|0.55556\n64441|0.55556\n64442|0.5\n64443|0.54167\n64444|0.65278\n64445|0.5\n64446|0.47222\n64447|0.52778\n64448|0.83333\n64449|0.80556\n64450|0.80556\n64451|0.84722\n64452|0.73611\n64453|0.83333\n64454|0.61111\n64455|0.69444\n64456|0.83333\n64457|0.77778\n64458|0.5\n64459|0.63889\n64460|0.77778\n64461|0.38889\n64462|0.5\n64463|0.40278\n64464|0.43056\n64465|0.58333\n64466|0.51389\n64467|0.59722\n64468|0.44444\n64469|0.5\n64470|0.56944\n64471|0.93056\n64472|0.875\n64473|0.86111\n64474|0.95833\n64475|0.5\n64476|0.68056\n64477|0.73611\n64478|0.79167\n64479|0.88889\n64480|0.5\n64481|0.625\n64482|0.61111\n64483|0.55556\n64484|0.875\n64485|0.80556\n64486|0.68056\n64487|0.625\n64488|0.80556\n64489|0.63889\n64490|0.70833\n64491|0.58333\n64492|0.77778\n64493|0.91667\n64494|0.95833\n64495|0.69444\n64496|0.68056\n64497|0.97222\n64498|0.5\n64499|0.54167\n64500|0.5\n64501|0.52778\n64502|0.625\n64503|0.77778\n64504|0.58333\n64505|0.70833\n64506|0.75\n64507|0.81944\n64508|0.75\n64509|0.875\n64510|0.56944\n64511|0.5\n64512|0.47222\n64513|0.5\n64514|0.80556\n64515|0.5\n64516|0.54167\n64517|0.5\n64518|0.5\n64519|0.51389\n64520|0.58333\n64521|0.81944\n64522|0.88889\n64523|0.75\n64524|0.79167\n64525|0.61111\n64526|0.54167\n64527|0.5\n64528|0.63889\n64529|0.5\n64530|0.51389\n64531|0.70833\n64532|0.5\n64533|0.5\n64534|0.5\n64535|0.73611\n64536|0.72222\n64537|0.5\n64538|0.54167\n64539|0.5\n64540|0.5\n64541|0.5\n64542|0.5\n64543|0.5\n64544|0.59722\n64545|0.69444\n64546|0.5\n64547|0.70833\n64548|0.83333\n64549|0.44444\n64550|0.55556\n64551|0.80556\n64552|0.5\n64553|0.5\n64554|0.33333\n64555|0.48611\n64556|0.86111\n64557|0.52778\n64558|0.75\n64559|0.51389\n64560|0.51389\n64561|0.61111\n64562|0.48611\n64563|0.45833\n64564|0.52778\n64565|0.5\n64566|0.5\n64567|0.44444\n64568|0.43056\n64569|0.5\n64570|0.63889\n64571|0.625\n64572|0.56944\n64573|0.79167\n64574|0.83333\n64575|0.36111\n64576|0.79167\n64577|0.5\n64578|0.75\n64579|0.83333\n64580|0.81944\n64581|0.5\n64582|0.51389\n64583|0.5\n64584|0.61111\n64585|0.5\n64586|0.5\n64587|0.80556\n64588|0.48611\n64589|0.5\n64590|0.5\n64591|0.48611\n64592|0.55556\n64593|0.5\n64594|0.65278\n64595|0.5\n64596|0.5\n64597|0.5\n64598|0.55556\n64599|0.625\n64600|0.47222\n64601|0.41667\n64602|0.5\n64603|0.51389\n64604|0.5\n64605|0.63889\n64606|0.47222\n64607|0.66667\n64608|0.625\n64609|0.65278\n64610|0.5\n64611|0.61111\n64612|0.63889\n64613|0.5\n64614|0.45833\n64615|0.5\n64616|0.63889\n64617|0.69444\n64618|0.66667\n64619|0.79167\n64620|0.68056\n64621|0.72222\n64622|0.76389\n64623|0.65278\n64624|0.875\n64625|0.625\n64626|0.76389\n64627|0.5\n64628|0.77778\n64629|0.79167\n64630|0.88889\n64631|0.5\n64632|0.5\n64633|0.5\n64634|0.5\n64635|0.5\n64636|0.5\n64637|0.5\n64638|0.5\n64639|0.56944\n64640|0.5\n64641|0.5\n64642|0.5\n64643|0.5\n64644|0.5\n64645|0.5\n64646|0.77778\n64647|0.61111\n64648|0.5\n64649|0.44444\n64650|0.33333\n64651|0.59722\n64652|0.66667\n64653|0.69444\n64654|0.5\n64655|0.69444\n64656|0.5\n64657|0.5\n64658|0.54167\n64659|0.5\n64660|0.54167\n64661|0.54167\n64662|0.5\n64663|0.5\n64664|0.86111\n64665|0.58333\n64666|0.44444\n64667|0.84722\n64668|0.88889\n64669|0.61111\n64670|0.5\n64671|0.55556\n64672|0.5\n64673|0.55556\n64674|0.5\n64675|0.5\n64676|0.52778\n64677|0.5\n64678|0.5\n64679|0.5\n64680|0.5\n64681|0.5\n64682|0.80556\n64683|0.69444\n64684|0.86111\n64685|0.73611\n64686|0.625\n64687|0.66667\n64688|0.61111\n64689|0.5\n64690|0.73611\n64691|0.51389\n64692|0.55556\n64693|0.65278\n64694|0.45833\n64695|0.51389\n64696|0.59722\n64697|0.5\n64698|0.5\n64699|0.5\n64700|0.72222\n64701|0.45833\n64702|0.52778\n64703|0.5\n64704|0.70833\n64705|0.5\n64706|0.5\n64707|0.5\n64708|0.5\n64709|0.5\n64710|0.5\n64711|0.61111\n64712|0.65278\n64713|0.5\n64714|0.5\n64715|0.47222\n64716|0.5\n64717|0.5\n64718|0.55556\n64719|0.5\n64720|0.5\n64721|0.5\n64722|0.55556\n64723|0.70833\n64724|0.83333\n64725|0.5\n64726|0.55556\n64727|0.5\n64728|0.56944\n64729|0.58333\n64730|0.5\n64731|0.5\n64732|0.51389\n64733|0.5\n64734|0.5\n64735|0.88889\n64736|0.73611\n64737|0.66667\n64738|0.80556\n64739|0.77778\n64740|0.83333\n64741|0.5\n64742|0.40278\n64743|0.65278\n64744|0.63889\n64745|0.5\n64746|0.5\n64747|0.5\n64748|0.5\n64749|0.48611\n64750|0.80556\n64751|0.72222\n64752|0\n64753|0.19444\n64754|0.22222\n64755|0.54167\n64756|0.19444\n64757|0.76389\n64758|0.66667\n64759|0.73611\n64760|0.51389\n64761|0.5\n64762|0.5\n64763|0.77778\n64764|0.51389\n64765|0.26389\n64766|0.76389\n64767|0.5\n64768|0.79167\n64769|0.5\n64770|0.5\n64771|0.5\n64772|0.5\n64773|0.5\n64774|0.38889\n64775|0.75\n64776|0.51389\n64777|0.70833\n64778|0.77778\n64779|0.43056\n64780|0.80556\n64781|0.27778\n64782|0.38889\n64783|0.41667\n64784|0.66667\n64785|0.61111\n64786|0.76389\n64787|0.38889\n64788|0.43056\n64789|0.43056\n64790|0.43056\n64791|0.41667\n64792|0.41667\n64793|0.65278\n64794|0.61111\n64795|0.375\n64796|0.31944\n64797|0.76389\n64798|0.5\n64799|0.58333\n64800|0.84722\n64801|0.56944\n64802|0.22222\n64803|0.63889\n64804|0.58333\n64805|0.81944\n64806|0.30556\n64807|0.36111\n64808|0.75\n64809|0.70833\n64810|0.90278\n64811|0.5\n64812|0.59722\n64813|0.44444\n64814|0.5\n64815|0.5\n64816|0.69444\n64817|0.5\n64818|0.51389\n64819|0.70833\n64820|0.70833\n64821|0.76389\n64822|0.80556\n64823|0.77778\n64824|0.5\n64825|0.51389\n64826|0.5\n64827|0.5\n64828|0.5\n64829|0.5\n64830|0.58333\n64831|0.79167\n64832|0.36111\n64833|0.36111\n64834|0.27778\n64835|0.65278\n64836|0.66667\n64837|0.5\n64838|0.44444\n64839|0.33333\n64840|0.33333\n64841|0.34722\n64842|0.36111\n64843|0.65278\n64844|0.66667\n64845|0.68056\n64846|0.5\n64847|0.54167\n64848|0.72222\n64849|0.63889\n64850|0.5\n64851|0.56944\n64852|0.73611\n64853|0.44444\n64854|0.48611\n64855|0.43056\n64856|0.55556\n64857|0.69444\n64858|0.79167\n64859|0.58333\n64860|0.5\n64861|0.55556\n64862|0.40278\n64863|0.76389\n64864|0.52778\n64865|0.61111\n64866|0.65278\n64867|0.69444\n64868|0.44444\n64869|0.43056\n64870|0.40278\n64871|0.59722\n64872|0.44444\n64873|0.52778\n64874|0.5\n64875|0.63889\n64876|0.5\n64877|0.5\n64878|0.5\n64879|0.48611\n64880|0.66667\n64881|0.5\n64882|0.48611\n64883|0.72222\n64884|0.51389\n64885|0.38889\n64886|0.81944\n64887|0.5\n64888|0.77778\n64889|0.58333\n64890|0.5\n64891|0.5\n64892|0.48611\n64893|0.61111\n64894|0.55556\n64895|0.625\n64896|0.61111\n64897|0.5\n64898|0.51389\n64899|0.48611\n64900|0.56944\n64901|0.52778\n64902|0.5\n64903|0.47222\n64904|0.43056\n64905|0.68056\n64906|0.83333\n64907|0.52778\n64908|0.69444\n64909|0.5\n64910|0.5\n64911|0.5\n64912|0.51389\n64913|0.51389\n64914|0.51389\n64915|0.55556\n64916|0.5\n64917|0.56944\n64918|0.56944\n64919|0.79167\n64920|0.5\n64921|0.58333\n64922|0.58333\n64923|0.80556\n64924|0.77778\n64925|0.52778\n64926|0.5\n64927|0.51389\n64928|0.44444\n64929|0.625\n64930|0.77778\n64931|0.73611\n64932|0.80556\n64933|0.51389\n64934|0.58333\n64935|0.66667\n64936|0.5\n64937|0.63889\n64938|0.70833\n64939|0.70833\n64940|0.5\n64941|0.5\n64942|0.5\n64943|0.5\n64944|0.5\n64945|0.5\n64946|0.5\n64947|0.51389\n64948|0.75\n64949|0.5\n64950|0.51389\n64951|0.5\n64952|0.81944\n64953|0.5\n64954|0.44444\n64955|0.56944\n64956|0.55556\n64957|0.5\n64958|0.5\n64959|0.61111\n64960|0.5\n64961|0.5\n64962|0.5\n64963|0.75\n64964|0.73611\n64965|0.5\n64966|0.75\n64967|0.75\n64968|0.44444\n64969|0.52778\n64970|0.59722\n64971|0.68056\n64972|0.61111\n64973|0.76389\n64974|0.90278\n64975|0.5\n64976|0.5\n64977|0.76389\n64978|0.61111\n64979|0.84722\n64980|0.79167\n64981|0.88889\n64982|0.23611\n64983|0.44444\n64984|0.72222\n64985|0.59722\n64986|0.56944\n64987|0.77778\n64988|0.77778\n64989|0.73611\n64990|0.61111\n64991|0.73611\n64992|0.76389\n64993|0.79167\n64994|0.84722\n64995|0.79167\n64996|0.45833\n64997|0.5\n64998|0.61111\n64999|0.81944\n65000|0.5\n65001|0.80556\n65002|0.80556\n65003|0.5\n65004|0.625\n65005|0.44444\n65006|0.44444\n65007|0.48611\n65008|0.5\n65009|0.5\n65010|0.45833\n65011|0.59722\n65012|0.5\n65013|0.5\n65014|0.56944\n65015|0.94444\n65016|0.68056\n65017|0.91667\n65018|0.77778\n65019|0.52778\n65020|0.875\n65021|0.72222\n65022|0.76389\n65023|0.375\n65024|0.875\n65025|0.55556\n65026|0.72222\n65027|0.52778\n65028|0.70833\n65029|0.48611\n65030|0.33333\n65031|0.59722\n65032|0.76389\n65033|0.51389\n65034|0.80556\n65035|0.5\n65036|0.51389\n65037|0.44444\n65038|0.45833\n65039|0.38889\n65040|0.5\n65041|0.48611\n65042|0.83333\n65043|0.79167\n65044|0.84722\n65045|0.91667\n65046|0.73611\n65047|0.5\n65048|0.5\n65049|0.91667\n65050|0.91667\n65051|0.80556\n65052|0.52778\n65053|0.625\n65054|0.59722\n65055|0.625\n65056|0.5\n65057|0.5\n65058|0.86111\n65059|0.36111\n65060|0.5\n65061|0.51389\n65062|0.5\n65063|0.375\n65064|0.88889\n65065|0.51389\n65066|0.5\n65067|0.5\n65068|0.5\n65069|0.86111\n65070|0.5\n65071|0.76389\n65072|0.875\n65073|0.86111\n65074|0.56944\n65075|0.73611\n65076|0.5\n65077|0.26389\n65078|0.31944\n65079|0.68056\n65080|0.83333\n65081|0.625\n65082|0.069444\n65083|0.625\n65084|0.88889\n65085|0.5\n65086|0.5\n65087|0.72222\n65088|0.94444\n65089|0.5\n65090|0.625\n65091|0.55556\n65092|0.77778\n65093|0.5\n65094|0.65278\n65095|0.75\n65096|0.76389\n65097|0.75\n65098|0.58333\n65099|0.66667\n65100|0.5\n65101|0.51389\n65102|0.5\n65103|0.81944\n65104|0.68056\n65105|0.58333\n65106|0.55556\n65107|0.5\n65108|0.88889\n65109|0.5\n65110|0.25\n65111|0.26389\n65112|0.34722\n65113|0.45833\n65114|0.31944\n65115|0.51389\n65116|0.27778\n65117|0.48611\n65118|0.45833\n65119|0.77778\n65120|0.63889\n65121|0.54167\n65122|0.5\n65123|0.5\n65124|0.55556\n65125|0.63889\n65126|0.5\n65127|0.59722\n65128|0.59722\n65129|0.52778\n65130|0.54167\n65131|0.097222\n65132|0.5\n65133|0.55556\n65134|0.47222\n65135|0.44444\n65136|0.59722\n65137|0.79167\n65138|0.77778\n65139|0.65278\n65140|0.5\n65141|0.5\n65142|0.5\n65143|0.72222\n65144|0.76389\n65145|0.65278\n65146|0.5\n65147|0.5\n65148|0.5\n65149|0.45833\n65150|0.47222\n65151|0.76389\n65152|0.55556\n65153|0.56944\n65154|0.52778\n65155|0.5\n65156|0.5\n65157|0.55556\n65158|0.5\n65159|0.5\n65160|0.5\n65161|0.48611\n65162|0.5\n65163|0.55556\n65164|0.83333\n65165|0.5\n65166|0.75\n65167|0.88889\n65168|0.5\n65169|0.5\n65170|0.5\n65171|0.625\n65172|0.76389\n65173|0.79167\n65174|0.5\n65175|0.52778\n65176|0.5\n65177|0.5\n65178|0.5\n65179|0.41667\n65180|0.5\n65181|0.65278\n65182|0.5\n65183|0.55556\n65184|0.58333\n65185|0.90278\n65186|0.72222\n65187|0.72222\n65188|0.875\n65189|0.44444\n65190|0.27778\n65191|0.5\n65192|0.5\n65193|0.33333\n65194|0.41667\n65195|0.5\n65196|0.45833\n65197|0.43056\n65198|0.79167\n65199|0.66667\n65200|0.69444\n65201|0.66667\n65202|0.5\n65203|0.5\n65204|0.54167\n65205|0.5\n65206|0.51389\n65207|0.5\n65208|0.26389\n65209|0.45833\n65210|0.44444\n65211|0.58333\n65212|0.30556\n65213|0.5\n65214|0.43056\n65215|0.90278\n65216|0.41667\n65217|0.27778\n65218|0.48611\n65219|0.52778\n65220|0.54167\n65221|0.5\n65222|0.5\n65223|0.5\n65224|0.59722\n65225|0.41667\n65226|0.52778\n65227|0.70833\n65228|0.5\n65229|0.59722\n65230|0.5\n65231|0.75\n65232|0.83333\n65233|0.5\n65234|0.59722\n65235|0.5\n65236|0.51389\n65237|0.47222\n65238|0.27778\n65239|0.76389\n65240|0.51389\n65241|0.5\n65242|0.88889\n65243|0.95833\n65244|1\n65245|0.5\n65246|0.5\n65247|0.48611\n65248|0.66667\n65249|0.5\n65250|0.5\n65251|0.51389\n65252|0.5\n65253|0.51389\n65254|0.76389\n65255|0.66667\n65256|0.68056\n65257|0.38889\n65258|0.94444\n65259|0.86111\n65260|0.44444\n65261|0.77778\n65262|0.5\n65263|0.5\n65264|0.79167\n65265|0.58333\n65266|0.5\n65267|0.5\n65268|0.5\n65269|0.54167\n65270|0.38889\n65271|0.73611\n65272|0.5\n65273|0.51389\n65274|0.51389\n65275|0.5\n65276|0.68056\n65277|0.5\n65278|0.63889\n65279|0.5\n65280|0.5\n65281|0.58333\n65282|0.59722\n65283|0.58333\n65284|0.5\n65285|0.51389\n65286|0.61111\n65287|0.69444\n65288|0.86111\n65289|0.5\n65290|0.55556\n65291|0.5\n65292|0.5\n65293|0.5\n65294|0.72222\n65295|0.61111\n65296|0.81944\n65297|0.5\n65298|0.58333\n65299|0.51389\n65300|0.5\n65301|0.5\n65302|0.5\n65303|0.72222\n65304|0.5\n65305|0.51389\n65306|0.5\n65307|0.5\n65308|0.5\n65309|0.48611\n65310|0.73611\n65311|0.77778\n65312|0.75\n65313|0.72222\n65314|0.88889\n65315|0.79167\n65316|0.84722\n65317|0.81944\n65318|0.55556\n65319|0.63889\n65320|0.75\n65321|0.84722\n65322|0.80556\n65323|0.52778\n65324|0.59722\n65325|0.75\n65326|0.76389\n65327|0.81944\n65328|0.80556\n65329|0.86111\n65330|0.875\n65331|0.5\n65332|0.65278\n65333|0.55556\n65334|0.5\n65335|0.58333\n65336|0.56944\n65337|0.77778\n65338|0.63889\n65339|0.77778\n65340|0.77778\n65341|0.72222\n65342|0.5\n65343|0.625\n65344|0.5\n65345|0.5\n65346|0.51389\n65347|0.5\n65348|0.51389\n65349|0.44444\n65350|0.51389\n65351|0.77778\n65352|0.77778\n65353|0.63889\n65354|0.70833\n65355|0.72222\n65356|0.38889\n65357|0.58333\n65358|0.79167\n65359|0.47222\n65360|0.75\n65361|0.47222\n65362|0.66667\n65363|0.5\n65364|0.94444\n65365|0.56944\n65366|0.72222\n65367|0.55556\n65368|0.76389\n65369|0.48611\n65370|0.75\n65371|0.5\n65372|0.44444\n65373|0.41667\n65374|0.72222\n65375|0.66667\n65376|0.72222\n65377|0.47222\n65378|0.69444\n65379|0.44444\n65380|0.66667\n65381|0.70833\n65382|0.77778\n65383|0.76389\n65384|0.77778\n65385|0.69444\n65386|0.875\n65387|0.5\n65388|0.69444\n65389|0.70833\n65390|0.69444\n65391|0.94444\n65392|0.79167\n65393|0.51389\n65394|0.5\n65395|0.5\n65396|0.47222\n65397|0.56944\n65398|0.5\n65399|0.68056\n65400|0.61111\n65401|0.56944\n65402|0.90278\n65403|0.88889\n65404|0.5\n65405|0.80556\n65406|0.77778\n65407|0.70833\n65408|0.80556\n65409|0.88889\n65410|0.5\n65411|0.77778\n65412|0.66667\n65413|0.63889\n65414|0.61111\n65415|0.29167\n65416|0.5\n65417|0.44444\n65418|0.5\n65419|0.65278\n65420|0.65278\n65421|0.875\n65422|0.75\n65423|0.88889\n65424|0.81944\n65425|0.51389\n65426|0.79167\n65427|0.61111\n65428|0.58333\n65429|0.41667\n65430|0.22222\n65431|0.61111\n65432|0.69444\n65433|0.52778\n65434|0.33333\n65435|0.66667\n65436|0.83333\n65437|0.93056\n65438|0.69444\n65439|0.51389\n65440|0.5\n65441|0.5\n65442|0.72222\n65443|0.88889\n65444|0.5\n65445|0.54167\n65446|0.5\n65447|0.79167\n65448|0.27778\n65449|0.22222\n65450|0.5\n65451|0.51389\n65452|0.5\n65453|0.5\n65454|0.5\n65455|0.61111\n65456|0.72222\n65457|0.77778\n65458|0.5\n65459|0.80556\n65460|0.58333\n65461|0.5\n65462|0.5\n65463|0.5\n65464|0.68056\n65465|0.33333\n65466|0.51389\n65467|0.66667\n65468|0.5\n65469|0.5\n65470|0.55556\n65471|0.55556\n65472|0.73611\n65473|0.73611\n65474|0.83333\n65475|0.65278\n65476|0.61111\n65477|0.61111\n65478|0.90278\n65479|0.875\n65480|0.41667\n65481|0.51389\n65482|0.48611\n65483|0.63889\n65484|0.5\n65485|0.51389\n65486|0.5\n65487|0.5\n65488|0.5\n65489|0.5\n65490|0.65278\n65491|0.59722\n65492|0.83333\n65493|0.5\n65494|0.40278\n65495|0.63889\n65496|0.19444\n65497|0.16667\n65498|0.45833\n65499|0.58333\n65500|0.45833\n65501|0.625\n65502|0.56944\n65503|0.83333\n65504|0.88889\n65505|0.59722\n65506|0.94444\n65507|0.55556\n65508|0.41667\n65509|0.5\n65510|0.5\n65511|0.5\n65512|0.59722\n65513|0.5\n65514|0.875\n65515|0.5\n65516|0.51389\n65517|0.5\n65518|0.61111\n65519|0.66667\n65520|0.59722\n65521|0.70833\n65522|0.70833\n65523|0.81944\n65524|0.75\n65525|0.79167\n65526|0.58333\n65527|0.81944\n65528|0.59722\n65529|0.5\n65530|0.5\n65531|0.375\n65532|0.40278\n65533|0.31944\n65534|0.5\n65535|0.72222\n65536|0.5\n65537|0.91667\n65538|0.5\n65539|0.66667\n65540|0.61111\n65541|0.55556\n65542|0.69444\n65543|0.75\n65544|0.80556\n65545|0.65278\n65546|0.55556\n65547|0.52778\n65548|0.5\n65549|0.5\n65550|0.5\n65551|0.66667\n65552|0.5\n65553|0.70833\n65554|0.5\n65555|0.5\n65556|0.63889\n65557|0.76389\n65558|0.81944\n65559|0.51389\n65560|0.51389\n65561|0.5\n65562|0.5\n65563|0.55556\n65564|0.5\n65565|0.69444\n65566|0.80556\n65567|0.80556\n65568|0.68056\n65569|0.80556\n65570|0.77778\n65571|0.70833\n65572|0.54167\n65573|0.41667\n65574|0.5\n65575|0.84722\n65576|0.5\n65577|0.48611\n65578|0.63889\n65579|0.59722\n65580|0.5\n65581|0.23611\n65582|0.20833\n65583|0.45833\n65584|0.55556\n65585|0.56944\n65586|0.59722\n65587|0.41667\n65588|0.69444\n65589|0.65278\n65590|0.69444\n65591|0.55556\n65592|0.86111\n65593|0.5\n65594|0.76389\n65595|0.5\n65596|0.72222\n65597|0.75\n65598|0.59722\n65599|0.77778\n65600|0.55556\n65601|0.76389\n65602|0.59722\n65603|0.70833\n65604|0.5\n65605|0.31944\n65606|0.125\n65607|0.30556\n65608|0.94444\n65609|0.95833\n65610|0.52778\n65611|0.5\n65612|0.5\n65613|0.81944\n65614|0.88889\n65615|0.70833\n65616|0.5\n65617|0.5\n65618|0.68056\n65619|0.72222\n65620|0.48611\n65621|0.90278\n65622|0.5\n65623|0.81944\n65624|0.54167\n65625|0.5\n65626|0.5\n65627|0.41667\n65628|0.51389\n65629|0.5\n65630|0.5\n65631|0.5\n65632|0.66667\n65633|0.47222\n65634|0.5\n65635|0.68056\n65636|0.5\n65637|0.5\n65638|0.5\n65639|0.63889\n65640|0.55556\n65641|0.5\n65642|0.5\n65643|0.51389\n65644|0.5\n65645|0.51389\n65646|0.61111\n65647|0.52778\n65648|0.5\n65649|0.63889\n65650|0.5\n65651|0.44444\n65652|0.83333\n65653|0.52778\n65654|0.5\n65655|0.77778\n65656|0.80556\n65657|0.84722\n65658|0.76389\n65659|0.77778\n65660|0.63889\n65661|0.77778\n65662|0.38889\n65663|0.90278\n65664|0.5\n65665|0.5\n65666|0.48611\n65667|0.77778\n65668|0.5\n65669|0.38889\n65670|0.54167\n65671|0.58333\n65672|0.5\n65673|0.51389\n65674|0.51389\n65675|0.34722\n65676|0.5\n65677|0.52778\n65678|0.66667\n65679|0.47222\n65680|0.90278\n65681|0.77778\n65682|0.68056\n65683|0.29167\n65684|0.75\n65685|0.5\n65686|0.48611\n65687|0.44444\n65688|0.51389\n65689|0.61111\n65690|0.90278\n65691|0.59722\n65692|0.19444\n65693|0.44444\n65694|0.5\n65695|0.44444\n65696|0.63889\n65697|0.56944\n65698|0.51389\n65699|0.55556\n65700|0.63889\n65701|0.77778\n65702|0.73611\n65703|0.83333\n65704|0.81944\n65705|0.68056\n65706|0.79167\n65707|0.73611\n65708|0.68056\n65709|0.69444\n65710|0.5\n65711|0.47222\n65712|0.54167\n65713|0.5\n65714|0.5\n65715|0.5\n65716|0.5\n65717|0.44444\n65718|0.58333\n65719|0.56944\n65720|0.59722\n65721|0.51389\n65722|0.5\n65723|0.51389\n65724|0.80556\n65725|0.5\n65726|0.51389\n65727|0.5\n65728|0.81944\n65729|0.52778\n65730|0.55556\n65731|0.61111\n65732|0.48611\n65733|0.5\n65734|0.5\n65735|0.61111\n65736|0.33333\n65737|0.75\n65738|0.5\n65739|0.5\n65740|0.5\n65741|0.5\n65742|0.70833\n65743|0.79167\n65744|0.52778\n65745|0.5\n65746|0.5\n65747|0.75\n65748|0.72222\n65749|0.5\n65750|0.5\n65751|0.5\n65752|0.5\n65753|0.5\n65754|0.5\n65755|0.63889\n65756|0.5\n65757|0.38889\n65758|0.44444\n65759|0.5\n65760|0.5\n65761|0.5\n65762|0.5\n65763|0.5\n65764|0.54167\n65765|0.38889\n65766|0.5\n65767|0.5\n65768|0.5\n65769|0.66667\n65770|0.5\n65771|0.68056\n65772|0.875\n65773|0.58333\n65774|0.51389\n65775|0.5\n65776|0.5\n65777|0.5\n65778|0.5\n65779|0.55556\n65780|0.77778\n65781|0.70833\n65782|0.83333\n65783|0.75\n65784|0.65278\n65785|0.76389\n65786|0.66667\n65787|0.59722\n65788|0.5\n65789|0.94444\n65790|0.5\n65791|0.5\n65792|0.5\n65793|0.38889\n65794|0.51389\n65795|0.69444\n65796|0.48611\n65797|0.5\n65798|0.48611\n65799|0.58333\n65800|0.097222\n65801|0.22222\n65802|0.68056\n65803|0.47222\n65804|0.5\n65805|0.5\n65806|0.625\n65807|0.51389\n65808|0.75\n65809|0.72222\n65810|0.43056\n65811|0.5\n65812|0.5\n65813|0.68056\n65814|0.51389\n65815|0.5\n65816|0.81944\n65817|0.81944\n65818|0.72222\n65819|0.88889\n65820|0.76389\n65821|0.5\n65822|0.81944\n65823|0.70833\n65824|0.69444\n65825|0.66667\n65826|0.63889\n65827|0.5\n65828|0.5\n65829|0.5\n65830|0.5\n65831|0.54167\n65832|0.5\n65833|0.5\n65834|0.5\n65835|0.79167\n65836|0.93056\n65837|0.5\n65838|0.68056\n65839|0.63889\n65840|0.5\n65841|0.72222\n65842|0.47222\n65843|0.33333\n65844|0.45833\n65845|0.5\n65846|0.84722\n65847|0.5\n65848|0.5\n65849|0.43056\n65850|0.94444\n65851|0.68056\n65852|0.83333\n65853|0.84722\n65854|0.73611\n65855|0.73611\n65856|0.79167\n65857|0.86111\n65858|0.83333\n65859|1\n65860|0.81944\n65861|0.86111\n65862|0.66667\n65863|0.94444\n65864|0.5\n65865|0.52778\n65866|0.69444\n65867|0.51389\n65868|0.51389\n65869|0.51389\n65870|0.72222\n65871|0.5\n65872|0.83333\n65873|0.5\n65874|0.5\n65875|0.61111\n65876|0.5\n65877|0.5\n65878|0.5\n65879|0.5\n65880|0.5\n65881|0.5\n65882|0.5\n65883|0.5\n65884|0.61111\n65885|0.59722\n65886|0.80556\n65887|0.52778\n65888|0.43056\n65889|0.47222\n65890|0.5\n65891|0.61111\n65892|0.65278\n65893|0.55556\n65894|0.73611\n65895|0.5\n65896|0.54167\n65897|0.58333\n65898|0.5\n65899|0.5\n65900|0.5\n65901|0.5\n65902|0.69444\n65903|0.72222\n65904|0.45833\n65905|0.76389\n65906|0.63889\n65907|0.58333\n65908|0.5\n65909|0.55556\n65910|0.80556\n65911|0.88889\n65912|0.72222\n65913|0.5\n65914|0.5\n65915|0.5\n65916|0.55556\n65917|0.56944\n65918|0.5\n65919|0.5\n65920|0.80556\n65921|0.5\n65922|0.5\n65923|0.75\n65924|0.5\n65925|0.61111\n65926|0.75\n65927|0.69444\n65928|0.55556\n65929|0.61111\n65930|0.76389\n65931|0.48611\n65932|0.68056\n65933|0.69444\n65934|0.80556\n65935|0.94444\n65936|0.66667\n65937|0.77778\n65938|0.55556\n65939|0.44444\n65940|0.47222\n65941|0.625\n65942|0.68056\n65943|0.5\n65944|0.75\n65945|0.5\n65946|0.5\n65947|0.5\n65948|0.97222\n65949|0.5\n65950|0.5\n65951|0.5\n65952|0.5\n65953|0.75\n65954|0.625\n65955|0.33333\n65956|0.5\n65957|0.48611\n65958|0.40278\n65959|0.5\n65960|0.79167\n65961|0.73611\n65962|0.83333\n65963|0.76389\n65964|0.625\n65965|0.5\n65966|0.52778\n65967|0.72222\n65968|0.61111\n65969|0.72222\n65970|0.5\n65971|0.5\n65972|0.5\n65973|0.52778\n65974|0.5\n65975|0.66667\n65976|0.5\n65977|0.63889\n65978|0.65278\n65979|0.76389\n65980|0.51389\n65981|0.5\n65982|0.52778\n65983|0.51389\n65984|0.69444\n65985|0.58333\n65986|0.58333\n65987|0.76389\n65988|0.95833\n65989|0.5\n65990|0.47222\n65991|0.5\n65992|0.55556\n65993|0.5\n65994|0.5\n65995|0.5\n65996|0.5\n65997|0.80556\n65998|0.5\n65999|0.5\n66000|0.55556\n66001|0.44444\n66002|0.61111\n66003|0.63889\n66004|0.5\n66005|0.5\n66006|0.5\n66007|0.5\n66008|0.66667\n66009|0.33333\n66010|0.40278\n66011|0.5\n66012|0.5\n66013|0.90278\n66014|0.54167\n66015|0.5\n66016|0.5\n66017|0.5\n66018|0.5\n66019|0.5\n66020|0.5\n66021|0.5\n66022|0.5\n66023|0.26389\n66024|0.51389\n66025|0.5\n66026|0.34722\n66027|0.55556\n66028|0.61111\n66029|0.5\n66030|0.5\n66031|0.27778\n66032|0.33333\n66033|0.27778\n66034|0.73611\n66035|0.68056\n66036|0.73611\n66037|0.88889\n66038|0.75\n66039|0.55556\n66040|0.5\n66041|0.44444\n66042|0.5\n66043|0.84722\n66044|0.5\n66045|0.5\n66046|0.48611\n66047|0.94444\n66048|0.61111\n66049|0.94444\n66050|0.43056\n66051|0.51389\n66052|0.51389\n66053|0.5\n66054|0.5\n66055|0.48611\n66056|0.66667\n66057|0.5\n66058|0.56944\n66059|0.48611\n66060|0.68056\n66061|0.69444\n66062|0.69444\n66063|0.52778\n66064|0.66667\n66065|0.5\n66066|0.56944\n66067|0.5\n66068|0.75\n66069|0.81944\n66070|0.5\n66071|0.90278\n66072|0.94444\n66073|0.5\n66074|0.48611\n66075|0.63889\n66076|0.45833\n66077|0.80556\n66078|0.68056\n66079|0.83333\n66080|0.83333\n66081|0.5\n66082|0.5\n66083|0.51389\n66084|0.93056\n66085|0.5\n66086|0.5\n66087|0.63889\n66088|0.54167\n66089|0.5\n66090|0.75\n66091|0.43056\n66092|0.27778\n66093|0.66667\n66094|0.83333\n66095|0.5\n66096|0.5\n66097|0.69444\n66098|0.54167\n66099|0.5\n66100|0.5\n66101|0.625\n66102|0.55556\n66103|0.5\n66104|0.66667\n66105|0.66667\n66106|0.22222\n66107|0.48611\n66108|0.43056\n66109|0.61111\n66110|0.75\n66111|0.33333\n66112|0.33333\n66113|0.81944\n66114|0.45833\n66115|0.45833\n66116|0.38889\n66117|0.52778\n66118|0.55556\n66119|0.79167\n66120|0.5\n66121|0.5\n66122|0.83333\n66123|0.75\n66124|0.68056\n66125|0.86111\n66126|0.81944\n66127|0.73611\n66128|0.73611\n66129|0.5\n66130|0.80556\n66131|0.22222\n66132|0.48611\n66133|0.34722\n66134|0.51389\n66135|0.88889\n66136|0.80556\n66137|0.65278\n66138|0.5\n66139|0.72222\n66140|0.5\n66141|0.55556\n66142|0.69444\n66143|0.88889\n66144|0.66667\n66145|0.31944\n66146|0.31944\n66147|0.66667\n66148|0.68056\n66149|0.20833\n66150|0.66667\n66151|0.73611\n66152|0.5\n66153|0.79167\n66154|0.69444\n66155|0.59722\n66156|0.72222\n66157|0.88889\n66158|0.55556\n66159|0.79167\n66160|0.69444\n66161|0.72222\n66162|0.77778\n66163|0.72222\n66164|0.80556\n66165|0.94444\n66166|0.93056\n66167|0.5\n66168|0.80556\n66169|0.63889\n66170|0.88889\n66171|0.47222\n66172|0.5\n66173|0.72222\n66174|0.76389\n66175|0.72222\n66176|0.61111\n66177|0.70833\n66178|0.76389\n66179|0.73611\n66180|0.72222\n66181|0.88889\n66182|0.86111\n66183|0.69444\n66184|0.5\n66185|0.90278\n66186|0.81944\n66187|0.84722\n66188|0.77778\n66189|0.73611\n66190|0.65278\n66191|0.83333\n66192|0.5\n66193|0.5\n66194|0.5\n66195|0.73611\n66196|0.77778\n66197|0.5\n66198|0.5\n66199|0.625\n66200|0.5\n66201|0.83333\n66202|0.59722\n66203|0.59722\n66204|0.54167\n66205|0.77778\n66206|0.79167\n66207|0.48611\n66208|0.86111\n66209|0.81944\n66210|0.13889\n66211|0.58333\n66212|0.625\n66213|0.5\n66214|0.5\n66215|0.5\n66216|0.52778\n66217|0.5\n66218|0.58333\n66219|0.5\n66220|0.68056\n66221|0.5\n66222|0.5\n66223|0.625\n66224|0.51389\n66225|0.5\n66226|0.65278\n66227|0.83333\n66228|0.5\n66229|0.45833\n66230|0.5\n66231|0.5\n66232|0.5\n66233|0.5\n66234|0.5\n66235|0.83333\n66236|0.88889\n66237|0.36111\n66238|0.34722\n66239|0.47222\n66240|0.63889\n66241|0.45833\n66242|0.54167\n66243|0.36111\n66244|0.65278\n66245|0.55556\n66246|0.88889\n66247|0.51389\n66248|0.83333\n66249|0.58333\n66250|0.75\n66251|0.5\n66252|0.56944\n66253|0.43056\n66254|0.27778\n66255|0.375\n66256|0.65278\n66257|0.375\n66258|0.40278\n66259|0.18056\n66260|0.68056\n66261|0.75\n66262|0.5\n66263|0.58333\n66264|0.5\n66265|0.55556\n66266|0.59722\n66267|0.70833\n66268|0.65278\n66269|0.55556\n66270|0.43056\n66271|0.66667\n66272|0.33333\n66273|0.54167\n66274|0.65278\n66275|0.61111\n66276|0.5\n66277|0.29167\n66278|0.75\n66279|0.69444\n66280|0.38889\n66281|0.44444\n66282|0.55556\n66283|0.63889\n66284|0.44444\n66285|0.61111\n66286|0.80556\n66287|0.29167\n66288|0.66667\n66289|0.27778\n66290|0.5\n66291|0.375\n66292|0.56944\n66293|0.83333\n66294|0.83333\n66295|0.77778\n66296|0.93056\n66297|0.72222\n66298|0.94444\n66299|0.77778\n66300|0.80556\n66301|0.61111\n66302|0.75\n66303|0.84722\n66304|0.73611\n66305|0.81944\n66306|0.80556\n66307|0.40278\n66308|0.45833\n66309|0.52778\n66310|0.79167\n66311|0.59722\n66312|0.72222\n66313|0.5\n66314|0.72222\n66315|0.77778\n66316|0.86111\n66317|0.41667\n66318|0.43056\n66319|0.41667\n66320|0.51389\n66321|0.20833\n66322|0.51389\n66323|0.73611\n66324|0.61111\n66325|0.90278\n66326|0.5\n66327|0.61111\n66328|0.73611\n66329|0.56944\n66330|0.5\n66331|0.90278\n66332|0.79167\n66333|0.47222\n66334|0.375\n66335|0.80556\n66336|0.83333\n66337|0.875\n66338|0.61111\n66339|0.66667\n66340|0.5\n66341|0.69444\n66342|0.51389\n66343|0.81944\n66344|0.66667\n66345|0.69444\n66346|0.38889\n66347|0.81944\n66348|0.44444\n66349|0.88889\n66350|0.20833\n66351|0.95833\n66352|0.94444\n66353|0.44444\n66354|0.86111\n66355|0.5\n66356|0.79167\n66357|0.77778\n66358|0.5\n66359|0.83333\n66360|0.5\n66361|0.79167\n66362|0.375\n66363|0.79167\n66364|0.81944\n66365|0.66667\n66366|0.5\n66367|0.56944\n66368|0.5\n66369|0.77778\n66370|0.75\n66371|0.75\n66372|0.5\n66373|0.70833\n66374|0.5\n66375|0.91667\n66376|0.63889\n66377|0.63889\n66378|0.65278\n66379|0.27778\n66380|0.40278\n66381|0.55556\n66382|0.80556\n66383|0.5\n66384|0.51389\n66385|0.66667\n66386|0.5\n66387|0.51389\n66388|0.5\n66389|0.51389\n66390|0.56944\n66391|0.5\n66392|0.47222\n66393|0.33333\n66394|0.59722\n66395|0.72222\n66396|0.45833\n66397|0.95833\n66398|0.98611\n66399|0.5\n66400|0.63889\n66401|0.41667\n66402|0.94444\n66403|0.95833\n66404|0.90278\n66405|0.94444\n66406|0.68056\n66407|0.44444\n66408|0.69444\n66409|0.65278\n66410|0.86111\n66411|0.72222\n66412|0.77778\n66413|0.66667\n66414|0.76389\n66415|0.73611\n66416|0.76389\n66417|0.52778\n66418|0.45833\n66419|0.69444\n66420|0.61111\n66421|0.83333\n66422|0.75\n66423|0.625\n66424|0.79167\n66425|0.55556\n66426|0.77778\n66427|0.86111\n66428|0.88889\n66429|0.91667\n66430|0.48611\n66431|0.5\n66432|0.5\n66433|0.5\n66434|0.5\n66435|0.56944\n66436|0.59722\n66437|0.5\n66438|0.83333\n66439|0.55556\n66440|0.51389\n66441|0.44444\n66442|0.77778\n66443|0.52778\n66444|0.54167\n66445|0.73611\n66446|0.79167\n66447|0.5\n66448|0.61111\n66449|0.5\n66450|0.51389\n66451|0.875\n66452|0.55556\n66453|0.5\n66454|0.5\n66455|0.5\n66456|0.68056\n66457|0.5\n66458|0.5\n66459|0.80556\n66460|0.48611\n66461|0.84722\n66462|0.72222\n66463|0.81944\n66464|0.88889\n66465|0.91667\n66466|0.77778\n66467|0.90278\n66468|0.75\n66469|0.56944\n66470|0.72222\n66471|0.70833\n66472|0.88889\n66473|0.77778\n66474|0.91667\n66475|0.77778\n66476|0.83333\n66477|0.77778\n66478|0.83333\n66479|0.77778\n66480|0.84722\n66481|0.93056\n66482|0.98611\n66483|0.81944\n66484|0.81944\n66485|0.80556\n66486|0.94444\n66487|0.73611\n66488|0.84722\n66489|0.68056\n66490|0.86111\n66491|0.70833\n66492|0.81944\n66493|0.47222\n66494|0.38889\n66495|0.38889\n66496|0.43056\n66497|0.63889\n66498|0.29167\n66499|0.81944\n66500|0.76389\n66501|0.83333\n66502|0.76389\n66503|0.79167\n66504|0.79167\n66505|0.86111\n66506|0.66667\n66507|0.77778\n66508|0.25\n66509|0.73611\n66510|0.51389\n66511|0.79167\n66512|0.68056\n66513|0.93056\n66514|0.90278\n66515|0.27778\n66516|0.875\n66517|0.77778\n66518|0.52778\n66519|0.83333\n66520|0.54167\n66521|0.80556\n66522|0.72222\n66523|0.69444\n66524|0.63889\n66525|0.44444\n66526|0.70833\n66527|0.76389\n66528|0.77778\n66529|0.65278\n66530|0.70833\n66531|0.72222\n66532|0.72222\n66533|0.625\n66534|0.5\n66535|0.875\n66536|0.29167\n66537|0.38889\n66538|0.375\n66539|0.625\n66540|0.72222\n66541|0.81944\n66542|0.625\n66543|0.58333\n66544|0.79167\n66545|0.77778\n66546|0.81944\n66547|0.77778\n66548|0.73611\n66549|0.84722\n66550|0.70833\n66551|0.70833\n66552|0.43056\n66553|0.61111\n66554|0.72222\n66555|0.77778\n66556|0.88889\n66557|0.77778\n66558|0.75\n66559|0.23611\n66560|0.31944\n66561|0.30556\n66562|0.31944\n66563|0.27778\n66564|0.44444\n66565|0.47222\n66566|0.52778\n66567|0.81944\n66568|0.91667\n66569|0.69444\n66570|0.84722\n66571|0.31944\n66572|0.63889\n66573|0.41667\n66574|0.38889\n66575|0.52778\n66576|0.61111\n66577|0.73611\n66578|0.48611\n66579|0.55556\n66580|0.56944\n66581|0.73611\n66582|0.69444\n66583|0.52778\n66584|0.58333\n66585|0.63889\n66586|0.69444\n66587|0.79167\n66588|0.66667\n66589|0.83333\n66590|0.80556\n66591|0.69444\n66592|0.52778\n66593|0.88889\n66594|0.83333\n66595|0.83333\n66596|0.45833\n66597|0.63889\n66598|0.5\n66599|0.59722\n66600|0.47222\n66601|0.44444\n66602|0.33333\n66603|0.34722\n66604|0.51389\n66605|0.68056\n66606|0.70833\n66607|0.61111\n66608|0.65278\n66609|0.73611\n66610|0.61111\n66611|0.72222\n66612|0.81944\n66613|0.79167\n66614|0.76389\n66615|0.56944\n66616|0.77778\n66617|0.90278\n66618|0.38889\n66619|0.375\n66620|0.44444\n66621|0.47222\n66622|0.68056\n66623|0.43056\n66624|0.33333\n66625|0.55556\n66626|0.48611\n66627|0.36111\n66628|0.5\n66629|0.45833\n66630|0.56944\n66631|0.625\n66632|0.56944\n66633|0.15278\n66634|0.083333\n66635|0.22222\n66636|0.40278\n66637|0.29167\n66638|0.29167\n66639|0.40278\n66640|0.47222\n66641|0.68056\n66642|0.40278\n66643|0.30556\n66644|0.44444\n66645|0.69444\n66646|0.66667\n66647|0.51389\n66648|0.61111\n66649|0.29167\n66650|0.69444\n66651|0.73611\n66652|0.76389\n66653|0.97222\n66654|0.61111\n66655|0.58333\n66656|0.52778\n66657|0.79167\n66658|0.84722\n66659|0.44444\n66660|0.52778\n66661|0.5\n66662|0.51389\n66663|0.68056\n66664|0.5\n66665|0.38889\n66666|0.51389\n66667|0.65278\n66668|0.70833\n66669|0.75\n66670|0.65278\n66671|0.88889\n66672|0.86111\n66673|0.875\n66674|0.83333\n66675|0.77778\n66676|0.68056\n66677|0.90278\n66678|0.69444\n66679|0.79167\n66680|0.72222\n66681|0.72222\n66682|0.84722\n66683|0.72222\n66684|0.68056\n66685|0.59722\n66686|0.41667\n66687|0.61111\n66688|0.72222\n66689|0.72222\n66690|0.73611\n66691|0.31944\n66692|0.77778\n66693|0.22222\n66694|0.27778\n66695|0.5\n66696|0.58333\n66697|0.66667\n66698|0.73611\n66699|0.79167\n66700|0.63889\n66701|0.41667\n66702|0.38889\n66703|0.375\n66704|0.44444\n66705|0.59722\n66706|0.40278\n66707|0.73611\n66708|0.73611\n66709|0.72222\n66710|0.70833\n66711|0.68056\n66712|0.45833\n66713|0.72222\n66714|0.68056\n66715|0.72222\n66716|0.72222\n66717|0.73611\n66718|0.73611\n66719|0.80556\n66720|0.48611\n66721|0.61111\n66722|0.65278\n66723|0.66667\n66724|0.63889\n66725|0.66667\n66726|0.70833\n66727|0.72222\n66728|0.52778\n66729|0.90278\n66730|0.72222\n66731|0.5\n66732|0.66667\n66733|0.52778\n66734|0.70833\n66735|0.63889\n66736|0.625\n66737|0.77778\n66738|0.81944\n66739|0.55556\n66740|0.5\n66741|0.63889\n66742|0.66667\n66743|0.66667\n66744|0.95833\n66745|0.44444\n66746|0.45833\n66747|0.43056\n66748|0.70833\n66749|0.45833\n66750|0.27778\n66751|0.16667\n66752|0.51389\n66753|0.33333\n66754|0.73611\n66755|0.59722\n66756|0.44444\n66757|0.375\n66758|0.77778\n66759|0.52778\n66760|0.36111\n66761|0.41667\n66762|0.51389\n66763|0.66667\n66764|0.73611\n66765|0.5\n66766|0.54167\n66767|0.34722\n66768|0.75\n66769|0.66667\n66770|0.83333\n66771|0.66667\n66772|0.44444\n66773|0.41667\n66774|0.43056\n66775|0.84722\n66776|0.65278\n66777|0.94444\n66778|0.77778\n66779|0.83333\n66780|0.80556\n66781|0.56944\n66782|0.75\n66783|0.63889\n66784|0.375\n66785|0.22222\n66786|0.375\n66787|0.43056\n66788|0.63889\n66789|0.69444\n66790|0.58333\n66791|0.73611\n66792|0.77778\n66793|0.73611\n66794|0.13889\n66795|0.84722\n66796|0.5\n66797|0.59722\n66798|0.70833\n66799|0.45833\n66800|0.56944\n66801|0.66667\n66802|0.5\n66803|0.61111\n66804|0.72222\n66805|0.5\n66806|0.79167\n66807|0.63889\n66808|0.83333\n66809|0.51389\n66810|0.75\n66811|0.80556\n66812|0.65278\n66813|0.48611\n66814|0.58333\n66815|0.66667\n66816|0.88889\n66817|0.69444\n66818|0.55556\n66819|0.54167\n66820|0.72222\n66821|0.77778\n66822|0.47222\n66823|0.44444\n66824|0.5\n66825|0.5\n66826|0.68056\n66827|0.76389\n66828|0.59722\n66829|0.38889\n66830|0.51389\n66831|0.55556\n66832|0.5\n66833|0.5\n66834|0.51389\n66835|0.48611\n66836|0.66667\n66837|0.51389\n66838|0.51389\n66839|0.70833\n66840|0.65278\n66841|0.86111\n66842|0.77778\n66843|0.61111\n66844|0.58333\n66845|0.5\n66846|0.5\n66847|0.5\n66848|0.80556\n66849|0.58333\n66850|0.61111\n66851|0.61111\n66852|0.54167\n66853|0.34722\n66854|0.34722\n66855|0.55556\n66856|0.58333\n66857|0.5\n66858|0.5\n66859|0.5\n66860|0.5\n66861|0.5\n66862|0.69444\n66863|0.5\n66864|0.23611\n66865|0.65278\n66866|0.5\n66867|0.51389\n66868|0.61111\n66869|0.5\n66870|0.88889\n66871|0.38889\n66872|0.5\n66873|0.51389\n66874|0.51389\n66875|0.5\n66876|0.59722\n66877|0.5\n66878|0.45833\n66879|0.5\n66880|0.61111\n66881|0.5\n66882|0.59722\n66883|0.5\n66884|0.77778\n66885|0.625\n66886|0.58333\n66887|0.5\n66888|0.5\n66889|0.52778\n66890|0.5\n66891|0.55556\n66892|0.5\n66893|0.5\n66894|0.5\n66895|0.52778\n66896|0.48611\n66897|0.5\n66898|0.5\n66899|0.5\n66900|0.5\n66901|0.5\n66902|0.73611\n66903|0.5\n66904|0.5\n66905|0.73611\n66906|0.54167\n66907|0.5\n66908|0.43056\n66909|0.5\n66910|0.5\n66911|0.59722\n66912|0.5\n66913|0.5\n66914|0.58333\n66915|0.51389\n66916|0.5\n66917|0.5\n66918|0.51389\n66919|0.73611\n66920|0.5\n66921|0.75\n66922|0.5\n66923|0.5\n66924|0.45833\n66925|0.5\n66926|0.56944\n66927|0.5\n66928|0.66667\n66929|0.5\n66930|0.5\n66931|0.52778\n66932|0.83333\n66933|0.5\n66934|0.51389\n66935|0.5\n66936|0.5\n66937|0.45833\n66938|0.51389\n66939|0.66667\n66940|0.55556\n66941|0.65278\n66942|0.5\n66943|0.5\n66944|0.55556\n66945|0.38889\n66946|0.55556\n66947|0.5\n66948|0.5\n66949|0.51389\n66950|0.5\n66951|0.51389\n66952|0.5\n66953|0.51389\n66954|0.5\n66955|0.5\n66956|0.5\n66957|0.44444\n66958|0.65278\n66959|0.5\n66960|0.5\n66961|0.55556\n66962|0.88889\n66963|0.5\n66964|0.5\n66965|0.5\n66966|0.5\n66967|0.5\n66968|0.5\n66969|0.55556\n66970|0.375\n66971|0.70833\n66972|0.5\n66973|0.58333\n66974|0.73611\n66975|0.76389\n66976|0.20833\n66977|0.16667\n66978|0.65278\n66979|0.73611\n66980|0.73611\n66981|0.5\n66982|0.5\n66983|0.52778\n66984|0.56944\n66985|0.51389\n66986|0.5\n66987|0.5\n66988|0.43056\n66989|0.5\n66990|0.5\n66991|0.48611\n66992|0.54167\n66993|0.65278\n66994|0.51389\n66995|0.61111\n66996|0.65278\n66997|0.625\n66998|0.56944\n66999|0.51389\n67000|0.5\n67001|0.55556\n67002|0.5\n67003|0.34722\n67004|0.5\n67005|0.72222\n67006|0.5\n67007|0.625\n67008|0.72222\n67009|0.61111\n67010|0.44444\n67011|0.5\n67012|0.5\n67013|0.88889\n67014|0.88889\n67015|0.79167\n67016|0.80556\n67017|0.84722\n67018|0.76389\n67019|0.83333\n67020|0.73611\n67021|0.77778\n67022|0.80556\n67023|0.5\n67024|0.5\n67025|0.56944\n67026|0.38889\n67027|0.5\n67028|0.5\n67029|0.77778\n67030|0.80556\n67031|0.5\n67032|0.5\n67033|0.59722\n67034|0.45833\n67035|0.80556\n67036|0.5\n67037|0.55556\n67038|0.95833\n67039|0.56944\n67040|0.81944\n67041|0.83333\n67042|0.69444\n67043|0.5\n67044|0.47222\n67045|0.51389\n67046|0.55556\n67047|0.5\n67048|0.59722\n67049|0.5\n67050|0.5\n67051|0.94444\n67052|0.77778\n67053|0.84722\n67054|0.51389\n67055|0.5\n67056|0.51389\n67057|0.5\n67058|0.5\n67059|0.5\n67060|0.5\n67061|0.5\n67062|0.5\n67063|0.625\n67064|0.5\n67065|0.51389\n67066|0.5\n67067|0.59722\n67068|0.68056\n67069|0.56944\n67070|0.66667\n67071|0.5\n67072|0.5\n67073|0.5\n67074|0.5\n67075|0.5\n67076|0.5\n67077|0.5\n67078|0.55556\n67079|0.93056\n67080|0.91667\n67081|0.5\n67082|0.5\n67083|0.5\n67084|0.5\n67085|0.5\n67086|0.5\n67087|0.72222\n67088|0.76389\n67089|0.68056\n67090|0.84722\n67091|0.68056\n67092|0.66667\n67093|0.51389\n67094|0.5\n67095|0.5\n67096|0.5\n67097|0.86111\n67098|0.72222\n67099|0.875\n67100|0.27778\n67101|0.125\n67102|0.19444\n67103|0.26389\n67104|0.041667\n67105|0.5\n67106|0.61111\n67107|0.86111\n67108|0.86111\n67109|0.5\n67110|0.5\n67111|0.5\n67112|0.54167\n67113|0.23611\n67114|0.5\n67115|0.66667\n67116|0.5\n67117|0.5\n67118|0.5\n67119|0.5\n67120|0.5\n67121|0.51389\n67122|0.51389\n67123|0.5\n67124|0.5\n67125|0.5\n67126|0.5\n67127|0.5\n67128|0.5\n67129|0.70833\n67130|0.5\n67131|0.5\n67132|0.59722\n67133|0.44444\n67134|0.63889\n67135|0.76389\n67136|0.625\n67137|0.58333\n67138|0.55556\n67139|0.83333\n67140|0.81944\n67141|0.5\n67142|0.5\n67143|0.5\n67144|0.48611\n67145|0.45833\n67146|0.83333\n67147|0.79167\n67148|0.875\n67149|0.51389\n67150|0.58333\n67151|0.5\n67152|0.36111\n67153|0.41667\n67154|0.41667\n67155|0.63889\n67156|0.70833\n67157|0.52778\n67158|0.77778\n67159|0.81944\n67160|0.33333\n67161|0.51389\n67162|0.61111\n67163|0.59722\n67164|0.86111\n67165|0.875\n67166|0.73611\n67167|0.83333\n67168|0.51389\n67169|0.69444\n67170|0.625\n67171|0.81944\n67172|0.54167\n67173|0.44444\n67174|0.51389\n67175|0.76389\n67176|0.5\n67177|0.875\n67178|0.97222\n67179|0.83333\n67180|0.88889\n67181|0.56944\n67182|0.59722\n67183|0.5\n67184|0.75\n67185|0.55556\n67186|0.79167\n67187|0.79167\n67188|0.75\n67189|0.5\n67190|0.5\n67191|0.5\n67192|0.5\n67193|0.5\n67194|0.61111\n67195|0.61111\n67196|0.69444\n67197|0.61111\n67198|0.44444\n67199|0.56944\n67200|0.55556\n67201|0.63889\n67202|0.5\n67203|0.61111\n67204|0.5\n67205|0.5\n67206|0.5\n67207|0.5\n67208|0.5\n67209|0.5\n67210|0.5\n67211|0.375\n67212|0.52778\n67213|0.5\n67214|0.5\n67215|0.5\n67216|0.66667\n67217|0.68056\n67218|0.47222\n67219|0.38889\n67220|0.76389\n67221|0.94444\n67222|0.55556\n67223|0.80556\n67224|0.58333\n67225|0.81944\n67226|0.5\n67227|0.72222\n67228|0.22222\n67229|0.48611\n67230|0.44444\n67231|0.75\n67232|0.72222\n67233|0.72222\n67234|0.61111\n67235|0.63889\n67236|0.5\n67237|0.16667\n67238|0.51389\n67239|0.83333\n67240|0.56944\n67241|0.83333\n67242|0.80556\n67243|0.80556\n67244|0.84722\n67245|0.77778\n67246|0.61111\n67247|0.75\n67248|0.58333\n67249|0.70833\n67250|0.59722\n67251|0.51389\n67252|0.72222\n67253|0.66667\n67254|0.88889\n67255|0.41667\n67256|0.66667\n67257|0.5\n67258|0.76389\n67259|0.51389\n67260|0.47222\n67261|0.61111\n67262|0.73611\n67263|0.59722\n67264|0.70833\n67265|0.54167\n67266|0.66667\n67267|0.5\n67268|0.31944\n67269|0.27778\n67270|0.375\n67271|0.43056\n67272|0.51389\n67273|0.77778\n67274|0.52778\n67275|0.84722\n67276|0.81944\n67277|0.66667\n67278|0.84722\n67279|0.63889\n67280|0.73611\n67281|0.51389\n67282|0.72222\n67283|0.5\n67284|0.48611\n67285|0.52778\n67286|0.5\n67287|0.5\n67288|0.61111\n67289|0.33333\n67290|0.56944\n67291|0.5\n67292|0.56944\n67293|0.5\n67294|0.51389\n67295|0.45833\n67296|0.5\n67297|0.51389\n67298|0.47222\n67299|0.54167\n67300|0.5\n67301|0.5\n67302|0.44444\n67303|0.52778\n67304|0.51389\n67305|0.38889\n67306|0.44444\n67307|0.44444\n67308|0.5\n67309|0.5\n67310|0.5\n67311|0.5\n67312|0.51389\n67313|0.5\n67314|0.5\n67315|0.5\n67316|0.5\n67317|0.31944\n67318|0.36111\n67319|0.5\n67320|0.625\n67321|0.94444\n67322|0.77778\n67323|0.66667\n67324|0.70833\n67325|0.72222\n67326|0.80556\n67327|0.61111\n67328|0.5\n67329|0.5\n67330|0.5\n67331|0.51389\n67332|0.51389\n67333|0.51389\n67334|0.5\n67335|0.45833\n67336|0.5\n67337|0.54167\n67338|0.5\n67339|0.83333\n67340|0.5\n67341|0.625\n67342|0.59722\n67343|0.56944\n67344|0.44444\n67345|0.5\n67346|0.52778\n67347|0.5\n67348|0.51389\n67349|0.5\n67350|0.5\n67351|0.80556\n67352|0.5\n67353|0.5\n67354|0.55556\n67355|0.5\n67356|0.25\n67357|0.45833\n67358|0.51389\n67359|0.65278\n67360|0.59722\n67361|0.51389\n67362|0.77778\n67363|0.625\n67364|0.76389\n67365|0.72222\n67366|0.5\n67367|0.51389\n67368|0.48611\n67369|0.83333\n67370|0.65278\n67371|0.54167\n67372|0.72222\n67373|0.81944\n67374|0.72222\n67375|0.5\n67376|0.5\n67377|0.5\n67378|0.5\n67379|0.43056\n67380|0.75\n67381|0.75\n67382|0.61111\n67383|0.59722\n67384|0.47222\n67385|0.70833\n67386|0.59722\n67387|0.5\n67388|0.52778\n67389|0.5\n67390|0.5\n67391|0.73611\n67392|0.72222\n67393|0.5\n67394|0.5\n67395|0.51389\n67396|0.5\n67397|0.77778\n67398|0.5\n67399|0.5\n67400|0.5\n67401|0.5\n67402|0.51389\n67403|0.5\n67404|0.48611\n67405|0.5\n67406|0.5\n67407|0.875\n67408|0.73611\n67409|0.58333\n67410|0.44444\n67411|0.19444\n67412|0.27778\n67413|0.22222\n67414|0.11111\n67415|0.58333\n67416|0.5\n67417|0.20833\n67418|0.52778\n67419|0.61111\n67420|0.68056\n67421|0.5\n67422|0.5\n67423|0.51389\n67424|0.5\n67425|0.51389\n67426|0.51389\n67427|0.51389\n67428|0.79167\n67429|0.75\n67430|0.84722\n67431|0.66667\n67432|0.69444\n67433|0.5\n67434|0.66667\n67435|0.79167\n67436|0.5\n67437|0.40278\n67438|0.44444\n67439|0.5\n67440|0.41667\n67441|0.40278\n67442|0.5\n67443|0.61111\n67444|0.5\n67445|0.5\n67446|0.5\n67447|0.40278\n67448|0.75\n67449|0.81944\n67450|0.95833\n67451|0.76389\n67452|0.90278\n67453|0.94444\n67454|0.5\n67455|0.5\n67456|0.5\n67457|0.5\n67458|0.48611\n67459|0.43056\n67460|0.5\n67461|0.5\n67462|0.5\n67463|0.65278\n67464|0.52778\n67465|0.5\n67466|0.5\n67467|0.5\n67468|0.58333\n67469|0.51389\n67470|0.80556\n67471|0.79167\n67472|0.55556\n67473|0.61111\n67474|0.5\n67475|0.84722\n67476|0.5\n67477|0.5\n67478|0.44444\n67479|0.36111\n67480|0.34722\n67481|0.33333\n67482|0.66667\n67483|0.66667\n67484|0.55556\n67485|0.375\n67486|0.59722\n67487|0.47222\n67488|0.61111\n67489|0.65278\n67490|0.48611\n67491|0.41667\n67492|0.44444\n67493|0.69444\n67494|0.77778\n67495|0.48611\n67496|0.54167\n67497|0.66667\n67498|0.81944\n67499|0.70833\n67500|0.79167\n67501|0.5\n67502|0.54167\n67503|0.58333\n67504|0.79167\n67505|0.5\n67506|0.77778\n67507|0.55556\n67508|0.5\n67509|0.5\n67510|0.5\n67511|0.5\n67512|0.66667\n67513|0.51389\n67514|0.625\n67515|0.5\n67516|0.51389\n67517|0.5\n67518|0.79167\n67519|0.81944\n67520|0.52778\n67521|0.93056\n67522|0.5\n67523|0.5\n67524|0.5\n67525|0.5\n67526|0.5\n67527|0.55556\n67528|0.43056\n67529|0.51389\n67530|0.72222\n67531|0.51389\n67532|0.55556\n67533|0.5\n67534|0.48611\n67535|0.52778\n67536|0.5\n67537|0.5\n67538|0.5\n67539|0.5\n67540|0.5\n67541|0.45833\n67542|0.59722\n67543|0.48611\n67544|0.5\n67545|0.61111\n67546|0.5\n67547|0.44444\n67548|0.86111\n67549|0.70833\n67550|0.90278\n67551|0.84722\n67552|0.80556\n67553|0.94444\n67554|0.66667\n67555|0.5\n67556|0.5\n67557|0.52778\n67558|0.51389\n67559|0.86111\n67560|0.66667\n67561|0.5\n67562|0.5\n67563|0.51389\n67564|0.63889\n67565|0.56944\n67566|0.86111\n67567|0.58333\n67568|0.5\n67569|0.5\n67570|0.5\n67571|0.5\n67572|0.5\n67573|0.5\n67574|0.84722\n67575|0.5\n67576|0.5\n67577|0.73611\n67578|1\n67579|0.52778\n67580|0.58333\n67581|0.5\n67582|0.5\n67583|0.5\n67584|0.5\n67585|0.45833\n67586|0.375\n67587|0.5\n67588|0.86111\n67589|0.5\n67590|0.55556\n67591|0.5\n67592|0.26389\n67593|0.38889\n67594|0.44444\n67595|0.43056\n67596|0.625\n67597|0.72222\n67598|0.22222\n67599|0.54167\n67600|0.5\n67601|0.5\n67602|0.44444\n67603|0.72222\n67604|0.66667\n67605|0.75\n67606|0.77778\n67607|0.31944\n67608|0.88889\n67609|0.68056\n67610|0.70833\n67611|0.65278\n67612|0.77778\n67613|0.88889\n67614|0.65278\n67615|0.5\n67616|0.88889\n67617|0.63889\n67618|0.61111\n67619|0.54167\n67620|0.625\n67621|0.83333\n67622|0.5\n67623|0.30556\n67624|0.22222\n67625|0.44444\n67626|0.70833\n67627|0.55556\n67628|0.5\n67629|0.61111\n67630|0.55556\n67631|0.51389\n67632|0.51389\n67633|0.80556\n67634|0.83333\n67635|0.5\n67636|0.44444\n67637|0.61111\n67638|0.73611\n67639|0.65278\n67640|0.5\n67641|0.5\n67642|0.56944\n67643|0.55556\n67644|0.625\n67645|0.84722\n67646|0.27778\n67647|0.69444\n67648|0.61111\n67649|0.80556\n67650|0.83333\n67651|0.5\n67652|0.5\n67653|0.61111\n67654|0.5\n67655|0.51389\n67656|0.5\n67657|0.5\n67658|0.5\n67659|0.625\n67660|0.5\n67661|0.81944\n67662|0.5\n67663|0.72222\n67664|0.77778\n67665|0.68056\n67666|0.75\n67667|0.30556\n67668|0.58333\n67669|0.76389\n67670|0.83333\n67671|0.45833\n67672|0.61111\n67673|0.68056\n67674|0.5\n67675|0.63889\n67676|0.83333\n67677|0.65278\n67678|0.625\n67679|0.5\n67680|0.77778\n67681|0.5\n67682|0.81944\n67683|0.5\n67684|0.5\n67685|0.83333\n67686|0.5\n67687|0.5\n67688|0.5\n67689|0.5\n67690|0.5\n67691|0.81944\n67692|0.27778\n67693|0.61111\n67694|0.43056\n67695|0.375\n67696|0.59722\n67697|0.5\n67698|0.84722\n67699|0.77778\n67700|0.83333\n67701|0.94444\n67702|0.56944\n67703|0.72222\n67704|0.51389\n67705|0.75\n67706|0.45833\n67707|0.20833\n67708|0.34722\n67709|0.625\n67710|0.76389\n67711|0.5\n67712|0.5\n67713|0.54167\n67714|0.5\n67715|0.65278\n67716|0.44444\n67717|0.5\n67718|0.5\n67719|0.5\n67720|0.15278\n67721|0.18056\n67722|0.38889\n67723|0.52778\n67724|0.58333\n67725|0.70833\n67726|0.76389\n67727|0.66667\n67728|0.54167\n67729|0.5\n67730|0.77778\n67731|0.93056\n67732|0.94444\n67733|0.75\n67734|0.55556\n67735|0.5\n67736|0.5\n67737|0.61111\n67738|0.44444\n67739|0.76389\n67740|0.5\n67741|0.69444\n67742|0.63889\n67743|0.70833\n67744|0.43056\n67745|0.5\n67746|0.5\n67747|0.5\n67748|0.5\n67749|0.47222\n67750|0.69444\n67751|0.91667\n67752|0.52778\n67753|0.625\n67754|0.47222\n67755|0.55556\n67756|0.77778\n67757|0.88889\n67758|0.5\n67759|0.5\n67760|0.59722\n67761|0.73611\n67762|0.61111\n67763|0.5\n67764|0.5\n67765|0.66667\n67766|0.38889\n67767|0.5\n67768|0.5\n67769|0.5\n67770|0.51389\n67771|0.5\n67772|0.5\n67773|0.44444\n67774|0.77778\n67775|0.5\n67776|0.80556\n67777|0.72222\n67778|0.79167\n67779|0.56944\n67780|0.44444\n67781|0.5\n67782|0.5\n67783|0.38889\n67784|0.36111\n67785|0.5\n67786|0.5\n67787|0.5\n67788|0.5\n67789|0.5\n67790|0.75\n67791|0.5\n67792|0.61111\n67793|0.52778\n67794|0.55556\n67795|0.5\n67796|0.44444\n67797|0.51389\n67798|0.5\n67799|0.5\n67800|0.52778\n67801|0.54167\n67802|0.52778\n67803|0.56944\n67804|0.75\n67805|0.5\n67806|0.5\n67807|0.5\n67808|0.5\n67809|0.51389\n67810|0.5\n67811|0.5\n67812|0.68056\n67813|0.59722\n67814|0.47222\n67815|0.5\n67816|0.5\n67817|0.55556\n67818|0.48611\n67819|0.875\n67820|0.76389\n67821|0.29167\n67822|0.5\n67823|0.68056\n67824|0.5\n67825|0.51389\n67826|0.5\n67827|0.5\n67828|0.5\n67829|0.77778\n67830|0.875\n67831|0.5\n67832|0.59722\n67833|0.5\n67834|0.5\n67835|0.5\n67836|0.5\n67837|0.38889\n67838|0.23611\n67839|0.23611\n67840|0.75\n67841|0.5\n67842|0.5\n67843|0.5\n67844|0.5\n67845|0.66667\n67846|0.55556\n67847|0.70833\n67848|0.77778\n67849|0.5\n67850|0.61111\n67851|0.61111\n67852|0.875\n67853|0.5\n67854|0.55556\n67855|0.19444\n67856|0.16667\n67857|0.26389\n67858|0.44444\n67859|0.375\n67860|0.52778\n67861|0.41667\n67862|0.45833\n67863|0.25\n67864|0.16667\n67865|0.33333\n67866|0.31944\n67867|0.34722\n67868|0.375\n67869|0.56944\n67870|0.68056\n67871|0.48611\n67872|0.5\n67873|0.5\n67874|0.5\n67875|0.63889\n67876|0.65278\n67877|0.47222\n67878|0.47222\n67879|0.73611\n67880|0.61111\n67881|0.5\n67882|0.29167\n67883|0.41667\n67884|0.27778\n67885|0.18056\n67886|0.65278\n67887|0.73611\n67888|0.68056\n67889|0.66667\n67890|0.45833\n67891|0.58333\n67892|0.33333\n67893|0.41667\n67894|0.40278\n67895|0.75\n67896|0.72222\n67897|0.5\n67898|0.83333\n67899|0.65278\n67900|0.63889\n67901|1\n67902|0.81944\n67903|0.38889\n67904|0.27778\n67905|0.375\n67906|0.44444\n67907|0.43056\n67908|0.65278\n67909|0.63889\n67910|0.5\n67911|0.80556\n67912|0.31944\n67913|0.41667\n67914|0.51389\n67915|0.75\n67916|0.61111\n67917|0.70833\n67918|0.68056\n67919|0.5\n67920|0.44444\n67921|0.61111\n67922|0.63889\n67923|0.80556\n67924|0.5\n67925|0.58333\n67926|0.5\n67927|0.5\n67928|0.77778\n67929|0.65278\n67930|0.81944\n67931|0.75\n67932|0.63889\n67933|0.55556\n67934|0.41667\n67935|0.63889\n67936|0.5\n67937|0.5\n67938|0.5\n67939|0.5\n67940|0.5\n67941|0.51389\n67942|0.55556\n67943|0.5\n67944|0.52778\n67945|0.5\n67946|0.52778\n67947|0.65278\n67948|0.93056\n67949|0.83333\n67950|0.65278\n67951|0.88889\n67952|0.83333\n67953|0.61111\n67954|0.77778\n67955|0.69444\n67956|0.75\n67957|0.68056\n67958|0.29167\n67959|0.63889\n67960|0.83333\n67961|0.625\n67962|0.77778\n67963|0.34722\n67964|0.33333\n67965|0.31944\n67966|0.55556\n67967|0.48611\n67968|0.59722\n67969|0.5\n67970|0.66667\n67971|0.68056\n67972|0.51389\n67973|0.5\n67974|0.5\n67975|0.68056\n67976|0.36111\n67977|0.68056\n67978|0.5\n67979|0.5\n67980|0.70833\n67981|0.36111\n67982|0.66667\n67983|0.59722\n67984|0.48611\n67985|0.69444\n67986|0.76389\n67987|0.47222\n67988|0.5\n67989|0.76389\n67990|0.52778\n67991|0.88889\n67992|0.94444\n67993|0.76389\n67994|0.95833\n67995|0.93056\n67996|0.98611\n67997|0.55556\n67998|0.875\n67999|0.83333\n68000|0.84722\n68001|0.94444\n68002|0.93056\n68003|0.83333\n68004|0.98611\n68005|0.79167\n68006|0.86111\n68007|0.95833\n68008|0.81944\n68009|0.88889\n68010|0.76389\n68011|0.97222\n68012|0.95833\n68013|0.83333\n68014|0.81944\n68015|0.94444\n68016|0.72222\n68017|0.625\n68018|0.94444\n68019|0.84722\n68020|0.5\n68021|0.83333\n68022|0.66667\n68023|0.875\n68024|0.77778\n68025|0.77778\n68026|0.93056\n68027|0.90278\n68028|0.5\n68029|0.55556\n68030|0.72222\n68031|0.51389\n68032|0.5\n68033|0.5\n68034|0.61111\n68035|0.81944\n68036|0.5\n68037|0.68056\n68038|0.22222\n68039|0.38889\n68040|0.40278\n68041|0.72222\n68042|0.72222\n68043|0.68056\n68044|0.5\n68045|0.72222\n68046|0.65278\n68047|0.77778\n68048|0.93056\n68049|0.5\n68050|0.5\n68051|0.75\n68052|0.86111\n68053|0.84722\n68054|0.81944\n68055|0.93056\n68056|0.875\n68057|0.55556\n68058|0.34722\n68059|0.58333\n68060|0.70833\n68061|0.54167\n68062|0.5\n68063|0.55556\n68064|0.88889\n68065|0.36111\n68066|0.51389\n68067|0.5\n68068|0.5\n68069|0.75\n68070|0.88889\n68071|0.83333\n68072|0.72222\n68073|0.44444\n68074|0.47222\n68075|0.5\n68076|0.5\n68077|0.95833\n68078|0.79167\n68079|0.5\n68080|0.5\n68081|0.5\n68082|0.68056\n68083|0.5\n68084|0.5\n68085|0.58333\n68086|0.5\n68087|0.86111\n68088|0.80556\n68089|0.77778\n68090|0.68056\n68091|0.70833\n68092|0.51389\n68093|0.5\n68094|0.5\n68095|0.5\n68096|0.54167\n68097|0.375\n68098|0.5\n68099|0.5\n68100|0.5\n68101|0.5\n68102|0.52778\n68103|0.5\n68104|0.5\n68105|0.5\n68106|0.95833\n68107|0.5\n68108|0.5\n68109|0.5\n68110|0.5\n68111|0.44444\n68112|0.5\n68113|0.63889\n68114|0.55556\n68115|0.66667\n68116|0.75\n68117|0.5\n68118|0.5\n68119|0.51389\n68120|0.72222\n68121|0.5\n68122|0.77778\n68123|0.43056\n68124|0.5\n68125|0.59722\n68126|0.52778\n68127|0.58333\n68128|0.61111\n68129|0.5\n68130|0.77778\n68131|0.63889\n68132|0.5\n68133|0.77778\n68134|0.5\n68135|0.5\n68136|0.52778\n68137|0.38889\n68138|0.5\n68139|0.5\n68140|0.5\n68141|0.51389\n68142|0.56944\n68143|0.73611\n68144|0.5\n68145|0.54167\n68146|0.5\n68147|0.59722\n68148|0.94444\n68149|0.5\n68150|0.625\n68151|0.72222\n68152|0.83333\n68153|0.73611\n68154|0.76389\n68155|0.81944\n68156|0.84722\n68157|0.52778\n68158|0.51389\n68159|0.5\n68160|0.5\n68161|0.5\n68162|0.51389\n68163|0.5\n68164|0.73611\n68165|0.55556\n68166|0.48611\n68167|0.55556\n68168|0.48611\n68169|0.5\n68170|0.69444\n68171|0.5\n68172|0.70833\n68173|0.55556\n68174|0.77778\n68175|0.44444\n68176|0.5\n68177|0.58333\n68178|0.125\n68179|0.125\n68180|0.097222\n68181|0.59722\n68182|0.65278\n68183|0.66667\n68184|0.51389\n68185|0.27778\n68186|0.5\n68187|0.5\n68188|0.5\n68189|0.5\n68190|0.5\n68191|0.5\n68192|0.5\n68193|0.5\n68194|0.5\n68195|0.5\n68196|0.63889\n68197|0.68056\n68198|0.73611\n68199|0.69444\n68200|0.65278\n68201|0.5\n68202|0.52778\n68203|0.5\n68204|0.51389\n68205|0.77778\n68206|0.68056\n68207|0.66667\n68208|0.59722\n68209|0.5\n68210|0.81944\n68211|0.5\n68212|0.5\n68213|0.5\n68214|0.5\n68215|0.51389\n68216|0.72222\n68217|0.69444\n68218|0.66667\n68219|0.47222\n68220|0.625\n68221|0.77778\n68222|0.93056\n68223|0.61111\n68224|0.65278\n68225|0.76389\n68226|0.79167\n68227|0.51389\n68228|0.65278\n68229|0.63889\n68230|0.76389\n68231|0.73611\n68232|0.5\n68233|0.83333\n68234|0.58333\n68235|0.61111\n68236|0.5\n68237|0.5\n68238|0.66667\n68239|0.58333\n68240|0.75\n68241|0.69444\n68242|0.84722\n68243|0.5\n68244|0.45833\n68245|0.5\n68246|0.5\n68247|0.5\n68248|0.5\n68249|0.625\n68250|0.5\n68251|0.68056\n68252|0.69444\n68253|0.55556\n68254|0.33333\n68255|0.69444\n68256|0.83333\n68257|0.76389\n68258|0.33333\n68259|0.61111\n68260|0.875\n68261|0.51389\n68262|0.875\n68263|0.69444\n68264|0.5\n68265|0.5\n68266|0.65278\n68267|0.73611\n68268|0.84722\n68269|0.70833\n68270|0.5\n68271|0.61111\n68272|0.94444\n68273|0.5\n68274|0.80556\n68275|0.81944\n68276|0.91667\n68277|1\n68278|0.73611\n68279|0.68056\n68280|0.56944\n68281|0.47222\n68282|0.70833\n68283|0.81944\n68284|0.81944\n68285|0.625\n68286|0.88889\n68287|0.76389\n68288|0.88889\n68289|0.5\n68290|0.55556\n68291|0.44444\n68292|0.72222\n68293|0.88889\n68294|0.75\n68295|0.43056\n68296|0.33333\n68297|0.86111\n68298|0.72222\n68299|0.5\n68300|0.52778\n68301|0.56944\n68302|0.5\n68303|0.51389\n68304|0.80556\n68305|0.5\n68306|0.5\n68307|0.58333\n68308|0.5\n68309|0.76389\n68310|0.91667\n68311|0.66667\n68312|0.76389\n68313|0.43056\n68314|0.27778\n68315|0.30556\n68316|0.31944\n68317|0.66667\n68318|0.51389\n68319|0.5\n68320|0.5\n68321|0.38889\n68322|0.40278\n68323|0.63889\n68324|0.81944\n68325|0.5\n68326|0.52778\n68327|0.5\n68328|0.51389\n68329|0.5\n68330|0.5\n68331|0.83333\n68332|0.91667\n68333|0.81944\n68334|0.84722\n68335|0.81944\n68336|0.72222\n68337|0.88889\n68338|0.69444\n68339|0.83333\n68340|0.5\n68341|0.5\n68342|0.5\n68343|0.5\n68344|0.5\n68345|0.51389\n68346|0.56944\n68347|0.69444\n68348|0.56944\n68349|0.68056\n68350|0.63889\n68351|0.5\n68352|0.5\n68353|0.59722\n68354|0.38889\n68355|0.625\n68356|0.5\n68357|0.5\n68358|0.5\n68359|0.5\n68360|0.55556\n68361|0.48611\n68362|0.48611\n68363|0.5\n68364|0.45833\n68365|0.86111\n68366|0.83333\n68367|0.5\n68368|0.65278\n68369|0.44444\n68370|0.375\n68371|0.66667\n68372|0.73611\n68373|0.625\n68374|0.5\n68375|0.5\n68376|0.58333\n68377|0.65278\n68378|0.125\n68379|0.30556\n68380|0.625\n68381|0.44444\n68382|0.5\n68383|0.68056\n68384|0.73611\n68385|0.69444\n68386|0.5\n68387|0.5\n68388|0.43056\n68389|0.11111\n68390|0.51389\n68391|0.38889\n68392|0.63889\n68393|0.66667\n68394|0.5\n68395|0.70833\n68396|0.66667\n68397|0.80556\n68398|0.59722\n68399|0.5\n68400|0.66667\n68401|0.26389\n68402|0.23611\n68403|0.36111\n68404|0.36111\n68405|0.52778\n68406|0.55556\n68407|0.70833\n68408|0.83333\n68409|0.5\n68410|0.54167\n68411|0.5\n68412|0.5\n68413|0.625\n68414|0.5\n68415|0.80556\n68416|0.44444\n68417|0.5\n68418|0.625\n68419|0.5\n68420|0.5\n68421|0.5\n68422|0.5\n68423|0.5\n68424|0.55556\n68425|0.5\n68426|0.5\n68427|0.5\n68428|0.65278\n68429|0.73611\n68430|0.83333\n68431|0.5\n68432|0.61111\n68433|0.84722\n68434|0.77778\n68435|0.88889\n68436|0.63889\n68437|0.5\n68438|0.51389\n68439|0.5\n68440|0.79167\n68441|0.61111\n68442|0.55556\n68443|0.5\n68444|0.5\n68445|0.83333\n68446|0.58333\n68447|0.56944\n68448|0.55556\n68449|0.5\n68450|0.5\n68451|0.5\n68452|0.5\n68453|0.61111\n68454|0.61111\n68455|0.5\n68456|0.5\n68457|0.5\n68458|0.59722\n68459|0.52778\n68460|0.47222\n68461|0.5\n68462|0.5\n68463|0.63889\n68464|0.73611\n68465|0.72222\n68466|0.76389\n68467|0.79167\n68468|0.5\n68469|0.88889\n68470|0.5\n68471|0.5\n68472|0.55556\n68473|0.51389\n68474|0.5\n68475|0.5\n68476|0.77778\n68477|0.59722\n68478|0.68056\n68479|0.51389\n68480|0.5\n68481|0.5\n68482|0.47222\n68483|0.43056\n68484|0.5\n68485|0.55556\n68486|0.56944\n68487|0.5\n68488|0.80556\n68489|0.68056\n68490|0.5\n68491|0.54167\n68492|0.55556\n68493|0.75\n68494|0.83333\n68495|0.79167\n68496|0.73611\n68497|0.56944\n68498|0.70833\n68499|0.55556\n68500|0.61111\n68501|0.61111\n68502|0.5\n68503|0.55556\n68504|0.72222\n68505|0.47222\n68506|0.56944\n68507|0.84722\n68508|0.80556\n68509|0.5\n68510|0.5\n68511|0.5\n68512|0.61111\n68513|0.5\n68514|0.61111\n68515|0.5\n68516|0.5\n68517|0.52778\n68518|0.76389\n68519|0.69444\n68520|0.48611\n68521|0.48611\n68522|0.5\n68523|0.52778\n68524|0.5\n68525|0.5\n68526|0.5\n68527|0.5\n68528|0.5\n68529|0.48611\n68530|0.65278\n68531|0.5\n68532|0.5\n68533|0.83333\n68534|0.625\n68535|0.80556\n68536|0.56944\n68537|0.5\n68538|0.5\n68539|0.86111\n68540|0.5\n68541|0.48611\n68542|0.5\n68543|0.59722\n68544|0.5\n68545|0.5\n68546|0.58333\n68547|0.5\n68548|0.86111\n68549|0.88889\n68550|0.5\n68551|0.56944\n68552|0.58333\n68553|0.5\n68554|0.33333\n68555|0.33333\n68556|0.44444\n68557|0.63889\n68558|0.375\n68559|0.27778\n68560|0.38889\n68561|0.51389\n68562|0.75\n68563|0.79167\n68564|0.5\n68565|0.5\n68566|0.77778\n68567|0.15278\n68568|0.5\n68569|0.5\n68570|0.5\n68571|0.56944\n68572|0.875\n68573|0.83333\n68574|0.5\n68575|0.5\n68576|0.84722\n68577|0.5\n68578|0.5\n68579|0.5\n68580|0.59722\n68581|0.5\n68582|0.58333\n68583|0.61111\n68584|0.5\n68585|0.73611\n68586|0.69444\n68587|0.72222\n68588|0.5\n68589|0.5\n68590|0.58333\n68591|0.47222\n68592|0.26389\n68593|0.27778\n68594|0.25\n68595|0.625\n68596|0.65278\n68597|0.55556\n68598|0.5\n68599|0.51389\n68600|0.5\n68601|0.61111\n68602|0.5\n68603|0.51389\n68604|0.5\n68605|0.44444\n68606|0.5\n68607|0.5\n68608|0.79167\n68609|0.55556\n68610|0.5\n68611|0.51389\n68612|0.5\n68613|0.5\n68614|0.77778\n68615|0.63889\n68616|0.91667\n68617|0.5\n68618|0.5\n68619|0.44444\n68620|0.5\n68621|0.83333\n68622|0.5\n68623|0.77778\n68624|0.5\n68625|0.5\n68626|0.81944\n68627|0.5\n68628|0.81944\n68629|0.5\n68630|0.5\n68631|0.44444\n68632|0.83333\n68633|0.58333\n68634|0.73611\n68635|0.69444\n68636|0.59722\n68637|0.58333\n68638|0.77778\n68639|0.77778\n68640|0.69444\n68641|0.76389\n68642|0.75\n68643|0.79167\n68644|0.70833\n68645|0.66667\n68646|0.56944\n68647|0.73611\n68648|0.80556\n68649|0.5\n68650|0.47222\n68651|0.43056\n68652|0.65278\n68653|0.375\n68654|0.5\n68655|0.83333\n68656|0.48611\n68657|0.56944\n68658|0.63889\n68659|0.5\n68660|0.5\n68661|0.5\n68662|0.5\n68663|0.45833\n68664|0.43056\n68665|0.5\n68666|0.54167\n68667|0.5\n68668|0.5\n68669|0.75\n68670|0.81944\n68671|0.72222\n68672|0.72222\n68673|0.80556\n68674|0.76389\n68675|0.55556\n68676|0.5\n68677|0.54167\n68678|0.86111\n68679|0.72222\n68680|0.75\n68681|0.72222\n68682|0.72222\n68683|0.83333\n68684|0.56944\n68685|0.44444\n68686|0.5\n68687|0.5\n68688|0.61111\n68689|0.72222\n68690|0.58333\n68691|0.44444\n68692|0.69444\n68693|0.5\n68694|0.27778\n68695|0.29167\n68696|0.58333\n68697|0.80556\n68698|0.5\n68699|0.5\n68700|0.59722\n68701|0.75\n68702|0.73611\n68703|0.61111\n68704|0.88889\n68705|0.63889\n68706|0.66667\n68707|0.86111\n68708|0.90278\n68709|0.5\n68710|0.5\n68711|0.5\n68712|0.75\n68713|0.5\n68714|0.31944\n68715|0.56944\n68716|0.625\n68717|0.47222\n68718|0.5\n68719|0.5\n68720|0.61111\n68721|0.5\n68722|0.5\n68723|0.54167\n68724|0.5\n68725|0.5\n68726|0.45833\n68727|0.58333\n68728|0.875\n68729|0.81944\n68730|0.51389\n68731|0.5\n68732|0.55556\n68733|0.55556\n68734|0.48611\n68735|0.75\n68736|0.75\n68737|0.65278\n68738|0.33333\n68739|0.47222\n68740|0.55556\n68741|0.625\n68742|0.81944\n68743|0.73611\n68744|0.5\n68745|0.70833\n68746|0.59722\n68747|0.73611\n68748|0.61111\n68749|0.5\n68750|0.5\n68751|0.68056\n68752|0.5\n68753|0.5\n68754|0.43056\n68755|0.5\n68756|0.80556\n68757|0.84722\n68758|0.52778\n68759|0.86111\n68760|0.76389\n68761|0.5\n68762|0.5\n68763|0.5\n68764|0.68056\n68765|0.52778\n68766|0.69444\n68767|0.70833\n68768|0.5\n68769|0.68056\n68770|0.84722\n68771|0.79167\n68772|0.5\n68773|0.58333\n68774|0.5\n68775|0.81944\n68776|0.79167\n68777|0.61111\n68778|0.5\n68779|0.61111\n68780|0.66667\n68781|0.66667\n68782|0.75\n68783|0.59722\n68784|0.43056\n68785|0.5\n68786|0.90278\n68787|0.33333\n68788|0.5\n68789|0.72222\n68790|0.73611\n68791|0.65278\n68792|0.68056\n68793|0.875\n68794|0.68056\n68795|0.73611\n68796|0.76389\n68797|0.58333\n68798|0.76389\n68799|0.80556\n68800|0.5\n68801|0.5\n68802|0.51389\n68803|0.5\n68804|0.5\n68805|0.5\n68806|0.77778\n68807|0.875\n68808|0.51389\n68809|0.5\n68810|0.66667\n68811|0.5\n68812|0.5\n68813|0.61111\n68814|0.31944\n68815|0.43056\n68816|0.52778\n68817|0.84722\n68818|0.75\n68819|0.47222\n68820|0.38889\n68821|0.70833\n68822|0.375\n68823|0.47222\n68824|0.5\n68825|0.5\n68826|0.47222\n68827|0.63889\n68828|0.34722\n68829|0.40278\n68830|0.40278\n68831|0.26389\n68832|0.44444\n68833|0.79167\n68834|0.625\n68835|0.79167\n68836|0.83333\n68837|0.76389\n68838|0.69444\n68839|0.69444\n68840|0.81944\n68841|0.80556\n68842|0.81944\n68843|0.65278\n68844|0.55556\n68845|0.5\n68846|0.48611\n68847|0.5\n68848|0.5\n68849|0.625\n68850|0.18056\n68851|0.29167\n68852|0.375\n68853|0.38889\n68854|0.5\n68855|0.5\n68856|0.56944\n68857|0.38889\n68858|0.625\n68859|0.61111\n68860|0.73611\n68861|0.69444\n68862|0.81944\n68863|0.5\n68864|0.66667\n68865|0.70833\n68866|0.68056\n68867|0.48611\n68868|0.56944\n68869|0.51389\n68870|0.5\n68871|0.5\n68872|0.31944\n68873|0.59722\n68874|0.54167\n68875|0.75\n68876|0.56944\n68877|0.5\n68878|0.66667\n68879|0.68056\n68880|0.48611\n68881|0.80556\n68882|0.90278\n68883|0.875\n68884|0.5\n68885|0.625\n68886|0.58333\n68887|0.51389\n68888|0.65278\n68889|0.61111\n68890|0.54167\n68891|0.44444\n68892|0.44444\n68893|0.44444\n68894|0.54167\n68895|0.68056\n68896|0.69444\n68897|0.68056\n68898|0.83333\n68899|0.38889\n68900|0.23611\n68901|0.69444\n68902|0.58333\n68903|0.77778\n68904|0.5\n68905|0.5\n68906|0.54167\n68907|0.77778\n68908|0.51389\n68909|0.5\n68910|0.5\n68911|0.625\n68912|0.70833\n68913|0.81944\n68914|0.45833\n68915|0.5\n68916|0.5\n68917|0.5\n68918|0.66667\n68919|0.86111\n68920|0.79167\n68921|0.73611\n68922|0.875\n68923|0.31944\n68924|0.66667\n68925|0.66667\n68926|0.5\n68927|0.90278\n68928|1\n68929|0.90278\n68930|1\n68931|0.91667\n68932|0.94444\n68933|0.90278\n68934|0.5\n68935|0.58333\n68936|0.51389\n68937|0.43056\n68938|0.54167\n68939|0.5\n68940|0.59722\n68941|0.86111\n68942|0.84722\n68943|0.5\n68944|0.5\n68945|0.52778\n68946|0.54167\n68947|0.76389\n68948|0.80556\n68949|0.5\n68950|0.5\n68951|0.5\n68952|0.59722\n68953|0.5\n68954|0.52778\n68955|0.70833\n68956|0.83333\n68957|0.66667\n68958|0.5\n68959|0.63889\n68960|0.5\n68961|0.5\n68962|0.5\n68963|0.5\n68964|0.5\n68965|0.5\n68966|0.72222\n68967|0.54167\n68968|0.5\n68969|0.5\n68970|0.5\n68971|0.5\n68972|0.36111\n68973|0.5\n68974|0.5\n68975|0.5\n68976|0.5\n68977|0.86111\n68978|0.48611\n68979|0.69444\n68980|0.54167\n68981|0.625\n68982|0.5\n68983|0.5\n68984|0.90278\n68985|0.875\n68986|0.83333\n68987|0.94444\n68988|0.93056\n68989|0.54167\n68990|0.5\n68991|0.51389\n68992|0.56944\n68993|0.75\n68994|0.45833\n68995|0.58333\n68996|0.5\n68997|0.5\n68998|0.68056\n68999|0.83333\n69000|0.76389\n69001|0.51389\n69002|0.79167\n69003|0.73611\n69004|0.5\n69005|0.75\n69006|0.56944\n69007|0.61111\n69008|0.65278\n69009|0.59722\n69010|0.5\n69011|0.5\n69012|0.45833\n69013|0.5\n69014|0.5\n69015|0.5\n69016|0.5\n69017|0.48611\n69018|0.69444\n69019|0.81944\n69020|0.41667\n69021|0.69444\n69022|0.77778\n69023|0.55556\n69024|0.55556\n69025|0.73611\n69026|0.5\n69027|0.375\n69028|0.58333\n69029|0.20833\n69030|0.61111\n69031|0.58333\n69032|0.94444\n69033|0.77778\n69034|0.77778\n69035|0.61111\n69036|0.76389\n69037|0.47222\n69038|0.47222\n69039|0.52778\n69040|0.5\n69041|0.61111\n69042|0.5\n69043|0.54167\n69044|0.43056\n69045|0.41667\n69046|0.56944\n69047|0.88889\n69048|0.5\n69049|0.5\n69050|0.51389\n69051|0.97222\n69052|0.56944\n69053|0.77778\n69054|0.77778\n69055|0.875\n69056|0.58333\n69057|0.38889\n69058|0.34722\n69059|0.16667\n69060|0.66667\n69061|0.68056\n69062|0.58333\n69063|0.93056\n69064|0.81944\n69065|0.5\n69066|0.51389\n69067|0.61111\n69068|0.80556\n69069|0.5\n69070|0.55556\n69071|0.5\n69072|0.34722\n69073|0.5\n69074|0.40278\n69075|0.30556\n69076|0.59722\n69077|0.26389\n69078|0.36111\n69079|0.27778\n69080|0.43056\n69081|0.61111\n69082|0.70833\n69083|0.68056\n69084|0.55556\n69085|0.80556\n69086|0.66667\n69087|0.80556\n69088|0.625\n69089|0.86111\n69090|0.5\n69091|0.5\n69092|0.58333\n69093|0.66667\n69094|0.76389\n69095|0.55556\n69096|0.625\n69097|0.58333\n69098|0.5\n69099|0.86111\n69100|0.5\n69101|0.5\n69102|0.44444\n69103|0.5\n69104|0.51389\n69105|0.69444\n69106|0.94444\n69107|0.83333\n69108|0.77778\n69109|0.77778\n69110|0.5\n69111|0.5\n69112|0.5\n69113|0.5\n69114|0.69444\n69115|0.63889\n69116|0.72222\n69117|0.875\n69118|0.79167\n69119|0.52778\n69120|0.43056\n69121|0.31944\n69122|0.80556\n69123|0.69444\n69124|0.55556\n69125|0.5\n69126|0.83333\n69127|0.73611\n69128|0.5\n69129|0.80556\n69130|0.80556\n69131|0.625\n69132|0.55556\n69133|0.55556\n69134|0.83333\n69135|0.84722\n69136|0.5\n69137|0.75\n69138|0.70833\n69139|0.77778\n69140|0.61111\n69141|0.77778\n69142|0.77778\n69143|0.73611\n69144|0.77778\n69145|0.66667\n69146|0.69444\n69147|0.5\n69148|0.51389\n69149|0.51389\n69150|0.5\n69151|0.34722\n69152|0.5\n69153|0.40278\n69154|0.51389\n69155|0.5\n69156|0.5\n69157|0.73611\n69158|0.66667\n69159|0.5\n69160|0.5\n69161|0.36111\n69162|0.52778\n69163|0.875\n69164|0.73611\n69165|0.91667\n69166|0.83333\n69167|0.79167\n69168|1\n69169|0.91667\n69170|0.86111\n69171|0.73611\n69172|0.91667\n69173|0.98611\n69174|0.79167\n69175|0.5\n69176|0.52778\n69177|0.5\n69178|0.5\n69179|0.5\n69180|0.51389\n69181|0.69444\n69182|0.5\n69183|0.5\n69184|0.5\n69185|0.5\n69186|0.63889\n69187|0.5\n69188|0.72222\n69189|0.84722\n69190|0.5\n69191|0.5\n69192|0.5\n69193|0.70833\n69194|0.79167\n69195|0.79167\n69196|0.69444\n69197|0.875\n69198|0.81944\n69199|0.27778\n69200|0.51389\n69201|0.5\n69202|0.51389\n69203|0.83333\n69204|0.5\n69205|0.61111\n69206|0.68056\n69207|0.79167\n69208|0.66667\n69209|0.5\n69210|0.61111\n69211|0.73611\n69212|0.77778\n69213|0.66667\n69214|0.94444\n69215|0.88889\n69216|0.59722\n69217|0.77778\n69218|0.68056\n69219|0.72222\n69220|0.90278\n69221|0.625\n69222|0.73611\n69223|0.94444\n69224|0.94444\n69225|0.38889\n69226|0.375\n69227|0.61111\n69228|0.90278\n69229|0.5\n69230|0.5\n69231|0.5\n69232|0.34722\n69233|0.36111\n69234|0.33333\n69235|0.5\n69236|0.5\n69237|0.625\n69238|0.93056\n69239|0.84722\n69240|0.63889\n69241|0.95833\n69242|0.56944\n69243|0.86111\n69244|0.58333\n69245|0.5\n69246|0.5\n69247|0.79167\n69248|0.875\n69249|0.65278\n69250|0.76389\n69251|0.83333\n69252|0.55556\n69253|0.5\n69254|0.43056\n69255|0.5\n69256|0.77778\n69257|0.86111\n69258|0.48611\n69259|0.72222\n69260|0.66667\n69261|0.68056\n69262|0.70833\n69263|0.77778\n69264|0.5\n69265|0.5\n69266|0.61111\n69267|0.61111\n69268|0.5\n69269|0.76389\n69270|0.61111\n69271|0.31944\n69272|0.83333\n69273|0.76389\n69274|0.77778\n69275|0.5\n69276|0.48611\n69277|0.77778\n69278|0.5\n69279|0.52778\n69280|0.5\n69281|0.61111\n69282|0.61111\n69283|0.33333\n69284|0.83333\n69285|0.63889\n69286|0.5\n69287|0.52778\n69288|0.51389\n69289|0.5\n69290|0.61111\n69291|0.5\n69292|0.5\n69293|0.625\n69294|0.72222\n69295|0.5\n69296|0.75\n69297|0.5\n69298|0.77778\n69299|0.63889\n69300|0.75\n69301|0.56944\n69302|0.86111\n69303|0.55556\n69304|0.83333\n69305|0.5\n69306|0.5\n69307|0.5\n69308|0.5\n69309|0.75\n69310|0.51389\n69311|0.5\n69312|0.5\n69313|0.61111\n69314|0.625\n69315|0.61111\n69316|0.77778\n69317|0.5\n69318|0.76389\n69319|0.27778\n69320|0.47222\n69321|0.38889\n69322|0.83333\n69323|0.79167\n69324|0.63889\n69325|0.44444\n69326|0.51389\n69327|0.5\n69328|0.5\n69329|0.5\n69330|0.61111\n69331|0.54167\n69332|0.44444\n69333|0.51389\n69334|0.58333\n69335|0.44444\n69336|0.5\n69337|0.5\n69338|0.23611\n69339|0.375\n69340|0.27778\n69341|0.55556\n69342|0.55556\n69343|0.77778\n69344|0.5\n69345|0.44444\n69346|0.58333\n69347|0.33333\n69348|0.65278\n69349|0.47222\n69350|0.56944\n69351|0.5\n69352|0.70833\n69353|0.41667\n69354|0.68056\n69355|0.625\n69356|0.77778\n69357|0.5\n69358|0.63889\n69359|0.80556\n69360|0.75\n69361|0.76389\n69362|0.625\n69363|0.59722\n69364|0.63889\n69365|0.5\n69366|0.40278\n69367|0.5\n69368|0.375\n69369|0.51389\n69370|0.43056\n69371|0.625\n69372|0.83333\n69373|0.72222\n69374|0.5\n69375|0.54167\n69376|0.63889\n69377|0.47222\n69378|0.72222\n69379|0.77778\n69380|0.83333\n69381|0.72222\n69382|0.88889\n69383|0.875\n69384|0.83333\n69385|0.55556\n69386|0.83333\n69387|0.5\n69388|0.63889\n69389|0.51389\n69390|0.94444\n69391|0.94444\n69392|0.79167\n69393|0.44444\n69394|0.80556\n69395|0.44444\n69396|0.38889\n69397|0.47222\n69398|0.5\n69399|0.61111\n69400|0.73611\n69401|0.83333\n69402|0.63889\n69403|0.93056\n69404|0.91667\n69405|0.70833\n69406|0.66667\n69407|0.72222\n69408|0.52778\n69409|0.51389\n69410|0.38889\n69411|0.40278\n69412|0.55556\n69413|0.45833\n69414|0.76389\n69415|0.5\n69416|0.84722\n69417|0.5\n69418|0.81944\n69419|0.5\n69420|0.55556\n69421|0.72222\n69422|0.80556\n69423|0.75\n69424|0.56944\n69425|0.72222\n69426|0.90278\n69427|0.88889\n69428|0.83333\n69429|0.86111\n69430|0.72222\n69431|0.59722\n69432|0.63889\n69433|0.70833\n69434|0.81944\n69435|0.81944\n69436|0.68056\n69437|0.75\n69438|0.79167\n69439|0.76389\n69440|0.55556\n69441|0.52778\n69442|0.5\n69443|0.68056\n69444|0.58333\n69445|0.5\n69446|0.77778\n69447|0.77778\n69448|0.55556\n69449|0.61111\n69450|0.61111\n69451|0.55556\n69452|0.5\n69453|0.61111\n69454|0.72222\n69455|0.5\n69456|0.41667\n69457|0.5\n69458|0.15278\n69459|0.27778\n69460|0.56944\n69461|0.54167\n69462|0.51389\n69463|0.70833\n69464|0.51389\n69465|0.76389\n69466|0.86111\n69467|0.72222\n69468|0.73611\n69469|0.5\n69470|0.5\n69471|0.5\n69472|0.75\n69473|0.51389\n69474|0.45833\n69475|0.625\n69476|0.77778\n69477|0.79167\n69478|0.5\n69479|0.65278\n69480|0.66667\n69481|0.69444\n69482|0.81944\n69483|0.875\n69484|0.73611\n69485|0.66667\n69486|0.80556\n69487|0.69444\n69488|0.91667\n69489|0.63889\n69490|0.75\n69491|0.84722\n69492|0.93056\n69493|0.72222\n69494|0.875\n69495|0.88889\n69496|0.69444\n69497|0.65278\n69498|0.77778\n69499|0.70833\n69500|0.84722\n69501|0.88889\n69502|0.79167\n69503|0.66667\n69504|0.625\n69505|0.65278\n69506|0.73611\n69507|0.43056\n69508|0.41667\n69509|0.54167\n69510|0.43056\n69511|0.875\n69512|0.73611\n69513|0.55556\n69514|0.30556\n69515|0.66667\n69516|0.76389\n69517|0.5\n69518|0.55556\n69519|0.27778\n69520|0.41667\n69521|0.27778\n69522|0.68056\n69523|0.63889\n69524|0.38889\n69525|0.48611\n69526|0.54167\n69527|0.30556\n69528|0.31944\n69529|0.375\n69530|0.61111\n69531|0.61111\n69532|0.54167\n69533|0.76389\n69534|0.5\n69535|0.66667\n69536|0.5\n69537|0.33333\n69538|0.69444\n69539|0.80556\n69540|0.72222\n69541|0.79167\n69542|0.34722\n69543|0.90278\n69544|0.72222\n69545|0.94444\n69546|0.76389\n69547|0.86111\n69548|0.75\n69549|0.51389\n69550|0.83333\n69551|0.48611\n69552|0.77778\n69553|0.5\n69554|0.38889\n69555|0.75\n69556|0.84722\n69557|0.875\n69558|0.43056\n69559|0.83333\n69560|0.81944\n69561|0.86111\n69562|0.79167\n69563|0.76389\n69564|0.72222\n69565|0.70833\n69566|0.75\n69567|0.83333\n69568|0.66667\n69569|0.93056\n69570|0.88889\n69571|0.77778\n69572|0.66667\n69573|0.55556\n69574|0.61111\n69575|0.75\n69576|0.75\n69577|0.83333\n69578|0.83333\n69579|0.73611\n69580|0.73611\n69581|0.63889\n69582|0.77778\n69583|0.69444\n69584|0.20833\n69585|0.25\n69586|0.33333\n69587|0.29167\n69588|0.38889\n69589|0.66667\n69590|0.34722\n69591|0.5\n69592|0.5\n69593|0.73611\n69594|0.77778\n69595|0.61111\n69596|0.79167\n69597|0.68056\n69598|0.65278\n69599|0.5\n69600|0.73611\n69601|0.75\n69602|0.51389\n69603|0.52778\n69604|0.55556\n69605|0.43056\n69606|0.875\n69607|0.94444\n69608|0.5\n69609|0.94444\n69610|0.5\n69611|0.43056\n69612|0.55556\n69613|0.86111\n69614|0.81944\n69615|0.81944\n69616|0.80556\n69617|0.65278\n69618|0.625\n69619|0.75\n69620|0.80556\n69621|0.61111\n69622|0.65278\n69623|0.65278\n69624|0.80556\n69625|0.86111\n69626|0.52778\n69627|0.5\n69628|0.66667\n69629|0.5\n69630|0.61111\n69631|0.61111\n69632|0.5\n69633|0.58333\n69634|0.88889\n69635|0.5\n69636|0.77778\n69637|0.83333\n69638|0.48611\n69639|0.44444\n69640|0.5\n69641|0.77778\n69642|0.77778\n69643|0.77778\n69644|0.59722\n69645|0.79167\n69646|0.73611\n69647|0.61111\n69648|0.81944\n69649|0.83333\n69650|0.66667\n69651|0.61111\n69652|0.72222\n69653|0.5\n69654|0.63889\n69655|0.5\n69656|0.69444\n69657|0.56944\n69658|0.66667\n69659|0.73611\n69660|0.875\n69661|0.88889\n69662|0.83333\n69663|0.81944\n69664|0.52778\n69665|0.80556\n69666|0.68056\n69667|0.81944\n69668|0.91667\n69669|0.54167\n69670|0.70833\n69671|0.625\n69672|0.61111\n69673|0.69444\n69674|0.5\n69675|0.77778\n69676|0.48611\n69677|0.5\n69678|0.72222\n69679|0.75\n69680|0.61111\n69681|0.80556\n69682|0.88889\n69683|0.5\n69684|0.75\n69685|0.56944\n69686|0.70833\n69687|0.72222\n69688|0.26389\n69689|0.5\n69690|0.5\n69691|0.65278\n69692|0.5\n69693|0.59722\n69694|0.5\n69695|0.58333\n69696|0.51389\n69697|0.5\n69698|0.5\n69699|0.5\n69700|0.94444\n69701|0.5\n69702|0.5\n69703|0.5\n69704|0.75\n69705|0.80556\n69706|0.77778\n69707|0.88889\n69708|0.70833\n69709|1\n69710|0.69444\n69711|0.98611\n69712|0.81944\n69713|0.93056\n69714|0.86111\n69715|0.93056\n69716|0.86111\n69717|0.88889\n69718|0.95833\n69719|0.97222\n69720|0.44444\n69721|0.33333\n69722|0.27778\n69723|0.63889\n69724|0.79167\n69725|0.75\n69726|0.51389\n69727|0.76389\n69728|0.77778\n69729|0.68056\n69730|0.76389\n69731|0.77778\n69732|0.19444\n69733|0.33333\n69734|0.33333\n69735|0.58333\n69736|0.51389\n69737|0.76389\n69738|0.88889\n69739|0.30556\n69740|0.20833\n69741|0.375\n69742|0.51389\n69743|0.63889\n69744|0.90278\n69745|0.80556\n69746|0.88889\n69747|0.33333\n69748|0.55556\n69749|0.81944\n69750|0.79167\n69751|0.75\n69752|0.75\n69753|0.61111\n69754|0.86111\n69755|0.76389\n69756|0.75\n69757|0.79167\n69758|0.77778\n69759|0.59722\n69760|0.59722\n69761|0.66667\n69762|0.33333\n69763|0.27778\n69764|0.55556\n69765|0.66667\n69766|0.55556\n69767|0.625\n69768|0.72222\n69769|0.70833\n69770|0.61111\n69771|0.80556\n69772|0.79167\n69773|0.31944\n69774|0.69444\n69775|0.61111\n69776|0.5\n69777|0.75\n69778|0.61111\n69779|0.68056\n69780|0.56944\n69781|0.51389\n69782|0.81944\n69783|0.72222\n69784|0.59722\n69785|0.76389\n69786|0.59722\n69787|0.76389\n69788|0.63889\n69789|0.90278\n69790|0.81944\n69791|0.54167\n69792|0.63889\n69793|0.58333\n69794|0.56944\n69795|0.72222\n69796|0.76389\n69797|0.73611\n69798|0.65278\n69799|0.66667\n69800|0.69444\n69801|0.5\n69802|0.80556\n69803|0.5\n69804|0.83333\n69805|0.47222\n69806|0.5\n69807|0.76389\n69808|0.5\n69809|0.61111\n69810|0.76389\n69811|0.63889\n69812|0.5\n69813|0.54167\n69814|0.38889\n69815|0.54167\n69816|0.72222\n69817|0.5\n69818|0.90278\n69819|0.90278\n69820|0.5\n69821|0.34722\n69822|0.44444\n69823|0.70833\n69824|0.91667\n69825|0.72222\n69826|0.52778\n69827|0.875\n69828|0.79167\n69829|0.5\n69830|0.58333\n69831|0.40278\n69832|0.29167\n69833|0.52778\n69834|0.77778\n69835|0.66667\n69836|0.55556\n69837|0.625\n69838|0.5\n69839|0.61111\n69840|0.55556\n69841|0.52778\n69842|0.61111\n69843|0.68056\n69844|0.80556\n69845|0.83333\n69846|0.66667\n69847|0.63889\n69848|0.5\n69849|0.51389\n69850|0.66667\n69851|0.5\n69852|0.98611\n69853|0.66667\n69854|0.77778\n69855|0.65278\n69856|0.66667\n69857|0.73611\n69858|0.68056\n69859|0.84722\n69860|0.5\n69861|0.5\n69862|0.625\n69863|0.72222\n69864|0.66667\n69865|0.51389\n69866|0.66667\n69867|0.79167\n69868|0.5\n69869|0.54167\n69870|0.76389\n69871|0.73611\n69872|0.75\n69873|0.72222\n69874|0.76389\n69875|0.98611\n69876|0.88889\n69877|0.5\n69878|0.63889\n69879|0.56944\n69880|0.45833\n69881|0.70833\n69882|0.52778\n69883|0.23611\n69884|0.48611\n69885|0.5\n69886|0.5\n69887|0.70833\n69888|0.79167\n69889|0.83333\n69890|0.86111\n69891|0.72222\n69892|0.69444\n69893|0.5\n69894|0.45833\n69895|0.88889\n69896|0.55556\n69897|0.22222\n69898|0.43056\n69899|0.40278\n69900|0.68056\n69901|0.63889\n69902|0.5\n69903|0.59722\n69904|0.625\n69905|0.76389\n69906|0.5\n69907|0.55556\n69908|0.77778\n69909|0.55556\n69910|0.51389\n69911|0.5\n69912|0.44444\n69913|0.69444\n69914|0.61111\n69915|0.5\n69916|0.55556\n69917|0.52778\n69918|0.76389\n69919|0.65278\n69920|0.625\n69921|0.59722\n69922|0.68056\n69923|0.76389\n69924|0.5\n69925|0.625\n69926|0.77778\n69927|0.81944\n69928|0.90278\n69929|0.75\n69930|0.77778\n69931|0.5\n69932|0.54167\n69933|0.5\n69934|0.83333\n69935|0.36111\n69936|0.61111\n69937|0.66667\n69938|0.38889\n69939|0.41667\n69940|0.58333\n69941|0.48611\n69942|0.75\n69943|0.73611\n69944|0.5\n69945|0.40278\n69946|0.44444\n69947|0.52778\n69948|0.81944\n69949|0.61111\n69950|0.83333\n69951|0.5\n69952|0.90278\n69953|0.93056\n69954|0.80556\n69955|0.81944\n69956|1\n69957|0.55556\n69958|0.40278\n69959|0.48611\n69960|0.48611\n69961|0.59722\n69962|0.66667\n69963|0.52778\n69964|0.51389\n69965|0.45833\n69966|0.54167\n69967|0.54167\n69968|0.48611\n69969|0.48611\n69970|0.55556\n69971|0.625\n69972|0.5\n69973|0.52778\n69974|0.45833\n69975|0.625\n69976|0.79167\n69977|0.70833\n69978|0.44444\n69979|0.61111\n69980|0.56944\n69981|0.59722\n69982|0.72222\n69983|0.79167\n69984|0.79167\n69985|0.77778\n69986|0.66667\n69987|0.5\n69988|0.70833\n69989|0.83333\n69990|0.77778\n69991|0.75\n69992|0.83333\n69993|0.70833\n69994|0.5\n69995|0.55556\n69996|0.43056\n69997|0.18056\n69998|0.59722\n69999|0.58333\n70000|0.58333\n70001|0.51389\n70002|0.5\n70003|0.79167\n70004|0.5\n70005|0.65278\n70006|0.5\n70007|0.5\n70008|0.83333\n70009|0.83333\n70010|0.83333\n70011|0.63889\n70012|0.52778\n70013|0.98611\n70014|0.5\n70015|0.73611\n70016|0.625\n70017|0.70833\n70018|0.77778\n70019|0.86111\n70020|0.36111\n70021|0.52778\n70022|0.61111\n70023|0.76389\n70024|0.5\n70025|0.76389\n70026|0.80556\n70027|0.63889\n70028|0.68056\n70029|0.59722\n70030|0.5\n70031|0.77778\n70032|0.86111\n70033|0.51389\n70034|0.625\n70035|0.72222\n70036|0.75\n70037|0.66667\n70038|0.5\n70039|0.84722\n70040|0.75\n70041|0.83333\n70042|0.875\n70043|0.5\n70044|0.90278\n70045|0.94444\n70046|0.80556\n70047|0.69444\n70048|0.83333\n70049|0.83333\n70050|0.56944\n70051|0.54167\n70052|0.58333\n70053|0.43056\n70054|0.98611\n70055|0.81944\n70056|0.5\n70057|0.5\n70058|0.5\n70059|0.5\n70060|0.54167\n70061|0.5\n70062|0.5\n70063|0.72222\n70064|0.5\n70065|0.375\n70066|0.25\n70067|0.72222\n70068|0.73611\n70069|0.63889\n70070|0.5\n70071|0.54167\n70072|0.58333\n70073|0.51389\n70074|0.36111\n70075|0.36111\n70076|0.61111\n70077|0.77778\n70078|0.84722\n70079|0.79167\n70080|0.44444\n70081|0.44444\n70082|0.44444\n70083|0.80556\n70084|0.84722\n70085|0.26389\n70086|0.44444\n70087|0.45833\n70088|0.47222\n70089|0.41667\n70090|0.69444\n70091|0.625\n70092|0.61111\n70093|0.59722\n70094|0.81944\n70095|0.79167\n70096|0.80556\n70097|0.86111\n70098|0.55556\n70099|0.22222\n70100|0.19444\n70101|0.30556\n70102|0.38889\n70103|0.52778\n70104|0.79167\n70105|0.56944\n70106|0.69444\n70107|0.69444\n70108|0.68056\n70109|0.76389\n70110|0.73611\n70111|0.83333\n70112|0.83333\n70113|0.84722\n70114|0.875\n70115|0.69444\n70116|0.77778\n70117|0.33333\n70118|0.38889\n70119|0.375\n70120|0.65278\n70121|0.54167\n70122|0.80556\n70123|0.72222\n70124|0.94444\n70125|0.73611\n70126|0.58333\n70127|0.73611\n70128|0.77778\n70129|0.30556\n70130|0.36111\n70131|0.38889\n70132|0.54167\n70133|0.58333\n70134|0.76389\n70135|0.69444\n70136|0.75\n70137|0.79167\n70138|0.80556\n70139|0.84722\n70140|0.65278\n70141|0.61111\n70142|0.77778\n70143|0.22222\n70144|0.63889\n70145|0.44444\n70146|0.65278\n70147|0.65278\n70148|0.81944\n70149|0.51389\n70150|0.81944\n70151|0.69444\n70152|0.66667\n70153|0.80556\n70154|0.76389\n70155|0.38889\n70156|0.5\n70157|0.83333\n70158|0.5\n70159|0.41667\n70160|0.52778\n70161|0.52778\n70162|0.70833\n70163|0.33333\n70164|0.81944\n70165|0.54167\n70166|0.5\n70167|0.73611\n70168|0.88889\n70169|0.5\n70170|0.5\n70171|0.76389\n70172|0.51389\n70173|0.75\n70174|0.59722\n70175|0.58333\n70176|0.83333\n70177|0.72222\n70178|0.86111\n70179|0.625\n70180|0.79167\n70181|0.55556\n70182|0.44444\n70183|0.44444\n70184|0.55556\n70185|0.63889\n70186|0.61111\n70187|0.80556\n70188|0.61111\n70189|0.55556\n70190|0.80556\n70191|0.91667\n70192|0.81944\n70193|0.66667\n70194|0.65278\n70195|0.77778\n70196|0.86111\n70197|0.5\n70198|0.5\n70199|0.65278\n70200|0.44444\n70201|0.55556\n70202|0.69444\n70203|0.75\n70204|0.63889\n70205|1\n70206|0.68056\n70207|0.72222\n70208|0.70833\n70209|0.61111\n70210|0.70833\n70211|0.88889\n70212|0.58333\n70213|0.76389\n70214|0.76389\n70215|0.75\n70216|0.80556\n70217|0.76389\n70218|0.95833\n70219|0.88889\n70220|0.80556\n70221|0.91667\n70222|0.875\n70223|0.77778\n70224|0.77778\n70225|0.90278\n70226|0.79167\n70227|0.80556\n70228|0.80556\n70229|0.86111\n70230|0.81944\n70231|0.72222\n70232|0.31944\n70233|0.38889\n70234|0.52778\n70235|0.77778\n70236|0.68056\n70237|0.83333\n70238|0.52778\n70239|0.56944\n70240|0.45833\n70241|0.41667\n70242|0.77778\n70243|0.84722\n70244|0.40278\n70245|0.27778\n70246|0.31944\n70247|0.77778\n70248|0.65278\n70249|0.25\n70250|0.45833\n70251|0.34722\n70252|0.54167\n70253|0.51389\n70254|0.38889\n70255|0.43056\n70256|0.61111\n70257|0.41667\n70258|0.84722\n70259|0.73611\n70260|0.90278\n70261|0.91667\n70262|0.79167\n70263|0.77778\n70264|0.65278\n70265|0.75\n70266|0.79167\n70267|0.79167\n70268|0.75\n70269|0.84722\n70270|0.52778\n70271|0.61111\n70272|0.58333\n70273|0.65278\n70274|0.51389\n70275|0.65278\n70276|0.52778\n70277|0.66667\n70278|0.58333\n70279|0.52778\n70280|0.44444\n70281|0.75\n70282|0.5\n70283|0.625\n70284|0.79167\n70285|0.55556\n70286|0.5\n70287|0.625\n70288|0.44444\n70289|0.38889\n70290|0.38889\n70291|0.44444\n70292|0.65278\n70293|0.68056\n70294|0.69444\n70295|0.72222\n70296|0.76389\n70297|0.58333\n70298|0.80556\n70299|0.81944\n70300|0.5\n70301|0.69444\n70302|0.56944\n70303|0.5\n70304|0.27778\n70305|0.43056\n70306|0.375\n70307|0.66667\n70308|0.75\n70309|0.70833\n70310|0.77778\n70311|0.52778\n70312|0.38889\n70313|0.77778\n70314|0.5\n70315|0.44444\n70316|0.86111\n70317|0.88889\n70318|0.38889\n70319|0.44444\n70320|0.75\n70321|0.72222\n70322|0.56944\n70323|0.58333\n70324|0.38889\n70325|0.19444\n70326|0.34722\n70327|0.34722\n70328|0.72222\n70329|0.77778\n70330|0.5\n70331|0.5\n70332|0.40278\n70333|0.375\n70334|0.33333\n70335|0.65278\n70336|0.625\n70337|0.59722\n70338|0.19444\n70339|0.59722\n70340|0.72222\n70341|0.38889\n70342|0.68056\n70343|0.44444\n70344|0.54167\n70345|0.34722\n70346|0.65278\n70347|0.30556\n70348|0.70833\n70349|0.40278\n70350|0.61111\n70351|0.55556\n70352|0.30556\n70353|0.5\n70354|0.79167\n70355|0.63889\n70356|0.41667\n70357|0.61111\n70358|0.34722\n70359|0.66667\n70360|0.66667\n70361|0.66667\n70362|0.77778\n70363|0.36111\n70364|0.73611\n70365|0.30556\n70366|0.55556\n70367|0.22222\n70368|0.69444\n70369|0.43056\n70370|0.52778\n70371|0.25\n70372|0.69444\n70373|0.41667\n70374|0.69444\n70375|0.65278\n70376|0.69444\n70377|0.88889\n70378|0.66667\n70379|0.51389\n70380|0.5\n70381|0.59722\n70382|0.70833\n70383|0.375\n70384|0.23611\n70385|0.5\n70386|0.56944\n70387|0.51389\n70388|0.70833\n70389|0.80556\n70390|0.76389\n70391|0.86111\n70392|0.95833\n70393|0.55556\n70394|0.73611\n70395|0.83333\n70396|0.90278\n70397|0.69444\n70398|0.5\n70399|0.44444\n70400|0.51389\n70401|0.29167\n70402|0.5\n70403|0.80556\n70404|0.68056\n70405|0.5\n70406|0.72222\n70407|0.54167\n70408|0.79167\n70409|0.73611\n70410|0.625\n70411|0.75\n70412|0.56944\n70413|0.5\n70414|0.51389\n70415|0.5\n70416|0.55556\n70417|0.5\n70418|0.51389\n70419|0.16667\n70420|0.20833\n70421|0.36111\n70422|0.5\n70423|0.63889\n70424|0.5\n70425|0.5\n70426|0.30556\n70427|0.52778\n70428|0.51389\n70429|0.66667\n70430|0.83333\n70431|0.5\n70432|0.63889\n70433|0.47222\n70434|0.5\n70435|0.5\n70436|0.5\n70437|0.51389\n70438|0.33333\n70439|0.5\n70440|0.25\n70441|0.5\n70442|0.55556\n70443|0.5\n70444|0.625\n70445|0.88889\n70446|0.84722\n70447|0.91667\n70448|0.88889\n70449|0.5\n70450|0.59722\n70451|0.73611\n70452|0.77778\n70453|0.76389\n70454|0.31944\n70455|0.33333\n70456|0.55556\n70457|0.47222\n70458|0.72222\n70459|0.5\n70460|0.5\n70461|0.59722\n70462|0.58333\n70463|0.5\n70464|0.5\n70465|0.51389\n70466|0.69444\n70467|0.48611\n70468|0.5\n70469|0.52778\n70470|0.5\n70471|0.66667\n70472|0.52778\n70473|0.5\n70474|0.52778\n70475|0.66667\n70476|0.72222\n70477|0.56944\n70478|0.27778\n70479|0.23611\n70480|0.43056\n70481|0.59722\n70482|0.47222\n70483|0.33333\n70484|0.73611\n70485|0.77778\n70486|0.56944\n70487|0.5\n70488|0.61111\n70489|0.5\n70490|0.63889\n70491|0.5\n70492|0.43056\n70493|0.45833\n70494|0.61111\n70495|0.5\n70496|0.45833\n70497|0.55556\n70498|0.5\n70499|0.5\n70500|0.88889\n70501|0.5\n70502|0.5\n70503|0.5\n70504|0.5\n70505|0.5\n70506|0.54167\n70507|0.5\n70508|0.81944\n70509|0.5\n70510|0.51389\n70511|0.5\n70512|0.88889\n70513|0.5\n70514|0.55556\n70515|0.54167\n70516|0.5\n70517|0.80556\n70518|0.5\n70519|0.75\n70520|0.5\n70521|0.5\n70522|0.56944\n70523|0.56944\n70524|0.5\n70525|0.5\n70526|0.5\n70527|0.44444\n70528|0.47222\n70529|0.68056\n70530|0.38889\n70531|0.5\n70532|0.48611\n70533|0.5\n70534|0.5\n70535|0.5\n70536|0.5\n70537|0.5\n70538|0.63889\n70539|0.63889\n70540|0.88889\n70541|0.83333\n70542|0.66667\n70543|0.625\n70544|0.5\n70545|0.38889\n70546|0.47222\n70547|0.68056\n70548|0.625\n70549|0.44444\n70550|0.76389\n70551|0.68056\n70552|0.54167\n70553|0.47222\n70554|0.61111\n70555|0.45833\n70556|0.69444\n70557|0.95833\n70558|0.5\n70559|0.625\n70560|0.81944\n70561|0.36111\n70562|0.72222\n70563|0.77778\n70564|0.75\n70565|0.58333\n70566|0.65278\n70567|0.73611\n70568|0.38889\n70569|0.86111\n70570|0.36111\n70571|0.52778\n70572|0.65278\n70573|0.77778\n70574|0.54167\n70575|0.76389\n70576|0.55556\n70577|0.91667\n70578|0.5\n70579|0.5\n70580|0.31944\n70581|0.61111\n70582|0.5\n70583|0.33333\n70584|0.5\n70585|0.5\n70586|0.5\n70587|0.68056\n70588|0.76389\n70589|0.51389\n70590|0.5\n70591|0.5\n70592|0.5\n70593|0.5\n70594|0.5\n70595|0.41667\n70596|0.55556\n70597|0.51389\n70598|0.5\n70599|0.5\n70600|0.5\n70601|0.5\n70602|0.66667\n70603|0.5\n70604|0.51389\n70605|0.51389\n70606|0.5\n70607|0.83333\n70608|0.79167\n70609|0.5\n70610|0.47222\n70611|0.5\n70612|0.81944\n70613|0.875\n70614|0.83333\n70615|0.875\n70616|1\n70617|0.66667\n70618|0.83333\n70619|0.69444\n70620|0.83333\n70621|0.875\n70622|0.52778\n70623|0.5\n70624|0.91667\n70625|0.38889\n70626|0.5\n70627|0.5\n70628|0.84722\n70629|0.5\n70630|0.5\n70631|0.73611\n70632|0.5\n70633|0.56944\n70634|0.65278\n70635|0.51389\n70636|0.59722\n70637|0.77778\n70638|0.80556\n70639|0.61111\n70640|0.75\n70641|0.73611\n70642|0.75\n70643|0.76389\n70644|0.55556\n70645|0.94444\n70646|0.58333\n70647|0.83333\n70648|0.5\n70649|0.5\n70650|0.38889\n70651|0.55556\n70652|0.65278\n70653|0.63889\n70654|0.43056\n70655|0.5\n70656|0.5\n70657|0.51389\n70658|0.5\n70659|0.59722\n70660|0.41667\n70661|0.5\n70662|0.5\n70663|0.61111\n70664|0.61111\n70665|0.5\n70666|0.59722\n70667|0.76389\n70668|0.5\n70669|0.5\n70670|0.5\n70671|0.86111\n70672|0.51389\n70673|0.5\n70674|0.5\n70675|0.56944\n70676|0.38889\n70677|0.52778\n70678|0.38889\n70679|0.76389\n70680|0.72222\n70681|0.72222\n70682|0.5\n70683|0.5\n70684|0.41667\n70685|0.56944\n70686|0.47222\n70687|0.5\n70688|0.45833\n70689|0.875\n70690|0.86111\n70691|0.81944\n70692|0.5\n70693|0.69444\n70694|0.68056\n70695|0.73611\n70696|0.79167\n70697|0.5\n70698|0.61111\n70699|0.77778\n70700|0.76389\n70701|0.52778\n70702|0.40278\n70703|0.5\n70704|0.5\n70705|0.51389\n70706|0.5\n70707|0.5\n70708|0.5\n70709|0.5\n70710|0.63889\n70711|0.33333\n70712|0.29167\n70713|0.54167\n70714|0.73611\n70715|0.77778\n70716|0.61111\n70717|0.81944\n70718|0.31944\n70719|0.51389\n70720|0.51389\n70721|0.55556\n70722|0.5\n70723|0.83333\n70724|0.79167\n70725|0.5\n70726|0.5\n70727|0.43056\n70728|0.40278\n70729|0.38889\n70730|0.31944\n70731|0.41667\n70732|0.375\n70733|0.68056\n70734|0.43056\n70735|0.5\n70736|0.45833\n70737|0.5\n70738|0.45833\n70739|0.31944\n70740|0.38889\n70741|0.27778\n70742|0.54167\n70743|0.5\n70744|0.625\n70745|0.79167\n70746|0.81944\n70747|0.79167\n70748|0.80556\n70749|0.77778\n70750|0.76389\n70751|0.5\n70752|0.5\n70753|0.5\n70754|0.5\n70755|0.5\n70756|0.5\n70757|0.55556\n70758|0.5\n70759|0.5\n70760|0.86111\n70761|0.5\n70762|0.56944\n70763|0.52778\n70764|0.875\n70765|0.75\n70766|0.5\n70767|0.5\n70768|0.75\n70769|0.5\n70770|0.5\n70771|0.5\n70772|0.5\n70773|0.5\n70774|0.51389\n70775|0.51389\n70776|0.5\n70777|0.5\n70778|0.5\n70779|0.5\n70780|0.5\n70781|0.41667\n70782|0.27778\n70783|0.48611\n70784|0.25\n70785|0.75\n70786|0.56944\n70787|0.5\n70788|0.66667\n70789|0.79167\n70790|0.59722\n70791|0.75\n70792|0.73611\n70793|0.77778\n70794|0.76389\n70795|0.48611\n70796|0.55556\n70797|0.51389\n70798|0.84722\n70799|0.69444\n70800|0.72222\n70801|0.76389\n70802|0.55556\n70803|0.84722\n70804|0.94444\n70805|0.83333\n70806|0.66667\n70807|0.875\n70808|0.875\n70809|0.81944\n70810|0.90278\n70811|0.625\n70812|0.69444\n70813|0.83333\n70814|0.72222\n70815|0.76389\n70816|0.52778\n70817|0.40278\n70818|0.65278\n70819|0.66667\n70820|0.77778\n70821|0.58333\n70822|0.875\n70823|0.625\n70824|0.72222\n70825|0.72222\n70826|0.75\n70827|0.83333\n70828|0.79167\n70829|0.72222\n70830|0.86111\n70831|0.55556\n70832|0.66667\n70833|1\n70834|0.61111\n70835|0.69444\n70836|0.33333\n70837|0.72222\n70838|0.38889\n70839|0.72222\n70840|0.55556\n70841|0.88889\n70842|0.52778\n70843|0.93056\n70844|0.66667\n70845|0.88889\n70846|0.5\n70847|0.68056\n70848|0.54167\n70849|0.31944\n70850|0.40278\n70851|0.38889\n70852|0.72222\n70853|0.77778\n70854|0.69444\n70855|0.5\n70856|0.56944\n70857|0.36111\n70858|0.72222\n70859|0.51389\n70860|0.61111\n70861|0.51389\n70862|0.5\n70863|0.69444\n70864|0.76389\n70865|0.61111\n70866|0.52778\n70867|0.68056\n70868|0.72222\n70869|0.61111\n70870|0.61111\n70871|0.34722\n70872|0.65278\n70873|0.44444\n70874|0.65278\n70875|0.625\n70876|0.81944\n70877|0.63889\n70878|0.59722\n70879|0.41667\n70880|0.86111\n70881|0.44444\n70882|0.625\n70883|0.5\n70884|0.84722\n70885|0.55556\n70886|0.77778\n70887|0.43056\n70888|0.68056\n70889|0.45833\n70890|0.79167\n70891|0.40278\n70892|0.22222\n70893|0.47222\n70894|0.58333\n70895|0.5\n70896|0.75\n70897|0.44444\n70898|0.55556\n70899|0.43056\n70900|0.65278\n70901|0.66667\n70902|0.84722\n70903|0.80556\n70904|0.72222\n70905|0.625\n70906|0.72222\n70907|0.59722\n70908|0.61111\n70909|0.43056\n70910|0.75\n70911|0.40278\n70912|0.63889\n70913|0.375\n70914|0.66667\n70915|0.52778\n70916|0.625\n70917|0.72222\n70918|0.44444\n70919|0.45833\n70920|0.43056\n70921|0.30556\n70922|0.66667\n70923|0.5\n70924|0.59722\n70925|0.68056\n70926|0.55556\n70927|0.22222\n70928|0.43056\n70929|0.125\n70930|0.51389\n70931|0.625\n70932|0.61111\n70933|0.43056\n70934|0.26389\n70935|0.5\n70936|0.58333\n70937|0.77778\n70938|0.44444\n70939|0.56944\n70940|0.65278\n70941|0.80556\n70942|0.76389\n70943|0.81944\n70944|0.79167\n70945|0.90278\n70946|0.875\n70947|0.97222\n70948|0.70833\n70949|0.55556\n70950|0.5\n70951|0.5\n70952|0.5\n70953|0.55556\n70954|0.59722\n70955|0.5\n70956|0.5\n70957|0.65278\n70958|0.73611\n70959|0.79167\n70960|0.5\n70961|0.5\n70962|0.72222\n70963|0.625\n70964|0.68056\n70965|0.70833\n70966|0.65278\n70967|0.52778\n70968|0.47222\n70969|0.5\n70970|0.5\n70971|0.5\n70972|0.65278\n70973|0.72222\n70974|0.81944\n70975|0.52778\n70976|0.43056\n70977|0.5\n70978|0.80556\n70979|0.5\n70980|0.83333\n70981|0.5\n70982|0.68056\n70983|0.5\n70984|0.81944\n70985|0.51389\n70986|0.41667\n70987|0.55556\n70988|0.76389\n70989|0.75\n70990|0.73611\n70991|0.72222\n70992|0.66667\n70993|0.72222\n70994|0.90278\n70995|0.34722\n70996|0.59722\n70997|0.83333\n70998|0.75\n70999|0.61111\n71000|0.86111\n71001|0.52778\n71002|0.41667\n71003|0.30556\n71004|0.375\n71005|0.31944\n71006|0.66667\n71007|0.33333\n71008|0.66667\n71009|0.52778\n71010|0.58333\n71011|0.5\n71012|0.43056\n71013|0.51389\n71014|0.79167\n71015|0.80556\n71016|0.5\n71017|0.68056\n71018|0.55556\n71019|0.52778\n71020|0.63889\n71021|0.58333\n71022|0.5\n71023|0.65278\n71024|0.625\n71025|0.72222\n71026|0.68056\n71027|0.83333\n71028|0.81944\n71029|0.69444\n71030|0.61111\n71031|0.75\n71032|0.83333\n71033|0.5\n71034|0.5\n71035|0.5\n71036|0.59722\n71037|0.5\n71038|0.55556\n71039|0.68056\n71040|0.77778\n71041|0.75\n71042|0.61111\n71043|0.80556\n71044|0.77778\n71045|0.79167\n71046|0.73611\n71047|0.5\n71048|0.58333\n71049|0.54167\n71050|0.5\n71051|0.61111\n71052|0.72222\n71053|0.76389\n71054|0.5\n71055|0.5\n71056|0.5\n71057|0.5\n71058|0.5\n71059|0.5\n71060|0.69444\n71061|0.80556\n71062|0.375\n71063|0.5\n71064|0.61111\n71065|0.72222\n71066|0.63889\n71067|0.75\n71068|0.73611\n71069|0.76389\n71070|0.73611\n71071|0.73611\n71072|0.5\n71073|0.56944\n71074|0.77778\n71075|0.77778\n71076|0.625\n71077|0.69444\n71078|0.83333\n71079|0.5\n71080|0.80556\n71081|0.51389\n71082|0.76389\n71083|0.51389\n71084|0.56944\n71085|0.59722\n71086|0.61111\n71087|0.47222\n71088|0.38889\n71089|0.69444\n71090|0.91667\n71091|0.66667\n71092|0.56944\n71093|0.5\n71094|0.5\n71095|0.5\n71096|0.90278\n71097|0.5\n71098|0.63889\n71099|0.81944\n71100|0.51389\n71101|0.56944\n71102|0.5\n71103|0.5\n71104|0.76389\n71105|0.5\n71106|0.625\n71107|0.5\n71108|0.5\n71109|0.5\n71110|0.5\n71111|0.5\n71112|0.5\n71113|0.5\n71114|0.68056\n71115|0.79167\n71116|0.58333\n71117|0.61111\n71118|0.55556\n71119|0.65278\n71120|0.41667\n71121|0.66667\n71122|0.88889\n71123|0.58333\n71124|0.75\n71125|0.77778\n71126|0.83333\n71127|0.83333\n71128|0.5\n71129|0.54167\n71130|0.44444\n71131|0.83333\n71132|0.27778\n71133|0.55556\n71134|0.44444\n71135|0.75\n71136|0.73611\n71137|0.56944\n71138|0.83333\n71139|0.76389\n71140|0.29167\n71141|0.5\n71142|0.52778\n71143|0.29167\n71144|0.81944\n71145|0.43056\n71146|0.56944\n71147|0.66667\n71148|0.69444\n71149|0.30556\n71150|0.52778\n71151|0.86111\n71152|0.40278\n71153|0.79167\n71154|0.58333\n71155|0.66667\n71156|0.375\n71157|0.38889\n71158|0.44444\n71159|0.69444\n71160|0.73611\n71161|0.5\n71162|0.5\n71163|0.73611\n71164|0.61111\n71165|0.84722\n71166|0.5\n71167|0.47222\n71168|0.5\n71169|0.45833\n71170|0.5\n71171|0.51389\n71172|0.5\n71173|0.51389\n71174|0.5\n71175|0.44444\n71176|0.5\n71177|0.47222\n71178|0.5\n71179|0.5\n71180|0.5\n71181|0.52778\n71182|0.56944\n71183|0.5\n71184|0.5\n71185|0.5\n71186|0.5\n71187|0.51389\n71188|0.81944\n71189|0.34722\n71190|0.80556\n71191|0.5\n71192|0.73611\n71193|0.5\n71194|0.5\n71195|0.48611\n71196|0.55556\n71197|0.59722\n71198|0.51389\n71199|0.55556\n71200|0.5\n71201|0.34722\n71202|0.61111\n71203|0.5\n71204|0.61111\n71205|0.5\n71206|0.86111\n71207|0.55556\n71208|0.66667\n71209|0.5\n71210|0.51389\n71211|0.73611\n71212|0.47222\n71213|0.61111\n71214|0.56944\n71215|0.52778\n71216|0.5\n71217|0.43056\n71218|0.5\n71219|0.58333\n71220|0.5\n71221|0.63889\n71222|0.5\n71223|0.5\n71224|0.43056\n71225|0.5\n71226|0.5\n71227|0.61111\n71228|0.44444\n71229|0.5\n71230|0.59722\n71231|0.68056\n71232|0.5\n71233|0.63889\n71234|0.5\n71235|0.69444\n71236|0.47222\n71237|0.5\n71238|0.625\n71239|0.5\n71240|0.51389\n71241|0.5\n71242|0.5\n71243|0.5\n71244|0.34722\n71245|0.48611\n71246|0.5\n71247|0.5\n71248|0.5\n71249|0.55556\n71250|0.5\n71251|0.56944\n71252|0.5\n71253|0.5\n71254|0.5\n71255|0.61111\n71256|0.51389\n71257|0.5\n71258|0.58333\n71259|0.5\n71260|0.61111\n71261|0.55556\n71262|0.52778\n71263|0.81944\n71264|0.52778\n71265|0.55556\n71266|0.55556\n71267|0.48611\n71268|0.5\n71269|0.51389\n71270|0.44444\n71271|0.33333\n71272|0.44444\n71273|0.33333\n71274|0.5\n71275|0.83333\n71276|0.94444\n71277|0.83333\n71278|0.86111\n71279|0.86111\n71280|0.80556\n71281|0.84722\n71282|0.88889\n71283|0.70833\n71284|0.77778\n71285|0.55556\n71286|0.66667\n71287|0.86111\n71288|0.65278\n71289|0.66667\n71290|0.66667\n71291|0.5\n71292|0.5\n71293|0.56944\n71294|0.5\n71295|0.5\n71296|0.51389\n71297|0.65278\n71298|0.54167\n71299|0.5\n71300|0.59722\n71301|0.20833\n71302|0.43056\n71303|0.41667\n71304|0.29167\n71305|0.22222\n71306|0.22222\n71307|0.70833\n71308|0.68056\n71309|0.79167\n71310|0.375\n71311|0.31944\n71312|0.30556\n71313|0.77778\n71314|0.58333\n71315|0.36111\n71316|0.51389\n71317|0.79167\n71318|0.68056\n71319|0.33333\n71320|0.55556\n71321|0.81944\n71322|0.5\n71323|0.66667\n71324|0.66667\n71325|0.73611\n71326|0.93056\n71327|0.86111\n71328|0.59722\n71329|0.5\n71330|0.43056\n71331|0.65278\n71332|0.45833\n71333|0.44444\n71334|0.5\n71335|0.33333\n71336|0.55556\n71337|0.72222\n71338|0.70833\n71339|0.69444\n71340|0.45833\n71341|0.5\n71342|0.48611\n71343|0.79167\n71344|0.77778\n71345|0.77778\n71346|0.5\n71347|0.81944\n71348|0.81944\n71349|0.68056\n71350|0.80556\n71351|0.76389\n71352|0.61111\n71353|0.84722\n71354|0.5\n71355|0.70833\n71356|0.69444\n71357|0.5\n71358|0.41667\n71359|0.72222\n71360|0.61111\n71361|0.55556\n71362|0.77778\n71363|0.84722\n71364|0.81944\n71365|0.5\n71366|0.22222\n71367|0.48611\n71368|0.66667\n71369|0.77778\n71370|0.5\n71371|0.63889\n71372|0.51389\n71373|0.69444\n71374|0.58333\n71375|0.66667\n71376|0.58333\n71377|0.84722\n71378|0.72222\n71379|0.66667\n71380|0.79167\n71381|0.33333\n71382|0.44444\n71383|0.375\n71384|0.27778\n71385|0.47222\n71386|0.43056\n71387|0.33333\n71388|0.19444\n71389|0.44444\n71390|0.72222\n71391|0.5\n71392|0.5\n71393|0.68056\n71394|0.55556\n71395|0.63889\n71396|0.5\n71397|0.79167\n71398|0.625\n71399|0.91667\n71400|0.72222\n71401|0.66667\n71402|0.72222\n71403|0.70833\n71404|0.63889\n71405|0.65278\n71406|0.73611\n71407|0.81944\n71408|0.625\n71409|0.73611\n71410|0.69444\n71411|0.61111\n71412|0.77778\n71413|0.81944\n71414|0.72222\n71415|0.80556\n71416|0.5\n71417|0.5\n71418|0.44444\n71419|0.38889\n71420|0.5\n71421|0.58333\n71422|0.90278\n71423|0.5\n71424|0.59722\n71425|0.29167\n71426|0.48611\n71427|0.83333\n71428|0.5\n71429|0.81944\n71430|0.875\n71431|0.61111\n71432|0.5\n71433|0.77778\n71434|0.56944\n71435|0.69444\n71436|0.56944\n71437|0.83333\n71438|0.77778\n71439|0.79167\n71440|0.77778\n71441|0.18056\n71442|0.27778\n71443|0.43056\n71444|0.26389\n71445|0.5\n71446|0.54167\n71447|0.58333\n71448|0.56944\n71449|0.40278\n71450|0.52778\n71451|0.44444\n71452|0.59722\n71453|0.52778\n71454|0.66667\n71455|0.58333\n71456|0.55556\n71457|0.56944\n71458|0.51389\n71459|0.5\n71460|0.70833\n71461|0.73611\n71462|0.80556\n71463|0.61111\n71464|0.69444\n71465|0.66667\n71466|0.68056\n71467|0.69444\n71468|0.77778\n71469|0.5\n71470|0.5\n71471|0.65278\n71472|0.55556\n71473|0.38889\n71474|0.5\n71475|0.88889\n71476|0.51389\n71477|0.69444\n71478|0.51389\n71479|0.66667\n71480|0.83333\n71481|0.66667\n71482|0.54167\n71483|0.5\n71484|0.68056\n71485|0.81944\n71486|0.30556\n71487|0.45833\n71488|0.77778\n71489|0.63889\n71490|0.77778\n71491|0.66667\n71492|0.5\n71493|0.48611\n71494|0.5\n71495|0.44444\n71496|0.38889\n71497|0.44444\n71498|0.44444\n71499|0.56944\n71500|0.61111\n71501|0.83333\n71502|0.41667\n71503|0.47222\n71504|0.5\n71505|0.38889\n71506|0.55556\n71507|0.58333\n71508|0.58333\n71509|0.5\n71510|0.73611\n71511|0.44444\n71512|0.34722\n71513|0.5\n71514|0.65278\n71515|0.65278\n71516|0.65278\n71517|0.66667\n71518|0.68056\n71519|0.80556\n71520|0.52778\n71521|0.55556\n71522|0.75\n71523|0.70833\n71524|0.66667\n71525|0.58333\n71526|0.80556\n71527|0.5\n71528|0.79167\n71529|0.41667\n71530|0.65278\n71531|0.66667\n71532|0.77778\n71533|0.77778\n71534|0.73611\n71535|0.86111\n71536|0.81944\n71537|0.75\n71538|0.77778\n71539|0.77778\n71540|0.81944\n71541|0.84722\n71542|0.76389\n71543|0.83333\n71544|0.66667\n71545|0.76389\n71546|0.75\n71547|0.875\n71548|0.5\n71549|0.45833\n71550|0.58333\n71551|0.76389\n71552|0.88889\n71553|0.51389\n71554|0.68056\n71555|0.59722\n71556|0.68056\n71557|0.58333\n71558|0.73611\n71559|0.54167\n71560|0.45833\n71561|0.51389\n71562|0.43056\n71563|0.75\n71564|0.55556\n71565|0.47222\n71566|0.625\n71567|0.51389\n71568|0.70833\n71569|0.51389\n71570|0.77778\n71571|0.68056\n71572|0.5\n71573|0.61111\n71574|0.45833\n71575|0.44444\n71576|0.5\n71577|0.51389\n71578|0.5\n71579|0.59722\n71580|0.44444\n71581|0.30556\n71582|0.27778\n71583|0.38889\n71584|0.36111\n71585|0.27778\n71586|0.44444\n71587|0.18056\n71588|0.54167\n71589|0.26389\n71590|0.16667\n71591|0.625\n71592|0.83333\n71593|0.38889\n71594|0.45833\n71595|0.55556\n71596|0.51389\n71597|0.44444\n71598|0.51389\n71599|0.75\n71600|0.61111\n71601|0.81944\n71602|0.55556\n71603|0.90278\n71604|0.79167\n71605|0.72222\n71606|0.88889\n71607|0.76389\n71608|0.83333\n71609|0.90278\n71610|0.83333\n71611|0.79167\n71612|0.68056\n71613|0.77778\n71614|0.51389\n71615|0.61111\n71616|0.88889\n71617|0.65278\n71618|0.76389\n71619|0.72222\n71620|0.66667\n71621|0.75\n71622|0.86111\n71623|0.5\n71624|0.72222\n71625|0.86111\n71626|0.38889\n71627|0.48611\n71628|0.65278\n71629|0.59722\n71630|0.5\n71631|0.5\n71632|0.56944\n71633|0.81944\n71634|0.51389\n71635|0.625\n71636|0.55556\n71637|0.45833\n71638|0.61111\n71639|0.52778\n71640|0.83333\n71641|0.58333\n71642|0.5\n71643|0.52778\n71644|0.48611\n71645|0.5\n71646|0.45833\n71647|0.75\n71648|0.80556\n71649|0.75\n71650|0.55556\n71651|0.86111\n71652|0.80556\n71653|0.30556\n71654|0.875\n71655|0.38889\n71656|0.61111\n71657|0.76389\n71658|0.48611\n71659|0.76389\n71660|0.90278\n71661|0.84722\n71662|0.73611\n71663|0.625\n71664|0.875\n71665|0.83333\n71666|0.72222\n71667|0.73611\n71668|0.76389\n71669|0.72222\n71670|0.66667\n71671|0.79167\n71672|0.83333\n71673|0.77778\n71674|0.63889\n71675|0.91667\n71676|0.70833\n71677|0.31944\n71678|0.38889\n71679|0.5\n71680|0.61111\n71681|0.66667\n71682|0.63889\n71683|0.83333\n71684|0.77778\n71685|0.58333\n71686|0.59722\n71687|0.45833\n71688|0.61111\n71689|0.51389\n71690|0.47222\n71691|0.5\n71692|0.48611\n71693|0.58333\n71694|0.68056\n71695|0.47222\n71696|0.875\n71697|0.65278\n71698|0.79167\n71699|0.73611\n71700|0.59722\n71701|0.77778\n71702|0.44444\n71703|0.52778\n71704|0.5\n71705|0.72222\n71706|0.69444\n71707|0.83333\n71708|0.77778\n71709|0.80556\n71710|0.88889\n71711|0.83333\n71712|0.83333\n71713|0.65278\n71714|0.40278\n71715|0.5\n71716|0.48611\n71717|0.68056\n71718|0.55556\n71719|0.72222\n71720|0.38889\n71721|0.5\n71722|0.66667\n71723|0.81944\n71724|0.68056\n71725|0.77778\n71726|0.59722\n71727|0.5\n71728|0.66667\n71729|0.65278\n71730|0.83333\n71731|0.5\n71732|0.5\n71733|0.72222\n71734|0.61111\n71735|0.80556\n71736|0.70833\n71737|0.61111\n71738|0.55556\n71739|0.77778\n71740|0.76389\n71741|0.69444\n71742|0.58333\n71743|0.75\n71744|0.68056\n71745|0.80556\n71746|0.59722\n71747|0.61111\n71748|0.69444\n71749|0.88889\n71750|0.69444\n71751|0.66667\n71752|0.93056\n71753|0.38889\n71754|0.76389\n71755|0.77778\n71756|0.5\n71757|0.80556\n71758|0.69444\n71759|0.90278\n71760|0.72222\n71761|0.81944\n71762|0.90278\n71763|0.83333\n71764|0.95833\n71765|0.69444\n71766|0.70833\n71767|0.75\n71768|0.33333\n71769|0.45833\n71770|0.77778\n71771|0.51389\n71772|0.45833\n71773|0.40278\n71774|0.65278\n71775|0.61111\n71776|0.68056\n71777|0.66667\n71778|0.81944\n71779|0.77778\n71780|0.63889\n71781|0.65278\n71782|0.75\n71783|0.77778\n71784|0.5\n71785|0.31944\n71786|0.43056\n71787|0.625\n71788|0.66667\n71789|0.55556\n71790|0.77778\n71791|0.80556\n71792|0.81944\n71793|0.875\n71794|0.70833\n71795|0.79167\n71796|0.59722\n71797|0.55556\n71798|0.83333\n71799|0.45833\n71800|0.33333\n71801|0.625\n71802|0.79167\n71803|0.80556\n71804|0.91667\n71805|0.58333\n71806|0.91667\n71807|0.80556\n71808|0.75\n71809|0.5\n71810|0.55556\n71811|0.70833\n71812|0.80556\n71813|0.55556\n71814|0.72222\n71815|0.86111\n71816|0.80556\n71817|0.73611\n71818|0.66667\n71819|0.66667\n71820|0.61111\n71821|0.5\n71822|0.70833\n71823|0.91667\n71824|0.84722\n71825|0.83333\n71826|0.73611\n71827|0.80556\n71828|0.77778\n71829|0.63889\n71830|0.48611\n71831|0.45833\n71832|0.51389\n71833|0.68056\n71834|0.76389\n71835|0.45833\n71836|0.38889\n71837|0.66667\n71838|0.43056\n71839|0.59722\n71840|0.40278\n71841|0.44444\n71842|0.55556\n71843|0.93056\n71844|0.51389\n71845|0.58333\n71846|0.5\n71847|0.61111\n71848|0.30556\n71849|0.5\n71850|0.5\n71851|0.38889\n71852|0.66667\n71853|0.38889\n71854|0.48611\n71855|0.625\n71856|0.70833\n71857|0.84722\n71858|0.79167\n71859|0.80556\n71860|0.5\n71861|0.40278\n71862|0.375\n71863|0.34722\n71864|0.5\n71865|0.84722\n71866|0.5\n71867|0.59722\n71868|0.66667\n71869|0.68056\n71870|0.73611\n71871|0.72222\n71872|0.44444\n71873|0.5\n71874|0.48611\n71875|0.70833\n71876|0.41667\n71877|0.59722\n71878|0.52778\n71879|0.48611\n71880|0.41667\n71881|0.5\n71882|0.625\n71883|0.73611\n71884|0.77778\n71885|0.61111\n71886|0.69444\n71887|0.625\n71888|0.72222\n71889|0.80556\n71890|0.51389\n71891|0.61111\n71892|0.70833\n71893|0.69444\n71894|0.80556\n71895|0.5\n71896|0.59722\n71897|0.55556\n71898|0.44444\n71899|0.66667\n71900|0.5\n71901|0.44444\n71902|0.27778\n71903|0.5\n71904|0.68056\n71905|0.45833\n71906|0.44444\n71907|0.27778\n71908|0.375\n71909|0.5\n71910|0.59722\n71911|0.59722\n71912|0.51389\n71913|0.36111\n71914|0.58333\n71915|0.58333\n71916|0.83333\n71917|0.77778\n71918|0.83333\n71919|0.79167\n71920|0.59722\n71921|0.5\n71922|0.65278\n71923|0.72222\n71924|0.63889\n71925|0.625\n71926|0.63889\n71927|0.59722\n71928|0.61111\n71929|0.66667\n71930|0.76389\n71931|0.73611\n71932|0.77778\n71933|0.65278\n71934|0.72222\n71935|0.63889\n71936|0.63889\n71937|0.72222\n71938|0.5\n71939|0.55556\n71940|0.63889\n71941|0.83333\n71942|0.63889\n71943|0.76389\n71944|0.5\n71945|0.51389\n71946|0.73611\n71947|0.54167\n71948|0.69444\n71949|0.55556\n71950|0.66667\n71951|0.95833\n71952|0.86111\n71953|0.70833\n71954|0.86111\n71955|0.86111\n71956|0.80556\n71957|0.875\n71958|0.5\n71959|0.55556\n71960|0.5\n71961|0.5\n71962|0.43056\n71963|0.58333\n71964|0.72222\n71965|0.66667\n71966|0.23611\n71967|0.5\n71968|0.65278\n71969|0.45833\n71970|0.48611\n71971|0.84722\n71972|0.44444\n71973|0.43056\n71974|0.33333\n71975|0.19444\n71976|0.80556\n71977|0.22222\n71978|0.51389\n71979|0.29167\n71980|0.5\n71981|0.5\n71982|0.5\n71983|0.63889\n71984|0.79167\n71985|0.68056\n71986|0.5\n71987|0.84722\n71988|0.54167\n71989|0.56944\n71990|0.5\n71991|0.66667\n71992|0.56944\n71993|0.75\n71994|0.44444\n71995|0.76389\n71996|0.61111\n71997|0.63889\n71998|0.625\n71999|0.40278\n72000|0.69444\n72001|0.75\n72002|0.625\n72003|0.76389\n72004|0.73611\n72005|0.77778\n72006|0.66667\n72007|0.58333\n72008|0.68056\n72009|0.68056\n72010|0.66667\n72011|0.51389\n72012|0.55556\n72013|0.56944\n72014|0.31944\n72015|0.68056\n72016|0.77778\n72017|0.58333\n72018|0.63889\n72019|0.76389\n72020|0.55556\n72021|0.5\n72022|0.375\n72023|0.66667\n72024|0.5\n72025|0.45833\n72026|0.5\n72027|0.54167\n72028|0.52778\n72029|0.58333\n72030|0.63889\n72031|0.80556\n72032|0.59722\n72033|0.38889\n72034|0.65278\n72035|0.98611\n72036|0.81944\n72037|0.48611\n72038|0.70833\n72039|0.81944\n72040|0.86111\n72041|0.77778\n72042|0.5\n72043|0.45833\n72044|0.79167\n72045|0.59722\n72046|0.65278\n72047|0.54167\n72048|0.51389\n72049|0.69444\n72050|0.59722\n72051|0.80556\n72052|0.54167\n72053|0.59722\n72054|0.68056\n72055|0.5\n72056|0.47222\n72057|0.63889\n72058|0.70833\n72059|0.58333\n72060|0.59722\n72061|0.5\n72062|0.375\n72063|0.75\n72064|0.55556\n72065|0.79167\n72066|0.48611\n72067|0.66667\n72068|0.73611\n72069|0.76389\n72070|0.59722\n72071|0.63889\n72072|0.52778\n72073|0.63889\n72074|0.77778\n72075|0.55556\n72076|0.55556\n72077|0.73611\n72078|0.76389\n72079|0.51389\n72080|0.48611\n72081|0.56944\n72082|0.75\n72083|0.48611\n72084|0.5\n72085|0.5\n72086|0.48611\n72087|0.86111\n72088|0.54167\n72089|0.38889\n72090|0.45833\n72091|0.5\n72092|0.25\n72093|0.43056\n72094|0.52778\n72095|0.5\n72096|0.56944\n72097|0.52778\n72098|0.80556\n72099|0.72222\n72100|0.69444\n72101|0.66667\n72102|0.58333\n72103|0.61111\n72104|0.55556\n72105|0.55556\n72106|0.5\n72107|0.70833\n72108|0.70833\n72109|0.80556\n72110|0.86111\n72111|0.97222\n72112|0.86111\n72113|0.75\n72114|0.73611\n72115|0.68056\n72116|0.875\n72117|0.38889\n72118|0.56944\n72119|0.625\n72120|0.58333\n72121|0.88889\n72122|0.625\n72123|0.38889\n72124|0.5\n72125|0.5\n72126|0.63889\n72127|0.5\n72128|0.5\n72129|0.54167\n72130|0.75\n72131|0.5\n72132|0.625\n72133|0.69444\n72134|0.59722\n72135|0.56944\n72136|0.45833\n72137|0.81944\n72138|0.73611\n72139|0.72222\n72140|0.80556\n72141|0.73611\n72142|0.73611\n72143|0.73611\n72144|0.72222\n72145|0.51389\n72146|0.625\n72147|0.66667\n72148|0.75\n72149|0.59722\n72150|0.63889\n72151|0.56944\n72152|0.69444\n72153|0.5\n72154|0.66667\n72155|0.20833\n72156|0.25\n72157|0.70833\n72158|0.83333\n72159|0.76389\n72160|0.83333\n72161|0.84722\n72162|0.66667\n72163|0.58333\n72164|0.48611\n72165|0.48611\n72166|0.73611\n72167|0.81944\n72168|0.30556\n72169|0.72222\n72170|0.63889\n72171|0.54167\n72172|0.61111\n72173|0.5\n72174|0.77778\n72175|0.76389\n72176|0.83333\n72177|0.75\n72178|0.5\n72179|0.59722\n72180|0.5\n72181|0.63889\n72182|0.76389\n72183|0.43056\n72184|0.56944\n72185|0.56944\n72186|0.59722\n72187|0.56944\n72188|0.55556\n72189|0.36111\n72190|0.5\n72191|0.61111\n72192|0.45833\n72193|0.61111\n72194|0.34722\n72195|0.54167\n72196|0.41667\n72197|0.63889\n72198|0.5\n72199|0.875\n72200|0.45833\n72201|0.5\n72202|0.59722\n72203|0.93056\n72204|0.5\n72205|0.58333\n72206|0.54167\n72207|0.56944\n72208|0.77778\n72209|0.44444\n72210|0.48611\n72211|0.44444\n72212|0.45833\n72213|0.34722\n72214|0.48611\n72215|0.52778\n72216|0.66667\n72217|0.33333\n72218|0.56944\n72219|0.58333\n72220|0.48611\n72221|0.5\n72222|0.33333\n72223|0.84722\n72224|0.69444\n72225|0.55556\n72226|0.83333\n72227|0.58333\n72228|0.68056\n72229|0.65278\n72230|0.55556\n72231|0.61111\n72232|0.66667\n72233|0.77778\n72234|0.875\n72235|0.73611\n72236|0.55556\n72237|0.58333\n72238|0.55556\n72239|0.58333\n72240|0.65278\n72241|0.69444\n72242|0.73611\n72243|0.5\n72244|0.66667\n72245|0.55556\n72246|0.70833\n72247|0.76389\n72248|0.76389\n72249|0.80556\n72250|0.54167\n72251|0.86111\n72252|0.625\n72253|0.51389\n72254|0.27778\n72255|0.31944\n72256|0.44444\n72257|0.81944\n72258|0.66667\n72259|0.66667\n72260|0.79167\n72261|0.83333\n72262|0.81944\n72263|0.77778\n72264|0.81944\n72265|0.79167\n72266|0.69444\n72267|0.625\n72268|0.80556\n72269|0.56944\n72270|0.59722\n72271|0.61111\n72272|0.79167\n72273|0.59722\n72274|0.52778\n72275|0.44444\n72276|0.5\n72277|0.58333\n72278|0.69444\n72279|0.73611\n72280|0.73611\n72281|0.63889\n72282|0.84722\n72283|0.72222\n72284|0.79167\n72285|0.79167\n72286|0.83333\n72287|0.79167\n72288|0.76389\n72289|0.73611\n72290|0.52778\n72291|0.48611\n72292|0.63889\n72293|0.76389\n72294|0.5\n72295|0.5\n72296|0.54167\n72297|0.66667\n72298|0.80556\n72299|0.76389\n72300|0.66667\n72301|0.72222\n72302|0.58333\n72303|0.625\n72304|0.55556\n72305|0.625\n72306|0.91667\n72307|0.83333\n72308|0.625\n72309|0.5\n72310|0.58333\n72311|0.5\n72312|0.65278\n72313|0.5\n72314|0.5\n72315|0.77778\n72316|0.76389\n72317|0.45833\n72318|0.75\n72319|0.66667\n72320|0.5\n72321|0.44444\n72322|0.70833\n72323|0.52778\n72324|0.47222\n72325|0.625\n72326|0.72222\n72327|0.61111\n72328|0.72222\n72329|0.80556\n72330|0.625\n72331|0.80556\n72332|0.69444\n72333|0.73611\n72334|0.5\n72335|0.48611\n72336|0.5\n72337|0.5\n72338|0.52778\n72339|0.375\n72340|0.375\n72341|0.68056\n72342|0.69444\n72343|0.5\n72344|0.70833\n72345|0.83333\n72346|0.40278\n72347|0.26389\n72348|0.5\n72349|0.65278\n72350|0.625\n72351|0.59722\n72352|0.86111\n72353|0.68056\n72354|0.76389\n72355|0.52778\n72356|0.59722\n72357|0.52778\n72358|0.54167\n72359|0.40278\n72360|0.83333\n72361|0.70833\n72362|0.51389\n72363|0.875\n72364|0.77778\n72365|0.58333\n72366|0.88889\n72367|0.5\n72368|0.44444\n72369|0.33333\n72370|0.52778\n72371|0.66667\n72372|0.65278\n72373|0.29167\n72374|0.66667\n72375|0.75\n72376|0.83333\n72377|0.5\n72378|0.5\n72379|0.77778\n72380|0.81944\n72381|0.23611\n72382|0.40278\n72383|0.51389\n72384|0.5\n72385|0.80556\n72386|0.47222\n72387|0.27778\n72388|0.47222\n72389|0.36111\n72390|0.52778\n72391|0.26389\n72392|0.51389\n72393|0.59722\n72394|0.66667\n72395|0.48611\n72396|0.61111\n72397|0.375\n72398|0.59722\n72399|0.54167\n72400|0.40278\n72401|0.77778\n72402|0.86111\n72403|0.5\n72404|0.54167\n72405|0.56944\n72406|0.5\n72407|0.5\n72408|0.40278\n72409|0.55556\n72410|0.55556\n72411|0.5\n72412|0.5\n72413|0.83333\n72414|0.80556\n72415|0.61111\n72416|0.80556\n72417|0.95833\n72418|0.75\n72419|0.61111\n72420|0.80556\n72421|0.51389\n72422|0.58333\n72423|0.5\n72424|0.44444\n72425|0.56944\n72426|0.625\n72427|0.69444\n72428|0.58333\n72429|0.55556\n72430|0.70833\n72431|0.77778\n72432|0.81944\n72433|0.66667\n72434|0.79167\n72435|0.69444\n72436|0.77778\n72437|0.70833\n72438|0.68056\n72439|0.76389\n72440|0.80556\n72441|0.875\n72442|0.83333\n72443|0.43056\n72444|0.83333\n72445|0.84722\n72446|0.86111\n72447|0.63889\n72448|0.68056\n72449|0.77778\n72450|0.76389\n72451|0.61111\n72452|0.54167\n72453|0.40278\n72454|0.54167\n72455|0.38889\n72456|0.58333\n72457|0.58333\n72458|0.55556\n72459|0.55556\n72460|0.625\n72461|0.81944\n72462|0.79167\n72463|0.65278\n72464|0.77778\n72465|0.90278\n72466|0.58333\n72467|0.81944\n72468|0.75\n72469|0.65278\n72470|0.48611\n72471|0.33333\n72472|0.45833\n72473|0.43056\n72474|0.45833\n72475|0.56944\n72476|0.72222\n72477|0.55556\n72478|0.66667\n72479|0.5\n72480|0.61111\n72481|0.55556\n72482|0.61111\n72483|0.81944\n72484|0.59722\n72485|0.55556\n72486|0.66667\n72487|0.70833\n72488|0.81944\n72489|0.54167\n72490|0.40278\n72491|0.66667\n72492|0.55556\n72493|0.55556\n72494|0.72222\n72495|0.56944\n72496|0.63889\n72497|0.75\n72498|0.79167\n72499|0.59722\n72500|0.54167\n72501|0.56944\n72502|0.5\n72503|0.52778\n72504|0.48611\n72505|0.86111\n72506|0.63889\n72507|0.83333\n72508|0.875\n72509|0.79167\n72510|0.5\n72511|0.5\n72512|0.69444\n72513|0.55556\n72514|0.52778\n72515|0.81944\n72516|0.55556\n72517|0.625\n72518|0.66667\n72519|0.5\n72520|0.56944\n72521|0.66667\n72522|0.59722\n72523|0.625\n72524|0.73611\n72525|0.5\n72526|0.54167\n72527|0.93056\n72528|0.68056\n72529|0.77778\n72530|0.5\n72531|0.56944\n72532|0.5\n72533|0.55556\n72534|0.66667\n72535|0.45833\n72536|0.80556\n72537|0.83333\n72538|0.72222\n72539|0.68056\n72540|0.51389\n72541|0.54167\n72542|0.48611\n72543|0.11111\n72544|0.56944\n72545|0.70833\n72546|0.69444\n72547|0.61111\n72548|0.72222\n72549|0.63889\n72550|0.5\n72551|0.61111\n72552|0.58333\n72553|0.77778\n72554|0.76389\n72555|0.5\n72556|0.55556\n72557|0.61111\n72558|0.44444\n72559|0.875\n72560|0.72222\n72561|0.875\n72562|0.79167\n72563|0.77778\n72564|0.55556\n72565|0.61111\n72566|0.5\n72567|0.58333\n72568|0.66667\n72569|0.77778\n72570|0.52778\n72571|0.58333\n72572|0.52778\n72573|0.52778\n72574|0.44444\n72575|0.56944\n72576|0.5\n72577|0.44444\n72578|0.69444\n72579|0.875\n72580|0.88889\n72581|0.69444\n72582|0.88889\n72583|0.81944\n72584|0.94444\n72585|0.30556\n72586|0.72222\n72587|0.625\n72588|0.5\n72589|0.56944\n72590|0.58333\n72591|0.38889\n72592|0.48611\n72593|0.47222\n72594|0.55556\n72595|0.61111\n72596|0.5\n72597|0.41667\n72598|0.5\n72599|0.875\n72600|0.76389\n72601|0.61111\n72602|0.5\n72603|0.56944\n72604|0.80556\n72605|0.52778\n72606|0.40278\n72607|0.86111\n72608|0.76389\n72609|0.72222\n72610|0.77778\n72611|0.68056\n72612|0.58333\n72613|0.59722\n72614|0.5\n72615|0.76389\n72616|0.875\n72617|0.76389\n72618|0.66667\n72619|0.81944\n72620|0.80556\n72621|0.73611\n72622|0.83333\n72623|0.77778\n72624|0.88889\n72625|0.61111\n72626|0.69444\n72627|0.5\n72628|0.43056\n72629|0.75\n72630|0.625\n72631|0.73611\n72632|0.38889\n72633|0.48611\n72634|0.43056\n72635|0.5\n72636|0.41667\n72637|0.5\n72638|0.52778\n72639|0.69444\n72640|0.5\n72641|0.61111\n72642|0.61111\n72643|0.5\n72644|0.56944\n72645|0.59722\n72646|0.86111\n72647|0.54167\n72648|0.86111\n72649|0.47222\n72650|0.44444\n72651|0.44444\n72652|0.55556\n72653|0.77778\n72654|0.72222\n72655|0.51389\n72656|0.5\n72657|0.56944\n72658|0.63889\n72659|0.70833\n72660|0.73611\n72661|0.43056\n72662|0.61111\n72663|0.59722\n72664|0.48611\n72665|0.72222\n72666|0.63889\n72667|0.93056\n72668|0.76389\n72669|0.77778\n72670|0.5\n72671|0.625\n72672|0.5\n72673|0.79167\n72674|0.86111\n72675|0.22222\n72676|0.76389\n72677|0.58333\n72678|0.5\n72679|0.58333\n72680|0.54167\n72681|0.38889\n72682|0.76389\n72683|0.75\n72684|0.76389\n72685|0.58333\n72686|0.33333\n72687|0.26389\n72688|0.51389\n72689|0.5\n72690|0.65278\n72691|0.77778\n72692|0.72222\n72693|0.45833\n72694|0.81944\n72695|0.58333\n72696|0.5\n72697|0.52778\n72698|0.27778\n72699|0.43056\n72700|0.5\n72701|0.63889\n72702|0\n72703|0.5\n72704|0.44444\n72705|0.86111\n72706|0.5\n72707|0.625\n72708|0.70833\n72709|0.76389\n72710|0.5\n72711|0.58333\n72712|0.80556\n72713|0.66667\n72714|0.44444\n72715|0.79167\n72716|0.63889\n72717|0.5\n72718|0.55556\n72719|0.48611\n72720|0.51389\n72721|0.55556\n72722|0.625\n72723|0.68056\n72724|0.61111\n72725|0.88889\n72726|0.80556\n72727|0.79167\n72728|0.5\n72729|0.54167\n72730|0.55556\n72731|0.56944\n72732|0.56944\n72733|0.56944\n72734|0.81944\n72735|0.34722\n72736|0.63889\n72737|0.80556\n72738|0.55556\n72739|0.48611\n72740|0.66667\n72741|0.73611\n72742|0.34722\n72743|0.83333\n72744|0.70833\n72745|0.5\n72746|0.69444\n72747|0.66667\n72748|0.75\n72749|0.83333\n72750|0.88889\n72751|0.80556\n72752|0.875\n72753|0.75\n72754|0.77778\n72755|0.72222\n72756|0.5\n72757|0.48611\n72758|0.63889\n72759|0.61111\n72760|0.65278\n72761|0.40278\n72762|0.55556\n72763|0.83333\n72764|0.80556\n72765|0.5\n72766|0.47222\n72767|0.77778\n72768|0.76389\n72769|0.77778\n72770|0.75\n72771|0.91667\n72772|0.83333\n72773|0.73611\n72774|0.59722\n72775|0.79167\n72776|0.72222\n72777|0.86111\n72778|0.73611\n72779|0.68056\n72780|0.70833\n72781|0.51389\n72782|0.75\n72783|0.59722\n72784|0.56944\n72785|0.5\n72786|0.5\n72787|0.5\n72788|0.44444\n72789|0.79167\n72790|0.73611\n72791|0.72222\n72792|0.77778\n72793|0.88889\n72794|0.70833\n72795|0.75\n72796|0.58333\n72797|0.65278\n72798|0.72222\n72799|0.45833\n72800|0.55556\n72801|0.65278\n72802|0.58333\n72803|0.5\n72804|0.5\n72805|0.77778\n72806|0.63889\n72807|0.38889\n72808|0.48611\n72809|0.80556\n72810|0.80556\n72811|0.66667\n72812|0.58333\n72813|0.77778\n72814|0.77778\n72815|0.5\n72816|0.5\n72817|0.58333\n72818|0.81944\n72819|0.33333\n72820|0.5\n72821|0.36111\n72822|0.61111\n72823|0.5\n72824|0.68056\n72825|0.77778\n72826|0.83333\n72827|0.86111\n72828|0.76389\n72829|0.84722\n72830|0.88889\n72831|0.88889\n72832|0.79167\n72833|0.51389\n72834|0.83333\n72835|0.86111\n72836|0.81944\n72837|0.51389\n72838|0.88889\n72839|0.83333\n72840|0.77778\n72841|0.70833\n72842|0.83333\n72843|0.5\n72844|0.5\n72845|0.13889\n72846|0.63889\n72847|0.61111\n72848|0.38889\n72849|0.63889\n72850|0.52778\n72851|0.54167\n72852|0.52778\n72853|0.77778\n72854|0.33333\n72855|0.72222\n72856|0.77778\n72857|0.79167\n72858|0.5\n72859|0.27778\n72860|0.36111\n72861|0.40278\n72862|0.47222\n72863|0.61111\n72864|0.54167\n72865|0.76389\n72866|0.72222\n72867|0.59722\n72868|0.66667\n72869|0.65278\n72870|0.68056\n72871|0.73611\n72872|0.47222\n72873|0.5\n72874|0.41667\n72875|0.36111\n72876|0.38889\n72877|0.51389\n72878|0.5\n72879|0.5\n72880|0.5\n72881|0.58333\n72882|0.83333\n72883|0.70833\n72884|0.83333\n72885|0.58333\n72886|0.72222\n72887|0.51389\n72888|0.76389\n72889|0.58333\n72890|0.52778\n72891|0.83333\n72892|0.80556\n72893|0.56944\n72894|0.5\n72895|0.73611\n72896|0.66667\n72897|0.40278\n72898|0.5\n72899|0.5\n72900|0.55556\n72901|0.66667\n72902|0.5\n72903|0.51389\n72904|0.5\n72905|0.5\n72906|0.56944\n72907|0.61111\n72908|0.5\n72909|0.45833\n72910|0.44444\n72911|0.68056\n72912|0.5\n72913|0.5\n72914|0.375\n72915|0.56944\n72916|0.23611\n72917|0.54167\n72918|0.55556\n72919|0.81944\n72920|0.61111\n72921|0.52778\n72922|0.44444\n72923|0.40278\n72924|0.69444\n72925|0.63889\n72926|0.40278\n72927|0.23611\n72928|0.23611\n72929|0.41667\n72930|0.5\n72931|0.69444\n72932|0.5\n72933|0.22222\n72934|0.5\n72935|0.47222\n72936|0.55556\n72937|0.63889\n72938|0.625\n72939|0.44444\n72940|0.72222\n72941|0.51389\n72942|0.5\n72943|0.58333\n72944|0.52778\n72945|0.45833\n72946|0.51389\n72947|0.5\n72948|0.58333\n72949|0.38889\n72950|0.5\n72951|0.44444\n72952|0.56944\n72953|0.5\n72954|0.72222\n72955|0.68056\n72956|0.77778\n72957|0.5\n72958|0.59722\n72959|0.5\n72960|0.5\n72961|0.69444\n72962|0.54167\n72963|0.33333\n72964|0.58333\n72965|0.44444\n72966|0.625\n72967|0.56944\n72968|0.61111\n72969|0.59722\n72970|0.5\n72971|0.51389\n72972|0.52778\n72973|0.56944\n72974|0.54167\n72975|0.5\n72976|0.56944\n72977|0.65278\n72978|0.5\n72979|0.77778\n72980|0.45833\n72981|0.44444\n72982|0.40278\n72983|0.51389\n72984|0.79167\n72985|0.625\n72986|0.77778\n72987|0.66667\n72988|0.38889\n72989|0.5\n72990|0.55556\n72991|0.51389\n72992|0.65278\n72993|0.33333\n72994|0.5\n72995|0.65278\n72996|0.47222\n72997|0.65278\n72998|0.45833\n72999|0.61111\n73000|0.5\n73001|0.54167\n73002|0.72222\n73003|0.59722\n73004|0.5\n73005|0.55556\n73006|0.56944\n73007|0.58333\n73008|0.52778\n73009|0.44444\n73010|0.56944\n73011|0.5\n73012|0.54167\n73013|0.5\n73014|0.5\n73015|0.5\n73016|0.65278\n73017|0.52778\n73018|0.56944\n73019|0.58333\n73020|0.5\n73021|0.69444\n73022|0.5\n73023|0.5\n73024|0.80556\n73025|0.5\n73026|0.51389\n73027|0.61111\n73028|0.66667\n73029|0.86111\n73030|0.47222\n73031|0.83333\n73032|0.72222\n73033|0.625\n73034|0.81944\n73035|0.73611\n73036|0.61111\n73037|0.70833\n73038|0.66667\n73039|0.34722\n73040|0.43056\n73041|0.5\n73042|0.73611\n73043|0.90278\n73044|0.88889\n73045|0.81944\n73046|0.61111\n73047|0.48611\n73048|0.56944\n73049|0.63889\n73050|0.77778\n73051|0.52778\n73052|0.61111\n73053|0.65278\n73054|0.23611\n73055|0.375\n73056|0.41667\n73057|0.66667\n73058|0.54167\n73059|0.22222\n73060|0.25\n73061|0.75\n73062|0.52778\n73063|0.55556\n73064|0.38889\n73065|0.66667\n73066|0.52778\n73067|0.5\n73068|0.55556\n73069|0.55556\n73070|0.38889\n73071|0.27778\n73072|0.44444\n73073|0.51389\n73074|0.54167\n73075|0.69444\n73076|0.80556\n73077|0.70833\n73078|0.84722\n73079|0.875\n73080|0.66667\n73081|0.86111\n73082|0.54167\n73083|0.44444\n73084|0.56944\n73085|0.41667\n73086|0.58333\n73087|0.61111\n73088|0.66667\n73089|0.55556\n73090|0.63889\n73091|0.31944\n73092|0.33333\n73093|0.625\n73094|0.77778\n73095|0.69444\n73096|0.70833\n73097|0.83333\n73098|0.77778\n73099|0.76389\n73100|0.41667\n73101|0.70833\n73102|0.55556\n73103|0.5\n73104|0.55556\n73105|0.5\n73106|0.66667\n73107|0.55556\n73108|0.65278\n73109|0.625\n73110|0.59722\n73111|0.31944\n73112|0.26389\n73113|0.36111\n73114|0.54167\n73115|0.55556\n73116|0.63889\n73117|0.51389\n73118|0.44444\n73119|0.5\n73120|0.84722\n73121|0.66667\n73122|0.84722\n73123|0.55556\n73124|0.56944\n73125|0.55556\n73126|0.5\n73127|0.70833\n73128|0.76389\n73129|0.5\n73130|0.5\n73131|0.68056\n73132|0.47222\n73133|0.76389\n73134|0.44444\n73135|0.61111\n73136|0.5\n73137|0.55556\n73138|0.5\n73139|0.56944\n73140|0.55556\n73141|0.5\n73142|0.11111\n73143|0.83333\n73144|0.51389\n73145|0.44444\n73146|0.51389\n73147|0.5\n73148|0.55556\n73149|0.5\n73150|0.5\n73151|0.5\n73152|0.5\n73153|0.79167\n73154|0.70833\n73155|0.72222\n73156|0.77778\n73157|0.30556\n73158|0.5\n73159|0.5\n73160|0.52778\n73161|0.56944\n73162|0.5\n73163|0.63889\n73164|0.59722\n73165|0.56944\n73166|0.36111\n73167|0.5\n73168|0.5\n73169|0.51389\n73170|0.76389\n73171|0.77778\n73172|0.5\n73173|0.70833\n73174|0.88889\n73175|0.77778\n73176|0.79167\n73177|0.51389\n73178|0.61111\n73179|0.58333\n73180|0.61111\n73181|0.59722\n73182|0.84722\n73183|0.54167\n73184|0.5\n73185|0.51389\n73186|0.5\n73187|0.5\n73188|0.5\n73189|0.51389\n73190|0.625\n73191|0.31944\n73192|0.75\n73193|0.66667\n73194|0.81944\n73195|0.86111\n73196|0.5\n73197|0.65278\n73198|0.72222\n73199|0.77778\n73200|0.54167\n73201|0.75\n73202|0.70833\n73203|0.83333\n73204|0.77778\n73205|0.66667\n73206|0.5\n73207|0.48611\n73208|0.48611\n73209|0.55556\n73210|0.44444\n73211|0.5\n73212|0.5\n73213|0.61111\n73214|0.79167\n73215|0.68056\n73216|0.73611\n73217|0.75\n73218|0.68056\n73219|0.88889\n73220|0.625\n73221|0.76389\n73222|0.63889\n73223|0.76389\n73224|0.5\n73225|0.70833\n73226|0.70833\n73227|0.84722\n73228|0.88889\n73229|0.68056\n73230|0.66667\n73231|0.75\n73232|0.83333\n73233|0.75\n73234|0.77778\n73235|0.66667\n73236|0.5\n73237|0.52778\n73238|0.56944\n73239|0.63889\n73240|0.56944\n73241|0.59722\n73242|0.83333\n73243|0.5\n73244|0.59722\n73245|0.84722\n73246|0.86111\n73247|0.81944\n73248|0.625\n73249|0.5\n73250|0.5\n73251|0.38889\n73252|0.48611\n73253|0.61111\n73254|0.66667\n73255|0.61111\n73256|0.70833\n73257|0.77778\n73258|0.61111\n73259|0.65278\n73260|0.75\n73261|0.86111\n73262|0.5\n73263|0.52778\n73264|0.51389\n73265|0.34722\n73266|0.5\n73267|0.55556\n73268|0.59722\n73269|0.51389\n73270|0.61111\n73271|0.5\n73272|0.56944\n73273|0.36111\n73274|0.54167\n73275|0.5\n73276|0.76389\n73277|0.45833\n73278|0.51389\n73279|0.55556\n73280|0.5\n73281|0.58333\n73282|0.63889\n73283|0.65278\n73284|0.76389\n73285|0.59722\n73286|0.59722\n73287|0.625\n73288|0.72222\n73289|0.77778\n73290|0.69444\n73291|0.61111\n73292|0.5\n73293|0.83333\n73294|0.44444\n73295|0.5\n73296|0.5\n73297|0.5\n73298|0.55556\n73299|0.51389\n73300|0.88889\n73301|0.58333\n73302|0.79167\n73303|0.44444\n73304|0.48611\n73305|0.48611\n73306|0.36111\n73307|0.31944\n73308|0.40278\n73309|0.52778\n73310|0.5\n73311|0.69444\n73312|0.52778\n73313|0.52778\n73314|0.45833\n73315|0.41667\n73316|0.5\n73317|0.43056\n73318|0.56944\n73319|0.33333\n73320|0.5\n73321|0.70833\n73322|0.47222\n73323|0.70833\n73324|0.20833\n73325|0.48611\n73326|0.5\n73327|0.33333\n73328|0.43056\n73329|0.23611\n73330|0.34722\n73331|0.47222\n73332|0.44444\n73333|0.45833\n73334|0.61111\n73335|0.56944\n73336|0.54167\n73337|0.5\n73338|0.625\n73339|0.65278\n73340|0.38889\n73341|0.375\n73342|0.30556\n73343|0.625\n73344|0.68056\n73345|0.43056\n73346|0.5\n73347|0.56944\n73348|0.75\n73349|0.5\n73350|0.58333\n73351|0.5\n73352|0.51389\n73353|0.65278\n73354|0.77778\n73355|0.84722\n73356|0.25\n73357|0.31944\n73358|0.23611\n73359|0.38889\n73360|0.61111\n73361|0.55556\n73362|0.5\n73363|0.5\n73364|0.40278\n73365|0.30556\n73366|0.375\n73367|0.5\n73368|0.55556\n73369|0.61111\n73370|0.77778\n73371|0.75\n73372|0.625\n73373|0.51389\n73374|0.5\n73375|0.5\n73376|0.5\n73377|0.59722\n73378|0.83333\n73379|0.77778\n73380|0.69444\n73381|0.55556\n73382|0.84722\n73383|0.58333\n73384|0.55556\n73385|0.5\n73386|0.5\n73387|0.5\n73388|0.5\n73389|0.38889\n73390|0.5\n73391|0.30556\n73392|0.5\n73393|0.73611\n73394|0.48611\n73395|0.55556\n73396|0.5\n73397|0.63889\n73398|0.5\n73399|0.51389\n73400|0.55556\n73401|0.5\n73402|0.30556\n73403|0.58333\n73404|0.54167\n73405|0.55556\n73406|0.52778\n73407|0.58333\n73408|0.5\n73409|0.25\n73410|0.61111\n73411|0.34722\n73412|0.51389\n73413|0.5\n73414|0.40278\n73415|0.59722\n73416|0.56944\n73417|0.5\n73418|0.55556\n73419|0.5\n73420|0.5\n73421|0.45833\n73422|0.5\n73423|0.52778\n73424|0.5\n73425|0.625\n73426|0.72222\n73427|0.45833\n73428|0.44444\n73429|0.61111\n73430|0.52778\n73431|0.56944\n73432|0.26389\n73433|0.55556\n73434|0.45833\n73435|0.76389\n73436|0.79167\n73437|0.52778\n73438|0.375\n73439|0.54167\n73440|0.56944\n73441|0.75\n73442|0.51389\n73443|0.5\n73444|0.52778\n73445|0.66667\n73446|0.44444\n73447|0.75\n73448|0.23611\n73449|0.43056\n73450|0.27778\n73451|0.56944\n73452|0.625\n73453|0.5\n73454|0.11111\n73455|0.63889\n73456|0.56944\n73457|0.48611\n73458|0.58333\n73459|0.5\n73460|0.5\n73461|0.5\n73462|0.79167\n73463|0.61111\n73464|0.72222\n73465|0.66667\n73466|0.61111\n73467|0.5\n73468|0.91667\n73469|0.55556\n73470|0.55556\n73471|0.43056\n73472|0.5\n73473|0.58333\n73474|0.58333\n73475|0.70833\n73476|0.61111\n73477|0.63889\n73478|0.66667\n73479|0.79167\n73480|0.55556\n73481|0.69444\n73482|0.77778\n73483|0.625\n73484|0.70833\n73485|0.69444\n73486|0.77778\n73487|0.33333\n73488|0.54167\n73489|0.52778\n73490|0.48611\n73491|0.43056\n73492|0.63889\n73493|0.55556\n73494|0.58333\n73495|0.625\n73496|0.45833\n73497|0.55556\n73498|0.77778\n73499|0.56944\n73500|0.44444\n73501|0.76389\n73502|0.51389\n73503|0.55556\n73504|0.59722\n73505|0.55556\n73506|0.5\n73507|0.44444\n73508|0.5\n73509|0.61111\n73510|0.5\n73511|0.36111\n73512|0.38889\n73513|0.5\n73514|0.51389\n73515|0.38889\n73516|0.88889\n73517|0.88889\n73518|0.83333\n73519|0.72222\n73520|0.22222\n73521|0.83333\n73522|0.76389\n73523|0.58333\n73524|0.69444\n73525|0.70833\n73526|0.33333\n73527|0.72222\n73528|0.5\n73529|0.41667\n73530|0.75\n73531|0.83333\n73532|0.72222\n73533|0.59722\n73534|0.625\n73535|0.68056\n73536|0.55556\n73537|0.66667\n73538|0.55556\n73539|0.5\n73540|0.33333\n73541|0.48611\n73542|0.5\n73543|0.33333\n73544|0.625\n73545|0.76389\n73546|0.33333\n73547|0.56944\n73548|0.55556\n73549|0.61111\n73550|0.61111\n73551|0.83333\n73552|0.77778\n73553|0.91667\n73554|0.63889\n73555|0.47222\n73556|0.58333\n73557|0.55556\n73558|0.5\n73559|0.36111\n73560|0.11111\n73561|0.18056\n73562|0.5\n73563|0.5\n73564|0.36111\n73565|0.22222\n73566|0.52778\n73567|0.81944\n73568|0.84722\n73569|0.83333\n73570|0.91667\n73571|0.58333\n73572|0.58333\n73573|0.77778\n73574|0.56944\n73575|0.66667\n73576|0.72222\n73577|0.79167\n73578|0.77778\n73579|0.76389\n73580|0.68056\n73581|0.55556\n73582|0.625\n73583|0.76389\n73584|0.56944\n73585|0.59722\n73586|0.58333\n73587|0.625\n73588|0.54167\n73589|0.5\n73590|0.77778\n73591|0.55556\n73592|0.77778\n73593|0.625\n73594|0.625\n73595|0.33333\n73596|0.38889\n73597|0.76389\n73598|0.48611\n73599|0.75\n73600|0.61111\n73601|0.40278\n73602|0.61111\n73603|0.68056\n73604|0.77778\n73605|0.75\n73606|0.72222\n73607|0.83333\n73608|0.81944\n73609|0.68056\n73610|0.48611\n73611|0.54167\n73612|0.26389\n73613|0.22222\n73614|0.48611\n73615|0.41667\n73616|0.59722\n73617|0.5\n73618|0.79167\n73619|0.5\n73620|0.44444\n73621|0.5\n73622|0.5\n73623|0.69444\n73624|0.5\n73625|0.5\n73626|0.5\n73627|0.5\n73628|0.38889\n73629|0.5\n73630|0.69444\n73631|0.5\n73632|0.55556\n73633|0.30556\n73634|0.5\n73635|0.5\n73636|0.66667\n73637|0.84722\n73638|0.94444\n73639|0.91667\n73640|0.76389\n73641|0.5\n73642|0.61111\n73643|0.66667\n73644|0.83333\n73645|0.5\n73646|0.40278\n73647|0.40278\n73648|0.51389\n73649|0.79167\n73650|0.52778\n73651|0.65278\n73652|0.5\n73653|0.79167\n73654|0.44444\n73655|0.625\n73656|0.66667\n73657|0.5\n73658|0.61111\n73659|0.76389\n73660|0.76389\n73661|0.76389\n73662|0.77778\n73663|0.61111\n73664|0.72222\n73665|0.77778\n73666|0.56944\n73667|0.27778\n73668|0.77778\n73669|0.59722\n73670|0.66667\n73671|0.84722\n73672|0.79167\n73673|0.72222\n73674|0.43056\n73675|0.625\n73676|0.73611\n73677|0.55556\n73678|0.44444\n73679|0.55556\n73680|0.5\n73681|0.55556\n73682|0.61111\n73683|0.55556\n73684|0.625\n73685|0.5\n73686|0.625\n73687|0.83333\n73688|0.66667\n73689|0.76389\n73690|0.80556\n73691|0.80556\n73692|0.88889\n73693|0.5\n73694|0.5\n73695|0.61111\n73696|0.66667\n73697|0.66667\n73698|0.5\n73699|0.625\n73700|0.72222\n73701|0.66667\n73702|0.54167\n73703|0.47222\n73704|0.61111\n73705|0.68056\n73706|0.66667\n73707|0.44444\n73708|0.5\n73709|0.38889\n73710|0.55556\n73711|0.5\n73712|0.47222\n73713|0.51389\n73714|0.58333\n73715|0.41667\n73716|0.63889\n73717|0.54167\n73718|0.30556\n73719|0.52778\n73720|0.58333\n73721|0.65278\n73722|0.68056\n73723|0.5\n73724|0.56944\n73725|0.63889\n73726|0.56944\n73727|0.72222\n73728|0.59722\n73729|0.55556\n73730|0.44444\n73731|0.84722\n73732|0.73611\n73733|0.84722\n73734|0.70833\n73735|0.61111\n73736|0.61111\n73737|0.84722\n73738|0.93056\n73739|0.80556\n73740|0.73611\n73741|0.73611\n73742|0.75\n73743|0.73611\n73744|0.34722\n73745|0.5\n73746|0.72222\n73747|0.76389\n73748|0.22222\n73749|0.88889\n73750|0.875\n73751|0.61111\n73752|0.70833\n73753|0.70833\n73754|0.875\n73755|0.81944\n73756|0.79167\n73757|0.81944\n73758|0.77778\n73759|0.77778\n73760|0.77778\n73761|0.63889\n73762|0.5\n73763|0.65278\n73764|0.68056\n73765|0.44444\n73766|0.5\n73767|0.47222\n73768|0.61111\n73769|0.79167\n73770|0.68056\n73771|0.875\n73772|0.22222\n73773|0.94444\n73774|0.88889\n73775|0.61111\n73776|0.80556\n73777|0.5\n73778|0.72222\n73779|0.77778\n73780|0.88889\n73781|0.52778\n73782|0.77778\n73783|0.76389\n73784|0.5\n73785|0.5\n73786|0.43056\n73787|0.59722\n73788|0.59722\n73789|0.75\n73790|0.72222\n73791|0.45833\n73792|0.91667\n73793|0.88889\n73794|0.83333\n73795|0.56944\n73796|0.68056\n73797|0.52778\n73798|0.61111\n73799|0.55556\n73800|0.61111\n73801|0.625\n73802|0.76389\n73803|0.72222\n73804|0.56944\n73805|0.83333\n73806|0.56944\n73807|0.5\n73808|0.70833\n73809|0.41667\n73810|0.5\n73811|0.52778\n73812|0.45833\n73813|0.47222\n73814|0.79167\n73815|0.83333\n73816|0.72222\n73817|0.80556\n73818|0.72222\n73819|0.75\n73820|0.51389\n73821|0.72222\n73822|0.55556\n73823|0.76389\n73824|0.61111\n73825|0.625\n73826|0.59722\n73827|0.73611\n73828|0.72222\n73829|0.47222\n73830|0.52778\n73831|0.88889\n73832|0.68056\n73833|0.83333\n73834|0.86111\n73835|0.63889\n73836|0.75\n73837|0.69444\n73838|0.72222\n73839|0.63889\n73840|0.66667\n73841|0.79167\n73842|0.73611\n73843|0.59722\n73844|0.59722\n73845|0.48611\n73846|0.44444\n73847|0.125\n73848|0.23611\n73849|0.13889\n73850|0.36111\n73851|0.83333\n73852|0.38889\n73853|0.69444\n73854|0.81944\n73855|0.86111\n73856|0.83333\n73857|0.84722\n73858|0.83333\n73859|0.76389\n73860|0.90278\n73861|0.83333\n73862|0.81944\n73863|0.81944\n73864|0.59722\n73865|0.72222\n73866|0.77778\n73867|0.73611\n73868|0.73611\n73869|0.68056\n73870|0.73611\n73871|0.58333\n73872|0.61111\n73873|0.70833\n73874|0.80556\n73875|0.65278\n73876|0.68056\n73877|0.83333\n73878|0.75\n73879|0.76389\n73880|0.65278\n73881|0.63889\n73882|0.83333\n73883|0.77778\n73884|0.72222\n73885|0.70833\n73886|0.83333\n73887|0.72222\n73888|0.75\n73889|0.69444\n73890|0.69444\n73891|0.79167\n73892|0.625\n73893|0.55556\n73894|0.45833\n73895|0.61111\n73896|0.80556\n73897|0.86111\n73898|0.875\n73899|0.84722\n73900|0.59722\n73901|0.72222\n73902|0.625\n73903|0.45833\n73904|0.56944\n73905|0.5\n73906|0.51389\n73907|0.66667\n73908|0.86111\n73909|0.72222\n73910|0.79167\n73911|0.63889\n73912|0.38889\n73913|0.54167\n73914|0.5\n73915|0.5\n73916|0.43056\n73917|0.58333\n73918|0.84722\n73919|0.55556\n73920|0.54167\n73921|0.45833\n73922|0.63889\n73923|0.52778\n73924|0.81944\n73925|0.51389\n73926|0.33333\n73927|0.40278\n73928|0.625\n73929|0.73611\n73930|0.5\n73931|0.375\n73932|0.44444\n73933|0.55556\n73934|0.43056\n73935|0.55556\n73936|0.48611\n73937|0.68056\n73938|0.625\n73939|0.84722\n73940|0.52778\n73941|0.65278\n73942|0.65278\n73943|0.77778\n73944|0.73611\n73945|0.875\n73946|0.41667\n73947|0.33333\n73948|0.5\n73949|0.44444\n73950|0.55556\n73951|0.55556\n73952|0.61111\n73953|0.26389\n73954|0.34722\n73955|0.38889\n73956|0.81944\n73957|0.55556\n73958|0.73611\n73959|0.66667\n73960|0.61111\n73961|0.625\n73962|0.61111\n73963|0.375\n73964|0.45833\n73965|0.45833\n73966|0.48611\n73967|0.375\n73968|0.61111\n73969|0.58333\n73970|0.55556\n73971|0.48611\n73972|0.55556\n73973|0.72222\n73974|0.66667\n73975|0.5\n73976|0.70833\n73977|0.5\n73978|0.44444\n73979|0.55556\n73980|0.5\n73981|0.43056\n73982|0.27778\n73983|0.75\n73984|0.80556\n73985|0.70833\n73986|0.75\n73987|0.5\n73988|0.75\n73989|0.5\n73990|0.5\n73991|0.5\n73992|0.5\n73993|0.5\n73994|0.5\n73995|0.5\n73996|0.5\n73997|0.5\n73998|0.48611\n73999|0.5\n74000|0.40278\n74001|0.5\n74002|0.5\n74003|0.5\n74004|0.5\n74005|0.5\n74006|0.5\n74007|0.47222\n74008|0.51389\n74009|0.5\n74010|0.5\n74011|0.51389\n74012|0.31944\n74013|0.625\n74014|0.59722\n74015|0.55556\n74016|0.51389\n74017|0.59722\n74018|0.55556\n74019|0.625\n74020|0.70833\n74021|0.29167\n74022|0.56944\n74023|0.61111\n74024|0.40278\n74025|0.38889\n74026|0.56944\n74027|0.5\n74028|0.5\n74029|0.63889\n74030|0.54167\n74031|0.375\n74032|0.75\n74033|0.72222\n74034|0.27778\n74035|0.51389\n74036|0.625\n74037|0.5\n74038|0.69444\n74039|0.84722\n74040|0.61111\n74041|0.5\n74042|0.51389\n74043|0.44444\n74044|0.56944\n74045|0.36111\n74046|0.70833\n74047|0.54167\n74048|0.81944\n74049|0.51389\n74050|0.47222\n74051|0.55556\n74052|0.69444\n74053|0.5\n74054|0.61111\n74055|0.38889\n74056|0.40278\n74057|0.5\n74058|0.5\n74059|0.72222\n74060|0.55556\n74061|0.63889\n74062|0.83333\n74063|0.56944\n74064|0.48611\n74065|0.18056\n74066|0.83333\n74067|0.54167\n74068|0.68056\n74069|0.18056\n74070|0.36111\n74071|0.75\n74072|0.5\n74073|0.41667\n74074|0.43056\n74075|0.25\n74076|0.5\n74077|0.52778\n74078|0.69444\n74079|0.48611\n74080|0.30556\n74081|0.38889\n74082|0.23611\n74083|0.61111\n74084|0.63889\n74085|0.58333\n74086|0.52778\n74087|0.63889\n74088|0.56944\n74089|0.625\n74090|0.61111\n74091|0.73611\n74092|0.76389\n74093|0.69444\n74094|0.5\n74095|0.45833\n74096|0.5\n74097|0.5\n74098|0.48611\n74099|0.5\n74100|0.5\n74101|0.26389\n74102|0.45833\n74103|0.5\n74104|0.54167\n74105|0.38889\n74106|0.5\n74107|0.56944\n74108|0.52778\n74109|0.77778\n74110|0.69444\n74111|0.5\n74112|0.38889\n74113|0.5\n74114|0.83333\n74115|0.5\n74116|0.48611\n74117|0.48611\n74118|0.44444\n74119|0.55556\n74120|0.68056\n74121|0.69444\n74122|0.51389\n74123|0.69444\n74124|0.41667\n74125|0.22222\n74126|0.23611\n74127|0.44444\n74128|0.5\n74129|0.5\n74130|0.5\n74131|0.44444\n74132|0.5\n74133|0.41667\n74134|0.27778\n74135|0.47222\n74136|0.38889\n74137|0.5\n74138|0.51389\n74139|0.5\n74140|0.34722\n74141|0.51389\n74142|0.5\n74143|0.5\n74144|0.83333\n74145|0.5\n74146|0.5\n74147|0.5\n74148|0.52778\n74149|0.38889\n74150|0.5\n74151|0.5\n74152|0.5\n74153|0.5\n74154|0.34722\n74155|0.45833\n74156|0.38889\n74157|0.5\n74158|0.52778\n74159|0.45833\n74160|0.43056\n74161|0.5\n74162|0.70833\n74163|0.33333\n74164|0.56944\n74165|0.55556\n74166|0.41667\n74167|0.51389\n74168|0.51389\n74169|0.63889\n74170|0.5\n74171|0.5\n74172|0.45833\n74173|0.38889\n74174|0.48611\n74175|0.55556\n74176|0.45833\n74177|0.5\n74178|0.5\n74179|0.5\n74180|0.55556\n74181|0.5\n74182|0.68056\n74183|0.41667\n74184|0.75\n74185|0.5\n74186|0.5\n74187|0.44444\n74188|0.5\n74189|0.88889\n74190|0.31944\n74191|0.70833\n74192|0.61111\n74193|0.5\n74194|0.5\n74195|0.5\n74196|0.5\n74197|0.5\n74198|0.56944\n74199|0.93056\n74200|0.5\n74201|0.5\n74202|0.5\n74203|0.58333\n74204|0.45833\n74205|0.45833\n74206|0.51389\n74207|0.65278\n74208|0.44444\n74209|0.61111\n74210|0.5\n74211|0.5\n74212|0.43056\n74213|0.5\n74214|0.16667\n74215|0.5\n74216|0.5\n74217|0.65278\n74218|0.5\n74219|0.51389\n74220|0.69444\n74221|0.55556\n74222|0.75\n74223|0.61111\n74224|0.66667\n74225|0.69444\n74226|0.75\n74227|0.5\n74228|0.61111\n74229|0.68056\n74230|0.5\n74231|0.52778\n74232|0.51389\n74233|0.52778\n74234|0.90278\n74235|0.76389\n74236|0.68056\n74237|0.30556\n74238|0.5\n74239|0.5\n74240|0.5\n74241|0.52778\n74242|0.51389\n74243|0.36111\n74244|0.5\n74245|0.5\n74246|0.56944\n74247|0.79167\n74248|0.73611\n74249|0.70833\n74250|0.61111\n74251|0.5\n74252|0.68056\n74253|0.75\n74254|0.58333\n74255|0.26389\n74256|0.63889\n74257|0.5\n74258|0.61111\n74259|0.47222\n74260|0.31944\n74261|0.51389\n74262|0.56944\n74263|0.5\n74264|0.5\n74265|0.55556\n74266|0.59722\n74267|0.55556\n74268|0.5\n74269|0.54167\n74270|0.47222\n74271|0.625\n74272|0.61111\n74273|0.625\n74274|0.86111\n74275|0.76389\n74276|0.77778\n74277|0.70833\n74278|0.48611\n74279|0.43056\n74280|0.33333\n74281|0.44444\n74282|0.083333\n74283|0.36111\n74284|0.33333\n74285|0.59722\n74286|0.66667\n74287|0.81944\n74288|0.83333\n74289|0.5\n74290|0.45833\n74291|0.75\n74292|0.77778\n74293|0.625\n74294|0.5\n74295|0.55556\n74296|0.47222\n74297|0.61111\n74298|0.38889\n74299|0.80556\n74300|0.77778\n74301|0.54167\n74302|0.55556\n74303|0.81944\n74304|0.59722\n74305|0.69444\n74306|0.68056\n74307|0.625\n74308|0.5\n74309|0.5\n74310|0.77778\n74311|0.72222\n74312|0.51389\n74313|0.54167\n74314|0.41667\n74315|0.22222\n74316|0.63889\n74317|0.51389\n74318|0.625\n74319|0.66667\n74320|0.36111\n74321|0.51389\n74322|0.5\n74323|0.58333\n74324|0.45833\n74325|0.76389\n74326|0.70833\n74327|0.70833\n74328|0.58333\n74329|0.58333\n74330|0.61111\n74331|0.55556\n74332|0.55556\n74333|0.5\n74334|0.76389\n74335|0.73611\n74336|0.70833\n74337|0.5\n74338|0.81944\n74339|0.58333\n74340|0.81944\n74341|0.69444\n74342|0.79167\n74343|0.73611\n74344|0.65278\n74345|0.58333\n74346|0.66667\n74347|0.625\n74348|0.625\n74349|0.52778\n74350|0.73611\n74351|0.61111\n74352|0.56944\n74353|0.59722\n74354|0.45833\n74355|0.31944\n74356|0.79167\n74357|0.79167\n74358|0.19444\n74359|0.58333\n74360|0.43056\n74361|0.58333\n74362|0.61111\n74363|0.80556\n74364|0.55556\n74365|0.79167\n74366|0.72222\n74367|0.72222\n74368|0.5\n74369|0.52778\n74370|0.77778\n74371|0.59722\n74372|0.77778\n74373|0.68056\n74374|0.36111\n74375|0.44444\n74376|0.43056\n74377|0.51389\n74378|0.5\n74379|0.77778\n74380|0.25\n74381|0.41667\n74382|0.5\n74383|0.77778\n74384|0.56944\n74385|0.43056\n74386|0.51389\n74387|0.45833\n74388|0.88889\n74389|0.52778\n74390|0.56944\n74391|0.73611\n74392|0.79167\n74393|0.80556\n74394|0.5\n74395|0.75\n74396|0.80556\n74397|0.66667\n74398|0.45833\n74399|0.5\n74400|0.5\n74401|0.75\n74402|0.75\n74403|0.70833\n74404|0.84722\n74405|0.65278\n74406|0.68056\n74407|0.65278\n74408|0.48611\n74409|0.76389\n74410|0.83333\n74411|0.86111\n74412|0.5\n74413|0.59722\n74414|0.51389\n74415|0.69444\n74416|0.61111\n74417|0.66667\n74418|0.625\n74419|0.61111\n74420|0.625\n74421|0.5\n74422|0.66667\n74423|0.56944\n74424|0.5\n74425|0.72222\n74426|0.68056\n74427|0.61111\n74428|0.38889\n74429|0.79167\n74430|0.75\n74431|0.69444\n74432|0.72222\n74433|0.44444\n74434|0.54167\n74435|0.5\n74436|0.5\n74437|0.5\n74438|0.5\n74439|0.79167\n74440|0.83333\n74441|0.40278\n74442|0.36111\n74443|0.27778\n74444|0.48611\n74445|0.59722\n74446|0.72222\n74447|0.22222\n74448|0.40278\n74449|0.26389\n74450|0.63889\n74451|0.55556\n74452|0.80556\n74453|0.88889\n74454|0.5\n74455|0.77778\n74456|0.68056\n74457|0.63889\n74458|0.63889\n74459|0.55556\n74460|0.61111\n74461|0.40278\n74462|0.80556\n74463|0.81944\n74464|0.80556\n74465|0.51389\n74466|0.81944\n74467|0.5\n74468|0.5\n74469|0.55556\n74470|0.5\n74471|0.61111\n74472|0.51389\n74473|0.5\n74474|0.40278\n74475|0.5\n74476|0.5\n74477|0.41667\n74478|0.5\n74479|0.5\n74480|0.65278\n74481|0.61111\n74482|0.40278\n74483|0.5\n74484|0.19444\n74485|0.63889\n74486|0.47222\n74487|0.5\n74488|0.5\n74489|0.72222\n74490|0.68056\n74491|0.5\n74492|0.81944\n74493|0.72222\n74494|0.56944\n74495|0.5\n74496|0.5\n74497|0.51389\n74498|0.55556\n74499|0.5\n74500|0.48611\n74501|0.56944\n74502|0.5\n74503|0.52778\n74504|0.66667\n74505|0.5\n74506|0.55556\n74507|0.54167\n74508|0.55556\n74509|0.27778\n74510|0.69444\n74511|0.72222\n74512|0.54167\n74513|0.61111\n74514|0.52778\n74515|0.51389\n74516|0.58333\n74517|0.77778\n74518|0.58333\n74519|0.77778\n74520|0.76389\n74521|0.65278\n74522|0.79167\n74523|0.61111\n74524|0.59722\n74525|0.72222\n74526|0.70833\n74527|0.75\n74528|0.5\n74529|0.69444\n74530|0.59722\n74531|0.69444\n74532|0.79167\n74533|0.61111\n74534|0.55556\n74535|0.54167\n74536|0.55556\n74537|0.5\n74538|0.51389\n74539|0.69444\n74540|0.5\n74541|0.5\n74542|0.55556\n74543|0.5\n74544|0.58333\n74545|0.77778\n74546|0.55556\n74547|0.44444\n74548|0.625\n74549|0.58333\n74550|0.5\n74551|0.55556\n74552|0.5\n74553|0.5\n74554|0.5\n74555|0.72222\n74556|0.5\n74557|0.5\n74558|0.5\n74559|0.51389\n74560|0.73611\n74561|0.5\n74562|0.72222\n74563|0.58333\n74564|0.5\n74565|0.44444\n74566|0.38889\n74567|0.61111\n74568|0.5\n74569|0.625\n74570|0.58333\n74571|0.56944\n74572|0.66667\n74573|0.66667\n74574|0.69444\n74575|0.625\n74576|0.72222\n74577|0.55556\n74578|0.47222\n74579|0.55556\n74580|0.70833\n74581|0.56944\n74582|0.65278\n74583|0.5\n74584|0.93056\n74585|0.56944\n74586|0.375\n74587|0.5\n74588|0.5\n74589|0.5\n74590|0.44444\n74591|0.58333\n74592|0.94444\n74593|0.80556\n74594|0.59722\n74595|0.52778\n74596|0.625\n74597|0.91667\n74598|0.91667\n74599|0.5\n74600|0.63889\n74601|0.69444\n74602|0.33333\n74603|0.76389\n74604|0.5\n74605|0.58333\n74606|0.51389\n74607|0.31944\n74608|0.41667\n74609|0.48611\n74610|0.84722\n74611|0.55556\n74612|0.80556\n74613|0.48611\n74614|0.70833\n74615|0.68056\n74616|0.56944\n74617|0.56944\n74618|0.69444\n74619|0.51389\n74620|0.19444\n74621|0.63889\n74622|0.5\n74623|0.51389\n74624|0.54167\n74625|0.5\n74626|0.75\n74627|0.70833\n74628|0.5\n74629|0.55556\n74630|0.77778\n74631|0.84722\n74632|0.66667\n74633|0.36111\n74634|0.38889\n74635|0.68056\n74636|0.51389\n74637|0.55556\n74638|0.22222\n74639|0.5\n74640|0.5\n74641|0.58333\n74642|0.5\n74643|0.52778\n74644|0.5\n74645|0.79167\n74646|0.48611\n74647|0.63889\n74648|0.44444\n74649|0.76389\n74650|0.76389\n74651|0.19444\n74652|0.38889\n74653|0.5\n74654|0.72222\n74655|0.58333\n74656|0.59722\n74657|0.55556\n74658|0.63889\n74659|0.83333\n74660|0.61111\n74661|0.83333\n74662|0.73611\n74663|0.63889\n74664|0.70833\n74665|0.77778\n74666|0.61111\n74667|0.41667\n74668|0.68056\n74669|0.76389\n74670|0.66667\n74671|0.5\n74672|0.31944\n74673|0.72222\n74674|0.76389\n74675|0.55556\n74676|0.55556\n74677|0.5\n74678|0.5\n74679|0.5\n74680|0.70833\n74681|0.66667\n74682|0.41667\n74683|0.25\n74684|0.77778\n74685|0.76389\n74686|0.65278\n74687|0.70833\n74688|0.72222\n74689|0.75\n74690|0.79167\n74691|0.73611\n74692|0.73611\n74693|0.73611\n74694|0.77778\n74695|0.44444\n74696|0.65278\n74697|0.55556\n74698|0.54167\n74699|0.44444\n74700|0.79167\n74701|0.5\n74702|0.52778\n74703|0.51389\n74704|0.26389\n74705|0.70833\n74706|0.59722\n74707|0.44444\n74708|0.51389\n74709|0.81944\n74710|0.52778\n74711|0.54167\n74712|0.5\n74713|0.66667\n74714|0.55556\n74715|0.51389\n74716|0.625\n74717|0.58333\n74718|0.26389\n74719|0.45833\n74720|0.63889\n74721|0.41667\n74722|0.55556\n74723|0.45833\n74724|0.5\n74725|0.69444\n74726|0.55556\n74727|0.5\n74728|0.5\n74729|0.5\n74730|0.83333\n74731|0.56944\n74732|0.5\n74733|0.36111\n74734|0.5\n74735|0.80556\n74736|0.72222\n74737|0.48611\n74738|0.5\n74739|0.5\n74740|0.5\n74741|0.5\n74742|0.5\n74743|0.5\n74744|0.68056\n74745|0.51389\n74746|0.91667\n74747|0.80556\n74748|0.41667\n74749|0.5\n74750|0.5\n74751|0.88889\n74752|0.5\n74753|0.93056\n74754|0.52778\n74755|0.625\n74756|0.54167\n74757|0.54167\n74758|0.5\n74759|0.69444\n74760|0.55556\n74761|0.5\n74762|0.58333\n74763|0.22222\n74764|0.59722\n74765|0.33333\n74766|0.88889\n74767|0.5\n74768|0.5\n74769|0.55556\n74770|0.55556\n74771|0.76389\n74772|0.79167\n74773|0.5\n74774|0.5\n74775|0.33333\n74776|0.52778\n74777|0.63889\n74778|0.51389\n74779|0.54167\n74780|0.66667\n74781|0.73611\n74782|0.65278\n74783|0.61111\n74784|0.15278\n74785|0.055556\n74786|0.45833\n74787|0.55556\n74788|0.54167\n74789|0.51389\n74790|0.5\n74791|0.5\n74792|0.81944\n74793|0.54167\n74794|0.79167\n74795|0.98611\n74796|0.68056\n74797|0.61111\n74798|0.61111\n74799|0.5\n74800|0.5\n74801|0.58333\n74802|0.77778\n74803|0.51389\n74804|0.51389\n74805|0.76389\n74806|0.38889\n74807|0.47222\n74808|0.5\n74809|0.5\n74810|0.54167\n74811|0.875\n74812|0.55556\n74813|0.5\n74814|0.44444\n74815|0.48611\n74816|0.66667\n74817|0.27778\n74818|0.5\n74819|0.43056\n74820|0.59722\n74821|0.5\n74822|0.72222\n74823|0.75\n74824|0.59722\n74825|0.5\n74826|0.69444\n74827|0.72222\n74828|0.65278\n74829|0.66667\n74830|0.66667\n74831|0.77778\n74832|0.70833\n74833|0.73611\n74834|0.5\n74835|0.56944\n74836|0.33333\n74837|0.56944\n74838|0.55556\n74839|0.40278\n74840|0.5\n74841|0.59722\n74842|0.45833\n74843|0.70833\n74844|0.68056\n74845|0.55556\n74846|0.61111\n74847|0.5\n74848|0.55556\n74849|0.77778\n74850|0.52778\n74851|0.75\n74852|0.5\n74853|0.55556\n74854|0.56944\n74855|0.5\n74856|0.5\n74857|0.79167\n74858|0.58333\n74859|0.5\n74860|0.5\n74861|0.16667\n74862|0.5\n74863|0.59722\n74864|0.75\n74865|0.31944\n74866|0.5\n74867|0.44444\n74868|0.43056\n74869|0.5\n74870|0.38889\n74871|0.27778\n74872|0.41667\n74873|0.5\n74874|0.5\n74875|0.47222\n74876|0.47222\n74877|0.625\n74878|0.68056\n74879|0.61111\n74880|0.51389\n74881|0.59722\n74882|0.61111\n74883|0.625\n74884|0.88889\n74885|0.875\n74886|0.66667\n74887|0.875\n74888|0.76389\n74889|0.86111\n74890|0.95833\n74891|0.94444\n74892|0.5\n74893|0.5\n74894|0.54167\n74895|0.41667\n74896|0.22222\n74897|0.5\n74898|0.54167\n74899|0.73611\n74900|0.5\n74901|0.5\n74902|0.5\n74903|0.55556\n74904|0.5\n74905|0.56944\n74906|0.44444\n74907|0.5\n74908|0.54167\n74909|0.51389\n74910|0.55556\n74911|0.38889\n74912|0.72222\n74913|0.59722\n74914|0.59722\n74915|0.5\n74916|0.55556\n74917|0.48611\n74918|0.5\n74919|0.41667\n74920|0.48611\n74921|0.36111\n74922|0.55556\n74923|0.72222\n74924|0.5\n74925|0.55556\n74926|0.76389\n74927|0.5\n74928|0.41667\n74929|0.80556\n74930|0.75\n74931|0.625\n74932|0.54167\n74933|0.45833\n74934|0.5\n74935|0.61111\n74936|0.66667\n74937|0.56944\n74938|0.68056\n74939|0.48611\n74940|0.63889\n74941|0.55556\n74942|0.66667\n74943|0.80556\n74944|0.5\n74945|0.58333\n74946|0.5\n74947|0.63889\n74948|0.52778\n74949|0.5\n74950|0.5\n74951|0.58333\n74952|0.63889\n74953|0.5\n74954|0.80556\n74955|0.75\n74956|0.73611\n74957|0.55556\n74958|0.61111\n74959|0.65278\n74960|0.83333\n74961|0.83333\n74962|0.81944\n74963|0.84722\n74964|0.83333\n74965|0.84722\n74966|0.38889\n74967|0.15278\n74968|0.52778\n74969|0.44444\n74970|0.5\n74971|0.43056\n74972|0.5\n74973|0.5\n74974|0.54167\n74975|0.5\n74976|0.5\n74977|0.43056\n74978|0.5\n74979|0.51389\n74980|0.5\n74981|0.5\n74982|0.66667\n74983|0.77778\n74984|0.88889\n74985|0.5\n74986|0.76389\n74987|0.55556\n74988|0.15278\n74989|0.55556\n74990|0.44444\n74991|0.51389\n74992|0.52778\n74993|0.65278\n74994|0.51389\n74995|0.5\n74996|0.5\n74997|0.36111\n74998|0.5\n74999|0.69444\n75000|0.375\n75001|0.5\n75002|0.23611\n75003|0.45833\n75004|0.5\n75005|0.5\n75006|0.5\n75007|0.52778\n75008|0.54167\n75009|0.5\n75010|0.55556\n75011|0.55556\n75012|0.5\n75013|0.52778\n75014|0.51389\n75015|0.5\n75016|0.47222\n75017|0.59722\n75018|0.63889\n75019|0.55556\n75020|0.51389\n75021|0.34722\n75022|0.51389\n75023|0.45833\n75024|0.55556\n75025|0.5\n75026|0.5\n75027|0.5\n75028|0.45833\n75029|0.40278\n75030|0.5\n75031|0.61111\n75032|0.56944\n75033|0.5\n75034|0.54167\n75035|0.76389\n75036|0.80556\n75037|0.59722\n75038|0.61111\n75039|0.72222\n75040|0.80556\n75041|0.27778\n75042|0.625\n75043|0.29167\n75044|0.5\n75045|0.5\n75046|0.55556\n75047|0.72222\n75048|0.5\n75049|0.81944\n75050|0.5\n75051|0.5\n75052|0.48611\n75053|0.59722\n75054|0.51389\n75055|0.72222\n75056|0.44444\n75057|0.5\n75058|0.61111\n75059|0.55556\n75060|0.5\n75061|0.5\n75062|0.5\n75063|0.69444\n75064|0.54167\n75065|0.77778\n75066|0.5\n75067|0.52778\n75068|0.51389\n75069|0.47222\n75070|0.44444\n75071|0.65278\n75072|0.51389\n75073|0.55556\n75074|0.58333\n75075|0.5\n75076|0.48611\n75077|0.70833\n75078|0.5\n75079|0.625\n75080|0.5\n75081|0.83333\n75082|0.38889\n75083|0.63889\n75084|0.36111\n75085|0.44444\n75086|0.61111\n75087|0.51389\n75088|0.52778\n75089|0.55556\n75090|0.66667\n75091|0.83333\n75092|0.47222\n75093|0.55556\n75094|0.76389\n75095|0.52778\n75096|0.59722\n75097|0.65278\n75098|0.73611\n75099|0.80556\n75100|0.63889\n75101|0.875\n75102|0.91667\n75103|0.41667\n75104|0.19444\n75105|0.73611\n75106|0.875\n75107|0.36111\n75108|0.38889\n75109|0.38889\n75110|0.52778\n75111|0.5\n75112|0.22222\n75113|0.44444\n75114|0.5\n75115|0.5\n75116|0.56944\n75117|0.5\n75118|0.5\n75119|0.56944\n75120|0.5\n75121|0.5\n75122|0.51389\n75123|0.45833\n75124|0.16667\n75125|0.30556\n75126|0.26389\n75127|0.33333\n75128|0.16667\n75129|0.055556\n75130|0.38889\n75131|0.38889\n75132|0.33333\n75133|0.33333\n75134|0.375\n75135|0.34722\n75136|0.43056\n75137|0.52778\n75138|0.5\n75139|0.77778\n75140|0.65278\n75141|0.80556\n75142|0.51389\n75143|0.61111\n75144|0.79167\n75145|0.77778\n75146|0.81944\n75147|0.76389\n75148|0.77778\n75149|0.75\n75150|0.69444\n75151|0.51389\n75152|0.61111\n75153|0.47222\n75154|0.5\n75155|0.55556\n75156|0.5\n75157|0.5\n75158|0.5\n75159|0.44444\n75160|0.375\n75161|0.40278\n75162|0.5\n75163|0.5\n75164|0.5\n75165|0.5\n75166|0.5\n75167|0.33333\n75168|0.72222\n75169|0.68056\n75170|0.5\n75171|0.5\n75172|0.5\n75173|0.5\n75174|0.5\n75175|0.5\n75176|0.75\n75177|0.27778\n75178|0.5\n75179|0.48611\n75180|0.625\n75181|0.52778\n75182|0.625\n75183|0.5\n75184|0.56944\n75185|0.59722\n75186|0.72222\n75187|0.5\n75188|0.76389\n75189|0.5\n75190|0.56944\n75191|0.5\n75192|0.51389\n75193|0.44444\n75194|0.5\n75195|0.63889\n75196|0.5\n75197|0.27778\n75198|0.33333\n75199|0.69444\n75200|0.56944\n75201|0.625\n75202|0.875\n75203|0.54167\n75204|0.55556\n75205|0.58333\n75206|0.5\n75207|0.55556\n75208|0.625\n75209|0.77778\n75210|0.55556\n75211|0.69444\n75212|0.61111\n75213|0.40278\n75214|0.44444\n75215|0.61111\n75216|0.5\n75217|0.5\n75218|0.47222\n75219|0.51389\n75220|0.61111\n75221|0.80556\n75222|0.41667\n75223|0.69444\n75224|0.375\n75225|0.47222\n75226|0.66667\n75227|0.33333\n75228|0.48611\n75229|0.72222\n75230|0.5\n75231|0.83333\n75232|0.73611\n75233|0.875\n75234|0.79167\n75235|0.83333\n75236|0.75\n75237|0.88889\n75238|0.41667\n75239|0.36111\n75240|0.55556\n75241|0.5\n75242|0.45833\n75243|0.77778\n75244|0.75\n75245|0.72222\n75246|0.22222\n75247|0.68056\n75248|0.95833\n75249|0.33333\n75250|0.38889\n75251|0.77778\n75252|0.73611\n75253|0.70833\n75254|0.5\n75255|0.61111\n75256|0.72222\n75257|0.55556\n75258|0.68056\n75259|0.625\n75260|0.61111\n75261|0.5\n75262|0.68056\n75263|0.54167\n75264|0.45833\n75265|0.45833\n75266|0.66667\n75267|0.63889\n75268|0.5\n75269|0.56944\n75270|0.54167\n75271|0.52778\n75272|0.5\n75273|0.65278\n75274|0.625\n75275|0.5\n75276|0.5\n75277|0.47222\n75278|0.5\n75279|0.56944\n75280|0.56944\n75281|0.55556\n75282|0.72222\n75283|0.5\n75284|0.55556\n75285|0.45833\n75286|0.66667\n75287|0.34722\n75288|0.81944\n75289|0.83333\n75290|0.63889\n75291|0.56944\n75292|0.5\n75293|0.76389\n75294|0.55556\n75295|0.5\n75296|0.38889\n75297|0.51389\n75298|0.5\n75299|0.51389\n75300|0.86111\n75301|0.55556\n75302|0.44444\n75303|0.625\n75304|0.65278\n75305|0.5\n75306|0.38889\n75307|0.56944\n75308|0.5\n75309|0.5\n75310|0.72222\n75311|0.34722\n75312|0.81944\n75313|0.58333\n75314|0.19444\n75315|0.38889\n75316|0.27778\n75317|0.5\n75318|0.61111\n75319|0.66667\n75320|0.47222\n75321|0.73611\n75322|0.61111\n75323|0.80556\n75324|0.75\n75325|0.75\n75326|0.5\n75327|0.93056\n75328|0.68056\n75329|0.65278\n75330|0.66667\n75331|0.73611\n75332|0.66667\n75333|0.5\n75334|0.44444\n75335|0.70833\n75336|0.66667\n75337|0.5\n75338|0.5\n75339|0.69444\n75340|0.38889\n75341|0.38889\n75342|0.72222\n75343|0.59722\n75344|0.44444\n75345|0.55556\n75346|0.83333\n75347|0.81944\n75348|0.52778\n75349|0.63889\n75350|0.43056\n75351|0.47222\n75352|0.43056\n75353|0.56944\n75354|0.43056\n75355|0.61111\n75356|0.72222\n75357|0.76389\n75358|0.79167\n75359|0.94444\n75360|0.70833\n75361|0.875\n75362|0.84722\n75363|0.65278\n75364|0.77778\n75365|0.61111\n75366|0.80556\n75367|0.875\n75368|0.93056\n75369|0.84722\n75370|0.97222\n75371|0.86111\n75372|0.72222\n75373|0.77778\n75374|0.83333\n75375|0.77778\n75376|0.88889\n75377|0.69444\n75378|0.70833\n75379|0.76389\n75380|0.76389\n75381|0.81944\n75382|0.52778\n75383|0.72222\n75384|0.69444\n75385|0.56944\n75386|0.5\n75387|0.80556\n75388|0.65278\n75389|0.58333\n75390|0.5\n75391|0.59722\n75392|0.5\n75393|0.48611\n75394|0.83333\n75395|0.65278\n75396|0.625\n75397|0.27778\n75398|0.51389\n75399|0.73611\n75400|0.5\n75401|0.5\n75402|0.75\n75403|0.77778\n75404|0.66667\n75405|0.73611\n75406|0.5\n75407|0.27778\n75408|0.30556\n75409|0.52778\n75410|0.5\n75411|0.45833\n75412|0.5\n75413|0.51389\n75414|0.875\n75415|0.55556\n75416|0.76389\n75417|0.94444\n75418|0.5\n75419|0.51389\n75420|0.45833\n75421|0.44444\n75422|0.51389\n75423|0.51389\n75424|0.48611\n75425|0.48611\n75426|0.56944\n75427|0.36111\n75428|0.44444\n75429|0.38889\n75430|0.58333\n75431|0.55556\n75432|0.48611\n75433|0.65278\n75434|0.625\n75435|0.65278\n75436|0.80556\n75437|0.80556\n75438|0.5\n75439|0.40278\n75440|0.58333\n75441|0.75\n75442|0.5\n75443|0.5\n75444|0.5\n75445|0.5\n75446|0.5\n75447|0.51389\n75448|0.34722\n75449|0.72222\n75450|0.54167\n75451|0.68056\n75452|0.40278\n75453|0.5\n75454|0.63889\n75455|0.29167\n75456|0.65278\n75457|0.18056\n75458|0.43056\n75459|0.61111\n75460|0.45833\n75461|0.27778\n75462|0.44444\n75463|0.31944\n75464|0.66667\n75465|0.34722\n75466|0.66667\n75467|0.18056\n75468|0.61111\n75469|0.31944\n75470|0.5\n75471|0.69444\n75472|0.45833\n75473|0.625\n75474|0.76389\n75475|0.45833\n75476|0.55556\n75477|0.88889\n75478|0.65278\n75479|0.38889\n75480|0.54167\n75481|0.5\n75482|0.59722\n75483|0.5\n75484|0.54167\n75485|0.58333\n75486|0.5\n75487|0.47222\n75488|0.55556\n75489|0.5\n75490|0.375\n75491|0.77778\n75492|0.83333\n75493|0.47222\n75494|0.44444\n75495|0.61111\n75496|0.36111\n75497|0.44444\n75498|0.33333\n75499|0.29167\n75500|0.52778\n75501|0.26389\n75502|0.52778\n75503|0.58333\n75504|0.5\n75505|0.52778\n75506|0.5\n75507|0.45833\n75508|0.15278\n75509|0.59722\n75510|0.51389\n75511|0.5\n75512|0.56944\n75513|0.47222\n75514|0.47222\n75515|0.5\n75516|0.72222\n75517|0.43056\n75518|0.625\n75519|0.47222\n75520|0.52778\n75521|0.40278\n75522|0.5\n75523|0.31944\n75524|0.55556\n75525|0.72222\n75526|0.40278\n75527|0.61111\n75528|0.55556\n75529|0.41667\n75530|0.5\n75531|0.33333\n75532|0.5\n75533|0.51389\n75534|0.51389\n75535|0.40278\n75536|0.52778\n75537|0.83333\n75538|0.47222\n75539|0.72222\n75540|0.5\n75541|0.58333\n75542|0.61111\n75543|0.75\n75544|0.73611\n75545|0.58333\n75546|0.5\n75547|0.55556\n75548|0.72222\n75549|0.44444\n75550|0.55556\n75551|0.41667\n75552|0.52778\n75553|0.69444\n75554|0.41667\n75555|0.43056\n75556|0.43056\n75557|0.77778\n75558|0.88889\n75559|0.76389\n75560|0.5\n75561|0.76389\n75562|0.75\n75563|0.40278\n75564|0.45833\n75565|0.58333\n75566|0.47222\n75567|0.51389\n75568|0.70833\n75569|0.70833\n75570|0.69444\n75571|0.54167\n75572|0.75\n75573|0.77778\n75574|0.70833\n75575|0.70833\n75576|0.61111\n75577|0.73611\n75578|0.66667\n75579|0.59722\n75580|0.84722\n75581|0.84722\n75582|0.77778\n75583|0.93056\n75584|0.66667\n75585|0.70833\n75586|0.72222\n75587|0.86111\n75588|0.83333\n75589|0.63889\n75590|0.91667\n75591|0.68056\n75592|0.79167\n75593|0.88889\n75594|0.79167\n75595|0.61111\n75596|0.77778\n75597|0.88889\n75598|0.81944\n75599|0.88889\n75600|0.77778\n75601|0.88889\n75602|0.70833\n75603|0.75\n75604|0.77778\n75605|0.38889\n75606|0.84722\n75607|0.52778\n75608|0.33333\n75609|0.66667\n75610|0.61111\n75611|0.59722\n75612|0.73611\n75613|0.66667\n75614|0.63889\n75615|0.27778\n75616|0.5\n75617|0.47222\n75618|0.68056\n75619|0.72222\n75620|0.83333\n75621|0.72222\n75622|0.38889\n75623|0.5\n75624|0.61111\n75625|0.61111\n75626|0.5\n75627|0.5\n75628|0.5\n75629|0.55556\n75630|0.44444\n75631|0.52778\n75632|0.56944\n75633|0.75\n75634|0.54167\n75635|0.40278\n75636|0.51389\n75637|0.55556\n75638|0.5\n75639|0.56944\n75640|0.5\n75641|0.61111\n75642|0.44444\n75643|0.55556\n75644|0.5\n75645|0.5\n75646|0.43056\n75647|0.5\n75648|0.47222\n75649|0.79167\n75650|0.83333\n75651|0.77778\n75652|0.5\n75653|0.66667\n75654|0.77778\n75655|0.56944\n75656|0.625\n75657|0.84722\n75658|0.81944\n75659|0.66667\n75660|0.56944\n75661|0.36111\n75662|0.33333\n75663|0.36111\n75664|0.5\n75665|0.44444\n75666|0.66667\n75667|0.84722\n75668|0.34722\n75669|0.5\n75670|0.63889\n75671|0.43056\n75672|0.52778\n75673|0.55556\n75674|0.5\n75675|0.77778\n75676|0.54167\n75677|0.5\n75678|0.5\n75679|0.58333\n75680|0.5\n75681|0.55556\n75682|0.72222\n75683|0.61111\n75684|0.54167\n75685|0.47222\n75686|0.5\n75687|0.80556\n75688|0.88889\n75689|0.51389\n75690|0.65278\n75691|0.63889\n75692|0.63889\n75693|0.5\n75694|0.44444\n75695|0.66667\n75696|0.70833\n75697|0.61111\n75698|0.43056\n75699|0.5\n75700|0.5\n75701|0.51389\n75702|0.625\n75703|0.63889\n75704|0.5\n75705|0.40278\n75706|0.15278\n75707|0.68056\n75708|0.5\n75709|0.55556\n75710|0.55556\n75711|0.5\n75712|0.47222\n75713|0.76389\n75714|0.68056\n75715|0.63889\n75716|0.54167\n75717|0.44444\n75718|0.41667\n75719|0.61111\n75720|0.40278\n75721|0.52778\n75722|0.38889\n75723|0.5\n75724|0.43056\n75725|0.63889\n75726|0.54167\n75727|0.44444\n75728|0.625\n75729|0.27778\n75730|0.45833\n75731|0.22222\n75732|0.61111\n75733|0.76389\n75734|0.86111\n75735|0.48611\n75736|0.44444\n75737|0.51389\n75738|0.5\n75739|0.52778\n75740|0.44444\n75741|0.375\n75742|0.5\n75743|0.72222\n75744|0.77778\n75745|0.68056\n75746|0.51389\n75747|0.61111\n75748|0.63889\n75749|0.34722\n75750|0.5\n75751|0.5\n75752|0.72222\n75753|0.40278\n75754|0.66667\n75755|0.5\n75756|0.52778\n75757|0.5\n75758|0.44444\n75759|0.5\n75760|0.625\n75761|0.44444\n75762|0.47222\n75763|0.33333\n75764|0.29167\n75765|0.22222\n75766|0.097222\n75767|0.5\n75768|0.66667\n75769|0.34722\n75770|0.5\n75771|0.5\n75772|0.38889\n75773|0.43056\n75774|0.5\n75775|0.55556\n75776|0.5\n75777|0.83333\n75778|0.81944\n75779|0.43056\n75780|0.16667\n75781|0.47222\n75782|0.51389\n75783|0.47222\n75784|0.55556\n75785|0.83333\n75786|0.66667\n75787|0.61111\n75788|0.625\n75789|0.55556\n75790|0.5\n75791|0.66667\n75792|0.90278\n75793|0.29167\n75794|0.69444\n75795|0.69444\n75796|0.51389\n75797|0.44444\n75798|0.59722\n75799|0.63889\n75800|0.44444\n75801|0.11111\n75802|0.63889\n75803|0.65278\n75804|0.51389\n75805|0.51389\n75806|0.44444\n75807|0.52778\n75808|0.5\n75809|0.5\n75810|0.40278\n75811|0.41667\n75812|0.65278\n75813|0.61111\n75814|0.55556\n75815|0.40278\n75816|0.5\n75817|0.54167\n75818|0.56944\n75819|0.90278\n75820|0.76389\n75821|0.44444\n75822|0.375\n75823|0.5\n75824|0.48611\n75825|0.45833\n75826|0.48611\n75827|0.54167\n75828|0.5\n75829|0.5\n75830|0.5\n75831|0.5\n75832|0.61111\n75833|0.73611\n75834|0.66667\n75835|0.58333\n75836|0.68056\n75837|0.51389\n75838|0.47222\n75839|0.77778\n75840|0.52778\n75841|0.48611\n75842|0.41667\n75843|0.84722\n75844|0.66667\n75845|0.76389\n75846|0.51389\n75847|0.58333\n75848|0.5\n75849|0.61111\n75850|0.5\n75851|0.79167\n75852|0.51389\n75853|0.56944\n75854|0.38889\n75855|0.56944\n75856|0.72222\n75857|0.43056\n75858|0.86111\n75859|0.5\n75860|0.51389\n75861|0.59722\n75862|0.52778\n75863|0.45833\n75864|0.48611\n75865|0.5\n75866|0.5\n75867|0.61111\n75868|0.5\n75869|0.70833\n75870|0.65278\n75871|0.59722\n75872|0.56944\n75873|0.66667\n75874|0.5\n75875|0.56944\n75876|0.72222\n75877|0.59722\n75878|0.77778\n75879|0.72222\n75880|0.68056\n75881|0.55556\n75882|0.44444\n75883|0.66667\n75884|0.44444\n75885|0.5\n75886|0.45833\n75887|0.61111\n75888|0.5\n75889|0.51389\n75890|0.55556\n75891|0.66667\n75892|0.5\n75893|0.52778\n75894|0.73611\n75895|0.68056\n75896|0.5\n75897|0.43056\n75898|0.56944\n75899|0.48611\n75900|0.86111\n75901|0.63889\n75902|0.5\n75903|0.5\n75904|0.5\n75905|0.48611\n75906|0.63889\n75907|0.76389\n75908|0.61111\n75909|0.52778\n75910|0.51389\n75911|0.63889\n75912|0.55556\n75913|0.69444\n75914|0.77778\n75915|0.5\n75916|0.63889\n75917|0.69444\n75918|0.75\n75919|0.81944\n75920|0.76389\n75921|0.75\n75922|0.61111\n75923|0.81944\n75924|0.79167\n75925|1\n75926|0.34722\n75927|0.69444\n75928|0.61111\n75929|0.56944\n75930|0.5\n75931|0.5\n75932|0.5\n75933|0.44444\n75934|0.52778\n75935|0.81944\n75936|0.69444\n75937|0.58333\n75938|0.77778\n75939|0.70833\n75940|0.86111\n75941|0.75\n75942|0.84722\n75943|0.97222\n75944|0.94444\n75945|0.5\n75946|0.44444\n75947|0.43056\n75948|0.61111\n75949|0.79167\n75950|0.79167\n75951|0.5\n75952|0.76389\n75953|0.88889\n75954|0.625\n75955|0.61111\n75956|0.75\n75957|0.625\n75958|0.5\n75959|0.51389\n75960|0.73611\n75961|0.52778\n75962|0.86111\n75963|0.68056\n75964|0.76389\n75965|0.65278\n75966|0.79167\n75967|0.68056\n75968|0.70833\n75969|0.625\n75970|0.61111\n75971|0.77778\n75972|0.79167\n75973|0.66667\n75974|0.52778\n75975|0.5\n75976|0.77778\n75977|0.75\n75978|0.73611\n75979|0.75\n75980|0.48611\n75981|0.63889\n75982|0.40278\n75983|0.31944\n75984|0.61111\n75985|0.55556\n75986|0.51389\n75987|0.625\n75988|0.5\n75989|0.43056\n75990|0.36111\n75991|0.27778\n75992|0.45833\n75993|0.625\n75994|0.63889\n75995|0.44444\n75996|0.52778\n75997|0.48611\n75998|0.40278\n75999|0.5\n76000|0.83333\n76001|0.58333\n76002|0.5\n76003|0.5\n76004|0.47222\n76005|0.61111\n76006|0.51389\n76007|0.81944\n76008|0.58333\n76009|0.52778\n76010|0.5\n76011|0.625\n76012|0.75\n76013|0.5\n76014|0.5\n76015|0.55556\n76016|0.51389\n76017|0.41667\n76018|0.52778\n76019|0.47222\n76020|0.5\n76021|0.5\n76022|0.51389\n76023|0.5\n76024|0.5\n76025|0.65278\n76026|0.61111\n76027|0.81944\n76028|0.83333\n76029|0.83333\n76030|0.51389\n76031|0.5\n76032|0.5\n76033|0.5\n76034|0.5\n76035|0.44444\n76036|0.5\n76037|0.76389\n76038|0.51389\n76039|0.76389\n76040|0.68056\n76041|0.59722\n76042|0.47222\n76043|0.5\n76044|0.47222\n76045|0.48611\n76046|0.375\n76047|0.47222\n76048|0.31944\n76049|0.73611\n76050|0.52778\n76051|0.61111\n76052|0.72222\n76053|0.51389\n76054|0.56944\n76055|0.70833\n76056|0.47222\n76057|0.61111\n76058|0.66667\n76059|0.77778\n76060|0.5\n76061|0.68056\n76062|0.36111\n76063|0.5\n76064|0.5\n76065|0.59722\n76066|0.58333\n76067|0.5\n76068|0.80556\n76069|0.51389\n76070|0.75\n76071|0.5\n76072|0.63889\n76073|0.66667\n76074|0.27778\n76075|0.20833\n76076|0.41667\n76077|0.22222\n76078|0.375\n76079|0.68056\n76080|0.5\n76081|0.56944\n76082|0.63889\n76083|0.51389\n76084|0.54167\n76085|0.63889\n76086|0.73611\n76087|0.59722\n76088|0.66667\n76089|0.66667\n76090|0.5\n76091|0.63889\n76092|0.48611\n76093|0.54167\n76094|0.44444\n76095|0.84722\n76096|0.65278\n76097|0.40278\n76098|0.70833\n76099|0.5\n76100|0.5\n76101|0.5\n76102|0.5\n76103|0.51389\n76104|0.54167\n76105|0.5\n76106|0.5\n76107|0.5\n76108|0.58333\n76109|0.5\n76110|0.65278\n76111|0.5\n76112|0.5\n76113|0.5\n76114|0.55556\n76115|0.5\n76116|0.625\n76117|0.5\n76118|0.58333\n76119|0.5\n76120|0.54167\n76121|0.5\n76122|0.69444\n76123|0.45833\n76124|0.5\n76125|0.5\n76126|0.5\n76127|0.66667\n76128|0.59722\n76129|0.61111\n76130|0.77778\n76131|0.125\n76132|0.54167\n76133|0.94444\n76134|0.59722\n76135|0.375\n76136|0.54167\n76137|0.44444\n76138|0.51389\n76139|0.47222\n76140|0.76389\n76141|0.5\n76142|0.52778\n76143|0.75\n76144|0.79167\n76145|0.5\n76146|0.79167\n76147|0.56944\n76148|0.625\n76149|0.66667\n76150|0.86111\n76151|0.34722\n76152|0.80556\n76153|0.58333\n76154|0.56944\n76155|0.34722\n76156|0.55556\n76157|0.34722\n76158|0.45833\n76159|0.5\n76160|0.51389\n76161|0.16667\n76162|0.29167\n76163|0.5\n76164|0.55556\n76165|0.5\n76166|0.73611\n76167|0.27778\n76168|0.94444\n76169|0.5\n76170|0.33333\n76171|0.61111\n76172|0.54167\n76173|0.43056\n76174|0.375\n76175|0.5\n76176|0.70833\n76177|0.83333\n76178|0.59722\n76179|0.59722\n76180|0.55556\n76181|0.56944\n76182|0.5\n76183|0.5\n76184|0.58333\n76185|0.61111\n76186|0.45833\n76187|0.55556\n76188|0.5\n76189|0.625\n76190|0.5\n76191|0.52778\n76192|0.51389\n76193|0.5\n76194|0.52778\n76195|0.69444\n76196|0.5\n76197|0.51389\n76198|0.5\n76199|0.45833\n76200|0.41667\n76201|0.65278\n76202|0.55556\n76203|0.5\n76204|0.47222\n76205|0.43056\n76206|0.94444\n76207|0.65278\n76208|0.51389\n76209|0.5\n76210|0.69444\n76211|0.5\n76212|0.52778\n76213|0.65278\n76214|0.47222\n76215|0.56944\n76216|0.33333\n76217|0.5\n76218|0.5\n76219|0.83333\n76220|0.5\n76221|0.58333\n76222|0.5\n76223|0.5\n76224|0.5\n76225|0.86111\n76226|0.55556\n76227|0.76389\n76228|0.54167\n76229|0.38889\n76230|0.77778\n76231|0.5\n76232|0.5\n76233|0.51389\n76234|0.65278\n76235|0.69444\n76236|0.5\n76237|0.5\n76238|0.75\n76239|0.5\n76240|0.55556\n76241|0.48611\n76242|0.68056\n76243|0.66667\n76244|0.54167\n76245|0.51389\n76246|0.375\n76247|0.73611\n76248|0.75\n76249|0.83333\n76250|0.72222\n76251|0.73611\n76252|0.70833\n76253|0.75\n76254|0.54167\n76255|0.38889\n76256|0.19444\n76257|0.38889\n76258|0.33333\n76259|0.47222\n76260|0.59722\n76261|0.69444\n76262|0.86111\n76263|0.88889\n76264|0.23611\n76265|0.51389\n76266|0.5\n76267|0.5\n76268|0.5\n76269|0.19444\n76270|0.77778\n76271|0.48611\n76272|0.59722\n76273|0.5\n76274|0.54167\n76275|0.48611\n76276|0.5\n76277|0.44444\n76278|0.93056\n76279|0.38889\n76280|0.5\n76281|0.5\n76282|0.5\n76283|0.55556\n76284|0.5\n76285|0.54167\n76286|0.59722\n76287|0.75\n76288|0.58333\n76289|0.72222\n76290|0.5\n76291|0.5\n76292|0.59722\n76293|0.72222\n76294|0.5\n76295|0.5\n76296|0.5\n76297|0.41667\n76298|0.41667\n76299|0.41667\n76300|0.5\n76301|0.41667\n76302|0.52778\n76303|0.5\n76304|0.5\n76305|0.59722\n76306|0.5\n76307|0.51389\n76308|0.51389\n76309|0.5\n76310|0.5\n76311|0.56944\n76312|0.68056\n76313|0.83333\n76314|0.84722\n76315|0.5\n76316|0.51389\n76317|0.76389\n76318|0.75\n76319|0.40278\n76320|0.59722\n76321|0.56944\n76322|0.5\n76323|0.55556\n76324|0.58333\n76325|0.33333\n76326|0.44444\n76327|0.5\n76328|0.75\n76329|0.5\n76330|0.63889\n76331|0.80556\n76332|0.81944\n76333|0.36111\n76334|0.72222\n76335|0.61111\n76336|0.48611\n76337|0.59722\n76338|0.77778\n76339|0.59722\n76340|0.65278\n76341|0.68056\n76342|0.69444\n76343|0.77778\n76344|0.40278\n76345|0.38889\n76346|0.5\n76347|0.44444\n76348|0.5\n76349|0.58333\n76350|0.625\n76351|0.76389\n76352|0.72222\n76353|0.54167\n76354|0.56944\n76355|0.5\n76356|0.65278\n76357|0.70833\n76358|0.55556\n76359|0.76389\n76360|0.51389\n76361|0.5\n76362|0.88889\n76363|0.73611\n76364|0.5\n76365|0.54167\n76366|0.5\n76367|0.61111\n76368|0.5\n76369|0.69444\n76370|0.55556\n76371|0.52778\n76372|0.55556\n76373|0.75\n76374|0.76389\n76375|0.55556\n76376|0.5\n76377|0.625\n76378|0.54167\n76379|0.30556\n76380|0.5\n76381|0.51389\n76382|0.61111\n76383|0.83333\n76384|0.56944\n76385|0.52778\n76386|0.55556\n76387|0.625\n76388|0.52778\n76389|0.63889\n76390|0.48611\n76391|0.65278\n76392|0.63889\n76393|0.66667\n76394|0.5\n76395|0.55556\n76396|0.5\n76397|0.5\n76398|0.5\n76399|0.59722\n76400|0.5\n76401|0.77778\n76402|0.45833\n76403|0.44444\n76404|0.47222\n76405|0.48611\n76406|0.48611\n76407|0.58333\n76408|0.61111\n76409|0.94444\n76410|0.76389\n76411|0.59722\n76412|0.81944\n76413|0.55556\n76414|0.63889\n76415|0.73611\n76416|0.73611\n76417|0.61111\n76418|0.375\n76419|0.59722\n76420|0.54167\n76421|0.70833\n76422|0.47222\n76423|0.61111\n76424|0.73611\n76425|0.72222\n76426|0.76389\n76427|0.75\n76428|0.70833\n76429|0.69444\n76430|0.77778\n76431|0.61111\n76432|0.5\n76433|0.54167\n76434|0.66667\n76435|0.76389\n76436|0.76389\n76437|0.16667\n76438|0.58333\n76439|0.51389\n76440|0.52778\n76441|0.5\n76442|0.26389\n76443|0.69444\n76444|0.83333\n76445|0.79167\n76446|0.875\n76447|0.84722\n76448|0.56944\n76449|0.69444\n76450|0.58333\n76451|0.61111\n76452|0.75\n76453|0.75\n76454|0.45833\n76455|0.375\n76456|0.48611\n76457|0.5\n76458|0.5\n76459|0.55556\n76460|0.44444\n76461|0.68056\n76462|0.77778\n76463|0.51389\n76464|0.75\n76465|0.81944\n76466|0.77778\n76467|0.51389\n76468|0.625\n76469|0.76389\n76470|0.83333\n76471|0.79167\n76472|0.5\n76473|0.69444\n76474|0.5\n76475|0.5\n76476|0.61111\n76477|0.5\n76478|0.51389\n76479|0.61111\n76480|0.5\n76481|0.48611\n76482|0.5\n76483|0.66667\n76484|0.56944\n76485|0.5\n76486|0.5\n76487|0.54167\n76488|0.66667\n76489|0.55556\n76490|0.47222\n76491|0.5\n76492|0.41667\n76493|0.625\n76494|0.58333\n76495|0.47222\n76496|0.55556\n76497|0.59722\n76498|0.56944\n76499|0.45833\n76500|0.5\n76501|0.47222\n76502|0.58333\n76503|0.66667\n76504|0.81944\n76505|0.52778\n76506|0.5\n76507|0.54167\n76508|0.56944\n76509|0.55556\n76510|0.56944\n76511|0.73611\n76512|0.83333\n76513|0.79167\n76514|0.69444\n76515|0.72222\n76516|0.5\n76517|0.76389\n76518|0.59722\n76519|0.56944\n76520|0.51389\n76521|0.44444\n76522|0.69444\n76523|0.54167\n76524|0.52778\n76525|0.48611\n76526|0.56944\n76527|0.44444\n76528|0.38889\n76529|0.38889\n76530|0.59722\n76531|0.5\n76532|0.66667\n76533|0.55556\n76534|0.5\n76535|0.48611\n76536|0.5\n76537|0.66667\n76538|0.38889\n76539|0.56944\n76540|0.54167\n76541|0.5\n76542|0.52778\n76543|0.5\n76544|0.55556\n76545|0.54167\n76546|0.5\n76547|0.63889\n76548|0.875\n76549|0.56944\n76550|0.44444\n76551|0.5\n76552|0.65278\n76553|0.68056\n76554|0.33333\n76555|0.81944\n76556|0.79167\n76557|0.55556\n76558|0.55556\n76559|0.70833\n76560|0.47222\n76561|0.70833\n76562|0.43056\n76563|0.61111\n76564|0.72222\n76565|0.73611\n76566|0.61111\n76567|0.72222\n76568|0.65278\n76569|0.55556\n76570|0.5\n76571|0.55556\n76572|0.59722\n76573|0.5\n76574|0.48611\n76575|0.5\n76576|0.51389\n76577|0.5\n76578|0.5\n76579|0.54167\n76580|0.625\n76581|0.5\n76582|0.54167\n76583|0.65278\n76584|0.5\n76585|0.43056\n76586|0.66667\n76587|0.70833\n76588|0.63889\n76589|0.5\n76590|0.83333\n76591|0.66667\n76592|0.5\n76593|0.72222\n76594|0.54167\n76595|0.51389\n76596|0.44444\n76597|0.54167\n76598|0.5\n76599|0.55556\n76600|0.58333\n76601|0.61111\n76602|0.11111\n76603|0.63889\n76604|0.47222\n76605|0.77778\n76606|0.56944\n76607|0.81944\n76608|0.68056\n76609|0.70833\n76610|0.79167\n76611|0.77778\n76612|0.76389\n76613|0.77778\n76614|0.51389\n76615|0.65278\n76616|0.68056\n76617|0.625\n76618|0.44444\n76619|0.45833\n76620|0.5\n76621|0.36111\n76622|0.55556\n76623|0.54167\n76624|0.27778\n76625|0.41667\n76626|0.34722\n76627|0.15278\n76628|0.38889\n76629|0.54167\n76630|0.69444\n76631|0.5\n76632|0.5\n76633|0.61111\n76634|0.70833\n76635|0.61111\n76636|0.5\n76637|0.61111\n76638|0.61111\n76639|0.68056\n76640|0.69444\n76641|0.29167\n76642|0.47222\n76643|0.52778\n76644|0.5\n76645|0.51389\n76646|0.5\n76647|0.26389\n76648|0.5\n76649|0.25\n76650|0.55556\n76651|0.5\n76652|0.55556\n76653|0.58333\n76654|0.48611\n76655|0.5\n76656|0.48611\n76657|0.5\n76658|0.5\n76659|0.72222\n76660|0.625\n76661|0.75\n76662|0.5\n76663|0.375\n76664|0.44444\n76665|0.58333\n76666|0.54167\n76667|0.63889\n76668|0.63889\n76669|0.5\n76670|0.81944\n76671|0.79167\n76672|0.68056\n76673|0.41667\n76674|0.70833\n76675|0.66667\n76676|0.77778\n76677|0.41667\n76678|0.55556\n76679|0.5\n76680|0.5\n76681|0.51389\n76682|0.61111\n76683|0.63889\n76684|0.61111\n76685|0.47222\n76686|0.47222\n76687|0.52778\n76688|0.63889\n76689|0.41667\n76690|0.48611\n76691|0.5\n76692|0.58333\n76693|0.45833\n76694|0.47222\n76695|0.38889\n76696|0.5\n76697|0.34722\n76698|0.45833\n76699|0.69444\n76700|0.5\n76701|0.55556\n76702|0.5\n76703|0.5\n76704|0.65278\n76705|0.52778\n76706|0.5\n76707|0.63889\n76708|0.5\n76709|0.5\n76710|0.51389\n76711|0.63889\n76712|0.68056\n76713|0.48611\n76714|0.52778\n76715|0.5\n76716|0.59722\n76717|0.5\n76718|0.5\n76719|0.5\n76720|0.44444\n76721|0.51389\n76722|0.44444\n76723|0.55556\n76724|0.81944\n76725|0.73611\n76726|0.88889\n76727|0.38889\n76728|0.44444\n76729|0.5\n76730|0.68056\n76731|0.58333\n76732|0.94444\n76733|0.875\n76734|0.76389\n76735|0.79167\n76736|0.90278\n76737|0.93056\n76738|0.68056\n76739|0.59722\n76740|0.27778\n76741|0.69444\n76742|0.66667\n76743|0.51389\n76744|0.58333\n76745|0.51389\n76746|0.79167\n76747|0.875\n76748|0.83333\n76749|0.80556\n76750|0.5\n76751|0.38889\n76752|0.5\n76753|0.54167\n76754|0.43056\n76755|0.47222\n76756|0.55556\n76757|0.54167\n76758|0.47222\n76759|0.40278\n76760|0.43056\n76761|0.5\n76762|0.66667\n76763|0.5\n76764|0.44444\n76765|0.41667\n76766|0.58333\n76767|0.59722\n76768|0.5\n76769|0.38889\n76770|0.5\n76771|0.80556\n76772|0.58333\n76773|0.48611\n76774|0.56944\n76775|0.80556\n76776|0.55556\n76777|0.56944\n76778|0.61111\n76779|0.5\n76780|0.54167\n76781|0.76389\n76782|0.5\n76783|0.13889\n76784|0.40278\n76785|0.44444\n76786|0.40278\n76787|0.63889\n76788|0.70833\n76789|0.61111\n76790|0.70833\n76791|0.58333\n76792|0.5\n76793|0.65278\n76794|0.58333\n76795|0.27778\n76796|0.70833\n76797|0.5\n76798|0.51389\n76799|0.625\n76800|0.63889\n76801|0.81944\n76802|0.72222\n76803|0.77778\n76804|0.73611\n76805|0.83333\n76806|0.63889\n76807|0.76389\n76808|0.83333\n76809|0.75\n76810|0.80556\n76811|0.72222\n76812|0.70833\n76813|0.70833\n76814|0.73611\n76815|0.25\n76816|0.19444\n76817|0.5\n76818|0.54167\n76819|0.54167\n76820|0.61111\n76821|0.65278\n76822|0.72222\n76823|0.5\n76824|0.48611\n76825|0.61111\n76826|0.54167\n76827|0.5\n76828|0.47222\n76829|0.79167\n76830|0.56944\n76831|0.5\n76832|0.45833\n76833|0.54167\n76834|0.69444\n76835|0.52778\n76836|0.47222\n76837|0.5\n76838|0.65278\n76839|0.48611\n76840|0.59722\n76841|0.48611\n76842|0.47222\n76843|0.5\n76844|0.5\n76845|0.52778\n76846|0.55556\n76847|0.58333\n76848|0.5\n76849|0.55556\n76850|0.59722\n76851|0.5\n76852|0.61111\n76853|0.5\n76854|0.5\n76855|0.5\n76856|0.47222\n76857|0.55556\n76858|0.84722\n76859|0.58333\n76860|0.375\n76861|0.66667\n76862|0.58333\n76863|0.65278\n76864|0.40278\n76865|0.375\n76866|0.38889\n76867|0.18056\n76868|0.41667\n76869|0.45833\n76870|0.55556\n76871|0.5\n76872|0.5\n76873|0.33333\n76874|0.5\n76875|0.5\n76876|0.55556\n76877|0.5\n76878|0.79167\n76879|0.51389\n76880|0.5\n76881|0.44444\n76882|0.5\n76883|0.5\n76884|0.5\n76885|0.45833\n76886|0.5\n76887|0.48611\n76888|0.59722\n76889|0.80556\n76890|0.5\n76891|0.72222\n76892|0.59722\n76893|0.58333\n76894|0.51389\n76895|0.88889\n76896|0.44444\n76897|0.72222\n76898|0.69444\n76899|0.68056\n76900|0.75\n76901|0.56944\n76902|0.40278\n76903|0.26389\n76904|0.38889\n76905|0.38889\n76906|0.5\n76907|0.5\n76908|0.56944\n76909|0.84722\n76910|0.27778\n76911|0.83333\n76912|0.5\n76913|0.45833\n76914|0.68056\n76915|0.43056\n76916|0.47222\n76917|0.5\n76918|0.5\n76919|0.63889\n76920|0.5\n76921|0.52778\n76922|0.73611\n76923|0.79167\n76924|0.33333\n76925|0.66667\n76926|0.59722\n76927|0.5\n76928|0.5\n76929|0.5\n76930|0.61111\n76931|0.48611\n76932|0.41667\n76933|0.65278\n76934|0.56944\n76935|0.52778\n76936|0.48611\n76937|0.76389\n76938|0.56944\n76939|0.44444\n76940|0.5\n76941|0.61111\n76942|0.5\n76943|0.5\n76944|0.61111\n76945|0.5\n76946|0.86111\n76947|0.69444\n76948|0.61111\n76949|0.61111\n76950|0.61111\n76951|0.61111\n76952|0.5\n76953|0.84722\n76954|0.77778\n76955|0.76389\n76956|0.51389\n76957|0.59722\n76958|0.54167\n76959|0.625\n76960|0.58333\n76961|0.65278\n76962|0.52778\n76963|0.72222\n76964|0.625\n76965|0.81944\n76966|0.5\n76967|0.86111\n76968|0.75\n76969|0.68056\n76970|0.79167\n76971|0.63889\n76972|0.69444\n76973|0.34722\n76974|0.18056\n76975|0.36111\n76976|0.84722\n76977|0.77778\n76978|0.625\n76979|0.5\n76980|0.83333\n76981|0.59722\n76982|0.58333\n76983|0.5\n76984|0.59722\n76985|0.72222\n76986|0.55556\n76987|0.22222\n76988|0.5\n76989|0.38889\n76990|0.56944\n76991|0.70833\n76992|0.61111\n76993|0.59722\n76994|0.69444\n76995|0.59722\n76996|0.63889\n76997|0.5\n76998|0.51389\n76999|0.66667\n77000|0.63889\n77001|0.59722\n77002|0.56944\n77003|0.54167\n77004|0.75\n77005|0.72222\n77006|0.52778\n77007|0.52778\n77008|0.66667\n77009|0.61111\n77010|0.56944\n77011|0.51389\n77012|0.59722\n77013|0.72222\n77014|0.70833\n77015|0.54167\n77016|0.55556\n77017|0.72222\n77018|0.56944\n77019|0.66667\n77020|0.625\n77021|0.5\n77022|0.66667\n77023|0.68056\n77024|0.75\n77025|0.56944\n77026|0.44444\n77027|0.5\n77028|0.5\n77029|0.40278\n77030|0.52778\n77031|0.5\n77032|0.33333\n77033|0.40278\n77034|0.77778\n77035|0.56944\n77036|0.77778\n77037|0.54167\n77038|0.55556\n77039|0.51389\n77040|0.40278\n77041|0.51389\n77042|0.61111\n77043|0.56944\n77044|0.73611\n77045|0.79167\n77046|0.625\n77047|0.55556\n77048|0.51389\n77049|0.43056\n77050|0.5\n77051|0.5\n77052|0.59722\n77053|0.56944\n77054|0.66667\n77055|0.61111\n77056|0.55556\n77057|0.625\n77058|0.5\n77059|0.5\n77060|0.625\n77061|0.56944\n77062|0.72222\n77063|0.55556\n77064|0.63889\n77065|0.76389\n77066|0.70833\n77067|0.77778\n77068|0.625\n77069|0.73611\n77070|0.68056\n77071|0.77778\n77072|0.59722\n77073|0.81944\n77074|0.69444\n77075|0.73611\n77076|0.66667\n77077|0.86111\n77078|0.83333\n77079|0.83333\n77080|0.625\n77081|0.75\n77082|0.44444\n77083|0.34722\n77084|0.47222\n77085|0.54167\n77086|0.73611\n77087|0.69444\n77088|0.55556\n77089|0.5\n77090|0.33333\n77091|0.38889\n77092|0.16667\n77093|0.22222\n77094|0.22222\n77095|0.31944\n77096|0.13889\n77097|0.43056\n77098|0.54167\n77099|0.63889\n77100|0.5\n77101|0.5\n77102|0.68056\n77103|0.45833\n77104|0.30556\n77105|0.72222\n77106|0.81944\n77107|0.83333\n77108|0.52778\n77109|0.65278\n77110|0.625\n77111|0.48611\n77112|0.44444\n77113|0.75\n77114|0.58333\n77115|0.5\n77116|0.48611\n77117|0.47222\n77118|0.52778\n77119|0.43056\n77120|0.66667\n77121|0.72222\n77122|0.5\n77123|0.73611\n77124|0.77778\n77125|0.44444\n77126|0.5\n77127|0.34722\n77128|0.48611\n77129|0.51389\n77130|0.73611\n77131|0.5\n77132|0.51389\n77133|0.43056\n77134|0.52778\n77135|0.45833\n77136|0.55556\n77137|0.47222\n77138|0.56944\n77139|0.54167\n77140|0.5\n77141|0.5\n77142|0.54167\n77143|0.5\n77144|0.65278\n77145|0.5\n77146|0.52778\n77147|0.58333\n77148|0.51389\n77149|0.5\n77150|0.44444\n77151|0.51389\n77152|0.5\n77153|0.77778\n77154|0.59722\n77155|0.5\n77156|0.5\n77157|0.61111\n77158|0.58333\n77159|0.76389\n77160|0.5\n77161|0.48611\n77162|0.33333\n77163|0.22222\n77164|0.5\n77165|0.5\n77166|0.52778\n77167|0.77778\n77168|0.79167\n77169|0.66667\n77170|0.75\n77171|0.69444\n77172|0.86111\n77173|0.77778\n77174|0.5\n77175|0.5\n77176|0.44444\n77177|0.48611\n77178|0.5\n77179|0.83333\n77180|0.81944\n77181|0.72222\n77182|0.55556\n77183|0.72222\n77184|0.44444\n77185|0.48611\n77186|0.56944\n77187|0.38889\n77188|0.375\n77189|0.56944\n77190|0.44444\n77191|0.33333\n77192|0.40278\n77193|0.43056\n77194|0.375\n77195|0.58333\n77196|0.375\n77197|0.16667\n77198|0.69444\n77199|0.69444\n77200|0.33333\n77201|0.5\n77202|0.56944\n77203|0.72222\n77204|0.54167\n77205|0.59722\n77206|0.51389\n77207|0.18056\n77208|0.5\n77209|0.5\n77210|0.58333\n77211|0.63889\n77212|0.55556\n77213|0.77778\n77214|0.44444\n77215|0.5\n77216|0.47222\n77217|0.40278\n77218|0.41667\n77219|0.61111\n77220|0.5\n77221|0.56944\n77222|0.68056\n77223|0.61111\n77224|0.66667\n77225|0.61111\n77226|0.44444\n77227|0.59722\n77228|0.54167\n77229|0.5\n77230|0.5\n77231|0.72222\n77232|0.52778\n77233|0.75\n77234|0.52778\n77235|0.84722\n77236|0.86111\n77237|0.63889\n77238|0.65278\n77239|0.43056\n77240|0.84722\n77241|0.45833\n77242|0.26389\n77243|0.61111\n77244|0.56944\n77245|0.77778\n77246|0.61111\n77247|0.52778\n77248|0.76389\n77249|0.72222\n77250|0.72222\n77251|0.84722\n77252|0.72222\n77253|0.70833\n77254|0.83333\n77255|0.77778\n77256|0.43056\n77257|0.59722\n77258|0.59722\n77259|0.38889\n77260|0.625\n77261|0.44444\n77262|0.56944\n77263|0.47222\n77264|0.5\n77265|0.5\n77266|0.5\n77267|0.81944\n77268|0.73611\n77269|0.61111\n77270|0.61111\n77271|0.83333\n77272|0.5\n77273|0.51389\n77274|0.51389\n77275|0.55556\n77276|0.59722\n77277|0.5\n77278|0.625\n77279|0.80556\n77280|0.75\n77281|0.65278\n77282|0.72222\n77283|0.5\n77284|0.52778\n77285|0.55556\n77286|0.76389\n77287|0.55556\n77288|0.73611\n77289|0.63889\n77290|0.51389\n77291|0.5\n77292|0.52778\n77293|0.58333\n77294|0.77778\n77295|0.5\n77296|0.68056\n77297|0.93056\n77298|0.83333\n77299|0.5\n77300|0.5\n77301|0.5\n77302|0.5\n77303|0.55556\n77304|0.5\n77305|0.55556\n77306|0.83333\n77307|0.61111\n77308|0.48611\n77309|0.30556\n77310|0.5\n77311|0.59722\n77312|0.59722\n77313|0.66667\n77314|0.61111\n77315|0.56944\n77316|0.44444\n77317|0.65278\n77318|0.52778\n77319|0.55556\n77320|0.52778\n77321|0.5\n77322|0.26389\n77323|0.48611\n77324|0.5\n77325|0.51389\n77326|0.80556\n77327|0.5\n77328|0.58333\n77329|0.26389\n77330|0.47222\n77331|0.41667\n77332|0.47222\n77333|0.5\n77334|0.38889\n77335|0.58333\n77336|0.68056\n77337|0.61111\n77338|0.44444\n77339|0.52778\n77340|0.70833\n77341|0.73611\n77342|0.77778\n77343|0.41667\n77344|0.54167\n77345|0.56944\n77346|0.5\n77347|0.51389\n77348|0.47222\n77349|0.69444\n77350|0.65278\n77351|0.63889\n77352|0.55556\n77353|0.72222\n77354|0.47222\n77355|0.66667\n77356|0.51389\n77357|0.61111\n77358|0.55556\n77359|0.54167\n77360|0.5\n77361|0.79167\n77362|0.52778\n77363|0.73611\n77364|0.80556\n77365|0.63889\n77366|0.84722\n77367|0.59722\n77368|0.76389\n77369|0.56944\n77370|0.68056\n77371|0.55556\n77372|0.72222\n77373|0.72222\n77374|0.5\n77375|0.55556\n77376|0.45833\n77377|0.5\n77378|0.70833\n77379|0.70833\n77380|0.5\n77381|0.5\n77382|0.5\n77383|0.51389\n77384|0.34722\n77385|0.5\n77386|0.5\n77387|0.40278\n77388|0.31944\n77389|0.41667\n77390|0.40278\n77391|0.125\n77392|0.48611\n77393|0.38889\n77394|0.5\n77395|0.31944\n77396|0.33333\n77397|0.33333\n77398|0.40278\n77399|0.5\n77400|0.31944\n77401|0.44444\n77402|0.44444\n77403|0.51389\n77404|0.51389\n77405|0.5\n77406|0.5\n77407|0.625\n77408|0.66667\n77409|0.58333\n77410|0.86111\n77411|0.77778\n77412|0.63889\n77413|0.88889\n77414|0.59722\n77415|0.72222\n77416|0.40278\n77417|0.61111\n77418|0.30556\n77419|0.5\n77420|0.34722\n77421|0.72222\n77422|0.875\n77423|0.18056\n77424|0.26389\n77425|0.5\n77426|0.5\n77427|0.27778\n77428|0.33333\n77429|0.79167\n77430|0.70833\n77431|0.36111\n77432|0.59722\n77433|0.5\n77434|0.43056\n77435|0.38889\n77436|0.52778\n77437|0.61111\n77438|0.63889\n77439|0.625\n77440|0.83333\n77441|0.90278\n77442|0.625\n77443|0.52778\n77444|0.72222\n77445|0.5\n77446|0.375\n77447|0.76389\n77448|0.27778\n77449|0.18056\n77450|0.33333\n77451|0.33333\n77452|0.40278\n77453|0.81944\n77454|0.88889\n77455|0.375\n77456|0.5\n77457|0.41667\n77458|0.44444\n77459|0.33333\n77460|0.55556\n77461|0.73611\n77462|0.48611\n77463|0.5\n77464|0.29167\n77465|0.54167\n77466|0.58333\n77467|0.5\n77468|0.86111\n77469|0.625\n77470|0.69444\n77471|0.55556\n77472|0.72222\n77473|0.76389\n77474|0.625\n77475|0.5\n77476|0.5\n77477|0.5\n77478|0.83333\n77479|0.55556\n77480|0.55556\n77481|0.80556\n77482|0.77778\n77483|0.70833\n77484|0.72222\n77485|0.66667\n77486|0.73611\n77487|0.45833\n77488|0.61111\n77489|0.59722\n77490|0.56944\n77491|0.66667\n77492|0.75\n77493|0.80556\n77494|0.68056\n77495|0.55556\n77496|0.75\n77497|0.70833\n77498|0.61111\n77499|0.51389\n77500|0.86111\n77501|0.72222\n77502|0.59722\n77503|0.55556\n77504|0.69444\n77505|0.76389\n77506|0.44444\n77507|0.41667\n77508|0.55556\n77509|0.55556\n77510|0.58333\n77511|0.38889\n77512|0.41667\n77513|0.5\n77514|0.58333\n77515|0.59722\n77516|0.48611\n77517|0.44444\n77518|0.45833\n77519|0.5\n77520|0.44444\n77521|0.43056\n77522|0.69444\n77523|0.22222\n77524|0.79167\n77525|0.90278\n77526|0.66667\n77527|0.61111\n77528|0.69444\n77529|0.79167\n77530|0.5\n77531|0.875\n77532|0.83333\n77533|0.79167\n77534|0.72222\n77535|0.47222\n77536|0.79167\n77537|0.70833\n77538|0.66667\n77539|0.83333\n77540|0.77778\n77541|0.79167\n77542|0.81944\n77543|0.88889\n77544|0.66667\n77545|0.5\n77546|0.84722\n77547|0.73611\n77548|0.76389\n77549|0.72222\n77550|0.72222\n77551|0.44444\n77552|0.52778\n77553|0.58333\n77554|0.69444\n77555|0.5\n77556|0.80556\n77557|0.86111\n77558|0.875\n77559|0.66667\n77560|0.61111\n77561|0.58333\n77562|0.81944\n77563|0.5\n77564|0.54167\n77565|0.69444\n77566|0.36111\n77567|0.36111\n77568|0.38889\n77569|0.70833\n77570|0.65278\n77571|0.81944\n77572|0.55556\n77573|0.69444\n77574|0.69444\n77575|0.36111\n77576|0.38889\n77577|0.5\n77578|0.5\n77579|0.5\n77580|0.27778\n77581|0.5\n77582|0.51389\n77583|0.5\n77584|0.40278\n77585|0.5\n77586|0.36111\n77587|0.66667\n77588|0.76389\n77589|0.81944\n77590|0.70833\n77591|0.79167\n77592|0.54167\n77593|0.65278\n77594|0.69444\n77595|0.34722\n77596|0.58333\n77597|0.5\n77598|0.56944\n77599|0.5\n77600|0.54167\n77601|0.59722\n77602|0.54167\n77603|0.5\n77604|0.5\n77605|0.58333\n77606|0.5\n77607|0.48611\n77608|0.61111\n77609|0.84722\n77610|0.79167\n77611|0.875\n77612|0.44444\n77613|0.51389\n77614|0.33333\n77615|0.63889\n77616|0.63889\n77617|0.34722\n77618|0.54167\n77619|0.48611\n77620|0.5\n77621|0.52778\n77622|0.73611\n77623|0.68056\n77624|0.58333\n77625|0.54167\n77626|0.31944\n77627|0.5\n77628|0.5\n77629|0.61111\n77630|0.56944\n77631|0.43056\n77632|0.65278\n77633|0.625\n77634|0.55556\n77635|0.56944\n77636|0.51389\n77637|0.54167\n77638|0.52778\n77639|0.5\n77640|0.41667\n77641|0.66667\n77642|0.31944\n77643|0.5\n77644|0.5\n77645|0.41667\n77646|0.375\n77647|0.63889\n77648|0.59722\n77649|0.55556\n77650|0.51389\n77651|0.66667\n77652|0.51389\n77653|0.36111\n77654|0.5\n77655|0.58333\n77656|0.38889\n77657|0.45833\n77658|0.31944\n77659|0.5\n77660|0.36111\n77661|0.5\n77662|0.5\n77663|0.44444\n77664|0.55556\n77665|0.59722\n77666|0.625\n77667|0.72222\n77668|0.625\n77669|0.48611\n77670|0.33333\n77671|0.66667\n77672|0.43056\n77673|0.56944\n77674|0.44444\n77675|0.5\n77676|0.52778\n77677|0.44444\n77678|0.51389\n77679|0.56944\n77680|0.56944\n77681|0.43056\n77682|0.40278\n77683|0.63889\n77684|0.5\n77685|0.5\n77686|0.54167\n77687|0.38889\n77688|0.43056\n77689|0.40278\n77690|0.83333\n77691|0.30556\n77692|0.81944\n77693|0.45833\n77694|0.41667\n77695|0.58333\n77696|0.55556\n77697|0.5\n77698|0.63889\n77699|0.5\n77700|0.47222\n77701|0.5\n77702|0.51389\n77703|0.52778\n77704|0.40278\n77705|0.66667\n77706|0.76389\n77707|0.79167\n77708|0.5\n77709|0.5\n77710|0.68056\n77711|0.70833\n77712|0.44444\n77713|0.375\n77714|0.5\n77715|0.48611\n77716|0.55556\n77717|0.55556\n77718|0.59722\n77719|0.56944\n77720|0.55556\n77721|0.33333\n77722|0.66667\n77723|0.70833\n77724|0.56944\n77725|0.44444\n77726|0.44444\n77727|0.65278\n77728|0.76389\n77729|0.77778\n77730|0.55556\n77731|0.69444\n77732|0.56944\n77733|0.76389\n77734|0.625\n77735|0.38889\n77736|0.5\n77737|0.44444\n77738|0.5\n77739|0.5\n77740|0.61111\n77741|0.75\n77742|0.5\n77743|0.52778\n77744|0.54167\n77745|0.5\n77746|0.51389\n77747|0.52778\n77748|0.79167\n77749|0.55556\n77750|0.69444\n77751|0.90278\n77752|0.93056\n77753|0.68056\n77754|0.79167\n77755|0.5\n77756|0.5\n77757|0.5\n77758|0.5\n77759|0.47222\n77760|0.5\n77761|0.5\n77762|0.27778\n77763|0.38889\n77764|0.16667\n77765|0.33333\n77766|0.625\n77767|0.59722\n77768|0.55556\n77769|0.68056\n77770|0.66667\n77771|0.80556\n77772|0.31944\n77773|0.55556\n77774|0.54167\n77775|0.56944\n77776|0.5\n77777|0.79167\n77778|0.86111\n77779|0.43056\n77780|0.38889\n77781|0.45833\n77782|0.5\n77783|0.33333\n77784|0.55556\n77785|0.51389\n77786|0.56944\n77787|0.52778\n77788|0.70833\n77789|0.72222\n77790|0.66667\n77791|0.625\n77792|0.375\n77793|0.375\n77794|0.45833\n77795|0.625\n77796|0.55556\n77797|0.5\n77798|0.45833\n77799|0.69444\n77800|0.77778\n77801|0.58333\n77802|0.5\n77803|0.51389\n77804|0.375\n77805|0.65278\n77806|0.65278\n77807|0.25\n77808|0.77778\n77809|0.51389\n77810|0.55556\n77811|0.58333\n77812|0.5\n77813|0.72222\n77814|0.58333\n77815|0.48611\n77816|0.38889\n77817|0.72222\n77818|0.65278\n77819|0.65278\n77820|0.72222\n77821|0.54167\n77822|0.56944\n77823|0.68056\n77824|0.73611\n77825|0.5\n77826|0.55556\n77827|0.52778\n77828|0.27778\n77829|0.80556\n77830|0.56944\n77831|0.80556\n77832|0.76389\n77833|0.70833\n77834|0.76389\n77835|0.73611\n77836|0.76389\n77837|0.51389\n77838|0.875\n77839|0.86111\n77840|0.59722\n77841|0.84722\n77842|0.41667\n77843|0.5\n77844|0.58333\n77845|0.47222\n77846|0.5\n77847|0.69444\n77848|0.55556\n77849|0.44444\n77850|0.5\n77851|0.66667\n77852|0.5\n77853|0.56944\n77854|0.5\n77855|0.84722\n77856|0.63889\n77857|0.61111\n77858|0.59722\n77859|0.54167\n77860|0.75\n77861|0.69444\n77862|0.63889\n77863|0.56944\n77864|0.55556\n77865|0.38889\n77866|0.38889\n77867|0.38889\n77868|0.36111\n77869|0.55556\n77870|0.625\n77871|0.68056\n77872|0.69444\n77873|0.58333\n77874|0.61111\n77875|0.66667\n77876|0.625\n77877|0.83333\n77878|0.81944\n77879|0.76389\n77880|0.77778\n77881|0.94444\n77882|0.43056\n77883|0.36111\n77884|0.43056\n77885|0.44444\n77886|0.27778\n77887|0.69444\n77888|0.19444\n77889|0.26389\n77890|0.34722\n77891|0.26389\n77892|0.61111\n77893|0.5\n77894|0.5\n77895|0.47222\n77896|0.36111\n77897|0.51389\n77898|0.56944\n77899|0.52778\n77900|0.69444\n77901|0.59722\n77902|0.56944\n77903|0.5\n77904|0.77778\n77905|0.75\n77906|0.76389\n77907|0.70833\n77908|0.66667\n77909|0.75\n77910|0.86111\n77911|0.66667\n77912|0.69444\n77913|0.83333\n77914|0.80556\n77915|0.58333\n77916|0.75\n77917|0.72222\n77918|0.79167\n77919|0.83333\n77920|0.77778\n77921|0.84722\n77922|0.83333\n77923|0.88889\n77924|0.80556\n77925|0.61111\n77926|0.83333\n77927|0.41667\n77928|0.90278\n77929|0.77778\n77930|0.86111\n77931|0.86111\n77932|0.58333\n77933|0.79167\n77934|0.73611\n77935|0.73611\n77936|0.66667\n77937|0.51389\n77938|0.59722\n77939|0.77778\n77940|0.81944\n77941|0.94444\n77942|0.66667\n77943|0.52778\n77944|0.61111\n77945|0.69444\n77946|0.72222\n77947|0.83333\n77948|0.77778\n77949|0.93056\n77950|0.90278\n77951|0.77778\n77952|0.95833\n77953|0.70833\n77954|0.83333\n77955|0.83333\n77956|0.70833\n77957|0.83333\n77958|0.70833\n77959|0.58333\n77960|0.75\n77961|0.56944\n77962|0.5\n77963|0.34722\n77964|0.68056\n77965|0.5\n77966|0.56944\n77967|0.47222\n77968|0.55556\n77969|0.83333\n77970|0.34722\n77971|0.47222\n77972|0.5\n77973|0.5\n77974|0.5\n77975|0.72222\n77976|0.88889\n77977|0.79167\n77978|0.83333\n77979|0.79167\n77980|0.79167\n77981|0.91667\n77982|0.5\n77983|0.44444\n77984|0.5\n77985|0.33333\n77986|0.43056\n77987|0.44444\n77988|0.5\n77989|0.44444\n77990|0.59722\n77991|0.5\n77992|0.59722\n77993|0.5\n77994|0.45833\n77995|0.47222\n77996|0.18056\n77997|0.41667\n77998|0.5\n77999|0.54167\n78000|0.5\n78001|0.56944\n78002|0.81944\n78003|0.68056\n78004|0.51389\n78005|0.5\n78006|0.5\n78007|0.625\n78008|0.43056\n78009|0.45833\n78010|0.33333\n78011|0.69444\n78012|0.36111\n78013|0.61111\n78014|0.5\n78015|0.5\n78016|0.75\n78017|0.5\n78018|0.5\n78019|0.44444\n78020|0.375\n78021|0.55556\n78022|0.5\n78023|0.875\n78024|0.79167\n78025|0.86111\n78026|0.51389\n78027|0.76389\n78028|0.65278\n78029|0.94444\n78030|0.90278\n78031|0.76389\n78032|0.77778\n78033|0.55556\n78034|0.66667\n78035|0.86111\n78036|0.5\n78037|0.5\n78038|0.51389\n78039|0.44444\n78040|0.34722\n78041|0.47222\n78042|0.43056\n78043|0.44444\n78044|0.51389\n78045|0.43056\n78046|0.34722\n78047|0.27778\n78048|0.23611\n78049|0.38889\n78050|0.59722\n78051|0.40278\n78052|0.22222\n78053|0.27778\n78054|0.625\n78055|0.84722\n78056|0.54167\n78057|0.68056\n78058|0.5\n78059|0.65278\n78060|0.45833\n78061|0.45833\n78062|0.86111\n78063|0.51389\n78064|0.65278\n78065|0.84722\n78066|0.66667\n78067|0.55556\n78068|0.625\n78069|0.55556\n78070|0.66667\n78071|0.5\n78072|0.59722\n78073|0.52778\n78074|0.76389\n78075|0.44444\n78076|0.61111\n78077|0.5\n78078|0.43056\n78079|0.33333\n78080|0.40278\n78081|0.52778\n78082|0.44444\n78083|0.47222\n78084|0.41667\n78085|0.81944\n78086|0.61111\n78087|0.33333\n78088|0.79167\n78089|0.80556\n78090|0.5\n78091|0.68056\n78092|0.76389\n78093|0.65278\n78094|0.5\n78095|0.5\n78096|0.5\n78097|0.5\n78098|0.63889\n78099|0.69444\n78100|0.44444\n78101|0.40278\n78102|0.44444\n78103|0.33333\n78104|0.55556\n78105|0.5\n78106|0.48611\n78107|0.56944\n78108|0.75\n78109|0.5\n78110|0.47222\n78111|0.40278\n78112|0.44444\n78113|0.5\n78114|0.66667\n78115|0.38889\n78116|0.5\n78117|0.65278\n78118|0.45833\n78119|0.43056\n78120|0.44444\n78121|0.23611\n78122|0.44444\n78123|0.41667\n78124|0.5\n78125|0.5\n78126|0.47222\n78127|0.58333\n78128|0.61111\n78129|0.63889\n78130|0.51389\n78131|0.5\n78132|0.5\n78133|0.5\n78134|0.44444\n78135|0.5\n78136|0.88889\n78137|0.41667\n78138|0.70833\n78139|0.70833\n78140|0.29167\n78141|0.5\n78142|0.5\n78143|0.5\n78144|0.5\n78145|0.44444\n78146|0.5\n78147|0.55556\n78148|0.55556\n78149|0.43056\n78150|0.47222\n78151|0.54167\n78152|0.58333\n78153|0.5\n78154|0.5\n78155|0.5\n78156|0.5\n78157|0.55556\n78158|0.58333\n78159|0.5\n78160|0.5\n78161|0.5\n78162|0.5\n78163|0.80556\n78164|0.68056\n78165|0.54167\n78166|0.5\n78167|0.5\n78168|0.5\n78169|0.55556\n78170|0.22222\n78171|0.41667\n78172|0.72222\n78173|0.5\n78174|0.5\n78175|0.5\n78176|0.55556\n78177|0.52778\n78178|0.61111\n78179|0.38889\n78180|0.81944\n78181|0.59722\n78182|0.5\n78183|0.55556\n78184|0.5\n78185|0.63889\n78186|0.5\n78187|0.5\n78188|0.54167\n78189|0.5\n78190|0.51389\n78191|0.70833\n78192|0.66667\n78193|0.75\n78194|0.5\n78195|0.44444\n78196|0.5\n78197|0.59722\n78198|0.80556\n78199|0.5\n78200|0.5\n78201|0.5\n78202|0.5\n78203|0.5\n78204|0.5\n78205|0.58333\n78206|0.69444\n78207|0.52778\n78208|0.55556\n78209|0.5\n78210|0.5\n78211|0.5\n78212|0.5\n78213|0.5\n78214|0.5\n78215|0.51389\n78216|0.83333\n78217|0.5\n78218|0.55556\n78219|0.5\n78220|0.75\n78221|0.5\n78222|0.66667\n78223|0.65278\n78224|0.5\n78225|0.52778\n78226|0.5\n78227|0.41667\n78228|0.40278\n78229|0.31944\n78230|0.15278\n78231|0.45833\n78232|0.61111\n78233|0.43056\n78234|0.54167\n78235|0.83333\n78236|0.58333\n78237|0.41667\n78238|0.48611\n78239|0.51389\n78240|0.44444\n78241|0.40278\n78242|0.51389\n78243|0.52778\n78244|0.55556\n78245|0.44444\n78246|0.19444\n78247|0.41667\n78248|0.45833\n78249|0.5\n78250|0.54167\n78251|0.61111\n78252|0.59722\n78253|0.61111\n78254|0.625\n78255|0.52778\n78256|0.63889\n78257|0.44444\n78258|0.47222\n78259|0.51389\n78260|0.16667\n78261|0.19444\n78262|0.59722\n78263|0.56944\n78264|0.69444\n78265|0.54167\n78266|0.5\n78267|0.5\n78268|0.58333\n78269|0.81944\n78270|0.875\n78271|0.45833\n78272|0.18056\n78273|0.23611\n78274|0.38889\n78275|0.34722\n78276|0.47222\n78277|0.30556\n78278|0.44444\n78279|0.38889\n78280|0.58333\n78281|0.33333\n78282|0.44444\n78283|0.5\n78284|0.34722\n78285|0.80556\n78286|0.48611\n78287|0.80556\n78288|0.75\n78289|0.51389\n78290|0.40278\n78291|0.38889\n78292|0.73611\n78293|0.45833\n78294|0.66667\n78295|0.47222\n78296|0.43056\n78297|0.31944\n78298|0.36111\n78299|0.5\n78300|0.44444\n78301|0.44444\n78302|0.20833\n78303|0.18056\n78304|0.33333\n78305|0.54167\n78306|0.83333\n78307|0.77778\n78308|0.55556\n78309|0.66667\n78310|0.51389\n78311|0.81944\n78312|0.81944\n78313|0.47222\n78314|0.375\n78315|0.375\n78316|0.38889\n78317|0.34722\n78318|0.29167\n78319|0.30556\n78320|0.34722\n78321|0.52778\n78322|0.59722\n78323|0.54167\n78324|0.55556\n78325|0.79167\n78326|0.45833\n78327|0.51389\n78328|0.54167\n78329|0.52778\n78330|0.56944\n78331|0.51389\n78332|0.45833\n78333|0.56944\n78334|0.68056\n78335|0.5\n78336|0.38889\n78337|0.56944\n78338|0.48611\n78339|0.51389\n78340|0.44444\n78341|0.5\n78342|0.5\n78343|0.90278\n78344|0.61111\n78345|0.36111\n78346|0.38889\n78347|0.38889\n78348|0.33333\n78349|0.69444\n78350|0.76389\n78351|0.29167\n78352|0.44444\n78353|0.66667\n78354|0.55556\n78355|0.30556\n78356|0.30556\n78357|0.41667\n78358|0.66667\n78359|0.18056\n78360|0.52778\n78361|0.73611\n78362|0.38889\n78363|0.61111\n78364|0.76389\n78365|0.18056\n78366|0.36111\n78367|0.15278\n78368|0.5\n78369|0.30556\n78370|0.59722\n78371|0.5\n78372|0.52778\n78373|0.72222\n78374|0.75\n78375|0.83333\n78376|0.31944\n78377|0.58333\n78378|0.5\n78379|0.375\n78380|0.5\n78381|0.61111\n78382|0.52778\n78383|0.5\n78384|0.5\n78385|0.5\n78386|0.68056\n78387|0.30556\n78388|0.55556\n78389|0.58333\n78390|0.5\n78391|0.51389\n78392|0.5\n78393|0.66667\n78394|0.59722\n78395|0.5\n78396|0.55556\n78397|0.81944\n78398|0.66667\n78399|0.80556\n78400|0.75\n78401|0.83333\n78402|0.76389\n78403|0.81944\n78404|0.80556\n78405|0.70833\n78406|0.75\n78407|0.625\n78408|0.76389\n78409|0.69444\n78410|0.66667\n78411|0.38889\n78412|0.58333\n78413|0.68056\n78414|0.55556\n78415|0.55556\n78416|0.36111\n78417|0.375\n78418|0.68056\n78419|0.65278\n78420|0.79167\n78421|0.81944\n78422|0.54167\n78423|0.5\n78424|0.69444\n78425|0.72222\n78426|0.70833\n78427|0.84722\n78428|0.73611\n78429|0.5\n78430|0.29167\n78431|0.25\n78432|0.40278\n78433|0.66667\n78434|0.58333\n78435|0.29167\n78436|0.27778\n78437|0.25\n78438|0.34722\n78439|0.36111\n78440|0.63889\n78441|0.51389\n78442|0.69444\n78443|0.75\n78444|0.29167\n78445|0.66667\n78446|0.44444\n78447|0.70833\n78448|0.44444\n78449|0.26389\n78450|0.23611\n78451|0.30556\n78452|0.68056\n78453|0.80556\n78454|0.41667\n78455|0.69444\n78456|0.625\n78457|0.44444\n78458|0.52778\n78459|0.47222\n78460|0.48611\n78461|0.61111\n78462|0.625\n78463|0.33333\n78464|0.26389\n78465|0.27778\n78466|0.29167\n78467|0.18056\n78468|0.65278\n78469|0.48611\n78470|0.40278\n78471|0.55556\n78472|0.65278\n78473|0.44444\n78474|0.55556\n78475|0.63889\n78476|0.83333\n78477|0.68056\n78478|0.43056\n78479|0.38889\n78480|0.41667\n78481|0.31944\n78482|0.45833\n78483|0.73611\n78484|0.38889\n78485|0.33333\n78486|0.34722\n78487|0.80556\n78488|0.72222\n78489|0.5\n78490|0.79167\n78491|0.61111\n78492|0.66667\n78493|0.76389\n78494|0.81944\n78495|0.75\n78496|0.5\n78497|0.47222\n78498|0.80556\n78499|0.33333\n78500|0.55556\n78501|0.66667\n78502|0.72222\n78503|0.44444\n78504|0.59722\n78505|0.5\n78506|0.5\n78507|0.55556\n78508|0.22222\n78509|0.51389\n78510|0.58333\n78511|0.38889\n78512|0.5\n78513|0.51389\n78514|0.34722\n78515|0.70833\n78516|0.48611\n78517|0.5\n78518|0.5\n78519|0.23611\n78520|0.5\n78521|0.48611\n78522|0.44444\n78523|0.81944\n78524|0.47222\n78525|0.61111\n78526|0.875\n78527|0.84722\n78528|0.65278\n78529|0.65278\n78530|0.61111\n78531|0.5\n78532|0.5\n78533|0.56944\n78534|0.625\n78535|0.48611\n78536|0.54167\n78537|0.55556\n78538|0.43056\n78539|0.5\n78540|0.52778\n78541|0.5\n78542|0.5\n78543|0.5\n78544|0.59722\n78545|0.65278\n78546|0.66667\n78547|0.5\n78548|0.55556\n78549|0.27778\n78550|0.5\n78551|0.5\n78552|0.5\n78553|0.41667\n78554|0.26389\n78555|0.48611\n78556|0.56944\n78557|0.23611\n78558|0.22222\n78559|0.44444\n78560|0.5\n78561|0.5\n78562|0.11111\n78563|0.34722\n78564|0.59722\n78565|0.61111\n78566|0.44444\n78567|0.58333\n78568|0.63889\n78569|0.70833\n78570|0.68056\n78571|0.38889\n78572|0.56944\n78573|0.47222\n78574|0.51389\n78575|0.44444\n78576|0.5\n78577|0.5\n78578|0.51389\n78579|0.58333\n78580|0.56944\n78581|0.79167\n78582|0.69444\n78583|0.58333\n78584|0.68056\n78585|0.73611\n78586|0.41667\n78587|0.63889\n78588|0.61111\n78589|0.68056\n78590|0.83333\n78591|0.5\n78592|0.38889\n78593|0.44444\n78594|0.55556\n78595|0.63889\n78596|0.33333\n78597|0.55556\n78598|0.44444\n78599|0.34722\n78600|0.5\n78601|0.5\n78602|0.58333\n78603|0.52778\n78604|0.66667\n78605|0.77778\n78606|0.5\n78607|0.5\n78608|0.5\n78609|0.58333\n78610|0.77778\n78611|0.61111\n78612|0.76389\n78613|0.76389\n78614|0.72222\n78615|0.79167\n78616|0.63889\n78617|0.75\n78618|0.61111\n78619|0.72222\n78620|0.26389\n78621|0.15278\n78622|0.59722\n78623|0.59722\n78624|0.66667\n78625|0.5\n78626|0.66667\n78627|0.83333\n78628|0.81944\n78629|0.26389\n78630|0.40278\n78631|0.51389\n78632|0.5\n78633|0.41667\n78634|0.31944\n78635|0.75\n78636|0.47222\n78637|0.5\n78638|0.75\n78639|0.55556\n78640|0.5\n78641|0.76389\n78642|0.44444\n78643|0.5\n78644|0.47222\n78645|0.88889\n78646|0.34722\n78647|0.375\n78648|0.45833\n78649|0.44444\n78650|0.41667\n78651|0.27778\n78652|0.48611\n78653|0.41667\n78654|0.5\n78655|0.72222\n78656|0.58333\n78657|0.5\n78658|0.5\n78659|0.38889\n78660|0.5\n78661|0.5\n78662|0.31944\n78663|0.26389\n78664|0.23611\n78665|0.51389\n78666|0.70833\n78667|0.72222\n78668|0.23611\n78669|0.23611\n78670|0.27778\n78671|0.48611\n78672|0.48611\n78673|0.79167\n78674|0.41667\n78675|0.5\n78676|0.79167\n78677|0.5\n78678|0.5\n78679|0.5\n78680|0.52778\n78681|0.51389\n78682|0.38889\n78683|0.55556\n78684|0.55556\n78685|0.51389\n78686|0.5\n78687|0.63889\n78688|0.56944\n78689|0.58333\n78690|0.63889\n78691|0.63889\n78692|0.30556\n78693|0.5\n78694|0.30556\n78695|0.54167\n78696|0.5\n78697|0.45833\n78698|0.5\n78699|0.5\n78700|0.41667\n78701|0.73611\n78702|0.5\n78703|0.69444\n78704|0.5\n78705|0.47222\n78706|0.66667\n78707|0.56944\n78708|0.5\n78709|0.55556\n78710|0.52778\n78711|0.55556\n78712|0.55556\n78713|0.66667\n78714|0.47222\n78715|0.69444\n78716|0.66667\n78717|0.61111\n78718|0.875\n78719|0.65278\n78720|0.66667\n78721|0.5\n78722|0.625\n78723|0.52778\n78724|0.48611\n78725|0.93056\n78726|0.13889\n78727|0.097222\n78728|0.44444\n78729|0.61111\n78730|0.51389\n78731|0.59722\n78732|0.5\n78733|0.27778\n78734|0.76389\n78735|0.44444\n78736|0.66667\n78737|0.59722\n78738|0.54167\n78739|0.38889\n78740|0.625\n78741|0.68056\n78742|0.68056\n78743|0.625\n78744|0.5\n78745|0.5\n78746|0.625\n78747|0.5\n78748|0.52778\n78749|0.52778\n78750|0.63889\n78751|0.5\n78752|0.5\n78753|0.625\n78754|0.75\n78755|0.65278\n78756|0.84722\n78757|0.5\n78758|0.48611\n78759|0.55556\n78760|0.61111\n78761|0.72222\n78762|0.77778\n78763|0.61111\n78764|0.65278\n78765|0.54167\n78766|0.76389\n78767|0.56944\n78768|0.76389\n78769|0.625\n78770|0.72222\n78771|0.75\n78772|0.52778\n78773|0.83333\n78774|0.625\n78775|0.5\n78776|0.83333\n78777|0.52778\n78778|0.63889\n78779|0.69444\n78780|0.68056\n78781|0.61111\n78782|0.875\n78783|0.77778\n78784|0.5\n78785|0.58333\n78786|0.36111\n78787|0.43056\n78788|0.61111\n78789|0.40278\n78790|0.40278\n78791|0.5\n78792|0.51389\n78793|0.26389\n78794|0.59722\n78795|0.44444\n78796|0.22222\n78797|0.38889\n78798|0.54167\n78799|0.58333\n78800|0.51389\n78801|0.5\n78802|0.65278\n78803|0.77778\n78804|0.55556\n78805|0.81944\n78806|0.76389\n78807|0.77778\n78808|0.79167\n78809|0.79167\n78810|0.75\n78811|0.72222\n78812|0.81944\n78813|0.73611\n78814|0.68056\n78815|0.55556\n78816|0.73611\n78817|0.72222\n78818|0.51389\n78819|0.69444\n78820|0.44444\n78821|0.5\n78822|0.5\n78823|0.63889\n78824|0.72222\n78825|0.61111\n78826|0.70833\n78827|0.70833\n78828|0.73611\n78829|0.56944\n78830|0.40278\n78831|0.61111\n78832|0.84722\n78833|0.58333\n78834|0.70833\n78835|0.79167\n78836|0.68056\n78837|0.70833\n78838|0.75\n78839|0.76389\n78840|0.79167\n78841|0.61111\n78842|0.5\n78843|0.61111\n78844|0.61111\n78845|0.54167\n78846|0.65278\n78847|0.63889\n78848|0.72222\n78849|0.69444\n78850|0.79167\n78851|0.72222\n78852|0.68056\n78853|0.65278\n78854|0.76389\n78855|0.51389\n78856|0.54167\n78857|0.56944\n78858|0.56944\n78859|0.51389\n78860|0.66667\n78861|0.27778\n78862|0.61111\n78863|0.625\n78864|0.65278\n78865|0.80556\n78866|0.75\n78867|0.51389\n78868|0.66667\n78869|0.69444\n78870|0.72222\n78871|0.61111\n78872|0.5\n78873|0.45833\n78874|0.51389\n78875|0.31944\n78876|0.36111\n78877|0.55556\n78878|0.72222\n78879|0.79167\n78880|0.90278\n78881|0.79167\n78882|0.84722\n78883|0.61111\n78884|0.58333\n78885|0.5\n78886|0.5\n78887|0.5\n78888|0.73611\n78889|0.69444\n78890|0.72222\n78891|0.66667\n78892|0.44444\n78893|0.5\n78894|0.5\n78895|0.26389\n78896|0.56944\n78897|0.77778\n78898|0.44444\n78899|0.625\n78900|0.72222\n78901|0.69444\n78902|0.83333\n78903|0.70833\n78904|0.63889\n78905|0.5\n78906|0.33333\n78907|0.58333\n78908|0.52778\n78909|0.59722\n78910|0.40278\n78911|0.59722\n78912|0.79167\n78913|0.58333\n78914|0.83333\n78915|0.68056\n78916|0.38889\n78917|0.29167\n78918|0.5\n78919|0.77778\n78920|0.68056\n78921|0.75\n78922|0.79167\n78923|0.76389\n78924|0.90278\n78925|0.52778\n78926|0.5\n78927|0.65278\n78928|0.75\n78929|0.79167\n78930|0.72222\n78931|0.83333\n78932|0.81944\n78933|0.61111\n78934|0.58333\n78935|0.79167\n78936|0.69444\n78937|0.44444\n78938|0.75\n78939|0.5\n78940|0.5\n78941|0.59722\n78942|0.54167\n78943|0.83333\n78944|0.66667\n78945|0.66667\n78946|0.40278\n78947|0.86111\n78948|0.47222\n78949|0.51389\n78950|0.5\n78951|0.54167\n78952|0.68056\n78953|0.76389\n78954|0.84722\n78955|0.86111\n78956|0.66667\n78957|0.63889\n78958|0.63889\n78959|0.5\n78960|0.44444\n78961|0.52778\n78962|0.5\n78963|0.38889\n78964|0.5\n78965|0.72222\n78966|0.055556\n78967|0.70833\n78968|0.375\n78969|0.48611\n78970|0.31944\n78971|0.72222\n78972|0.69444\n78973|0.81944\n78974|0.76389\n78975|0.61111\n78976|0.69444\n78977|0.59722\n78978|0.84722\n78979|0.83333\n78980|0.77778\n78981|0.58333\n78982|0.81944\n78983|0.79167\n78984|0.83333\n78985|0.59722\n78986|0.61111\n78987|0.48611\n78988|0.5\n78989|0.69444\n78990|0.63889\n78991|0.76389\n78992|0.72222\n78993|0.76389\n78994|0.83333\n78995|0.84722\n78996|0.70833\n78997|0.625\n78998|0.72222\n78999|0.73611\n79000|0.83333\n79001|0.73611\n79002|0.65278\n79003|0.77778\n79004|0.73611\n79005|0.61111\n79006|0.75\n79007|0.63889\n79008|0.69444\n79009|0.5\n79010|0.48611\n79011|0.66667\n79012|0.52778\n79013|0.80556\n79014|0.86111\n79015|0.65278\n79016|0.625\n79017|0.69444\n79018|0.81944\n79019|0.77778\n79020|0.5\n79021|0.44444\n79022|0.625\n79023|0.69444\n79024|0.72222\n79025|0.73611\n79026|0.69444\n79027|0.76389\n79028|0.55556\n79029|0.55556\n79030|0.79167\n79031|0.79167\n79032|0.66667\n79033|0.72222\n79034|0.66667\n79035|0.70833\n79036|0.43056\n79037|0.77778\n79038|0.68056\n79039|0.83333\n79040|0.77778\n79041|0.75\n79042|0.88889\n79043|0.83333\n79044|0.68056\n79045|0.77778\n79046|0.75\n79047|0.65278\n79048|0.69444\n79049|0.47222\n79050|0.54167\n79051|0.75\n79052|0.72222\n79053|0.88889\n79054|0.81944\n79055|0.79167\n79056|0.83333\n79057|0.63889\n79058|0.625\n79059|0.75\n79060|0.5\n79061|0.69444\n79062|0.84722\n79063|0.88889\n79064|0.88889\n79065|0.59722\n79066|0.5\n79067|0.58333\n79068|0.55556\n79069|0.55556\n79070|0.77778\n79071|0.66667\n79072|0.83333\n79073|0.70833\n79074|0.77778\n79075|0.77778\n79076|0.5\n79077|0.66667\n79078|0.5\n79079|0.55556\n79080|0.66667\n79081|0.68056\n79082|0.55556\n79083|0.65278\n79084|0.56944\n79085|0.75\n79086|0.72222\n79087|0.70833\n79088|0.5\n79089|0.5\n79090|0.68056\n79091|0.80556\n79092|0.63889\n79093|0.86111\n79094|0.93056\n79095|0.83333\n79096|0.51389\n79097|0.5\n79098|0.55556\n79099|0.625\n79100|0.51389\n79101|0.51389\n79102|0.63889\n79103|0.51389\n79104|0.43056\n79105|0.65278\n79106|0.59722\n79107|0.875\n79108|0.81944\n79109|0.72222\n79110|0.54167\n79111|0.77778\n79112|0.86111\n79113|0.73611\n79114|0.79167\n79115|0.88889\n79116|0.75\n79117|0.54167\n79118|0.66667\n79119|0.73611\n79120|0.69444\n79121|0.52778\n79122|0.66667\n79123|0.83333\n79124|0.58333\n79125|0.66667\n79126|0.81944\n79127|0.77778\n79128|0.625\n79129|0.75\n79130|0.69444\n79131|0.59722\n79132|0.66667\n79133|0.86111\n79134|0.72222\n79135|0.52778\n79136|0.5\n79137|0.5\n79138|0.16667\n79139|0.41667\n79140|0.069444\n79141|0.79167\n79142|0.77778\n79143|0.34722\n79144|0.625\n79145|0.5\n79146|0.5\n79147|0.54167\n79148|0.5\n79149|0.5\n79150|0.69444\n79151|0.55556\n79152|0.375\n79153|0.38889\n79154|0.84722\n79155|0.61111\n79156|0.41667\n79157|0.73611\n79158|0.66667\n79159|0.59722\n79160|0.70833\n79161|0.51389\n79162|0.70833\n79163|0.59722\n79164|0.52778\n79165|0.40278\n79166|0.56944\n79167|0.5\n79168|0.5\n79169|0.55556\n79170|0.375\n79171|0.5\n79172|0.13889\n79173|0.51389\n79174|0.56944\n79175|0.61111\n79176|0.41667\n79177|0.55556\n79178|0.5\n79179|0.61111\n79180|0.5\n79181|0.81944\n79182|0.59722\n79183|0.65278\n79184|0.66667\n79185|0.56944\n79186|0.5\n79187|0.5\n79188|0.41667\n79189|0.56944\n79190|0.61111\n79191|0.90278\n79192|0.56944\n79193|0.73611\n79194|0.51389\n79195|0.56944\n79196|0.5\n79197|0.43056\n79198|0.66667\n79199|0.41667\n79200|0.33333\n79201|0.80556\n79202|0.86111\n79203|0.5\n79204|0.55556\n79205|0.5\n79206|0.48611\n79207|0.5\n79208|0.5\n79209|0.5\n79210|0.58333\n79211|0.65278\n79212|0.52778\n79213|0.56944\n79214|0.5\n79215|0.61111\n79216|0.5\n79217|0.38889\n79218|0.52778\n79219|0.55556\n79220|0.58333\n79221|0.59722\n79222|0.56944\n79223|0.65278\n79224|0.5\n79225|0.44444\n79226|0.54167\n79227|0.5\n79228|0.5\n79229|0.625\n79230|0.54167\n79231|0.69444\n79232|0.5\n79233|0.34722\n79234|0.54167\n79235|0.69444\n79236|0.65278\n79237|0.61111\n79238|0.86111\n79239|0.76389\n79240|0.44444\n79241|0.68056\n79242|0.5\n79243|0.59722\n79244|0.44444\n79245|0.38889\n79246|0.59722\n79247|0.5\n79248|0.63889\n79249|0.66667\n79250|0.5\n79251|0.73611\n79252|0.66667\n79253|0.66667\n79254|0.72222\n79255|0.69444\n79256|0.52778\n79257|0.5\n79258|0.5\n79259|0.5\n79260|0.26389\n79261|0.72222\n79262|0.5\n79263|0.36111\n79264|0.36111\n79265|0.083333\n79266|0.29167\n79267|0.47222\n79268|0.5\n79269|0.72222\n79270|0.51389\n79271|0.41667\n79272|0.375\n79273|0.40278\n79274|0.69444\n79275|0.79167\n79276|0.5\n79277|0.48611\n79278|0.5\n79279|0.16667\n79280|0.56944\n79281|0.5\n79282|0.61111\n79283|0.70833\n79284|0.56944\n79285|0.70833\n79286|0.5\n79287|0.5\n79288|0.5\n79289|0.55556\n79290|0.61111\n79291|0.66667\n79292|0.61111\n79293|0.5\n79294|0.5\n79295|0.55556\n79296|0.5\n79297|0.55556\n79298|0.5\n79299|0.55556\n79300|0.41667\n79301|0.73611\n79302|0.5\n79303|0.55556\n79304|0.5\n79305|0.5\n79306|0.44444\n79307|0.59722\n79308|0.55556\n79309|0.47222\n79310|0.625\n79311|0.75\n79312|0.68056\n79313|0.58333\n79314|0.56944\n79315|0.48611\n79316|0.65278\n79317|0.56944\n79318|0.5\n79319|0.70833\n79320|0.68056\n79321|0.55556\n79322|0.56944\n79323|0.5\n79324|0.23611\n79325|0.52778\n79326|0.76389\n79327|0.45833\n79328|0.25\n79329|0.55556\n79330|0.5\n79331|0.66667\n79332|0.61111\n79333|0.66667\n79334|0.5\n79335|0.55556\n79336|0.51389\n79337|0.30556\n79338|0.63889\n79339|0.51389\n79340|0.54167\n79341|0.40278\n79342|0.59722\n79343|0.26389\n79344|0.56944\n79345|0.5\n79346|0.5\n79347|0.5\n79348|0.83333\n79349|0.56944\n79350|0.5\n79351|0.5\n79352|0.55556\n79353|0.58333\n79354|0.56944\n79355|0.5\n79356|0.5\n79357|0.5\n79358|0.51389\n79359|0.61111\n79360|0.55556\n79361|0.77778\n79362|0.75\n79363|0.5\n79364|0.875\n79365|0.80556\n79366|0.5\n79367|0.375\n79368|0.375\n79369|0.66667\n79370|0.79167\n79371|0.79167\n79372|0.61111\n79373|0.5\n79374|0.43056\n79375|0.55556\n79376|0.68056\n79377|0.73611\n79378|0.44444\n79379|0.68056\n79380|0.72222\n79381|0.45833\n79382|0.61111\n79383|0.65278\n79384|0.54167\n79385|0.61111\n79386|0.5\n79387|0.40278\n79388|0.5\n79389|0.72222\n79390|0.41667\n79391|0.55556\n79392|0.59722\n79393|0.70833\n79394|0.625\n79395|0.52778\n79396|0.55556\n79397|0.68056\n79398|0.73611\n79399|0.77778\n79400|0.66667\n79401|0.91667\n79402|0.59722\n79403|0.77778\n79404|0.76389\n79405|0.90278\n79406|0.76389\n79407|0.75\n79408|0.88889\n79409|0.81944\n79410|0.66667\n79411|0.86111\n79412|0.81944\n79413|0.72222\n79414|0.80556\n79415|0.84722\n79416|0.43056\n79417|0.56944\n79418|0.69444\n79419|0.86111\n79420|0.79167\n79421|0.86111\n79422|0.5\n79423|0.5\n79424|0.875\n79425|0.65278\n79426|0.76389\n79427|0.81944\n79428|0.83333\n79429|0.79167\n79430|0.5\n79431|0.48611\n79432|0.68056\n79433|0.88889\n79434|0.52778\n79435|0.31944\n79436|0.88889\n79437|0.77778\n79438|0.47222\n79439|0.5\n79440|0.5\n79441|0.59722\n79442|0.59722\n79443|0.5\n79444|0.59722\n79445|0.54167\n79446|0.70833\n79447|0.5\n79448|0.5\n79449|0.75\n79450|0.52778\n79451|0.58333\n79452|0.44444\n79453|0.5\n79454|0.51389\n79455|0.47222\n79456|0.5\n79457|0.52778\n79458|0.43056\n79459|0.30556\n79460|0.38889\n79461|0.5\n79462|0.5\n79463|0.66667\n79464|0.65278\n79465|0.55556\n79466|0.19444\n79467|0.097222\n79468|0.54167\n79469|0.27778\n79470|0.52778\n79471|0.55556\n79472|0.5\n79473|0.55556\n79474|0.68056\n79475|0.59722\n79476|0.58333\n79477|0.5\n79478|0.56944\n79479|0.59722\n79480|0.59722\n79481|0.5\n79482|0.625\n79483|0.70833\n79484|0.63889\n79485|0.93056\n79486|0.58333\n79487|0.52778\n79488|0.52778\n79489|0.44444\n79490|0.5\n79491|0.72222\n79492|0.5\n79493|0.51389\n79494|0.54167\n79495|0.5\n79496|0.58333\n79497|0.5\n79498|0.69444\n79499|0.56944\n79500|0.73611\n79501|0.88889\n79502|0.79167\n79503|0.51389\n79504|0.65278\n79505|0.45833\n79506|0.5\n79507|0.72222\n79508|0.65278\n79509|0.70833\n79510|0.54167\n79511|0.61111\n79512|0.75\n79513|0.88889\n79514|0.875\n79515|0.86111\n79516|0.95833\n79517|0.86111\n79518|0.59722\n79519|0.86111\n79520|0.77778\n79521|0.65278\n79522|0.73611\n79523|0.66667\n79524|0.58333\n79525|0.5\n79526|0.43056\n79527|0.30556\n79528|0.94444\n79529|0.68056\n79530|0.81944\n79531|0.86111\n79532|0.79167\n79533|0.5\n79534|0.72222\n79535|0.58333\n79536|0.5\n79537|0.79167\n79538|0.5\n79539|0.22222\n79540|0.75\n79541|0.84722\n79542|0.81944\n79543|0.68056\n79544|0.86111\n79545|0.59722\n79546|0.51389\n79547|0.38889\n79548|0.48611\n79549|0.45833\n79550|0.5\n79551|0.5\n79552|0.52778\n79553|0.625\n79554|0.55556\n79555|0.625\n79556|0.55556\n79557|0.72222\n79558|0.5\n79559|0.33333\n79560|0.16667\n79561|0.36111\n79562|0.18056\n79563|0.13889\n79564|0.125\n79565|0.51389\n79566|0.75\n79567|0.79167\n79568|0.69444\n79569|0.22222\n79570|0.375\n79571|0.75\n79572|0.47222\n79573|0.69444\n79574|0.69444\n79575|0.5\n79576|0.43056\n79577|0.5\n79578|0.5\n79579|0.59722\n79580|0.61111\n79581|0.54167\n79582|0.75\n79583|0.41667\n79584|0.26389\n79585|0.5\n79586|0.51389\n79587|0.41667\n79588|0.41667\n79589|0.41667\n79590|0.47222\n79591|0.38889\n79592|0.68056\n79593|0.43056\n79594|0.30556\n79595|0.34722\n79596|0.31944\n79597|0.5\n79598|0.22222\n79599|0.45833\n79600|0.375\n79601|0.25\n79602|0.44444\n79603|0.5\n79604|0.5\n79605|0.56944\n79606|0.5\n79607|0.51389\n79608|0.51389\n79609|0.41667\n79610|0.58333\n79611|0.55556\n79612|0.48611\n79613|0.52778\n79614|0.5\n79615|0.51389\n79616|0.5\n79617|0.56944\n79618|0.61111\n79619|0.5\n79620|0.61111\n79621|0.61111\n79622|0.65278\n79623|0.41667\n79624|0.56944\n79625|0.63889\n79626|0.5\n79627|0.54167\n79628|0.5\n79629|0.625\n79630|0.58333\n79631|0.54167\n79632|0.58333\n79633|0.5\n79634|0.5\n79635|0.58333\n79636|0.55556\n79637|0.55556\n79638|0.63889\n79639|0.5\n79640|0.48611\n79641|0.55556\n79642|0.54167\n79643|0.69444\n79644|0.5\n79645|0.66667\n79646|0.52778\n79647|0.51389\n79648|0.5\n79649|0.36111\n79650|0.59722\n79651|0.51389\n79652|0.44444\n79653|0.69444\n79654|0.55556\n79655|0.5\n79656|0.43056\n79657|0.88889\n79658|0.94444\n79659|0.81944\n79660|0.73611\n79661|0.54167\n79662|0.51389\n79663|0.77778\n79664|0.61111\n79665|0.73611\n79666|0.68056\n79667|0.56944\n79668|0.41667\n79669|0.34722\n79670|0.30556\n79671|0.51389\n79672|0.75\n79673|0.79167\n79674|0.68056\n79675|0.38889\n79676|0.5\n79677|0.47222\n79678|0.72222\n79679|0.55556\n79680|0.63889\n79681|0.77778\n79682|0.73611\n79683|0.80556\n79684|0.66667\n79685|0.29167\n79686|0.5\n79687|0.27778\n79688|0.33333\n79689|0.27778\n79690|0.38889\n79691|0.097222\n79692|0.44444\n79693|0.22222\n79694|0.44444\n79695|0.61111\n79696|0.77778\n79697|0.83333\n79698|0.80556\n79699|0.48611\n79700|0.77778\n79701|0.875\n79702|0.86111\n79703|0.94444\n79704|0.70833\n79705|0.90278\n79706|0.81944\n79707|0.72222\n79708|0.83333\n79709|0.86111\n79710|0.59722\n79711|0.58333\n79712|0.66667\n79713|0.72222\n79714|0.47222\n79715|0.77778\n79716|0.51389\n79717|0.55556\n79718|0.55556\n79719|0.19444\n79720|0.55556\n79721|0.5\n79722|0.5\n79723|0.5\n79724|0.40278\n79725|0.5\n79726|0.66667\n79727|0.54167\n79728|0.69444\n79729|0.63889\n79730|0.52778\n79731|0.44444\n79732|0.34722\n79733|0.52778\n79734|0.56944\n79735|0.5\n79736|0.59722\n79737|0.56944\n79738|0.30556\n79739|0.44444\n79740|0.68056\n79741|0.625\n79742|0.73611\n79743|0.52778\n79744|0.70833\n79745|0.68056\n79746|0.86111\n79747|0.56944\n79748|0.58333\n79749|0.72222\n79750|0.73611\n79751|0.55556\n79752|0.63889\n79753|0.40278\n79754|0.26389\n79755|0.47222\n79756|0.52778\n79757|0.58333\n79758|0.22222\n79759|0.58333\n79760|0.77778\n79761|0.73611\n79762|0.38889\n79763|0.5\n79764|0.55556\n79765|0.75\n79766|0.63889\n79767|0.61111\n79768|0.58333\n79769|0.91667\n79770|0.5\n79771|0.73611\n79772|0.72222\n79773|0.54167\n79774|0.34722\n79775|0.34722\n79776|0.72222\n79777|0.73611\n79778|0.23611\n79779|0.30556\n79780|0.68056\n79781|0.27778\n79782|0.68056\n79783|0.44444\n79784|0.61111\n79785|0.63889\n79786|0.51389\n79787|0.44444\n79788|0.58333\n79789|0.47222\n79790|0.44444\n79791|0.75\n79792|0.69444\n79793|0.625\n79794|0.33333\n79795|0.55556\n79796|0.38889\n79797|0.51389\n79798|0.75\n79799|0.5\n79800|0.43056\n79801|0.44444\n79802|0.61111\n79803|0.65278\n79804|0.72222\n79805|0.66667\n79806|0.59722\n79807|0.54167\n79808|0.5\n79809|0.5\n79810|0.5\n79811|0.59722\n79812|0.55556\n79813|0.5\n79814|0.5\n79815|0.55556\n79816|0.61111\n79817|0.56944\n79818|0.66667\n79819|0.75\n79820|0.55556\n79821|0.52778\n79822|0.61111\n79823|0.5\n79824|0.48611\n79825|0.45833\n79826|0.34722\n79827|0.73611\n79828|0.44444\n79829|0.47222\n79830|0.72222\n79831|0.52778\n79832|0.55556\n79833|0.5\n79834|0.54167\n79835|0.56944\n79836|0.51389\n79837|0.44444\n79838|0.38889\n79839|0.5\n79840|0.23611\n79841|0.5\n79842|0.5\n79843|0.63889\n79844|0.55556\n79845|0.44444\n79846|0.83333\n79847|0.83333\n79848|0.79167\n79849|0.72222\n79850|0.875\n79851|0.80556\n79852|0.83333\n79853|0.5\n79854|0.44444\n79855|0.51389\n79856|0.47222\n79857|0.68056\n79858|0.52778\n79859|0.69444\n79860|0.68056\n79861|0.65278\n79862|0.56944\n79863|0.44444\n79864|0.5\n79865|0.52778\n79866|0.55556\n79867|0.55556\n79868|0.77778\n79869|0.73611\n79870|0.5\n79871|0.79167\n79872|0.79167\n79873|0.5\n79874|0.69444\n79875|0.51389\n79876|0.54167\n79877|0.5\n79878|0.79167\n79879|0.56944\n79880|0.58333\n79881|0.83333\n79882|0.54167\n79883|0.59722\n79884|0.65278\n79885|0.65278\n79886|0.73611\n79887|0.5\n79888|0.66667\n79889|0.5\n79890|0.5\n79891|0.51389\n79892|0.27778\n79893|0.47222\n79894|0.45833\n79895|0.59722\n79896|0.5\n79897|0.61111\n79898|0.625\n79899|0.48611\n79900|0.5\n79901|0.44444\n79902|0.5\n79903|0.88889\n79904|0.88889\n79905|0.48611\n79906|0.79167\n79907|0.5\n79908|0.5\n79909|0.5\n79910|0.61111\n79911|0.69444\n79912|0.5\n79913|0.58333\n79914|0.5\n79915|0.86111\n79916|0.55556\n79917|0.5\n79918|0.5\n79919|0.52778\n79920|0.43056\n79921|0.875\n79922|0.86111\n79923|0.81944\n79924|0.88889\n79925|0.52778\n79926|0.86111\n79927|0.55556\n79928|0.5\n79929|0.5\n79930|0.79167\n79931|0.5\n79932|0.55556\n79933|0.51389\n79934|0.5\n79935|0.51389\n79936|0.58333\n79937|0.72222\n79938|0.68056\n79939|0.65278\n79940|0.66667\n79941|0.77778\n79942|0.45833\n79943|0.72222\n79944|0.51389\n79945|0.70833\n79946|0.63889\n79947|0.66667\n79948|0.44444\n79949|0.52778\n79950|0.66667\n79951|0.59722\n79952|0.5\n79953|0.5\n79954|0.70833\n79955|0.63889\n79956|0.68056\n79957|0.5\n79958|0.55556\n79959|0.55556\n79960|0.80556\n79961|0.68056\n79962|0.52778\n79963|0.56944\n79964|0.54167\n79965|0.25\n79966|0.26389\n79967|0.58333\n79968|0.58333\n79969|0.56944\n79970|0.80556\n79971|0.5\n79972|0.77778\n79973|0.68056\n79974|0.66667\n79975|0.69444\n79976|0.75\n79977|0.77778\n79978|0.73611\n79979|0.40278\n79980|0.59722\n79981|0.77778\n79982|0.77778\n79983|0.72222\n79984|0.68056\n79985|0.83333\n79986|0.55556\n79987|0.75\n79988|0.81944\n79989|0.58333\n79990|0.70833\n79991|0.80556\n79992|0.81944\n79993|0.84722\n79994|0.83333\n79995|0.95833\n79996|0.52778\n79997|0.45833\n79998|0.5\n79999|0.56944\n80000|0.51389\n80001|0.5\n80002|0.5\n80003|0.58333\n80004|0.59722\n80005|0.69444\n80006|0.52778\n80007|0.33333\n80008|0.5\n80009|0.5\n80010|0.51389\n80011|0.5\n80012|0.52778\n80013|0.5\n80014|0.5\n80015|0.55556\n80016|0.5\n80017|0.5\n80018|0.5\n80019|0.5\n80020|0.48611\n80021|0.75\n80022|0.66667\n80023|0.5\n80024|0.91667\n80025|0.61111\n80026|0.5\n80027|0.5\n80028|0.5\n80029|0.5\n80030|0.5\n80031|0.83333\n80032|0.51389\n80033|0.73611\n80034|0.84722\n80035|0.84722\n80036|0.56944\n80037|0.5\n80038|0.81944\n80039|0.81944\n80040|0.36111\n80041|0.47222\n80042|0.68056\n80043|0.52778\n80044|0.5\n80045|0.76389\n80046|0.75\n80047|0.91667\n80048|0.75\n80049|0.61111\n80050|0.61111\n80051|0.38889\n80052|0.55556\n80053|0.66667\n80054|0.75\n80055|0.52778\n80056|0.5\n80057|0.5\n80058|0.43056\n80059|0.44444\n80060|0.54167\n80061|0.70833\n80062|0.51389\n80063|0.44444\n80064|0.61111\n80065|0.44444\n80066|0.83333\n80067|0.86111\n80068|0.76389\n80069|0.79167\n80070|0.94444\n80071|0.94444\n80072|0.88889\n80073|0.81944\n80074|0.95833\n80075|0.84722\n80076|0.83333\n80077|0.93056\n80078|0.83333\n80079|0.45833\n80080|0.44444\n80081|0.55556\n80082|0.375\n80083|0.41667\n80084|0.5\n80085|0.5\n80086|0.43056\n80087|0.27778\n80088|0.38889\n80089|0.83333\n80090|0.36111\n80091|0.625\n80092|0.56944\n80093|0.51389\n80094|0.13889\n80095|0.31944\n80096|0.5\n80097|0.23611\n80098|0.41667\n80099|0.66667\n80100|0.93056\n80101|0.25\n80102|0.375\n80103|0.58333\n80104|0.38889\n80105|0.44444\n80106|0.41667\n80107|0.5\n80108|0.54167\n80109|0.43056\n80110|0.5\n80111|0.83333\n80112|0.59722\n80113|0.66667\n80114|0.56944\n80115|0.56944\n80116|0.51389\n80117|0.5\n80118|0.56944\n80119|0.72222\n80120|0.52778\n80121|0.70833\n80122|0.5\n80123|0.5\n80124|0.45833\n80125|0.5\n80126|0.45833\n80127|0.44444\n80128|0.56944\n80129|0.51389\n80130|0.5\n80131|0.375\n80132|0.44444\n80133|0.45833\n80134|0.54167\n80135|0.59722\n80136|0.47222\n80137|0.48611\n80138|0.55556\n80139|0.58333\n80140|0.44444\n80141|0.48611\n80142|0.61111\n80143|0.41667\n80144|0.5\n80145|0.27778\n80146|0.375\n80147|0.33333\n80148|0.68056\n80149|0.51389\n80150|0.66667\n80151|0.55556\n80152|0.5\n80153|0.5\n80154|0.61111\n80155|0.5\n80156|0.56944\n80157|0.56944\n80158|0.55556\n80159|0.76389\n80160|0.68056\n80161|0.69444\n80162|0.5\n80163|0.84722\n80164|0.77778\n80165|0.59722\n80166|0.55556\n80167|0.5\n80168|0.5\n80169|0.41667\n80170|0.51389\n80171|0.45833\n80172|0.5\n80173|0.5\n80174|0.5\n80175|0.5\n80176|0.13889\n80177|0.51389\n80178|0.52778\n80179|0.40278\n80180|0.48611\n80181|0.55556\n80182|0.61111\n80183|0.5\n80184|0.54167\n80185|0.63889\n80186|0.5\n80187|0.5\n80188|0.5\n80189|0.51389\n80190|0.5\n80191|0.5\n80192|0.84722\n80193|0.73611\n80194|0.44444\n80195|0.56944\n80196|0.51389\n80197|0.5\n80198|0.5\n80199|0.58333\n80200|0.54167\n80201|0.5\n80202|0.58333\n80203|0.5\n80204|0.5\n80205|0.72222\n80206|0.48611\n80207|0.51389\n80208|0.79167\n80209|0.5\n80210|0.44444\n80211|0.55556\n80212|0.47222\n80213|0.51389\n80214|0.625\n80215|0.44444\n80216|0.5\n80217|0.52778\n80218|0.43056\n80219|0.58333\n80220|0.52778\n80221|0.56944\n80222|0.68056\n80223|0.5\n80224|0.73611\n80225|0.68056\n80226|0.5\n80227|0.44444\n80228|0.72222\n80229|0.51389\n80230|0.66667\n80231|0.5\n80232|0.5\n80233|0.56944\n80234|0.63889\n80235|0.44444\n80236|0.63889\n80237|0.69444\n80238|0.55556\n80239|0.63889\n80240|0.51389\n80241|0.23611\n80242|0.5\n80243|0.61111\n80244|0.52778\n80245|0.5\n80246|0.51389\n80247|0.40278\n80248|0.45833\n80249|0.30556\n80250|0.58333\n80251|0.51389\n80252|0.41667\n80253|0.13889\n80254|0.75\n80255|0.44444\n80256|0.5\n80257|0.5\n80258|0.5\n80259|0.5\n80260|0.55556\n80261|0.83333\n80262|0.5\n80263|0.68056\n80264|0.5\n80265|0.5\n80266|0.72222\n80267|0.29167\n80268|0.59722\n80269|0.70833\n80270|0.5\n80271|0.5\n80272|0.56944\n80273|0.43056\n80274|0.5\n80275|0.61111\n80276|0.48611\n80277|0.65278\n80278|0.69444\n80279|0.63889\n80280|0.52778\n80281|0.44444\n80282|0.5\n80283|0.59722\n80284|0.69444\n80285|0.5\n80286|0.55556\n80287|0.55556\n80288|0.40278\n80289|0.45833\n80290|0.38889\n80291|0.65278\n80292|0.25\n80293|0.58333\n80294|0.38889\n80295|0.68056\n80296|0.65278\n80297|0.625\n80298|0.5\n80299|0.43056\n80300|0.5\n80301|0.65278\n80302|0.66667\n80303|0.52778\n80304|0.55556\n80305|0.44444\n80306|0.59722\n80307|0.61111\n80308|0.54167\n80309|0.69444\n80310|0.63889\n80311|0.52778\n80312|0.5\n80313|0.66667\n80314|0.5\n80315|0.33333\n80316|0.5\n80317|0.54167\n80318|0.59722\n80319|0.55556\n80320|0.5\n80321|0.69444\n80322|0.5\n80323|0.55556\n80324|0.44444\n80325|0.5\n80326|0.45833\n80327|0.44444\n80328|0.76389\n80329|0.55556\n80330|0.44444\n80331|0.5\n80332|0.65278\n80333|0.5\n80334|0.18056\n80335|0.5\n80336|0.5\n80337|0.44444\n80338|0.59722\n80339|0.55556\n80340|0.5\n80341|0.51389\n80342|0.66667\n80343|0.23611\n80344|0.5\n80345|0.51389\n80346|0.51389\n80347|0.77778\n80348|0.625\n80349|0.5\n80350|0.66667\n80351|0.5\n80352|0.5\n80353|0.56944\n80354|0.5\n80355|0.56944\n80356|0.79167\n80357|0.52778\n80358|0.63889\n80359|0.52778\n80360|0.72222\n80361|0.5\n80362|0.54167\n80363|0.55556\n80364|0.5\n80365|0.65278\n80366|0.5\n80367|0.61111\n80368|0.55556\n80369|0.47222\n80370|0.5\n80371|0.61111\n80372|0.51389\n80373|0.81944\n80374|0.48611\n80375|0.48611\n80376|0.58333\n80377|0.5\n80378|0.76389\n80379|0.36111\n80380|0.55556\n80381|0.83333\n80382|0.55556\n80383|0.55556\n80384|0.47222\n80385|0.55556\n80386|0.625\n80387|0.44444\n80388|0.55556\n80389|0.72222\n80390|0.66667\n80391|0.65278\n80392|0.59722\n80393|0.52778\n80394|0.5\n80395|0.56944\n80396|0.47222\n80397|0.5\n80398|0.55556\n80399|0.76389\n80400|0.52778\n80401|0.70833\n80402|0.38889\n80403|0.625\n80404|0.375\n80405|0.43056\n80406|0.54167\n80407|0.77778\n80408|0.5\n80409|0.70833\n80410|0.45833\n80411|0.5\n80412|0.40278\n80413|0.5\n80414|0.61111\n80415|0.69444\n80416|0.56944\n80417|0.54167\n80418|0.59722\n80419|0.48611\n80420|0.65278\n80421|0.56944\n80422|0.29167\n80423|0.375\n80424|0.88889\n80425|0.59722\n80426|0.48611\n80427|0.84722\n80428|0.33333\n80429|0.26389\n80430|0.5\n80431|0.66667\n80432|0.45833\n80433|0.47222\n80434|0.5\n80435|0.44444\n80436|0.47222\n80437|0.66667\n80438|0.52778\n80439|0.5\n80440|0.56944\n80441|0.48611\n80442|0.44444\n80443|0.44444\n80444|0.44444\n80445|0.34722\n80446|0.069444\n80447|0.16667\n80448|0.41667\n80449|0.18056\n80450|0.45833\n80451|0.56944\n80452|0.55556\n80453|0.54167\n80454|0.58333\n80455|0.51389\n80456|0.51389\n80457|0.51389\n80458|0.54167\n80459|0.55556\n80460|0.72222\n80461|0.80556\n80462|0.5\n80463|0.77778\n80464|0.70833\n80465|0.66667\n80466|0.73611\n80467|0.95833\n80468|0.5\n80469|0.55556\n80470|0.56944\n80471|0.45833\n80472|0.41667\n80473|0.58333\n80474|0.59722\n80475|0.69444\n80476|0.36111\n80477|0.69444\n80478|0.38889\n80479|0.40278\n80480|0.5\n80481|0.41667\n80482|0.72222\n80483|0.5\n80484|0.5\n80485|0.55556\n80486|0.5\n80487|0.52778\n80488|0.43056\n80489|0.25\n80490|0.36111\n80491|0.44444\n80492|0.83333\n80493|0.86111\n80494|0.70833\n80495|0.63889\n80496|0.70833\n80497|0.66667\n80498|0.77778\n80499|0.77778\n80500|0.59722\n80501|0.47222\n80502|0.65278\n80503|0.72222\n80504|0.52778\n80505|0.55556\n80506|0.5\n80507|0.5\n80508|0.58333\n80509|0.44444\n80510|0.65278\n80511|0.51389\n80512|0.84722\n80513|0.5\n80514|0.45833\n80515|0.61111\n80516|0.56944\n80517|0.55556\n80518|0.59722\n80519|0.5\n80520|0.80556\n80521|0.47222\n80522|0.5\n80523|0.59722\n80524|0.29167\n80525|0.41667\n80526|0.75\n80527|0.61111\n80528|0.40278\n80529|0.55556\n80530|0.63889\n80531|0.48611\n80532|0.33333\n80533|0.68056\n80534|0.80556\n80535|0.59722\n80536|0.84722\n80537|0.72222\n80538|0.83333\n80539|0.625\n80540|0.59722\n80541|0.63889\n80542|0.80556\n80543|0.61111\n80544|0.76389\n80545|0.69444\n80546|0.66667\n80547|0.70833\n80548|0.38889\n80549|0.41667\n80550|0.44444\n80551|0.61111\n80552|0.41667\n80553|0.38889\n80554|0.41667\n80555|0.36111\n80556|0.83333\n80557|0.77778\n80558|0.54167\n80559|0.55556\n80560|0.5\n80561|0.51389\n80562|0.5\n80563|0.76389\n80564|0.48611\n80565|0.5\n80566|0.5\n80567|0.5\n80568|0.52778\n80569|0.52778\n80570|0.27778\n80571|0.5\n80572|0.63889\n80573|0.5\n80574|0.59722\n80575|0.59722\n80576|0.5\n80577|0.5\n80578|0.55556\n80579|0.59722\n80580|0.61111\n80581|0.5\n80582|0.68056\n80583|0.51389\n80584|0.73611\n80585|0.45833\n80586|0.77778\n80587|0.5\n80588|0.45833\n80589|0.33333\n80590|0.81944\n80591|0.20833\n80592|0.5\n80593|0.73611\n80594|0.5\n80595|0.61111\n80596|0.79167\n80597|0.83333\n80598|0.5\n80599|0.5\n80600|0.44444\n80601|0.5\n80602|0.56944\n80603|0.5\n80604|0.72222\n80605|0.65278\n80606|0.86111\n80607|0.26389\n80608|0.52778\n80609|0.33333\n80610|0.5\n80611|0.625\n80612|0.52778\n80613|0.44444\n80614|0.69444\n80615|0.56944\n80616|0.68056\n80617|0.5\n80618|0.51389\n80619|0.5\n80620|0.5\n80621|0.5\n80622|0.5\n80623|0.80556\n80624|0.5\n80625|0.5\n80626|0.55556\n80627|0.73611\n80628|0.48611\n80629|0.48611\n80630|0.33333\n80631|0.61111\n80632|0.76389\n80633|0.5\n80634|0.5\n80635|0.52778\n80636|0.45833\n80637|0.70833\n80638|0.68056\n80639|0.5\n80640|0.5\n80641|0.61111\n80642|0.5\n80643|0.375\n80644|0.55556\n80645|0.51389\n80646|0.45833\n80647|0.36111\n80648|0.56944\n80649|0.76389\n80650|0.5\n80651|0.51389\n80652|0.5\n80653|0.56944\n80654|0.5\n80655|0.56944\n80656|0.5\n80657|0.61111\n80658|0.5\n80659|0.5\n80660|0.33333\n80661|0.55556\n80662|0.47222\n80663|0.5\n80664|0.5\n80665|0.38889\n80666|0.5\n80667|0.72222\n80668|0.5\n80669|0.72222\n80670|0.45833\n80671|0.81944\n80672|0.58333\n80673|0.52778\n80674|0.20833\n80675|0.44444\n80676|0.41667\n80677|0.61111\n80678|0.43056\n80679|0.5\n80680|0.5\n80681|0.5\n80682|0.48611\n80683|0.5\n80684|0.41667\n80685|0.48611\n80686|0.55556\n80687|0.5\n80688|0.54167\n80689|0.65278\n80690|0.51389\n80691|0.5\n80692|0.5\n80693|0.625\n80694|0.5\n80695|0.38889\n80696|0.56944\n80697|0.5\n80698|0.625\n80699|0.44444\n80700|0.65278\n80701|0.51389\n80702|0.44444\n80703|0.55556\n80704|0.27778\n80705|0.38889\n80706|0.68056\n80707|0.375\n80708|0.59722\n80709|0.63889\n80710|0.33333\n80711|0.75\n80712|0.66667\n80713|0.55556\n80714|0.625\n80715|0.54167\n80716|0.70833\n80717|0.54167\n80718|0.70833\n80719|0.5\n80720|0.83333\n80721|0.13889\n80722|0.27778\n80723|0.40278\n80724|0.77778\n80725|0.86111\n80726|0.70833\n80727|0.88889\n80728|0.44444\n80729|0.54167\n80730|0.625\n80731|0.66667\n80732|0.5\n80733|0.76389\n80734|0.73611\n80735|0.68056\n80736|0.59722\n80737|0.52778\n80738|0.66667\n80739|0.66667\n80740|0.80556\n80741|0.77778\n80742|0.5\n80743|0.73611\n80744|0.56944\n80745|0.77778\n80746|0.625\n80747|0.66667\n80748|0.61111\n80749|0.81944\n80750|0.29167\n80751|0.41667\n80752|0.44444\n80753|0.77778\n80754|0.55556\n80755|0.80556\n80756|0.80556\n80757|0.69444\n80758|0.55556\n80759|0.76389\n80760|0.77778\n80761|0.70833\n80762|0.81944\n80763|0.83333\n80764|0.61111\n80765|0.76389\n80766|0.83333\n80767|0.83333\n80768|0.80556\n80769|0.59722\n80770|0.81944\n80771|0.66667\n80772|0.84722\n80773|0.76389\n80774|0.83333\n80775|0.5\n80776|0.43056\n80777|0.44444\n80778|0.77778\n80779|0.77778\n80780|0.80556\n80781|0.81944\n80782|0.76389\n80783|0.79167\n80784|0.83333\n80785|0.73611\n80786|0.80556\n80787|0.77778\n80788|0.69444\n80789|0.73611\n80790|0.75\n80791|0.75\n80792|0.72222\n80793|0.76389\n80794|0.58333\n80795|0.76389\n80796|0.72222\n80797|0.875\n80798|0.94444\n80799|0.75\n80800|0.69444\n80801|0.61111\n80802|0.73611\n80803|0.81944\n80804|0.76389\n80805|0.75\n80806|0.84722\n80807|0.83333\n80808|0.68056\n80809|0.84722\n80810|0.83333\n80811|0.80556\n80812|0.81944\n80813|0.79167\n80814|0.76389\n80815|0.83333\n80816|0.66667\n80817|0.73611\n80818|0.66667\n80819|0.61111\n80820|0.63889\n80821|0.68056\n80822|0.77778\n80823|0.63889\n80824|0.625\n80825|0.68056\n80826|0.69444\n80827|0.84722\n80828|0.80556\n80829|0.81944\n80830|0.41667\n80831|0.55556\n80832|0.86111\n80833|0.81944\n80834|0.69444\n80835|0.52778\n80836|0.59722\n80837|0.83333\n80838|0.81944\n80839|0.55556\n80840|0.76389\n80841|0.30556\n80842|0.52778\n80843|0.625\n80844|0.5\n80845|0.5\n80846|0.5\n80847|0.54167\n80848|0.5\n80849|0.58333\n80850|0.52778\n80851|0.58333\n80852|0.55556\n80853|0.55556\n80854|0.45833\n80855|0.5\n80856|0.55556\n80857|0.58333\n80858|0.54167\n80859|0.33333\n80860|0.31944\n80861|0.5\n80862|0.36111\n80863|0.55556\n80864|0.375\n80865|0.5\n80866|0.43056\n80867|0.625\n80868|0.38889\n80869|0.375\n80870|0.625\n80871|0.65278\n80872|0.27778\n80873|0.22222\n80874|0.44444\n80875|0.54167\n80876|0.55556\n80877|0.51389\n80878|0.5\n80879|0.625\n80880|0.38889\n80881|0.44444\n80882|0.66667\n80883|0.55556\n80884|0.55556\n80885|0.77778\n80886|0.70833\n80887|0.65278\n80888|0.23611\n80889|0.18056\n80890|0.72222\n80891|0.69444\n80892|0.77778\n80893|0.66667\n80894|0.55556\n80895|0.61111\n80896|0.69444\n80897|0.65278\n80898|0.69444\n80899|0.80556\n80900|0.83333\n80901|0.72222\n80902|0.70833\n80903|0.68056\n80904|0.625\n80905|0.72222\n80906|0.72222\n80907|0.76389\n80908|0.69444\n80909|0.625\n80910|0.66667\n80911|0.45833\n80912|0.68056\n80913|0.625\n80914|0.75\n80915|0.875\n80916|0.79167\n80917|0.81944\n80918|0.86111\n80919|0.83333\n80920|0.66667\n80921|0.81944\n80922|0.73611\n80923|0.69444\n80924|0.73611\n80925|0.88889\n80926|0.86111\n80927|0.81944\n80928|0.5\n80929|0.43056\n80930|0.36111\n80931|0.34722\n80932|0.68056\n80933|0.5\n80934|0.55556\n80935|0.61111\n80936|0.5\n80937|0.55556\n80938|0.5\n80939|0.52778\n80940|0.55556\n80941|0.375\n80942|0.72222\n80943|0.5\n80944|0.68056\n80945|0.5\n80946|0.59722\n80947|0.77778\n80948|0.23611\n80949|0.51389\n80950|0.54167\n80951|0.55556\n80952|0.38889\n80953|0.52778\n80954|0.33333\n80955|0.375\n80956|0.51389\n80957|0.61111\n80958|0.5\n80959|0.41667\n80960|0.51389\n80961|0.5\n80962|0.61111\n80963|0.5\n80964|0.55556\n80965|0.43056\n80966|0.44444\n80967|0.51389\n80968|0.625\n80969|0.47222\n80970|0.86111\n80971|0.76389\n80972|0.5\n80973|0.61111\n80974|0.625\n80975|0.75\n80976|0.5\n80977|0.625\n80978|0.69444\n80979|0.51389\n80980|0.5\n80981|0.55556\n80982|0.5\n80983|0.55556\n80984|0.83333\n80985|0.72222\n80986|0.69444\n80987|0.73611\n80988|0.61111\n80989|0.61111\n80990|0.875\n80991|0.20833\n80992|0.47222\n80993|0.38889\n80994|0.625\n80995|0.61111\n80996|0.43056\n80997|0.26389\n80998|0.84722\n80999|0.75\n81000|0.77778\n81001|0.88889\n81002|0.81944\n81003|0.80556\n81004|0.73611\n81005|0.5\n81006|0.5\n81007|0.58333\n81008|0.56944\n81009|0.5\n81010|0.47222\n81011|0.51389\n81012|0.58333\n81013|0.76389\n81014|0.33333\n81015|0.22222\n81016|0.30556\n81017|0.70833\n81018|0.5\n81019|0.55556\n81020|0.75\n81021|0.72222\n81022|0.56944\n81023|0.65278\n81024|0.55556\n81025|0.63889\n81026|0.5\n81027|0.5\n81028|0.69444\n81029|0.5\n81030|0.625\n81031|0.5\n81032|0.34722\n81033|0.30556\n81034|0.47222\n81035|0.5\n81036|0.51389\n81037|0.5\n81038|0.5\n81039|0.61111\n81040|0.54167\n81041|0.5\n81042|0.69444\n81043|0.58333\n81044|0.5\n81045|0.45833\n81046|0.45833\n81047|0.58333\n81048|0.68056\n81049|0.5\n81050|0.70833\n81051|0.51389\n81052|0.81944\n81053|0.61111\n81054|0.5\n81055|0.73611\n81056|0.76389\n81057|0.80556\n81058|0.65278\n81059|0.65278\n81060|0.51389\n81061|0.54167\n81062|0.5\n81063|0.20833\n81064|0.76389\n81065|0.72222\n81066|0.86111\n81067|0.70833\n81068|0.5\n81069|0.55556\n81070|0.5\n81071|0.55556\n81072|0.81944\n81073|0.5\n81074|0.58333\n81075|0.38889\n81076|0.47222\n81077|0.45833\n81078|0.5\n81079|0.5\n81080|0.5\n81081|0.77778\n81082|0.5\n81083|0.59722\n81084|0.52778\n81085|0.5\n81086|0.69444\n81087|0.55556\n81088|0.63889\n81089|0.56944\n81090|0.72222\n81091|0.77778\n81092|0.875\n81093|0.5\n81094|0.94444\n81095|0.88889\n81096|0.80556\n81097|0.875\n81098|0.84722\n81099|0.73611\n81100|0.33333\n81101|0.72222\n81102|0.61111\n81103|0.69444\n81104|0.80556\n81105|0.59722\n81106|0.70833\n81107|0.625\n81108|0.5\n81109|0.5\n81110|0.5\n81111|0.66667\n81112|0.75\n81113|0.55556\n81114|0.73611\n81115|0.65278\n81116|0.625\n81117|0.5\n81118|0.73611\n81119|0.66667\n81120|0.625\n81121|0.51389\n81122|0.70833\n81123|0.59722\n81124|0.54167\n81125|0.72222\n81126|0.59722\n81127|0.58333\n81128|0.51389\n81129|0.38889\n81130|0.51389\n81131|0.625\n81132|0.29167\n81133|0.45833\n81134|0.5\n81135|0.61111\n81136|0.52778\n81137|0.51389\n81138|0.38889\n81139|0.56944\n81140|0.72222\n81141|0.80556\n81142|0.375\n81143|0.63889\n81144|0.54167\n81145|0.5\n81146|0.75\n81147|0.65278\n81148|0.5\n81149|0.45833\n81150|0.875\n81151|0.70833\n81152|0.66667\n81153|0.88889\n81154|0.52778\n81155|0.55556\n81156|0.90278\n81157|0.47222\n81158|0.61111\n81159|0.81944\n81160|0.5\n81161|0.5\n81162|0.72222\n81163|0.55556\n81164|0.51389\n81165|0.94444\n81166|0.70833\n81167|0.83333\n81168|0.43056\n81169|0.75\n81170|0.80556\n81171|0.70833\n81172|0.34722\n81173|0.5\n81174|0.63889\n81175|0.83333\n81176|0.77778\n81177|0.34722\n81178|0.58333\n81179|0.65278\n81180|0.52778\n81181|0.83333\n81182|0.44444\n81183|0.5\n81184|0.16667\n81185|0.79167\n81186|0.76389\n81187|0.63889\n81188|0.65278\n81189|0.65278\n81190|0.66667\n81191|0.55556\n81192|0.75\n81193|0.58333\n81194|0.5\n81195|0.66667\n81196|0.51389\n81197|0.54167\n81198|0.5\n81199|0.77778\n81200|0.61111\n81201|0.5\n81202|0.5\n81203|0.375\n81204|0.55556\n81205|0.66667\n81206|0.5\n81207|0.79167\n81208|0.90278\n81209|0.68056\n81210|0.58333\n81211|0.25\n81212|0.5\n81213|0.44444\n81214|0.5\n81215|0.44444\n81216|0.79167\n81217|0.66667\n81218|0.69444\n81219|0.65278\n81220|0.68056\n81221|0.76389\n81222|0.72222\n81223|0.625\n81224|0.72222\n81225|0.73611\n81226|0.69444\n81227|0.70833\n81228|0.68056\n81229|0.69444\n81230|0.72222\n81231|0.77778\n81232|0.61111\n81233|0.625\n81234|0.63889\n81235|0.69444\n81236|0.61111\n81237|0.80556\n81238|0.76389\n81239|0.41667\n81240|0.80556\n81241|0.75\n81242|0.77778\n81243|0.80556\n81244|0.59722\n81245|0.80556\n81246|0.63889\n81247|0.58333\n81248|0.54167\n81249|0.72222\n81250|0.77778\n81251|0.83333\n81252|0.72222\n81253|0.76389\n81254|0.83333\n81255|0.69444\n81256|0.65278\n81257|0.5\n81258|0.5\n81259|0.33333\n81260|0.40278\n81261|0.73611\n81262|0.68056\n81263|0.63889\n81264|0.61111\n81265|0.5\n81266|0.58333\n81267|0.55556\n81268|0.58333\n81269|0.52778\n81270|0.58333\n81271|0.76389\n81272|0.63889\n81273|0.45833\n81274|0.40278\n81275|0.59722\n81276|0.48611\n81277|0.51389\n81278|0.44444\n81279|0.73611\n81280|0.68056\n81281|0.79167\n81282|0.72222\n81283|0.83333\n81284|0.73611\n81285|0.63889\n81286|0.73611\n81287|0.66667\n81288|0.90278\n81289|0.81944\n81290|0.66667\n81291|0.72222\n81292|0.52778\n81293|0.68056\n81294|0.5\n81295|0.5\n81296|0.66667\n81297|0.27778\n81298|0.68056\n81299|0.79167\n81300|0.625\n81301|0.54167\n81302|0.44444\n81303|0.68056\n81304|0.52778\n81305|0.68056\n81306|0.59722\n81307|0.5\n81308|0.77778\n81309|0.76389\n81310|0.54167\n81311|0.75\n81312|0.625\n81313|0.76389\n81314|0.88889\n81315|0.90278\n81316|0.61111\n81317|0.65278\n81318|0.91667\n81319|0.65278\n81320|0.44444\n81321|0.38889\n81322|0.68056\n81323|0.63889\n81324|0.70833\n81325|0.5\n81326|0.5\n81327|0.5\n81328|0.66667\n81329|0.58333\n81330|0.65278\n81331|0.5\n81332|0.66667\n81333|0.63889\n81334|0.59722\n81335|0.5\n81336|0.72222\n81337|0.40278\n81338|0.81944\n81339|0.73611\n81340|0.5\n81341|0.5\n81342|0.44444\n81343|0.77778\n81344|0.52778\n81345|0.59722\n81346|0.79167\n81347|0.69444\n81348|0.625\n81349|0.61111\n81350|0.5\n81351|0.875\n81352|0.88889\n81353|0.70833\n81354|0.55556\n81355|0.80556\n81356|0.79167\n81357|0.875\n81358|0.76389\n81359|0.77778\n81360|0.76389\n81361|0.66667\n81362|0.79167\n81363|0.80556\n81364|0.72222\n81365|0.66667\n81366|0.69444\n81367|0.76389\n81368|0.66667\n81369|0.69444\n81370|0.75\n81371|0.81944\n81372|0.80556\n81373|0.73611\n81374|0.84722\n81375|0.83333\n81376|0.75\n81377|0.55556\n81378|0.91667\n81379|0.875\n81380|0.73611\n81381|0.73611\n81382|0.90278\n81383|0.63889\n81384|0.81944\n81385|0.58333\n81386|0.41667\n81387|0.5\n81388|0.54167\n81389|0.875\n81390|0.5\n81391|0.5\n81392|0.44444\n81393|0.34722\n81394|0.43056\n81395|0.5\n81396|0.65278\n81397|0.45833\n81398|0.68056\n81399|0.73611\n81400|0.77778\n81401|0.41667\n81402|0.72222\n81403|0.79167\n81404|0.75\n81405|0.84722\n81406|0.51389\n81407|0.15278\n81408|0.70833\n81409|0.41667\n81410|0.77778\n81411|0.79167\n81412|0.41667\n81413|0.58333\n81414|0.45833\n81415|0.26389\n81416|0.16667\n81417|0.15278\n81418|0.20833\n81419|0.33333\n81420|0.36111\n81421|0.63889\n81422|0.44444\n81423|0.61111\n81424|0.5\n81425|0.65278\n81426|0.69444\n81427|0.73611\n81428|0.44444\n81429|0.68056\n81430|0.70833\n81431|0.23611\n81432|0.38889\n81433|0.31944\n81434|0.5\n81435|0.54167\n81436|0.93056\n81437|0.5\n81438|0.5\n81439|0.5\n81440|0.5\n81441|0.68056\n81442|0.61111\n81443|0.63889\n81444|0.69444\n81445|0.65278\n81446|0.63889\n81447|0.5\n81448|0.43056\n81449|0.59722\n81450|0.69444\n81451|0.75\n81452|0.5\n81453|0.54167\n81454|0.5\n81455|0.5\n81456|0.5\n81457|0.44444\n81458|0.5\n81459|0.5\n81460|0.38889\n81461|0.44444\n81462|0.5\n81463|0.45833\n81464|0.5\n81465|0.65278\n81466|0.56944\n81467|0.73611\n81468|0.51389\n81469|0.69444\n81470|0.5\n81471|0.51389\n81472|0.51389\n81473|0.55556\n81474|0.77778\n81475|0.66667\n81476|0.72222\n81477|0.5\n81478|0.44444\n81479|0.22222\n81480|0.38889\n81481|0.52778\n81482|0.65278\n81483|0.5\n81484|0.51389\n81485|0.5\n81486|0.66667\n81487|0.93056\n81488|0.875\n81489|0.45833\n81490|0.44444\n81491|0.5\n81492|0.86111\n81493|0.65278\n81494|0.56944\n81495|0.63889\n81496|0.48611\n81497|0.52778\n81498|0.40278\n81499|0.5\n81500|0.5\n81501|0.66667\n81502|0.54167\n81503|0.47222\n81504|0.5\n81505|0.51389\n81506|0.63889\n81507|0.44444\n81508|0.48611\n81509|0.33333\n81510|0.45833\n81511|0.52778\n81512|0.61111\n81513|0.5\n81514|0.80556\n81515|0.58333\n81516|0.56944\n81517|0.5\n81518|0.5\n81519|0.41667\n81520|0.55556\n81521|0.44444\n81522|0.51389\n81523|0.5\n81524|0.5\n81525|0.72222\n81526|0.75\n81527|0.5\n81528|0.54167\n81529|0.66667\n81530|0.55556\n81531|0.56944\n81532|0.55556\n81533|0.48611\n81534|0.5\n81535|0.66667\n81536|0.59722\n81537|0.52778\n81538|0.68056\n81539|0.51389\n81540|0.47222\n81541|0.48611\n81542|0.61111\n81543|0.625\n81544|0.58333\n81545|0.38889\n81546|0.5\n81547|0.51389\n81548|0.5\n81549|0.5\n81550|0.5\n81551|0.65278\n81552|0.58333\n81553|0.68056\n81554|0.5\n81555|0.44444\n81556|0.27778\n81557|0.52778\n81558|0.36111\n81559|0.5\n81560|0.81944\n81561|0.52778\n81562|0.41667\n81563|0.93056\n81564|0.875\n81565|0.88889\n81566|0.79167\n81567|0.73611\n81568|0.44444\n81569|0.5\n81570|0.47222\n81571|0.66667\n81572|0.41667\n81573|0.38889\n81574|0.70833\n81575|0.73611\n81576|0.83333\n81577|0.38889\n81578|0.70833\n81579|0.63889\n81580|0.63889\n81581|0.73611\n81582|0.5\n81583|0.41667\n81584|0.38889\n81585|0.47222\n81586|0.66667\n81587|0.72222\n81588|0.55556\n81589|0.5\n81590|0.38889\n81591|0.45833\n81592|0.55556\n81593|0.76389\n81594|0.80556\n81595|0.41667\n81596|0.66667\n81597|0.63889\n81598|0.54167\n81599|0.56944\n81600|0.69444\n81601|0.83333\n81602|0.55556\n81603|0.43056\n81604|0.51389\n81605|0.73611\n81606|0.41667\n81607|0.61111\n81608|0.75\n81609|0.68056\n81610|0.625\n81611|0.69444\n81612|0.69444\n81613|0.31944\n81614|0.52778\n81615|0.43056\n81616|0.94444\n81617|0.90278\n81618|0.65278\n81619|0.72222\n81620|0.20833\n81621|0.27778\n81622|0.68056\n81623|0.20833\n81624|0.47222\n81625|0.51389\n81626|0.72222\n81627|0.65278\n81628|0.54167\n81629|0.55556\n81630|0.72222\n81631|0.80556\n81632|0.51389\n81633|0.73611\n81634|0.79167\n81635|0.72222\n81636|0.76389\n81637|0.77778\n81638|0.80556\n81639|0.72222\n81640|0.65278\n81641|0.81944\n81642|0.875\n81643|0.63889\n81644|0.61111\n81645|0.65278\n81646|0.58333\n81647|0.5\n81648|0.66667\n81649|0.66667\n81650|0.77778\n81651|0.76389\n81652|0.77778\n81653|0.72222\n81654|0.94444\n81655|0.58333\n81656|0.58333\n81657|0.68056\n81658|0.90278\n81659|0.86111\n81660|0.69444\n81661|0.5\n81662|0.65278\n81663|0.72222\n81664|0.61111\n81665|0.56944\n81666|0.51389\n81667|0.55556\n81668|0.59722\n81669|0.66667\n81670|0.5\n81671|0.44444\n81672|0.31944\n81673|0.56944\n81674|0.72222\n81675|0.58333\n81676|0.69444\n81677|0.81944\n81678|0.76389\n81679|0.44444\n81680|0.77778\n81681|0.80556\n81682|0.59722\n81683|0.47222\n81684|0.81944\n81685|0.93056\n81686|0.81944\n81687|0.625\n81688|0.65278\n81689|0.84722\n81690|0.80556\n81691|0.70833\n81692|0.22222\n81693|0.73611\n81694|1\n81695|0.94444\n81696|0.56944\n81697|0.63889\n81698|0.66667\n81699|0.61111\n81700|0.5\n81701|0.61111\n81702|0.83333\n81703|0.72222\n81704|0.59722\n81705|0.5\n81706|0.55556\n81707|0.27778\n81708|0.70833\n81709|0.76389\n81710|0.52778\n81711|0.70833\n81712|0.70833\n81713|0.69444\n81714|0.81944\n81715|0.88889\n81716|0.5\n81717|0.48611\n81718|0.5\n81719|0.70833\n81720|0.5\n81721|0.5\n81722|0.80556\n81723|0.72222\n81724|0.68056\n81725|0.75\n81726|0.77778\n81727|0.55556\n81728|0.55556\n81729|0.51389\n81730|0.5\n81731|0.80556\n81732|0.625\n81733|0.63889\n81734|0.90278\n81735|0.70833\n81736|0.81944\n81737|0.76389\n81738|0.66667\n81739|0.72222\n81740|0.80556\n81741|0.72222\n81742|0.5\n81743|0.625\n81744|0.81944\n81745|0.26389\n81746|0.625\n81747|0.93056\n81748|0.58333\n81749|0.66667\n81750|0.58333\n81751|0.55556\n81752|0.43056\n81753|0.56944\n81754|0.68056\n81755|0.63889\n81756|0.69444\n81757|0.52778\n81758|0.73611\n81759|0.5\n81760|0.54167\n81761|0.51389\n81762|0.81944\n81763|0.61111\n81764|0.58333\n81765|0.5\n81766|0.76389\n81767|0.77778\n81768|0.5\n81769|0.83333\n81770|0.875\n81771|0.84722\n81772|0.79167\n81773|0.38889\n81774|0.25\n81775|0.72222\n81776|0.76389\n81777|0.77778\n81778|0.77778\n81779|0.68056\n81780|0.72222\n81781|0.51389\n81782|0.91667\n81783|0.95833\n81784|0.5\n81785|0.58333\n81786|0.80556\n81787|0.69444\n81788|0.75\n81789|0.75\n81790|0.63889\n81791|0.88889\n81792|0.88889\n81793|0.88889\n81794|0.83333\n81795|0.56944\n81796|0.27778\n81797|0.76389\n81798|0.54167\n81799|0.70833\n81800|0.41667\n81801|0.77778\n81802|0.68056\n81803|0.59722\n81804|0.625\n81805|0.5\n81806|0.5\n81807|0.5\n81808|0.5\n81809|0.40278\n81810|0.5\n81811|0.44444\n81812|0.40278\n81813|0.44444\n81814|0.81944\n81815|0.80556\n81816|0.75\n81817|0.72222\n81818|0.5\n81819|0.25\n81820|0.70833\n81821|0.66667\n81822|0.34722\n81823|0.27778\n81824|0.59722\n81825|0.51389\n81826|0.55556\n81827|0.41667\n81828|0.52778\n81829|0.72222\n81830|0.5\n81831|0.66667\n81832|0.83333\n81833|0.45833\n81834|0.625\n81835|0.80556\n81836|0.77778\n81837|0.65278\n81838|0.72222\n81839|0.63889\n81840|0.625\n81841|0.72222\n81842|0.72222\n81843|0.66667\n81844|0.72222\n81845|0.63889\n81846|0.55556\n81847|0.76389\n81848|0.84722\n81849|0.70833\n81850|0.5\n81851|0.61111\n81852|0.5\n81853|0.40278\n81854|0.5\n81855|0.5\n81856|0.5\n81857|0.69444\n81858|0.66667\n81859|0.54167\n81860|0.58333\n81861|0.52778\n81862|0.625\n81863|0.73611\n81864|0.61111\n81865|0.5\n81866|0.5\n81867|0.33333\n81868|0.58333\n81869|0.70833\n81870|0.83333\n81871|0.79167\n81872|0.5\n81873|0.80556\n81874|0.86111\n81875|0.56944\n81876|0.5\n81877|0.75\n81878|0.52778\n81879|0.56944\n81880|0.45833\n81881|0.5\n81882|0.43056\n81883|0.5\n81884|0.90278\n81885|0.90278\n81886|0.72222\n81887|0.48611\n81888|0.51389\n81889|0.93056\n81890|0.58333\n81891|0.47222\n81892|0.61111\n81893|0.5\n81894|0.79167\n81895|0.5\n81896|0.63889\n81897|0.93056\n81898|0.58333\n81899|0.66667\n81900|0.30556\n81901|0.5\n81902|0.51389\n81903|0.36111\n81904|0.63889\n81905|0.63889\n81906|0.55556\n81907|0.5\n81908|0.30556\n81909|0.41667\n81910|0.55556\n81911|0.5\n81912|0.76389\n81913|0.86111\n81914|0.5\n81915|0.61111\n81916|0.875\n81917|0.86111\n81918|0.61111\n81919|0.72222\n81920|0.44444\n81921|0.72222\n81922|0.55556\n81923|0.52778\n81924|0.83333\n81925|0.5\n81926|0.44444\n81927|0.65278\n81928|0.58333\n81929|0.56944\n81930|0.31944\n81931|0.55556\n81932|0.61111\n81933|0.5\n81934|0.5\n81935|0.73611\n81936|0.72222\n81937|0.73611\n81938|0.91667\n81939|0.76389\n81940|0.22222\n81941|0.18056\n81942|0.75\n81943|0.36111\n81944|0.63889\n81945|0.77778\n81946|0.56944\n81947|0.80556\n81948|0.875\n81949|0.47222\n81950|0.80556\n81951|0.90278\n81952|0.55556\n81953|0.63889\n81954|0.56944\n81955|0.55556\n81956|0.45833\n81957|0.40278\n81958|0.59722\n81959|0.34722\n81960|0.38889\n81961|0.43056\n81962|0.70833\n81963|0.29167\n81964|0.625\n81965|0.75\n81966|0.83333\n81967|0.45833\n81968|0.43056\n81969|0.56944\n81970|0.59722\n81971|0.73611\n81972|0.73611\n81973|0.81944\n81974|0.51389\n81975|0.52778\n81976|0.5\n81977|0.86111\n81978|0.68056\n81979|0.55556\n81980|0.88889\n81981|0.81944\n81982|0.625\n81983|0.83333\n81984|0.63889\n81985|0.72222\n81986|0.59722\n81987|0.61111\n81988|0.22222\n81989|0.66667\n81990|0.65278\n81991|0.70833\n81992|0.81944\n81993|0.5\n81994|0.5\n81995|0.54167\n81996|0.61111\n81997|0.69444\n81998|0.45833\n81999|0.81944\n82000|0.66667\n82001|0.5\n82002|0.5\n82003|0.73611\n82004|0.375\n82005|0.52778\n82006|0.51389\n82007|0.5\n82008|0.5\n82009|0.5\n82010|0.80556\n82011|0.34722\n82012|0.52778\n82013|0.54167\n82014|0.44444\n82015|0.44444\n82016|0.70833\n82017|0.56944\n82018|0.48611\n82019|0.5\n82020|0.5\n82021|0.875\n82022|0.5\n82023|0.5\n82024|0.5\n82025|0.5\n82026|0.61111\n82027|0.58333\n82028|0.76389\n82029|0.38889\n82030|0.5\n82031|0.70833\n82032|0.5\n82033|0.61111\n82034|0.59722\n82035|0.56944\n82036|0.65278\n82037|0.63889\n82038|0.77778\n82039|0.77778\n82040|0.55556\n82041|0.72222\n82042|0.51389\n82043|0.70833\n82044|0.77778\n82045|0.93056\n82046|0.66667\n82047|0.56944\n82048|0.66667\n82049|0.75\n82050|0.86111\n82051|0.75\n82052|0.48611\n82053|0.56944\n82054|0.65278\n82055|0.5\n82056|0.73611\n82057|0.27778\n82058|0.44444\n82059|0.73611\n82060|0.59722\n82061|0.69444\n82062|0.625\n82063|0.30556\n82064|0.52778\n82065|0.55556\n82066|0.45833\n82067|0.22222\n82068|0.375\n82069|0.59722\n82070|0.36111\n82071|0.33333\n82072|0.51389\n82073|0.5\n82074|0.51389\n82075|0.65278\n82076|0.75\n82077|0.41667\n82078|0.36111\n82079|0.38889\n82080|0.51389\n82081|0.75\n82082|0.77778\n82083|0.77778\n82084|0.51389\n82085|0.5\n82086|0.5\n82087|0.68056\n82088|0.61111\n82089|0.47222\n82090|0.79167\n82091|0.58333\n82092|0.61111\n82093|0.88889\n82094|0.47222\n82095|0.5\n82096|0.5\n82097|0.40278\n82098|0.66667\n82099|0.61111\n82100|0.5\n82101|0.61111\n82102|0.76389\n82103|0.625\n82104|0.29167\n82105|0.51389\n82106|0.55556\n82107|0.5\n82108|0.55556\n82109|0.5\n82110|0.5\n82111|0.54167\n82112|0.33333\n82113|0.5\n82114|0.5\n82115|0.52778\n82116|0.44444\n82117|0.55556\n82118|0.5\n82119|0.48611\n82120|0.5\n82121|0.54167\n82122|0.5\n82123|0.73611\n82124|0.63889\n82125|0.54167\n82126|0.61111\n82127|0.5\n82128|0.5\n82129|0.76389\n82130|0.47222\n82131|0.5\n82132|0.5\n82133|0.5\n82134|0.73611\n82135|0.79167\n82136|0.66667\n82137|0.36111\n82138|0.45833\n82139|0.48611\n82140|0.45833\n82141|0.55556\n82142|0.83333\n82143|0.5\n82144|0.5\n82145|0.73611\n82146|0.51389\n82147|0.77778\n82148|0.77778\n82149|0.59722\n82150|0.58333\n82151|0.44444\n82152|0.5\n82153|0.61111\n82154|0.5\n82155|0.5\n82156|0.44444\n82157|0.25\n82158|0.65278\n82159|0.54167\n82160|0.63889\n82161|0.80556\n82162|0.68056\n82163|0.68056\n82164|0.70833\n82165|0.59722\n82166|0.59722\n82167|0.91667\n82168|0.65278\n82169|0.83333\n82170|0.59722\n82171|0.58333\n82172|0.625\n82173|0.5\n82174|0.65278\n82175|0.58333\n82176|0.66667\n82177|0.84722\n82178|0.75\n82179|0.79167\n82180|0.72222\n82181|0.68056\n82182|0.5\n82183|0.58333\n82184|0.72222\n82185|0.86111\n82186|0.59722\n82187|0.83333\n82188|0.72222\n82189|0.83333\n82190|0.79167\n82191|0.72222\n82192|0.97222\n82193|0.81944\n82194|0.76389\n82195|0.47222\n82196|0.51389\n82197|0.52778\n82198|0.68056\n82199|0.54167\n82200|0.5\n82201|0.31944\n82202|0.11111\n82203|0.5\n82204|0.55556\n82205|0.69444\n82206|0.5\n82207|0.52778\n82208|0.5\n82209|0.5\n82210|0.5\n82211|0.70833\n82212|0.56944\n82213|0.5\n82214|0.5\n82215|0.5\n82216|0.59722\n82217|0.75\n82218|0.55556\n82219|0.5\n82220|0.90278\n82221|0.5\n82222|0.55556\n82223|0.5\n82224|0.5\n82225|0.56944\n82226|0.70833\n82227|0.097222\n82228|0.52778\n82229|0.65278\n82230|0.5\n82231|0.5\n82232|0.51389\n82233|0.5\n82234|0.5\n82235|0.5\n82236|0.55556\n82237|0.77778\n82238|0.44444\n82239|0.5\n82240|0.22222\n82241|0.5\n82242|0.22222\n82243|0.5\n82244|0.5\n82245|0.5\n82246|0.83333\n82247|0.84722\n82248|0.55556\n82249|0.56944\n82250|0.5\n82251|0.5\n82252|0.56944\n82253|0.66667\n82254|0.5\n82255|0.52778\n82256|0.5\n82257|0.48611\n82258|0.48611\n82259|0.55556\n82260|0.5\n82261|0.52778\n82262|0.55556\n82263|0.83333\n82264|0.66667\n82265|0.5\n82266|0.5\n82267|0.5\n82268|0.56944\n82269|0.47222\n82270|0.5\n82271|0.79167\n82272|0.61111\n82273|0.36111\n82274|0.34722\n82275|0.375\n82276|0.48611\n82277|0.68056\n82278|0.61111\n82279|0.5\n82280|0.81944\n82281|0.625\n82282|0.90278\n82283|0.5\n82284|0.59722\n82285|0.5\n82286|0.5\n82287|0.5\n82288|0.56944\n82289|0.5\n82290|0.43056\n82291|0.5\n82292|0.86111\n82293|0.84722\n82294|0.5\n82295|0.5\n82296|0.5\n82297|0.55556\n82298|0.44444\n82299|0.5\n82300|0.55556\n82301|0.61111\n82302|0.55556\n82303|0.55556\n82304|0.58333\n82305|0.51389\n82306|0.61111\n82307|0.5\n82308|0.55556\n82309|0.5\n82310|0.48611\n82311|0.56944\n82312|0.5\n82313|0.36111\n82314|0.5\n82315|0.43056\n82316|0.51389\n82317|0.5\n82318|0.5\n82319|0.5\n82320|0.70833\n82321|0.83333\n82322|0.5\n82323|0.51389\n82324|0.5\n82325|0.5\n82326|0.68056\n82327|0.625\n82328|0.5\n82329|0.77778\n82330|0.875\n82331|0.69444\n82332|0.81944\n82333|0.80556\n82334|0.58333\n82335|0.66667\n82336|0.5\n82337|0.5\n82338|0.5\n82339|0.5\n82340|0.5\n82341|0.40278\n82342|0.43056\n82343|0.72222\n82344|0.52778\n82345|0.56944\n82346|0.51389\n82347|0.5\n82348|0.55556\n82349|0.5\n82350|0.5\n82351|0.5\n82352|0.70833\n82353|0.59722\n82354|0.54167\n82355|0.80556\n82356|0.65278\n82357|0.73611\n82358|0.77778\n82359|0.76389\n82360|0.875\n82361|0.52778\n82362|0.55556\n82363|0.5\n82364|0.5\n82365|0.5\n82366|0.51389\n82367|0.51389\n82368|0.58333\n82369|0.5\n82370|0.5\n82371|0.84722\n82372|0.66667\n82373|0.54167\n82374|0.56944\n82375|0.73611\n82376|0.68056\n82377|0.29167\n82378|0.48611\n82379|0.61111\n82380|0.68056\n82381|0.83333\n82382|0.66667\n82383|0.5\n82384|0.29167\n82385|0.5\n82386|0.38889\n82387|0.5\n82388|0.58333\n82389|0.51389\n82390|0.55556\n82391|0.55556\n82392|0.54167\n82393|0.70833\n82394|0.70833\n82395|0.83333\n82396|0.66667\n82397|0.79167\n82398|0.76389\n82399|0.77778\n82400|0.66667\n82401|0.61111\n82402|0.40278\n82403|0.56944\n82404|0.55556\n82405|0.5\n82406|0.5\n82407|0.59722\n82408|0.27778\n82409|0.47222\n82410|0.43056\n82411|0.5\n82412|0.63889\n82413|0.5\n82414|0.61111\n82415|0.63889\n82416|0.61111\n82417|0.68056\n82418|0.58333\n82419|0.76389\n82420|0.55556\n82421|0.76389\n82422|0.5\n82423|0.5\n82424|0.45833\n82425|0.55556\n82426|0.5\n82427|0.55556\n82428|0.66667\n82429|0.77778\n82430|0.48611\n82431|0.38889\n82432|0.61111\n82433|0.65278\n82434|0.79167\n82435|0.58333\n82436|0.52778\n82437|0.58333\n82438|0.80556\n82439|0.65278\n82440|0.45833\n82441|0.33333\n82442|0.51389\n82443|0.79167\n82444|0.16667\n82445|0.083333\n82446|0.18056\n82447|0.41667\n82448|0.47222\n82449|0.43056\n82450|0.44444\n82451|0.33333\n82452|0.45833\n82453|0.5\n82454|0.44444\n82455|0.5\n82456|0.5\n82457|0.5\n82458|0.5\n82459|0.43056\n82460|0.29167\n82461|0.5\n82462|0.5\n82463|0.56944\n82464|0.5\n82465|0.43056\n82466|0.5\n82467|0.51389\n82468|0.5\n82469|0.5\n82470|0.5\n82471|0.5\n82472|0.5\n82473|0.5\n82474|0.5\n82475|0.5\n82476|0.52778\n82477|0.72222\n82478|0.75\n82479|0.63889\n82480|0.61111\n82481|0.43056\n82482|0.72222\n82483|0.66667\n82484|0.80556\n82485|0.56944\n82486|0.44444\n82487|0.55556\n82488|0.5\n82489|0.51389\n82490|0.51389\n82491|0.45833\n82492|0.54167\n82493|0.18056\n82494|0.66667\n82495|0.63889\n82496|0.5\n82497|0.5\n82498|0.5\n82499|0.61111\n82500|0.5\n82501|0.45833\n82502|0.38889\n82503|0.375\n82504|0.68056\n82505|0.51389\n82506|0.55556\n82507|0.63889\n82508|0.55556\n82509|0.55556\n82510|0.33333\n82511|0.69444\n82512|0.47222\n82513|0.83333\n82514|0.33333\n82515|0.41667\n82516|0.52778\n82517|0.625\n82518|0.5\n82519|0.55556\n82520|0.40278\n82521|0.52778\n82522|0.38889\n82523|0.625\n82524|0.79167\n82525|0.91667\n82526|0.77778\n82527|0.73611\n82528|0.66667\n82529|0.72222\n82530|0.72222\n82531|0.51389\n82532|0.52778\n82533|0.45833\n82534|0.29167\n82535|0.55556\n82536|0.72222\n82537|0.80556\n82538|0.55556\n82539|0.5\n82540|0.61111\n82541|0.68056\n82542|0.5\n82543|0.54167\n82544|0.55556\n82545|0.65278\n82546|0.5\n82547|0.88889\n82548|0.70833\n82549|0.68056\n82550|0.5\n82551|0.63889\n82552|0.70833\n82553|0.44444\n82554|0.52778\n82555|0.75\n82556|0.625\n82557|0.59722\n82558|0.84722\n82559|0.625\n82560|0.875\n82561|0.66667\n82562|0.76389\n82563|0.70833\n82564|0.77778\n82565|0.77778\n82566|0.68056\n82567|0.72222\n82568|0.5\n82569|0.68056\n82570|0.5\n82571|0.5\n82572|0.375\n82573|0.43056\n82574|0.36111\n82575|0.69444\n82576|0.84722\n82577|0.38889\n82578|0.5\n82579|0.63889\n82580|0.47222\n82581|0.5\n82582|0.51389\n82583|0.5\n82584|0.55556\n82585|0.5\n82586|0.625\n82587|0.79167\n82588|0.63889\n82589|0.66667\n82590|0.55556\n82591|0.34722\n82592|0.69444\n82593|0.625\n82594|0.45833\n82595|0.55556\n82596|0.5\n82597|0.5\n82598|0.48611\n82599|0.52778\n82600|0.625\n82601|0.5\n82602|0.61111\n82603|0.63889\n82604|0.65278\n82605|0.69444\n82606|0.44444\n82607|0.48611\n82608|0.625\n82609|0.5\n82610|0.47222\n82611|0.27778\n82612|0.38889\n82613|0.41667\n82614|0.52778\n82615|0.51389\n82616|0.54167\n82617|0.55556\n82618|0.61111\n82619|0.65278\n82620|0.44444\n82621|0.47222\n82622|0.70833\n82623|0.22222\n82624|0.48611\n82625|0.5\n82626|0.51389\n82627|0.51389\n82628|0.58333\n82629|0.45833\n82630|0.5\n82631|0.52778\n82632|0.59722\n82633|0.38889\n82634|0.44444\n82635|0.83333\n82636|0.27778\n82637|0.5\n82638|0.52778\n82639|0.33333\n82640|0.70833\n82641|0.61111\n82642|0.5\n82643|0.5\n82644|0.43056\n82645|0.61111\n82646|0.70833\n82647|0.51389\n82648|0.47222\n82649|0.51389\n82650|0.56944\n82651|0.66667\n82652|0.59722\n82653|0.5\n82654|0.55556\n82655|0.375\n82656|0.5\n82657|0.31944\n82658|0.59722\n82659|0.58333\n82660|0.66667\n82661|0.5\n82662|0.31944\n82663|0.25\n82664|0.63889\n82665|0.55556\n82666|0.59722\n82667|0.44444\n82668|0.48611\n82669|0.41667\n82670|0.41667\n82671|0.59722\n82672|0.38889\n82673|0.63889\n82674|0.63889\n82675|0.68056\n82676|0.72222\n82677|0.72222\n82678|0.72222\n82679|0.5\n82680|0.77778\n82681|0.77778\n82682|0.54167\n82683|0.76389\n82684|0.55556\n82685|0.79167\n82686|0.36111\n82687|0.69444\n82688|0.77778\n82689|0.73611\n82690|0.65278\n82691|0.72222\n82692|0.80556\n82693|0.77778\n82694|0.34722\n82695|0.61111\n82696|0.51389\n82697|0.5\n82698|0.5\n82699|0.77778\n82700|0.27778\n82701|0.51389\n82702|0.76389\n82703|0.65278\n82704|0.69444\n82705|0.69444\n82706|0.97222\n82707|0.875\n82708|0.5\n82709|0.59722\n82710|0.51389\n82711|0.68056\n82712|0.72222\n82713|0.54167\n82714|0.55556\n82715|0.55556\n82716|0.5\n82717|0.56944\n82718|0.45833\n82719|0.55556\n82720|0.58333\n82721|0.63889\n82722|0.68056\n82723|0.51389\n82724|0.72222\n82725|0.65278\n82726|0.5\n82727|0.5\n82728|0.5\n82729|0.69444\n82730|0.73611\n82731|0.77778\n82732|0.54167\n82733|0.56944\n82734|0.38889\n82735|0.59722\n82736|0.45833\n82737|0.70833\n82738|0.36111\n82739|0.38889\n82740|0.48611\n82741|0.65278\n82742|0.5\n82743|0.70833\n82744|0.5\n82745|0.55556\n82746|0.68056\n82747|0.56944\n82748|0.55556\n82749|0.72222\n82750|0.69444\n82751|0.44444\n82752|0.44444\n82753|0.66667\n82754|0.47222\n82755|0.43056\n82756|0.34722\n82757|0.56944\n82758|0.65278\n82759|0.54167\n82760|0.65278\n82761|0.43056\n82762|0.40278\n82763|0.68056\n82764|0.65278\n82765|0.56944\n82766|0.55556\n82767|0.5\n82768|0.97222\n82769|0.66667\n82770|0.80556\n82771|0.86111\n82772|0.81944\n82773|0.63889\n82774|0.68056\n82775|0.63889\n82776|0.61111\n82777|0.38889\n82778|0.30556\n82779|0.63889\n82780|0.66667\n82781|0.69444\n82782|0.56944\n82783|0.5\n82784|0.44444\n82785|0.5\n82786|0.5\n82787|0.5\n82788|0.51389\n82789|0.5\n82790|0.40278\n82791|0.51389\n82792|0.5\n82793|0.51389\n82794|0.55556\n82795|0.5\n82796|0.5\n82797|0.5\n82798|0.51389\n82799|0.55556\n82800|0.44444\n82801|0.5\n82802|0.5\n82803|0.5\n82804|0.5\n82805|0.5\n82806|0.51389\n82807|0.5\n82808|0.5\n82809|0.52778\n82810|0.51389\n82811|0.80556\n82812|0.61111\n82813|0.55556\n82814|0.5\n82815|0.5\n82816|0.44444\n82817|0.5\n82818|0.5\n82819|0.70833\n82820|0.70833\n82821|0.58333\n82822|0.5\n82823|0.5\n82824|0.5\n82825|0.63889\n82826|0.5\n82827|0.5\n82828|0.5\n82829|0.375\n82830|0.5\n82831|0.5\n82832|0.5\n82833|0.5\n82834|0.44444\n82835|0.5\n82836|0.55556\n82837|0.5\n82838|0.69444\n82839|0.5\n82840|0.47222\n82841|0.63889\n82842|0.70833\n82843|0.90278\n82844|0.41667\n82845|0.56944\n82846|0.29167\n82847|0.27778\n82848|0.30556\n82849|0.91667\n82850|0.41667\n82851|0.65278\n82852|0.69444\n82853|0.5\n82854|0.80556\n82855|0.76389\n82856|0.70833\n82857|0.48611\n82858|0.54167\n82859|0.84722\n82860|0.5\n82861|0.63889\n82862|0.51389\n82863|0.5\n82864|0.5\n82865|0.65278\n82866|0.34722\n82867|0.66667\n82868|0.59722\n82869|0.43056\n82870|0.55556\n82871|0.76389\n82872|0.70833\n82873|0.47222\n82874|0.5\n82875|0.70833\n82876|0.5\n82877|0.5\n82878|0.58333\n82879|0.22222\n82880|0.5\n82881|0.61111\n82882|0.76389\n82883|0.625\n82884|0.58333\n82885|0.58333\n82886|0.5\n82887|0.79167\n82888|0.65278\n82889|0.5\n82890|0.70833\n82891|0.083333\n82892|0.73611\n82893|0.48611\n82894|0.58333\n82895|0.58333\n82896|0.55556\n82897|0.625\n82898|0.68056\n82899|0.73611\n82900|0.69444\n82901|0.59722\n82902|0.69444\n82903|0.48611\n82904|0.5\n82905|0.625\n82906|0.51389\n82907|0.45833\n82908|0.76389\n82909|0.66667\n82910|0.5\n82911|0.5\n82912|0.54167\n82913|0.5\n82914|0.61111\n82915|0.73611\n82916|0.54167\n82917|0.61111\n82918|0.54167\n82919|0.5\n82920|0.51389\n82921|0.5\n82922|0.54167\n82923|0.18056\n82924|0.625\n82925|0.43056\n82926|0.83333\n82927|0.83333\n82928|0.44444\n82929|0.56944\n82930|0.58333\n82931|0.66667\n82932|0.69444\n82933|0.54167\n82934|0.65278\n82935|0.5\n82936|0.5\n82937|0.54167\n82938|0.69444\n82939|0.84722\n82940|0.54167\n82941|0.66667\n82942|0.58333\n82943|0.5\n82944|0.5\n82945|0.58333\n82946|0.5\n82947|0.52778\n82948|0.68056\n82949|0.66667\n82950|0.63889\n82951|0.77778\n82952|0.5\n82953|0.375\n82954|0.51389\n82955|0.54167\n82956|0.51389\n82957|0.55556\n82958|0.5\n82959|0.66667\n82960|0.51389\n82961|0.51389\n82962|0.51389\n82963|0.59722\n82964|0.5\n82965|0.56944\n82966|0.77778\n82967|0.79167\n82968|0.5\n82969|0.55556\n82970|0.54167\n82971|0.75\n82972|0.63889\n82973|0.54167\n82974|0.5\n82975|0.48611\n82976|0.51389\n82977|0.54167\n82978|0.65278\n82979|0.43056\n82980|0.61111\n82981|0.47222\n82982|0.875\n82983|0.61111\n82984|0.5\n82985|0.68056\n82986|0.88889\n82987|0.625\n82988|0.55556\n82989|0.5\n82990|0.5\n82991|0.5\n82992|0.55556\n82993|0.54167\n82994|0.51389\n82995|0.5\n82996|0.54167\n82997|0.59722\n82998|0.5\n82999|0.55556\n83000|0.31944\n83001|0.875\n83002|0.66667\n83003|0.5\n83004|0.5\n83005|0.44444\n83006|0.56944\n83007|0.5\n83008|0.30556\n83009|0.43056\n83010|0.55556\n83011|0.5\n83012|0.5\n83013|0.5\n83014|0.5\n83015|0.40278\n83016|0.5\n83017|0.55556\n83018|0.52778\n83019|0.625\n83020|0.5\n83021|0.52778\n83022|0.5\n83023|0.5\n83024|0.5\n83025|0.51389\n83026|0.25\n83027|0.5\n83028|0.63889\n83029|0.44444\n83030|0.69444\n83031|0.56944\n83032|0.44444\n83033|0.5\n83034|0.59722\n83035|0.55556\n83036|0.58333\n83037|0.41667\n83038|0.48611\n83039|0.76389\n83040|0.63889\n83041|0.48611\n83042|0.5\n83043|0.5\n83044|0.5\n83045|0.44444\n83046|0.44444\n83047|0.61111\n83048|0.58333\n83049|0.44444\n83050|0.31944\n83051|0.54167\n83052|0.47222\n83053|0.59722\n83054|0.55556\n83055|0.69444\n83056|0.61111\n83057|0.43056\n83058|0.5\n83059|0.875\n83060|0.44444\n83061|0.5\n83062|0.72222\n83063|0.55556\n83064|0.5\n83065|0.5\n83066|0.5\n83067|0.5\n83068|0.5\n83069|0.5\n83070|0.55556\n83071|0.65278\n83072|0.625\n83073|0.5\n83074|0.75\n83075|0.79167\n83076|0.61111\n83077|0.5\n83078|0.5\n83079|0.58333\n83080|0.51389\n83081|0.36111\n83082|0.44444\n83083|0.56944\n83084|0.5\n83085|0.58333\n83086|0.5\n83087|0.79167\n83088|0.58333\n83089|0.56944\n83090|0.5\n83091|0.51389\n83092|0.5\n83093|0.5\n83094|0.70833\n83095|0.55556\n83096|0.58333\n83097|0.5\n83098|0.5\n83099|0.55556\n83100|0.47222\n83101|0.61111\n83102|0.5\n83103|0.5\n83104|0.5\n83105|0.5\n83106|0.44444\n83107|0.5\n83108|0.625\n83109|0.5\n83110|0.47222\n83111|0.69444\n83112|0.56944\n83113|0.40278\n83114|0.5\n83115|0.5\n83116|0.69444\n83117|0.56944\n83118|0.51389\n83119|0.43056\n83120|0.55556\n83121|0.38889\n83122|0.72222\n83123|0.5\n83124|0.56944\n83125|0.51389\n83126|0.5\n83127|0.5\n83128|0.51389\n83129|0.83333\n83130|0.5\n83131|0.625\n83132|0.5\n83133|0.73611\n83134|0.72222\n83135|0.72222\n83136|0.56944\n83137|0.5\n83138|0.68056\n83139|0.5\n83140|0.5\n83141|0.47222\n83142|0.5\n83143|0.63889\n83144|0.52778\n83145|0.5\n83146|0.5\n83147|0.58333\n83148|0.69444\n83149|0.61111\n83150|0.5\n83151|0.66667\n83152|0.38889\n83153|0.55556\n83154|0.91667\n83155|0.55556\n83156|0.5\n83157|0.5\n83158|0.58333\n83159|0.36111\n83160|0.5\n83161|0.66667\n83162|0.5\n83163|0.5\n83164|0.5\n83165|0.5\n83166|0.375\n83167|0.5\n83168|0.52778\n83169|0.5\n83170|0.5\n83171|0.5\n83172|0.73611\n83173|0.65278\n83174|0.54167\n83175|0.27778\n83176|0.54167\n83177|0.55556\n83178|0.5\n83179|0.51389\n83180|0.34722\n83181|0.625\n83182|0.5\n83183|0.5\n83184|0.45833\n83185|0.5\n83186|0.51389\n83187|0.55556\n83188|0.84722\n83189|0.88889\n83190|0.5\n83191|0.5\n83192|0.5\n83193|0.55556\n83194|0.90278\n83195|0.5\n83196|0.63889\n83197|0.94444\n83198|0.55556\n83199|0.51389\n83200|0.70833\n83201|0.5\n83202|0.5\n83203|0.5\n83204|0.44444\n83205|0.55556\n83206|0.20833\n83207|0.5\n83208|0.5\n83209|0.61111\n83210|0.70833\n83211|0.5\n83212|0.61111\n83213|0.5\n83214|0.55556\n83215|0.83333\n83216|0.47222\n83217|0.47222\n83218|0.55556\n83219|0.44444\n83220|0.44444\n83221|0.70833\n83222|0.5\n83223|0.68056\n83224|0.59722\n83225|0.51389\n83226|0.54167\n83227|0.66667\n83228|0.47222\n83229|0.5\n83230|0.55556\n83231|0.625\n83232|0.625\n83233|0.47222\n83234|0.55556\n83235|0.68056\n83236|0.58333\n83237|0.29167\n83238|0.26389\n83239|0.5\n83240|0.77778\n83241|0.63889\n83242|0.5\n83243|0.375\n83244|0.625\n83245|0.51389\n83246|0.79167\n83247|0.43056\n83248|0.45833\n83249|0.5\n83250|0.59722\n83251|0.5\n83252|0.33333\n83253|0.31944\n83254|0.65278\n83255|0.61111\n83256|0.77778\n83257|0.66667\n83258|0.55556\n83259|0.55556\n83260|0.61111\n83261|0.54167\n83262|0.76389\n83263|0.72222\n83264|0.73611\n83265|0.54167\n83266|0.83333\n83267|0.94444\n83268|0.83333\n83269|0.76389\n83270|0.81944\n83271|0.375\n83272|0.77778\n83273|0.55556\n83274|0.44444\n83275|0.72222\n83276|0.58333\n83277|0.76389\n83278|0.625\n83279|0.59722\n83280|0.5\n83281|0.36111\n83282|0.33333\n83283|0.54167\n83284|0.5\n83285|0.59722\n83286|0.47222\n83287|0.77778\n83288|0.47222\n83289|0.5\n83290|0.625\n83291|0.58333\n83292|0.83333\n83293|0.55556\n83294|0.63889\n83295|0.73611\n83296|0.48611\n83297|0.80556\n83298|0.59722\n83299|0.33333\n83300|0.5\n83301|0.41667\n83302|0.44444\n83303|0.93056\n83304|0.41667\n83305|0.5\n83306|0.33333\n83307|0.51389\n83308|0.22222\n83309|0.38889\n83310|0.44444\n83311|0.54167\n83312|0.55556\n83313|0.36111\n83314|0.26389\n83315|0.44444\n83316|0.52778\n83317|0.94444\n83318|0.625\n83319|0.90278\n83320|0.51389\n83321|0.65278\n83322|0.80556\n83323|0.5\n83324|0.52778\n83325|0.5\n83326|0.55556\n83327|0.72222\n83328|0.65278\n83329|1\n83330|0.33333\n83331|0.52778\n83332|0.44444\n83333|0.84722\n83334|0.5\n83335|0.77778\n83336|0.69444\n83337|0.65278\n83338|0.81944\n83339|0.65278\n83340|0.65278\n83341|0.61111\n83342|0.5\n83343|0.61111\n83344|0.72222\n83345|0.65278\n83346|0.73611\n83347|0.5\n83348|0.55556\n83349|0.81944\n83350|0.61111\n83351|0.56944\n83352|0.55556\n83353|0.73611\n83354|0.63889\n83355|0.34722\n83356|0.61111\n83357|0.83333\n83358|0.375\n83359|0.20833\n83360|0.66667\n83361|0.5\n83362|0.5\n83363|0.55556\n83364|0.72222\n83365|0.70833\n83366|0.80556\n83367|0.79167\n83368|0.83333\n83369|0.44444\n83370|0.45833\n83371|0.51389\n83372|0.55556\n83373|0.5\n83374|0.48611\n83375|0.65278\n83376|0.63889\n83377|0.625\n83378|0.5\n83379|0.90278\n83380|0.51389\n83381|0.72222\n83382|0.61111\n83383|0.70833\n83384|0.38889\n83385|0.43056\n83386|0.59722\n83387|0.77778\n83388|0.5\n83389|0.625\n83390|0.69444\n83391|0.375\n83392|0.5\n83393|0.5\n83394|0.5\n83395|0.66667\n83396|0.5\n83397|0.5\n83398|0.69444\n83399|0.55556\n83400|0.77778\n83401|0.65278\n83402|0.5\n83403|0.5\n83404|0.44444\n83405|0.61111\n83406|0.58333\n83407|0.5\n83408|0.47222\n83409|0.51389\n83410|0.5\n83411|0.44444\n83412|0.5\n83413|0.68056\n83414|0.81944\n83415|0.58333\n83416|0.59722\n83417|0.52778\n83418|0.81944\n83419|0.83333\n83420|0.5\n83421|0.5\n83422|0.5\n83423|0.80556\n83424|0.55556\n83425|0.77778\n83426|0.59722\n83427|0.83333\n83428|0.5\n83429|0.59722\n83430|0.51389\n83431|0.54167\n83432|0.5\n83433|0.5\n83434|0.59722\n83435|0.29167\n83436|0.70833\n83437|0.48611\n83438|0.58333\n83439|0.55556\n83440|0.59722\n83441|0.54167\n83442|0.69444\n83443|0.69444\n83444|0.875\n83445|0.72222\n83446|0.66667\n83447|0.44444\n83448|0.58333\n83449|0.68056\n83450|0.77778\n83451|0.69444\n83452|0.86111\n83453|0.76389\n83454|0.83333\n83455|0.83333\n83456|0.83333\n83457|0.69444\n83458|0.76389\n83459|0.83333\n83460|0.76389\n83461|0.72222\n83462|0.51389\n83463|0.44444\n83464|0.36111\n83465|0.5\n83466|0.38889\n83467|0.70833\n83468|0.80556\n83469|0.56944\n83470|0.51389\n83471|0.44444\n83472|0.47222\n83473|0.48611\n83474|0.5\n83475|0.51389\n83476|0.5\n83477|0.55556\n83478|0.59722\n83479|0.61111\n83480|0.52778\n83481|0.56944\n83482|0.79167\n83483|0.65278\n83484|0.83333\n83485|0.68056\n83486|0.68056\n83487|0.68056\n83488|0.68056\n83489|0.59722\n83490|0.58333\n83491|0.44444\n83492|0.66667\n83493|0.625\n83494|0.59722\n83495|0.55556\n83496|0.55556\n83497|0.70833\n83498|0.66667\n83499|0.80556\n83500|0.5\n83501|0.5\n83502|0.52778\n83503|0.54167\n83504|0.5\n83505|0.5\n83506|0.51389\n83507|0.58333\n83508|0.56944\n83509|0.72222\n83510|0.43056\n83511|0.5\n83512|0.5\n83513|0.47222\n83514|0.77778\n83515|0.76389\n83516|0.59722\n83517|0.55556\n83518|0.5\n83519|0.5\n83520|0.52778\n83521|0.68056\n83522|0.125\n83523|0.79167\n83524|0.63889\n83525|0.80556\n83526|0.56944\n83527|0.5\n83528|0.54167\n83529|0.63889\n83530|0.38889\n83531|0.63889\n83532|0.73611\n83533|0.88889\n83534|0.72222\n83535|0.5\n83536|0.65278\n83537|0.69444\n83538|0.5\n83539|0.69444\n83540|0.77778\n83541|0.65278\n83542|0.84722\n83543|0.27778\n83544|0.55556\n83545|0.33333\n83546|0.5\n83547|0.5\n83548|0.40278\n83549|0.5\n83550|0.65278\n83551|0.5\n83552|0.55556\n83553|0.34722\n83554|0.5\n83555|0.51389\n83556|0.43056\n83557|0.94444\n83558|0.66667\n83559|0.59722\n83560|0.48611\n83561|0.55556\n83562|0.61111\n83563|0.27778\n83564|0.55556\n83565|0.5\n83566|0.5\n83567|0.5\n83568|0.44444\n83569|0.69444\n83570|0.5\n83571|0.5\n83572|0.58333\n83573|0.44444\n83574|0.66667\n83575|0.51389\n83576|0.65278\n83577|0.52778\n83578|0.61111\n83579|0.56944\n83580|0.5\n83581|0.40278\n83582|0.44444\n83583|0.61111\n83584|0.69444\n83585|0.47222\n83586|0.66667\n83587|0.61111\n83588|0.58333\n83589|0.44444\n83590|0.47222\n83591|0.41667\n83592|0.63889\n83593|0.51389\n83594|0.27778\n83595|0.5\n83596|0.625\n83597|0.38889\n83598|0.5\n83599|0.625\n83600|0.55556\n83601|0.40278\n83602|0.38889\n83603|0.55556\n83604|0.51389\n83605|0.65278\n83606|0.52778\n83607|0.40278\n83608|0.59722\n83609|0.63889\n83610|0.69444\n83611|0.93056\n83612|0.875\n83613|0.80556\n83614|0.66667\n83615|0.61111\n83616|0.70833\n83617|0.54167\n83618|0.72222\n83619|0.79167\n83620|0.77778\n83621|0.625\n83622|0.625\n83623|0.65278\n83624|0.76389\n83625|0.47222\n83626|0.66667\n83627|0.72222\n83628|0.5\n83629|0.79167\n83630|0.5\n83631|0.52778\n83632|0.44444\n83633|0.45833\n83634|0.38889\n83635|0.65278\n83636|0.5\n83637|0.58333\n83638|0.73611\n83639|0.56944\n83640|0.68056\n83641|0.80556\n83642|0.81944\n83643|0.68056\n83644|0.75\n83645|0.5\n83646|0.5\n83647|0.69444\n83648|0.51389\n83649|0.58333\n83650|0.81944\n83651|0.59722\n83652|0.73611\n83653|0.73611\n83654|0.5\n83655|0.86111\n83656|0.625\n83657|0.45833\n83658|0.69444\n83659|0.61111\n83660|0.5\n83661|0.79167\n83662|0.72222\n83663|0.5\n83664|0.5\n83665|0.72222\n83666|0.5\n83667|0.88889\n83668|0.54167\n83669|0.77778\n83670|0.63889\n83671|0.75\n83672|0.48611\n83673|0.51389\n83674|0.41667\n83675|0.5\n83676|0.45833\n83677|0.54167\n83678|0.29167\n83679|0.375\n83680|0.22222\n83681|0.16667\n83682|0.20833\n83683|0.055556\n83684|0.5\n83685|0.43056\n83686|0.83333\n83687|0.79167\n83688|0.45833\n83689|0.68056\n83690|0.56944\n83691|0.44444\n83692|0.44444\n83693|0.625\n83694|0.5\n83695|0.58333\n83696|0.65278\n83697|0.66667\n83698|0.5\n83699|0.5\n83700|0.88889\n83701|0.77778\n83702|0.80556\n83703|0.5\n83704|0.5\n83705|0.86111\n83706|0.69444\n83707|0.77778\n83708|0.55556\n83709|0.83333\n83710|0.65278\n83711|0.5\n83712|0.55556\n83713|0.52778\n83714|1\n83715|0.95833\n83716|0.69444\n83717|0.70833\n83718|0.54167\n83719|0.70833\n83720|0.45833\n83721|0.5\n83722|0.5\n83723|0.72222\n83724|0.5\n83725|0.40278\n83726|0.72222\n83727|0.86111\n83728|0.55556\n83729|0.48611\n83730|0.66667\n83731|0.5\n83732|0.5\n83733|0.77778\n83734|0.68056\n83735|0.55556\n83736|0.73611\n83737|0.83333\n83738|0.65278\n83739|0.61111\n83740|0.69444\n83741|0.80556\n83742|0.81944\n83743|0.56944\n83744|0.77778\n83745|0.76389\n83746|0.875\n83747|0.73611\n83748|0.61111\n83749|0.58333\n83750|0.40278\n83751|0.65278\n83752|0.80556\n83753|0.66667\n83754|0.72222\n83755|0.5\n83756|0.76389\n83757|0.69444\n83758|0.61111\n83759|0.83333\n83760|0.70833\n83761|0.65278\n83762|0.54167\n83763|0.70833\n83764|0.5\n83765|0.51389\n83766|0.56944\n83767|0.80556\n83768|0.83333\n83769|0.72222\n83770|0.63889\n83771|0.86111\n83772|0.72222\n83773|0.70833\n83774|0.80556\n83775|0.83333\n83776|0.83333\n83777|0.83333\n83778|0.44444\n83779|0.59722\n83780|0.72222\n83781|0.68056\n83782|0.76389\n83783|0.66667\n83784|0.83333\n83785|0.86111\n83786|0.79167\n83787|0.51389\n83788|0.61111\n83789|0.83333\n83790|0.76389\n83791|0.86111\n83792|0.76389\n83793|0.84722\n83794|0.94444\n83795|0.61111\n83796|0.83333\n83797|0.84722\n83798|0.56944\n83799|0.72222\n83800|0.68056\n83801|0.79167\n83802|0.77778\n83803|0.75\n83804|0.93056\n83805|0.88889\n83806|0.25\n83807|0.73611\n83808|0.73611\n83809|0.51389\n83810|0.59722\n83811|0.18056\n83812|0.65278\n83813|0.81944\n83814|0.93056\n83815|0.80556\n83816|0.59722\n83817|0.66667\n83818|0.40278\n83819|0.73611\n83820|0.59722\n83821|0.84722\n83822|0.76389\n83823|0.58333\n83824|0.61111\n83825|0.58333\n83826|0.70833\n83827|0.65278\n83828|0.81944\n83829|0.55556\n83830|0.59722\n83831|0.54167\n83832|0.5\n83833|0.69444\n83834|0.88889\n83835|0.54167\n83836|0.59722\n83837|0.875\n83838|0.81944\n83839|0.80556\n83840|0.70833\n83841|0.63889\n83842|0.63889\n83843|0.65278\n83844|0.79167\n83845|0.5\n83846|0.52778\n83847|0.76389\n83848|0.66667\n83849|0.625\n83850|0.86111\n83851|0.77778\n83852|0.81944\n83853|0.83333\n83854|0.76389\n83855|0.91667\n83856|0.70833\n83857|0.68056\n83858|0.77778\n83859|0.5\n83860|0.56944\n83861|0.80556\n83862|0.79167\n83863|0.79167\n83864|0.47222\n83865|0.70833\n83866|0.69444\n83867|0.56944\n83868|0.75\n83869|0.58333\n83870|0.59722\n83871|0.79167\n83872|0.81944\n83873|0.54167\n83874|0.44444\n83875|0.76389\n83876|0.75\n83877|0.5\n83878|0.81944\n83879|0.72222\n83880|0.61111\n83881|0.625\n83882|0.84722\n83883|0.66667\n83884|0.70833\n83885|0.63889\n83886|0.58333\n83887|0.875\n83888|0.79167\n83889|0.56944\n83890|0.75\n83891|0.72222\n83892|0.65278\n83893|0.54167\n83894|0.83333\n83895|0.75\n83896|0.79167\n83897|0.73611\n83898|0.88889\n83899|0.90278\n83900|0.90278\n83901|0.90278\n83902|0.90278\n83903|0.70833\n83904|0.77778\n83905|1\n83906|0.81944\n83907|0.86111\n83908|0.80556\n83909|0.79167\n83910|0.51389\n83911|0.625\n83912|0.84722\n83913|0.75\n83914|0.79167\n83915|0.84722\n83916|0.875\n83917|0.91667\n83918|0.81944\n83919|0.70833\n83920|0.61111\n83921|0.94444\n83922|0.95833\n83923|0.77778\n83924|0.77778\n83925|0.65278\n83926|0.68056\n83927|0.72222\n83928|0.79167\n83929|0.83333\n83930|0.77778\n83931|0.73611\n83932|0.73611\n83933|0.79167\n83934|0.875\n83935|0.66667\n83936|0.75\n83937|0.79167\n83938|0.79167\n83939|0.66667\n83940|0.68056\n83941|0.5\n83942|0.56944\n83943|0.625\n83944|0.52778\n83945|0.69444\n83946|0.61111\n83947|0.65278\n83948|0.68056\n83949|0.83333\n83950|0.51389\n83951|0.52778\n83952|0.69444\n83953|0.80556\n83954|0.76389\n83955|0.72222\n83956|0.875\n83957|0.73611\n83958|0.63889\n83959|0.38889\n83960|0.26389\n83961|0.27778\n83962|0.70833\n83963|0.88889\n83964|0.55556\n83965|0.77778\n83966|0.59722\n83967|0.76389\n83968|0.86111\n83969|0.66667\n83970|0.36111\n83971|0.77778\n83972|0.66667\n83973|0.66667\n83974|0.72222\n83975|0.81944\n83976|0.69444\n83977|0.61111\n83978|0.26389\n83979|0.72222\n83980|0.84722\n83981|0.65278\n83982|0.54167\n83983|0.80556\n83984|0.51389\n83985|0.77778\n83986|0.65278\n83987|0.77778\n83988|0.63889\n83989|0.625\n83990|0.81944\n83991|0.66667\n83992|0.76389\n83993|0.61111\n83994|0.73611\n83995|0.66667\n83996|0.76389\n83997|0.77778\n83998|0.90278\n83999|0.91667\n84000|0.875\n84001|0.76389\n84002|0.65278\n84003|0.75\n84004|0.79167\n84005|0.76389\n84006|0.79167\n84007|0.76389\n84008|0.68056\n84009|0.75\n84010|0.83333\n84011|0.79167\n84012|0.75\n84013|0.77778\n84014|0.80556\n84015|0.63889\n84016|0.66667\n84017|0.73611\n84018|0.75\n84019|0.77778\n84020|0.68056\n84021|0.70833\n84022|0.63889\n84023|0.59722\n84024|0.5\n84025|0.77778\n84026|0.58333\n84027|0.52778\n84028|0.72222\n84029|0.58333\n84030|0.70833\n84031|0.56944\n84032|0.65278\n84033|0.5\n84034|0.625\n84035|0.25\n84036|0.23611\n84037|0.44444\n84038|0.5\n84039|0.77778\n84040|0.77778\n84041|0.48611\n84042|0.68056\n84043|0.54167\n84044|0.54167\n84045|0.66667\n84046|0.55556\n84047|0.79167\n84048|0.58333\n84049|0.70833\n84050|0.5\n84051|0.68056\n84052|0.65278\n84053|0.66667\n84054|0.84722\n84055|0.43056\n84056|0.59722\n84057|0.80556\n84058|0.73611\n84059|0.72222\n84060|0.88889\n84061|0.79167\n84062|0.88889\n84063|0.40278\n84064|0.45833\n84065|0.81944\n84066|0.83333\n84067|0.86111\n84068|0.61111\n84069|0.5\n84070|0.76389\n84071|0.68056\n84072|0.75\n84073|0.5\n84074|0.86111\n84075|0.79167\n84076|0.76389\n84077|0.73611\n84078|0.79167\n84079|0.875\n84080|0.77778\n84081|0.80556\n84082|0.69444\n84083|0.84722\n84084|0.79167\n84085|0.86111\n84086|0.88889\n84087|0.33333\n84088|0.66667\n84089|0.86111\n84090|0.47222\n84091|0.45833\n84092|0.80556\n84093|0.68056\n84094|0.86111\n84095|0.79167\n84096|0.875\n84097|0.875\n84098|0.77778\n84099|0.79167\n84100|0.90278\n84101|0.75\n84102|0.69444\n84103|0.48611\n84104|0.69444\n84105|0.56944\n84106|0.55556\n84107|0.61111\n84108|0.83333\n84109|0.77778\n84110|0.59722\n84111|0.69444\n84112|0.76389\n84113|0.41667\n84114|0.61111\n84115|0.56944\n84116|0.55556\n84117|0.48611\n84118|0.79167\n84119|0.63889\n84120|0.375\n84121|0.30556\n84122|0.44444\n84123|0.875\n84124|0.80556\n84125|0.59722\n84126|0.58333\n84127|0.83333\n84128|0.77778\n84129|0.5\n84130|0.55556\n84131|0.70833\n84132|0.625\n84133|0.75\n84134|0.81944\n84135|0.83333\n84136|0.54167\n84137|0.44444\n84138|0.66667\n84139|0.77778\n84140|0.41667\n84141|0.83333\n84142|0.66667\n84143|0.55556\n84144|0.51389\n84145|0.5\n84146|0.77778\n84147|0.52778\n84148|0.83333\n84149|0.63889\n84150|0.81944\n84151|0.5\n84152|0.54167\n84153|0.625\n84154|0.51389\n84155|0.69444\n84156|0.79167\n84157|0.69444\n84158|0.73611\n84159|0.65278\n84160|0.875\n84161|0.88889\n84162|0.55556\n84163|0.86111\n84164|0.80556\n84165|0.48611\n84166|0.70833\n84167|0.81944\n84168|0.5\n84169|0.61111\n84170|0.55556\n84171|0.44444\n84172|0.625\n84173|0.83333\n84174|0.84722\n84175|0.95833\n84176|0.59722\n84177|0.58333\n84178|0.68056\n84179|0.76389\n84180|0.63889\n84181|0.84722\n84182|0.56944\n84183|0.63889\n84184|0.88889\n84185|0.80556\n84186|0.93056\n84187|0.80556\n84188|0.81944\n84189|0.79167\n84190|0.76389\n84191|0.73611\n84192|0.80556\n84193|0.73611\n84194|0.72222\n84195|0.79167\n84196|0.56944\n84197|0.61111\n84198|0.76389\n84199|0.41667\n84200|0.43056\n84201|0.80556\n84202|0.79167\n84203|0.86111\n84204|0.69444\n84205|0.80556\n84206|0.79167\n84207|0.51389\n84208|0.19444\n84209|0.70833\n84210|0.59722\n84211|0.5\n84212|0.5\n84213|0.5\n84214|0.45833\n84215|0.73611\n84216|0.72222\n84217|0.91667\n84218|0.69444\n84219|0.81944\n84220|0.73611\n84221|0.80556\n84222|0.875\n84223|0.77778\n84224|0.70833\n84225|0.80556\n84226|0.73611\n84227|0.80556\n84228|0.73611\n84229|0.81944\n84230|0.70833\n84231|0.80556\n84232|0.69444\n84233|0.81944\n84234|0.81944\n84235|0.73611\n84236|0.51389\n84237|0.77778\n84238|0.63889\n84239|0.80556\n84240|0.69444\n84241|0.55556\n84242|0.5\n84243|0.68056\n84244|0.65278\n84245|0.625\n84246|0.77778\n84247|0.88889\n84248|0.73611\n84249|0.5\n84250|0.5\n84251|0.70833\n84252|0.80556\n84253|0.70833\n84254|0.625\n84255|0.625\n84256|0.61111\n84257|0.44444\n84258|0.66667\n84259|0.83333\n84260|0.79167\n84261|0.55556\n84262|0.72222\n84263|0.80556\n84264|0.84722\n84265|0.86111\n84266|0.66667\n84267|0.83333\n84268|0.59722\n84269|0.5\n84270|0.81944\n84271|0.69444\n84272|0.41667\n84273|0.84722\n84274|0.77778\n84275|0.29167\n84276|0.54167\n84277|0.66667\n84278|0.65278\n84279|0.81944\n84280|0.80556\n84281|0.875\n84282|0.86111\n84283|0.86111\n84284|0.72222\n84285|0.61111\n84286|0.125\n84287|0.23611\n84288|0.98611\n84289|0.88889\n84290|0.83333\n84291|0.52778\n84292|0.77778\n84293|0.90278\n84294|0\n84295|0.80556\n84296|0.63889\n84297|0.81944\n84298|0.68056\n84299|0.84722\n84300|0.73611\n84301|0.83333\n84302|0.81944\n84303|0.5\n84304|0.625\n84305|0.80556\n84306|0.61111\n84307|0.51389\n84308|0.5\n84309|0.45833\n84310|0.66667\n84311|0.69444\n84312|0.5\n84313|0.45833\n84314|0.63889\n84315|0.25\n84316|0.83333\n84317|0.77778\n84318|0.69444\n84319|0.61111\n84320|0.29167\n84321|0.72222\n84322|0.81944\n84323|0.83333\n84324|0.81944\n84325|0.73611\n84326|0.79167\n84327|0.63889\n84328|0.55556\n84329|0.63889\n84330|0.72222\n84331|0.75\n84332|0.77778\n84333|0.72222\n84334|0.88889\n84335|0.72222\n84336|0.41667\n84337|0.69444\n84338|0.43056\n84339|0.77778\n84340|0.56944\n84341|0.43056\n84342|0.79167\n84343|0.86111\n84344|0.5\n84345|0.79167\n84346|0.77778\n84347|0.51389\n84348|0.36111\n84349|0.55556\n84350|0.69444\n84351|0.41667\n84352|0.58333\n84353|0.41667\n84354|0.375\n84355|0.36111\n84356|0.36111\n84357|0.38889\n84358|0.48611\n84359|0.41667\n84360|0.66667\n84361|0.625\n84362|0.44444\n84363|0.73611\n84364|0.75\n84365|0.56944\n84366|0.5\n84367|0.77778\n84368|0.83333\n84369|0.70833\n84370|0.55556\n84371|0.56944\n84372|0.69444\n84373|0.72222\n84374|0.875\n84375|0.79167\n84376|0.41667\n84377|0.79167\n84378|0.77778\n84379|0.72222\n84380|0.88889\n84381|0.81944\n84382|0.55556\n84383|0.72222\n84384|0.83333\n84385|0.58333\n84386|0.5\n84387|0.61111\n84388|0.47222\n84389|0.36111\n84390|0.68056\n84391|0.76389\n84392|0.5\n84393|0.36111\n84394|0.68056\n84395|0.70833\n84396|0.69444\n84397|0.69444\n84398|0.73611\n84399|0.81944\n84400|0.63889\n84401|0.68056\n84402|0.55556\n84403|0.52778\n84404|0.58333\n84405|0.59722\n84406|0.72222\n84407|0.65278\n84408|0.56944\n84409|0.54167\n84410|0.58333\n84411|0.68056\n84412|0.68056\n84413|0.5\n84414|0.5\n84415|0.38889\n84416|0.51389\n84417|0.34722\n84418|0.51389\n84419|0.66667\n84420|0.54167\n84421|0.68056\n84422|0.40278\n84423|0.73611\n84424|0.625\n84425|0.33333\n84426|0.36111\n84427|0.20833\n84428|0.36111\n84429|0.20833\n84430|0.56944\n84431|0.5\n84432|0.41667\n84433|0.83333\n84434|0.5\n84435|0.56944\n84436|0.38889\n84437|0.51389\n84438|0.45833\n84439|0.27778\n84440|0.52778\n84441|0.30556\n84442|0.73611\n84443|0.63889\n84444|0.44444\n84445|0.26389\n84446|0.5\n84447|0.375\n84448|0.68056\n84449|0.80556\n84450|0.70833\n84451|0.19444\n84452|0.19444\n84453|0.625\n84454|0.61111\n84455|0.52778\n84456|0.68056\n84457|0.65278\n84458|0.55556\n84459|0.51389\n84460|0.625\n84461|0.875\n84462|0.41667\n84463|0.58333\n84464|0.68056\n84465|0.83333\n84466|0.22222\n84467|0.43056\n84468|0.375\n84469|0.59722\n84470|0.55556\n84471|0.65278\n84472|0.76389\n84473|0.23611\n84474|0.54167\n84475|0.55556\n84476|0.70833\n84477|0.68056\n84478|0.43056\n84479|0.43056\n84480|0.33333\n84481|0.54167\n84482|0.5\n84483|0.36111\n84484|0.59722\n84485|0.25\n84486|0.70833\n84487|0.68056\n84488|0.5\n84489|0.81944\n84490|0.38889\n84491|0.47222\n84492|0.55556\n84493|0.63889\n84494|0.77778\n84495|0.68056\n84496|0.95833\n84497|0.98611\n84498|0.55556\n84499|0.625\n84500|0.61111\n84501|0.54167\n84502|0.81944\n84503|0.5\n84504|0.72222\n84505|0.76389\n84506|0.79167\n84507|0.83333\n84508|0.93056\n84509|0.90278\n84510|0.88889\n84511|0.84722\n84512|0.84722\n84513|0.94444\n84514|0.98611\n84515|0.73611\n84516|0.51389\n84517|0.38889\n84518|0.5\n84519|0.51389\n84520|0.51389\n84521|0.45833\n84522|0.79167\n84523|0.5\n84524|0.52778\n84525|0.66667\n84526|0.61111\n84527|0.61111\n84528|0.52778\n84529|0.55556\n84530|0.58333\n84531|0.63889\n84532|0.58333\n84533|0.76389\n84534|0.75\n84535|0.5\n84536|0.55556\n84537|0.55556\n84538|0.72222\n84539|0.65278\n84540|0.58333\n84541|0.66667\n84542|0.79167\n84543|0.77778\n84544|0.76389\n84545|0.79167\n84546|0.625\n84547|0.58333\n84548|0.5\n84549|0.75\n84550|0.5\n84551|0.77778\n84552|0.80556\n84553|0.70833\n84554|0.75\n84555|0.5\n84556|0.83333\n84557|0.95833\n84558|0.86111\n84559|0.83333\n84560|0.59722\n84561|0.69444\n84562|0.47222\n84563|0.55556\n84564|0.5\n84565|0.79167\n84566|0.65278\n84567|0.56944\n84568|0.65278\n84569|0.66667\n84570|0.43056\n84571|0.70833\n84572|0.61111\n84573|0.70833\n84574|0.77778\n84575|0.69444\n84576|0.75\n84577|0.79167\n84578|0.94444\n84579|0.58333\n84580|0.69444\n84581|0.72222\n84582|0.375\n84583|0.34722\n84584|0.375\n84585|0.43056\n84586|0.54167\n84587|0.61111\n84588|0.52778\n84589|0.23611\n84590|0.48611\n84591|0.51389\n84592|0.5\n84593|0.76389\n84594|0.70833\n84595|0.5\n84596|0.41667\n84597|0.54167\n84598|0.34722\n84599|0.375\n84600|0.38889\n84601|0.58333\n84602|0.75\n84603|0.63889\n84604|0.59722\n84605|0.70833\n84606|0.66667\n84607|0.91667\n84608|1\n84609|0.66667\n84610|0.77778\n84611|0.77778\n84612|0.76389\n84613|0.58333\n84614|0.81944\n84615|0.84722\n84616|0.70833\n84617|0.65278\n84618|0.72222\n84619|0.58333\n84620|0.70833\n84621|0.83333\n84622|0.68056\n84623|0.68056\n84624|0.56944\n84625|0.36111\n84626|0.125\n84627|0.75\n84628|0.88889\n84629|0.70833\n84630|0.54167\n84631|0.77778\n84632|0.38889\n84633|0.73611\n84634|0.875\n84635|0.72222\n84636|0.81944\n84637|0.66667\n84638|0.61111\n84639|0.5\n84640|0.56944\n84641|0.58333\n84642|0.72222\n84643|0.61111\n84644|0.5\n84645|0.54167\n84646|0.61111\n84647|0.72222\n84648|0.68056\n84649|0.63889\n84650|0.75\n84651|0.54167\n84652|0.70833\n84653|0.75\n84654|0.65278\n84655|0.72222\n84656|0.68056\n84657|0.76389\n84658|0.51389\n84659|0.63889\n84660|0.51389\n84661|0.5\n84662|0.73611\n84663|0.75\n84664|0.68056\n84665|0.76389\n84666|0.81944\n84667|0.94444\n84668|0.93056\n84669|0.68056\n84670|0.72222\n84671|0.75\n84672|0.79167\n84673|0.875\n84674|0.69444\n84675|0.83333\n84676|0.91667\n84677|0.55556\n84678|0.55556\n84679|0.80556\n84680|0.69444\n84681|0.77778\n84682|0.81944\n84683|0.86111\n84684|0.84722\n84685|0.75\n84686|0.69444\n84687|0.88889\n84688|0.875\n84689|0.72222\n84690|0.88889\n84691|0.84722\n84692|0.5\n84693|0.73611\n84694|0.77778\n84695|0.70833\n84696|0.73611\n84697|0.58333\n84698|0.72222\n84699|0.47222\n84700|0.45833\n84701|0.48611\n84702|0.75\n84703|0.30556\n84704|0.59722\n84705|0.76389\n84706|0.76389\n84707|0.86111\n84708|0.88889\n84709|0.83333\n84710|0.75\n84711|0.75\n84712|0.43056\n84713|0.44444\n84714|0.26389\n84715|0.38889\n84716|0.47222\n84717|0.41667\n84718|0.40278\n84719|0.80556\n84720|0.80556\n84721|0.51389\n84722|0.55556\n84723|0.86111\n84724|0.625\n84725|0.55556\n84726|0.72222\n84727|0.63889\n84728|0.66667\n84729|0.79167\n84730|0.70833\n84731|0.58333\n84732|0.83333\n84733|0.90278\n84734|0.81944\n84735|0.79167\n84736|0.80556\n84737|0.73611\n84738|0.73611\n84739|0.52778\n84740|0.61111\n84741|0.54167\n84742|0.68056\n84743|0.77778\n84744|0.61111\n84745|0.56944\n84746|0.83333\n84747|0.84722\n84748|0.33333\n84749|0.72222\n84750|0.38889\n84751|0.80556\n84752|0.77778\n84753|0.83333\n84754|0.47222\n84755|0.75\n84756|0.90278\n84757|0.83333\n84758|0.58333\n84759|0.5\n84760|0.73611\n84761|0.66667\n84762|0.61111\n84763|0.61111\n84764|0.68056\n84765|0.79167\n84766|0.79167\n84767|0.5\n84768|0.23611\n84769|0.83333\n84770|0.63889\n84771|0.56944\n84772|0.625\n84773|0.5\n84774|0.5\n84775|0.5\n84776|0.68056\n84777|0.41667\n84778|0.33333\n84779|0.36111\n84780|0.30556\n84781|0.027778\n84782|0.52778\n84783|0.66667\n84784|0.61111\n84785|0.76389\n84786|0.80556\n84787|0.65278\n84788|0.70833\n84789|0.76389\n84790|0.58333\n84791|0.61111\n84792|0.69444\n84793|0.77778\n84794|0.5\n84795|0.5\n84796|1\n84797|0.91667\n84798|0.68056\n84799|0.63889\n84800|0.83333\n84801|0.84722\n84802|0.5\n84803|0.5\n84804|0.45833\n84805|0.63889\n84806|0.625\n84807|0.61111\n84808|0.76389\n84809|0.63889\n84810|0.94444\n84811|0.83333\n84812|0.79167\n84813|0.69444\n84814|0.77778\n84815|0.77778\n84816|0.76389\n84817|0.63889\n84818|0.5\n84819|0.79167\n84820|0.61111\n84821|0.5\n84822|0.5\n84823|0.70833\n84824|0.66667\n84825|0.88889\n84826|0.86111\n84827|0.75\n84828|0.91667\n84829|0.61111\n84830|0.65278\n84831|0.72222\n84832|0.81944\n84833|0.61111\n84834|0.56944\n84835|0.79167\n84836|0.65278\n84837|0.5\n84838|0.55556\n84839|0.61111\n84840|0.44444\n84841|0.5\n84842|0.5\n84843|0.72222\n84844|0.79167\n84845|0.65278\n84846|0.65278\n84847|0.38889\n84848|0.54167\n84849|0.80556\n84850|0.83333\n84851|0.59722\n84852|0.625\n84853|0.70833\n84854|0.80556\n84855|0.31944\n84856|0.66667\n84857|0.61111\n84858|0.86111\n84859|0.54167\n84860|0.58333\n84861|0.80556\n84862|0.90278\n84863|0.75\n84864|0.61111\n84865|0.95833\n84866|0.80556\n84867|0.27778\n84868|0.75\n84869|0.95833\n84870|0.44444\n84871|0.79167\n84872|0.34722\n84873|0.63889\n84874|0.63889\n84875|0.75\n84876|0.70833\n84877|0.25\n84878|0.61111\n84879|0.875\n84880|0.45833\n84881|0.27778\n84882|0.73611\n84883|0.65278\n84884|0.5\n84885|0.83333\n84886|0.5\n84887|0.80556\n84888|0.68056\n84889|0.45833\n84890|0.33333\n84891|0.375\n84892|0.56944\n84893|0.5\n84894|0.70833\n84895|0.81944\n84896|0.625\n84897|0.59722\n84898|0.79167\n84899|0.36111\n84900|0.43056\n84901|0.58333\n84902|0.625\n84903|0.63889\n84904|0.81944\n84905|0.34722\n84906|0.86111\n84907|0.48611\n84908|0.27778\n84909|0.93056\n84910|0.68056\n84911|0.43056\n84912|0.34722\n84913|0.68056\n84914|0.61111\n84915|0.69444\n84916|0.61111\n84917|0.54167\n84918|0.72222\n84919|0.77778\n84920|0.36111\n84921|0.54167\n84922|0.36111\n84923|0.44444\n84924|0.61111\n84925|0.375\n84926|0.375\n84927|0.75\n84928|0.45833\n84929|0.23611\n84930|0.44444\n84931|0.5\n84932|0.72222\n84933|0.70833\n84934|0.59722\n84935|0.61111\n84936|0.56944\n84937|0.66667\n84938|0.81944\n84939|0.72222\n84940|0.81944\n84941|0.86111\n84942|0.59722\n84943|0.77778\n84944|0.98611\n84945|0.875\n84946|0.55556\n84947|0.79167\n84948|0.79167\n84949|0.44444\n84950|0.61111\n84951|0.5\n84952|0.52778\n84953|0.80556\n84954|0.66667\n84955|0.48611\n84956|0.16667\n84957|0.68056\n84958|0.75\n84959|0.5\n84960|0.55556\n84961|0.61111\n84962|0.19444\n84963|0.79167\n84964|0.73611\n84965|0.33333\n84966|0.51389\n84967|0.83333\n84968|0.63889\n84969|0.61111\n84970|0.5\n84971|0.58333\n84972|0.83333\n84973|0.76389\n84974|0.76389\n84975|0.55556\n84976|0.70833\n84977|0.91667\n84978|0.83333\n84979|0.5\n84980|0.68056\n84981|0.40278\n84982|0.77778\n84983|0.33333\n84984|0.5\n84985|0.72222\n84986|0.54167\n84987|0.29167\n84988|0.84722\n84989|0.38889\n84990|0.77778\n84991|0.66667\n84992|0.625\n84993|0.54167\n84994|0.75\n84995|0.69444\n84996|0.88889\n84997|0.72222\n84998|0.72222\n84999|0.76389\n85000|0.79167\n85001|0.44444\n85002|0.33333\n85003|0.72222\n85004|0.61111\n85005|0.61111\n85006|0.69444\n85007|0.73611\n85008|0.5\n85009|0.41667\n85010|0.72222\n85011|0.66667\n85012|0.36111\n85013|0.625\n85014|0.59722\n85015|0.61111\n85016|0.61111\n85017|0.44444\n85018|0.30556\n85019|0.47222\n85020|0.38889\n85021|0.16667\n85022|0.69444\n85023|0.79167\n85024|0.52778\n85025|0.73611\n85026|0.66667\n85027|0.73611\n85028|0.56944\n85029|0.58333\n85030|0.40278\n85031|0.76389\n85032|0.36111\n85033|0.58333\n85034|0.73611\n85035|0.73611\n85036|0.68056\n85037|0.80556\n85038|0.34722\n85039|0.65278\n85040|0.59722\n85041|0.72222\n85042|0.93056\n85043|0.33333\n85044|0.75\n85045|0.69444\n85046|0.56944\n85047|0.45833\n85048|0.70833\n85049|0.70833\n85050|0.73611\n85051|0.68056\n85052|0.79167\n85053|0.91667\n85054|0.79167\n85055|0.76389\n85056|0.70833\n85057|0.66667\n85058|0.58333\n85059|0.54167\n85060|0.93056\n85061|0.30556\n85062|0.33333\n85063|0.44444\n85064|0.80556\n85065|0.5\n85066|0.63889\n85067|0.61111\n85068|0.36111\n85069|0.68056\n85070|0.27778\n85071|0.52778\n85072|0.27778\n85073|0.61111\n85074|0.29167\n85075|0.56944\n85076|0.77778\n85077|0.63889\n85078|0.84722\n85079|0.22222\n85080|0.23611\n85081|0.31944\n85082|0.19444\n85083|0.58333\n85084|0.47222\n85085|0.5\n85086|0.44444\n85087|0.59722\n85088|0.63889\n85089|0.36111\n85090|0.75\n85091|0.86111\n85092|0.83333\n85093|0.73611\n85094|0.80556\n85095|0.875\n85096|0.5\n85097|0.47222\n85098|0.5\n85099|0.27778\n85100|0.18056\n85101|0.66667\n85102|0.72222\n85103|0.83333\n85104|0.80556\n85105|0.625\n85106|0.75\n85107|0.36111\n85108|0.48611\n85109|0.81944\n85110|0.41667\n85111|0.65278\n85112|0.79167\n85113|0.875\n85114|0.51389\n85115|0.61111\n85116|0.29167\n85117|0.93056\n85118|0.68056\n85119|0.80556\n85120|0.68056\n85121|0.83333\n85122|0.43056\n85123|0.55556\n85124|0.44444\n85125|0.84722\n85126|0.75\n85127|0.55556\n85128|0.54167\n85129|0.44444\n85130|0.63889\n85131|0.54167\n85132|0.65278\n85133|0.72222\n85134|0.68056\n85135|0.44444\n85136|0.69444\n85137|0.75\n85138|0.40278\n85139|0.77778\n85140|0.875\n85141|0.55556\n85142|0.61111\n85143|0.51389\n85144|0.30556\n85145|0.5\n85146|0.69444\n85147|0.43056\n85148|0.5\n85149|0.51389\n85150|0.41667\n85151|0.72222\n85152|0.51389\n85153|0.83333\n85154|0.65278\n85155|0.47222\n85156|0.48611\n85157|0.5\n85158|0.66667\n85159|0.5\n85160|0.75\n85161|0.70833\n85162|0.70833\n85163|0.80556\n85164|0.51389\n85165|0.81944\n85166|0.56944\n85167|0.65278\n85168|0.5\n85169|0.75\n85170|0.56944\n85171|0.56944\n85172|0.52778\n85173|0.5\n85174|0.65278\n85175|0.55556\n85176|0.38889\n85177|0.5\n85178|0.5\n85179|0.5\n85180|0.5\n85181|0.5\n85182|0.375\n85183|0.69444\n85184|0.44444\n85185|0.76389\n85186|0.55556\n85187|0.38889\n85188|0.22222\n85189|0.70833\n85190|0.51389\n85191|0.83333\n85192|0.66667\n85193|0.5\n85194|0.70833\n85195|0.66667\n85196|0.61111\n85197|0.48611\n85198|0.625\n85199|0.44444\n85200|0.44444\n85201|0.75\n85202|0.70833\n85203|0.5\n85204|0.55556\n85205|0.5\n85206|0.73611\n85207|0.5\n85208|0.5\n85209|0.70833\n85210|0.63889\n85211|0.70833\n85212|0.47222\n85213|0.66667\n85214|0.52778\n85215|0.73611\n85216|0.70833\n85217|0.55556\n85218|0.66667\n85219|0.65278\n85220|0.5\n85221|0.625\n85222|0.51389\n85223|0.55556\n85224|0.5\n85225|0.55556\n85226|0.43056\n85227|0.55556\n85228|0.625\n85229|0.52778\n85230|0.52778\n85231|0.66667\n85232|0.44444\n85233|0.59722\n85234|0.68056\n85235|0.58333\n85236|0.66667\n85237|0.58333\n85238|0.47222\n85239|0.54167\n85240|0.88889\n85241|0.875\n85242|0.76389\n85243|0.84722\n85244|1\n85245|0.80556\n85246|0.91667\n85247|0.84722\n85248|0.88889\n85249|0.93056\n85250|0.52778\n85251|0.58333\n85252|0.40278\n85253|0.5\n85254|0.5\n85255|0.72222\n85256|0.56944\n85257|0.5\n85258|0.5\n85259|0.51389\n85260|0.63889\n85261|0.59722\n85262|0.5\n85263|0.44444\n85264|0.27778\n85265|0.55556\n85266|0.625\n85267|0.5\n85268|0.5\n85269|0.44444\n85270|0.65278\n85271|0.5\n85272|0.81944\n85273|0.81944\n85274|0.77778\n85275|0.5\n85276|0.51389\n85277|0.40278\n85278|0.83333\n85279|0.48611\n85280|0.58333\n85281|0.44444\n85282|0.55556\n85283|0.44444\n85284|0.77778\n85285|0.56944\n85286|0.59722\n85287|0.61111\n85288|0.5\n85289|0.61111\n85290|0.63889\n85291|0.70833\n85292|0.88889\n85293|0.63889\n85294|0.61111\n85295|0.75\n85296|0.59722\n85297|0.77778\n85298|0.44444\n85299|0.47222\n85300|0.48611\n85301|0.38889\n85302|0.33333\n85303|0.61111\n85304|0.72222\n85305|0.33333\n85306|0.61111\n85307|0.81944\n85308|0.5\n85309|0.54167\n85310|0.5\n85311|0.40278\n85312|0.75\n85313|0.72222\n85314|0.61111\n85315|0.5\n85316|0.5\n85317|0.81944\n85318|0.5\n85319|0.625\n85320|0.44444\n85321|0.5\n85322|0.38889\n85323|0.59722\n85324|0.69444\n85325|0.33333\n85326|0.63889\n85327|0.5\n85328|0.56944\n85329|0.375\n85330|0.38889\n85331|0.51389\n85332|0.58333\n85333|0.68056\n85334|0.41667\n85335|0.48611\n85336|0.45833\n85337|0.58333\n85338|0.55556\n85339|0.63889\n85340|0.73611\n85341|0.63889\n85342|0.44444\n85343|0.44444\n85344|0.58333\n85345|0.25\n85346|0.44444\n85347|0.72222\n85348|0.51389\n85349|0.63889\n85350|0.45833\n85351|0.61111\n85352|0.61111\n85353|0.56944\n85354|0.55556\n85355|0.875\n85356|0.5\n85357|0.5\n85358|0.5\n85359|0.66667\n85360|0.75\n85361|0.38889\n85362|0.41667\n85363|0.52778\n85364|0.73611\n85365|0.375\n85366|0.52778\n85367|0.59722\n85368|0.33333\n85369|0.80556\n85370|0.5\n85371|0.23611\n85372|0.5\n85373|0.55556\n85374|0.625\n85375|0.61111\n85376|0.68056\n85377|0.58333\n85378|0.27778\n85379|0.51389\n85380|0.38889\n85381|0.68056\n85382|0.66667\n85383|0.55556\n85384|0.52778\n85385|0.63889\n85386|0.47222\n85387|0.625\n85388|0.58333\n85389|0.58333\n85390|0.45833\n85391|0.19444\n85392|0.5\n85393|0.54167\n85394|0.61111\n85395|0.5\n85396|0.55556\n85397|0.61111\n85398|0.68056\n85399|0.56944\n85400|0.5\n85401|0.5\n85402|0.61111\n85403|0.375\n85404|0.5\n85405|0.5\n85406|0.52778\n85407|0.63889\n85408|0.55556\n85409|0.45833\n85410|0.44444\n85411|0.70833\n85412|0.30556\n85413|0.23611\n85414|0.44444\n85415|0.55556\n85416|0.66667\n85417|0.61111\n85418|0.81944\n85419|0.5\n85420|0.58333\n85421|0.36111\n85422|0.52778\n85423|0.73611\n85424|0.83333\n85425|0.94444\n85426|0.45833\n85427|0.52778\n85428|0.48611\n85429|0.5\n85430|0.54167\n85431|0.77778\n85432|0.625\n85433|0.83333\n85434|0.5\n85435|0.875\n85436|0.48611\n85437|0.38889\n85438|0.5\n85439|0.63889\n85440|0.59722\n85441|0.5\n85442|0.51389\n85443|0.5\n85444|0.52083\n85445|0.58333\n85446|0.58333\n85447|0.58333\n85448|0.45833\n85449|0.77778\n85450|0.70833\n85451|0.52778\n85452|0.76389\n85453|0.65278\n85454|0.79167\n85455|0.33333\n85456|0.68056\n85457|0.43056\n85458|0.625\n85459|0.90278\n85460|0.625\n85461|0.56944\n85462|0.70833\n85463|0.5\n85464|0.16667\n85465|0.5\n85466|0.54167\n85467|0.65278\n85468|0.65278\n85469|0.72222\n85470|0.58333\n85471|0.73611\n85472|0.56944\n85473|0.41667\n85474|0.5\n85475|0.5\n85476|0.66667\n85477|0.59722\n85478|0.56944\n85479|0.56944\n85480|0.625\n85481|0.38889\n85482|0.375\n85483|0.58333\n85484|0.5\n85485|0.38889\n85486|0.56944\n85487|0.5\n85488|0.59722\n85489|0.73611\n85490|0.73611\n85491|0.79167\n85492|0.69444\n85493|0.63889\n85494|0.58333\n85495|0.66667\n85496|0.76389\n85497|0.80556\n85498|0.72222\n85499|0.84722\n85500|0.59722\n85501|0.55556\n85502|0.55556\n85503|0.5\n85504|0.58333\n85505|0.76389\n85506|0.69444\n85507|0.72222\n85508|0.65278\n85509|0.77778\n85510|0.5\n85511|0.48611\n85512|0.5\n85513|0.55556\n85514|0.5\n85515|0.5\n85516|0.77778\n85517|0.81944\n85518|0.73611\n85519|0.77778\n85520|0.77778\n85521|0.875\n85522|0.875\n85523|0.69444\n85524|0.69444\n85525|0.5\n85526|0.5\n85527|0.51389\n85528|0.56944\n85529|0.61111\n85530|0.58333\n85531|0.47222\n85532|0.5\n85533|0.44444\n85534|0.54167\n85535|0.625\n85536|0.75\n85537|0.84722\n85538|0.94444\n85539|0.5\n85540|0.5\n85541|0.5\n85542|0.80556\n85543|0.61111\n85544|0.5\n85545|0.5\n85546|0.5\n85547|0.5\n85548|0.41667\n85549|0.52778\n85550|0.69444\n85551|0.75\n85552|0.5\n85553|0.5\n85554|0.69444\n85555|0.54167\n85556|0.66667\n85557|0.69444\n85558|0.45833\n85559|0.26389\n85560|0.65278\n85561|0.38889\n85562|0.5\n85563|0.77778\n85564|0.54167\n85565|0.58333\n85566|0.5\n85567|0.30556\n85568|0.30556\n85569|0.59722\n85570|0.52778\n85571|1\n85572|0.75\n85573|0.66667\n85574|0.44444\n85575|0.055556\n85576|0.15278\n85577|0.083333\n85578|0.5\n85579|0.83333\n85580|0.5\n85581|0.5\n85582|0.55556\n85583|0.44444\n85584|0.5\n85585|0.44444\n85586|0.55556\n85587|0.5\n85588|0.72222\n85589|0.93056\n85590|0.55556\n85591|0.55556\n85592|0.61111\n85593|0.69444\n85594|0.5\n85595|0.77778\n85596|0.55556\n85597|0.61111\n85598|0.44444\n85599|0.61111\n85600|0.61111\n85601|0.76389\n85602|0.5\n85603|0.31944\n85604|0.5\n85605|0.61111\n85606|0.58333\n85607|0.44444\n85608|0.63889\n85609|0.77778\n85610|0.625\n85611|0.68056\n85612|0.55556\n85613|0.5\n85614|0.40278\n85615|0.75\n85616|0.73611\n85617|0.58333\n85618|0.58333\n85619|0.83333\n85620|0.56944\n85621|0.63889\n85622|0.76389\n85623|0.73611\n85624|0.5\n85625|0.80556\n85626|0.73611\n85627|0.72222\n85628|0.59722\n85629|0.84722\n85630|0.61111\n85631|0.76389\n85632|0.55556\n85633|0.55556\n85634|0.47222\n85635|0.56944\n85636|0.65278\n85637|0.73611\n85638|0.47222\n85639|0.48611\n85640|0.70833\n85641|0.56944\n85642|0.61111\n85643|0.68056\n85644|0.68056\n85645|0.75\n85646|0.81944\n85647|0.5\n85648|0.61111\n85649|0.65278\n85650|0.68056\n85651|0.70833\n85652|0.625\n85653|0.91667\n85654|0.55556\n85655|0.5\n85656|0.5\n85657|0.44444\n85658|0.55556\n85659|0.72222\n85660|0.61111\n85661|0.55556\n85662|0.61111\n85663|0.625\n85664|0.79167\n85665|0.48611\n85666|0.40278\n85667|0.5\n85668|0.66667\n85669|0.38889\n85670|0.59722\n85671|0.56944\n85672|0.76389\n85673|0.52778\n85674|0.54167\n85675|0.55556\n85676|0.5\n85677|0.5\n85678|0.5\n85679|0.5\n85680|0.44444\n85681|0.34722\n85682|0.55556\n85683|0.5\n85684|0.5\n85685|0.5\n85686|0.30556\n85687|0.54167\n85688|0.59722\n85689|0.68056\n85690|0.81944\n85691|0.29167\n85692|0.59722\n85693|0.72222\n85694|0.5\n85695|0.69444\n85696|0.54167\n85697|0.5\n85698|0.5\n85699|0.55556\n85700|0.5\n85701|0.63889\n85702|0.58333\n85703|0.5\n85704|0.88889\n85705|0.55556\n85706|0.625\n85707|0.69444\n85708|0.5\n85709|0.44444\n85710|0.70833\n85711|0.65278\n85712|0.58333\n85713|0.65278\n85714|0.61111\n85715|0.56944\n85716|0.51389\n85717|0.5\n85718|0.44444\n85719|0.375\n85720|0.31944\n85721|0.52778\n85722|0.27778\n85723|0.26389\n85724|0.25\n85725|0.375\n85726|0.27778\n85727|0.25\n85728|0.23611\n85729|0.19444\n85730|0.56944\n85731|0.29167\n85732|0.33333\n85733|0.30556\n85734|0.47222\n85735|0.27778\n85736|0.27778\n85737|0.40278\n85738|0.5\n85739|0.59722\n85740|0.5\n85741|0.61111\n85742|0.72222\n85743|0.55556\n85744|0.22222\n85745|0.47222\n85746|0.36111\n85747|0.59722\n85748|0.33333\n85749|0.34722\n85750|0.40278\n85751|0.5\n85752|0.47222\n85753|0.5\n85754|0.52778\n85755|0.5\n85756|0.625\n85757|0.51389\n85758|0.55556\n85759|0.55556\n85760|0.52778\n85761|0.73611\n85762|0.54167\n85763|0.61111\n85764|0.51389\n85765|0.5\n85766|0.5\n85767|0.43056\n85768|0.5\n85769|0.5\n85770|0.13889\n85771|0.56944\n85772|0.76389\n85773|0.66667\n85774|0.69444\n85775|0.65278\n85776|0.44444\n85777|0.5\n85778|0.47222\n85779|0.47222\n85780|0.5\n85781|0.51389\n85782|0.63889\n85783|0.375\n85784|0.5\n85785|0.63889\n85786|0.5\n85787|0.5\n85788|0.5\n85789|0.5\n85790|0.56944\n85791|0.66667\n85792|0.68056\n85793|0.68056\n85794|0.61111\n85795|0.73611\n85796|0.65278\n85797|0.76389\n85798|0.84722\n85799|0.94444\n85800|0.55556\n85801|0.63889\n85802|0.72222\n85803|0.72222\n85804|0.77778\n85805|0.61111\n85806|0.55556\n85807|0.54167\n85808|0.52778\n85809|0.55556\n85810|0.61111\n85811|0.5\n85812|0.5\n85813|0.51389\n85814|0.5\n85815|0.27778\n85816|0.58333\n85817|0.51389\n85818|0.51389\n85819|0.5\n85820|0.51389\n85821|0.72222\n85822|0.83333\n85823|0.73611\n85824|0.69444\n85825|0.5\n85826|0.58333\n85827|0.59722\n85828|0.75\n85829|0.51389\n85830|0.52778\n85831|0.59722\n85832|0.5\n85833|0.55556\n85834|0.45833\n85835|0.44444\n85836|0.56944\n85837|0.80556\n85838|0.5\n85839|0.5\n85840|0.61111\n85841|0.41667\n85842|0.5\n85843|0.5\n85844|0.61111\n85845|0.48611\n85846|0.63889\n85847|0.41667\n85848|0.72222\n85849|0.48611\n85850|0.76389\n85851|0.72222\n85852|0.43056\n85853|0.5\n85854|0.44444\n85855|0.55556\n85856|0.65278\n85857|0.81944\n85858|0.80556\n85859|0.44444\n85860|0.70833\n85861|0.33333\n85862|0.44444\n85863|0.30556\n85864|0.44444\n85865|0.68056\n85866|0.5\n85867|0.80556\n85868|0.55556\n85869|0.45833\n85870|0.5\n85871|0.625\n85872|0.54167\n85873|0.76389\n85874|0.76389\n85875|0.65278\n85876|0.45833\n85877|0.48611\n85878|0.375\n85879|0.72222\n85880|0.77778\n85881|0.33333\n85882|0.58333\n85883|0.44444\n85884|0.5\n85885|0.80556\n85886|0.77778\n85887|0.5\n85888|0.52778\n85889|0.38889\n85890|0.44444\n85891|0.52778\n85892|0.55556\n85893|0.51389\n85894|0.5\n85895|0.48611\n85896|0.51389\n85897|0.58333\n85898|0.55556\n85899|0.5\n85900|0.5\n85901|0.86111\n85902|0.34722\n85903|0.47222\n85904|0.33333\n85905|0.5\n85906|0.5\n85907|0.5\n85908|0.58333\n85909|0.55556\n85910|0.54167\n85911|0.43056\n85912|0.43056\n85913|0.66667\n85914|0.55556\n85915|0.38889\n85916|0.45833\n85917|0.41667\n85918|0.51389\n85919|0.43056\n85920|0.51389\n85921|0.52778\n85922|0.33333\n85923|0.72222\n85924|0.52778\n85925|0.41667\n85926|0.52778\n85927|0.5\n85928|0.44444\n85929|0.63889\n85930|0.33333\n85931|0.34722\n85932|0.5\n85933|0.375\n85934|0.61111\n85935|0.5\n85936|0.44444\n85937|0.40278\n85938|0.47222\n85939|0.34722\n85940|0.5\n85941|0.70833\n85942|0.76389\n85943|0.59722\n85944|0.68056\n85945|0.29167\n85946|0.63889\n85947|0.5\n85948|0.5\n85949|0.69444\n85950|0.66667\n85951|0.56944\n85952|0.68056\n85953|0.58333\n85954|0.59722\n85955|0.5\n85956|0.51389\n85957|0.55556\n85958|0.61111\n85959|0.55556\n85960|0.47222\n85961|0.5\n85962|0.5\n85963|0.5\n85964|0.51389\n85965|0.5\n85966|0.51389\n85967|0.625\n85968|0.66667\n85969|0.33333\n85970|0.47222\n85971|0.69444\n85972|0.625\n85973|0.51389\n85974|0.44444\n85975|0.45833\n85976|0.5\n85977|0.81944\n85978|0.55556\n85979|0.77778\n85980|0.55556\n85981|0.66667\n85982|0.65278\n85983|0.625\n85984|0.73611\n85985|0.5\n85986|0.54167\n85987|0.5\n85988|0.61111\n85989|0.55556\n85990|0.61111\n85991|0.5\n85992|0.68056\n85993|0.59722\n85994|0.875\n85995|0.66667\n85996|0.59722\n85997|0.54167\n85998|0.41667\n85999|0.5\n86000|0.59722\n86001|0.65278\n86002|0.65278\n86003|0.56944\n86004|0.55556\n86005|0.79167\n86006|0.65278\n86007|0.58333\n86008|0.38889\n86009|0.55556\n86010|0.43056\n86011|0.30556\n86012|0.44444\n86013|0.56944\n86014|0.5\n86015|0.77778\n86016|0.5\n86017|0.58333\n86018|0.58333\n86019|0.5\n86020|0.44444\n86021|0.52778\n86022|0.63889\n86023|0.61111\n86024|0.58333\n86025|0.5\n86026|0.66667\n86027|0.48611\n86028|0.54167\n86029|0.44444\n86030|0.55556\n86031|0.59722\n86032|0.66667\n86033|0.69444\n86034|0.44444\n86035|0.38889\n86036|0.5\n86037|0.5\n86038|0.69444\n86039|0.65278\n86040|0.59722\n86041|0.33333\n86042|0.52778\n86043|0.79167\n86044|0.72222\n86045|0.13889\n86046|0.79167\n86047|0.47222\n86048|0.48611\n86049|0.19444\n86050|0.58333\n86051|0.81944\n86052|0.63889\n86053|0.55556\n86054|0.56944\n86055|0.55556\n86056|0.54167\n86057|0.55556\n86058|0.55556\n86059|0.26389\n86060|0.5\n86061|0.40278\n86062|0.38889\n86063|0.63889\n86064|0.66667\n86065|0.54167\n86066|0.27778\n86067|0.38889\n86068|0.59722\n86069|0.66667\n86070|0.66667\n86071|0.59722\n86072|0.40278\n86073|0.5\n86074|0.75\n86075|0.54167\n86076|0.56944\n86077|0.52778\n86078|0.77778\n86079|0.625\n86080|0.44444\n86081|0.76389\n86082|0.45833\n86083|0.58333\n86084|0.81944\n86085|0.5\n86086|0.41667\n86087|0.52778\n86088|0.5\n86089|0.5\n86090|0.70833\n86091|0.5\n86092|0.5\n86093|0.55556\n86094|0.69444\n86095|0.77778\n86096|0.61111\n86097|0.66667\n86098|0.72222\n86099|0.81944\n86100|0.68056\n86101|0.48611\n86102|0.73611\n86103|0.29167\n86104|0.625\n86105|0.55556\n86106|0.61111\n86107|0.59722\n86108|0.56944\n86109|0.81944\n86110|0.83333\n86111|0.76389\n86112|0.63889\n86113|0.75\n86114|0.77778\n86115|0.69444\n86116|0.72222\n86117|0.66667\n86118|0.66667\n86119|0.58333\n86120|0.43056\n86121|0.5\n86122|0.48611\n86123|0.63889\n86124|0.44444\n86125|0.5\n86126|0.63889\n86127|0.47222\n86128|0.44444\n86129|0.61111\n86130|0.43056\n86131|0.43056\n86132|0.43056\n86133|0.27778\n86134|0.41667\n86135|0.66667\n86136|0.52778\n86137|0.5\n86138|0.56944\n86139|0.61111\n86140|0.72222\n86141|0.5\n86142|0.25\n86143|0.44444\n86144|0.5\n86145|0.55556\n86146|0.5\n86147|0.51389\n86148|0.69444\n86149|0.44444\n86150|0.54167\n86151|0.55556\n86152|0.63889\n86153|0.5\n86154|0.55556\n86155|0.55556\n86156|0.55556\n86157|0.625\n86158|0.48611\n86159|0.54167\n86160|0.45833\n86161|0.47222\n86162|0.5\n86163|0.66667\n86164|0.5\n86165|0.5\n86166|0.63889\n86167|0.44444\n86168|0.55556\n86169|0.5\n86170|0.23611\n86171|0.58333\n86172|0.43056\n86173|0.36111\n86174|0.38889\n86175|0.44444\n86176|0.66667\n86177|0.5\n86178|0.69444\n86179|0.59722\n86180|0.51389\n86181|0.65278\n86182|0.5\n86183|0.5\n86184|0.52778\n86185|0.59722\n86186|0.59722\n86187|0.5\n86188|0.66667\n86189|0.61111\n86190|0.43056\n86191|0.375\n86192|0.5\n86193|0.47222\n86194|0.81944\n86195|0.69444\n86196|0.65278\n86197|0.69444\n86198|0.48611\n86199|0.55556\n86200|0.66667\n86201|0.23611\n86202|0.38889\n86203|0.5\n86204|0.48611\n86205|0.63889\n86206|0.5\n86207|0.56944\n86208|0.55556\n86209|0.66667\n86210|0.72222\n86211|0.44444\n86212|0.5\n86213|0.41667\n86214|0.38889\n86215|0.31944\n86216|0.34722\n86217|0.43056\n86218|0.44444\n86219|0.33333\n86220|0.375\n86221|0.19444\n86222|0.55556\n86223|0.58333\n86224|0.68056\n86225|0.68056\n86226|0.79167\n86227|0.61111\n86228|0.73611\n86229|0.77778\n86230|0.43056\n86231|0.43056\n86232|0.61111\n86233|0.52778\n86234|0.48611\n86235|0.47222\n86236|0.41667\n86237|0.52778\n86238|0.5\n86239|0.625\n86240|0.625\n86241|0.56944\n86242|0.44444\n86243|0.51389\n86244|0.51389\n86245|0.5\n86246|0.44444\n86247|0.48611\n86248|0.5\n86249|0.66667\n86250|0.56944\n86251|0.47222\n86252|0.72222\n86253|0.63889\n86254|0.38889\n86255|0.44444\n86256|0.58333\n86257|0.5\n86258|0.52778\n86259|0.43056\n86260|0.38889\n86261|0.40278\n86262|0.5\n86263|0.5\n86264|0.5\n86265|0.55556\n86266|0.75\n86267|0.56944\n86268|0.5\n86269|0.47222\n86270|0.73611\n86271|0.63889\n86272|0.55556\n86273|0.625\n86274|0.38889\n86275|0.55556\n86276|0.51389\n86277|0.16667\n86278|0.5\n86279|0.625\n86280|0.75\n86281|0.59722\n86282|0.72222\n86283|0.5\n86284|0.54167\n86285|0.70833\n86286|0.59722\n86287|0.66667\n86288|0.63889\n86289|0.5\n86290|0.5\n86291|0.54167\n86292|0.47222\n86293|0.63889\n86294|0.5\n86295|0.66667\n86296|0.5\n86297|0.36111\n86298|0.86111\n86299|0.38889\n86300|0.22222\n86301|0.5\n86302|0.5\n86303|0.77778\n86304|0.63889\n86305|0.56944\n86306|0.76389\n86307|0.5\n86308|0.56944\n86309|0.59722\n86310|0.52778\n86311|0.47222\n86312|0.72222\n86313|0.43056\n86314|0.55556\n86315|0.33333\n86316|0.58333\n86317|0.47222\n86318|0.375\n86319|0.26389\n86320|0.16667\n86321|0.40278\n86322|0.5\n86323|0.51389\n86324|0.44444\n86325|0.31944\n86326|0.38889\n86327|0.5\n86328|0.40278\n86329|0.375\n86330|0.44444\n86331|0.56944\n86332|0.5\n86333|0.55556\n86334|0.44444\n86335|0.83333\n86336|0.5\n86337|0.33333\n86338|0.5\n86339|0.76389\n86340|0.44444\n86341|0.45833\n86342|0.51389\n86343|0.55556\n86344|0.55556\n86345|0.70833\n86346|0.65278\n86347|0.625\n86348|0.55556\n86349|0.66667\n86350|0.66667\n86351|0.5\n86352|0.54167\n86353|0.59722\n86354|0.54167\n86355|0.65278\n86356|0.59722\n86357|0.51389\n86358|0.68056\n86359|0.70833\n86360|0.625\n86361|0.73611\n86362|0.55556\n86363|0.61111\n86364|0.51389\n86365|0.55556\n86366|0.59722\n86367|0.80556\n86368|0.66667\n86369|0.66667\n86370|0.79167\n86371|0.77778\n86372|0.65278\n86373|0.51389\n86374|0.66667\n86375|0.68056\n86376|0.70833\n86377|0.80556\n86378|0.79167\n86379|0.72222\n86380|0.875\n86381|0.63889\n86382|0.48611\n86383|0.65278\n86384|0.58333\n86385|0.83333\n86386|0.66667\n86387|0.625\n86388|0.77778\n86389|0.70833\n86390|0.83333\n86391|0.73611\n86392|0.65278\n86393|0.625\n86394|0.72222\n86395|0.5\n86396|0.61111\n86397|0.70833\n86398|0.73611\n86399|0.90278\n86400|0.68056\n86401|0.76389\n86402|0.54167\n86403|0.38889\n86404|0.41667\n86405|0.33333\n86406|0.38889\n86407|0.5\n86408|0.56944\n86409|0.51389\n86410|0.625\n86411|0.45833\n86412|0.73611\n86413|0.5\n86414|0.5\n86415|0.38889\n86416|0.30556\n86417|0.45833\n86418|0.5\n86419|0.5\n86420|0.56944\n86421|0.38889\n86422|0.70833\n86423|0.61111\n86424|0.63889\n86425|0.51389\n86426|0.77778\n86427|0.58333\n86428|0.63889\n86429|0.625\n86430|0.65278\n86431|0.70833\n86432|0.55556\n86433|0.77778\n86434|0.91667\n86435|0.5\n86436|0.51389\n86437|0.76389\n86438|0.5\n86439|0.56944\n86440|0.55556\n86441|0.80556\n86442|0.79167\n86443|0.5\n86444|0.48611\n86445|0.48611\n86446|0.54167\n86447|0.44444\n86448|0.41667\n86449|0.5\n86450|0.5\n86451|0.44444\n86452|0.56944\n86453|0.84722\n86454|0.76389\n86455|0.5\n86456|0.51389\n86457|0.84722\n86458|0.75\n86459|0.5\n86460|0.73611\n86461|0.63889\n86462|0.44444\n86463|0.55556\n86464|0.51389\n86465|0.70833\n86466|0.58333\n86467|0.73611\n86468|0.51389\n86469|0.65278\n86470|0.63889\n86471|0.5\n86472|0.22222\n86473|0.5\n86474|0.5\n86475|0.5\n86476|0.68056\n86477|0.72222\n86478|0.5\n86479|0.51389\n86480|0.61111\n86481|0.5\n86482|0.45833\n86483|0.65278\n86484|0.44444\n86485|0.44444\n86486|0.26389\n86487|0.76389\n86488|0.84722\n86489|0.75\n86490|0.84722\n86491|0.625\n86492|0.94444\n86493|0.83333\n86494|0.77778\n86495|0.5\n86496|0.51389\n86497|0.5\n86498|0.47222\n86499|0.5\n86500|0.5\n86501|0.79167\n86502|0.5\n86503|0.27778\n86504|0.56944\n86505|0.625\n86506|0.43056\n86507|0.5\n86508|0.69444\n86509|0.61111\n86510|0.72222\n86511|0.55556\n86512|0.63889\n86513|0.55556\n86514|0.5\n86515|0.68056\n86516|0.54167\n86517|0.63889\n86518|0.77778\n86519|0.77778\n86520|0.58333\n86521|0.56944\n86522|0.79167\n86523|0.79167\n86524|0.52778\n86525|0.5\n86526|0.83333\n86527|0.90278\n86528|0.51389\n86529|0.72222\n86530|0.55556\n86531|0.875\n86532|0.56944\n86533|0.66667\n86534|0.86111\n86535|0.55556\n86536|0.79167\n86537|0.75\n86538|0.875\n86539|0.86111\n86540|0.44444\n86541|0.38889\n86542|0.81944\n86543|0.72222\n86544|0.77778\n86545|0.61111\n86546|0.51389\n86547|0.61111\n86548|0.5\n86549|0.72222\n86550|0.72222\n86551|0.70833\n86552|0.79167\n86553|0.69444\n86554|0.5\n86555|0.84722\n86556|0.625\n86557|0.36111\n86558|0.66667\n86559|0.59722\n86560|0.72222\n86561|0.68056\n86562|0.80556\n86563|0.83333\n86564|0.72222\n86565|0.80556\n86566|0.66667\n86567|0.66667\n86568|0.59722\n86569|0.65278\n86570|0.77778\n86571|0.38889\n86572|0.59722\n86573|0.76389\n86574|0.69444\n86575|0.70833\n86576|0.59722\n86577|0.45833\n86578|0.54167\n86579|0.40278\n86580|0.59722\n86581|0.65278\n86582|0.66667\n86583|0.70833\n86584|0.83333\n86585|0.54167\n86586|0.51389\n86587|0.61111\n86588|0.63889\n86589|0.625\n86590|0.26389\n86591|0.47222\n86592|0.54167\n86593|0.5\n86594|0.5\n86595|0.5\n86596|0.5\n86597|0.75\n86598|0.83333\n86599|0.83333\n86600|0.90278\n86601|0.81944\n86602|0.5\n86603|0.66667\n86604|0.51389\n86605|0.41667\n86606|0.73611\n86607|0.77778\n86608|0.52778\n86609|0.59722\n86610|0.70833\n86611|0.66667\n86612|0.77778\n86613|0.81944\n86614|0.47222\n86615|0.76389\n86616|0.54167\n86617|0.5\n86618|0.70833\n86619|0.68056\n86620|0.86111\n86621|0.83333\n86622|0.44444\n86623|0.52778\n86624|0.79167\n86625|0.80556\n86626|0.77778\n86627|0.70833\n86628|0.73611\n86629|0.5\n86630|0.72222\n86631|0.83333\n86632|0.73611\n86633|0.69444\n86634|0.77778\n86635|0.63889\n86636|0.61111\n86637|0.625\n86638|0.15278\n86639|0.20833\n86640|0.19444\n86641|0.75\n86642|0.75\n86643|0.5\n86644|0.72222\n86645|0.75\n86646|0.65278\n86647|0.47222\n86648|0.18056\n86649|0.77778\n86650|0.73611\n86651|0.84722\n86652|0.79167\n86653|0.70833\n86654|0.5\n86655|0.72222\n86656|0.77778\n86657|0.72222\n86658|0.65278\n86659|0.66667\n86660|0.68056\n86661|0.83333\n86662|0.81944\n86663|0.66667\n86664|0.5\n86665|0.63889\n86666|0.73611\n86667|0.66667\n86668|0.58333\n86669|0.73611\n86670|0.73611\n86671|0.73611\n86672|0.66667\n86673|0.5\n86674|0.79167\n86675|0.58333\n86676|0.77778\n86677|0.75\n86678|0.51389\n86679|0.84722\n86680|0.91667\n86681|0.94444\n86682|0.77778\n86683|0.73611\n86684|0.47222\n86685|0.5\n86686|0.5\n86687|0.5\n86688|0.81944\n86689|0.73611\n86690|0.51389\n86691|0.625\n86692|0.55556\n86693|0.66667\n86694|0.59722\n86695|0.26389\n86696|0.47222\n86697|0.41667\n86698|0.44444\n86699|0.5\n86700|0.97222\n86701|0.52778\n86702|0.72222\n86703|0.65278\n86704|0.5\n86705|0.5\n86706|0.68056\n86707|0.5\n86708|0.40278\n86709|0.52778\n86710|0.38889\n86711|0.47222\n86712|0.30556\n86713|0.30556\n86714|0.625\n86715|0.76389\n86716|0.66667\n86717|0.69444\n86718|0.51389\n86719|0.58333\n86720|0.47222\n86721|0.69444\n86722|0.59722\n86723|0.72222\n86724|0.5\n86725|0.93056\n86726|0.81944\n86727|0.80556\n86728|0.68056\n86729|0.69444\n86730|0.55556\n86731|0.77778\n86732|0.77778\n86733|0.45833\n86734|0.79167\n86735|0.81944\n86736|0.70833\n86737|0.73611\n86738|0.79167\n86739|0.83333\n86740|0.65278\n86741|0.81944\n86742|0.63889\n86743|0.55556\n86744|0.73611\n86745|0.65278\n86746|0.59722\n86747|0.72222\n86748|0.5\n86749|0.63889\n86750|0.5\n86751|0.88889\n86752|0.70833\n86753|0.76389\n86754|0.84722\n86755|0.83333\n86756|0.72222\n86757|0.81944\n86758|0.59722\n86759|0.66667\n86760|0.70833\n86761|0.55556\n86762|0.5\n86763|0.72222\n86764|0.56944\n86765|0.5\n86766|0.73611\n86767|0.5\n86768|0.5\n86769|0.5\n86770|0.58333\n86771|0.61111\n86772|0.5\n86773|0.55556\n86774|0.72222\n86775|0.55556\n86776|0.66667\n86777|0.43056\n86778|0.5\n86779|0.73611\n86780|0.5\n86781|0.5\n86782|0.5\n86783|0.29167\n86784|0.5\n86785|0.34722\n86786|0.5\n86787|0.625\n86788|0.38889\n86789|0.5\n86790|0.55556\n86791|0.77778\n86792|0.5\n86793|0.59722\n86794|0.45833\n86795|0.625\n86796|0.94444\n86797|0.91667\n86798|0.5\n86799|0.44444\n86800|0.5\n86801|0.54167\n86802|0.5\n86803|0.5\n86804|0.5\n86805|0.5\n86806|0.86111\n86807|0.875\n86808|0.5\n86809|0.625\n86810|0.52778\n86811|0.79167\n86812|0.73611\n86813|0.375\n86814|0.44444\n86815|0.27778\n86816|0.5\n86817|0.55556\n86818|0.51389\n86819|0.76389\n86820|0.58333\n86821|0.44444\n86822|0.375\n86823|0.51389\n86824|0.58333\n86825|0.5\n86826|0.5\n86827|0.72222\n86828|0.73611\n86829|0.63889\n86830|0.55556\n86831|0.66667\n86832|0.72222\n86833|0.63889\n86834|0.86111\n86835|0.79167\n86836|0.80556\n86837|0.79167\n86838|0.77778\n86839|0.875\n86840|0.94444\n86841|0.73611\n86842|0.80556\n86843|0.77778\n86844|0.81944\n86845|0.76389\n86846|0.73611\n86847|0.5\n86848|0.45833\n86849|0.58333\n86850|0.44444\n86851|0.44444\n86852|0.55556\n86853|0.51389\n86854|0.76389\n86855|0.81944\n86856|0.88889\n86857|0.77778\n86858|0.69444\n86859|0.88889\n86860|0.5\n86861|0.5\n86862|0.47222\n86863|0.5\n86864|0.72222\n86865|0.79167\n86866|0.55556\n86867|0.48611\n86868|0.5\n86869|0.61111\n86870|0.47222\n86871|0.55556\n86872|0.52778\n86873|0.58333\n86874|0.70833\n86875|0.55556\n86876|0.63889\n86877|0.36111\n86878|0.27778\n86879|0.54167\n86880|0.83333\n86881|0.91667\n86882|0.5\n86883|0.83333\n86884|0.86111\n86885|0.59722\n86886|0.59722\n86887|0.40278\n86888|0.625\n86889|0.5\n86890|0.81944\n86891|0.63889\n86892|0.48611\n86893|0.5\n86894|0.79167\n86895|0.81944\n86896|0.47222\n86897|0.31944\n86898|0.70833\n86899|0.76389\n86900|0.75\n86901|1\n86902|0.5\n86903|0.80556\n86904|0.68056\n86905|0.52778\n86906|0.5\n86907|0.72222\n86908|0.38889\n86909|0.44444\n86910|0.5\n86911|0.58333\n86912|0.61111\n86913|0.625\n86914|0.59722\n86915|0.48611\n86916|0.40278\n86917|0.40278\n86918|0.44444\n86919|0.54167\n86920|0.73611\n86921|0.23611\n86922|0.55556\n86923|0.34722\n86924|0.55556\n86925|0.63889\n86926|0.22222\n86927|0.38889\n86928|0.41667\n86929|0.5\n86930|0.47222\n86931|0.5\n86932|0.5\n86933|0.5\n86934|0.5\n86935|0.68056\n86936|0.58333\n86937|0.93056\n86938|0.91667\n86939|0.5\n86940|0.31944\n86941|0.5\n86942|0.48611\n86943|0.5\n86944|0.5\n86945|0.40278\n86946|0.45833\n86947|0.41667\n86948|0.66667\n86949|0.59722\n86950|0.79167\n86951|0.41667\n86952|0.5\n86953|0.54167\n86954|0.58333\n86955|0.63889\n86956|0.61111\n86957|0.43056\n86958|0.5\n86959|0.5\n86960|0.45833\n86961|0.70833\n86962|0.51389\n86963|0.375\n86964|0.34722\n86965|0.5\n86966|0.625\n86967|0.56944\n86968|0.55556\n86969|0.15278\n86970|0.45833\n86971|0.5\n86972|0.55556\n86973|0.51389\n86974|0.5\n86975|0.56944\n86976|0.5\n86977|0.63889\n86978|0.5\n86979|0.55556\n86980|0.5\n86981|0.5\n86982|0.55556\n86983|0.54167\n86984|0.30556\n86985|0.36111\n86986|0.61111\n86987|0.51389\n86988|0.72222\n86989|0.5\n86990|0.43056\n86991|0.5\n86992|0.5\n86993|0.5\n86994|0.30556\n86995|0.51389\n86996|0.44444\n86997|0.47222\n86998|0.59722\n86999|0.45833\n87000|0.51389\n87001|0.63889\n87002|0.58333\n87003|0.51389\n87004|0.44444\n87005|0.5\n87006|0.45833\n87007|0.43056\n87008|0.55556\n87009|0.54167\n87010|0.38889\n87011|0.72222\n87012|0.86111\n87013|0.83333\n87014|0.77778\n87015|0.77778\n87016|0.72222\n87017|0.69444\n87018|0.54167\n87019|0.81944\n87020|0.52778\n87021|0.52778\n87022|0.5\n87023|0.51389\n87024|0.5\n87025|0.54167\n87026|0.38889\n87027|0.5\n87028|0.27778\n87029|0.33333\n87030|0.52778\n87031|0.52778\n87032|0.34722\n87033|0.5\n87034|0.45833\n87035|0.40278\n87036|0.5\n87037|0.58333\n87038|0.51389\n87039|0.75\n87040|0.73611\n87041|0.81944\n87042|0.5\n87043|0.5\n87044|0.5\n87045|0.41667\n87046|0.55556\n87047|0.5\n87048|0.5\n87049|0.5\n87050|0.59722\n87051|0.375\n87052|0.52778\n87053|0.5\n87054|0.48611\n87055|0.22222\n87056|0.5\n87057|0.5\n87058|0.61111\n87059|0.48611\n87060|0.72222\n87061|0.61111\n87062|0.68056\n87063|0.77778\n87064|0.875\n87065|0.94444\n87066|0.43056\n87067|0.26389\n87068|0.34722\n87069|0.44444\n87070|0.25\n87071|0.26389\n87072|0.13889\n87073|0.625\n87074|0.48611\n87075|0.52778\n87076|0.51389\n87077|0.61111\n87078|0.55556\n87079|0.5\n87080|0.55556\n87081|0.5\n87082|0.5\n87083|0.51389\n87084|0.5\n87085|0.65278\n87086|0.70833\n87087|0.5\n87088|0.5\n87089|0.84722\n87090|0.30556\n87091|0.5\n87092|0.55556\n87093|0.41667\n87094|0.34722\n87095|0.59722\n87096|0.70833\n87097|0.91667\n87098|0.90278\n87099|0.5\n87100|0.52778\n87101|0.5\n87102|0.83333\n87103|0.65278\n87104|0.22222\n87105|0.5\n87106|0.51389\n87107|0.34722\n87108|0.45833\n87109|0.63889\n87110|0.75\n87111|0.27778\n87112|0.45833\n87113|0.625\n87114|0.72222\n87115|0.66667\n87116|0.59722\n87117|0.59722\n87118|0.65278\n87119|0.66667\n87120|0.66667\n87121|0.73611\n87122|0.54167\n87123|0.52778\n87124|0.5\n87125|0.59722\n87126|0.45833\n87127|0.44444\n87128|0.56944\n87129|0.5\n87130|0.5\n87131|0.61111\n87132|0.625\n87133|0.55556\n87134|0.61111\n87135|0.54167\n87136|0.625\n87137|0.41667\n87138|0.55556\n87139|0.77778\n87140|0.55556\n87141|0.5\n87142|0.5\n87143|0.44444\n87144|0.375\n87145|0.55556\n87146|0.44444\n87147|0.72222\n87148|0.34722\n87149|0.40278\n87150|0.47222\n87151|0.84722\n87152|0.86111\n87153|0.875\n87154|0.38889\n87155|0.47222\n87156|0.34722\n87157|0.38889\n87158|0.22222\n87159|0.36111\n87160|0.16667\n87161|0.38889\n87162|0.33333\n87163|0.5\n87164|0.44444\n87165|0.58333\n87166|0.56944\n87167|0.45833\n87168|0.5\n87169|0.51389\n87170|0.5\n87171|0.44444\n87172|0.5\n87173|0.51389\n87174|0.5\n87175|0.55556\n87176|0.5\n87177|0.55556\n87178|0.55556\n87179|0.5\n87180|0.5\n87181|0.52778\n87182|0.5\n87183|0.61111\n87184|0.84722\n87185|0.61111\n87186|0.61111\n87187|0.68056\n87188|0.79167\n87189|0.59722\n87190|0.58333\n87191|0.5\n87192|0.5\n87193|0.5\n87194|0.5\n87195|0.61111\n87196|0.66667\n87197|0.63889\n87198|0.72222\n87199|0.63889\n87200|0.59722\n87201|0.625\n87202|0.65278\n87203|0.63889\n87204|0.31944\n87205|0.30556\n87206|0.44444\n87207|0.5\n87208|0.5\n87209|0.5\n87210|0.58333\n87211|0.79167\n87212|0.59722\n87213|0.59722\n87214|0.5\n87215|0.63889\n87216|0.43056\n87217|0.45833\n87218|0.61111\n87219|0.47222\n87220|0.48611\n87221|0.45833\n87222|0.38889\n87223|0.43056\n87224|0.54167\n87225|0.63889\n87226|0.5\n87227|0.54167\n87228|0.43056\n87229|0.66667\n87230|0.625\n87231|0.65278\n87232|0.56944\n87233|0.66667\n87234|0.81944\n87235|0.5\n87236|0.68056\n87237|0.40278\n87238|0.68056\n87239|0.65278\n87240|0.66667\n87241|0.625\n87242|0.80556\n87243|0.56944\n87244|0.55556\n87245|0.625\n87246|0.51389\n87247|0.44444\n87248|0.5\n87249|0.51389\n87250|0.375\n87251|0.44444\n87252|0.58333\n87253|0.76389\n87254|0.5\n87255|0.70833\n87256|0.55556\n87257|0.33333\n87258|0.69444\n87259|0.90278\n87260|0.69444\n87261|0.625\n87262|0.69444\n87263|0.70833\n87264|0.75\n87265|0.72222\n87266|0.56944\n87267|0.72222\n87268|0.83333\n87269|0.38889\n87270|0.51389\n87271|0.56944\n87272|0.56944\n87273|0.38889\n87274|0.23611\n87275|0.5\n87276|0.55556\n87277|0.56944\n87278|0.58333\n87279|0.54167\n87280|0.47222\n87281|0.68056\n87282|0.51389\n87283|0.55556\n87284|0.51389\n87285|0.44444\n87286|0.59722\n87287|0.76389\n87288|0.55556\n87289|0.5\n87290|0.5\n87291|0.51389\n87292|0.66667\n87293|0.56944\n87294|0.5\n87295|0.61111\n87296|0.73611\n87297|0.66667\n87298|0.23611\n87299|0.26389\n87300|0.59722\n87301|0.51389\n87302|0.52778\n87303|0.55556\n87304|0.51389\n87305|0.5\n87306|0.61111\n87307|0.66667\n87308|0.69444\n87309|0.44444\n87310|0.41667\n87311|0.75\n87312|0.63889\n87313|0.56944\n87314|0.59722\n87315|0.5\n87316|0.65278\n87317|0.70833\n87318|0.80556\n87319|0.79167\n87320|0.43056\n87321|0.56944\n87322|0.81944\n87323|0.68056\n87324|0.81944\n87325|0.79167\n87326|0.58333\n87327|0.52778\n87328|0.76389\n87329|0.625\n87330|0.76389\n87331|0.66667\n87332|0.33333\n87333|0.56944\n87334|0.66667\n87335|0.59722\n87336|0.65278\n87337|0.73611\n87338|0.81944\n87339|0.5\n87340|0.70833\n87341|0.72222\n87342|0.56944\n87343|0.76389\n87344|0.45833\n87345|0.69444\n87346|0.43056\n87347|0.59722\n87348|0.70833\n87349|0.63889\n87350|0.68056\n87351|0.69444\n87352|0.75\n87353|0.55556\n87354|0.66667\n87355|0.52778\n87356|0.55556\n87357|0.625\n87358|0.61111\n87359|0.48611\n87360|0.56944\n87361|0.69444\n87362|0.68056\n87363|0.38889\n87364|0.52778\n87365|0.5\n87366|0.38889\n87367|0.40278\n87368|0.61111\n87369|0.58333\n87370|0.5\n87371|0.48611\n87372|0.80556\n87373|0.75\n87374|0.97222\n87375|0.76389\n87376|0.5\n87377|0.5\n87378|0.33333\n87379|0.81944\n87380|0.73611\n87381|0.68056\n87382|0.59722\n87383|0.55556\n87384|0.41667\n87385|0.61111\n87386|0.5\n87387|0.41667\n87388|0.63889\n87389|0.66667\n87390|0.94444\n87391|0.68056\n87392|0.83333\n87393|0.79167\n87394|0.79167\n87395|0.48611\n87396|0.79167\n87397|0.45833\n87398|0.52778\n87399|0.55556\n87400|0.56944\n87401|0.41667\n87402|0.59722\n87403|0.84722\n87404|0.58333\n87405|0.68056\n87406|0.70833\n87407|0.68056\n87408|0.72222\n87409|0.56944\n87410|0.76389\n87411|0.97222\n87412|0.76389\n87413|0.65278\n87414|0.61111\n87415|0.65278\n87416|0.79167\n87417|0.81944\n87418|0.875\n87419|0.75\n87420|0.88889\n87421|0.48611\n87422|0.66667\n87423|0.93056\n87424|0.88889\n87425|0.72222\n87426|0.88889\n87427|0.61111\n87428|0.80556\n87429|0.20833\n87430|0.54167\n87431|0.76389\n87432|0.72222\n87433|0.77778\n87434|0.61111\n87435|0.875\n87436|0.72222\n87437|0.875\n87438|0.80556\n87439|0.76389\n87440|0.88889\n87441|0.56944\n87442|0.65278\n87443|0.61111\n87444|0.5\n87445|0.5\n87446|0.5\n87447|0.38889\n87448|0.55556\n87449|0.79167\n87450|0.19444\n87451|0.51389\n87452|0.375\n87453|0.76389\n87454|0.76389\n87455|0.63889\n87456|0.34722\n87457|0.41667\n87458|0.77778\n87459|0.69444\n87460|0.70833\n87461|0.66667\n87462|0.5\n87463|0.61111\n87464|0.77778\n87465|0.69444\n87466|0.88889\n87467|0.81944\n87468|0.69444\n87469|0.69444\n87470|0.65278\n87471|0.51389\n87472|0.83333\n87473|0.81944\n87474|0.38889\n87475|0.52778\n87476|0.63889\n87477|0.77778\n87478|0.83333\n87479|0.55556\n87480|0.59722\n87481|0.81944\n87482|0.54167\n87483|0.73611\n87484|0.76389\n87485|0.79167\n87486|0.97222\n87487|0.31944\n87488|0.30556\n87489|0.36111\n87490|0.56944\n87491|0.45833\n87492|0.5\n87493|0.5\n87494|0.52778\n87495|0.72222\n87496|0.81944\n87497|0.79167\n87498|0.88889\n87499|0.55556\n87500|0.86111\n87501|0.41667\n87502|0.5\n87503|0.90278\n87504|0.40278\n87505|0.51389\n87506|0.5\n87507|0.5\n87508|0.48611\n87509|0.625\n87510|0.52778\n87511|0.23611\n87512|0.44444\n87513|0.44444\n87514|0.375\n87515|0.29167\n87516|0.44444\n87517|0.25\n87518|0.5\n87519|0.44444\n87520|0.80556\n87521|0.52778\n87522|0.5\n87523|0.56944\n87524|0.55556\n87525|0.55556\n87526|0.5\n87527|0.5\n87528|0.5\n87529|0.5\n87530|0.55556\n87531|0.54167\n87532|0.55556\n87533|0.73611\n87534|0.56944\n87535|0.625\n87536|0.79167\n87537|0.56944\n87538|0.41667\n87539|0.5\n87540|0.56944\n87541|0.52778\n87542|0.56944\n87543|0.61111\n87544|0.83333\n87545|0.75\n87546|0.66667\n87547|0.5\n87548|0.56944\n87549|0.59722\n87550|0.73611\n87551|0.5\n87552|0.5\n87553|0.5\n87554|0.5\n87555|0.55556\n87556|0.5\n87557|0.5\n87558|0.55556\n87559|0.59722\n87560|0.56944\n87561|0.69444\n87562|0.81944\n87563|0.79167\n87564|0.83333\n87565|0.77778\n87566|0.625\n87567|0.79167\n87568|0.70833\n87569|0.59722\n87570|0.76389\n87571|0.58333\n87572|0.72222\n87573|0.68056\n87574|0.72222\n87575|0.66667\n87576|0.70833\n87577|0.5\n87578|0.86111\n87579|0.55556\n87580|0.58333\n87581|0.79167\n87582|0.59722\n87583|0.63889\n87584|0.61111\n87585|0.61111\n87586|0.59722\n87587|0.81944\n87588|0.76389\n87589|0.61111\n87590|0.5\n87591|0.63889\n87592|0.81944\n87593|0.55556\n87594|0.52778\n87595|0.66667\n87596|0.56944\n87597|0.63889\n87598|0.59722\n87599|0.59722\n87600|0.55556\n87601|0.5\n87602|0.75\n87603|0.625\n87604|0.38889\n87605|0.5\n87606|0.59722\n87607|0.31944\n87608|0.5\n87609|0.76389\n87610|0.31944\n87611|0.63889\n87612|0.72222\n87613|0.34722\n87614|0.59722\n87615|0.43056\n87616|0.55556\n87617|0.55556\n87618|0.68056\n87619|0.54167\n87620|0.54167\n87621|0.43056\n87622|0.5\n87623|0.38889\n87624|0.625\n87625|0.61111\n87626|0.51389\n87627|0.72222\n87628|0.76389\n87629|0.65278\n87630|0.5\n87631|0.5\n87632|0.52778\n87633|0.5\n87634|0.41667\n87635|0.5\n87636|0.56944\n87637|0.58333\n87638|0.5\n87639|0.75\n87640|0.58333\n87641|0.5\n87642|0.625\n87643|0.58333\n87644|0.5\n87645|0.65278\n87646|0.5\n87647|0.52778\n87648|0.66667\n87649|0.55556\n87650|0.5\n87651|0.61111\n87652|0.5\n87653|0.59722\n87654|0.56944\n87655|0.41667\n87656|0.36111\n87657|0.44444\n87658|0.38889\n87659|0.66667\n87660|0.77778\n87661|0.36111\n87662|0.76389\n87663|0.79167\n87664|0.59722\n87665|0.5\n87666|0.5\n87667|0.63889\n87668|0.70833\n87669|0.5\n87670|0.58333\n87671|0.43056\n87672|0.63889\n87673|0.27778\n87674|0.58333\n87675|0.56944\n87676|0.625\n87677|0.61111\n87678|0.68056\n87679|0.63889\n87680|0.83333\n87681|0.875\n87682|0.625\n87683|0.68056\n87684|0.5\n87685|0.65278\n87686|0.48611\n87687|0.59722\n87688|0.63889\n87689|0.58333\n87690|0.5\n87691|0.5\n87692|0.38889\n87693|0.54167\n87694|0.55556\n87695|0.47222\n87696|0.65278\n87697|0.875\n87698|0.48611\n87699|0.5\n87700|0.5\n87701|0.5\n87702|0.5\n87703|0.5\n87704|0.58333\n87705|0.43056\n87706|0.40278\n87707|0.33333\n87708|0.51389\n87709|0.5\n87710|0.79167\n87711|0.5\n87712|0.5\n87713|0.5\n87714|0.5\n87715|0.61111\n87716|0.69444\n87717|0.66667\n87718|0.76389\n87719|0.75\n87720|0.54167\n87721|0.59722\n87722|0.66667\n87723|0.59722\n87724|0.84722\n87725|0.72222\n87726|0.5\n87727|0.5\n87728|0.54167\n87729|0.19444\n87730|0.625\n87731|0.58333\n87732|0.43056\n87733|0.34722\n87734|0.70833\n87735|0.77778\n87736|0.48611\n87737|0.80556\n87738|0.47222\n87739|0.5\n87740|0.86111\n87741|0.83333\n87742|0.15278\n87743|0.48611\n87744|0.84722\n87745|0.55556\n87746|0.66667\n87747|0.56944\n87748|0.5\n87749|0.5\n87750|0.5\n87751|0.5\n87752|0.54167\n87753|0.51389\n87754|0.58333\n87755|0.55556\n87756|0.30556\n87757|0.5\n87758|0.47222\n87759|0.41667\n87760|0.45833\n87761|0.51389\n87762|0.625\n87763|0.83333\n87764|0.625\n87765|0.69444\n87766|0.48611\n87767|0.59722\n87768|0.55556\n87769|0.36111\n87770|0.22222\n87771|0.5\n87772|0.52778\n87773|0.41667\n87774|0.52778\n87775|0.34722\n87776|0.29167\n87777|0.47222\n87778|0.38889\n87779|0.51389\n87780|0.34722\n87781|0.43056\n87782|0.27778\n87783|0.44444\n87784|0.083333\n87785|0.45833\n87786|0.34722\n87787|0.51389\n87788|0.375\n87789|0.45833\n87790|0.33333\n87791|0.5\n87792|0.59722\n87793|0.55556\n87794|0.58333\n87795|0.61111\n87796|0.66667\n87797|0.5\n87798|0.30556\n87799|0.59722\n87800|0.47222\n87801|0.77778\n87802|0.77778\n87803|0.29167\n87804|0.58333\n87805|0.5\n87806|0.77778\n87807|0.58333\n87808|0.54167\n87809|0.69444\n87810|0.81944\n87811|0.55556\n87812|0.75\n87813|0.43056\n87814|0.36111\n87815|0.34722\n87816|0.38889\n87817|0.56944\n87818|0.59722\n87819|0.51389\n87820|0.65278\n87821|0.75\n87822|0.30556\n87823|0.80556\n87824|0.43056\n87825|0.59722\n87826|0.875\n87827|0.625\n87828|0.66667\n87829|0.48611\n87830|0.51389\n87831|0.65278\n87832|0.55556\n87833|0.55556\n87834|0.5\n87835|0.40278\n87836|0.5\n87837|0.5\n87838|0.55556\n87839|0.61111\n87840|0.55556\n87841|0.65278\n87842|0.56944\n87843|0.51389\n87844|0.52778\n87845|0.63889\n87846|0.59722\n87847|0.59722\n87848|0.52778\n87849|0.61111\n87850|0.5\n87851|0.58333\n87852|0.54167\n87853|0.55556\n87854|0.54167\n87855|0.56944\n87856|0.5\n87857|0.55556\n87858|0.5\n87859|0.5\n87860|0.77778\n87861|0.55556\n87862|0.31944\n87863|0.59722\n87864|0.47222\n87865|0.51389\n87866|0.51389\n87867|0.33333\n87868|0.48611\n87869|0.72222\n87870|0.58333\n87871|0.70833\n87872|0.70833\n87873|0.70833\n87874|0.69444\n87875|0.55556\n87876|0.61111\n87877|0.375\n87878|0.51389\n87879|0.66667\n87880|0.47222\n87881|0.75\n87882|0.65278\n87883|0.5\n87884|0.33333\n87885|0.47222\n87886|0.55556\n87887|0.38889\n87888|0.54167\n87889|0.23611\n87890|0.44444\n87891|0.33333\n87892|0.66667\n87893|0.45833\n87894|0.40278\n87895|0.13889\n87896|0.56944\n87897|0.5\n87898|0.27778\n87899|0.5\n87900|0.33333\n87901|0.19444\n87902|0.36111\n87903|0.22222\n87904|0.61111\n87905|0.23611\n87906|0.23611\n87907|0.5\n87908|0.58333\n87909|0.66667\n87910|0.5\n87911|0.36111\n87912|0.5\n87913|0.44444\n87914|0.45833\n87915|0.34722\n87916|0.5\n87917|0.48611\n87918|0.40278\n87919|0.47222\n87920|0.58333\n87921|0.5\n87922|0.5\n87923|0.59722\n87924|0.43056\n87925|0.375\n87926|0.26389\n87927|0.22222\n87928|0.30556\n87929|0.375\n87930|0.027778\n87931|0.013889\n87932|0.375\n87933|0.43056\n87934|0.65278\n87935|0.47222\n87936|0.44444\n87937|0.25\n87938|0.375\n87939|0.41667\n87940|0.29167\n87941|0.18056\n87942|0.48611\n87943|0.59722\n87944|0.43056\n87945|0.25\n87946|0.47222\n87947|0.47222\n87948|0.56944\n87949|0.66667\n87950|0.54167\n87951|0.55556\n87952|0.69444\n87953|0.5\n87954|0.55556\n87955|0.5\n87956|0.5\n87957|0.5\n87958|0.5\n87959|0.5\n87960|0.65278\n87961|0.5\n87962|0.38889\n87963|0.52778\n87964|0.44444\n87965|0.38889\n87966|0.66667\n87967|0.72222\n87968|0.69444\n87969|0.75\n87970|0.34722\n87971|0.56944\n87972|0.5\n87973|0.40278\n87974|0.5\n87975|0.5\n87976|0.66667\n87977|0.88889\n87978|0.5\n87979|0.54167\n87980|0.36111\n87981|0.5\n87982|0.5\n87983|0.56944\n87984|0.66667\n87985|0.625\n87986|0.65278\n87987|0.625\n87988|0.72222\n87989|0.40278\n87990|0.41667\n87991|0.5\n87992|0.38889\n87993|0.59722\n87994|0.68056\n87995|0.44444\n87996|0.36111\n87997|0.45833\n87998|0.5\n87999|0.61111\n88000|0.58333\n88001|0.33333\n88002|0.70833\n88003|0.5\n88004|0.48611\n88005|0.5\n88006|0.73611\n88007|0.48611\n88008|0.5\n88009|0.56944\n88010|0.5\n88011|0.66667\n88012|0.55556\n88013|0.33333\n88014|0.44444\n88015|0.66667\n88016|0.77778\n88017|0.75\n88018|0.72222\n88019|0.72222\n88020|0.58333\n88021|0.45833\n88022|0.5\n88023|0.38889\n88024|0.63889\n88025|0.47222\n88026|0.5\n88027|0.5\n88028|0.5\n88029|0.51389\n88030|0.5\n88031|0.47222\n88032|0.75\n88033|0.33333\n88034|0.5\n88035|0.66667\n88036|0.45833\n88037|0.45833\n88038|0.79167\n88039|0.86111\n88040|0.63889\n88041|0.55556\n88042|0.5\n88043|0.80556\n88044|0.5\n88045|0.65278\n88046|0.44444\n88047|0.77778\n88048|0.625\n88049|0.5\n88050|0.84722\n88051|0.41667\n88052|0.51389\n88053|0.66667\n88054|0.66667\n88055|0.25\n88056|0.16667\n88057|0.94444\n88058|0.625\n88059|0.52778\n88060|0.375\n88061|0.55556\n88062|0.5\n88063|0.38889\n88064|0.65278\n88065|0.75\n88066|0.65278\n88067|0.54167\n88068|0.56944\n88069|0.5\n88070|0.51389\n88071|0.5\n88072|0.5\n88073|0.44444\n88074|0.48611\n88075|0.5\n88076|0.5\n88077|0.625\n88078|0.70833\n88079|0.55556\n88080|0.5\n88081|0.5\n88082|0.55556\n88083|0.52778\n88084|0.77778\n88085|0.81944\n88086|0.75\n88087|0.5\n88088|0.56944\n88089|0.54167\n88090|0.55556\n88091|0.5\n88092|0.59722\n88093|0.5\n88094|0.54167\n88095|0.31944\n88096|0.26389\n88097|0.25\n88098|0.30556\n88099|0.70833\n88100|0.66667\n88101|0.56944\n88102|0.47222\n88103|0.51389\n88104|0.61111\n88105|0.38889\n88106|0.77778\n88107|0.51389\n88108|0.41667\n88109|0.54167\n88110|0.72222\n88111|0.52778\n88112|0.45833\n88113|0.36111\n88114|0.52778\n88115|0.72222\n88116|0.72222\n88117|0.61111\n88118|0.48611\n88119|0.51389\n88120|0.5\n88121|0.5\n88122|0.5\n88123|0.5\n88124|0.5\n88125|0.70833\n88126|0.56944\n88127|0.66667\n88128|0.36111\n88129|0.38889\n88130|0.48611\n88131|0.54167\n88132|0.66667\n88133|0.75\n88134|0.375\n88135|0.68056\n88136|0.72222\n88137|0.55556\n88138|0.51389\n88139|0.72222\n88140|0.69444\n88141|0.66667\n88142|0.69444\n88143|0.72222\n88144|0.76389\n88145|0.5\n88146|0.58333\n88147|0.41667\n88148|0.5\n88149|0.5\n88150|0.56944\n88151|0.51389\n88152|0.5\n88153|0.36111\n88154|0.51389\n88155|0.5\n88156|0.45833\n88157|0.5\n88158|0.5\n88159|0.55556\n88160|0.5\n88161|0.5\n88162|0.54167\n88163|0.5\n88164|0.51389\n88165|0.51389\n88166|0.5\n88167|0.5\n88168|0.5\n88169|0.75\n88170|0.5\n88171|0.61111\n88172|0.5\n88173|0.5\n88174|0.72222\n88175|0.5\n88176|0.5\n88177|0.5\n88178|0.5\n88179|0.51389\n88180|0.54167\n88181|0.80556\n88182|0.51389\n88183|0.38889\n88184|0.56944\n88185|0.5\n88186|0.5\n88187|0.5\n88188|0.5\n88189|0.47222\n88190|0.5\n88191|0.55556\n88192|0.5\n88193|0.47222\n88194|0.55556\n88195|0.5\n88196|0.5\n88197|0.69444\n88198|0.5\n88199|0.68056\n88200|0.5\n88201|0.58333\n88202|0.5\n88203|0.56944\n88204|0.55556\n88205|0.51389\n88206|0.5\n88207|0.44444\n88208|0.5\n88209|0.55556\n88210|0.5\n88211|0.45833\n88212|0.5\n88213|0.5\n88214|0.69444\n88215|0.55556\n88216|0.54167\n88217|0.125\n88218|0.5\n88219|0.5\n88220|0.5\n88221|0.38889\n88222|0.5\n88223|0.48611\n88224|0.79167\n88225|0.72222\n88226|0.5\n88227|0.5\n88228|0.51389\n88229|0.5\n88230|0.5\n88231|0.52778\n88232|0.5\n88233|0.44444\n88234|0.5\n88235|0.48611\n88236|0.5\n88237|0.51389\n88238|0.48611\n88239|0.51389\n88240|0.5\n88241|0.47222\n88242|0.5\n88243|0.5\n88244|0.51389\n88245|0.5\n88246|0.5\n88247|0.5\n88248|0.27778\n88249|0.76389\n88250|0.5\n88251|0.70833\n88252|0.5\n88253|0.41667\n88254|0.5\n88255|0.5\n88256|0.5\n88257|0.61111\n88258|0.55556\n88259|0.59722\n88260|0.5\n88261|0.5\n88262|0.51389\n88263|0.5\n88264|0.5\n88265|0.75\n88266|0.55556\n88267|0.59722\n88268|0.5\n88269|0.5\n88270|0.61111\n88271|0.41667\n88272|0.51389\n88273|0.55556\n88274|0.54167\n88275|0.5\n88276|0.55556\n88277|0.56944\n88278|0.5\n88279|0.5\n88280|0.63889\n88281|0.5\n88282|0.5\n88283|0.5\n88284|0.5\n88285|0.5\n88286|0.5\n88287|0.5\n88288|0.5\n88289|0.75\n88290|0.5\n88291|0.54167\n88292|0.81944\n88293|0.5\n88294|0.5\n88295|0.61111\n88296|0.5\n88297|0.65278\n88298|0.5\n88299|0.5\n88300|0.55556\n88301|0.5\n88302|0.77778\n88303|0.65278\n88304|0.5\n88305|0.61111\n88306|0.61111\n88307|0.45833\n88308|0.5\n88309|0.44444\n88310|0.58333\n88311|0.47222\n88312|0.69444\n88313|0.41667\n88314|0.77778\n88315|0.5\n88316|0.54167\n88317|0.5\n88318|0.54167\n88319|0.5\n88320|0.52778\n88321|0.875\n88322|0.5\n88323|0.5\n88324|0.80556\n88325|0.72222\n88326|0.73611\n88327|0.5\n88328|0.5\n88329|0.59722\n88330|0.44444\n88331|0.5\n88332|0.625\n88333|0.44444\n88334|0.34722\n88335|0.625\n88336|0.63889\n88337|0.40278\n88338|0.5\n88339|0.69444\n88340|0.40278\n88341|0.58333\n88342|0.5\n88343|0.63889\n88344|0.44444\n88345|0.56944\n88346|0.44444\n88347|0.40278\n88348|0.61111\n88349|0.44444\n88350|0.44444\n88351|0.5\n88352|0.48611\n88353|0.51389\n88354|0.83333\n88355|0.65278\n88356|0.45833\n88357|0.27778\n88358|0.58333\n88359|0.77778\n88360|0.52778\n88361|0.51389\n88362|0.5\n88363|0.63889\n88364|0.54167\n88365|0.45833\n88366|0.72222\n88367|0.5\n88368|0.86111\n88369|0.55556\n88370|0.56944\n88371|0.52778\n88372|0.43056\n88373|0.44444\n88374|0.51389\n88375|0.76389\n88376|0.65278\n88377|0.76389\n88378|0.48611\n88379|0.61111\n88380|0.51389\n88381|0.5\n88382|0.27778\n88383|0.58333\n88384|0.5\n88385|0.5\n88386|0.51389\n88387|0.33333\n88388|0.625\n88389|0.5\n88390|0.5\n88391|0.5\n88392|0.55556\n88393|0.54167\n88394|0.5\n88395|0.58333\n88396|0.58333\n88397|0.5\n88398|0.5\n88399|0.44444\n88400|0.51389\n88401|0.66667\n88402|0.65278\n88403|0.41667\n88404|0.5\n88405|0.5\n88406|0.55556\n88407|0.56944\n88408|0.54167\n88409|0.34722\n88410|0.5\n88411|0.45833\n88412|0.72222\n88413|0.58333\n88414|0.38889\n88415|0.5\n88416|0.45833\n88417|0.45833\n88418|0.63889\n88419|0.54167\n88420|0.61111\n88421|0.58333\n88422|0.5\n88423|0.5\n88424|0.55556\n88425|0.69444\n88426|0.48611\n88427|0.58333\n88428|0.58333\n88429|0.5\n88430|0.55556\n88431|0.45833\n88432|0.51389\n88433|0.47222\n88434|0.16667\n88435|0.65278\n88436|0.72222\n88437|0.5\n88438|0.65278\n88439|0.51389\n88440|0.47222\n88441|0.52778\n88442|0.83333\n88443|0.79167\n88444|0.72222\n88445|0.5\n88446|0.66667\n88447|0.58333\n88448|0.16667\n88449|0.33333\n88450|0.5\n88451|0.38889\n88452|0.52778\n88453|0.47222\n88454|0.5\n88455|0.5\n88456|0.52778\n88457|0.5\n88458|0.5\n88459|0.27778\n88460|0.61111\n88461|0.55556\n88462|0.45833\n88463|0.5\n88464|0.58333\n88465|0.43056\n88466|0.75\n88467|0.80556\n88468|0.5\n88469|0.5\n88470|0.66667\n88471|0.5\n88472|0.61111\n88473|0.27778\n88474|0.5\n88475|0.56944\n88476|0.86111\n88477|0.5\n88478|0.41667\n88479|0.56944\n88480|0.5\n88481|0.5\n88482|0.59722\n88483|0.5\n88484|0.5\n88485|0.56944\n88486|0.70833\n88487|0.83333\n88488|0.55556\n88489|0.5\n88490|0.5\n88491|0.5\n88492|0.41667\n88493|0.5\n88494|0.58333\n88495|0.52778\n88496|0.5\n88497|0.5\n88498|0.51389\n88499|0.47222\n88500|0.5\n88501|0.84722\n88502|0.34722\n88503|0.55556\n88504|0.43056\n88505|0.44444\n88506|0.44444\n88507|0.81944\n88508|0.31944\n88509|0.72222\n88510|0.5\n88511|0.43056\n88512|0.51389\n88513|0.625\n88514|0.44444\n88515|0.66667\n88516|0.59722\n88517|0.38889\n88518|0.45833\n88519|0.5\n88520|0.47222\n88521|0.31944\n88522|0.69444\n88523|0.55556\n88524|0.51389\n88525|0.5\n88526|0.55556\n88527|0.59722\n88528|0.63889\n88529|0.44444\n88530|0.31944\n88531|0.59722\n88532|0.56944\n88533|0.55556\n88534|0.22222\n88535|0.11111\n88536|0.27778\n88537|0.52778\n88538|0.5\n88539|0.625\n88540|0.84722\n88541|0.54167\n88542|0.63889\n88543|0.52778\n88544|0.54167\n88545|0.81944\n88546|0.5\n88547|0.52778\n88548|0.43056\n88549|0.73611\n88550|0.61111\n88551|0.52778\n88552|0.72222\n88553|0.40278\n88554|0.55556\n88555|0.61111\n88556|0.5\n88557|0.58333\n88558|0.45833\n88559|0.72222\n88560|0.52778\n88561|0.5\n88562|0.5\n88563|0.83333\n88564|0.61111\n88565|0.80556\n88566|0.55556\n88567|0.56944\n88568|0.76389\n88569|0.55556\n88570|0.68056\n88571|0.5\n88572|0.70833\n88573|0.5\n88574|0.5\n88575|0.625\n88576|0.5\n88577|0.55556\n88578|0.5\n88579|0.66667\n88580|0.5\n88581|0.52778\n88582|0.58333\n88583|0.625\n88584|0.45833\n88585|0.52778\n88586|0.68056\n88587|0.5\n88588|0.44444\n88589|0.5\n88590|0.5\n88591|0.375\n88592|0.45833\n88593|0.81944\n88594|0.5\n88595|0.68056\n88596|0.63889\n88597|0.66667\n88598|0.76389\n88599|0.83333\n88600|0.83333\n88601|0.66667\n88602|0.47222\n88603|0.5\n88604|0.5\n88605|0.63889\n88606|0.54167\n88607|0.375\n88608|0.72222\n88609|0.56944\n88610|0.30556\n88611|0.79167\n88612|0.51389\n88613|0.33333\n88614|0.51389\n88615|0.51389\n88616|0.31944\n88617|0.72222\n88618|0.5\n88619|0.29167\n88620|0.68056\n88621|0.5\n88622|0.5\n88623|0.77778\n88624|0.625\n88625|0.5\n88626|0.44444\n88627|0.5\n88628|0.5\n88629|0.5\n88630|0.77778\n88631|0.70833\n88632|0.58333\n88633|0.5\n88634|0.55556\n88635|0.58333\n88636|0.51389\n88637|0.5\n88638|0.66667\n88639|0.55556\n88640|0.70833\n88641|0.45833\n88642|0.18056\n88643|0.5\n88644|0.63889\n88645|0.55556\n88646|0.40278\n88647|0.51389\n88648|0.58333\n88649|0.59722\n88650|0.5\n88651|0.63889\n88652|0.5\n88653|0.5\n88654|0.5\n88655|0.47222\n88656|0.70833\n88657|0.47222\n88658|0.70833\n88659|0.51389\n88660|0.5\n88661|0.5\n88662|0.55556\n88663|0.33333\n88664|0.76389\n88665|0.55556\n88666|0.75\n88667|0.59722\n88668|0.5\n88669|0.5\n88670|0.55556\n88671|0.65278\n88672|0.65278\n88673|0.58333\n88674|0.52778\n88675|0.65278\n88676|0.36111\n88677|0.5\n88678|0.59722\n88679|0.52778\n88680|0.51389\n88681|0.52778\n88682|0.5\n88683|0.63889\n88684|0.45833\n88685|0.36111\n88686|0.40278\n88687|0.69444\n88688|0.56944\n88689|0.52778\n88690|0.44444\n88691|0.58333\n88692|0.59722\n88693|0.41667\n88694|0.5\n88695|0.5\n88696|0.45833\n88697|0.5\n88698|0.5\n88699|0.55556\n88700|0.40278\n88701|0.20833\n88702|0.5\n88703|0.5\n88704|0.48611\n88705|0.5\n88706|0.5\n88707|0.80556\n88708|0.52778\n88709|0.5\n88710|0.45833\n88711|0.59722\n88712|0.5\n88713|0.43056\n88714|0.94444\n88715|0.44444\n88716|0.5\n88717|0.54167\n88718|0.52778\n88719|0.69444\n88720|0.30556\n88721|0.45833\n88722|0.5\n88723|0.5\n88724|0.5\n88725|0.5\n88726|0.48611\n88727|0.5\n88728|0.51389\n88729|0.51389\n88730|0.58333\n88731|0.79167\n88732|0.5\n88733|0.5\n88734|0.5\n88735|0.61111\n88736|0.61111\n88737|0.41667\n88738|0.38889\n88739|0.5\n88740|0.48611\n88741|0.72222\n88742|0.56944\n88743|0.56944\n88744|0.58333\n88745|0.72222\n88746|0.76389\n88747|0.88889\n88748|0.48611\n88749|0.34722\n88750|0.5\n88751|0.52778\n88752|0.56944\n88753|0.51389\n88754|0.5\n88755|0.5\n88756|0.55556\n88757|0.44444\n88758|0.55556\n88759|0.43056\n88760|0.40278\n88761|0.56944\n88762|0.5\n88763|0.5\n88764|0.5\n88765|0.41667\n88766|0.52778\n88767|0.61111\n88768|0.5\n88769|0.63889\n88770|0.55556\n88771|0.59722\n88772|0.58333\n88773|0.54167\n88774|0.68056\n88775|0.73611\n88776|0.48611\n88777|0.43056\n88778|0.5\n88779|0.44444\n88780|0.5\n88781|0.5\n88782|0.5\n88783|0.61111\n88784|0.44444\n88785|0.65278\n88786|0.51389\n88787|0.5\n88788|0.61111\n88789|0.5\n88790|0.5\n88791|0.5\n88792|0.65278\n88793|0.56944\n88794|0.56944\n88795|0.61111\n88796|0.5\n88797|0.55556\n88798|0.66667\n88799|0.52778\n88800|0.51389\n88801|0.34722\n88802|0.65278\n88803|0.5\n88804|0.5\n88805|0.5\n88806|0.30556\n88807|0.44444\n88808|0.38889\n88809|0.44444\n88810|0.52778\n88811|0.5\n88812|0.63889\n88813|0.55556\n88814|0.54167\n88815|0.5\n88816|0.55556\n88817|0.47222\n88818|0.5\n88819|0.72222\n88820|0.41667\n88821|0.875\n88822|0.5\n88823|0.66667\n88824|0.5\n88825|0.5\n88826|0.55556\n88827|0.33333\n88828|0.5\n88829|0.5\n88830|0.5\n88831|0.34722\n88832|0.5\n88833|0.5\n88834|0.52778\n88835|0.36111\n88836|0.70833\n88837|0.55556\n88838|0.86111\n88839|0.22222\n88840|0.83333\n88841|0.375\n88842|0.76389\n88843|0.625\n88844|0.5\n88845|0.79167\n88846|0.52778\n88847|0.44444\n88848|0.5\n88849|0.54167\n88850|0.5\n88851|0.59722\n88852|0.5\n88853|0.5\n88854|0.77778\n88855|0.5\n88856|0.44444\n88857|0.63889\n88858|0.65278\n88859|0.51389\n88860|0.51389\n88861|0.52778\n88862|0.48611\n88863|0.58333\n88864|0.56944\n88865|0.68056\n88866|0.59722\n88867|0.61111\n88868|0.61111\n88869|0.61111\n88870|0.68056\n88871|0.58333\n88872|0.52778\n88873|0.68056\n88874|0.55556\n88875|0.61111\n88876|0.40278\n88877|0.5\n88878|0.51389\n88879|0.44444\n88880|0.63889\n88881|0.5\n88882|0.55556\n88883|0.55556\n88884|0.55556\n88885|0.56944\n88886|0.63889\n88887|0.5\n88888|0.63889\n88889|0.69444\n88890|0.59722\n88891|0.44444\n88892|0.5\n88893|0.5\n88894|0.68056\n88895|0.5\n88896|0.55556\n88897|0.5\n88898|0.26389\n88899|0.5\n88900|0.86111\n88901|0.77778\n88902|0.5\n88903|0.5\n88904|0.5\n88905|0.56944\n88906|0.79167\n88907|0.63889\n88908|0.5\n88909|0.59722\n88910|0.51389\n88911|0.5\n88912|0.5\n88913|0.63889\n88914|0.58333\n88915|0.5\n88916|0.75\n88917|0.55556\n88918|0.76389\n88919|0.5\n88920|0.44444\n88921|0.51389\n88922|0.55556\n88923|0.58333\n88924|0.70833\n88925|0.65278\n88926|0.61111\n88927|0.61111\n88928|0.58333\n88929|0.63889\n88930|0.68056\n88931|0.51389\n88932|0.625\n88933|0.5\n88934|0.5\n88935|0.48611\n88936|0.55556\n88937|0.5\n88938|0.52778\n88939|0.72222\n88940|0.47222\n88941|0.5\n88942|0.5\n88943|0.47222\n88944|0.5\n88945|0.43056\n88946|0.61111\n88947|0.5\n88948|0.5\n88949|0.54167\n88950|0.5\n88951|0.59722\n88952|0.5\n88953|0.45833\n88954|0.55556\n88955|0.51389\n88956|0.66667\n88957|0.81944\n88958|0.5\n88959|0.5\n88960|0.63889\n88961|0.625\n88962|0.44444\n88963|0.73611\n88964|0.80556\n88965|0.94444\n88966|0.90278\n88967|0.88889\n88968|0.77778\n88969|0.83333\n88970|0.94444\n88971|0.875\n88972|0.84722\n88973|0.625\n88974|0.41667\n88975|0.65278\n88976|0.80556\n88977|0.5\n88978|0.5\n88979|0.45833\n88980|0.51389\n88981|0.5\n88982|0.5\n88983|0.61111\n88984|0.47222\n88985|0.69444\n88986|0.5\n88987|0.33333\n88988|0.48611\n88989|0.51389\n88990|0.66667\n88991|0.40278\n88992|0.56944\n88993|0.44444\n88994|0.47222\n88995|0.44444\n88996|0.5\n88997|0.48611\n88998|0.38889\n88999|0.70833\n89000|0.5\n89001|0.5\n89002|0.59722\n89003|0.52778\n89004|0.51389\n89005|0.58333\n89006|0.5\n89007|0.81944\n89008|0.69444\n89009|0.97222\n89010|0.90278\n89011|0.5\n89012|0.5\n89013|0.68056\n89014|0.5\n89015|0.58333\n89016|0.875\n89017|0.69444\n89018|0.43056\n89019|0.55556\n89020|0.625\n89021|0.55556\n89022|0.72222\n89023|0.59722\n89024|0.97222\n89025|0.36111\n89026|0.66667\n89027|0.59722\n89028|0.93056\n89029|0.5\n89030|0.61111\n89031|0.51389\n89032|0.875\n89033|0.63889\n89034|0.69444\n89035|0.61111\n89036|0.55556\n89037|0.5\n89038|0.40278\n89039|0.5\n89040|0.61111\n89041|0.5\n89042|0.76389\n89043|0.58333\n89044|0.51389\n89045|0.52778\n89046|0.58333\n89047|0.77778\n89048|0.61111\n89049|0.66667\n89050|0.83333\n89051|0.90278\n89052|0.83333\n89053|0.34722\n89054|0.81944\n89055|0.76389\n89056|0.44444\n89057|0.61111\n89058|0.90278\n89059|0.54167\n89060|0.5\n89061|0.29167\n89062|0.59722\n89063|0.80556\n89064|0.38889\n89065|0.47222\n89066|0.81944\n89067|0.5\n89068|0.51389\n89069|0.68056\n89070|0.52778\n89071|0.44444\n89072|0.51389\n89073|0.72222\n89074|0.81944\n89075|0.81944\n89076|0.5\n89077|0.5\n89078|0.25\n89079|0.83333\n89080|0.5\n89081|0.52778\n89082|0.61111\n89083|0.63889\n89084|0.51389\n89085|0.5\n89086|0.5\n89087|0.56944\n89088|0.47222\n89089|0.88889\n89090|0.58333\n89091|0.5\n89092|0.77778\n89093|0.61111\n89094|0.38889\n89095|0.5\n89096|0.90278\n89097|0.77778\n89098|0.5\n89099|0.44444\n89100|0.5\n89101|0.83333\n89102|0.61111\n89103|0.38889\n89104|0.81944\n89105|0.48611\n89106|0.77778\n89107|0.48611\n89108|0.48611\n89109|0.47222\n89110|0.44444\n89111|0.44444\n89112|0.66667\n89113|0.5\n89114|0.5\n89115|0.44444\n89116|0.72222\n89117|0.88889\n89118|0.5\n89119|0.63889\n89120|0.5\n89121|0.58333\n89122|0.47222\n89123|0.47222\n89124|0.44444\n89125|0.5\n89126|0.54167\n89127|0.55556\n89128|0.31944\n89129|0.5\n89130|0.31944\n89131|0.5\n89132|0.5\n89133|0.5\n89134|0.5\n89135|0.625\n89136|0.5\n89137|0.77778\n89138|0.47222\n89139|0.33333\n89140|0.58333\n89141|0.55556\n89142|0.38889\n89143|0.51389\n89144|0.5\n89145|0.76389\n89146|0.61111\n89147|0.52778\n89148|0.58333\n89149|0.75\n89150|0.29167\n89151|0.5\n89152|0.5\n89153|0.5\n89154|0.81944\n89155|0.77778\n89156|0.68056\n89157|0.56944\n89158|0.5\n89159|0.5\n89160|0.56944\n89161|0.76389\n89162|0.65278\n89163|0.5\n89164|0.61111\n89165|0.56944\n89166|0.52778\n89167|0.54167\n89168|0.68056\n89169|0.48611\n89170|0.48611\n89171|0.5\n89172|0.52778\n89173|0.48611\n89174|0.52778\n89175|0.58333\n89176|0.54167\n89177|0.48611\n89178|0.33333\n89179|0.47222\n89180|0.36111\n89181|0.44444\n89182|0.70833\n89183|0.52778\n89184|0.63889\n89185|0.5\n89186|0.54167\n89187|0.5\n89188|0.59722\n89189|0.61111\n89190|0.44444\n89191|0.34722\n89192|0.83333\n89193|0.72222\n89194|0.65278\n89195|0.5\n89196|0.5\n89197|0.19444\n89198|0.48611\n89199|0.51389\n89200|0.86111\n89201|0.16667\n89202|0.5\n89203|0.625\n89204|0.70833\n89205|0.45833\n89206|0.5\n89207|0.5\n89208|0.80556\n89209|0.65278\n89210|0.5\n89211|0.31944\n89212|0.54167\n89213|0.45833\n89214|0.5\n89215|0.625\n89216|0.625\n89217|0.5\n89218|0.58333\n89219|0.5\n89220|0.63889\n89221|0.56944\n89222|0.5\n89223|0.52778\n89224|0.5\n89225|0.47222\n89226|0.5\n89227|0.5\n89228|0.36111\n89229|0.65278\n89230|0.5\n89231|0.61111\n89232|0.44444\n89233|0.54167\n89234|0.51389\n89235|0.48611\n89236|0.63889\n89237|0.61111\n89238|0.30556\n89239|0.16667\n89240|0.79167\n89241|0.88889\n89242|0.625\n89243|0.41667\n89244|0.5\n89245|0.56944\n89246|0.51389\n89247|0.61111\n89248|0.5\n89249|0.72222\n89250|0.58333\n89251|0.47222\n89252|0.45833\n89253|0.66667\n89254|0.56944\n89255|0.77778\n89256|0.69444\n89257|0.73611\n89258|0.73611\n89259|0.83333\n89260|0.63889\n89261|0.51389\n89262|0.83333\n89263|0.83333\n89264|0.59722\n89265|0.5\n89266|0.52778\n89267|0.66667\n89268|0.79167\n89269|0.84722\n89270|0.77778\n89271|0.73611\n89272|0.63889\n89273|0.66667\n89274|0.76389\n89275|0.52778\n89276|0.54167\n89277|0.76389\n89278|0.66667\n89279|0.79167\n89280|0.77778\n89281|0.5\n89282|0.5\n89283|0.5\n89284|0.52778\n89285|0.5\n89286|0.33333\n89287|0.68056\n89288|0.59722\n89289|0.63889\n89290|0.76389\n89291|0.84722\n89292|0.68056\n89293|0.79167\n89294|0.69444\n89295|0.51389\n89296|0.79167\n89297|0.51389\n89298|0.43056\n89299|0.54167\n89300|0.76389\n89301|0.68056\n89302|0.61111\n89303|0.68056\n89304|0.61111\n89305|0.61111\n89306|0.66667\n89307|0.77778\n89308|0.68056\n89309|0.72222\n89310|0.79167\n89311|0.40278\n89312|0.51389\n89313|0.5\n89314|0.5\n89315|0.73611\n89316|0.5\n89317|0.5\n89318|0.5\n89319|0.44444\n89320|0.36111\n89321|0.41667\n89322|0.36111\n89323|0.5\n89324|0.5\n89325|0.5\n89326|0.51389\n89327|0.5\n89328|0.44444\n89329|0.625\n89330|0.52778\n89331|0.56944\n89332|0.72222\n89333|0.69444\n89334|0.56944\n89335|0.72222\n89336|0.38889\n89337|0.54167\n89338|0.5\n89339|0.65278\n89340|0.5\n89341|0.47222\n89342|0.44444\n89343|0.38889\n89344|0.33333\n89345|0.44444\n89346|0.54167\n89347|0.5\n89348|0.69444\n89349|0.59722\n89350|0.48611\n89351|0.61111\n89352|0.5\n89353|0.79167\n89354|0.5\n89355|0.54167\n89356|0.5\n89357|0.5\n89358|0.5\n89359|0.5\n89360|0.80556\n89361|0.56944\n89362|0.625\n89363|0.58333\n89364|0.5\n89365|0.45833\n89366|0.55556\n89367|0.88889\n89368|0.58333\n89369|0.55556\n89370|0.52778\n89371|0.5\n89372|0.54167\n89373|0.48611\n89374|0.44444\n89375|0.75\n89376|0.66667\n89377|0.51389\n89378|0.61111\n89379|0.40278\n89380|0.5\n89381|0.5\n89382|0.5\n89383|0.5\n89384|0.48611\n89385|0.5\n89386|0.5\n89387|0.5\n89388|0.55556\n89389|0.76389\n89390|0.47222\n89391|0.5\n89392|0.59722\n89393|0.61111\n89394|0.5\n89395|0.5\n89396|0.88889\n89397|0.5\n89398|0.59722\n89399|0.52778\n89400|0.80556\n89401|0.52778\n89402|0.52778\n89403|0.48611\n89404|0.56944\n89405|0.44444\n89406|0.45833\n89407|0.45833\n89408|0.5\n89409|0.5\n89410|0.5\n89411|0.44444\n89412|0.625\n89413|0.26389\n89414|0.36111\n89415|0.72222\n89416|0.47222\n89417|0.5\n89418|0.55556\n89419|0.625\n89420|0.5\n89421|0.77778\n89422|0.41667\n89423|0.56944\n89424|0.58333\n89425|0.5\n89426|0.56944\n89427|0.48611\n89428|0.51389\n89429|0.5\n89430|0.66667\n89431|0.45833\n89432|0.5\n89433|0.66667\n89434|0.51389\n89435|0.56944\n89436|0.55556\n89437|0.56944\n89438|0.54167\n89439|0.75\n89440|0.5\n89441|0.59722\n89442|0.45833\n89443|0.44444\n89444|0.45833\n89445|0.55556\n89446|0.5\n89447|0.34722\n89448|0.36111\n89449|0.63889\n89450|0.61111\n89451|0.54167\n89452|0.5\n89453|0.5\n89454|0.48611\n89455|0.5\n89456|0.5\n89457|0.47222\n89458|0.55556\n89459|0.38889\n89460|0.44444\n89461|0.5\n89462|0.44444\n89463|0.5\n89464|0.61111\n89465|0.66667\n89466|0.5\n89467|0.55556\n89468|0.65278\n89469|0.58333\n89470|0.51389\n89471|0.625\n89472|0.55556\n89473|0.875\n89474|0.5\n89475|0.5\n89476|0.51389\n89477|0.44444\n89478|0.47222\n89479|0.51389\n89480|0.55556\n89481|0.61111\n89482|0.56944\n89483|0.5\n89484|0.5\n89485|0.58333\n89486|0.5\n89487|0.5\n89488|0.44444\n89489|0.59722\n89490|0.63889\n89491|0.55556\n89492|0.5\n89493|0.69444\n89494|0.61111\n89495|0.40278\n89496|0.59722\n89497|0.55556\n89498|0.5\n89499|0.55556\n89500|0.56944\n89501|0.47222\n89502|0.55556\n89503|0.83333\n89504|0.59722\n89505|0.5\n89506|0.5\n89507|0.80556\n89508|0.5\n89509|0.66667\n89510|0.61111\n89511|0.5\n89512|0.43056\n89513|0.5\n89514|0.40278\n89515|0.55556\n89516|0.5\n89517|0.5\n89518|0.44444\n89519|0.73611\n89520|0.5\n89521|0.5\n89522|0.5\n89523|0.5\n89524|0.59722\n89525|0.5\n89526|0.75\n89527|0.80556\n89528|0.61111\n89529|0.55556\n89530|0.5\n89531|0.56944\n89532|0.625\n89533|0.58333\n89534|0.66667\n89535|0.66667\n89536|0.73611\n89537|0.63889\n89538|0.5\n89539|0.69444\n89540|0.56944\n89541|0.5\n89542|0.58333\n89543|0.5\n89544|0.55556\n89545|0.88889\n89546|0.76389\n89547|0.5\n89548|0.5\n89549|0.79167\n89550|0.61111\n89551|0.56944\n89552|0.83333\n89553|0.66667\n89554|0.40278\n89555|0.51389\n89556|0.54167\n89557|0.56944\n89558|0.5\n89559|0.48611\n89560|0.5\n89561|0.77778\n89562|0.54167\n89563|0.5\n89564|0.55556\n89565|0.5\n89566|0.5\n89567|0.63889\n89568|0.80556\n89569|0.5\n89570|0.5\n89571|0.5\n89572|0.5\n89573|0.51389\n89574|0.58333\n89575|0.54167\n89576|0.625\n89577|0.5\n89578|0.48611\n89579|0.5\n89580|0.30556\n89581|0.51389\n89582|0.5\n89583|0.48611\n89584|0.51389\n89585|0.61111\n89586|0.45833\n89587|0.5\n89588|0.83333\n89589|0.83333\n89590|0.79167\n89591|0.86111\n89592|0.875\n89593|0.66667\n89594|0.75\n89595|0.72222\n89596|0.75\n89597|0.72222\n89598|0.44444\n89599|0.91667\n89600|0.91667\n89601|0.93056\n89602|0.94444\n89603|0.79167\n89604|1\n89605|0.76389\n89606|0.70833\n89607|1\n89608|0.97222\n89609|0.94444\n89610|0.77778\n89611|0.83333\n89612|0.72222\n89613|0.75\n89614|0.80556\n89615|0.76389\n89616|0.375\n89617|0.88889\n89618|0.22222\n89619|0.91667\n89620|0.79167\n89621|0.625\n89622|0.91667\n89623|0.47222\n89624|0.86111\n89625|0.83333\n89626|0.79167\n89627|0.44444\n89628|0.65278\n89629|0.5\n89630|0.5\n89631|0.45833\n89632|0.51389\n89633|0.51389\n89634|0.75\n89635|0.5\n89636|0.52778\n89637|0.27778\n89638|0.5\n89639|0.52778\n89640|0.5\n89641|0.68056\n89642|0.77778\n89643|0.5\n89644|0.55556\n89645|0.75\n89646|0.68056\n89647|0.33333\n89648|0.66667\n89649|0.55556\n89650|0.51389\n89651|0.54167\n89652|0.38889\n89653|0.45833\n89654|0.47222\n89655|0.54167\n89656|0.40278\n89657|0.5\n89658|0.76389\n89659|0.5\n89660|0.66667\n89661|0.5\n89662|0.5\n89663|0.88889\n89664|0.5\n89665|0.5\n89666|0.5\n89667|0.59722\n89668|0.47222\n89669|0.73611\n89670|0.72222\n89671|0.45833\n89672|0.38889\n89673|0.51389\n89674|0.43056\n89675|0.59722\n89676|0.625\n89677|0.59722\n89678|0.5\n89679|0.5\n89680|0.41667\n89681|0.5\n89682|0.47222\n89683|0.44444\n89684|0.36111\n89685|0.45833\n89686|0.5\n89687|0.69444\n89688|0.26389\n89689|0.40278\n89690|0.73611\n89691|0.94444\n89692|0.34722\n89693|0.41667\n89694|0.48611\n89695|0.30556\n89696|0.56944\n89697|0.84722\n89698|0.48611\n89699|0.55556\n89700|0.5\n89701|0.75\n89702|0.59722\n89703|0.51389\n89704|0.54167\n89705|0.5\n89706|0.69444\n89707|0.80556\n89708|0.52778\n89709|0.5\n89710|0.59722\n89711|0.5\n89712|0.58333\n89713|0.56944\n89714|0.625\n89715|0.625\n89716|0.58333\n89717|0.54167\n89718|0.52778\n89719|0.5\n89720|0.5\n89721|0.63889\n89722|0.63889\n89723|0.5\n89724|0.5\n89725|0.66667\n89726|0.58333\n89727|0.77778\n89728|0.5\n89729|0.26389\n89730|0.5\n89731|0.52778\n89732|0.66667\n89733|0.5\n89734|0.40278\n89735|0.44444\n89736|0.51389\n89737|0.5\n89738|0.56944\n89739|0.55556\n89740|0.45833\n89741|0.58333\n89742|0.44444\n89743|0.5\n89744|0.5\n89745|0.51389\n89746|0.65278\n89747|0.51389\n89748|0.5\n89749|0.5\n89750|0.31944\n89751|0.5\n89752|0.44444\n89753|0.54167\n89754|0.5\n89755|0.5\n89756|0.55556\n89757|0.5\n89758|0.5\n89759|0.55556\n89760|0.66667\n89761|0.69444\n89762|0.5\n89763|0.83333\n89764|0.66667\n89765|0.83333\n89766|0.40278\n89767|0.40278\n89768|0.5\n89769|0.5\n89770|0.51389\n89771|0.5\n89772|0.5\n89773|0.5\n89774|0.29167\n89775|0.56944\n89776|0.41667\n89777|0.55556\n89778|0.52778\n89779|0.70833\n89780|0.77778\n89781|0.5\n89782|0.31944\n89783|0.68056\n89784|0.5\n89785|0.72222\n89786|0.5\n89787|0.43056\n89788|0.58333\n89789|0.44444\n89790|0.5\n89791|0.72222\n89792|0.5\n89793|0.59722\n89794|0.18056\n89795|0.40278\n89796|0.31944\n89797|0.25\n89798|0.083333\n89799|0.34722\n89800|0.63889\n89801|0.65278\n89802|0.52778\n89803|0.48611\n89804|0.61111\n89805|0.68056\n89806|0.68056\n89807|0.72222\n89808|0.55556\n89809|0.54167\n89810|0.48611\n89811|0.44444\n89812|0.47222\n89813|0.44444\n89814|0.5\n89815|0.5\n89816|0.66667\n89817|0.30556\n89818|0.38889\n89819|0.52778\n89820|0.5\n89821|0.43056\n89822|0.38889\n89823|0.51389\n89824|0.72222\n89825|0.69444\n89826|0.58333\n89827|0.48611\n89828|0.5\n89829|0.5\n89830|0.5\n89831|0.61111\n89832|0.45833\n89833|0.5\n89834|0.40278\n89835|0.5\n89836|0.40278\n89837|0.47222\n89838|0.54167\n89839|0.5\n89840|0.5\n89841|0.5\n89842|0.75\n89843|0.61111\n89844|0.86111\n89845|0.5\n89846|0.44444\n89847|0.5\n89848|0.5\n89849|0.5\n89850|0.5\n89851|0.33333\n89852|0.48611\n89853|0.51389\n89854|0.41667\n89855|0.25\n89856|0.61111\n89857|0.41667\n89858|0.5\n89859|0.59722\n89860|0.72222\n89861|0.72222\n89862|0.5\n89863|0.48611\n89864|0.5\n89865|0.52778\n89866|0.5\n89867|0.75\n89868|0.51389\n89869|0.40278\n89870|0.61111\n89871|0.51389\n89872|0.69444\n89873|0.51389\n89874|0.54167\n89875|0.5\n89876|0.44444\n89877|0.55556\n89878|0.61111\n89879|0.68056\n89880|0.5\n89881|0.38889\n89882|0.58333\n89883|0.5\n89884|0.54167\n89885|0.47222\n89886|0.97222\n89887|0.83333\n89888|0.88889\n89889|0.55556\n89890|0.44444\n89891|0.5\n89892|0.45833\n89893|0.51389\n89894|0.44444\n89895|0.40278\n89896|0.75\n89897|0.47222\n89898|0.66667\n89899|0.5\n89900|0.625\n89901|0.56944\n89902|0.47222\n89903|0.41667\n89904|0.45833\n89905|0.43056\n89906|0.27778\n89907|0.38889\n89908|0.5\n89909|0.5\n89910|0.5\n89911|0.5\n89912|0.5\n89913|0.68056\n89914|0.61111\n89915|0.59722\n89916|0.59722\n89917|0.5\n89918|0.5\n89919|0.61111\n89920|0.72222\n89921|0.51389\n89922|0.26389\n89923|0.56944\n89924|0.72222\n89925|0.38889\n89926|0.36111\n89927|0.61111\n89928|0.81944\n89929|0.84722\n89930|0.47222\n89931|0.44444\n89932|0.33333\n89933|0.26389\n89934|0.27778\n89935|0.26389\n89936|0.375\n89937|0.55556\n89938|0.43056\n89939|0.68056\n89940|0.5\n89941|0.5\n89942|0.38889\n89943|0.25\n89944|0.33333\n89945|0.38889\n89946|0.44444\n89947|0.45833\n89948|0.5\n89949|0.44444\n89950|0.5\n89951|0.55556\n89952|0.55556\n89953|0.31944\n89954|0.26389\n89955|0.41667\n89956|0.5\n89957|0.5\n89958|0.41667\n89959|0.33333\n89960|0.5\n89961|0.44444\n89962|0.33333\n89963|0.68056\n89964|0.47222\n89965|0.66667\n89966|0.5\n89967|0.51389\n89968|0.52778\n89969|0.68056\n89970|0.5\n89971|0.59722\n89972|0.77778\n89973|0.55556\n89974|0.38889\n89975|0.5\n89976|0.44444\n89977|0.5\n89978|0.36111\n89979|0.5\n89980|0.58333\n89981|0.5\n89982|0.27778\n89983|0.55556\n89984|0.5\n89985|0.5\n89986|0.125\n89987|0.5\n89988|0.5\n89989|0.5\n89990|0.52778\n89991|0.47222\n89992|0.56944\n89993|0.5\n89994|0.59722\n89995|0.79167\n89996|0.72222\n89997|0.54167\n89998|0.86111\n89999|0.80556\n90000|0.80556\n90001|0.84722\n90002|0.63889\n90003|0.5\n90004|0.56944\n90005|0.5\n90006|0.38889\n90007|0.48611\n90008|0.36111\n90009|0.52778\n90010|0.55556\n90011|0.47222\n90012|0.40278\n90013|0.375\n90014|0.70833\n90015|0.34722\n90016|0.29167\n90017|0.65278\n90018|0.48611\n90019|0.19444\n90020|0.5\n90021|0.48611\n90022|0.66667\n90023|0.58333\n90024|0.55556\n90025|0.55556\n90026|0.77778\n90027|0.54167\n90028|0.51389\n90029|0.54167\n90030|0.61111\n90031|0.51389\n90032|0.44444\n90033|0.59722\n90034|0.375\n90035|0.51389\n90036|0.52778\n90037|0.5\n90038|0.59722\n90039|0.5\n90040|0.55556\n90041|0.44444\n90042|0.80556\n90043|0.72222\n90044|0.5\n90045|0.65278\n90046|0.58333\n90047|0.5\n90048|0.61111\n90049|0.5\n90050|0.48611\n90051|0.51389\n90052|0.5\n90053|0.83333\n90054|0.44444\n90055|0.45833\n90056|0.5\n90057|0.5\n90058|0.5\n90059|0.63889\n90060|0.73611\n90061|0.625\n90062|0.51389\n90063|0.52778\n90064|0.5\n90065|0.5\n90066|0.5\n90067|0.76389\n90068|0.55556\n90069|0.5\n90070|0.40278\n90071|0.63889\n90072|0.79167\n90073|0.58333\n90074|0.79167\n90075|0.47222\n90076|0.5\n90077|0.56944\n90078|0.5\n90079|0.51389\n90080|0.625\n90081|0.5\n90082|0.54167\n90083|0.625\n90084|0.43056\n90085|0.44444\n90086|0.73611\n90087|0.31944\n90088|0.59722\n90089|0.75\n90090|0.59722\n90091|0.52778\n90092|0.5\n90093|0.5\n90094|0.5\n90095|0.5\n90096|0.5\n90097|0.5\n90098|0.52778\n90099|0.18056\n90100|0.58333\n90101|0.80556\n90102|0.81944\n90103|0.48611\n90104|0.61111\n90105|0.68056\n90106|0.33333\n90107|0.63889\n90108|0.5\n90109|0.44444\n90110|0.5\n90111|0.5\n90112|0.5\n90113|0.45833\n90114|0.61111\n90115|0.5\n90116|0.52778\n90117|0.41667\n90118|0.51389\n90119|0.43056\n90120|0.43056\n90121|0.5\n90122|0.77778\n90123|0.66667\n90124|0.43056\n90125|0.36111\n90126|0.58333\n90127|0.5\n90128|0.75\n90129|0.72222\n90130|0.63889\n90131|0.48611\n90132|0.5\n90133|0.27778\n90134|0.59722\n90135|0.5\n90136|0.61111\n90137|0.58333\n90138|0.625\n90139|0.66667\n90140|0.625\n90141|0.63889\n90142|0.5\n90143|0.5\n90144|0.5\n90145|0.77778\n90146|0.47222\n90147|0.5\n90148|0.5\n90149|0.52778\n90150|0.66667\n90151|0.5\n90152|0.5\n90153|0.5\n90154|0.5\n90155|0.63889\n90156|0.69444\n90157|0.68056\n90158|0.68056\n90159|0.59722\n90160|0.59722\n90161|0.55556\n90162|0.5\n90163|0.68056\n90164|0.5\n90165|0.44444\n90166|0.5\n90167|0.48611\n90168|0.54167\n90169|0.38889\n90170|0.61111\n90171|0.63889\n90172|0.40278\n90173|0.5\n90174|0.33333\n90175|0.29167\n90176|0.11111\n90177|0.51389\n90178|0.63889\n90179|0.81944\n90180|0.58333\n90181|0.59722\n90182|0.5\n90183|0.5\n90184|0.79167\n90185|0.88889\n90186|0.75\n90187|0.61111\n90188|0.625\n90189|0.625\n90190|0.63889\n90191|0.83333\n90192|0.84722\n90193|0.98611\n90194|0.88889\n90195|0.75\n90196|0.83333\n90197|0.69444\n90198|0.83333\n90199|0.63889\n90200|0.66667\n90201|0.77778\n90202|0.72222\n90203|0.66667\n90204|0.72222\n90205|0.68056\n90206|0.65278\n90207|0.79167\n90208|0.81944\n90209|0.58333\n90210|0.40278\n90211|0.48611\n90212|0.51389\n90213|0.55556\n90214|0.77778\n90215|0.48611\n90216|0.5\n90217|0.58333\n90218|0.55556\n90219|0.44444\n90220|0.58333\n90221|0.52778\n90222|0.5\n90223|0.72222\n90224|0.44444\n90225|0.54167\n90226|0.55556\n90227|0.5\n90228|0.27778\n90229|0.47222\n90230|0.51389\n90231|0.5\n90232|0.65278\n90233|0.59722\n90234|0.84722\n90235|0.61111\n90236|0.51389\n90237|0.5\n90238|0.47222\n90239|0.36111\n90240|0.84722\n90241|0.55556\n90242|0.44444\n90243|0.51389\n90244|0.59722\n90245|0.5\n90246|0.79167\n90247|0.55556\n90248|0.54167\n90249|0.55556\n90250|0.72222\n90251|0.5\n90252|0.5\n90253|0.52778\n90254|0.44444\n90255|0.25\n90256|0.51389\n90257|0.76389\n90258|0.83333\n90259|0.72222\n90260|0.41667\n90261|0.48611\n90262|0.70833\n90263|0.70833\n90264|0.75\n90265|0.5\n90266|0.77778\n90267|0.5\n90268|0.47222\n90269|0.48611\n90270|0.63889\n90271|0.58333\n90272|0.625\n90273|0.44444\n90274|0.44444\n90275|0.5\n90276|0.625\n90277|0.34722\n90278|0.5\n90279|0.5\n90280|0.80556\n90281|0.55556\n90282|0.66667\n90283|0.72222\n90284|0.55556\n90285|0.77778\n90286|0.94444\n90287|0.5\n90288|0.65278\n90289|0.65278\n90290|0.55556\n90291|0.5\n90292|0.5\n90293|0.5\n90294|0.5\n90295|0.5\n90296|0.58333\n90297|0.625\n90298|0.61111\n90299|0.54167\n90300|0.70833\n90301|0.65278\n90302|0.52778\n90303|0.40278\n90304|0.30556\n90305|0.5\n90306|0.5\n90307|0.75\n90308|0.52778\n90309|0.52778\n90310|0.18056\n90311|0.38889\n90312|0.66667\n90313|0.66667\n90314|0.88889\n90315|0.51389\n90316|0.38889\n90317|0.36111\n90318|0.56944\n90319|0.41667\n90320|0.54167\n90321|0.5\n90322|0.59722\n90323|0.77778\n90324|0.44444\n90325|0.41667\n90326|0.5\n90327|0.625\n90328|0.43056\n90329|0.44444\n90330|0.44444\n90331|0.45833\n90332|0.65278\n90333|0.11111\n90334|0.55556\n90335|0.40278\n90336|0.36111\n90337|0.5\n90338|0.48611\n90339|0.5\n90340|0.625\n90341|0.55556\n90342|0.65278\n90343|0.45833\n90344|0.5\n90345|0.83333\n90346|0.45833\n90347|0.72222\n90348|0.88889\n90349|0.83333\n90350|0.5\n90351|0.47222\n90352|0.58333\n90353|0.66667\n90354|0.65278\n90355|0.81944\n90356|0.55556\n90357|0.66667\n90358|0.72222\n90359|0.68056\n90360|0.68056\n90361|0.69444\n90362|0.70833\n90363|0.58333\n90364|0.48611\n90365|0.68056\n90366|0.65278\n90367|0.73611\n90368|0.5\n90369|0.73611\n90370|0.43056\n90371|0.83333\n90372|0.5\n90373|0.52778\n90374|0.80556\n90375|0.61111\n90376|0.58333\n90377|0.61111\n90378|0.30556\n90379|0.63889\n90380|0.63889\n90381|0.33333\n90382|0.61111\n90383|0.65278\n90384|0.63889\n90385|0.65278\n90386|0.72222\n90387|0.69444\n90388|0.75\n90389|0.69444\n90390|0.69444\n90391|0.76389\n90392|0.625\n90393|0.5\n90394|0.52778\n90395|0.5\n90396|0.79167\n90397|0.77778\n90398|0.72222\n90399|0.75\n90400|0.81944\n90401|0.77778\n90402|0.72222\n90403|0.81944\n90404|0.56944\n90405|0.31944\n90406|0.875\n90407|0.69444\n90408|0.84722\n90409|0.55556\n90410|0.76389\n90411|0.86111\n90412|0.75\n90413|0.5\n90414|0.45833\n90415|0.36111\n90416|0.44444\n90417|0.5\n90418|0.31944\n90419|0.40278\n90420|0.41667\n90421|0.5\n90422|0.25\n90423|0.16667\n90424|0.5\n90425|0.5\n90426|0.5\n90427|0.68056\n90428|0.625\n90429|0.73611\n90430|0.51389\n90431|0.52778\n90432|0.5\n90433|0.61111\n90434|0.69444\n90435|0.54167\n90436|0.68056\n90437|0.79167\n90438|0.66667\n90439|0.72222\n90440|0.76389\n90441|0.44444\n90442|0.5\n90443|0.61111\n90444|0.63889\n90445|0.81944\n90446|0.68056\n90447|0.61111\n90448|0.58333\n90449|0.56944\n90450|0.54167\n90451|0.5\n90452|0.84722\n90453|0.94444\n90454|0.5\n90455|0.5\n90456|0.45833\n90457|0.5\n90458|0.41667\n90459|0.5\n90460|0.45833\n90461|0.5\n90462|0.41667\n90463|0.40278\n90464|0.48611\n90465|0.5\n90466|0.44444\n90467|0.52778\n90468|0.5\n90469|0.66667\n90470|0.47222\n90471|0.72222\n90472|0.5\n90473|0.47222\n90474|0.66667\n90475|0.5\n90476|0.43056\n90477|0.48611\n90478|0.47222\n90479|0.34722\n90480|0.41667\n90481|0.54167\n90482|0.61111\n90483|0.51389\n90484|0.58333\n90485|0.38889\n90486|0.38889\n90487|0.47222\n90488|0.5\n90489|0.5\n90490|0.5\n90491|0.51389\n90492|0.52778\n90493|0.5\n90494|0.33333\n90495|0.68056\n90496|0.45833\n90497|0.63889\n90498|0.58333\n90499|0.52778\n90500|0.5\n90501|0.18056\n90502|0.5\n90503|0.55556\n90504|0.875\n90505|0.5\n90506|0.55556\n90507|0.5\n90508|0.5\n90509|0.625\n90510|0.5\n90511|0.5\n90512|0.44444\n90513|0.5\n90514|0.375\n90515|0.5\n90516|0.5\n90517|0.55556\n90518|0.70833\n90519|0.5\n90520|0.69444\n90521|0.70833\n90522|0.70833\n90523|0.72222\n90524|0.66667\n90525|0.43056\n90526|0.51389\n90527|0.47222\n90528|0.43056\n90529|0.83333\n90530|0.61111\n90531|0.5\n90532|0.88889\n90533|0.88889\n90534|0.5\n90535|0.5\n90536|0.5\n90537|0.48611\n90538|0.52778\n90539|0.52778\n90540|0.45833\n90541|0.59722\n90542|0.72222\n90543|0.65278\n90544|0.5\n90545|0.625\n90546|0.63889\n90547|0.68056\n90548|0.19444\n90549|0.34722\n90550|0.5\n90551|0.52778\n90552|0.38889\n90553|0.5\n90554|0.43056\n90555|0.33333\n90556|0.56944\n90557|0.63889\n90558|0.79167\n90559|0.84722\n90560|0.86111\n90561|0.83333\n90562|0.88889\n90563|0.84722\n90564|0.77778\n90565|0.77778\n90566|0.94444\n90567|0.80556\n90568|0.80556\n90569|0.69444\n90570|0.625\n90571|0.61111\n90572|0.83333\n90573|0.54167\n90574|0.55556\n90575|0.81944\n90576|0.80556\n90577|0.55556\n90578|0.55556\n90579|0.5\n90580|0.5\n90581|0.5\n90582|0.66667\n90583|0.51389\n90584|0.5\n90585|0.51389\n90586|0.44444\n90587|0.33333\n90588|0.30556\n90589|0.41667\n90590|0.5\n90591|0.51389\n90592|0.26389\n90593|0.33333\n90594|0.52778\n90595|0.5\n90596|0.5\n90597|0.56944\n90598|0.55556\n90599|0.375\n90600|0.72222\n90601|0.44444\n90602|0.83333\n90603|0.48611\n90604|0.34722\n90605|0.47222\n90606|0.45833\n90607|0.36111\n90608|0.52778\n90609|0.72222\n90610|0.63889\n90611|0.30556\n90612|0.70833\n90613|0.30556\n90614|0.51389\n90615|0.5\n90616|0.5\n90617|0.875\n90618|0.5\n90619|0.79167\n90620|0.66667\n90621|0.66667\n90622|0.83333\n90623|0.63889\n90624|0.5\n90625|0.5\n90626|0.5\n90627|0.61111\n90628|0.70833\n90629|0.86111\n90630|0.88889\n90631|0.81944\n90632|0.61111\n90633|0.63889\n90634|0.66667\n90635|0.5\n90636|0.5\n90637|0.47222\n90638|0.38889\n90639|0.45833\n90640|0.44444\n90641|0.51389\n90642|0.83333\n90643|0.43056\n90644|0.34722\n90645|0.66667\n90646|0.79167\n90647|0.72222\n90648|0.65278\n90649|0.72222\n90650|0.41667\n90651|0.68056\n90652|0.77778\n90653|0.59722\n90654|0.41667\n90655|0.51389\n90656|0.44444\n90657|0.68056\n90658|0.69444\n90659|0.27778\n90660|0.5\n90661|0.61111\n90662|0.44444\n90663|0.41667\n90664|0.44444\n90665|0.61111\n90666|0.55556\n90667|0.5\n90668|0.45833\n90669|0.5\n90670|0.5\n90671|0.56944\n90672|0.52778\n90673|0.48611\n90674|0.58333\n90675|0.61111\n90676|0.5\n90677|0.59722\n90678|0.69444\n90679|0.5\n90680|0.48611\n90681|0.5\n90682|0.38889\n90683|0.86111\n90684|0.72222\n90685|0.56944\n90686|0.51389\n90687|0.5\n90688|0.5\n90689|0.5\n90690|0.875\n90691|0.91667\n90692|0.55556\n90693|0.30556\n90694|0.40278\n90695|0.55556\n90696|0.52778\n90697|0.61111\n90698|0.25\n90699|0.375\n90700|0.5\n90701|0.5\n90702|0.54167\n90703|0.54167\n90704|0.65278\n90705|0.51389\n90706|0.5\n90707|0.52778\n90708|0.5\n90709|0.55556\n90710|0.43056\n90711|0.75\n90712|0.5\n90713|0.5\n90714|0.59722\n90715|0.5\n90716|0.5\n90717|0.68056\n90718|0.61111\n90719|0.59722\n90720|0.5\n90721|0.61111\n90722|0.56944\n90723|0.83333\n90724|0.48611\n90725|0.51389\n90726|0.5\n90727|0.63889\n90728|0.66667\n90729|0.80556\n90730|0.72222\n90731|0.81944\n90732|0.58333\n90733|0.33333\n90734|0.93056\n90735|0.54167\n90736|0.59722\n90737|0.5\n90738|0.75\n90739|0.73611\n90740|0.70833\n90741|0.68056\n90742|0.41667\n90743|0.45833\n90744|0.5\n90745|0.43056\n90746|0.45833\n90747|0.5\n90748|0.51389\n90749|0.55556\n90750|0.58333\n90751|0.79167\n90752|0.84722\n90753|0.65278\n90754|0.5\n90755|0.83333\n90756|0.51389\n90757|0.58333\n90758|0.5\n90759|0.51389\n90760|0.70833\n90761|0.70833\n90762|0.83333\n90763|0.5\n90764|0.65278\n90765|0.48611\n90766|0.44444\n90767|0.5\n90768|0.51389\n90769|0.56944\n90770|0.56944\n90771|0.5\n90772|0.5\n90773|0.56944\n90774|0.55556\n90775|0.5\n90776|0.5\n90777|0.45833\n90778|0.66667\n90779|0.5\n90780|0.45833\n90781|0.79167\n90782|0.5\n90783|0.79167\n90784|0.875\n90785|0.72222\n90786|0.81944\n90787|0.70833\n90788|0.75\n90789|0.625\n90790|0.56944\n90791|0.79167\n90792|0.81944\n90793|0.84722\n90794|0.84722\n90795|0.65278\n90796|0.59722\n90797|0.75\n90798|0.77778\n90799|0.79167\n90800|0.86111\n90801|0.77778\n90802|0.72222\n90803|0.36111\n90804|0.77778\n90805|0.66667\n90806|0.75\n90807|0.72222\n90808|0.70833\n90809|0.55556\n90810|0.59722\n90811|0.55556\n90812|0.70833\n90813|0.69444\n90814|0.77778\n90815|0.72222\n90816|0.83333\n90817|0.80556\n90818|0.51389\n90819|0.41667\n90820|0.43056\n90821|0.73611\n90822|0.68056\n90823|0.68056\n90824|0.33333\n90825|0.76389\n90826|0.73611\n90827|0.47222\n90828|0.58333\n90829|0.77778\n90830|0.55556\n90831|0.68056\n90832|0.81944\n90833|0.65278\n90834|0.56944\n90835|0.48611\n90836|0.45833\n90837|0.44444\n90838|0.55556\n90839|0.58333\n90840|0.40278\n90841|0.45833\n90842|0.54167\n90843|0.43056\n90844|0.61111\n90845|0.55556\n90846|0.52778\n90847|0.55556\n90848|0.44444\n90849|0.58333\n90850|0.30556\n90851|0.44444\n90852|0.40278\n90853|0.5\n90854|0.55556\n90855|0.5\n90856|0.48611\n90857|0.5\n90858|0.5\n90859|0.31944\n90860|0.38889\n90861|0.5\n90862|0.56944\n90863|0.5\n90864|0.55556\n90865|0.80556\n90866|0.59722\n90867|0.51389\n90868|0.66667\n90869|0.44444\n90870|0.55556\n90871|0.5\n90872|0.55556\n90873|0.56944\n90874|0.52778\n90875|0.625\n90876|0.61111\n90877|0.70833\n90878|0.5\n90879|0.41667\n90880|0.66667\n90881|0.72222\n90882|0.38889\n90883|0.27778\n90884|0.33333\n90885|0.52778\n90886|0.5\n90887|0.29167\n90888|0.625\n90889|0.48611\n90890|0.47222\n90891|0.375\n90892|0.44444\n90893|0.65278\n90894|0.5\n90895|0.38889\n90896|0.56944\n90897|0.69444\n90898|0.44444\n90899|0.125\n90900|0.65278\n90901|0.59722\n90902|0.47222\n90903|0.38889\n90904|0.55556\n90905|0.83333\n90906|0.65278\n90907|0.88889\n90908|0.69444\n90909|0.61111\n90910|0.65278\n90911|0.54167\n90912|0.79167\n90913|0.69444\n90914|0.77778\n90915|0.80556\n90916|0.65278\n90917|0.26389\n90918|0.56944\n90919|0.55556\n90920|0.48611\n90921|0.5\n90922|0.5\n90923|0.69444\n90924|0.59722\n90925|0.61111\n90926|0.56944\n90927|0.59722\n90928|0.5\n90929|0.70833\n90930|0.69444\n90931|0.77778\n90932|0.22222\n90933|0.45833\n90934|0.36111\n90935|0.33333\n90936|0.56944\n90937|0.5\n90938|0.73611\n90939|0.54167\n90940|0.80556\n90941|0.5\n90942|0.55556\n90943|0.56944\n90944|0.86111\n90945|0.73611\n90946|0.52778\n90947|0.23611\n90948|0.83333\n90949|0.66667\n90950|0.55556\n90951|0.56944\n90952|0.5\n90953|0.88889\n90954|0.83333\n90955|0.72222\n90956|0.72222\n90957|0.83333\n90958|0.625\n90959|0.38889\n90960|0.25\n90961|0.33333\n90962|0.5\n90963|0.59722\n90964|0.63889\n90965|0.61111\n90966|0.73611\n90967|0.38889\n90968|0.5\n90969|0.5\n90970|0.5\n90971|0.58333\n90972|0.81944\n90973|0.63889\n90974|0.44444\n90975|0.51389\n90976|0.5\n90977|0.59722\n90978|0.5\n90979|0.5\n90980|0.59722\n90981|0.59722\n90982|0.58333\n90983|0.52778\n90984|0.5\n90985|0.29167\n90986|0.38889\n90987|0.55556\n90988|0.44444\n90989|0.5\n90990|0.69444\n90991|0.76389\n90992|0.72222\n90993|0.65278\n90994|0.88889\n90995|0.65278\n90996|0.65278\n90997|0.44444\n90998|0.69444\n90999|0.72222\n91000|0.38889\n91001|0.5\n91002|0.56944\n91003|0.55556\n91004|0.70833\n91005|0.69444\n91006|0.76389\n91007|0.36111\n91008|0.51389\n91009|0.59722\n91010|0.55556\n91011|0.56944\n91012|0.86111\n91013|0.51389\n91014|0.47222\n91015|0.69444\n91016|0.72222\n91017|0.58333\n91018|0.5\n91019|0.72222\n91020|0.75\n91021|0.94444\n91022|0.77778\n91023|0.66667\n91024|0.56944\n91025|0.58333\n91026|0.36111\n91027|0.59722\n91028|0.69444\n91029|0.58333\n91030|0.55556\n91031|0.70833\n91032|0.68056\n91033|0.73611\n91034|0.65278\n91035|0.75\n91036|0.56944\n91037|0.51389\n91038|0.51389\n91039|0.66667\n91040|0.77778\n91041|0.80556\n91042|0.77778\n91043|0.43056\n91044|0.5\n91045|0.66667\n91046|0.72222\n91047|0.5\n91048|0.51389\n91049|0.5\n91050|0.81944\n91051|0.33333\n91052|0.38889\n91053|0.36111\n91054|0.625\n91055|0.79167\n91056|0.55556\n91057|0.86111\n91058|0.86111\n91059|0.44444\n91060|0.38889\n91061|0.45833\n91062|0.48611\n91063|0.5\n91064|0.44444\n91065|0.33333\n91066|0.52778\n91067|0.5\n91068|0.55556\n91069|0.63889\n91070|0.77778\n91071|0.93056\n91072|0.5\n91073|0.5\n91074|0.73611\n91075|0.80556\n91076|0.48611\n91077|0.47222\n91078|0.94444\n91079|0.59722\n91080|0.52778\n91081|0.55556\n91082|0.51389\n91083|0.48611\n91084|0.5\n91085|0.43056\n91086|0.61111\n91087|0.52778\n91088|0.5\n91089|0.72222\n91090|0.83333\n91091|0.58333\n91092|0.59722\n91093|0.69444\n91094|0.77778\n91095|0.66667\n91096|0.56944\n91097|0.65278\n91098|0.72222\n91099|0.63889\n91100|0.81944\n91101|0.61111\n91102|0.98611\n91103|0.45833\n91104|0.54167\n91105|0.56944\n91106|0.5\n91107|0.52778\n91108|0.5\n91109|0.83333\n91110|0.5\n91111|0.93056\n91112|0.83333\n91113|0.29167\n91114|0.36111\n91115|0.27778\n91116|0.34722\n91117|0.58333\n91118|0.29167\n91119|0.66667\n91120|0.36111\n91121|0.47222\n91122|0.47222\n91123|0.27778\n91124|0.33333\n91125|0.73611\n91126|0.5\n91127|0.55556\n91128|0.34722\n91129|0.44444\n91130|0.5\n91131|0.5\n91132|0.5\n91133|0.5\n91134|0.61111\n91135|0.80556\n91136|0.29167\n91137|0.33333\n91138|0.79167\n91139|0.81944\n91140|0.54167\n91141|0.625\n91142|0.52778\n91143|0.77778\n91144|0.52778\n91145|0.68056\n91146|0.5\n91147|0.61111\n91148|0.58333\n91149|0.5\n91150|0.45833\n91151|0.5\n91152|0.66667\n91153|0.51389\n91154|0.375\n91155|0.55556\n91156|0.58333\n91157|0.61111\n91158|0.58333\n91159|0.44444\n91160|0.5\n91161|0.38889\n91162|0.68056\n91163|0.72222\n91164|0.5\n91165|0.5\n91166|0.73611\n91167|0.44444\n91168|0.66667\n91169|0.54167\n91170|0.55556\n91171|0.44444\n91172|0.61111\n91173|0.5\n91174|0.625\n91175|0.91667\n91176|0.58333\n91177|0.625\n91178|0.66667\n91179|0.5\n91180|0.625\n91181|0.55556\n91182|0.54167\n91183|0.54167\n91184|0.68056\n91185|0.58333\n91186|0.61111\n91187|0.55556\n91188|0.63889\n91189|0.55556\n91190|0.66667\n91191|0.58333\n91192|0.73611\n91193|0.55556\n91194|0.97222\n91195|0.77778\n91196|0.79167\n91197|0.61111\n91198|0.55556\n91199|0.58333\n91200|0.66667\n91201|0.70833\n91202|0.5\n91203|0.68056\n91204|0.77778\n91205|0.5\n91206|0.72222\n91207|0.54167\n91208|0.5\n91209|0.61111\n91210|0.5\n91211|0.56944\n91212|0.73611\n91213|0.75\n91214|0.73611\n91215|0.875\n91216|0.48611\n91217|0.77778\n91218|0.68056\n91219|0.69444\n91220|0.5\n91221|0.51389\n91222|0.68056\n91223|0.51389\n91224|0.54167\n91225|0.61111\n91226|0.76389\n91227|0.45833\n91228|1\n91229|0.97222\n91230|0.73611\n91231|0.76389\n91232|0.66667\n91233|0.56944\n91234|0.5\n91235|0.80556\n91236|0.80556\n91237|0.66667\n91238|0.875\n91239|0.5\n91240|0.5\n91241|0.75\n91242|0.75\n91243|0.73611\n91244|0.88889\n91245|0.77778\n91246|0.58333\n91247|0.81944\n91248|0.75\n91249|0.69444\n91250|0.59722\n91251|0.5\n91252|0.55556\n91253|0.69444\n91254|0.70833\n91255|0.58333\n91256|0.54167\n91257|0.68056\n91258|0.55556\n91259|0.66667\n91260|0.52778\n91261|0.5\n91262|0.5\n91263|0.55556\n91264|0.68056\n91265|0.63889\n91266|0.61111\n91267|0.55556\n91268|0.55556\n91269|0.66667\n91270|0.70833\n91271|0.61111\n91272|0.5\n91273|0.5\n91274|0.66667\n91275|0.84722\n91276|0.5\n91277|0.55556\n91278|0.38889\n91279|0.52778\n91280|0.5\n91281|0.55556\n91282|0.5\n91283|0.5\n91284|0.5\n91285|0.5\n91286|0.5\n91287|0.54167\n91288|0.5\n91289|0.48611\n91290|0.63889\n91291|0.54167\n91292|0.47222\n91293|0.55556\n91294|0.55556\n91295|0.56944\n91296|0.72222\n91297|0.61111\n91298|0.5\n91299|0.54167\n91300|0.68056\n91301|0.72222\n91302|0.76389\n91303|0.72222\n91304|0.83333\n91305|0.72222\n91306|0.75\n91307|0.66667\n91308|0.76389\n91309|0.73611\n91310|0.90278\n91311|0.79167\n91312|0.5\n91313|0.375\n91314|0.5\n91315|0.56944\n91316|0.5\n91317|0.5\n91318|0.54167\n91319|0.5\n91320|0.52778\n91321|0.56944\n91322|0.72222\n91323|0.55556\n91324|0.5\n91325|0.61111\n91326|0.5\n91327|0.5\n91328|0.5\n91329|0.51389\n91330|0.5\n91331|0.5\n91332|0.22222\n91333|0.5\n91334|0.44444\n91335|0.44444\n91336|0.59722\n91337|0.625\n91338|0.55556\n91339|0.61111\n91340|0.51389\n91341|0.43056\n91342|0.44444\n91343|0.66667\n91344|0.38889\n91345|0.5\n91346|0.5\n91347|0.76389\n91348|0.5\n91349|0.84722\n91350|0.70833\n91351|0.73611\n91352|0.61111\n91353|0.72222\n91354|0.48611\n91355|0.69444\n91356|0.73611\n91357|0.80556\n91358|0.94444\n91359|0.79167\n91360|0.72222\n91361|0.88889\n91362|0.77778\n91363|0.77778\n91364|0.875\n91365|0.77778\n91366|0.55556\n91367|0.79167\n91368|0.80556\n91369|0.54167\n91370|0.51389\n91371|0.5\n91372|0.65278\n91373|0.5\n91374|0.59722\n91375|0.56944\n91376|0.30556\n91377|0.65278\n91378|0.51389\n91379|0.55556\n91380|0.76389\n91381|0.81944\n91382|0.44444\n91383|0.33333\n91384|0.75\n91385|0.52778\n91386|0.5\n91387|0.63889\n91388|0.54167\n91389|0.59722\n91390|0.55556\n91391|0.5\n91392|0.63889\n91393|0.52778\n91394|0.55556\n91395|0.58333\n91396|0.55556\n91397|0.51389\n91398|0.66667\n91399|0.61111\n91400|0.59722\n91401|0.56944\n91402|0.54167\n91403|0.5\n91404|0.5\n91405|0.625\n91406|0.58333\n91407|0.5\n91408|0.38889\n91409|0.44444\n91410|0.5\n91411|0.66667\n91412|0.44444\n91413|0.33333\n91414|0.48611\n91415|0.72222\n91416|0.68056\n91417|0.52778\n91418|0.66667\n91419|0.36111\n91420|0.23611\n91421|0.30556\n91422|0.44444\n91423|0.33333\n91424|0.44444\n91425|0.77778\n91426|0.58333\n91427|0.83333\n91428|0.41667\n91429|0.66667\n91430|0.68056\n91431|0.61111\n91432|0.65278\n91433|0.76389\n91434|0.68056\n91435|0.68056\n91436|0.68056\n91437|0.31944\n91438|0.34722\n91439|0.5\n91440|0.34722\n91441|0.75\n91442|0.88889\n91443|0.61111\n91444|0.79167\n91445|0.83333\n91446|0.91667\n91447|0.73611\n91448|0.625\n91449|0.79167\n91450|0.81944\n91451|0.88889\n91452|0.61111\n91453|0.70833\n91454|0.83333\n91455|0.76389\n91456|0.86111\n91457|0.61111\n91458|0.73611\n91459|0.79167\n91460|0.51389\n91461|0.66667\n91462|0.81944\n91463|0.86111\n91464|0.77778\n91465|0.75\n91466|0.55556\n91467|0.5\n91468|0.56944\n91469|0.5\n91470|0.75\n91471|0.54167\n91472|0.69444\n91473|0.76389\n91474|0.84722\n91475|0.5\n91476|0.5\n91477|0.55556\n91478|0.5\n91479|0.5\n91480|0.52778\n91481|0.65278\n91482|0.65278\n91483|0.66667\n91484|0.5\n91485|0.61111\n91486|0.55556\n91487|0.91667\n91488|0.83333\n91489|0.76389\n91490|0.625\n91491|0.5\n91492|0.76389\n91493|0.72222\n91494|0.5\n91495|0.5\n91496|0.54167\n91497|0.47222\n91498|0.58333\n91499|0.55556\n91500|0.5\n91501|0.58333\n91502|0.63889\n91503|0.79167\n91504|0.51389\n91505|0.36111\n91506|0.66667\n91507|0.58333\n91508|0.63889\n91509|0.5\n91510|0.54167\n91511|0.5\n91512|0.58333\n91513|0.79167\n91514|0.625\n91515|0.56944\n91516|0.58333\n91517|0.61111\n91518|0.47222\n91519|0.40278\n91520|0.47222\n91521|0.41667\n91522|0.5\n91523|0.58333\n91524|0.51389\n91525|0.5\n91526|0.31944\n91527|0.51389\n91528|0.38889\n91529|0.79167\n91530|0.70833\n91531|0.54167\n91532|0.5\n91533|0.63889\n91534|0.27778\n91535|0.51389\n91536|0.59722\n91537|0.52778\n91538|0.66667\n91539|0.5\n91540|0.66667\n91541|0.70833\n91542|0.55556\n91543|0.56944\n91544|0.56944\n91545|0.38889\n91546|0.47222\n91547|0.48611\n91548|0.88889\n91549|0.5\n91550|0.56944\n91551|0.77778\n91552|0.45833\n91553|0.63889\n91554|0.59722\n91555|0.77778\n91556|0.63889\n91557|0.5\n91558|0.59722\n91559|0.55556\n91560|0.58333\n91561|0.83333\n91562|0.52778\n91563|0.5\n91564|0.59722\n91565|0.52778\n91566|0.5\n91567|0.47222\n91568|0.41667\n91569|0.26389\n91570|0.48611\n91571|0.19444\n91572|0.5\n91573|0.55556\n91574|0.5\n91575|0.54167\n91576|0.48611\n91577|0.5\n91578|0.5\n91579|0.88889\n91580|0.72222\n91581|0.54167\n91582|0.51389\n91583|0.54167\n91584|0.63889\n91585|0.56944\n91586|0.54167\n91587|0.5\n91588|0.5\n91589|0.69444\n91590|0.61111\n91591|0.47222\n91592|0.43056\n91593|0.38889\n91594|0.5\n91595|0.56944\n91596|0.84722\n91597|0.68056\n91598|0.63889\n91599|0.88889\n91600|0.68056\n91601|0.83333\n91602|0.80556\n91603|0.97222\n91604|0.5\n91605|0.58333\n91606|0.72222\n91607|0.625\n91608|0.41667\n91609|0.59722\n91610|0.61111\n91611|0.66667\n91612|0.65278\n91613|0.70833\n91614|0.58333\n91615|0.61111\n91616|0.84722\n91617|0.69444\n91618|0.90278\n91619|0.83333\n91620|0.61111\n91621|0.68056\n91622|0.58333\n91623|0.55556\n91624|0.44444\n91625|0.47222\n91626|0.51389\n91627|0.51389\n91628|0.625\n91629|0.65278\n91630|0.61111\n91631|0.63889\n91632|0.5\n91633|0.69444\n91634|0.81944\n91635|0.77778\n91636|0.5\n91637|0.55556\n91638|0.70833\n91639|0.66667\n91640|0.5\n91641|0.61111\n91642|0.76389\n91643|0.59722\n91644|0.72222\n91645|0.47222\n91646|0.5\n91647|0.44444\n91648|0.38889\n91649|0.81944\n91650|0.72222\n91651|0.70833\n91652|0.41667\n91653|0.5\n91654|0.72222\n91655|0.54167\n91656|0.52778\n91657|0.72222\n91658|0.72222\n91659|0.93056\n91660|0.75\n91661|0.72222\n91662|0.77778\n91663|0.88889\n91664|0.83333\n91665|0.81944\n91666|0.61111\n91667|0.55556\n91668|0.58333\n91669|0.69444\n91670|0.70833\n91671|0.79167\n91672|0.86111\n91673|0.88889\n91674|0.76389\n91675|0.84722\n91676|0.51389\n91677|0.65278\n91678|0.83333\n91679|0.72222\n91680|0.81944\n91681|0.48611\n91682|0.5\n91683|0.5\n91684|0.56944\n91685|0.48611\n91686|0.56944\n91687|0.69444\n91688|0.72222\n91689|0.70833\n91690|0.68056\n91691|0.61111\n91692|0.51389\n91693|0.5\n91694|0.69444\n91695|0.68056\n91696|0.61111\n91697|0.5\n91698|0.55556\n91699|0.58333\n91700|0.63889\n91701|0.625\n91702|0.51389\n91703|0.59722\n91704|0.51389\n91705|0.66667\n91706|0.56944\n91707|0.65278\n91708|0.54167\n91709|0.56944\n91710|0.56944\n91711|0.52778\n91712|0.76389\n91713|0.38889\n91714|0.47222\n91715|0.47222\n91716|0.44444\n91717|0.5\n91718|0.63889\n91719|0.5\n91720|0.58333\n91721|0.5\n91722|0.55556\n91723|0.79167\n91724|0.66667\n91725|0.68056\n91726|0.91667\n91727|0.66667\n91728|0.52778\n91729|0.43056\n91730|0.51389\n91731|0.5\n91732|0.66667\n91733|0.88889\n91734|0.66667\n91735|0.83333\n91736|0.84722\n91737|0.59722\n91738|0.86111\n91739|0.69444\n91740|0.68056\n91741|0.76389\n91742|0.59722\n91743|0.5\n91744|0.69444\n91745|0.27778\n91746|0.61111\n91747|0.33333\n91748|0.44444\n91749|0.41667\n91750|0.5\n91751|0.43056\n91752|0.61111\n91753|0.56944\n91754|0.5\n91755|0.76389\n91756|0.875\n91757|0.5\n91758|0.5\n91759|0.55556\n91760|0.5\n91761|0.5\n91762|0.38889\n91763|0.68056\n91764|0.63889\n91765|0.52778\n91766|0.5\n91767|0.44444\n91768|0.26389\n91769|0.5\n91770|0.83333\n91771|0.56944\n91772|0.56944\n91773|0.59722\n91774|0.51389\n91775|0.63889\n91776|0.5\n91777|0.5\n91778|0.52778\n91779|0.70833\n91780|0.65278\n91781|0.73611\n91782|0.58333\n91783|0.61111\n91784|0.77778\n91785|0.5\n91786|0.5\n91787|0.5\n91788|0.47222\n91789|0.55556\n91790|0.5\n91791|0.5\n91792|0.5\n91793|0.44444\n91794|0.27778\n91795|0.30556\n91796|0.30556\n91797|0.38889\n91798|0.31944\n91799|0.54167\n91800|0.38889\n91801|0.47222\n91802|0.68056\n91803|0.47222\n91804|0.56944\n91805|0.52778\n91806|0.51389\n91807|0.56944\n91808|0.44444\n91809|0.72222\n91810|0.56944\n91811|0.63889\n91812|0.69444\n91813|0.625\n91814|0.5\n91815|0.51389\n91816|0.48611\n91817|0.47222\n91818|0.43056\n91819|0.29167\n91820|0.33333\n91821|0.54167\n91822|0.43056\n91823|0.45833\n91824|0.79167\n91825|0.55556\n91826|0.125\n91827|0.45833\n91828|0.47222\n91829|0.29167\n91830|0.33333\n91831|0.26389\n91832|0.5\n91833|0.16667\n91834|0.25\n91835|0.36111\n91836|0.30556\n91837|0.61111\n91838|0.51389\n91839|0.48611\n91840|0.51389\n91841|0.79167\n91842|0.80556\n91843|0.65278\n91844|0.52778\n91845|0.36111\n91846|0.38889\n91847|0.41667\n91848|0.77778\n91849|0.56944\n91850|0.47222\n91851|0.36111\n91852|0.52778\n91853|0.66667\n91854|0.34722\n91855|0.58333\n91856|0.5\n91857|0.22222\n91858|0.52778\n91859|0.41667\n91860|0.54167\n91861|0.47222\n91862|0.44444\n91863|0.36111\n91864|0.48611\n91865|0.70833\n91866|0.81944\n91867|0.36111\n91868|0.38889\n91869|0.375\n91870|0.40278\n91871|0.44444\n91872|0.69444\n91873|0.73611\n91874|0.56944\n91875|0.59722\n91876|0.54167\n91877|0.52778\n91878|0.5\n91879|0.54167\n91880|0.56944\n91881|0.83333\n91882|0.625\n91883|0.69444\n91884|0.88889\n91885|0.52778\n91886|0.5\n91887|0.5\n91888|0.5\n91889|0.5\n91890|0.38889\n91891|0.55556\n91892|0.51389\n91893|0.51389\n91894|0.55556\n91895|0.65278\n91896|0.88889\n91897|0.58333\n91898|0.375\n91899|0.63889\n91900|0.63889\n91901|0.70833\n91902|0.68056\n91903|0.48611\n91904|0.55556\n91905|0.47222\n91906|0.58333\n91907|0.63889\n91908|0.66667\n91909|0.47222\n91910|0.69444\n91911|0.69444\n91912|0.77778\n91913|0.66667\n91914|0.75\n91915|0.72222\n91916|0.79167\n91917|0.72222\n91918|0.76389\n91919|0.77778\n91920|0.59722\n91921|0.45833\n91922|0.47222\n91923|0.61111\n91924|0.55556\n91925|0.52778\n91926|0.55556\n91927|0.65278\n91928|0.69444\n91929|0.5\n91930|0.70833\n91931|0.80556\n91932|0.69444\n91933|0.77778\n91934|0.875\n91935|0.61111\n91936|0.69444\n91937|0.5\n91938|0.52778\n91939|0.52778\n91940|0.68056\n91941|0.73611\n91942|0.55556\n91943|0.54167\n91944|0.69444\n91945|0.63889\n91946|0.5\n91947|0.5\n91948|0.54167\n91949|0.56944\n91950|0.27778\n91951|0.72222\n91952|0.5\n91953|0.38889\n91954|0.77778\n91955|0.44444\n91956|0.44444\n91957|0.65278\n91958|0.58333\n91959|0.45833\n91960|0.44444\n91961|0.79167\n91962|0.77778\n91963|1\n91964|1\n91965|0.36111\n91966|0.44444\n91967|0.5\n91968|0.38889\n91969|0.5\n91970|0.66667\n91971|0.56944\n91972|0.66667\n91973|0.61111\n91974|0.875\n91975|0.56944\n91976|0.5\n91977|0.61111\n91978|0.88889\n91979|0.83333\n91980|0.5\n91981|0.40278\n91982|0.5\n91983|0.44444\n91984|0.5\n91985|0.5\n91986|0.625\n91987|0.59722\n91988|0.63889\n91989|0.61111\n91990|0.5\n91991|0.52778\n91992|0.80556\n91993|0.66667\n91994|0.5\n91995|0.55556\n91996|0.56944\n91997|0.77778\n91998|0.5\n91999|0.5\n92000|0.5\n92001|0.5\n92002|0.69444\n92003|0.51389\n92004|0.43056\n92005|0.5\n92006|0.58333\n92007|0.44444\n92008|0.56944\n92009|0.55556\n92010|0.61111\n92011|0.55556\n92012|0.73611\n92013|0.59722\n92014|0.5\n92015|0.5\n92016|0.51389\n92017|0.5\n92018|0.5\n92019|0.45833\n92020|0.5\n92021|0.69444\n92022|0.55556\n92023|0.20833\n92024|0.25\n92025|0.48611\n92026|0.5\n92027|0.5\n92028|0.5\n92029|0.5\n92030|0.58333\n92031|0.5\n92032|0.5\n92033|0.66667\n92034|0.77778\n92035|0.5\n92036|0.47222\n92037|0.44444\n92038|0.58333\n92039|0.61111\n92040|0.58333\n92041|0.65278\n92042|0.5\n92043|0.5\n92044|0.77778\n92045|0.69444\n92046|0.59722\n92047|0.59722\n92048|0.63889\n92049|0.61111\n92050|0.72222\n92051|0.51389\n92052|0.45833\n92053|0.45833\n92054|0.52778\n92055|0.5\n92056|0.44444\n92057|0.5\n92058|0.51389\n92059|0.44444\n92060|0.61111\n92061|0.66667\n92062|0.56944\n92063|0.76389\n92064|0.58333\n92065|0.75\n92066|0.47222\n92067|0.5\n92068|0.5\n92069|0.40278\n92070|0.5\n92071|0.48611\n92072|0.52778\n92073|0.70833\n92074|0.55556\n92075|0.81944\n92076|0.70833\n92077|0.625\n92078|0.73611\n92079|0.76389\n92080|0.5\n92081|0.69444\n92082|0.36111\n92083|0.125\n92084|0.5\n92085|0.79167\n92086|0.86111\n92087|0.66667\n92088|0.58333\n92089|0.47222\n92090|0.5\n92091|0.61111\n92092|0.72222\n92093|0.58333\n92094|0.625\n92095|0.55556\n92096|0.58333\n92097|0.5\n92098|0.70833\n92099|0.27778\n92100|0.61111\n92101|0.69444\n92102|0.61111\n92103|0.77778\n92104|0.55556\n92105|0.61111\n92106|0.55556\n92107|0.51389\n92108|0.54167\n92109|0.5\n92110|0.56944\n92111|0.55556\n92112|0.75\n92113|0.54167\n92114|0.5\n92115|0.65278\n92116|0.5\n92117|0.5\n92118|0.5\n92119|0.73611\n92120|0.47222\n92121|0.68056\n92122|0.54167\n92123|0.73611\n92124|0.65278\n92125|0.58333\n92126|0.68056\n92127|0.63889\n92128|0.5\n92129|0.5\n92130|0.5\n92131|0.55556\n92132|0.41667\n92133|0.5\n92134|0.59722\n92135|0.61111\n92136|0.5\n92137|0.40278\n92138|0.81944\n92139|0.375\n92140|0.375\n92141|0.54167\n92142|0.5\n92143|0.61111\n92144|0.52778\n92145|0.63889\n92146|0.88889\n92147|0.625\n92148|0.65278\n92149|0.68056\n92150|0.20833\n92151|0.5\n92152|0.5\n92153|0.5\n92154|0.55556\n92155|0.61111\n92156|0.48611\n92157|0.27778\n92158|0.29167\n92159|0.22222\n92160|0.5\n92161|0.36111\n92162|0.27778\n92163|0.59722\n92164|0.47222\n92165|0.73611\n92166|0.61111\n92167|0.54167\n92168|0.56944\n92169|0.79167\n92170|0.5\n92171|0.5\n92172|0.5\n92173|0.5\n92174|0.75\n92175|0.80556\n92176|0.56944\n92177|0.5\n92178|0.5\n92179|0.75\n92180|0.52778\n92181|0.5\n92182|0.54167\n92183|0.5\n92184|0.44444\n92185|0.30556\n92186|0.55556\n92187|0.5\n92188|0.5\n92189|0.5\n92190|0.73611\n92191|0.5\n92192|0.5\n92193|0.61111\n92194|0.65278\n92195|0.51389\n92196|0.30556\n92197|0.34722\n92198|0.40278\n92199|0.44444\n92200|0.54167\n92201|0.52778\n92202|0.51389\n92203|0.66667\n92204|0.44444\n92205|0.83333\n92206|0.68056\n92207|0.61111\n92208|0.51389\n92209|0.47222\n92210|0.44444\n92211|0.54167\n92212|0.5\n92213|0.58333\n92214|0.5\n92215|0.63889\n92216|0.66667\n92217|0.58333\n92218|0.75\n92219|0.5\n92220|0.47222\n92221|0.5\n92222|0.47222\n92223|0.5\n92224|0.63889\n92225|0.625\n92226|0.40278\n92227|0.45833\n92228|0.625\n92229|0.69444\n92230|0.52778\n92231|0.36111\n92232|0.54167\n92233|0.61111\n92234|0.47222\n92235|0.51389\n92236|0.36111\n92237|0.70833\n92238|0.36111\n92239|0.43056\n92240|0.59722\n92241|0.44444\n92242|0.63889\n92243|0.66667\n92244|0.5\n92245|0.52778\n92246|0.44444\n92247|0.47222\n92248|0.38889\n92249|0.45833\n92250|0.38889\n92251|0.47222\n92252|0.30556\n92253|0.36111\n92254|0.48611\n92255|0.38889\n92256|0.34722\n92257|0.51389\n92258|0.19444\n92259|0.55556\n92260|0.55556\n92261|0.58333\n92262|0.54167\n92263|0.56944\n92264|0.51389\n92265|0.48611\n92266|0.52778\n92267|0.41667\n92268|0.5\n92269|0.51389\n92270|0.83333\n92271|0.5\n92272|0.88889\n92273|0.73611\n92274|0.56944\n92275|0.51389\n92276|0.75\n92277|0.83333\n92278|0.52778\n92279|0.5\n92280|0.63889\n92281|0.76389\n92282|0.56944\n92283|0.73611\n92284|1\n92285|0.875\n92286|0.625\n92287|0.73611\n92288|0.58333\n92289|0.70833\n92290|0.51389\n92291|0.75\n92292|0.65278\n92293|0.45833\n92294|0.66667\n92295|0.625\n92296|0.65278\n92297|0.70833\n92298|0.5\n92299|0.52778\n92300|0.5\n92301|0.43056\n92302|0.5\n92303|0.5\n92304|0.63889\n92305|0.5\n92306|0.5\n92307|0.81944\n92308|0.5\n92309|0.56944\n92310|0.72222\n92311|0.625\n92312|0.5\n92313|0.55556\n92314|0.52778\n92315|0.61111\n92316|0.5\n92317|0.43056\n92318|0.5\n92319|0.5\n92320|0.44444\n92321|0.5\n92322|0.56944\n92323|0.59722\n92324|0.44444\n92325|0.38889\n92326|0.5\n92327|0.48611\n92328|0.625\n92329|0.61111\n92330|0.69444\n92331|0.54167\n92332|0.69444\n92333|0.76389\n92334|0.54167\n92335|0.55556\n92336|0.66667\n92337|0.52778\n92338|0.5\n92339|0.5\n92340|0.48611\n92341|0.5\n92342|0.61111\n92343|0.45833\n92344|0.5\n92345|0.5\n92346|0.5\n92347|0.625\n92348|0.66667\n92349|0.70833\n92350|0.83333\n92351|0.44444\n92352|0.38889\n92353|0.44444\n92354|0.54167\n92355|0.44444\n92356|0.41667\n92357|0.5\n92358|0.5\n92359|0.83333\n92360|0.76389\n92361|0.5\n92362|0.5\n92363|0.5\n92364|0.5\n92365|0.51389\n92366|0.52778\n92367|0.51389\n92368|0.52778\n92369|0.54167\n92370|0.13889\n92371|0.5\n92372|0.5\n92373|0.5\n92374|0.86111\n92375|0.5\n92376|0.69444\n92377|0.59722\n92378|0.5\n92379|0.48611\n92380|0.22222\n92381|0.44444\n92382|0.5\n92383|0.69444\n92384|0.40278\n92385|0.375\n92386|0.5\n92387|0.51389\n92388|0.72222\n92389|0.61111\n92390|0.5\n92391|0.52778\n92392|0.48611\n92393|0.38889\n92394|0.40278\n92395|0.61111\n92396|0.54167\n92397|0.5\n92398|0.55556\n92399|0.5\n92400|0.55556\n92401|0.52778\n92402|0.52778\n92403|0.86111\n92404|0.83333\n92405|0.72222\n92406|0.86111\n92407|0.38889\n92408|0.58333\n92409|0.70833\n92410|0.73611\n92411|0.70833\n92412|0.5\n92413|0.48611\n92414|0.5\n92415|0.5\n92416|0.5\n92417|0.58333\n92418|0.5\n92419|0.52778\n92420|0.58333\n92421|0.51389\n92422|0.43056\n92423|0.52778\n92424|0.43056\n92425|0.5\n92426|0.48611\n92427|0.44444\n92428|0.5\n92429|0.45833\n92430|0.66667\n92431|0.81944\n92432|0.38889\n92433|0.29167\n92434|0.40278\n92435|0.54167\n92436|0.33333\n92437|0.33333\n92438|0.41667\n92439|0.25\n92440|0.5\n92441|0.5\n92442|0.375\n92443|0.51389\n92444|0.44444\n92445|0.5\n92446|0.63889\n92447|0.5\n92448|0.5\n92449|0.76389\n92450|0.69444\n92451|0.77778\n92452|0.5\n92453|0.69444\n92454|0.75\n92455|0.69444\n92456|0.66667\n92457|0.54167\n92458|0.77778\n92459|0.72222\n92460|0.61111\n92461|0.80556\n92462|0.68056\n92463|0.88889\n92464|0.5\n92465|0.5\n92466|0.27778\n92467|0.5\n92468|0.47222\n92469|0.88889\n92470|0.81944\n92471|0.65278\n92472|0.86111\n92473|0.5\n92474|0.36111\n92475|0.68056\n92476|0.73611\n92477|0.5\n92478|0.72222\n92479|0.47222\n92480|0.5\n92481|0.54167\n92482|0.73611\n92483|0.81944\n92484|0.70833\n92485|0.625\n92486|0.625\n92487|0.52778\n92488|0.86111\n92489|0.90278\n92490|0.76389\n92491|0.5\n92492|0.51389\n92493|0.5\n92494|0.44444\n92495|0.5\n92496|0.41667\n92497|0.44444\n92498|0.56944\n92499|0.88889\n92500|0.80556\n92501|0.54167\n92502|0.70833\n92503|0.59722\n92504|0.90278\n92505|0.80556\n92506|0.80556\n92507|0.81944\n92508|0.63889\n92509|0.44444\n92510|0.66667\n92511|0.47222\n92512|0.72222\n92513|0.79167\n92514|0.55556\n92515|0.54167\n92516|0.27778\n92517|0.41667\n92518|0.44444\n92519|0.65278\n92520|0.44444\n92521|0.5\n92522|0.51389\n92523|0.5\n92524|0.36111\n92525|0.5\n92526|0.41667\n92527|0.5\n92528|0.75\n92529|0.56944\n92530|0.5\n92531|0.52778\n92532|0.5\n92533|0.54167\n92534|0.54167\n92535|0.33333\n92536|0.36111\n92537|0.61111\n92538|0.5\n92539|0.48611\n92540|0.47222\n92541|0.5\n92542|0.79167\n92543|0.5\n92544|0.65278\n92545|0.70833\n92546|0.52778\n92547|0.5\n92548|0.43056\n92549|0.54167\n92550|0.81944\n92551|0.83333\n92552|0.81944\n92553|0.61111\n92554|0.51389\n92555|0.56944\n92556|0.47222\n92557|0.38889\n92558|0.33333\n92559|0.44444\n92560|0.38889\n92561|0.75\n92562|0.72222\n92563|0.72222\n92564|0.625\n92565|0.68056\n92566|0.55556\n92567|0.43056\n92568|0.33333\n92569|0.47222\n92570|0.51389\n92571|0.51389\n92572|0.80556\n92573|0.77778\n92574|0.5\n92575|0.90278\n92576|0.76389\n92577|0.51389\n92578|0.45833\n92579|0.55556\n92580|0.43056\n92581|0.68056\n92582|0.77778\n92583|0.80556\n92584|0.90278\n92585|0.86111\n92586|0.36111\n92587|0.56944\n92588|0.80556\n92589|0.68056\n92590|0.625\n92591|0.5\n92592|0.69444\n92593|0.63889\n92594|0.33333\n92595|0.58333\n92596|0.72222\n92597|0.625\n92598|0.45833\n92599|0.5\n92600|0.58333\n92601|0.5\n92602|0.59722\n92603|0.55556\n92604|0.54167\n92605|0.63889\n92606|0.625\n92607|0.63889\n92608|0.61111\n92609|0.34722\n92610|0.52778\n92611|0.65278\n92612|0.36111\n92613|0.36111\n92614|0.38889\n92615|0.44444\n92616|0.52778\n92617|0.70833\n92618|0.77778\n92619|0.90278\n92620|0.75\n92621|0.93056\n92622|0.55556\n92623|0.33333\n92624|0.48611\n92625|0.5\n92626|0.51389\n92627|0.65278\n92628|0.61111\n92629|0.45833\n92630|0.5\n92631|0.5\n92632|0.5\n92633|0.43056\n92634|0.44444\n92635|0.54167\n92636|0.47222\n92637|0.43056\n92638|0.5\n92639|0.51389\n92640|0.65278\n92641|0.27778\n92642|0.23611\n92643|0.55556\n92644|0.36111\n92645|0.66667\n92646|0.5\n92647|0.5\n92648|0.45833\n92649|0.47222\n92650|0.52778\n92651|0.56944\n92652|0.5\n92653|0.54167\n92654|0.5\n92655|0.5\n92656|0.81944\n92657|0.69444\n92658|0.5\n92659|0.55556\n92660|0.51389\n92661|0.5\n92662|0.52778\n92663|0.65278\n92664|0.69444\n92665|0.47222\n92666|0.38889\n92667|0.69444\n92668|0.5\n92669|0.79167\n92670|0.61111\n92671|0.68056\n92672|0.73611\n92673|0.48611\n92674|0.61111\n92675|0.52778\n92676|0.38889\n92677|0.69444\n92678|0.54167\n92679|0.81944\n92680|0.44444\n92681|0.95833\n92682|0.5\n92683|0.5\n92684|0.83333\n92685|0.52778\n92686|0.66667\n92687|0.55556\n92688|0.51389\n92689|0.5\n92690|0.54167\n92691|0.47222\n92692|0.5\n92693|0.61111\n92694|0.81944\n92695|0.56944\n92696|0.66667\n92697|0.52778\n92698|0.73611\n92699|0.26389\n92700|0.84722\n92701|0.5\n92702|0.79167\n92703|0.70833\n92704|0.65278\n92705|0.77778\n92706|0.51389\n92707|0.69444\n92708|0.51389\n92709|0.5\n92710|0.55556\n92711|0.5\n92712|0.66667\n92713|0.55556\n92714|0.56944\n92715|0.59722\n92716|0.5\n92717|0.5\n92718|0.375\n92719|0.5\n92720|0.5\n92721|0.5\n92722|0.63889\n92723|0.55556\n92724|0.5\n92725|0.41667\n92726|0.5\n92727|0.56944\n92728|0.83333\n92729|0.36111\n92730|0.5\n92731|0.16667\n92732|0.36111\n92733|0.75\n92734|0.70833\n92735|0.625\n92736|0.51389\n92737|0.40278\n92738|0.93056\n92739|0.66667\n92740|0.55556\n92741|0.52778\n92742|0.5\n92743|0.52778\n92744|0.5\n92745|0.5\n92746|0.66667\n92747|0.5\n92748|0.61111\n92749|0.625\n92750|0.5\n92751|0.5\n92752|0.52778\n92753|0.5\n92754|0.55556\n92755|0.47222\n92756|0.34722\n92757|0.41667\n92758|0.375\n92759|0.41667\n92760|0.48611\n92761|0.5\n92762|0.68056\n92763|0.61111\n92764|0.77778\n92765|0.88889\n92766|0.66667\n92767|0.75\n92768|0.66667\n92769|0.93056\n92770|0.84722\n92771|0.80556\n92772|0.86111\n92773|0.5\n92774|0.56944\n92775|0.375\n92776|0.5\n92777|0.52778\n92778|0.44444\n92779|0.38889\n92780|0.38889\n92781|0.5\n92782|0.34722\n92783|0.66667\n92784|0.66667\n92785|0.65278\n92786|0.66667\n92787|0.56944\n92788|0.48611\n92789|0.41667\n92790|0.48611\n92791|0.55556\n92792|0.61111\n92793|0.5\n92794|0.5\n92795|0.375\n92796|0.27778\n92797|0.48611\n92798|0.66667\n92799|0.38889\n92800|0.47222\n92801|0.5\n92802|0.76389\n92803|0.68056\n92804|0.52778\n92805|0.56944\n92806|0.65278\n92807|0.38889\n92808|0.38889\n92809|0.625\n92810|0.59722\n92811|0.40278\n92812|0.36111\n92813|0.58333\n92814|0.47222\n92815|0.5\n92816|0.44444\n92817|0.55556\n92818|0.5\n92819|0.56944\n92820|0.52778\n92821|0.58333\n92822|0.63889\n92823|0.65278\n92824|0.5\n92825|0.44444\n92826|0.55556\n92827|0.55556\n92828|0.61111\n92829|0.65278\n92830|0.70833\n92831|0.5\n92832|0.5\n92833|0.41667\n92834|0.48611\n92835|0.65278\n92836|0.54167\n92837|0.47222\n92838|0.43056\n92839|0.38889\n92840|0.83333\n92841|0.40278\n92842|0.38889\n92843|0.34722\n92844|0.52778\n92845|0.54167\n92846|0.55556\n92847|0.61111\n92848|0.48611\n92849|0.44444\n92850|0.16667\n92851|0.40278\n92852|0.45833\n92853|0.75\n92854|0.625\n92855|0.63889\n92856|0.48611\n92857|0.58333\n92858|0.5\n92859|0.44444\n92860|0.44444\n92861|0.625\n92862|0.625\n92863|0.72222\n92864|0.56944\n92865|0.73611\n92866|0.5\n92867|0.55556\n92868|0.48611\n92869|0.55556\n92870|0.875\n92871|0.79167\n92872|0.83333\n92873|0.84722\n92874|0.76389\n92875|0.63889\n92876|0.83333\n92877|0.75\n92878|0.80556\n92879|0.86111\n92880|0.81944\n92881|0.83333\n92882|0.70833\n92883|0.72222\n92884|0.72222\n92885|0.69444\n92886|0.79167\n92887|0.72222\n92888|0.65278\n92889|0.80556\n92890|0.68056\n92891|0.45833\n92892|0.77778\n92893|0.65278\n92894|0.81944\n92895|0.70833\n92896|0.80556\n92897|0.69444\n92898|0.83333\n92899|0.81944\n92900|0.54167\n92901|0.86111\n92902|0.52778\n92903|0.34722\n92904|0.55556\n92905|0.54167\n92906|0.72222\n92907|0.41667\n92908|0.61111\n92909|0.69444\n92910|0.79167\n92911|0.56944\n92912|0.75\n92913|0.61111\n92914|0.44444\n92915|0.36111\n92916|0.51389\n92917|0.52778\n92918|0.5\n92919|0.44444\n92920|0.55556\n92921|0.52778\n92922|0.5\n92923|0.66667\n92924|0.86111\n92925|0.80556\n92926|0.76389\n92927|0.75\n92928|0.61111\n92929|0.81944\n92930|0.58333\n92931|0.41667\n92932|0.45833\n92933|0.5\n92934|0.44444\n92935|0.76389\n92936|0.25\n92937|0.52778\n92938|0.54167\n92939|0.5\n92940|0.5\n92941|0.91667\n92942|0.41667\n92943|0.5\n92944|0.81944\n92945|0.55556\n92946|0.47222\n92947|0.083333\n92948|0.61111\n92949|0.72222\n92950|0.75\n92951|0.81944\n92952|0.5\n92953|0.63889\n92954|0.68056\n92955|0.84722\n92956|0.77778\n92957|0.88889\n92958|0.19444\n92959|0.36111\n92960|0.36111\n92961|0.68056\n92962|0.65278\n92963|0.51389\n92964|0.77778\n92965|0.72222\n92966|0.45833\n92967|0.38889\n92968|0.48611\n92969|0.5\n92970|0.44444\n92971|0.875\n92972|0.41667\n92973|0.44444\n92974|0.69444\n92975|0.81944\n92976|0.61111\n92977|0.70833\n92978|0.55556\n92979|0.375\n92980|0.47222\n92981|0.72222\n92982|0.80556\n92983|0.83333\n92984|0.45833\n92985|0.63889\n92986|0.56944\n92987|0.47222\n92988|0.76389\n92989|0.75\n92990|0.81944\n92991|0.73611\n92992|0.43056\n92993|0.47222\n92994|0.66667\n92995|0.66667\n92996|0.55556\n92997|0.5\n92998|0.68056\n92999|0.76389\n93000|0.76389\n93001|0.47222\n93002|0.58333\n93003|0.47222\n93004|0.66667\n93005|0.29167\n93006|0.52778\n93007|0.51389\n93008|0.5\n93009|0.55556\n93010|0.375\n93011|0.38889\n93012|0.83333\n93013|0.59722\n93014|0.76389\n93015|0.625\n93016|0.76389\n93017|0.65278\n93018|0.56944\n93019|0.58333\n93020|0.44444\n93021|0.51389\n93022|0.375\n93023|0.5\n93024|0.51389\n93025|0.55556\n93026|0.5\n93027|0.5\n93028|0.45833\n93029|0.25\n93030|0.61111\n93031|0.33333\n93032|0.375\n93033|0.51389\n93034|0.44444\n93035|0.58333\n93036|0.58333\n93037|0.5\n93038|0.5\n93039|0.5\n93040|0.59722\n93041|0.5\n93042|0.68056\n93043|0.76389\n93044|0.76389\n93045|0.70833\n93046|0.70833\n93047|0.63889\n93048|0.84722\n93049|0.625\n93050|0.80556\n93051|0.76389\n93052|0.70833\n93053|0.72222\n93054|0.5\n93055|0.54167\n93056|0.5\n93057|0.5\n93058|0.61111\n93059|0.52778\n93060|0.54167\n93061|0.52778\n93062|0.44444\n93063|0.51389\n93064|0.75\n93065|0.69444\n93066|0.73611\n93067|0.73611\n93068|0.72222\n93069|0.72222\n93070|0.73611\n93071|0.76389\n93072|0.79167\n93073|0.72222\n93074|0.34722\n93075|0.43056\n93076|0.5\n93077|0.69444\n93078|0.56944\n93079|0.44444\n93080|0.5\n93081|0.5\n93082|0.55556\n93083|0.29167\n93084|0.33333\n93085|0.52778\n93086|0.625\n93087|0.59722\n93088|0.58333\n93089|0.44444\n93090|0.43056\n93091|0.70833\n93092|0.80556\n93093|0.58333\n93094|0.66667\n93095|0.40278\n93096|0.65278\n93097|0.65278\n93098|0.72222\n93099|0.48611\n93100|0.55556\n93101|0.51389\n93102|0.52778\n93103|0.72222\n93104|0.77778\n93105|0.29167\n93106|0.40278\n93107|0.44444\n93108|0.52778\n93109|0.26389\n93110|0.90278\n93111|0.375\n93112|0.91667\n93113|0.40278\n93114|0.5\n93115|0.48611\n93116|0.77778\n93117|0.70833\n93118|0.26389\n93119|0.34722\n93120|0.79167\n93121|0.72222\n93122|0.61111\n93123|0.63889\n93124|0.79167\n93125|0.70833\n93126|0.73611\n93127|0.63889\n93128|0.61111\n93129|0.76389\n93130|0.66667\n93131|0.73611\n93132|0.63889\n93133|0.63889\n93134|0.77778\n93135|0.5\n93136|0.51389\n93137|0.38889\n93138|0.70833\n93139|0.80556\n93140|0.51389\n93141|0.77778\n93142|0.5\n93143|0.41667\n93144|0.59722\n93145|0.5\n93146|0.5\n93147|0.26389\n93148|0.58333\n93149|0.69444\n93150|0.52778\n93151|0.5\n93152|0.58333\n93153|0.625\n93154|0.59722\n93155|0.29167\n93156|0.41667\n93157|0.41667\n93158|0.56944\n93159|0.70833\n93160|0.51389\n93161|0.69444\n93162|0.63889\n93163|0.61111\n93164|0.61111\n93165|0.61111\n93166|0.5\n93167|0.72222\n93168|0.73611\n93169|0.73611\n93170|0.83333\n93171|0.84722\n93172|0.81944\n93173|0.81944\n93174|0.84722\n93175|0.47222\n93176|0.41667\n93177|0.44444\n93178|0.5\n93179|0.68056\n93180|0.69444\n93181|0.5\n93182|0.61111\n93183|0.72222\n93184|0.75\n93185|0.45833\n93186|0.40278\n93187|0.55556\n93188|0.34722\n93189|0.61111\n93190|0.72222\n93191|0.34722\n93192|0.27778\n93193|0.33333\n93194|0.34722\n93195|0.30556\n93196|0.23611\n93197|0.40278\n93198|0.58333\n93199|0.38889\n93200|0.33333\n93201|0.55556\n93202|0.63889\n93203|0.36111\n93204|0.375\n93205|0.70833\n93206|0.38889\n93207|0.27778\n93208|0.5\n93209|0.51389\n93210|0.34722\n93211|0.5\n93212|0.625\n93213|0.51389\n93214|0.73611\n93215|0.36111\n93216|0.5\n93217|0.69444\n93218|0.5\n93219|0.5\n93220|0.59722\n93221|0.5\n93222|0.65278\n93223|0.56944\n93224|0.69444\n93225|0.51389\n93226|0.69444\n93227|0.84722\n93228|0.625\n93229|0.22222\n93230|0.48611\n93231|0.51389\n93232|0.5\n93233|0.43056\n93234|0.58333\n93235|0.5\n93236|0.5\n93237|0.5\n93238|0.5\n93239|0.5\n93240|0.59722\n93241|0.5\n93242|0.45833\n93243|0.5\n93244|0.44444\n93245|0.51389\n93246|0.44444\n93247|0.58333\n93248|0.48611\n93249|0.5\n93250|0.52778\n93251|0.61111\n93252|0.55556\n93253|0.5\n93254|0.72222\n93255|0.77778\n93256|0.66667\n93257|0.61111\n93258|0.61111\n93259|0.43056\n93260|0.44444\n93261|0.5\n93262|0.5\n93263|0.44444\n93264|0.5\n93265|0.56944\n93266|0.5\n93267|0.55556\n93268|0.66667\n93269|0.55556\n93270|0.75\n93271|0.73611\n93272|0.63889\n93273|0.63889\n93274|0.61111\n93275|0.59722\n93276|0.61111\n93277|0.5\n93278|0.52778\n93279|0.55556\n93280|0.54167\n93281|0.5\n93282|0.48611\n93283|0.5\n93284|0.51389\n93285|0.52778\n93286|0.5\n93287|0.83333\n93288|0.80556\n93289|0.83333\n93290|0.38889\n93291|0.77778\n93292|0.90278\n93293|0.72222\n93294|0.83333\n93295|0.5\n93296|0.83333\n93297|0.75\n93298|0.86111\n93299|0.88889\n93300|0.61111\n93301|0.5\n93302|0.43056\n93303|0.54167\n93304|0.44444\n93305|0.27778\n93306|0.22222\n93307|0.5\n93308|0.5\n93309|0.61111\n93310|0.69444\n93311|0.73611\n93312|0.44444\n93313|0.66667\n93314|0.69444\n93315|0.5\n93316|0.73611\n93317|0.55556\n93318|0.47222\n93319|0.90278\n93320|0.72222\n93321|0.58333\n93322|0.69444\n93323|0.61111\n93324|0.51389\n93325|0.69444\n93326|0.52778\n93327|0.33333\n93328|0.61111\n93329|0.52778\n93330|0.44444\n93331|0.44444\n93332|0.5\n93333|0.44444\n93334|0.54167\n93335|0.65278\n93336|0.70833\n93337|0.86111\n93338|0.875\n93339|0.77778\n93340|0.76389\n93341|0.76389\n93342|0.43056\n93343|0.5\n93344|0.5\n93345|0.38889\n93346|0.125\n93347|0.48611\n93348|0.79167\n93349|0.54167\n93350|0.77778\n93351|0.63889\n93352|0.5\n93353|0.5\n93354|0.68056\n93355|0.41667\n93356|0.43056\n93357|0.76389\n93358|0.72222\n93359|0.5\n93360|0.55556\n93361|0.5\n93362|0.5\n93363|0.5\n93364|0.66667\n93365|0.54167\n93366|0.59722\n93367|0.48611\n93368|0.61111\n93369|0.58333\n93370|0.51389\n93371|0.5\n93372|0.45833\n93373|0.5\n93374|0.5\n93375|0.51389\n93376|0.5\n93377|0.5\n93378|0.5\n93379|0.51389\n93380|0.44444\n93381|0.51389\n93382|0.54167\n93383|0.5\n93384|0.22222\n93385|0.34722\n93386|0.61111\n93387|0.5\n93388|0.41667\n93389|0.5\n93390|0.44444\n93391|0.5\n93392|0.5\n93393|0.56944\n93394|0.56944\n93395|0.66667\n93396|0.20833\n93397|0.51389\n93398|0.5\n93399|0.41667\n93400|0.5\n93401|0.55556\n93402|0.83333\n93403|0.72222\n93404|0.44444\n93405|0.13889\n93406|0.5\n93407|0.55556\n93408|0.16667\n93409|0.59722\n93410|0.5\n93411|0.41667\n93412|0.5\n93413|0.55556\n93414|0.66667\n93415|0.77778\n93416|0.63889\n93417|0.70833\n93418|0.58333\n93419|0.55556\n93420|0.48611\n93421|0.51389\n93422|0.51389\n93423|0.5\n93424|0.36111\n93425|0.5\n93426|0.66667\n93427|0.59722\n93428|0.625\n93429|0.52778\n93430|0.51389\n93431|0.875\n93432|0.69444\n93433|0.52778\n93434|0.73611\n93435|0.84722\n93436|0.61111\n93437|0.5\n93438|0.69444\n93439|0.55556\n93440|0.58333\n93441|0.55556\n93442|0.55556\n93443|0.69444\n93444|0.56944\n93445|0.58333\n93446|0.51389\n93447|0.47222\n93448|0.5\n93449|0.5\n93450|0.5\n93451|0.625\n93452|0.55556\n93453|0.55556\n93454|0.63889\n93455|0.5\n93456|0.63889\n93457|0.38889\n93458|0.5\n93459|0.34722\n93460|0.25\n93461|0.33333\n93462|0.5\n93463|0.5\n93464|0.625\n93465|0.5\n93466|0.55556\n93467|0.44444\n93468|0.51389\n93469|0.61111\n93470|0.5\n93471|0.58333\n93472|0.5\n93473|0.5\n93474|0.34722\n93475|0.43056\n93476|0.41667\n93477|0.33333\n93478|0.38889\n93479|0.52778\n93480|0.66667\n93481|0.55556\n93482|0.52778\n93483|0.45833\n93484|0.51389\n93485|0.44444\n93486|0.81944\n93487|0.63889\n93488|0.72222\n93489|0.61111\n93490|0.90278\n93491|0.93056\n93492|0.48611\n93493|0.52778\n93494|0.44444\n93495|0.5\n93496|0.54167\n93497|0.55556\n93498|0.56944\n93499|0.51389\n93500|0.65278\n93501|0.73611\n93502|0.73611\n93503|0.80556\n93504|0.5\n93505|0.66667\n93506|0.5\n93507|0.75\n93508|0.44444\n93509|0.31944\n93510|0.27778\n93511|0.69444\n93512|0.625\n93513|0.59722\n93514|0.80556\n93515|0.72222\n93516|0.75\n93517|0.66667\n93518|0.5\n93519|0.72222\n93520|0.73611\n93521|0.51389\n93522|0.38889\n93523|0.58333\n93524|0.80556\n93525|0.45833\n93526|0.63889\n93527|0.70833\n93528|0.61111\n93529|0.55556\n93530|0.69444\n93531|0.72222\n93532|0.61111\n93533|0.76389\n93534|0.5\n93535|0.68056\n93536|0.48611\n93537|0.59722\n93538|0.55556\n93539|0.73611\n93540|0.36111\n93541|0.40278\n93542|0.41667\n93543|0.375\n93544|0.26389\n93545|0.5\n93546|0.59722\n93547|0.51389\n93548|0.34722\n93549|0.27778\n93550|0.56944\n93551|0.5\n93552|0.5\n93553|0.61111\n93554|0.52778\n93555|0.5\n93556|0.5\n93557|0.61111\n93558|0.5\n93559|0.5\n93560|0.5\n93561|0.5\n93562|0.61111\n93563|0.55556\n93564|0.55556\n93565|0.51389\n93566|0.44444\n93567|0.5\n93568|0.5\n93569|0.45833\n93570|0.59722\n93571|0.69444\n93572|0.73611\n93573|0.51389\n93574|0.41667\n93575|0.55556\n93576|0.58333\n93577|0.40278\n93578|0.34722\n93579|0.41667\n93580|0.58333\n93581|0.43056\n93582|0.59722\n93583|0.65278\n93584|0.72222\n93585|0.68056\n93586|0.625\n93587|0.69444\n93588|0.70833\n93589|0.5\n93590|0.44444\n93591|0.44444\n93592|0.40278\n93593|0.27778\n93594|0.63889\n93595|0.5\n93596|0.5\n93597|0.29167\n93598|0.34722\n93599|0.5\n93600|0.55556\n93601|0.52778\n93602|0.63889\n93603|0.65278\n93604|0.90278\n93605|0.5\n93606|0.125\n93607|0.44444\n93608|0.48611\n93609|0.72222\n93610|0.55556\n93611|0.43056\n93612|0.76389\n93613|0.75\n93614|0.90278\n93615|0.40278\n93616|0.69444\n93617|0.66667\n93618|0.77778\n93619|0.59722\n93620|0.65278\n93621|0.51389\n93622|0.5\n93623|0.5\n93624|0.43056\n93625|0.5\n93626|0.43056\n93627|0.44444\n93628|0.59722\n93629|0.79167\n93630|0.625\n93631|0.77778\n93632|0.83333\n93633|0.83333\n93634|0.625\n93635|0.76389\n93636|0.625\n93637|0.72222\n93638|0.77778\n93639|0.54167\n93640|0.72222\n93641|0.69444\n93642|0.56944\n93643|0.5\n93644|0.66667\n93645|0.61111\n93646|0.76389\n93647|0.94444\n93648|0.69444\n93649|0.76389\n93650|0.59722\n93651|0.75\n93652|0.63889\n93653|0.5\n93654|0.61111\n93655|0.52778\n93656|0.52778\n93657|0.34722\n93658|0.5\n93659|0.5\n93660|0.5\n93661|0.5\n93662|0.61111\n93663|0.63889\n93664|0.72222\n93665|0.33333\n93666|0.33333\n93667|0.59722\n93668|0.90278\n93669|0.94444\n93670|0.81944\n93671|0.88889\n93672|0.18056\n93673|0.45833\n93674|0.52778\n93675|0.47222\n93676|0.23611\n93677|0.5\n93678|0.56944\n93679|0.58333\n93680|0.76389\n93681|0.75\n93682|0.72222\n93683|0.52778\n93684|0.66667\n93685|0.5\n93686|0.70833\n93687|0.75\n93688|0.73611\n93689|0.83333\n93690|0.93056\n93691|0.77778\n93692|0.76389\n93693|0.77778\n93694|0.65278\n93695|0.76389\n93696|0.69444\n93697|0.75\n93698|0.79167\n93699|0.56944\n93700|0.77778\n93701|0.61111\n93702|0.5\n93703|0.5\n93704|0.5\n93705|0.38889\n93706|0.5\n93707|0.5\n93708|0.33333\n93709|0.58333\n93710|0.56944\n93711|0.30556\n93712|0.38889\n93713|0.52778\n93714|0.72222\n93715|0.58333\n93716|0.97222\n93717|0.69444\n93718|0.61111\n93719|0.5\n93720|0.5\n93721|0.52778\n93722|0.51389\n93723|0.54167\n93724|0.5\n93725|0.48611\n93726|0.58333\n93727|0.66667\n93728|0.5\n93729|0.47222\n93730|0.47222\n93731|0.86111\n93732|0.875\n93733|0.83333\n93734|0.66667\n93735|0.73611\n93736|0.54167\n93737|0.68056\n93738|0.56944\n93739|0.59722\n93740|0.56944\n93741|0.36111\n93742|0.75\n93743|0.63889\n93744|0.59722\n93745|0.69444\n93746|0.72222\n93747|0.5\n93748|0.5\n93749|0.45833\n93750|0.54167\n93751|0.88889\n93752|0.86111\n93753|0.83333\n93754|0.83333\n93755|0.80556\n93756|0.55556\n93757|0.73611\n93758|0.86111\n93759|0.70833\n93760|0.69444\n93761|0.81944\n93762|0.625\n93763|0.63889\n93764|0.68056\n93765|0.69444\n93766|0.63889\n93767|0.66667\n93768|0.83333\n93769|0.77778\n93770|0.66667\n93771|0.375\n93772|0.40278\n93773|0.41667\n93774|0.58333\n93775|0.51389\n93776|0.625\n93777|0.77778\n93778|0.70833\n93779|0.94444\n93780|0.72222\n93781|0.84722\n93782|0.88889\n93783|0.83333\n93784|0.70833\n93785|0.79167\n93786|0.83333\n93787|0.59722\n93788|0.70833\n93789|0.77778\n93790|0.90278\n93791|1\n93792|0.5\n93793|0.51389\n93794|0.75\n93795|0.70833\n93796|0.61111\n93797|0.65278\n93798|0.81944\n93799|0.69444\n93800|0.83333\n93801|0.84722\n93802|0.76389\n93803|0.81944\n93804|0.75\n93805|0.58333\n93806|0.55556\n93807|0.5\n93808|0.72222\n93809|0.55556\n93810|0.79167\n93811|0.55556\n93812|0.79167\n93813|0.52778\n93814|0.59722\n93815|0.055556\n93816|0.625\n93817|0.70833\n93818|0.66667\n93819|0.76389\n93820|0.58333\n93821|0.5\n93822|0.66667\n93823|0.51389\n93824|0.47222\n93825|0.5\n93826|0.45833\n93827|0.375\n93828|0.48611\n93829|0.5\n93830|0.45833\n93831|0.44444\n93832|0.41667\n93833|0.5\n93834|0.45833\n93835|0.43056\n93836|0.41667\n93837|0.70833\n93838|0.5\n93839|0.5\n93840|0.58333\n93841|0.44444\n93842|0.5\n93843|0.58333\n93844|0.375\n93845|0.76389\n93846|0.73611\n93847|0.61111\n93848|0.69444\n93849|0.72222\n93850|0.38889\n93851|0.33333\n93852|0.43056\n93853|0.5\n93854|0.52778\n93855|0.625\n93856|0.625\n93857|0.51389\n93858|0.58333\n93859|0.5\n93860|0.61111\n93861|0.63889\n93862|0.5\n93863|0.93056\n93864|0.48611\n93865|0.44444\n93866|0.58333\n93867|0.52778\n93868|0.61111\n93869|0.69444\n93870|0.86111\n93871|0.55556\n93872|0.43056\n93873|0.63889\n93874|0.55556\n93875|0.58333\n93876|0.58333\n93877|0.51389\n93878|0.27778\n93879|0.91667\n93880|0.91667\n93881|0.84722\n93882|0.86111\n93883|0.54167\n93884|0.55556\n93885|0.52778\n93886|0.27778\n93887|0.75\n93888|0.88889\n93889|0.59722\n93890|0.51389\n93891|0.66667\n93892|0.55556\n93893|0.59722\n93894|0.52778\n93895|0.54167\n93896|0.44444\n93897|0.5\n93898|0.76389\n93899|0.63889\n93900|0.51389\n93901|0.5\n93902|0.77778\n93903|0.5\n93904|0.27778\n93905|0.91667\n93906|0.95833\n93907|0.84722\n93908|0.70833\n93909|0.72222\n93910|0.5\n93911|0.5\n93912|0.56944\n93913|0.45833\n93914|0.54167\n93915|0.5\n93916|0.55556\n93917|0.63889\n93918|0.77778\n93919|0.66667\n93920|0.81944\n93921|0.81944\n93922|0.77778\n93923|0.69444\n93924|0.65278\n93925|0.75\n93926|0.80556\n93927|0.75\n93928|0.84722\n93929|0.79167\n93930|0.79167\n93931|0.86111\n93932|0.83333\n93933|0.75\n93934|0.63889\n93935|0.58333\n93936|0.77778\n93937|0.66667\n93938|0.75\n93939|0.79167\n93940|0.68056\n93941|0.75\n93942|0.81944\n93943|0.58333\n93944|0.43056\n93945|0.66667\n93946|0.72222\n93947|0.56944\n93948|0.66667\n93949|0.59722\n93950|0.5\n93951|0.66667\n93952|0.5\n93953|0.61111\n93954|0.34722\n93955|0.5\n93956|0.55556\n93957|0.72222\n93958|0.58333\n93959|0.55556\n93960|0.51389\n93961|0.54167\n93962|0.55556\n93963|0.66667\n93964|0.51389\n93965|0.54167\n93966|0.58333\n93967|0.61111\n93968|0.44444\n93969|0.54167\n93970|0.70833\n93971|0.75\n93972|0.44444\n93973|0.77778\n93974|0.43056\n93975|0.40278\n93976|0.41667\n93977|0.625\n93978|0.81944\n93979|0.80556\n93980|0.73611\n93981|0.80556\n93982|0.58333\n93983|0.65278\n93984|0.51389\n93985|0.54167\n93986|0.625\n93987|0.5\n93988|0.66667\n93989|0.58333\n93990|0.61111\n93991|0.61111\n93992|0.72222\n93993|0.68056\n93994|0.55556\n93995|0.75\n93996|0.63889\n93997|0.69444\n93998|0.73611\n93999|0.68056\n94000|0.61111\n94001|0.59722\n94002|0.65278\n94003|0.72222\n94004|0.27778\n94005|0.5\n94006|0.40278\n94007|0.5\n94008|0.55556\n94009|0.55556\n94010|0.47222\n94011|0.83333\n94012|0.58333\n94013|0.77778\n94014|0.84722\n94015|0.73611\n94016|0.88889\n94017|0.75\n94018|0.75\n94019|0.88889\n94020|0.69444\n94021|0.83333\n94022|0.88889\n94023|0.75\n94024|0.75\n94025|0.75\n94026|0.58333\n94027|0.73611\n94028|0.45833\n94029|0.58333\n94030|0.86111\n94031|0.73611\n94032|0.76389\n94033|0.72222\n94034|0.5\n94035|0.80556\n94036|0.88889\n94037|0.54167\n94038|0.29167\n94039|0.58333\n94040|0.5\n94041|0.72222\n94042|0.625\n94043|0.52778\n94044|0.43056\n94045|0.44444\n94046|0.59722\n94047|0.69444\n94048|0.52778\n94049|0.56944\n94050|0.5\n94051|0.68056\n94052|0.70833\n94053|0.875\n94054|0.56944\n94055|0.5\n94056|0.5\n94057|0.5\n94058|0.54167\n94059|0.66667\n94060|0.61111\n94061|0.66667\n94062|0.5\n94063|0.54167\n94064|0.76389\n94065|0.69444\n94066|0.52778\n94067|0.5\n94068|0.68056\n94069|0.59722\n94070|0.59722\n94071|0.56944\n94072|0.5\n94073|0.55556\n94074|0.38889\n94075|0.47222\n94076|0.34722\n94077|0.59722\n94078|0.72222\n94079|0.75\n94080|0.83333\n94081|0.83333\n94082|0.63889\n94083|0.41667\n94084|0.63889\n94085|0.54167\n94086|0.48611\n94087|0.40278\n94088|0.625\n94089|0.5\n94090|0.48611\n94091|0.20833\n94092|0.34722\n94093|0.31944\n94094|0.5\n94095|0.47222\n94096|0.5\n94097|0.5\n94098|0.55556\n94099|0.65278\n94100|0.75\n94101|0.75\n94102|0.5\n94103|0.38889\n94104|0.51389\n94105|0.51389\n94106|0.88889\n94107|0.69444\n94108|0.56944\n94109|0.59722\n94110|0.69444\n94111|0.54167\n94112|0.72222\n94113|0.68056\n94114|0.76389\n94115|0.5\n94116|0.51389\n94117|0.38889\n94118|0.38889\n94119|0.56944\n94120|0.51389\n94121|0.68056\n94122|0.55556\n94123|0.65278\n94124|0.5\n94125|0.44444\n94126|0.44444\n94127|0.52778\n94128|0.44444\n94129|0.54167\n94130|0.38889\n94131|0.5\n94132|0.36111\n94133|0.69444\n94134|0.76389\n94135|0.52778\n94136|0.44444\n94137|0.61111\n94138|0.54167\n94139|0.54167\n94140|0.79167\n94141|0.48611\n94142|0.44444\n94143|0.72222\n94144|0.73611\n94145|0.52778\n94146|0.45833\n94147|0.66667\n94148|0.79167\n94149|0.80556\n94150|0.63889\n94151|0.65278\n94152|0.77778\n94153|0.68056\n94154|0.76389\n94155|0.65278\n94156|0.61111\n94157|0.625\n94158|0.69444\n94159|0.73611\n94160|0.5\n94161|0.625\n94162|0.68056\n94163|0.63889\n94164|0.27778\n94165|0.48611\n94166|0.61111\n94167|0.63889\n94168|0.56944\n94169|0.55556\n94170|0.59722\n94171|0.43056\n94172|0.43056\n94173|0.56944\n94174|0.56944\n94175|0.76389\n94176|0.86111\n94177|0.55556\n94178|0.41667\n94179|0.52778\n94180|0.40278\n94181|0.5\n94182|0.45833\n94183|0.58333\n94184|0.5\n94185|0.69444\n94186|0.52778\n94187|0.5\n94188|0.76389\n94189|0.77778\n94190|0.59722\n94191|0.81944\n94192|0.79167\n94193|0.72222\n94194|0.5\n94195|0.73611\n94196|0.58333\n94197|0.5\n94198|0.55556\n94199|0.52778\n94200|0.55556\n94201|0.43056\n94202|0.48611\n94203|0.58333\n94204|0.45833\n94205|0.51389\n94206|0.44444\n94207|0.5\n94208|0.52778\n94209|0.58333\n94210|0.5\n94211|0.5\n94212|0.72222\n94213|0.5\n94214|0.55556\n94215|0.5\n94216|0.5\n94217|0.55556\n94218|0.69444\n94219|0.81944\n94220|0.73611\n94221|0.31944\n94222|0.72222\n94223|0.55556\n94224|0.5\n94225|0.5\n94226|0.43056\n94227|0.55556\n94228|0.5\n94229|0.56944\n94230|0.5\n94231|0.5\n94232|0.5\n94233|0.48611\n94234|0.5\n94235|0.48611\n94236|0.44444\n94237|0.5\n94238|0.61111\n94239|0.27778\n94240|0.66667\n94241|0.47222\n94242|0.55556\n94243|0.36111\n94244|0.48611\n94245|0.38889\n94246|0.77778\n94247|0.30556\n94248|0.33333\n94249|0.69444\n94250|0.625\n94251|0.625\n94252|0.79167\n94253|0.5\n94254|0.47222\n94255|0.44444\n94256|0.54167\n94257|0.59722\n94258|0.51389\n94259|0.51389\n94260|0.29167\n94261|0.5\n94262|0.59722\n94263|0.5\n94264|0.51389\n94265|0.5\n94266|0.5\n94267|0.61111\n94268|0.77778\n94269|0.51389\n94270|0.5\n94271|0.5\n94272|0.22222\n94273|0.5\n94274|0.47222\n94275|0.5\n94276|0.5\n94277|0.5\n94278|0.625\n94279|0.51389\n94280|0.68056\n94281|0.61111\n94282|0.61111\n94283|0.80556\n94284|0.55556\n94285|0.84722\n94286|0.58333\n94287|0.79167\n94288|0.44444\n94289|0.51389\n94290|0.55556\n94291|0.55556\n94292|0.65278\n94293|0.55556\n94294|0.55556\n94295|0.44444\n94296|0.52778\n94297|0.33333\n94298|0.63889\n94299|0.61111\n94300|0.54167\n94301|0.65278\n94302|0.625\n94303|0.73611\n94304|0.55556\n94305|0.55556\n94306|0.58333\n94307|0.86111\n94308|0.61111\n94309|0.5\n94310|0.38889\n94311|0.58333\n94312|0.54167\n94313|0.77778\n94314|0.5\n94315|0.47222\n94316|0.375\n94317|0.55556\n94318|0.27778\n94319|0.48611\n94320|0.54167\n94321|0.52778\n94322|0.5\n94323|0.16667\n94324|0.5\n94325|0.75\n94326|0.68056\n94327|0.69444\n94328|0.84722\n94329|0.56944\n94330|0.83333\n94331|0.76389\n94332|0.75\n94333|0.77778\n94334|0.79167\n94335|0.75\n94336|0.91667\n94337|0.94444\n94338|0.44444\n94339|0.41667\n94340|0.30556\n94341|0.63889\n94342|0.31944\n94343|0.41667\n94344|0.54167\n94345|0.44444\n94346|0.43056\n94347|0.61111\n94348|0.33333\n94349|0.30556\n94350|0.30556\n94351|0.30556\n94352|0.5\n94353|0.33333\n94354|0.58333\n94355|0.58333\n94356|0.5\n94357|0.51389\n94358|0.56944\n94359|0.51389\n94360|0.5\n94361|0.5\n94362|0.625\n94363|0.58333\n94364|0.51389\n94365|0.5\n94366|0.48611\n94367|0.47222\n94368|0.5\n94369|0.40278\n94370|0.38889\n94371|0.75\n94372|0.54167\n94373|0.51389\n94374|0.51389\n94375|0.61111\n94376|0.45833\n94377|0.51389\n94378|0.44444\n94379|0.5\n94380|0.34722\n94381|0.45833\n94382|0.79167\n94383|0.5\n94384|0.44444\n94385|0.5\n94386|0.5\n94387|0.5\n94388|0.45833\n94389|0.38889\n94390|0.72222\n94391|0.44444\n94392|0.5\n94393|0.66667\n94394|0.56944\n94395|0.38889\n94396|0.55556\n94397|0.5\n94398|0.5\n94399|0.54167\n94400|0.43056\n94401|0.56944\n94402|0.5\n94403|0.15278\n94404|0.61111\n94405|0.58333\n94406|0.5\n94407|0.61111\n94408|0.5\n94409|0.5\n94410|0.45833\n94411|0.45833\n94412|0.5\n94413|0.52778\n94414|0.36111\n94415|0.48611\n94416|0.5\n94417|0.5\n94418|0.55556\n94419|0.45833\n94420|0.5\n94421|0.5\n94422|0.5\n94423|0.41667\n94424|0.66667\n94425|0.5\n94426|0.5\n94427|0.36111\n94428|0.47222\n94429|0.5\n94430|0.54167\n94431|0.51389\n94432|0.61111\n94433|0.90278\n94434|0.81944\n94435|0.43056\n94436|0.51389\n94437|0.59722\n94438|0.5\n94439|0.51389\n94440|0.5\n94441|0.61111\n94442|0.51389\n94443|0.55556\n94444|0.5\n94445|0.5\n94446|0.59722\n94447|0.51389\n94448|0.73611\n94449|0.88889\n94450|0.45833\n94451|0.5\n94452|0.5\n94453|0.66667\n94454|0.56944\n94455|0.69444\n94456|0.55556\n94457|0.5\n94458|0.5\n94459|0.56944\n94460|0.76389\n94461|0.66667\n94462|0.84722\n94463|0.79167\n94464|0.72222\n94465|0.48611\n94466|0.625\n94467|0.52778\n94468|0.54167\n94469|0.69444\n94470|0.75\n94471|0.68056\n94472|0.68056\n94473|0.83333\n94474|0.30556\n94475|0.44444\n94476|0.68056\n94477|0.51389\n94478|0.81944\n94479|0.72222\n94480|0.56944\n94481|0.16667\n94482|0.56944\n94483|0.45833\n94484|0.55556\n94485|0.83333\n94486|0.69444\n94487|0.23611\n94488|0.33333\n94489|0.91667\n94490|0.76389\n94491|0.65278\n94492|0.69444\n94493|0.69444\n94494|0.81944\n94495|0.76389\n94496|0.625\n94497|0.86111\n94498|0.79167\n94499|0.79167\n94500|0.66667\n94501|0.80556\n94502|0.38889\n94503|0.44444\n94504|0.80556\n94505|0.52778\n94506|0.61111\n94507|0.5\n94508|0.56944\n94509|0.5\n94510|0.43056\n94511|0.5\n94512|0.58333\n94513|0.72222\n94514|0.47222\n94515|0.70833\n94516|0.59722\n94517|0.59722\n94518|0.63889\n94519|0.5\n94520|0.40278\n94521|0.63889\n94522|0.83333\n94523|0.23611\n94524|0.40278\n94525|0.48611\n94526|0.47222\n94527|0.52778\n94528|0.65278\n94529|0.45833\n94530|0.41667\n94531|0.76389\n94532|0.75\n94533|0.5\n94534|0.5\n94535|0.84722\n94536|0.52778\n94537|0.70833\n94538|0.83333\n94539|0.38889\n94540|0.625\n94541|0.80556\n94542|0.59722\n94543|0.79167\n94544|0.80556\n94545|0.59722\n94546|0.40278\n94547|0.54167\n94548|0.73611\n94549|0.48611\n94550|0.44444\n94551|0.27778\n94552|0.375\n94553|0.61111\n94554|0.66667\n94555|0.44444\n94556|0.83333\n94557|0.81944\n94558|0.52778\n94559|0.55556\n94560|0.88889\n94561|0.25\n94562|0.5\n94563|0.625\n94564|0.41667\n94565|0.69444\n94566|0.5\n94567|0.5\n94568|0.44444\n94569|0.48611\n94570|0.5\n94571|0.5\n94572|0.61111\n94573|0.61111\n94574|0.83333\n94575|0.29167\n94576|0.22222\n94577|0.91667\n94578|0.63889\n94579|0.77778\n94580|0.80556\n94581|0.45833\n94582|0.81944\n94583|0.70833\n94584|0.75\n94585|0.77778\n94586|0.44444\n94587|0.70833\n94588|0.86111\n94589|0.5\n94590|0.5\n94591|0.56944\n94592|0.76389\n94593|0.56944\n94594|0.68056\n94595|0.54167\n94596|0.65278\n94597|0.72222\n94598|0.61111\n94599|0.43056\n94600|0.75\n94601|0.5\n94602|0.43056\n94603|0.66667\n94604|0.5\n94605|0.51389\n94606|0.55556\n94607|0.65278\n94608|0.54167\n94609|0.55556\n94610|0.81944\n94611|0.77778\n94612|0.61111\n94613|0.79167\n94614|0.56944\n94615|0.72222\n94616|0.76389\n94617|0.75\n94618|0.68056\n94619|0.77778\n94620|0.75\n94621|0.5\n94622|0.44444\n94623|0.33333\n94624|0.43056\n94625|0.52778\n94626|0.48611\n94627|0.63889\n94628|0.77778\n94629|0.75\n94630|0.80556\n94631|0.27778\n94632|0.56944\n94633|0.76389\n94634|0.44444\n94635|0.65278\n94636|0.66667\n94637|0.75\n94638|0.66667\n94639|0.33333\n94640|0.44444\n94641|0.51389\n94642|0.68056\n94643|0.69444\n94644|0.48611\n94645|0.73611\n94646|0.68056\n94647|0.55556\n94648|0.66667\n94649|0.79167\n94650|0.52778\n94651|0.69444\n94652|0.61111\n94653|0.79167\n94654|0.76389\n94655|0.51389\n94656|0.52778\n94657|0.72222\n94658|0.63889\n94659|0.73611\n94660|0.65278\n94661|0.5\n94662|0.79167\n94663|0.51389\n94664|0.63889\n94665|0.5\n94666|0.5\n94667|0.58333\n94668|0.56944\n94669|0.625\n94670|0.44444\n94671|0.55556\n94672|0.45833\n94673|0.68056\n94674|0.83333\n94675|0.61111\n94676|0.70833\n94677|0.45833\n94678|0.66667\n94679|0.5\n94680|0.41667\n94681|0.5\n94682|0.48611\n94683|0.5\n94684|0.61111\n94685|0.51389\n94686|0.70833\n94687|0.5\n94688|0.84722\n94689|0.70833\n94690|0.70833\n94691|0.51389\n94692|0.58333\n94693|0.23611\n94694|0.80556\n94695|0.84722\n94696|0.72222\n94697|0.81944\n94698|0.56944\n94699|0.72222\n94700|0.5\n94701|0.5\n94702|0.48611\n94703|0.52778\n94704|0.5\n94705|0.5\n94706|0.65278\n94707|0.69444\n94708|0.80556\n94709|0.43056\n94710|0.33333\n94711|0.90278\n94712|0.69444\n94713|0.66667\n94714|0.72222\n94715|0.65278\n94716|0.75\n94717|0.73611\n94718|0.55556\n94719|0.59722\n94720|0.48611\n94721|0.77778\n94722|0.56944\n94723|0.63889\n94724|0.83333\n94725|0.63889\n94726|0.58333\n94727|0.79167\n94728|0.61111\n94729|0.83333\n94730|0.61111\n94731|0.25\n94732|0.36111\n94733|0.54167\n94734|0.79167\n94735|0.61111\n94736|0.25\n94737|0.54167\n94738|0.69444\n94739|0.29167\n94740|0.88889\n94741|0.66667\n94742|0.59722\n94743|0.34722\n94744|0.48611\n94745|0.73611\n94746|0.5\n94747|0.94444\n94748|0.59722\n94749|0.83333\n94750|0.55556\n94751|0.86111\n94752|0.69444\n94753|0.66667\n94754|0.44444\n94755|0.5\n94756|0.65278\n94757|0.47222\n94758|0.79167\n94759|0.5\n94760|0.44444\n94761|0.5\n94762|0.65278\n94763|0.91667\n94764|0.59722\n94765|0.81944\n94766|0.68056\n94767|0.625\n94768|0.38889\n94769|0.97222\n94770|0.38889\n94771|0.875\n94772|0.72222\n94773|0.45833\n94774|0.5\n94775|0.40278\n94776|0.5\n94777|0.58333\n94778|0.65278\n94779|0.69444\n94780|0.55556\n94781|0.5\n94782|0.76389\n94783|0.76389\n94784|0.51389\n94785|0.69444\n94786|0.55556\n94787|0.55556\n94788|0.59722\n94789|0.59722\n94790|0.58333\n94791|0.58333\n94792|0.73611\n94793|0.51389\n94794|0.77778\n94795|0.5\n94796|0.54167\n94797|0.5\n94798|0.5\n94799|0.63889\n94800|0.77778\n94801|0.51389\n94802|0.58333\n94803|0.5\n94804|0.75\n94805|0.5\n94806|0.44444\n94807|0.61111\n94808|0.18056\n94809|0.51389\n94810|0.52778\n94811|0.5\n94812|0.5\n94813|0.61111\n94814|0.5\n94815|0.5\n94816|0.79167\n94817|0.44444\n94818|0.63889\n94819|0.5\n94820|0.61111\n94821|0.44444\n94822|0.61111\n94823|0.26389\n94824|0.58333\n94825|0.93056\n94826|0.45833\n94827|0.54167\n94828|0.76389\n94829|0.55556\n94830|0.70833\n94831|0.77778\n94832|0.69444\n94833|0.75\n94834|0.84722\n94835|0.66667\n94836|0.83333\n94837|0.65278\n94838|0.88889\n94839|0.68056\n94840|0.5\n94841|0.68056\n94842|0.55556\n94843|0.65278\n94844|0.61111\n94845|0.625\n94846|0.77778\n94847|0.45833\n94848|0.56944\n94849|0.5\n94850|0.73611\n94851|0.72222\n94852|0.33333\n94853|0.56944\n94854|0.61111\n94855|0.5\n94856|0.70833\n94857|0.58333\n94858|0.69444\n94859|0.79167\n94860|0.72222\n94861|0.86111\n94862|0.38889\n94863|0.66667\n94864|0.90278\n94865|0.58333\n94866|0.69444\n94867|0.66667\n94868|0.59722\n94869|0.73611\n94870|0.76389\n94871|0.44444\n94872|0.26389\n94873|0.16667\n94874|0.5\n94875|0.63889\n94876|0.79167\n94877|0.55556\n94878|0.41667\n94879|0.56944\n94880|0.20833\n94881|0.625\n94882|0.72222\n94883|0.79167\n94884|0.88889\n94885|0.5\n94886|0.83333\n94887|0.80556\n94888|0.52778\n94889|0.72222\n94890|0.75\n94891|0.5\n94892|0.5\n94893|0.5\n94894|0.72222\n94895|0.56944\n94896|0.44444\n94897|0.66667\n94898|0.43056\n94899|0.65278\n94900|0.69444\n94901|0.41667\n94902|0.68056\n94903|0.81944\n94904|0.80556\n94905|0.55556\n94906|0.34722\n94907|0.56944\n94908|0.40278\n94909|0.52778\n94910|0.23611\n94911|0.5\n94912|0.375\n94913|0.69444\n94914|0.22222\n94915|0.56944\n94916|0.76389\n94917|0.43056\n94918|0.69444\n94919|0.69444\n94920|0.38889\n94921|0.58333\n94922|0.44444\n94923|0.5\n94924|0.66667\n94925|0.625\n94926|0.69444\n94927|0.69444\n94928|0.61111\n94929|0.58333\n94930|0.93056\n94931|0.5\n94932|0.375\n94933|0.26389\n94934|0.5\n94935|0.86111\n94936|0.44444\n94937|0.63889\n94938|0.73611\n94939|0.54167\n94940|0.61111\n94941|0.31944\n94942|0.23611\n94943|0.44444\n94944|0.84722\n94945|0.44444\n94946|0.56944\n94947|0.63889\n94948|0.5\n94949|0.5\n94950|0.31944\n94951|0.52778\n94952|0.56944\n94953|0.77778\n94954|0.81944\n94955|0.77778\n94956|0.61111\n94957|0.625\n94958|0.73611\n94959|0.90278\n94960|0.5\n94961|0.73611\n94962|0.83333\n94963|0.73611\n94964|0.75\n94965|0.69444\n94966|0.625\n94967|0.55556\n94968|0.41667\n94969|0.51389\n94970|0.72222\n94971|0.65278\n94972|0.73611\n94973|0.43056\n94974|0.58333\n94975|0.44444\n94976|0.5\n94977|0.54167\n94978|0.94444\n94979|0.56944\n94980|0.5\n94981|0.5\n94982|0.5\n94983|0.5\n94984|0.51389\n94985|0.5\n94986|0.5\n94987|0.56944\n94988|0.5\n94989|0.52778\n94990|0.5\n94991|0.5\n94992|0.77778\n94993|0.58333\n94994|0.58333\n94995|0.61111\n94996|0.51389\n94997|0.5\n94998|0.5\n94999|0.5\n95000|0.61111\n95001|0.66667\n95002|0.375\n95003|0.5\n95004|0.51389\n95005|0.43056\n95006|0.5\n95007|0.5\n95008|0.51389\n95009|0.5\n95010|0.5\n95011|0.5\n95012|0.5\n95013|0.43056\n95014|0.52778\n95015|0.5\n95016|0.5\n95017|0.5\n95018|0.36111\n95019|0.5\n95020|0.5\n95021|0.5\n95022|0.56944\n95023|0.5\n95024|0.5\n95025|0.59722\n95026|0.38889\n95027|0.47222\n95028|0.5\n95029|0.63889\n95030|0.27778\n95031|0.5\n95032|0.51389\n95033|0.5\n95034|0.44444\n95035|0.38889\n95036|0.61111\n95037|0.51389\n95038|0.58333\n95039|0.5\n95040|0.52778\n95041|0.55556\n95042|0.5\n95043|0.5\n95044|0.48611\n95045|0.51389\n95046|0.5\n95047|0.5\n95048|0.75\n95049|0.70833\n95050|0.5\n95051|0.47222\n95052|0.58333\n95053|0.65278\n95054|0.56944\n95055|0.54167\n95056|0.5\n95057|0.5\n95058|0.5\n95059|0.5\n95060|0.5\n95061|0.38889\n95062|0.38889\n95063|0.56944\n95064|0.5\n95065|0.52778\n95066|0.76389\n95067|0.51389\n95068|0.5\n95069|0.5\n95070|0.5\n95071|0.59722\n95072|0.55556\n95073|0.51389\n95074|0.52778\n95075|0.59722\n95076|0.5\n95077|0.5\n95078|0.5\n95079|0.34722\n95080|0.51389\n95081|0.5\n95082|0.51389\n95083|0.5\n95084|0.5\n95085|0.5\n95086|0.51389\n95087|0.56944\n95088|0.38889\n95089|0.31944\n95090|0.54167\n95091|0.55556\n95092|0.5\n95093|0.56944\n95094|0.56944\n95095|0.80556\n95096|0.45833\n95097|0.34722\n95098|0.58333\n95099|0.77778\n95100|0.77778\n95101|0.73611\n95102|0.5\n95103|0.51389\n95104|0.52778\n95105|0.5\n95106|0.5\n95107|0.43056\n95108|0.77778\n95109|0.75\n95110|0.75\n95111|0.61111\n95112|0.45833\n95113|0.55556\n95114|0.5\n95115|0.80556\n95116|0.41667\n95117|0.375\n95118|0.55556\n95119|0.69444\n95120|0.79167\n95121|0.76389\n95122|0.72222\n95123|0.44444\n95124|0.65278\n95125|0.5\n95126|0.5\n95127|0.69444\n95128|0.5\n95129|0.5\n95130|0.5\n95131|0.59722\n95132|0.5\n95133|0.5\n95134|0.5\n95135|0.5\n95136|0.84722\n95137|0.40278\n95138|0.41667\n95139|0.44444\n95140|0.61111\n95141|0.65278\n95142|0.68056\n95143|0.5\n95144|0.5\n95145|0.72222\n95146|0.65278\n95147|0.75\n95148|0.81944\n95149|0.63889\n95150|0.48611\n95151|0.5\n95152|0.51389\n95153|0.56944\n95154|0.75\n95155|0.63889\n95156|0.68056\n95157|0.5\n95158|0.59722\n95159|0.63889\n95160|0.5\n95161|0.51389\n95162|0.5\n95163|0.43056\n95164|0.45833\n95165|0.40278\n95166|0.41667\n95167|0.59722\n95168|0.66667\n95169|0.72222\n95170|0.65278\n95171|0.5\n95172|0.5\n95173|0.47222\n95174|0.63889\n95175|0.5\n95176|0.91667\n95177|0.75\n95178|0.88889\n95179|0.72222\n95180|0.77778\n95181|0.68056\n95182|0.84722\n95183|0.93056\n95184|0.95833\n95185|1\n95186|0.59722\n95187|0.76389\n95188|0.86111\n95189|0.875\n95190|0.69444\n95191|0.66667\n95192|0.875\n95193|0.91667\n95194|0.63889\n95195|0.77778\n95196|0.68056\n95197|0.83333\n95198|0.84722\n95199|0.83333\n95200|0.88889\n95201|0.875\n95202|0.5\n95203|0.73611\n95204|0.90278\n95205|0.73611\n95206|0.63889\n95207|0.76389\n95208|0.72222\n95209|0.5\n95210|0.5\n95211|0.26389\n95212|0.5\n95213|0.69444\n95214|0.44444\n95215|0.58333\n95216|0.59722\n95217|0.75\n95218|0.58333\n95219|0.84722\n95220|0.86111\n95221|0.80556\n95222|0.45833\n95223|0.44444\n95224|0.43056\n95225|0.63889\n95226|0.54167\n95227|0.86111\n95228|0.5\n95229|0.56944\n95230|0.56944\n95231|0.41667\n95232|0.66667\n95233|0.48611\n95234|0.5\n95235|0.79167\n95236|0.55556\n95237|0.59722\n95238|0.5\n95239|0.69444\n95240|0.5\n95241|0.86111\n95242|0.88889\n95243|0.84722\n95244|0.91667\n95245|0.76389\n95246|0.56944\n95247|0.66667\n95248|0.59722\n95249|0.47222\n95250|0.5\n95251|0.625\n95252|0.5\n95253|0.52778\n95254|0.61111\n95255|0.51389\n95256|0.44444\n95257|0.5\n95258|0.5\n95259|0.5\n95260|0.58333\n95261|0.68056\n95262|0.72222\n95263|0.5\n95264|0.58333\n95265|0.5\n95266|0.63889\n95267|0.70833\n95268|0.77778\n95269|0.72222\n95270|0.55556\n95271|0.44444\n95272|0.5\n95273|0.5\n95274|0.5\n95275|0.5\n95276|0.625\n95277|0.84722\n95278|0.44444\n95279|0.59722\n95280|0.41667\n95281|0.5\n95282|0.875\n95283|0.52778\n95284|0.55556\n95285|0.5\n95286|0.5\n95287|0.73611\n95288|0.5\n95289|0.48611\n95290|0.55556\n95291|0.55556\n95292|0.45833\n95293|0.33333\n95294|0.77778\n95295|0.5\n95296|0.5\n95297|0.5\n95298|0.76389\n95299|0.69444\n95300|0.20833\n95301|0.875\n95302|0.76389\n95303|0.76389\n95304|0.5\n95305|0.83333\n95306|0.5\n95307|0.44444\n95308|0.77778\n95309|0.33333\n95310|0.5\n95311|0.51389\n95312|0.47222\n95313|0.625\n95314|0.79167\n95315|0.5\n95316|0.73611\n95317|0.5\n95318|0.72222\n95319|0.65278\n95320|0.61111\n95321|0.69444\n95322|0.72222\n95323|0.56944\n95324|0.66667\n95325|0.76389\n95326|0.26389\n95327|0.375\n95328|0.16667\n95329|0.20833\n95330|0.5\n95331|0.58333\n95332|0.375\n95333|0.63889\n95334|0.5\n95335|0.56944\n95336|0.5\n95337|0.61111\n95338|0.51389\n95339|0.51389\n95340|0.52778\n95341|0.47222\n95342|0.77778\n95343|0.5\n95344|0.55556\n95345|0.83333\n95346|0.51389\n95347|0.63889\n95348|0.51389\n95349|0.51389\n95350|0.5\n95351|0.5\n95352|0.52778\n95353|0.48611\n95354|0.59722\n95355|0.625\n95356|0.55556\n95357|0.5\n95358|0.34722\n95359|0.5\n95360|0.48611\n95361|0.47222\n95362|0.29167\n95363|0.5\n95364|0.38889\n95365|0.38889\n95366|0.40278\n95367|0.44444\n95368|0.43056\n95369|0.47222\n95370|0.56944\n95371|0.5\n95372|0.5\n95373|0.54167\n95374|0.51389\n95375|0.77778\n95376|0.16667\n95377|0.51389\n95378|0.5\n95379|0.41667\n95380|0.41667\n95381|0.38889\n95382|0.44444\n95383|0.44444\n95384|0.5\n95385|0.5\n95386|0.625\n95387|0.84722\n95388|0.625\n95389|0.5\n95390|0.65278\n95391|0.66667\n95392|0.5\n95393|0.66667\n95394|0.56944\n95395|0.72222\n95396|0.38889\n95397|0.48611\n95398|0.48611\n95399|0.59722\n95400|0.5\n95401|0.38889\n95402|0.70833\n95403|0.61111\n95404|0.58333\n95405|0.65278\n95406|0.5\n95407|0.5\n95408|0.76389\n95409|0.44444\n95410|0.58333\n95411|0.45833\n95412|0.55556\n95413|0.38889\n95414|0.5\n95415|0.5\n95416|0.45833\n95417|0.5\n95418|0.5\n95419|0.83333\n95420|0.83333\n95421|0.52778\n95422|0.5\n95423|0.5\n95424|0.70833\n95425|0.51389\n95426|0.47222\n95427|0.29167\n95428|0.5\n95429|0.38889\n95430|0.5\n95431|0.44444\n95432|0.51389\n95433|0.52778\n95434|0.54167\n95435|0.5\n95436|0.5\n95437|0.22222\n95438|0.5\n95439|0.63889\n95440|0.63889\n95441|0.55556\n95442|0.55556\n95443|0.375\n95444|0.38889\n95445|0.55556\n95446|0.52778\n95447|0.70833\n95448|0.43056\n95449|0.33333\n95450|0.5\n95451|0.56944\n95452|0.43056\n95453|0.43056\n95454|0.44444\n95455|0.44444\n95456|0.5\n95457|0.44444\n95458|0.44444\n95459|0.38889\n95460|0.5\n95461|0.5\n95462|0.72222\n95463|0.55556\n95464|0.75\n95465|0.5\n95466|0.5\n95467|0.70833\n95468|0.73611\n95469|0.5\n95470|0.5\n95471|0.43056\n95472|0.29167\n95473|0.38889\n95474|0.29167\n95475|0.38889\n95476|0.5\n95477|0.45833\n95478|0.77778\n95479|0.68056\n95480|0.75\n95481|0.5\n95482|0.45833\n95483|0.55556\n95484|0.61111\n95485|0.55556\n95486|0.69444\n95487|0.55556\n95488|0.59722\n95489|0.58333\n95490|0.52778\n95491|0.68056\n95492|0.16667\n95493|0.43056\n95494|0.43056\n95495|0.31944\n95496|0.29167\n95497|0.51389\n95498|0.38889\n95499|0.77778\n95500|0.36111\n95501|0.30556\n95502|0.5\n95503|0.44444\n95504|0.51389\n95505|0.52778\n95506|0.44444\n95507|0.5\n95508|0.36111\n95509|0.51389\n95510|0.5\n95511|0.5\n95512|0.5\n95513|0.48611\n95514|0.86111\n95515|0.70833\n95516|0.83333\n95517|0.59722\n95518|0.5\n95519|0.70833\n95520|0.51389\n95521|0.51389\n95522|0.5\n95523|0.5\n95524|0.5\n95525|0.68056\n95526|0.73611\n95527|0.44444\n95528|0.5\n95529|0.69444\n95530|0.47222\n95531|0.44444\n95532|0.5\n95533|0.5\n95534|0.34722\n95535|0.54167\n95536|0.63889\n95537|0.61111\n95538|0.56944\n95539|0.625\n95540|0.66667\n95541|0.76389\n95542|0.65278\n95543|0.625\n95544|0.75\n95545|0.59722\n95546|0.5\n95547|0.80556\n95548|0.5\n95549|0.51389\n95550|0.56944\n95551|0.54167\n95552|0.5\n95553|0.51389\n95554|0.5\n95555|0.5\n95556|0.5\n95557|0.59722\n95558|0.68056\n95559|0.625\n95560|0.5\n95561|0.55556\n95562|0.54167\n95563|0.43056\n95564|0.54167\n95565|0.33333\n95566|0.5\n95567|0.75\n95568|0.875\n95569|0.77778\n95570|0.79167\n95571|0.56944\n95572|0.54167\n95573|0.5\n95574|0.58333\n95575|0.68056\n95576|0.70833\n95577|0.55556\n95578|0.375\n95579|0.47222\n95580|0.41667\n95581|0.58333\n95582|0.43056\n95583|0.52778\n95584|0.61111\n95585|0.58333\n95586|0.44444\n95587|0.55556\n95588|0.55556\n95589|0.5\n95590|0.51389\n95591|0.61111\n95592|0.75\n95593|0.625\n95594|0.47222\n95595|0.5\n95596|0.58333\n95597|0.66667\n95598|0.5\n95599|0.63889\n95600|0.72222\n95601|0.5\n95602|0.5\n95603|0.5\n95604|0.61111\n95605|0.44444\n95606|0.69444\n95607|0.54167\n95608|0.5\n95609|0.58333\n95610|0.55556\n95611|0.56944\n95612|0.56944\n95613|0.5\n95614|0.5\n95615|0.5\n95616|0.5\n95617|0.44444\n95618|0.65278\n95619|0.66667\n95620|0.5\n95621|0.55556\n95622|0.77778\n95623|0.51389\n95624|0.79167\n95625|0.5\n95626|0.5\n95627|0.5\n95628|0.5\n95629|0.83333\n95630|0.5\n95631|0.5\n95632|0.86111\n95633|0.54167\n95634|0.77778\n95635|0.61111\n95636|0.81944\n95637|0.29167\n95638|0.77778\n95639|0.72222\n95640|0.55556\n95641|0.68056\n95642|0.625\n95643|0.55556\n95644|0.34722\n95645|0.75\n95646|0.51389\n95647|0.11111\n95648|0.59722\n95649|0.34722\n95650|0.20833\n95651|0.81944\n95652|0.77778\n95653|0.94444\n95654|0.75\n95655|0.61111\n95656|0.66667\n95657|0.81944\n95658|0.5\n95659|0.68056\n95660|0.58333\n95661|0.81944\n95662|0.44444\n95663|0.58333\n95664|0.86111\n95665|0.84722\n95666|0.88889\n95667|0.80556\n95668|0.73611\n95669|0.77778\n95670|0.63889\n95671|0.90278\n95672|0.625\n95673|0.65278\n95674|0.75\n95675|0.27778\n95676|0.75\n95677|0.5\n95678|0.34722\n95679|0.625\n95680|0.59722\n95681|0.83333\n95682|0.63889\n95683|0.70833\n95684|0.73611\n95685|0.45833\n95686|0.44444\n95687|0.75\n95688|0.69444\n95689|0.55556\n95690|0.58333\n95691|0.80556\n95692|0.77778\n95693|0.65278\n95694|0.68056\n95695|0.5\n95696|0.55556\n95697|0.75\n95698|0.59722\n95699|0.31944\n95700|0.56944\n95701|0.48611\n95702|0.54167\n95703|0.51389\n95704|0.5\n95705|0.36111\n95706|0.51389\n95707|0.76389\n95708|0.84722\n95709|0.95833\n95710|0.5\n95711|0.5\n95712|0.44444\n95713|0.38889\n95714|0.43056\n95715|0.58333\n95716|0.48611\n95717|0.54167\n95718|0.5\n95719|0.5\n95720|0.51389\n95721|0.5\n95722|0.48611\n95723|0.5\n95724|0.5\n95725|0.5\n95726|0.55556\n95727|0.5\n95728|0.51389\n95729|0.65278\n95730|0.55556\n95731|0.51389\n95732|0.63889\n95733|0.5\n95734|0.5\n95735|0.55556\n95736|0.56944\n95737|0.70833\n95738|0.5\n95739|0.51389\n95740|0.625\n95741|0.375\n95742|0.44444\n95743|0.58333\n95744|0.66667\n95745|0.5\n95746|0.5\n95747|0.5\n95748|0.55556\n95749|0.625\n95750|0.43056\n95751|0.44444\n95752|0.55556\n95753|0.66667\n95754|0.625\n95755|0.44444\n95756|0.51389\n95757|0.5\n95758|0.5\n95759|0.5\n95760|0.59722\n95761|0.5\n95762|0.625\n95763|0.5\n95764|0.54167\n95765|0.51389\n95766|0.79167\n95767|0.58333\n95768|0.55556\n95769|0.54167\n95770|0.56944\n95771|0.44444\n95772|0.58333\n95773|0.5\n95774|0.34722\n95775|0.40278\n95776|0.44444\n95777|0.55556\n95778|0.58333\n95779|0.63889\n95780|0.52778\n95781|0.76389\n95782|0.68056\n95783|0.88889\n95784|0.84722\n95785|0.69444\n95786|0.61111\n95787|0.5\n95788|0.5\n95789|0.52778\n95790|0.51389\n95791|0.5\n95792|0.52778\n95793|0.38889\n95794|0.5\n95795|0.5\n95796|0.41667\n95797|0.48611\n95798|0.44444\n95799|0.5\n95800|0.45833\n95801|0.5\n95802|0.88889\n95803|0.59722\n95804|0.56944\n95805|0.5\n95806|0.58333\n95807|0.54167\n95808|0.5\n95809|0.77778\n95810|0.59722\n95811|0.65278\n95812|0.59722\n95813|0.75\n95814|0.72222\n95815|0.72222\n95816|0.73611\n95817|0.54167\n95818|0.56944\n95819|0.72222\n95820|0.72222\n95821|0.68056\n95822|0.55556\n95823|0.875\n95824|0.70833\n95825|0.70833\n95826|0.5\n95827|0.81944\n95828|0.81944\n95829|0.5\n95830|0.73611\n95831|0.44444\n95832|0.55556\n95833|0.70833\n95834|0.83333\n95835|0.88889\n95836|1\n95837|0.56944\n95838|0.625\n95839|0.63889\n95840|0.66667\n95841|0.29167\n95842|0.45833\n95843|0.73611\n95844|0.55556\n95845|0.66667\n95846|0.65278\n95847|0.84722\n95848|0.58333\n95849|0.79167\n95850|0.375\n95851|0.25\n95852|0.48611\n95853|0.5\n95854|0.69444\n95855|0.48611\n95856|0.54167\n95857|0.45833\n95858|0.55556\n95859|0.76389\n95860|0.5\n95861|0.48611\n95862|0.43056\n95863|0.5\n95864|0.44444\n95865|0.5\n95866|0.55556\n95867|0.65278\n95868|0.55556\n95869|0.5\n95870|0.63889\n95871|0.59722\n95872|0.5\n95873|0.51389\n95874|0.66667\n95875|0.66667\n95876|0.58333\n95877|0.625\n95878|0.58333\n95879|0.76389\n95880|0.5\n95881|0.5\n95882|0.61111\n95883|0.59722\n95884|0.61111\n95885|0.5\n95886|0.5\n95887|0.54167\n95888|0.51389\n95889|0.5\n95890|0.59722\n95891|0.5\n95892|0.51389\n95893|0.70833\n95894|0.5\n95895|0.5\n95896|0.59722\n95897|0.5\n95898|0.5\n95899|0.65278\n95900|0.625\n95901|0.65278\n95902|0.66667\n95903|0.61111\n95904|0.43056\n95905|0.47222\n95906|0.5\n95907|0.61111\n95908|0.73611\n95909|0.72222\n95910|0.54167\n95911|0.59722\n95912|0.5\n95913|0.45833\n95914|0.63889\n95915|0.70833\n95916|0.56944\n95917|0.5\n95918|0.55556\n95919|0.58333\n95920|0.51389\n95921|0.68056\n95922|0.55556\n95923|0.66667\n95924|0.66667\n95925|0.43056\n95926|0.375\n95927|0.5\n95928|0.72222\n95929|0.61111\n95930|0.76389\n95931|0.84722\n95932|0.51389\n95933|0.34722\n95934|0.61111\n95935|0.66667\n95936|0.56944\n95937|0.5\n95938|0.51389\n95939|0.56944\n95940|0.72222\n95941|0.20833\n95942|0.84722\n95943|0.83333\n95944|0.5\n95945|0.5\n95946|0.59722\n95947|0.5\n95948|0.70833\n95949|0.5\n95950|0.5\n95951|0.5\n95952|0.52778\n95953|0.5\n95954|0.58333\n95955|0.5\n95956|0.63889\n95957|0.66667\n95958|0.70833\n95959|0.66667\n95960|0.58333\n95961|0.59722\n95962|0.61111\n95963|0.83333\n95964|0.5\n95965|0.61111\n95966|0.13889\n95967|0.93056\n95968|0.5\n95969|0.58333\n95970|0.55556\n95971|0.63889\n95972|0.45833\n95973|0.47222\n95974|0.5\n95975|0.5\n95976|0.51389\n95977|0.93056\n95978|0.66667\n95979|0.56944\n95980|0.69444\n95981|0.65278\n95982|0.81944\n95983|0.94444\n95984|0.58333\n95985|0.58333\n95986|0.66667\n95987|0.76389\n95988|0.61111\n95989|0.56944\n95990|0.5\n95991|0.58333\n95992|0.90278\n95993|0.45833\n95994|0.29167\n95995|0.27778\n95996|0.51389\n95997|0.5\n95998|0.31944\n95999|0.31944\n96000|0.5\n96001|0.5\n96002|0.5\n96003|0.5\n96004|0.5\n96005|0.375\n96006|0.52778\n96007|0.5\n96008|0.66667\n96009|0.55556\n96010|0.44444\n96011|0.5\n96012|0.5\n96013|0.5\n96014|0.5\n96015|0.33333\n96016|0.69444\n96017|0.5\n96018|0.80556\n96019|0.51389\n96020|0.51389\n96021|0.5\n96022|0.5\n96023|0.44444\n96024|0.44444\n96025|0.51389\n96026|0.5\n96027|0.52778\n96028|0.55556\n96029|0.65278\n96030|0.5\n96031|0.54167\n96032|0.79167\n96033|0.55556\n96034|0.51389\n96035|0.63889\n96036|0.5\n96037|0.48611\n96038|0.51389\n96039|0.81944\n96040|0.5\n96041|0.5\n96042|0.55556\n96043|0.66667\n96044|0.69444\n96045|0.73611\n96046|0.83333\n96047|0.51389\n96048|0.51389\n96049|0.33333\n96050|0.38889\n96051|0.5\n96052|0.54167\n96053|0.51389\n96054|0.66667\n96055|0.84722\n96056|0.54167\n96057|0.5\n96058|0.5\n96059|0.5\n96060|0.5\n96061|0.40278\n96062|0.43056\n96063|0.77778\n96064|0.63889\n96065|0.5\n96066|0.75\n96067|0.77778\n96068|0.59722\n96069|0.77778\n96070|0.55556\n96071|0.79167\n96072|0.80556\n96073|0.625\n96074|0.77778\n96075|0.875\n96076|0.86111\n96077|0.875\n96078|0.79167\n96079|0.5\n96080|0.54167\n96081|0.5\n96082|0.58333\n96083|0.33333\n96084|0.625\n96085|0.5\n96086|0.68056\n96087|0.58333\n96088|0.54167\n96089|0.5\n96090|0.5\n96091|0.59722\n96092|0.5\n96093|0.77778\n96094|0.75\n96095|0.58333\n96096|0.76389\n96097|0.77778\n96098|0.73611\n96099|0.66667\n96100|0.76389\n96101|0.625\n96102|0.29167\n96103|0.51389\n96104|0.83333\n96105|0.84722\n96106|0.51389\n96107|0.66667\n96108|0.48611\n96109|0.5\n96110|0.59722\n96111|0.5\n96112|0.5\n96113|0.44444\n96114|0.44444\n96115|0.31944\n96116|0.5\n96117|0.5\n96118|0.77778\n96119|0.5\n96120|0.61111\n96121|0.47222\n96122|0.23611\n96123|0.5\n96124|0.5\n96125|0.5\n96126|0.59722\n96127|0.5\n96128|0.76389\n96129|0.52778\n96130|0.5\n96131|0.5\n96132|0.55556\n96133|0.5\n96134|0.5\n96135|0.65278\n96136|0.61111\n96137|0.61111\n96138|0.63889\n96139|0.43056\n96140|0.27778\n96141|0.61111\n96142|0.5\n96143|0.54167\n96144|0.5\n96145|0.48611\n96146|0.75\n96147|0.59722\n96148|0.66667\n96149|0.5\n96150|0.44444\n96151|0.45833\n96152|0.5\n96153|0.52778\n96154|0.66667\n96155|0.5\n96156|0.44444\n96157|0.625\n96158|0.68056\n96159|0.59722\n96160|0.76389\n96161|0.44444\n96162|0.70833\n96163|0.77778\n96164|0.90278\n96165|0.81944\n96166|0.95833\n96167|0.41667\n96168|0.63889\n96169|0.77778\n96170|0.73611\n96171|0.91667\n96172|0.79167\n96173|0.86111\n96174|0.875\n96175|0.86111\n96176|0.77778\n96177|0.88889\n96178|0.72222\n96179|0.66667\n96180|0.55556\n96181|0.80556\n96182|0.875\n96183|0.88889\n96184|0.79167\n96185|0.33333\n96186|0.51389\n96187|0.73611\n96188|0.61111\n96189|0.59722\n96190|0.63889\n96191|0.63889\n96192|0.83333\n96193|0.90278\n96194|0.34722\n96195|0.48611\n96196|0.83333\n96197|0.54167\n96198|0.45833\n96199|0.41667\n96200|0.45833\n96201|0.56944\n96202|0.55556\n96203|0.5\n96204|0.88889\n96205|0.94444\n96206|0.5\n96207|0.52778\n96208|0.48611\n96209|0.45833\n96210|0.55556\n96211|0.33333\n96212|0.56944\n96213|0.63889\n96214|0.83333\n96215|0.5\n96216|0.41667\n96217|0.70833\n96218|0.44444\n96219|0.70833\n96220|0.58333\n96221|0.61111\n96222|0.81944\n96223|0.73611\n96224|0.16667\n96225|0.81944\n96226|0.72222\n96227|0.31944\n96228|0.5\n96229|0.77778\n96230|0.72222\n96231|0.69444\n96232|0.5\n96233|0.61111\n96234|0.625\n96235|0.5\n96236|0.61111\n96237|0.66667\n96238|0.47222\n96239|0.72222\n96240|0.5\n96241|0.5\n96242|0.5\n96243|0.5\n96244|0.5\n96245|0.5\n96246|0.5\n96247|0.44444\n96248|0.625\n96249|0.59722\n96250|0.58333\n96251|0.625\n96252|0.48611\n96253|0.5\n96254|0.5\n96255|0.68056\n96256|0.61111\n96257|0.54167\n96258|0.5\n96259|0.5\n96260|0.5\n96261|0.5\n96262|0.58333\n96263|0.72222\n96264|0.5\n96265|0.59722\n96266|0.5\n96267|0.5\n96268|0.44444\n96269|0.5\n96270|0.5\n96271|0.625\n96272|0.5\n96273|0.5\n96274|0.375\n96275|0.40278\n96276|0.5\n96277|0.54167\n96278|0.56944\n96279|0.75\n96280|0.72222\n96281|0.73611\n96282|0.30556\n96283|0.55556\n96284|0.44444\n96285|0.44444\n96286|0.5\n96287|0.56944\n96288|0.77778\n96289|0.51389\n96290|0.52778\n96291|0.77778\n96292|0.5\n96293|0.72222\n96294|0.5\n96295|0.5\n96296|0.5\n96297|0.5\n96298|0.56944\n96299|0.5\n96300|0.51389\n96301|0.5\n96302|0.5\n96303|0.79167\n96304|0.79167\n96305|0.5\n96306|0.65278\n96307|0.5\n96308|0.5\n96309|0.76389\n96310|0.61111\n96311|0.44444\n96312|0.40278\n96313|0.56944\n96314|0.44444\n96315|0.56944\n96316|0.51389\n96317|0.38889\n96318|0.52778\n96319|0.61111\n96320|0.79167\n96321|0.75\n96322|0.875\n96323|0.5\n96324|0.98611\n96325|0.58333\n96326|0.70833\n96327|0.47222\n96328|0.22222\n96329|0.52778\n96330|0.55556\n96331|0.5\n96332|0.38889\n96333|0.34722\n96334|0.72222\n96335|0.63889\n96336|0.88889\n96337|0.5\n96338|0.38889\n96339|0.54167\n96340|0.5\n96341|0.5\n96342|0.5\n96343|0.68056\n96344|0.5\n96345|0.47222\n96346|0.51389\n96347|0.48611\n96348|0.5\n96349|0.5\n96350|0.40278\n96351|0.47222\n96352|0.5\n96353|0.79167\n96354|0.55556\n96355|0.55556\n96356|0.55556\n96357|0.69444\n96358|0.72222\n96359|0.77778\n96360|0.5\n96361|0.5\n96362|0.5\n96363|0.59722\n96364|0.63889\n96365|0.73611\n96366|0.77778\n96367|0.83333\n96368|0.72222\n96369|0.5\n96370|0.80556\n96371|0.5\n96372|0.81944\n96373|0.51389\n96374|0.77778\n96375|0.58333\n96376|0.88889\n96377|0.63889\n96378|0.43056\n96379|0.5\n96380|0.58333\n96381|0.77778\n96382|0.61111\n96383|0.80556\n96384|0.58333\n96385|0.75\n96386|0.5\n96387|0.33333\n96388|0.29167\n96389|0.44444\n96390|0.22222\n96391|0.54167\n96392|0.54167\n96393|0.5\n96394|0.56944\n96395|0.5\n96396|0.625\n96397|0.81944\n96398|0.5\n96399|0.68056\n96400|0.75\n96401|0.5\n96402|0.5\n96403|0.5\n96404|0.56944\n96405|0.52778\n96406|0.69444\n96407|0.61111\n96408|0.875\n96409|0.5\n96410|0.77778\n96411|0.48611\n96412|0.54167\n96413|0.75\n96414|0.5\n96415|0.61111\n96416|0.69444\n96417|0.65278\n96418|0.65278\n96419|0.5\n96420|0.80556\n96421|0.75\n96422|0.23611\n96423|0.69444\n96424|0.055556\n96425|0.5\n96426|0.52778\n96427|0.73611\n96428|0.59722\n96429|0.47222\n96430|0.48611\n96431|0.63889\n96432|0.5\n96433|0.58333\n96434|0.5\n96435|0.72222\n96436|0.84722\n96437|0.80556\n96438|0.61111\n96439|0.81944\n96440|0.77778\n96441|0.72222\n96442|0.65278\n96443|0.63889\n96444|0.44444\n96445|0.5\n96446|0.58333\n96447|0.38889\n96448|0.55556\n96449|0.68056\n96450|0.52778\n96451|0.63889\n96452|0.72222\n96453|0.625\n96454|0.55556\n96455|0.61111\n96456|0.45833\n96457|0.31944\n96458|0.5\n96459|0.36111\n96460|0.55556\n96461|0.5\n96462|0.5\n96463|0.48611\n96464|0.44444\n96465|0.5\n96466|0.44444\n96467|0.5\n96468|0.47222\n96469|0.59722\n96470|0.5\n96471|0.5\n96472|0.43056\n96473|0.79167\n96474|0.5\n96475|0.47222\n96476|0.31944\n96477|0.30556\n96478|0.375\n96479|0.43056\n96480|0.40278\n96481|0.56944\n96482|0.77778\n96483|0.81944\n96484|0.51389\n96485|0.77778\n96486|0.59722\n96487|0.55556\n96488|0.34722\n96489|0.5\n96490|0.375\n96491|0.76389\n96492|0.73611\n96493|0.45833\n96494|0.625\n96495|0.5\n96496|0.38889\n96497|0.48611\n96498|0.5\n96499|0.55556\n96500|0.45833\n96501|0.33333\n96502|0.27778\n96503|0.61111\n96504|0.65278\n96505|0.58333\n96506|0.38889\n96507|0.5\n96508|0.80556\n96509|0.5\n96510|0.63889\n96511|0.5\n96512|0.43056\n96513|0.61111\n96514|0.5\n96515|0.63889\n96516|0.5\n96517|0.48611\n96518|0.55556\n96519|0.72222\n96520|0.73611\n96521|0.84722\n96522|0.69444\n96523|0.625\n96524|0.27778\n96525|0.63889\n96526|0.47222\n96527|0.5\n96528|0.48611\n96529|0.59722\n96530|0.59722\n96531|0.66667\n96532|0.55556\n96533|0.5\n96534|0.70833\n96535|0.44444\n96536|0.33333\n96537|0.52778\n96538|0.5\n96539|0.65278\n96540|0.5\n96541|0.61111\n96542|0.41667\n96543|0.5\n96544|0.73611\n96545|0.58333\n96546|0.61111\n96547|0.65278\n96548|0.5\n96549|0.51389\n96550|0.61111\n96551|0.76389\n96552|0.76389\n96553|0.75\n96554|0.66667\n96555|0.77778\n96556|0.81944\n96557|0.45833\n96558|0.81944\n96559|0.5\n96560|0.44444\n96561|0.5\n96562|0.61111\n96563|0.63889\n96564|0.40278\n96565|0.51389\n96566|0.66667\n96567|0.58333\n96568|0.45833\n96569|0.5\n96570|0.5\n96571|0.54167\n96572|0.5\n96573|0.66667\n96574|0.5\n96575|0.5\n96576|0.68056\n96577|0.83333\n96578|0.72222\n96579|0.52778\n96580|0.76389\n96581|0.66667\n96582|0.70833\n96583|0.51389\n96584|0.75\n96585|0.70833\n96586|0.55556\n96587|0.54167\n96588|0.55556\n96589|0.5\n96590|0.55556\n96591|0.59722\n96592|0.45833\n96593|0.5\n96594|0.5\n96595|0.5\n96596|0.61111\n96597|0.68056\n96598|0.5\n96599|0.375\n96600|0.31944\n96601|0.36111\n96602|0.5\n96603|0.5\n96604|0.52778\n96605|0.54167\n96606|0.55556\n96607|0.44444\n96608|0.77778\n96609|0.48611\n96610|0.61111\n96611|0.45833\n96612|0.69444\n96613|0.75\n96614|0.5\n96615|0.38889\n96616|0.43056\n96617|0.65278\n96618|0.41667\n96619|0.5\n96620|0.5\n96621|0.56944\n96622|0.5\n96623|0.5\n96624|0.79167\n96625|0.5\n96626|0.69444\n96627|0.55556\n96628|0.68056\n96629|0.59722\n96630|0.5\n96631|0.43056\n96632|0.5\n96633|0.5\n96634|0.65278\n96635|0.51389\n96636|0.5\n96637|0.70833\n96638|0.5\n96639|0.58333\n96640|0.30556\n96641|0.70833\n96642|0.58333\n96643|0.5\n96644|0.30556\n96645|0.5\n96646|0.5\n96647|0.5\n96648|0.81944\n96649|0.43056\n96650|0.45833\n96651|0.51389\n96652|0.52778\n96653|0.5\n96654|0.5\n96655|0.625\n96656|0.43056\n96657|0.77778\n96658|0.72222\n96659|0.83333\n96660|0.68056\n96661|0.61111\n96662|0.77778\n96663|0.77778\n96664|0.5\n96665|0.52778\n96666|0.55556\n96667|0.51389\n96668|0.51389\n96669|0.45833\n96670|0.69444\n96671|0.56944\n96672|0.70833\n96673|0.75\n96674|0.61111\n96675|0.27778\n96676|0.54167\n96677|0.52778\n96678|0.48611\n96679|0.30556\n96680|0.56944\n96681|0.38889\n96682|0.51389\n96683|0.5\n96684|0.5\n96685|0.5\n96686|0.59722\n96687|0.51389\n96688|0.52778\n96689|0.47222\n96690|0.73611\n96691|0.5\n96692|0.58333\n96693|0.625\n96694|0.5\n96695|0.5\n96696|0.5\n96697|0.5\n96698|0.5\n96699|0.47222\n96700|0.5\n96701|0.5\n96702|0.52778\n96703|0.36111\n96704|0.58333\n96705|0.51389\n96706|0.5\n96707|0.5\n96708|0.5\n96709|0.40278\n96710|0.5\n96711|0.66667\n96712|0.76389\n96713|0.52778\n96714|0.5\n96715|0.45833\n96716|0.5\n96717|0.52778\n96718|0.61111\n96719|0.66667\n96720|0.63889\n96721|0.5\n96722|0.43056\n96723|0.5\n96724|0.33333\n96725|0.40278\n96726|0.5\n96727|0.5\n96728|0.5\n96729|0.51389\n96730|0.56944\n96731|0.51389\n96732|0.80556\n96733|0.75\n96734|0.65278\n96735|0.75\n96736|0.66667\n96737|0.5\n96738|0.5\n96739|0.5\n96740|0.5\n96741|0.63889\n96742|0.41667\n96743|0.61111\n96744|0.5\n96745|0.5\n96746|0.52778\n96747|0.55556\n96748|0.34722\n96749|0.26389\n96750|0.5\n96751|0.5\n96752|0.5\n96753|0.55556\n96754|0.66667\n96755|0.80556\n96756|0.5\n96757|0.43056\n96758|0.51389\n96759|0.5\n96760|0.33333\n96761|0.5\n96762|0.5\n96763|0.59722\n96764|0.66667\n96765|0.58333\n96766|0.5\n96767|0.58333\n96768|0.20833\n96769|0.69444\n96770|0.72222\n96771|0.59722\n96772|0.30556\n96773|0.77778\n96774|0.52778\n96775|0.59722\n96776|0.5\n96777|0.5\n96778|0.47222\n96779|0.45833\n96780|0.5\n96781|0.47222\n96782|0.55556\n96783|0.66667\n96784|0.40278\n96785|0.56944\n96786|0.65278\n96787|0.51389\n96788|0.55556\n96789|0.5\n96790|0.5\n96791|0.44444\n96792|0.54167\n96793|0.41667\n96794|0.5\n96795|0.58333\n96796|0.86111\n96797|0.61111\n96798|0.5\n96799|0.52778\n96800|0.55556\n96801|0.63889\n96802|0.5\n96803|0.65278\n96804|0.47222\n96805|0.83333\n96806|0.52778\n96807|0.69444\n96808|0.83333\n96809|0.58333\n96810|0.59722\n96811|0.44444\n96812|0.5\n96813|0.88889\n96814|0.55556\n96815|0.44444\n96816|0.48611\n96817|0.55556\n96818|0.29167\n96819|0.66667\n96820|0.55556\n96821|0.73611\n96822|0.68056\n96823|0.5\n96824|0.58333\n96825|0.54167\n96826|0.55556\n96827|0.56944\n96828|0.41667\n96829|0.54167\n96830|0.77778\n96831|0.44444\n96832|0.5\n96833|0.55556\n96834|0.72222\n96835|0.875\n96836|0.5\n96837|0.59722\n96838|0.77778\n96839|0.73611\n96840|0.76389\n96841|0.75\n96842|0.5\n96843|0.65278\n96844|0.47222\n96845|0.58333\n96846|0.45833\n96847|0.48611\n96848|0.5\n96849|0.5\n96850|0.40278\n96851|0.44444\n96852|0.47222\n96853|0.55556\n96854|0.625\n96855|0.5\n96856|0.5\n96857|0.44444\n96858|0.59722\n96859|0.47222\n96860|0.45833\n96861|0.48611\n96862|0.13889\n96863|0.70833\n96864|0.70833\n96865|0.5\n96866|0.58333\n96867|0.75\n96868|0.36111\n96869|0.44444\n96870|0.22222\n96871|0.68056\n96872|0.66667\n96873|0.76389\n96874|0.63889\n96875|0.75\n96876|0.51389\n96877|0.41667\n96878|0.56944\n96879|0.52778\n96880|0.45833\n96881|0.375\n96882|0.54167\n96883|0.52778\n96884|0.55556\n96885|0.75\n96886|0.55556\n96887|0.75\n96888|0.5\n96889|0.51389\n96890|0.55556\n96891|0.55556\n96892|0.5\n96893|0.51389\n96894|0.69444\n96895|0.5\n96896|0.66667\n96897|0.55556\n96898|0.5\n96899|0.5\n96900|0.5\n96901|0.36111\n96902|0.51389\n96903|0.5\n96904|0.48611\n96905|0.5\n96906|0.51389\n96907|0.36111\n96908|0.48611\n96909|0.5\n96910|0.48611\n96911|0.47222\n96912|0.55556\n96913|0.73611\n96914|0.48611\n96915|0.63889\n96916|0.70833\n96917|0.61111\n96918|0.61111\n96919|0.80556\n96920|0.5\n96921|0.63889\n96922|0.52778\n96923|0.5\n96924|0.90278\n96925|0.5\n96926|0.5\n96927|0.59722\n96928|0.75\n96929|0.72222\n96930|0.80556\n96931|0.77778\n96932|0.75\n96933|0.98611\n96934|0.56944\n96935|0.72222\n96936|0.38889\n96937|0.41667\n96938|0.5\n96939|0.38889\n96940|0.52778\n96941|0.55556\n96942|0.51389\n96943|0.68056\n96944|0.72222\n96945|0.38889\n96946|0.51389\n96947|0.76389\n96948|0.54167\n96949|0.52778\n96950|0.66667\n96951|0.75\n96952|0.61111\n96953|0.63889\n96954|0.5\n96955|0.68056\n96956|0.59722\n96957|0.27778\n96958|0.44444\n96959|0.48611\n96960|0.55556\n96961|0.43056\n96962|0.29167\n96963|0.55556\n96964|0.75\n96965|0.58333\n96966|0.65278\n96967|0.55556\n96968|0.61111\n96969|0.5\n96970|0.5\n96971|0.5\n96972|0.43056\n96973|0.45833\n96974|0.95833\n96975|0.91667\n96976|0.66667\n96977|0.5\n96978|0.59722\n96979|0.56944\n96980|0.5\n96981|0.75\n96982|0.79167\n96983|0.5\n96984|0.30556\n96985|0.33333\n96986|0.59722\n96987|0.5\n96988|0.59722\n96989|0.5\n96990|0.5\n96991|0.54167\n96992|0.5\n96993|0.5\n96994|0.5\n96995|0.54167\n96996|0.5\n96997|0.65278\n96998|0.80556\n96999|0.61111\n97000|0.48611\n97001|0.5\n97002|0.51389\n97003|0.48611\n97004|0.5\n97005|0.43056\n97006|0.48611\n97007|0.55556\n97008|0.5\n97009|0.69444\n97010|0.5\n97011|0.40278\n97012|0.72222\n97013|0.70833\n97014|0.55556\n97015|0.41667\n97016|0.47222\n97017|0.61111\n97018|0.68056\n97019|0.73611\n97020|0.44444\n97021|0.44444\n97022|0.44444\n97023|0.5\n97024|0.5\n97025|0.5\n97026|0.52778\n97027|0.40278\n97028|0.81944\n97029|0.5\n97030|0.45833\n97031|0.25\n97032|0.56944\n97033|0.58333\n97034|0.5\n97035|0.5\n97036|0.5\n97037|0.5\n97038|0.5\n97039|0.5\n97040|0.66667\n97041|0.76389\n97042|0.63889\n97043|0.52778\n97044|0.59722\n97045|0.625\n97046|0.77778\n97047|0.56944\n97048|0.36111\n97049|0.80556\n97050|0.56944\n97051|0.5\n97052|0.5\n97053|0.5\n97054|0.5\n97055|0.5\n97056|0.88889\n97057|0.5\n97058|0.61111\n97059|0.48611\n97060|0.5\n97061|0.44444\n97062|0.47222\n97063|0.51389\n97064|0.66667\n97065|0.5\n97066|0.47222\n97067|0.56944\n97068|0.5\n97069|0.22222\n97070|0.5\n97071|0.93056\n97072|0.33333\n97073|0.93056\n97074|0.56944\n97075|0.40278\n97076|0.5\n97077|0.58333\n97078|0.5\n97079|0.68056\n97080|0.5\n97081|0.5\n97082|0.51389\n97083|0.5\n97084|0.51389\n97085|0.55556\n97086|0.51389\n97087|0.54167\n97088|0.5\n97089|0.5\n97090|0.5\n97091|0.5\n97092|0.5\n97093|0.48611\n97094|0.52778\n97095|0.5\n97096|0.5\n97097|0.44444\n97098|0.625\n97099|0.5\n97100|0.31944\n97101|0.58333\n97102|0.5\n97103|0.77778\n97104|0.73611\n97105|0.58333\n97106|0.59722\n97107|0.66667\n97108|0.69444\n97109|0.52778\n97110|0.77778\n97111|0.65278\n97112|0.5\n97113|0.5\n97114|0.47222\n97115|0.41667\n97116|0.5\n97117|0.55556\n97118|0.54167\n97119|0.52778\n97120|0.5\n97121|0.51389\n97122|0.56944\n97123|0.58333\n97124|0.58333\n97125|0.5\n97126|0.38889\n97127|0.36111\n97128|0.66667\n97129|0.59722\n97130|0.5\n97131|0.70833\n97132|0.5\n97133|0.63889\n97134|0.5\n97135|0.58333\n97136|0.51389\n97137|0.75\n97138|0.31944\n97139|0.61111\n97140|0.66667\n97141|0.5\n97142|0.5\n97143|0.55556\n97144|0.66667\n97145|0.51389\n97146|0.45833\n97147|0.58333\n97148|0.45833\n97149|0.61111\n97150|0.34722\n97151|0.51389\n97152|0.44444\n97153|0.65278\n97154|0.58333\n97155|0.61111\n97156|0.55556\n97157|0.61111\n97158|0.73611\n97159|0.52778\n97160|0.55556\n97161|0.33333\n97162|0.77778\n97163|0.79167\n97164|0.52778\n97165|0.58333\n97166|0.69444\n97167|0.5\n97168|0.38889\n97169|0.56944\n97170|0.5\n97171|0.5\n97172|0.5\n97173|0.5\n97174|0.61111\n97175|0.51389\n97176|0.58333\n97177|0.5\n97178|0.43056\n97179|0.58333\n97180|0.47222\n97181|0.56944\n97182|0.5\n97183|0.5\n97184|0.5\n97185|0.22222\n97186|0.90278\n97187|0.79167\n97188|0.625\n97189|0.52778\n97190|0.36111\n97191|0.72222\n97192|0.77778\n97193|0.43056\n97194|0.36111\n97195|0.81944\n97196|0.72222\n97197|0.81944\n97198|0.70833\n97199|0.5\n97200|0.69444\n97201|0.56944\n97202|0.48611\n97203|0.69444\n97204|0.66667\n97205|0.63889\n97206|0.33333\n97207|0.48611\n97208|0.63889\n97209|0.29167\n97210|0.5\n97211|0.79167\n97212|0.61111\n97213|0.63889\n97214|0.33333\n97215|0.52778\n97216|0.45833\n97217|0.72222\n97218|0.68056\n97219|0.55556\n97220|0.56944\n97221|0.72222\n97222|0.5\n97223|0.43056\n97224|0.31944\n97225|0.5\n97226|0.48611\n97227|0.625\n97228|0.29167\n97229|0.52778\n97230|0.5\n97231|0.65278\n97232|0.51389\n97233|0.61111\n97234|0.5\n97235|0.5\n97236|0.51389\n97237|0.5\n97238|0.5\n97239|0.51389\n97240|0.44444\n97241|0.54167\n97242|0.5\n97243|0.59722\n97244|0.5\n97245|0.5\n97246|0.5\n97247|0.5\n97248|0.56944\n97249|0.61111\n97250|0.47222\n97251|0.61111\n97252|0.5\n97253|0.70833\n97254|0.58333\n97255|0.5\n97256|0.44444\n97257|0.56944\n97258|0.55556\n97259|0.5\n97260|0.63889\n97261|0.36111\n97262|0.5\n97263|0.51389\n97264|0.59722\n97265|0.5\n97266|0.5\n97267|0.55556\n97268|0.72222\n97269|0.79167\n97270|0.41667\n97271|0.73611\n97272|0.48611\n97273|0.65278\n97274|0.65278\n97275|0.61111\n97276|0.51389\n97277|0.5\n97278|0.72222\n97279|0.51389\n97280|0.5\n97281|0.47222\n97282|0.51389\n97283|0.52778\n97284|0.56944\n97285|0.51389\n97286|0.5\n97287|0.77778\n97288|0.55556\n97289|0.54167\n97290|0.44444\n97291|0.66667\n97292|0.55556\n97293|0.52778\n97294|0.5\n97295|0.52778\n97296|0.55556\n97297|0.41667\n97298|0.5\n97299|0.47222\n97300|0.27778\n97301|0.5\n97302|0.5\n97303|0.44444\n97304|0.58333\n97305|0.61111\n97306|0.61111\n97307|0.44444\n97308|0.63889\n97309|0.72222\n97310|0.68056\n97311|0.66667\n97312|0.56944\n97313|0.5\n97314|0.48611\n97315|0.5\n97316|0.5\n97317|0.375\n97318|0.375\n97319|0.38889\n97320|0.83333\n97321|0.5\n97322|0.41667\n97323|0.52778\n97324|0.47222\n97325|0.44444\n97326|0.56944\n97327|0.58333\n97328|0.76389\n97329|0.36111\n97330|0.55556\n97331|0.47222\n97332|0.23611\n97333|0.51389\n97334|0.47222\n97335|0.44444\n97336|0.61111\n97337|0.56944\n97338|0.94444\n97339|0.5\n97340|0.5\n97341|0.56944\n97342|0.625\n97343|0.5\n97344|0.69444\n97345|0.51389\n97346|0.5\n97347|0.84722\n97348|0.77778\n97349|0.5\n97350|0.54167\n97351|0.625\n97352|0.44444\n97353|0.33333\n97354|0.73611\n97355|0.38889\n97356|0.80556\n97357|0.83333\n97358|0.52778\n97359|0.5\n97360|0.83333\n97361|0.77778\n97362|0.59722\n97363|0.75\n97364|0.31944\n97365|0.5\n97366|0.77778\n97367|0.5\n97368|0.875\n97369|0.79167\n97370|0.69444\n97371|0.625\n97372|0.75\n97373|0.5\n97374|0.58333\n97375|0.61111\n97376|0.5\n97377|0.56944\n97378|0.72222\n97379|0.72222\n97380|0.77778\n97381|0.51389\n97382|0.5\n97383|0.31944\n97384|0.66667\n97385|0.5\n97386|0.29167\n97387|0.81944\n97388|0.83333\n97389|0.70833\n97390|0.72222\n97391|0.58333\n97392|0.79167\n97393|0.72222\n97394|0.63889\n97395|0.48611\n97396|0.52778\n97397|0.68056\n97398|0.48611\n97399|0.76389\n97400|0.44444\n97401|0.48611\n97402|0.5\n97403|0.63889\n97404|0.5\n97405|0.52778\n97406|0.72222\n97407|0.66667\n97408|0.5\n97409|0.5\n97410|0.5\n97411|0.25\n97412|0.72222\n97413|0.68056\n97414|0.625\n97415|0.86111\n97416|0.52778\n97417|0.70833\n97418|0.84722\n97419|0.59722\n97420|0.77778\n97421|0.34722\n97422|0.55556\n97423|0.61111\n97424|0.84722\n97425|0.41667\n97426|0.5\n97427|0.5\n97428|0.5\n97429|0.59722\n97430|0.77778\n97431|0.72222\n97432|0.79167\n97433|0.61111\n97434|0.68056\n97435|0.79167\n97436|0.77778\n97437|0.65278\n97438|0.83333\n97439|0.79167\n97440|0.375\n97441|0.40278\n97442|0.73611\n97443|0.86111\n97444|0.88889\n97445|0.56944\n97446|0.76389\n97447|0.79167\n97448|0.90278\n97449|0.375\n97450|0.38889\n97451|0.48611\n97452|0.48611\n97453|0.55556\n97454|0.52778\n97455|0.61111\n97456|0.5\n97457|0.5\n97458|0.44444\n97459|0.875\n97460|0.70833\n97461|0.5\n97462|0.45833\n97463|0.58333\n97464|0.63889\n97465|0.79167\n97466|0.5\n97467|0.55556\n97468|0.5\n97469|0.69444\n97470|0.38889\n97471|0.29167\n97472|0.52778\n97473|0.38889\n97474|0.48611\n97475|0.58333\n97476|0.625\n97477|0.69444\n97478|0.75\n97479|0.63889\n97480|0.51389\n97481|0.70833\n97482|0.48611\n97483|0.375\n97484|0.5\n97485|0.70833\n97486|0.51389\n97487|0.55556\n97488|0.54167\n97489|0.40278\n97490|0.16667\n97491|0.55556\n97492|0.52778\n97493|0.51389\n97494|0.68056\n97495|0.54167\n97496|0.5\n97497|0.5\n97498|0.43056\n97499|0.80556\n97500|0.72222\n97501|0.76389\n97502|0.375\n97503|0.69444\n97504|0.55556\n97505|0.94444\n97506|0.5\n97507|0.70833\n97508|0.65278\n97509|0.29167\n97510|0.61111\n97511|0.66667\n97512|0.55556\n97513|0.5\n97514|0.44444\n97515|0.31944\n97516|0.5\n97517|0.5\n97518|0.55556\n97519|0.66667\n97520|0.5\n97521|0.47222\n97522|0.90278\n97523|0.61111\n97524|0.52778\n97525|0.375\n97526|0.47222\n97527|0.61111\n97528|0.40278\n97529|0.76389\n97530|0.80556\n97531|0.5\n97532|0.54167\n97533|0.80556\n97534|0.84722\n97535|0.56944\n97536|0.66667\n97537|0.47222\n97538|0.375\n97539|0.36111\n97540|0.59722\n97541|0.5\n97542|0.47222\n97543|0.19444\n97544|0.875\n97545|0.5\n97546|0.63889\n97547|0.83333\n97548|0.76389\n97549|0.55556\n97550|0.61111\n97551|0.79167\n97552|0.88889\n97553|0.875\n97554|0.73611\n97555|0.77778\n97556|0.5\n97557|0.5\n97558|0.47222\n97559|0.43056\n97560|0.55556\n97561|0.56944\n97562|0.5\n97563|0.625\n97564|0.68056\n97565|0.5\n97566|0.65278\n97567|0.40278\n97568|0.65278\n97569|0.47222\n97570|0.5\n97571|0.54167\n97572|0.54167\n97573|0.58333\n97574|0.44444\n97575|0.5\n97576|0.51389\n97577|0.55556\n97578|0.40278\n97579|0.56944\n97580|0.55556\n97581|0.93056\n97582|0.5\n97583|0.56944\n97584|0.77778\n97585|0.5\n97586|0.44444\n97587|0.48611\n97588|0.70833\n97589|0.5\n97590|0.5\n97591|0.84722\n97592|0.59722\n97593|0.43056\n97594|0.70833\n97595|0.5\n97596|0.5\n97597|0.5\n97598|0.66667\n97599|0.76389\n97600|0.44444\n97601|0.45833\n97602|0.5\n97603|0.51389\n97604|0.43056\n97605|0.58333\n97606|0.63889\n97607|0.58333\n97608|0.30556\n97609|0.44444\n97610|0.5\n97611|0.38889\n97612|0.66667\n97613|0.40278\n97614|0.5\n97615|0.48611\n97616|0.44444\n97617|0.375\n97618|0.45833\n97619|0.40278\n97620|0.55556\n97621|0.31944\n97622|0.5\n97623|0.44444\n97624|0.55556\n97625|0.30556\n97626|0.5\n97627|0.55556\n97628|0.52778\n97629|0.5\n97630|0.65278\n97631|0.65278\n97632|0.5\n97633|0.75\n97634|0.33333\n97635|0.61111\n97636|0.84722\n97637|0.75\n97638|0.94444\n97639|0.65278\n97640|0.77778\n97641|0.81944\n97642|0.79167\n97643|0.77778\n97644|0.69444\n97645|0.73611\n97646|0.66667\n97647|0.55556\n97648|0.58333\n97649|0.61111\n97650|0.56944\n97651|0.77778\n97652|0.75\n97653|0.66667\n97654|0.5\n97655|0.47222\n97656|0.51389\n97657|0.5\n97658|0.5\n97659|0.5\n97660|0.5\n97661|0.5\n97662|0.5\n97663|0.5\n97664|0.56944\n97665|0.5\n97666|0.58333\n97667|0.44444\n97668|0.66667\n97669|0.45833\n97670|0.56944\n97671|0.75\n97672|0.73611\n97673|0.70833\n97674|0.83333\n97675|0.80556\n97676|0.59722\n97677|0.63889\n97678|0.83333\n97679|0.79167\n97680|0.81944\n97681|0.66667\n97682|0.52778\n97683|0.52778\n97684|0.73611\n97685|0.83333\n97686|0.36111\n97687|0.5\n97688|0.5\n97689|0.58333\n97690|0.55556\n97691|0.38889\n97692|0.73611\n97693|0.52778\n97694|0.36111\n97695|0.5\n97696|0.52778\n97697|0.5\n97698|0.34722\n97699|0.5\n97700|0.43056\n97701|0.76389\n97702|0.375\n97703|0.72222\n97704|0.43056\n97705|0.45833\n97706|0.65278\n97707|0.55556\n97708|0.69444\n97709|0.5\n97710|0.5\n97711|0.34722\n97712|0.51389\n97713|0.66667\n97714|0.55556\n97715|0.47222\n97716|0.48611\n97717|0.51389\n97718|0.5\n97719|0.375\n97720|0.625\n97721|0.79167\n97722|0.54167\n97723|0.48611\n97724|0.625\n97725|0.5\n97726|0.81944\n97727|0.5\n97728|0.77778\n97729|0.5\n97730|0.5\n97731|0.61111\n97732|0.52778\n97733|0.52778\n97734|0.73611\n97735|0.44444\n97736|0.44444\n97737|0.625\n97738|0.56944\n97739|0.52778\n97740|0.5\n97741|0.61111\n97742|0.86111\n97743|0.52778\n97744|0.66667\n97745|0.77778\n97746|0.5\n97747|0.68056\n97748|0.75\n97749|0.80556\n97750|0.5\n97751|0.55556\n97752|0.375\n97753|0.44444\n97754|0.44444\n97755|0.44444\n97756|0.51389\n97757|0.44444\n97758|0.44444\n97759|0.5\n97760|0.5\n97761|0.5\n97762|0.51389\n97763|0.51389\n97764|0.5\n97765|0.51389\n97766|0.31944\n97767|0.90278\n97768|0.70833\n97769|0.90278\n97770|0.79167\n97771|0.83333\n97772|0.55556\n97773|0.625\n97774|0.55556\n97775|0.51389\n97776|0.55556\n97777|0.54167\n97778|0.27778\n97779|0.41667\n97780|0.33333\n97781|0.52778\n97782|0.43056\n97783|0.5\n97784|0.27778\n97785|0.31944\n97786|0.5\n97787|0.29167\n97788|0.5\n97789|0.56944\n97790|0.5\n97791|0.5\n97792|0.66667\n97793|0.72222\n97794|0.47222\n97795|0.52778\n97796|0.5\n97797|0.23611\n97798|0.5\n97799|0.44444\n97800|0.5\n97801|0.40278\n97802|0.5\n97803|0.68056\n97804|0.61111\n97805|0.5\n97806|0.43056\n97807|0.48611\n97808|0.5\n97809|0.5\n97810|0.43056\n97811|0.44444\n97812|0.5\n97813|0.5\n97814|0.5\n97815|0.40278\n97816|0.55556\n97817|0.625\n97818|0.44444\n97819|0.5\n97820|0.65278\n97821|0.72222\n97822|0.81944\n97823|0.45833\n97824|0.5\n97825|0.5\n97826|0.80556\n97827|0.55556\n97828|0.5\n97829|0.43056\n97830|0.5\n97831|0.5\n97832|0.54167\n97833|0.5\n97834|0.5\n97835|0.5\n97836|0.5\n97837|0.5\n97838|0.5\n97839|0.5\n97840|0.5\n97841|0.70833\n97842|0.41667\n97843|0.44444\n97844|0.73611\n97845|0.55556\n97846|0.5\n97847|0.5\n97848|0.45833\n97849|0.68056\n97850|0.5\n97851|0.56944\n97852|0.5\n97853|0.5\n97854|0.5\n97855|0.55556\n97856|0.5\n97857|0.66667\n97858|0.79167\n97859|0.55556\n97860|0.5\n97861|0.65278\n97862|0.44444\n97863|0.77778\n97864|0.84722\n97865|0.66667\n97866|0.47222\n97867|0.72222\n97868|0.52778\n97869|0.59722\n97870|0.5\n97871|0.54167\n97872|0.625\n97873|0.55556\n97874|0.5\n97875|0.5\n97876|0.43056\n97877|0.625\n97878|0.59722\n97879|0.5\n97880|0.63889\n97881|0.55556\n97882|0.5\n97883|0.33333\n97884|0.56944\n97885|0.44444\n97886|0.5\n97887|0.52778\n97888|0.27778\n97889|0.76389\n97890|0.43056\n97891|0.61111\n97892|0.58333\n97893|0.5\n97894|0.5\n97895|0.5\n97896|0.43056\n97897|0.48611\n97898|0.31944\n97899|0.77778\n97900|0.66667\n97901|0.76389\n97902|0.63889\n97903|0.44444\n97904|0.80556\n97905|0.52778\n97906|0.55556\n97907|0.5\n97908|0.41667\n97909|0.68056\n97910|0.36111\n97911|0.51389\n97912|0.41667\n97913|0.65278\n97914|0.77778\n97915|0.61111\n97916|0.70833\n97917|0.5\n97918|0.63889\n97919|0.58333\n97920|0.51389\n97921|0.56944\n97922|0.375\n97923|0.48611\n97924|0.44444\n97925|0.45833\n97926|0.5\n97927|0.61111\n97928|0.76389\n97929|0.58333\n97930|0.52778\n97931|0.625\n97932|0.5\n97933|0.61111\n97934|0.5\n97935|0.30556\n97936|0.5\n97937|0.20833\n97938|0.52778\n97939|0.80556\n97940|0.33333\n97941|0.73611\n97942|0.70833\n97943|0.5\n97944|0.75\n97945|0.80556\n97946|0.54167\n97947|0.625\n97948|0.65278\n97949|0.66667\n97950|0.54167\n97951|0.63889\n97952|0.79167\n97953|0.66667\n97954|0.54167\n97955|0.5\n97956|0.54167\n97957|0.66667\n97958|0.5\n97959|0.61111\n97960|0.5\n97961|0.63889\n97962|0.81944\n97963|0.5\n97964|0.58333\n97965|0.40278\n97966|0.75\n97967|0.5\n97968|0.66667\n97969|0.47222\n97970|0.72222\n97971|0.48611\n97972|0.95833\n97973|0.5\n97974|0.5\n97975|0.69444\n97976|0.69444\n97977|0.76389\n97978|0.66667\n97979|0.55556\n97980|0.66667\n97981|0.44444\n97982|0.70833\n97983|0.61111\n97984|0.52778\n97985|0.5\n97986|0.54167\n97987|0.51389\n97988|0.75\n97989|0.55556\n97990|0.5\n97991|0.29167\n97992|0.65278\n97993|0.54167\n97994|0.56944\n97995|0.54167\n97996|0.59722\n97997|0.5\n97998|0.63889\n97999|0.5\n98000|0.625\n98001|0.16667\n98002|0.38889\n98003|0.52778\n98004|0.5\n98005|0.44444\n98006|0.30556\n98007|0.70833\n98008|0.5\n98009|0.5\n98010|0.76389\n98011|0.43056\n98012|0.5\n98013|0.52778\n98014|0.58333\n98015|0.23611\n98016|0.45833\n98017|0.54167\n98018|0.58333\n98019|0.47222\n98020|0.56944\n98021|0.5\n98022|0.56944\n98023|0.52778\n98024|0.55556\n98025|0.66667\n98026|0.25\n98027|0.83333\n98028|0.69444\n98029|0.625\n98030|0.80556\n98031|0.61111\n98032|0.55556\n98033|0.34722\n98034|0.55556\n98035|0.59722\n98036|0.51389\n98037|0.54167\n98038|0.625\n98039|0.5\n98040|0.40278\n98041|0.5\n98042|0.48611\n98043|0.68056\n98044|0.5\n98045|0.66667\n98046|0.54167\n98047|0.51389\n98048|0.18056\n98049|0.51389\n98050|0.54167\n98051|0.65278\n98052|0.44444\n98053|0.70833\n98054|0.66667\n98055|0.83333\n98056|0.69444\n98057|0.5\n98058|0.56944\n98059|0.5\n98060|0.61111\n98061|0.76389\n98062|0.51389\n98063|0.5\n98064|0.5\n98065|0.58333\n98066|0.59722\n98067|0.36111\n98068|0.52778\n98069|0.44444\n98070|0.19444\n98071|0.43056\n98072|0.61111\n98073|0.70833\n98074|0.5\n98075|0.38889\n98076|0.45833\n98077|0.69444\n98078|0.65278\n98079|0.5\n98080|0.48611\n98081|0.59722\n98082|0.48611\n98083|0.70833\n98084|0.625\n98085|0.61111\n98086|0.51389\n98087|0.77778\n98088|0.76389\n98089|0.44444\n98090|0.55556\n98091|0.54167\n98092|0.83333\n98093|0.5\n98094|0.625\n98095|0.59722\n98096|0.43056\n98097|0.52778\n98098|0.76389\n98099|0.77778\n98100|0.52778\n98101|0.55556\n98102|0.56944\n98103|0.51389\n98104|0.5\n98105|0.61111\n98106|0.61111\n98107|0.44444\n98108|0.51389\n98109|0.41667\n98110|0.76389\n98111|0.5\n98112|0.61111\n98113|0.54167\n98114|0.52778\n98115|0.33333\n98116|0.61111\n98117|0.5\n98118|0.44444\n98119|0.5\n98120|0.875\n98121|0.66667\n98122|0.63889\n98123|0.41667\n98124|0.69444\n98125|0.56944\n98126|0.5\n98127|0.63889\n98128|0.33333\n98129|0.58333\n98130|0.77778\n98131|0.70833\n98132|0.61111\n98133|0.5\n98134|0.58333\n98135|0.5\n98136|0.40278\n98137|0.70833\n98138|0.47222\n98139|0.51389\n98140|0.5\n98141|0.51389\n98142|0.875\n98143|0.56944\n98144|0.59722\n98145|0.56944\n98146|0.625\n98147|0.59722\n98148|0.63889\n98149|0.51389\n98150|0.38889\n98151|0.69444\n98152|0.44444\n98153|0.66667\n98154|0.55556\n98155|0.79167\n98156|0.5\n98157|0.86111\n98158|0.55556\n98159|0.27778\n98160|0.36111\n98161|0.5\n98162|0.45833\n98163|0.63889\n98164|0.63889\n98165|0.56944\n98166|0.5\n98167|0.38889\n98168|0.58333\n98169|0.55556\n98170|0.5\n98171|0.625\n98172|0.55556\n98173|0.22222\n98174|0.5\n98175|0.5\n98176|0.5\n98177|0.5\n98178|0.5\n98179|0.5\n98180|0.59722\n98181|0.68056\n98182|0.75\n98183|0.30556\n98184|0.77778\n98185|0.72222\n98186|0.75\n98187|0.51389\n98188|0.43056\n98189|0.65278\n98190|0.66667\n98191|0.68056\n98192|0.80556\n98193|0.375\n98194|0.29167\n98195|0.625\n98196|0.625\n98197|0.75\n98198|0.70833\n98199|0.51389\n98200|0.55556\n98201|0.54167\n98202|0.52778\n98203|0.76389\n98204|0.66667\n98205|0.70833\n98206|0.44444\n98207|0.5\n98208|0.72222\n98209|0.54167\n98210|0.75\n98211|0.55556\n98212|0.27778\n98213|0.59722\n98214|0.5\n98215|0.45833\n98216|0.34722\n98217|0.72222\n98218|0.61111\n98219|0.56944\n98220|0.59722\n98221|0.55556\n98222|0.52778\n98223|0.84722\n98224|0.55556\n98225|0.27778\n98226|0.55556\n98227|0.79167\n98228|0.79167\n98229|0.68056\n98230|0.66667\n98231|0.61111\n98232|0.5\n98233|0.75\n98234|0.5\n98235|0.56944\n98236|0.58333\n98237|0.33333\n98238|0.5\n98239|0.5\n98240|0.48611\n98241|0.55556\n98242|0.76389\n98243|0.36111\n98244|0.55556\n98245|0.55556\n98246|0.66667\n98247|0.81944\n98248|0.48611\n98249|0.98611\n98250|0.52778\n98251|0.51389\n98252|0.5\n98253|0.5\n98254|0.38889\n98255|0.5\n98256|0.56944\n98257|0.59722\n98258|0.5\n98259|0.72222\n98260|0.79167\n98261|0.36111\n98262|0.58333\n98263|0.83333\n98264|0.43056\n98265|0.5\n98266|0.59722\n98267|0.80556\n98268|0.69444\n98269|0.5\n98270|0.52778\n98271|0.38889\n98272|0.63889\n98273|0.43056\n98274|0.84722\n98275|0.625\n98276|0.56944\n98277|0.56944\n98278|0.52778\n98279|0.56944\n98280|0.55556\n98281|0.61111\n98282|0.55556\n98283|0.61111\n98284|0.51389\n98285|0.73611\n98286|0.80556\n98287|0.79167\n98288|0.86111\n98289|0.72222\n98290|0.44444\n98291|0.59722\n98292|0.61111\n98293|0.625\n98294|0.43056\n98295|0.55556\n98296|0.5\n98297|0.72222\n98298|0.55556\n98299|0.68056\n98300|0.55556\n98301|0.625\n98302|0.66667\n98303|0.34722\n98304|0.61111\n98305|0.52778\n98306|0.61111\n98307|0.73611\n98308|0.41667\n98309|0.54167\n98310|0.68056\n98311|0.61111\n98312|0.5\n98313|0.61111\n98314|0.58333\n98315|0.48611\n98316|0.77778\n98317|0.5\n98318|0.52778\n98319|0.5\n98320|0.90278\n98321|0.52778\n98322|0.55556\n98323|0.31944\n98324|0.52778\n98325|0.625\n98326|0.55556\n98327|0.41667\n98328|0.66667\n98329|0.61111\n98330|0.5\n98331|0.5\n98332|0.43056\n98333|0.55556\n98334|0.5\n98335|0.54167\n98336|0.56944\n98337|0.66667\n98338|0.54167\n98339|0.5\n98340|0.48611\n98341|0.5\n98342|0.51389\n98343|0.54167\n98344|0.81944\n98345|0.44444\n98346|0.5\n98347|0.38889\n98348|0.33333\n98349|0.5\n98350|0.66667\n98351|0.69444\n98352|0.5\n98353|0.58333\n98354|0.20833\n98355|0.51389\n98356|0.5\n98357|0.69444\n98358|0.38889\n98359|0.95833\n98360|0.5\n98361|0.68056\n98362|0.38889\n98363|0.75\n98364|0.83333\n98365|0.58333\n98366|0.61111\n98367|0.54167\n98368|0.5\n98369|0.51389\n98370|0.59722\n98371|0.61111\n98372|0.875\n98373|0.61111\n98374|0.76389\n98375|0.5\n98376|0.5\n98377|0.55556\n98378|0.51389\n98379|0.86111\n98380|0.79167\n98381|0.63889\n98382|0.5\n98383|0.5\n98384|0.51389\n98385|0.5\n98386|0.44444\n98387|0.5\n98388|0.43056\n98389|0.5\n98390|0.51389\n98391|0.55556\n98392|0.55556\n98393|0.68056\n98394|0.55556\n98395|0.5\n98396|0.875\n98397|0.55556\n98398|0.5\n98399|0.55556\n98400|0.5\n98401|0.45833\n98402|0.36111\n98403|0.61111\n98404|0.52778\n98405|0.5\n98406|0.79167\n98407|0.5\n98408|0.13889\n98409|0.5\n98410|0.5\n98411|0.5\n98412|0.45833\n98413|0.63889\n98414|0.44444\n98415|0.45833\n98416|0.625\n98417|0.5\n98418|0.79167\n98419|0.51389\n98420|0.52778\n98421|0.5\n98422|0.54167\n98423|0.51389\n98424|0.54167\n98425|0.66667\n98426|0.61111\n98427|0.76389\n98428|0.5\n98429|0.63889\n98430|0.5\n98431|0.51389\n98432|0.47222\n98433|0.625\n98434|0.5\n98435|0.45833\n98436|0.51389\n98437|0.63889\n98438|0.80556\n98439|0.51389\n98440|0.47222\n98441|0.83333\n98442|0.59722\n98443|0.55556\n98444|0.5\n98445|0.51389\n98446|0.5\n98447|0.38889\n98448|0.55556\n98449|0.625\n98450|0.65278\n98451|0.66667\n98452|0.65278\n98453|0.61111\n98454|0.5\n98455|0.58333\n98456|0.5\n98457|0.61111\n98458|0.27778\n98459|0.54167\n98460|0.54167\n98461|0.48611\n98462|0.5\n98463|0.55556\n98464|0.51389\n98465|0.52778\n98466|0.72222\n98467|0.75\n98468|0.66667\n98469|0.58333\n98470|0.70833\n98471|0.61111\n98472|0.5\n98473|0.94444\n98474|0.5\n98475|0.63889\n98476|0.55556\n98477|0.5\n98478|0.54167\n98479|0.69444\n98480|0.84722\n98481|0.88889\n98482|0.30556\n98483|0.48611\n98484|0.31944\n98485|0.51389\n98486|0.44444\n98487|0.63889\n98488|0.52778\n98489|0.45833\n98490|0.36111\n98491|0.5\n98492|0.5\n98493|0.56944\n98494|0.56944\n98495|0.51389\n98496|0.5\n98497|0.55556\n98498|0.36111\n98499|0.40278\n98500|0.44444\n98501|0.45833\n98502|0.43056\n98503|0.61111\n98504|0.36111\n98505|0.72222\n98506|0.61111\n98507|0.5\n98508|0.56944\n98509|0.54167\n98510|0.58333\n98511|0.44444\n98512|0.375\n98513|0.36111\n98514|0.31944\n98515|0.38889\n98516|0.5\n98517|0.51389\n98518|0.31944\n98519|0.43056\n98520|0.375\n98521|0.29167\n98522|0.25\n98523|0.33333\n98524|0.26389\n98525|0.44444\n98526|0.59722\n98527|0.63889\n98528|0.52778\n98529|0.40278\n98530|0.5\n98531|0.51389\n98532|0.48611\n98533|0.27778\n98534|0.54167\n98535|0.77778\n98536|0.56944\n98537|0.61111\n98538|0.80556\n98539|0.93056\n98540|0.5\n98541|0.45833\n98542|0.33333\n98543|0.41667\n98544|0.77778\n98545|0.54167\n98546|0.45833\n98547|0.5\n98548|0.27778\n98549|0.38889\n98550|0.51389\n98551|0.33333\n98552|0.44444\n98553|0.38889\n98554|0.68056\n98555|0.375\n98556|0.45833\n98557|0.5\n98558|0.52778\n98559|0.56944\n98560|0.36111\n98561|0.30556\n98562|0.125\n98563|0.52778\n98564|0.38889\n98565|0.55556\n98566|0.88889\n98567|0.63889\n98568|0.31944\n98569|0.75\n98570|0.73611\n98571|0.75\n98572|0.61111\n98573|0.875\n98574|0.72222\n98575|0.81944\n98576|0.69444\n98577|0.56944\n98578|0.75\n98579|0.70833\n98580|0.70833\n98581|0.70833\n98582|0.65278\n98583|0.81944\n98584|0.79167\n98585|0.75\n98586|0.81944\n98587|0.77778\n98588|0.69444\n98589|0.77778\n98590|0.69444\n98591|0.76389\n98592|0.65278\n98593|0.72222\n98594|0.5\n98595|0.625\n98596|0.84722\n98597|0.61111\n98598|0.59722\n98599|0.61111\n98600|0.29167\n98601|0.58333\n98602|0.5\n98603|0.54167\n98604|0.5\n98605|0.61111\n98606|0.5\n98607|0.59722\n98608|0.52778\n98609|0.5\n98610|0.52778\n98611|0.70833\n98612|0.5\n98613|0.5\n98614|0.56944\n98615|0.59722\n98616|0.59722\n98617|0.5\n98618|0.5\n98619|0.5\n98620|0.5\n98621|0.61111\n98622|0.5\n98623|0.45833\n98624|0.5\n98625|0.73611\n98626|0.5\n98627|0.5\n98628|0.56944\n98629|0.44444\n98630|0.58333\n98631|0.44444\n98632|0.5\n98633|0.51389\n98634|0.58333\n98635|0.5\n98636|0.5\n98637|0.5\n98638|0.29167\n98639|0.73611\n98640|0.81944\n98641|0.5\n98642|0.61111\n98643|0.76389\n98644|0.70833\n98645|0.63889\n98646|0.55556\n98647|0.625\n98648|0.81944\n98649|0.58333\n98650|0.77778\n98651|0.73611\n98652|0.52778\n98653|0.76389\n98654|0.70833\n98655|0.70833\n98656|0.75\n98657|0.5\n98658|0.5\n98659|0.5\n98660|0.5\n98661|0.66667\n98662|0.54167\n98663|0.58333\n98664|0.77778\n98665|0.69444\n98666|0.44444\n98667|0.18056\n98668|0.27778\n98669|0.63889\n98670|0.27778\n98671|0.44444\n98672|0.43056\n98673|0.70833\n98674|0.61111\n98675|0.59722\n98676|0.52778\n98677|0.63889\n98678|0.81944\n98679|0.83333\n98680|0.5\n98681|0.5\n98682|0.69444\n98683|0.52778\n98684|0.41667\n98685|0.61111\n98686|0.88889\n98687|0.77778\n98688|0.5\n98689|0.44444\n98690|0.43056\n98691|0.41667\n98692|0.70833\n98693|0.72222\n98694|0.5\n98695|0.38889\n98696|0.55556\n98697|0.47222\n98698|0.61111\n98699|0.47222\n98700|0.5\n98701|0.48611\n98702|0.41667\n98703|0.5\n98704|0.33333\n98705|0.40278\n98706|0.27778\n98707|0.79167\n98708|0.90278\n98709|0.5\n98710|0.5\n98711|0.51389\n98712|0.69444\n98713|0.625\n98714|0.73611\n98715|0.76389\n98716|0.51389\n98717|0.41667\n98718|0.81944\n98719|0.95833\n98720|0.38889\n98721|0.33333\n98722|0.72222\n98723|0.75\n98724|0.76389\n98725|0.43056\n98726|0.80556\n98727|0.5\n98728|0.55556\n98729|0.55556\n98730|0.63889\n98731|0.5\n98732|0.65278\n98733|0.77778\n98734|0.51389\n98735|0.5\n98736|0.66667\n98737|0.55556\n98738|0.5\n98739|0.65278\n98740|0.55556\n98741|0.5\n98742|0.56944\n98743|0.5\n98744|0.65278\n98745|0.625\n98746|0.5\n98747|0.69444\n98748|0.86111\n98749|0.69444\n98750|0.44444\n98751|0.30556\n98752|0.29167\n98753|0.72222\n98754|0.66667\n98755|0.5\n98756|0.52778\n98757|0.44444\n98758|0.5\n98759|0.59722\n98760|0.5\n98761|0.59722\n98762|0.5\n98763|0.5\n98764|0.58333\n98765|0.52778\n98766|0.51389\n98767|0.5\n98768|0.79167\n98769|0.36111\n98770|0.30556\n98771|0.65278\n98772|0.75\n98773|0.61111\n98774|0.66667\n98775|0.54167\n98776|0.52778\n98777|0.73611\n98778|0.13889\n98779|0.75\n98780|0.47222\n98781|0.55556\n98782|0.54167\n98783|0.59722\n98784|0.69444\n98785|0.38889\n98786|0.48611\n98787|0.41667\n98788|0.59722\n98789|0.69444\n98790|0.5\n98791|0.41667\n98792|0.91667\n98793|0.63889\n98794|0.69444\n98795|0.22222\n98796|0.5\n98797|0.48611\n98798|0.25\n98799|0.83333\n98800|0.55556\n98801|0.76389\n98802|0.76389\n98803|0.51389\n98804|0.5\n98805|0.45833\n98806|0.47222\n98807|0.61111\n98808|0.5\n98809|0.56944\n98810|0.59722\n98811|0.5\n98812|0.63889\n98813|0.5\n98814|0.5\n98815|0.48611\n98816|0.34722\n98817|0.44444\n98818|0.5\n98819|0.52778\n98820|0.51389\n98821|0.58333\n98822|0.5\n98823|0.55556\n98824|0.5\n98825|0.52778\n98826|0.72222\n98827|0.72222\n98828|0.5\n98829|0.5\n98830|0.44444\n98831|0.5\n98832|0.54167\n98833|0.5\n98834|0.5\n98835|0.5\n98836|0.40278\n98837|0.48611\n98838|0.5\n98839|0.76389\n98840|0.5\n98841|0.48611\n98842|0.5\n98843|0.5\n98844|0.5\n98845|0.5\n98846|0.38889\n98847|0.70833\n98848|0.61111\n98849|0.56944\n98850|0.5\n98851|0.5\n98852|0.44444\n98853|0.44444\n98854|0.29167\n98855|0.5\n98856|0.5\n98857|0.68056\n98858|0.75\n98859|0.5\n98860|0.33333\n98861|0.55556\n98862|0.45833\n98863|0.59722\n98864|0.44444\n98865|0.44444\n98866|0.51389\n98867|0.625\n98868|0.61111\n98869|0.76389\n98870|0.58333\n98871|0.68056\n98872|0.5\n98873|0.59722\n98874|0.5\n98875|0.51389\n98876|0.47222\n98877|0.31944\n98878|0.77778\n98879|0.38889\n98880|0.40278\n98881|0.5\n98882|0.91667\n98883|0.41667\n98884|0.76389\n98885|0.16667\n98886|0.13889\n98887|0.5\n98888|0.72222\n98889|0.38889\n98890|0.48611\n98891|0.90278\n98892|0.80556\n98893|0.73611\n98894|0.40278\n98895|0.56944\n98896|0.5\n98897|0.51389\n98898|0.79167\n98899|0.59722\n98900|0.75\n98901|0.72222\n98902|0.59722\n98903|0.72222\n98904|0.59722\n98905|0.65278\n98906|0.58333\n98907|0.69444\n98908|0.54167\n98909|0.58333\n98910|0.47222\n98911|0.58333\n98912|0.59722\n98913|0.72222\n98914|0.70833\n98915|0.72222\n98916|0.55556\n98917|0.45833\n98918|0.27778\n98919|0.34722\n98920|0.26389\n98921|0.54167\n98922|0.55556\n98923|0.66667\n98924|0.61111\n98925|0.75\n98926|0.69444\n98927|0.70833\n98928|0.73611\n98929|0.76389\n98930|0.58333\n98931|0.58333\n98932|0.56944\n98933|0.66667\n98934|0.68056\n98935|0.5\n98936|0.48611\n98937|0.83333\n98938|0.73611\n98939|0.79167\n98940|0.94444\n98941|0.72222\n98942|0.30556\n98943|0.81944\n98944|0.83333\n98945|0.81944\n98946|0.86111\n98947|0.51389\n98948|0.45833\n98949|0.80556\n98950|0.5\n98951|0.66667\n98952|0.5\n98953|0.51389\n98954|0.75\n98955|0.5\n98956|0.38889\n98957|0.375\n98958|0.69444\n98959|0.5\n98960|0.5\n98961|0.5\n98962|0.55556\n98963|0.45833\n98964|0.38889\n98965|0.27778\n98966|0.375\n98967|0.65278\n98968|0.48611\n98969|0.69444\n98970|0.61111\n98971|0.44444\n98972|0.52778\n98973|0.5\n98974|0.5\n98975|0.5\n98976|0.36111\n98977|0.52778\n98978|0.5\n98979|0.43056\n98980|0.63889\n98981|0.5\n98982|0.72222\n98983|0.68056\n98984|0.58333\n98985|0.61111\n98986|0.69444\n98987|0.59722\n98988|0.58333\n98989|0.65278\n98990|0.83333\n98991|0.56944\n98992|0.5\n98993|0.48611\n98994|0.5\n98995|0.5\n98996|0.40278\n98997|0.44444\n98998|0.52778\n98999|0.5\n99000|0.54167\n99001|0.36111\n99002|0.38889\n99003|0.38889\n99004|0.40278\n99005|0.16667\n99006|0.66667\n99007|0.59722\n99008|0.70833\n99009|0.69444\n99010|0.69444\n99011|0.48611\n99012|0.5\n99013|0.68056\n99014|0.52778\n99015|0.79167\n99016|0.83333\n99017|0.72222\n99018|0.83333\n99019|0.83333\n99020|0.36111\n99021|0.59722\n99022|0.51389\n99023|0.63889\n99024|0.70833\n99025|0.66667\n99026|0.70833\n99027|0.81944\n99028|0.51389\n99029|0.54167\n99030|0.875\n99031|0.76389\n99032|0.66667\n99033|0.63889\n99034|0.16667\n99035|0.44444\n99036|0.5\n99037|0.25\n99038|0.22222\n99039|0.40278\n99040|0.66667\n99041|0.44444\n99042|0.66667\n99043|0.48611\n99044|0.76389\n99045|0.65278\n99046|0.70833\n99047|0.61111\n99048|0.79167\n99049|0.61111\n99050|0.72222\n99051|0.55556\n99052|0.81944\n99053|0.66667\n99054|0.66667\n99055|0.77778\n99056|0.66667\n99057|0.51389\n99058|0.75\n99059|0.66667\n99060|0.54167\n99061|0.5\n99062|0.5\n99063|0.5\n99064|0.5\n99065|0.5\n99066|0.5\n99067|0.52778\n99068|0.65278\n99069|0.44444\n99070|0.76389\n99071|0.69444\n99072|0.80556\n99073|0.5\n99074|0.77778\n99075|0.51389\n99076|0.52778\n99077|0.5\n99078|0.61111\n99079|0.65278\n99080|0.61111\n99081|0.91667\n99082|0.52778\n99083|0.38889\n99084|0.43056\n99085|0.58333\n99086|0.38889\n99087|0.41667\n99088|0.33333\n99089|0.20833\n99090|0.31944\n99091|0.58333\n99092|0.58333\n99093|0.55556\n99094|0.55556\n99095|0.59722\n99096|0.31944\n99097|0.54167\n99098|0.41667\n99099|0.38889\n99100|0.41667\n99101|0.55556\n99102|0.36111\n99103|0.22222\n99104|0.36111\n99105|0.34722\n99106|0.73611\n99107|0.40278\n99108|0.30556\n99109|0.43056\n99110|0.52778\n99111|0.22222\n99112|0.44444\n99113|0.44444\n99114|0.41667\n99115|0.55556\n99116|0.55556\n99117|0.47222\n99118|0.54167\n99119|0.55556\n99120|0.76389\n99121|0.58333\n99122|0.65278\n99123|0.44444\n99124|0.63889\n99125|0.45833\n99126|0.38889\n99127|0.38889\n99128|0.41667\n99129|0.34722\n99130|0.44444\n99131|0.31944\n99132|0.38889\n99133|0.54167\n99134|0.22222\n99135|0.45833\n99136|0.30556\n99137|0.41667\n99138|0.5\n99139|0.5\n99140|0.5\n99141|0.80556\n99142|0.54167\n99143|0.22222\n99144|0.5\n99145|0.65278\n99146|0.81944\n99147|0.41667\n99148|0.58333\n99149|0.66667\n99150|0.69444\n99151|0.5\n99152|0.5\n99153|0.59722\n99154|0.66667\n99155|0.66667\n99156|0.33333\n99157|0.52778\n99158|0.77778\n99159|0.80556\n99160|0.59722\n99161|0.51389\n99162|0.59722\n99163|0.72222\n99164|0.5\n99165|0.58333\n99166|0.73611\n99167|0.5\n99168|0.88889\n99169|0.58333\n99170|0.33333\n99171|0.5\n99172|0.5\n99173|0.56944\n99174|0.5\n99175|0.5\n99176|0.5\n99177|0.56944\n99178|0.55556\n99179|0.55556\n99180|0.66667\n99181|0.54167\n99182|0.61111\n99183|0.56944\n99184|0.54167\n99185|0.69444\n99186|0.59722\n99187|0.77778\n99188|0.5\n99189|0.5\n99190|0.56944\n99191|0.52778\n99192|0.51389\n99193|0.54167\n99194|0.5\n99195|0.5\n99196|0.44444\n99197|0.51389\n99198|0.5\n99199|0.38889\n99200|0.72222\n99201|0.5\n99202|0.56944\n99203|0.51389\n99204|0.61111\n99205|0.58333\n99206|0.63889\n99207|0.43056\n99208|0.56944\n99209|0.5\n99210|0.76389\n99211|0.61111\n99212|0.66667\n99213|0.58333\n99214|0.52778\n99215|0.23611\n99216|0.55556\n99217|0.61111\n99218|0.70833\n99219|0.5\n99220|0.55556\n99221|0.44444\n99222|0.5\n99223|0.55556\n99224|0.84722\n99225|0.58333\n99226|0.5\n99227|0.5\n99228|0.76389\n99229|0.5\n99230|0.22222\n99231|0.44444\n99232|0.5\n99233|0.55556\n99234|0.52778\n99235|0.44444\n99236|0.5\n99237|0.81944\n99238|0.61111\n99239|0.79167\n99240|0.81944\n99241|0.5\n99242|0.70833\n99243|0.77778\n99244|0.77778\n99245|0.47222\n99246|0.59722\n99247|0.55556\n99248|0.58333\n99249|0.625\n99250|0.56944\n99251|0.45833\n99252|0.40278\n99253|0.40278\n99254|0.45833\n99255|0.52778\n99256|0.69444\n99257|0.48611\n99258|0.44444\n99259|0.44444\n99260|0.36111\n99261|0.5\n99262|0.33333\n99263|0.5\n99264|0.44444\n99265|0.68056\n99266|0.5\n99267|0.66667\n99268|0.33333\n99269|0.68056\n99270|0.70833\n99271|0.84722\n99272|0.79167\n99273|0.20833\n99274|0.19444\n99275|0.27778\n99276|0.25\n99277|0.30556\n99278|0.30556\n99279|0.5\n99280|0.65278\n99281|0.84722\n99282|0.83333\n99283|0.66667\n99284|0.63889\n99285|0.68056\n99286|0.58333\n99287|0.5\n99288|0.43056\n99289|0.40278\n99290|0.44444\n99291|0.5\n99292|0.5\n99293|0.5\n99294|0.69444\n99295|0.61111\n99296|0.73611\n99297|0.93056\n99298|0.45833\n99299|0.375\n99300|0.51389\n99301|0.63889\n99302|0.5\n99303|0.41667\n99304|0.5\n99305|0.48611\n99306|0.5\n99307|0.94444\n99308|0.79167\n99309|0.72222\n99310|0.48611\n99311|0.5\n99312|0.51389\n99313|0.36111\n99314|0.47222\n99315|0.51389\n99316|0.56944\n99317|0.5\n99318|0.47222\n99319|0.5\n99320|0.5\n99321|0.51389\n99322|0.5\n99323|0.5\n99324|0.52778\n99325|0.5\n99326|0.48611\n99327|0.77778\n99328|0.76389\n99329|0.83333\n99330|0.88889\n99331|0.77778\n99332|0.45833\n99333|0.55556\n99334|0.61111\n99335|0.73611\n99336|0.625\n99337|0.84722\n99338|0.75\n99339|0.5\n99340|0.65278\n99341|0.90278\n99342|0.86111\n99343|0.61111\n99344|0.69444\n99345|0.90278\n99346|0.77778\n99347|0.81944\n99348|0.79167\n99349|0.81944\n99350|0.86111\n99351|0.73611\n99352|0.5\n99353|0.083333\n99354|0.43056\n99355|0.375\n99356|0.20833\n99357|0.68056\n99358|0.72222\n99359|0.75\n99360|0.5\n99361|0.51389\n99362|0.79167\n99363|0.65278\n99364|0.59722\n99365|0.55556\n99366|0.40278\n99367|0.56944\n99368|0.52778\n99369|0.73611\n99370|0.56944\n99371|0.47222\n99372|0.56944\n99373|0.66667\n99374|0.79167\n99375|0.86111\n99376|0.11111\n99377|0.68056\n99378|0.83333\n99379|0.81944\n99380|0.77778\n99381|0.44444\n99382|0.51389\n99383|0.5\n99384|0.66667\n99385|0.66667\n99386|0.76389\n99387|0.86111\n99388|0.69444\n99389|0.66667\n99390|0.81944\n99391|0.79167\n99392|0.65278\n99393|0.73611\n99394|0.77778\n99395|0.68056\n99396|0.51389\n99397|0.5\n99398|0.5\n99399|0.5\n99400|0.55556\n99401|0.5\n99402|0.44444\n99403|0.5\n99404|0.47222\n99405|0.52778\n99406|0.5\n99407|0.51389\n99408|0.76389\n99409|0.68056\n99410|0.5\n99411|0.51389\n99412|0.58333\n99413|0.72222\n99414|0.5\n99415|0.56944\n99416|0.48611\n99417|0.44444\n99418|0.61111\n99419|0.75\n99420|0.51389\n99421|0.80556\n99422|0.5\n99423|0.61111\n99424|0.625\n99425|0.54167\n99426|0.55556\n99427|0.45833\n99428|0.44444\n99429|0.55556\n99430|0.55556\n99431|0.54167\n99432|0.5\n99433|0.44444\n99434|0.52778\n99435|0.30556\n99436|0.44444\n99437|0.48611\n99438|0.65278\n99439|0.58333\n99440|0.25\n99441|0.33333\n99442|0.44444\n99443|0.75\n99444|0.61111\n99445|0.625\n99446|0.26389\n99447|0.73611\n99448|0.5\n99449|0.58333\n99450|0.65278\n99451|0.65278\n99452|0.75\n99453|0.69444\n99454|0.55556\n99455|0.27778\n99456|0.66667\n99457|0.68056\n99458|0.84722\n99459|0.5\n99460|0.66667\n99461|0.055556\n99462|0.5\n99463|0.63889\n99464|0.63889\n99465|0.75\n99466|0.5\n99467|0.5\n99468|0.63889\n99469|0.58333\n99470|0.375\n99471|0.56944\n99472|0.5\n99473|0.61111\n99474|0.80556\n99475|0.72222\n99476|0.84722\n99477|0.94444\n99478|0.80556\n99479|0.81944\n99480|0.86111\n99481|0.61111\n99482|0.66667\n99483|0.80556\n99484|0.76389\n99485|0.84722\n99486|0.72222\n99487|0.79167\n99488|0.84722\n99489|0.66667\n99490|0.63889\n99491|0.43056\n99492|0.77778\n99493|0.88889\n99494|0.73611\n99495|0.51389\n99496|0.56944\n99497|0.5\n99498|0.5\n99499|0.59722\n99500|0.48611\n99501|0.5\n99502|0.55556\n99503|0.625\n99504|0.63889\n99505|0.79167\n99506|0.55556\n99507|0.5\n99508|0.48611\n99509|0.43056\n99510|0.66667\n99511|0.26389\n99512|0.43056\n99513|0.29167\n99514|0.5\n99515|0.30556\n99516|0.33333\n99517|0.52778\n99518|0.56944\n99519|0.55556\n99520|0.55556\n99521|0.36111\n99522|0.66667\n99523|0.52778\n99524|0.26389\n99525|0.5\n99526|0.5\n99527|0.5\n99528|0.51389\n99529|0.44444\n99530|0.48611\n99531|0.5\n99532|0.34722\n99533|0.66667\n99534|0.88889\n99535|0.5\n99536|0.44444\n99537|0.38889\n99538|0.36111\n99539|0.33333\n99540|0.52778\n99541|0.5\n99542|0.5\n99543|0.54167\n99544|0.48611\n99545|0.875\n99546|0.51389\n99547|0.45833\n99548|0.61111\n99549|0.44444\n99550|0.45833\n99551|0.44444\n99552|0.44444\n99553|0.58333\n99554|0.5\n99555|0.27778\n99556|0.5\n99557|0.52778\n99558|0.84722\n99559|0.66667\n99560|0.43056\n99561|0.5\n99562|0.5\n99563|0.23611\n99564|0.31944\n99565|0.36111\n99566|0.63889\n99567|0.58333\n99568|0.5\n99569|0.38889\n99570|0.41667\n99571|0.5\n99572|0.44444\n99573|0.5\n99574|0.45833\n99575|0.86111\n99576|0.83333\n99577|0.70833\n99578|0.69444\n99579|0.77778\n99580|0.88889\n99581|0.86111\n99582|0.79167\n99583|0.79167\n99584|0.83333\n99585|0.72222\n99586|0.70833\n99587|0.80556\n99588|0.73611\n99589|0.80556\n99590|0.66667\n99591|0.59722\n99592|0.625\n99593|0.75\n99594|0.77778\n99595|0.72222\n99596|0.68056\n99597|0.76389\n99598|0.79167\n99599|0.77778\n99600|0.44444\n99601|0.61111\n99602|0.65278\n99603|0.52778\n99604|0.77778\n99605|0.73611\n99606|0.5\n99607|0.5\n99608|0.56944\n99609|0.51389\n99610|0.63889\n99611|0.5\n99612|0.55556\n99613|0.47222\n99614|0.5\n99615|0.69444\n99616|0.47222\n99617|0.34722\n99618|0.43056\n99619|0.48611\n99620|0.63889\n99621|0.58333\n99622|0.77778\n99623|0.44444\n99624|0.72222\n99625|0.80556\n99626|0.76389\n99627|0.38889\n99628|0.13889\n99629|0.51389\n99630|0.48611\n99631|0.51389\n99632|0.5\n99633|0.38889\n99634|0.38889\n99635|0.51389\n99636|0.72222\n99637|0.76389\n99638|0.5\n99639|0.38889\n99640|0.43056\n99641|0.16667\n99642|0.30556\n99643|0.69444\n99644|0.5\n99645|0.875\n99646|0.875\n99647|0.79167\n99648|0.5\n99649|0.375\n99650|0.45833\n99651|0.5\n99652|0.5\n99653|0.43056\n99654|0.77778\n99655|0.48611\n99656|0.55556\n99657|0.47222\n99658|0.63889\n99659|0.45833\n99660|0.68056\n99661|0.77778\n99662|0.5\n99663|0.22222\n99664|0.79167\n99665|0.68056\n99666|0.68056\n99667|0.76389\n99668|0.65278\n99669|0.56944\n99670|0.55556\n99671|0.5\n99672|0.5\n99673|0.33333\n99674|0.56944\n99675|0.54167\n99676|0.70833\n99677|0.5\n99678|0.5\n99679|0.44444\n99680|0.63889\n99681|0.5\n99682|0.55556\n99683|0.5\n99684|0.44444\n99685|0.5\n99686|0.54167\n99687|0.77778\n99688|0.5\n99689|0.5\n99690|0.47222\n99691|0.55556\n99692|0.5\n99693|0.58333\n99694|0.54167\n99695|0.5\n99696|0.44444\n99697|0.47222\n99698|0.33333\n99699|0.51389\n99700|0.5\n99701|0.38889\n99702|0.63889\n99703|0.27778\n99704|0.43056\n99705|0.5\n99706|0.70833\n99707|0.77778\n99708|0.41667\n99709|0.84722\n99710|0.73611\n99711|0.70833\n99712|0.63889\n99713|0.55556\n99714|0.51389\n99715|0.88889\n99716|0.55556\n99717|0.34722\n99718|0.63889\n99719|0.77778\n99720|0.76389\n99721|0.75\n99722|0.45833\n99723|0.70833\n99724|0.54167\n99725|0.91667\n99726|0.69444\n99727|0.52778\n99728|0.55556\n99729|0.55556\n99730|0.54167\n99731|0.5\n99732|0.5\n99733|0.5\n99734|0.54167\n99735|0.44444\n99736|0.38889\n99737|0.375\n99738|0.5\n99739|0.5\n99740|0.5\n99741|0.65278\n99742|0.5\n99743|0.51389\n99744|0.5\n99745|0.30556\n99746|0.33333\n99747|0.61111\n99748|0.5\n99749|0.375\n99750|0.36111\n99751|0.58333\n99752|0.5\n99753|0.55556\n99754|0.44444\n99755|0.63889\n99756|0.69444\n99757|0.51389\n99758|0.63889\n99759|0.84722\n99760|0.55556\n99761|0.72222\n99762|0.625\n99763|0.77778\n99764|0.68056\n99765|0.77778\n99766|0.83333\n99767|0.38889\n99768|0.47222\n99769|0.68056\n99770|0.75\n99771|0.375\n99772|0.45833\n99773|0.51389\n99774|0.51389\n99775|0.66667\n99776|0.75\n99777|0.56944\n99778|0.68056\n99779|0.65278\n99780|0.76389\n99781|0.56944\n99782|0.65278\n99783|0.83333\n99784|0.80556\n99785|0.88889\n99786|0.625\n99787|0.65278\n99788|0.84722\n99789|0.88889\n99790|0.59722\n99791|0.66667\n99792|0.5\n99793|0.68056\n99794|0.69444\n99795|0.84722\n99796|0.86111\n99797|0.875\n99798|0.83333\n99799|0.91667\n99800|0.72222\n99801|0.59722\n99802|0.59722\n99803|0.55556\n99804|0.875\n99805|0.61111\n99806|0.83333\n99807|0.70833\n99808|0.70833\n99809|0.75\n99810|0.86111\n99811|0.80556\n99812|0.70833\n99813|0.73611\n99814|0.76389\n99815|0.43056\n99816|0.44444\n99817|0.84722\n99818|0.66667\n99819|0.70833\n99820|0.80556\n99821|0.72222\n99822|0.75\n99823|0.83333\n99824|0.80556\n99825|0.66667\n99826|0.66667\n99827|0.80556\n99828|0.58333\n99829|0.65278\n99830|0.55556\n99831|0.22222\n99832|0.20833\n99833|0.29167\n99834|0.5\n99835|0.43056\n99836|0.55556\n99837|0.31944\n99838|0.5\n99839|0.41667\n99840|0.44444\n99841|0.5\n99842|0.63889\n99843|0.83333\n99844|0.63889\n99845|0.80556\n99846|0.29167\n99847|0.77778\n99848|0.22222\n99849|0.58333\n99850|0.79167\n99851|0.83333\n99852|0.58333\n99853|0.80556\n99854|0.83333\n99855|0.88889\n99856|0.56944\n99857|0.77778\n99858|0.625\n99859|0.93056\n99860|0.97222\n99861|0.69444\n99862|0.93056\n99863|0.73611\n99864|0.61111\n99865|0.77778\n99866|0.93056\n99867|0.54167\n99868|0.81944\n99869|0.51389\n99870|0.68056\n99871|0.59722\n99872|0.5\n99873|0.33333\n99874|0.63889\n99875|0.73611\n99876|0.55556\n99877|0.55556\n99878|0.5\n99879|0.34722\n99880|0.61111\n99881|0.41667\n99882|0.56944\n99883|0.63889\n99884|0.55556\n99885|0.5\n99886|0.5\n99887|0.5\n99888|0.68056\n99889|0.77778\n99890|0.70833\n99891|0.73611\n99892|0.58333\n99893|0.5\n99894|1\n99895|0.70833\n99896|0.5\n99897|0.27778\n99898|0.36111\n99899|0.61111\n99900|0.61111\n99901|0.5\n99902|0.48611\n99903|0.5\n99904|0.5\n99905|0.5\n99906|0.51389\n99907|0.5\n99908|0.5\n99909|0.40278\n99910|0.44444\n99911|0.5\n99912|0.5\n99913|0.33333\n99914|0.31944\n99915|0.61111\n99916|0.51389\n99917|0.45833\n99918|0.51389\n99919|0.52778\n99920|0.59722\n99921|0.5\n99922|0.61111\n99923|0.5\n99924|0.66667\n99925|0.30556\n99926|0.80556\n99927|0.51389\n99928|0.61111\n99929|0.47222\n99930|0.56944\n99931|0.29167\n99932|0.44444\n99933|0.5\n99934|0.80556\n99935|0.5\n99936|0.68056\n99937|0.5\n99938|0.41667\n99939|0.51389\n99940|0.68056\n99941|0.5\n99942|0.75\n99943|0.84722\n99944|0.41667\n99945|0.5\n99946|0.75\n99947|0.52778\n99948|0.47222\n99949|0.5\n99950|0.45833\n99951|0.44444\n99952|0.31944\n99953|0.55556\n99954|0.72222\n99955|0.55556\n99956|0.59722\n99957|0.5\n99958|0.40278\n99959|0.48611\n99960|0.25\n99961|0.76389\n99962|0.44444\n99963|0.38889\n99964|0.80556\n99965|0.56944\n99966|0.5\n99967|0.44444\n99968|0.5\n99969|0.5\n99970|0.48611\n99971|0.45833\n99972|0.51389\n99973|0.5\n99974|0.5\n99975|0.48611\n99976|0.55556\n99977|0.56944\n99978|0.58333\n99979|0.5\n99980|0.5\n99981|0.41667\n99982|0.70833\n99983|0.55556\n99984|0.52778\n99985|0.375\n99986|0.44444\n99987|0.22222\n99988|0.69444\n99989|0.54167\n99990|0.81944\n99991|0.61111\n99992|0.51389\n99993|0.54167\n99994|0.5\n99995|0.48611\n99996|0.63889\n99997|0.5\n99998|0.68056\n99999|0.44444\n100000|0.5\n100001|0.72222\n100002|0.69444\n100003|0.22222\n100004|0.55556\n100005|0.31944\n100006|0.5\n100007|0.5\n100008|0.86111\n100009|0.68056\n100010|0.70833\n100011|0.58333\n100012|0.44444\n100013|0.58333\n100014|0.27778\n100015|0.61111\n100016|0.40278\n100017|0.45833\n100018|0.44444\n100019|0.44444\n100020|0.40278\n100021|0.43056\n100022|0.5\n100023|0.52778\n100024|0.86111\n100025|0.29167\n100026|0.51389\n100027|0.51389\n100028|0.5\n100029|0.52778\n100030|0.77778\n100031|0.48611\n100032|0.80556\n100033|0.70833\n100034|0.625\n100035|0.84722\n100036|0.72222\n100037|0.83333\n100038|0.5\n100039|0.36111\n100040|0.44444\n100041|0.34722\n100042|0.40278\n100043|0.45833\n100044|0.5\n100045|0.47222\n100046|0.41667\n100047|0.72222\n100048|0.58333\n100049|0.47222\n100050|0.76389\n100051|0.72222\n100052|0.52778\n100053|0.63889\n100054|0.81944\n100055|0.63889\n100056|0.5\n100057|0.5\n100058|0.84722\n100059|0.66667\n100060|0.52778\n100061|0.5\n100062|0.43056\n100063|0.55556\n100064|0.26389\n100065|0.5\n100066|0.55556\n100067|0.29167\n100068|0.5\n100069|0.375\n100070|0.81944\n100071|0.51389\n100072|0.48611\n100073|0.38889\n100074|0.58333\n100075|0.63889\n100076|0.66667\n100077|0.5\n100078|0.61111\n100079|0.5\n100080|0.5\n100081|0.5\n100082|0.56944\n100083|0.5\n100084|0.77778\n100085|0.70833\n100086|0.51389\n100087|0.47222\n100088|0.68056\n100089|0.61111\n100090|0.68056\n100091|0.72222\n100092|0.43056\n100093|0.61111\n100094|0.84722\n100095|0.38889\n100096|0.45833\n100097|0.61111\n100098|0.61111\n100099|0.54167\n100100|0.73611\n100101|0.44444\n100102|0.77778\n100103|0.55556\n100104|0.70833\n100105|0.69444\n100106|0.45833\n100107|0.41667\n100108|0.47222\n100109|0.5\n100110|0.51389\n100111|0.83333\n100112|0.47222\n100113|0.52778\n100114|0.47222\n100115|0.5\n100116|0.58333\n100117|0.75\n100118|0.625\n100119|0.65278\n100120|0.66667\n100121|0.38889\n100122|0.5\n100123|0.5\n100124|0.70833\n100125|0.83333\n100126|0.5\n100127|0.66667\n100128|0.72222\n100129|0.5\n100130|0.5\n100131|0.5\n100132|0.52778\n100133|0.5\n100134|0.75\n100135|0.36111\n100136|0.51389\n100137|0.55556\n100138|0.55556\n100139|0.51389\n100140|0.44444\n100141|0.73611\n100142|0.58333\n100143|0.5\n100144|0.52778\n100145|0.36111\n100146|0.72222\n100147|0.66667\n100148|0.48611\n100149|0.45833\n100150|0.51389\n100151|0.66667\n100152|0.77778\n100153|0.56944\n100154|0.55556\n100155|0.5\n100156|0.51389\n100157|0.5\n100158|0.52778\n100159|0.68056\n100160|0.52778\n100161|0.79167\n100162|0.75\n100163|0.75\n100164|0.5\n100165|0.43056\n100166|0.44444\n100167|0.5\n100168|0.40278\n100169|0.83333\n100170|0.52778\n100171|0.625\n100172|0.5\n100173|0.45833\n100174|0.375\n100175|0.5\n100176|0.5\n100177|0.38889\n100178|0.45833\n100179|0.625\n100180|0.51389\n100181|0.625\n100182|0.5\n100183|0.52778\n100184|0.61111\n100185|0.63889\n100186|0.56944\n100187|0.5\n100188|0.55556\n100189|0.79167\n100190|0.5\n100191|0.19444\n100192|0.86111\n100193|0.81944\n100194|0.66667\n100195|0.73611\n100196|0.625\n100197|0.41667\n100198|0.5\n100199|0.47222\n100200|0.54167\n100201|0.70833\n100202|0.76389\n100203|0.83333\n100204|0.69444\n100205|0.76389\n100206|0.51389\n100207|0.58333\n100208|0.5\n100209|0.66667\n100210|0.56944\n100211|0.52778\n100212|0.55556\n100213|0.5\n100214|0.86111\n100215|0.86111\n100216|0.75\n100217|0.72222\n100218|0.66667\n100219|0.70833\n100220|0.38889\n100221|0.54167\n100222|0.90278\n100223|0.76389\n100224|0.27778\n100225|0.72222\n100226|0.81944\n100227|0.65278\n100228|0.61111\n100229|0.58333\n100230|0.65278\n100231|0.83333\n100232|0.75\n100233|0.68056\n100234|0.47222\n100235|0.77778\n100236|0.61111\n100237|0.5\n100238|0.5\n100239|0.68056\n100240|0.65278\n100241|0.83333\n100242|0.72222\n100243|0.77778\n100244|0.52778\n100245|0.61111\n100246|0.76389\n100247|0.81944\n100248|0.5\n100249|0.44444\n100250|0.79167\n100251|0.83333\n100252|0.5\n100253|0.73611\n100254|0.54167\n100255|0.48611\n100256|0.625\n100257|0.84722\n100258|0.94444\n100259|0.68056\n100260|0.59722\n100261|0.58333\n100262|0.56944\n100263|0.69444\n100264|0.77778\n100265|0.81944\n100266|0.93056\n100267|0.44444\n100268|0.55556\n100269|0.83333\n100270|0.55556\n100271|0.73611\n100272|0.875\n100273|0.875\n100274|0.76389\n100275|0.76389\n100276|0.75\n100277|0.77778\n100278|0.66667\n100279|0.72222\n100280|0.59722\n100281|0.61111\n100282|0.59722\n100283|0.63889\n100284|0.5\n100285|0.33333\n100286|0.31944\n100287|0.41667\n100288|0.55556\n100289|0.73611\n100290|0.83333\n100291|0.73611\n100292|0.63889\n100293|0.63889\n100294|0.27778\n100295|0.47222\n100296|0.31944\n100297|0.55556\n100298|0.875\n100299|0.875\n100300|0.5\n100301|0.66667\n100302|0.72222\n100303|0.5\n100304|0.44444\n100305|0.83333\n100306|0.94444\n100307|0.94444\n100308|0.83333\n100309|0.5\n100310|0.58333\n100311|0.97222\n100312|0.61111\n100313|0.72222\n100314|0.56944\n100315|0.68056\n100316|0.5\n100317|0.625\n100318|0.72222\n100319|0.66667\n100320|0.61111\n100321|0.54167\n100322|0.59722\n100323|0.63889\n100324|0.91667\n100325|0.45833\n100326|0.77778\n100327|0.43056\n100328|0.5\n100329|0.5\n100330|0.81944\n100331|0.59722\n100332|0.79167\n100333|0.88889\n100334|0.72222\n100335|0.75\n100336|0.73611\n100337|0.80556\n100338|0.69444\n100339|0.69444\n100340|0.5\n100341|0.5\n100342|0.5\n100343|0.75\n100344|0.55556\n100345|0.63889\n100346|0.81944\n100347|0.55556\n100348|0.63889\n100349|0.65278\n100350|0.65278\n100351|0.5\n100352|0.36111\n100353|0.36111\n100354|0.22222\n100355|0.52778\n100356|0.52778\n100357|0.63889\n100358|0.61111\n100359|0.76389\n100360|0.79167\n100361|0.77778\n100362|0.79167\n100363|0.56944\n100364|0.61111\n100365|0.56944\n100366|0.72222\n100367|0.61111\n100368|0.54167\n100369|0.5\n100370|0.65278\n100371|0.41667\n100372|0.55556\n100373|0.55556\n100374|0.56944\n100375|0.54167\n100376|0.72222\n100377|0.5\n100378|0.59722\n100379|0.5\n100380|0.5\n100381|0.30556\n100382|0.56944\n100383|0.59722\n100384|0.88889\n100385|0.5\n100386|0.5\n100387|0.52778\n100388|0.625\n100389|0.58333\n100390|0.86111\n100391|0.5\n100392|0.65278\n100393|0.55556\n100394|0.72222\n100395|0.55556\n100396|0.66667\n100397|0.63889\n100398|0.55556\n100399|0.61111\n100400|0.72222\n100401|0.65278\n100402|0.66667\n100403|0.68056\n100404|0.34722\n100405|0.75\n100406|0.51389\n100407|0.38889\n100408|0.40278\n100409|0.70833\n100410|0.55556\n100411|0.5\n100412|0.76389\n100413|0.66667\n100414|0.86111\n100415|0.61111\n100416|0.52778\n100417|0.5\n100418|0.44444\n100419|0.44444\n100420|0.66667\n100421|0.79167\n100422|0.73611\n100423|0.5\n100424|0.55556\n100425|0.48611\n100426|0.72222\n100427|0.81944\n100428|0.79167\n100429|0.88889\n100430|0.27778\n100431|0.56944\n100432|0.625\n100433|0.58333\n100434|0.72222\n100435|0.5\n100436|0.59722\n100437|0.66667\n100438|0.72222\n100439|0.47222\n100440|0.77778\n100441|0.875\n100442|0.73611\n100443|0.5\n100444|0.75\n100445|0.5\n100446|0.36111\n100447|0.36111\n100448|0.38889\n100449|0.44444\n100450|0.68056\n100451|0.59722\n100452|0.75\n100453|0.45833\n100454|0.63889\n100455|0.63889\n100456|0.81944\n100457|0.77778\n100458|0.51389\n100459|0.72222\n100460|0.51389\n100461|0.875\n100462|0.66667\n100463|0.77778\n100464|0.59722\n100465|0.61111\n100466|0.625\n100467|0.56944\n100468|0.63889\n100469|0.73611\n100470|0.83333\n100471|0.45833\n100472|0.73611\n100473|0.38889\n100474|0.59722\n100475|0.51389\n100476|0.55556\n100477|0.80556\n100478|0.66667\n100479|0.56944\n100480|0.59722\n100481|0.44444\n100482|0.38889\n100483|0.76389\n100484|0.83333\n100485|0.5\n100486|0.84722\n100487|0.73611\n100488|0.5\n100489|0.61111\n100490|0.77778\n100491|0.55556\n100492|0.66667\n100493|0.86111\n100494|0.66667\n100495|0.61111\n100496|0.375\n100497|0.52778\n100498|0.5\n100499|0.75\n100500|0.81944\n100501|0.72222\n100502|0.66667\n100503|0.5\n100504|0.76389\n100505|0.69444\n100506|0.68056\n100507|0.81944\n100508|0.75\n100509|0.5\n100510|0.72222\n100511|0.5\n100512|0.45833\n100513|0.77778\n100514|0.51389\n100515|0.54167\n100516|0.5\n100517|0.51389\n100518|0.5\n100519|0.5\n100520|0.70833\n100521|0.5\n100522|0.63889\n100523|0.70833\n100524|0.5\n100525|0.84722\n100526|0.5\n100527|0.58333\n100528|0.66667\n100529|0.68056\n100530|0.66667\n100531|0.51389\n100532|0.5\n100533|0.75\n100534|0.86806\n100535|0.5\n100536|0.72222\n100537|0.41667\n100538|0.63889\n100539|0.80556\n100540|0.65278\n100541|0.625\n100542|0.51389\n100543|0.65278\n100544|0.70833\n100545|0.75\n100546|0.55556\n100547|0.5\n100548|0.61111\n100549|0.38889\n100550|0.5\n100551|0.38889\n100552|0.16667\n100553|0.73611\n100554|0.70833\n100555|0.61111\n100556|0.5\n100557|0.80556\n100558|0.5\n100559|0.5\n100560|0.88889\n100561|0.43056\n100562|0.65278\n100563|0.47222\n100564|0.48611\n100565|0.5\n100566|0.77778\n100567|0.5\n100568|0.66667\n100569|0.52778\n100570|0.75\n100571|0.5\n100572|0.375\n100573|0.5\n100574|0.88889\n100575|0.5\n100576|0.5\n100577|0.58333\n100578|0.72222\n100579|0.70833\n100580|0.63889\n100581|0.76389\n100582|0.54167\n100583|0.88889\n100584|0.5\n100585|0.44444\n100586|0.84722\n100587|0.59722\n100588|0.55556\n100589|0.69444\n100590|0.5\n100591|0.625\n100592|0.75\n100593|0.625\n100594|0.75\n100595|0.69444\n100596|0.55556\n100597|0.56944\n100598|0.66667\n100599|0.68056\n100600|0.69444\n100601|0.83333\n100602|0.51389\n100603|0.55556\n100604|0.70833\n100605|0.59722\n100606|0.55556\n100607|0.83333\n100608|0.5\n100609|0.59722\n100610|0.5\n100611|0.66667\n100612|0.66667\n100613|0.61111\n100614|0.66667\n100615|0.77778\n100616|0.66667\n100617|0.61111\n100618|0.51389\n100619|0.65278\n100620|0.80556\n100621|0.68056\n100622|0.55556\n100623|0.375\n100624|0.66667\n100625|0.65278\n100626|0.69444\n100627|0.76389\n100628|0.58333\n100629|0.63889\n100630|0.61111\n100631|0.36111\n100632|0.68056\n100633|0.52778\n100634|0.55556\n100635|0.875\n100636|0.70833\n100637|0.77778\n100638|0.66667\n100639|0.5\n100640|0.5\n100641|0.65278\n100642|0.77778\n100643|0.73611\n100644|0.65278\n100645|0.58333\n100646|0.61111\n100647|0.70833\n100648|0.56944\n100649|0.79167\n100650|0.55556\n100651|0.58333\n100652|0.56944\n100653|0.5\n100654|0.59722\n100655|0.55556\n100656|0.5\n100657|0.56944\n100658|0.5\n100659|0.625\n100660|0.54167\n100661|0.59722\n100662|0.44444\n100663|0.55556\n100664|0.94444\n100665|0.58333\n100666|0.63889\n100667|0.56944\n100668|0.5\n100669|0.36111\n100670|0.5\n100671|0.94444\n100672|0.69444\n100673|0.61111\n100674|0.51389\n100675|0.70833\n100676|0.54167\n100677|0.73611\n100678|0.5\n100679|0.65278\n100680|0.5\n100681|0.51389\n100682|0.47222\n100683|0.81944\n100684|0.61111\n100685|0.83333\n100686|0.625\n100687|0.68056\n100688|0.76389\n100689|0.77778\n100690|0.61111\n100691|0.90278\n100692|0.54167\n100693|0.75\n100694|0.73611\n100695|0.56944\n100696|0.75\n100697|0.51389\n100698|0.5\n100699|0.61111\n100700|0.51389\n100701|0.47222\n100702|0.68056\n100703|0.52778\n100704|0.5\n100705|0.5\n100706|0.375\n100707|0.68056\n100708|0.48611\n100709|0.61111\n100710|0.61111\n100711|0.40278\n100712|0.59722\n100713|0.59722\n100714|0.58333\n100715|0.58333\n100716|0.52778\n100717|0.55556\n100718|0.51389\n100719|0.55556\n100720|0.44444\n100721|0.72222\n100722|0.68056\n100723|0.72222\n100724|0.68056\n100725|0.63889\n100726|0.625\n100727|0.59722\n100728|0.56944\n100729|0.56944\n100730|0.875\n100731|0.75\n100732|0.5\n100733|0.63889\n100734|0.55556\n100735|0.81944\n100736|0.48611\n100737|0.61111\n100738|0.58333\n100739|0.66667\n100740|0.72222\n100741|0.47222\n100742|0.68056\n100743|0.61111\n100744|0.52778\n100745|0.66667\n100746|0.70833\n100747|0.80556\n100748|0.40278\n100749|0.58333\n100750|0.69444\n100751|0.66667\n100752|0.77778\n100753|0.625\n100754|0.73611\n100755|0.63889\n100756|0.30556\n100757|0.23611\n100758|0.31944\n100759|0.5\n100760|0.625\n100761|0.23611\n100762|0.22222\n100763|0.44444\n100764|0.45833\n100765|0.55556\n100766|0.38889\n100767|0.625\n100768|0.625\n100769|0.61111\n100770|0.83333\n100771|0.72222\n100772|0.51389\n100773|0.5\n100774|0.80556\n100775|0.80556\n100776|0.75\n100777|0.98611\n100778|0.80556\n100779|0.70833\n100780|0.66667\n100781|0.63889\n100782|0.86111\n100783|0.84722\n100784|0.80556\n100785|0.83333\n100786|0.91667\n100787|0.88889\n100788|0.73611\n100789|0.55556\n100790|0.58333\n100791|0.80556\n100792|0.86111\n100793|0.68056\n100794|0.88889\n100795|0.69444\n100796|0.45833\n100797|0.5\n100798|0.5\n100799|0.5\n100800|0.72222\n100801|0.75\n100802|0.73611\n100803|0.44444\n100804|0.52778\n100805|0.56944\n100806|0.56944\n100807|0.77778\n100808|0.61111\n100809|0.65278\n100810|0.55556\n100811|0.47222\n100812|0.52778\n100813|0.44444\n100814|0.70833\n100815|0.55556\n100816|0.55556\n100817|0.43056\n100818|0.5\n100819|0.68056\n100820|0.51389\n100821|0.44444\n100822|0.88889\n100823|0.81944\n100824|0.51389\n100825|0.45833\n100826|0.5\n100827|0.59722\n100828|0.55556\n100829|0.5\n100830|0.59722\n100831|0.77778\n100832|0.55556\n100833|0.625\n100834|0.5\n100835|0.66667\n100836|0.73611\n100837|0.77778\n100838|0.76389\n100839|0.70833\n100840|0.83333\n100841|0.93056\n100842|0.72222\n100843|0.66667\n100844|0.77778\n100845|0.69444\n100846|0.80556\n100847|0.83333\n100848|0.69444\n100849|0.5\n100850|0.63889\n100851|0.51389\n100852|0.68056\n100853|0.625\n100854|0.48611\n100855|0.83333\n100856|0.81944\n100857|0.80556\n100858|0.86111\n100859|0.80556\n100860|0.79167\n100861|0.63889\n100862|0.61111\n100863|0.375\n100864|0.38889\n100865|0.72222\n100866|0.73611\n100867|0.86111\n100868|0.81944\n100869|0.58333\n100870|0.65278\n100871|0.51389\n100872|0.73611\n100873|0.75\n100874|0.43056\n100875|0.5\n100876|0.44444\n100877|0.5\n100878|0.5\n100879|0.47222\n100880|0.51389\n100881|0.73611\n100882|0.88889\n100883|0.48611\n100884|0.45833\n100885|0.56944\n100886|0.16667\n100887|0.70833\n100888|0.66667\n100889|0.70833\n100890|0.55556\n100891|0.70833\n100892|0.70833\n100893|0.75\n100894|0.72222\n100895|0.75\n100896|0.70833\n100897|0.76389\n100898|0.66667\n100899|0.75\n100900|0.73611\n100901|0.63889\n100902|0.77778\n100903|0.51389\n100904|0.55556\n100905|0.375\n100906|0.54167\n100907|0.625\n100908|0.66667\n100909|0.5\n100910|0.65278\n100911|0.52778\n100912|0.5\n100913|0.36111\n100914|0.5\n100915|0.55556\n100916|0.5\n100917|0.61111\n100918|0.5\n100919|0.44444\n100920|0.5\n100921|0.27778\n100922|0.52778\n100923|0.5\n100924|0.5\n100925|0.5\n100926|0.59722\n100927|0.55556\n100928|0.54167\n100929|0.625\n100930|0.54167\n100931|0.77778\n100932|0.68056\n100933|0.75\n100934|0.44444\n100935|0.59722\n100936|0.48611\n100937|0.38889\n100938|0.80556\n100939|0.36111\n100940|0.45833\n100941|0.31944\n100942|0.76389\n100943|0.75\n100944|0.54167\n100945|0.11111\n100946|0.48611\n100947|0.5\n100948|0.5\n100949|0.5\n100950|0.5\n100951|0.5\n100952|0.52778\n100953|0.45833\n100954|0.52778\n100955|0.80556\n100956|0.5\n100957|0.59722\n100958|0.77778\n100959|0.72222\n100960|0.625\n100961|0.5\n100962|0.61111\n100963|0.34722\n100964|0.5\n100965|0.33333\n100966|0.27778\n100967|0.875\n100968|0.5\n100969|0.5\n100970|0.5\n100971|0.51389\n100972|0.54167\n100973|0.5\n100974|0.5\n100975|0.5\n100976|0.75\n100977|0.5\n100978|0.72222\n100979|0.5\n100980|0.5\n100981|0.51389\n100982|0.54167\n100983|0.55556\n100984|0.625\n100985|0.58333\n100986|0.36111\n100987|0.33333\n100988|0.40278\n100989|0.38889\n100990|0.66667\n100991|0.5\n100992|0.56944\n100993|0.61111\n100994|0.55556\n100995|0.90278\n100996|0.80556\n100997|0.5\n100998|0.51389\n100999|0.5\n101000|0.5\n101001|0.30556\n101002|0.38889\n101003|0.5\n101004|0.51389\n101005|0.58333\n101006|0.63889\n101007|0.68056\n101008|0.5\n101009|0.5\n101010|0.5\n101011|0.38889\n101012|0.5\n101013|0.45833\n101014|0.51389\n101015|0.66667\n101016|0.5\n101017|0.33333\n101018|0.55556\n101019|0.51389\n101020|0.5\n101021|0.72222\n101022|0.5\n101023|0.70833\n101024|0.26389\n101025|0.77778\n101026|0.5\n101027|0.54167\n101028|0.63889\n101029|0.51389\n101030|0.69444\n101031|0.75\n101032|0.81944\n101033|0.40278\n101034|0.5\n101035|0.63889\n101036|0.66667\n101037|0.76389\n101038|0.5\n101039|0.48611\n101040|0.41667\n101041|0.22222\n101042|0.72222\n101043|0.55556\n101044|0.66667\n101045|0.70833\n101046|0.69444\n101047|0.75\n101048|0.88889\n101049|0.94444\n101050|0.52778\n101051|0.33333\n101052|0.73611\n101053|0.58333\n101054|0.77778\n101055|0.55556\n101056|0.91667\n101057|0.61111\n101058|0.48611\n101059|0.41667\n101060|0.55556\n101061|0.5\n101062|0.72222\n101063|0.33333\n101064|0.33333\n101065|0.55556\n101066|0.73611\n101067|0.55556\n101068|0.625\n101069|0.41667\n101070|0.63889\n101071|0.625\n101072|0.55556\n101073|0.68056\n101074|0.69444\n101075|0.69444\n101076|0.77778\n101077|0.5\n101078|0.63889\n101079|0.5\n101080|0.36111\n101081|0.5\n101082|0.5\n101083|0.58333\n101084|0.33333\n101085|0.65278\n101086|0.58333\n101087|0.30556\n101088|0.56944\n101089|0.5\n101090|0.5\n101091|0.5\n101092|0.84722\n101093|0.75\n101094|0.73611\n101095|0.72222\n101096|0.84722\n101097|0.5\n101098|0.5\n101099|0.5\n101100|0.68056\n101101|0.5\n101102|0.5\n101103|0.25\n101104|0.56944\n101105|0.77778\n101106|0.58333\n101107|0.51389\n101108|0.56944\n101109|0.94444\n101110|0.43056\n101111|0.63889\n101112|0.72222\n101113|0.5\n101114|0.54167\n101115|0.5\n101116|0.80556\n101117|0.43056\n101118|0.86111\n101119|0.68056\n101120|0.22222\n101121|0.51389\n101122|0.48611\n101123|0.73611\n101124|0.52778\n101125|0.77778\n101126|0.58333\n101127|0.69444\n101128|0.73611\n101129|0.5\n101130|0.90278\n101131|0.68056\n101132|0.52778\n101133|0.55556\n101134|0.48611\n101135|0.83333\n101136|0.27778\n101137|0.38889\n101138|0.51389\n101139|0.65278\n101140|0.59722\n101141|0.58333\n101142|0.61111\n101143|0.5\n101144|0.61111\n101145|0.45833\n101146|0.63889\n101147|0.76389\n101148|0.76389\n101149|0.80556\n101150|0.625\n101151|0.66667\n101152|0.38889\n101153|0.72222\n101154|0.5\n101155|0.23611\n101156|0.625\n101157|0.375\n101158|0.66667\n101159|0.77778\n101160|0.45833\n101161|0.66667\n101162|0.33333\n101163|0.56944\n101164|0.61111\n101165|0.73611\n101166|0.5\n101167|0.52778\n101168|0.41667\n101169|0.625\n101170|0.56944\n101171|0.5\n101172|0.875\n101173|0.22222\n101174|0.66667\n101175|0.59722\n101176|0.5\n101177|0.43056\n101178|0.52778\n101179|0.51389\n101180|0.47222\n101181|0.59722\n101182|0.5\n101183|0.55556\n101184|0.66667\n101185|0.625\n101186|0.5\n101187|0.625\n101188|0.5\n101189|0.52778\n101190|0.51389\n101191|0.58333\n101192|0.5\n101193|0.33333\n101194|0.45833\n101195|0.5\n101196|0.45833\n101197|0.69444\n101198|0.76389\n101199|0.56944\n101200|0.19444\n101201|0.27778\n101202|0.19444\n101203|0.5\n101204|0.83333\n101205|0.88889\n101206|0.83333\n101207|0.125\n101208|0.51389\n101209|0.83333\n101210|0.61111\n101211|0.55556\n101212|0.55556\n101213|0.5\n101214|0.5\n101215|0.55556\n101216|0.5\n101217|0.5\n101218|0.51389\n101219|0.68056\n101220|0.5\n101221|0.5\n101222|0.58333\n101223|0.625\n101224|0.5\n101225|0.52778\n101226|0.29167\n101227|0.5\n101228|0.5\n101229|0.44444\n101230|0.40278\n101231|0.56944\n101232|0.51389\n101233|0.55556\n101234|0.5\n101235|0.5\n101236|0.5\n101237|0.5\n101238|0.41667\n101239|0.5\n101240|0.5\n101241|0.5\n101242|0.61111\n101243|0.38889\n101244|0.58333\n101245|0.5\n101246|0.51389\n101247|0.58333\n101248|0.68056\n101249|0.80556\n101250|0.73611\n101251|0.73611\n101252|0.5\n101253|0.5\n101254|0.5\n101255|0.5\n101256|0.59722\n101257|0.61111\n101258|0.38889\n101259|0.61111\n101260|0.5\n101261|0.5\n101262|0.5\n101263|0.5\n101264|0.45833\n101265|0.5\n101266|0.45833\n101267|0.43056\n101268|0.55556\n101269|0.56944\n101270|0.5\n101271|0.56944\n101272|0.55556\n101273|0.65278\n101274|0.5\n101275|0.56944\n101276|0.47222\n101277|0.5\n101278|0.5\n101279|0.51389\n101280|0.5\n101281|0.72222\n101282|0.69444\n101283|0.52778\n101284|0.61111\n101285|0.58333\n101286|0.61111\n101287|0.69444\n101288|0.77778\n101289|0.56944\n101290|0.81944\n101291|0.86111\n101292|0.55556\n101293|0.81944\n101294|0.88889\n101295|0.5\n101296|0.52778\n101297|0.52778\n101298|0.875\n101299|0.72222\n101300|0.43056\n101301|0.47222\n101302|0.33333\n101303|0.77778\n101304|0.5\n101305|0.5\n101306|0.66667\n101307|0.83333\n101308|0.66667\n101309|0.5\n101310|0.5\n101311|0.5\n101312|0.52778\n101313|0.40278\n101314|0.5\n101315|0.36111\n101316|0.69444\n101317|0.5\n101318|0.44444\n101319|0.38889\n101320|0.59722\n101321|0.52778\n101322|0.33333\n101323|0.41667\n101324|0.43056\n101325|0.34722\n101326|0.5\n101327|0.63889\n101328|0.59722\n101329|0.51389\n101330|0.5\n101331|0.68056\n101332|0.5\n101333|0.59722\n101334|0.69444\n101335|0.38889\n101336|0.43056\n101337|0.81944\n101338|0.31944\n101339|0.83333\n101340|0.38889\n101341|0.5\n101342|0.56944\n101343|0.76389\n101344|0.70833\n101345|0.5\n101346|0.36111\n101347|0.5\n101348|0.5\n101349|0.5\n101350|0.47222\n101351|0.77778\n101352|0.51389\n101353|0.5\n101354|0.5\n101355|0.5\n101356|0.40278\n101357|0.5\n101358|0.58333\n101359|0.44444\n101360|0.52778\n101361|0.5\n101362|0.38889\n101363|0.23611\n101364|0.33333\n101365|0.44444\n101366|0.41667\n101367|0.47222\n101368|0.59722\n101369|0.44444\n101370|0.5\n101371|0.58333\n101372|0.5\n101373|0.5\n101374|0.625\n101375|0.44444\n101376|0.54167\n101377|0.29167\n101378|0.30556\n101379|0.55556\n101380|0.5\n101381|0.48611\n101382|0.41667\n101383|0.51389\n101384|0.66667\n101385|0.80556\n101386|0.48611\n101387|0.36111\n101388|0.58333\n101389|0.69444\n101390|0.79167\n101391|0.76389\n101392|0.51389\n101393|0.25\n101394|0.79167\n101395|0.90278\n101396|0.72222\n101397|0.45833\n101398|0.70833\n101399|0.61111\n101400|0.69444\n101401|0.56944\n101402|0.72222\n101403|0.56944\n101404|0.5\n101405|0.47222\n101406|0.43056\n101407|0.63889\n101408|0.59722\n101409|0.27778\n101410|0.54167\n101411|0.84722\n101412|0.80556\n101413|0.63889\n101414|0.43056\n101415|0.5\n101416|0.5\n101417|0.88889\n101418|0.81944\n101419|0.59722\n101420|0.83333\n101421|0.81944\n101422|0.65278\n101423|0.72222\n101424|0.5\n101425|0.47222\n101426|0.41667\n101427|0.22222\n101428|0.56944\n101429|0.76389\n101430|0.5\n101431|0.58333\n101432|0.5\n101433|0.48611\n101434|0.36111\n101435|0.5\n101436|0.55556\n101437|0.5\n101438|0.23611\n101439|0.34722\n101440|0.54167\n101441|0.45833\n101442|0.23611\n101443|0.23611\n101444|0.45833\n101445|0.29167\n101446|0.375\n101447|0.52778\n101448|0.45833\n101449|0.40278\n101450|0.48611\n101451|0.68056\n101452|0.5\n101453|0.5\n101454|0.44444\n101455|0.5\n101456|0.5\n101457|0.55556\n101458|0.5\n101459|0.375\n101460|0.5\n101461|0.375\n101462|0.40278\n101463|0.63889\n101464|0.66667\n101465|0.125\n101466|0.48611\n101467|0.5\n101468|0.73611\n101469|0.69444\n101470|0.70833\n101471|0.55556\n101472|0.61111\n101473|0.48611\n101474|0.5\n101475|0.55556\n101476|0.5\n101477|0.38889\n101478|0.36111\n101479|0.81944\n101480|0.875\n101481|0.80556\n101482|0.72222\n101483|0.48611\n101484|0.375\n101485|0.66667\n101486|0.55556\n101487|0.375\n101488|0.27778\n101489|0.61111\n101490|0.5\n101491|0.44444\n101492|0.63889\n101493|0.63889\n101494|0.47222\n101495|0.47222\n101496|0.58333\n101497|0.625\n101498|0.73611\n101499|0.38889\n101500|0.27778\n101501|0.48611\n101502|0.52778\n101503|0.88889\n101504|0.69444\n101505|0.44444\n101506|0.069444\n101507|0.66667\n101508|0.91667\n101509|0.91667\n101510|0.055556\n101511|0.44444\n101512|0.77778\n101513|0.61111\n101514|0.44444\n101515|0.27778\n101516|0.47222\n101517|0.63889\n101518|0.77778\n101519|0.625\n101520|0.5\n101521|0.61111\n101522|0.55556\n101523|0.43056\n101524|0.625\n101525|0.75\n101526|0.25\n101527|0.75\n101528|0.72222\n101529|0.54167\n101530|0.77778\n101531|0.055556\n101532|0.18056\n101533|0.40278\n101534|0.30556\n101535|0.72222\n101536|0.70833\n101537|0.59722\n101538|0.72222\n101539|0.68056\n101540|0.69444\n101541|0.72222\n101542|0.72222\n101543|0.68056\n101544|0.76389\n101545|0.75\n101546|0.61111\n101547|0.47222\n101548|0.30556\n101549|0.72222\n101550|0.013889\n101551|0.66667\n101552|0.77778\n101553|0.69444\n101554|0.86111\n101555|0.81944\n101556|0.70833\n101557|0.76389\n101558|0.94444\n101559|0.79167\n101560|0.80556\n101561|0.63889\n101562|0.72222\n101563|0.77778\n101564|0.44444\n101565|0.41667\n101566|0.375\n101567|0.5\n101568|0.44444\n101569|0.58333\n101570|0.5\n101571|0.40278\n101572|0.43056\n101573|0.41667\n101574|0.63889\n101575|0.36111\n101576|0.44444\n101577|0.59722\n101578|0.56944\n101579|0.625\n101580|0.47222\n101581|0.52778\n101582|0.45833\n101583|0.70833\n101584|0.58333\n101585|0.51389\n101586|0.70833\n101587|0.18056\n101588|0.47222\n101589|0.16667\n101590|0.77778\n101591|0.77778\n101592|0.76389\n101593|0.77778\n101594|0.75\n101595|0.80556\n101596|0.29167\n101597|0.33333\n101598|0.11111\n101599|0.73611\n101600|0.29167\n101601|0.59722\n101602|0.86111\n101603|0.63889\n101604|0.63889\n101605|0.055556\n101606|0.69444\n101607|0.76389\n101608|0.61111\n101609|0.66667\n101610|0.75\n101611|0.76389\n101612|0.44444\n101613|0.76389\n101614|0.86111\n101615|0.80556\n101616|0.72222\n101617|0.65278\n101618|0.40278\n101619|0.72222\n101620|0.88889\n101621|0.29167\n101622|0.31944\n101623|0.75\n101624|0.76389\n101625|0.61111\n101626|0.76389\n101627|0.81944\n101628|0.68056\n101629|0.81944\n101630|0.66667\n101631|0.72222\n101632|0.5\n101633|0.79167\n101634|0.83333\n101635|0.83333\n101636|0.13889\n101637|0.51389\n101638|0.52778\n101639|0.68056\n101640|0.70833\n101641|0.40278\n101642|0.75\n101643|0.34722\n101644|0.52778\n101645|0.55556\n101646|0.81944\n101647|0.75\n101648|0.69444\n101649|0.65278\n101650|0.72222\n101651|0.79167\n101652|0.66667\n101653|0.36111\n101654|0.58333\n101655|0.73611\n101656|0.59722\n101657|0.52778\n101658|0.48611\n101659|0.86111\n101660|0.5\n101661|0.29167\n101662|0.18056\n101663|0.51389\n101664|0.41667\n101665|0.54167\n101666|0.77778\n101667|0.69444\n101668|0.23611\n101669|0.33333\n101670|0.55556\n101671|0.27778\n101672|0.36111\n101673|0.41667\n101674|0.56944\n101675|0.73611\n101676|0.77778\n101677|0.61111\n101678|0.52778\n101679|0.70833\n101680|0.77778\n101681|0.59722\n101682|0.41667\n101683|0.44444\n101684|0.25\n101685|0.44444\n101686|0.43056\n101687|0.51389\n101688|0.72222\n101689|0.59722\n101690|0.55556\n101691|0.68056\n101692|0.52778\n101693|0.30556\n101694|0.48611\n101695|0.75\n101696|0.25\n101697|0.125\n101698|0.15278\n101699|0.75\n101700|0.5\n101701|0.125\n101702|0.13889\n101703|0.22222\n101704|0.34722\n101705|0.45833\n101706|0.41667\n101707|0.36111\n101708|0.47222\n101709|0.44444\n101710|0.20833\n101711|0.43056\n101712|0.43056\n101713|0.45833\n101714|0.72222\n101715|0.76389\n101716|0.63889\n101717|0.41667\n101718|0.45833\n101719|0.79167\n101720|0.86111\n101721|0.44444\n101722|0.77778\n101723|0.5\n101724|0.29167\n101725|0.29167\n101726|0.36111\n101727|0.30556\n101728|0.63889\n101729|0.15278\n101730|0.36111\n101731|0.41667\n101732|0.23611\n101733|0.52778\n101734|0.65278\n101735|0.59722\n101736|0.56944\n101737|0.75\n101738|0.52778\n101739|0.52778\n101740|0.59722\n101741|0.375\n101742|0.30556\n101743|0.625\n101744|0.47222\n101745|0.69444\n101746|0.47222\n101747|0.59722\n101748|0.33333\n101749|0.27778\n101750|0.45833\n101751|0.75\n101752|0.625\n101753|0.77778\n101754|0.55556\n101755|0.76389\n101756|0.26389\n101757|0.47222\n101758|0.54167\n101759|0.56944\n101760|0.66667\n101761|0.56944\n101762|0.22222\n101763|0.38889\n101764|0.40278\n101765|0.19444\n101766|0.48611\n101767|0.58333\n101768|0.73611\n101769|0.56944\n101770|0.63889\n101771|0.63889\n101772|0.98611\n101773|0.625\n101774|0.51389\n101775|0.5\n101776|0.70833\n101777|0.45833\n101778|0.65278\n101779|0.40278\n101780|0.27778\n101781|0.125\n101782|0.25\n101783|0.31944\n101784|0.33333\n101785|0.73611\n101786|0.44444\n101787|0.16667\n101788|0.11111\n101789|0.55556\n101790|0.27778\n101791|0.52778\n101792|0.66667\n101793|0.38889\n101794|0.38889\n101795|0.48611\n101796|0.45833\n101797|0.22222\n101798|0.22222\n101799|0.22222\n101800|0.26389\n101801|0.33333\n101802|0.68056\n101803|0.58333\n101804|0.51389\n101805|0.59722\n101806|0.125\n101807|0.23611\n101808|0.22222\n101809|0.31944\n101810|0.41667\n101811|0.15278\n101812|0.43056\n101813|0.44444\n101814|0.069444\n101815|0.11111\n101816|0.30556\n101817|0.70833\n101818|0.59722\n101819|0.25\n101820|0.31944\n101821|0.22222\n101822|0.27778\n101823|0.43056\n101824|0.20833\n101825|0.25\n101826|0.43056\n101827|0.38889\n101828|0.13889\n101829|0.125\n101830|0.48611\n101831|0.43056\n101832|0.20833\n101833|0.41667\n101834|0.097222\n101835|0.40278\n101836|0.29167\n101837|0.41667\n101838|0.44444\n101839|0.5\n101840|0.5\n101841|0.23611\n101842|0.83333\n101843|0.5\n101844|0.68056\n101845|0.77778\n101846|0.069444\n101847|0.027778\n101848|0.44444\n101849|0.54167\n101850|0.48611\n101851|0.69444\n101852|0.68056\n101853|0.34722\n101854|0.25\n101855|0.25\n101856|0.56944\n101857|0.38889\n101858|0.27778\n101859|0.56944\n101860|0.44444\n101861|0.5\n101862|0.26389\n101863|0.041667\n101864|0.11111\n101865|0.52778\n101866|0.47222\n101867|0.27778\n101868|0.63889\n101869|0.375\n101870|0.33333\n101871|0.86111\n101872|0.5\n101873|0.47222\n101874|0.40278\n101875|0.15278\n101876|0.30556\n101877|0.69444\n101878|0.54167\n101879|0.5\n101880|0.56944\n101881|0.52778\n101882|0.51389\n101883|0.38889\n101884|0.055556\n101885|0.13889\n101886|0.29167\n101887|0.23611\n101888|0.18056\n101889|0.027778\n101890|0.44444\n101891|0.375\n101892|0.38889\n101893|0.27778\n101894|0.31944\n101895|0.15278\n101896|0.30556\n101897|0.34722\n101898|0.31944\n101899|0.097222\n101900|0.47222\n101901|0.66667\n101902|0.73611\n101903|0.5\n101904|0.44444\n101905|0.5\n101906|0.40278\n101907|0.44444\n101908|0.48611\n101909|0.15278\n101910|0.90278\n101911|0.72222\n101912|0.61111\n101913|0.77778\n101914|0.5\n101915|0.40278\n101916|0.33333\n101917|0.5\n101918|0.51389\n101919|0.45833\n101920|0.72222\n101921|0.73611\n101922|0.66667\n101923|0.65278\n101924|0.29167\n101925|0.65278\n101926|0.72222\n101927|0.33333\n101928|0.40278\n101929|0.44444\n101930|0.76389\n101931|0.80556\n101932|0.5\n101933|0.23611\n101934|0.25\n101935|0.79167\n101936|0.47222\n101937|0.90278\n101938|0.86111\n101939|0.83333\n101940|0.76389\n101941|0.52778\n101942|0.63889\n101943|0.625\n101944|0.48611\n101945|0.43056\n101946|0.34722\n101947|0.083333\n101948|0.15278\n101949|0.65278\n101950|0.51389\n101951|0.58333\n101952|0.65278\n101953|0.43056\n101954|0.13889\n101955|0.13889\n101956|0.54167\n101957|0.47222\n101958|0.47222\n101959|0.63889\n101960|0.5\n101961|0.72222\n101962|0.76389\n101963|0.055556\n101964|0.75\n101965|0.5\n101966|0.375\n101967|0.26389\n101968|0.56944\n101969|0.55556\n101970|0.27778\n101971|0.48611\n101972|0.76389\n101973|0.81944\n101974|0.66667\n101975|0.5\n101976|0.81944\n101977|0.59722\n101978|0.81944\n101979|0.22222\n101980|0.30556\n101981|0.375\n101982|0.83333\n101983|0.88889\n101984|0.55556\n101985|0.54167\n101986|0.38889\n101987|0.33333\n101988|0.61111\n101989|0.73611\n101990|0.65278\n101991|0.69444\n101992|0.625\n101993|0.59722\n101994|0.79167\n101995|0.70833\n101996|0.36111\n101997|0.45833\n101998|0.40278\n101999|0.55556\n102000|0.61111\n102001|0.36111\n102002|0.5\n102003|0.72222\n102004|0.66667\n102005|0.70833\n102006|0.81944\n102007|0.63889\n102008|0.65278\n102009|0.43056\n102010|0.38889\n102011|0.51389\n102012|0.5\n102013|0.61111\n102014|0.23611\n102015|0.43056\n102016|0.5\n102017|0.73611\n102018|0.55556\n102019|0.72222\n102020|0.72222\n102021|0.875\n102022|0.65278\n102023|0.22222\n102024|0.027778\n102025|0.45833\n102026|0.47222\n102027|0.5\n102028|0.55556\n102029|0.5\n102030|0.31944\n102031|0.48611\n102032|0.36111\n102033|0.41667\n102034|0.56944\n102035|0.5\n102036|0.55556\n102037|0.5\n102038|0.5\n102039|0.5\n102040|0.51389\n102041|0.5\n102042|0.45833\n102043|0.5\n102044|0.375\n102045|0.43056\n102046|0.41667\n102047|0.75\n102048|0.72222\n102049|0.19444\n102050|0.66667\n102051|0.625\n102052|0.25\n102053|0.15278\n102054|0.18056\n102055|0.083333\n102056|0.80556\n102057|0.77778\n102058|0.47222\n102059|0.76389\n102060|0.80556\n102061|0.5\n102062|0.48611\n102063|0.61111\n102064|0.63889\n102065|0.56944\n102066|0.80556\n102067|0.31944\n102068|0.59722\n102069|0.41667\n102070|0.33333\n102071|0.18056\n102072|0.5\n102073|0.81944\n102074|0.5\n102075|0.61111\n102076|0.52778\n102077|0.51389\n102078|0.18056\n102079|0.27778\n102080|0.52778\n102081|0.47222\n102082|0.375\n102083|0.81944\n102084|0.61111\n102085|0.66667\n102086|0.875\n102087|0.63889\n102088|0.47222\n102089|0.51389\n102090|0.55556\n102091|0.5\n102092|0.76389\n102093|0.5\n102094|0.51389\n102095|0.30556\n102096|0.75\n102097|0.5\n102098|0.5\n102099|0.65278\n102100|0.61111\n102101|0.54167\n102102|0.55556\n102103|0.61111\n102104|0.79167\n102105|0.88889\n102106|0.81944\n102107|0.66667\n102108|0.5\n102109|0.54167\n102110|0.5\n102111|0.51389\n102112|0.63889\n102113|0.15278\n102114|0.5\n102115|0.55556\n102116|0.16667\n102117|0.5\n102118|0.51389\n102119|0.36111\n102120|0.5\n102121|0.55556\n102122|0.29167\n102123|0.5\n102124|0.88889\n102125|0.52778\n102126|0.45833\n102127|0.5\n102128|0.45833\n102129|0.44444\n102130|0.125\n102131|0.5\n102132|0.65278\n102133|0.5\n102134|0.77778\n102135|0.5\n102136|0.5\n102137|0.5\n102138|0.52778\n102139|0.66667\n102140|0.5\n102141|0.15278\n102142|0.22222\n102143|0.66667\n102144|0.65278\n102145|0.5\n102146|0.61111\n102147|0.5\n102148|0.48611\n102149|0.91667\n102150|0.5\n102151|0.58333\n102152|0.5\n102153|0.66667\n102154|0.51389\n102155|0.79167\n102156|0.86111\n102157|0.59722\n102158|0.47222\n102159|0.38889\n102160|0.34722\n102161|0.77778\n102162|0.84722\n102163|0.61111\n102164|0.26389\n102165|0.34722\n102166|0.5\n102167|0.45833\n102168|0.5\n102169|0.5\n102170|0.44444\n102171|0.51389\n102172|0.41667\n102173|0.54167\n102174|0.41667\n102175|0.40278\n102176|0.55556\n102177|0.70833\n102178|0.61111\n102179|0.5\n102180|0.5\n102181|0.5\n102182|0.56944\n102183|0.54167\n102184|0.44444\n102185|0.625\n102186|0.5\n102187|0.38889\n102188|0.5\n102189|0.66667\n102190|0.55556\n102191|0.66667\n102192|0.75\n102193|0.44444\n102194|0.56944\n102195|0.52778\n102196|0.59722\n102197|0.5\n102198|0.48611\n102199|0.5\n102200|0.66667\n102201|0.375\n102202|0.5\n102203|0.19444\n102204|0.5\n102205|0.81944\n102206|0.5\n102207|0.18056\n102208|0.54167\n102209|0.30556\n102210|0.58333\n102211|0.5\n102212|0.56944\n102213|0.51389\n102214|0.51389\n102215|0.68056\n102216|0.54167\n102217|0.34722\n102218|0.77778\n102219|0.36111\n102220|0.88889\n102221|0.66667\n102222|0.56944\n102223|0.5\n102224|0.66667\n102225|0.38889\n102226|0.65278\n102227|0.33333\n102228|0.625\n102229|0.52778\n102230|0.51389\n102231|0.84722\n102232|0.65278\n102233|0.30556\n102234|0.11111\n102235|0.33333\n102236|0.75\n102237|0.20833\n102238|0.625\n102239|0.91667\n102240|0.54167\n102241|0.66667\n102242|0.75\n102243|0.68056\n102244|0.68056\n102245|0.72222\n102246|0.75\n102247|0.63889\n102248|0.72222\n102249|0.83333\n102250|0.80556\n102251|0.5\n102252|0.52778\n102253|0.36111\n102254|0.5\n102255|0.33333\n102256|0.33333\n102257|0.77778\n102258|0.22222\n102259|0.45833\n102260|0.29167\n102261|0.81944\n102262|0.80556\n102263|0.77778\n102264|0.33333\n102265|0.5\n102266|0.23611\n102267|0.63889\n102268|0.80556\n102269|0.33333\n102270|0.45833\n102271|0.68056\n102272|0.44444\n102273|0.72222\n102274|0.30556\n102275|0.44444\n102276|0.55556\n102277|0.41667\n102278|0.5\n102279|0.51389\n102280|0.51389\n102281|0.80556\n102282|0.125\n102283|0.58333\n102284|0.26389\n102285|0.5\n102286|0.26389\n102287|0.52778\n102288|0.86111\n102289|0.36111\n102290|0.20833\n102291|0.66667\n102292|0.86111\n102293|0.84722\n102294|0.88889\n102295|0.16667\n102296|0.65278\n102297|0.68056\n102298|0.84722\n102299|0.23611\n102300|0.5\n102301|0.55556\n102302|0.41667\n102303|0.63889\n102304|0.29167\n102305|0.94444\n102306|0.5\n102307|0.5\n102308|0.72222\n102309|0.26389\n102310|0.5\n102311|0.43056\n102312|0.79167\n102313|0.5\n102314|0.61111\n102315|0.69444\n102316|0.45833\n102317|0.77778\n102318|0.48611\n102319|0.66667\n102320|0.625\n102321|0.20833\n102322|0.83333\n102323|0.80556\n102324|0.75\n102325|0.30556\n102326|0.625\n102327|0.77778\n102328|0.83333\n102329|0.52778\n102330|0.77778\n102331|0.36111\n102332|0.25\n102333|0.63889\n102334|0.90278\n102335|0.68056\n102336|0.45833\n102337|0.23611\n102338|0.48611\n102339|0.30556\n102340|0.88889\n102341|0.31944\n102342|0.22222\n102343|0.20833\n102344|0.26389\n102345|0.5\n102346|0.79167\n102347|0.31944\n102348|0.43056\n102349|0.41667\n102350|0.77778\n102351|0.33333\n102352|0.73611\n102353|0.90278\n102354|0.5\n102355|0.19444\n102356|0.083333\n102357|0.23611\n102358|0.52778\n102359|0.70833\n102360|0.38889\n102361|0.58333\n102362|0.027778\n102363|0.23611\n102364|0.30556\n102365|0.66667\n102366|0.75\n102367|0.70833\n102368|0.5\n102369|0.5\n102370|0.79167\n102371|0.55556\n102372|0.81944\n102373|0.80556\n102374|0.375\n102375|0.5\n102376|0.5\n102377|0.55556\n102378|0.5\n102379|0.80556\n102380|0.44444\n102381|0.86111\n102382|0.48611\n102383|0.72222\n102384|0.5\n102385|0.63889\n102386|0.68056\n102387|0.5\n102388|0.63889\n102389|0.5\n102390|0.5\n102391|0.55556\n102392|0.27778\n102393|0.73611\n102394|0.55556\n102395|0.48611\n102396|0.41667\n102397|0.36111\n102398|0.44444\n102399|0.26389\n102400|0.5\n102401|0.5\n102402|0.72222\n102403|0.48611\n102404|0.36111\n102405|0.59722\n102406|0.77778\n102407|0.5\n102408|0.625\n102409|0.5\n102410|0.77778\n102411|0.44444\n102412|0.83333\n102413|0.52778\n102414|0.65278\n102415|0.56944\n102416|0.51389\n102417|0.52778\n102418|0.58333\n102419|0.40278\n102420|0.72222\n102421|0.79167\n102422|0.58333\n102423|0.73611\n102424|0.77778\n102425|0.5\n102426|0.44444\n102427|0.27778\n102428|0.55556\n102429|0.66667\n102430|0.47222\n102431|0.61111\n102432|0.54167\n102433|0.375\n102434|0.38889\n102435|0.69444\n102436|0.5\n102437|0.61111\n102438|0.63889\n102439|0.625\n102440|0.48611\n102441|0.63889\n102442|0.48611\n102443|0.65278\n102444|0.75\n102445|0.75\n102446|0.5\n102447|0.58333\n102448|0.44444\n102449|0.79167\n102450|0.5\n102451|0.63889\n102452|0.34722\n102453|0.5\n102454|0.625\n102455|0.30556\n102456|0.69444\n102457|0.63889\n102458|0.33333\n102459|0.59722\n102460|0.25\n102461|0.83333\n102462|0.41667\n102463|0.68056\n102464|0.5\n102465|0.63889\n102466|0.58333\n102467|0.38889\n102468|0.79167\n102469|0.65278\n102470|0.48611\n102471|0.76389\n102472|0.5\n102473|0.41667\n102474|0.68056\n102475|0.75\n102476|0.59722\n102477|0.55556\n102478|0.75\n102479|0.51389\n102480|0.63889\n102481|0.38889\n102482|0.27778\n102483|0.31944\n102484|0.54167\n102485|0.34722\n102486|0.15278\n102487|0.55556\n102488|0.16667\n102489|0.44444\n102490|0.61111\n102491|0.40278\n102492|0.41667\n102493|0.55556\n102494|0.26389\n102495|0.58333\n102496|0.45833\n102497|0.5\n102498|0.5\n102499|0.77778\n102500|0.45833\n102501|0.83333\n102502|0.66667\n102503|0.77778\n102504|0.80556\n102505|0.5\n102506|0.70833\n102507|0.51389\n102508|0.48611\n102509|0.38889\n102510|0.61111\n102511|0.61111\n102512|0.15278\n102513|0.54167\n102514|0.29167\n102515|0.52778\n102516|0.47222\n102517|0.65278\n102518|0.44444\n102519|0.76389\n102520|0.15278\n102521|0.29167\n102522|0.56944\n102523|0.45833\n102524|0.22222\n102525|0.16667\n102526|0.625\n102527|0.375\n102528|0.88889\n102529|0.56944\n102530|0.55556\n102531|0.58333\n102532|0.38889\n102533|0.70833\n102534|0.77778\n102535|0.625\n102536|0.44444\n102537|0.47222\n102538|0.80556\n102539|0.61111\n102540|0.52778\n102541|0.59722\n102542|0.5\n102543|0.19444\n102544|0.69444\n102545|0.55556\n102546|0.38889\n102547|0.72222\n102548|0.41667\n102549|0.58333\n102550|0.22222\n102551|0.47222\n102552|0.20833\n102553|0.58333\n102554|0.44444\n102555|0.45833\n102556|0.34722\n102557|0.44444\n102558|0.63889\n102559|0.5\n102560|0.069444\n102561|0.68056\n102562|0.65278\n102563|0.77778\n102564|0.55556\n102565|0.40278\n102566|0.5\n102567|0.5\n102568|0.43056\n102569|0.51389\n102570|0.59722\n102571|0.34722\n102572|0.41667\n102573|0.45833\n102574|0.48611\n102575|0.5\n102576|0.5\n102577|0.43056\n102578|0.40278\n102579|0.5\n102580|0.58333\n102581|0.63889\n102582|0.34722\n102583|0.70833\n102584|0.54167\n102585|0.66667\n102586|0.51389\n102587|0.61111\n102588|0.27778\n102589|0.29167\n102590|0.27778\n102591|0.41667\n102592|0.73611\n102593|0.72222\n102594|0.23611\n102595|0.88889\n102596|0.625\n102597|0.27778\n102598|0.63889\n102599|0.76389\n102600|0.56944\n102601|0.43056\n102602|0.47222\n102603|0.55556\n102604|0.15278\n102605|0.5\n102606|0.625\n102607|0.18056\n102608|0\n102609|0.70833\n102610|0.44444\n102611|0.75\n102612|0.59722\n102613|0.29167\n102614|0.73611\n102615|0.36111\n102616|0.66667\n102617|0.63889\n102618|0.73611\n102619|0.63889\n102620|0.76389\n102621|0.38889\n102622|0.22222\n102623|0.47222\n102624|0.65278\n102625|0.16667\n102626|0.69444\n102627|0.61111\n102628|0.63889\n102629|0.20833\n102630|0.48611\n102631|0.15278\n102632|0.65278\n102633|0.36111\n102634|0.18056\n102635|0.41667\n102636|0.66667\n102637|0.65278\n102638|0.16667\n102639|0.23611\n102640|0.75\n102641|0.77778\n102642|0\n102643|0.65278\n102644|0.54167\n102645|0.33333\n102646|0.79167\n102647|0.125\n102648|0.38889\n102649|0.83333\n102650|0.29167\n102651|0.083333\n102652|0.56944\n102653|0.36111\n102654|0.11111\n102655|0.77778\n102656|0.72222\n102657|0.44444\n102658|0.22222\n102659|0.375\n102660|0.27778\n102661|0.72222\n102662|0.31944\n102663|0.70833\n102664|0.69444\n102665|0.56944\n102666|0.16667\n102667|0.44444\n102668|0.25\n102669|0.625\n102670|0.79167\n102671|0.95833\n102672|0.77778\n102673|0.72222\n102674|0.375\n102675|0.15278\n102676|0.29167\n102677|0.38889\n102678|0.23611\n102679|0.72222\n102680|0.77778\n102681|0.72222\n102682|0.77778\n102683|0.36111\n102684|0.5\n102685|0.66667\n102686|0.43056\n102687|0.27778\n102688|0.66667\n102689|0.56944\n102690|0.625\n102691|0.29167\n102692|0.70833\n102693|0.40278\n102694|0.38889\n102695|0.45833\n102696|0.41667\n102697|0.52778\n102698|0.47222\n102699|0.375\n102700|0.55556\n102701|0.18056\n102702|0.68056\n102703|0.34722\n102704|0.27778\n102705|0.27778\n102706|0.66667\n102707|0.68056\n102708|0.43056\n102709|0.5\n102710|0.58333\n102711|0.5\n102712|0.38889\n102713|0.40278\n102714|0.81944\n102715|0.44444\n102716|0.70833\n102717|0.375\n102718|0.41667\n102719|0.5\n102720|0.69444\n102721|0.5\n102722|0.48611\n102723|0.43056\n102724|0.76389\n102725|0.48611\n102726|0.51389\n102727|0.90278\n102728|0.47222\n102729|0.83333\n102730|0.22222\n102731|0.5\n102732|0.76389\n102733|0.375\n102734|0.56944\n102735|0.73611\n102736|0.43056\n102737|0.45833\n102738|0.23611\n102739|0.55556\n102740|0.34722\n102741|0.31944\n102742|0.44444\n102743|0.47222\n102744|0.70833\n102745|0.69444\n102746|0.59722\n102747|0.66667\n102748|0.69444\n102749|0.45833\n102750|0.58333\n102751|0.375\n102752|0.81944\n102753|0.61111\n102754|0.43056\n102755|0.56944\n102756|0.48611\n102757|0.5\n102758|0.48611\n102759|0.19444\n102760|0.33333\n102761|0.31944\n102762|0.40278\n102763|0.27778\n102764|0.5\n102765|0.66667\n102766|0.54167\n102767|0.51389\n102768|0.5\n102769|0.43056\n102770|0.375\n102771|0.23611\n102772|0.72222\n102773|0.68056\n102774|0.44444\n102775|0.083333\n102776|0.20833\n102777|0.55556\n102778|0.625\n102779|0.069444\n102780|0.097222\n102781|0.041667\n102782|0.23611\n102783|0.41667\n102784|0.27778\n102785|0.80556\n102786|0.5\n102787|0.44444\n102788|0.5\n102789|0.80556\n102790|0.38889\n102791|0.52778\n102792|0.70833\n102793|0.5\n102794|0.54167\n102795|0.33333\n102796|0.69444\n102797|0.55556\n102798|0.73611\n102799|0.5\n102800|0.5\n102801|0.45833\n102802|0.375\n102803|0.47222\n102804|0.68056\n102805|0.75\n102806|0.61111\n102807|0.66667\n102808|0.5\n102809|0.63889\n102810|0.65278\n102811|0.66667\n102812|0.66667\n102813|0.54167\n102814|0.55556\n102815|0.44444\n102816|0.18056\n102817|0.69444\n102818|0.29167\n102819|0.5\n102820|0.51389\n102821|0.69444\n102822|0.38889\n102823|0.45833\n102824|0.79167\n102825|0.72222\n102826|0.76389\n102827|0.5\n102828|0.5\n102829|0.47222\n102830|0.375\n102831|0.55556\n102832|0.68056\n102833|0.47222\n102834|0.79167\n102835|0.34722\n102836|0.5\n102837|0.51389\n102838|0.63889\n102839|0.76389\n102840|0.72222\n102841|0.65278\n102842|0.55556\n102843|0.18056\n102844|0.54167\n102845|0.25\n102846|0.5\n102847|0.36111\n102848|0.68056\n102849|0.26389\n102850|0.59722\n102851|0.66667\n102852|0.44444\n102853|0.22222\n102854|0.76389\n102855|0.58333\n102856|0.38889\n102857|0.63889\n102858|0.5\n102859|0.80556\n102860|0.31944\n102861|0.58333\n102862|0.65278\n102863|0.81944\n102864|0.44444\n102865|0.16667\n102866|0.77778\n102867|0.625\n102868|0.30556\n102869|0.5\n102870|0.58333\n102871|0.72222\n102872|0.58333\n102873|0.76389\n102874|0.75\n102875|0.69444\n102876|0.875\n102877|0.79167\n102878|0.5\n102879|0.77778\n102880|0.77778\n102881|0.75\n102882|0.90278\n102883|0.83333\n102884|0.33333\n102885|0.81944\n102886|0.33333\n102887|0.72222\n102888|0.79167\n102889|0.34722\n102890|0.31944\n102891|0.72222\n102892|0.63889\n102893|0.34722\n102894|0.47222\n102895|0.68056\n102896|0.91667\n102897|0.63889\n102898|0.125\n102899|0.31944\n102900|0.72222\n102901|0.73611\n102902|0.26389\n102903|0.13889\n102904|0.16667\n102905|0.73611\n102906|0.27778\n102907|0.73611\n102908|0.63889\n102909|0.75\n102910|0.097222\n102911|0.77778\n102912|0.16667\n102913|0.48611\n102914|0.63889\n102915|0.5\n102916|0.34722\n102917|0.66667\n102918|0.80556\n102919|0.36111\n102920|0.23611\n102921|0.11111\n102922|0.16667\n102923|0.375\n102924|0.75\n102925|0.93056\n102926|0.20833\n102927|0.22222\n102928|0.44444\n102929|0.36111\n102930|0.58333\n102931|0.79167\n102932|0.375\n102933|0.41667\n102934|0.16667\n102935|0.48611\n102936|0.36111\n102937|0.31944\n102938|0.55556\n102939|0.77778\n102940|0.5\n102941|0.38889\n102942|0.43056\n102943|0.55556\n102944|0.77778\n102945|0.88889\n102946|0.19444\n102947|0.69444\n102948|0.48611\n102949|0.48611\n102950|0.45833\n102951|0.19444\n102952|0.33333\n102953|0.23611\n102954|0.055556\n102955|0.68056\n102956|0.43056\n102957|0.18056\n102958|0.68056\n102959|0.56944\n102960|0.84722\n102961|0.63889\n102962|0.23611\n102963|0.083333\n102964|0.47222\n102965|0.5\n102966|0.38889\n102967|0.77778\n102968|0.23611\n102969|0.51389\n102970|0.5\n102971|0.51389\n102972|0.5\n102973|0.54167\n102974|0.54167\n102975|0.59722\n102976|0.79167\n102977|0.20833\n102978|0.40278\n102979|0.86111\n102980|0.58333\n102981|0.22222\n102982|0.41667\n102983|0.44444\n102984|0.33333\n102985|0.055556\n102986|0.61111\n102987|0.29167\n102988|0.75\n102989|0.59722\n102990|0.16667\n102991|0.31944\n102992|0.58333\n102993|0.44444\n102994|0.625\n102995|0.20833\n102996|0.56944\n102997|0.88889\n102998|0.69444\n102999|0.5\n103000|0.68056\n103001|0.5\n103002|0.58333\n103003|0.75\n103004|0.70833\n103005|0.19444\n103006|0.76389\n103007|0.5\n103008|0.81944\n103009|0.375\n103010|0.83333\n103011|0.69444\n103012|0.80556\n103013|0.30556\n103014|0.5\n103015|0.51389\n103016|0.44444\n103017|0.72222\n103018|0.59722\n103019|0.56944\n103020|0.47222\n103021|0.48611\n103022|0.63889\n103023|0.625\n103024|0.54167\n103025|0.54167\n103026|0.88889\n103027|0.65278\n103028|0.31944\n103029|0.5\n103030|0.84722\n103031|0.54167\n103032|0.26389\n103033|0.27778\n103034|0.29167\n103035|0.5\n103036|0.23611\n103037|0.25\n103038|0.72222\n103039|0.70833\n103040|0.20833\n103041|0.70833\n103042|0.54167\n103043|0.66667\n103044|0.63889\n103045|0.72222\n103046|0.88889\n103047|0.23611\n103048|0.34722\n103049|0.68056\n103050|0.33333\n103051|0.76389\n103052|0.5\n103053|0.5\n103054|0.38889\n103055|0.65278\n103056|0.33333\n103057|0.5\n103058|0.33333\n103059|0.16667\n103060|0.29167\n103061|0.5\n103062|0.5\n103063|0.5\n103064|0.45833\n103065|0.5\n103066|0.52778\n103067|0.40278\n103068|0.16667\n103069|0.40278\n103070|0.61111\n103071|0.58333\n103072|0.56944\n103073|0.5\n103074|0.5\n103075|0.5\n103076|0.5\n103077|0.34722\n103078|0.5\n103079|0.63889\n103080|0.69444\n103081|0.45833\n103082|0.41667\n103083|0.5\n103084|0.77778\n103085|0.18056\n103086|0.44444\n103087|0.20833\n103088|0.19444\n103089|0.30556\n103090|0.875\n103091|0.61111\n103092|0.77778\n103093|0.38889\n103094|0.77778\n103095|0.29167\n103096|0.75\n103097|0.56944\n103098|0.5\n103099|0.5\n103100|0.44444\n103101|0.59722\n103102|0.5\n103103|0.5\n103104|0.44444\n103105|0.43056\n103106|0.5\n103107|0.58333\n103108|0.72222\n103109|0.45833\n103110|0.25\n103111|0.26389\n103112|0.25\n103113|0.75\n103114|0.375\n103115|0.5\n103116|0.375\n103117|0.5\n103118|0.5\n103119|0.68056\n103120|0.5\n103121|0.20833\n103122|0.52778\n103123|0.5\n103124|0.54167\n103125|0.75\n103126|0.5\n103127|0.56944\n103128|0.54167\n103129|0.63889\n103130|0.80556\n103131|0.5\n103132|0.5\n103133|0.5\n103134|0.5\n103135|0.68056\n103136|0.5\n103137|0.5\n103138|0.5\n103139|0.013889\n103140|0.56944\n103141|0.5\n103142|0.5\n103143|0.79167\n103144|0.56944\n103145|0.77778\n103146|0.90278\n103147|0.125\n103148|0.38889\n103149|0.59722\n103150|0.5\n103151|0.5\n103152|0.5\n103153|0.5\n103154|0.5\n103155|0.5\n103156|0.5\n103157|0.5\n103158|0.18056\n103159|0.61111\n103160|0.5\n103161|0.5\n103162|0.55556\n103163|0.27778\n103164|0.59722\n103165|0.13889\n103166|0.44444\n103167|0.55556\n103168|0.5\n103169|0.5\n103170|0.5\n103171|0.55556\n103172|0.59722\n103173|0.51389\n103174|0.5\n103175|0.48611\n103176|0.66667\n103177|0.097222\n103178|0.68056\n103179|0.43056\n103180|0.55556\n103181|0.31944\n103182|0.5\n103183|0.45833\n103184|0.11111\n103185|0.027778\n103186|0.875\n103187|0.45833\n103188|0.68056\n103189|0.81944\n103190|0.40278\n103191|0.86111\n103192|0.33333\n103193|0.69444\n103194|0.65278\n103195|0.72222\n103196|0.65278\n103197|0.16667\n103198|0.625\n103199|0.52778\n103200|0.76389\n103201|0.38889\n103202|0.58333\n103203|0.84722\n103204|0.76389\n103205|0.80556\n103206|0.69444\n103207|0.27778\n103208|0.72222\n103209|0.95833\n103210|0.47222\n103211|0.40278\n103212|0.66667\n103213|0.027778\n103214|0.43056\n103215|0.33333\n103216|0.94444\n103217|0.65278\n103218|0.77778\n103219|0.31944\n103220|0.52778\n103221|0.11111\n103222|0.47222\n103223|0.13889\n103224|0.875\n103225|0.23611\n103226|0.59722\n103227|0.73611\n103228|0.44444\n103229|0.51389\n103230|0.68056\n103231|0.38889\n103232|0.20833\n103233|0.41667\n103234|0.83333\n103235|0.84722\n103236|0\n103237|0.70833\n103238|0.625\n103239|0.36111\n103240|0.625\n103241|0.625\n103242|0.51389\n103243|0.22222\n103244|0.25\n103245|0.16667\n103246|0.66667\n103247|0.73611\n103248|0.55556\n103249|0.125\n103250|0.27778\n103251|0.26389\n103252|0.31944\n103253|0.13889\n103254|0.027778\n103255|0.16667\n103256|0.27778\n103257|0.73611\n103258|0.56944\n103259|0.5\n103260|0.5\n103261|0.55556\n103262|0.5\n103263|0.58333\n103264|0.48611\n103265|0.56944\n103266|0.5\n103267|0.41667\n103268|0.5\n103269|0.59722\n103270|0.5\n103271|0.5\n103272|0.5\n103273|0.68056\n103274|0.5\n103275|0.59722\n103276|0.5\n103277|0.58333\n103278|0.55556\n103279|0.5\n103280|0.48611\n103281|0.5\n103282|0.5\n103283|0.5\n103284|0.5\n103285|0.61111\n103286|0.5\n103287|0.5\n103288|0.51389\n103289|0.5\n103290|0.61111\n103291|0.5\n103292|0.5\n103293|0.5\n103294|0.58333\n103295|0.52778\n103296|0.5\n103297|0.56944\n103298|0.5\n103299|0.47222\n103300|0.5\n103301|0.63889\n103302|0.56944\n103303|0.52778\n103304|0.5\n103305|0.47222\n103306|0.5\n103307|0.5\n103308|0.59722\n103309|0.61111\n103310|0.5\n103311|0.44444\n103312|0.55556\n103313|0.51389\n103314|0.5\n103315|0.41667\n103316|0.45833\n103317|0.23611\n103318|0.63889\n103319|0.29167\n103320|0.65278\n103321|0.33333\n103322|0.5\n103323|0.5\n103324|0.5\n103325|0.5\n103326|0.5\n103327|0.5\n103328|0.5\n103329|0.5\n103330|0.5\n103331|0.58333\n103332|0.5\n103333|0.5\n103334|0.30556\n103335|0.58333\n103336|0.5\n103337|0.5\n103338|0.5\n103339|0.5\n103340|0.5\n103341|0.5\n103342|0.5\n103343|0.36111\n103344|0.55556\n103345|0.13889\n103346|0.5\n103347|0.36111\n103348|0.63889\n103349|0.69444\n103350|0.48611\n103351|0.5\n103352|0.5\n103353|0.38889\n103354|0.5\n103355|0.16667\n103356|0.34722\n103357|0.16667\n103358|0.5\n103359|0.77778\n103360|0.54167\n103361|0.69444\n103362|0.5\n103363|0.33333\n103364|0.5\n103365|0.055556\n103366|0.5\n103367|0.19444\n103368|0.5\n103369|0.5\n103370|0.44444\n103371|0.59722\n103372|0.48611\n103373|0.51389\n103374|0.51389\n103375|0.44444\n103376|0.69444\n103377|0.48611\n103378|0.36111\n103379|0.55556\n103380|0.52778\n103381|0.375\n103382|0.51389\n103383|0.45833\n103384|0.56944\n103385|0.43056\n103386|0.38889\n103387|0.625\n103388|0.25\n103389|0.5\n103390|0.58333\n103391|0.5\n103392|0.23611\n103393|0.055556\n103394|0.26389\n103395|0.23611\n103396|0.11111\n103397|0.55556\n103398|0.66667\n103399|0.5\n103400|0.47222\n103401|0.375\n103402|0.43056\n103403|0.22222\n103404|0.31944\n103405|0.375\n103406|0.22222\n103407|0.40278\n103408|0.40278\n103409|0.33333\n103410|0.31944\n103411|0.36111\n103412|0.68056\n103413|0.79167\n103414|0.66667\n103415|0.65278\n103416|0.56944\n103417|0.55556\n103418|0.22222\n103419|0.70833\n103420|0.69444\n103421|0.65278\n103422|0.34722\n103423|0.34722\n103424|0.59722\n103425|0.66667\n103426|0.875\n103427|0.72222\n103428|0.54167\n103429|0.61111\n103430|0.69444\n103431|0.77778\n103432|0.70833\n103433|0.63889\n103434|0.27778\n103435|0.30556\n103436|0.30556\n103437|0.125\n103438|0.069444\n103439|0.55556\n103440|0.58333\n103441|0.875\n103442|0.88889\n103443|0.83333\n103444|0.83333\n103445|0.88889\n103446|0.69444\n103447|0.70833\n103448|0.80556\n103449|0.72222\n103450|0.83333\n103451|0.77778\n103452|0.91667\n103453|0.55556\n103454|0.76389\n103455|0.76389\n103456|0.88889\n103457|0.43056\n103458|0.56944\n103459|0.33333\n103460|0.72222\n103461|0.83333\n103462|0.90278\n103463|0.625\n103464|0.84722\n103465|0.76389\n103466|0.86111\n103467|0.83333\n103468|0.72222\n103469|0.81944\n103470|0.80556\n103471|0.58333\n103472|0.72222\n103473|0.94444\n103474|0.83333\n103475|0.83333\n103476|0.61111\n103477|0.76389\n103478|0.77778\n103479|0.61111\n103480|0.80556\n103481|0.375\n103482|0.73611\n103483|0.40278\n103484|0.45833\n103485|0.625\n103486|0.83333\n103487|0.88889\n103488|0.88889\n103489|0.93056\n103490|0.59722\n103491|0.70833\n103492|0.93056\n103493|0.81944\n103494|0.75\n103495|0.83333\n103496|0.77778\n103497|0.875\n103498|0.79167\n103499|0.84722\n103500|0.76389\n103501|0.80556\n103502|0.72222\n103503|0.58333\n103504|0.69444\n103505|0.48611\n103506|0.72222\n103507|0.72222\n103508|0.69444\n103509|0.72222\n103510|0.73611\n103511|0.68056\n103512|0.69444\n103513|0.34722\n103514|0.91667\n103515|0.83333\n103516|0.69444\n103517|0.83333\n103518|0.76389\n103519|0.86111\n103520|0.75\n103521|0.90278\n103522|0.33333\n103523|0.70833\n103524|0.68056\n103525|0.61111\n103526|0.51389\n103527|0.51389\n103528|0.56944\n103529|0.68056\n103530|0.45833\n103531|0.30556\n103532|0.16667\n103533|0.45833\n103534|0.66667\n103535|0.18056\n103536|0.25\n103537|0.59722\n103538|0.83333\n103539|0.38889\n103540|0.25\n103541|0.27778\n103542|0.75\n103543|0.59722\n103544|0.80556\n103545|0.83333\n103546|0.34722\n103547|0.25\n103548|0.59722\n103549|0.86111\n103550|0.81944\n103551|0.79167\n103552|0.45833\n103553|0.56944\n103554|0.56944\n103555|0.5\n103556|0.5\n103557|0.26389\n103558|0.5\n103559|0.55556\n103560|0.69444\n103561|0.58333\n103562|0.52778\n103563|0.69444\n103564|0.5\n103565|0.5\n103566|0.29167\n103567|0.33333\n103568|0.36111\n103569|0.16667\n103570|0.11111\n103571|0.30556\n103572|0.45833\n103573|0.23611\n103574|0.45833\n103575|0.38889\n103576|0.61111\n103577|0.66667\n103578|0.61111\n103579|0.69444\n103580|0.77778\n103581|0.88889\n103582|0.29167\n103583|0.38889\n103584|0.13889\n103585|0.36111\n103586|0.75\n103587|0.66667\n103588|0.83333\n103589|0.72222\n103590|0.83333\n103591|0.66667\n103592|0.81944\n103593|0.72222\n103594|0.84722\n103595|0.93056\n103596|0.81944\n103597|0.38889\n103598|0.16667\n103599|0.30556\n103600|0.22222\n103601|0.16667\n103602|0.76389\n103603|0.80556\n103604|0.875\n103605|0.59722\n103606|0.88889\n103607|0.80556\n103608|0.83333\n103609|0.5\n103610|0.69444\n103611|0.68056\n103612|0.77778\n103613|0.83333\n103614|0.80556\n103615|0.56944\n103616|0.38889\n103617|0.31944\n103618|0.34722\n103619|0.72222\n103620|0.76389\n103621|0.79167\n103622|0.93056\n103623|0.80556\n103624|0.83333\n103625|0.83333\n103626|0.84722\n103627|0.86111\n103628|0.75\n103629|0.69444\n103630|0.61111\n103631|0.81944\n103632|0.80556\n103633|0.63889\n103634|0.84722\n103635|0.73611\n103636|0.83333\n103637|0.76389\n103638|0.65278\n103639|0.56944\n103640|0.63889\n103641|0.75\n103642|0.65278\n103643|0.48611\n103644|0.47222\n103645|0.54167\n103646|0.83333\n103647|0.75\n103648|0.75\n103649|0.58333\n103650|0.61111\n103651|0.59722\n103652|0.5\n103653|0.77778\n103654|0.58333\n103655|0.80556\n103656|0.75\n103657|0.79167\n103658|0.77778\n103659|0.75\n103660|0.79167\n103661|0.34722\n103662|0.15278\n103663|0.70833\n103664|0.68056\n103665|0.77778\n103666|0.625\n103667|0.61111\n103668|0.45833\n103669|0.34722\n103670|0.45833\n103671|0.22222\n103672|0.19444\n103673|0.11111\n103674|0.5\n103675|0.48611\n103676|0.45833\n103677|0.29167\n103678|0.40278\n103679|0.72222\n103680|0.69444\n103681|0.79167\n103682|0.19444\n103683|0.66667\n103684|0.68056\n103685|0.79167\n103686|0.73611\n103687|0.72222\n103688|0.76389\n103689|0.20833\n103690|0.18056\n103691|0.29167\n103692|0.18056\n103693|0.625\n103694|0.875\n103695|0.95833\n103696|0.80556\n103697|0.84722\n103698|0.73611\n103699|0.56944\n103700|0.72222\n103701|0.31944\n103702|0.055556\n103703|0.51389\n103704|0.36111\n103705|0.16667\n103706|0.63889\n103707|0.56944\n103708|0.69444\n103709|0.55556\n103710|0.51389\n103711|0.69444\n103712|0.51389\n103713|0.625\n103714|0.5\n103715|0.33333\n103716|0.34722\n103717|0.63889\n103718|0.51389\n103719|0.77778\n103720|0.66667\n103721|0.83333\n103722|0.625\n103723|0.44444\n103724|0.55556\n103725|0.66667\n103726|0.125\n103727|0.63889\n103728|0.81944\n103729|0.94444\n103730|0.77778\n103731|0.84722\n103732|0.40278\n103733|0.11111\n103734|0.26389\n103735|0.25\n103736|0.5\n103737|0.31944\n103738|0.86111\n103739|0.86111\n103740|0.56944\n103741|0.80556\n103742|0.76389\n103743|0.33333\n103744|0.625\n103745|0.19444\n103746|0.097222\n103747|0.125\n103748|0.81944\n103749|0.84722\n103750|0.45833\n103751|0.22222\n103752|0.31944\n103753|0.33333\n103754|0.38889\n103755|0.58333\n103756|0.68056\n103757|0.52778\n103758|0.84722\n103759|0.875\n103760|0.23611\n103761|0.375\n103762|0.375\n103763|0.44444\n103764|0.15278\n103765|0.625\n103766|0.59722\n103767|0.61111\n103768|0.44444\n103769|0.79167\n103770|0.79167\n103771|0.76389\n103772|0.52778\n103773|0.83333\n103774|0.5\n103775|0.44444\n103776|0.625\n103777|0.40278\n103778|0.5\n103779|0.59722\n103780|0.40278\n103781|0.29167\n103782|0.72222\n103783|0.27778\n103784|0.73611\n103785|0.66667\n103786|0.70833\n103787|0.66667\n103788|0.40278\n103789|0.34722\n103790|0.76389\n103791|0.625\n103792|0.69444\n103793|0.375\n103794|0.44444\n103795|0.61111\n103796|0.83333\n103797|0.79167\n103798|0.5\n103799|0.20833\n103800|0.80556\n103801|0.77778\n103802|0.83333\n103803|0.61111\n103804|0.63889\n103805|0.65278\n103806|0.83333\n103807|0.83333\n103808|0.83333\n103809|0.83333\n103810|0.88889\n103811|0.43056\n103812|0.36111\n103813|0.59722\n103814|0.31944\n103815|0.51389\n103816|0.5\n103817|0.625\n103818|0.79167\n103819|0.77778\n103820|0.66667\n103821|0.27778\n103822|0.61111\n103823|0.52778\n103824|0.83333\n103825|0.91667\n103826|0.77778\n103827|0.70833\n103828|0.31944\n103829|0.23611\n103830|0.86111\n103831|0.73611\n103832|0.77778\n103833|0.63889\n103834|0.72222\n103835|0.69444\n103836|0.77778\n103837|0.77778\n103838|0.33333\n103839|0.81944\n103840|0.88889\n103841|0.81944\n103842|0.86111\n103843|0.70833\n103844|0.68056\n103845|0.83333\n103846|0.68056\n103847|0.84722\n103848|0.84722\n103849|0.625\n103850|0.90278\n103851|0.52778\n103852|0.52778\n103853|0.65278\n103854|0.79167\n103855|0.66667\n103856|0.5\n103857|0.69444\n103858|0.61111\n103859|0.72222\n103860|0.23611\n103861|0.27778\n103862|0.097222\n103863|0.097222\n103864|0.5\n103865|0.5\n103866|0.77778\n103867|0.097222\n103868|0.13889\n103869|0.22222\n103870|0.30556\n103871|0.30556\n103872|0.61111\n103873|0.875\n103874|0.61111\n103875|0.55556\n103876|0.33333\n103877|0.61111\n103878|0.55556\n103879|0.61111\n103880|0.45833\n103881|0.5\n103882|0.51389\n103883|0.58333\n103884|0.65278\n103885|0.84722\n103886|0.79167\n103887|0.75\n103888|0.73611\n103889|0.79167\n103890|0.79167\n103891|0.70833\n103892|0.80556\n103893|0.75\n103894|0.55556\n103895|0.51389\n103896|0.36111\n103897|0.81944\n103898|0.76389\n103899|0.70833\n103900|0.875\n103901|0.875\n103902|0.79167\n103903|0.81944\n103904|0.66667\n103905|0.81944\n103906|0.40278\n103907|0.22222\n103908|0.22222\n103909|0.59722\n103910|0.56944\n103911|0.48611\n103912|0.58333\n103913|0.5\n103914|0.77778\n103915|0.79167\n103916|0.81944\n103917|0.625\n103918|0.61111\n103919|0.26389\n103920|0.61111\n103921|0.68056\n103922|0.83333\n103923|0.80556\n103924|0.625\n103925|0.81944\n103926|0.77778\n103927|0.33333\n103928|0.36111\n103929|0.40278\n103930|0.22222\n103931|0.63889\n103932|0.63889\n103933|0.47222\n103934|0.52778\n103935|0.73611\n103936|0.51389\n103937|0.083333\n103938|0.80556\n103939|0.79167\n103940|0.93056\n103941|0.68056\n103942|0.80556\n103943|0.40278\n103944|0.5\n103945|0.65278\n103946|0.11111\n103947|0.375\n103948|0.25\n103949|0.56944\n103950|0.52778\n103951|0.625\n103952|0.72222\n103953|0.72222\n103954|0.83333\n103955|0.70833\n103956|0.83333\n103957|0.88889\n103958|0.76389\n103959|0.69444\n103960|0.63889\n103961|0.79167\n103962|0.68056\n103963|0.90278\n103964|0.91667\n103965|0.86111\n103966|0.86111\n103967|0.83333\n103968|0.69444\n103969|0.59722\n103970|0.375\n103971|0.31944\n103972|0.45833\n103973|0.59722\n103974|0.625\n103975|0.76389\n103976|0.86111\n103977|0.5\n103978|0.43056\n103979|0.48611\n103980|0.58333\n103981|0.61111\n103982|0.52778\n103983|0.73611\n103984|0.77778\n103985|0.72222\n103986|0.59722\n103987|0.41667\n103988|0.38889\n103989|0.72222\n103990|0.93056\n103991|0.86111\n103992|0.30556\n103993|0.27778\n103994|0.66667\n103995|0.58333\n103996|0.80556\n103997|0.75\n103998|0.79167\n103999|0.75\n104000|0.52778\n104001|0.75\n104002|0.75\n104003|0.90278\n104004|0.73611\n104005|0.55556\n104006|0.70833\n104007|0.84722\n104008|0.80556\n104009|0.5\n104010|0.59722\n104011|0.45833\n104012|0.84722\n104013|0.5\n104014|0.83333\n104015|0.88889\n104016|0.81944\n104017|0.93056\n104018|0.91667\n104019|0.43056\n104020|0.44444\n104021|0.68056\n104022|0.54167\n104023|0.81944\n104024|0.81944\n104025|0.34722\n104026|0.083333\n104027|0.20833\n104028|0.5\n104029|0.48611\n104030|0.76389\n104031|0.81944\n104032|0.55556\n104033|0.61111\n104034|0.36111\n104035|0.38889\n104036|0.58333\n104037|0.77778\n104038|0.55556\n104039|0.59722\n104040|0.5\n104041|0.61111\n104042|0.5\n104043|0.5\n104044|0.44444\n104045|0.58333\n104046|0.56944\n104047|0.5\n104048|0.55556\n104049|0.41667\n104050|0.79167\n104051|0.79167\n104052|0.65278\n104053|0.66667\n104054|0\n104055|0.51389\n104056|0.47222\n104057|0.61111\n104058|0.36111\n104059|0.30556\n104060|0.22222\n104061|0.55556\n104062|0.38889\n104063|0.43056\n104064|0.52778\n104065|0.5\n104066|0.18056\n104067|0.5\n104068|0.52778\n104069|0.59722\n104070|0.45833\n104071|0.5\n104072|0.47222\n104073|0.125\n104074|0.55556\n104075|0.81944\n104076|0.5\n104077|0.51389\n104078|0.23611\n104079|0.5\n104080|0.5\n104081|0.65278\n104082|0.59722\n104083|0.54167\n104084|0.80556\n104085|0.5\n104086|0.5\n104087|0.5\n104088|0.5\n104089|0.5\n104090|0.5\n104091|0.61111\n104092|0.31944\n104093|0.51389\n104094|0.625\n104095|0.59722\n104096|0.65278\n104097|0.77778\n104098|0.36111\n104099|0.31944\n104100|0.29167\n104101|0.70833\n104102|0.34722\n104103|0.15278\n104104|0.5\n104105|0.5\n104106|0.5\n104107|0.5\n104108|0.5\n104109|0.48611\n104110|0.30556\n104111|0.625\n104112|0.5\n104113|0.5\n104114|0.65278\n104115|0.61111\n104116|0.5\n104117|0.38889\n104118|0.5\n104119|0.40278\n104120|0.44444\n104121|0.56944\n104122|0.52778\n104123|0.5\n104124|0.72222\n104125|0.45833\n104126|0.81944\n104127|0.5\n104128|0.65278\n104129|0.75\n104130|0.48611\n104131|0.27778\n104132|0.52778\n104133|0.76389\n104134|0.83333\n104135|0.61111\n104136|0.56944\n104137|0.375\n104138|0.47222\n104139|0.5\n104140|0.5\n104141|0.36111\n104142|0.33333\n104143|0.52778\n104144|0.45833\n104145|0.31944\n104146|0.48611\n104147|0.16667\n104148|0.5\n104149|0.45833\n104150|0.41667\n104151|0.66667\n104152|0.63889\n104153|0.75\n104154|0.5\n104155|0.72222\n104156|0.73611\n104157|0.59722\n104158|0.45833\n104159|0.48611\n104160|0.44444\n104161|0.55556\n104162|0.5\n104163|0.5\n104164|0.44444\n104165|0.5\n104166|0.38889\n104167|0.47222\n104168|0.56944\n104169|0.19444\n104170|0.30556\n104171|0.375\n104172|0.55556\n104173|0.68056\n104174|0.45833\n104175|0.5\n104176|0.51389\n104177|0.81944\n104178|0.75\n104179|0.41667\n104180|0.38889\n104181|0.38889\n104182|0.76389\n104183|0.36111\n104184|0.41667\n104185|0.61111\n104186|0.44444\n104187|0.48611\n104188|0.30556\n104189|0.38889\n104190|0.77778\n104191|0.41667\n104192|0.52778\n104193|0.41667\n104194|0.70833\n104195|0.72222\n104196|0.51389\n104197|0.55556\n104198|0.16667\n104199|0.5\n104200|0.5\n104201|0.55556\n104202|0.63889\n104203|0.61111\n104204|0.5\n104205|0.52778\n104206|0.22222\n104207|0.59722\n104208|0.55556\n104209|0.5\n104210|0.5\n104211|0.5\n104212|0.5\n104213|0.5\n104214|0.5\n104215|0.54167\n104216|0.47222\n104217|0.5\n104218|0.44444\n104219|0.625\n104220|0.58333\n104221|0.59722\n104222|0.41667\n104223|0.5\n104224|0.5\n104225|0.84722\n104226|0.48611\n104227|0.5\n104228|0.66667\n104229|0.5\n104230|0.73611\n104231|0.75\n104232|0.91667\n104233|0.65278\n104234|0.70833\n104235|0.73611\n104236|0.22222\n104237|0.63889\n104238|0.70833\n104239|0.875\n104240|0.45833\n104241|0.54167\n104242|0.55556\n104243|0.43056\n104244|0.58333\n104245|0.26389\n104246|0.40278\n104247|0.22222\n104248|0.33333\n104249|0.097222\n104250|0.18056\n104251|0.26389\n104252|0.125\n104253|0.55556\n104254|0.40278\n104255|0.52778\n104256|0.36111\n104257|0.61111\n104258|0.56944\n104259|0.58333\n104260|0.43056\n104261|0.69444\n104262|0.5\n104263|0.95833\n104264|0.44444\n104265|0.18056\n104266|0.29167\n104267|0.38889\n104268|0.13889\n104269|0.58333\n104270|0.81944\n104271|0.68056\n104272|0.875\n104273|0.77778\n104274|0.86111\n104275|0.77778\n104276|0.27778\n104277|0.38889\n104278|0.5\n104279|0.33333\n104280|0.875\n104281|0.65278\n104282|0.73611\n104283|0.625\n104284|0.625\n104285|0.75\n104286|0.81944\n104287|0.45833\n104288|0.75\n104289|0.58333\n104290|0.69444\n104291|0.66667\n104292|0.625\n104293|0.66667\n104294|0.72222\n104295|0.72222\n104296|0.65278\n104297|0.56944\n104298|0.83333\n104299|0.69444\n104300|0.73611\n104301|0.69444\n104302|0.86111\n104303|0.56944\n104304|0.66667\n104305|0.47222\n104306|0.70833\n104307|0.84722\n104308|0.875\n104309|0.65278\n104310|0.65278\n104311|0.069444\n104312|0.375\n104313|0.31944\n104314|0.29167\n104315|0.375\n104316|0.375\n104317|0.55556\n104318|0.15278\n104319|0.013889\n104320|0.66667\n104321|0.69444\n104322|0.72222\n104323|0.65278\n104324|0.75\n104325|0.52778\n104326|0.79167\n104327|0.77778\n104328|0.38889\n104329|0.23611\n104330|0.80556\n104331|0.72222\n104332|0.76389\n104333|0.58333\n104334|0.61111\n104335|0.65278\n104336|0.36111\n104337|0.25\n104338|0.19444\n104339|0.36111\n104340|0.31944\n104341|0.20833\n104342|0.38889\n104343|0.33333\n104344|0.31944\n104345|0.33333\n104346|0.23611\n104347|0.76389\n104348|0.81944\n104349|0.76389\n104350|0.58333\n104351|0.81944\n104352|0.98611\n104353|0.88889\n104354|0.70833\n104355|0.59722\n104356|0.26389\n104357|0.22222\n104358|0.38889\n104359|0.80556\n104360|0.75\n104361|0.66667\n104362|0.63889\n104363|0.875\n104364|0.61111\n104365|0.79167\n104366|0.45833\n104367|0.70833\n104368|0.027778\n104369|0\n104370|0.54167\n104371|0.31944\n104372|0.097222\n104373|0.375\n104374|0.61111\n104375|0.38889\n104376|0.66667\n104377|0.40278\n104378|0.45833\n104379|0.40278\n104380|0.38889\n104381|0.30556\n104382|0.5\n104383|0.51389\n104384|0.70833\n104385|0.65278\n104386|0.63889\n104387|0.76389\n104388|0.75\n104389|0.52778\n104390|0.55556\n104391|0.27778\n104392|0.43056\n104393|0.54167\n104394|0.5\n104395|0.38889\n104396|0.47222\n104397|0.55556\n104398|0.13889\n104399|0.66667\n104400|0.5\n104401|0.5\n104402|0.38889\n104403|0.55556\n104404|0.5\n104405|0.5\n104406|0.5\n104407|0.56944\n104408|0.30556\n104409|0.34722\n104410|0.5\n104411|0.69444\n104412|0.84722\n104413|0.88889\n104414|0.80556\n104415|0.51389\n104416|0.18056\n104417|0.30556\n104418|0.36111\n104419|0.70833\n104420|0.59722\n104421|0.11111\n104422|0.22222\n104423|0.26389\n104424|0.18056\n104425|0.25\n104426|0.5\n104427|0.44444\n104428|0.5\n104429|0.56944\n104430|0.5\n104431|0.43056\n104432|0.5\n104433|0.5\n104434|0.625\n104435|0.5\n104436|0.45833\n104437|0.69444\n104438|0.5\n104439|0.56944\n104440|0.73611\n104441|0.69444\n104442|0.51389\n104443|0.26389\n104444|0.5\n104445|0.5\n104446|0.59722\n104447|0.55556\n104448|0.61111\n104449|0.5\n104450|0.66667\n104451|0.61111\n104452|0.84722\n104453|0.72222\n104454|0.86111\n104455|0.5\n104456|0.625\n104457|0.72222\n104458|0.5\n104459|0.55556\n104460|0.63889\n104461|0.65278\n104462|0.34722\n104463|0.45833\n104464|0.34722\n104465|0.5\n104466|0.86111\n104467|0.36111\n104468|0.76389\n104469|0.66667\n104470|0.55556\n104471|0.77778\n104472|0.61111\n104473|0.68056\n104474|0.5\n104475|0.45833\n104476|0.70833\n104477|0.25\n104478|0.45833\n104479|0.80556\n104480|0.51389\n104481|0.52778\n104482|0.5\n104483|0.84722\n104484|0.51389\n104485|0.5\n104486|0.76389\n104487|0.43056\n104488|0.18056\n104489|0.27778\n104490|0.18056\n104491|0.40278\n104492|0.54167\n104493|0.5\n104494|0.45833\n104495|0.38889\n104496|0.5\n104497|0.54167\n104498|0.5\n104499|0.63889\n104500|0.48611\n104501|0.41667\n104502|0.22222\n104503|0.15278\n104504|0.19444\n104505|0.25\n104506|0.097222\n104507|0.59722\n104508|0.79167\n104509|0.68056\n104510|0.79167\n104511|0.5\n104512|0.65278\n104513|0.33333\n104514|0.36111\n104515|0.43056\n104516|0.40278\n104517|0.75\n104518|0.31944\n104519|0.48611\n104520|0.69444\n104521|0.5\n104522|0.63889\n104523|0.86111\n104524|0.88889\n104525|0.48611\n104526|0.16667\n104527|0.80556\n104528|0.44444\n104529|0.5\n104530|0.52778\n104531|0.30556\n104532|0.20833\n104533|0.29167\n104534|0.51389\n104535|0.54167\n104536|0.77778\n104537|0.83333\n104538|0.5\n104539|0.59722\n104540|0.56944\n104541|0.81944\n104542|0.81944\n104543|0.79167\n104544|0.5\n104545|0.63889\n104546|0.65278\n104547|0.83333\n104548|0.93056\n104549|0.125\n104550|0.069444\n104551|0.52778\n104552|0.38889\n104553|0.51389\n104554|0.52778\n104555|0.23611\n104556|0.27778\n104557|0.375\n104558|0.73611\n104559|0.75\n104560|0.20833\n104561|0.51389\n104562|0.41667\n104563|0.51389\n104564|0.56944\n104565|0.63889\n104566|0.38889\n104567|0.38889\n104568|0.55556\n104569|0.45833\n104570|0.44444\n104571|0.48611\n104572|0.45833\n104573|0.43056\n104574|0.86111\n104575|0.51389\n104576|0.5\n104577|0.63889\n104578|0.5\n104579|0.13889\n104580|0.5\n104581|0.5\n104582|0.55556\n104583|0.81944\n104584|0.73611\n104585|0.83333\n104586|0.77778\n104587|0.33333\n104588|0.70833\n104589|0.5\n104590|0.5\n104591|0.5\n104592|0.43056\n104593|0.51389\n104594|0.41667\n104595|0.34722\n104596|0.125\n104597|0.5\n104598|0.58333\n104599|0.54167\n104600|0.5\n104601|0.5\n104602|0.5\n104603|0.5\n104604|0.5\n104605|0.65278\n104606|0.625\n104607|0.68056\n104608|0.56944\n104609|0.5\n104610|0.63889\n104611|0.66667\n104612|0.5\n104613|0.54167\n104614|0.38889\n104615|0.25\n104616|0.63889\n104617|0.13889\n104618|0.5\n104619|0.5\n104620|0.5\n104621|0.5\n104622|0.44444\n104623|0.31944\n104624|0.56944\n104625|0.75\n104626|0.63889\n104627|0.5\n104628|0.51389\n104629|0.55556\n104630|0.76389\n104631|0.77778\n104632|0.63889\n104633|0.375\n104634|0.5\n104635|0.83333\n104636|0.5\n104637|0.5\n104638|0.44444\n104639|0.52778\n104640|0.5\n104641|0.5\n104642|0.5\n104643|0.65278\n104644|0.5\n104645|0.5\n104646|0.5\n104647|0.5\n104648|0.5\n104649|0.22222\n104650|0.38889\n104651|0.45833\n104652|0.625\n104653|0.76389\n104654|0.76389\n104655|0.875\n104656|0.97222\n104657|0.73611\n104658|0.84722\n104659|0.63889\n104660|0.80556\n104661|0.84722\n104662|0.5\n104663|0.5\n104664|0.5\n104665|0.5\n104666|0.375\n104667|0.56944\n104668|0.25\n104669|0.375\n104670|0.375\n104671|0.34722\n104672|0.51389\n104673|0.76389\n104674|0.52778\n104675|0.68056\n104676|0.34722\n104677|0.52778\n104678|0.61111\n104679|0.54167\n104680|0.56944\n104681|0.52778\n104682|0.54167\n104683|0.56944\n104684|0.73611\n104685|0.11111\n104686|0.5\n104687|0.61111\n104688|0.5\n104689|0.5\n104690|0.55556\n104691|0.41667\n104692|0.72222\n104693|0.44444\n104694|0.61111\n104695|0.5\n104696|0.44444\n104697|0.45833\n104698|0.5\n104699|0.5\n104700|0.48611\n104701|0.5\n104702|0.61111\n104703|0.5\n104704|0.5\n104705|0.72222\n104706|0.76389\n104707|0.63889\n104708|0.77778\n104709|0.63889\n104710|0.59722\n104711|0.65278\n104712|0.65278\n104713|0.58333\n104714|0.61111\n104715|0.80556\n104716|0.65278\n104717|0.55556\n104718|0.5\n104719|0.5\n104720|0.5\n104721|0.5\n104722|0.65278\n104723|0.625\n104724|0.55556\n104725|0.44444\n104726|0.52778\n104727|0.58333\n104728|0.45833\n104729|0.34722\n104730|0.5\n104731|0.69444\n104732|0.61111\n104733|0.77778\n104734|0.625\n104735|0.52778\n104736|0.5\n104737|0.58333\n104738|0.19444\n104739|0.625\n104740|0.23611\n104741|0.65278\n104742|0.66667\n104743|0.375\n104744|0.47222\n104745|0.5\n104746|0.70833\n104747|0.84722\n104748|0.5\n104749|0.54167\n104750|0.5\n104751|0.5\n104752|0.5\n104753|0.5\n104754|0.66667\n104755|0.68056\n104756|0.80556\n104757|0.52778\n104758|0.48611\n104759|0.56944\n104760|0.69444\n104761|0.56944\n104762|0.75\n104763|0.88889\n104764|0.5\n104765|0.58333\n104766|0.5\n104767|0.61111\n104768|0.61111\n104769|0.76389\n104770|0.51389\n104771|0.51389\n104772|0.5\n104773|0.5\n104774|0.55556\n104775|0.5\n104776|0.5\n104777|0.5\n104778|0.52778\n104779|0.5\n104780|0.56944\n104781|0.5\n104782|0.29167\n104783|0.43056\n104784|0.54167\n104785|0.90278\n104786|0.59722\n104787|0.5\n104788|0.52778\n104789|0.5\n104790|0.76389\n104791|0.30556\n104792|0.41667\n104793|0.52778\n104794|0.5\n104795|0.5\n104796|0.61111\n104797|0.52778\n104798|0.61111\n104799|0.22222\n104800|0.63889\n104801|0.70833\n104802|0.70833\n104803|0.625\n104804|0.5\n104805|0.31944\n104806|0.61111\n104807|0.70833\n104808|0.56944\n104809|0.5\n104810|0.70833\n104811|0.625\n104812|0.625\n104813|0.18056\n104814|0.5\n104815|0.41667\n104816|0.31944\n104817|0.041667\n104818|0.5\n104819|0.72222\n104820|0.63889\n104821|0.88889\n104822|0.48611\n104823|0.65278\n104824|0.80556\n104825|0.83333\n104826|0.63889\n104827|0.76389\n104828|0.77778\n104829|0.83333\n104830|0.88889\n104831|0.5\n104832|0.68056\n104833|0.90278\n104834|0.88889\n104835|0.95833\n104836|0.90278\n104837|0.5\n104838|0.51389\n104839|0.61111\n104840|0.5\n104841|0.5\n104842|0.55556\n104843|0.40278\n104844|0.44444\n104845|0.625\n104846|0.44444\n104847|0.72222\n104848|0.5\n104849|0.5\n104850|0.56944\n104851|0.5\n104852|0.5\n104853|0.36111\n104854|0.5\n104855|0.5\n104856|0.5\n104857|0.5\n104858|0.59722\n104859|0.5\n104860|0.5\n104861|0.73611\n104862|0.72222\n104863|0.5\n104864|0.43056\n104865|0.65278\n104866|0.61111\n104867|0.5\n104868|0.5\n104869|0.5\n104870|0.5\n104871|0.20833\n104872|0.26389\n104873|0.44444\n104874|0.5\n104875|0.5\n104876|0.5\n104877|0.38889\n104878|0.79167\n104879|0.47222\n104880|0.76389\n104881|0.58333\n104882|0.375\n104883|0.31944\n104884|0.73611\n104885|0.5\n104886|0.5\n104887|0.55556\n104888|0.5\n104889|0.5\n104890|0.5\n104891|0.65278\n104892|0.56944\n104893|0.79167\n104894|0.70833\n104895|0.51389\n104896|0.59722\n104897|0.5\n104898|0.40278\n104899|0.88889\n104900|0.52778\n104901|0.5\n104902|0.56944\n104903|0.69444\n104904|0.63889\n104905|0.77778\n104906|0.80556\n104907|0.65278\n104908|0.38889\n104909|0.59722\n104910|0.5\n104911|0.58333\n104912|0.875\n104913|0.5\n104914|0.54167\n104915|0.44444\n104916|0.22222\n104917|0.58333\n104918|0.72222\n104919|0.66667\n104920|0.70833\n104921|0.79167\n104922|0.77778\n104923|0.51389\n104924|0.76389\n104925|0.48611\n104926|0.5\n104927|0.43056\n104928|0.5\n104929|0.76389\n104930|0.58333\n104931|0.79167\n104932|0.5\n104933|0.18056\n104934|0.36111\n104935|0.40278\n104936|0.5\n104937|0.25\n104938|0.54167\n104939|0.15278\n104940|0.66667\n104941|0.65278\n104942|0.72222\n104943|0.83333\n104944|0.54167\n104945|0.5\n104946|0.73611\n104947|0.61111\n104948|0.68056\n104949|0.5\n104950|0.5\n104951|0.5\n104952|0.5\n104953|0.5\n104954|0.5\n104955|0.5\n104956|0.5\n104957|0.41667\n104958|0.5\n104959|0.61111\n104960|0.48611\n104961|0.43056\n104962|0.59722\n104963|0.5\n104964|0.77778\n104965|0.11111\n104966|0.43056\n104967|0.5\n104968|0.55556\n104969|0.5\n104970|0.5\n104971|0.5\n104972|0.68056\n104973|0.75\n104974|0.83333\n104975|0.72222\n104976|0.69444\n104977|0.56944\n104978|0.5\n104979|0.58333\n104980|0.38889\n104981|0.5\n104982|0.58333\n104983|0.77778\n104984|0.5\n104985|0.77778\n104986|0.83333\n104987|0.54167\n104988|0.72222\n104989|0.88889\n104990|0.79167\n104991|0.63889\n104992|0.5\n104993|0.5\n104994|0.59722\n104995|0.5\n104996|0.65278\n104997|0.47222\n104998|0.63889\n104999|0.5\n105000|0.61111\n105001|0.63194\n105002|0.52778\n105003|0.45833\n105004|0.54167\n105005|0.70833\n105006|0.69444\n105007|0.63889\n105008|0.5\n105009|0.5\n105010|0.25\n105011|0.5\n105012|0.16667\n105013|0.5\n105014|0.5\n105015|0.5\n105016|0.56944\n105017|0.5\n105018|0.48611\n105019|0.65278\n105020|0.5\n105021|0.44444\n105022|0.61111\n105023|0.44444\n105024|0.55556\n105025|0.58333\n105026|0.44444\n105027|0.66667\n105028|0.91667\n105029|0.58333\n105030|0.27778\n105031|0.43056\n105032|0.63889\n105033|0.38889\n105034|0.5\n105035|0.5\n105036|0.56944\n105037|0.5\n105038|0.5\n105039|0.54167\n105040|0.5\n105041|0.45833\n105042|0.47222\n105043|0.48611\n105044|0.44444\n105045|0.47222\n105046|0.61111\n105047|0.65278\n105048|0.84722\n105049|0.69444\n105050|0.59722\n105051|0.51389\n105052|0.51389\n105053|0.54167\n105054|0.5\n105055|0.58333\n105056|0.5\n105057|0.29167\n105058|0.125\n105059|0.25\n105060|0.5\n105061|0.58333\n105062|0.61111\n105063|0.5\n105064|0.47222\n105065|0.72222\n105066|0.55556\n105067|0.5\n105068|0.59722\n105069|0.61111\n105070|0.41667\n105071|0.5\n105072|0.66667\n105073|0.75\n105074|0.59722\n105075|0.56944\n105076|0.69444\n105077|0.55556\n105078|0.5\n105079|0.52778\n105080|0.5\n105081|0.5\n105082|0.72222\n105083|0.59722\n105084|0.5\n105085|0.5\n105086|0.56944\n105087|0.63889\n105088|0.5\n105089|0.68056\n105090|0.63889\n105091|0.5\n105092|0.5\n105093|0.5\n105094|0.76389\n105095|0.5\n105096|0.5\n105097|0.48611\n105098|0.19444\n105099|0.5\n105100|0.55556\n105101|0.63889\n105102|0.44444\n105103|0.73611\n105104|0.40278\n105105|0.55556\n105106|0.625\n105107|0.59722\n105108|0.86111\n105109|0.84722\n105110|0.5\n105111|0.5\n105112|0.45833\n105113|0.43056\n105114|0.5\n105115|0.54167\n105116|0.63889\n105117|0.41667\n105118|0.5\n105119|0.51389\n105120|0.15278\n105121|0.25\n105122|0.59722\n105123|0.73611\n105124|0.5\n105125|0.45833\n105126|0.51389\n105127|0.56944\n105128|0.63889\n105129|0.5\n105130|0.5\n105131|0.68056\n105132|0.5\n105133|0.5\n105134|0.5\n105135|0.5\n105136|0.54167\n105137|0.40278\n105138|0.72222\n105139|0.52778\n105140|0.11111\n105141|0.27778\n105142|0.43056\n105143|0.43056\n105144|0.75\n105145|0.18056\n105146|0.16667\n105147|0.13889\n105148|0.47222\n105149|0.45833\n105150|0.33333\n105151|0.25\n105152|0.5\n105153|0.5\n105154|0.56944\n105155|0.54167\n105156|0.47222\n105157|0.43056\n105158|0.41667\n105159|0.84722\n105160|0.80556\n105161|0.90278\n105162|0.80556\n105163|0.51389\n105164|0.5\n105165|0.44444\n105166|0.65278\n105167|0.66667\n105168|0.5\n105169|0.56944\n105170|0.65278\n105171|0.5\n105172|0.083333\n105173|0.013889\n105174|0.11111\n105175|0.097222\n105176|0.19444\n105177|0.55556\n105178|0.90278\n105179|0.76389\n105180|0.59722\n105181|0.5\n105182|0.58333\n105183|0.41667\n105184|0.20833\n105185|0.33333\n105186|0.38889\n105187|0.47222\n105188|0.33333\n105189|0.34722\n105190|0.13889\n105191|0.5\n105192|0.52778\n105193|0.80556\n105194|0.81944\n105195|0.5\n105196|0.51389\n105197|0.58333\n105198|0.72222\n105199|0.5\n105200|0.5\n105201|0.54167\n105202|0.98611\n105203|0.16667\n105204|0.27778\n105205|0.70833\n105206|0.51389\n105207|0.54167\n105208|0.69444\n105209|0.875\n105210|0.51389\n105211|0.18056\n105212|0.61111\n105213|0.73611\n105214|0.77778\n105215|0.81944\n105216|0.75\n105217|0.56944\n105218|0.375\n105219|0.30556\n105220|0.18056\n105221|0.45833\n105222|0.48611\n105223|0.5\n105224|0.70833\n105225|0.5\n105226|0.52778\n105227|0.76389\n105228|0.56944\n105229|0.625\n105230|0.65278\n105231|0.65278\n105232|0.66667\n105233|0.41667\n105234|0.5\n105235|0.5\n105236|0.5\n105237|0.5\n105238|0.51389\n105239|0.45833\n105240|0.5\n105241|0.19444\n105242|0.27778\n105243|0.56944\n105244|0.70833\n105245|0.5\n105246|0.51389\n105247|0.5\n105248|0.55556\n105249|0.45833\n105250|0.5\n105251|0.58333\n105252|0.33333\n105253|0.26389\n105254|0.31944\n105255|0.45833\n105256|0.31944\n105257|0.70833\n105258|0.38889\n105259|0.5\n105260|0.51389\n105261|0.5\n105262|0.45833\n105263|0.70833\n105264|0.56944\n105265|0.59722\n105266|0.58333\n105267|0.54167\n105268|0.41667\n105269|0.5\n105270|0.63889\n105271|0.63889\n105272|0.68056\n105273|0.041667\n105274|0.66667\n105275|0.55556\n105276|0.54167\n105277|0.55556\n105278|0.40278\n105279|0.66667\n105280|0.5\n105281|0.58333\n105282|0.55556\n105283|0.40278\n105284|0.27778\n105285|0.52778\n105286|0.5\n105287|0.47222\n105288|0.61111\n105289|0.5\n105290|0.375\n105291|0.41667\n105292|0.5\n105293|0.38889\n105294|0.5\n105295|0.5\n105296|0.48611\n105297|0.33333\n105298|0.30556\n105299|0.5\n105300|0.5\n105301|0.5\n105302|0.5\n105303|0.59722\n105304|0.55556\n105305|0.625\n105306|0.68056\n105307|0.81944\n105308|0.80556\n105309|0.5\n105310|0.73611\n105311|0.59722\n105312|0.58333\n105313|0.5\n105314|0.55556\n105315|0.5\n105316|0.59722\n105317|0.55556\n105318|0.5\n105319|0.5\n105320|0.5\n105321|0.5\n105322|0.55556\n105323|0.5\n105324|0.91667\n105325|0.81944\n105326|0.61111\n105327|0.51389\n105328|0.65278\n105329|0.80556\n105330|0.5\n105331|0.55556\n105332|0.5\n105333|0.51389\n105334|0.31944\n105335|0.52778\n105336|0.5\n105337|0.44444\n105338|0.5\n105339|0.52778\n105340|0.38889\n105341|0.36111\n105342|0.5\n105343|0.5\n105344|0.5\n105345|0.66667\n105346|0.5\n105347|0.5\n105348|0.5\n105349|0.5\n105350|0.027778\n105351|0.34722\n105352|0.5\n105353|0.5\n105354|0.59722\n105355|0.5\n105356|0.61111\n105357|0.51389\n105358|0.77778\n105359|0.5\n105360|0.5\n105361|0.80556\n105362|0.77778\n105363|0.70833\n105364|0.77778\n105365|0.73611\n105366|0.84722\n105367|0.68056\n105368|0.5\n105369|0.47222\n105370|0.83333\n105371|0.66667\n105372|0.79167\n105373|0.77778\n105374|0.48611\n105375|0.58333\n105376|0.5\n105377|0.51389\n105378|0.84722\n105379|0.5\n105380|0.61111\n105381|0.20833\n105382|0.5\n105383|0.66667\n105384|0.51389\n105385|0.375\n105386|0.40278\n105387|0.68056\n105388|0.61111\n105389|0.68056\n105390|0.47222\n105391|0.40278\n105392|0.31944\n105393|0.20833\n105394|0.72222\n105395|0.11111\n105396|0.56944\n105397|0.18056\n105398|0.56944\n105399|0.54167\n105400|0.56944\n105401|0.54167\n105402|0.26389\n105403|0.55556\n105404|0.083333\n105405|0.61111\n105406|0.5\n105407|0.375\n105408|0.33333\n105409|0.63889\n105410|0.26389\n105411|0.27778\n105412|0.5\n105413|0.5\n105414|0.83333\n105415|0.27778\n105416|0.55556\n105417|0.5\n105418|0.51389\n105419|0.5\n105420|0.73611\n105421|0.81944\n105422|0.75\n105423|0.72222\n105424|0.54167\n105425|0.59722\n105426|0.72222\n105427|0.63889\n105428|0.59722\n105429|0.5\n105430|0.70833\n105431|0.70833\n105432|0.38889\n105433|0.31944\n105434|0.45833\n105435|0.25\n105436|0.5\n105437|0.55556\n105438|0.59722\n105439|0.63889\n105440|0.65278\n105441|0.48611\n105442|0.5\n105443|0.51389\n105444|0.68056\n105445|0.5\n105446|0.84722\n105447|0.79167\n105448|0.56944\n105449|0.625\n105450|0.83333\n105451|0.5\n105452|0.47222\n105453|0.5\n105454|0.70833\n105455|0.59722\n105456|0.72222\n105457|0.76389\n105458|0.5\n105459|0.86111\n105460|0.88889\n105461|0.45833\n105462|0.31944\n105463|0.70833\n105464|0.5\n105465|0.5\n105466|0.5\n105467|0.51389\n105468|0.77778\n105469|0.75\n105470|0.47222\n105471|0.51389\n105472|0.47222\n105473|0.66667\n105474|0.44444\n105475|0.86111\n105476|0.41667\n105477|0.52778\n105478|0.52778\n105479|0.76389\n105480|0.51389\n105481|0.52778\n105482|0.5\n105483|0.5\n105484|0.65278\n105485|0.55556\n105486|0.59722\n105487|0.73611\n105488|0.77778\n105489|0.79167\n105490|0.5\n105491|0.34722\n105492|0.5\n105493|0.5\n105494|0.58333\n105495|0.69444\n105496|0.73611\n105497|0.73611\n105498|0.47222\n105499|0.31944\n105500|0.52778\n105501|0.63889\n105502|0.61111\n105503|0.56944\n105504|0.5\n105505|0.5\n105506|0.33333\n105507|0.41667\n105508|0.66667\n105509|0.77778\n105510|0.5\n105511|0.5\n105512|0.5\n105513|0.29167\n105514|0.5\n105515|0.63889\n105516|0.58333\n105517|0.47222\n105518|0.5\n105519|0.44444\n105520|0.5\n105521|0.5\n105522|0.5\n105523|0.5\n105524|0.69444\n105525|0.47222\n105526|0.33333\n105527|0.66667\n105528|0.5\n105529|0.43056\n105530|0.73611\n105531|0.5\n105532|0.5\n105533|0.76389\n105534|0.81944\n105535|0.5\n105536|0.5\n105537|0.52778\n105538|0.61111\n105539|0.52778\n105540|0.5\n105541|0.52778\n105542|0.55556\n105543|0.36111\n105544|0.19444\n105545|0.34722\n105546|0.20833\n105547|0.19444\n105548|0.25\n105549|0.59722\n105550|0.5\n105551|0.58333\n105552|0.5\n105553|0.5\n105554|0.5\n105555|0.23611\n105556|0.625\n105557|0.69444\n105558|0.75\n105559|0.65278\n105560|0.5\n105561|0.72222\n105562|0.5\n105563|0.86111\n105564|0.52778\n105565|0.51389\n105566|0.44444\n105567|0.18056\n105568|0.73611\n105569|0.33333\n105570|0.38889\n105571|0.5\n105572|0.5\n105573|0.22222\n105574|0.61111\n105575|0.48611\n105576|0.58333\n105577|0.81944\n105578|0.55556\n105579|0.33333\n105580|0.16667\n105581|0.055556\n105582|0.44444\n105583|0.72222\n105584|0.58333\n105585|0.65278\n105586|0.5\n105587|0.63889\n105588|0.54167\n105589|0.5\n105590|0.59722\n105591|0.5\n105592|0.5\n105593|0.55556\n105594|0.5\n105595|0.375\n105596|0.5\n105597|0.5\n105598|0.86111\n105599|0.44444\n105600|0.5\n105601|0.5\n105602|0.61111\n105603|0.5\n105604|0.61111\n105605|0.63889\n105606|0.875\n105607|0.66667\n105608|0.76389\n105609|1\n105610|0.5\n105611|0.40278\n105612|0.65278\n105613|0.69444\n105614|0.80556\n105615|0.5\n105616|0.5\n105617|0.5\n105618|0.5\n105619|0.5\n105620|0.30556\n105621|0.11111\n105622|0.63889\n105623|0.52778\n105624|0.5\n105625|0.20833\n105626|0.27778\n105627|0.69444\n105628|0.77778\n105629|0.80556\n105630|0.81944\n105631|0.63889\n105632|0.86111\n105633|0.79167\n105634|0.86111\n105635|0.95833\n105636|0.83333\n105637|0.94444\n105638|0.875\n105639|0.45833\n105640|0.83333\n105641|0.70833\n105642|0.80556\n105643|0.76389\n105644|0.69444\n105645|0.63889\n105646|0.58333\n105647|0.5\n105648|0.65278\n105649|0.625\n105650|0.33333\n105651|0.5\n105652|0.29167\n105653|0.48611\n105654|0.72222\n105655|0.5\n105656|0.5\n105657|0.5\n105658|0.875\n105659|0.5\n105660|0.5\n105661|0.5\n105662|0.5\n105663|0.5\n105664|0.5\n105665|0.69444\n105666|0.5\n105667|0.43056\n105668|0.65278\n105669|0.69444\n105670|0.63889\n105671|0.51389\n105672|0.73611\n105673|0.625\n105674|0.72222\n105675|0.80556\n105676|0.55556\n105677|0.66667\n105678|0.48611\n105679|0.68056\n105680|0.61111\n105681|0.80556\n105682|0.5\n105683|0.25\n105684|0.41667\n105685|0.72222\n105686|0.30556\n105687|0.63889\n105688|0.48611\n105689|0.68056\n105690|0.65278\n105691|0.72222\n105692|0.58333\n105693|0.69444\n105694|0.18056\n105695|0.5\n105696|0.5\n105697|0.15278\n105698|0.041667\n105699|0.5\n105700|0.52778\n105701|0.5\n105702|0.15278\n105703|0.15278\n105704|0.5\n105705|0.65278\n105706|0.5\n105707|0.81944\n105708|0.61111\n105709|0.54167\n105710|0.72222\n105711|0.63889\n105712|0.51389\n105713|0.5\n105714|0.81944\n105715|0.76389\n105716|0.20833\n105717|0.29167\n105718|0.29167\n105719|0.51389\n105720|0.63889\n105721|0.54167\n105722|0.86111\n105723|0.66667\n105724|0.77778\n105725|0.75\n105726|0.5\n105727|0.44444\n105728|0.375\n105729|0.61111\n105730|0.45833\n105731|0.59722\n105732|0.72222\n105733|0.86111\n105734|0.81944\n105735|0.80556\n105736|0.86111\n105737|0.5\n105738|0.52778\n105739|0.44444\n105740|0.72222\n105741|0.73611\n105742|0.63889\n105743|0.68056\n105744|0.43056\n105745|0.34722\n105746|0.36111\n105747|0.041667\n105748|0.30556\n105749|0.56944\n105750|0.54167\n105751|0.59722\n105752|0.5\n105753|0.54167\n105754|0.43056\n105755|0.58333\n105756|0.5\n105757|0.5\n105758|0.5\n105759|0.5\n105760|0.61111\n105761|0.11111\n105762|0.45833\n105763|0.31944\n105764|0.13889\n105765|0.13889\n105766|0.55556\n105767|0.41667\n105768|0.84722\n105769|0.44444\n105770|0.58333\n105771|0.41667\n105772|0.34722\n105773|0.5\n105774|0.55556\n105775|0.72222\n105776|0.66667\n105777|0.72222\n105778|0.72222\n105779|0.72222\n105780|0.5\n105781|0.5\n105782|0.5\n105783|0.51389\n105784|0.70833\n105785|0.36111\n105786|0.54167\n105787|0.79167\n105788|0.5\n105789|0.5\n105790|0.15278\n105791|0.25\n105792|0.5\n105793|0.40278\n105794|0.26389\n105795|0.30556\n105796|0.25\n105797|0.61111\n105798|0.69444\n105799|0.84722\n105800|0.84722\n105801|0.58333\n105802|0.69444\n105803|0.52778\n105804|0.44444\n105805|0.5\n105806|0.33333\n105807|0.5\n105808|0.56944\n105809|0.55556\n105810|0.5\n105811|0.5\n105812|0.54167\n105813|0.65278\n105814|0.52778\n105815|0.40278\n105816|0.61111\n105817|0.52778\n105818|0.48611\n105819|0.52778\n105820|0.5\n105821|0.5\n105822|0.79167\n105823|0.5\n105824|0.5\n105825|0.11111\n105826|0.5\n105827|0.77778\n105828|0.68056\n105829|0.25\n105830|0.44444\n105831|0.76389\n105832|0.625\n105833|0.069444\n105834|0.41667\n105835|0.25\n105836|0.61111\n105837|0.86111\n105838|0.56944\n105839|0.65278\n105840|0.66667\n105841|0.72222\n105842|0.61111\n105843|0.66667\n105844|0.27778\n105845|0.70833\n105846|0.5\n105847|0.72222\n105848|0.65278\n105849|0.68056\n105850|0.76389\n105851|0.43056\n105852|0.5\n105853|0.5\n105854|0.45833\n105855|0.55556\n105856|0.55556\n105857|0.51389\n105858|0.61111\n105859|0.55556\n105860|0.54167\n105861|0.55556\n105862|0.5\n105863|0.27778\n105864|0.34722\n105865|0.48611\n105866|0.375\n105867|0.5\n105868|0.5\n105869|0.58333\n105870|0.69444\n105871|0.83333\n105872|0.86111\n105873|0.66667\n105874|0.33333\n105875|0.19444\n105876|0.48611\n105877|0.5\n105878|0.055556\n105879|0.097222\n105880|0.16667\n105881|0.23611\n105882|0.5\n105883|0.13889\n105884|0.097222\n105885|0.43056\n105886|0.36111\n105887|0.625\n105888|0.5\n105889|0.5\n105890|0.73611\n105891|0.5\n105892|0.5\n105893|1\n105894|0.625\n105895|0.5\n105896|0.5\n105897|0.73611\n105898|0.51389\n105899|0.63889\n105900|0.55556\n105901|0.68056\n105902|0.5\n105903|0.61111\n105904|0.77778\n105905|0.52778\n105906|0.55556\n105907|0.5\n105908|0.55556\n105909|0.5\n105910|0.5\n105911|0.44444\n105912|0.44444\n105913|0.65278\n105914|0.22222\n105915|0.097222\n105916|0.13889\n105917|0.47222\n105918|0.51389\n105919|0.36111\n105920|0.72222\n105921|0.55556\n105922|0.45833\n105923|0.55556\n105924|0.88889\n105925|0.84722\n105926|0.29167\n105927|0.22222\n105928|0.38889\n105929|0.5\n105930|0.5\n105931|0.5\n105932|0.5\n105933|0.51389\n105934|0.45833\n105935|0.48611\n105936|0.5\n105937|0.5\n105938|0.5\n105939|0.5\n105940|0.5\n105941|0.43056\n105942|0.5\n105943|0.51389\n105944|0.375\n105945|0.5\n105946|0.70833\n105947|0.5\n105948|0.5\n105949|0.5\n105950|0.52778\n105951|0.5\n105952|0.40278\n105953|0.72222\n105954|0.51389\n105955|0.81944\n105956|0.44444\n105957|0.5\n105958|0.51389\n105959|0.54167\n105960|0.5\n105961|0.5\n105962|0.5\n105963|0.83333\n105964|0.61111\n105965|0.81944\n105966|0.77778\n105967|0.5\n105968|0.58333\n105969|0.61111\n105970|0.58333\n105971|0.51389\n105972|0.5\n105973|0.44444\n105974|0.5\n105975|0.625\n105976|0.77778\n105977|0.22222\n105978|0.5\n105979|0.5\n105980|0.5\n105981|0.69444\n105982|0.5\n105983|0.76389\n105984|0.80556\n105985|0.5\n105986|0.5\n105987|0.44444\n105988|0.23611\n105989|0.083333\n105990|0.625\n105991|0.68056\n105992|0.52778\n105993|0.88889\n105994|0.5\n105995|0.47222\n105996|0.41667\n105997|0.5\n105998|0.65278\n105999|0.38889\n106000|0.5\n106001|0.5\n106002|0.083333\n106003|0.11111\n106004|0.625\n106005|0.51389\n106006|0.22222\n106007|0.58333\n106008|0.44444\n106009|0.5\n106010|0.48611\n106011|0.51389\n106012|0.54167\n106013|0.63889\n106014|0.76389\n106015|0.54167\n106016|0.81944\n106017|0.5\n106018|0.5\n106019|0.72222\n106020|0.38889\n106021|0.5\n106022|0.5\n106023|0.625\n106024|0.81944\n106025|0.5\n106026|0.66667\n106027|0.54167\n106028|0.5\n106029|0.45833\n106030|0.51389\n106031|0.69444\n106032|0.77778\n106033|0.54167\n106034|0.55556\n106035|0.84722\n106036|0.76389\n106037|0.5\n106038|0.38889\n106039|0.5\n106040|0.38889\n106041|0.48611\n106042|0.91667\n106043|0.5\n106044|0.55556\n106045|0.81944\n106046|0.72222\n106047|0.5\n106048|0.625\n106049|0.5\n106050|0.54167\n106051|0.79167\n106052|0.75\n106053|0.77778\n106054|0.61111\n106055|0.30556\n106056|0.5\n106057|0.52778\n106058|0.41667\n106059|0.61111\n106060|0.40278\n106061|0.76389\n106062|0.88889\n106063|0.84722\n106064|0.5\n106065|0.5\n106066|0.5\n106067|0.5\n106068|0.83333\n106069|0.5\n106070|0.5\n106071|0.5\n106072|0.5\n106073|0.5\n106074|0.55556\n106075|0.52778\n106076|0.40278\n106077|0.40278\n106078|0.45833\n106079|0.5\n106080|0.56944\n106081|0.45833\n106082|0.5\n106083|0.56944\n106084|0.43056\n106085|0.48611\n106086|0.63889\n106087|0.43056\n106088|0.25\n106089|0.30556\n106090|0.47222\n106091|0.27778\n106092|0.5\n106093|0.5\n106094|0.61111\n106095|0.55556\n106096|0.40278\n106097|0.66667\n106098|0.51389\n106099|0.48611\n106100|0.48611\n106101|0.15278\n106102|0.125\n106103|0.45833\n106104|0.33333\n106105|0.27778\n106106|0.33333\n106107|0.30556\n106108|0.083333\n106109|0.5\n106110|0.5\n106111|0.51389\n106112|0.81944\n106113|0.5\n106114|0.56944\n106115|0.44444\n106116|0.5\n106117|0.5\n106118|0.5\n106119|0.43056\n106120|0.38889\n106121|0.5\n106122|0.5\n106123|0.5\n106124|0.625\n106125|0.59722\n106126|0.41667\n106127|0.44444\n106128|0.25\n106129|0.30556\n106130|0.25\n106131|0.11111\n106132|0.58333\n106133|0.5\n106134|0.45833\n106135|0.66667\n106136|0.54167\n106137|0.51389\n106138|0.73611\n106139|0.65278\n106140|0.5\n106141|0.61111\n106142|0.79167\n106143|0.51389\n106144|0.5\n106145|0.5\n106146|0.38889\n106147|0.5\n106148|0.5\n106149|0.30556\n106150|0.5\n106151|0.5\n106152|0.23611\n106153|0.66667\n106154|0.5\n106155|0.80556\n106156|0.73611\n106157|0.73611\n106158|0.375\n106159|0.29167\n106160|0.69444\n106161|0.41667\n106162|0.5\n106163|0.27778\n106164|0.33333\n106165|0.63889\n106166|0.75\n106167|0.625\n106168|0.56944\n106169|0.5\n106170|0.54167\n106171|0.68056\n106172|0.63889\n106173|0.26389\n106174|0.11111\n106175|0.30556\n106176|0.22222\n106177|0.22222\n106178|0.70833\n106179|0.72222\n106180|0.5\n106181|0.5\n106182|0.63889\n106183|0.5\n106184|0.43056\n106185|0.44444\n106186|0.69444\n106187|0.5\n106188|0.5\n106189|0.52778\n106190|0.5\n106191|0.70833\n106192|0.63889\n106193|0.30556\n106194|0.79167\n106195|0.73611\n106196|0.44444\n106197|0.86111\n106198|0.75\n106199|0.38889\n106200|0.54167\n106201|0.75\n106202|0.72222\n106203|0.83333\n106204|0.79167\n106205|0.5\n106206|0.52778\n106207|0.43056\n106208|0.375\n106209|0.33333\n106210|0.5\n106211|0.5\n106212|0.51389\n106213|0.56944\n106214|0.70833\n106215|0.13889\n106216|0.23611\n106217|0.55556\n106218|0.66667\n106219|0.19444\n106220|0.36111\n106221|0.069444\n106222|0.33333\n106223|0.5\n106224|0.48611\n106225|0.44444\n106226|0.79167\n106227|0.59722\n106228|0.23611\n106229|0.56944\n106230|0.70833\n106231|0.83333\n106232|0.79167\n106233|0.59722\n106234|0.68056\n106235|0.61111\n106236|0.5\n106237|0.34722\n106238|0.40278\n106239|0.26389\n106240|0.25\n106241|0.5\n106242|0.54167\n106243|0.31944\n106244|0.76389\n106245|0.70833\n106246|0.76389\n106247|0.38889\n106248|0.5\n106249|0.5\n106250|0.55556\n106251|0.77778\n106252|0.15278\n106253|0.40278\n106254|0.54167\n106255|0.27778\n106256|0.25\n106257|0.36111\n106258|0.5\n106259|0.5\n106260|0.52778\n106261|0.56944\n106262|0.52778\n106263|0.5\n106264|0.5\n106265|0.75\n106266|0.65278\n106267|0.66667\n106268|0.625\n106269|0.68056\n106270|0.27778\n106271|0.61111\n106272|0.375\n106273|0.41667\n106274|0.79167\n106275|0.66667\n106276|0.80556\n106277|0.88889\n106278|0.875\n106279|0.38889\n106280|0.61111\n106281|0.41667\n106282|0.69444\n106283|0.66667\n106284|0.51389\n106285|0.5\n106286|0.38889\n106287|0.5\n106288|0.36111\n106289|0.54167\n106290|0.5\n106291|0.5\n106292|0.44444\n106293|0.80556\n106294|0.69444\n106295|0.5\n106296|0.56944\n106297|0.44444\n106298|0.5\n106299|0.56944\n106300|0.58333\n106301|0.58333\n106302|0.5\n106303|0.5\n106304|0.59722\n106305|0.58333\n106306|0.84722\n106307|0.5\n106308|0.61111\n106309|0.52778\n106310|0.47222\n106311|0.51389\n106312|0.43056\n106313|0.29167\n106314|0.58333\n106315|0.55556\n106316|0.33333\n106317|0.31944\n106318|0.19444\n106319|0.43056\n106320|0.43056\n106321|0.61111\n106322|0.5\n106323|0.48611\n106324|0.58333\n106325|0.40278\n106326|0.33333\n106327|0.22222\n106328|0.45833\n106329|0.68056\n106330|0.43056\n106331|0.52778\n106332|0.23611\n106333|0.34722\n106334|0.41667\n106335|0.68056\n106336|0.72222\n106337|0.59722\n106338|0.5\n106339|0.77778\n106340|0.77778\n106341|0.55556\n106342|0.5\n106343|0.72222\n106344|0.5\n106345|0.80556\n106346|0.70833\n106347|0.80556\n106348|0.43056\n106349|0.38889\n106350|0.34722\n106351|0.26389\n106352|0.75\n106353|0.73611\n106354|0.58333\n106355|0.5\n106356|0.5\n106357|0.5\n106358|0.19444\n106359|0.22222\n106360|0.5\n106361|0.47222\n106362|0.80556\n106363|0.47222\n106364|0.5\n106365|0.70833\n106366|0.5\n106367|0.5\n106368|0.76389\n106369|0.27778\n106370|0.47222\n106371|0.20833\n106372|0.13889\n106373|0.55556\n106374|0.5\n106375|0.47222\n106376|0.5\n106377|0.47222\n106378|0.97222\n106379|0.72222\n106380|0.66667\n106381|0.59722\n106382|0.43056\n106383|0.55556\n106384|0.38889\n106385|0.47222\n106386|0.81944\n106387|0.75\n106388|0.38889\n106389|0.34722\n106390|0.40278\n106391|0.48611\n106392|0.44444\n106393|0.43056\n106394|0.54167\n106395|0.43056\n106396|0.75\n106397|0.5\n106398|0.34722\n106399|0.16667\n106400|0.5\n106401|0.34722\n106402|0.5\n106403|0.51389\n106404|0.51389\n106405|0.5\n106406|0.54167\n106407|0.38889\n106408|0.43056\n106409|0.47222\n106410|0.72222\n106411|0.70833\n106412|0.61111\n106413|0.54167\n106414|0.77778\n106415|0.70833\n106416|0.56944\n106417|0.47222\n106418|0.13889\n106419|0.40278\n106420|0.027778\n106421|0.45833\n106422|0.36111\n106423|0.33333\n106424|0.36111\n106425|0.72222\n106426|0.59722\n106427|0.59722\n106428|0.56944\n106429|0.43056\n106430|0.027778\n106431|0.5\n106432|0.5\n106433|0.16667\n106434|0.5\n106435|0.48611\n106436|0.38889\n106437|0.44444\n106438|0.31944\n106439|0.34722\n106440|0.26389\n106441|0.013889\n106442|0.44444\n106443|0.5\n106444|0.83333\n106445|0.81944\n106446|0.44444\n106447|0.31944\n106448|0.68056\n106449|0.30556\n106450|0.69444\n106451|0.44444\n106452|0.41667\n106453|0.625\n106454|0.38889\n106455|0.63889\n106456|0.40278\n106457|0.84722\n106458|0.125\n106459|0.54167\n106460|0.48611\n106461|0.625\n106462|0.27778\n106463|0.33333\n106464|0.31944\n106465|0.61111\n106466|0.34722\n106467|0.81944\n106468|0.84722\n106469|0.68056\n106470|0.041667\n106471|0.20833\n106472|0.40278\n106473|0.48611\n106474|0.40278\n106475|0.48611\n106476|0.097222\n106477|0.16667\n106478|0.013889\n106479|0.19444\n106480|0.027778\n106481|0.027778\n106482|0.31944\n106483|0.58333\n106484|0.69444\n106485|0.52778\n106486|0.5\n106487|0.22222\n106488|0.38889\n106489|0.5\n106490|0.44444\n106491|0.58333\n106492|0.44444\n106493|0.34722\n106494|0.44444\n106495|0.66667\n106496|0.80556\n106497|0.45833\n106498|0.48611\n106499|0.70833\n106500|0.61111\n106501|0.65278\n106502|0.63889\n106503|0.47222\n106504|0.5\n106505|0.5\n106506|0.23611\n106507|0.20833\n106508|0.5\n106509|0.45833\n106510|0.5\n106511|0.55556\n106512|0.13889\n106513|0.51389\n106514|0.83333\n106515|0.72222\n106516|0.20833\n106517|0.58333\n106518|0.68056\n106519|0.47222\n106520|0.29167\n106521|0.27778\n106522|0.5\n106523|0.51389\n106524|0.58333\n106525|0.79167\n106526|0.59722\n106527|0.52778\n106528|0.25\n106529|0.27778\n106530|0.61111\n106531|0.80556\n106532|0.68056\n106533|0.23611\n106534|0.23611\n106535|0.15278\n106536|0.22222\n106537|0.52778\n106538|0.59722\n106539|0.34722\n106540|0.55556\n106541|0.16667\n106542|0.48611\n106543|0.41667\n106544|0.48611\n106545|0.5\n106546|0.375\n106547|0.61111\n106548|0.5\n106549|0.5\n106550|0.18056\n106551|0.79167\n106552|0.48611\n106553|0.33333\n106554|0.34722\n106555|0.61111\n106556|0.875\n106557|0.79167\n106558|0.5\n106559|0.5\n106560|0.61111\n106561|0.38889\n106562|0.54167\n106563|0.48611\n106564|0.66667\n106565|0.79167\n106566|0.29167\n106567|0.31944\n106568|0.16667\n106569|0.36111\n106570|0.66667\n106571|0.45833\n106572|0.5\n106573|0.5\n106574|0.48611\n106575|0.51389\n106576|0.26389\n106577|0.59722\n106578|0.61111\n106579|0.76389\n106580|0.5\n106581|0.22222\n106582|0.5\n106583|0.25\n106584|0.25\n106585|0.66667\n106586|0.58333\n106587|0.58333\n106588|0.41667\n106589|0.86111\n106590|0.69444\n106591|0.66667\n106592|0.68056\n106593|0.5\n106594|0.36111\n106595|0.45833\n106596|0.43056\n106597|0.61111\n106598|0.40278\n106599|0.73611\n106600|0.45833\n106601|0.25\n106602|0.45833\n106603|0.69444\n106604|0.25\n106605|0.375\n106606|0.73611\n106607|0.81944\n106608|0.45833\n106609|0.5\n106610|0.44444\n106611|0.72222\n106612|0.63889\n106613|0.34722\n106614|0.40278\n106615|0.54167\n106616|0.45833\n106617|0.70833\n106618|0.51389\n106619|0.22222\n106620|0.55556\n106621|0.79167\n106622|0.083333\n106623|0.055556\n106624|0.58333\n106625|0.34722\n106626|0.66667\n106627|0.83333\n106628|0.52778\n106629|0.69444\n106630|0.58333\n106631|0.5\n106632|0.625\n106633|0.63889\n106634|0.70833\n106635|0.5\n106636|0.48611\n106637|0.45833\n106638|0.33333\n106639|0.66667\n106640|0.59722\n106641|0.69444\n106642|0.65278\n106643|0.29167\n106644|0.70833\n106645|0.79167\n106646|0.70833\n106647|0.58333\n106648|0.51389\n106649|0.68056\n106650|0.61111\n106651|0.59722\n106652|0.43056\n106653|0.16667\n106654|0.44444\n106655|0.31944\n106656|0.47222\n106657|0.5\n106658|0.19444\n106659|0.34722\n106660|0.44444\n106661|0.41667\n106662|0.30556\n106663|0.38889\n106664|0.29167\n106665|0.055556\n106666|0.5\n106667|0.47222\n106668|0.11111\n106669|0.33333\n106670|0.625\n106671|0.44444\n106672|0.52778\n106673|0.27778\n106674|0.55556\n106675|0.44444\n106676|0.65278\n106677|0.77778\n106678|0.40278\n106679|0.59722\n106680|0.65278\n106681|0.5\n106682|0.84722\n106683|0.56944\n106684|0.61111\n106685|0.55556\n106686|0.625\n106687|0.84722\n106688|0.81944\n106689|0.56944\n106690|0.48611\n106691|0.79167\n106692|0.5\n106693|0.59722\n106694|0.5\n106695|0.52778\n106696|0.43056\n106697|0.72222\n106698|0.76389\n106699|0.54167\n106700|0.5\n106701|0.5\n106702|0.38889\n106703|0.30556\n106704|0.33333\n106705|0.55556\n106706|0.58333\n106707|0.5\n106708|0.69444\n106709|0.34722\n106710|0.69444\n106711|0.45833\n106712|0.625\n106713|0.54167\n106714|0.31944\n106715|0.63889\n106716|0.25\n106717|0.63889\n106718|0.59722\n106719|0.47222\n106720|0.5\n106721|0.31944\n106722|0.5\n106723|0.69444\n106724|0.61111\n106725|0.41667\n106726|0.44444\n106727|0.26389\n106728|0.63889\n106729|0.48611\n106730|0.56944\n106731|0.68056\n106732|0.5\n106733|0.44444\n106734|0.5\n106735|0.5\n106736|0.5\n106737|0.55556\n106738|0.52778\n106739|0.55556\n106740|0.40278\n106741|0.38889\n106742|0.61111\n106743|0.625\n106744|0.5\n106745|0.22222\n106746|0.27778\n106747|0.59722\n106748|0.41667\n106749|0.31944\n106750|0.27778\n106751|0.45833\n106752|0.29167\n106753|0.47222\n106754|0.55556\n106755|0.65278\n106756|0.61111\n106757|0.69444\n106758|0.76389\n106759|0.80556\n106760|0.84722\n106761|0.52778\n106762|0.88889\n106763|0.88889\n106764|0.77778\n106765|0.51389\n106766|0.65278\n106767|0.51389\n106768|0.5\n106769|0.55556\n106770|0.61111\n106771|0.5\n106772|0.5\n106773|0.5\n106774|0.5\n106775|0.5\n106776|0.52778\n106777|0.13889\n106778|0.47222\n106779|0.5\n106780|0.13889\n106781|0.30556\n106782|0.34722\n106783|0.43056\n106784|0.40278\n106785|0.20833\n106786|0.31944\n106787|0.48611\n106788|0.41667\n106789|0.52778\n106790|0.81944\n106791|0.76389\n106792|0.54167\n106793|0.56944\n106794|0.5\n106795|0.5\n106796|0.625\n106797|0.68056\n106798|0.41667\n106799|0.52778\n106800|0.45833\n106801|0.30556\n106802|0.26389\n106803|0.11111\n106804|0.52778\n106805|0.83333\n106806|0.34722\n106807|0.79167\n106808|0.72222\n106809|0.51389\n106810|0.66667\n106811|0.58333\n106812|0.88889\n106813|0.18056\n106814|0.83333\n106815|0.73611\n106816|0.63889\n106817|0.59722\n106818|0.33333\n106819|0.125\n106820|0.77778\n106821|0.69444\n106822|0.77778\n106823|0.80556\n106824|0.5\n106825|0.61111\n106826|0.68056\n106827|0.69444\n106828|0.55556\n106829|0.43056\n106830|0.19444\n106831|0.16667\n106832|0.81944\n106833|0.055556\n106834|0.55556\n106835|0.29167\n106836|0.75\n106837|0.80556\n106838|0.77778\n106839|0.81944\n106840|0.76389\n106841|0.81944\n106842|0.48611\n106843|0.54167\n106844|0.48611\n106845|0.11111\n106846|0.72222\n106847|0.72222\n106848|0.65278\n106849|0.75\n106850|0.66667\n106851|0.875\n106852|0.86111\n106853|0.76389\n106854|0.097222\n106855|0.38889\n106856|0.22222\n106857|0.125\n106858|0.013889\n106859|0.47222\n106860|0.45833\n106861|0.43056\n106862|0.76389\n106863|0.52778\n106864|0.73611\n106865|0.83333\n106866|0.54167\n106867|0.47222\n106868|0.38889\n106869|0.70833\n106870|0.29167\n106871|0.40278\n106872|0.36111\n106873|0.68056\n106874|0.73611\n106875|0.73611\n106876|0.41667\n106877|0.68056\n106878|0.58333\n106879|0.76389\n106880|0.72222\n106881|0.31944\n106882|0.125\n106883|0.15278\n106884|0.36111\n106885|0.45833\n106886|0.375\n106887|0.18056\n106888|0.54167\n106889|0.56944\n106890|0.51389\n106891|0.20833\n106892|0.375\n106893|0.55556\n106894|0.22222\n106895|0.54167\n106896|0.44444\n106897|0.36111\n106898|0.77778\n106899|0.52778\n106900|0.66667\n106901|0.625\n106902|0.33333\n106903|0.34722\n106904|0.66667\n106905|0.69444\n106906|0.41667\n106907|0.375\n106908|0.54167\n106909|0.65278\n106910|0.66667\n106911|0.66667\n106912|0.84722\n106913|0.63889\n106914|0.63889\n106915|0.79167\n106916|0.79167\n106917|0.15278\n106918|0.33333\n106919|0.33333\n106920|0.47222\n106921|0.61111\n106922|0.55556\n106923|0.41667\n106924|0.43056\n106925|0.48611\n106926|0.51389\n106927|0.31944\n106928|0.38889\n106929|0.31944\n106930|0.31944\n106931|0.625\n106932|0.63889\n106933|0.33333\n106934|0.30556\n106935|0.44444\n106936|0.375\n106937|0.73611\n106938|0.65278\n106939|0.31944\n106940|0.47222\n106941|0.13889\n106942|0.069444\n106943|0.69444\n106944|0.69444\n106945|0.69444\n106946|0.70833\n106947|0.77778\n106948|0.125\n106949|0.097222\n106950|0.44444\n106951|0.19444\n106952|0.5\n106953|0.56944\n106954|0.63889\n106955|0.56944\n106956|0.375\n106957|0.19444\n106958|0.63889\n106959|0.055556\n106960|0.20833\n106961|0.84722\n106962|0.81944\n106963|0.65278\n106964|0.76389\n106965|0.86111\n106966|0.77778\n106967|0.80556\n106968|0.16667\n106969|0.80556\n106970|0.75\n106971|0.56944\n106972|0.38889\n106973|0.40278\n106974|0.54167\n106975|0.41667\n106976|0.83333\n106977|0.16667\n106978|0.72222\n106979|0.51389\n106980|0.83333\n106981|0.58333\n106982|0.81944\n106983|0.20833\n106984|0.44444\n106985|0.79167\n106986|0.40278\n106987|0.33333\n106988|0.61111\n106989|0.66667\n106990|0.45833\n106991|0.76389\n106992|0.19444\n106993|0.23611\n106994|0.40278\n106995|0.48611\n106996|0.36111\n106997|0.63889\n106998|0.083333\n106999|0.125\n107000|0.097222\n107001|0.22222\n107002|0.625\n107003|0.29167\n107004|0.44444\n107005|0.69444\n107006|0.59722\n107007|0.22222\n107008|0.72222\n107009|0.65278\n107010|0.69444\n107011|0.61111\n107012|0.83333\n107013|0.76389\n107014|0.70833\n107015|0.11111\n107016|0.47222\n107017|0.44444\n107018|0.11111\n107019|0.38889\n107020|0.041667\n107021|0.25\n107022|0.38889\n107023|0.36111\n107024|0.38889\n107025|0.11111\n107026|0.36111\n107027|0.51389\n107028|0.91667\n107029|0.27778\n107030|0.11111\n107031|0.27778\n107032|0.625\n107033|0.77778\n107034|0.52778\n107035|0.47222\n107036|0.63889\n107037|0.68056\n107038|0.54167\n107039|0.59722\n107040|0.44444\n107041|0.73611\n107042|0.75\n107043|0.375\n107044|0.38889\n107045|0.54167\n107046|0.73611\n107047|0.72222\n107048|0.47222\n107049|0.25\n107050|0.69444\n107051|0.61111\n107052|0.56944\n107053|0.70833\n107054|0.51389\n107055|0.80556\n107056|0.73611\n107057|0.65278\n107058|0.63889\n107059|0.70833\n107060|0.20833\n107061|0.069444\n107062|0.34722\n107063|0.30556\n107064|0.72222\n107065|0.54167\n107066|0.56944\n107067|0.59722\n107068|0.47222\n107069|0.58333\n107070|0.29167\n107071|0.16667\n107072|0.31944\n107073|0.61111\n107074|0.75\n107075|0.56944\n107076|0.65278\n107077|0.58333\n107078|0.875\n107079|0.20833\n107080|0.90278\n107081|0.5\n107082|0.44444\n107083|0.38889\n107084|0.38889\n107085|0.13889\n107086|0.47222\n107087|0.48611\n107088|0.68056\n107089|0.51389\n107090|0.58333\n107091|0.48611\n107092|0.55556\n107093|0.52778\n107094|0.55556\n107095|0.75\n107096|0.83333\n107097|0.73611\n107098|0.5\n107099|0.38889\n107100|0.59722\n107101|0.375\n107102|0.61111\n107103|0.63889\n107104|0.61111\n107105|0.77778\n107106|0.5\n107107|0.59722\n107108|0.61111\n107109|0.625\n107110|0.65278\n107111|0.83333\n107112|0.5\n107113|0.52778\n107114|0.44444\n107115|0.52778\n107116|0.41667\n107117|0.31944\n107118|0.54167\n107119|0.41667\n107120|0.375\n107121|0.125\n107122|0.48611\n107123|0.48611\n107124|0.65278\n107125|0.47222\n107126|0.41667\n107127|0.54167\n107128|0.5\n107129|0.5\n107130|0.29167\n107131|0.5\n107132|0.51389\n107133|0.77778\n107134|0.5\n107135|0.5\n107136|0.54167\n107137|0.70833\n107138|0.44444\n107139|0.375\n107140|0.47222\n107141|0.25\n107142|0.25\n107143|0.5\n107144|0.69444\n107145|0.25\n107146|0.48611\n107147|0.31944\n107148|0.55556\n107149|0.55556\n107150|0.56944\n107151|0.72222\n107152|0.52778\n107153|0.61111\n107154|0.5\n107155|0.5\n107156|0.38889\n107157|0.5\n107158|0.45833\n107159|0.61111\n107160|0.55556\n107161|0.54167\n107162|0.5\n107163|0.55556\n107164|0.83333\n107165|0.44444\n107166|0.47222\n107167|0.55556\n107168|0.5\n107169|0.44444\n107170|0.58333\n107171|0.58333\n107172|0.5\n107173|0.81944\n107174|0.5\n107175|0.73611\n107176|0.5\n107177|0.90278\n107178|0.5\n107179|0.5\n107180|0.40278\n107181|0.5\n107182|0.5\n107183|0.27778\n107184|0.30556\n107185|0.5\n107186|0.51389\n107187|0.63889\n107188|0.5\n107189|0.56944\n107190|0.61111\n107191|0.5\n107192|0.5\n107193|0.5\n107194|0.5\n107195|0.5\n107196|0.5\n107197|0.63889\n107198|0.5\n107199|0.54167\n107200|0.625\n107201|0.65278\n107202|0.55556\n107203|0.5\n107204|0.5\n107205|0.5\n107206|0.5\n107207|0.58333\n107208|0.5\n107209|0.5\n107210|0.68056\n107211|0.5\n107212|0.5\n107213|0.63889\n107214|0.5\n107215|0.56944\n107216|0.52778\n107217|0.65278\n107218|0.5\n107219|0.47222\n107220|0.25\n107221|0.90278\n107222|0.84722\n107223|0.5\n107224|0.40278\n107225|0.38889\n107226|0.125\n107227|0.41667\n107228|0.055556\n107229|0.055556\n107230|0.56944\n107231|0.5\n107232|0.5\n107233|0.40278\n107234|0.5\n107235|0.5\n107236|0.5\n107237|0.51389\n107238|0.58333\n107239|0.5\n107240|0.22222\n107241|0.54167\n107242|0.16667\n107243|0.38889\n107244|0.48611\n107245|0.16667\n107246|0.29167\n107247|0.055556\n107248|0.125\n107249|0.083333\n107250|0.23611\n107251|0.069444\n107252|0.33333\n107253|0.27778\n107254|0.38889\n107255|0.80556\n107256|0.73611\n107257|0.66667\n107258|0.36111\n107259|0.5\n107260|0.375\n107261|0.22222\n107262|0.47222\n107263|0.29167\n107264|0.68056\n107265|0.84722\n107266|0.40278\n107267|0.52778\n107268|0.18056\n107269|0.5\n107270|0.43056\n107271|0.5\n107272|0.56944\n107273|0.55556\n107274|0.45833\n107275|0.5\n107276|0.51389\n107277|0.41667\n107278|0.31944\n107279|0.52778\n107280|0.5\n107281|0.5\n107282|0.59722\n107283|0.5\n107284|0.625\n107285|0.5\n107286|0.5\n107287|0.5\n107288|0.5\n107289|0.40278\n107290|0.58333\n107291|0.5\n107292|0.40278\n107293|0.5\n107294|0.91667\n107295|0.5\n107296|0.83333\n107297|0.86111\n107298|0.75\n107299|0.77778\n107300|0.5\n107301|0.20833\n107302|0.69444\n107303|0.44444\n107304|0.48611\n107305|0.55556\n107306|0.65278\n107307|0.48611\n107308|0.40278\n107309|0.54167\n107310|0.55556\n107311|0.43056\n107312|0.47222\n107313|0.36111\n107314|0.65278\n107315|0.625\n107316|0.51389\n107317|0.83333\n107318|0.5\n107319|0.56944\n107320|0.52778\n107321|0.27778\n107322|0.52778\n107323|0.51389\n107324|0.52778\n107325|0.54167\n107326|0.66667\n107327|0.63889\n107328|0.875\n107329|0.38889\n107330|0.5\n107331|0.51389\n107332|0.5\n107333|0.58333\n107334|0.69444\n107335|0.29167\n107336|0.51389\n107337|0.61111\n107338|0.48611\n107339|0.63889\n107340|0.5\n107341|0.61111\n107342|0.61111\n107343|0.59722\n107344|0.38889\n107345|0.5\n107346|0.5\n107347|0.68056\n107348|0.33333\n107349|0.70833\n107350|0.75\n107351|0.77778\n107352|0.81944\n107353|0.5\n107354|0.5\n107355|0.58333\n107356|0.5\n107357|0.11111\n107358|0.55556\n107359|0.5\n107360|0.73611\n107361|0.5\n107362|0.47222\n107363|0.5\n107364|0.19444\n107365|0.30556\n107366|0.36111\n107367|0.58333\n107368|0.66667\n107369|0.51389\n107370|0.45833\n107371|0.41667\n107372|0.20833\n107373|0.33333\n107374|0.5\n107375|0.77778\n107376|0.5\n107377|0.48611\n107378|0.88889\n107379|0.61111\n107380|0.5\n107381|0.56944\n107382|0.61111\n107383|0.5\n107384|0.5\n107385|0.5\n107386|0.75\n107387|0.79167\n107388|0.54167\n107389|0.69444\n107390|0.625\n107391|0.66667\n107392|0.5\n107393|0.5\n107394|0.55556\n107395|0.88889\n107396|0.68056\n107397|0.65278\n107398|0.84722\n107399|0.94444\n107400|0.90278\n107401|0.55556\n107402|0.44444\n107403|0.875\n107404|0.27778\n107405|0.58333\n107406|0.29167\n107407|0.22222\n107408|0.58333\n107409|0.5\n107410|0.5\n107411|0.54167\n107412|0.5\n107413|0.25\n107414|0.25\n107415|0.41667\n107416|0.41667\n107417|0.55556\n107418|0.63889\n107419|0.65278\n107420|0.34722\n107421|0.40278\n107422|0.54167\n107423|0.51389\n107424|0.58333\n107425|0.23611\n107426|0.36111\n107427|0.27778\n107428|0.45833\n107429|0.5\n107430|0.5\n107431|0.65278\n107432|0.5\n107433|0.5\n107434|0.48611\n107435|0.65278\n107436|0.83333\n107437|0.51389\n107438|0.77778\n107439|0.72222\n107440|0.5\n107441|0.73611\n107442|0.58333\n107443|0.22222\n107444|0.375\n107445|0.36111\n107446|0.68056\n107447|0.70833\n107448|0.38889\n107449|0.81944\n107450|0.79167\n107451|0.75\n107452|0.55556\n107453|0.66667\n107454|0.69444\n107455|0.66667\n107456|0.55556\n107457|0.18056\n107458|0.375\n107459|0.097222\n107460|0.16667\n107461|0.54167\n107462|0.84722\n107463|0.34722\n107464|0.51389\n107465|0.58333\n107466|0.79167\n107467|0.52778\n107468|0.31944\n107469|0.19444\n107470|0.27778\n107471|0.33333\n107472|0.61111\n107473|0.33333\n107474|0.083333\n107475|0.40278\n107476|0.29167\n107477|0.55556\n107478|0.055556\n107479|0.55556\n107480|0.33333\n107481|0.38889\n107482|0.29167\n107483|0.30556\n107484|0.5\n107485|0.58333\n107486|0.56944\n107487|0.41667\n107488|0.75\n107489|0.31944\n107490|0.20833\n107491|0.44444\n107492|0.5\n107493|0.5\n107494|0.66667\n107495|0.5\n107496|0.625\n107497|0.5\n107498|0.5\n107499|0.5\n107500|0.52778\n107501|0.40278\n107502|0.56944\n107503|0.58333\n107504|0.51389\n107505|0.88889\n107506|0.22222\n107507|0.59722\n107508|0.5\n107509|0.48611\n107510|0.5\n107511|0.5\n107512|0.5\n107513|0.625\n107514|0.48611\n107515|0.59722\n107516|0.63889\n107517|0.20833\n107518|0.13889\n107519|0.52778\n107520|0.48611\n107521|0.76389\n107522|0.72222\n107523|0.44444\n107524|0.26389\n107525|0.30556\n107526|0.097222\n107527|0.52778\n107528|0.77778\n107529|0.72222\n107530|0.63889\n107531|0.26389\n107532|0.18056\n107533|0.5\n107534|0.5\n107535|0.61111\n107536|0.66667\n107537|0.54167\n107538|0.84722\n107539|0.33333\n107540|0.65278\n107541|0.54167\n107542|0.54167\n107543|0.5\n107544|0.79167\n107545|0.75\n107546|0.93056\n107547|0.73611\n107548|0.93056\n107549|0.83333\n107550|0.43056\n107551|0.29167\n107552|0.66667\n107553|0.5\n107554|0.36111\n107555|0.52778\n107556|0.55556\n107557|0.38889\n107558|0.61111\n107559|0.5\n107560|0.5\n107561|0.54167\n107562|0.51389\n107563|0.45833\n107564|0.51389\n107565|0.5\n107566|0.5\n107567|0.5\n107568|0.75\n107569|0.51389\n107570|0.56944\n107571|0.83333\n107572|0.5\n107573|0.5\n107574|0.5\n107575|0.625\n107576|0.5\n107577|0.55556\n107578|0.52778\n107579|0.52778\n107580|0.43056\n107581|0.40278\n107582|0.51389\n107583|0.375\n107584|0.48611\n107585|0.625\n107586|0.70833\n107587|0.81944\n107588|0.5\n107589|0.5\n107590|0.5\n107591|0.83333\n107592|0.5\n107593|0.47222\n107594|0.5\n107595|0.55556\n107596|0.5\n107597|0.5\n107598|0.5\n107599|0.5\n107600|0.5\n107601|0.48611\n107602|0.70833\n107603|0.5\n107604|0.5\n107605|0.5\n107606|0.69444\n107607|0.5\n107608|0.76389\n107609|0.72222\n107610|0.72222\n107611|0.73611\n107612|0.86111\n107613|0.70833\n107614|0.22222\n107615|0.61111\n107616|0.5\n107617|0.5\n107618|0.55556\n107619|0.69444\n107620|0.5\n107621|0.5\n107622|0.54167\n107623|0.58333\n107624|0.5\n107625|0.5\n107626|0.5\n107627|0.625\n107628|0.44444\n107629|0.44444\n107630|0.45833\n107631|0.5\n107632|0.54167\n107633|0.84722\n107634|0.76389\n107635|0.5\n107636|0.51389\n107637|1\n107638|0.54167\n107639|0.44444\n107640|0.5\n107641|0.63889\n107642|0.52778\n107643|0.58333\n107644|0.45833\n107645|0.5\n107646|0.5\n107647|0.27778\n107648|0.38889\n107649|0.5\n107650|0.83333\n107651|0.61111\n107652|0.73611\n107653|0.70833\n107654|0.43056\n107655|0.5\n107656|0.47222\n107657|0.68056\n107658|0.70833\n107659|0.68056\n107660|0.56944\n107661|0.38889\n107662|0.51389\n107663|0.68056\n107664|0.61111\n107665|0.5\n107666|0.19444\n107667|0.5\n107668|0.83333\n107669|0.5\n107670|0.5\n107671|0.5\n107672|0.5\n107673|0.61111\n107674|0.56944\n107675|0.41667\n107676|0.5\n107677|0.5\n107678|0.5\n107679|0.5\n107680|0.5\n107681|0.69444\n107682|0.5\n107683|0.20833\n107684|0.16667\n107685|0.5\n107686|0.5\n107687|0.52778\n107688|0.5\n107689|0.51389\n107690|0.5\n107691|0.44444\n107692|0.41667\n107693|0.65278\n107694|0.40278\n107695|0.56944\n107696|0.38889\n107697|0.5\n107698|0.45833\n107699|0.54167\n107700|0.5\n107701|0.40278\n107702|0.44444\n107703|0.5\n107704|0.77778\n107705|0.75\n107706|0.5\n107707|0.52778\n107708|0.76389\n107709|0.51389\n107710|0.77778\n107711|0.83333\n107712|0.5\n107713|0.5\n107714|0.22222\n107715|0.48611\n107716|0.19444\n107717|0.5\n107718|0.5\n107719|0.72222\n107720|0.47222\n107721|0.45833\n107722|0.58333\n107723|0.56944\n107724|0.51389\n107725|0.41667\n107726|0.68056\n107727|0.69444\n107728|0.48611\n107729|0.69444\n107730|0.47222\n107731|0.47222\n107732|0.5\n107733|0.61111\n107734|0.48611\n107735|0.5\n107736|0.5\n107737|0.5\n107738|0.5\n107739|0.80556\n107740|0.69444\n107741|0.58333\n107742|0.52778\n107743|0.23611\n107744|0.5\n107745|0.52778\n107746|0.5\n107747|0.45833\n107748|0.5\n107749|0.38889\n107750|0.40278\n107751|0.625\n107752|0.5\n107753|0.51389\n107754|0.52778\n107755|0.44444\n107756|0.40278\n107757|0.5\n107758|0.069444\n107759|0.5\n107760|0.47222\n107761|0.61111\n107762|0.68056\n107763|0.80556\n107764|0.5\n107765|0.52778\n107766|0.58333\n107767|0.5\n107768|0.58333\n107769|0.61111\n107770|0.59722\n107771|0.16667\n107772|0.23611\n107773|0.29167\n107774|0.11111\n107775|0.22222\n107776|0.79167\n107777|0.56944\n107778|0.5\n107779|0.75\n107780|0.61111\n107781|0.5\n107782|0.5\n107783|0.52778\n107784|0.94444\n107785|0.76389\n107786|0.73611\n107787|0.84722\n107788|0.94444\n107789|0.73611\n107790|0.86111\n107791|0.44444\n107792|0.38889\n107793|0.5\n107794|0.5\n107795|0.58333\n107796|0.47222\n107797|0.63889\n107798|0.45833\n107799|0.51389\n107800|0.5\n107801|0.80556\n107802|0.73611\n107803|0.77778\n107804|0.52778\n107805|0.47222\n107806|0.51389\n107807|0.58333\n107808|0.65278\n107809|0.59722\n107810|0.69444\n107811|0.70833\n107812|0.83333\n107813|0.69444\n107814|0.73611\n107815|0.70833\n107816|0.5\n107817|0.26389\n107818|0.16667\n107819|0.5\n107820|0.19444\n107821|0.40278\n107822|0.52778\n107823|0.52778\n107824|0.38889\n107825|0.54167\n107826|0.63889\n107827|0.55556\n107828|0.44444\n107829|0.51389\n107830|0.84722\n107831|0.65278\n107832|0.875\n107833|0.88889\n107834|0.5\n107835|0.51389\n107836|0.63889\n107837|0.625\n107838|0.83333\n107839|0.18056\n107840|0.41667\n107841|0.38889\n107842|0.22222\n107843|0.61111\n107844|0.45833\n107845|0.5\n107846|0.5\n107847|0.5\n107848|0.55556\n107849|0.63889\n107850|0.40278\n107851|0.5\n107852|0.75\n107853|0.5\n107854|0.875\n107855|0.69444\n107856|0.625\n107857|0.55556\n107858|0.625\n107859|0.56944\n107860|0.36111\n107861|0.5\n107862|0.63889\n107863|0.61111\n107864|0.5\n107865|0.5\n107866|0.5\n107867|0.5\n107868|0.5\n107869|0.5\n107870|0.54167\n107871|0.5\n107872|0.47222\n107873|0.68056\n107874|0.72222\n107875|0.84722\n107876|0.54167\n107877|0.45833\n107878|0.48611\n107879|0.69444\n107880|0.69444\n107881|0.26389\n107882|0.48611\n107883|0.19444\n107884|0.5\n107885|0.25\n107886|0.72222\n107887|0.5\n107888|0.68056\n107889|0.5\n107890|0.5\n107891|0.5\n107892|0.30556\n107893|0.38889\n107894|0.41667\n107895|0.36111\n107896|0.55556\n107897|0.59722\n107898|0.5\n107899|0.5\n107900|0.5\n107901|0.5\n107902|0.48611\n107903|0.55556\n107904|0.5\n107905|0.54167\n107906|0.27778\n107907|0.44444\n107908|0.66667\n107909|0.5\n107910|0.80556\n107911|0.40278\n107912|0.34722\n107913|0.5\n107914|0.41667\n107915|0.5\n107916|0.083333\n107917|0.70833\n107918|0.069444\n107919|0.40278\n107920|0.5\n107921|0.5\n107922|0.5\n107923|0.5\n107924|0.48611\n107925|0.5\n107926|0.45833\n107927|0.51389\n107928|0.5\n107929|0.44444\n107930|0.55556\n107931|0.20833\n107932|0.16667\n107933|0.33333\n107934|0.63889\n107935|0.5\n107936|0.45833\n107937|0.55556\n107938|0.5\n107939|0.55556\n107940|0.5\n107941|0.22222\n107942|0.48611\n107943|0.625\n107944|0.5\n107945|0.58333\n107946|0.51389\n107947|0.65278\n107948|0.58333\n107949|0.38889\n107950|0.41667\n107951|0.45833\n107952|0.52778\n107953|0.63889\n107954|0.5\n107955|0.5\n107956|0.5\n107957|0.70833\n107958|0.59722\n107959|0.68056\n107960|0.80556\n107961|0.5\n107962|0.5\n107963|0.63889\n107964|0.44444\n107965|0.29167\n107966|0.56944\n107967|0.5\n107968|0.5\n107969|0.65278\n107970|0.5\n107971|0.54167\n107972|0.36111\n107973|0.125\n107974|0.66667\n107975|0.58333\n107976|0.69444\n107977|0.68056\n107978|0.625\n107979|0.44444\n107980|0.66667\n107981|0.5\n107982|0.31944\n107983|0.13889\n107984|0.5\n107985|0.52778\n107986|0.5\n107987|0.55556\n107988|0.72222\n107989|0.29167\n107990|0.77778\n107991|0.5\n107992|0.43056\n107993|0.5\n107994|0.84722\n107995|0.5\n107996|0.51389\n107997|0.5\n107998|0.47222\n107999|0.5\n108000|0.5\n108001|0.58333\n108002|0.47222\n108003|0.055556\n108004|0.5\n108005|0.44444\n108006|0.34722\n108007|0.44444\n108008|0.56944\n108009|0.26389\n108010|0.40278\n108011|0.52778\n108012|0.5\n108013|0.5\n108014|0.5\n108015|0.47222\n108016|0.43056\n108017|0.59722\n108018|0.66667\n108019|0.61111\n108020|0.36111\n108021|0.31944\n108022|1\n108023|0.5\n108024|0.52778\n108025|0.51389\n108026|0.73611\n108027|0.94444\n108028|0.25\n108029|0.16667\n108030|0.45833\n108031|0.15278\n108032|0.22222\n108033|0.18056\n108034|0.51389\n108035|0.375\n108036|0.5\n108037|0.51389\n108038|0.5\n108039|0.5\n108040|0.5\n108041|0.5\n108042|0.45833\n108043|0.55556\n108044|0.61111\n108045|0.77778\n108046|0.81944\n108047|0.625\n108048|0.88889\n108049|0.68056\n108050|0.625\n108051|0.47222\n108052|0.52778\n108053|0.55556\n108054|0.5\n108055|0.47222\n108056|0.84722\n108057|0.20833\n108058|0.13889\n108059|0.45833\n108060|0.41667\n108061|0.48611\n108062|0.76389\n108063|0.83333\n108064|0.20833\n108065|0.055556\n108066|0.23611\n108067|0.88889\n108068|0.33333\n108069|0.22222\n108070|0.22222\n108071|0.75\n108072|0.69444\n108073|0.81944\n108074|0.69444\n108075|0.125\n108076|0.31944\n108077|0.23611\n108078|0.36111\n108079|0.22222\n108080|0.27778\n108081|0.19444\n108082|0.52778\n108083|0.93056\n108084|0.90278\n108085|0.83333\n108086|0.52778\n108087|0.59722\n108088|0.54167\n108089|0.5\n108090|0.5\n108091|0.26389\n108092|0.31944\n108093|0.34722\n108094|0.61111\n108095|0.5\n108096|0.40278\n108097|0.56944\n108098|0.44444\n108099|0.55556\n108100|0.19444\n108101|0.45833\n108102|0.5\n108103|0.52778\n108104|0.55556\n108105|0.5\n108106|0.55556\n108107|0.25\n108108|0.69444\n108109|0.375\n108110|0.19444\n108111|0.33333\n108112|0.38889\n108113|0.22222\n108114|0.15278\n108115|0.51389\n108116|0.65278\n108117|0.59722\n108118|0.34722\n108119|0.33333\n108120|0.55556\n108121|0.5\n108122|0.77778\n108123|0.69444\n108124|0.70833\n108125|0.80556\n108126|0.5\n108127|0.61111\n108128|0.70833\n108129|0.59722\n108130|0.5\n108131|0.47222\n108132|0.5\n108133|0.54167\n108134|0.76389\n108135|0.79167\n108136|0.5\n108137|0.5\n108138|0.47222\n108139|0.43056\n108140|0.13889\n108141|0.097222\n108142|0.33333\n108143|0.5\n108144|0.55556\n108145|0.40278\n108146|0.38889\n108147|0.69444\n108148|0.77778\n108149|0.51389\n108150|0.66667\n108151|0.73611\n108152|0.59722\n108153|0.86111\n108154|0.90278\n108155|0.93056\n108156|0.61111\n108157|0.81944\n108158|0.875\n108159|0.77778\n108160|0.66667\n108161|0.48611\n108162|0.80556\n108163|0.80556\n108164|0.88889\n108165|0.72222\n108166|0.90278\n108167|0.875\n108168|0.58333\n108169|0.80556\n108170|0.65278\n108171|0.069444\n108172|0.94444\n108173|0.94444\n108174|0.69444\n108175|0.84722\n108176|0.80556\n108177|0.93056\n108178|0.29167\n108179|0.40278\n108180|0.52778\n108181|0.75\n108182|0.55556\n108183|0.90278\n108184|0.875\n108185|0.5\n108186|0.22222\n108187|0.33333\n108188|0.36111\n108189|0.29167\n108190|0.38889\n108191|0.47222\n108192|0.55556\n108193|0.20833\n108194|0.23611\n108195|0.125\n108196|0.77778\n108197|0.76389\n108198|0.80556\n108199|0.45833\n108200|0.69444\n108201|0.54167\n108202|0.84722\n108203|0.66667\n108204|0.375\n108205|0.20833\n108206|0.54167\n108207|0.52778\n108208|0.48611\n108209|0.45833\n108210|0.55556\n108211|0.5\n108212|0.44444\n108213|0.5\n108214|0.52778\n108215|0.25\n108216|0.58333\n108217|0.47222\n108218|0.59722\n108219|0.36111\n108220|0.56944\n108221|0.59722\n108222|0.5\n108223|0.52778\n108224|0.5\n108225|0.55556\n108226|0.73611\n108227|0.47222\n108228|0.5\n108229|0.63889\n108230|0.27778\n108231|0.43056\n108232|0.45833\n108233|0.5\n108234|0.48611\n108235|0.80556\n108236|0.5\n108237|0.5\n108238|0.51389\n108239|0.5\n108240|0.5\n108241|0.59722\n108242|0.5\n108243|0.56944\n108244|0.59722\n108245|0.81944\n108246|0.91667\n108247|0.5\n108248|0.5\n108249|0.44444\n108250|0.65278\n108251|0.5\n108252|0.51389\n108253|0.18056\n108254|0.16667\n108255|0.33333\n108256|0.20833\n108257|0.23611\n108258|0.16667\n108259|0.5\n108260|0.5\n108261|0.83333\n108262|0.56944\n108263|0.59722\n108264|0.75\n108265|0.45833\n108266|0.34722\n108267|0.5\n108268|0.45833\n108269|0.5\n108270|0.33333\n108271|0.29167\n108272|0.51389\n108273|0.55556\n108274|0.73611\n108275|0.18056\n108276|0.86111\n108277|0.5\n108278|0.5\n108279|0.5\n108280|0.38889\n108281|0.5\n108282|0.65278\n108283|0.5\n108284|0.5\n108285|0.36111\n108286|0.66667\n108287|0.375\n108288|0.31944\n108289|0.81944\n108290|0.73611\n108291|0.58333\n108292|0.44444\n108293|0.56944\n108294|0.38889\n108295|0.80556\n108296|0.81944\n108297|0.58333\n108298|0.11111\n108299|0.5\n108300|0.23611\n108301|0.27778\n108302|0.375\n108303|0.40278\n108304|0.63889\n108305|0.5\n108306|0.43056\n108307|0.5\n108308|0.5\n108309|0.5\n108310|0.73611\n108311|0.5\n108312|0.41667\n108313|0.69444\n108314|0.5\n108315|0.58333\n108316|0.68056\n108317|0.73611\n108318|0.90278\n108319|0.79167\n108320|0.5\n108321|0.5\n108322|0.5\n108323|0.5\n108324|0.5\n108325|0.52778\n108326|0.5\n108327|0.5\n108328|0.5\n108329|0.5\n108330|0.52778\n108331|0.5\n108332|0.48611\n108333|0.59722\n108334|0.59722\n108335|0.54167\n108336|0.875\n108337|0.5\n108338|0.5\n108339|0.34722\n108340|0.59722\n108341|0.30556\n108342|0.27778\n108343|0.5\n108344|0.5\n108345|0.5\n108346|0.5\n108347|0.5\n108348|0.45833\n108349|0.86111\n108350|0.80556\n108351|0.61111\n108352|0.45833\n108353|0.47222\n108354|0.84722\n108355|0.625\n108356|0.75\n108357|0.79167\n108358|0.75\n108359|0.75\n108360|0.59722\n108361|0.58333\n108362|0.5\n108363|0.5\n108364|0.86111\n108365|0.55556\n108366|0.5\n108367|0.5\n108368|0.91667\n108369|0.80556\n108370|0.81944\n108371|0.875\n108372|0.90278\n108373|0.81944\n108374|0.69444\n108375|0.5\n108376|0.51389\n108377|0.5\n108378|0.88889\n108379|0.5\n108380|0.5\n108381|0.5\n108382|0.5\n108383|0.44444\n108384|0.59722\n108385|0.48611\n108386|0.5\n108387|0.5\n108388|0.5\n108389|0.44444\n108390|0.77778\n108391|0.70833\n108392|0.68056\n108393|0.79167\n108394|0.52778\n108395|0.59722\n108396|0.34722\n108397|0.5\n108398|0.55556\n108399|0.63889\n108400|0.55556\n108401|0.5\n108402|0.36111\n108403|0.54167\n108404|0.59722\n108405|0.375\n108406|0.84722\n108407|0.625\n108408|0.48611\n108409|0.30556\n108410|0.5\n108411|0.083333\n108412|0.41667\n108413|0.26389\n108414|0.16667\n108415|0.20833\n108416|0\n108417|0.15278\n108418|0.22222\n108419|0.13889\n108420|0.013889\n108421|0.5\n108422|0.55556\n108423|0.52778\n108424|0.18056\n108425|0.79167\n108426|0.59722\n108427|0.69444\n108428|0.5\n108429|0.5\n108430|0.44444\n108431|0.23611\n108432|0.52778\n108433|0.61111\n108434|0.41667\n108435|0.5\n108436|0.54167\n108437|0.61111\n108438|0.63889\n108439|0.5\n108440|0.5\n108441|0.81944\n108442|0.15278\n108443|0.5\n108444|0.5\n108445|0.81944\n108446|0.56944\n108447|0.52778\n108448|0.41667\n108449|0.5\n108450|0.33333\n108451|0.5\n108452|0.77778\n108453|0.31944\n108454|0.45833\n108455|0.47222\n108456|0.27778\n108457|0.47222\n108458|0.58333\n108459|0.45833\n108460|0.27778\n108461|0.48611\n108462|0.58333\n108463|0.5\n108464|0.625\n108465|0.33333\n108466|0.51389\n108467|0.5\n108468|0.55556\n108469|0.34722\n108470|0.5\n108471|0.33333\n108472|0.76389\n108473|0.5\n108474|0.55556\n108475|0.5\n108476|0.51389\n108477|0.5\n108478|0.625\n108479|0.73611\n108480|0.26389\n108481|0.72222\n108482|0.63889\n108483|0.65278\n108484|0.65278\n108485|0.55556\n108486|0.76389\n108487|0.58333\n108488|0.5\n108489|0.34722\n108490|0.58333\n108491|0.58333\n108492|0.55556\n108493|0.52778\n108494|0.5\n108495|0.48611\n108496|0.5\n108497|0.5\n108498|0.5\n108499|0.73611\n108500|0.73611\n108501|0.73611\n108502|0.52778\n108503|0.48611\n108504|0.625\n108505|0.63889\n108506|0.59722\n108507|0.40278\n108508|0.41667\n108509|0.33333\n108510|0.5\n108511|0.52778\n108512|0.52778\n108513|0.16667\n108514|0.36111\n108515|0.88889\n108516|0.5\n108517|0.5\n108518|0.65278\n108519|0.5\n108520|0.5\n108521|0.5\n108522|0.54167\n108523|0.61111\n108524|0.69444\n108525|0.5\n108526|0.55556\n108527|0.5\n108528|0.16667\n108529|0.5\n108530|0.5\n108531|0.5\n108532|0.45833\n108533|0.5\n108534|0.5\n108535|0.5\n108536|0.5\n108537|0.45833\n108538|0.51389\n108539|0.86111\n108540|0.56944\n108541|0.5\n108542|0.5\n108543|0.47222\n108544|0.51389\n108545|0.56944\n108546|0.5\n108547|0.5\n108548|0.5\n108549|0.5\n108550|0.5\n108551|0.73611\n108552|0.5\n108553|0.55556\n108554|0.5\n108555|0.75\n108556|0.61111\n108557|0.36111\n108558|0.26389\n108559|0.84722\n108560|0.86111\n108561|0.75\n108562|0.33333\n108563|0.47222\n108564|0.77778\n108565|0.55556\n108566|0.5\n108567|0.52778\n108568|0.83333\n108569|0.5\n108570|0.5\n108571|0.5\n108572|0.31944\n108573|0.22222\n108574|0.45833\n108575|0.5\n108576|0.5\n108577|0.54167\n108578|0.5\n108579|0.5\n108580|0.75\n108581|0.27778\n108582|0.875\n108583|0.84722\n108584|0.93056\n108585|0.69444\n108586|0.84722\n108587|0.47222\n108588|0.66667\n108589|0.625\n108590|0.68056\n108591|0.59722\n108592|0.56944\n108593|0.59722\n108594|0.45833\n108595|0.52778\n108596|0.72222\n108597|0.61111\n108598|0.75\n108599|0.41667\n108600|0.76389\n108601|0.73611\n108602|0.5\n108603|0.48611\n108604|0.76389\n108605|0.76389\n108606|0.47222\n108607|0.55556\n108608|0.5\n108609|0.33333\n108610|0.66667\n108611|0.61111\n108612|0.30556\n108613|0.47222\n108614|0.34722\n108615|0.23611\n108616|0.375\n108617|0.51389\n108618|0.66667\n108619|0.5\n108620|0.44444\n108621|0.5\n108622|0.48611\n108623|0.5\n108624|0.31944\n108625|0.75\n108626|0.70833\n108627|0.5\n108628|0.5\n108629|0.5\n108630|0.70833\n108631|0.375\n108632|0.18056\n108633|0.19444\n108634|0.34722\n108635|0.20833\n108636|0.44444\n108637|0.625\n108638|0.5\n108639|0.5\n108640|0.47222\n108641|0.66667\n108642|0.43056\n108643|0.79167\n108644|0.59722\n108645|0.66667\n108646|0.86111\n108647|0.72222\n108648|0.70833\n108649|0.51389\n108650|0.59722\n108651|0.68056\n108652|0.5\n108653|0.5\n108654|0.26389\n108655|0.5\n108656|0.5\n108657|0.55556\n108658|0.5\n108659|0.5\n108660|0.5\n108661|0.625\n108662|0.5\n108663|0.5\n108664|0.66667\n108665|0.84722\n108666|0.5\n108667|0.65278\n108668|0.51389\n108669|0.69444\n108670|0.5\n108671|0.5\n108672|0.44444\n108673|0.5\n108674|0.5\n108675|0.5\n108676|0.55556\n108677|0.11111\n108678|0.5\n108679|0.48611\n108680|0.83333\n108681|0.86111\n108682|0.5\n108683|0.5\n108684|0.5\n108685|0.5\n108686|0.5\n108687|0.65278\n108688|0.5\n108689|0.66667\n108690|0.73611\n108691|0.54167\n108692|0.5\n108693|0.79167\n108694|0.125\n108695|0.55556\n108696|0.5\n108697|0.61111\n108698|0.5\n108699|0.5\n108700|0.5\n108701|0.5\n108702|0.56944\n108703|0.61111\n108704|0.68056\n108705|0.52778\n108706|0.59722\n108707|0.51389\n108708|0.5\n108709|0.58333\n108710|0.44444\n108711|0.5\n108712|0.55556\n108713|0.20833\n108714|0.5\n108715|0.45833\n108716|0.58333\n108717|0.5\n108718|0.58333\n108719|0.54167\n108720|0.55556\n108721|0.5\n108722|0.18056\n108723|0.5\n108724|0.41667\n108725|0.5\n108726|0.5\n108727|0.5\n108728|0.5\n108729|0.30556\n108730|0.25\n108731|0.25\n108732|0.56944\n108733|0.5\n108734|0.55556\n108735|0.51389\n108736|0.5\n108737|0.72222\n108738|0.5\n108739|0.5\n108740|0.5\n108741|0.5\n108742|0.5\n108743|0.47222\n108744|0.77778\n108745|0.5\n108746|0.5\n108747|0.69444\n108748|0.5\n108749|0.375\n108750|0.58333\n108751|0.51389\n108752|0.34722\n108753|0.5\n108754|0.5\n108755|0.5\n108756|0.51389\n108757|0.5\n108758|0.43056\n108759|0.72222\n108760|0.75\n108761|0.77778\n108762|0.75\n108763|0.72222\n108764|0.72222\n108765|0.77778\n108766|0.47222\n108767|0.625\n108768|0.68056\n108769|0.48611\n108770|0.5\n108771|0.56944\n108772|0.56944\n108773|0.77778\n108774|0.72222\n108775|0.66667\n108776|0.69444\n108777|0.375\n108778|0.84722\n108779|0.5\n108780|0.55556\n108781|0.33333\n108782|0.29167\n108783|0.33333\n108784|0.36111\n108785|0.15278\n108786|0.76389\n108787|0.5\n108788|0.5\n108789|0.625\n108790|0.66667\n108791|0.86111\n108792|0.5\n108793|0.5\n108794|0.65278\n108795|0.59722\n108796|0.83333\n108797|0.5\n108798|0.61111\n108799|0.5\n108800|0.5\n108801|0.55556\n108802|0.5\n108803|0.51389\n108804|0.5\n108805|0.51389\n108806|0.54167\n108807|0.18056\n108808|0.44444\n108809|0.69444\n108810|0.40278\n108811|0.70833\n108812|0.48611\n108813|0.5\n108814|0.5\n108815|0.59722\n108816|0.5\n108817|0.58333\n108818|0.5\n108819|0.43056\n108820|0.47222\n108821|0.44444\n108822|0.76389\n108823|0.5\n108824|0.56944\n108825|0.34722\n108826|0.41667\n108827|0.375\n108828|0.29167\n108829|0.083333\n108830|0.33333\n108831|0.34722\n108832|0.083333\n108833|0.5\n108834|0.61111\n108835|0.68056\n108836|0.77778\n108837|0.80556\n108838|0.76389\n108839|0.73611\n108840|0.069444\n108841|0.29167\n108842|0.5\n108843|0.33333\n108844|0.5\n108845|0.5\n108846|0.5\n108847|0.5\n108848|0.56944\n108849|0.55556\n108850|0.5\n108851|0.69444\n108852|0.55556\n108853|0.73611\n108854|0.84722\n108855|0.5\n108856|0.5\n108857|0.26389\n108858|0.5\n108859|0.59722\n108860|0.5\n108861|0.055556\n108862|0.5\n108863|0.68056\n108864|0.23611\n108865|0.23611\n108866|0.33333\n108867|0.29167\n108868|0.26389\n108869|0.30556\n108870|0.013889\n108871|0.44444\n108872|0.83333\n108873|0.5\n108874|0.77778\n108875|0.625\n108876|0.75\n108877|0.56944\n108878|0.5\n108879|0.20833\n108880|0.45833\n108881|0.44444\n108882|0.5\n108883|0.83333\n108884|0.65278\n108885|0.63889\n108886|0.58333\n108887|0.47222\n108888|0.45833\n108889|0.5\n108890|0.68056\n108891|0.43056\n108892|0.48611\n108893|0.375\n108894|0.875\n108895|0.84722\n108896|0.5\n108897|0.5\n108898|0.5\n108899|0.88889\n108900|0.76389\n108901|0.5\n108902|0.69444\n108903|0.81944\n108904|0.44444\n108905|0.70833\n108906|0.51389\n108907|0.84722\n108908|0.66667\n108909|0.48611\n108910|0.52778\n108911|0.625\n108912|0.33333\n108913|0.65278\n108914|0.80556\n108915|0.5\n108916|0.5\n108917|0.51389\n108918|0.5\n108919|0.81944\n108920|0.38889\n108921|0.20833\n108922|0.5\n108923|0.5\n108924|0.5\n108925|0.30556\n108926|0.23611\n108927|0.27778\n108928|0.19444\n108929|0.63889\n108930|0.70833\n108931|0.61111\n108932|0.30556\n108933|0.375\n108934|0.375\n108935|0.63889\n108936|0.5\n108937|0.5\n108938|0.51389\n108939|0.70833\n108940|0.70833\n108941|0.72222\n108942|0.83333\n108943|0.80556\n108944|0.63889\n108945|0.80556\n108946|0.5\n108947|0.45833\n108948|0.40278\n108949|0.63889\n108950|0.51389\n108951|0.31944\n108952|0.51389\n108953|0.36111\n108954|0.34722\n108955|0.51389\n108956|0.5\n108957|0.61111\n108958|0.83333\n108959|0.77778\n108960|0.73611\n108961|0.40278\n108962|0.58333\n108963|0.36111\n108964|0.29167\n108965|0.29167\n108966|0.59722\n108967|0.625\n108968|0.81944\n108969|0.81944\n108970|0.58333\n108971|0.5\n108972|0.38889\n108973|0.22222\n108974|0.5\n108975|0.5\n108976|0.5\n108977|0.55556\n108978|0.61111\n108979|0.55556\n108980|0.51389\n108981|0.5\n108982|0.56944\n108983|0.51389\n108984|0.16667\n108985|0.30556\n108986|0.18056\n108987|0.52778\n108988|0.38889\n108989|0.5\n108990|0.38889\n108991|0.63889\n108992|0.70833\n108993|0.54167\n108994|0.83333\n108995|0.16667\n108996|0.16667\n108997|0.16667\n108998|0.11111\n108999|0.5\n109000|0.48611\n109001|0.45833\n109002|0.55556\n109003|0.77778\n109004|0.69444\n109005|0.61111\n109006|0.59722\n109007|0.72222\n109008|0.66667\n109009|0.625\n109010|0.5\n109011|0.61111\n109012|0.625\n109013|0.25\n109014|0.43056\n109015|0.51389\n109016|0.58333\n109017|0.5\n109018|0.5\n109019|0.61111\n109020|0.44444\n109021|0.5\n109022|0.94444\n109023|0.63889\n109024|0.68056\n109025|0.27778\n109026|0.45833\n109027|0.70833\n109028|0.68056\n109029|0.69444\n109030|0.54167\n109031|0.5\n109032|0.5\n109033|0.5\n109034|0.80556\n109035|0.55556\n109036|0.5\n109037|0.18056\n109038|0.19444\n109039|0.54167\n109040|0.52778\n109041|0.44444\n109042|0.5\n109043|0.5\n109044|0.51389\n109045|0.59722\n109046|0.45833\n109047|0.22222\n109048|0.66667\n109049|0.5\n109050|0.56944\n109051|0.33333\n109052|0.5\n109053|0.56944\n109054|0.44444\n109055|0.38889\n109056|0.40278\n109057|0.65278\n109058|0.70833\n109059|0.76389\n109060|0.44444\n109061|0.65278\n109062|0.69444\n109063|0.55556\n109064|0.34722\n109065|0.70833\n109066|0.84722\n109067|0.56944\n109068|0.54167\n109069|0.88889\n109070|0.80556\n109071|0.48611\n109072|0.52778\n109073|0.52778\n109074|0.5\n109075|0.52778\n109076|0.61111\n109077|0.61111\n109078|0.30556\n109079|0.56944\n109080|0.59722\n109081|0.56944\n109082|0.48611\n109083|0.45833\n109084|0.44444\n109085|0.30556\n109086|0.55556\n109087|0.625\n109088|0.5\n109089|0.73611\n109090|0.63889\n109091|0.72222\n109092|0.58333\n109093|0.47222\n109094|0.58333\n109095|0.5\n109096|0.48611\n109097|0.5\n109098|0.5\n109099|0.43056\n109100|0.5\n109101|0.5\n109102|0.83333\n109103|0.38889\n109104|0.61111\n109105|0.5\n109106|0.55556\n109107|0.56944\n109108|0.5\n109109|0.52778\n109110|0.5\n109111|0.52778\n109112|0.69444\n109113|0.5\n109114|0.5\n109115|0.5\n109116|0.70833\n109117|0.54167\n109118|0.63889\n109119|0.51389\n109120|0.38889\n109121|0.5\n109122|0.70833\n109123|0.5\n109124|0.5\n109125|0.69444\n109126|0.40278\n109127|0.84722\n109128|0.66667\n109129|0.81944\n109130|0.94444\n109131|0.66667\n109132|0.73611\n109133|0.69444\n109134|0.77778\n109135|0.88889\n109136|0.5\n109137|0.625\n109138|0.5\n109139|0.36111\n109140|0.41667\n109141|0.43056\n109142|0.23611\n109143|0.22222\n109144|0.18056\n109145|0.30556\n109146|0.65278\n109147|0.43056\n109148|0.5\n109149|0.375\n109150|0.875\n109151|0.47222\n109152|0.5\n109153|0.27778\n109154|0.375\n109155|0.23611\n109156|0.22222\n109157|0.15278\n109158|0.5\n109159|0.5\n109160|0.5\n109161|0.5\n109162|0.45833\n109163|0.79167\n109164|0.44444\n109165|0.44444\n109166|0.375\n109167|0.5\n109168|0.59722\n109169|0.52778\n109170|0.31944\n109171|0.52778\n109172|0.5\n109173|0.72222\n109174|0.5\n109175|0.5\n109176|0.18056\n109177|0.52778\n109178|0.48611\n109179|0.5\n109180|0.54167\n109181|0.5\n109182|0.83333\n109183|0.45833\n109184|0.5\n109185|0.5\n109186|0.66667\n109187|0.55556\n109188|0.73611\n109189|0.73611\n109190|0.31944\n109191|0.52778\n109192|0.47222\n109193|0.43056\n109194|0.81944\n109195|0.5\n109196|0.90278\n109197|0.88889\n109198|0.5\n109199|0.5\n109200|0.25\n109201|0.15278\n109202|0\n109203|0.31944\n109204|0.59722\n109205|0.58333\n109206|0.48611\n109207|0.44444\n109208|0.38889\n109209|0.5\n109210|0.58333\n109211|0.58333\n109212|0.375\n109213|0.5\n109214|0.45833\n109215|0.26389\n109216|0.5\n109217|0.5\n109218|0.41667\n109219|0.11111\n109220|0.59722\n109221|0.61111\n109222|0.76389\n109223|0.84722\n109224|0.77778\n109225|0.47222\n109226|0.61111\n109227|0.58333\n109228|0.55556\n109229|0.16667\n109230|0.59722\n109231|0.5\n109232|0.29167\n109233|0.25\n109234|0.33333\n109235|0.80556\n109236|0.63889\n109237|0.59722\n109238|0.65278\n109239|0.76389\n109240|0.79167\n109241|0.81944\n109242|0.69444\n109243|0.13889\n109244|0.11111\n109245|0.13889\n109246|0.47222\n109247|0.11111\n109248|0.81944\n109249|0.76389\n109250|0.65278\n109251|0.90278\n109252|0.75\n109253|0.66667\n109254|0.59722\n109255|0.5\n109256|0.15278\n109257|0.16667\n109258|0.52778\n109259|0.44444\n109260|0.30556\n109261|0.36111\n109262|0.16667\n109263|0.5\n109264|0.5\n109265|0.5\n109266|0.5\n109267|0.5\n109268|0.61111\n109269|0.65278\n109270|0.5\n109271|0.5\n109272|0.5\n109273|0.5\n109274|0.5\n109275|0.5\n109276|0.34722\n109277|0.22222\n109278|0.34722\n109279|0.36111\n109280|0.61111\n109281|0.45833\n109282|0.45833\n109283|0.34722\n109284|0.73611\n109285|0.56944\n109286|0.44444\n109287|0.61111\n109288|0.52778\n109289|0.5\n109290|0.5\n109291|0.63889\n109292|0.097222\n109293|0.52778\n109294|0.44444\n109295|0.43056\n109296|0.5\n109297|0.51389\n109298|0.54167\n109299|0.5\n109300|0.59722\n109301|0.5\n109302|0.55556\n109303|0.5\n109304|0.5\n109305|0.83333\n109306|0.5\n109307|0.70833\n109308|0.5\n109309|0.375\n109310|0.54167\n109311|0.58333\n109312|0.5\n109313|0.5\n109314|0.58333\n109315|0.41667\n109316|0.61111\n109317|0.40278\n109318|0.5\n109319|0.11111\n109320|0.16667\n109321|0.5\n109322|0.5\n109323|0.63889\n109324|0.76389\n109325|0.63889\n109326|0.54167\n109327|0.36111\n109328|0.54167\n109329|0.5\n109330|0.54167\n109331|0.44444\n109332|0.125\n109333|0.59722\n109334|0.5\n109335|0.26389\n109336|0.29167\n109337|0.40278\n109338|0.80556\n109339|0.66667\n109340|0.59722\n109341|0.61111\n109342|0.15278\n109343|0.44444\n109344|0.31944\n109345|0.5\n109346|0.63889\n109347|0.15278\n109348|0.5\n109349|0.44444\n109350|0.51389\n109351|0.5\n109352|0.27778\n109353|0.5\n109354|0.52778\n109355|0.58333\n109356|0.5\n109357|0.65278\n109358|0.5\n109359|0.52778\n109360|0.55556\n109361|0.51389\n109362|0.70833\n109363|0.83333\n109364|0.51389\n109365|0.48611\n109366|0.63889\n109367|0.45833\n109368|0.5\n109369|0.083333\n109370|0.11111\n109371|0.5\n109372|0.52778\n109373|0.59722\n109374|0.5\n109375|0.58333\n109376|0.38889\n109377|0.80556\n109378|0.5\n109379|0.81944\n109380|0.5\n109381|0.81944\n109382|0.47222\n109383|0.41667\n109384|0.51389\n109385|0.083333\n109386|0.20833\n109387|0.38889\n109388|0.13889\n109389|0.45833\n109390|0.11111\n109391|0.22222\n109392|0.44444\n109393|0.59722\n109394|0.38889\n109395|0.68056\n109396|0.5\n109397|0.61111\n109398|0.5\n109399|0.65278\n109400|0.69444\n109401|0.91667\n109402|0.58333\n109403|0.18056\n109404|0.59722\n109405|0.56944\n109406|0\n109407|0.19444\n109408|0.5\n109409|0.75\n109410|0.45833\n109411|0.5\n109412|0.5\n109413|0.72222\n109414|0.19444\n109415|0.45833\n109416|0.20833\n109417|0.27778\n109418|0.26389\n109419|0.33333\n109420|0.54167\n109421|0.68056\n109422|0.5\n109423|0.48611\n109424|0.11111\n109425|0.5\n109426|0.5\n109427|0.54167\n109428|0.83333\n109429|0.76389\n109430|0.61111\n109431|0.48611\n109432|0.38889\n109433|0.5\n109434|0.40278\n109435|0.66667\n109436|0.48611\n109437|0.51389\n109438|0.73611\n109439|0.52778\n109440|0.5\n109441|0.30556\n109442|0.5\n109443|0.33333\n109444|0.5\n109445|0.55556\n109446|0.51389\n109447|0.20833\n109448|0.5\n109449|0.5\n109450|0.59722\n109451|0.55556\n109452|0.47222\n109453|0.44444\n109454|0.41667\n109455|0.33333\n109456|0.875\n109457|0.77778\n109458|0.30556\n109459|0.38889\n109460|0.41667\n109461|0.47222\n109462|0.43056\n109463|0.47222\n109464|0.5\n109465|0.5\n109466|0.51389\n109467|0.51389\n109468|0.27778\n109469|0.43056\n109470|0.44444\n109471|0.52778\n109472|0.45833\n109473|0.625\n109474|0.61111\n109475|0.61111\n109476|0.66667\n109477|0.65278\n109478|0.5\n109479|0.43056\n109480|0.625\n109481|0.77778\n109482|0.5\n109483|0.48611\n109484|0.5\n109485|0.56944\n109486|0.5\n109487|0.5\n109488|0.52778\n109489|0.5\n109490|0.5\n109491|0.48611\n109492|0.5\n109493|0.47222\n109494|0.5\n109495|0.40278\n109496|0.94444\n109497|0.5\n109498|0.5\n109499|0.5\n109500|0.34722\n109501|0.5\n109502|0.16667\n109503|0.19444\n109504|0.27778\n109505|0.26389\n109506|0.5\n109507|0.5\n109508|0.52778\n109509|0.61111\n109510|0.66667\n109511|0.5\n109512|0.5\n109513|0.33333\n109514|0.33333\n109515|0.45833\n109516|0.56944\n109517|0.31944\n109518|0.68056\n109519|0.69444\n109520|0.69444\n109521|0.65278\n109522|0.75\n109523|0.5\n109524|0.54167\n109525|0.5\n109526|0.5\n109527|0.65278\n109528|0.5\n109529|0.66667\n109530|0.5\n109531|0.81944\n109532|0.65278\n109533|0.61111\n109534|0.22222\n109535|0.31944\n109536|0.19444\n109537|0.51389\n109538|0.75\n109539|0.68056\n109540|0.41667\n109541|0.59722\n109542|0.31944\n109543|0.22222\n109544|0.27778\n109545|0.5\n109546|0.72222\n109547|0.22222\n109548|0.76389\n109549|0.70833\n109550|0.59722\n109551|0.40278\n109552|0.44444\n109553|0.5\n109554|0.80556\n109555|0.72222\n109556|0.81944\n109557|0.875\n109558|0.625\n109559|0.44444\n109560|0.11111\n109561|0.51389\n109562|0.55556\n109563|0.5\n109564|0.88889\n109565|0.77778\n109566|0.72222\n109567|0.86111\n109568|0.91667\n109569|0.88889\n109570|0.81944\n109571|0.73611\n109572|0.84722\n109573|0.875\n109574|0.625\n109575|0.75\n109576|0.79167\n109577|0.86111\n109578|0.86111\n109579|0.56944\n109580|0.43056\n109581|0.75\n109582|0.51389\n109583|0.5\n109584|0.72222\n109585|0.5\n109586|0.20833\n109587|0.72222\n109588|0.5\n109589|0.61111\n109590|0.76389\n109591|0.76389\n109592|0.83333\n109593|0.84722\n109594|0.80556\n109595|0.72222\n109596|0.56944\n109597|0.66667\n109598|0.59722\n109599|0.72222\n109600|0.70833\n109601|0.91667\n109602|0.79167\n109603|0.93056\n109604|0.79167\n109605|0.59722\n109606|0.61111\n109607|0.56944\n109608|0.72222\n109609|0.875\n109610|0.69444\n109611|0.45833\n109612|0.72222\n109613|0.70833\n109614|0.36111\n109615|0.61111\n109616|0.18056\n109617|0.33333\n109618|0.13889\n109619|0.31944\n109620|0.65278\n109621|0.34722\n109622|0.22222\n109623|0.19444\n109624|0.44444\n109625|0.5\n109626|0.51389\n109627|0.65278\n109628|0.51389\n109629|0.47222\n109630|0.40278\n109631|0.45833\n109632|0.52778\n109633|0.80556\n109634|0.55556\n109635|0.52778\n109636|0.55556\n109637|0.86111\n109638|0.90278\n109639|0.54167\n109640|0.29167\n109641|0.51389\n109642|0.5\n109643|0.70833\n109644|0.61111\n109645|0.88889\n109646|0.77778\n109647|0.5\n109648|0.38889\n109649|0.18056\n109650|0.19444\n109651|0.34722\n109652|0.20833\n109653|0.33333\n109654|0.125\n109655|0.52778\n109656|0.76389\n109657|0.63889\n109658|0.44444\n109659|0.40278\n109660|0.76389\n109661|0.5\n109662|0.36111\n109663|0.5\n109664|0.76389\n109665|0.77778\n109666|0.77778\n109667|0.54167\n109668|0.86111\n109669|0.75\n109670|0.61111\n109671|0.56944\n109672|0.66667\n109673|0.69444\n109674|0.72222\n109675|0.70833\n109676|0.54167\n109677|0.30556\n109678|0.52778\n109679|0.69444\n109680|0.66667\n109681|0.5\n109682|0.27778\n109683|0.5\n109684|0.51389\n109685|0.125\n109686|0.34722\n109687|0.27778\n109688|0.5\n109689|0.5\n109690|0.56944\n109691|0.51389\n109692|0.56944\n109693|0.83333\n109694|0.81944\n109695|0.55556\n109696|0.29167\n109697|0.5\n109698|0.5\n109699|0.54167\n109700|0.31944\n109701|0.23611\n109702|0.40278\n109703|0.45833\n109704|0.30556\n109705|0.27778\n109706|0.51389\n109707|0.69444\n109708|0.65278\n109709|0.73611\n109710|0.68056\n109711|0.26389\n109712|0.47222\n109713|0.40278\n109714|0.25\n109715|0.41667\n109716|0.68056\n109717|0.5\n109718|0.56944\n109719|0.15278\n109720|0.5\n109721|0.33333\n109722|0.23611\n109723|0.36111\n109724|0.76389\n109725|0.59722\n109726|0.61111\n109727|0.86111\n109728|0.56944\n109729|0.63889\n109730|0.63889\n109731|0.83333\n109732|0.52778\n109733|0.65278\n109734|0.77778\n109735|0.69444\n109736|0.69444\n109737|0.52778\n109738|0.27778\n109739|0.19444\n109740|0.51389\n109741|0.38889\n109742|0.61111\n109743|0.51389\n109744|0.63889\n109745|0.34722\n109746|0.30556\n109747|0.47222\n109748|0.66667\n109749|0.59722\n109750|0.11111\n109751|0.5\n109752|0.5\n109753|0.29167\n109754|0.5\n109755|0.43056\n109756|0.44444\n109757|0.41667\n109758|0.38889\n109759|0.43056\n109760|0.61111\n109761|0.51389\n109762|0.63889\n109763|0.63889\n109764|0.65278\n109765|0.41667\n109766|0.375\n109767|0.33333\n109768|0.5\n109769|0.625\n109770|0.59722\n109771|0.55556\n109772|0.48611\n109773|0.70833\n109774|0.5\n109775|0.56944\n109776|0.79167\n109777|0.79167\n109778|0.93056\n109779|0.77778\n109780|0.80556\n109781|0.68056\n109782|0.84722\n109783|0.22222\n109784|0.70833\n109785|0.5\n109786|0.65278\n109787|0.54167\n109788|0.80556\n109789|0.77778\n109790|0.11111\n109791|0.66667\n109792|0.75\n109793|0.41667\n109794|0.55556\n109795|0.38889\n109796|0.52778\n109797|0.36111\n109798|0.26389\n109799|0.30556\n109800|0.58333\n109801|0.63889\n109802|0.73611\n109803|0.76389\n109804|0.77778\n109805|0.59722\n109806|0.75\n109807|0.55556\n109808|0.52778\n109809|0.47222\n109810|0.66667\n109811|0.70833\n109812|0.84722\n109813|0.77778\n109814|0.84722\n109815|0.70833\n109816|0.22222\n109817|0.76389\n109818|0.54167\n109819|0.66667\n109820|0.33333\n109821|0.41667\n109822|0.375\n109823|0.31944\n109824|0.34722\n109825|0.66667\n109826|0.56944\n109827|0.31944\n109828|0.41667\n109829|0.45833\n109830|0.61111\n109831|0.66667\n109832|0.77778\n109833|0.66667\n109834|0.44444\n109835|0.40278\n109836|0.68056\n109837|0.58333\n109838|0.55556\n109839|0.58333\n109840|0.30556\n109841|0.22222\n109842|0.25\n109843|0.41667\n109844|0.58333\n109845|0.72222\n109846|0.33333\n109847|0.93056\n109848|0.61111\n109849|0.625\n109850|0.47222\n109851|0.41667\n109852|0.44444\n109853|0.59722\n109854|0.40278\n109855|0.375\n109856|0.33333\n109857|0.25\n109858|0.31944\n109859|0.29167\n109860|0.40278\n109861|0.48611\n109862|0.55556\n109863|0.44444\n109864|0.80556\n109865|0.5\n109866|0.63889\n109867|0.68056\n109868|0.52778\n109869|0.69444\n109870|0.51389\n109871|0.43056\n109872|0.63889\n109873|0.51389\n109874|0.5\n109875|0.45833\n109876|0.5\n109877|0.38889\n109878|0.54167\n109879|0.84722\n109880|0.26389\n109881|0.51389\n109882|0.33333\n109883|0.51389\n109884|0.55556\n109885|0.16667\n109886|0.65278\n109887|0.63889\n109888|0.72222\n109889|0.69444\n109890|0.5\n109891|0.5\n109892|0.33333\n109893|0.63889\n109894|0.875\n109895|0.5\n109896|0.44444\n109897|0.44444\n109898|0.48611\n109899|0.44444\n109900|0.34722\n109901|0.45833\n109902|0.41667\n109903|0.26389\n109904|0.22222\n109905|0.5\n109906|0.98611\n109907|0.54167\n109908|0.5\n109909|0.61111\n109910|0.48611\n109911|0.44444\n109912|0.18056\n109913|0.51389\n109914|0.27778\n109915|0.125\n109916|0.52778\n109917|0.23611\n109918|0.16667\n109919|0.75\n109920|0.72222\n109921|0.61111\n109922|0.63889\n109923|0.5\n109924|0.45833\n109925|0.70833\n109926|0.31944\n109927|0.40278\n109928|0.22222\n109929|0.34722\n109930|0.23611\n109931|0.013889\n109932|0.5\n109933|0.52778\n109934|0.55556\n109935|0.68056\n109936|0.68056\n109937|0.80556\n109938|0.5\n109939|0.61111\n109940|0.47222\n109941|0.56944\n109942|0.66667\n109943|0.76389\n109944|0.5\n109945|0.27778\n109946|0.5\n109947|0.5\n109948|0.34722\n109949|0.41667\n109950|0.33333\n109951|0.47222\n109952|0.23611\n109953|0.38889\n109954|0.125\n109955|0.83333\n109956|0.66667\n109957|0.91667\n109958|0.51389\n109959|0.5\n109960|0.33333\n109961|0.56944\n109962|0.5\n109963|0.76389\n109964|0.5\n109965|0.44444\n109966|0.58333\n109967|0.43056\n109968|0.47222\n109969|0.66667\n109970|0.75\n109971|0.875\n109972|0.77778\n109973|0.84722\n109974|0.90278\n109975|0.97222\n109976|0.44444\n109977|0.25\n109978|0.18056\n109979|0.23611\n109980|0.055556\n109981|0.31944\n109982|0.72222\n109983|0.86111\n109984|0.40278\n109985|0.23611\n109986|0.34722\n109987|0.47222\n109988|0.43056\n109989|0.41667\n109990|0.41667\n109991|0.11111\n109992|0.25\n109993|0.34722\n109994|0.27778\n109995|0.91667\n109996|0.86111\n109997|0.83333\n109998|0.48611\n109999|0.59722\n110000|0.69444\n110001|0.55556\n110002|0.45833\n110003|0.25\n110004|0.375\n110005|0.45833\n110006|0.083333\n110007|0.63889\n110008|0.23611\n110009|0.30556\n110010|0.65278\n110011|0.29167\n110012|0.56944\n110013|0.73611\n110014|0.72222\n110015|0.48611\n110016|0.47222\n110017|0.41667\n110018|0.5\n110019|0.69444\n110020|0.70833\n110021|0.75\n110022|0.83333\n110023|0.84722\n110024|0.86111\n110025|0.5\n110026|0.5\n110027|0.27778\n110028|0.5\n110029|0.125\n110030|0.55556\n110031|0.63889\n110032|0.38889\n110033|0.70833\n110034|0.34722\n110035|0.18056\n110036|0.56944\n110037|0.5\n110038|0.34722\n110039|0.54167\n110040|0.31944\n110041|0.45833\n110042|0.083333\n110043|0.44444\n110044|0.34722\n110045|0.38889\n110046|0.38889\n110047|0.27778\n110048|0.48611\n110049|0.44444\n110050|0.375\n110051|0.55556\n110052|0.27778\n110053|0.30556\n110054|0.51389\n110055|0.15278\n110056|0.44444\n110057|0.38889\n110058|0.51389\n110059|0.5\n110060|0.45833\n110061|0.5\n110062|0.29167\n110063|0.5\n110064|0.63889\n110065|0.25\n110066|0.5\n110067|0.44444\n110068|0.31944\n110069|0.25\n110070|0.86111\n110071|0.875\n110072|0.68056\n110073|0.5\n110074|0.68056\n110075|0.56944\n110076|0.44444\n110077|0.31944\n110078|0.36111\n110079|0.72222\n110080|0.41667\n110081|0.5\n110082|0.51389\n110083|0.5\n110084|0.68056\n110085|0.66667\n110086|0.23611\n110087|0.26389\n110088|0.48611\n110089|0.29167\n110090|0.20833\n110091|0.44444\n110092|0.5\n110093|0.41667\n110094|0.55556\n110095|0.68056\n110096|0.43056\n110097|0.43056\n110098|0.11111\n110099|0.25\n110100|0.18056\n110101|0.22222\n110102|0.625\n110103|0.097222\n110104|0.41667\n110105|0.38889\n110106|0.70833\n110107|0.54167\n110108|0.625\n110109|0.83333\n110110|0.83333\n110111|0.54167\n110112|0.63889\n110113|0.54167\n110114|0.65278\n110115|0.73611\n110116|0.5\n110117|0.26389\n110118|0.55556\n110119|0.55556\n110120|0.65278\n110121|0.73611\n110122|0.76389\n110123|0.68056\n110124|0.75\n110125|0.52778\n110126|0.79167\n110127|0.5\n110128|0.5\n110129|0.5\n110130|0.20833\n110131|0.51389\n110132|0.5\n110133|0.36111\n110134|0.18056\n110135|0.84722\n110136|0.5\n110137|0.31944\n110138|0.58333\n110139|0.72222\n110140|0.69444\n110141|0.70833\n110142|0.75\n110143|0.54167\n110144|0.41667\n110145|0.33333\n110146|0.5\n110147|0.27778\n110148|0.26389\n110149|0.125\n110150|0.66667\n110151|0.65278\n110152|0.375\n110153|0.51389\n110154|0.65278\n110155|0.34722\n110156|0.23611\n110157|0.19444\n110158|0.13889\n110159|0.81944\n110160|0.79167\n110161|0.79167\n110162|0.44444\n110163|0.52778\n110164|0.33333\n110165|0.5\n110166|0.875\n110167|0.44444\n110168|0.43056\n110169|0.5\n110170|0.83333\n110171|0.875\n110172|0.31944\n110173|0.79167\n110174|0.51389\n110175|0.47222\n110176|0.20833\n110177|0.20833\n110178|0.26389\n110179|0.55556\n110180|0.47222\n110181|0.5\n110182|0.79167\n110183|0.88889\n110184|0.38889\n110185|0.30556\n110186|0.13889\n110187|0.5\n110188|0.76389\n110189|0.66667\n110190|0.40278\n110191|0.84722\n110192|0.61111\n110193|0.51389\n110194|0.5\n110195|0.80556\n110196|0.33333\n110197|0.41667\n110198|0.5\n110199|0.51389\n110200|0.51389\n110201|0.5\n110202|0.65278\n110203|0.875\n110204|0.5\n110205|0.125\n110206|0.5\n110207|0.31944\n110208|0.26389\n110209|0.5\n110210|0.70833\n110211|0.625\n110212|0.63889\n110213|0.27778\n110214|0.26389\n110215|0.5\n110216|0.54167\n110217|0.20833\n110218|0.44444\n110219|0.44444\n110220|0.29167\n110221|0.66667\n110222|0.56944\n110223|0.51389\n110224|0.47222\n110225|0.41667\n110226|0.5\n110227|0.75\n110228|0.72222\n110229|0.68056\n110230|0.51389\n110231|0.54167\n110232|0.29167\n110233|0.58333\n110234|0.54167\n110235|0.66667\n110236|0.52778\n110237|0.625\n110238|0.66667\n110239|0.52778\n110240|1\n110241|0.84722\n110242|0.5\n110243|0.43056\n110244|0.38889\n110245|0.65278\n110246|0.59722\n110247|0.31944\n110248|0.083333\n110249|0.375\n110250|0.48611\n110251|0.27778\n110252|0.5\n110253|0.45833\n110254|0.77778\n110255|0.81944\n110256|0.625\n110257|0.83333\n110258|0.79167\n110259|0.38889\n110260|0.58333\n110261|0.75\n110262|0.75\n110263|0.79167\n110264|0.75\n110265|0.70833\n110266|0.61111\n110267|0.5\n110268|0.59722\n110269|0.68056\n110270|0.11111\n110271|0.5\n110272|0.94444\n110273|0.70833\n110274|0.70833\n110275|0.65278\n110276|0.44444\n110277|0.25\n110278|0.22222\n110279|0.30556\n110280|0.69444\n110281|0.59722\n110282|0.84722\n110283|0.73611\n110284|0.56944\n110285|0.66667\n110286|0.41667\n110287|0.66667\n110288|0.54167\n110289|0.69444\n110290|0.59722\n110291|0.069444\n110292|0.38889\n110293|0.77778\n110294|0.63889\n110295|0.22222\n110296|0.70833\n110297|0.86111\n110298|0.5\n110299|0.29167\n110300|0.33333\n110301|0.55556\n110302|0.47222\n110303|0.65278\n110304|0.69444\n110305|0.83333\n110306|0.63889\n110307|0.91667\n110308|0.65278\n110309|0.30556\n110310|0.51389\n110311|0.43056\n110312|0.33333\n110313|0.34722\n110314|0.40278\n110315|0.22222\n110316|0.23611\n110317|0.44444\n110318|0.33333\n110319|0.65278\n110320|0.63889\n110321|0.5\n110322|0.52778\n110323|0.56944\n110324|0\n110325|0.20833\n110326|0.11111\n110327|0.097222\n110328|0.15278\n110329|0.72222\n110330|0.84722\n110331|0.73611\n110332|0.66667\n110333|0.65278\n110334|0.75\n110335|0.625\n110336|0.22222\n110337|0.27778\n110338|0.73611\n110339|0.79167\n110340|0.56944\n110341|0.375\n110342|0.625\n110343|0.66667\n110344|0.29167\n110345|0.48611\n110346|0.11111\n110347|0.20833\n110348|0.125\n110349|0.73611\n110350|0.59722\n110351|0.65278\n110352|0.33333\n110353|0.375\n110354|0.375\n110355|0.30556\n110356|0.33333\n110357|0.68056\n110358|0.65278\n110359|0.48611\n110360|0.44444\n110361|0.44444\n110362|0.40278\n110363|0.55556\n110364|0.45833\n110365|0.59722\n110366|0.80556\n110367|0.77778\n110368|0.54167\n110369|0.27778\n110370|0.69444\n110371|0.70833\n110372|0.51389\n110373|0.69444\n110374|0.86111\n110375|0.88889\n110376|0.54167\n110377|0.80556\n110378|0.41667\n110379|0.76389\n110380|0.76389\n110381|0.48611\n110382|0.625\n110383|0.59722\n110384|0.18056\n110385|0.26389\n110386|0.51389\n110387|0.48611\n110388|0.72222\n110389|0.16667\n110390|0.13889\n110391|0.5\n110392|0.5\n110393|0.48611\n110394|0.5\n110395|0.52778\n110396|0.47222\n110397|0.69444\n110398|0.47222\n110399|0.29167\n110400|0.13889\n110401|0.375\n110402|0.5\n110403|0.5\n110404|0.5\n110405|0.5\n110406|0.40278\n110407|0.47222\n110408|0.44444\n110409|0.61111\n110410|0.79167\n110411|0.58333\n110412|0.625\n110413|0.5\n110414|0.22222\n110415|0.5\n110416|0.5\n110417|0.22222\n110418|0.51389\n110419|0.88889\n110420|0.54167\n110421|0.52778\n110422|0.55556\n110423|0.70833\n110424|0.56944\n110425|0.52778\n110426|0.5\n110427|0.73611\n110428|0.65278\n110429|0.375\n110430|0.23611\n110431|0.73611\n110432|0.72222\n110433|0.40278\n110434|0.55556\n110435|0.33333\n110436|0.77778\n110437|0.69444\n110438|0.81944\n110439|0.68056\n110440|0.23611\n110441|0.19444\n110442|0.77778\n110443|0.375\n110444|0.47222\n110445|0.13889\n110446|0.5\n110447|0.59722\n110448|0.875\n110449|0.83333\n110450|0.58333\n110451|0.38889\n110452|0.59722\n110453|0.5\n110454|0.58333\n110455|0.5\n110456|0.18056\n110457|0.56944\n110458|0.65278\n110459|0.77778\n110460|0.73611\n110461|0.66667\n110462|0.66667\n110463|0.91667\n110464|0.30556\n110465|0.055556\n110466|0.91667\n110467|0.88889\n110468|0.88889\n110469|0.88889\n110470|0.80556\n110471|0.80556\n110472|0.83333\n110473|0.70833\n110474|0.86111\n110475|0.375\n110476|0.83333\n110477|0.81944\n110478|0.90278\n110479|0.80556\n110480|0.95833\n110481|0.59722\n110482|0.48611\n110483|0.63889\n110484|0.80556\n110485|0.59722\n110486|0.27778\n110487|0.66667\n110488|0.625\n110489|0.76389\n110490|0.77778\n110491|0.79167\n110492|0.76389\n110493|0.54167\n110494|0.91667\n110495|0.77778\n110496|0.041667\n110497|0.48611\n110498|0.51389\n110499|0.70833\n110500|0.77778\n110501|0.43056\n110502|0.61111\n110503|0.61111\n110504|0.84722\n110505|0.86111\n110506|0.83333\n110507|0.59722\n110508|0.65278\n110509|0.70833\n110510|0.875\n110511|0.055556\n110512|0.013889\n110513|0.68056\n110514|0.5\n110515|0.66667\n110516|0.73611\n110517|0.59722\n110518|0.84722\n110519|0.38889\n110520|0\n110521|0.027778\n110522|0.52778\n110523|0.5\n110524|0.55556\n110525|0.38889\n110526|0.41667\n110527|0.625\n110528|0.72222\n110529|0.68056\n110530|0.73611\n110531|0.36111\n110532|0.22222\n110533|0.47222\n110534|0.38889\n110535|0.69444\n110536|0.84722\n110537|0\n110538|0.041667\n110539|0.73611\n110540|0.84722\n110541|0.58333\n110542|0.083333\n110543|0.069444\n110544|0.15278\n110545|0.20833\n110546|0.73611\n110547|0.79167\n110548|0.72222\n110549|0.72222\n110550|0.79167\n110551|0.61111\n110552|0.80556\n110553|0.26389\n110554|0.40278\n110555|0.44444\n110556|0.72222\n110557|0.5\n110558|0.29167\n110559|0.375\n110560|0.59722\n110561|0.29167\n110562|0.5\n110563|0.13889\n110564|0.625\n110565|0.125\n110566|0\n110567|0.069444\n110568|0.013889\n110569|0.31944\n110570|0.55556\n110571|0.47222\n110572|0.54167\n110573|0.875\n110574|0.75\n110575|0.59722\n110576|0.375\n110577|0.5\n110578|0.54167\n110579|0.61111\n110580|0.79167\n110581|0.52778\n110582|0.44444\n110583|0.11111\n110584|0.45833\n110585|0.66667\n110586|0.81944\n110587|0.5\n110588|0.16667\n110589|0.47222\n110590|0.66667\n110591|0.5\n110592|0.5\n110593|0.69444\n110594|0.81944\n110595|0.30556\n110596|0.44444\n110597|0.83333\n110598|0.48611\n110599|0.55556\n110600|0.625\n110601|0.44444\n110602|0.61111\n110603|0.76389\n110604|0.65278\n110605|0.75\n110606|0.81944\n110607|0.66667\n110608|0.63889\n110609|0.68056\n110610|0.54167\n110611|0.45833\n110612|0.5\n110613|0.40278\n110614|0.38889\n110615|0.29167\n110616|0.59722\n110617|0.63889\n110618|0.5\n110619|0.5\n110620|0.5\n110621|0.38889\n110622|0.5\n110623|0.69444\n110624|0.80556\n110625|0.51389\n110626|0.72222\n110627|0.83333\n110628|0.5\n110629|0.5\n110630|0.5\n110631|0.44444\n110632|0.52778\n110633|0.45833\n110634|0.5\n110635|0.47222\n110636|0.5\n110637|0.5\n110638|0.45833\n110639|0.27778\n110640|0.54167\n110641|0.73611\n110642|0.36111\n110643|0.65278\n110644|0.5\n110645|0.43056\n110646|0.16667\n110647|0.5\n110648|0.5\n110649|0.5\n110650|0.375\n110651|0.069444\n110652|0.52778\n110653|0.45833\n110654|0.26389\n110655|0.097222\n110656|0.55556\n110657|0.31944\n110658|0.19444\n110659|0.38889\n110660|0.16667\n110661|0.5\n110662|0.86111\n110663|0.83333\n110664|0.66667\n110665|0.79167\n110666|0.875\n110667|0.5\n110668|0.625\n110669|0.11111\n110670|0.30556\n110671|0.375\n110672|0.40278\n110673|0.5\n110674|0.76389\n110675|0.54167\n110676|0.27778\n110677|0.51389\n110678|0.63889\n110679|0.5\n110680|0.5\n110681|0.40278\n110682|0.65278\n110683|0.5\n110684|0.52778\n110685|0.5\n110686|0.54167\n110687|0.5\n110688|0.47222\n110689|0.34722\n110690|0.68056\n110691|0.5\n110692|0.5\n110693|0.36111\n110694|0.5\n110695|0.5\n110696|0.5\n110697|0.5\n110698|0.61111\n110699|0.47222\n110700|0.48611\n110701|0.5\n110702|0.22222\n110703|0.27778\n110704|0.30556\n110705|0.26389\n110706|0.27778\n110707|0.43056\n110708|0.65278\n110709|0.40278\n110710|0.54167\n110711|0.29167\n110712|0.33333\n110713|0.30556\n110714|0.38889\n110715|0.47222\n110716|0.43056\n110717|0.22222\n110718|0.30556\n110719|0.22222\n110720|0.51389\n110721|0.34722\n110722|0.61111\n110723|0.5\n110724|0.5\n110725|0.63889\n110726|0.5\n110727|0.5\n110728|0.58333\n110729|0.52778\n110730|0.44444\n110731|0.66667\n110732|0.48611\n110733|0.31944\n110734|0.55556\n110735|0.5\n110736|0.70833\n110737|0.59722\n110738|0.75\n110739|0.56944\n110740|0.31944\n110741|0.5\n110742|0.27778\n110743|0.45833\n110744|0.30556\n110745|0.43056\n110746|0.5\n110747|0.5\n110748|0.51389\n110749|0.94444\n110750|0.58333\n110751|0.56944\n110752|0.55556\n110753|0.59722\n110754|0.13889\n110755|0.5\n110756|0.625\n110757|0.11111\n110758|0.55556\n110759|0.52778\n110760|0.5\n110761|0.5\n110762|0.51389\n110763|0.5\n110764|0.86111\n110765|0.88889\n110766|0.48611\n110767|0.30556\n110768|0.27778\n110769|0.36111\n110770|0.125\n110771|0.34722\n110772|0.48611\n110773|0.72222\n110774|0.68056\n110775|0.70833\n110776|0.98611\n110777|0.63889\n110778|0.44444\n110779|0.44444\n110780|0.83333\n110781|0.54167\n110782|0.5\n110783|0.5\n110784|0.95833\n110785|0.44444\n110786|0.54167\n110787|0.58333\n110788|0.44444\n110789|0.84722\n110790|0.5\n110791|0.45833\n110792|0.84722\n110793|0.86111\n110794|0.097222\n110795|0.31944\n110796|0.72222\n110797|0.625\n110798|0.59722\n110799|0.65278\n110800|0.73611\n110801|0.72222\n110802|0.45833\n110803|0.52778\n110804|0.33333\n110805|0.5\n110806|0.61111\n110807|0.5\n110808|0.5\n110809|0.29167\n110810|0.5\n110811|0.61111\n110812|0.52778\n110813|0.58333\n110814|0.77778\n110815|0.36111\n110816|0.31944\n110817|0.27778\n110818|0.45833\n110819|0.23611\n110820|0.27778\n110821|0.73611\n110822|0.25\n110823|0.22222\n110824|0.13889\n110825|0.31944\n110826|0.38889\n110827|0.43056\n110828|0.51389\n110829|0.5\n110830|0.5\n110831|0.40278\n110832|0.56944\n110833|0.375\n110834|0.29167\n110835|0.41667\n110836|0.54167\n110837|0.77778\n110838|0.73611\n110839|0.75\n110840|0.41667\n110841|0.40278\n110842|0.69444\n110843|0.61111\n110844|0.5\n110845|0.5\n110846|0.5\n110847|0.45833\n110848|0.61111\n110849|0.5\n110850|0.20833\n110851|0.43056\n110852|0.5\n110853|0.44444\n110854|0.55556\n110855|0.5\n110856|0.5\n110857|0.5\n110858|0.5\n110859|0.5\n110860|0.61111\n110861|0.51389\n110862|0.15278\n110863|0.31944\n110864|0.5\n110865|0.75\n110866|0.5\n110867|0.5\n110868|0.73611\n110869|0.69444\n110870|0.34722\n110871|0.625\n110872|0.5\n110873|0.51389\n110874|0.40278\n110875|0.47222\n110876|0.66667\n110877|0.52778\n110878|0.34722\n110879|0.375\n110880|0.33333\n110881|0.38889\n110882|0.48611\n110883|0.5\n110884|0.48611\n110885|0.51389\n110886|0.52778\n110887|0.5\n110888|0.30556\n110889|0.5\n110890|0.51389\n110891|0.58333\n110892|0.5\n110893|0.52778\n110894|0.76389\n110895|0.875\n110896|0.5\n110897|0.51389\n110898|0.61111\n110899|0.5\n110900|0.625\n110901|0.45833\n110902|0.48611\n110903|0.36111\n110904|0.55556\n110905|0.5\n110906|0.43056\n110907|0.61111\n110908|0.40278\n110909|0.44444\n110910|0.5\n110911|0.75\n110912|0.47222\n110913|0.22222\n110914|0.5\n110915|0.63889\n110916|0.77778\n110917|0.5\n110918|0.5\n110919|0.43056\n110920|0.54167\n110921|0.5\n110922|0.5\n110923|0.5\n110924|0.38889\n110925|0.48611\n110926|0.41667\n110927|0.77778\n110928|0.91667\n110929|0.40278\n110930|0.59722\n110931|0.5\n110932|0.54167\n110933|0.5\n110934|0.5\n110935|0.66667\n110936|0.68056\n110937|0.63889\n110938|0.5\n110939|0.77778\n110940|0.48611\n110941|0.34722\n110942|0.26389\n110943|0.56944\n110944|0.5\n110945|0.77778\n110946|0.5\n110947|0.75\n110948|0.55556\n110949|0.48611\n110950|0.25\n110951|0.43056\n110952|0.5\n110953|0.5\n110954|0.27778\n110955|0.59722\n110956|0.58333\n110957|0.40278\n110958|0.61111\n110959|0.54167\n110960|0.45833\n110961|0.47222\n110962|0.5\n110963|0.38889\n110964|0.44444\n110965|0.43056\n110966|0.47222\n110967|0.27778\n110968|0.125\n110969|0.59722\n110970|0.19444\n110971|0.27778\n110972|0.375\n110973|0.16667\n110974|0.097222\n110975|0.5\n110976|0.5\n110977|0.58333\n110978|0.5\n110979|0.41667\n110980|0.48611\n110981|0.55556\n110982|0.70833\n110983|0.625\n110984|0.44444\n110985|0.23611\n110986|0.44444\n110987|0.54167\n110988|0.56944\n110989|0.65278\n110990|0.38889\n110991|0.41667\n110992|0.41667\n110993|0.20833\n110994|0.19444\n110995|0.55556\n110996|0.5\n110997|0.38889\n110998|0.56944\n110999|0.5\n111000|0.5\n111001|0.5\n111002|0.51389\n111003|0.5\n111004|0.47222\n111005|0.5\n111006|0.5\n111007|0.5\n111008|0.5\n111009|0.83333\n111010|0.54167\n111011|0.5\n111012|0.68056\n111013|0.68056\n111014|0.61111\n111015|0.73611\n111016|0.68056\n111017|0.55556\n111018|0.59722\n111019|0.69444\n111020|0.69444\n111021|0.72222\n111022|0.51389\n111023|0.56944\n111024|0.625\n111025|0.52778\n111026|0.79167\n111027|0.61111\n111028|0.375\n111029|0.34722\n111030|0.51389\n111031|0.69444\n111032|0.56944\n111033|0.86111\n111034|0.52778\n111035|0.30556\n111036|0.5\n111037|0.70833\n111038|0.55556\n111039|0.5\n111040|0.48611\n111041|0.375\n111042|0.43056\n111043|0.58333\n111044|0.11111\n111045|0.80556\n111046|0.51389\n111047|0.73611\n111048|0.43056\n111049|0.11111\n111050|0.45833\n111051|0.5\n111052|0.22222\n111053|0.5\n111054|0.16667\n111055|0.5\n111056|0.5\n111057|0.61111\n111058|0.44444\n111059|0.23611\n111060|0.33333\n111061|0.52778\n111062|0.41667\n111063|0.51389\n111064|0.56944\n111065|0.5\n111066|0.52778\n111067|0.19444\n111068|0.22222\n111069|0.43056\n111070|0.45833\n111071|0.5\n111072|0.48611\n111073|0.36111\n111074|0.25\n111075|0.51389\n111076|0.81944\n111077|0.59722\n111078|0.65278\n111079|0.70833\n111080|0.69444\n111081|0.84722\n111082|0.45833\n111083|0.875\n111084|0.86111\n111085|0.40278\n111086|0.38889\n111087|0.5\n111088|0.41667\n111089|0.44444\n111090|0.22222\n111091|0.68056\n111092|0.63889\n111093|0.38889\n111094|0.59722\n111095|0.69444\n111096|0.68056\n111097|0.5\n111098|0.51389\n111099|0.38889\n111100|0.66667\n111101|0.54167\n111102|0.375\n111103|0.27778\n111104|0.5\n111105|0.56944\n111106|0.25\n111107|0.40278\n111108|0.83333\n111109|0.5\n111110|0.27778\n111111|0.45833\n111112|0.54167\n111113|0.58333\n111114|0.81944\n111115|0.34722\n111116|0.63889\n111117|0.5\n111118|0.38889\n111119|0.41667\n111120|0.79167\n111121|0.38889\n111122|0.63889\n111123|0.77778\n111124|0.51389\n111125|0.61111\n111126|0.38889\n111127|0.58333\n111128|0.79167\n111129|0.41667\n111130|0.69444\n111131|0.5\n111132|0.44444\n111133|0.52778\n111134|0.70833\n111135|0.29167\n111136|0.5\n111137|0.55556\n111138|0.72222\n111139|0.5\n111140|0.47222\n111141|0.5\n111142|0.26389\n111143|0.29167\n111144|0.33333\n111145|0.40278\n111146|0.055556\n111147|0.13889\n111148|0.48611\n111149|0.51389\n111150|0.51389\n111151|0.5\n111152|0.5\n111153|0.083333\n111154|0.30556\n111155|0.43056\n111156|0.23611\n111157|0.23611\n111158|0.38889\n111159|0.93056\n111160|0.69444\n111161|0.16667\n111162|0.5\n111163|0.56944\n111164|0.5\n111165|0.29167\n111166|0.52778\n111167|0.5\n111168|0.77778\n111169|0.88889\n111170|0.51389\n111171|0.61111\n111172|0.84722\n111173|0.5\n111174|0.33333\n111175|0.68056\n111176|0.5\n111177|0.65278\n111178|0.66667\n111179|0.5\n111180|0.5\n111181|0.61111\n111182|0.56944\n111183|0.34722\n111184|0.20833\n111185|0.5\n111186|0.75\n111187|0.48611\n111188|0.43056\n111189|0.36111\n111190|0.11111\n111191|0.72222\n111192|0.68056\n111193|0.20833\n111194|0.68056\n111195|0.875\n111196|0.70833\n111197|0.875\n111198|0.375\n111199|0.25\n111200|0.48611\n111201|0.40278\n111202|0.30556\n111203|0.27778\n111204|0.47222\n111205|0.30556\n111206|0.16667\n111207|0.125\n111208|0.38889\n111209|0.25\n111210|0.55556\n111211|0.76389\n111212|0.66667\n111213|0.94444\n111214|0.66667\n111215|0.52778\n111216|0.20833\n111217|0.38889\n111218|0.45833\n111219|0.625\n111220|0.58333\n111221|0.15278\n111222|0.22222\n111223|0.34722\n111224|0.65278\n111225|0.81944\n111226|0.31944\n111227|0.31944\n111228|0.36111\n111229|0.25\n111230|0.79167\n111231|0.72222\n111232|0.72222\n111233|0.66667\n111234|0.68056\n111235|0.72222\n111236|0.65278\n111237|0.47222\n111238|0.80556\n111239|0.625\n111240|0.45833\n111241|0.25\n111242|0.80556\n111243|0.18056\n111244|0.52778\n111245|0.70833\n111246|0.61111\n111247|0.61111\n111248|0.70833\n111249|0.81944\n111250|0.70833\n111251|0.80556\n111252|0.75\n111253|0.73611\n111254|0.48611\n111255|0.5\n111256|0.22222\n111257|0.44444\n111258|0.34722\n111259|0.5\n111260|0.76389\n111261|0.72222\n111262|0.5\n111263|0.52778\n111264|0.54167\n111265|0.76389\n111266|0.54167\n111267|0.72222\n111268|0.5\n111269|0.69444\n111270|0.59722\n111271|0.30556\n111272|0.44444\n111273|0.5\n111274|0.65278\n111275|0.61111\n111276|0.66667\n111277|0.52778\n111278|0.5\n111279|0.5\n111280|0.5\n111281|0.88889\n111282|0.54167\n111283|0.33333\n111284|0.47222\n111285|0.52778\n111286|0.5\n111287|0.5\n111288|0.56944\n111289|0.65278\n111290|0.48611\n111291|0.77778\n111292|0.5\n111293|0.63889\n111294|0.54167\n111295|0.5\n111296|0.5\n111297|0.5\n111298|0.19444\n111299|0.44444\n111300|0.23611\n111301|0.20833\n111302|0.16667\n111303|0.13889\n111304|0.58333\n111305|0.66667\n111306|0.47222\n111307|0.5\n111308|0.54167\n111309|0.44444\n111310|0.36111\n111311|0.5\n111312|0.54167\n111313|0.63889\n111314|0.44444\n111315|0.56944\n111316|0.25\n111317|0.375\n111318|0.65278\n111319|0.72222\n111320|0.52778\n111321|0.66667\n111322|0.5\n111323|0.38889\n111324|0.25\n111325|0.43056\n111326|0.58333\n111327|0.69444\n111328|0.38889\n111329|0.5\n111330|0.36111\n111331|0.66667\n111332|0.65278\n111333|0.59722\n111334|0.31944\n111335|0.25\n111336|0.48611\n111337|0.16667\n111338|0.25\n111339|0.76389\n111340|0.58333\n111341|0.77778\n111342|0.81944\n111343|0.88889\n111344|0.88889\n111345|0.66667\n111346|0.73611\n111347|0.54167\n111348|0.44444\n111349|0.55556\n111350|0.95833\n111351|0.26389\n111352|0.73611\n111353|0.45833\n111354|0.73611\n111355|0.69444\n111356|0.83333\n111357|0.54167\n111358|0.80556\n111359|0.52778\n111360|0.875\n111361|0.86111\n111362|0.76389\n111363|0.56944\n111364|0.44444\n111365|0.61111\n111366|0.5\n111367|0.58333\n111368|0.45833\n111369|0.72222\n111370|0.44444\n111371|0.51389\n111372|0.45833\n111373|0.5\n111374|0.625\n111375|0.5\n111376|0.5\n111377|0.79167\n111378|0.97222\n111379|0.77778\n111380|0.77778\n111381|0.61111\n111382|0.5\n111383|0.5\n111384|0.5\n111385|0.25\n111386|0.27778\n111387|0.19444\n111388|0.38889\n111389|0.55556\n111390|0.5\n111391|0.5\n111392|0.45833\n111393|0.63889\n111394|0.58333\n111395|0.45833\n111396|0.5\n111397|0.44444\n111398|0.36111\n111399|0.51389\n111400|0.5\n111401|0.72222\n111402|0.5\n111403|0.33333\n111404|0.54167\n111405|0.73611\n111406|0.34722\n111407|0.55556\n111408|0.52778\n111409|0.19444\n111410|0.70833\n111411|0.56944\n111412|0.5\n111413|0.51389\n111414|0.61111\n111415|0.44444\n111416|0.51389\n111417|0.5\n111418|0.61111\n111419|0.375\n111420|0.5\n111421|0.055556\n111422|0.5\n111423|0.38889\n111424|0.041667\n111425|0.51389\n111426|0.47222\n111427|0.5\n111428|0.45833\n111429|0.63889\n111430|0.33333\n111431|0.44444\n111432|0.5\n111433|0.44444\n111434|0.59722\n111435|0.5\n111436|0.55556\n111437|0.58333\n111438|0.70833\n111439|0.5\n111440|0.26389\n111441|0.5\n111442|0.58333\n111443|0.625\n111444|0.75\n111445|0.56944\n111446|0.63889\n111447|0.61111\n111448|0.5\n111449|0.94444\n111450|0.45833\n111451|0.5\n111452|0.5\n111453|0.5\n111454|0.34722\n111455|0.375\n111456|0.5\n111457|0.86111\n111458|0.45833\n111459|0.52778\n111460|0.44444\n111461|0.375\n111462|0.41667\n111463|0.36111\n111464|0.5\n111465|0.54167\n111466|0.52778\n111467|0.33333\n111468|0.15278\n111469|0.36111\n111470|0.5\n111471|0.5\n111472|0.5\n111473|0.61111\n111474|0.44444\n111475|0.5\n111476|0.77778\n111477|0.59722\n111478|0.48611\n111479|0.44444\n111480|0.625\n111481|0.5\n111482|0.27778\n111483|0.5\n111484|0.65278\n111485|0.61111\n111486|0.55556\n111487|0.52778\n111488|0.5\n111489|0.5\n111490|0.36111\n111491|0.625\n111492|0.5\n111493|0.58333\n111494|0.5\n111495|0.055556\n111496|0.5\n111497|0.38889\n111498|0.47222\n111499|0.5\n111500|0.40278\n111501|0.5\n111502|0.5\n111503|0.68056\n111504|0.55556\n111505|0.5\n111506|0.5\n111507|0.5\n111508|0.56944\n111509|0.70833\n111510|0.44444\n111511|0.48611\n111512|0.5\n111513|0.52778\n111514|0.54167\n111515|0.5\n111516|0.5\n111517|0.5\n111518|0.19444\n111519|0.33333\n111520|0.30556\n111521|0.097222\n111522|0.027778\n111523|0.19444\n111524|0.125\n111525|0.16667\n111526|0.41667\n111527|0.25\n111528|0.27778\n111529|0.5\n111530|0.65278\n111531|0.72222\n111532|0.61111\n111533|0.5\n111534|0.70833\n111535|0.44444\n111536|0.30556\n111537|0.5\n111538|0.86111\n111539|0.81944\n111540|0.5\n111541|0.55556\n111542|0.56944\n111543|0.52778\n111544|0.88889\n111545|0.52778\n111546|0.52778\n111547|0.70833\n111548|0.5\n111549|0.83333\n111550|0.70833\n111551|0.73611\n111552|0.70833\n111553|0.73611\n111554|0.29167\n111555|0.72222\n111556|0.69444\n111557|0.69444\n111558|0.43056\n111559|0.38889\n111560|0.56944\n111561|0.5\n111562|0.36111\n111563|0.22222\n111564|0.40278\n111565|0.48611\n111566|0.375\n111567|0.11111\n111568|0.22222\n111569|0.55556\n111570|0.375\n111571|0.48611\n111572|0.44444\n111573|0.54167\n111574|0.51389\n111575|0.58333\n111576|0.5\n111577|0.5\n111578|0.5\n111579|0.55556\n111580|0.625\n111581|0.875\n111582|0.86111\n111583|0.72222\n111584|0.65278\n111585|0.61111\n111586|0.70833\n111587|0.88889\n111588|0.41667\n111589|0.59722\n111590|0.5\n111591|0.52778\n111592|0.52778\n111593|0.5\n111594|0.48611\n111595|0.625\n111596|0.70833\n111597|0.66667\n111598|0.77778\n111599|0.26389\n111600|0\n111601|0.40278\n111602|0.68056\n111603|0.44444\n111604|0.45833\n111605|0.55556\n111606|0.55556\n111607|0.5\n111608|0.52778\n111609|0.5\n111610|0.61111\n111611|0.66667\n111612|0.54167\n111613|0.5\n111614|0.75\n111615|0.58333\n111616|0.5\n111617|0.79167\n111618|0.72222\n111619|0.77778\n111620|0.58333\n111621|0.5\n111622|0.16667\n111623|0.33333\n111624|0.19444\n111625|0.25\n111626|0.40278\n111627|0.52778\n111628|0.54167\n111629|0.55556\n111630|0.55556\n111631|0.5\n111632|0.56944\n111633|0.38889\n111634|0.44444\n111635|0.069444\n111636|0.40278\n111637|0.5\n111638|0.58333\n111639|0.84722\n111640|0.61111\n111641|0.38889\n111642|0.625\n111643|0.38889\n111644|0.68056\n111645|0.56944\n111646|0.40278\n111647|0.51389\n111648|0.65278\n111649|0.69444\n111650|0.56944\n111651|0.48611\n111652|0.72222\n111653|0.59722\n111654|0.61111\n111655|0.58333\n111656|0.47222\n111657|0.5\n111658|0.58333\n111659|0.73611\n111660|0.77778\n111661|0.63889\n111662|0.30556\n111663|0.40278\n111664|0.52778\n111665|0.43056\n111666|0.41667\n111667|0.31944\n111668|0.59722\n111669|0.58333\n111670|0.65278\n111671|0.61111\n111672|0.72222\n111673|0.72222\n111674|0.52778\n111675|0.55556\n111676|0.56944\n111677|0.625\n111678|0.66667\n111679|0.41667\n111680|0.66667\n111681|0.61111\n111682|0.61111\n111683|0.55556\n111684|0.52778\n111685|0.86111\n111686|0.38889\n111687|0.38889\n111688|0.52778\n111689|0.44444\n111690|0.44444\n111691|0.5\n111692|0.22222\n111693|0.25\n111694|0.055556\n111695|0.069444\n111696|0.11111\n111697|0.77778\n111698|0.56944\n111699|0.5\n111700|0.51389\n111701|0.65278\n111702|0.65278\n111703|0.83333\n111704|0.33333\n111705|0.5\n111706|0.51389\n111707|0.5\n111708|0.5\n111709|0.5\n111710|0.63889\n111711|0.30556\n111712|0.23611\n111713|0.43056\n111714|0.5\n111715|0.097222\n111716|0.47222\n111717|0.069444\n111718|0.59722\n111719|0.79167\n111720|0.44444\n111721|0.40278\n111722|0.29167\n111723|0.30556\n111724|0.61111\n111725|0.55556\n111726|0.54167\n111727|0.58333\n111728|0.5\n111729|0.41667\n111730|0.5\n111731|0.56944\n111732|0.48611\n111733|0.48611\n111734|0.27778\n111735|0.65278\n111736|0.48611\n111737|0.52778\n111738|0.5\n111739|0.45833\n111740|0.48611\n111741|0.41667\n111742|0.41667\n111743|0.77778\n111744|0.47222\n111745|0.22222\n111746|0.16667\n111747|0.5\n111748|0.61111\n111749|0.51389\n111750|0.70833\n111751|0.66667\n111752|0.61111\n111753|0.65278\n111754|0.73611\n111755|0.5\n111756|0.69444\n111757|0.72222\n111758|0.44444\n111759|0.80556\n111760|0.72222\n111761|0.80556\n111762|0.40278\n111763|0.29167\n111764|0.18056\n111765|0.65278\n111766|0.5\n111767|0.5\n111768|0.52778\n111769|0.76389\n111770|0.61111\n111771|0.59722\n111772|0.68056\n111773|0.79167\n111774|0.79167\n111775|0.94444\n111776|0.875\n111777|0.93056\n111778|0.5\n111779|0.33333\n111780|0.43056\n111781|0.40278\n111782|0.51389\n111783|0.52778\n111784|0.66667\n111785|0.69444\n111786|0.45833\n111787|0.80556\n111788|0.5\n111789|0.56944\n111790|0.5\n111791|0.48611\n111792|0.51389\n111793|0.625\n111794|0.70833\n111795|0.5\n111796|0.59722\n111797|0.88889\n111798|0.80556\n111799|0.11111\n111800|0.18056\n111801|0.13889\n111802|0.38889\n111803|0.51389\n111804|0.29167\n111805|0.44444\n111806|0.75\n111807|0.76389\n111808|0.56944\n111809|0.69444\n111810|0.80556\n111811|0.48611\n111812|0.68056\n111813|0.5\n111814|0.63889\n111815|0.5\n111816|0.44444\n111817|0.5\n111818|0.54167\n111819|0.5\n111820|0.19444\n111821|0.36111\n111822|0.44444\n111823|0.38889\n111824|0.69444\n111825|0.69444\n111826|0.33333\n111827|0.54167\n111828|0.47222\n111829|0.069444\n111830|0.5\n111831|0.68056\n111832|0.72222\n111833|0.63889\n111834|0.73611\n111835|0.55556\n111836|0.48611\n111837|0.40278\n111838|0.48611\n111839|0.5\n111840|0.5\n111841|0.43056\n111842|0.54167\n111843|0.61111\n111844|0.69444\n111845|0.68056\n111846|0.65278\n111847|0.72222\n111848|0.34722\n111849|0.61111\n111850|0.69444\n111851|0.625\n111852|0.625\n111853|0.58333\n111854|0.40278\n111855|0.65278\n111856|0.16667\n111857|0.45833\n111858|0.51389\n111859|0.65278\n111860|0.38889\n111861|0.47222\n111862|0.80556\n111863|0.77778\n111864|0.54167\n111865|0.47222\n111866|0.47222\n111867|0.41667\n111868|0.56944\n111869|0.90278\n111870|0.86111\n111871|0.65278\n111872|0.86111\n111873|0.73611\n111874|0.80556\n111875|0.25\n111876|0.5\n111877|0.40278\n111878|0.44444\n111879|0.44444\n111880|0.76389\n111881|0.79167\n111882|0.56944\n111883|0.26389\n111884|0.625\n111885|0.40278\n111886|0.31944\n111887|0.45833\n111888|0.61111\n111889|0.5\n111890|0.76389\n111891|0.36111\n111892|0.76389\n111893|0.625\n111894|0.65278\n111895|0.5\n111896|0.45833\n111897|0.5\n111898|0.5\n111899|0.65278\n111900|0.69444\n111901|0.43056\n111902|0.65278\n111903|0.55556\n111904|0.625\n111905|0.5\n111906|0.55556\n111907|0.55556\n111908|0.51389\n111909|0.34722\n111910|0.80556\n111911|0.38889\n111912|0.56944\n111913|0.5\n111914|0.5\n111915|0.54167\n111916|0.72222\n111917|0.73611\n111918|0.81944\n111919|0.33333\n111920|0.083333\n111921|0.86111\n111922|0.65278\n111923|0.58333\n111924|0.51389\n111925|0.72222\n111926|0.56944\n111927|0.47222\n111928|0.79167\n111929|0.77778\n111930|0.55556\n111931|0.26389\n111932|0.51389\n111933|0.40278\n111934|0.33333\n111935|0.33333\n111936|0.18056\n111937|0.5\n111938|0.51389\n111939|0.47222\n111940|0.5\n111941|0.31944\n111942|0.63889\n111943|0.70833\n111944|0.41667\n111945|0.5\n111946|0.52778\n111947|0.44444\n111948|0.48611\n111949|0.5\n111950|0.23611\n111951|0.5\n111952|0.5\n111953|0.65278\n111954|0.88889\n111955|0.69444\n111956|0.76389\n111957|0.84722\n111958|0.63889\n111959|0.58333\n111960|0.58333\n111961|0.5\n111962|0.27778\n111963|0.18056\n111964|0.34722\n111965|0.23611\n111966|0.20833\n111967|0.40278\n111968|0.72222\n111969|0.69444\n111970|0.34722\n111971|0.59722\n111972|0.58333\n111973|0.72222\n111974|0.52778\n111975|0.61111\n111976|0.59722\n111977|0.66667\n111978|0.72222\n111979|0.70833\n111980|0.79167\n111981|0.70833\n111982|0.52778\n111983|0.65278\n111984|0.63889\n111985|0.47222\n111986|0.55556\n111987|0.47222\n111988|0.5\n111989|0.52778\n111990|0.68056\n111991|0.76389\n111992|0.66667\n111993|0.54167\n111994|0.36111\n111995|0.58333\n111996|0.59722\n111997|0.66667\n111998|0.63889\n111999|0.69444\n112000|0.54167\n112001|0.26389\n112002|0.76389\n112003|0.79167\n112004|0.29167\n112005|0.81944\n112006|0.77778\n112007|0.80556\n112008|0.36111\n112009|0.41667\n112010|0.33333\n112011|0.48611\n112012|0.055556\n112013|0.16667\n112014|0.16667\n112015|0.5\n112016|0.27778\n112017|0.68056\n112018|0.54167\n112019|0.58333\n112020|0.18056\n112021|0.48611\n112022|0.26389\n112023|0.29167\n112024|0.33333\n112025|0.11111\n112026|0.5\n112027|0.54167\n112028|0.63889\n112029|0.77778\n112030|0.73611\n112031|0.90278\n112032|0.70833\n112033|0.70833\n112034|0.65278\n112035|0.625\n112036|0.72222\n112037|0.75\n112038|0.68056\n112039|0.68056\n112040|0.61111\n112041|0.56944\n112042|0.81944\n112043|0.79167\n112044|0.63889\n112045|0.5\n112046|0.58333\n112047|0.83333\n112048|0.83333\n112049|0.55556\n112050|0.73611\n112051|0.80556\n112052|0.72222\n112053|0.44444\n112054|0.76389\n112055|0.81944\n112056|0.66667\n112057|0.83333\n112058|0.61111\n112059|0.20833\n112060|0.43056\n112061|0.77778\n112062|0.77778\n112063|0.81944\n112064|0.56944\n112065|0.30556\n112066|0.61111\n112067|0.70833\n112068|0.54167\n112069|0.43056\n112070|0.88889\n112071|0.56944\n112072|0.38889\n112073|0.44444\n112074|0.41667\n112075|0.58333\n112076|0.66667\n112077|0.58333\n112078|0.59722\n112079|0.68056\n112080|0.31944\n112081|0.43056\n112082|0.48611\n112083|0.63889\n112084|0.34722\n112085|0.66667\n112086|0.20833\n112087|0.625\n112088|0.48611\n112089|0.68056\n112090|0.90278\n112091|0.22222\n112092|0.47222\n112093|0.73611\n112094|0.51389\n112095|0.61111\n112096|0.86111\n112097|0.81944\n112098|0.73611\n112099|0.375\n112100|0.5\n112101|0.34722\n112102|0.31944\n112103|0.5\n112104|0.75\n112105|0.75\n112106|0.76389\n112107|0.61111\n112108|0.81944\n112109|0.56944\n112110|0.55556\n112111|0.625\n112112|0.41667\n112113|0.54167\n112114|0.69444\n112115|0.5\n112116|0.625\n112117|0.61111\n112118|0.22222\n112119|0.61111\n112120|0.72222\n112121|0.56944\n112122|0.75\n112123|0.58333\n112124|0.76389\n112125|0.52778\n112126|0.375\n112127|0.5\n112128|0.625\n112129|0.61111\n112130|0.65278\n112131|0.34722\n112132|0.43056\n112133|0.25\n112134|0.55556\n112135|0.56944\n112136|0.5\n112137|0.58333\n112138|0.58333\n112139|0.58333\n112140|0.44444\n112141|0.5\n112142|0.55556\n112143|0.5\n112144|0.41667\n112145|0.54167\n112146|0.55556\n112147|0.5\n112148|0.56944\n112149|0.72222\n112150|0.43056\n112151|0.83333\n112152|0.54167\n112153|0.54167\n112154|0.51389\n112155|0.40278\n112156|0.68056\n112157|0.5\n112158|0.41667\n112159|0.69444\n112160|0.56944\n112161|0.68056\n112162|0.5\n112163|0.88889\n112164|0.63889\n112165|0.5\n112166|0.61111\n112167|0.52778\n112168|0.22222\n112169|0.68056\n112170|0.70833\n112171|0.59722\n112172|0.375\n112173|0.5\n112174|0.38889\n112175|0.33333\n112176|0.44444\n112177|0.61111\n112178|0.38889\n112179|0.69444\n112180|0.44444\n112181|0.38889\n112182|0.25\n112183|0.20833\n112184|0.30556\n112185|0.34722\n112186|0.30556\n112187|0.38889\n112188|0.23611\n112189|0.40278\n112190|0.51389\n112191|0.79167\n112192|0.56944\n112193|0.27778\n112194|0.44444\n112195|0.52778\n112196|0.54167\n112197|0.625\n112198|0.625\n112199|0.18056\n112200|0.69444\n112201|0.69444\n112202|0.48611\n112203|0.5\n112204|0.44444\n112205|0.43056\n112206|0.41667\n112207|0.22222\n112208|0.55556\n112209|0.47222\n112210|0.52778\n112211|0.61111\n112212|0.70833\n112213|0.55556\n112214|0.45833\n112215|0.55556\n112216|0.48611\n112217|0.25\n112218|0.36111\n112219|0.5\n112220|0.55556\n112221|0.51389\n112222|0.18056\n112223|0.22222\n112224|0.5\n112225|0.51389\n112226|0.55556\n112227|0.47222\n112228|0.5\n112229|0.66667\n112230|0.56944\n112231|0.56944\n112232|0.73611\n112233|0.33333\n112234|0.33333\n112235|0.45833\n112236|0.54167\n112237|0.51389\n112238|0.52778\n112239|0.22222\n112240|0.5\n112241|0.75\n112242|0.61111\n112243|0.5\n112244|0.27778\n112245|0.75\n112246|0.66667\n112247|0.75\n112248|0.19444\n112249|0.11111\n112250|0.69444\n112251|0.63889\n112252|0.61111\n112253|0.56944\n112254|0.54167\n112255|0.55556\n112256|0.5\n112257|0.69444\n112258|0.16667\n112259|0.13889\n112260|0.33333\n112261|0.43056\n112262|0.59722\n112263|0.75\n112264|0.38889\n112265|0.66667\n112266|0.83333\n112267|0.45833\n112268|0.23611\n112269|0.54167\n112270|0.43056\n112271|0.5\n112272|0.38889\n112273|0.61111\n112274|0.52778\n112275|0.38889\n112276|0.52778\n112277|0.38889\n112278|0.5\n112279|0.65278\n112280|0.5\n112281|0.66667\n112282|0.66667\n112283|0.51389\n112284|0.29167\n112285|0.5\n112286|0.5\n112287|0.63889\n112288|0.30556\n112289|0.59722\n112290|0.16667\n112291|0.66667\n112292|0.52778\n112293|0.40278\n112294|0.5\n112295|0.625\n112296|0.75\n112297|0.5\n112298|0.58333\n112299|0.45833\n112300|1\n112301|0.875\n112302|0.83333\n112303|0.38889\n112304|0.63889\n112305|0.5\n112306|0.68056\n112307|0.41667\n112308|0.41667\n112309|0.41667\n112310|0.58333\n112311|0.36111\n112312|0.13889\n112313|0.79167\n112314|0.73611\n112315|0.73611\n112316|0.30556\n112317|0.41667\n112318|0.13889\n112319|0.625\n112320|0.61111\n112321|0.76389\n112322|0.48611\n112323|0.43056\n112324|0.55556\n112325|0.59722\n112326|0.44444\n112327|0.625\n112328|0.55556\n112329|0.69444\n112330|0.5\n112331|0.52778\n112332|0.38889\n112333|0.5\n112334|0.55556\n112335|0.38889\n112336|0.55556\n112337|0.66667\n112338|0.45833\n112339|0.55556\n112340|0.16667\n112341|0.41667\n112342|0.375\n112343|0.30556\n112344|0.51389\n112345|0.5\n112346|0.52778\n112347|0.51389\n112348|0.5\n112349|0.44444\n112350|0.55556\n112351|0.5\n112352|0.33333\n112353|0.20833\n112354|0.11111\n112355|0.91667\n112356|0.5\n112357|0.5\n112358|0.22222\n112359|0.63889\n112360|0.44444\n112361|0.41667\n112362|0.5\n112363|0.51389\n112364|0.375\n112365|0.13889\n112366|0.5\n112367|0.52778\n112368|0.83333\n112369|0.5\n112370|0.25\n112371|0.70833\n112372|0.125\n112373|0.055556\n112374|0.33333\n112375|0.80556\n112376|0.80556\n112377|0.33333\n112378|0.59722\n112379|0.77778\n112380|0.73611\n112381|0.79167\n112382|0.41667\n112383|0.55556\n112384|0.59722\n112385|0.68056\n112386|0.83333\n112387|0.83333\n112388|0.66667\n112389|0.59722\n112390|0.20833\n112391|0.5\n112392|0.5\n112393|0.5\n112394|0.56944\n112395|0.29167\n112396|0.88889\n112397|0.34722\n112398|0.40278\n112399|0.56944\n112400|0.52778\n112401|0.65278\n112402|0.31944\n112403|0.5\n112404|0.59722\n112405|0.5\n112406|0.44444\n112407|0.38889\n112408|0.5\n112409|0.59722\n112410|0.069444\n112411|0.5\n112412|0.44444\n112413|0.70833\n112414|0.51389\n112415|0.45833\n112416|0.55556\n112417|0.83333\n112418|0.72222\n112419|0.72222\n112420|0.70833\n112421|0.81944\n112422|0.66667\n112423|0.23611\n112424|0.59722\n112425|0.56944\n112426|0.80556\n112427|0.86111\n112428|0.54167\n112429|0.69444\n112430|0.45833\n112431|0.47222\n112432|0.23611\n112433|0.47222\n112434|0.23611\n112435|0.43056\n112436|0.59722\n112437|0.68056\n112438|0.5\n112439|0.5\n112440|0.51389\n112441|0.58333\n112442|0.44444\n112443|0.5\n112444|0.70833\n112445|0.5\n112446|0.81944\n112447|0.5\n112448|0.44444\n112449|0.5\n112450|0.48611\n112451|0.34722\n112452|0.15278\n112453|0.41667\n112454|0.59722\n112455|0.5\n112456|0.5\n112457|0.625\n112458|0.5\n112459|0.5\n112460|0.41667\n112461|0.41667\n112462|0.36111\n112463|0.65278\n112464|0.59722\n112465|0.66667\n112466|0.51389\n112467|0.61111\n112468|0.5\n112469|0.77778\n112470|0.52778\n112471|0.33333\n112472|0.36111\n112473|0.19444\n112474|0.013889\n112475|0.48611\n112476|0.47222\n112477|0.75\n112478|0.41667\n112479|0.40278\n112480|0.70833\n112481|0.81944\n112482|0.44444\n112483|0.58333\n112484|0.30556\n112485|0.19444\n112486|0.73611\n112487|0.77778\n112488|0.5\n112489|0.56944\n112490|0.52778\n112491|0.69444\n112492|0.51389\n112493|0.5\n112494|0.80556\n112495|0.375\n112496|0.83333\n112497|0.81944\n112498|0.79167\n112499|0.63889\n112500|0.77778\n112501|0.66667\n112502|0.72222\n112503|0.41667\n112504|0.80556\n112505|0.72222\n112506|0.79167\n112507|0.80556\n112508|0.97222\n112509|0.80556\n112510|0.44444\n112511|0.48611\n112512|0.36111\n112513|0.375\n112514|0.45833\n112515|0.51389\n112516|0.44444\n112517|0.43056\n112518|0.27778\n112519|0.15278\n112520|0.20833\n112521|0.25\n112522|0.81944\n112523|0.77778\n112524|0.83333\n112525|0.76389\n112526|0.69444\n112527|0.47222\n112528|0.55556\n112529|0.48611\n112530|0.45833\n112531|0.33333\n112532|0.41667\n112533|0.54167\n112534|0.51389\n112535|0.5\n112536|0.58333\n112537|0.5\n112538|0.52778\n112539|0.55556\n112540|0.44444\n112541|0.63889\n112542|0.66667\n112543|0.59722\n112544|0.66667\n112545|0.5\n112546|0.44444\n112547|0.48611\n112548|0.48611\n112549|0.38889\n112550|0.55556\n112551|0.54167\n112552|0.55556\n112553|0.47222\n112554|0.66667\n112555|0.5\n112556|0.47222\n112557|0.5\n112558|0.5\n112559|0.5\n112560|0.22222\n112561|0.38889\n112562|0.44444\n112563|0.52778\n112564|0.5\n112565|0.625\n112566|0.61111\n112567|0.5\n112568|0.41667\n112569|0.5\n112570|0.61111\n112571|0.5\n112572|0.75\n112573|0.66667\n112574|0.48611\n112575|0.72222\n112576|0.69444\n112577|0.5\n112578|0.11111\n112579|0.52778\n112580|0.55556\n112581|0.73611\n112582|0.77778\n112583|0.61111\n112584|0.5\n112585|0.44444\n112586|0.68056\n112587|0.76389\n112588|0.73611\n112589|0.81944\n112590|0.47222\n112591|0.33333\n112592|0.58333\n112593|0.54167\n112594|0.56944\n112595|0.47222\n112596|0.56944\n112597|0.75\n112598|0.38889\n112599|0.55556\n112600|0.33333\n112601|0.94444\n112602|0.70833\n112603|0.63889\n112604|0.76389\n112605|0.26389\n112606|0.44444\n112607|0.30556\n112608|0.44444\n112609|0.5\n112610|0.51389\n112611|0.55556\n112612|0.66667\n112613|0.5\n112614|0.47222\n112615|0.47222\n112616|0.38889\n112617|0.51389\n112618|0.5\n112619|0.26389\n112620|0.59722\n112621|0.55556\n112622|0.76389\n112623|0.40278\n112624|0.76389\n112625|0.76389\n112626|0.69444\n112627|0.75\n112628|0.40278\n112629|0.30556\n112630|0.63889\n112631|0.75\n112632|0.86111\n112633|0.63889\n112634|0.76389\n112635|0.875\n112636|0.5\n112637|0.69444\n112638|0.36111\n112639|0.47222\n112640|0.55556\n112641|0.83333\n112642|0.80556\n112643|0.80556\n112644|0.70833\n112645|0.45833\n112646|0.52778\n112647|0.34722\n112648|0.18056\n112649|0.5\n112650|0.52778\n112651|0.5\n112652|0.84722\n112653|0.5\n112654|0.375\n112655|0.47222\n112656|0.51389\n112657|0.5\n112658|0.41667\n112659|0.16667\n112660|0.56944\n112661|0.61111\n112662|0.72222\n112663|0.44444\n112664|0.48611\n112665|0.59722\n112666|0.15278\n112667|0.48611\n112668|0.48611\n112669|0.56944\n112670|0.51389\n112671|0.5\n112672|0.65278\n112673|0.44444\n112674|0.22222\n112675|0.63889\n112676|0.54167\n112677|0.5\n112678|0.36111\n112679|0.31944\n112680|0.33333\n112681|0.52778\n112682|0.40278\n112683|0.72222\n112684|0.65278\n112685|0.88889\n112686|0.79167\n112687|0.54167\n112688|0.5\n112689|0.36111\n112690|0.44444\n112691|0.51389\n112692|0.45833\n112693|0.61111\n112694|0.65278\n112695|0.70833\n112696|0.52778\n112697|0.27778\n112698|0.26389\n112699|0.5\n112700|0.61111\n112701|0.68056\n112702|0.47222\n112703|0.80556\n112704|0.5\n112705|0.18056\n112706|0.40278\n112707|0.33333\n112708|0.33333\n112709|0.59722\n112710|0.61111\n112711|0.43056\n112712|0.80556\n112713|0.80556\n112714|0.41667\n112715|0.41667\n112716|0.54167\n112717|0.30556\n112718|0.44444\n112719|0.45833\n112720|0.31944\n112721|0.30556\n112722|0.48611\n112723|0.56944\n112724|0.22222\n112725|0.47222\n112726|0.79167\n112727|0.625\n112728|0.65278\n112729|0.58333\n112730|0.47222\n112731|0.5\n112732|0.33333\n112733|0.61111\n112734|0.48611\n112735|0.16667\n112736|0.59722\n112737|0.68056\n112738|0.5\n112739|0.58333\n112740|0.41667\n112741|0.80556\n112742|0.73611\n112743|0.70833\n112744|0.73611\n112745|0.69444\n112746|0.69444\n112747|0.83333\n112748|0.69444\n112749|0.84722\n112750|0.84722\n112751|0.52778\n112752|0.48611\n112753|0.41667\n112754|0.59722\n112755|0.61111\n112756|0.5\n112757|0.58333\n112758|0.5\n112759|0.38889\n112760|0.33333\n112761|0.68056\n112762|0.75\n112763|0.84722\n112764|0.86111\n112765|0.58333\n112766|0.875\n112767|0.69444\n112768|0.51389\n112769|0.5\n112770|0.58333\n112771|0.55556\n112772|0.52778\n112773|0.26389\n112774|0.23611\n112775|0.45833\n112776|0.59722\n112777|0.66667\n112778|0.625\n112779|0.61111\n112780|0.875\n112781|0.36111\n112782|0.38889\n112783|0.84722\n112784|0.625\n112785|0.29167\n112786|0.88889\n112787|0.63889\n112788|0.72222\n112789|0.56944\n112790|0.59722\n112791|0.15278\n112792|0.63889\n112793|0.36111\n112794|0.52778\n112795|0.29167\n112796|0.73611\n112797|0.75\n112798|0.66667\n112799|0.44444\n112800|0.61111\n112801|0.47222\n112802|0.72222\n112803|0.66667\n112804|0.77778\n112805|0.66667\n112806|0.56944\n112807|0.625\n112808|0.72222\n112809|0.66667\n112810|0.91667\n112811|0.23611\n112812|0.66667\n112813|0.5\n112814|0.51389\n112815|0.18056\n112816|0.59722\n112817|0.875\n112818|0.90278\n112819|0.59722\n112820|0.83333\n112821|0.55556\n112822|0.61111\n112823|0.55556\n112824|0.72222\n112825|0.81944\n112826|0.66667\n112827|0.68056\n112828|0.56944\n112829|0.5\n112830|0.5\n112831|0.48611\n112832|0.61111\n112833|0.45833\n112834|0.59722\n112835|0.625\n112836|0.22222\n112837|0.65278\n112838|0.5\n112839|0.56944\n112840|0.63889\n112841|0.45833\n112842|0.45833\n112843|0.59722\n112844|0.29167\n112845|0.72222\n112846|0.65278\n112847|0.56944\n112848|0.56944\n112849|0.52778\n112850|0.69444\n112851|0.68056\n112852|0.56944\n112853|0.63889\n112854|0.5\n112855|0.77778\n112856|0.76389\n112857|0.61111\n112858|0.5\n112859|0.48611\n112860|0.5\n112861|0.72222\n112862|0.47222\n112863|0.77778\n112864|0.45833\n112865|0.625\n112866|0.43056\n112867|0.23611\n112868|0.58333\n112869|0.55556\n112870|0.19444\n112871|0.51389\n112872|0.65278\n112873|0.59722\n112874|0.61111\n112875|0.45833\n112876|0.51389\n112877|0.5\n112878|0.30556\n112879|0.84722\n112880|0.84722\n112881|0.61111\n112882|0.63889\n112883|0.44444\n112884|0.61111\n112885|0.5\n112886|0.61111\n112887|0.63889\n112888|0.55556\n112889|0.63889\n112890|0.73611\n112891|0.77778\n112892|0.5\n112893|0.44444\n112894|0.75\n112895|0.58333\n112896|0.61111\n112897|0.5\n112898|0.5\n112899|0.125\n112900|0.34722\n112901|0.55556\n112902|0.44444\n112903|0.69444\n112904|0.875\n112905|0.73611\n112906|0.625\n112907|0.43056\n112908|0.66667\n112909|0.83333\n112910|0.38889\n112911|0.43056\n112912|0.51389\n112913|0.47222\n112914|0.66667\n112915|0.54167\n112916|0.56944\n112917|0.61111\n112918|0.5\n112919|0.5\n112920|0.45833\n112921|0.56944\n112922|0.54167\n112923|0.5\n112924|0.72222\n112925|0.76389\n112926|0.75\n112927|0.47222\n112928|0.47222\n112929|0.48611\n112930|0.29167\n112931|0.22222\n112932|0.625\n112933|0.51389\n112934|0.69444\n112935|0.34722\n112936|0.65278\n112937|0.66667\n112938|0.34722\n112939|0.73611\n112940|0.68056\n112941|0.73611\n112942|0.5\n112943|0.70833\n112944|0.68056\n112945|0.86111\n112946|0.875\n112947|0.48611\n112948|0.44444\n112949|0.66667\n112950|0.5\n112951|0.51389\n112952|0.84722\n112953|0.73611\n112954|0.55556\n112955|0.44444\n112956|0.5\n112957|0.51389\n112958|0.5\n112959|0.33333\n112960|0.26389\n112961|0.5\n112962|0.51389\n112963|0.38889\n112964|0.77778\n112965|0.76389\n112966|0.36111\n112967|0.44444\n112968|0.84722\n112969|0.91667\n112970|0.65278\n112971|0.51389\n112972|0.43056\n112973|0.83333\n112974|0.48611\n112975|0.66667\n112976|0.83333\n112977|0.79167\n112978|0.40278\n112979|0.5\n112980|0.48611\n112981|0.5\n112982|0.45833\n112983|0.5\n112984|0.61111\n112985|0.63889\n112986|0.80556\n112987|0.72222\n112988|0.70833\n112989|0.88889\n112990|0.44444\n112991|0.72222\n112992|0.79167\n112993|0.52778\n112994|0.5\n112995|0.77778\n112996|0.11111\n112997|0.33333\n112998|0.55556\n112999|0.52778\n113000|0.125\n113001|0.36111\n113002|0.23611\n113003|0.75\n113004|0.36111\n113005|0.625\n113006|0.34722\n113007|0.18056\n113008|0.20833\n113009|0.26389\n113010|0.125\n113011|0.44444\n113012|0.95833\n113013|0.72222\n113014|0.65278\n113015|0.70833\n113016|0.77778\n113017|0.83333\n113018|0.31944\n113019|0.26389\n113020|0.58333\n113021|0.66667\n113022|0.5\n113023|0.19444\n113024|0.77778\n113025|0.875\n113026|0.54167\n113027|0.47222\n113028|0.5\n113029|0.65278\n113030|0.61111\n113031|0.47222\n113032|0.83333\n113033|0.72222\n113034|0.81944\n113035|0.84722\n113036|0.95833\n113037|0.79167\n113038|0.90278\n113039|0.80556\n113040|0.5\n113041|0.77778\n113042|0.84722\n113043|0.75\n113044|0.47222\n113045|0.38889\n113046|0.81944\n113047|0.80556\n113048|0.625\n113049|0.5\n113050|0.54167\n113051|0.58333\n113052|0.61111\n113053|0.59722\n113054|0.625\n113055|0.013889\n113056|0.61111\n113057|0.76389\n113058|0.65278\n113059|0.58333\n113060|0.54167\n113061|0.75\n113062|0.48611\n113063|0.70833\n113064|0.43056\n113065|0.61111\n113066|0.52778\n113067|0.5\n113068|0.5\n113069|0.51389\n113070|0.5\n113071|0.55556\n113072|0.68056\n113073|0.5\n113074|0.5\n113075|0.75\n113076|0.45833\n113077|0.63889\n113078|0.5\n113079|0.5\n113080|0.375\n113081|0.61111\n113082|0.51389\n113083|0.33333\n113084|0.13889\n113085|0.63889\n113086|0.61111\n113087|0.52778\n113088|0.91667\n113089|0.65278\n113090|0.47222\n113091|0.75\n113092|0.44444\n113093|0.52778\n113094|0.52778\n113095|0.54167\n113096|0.5\n113097|0.59722\n113098|0.56944\n113099|0.59722\n113100|0.48611\n113101|0.5\n113102|0.38889\n113103|0.5\n113104|0.77778\n113105|0.5\n113106|0.52778\n113107|0.41667\n113108|0.55556\n113109|0.5\n113110|0.44444\n113111|0.41667\n113112|0.59722\n113113|0.5\n113114|0.5\n113115|0.34722\n113116|0.5\n113117|0.36111\n113118|0.41667\n113119|0.5\n113120|0.76389\n113121|0.68056\n113122|0.59722\n113123|0.5\n113124|0.52778\n113125|0.33333\n113126|0.5\n113127|0.72222\n113128|0.31944\n113129|0.41667\n113130|0.38889\n113131|0.41667\n113132|0.29167\n113133|0.43056\n113134|0.52778\n113135|0.375\n113136|0.44444\n113137|0.63889\n113138|0.41667\n113139|0.66667\n113140|0.56944\n113141|0.5\n113142|0.66667\n113143|0.5\n113144|0.48611\n113145|0.23611\n113146|0.5\n113147|0.5\n113148|0.33333\n113149|0.48611\n113150|0.5\n113151|0.63889\n113152|0.31944\n113153|0.5\n113154|0.5\n113155|0.48611\n113156|0.55556\n113157|0.43056\n113158|0.38889\n113159|0.47222\n113160|0.58333\n113161|0.34722\n113162|0.63889\n113163|0.41667\n113164|0.54167\n113165|0.44444\n113166|0.5\n113167|0.29167\n113168|0.5\n113169|0.5\n113170|0.52778\n113171|0.5\n113172|0.52778\n113173|0.625\n113174|0.58333\n113175|0.5\n113176|0.5\n113177|0.55556\n113178|0.65278\n113179|0.5\n113180|0.5\n113181|0.5\n113182|0.5\n113183|0.34722\n113184|0.58333\n113185|0.5\n113186|0.625\n113187|0.5\n113188|0.69444\n113189|0.72222\n113190|0.51389\n113191|0.5\n113192|0.51389\n113193|0.5\n113194|0.5\n113195|0.5\n113196|0.43056\n113197|0.5\n113198|0.5\n113199|0.5\n113200|0.625\n113201|0.66667\n113202|0.5\n113203|0.5\n113204|0.5\n113205|0.63889\n113206|0.79167\n113207|0.51389\n113208|0.61111\n113209|0.55556\n113210|0.68056\n113211|0.54167\n113212|0.5\n113213|0.56944\n113214|0.5\n113215|0.52778\n113216|0.51389\n113217|0.47222\n113218|0.54167\n113219|0.5\n113220|0.59722\n113221|0.38889\n113222|0.5\n113223|0.5\n113224|0.52778\n113225|0.5\n113226|0.5\n113227|0.5\n113228|0.5\n113229|0.5\n113230|0.5\n113231|0.61111\n113232|0.5\n113233|0.5\n113234|0.5\n113235|0.68056\n113236|0.59722\n113237|0.26389\n113238|0.5\n113239|0.625\n113240|0.52778\n113241|0.65278\n113242|0.55556\n113243|0.76389\n113244|0.56944\n113245|0.77778\n113246|0.25\n113247|0.52778\n113248|0.55556\n113249|0.625\n113250|0.23611\n113251|0.36111\n113252|0.45833\n113253|0.625\n113254|0.41667\n113255|0.65278\n113256|0.59722\n113257|0.5\n113258|0.5\n113259|0.55556\n113260|0.56944\n113261|0.59722\n113262|0.56944\n113263|0.80556\n113264|0.80556\n113265|0.69444\n113266|0.83333\n113267|0.70833\n113268|0.58333\n113269|0.59722\n113270|0.73611\n113271|0.55556\n113272|0.5\n113273|0.51389\n113274|0.58333\n113275|0.58333\n113276|0.59722\n113277|0.5\n113278|0.5\n113279|0.69444\n113280|0.45833\n113281|0.79167\n113282|0.56944\n113283|0.76389\n113284|0.73611\n113285|0.69444\n113286|0.16667\n113287|0.52778\n113288|0.48611\n113289|0.16667\n113290|0.56944\n113291|0.70833\n113292|0.61111\n113293|0.69444\n113294|0.77778\n113295|0.48611\n113296|0.25\n113297|0.61111\n113298|0.55556\n113299|0.61111\n113300|0.55556\n113301|0.70833\n113302|0.52778\n113303|0.43056\n113304|0.54167\n113305|0.5\n113306|0.27778\n113307|0.40278\n113308|0.375\n113309|0.76389\n113310|0.72222\n113311|0.73611\n113312|0.5\n113313|0.44444\n113314|0.52778\n113315|0.5\n113316|0.65278\n113317|0.20833\n113318|0.5\n113319|0.5\n113320|0.5\n113321|0.55556\n113322|0.47222\n113323|0.40278\n113324|0.18056\n113325|0.36111\n113326|0.48611\n113327|0.47222\n113328|0.44444\n113329|0.48611\n113330|0.58333\n113331|0.47222\n113332|0.625\n113333|0.48611\n113334|0.5\n113335|0.54167\n113336|0.80556\n113337|0.29167\n113338|0.5\n113339|0.52778\n113340|0.40278\n113341|0.51389\n113342|0.75\n113343|0.625\n113344|0.5\n113345|0.61111\n113346|0.5\n113347|0.5\n113348|0.52778\n113349|0.40278\n113350|0.5\n113351|0.65278\n113352|0.59722\n113353|0.81944\n113354|0.5\n113355|0.47222\n113356|0.5\n113357|0.47222\n113358|0.51389\n113359|0.56944\n113360|0.43056\n113361|0.58333\n113362|0.38889\n113363|0.41667\n113364|0.375\n113365|0.51389\n113366|0.5\n113367|0.58333\n113368|0.52778\n113369|0.61111\n113370|0.59722\n113371|0.69444\n113372|0.86111\n113373|0.5\n113374|0.72222\n113375|0.77778\n113376|0.51389\n113377|0.61111\n113378|0.625\n113379|0.75\n113380|0.45833\n113381|0.29167\n113382|0.625\n113383|0.63889\n113384|0.65278\n113385|0.29167\n113386|0.68056\n113387|0.52778\n113388|0.80556\n113389|0.55556\n113390|0.66667\n113391|0.72222\n113392|0.68056\n113393|0.55556\n113394|0.5\n113395|0.59722\n113396|0.73611\n113397|0.55556\n113398|0.54167\n113399|0.73611\n113400|0.80556\n113401|0.48611\n113402|0.70833\n113403|0.69444\n113404|0.66667\n113405|0.625\n113406|0.40278\n113407|0.44444\n113408|0.31944\n113409|0.48611\n113410|0.375\n113411|0.36111\n113412|0.30556\n113413|0.33333\n113414|0.22222\n113415|0.45833\n113416|0.55556\n113417|0.5\n113418|0.5\n113419|0.30556\n113420|0.70833\n113421|0.72222\n113422|0.66667\n113423|0.43056\n113424|0.625\n113425|0.75\n113426|0.625\n113427|0.66667\n113428|0.86111\n113429|0.52778\n113430|0.81944\n113431|0.65278\n113432|0.48611\n113433|0.61111\n113434|0.44444\n113435|0.51389\n113436|0.55556\n113437|0.54167\n113438|0.48611\n113439|0.54167\n113440|0.69444\n113441|0.52778\n113442|0.44444\n113443|0.51389\n113444|0.45833\n113445|0.5\n113446|0.66667\n113447|0.51389\n113448|0.43056\n113449|0.5\n113450|0.52778\n113451|0.61111\n113452|0.66667\n113453|0.66667\n113454|0.63889\n113455|0.72222\n113456|0.76389\n113457|0.65278\n113458|0.75\n113459|0.65278\n113460|0.47222\n113461|0.44444\n113462|0.5\n113463|0.52778\n113464|0.45833\n113465|0.44444\n113466|0.44444\n113467|0.16667\n113468|0.5\n113469|0.47222\n113470|0.5\n113471|0.47222\n113472|0.5\n113473|0.58333\n113474|0.52778\n113475|0.43056\n113476|0.52778\n113477|0.51389\n113478|0.5\n113479|0.51389\n113480|0.63889\n113481|0.56944\n113482|0.33333\n113483|0.5\n113484|0.5\n113485|0.5\n113486|0.5\n113487|0.45833\n113488|0.51389\n113489|0.5\n113490|0.47222\n113491|0.51389\n113492|0.52778\n113493|0.625\n113494|0.59722\n113495|0.44444\n113496|0.76389\n113497|0.80556\n113498|0.44444\n113499|0.48611\n113500|0.44444\n113501|0.47222\n113502|0.65278\n113503|0.58333\n113504|0.52778\n113505|0.38889\n113506|0.56944\n113507|0.23611\n113508|0.43056\n113509|0.61111\n113510|0.5\n113511|0.47222\n113512|0.70833\n113513|0.36111\n113514|0.47222\n113515|0.45833\n113516|0.36111\n113517|0.66667\n113518|0.47222\n113519|0.38889\n113520|0.44444\n113521|0.33333\n113522|0.41667\n113523|0.22222\n113524|0.66667\n113525|0.43056\n113526|0.5\n113527|0.41667\n113528|0.40278\n113529|0.36111\n113530|0.27778\n113531|0.55556\n113532|0.45833\n113533|0.48611\n113534|0.40278\n113535|0.25\n113536|0.083333\n113537|0.38889\n113538|0.47222\n113539|0.51389\n113540|0.33333\n113541|0.65278\n113542|0.5\n113543|0.5\n113544|0.5\n113545|0.25\n113546|0.20833\n113547|0.51389\n113548|0.54167\n113549|0.70833\n113550|0.51389\n113551|0.5\n113552|0.54167\n113553|0.59722\n113554|0.44444\n113555|0.48611\n113556|0.34722\n113557|0.22222\n113558|0.40278\n113559|0.54167\n113560|0.41667\n113561|0.38889\n113562|0.5\n113563|0.38889\n113564|0.5\n113565|0.55556\n113566|0.5\n113567|0.81944\n113568|0.33333\n113569|0.5\n113570|0.70833\n113571|0.25\n113572|0.375\n113573|0.31944\n113574|0.38889\n113575|0.41667\n113576|0.18056\n113577|0.38889\n113578|0.38889\n113579|0.51389\n113580|0.66667\n113581|0.79167\n113582|0.25\n113583|0.47222\n113584|0.58333\n113585|0.51389\n113586|0.80556\n113587|0.55556\n113588|0.5\n113589|0.55556\n113590|0.51389\n113591|0.625\n113592|0.44444\n113593|0.80556\n113594|0.48611\n113595|0.56944\n113596|0.54167\n113597|0.45833\n113598|0.47222\n113599|0.65278\n113600|0.5\n113601|0.59722\n113602|0.19444\n113603|0.5\n113604|0.38889\n113605|0.34722\n113606|0.23611\n113607|0.63889\n113608|0.66667\n113609|0.5\n113610|0.5\n113611|0.5\n113612|0.5\n113613|0.5\n113614|0.5\n113615|0.52778\n113616|0.5\n113617|0.5\n113618|0.5\n113619|0.41667\n113620|0.66667\n113621|0.61111\n113622|0.45833\n113623|0.5\n113624|0.44444\n113625|0.55556\n113626|0.54167\n113627|0.63889\n113628|0.5\n113629|0.38889\n113630|0.5\n113631|0.73611\n113632|0.70833\n113633|0.22222\n113634|0.47222\n113635|0.63889\n113636|0.44444\n113637|0.5\n113638|0.375\n113639|0.11111\n113640|0.52778\n113641|0.69444\n113642|0.5\n113643|0.5\n113644|0.65278\n113645|0.47222\n113646|0.5\n113647|0.48611\n113648|0.47222\n113649|0.73611\n113650|0.54167\n113651|0.5\n113652|0.45833\n113653|0.5\n113654|0.47222\n113655|0.47222\n113656|0.5\n113657|0.56944\n113658|0.72222\n113659|0.5\n113660|0.61111\n113661|0.66667\n113662|0.59722\n113663|0.76389\n113664|0.81944\n113665|0.5\n113666|0.31944\n113667|0.55556\n113668|0.625\n113669|0.77778\n113670|0.5\n113671|0.5\n113672|0.5\n113673|0.30556\n113674|0.5\n113675|0.70833\n113676|0.51389\n113677|0.54167\n113678|0.52778\n113679|0.44444\n113680|0.30556\n113681|0.76389\n113682|0.51389\n113683|0.66667\n113684|0.51389\n113685|0.55556\n113686|0.84722\n113687|0.38889\n113688|0.5\n113689|0.375\n113690|0.51389\n113691|0.72222\n113692|0.54167\n113693|0.5\n113694|0.5\n113695|0.61111\n113696|0.65278\n113697|0.56944\n113698|0.56944\n113699|0.59722\n113700|0.55556\n113701|0.25\n113702|0.73611\n113703|0.72222\n113704|0.55556\n113705|0.13889\n113706|0.83333\n113707|0.59722\n113708|0.625\n113709|0.52778\n113710|0.26389\n113711|0.33333\n113712|0.5\n113713|0.45833\n113714|0.51389\n113715|0.51389\n113716|0.5\n113717|0.51389\n113718|0.36111\n113719|0.48611\n113720|0.52778\n113721|0.19444\n113722|0.26389\n113723|0.55556\n113724|0.375\n113725|0.33333\n113726|0.59722\n113727|0.70833\n113728|0.52778\n113729|0.54167\n113730|0.54167\n113731|0.47222\n113732|0.5\n113733|0.18056\n113734|0.27778\n113735|0.26389\n113736|0.51389\n113737|0.55556\n113738|0.56944\n113739|0.47222\n113740|0.58333\n113741|0.63889\n113742|0.41667\n113743|0.40278\n113744|0.5\n113745|0.5\n113746|0.45833\n113747|0.66667\n113748|0.52778\n113749|0.34722\n113750|0.44444\n113751|0.75\n113752|0.40278\n113753|0.27778\n113754|0.31944\n113755|0.5\n113756|0.77778\n113757|0.38889\n113758|0.61111\n113759|0.083333\n113760|0.72222\n113761|0.51389\n113762|0.86111\n113763|0.5\n113764|0.69444\n113765|0.43056\n113766|0.5\n113767|0.63889\n113768|0.125\n113769|0.5\n113770|0.56944\n113771|0.69444\n113772|0.70833\n113773|0.43056\n113774|0.51389\n113775|0.58333\n113776|0.51389\n113777|0.5\n113778|0.51389\n113779|0.48611\n113780|0.55556\n113781|0.69444\n113782|0.59722\n113783|0.81944\n113784|0.54167\n113785|0.44444\n113786|0.77778\n113787|0.44444\n113788|0.43056\n113789|0.47222\n113790|0.72222\n113791|0.72222\n113792|0.69444\n113793|0.5\n113794|0.5\n113795|0.34722\n113796|0.61111\n113797|0.52778\n113798|0.52778\n113799|0.61111\n113800|0.81944\n113801|0.875\n113802|0.93056\n113803|0.72222\n113804|0.47222\n113805|0.80556\n113806|0.54167\n113807|0.72222\n113808|0.61111\n113809|0.88889\n113810|0.73611\n113811|0.625\n113812|0.77778\n113813|0.59722\n113814|0.31944\n113815|0.47222\n113816|0.63889\n113817|0.5\n113818|0.625\n113819|0.38889\n113820|0.43056\n113821|0.66667\n113822|0.5\n113823|0.29167\n113824|0.48611\n113825|0.47222\n113826|0.41667\n113827|0.45833\n113828|0.58333\n113829|0.58333\n113830|0.68056\n113831|0.44444\n113832|0.44444\n113833|0.59722\n113834|0.51389\n113835|0.63889\n113836|0.625\n113837|0.54167\n113838|0.75\n113839|0.80556\n113840|0.93056\n113841|0.73611\n113842|0.83333\n113843|0.65278\n113844|0.75\n113845|0.61111\n113846|0.83333\n113847|0.20833\n113848|0.76389\n113849|0.55556\n113850|0.56944\n113851|0.59722\n113852|0.33333\n113853|0.66667\n113854|0.70833\n113855|0.58333\n113856|0.5\n113857|0.44444\n113858|0.69444\n113859|0.31944\n113860|0.51389\n113861|0.55556\n113862|0.61111\n113863|0.54167\n113864|0.5\n113865|0.38889\n113866|0.5\n113867|0.5\n113868|0.44444\n113869|0.61111\n113870|0.36111\n113871|0.38889\n113872|0.45833\n113873|0.93056\n113874|0.83333\n113875|0.73611\n113876|0.83333\n113877|0.41667\n113878|0.73611\n113879|0.5\n113880|0.73611\n113881|0.30556\n113882|0.70833\n113883|0.5\n113884|0.56944\n113885|0.55556\n113886|0.73611\n113887|0.51389\n113888|0.5\n113889|0.65278\n113890|0.66667\n113891|0.55556\n113892|0.58333\n113893|0.40278\n113894|0.68056\n113895|0.83333\n113896|0.93056\n113897|0.77778\n113898|0.76389\n113899|0.72222\n113900|0.77778\n113901|0.66667\n113902|0.56944\n113903|0.76389\n113904|0.44444\n113905|0.51389\n113906|0.76389\n113907|0.84722\n113908|0.88889\n113909|0.61111\n113910|0.61111\n113911|0.5\n113912|0.55556\n113913|0.70833\n113914|0.76389\n113915|0.54167\n113916|0.5\n113917|0.625\n113918|0.625\n113919|0.44444\n113920|0.58333\n113921|0.625\n113922|0.5\n113923|0.58333\n113924|0.73611\n113925|0.5\n113926|0.70833\n113927|0.76389\n113928|0.73611\n113929|0.77778\n113930|0.5\n113931|0.625\n113932|0.54167\n113933|0.47222\n113934|0.5\n113935|0.47222\n113936|0.54167\n113937|0.36111\n113938|0.5\n113939|0.59722\n113940|0.5\n113941|0.52778\n113942|0.44444\n113943|0.5\n113944|0.94444\n113945|0.55556\n113946|0.45833\n113947|0.47222\n113948|0.41667\n113949|0.40278\n113950|0.47222\n113951|0.76389\n113952|0.68056\n113953|0.54167\n113954|0.36111\n113955|0.36111\n113956|0.5\n113957|0.76389\n113958|0.48611\n113959|0.56944\n113960|0.45833\n113961|0.40278\n113962|0.65278\n113963|0.68056\n113964|0.83333\n113965|0.43056\n113966|0.56944\n113967|0.30556\n113968|0.27778\n113969|0.54167\n113970|0.52778\n113971|0.66667\n113972|0.52778\n113973|0.625\n113974|0.52778\n113975|0.5\n113976|0.65278\n113977|0.5\n113978|0.5\n113979|0.63889\n113980|0.86111\n113981|0.84722\n113982|0.76389\n113983|0.69444\n113984|0.77778\n113985|0.5\n113986|0.5\n113987|0.52778\n113988|0.66667\n113989|0.70833\n113990|0.47222\n113991|0.59722\n113992|0.83333\n113993|0.86111\n113994|0.81944\n113995|0.69444\n113996|0.79167\n113997|0.84722\n113998|0.75\n113999|0.80556\n114000|0.44444\n114001|0.65278\n114002|0.75\n114003|0.61111\n114004|0.66667\n114005|0.81944\n114006|0.5\n114007|0.44444\n114008|0.38889\n114009|0.38889\n114010|0.66667\n114011|0.66667\n114012|0.51389\n114013|0.81944\n114014|0.5\n114015|0.45833\n114016|0.76389\n114017|0.61111\n114018|0.43056\n114019|0.5\n114020|0.63889\n114021|0.79167\n114022|0.48611\n114023|0.84722\n114024|0.68056\n114025|0.86111\n114026|0.81944\n114027|0.79167\n114028|0.54167\n114029|0.875\n114030|0.77778\n114031|0.16667\n114032|0.83333\n114033|0.59722\n114034|0.83333\n114035|0.5\n114036|0.33333\n114037|0.80556\n114038|0.83333\n114039|0.47222\n114040|0.11111\n114041|0.52778\n114042|0.77778\n114043|0.69444\n114044|0.48611\n114045|0.25\n114046|0.61111\n114047|0.63889\n114048|0.83333\n114049|0.83333\n114050|0.58333\n114051|0.77778\n114052|0.77778\n114053|0.5\n114054|0.875\n114055|0.72222\n114056|0.69444\n114057|0.625\n114058|0.66667\n114059|0.75\n114060|0.48611\n114061|0.65278\n114062|0.47222\n114063|0.56944\n114064|0.52778\n114065|0.375\n114066|0.5\n114067|0.55556\n114068|0.81944\n114069|0.75\n114070|0.58333\n114071|0.70833\n114072|0.61111\n114073|0.5\n114074|0.83333\n114075|0.90278\n114076|0.80556\n114077|0.81944\n114078|0.56944\n114079|0.73611\n114080|0.38889\n114081|0.68056\n114082|0.51389\n114083|0.40278\n114084|0.44444\n114085|0.055556\n114086|0.61111\n114087|0.81944\n114088|0.77778\n114089|0.76389\n114090|0.72222\n114091|0.66667\n114092|0.83333\n114093|0.69444\n114094|0.68056\n114095|0.66667\n114096|0.65278\n114097|0.72222\n114098|0.70833\n114099|0.83333\n114100|0.77778\n114101|0.41667\n114102|0.66667\n114103|0.5\n114104|0.72222\n114105|0.79167\n114106|0.56944\n114107|0.44444\n114108|0.83333\n114109|0.625\n114110|0.76389\n114111|0.51389\n114112|0.51389\n114113|0.68056\n114114|0.70833\n114115|0.76389\n114116|0.72222\n114117|0.375\n114118|0.43056\n114119|0.51389\n114120|0.44444\n114121|0.48611\n114122|0.375\n114123|0.59722\n114124|0.38889\n114125|0.5\n114126|0.44444\n114127|0.47222\n114128|0.375\n114129|0.45833\n114130|0.38889\n114131|0.22222\n114132|0.375\n114133|0.72222\n114134|0.75\n114135|0.73611\n114136|0.75\n114137|0.55556\n114138|0.375\n114139|0.44444\n114140|0.5\n114141|0.66667\n114142|0.56944\n114143|0.72222\n114144|0.47222\n114145|0.38889\n114146|0.77778\n114147|0.40278\n114148|0.47222\n114149|0.56944\n114150|0.45833\n114151|0.36111\n114152|0.34722\n114153|0.48611\n114154|0.26389\n114155|0.55556\n114156|0.63889\n114157|0.55556\n114158|0.48611\n114159|0.41667\n114160|0.54167\n114161|0.375\n114162|0.34722\n114163|0.375\n114164|0.55556\n114165|0.48611\n114166|0.56944\n114167|0.36111\n114168|0.55556\n114169|0.54167\n114170|0.52778\n114171|0.43056\n114172|0.25\n114173|0.40278\n114174|0.5\n114175|0.47222\n114176|0.41667\n114177|0.40278\n114178|0.45833\n114179|0.43056\n114180|0.5\n114181|0.40278\n114182|0.36111\n114183|0.375\n114184|0.33333\n114185|0.72222\n114186|0.875\n114187|0.56944\n114188|0.47222\n114189|0.61111\n114190|0.40278\n114191|0.5\n114192|0.55556\n114193|0.63889\n114194|0.77778\n114195|0.59722\n114196|0.63889\n114197|0.5\n114198|0.44444\n114199|0.34722\n114200|0.76389\n114201|0.36111\n114202|0.61111\n114203|0.11111\n114204|0.44444\n114205|0.5\n114206|0.56944\n114207|0.5\n114208|0.5\n114209|0.5\n114210|0.5\n114211|0.5\n114212|0.5\n114213|0.34722\n114214|0.5\n114215|0.11111\n114216|0.58333\n114217|0.58333\n114218|0.56944\n114219|0.47222\n114220|0.43056\n114221|0.41667\n114222|0.5\n114223|0.51389\n114224|0.40278\n114225|0.5\n114226|0.52778\n114227|0.63889\n114228|0.47222\n114229|0.20833\n114230|0.18056\n114231|0.5\n114232|0.55556\n114233|0.625\n114234|0.55556\n114235|0.75\n114236|0.58333\n114237|0.81944\n114238|0.55556\n114239|0.55556\n114240|0.55556\n114241|0.68056\n114242|0.5\n114243|0.77778\n114244|0.65278\n114245|0.72222\n114246|0.61111\n114247|0.54167\n114248|0.58333\n114249|0.54167\n114250|0.68056\n114251|0.40278\n114252|0.5\n114253|0.38889\n114254|0.72222\n114255|0.59722\n114256|0.5\n114257|0.625\n114258|0.5\n114259|0.51389\n114260|0.44444\n114261|0.66667\n114262|0.33333\n114263|0.66667\n114264|0.66667\n114265|0.30556\n114266|0.5\n114267|0.5\n114268|0.5\n114269|0.54167\n114270|0.61111\n114271|0.5\n114272|0.43056\n114273|0.5\n114274|0.43056\n114275|0.38889\n114276|0.5\n114277|0.61111\n114278|0.44444\n114279|0.5\n114280|0.44444\n114281|0.58333\n114282|0.38889\n114283|0.52778\n114284|0.88889\n114285|0.34722\n114286|0.51389\n114287|0.22222\n114288|0.61111\n114289|0.65278\n114290|0.43056\n114291|0.875\n114292|0.61111\n114293|0.63889\n114294|0.40278\n114295|0.54167\n114296|0.38889\n114297|0.38889\n114298|0.33333\n114299|0.47222\n114300|0.47222\n114301|0.23611\n114302|0.5\n114303|0.59722\n114304|0.54167\n114305|0.5\n114306|0.56944\n114307|0.5\n114308|0.72222\n114309|0.5\n114310|0.33333\n114311|0.5\n114312|0.5\n114313|0.61111\n114314|0.59722\n114315|0.33333\n114316|0.34722\n114317|0.47222\n114318|0.25\n114319|0.27778\n114320|0.52778\n114321|0.625\n114322|0.5\n114323|0.5\n114324|0.5\n114325|0.5\n114326|0.52778\n114327|0.5\n114328|0.52778\n114329|0.069444\n114330|0.41667\n114331|0.22222\n114332|0.069444\n114333|0.5\n114334|0.44444\n114335|0.5\n114336|0.54167\n114337|0.61111\n114338|0.5\n114339|0.5\n114340|0.5\n114341|0.58333\n114342|0.47222\n114343|0.29167\n114344|0.5\n114345|0.5\n114346|0.25\n114347|0.33333\n114348|0.5\n114349|0.58333\n114350|0.43056\n114351|0.51389\n114352|0.48611\n114353|0.23611\n114354|0.44444\n114355|0.52778\n114356|0.63889\n114357|0.52778\n114358|0.48611\n114359|0.11111\n114360|0.5\n114361|0.61111\n114362|0.58333\n114363|0.55556\n114364|0.47222\n114365|0.61111\n114366|0.51389\n114367|0.45833\n114368|0.5\n114369|0.375\n114370|0.52778\n114371|0.54167\n114372|0.5\n114373|0.20833\n114374|0.43056\n114375|0.58333\n114376|0.44444\n114377|0.5\n114378|0.38889\n114379|0.22222\n114380|0.5\n114381|0.5\n114382|0.26389\n114383|0.5\n114384|0.38889\n114385|0.63889\n114386|0.40278\n114387|0.5\n114388|0.055556\n114389|0.44444\n114390|0.68056\n114391|0.61111\n114392|0.77778\n114393|0.55556\n114394|0.56944\n114395|0.5\n114396|0.5\n114397|0.47222\n114398|0.36111\n114399|0.5\n114400|0.5\n114401|0.625\n114402|0.44444\n114403|0.5\n114404|0.41667\n114405|0.5\n114406|0.61111\n114407|0.5\n114408|0.80556\n114409|0.34722\n114410|0.45833\n114411|0.5\n114412|0.33333\n114413|0.5\n114414|0.56944\n114415|0.38889\n114416|0.5\n114417|0.38889\n114418|0.5\n114419|0.5\n114420|0.40278\n114421|0.5\n114422|0.5\n114423|0.5\n114424|0.5\n114425|0.33333\n114426|0.51389\n114427|0.52778\n114428|0.5\n114429|0.625\n114430|0.51389\n114431|0.5\n114432|0.56944\n114433|0.625\n114434|0.15278\n114435|0.44444\n114436|0.65278\n114437|0.75\n114438|0.27778\n114439|0.51389\n114440|0.54167\n114441|0.5\n114442|0.47222\n114443|0.34722\n114444|0.43056\n114445|0.47222\n114446|0.51389\n114447|0.75\n114448|0.31944\n114449|0.65278\n114450|0.5\n114451|0.47222\n114452|0.25\n114453|0.5\n114454|0.5\n114455|0.625\n114456|0.375\n114457|0.48611\n114458|0.52778\n114459|0.51389\n114460|0.5\n114461|0.56944\n114462|0.48611\n114463|0.54167\n114464|0.54167\n114465|0.5\n114466|0.27778\n114467|0.5\n114468|0.44444\n114469|0.5\n114470|0.625\n114471|0.59722\n114472|0.66667\n114473|0.43056\n114474|0.51389\n114475|0.5\n114476|0.48611\n114477|0.56944\n114478|0.16667\n114479|0.38889\n114480|0.27778\n114481|0.097222\n114482|0.055556\n114483|0.083333\n114484|0.56944\n114485|0.18056\n114486|0.51389\n114487|0.68056\n114488|0.56944\n114489|0.65278\n114490|0.625\n114491|0.58333\n114492|0.54167\n114493|0.43056\n114494|0.63889\n114495|0.66667\n114496|0.61111\n114497|0.20833\n114498|0.34722\n114499|0.51389\n114500|0.52778\n114501|0.5\n114502|0.47222\n114503|0.5\n114504|0.43056\n114505|0.30556\n114506|0.25\n114507|0.5\n114508|0.5\n114509|0.59722\n114510|0.63889\n114511|0.52778\n114512|0.75\n114513|0.51389\n114514|0.52778\n114515|0.83333\n114516|0.5\n114517|0.5\n114518|0.5\n114519|0.11111\n114520|0.097222\n114521|0.72222\n114522|0.47222\n114523|0.54167\n114524|0.47222\n114525|0.5\n114526|0.44444\n114527|0.5\n114528|0.51389\n114529|0.72222\n114530|0.5\n114531|0.76389\n114532|0.43056\n114533|0.5\n114534|0.40278\n114535|0.63889\n114536|0.61111\n114537|0.65278\n114538|0.48611\n114539|0.5\n114540|0.69444\n114541|0.72222\n114542|0.36111\n114543|0.40278\n114544|0.5\n114545|0.5\n114546|0.76389\n114547|0.75\n114548|0.875\n114549|0.36111\n114550|0.36111\n114551|0.36111\n114552|0.5\n114553|0.5\n114554|0.34722\n114555|0.69444\n114556|0.72222\n114557|0.48611\n114558|0.51389\n114559|0.44444\n114560|0.56944\n114561|0.36111\n114562|0.59722\n114563|0.44444\n114564|0.38889\n114565|0.54167\n114566|0.31944\n114567|0.63889\n114568|0.72222\n114569|0.51389\n114570|0.625\n114571|0.51389\n114572|0.52778\n114573|0.52778\n114574|0.45833\n114575|0.55556\n114576|0.31944\n114577|0.31944\n114578|0.65278\n114579|0.41667\n114580|0.43056\n114581|0.80556\n114582|0.30556\n114583|0.61111\n114584|0.63889\n114585|0.41667\n114586|0.66667\n114587|0.76389\n114588|0.75\n114589|0.22222\n114590|0.26389\n114591|0.81944\n114592|0.65278\n114593|0.625\n114594|0.72222\n114595|0.56944\n114596|0.73611\n114597|0.63889\n114598|0.73611\n114599|0.54167\n114600|0.88889\n114601|0.5\n114602|0.70833\n114603|0.5\n114604|0.45833\n114605|0.63889\n114606|0.61111\n114607|0.72222\n114608|0.75\n114609|0.77778\n114610|0.41667\n114611|0.29167\n114612|0.30556\n114613|0.47222\n114614|0.30556\n114615|0.16667\n114616|0.43056\n114617|0.29167\n114618|0.51389\n114619|0.55556\n114620|0.5\n114621|0.5\n114622|0.40278\n114623|0.40278\n114624|0.33333\n114625|0.33333\n114626|0.25\n114627|0.54167\n114628|0.45833\n114629|0.5\n114630|0.29167\n114631|0.20833\n114632|0.5\n114633|0.5\n114634|0.63889\n114635|0.65278\n114636|0.5\n114637|0.26389\n114638|0.20833\n114639|0.25\n114640|0.27778\n114641|0.41667\n114642|0.29167\n114643|0.81944\n114644|0.625\n114645|0.69444\n114646|0.68056\n114647|0.51389\n114648|0.44444\n114649|0.33333\n114650|0.36111\n114651|0.5\n114652|0.33333\n114653|0.68056\n114654|0.77778\n114655|0.69444\n114656|0.80556\n114657|0.36111\n114658|0.083333\n114659|0.79167\n114660|0.5\n114661|0.36111\n114662|0.43056\n114663|0.75\n114664|0.5\n114665|0.61111\n114666|0.63889\n114667|0.16667\n114668|0.33333\n114669|0.5\n114670|0.38889\n114671|0.54167\n114672|0.56944\n114673|0.73611\n114674|0.72222\n114675|0.77778\n114676|0.29167\n114677|0.5\n114678|0.81944\n114679|0.88889\n114680|0.625\n114681|0.55556\n114682|0.68056\n114683|0.61111\n114684|0.625\n114685|0.58333\n114686|0.68056\n114687|0.73611\n114688|0.43056\n114689|0.43056\n114690|0.52778\n114691|0.375\n114692|0.5\n114693|0.76389\n114694|0.52778\n114695|0.69444\n114696|0.34722\n114697|0.25\n114698|0.36111\n114699|0.18056\n114700|0.25\n114701|0.18056\n114702|0.22222\n114703|0.65278\n114704|0.61111\n114705|0.45833\n114706|0.41667\n114707|0.55556\n114708|0.33333\n114709|0.83333\n114710|0.73611\n114711|0.055556\n114712|0.11111\n114713|0.70833\n114714|0.70833\n114715|0.5\n114716|0.48611\n114717|0.52778\n114718|0.63889\n114719|0.79167\n114720|0.77778\n114721|0.375\n114722|0.51389\n114723|0.66667\n114724|0.30556\n114725|0.47222\n114726|0.59722\n114727|0.5\n114728|0.58333\n114729|0.66667\n114730|0.43056\n114731|0.5\n114732|0.43056\n114733|0.48611\n114734|0.5\n114735|0.56944\n114736|0.5\n114737|0.5\n114738|0.44444\n114739|0.54167\n114740|0.5\n114741|0.45833\n114742|0.5\n114743|0.69444\n114744|0.66667\n114745|0.40278\n114746|0.54167\n114747|0.5\n114748|0.5\n114749|0.61111\n114750|0.52778\n114751|0.5\n114752|0.5\n114753|0.33333\n114754|0.52778\n114755|0.58333\n114756|0.5\n114757|0.63889\n114758|0.52778\n114759|0.51389\n114760|0.5\n114761|0.44444\n114762|0.20833\n114763|0.54167\n114764|0.38889\n114765|0.38889\n114766|0.55556\n114767|0.5\n114768|0.5\n114769|0.56944\n114770|0.80556\n114771|0.63889\n114772|0.72222\n114773|0.61111\n114774|0.36111\n114775|0.5\n114776|0.34722\n114777|0.47222\n114778|0.5\n114779|0.52778\n114780|0.5\n114781|0.5\n114782|0.61111\n114783|0.5\n114784|0.5\n114785|0.5\n114786|0.5\n114787|0.61111\n114788|0.5\n114789|0.61111\n114790|0.5\n114791|0.47222\n114792|0.59722\n114793|0.54167\n114794|0.5\n114795|0.70833\n114796|0.5\n114797|0.26389\n114798|0.5\n114799|0.5\n114800|0.40278\n114801|0.52778\n114802|0.30556\n114803|0.69444\n114804|0.70833\n114805|0.48611\n114806|0.29167\n114807|0.31944\n114808|0.45833\n114809|0.58333\n114810|0.65278\n114811|0.36111\n114812|0.27778\n114813|0.70833\n114814|0.5\n114815|0.56944\n114816|0.59722\n114817|0.38889\n114818|0.375\n114819|0.5\n114820|0.375\n114821|0.5\n114822|0.75\n114823|0.44444\n114824|0.65278\n114825|0.40278\n114826|0.38889\n114827|0.61111\n114828|0.77778\n114829|0.31944\n114830|0.58333\n114831|0.33333\n114832|0.375\n114833|0.65278\n114834|0.48611\n114835|0.34722\n114836|0.58333\n114837|0.5\n114838|0.56944\n114839|0.5\n114840|0.38889\n114841|0.45833\n114842|0.51389\n114843|0.61111\n114844|0.16667\n114845|0.51389\n114846|0.54167\n114847|0.52778\n114848|0.54167\n114849|0.5\n114850|0.38889\n114851|0.56944\n114852|0.90278\n114853|0.5\n114854|0.51389\n114855|0.44444\n114856|0.375\n114857|0.68056\n114858|0.47222\n114859|0.41667\n114860|0.40278\n114861|0.375\n114862|0.5\n114863|0.5\n114864|0.44444\n114865|0.38889\n114866|0.26389\n114867|0.75\n114868|0.66667\n114869|0.73611\n114870|0.72222\n114871|0.79167\n114872|0.80556\n114873|0.76389\n114874|0.77778\n114875|0.81944\n114876|0.83333\n114877|0.48611\n114878|0.38889\n114879|0.45833\n114880|0.58333\n114881|0.65278\n114882|0.5\n114883|0.59722\n114884|0.55556\n114885|0.40278\n114886|0.31944\n114887|0.5\n114888|0.55556\n114889|0.65278\n114890|0.79167\n114891|0.41667\n114892|0.65278\n114893|0.44444\n114894|0.48611\n114895|0.5\n114896|0.58333\n114897|0.31944\n114898|0.27778\n114899|0.59722\n114900|0.5\n114901|0.56944\n114902|0.81944\n114903|0.51389\n114904|0.61111\n114905|0.69444\n114906|0.65278\n114907|0.5\n114908|0.75\n114909|0.29167\n114910|0.75\n114911|0.63889\n114912|0.44444\n114913|0.56944\n114914|0.61111\n114915|0.43056\n114916|0.47222\n114917|0.56944\n114918|0.52778\n114919|0.59722\n114920|0.51389\n114921|0.61111\n114922|0.47222\n114923|0.59722\n114924|0.55556\n114925|0.30556\n114926|0.5\n114927|0.625\n114928|0.68056\n114929|0.38889\n114930|0.58333\n114931|0.61111\n114932|0.58333\n114933|0.81944\n114934|0.625\n114935|0.69444\n114936|0.54167\n114937|0.72222\n114938|0.59722\n114939|0.41667\n114940|0.56944\n114941|0.45833\n114942|0.5\n114943|0.5\n114944|0.58333\n114945|0.38889\n114946|0.58333\n114947|0.5\n114948|0.20833\n114949|0.73611\n114950|0.55556\n114951|0.625\n114952|0.58333\n114953|0.79167\n114954|0.58333\n114955|0.51389\n114956|0.5\n114957|0.52778\n114958|0.43056\n114959|0.68056\n114960|0.52778\n114961|0.5\n114962|0.58333\n114963|0.5\n114964|0.5\n114965|0.5\n114966|0.61111\n114967|0.5\n114968|0.5\n114969|0.38889\n114970|0.5\n114971|0.69444\n114972|0.44444\n114973|0.61111\n114974|0.58333\n114975|0.58333\n114976|0.77778\n114977|0.63889\n114978|0.5\n114979|0.58333\n114980|0.5\n114981|0.48611\n114982|0.58333\n114983|0.26389\n114984|0.81944\n114985|0.77778\n114986|0.5\n114987|0.79167\n114988|0.44444\n114989|0.23611\n114990|0.5\n114991|0.58333\n114992|0.36111\n114993|0.55556\n114994|0.27778\n114995|0.19444\n114996|0.73611\n114997|0.77778\n114998|0.5\n114999|0.90278\n115000|0.80556\n115001|0.72222\n115002|0.56944\n115003|0.375\n115004|0.5\n115005|0.77778\n115006|0.76389\n115007|0.44444\n115008|0.65278\n115009|0.41667\n115010|0.375\n115011|0.44444\n115012|0.11111\n115013|0.40278\n115014|0.77778\n115015|0.77778\n115016|0.625\n115017|0.51389\n115018|0.013889\n115019|0.54167\n115020|0.72222\n115021|0.76389\n115022|0.61111\n115023|0.61111\n115024|0.5\n115025|0.77778\n115026|0.58333\n115027|0.41667\n115028|0.65278\n115029|0.52778\n115030|0.5\n115031|0.83333\n115032|0.52778\n115033|0.54167\n115034|0.55556\n115035|0.47222\n115036|0.47222\n115037|0.41667\n115038|0.54167\n115039|0.66667\n115040|0.93056\n115041|0.16667\n115042|0.41667\n115043|0.55556\n115044|0.5\n115045|0.33333\n115046|0.5\n115047|0.30556\n115048|0.52778\n115049|0.84722\n115050|0.54167\n115051|0.5\n115052|0.19444\n115053|0.47222\n115054|0.63889\n115055|0.47222\n115056|0.59722\n115057|0.58333\n115058|0.52778\n115059|0.27778\n115060|0.5\n115061|0.43056\n115062|0.5\n115063|0.5\n115064|0.45833\n115065|0.84722\n115066|0.47222\n115067|0.36111\n115068|0.30556\n115069|0.44444\n115070|0.5\n115071|0.27778\n115072|0.56944\n115073|0.40278\n115074|0.30556\n115075|0.20833\n115076|0.58333\n115077|0.45833\n115078|0.51389\n115079|0.5\n115080|0.59722\n115081|0.44444\n115082|0.69444\n115083|0.72222\n115084|0.69444\n115085|0.76389\n115086|0.83333\n115087|0.45833\n115088|0.40278\n115089|0.66667\n115090|0.5\n115091|0.54167\n115092|0.44444\n115093|0.40278\n115094|0.5\n115095|0.38889\n115096|0.61111\n115097|0.51389\n115098|0.5\n115099|0.5\n115100|0.68056\n115101|0.69444\n115102|0.73611\n115103|0.65278\n115104|0.51389\n115105|0.48611\n115106|0.5\n115107|0.34722\n115108|0.41667\n115109|0.61111\n115110|0.65278\n115111|0.48611\n115112|0.29167\n115113|0.13889\n115114|0.625\n115115|0.83333\n115116|0.63889\n115117|0.84722\n115118|0.84722\n115119|0.55556\n115120|0.55556\n115121|0.44444\n115122|0.5\n115123|0.5\n115124|0.375\n115125|0.375\n115126|0.55556\n115127|0.23611\n115128|0.54167\n115129|0.79167\n115130|0.76389\n115131|0.625\n115132|0.58333\n115133|0.20833\n115134|0.56944\n115135|0.58333\n115136|0.77778\n115137|0.65278\n115138|0.45833\n115139|0.69444\n115140|0.5\n115141|0.58333\n115142|0.27778\n115143|0.40278\n115144|0.48611\n115145|0.47222\n115146|0.63889\n115147|0.63889\n115148|0.26389\n115149|0.5\n115150|0.20833\n115151|0.40278\n115152|0.44444\n115153|0.5\n115154|0.43056\n115155|0.5\n115156|0.5\n115157|0.61111\n115158|0.5\n115159|0.73611\n115160|0.375\n115161|0.54167\n115162|0.55556\n115163|0.5\n115164|0.75\n115165|0.5\n115166|0.69444\n115167|0.5\n115168|0.26389\n115169|0.55556\n115170|0.40278\n115171|0.5\n115172|0.125\n115173|0.5\n115174|0.59722\n115175|0.5\n115176|0.5\n115177|0.5\n115178|0.5\n115179|0.43056\n115180|0.58333\n115181|0.77778\n115182|0.68056\n115183|0.69444\n115184|0.47222\n115185|0.47222\n115186|0.51389\n115187|0.38889\n115188|0.5\n115189|0.5\n115190|0.56944\n115191|0.58333\n115192|0.43056\n115193|0.5\n115194|0.5\n115195|0.5\n115196|0.66667\n115197|0.58333\n115198|0.40278\n115199|0.61111\n115200|0.54167\n115201|0.5\n115202|0.5\n115203|0.51389\n115204|0.51389\n115205|0.5\n115206|0.38889\n115207|0.5\n115208|0.5\n115209|0.44444\n115210|0.5\n115211|0.625\n115212|0.52778\n115213|0.56944\n115214|0.5\n115215|0.30556\n115216|0.5\n115217|0.59722\n115218|0.33333\n115219|0.47222\n115220|0.5\n115221|0.5\n115222|0.5\n115223|0.48611\n115224|0.125\n115225|0.68056\n115226|0.5\n115227|0.55556\n115228|0.59722\n115229|0.36111\n115230|0.63889\n115231|0.5\n115232|0.48611\n115233|0.44444\n115234|0.55556\n115235|0.41667\n115236|0.55556\n115237|0.61111\n115238|0.625\n115239|0.54167\n115240|0.45833\n115241|0.44444\n115242|0.61111\n115243|0.58333\n115244|0.375\n115245|0.027778\n115246|0.22222\n115247|0.5\n115248|0.52778\n115249|0.54167\n115250|0.55556\n115251|0.52778\n115252|0.52778\n115253|0.59722\n115254|0.68056\n115255|0.68056\n115256|0.61111\n115257|0.625\n115258|0.48611\n115259|0.55556\n115260|0.61111\n115261|0.5\n115262|0.63889\n115263|0.63889\n115264|0.097222\n115265|0.58333\n115266|0.5\n115267|0.77778\n115268|0.5\n115269|0.47222\n115270|0.73611\n115271|0.375\n115272|0.51389\n115273|0.5\n115274|0.33333\n115275|0.59722\n115276|0.5\n115277|0.47222\n115278|0.55556\n115279|0.5\n115280|0.43056\n115281|0.44444\n115282|0.097222\n115283|0.58333\n115284|0.29167\n115285|0.375\n115286|0.66667\n115287|0.59722\n115288|0.61111\n115289|0.77778\n115290|0.625\n115291|0.68056\n115292|0.61111\n115293|0.94444\n115294|0.34722\n115295|0.11111\n115296|0.69444\n115297|0.5\n115298|0.51389\n115299|0.27778\n115300|0.65278\n115301|0.5\n115302|0.5\n115303|0.47222\n115304|0.40278\n115305|0.55556\n115306|0.5\n115307|0.55556\n115308|0.43056\n115309|0.52778\n115310|0.5\n115311|0.68056\n115312|0.52778\n115313|0.70833\n115314|0.51389\n115315|0.79167\n115316|0.61111\n115317|0.5\n115318|0.61111\n115319|0.5\n115320|0.45833\n115321|0.5\n115322|0.63889\n115323|0.5\n115324|0.22222\n115325|0.29167\n115326|0.22222\n115327|0.38889\n115328|0.125\n115329|0.069444\n115330|0.16667\n115331|0.41667\n115332|0.041667\n115333|0.097222\n115334|0.40278\n115335|0.5\n115336|0.13889\n115337|0.30556\n115338|0.26389\n115339|0.38889\n115340|0.25\n115341|0.36111\n115342|0.27778\n115343|0.29167\n115344|0.25\n115345|0.34722\n115346|0.13889\n115347|0.38889\n115348|0.069444\n115349|0.44444\n115350|0.15278\n115351|0.18056\n115352|0.25\n115353|0.41667\n115354|0.48611\n115355|0.33333\n115356|0.27778\n115357|0.47222\n115358|0.5\n115359|0.58333\n115360|0.5\n115361|0.5\n115362|0.54167\n115363|0.58333\n115364|0.51389\n115365|0.5\n115366|0.5\n115367|0.31944\n115368|0.33333\n115369|0.45833\n115370|0.23611\n115371|0.43056\n115372|0.27778\n115373|0.33333\n115374|0.51389\n115375|0.29167\n115376|0.13889\n115377|0.125\n115378|0.29167\n115379|0\n115380|0.027778\n115381|0.5\n115382|0.63889\n115383|0.79167\n115384|0.41667\n115385|0.33333\n115386|0.44444\n115387|0.65278\n115388|0.56944\n115389|0.51389\n115390|0.45833\n115391|0.27778\n115392|0.34722\n115393|0.38889\n115394|0.30556\n115395|0.29167\n115396|0.43056\n115397|0.11111\n115398|0.27778\n115399|0.375\n115400|0.22222\n115401|0.26389\n115402|0.20833\n115403|0.41667\n115404|0.33333\n115405|0.25\n115406|0.55556\n115407|0.55556\n115408|0.31944\n115409|0.27778\n115410|0.5\n115411|0.44444\n115412|0.5\n115413|0.48611\n115414|0.58333\n115415|0.48611\n115416|0.43056\n115417|0.33333\n115418|0.43056\n115419|0.63889\n115420|0.59722\n115421|0.48611\n115422|0.5\n115423|0.5\n115424|0.63889\n115425|0.58333\n115426|0.5\n115427|0.5\n115428|0.52778\n115429|0.44444\n115430|0.40278\n115431|0.48611\n115432|0.41667\n115433|0.5\n115434|0.5\n115435|0.5\n115436|0.44444\n115437|0.45833\n115438|0.55556\n115439|0.52778\n115440|0.33333\n115441|0.84722\n115442|0.40278\n115443|0.52778\n115444|0.66667\n115445|0.59722\n115446|0.44444\n115447|0.54167\n115448|0.5\n115449|0.625\n115450|0.55556\n115451|0.25\n115452|0.76389\n115453|0.51389\n115454|0.91667\n115455|0.5\n115456|0.56944\n115457|0.56944\n115458|0.58333\n115459|0.61111\n115460|0.68056\n115461|0.19444\n115462|0.31944\n115463|0.36111\n115464|0.5\n115465|0.59722\n115466|0.73611\n115467|0.58333\n115468|0.47222\n115469|0.59722\n115470|0.5\n115471|0.70833\n115472|0.38889\n115473|0.61111\n115474|0.48611\n115475|0.69444\n115476|0.65278\n115477|0.73611\n115478|0.875\n115479|0.63889\n115480|0.31944\n115481|0.38889\n115482|0.23611\n115483|0.66667\n115484|0.36111\n115485|0.48611\n115486|0.44444\n115487|0.23611\n115488|0.56944\n115489|0.52778\n115490|0.56944\n115491|0.5\n115492|0.5\n115493|0.63889\n115494|0.61111\n115495|0.54167\n115496|0.66667\n115497|0.65278\n115498|0.29167\n115499|0.55556\n115500|0.25\n115501|0.5\n115502|0.44444\n115503|0.61111\n115504|0.59722\n115505|0.45833\n115506|0.54167\n115507|0.66667\n115508|0.23611\n115509|0.70833\n115510|0.58333\n115511|0.47222\n115512|0.375\n115513|0.16667\n115514|0.18056\n115515|0.5\n115516|0.43056\n115517|0.15278\n115518|0.5\n115519|0.16667\n115520|0.61111\n115521|0.36111\n115522|0.66667\n115523|0.55556\n115524|0.55556\n115525|0.33333\n115526|0.5\n115527|0.5\n115528|0.63889\n115529|0.13889\n115530|0.13889\n115531|0.45833\n115532|0.5\n115533|0.44444\n115534|0.38889\n115535|0.375\n115536|0.54167\n115537|0.61111\n115538|0.44444\n115539|0.5\n115540|0.51389\n115541|0.375\n115542|0.33333\n115543|0.41667\n115544|0.11111\n115545|0.34722\n115546|0.27778\n115547|0.40278\n115548|0.52778\n115549|0.72222\n115550|0.59722\n115551|0.75\n115552|0.5\n115553|0.75\n115554|0.15278\n115555|0.58333\n115556|0.38889\n115557|0.73611\n115558|0.43056\n115559|0.23611\n115560|0.625\n115561|0.51389\n115562|0.45833\n115563|0.56944\n115564|0.51389\n115565|0.875\n115566|0.51389\n115567|0.65278\n115568|0.38889\n115569|0.38889\n115570|0.22222\n115571|0.47222\n115572|0.31944\n115573|0.69444\n115574|0.58333\n115575|0.41667\n115576|0.38889\n115577|0.48611\n115578|0.38889\n115579|0.40278\n115580|0.5\n115581|0.55556\n115582|0.51389\n115583|0.65278\n115584|0.5\n115585|0.66667\n115586|0.5\n115587|0.58333\n115588|0.70833\n115589|0.70833\n115590|0.27778\n115591|0.47222\n115592|0.48611\n115593|0.5\n115594|0.65278\n115595|0.5\n115596|0.55556\n115597|0.54167\n115598|0.11111\n115599|0.43056\n115600|0.61111\n115601|0.20833\n115602|0.069444\n115603|0.51389\n115604|0.83333\n115605|0.47222\n115606|0.31944\n115607|0.43056\n115608|0.58333\n115609|0.61111\n115610|0.70833\n115611|0.81944\n115612|0.66667\n115613|0.59722\n115614|0.52778\n115615|0.47222\n115616|0.88889\n115617|0.70833\n115618|0.86111\n115619|0.72222\n115620|0.61111\n115621|0.75\n115622|0.33333\n115623|0.5\n115624|0.55556\n115625|0.44444\n115626|0.44444\n115627|0.77778\n115628|0.45833\n115629|0.51389\n115630|0.5\n115631|0.5\n115632|0.40278\n115633|0.63889\n115634|0.5\n115635|0.5\n115636|0.70833\n115637|0.44444\n115638|0.5\n115639|0.47222\n115640|0.41667\n115641|0.44444\n115642|0.54167\n115643|0.625\n115644|0.61111\n115645|0.52778\n115646|0.47222\n115647|0.38889\n115648|0.61111\n115649|0.36111\n115650|0.36111\n115651|0.61111\n115652|0.66667\n115653|0.875\n115654|0.83333\n115655|0.68056\n115656|0.80556\n115657|0.77778\n115658|0.76389\n115659|0.58333\n115660|0.5\n115661|0.5\n115662|0.56944\n115663|0.69444\n115664|0.44444\n115665|0.58333\n115666|0.5\n115667|0.69444\n115668|0.77778\n115669|0.5\n115670|0.51389\n115671|0.5\n115672|0.58333\n115673|0.48611\n115674|0.18056\n115675|0.5\n115676|0.55556\n115677|0.48611\n115678|0.083333\n115679|0.73611\n115680|0.30556\n115681|0.66667\n115682|0.375\n115683|0.73611\n115684|0.72222\n115685|0.61111\n115686|0.61111\n115687|0.56944\n115688|0.63889\n115689|0.15278\n115690|0.44444\n115691|0.23611\n115692|0.83333\n115693|0.54167\n115694|0.54167\n115695|0.72222\n115696|0.55556\n115697|0.47222\n115698|0.63889\n115699|0.27778\n115700|0.25\n115701|0.79167\n115702|0.33333\n115703|0.25\n115704|0.38889\n115705|0.34722\n115706|0.26389\n115707|0.18056\n115708|0.27778\n115709|0.29167\n115710|0.18056\n115711|0.013889\n115712|0.55556\n115713|0.33333\n115714|0.56944\n115715|0.77778\n115716|0.52778\n115717|0.47222\n115718|0.375\n115719|0.5\n115720|0.5\n115721|0.52778\n115722|0.44444\n115723|0.5\n115724|0.625\n115725|0.5\n115726|0.5\n115727|0.41667\n115728|0.27778\n115729|0.48611\n115730|0.5\n115731|0.63889\n115732|0.45833\n115733|0.23611\n115734|0.36111\n115735|0.63889\n115736|0.45833\n115737|0.83333\n115738|0.43056\n115739|0.30556\n115740|0.48611\n115741|0.73611\n115742|0.61111\n115743|0.56944\n115744|0.27778\n115745|0.19444\n115746|0.041667\n115747|0.43056\n115748|0.47222\n115749|0.55556\n115750|0.48611\n115751|0.083333\n115752|0.5\n115753|0.15278\n115754|0.47222\n115755|0.23611\n115756|0.41667\n115757|0.5\n115758|0.69444\n115759|0.55556\n115760|0.52778\n115761|0.30556\n115762|0.5\n115763|0.61111\n115764|0.51389\n115765|0.55556\n115766|0.45833\n115767|0.66667\n115768|0.5\n115769|0.66667\n115770|0.40278\n115771|0.63889\n115772|0.47222\n115773|0.5\n115774|0.5\n115775|0.48611\n115776|0.5\n115777|0.38889\n115778|0.63889\n115779|0.27778\n115780|0.45833\n115781|0.63889\n115782|0.56944\n115783|0.51389\n115784|0.38889\n115785|0.5\n115786|0.5\n115787|0.055556\n115788|0.5\n115789|0.33333\n115790|0.70833\n115791|0.84722\n115792|0.54167\n115793|0.41667\n115794|0.36111\n115795|0.44444\n115796|0.34722\n115797|0.19444\n115798|0.19444\n115799|0.27778\n115800|0.66667\n115801|0.61111\n115802|0.5\n115803|0.55556\n115804|0.73611\n115805|0.88889\n115806|0.47222\n115807|0.43056\n115808|0.56944\n115809|0.70833\n115810|0.5\n115811|0.625\n115812|0.5\n115813|0.23611\n115814|0.5\n115815|0.54167\n115816|0.76389\n115817|0.5\n115818|0.48611\n115819|0.30556\n115820|0.30556\n115821|0.48611\n115822|0.80556\n115823|0.5\n115824|0.51389\n115825|0.61111\n115826|0.63889\n115827|0.58333\n115828|0.41667\n115829|0.27778\n115830|0.38889\n115831|0.47222\n115832|0.375\n115833|0.36111\n115834|0.13889\n115835|0.63889\n115836|0.22222\n115837|0.19444\n115838|0.30556\n115839|0.31944\n115840|0.40278\n115841|0.5\n115842|0.41667\n115843|0.77778\n115844|0.5\n115845|0.56944\n115846|0.59722\n115847|0.43056\n115848|0.56944\n115849|0.30556\n115850|0.38889\n115851|0.20833\n115852|0.55556\n115853|0.48611\n115854|0.5\n115855|0.5\n115856|0.5\n115857|0.72222\n115858|0.65278\n115859|0.40278\n115860|0.23611\n115861|0.77778\n115862|0.63889\n115863|0.5\n115864|0.38889\n115865|0.61111\n115866|0.63889\n115867|0.43056\n115868|0.59722\n115869|0.52778\n115870|0.41667\n115871|0.76389\n115872|0.5\n115873|0.48611\n115874|0.56944\n115875|0.29167\n115876|0.55556\n115877|0.88889\n115878|0.54167\n115879|0.79167\n115880|0.59722\n115881|0.66667\n115882|0.75\n115883|0.84722\n115884|0.375\n115885|0.88889\n115886|0.63889\n115887|0.61111\n115888|0.79167\n115889|0.70833\n115890|0.66667\n115891|0.76389\n115892|0.68056\n115893|0.70833\n115894|0.81944\n115895|0.25\n115896|0.54167\n115897|0.91667\n115898|0.84722\n115899|0.5\n115900|0.5\n115901|0.54167\n115902|0.69444\n115903|0.65278\n115904|0.61111\n115905|0.44444\n115906|0.5\n115907|0.625\n115908|0.55556\n115909|0.44444\n115910|0.55556\n115911|0.38889\n115912|0.5\n115913|0.5\n115914|0.76389\n115915|0.52778\n115916|0.13889\n115917|0.51389\n115918|0.56944\n115919|0.40278\n115920|0.45833\n115921|0.625\n115922|0.86111\n115923|0.48611\n115924|0.68056\n115925|0.61111\n115926|0.52778\n115927|0.77778\n115928|0.41667\n115929|0.40278\n115930|0.51389\n115931|0.61111\n115932|0.5\n115933|0.45833\n115934|0.5\n115935|0.52778\n115936|0.61111\n115937|0.52778\n115938|0.5\n115939|0.44444\n115940|0.5\n115941|0.51389\n115942|0.58333\n115943|0.5\n115944|0.77778\n115945|0.52778\n115946|0.52778\n115947|0.54167\n115948|0.5\n115949|0.59722\n115950|0.43056\n115951|0.44444\n115952|0.44444\n115953|0.48611\n115954|0.51389\n115955|0.40278\n115956|0.38889\n115957|0.58333\n115958|0.5\n115959|0.44444\n115960|0.59722\n115961|0.54167\n115962|0.58333\n115963|0.44444\n115964|0.48611\n115965|0.43056\n115966|0.30556\n115967|0.56944\n115968|0.625\n115969|0.58333\n115970|0.43056\n115971|0.5\n115972|0.68056\n115973|0.77778\n115974|0.26389\n115975|0.52778\n115976|0.5\n115977|0.38889\n115978|0.11111\n115979|0.48611\n115980|0.65278\n115981|0.5\n115982|0.51389\n115983|0.63889\n115984|0.61111\n115985|0.63889\n115986|0.5\n115987|0.48611\n115988|0.069444\n115989|0.5\n115990|0.61111\n115991|0.43056\n115992|0.5\n115993|0.51389\n115994|0.38889\n115995|0.5\n115996|0.43056\n115997|0.5\n115998|0.61111\n115999|0.61111\n116000|0.38889\n116001|0.5\n116002|0.47222\n116003|0.55556\n116004|0.55556\n116005|0.5\n116006|0.5\n116007|0.44444\n116008|0.44444\n116009|0.38889\n116010|0.45833\n116011|0.45833\n116012|0.61111\n116013|0.56944\n116014|0.63889\n116015|0.72222\n116016|0.76389\n116017|0.69444\n116018|0.43056\n116019|0.5\n116020|0.5\n116021|0.5\n116022|0.45833\n116023|0.31944\n116024|0.33333\n116025|0.23611\n116026|0.23611\n116027|0.30556\n116028|0.52778\n116029|0.40278\n116030|0.26389\n116031|0.40278\n116032|0.33333\n116033|0.29167\n116034|0.25\n116035|0.5\n116036|0.41667\n116037|0.56944\n116038|0.5\n116039|0.44444\n116040|0.48611\n116041|0.48611\n116042|0.51389\n116043|0.59722\n116044|0.11111\n116045|0.47222\n116046|0.52778\n116047|0.36111\n116048|0.36111\n116049|0.375\n116050|0.51389\n116051|0.5\n116052|0.52778\n116053|0.5\n116054|0.59722\n116055|0.61111\n116056|0.52778\n116057|0.48611\n116058|0.5\n116059|0.40278\n116060|0.48611\n116061|0.44444\n116062|0.5\n116063|0.75\n116064|0.63889\n116065|0.45833\n116066|0.44444\n116067|0.5\n116068|0.54167\n116069|0.51389\n116070|0.44444\n116071|0.58333\n116072|0.44444\n116073|0.79167\n116074|0.69444\n116075|0.5\n116076|0.44444\n116077|0.66667\n116078|0.27778\n116079|0.36111\n116080|0.56944\n116081|0.38889\n116082|0.30556\n116083|0.27778\n116084|0.13889\n116085|0.5\n116086|0.20833\n116087|0.26389\n116088|0.63889\n116089|0.75\n116090|0.56944\n116091|0.5\n116092|0.5\n116093|0.70833\n116094|0.5\n116095|0.5\n116096|0.5\n116097|0.375\n116098|0.59722\n116099|0.66667\n116100|0.54167\n116101|0.5\n116102|0.52778\n116103|0.36111\n116104|0.58333\n116105|0.55556\n116106|0.44444\n116107|0.5\n116108|0.44444\n116109|0.36111\n116110|0.33333\n116111|0.16667\n116112|0.22222\n116113|0.20833\n116114|0.15278\n116115|0.22222\n116116|0.5\n116117|0.16667\n116118|0.30556\n116119|0.34722\n116120|0.40278\n116121|0.5\n116122|0.69444\n116123|0.5\n116124|0.5\n116125|0.5\n116126|0.52778\n116127|0.66667\n116128|0.93056\n116129|0.61111\n116130|0.5\n116131|0.55556\n116132|0.54167\n116133|0.70833\n116134|0.73611\n116135|0.11111\n116136|0.069444\n116137|0.5\n116138|0.52778\n116139|0.66667\n116140|0.63889\n116141|0.625\n116142|0.66667\n116143|0.79167\n116144|0.5\n116145|0.63889\n116146|0.5\n116147|0.59722\n116148|0.5\n116149|0.31944\n116150|0.47222\n116151|0.48611\n116152|0.23611\n116153|0.38889\n116154|0.33333\n116155|0.44444\n116156|0.44444\n116157|0.44444\n116158|0.097222\n116159|0.52778\n116160|0.5\n116161|0.5\n116162|0.5\n116163|0.41667\n116164|0.33333\n116165|0.55556\n116166|0.625\n116167|0.16667\n116168|0.5\n116169|0.55556\n116170|0.20833\n116171|0.52778\n116172|0.52778\n116173|0.70833\n116174|0.44444\n116175|0.43056\n116176|0.5\n116177|0.61111\n116178|0.38889\n116179|0.5\n116180|0.40278\n116181|0.52778\n116182|0.52778\n116183|0.47222\n116184|0.69444\n116185|0.66667\n116186|0.63889\n116187|0.5\n116188|0.43056\n116189|0.55556\n116190|0.91667\n116191|0.875\n116192|0.73611\n116193|0.88889\n116194|0.91667\n116195|0.52778\n116196|0.56944\n116197|0.54167\n116198|0.40278\n116199|0.55556\n116200|0.48611\n116201|0.75\n116202|0.90278\n116203|0.59722\n116204|0.55556\n116205|0.77778\n116206|0.61111\n116207|0.65278\n116208|0.63889\n116209|0.61111\n116210|0.5\n116211|0.55556\n116212|0.83333\n116213|0.77778\n116214|0.25\n116215|0.70833\n116216|0.84722\n116217|0.51389\n116218|0.47222\n116219|0.55556\n116220|0.5\n116221|0.75\n116222|0.66667\n116223|0.79167\n116224|0.625\n116225|0.68056\n116226|0.55556\n116227|0.65278\n116228|0.65278\n116229|0.70833\n116230|0.65278\n116231|0.5\n116232|0.72222\n116233|0.56944\n116234|0.25\n116235|0.23611\n116236|0.55556\n116237|0.59722\n116238|0.56944\n116239|0.79167\n116240|0.73611\n116241|0.80556\n116242|0.59722\n116243|0.69444\n116244|0.63889\n116245|0.51389\n116246|0.625\n116247|0.69444\n116248|0.77778\n116249|0.625\n116250|0.45833\n116251|0.40278\n116252|0.44444\n116253|0.41667\n116254|0.41667\n116255|0.20833\n116256|0.55556\n116257|0.5\n116258|0.5\n116259|0.69444\n116260|0.77778\n116261|0.65278\n116262|0.73611\n116263|0.375\n116264|0.43056\n116265|0.44444\n116266|0.33333\n116267|0.25\n116268|0.20833\n116269|0.11111\n116270|0.77778\n116271|0.625\n116272|0.5\n116273|0.375\n116274|0.47222\n116275|0.61111\n116276|0.47222\n116277|0.48611\n116278|0.5\n116279|0.30556\n116280|0.5\n116281|0.36111\n116282|0.40278\n116283|0.22222\n116284|0.80556\n116285|0.66667\n116286|0.59722\n116287|0.66667\n116288|0.77778\n116289|0.55556\n116290|0.84722\n116291|0.5\n116292|0.40278\n116293|0.375\n116294|0.65278\n116295|0.34722\n116296|0.47222\n116297|0.54167\n116298|0.5\n116299|0.25\n116300|0.38889\n116301|0.5\n116302|0.5\n116303|0.81944\n116304|0.47222\n116305|0.5\n116306|0.43056\n116307|0.5\n116308|0.55556\n116309|0.47222\n116310|0.30556\n116311|0.38889\n116312|0.36111\n116313|0.29167\n116314|0.31944\n116315|0.61111\n116316|0.51389\n116317|0.63889\n116318|0.30556\n116319|0.41667\n116320|0.47222\n116321|0.43056\n116322|0.77778\n116323|0.40278\n116324|0.5\n116325|0.45833\n116326|0.375\n116327|0.54167\n116328|0.125\n116329|0.44444\n116330|0.36111\n116331|0.40278\n116332|0.36111\n116333|0.31944\n116334|0.13889\n116335|0.5\n116336|0.47222\n116337|0.79167\n116338|0.77778\n116339|0.5\n116340|0.52778\n116341|0.61111\n116342|0.83333\n116343|0.20833\n116344|0.59722\n116345|0.55556\n116346|0.5\n116347|0.44444\n116348|0.51389\n116349|0.5\n116350|0.55556\n116351|0.25\n116352|0.55556\n116353|0.5\n116354|0.43056\n116355|0.33333\n116356|0.56944\n116357|0.31944\n116358|0.58333\n116359|0.63889\n116360|0.51389\n116361|0.52778\n116362|0.5\n116363|0.5\n116364|0.5\n116365|0.5\n116366|0.55556\n116367|0.51389\n116368|0.5\n116369|0.5\n116370|0.5\n116371|0.73611\n116372|0.5\n116373|0.5\n116374|0.5\n116375|0.58333\n116376|0.56944\n116377|0.5\n116378|0.48611\n116379|0.5\n116380|0.5\n116381|0.52778\n116382|0.5\n116383|0.68056\n116384|0.47222\n116385|0.22222\n116386|0.81944\n116387|0.48611\n116388|0.5\n116389|0.43056\n116390|0.54167\n116391|0.33333\n116392|0.56944\n116393|0.27778\n116394|0.76389\n116395|0.55556\n116396|0.5\n116397|0.5\n116398|0.65278\n116399|0.61111\n116400|0.20833\n116401|0.45833\n116402|0.52778\n116403|0.45833\n116404|0.47222\n116405|0.375\n116406|0.375\n116407|0.56944\n116408|0.5\n116409|0.59722\n116410|0.43056\n116411|0.66667\n116412|0\n116413|0.65278\n116414|0.61111\n116415|0.51389\n116416|0.11111\n116417|0.47222\n116418|0.51389\n116419|0.45833\n116420|0.58333\n116421|0.33333\n116422|0.70833\n116423|0.5\n116424|0.68056\n116425|0.66667\n116426|0.34722\n116427|0.5\n116428|0.44444\n116429|0.33333\n116430|0.5\n116431|0.5\n116432|0.43056\n116433|0.41667\n116434|0.66667\n116435|0.47222\n116436|0.5\n116437|0.26389\n116438|0.58333\n116439|0.69444\n116440|0.55556\n116441|0.34722\n116442|0.52778\n116443|0.41667\n116444|0.44444\n116445|0.5\n116446|0.5\n116447|0.58333\n116448|0.44444\n116449|0.79167\n116450|0.125\n116451|0.81944\n116452|0.40278\n116453|0.59722\n116454|0.5\n116455|0.47222\n116456|0.52778\n116457|0.33333\n116458|0.55556\n116459|0.5\n116460|0.43056\n116461|0.55556\n116462|0.48611\n116463|0.58333\n116464|0.375\n116465|0.72222\n116466|0.86111\n116467|0.93056\n116468|0.84722\n116469|0.5\n116470|0.5\n116471|0.52778\n116472|0.5\n116473|0.41667\n116474|0.63889\n116475|0.63889\n116476|0.48611\n116477|0.61111\n116478|0.5\n116479|0.16667\n116480|0.51389\n116481|0.30556\n116482|0.44444\n116483|0.27778\n116484|0.76389\n116485|0.40278\n116486|0.55556\n116487|0.5\n116488|0.40278\n116489|0.5\n116490|0.56944\n116491|0.40278\n116492|0.5\n116493|0.48611\n116494|0.55556\n116495|0.055556\n116496|0.027778\n116497|0.44444\n116498|0.30556\n116499|0.125\n116500|0.26389\n116501|0.19444\n116502|0.36111\n116503|0.55556\n116504|0.40278\n116505|0.36111\n116506|0.70833\n116507|0.45833\n116508|0.15278\n116509|0.069444\n116510|0.44444\n116511|0.16667\n116512|0.5\n116513|0.38889\n116514|0.38889\n116515|0.18056\n116516|0.16667\n116517|0.31944\n116518|0.43056\n116519|0.5\n116520|0.5\n116521|0.79167\n116522|0.5\n116523|0.5\n116524|0.40278\n116525|0.54167\n116526|0.52778\n116527|0.48611\n116528|0.5\n116529|0.41667\n116530|0.58333\n116531|0.29167\n116532|0.63889\n116533|0.77778\n116534|0.47222\n116535|0.55556\n116536|0.58333\n116537|0.61111\n116538|0.59722\n116539|0.5\n116540|0.5\n116541|0.48611\n116542|0.47222\n116543|0.61111\n116544|0.55556\n116545|0.72222\n116546|0.56944\n116547|0.5\n116548|0.52778\n116549|0.55556\n116550|0.55556\n116551|0.65278\n116552|0.26389\n116553|0.5\n116554|0.5\n116555|0.51389\n116556|0.43056\n116557|0.5\n116558|0.61111\n116559|0.5\n116560|0.52778\n116561|0.59722\n116562|0.68056\n116563|0.5\n116564|0.56944\n116565|0.83333\n116566|0.80556\n116567|0.47222\n116568|0.5\n116569|0.58333\n116570|0.76389\n116571|0.59722\n116572|0.48611\n116573|0.44444\n116574|0.5\n116575|0.66667\n116576|0.76389\n116577|0.16667\n116578|0.25\n116579|0.40278\n116580|0.48611\n116581|0.84722\n116582|0.80556\n116583|0.79167\n116584|0.75\n116585|0.81944\n116586|0.66667\n116587|0.58333\n116588|0.38889\n116589|0.47222\n116590|0.33333\n116591|0.31944\n116592|0.63889\n116593|0.5\n116594|0.5\n116595|0.52778\n116596|0.98611\n116597|0.47222\n116598|0.625\n116599|0.66667\n116600|0.47222\n116601|0.5\n116602|0.5\n116603|0.59722\n116604|0.38889\n116605|0.41667\n116606|0.5\n116607|0.51389\n116608|0.43056\n116609|0.40278\n116610|0.30556\n116611|0.20833\n116612|0.30556\n116613|0.34722\n116614|0.375\n116615|0.43056\n116616|0.5\n116617|0.20833\n116618|0.51389\n116619|0.5\n116620|0.51389\n116621|0.59722\n116622|0.66667\n116623|0.61111\n116624|0.5\n116625|0.18056\n116626|0.44444\n116627|0.29167\n116628|0.66667\n116629|0.77778\n116630|0.5\n116631|0.58333\n116632|0.70833\n116633|0.44444\n116634|0.55556\n116635|0.63889\n116636|0.58333\n116637|0.81944\n116638|0.83333\n116639|0.66667\n116640|0.68056\n116641|0.68056\n116642|0.72222\n116643|0.77778\n116644|0.84722\n116645|0.72222\n116646|0.52778\n116647|0.5\n116648|0.55556\n116649|0.29167\n116650|0.75\n116651|0.38889\n116652|0.73611\n116653|0.5\n116654|0.36111\n116655|0.56944\n116656|0.40278\n116657|0.55556\n116658|0.65278\n116659|0.61111\n116660|0.47222\n116661|0.51389\n116662|0.375\n116663|0.29167\n116664|0.61111\n116665|0.75\n116666|0.84722\n116667|0.77778\n116668|0.66667\n116669|0.5\n116670|0.55556\n116671|0.68056\n116672|0.5\n116673|0.5\n116674|0.77778\n116675|0.73611\n116676|0.83333\n116677|0.79167\n116678|0.73611\n116679|0.79167\n116680|0.79167\n116681|0.70833\n116682|0.68056\n116683|0.70833\n116684|0.66667\n116685|0.84722\n116686|0.59722\n116687|0.61111\n116688|0.72222\n116689|0.69444\n116690|0.5\n116691|0.5\n116692|0.29167\n116693|0.33333\n116694|0.38889\n116695|0.45833\n116696|0.63889\n116697|0.48611\n116698|0.59722\n116699|0.58333\n116700|0.58333\n116701|0.56944\n116702|0.055556\n116703|0.40278\n116704|0.56944\n116705|0.5\n116706|0.43056\n116707|0.79167\n116708|0.58333\n116709|0.59722\n116710|0.31944\n116711|0.22222\n116712|0.5\n116713|0.5\n116714|0.625\n116715|0.56944\n116716|0.69444\n116717|0.5\n116718|0.38889\n116719|0.41667\n116720|0.45833\n116721|0.54167\n116722|0.5\n116723|0.69444\n116724|0.68056\n116725|0.63889\n116726|0.59722\n116727|0.84722\n116728|0.70833\n116729|0.54167\n116730|0.70833\n116731|0.77778\n116732|0.73611\n116733|0.65278\n116734|0.65278\n116735|0.76389\n116736|0.48611\n116737|0.80556\n116738|0.5\n116739|0.44444\n116740|0.65278\n116741|0.5\n116742|0.5\n116743|0.5\n116744|0.70833\n116745|0.51389\n116746|0.55556\n116747|0.5\n116748|0.5\n116749|0.5\n116750|0.55556\n116751|0.5\n116752|0.5\n116753|0.80556\n116754|0.51389\n116755|0.22222\n116756|0.41667\n116757|0.73611\n116758|0.75\n116759|0.80556\n116760|0.54167\n116761|0.52778\n116762|0.48611\n116763|0.47222\n116764|0.54167\n116765|0.33333\n116766|0.5\n116767|0.5\n116768|0.66667\n116769|0.51389\n116770|0.59722\n116771|0.5\n116772|0.70833\n116773|0.51389\n116774|0.25\n116775|0.19444\n116776|0.16667\n116777|0.40278\n116778|0.5\n116779|0.375\n116780|0.55556\n116781|0.56944\n116782|0.5\n116783|0.5\n116784|0.47222\n116785|0.55556\n116786|0.5\n116787|0.41667\n116788|0.48611\n116789|0.66667\n116790|0.75\n116791|0.44444\n116792|0.61111\n116793|0.5\n116794|0.31944\n116795|0.5\n116796|0.5\n116797|0.5\n116798|0.5\n116799|0.5\n116800|0.5\n116801|0.59722\n116802|0.66667\n116803|0.55556\n116804|0.625\n116805|0.41667\n116806|0.45833\n116807|0.65278\n116808|0.70833\n116809|0.81944\n116810|0.86111\n116811|0.083333\n116812|0.097222\n116813|0.5\n116814|0.5\n116815|0.70833\n116816|0.48611\n116817|0.55556\n116818|0.56944\n116819|0.625\n116820|0.75\n116821|0.5\n116822|0.76389\n116823|0.63889\n116824|0.59722\n116825|0.5\n116826|0.55556\n116827|0.5\n116828|0.34722\n116829|0.38889\n116830|0.52778\n116831|0.5\n116832|0.5\n116833|0.58333\n116834|0.48611\n116835|0.44444\n116836|0.52778\n116837|0.55556\n116838|0.5\n116839|0.65278\n116840|0.5\n116841|0.54167\n116842|0.66667\n116843|0.48611\n116844|0.73611\n116845|0.81944\n116846|0.75\n116847|0.83333\n116848|0.34722\n116849|0.5\n116850|0.38889\n116851|0.65278\n116852|0.5\n116853|0.68056\n116854|0.86111\n116855|0.44444\n116856|0.41667\n116857|0.58333\n116858|0.45833\n116859|0.45833\n116860|0.29167\n116861|0.15278\n116862|0.5\n116863|0.73611\n116864|0.58333\n116865|0.76389\n116866|0.79167\n116867|0.70833\n116868|0.65278\n116869|0.86111\n116870|0.86111\n116871|0.88889\n116872|0.86111\n116873|0.86111\n116874|0.66667\n116875|0.68056\n116876|0.83333\n116877|0.875\n116878|0.75\n116879|0.72222\n116880|0.63889\n116881|0.68056\n116882|0.70833\n116883|0.70833\n116884|0.48611\n116885|0.5\n116886|0.61111\n116887|0.52778\n116888|0.5\n116889|0.56944\n116890|0.76389\n116891|0.36111\n116892|0.11111\n116893|0.5\n116894|0.625\n116895|0.5\n116896|0.43056\n116897|0.30556\n116898|0.25\n116899|0.16667\n116900|0.11111\n116901|0.22222\n116902|0.40278\n116903|0.38889\n116904|0.16667\n116905|0.23611\n116906|0.20833\n116907|0.48611\n116908|0.38889\n116909|0.27778\n116910|0.27778\n116911|0.27778\n116912|0.43056\n116913|0.59722\n116914|0.22222\n116915|0.54167\n116916|0.63889\n116917|0.5\n116918|0.5\n116919|0.5\n116920|0.40278\n116921|0.70833\n116922|0.72222\n116923|0.66667\n116924|0.59722\n116925|0.44444\n116926|0.33333\n116927|0.30556\n116928|0.38889\n116929|0.23611\n116930|0.22222\n116931|0.45833\n116932|0.5\n116933|0.5\n116934|0.41667\n116935|0.56944\n116936|0.55556\n116937|0.81944\n116938|0.23611\n116939|0.45833\n116940|0.33333\n116941|0.41667\n116942|0.55556\n116943|0.55556\n116944|0.61111\n116945|0.68056\n116946|0.45833\n116947|0.625\n116948|0.44444\n116949|0.5\n116950|0.5\n116951|0.625\n116952|0.76389\n116953|0.59722\n116954|0.44444\n116955|0.54167\n116956|0.45833\n116957|0.47222\n116958|0.34722\n116959|0.51389\n116960|0.5\n116961|0.5\n116962|0.58333\n116963|0.55556\n116964|0.76389\n116965|0.52778\n116966|0.48611\n116967|0.5\n116968|0.375\n116969|0.5\n116970|0.5\n116971|0.5\n116972|0.26389\n116973|0.41667\n116974|0.59722\n116975|0.54167\n116976|0.45833\n116977|0.31944\n116978|0.55556\n116979|0.5\n116980|0.43056\n116981|0.19444\n116982|0.18056\n116983|0.5\n116984|0.27778\n116985|0.5\n116986|0.61111\n116987|0.76389\n116988|0.58333\n116989|0.22222\n116990|0.625\n116991|0.66667\n116992|0.68056\n116993|0.5\n116994|0.63889\n116995|0.48611\n116996|0.77778\n116997|0.5\n116998|0.54167\n116999|0.5\n117000|0.66667\n117001|0.45833\n117002|0.5\n117003|0.48611\n117004|0.55556\n117005|0.43056\n117006|0.44444\n117007|0.47222\n117008|0.47222\n117009|0.47222\n117010|0.68056\n117011|0.51389\n117012|0.68056\n117013|0.48611\n117014|0.48611\n117015|0.38889\n117016|0.40278\n117017|0.48611\n117018|0.5\n117019|0.63889\n117020|0.65278\n117021|0.72222\n117022|0.48611\n117023|0.61111\n117024|0.625\n117025|0.625\n117026|0.70833\n117027|0.5\n117028|0.5\n117029|0.23611\n117030|0.5\n117031|0.5\n117032|0.31944\n117033|0.41667\n117034|0.45833\n117035|0.65278\n117036|0.33333\n117037|0.45833\n117038|0.54167\n117039|0.5\n117040|0.25\n117041|0.59722\n117042|0.73611\n117043|0.72222\n117044|0.5\n117045|0.70833\n117046|0.63889\n117047|0.65278\n117048|0.69444\n117049|0.40278\n117050|0.51389\n117051|0.5\n117052|0.5\n117053|0.81944\n117054|0.84722\n117055|0.83333\n117056|0.73611\n117057|0.69444\n117058|0.84722\n117059|0.80556\n117060|0.66667\n117061|0.65278\n117062|0.84722\n117063|0.72222\n117064|0.65278\n117065|0.80556\n117066|0.73611\n117067|0.72222\n117068|0.79167\n117069|0.44444\n117070|0.59722\n117071|0.61111\n117072|0.55556\n117073|0.47222\n117074|0.375\n117075|0.5\n117076|0.31944\n117077|0.25\n117078|0.19444\n117079|0.41667\n117080|0.5\n117081|0.27778\n117082|0.54167\n117083|0.56944\n117084|0.26389\n117085|0.31944\n117086|0.22222\n117087|0.51389\n117088|0.58333\n117089|0.54167\n117090|0.43056\n117091|0.26389\n117092|0.22222\n117093|0.56944\n117094|0.25\n117095|0.34722\n117096|0.73611\n117097|0.65278\n117098|0.58333\n117099|0.45833\n117100|0.61111\n117101|0.45833\n117102|0.23611\n117103|0.5\n117104|0.5\n117105|0.5\n117106|0.5\n117107|0.44444\n117108|0.48611\n117109|0.5\n117110|0.51389\n117111|0.30556\n117112|0.16667\n117113|0.5\n117114|0.55556\n117115|0.45833\n117116|0.47222\n117117|0.5\n117118|0.59722\n117119|0.31944\n117120|0.34722\n117121|0.41667\n117122|0.26389\n117123|0.5\n117124|0.5\n117125|0.47222\n117126|0.63889\n117127|0.5\n117128|0.44444\n117129|0.13889\n117130|0.66667\n117131|0.5\n117132|0.5\n117133|0.72222\n117134|0.61111\n117135|0.58333\n117136|0.31944\n117137|0.44444\n117138|0.54167\n117139|0.47222\n117140|0.38889\n117141|0.15278\n117142|0.5\n117143|0.31944\n117144|0.55556\n117145|0.5\n117146|0.58333\n117147|0.875\n117148|0.66667\n117149|0.41667\n117150|0.47222\n117151|0.54167\n117152|0.76389\n117153|0.5\n117154|0.58333\n117155|0.44444\n117156|0.58333\n117157|0.5\n117158|0.51389\n117159|0.5\n117160|0.5\n117161|0.5\n117162|0.51389\n117163|0.51389\n117164|0.88889\n117165|0.84722\n117166|0.19444\n117167|0.86111\n117168|0.66667\n117169|0.77778\n117170|0.76389\n117171|0.80556\n117172|0.55556\n117173|0.5\n117174|0.55556\n117175|0.18056\n117176|0.51389\n117177|0.41667\n117178|0.47222\n117179|0.65278\n117180|0.88889\n117181|0.94444\n117182|0.625\n117183|0.19444\n117184|0.45833\n117185|0.55556\n117186|0.44444\n117187|0.56944\n117188|0.65278\n117189|0.29167\n117190|0.27778\n117191|0.30556\n117192|0.5\n117193|0.5\n117194|0.5\n117195|0.51389\n117196|0.65278\n117197|0.38889\n117198|0.51389\n117199|0.5\n117200|0.31944\n117201|0.30556\n117202|0.20833\n117203|0.56944\n117204|0.27778\n117205|0.58333\n117206|0.51389\n117207|0.58333\n117208|0.58333\n117209|0.5\n117210|0.59722\n117211|0.56944\n117212|0.59722\n117213|0.55556\n117214|0.56944\n117215|0.48611\n117216|0.40278\n117217|0.61111\n117218|0.77778\n117219|0.44444\n117220|0.61111\n117221|0.36111\n117222|0.083333\n117223|0.66667\n117224|0.125\n117225|0.083333\n117226|0.45833\n117227|0.5\n117228|0.55556\n117229|0.70833\n117230|0.13889\n117231|0.5\n117232|0.47222\n117233|0.45833\n117234|0.75\n117235|0.79167\n117236|0.77778\n117237|0.66667\n117238|0.38889\n117239|0.36111\n117240|0.44444\n117241|0.25\n117242|0.30556\n117243|0.66667\n117244|0.29167\n117245|0.26389\n117246|0.56944\n117247|0.29167\n117248|0.375\n117249|0.41667\n117250|0.48611\n117251|0.5\n117252|0.055556\n117253|0.26389\n117254|0.375\n117255|0.58333\n117256|0.61111\n117257|0.77778\n117258|0.44444\n117259|0.38889\n117260|0.5\n117261|0.45833\n117262|0.63889\n117263|0.69444\n117264|0.47222\n117265|0.66667\n117266|0.44444\n117267|0.58333\n117268|0.45833\n117269|0.55556\n117270|0.40278\n117271|0.5\n117272|0.5\n117273|0.58333\n117274|0.76389\n117275|0.70833\n117276|0.65278\n117277|0.25\n117278|0.5\n117279|0.76389\n117280|0.41667\n117281|0.26389\n117282|0.5\n117283|0.375\n117284|0.33333\n117285|0.5\n117286|0.56944\n117287|0.65278\n117288|0.48611\n117289|0.58333\n117290|0.29167\n117291|0.66667\n117292|0.5\n117293|0.54167\n117294|0.58333\n117295|0.72222\n117296|0.47222\n117297|0.55556\n117298|0.45833\n117299|0.56944\n117300|0.625\n117301|0.55556\n117302|0.19444\n117303|0.5\n117304|0.5\n117305|0.56944\n117306|0.45833\n117307|0.56944\n117308|0.63889\n117309|0.61111\n117310|0.5\n117311|0.5\n117312|0.5\n117313|0.83333\n117314|0.51389\n117315|0.44444\n117316|0.34722\n117317|0.47222\n117318|0.66667\n117319|0.55556\n117320|0.5\n117321|0.5\n117322|0.58333\n117323|0.66667\n117324|0.58333\n117325|0.66667\n117326|0.76389\n117327|0.65278\n117328|0.66667\n117329|0.61111\n117330|0.75\n117331|0.83333\n117332|0.83333\n117333|0.84722\n117334|0.66667\n117335|0.5\n117336|0.45833\n117337|0.5\n117338|0.38889\n117339|0.48611\n117340|0.59722\n117341|0.79167\n117342|0.68056\n117343|0.61111\n117344|0.54167\n117345|0.43056\n117346|0.38889\n117347|0.40278\n117348|0.31944\n117349|0.16667\n117350|0.15278\n117351|0.25\n117352|0.58333\n117353|0.56944\n117354|0.43056\n117355|0.83333\n117356|0.80556\n117357|0.61111\n117358|0.66667\n117359|0.63889\n117360|0.80556\n117361|0.875\n117362|0.58333\n117363|0.52778\n117364|0.20833\n117365|0.58333\n117366|0.55556\n117367|0.69444\n117368|0.75\n117369|0.45833\n117370|0.63889\n117371|0.40278\n117372|0.56944\n117373|0.41667\n117374|0.48611\n117375|0.625\n117376|0.61111\n117377|0.54167\n117378|0.5\n117379|0.5\n117380|0.5\n117381|0.5\n117382|0.5\n117383|0.63889\n117384|0.44444\n117385|0.38889\n117386|0.41667\n117387|0.625\n117388|0.44444\n117389|0.44444\n117390|0.65278\n117391|0.38889\n117392|0.5\n117393|0.5\n117394|0.5\n117395|0.44444\n117396|0.5\n117397|0.625\n117398|0.30556\n117399|0.61111\n117400|0.5\n117401|0.5\n117402|0.5\n117403|0.51389\n117404|0.44444\n117405|0.44444\n117406|0.069444\n117407|0.59722\n117408|0.5\n117409|0.48611\n117410|0.43056\n117411|0.56944\n117412|0.45833\n117413|0.44444\n117414|0.44444\n117415|0.55556\n117416|0.5\n117417|0.40278\n117418|0.5\n117419|0.56944\n117420|0.27778\n117421|0.43056\n117422|0.45833\n117423|0.625\n117424|0.29167\n117425|0.51389\n117426|0.72222\n117427|0.55556\n117428|0.625\n117429|0.47222\n117430|0.61111\n117431|0.38889\n117432|0.5\n117433|0.625\n117434|0.66667\n117435|0.5\n117436|0.43056\n117437|0.72222\n117438|0.58333\n117439|0.625\n117440|0.55556\n117441|0.73611\n117442|0.73611\n117443|0.31944\n117444|0.76389\n117445|0.5\n117446|0.23611\n117447|0.5\n117448|0.65278\n117449|0.77778\n117450|0.625\n117451|0.5\n117452|0.55556\n117453|0.69444\n117454|0.38889\n117455|0.55556\n117456|0.16667\n117457|0.38889\n117458|0.61111\n117459|0.29167\n117460|0.44444\n117461|0.80556\n117462|0.47222\n117463|0.31944\n117464|0.54167\n117465|0.5\n117466|0.055556\n117467|0.15278\n117468|0.52778\n117469|0.51389\n117470|0.51389\n117471|0.58333\n117472|0.75\n117473|0.875\n117474|0.55556\n117475|0.59722\n117476|0.5\n117477|0.5\n117478|0.63889\n117479|0.5\n117480|0.52778\n117481|0.5\n117482|0.51389\n117483|0.79167\n117484|0.54167\n117485|0.58333\n117486|0.58333\n117487|0.76389\n117488|0.81944\n117489|0.52778\n117490|0.52778\n117491|0.56944\n117492|0.5\n117493|0.47222\n117494|0.36111\n117495|0.43056\n117496|0.25\n117497|0.5\n117498|0.70833\n117499|0.70833\n117500|0.29167\n117501|0.15278\n117502|0.27778\n117503|0.33333\n117504|0.55556\n117505|0.68056\n117506|0.45833\n117507|0.5\n117508|0.68056\n117509|0.41667\n117510|0.43056\n117511|0.66667\n117512|0.52778\n117513|0.47222\n117514|0.5\n117515|0.59722\n117516|0.73611\n117517|0.38889\n117518|0.52778\n117519|0.52778\n117520|0.47222\n117521|0.65278\n117522|0.58333\n117523|0.38889\n117524|0.43056\n117525|0.47222\n117526|0.69444\n117527|0.5\n117528|0.51389\n117529|0.5\n117530|0.51389\n117531|0.5\n117532|0.47222\n117533|0.56944\n117534|0.45833\n117535|0.5\n117536|0.56944\n117537|0.51389\n117538|0.55556\n117539|0.5\n117540|0.15278\n117541|0.54167\n117542|0.33333\n117543|0.5\n117544|0.59722\n117545|0.56944\n117546|0.56944\n117547|0.43056\n117548|0.5\n117549|0.5\n117550|0.52778\n117551|0.54167\n117552|0.48611\n117553|0.48611\n117554|0.36111\n117555|0.41667\n117556|0.55556\n117557|0.56944\n117558|0.069444\n117559|0.041667\n117560|0.61111\n117561|0.70833\n117562|0.23611\n117563|0.86111\n117564|0.90278\n117565|0.61111\n117566|0.5\n117567|0.44444\n117568|0.58333\n117569|0.51389\n117570|0.45833\n117571|0.48611\n117572|0.375\n117573|0.59722\n117574|0.38889\n117575|0.375\n117576|0.22222\n117577|0.5\n117578|0.58333\n117579|0.5\n117580|0.5\n117581|0.47222\n117582|0.58333\n117583|0.13889\n117584|0.25\n117585|0.5\n117586|0.41667\n117587|0.125\n117588|0.43056\n117589|0.5\n117590|0.47222\n117591|0.5\n117592|0.625\n117593|0.27778\n117594|0.45833\n117595|0.5\n117596|0.5\n117597|0.44444\n117598|0.36111\n117599|0.5\n117600|0.40278\n117601|0.625\n117602|0.66667\n117603|0.63889\n117604|0.5\n117605|0.33333\n117606|0.47222\n117607|0.5\n117608|0.75\n117609|0.51389\n117610|0.65278\n117611|0.79167\n117612|0.66667\n117613|0.58333\n117614|0.55556\n117615|0.61111\n117616|0.55556\n117617|0.5\n117618|0.40278\n117619|0.5\n117620|0.40278\n117621|0.29167\n117622|0.15278\n117623|0.5\n117624|0.083333\n117625|0.44444\n117626|0.40278\n117627|0.44444\n117628|0.5\n117629|0.48611\n117630|0.44444\n117631|0.52778\n117632|0.5\n117633|0.5\n117634|0.73611\n117635|0.61111\n117636|0.5\n117637|0.47222\n117638|0.5\n117639|0.51389\n117640|0.58333\n117641|0.70833\n117642|0.77778\n117643|0.75\n117644|0.80556\n117645|0.66667\n117646|0.63889\n117647|0.30556\n117648|0.34722\n117649|0.63889\n117650|0.54167\n117651|0.70833\n117652|0.94444\n117653|0.45833\n117654|0.375\n117655|0.36111\n117656|0.26389\n117657|0.47222\n117658|0.52778\n117659|0.19444\n117660|0.40278\n117661|0.30556\n117662|0.27778\n117663|0.375\n117664|0.36111\n117665|0.58333\n117666|0.5\n117667|0.30556\n117668|0.26389\n117669|0.375\n117670|0.38889\n117671|0.55556\n117672|0.68056\n117673|0.63889\n117674|0.5\n117675|0.61111\n117676|0.625\n117677|0.72222\n117678|0.75\n117679|0.63889\n117680|0.93056\n117681|0.97222\n117682|0.51389\n117683|0.65278\n117684|0.73611\n117685|0.75\n117686|0.75\n117687|0.69444\n117688|0.54167\n117689|0.77778\n117690|0.84722\n117691|0.875\n117692|0.98611\n117693|0.69444\n117694|0.875\n117695|0.65278\n117696|0.86111\n117697|0.47222\n117698|0.59722\n117699|0.27778\n117700|0.58333\n117701|0.52778\n117702|0.54167\n117703|0.68056\n117704|0.70833\n117705|0.63889\n117706|0.54167\n117707|0.52778\n117708|0.5\n117709|0.65278\n117710|0.5\n117711|0.5\n117712|0.375\n117713|0.54167\n117714|0.75\n117715|0.68056\n117716|0.58333\n117717|0.625\n117718|0.66667\n117719|0.66667\n117720|0.5\n117721|0.5\n117722|0.58333\n117723|0.36111\n117724|0.5\n117725|0.23611\n117726|0.47222\n117727|0.72222\n117728|0.48611\n117729|0.61111\n117730|0.34722\n117731|0.58333\n117732|0.51389\n117733|0.5\n117734|0.5\n117735|0.52778\n117736|0.61111\n117737|0.56944\n117738|0.58333\n117739|0.66667\n117740|0.72222\n117741|0.51389\n117742|0.43056\n117743|0.27778\n117744|0.16667\n117745|0.30556\n117746|0.61111\n117747|0.34722\n117748|0.38889\n117749|0.44444\n117750|0.5\n117751|0.36111\n117752|0.48611\n117753|0.22222\n117754|0.51389\n117755|0.58333\n117756|0.44444\n117757|0.51389\n117758|0.55556\n117759|0.72222\n117760|0.625\n117761|0.86111\n117762|0.5\n117763|0.5\n117764|0.5\n117765|0.55556\n117766|0.47222\n117767|0.56944\n117768|0.5\n117769|0.61111\n117770|0.63889\n117771|0.55556\n117772|0.61111\n117773|0.51389\n117774|0.48611\n117775|0.5\n117776|0.61111\n117777|0.5\n117778|0.5\n117779|0.5\n117780|0.5\n117781|0.55556\n117782|0.51389\n117783|0.75\n117784|0.76389\n117785|0.5\n117786|0.23611\n117787|0.33333\n117788|0.41667\n117789|0.5\n117790|0.63889\n117791|0.47222\n117792|0.58333\n117793|0.51389\n117794|0.5\n117795|0.30556\n117796|0.31944\n117797|0.5\n117798|0.47222\n117799|0.55556\n117800|0.58333\n117801|0.5\n117802|0.48611\n117803|0.41667\n117804|0.40278\n117805|0.43056\n117806|0.5\n117807|0.44444\n117808|0.59722\n117809|0.36111\n117810|0.80556\n117811|0.40278\n117812|0.48611\n117813|0.5\n117814|0.27778\n117815|0.29167\n117816|0.65278\n117817|0.48611\n117818|0.45833\n117819|0.48611\n117820|0.5\n117821|0.5\n117822|0.5\n117823|0.48611\n117824|0.5\n117825|0.36111\n117826|0.19444\n117827|0.23611\n117828|0.40278\n117829|0.48611\n117830|0.26389\n117831|0.18056\n117832|0.20833\n117833|0.27778\n117834|0.41667\n117835|0.80556\n117836|0.41667\n117837|0.5\n117838|0.69444\n117839|0.80556\n117840|0.5\n117841|0.5\n117842|0.52778\n117843|0.72222\n117844|0.48611\n117845|0.33333\n117846|0.5\n117847|0.44444\n117848|0.56944\n117849|0.43056\n117850|0.61111\n117851|0.72222\n117852|0.55556\n117853|0.47222\n117854|0.48611\n117855|0.47222\n117856|0.45833\n117857|0.25\n117858|0.31944\n117859|0.29167\n117860|0.59722\n117861|0.63889\n117862|0.76389\n117863|0.56944\n117864|0.36111\n117865|0.59722\n117866|0.33333\n117867|0.61111\n117868|0.59722\n117869|0.34722\n117870|0.44444\n117871|0.56944\n117872|0.51389\n117873|0.625\n117874|0.55556\n117875|0.58333\n117876|0.51389\n117877|0.5\n117878|0.55556\n117879|0.40278\n117880|0.13889\n117881|0.5\n117882|0.52778\n117883|0.47222\n117884|0.36111\n117885|0.5\n117886|0.52778\n117887|0.5\n117888|0.45833\n117889|0.45833\n117890|0.55556\n117891|0.65278\n117892|0.38889\n117893|0.61111\n117894|0.59722\n117895|0.59722\n117896|0.69444\n117897|0.81944\n117898|0.5\n117899|0.625\n117900|0.5\n117901|0.48611\n117902|0.15278\n117903|0.47222\n117904|0.22222\n117905|0.65278\n117906|0.5\n117907|0.34722\n117908|0.11111\n117909|0.61111\n117910|0.52778\n117911|0.5\n117912|0.55556\n117913|0.5\n117914|0.55556\n117915|0.5\n117916|0.56944\n117917|0.52778\n117918|0.625\n117919|0.33333\n117920|0.27778\n117921|0.5\n117922|0.5\n117923|0.27778\n117924|0.44444\n117925|0.44444\n117926|0.54167\n117927|0.23611\n117928|0.51389\n117929|0.38889\n117930|0.70833\n117931|0.66667\n117932|0.77778\n117933|0.44444\n117934|0.41667\n117935|0.52778\n117936|0.625\n117937|0.52778\n117938|0.48611\n117939|0.56944\n117940|0.40278\n117941|0.5\n117942|0.625\n117943|0.77778\n117944|0.31944\n117945|0.31944\n117946|0.61111\n117947|0.61111\n117948|0.75\n117949|0.52778\n117950|0.65278\n117951|0.72222\n117952|0.79167\n117953|0.625\n117954|0.80556\n117955|0.20833\n117956|0.625\n117957|0.41667\n117958|0.56944\n117959|0.38889\n117960|0.5\n117961|0.55556\n117962|0.625\n117963|0.5\n117964|0.41667\n117965|0.51389\n117966|0.5\n117967|0.58333\n117968|0.61111\n117969|0.61111\n117970|0.80556\n117971|0.65278\n117972|0.5\n117973|0.54167\n117974|0.79167\n117975|0.48611\n117976|0.48611\n117977|0.44444\n117978|0.70833\n117979|0.5\n117980|0.45833\n117981|0.61111\n117982|0.5\n117983|0.52778\n117984|0.5\n117985|0.58333\n117986|0.36111\n117987|0.47222\n117988|0.47222\n117989|0.41667\n117990|0.40278\n117991|0.5\n117992|0.56944\n117993|0.81944\n117994|0.61111\n117995|0.55556\n117996|0.55556\n117997|0.54167\n117998|0.66667\n117999|0.51389\n118000|0.63889\n118001|0.61111\n118002|0.76389\n118003|0.73611\n118004|0.55556\n118005|0.76389\n118006|0.81944\n118007|0.81944\n118008|0.80556\n118009|0.84722\n118010|0.83333\n118011|0.72222\n118012|0.69444\n118013|0.54167\n118014|0.5\n118015|0.36111\n118016|0.73611\n118017|0.72222\n118018|0.98611\n118019|0.72222\n118020|0.70833\n118021|0.58333\n118022|0.83333\n118023|0.27778\n118024|0.36111\n118025|0.79167\n118026|0.70833\n118027|0.69444\n118028|0.75\n118029|0.79167\n118030|0.68056\n118031|0.72222\n118032|0.86111\n118033|0.55556\n118034|0.31944\n118035|0.19444\n118036|0.31944\n118037|0.51389\n118038|0.76389\n118039|0.73611\n118040|0.58333\n118041|0.22222\n118042|0.33333\n118043|0.5\n118044|0.52778\n118045|0.75\n118046|0.5\n118047|0.61111\n118048|0.11111\n118049|0.38889\n118050|0.47222\n118051|0.51389\n118052|0.79167\n118053|0.5\n118054|0.52778\n118055|0.61111\n118056|0.44444\n118057|0.5\n118058|0.625\n118059|0.45833\n118060|0.59722\n118061|0.34722\n118062|0.16667\n118063|0.79167\n118064|0.5\n118065|0.38889\n118066|0.41667\n118067|0.27778\n118068|0.5\n118069|0.38889\n118070|0.16667\n118071|0.29167\n118072|0.13889\n118073|0.5\n118074|0.5\n118075|0.54167\n118076|0.61111\n118077|0.34722\n118078|0.38889\n118079|0.20833\n118080|0.52778\n118081|0.55556\n118082|0.83333\n118083|0.77778\n118084|0.83333\n118085|0.63889\n118086|0.83333\n118087|0.59722\n118088|0.5\n118089|0.43056\n118090|0.22222\n118091|0.55556\n118092|0.5\n118093|0.29167\n118094|0.69444\n118095|0.16667\n118096|0.51389\n118097|0.70833\n118098|0.52778\n118099|0.51389\n118100|0.45833\n118101|0.013889\n118102|0.13889\n118103|0.44444\n118104|0.34722\n118105|0.5\n118106|0.43056\n118107|0.54167\n118108|0.69444\n118109|0.83333\n118110|0.5\n118111|0.65278\n118112|0.61111\n118113|0.43056\n118114|0.84722\n118115|0.69444\n118116|0.16667\n118117|0.55556\n118118|0.70833\n118119|0.52778\n118120|0.43056\n118121|0.19444\n118122|0.20833\n118123|0.055556\n118124|0.5\n118125|0.43056\n118126|0.33333\n118127|0.44444\n118128|0.47222\n118129|0.77778\n118130|0.59722\n118131|0.55556\n118132|0.26389\n118133|0.55556\n118134|0.44444\n118135|0.375\n118136|0.5\n118137|0.25\n118138|0.22222\n118139|0.44444\n118140|0.48611\n118141|0.59722\n118142|0.63889\n118143|0.33333\n118144|0.38889\n118145|0.55556\n118146|0.58333\n118147|0.59722\n118148|0.375\n118149|0.63889\n118150|0.5\n118151|0.68056\n118152|0.5\n118153|0.625\n118154|0.625\n118155|0.59722\n118156|0.40278\n118157|0.27778\n118158|0.51389\n118159|0.55556\n118160|0.44444\n118161|0.72222\n118162|0.47222\n118163|0.31944\n118164|0.56944\n118165|0.33333\n118166|0.73611\n118167|0.65278\n118168|0.5\n118169|0.40278\n118170|0.54167\n118171|0.63889\n118172|0.80556\n118173|0.25\n118174|0.55556\n118175|0.68056\n118176|0.58333\n118177|0.47222\n118178|0.125\n118179|0.52778\n118180|0.59722\n118181|0.72222\n118182|0.5\n118183|0.59722\n118184|0.58333\n118185|0.80556\n118186|0.23611\n118187|0.52778\n118188|0.65278\n118189|0.72222\n118190|0.29167\n118191|0.26389\n118192|0.29167\n118193|0.5\n118194|0.65278\n118195|0.51389\n118196|0.30556\n118197|0.5\n118198|0.48611\n118199|0.5\n118200|0.5\n118201|0.52778\n118202|0.30556\n118203|0.5\n118204|0.44444\n118205|0.25\n118206|0.26389\n118207|0.43056\n118208|0.40278\n118209|0.44444\n118210|0.29167\n118211|0.45833\n118212|0.29167\n118213|0.55556\n118214|0.38889\n118215|0.47222\n118216|0.61111\n118217|0.44444\n118218|0.26389\n118219|0.41667\n118220|0.47222\n118221|0.72222\n118222|0.55556\n118223|0.51389\n118224|0.47222\n118225|0.48611\n118226|0.76389\n118227|0.44444\n118228|0.54167\n118229|0.5\n118230|0.18056\n118231|0.375\n118232|0.36111\n118233|0.40278\n118234|0.27778\n118235|0.625\n118236|0.375\n118237|0.5\n118238|0.54167\n118239|0.58333\n118240|0.56944\n118241|0.59722\n118242|0.80556\n118243|0.59722\n118244|0.61111\n118245|0.55556\n118246|0.58333\n118247|0.5\n118248|0.5\n118249|0.45833\n118250|0.16667\n118251|0.25\n118252|0.55556\n118253|0.5\n118254|0.30556\n118255|0.20833\n118256|0.48611\n118257|0.68056\n118258|0.34722\n118259|0.38889\n118260|0.5\n118261|0.69444\n118262|0.79167\n118263|0.5\n118264|0.58333\n118265|0.75\n118266|0.80556\n118267|0.5\n118268|0.5\n118269|0.72222\n118270|0.90278\n118271|0.5\n118272|0.63889\n118273|0.5\n118274|0.5\n118275|0.5\n118276|0.76389\n118277|0.54167\n118278|0.36111\n118279|0.5\n118280|0.5\n118281|0.59722\n118282|0.5\n118283|0.43056\n118284|0.5\n118285|0.47222\n118286|0.47222\n118287|0.5\n118288|0.56944\n118289|0.5\n118290|0.51389\n118291|0.5\n118292|0.47222\n118293|0.68056\n118294|0.5\n118295|0.75\n118296|0.5\n118297|0.29167\n118298|0.5\n118299|0.94444\n118300|0.5\n118301|0.52778\n118302|0.55556\n118303|0.5\n118304|0.5\n118305|0.5\n118306|0.5\n118307|0.40278\n118308|0.5\n118309|0.5\n118310|0.375\n118311|0.44444\n118312|0.44444\n118313|0.5\n118314|0.22222\n118315|0.22222\n118316|0.18056\n118317|0.16667\n118318|0.38889\n118319|0.375\n118320|0.23611\n118321|0.47222\n118322|0.52778\n118323|0.27778\n118324|0.52778\n118325|0.375\n118326|0.47222\n118327|0.83333\n118328|0.5\n118329|0.40278\n118330|0.23611\n118331|0.33333\n118332|0.23611\n118333|0.5\n118334|0.38889\n118335|0.041667\n118336|0.29167\n118337|0.19444\n118338|0.375\n118339|0.36111\n118340|0.33333\n118341|0.43056\n118342|0.22222\n118343|0.47222\n118344|0.44444\n118345|0.26389\n118346|0.47222\n118347|0.38889\n118348|0.5\n118349|0.47222\n118350|0.30556\n118351|0.41667\n118352|0.51389\n118353|0.5\n118354|0.84722\n118355|0.30556\n118356|0.30556\n118357|0.30556\n118358|0.47222\n118359|0.19444\n118360|0.45833\n118361|0.47222\n118362|0.44444\n118363|0.38889\n118364|0.34722\n118365|0.36111\n118366|0.625\n118367|0.47222\n118368|0.66667\n118369|0.36111\n118370|0.11111\n118371|0.5\n118372|0.52778\n118373|0.40278\n118374|0.47222\n118375|0.27778\n118376|0.45833\n118377|0.44444\n118378|0.16667\n118379|0.20833\n118380|0.16667\n118381|0.5\n118382|0.58333\n118383|0.51389\n118384|0.70833\n118385|0.69444\n118386|0.36111\n118387|0.48611\n118388|0.51389\n118389|0.55556\n118390|0.52778\n118391|0.58333\n118392|0.66667\n118393|0.61111\n118394|0.48611\n118395|0.55556\n118396|0.40278\n118397|0.40278\n118398|0.5\n118399|0.47222\n118400|0.25\n118401|0.54167\n118402|0.44444\n118403|0.44444\n118404|0.38889\n118405|0.36111\n118406|0.5\n118407|0.5\n118408|0.55556\n118409|0.44444\n118410|0.63889\n118411|0.40278\n118412|0.59722\n118413|0.34722\n118414|0.5\n118415|0.38889\n118416|0.73611\n118417|0.66667\n118418|0.30556\n118419|0.51389\n118420|0.41667\n118421|0.54167\n118422|0.51389\n118423|0.55556\n118424|0.56944\n118425|0.55556\n118426|0.5\n118427|0.5\n118428|0.44444\n118429|0.38889\n118430|0.48611\n118431|0.59722\n118432|0.44444\n118433|0.55556\n118434|0.5\n118435|0.5\n118436|0.30556\n118437|0.38889\n118438|0.27778\n118439|0.47222\n118440|0.38889\n118441|0.5\n118442|0.27778\n118443|0.38889\n118444|0.36111\n118445|0.44444\n118446|0.48611\n118447|0.375\n118448|0.5\n118449|0.11111\n118450|0.20833\n118451|0.27778\n118452|0.27778\n118453|0.33333\n118454|0.38889\n118455|0.30556\n118456|0.5\n118457|0.45833\n118458|0.36111\n118459|0.15278\n118460|0.26389\n118461|0.45833\n118462|0.43056\n118463|0.51389\n118464|0.63889\n118465|0.625\n118466|0.5\n118467|0.56944\n118468|0.40278\n118469|0.27778\n118470|0.41667\n118471|0.5\n118472|0.25\n118473|0.38889\n118474|0.20833\n118475|0.069444\n118476|0.41667\n118477|0.65278\n118478|0.43056\n118479|0.52778\n118480|0.66667\n118481|0.5\n118482|0.51389\n118483|0.51389\n118484|0.5\n118485|0.63889\n118486|0.5\n118487|0.52778\n118488|0.55556\n118489|0.5\n118490|0.47222\n118491|0.88889\n118492|0.70833\n118493|0.52778\n118494|0.59722\n118495|0.52778\n118496|0.84722\n118497|0.68056\n118498|0.55556\n118499|0.5\n118500|0.66667\n118501|0.73611\n118502|0.41667\n118503|0.27778\n118504|0.72222\n118505|0.63889\n118506|0.66667\n118507|0.65278\n118508|0.56944\n118509|0.69444\n118510|0.73611\n118511|0.5\n118512|0.40278\n118513|0.75\n118514|0.27778\n118515|0.59722\n118516|0.33333\n118517|0.5\n118518|0.29167\n118519|0.20833\n118520|0.13889\n118521|0.33333\n118522|0.22222\n118523|0\n118524|0\n118525|0.56944\n118526|0.47222\n118527|0.16667\n118528|0.27778\n118529|0.40278\n118530|0.61111\n118531|0.58333\n118532|0.27778\n118533|0.41667\n118534|0.30556\n118535|0.27778\n118536|0.65278\n118537|0.58333\n118538|0.61111\n118539|0.38889\n118540|0.47222\n118541|0.19444\n118542|0.33333\n118543|0.27778\n118544|0.30556\n118545|0.52778\n118546|0.5\n118547|0.38889\n118548|0.33333\n118549|0.36111\n118550|0.5\n118551|0.33333\n118552|0.43056\n118553|0.36111\n118554|0.44444\n118555|0.27778\n118556|0.375\n118557|0.58333\n118558|0.58333\n118559|0.33333\n118560|0.22222\n118561|0.375\n118562|0.5\n118563|0.44444\n118564|0.27778\n118565|0.23611\n118566|0.5\n118567|0.26389\n118568|0.27778\n118569|0.34722\n118570|0.51389\n118571|0.38889\n118572|0.40278\n118573|0.15278\n118574|0.18056\n118575|0.40278\n118576|0.48611\n118577|0.80556\n118578|0.41667\n118579|0.5\n118580|0.69444\n118581|0.73611\n118582|0.52778\n118583|0.58333\n118584|0.30556\n118585|0.72222\n118586|0.76389\n118587|0.75\n118588|0.5\n118589|0.5\n118590|0.5\n118591|0.54167\n118592|0.54167\n118593|0.43056\n118594|0.61111\n118595|0.5\n118596|0.55556\n118597|0.58333\n118598|0.43056\n118599|0.27778\n118600|0.5\n118601|0.56944\n118602|0.40278\n118603|0.61111\n118604|0.5\n118605|0.40278\n118606|0.56944\n118607|0.61111\n118608|0.5\n118609|0.59722\n118610|0.26389\n118611|0.65278\n118612|0.5\n118613|0.5\n118614|0.5\n118615|0.75\n118616|0.86111\n118617|0.55556\n118618|0.44444\n118619|0.5\n118620|0.22222\n118621|0.18056\n118622|0.5\n118623|0.52778\n118624|0.58333\n118625|0.33333\n118626|0.097222\n118627|0.23611\n118628|0.44444\n118629|0.44444\n118630|0.5\n118631|0.51389\n118632|0.5\n118633|0.54167\n118634|0.51389\n118635|0.43056\n118636|0.72222\n118637|0.5\n118638|0.54167\n118639|0.36111\n118640|0.38889\n118641|0.5\n118642|0.38889\n118643|0.27778\n118644|0.5\n118645|0.625\n118646|0.36111\n118647|0.27778\n118648|0.73611\n118649|0.43056\n118650|0.23611\n118651|0.40278\n118652|0.27778\n118653|0.44444\n118654|0.73611\n118655|0.56944\n118656|0.63889\n118657|0.80556\n118658|0.36111\n118659|0.5\n118660|0.47222\n118661|0.5\n118662|0.43056\n118663|0.23611\n118664|0.18056\n118665|0.5\n118666|0.5\n118667|0.33333\n118668|0.38889\n118669|0.40278\n118670|0.41667\n118671|0.27778\n118672|0.23611\n118673|0.5\n118674|0.375\n118675|0.41667\n118676|0.44444\n118677|0.38889\n118678|0.36111\n118679|0.29167\n118680|0.48611\n118681|0.65278\n118682|0.5\n118683|0.51389\n118684|0.69444\n118685|0.51389\n118686|0.5\n118687|0.5\n118688|0.5\n118689|0.5\n118690|0.65278\n118691|0.61111\n118692|0.61111\n118693|0.47222\n118694|0.55556\n118695|0.73611\n118696|0.72222\n118697|0.65278\n118698|0.73611\n118699|0.51389\n118700|0.59722\n118701|0.51389\n118702|0.83333\n118703|0.70833\n118704|0.72222\n118705|0.54167\n118706|0.58333\n118707|0.72222\n118708|0.61111\n118709|0.63889\n118710|0.73611\n118711|0.61111\n118712|0.48611\n118713|0.5\n118714|0.81944\n118715|0.73611\n118716|0.61111\n118717|0.25\n118718|0.27778\n118719|0.34722\n118720|0.5\n118721|0.61111\n118722|0.80556\n118723|0.5\n118724|0.27778\n118725|0.20833\n118726|0.5\n118727|0.5\n118728|0.36111\n118729|0.5\n118730|0.33333\n118731|0.18056\n118732|0.375\n118733|0.5\n118734|0.55556\n118735|0.38889\n118736|0.45833\n118737|0.5\n118738|0.18056\n118739|0.44444\n118740|0.41667\n118741|0.61111\n118742|0.125\n118743|0.30556\n118744|0.25\n118745|0.66667\n118746|0.44444\n118747|0.5\n118748|0.44444\n118749|0.38889\n118750|0.44444\n118751|0.30556\n118752|0.23611\n118753|0.22222\n118754|0.55556\n118755|0.36111\n118756|0.43056\n118757|0.63889\n118758|0.45833\n118759|0.61111\n118760|0.59722\n118761|0.47222\n118762|0.5\n118763|0.51389\n118764|0.47222\n118765|0.5\n118766|0.375\n118767|0.38889\n118768|0.25\n118769|0.45833\n118770|0.31944\n118771|0.36111\n118772|0.18056\n118773|0.33333\n118774|0.15278\n118775|0.26389\n118776|0.41667\n118777|0.61111\n118778|0.25\n118779|0.25\n118780|0.43056\n118781|0.20833\n118782|0.20833\n118783|0.27778\n118784|0.22222\n118785|0.25\n118786|0.15278\n118787|0.33333\n118788|0.20833\n118789|0.38889\n118790|0.55556\n118791|0.48611\n118792|0.43056\n118793|0.70833\n118794|0.55556\n118795|0.5\n118796|0.5\n118797|0.44444\n118798|0.36111\n118799|0.43056\n118800|0.47222\n118801|0.5\n118802|0.15278\n118803|0.44444\n118804|0.38889\n118805|0.56944\n118806|0.54167\n118807|0.5\n118808|0.5\n118809|0.5\n118810|0.30556\n118811|0.40278\n118812|0.13889\n118813|0.625\n118814|0.375\n118815|0.5\n118816|0.66667\n118817|0.5\n118818|0.40278\n118819|0.34722\n118820|0.41667\n118821|0.63889\n118822|0.61111\n118823|0.44444\n118824|0.5\n118825|0.52778\n118826|0.51389\n118827|0.5\n118828|0.59722\n118829|0.65278\n118830|0.76389\n118831|0.27778\n118832|0.55556\n118833|0.5\n118834|0.63889\n118835|0.48611\n118836|0.56944\n118837|0.56944\n118838|0.72222\n118839|0.69444\n118840|0.44444\n118841|0.51389\n118842|0.41667\n118843|0.51389\n118844|0.63889\n118845|0.54167\n118846|0.45833\n118847|0.5\n118848|0.5\n118849|0.5\n118850|0.5\n118851|0.5\n118852|0.55556\n118853|0.45833\n118854|0.69444\n118855|0.5\n118856|0.63889\n118857|0.54167\n118858|0.51389\n118859|0.59722\n118860|0.80556\n118861|0.72222\n118862|0.48611\n118863|0.66667\n118864|0.33333\n118865|0.38889\n118866|0.70833\n118867|0.625\n118868|0.58333\n118869|0.44444\n118870|0.33333\n118871|0.22222\n118872|0.47222\n118873|0.47222\n118874|0.52778\n118875|0.80556\n118876|0.54167\n118877|0.43056\n118878|0.65278\n118879|0.79167\n118880|0.125\n118881|0.68056\n118882|0.77778\n118883|0.55556\n118884|0.70833\n118885|0.5\n118886|0.80556\n118887|0.625\n118888|0.61111\n118889|0.5\n118890|0.65278\n118891|0.65278\n118892|0.81944\n118893|0.66667\n118894|0.5\n118895|0.55556\n118896|0.5\n118897|0.5\n118898|0.73611\n118899|0.63889\n118900|0.5\n118901|0.625\n118902|0.61111\n118903|0.5\n118904|0.375\n118905|0.83333\n118906|0.70833\n118907|0.59722\n118908|0.65278\n118909|0.81944\n118910|0.5\n118911|0.59722\n118912|0.40278\n118913|0.68056\n118914|0.63889\n118915|0.61111\n118916|0.56944\n118917|0.69444\n118918|0.61111\n118919|0.34722\n118920|0.26389\n118921|0.59722\n118922|0.5\n118923|0.5\n118924|0.5\n118925|0.5\n118926|0.5\n118927|0.5\n118928|0.5\n118929|0.5\n118930|0.5\n118931|0.30556\n118932|0.40278\n118933|0.48611\n118934|0.45833\n118935|0.5\n118936|0.58333\n118937|0.41667\n118938|0.52778\n118939|0.5\n118940|0.63889\n118941|0.45833\n118942|0.48611\n118943|0.52778\n118944|0.55556\n118945|0.59722\n118946|0.76389\n118947|0.86111\n118948|0.75\n118949|0.48611\n118950|0.5\n118951|0.5\n118952|0.25\n118953|0.69444\n118954|0.5\n118955|0.31944\n118956|0.5\n118957|0.5\n118958|0.44444\n118959|0.5\n118960|0.75\n118961|0.86111\n118962|0.5\n118963|0.51389\n118964|0.58333\n118965|0.52778\n118966|0.75\n118967|0.76389\n118968|0.84722\n118969|0.72222\n118970|0.52778\n118971|0.27778\n118972|0.55556\n118973|0.5\n118974|0.55556\n118975|0.5\n118976|0.52778\n118977|0.29167\n118978|0.23611\n118979|0.63889\n118980|0.5\n118981|0.72222\n118982|0.44444\n118983|0.70833\n118984|0.51389\n118985|0.59722\n118986|0.79167\n118987|0.75\n118988|0.58333\n118989|0.56944\n118990|0.375\n118991|0.41667\n118992|0.69444\n118993|0.48611\n118994|0.69444\n118995|0.63889\n118996|0.5\n118997|0.80556\n118998|0.54167\n118999|0.63889\n119000|0.55556\n119001|0.5\n119002|0.55556\n119003|0.5\n119004|0.55556\n119005|0.72222\n119006|0.44444\n119007|0.875\n119008|0.75\n119009|0.54167\n119010|0.20833\n119011|0.38889\n119012|0.73611\n119013|0.27778\n119014|0.56944\n119015|0.61111\n119016|0.5\n119017|0.61111\n119018|0.56944\n119019|0.44444\n119020|0.31944\n119021|0.5\n119022|0.41667\n119023|0.40278\n119024|0.5\n119025|0.5\n119026|0.72222\n119027|0.54167\n119028|0.55556\n119029|0.5\n119030|0.51389\n119031|0.75\n119032|0.375\n119033|0.36111\n119034|0.66667\n119035|0.44444\n119036|0.5\n119037|0.59722\n119038|0.38889\n119039|0.48611\n119040|0.59722\n119041|0.63889\n119042|0.72222\n119043|0.70833\n119044|0.5\n119045|0.66667\n119046|0.44444\n119047|0.33333\n119048|0.61111\n119049|0.47222\n119050|0.5\n119051|0.86111\n119052|0.5\n119053|0.66667\n119054|0.36111\n119055|0.38889\n119056|0.5\n119057|0.61111\n119058|0.47222\n119059|0.40278\n119060|0.52778\n119061|0.27778\n119062|0.58333\n119063|0.20833\n119064|0.36111\n119065|0.31944\n119066|0.76389\n119067|0.97222\n119068|0.31944\n119069|0.41667\n119070|0.5\n119071|0.55556\n119072|0.47222\n119073|0.79167\n119074|0.73611\n119075|0.75\n119076|0.81944\n119077|0.72222\n119078|0.69444\n119079|0.66667\n119080|0.375\n119081|0.625\n119082|0.56944\n119083|0.5\n119084|0.81944\n119085|0.5\n119086|0.73611\n119087|0.625\n119088|0.43056\n119089|0.5\n119090|0.79167\n119091|0.76389\n119092|0.65278\n119093|0.79167\n119094|0.70833\n119095|0.73611\n119096|0.40278\n119097|0.66667\n119098|0.625\n119099|0.79167\n119100|0.79167\n119101|0.61111\n119102|0.69444\n119103|0.52778\n119104|0.5\n119105|0.51389\n119106|0.68056\n119107|0.61111\n119108|0.72222\n119109|0.56944\n119110|0.58333\n119111|0.61111\n119112|0.625\n119113|0.56944\n119114|0.65278\n119115|0.68056\n119116|0.58333\n119117|0.59722\n119118|0.68056\n119119|0.5\n119120|0.75\n119121|0.73611\n119122|0.70833\n119123|0.41667\n119124|0.86111\n119125|0.79167\n119126|0.72222\n119127|0.875\n119128|0.58333\n119129|0.76389\n119130|0.81944\n119131|0.59722\n119132|0.70833\n119133|0.75\n119134|0.81944\n119135|0.75\n119136|0.069444\n119137|0.69444\n119138|0.72222\n119139|0.45833\n119140|0.77778\n119141|0.93056\n119142|0.91667\n119143|0.73611\n119144|0.5\n119145|0.61111\n119146|0.52778\n119147|0.36111\n119148|0.65278\n119149|0.47222\n119150|0.34722\n119151|0.58333\n119152|0.5\n119153|0.44444\n119154|0.59722\n119155|0.59722\n119156|0.875\n119157|0.58333\n119158|0.5\n119159|0.63889\n119160|0.79167\n119161|0.51389\n119162|0.65278\n119163|0.52778\n119164|0.66667\n119165|0.77778\n119166|0.31944\n119167|0.70833\n119168|0.66667\n119169|0.79167\n119170|0.58333\n119171|0.5\n119172|0.65278\n119173|0.56944\n119174|0.55556\n119175|0.55556\n119176|0.73611\n119177|0.72222\n119178|0.66667\n119179|0.48611\n119180|0.5\n119181|0.52778\n119182|0.5\n119183|0.16667\n119184|0.61111\n119185|0.56944\n119186|0.61111\n119187|0.69444\n119188|0.73611\n119189|0.625\n119190|0.72222\n119191|0.63889\n119192|0.91667\n119193|0.72222\n119194|0.77778\n119195|0.73611\n119196|0.625\n119197|0.70833\n119198|0.65278\n119199|0.47222\n119200|0.5\n119201|0.54167\n119202|0.59722\n119203|0.59722\n119204|0.625\n119205|0.45833\n119206|0.55556\n119207|0.5\n119208|0.44444\n119209|0.5\n119210|0.88889\n119211|0.66667\n119212|0.65278\n119213|0.84722\n119214|0.30556\n119215|0.125\n119216|0.625\n119217|0.61111\n119218|0.5\n119219|0.5\n119220|0.055556\n119221|0.52778\n119222|0.41667\n119223|0.27778\n119224|0.625\n119225|0.58333\n119226|0.41667\n119227|0.72222\n119228|0.875\n119229|0.55556\n119230|0.75\n119231|0.77778\n119232|0.70833\n119233|0.68056\n119234|0.36111\n119235|0.16667\n119236|0.38889\n119237|0.84722\n119238|0.77778\n119239|0.5\n119240|0.59722\n119241|0.51389\n119242|0.63889\n119243|0.5\n119244|0.375\n119245|0.16667\n119246|0.43056\n119247|0.76389\n119248|0.88889\n119249|0.65278\n119250|0.66667\n119251|0.54167\n119252|0.76389\n119253|0.5\n119254|0.54167\n119255|0.61111\n119256|0.40278\n119257|0.5\n119258|0.33333\n119259|0.55556\n119260|0.76389\n119261|0.5\n119262|0.41667\n119263|0.38889\n119264|0.5\n119265|0.5\n119266|0.5\n119267|0.45833\n119268|0.55556\n119269|0.63889\n119270|0.47222\n119271|0.45833\n119272|0.55556\n119273|0.16667\n119274|0.48611\n119275|0.5\n119276|0.63889\n119277|0.75\n119278|0.81944\n119279|0.76389\n119280|0.77778\n119281|0.79167\n119282|0.41667\n119283|0.59722\n119284|0.5\n119285|0.61111\n119286|0.43056\n119287|0.5\n119288|0.5\n119289|0.51389\n119290|0.5\n119291|0.76389\n119292|0.625\n119293|0.56944\n119294|0.69444\n119295|0.72222\n119296|0.76389\n119297|0.79167\n119298|0.5\n119299|0.59722\n119300|0.43056\n119301|0.65278\n119302|0.5\n119303|0.52778\n119304|0.5\n119305|0.72222\n119306|0.40278\n119307|0.79167\n119308|0.41667\n119309|0.54167\n119310|0.31944\n119311|0.5\n119312|0.5\n119313|0.61111\n119314|0.30556\n119315|0.5\n119316|0.77778\n119317|0.58333\n119318|0.56944\n119319|0.55556\n119320|0.45833\n119321|0.625\n119322|0.56944\n119323|0.61111\n119324|0.51389\n119325|0.18056\n119326|0.61111\n119327|0.5\n119328|0.5\n119329|0.25\n119330|0.41667\n119331|0.26389\n119332|0.56944\n119333|0.44444\n119334|0.5\n119335|0.79167\n119336|0.48611\n119337|0.41667\n119338|0.69444\n119339|0.63889\n119340|0.31944\n119341|0.23611\n119342|0.22222\n119343|0.47222\n119344|0.27778\n119345|0.70833\n119346|0.38889\n119347|0.68056\n119348|0.55556\n119349|0.5\n119350|0.66667\n119351|0.73611\n119352|0.51389\n119353|0.61111\n119354|0.19444\n119355|0.48611\n119356|0.58333\n119357|0.43056\n119358|0.66667\n119359|0.36111\n119360|0.44444\n119361|0.55556\n119362|0.52778\n119363|0.63889\n119364|0.5\n119365|0.5\n119366|0.5\n119367|0.45833\n119368|0.44444\n119369|0.70833\n119370|0.61111\n119371|0.625\n119372|0.45833\n119373|0.72222\n119374|0.43056\n119375|0.44444\n119376|0.5\n119377|0.63889\n119378|0.58333\n119379|0.52778\n119380|0.61111\n119381|0.47222\n119382|0.55556\n119383|0.54167\n119384|0.52778\n119385|0.56944\n119386|0.625\n119387|0.43056\n119388|0.54167\n119389|0.83333\n119390|0.68056\n119391|0.23611\n119392|0.22222\n119393|0.36111\n119394|0.54167\n119395|0.55556\n119396|0.5\n119397|0.66667\n119398|0.81944\n119399|0.77778\n119400|0.38889\n119401|0.5\n119402|0.59722\n119403|0.56944\n119404|0.47222\n119405|0.43056\n119406|0.59722\n119407|0.45833\n119408|0.625\n119409|0.5\n119410|0.36111\n119411|0.5\n119412|0.65278\n119413|0.5\n119414|0.19444\n119415|0.5\n119416|0.36111\n119417|0.63889\n119418|0.45833\n119419|0.56944\n119420|0.34722\n119421|0.65278\n119422|0.77778\n119423|0.48611\n119424|0.58333\n119425|0.63889\n119426|0.29167\n119427|0.65278\n119428|0.56944\n119429|0.51389\n119430|0.56944\n119431|0.72222\n119432|0.56944\n119433|0.58333\n119434|0.79167\n119435|0.5\n119436|0.45833\n119437|0.51389\n119438|0.43056\n119439|0.69444\n119440|0.36111\n119441|0.52778\n119442|0.5\n119443|0.5\n119444|0.5\n119445|0.55556\n119446|0.55556\n119447|0.59722\n119448|0.63889\n119449|0.51389\n119450|0.51389\n119451|0.47222\n119452|0.38889\n119453|0.625\n119454|0.625\n119455|0.63889\n119456|0.58333\n119457|0.44444\n119458|0.44444\n119459|0.33333\n119460|0.23611\n119461|0.875\n119462|0.86111\n119463|0.75\n119464|0.79167\n119465|0.81944\n119466|0.79167\n119467|0.84722\n119468|0.66667\n119469|0.69444\n119470|0.41667\n119471|0.29167\n119472|0.16667\n119473|0.375\n119474|0.88889\n119475|0.44444\n119476|0.31944\n119477|0.59722\n119478|0.68056\n119479|0.47222\n119480|0.51389\n119481|0.73611\n119482|0.55556\n119483|0.84722\n119484|0.72222\n119485|0.54167\n119486|0.52778\n119487|0.84722\n119488|0.083333\n119489|0.19444\n119490|0.61111\n119491|0.20833\n119492|0.54167\n119493|0.31944\n119494|0.55556\n119495|0.51389\n119496|0.54167\n119497|0.52778\n119498|0.79167\n119499|0.69444\n119500|0.5\n119501|0.5\n119502|0.27778\n119503|0.33333\n119504|0.5\n119505|0.70833\n119506|0.72222\n119507|0.48611\n119508|0.41667\n119509|0.52778\n119510|0.52778\n119511|0.63889\n119512|0.61111\n119513|0.54167\n119514|0.63889\n119515|0.69444\n119516|0.19444\n119517|0.51389\n119518|0.5\n119519|0.66667\n119520|0.44444\n119521|0.5\n119522|0.48611\n119523|0.51389\n119524|0.5\n119525|0.5\n119526|0.5\n119527|0.51389\n119528|0.47222\n119529|0.63889\n119530|0.5\n119531|0.54167\n119532|0.47222\n119533|0.47222\n119534|0.5\n119535|0.5\n119536|0.83333\n119537|0.48611\n119538|0.33333\n119539|0.45833\n119540|0.51389\n119541|0.47222\n119542|0.55556\n119543|0.44444\n119544|0.5\n119545|0.40278\n119546|0.41667\n119547|0.38889\n119548|0.34722\n119549|0.29167\n119550|0.34722\n119551|0.27778\n119552|0.47222\n119553|0.41667\n119554|0.47222\n119555|0.58333\n119556|0.55556\n119557|0.5\n119558|0.72222\n119559|0.56944\n119560|0.61111\n119561|0.43056\n119562|0.68056\n119563|0.56944\n119564|0.61111\n119565|0.44444\n119566|0.61111\n119567|0.47222\n119568|0.125\n119569|0.68056\n119570|0.5\n119571|0.51389\n119572|0.56944\n119573|0.47222\n119574|0.55556\n119575|0.61111\n119576|0.80556\n119577|0.56944\n119578|0.75\n119579|0.54167\n119580|0.66667\n119581|0.80556\n119582|0.44444\n119583|0.76389\n119584|0.5\n119585|0.5\n119586|0.52778\n119587|0.58333\n119588|0.54167\n119589|0.70833\n119590|0.5\n119591|0.5\n119592|0.63889\n119593|0.27778\n119594|0.44444\n119595|0.5\n119596|0.48611\n119597|0.40278\n119598|0.75\n119599|0.69444\n119600|1\n119601|0.73611\n119602|0.81944\n119603|0.55556\n119604|0.59722\n119605|0.5\n119606|0.75\n119607|0.45833\n119608|0.013889\n119609|0.125\n119610|0.47222\n119611|0.52778\n119612|0.84722\n119613|0.66667\n119614|0.80556\n119615|0.68056\n119616|0.56944\n119617|0.54167\n119618|0.5\n119619|0.77778\n119620|0.55556\n119621|0.44444\n119622|0.38889\n119623|0.58333\n119624|0.5\n119625|0.45833\n119626|0.5\n119627|0.48611\n119628|0.47222\n119629|0.58333\n119630|0.625\n119631|0.44444\n119632|0.36111\n119633|0.44444\n119634|0.29167\n119635|0.29167\n119636|0.22222\n119637|0.23611\n119638|0.13889\n119639|0.16667\n119640|0.25\n119641|0.15278\n119642|0.26389\n119643|0.22222\n119644|0.375\n119645|0.16667\n119646|0.13889\n119647|0.16667\n119648|0.29167\n119649|0.25\n119650|0.29167\n119651|0.18056\n119652|0.25\n119653|0.47222\n119654|0.41667\n119655|0.36111\n119656|0.58333\n119657|0.61111\n119658|0.55556\n119659|0.44444\n119660|0.54167\n119661|0.65278\n119662|0.625\n119663|0.47222\n119664|0.41667\n119665|0.63889\n119666|0.70833\n119667|0.69444\n119668|0.43056\n119669|0.34722\n119670|0.75\n119671|0.41667\n119672|0.43056\n119673|0.38889\n119674|0.47222\n119675|0.44444\n119676|0.63889\n119677|0.68056\n119678|0.5\n119679|0.54167\n119680|0.44444\n119681|0.61111\n119682|0.18056\n119683|0.51389\n119684|0.34722\n119685|0.45833\n119686|0.44444\n119687|0.44444\n119688|0.5\n119689|0.45833\n119690|0.30556\n119691|0.16667\n119692|0.33333\n119693|0.36111\n119694|0.34722\n119695|0.22222\n119696|0.26389\n119697|0.48611\n119698|0.33333\n119699|0.13889\n119700|0.20833\n119701|0.30556\n119702|0.30556\n119703|0.125\n119704|0.26389\n119705|0.23611\n119706|0.29167\n119707|0.5\n119708|0.48611\n119709|0.26389\n119710|0.52778\n119711|0.26389\n119712|0.33333\n119713|0.097222\n119714|0.38889\n119715|0.44444\n119716|0.5\n119717|0.63889\n119718|0.75\n119719|0.56944\n119720|0.44444\n119721|0.52778\n119722|0.54167\n119723|0.73611\n119724|0.51389\n119725|0.5\n119726|0.44444\n119727|0.52778\n119728|0.625\n119729|0.48611\n119730|0.22222\n119731|0.625\n119732|0.70833\n119733|0.55556\n119734|0.44444\n119735|0.44444\n119736|0.54167\n119737|0.66667\n119738|0.48611\n119739|0.44444\n119740|0.48611\n119741|0.58333\n119742|0.44444\n119743|0.56944\n119744|0.5\n119745|0.69444\n119746|0.29167\n119747|0.43056\n119748|0.38889\n119749|0.625\n119750|0.51389\n119751|0.58333\n119752|0.5\n119753|0.625\n119754|0.84722\n119755|0.88889\n119756|0.65278\n119757|0.44444\n119758|0.65278\n119759|0.5\n119760|0.5\n119761|0.55556\n119762|0.52778\n119763|0.55556\n119764|0.5\n119765|0.77778\n119766|0.5\n119767|0.5\n119768|0.40278\n119769|0.33333\n119770|0.34722\n119771|0.25\n119772|0.5\n119773|0.79167\n119774|0.66667\n119775|0.38889\n119776|0.94444\n119777|0.79167\n119778|0.16667\n119779|0.26389\n119780|0.31944\n119781|0.375\n119782|0.41667\n119783|0.5\n119784|0.5\n119785|0.31944\n119786|0.375\n119787|0.63889\n119788|0.34722\n119789|0.90278\n119790|0.83333\n119791|0.83333\n119792|0.75\n119793|0.58333\n119794|0.73611\n119795|0.68056\n119796|0.80556\n119797|0.77778\n119798|0.63889\n119799|0.51389\n119800|0.40278\n119801|0.5\n119802|0.68056\n119803|0.63889\n119804|0.5\n119805|0.66667\n119806|0.70833\n119807|0.90278\n119808|0.40278\n119809|0.47222\n119810|0.22222\n119811|0.5\n119812|0.40278\n119813|0.61111\n119814|0.43056\n119815|0.54167\n119816|0.70833\n119817|0.66667\n119818|0.61111\n119819|0.69444\n119820|0.875\n119821|0.45833\n119822|0.72222\n119823|0.51389\n119824|0.59722\n119825|0.54167\n119826|0.20833\n119827|0.27778\n119828|0.375\n119829|0.59722\n119830|0.61111\n119831|0.76389\n119832|0.5\n119833|0.52778\n119834|0.41667\n119835|0.5\n119836|0.55556\n119837|0.34722\n119838|0.5\n119839|0.5\n119840|0.5\n119841|0.55556\n119842|0.51389\n119843|0.88889\n119844|0.58333\n119845|0.80556\n119846|0.5\n119847|0.30556\n119848|0.31944\n119849|0.31944\n119850|0.45833\n119851|0.48611\n119852|0.5\n119853|0.52778\n119854|0.625\n119855|0.69444\n119856|0.75\n119857|0.51389\n119858|0.70833\n119859|0.61111\n119860|0.55556\n119861|0.25\n119862|0.22222\n119863|0.34722\n119864|0.40278\n119865|0.20833\n119866|0.26389\n119867|0.47222\n119868|0.45833\n119869|0.36111\n119870|0.5\n119871|0.625\n119872|0.31944\n119873|0.27778\n119874|0.63889\n119875|0.31944\n119876|0.54167\n119877|0.73611\n119878|0.27778\n119879|0.59722\n119880|0.59722\n119881|0.75\n119882|0.36111\n119883|0.41667\n119884|0.83333\n119885|0.34722\n119886|0.58333\n119887|0.31944\n119888|0.31944\n119889|0.54167\n119890|0.43056\n119891|0.5\n119892|0.41667\n119893|0.41667\n119894|0.29167\n119895|0.16667\n119896|0.51389\n119897|0.88889\n119898|0.65278\n119899|0.22222\n119900|0.31944\n119901|0.19444\n119902|0.38889\n119903|0.43056\n119904|0.45833\n119905|0.59722\n119906|0.55556\n119907|0.25\n119908|0.54167\n119909|0.30556\n119910|0.51389\n119911|0.055556\n119912|0.43056\n119913|0.22222\n119914|0.19444\n119915|0.34722\n119916|0.18056\n119917|0.38889\n119918|0.59722\n119919|0.5\n119920|0.5\n119921|0.76389\n119922|0.75\n119923|0.61111\n119924|0.34722\n119925|0.22222\n119926|0.40278\n119927|0.5\n119928|0.45833\n119929|0.44444\n119930|0.61111\n119931|0.43056\n119932|0.30556\n119933|0.18056\n119934|0.38889\n119935|0.33333\n119936|0.66667\n119937|0.63889\n119938|0.625\n119939|0.66667\n119940|0.27778\n119941|0.5\n119942|0.68056\n119943|0.51389\n119944|0.59722\n119945|0.5\n119946|0.48611\n119947|0.44444\n119948|0.54167\n119949|0.73611\n119950|0.27778\n119951|0.16667\n119952|0.33333\n119953|0.55556\n119954|0.55556\n119955|0.5\n119956|0.55556\n119957|0.5\n119958|0.48611\n119959|0.86111\n119960|0.58333\n119961|0.5\n119962|0.5\n119963|0.44444\n119964|0.5\n119965|0.5\n119966|0.40278\n119967|0.47222\n119968|0.5\n119969|0.5\n119970|0.5\n119971|0.75\n119972|0.38889\n119973|0.45833\n119974|0.27778\n119975|0.51389\n119976|0.52778\n119977|0.58333\n119978|0.52778\n119979|0.5\n119980|0.66667\n119981|0.59722\n119982|0.44444\n119983|0.47222\n119984|0.5\n119985|0.625\n119986|0.54167\n119987|0.77778\n119988|0.73611\n119989|0.44444\n119990|0.66667\n119991|0.5\n119992|0.44444\n119993|0.375\n119994|0.54167\n119995|0.44444\n119996|0.5\n119997|0.48611\n119998|0.61111\n119999|0.58333\n120000|0.54167\n120001|0.44444\n120002|0.18056\n120003|0.34722\n120004|0.15278\n120005|0.43056\n120006|0.43056\n120007|0.38889\n120008|0.83333\n120009|0.58333\n120010|0.5\n120011|0.5\n120012|0.5\n120013|0.40278\n120014|0.47222\n120015|0.625\n120016|0.77778\n120017|0.77778\n120018|0.58333\n120019|0.5\n120020|0.51389\n120021|0.5\n120022|0.68056\n120023|0.80556\n120024|0.65278\n120025|0.52778\n120026|0.68056\n120027|0.77778\n120028|0.41667\n120029|0.375\n120030|0.61111\n120031|0.59722\n120032|0.51389\n120033|0.61111\n120034|0.23611\n120035|0.58333\n120036|0.79167\n120037|0.31944\n120038|0.51389\n120039|0.54167\n120040|0.5\n120041|0.69444\n120042|0.55556\n120043|0.5\n120044|0.5\n120045|0.44444\n120046|0.70833\n120047|0.41667\n120048|0.5\n120049|0.55556\n120050|0.47222\n120051|0.48611\n120052|0.5\n120053|0.5\n120054|0.5\n120055|0.40278\n120056|0.55556\n120057|0.30556\n120058|0.15278\n120059|0.76389\n120060|0.56944\n120061|0.55556\n120062|0.083333\n120063|0.44444\n120064|0.54167\n120065|0.47222\n120066|0.47222\n120067|0.5\n120068|0.5\n120069|0.81944\n120070|0.43056\n120071|0.44444\n120072|0.375\n120073|0.33333\n120074|0.5\n120075|0.20833\n120076|0.26389\n120077|0.5\n120078|0.55556\n120079|0.58333\n120080|0.84722\n120081|0.36111\n120082|0.625\n120083|0.59722\n120084|0.58333\n120085|0.61111\n120086|0.63889\n120087|0.5\n120088|0.40278\n120089|0.41667\n120090|0.33333\n120091|0.76389\n120092|0.11111\n120093|0.11111\n120094|0.55556\n120095|0.38889\n120096|0.5\n120097|0.38889\n120098|0.19444\n120099|0.55556\n120100|0.56944\n120101|0.70833\n120102|0.63889\n120103|0.33333\n120104|0.68056\n120105|0.86111\n120106|0.61111\n120107|0.75\n120108|0.76389\n120109|0.58333\n120110|0.63889\n120111|0.79167\n120112|0.45833\n120113|0.5\n120114|0.52778\n120115|0.27778\n120116|0.44444\n120117|0.52778\n120118|0.66667\n120119|0.55556\n120120|0.55556\n120121|0.58333\n120122|0.23611\n120123|0.58333\n120124|0.66667\n120125|0.79167\n120126|0.55556\n120127|0.51389\n120128|0.34722\n120129|0.11111\n120130|0.375\n120131|0.61111\n120132|0.69444\n120133|0.90278\n120134|0.80556\n120135|0.83333\n120136|0.83333\n120137|0.81944\n120138|0.875\n120139|0.72222\n120140|0.625\n120141|0.72222\n120142|0.59722\n120143|0.70833\n120144|0.5\n120145|0.38889\n120146|0.52778\n120147|0.5\n120148|0.5\n120149|0.61111\n120150|0.38889\n120151|0.5\n120152|0.72222\n120153|0.55556\n120154|0.72222\n120155|0.097222\n120156|0.5\n120157|0.52778\n120158|0.5\n120159|0.63889\n120160|0.5\n120161|0.5\n120162|0.5\n120163|0.5\n120164|0.20833\n120165|0.5\n120166|0.5\n120167|0.5\n120168|0.38889\n120169|0.5\n120170|0.5\n120171|0.47222\n120172|0.59722\n120173|0.5\n120174|0.5\n120175|0.40278\n120176|0.52778\n120177|0.51389\n120178|0.18056\n120179|0.13889\n120180|0.36111\n120181|0.27778\n120182|0.5\n120183|0.38889\n120184|0.54167\n120185|0.55556\n120186|0.55556\n120187|0.70833\n120188|0.73611\n120189|0.81944\n120190|0.72222\n120191|0.66667\n120192|0.51389\n120193|0.5\n120194|0.51389\n120195|0.63889\n120196|0.5\n120197|0.56944\n120198|0.41667\n120199|0.52778\n120200|0.65278\n120201|0.65278\n120202|0.38889\n120203|0.26389\n120204|0.44444\n120205|0.31944\n120206|0.33333\n120207|0.47222\n120208|0.47222\n120209|0.43056\n120210|0.33333\n120211|0.27778\n120212|0.31944\n120213|0.55556\n120214|0.63889\n120215|0.54167\n120216|0.375\n120217|0.45833\n120218|0.5\n120219|0.5\n120220|0.33333\n120221|0.5\n120222|0.43056\n120223|0.68056\n120224|0.65278\n120225|0.26389\n120226|0.33333\n120227|0.38889\n120228|0.33333\n120229|0.26389\n120230|0.625\n120231|0.61111\n120232|0.63889\n120233|0.83333\n120234|0.47222\n120235|0.15278\n120236|0.65278\n120237|0.94444\n120238|0.98611\n120239|0.66667\n120240|0.66667\n120241|0.58333\n120242|0.5\n120243|0.5\n120244|0.30556\n120245|0.5\n120246|0.44444\n120247|0.5\n120248|0.41667\n120249|0.25\n120250|0.55556\n120251|0.56944\n120252|0.61111\n120253|0.41667\n120254|0.47222\n120255|0.5\n120256|0.34722\n120257|0.51389\n120258|0.38889\n120259|0.73611\n120260|0.5\n120261|0.375\n120262|0.51389\n120263|0.27778\n120264|0.63889\n120265|0.76389\n120266|0.41667\n120267|0.27778\n120268|0.52778\n120269|0.55556\n120270|0.52778\n120271|0.48611\n120272|0.22222\n120273|0.26389\n120274|0.38889\n120275|0.65278\n120276|0.48611\n120277|0.55556\n120278|0.48611\n120279|0.55556\n120280|0.66667\n120281|0.59722\n120282|0.5\n120283|0.5\n120284|0.56944\n120285|0.73611\n120286|0.70833\n120287|0.66667\n120288|0.5\n120289|0.69444\n120290|0.55556\n120291|0.44444\n120292|0.58333\n120293|0.59722\n120294|0.51389\n120295|0.625\n120296|0.33333\n120297|0.38889\n120298|0.31944\n120299|0.30556\n120300|0.44444\n120301|0.125\n120302|0.20833\n120303|0.5\n120304|0.44444\n120305|0.77778\n120306|0.5\n120307|0.73611\n120308|0.58333\n120309|0.61111\n120310|0.68056\n120311|0.5\n120312|0.38889\n120313|0.5\n120314|0.5\n120315|0.61111\n120316|0.5\n120317|0.5\n120318|0.52778\n120319|0.55556\n120320|0.34722\n120321|0.40278\n120322|0.125\n120323|0.58333\n120324|0.23611\n120325|0.25\n120326|0.16667\n120327|0.56944\n120328|0.55556\n120329|0.48611\n120330|0.5\n120331|0.52778\n120332|0.61111\n120333|0.5\n120334|0.51389\n120335|0.5\n120336|0.52778\n120337|0.66667\n120338|0.45833\n120339|0.38889\n120340|0.5\n120341|0.41667\n120342|0.5\n120343|0.54167\n120344|0.45833\n120345|0.5\n120346|0.5\n120347|0.625\n120348|0.43056\n120349|0.51389\n120350|0.75\n120351|0.51389\n120352|0.54167\n120353|0.73611\n120354|0.38889\n120355|0.375\n120356|0.59722\n120357|0.5\n120358|0.5\n120359|0.26389\n120360|0.69444\n120361|0.5\n120362|0.54167\n120363|0.5\n120364|0.44444\n120365|0.5\n120366|0.5\n120367|0.13889\n120368|0.5\n120369|0.47222\n120370|0.5\n120371|0.81944\n120372|0.47222\n120373|0.5\n120374|0.36111\n120375|0.63889\n120376|0.43056\n120377|0.56944\n120378|0.33333\n120379|0.48611\n120380|0.5\n120381|0.5\n120382|0.79167\n120383|0.59722\n120384|0.5\n120385|0.5\n120386|0.5\n120387|0.5\n120388|0.72222\n120389|0.66667\n120390|0.61111\n120391|0.45833\n120392|0.5\n120393|0.51389\n120394|0.5\n120395|0.61111\n120396|0.56944\n120397|0.72222\n120398|0.55556\n120399|0.81944\n120400|0.47222\n120401|0.33333\n120402|0.5\n120403|0.65278\n120404|0.58333\n120405|0.58333\n120406|0.5\n120407|0.51389\n120408|0.5\n120409|0.63889\n120410|0.61111\n120411|0.41667\n120412|0.48611\n120413|0.69444\n120414|0.36111\n120415|0.54167\n120416|0.44444\n120417|0.5\n120418|0.68056\n120419|0.66667\n120420|0.45833\n120421|0.54167\n120422|0.5\n120423|0.51389\n120424|0.68056\n120425|0.5\n120426|0.33333\n120427|0.5\n120428|0.22222\n120429|0.51389\n120430|0.34722\n120431|0.59722\n120432|0.55556\n120433|0.5\n120434|0.5\n120435|0.72222\n120436|0.84722\n120437|0.88889\n120438|0.5\n120439|0.5\n120440|0.56944\n120441|0.75\n120442|0.47222\n120443|0.91667\n120444|0.625\n120445|0.25\n120446|0.61111\n120447|0.75\n120448|0.55556\n120449|0.59722\n120450|0.65278\n120451|0.48611\n120452|0.58333\n120453|0.48611\n120454|0.51389\n120455|0.26389\n120456|0.76389\n120457|0.5\n120458|0.63889\n120459|0.33333\n120460|0.54167\n120461|0.875\n120462|0.625\n120463|0.51389\n120464|0.5\n120465|0.5\n120466|0.55556\n120467|0.52778\n120468|0.33333\n120469|0.52778\n120470|0.5\n120471|0.52778\n120472|0.5\n120473|0.22222\n120474|0.31944\n120475|0.59722\n120476|0.45833\n120477|0.59722\n120478|0.33333\n120479|0.625\n120480|0.41667\n120481|0.68056\n120482|0.72222\n120483|0.38889\n120484|0.52778\n120485|0.61111\n120486|0.55556\n120487|0.58333\n120488|0.76389\n120489|0.55556\n120490|0.5\n120491|0.68056\n120492|0.33333\n120493|0.5\n120494|0.5\n120495|0.41667\n120496|0.5\n120497|0.61111\n120498|0.61111\n120499|0.25\n120500|0.51389\n120501|0.41667\n120502|0.5\n120503|0.43056\n120504|0.5\n120505|0.63889\n120506|0.55556\n120507|0.5\n120508|0.375\n120509|0.40278\n120510|0.38889\n120511|0.51389\n120512|0.70833\n120513|0.19444\n120514|0.73611\n120515|0.22222\n120516|0.66667\n120517|0.44444\n120518|0.5\n120519|0.5\n120520|0.68056\n120521|0.31944\n120522|0.54167\n120523|0.38889\n120524|0.5\n120525|0.5\n120526|0.625\n120527|0.5\n120528|0.47222\n120529|0.76389\n120530|0.52778\n120531|0.55556\n120532|0.72222\n120533|0.5\n120534|0.52778\n120535|0.36111\n120536|0.47222\n120537|0.5\n120538|0.375\n120539|0.51389\n120540|0.30556\n120541|0.5\n120542|0.36111\n120543|0.33333\n120544|0.5\n120545|0.5\n120546|0.16667\n120547|0.5\n120548|0.44444\n120549|0.52778\n120550|0.5\n120551|0.45833\n120552|0.36111\n120553|0.29167\n120554|0.41667\n120555|0.33333\n120556|0.72222\n120557|0.29167\n120558|0.56944\n120559|0.34722\n120560|0.5\n120561|0.18056\n120562|0.48611\n120563|0.47222\n120564|0.48611\n120565|0.38889\n120566|0.41667\n120567|0.61111\n120568|0.33333\n120569|0.58333\n120570|0.54167\n120571|0.59722\n120572|0.76389\n120573|0.72222\n120574|0.5\n120575|0.375\n120576|0.22222\n120577|0.66667\n120578|0.48611\n120579|0.56944\n120580|0.77778\n120581|0.59722\n120582|0.38889\n120583|0.52778\n120584|0.38889\n120585|0.29167\n120586|0.27778\n120587|0.19444\n120588|0.33333\n120589|0.55556\n120590|0.16667\n120591|0.375\n120592|0.55556\n120593|0.43056\n120594|0.5\n120595|0.5\n120596|0.51389\n120597|0.69444\n120598|0.77778\n120599|0.5\n120600|0.5\n120601|0.51389\n120602|0.29167\n120603|0.11111\n120604|0.40278\n120605|0.625\n120606|0.76389\n120607|0.52778\n120608|0.69444\n120609|0.625\n120610|0.5\n120611|0.5\n120612|0.58333\n120613|0.55556\n120614|0.52778\n120615|0.5\n120616|0.5\n120617|0.47222\n120618|0.5\n120619|0.43056\n120620|0.5\n120621|0.65278\n120622|0.48611\n120623|0.38889\n120624|0.45833\n120625|0.54167\n120626|0.65278\n120627|0.56944\n120628|0.5\n120629|0.625\n120630|0.36111\n120631|0.56944\n120632|0.54167\n120633|0.63889\n120634|0.55556\n120635|0.5\n120636|0.5\n120637|0.88889\n120638|0.65278\n120639|0.81944\n120640|0.77778\n120641|0.77778\n120642|0.66667\n120643|0.59722\n120644|0.54167\n120645|0.69444\n120646|0.58333\n120647|0.56944\n120648|0.5\n120649|0.69444\n120650|0.51389\n120651|0.52778\n120652|0.30556\n120653|0.375\n120654|0.20833\n120655|0.51389\n120656|0.38889\n120657|0.5\n120658|0.55556\n120659|0.5\n120660|0.5\n120661|0.63889\n120662|0.5\n120663|0.5\n120664|0.65278\n120665|0.5\n120666|0.51389\n120667|0.54167\n120668|0.5\n120669|0.5\n120670|0.45833\n120671|0.5\n120672|0.44444\n120673|0.5\n120674|0.38889\n120675|0.5\n120676|0.48611\n120677|0.38889\n120678|0.70833\n120679|0.5\n120680|0.375\n120681|0.5\n120682|0.41667\n120683|0.40278\n120684|0.11111\n120685|0.47222\n120686|0.52778\n120687|0.55556\n120688|0.52778\n120689|0.34722\n120690|0.69444\n120691|0.48611\n120692|0.65278\n120693|0.54167\n120694|0.5\n120695|0.5\n120696|0.47222\n120697|0.52778\n120698|0.56944\n120699|0.75\n120700|0.5\n120701|0.5\n120702|0.5\n120703|0.5\n120704|0.31944\n120705|0.625\n120706|0.55556\n120707|0.33333\n120708|0.47222\n120709|0.80556\n120710|0.5\n120711|0.43056\n120712|0.48611\n120713|0.52778\n120714|0.58333\n120715|0.36111\n120716|0.52778\n120717|0.5\n120718|0.63889\n120719|0.43056\n120720|0.68056\n120721|0.73611\n120722|0.41667\n120723|0.31944\n120724|0.68056\n120725|0.27778\n120726|0.44444\n120727|0.5\n120728|0.51389\n120729|0.5\n120730|0.54167\n120731|0.40278\n120732|0.51389\n120733|0.5\n120734|0.79167\n120735|0.51389\n120736|0.5\n120737|0.75\n120738|0.5\n120739|0.40278\n120740|0.5\n120741|0.63889\n120742|0.65278\n120743|0.5\n120744|0.65278\n120745|0.56944\n120746|0.48611\n120747|0.43056\n120748|0.34722\n120749|0.54167\n120750|0.44444\n120751|0.5\n120752|0.47222\n120753|0.375\n120754|0.54167\n120755|0.5\n120756|0.51389\n120757|0.5\n120758|0.61111\n120759|0.33333\n120760|0.61111\n120761|0.83333\n120762|0.5\n120763|0.40278\n120764|0.52778\n120765|0.47222\n120766|0.44444\n120767|0.5\n120768|0.41667\n120769|0.47222\n120770|0.45833\n120771|0.58333\n120772|0.5\n120773|0.52778\n120774|0.5\n120775|0.54167\n120776|0.55556\n120777|0.52778\n120778|0.58333\n120779|0.5\n120780|0.58333\n120781|0.55556\n120782|0.5\n120783|0.52778\n120784|0.63889\n120785|0.59722\n120786|0.59722\n120787|0.55556\n120788|0.38889\n120789|0.41667\n120790|0.25\n120791|0.59722\n120792|0.29167\n120793|0.47222\n120794|0.22222\n120795|0.40278\n120796|0.25\n120797|0.54167\n120798|0.68056\n120799|0.52778\n120800|0.66667\n120801|0.5\n120802|0.5\n120803|0.56944\n120804|0.5\n120805|0.80556\n120806|0.29167\n120807|0.61111\n120808|0.58333\n120809|0.5\n120810|0.83333\n120811|0.16667\n120812|0.75\n120813|0.94444\n120814|0.51389\n120815|0.66667\n120816|0.26389\n120817|0.63889\n120818|0.5\n120819|0.55556\n120820|0.45833\n120821|0.65278\n120822|0.55556\n120823|0.68056\n120824|0.54167\n120825|0.52778\n120826|0.43056\n120827|0.31944\n120828|0.29167\n120829|0.72222\n120830|0.73611\n120831|0.79167\n120832|0.29167\n120833|0.86111\n120834|0.76389\n120835|0.51389\n120836|0.59722\n120837|0.72222\n120838|0.65278\n120839|0.5\n120840|0.5\n120841|0.5\n120842|0.66667\n120843|0.61111\n120844|0.47222\n120845|0.76389\n120846|0.79167\n120847|0.91667\n120848|0.61111\n120849|0.61111\n120850|0.61111\n120851|0.48611\n120852|0.81944\n120853|0.72222\n120854|0.79167\n120855|0.81944\n120856|0.875\n120857|0.69444\n120858|0.81944\n120859|0.59722\n120860|0.77778\n120861|0.77778\n120862|0.33333\n120863|0.56944\n120864|0.625\n120865|0.59722\n120866|0.76389\n120867|0.69444\n120868|0.86111\n120869|0.75\n120870|0.66667\n120871|0.72222\n120872|0.69444\n120873|0.54167\n120874|0.625\n120875|0.69444\n120876|0.88889\n120877|0.81944\n120878|0.69444\n120879|0.68056\n120880|0.69444\n120881|0.65278\n120882|0.73611\n120883|0.61111\n120884|0.54167\n120885|0.66667\n120886|0.68056\n120887|0.77778\n120888|0.76389\n120889|0.63889\n120890|0.66667\n120891|0.77778\n120892|0.31944\n120893|0.5\n120894|0.34722\n120895|0.61111\n120896|0.86111\n120897|0.52778\n120898|0.65278\n120899|0.5\n120900|0.5\n120901|0.55556\n120902|0.5\n120903|0.625\n120904|0.375\n120905|0.5\n120906|0.54167\n120907|0.54167\n120908|0.55556\n120909|0.63889\n120910|0.65278\n120911|0.51389\n120912|0.47222\n120913|0.55556\n120914|0.5\n120915|0.59722\n120916|0.51389\n120917|0.5\n120918|0.19444\n120919|0.5\n120920|0.5\n120921|0.5\n120922|0.44444\n120923|0.65278\n120924|0.375\n120925|0.47222\n120926|0.34722\n120927|0.5\n120928|0.55556\n120929|0.58333\n120930|0.23611\n120931|0.40278\n120932|0.38889\n120933|0.51389\n120934|0.52778\n120935|0.44444\n120936|0.625\n120937|0.54167\n120938|0.44444\n120939|0.51389\n120940|0.11111\n120941|0.5\n120942|0.47222\n120943|0.5\n120944|0.43056\n120945|0.34722\n120946|0.52778\n120947|0.5\n120948|0.5\n120949|0.25\n120950|0.47222\n120951|0.23611\n120952|0.625\n120953|0.48611\n120954|0.44444\n120955|0.38889\n120956|0.68056\n120957|0.5\n120958|0.5\n120959|0.25\n120960|0.41667\n120961|0.5\n120962|0.5\n120963|0.55556\n120964|0.56944\n120965|0.5\n120966|0.65278\n120967|0.5\n120968|0.31944\n120969|0.54167\n120970|0.77778\n120971|0.43056\n120972|0.54167\n120973|0.5\n120974|0.27778\n120975|0.5\n120976|0.44444\n120977|0.61111\n120978|0.40278\n120979|0.66667\n120980|0.54167\n120981|0.69444\n120982|0.54167\n120983|0.77778\n120984|0.56944\n120985|0.51389\n120986|0.40278\n120987|0.5\n120988|0.29167\n120989|0.44444\n120990|0.81944\n120991|0.65278\n120992|0.33333\n120993|0.52778\n120994|0.33333\n120995|0.66667\n120996|0.65278\n120997|0.54167\n120998|0.33333\n120999|0.5\n121000|0.5\n121001|0.48611\n121002|0.45833\n121003|0.47222\n121004|0.54167\n121005|0.625\n121006|0.33333\n121007|0.72222\n121008|0.44444\n121009|0.54167\n121010|0.65278\n121011|0.41667\n121012|0.58333\n121013|0.55556\n121014|0.68056\n121015|0.625\n121016|0.76389\n121017|0.63889\n121018|0.68056\n121019|0.79167\n121020|0.61111\n121021|0.43056\n121022|0.81944\n121023|0.70833\n121024|0.81944\n121025|0.80556\n121026|0.77778\n121027|0.79167\n121028|0.76389\n121029|0.97222\n121030|0.38889\n121031|0.41667\n121032|0.5\n121033|0.48611\n121034|0.51389\n121035|0.47222\n121036|0.58333\n121037|0.83333\n121038|0.30556\n121039|0.055556\n121040|0.22222\n121041|0.625\n121042|0.19444\n121043|0.5\n121044|0.625\n121045|0.5\n121046|0.26389\n121047|0.30556\n121048|0.56944\n121049|0.36111\n121050|0.31944\n121051|0.61111\n121052|0.5\n121053|0.56944\n121054|0.80556\n121055|0.52778\n121056|0.61111\n121057|0.79167\n121058|0.55556\n121059|0.47222\n121060|0.48611\n121061|0.23611\n121062|0.69444\n121063|0.38889\n121064|0.44444\n121065|0.5\n121066|0.5\n121067|0.41667\n121068|0.27778\n121069|0.5\n121070|0.31944\n121071|0.79167\n121072|0.625\n121073|0.77778\n121074|0.5\n121075|0.36111\n121076|0.69444\n121077|0.65278\n121078|0.68056\n121079|0.69444\n121080|0.65278\n121081|0.27778\n121082|0.27778\n121083|0.38889\n121084|0.44444\n121085|0.5\n121086|0.23611\n121087|0.73611\n121088|0.76389\n121089|0.55556\n121090|0.72222\n121091|0.36111\n121092|0.73611\n121093|0.72222\n121094|0.59722\n121095|0.68056\n121096|0.5\n121097|0.34722\n121098|0.375\n121099|0.34722\n121100|0.52778\n121101|0.18056\n121102|0.72222\n121103|0.54167\n121104|0.5\n121105|0.43056\n121106|0.59722\n121107|0.34722\n121108|0.59722\n121109|0.625\n121110|0.51389\n121111|0.68056\n121112|0.56944\n121113|0.61111\n121114|0.55556\n121115|0.56944\n121116|0.63889\n121117|0.55556\n121118|0.5\n121119|0.61111\n121120|0.45833\n121121|0.59722\n121122|0.59722\n121123|0.5\n121124|0.47222\n121125|0.33333\n121126|0.5\n121127|0.61111\n121128|0.52778\n121129|0.73611\n121130|0.59722\n121131|0.69444\n121132|0.76389\n121133|0.61111\n121134|0.68056\n121135|0.54167\n121136|0.52778\n121137|0.38889\n121138|0.55556\n121139|0.61111\n121140|0.5\n121141|0.51389\n121142|0.66667\n121143|0.625\n121144|0.5\n121145|0.59722\n121146|0.61111\n121147|0.77778\n121148|0.47222\n121149|0.52778\n121150|0.44444\n121151|0.51389\n121152|0.58333\n121153|0.51389\n121154|0.54167\n121155|0.61111\n121156|0.55556\n121157|0.48611\n121158|0.47222\n121159|0.625\n121160|0.44444\n121161|0.76389\n121162|0.31944\n121163|0.61111\n121164|0.51389\n121165|0.375\n121166|0.5\n121167|0.41667\n121168|0.18056\n121169|0.5\n121170|0.027778\n121171|0.61111\n121172|0.48611\n121173|0.79167\n121174|0.75\n121175|0.69444\n121176|0.65278\n121177|0.61111\n121178|0.84722\n121179|0.77778\n121180|0.61111\n121181|0.81944\n121182|0.75\n121183|0.69444\n121184|0.81944\n121185|0.61111\n121186|0.58333\n121187|0.91667\n121188|0.79167\n121189|0.68056\n121190|0.875\n121191|0.81944\n121192|0.79167\n121193|0.69444\n121194|0.55556\n121195|0.51389\n121196|0.76389\n121197|0.55556\n121198|0.47222\n121199|0.5\n121200|0.5\n121201|0.5\n121202|0.875\n121203|0.47222\n121204|0.41667\n121205|0.55556\n121206|0.25\n121207|0.5\n121208|0.59722\n121209|0.83333\n121210|0.84722\n121211|0.81944\n121212|0.81944\n121213|0.86111\n121214|0.625\n121215|0.55556\n121216|0.5\n121217|0.33333\n121218|0.625\n121219|0.55556\n121220|0.31944\n121221|0.80556\n121222|0.59722\n121223|0.48611\n121224|0.31944\n121225|0.56944\n121226|0.625\n121227|0.5\n121228|0.48611\n121229|0.18056\n121230|0.18056\n121231|0.38889\n121232|0.77778\n121233|0.61111\n121234|0.45833\n121235|0.54167\n121236|0.5\n121237|0.43056\n121238|0.52778\n121239|0.43056\n121240|0.27778\n121241|0.5\n121242|0.47222\n121243|0.36111\n121244|0.54167\n121245|0.43056\n121246|0.69444\n121247|0.72222\n121248|0.69444\n121249|0.79167\n121250|0.59722\n121251|0.26389\n121252|0.52778\n121253|0.52778\n121254|0.70833\n121255|0.59722\n121256|0.5\n121257|0.48611\n121258|0.5\n121259|0.48611\n121260|0.44444\n121261|0.30556\n121262|0.43056\n121263|0.38889\n121264|0.48611\n121265|0.083333\n121266|0.30556\n121267|0.27778\n121268|0.5\n121269|0.45833\n121270|0.5\n121271|0.58333\n121272|0.29167\n121273|0.66667\n121274|0.56944\n121275|0.5\n121276|0.18056\n121277|0.40278\n121278|0.5\n121279|0.5\n121280|0.70833\n121281|0.55556\n121282|0.29167\n121283|0.5\n121284|0.44444\n121285|0.44444\n121286|0.72222\n121287|0.61111\n121288|0.52778\n121289|0.68056\n121290|0.66667\n121291|0.65278\n121292|0.75\n121293|0.84722\n121294|0.81944\n121295|0.77778\n121296|0.68056\n121297|0.77778\n121298|0.81944\n121299|0.5\n121300|0.55556\n121301|0.79167\n121302|0.61111\n121303|0.77778\n121304|0.68056\n121305|0.5\n121306|0.23611\n121307|0.48611\n121308|0.58333\n121309|0.5\n121310|0.80556\n121311|0.65278\n121312|0.83333\n121313|0.72222\n121314|0.77778\n121315|0.65278\n121316|0.75\n121317|0.69444\n121318|0.69444\n121319|0.76389\n121320|0.61111\n121321|0.52778\n121322|0.68056\n121323|0.70833\n121324|0.73611\n121325|0.63889\n121326|0.51389\n121327|0.18056\n121328|0.56944\n121329|0.59722\n121330|0.72222\n121331|0.30556\n121332|0.69444\n121333|0.94444\n121334|0.45833\n121335|0.61111\n121336|0.65278\n121337|0.5\n121338|0.81944\n121339|0.86111\n121340|0.86111\n121341|0.75\n121342|0.75\n121343|0.55556\n121344|0.31944\n121345|0.45833\n121346|0.58333\n121347|0.68056\n121348|0.70833\n121349|0.81944\n121350|0.73611\n121351|0.65278\n121352|0.625\n121353|0.80556\n121354|0.76389\n121355|0.44444\n121356|0.33333\n121357|0.45833\n121358|0.61111\n121359|0.54167\n121360|0.79167\n121361|0.26389\n121362|0.375\n121363|0.625\n121364|0.54167\n121365|0.31944\n121366|0.875\n121367|0.61111\n121368|0.5\n121369|0.5\n121370|0.5\n121371|0.5\n121372|0.61111\n121373|0.56944\n121374|0.43056\n121375|0.73611\n121376|0.73611\n121377|0.59722\n121378|0.34722\n121379|0.54167\n121380|0.5\n121381|0.59722\n121382|0.44444\n121383|0.44444\n121384|0.5\n121385|0.61111\n121386|0.55556\n121387|0.52778\n121388|0.5\n121389|0.68056\n121390|0.52778\n121391|0.41667\n121392|0.47222\n121393|0.38889\n121394|0.59722\n121395|0.59722\n121396|0.33333\n121397|0.44444\n121398|0.55556\n121399|0.38889\n121400|0.31944\n121401|0.5\n121402|0.40278\n121403|0.20833\n121404|0.69444\n121405|0.77778\n121406|0.61111\n121407|0.56944\n121408|0.72222\n121409|0.76389\n121410|0.90278\n121411|0.76389\n121412|0.66667\n121413|0.65278\n121414|0.84722\n121415|0.84722\n121416|0.5\n121417|0.5\n121418|0.41667\n121419|0.875\n121420|0.83333\n121421|0.90278\n121422|0.40278\n121423|0.86111\n121424|0.38889\n121425|0.38889\n121426|0.5\n121427|0.5\n121428|0.56944\n121429|0.36111\n121430|0.83333\n121431|0.83333\n121432|0.84722\n121433|0.61111\n121434|0.5\n121435|0.88889\n121436|0.56944\n121437|0.52778\n121438|0.55556\n121439|0.5\n121440|0.75\n121441|0.79167\n121442|0.66667\n121443|0.75\n121444|0.55556\n121445|0.52778\n121446|0.5\n121447|0.25\n121448|0.63889\n121449|0.36111\n121450|0.5\n121451|0.52778\n121452|0.5\n121453|0.22222\n121454|0.26389\n121455|0.41667\n121456|0.48611\n121457|0.31944\n121458|0.44444\n121459|0.45833\n121460|0.63889\n121461|0.48611\n121462|0.61111\n121463|0.47222\n121464|0.48611\n121465|0.61111\n121466|0.44444\n121467|0.625\n121468|0.44444\n121469|0.44444\n121470|0.66667\n121471|0.66667\n121472|0.34722\n121473|0.19444\n121474|0.29167\n121475|0.33333\n121476|0.69444\n121477|0.55556\n121478|0.5\n121479|0.5\n121480|0.65278\n121481|0.76389\n121482|0.83333\n121483|0.65278\n121484|0.72222\n121485|0.86111\n121486|0.47222\n121487|0.59722\n121488|0.55556\n121489|0.5\n121490|0.5\n121491|0.65278\n121492|0.59722\n121493|0.45833\n121494|0.55556\n121495|0.5\n121496|0.5\n121497|0.44444\n121498|0.70833\n121499|0.55556\n121500|0.47222\n121501|0.61111\n121502|0.625\n121503|0.48611\n121504|0.5\n121505|0.5\n121506|0.61111\n121507|0.77778\n121508|0.61111\n121509|0.66667\n121510|0.75\n121511|0.5\n121512|0.43056\n121513|0.58333\n121514|0.54167\n121515|0.52778\n121516|0.27778\n121517|0.38889\n121518|0.44444\n121519|0.52778\n121520|0.20833\n121521|0.38889\n121522|0.54167\n121523|0.5\n121524|0.44444\n121525|0.27778\n121526|0.5\n121527|0.5\n121528|0.48611\n121529|0.68056\n121530|0.61111\n121531|0.51389\n121532|0.5\n121533|0.5\n121534|0.66667\n121535|0.75\n121536|0.18056\n121537|0.61111\n121538|0.5\n121539|0.38889\n121540|0.16667\n121541|0.29167\n121542|0.58333\n121543|0.70833\n121544|0.375\n121545|0.125\n121546|0.52778\n121547|0.58333\n121548|0.5\n121549|0.48611\n121550|0.55556\n121551|0.5\n121552|0.5\n121553|0.65278\n121554|0.56944\n121555|0.58333\n121556|0.27778\n121557|0.5\n121558|0.5\n121559|0.5\n121560|0.5\n121561|0.5\n121562|0.38889\n121563|0.375\n121564|0.18056\n121565|0.38889\n121566|0.48611\n121567|0.23611\n121568|0.47222\n121569|0.63889\n121570|0.27778\n121571|0.16667\n121572|0.52778\n121573|0.47222\n121574|0.47222\n121575|0.5\n121576|0.63889\n121577|0.5\n121578|0.44444\n121579|0.48611\n121580|0.5\n121581|0.5\n121582|0.34722\n121583|0.5\n121584|0.61111\n121585|0.51389\n121586|0.59722\n121587|0.77778\n121588|0.5\n121589|0.44444\n121590|0.54167\n121591|0.44444\n121592|0.56944\n121593|0.41667\n121594|0.16667\n121595|0.34722\n121596|0.5\n121597|0.625\n121598|0.86111\n121599|0.33333\n121600|0.5\n121601|0.5\n121602|0.5\n121603|0.58333\n121604|0.72222\n121605|0.69444\n121606|0.5\n121607|0.5\n121608|0.73611\n121609|0.58333\n121610|0.66667\n121611|0.73611\n121612|0.33333\n121613|0.34722\n121614|0.41667\n121615|0.36111\n121616|0.72222\n121617|0\n121618|0.15278\n121619|0.44444\n121620|0.31944\n121621|0.58333\n121622|0.43056\n121623|0.52778\n121624|0.58333\n121625|0.38889\n121626|0.19444\n121627|0.47222\n121628|0.5\n121629|0.40278\n121630|0.22222\n121631|0.59722\n121632|0.20833\n121633|0.59722\n121634|0.58333\n121635|0.55556\n121636|0.48611\n121637|0.38889\n121638|0.68056\n121639|0.72222\n121640|0.76389\n121641|0.52778\n121642|0.59722\n121643|0.54167\n121644|0.75\n121645|0.5\n121646|0.65278\n121647|0.47222\n121648|0.45833\n121649|0.61111\n121650|0.72222\n121651|0.81944\n121652|0.88889\n121653|0.75\n121654|0.54167\n121655|0.70833\n121656|0.79167\n121657|0.66667\n121658|0.73611\n121659|0.79167\n121660|0.70833\n121661|0.69444\n121662|0.33333\n121663|0.79167\n121664|0.81944\n121665|0.70833\n121666|0.81944\n121667|0.75\n121668|0.63889\n121669|0.73611\n121670|0.61111\n121671|0.73611\n121672|0.59722\n121673|0.25\n121674|0.15278\n121675|0.79167\n121676|0.54167\n121677|0.65278\n121678|0.68056\n121679|0.76389\n121680|0.73611\n121681|0.375\n121682|0.75\n121683|0.55556\n121684|0.5\n121685|0.20833\n121686|0.84722\n121687|0.72222\n121688|0.63889\n121689|0.61111\n121690|0.61111\n121691|0.5\n121692|0.55556\n121693|0.65278\n121694|0.45833\n121695|0.625\n121696|0.44444\n121697|0.44444\n121698|0.44444\n121699|0.5\n121700|0.5\n121701|0.5\n121702|0.65278\n121703|0.83333\n121704|0.56944\n121705|0.30556\n121706|0.36111\n121707|0.34722\n121708|0.38889\n121709|0.27778\n121710|0.33333\n121711|0.55556\n121712|0.625\n121713|0.61111\n121714|0.16667\n121715|0.44444\n121716|0.45833\n121717|0.51389\n121718|0.5\n121719|0.55556\n121720|0.69444\n121721|0.56944\n121722|0.61111\n121723|0.76389\n121724|0.69444\n121725|0.72222\n121726|0.625\n121727|0.51389\n121728|0.84722\n121729|0.76389\n121730|0.81944\n121731|0.91667\n121732|0.77778\n121733|0.73611\n121734|0.66667\n121735|0.79167\n121736|0.5\n121737|0.5\n121738|0.59722\n121739|0.70833\n121740|0.81944\n121741|0.79167\n121742|0.34722\n121743|0.5\n121744|0.95833\n121745|0.34722\n121746|0.73611\n121747|0.625\n121748|0.61111\n121749|0.81944\n121750|0.5\n121751|0.5\n121752|0.5\n121753|0.18056\n121754|0.48611\n121755|0.75\n121756|0.69444\n121757|0.61111\n121758|0.80556\n121759|0.66667\n121760|0.40278\n121761|0.5\n121762|0.95833\n121763|0.84722\n121764|0.48611\n121765|0.65278\n121766|0.48611\n121767|0.625\n121768|0.54167\n121769|0.15278\n121770|0.069444\n121771|0.34722\n121772|0.61111\n121773|0.77778\n121774|0.51389\n121775|0.38889\n121776|0.56944\n121777|0.79167\n121778|0.66667\n121779|0.65278\n121780|0.375\n121781|0.34722\n121782|0.61111\n121783|0.81944\n121784|0.88889\n121785|0.83333\n121786|0.86111\n121787|0.69444\n121788|0.55556\n121789|0.75\n121790|0.40278\n121791|0.13889\n121792|0.30556\n121793|0.54167\n121794|0.69444\n121795|0.68056\n121796|0.70833\n121797|0.52778\n121798|0.58333\n121799|0.5\n121800|0.75\n121801|0.79167\n121802|0.63889\n121803|0.30556\n121804|0.40278\n121805|0.41667\n121806|0.13889\n121807|0.36111\n121808|0.54167\n121809|0.81944\n121810|0.79167\n121811|0.15278\n121812|0.65278\n121813|0.33333\n121814|0.44444\n121815|0.30556\n121816|0.5\n121817|0.56944\n121818|0.38889\n121819|0.125\n121820|0.44444\n121821|0.083333\n121822|0.27778\n121823|0.47222\n121824|0.66667\n121825|0.29167\n121826|0.66667\n121827|0.41667\n121828|0.5\n121829|0.5\n121830|0.80556\n121831|0.70833\n121832|0.43056\n121833|0.41667\n121834|0.44444\n121835|0.69444\n121836|0.5\n121837|0.76389\n121838|0.79167\n121839|0.625\n121840|0.65278\n121841|0.69444\n121842|0.625\n121843|0.68056\n121844|0.16667\n121845|0.70833\n121846|0.81944\n121847|0.5\n121848|0.83333\n121849|0.66667\n121850|0.56944\n121851|0.61111\n121852|0.73611\n121853|0.48611\n121854|0.58333\n121855|0.73611\n121856|0.51389\n121857|0.61111\n121858|0.38889\n121859|0.75\n121860|0.097222\n121861|0.93056\n121862|0.75\n121863|0.76389\n121864|0.63889\n121865|0.77778\n121866|0.45833\n121867|0.61111\n121868|0.56944\n121869|0.77778\n121870|0.86111\n121871|0.66667\n121872|0.58333\n121873|0.38889\n121874|0.44444\n121875|0.26389\n121876|0.16667\n121877|0.68056\n121878|0.79167\n121879|0.34722\n121880|0.69444\n121881|0.51389\n121882|0.45833\n121883|0.65278\n121884|0.68056\n121885|0.27778\n121886|0.11111\n121887|0.33333\n121888|0.16667\n121889|0.25\n121890|0.34722\n121891|0.29167\n121892|0.51389\n121893|0.625\n121894|0.61111\n121895|0.51389\n121896|0.52778\n121897|0.54167\n121898|0.44444\n121899|0.25\n121900|0.48611\n121901|0.73611\n121902|0.5\n121903|0.47222\n121904|0.72222\n121905|0.68056\n121906|0.44444\n121907|0.72222\n121908|0.79167\n121909|0.52778\n121910|0.5\n121911|0.55556\n121912|0.69444\n121913|0.44444\n121914|0.59722\n121915|0.52778\n121916|0.40278\n121917|0.5\n121918|0.26389\n121919|0.5\n121920|0.27778\n121921|0.47222\n121922|0.33333\n121923|0.90278\n121924|0.26389\n121925|0.36111\n121926|0.58333\n121927|0.47222\n121928|0.27778\n121929|0.51389\n121930|0.55556\n121931|0.30556\n121932|0.5\n121933|0.38889\n121934|0.51389\n121935|0.22222\n121936|0.55556\n121937|0.5\n121938|0.55556\n121939|0.73611\n121940|0.61111\n121941|0.59722\n121942|0.5\n121943|0.5\n121944|0.29167\n121945|0.40278\n121946|0.65278\n121947|0.51389\n121948|0.38889\n121949|0.30556\n121950|0.48611\n121951|0.59722\n121952|0.70833\n121953|0\n121954|0.375\n121955|0.51389\n121956|0.44444\n121957|0.44444\n121958|0.48611\n121959|0.58333\n121960|0.5\n121961|0.45833\n121962|0.5\n121963|0.29167\n121964|0.44444\n121965|0.83333\n121966|0.5\n121967|0.625\n121968|0.5\n121969|0.48611\n121970|0.48611\n121971|0.5\n121972|0.5\n121973|0.56944\n121974|0.13889\n121975|0.11111\n121976|0.5\n121977|0.18056\n121978|0.70833\n121979|0.65278\n121980|0.59722\n121981|0.48611\n121982|0.59722\n121983|0.5\n121984|0.65278\n121985|0.29167\n121986|0.40278\n121987|0.63889\n121988|0.20833\n121989|0.625\n121990|0.5\n121991|0.76389\n121992|0.80556\n121993|0.66667\n121994|0.77778\n121995|0.36111\n121996|0.31944\n121997|0.66667\n121998|0.5\n121999|0.41667\n122000|0.47222\n122001|0.68056\n122002|0.75\n122003|0.73611\n122004|0.58333\n122005|0.44444\n122006|0.43056\n122007|0.70833\n122008|0.43056\n122009|0.19444\n122010|0.40278\n122011|0.77778\n122012|0.30556\n122013|0.55556\n122014|0.16667\n122015|0.47222\n122016|0.73611\n122017|0.38889\n122018|0.65278\n122019|0.5\n122020|0.29167\n122021|0.375\n122022|0.18056\n122023|0.47222\n122024|0.36111\n122025|0.48611\n122026|0.29167\n122027|0.65278\n122028|0.76389\n122029|0.48611\n122030|0.375\n122031|0.29167\n122032|0.54167\n122033|0.5\n122034|0.72222\n122035|0.38889\n122036|0.34722\n122037|0.33333\n122038|0.47222\n122039|0.73611\n122040|0.55556\n122041|0.65278\n122042|0.5\n122043|0.54167\n122044|0.48611\n122045|0.5\n122046|0.45833\n122047|0.5\n122048|0.69444\n122049|0.52778\n122050|0.44444\n122051|0.33333\n122052|0.56944\n122053|0.375\n122054|0.54167\n122055|0.38889\n122056|0.5\n122057|0.41667\n122058|0.5\n122059|0.52778\n122060|0.22222\n122061|0.55556\n122062|0.19444\n122063|0.19444\n122064|0.70833\n122065|0.5\n122066|0.48611\n122067|0.41667\n122068|0.41667\n122069|0.013889\n122070|0.16667\n122071|0.63889\n122072|0.41667\n122073|0.69444\n122074|0.55556\n122075|0.41667\n122076|0.625\n122077|0.65278\n122078|0.5\n122079|0.51389\n122080|0.52778\n122081|0.5\n122082|0.5\n122083|0.75\n122084|0.5\n122085|0.65278\n122086|0.54167\n122087|0.56944\n122088|0.33333\n122089|0.66667\n122090|0.44444\n122091|0.52778\n122092|0.88889\n122093|0.45833\n122094|0.66667\n122095|0.66667\n122096|0.84722\n122097|0.75\n122098|0.65278\n122099|0.54167\n122100|0.34722\n122101|0.76389\n122102|0.73611\n122103|0.51389\n122104|0.47222\n122105|0.38889\n122106|0.5\n122107|0.44444\n122108|0.41667\n122109|0.58333\n122110|0.48611\n122111|0.38889\n122112|0.15278\n122113|0.5\n122114|0.65278\n122115|0.61111\n122116|0.38889\n122117|0.45833\n122118|0.68056\n122119|0.51389\n122120|0.80556\n122121|0.54167\n122122|0.51389\n122123|0.69444\n122124|0.63889\n122125|0.79167\n122126|0.5\n122127|0.5\n122128|0.72222\n122129|0.73611\n122130|0.77778\n122131|0.58333\n122132|0.63889\n122133|0.55556\n122134|0.72222\n122135|0.55556\n122136|0.47222\n122137|0.61111\n122138|0.58333\n122139|0.59722\n122140|0.29167\n122141|0.38889\n122142|0.55556\n122143|0.73611\n122144|0.55556\n122145|0.30556\n122146|0.69444\n122147|0.51389\n122148|0.19444\n122149|0.65278\n122150|0.5\n122151|0.5\n122152|0.55556\n122153|0.68056\n122154|0.51389\n122155|0.65278\n122156|0.59722\n122157|0.45833\n122158|0.79167\n122159|0.51389\n122160|0.5\n122161|0.5\n122162|0.5\n122163|0.5\n122164|0.88889\n122165|0.56944\n122166|0.55556\n122167|0.63889\n122168|0.58333\n122169|0.51389\n122170|0.5\n122171|0.66667\n122172|0.61111\n122173|0.5\n122174|0.5\n122175|0.25\n122176|0.40278\n122177|0.26389\n122178|0.56944\n122179|0.55556\n122180|0.5\n122181|0.58333\n122182|0.625\n122183|0.63889\n122184|0.5\n122185|0.5\n122186|0.5\n122187|0.52778\n122188|0.56944\n122189|0.77778\n122190|0.5\n122191|0.34722\n122192|0.5\n122193|0.58333\n122194|0.5\n122195|0.375\n122196|0.45833\n122197|0.38889\n122198|0.375\n122199|0.33333\n122200|0.47222\n122201|0.31944\n122202|0.18056\n122203|0.083333\n122204|0.81944\n122205|0.5\n122206|0.59722\n122207|0.66667\n122208|0.52778\n122209|0.54167\n122210|0.30556\n122211|0.69444\n122212|0.5\n122213|0.58333\n122214|0.83333\n122215|0.73611\n122216|0.54167\n122217|0.52778\n122218|0.77778\n122219|0.68056\n122220|0.72222\n122221|0.77778\n122222|0.84722\n122223|0.76389\n122224|0.52778\n122225|0.5\n122226|0.72222\n122227|0.73611\n122228|0.69444\n122229|0.63889\n122230|0.54167\n122231|0.55556\n122232|0.84722\n122233|0.98611\n122234|0.84722\n122235|0.81944\n122236|0.59722\n122237|0.5\n122238|0.5\n122239|0.5\n122240|0.75\n122241|0.83333\n122242|0.5\n122243|0.48611\n122244|0.36111\n122245|0.5\n122246|0.65278\n122247|0.5\n122248|0.51389\n122249|0.5\n122250|0.15278\n122251|0.52778\n122252|0.44444\n122253|0.79167\n122254|0.66667\n122255|0.5\n122256|0.5\n122257|0.23611\n122258|0.5\n122259|0.5\n122260|0.66667\n122261|0.75\n122262|0.44444\n122263|0.52778\n122264|0.54167\n122265|0.5\n122266|0.51389\n122267|0.5\n122268|0.66667\n122269|0.44444\n122270|0.5\n122271|0.5\n122272|0.58333\n122273|0.69444\n122274|0.34722\n122275|0.51389\n122276|0.72222\n122277|0.73611\n122278|0.38889\n122279|0.44444\n122280|0.58333\n122281|0.56944\n122282|0.38889\n122283|0.5\n122284|0.51389\n122285|0.27778\n122286|0.72222\n122287|0.51389\n122288|0.5\n122289|0.375\n122290|0.31944\n122291|0.5\n122292|0.63889\n122293|0.5\n122294|0.5\n122295|0.54167\n122296|0.73611\n122297|0.34722\n122298|0.33333\n122299|0.75\n122300|0.5\n122301|0.5\n122302|0.55556\n122303|0.5\n122304|0.5\n122305|0.5\n122306|0.75\n122307|0.5\n122308|0.52778\n122309|0.5\n122310|0.61111\n122311|0.5\n122312|0.54167\n122313|0.55556\n122314|0.5\n122315|0.52778\n122316|0.44444\n122317|0.65278\n122318|0.5\n122319|0.45833\n122320|0.70833\n122321|0.5\n122322|0.41667\n122323|0.51389\n122324|0.81944\n122325|0.45833\n122326|0.51389\n122327|0.5\n122328|0.44444\n122329|0.5\n122330|0.65278\n122331|0.5\n122332|0.83333\n122333|0.51389\n122334|0.44444\n122335|0.625\n122336|0.61111\n122337|0.68056\n122338|0.69444\n122339|0.55556\n122340|0.44444\n122341|0.30556\n122342|0.5\n122343|0.44444\n122344|0.5\n122345|0.5\n122346|0.61111\n122347|0.5\n122348|0.55556\n122349|0.5\n122350|0.52778\n122351|0.5\n122352|0.75\n122353|0.47222\n122354|0.5\n122355|0.55556\n122356|0.66667\n122357|0.55556\n122358|0.56944\n122359|0.51389\n122360|0.59722\n122361|0.5\n122362|0.55556\n122363|0.63889\n122364|0.5\n122365|0.44444\n122366|0.40278\n122367|0.38889\n122368|0.51389\n122369|0.5\n122370|0.5\n122371|0.56944\n122372|0.59722\n122373|0.44444\n122374|0.40278\n122375|0.88889\n122376|0.54167\n122377|0.44444\n122378|0.63889\n122379|0.80556\n122380|0.5\n122381|0.5\n122382|0.55556\n122383|0.625\n122384|0.58333\n122385|0.59722\n122386|0.59722\n122387|0.41667\n122388|0.625\n122389|0.63889\n122390|0.52778\n122391|0.54167\n122392|0.58333\n122393|0.38889\n122394|0.45833\n122395|0.51389\n122396|0.51389\n122397|0.55556\n122398|0.65278\n122399|0.61111\n122400|0.54167\n122401|0.5\n122402|0.43056\n122403|0.5\n122404|0.51389\n122405|0.5\n122406|0.5\n122407|0.5\n122408|0.41667\n122409|0.52778\n122410|0.22222\n122411|0.52778\n122412|0.26389\n122413|0.47222\n122414|0.5\n122415|0.5\n122416|0.52778\n122417|0.52778\n122418|0.56944\n122419|0.5\n122420|0.61111\n122421|0.58333\n122422|0.55556\n122423|0.51389\n122424|0.61111\n122425|0.47222\n122426|0.5\n122427|0.48611\n122428|0.54167\n122429|0.5\n122430|0.55556\n122431|0.34722\n122432|0.22222\n122433|0.5\n122434|0.40278\n122435|0.59722\n122436|0.45833\n122437|0.30556\n122438|0.76389\n122439|0.38889\n122440|0.43056\n122441|0.34722\n122442|0.33333\n122443|0.47222\n122444|0.27778\n122445|0.083333\n122446|0.29167\n122447|0.43056\n122448|0.44444\n122449|0.23611\n122450|0.5\n122451|0.5\n122452|0.43056\n122453|0.61111\n122454|0.5\n122455|0.70833\n122456|0.5\n122457|0.5\n122458|0.40278\n122459|0.51389\n122460|0.72222\n122461|0.76389\n122462|0.65278\n122463|0.73611\n122464|0.73611\n122465|0.69444\n122466|0.66667\n122467|0.375\n122468|0.61111\n122469|0.59722\n122470|0.5\n122471|0.5\n122472|0.55556\n122473|0.11111\n122474|0.25\n122475|0.26389\n122476|0.375\n122477|0.055556\n122478|0.26389\n122479|0.34722\n122480|0.22222\n122481|0.59722\n122482|0.80556\n122483|0.5\n122484|0.66667\n122485|0.84722\n122486|0.69444\n122487|0.72222\n122488|0.77778\n122489|0.48611\n122490|0.625\n122491|0.625\n122492|0.5\n122493|0.5\n122494|0.5\n122495|0.63889\n122496|0.375\n122497|0.44444\n122498|0.5\n122499|0.70833\n122500|0.75\n122501|0.11111\n122502|0.70833\n122503|0.51389\n122504|0.58333\n122505|0.44444\n122506|0.36111\n122507|0.58333\n122508|0.27778\n122509|0.29167\n122510|0.31944\n122511|0.47222\n122512|0.47222\n122513|0.52778\n122514|0.5\n122515|0.48611\n122516|0.63889\n122517|0.5\n122518|0.27778\n122519|0.5\n122520|0.5\n122521|0.61111\n122522|0.52778\n122523|0.5\n122524|0.5\n122525|0.5\n122526|0.43056\n122527|0.5\n122528|0.61111\n122529|0.5\n122530|0.40278\n122531|0.40278\n122532|0.29167\n122533|0.65278\n122534|0.51389\n122535|0.41667\n122536|0.15278\n122537|0.27778\n122538|0.52778\n122539|0.59722\n122540|0.40278\n122541|0.33333\n122542|0.36111\n122543|0.44444\n122544|0.56944\n122545|0.52778\n122546|0.36111\n122547|0.47222\n122548|0.47222\n122549|0.65278\n122550|0.45833\n122551|0.41667\n122552|0.5\n122553|0.52778\n122554|0.65278\n122555|0.54167\n122556|0.25\n122557|0.30556\n122558|0.013889\n122559|0.51389\n122560|0.61111\n122561|0.36111\n122562|0.25\n122563|0.52778\n122564|0.19444\n122565|0.51389\n122566|0.40278\n122567|0.54167\n122568|0.5\n122569|0.58333\n122570|0.125\n122571|0.069444\n122572|0.041667\n122573|0.68056\n122574|0.38889\n122575|0.5\n122576|0.29167\n122577|0.48611\n122578|0.5\n122579|0.61111\n122580|0.59722\n122581|0.47222\n122582|0.52778\n122583|0.5\n122584|0.15278\n122585|0.75\n122586|0.625\n122587|0.55556\n122588|0.30556\n122589|0.5\n122590|0.77778\n122591|0.79167\n122592|0.75\n122593|0.88889\n122594|0.88889\n122595|0.88889\n122596|0.95833\n122597|0.79167\n122598|0.91667\n122599|0.63889\n122600|0.5\n122601|0.5\n122602|0.55556\n122603|0.59722\n122604|0.54167\n122605|0.56944\n122606|0.5\n122607|0.5\n122608|0.43056\n122609|0.5\n122610|0.63889\n122611|0.56944\n122612|0.5\n122613|0.27778\n122614|0.75\n122615|0.61111\n122616|0.72222\n122617|0.5\n122618|0.55556\n122619|0.61111\n122620|0.66667\n122621|0.75\n122622|0.55556\n122623|0.58333\n122624|0.61111\n122625|0.56944\n122626|0.52778\n122627|0.54167\n122628|0.81944\n122629|0.66667\n122630|0.66667\n122631|0.88889\n122632|0.81944\n122633|0.69444\n122634|0.59722\n122635|0.29167\n122636|0.51389\n122637|0.56944\n122638|0.77778\n122639|0.79167\n122640|0.51389\n122641|0.54167\n122642|0.5\n122643|0.375\n122644|0.5\n122645|0.54167\n122646|0.5\n122647|0.5\n122648|0.5\n122649|0.5\n122650|0.5\n122651|0.5\n122652|0.41667\n122653|0.43056\n122654|0.875\n122655|0.30556\n122656|0.16667\n122657|0.16667\n122658|0.69444\n122659|0.45833\n122660|0.68056\n122661|0.63889\n122662|0.51389\n122663|0.58333\n122664|0.61111\n122665|0.36111\n122666|0.5\n122667|0.55556\n122668|0.5\n122669|0.5\n122670|0.41667\n122671|0.41667\n122672|0.48611\n122673|0.63889\n122674|0.44444\n122675|0.11111\n122676|0.5\n122677|0.27778\n122678|0.5\n122679|0.54167\n122680|0.55556\n122681|0.44444\n122682|0.44444\n122683|0.34722\n122684|0.43056\n122685|0.30556\n122686|0.375\n122687|0.38889\n122688|0.52778\n122689|0.63889\n122690|0.54167\n122691|0.5\n122692|0.5\n122693|0.5\n122694|0.44444\n122695|0.47222\n122696|0.5\n122697|0.58333\n122698|0.31944\n122699|0.48611\n122700|0.5\n122701|0.5\n122702|0.58333\n122703|0.48611\n122704|0.54167\n122705|0.44444\n122706|0.5\n122707|0.45833\n122708|0.40278\n122709|0.56944\n122710|0.31944\n122711|0.5\n122712|0.56944\n122713|0.625\n122714|0.41667\n122715|0.54167\n122716|0.75\n122717|0.5\n122718|0.59722\n122719|0.69444\n122720|0.47222\n122721|0.29167\n122722|0.44444\n122723|0.5\n122724|0.44444\n122725|0.54167\n122726|0.48611\n122727|0.51389\n122728|0.30556\n122729|0.5\n122730|0.5\n122731|0.13889\n122732|0.5\n122733|0.38889\n122734|0.44444\n122735|0.5\n122736|0.55556\n122737|0.43056\n122738|0.69444\n122739|0.38889\n122740|0.54167\n122741|0.47222\n122742|0.15278\n122743|0.11111\n122744|0.22222\n122745|0.083333\n122746|0.55556\n122747|0.47222\n122748|0.65278\n122749|0.5\n122750|0.38889\n122751|0.15278\n122752|0.70833\n122753|0.69444\n122754|0.51389\n122755|0.5\n122756|0.13889\n122757|0.29167\n122758|0.41667\n122759|0.26389\n122760|0.45833\n122761|0.375\n122762|0.75\n122763|0.63889\n122764|0.77778\n122765|0.33333\n122766|0.54167\n122767|0.5\n122768|0.5\n122769|0.66667\n122770|0.27778\n122771|0.80556\n122772|0.56944\n122773|0.055556\n122774|0.22222\n122775|0.11111\n122776|0.5\n122777|0.51389\n122778|0.20833\n122779|0.5\n122780|0.76389\n122781|0.36111\n122782|0.43056\n122783|0.38889\n122784|0.11111\n122785|0.16667\n122786|0.5\n122787|0.52778\n122788|0.55556\n122789|0.55556\n122790|0.68056\n122791|0.61111\n122792|0.69444\n122793|0.52778\n122794|0.75\n122795|0.84722\n122796|0.69444\n122797|0.76389\n122798|0.875\n122799|0.75\n122800|0.55556\n122801|0.40278\n122802|0.34722\n122803|0.5\n122804|0.34722\n122805|0.33333\n122806|0.44444\n122807|0.5\n122808|0.5\n122809|0.81944\n122810|0.56944\n122811|0.44444\n122812|0.80556\n122813|0.58333\n122814|0.5\n122815|0.5\n122816|0.52778\n122817|0.33333\n122818|0.41667\n122819|0.86111\n122820|0.84722\n122821|0.63889\n122822|0.63889\n122823|0.69444\n122824|0.43056\n122825|0.69444\n122826|0.69444\n122827|0.77778\n122828|0.66667\n122829|0.58333\n122830|0.72222\n122831|0.86111\n122832|0.69444\n122833|0.5\n122834|0.31944\n122835|0.51389\n122836|0.5\n122837|0.15278\n122838|0.5\n122839|0.5\n122840|0.51389\n122841|0.47222\n122842|0.5\n122843|0.38889\n122844|0.5\n122845|0.5\n122846|0.5\n122847|0.5\n122848|0.5\n122849|0.5\n122850|0.5\n122851|0.5\n122852|0.61111\n122853|0.5\n122854|0.13889\n122855|0.55556\n122856|0.33333\n122857|0.76389\n122858|0.5\n122859|0.47222\n122860|0.56944\n122861|0.5\n122862|0.5\n122863|0.5\n122864|0.5\n122865|0.5\n122866|0.5\n122867|0.33333\n122868|0.52778\n122869|0.5\n122870|0.5\n122871|0.68056\n122872|0.5\n122873|0.54167\n122874|0.5\n122875|0.51389\n122876|0.5\n122877|0.59722\n122878|0.5\n122879|0.59722\n122880|0.47222\n122881|0.41667\n122882|0.51389\n122883|0.54167\n122884|0.47222\n122885|0.25\n122886|0.29167\n122887|0.61111\n122888|0.29167\n122889|0.5\n122890|0.16667\n122891|0.48611\n122892|0.69444\n122893|0.63889\n122894|0.65278\n122895|0.77778\n122896|0.43056\n122897|0.5\n122898|0.44444\n122899|0.47222\n122900|0.55556\n122901|0.625\n122902|0.20833\n122903|0.61111\n122904|0.5\n122905|0.72222\n122906|0.55556\n122907|0.5\n122908|0.5\n122909|0.43056\n122910|0.55556\n122911|0.80556\n122912|0.625\n122913|0.75\n122914|0.44444\n122915|0.61111\n122916|0.55556\n122917|0.22222\n122918|0.29167\n122919|0.097222\n122920|0.65278\n122921|0.34722\n122922|0.59722\n122923|0.30556\n122924|0.75\n122925|0.44444\n122926|0.5\n122927|0.5\n122928|0.5\n122929|0.54167\n122930|0.5\n122931|0.44444\n122932|0.75\n122933|0.91667\n122934|0.5\n122935|0.55556\n122936|0.45833\n122937|0.61111\n122938|0.73611\n122939|0.75\n122940|0.51389\n122941|0.5\n122942|0.27778\n122943|0.375\n122944|0.47222\n122945|0.86111\n122946|0.29167\n122947|0.29167\n122948|0.52778\n122949|0.55556\n122950|0.51389\n122951|0.47222\n122952|0.5\n122953|0.5\n122954|0.59722\n122955|0.5\n122956|0.58333\n122957|0.55556\n122958|0.55556\n122959|0.5\n122960|0.5\n122961|0.625\n122962|0.56944\n122963|0.47222\n122964|0.5\n122965|0.5\n122966|0.40278\n122967|0.72222\n122968|0.45833\n122969|0.5\n122970|0.44444\n122971|0.5\n122972|0.625\n122973|0.45833\n122974|0.56944\n122975|0.51389\n122976|0.5\n122977|0.5\n122978|0.65278\n122979|0.68056\n122980|0.16667\n122981|0.5\n122982|0.41667\n122983|0.56944\n122984|0.40278\n122985|0.47222\n122986|0.47222\n122987|0.31944\n122988|0.58333\n122989|0.375\n122990|0.5\n122991|0.5\n122992|0.5\n122993|0.41667\n122994|0.43056\n122995|0.27778\n122996|0.51389\n122997|0.38889\n122998|0.61111\n122999|0.58333\n123000|0.94444\n123001|0.5\n123002|0.55556\n123003|0.5\n123004|0.5\n123005|0.58333\n123006|0.54167\n123007|0.5\n123008|0.69444\n123009|0.5\n123010|0.5\n123011|0.55556\n123012|0.5\n123013|0.5\n123014|0.55556\n123015|0.40278\n123016|0.19444\n123017|0.52778\n123018|0.69444\n123019|0.51389\n123020|0.51389\n123021|0.54167\n123022|0.61111\n123023|0.5\n123024|0.66667\n123025|0.54167\n123026|0.5\n123027|0.48611\n123028|0.55556\n123029|0.58333\n123030|0.18056\n123031|0.77778\n123032|0.51389\n123033|0.5\n123034|0.70833\n123035|0.43056\n123036|0.77778\n123037|0.55556\n123038|0.52778\n123039|0.52778\n123040|0.5\n123041|0.5\n123042|0.70833\n123043|0.5\n123044|0.68056\n123045|0.88889\n123046|0.5\n123047|0.52778\n123048|0.63889\n123049|0.61111\n123050|0.5\n123051|0.22222\n123052|0.51389\n123053|0.5\n123054|0.5\n123055|0.52778\n123056|0.44444\n123057|0.29167\n123058|0.5\n123059|0.23611\n123060|0.5\n123061|0.51389\n123062|0.5\n123063|0.5\n123064|0.51389\n123065|0.5\n123066|0.31944\n123067|0.88889\n123068|0.5\n123069|0.83333\n123070|0.5\n123071|0.5\n123072|0.23611\n123073|0.52778\n123074|0.44444\n123075|0.20833\n123076|0.5\n123077|0.66667\n123078|0.65278\n123079|0.48611\n123080|0.5\n123081|0.45833\n123082|0.40278\n123083|0.5\n123084|0.5\n123085|0.31944\n123086|0.5\n123087|0.375\n123088|0.33333\n123089|0.51389\n123090|0.44444\n123091|0.5\n123092|0.66667\n123093|0.5\n123094|0.54167\n123095|0.55556\n123096|0.47222\n123097|0.375\n123098|0.55556\n123099|0.43056\n123100|0.51389\n123101|0.70833\n123102|0.48611\n123103|0.5\n123104|0.58333\n123105|0.54167\n123106|0.375\n123107|0.41667\n123108|0.38889\n123109|0.73611\n123110|0.61111\n123111|0.44444\n123112|0.5\n123113|0.5\n123114|0.5\n123115|0.36111\n123116|0.66667\n123117|0.22222\n123118|0.5\n123119|0.65278\n123120|0.5\n123121|0.58333\n123122|0.5\n123123|0.5\n123124|0.5\n123125|0.63889\n123126|0.41667\n123127|0.66667\n123128|0.5\n123129|0.5\n123130|0.48611\n123131|0.55556\n123132|0.48611\n123133|0.5\n123134|0.33333\n123135|0.77778\n123136|0.5\n123137|0.51389\n123138|0.30556\n123139|0.43056\n123140|0.44444\n123141|0.41667\n123142|0.70833\n123143|0.55556\n123144|0.51389\n123145|0.43056\n123146|0.61111\n123147|0.33333\n123148|0.66667\n123149|0.56944\n123150|0.5\n123151|0.83333\n123152|0.40278\n123153|0.55556\n123154|0.55556\n123155|0.51389\n123156|0.61111\n123157|0.5\n123158|0.5\n123159|0.61111\n123160|0.5\n123161|0.5\n123162|0.63889\n123163|0.73611\n123164|0.51389\n123165|0.69444\n123166|0.47222\n123167|0.41667\n123168|0.77778\n123169|0.5\n123170|0.48611\n123171|0.5\n123172|0.51389\n123173|0.375\n123174|0.5\n123175|0.5\n123176|0.63889\n123177|0.5\n123178|0.45833\n123179|0.5\n123180|0.47222\n123181|0.58333\n123182|0.30556\n123183|0.51389\n123184|0.5\n123185|0.61111\n123186|0.61111\n123187|0.76389\n123188|0.75\n123189|0.5\n123190|0.52778\n123191|0.45833\n123192|0.61111\n123193|0.51389\n123194|0.30556\n123195|0.51389\n123196|0.5\n123197|0.19444\n123198|0.38889\n123199|0.63889\n123200|0.52778\n123201|0.51389\n123202|0.63889\n123203|0.5\n123204|0.5\n123205|0.51389\n123206|0.80556\n123207|0.52778\n123208|0.29167\n123209|0.45833\n123210|0.5\n123211|0.65278\n123212|0.51389\n123213|0.5\n123214|0.58333\n123215|0.11111\n123216|0.47222\n123217|0.55556\n123218|0.48611\n123219|0.375\n123220|0.47222\n123221|0.84722\n123222|0.29167\n123223|0.72222\n123224|0.5\n123225|0.30556\n123226|0.52778\n123227|0.52778\n123228|0.55556\n123229|0.54167\n123230|0.5\n123231|0.48611\n123232|0.70833\n123233|0.56944\n123234|0.5\n123235|0.55556\n123236|0.59722\n123237|0.26389\n123238|0.51389\n123239|0.38889\n123240|0.51389\n123241|0.5\n123242|0.5\n123243|0.66667\n123244|0.5\n123245|0.30556\n123246|0.55556\n123247|0.55556\n123248|0.23611\n123249|0.77778\n123250|0.5\n123251|0.63889\n123252|0.40278\n123253|0.5\n123254|0.5\n123255|0.45833\n123256|0.81944\n123257|0.69444\n123258|0.625\n123259|0.59722\n123260|0.55556\n123261|0.45833\n123262|0.5\n123263|0.55556\n123264|0.5\n123265|0.55556\n123266|0.59722\n123267|0.44444\n123268|0.48611\n123269|0.61111\n123270|0.27778\n123271|0.36111\n123272|0.027778\n123273|0.069444\n123274|0.30556\n123275|0.40278\n123276|0.22222\n123277|0.11111\n123278|0.25\n123279|0.47222\n123280|0.48611\n123281|0.47222\n123282|0.38889\n123283|0.33333\n123284|0.5\n123285|0.36111\n123286|0.25\n123287|0.20833\n123288|0.20833\n123289|0.29167\n123290|0.40278\n123291|0.22222\n123292|0.15278\n123293|0.20833\n123294|0.40278\n123295|0.40278\n123296|0.27778\n123297|0.38889\n123298|0.43056\n123299|0.33333\n123300|0.38889\n123301|0.80556\n123302|0.22222\n123303|0.26389\n123304|0.055556\n123305|0.40278\n123306|0.47222\n123307|0.45833\n123308|0.41667\n123309|0.83333\n123310|0.90278\n123311|0.44444\n123312|0.23611\n123313|0.40278\n123314|0.63889\n123315|0.55556\n123316|0.63889\n123317|0.73611\n123318|0.44444\n123319|0.5\n123320|0.70833\n123321|0.70833\n123322|0.66667\n123323|0.81944\n123324|0.77778\n123325|0.5\n123326|0.38889\n123327|0.5\n123328|0.5\n123329|0.68056\n123330|0.59722\n123331|0.51389\n123332|0.59722\n123333|0.47222\n123334|0.40278\n123335|0.5\n123336|0.5\n123337|0.44444\n123338|0.54167\n123339|0.58333\n123340|0.23611\n123341|0.27778\n123342|0.5\n123343|0.13889\n123344|0.36111\n123345|0.36111\n123346|0.54167\n123347|0.29167\n123348|0.27778\n123349|0.44444\n123350|0.47222\n123351|0.34722\n123352|0.11111\n123353|0.40278\n123354|0.44444\n123355|0.45833\n123356|0.47222\n123357|0.27778\n123358|0.5\n123359|0.36111\n123360|0.5\n123361|0.45833\n123362|0.61111\n123363|0.47222\n123364|0.63889\n123365|0.55556\n123366|0.59722\n123367|0.33333\n123368|0.55556\n123369|0.31944\n123370|0.5\n123371|0.45833\n123372|0.43056\n123373|0.47222\n123374|0.41667\n123375|0.5\n123376|0.5\n123377|0.43056\n123378|0.52778\n123379|0.69444\n123380|0.44444\n123381|0.76389\n123382|0.5\n123383|0.5\n123384|0.5\n123385|0.65278\n123386|0.52778\n123387|0.65278\n123388|0.5\n123389|0.65278\n123390|0.47222\n123391|0.38889\n123392|0.59722\n123393|0.59722\n123394|0.55556\n123395|0.59722\n123396|0.5\n123397|0.55556\n123398|0.44444\n123399|0.23611\n123400|0.72222\n123401|0.61111\n123402|0.5\n123403|0.47222\n123404|0.66667\n123405|0.59722\n123406|0.375\n123407|0.52778\n123408|0.069444\n123409|0.44444\n123410|0.38889\n123411|0.52778\n123412|0.51389\n123413|0.56944\n123414|0.5\n123415|0.5\n123416|0.5\n123417|0.5\n123418|0.5\n123419|0.81944\n123420|0.52778\n123421|0.79167\n123422|0.5\n123423|0.23611\n123424|0.11111\n123425|0.45833\n123426|0.16667\n123427|0.5\n123428|0.56944\n123429|0.66667\n123430|0.61111\n123431|0.55556\n123432|0.55556\n123433|0.625\n123434|0.13889\n123435|0.56944\n123436|0.83333\n123437|0.54167\n123438|0.79167\n123439|0.54167\n123440|0.34722\n123441|0.33333\n123442|0.16667\n123443|0.44444\n123444|0.68056\n123445|0.52778\n123446|0.27778\n123447|0.44444\n123448|0.44444\n123449|0.5\n123450|0.69444\n123451|0.5\n123452|0.22222\n123453|0.29167\n123454|0.125\n123455|0.65278\n123456|0.55556\n123457|0.61111\n123458|0.65278\n123459|0.65278\n123460|0.63889\n123461|0.79167\n123462|0.65278\n123463|0.63889\n123464|0.27778\n123465|0.5\n123466|0.66667\n123467|0.81944\n123468|0.56944\n123469|0.61111\n123470|0.54167\n123471|0.70833\n123472|0.72222\n123473|0.61111\n123474|0.77778\n123475|0.81944\n123476|0.83333\n123477|0.51389\n123478|0.84722\n123479|0.79167\n123480|0.58333\n123481|0.47222\n123482|0.625\n123483|0.5\n123484|0.55556\n123485|0.5\n123486|0.5\n123487|0.15278\n123488|0.5\n123489|0.5\n123490|0.52778\n123491|0.5\n123492|0.5\n123493|0.66667\n123494|0.375\n123495|0.51389\n123496|0.5\n123497|0.27778\n123498|0.54167\n123499|0.5\n123500|0.5\n123501|0.51389\n123502|0.79167\n123503|0.52778\n123504|0.58333\n123505|0.44444\n123506|0.29167\n123507|0.55556\n123508|0.65278\n123509|0.51389\n123510|0.31944\n123511|0.66667\n123512|0.81944\n123513|0.63889\n123514|0.625\n123515|0.73611\n123516|0.625\n123517|0.68056\n123518|0.63889\n123519|0.5\n123520|0.54167\n123521|0.5\n123522|0.48611\n123523|0.58333\n123524|0.76389\n123525|0.59722\n123526|0.5\n123527|0.59722\n123528|0.5\n123529|0.56944\n123530|0.5\n123531|0.40278\n123532|0.66667\n123533|0.63889\n123534|0.68056\n123535|0.55556\n123536|0.5\n123537|0.30556\n123538|0.48611\n123539|0.30556\n123540|0.58333\n123541|0.069444\n123542|0.83333\n123543|0.38889\n123544|0.79167\n123545|0.69444\n123546|0.63889\n123547|0.83333\n123548|0.23611\n123549|0.44444\n123550|0.44444\n123551|0.40278\n123552|0.72222\n123553|0.63889\n123554|0.38889\n123555|0.44444\n123556|0.56944\n123557|0.72222\n123558|0.44444\n123559|0.20833\n123560|0.48611\n123561|0.31944\n123562|0.48611\n123563|0.61111\n123564|0.27778\n123565|0.55556\n123566|0.5\n123567|0.26389\n123568|0.54167\n123569|0.5\n123570|0.73611\n123571|0.48611\n123572|0.56944\n123573|0.81944\n123574|0.5\n123575|0.38889\n123576|0.56944\n123577|0.81944\n123578|0.51389\n123579|0.26389\n123580|0.65278\n123581|0.625\n123582|0.56944\n123583|0.63889\n123584|0.5\n123585|0.55556\n123586|0.68056\n123587|0.5\n123588|0.5\n123589|0.65278\n123590|0.58333\n123591|0.41667\n123592|0.58333\n123593|0.54167\n123594|0.51389\n123595|0.59722\n123596|0.54167\n123597|0.58333\n123598|0.51389\n123599|0.48611\n123600|0.5\n123601|0.51389\n123602|0.52778\n123603|0.5\n123604|0.56944\n123605|0.45833\n123606|0.5\n123607|0.59722\n123608|0.41667\n123609|0.30556\n123610|0.5\n123611|0.5\n123612|0.29167\n123613|0.5\n123614|0.55556\n123615|0.5\n123616|0.55556\n123617|0.20833\n123618|0.27778\n123619|0.65278\n123620|0.59722\n123621|0.68056\n123622|0.79167\n123623|0.76389\n123624|0.75\n123625|0.73611\n123626|0.84722\n123627|0.63889\n123628|0.73611\n123629|0.83333\n123630|0.79167\n123631|0.5\n123632|0.51389\n123633|0.59722\n123634|0.5\n123635|0.56944\n123636|0.5\n123637|0.55556\n123638|0.11111\n123639|0.625\n123640|0.77778\n123641|0.68056\n123642|0.5\n123643|0.83333\n123644|0.66667\n123645|0.5\n123646|0.81944\n123647|0.91667\n123648|0.65278\n123649|0.5\n123650|0.5\n123651|0.55556\n123652|0.5\n123653|0.54167\n123654|0.5\n123655|0.51389\n123656|0.75\n123657|0.5\n123658|0.5\n123659|0.375\n123660|0.26389\n123661|0.625\n123662|0.61111\n123663|0.31944\n123664|0.25\n123665|0.41667\n123666|0.91667\n123667|0.33333\n123668|0.47222\n123669|0.29167\n123670|0.20833\n123671|0.65278\n123672|0.54167\n123673|0.5\n123674|0.52778\n123675|0.83333\n123676|0.72222\n123677|0.51389\n123678|0.58333\n123679|0.43056\n123680|0.5\n123681|0.61111\n123682|0.81944\n123683|0.54167\n123684|0.61111\n123685|0.51389\n123686|0.54167\n123687|0.625\n123688|0.52778\n123689|0.51389\n123690|0.58333\n123691|0.38889\n123692|0.93056\n123693|0.77778\n123694|0.81944\n123695|0.625\n123696|0.43056\n123697|0.55556\n123698|0.55556\n123699|0.56944\n123700|0.72222\n123701|0.5\n123702|0.73611\n123703|0.72222\n123704|0.61111\n123705|0.56944\n123706|0.61111\n123707|0.625\n123708|0.76389\n123709|0.20833\n123710|0.125\n123711|0.43056\n123712|0.47222\n123713|0.5\n123714|0.81944\n123715|0.88889\n123716|0.38889\n123717|0.625\n123718|0.83333\n123719|0.56944\n123720|0.66667\n123721|0.5\n123722|0.52778\n123723|0.375\n123724|0.30556\n123725|0.45833\n123726|0.73611\n123727|0.72222\n123728|0.52778\n123729|0.40278\n123730|0.26389\n123731|0.69444\n123732|0.72222\n123733|0.56944\n123734|0.72222\n123735|0.63889\n123736|0.55556\n123737|0.72222\n123738|0.83333\n123739|0.77778\n123740|0.77778\n123741|0.33333\n123742|0.27778\n123743|0.77778\n123744|0.29167\n123745|0.27778\n123746|0.88889\n123747|0.79167\n123748|0.83333\n123749|0.625\n123750|0.11111\n123751|0.34722\n123752|0.625\n123753|0.79167\n123754|0.81944\n123755|0.5\n123756|0.72222\n123757|0.76389\n123758|0.70833\n123759|0.63889\n123760|0.63889\n123761|0.72222\n123762|0.90278\n123763|0.66667\n123764|0.80556\n123765|0.83333\n123766|0.66667\n123767|0.65278\n123768|0.88889\n123769|0.72222\n123770|0.77778\n123771|0.86111\n123772|0.055556\n123773|0.11111\n123774|0.44444\n123775|0.5\n123776|0.625\n123777|0.43056\n123778|0.30556\n123779|0.055556\n123780|0.15278\n123781|0.055556\n123782|0.72222\n123783|0.5\n123784|0.33333\n123785|0.22222\n123786|0.125\n123787|0.77778\n123788|0.70833\n123789|0.86111\n123790|0.77778\n123791|0.36111\n123792|0.56944\n123793|0.88889\n123794|0.77778\n123795|0.72222\n123796|0.625\n123797|0.61111\n123798|0.59722\n123799|0.65278\n123800|0.22222\n123801|0.26389\n123802|0.70833\n123803|0.69444\n123804|0.13889\n123805|0.23611\n123806|0.73611\n123807|0.72222\n123808|0.63889\n123809|0.83333\n123810|0.77778\n123811|0.66667\n123812|0.51389\n123813|0.77778\n123814|0.5\n123815|0.5\n123816|0.79167\n123817|0.91667\n123818|0.77778\n123819|0.18056\n123820|0.27778\n123821|0.70833\n123822|0.83333\n123823|0.80556\n123824|0.45833\n123825|0.59722\n123826|0.76389\n123827|0.77778\n123828|0.44444\n123829|0.72222\n123830|0.72222\n123831|0.47222\n123832|0.59722\n123833|0.45833\n123834|0.77778\n123835|0.88889\n123836|0.72222\n123837|0.40278\n123838|0.36111\n123839|0.77778\n123840|0.83333\n123841|0.69444\n123842|0.80556\n123843|0.63889\n123844|0.76389\n123845|0.88889\n123846|0.33333\n123847|0.36111\n123848|0.29167\n123849|0.36111\n123850|0.72222\n123851|0.90278\n123852|0.875\n123853|0.083333\n123854|0.13889\n123855|0.73611\n123856|0.34722\n123857|0.22222\n123858|0.875\n123859|0.88889\n123860|0.27778\n123861|0.083333\n123862|0.52778\n123863|0.52778\n123864|0.51389\n123865|0.65278\n123866|0.55556\n123867|0.70833\n123868|0.77778\n123869|0.15278\n123870|0.30556\n123871|0.69444\n123872|0.72222\n123873|0.56944\n123874|0.58333\n123875|0.77778\n123876|0.48611\n123877|0.56944\n123878|0.25\n123879|0.16667\n123880|0.22222\n123881|0.38889\n123882|0.34722\n123883|0.48611\n123884|0.31944\n123885|0.22222\n123886|0.36111\n123887|0.13889\n123888|0.30556\n123889|0.11111\n123890|0.68056\n123891|0.72222\n123892|0.69444\n123893|0.79167\n123894|0.31944\n123895|0.43056\n123896|0.44444\n123897|0.36111\n123898|0.69444\n123899|0.79167\n123900|0.27778\n123901|0.30556\n123902|0.59722\n123903|0.54167\n123904|0.70833\n123905|0.72222\n123906|0.875\n123907|0.40278\n123908|0.79167\n123909|0.88889\n123910|0.875\n123911|0.70833\n123912|0.72222\n123913|0.73611\n123914|0.69444\n123915|0.68056\n123916|0.75\n123917|0.69444\n123918|0.77778\n123919|0.625\n123920|0.375\n123921|0.72222\n123922|0.52778\n123923|0.27778\n123924|0.125\n123925|0.625\n123926|0.56944\n123927|0.55556\n123928|0.80556\n123929|0.80556\n123930|0.069444\n123931|0.36111\n123932|0.58333\n123933|0.29167\n123934|0.18056\n123935|0.5\n123936|0.43056\n123937|0.15278\n123938|0.25\n123939|0.31944\n123940|0.27778\n123941|0.51389\n123942|0.44444\n123943|0.33333\n123944|0.88889\n123945|0.72222\n123946|0.68056\n123947|0.5\n123948|0.55556\n123949|0.5\n123950|0.48611\n123951|0.54167\n123952|0.47222\n123953|0.5\n123954|0.51389\n123955|0.18056\n123956|0.26389\n123957|0.55556\n123958|0.22222\n123959|0.027778\n123960|0.70833\n123961|0.70833\n123962|0.81944\n123963|0.66667\n123964|0.5\n123965|0.80556\n123966|0.47222\n123967|0.65278\n123968|0.80556\n123969|0.72222\n123970|0.36111\n123971|0.40278\n123972|0.31944\n123973|0.55556\n123974|0.84722\n123975|0.83333\n123976|0.55556\n123977|0.61111\n123978|0.45833\n123979|0.58333\n123980|0.22222\n123981|0.5\n123982|0.88889\n123983|0.81944\n123984|0.38889\n123985|0.375\n123986|0.66667\n123987|0.77778\n123988|0.72222\n123989|0.45833\n123990|0.5\n123991|0.55556\n123992|0.58333\n123993|0.61111\n123994|0.18056\n123995|0.125\n123996|0.29167\n123997|0.41667\n123998|0.55556\n123999|0.61111\n124000|0.51389\n124001|0.19444\n124002|0.65278\n124003|0.58333\n124004|0.19444\n124005|0.34722\n124006|0.23611\n124007|0.13889\n124008|0.33333\n124009|0.52778\n124010|0.625\n124011|0.75\n124012|0.18056\n124013|0.68056\n124014|0.52778\n124015|0.68056\n124016|0.55556\n124017|0.69444\n124018|0.77778\n124019|0.29167\n124020|0.36111\n124021|0.33333\n124022|0.54167\n124023|0.16667\n124024|0.54167\n124025|0.125\n124026|0.31944\n124027|0.30556\n124028|0.33333\n124029|0.5\n124030|0.5\n124031|0.29167\n124032|0.76389\n124033|0.73611\n124034|0.76389\n124035|0.68056\n124036|0.72222\n124037|0.875\n124038|0.47222\n124039|0.76389\n124040|0.73611\n124041|0.86111\n124042|0.72222\n124043|0.73611\n124044|0.77778\n124045|0.47222\n124046|0.38889\n124047|0.40278\n124048|0.69444\n124049|0.52778\n124050|0.51389\n124051|0.31944\n124052|0.25\n124053|0.51389\n124054|0.52778\n124055|0.59722\n124056|0.72222\n124057|0.25\n124058|0.25\n124059|0.29167\n124060|0.34722\n124061|0.15278\n124062|0.18056\n124063|0.59722\n124064|0.625\n124065|0.93056\n124066|0.91667\n124067|0.88889\n124068|0.625\n124069|0.86111\n124070|0.73611\n124071|0.125\n124072|0.36111\n124073|0.52778\n124074|0.69444\n124075|0.43056\n124076|0.58333\n124077|0.94444\n124078|0.59722\n124079|0.70833\n124080|0.47222\n124081|0.54167\n124082|0.27778\n124083|0.16667\n124084|0.91667\n124085|0.63889\n124086|0.75\n124087|0.88889\n124088|0.88889\n124089|0.45833\n124090|0.45833\n124091|0.22222\n124092|0.86111\n124093|0.69444\n124094|0.48611\n124095|0.51389\n124096|0.81944\n124097|0.69444\n124098|0.73611\n124099|0.75\n124100|0.625\n124101|0.61111\n124102|0.27778\n124103|0.63889\n124104|0.11111\n124105|0.63889\n124106|0.625\n124107|0.83333\n124108|0.77778\n124109|0.38889\n124110|0.38889\n124111|0.5\n124112|0.58333\n124113|0.55556\n124114|0.38889\n124115|0.375\n124116|0.26389\n124117|0.47222\n124118|0.41667\n124119|0.19444\n124120|0.20833\n124121|0.055556\n124122|0.083333\n124123|0.41667\n124124|0.38889\n124125|0.375\n124126|0.90278\n124127|0.83333\n124128|0.22222\n124129|0.38889\n124130|0.16667\n124131|0.44444\n124132|0.38889\n124133|0\n124134|0.58333\n124135|0.54167\n124136|0.5\n124137|0.81944\n124138|0.48611\n124139|0.51389\n124140|0.5\n124141|0.38889\n124142|0.5\n124143|0.51389\n124144|0.51389\n124145|0.13889\n124146|0.29167\n124147|0.5\n124148|0.19444\n124149|0.70833\n124150|0.38889\n124151|0.54167\n124152|0.38889\n124153|0.26389\n124154|0.66667\n124155|0.66667\n124156|0.75\n124157|0.70833\n124158|0.76389\n124159|0.47222\n124160|0.30556\n124161|0.19444\n124162|0.31944\n124163|0.47222\n124164|0.81944\n124165|0.72222\n124166|0.68056\n124167|0.43056\n124168|0.43056\n124169|0.5\n124170|0.29167\n124171|0.54167\n124172|0.80556\n124173|0.72222\n124174|0.56944\n124175|0.40278\n124176|0.5\n124177|0.52778\n124178|0.5\n124179|0.51389\n124180|0.097222\n124181|0.11111\n124182|0.30556\n124183|0.73611\n124184|0.63889\n124185|0.5\n124186|0.55556\n124187|0.66667\n124188|0.45833\n124189|0.55556\n124190|0.63889\n124191|0.5\n124192|0.29167\n124193|0.58333\n124194|0.44444\n124195|0.23611\n124196|0.55556\n124197|0.5\n124198|0.68056\n124199|0.51389\n124200|0.54167\n124201|0.81944\n124202|0.76389\n124203|0.16667\n124204|0.43056\n124205|0.61111\n124206|0.58333\n124207|0.31944\n124208|0.26389\n124209|0.55556\n124210|0.69444\n124211|0.23611\n124212|0.27778\n124213|0.20833\n124214|0.56944\n124215|0.5\n124216|0.58333\n124217|0.34722\n124218|0.23611\n124219|0.76389\n124220|0.055556\n124221|0.097222\n124222|0.47222\n124223|0.26389\n124224|0.34722\n124225|0.19444\n124226|0.22222\n124227|0.66667\n124228|0.27778\n124229|0.29167\n124230|0.30556\n124231|0.25\n124232|0.19444\n124233|0.79167\n124234|0.59722\n124235|0.43056\n124236|0.65278\n124237|0.59722\n124238|0.375\n124239|0.79167\n124240|0.83333\n124241|0.81944\n124242|0.81944\n124243|0.40278\n124244|0.76389\n124245|0.65278\n124246|0.18056\n124247|0.13889\n124248|0.54167\n124249|0.76389\n124250|0.18056\n124251|0.51389\n124252|0.48611\n124253|0.61111\n124254|0.73611\n124255|0.54167\n124256|0.375\n124257|0.61111\n124258|0.20833\n124259|0.18056\n124260|0.27778\n124261|0.16667\n124262|0.5\n124263|0.5\n124264|0.40278\n124265|0.45833\n124266|0.27778\n124267|0.36111\n124268|0.30556\n124269|0.30556\n124270|0.40278\n124271|0.55556\n124272|0.16667\n124273|0.30556\n124274|0.20833\n124275|0.125\n124276|0.41667\n124277|0.40278\n124278|0.30556\n124279|0.63889\n124280|0.61111\n124281|0.625\n124282|0.48611\n124283|0.25\n124284|0.55556\n124285|0.55556\n124286|0.36111\n124287|0.5\n124288|0.38889\n124289|0.33333\n124290|0.55556\n124291|0.26389\n124292|0.41667\n124293|0.29167\n124294|0.41667\n124295|0.25\n124296|0.48611\n124297|0.70833\n124298|0.76389\n124299|0.26389\n124300|0.27778\n124301|0.375\n124302|0.26389\n124303|0.27778\n124304|0.25\n124305|0.41667\n124306|0.20833\n124307|0.36111\n124308|0.30556\n124309|0.31944\n124310|0.36111\n124311|0.23611\n124312|0.18056\n124313|0.26389\n124314|0.027778\n124315|0.18056\n124316|0.51389\n124317|0.44444\n124318|0.5\n124319|0.5\n124320|0.43056\n124321|0.5\n124322|0.055556\n124323|0.72222\n124324|0.41667\n124325|0.43056\n124326|0.58333\n124327|0.52778\n124328|0.38889\n124329|0.55556\n124330|0.65278\n124331|0.44444\n124332|0.41667\n124333|0.18056\n124334|0.59722\n124335|0.44444\n124336|0.48611\n124337|0.47222\n124338|0.54167\n124339|0.66667\n124340|0.75\n124341|0.54167\n124342|0.26389\n124343|0.27778\n124344|0.40278\n124345|0.5\n124346|0.75\n124347|0.73611\n124348|0.38889\n124349|0.44444\n124350|0.40278\n124351|0.19444\n124352|0.11111\n124353|0.625\n124354|0.45833\n124355|0.48611\n124356|0.40278\n124357|0.375\n124358|0.44444\n124359|0.23611\n124360|0.23611\n124361|0.33333\n124362|0.43056\n124363|0.40278\n124364|0.25\n124365|0.27778\n124366|0.41667\n124367|0.36111\n124368|0.22222\n124369|0.069444\n124370|0.055556\n124371|0.29167\n124372|0.27778\n124373|0.041667\n124374|0.27778\n124375|0.83333\n124376|0.26389\n124377|0.27778\n124378|0.51389\n124379|0.55556\n124380|0.23611\n124381|0.36111\n124382|0.40278\n124383|0.16667\n124384|0.77778\n124385|0.90278\n124386|0.81944\n124387|0.54167\n124388|0.19444\n124389|0.27778\n124390|0.19444\n124391|0.5\n124392|0.52778\n124393|0.63889\n124394|0.72222\n124395|0.86111\n124396|0.45833\n124397|0.66667\n124398|0.58333\n124399|0.91667\n124400|0.86111\n124401|0.93056\n124402|0.34722\n124403|0.20833\n124404|0.63889\n124405|0.52778\n124406|0.84722\n124407|0.86111\n124408|0.69444\n124409|0.80556\n124410|0.65278\n124411|0.52778\n124412|0.56944\n124413|0.33333\n124414|0.70833\n124415|0.75\n124416|0.75\n124417|0.79167\n124418|0.43056\n124419|0.34722\n124420|0.51389\n124421|0.5\n124422|0.45833\n124423|0.48611\n124424|0.33333\n124425|0.69444\n124426|0.55556\n124427|0.31944\n124428|0.44444\n124429|0.51389\n124430|0.22222\n124431|0.19444\n124432|0.5\n124433|0.79167\n124434|0.055556\n124435|0\n124436|0.31944\n124437|0.41667\n124438|0.29167\n124439|0.56944\n124440|0.38889\n124441|0.56944\n124442|0.48611\n124443|0.59722\n124444|0.625\n124445|0.69444\n124446|0.81944\n124447|0.83333\n124448|0.65278\n124449|0.58333\n124450|0.75\n124451|0.47222\n124452|0.38889\n124453|0.26389\n124454|0.65278\n124455|0.22222\n124456|0.38889\n124457|0.33333\n124458|0.44444\n124459|0.30556\n124460|0.055556\n124461|0.16667\n124462|0.70833\n124463|0.36111\n124464|0.44444\n124465|0.44444\n124466|0.22222\n124467|0.43056\n124468|0.20833\n124469|0.72222\n124470|0.75\n124471|0.61111\n124472|0.29167\n124473|0.29167\n124474|0.16667\n124475|0.22222\n124476|0.52778\n124477|0.52778\n124478|0.73611\n124479|0.34722\n124480|0.68056\n124481|0.52778\n124482|0.11111\n124483|0\n124484|0.48611\n124485|0.375\n124486|0.26389\n124487|0.15278\n124488|0.5\n124489|0.38889\n124490|0.875\n124491|0.83333\n124492|0.83333\n124493|0.65278\n124494|0.375\n124495|0.27778\n124496|0.69444\n124497|0.51389\n124498|0.41667\n124499|0.43056\n124500|0.22222\n124501|0.19444\n124502|0.65278\n124503|0.84722\n124504|0.77778\n124505|0.66667\n124506|0.55556\n124507|0.65278\n124508|0.69444\n124509|0.54167\n124510|0.59722\n124511|0.22222\n124512|0.11111\n124513|0.59722\n124514|0.44444\n124515|0.52778\n124516|0.51389\n124517|0.20833\n124518|0.47222\n124519|0.70833\n124520|0.84722\n124521|0.80556\n124522|0.33333\n124523|0.76389\n124524|0.5\n124525|0.69444\n124526|0.16667\n124527|0.16667\n124528|0.30556\n124529|0.20833\n124530|0.36111\n124531|0.27778\n124532|0.25\n124533|0.16667\n124534|0.29167\n124535|0.11111\n124536|0\n124537|0.41667\n124538|0.66667\n124539|0.51389\n124540|0.375\n124541|0.5\n124542|0.375\n124543|0.19444\n124544|0.51389\n124545|0.375\n124546|0.19444\n124547|0.16667\n124548|0\n124549|0.125\n124550|0.13889\n124551|0.16667\n124552|0.25\n124553|0.33333\n124554|0.69444\n124555|0.70833\n124556|0.625\n124557|0.73611\n124558|0.76389\n124559|0.5\n124560|0.27778\n124561|0.097222\n124562|0.5\n124563|0.51389\n124564|0.11111\n124565|0.20833\n124566|0.86111\n124567|0.5\n124568|0.63889\n124569|0.90278\n124570|0.61111\n124571|0.69444\n124572|0.69444\n124573|0.79167\n124574|0.16667\n124575|0.25\n124576|0.5\n124577|0.76389\n124578|0.88889\n124579|0.72222\n124580|0.43056\n124581|0.625\n124582|0.52778\n124583|0.51389\n124584|0.25\n124585|0.11111\n124586|0.13889\n124587|0.81944\n124588|0.80556\n124589|0.63889\n124590|0.83333\n124591|0.16667\n124592|0.25\n124593|0.29167\n124594|0.36111\n124595|0.83333\n124596|0.81944\n124597|0.63889\n124598|0.86111\n124599|0.19444\n124600|0.13889\n124601|0.63889\n124602|0.58333\n124603|0.26389\n124604|0.44444\n124605|0.34722\n124606|0.86111\n124607|0.79167\n124608|0.70833\n124609|0.16667\n124610|0.36111\n124611|0.52778\n124612|0.41667\n124613|0.76389\n124614|0.58333\n124615|0.65278\n124616|0.80556\n124617|0.66667\n124618|0.68056\n124619|0.68056\n124620|0.625\n124621|0.73611\n124622|0.33333\n124623|0.25\n124624|0.54167\n124625|0.72222\n124626|0.66667\n124627|0.63889\n124628|0.5\n124629|0.61111\n124630|0.38889\n124631|0.19444\n124632|0.69444\n124633|0.52778\n124634|0.33333\n124635|0.25\n124636|0.13889\n124637|0.5\n124638|0.5\n124639|0.027778\n124640|0.19444\n124641|0.625\n124642|0.76389\n124643|0.5\n124644|0.375\n124645|0.29167\n124646|0.58333\n124647|0.63889\n124648|0.45833\n124649|0.31944\n124650|0.27778\n124651|0.56944\n124652|0.65278\n124653|0.45833\n124654|0.5\n124655|0.90278\n124656|0.90278\n124657|0.65278\n124658|0.70833\n124659|0.79167\n124660|0.84722\n124661|0.81944\n124662|0.33333\n124663|0.44444\n124664|0.68056\n124665|0.51389\n124666|0.44444\n124667|0.5\n124668|0.38889\n124669|0.44444\n124670|0.625\n124671|0.59722\n124672|0.48611\n124673|0.54167\n124674|0.19444\n124675|0.27778\n124676|0.81944\n124677|0.84722\n124678|0.36111\n124679|0.5\n124680|0.73611\n124681|0.027778\n124682|0.125\n124683|0.36111\n124684|0.34722\n124685|0.041667\n124686|0.19444\n124687|0.63889\n124688|0.56944\n124689|0.29167\n124690|0.55556\n124691|0.5\n124692|0.81944\n124693|0.83333\n124694|0.72222\n124695|0.61111\n124696|0.5\n124697|0.5\n124698|0.80556\n124699|0.013889\n124700|0.069444\n124701|0.5\n124702|0.76389\n124703|0.76389\n124704|0.375\n124705|0.43056\n124706|0.51389\n124707|0.44444\n124708|0.5\n124709|0.61111\n124710|0.77778\n124711|0.77778\n124712|0.48611\n124713|0.48611\n124714|0.5\n124715|0.61111\n124716|0.5\n124717|0.58333\n124718|0.41667\n124719|0.26389\n124720|0.58333\n124721|0.625\n124722|0.36111\n124723|0.29167\n124724|0.31944\n124725|0.19444\n124726|0.20833\n124727|0.27778\n124728|0.16667\n124729|0.33333\n124730|0.54167\n124731|0.72222\n124732|0.22222\n124733|0.22222\n124734|0.375\n124735|0.69444\n124736|0.52778\n124737|0.94444\n124738|0.375\n124739|0.56944\n124740|0.90278\n124741|0.76389\n124742|0.27778\n124743|0.34722\n124744|0.59722\n124745|0.54167\n124746|0.38889\n124747|0.77778\n124748|0.625\n124749|0.52778\n124750|0.72222\n124751|0.55556\n124752|0.15278\n124753|0.19444\n124754|0.33333\n124755|0.33333\n124756|0.20833\n124757|0.68056\n124758|0.75\n124759|0.73611\n124760|0.875\n124761|0.16667\n124762|0.15278\n124763|0.29167\n124764|0.055556\n124765|0.83333\n124766|0.54167\n124767|0.65278\n124768|0.76389\n124769|0.80556\n124770|0.79167\n124771|0.75\n124772|0.83333\n124773|0.65278\n124774|0.72222\n124775|0.77778\n124776|0.73611\n124777|0.625\n124778|0.66667\n124779|0.48611\n124780|0.55556\n124781|0.36111\n124782|0.5\n124783|0.375\n124784|0.65278\n124785|0.5\n124786|0.77778\n124787|0.5\n124788|0.52778\n124789|0.40278\n124790|0.44444\n124791|0.51389\n124792|0.61111\n124793|0.5\n124794|0.77778\n124795|0.91667\n124796|0.52778\n124797|0.77778\n124798|0.44444\n124799|0.79167\n124800|0.27778\n124801|0.86111\n124802|0.70833\n124803|0.93056\n124804|0.83333\n124805|0.81944\n124806|0.77778\n124807|0.65278\n124808|0.625\n124809|0.41667\n124810|0.70833\n124811|0.63889\n124812|0.81944\n124813|0.125\n124814|0.73611\n124815|0.38889\n124816|0.75\n124817|0.66667\n124818|0.65278\n124819|0.58333\n124820|0.69444\n124821|0.69444\n124822|0.72222\n124823|0.69444\n124824|0.51389\n124825|0.36111\n124826|0.47222\n124827|0.5\n124828|0.23611\n124829|0.29167\n124830|0.80556\n124831|0.58333\n124832|0.65278\n124833|0.68056\n124834|0.16667\n124835|0.19444\n124836|0.375\n124837|0.58333\n124838|0.25\n124839|0.125\n124840|0.27778\n124841|0.79167\n124842|0.51389\n124843|0.125\n124844|0.40278\n124845|0.5\n124846|0.625\n124847|0.75\n124848|0.80556\n124849|0.27778\n124850|0.66667\n124851|0.34722\n124852|0.36111\n124853|0.65278\n124854|0.20833\n124855|0.375\n124856|0.55556\n124857|0.11111\n124858|0.20833\n124859|0.48611\n124860|0.083333\n124861|0.61111\n124862|0.73611\n124863|0.40278\n124864|0.34722\n124865|0.52778\n124866|0.81944\n124867|0.63889\n124868|0.22222\n124869|0.45833\n124870|0.055556\n124871|0.15278\n124872|0.77778\n124873|0.73611\n124874|0.31944\n124875|0.68056\n124876|0.11111\n124877|0.75\n124878|0.51389\n124879|0.68056\n124880|0.83333\n124881|0.25\n124882|0.75\n124883|0.33333\n124884|0.47222\n124885|0.77778\n124886|0.875\n124887|0.73611\n124888|0.63889\n124889|0.79167\n124890|0.61111\n124891|0.77778\n124892|0.27778\n124893|0.55556\n124894|0.48611\n124895|0.59722\n124896|0.61111\n124897|0.54167\n124898|0.5\n124899|0.5\n124900|0.34722\n124901|0.70833\n124902|0.94444\n124903|0.54167\n124904|0.625\n124905|0.63889\n124906|0.44444\n124907|0.54167\n124908|0.66667\n124909|0.94444\n124910|0.5\n124911|0.19444\n124912|0.20833\n124913|0.069444\n124914|0.69444\n124915|0.33333\n124916|0.38889\n124917|0.69444\n124918|0.75\n124919|0.29167\n124920|0.625\n124921|0.63889\n124922|0.63889\n124923|0.45833\n124924|0.5\n124925|0.29167\n124926|0.20833\n124927|0.44444\n124928|0.54167\n124929|0.61111\n124930|0.75\n124931|0.625\n124932|0.33333\n124933|0.19444\n124934|0.22222\n124935|0.52778\n124936|0.27778\n124937|0.45833\n124938|0.375\n124939|0.375\n124940|0.5\n124941|0.77778\n124942|0.40278\n124943|0.5\n124944|0.29167\n124945|0.63889\n124946|0.59722\n124947|0.55556\n124948|0.48611\n124949|0.41667\n124950|0.54167\n124951|0.63889\n124952|0.27778\n124953|0.125\n124954|0.125\n124955|0.68056\n124956|0.5\n124957|0.59722\n124958|0.65278\n124959|0.56944\n124960|0.47222\n124961|0.27778\n124962|0.59722\n124963|0.27778\n124964|0.77778\n124965|0.66667\n124966|0.625\n124967|0.34722\n124968|0.27778\n124969|0.625\n124970|0.23611\n124971|0.26389\n124972|0.54167\n124973|0.26389\n124974|0.33333\n124975|0.19444\n124976|0.34722\n124977|0.31944\n124978|0.68056\n124979|0.5\n124980|0.59722\n124981|0.26389\n124982|0.63889\n124983|0.65278\n124984|0.59722\n124985|0.55556\n124986|0.11111\n124987|0.52778\n124988|0.52778\n124989|0.29167\n124990|0.69444\n124991|0.41667\n124992|0.5\n124993|0.68056\n124994|0.5\n124995|0.27778\n124996|0\n124997|0.69444\n124998|0.84722\n124999|0.79167\n125000|0.84722\n125001|0.30556\n125002|0.69444\n125003|0.90278\n125004|0.44444\n125005|0.40278\n125006|0.65278\n125007|0.30556\n125008|0.59722\n125009|0.69444\n125010|0.31944\n125011|0.44444\n125012|0.59722\n125013|0.75\n125014|0.79167\n125015|0.56944\n125016|0.52778\n125017|0.76389\n125018|0.30556\n125019|0.069444\n125020|0.41667\n125021|0.69444\n125022|0.59722\n125023|0.22222\n125024|0.45833\n125025|0.70833\n125026|0.5\n125027|0.34722\n125028|0.41667\n125029|0.30556\n125030|0.38889\n125031|0.59722\n125032|0.45833\n125033|0.54167\n125034|0.625\n125035|0.44444\n125036|0.54167\n125037|0.76389\n125038|0.625\n125039|0.61111\n125040|0.52778\n125041|0.19444\n125042|0.23611\n125043|0.55556\n125044|0.68056\n125045|0.51389\n125046|0.34722\n125047|0.52778\n125048|0.59722\n125049|0.77778\n125050|0.56944\n125051|0.54167\n125052|0.52778\n125053|0.23611\n125054|0.51389\n125055|0.52778\n125056|0.51389\n125057|0.625\n125058|0.40278\n125059|0.34722\n125060|0.65278\n125061|0.55556\n125062|0.5\n125063|0.22222\n125064|0.31944\n125065|0.51389\n125066|0.73611\n125067|0.875\n125068|0.72222\n125069|0.33333\n125070|0.44444\n125071|0.625\n125072|0.51389\n125073|0.52778\n125074|0.44444\n125075|0.70833\n125076|0.66667\n125077|0.56944\n125078|0.29167\n125079|0.13889\n125080|0.27778\n125081|0.90278\n125082|0.54167\n125083|0.68056\n125084|0.25\n125085|0.80556\n125086|0.55556\n125087|0.56944\n125088|0.72222\n125089|0.33333\n125090|0.5\n125091|0.66667\n125092|0.5\n125093|0.27778\n125094|0.5\n125095|0.5\n125096|0.80556\n125097|0.38889\n125098|0.68056\n125099|0.5\n125100|0.23611\n125101|0.69444\n125102|0.23611\n125103|0.27778\n125104|0.33333\n125105|0.63889\n125106|0.59722\n125107|0.069444\n125108|0.68056\n125109|0.625\n125110|0.34722\n125111|0.66667\n125112|0.15278\n125113|0.5\n125114|0.65278\n125115|0.625\n125116|0.5\n125117|0.54167\n125118|0.81944\n125119|0.44444\n125120|0.5\n125121|0.5\n125122|0.69444\n125123|0.66667\n125124|0.43056\n125125|0.77778\n125126|0.48611\n125127|0.65278\n125128|0.44444\n125129|0.22222\n125130|0.63889\n125131|0.45833\n125132|0.41667\n125133|0.125\n125134|0.73611\n125135|0.47222\n125136|0.61111\n125137|0.5\n125138|0.43056\n125139|0.26389\n125140|0.86111\n125141|0.47222\n125142|0.5\n125143|0.19444\n125144|0.65278\n125145|0.81944\n125146|0.84722\n125147|0.88889\n125148|0.875\n125149|0.5\n125150|0.66667\n125151|0.63889\n125152|0.625\n125153|0.79167\n125154|0.65278\n125155|0.54167\n125156|0.51389\n125157|0.83333\n125158|0.27778\n125159|0.41667\n125160|0.5\n125161|0.44444\n125162|0.45833\n125163|0.5\n125164|0.55556\n125165|0.56944\n125166|0.5\n125167|0.40278\n125168|0.66667\n125169|0.58333\n125170|0.45833\n125171|0.44444\n125172|0.22222\n125173|0.625\n125174|0.55556\n125175|0.72222\n125176|0.5\n125177|0.55556\n125178|0.69444\n125179|0.86111\n125180|0.70833\n125181|0.69444\n125182|0.55556\n125183|0.41667\n125184|0.34722\n125185|0.84722\n125186|0.41667\n125187|0.47222\n125188|0.5\n125189|0.5\n125190|0.72222\n125191|0.5\n125192|0.51389\n125193|0.48611\n125194|0.36111\n125195|0.66667\n125196|0.5\n125197|0.38889\n125198|0.54167\n125199|0.48611\n125200|0.5\n125201|0.61111\n125202|0.47222\n125203|0.68056\n125204|0.84722\n125205|0.55556\n125206|0.5\n125207|0.5\n125208|0.5\n125209|0.5\n125210|0.5\n125211|0.5\n125212|0.625\n125213|0.5\n125214|0.5\n125215|0.63889\n125216|0.59722\n125217|0.72222\n125218|0.66667\n125219|0.34722\n125220|0.23611\n125221|0.61111\n125222|0.625\n125223|0.52778\n125224|0.59722\n125225|0.80556\n125226|0.56944\n125227|0.5\n125228|0.5\n125229|0.38889\n125230|0.5\n125231|0.63889\n125232|0.44444\n125233|0.69444\n125234|0.27778\n125235|0.52778\n125236|0.65278\n125237|0.63889\n125238|0.5\n125239|0.875\n125240|0.72222\n125241|0.51389\n125242|0.81944\n125243|0.75\n125244|0.76389\n125245|0.52778\n125246|0.125\n125247|0.625\n125248|0.88889\n125249|0.68056\n125250|0.52778\n125251|0.51389\n125252|0.625\n125253|0.55556\n125254|0.33333\n125255|0.54167\n125256|0.75\n125257|0.44444\n125258|0.58333\n125259|0.59722\n125260|0.55556\n125261|0.84722\n125262|0.625\n125263|0.61111\n125264|0.72222\n125265|0.66667\n125266|0.70833\n125267|0.73611\n125268|0.84722\n125269|0.66667\n125270|0.59722\n125271|0.5\n125272|0.18056\n125273|0.38889\n125274|0.40278\n125275|0.48611\n125276|0.55556\n125277|0.45833\n125278|0.63889\n125279|0.66667\n125280|0.5\n125281|0.45833\n125282|0.5\n125283|0.5\n125284|0.55556\n125285|0.81944\n125286|0.5\n125287|0.59722\n125288|0.47222\n125289|0.41667\n125290|0.65278\n125291|0.31944\n125292|0.5\n125293|0.66667\n125294|0.45833\n125295|0.38889\n125296|0.61111\n125297|0.5\n125298|0.5\n125299|0.5\n125300|0.30556\n125301|0.27778\n125302|0.5\n125303|0.55556\n125304|0.5\n125305|0.59722\n125306|0.48611\n125307|0.52778\n125308|0.625\n125309|0.68056\n125310|0.5\n125311|0.5\n125312|0.41667\n125313|0.68056\n125314|0.72222\n125315|0.77778\n125316|0.77778\n125317|0.375\n125318|0.65278\n125319|0.5\n125320|0.41667\n125321|0.5\n125322|0.20833\n125323|0.65278\n125324|0.5\n125325|0.625\n125326|0.45833\n125327|0.75\n125328|0.65278\n125329|0.29167\n125330|0.65278\n125331|0.5\n125332|0.31944\n125333|0.20833\n125334|0.5\n125335|0.52778\n125336|0.375\n125337|0.52778\n125338|0.45833\n125339|0.86111\n125340|0.76389\n125341|0.5\n125342|0.5\n125343|0.75\n125344|0.5\n125345|0.5\n125346|0.59722\n125347|0.61111\n125348|0.5\n125349|0.40278\n125350|0.54167\n125351|0.5\n125352|0.70833\n125353|0.18056\n125354|0.30556\n125355|0.55556\n125356|0.5\n125357|0.54167\n125358|0.54167\n125359|0.56944\n125360|0.58333\n125361|0.63889\n125362|0.61111\n125363|0.5\n125364|0.19444\n125365|0.625\n125366|0.625\n125367|0.45833\n125368|0.75\n125369|0.34722\n125370|0.55556\n125371|0.54167\n125372|0.31944\n125373|0.11111\n125374|0.30556\n125375|0.38889\n125376|0.625\n125377|0.5\n125378|0.44444\n125379|0.47222\n125380|0.56944\n125381|0.5\n125382|0.68056\n125383|0.51389\n125384|0.5\n125385|0.63889\n125386|0.41667\n125387|0.45833\n125388|0.5\n125389|0.38889\n125390|0.36111\n125391|0.56944\n125392|0.72222\n125393|0.70833\n125394|0.75\n125395|0.83333\n125396|0.79167\n125397|0.68056\n125398|0.55556\n125399|0.59722\n125400|0.375\n125401|0.47222\n125402|0.61111\n125403|0.55556\n125404|0.76389\n125405|0.625\n125406|0.5\n125407|0.36111\n125408|0.75\n125409|0.33333\n125410|0.5\n125411|0.45833\n125412|0.40278\n125413|0.69444\n125414|0.54167\n125415|0.73611\n125416|0.48611\n125417|0.61111\n125418|0.41667\n125419|0.83333\n125420|0.72222\n125421|0.5\n125422|0.5\n125423|0.5\n125424|0.58333\n125425|0.36111\n125426|0.88889\n125427|0.72222\n125428|0.625\n125429|0.45833\n125430|0.83333\n125431|0.40278\n125432|0.47222\n125433|0.41667\n125434|0.56944\n125435|0.51389\n125436|0.38889\n125437|0.47222\n125438|0.59722\n125439|0.5\n125440|0.76389\n125441|0.47222\n125442|0.41667\n125443|0.5\n125444|0.77778\n125445|0.83333\n125446|0.68056\n125447|0.83333\n125448|0.80556\n125449|0.86111\n125450|0.88889\n125451|0.84722\n125452|0.91667\n125453|0.93056\n125454|0.91667\n125455|0.94444\n125456|0.66667\n125457|0.5\n125458|0.5\n125459|0.13889\n125460|0.40278\n125461|0.47222\n125462|0.52778\n125463|0.5\n125464|0.5\n125465|0.5\n125466|0.5\n125467|0.45833\n125468|0.5\n125469|0.61111\n125470|0.63889\n125471|0.38889\n125472|0.54167\n125473|0.625\n125474|0.86111\n125475|0.86111\n125476|0.81944\n125477|0.875\n125478|0.66667\n125479|0.5\n125480|0.51389\n125481|0.5\n125482|0.68056\n125483|0.54167\n125484|0.80556\n125485|0.63889\n125486|0.5\n125487|0.5\n125488|0.5\n125489|0.13889\n125490|0.55556\n125491|0.73611\n125492|0.70833\n125493|0.80556\n125494|0.875\n125495|0.73611\n125496|0.45833\n125497|0.38889\n125498|0.41667\n125499|0.5\n125500|0.13889\n125501|0.20833\n125502|0.16667\n125503|0.36111\n125504|0.72222\n125505|0.22222\n125506|0.5\n125507|0.38889\n125508|0.27778\n125509|0.19444\n125510|0.58333\n125511|0.5\n125512|0.26389\n125513|0.52778\n125514|0.51389\n125515|0.45833\n125516|0.5\n125517|0.51389\n125518|0.013889\n125519|0.055556\n125520|0.59722\n125521|0.13889\n125522|0.40278\n125523|0.31944\n125524|0.5\n125525|0.56944\n125526|0.44444\n125527|0.23611\n125528|0.22222\n125529|0.625\n125530|0.625\n125531|0.54167\n125532|0.73611\n125533|0.5\n125534|0.5\n125535|0.52778\n125536|0.43056\n125537|0.5\n125538|0.625\n125539|0.66667\n125540|0.38889\n125541|0.40278\n125542|0.63889\n125543|0.65278\n125544|0.5\n125545|0.5\n125546|0.51389\n125547|0.52778\n125548|0.70833\n125549|0.73611\n125550|0.70833\n125551|0.73611\n125552|0.5\n125553|0.875\n125554|0.59722\n125555|0.59722\n125556|0.59722\n125557|0.41667\n125558|0.63889\n125559|0.41667\n125560|0.375\n125561|0.5\n125562|0.59722\n125563|0.77778\n125564|0.54167\n125565|0.54167\n125566|0.45833\n125567|0.40278\n125568|0.5\n125569|0.66667\n125570|0.52778\n125571|0.26389\n125572|0.5\n125573|0.54167\n125574|0.59722\n125575|0.625\n125576|0.76389\n125577|0.72222\n125578|0.76389\n125579|0.5\n125580|0.61111\n125581|0.55556\n125582|0.36111\n125583|0.47222\n125584|0.45833\n125585|0.52778\n125586|0.48611\n125587|0.68056\n125588|0.47222\n125589|0.48611\n125590|0.54167\n125591|0.43056\n125592|0.45833\n125593|0.73611\n125594|0.77778\n125595|0.69444\n125596|0.70833\n125597|0.5\n125598|0.30556\n125599|0.5\n125600|0.375\n125601|0.72222\n125602|0.40278\n125603|0.59722\n125604|0.5\n125605|0.45833\n125606|0.52778\n125607|0.5\n125608|0.5\n125609|0.48611\n125610|0.72222\n125611|0.61111\n125612|0.5\n125613|0.5\n125614|0.55556\n125615|0.83333\n125616|0.5\n125617|0.63889\n125618|0.51389\n125619|0.27778\n125620|0.5\n125621|0.19444\n125622|0.5\n125623|0.5\n125624|0.48611\n125625|0.48611\n125626|0.45833\n125627|0.33333\n125628|0.61111\n125629|0.56944\n125630|0.69444\n125631|0.48611\n125632|0.43056\n125633|0.41667\n125634|0.51389\n125635|0.5\n125636|0.38889\n125637|0.66667\n125638|0.51389\n125639|0.45833\n125640|0.45833\n125641|0.5\n125642|0.5\n125643|0.5\n125644|0.52778\n125645|0.5\n125646|0.72222\n125647|0.625\n125648|0.5\n125649|0.5\n125650|0.52778\n125651|0.75\n125652|0.68056\n125653|0.79167\n125654|0.77778\n125655|0.81944\n125656|0.80556\n125657|0.80556\n125658|0.66667\n125659|0.70833\n125660|0.63889\n125661|0.66667\n125662|0.55556\n125663|0.63889\n125664|0.79167\n125665|0.61111\n125666|0.5\n125667|0.58333\n125668|0.29167\n125669|0.65278\n125670|0.5\n125671|0.5\n125672|0.5\n125673|0.5\n125674|0.5\n125675|0.5\n125676|0.58333\n125677|0.58333\n125678|0.5\n125679|0.5\n125680|0.30556\n125681|0.44444\n125682|0.25\n125683|0.38889\n125684|0.29167\n125685|0.31944\n125686|0.44444\n125687|0.29167\n125688|0.625\n125689|0.56944\n125690|0.26389\n125691|0.33333\n125692|0.33333\n125693|0.22222\n125694|0.31944\n125695|0.38889\n125696|0.27778\n125697|0.375\n125698|0.18056\n125699|0.26389\n125700|0.375\n125701|0.34722\n125702|0.40278\n125703|0.25\n125704|0.29167\n125705|0.27778\n125706|0.45833\n125707|0.26389\n125708|0.18056\n125709|0.34722\n125710|0.45833\n125711|0.22222\n125712|0.31944\n125713|0.30556\n125714|0.63889\n125715|0.31944\n125716|0.44444\n125717|0.23611\n125718|0.5\n125719|0.58333\n125720|0.63889\n125721|0.48611\n125722|0.27778\n125723|0.30556\n125724|0.23611\n125725|0.11111\n125726|0.375\n125727|0.63889\n125728|0.59722\n125729|0.56944\n125730|0.34722\n125731|0.61111\n125732|0.58333\n125733|0.5\n125734|0.51389\n125735|0.88889\n125736|0.79167\n125737|0.72222\n125738|0.5\n125739|0.65278\n125740|0.47222\n125741|0.44444\n125742|0.45833\n125743|0.68056\n125744|0.34722\n125745|0.51389\n125746|0.55556\n125747|0.55556\n125748|0.5\n125749|0.61111\n125750|0.625\n125751|0.70833\n125752|0.43056\n125753|0.18056\n125754|0.27778\n125755|0.38889\n125756|0.43056\n125757|0.44444\n125758|0.5\n125759|0.44444\n125760|0.5\n125761|0.40278\n125762|0.5\n125763|0.5\n125764|0.69444\n125765|0.5\n125766|0.625\n125767|0.48611\n125768|0.51389\n125769|0.58333\n125770|0.48611\n125771|0.58333\n125772|0.43056\n125773|0.5\n125774|0.5\n125775|0.5\n125776|0.5\n125777|0.44444\n125778|0.61111\n125779|0.5\n125780|0.63889\n125781|0.5\n125782|0.5\n125783|0.58333\n125784|0.5\n125785|0.5\n125786|0.5\n125787|0.5\n125788|0.41667\n125789|0.48611\n125790|0.52778\n125791|0.86111\n125792|0.66667\n125793|0.61111\n125794|0.68056\n125795|0.77778\n125796|0.38889\n125797|0.70833\n125798|0.79167\n125799|0.80556\n125800|0.5\n125801|0.5\n125802|0.52778\n125803|0.59722\n125804|0.68056\n125805|0.61111\n125806|0.43056\n125807|0.68056\n125808|0.56944\n125809|0.5\n125810|0.48611\n125811|0.76389\n125812|0.625\n125813|0.5\n125814|0.5\n125815|0.5\n125816|0.5\n125817|0.76389\n125818|0.5\n125819|0.5\n125820|0.69444\n125821|0.36111\n125822|0.43056\n125823|0.44444\n125824|0.16667\n125825|0.5\n125826|0.61111\n125827|0.45833\n125828|0.27778\n125829|0.5\n125830|0.5\n125831|0.5\n125832|0.56944\n125833|0.38889\n125834|0.34722\n125835|0.66667\n125836|0.45833\n125837|0.5\n125838|0.40278\n125839|0.33333\n125840|0.5\n125841|0.79167\n125842|0.47222\n125843|0.625\n125844|0.5\n125845|0.48611\n125846|0.41667\n125847|0.5\n125848|0.66667\n125849|0.55556\n125850|0.76389\n125851|0.55556\n125852|0.44444\n125853|0.5\n125854|0.63889\n125855|0.52778\n125856|0.5\n125857|0.66667\n125858|0.55556\n125859|0.44444\n125860|0.63889\n125861|0.76389\n125862|0.70833\n125863|0.25\n125864|0.58333\n125865|0.22222\n125866|0.5\n125867|0.33333\n125868|0.23611\n125869|0.27778\n125870|0.36111\n125871|0.45833\n125872|0.27778\n125873|0.31944\n125874|0.18056\n125875|0.76389\n125876|0.79167\n125877|0.45833\n125878|0.26389\n125879|0.5\n125880|0.45833\n125881|0.54167\n125882|0.47222\n125883|0.22222\n125884|0.5\n125885|0.27778\n125886|0.83333\n125887|0.51389\n125888|0.5\n125889|0.40278\n125890|0.38889\n125891|0.30556\n125892|0.41667\n125893|0.29167\n125894|0.29167\n125895|0.25\n125896|0.18056\n125897|0.47222\n125898|0.41667\n125899|0.58333\n125900|0.5\n125901|0.44444\n125902|0.5\n125903|0.66667\n125904|0.58333\n125905|0.52778\n125906|0.54167\n125907|0.61111\n125908|0.47222\n125909|0.77778\n125910|0.51389\n125911|0.47222\n125912|0.5\n125913|0.59722\n125914|0.59722\n125915|0.5\n125916|0.30556\n125917|0.27778\n125918|0.47222\n125919|0.23611\n125920|0.40278\n125921|0.48611\n125922|0.625\n125923|0.31944\n125924|0.41667\n125925|0.5\n125926|0.5\n125927|0.70833\n125928|0.65278\n125929|0.55556\n125930|0.11111\n125931|0.41667\n125932|0.51389\n125933|0.5\n125934|0.65278\n125935|0.54167\n125936|0.36111\n125937|0.77778\n125938|0.875\n125939|0.34722\n125940|0.76389\n125941|0.54167\n125942|0.34722\n125943|0.625\n125944|0.5\n125945|0.5\n125946|0.72222\n125947|0.5\n125948|0.51389\n125949|0.51389\n125950|0.47222\n125951|0.375\n125952|0.44444\n125953|0.22222\n125954|0.33333\n125955|0.38889\n125956|0.63889\n125957|0.65278\n125958|0.51389\n125959|0.5\n125960|0.5\n125961|0.70833\n125962|0.66667\n125963|0.52778\n125964|0.33333\n125965|0.70833\n125966|0.5\n125967|0.70833\n125968|0.38889\n125969|0.51389\n125970|0.83333\n125971|0.65278\n125972|0.33333\n125973|0.56944\n125974|0.61111\n125975|0.66667\n125976|0.69444\n125977|0.73611\n125978|0.79167\n125979|0.875\n125980|0.77778\n125981|0.5\n125982|0.56944\n125983|0.5\n125984|0.59722\n125985|0.63889\n125986|0.61111\n125987|0.44444\n125988|0.26389\n125989|0.86111\n125990|0.84722\n125991|0.34722\n125992|0.65278\n125993|0.38889\n125994|0.55556\n125995|0.47222\n125996|0.52778\n125997|0.54167\n125998|0.55556\n125999|0.72222\n126000|0.52778\n126001|0.58333\n126002|0.63889\n126003|0.63889\n126004|0.59722\n126005|0.5\n126006|0.5\n126007|0.5\n126008|0.5\n126009|0.5\n126010|0.41667\n126011|0.5\n126012|0.19444\n126013|0.5\n126014|0.5\n126015|0.5\n126016|0.54167\n126017|0.5\n126018|0.54167\n126019|0.5\n126020|0.5\n126021|0.59722\n126022|0.45833\n126023|0.68056\n126024|0.43056\n126025|0.55556\n126026|0.5\n126027|0.38889\n126028|0.44444\n126029|0.5\n126030|0.5\n126031|0.5\n126032|0.61111\n126033|0.5\n126034|0.52778\n126035|0.66667\n126036|0.5\n126037|0.43056\n126038|0.61111\n126039|0.25\n126040|0.44444\n126041|0.041667\n126042|0.55556\n126043|0.22222\n126044|0.52778\n126045|0.55556\n126046|0.16667\n126047|0.27778\n126048|0.38889\n126049|0.40278\n126050|0.16667\n126051|0.34722\n126052|0.45833\n126053|0.25\n126054|0.5\n126055|0.41667\n126056|0.48611\n126057|0.63889\n126058|0.45833\n126059|0.58333\n126060|0.15278\n126061|0.73611\n126062|0.38889\n126063|0.40278\n126064|0.34722\n126065|0.34722\n126066|0.5\n126067|0.38889\n126068|0.52778\n126069|0.5\n126070|0.375\n126071|0.27778\n126072|0.55556\n126073|0.33333\n126074|0.38889\n126075|0.375\n126076|0.66667\n126077|0.30556\n126078|0.125\n126079|0.52778\n126080|0.47222\n126081|0.69444\n126082|0.51389\n126083|0.30556\n126084|0.625\n126085|0.65278\n126086|0.73611\n126087|0.22222\n126088|0.31944\n126089|0.625\n126090|0.18056\n126091|0.5\n126092|0.19444\n126093|0.16667\n126094|0.51389\n126095|0.44444\n126096|0.36111\n126097|0.31944\n126098|0.43056\n126099|0.27778\n126100|0.38889\n126101|0.63889\n126102|0.55556\n126103|0.56944\n126104|0.48611\n126105|0.61111\n126106|0.56944\n126107|0.25\n126108|0.5\n126109|0.47222\n126110|0.47222\n126111|0.29167\n126112|0.16667\n126113|0.58333\n126114|0.72222\n126115|0.61111\n126116|0.54167\n126117|0.58333\n126118|0.81944\n126119|0.44444\n126120|0.55556\n126121|0.55556\n126122|0.11111\n126123|0.055556\n126124|0.40278\n126125|0.72222\n126126|0.625\n126127|0.72222\n126128|0.52778\n126129|0.5\n126130|0.36111\n126131|0.51389\n126132|0.47222\n126133|0.29167\n126134|0.63889\n126135|0.25\n126136|0.33333\n126137|0.44444\n126138|0.47222\n126139|0.5\n126140|0.63889\n126141|0.43056\n126142|0.44444\n126143|0.45833\n126144|0.26389\n126145|0.33333\n126146|0.66667\n126147|0.55556\n126148|0.625\n126149|0.40278\n126150|0.45833\n126151|0.52778\n126152|0.66667\n126153|0.55556\n126154|0.70833\n126155|0.625\n126156|0.56944\n126157|0.625\n126158|0.68056\n126159|0.66667\n126160|0.63889\n126161|0.5\n126162|0.5\n126163|0.54167\n126164|0.22222\n126165|0.59722\n126166|0.5\n126167|0.68056\n126168|0.125\n126169|0.44444\n126170|0.375\n126171|0.30556\n126172|0.59722\n126173|0.41667\n126174|0.5\n126175|0.33333\n126176|0.48611\n126177|0.5\n126178|0.66667\n126179|0.55556\n126180|0.38889\n126181|0.54167\n126182|0.16667\n126183|0.19444\n126184|0.38889\n126185|0.44444\n126186|0.5\n126187|0.40278\n126188|0.54167\n126189|0.44444\n126190|0.38889\n126191|0.5\n126192|0.20833\n126193|0.15278\n126194|0.11111\n126195|0.15278\n126196|0.34722\n126197|0.58333\n126198|0.51389\n126199|0.44444\n126200|0.54167\n126201|0.5\n126202|0.5\n126203|0.59722\n126204|0.43056\n126205|0.30556\n126206|0.5\n126207|0.55556\n126208|0.38889\n126209|0.33333\n126210|0.59722\n126211|0.63889\n126212|0.38889\n126213|0.41667\n126214|0.5\n126215|0.5\n126216|0.68056\n126217|0.84722\n126218|0.375\n126219|0.27778\n126220|0.36111\n126221|0.44444\n126222|0.5\n126223|0.5\n126224|0.43056\n126225|0.5\n126226|0.5\n126227|0.61111\n126228|0.59722\n126229|0.5\n126230|0.5\n126231|0.5\n126232|0.45833\n126233|0.45833\n126234|0.41667\n126235|0.30556\n126236|0.56944\n126237|0.65278\n126238|0.54167\n126239|0.22222\n126240|0.43056\n126241|0.47222\n126242|0.47222\n126243|0.41667\n126244|0.36111\n126245|0.43056\n126246|0.36111\n126247|0.55556\n126248|0.5\n126249|0.19444\n126250|0.27778\n126251|0.58333\n126252|0.52778\n126253|0.36111\n126254|0.5\n126255|0.33333\n126256|0.34722\n126257|0.54167\n126258|0.54167\n126259|0.5\n126260|0.38889\n126261|0.55556\n126262|0.5\n126263|0.61111\n126264|0.77778\n126265|0.5\n126266|0.52778\n126267|0.56944\n126268|0.51389\n126269|0.5\n126270|0.5\n126271|0.40278\n126272|0.5\n126273|0.5\n126274|0.5\n126275|0.5\n126276|0.48611\n126277|0.30556\n126278|0.58333\n126279|0.5\n126280|0.5\n126281|0.5\n126282|0.5\n126283|0.5\n126284|0.44444\n126285|0.61111\n126286|0.48611\n126287|0.5\n126288|0.48611\n126289|0.45833\n126290|0.5\n126291|0.44444\n126292|0.5\n126293|0.72222\n126294|0.45833\n126295|0.5\n126296|0.43056\n126297|0.65278\n126298|0.27778\n126299|0.45833\n126300|0.44444\n126301|0.48611\n126302|0.55556\n126303|0.56944\n126304|0.75\n126305|0.41667\n126306|0.66667\n126307|0.48611\n126308|0.66667\n126309|0.58333\n126310|0.375\n126311|0.48611\n126312|0.58333\n126313|0.44444\n126314|0.20833\n126315|0.70833\n126316|0.58333\n126317|0.52778\n126318|0.54167\n126319|0.5\n126320|0.40278\n126321|0.31944\n126322|0.47222\n126323|0.5\n126324|0.79167\n126325|0.84722\n126326|0.43056\n126327|0.52778\n126328|0.5\n126329|0.47222\n126330|0.56944\n126331|0.5\n126332|0.5\n126333|0.5\n126334|0.77778\n126335|0.5\n126336|0.76389\n126337|0.54167\n126338|0.25\n126339|0.375\n126340|0.51389\n126341|0.5\n126342|0.5\n126343|0.5\n126344|0.125\n126345|0.31944\n126346|0.20833\n126347|0.5\n126348|0.55556\n126349|0.5\n126350|0.375\n126351|0.61111\n126352|0.33333\n126353|0.56944\n126354|0.52778\n126355|0.51389\n126356|0.041667\n126357|0.125\n126358|0.22222\n126359|0.27778\n126360|0.68056\n126361|0.23611\n126362|0.25\n126363|0.47222\n126364|0.5\n126365|0.55556\n126366|0.36111\n126367|0.5\n126368|0.63889\n126369|0.55556\n126370|0.70833\n126371|0.5\n126372|0.5\n126373|0.59722\n126374|0.5\n126375|0.375\n126376|0.59722\n126377|0.44444\n126378|0.31944\n126379|0.48611\n126380|0.31944\n126381|0.26389\n126382|0.22222\n126383|0.20833\n126384|0.30556\n126385|0.16667\n126386|0.43056\n126387|0.43056\n126388|0.36111\n126389|0.40278\n126390|0.27778\n126391|0.43056\n126392|0.58333\n126393|0.52778\n126394|0.34722\n126395|0.30556\n126396|0.30556\n126397|0.26389\n126398|0.25\n126399|0.26389\n126400|0.58333\n126401|0.76389\n126402|0.44444\n126403|0.52778\n126404|0.40278\n126405|0.36111\n126406|0.5\n126407|0.30556\n126408|0.63889\n126409|0.22222\n126410|0.16667\n126411|0.26389\n126412|0.25\n126413|0.58333\n126414|0.76389\n126415|0.59722\n126416|0.44444\n126417|0.625\n126418|0.58333\n126419|0.56944\n126420|0.55556\n126421|0.59722\n126422|0.58333\n126423|0.5\n126424|0.72222\n126425|0.75\n126426|0.52778\n126427|0.65278\n126428|0.72222\n126429|0.66667\n126430|0.91667\n126431|0.66667\n126432|0.70833\n126433|0.72222\n126434|0.55556\n126435|0.43056\n126436|0.63889\n126437|0.51389\n126438|0.83333\n126439|0.72222\n126440|0.81944\n126441|0.69444\n126442|0.94444\n126443|0.72222\n126444|0.63889\n126445|0.54167\n126446|0.625\n126447|0.90278\n126448|0.65278\n126449|0.58333\n126450|0.5\n126451|0.54167\n126452|0.5\n126453|0.55556\n126454|0.66667\n126455|0.70833\n126456|0.83333\n126457|0.73611\n126458|0.69444\n126459|0.72222\n126460|0.63889\n126461|0.72222\n126462|0.73611\n126463|0.69444\n126464|0.36111\n126465|0.27778\n126466|0.11111\n126467|0.125\n126468|0.375\n126469|0.055556\n126470|0.5\n126471|0.54167\n126472|0.5\n126473|0.20833\n126474|0.43056\n126475|0.44444\n126476|0.44444\n126477|0.44444\n126478|0.18056\n126479|0.54167\n126480|0.65278\n126481|0.66667\n126482|0.5\n126483|0.16667\n126484|0.29167\n126485|0.47222\n126486|0.52778\n126487|0.34722\n126488|0.48611\n126489|0.29167\n126490|0.56944\n126491|0.38889\n126492|0.13889\n126493|0.38889\n126494|0.38889\n126495|0.11111\n126496|0.34722\n126497|0.44444\n126498|0.91667\n126499|0.55556\n126500|0.875\n126501|0.5\n126502|0.5\n126503|0.625\n126504|0.81944\n126505|0.47222\n126506|0.73611\n126507|0.625\n126508|0.5\n126509|0.18056\n126510|0.18056\n126511|0.5\n126512|0.5\n126513|0.61111\n126514|0.26389\n126515|0.5\n126516|0.66667\n126517|0.48611\n126518|0.56944\n126519|0.41667\n126520|0.36111\n126521|0.5\n126522|0.63889\n126523|0.75\n126524|0.61111\n126525|0.51389\n126526|0.83333\n126527|0.11111\n126528|0.23611\n126529|0.84722\n126530|0.48611\n126531|0.47222\n126532|0.30556\n126533|0.56944\n126534|0.61111\n126535|0.41667\n126536|0.31944\n126537|0.375\n126538|0.44444\n126539|0.5\n126540|0.5\n126541|0.5\n126542|0.30556\n126543|0.40278\n126544|0.5\n126545|0.51389\n126546|0.52778\n126547|0.55556\n126548|0.29167\n126549|0.61111\n126550|0.75\n126551|0.66667\n126552|0.5\n126553|0.66667\n126554|0.31944\n126555|0.43056\n126556|0.5\n126557|0.51389\n126558|0.25\n126559|0.125\n126560|0.5\n126561|0.43056\n126562|0.48611\n126563|0.58333\n126564|0.77778\n126565|0.91667\n126566|0.84722\n126567|0.72222\n126568|0.76389\n126569|0.52778\n126570|0.51389\n126571|0.54167\n126572|0.5\n126573|0.625\n126574|0.27778\n126575|0.34722\n126576|0.65278\n126577|0.5\n126578|0.52778\n126579|0.625\n126580|0.72222\n126581|0.54167\n126582|0.61111\n126583|0.56944\n126584|0.81944\n126585|0.69444\n126586|0.66667\n126587|0.72222\n126588|0.54167\n126589|0.66667\n126590|0.79167\n126591|0.69444\n126592|0.51389\n126593|0.75\n126594|0.51389\n126595|0.5\n126596|0.66667\n126597|0.52778\n126598|0.5\n126599|0.56944\n126600|0.51389\n126601|0.16667\n126602|0.625\n126603|0.31944\n126604|0.59722\n126605|0.61111\n126606|0.66667\n126607|0.61111\n126608|0.66667\n126609|0.52778\n126610|0.76389\n126611|0.41667\n126612|0.55556\n126613|0.55556\n126614|0.59722\n126615|0.68056\n126616|0.77778\n126617|0.69444\n126618|0.81944\n126619|0.40278\n126620|0.33333\n126621|0.48611\n126622|0.5\n126623|0.5\n126624|0.75\n126625|0.77778\n126626|0.45833\n126627|0.44444\n126628|0.5\n126629|0.51389\n126630|0.20833\n126631|0.5\n126632|0.61111\n126633|0.65278\n126634|0.45833\n126635|0.625\n126636|0.54167\n126637|0.72222\n126638|0.5\n126639|0.5\n126640|0.58333\n126641|0.65278\n126642|0.73611\n126643|0.70833\n126644|0.75\n126645|0.84722\n126646|0.51389\n126647|0.44444\n126648|0.38889\n126649|0.40278\n126650|0.61111\n126651|0.68056\n126652|0.48611\n126653|0.41667\n126654|0.5\n126655|0.54167\n126656|0.5\n126657|0.36111\n126658|0.30556\n126659|0.72222\n126660|0.70833\n126661|0.5\n126662|0.34722\n126663|0.65278\n126664|0.43056\n126665|0.5\n126666|0.68056\n126667|0.88889\n126668|0.86111\n126669|0.66667\n126670|0.81944\n126671|0.51389\n126672|0.27778\n126673|0.44444\n126674|0.61111\n126675|0.31944\n126676|0.33333\n126677|0.68056\n126678|0.77778\n126679|0.5\n126680|0.41667\n126681|0.625\n126682|0.5\n126683|0.5\n126684|0.38889\n126685|0.36111\n126686|0.59722\n126687|0.51389\n126688|0.72222\n126689|0.61111\n126690|0.25\n126691|0.22222\n126692|0.31944\n126693|0.58333\n126694|0.59722\n126695|0.48611\n126696|0.45833\n126697|0.5\n126698|0.63889\n126699|0.55556\n126700|0.66667\n126701|0.69444\n126702|0.68056\n126703|0.80556\n126704|0.65278\n126705|0.59722\n126706|0.72222\n126707|0.26389\n126708|0.55556\n126709|0.29167\n126710|0.43056\n126711|0.72222\n126712|0.88889\n126713|0.70833\n126714|0.79167\n126715|0.58333\n126716|0.43056\n126717|0.625\n126718|0.58333\n126719|0.56944\n126720|0.38889\n126721|0.5\n126722|0.51389\n126723|0.5\n126724|0.5\n126725|0.47222\n126726|0.69444\n126727|0.52778\n126728|0.41667\n126729|0.52778\n126730|0.59722\n126731|0.52778\n126732|0.5\n126733|0.55556\n126734|0.73611\n126735|0.5\n126736|0.51389\n126737|0.5\n126738|0.5\n126739|0.38889\n126740|0.5\n126741|0.5\n126742|0.54167\n126743|0.56944\n126744|0.875\n126745|0.65278\n126746|0.66667\n126747|0.63889\n126748|0.625\n126749|0.58333\n126750|0.69444\n126751|0.79167\n126752|0.80556\n126753|0.58333\n126754|0.83333\n126755|0.75\n126756|0.52778\n126757|0.75\n126758|0.70833\n126759|0.70833\n126760|0.69444\n126761|0.75\n126762|0.45833\n126763|0.375\n126764|0.33333\n126765|0.47222\n126766|0.48611\n126767|0.40278\n126768|0.43056\n126769|0.5\n126770|0.5\n126771|0.52778\n126772|0.44444\n126773|0.20833\n126774|0.36111\n126775|0.5\n126776|0.5\n126777|0.51389\n126778|0.69444\n126779|0.68056\n126780|0.43056\n126781|0.45833\n126782|0.58333\n126783|0.59722\n126784|0.58333\n126785|0.77778\n126786|0.69444\n126787|0.44444\n126788|0.38889\n126789|0.63889\n126790|0.31944\n126791|0.40278\n126792|0.47222\n126793|0.20833\n126794|0.5\n126795|0.54167\n126796|0.5\n126797|0.73611\n126798|0.44444\n126799|0.59722\n126800|0.47222\n126801|0.43056\n126802|0.34722\n126803|0.47222\n126804|0.5\n126805|0.5\n126806|0.5\n126807|0.73611\n126808|0.56944\n126809|0.23611\n126810|0.56944\n126811|0.41667\n126812|0.52778\n126813|0.55556\n126814|0.52778\n126815|0.5\n126816|0.68056\n126817|0.65278\n126818|0.52778\n126819|0.54167\n126820|0.83333\n126821|0.55556\n126822|0.625\n126823|0.027778\n126824|0.13889\n126825|0.58333\n126826|0.68056\n126827|0.5\n126828|0.23611\n126829|0.26389\n126830|0.63889\n126831|0.88889\n126832|0.22222\n126833|0.23611\n126834|0.55556\n126835|0.59722\n126836|0.86111\n126837|0.72222\n126838|0.95833\n126839|0.76389\n126840|0.77778\n126841|0.61111\n126842|0.76389\n126843|0.30556\n126844|0.56944\n126845|0.63889\n126846|0.56944\n126847|0.73611\n126848|0.58333\n126849|0.61111\n126850|0.47222\n126851|0.5\n126852|0.5\n126853|0.59722\n126854|0.5\n126855|0.5\n126856|0.48611\n126857|0.5\n126858|0.55556\n126859|0.48611\n126860|0.5\n126861|0.55556\n126862|0.33333\n126863|0.54167\n126864|0.43056\n126865|0.5\n126866|0.58333\n126867|0.59722\n126868|0.20833\n126869|0.5\n126870|0.52778\n126871|0.73611\n126872|0.58333\n126873|0.375\n126874|0.27778\n126875|0.43056\n126876|0.51389\n126877|0.33333\n126878|0.625\n126879|0.45833\n126880|0.29167\n126881|0.44444\n126882|0.27778\n126883|0.30556\n126884|0.5\n126885|0.63889\n126886|0.625\n126887|0.55556\n126888|0.59722\n126889|0.33333\n126890|0.52778\n126891|0.47222\n126892|0.51389\n126893|0.40278\n126894|0.47222\n126895|0.5\n126896|0.63889\n126897|0.51389\n126898|0.22222\n126899|0.63889\n126900|0.54167\n126901|0.41667\n126902|0.29167\n126903|0.48611\n126904|0.34722\n126905|0.5\n126906|0.43056\n126907|0.34722\n126908|0.51389\n126909|0.43056\n126910|0.5\n126911|0.73611\n126912|0.625\n126913|0.5\n126914|0.45833\n126915|0.88889\n126916|0.93056\n126917|0.5\n126918|0.25\n126919|0.69444\n126920|0.65278\n126921|0.47222\n126922|0.5\n126923|0.5\n126924|0.48611\n126925|0.44444\n126926|0.63889\n126927|0.625\n126928|0.5\n126929|0.41667\n126930|0.31944\n126931|0.30556\n126932|0.40278\n126933|0.54167\n126934|0.44444\n126935|0.30556\n126936|0.51389\n126937|0.63889\n126938|0.38889\n126939|0.44444\n126940|0.38889\n126941|0.34722\n126942|0.26389\n126943|0.375\n126944|0.33333\n126945|0.19444\n126946|0.23611\n126947|0.34722\n126948|0.41667\n126949|0.18056\n126950|0.16667\n126951|0.26389\n126952|0.36111\n126953|0.48611\n126954|0.58333\n126955|0.47222\n126956|0.5\n126957|0.70833\n126958|0.84722\n126959|0.80556\n126960|0.5\n126961|0.51389\n126962|0.51389\n126963|0.36111\n126964|0.5\n126965|0.70833\n126966|0.375\n126967|0.19444\n126968|0.5\n126969|0.48611\n126970|0.63889\n126971|0.625\n126972|0.5\n126973|0.48611\n126974|0.44444\n126975|0.51389\n126976|0.34722\n126977|0.29167\n126978|0.34722\n126979|0.30556\n126980|0.44444\n126981|0.30556\n126982|0.48611\n126983|0.40278\n126984|0.68056\n126985|0.61111\n126986|0.5\n126987|0.48611\n126988|0.77778\n126989|0.63889\n126990|0.76389\n126991|0.65278\n126992|0.5\n126993|0.41667\n126994|0.55556\n126995|0.45833\n126996|0.52778\n126997|0.375\n126998|0.26389\n126999|0.5\n127000|0.58333\n127001|0.59722\n127002|0.72222\n127003|0.55556\n127004|0.66667\n127005|0.66667\n127006|0.76389\n127007|0.56944\n127008|0.43056\n127009|0.55556\n127010|0.59722\n127011|0.5\n127012|0.52778\n127013|0.5\n127014|0.5\n127015|0.44444\n127016|0.31944\n127017|0.43056\n127018|0.66667\n127019|0.48611\n127020|0.44444\n127021|0.55556\n127022|0.15278\n127023|0.29167\n127024|0.41667\n127025|0.44444\n127026|0.68056\n127027|0.55556\n127028|0.81944\n127029|0.27778\n127030|0.041667\n127031|0.61111\n127032|0.33333\n127033|0.52778\n127034|0.5\n127035|0.45833\n127036|0.69444\n127037|0.58333\n127038|0.5\n127039|0.52778\n127040|0.5\n127041|0.44444\n127042|0.52778\n127043|0.5\n127044|0.5\n127045|0.51389\n127046|0.18056\n127047|0.58333\n127048|0.56944\n127049|0.29167\n127050|0.54167\n127051|0.5\n127052|0.65278\n127053|0.125\n127054|0.31944\n127055|0.16667\n127056|0.52778\n127057|0.27778\n127058|0.45833\n127059|0.29167\n127060|0.56944\n127061|0.55556\n127062|0.375\n127063|0.55556\n127064|0.88889\n127065|0.80556\n127066|0.29167\n127067|0.63889\n127068|0.5\n127069|0.5\n127070|0.59722\n127071|0.30556\n127072|0.51389\n127073|0.47222\n127074|0.11111\n127075|0.25\n127076|0.23611\n127077|0.48611\n127078|0.38889\n127079|0.27778\n127080|0.30556\n127081|0.47222\n127082|0.5\n127083|0.13889\n127084|0.19444\n127085|0.47222\n127086|0.61111\n127087|0.18056\n127088|0.51389\n127089|0.47222\n127090|0.5\n127091|0.45833\n127092|0.51389\n127093|0.51389\n127094|0.52778\n127095|0.5\n127096|0.56944\n127097|0.5\n127098|0.59722\n127099|0.58333\n127100|0.625\n127101|0.51389\n127102|0.5\n127103|0.5\n127104|0.52778\n127105|0.47222\n127106|0.33333\n127107|0.80556\n127108|0.59722\n127109|0.40278\n127110|0.44444\n127111|0.5\n127112|0.68056\n127113|0.55556\n127114|0.34722\n127115|0.20833\n127116|0.27778\n127117|0.069444\n127118|0.083333\n127119|0.26389\n127120|0.34722\n127121|0.48611\n127122|0.58333\n127123|0.56944\n127124|0.45833\n127125|0.48611\n127126|0.44444\n127127|0.38889\n127128|0.48611\n127129|0.44444\n127130|0.5\n127131|0.55556\n127132|0.69444\n127133|0.83333\n127134|0.36111\n127135|0.48611\n127136|0.34722\n127137|0.31944\n127138|0.5\n127139|0.38889\n127140|0.34722\n127141|0.58333\n127142|0.38889\n127143|0.69444\n127144|0.27778\n127145|0.18056\n127146|0.27778\n127147|0.48611\n127148|0.375\n127149|0.48611\n127150|0.44444\n127151|0.23611\n127152|0.375\n127153|0.41667\n127154|0.54167\n127155|0.625\n127156|0.43056\n127157|0.29167\n127158|0.22222\n127159|0.33333\n127160|0.31944\n127161|0.61111\n127162|0.33333\n127163|0.56944\n127164|0.5\n127165|0.45833\n127166|0.45833\n127167|0.56944\n127168|0.625\n127169|0.5\n127170|0.44444\n127171|0.5\n127172|0.45833\n127173|0.31944\n127174|0.5\n127175|0.38889\n127176|0.26389\n127177|0.63889\n127178|0.33333\n127179|0.5\n127180|0.5\n127181|0.58333\n127182|0.63889\n127183|0.51389\n127184|0.25\n127185|0.44444\n127186|0.5\n127187|0.72222\n127188|0.65278\n127189|0.58333\n127190|0.51389\n127191|0.5\n127192|0.59722\n127193|0.375\n127194|0.5\n127195|0.51389\n127196|0.5\n127197|0.5\n127198|0.5\n127199|0.79167\n127200|0.52778\n127201|0.5\n127202|0.44444\n127203|0.52778\n127204|0.45833\n127205|0.63889\n127206|0.61111\n127207|0.55556\n127208|0.54167\n127209|0.47222\n127210|0.66667\n127211|0.75\n127212|0.43056\n127213|0.59722\n127214|0.58333\n127215|0.5\n127216|0.55556\n127217|0.5\n127218|0.63889\n127219|0.5\n127220|0.61111\n127221|0.58333\n127222|0.5\n127223|0.5\n127224|0.77778\n127225|0.68056\n127226|0.38889\n127227|0.48611\n127228|0.5\n127229|0.47222\n127230|0.19444\n127231|0.55556\n127232|0.5\n127233|0.59722\n127234|0.38889\n127235|0.52778\n127236|0.5\n127237|0.45833\n127238|0.88889\n127239|0.55556\n127240|0.58333\n127241|0.5\n127242|0.63889\n127243|0.5\n127244|0.52778\n127245|0.58333\n127246|0.55556\n127247|0.55556\n127248|0.65278\n127249|0.33333\n127250|0.375\n127251|0.5\n127252|0.47222\n127253|0.55556\n127254|0.52778\n127255|0.52778\n127256|0.66667\n127257|0.27778\n127258|0.55556\n127259|0.52778\n127260|0.54167\n127261|0.54167\n127262|0.51389\n127263|0.29167\n127264|0.5\n127265|0.52778\n127266|0.38889\n127267|0.25\n127268|0.80556\n127269|0.61111\n127270|0.44444\n127271|0.59722\n127272|0.29167\n127273|0.63889\n127274|0.55556\n127275|0.69444\n127276|0.66667\n127277|0.70833\n127278|0.81944\n127279|0.66667\n127280|0.73611\n127281|0.59722\n127282|0.55556\n127283|0.625\n127284|0.5\n127285|0.5\n127286|0.44444\n127287|0.36111\n127288|0.66667\n127289|0.43056\n127290|0.72222\n127291|0.69444\n127292|0.11111\n127293|0.43056\n127294|0.59722\n127295|0.63889\n127296|0.56944\n127297|0.52778\n127298|0.38889\n127299|0.44444\n127300|0.77778\n127301|0.59722\n127302|0.31944\n127303|0.55556\n127304|0.19444\n127305|0.51389\n127306|0.31944\n127307|0.56944\n127308|0.47222\n127309|0.22222\n127310|0.30556\n127311|0.61111\n127312|0.48611\n127313|0.56944\n127314|0.59722\n127315|0.5\n127316|0.56944\n127317|0.58333\n127318|0.44444\n127319|0.5\n127320|0.72222\n127321|0.69444\n127322|0.83333\n127323|0.16667\n127324|0.55556\n127325|0.5\n127326|0.55556\n127327|0.38889\n127328|0.19444\n127329|0.40278\n127330|0.34722\n127331|0.16667\n127332|0.73611\n127333|0.5\n127334|0.61111\n127335|0.58333\n127336|0.58333\n127337|0.43056\n127338|0.45833\n127339|0.40278\n127340|0.66667\n127341|0.125\n127342|0.5\n127343|0.72222\n127344|0.625\n127345|0.52778\n127346|0.41667\n127347|0.25\n127348|0.29167\n127349|0.38889\n127350|0.26389\n127351|0.375\n127352|0.23611\n127353|0.13889\n127354|0.33333\n127355|0.59722\n127356|0.55556\n127357|0.56944\n127358|0.68056\n127359|0.59722\n127360|0.69444\n127361|0.40278\n127362|0.55556\n127363|0.5\n127364|0.5\n127365|0.48611\n127366|0.5\n127367|0.61111\n127368|0.43056\n127369|0.45833\n127370|0.38889\n127371|0.22222\n127372|0.66667\n127373|0.69444\n127374|0.5\n127375|0.44444\n127376|0.5\n127377|0.041667\n127378|0.18056\n127379|0.72222\n127380|0.66667\n127381|0.23611\n127382|0.72222\n127383|0.5\n127384|0.5\n127385|0.69444\n127386|0.18056\n127387|0.45833\n127388|0.5\n127389|0.52778\n127390|0.40278\n127391|0.54167\n127392|0.11111\n127393|0.29167\n127394|0.5\n127395|0.375\n127396|0.875\n127397|0.48611\n127398|0.5\n127399|0.5\n127400|0.33333\n127401|0.5\n127402|0.375\n127403|0.41667\n127404|0.41667\n127405|0.61111\n127406|0.48611\n127407|0.68056\n127408|0.61111\n127409|0.69444\n127410|0.47222\n127411|0.44444\n127412|0.80556\n127413|0.58333\n127414|0.55556\n127415|0.55556\n127416|0.22222\n127417|0.375\n127418|0.5\n127419|0.75\n127420|0.72222\n127421|0.5\n127422|0.55556\n127423|0.69444\n127424|0.76389\n127425|0.93056\n127426|0.66667\n127427|0.73611\n127428|0.58333\n127429|0.75\n127430|0.54167\n127431|0.51389\n127432|0.38889\n127433|0.51389\n127434|0.5\n127435|0.36111\n127436|0.73611\n127437|0.83333\n127438|0.70833\n127439|0.84722\n127440|0.76389\n127441|0.47222\n127442|0.16667\n127443|0.30556\n127444|0.84722\n127445|0.55556\n127446|0.61111\n127447|0.625\n127448|0.55556\n127449|0.29167\n127450|0.40278\n127451|0.63889\n127452|0.34722\n127453|0.54167\n127454|0.61111\n127455|0.15278\n127456|0.19444\n127457|0.77778\n127458|0.75\n127459|0.5\n127460|0.25\n127461|0.34722\n127462|0.52778\n127463|0.58333\n127464|0.51389\n127465|0.51389\n127466|0.5\n127467|0.5\n127468|0.5\n127469|0.40278\n127470|0.5\n127471|0.63889\n127472|0.26389\n127473|0.48611\n127474|0.55556\n127475|0.5\n127476|0.63889\n127477|0.16667\n127478|0.61111\n127479|0.375\n127480|0.33333\n127481|0.29167\n127482|0.56944\n127483|0.83333\n127484|0.72222\n127485|0.76389\n127486|0.81944\n127487|0.73611\n127488|0.68056\n127489|0.44444\n127490|0.5\n127491|0.70833\n127492|0.68056\n127493|0.90278\n127494|0.68056\n127495|0.81944\n127496|0.5\n127497|0.625\n127498|0.91667\n127499|0.65278\n127500|0.33333\n127501|0.40278\n127502|0.65278\n127503|0.63889\n127504|0.61111\n127505|0.76389\n127506|0.72222\n127507|0.79167\n127508|0.77778\n127509|0.29167\n127510|0.26389\n127511|0.36111\n127512|0.875\n127513|0.40278\n127514|0.5\n127515|0.5\n127516|0.56944\n127517|0.61111\n127518|0.66667\n127519|0.59722\n127520|0.5\n127521|0.5\n127522|0.45833\n127523|0.5\n127524|0.44444\n127525|0.55556\n127526|0.38889\n127527|0.5\n127528|0.5\n127529|0.5\n127530|0.5\n127531|0.77778\n127532|0.52778\n127533|0.63889\n127534|0.48611\n127535|0.5\n127536|0.51389\n127537|0.5\n127538|0.5\n127539|0.5\n127540|0.45833\n127541|0.83333\n127542|0.41667\n127543|0.36111\n127544|0.47222\n127545|0.52778\n127546|0.77778\n127547|0.44444\n127548|0.45833\n127549|0.5\n127550|0.5\n127551|0.58333\n127552|0.63889\n127553|0.58333\n127554|0.5\n127555|0.5\n127556|0.52778\n127557|0.5\n127558|0.84722\n127559|0.51389\n127560|0.33333\n127561|0.41667\n127562|0.5\n127563|0.5\n127564|0.5\n127565|0.75\n127566|0.5\n127567|0.5\n127568|0.47222\n127569|0.70833\n127570|0.5\n127571|0.55556\n127572|0.875\n127573|0.40278\n127574|0.5\n127575|0.5\n127576|0.51389\n127577|0.56944\n127578|0.26389\n127579|0.5\n127580|0.5\n127581|0.45833\n127582|0.44444\n127583|0.51389\n127584|0.48611\n127585|0.5\n127586|0.51389\n127587|0.44444\n127588|0.55556\n127589|0.36111\n127590|0.55556\n127591|0.51389\n127592|0.51389\n127593|0.58333\n127594|0.5\n127595|0.5\n127596|0.68056\n127597|0.5\n127598|0.5\n127599|0.55556\n127600|0.84722\n127601|0.61111\n127602|0.68056\n127603|0.65278\n127604|0.59722\n127605|0.84722\n127606|0.47222\n127607|0.61111\n127608|0.81944\n127609|0.52778\n127610|0.66667\n127611|0.5\n127612|0.44444\n127613|0.76389\n127614|0.5\n127615|0.20833\n127616|0.26389\n127617|0.59722\n127618|0.72222\n127619|0.80556\n127620|0.61111\n127621|0.55556\n127622|0.55556\n127623|0.5\n127624|0.5\n127625|0.5\n127626|0.66667\n127627|0.54167\n127628|0.31944\n127629|0.47222\n127630|0.59722\n127631|0.40278\n127632|0.43056\n127633|0.55556\n127634|0.36111\n127635|0.56944\n127636|0.54167\n127637|0.51389\n127638|0.5\n127639|0.61111\n127640|0.55556\n127641|0.5\n127642|0.66667\n127643|0.55556\n127644|0.61111\n127645|0.48611\n127646|0.38889\n127647|0.31944\n127648|0.36111\n127649|0.54167\n127650|0.56944\n127651|0.41667\n127652|0.44444\n127653|0.47222\n127654|0.23611\n127655|0.43056\n127656|0.52778\n127657|0.44444\n127658|0.65278\n127659|0.47222\n127660|0.18056\n127661|0.25\n127662|0.40278\n127663|0.54167\n127664|0.36111\n127665|0.5\n127666|0.44444\n127667|0.375\n127668|0.34722\n127669|0.31944\n127670|0.27778\n127671|0.47222\n127672|0.5\n127673|0.61111\n127674|0.52778\n127675|0.5\n127676|0.58333\n127677|0.625\n127678|0.52778\n127679|0.75\n127680|0.63889\n127681|0.61111\n127682|0.63889\n127683|0.5\n127684|0.36111\n127685|0.61111\n127686|0.69444\n127687|0.33333\n127688|0.5\n127689|0.625\n127690|0.30556\n127691|0.65278\n127692|0.72222\n127693|0.26389\n127694|0.5\n127695|0.75\n127696|0.58333\n127697|0.43056\n127698|0.38889\n127699|0.47222\n127700|0.30556\n127701|0.51389\n127702|0.5\n127703|0.43056\n127704|0.44444\n127705|0.70833\n127706|0.65278\n127707|0.5\n127708|0.5\n127709|0.22222\n127710|0.5\n127711|0.5\n127712|0.5\n127713|0.5\n127714|0.125\n127715|0.61111\n127716|0.375\n127717|0.52778\n127718|0.5\n127719|0.5\n127720|0.51389\n127721|0.875\n127722|0.76389\n127723|0.5\n127724|0.45833\n127725|0.51389\n127726|0.5\n127727|0.56944\n127728|0.47222\n127729|0.59722\n127730|0.34722\n127731|0.70833\n127732|0.63889\n127733|0.55556\n127734|0.51389\n127735|0.5\n127736|0.58333\n127737|0.29167\n127738|0.40278\n127739|0.5\n127740|0.58333\n127741|0.61111\n127742|0.38889\n127743|0.63889\n127744|0.44444\n127745|0.5\n127746|0.56944\n127747|0.65278\n127748|0.5\n127749|0.56944\n127750|0.72222\n127751|0.26389\n127752|0.63889\n127753|0.48611\n127754|0.66667\n127755|0.68056\n127756|0.58333\n127757|0.5\n127758|0.59722\n127759|0.55556\n127760|0.54167\n127761|0.48611\n127762|0.48611\n127763|0.52778\n127764|0.33333\n127765|0.47222\n127766|0.5\n127767|0.5\n127768|0.5\n127769|0.51389\n127770|0.5\n127771|0.30556\n127772|0.73611\n127773|0.51389\n127774|0.63889\n127775|0.61111\n127776|0.83333\n127777|0.68056\n127778|0.59722\n127779|0.625\n127780|0.51389\n127781|0.625\n127782|0.5\n127783|0.52778\n127784|0.5\n127785|0.5\n127786|0.5\n127787|0.44444\n127788|0.56944\n127789|0.65278\n127790|0.44444\n127791|0.19444\n127792|0.5\n127793|0.5\n127794|0.47222\n127795|0.73611\n127796|0.52778\n127797|0.5\n127798|0.31944\n127799|0.41667\n127800|0.63889\n127801|0.76389\n127802|0.58333\n127803|0.81944\n127804|0.58333\n127805|0.5\n127806|0.59722\n127807|0.5\n127808|0.5\n127809|0.61111\n127810|0.25\n127811|0.5\n127812|0.5\n127813|0.61111\n127814|0.54167\n127815|0.56944\n127816|0.55556\n127817|0.68056\n127818|0.63889\n127819|0.5\n127820|0.69444\n127821|0.5\n127822|0.65278\n127823|0.625\n127824|0.65278\n127825|0.375\n127826|0.47222\n127827|0.66667\n127828|0.55556\n127829|0.70833\n127830|0.55556\n127831|0.38889\n127832|0.36111\n127833|0.40278\n127834|0.013889\n127835|0.47222\n127836|0.61111\n127837|0.44444\n127838|0.48611\n127839|0.34722\n127840|0.40278\n127841|0.38889\n127842|0.5\n127843|0.16667\n127844|0.43056\n127845|0.33333\n127846|0.44444\n127847|0.44444\n127848|0.40278\n127849|0.45833\n127850|0.375\n127851|0.41667\n127852|0.30556\n127853|0.65278\n127854|0.38889\n127855|0.097222\n127856|0.51389\n127857|0.23611\n127858|0.30556\n127859|0.38889\n127860|0.47222\n127861|0.5\n127862|0.375\n127863|0.47222\n127864|0.5\n127865|0.36111\n127866|0.47222\n127867|0.5\n127868|0.30556\n127869|0.41667\n127870|0.44444\n127871|0.47222\n127872|0.75\n127873|0.31944\n127874|0.41667\n127875|0.29167\n127876|0.27778\n127877|0.41667\n127878|0.84722\n127879|0.73611\n127880|0.59722\n127881|0.54167\n127882|0.58333\n127883|0.16667\n127884|0.88889\n127885|0.61111\n127886|0.5\n127887|0.52778\n127888|0.56944\n127889|0.38889\n127890|0.55556\n127891|0.51389\n127892|0.25\n127893|0.41667\n127894|0.45833\n127895|0.25\n127896|0.375\n127897|0.5\n127898|0.20833\n127899|0.27778\n127900|0.48611\n127901|0.15278\n127902|0.29167\n127903|0.19444\n127904|0.66667\n127905|0.33333\n127906|0.30556\n127907|0.41667\n127908|0.22222\n127909|0.625\n127910|0.27778\n127911|0.65278\n127912|0.63889\n127913|0.73611\n127914|0.63889\n127915|0.40278\n127916|0.5\n127917|0.5\n127918|0.65278\n127919|0.75\n127920|0.47222\n127921|0.5\n127922|0.66667\n127923|0.76389\n127924|0.5\n127925|0.61111\n127926|0.65278\n127927|0.5\n127928|0.5\n127929|0.55556\n127930|0.52778\n127931|0.66667\n127932|0.84722\n127933|0.51389\n127934|0.5\n127935|0.55556\n127936|0.54167\n127937|0.5\n127938|0.55556\n127939|0.5\n127940|0.56944\n127941|0.19444\n127942|0.30556\n127943|0.52778\n127944|0.58333\n127945|0.5\n127946|0.63889\n127947|0.66667\n127948|0.65278\n127949|0.73611\n127950|0.58333\n127951|0.66667\n127952|0.5\n127953|0.52778\n127954|0.48611\n127955|0.5\n127956|0.5\n127957|0.5\n127958|0.58333\n127959|0.76389\n127960|0.61111\n127961|0.33333\n127962|0.5\n127963|0.5\n127964|0.5\n127965|0.36111\n127966|0.41667\n127967|0.59722\n127968|0.45833\n127969|0.5\n127970|0.40278\n127971|0.38889\n127972|0.30556\n127973|0.25\n127974|0.30556\n127975|0.59722\n127976|0.33333\n127977|0.38889\n127978|0.43056\n127979|0.34722\n127980|0.44444\n127981|0.54167\n127982|0.5\n127983|0.86111\n127984|0.041667\n127985|0.5\n127986|0.77778\n127987|0.73611\n127988|0.68056\n127989|0.55556\n127990|0.45833\n127991|0.47222\n127992|0.45833\n127993|0.61111\n127994|0.45833\n127995|0.43056\n127996|0.33333\n127997|0.5\n127998|0.33333\n127999|0.36111\n128000|0.30556\n128001|0.44444\n128002|0.43056\n128003|0.5\n128004|0.55556\n128005|0.41667\n128006|0.5\n128007|0.43056\n128008|0.5\n128009|0.36111\n128010|0.625\n128011|0.41667\n128012|0.25\n128013|0.45833\n128014|0.52778\n128015|0.38889\n128016|0.26389\n128017|0.38889\n128018|0.55556\n128019|0.5\n128020|0.27778\n128021|0.26389\n128022|0.30556\n128023|0.55556\n128024|0.27778\n128025|0.38889\n128026|0.58333\n128027|0.55556\n128028|0.44444\n128029|0.29167\n128030|0.51389\n128031|0.43056\n128032|0.26389\n128033|0.56944\n128034|0.5\n128035|0.375\n128036|0.36111\n128037|0.44444\n128038|0.68056\n128039|0.43056\n128040|0.30556\n128041|0.45833\n128042|0.41667\n128043|0.375\n128044|0.55556\n128045|0.63889\n128046|0.59722\n128047|0.25\n128048|0.45833\n128049|0.51389\n128050|0.68056\n128051|0.59722\n128052|0.26389\n128053|0.38889\n128054|0.5\n128055|0.44444\n128056|0.22222\n128057|0.63889\n128058|0.44444\n128059|0.5\n128060|0.48611\n128061|0.54167\n128062|0.5\n128063|0.45833\n128064|0.5\n128065|0.51389\n128066|0.70833\n128067|0.54167\n128068|0.36111\n128069|0.44444\n128070|0.5\n128071|0.20833\n128072|0.52778\n128073|0.33333\n128074|0.61111\n128075|0.66667\n128076|0.54167\n128077|0.68056\n128078|0.29167\n128079|0.36111\n128080|0.27778\n128081|0.5\n128082|0.52778\n128083|0.55556\n128084|0.31944\n128085|0.36111\n128086|0.5\n128087|0.51389\n128088|0.15278\n128089|0.31944\n128090|0.47222\n128091|0.38889\n128092|0.55556\n128093|0.36111\n128094|0.23611\n128095|0.23611\n128096|0.25\n128097|0.18056\n128098|0.40278\n128099|0.54167\n128100|0.20833\n128101|0.54167\n128102|0.75\n128103|0.36111\n128104|0.51389\n128105|0.22222\n128106|0.625\n128107|0.44444\n128108|0.44444\n128109|0.41667\n128110|0.91667\n128111|0.65278\n128112|0.41667\n128113|0.63889\n128114|0.625\n128115|0.44444\n128116|0.38889\n128117|0.22222\n128118|0.38889\n128119|0.38889\n128120|0.5\n128121|0.5\n128122|0.34722\n128123|0.5\n128124|0.66667\n128125|0.30556\n128126|0.48611\n128127|0.5\n128128|0.47222\n128129|0.52778\n128130|0.34722\n128131|0.65278\n128132|0.55556\n128133|0.47222\n128134|0.069444\n128135|0.15278\n128136|0.26389\n128137|0.5\n128138|0.58333\n128139|0.41667\n128140|0.13889\n128141|0.13889\n128142|0.23611\n128143|0.31944\n128144|0.52778\n128145|0.38889\n128146|0.15278\n128147|0.25\n128148|0.22222\n128149|0.29167\n128150|0.33333\n128151|0.5\n128152|0.34722\n128153|0.5\n128154|0.34722\n128155|0.45833\n128156|0.34722\n128157|0.47222\n128158|0.51389\n128159|0.15278\n128160|0.33333\n128161|0.30556\n128162|0.48611\n128163|0.27778\n128164|0.68056\n128165|0.125\n128166|0.43056\n128167|0.33333\n128168|0.52778\n128169|0.26389\n128170|0.23611\n128171|0.5\n128172|0.30556\n128173|0.5\n128174|0.44444\n128175|0.013889\n128176|0.79167\n128177|0.38889\n128178|0.63889\n128179|0.19444\n128180|0.58333\n128181|0.34722\n128182|0.59722\n128183|0.33333\n128184|0.55556\n128185|0.30556\n128186|0.44444\n128187|0.43056\n128188|0.375\n128189|0.5\n128190|0.31944\n128191|0.34722\n128192|0.61111\n128193|0.44444\n128194|0.5\n128195|0.61111\n128196|0.44444\n128197|0.38889\n128198|0.33333\n128199|0.41667\n128200|0.44444\n128201|0.36111\n128202|0.375\n128203|0.61111\n128204|0.5\n128205|0.88889\n128206|0.44444\n128207|0.56944\n128208|0.5\n128209|0.5\n128210|0.56944\n128211|0.5\n128212|0.65278\n128213|0.5\n128214|0.625\n128215|0.63889\n128216|0.44444\n128217|0.38889\n128218|0.27778\n128219|0.66667\n128220|0.63889\n128221|0.65278\n128222|0.5\n128223|0.48611\n128224|0.43056\n128225|0.47222\n128226|0.36111\n128227|0.47222\n128228|0.52778\n128229|0.5\n128230|0.5\n128231|0.30556\n128232|0.47222\n128233|0.61111\n128234|0.5\n128235|0.43056\n128236|0.58333\n128237|0.65278\n128238|0.56944\n128239|0.48611\n128240|0.625\n128241|0.40278\n128242|0.45833\n128243|0.48611\n128244|0.41667\n128245|0.5\n128246|0.5\n128247|0.19444\n128248|0.44444\n128249|0.38889\n128250|0.38889\n128251|0.68056\n128252|0.77778\n128253|0.61111\n128254|0.44444\n128255|0.5\n128256|0.45833\n128257|0.5\n128258|0.80556\n128259|0.75\n128260|0.625\n128261|0.65278\n128262|0.55556\n128263|0.38889\n128264|0.77778\n128265|0.41667\n128266|0.5\n128267|0.68056\n128268|0.5\n128269|0.45833\n128270|0.45833\n128271|0.54167\n128272|0.5\n128273|0.5\n128274|0.5\n128275|0.51389\n128276|0.66667\n128277|0.5\n128278|0.58333\n128279|0.52778\n128280|0.5\n128281|0.5\n128282|0.40278\n128283|0.44444\n128284|0.66667\n128285|0.59722\n128286|0.44444\n128287|0.625\n128288|0.44444\n128289|0.52778\n128290|0.5\n128291|0.52778\n128292|0.56944\n128293|0.5\n128294|0.5\n128295|0.45833\n128296|0.5\n128297|0.5\n128298|0.61111\n128299|0.59722\n128300|0.70833\n128301|0.5\n128302|0.5\n128303|0.44444\n128304|0.11111\n128305|0.55556\n128306|0.38889\n128307|0.58333\n128308|0.5\n128309|0.66667\n128310|0.56944\n128311|0.5\n128312|0.5\n128313|0.5\n128314|0.58333\n128315|0.5\n128316|0.33333\n128317|0.66667\n128318|0.48611\n128319|0.5\n128320|0.5\n128321|0.80556\n128322|0.52778\n128323|0.5\n128324|0.30556\n128325|0.5\n128326|0.5\n128327|0.5\n128328|0.5\n128329|0.43056\n128330|0.52778\n128331|0.43056\n128332|0.44444\n128333|0.48611\n128334|0.45833\n128335|0.5\n128336|0.5\n128337|0.38889\n128338|0.29167\n128339|0.51389\n128340|0.5\n128341|0.5\n128342|0.5\n128343|0.56944\n128344|0.59722\n128345|0.55556\n128346|0.59722\n128347|0.5\n128348|0.56944\n128349|0.5\n128350|0.47222\n128351|0.66667\n128352|0.63889\n128353|0.51389\n128354|0.5\n128355|0.65278\n128356|0.52778\n128357|0.5\n128358|0.54167\n128359|0.63889\n128360|0.41667\n128361|0.51389\n128362|0.625\n128363|0.5\n128364|0.5\n128365|0.5\n128366|0.125\n128367|0.55556\n128368|0.56944\n128369|0.5\n128370|0.55556\n128371|0.5\n128372|0.5\n128373|0.375\n128374|0.54167\n128375|0.5\n128376|0.54167\n128377|0.5\n128378|0.5\n128379|0.5\n128380|0.56944\n128381|0.5\n128382|0.51389\n128383|0.5\n128384|0.55556\n128385|0.75\n128386|0.68056\n128387|0.44444\n128388|0.43056\n128389|0.54167\n128390|0.51389\n128391|0.45833\n128392|0.5\n128393|0.55556\n128394|0.59722\n128395|0.5\n128396|0.5\n128397|0.59722\n128398|0.65278\n128399|0.5\n128400|0.55556\n128401|0.5\n128402|0.45833\n128403|0.5\n128404|0.5\n128405|0.5\n128406|0.51389\n128407|0.5\n128408|0.5\n128409|0.38889\n128410|0.63889\n128411|0.55556\n128412|0.54167\n128413|0.48611\n128414|0.55556\n128415|0.36111\n128416|0.66667\n128417|0.5\n128418|0.61111\n128419|0.5\n128420|0.54167\n128421|0.54167\n128422|0.59722\n128423|0.38889\n128424|0.55556\n128425|0.47222\n128426|0.73611\n128427|0.51389\n128428|0.5\n128429|0.47222\n128430|0.40278\n128431|0.69444\n128432|0.5\n128433|0.5\n128434|0.48611\n128435|0.66667\n128436|0.58333\n128437|0.5\n128438|0.34722\n128439|0.77778\n128440|0.5\n128441|0.65278\n128442|0.875\n128443|0.55556\n128444|0.70833\n128445|0.84722\n128446|0.52778\n128447|0.5\n128448|0.33333\n128449|0.44444\n128450|0.70833\n128451|0.5\n128452|0.52778\n128453|0.5\n128454|0.81944\n128455|0.68056\n128456|0.5\n128457|0.48611\n128458|0.375\n128459|0\n128460|0.66667\n128461|0.33333\n128462|0.625\n128463|0.5\n128464|0.55556\n128465|0.36111\n128466|0.59722\n128467|0.625\n128468|0.33333\n128469|0.52778\n128470|0.54167\n128471|0.5\n128472|0.61111\n128473|0.5\n128474|0.45833\n128475|0.61111\n128476|0.44444\n128477|0.56944\n128478|0.5\n128479|0.34722\n128480|0.44444\n128481|0.56944\n128482|0.27778\n128483|0.5\n128484|0.69444\n128485|0.75\n128486|0.5\n128487|0.44444\n128488|0.59722\n128489|0.33333\n128490|0.88889\n128491|0.375\n128492|0.40278\n128493|0.63889\n128494|0.52778\n128495|0.72222\n128496|0.61111\n128497|0.5\n128498|0.75\n128499|0.61111\n128500|0.38889\n128501|0.5\n128502|0.43056\n128503|0.43056\n128504|0.5\n128505|0.63889\n128506|0.5\n128507|0.45833\n128508|0.61111\n128509|0.5\n128510|0.47222\n128511|0.59722\n128512|0.65278\n128513|0.52778\n128514|0.36111\n128515|0.47222\n128516|0.25\n128517|0.51389\n128518|0.47222\n128519|0.38889\n128520|0.70833\n128521|0.5\n128522|0.36111\n128523|0.72222\n128524|0.54167\n128525|0.625\n128526|0.5\n128527|0.33333\n128528|0.77778\n128529|0.66667\n128530|0.52778\n128531|0.66667\n128532|0.27778\n128533|0.29167\n128534|0.54167\n128535|0.43056\n128536|0.61111\n128537|0.5\n128538|0.5\n128539|0.54167\n128540|0.73611\n128541|0.31944\n128542|0.52778\n128543|0.625\n128544|0.40278\n128545|0.069444\n128546|0.55556\n128547|0.041667\n128548|0.20833\n128549|0.40278\n128550|0.26389\n128551|0.36111\n128552|0.55556\n128553|0.5\n128554|0.38889\n128555|0.5\n128556|0.375\n128557|0.72222\n128558|0.33333\n128559|0.25\n128560|0.26389\n128561|0.48611\n128562|0.48611\n128563|0.80556\n128564|0.5\n128565|0.51389\n128566|0.81944\n128567|0.86111\n128568|0.66667\n128569|0.15278\n128570|0.30556\n128571|0.51389\n128572|0.76389\n128573|0.41667\n128574|0.40278\n128575|0.36111\n128576|0.5\n128577|0.61111\n128578|0.5\n128579|0.51389\n128580|0.52778\n128581|0.55556\n128582|0.55556\n128583|0.44444\n128584|0.59722\n128585|0.51389\n128586|0.48611\n128587|0.625\n128588|0.56944\n128589|0.48611\n128590|0.48611\n128591|0.56944\n128592|0.55556\n128593|0.56944\n128594|0.75\n128595|0.44444\n128596|0.19444\n128597|0.41667\n128598|0.52778\n128599|0.68056\n128600|0.59722\n128601|0.5\n128602|0.68056\n128603|0.47222\n128604|0.81944\n128605|0.5\n128606|0.54167\n128607|0.59722\n128608|0.38889\n128609|0.44444\n128610|0.61111\n128611|0.44444\n128612|0.70833\n128613|0.5\n128614|0.59722\n128615|0.61111\n128616|0.52778\n128617|0.65278\n128618|0.44444\n128619|0.52778\n128620|0.40278\n128621|0.77778\n128622|0.54167\n128623|0.65278\n128624|0.70833\n128625|0.69444\n128626|0.36111\n128627|0.38889\n128628|0.5\n128629|0.66667\n128630|0.40278\n128631|0.61111\n128632|0.5\n128633|0.51389\n128634|0.59722\n128635|0.069444\n128636|0.38889\n128637|0.73611\n128638|0.625\n128639|0.5\n128640|0.5\n128641|0.5\n128642|0.75\n128643|0.5\n128644|0.76389\n128645|0.48611\n128646|0.66667\n128647|0.5\n128648|0.56944\n128649|0.69444\n128650|0.55556\n128651|0.22222\n128652|0.56944\n128653|0.625\n128654|0.52778\n128655|0.65278\n128656|0.54167\n128657|0.56944\n128658|0.73611\n128659|0.61111\n128660|0.33333\n128661|0.5\n128662|0.51389\n128663|0.5\n128664|0.26389\n128665|0.375\n128666|0.52778\n128667|0.54167\n128668|0.65278\n128669|0.65278\n128670|0.61111\n128671|0.63889\n128672|0.68056\n128673|0.79167\n128674|0.52778\n128675|0.55556\n128676|0.5\n128677|0.44444\n128678|0.76389\n128679|0.5\n128680|0.77778\n128681|0.61111\n128682|0.68056\n128683|0.44444\n128684|0.66667\n128685|0.51389\n128686|0.29167\n128687|0.5\n128688|0.5\n128689|0.55556\n128690|0.61111\n128691|0.625\n128692|0.51389\n128693|0.5\n128694|0.54167\n128695|0.29167\n128696|0.5\n128697|0.5\n128698|0.38889\n128699|0.52778\n128700|0.44444\n128701|0.55556\n128702|0.52778\n128703|0.56944\n128704|0.38889\n128705|0.61111\n128706|0.63889\n128707|0.51389\n128708|0.27778\n128709|0.56944\n128710|0.23611\n128711|0.66667\n128712|0.73611\n128713|0.52778\n128714|0.51389\n128715|0.097222\n128716|0.5\n128717|0.54167\n128718|0.5\n128719|0.81944\n128720|0.55556\n128721|0.5\n128722|0.34722\n128723|0.52778\n128724|0.70833\n128725|0.66667\n128726|0.45833\n128727|0.61111\n128728|0.77778\n128729|0.55556\n128730|0.5\n128731|0.44444\n128732|0.66667\n128733|0.38889\n128734|0.54167\n128735|0.43056\n128736|0.65278\n128737|0.75\n128738|0.5\n128739|0.59722\n128740|0.38889\n128741|0.69444\n128742|0.5\n128743|0.52778\n128744|0.61111\n128745|0.55556\n128746|0.52778\n128747|0.48611\n128748|0.5\n128749|0.5\n128750|0.72222\n128751|0.5\n128752|0.66667\n128753|0.61111\n128754|0.58333\n128755|0.58333\n128756|0.56944\n128757|0.59722\n128758|0.55556\n128759|0.77778\n128760|0.36111\n128761|0.48611\n128762|0.31944\n128763|0.5\n128764|0.48611\n128765|0.61111\n128766|0.55556\n128767|0.43056\n128768|0.55556\n128769|0.5\n128770|0.56944\n128771|0.61111\n128772|0.5\n128773|0.40278\n128774|0.40278\n128775|0.52778\n128776|0.625\n128777|0.54167\n128778|0.63889\n128779|0.38889\n128780|0.13889\n128781|0.47222\n128782|0.77778\n128783|0.59722\n128784|0.61111\n128785|0.5\n128786|0.47222\n128787|0.56944\n128788|0.83333\n128789|0.52778\n128790|0.44444\n128791|0.33333\n128792|0.44444\n128793|0.69444\n128794|0.54167\n128795|0.59722\n128796|0.58333\n128797|0.375\n128798|0.33333\n128799|0.5\n128800|0.47222\n128801|0.69444\n128802|0.33333\n128803|0.5\n128804|0.54167\n128805|0.5\n128806|0.38889\n128807|0.59722\n128808|0.55556\n128809|0.52778\n128810|0.5\n128811|0.33333\n128812|0.5\n128813|0.5\n128814|0.61111\n128815|0.40278\n128816|0.45833\n128817|0.52778\n128818|0.5\n128819|0.54167\n128820|0.70833\n128821|0.5\n128822|0.84722\n128823|0.63889\n128824|0.63889\n128825|0.34722\n128826|0.43056\n128827|0.5\n128828|0.30556\n128829|0.36111\n128830|0.44444\n128831|0.5\n128832|0.48611\n128833|0.72222\n128834|0.52778\n128835|0.5\n128836|0.5\n128837|0.54167\n128838|0.65278\n128839|0.65278\n128840|0.36111\n128841|0.51389\n128842|0.44444\n128843|0.52778\n128844|0.54167\n128845|0.38889\n128846|0.5\n128847|0.43056\n128848|0.44444\n128849|0.5\n128850|0.56944\n128851|0.45833\n128852|0.38889\n128853|0.48611\n128854|0.55556\n128855|0.47222\n128856|0.5\n128857|0.52778\n128858|0.38889\n128859|0.5\n128860|0.66667\n128861|0.69444\n128862|0.75\n128863|0.5\n128864|0.47222\n128865|0.5\n128866|0.58333\n128867|0.5\n128868|0.5\n128869|0.5\n128870|0.22222\n128871|0.55556\n128872|0.81944\n128873|0.61111\n128874|0.55556\n128875|0.625\n128876|0.5\n128877|0.22222\n128878|0.76389\n128879|0.88889\n128880|0.54167\n128881|0.55556\n128882|0.625\n128883|0.34722\n128884|0.5\n128885|0.55556\n128886|0.54167\n128887|0.5\n128888|0.52778\n128889|0.5\n128890|0.48611\n128891|0.44444\n128892|0.44444\n128893|0.59722\n128894|0.66667\n128895|0.54167\n128896|0.41667\n128897|0.52778\n128898|0.55556\n128899|0.52778\n128900|0.56944\n128901|0.63889\n128902|0.61111\n128903|0.41667\n128904|0.34722\n128905|0.61111\n128906|0.63889\n128907|0.5\n128908|0.375\n128909|0.5\n128910|0.5\n128911|0.58333\n128912|0.5\n128913|0.5\n128914|0.56944\n128915|0.65278\n128916|0.13889\n128917|0.63889\n128918|0.5\n128919|0.5\n128920|0.33333\n128921|0.58333\n128922|0.5\n128923|0.55556\n128924|0.5\n128925|0.81944\n128926|0.51389\n128927|0.23611\n128928|0.18056\n128929|0.77778\n128930|0.5\n128931|0.5\n128932|0.5\n128933|0.5\n128934|0.5\n128935|0.47222\n128936|0.5\n128937|0.52778\n128938|0.55556\n128939|0.5\n128940|0.20833\n128941|0.81944\n128942|0.22222\n128943|0.77778\n128944|0.625\n128945|0.43056\n128946|0.75\n128947|0.36111\n128948|0.43056\n128949|0.5\n128950|0.5\n128951|0.56944\n128952|0.40278\n128953|0.5\n128954|0.34722\n128955|0.5\n128956|0.5\n128957|0.63889\n128958|0.5\n128959|0.5\n128960|0.58333\n128961|0.5\n128962|0.5\n128963|0.5\n128964|0.5\n128965|0.5\n128966|0.51389\n128967|0.43056\n128968|0.48611\n128969|0.5\n128970|0.5\n128971|0.625\n128972|0.5\n128973|0.5\n128974|0.58333\n128975|0.5\n128976|0.52778\n128977|0.48611\n128978|0.69444\n128979|0.41667\n128980|0.5\n128981|0.41667\n128982|0.51389\n128983|0.5\n128984|0.43056\n128985|0.56944\n128986|0.5\n128987|0.66667\n128988|0.70833\n128989|0.72222\n128990|0.76389\n128991|0.69444\n128992|0.63889\n128993|0.69444\n128994|0.5\n128995|0.44444\n128996|0.25\n128997|0.51389\n128998|0.5\n128999|0.66667\n129000|0.59722\n129001|0.90278\n129002|0.5\n129003|0.5\n129004|0.61111\n129005|0.44444\n129006|0.38889\n129007|0.31944\n129008|0.33333\n129009|0.5\n129010|0.56944\n129011|0.59722\n129012|0.58333\n129013|0.5\n129014|0.75\n129015|0.59722\n129016|0.51389\n129017|0.5\n129018|0.72222\n129019|0.65278\n129020|0.68056\n129021|0.5\n129022|0.68056\n129023|0.56944\n129024|0.70833\n129025|0.47222\n129026|0.72222\n129027|0.25\n129028|0.73611\n129029|0.52778\n129030|0.54167\n129031|0.52778\n129032|0.5\n129033|0.31944\n129034|0.73611\n129035|0.81944\n129036|0.29167\n129037|0.61111\n129038|0.77778\n129039|0.66667\n129040|0.5\n129041|0.52778\n129042|0.375\n129043|0.5\n129044|0.54167\n129045|0.54167\n129046|0.44444\n129047|0.72222\n129048|0.5\n129049|0.70833\n129050|0.40278\n129051|0.5\n129052|0.51389\n129053|0.52778\n129054|0.36111\n129055|0.55556\n129056|0.55556\n129057|0.38889\n129058|0.5\n129059|0.5\n129060|0.55556\n129061|0.43056\n129062|0.41667\n129063|0.79167\n129064|0.77778\n129065|0.66667\n129066|0.73611\n129067|0.47222\n129068|0.73611\n129069|0.041667\n129070|0.66667\n129071|0.94444\n129072|0.45833\n129073|0.68056\n129074|0.65278\n129075|0.97222\n129076|0.5\n129077|0.43056\n129078|0.61111\n129079|0.5\n129080|0.48611\n129081|0.44444\n129082|0.55556\n129083|0.34722\n129084|0.44444\n129085|0.41667\n129086|0.5\n129087|0.5\n129088|0.5\n129089|0.43056\n129090|0.27778\n129091|0.5\n129092|0.75\n129093|0.25\n129094|0.5\n129095|0.56944\n129096|0.5\n129097|0.63889\n129098|0.5\n129099|0.375\n129100|0.69444\n129101|0.33333\n129102|0.55556\n129103|0.45833\n129104|0.69444\n129105|0.45833\n129106|0.52778\n129107|0.61111\n129108|0.47222\n129109|0.41667\n129110|0.33333\n129111|0.52778\n129112|0.5\n129113|0.5\n129114|0.38889\n129115|0.54167\n129116|0.52778\n129117|0.5\n129118|0.5\n129119|0.66667\n129120|0.52778\n129121|0.56944\n129122|0.5\n129123|0.83333\n129124|0.44444\n129125|0.5\n129126|0.58333\n129127|0.5\n129128|0.54167\n129129|0.43056\n129130|0.5\n129131|0.5\n129132|0.375\n129133|0.5\n129134|0.58333\n129135|0.55556\n129136|0.25\n129137|0.55556\n129138|0.33333\n129139|0.55556\n129140|0.5\n129141|0.5\n129142|0.52778\n129143|0.083333\n129144|0.40278\n129145|0.5\n129146|0.51389\n129147|0.5\n129148|0.51389\n129149|0.5\n129150|0.5\n129151|0.56944\n129152|0.5\n129153|0.54167\n129154|0.45833\n129155|0.5\n129156|0.41667\n129157|0.51389\n129158|0.54167\n129159|0.38889\n129160|0.48611\n129161|0.5\n129162|0.29167\n129163|0.22222\n129164|0.5\n129165|0.72222\n129166|0.36111\n129167|0.19444\n129168|0.5\n129169|0.61111\n129170|0.33333\n129171|0.56944\n129172|0.5\n129173|0.48611\n129174|0.47222\n129175|0.55556\n129176|0.5\n129177|0.84722\n129178|0.55556\n129179|0.61111\n129180|0.72222\n129181|0.48611\n129182|0.45833\n129183|0.5\n129184|0.58333\n129185|0.5\n129186|0.38889\n129187|0.5\n129188|0.5\n129189|0.59722\n129190|0.69444\n129191|0.43056\n129192|0.65278\n129193|0.51389\n129194|0.58333\n129195|0.84722\n129196|0.56944\n129197|0.16667\n129198|0.44444\n129199|0.51389\n129200|0.56944\n129201|0.56944\n129202|0.5\n129203|0.11111\n129204|0.26389\n129205|0.72222\n129206|0.44444\n129207|0.68056\n129208|0.5\n129209|0.58333\n129210|0.65278\n129211|0.73611\n129212|0.5\n129213|0.51389\n129214|0.625\n129215|0.5\n129216|0.41667\n129217|0.5\n129218|0.38889\n129219|0.54167\n129220|0.875\n129221|0.55556\n129222|0.56944\n129223|0.41667\n129224|0.43056\n129225|0.45833\n129226|0.58333\n129227|0.59722\n129228|0.5\n129229|0.63889\n129230|0.56944\n129231|0.5\n129232|0.5\n129233|0.54167\n129234|0.51389\n129235|0.5\n129236|0.44444\n129237|0.52778\n129238|0.51389\n129239|0.56944\n129240|0.44444\n129241|0.47222\n129242|0.36111\n129243|0.625\n129244|0.625\n129245|0.45833\n129246|0.52778\n129247|0.73611\n129248|0.72222\n129249|0.51389\n129250|0.47222\n129251|0.36111\n129252|0.375\n129253|0.29167\n129254|0.54167\n129255|0.55556\n129256|0.36111\n129257|0.27778\n129258|0.56944\n129259|0.18056\n129260|0.5\n129261|0.041667\n129262|0.51389\n129263|0.40278\n129264|0.55556\n129265|0.56944\n129266|0.52778\n129267|0.73611\n129268|0.52778\n129269|0.45833\n129270|0.66667\n129271|0.65278\n129272|0.52778\n129273|0.38889\n129274|0.33333\n129275|0.44444\n129276|0.34722\n129277|0.77778\n129278|0.77778\n129279|0.54167\n129280|0.72222\n129281|0.75\n129282|0.86111\n129283|0.66667\n129284|0.70833\n129285|0.66667\n129286|0.56944\n129287|0.84722\n129288|0.79167\n129289|0.61111\n129290|0.56944\n129291|0.70833\n129292|0.75\n129293|0.31944\n129294|0.70833\n129295|0.69444\n129296|0.36111\n129297|0.18056\n129298|0.43056\n129299|0.26389\n129300|0.40278\n129301|0.70833\n129302|0.5\n129303|0.47222\n129304|0.5\n129305|0.5\n129306|0.51389\n129307|0.70833\n129308|0.69444\n129309|0.52778\n129310|0.73611\n129311|0.73611\n129312|0.36111\n129313|0.44444\n129314|0.73611\n129315|0.44444\n129316|0.13889\n129317|0.23611\n129318|0.5\n129319|0.59722\n129320|0.84722\n129321|0.80556\n129322|0.5\n129323|0.72222\n129324|0.81944\n129325|0.63889\n129326|0.31944\n129327|0.66667\n129328|0.5\n129329|0.59722\n129330|0.59722\n129331|0.55556\n129332|0.26389\n129333|0.51389\n129334|0.5\n129335|0.59722\n129336|0.36111\n129337|0.47222\n129338|0.44444\n129339|0.38889\n129340|0.5\n129341|0.38889\n129342|0.59722\n129343|0.47222\n129344|0.65278\n129345|0.77778\n129346|0.79167\n129347|0.65278\n129348|0.58333\n129349|0.43056\n129350|0.56944\n129351|0.41667\n129352|0.5\n129353|0.5\n129354|0.40278\n129355|0.5\n129356|0.48611\n129357|0.27778\n129358|0.5\n129359|0.5\n129360|0.625\n129361|0.5\n129362|0.5\n129363|0.56944\n129364|0.5\n129365|0.86111\n129366|0.65278\n129367|0.70833\n129368|0.58333\n129369|0.54167\n129370|0.63889\n129371|0.55556\n129372|0.61111\n129373|0.5\n129374|0.73611\n129375|0.79167\n129376|0.68056\n129377|0.77778\n129378|0.68056\n129379|0.76389\n129380|0.58333\n129381|0.47222\n129382|0.5\n129383|0.5\n129384|0.52778\n129385|0.5\n129386|0.625\n129387|0.56944\n129388|0.61111\n129389|0.61111\n129390|0.80556\n129391|0.44444\n129392|0.23611\n129393|0.5\n129394|0.40278\n129395|0.44444\n129396|0.61111\n129397|0.56944\n129398|0.51389\n129399|0.68056\n129400|0.5\n129401|0.5\n129402|0.40278\n129403|0.76389\n129404|0.63889\n129405|0.52778\n129406|0.51389\n129407|0.5\n129408|0.38889\n129409|0.40278\n129410|0.55556\n129411|0.44444\n129412|0.61111\n129413|0.43056\n129414|0.52778\n129415|0.625\n129416|0.54167\n129417|0.34722\n129418|0.44444\n129419|0.41667\n129420|0.73611\n129421|0.5\n129422|0.52778\n129423|0.55556\n129424|0.55556\n129425|0.23611\n129426|0.63889\n129427|0.38889\n129428|0.52778\n129429|0.47222\n129430|0.40278\n129431|0.55556\n129432|0.58333\n129433|0.43056\n129434|0.5\n129435|0.43056\n129436|0.5\n129437|0.58333\n129438|0.5\n129439|0.5\n129440|0.58333\n129441|0.47222\n129442|0.48611\n129443|0.48611\n129444|0.5\n129445|0.55556\n129446|0.44444\n129447|0.43056\n129448|0.52778\n129449|0.5\n129450|0.5\n129451|0.56944\n129452|0.5\n129453|0.55556\n129454|0.56944\n129455|0.54167\n129456|0.5\n129457|0.51389\n129458|0.5\n129459|0.5\n129460|0.5\n129461|0.61111\n129462|0.59722\n129463|0.44444\n129464|0.27778\n129465|0.5\n129466|0.5\n129467|0.69444\n129468|0.5\n129469|0.65278\n129470|0.47222\n129471|0.5\n129472|0.55556\n129473|0.52778\n129474|0.59722\n129475|0.5\n129476|0.5\n129477|0.59722\n129478|0.52778\n129479|0.26389\n129480|0.5\n129481|0.58333\n129482|0.44444\n129483|0.31944\n129484|0.58333\n129485|0.5\n129486|0.5\n129487|0.51389\n129488|0.45833\n129489|0.48611\n129490|0.47222\n129491|0.55556\n129492|0.52778\n129493|0.54167\n129494|0.47222\n129495|0.55556\n129496|0.80556\n129497|0.69444\n129498|0.48611\n129499|0.47222\n129500|0.72222\n129501|0.75\n129502|0.48611\n129503|0.5\n129504|0.5\n129505|0.58333\n129506|0.65278\n129507|0.48611\n129508|0.22222\n129509|0.5\n129510|0.51389\n129511|0.5\n129512|0.47222\n129513|0.79167\n129514|0.5\n129515|0.29167\n129516|0.56944\n129517|0.77778\n129518|0.75\n129519|0.5\n129520|0.63889\n129521|0.61111\n129522|0.55556\n129523|0.38889\n129524|0.55556\n129525|0.65278\n129526|0.19444\n129527|0.38889\n129528|0.81944\n129529|0.27778\n129530|0.43056\n129531|0.55556\n129532|0.47222\n129533|0.5\n129534|0.375\n129535|0.5\n129536|0.65278\n129537|0.45833\n129538|0.5\n129539|0.5\n129540|0.40278\n129541|0.27778\n129542|0.5\n129543|0.72222\n129544|0.33333\n129545|0.55556\n129546|0.5\n129547|0.80556\n129548|1\n129549|0.81944\n129550|0.51389\n129551|0.63889\n129552|0.47222\n129553|0.86111\n129554|0.81944\n129555|0.59722\n129556|0.66667\n129557|0.75\n129558|0.875\n129559|0.72222\n129560|0.83333\n129561|0.22222\n129562|0.77778\n129563|0.48611\n129564|0.48611\n129565|0.47222\n129566|0.16667\n129567|0.5\n129568|0.25\n129569|0.38889\n129570|0.40278\n129571|0.40278\n129572|0.27778\n129573|0.75\n129574|0.47222\n129575|0.20833\n129576|0.93056\n129577|0.5\n129578|0.72222\n129579|0.41667\n129580|0.26389\n129581|0.5\n129582|0.51389\n129583|0.34722\n129584|0.18056\n129585|0.5\n129586|0.40278\n129587|0.80556\n129588|0.27778\n129589|0.375\n129590|0.56944\n129591|0.625\n129592|0.86111\n129593|0.73611\n129594|0.73611\n129595|0.83333\n129596|0.79167\n129597|0.27778\n129598|0.26389\n129599|0.72222\n129600|0.66667\n129601|0.55556\n129602|0.65278\n129603|0.5\n129604|0.51389\n129605|0.5\n129606|0.5\n129607|0.58333\n129608|0.56944\n129609|0.5\n129610|0.22222\n129611|0.75\n129612|0.27778\n129613|0.27778\n129614|0.25\n129615|0.48611\n129616|0.51389\n129617|0.61111\n129618|0.38889\n129619|0.31944\n129620|0.73611\n129621|0.44444\n129622|0.34722\n129623|0.59722\n129624|0.5\n129625|0.5\n129626|0.44444\n129627|0.36111\n129628|0.59722\n129629|0.29167\n129630|0.55556\n129631|0.22222\n129632|0.36111\n129633|0.36111\n129634|0.5\n129635|0.5\n129636|0.56944\n129637|0.23611\n129638|0.51389\n129639|0.31944\n129640|0.65278\n129641|0.38889\n129642|0.45833\n129643|0.56944\n129644|0.48611\n129645|0.5\n129646|0.41667\n129647|0.36111\n129648|0.59722\n129649|0.65278\n129650|0.59722\n129651|0.34722\n129652|0.5\n129653|0.30556\n129654|0.625\n129655|0.56944\n129656|0.5\n129657|0.5\n129658|0.51389\n129659|0.5\n129660|0.63889\n129661|0.56944\n129662|0.59722\n129663|0.61111\n129664|0.5\n129665|0.47222\n129666|0.5\n129667|0.19444\n129668|0.26389\n129669|0.34722\n129670|0.72222\n129671|0.5\n129672|0.66667\n129673|0.66667\n129674|0.55556\n129675|0.58333\n129676|0.5\n129677|0.55556\n129678|0.5\n129679|0.66667\n129680|0.625\n129681|0.61111\n129682|0.58333\n129683|0.16667\n129684|0.58333\n129685|0.5\n129686|0.58333\n129687|0.66667\n129688|0.61111\n129689|0.47222\n129690|0.61111\n129691|0.5\n129692|0.34722\n129693|0.18056\n129694|0.5\n129695|0.375\n129696|0.5\n129697|0.5\n129698|0.41667\n129699|0.40278\n129700|0.5\n129701|0.43056\n129702|0.58333\n129703|0.58333\n129704|0.48611\n129705|0.47222\n129706|0.5\n129707|0.5\n129708|0.5\n129709|0.59722\n129710|0.55556\n129711|0.55556\n129712|0.38889\n129713|0.51389\n129714|0.55556\n129715|0.5\n129716|0.51389\n129717|0.58333\n129718|0.84722\n129719|0.79167\n129720|0.65278\n129721|0.63889\n129722|0.56944\n129723|0.63889\n129724|0.61111\n129725|0.38889\n129726|0.55556\n129727|0.72222\n129728|0.5\n129729|0.51389\n129730|0.51389\n129731|0.5\n129732|0.47222\n129733|0.44444\n129734|0.5\n129735|0.55556\n129736|0.5\n129737|0.59722\n129738|0.5\n129739|0.5\n129740|0.5\n129741|0.56944\n129742|0.15278\n129743|0.22222\n129744|0.54167\n129745|0.56944\n129746|0.5\n129747|0.27778\n129748|0.48611\n129749|0.56944\n129750|0.47222\n129751|0.61111\n129752|0.45833\n129753|0.44444\n129754|0.5\n129755|0.375\n129756|0.625\n129757|0.23611\n129758|0.34722\n129759|0.29167\n129760|0.27778\n129761|0.375\n129762|0.68056\n129763|0.63889\n129764|0.33333\n129765|0.26389\n129766|0.56944\n129767|0.68056\n129768|0.5\n129769|0.69444\n129770|0.5\n129771|0.45833\n129772|0.5\n129773|0.43056\n129774|0.75\n129775|0.66667\n129776|0.68056\n129777|0.65278\n129778|0.65278\n129779|0.5\n129780|0.63889\n129781|0.5\n129782|0.51389\n129783|0.625\n129784|0.52778\n129785|0.52778\n129786|0.54167\n129787|0.5\n129788|0.51389\n129789|0.54167\n129790|0.47222\n129791|0.5\n129792|0.54167\n129793|0.65278\n129794|0.70833\n129795|0.80556\n129796|0.22222\n129797|0.26389\n129798|0.34722\n129799|0.25\n129800|0.5\n129801|0.5\n129802|0.41667\n129803|0.44444\n129804|0.61111\n129805|0.44444\n129806|0.13889\n129807|0.5\n129808|0.5\n129809|0.44444\n129810|0.56944\n129811|0.72222\n129812|0.47222\n129813|0.75\n129814|0.48611\n129815|0.5\n129816|0.38889\n129817|0.80556\n129818|0.5\n129819|0.5\n129820|0.5\n129821|0.33333\n129822|0.36111\n129823|0.5\n129824|0.47222\n129825|0.44444\n129826|0.55556\n129827|0.55556\n129828|0.5\n129829|0.5\n129830|0.52778\n129831|0.44444\n129832|0.40278\n129833|0.45833\n129834|0.55556\n129835|0.52778\n129836|0.54167\n129837|0.5\n129838|0.73611\n129839|0.44444\n129840|0.34722\n129841|0.54167\n129842|0.34722\n129843|0.23611\n129844|0.23611\n129845|0.80556\n129846|0.55556\n129847|0.5\n129848|0.63889\n129849|0.5\n129850|0.52778\n129851|0.54167\n129852|0.45833\n129853|0.51389\n129854|0.36111\n129855|0.34722\n129856|0.55556\n129857|0.59722\n129858|0.54167\n129859|0.47222\n129860|0.61111\n129861|0.52778\n129862|0.58333\n129863|0.625\n129864|0.36111\n129865|0.34722\n129866|0.5\n129867|0.375\n129868|0.31944\n129869|0.43056\n129870|0.41667\n129871|0.069444\n129872|0.34722\n129873|0.31944\n129874|0.20833\n129875|0.23611\n129876|0.375\n129877|0.30556\n129878|0.55556\n129879|0.19444\n129880|0.30556\n129881|0.15278\n129882|0.055556\n129883|0.43056\n129884|0.51389\n129885|0.31944\n129886|0.29167\n129887|0.41667\n129888|0.44444\n129889|0.43056\n129890|0.5\n129891|0.51389\n129892|0.31944\n129893|0.58333\n129894|0.41667\n129895|0.38889\n129896|0.16667\n129897|0.45833\n129898|0.38889\n129899|0.48611\n129900|0.80556\n129901|0.34722\n129902|0.56944\n129903|0.81944\n129904|0.31944\n129905|0.38889\n129906|0.5\n129907|0.5\n129908|0.52778\n129909|0.5\n129910|0.61111\n129911|0.45833\n129912|0.48611\n129913|0.5\n129914|0.38889\n129915|0.5\n129916|0.55556\n129917|0.5\n129918|0.61111\n129919|0.5\n129920|0.55556\n129921|0.5\n129922|0.65278\n129923|0.48611\n129924|0.5\n129925|0.27778\n129926|0.5\n129927|0.5\n129928|0.66667\n129929|0.5\n129930|0.5\n129931|0.5\n129932|0.58333\n129933|0.5\n129934|0.5\n129935|0.5\n129936|0.59722\n129937|0.5\n129938|0.38889\n129939|0.47222\n129940|0.52778\n129941|0.5\n129942|0.70833\n129943|0.84722\n129944|0.44444\n129945|0.625\n129946|0.625\n129947|0.65278\n129948|0.45833\n129949|0.5\n129950|0.43056\n129951|0.5\n129952|0.5\n129953|0.44444\n129954|0.23611\n129955|0.30556\n129956|0.16667\n129957|0.055556\n129958|0.19444\n129959|0.61111\n129960|0.79167\n129961|0.69444\n129962|0.79167\n129963|0.52778\n129964|0.625\n129965|0.5\n129966|0.66667\n129967|0.30556\n129968|0.38889\n129969|0.66667\n129970|0.52778\n129971|0.51389\n129972|0.40278\n129973|0.5\n129974|0.43056\n129975|0.52778\n129976|0.5\n129977|0.51389\n129978|0.5\n129979|0.5\n129980|0.44444\n129981|0.68056\n129982|0.45833\n129983|0.61111\n129984|0.5\n129985|0.5\n129986|0.5\n129987|0.5\n129988|0.5\n129989|0.43056\n129990|0.5\n129991|0.56944\n129992|0.51389\n129993|0.5\n129994|0.68056\n129995|0.44444\n129996|0.41667\n129997|0.77778\n129998|0.45833\n129999|0.52778\n130000|0.83333\n130001|0.55556\n130002|0.58333\n130003|0.81944\n130004|0.5\n130005|0.44444\n130006|0.25\n130007|0.33333\n130008|0.5\n130009|0.41667\n130010|0.5\n130011|0.54167\n130012|0.5\n130013|0.33333\n130014|0.19444\n130015|0.58333\n130016|0.5\n130017|0.59722\n130018|0.625\n130019|0.55556\n130020|0.44444\n130021|0.45833\n130022|0.40278\n130023|0.58333\n130024|0.5\n130025|0.56944\n130026|0.58333\n130027|0.30556\n130028|0.55556\n130029|0.65278\n130030|0.625\n130031|0.63889\n130032|0.75\n130033|0.54167\n130034|0.36111\n130035|0.54167\n130036|0.34722\n130037|0.41667\n130038|0.5\n130039|0.44444\n130040|0.52778\n130041|0.66667\n130042|0.54167\n130043|0.45833\n130044|0.47222\n130045|0\n130046|0.36111\n130047|0.33333\n130048|0.44444\n130049|0.52778\n130050|0.55556\n130051|0.66667\n130052|0.58333\n130053|0.43056\n130054|0.5\n130055|0.54167\n130056|0.5\n130057|0.44444\n130058|0.5\n130059|0.44444\n130060|0.55556\n130061|0.63889\n130062|0.51389\n130063|0.5\n130064|0.51389\n130065|0.43056\n130066|0.47222\n130067|0.25\n130068|0.45833\n130069|0.5\n130070|0.61111\n130071|0.79167\n130072|0.69444\n130073|0.69444\n130074|0.77778\n130075|0.65278\n130076|0.61111\n130077|0.45833\n130078|0.51389\n130079|0.51389\n130080|0.45833\n130081|0.52778\n130082|0.47222\n130083|0.44444\n130084|0.5\n130085|0.58333\n130086|0.45833\n130087|0.5\n130088|0.61111\n130089|0.73611\n130090|0.65278\n130091|0.44444\n130092|0.34722\n130093|0.38889\n130094|0.26389\n130095|0.5\n130096|0.59722\n130097|0.61111\n130098|0.5\n130099|0.5\n130100|0.5\n130101|0.58333\n130102|0.5\n130103|0.41667\n130104|0.125\n130105|0.47222\n130106|0.5\n130107|0.5\n130108|0.45833\n130109|0.38889\n130110|0.55556\n130111|0.5\n130112|0.52778\n130113|0.45833\n130114|0.5\n130115|0.59722\n130116|0.54167\n130117|0.44444\n130118|0.5\n130119|0.69444\n130120|0.70833\n130121|0.83333\n130122|0.55556\n130123|0.5\n130124|0.5\n130125|0.83333\n130126|0.76389\n130127|0.75\n130128|0.90278\n130129|0.77778\n130130|0.61111\n130131|0.52778\n130132|0.61111\n130133|0.59722\n130134|0.13889\n130135|0.80556\n130136|0.625\n130137|0.70833\n130138|0.70833\n130139|0.73611\n130140|0.83333\n130141|0.73611\n130142|0.61111\n130143|0.75\n130144|0.72222\n130145|0.91667\n130146|0.88889\n130147|0.88889\n130148|0.94444\n130149|0.72222\n130150|0.72222\n130151|0.79167\n130152|0.76389\n130153|0.66667\n130154|0.61111\n130155|0.5\n130156|0.375\n130157|0.54167\n130158|0.5\n130159|0.5\n130160|0.45833\n130161|0.54167\n130162|0.5\n130163|0.61111\n130164|0.19444\n130165|0.5\n130166|0.5\n130167|0.51389\n130168|0.52778\n130169|0.59722\n130170|0.47222\n130171|0.43056\n130172|0.48611\n130173|0.45833\n130174|0.5\n130175|0.31944\n130176|0.43056\n130177|0.5\n130178|0.47222\n130179|0.5\n130180|0.5\n130181|0.44444\n130182|0.44444\n130183|0.29167\n130184|0.83333\n130185|0.86111\n130186|0.55556\n130187|0.88889\n130188|0.5\n130189|0.56944\n130190|0.33333\n130191|0.38889\n130192|0.47222\n130193|0.66667\n130194|0.29167\n130195|0.33333\n130196|0.097222\n130197|0.5\n130198|0.51389\n130199|0.625\n130200|0.59722\n130201|0.5\n130202|0.5\n130203|0.63889\n130204|0.63889\n130205|0.56944\n130206|0.48611\n130207|0.34722\n130208|0.65278\n130209|0.51389\n130210|0.61111\n130211|0.5\n130212|0.59722\n130213|0.55556\n130214|0.5\n130215|0.5\n130216|0.5\n130217|0.68056\n130218|0.5\n130219|0.58333\n130220|0.5\n130221|0.63889\n130222|0.65278\n130223|0.013889\n130224|0.013889\n130225|0.70833\n130226|0.5\n130227|0.38889\n130228|0.33333\n130229|0.36111\n130230|0.30556\n130231|0.40278\n130232|0.5\n130233|0.59722\n130234|0.27778\n130235|0.47222\n130236|0.40278\n130237|0.47222\n130238|0.52778\n130239|0.5\n130240|0.33333\n130241|0.375\n130242|0.375\n130243|0.5\n130244|0.5\n130245|0.40278\n130246|0.27778\n130247|0.375\n130248|0.40278\n130249|0.30556\n130250|0.16667\n130251|0.30556\n130252|0.56944\n130253|0.61111\n130254|0.5\n130255|0.65278\n130256|0.66667\n130257|0.52778\n130258|0.44444\n130259|0.5\n130260|0.58333\n130261|0.51389\n130262|0.54167\n130263|0.20833\n130264|0.013889\n130265|0.5\n130266|0.52778\n130267|0.61111\n130268|0.61111\n130269|0.5\n130270|0.55556\n130271|0.47222\n130272|0.40278\n130273|0.30556\n130274|0.5\n130275|0.55556\n130276|0.5\n130277|0.63889\n130278|0.59722\n130279|0.55556\n130280|0.45833\n130281|0.44444\n130282|0.36111\n130283|0.52778\n130284|0.27778\n130285|0.36111\n130286|0.45833\n130287|0.68056\n130288|0.27778\n130289|0.43056\n130290|0.13889\n130291|0.23611\n130292|0.20833\n130293|0.125\n130294|0.27778\n130295|0.069444\n130296|0.11111\n130297|0.30556\n130298|0.68056\n130299|0.25\n130300|0.36111\n130301|0.43056\n130302|0.36111\n130303|0.29167\n130304|0.38889\n130305|0.5\n130306|0.51389\n130307|0.51389\n130308|0.25\n130309|0.25\n130310|0.33333\n130311|0.43056\n130312|0.65278\n130313|0.70833\n130314|0.80556\n130315|0.29167\n130316|0.51389\n130317|0.65278\n130318|0.72222\n130319|0.73611\n130320|0.66667\n130321|0.72222\n130322|0.66667\n130323|0.66667\n130324|0.31944\n130325|0.34722\n130326|0.44444\n130327|0.44444\n130328|0.30556\n130329|0.18056\n130330|0.16667\n130331|0.47222\n130332|0.5\n130333|0.51389\n130334|0.22222\n130335|0.38889\n130336|0.40278\n130337|0.58333\n130338|0.5\n130339|0.56944\n130340|0.27778\n130341|0.5\n130342|0.61111\n130343|0.66667\n130344|0.5\n130345|0.52778\n130346|0.58333\n130347|0.16667\n130348|0.13889\n130349|0.34722\n130350|0.069444\n130351|0.72222\n130352|0.61111\n130353|0.5\n130354|0.44444\n130355|0.66667\n130356|0.66667\n130357|0.66667\n130358|0.79167\n130359|0.76389\n130360|0.80556\n130361|0.73611\n130362|0.75\n130363|0.79167\n130364|0.72222\n130365|0.5\n130366|0.44444\n130367|0.70833\n130368|0.69444\n130369|0.47222\n130370|0.45833\n130371|0.54167\n130372|0.375\n130373|0.125\n130374|0\n130375|0.36111\n130376|0.23611\n130377|0.36111\n130378|0.75\n130379|0.52778\n130380|0.5\n130381|0.47222\n130382|0.47222\n130383|0.65278\n130384|0.45833\n130385|0.44444\n130386|0.61111\n130387|0.625\n130388|0.72222\n130389|0.54167\n130390|0.75\n130391|0.44444\n130392|0.44444\n130393|0.36111\n130394|0.47222\n130395|0.38889\n130396|0.76389\n130397|0.41667\n130398|0.5\n130399|0.5\n130400|0.48611\n130401|0.63889\n130402|0.58333\n130403|0.5\n130404|0.69444\n130405|0.41667\n130406|0.15278\n130407|0.36111\n130408|0.19444\n130409|0.125\n130410|0.29167\n130411|0.29167\n130412|0.27778\n130413|0.31944\n130414|0.16667\n130415|0.34722\n130416|0.11111\n130417|0.26389\n130418|0.18056\n130419|0.18056\n130420|0.20833\n130421|0.083333\n130422|0.22222\n130423|0.44444\n130424|0.58333\n130425|0.52778\n130426|0.625\n130427|0.61111\n130428|0.44444\n130429|0.5\n130430|0.47222\n130431|0.5\n130432|0.45833\n130433|0.86111\n130434|0.55556\n130435|0.56944\n130436|0.61111\n130437|0.69444\n130438|0.59722\n130439|0.65278\n130440|0.44444\n130441|0.58333\n130442|0.58333\n130443|0.54167\n130444|0.44444\n130445|0.5\n130446|0.5\n130447|0.5\n130448|0.77778\n130449|0.61111\n130450|0.5\n130451|0.65278\n130452|0.80556\n130453|0.52778\n130454|0.5\n130455|0.70833\n130456|0.43056\n130457|0.5\n130458|0.5\n130459|0.44444\n130460|0.5\n130461|0.70833\n130462|0.80556\n130463|0.15278\n130464|0.5\n130465|0.38889\n130466|0.34722\n130467|0.44444\n130468|0.69444\n130469|0.75\n130470|0.65278\n130471|0.70833\n130472|0.58333\n130473|0.68056\n130474|0.54167\n130475|0.55556\n130476|0.51389\n130477|0.68056\n130478|0.44444\n130479|0.44444\n130480|0.65278\n130481|0.5\n130482|0.625\n130483|0.22222\n130484|0.5\n130485|0.54167\n130486|0.44444\n130487|0.48611\n130488|0.61111\n130489|0.55556\n130490|0.61111\n130491|0.88889\n130492|0.55556\n130493|0.65278\n130494|0.63889\n130495|0.69444\n130496|0.73611\n130497|0.54167\n130498|0.45833\n130499|0.5\n130500|0.5\n130501|0.70833\n130502|0.54167\n130503|0.66667\n130504|0.79167\n130505|0.77778\n130506|0.72222\n130507|0.84722\n130508|0.80556\n130509|0.77778\n130510|0.77778\n130511|0.81944\n130512|0.58333\n130513|0.66667\n130514|0.77778\n130515|0.75\n130516|0.69444\n130517|0.84722\n130518|0.375\n130519|0.56944\n130520|0.69444\n130521|0.86111\n130522|0.65278\n130523|0.5\n130524|0.52778\n130525|0.68056\n130526|0.80556\n130527|0.5\n130528|0.43056\n130529|0.38889\n130530|0.45833\n130531|0.70833\n130532|0.61111\n130533|0.5\n130534|0.40278\n130535|0.31944\n130536|0.30556\n130537|0.30556\n130538|0.11111\n130539|0.20833\n130540|0.34722\n130541|0.47222\n130542|0.5\n130543|0.56944\n130544|0.5\n130545|0.51389\n130546|0.68056\n130547|0.31944\n130548|0.625\n130549|0.55556\n130550|0.22222\n130551|0.52778\n130552|0.38889\n130553|0.51389\n130554|0.47222\n130555|0.45833\n130556|0.20833\n130557|0.69444\n130558|0.22222\n130559|0.61111\n130560|0.625\n130561|0.31944\n130562|0.63889\n130563|0.5\n130564|0.55556\n130565|0.16667\n130566|0.47222\n130567|0.56944\n130568|0.73611\n130569|0.5\n130570|0.29167\n130571|0.33333\n130572|0.5\n130573|0.81944\n130574|0.65278\n130575|0.56944\n130576|0.81944\n130577|0.73611\n130578|0.77778\n130579|0.41667\n130580|0.47222\n130581|0.375\n130582|0.47222\n130583|0.41667\n130584|0.375\n130585|0.36111\n130586|0.33333\n130587|0.44444\n130588|0.47222\n130589|0.44444\n130590|0.31944\n130591|0.43056\n130592|0.19444\n130593|0.44444\n130594|0.51389\n130595|0.58333\n130596|0.83333\n130597|0.93056\n130598|0.58333\n130599|0.79167\n130600|0.69444\n130601|0.69444\n130602|0.5\n130603|0.625\n130604|0.70833\n130605|0.72222\n130606|0.44444\n130607|0.19444\n130608|0.13889\n130609|0.22222\n130610|0.16667\n130611|0.30556\n130612|0.33333\n130613|0.66667\n130614|0.61111\n130615|0.55556\n130616|0.54167\n130617|0.45833\n130618|0.55556\n130619|0.5\n130620|0.55556\n130621|0.5\n130622|0.5\n130623|0.51389\n130624|0.52778\n130625|0.5\n130626|0.5\n130627|0.47222\n130628|0.55556\n130629|0.31944\n130630|0.375\n130631|0.38889\n130632|0.55556\n130633|0.41667\n130634|0.52778\n130635|0.58333\n130636|0.40278\n130637|0.77778\n130638|0.44444\n130639|0.36111\n130640|0.41667\n130641|0.55556\n130642|0.52778\n130643|0.66667\n130644|0.58333\n130645|0.52778\n130646|0.5\n130647|0.5\n130648|0.48611\n130649|0.5\n130650|0.59722\n130651|0.31944\n130652|0.55556\n130653|0.5\n130654|0.5\n130655|0.66667\n130656|0.52778\n130657|0.54167\n130658|0.52778\n130659|0.58333\n130660|0.27778\n130661|0.5\n130662|0.94444\n130663|0.48611\n130664|0.40278\n130665|0.51389\n130666|0.75\n130667|0.59722\n130668|0.33333\n130669|0.41667\n130670|0.52778\n130671|0.38889\n130672|0.38889\n130673|0.47222\n130674|0.18056\n130675|0.47222\n130676|0.25\n130677|0.5\n130678|0.5\n130679|0.47222\n130680|0.55556\n130681|0.5\n130682|0.75\n130683|0.48611\n130684|0.55556\n130685|0.5\n130686|0.34722\n130687|0.44444\n130688|0.29167\n130689|0.69444\n130690|0.5\n130691|0.5\n130692|0.44444\n130693|0.58333\n130694|0.66667\n130695|0.72222\n130696|0.76389\n130697|0.59722\n130698|0.52778\n130699|0.56944\n130700|0.55556\n130701|0.56944\n130702|0.77778\n130703|0.44444\n130704|0.52778\n130705|0.16667\n130706|0.51389\n130707|0.65278\n130708|0.5\n130709|0.5\n130710|0.51389\n130711|0.84722\n130712|0.68056\n130713|0.52778\n130714|0.5\n130715|0.31944\n130716|0.54167\n130717|0.44444\n130718|0.5\n130719|0.65278\n130720|0.61111\n130721|0.5\n130722|0.5\n130723|0.41667\n130724|0.625\n130725|0.5\n130726|0.5\n130727|0.54167\n130728|0.61111\n130729|0.48611\n130730|0.5\n130731|0.66667\n130732|0.65278\n130733|0.81944\n130734|0.91667\n130735|0.56944\n130736|0.27778\n130737|0.625\n130738|0.59722\n130739|0.77778\n130740|0.73611\n130741|0.72222\n130742|0.79167\n130743|0.30556\n130744|0.52778\n130745|0.72222\n130746|0.73611\n130747|0.69444\n130748|0.38889\n130749|0.81944\n130750|0.70833\n130751|0.55556\n130752|0.63889\n130753|0.72222\n130754|0.41667\n130755|0.68056\n130756|0.34722\n130757|0.38889\n130758|0.69444\n130759|0.73611\n130760|0.70833\n130761|0.88889\n130762|0.79167\n130763|0.69444\n130764|0.55556\n130765|0.52778\n130766|0.45833\n130767|0.47222\n130768|0.38889\n130769|0.48611\n130770|0.52778\n130771|0.55556\n130772|0.52778\n130773|0.55556\n130774|0.51389\n130775|0.61111\n130776|0.52778\n130777|0.48611\n130778|0.40278\n130779|0.44444\n130780|0.59722\n130781|0.51389\n130782|0.51389\n130783|0.55556\n130784|0.52778\n130785|0.55556\n130786|0.70833\n130787|0.5\n130788|0.56944\n130789|0.54167\n130790|0.5\n130791|0.38889\n130792|0.5\n130793|0.59722\n130794|0.5\n130795|0.5\n130796|0.58333\n130797|0.43056\n130798|0.5\n130799|0.51389\n130800|0.68056\n130801|0.22222\n130802|0.5\n130803|0.47222\n130804|0.5\n130805|0.44444\n130806|0.61111\n130807|0.5\n130808|0.47222\n130809|0.44444\n130810|0.29167\n130811|0.44444\n130812|0.26389\n130813|0.45833\n130814|0.44444\n130815|0.5\n130816|0.52778\n130817|0.27778\n130818|0.55556\n130819|0.69444\n130820|0.16667\n130821|0.58333\n130822|0.5\n130823|0.5\n130824|0.65278\n130825|0.52778\n130826|0.26389\n130827|0.56944\n130828|0.5\n130829|0.55556\n130830|0.55556\n130831|0.44444\n130832|0.5\n130833|0.41667\n130834|0.23611\n130835|0.5\n130836|0.52778\n130837|0.54167\n130838|0.375\n130839|0.16667\n130840|0.44444\n130841|0.16667\n130842|0.69444\n130843|0.61111\n130844|0.58333\n130845|0.48611\n130846|0.41667\n130847|0.47222\n130848|0.63889\n130849|0.73611\n130850|0.47222\n130851|0.45833\n130852|0.20833\n130853|0.47222\n130854|0.52778\n130855|0.30556\n130856|0.27778\n130857|0.36111\n130858|0.44444\n130859|0.18056\n130860|0.5\n130861|0.63889\n130862|0.58333\n130863|0.55556\n130864|0.44444\n130865|0.27778\n130866|0.52778\n130867|0.56944\n130868|0.38889\n130869|0.58333\n130870|0.23611\n130871|0.5\n130872|0.69444\n130873|0.66667\n130874|0.72222\n130875|0.44444\n130876|0.5\n130877|0.5\n130878|0.59722\n130879|0.75\n130880|0.5\n130881|0.63889\n130882|0.5\n130883|0.5\n130884|0.5\n130885|0.5\n130886|0.26389\n130887|0.27778\n130888|0.45833\n130889|0.55556\n130890|0.5\n130891|0.47222\n130892|0.55556\n130893|0.38889\n130894|0.5\n130895|0.43056\n130896|0.58333\n130897|0.55556\n130898|0.027778\n130899|0.20833\n130900|0.055556\n130901|0.22222\n130902|0.44444\n130903|0.77778\n130904|0.875\n130905|0.58333\n130906|0.55556\n130907|0.52778\n130908|0.75\n130909|0.76389\n130910|0.55556\n130911|0.73611\n130912|0.40278\n130913|0.5\n130914|0.5\n130915|0.55556\n130916|0.75\n130917|0.76389\n130918|0.65278\n130919|0.5\n130920|0.68056\n130921|0.55556\n130922|0.55556\n130923|0.47222\n130924|0.63889\n130925|0.625\n130926|0.66667\n130927|0.69444\n130928|0.36111\n130929|0.47222\n130930|0.48611\n130931|0.27778\n130932|0.5\n130933|0.66667\n130934|0.5\n130935|0.44444\n130936|0.69444\n130937|0.48611\n130938|0.73611\n130939|0.48611\n130940|0.52778\n130941|0.55556\n130942|0.80556\n130943|0.76389\n130944|0.81944\n130945|0.55556\n130946|0.875\n130947|0.55556\n130948|0.66667\n130949|0.18056\n130950|0.66667\n130951|0.54167\n130952|0.65278\n130953|0.56944\n130954|0.61111\n130955|0.38889\n130956|0.51389\n130957|0.75\n130958|0.47222\n130959|0.54167\n130960|0.56944\n130961|0.73611\n130962|0.59722\n130963|0.66667\n130964|0.58333\n130965|0.58333\n130966|0.56944\n130967|0.5\n130968|0.56944\n130969|0.45833\n130970|0.5\n130971|0.69444\n130972|0.38889\n130973|0.5\n130974|0.58333\n130975|0.5\n130976|0.65278\n130977|0.80556\n130978|0.76389\n130979|0.5\n130980|0.48611\n130981|0.48611\n130982|0.54167\n130983|0.59722\n130984|0.5\n130985|0.45833\n130986|0.40278\n130987|0.97222\n130988|0.90278\n130989|0.51389\n130990|0.80556\n130991|0.66667\n130992|0.33333\n130993|0.45833\n130994|0.5\n130995|0.5\n130996|0.43056\n130997|0.72222\n130998|0.47222\n130999|0.44444\n131000|0.75\n131001|0.76389\n131002|0.59722\n131003|0.79167\n131004|0.5\n131005|0.59722\n131006|0.625\n131007|0.68056\n131008|0.25\n131009|0.70833\n131010|0.47222\n131011|0.5\n131012|0.44444\n131013|0.30556\n131014|0.36111\n131015|0.55556\n131016|0.90278\n131017|0.76389\n131018|0.48611\n131019|0.26389\n131020|0.625\n131021|0.097222\n131022|0.58333\n131023|0.5\n131024|0.56944\n131025|0.5\n131026|0.5\n131027|0.5\n131028|0.25\n131029|0.63889\n131030|0.65278\n131031|0.65278\n131032|0.51389\n131033|0.25\n131034|0.33333\n131035|0.51389\n131036|0.63889\n131037|0.5\n131038|0.61111\n131039|0.5\n131040|0.625\n131041|0.5\n131042|0.58333\n131043|0.52778\n131044|0.52778\n131045|0.5\n131046|0.5\n131047|0.5\n131048|0.48611\n131049|0.5\n131050|0.58333\n131051|0.5\n131052|0.25\n131053|0.5\n131054|0.5\n131055|0.36111\n131056|0.34722\n131057|0.5\n131058|0.61111\n131059|0.61111\n131060|0.70833\n131061|0.79167\n131062|0.5\n131063|0.75\n131064|0.79167\n131065|0.55556\n131066|0.72222\n131067|0.77778\n131068|0.52778\n131069|0.61111\n131070|0.75\n131071|0.70833\n131072|0.69444\n131073|0.47222\n131074|0.61111\n131075|0.52778\n131076|0.59722\n131077|0.73611\n131078|0.69444\n131079|0.73611\n131080|0.76389\n131081|0.5\n131082|0.5\n131083|0.27778\n131084|0.16667\n131085|0.45833\n131086|0.38889\n131087|0.66667\n131088|0.70833\n131089|0.72222\n131090|0.56944\n131091|0.76389\n131092|0.61111\n131093|0.5\n131094|0.90278\n131095|0.625\n131096|0.625\n131097|0.52778\n131098|0.43056\n131099|0.5\n131100|0.75\n131101|0.33333\n131102|0.625\n131103|0.69444\n131104|0.81944\n131105|0.875\n131106|0.83333\n131107|0.59722\n131108|0.33333\n131109|0.83333\n131110|0.55556\n131111|0.31944\n131112|0.56944\n131113|0.375\n131114|0.73611\n131115|0.51389\n131116|0.5\n131117|0.875\n131118|0.75\n131119|0.5\n131120|0.54167\n131121|0.5\n131122|0.61111\n131123|0.69444\n131124|0.63889\n131125|0.66667\n131126|0.61111\n131127|0.66667\n131128|0.72222\n131129|0.40278\n131130|0.38889\n131131|0.52778\n131132|0.44444\n131133|0.5\n131134|0.5\n131135|0.45833\n131136|0.65278\n131137|0.5\n131138|0.54167\n131139|0.5\n131140|0.5\n131141|0.38889\n131142|0.63889\n131143|0.65278\n131144|0.52778\n131145|0.375\n131146|0.54167\n131147|0.5\n131148|0.5\n131149|0.5\n131150|0.63889\n131151|0.58333\n131152|0.5\n131153|0.625\n131154|0.27778\n131155|0.19444\n131156|0.16667\n131157|0.29167\n131158|0.31944\n131159|0.40278\n131160|0.45833\n131161|0.41667\n131162|0.5\n131163|0.55556\n131164|0.56944\n131165|0.47222\n131166|0.44444\n131167|0.47222\n131168|0.47222\n131169|0.27778\n131170|0.25\n131171|0.5\n131172|0.44444\n131173|0.5\n131174|0.5\n131175|0.61111\n131176|0.48611\n131177|0.55556\n131178|0.625\n131179|0.72222\n131180|0.52778\n131181|0.55556\n131182|0.58333\n131183|0.77778\n131184|0.68056\n131185|0.38889\n131186|0.20833\n131187|0.43056\n131188|0.33333\n131189|0.5\n131190|0.5\n131191|0.43056\n131192|0.51389\n131193|0.5\n131194|0.63889\n131195|0.36111\n131196|0.66667\n131197|0.31944\n131198|0.34722\n131199|0.19444\n131200|0.11111\n131201|0.23611\n131202|0.23611\n131203|0.33333\n131204|0.47222\n131205|0.51389\n131206|0.27778\n131207|0.34722\n131208|0.5\n131209|0.5\n131210|0.51389\n131211|0.77778\n131212|0.55556\n131213|0.65278\n131214|0.375\n131215|0.54167\n131216|0.33333\n131217|0.625\n131218|0.81944\n131219|0.91667\n131220|0.80556\n131221|0.68056\n131222|0.625\n131223|0.59722\n131224|0.59722\n131225|0.18056\n131226|0.44444\n131227|0.41667\n131228|0.55556\n131229|0.58333\n131230|0.45833\n131231|0.5\n131232|0.5\n131233|0.5\n131234|0.44444\n131235|0.41667\n131236|0.40278\n131237|0.40278\n131238|0.47222\n131239|0.375\n131240|0.33333\n131241|0.61111\n131242|0.5\n131243|0.5\n131244|0.52778\n131245|0.68056\n131246|0.22222\n131247|0.33333\n131248|0.47222\n131249|0.55556\n131250|0.76389\n131251|0.59722\n131252|0.44444\n131253|0.5\n131254|0.66667\n131255|0.5\n131256|0.5\n131257|0.44444\n131258|0.52778\n131259|0.41667\n131260|0.5\n131261|0.22222\n131262|0.15278\n131263|0.59722\n131264|0.56944\n131265|0.625\n131266|0.58333\n131267|0.58333\n131268|0.55556\n131269|0.61111\n131270|0.63889\n131271|0.63889\n131272|0.73611\n131273|0.47222\n131274|0.5\n131275|0.41667\n131276|0.625\n131277|0.44444\n131278|0.43056\n131279|0.51389\n131280|0.52778\n131281|0.5\n131282|0.33333\n131283|0.52778\n131284|0.59722\n131285|0.33333\n131286|0.58333\n131287|0.5\n131288|0.76389\n131289|0.76389\n131290|0.59722\n131291|0.63889\n131292|0.68056\n131293|0.41667\n131294|0.79167\n131295|0.76389\n131296|0.83333\n131297|0.84722\n131298|0.86111\n131299|0.76389\n131300|0.65278\n131301|0.34722\n131302|0.59722\n131303|0.84722\n131304|0.69444\n131305|0.81944\n131306|0.5\n131307|0.69444\n131308|0.58333\n131309|0.75\n131310|0.69444\n131311|0.5\n131312|0.38889\n131313|0.5\n131314|0.79167\n131315|0.86111\n131316|0.94444\n131317|0.86111\n131318|0.81944\n131319|0.68056\n131320|0.80556\n131321|0.11111\n131322|0.83333\n131323|0.70833\n131324|0.16667\n131325|0.56944\n131326|0.68056\n131327|0.59722\n131328|0.5\n131329|0.63889\n131330|0.055556\n131331|0.5\n131332|0.84722\n131333|0.5\n131334|0.27778\n131335|0.59722\n131336|0.47222\n131337|0.43056\n131338|0.5\n131339|0.5\n131340|0.40278\n131341|0.38889\n131342|0.38889\n131343|0.75\n131344|0.5\n131345|0.54167\n131346|0.5\n131347|0.51389\n131348|0.72222\n131349|0.55556\n131350|0.5\n131351|0.48611\n131352|0.44444\n131353|0.45833\n131354|0.5\n131355|0.5\n131356|0.375\n131357|0.40278\n131358|0.36111\n131359|0.43056\n131360|0.40278\n131361|0.58333\n131362|0.38889\n131363|0.47222\n131364|0.48611\n131365|0.5\n131366|0.56944\n131367|0.38889\n131368|0.43056\n131369|0.18056\n131370|0.25\n131371|0.125\n131372|0.43056\n131373|0.5\n131374|0.44444\n131375|0.23611\n131376|0.125\n131377|0.22222\n131378|0.097222\n131379|0.5\n131380|0.47222\n131381|0.15278\n131382|0.19444\n131383|0.11111\n131384|0.41667\n131385|0.51389\n131386|0.16667\n131387|0.52778\n131388|0.48611\n131389|0.375\n131390|0.41667\n131391|0.5\n131392|0.5\n131393|0.45833\n131394|0.30556\n131395|0.47222\n131396|0.23611\n131397|0.5\n131398|0.36111\n131399|0.5\n131400|0.40278\n131401|0.29167\n131402|0.5\n131403|0.66667\n131404|0.41667\n131405|0.48611\n131406|0.34722\n131407|0.26389\n131408|0.56944\n131409|0.52778\n131410|0.59722\n131411|0.68056\n131412|0.58333\n131413|0.5\n131414|0.68056\n131415|0.5\n131416|0.34722\n131417|0.13889\n131418|0.25\n131419|0.11111\n131420|0.54167\n131421|0.59722\n131422|0.36111\n131423|0.51389\n131424|0.54167\n131425|0.31944\n131426|0.5\n131427|0.69444\n131428|0.63889\n131429|0.70833\n131430|0.76389\n131431|0.59722\n131432|0.56944\n131433|0.5\n131434|0.5\n131435|0.625\n131436|0.43056\n131437|0.36111\n131438|0.5\n131439|0.56944\n131440|0.72222\n131441|0.54167\n131442|0.63889\n131443|0.56944\n131444|0.31944\n131445|0.70833\n131446|0.5\n131447|0.5\n131448|0.19444\n131449|0.29167\n131450|0.48611\n131451|0.45833\n131452|0.65278\n131453|0.5\n131454|0.48611\n131455|0.55556\n131456|0.55556\n131457|0.61111\n131458|0.43056\n131459|0.625\n131460|0.54167\n131461|0.61111\n131462|0.51389\n131463|0.65278\n131464|0.55556\n131465|0.69444\n131466|0.80556\n131467|0.76389\n131468|0.81944\n131469|0.5\n131470|0.41667\n131471|0.75\n131472|0.52778\n131473|0.66667\n131474|0.5\n131475|0.5\n131476|0.41667\n131477|0.56944\n131478|0.38889\n131479|0.041667\n131480|0.22222\n131481|0.27778\n131482|0.5\n131483|0.51389\n131484|0.40278\n131485|0.59722\n131486|0.44444\n131487|0.52778\n131488|0.38889\n131489|0.25\n131490|0.73611\n131491|0.54167\n131492|0.40278\n131493|0.56944\n131494|0.45833\n131495|0.56944\n131496|0.13889\n131497|0.48611\n131498|0.55556\n131499|0.55556\n131500|0.70833\n131501|0.63889\n131502|0.625\n131503|0.59722\n131504|0.66667\n131505|0.625\n131506|0.5\n131507|0.5\n131508|0.5\n131509|0.66667\n131510|0.48611\n131511|0.44444\n131512|0.55556\n131513|0.73611\n131514|0.45833\n131515|0.44444\n131516|0.59722\n131517|0.44444\n131518|0.48611\n131519|0.5\n131520|0.33333\n131521|0.47222\n131522|0.23611\n131523|0.5\n131524|0.48611\n131525|0.66667\n131526|0.65278\n131527|0.76389\n131528|0.75\n131529|0.63889\n131530|0.80556\n131531|0.66667\n131532|0.66667\n131533|0.73611\n131534|0.66667\n131535|0.55556\n131536|0.5\n131537|0.5\n131538|0.5\n131539|0.5\n131540|0.11111\n131541|0.33333\n131542|0.5\n131543|0.76389\n131544|0.84722\n131545|0.88889\n131546|0.44444\n131547|0.63889\n131548|0.625\n131549|0.33333\n131550|0.45833\n131551|0.20833\n131552|0.56944\n131553|0.44444\n131554|0.72222\n131555|0.63889\n131556|0.66667\n131557|0.51389\n131558|0.51389\n131559|0.5\n131560|0.44444\n131561|0.5\n131562|0.375\n131563|0.44444\n131564|0.43056\n131565|0.30556\n131566|0.59722\n131567|0.58333\n131568|0.5\n131569|0.44444\n131570|0.20833\n131571|0.38889\n131572|0.48611\n131573|0.5\n131574|0.70833\n131575|0.77778\n131576|0.54167\n131577|0.61111\n131578|0.80556\n131579|0.81944\n131580|0.43056\n131581|0.40278\n131582|0.40278\n131583|0.48611\n131584|0.43056\n131585|0.5\n131586|0.45833\n131587|0.5\n131588|0.51389\n131589|0.5\n131590|0.69444\n131591|0.81944\n131592|0.79167\n131593|0.90278\n131594|0.66667\n131595|0.59722\n131596|0.5\n131597|0.43056\n131598|0.5\n131599|0.76389\n131600|0.48611\n131601|0.63889\n131602|0.58333\n131603|0.5\n131604|0.72222\n131605|0.5\n131606|0.44444\n131607|0.5\n131608|0.5\n131609|0.34722\n131610|0.56944\n131611|0.52778\n131612|0.75\n131613|0.5\n131614|0.54167\n131615|0.86111\n131616|0.61111\n131617|0.70833\n131618|0.5\n131619|0.63889\n131620|0.68056\n131621|0.43056\n131622|0.56944\n131623|0.51389\n131624|0.61111\n131625|0.52778\n131626|0.875\n131627|0.61111\n131628|0.5\n131629|0.5\n131630|0.59722\n131631|0.66667\n131632|0.48611\n131633|0.5\n131634|0.19444\n131635|0.5\n131636|0.31944\n131637|0.58333\n131638|0.51389\n131639|0.56944\n131640|0.59722\n131641|0.61111\n131642|0.63889\n131643|0.72222\n131644|0.81944\n131645|0.51389\n131646|0.55556\n131647|0.56944\n131648|0.5\n131649|0.48611\n131650|0.55556\n131651|0.5\n131652|0.375\n131653|0.47222\n131654|0.27778\n131655|0.36111\n131656|0.5\n131657|0.5\n131658|0.41667\n131659|0.625\n131660|0.25\n131661|0.5\n131662|0.38889\n131663|0.13889\n131664|0.20833\n131665|0.013889\n131666|0.66667\n131667|0.33333\n131668|0.41667\n131669|0.16667\n131670|0.59722\n131671|0.41667\n131672|0.29167\n131673|0.36111\n131674|0.45833\n131675|0.48611\n131676|0.5\n131677|0.5\n131678|0.51389\n131679|0.40278\n131680|0.19444\n131681|0.33333\n131682|0.375\n131683|0.40278\n131684|0.51389\n131685|0.56944\n131686|0.76389\n131687|0.5\n131688|0.44444\n131689|0.25\n131690|0.47222\n131691|0.59722\n131692|0.38889\n131693|0.44444\n131694|0.44444\n131695|0.48611\n131696|0.38889\n131697|0.58333\n131698|0.5\n131699|0.36111\n131700|0.44444\n131701|0.55556\n131702|0.33333\n131703|0.65278\n131704|0.16667\n131705|0.40278\n131706|0.41667\n131707|0.30556\n131708|0.72222\n131709|0.27778\n131710|0.44444\n131711|0.44444\n131712|0.40278\n131713|0.5\n131714|0.33333\n131715|0.41667\n131716|0.26389\n131717|0.27778\n131718|0.5\n131719|0.68056\n131720|0.69444\n131721|0.27778\n131722|0.25\n131723|0.5\n131724|0.66667\n131725|0.27778\n131726|0.375\n131727|0.5\n131728|0.5\n131729|0.44444\n131730|0.61111\n131731|0.51389\n131732|0.51389\n131733|0.25\n131734|0.41667\n131735|0.43056\n131736|0.43056\n131737|0.65278\n131738|0.20833\n131739|0.66667\n131740|0.54167\n131741|0.59722\n131742|0.56944\n131743|0.69444\n131744|0.69444\n131745|0.68056\n131746|0.77778\n131747|0.69444\n131748|0.75\n131749|0.76389\n131750|0.48611\n131751|0.38889\n131752|0.38889\n131753|0.72222\n131754|0.51389\n131755|0.61111\n131756|0.58333\n131757|0.5\n131758|0.52778\n131759|0.52778\n131760|0.66667\n131761|0.52778\n131762|0.5\n131763|0.5\n131764|0.61111\n131765|0.59722\n131766|0.54167\n131767|0.097222\n131768|0.47222\n131769|0.52778\n131770|0.52778\n131771|0.5\n131772|0.51389\n131773|0.5\n131774|0.47222\n131775|0.5\n131776|0.625\n131777|0.18056\n131778|0.5\n131779|0.61111\n131780|0.56944\n131781|0.44444\n131782|0.5\n131783|0.38889\n131784|0.56944\n131785|0.5\n131786|0.5\n131787|0.81944\n131788|0.77778\n131789|0.13889\n131790|0.30556\n131791|0.5\n131792|0.52778\n131793|0.43056\n131794|0.45833\n131795|0.5\n131796|0.5\n131797|0.43056\n131798|0.51389\n131799|0.63889\n131800|0.70833\n131801|0.59722\n131802|0.65278\n131803|0.66667\n131804|0.77778\n131805|0.54167\n131806|0.44444\n131807|0.58333\n131808|0.33333\n131809|0.65278\n131810|0.41667\n131811|0.48611\n131812|0.43056\n131813|0.5\n131814|0.38889\n131815|0.51389\n131816|0.77778\n131817|0.65278\n131818|0.65278\n131819|0.63889\n131820|0.44444\n131821|0.31944\n131822|0.36111\n131823|0.36111\n131824|0.38889\n131825|0.5\n131826|0.5\n131827|0.56944\n131828|0.5\n131829|0.59722\n131830|0.48611\n131831|0.5\n131832|0.51389\n131833|0.69444\n131834|0.72222\n131835|0.83333\n131836|0.70833\n131837|0.61111\n131838|0.68056\n131839|0.72222\n131840|0.31944\n131841|0.43056\n131842|0.41667\n131843|0.38889\n131844|0.5\n131845|0.56944\n131846|0.51389\n131847|0.5\n131848|0.5\n131849|0.59722\n131850|0.73611\n131851|0.58333\n131852|0.5\n131853|0.5\n131854|0.5\n131855|0.55556\n131856|0.75\n131857|0.5\n131858|0.61111\n131859|0.5\n131860|0.5\n131861|0.375\n131862|0.5\n131863|0.5\n131864|0.47222\n131865|0.375\n131866|0.41667\n131867|0.29167\n131868|0.36111\n131869|0.5\n131870|0.38889\n131871|0.5\n131872|0.26389\n131873|0.5\n131874|0.5\n131875|0.47222\n131876|0.625\n131877|0.5\n131878|0.5\n131879|0.11111\n131880|0.11111\n131881|0.083333\n131882|0.38889\n131883|0.5\n131884|0.5\n131885|0.5\n131886|0.5\n131887|0.52778\n131888|0.44444\n131889|0.5\n131890|0.66667\n131891|0.5\n131892|0.5\n131893|0.5\n131894|0.55556\n131895|0.58333\n131896|0.68056\n131897|0.63889\n131898|0.59722\n131899|0.66667\n131900|0.25\n131901|0.41667\n131902|0.68056\n131903|0.54167\n131904|0.52778\n131905|0.5\n131906|0.5\n131907|0.18056\n131908|0.26389\n131909|0.73611\n131910|0.70833\n131911|0.5\n131912|0.5\n131913|0.83333\n131914|0.55556\n131915|0.70833\n131916|0.625\n131917|0.52778\n131918|0.44444\n131919|0.375\n131920|0.38889\n131921|0.069444\n131922|0.5\n131923|0.55556\n131924|0.5\n131925|0.63889\n131926|0.5\n131927|0.48611\n131928|0.59722\n131929|0.5\n131930|0.5\n131931|0.44444\n131932|0.97222\n131933|0.84722\n131934|0.83333\n131935|0.84722\n131936|0.56944\n131937|0.59722\n131938|0.55556\n131939|0.59722\n131940|0.41667\n131941|0\n131942|0.41667\n131943|0.31944\n131944|0.23611\n131945|0.55556\n131946|0.52778\n131947|0.58333\n131948|0.55556\n131949|0.51389\n131950|0.29167\n131951|0.55556\n131952|0.66667\n131953|0.26389\n131954|0.5\n131955|0.63889\n131956|0.47222\n131957|0.38889\n131958|0.30556\n131959|0.51389\n131960|0.70833\n131961|0.58333\n131962|0.76389\n131963|0.70833\n131964|0.61111\n131965|0.72222\n131966|0.33333\n131967|0.31944\n131968|0.45833\n131969|0.26389\n131970|0.48611\n131971|0.40278\n131972|0.54167\n131973|0.65278\n131974|0.36111\n131975|0.69444\n131976|0.79167\n131977|0.63889\n131978|0.66667\n131979|0.27778\n131980|0.26389\n131981|0.625\n131982|0.61111\n131983|0.66667\n131984|0.5\n131985|0.125\n131986|0.5\n131987|0.5\n131988|0.16667\n131989|0.51389\n131990|0.5\n131991|0.38889\n131992|0.52778\n131993|0.69444\n131994|0.70833\n131995|0.54167\n131996|0.625\n131997|0.36111\n131998|0.63889\n131999|0.41667\n132000|0.36111\n132001|0.19444\n132002|0.15278\n132003|0.20833\n132004|0.83333\n132005|0.80556\n132006|0.51389\n132007|0.81944\n132008|0.66667\n132009|0.52778\n132010|0.43056\n132011|0.11111\n132012|0.125\n132013|0.38889\n132014|0.52778\n132015|0.36111\n132016|0.15278\n132017|0.5\n132018|0.5\n132019|0.375\n132020|0.43056\n132021|0.51389\n132022|0.23611\n132023|0.055556\n132024|0.33333\n132025|0.54167\n132026|0.18056\n132027|0.44444\n132028|0.44444\n132029|0.58333\n132030|0.33333\n132031|0.055556\n132032|0.29167\n132033|0.22222\n132034|0.61111\n132035|0.16667\n132036|0.63889\n132037|0.5\n132038|0.48611\n132039|0.5\n132040|0.5\n132041|0.40278\n132042|0.52778\n132043|0.55556\n132044|0.5\n132045|0.5\n132046|0.61111\n132047|0.5\n132048|0.375\n132049|0.63889\n132050|0.5\n132051|0.41667\n132052|0.5\n132053|0.5\n132054|0.51389\n132055|0.56944\n132056|0.41667\n132057|0.48611\n132058|0.625\n132059|0.5\n132060|0.5\n132061|0.38889\n132062|0.47222\n132063|0.5\n132064|0.36111\n132065|0.41667\n132066|0.25\n132067|0.43056\n132068|0.54167\n132069|0.5\n132070|0.48611\n132071|0.47222\n132072|0.52778\n132073|0.61111\n132074|0.40278\n132075|0.63889\n132076|0.65278\n132077|0.44444\n132078|0.5\n132079|0.29167\n132080|0.5\n132081|0.52778\n132082|0.54167\n132083|0.44444\n132084|0.5\n132085|0.80556\n132086|0.5\n132087|0.5\n132088|0.36111\n132089|0.5\n132090|0.5\n132091|0.5\n132092|0.63889\n132093|0.48611\n132094|0.5\n132095|0.59722\n132096|0.65278\n132097|0.36111\n132098|0.76389\n132099|0.625\n132100|0.48611\n132101|0.59722\n132102|0.55556\n132103|0.70833\n132104|0.52778\n132105|0.63889\n132106|0.86111\n132107|0.66667\n132108|0.63889\n132109|0.22222\n132110|0.54167\n132111|0.51389\n132112|0.5\n132113|0.51389\n132114|0.38889\n132115|0.5\n132116|0.5\n132117|0.5\n132118|0.56944\n132119|0.66667\n132120|0.5\n132121|0.625\n132122|0.77778\n132123|0.61111\n132124|0.5\n132125|0.55556\n132126|0.5\n132127|0.45833\n132128|0.48611\n132129|0.56944\n132130|0.48611\n132131|0.5\n132132|0.55556\n132133|0.51389\n132134|0.5\n132135|0.65278\n132136|0.45833\n132137|0.48611\n132138|0.63889\n132139|0.56944\n132140|0.11111\n132141|0.055556\n132142|0.54167\n132143|0.61111\n132144|0.27778\n132145|0.61111\n132146|0.80556\n132147|0.83333\n132148|0.75\n132149|0.58333\n132150|0.51389\n132151|0.5\n132152|0.52778\n132153|0.61111\n132154|0.5\n132155|0.51389\n132156|0.33333\n132157|0.43056\n132158|0.79167\n132159|0.73611\n132160|0.5\n132161|0.5\n132162|0.47222\n132163|0.625\n132164|0.83333\n132165|0.75\n132166|0.5\n132167|0.56944\n132168|0.70833\n132169|0.5\n132170|0.5\n132171|0.5\n132172|0.63889\n132173|0.625\n132174|0.58333\n132175|0.5\n132176|0.69444\n132177|0.69444\n132178|0.33333\n132179|0.15278\n132180|0.41667\n132181|0.80556\n132182|0.5\n132183|0.55556\n132184|0.48611\n132185|0.75\n132186|0.69444\n132187|0.51389\n132188|0.75\n132189|0.79167\n132190|0.61111\n132191|0.5\n132192|0.70833\n132193|0.5\n132194|0.5\n132195|0.5\n132196|0.5\n132197|0.375\n132198|0.26389\n132199|0.34722\n132200|0.25\n132201|0.27778\n132202|0.38889\n132203|0.47222\n132204|0.41667\n132205|0.66667\n132206|0.5\n132207|0.56944\n132208|0.52778\n132209|0.5\n132210|0.5\n132211|0.51389\n132212|0.125\n132213|0.16667\n132214|0.48611\n132215|0.47222\n132216|0.52778\n132217|0.27778\n132218|0.48611\n132219|0.47222\n132220|0.34722\n132221|0.43056\n132222|0.31944\n132223|0.51389\n132224|0.5\n132225|0.47222\n132226|0.59722\n132227|0.61111\n132228|0.40278\n132229|0.43056\n132230|0.34722\n132231|0.47222\n132232|0.5\n132233|0.44444\n132234|0.61111\n132235|0.375\n132236|0.30556\n132237|0.041667\n132238|0.41667\n132239|0.31944\n132240|0.34722\n132241|0.36111\n132242|0.31944\n132243|0.66667\n132244|0.16667\n132245|0.097222\n132246|0.63889\n132247|0.84722\n132248|0.76389\n132249|0.70833\n132250|0.66667\n132251|0.5\n132252|0.55556\n132253|0.625\n132254|0.56944\n132255|0.51389\n132256|0.75\n132257|0.83333\n132258|0.76389\n132259|0.76389\n132260|0.72222\n132261|0.55556\n132262|0.375\n132263|0.31944\n132264|0.44444\n132265|0.19444\n132266|0.5\n132267|0.625\n132268|0.72222\n132269|0.5\n132270|0.55556\n132271|0.45833\n132272|0.40278\n132273|0.44444\n132274|0.5\n132275|0.125\n132276|0.48611\n132277|0.66667\n132278|0.77778\n132279|0.55556\n132280|0.875\n132281|0.5\n132282|0.61111\n132283|0.5\n132284|0.47222\n132285|0.5\n132286|0.66667\n132287|0.75\n132288|0.73611\n132289|0.94444\n132290|0.66667\n132291|0.27778\n132292|0.36111\n132293|0.58333\n132294|0.65278\n132295|0.5\n132296|0.55556\n132297|0.65278\n132298|0.18056\n132299|0.48611\n132300|0.055556\n132301|0.20833\n132302|0.055556\n132303|0.16667\n132304|0.055556\n132305|0.29167\n132306|0.38889\n132307|0.26389\n132308|0.47222\n132309|0.5\n132310|0.5\n132311|0.31944\n132312|0.5\n132313|0.375\n132314|0.5\n132315|0.20833\n132316|0.55556\n132317|0.41667\n132318|0.44444\n132319|0.27778\n132320|0.30556\n132321|0.41667\n132322|0.68056\n132323|0.44444\n132324|0.875\n132325|0.66667\n132326|0.59722\n132327|0.5\n132328|0.5\n132329|0.70833\n132330|0.52778\n132331|0.75\n132332|0.5\n132333|0.76389\n132334|0.77778\n132335|0.75\n132336|0.44444\n132337|0.75\n132338|0.36111\n132339|0.59722\n132340|0.11111\n132341|0.125\n132342|0.5\n132343|0.625\n132344|0.625\n132345|0.65278\n132346|0.875\n132347|0.41667\n132348|0.34722\n132349|0.23611\n132350|0.44444\n132351|0.31944\n132352|0.52778\n132353|0.51389\n132354|0.36111\n132355|0.375\n132356|0.54167\n132357|0.58333\n132358|0.38889\n132359|0.73611\n132360|0.83333\n132361|0.88889\n132362|0.84722\n132363|0.79167\n132364|0.22222\n132365|0.23611\n132366|0.16667\n132367|0.55556\n132368|0.5\n132369|0.36111\n132370|0.43056\n132371|0.52778\n132372|0.52778\n132373|0.54167\n132374|0.48611\n132375|0.5\n132376|0.55556\n132377|0.5\n132378|0.44444\n132379|0.55556\n132380|0.51389\n132381|0.68056\n132382|0.73611\n132383|0.44444\n132384|0.48611\n132385|0.31944\n132386|0.22222\n132387|0.40278\n132388|0.625\n132389|0.59722\n132390|0.51389\n132391|0.47222\n132392|0.55556\n132393|0.36111\n132394|0.625\n132395|0.45833\n132396|0.68056\n132397|0.5\n132398|0.51389\n132399|0.5\n132400|0.40278\n132401|0.51389\n132402|0.52778\n132403|0.34722\n132404|0.55556\n132405|0.59722\n132406|0.5\n132407|0.27778\n132408|0.55556\n132409|0.76389\n132410|0.69444\n132411|0.63889\n132412|0.31944\n132413|0.48611\n132414|0.48611\n132415|0.73611\n132416|0.25\n132417|0.63889\n132418|0.31944\n132419|0.61111\n132420|0.43056\n132421|0.65278\n132422|0.73611\n132423|0.75\n132424|0.58333\n132425|0.5\n132426|0.45833\n132427|0.25\n132428|0.16667\n132429|0.75\n132430|0.5\n132431|0.5\n132432|0.19444\n132433|0.79167\n132434|0.66667\n132435|0.44444\n132436|0.27778\n132437|0.625\n132438|0.31944\n132439|0.375\n132440|0.5\n132441|0.40278\n132442|0.33333\n132443|0.48611\n132444|0.61111\n132445|0.5\n132446|0.44444\n132447|0.54167\n132448|0.40278\n132449|0.52778\n132450|0.38889\n132451|0.33333\n132452|0.5\n132453|0.5\n132454|0.52778\n132455|0.30556\n132456|0.30556\n132457|0.43056\n132458|0.38889\n132459|0.375\n132460|0.51389\n132461|0.66667\n132462|0.5\n132463|0.5\n132464|0.56944\n132465|0.5\n132466|0.68056\n132467|0.11111\n132468|0.33333\n132469|0.61111\n132470|0.56944\n132471|0.5\n132472|0.5\n132473|0.58333\n132474|0.55556\n132475|0.73611\n132476|0.44444\n132477|0.38889\n132478|0.30556\n132479|0.27778\n132480|0.45833\n132481|0.48611\n132482|0.58333\n132483|0.41667\n132484|0.33333\n132485|0.70833\n132486|0.29167\n132487|0.33333\n132488|0.58333\n132489|0.69444\n132490|0.23611\n132491|0.38889\n132492|0.625\n132493|0.66667\n132494|0.70833\n132495|0.55556\n132496|0.58333\n132497|0.81944\n132498|0.48611\n132499|0.5\n132500|0.66667\n132501|0.45833\n132502|0.5\n132503|0.44444\n132504|0.90278\n132505|0.54167\n132506|0.79167\n132507|0.41667\n132508|0.18056\n132509|0.40278\n132510|0.25\n132511|0.23611\n132512|0.36111\n132513|0.19444\n132514|0.31944\n132515|0.76389\n132516|0.47222\n132517|0.48611\n132518|0.5\n132519|0.5\n132520|0.5\n132521|0.51389\n132522|0.5\n132523|0.43056\n132524|0.52778\n132525|0.54167\n132526|0.5\n132527|0.5\n132528|0.5\n132529|0.5\n132530|0.5\n132531|0.80556\n132532|0.48611\n132533|0.5\n132534|0.625\n132535|0.48611\n132536|0.55556\n132537|0.51389\n132538|0.63889\n132539|0.22222\n132540|0.45833\n132541|0.33333\n132542|0.47222\n132543|0.61111\n132544|0.47222\n132545|0.5\n132546|0.5\n132547|0.5\n132548|0.56944\n132549|0.5\n132550|0.30556\n132551|0.45833\n132552|0.31944\n132553|0.55556\n132554|0.58333\n132555|0.56944\n132556|0.5\n132557|0.5\n132558|0.5\n132559|0.5\n132560|0.5\n132561|0.5\n132562|0.5\n132563|0.45833\n132564|0.38889\n132565|0.54167\n132566|0.5\n132567|0.625\n132568|0.61111\n132569|0.31944\n132570|0.375\n132571|0.25\n132572|0.41667\n132573|0.38889\n132574|0.5\n132575|0.77778\n132576|0.79167\n132577|0.47222\n132578|0.56944\n132579|0.68056\n132580|0.625\n132581|0.54167\n132582|0.055556\n132583|0.51389\n132584|0.083333\n132585|0.31944\n132586|0.40278\n132587|0.5\n132588|0.43056\n132589|0.33333\n132590|0.5\n132591|0.55556\n132592|0.5\n132593|0.27778\n132594|0.31944\n132595|0.27778\n132596|0.31944\n132597|0.5\n132598|0.51389\n132599|0.5\n132600|0.56944\n132601|0.61111\n132602|0.15278\n132603|0.40278\n132604|0.29167\n132605|0.70833\n132606|0.5\n132607|0.38889\n132608|0.34722\n132609|0.63889\n132610|0.63889\n132611|0.51389\n132612|0.44444\n132613|0.5\n132614|0.54167\n132615|0.52778\n132616|0.44444\n132617|0.51389\n132618|0.41667\n132619|0.43056\n132620|0.55556\n132621|0.52778\n132622|0.26389\n132623|0.54167\n132624|0.25\n132625|0.41667\n132626|0.31944\n132627|0.13889\n132628|0.23611\n132629|0.375\n132630|0.26389\n132631|0.41667\n132632|0.44444\n132633|0.45833\n132634|0.40278\n132635|0.56944\n132636|0.375\n132637|0.38889\n132638|0.29167\n132639|0.25\n132640|0.27778\n132641|0.47222\n132642|0.33333\n132643|0.34722\n132644|0.31944\n132645|0.65278\n132646|0.72222\n132647|0.58333\n132648|0.66667\n132649|0.36111\n132650|0.65278\n132651|0.5\n132652|0.44444\n132653|0.5\n132654|0.5\n132655|0.56944\n132656|0.5\n132657|0.5\n132658|0.38889\n132659|0.77778\n132660|0.83333\n132661|0.80556\n132662|0.875\n132663|0.54167\n132664|0.68056\n132665|0.36111\n132666|0.61111\n132667|0.69444\n132668|0.79167\n132669|0.76389\n132670|0.625\n132671|0.48611\n132672|0.48611\n132673|0.625\n132674|0.51389\n132675|0.47222\n132676|0.65278\n132677|0.76389\n132678|0.48611\n132679|0.5\n132680|0.47222\n132681|0.72222\n132682|0.61111\n132683|0.38889\n132684|0.36111\n132685|0.66667\n132686|0.44444\n132687|0.44444\n132688|0.40278\n132689|0.19444\n132690|0.52778\n132691|0.58333\n132692|0.5\n132693|0.48611\n132694|0.40278\n132695|0.54167\n132696|0.27778\n132697|0.66667\n132698|0.75\n132699|0.625\n132700|0.56944\n132701|0.83333\n132702|0.43056\n132703|0.44444\n132704|0.5\n132705|0.77778\n132706|0.61111\n132707|0.45833\n132708|0.55556\n132709|0.26389\n132710|0.30556\n132711|0.41667\n132712|0.33333\n132713|0.56944\n132714|0.51389\n132715|0.75\n132716|0.63889\n132717|0.52778\n132718|0.58333\n132719|0.69444\n132720|0.70833\n132721|0.40278\n132722|0.5\n132723|0.19444\n132724|0.27778\n132725|0.33333\n132726|0.66667\n132727|0.56944\n132728|0.097222\n132729|0.26389\n132730|0.34722\n132731|0.63889\n132732|0.31944\n132733|0.54167\n132734|0.41667\n132735|0.66667\n132736|0.65278\n132737|0.33333\n132738|0.22222\n132739|0.18056\n132740|0.25\n132741|0.19444\n132742|0.16667\n132743|0.61111\n132744|0.55556\n132745|0.26389\n132746|0.43056\n132747|0.47222\n132748|0.55556\n132749|0.55556\n132750|0.16667\n132751|0.58333\n132752|0.5\n132753|0.48611\n132754|0.63889\n132755|0.5\n132756|0.52778\n132757|0.48611\n132758|0.56944\n132759|0.65278\n132760|0.72222\n132761|0.43056\n132762|0.59722\n132763|0.61111\n132764|0.34722\n132765|0.45833\n132766|0.33333\n132767|0.73611\n132768|0.875\n132769|0.68056\n132770|0.11111\n132771|0.5\n132772|0.5\n132773|0.5\n132774|0.34722\n132775|0.43056\n132776|0.875\n132777|0.31944\n132778|0.11111\n132779|0.5\n132780|0.18056\n132781|0.22222\n132782|0.58333\n132783|0.61111\n132784|0.59722\n132785|0.125\n132786|0.29167\n132787|0.125\n132788|0.22222\n132789|0.19444\n132790|0.34722\n132791|0.65278\n132792|0.33333\n132793|0.625\n132794|0.5\n132795|0.79167\n132796|0.22222\n132797|0.44444\n132798|0.15278\n132799|0.26389\n132800|0.30556\n132801|0.45833\n132802|0.56944\n132803|0.83333\n132804|0.72222\n132805|0.91667\n132806|0.51389\n132807|0.083333\n132808|0.63889\n132809|0.81944\n132810|0.77778\n132811|0.75\n132812|0.31944\n132813|0.34722\n132814|0.41667\n132815|0.76389\n132816|0.43056\n132817|0.66667\n132818|0.5\n132819|0.41667\n132820|0.54167\n132821|0.66667\n132822|0.63889\n132823|0.80556\n132824|0.55556\n132825|0.38889\n132826|0.55556\n132827|0.45833\n132828|0.51389\n132829|0.48611\n132830|0.5\n132831|0.54167\n132832|0.5\n132833|0.5\n132834|0.5\n132835|0.58333\n132836|0.40278\n132837|0.5\n132838|0.45833\n132839|0.45833\n132840|0.34722\n132841|0.41667\n132842|0.625\n132843|0.54167\n132844|0.43056\n132845|0.51389\n132846|0.54167\n132847|0.77778\n132848|0.77778\n132849|0.80556\n132850|0.61111\n132851|0.79167\n132852|0.63889\n132853|0.625\n132854|0.76389\n132855|0.91667\n132856|0.97222\n132857|0.81944\n132858|0.48611\n132859|0.44444\n132860|0.5\n132861|0.76389\n132862|0.27778\n132863|0.38889\n132864|0.47222\n132865|0.5\n132866|0.58333\n132867|0.77778\n132868|0.44444\n132869|0.5\n132870|0.73611\n132871|0.52778\n132872|0.5\n132873|0.70833\n132874|0.5\n132875|0.47222\n132876|0.29167\n132877|0.27778\n132878|0.55556\n132879|0.38889\n132880|0.86111\n132881|0.69444\n132882|0.5\n132883|0.66667\n132884|0.59722\n132885|0.27778\n132886|0.58333\n132887|0.66667\n132888|0.52778\n132889|0.47222\n132890|0.625\n132891|0.5\n132892|0.5\n132893|0.73611\n132894|0.70833\n132895|0.45833\n132896|0.40278\n132897|0.33333\n132898|0.34722\n132899|0.20833\n132900|0.69444\n132901|0.63889\n132902|0.68056\n132903|0.36111\n132904|0.5\n132905|0.5\n132906|0.5\n132907|0.5\n132908|0.43056\n132909|0.56944\n132910|0.72222\n132911|0.55556\n132912|0.80556\n132913|0.80556\n132914|0.75\n132915|0.86111\n132916|0.77778\n132917|0.73611\n132918|0.80556\n132919|0.61111\n132920|0.5\n132921|0.47222\n132922|0.30556\n132923|0.63889\n132924|0.375\n132925|0.70833\n132926|0.069444\n132927|0.5\n132928|0.5\n132929|0.54167\n132930|0.36111\n132931|0.55556\n132932|0.72222\n132933|0.55556\n132934|0.625\n132935|0.66667\n132936|0.61111\n132937|0.83333\n132938|0.47222\n132939|0.30556\n132940|0.55556\n132941|0.51389\n132942|0.52778\n132943|0.44444\n132944|0.44444\n132945|0.66667\n132946|0.13889\n132947|0.69444\n132948|0.66667\n132949|0.5\n132950|0.5\n132951|0.55556\n132952|0.26389\n132953|0.5\n132954|0.22222\n132955|0.36111\n132956|0.43056\n132957|0.75\n132958|0.5\n132959|0.76389\n132960|0.65278\n132961|0.69444\n132962|0.66667\n132963|0.36111\n132964|0.43056\n132965|0.73611\n132966|0.56944\n132967|0.45833\n132968|0.875\n132969|0.33333\n132970|0.59722\n132971|0.66667\n132972|0.56944\n132973|0.45833\n132974|0.51389\n132975|0.44444\n132976|0.41667\n132977|0.63889\n132978|0.66667\n132979|0.70833\n132980|0.63889\n132981|0.52778\n132982|0.65278\n132983|0.625\n132984|0.30556\n132985|0.56944\n132986|0.44444\n132987|0.52778\n132988|0.54167\n132989|0.66667\n132990|0.52778\n132991|0.22222\n132992|0.44444\n132993|0.52778\n132994|0.58333\n132995|0.52778\n132996|0.375\n132997|0.36111\n132998|0.63889\n132999|0.5\n133000|0.31944\n133001|0.375\n133002|0.40278\n133003|0.625\n133004|0.31944\n133005|0.48611\n133006|0.16667\n133007|0.69444\n133008|0.5\n133009|0.5\n133010|0.48611\n133011|0.18056\n133012|0.27778\n133013|0.16667\n133014|0.27778\n133015|0.45833\n133016|0.55556\n133017|0.75\n133018|0.43056\n133019|0.54167\n133020|0.55556\n133021|0.63889\n133022|0.79167\n133023|0.66667\n133024|0.22222\n133025|0.875\n133026|0.83333\n133027|0.22222\n133028|0.33333\n133029|0.55556\n133030|0.36111\n133031|0.34722\n133032|0.59722\n133033|0.55556\n133034|0.41667\n133035|0.51389\n133036|0.55556\n133037|0.51389\n133038|0.70833\n133039|0.22222\n133040|0.23611\n133041|0.25\n133042|0.33333\n133043|0.51389\n133044|0.5\n133045|0.66667\n133046|0.5\n133047|0.5\n133048|0.5\n133049|0.65278\n133050|0.40278\n133051|0.5\n133052|0.77778\n133053|0.77778\n133054|0.5\n133055|0.5\n133056|0.31944\n133057|0.51389\n133058|0.58333\n133059|0.19444\n133060|0.5\n133061|0.5\n133062|0.59722\n133063|0.625\n133064|0.5\n133065|0.5\n133066|0.54167\n133067|0.5\n133068|0.38889\n133069|0.66667\n133070|0.34722\n133071|0.38889\n133072|0.66667\n133073|0.69444\n133074|0.52778\n133075|0.55556\n133076|0.55556\n133077|0.47222\n133078|0.66667\n133079|0.51389\n133080|0.94444\n133081|0.75\n133082|0.44444\n133083|0.5\n133084|0.5\n133085|0.66667\n133086|0.5\n133087|0.44444\n133088|0.29167\n133089|0.47222\n133090|0.58333\n133091|0.47222\n133092|0.69444\n133093|0.5\n133094|0.54167\n133095|0.51389\n133096|0.51389\n133097|0.38889\n133098|0.68056\n133099|0.55556\n133100|0.61111\n133101|0.5\n133102|0.44444\n133103|0.5\n133104|0.083333\n133105|0.13889\n133106|0.38889\n133107|0.27778\n133108|0.5\n133109|0.54167\n133110|0.38889\n133111|0.47222\n133112|0.63889\n133113|0.77778\n133114|0.72222\n133115|0.625\n133116|0.61111\n133117|0.66667\n133118|0.34722\n133119|0.31944\n133120|0.70833\n133121|0.61111\n133122|0.52778\n133123|0.63889\n133124|0.58333\n133125|0.86111\n133126|0.5\n133127|0.47222\n133128|0.54167\n133129|0.79167\n133130|0.88889\n133131|0.75\n133132|0.83333\n133133|0.58333\n133134|0.58333\n133135|0.79167\n133136|0.55556\n133137|0.52778\n133138|0.54167\n133139|0.58333\n133140|0.44444\n133141|0.59722\n133142|0.38889\n133143|0.5\n133144|0.55556\n133145|0.52778\n133146|0.51389\n133147|0.63889\n133148|0.5\n133149|0.61111\n133150|0.41667\n133151|0.5\n133152|0.38889\n133153|0.58333\n133154|0.625\n133155|0.5\n133156|0.61111\n133157|0.54167\n133158|0.5\n133159|0.63889\n133160|0.38889\n133161|0.81944\n133162|0.73611\n133163|0.38889\n133164|0.55556\n133165|0.47222\n133166|0.5\n133167|0.51389\n133168|0.5\n133169|0.63889\n133170|0.61111\n133171|0.59722\n133172|0.61111\n133173|0.5\n133174|0.48611\n133175|0.44444\n133176|0.41667\n133177|0.38889\n133178|0.43056\n133179|0.27778\n133180|0.41667\n133181|0.25\n133182|0.54167\n133183|0.15278\n133184|0.45833\n133185|0.31944\n133186|0.44444\n133187|0.52778\n133188|0.55556\n133189|0.5\n133190|0.58333\n133191|0.34722\n133192|0.30556\n133193|0.30556\n133194|0.5\n133195|0.45833\n133196|0.083333\n133197|0.26389\n133198|0.48611\n133199|0.54167\n133200|0.625\n133201|0.44444\n133202|0.56944\n133203|0.63889\n133204|0.52778\n133205|0.44444\n133206|0.66667\n133207|0.69444\n133208|0.83333\n133209|0.59722\n133210|0.66667\n133211|0.58333\n133212|0.52778\n133213|0.5\n133214|0.34722\n133215|0.45833\n133216|0.54167\n133217|0.22222\n133218|0.5\n133219|0.29167\n133220|0.47222\n133221|0.51389\n133222|0.875\n133223|0.875\n133224|0.70833\n133225|0.51389\n133226|0.61111\n133227|0.5\n133228|0.5\n133229|0.54167\n133230|0.5\n133231|0.68056\n133232|0.5\n133233|0.5\n133234|0.5\n133235|0.52778\n133236|0.5\n133237|0.5\n133238|0.5\n133239|0.51389\n133240|0.59722\n133241|0.51389\n133242|0.5\n133243|0.47222\n133244|0.58333\n133245|0.45833\n133246|0.55556\n133247|0.25\n133248|0.23611\n133249|0.25\n133250|0.58333\n133251|0.22222\n133252|0.65278\n133253|0.68056\n133254|0.73611\n133255|0.55556\n133256|0.68056\n133257|0.41667\n133258|0.56944\n133259|0.5\n133260|0.38889\n133261|0.45833\n133262|0.45833\n133263|0.5\n133264|0.5\n133265|0.45833\n133266|0.25\n133267|0.5\n133268|0.44444\n133269|0.30556\n133270|0.45833\n133271|0.33333\n133272|0.36111\n133273|0.52778\n133274|0.47222\n133275|0.29167\n133276|0.51389\n133277|0.48611\n133278|0.38889\n133279|0.375\n133280|0.86111\n133281|0.33333\n133282|0.52778\n133283|0.55556\n133284|0.52778\n133285|0.47222\n133286|0.5\n133287|0.20833\n133288|0.47222\n133289|0.11111\n133290|0.54167\n133291|0.25\n133292|0.33333\n133293|0.34722\n133294|0.54167\n133295|0.5\n133296|0.77778\n133297|0.38889\n133298|0.72222\n133299|0.38889\n133300|0.30556\n133301|0.51389\n133302|0.38889\n133303|0.76389\n133304|0.69444\n133305|0.77778\n133306|0.48611\n133307|0.5\n133308|0.54167\n133309|0.65278\n133310|0.77778\n133311|0.47222\n133312|0.5\n133313|0.58333\n133314|0.75\n133315|0.76389\n133316|0.56944\n133317|0.43056\n133318|0.22222\n133319|0.72222\n133320|0.55556\n133321|0.65278\n133322|0.61111\n133323|0.61111\n133324|0.72222\n133325|0.25\n133326|0.27778\n133327|0.40278\n133328|0.73611\n133329|0.5\n133330|0.40278\n133331|0.45833\n133332|0.34722\n133333|0.48611\n133334|0.47222\n133335|0.44444\n133336|0.33333\n133337|0.36111\n133338|0.48611\n133339|0.16667\n133340|0.40278\n133341|0.47222\n133342|0.5\n133343|0.5\n133344|0.5\n133345|0.5\n133346|0.44444\n133347|0.63889\n133348|0.20833\n133349|0.33333\n133350|0.47222\n133351|0.70833\n133352|0.38889\n133353|0.33333\n133354|0.58333\n133355|0.5\n133356|0.58333\n133357|0.5\n133358|0.61111\n133359|0.48611\n133360|0.52778\n133361|0.23611\n133362|0.44444\n133363|0.68056\n133364|0.55556\n133365|0.70833\n133366|0.80556\n133367|0.79167\n133368|0.38889\n133369|0.48611\n133370|0.375\n133371|0.54167\n133372|0.36111\n133373|0.44444\n133374|0.75\n133375|0.45833\n133376|0.44444\n133377|0.65278\n133378|0.69444\n133379|0.29167\n133380|0.44444\n133381|0.44444\n133382|0.5\n133383|0.55556\n133384|0.5\n133385|0.51389\n133386|0.54167\n133387|0.5\n133388|0.55556\n133389|0.51389\n133390|0.45833\n133391|0.5\n133392|0.54167\n133393|0.29167\n133394|0.43056\n133395|0.36111\n133396|0.44444\n133397|0.5\n133398|0.63889\n133399|0.65278\n133400|0.5\n133401|0.36111\n133402|0.52778\n133403|0.54167\n133404|0.56944\n133405|0.86111\n133406|0.86111\n133407|0.65278\n133408|0.63889\n133409|0.66667\n133410|0.33333\n133411|0.59722\n133412|0.86111\n133413|0.69444\n133414|0.5\n133415|0.45833\n133416|0.23611\n133417|0.25\n133418|0.5\n133419|0.66667\n133420|0.79167\n133421|0.83333\n133422|0.76389\n133423|0.54167\n133424|0.66667\n133425|0.61111\n133426|0.66667\n133427|0.55556\n133428|0.61111\n133429|0.68056\n133430|0.65278\n133431|0.73611\n133432|0.68056\n133433|0.63889\n133434|0.5\n133435|0.72222\n133436|0.43056\n133437|0.66667\n133438|0.76389\n133439|0.25\n133440|0.18056\n133441|0.29167\n133442|0.15278\n133443|0.5\n133444|0.43056\n133445|0.5\n133446|0.55556\n133447|0.29167\n133448|0.63889\n133449|0.56944\n133450|0.83333\n133451|0.5\n133452|0.44444\n133453|0.47222\n133454|0.47222\n133455|0.11111\n133456|0.5\n133457|0.51389\n133458|0.54167\n133459|0.55556\n133460|0.5\n133461|0.375\n133462|0.40278\n133463|0.5\n133464|0.36111\n133465|0.5\n133466|0.375\n133467|0.55556\n133468|0.375\n133469|0.48611\n133470|0.41667\n133471|0.5\n133472|0.90278\n133473|0.58333\n133474|0.75\n133475|0.81944\n133476|0.5\n133477|0.44444\n133478|0.45833\n133479|0.19444\n133480|0.22222\n133481|0.027778\n133482|0.26389\n133483|0.51389\n133484|0.45833\n133485|0.54167\n133486|0.59722\n133487|0.61111\n133488|0.69444\n133489|0.68056\n133490|0.61111\n133491|0.76389\n133492|0.38889\n133493|0.54167\n133494|0.59722\n133495|0.68056\n133496|0.5\n133497|0.47222\n133498|0.47222\n133499|0.54167\n133500|0.54167\n133501|0.5\n133502|0.33333\n133503|0.26389\n133504|0.36111\n133505|0.5\n133506|0.44444\n133507|0.38889\n133508|0.5\n133509|0.36111\n133510|0.45833\n133511|0.33333\n133512|0.55556\n133513|0.61111\n133514|0.45833\n133515|0.44444\n133516|0.5\n133517|0.5\n133518|0.72222\n133519|0.72222\n133520|0.5\n133521|0.55556\n133522|0.77778\n133523|0.31944\n133524|0.69444\n133525|0.20833\n133526|0.5\n133527|0.5\n133528|0.5\n133529|0.44444\n133530|0.5\n133531|0.27778\n133532|0.72222\n133533|0.77778\n133534|0.33333\n133535|0.69444\n133536|0.81944\n133537|0.75\n133538|0.875\n133539|0.94444\n133540|0.77778\n133541|0.66667\n133542|0.73611\n133543|0.45833\n133544|0.66667\n133545|0.77778\n133546|0.68056\n133547|0.77778\n133548|0.61111\n133549|0.65278\n133550|0.45833\n133551|0.38889\n133552|0.48611\n133553|0.25\n133554|0.19444\n133555|0.51389\n133556|0.59722\n133557|0.61111\n133558|0.54167\n133559|0.19444\n133560|0.48611\n133561|0.22222\n133562|0.54167\n133563|0.44444\n133564|0.69444\n133565|0.40278\n133566|0.41667\n133567|0.44444\n133568|0.54167\n133569|0.81944\n133570|0.36111\n133571|0.097222\n133572|0.88889\n133573|0.41667\n133574|0.38889\n133575|0.5\n133576|0.69444\n133577|0.48611\n133578|0.80556\n133579|0.41667\n133580|0.055556\n133581|0.33333\n133582|0.36111\n133583|0.47222\n133584|0.77778\n133585|0.51389\n133586|0.68056\n133587|0.18056\n133588|0\n133589|0.5\n133590|0.58333\n133591|0.38889\n133592|0.5\n133593|0.5\n133594|0.5\n133595|0.45833\n133596|0.38889\n133597|0.40278\n133598|0.41667\n133599|0.30556\n133600|0.19444\n133601|0.27778\n133602|0.19444\n133603|0.055556\n133604|0.45833\n133605|0.45833\n133606|0.34722\n133607|0.48611\n133608|0.48611\n133609|0.59722\n133610|0.29167\n133611|0.5\n133612|0.45833\n133613|0.5\n133614|0.5\n133615|0.29167\n133616|0.5\n133617|0.72222\n133618|0.5\n133619|0.63889\n133620|0.54167\n133621|0.5\n133622|0.55556\n133623|0.58333\n133624|0.83333\n133625|0.5\n133626|0.58333\n133627|0.61111\n133628|0.59722\n133629|0.5\n133630|0.59722\n133631|0.73611\n133632|0.88889\n133633|0.47222\n133634|0.44444\n133635|0.44444\n133636|0.23611\n133637|0.25\n133638|0.375\n133639|0.26389\n133640|0.36111\n133641|0.66667\n133642|0.5\n133643|0.40278\n133644|0.58333\n133645|0.63889\n133646|0.5\n133647|0.51389\n133648|0.58333\n133649|0.75\n133650|0.65278\n133651|0.30556\n133652|0.51389\n133653|0.59722\n133654|0.65278\n133655|0.44444\n133656|0.47222\n133657|0.27778\n133658|0.33333\n133659|0.013889\n133660|0.5\n133661|0.44444\n133662|0.5\n133663|0.77778\n133664|0.20833\n133665|0.34722\n133666|0.38889\n133667|0.54167\n133668|0.27778\n133669|0.48611\n133670|0.52778\n133671|0.44444\n133672|0.5\n133673|0.59722\n133674|0.76389\n133675|0.55556\n133676|0.66667\n133677|0.65278\n133678|0.68056\n133679|0.68056\n133680|0.72222\n133681|0.58333\n133682|0.68056\n133683|0.79167\n133684|0.70833\n133685|0.97222\n133686|0.80556\n133687|0.56944\n133688|0.73611\n133689|0.55556\n133690|0.80556\n133691|0.77778\n133692|0.33333\n133693|0.72222\n133694|0.68056\n133695|0.63889\n133696|0.41667\n133697|0.86111\n133698|0.83333\n133699|0.54167\n133700|0.36111\n133701|0.65278\n133702|0.48611\n133703|0.45833\n133704|0.44444\n133705|0.5\n133706|0.5\n133707|0.20833\n133708|0.5\n133709|0.47222\n133710|0.5\n133711|0.5\n133712|0.625\n133713|0.59722\n133714|0.58333\n133715|0.43056\n133716|0.38889\n133717|0.625\n133718|0.36111\n133719|0.55556\n133720|0.33333\n133721|0.59722\n133722|0.375\n133723|0.43056\n133724|0.48611\n133725|0.45833\n133726|0.5\n133727|0.47222\n133728|0.52778\n133729|0.5\n133730|0.58333\n133731|0.54167\n133732|0.55556\n133733|0.54167\n133734|0.88889\n133735|0.38889\n133736|0.55556\n133737|0.72222\n133738|0.68056\n133739|0.52778\n133740|0.58333\n133741|0.59722\n133742|0.54167\n133743|0.58333\n133744|0.59722\n133745|0.56944\n133746|0.48611\n133747|0.75\n133748|0.52778\n133749|0.79167\n133750|0.75\n133751|0.86111\n133752|0.70833\n133753|0.88889\n133754|0.80556\n133755|0.80556\n133756|0.66667\n133757|0.76389\n133758|0.72222\n133759|0.63889\n133760|0.73611\n133761|0.68056\n133762|0.66667\n133763|0.66667\n133764|0.65278\n133765|0.80556\n133766|0.5\n133767|0.5\n133768|0.59722\n133769|0.48611\n133770|0.54167\n133771|0.58333\n133772|0.5\n133773|0.61111\n133774|0.38889\n133775|0.65278\n133776|0.48611\n133777|0.61111\n133778|0.56944\n133779|0.5\n133780|0.52778\n133781|0.375\n133782|0.47222\n133783|0.5\n133784|0.38889\n133785|0.5\n133786|0.51389\n133787|0.625\n133788|0.61111\n133789|0.93056\n133790|0.84722\n133791|0.38889\n133792|0.27778\n133793|0.41667\n133794|0.23611\n133795|0.5\n133796|0.5\n133797|0.31944\n133798|0.18056\n133799|0.56944\n133800|0.5\n133801|0.52778\n133802|0.61111\n133803|0.47222\n133804|0.56944\n133805|0.36111\n133806|0.20833\n133807|0.5\n133808|0.59722\n133809|0.63889\n133810|0.625\n133811|0.51389\n133812|0.5\n133813|0.63889\n133814|0.43056\n133815|0.66667\n133816|0.26389\n133817|0.72222\n133818|0.55556\n133819|0.44444\n133820|0.61111\n133821|0.5\n133822|0.5\n133823|0.5\n133824|0.47222\n133825|0.65278\n133826|0.44444\n133827|0.70833\n133828|0.41667\n133829|0.56944\n133830|0.23611\n133831|0.36111\n133832|0.69444\n133833|0.65278\n133834|0.43056\n133835|0.76389\n133836|0.52778\n133837|0.56944\n133838|0.83333\n133839|0.75\n133840|0.11111\n133841|0.11111\n133842|0.68056\n133843|0.61111\n133844|0.55556\n133845|0.59722\n133846|0.54167\n133847|0.51389\n133848|0.31944\n133849|0.58333\n133850|0.75\n133851|0.66667\n133852|0.54167\n133853|0.52778\n133854|0.19444\n133855|0.34722\n133856|0.68056\n133857|0.75\n133858|0.5\n133859|0.625\n133860|0.61111\n133861|0.5\n133862|0.40278\n133863|0.69444\n133864|0.56944\n133865|0.5\n133866|0.61111\n133867|0.86111\n133868|0.52778\n133869|0.68056\n133870|0.625\n133871|0.625\n133872|0.43056\n133873|0.38889\n133874|0.45833\n133875|0.40278\n133876|0.56944\n133877|0.51389\n133878|0.44444\n133879|0.40278\n133880|0.51389\n133881|0.5\n133882|0.51389\n133883|0.5\n133884|0.48611\n133885|0.5\n133886|0.65278\n133887|0.61111\n133888|0.55556\n133889|0.38889\n133890|0.23611\n133891|0.59722\n133892|0.44444\n133893|0.22222\n133894|0.41667\n133895|0.11111\n133896|0.31944\n133897|0.70833\n133898|0.80556\n133899|0.48611\n133900|0.29167\n133901|0.41667\n133902|0.30556\n133903|0.23611\n133904|0.47222\n133905|0.22222\n133906|0.73611\n133907|0.33333\n133908|0.61111\n133909|0.29167\n133910|0.51389\n133911|0.47222\n133912|0.68056\n133913|0.61111\n133914|0.54167\n133915|0.47222\n133916|0.80556\n133917|0.77778\n133918|0.66667\n133919|0.65278\n133920|0.23611\n133921|0.48611\n133922|0.48611\n133923|0.36111\n133924|0.47222\n133925|0.5\n133926|0.47222\n133927|0.45833\n133928|0.5\n133929|0.27778\n133930|0.55556\n133931|0.44444\n133932|0.5\n133933|0.65278\n133934|0.43056\n133935|0.52778\n133936|0.48611\n133937|0.47222\n133938|0.52778\n133939|0.375\n133940|0.47222\n133941|0.44444\n133942|0.40278\n133943|0.58333\n133944|0.68056\n133945|0.48611\n133946|0.54167\n133947|0.51389\n133948|0.5\n133949|0.5\n133950|0.51389\n133951|0.51389\n133952|0.5\n133953|0.36111\n133954|0.36111\n133955|0.51389\n133956|0.41667\n133957|0.5\n133958|0.59722\n133959|0.26389\n133960|0.38889\n133961|0.027778\n133962|0.75\n133963|0.68056\n133964|0.65278\n133965|0.48611\n133966|0.625\n133967|0.72222\n133968|0.51389\n133969|0.5\n133970|0.44444\n133971|0.44444\n133972|0.40278\n133973|0.45833\n133974|0.43056\n133975|0.51389\n133976|0.5\n133977|0.5\n133978|0.55556\n133979|0.625\n133980|0.86111\n133981|0.66667\n133982|0.5\n133983|0.5\n133984|0.625\n133985|0.5\n133986|0.51389\n133987|0.5\n133988|0.5\n133989|0.76389\n133990|0.26389\n133991|0.11111\n133992|0.68056\n133993|0.81944\n133994|0.84722\n133995|0.80556\n133996|0.51389\n133997|0.55556\n133998|1\n133999|0.66667\n134000|0.79167\n134001|0.86111\n134002|0.83333\n134003|0.80556\n134004|0.63889\n134005|0.83333\n134006|0.73611\n134007|0.41667\n134008|0.45833\n134009|0.18056\n134010|0.5\n134011|0.44444\n134012|0.375\n134013|0.5\n134014|0.5\n134015|0.5\n134016|0.5\n134017|0.51389\n134018|0.5\n134019|0.65278\n134020|0.5\n134021|0.5\n134022|0.55556\n134023|0.5\n134024|0.48611\n134025|0.31944\n134026|0.47222\n134027|0.5\n134028|0.55556\n134029|0.5\n134030|0.44444\n134031|0.61111\n134032|0.5\n134033|0.5\n134034|0.5\n134035|0.44444\n134036|0.58333\n134037|0.41667\n134038|0.68056\n134039|0.43056\n134040|0.40278\n134041|0.41667\n134042|0.18056\n134043|0.5\n134044|0.5\n134045|0.5\n134046|0.61111\n134047|0.55556\n134048|0.31944\n134049|0.52778\n134050|0.5\n134051|0.5\n134052|0.44444\n134053|0.5\n134054|0.5\n134055|0.5\n134056|0.43056\n134057|0.27778\n134058|0.61111\n134059|0.44444\n134060|0.55556\n134061|0.5\n134062|0.5\n134063|0.44444\n134064|0.44444\n134065|0.47222\n134066|0.5\n134067|0.5\n134068|0.41667\n134069|0.61111\n134070|0.52778\n134071|0.58333\n134072|0.5\n134073|0.51389\n134074|0.5\n134075|0.5\n134076|0.5\n134077|0.52778\n134078|0.5\n134079|0.44444\n134080|0.54167\n134081|0.5\n134082|0.58333\n134083|0.5\n134084|0.47222\n134085|0.30556\n134086|0.5\n134087|0.59722\n134088|0.69444\n134089|0.5\n134090|0.5\n134091|0.5\n134092|0.5\n134093|0.51389\n134094|0.47222\n134095|0.027778\n134096|0.43056\n134097|0.43056\n134098|0.44444\n134099|0.375\n134100|0.54167\n134101|0.72222\n134102|0.51389\n134103|0.5\n134104|0.47222\n134105|0.59722\n134106|0.69444\n134107|0.51389\n134108|0.11111\n134109|0.30556\n134110|0.66667\n134111|0.5\n134112|0.5\n134113|0.61111\n134114|0.5\n134115|0.47222\n134116|0.56944\n134117|0.44444\n134118|0.5\n134119|0.40278\n134120|0.43056\n134121|0.55556\n134122|0.375\n134123|0.5\n134124|0.65278\n134125|0.55556\n134126|0.5\n134127|0.66667\n134128|0.30556\n134129|0.31944\n134130|0.68056\n134131|0.76389\n134132|0.52778\n134133|0.66667\n134134|0.68056\n134135|0.41667\n134136|0.33333\n134137|0.45833\n134138|0.55556\n134139|0.77778\n134140|0.66667\n134141|0.097222\n134142|0.65278\n134143|0.52778\n134144|0.47222\n134145|0.41667\n134146|0.66667\n134147|0.83333\n134148|0.54167\n134149|0.63889\n134150|0.30556\n134151|0.56944\n134152|0.34722\n134153|0.26389\n134154|0.36111\n134155|0.5\n134156|0.36111\n134157|0.5\n134158|0.80556\n134159|0.44444\n134160|0.66667\n134161|0.52778\n134162|0.5\n134163|0.51389\n134164|0.84722\n134165|0.68056\n134166|0.66667\n134167|0.73611\n134168|0.68056\n134169|0.5\n134170|0.29167\n134171|0.56944\n134172|0.375\n134173|0.083333\n134174|0.51389\n134175|0.5\n134176|0.54167\n134177|0.26389\n134178|0.43056\n134179|0.52778\n134180|0.29167\n134181|0.26389\n134182|0.54167\n134183|0.88889\n134184|0.5\n134185|0.75\n134186|0.69444\n134187|0.65278\n134188|0.38889\n134189|0.5\n134190|0.75\n134191|0.5\n134192|0.5\n134193|0.5\n134194|0.52778\n134195|0.61111\n134196|0.48611\n134197|0.20833\n134198|0.66667\n134199|0.43056\n134200|0.5\n134201|0.83333\n134202|0.55556\n134203|0.55556\n134204|0.55556\n134205|0.875\n134206|0.5\n134207|0.18056\n134208|0.375\n134209|0.56944\n134210|0.5\n134211|0.73611\n134212|0.58333\n134213|0.38889\n134214|0.30556\n134215|0.44444\n134216|0.66667\n134217|0.77778\n134218|0.75\n134219|0.20833\n134220|0.36111\n134221|0.79167\n134222|0.38889\n134223|0.29167\n134224|0.77778\n134225|0.59722\n134226|0.33333\n134227|0.41667\n134228|0.81944\n134229|0.73611\n134230|0.41667\n134231|0.34722\n134232|0.31944\n134233|0.68056\n134234|0.30556\n134235|0.70833\n134236|0.56944\n134237|0.61111\n134238|0.81944\n134239|0.58333\n134240|0.48611\n134241|0.66667\n134242|0.80556\n134243|0.55556\n134244|0.68056\n134245|0.55556\n134246|0.68056\n134247|0.66667\n134248|0.48611\n134249|0.5\n134250|0.5\n134251|0.5\n134252|0.90278\n134253|0.61111\n134254|0.80556\n134255|0.43056\n134256|0.34722\n134257|0.61111\n134258|0.41667\n134259|0.73611\n134260|0.55556\n134261|0.51389\n134262|0.69444\n134263|0.5\n134264|0.29167\n134265|0.52778\n134266|0.45833\n134267|0.54167\n134268|0.40278\n134269|0.75\n134270|0.56944\n134271|0.59722\n134272|0.5\n134273|0.83333\n134274|0.73611\n134275|0.40278\n134276|0.33333\n134277|0.65278\n134278|0.56944\n134279|0.55556\n134280|0.59722\n134281|0.52778\n134282|0.55556\n134283|0.70833\n134284|0.54167\n134285|0.63889\n134286|0.63889\n134287|0.65278\n134288|0.5\n134289|0.56944\n134290|0.27778\n134291|0.47222\n134292|0.43056\n134293|0.23611\n134294|0.63889\n134295|0.58333\n134296|0.44444\n134297|0.51389\n134298|0.27778\n134299|0.31944\n134300|0.48611\n134301|0.5\n134302|0.23611\n134303|0.5\n134304|0.76389\n134305|0.5\n134306|0.5\n134307|0.55556\n134308|0.30556\n134309|0.30556\n134310|0.27778\n134311|0.88889\n134312|0.72222\n134313|0.5\n134314|0.33333\n134315|0.52778\n134316|0.30556\n134317|0.31944\n134318|0.58333\n134319|0.19444\n134320|0.81944\n134321|0.61111\n134322|0.25\n134323|0.19444\n134324|0.5\n134325|0.70833\n134326|0.55556\n134327|0.34722\n134328|0.45833\n134329|0.20833\n134330|0.55556\n134331|0.31944\n134332|0.5\n134333|0.5\n134334|0.65278\n134335|0.5\n134336|0.31944\n134337|0.95833\n134338|0.31944\n134339|0.38889\n134340|0.68056\n134341|0.5\n134342|0.65278\n134343|0.29167\n134344|0.63889\n134345|0.45833\n134346|0.56944\n134347|0.63889\n134348|0.56944\n134349|0.31944\n134350|0.69444\n134351|0.47222\n134352|0.73611\n134353|0.58333\n134354|0.75\n134355|0.70833\n134356|0.65278\n134357|0.79167\n134358|0.55556\n134359|0.68056\n134360|0.52778\n134361|0.25\n134362|0.34722\n134363|0.5\n134364|0.44444\n134365|0.5\n134366|0.44444\n134367|0.65278\n134368|0.65278\n134369|0.54167\n134370|0.29167\n134371|0.5\n134372|0.47222\n134373|0.38889\n134374|0.63889\n134375|0.52778\n134376|0.68056\n134377|0.59722\n134378|0.76389\n134379|0.22222\n134380|0.5\n134381|0.22222\n134382|0.40278\n134383|0.38889\n134384|0.625\n134385|0.43056\n134386|0.88889\n134387|0.73611\n134388|0.43056\n134389|0.52778\n134390|0.22222\n134391|0.77778\n134392|0.31944\n134393|0.38889\n134394|0.75\n134395|0.84722\n134396|0.75\n134397|0.76389\n134398|0.44444\n134399|0.66667\n134400|0.52778\n134401|0.69444\n134402|0.34722\n134403|0.77778\n134404|0.30556\n134405|0.097222\n134406|0.33333\n134407|0.22222\n134408|0.43056\n134409|0.19444\n134410|0.70833\n134411|0.38889\n134412|0.70833\n134413|0.875\n134414|0.25\n134415|0.34722\n134416|0.5\n134417|0.34722\n134418|0.72222\n134419|0.70833\n134420|0.63889\n134421|0.375\n134422|0.31944\n134423|0.055556\n134424|0.55556\n134425|0.5\n134426|0.47222\n134427|0.29167\n134428|0.29167\n134429|0.5\n134430|0.40278\n134431|0.56944\n134432|0.23611\n134433|0.25\n134434|0.27778\n134435|0.61111\n134436|0.27778\n134437|0.66667\n134438|0.59722\n134439|0.51389\n134440|0.625\n134441|0.19444\n134442|0.51389\n134443|0.43056\n134444|0.69444\n134445|0.68056\n134446|0.43056\n134447|0.875\n134448|0.72222\n134449|0.44444\n134450|0.5\n134451|0.55556\n134452|0.27778\n134453|0.76389\n134454|0.5\n134455|0.31944\n134456|0.79167\n134457|0.58333\n134458|0.58333\n134459|0.13889\n134460|0.58333\n134461|0.90278\n134462|0.5\n134463|0.44444\n134464|0.70833\n134465|0.22222\n134466|0.5\n134467|0.51389\n134468|0.70833\n134469|0.65278\n134470|0.70833\n134471|0.54167\n134472|0.68056\n134473|0.55556\n134474|0.45833\n134475|0.5\n134476|0.63889\n134477|0.54167\n134478|0.625\n134479|0.81944\n134480|0.38889\n134481|0.5\n134482|0.43056\n134483|0.75\n134484|0.38889\n134485|0.47222\n134486|0.58333\n134487|0.58333\n134488|0.43056\n134489|0.81944\n134490|0.31944\n134491|0.33333\n134492|0.75\n134493|0.59722\n134494|0.52778\n134495|0.30556\n134496|0.5\n134497|0.55556\n134498|0.77778\n134499|0.5\n134500|0.22222\n134501|0.375\n134502|0.55556\n134503|0.875\n134504|0.5\n134505|0.5\n134506|0.20833\n134507|0.5\n134508|0.61111\n134509|0.25\n134510|0.41667\n134511|0.75\n134512|0.43056\n134513|0.27778\n134514|0.31944\n134515|0.51389\n134516|0.40278\n134517|0.68056\n134518|0.25\n134519|0.56944\n134520|0.44444\n134521|0.38889\n134522|0.51389\n134523|0.59722\n134524|0.59722\n134525|0.54167\n134526|0.23611\n134527|0.55556\n134528|0.73611\n134529|0.72222\n134530|0.54167\n134531|0.41667\n134532|0.79167\n134533|0.54167\n134534|0.77778\n134535|0.26389\n134536|0.375\n134537|0.48611\n134538|0.5\n134539|0.55556\n134540|0.5\n134541|0.81944\n134542|0.5\n134543|0.75\n134544|0.27778\n134545|0.61111\n134546|0.38889\n134547|0.66667\n134548|0.5\n134549|0.26389\n134550|0.5\n134551|0.75\n134552|0.45833\n134553|0.56944\n134554|0.56944\n134555|0.70833\n134556|0.29167\n134557|0.097222\n134558|0.52778\n134559|0.69444\n134560|0.41667\n134561|0.38889\n134562|0.76389\n134563|0.72222\n134564|0.45833\n134565|0.38889\n134566|0.55556\n134567|0.23611\n134568|0.47222\n134569|0.13889\n134570|0.55556\n134571|0.56944\n134572|0.27778\n134573|0.33333\n134574|0.66667\n134575|0.5\n134576|0.43056\n134577|0.41667\n134578|0.5\n134579|0.23611\n134580|0.5\n134581|0.66667\n134582|0.47222\n134583|0.30556\n134584|0.55556\n134585|0.41667\n134586|0.80556\n134587|0.56944\n134588|0.30556\n134589|0.38889\n134590|0.38889\n134591|0.30556\n134592|0.68056\n134593|0.25\n134594|0.16667\n134595|0.65278\n134596|0.055556\n134597|0.48611\n134598|0.38889\n134599|0.33333\n134600|0.375\n134601|0.26389\n134602|0.30556\n134603|0.38889\n134604|0.77778\n134605|0.61111\n134606|0.375\n134607|0.66667\n134608|0.54167\n134609|0.59722\n134610|0.5\n134611|0.75\n134612|0.19444\n134613|0.25\n134614|0.83333\n134615|0.16667\n134616|0.5\n134617|0.30556\n134618|0.77778\n134619|0.5\n134620|0.43056\n134621|0.54167\n134622|0.5\n134623|0.45833\n134624|0.52778\n134625|0.68056\n134626|0.52778\n134627|0.69444\n134628|0.56944\n134629|0.72222\n134630|0.52778\n134631|0.77778\n134632|0.30556\n134633|0.23611\n134634|0.52778\n134635|0.29167\n134636|0.22222\n134637|0.94444\n134638|0.41667\n134639|0.34722\n134640|0.75\n134641|0.26389\n134642|0.63889\n134643|0.30556\n134644|0.44444\n134645|0.5\n134646|0.66667\n134647|0.44444\n134648|0.20833\n134649|0.68056\n134650|0.44444\n134651|0.40278\n134652|0.31944\n134653|0.54167\n134654|0.5\n134655|0.18056\n134656|0.5\n134657|0.51389\n134658|0.61111\n134659|0.59722\n134660|0.5\n134661|0.66667\n134662|0.5\n134663|0.55556\n134664|0.61111\n134665|0.5\n134666|0.52778\n134667|0.56944\n134668|0.61111\n134669|0.5\n134670|0.5\n134671|0.5\n134672|0.55556\n134673|0.59722\n134674|0.54167\n134675|0.5\n134676|0.51389\n134677|0.51389\n134678|0.5\n134679|0.5\n134680|0.5\n134681|0.44444\n134682|0.5\n134683|0.55556\n134684|0.5\n134685|0.47222\n134686|0.55556\n134687|0.5\n134688|0.58333\n134689|0.56944\n134690|0.5\n134691|0.5\n134692|0.5\n134693|0.61111\n134694|0.5\n134695|0.5\n134696|0.5\n134697|0.48611\n134698|0.5\n134699|0.5\n134700|0.5\n134701|0.83333\n134702|0.5\n134703|0.5\n134704|0.5\n134705|0.61111\n134706|0.5\n134707|0.5\n134708|0.52778\n134709|0.5\n134710|0.33333\n134711|0.5\n134712|0.45833\n134713|0.5\n134714|0.55556\n134715|0.5\n134716|0.5\n134717|0.54167\n134718|0.47222\n134719|0.69444\n134720|0.5\n134721|0.5\n134722|0.5\n134723|0.48611\n134724|0.5\n134725|0.5\n134726|0.5\n134727|0.52778\n134728|0.52778\n134729|0.56944\n134730|0.65278\n134731|0.66667\n134732|0.41667\n134733|0.5\n134734|0.40278\n134735|0.5\n134736|0.51389\n134737|0.5\n134738|0.52778\n134739|0.5\n134740|0.52778\n134741|0.5\n134742|0.5\n134743|0.40278\n134744|0.44444\n134745|0.5\n134746|0.58333\n134747|0.55556\n134748|0.68056\n134749|0.625\n134750|0.5\n134751|0.5\n134752|0.43056\n134753|0.5\n134754|0.5\n134755|0.56944\n134756|0.5\n134757|0.66667\n134758|0.5\n134759|0.47222\n134760|0.51389\n134761|0.58333\n134762|0.5\n134763|0.75\n134764|0.59722\n134765|0.5\n134766|0.5\n134767|0.44444\n134768|0.5\n134769|0.47222\n134770|0.5\n134771|0.58333\n134772|0.5\n134773|0.61111\n134774|0.625\n134775|0.72222\n134776|0.33333\n134777|0.52778\n134778|0.47222\n134779|0.54167\n134780|0.55556\n134781|0.5\n134782|0.5\n134783|0.5\n134784|0.61111\n134785|0.5\n134786|0.34722\n134787|0.34722\n134788|0.56944\n134789|0.70833\n134790|0.55556\n134791|0.44444\n134792|0.56944\n134793|0.22222\n134794|0.58333\n134795|0.52778\n134796|0.15278\n134797|0.5\n134798|0.34722\n134799|0.5\n134800|0.69444\n134801|0.55556\n134802|0.26389\n134803|0.48611\n134804|0.875\n134805|0.76389\n134806|0.88889\n134807|0.51389\n134808|0.63889\n134809|0.25\n134810|0.5\n134811|0.61111\n134812|0.5\n134813|0.51389\n134814|0.44444\n134815|0.34722\n134816|0.33333\n134817|0.31944\n134818|0.38889\n134819|0.23611\n134820|0.38889\n134821|0.65278\n134822|0.41667\n134823|0.5\n134824|0.5\n134825|0.75\n134826|0.5\n134827|0.58333\n134828|0.61111\n134829|0.59722\n134830|0.55556\n134831|0.72222\n134832|0.59722\n134833|0.52778\n134834|0.625\n134835|0.43056\n134836|0.51389\n134837|0.5\n134838|0.5\n134839|0.48611\n134840|0.76389\n134841|0.48611\n134842|0.47222\n134843|0.58333\n134844|0.27778\n134845|0.26389\n134846|0.55556\n134847|0.41667\n134848|0.625\n134849|0.5\n134850|0.5\n134851|0.5\n134852|0.47222\n134853|0.61111\n134854|0.65278\n134855|0.22222\n134856|0.38889\n134857|0.5\n134858|0.5\n134859|0.5\n134860|0.5\n134861|0.38889\n134862|0.48611\n134863|0.26389\n134864|0.43056\n134865|0.5\n134866|0.45833\n134867|0.54167\n134868|0.625\n134869|0.5\n134870|0.27778\n134871|0.375\n134872|0.43056\n134873|0.33333\n134874|0.44444\n134875|0.16667\n134876|0.375\n134877|0.52778\n134878|0.58333\n134879|0.48611\n134880|0.59722\n134881|0.055556\n134882|0.33333\n134883|0.5\n134884|0.5\n134885|0.48611\n134886|0.65278\n134887|0.5\n134888|0.63889\n134889|0.59722\n134890|0.30556\n134891|0.56944\n134892|0.72222\n134893|0.40278\n134894|0.75\n134895|0.625\n134896|0.40278\n134897|0.91667\n134898|0.93056\n134899|0.65278\n134900|0.86111\n134901|0.83333\n134902|0.59722\n134903|0.72222\n134904|0.84722\n134905|0.79167\n134906|0.93056\n134907|0.75\n134908|0.77778\n134909|0.88889\n134910|0.83333\n134911|0.68056\n134912|0.69444\n134913|0.90278\n134914|0.75\n134915|0.73611\n134916|0.59722\n134917|0.48611\n134918|0.5\n134919|0.56944\n134920|0.26389\n134921|0.125\n134922|0.44444\n134923|0.27778\n134924|0.34722\n134925|0.31944\n134926|0.36111\n134927|0.47222\n134928|0.23611\n134929|0.41667\n134930|0.55556\n134931|0.26389\n134932|0.45833\n134933|0.55556\n134934|0.56944\n134935|0.59722\n134936|0.5\n134937|0.56944\n134938|0.18056\n134939|0.5\n134940|0.47222\n134941|0.40278\n134942|0.52778\n134943|0.72222\n134944|0.55556\n134945|0.51389\n134946|0.61111\n134947|0.43056\n134948|0.61111\n134949|0.375\n134950|0.38889\n134951|0.5\n134952|0.77778\n134953|0.63889\n134954|0.40278\n134955|0.5\n134956|0.55556\n134957|0.52778\n134958|0.44444\n134959|0.45833\n134960|0.625\n134961|0.70833\n134962|0.51389\n134963|0.58333\n134964|0.77778\n134965|0.55556\n134966|0.68056\n134967|0.5\n134968|0.29167\n134969|0.38889\n134970|0.5\n134971|0.5\n134972|0.36111\n134973|0.30556\n134974|0.5\n134975|0.72222\n134976|0.38889\n134977|0.58333\n134978|0.5\n134979|0.19444\n134980|0.5\n134981|0.22222\n134982|0.51389\n134983|0.47222\n134984|0.27778\n134985|0.41667\n134986|0.79167\n134987|0.66667\n134988|0.51389\n134989|0.5\n134990|0.54167\n134991|0.75\n134992|0.70833\n134993|0.63889\n134994|0.70833\n134995|0.72222\n134996|0.66667\n134997|0.76389\n134998|0.5\n134999|0.5\n135000|0.5\n135001|0.38889\n135002|0.15278\n135003|0.38889\n135004|0.54167\n135005|0.41667\n135006|0.61111\n135007|0.34722\n135008|0.44444\n135009|0.5\n135010|0.55556\n135011|0.5\n135012|0.63889\n135013|0.61111\n135014|0.61111\n135015|0.48611\n135016|0.5\n135017|0.5\n135018|0.55556\n135019|0.59722\n135020|0.5\n135021|0.65278\n135022|0.86111\n135023|0.5\n135024|0.68056\n135025|0.68056\n135026|0.83333\n135027|0.5\n135028|0.44444\n135029|0.48611\n135030|0.45833\n135031|0.56944\n135032|0.65278\n135033|0.625\n135034|0.55556\n135035|0.48611\n135036|0.5\n135037|0.56944\n135038|0.54167\n135039|0.48611\n135040|0.61111\n135041|0.5\n135042|0.33333\n135043|0.44444\n135044|0.51389\n135045|0.58333\n135046|0.40278\n135047|0.58333\n135048|0.5\n135049|0.5\n135050|0.5\n135051|0.55556\n135052|0.55556\n135053|0.375\n135054|0.44444\n135055|0.45833\n135056|0.58333\n135057|0.52778\n135058|0.79167\n135059|0.5\n135060|0.5\n135061|0.66667\n135062|0.5\n135063|0.44444\n135064|0.56944\n135065|0.51389\n135066|0.63889\n135067|0.45833\n135068|0.44444\n135069|0.375\n135070|0.66667\n135071|0.5\n135072|0.80556\n135073|0.47222\n135074|0.5\n135075|0.56944\n135076|0.44444\n135077|0.48611\n135078|0.30556\n135079|0.5\n135080|0.66667\n135081|0.36111\n135082|0.5\n135083|0.33333\n135084|0.22222\n135085|0.5\n135086|0.45833\n135087|0.44444\n135088|0.54167\n135089|0.55556\n135090|0.52778\n135091|0.58333\n135092|0.66667\n135093|0.44444\n135094|0.58333\n135095|0.55556\n135096|0.51389\n135097|0.41667\n135098|0.5\n135099|0.43056\n135100|0.69444\n135101|0.54167\n135102|0.44444\n135103|0.38889\n135104|0.5\n135105|0.36111\n135106|0.55556\n135107|0.44444\n135108|0.5\n135109|0.44444\n135110|0.34722\n135111|0.45833\n135112|0.81944\n135113|0.5\n135114|0.48611\n135115|0.5\n135116|0.38889\n135117|0.72222\n135118|0.15278\n135119|0.54167\n135120|0.51389\n135121|0.52778\n135122|0.47222\n135123|0.069444\n135124|0.61111\n135125|0.625\n135126|0.54167\n135127|0.79167\n135128|0.45833\n135129|0.625\n135130|0.38889\n135131|0.5\n135132|0.52778\n135133|0.5\n135134|0.5\n135135|0.51389\n135136|0.44444\n135137|0.5\n135138|0.625\n135139|0.59722\n135140|0.58333\n135141|0.63889\n135142|0.44444\n135143|0.18056\n135144|0.51389\n135145|0.63889\n135146|0.61111\n135147|0.5\n135148|0.58333\n135149|0.5\n135150|0.56944\n135151|0.48611\n135152|0.5\n135153|0.5\n135154|0.33333\n135155|0.44444\n135156|0.58333\n135157|0.5\n135158|0.48611\n135159|0.58333\n135160|0.48611\n135161|0.16667\n135162|0.66667\n135163|0.625\n135164|0.375\n135165|0.16667\n135166|0.15278\n135167|0.33333\n135168|0.69444\n135169|0.5\n135170|0.5\n135171|0.16667\n135172|0.5\n135173|0.15278\n135174|0.51389\n135175|0.58333\n135176|0.66667\n135177|0.5\n135178|0.45833\n135179|0.5\n135180|0.61111\n135181|0.47222\n135182|0.5\n135183|0.29167\n135184|0.44444\n135185|0.54167\n135186|0.47222\n135187|0.54167\n135188|0.5\n135189|0.61111\n135190|0.76389\n135191|0.54167\n135192|0.45833\n135193|0.5\n135194|0.56944\n135195|0.38889\n135196|0.45833\n135197|0.5\n135198|0.63889\n135199|0.52778\n135200|0.5\n135201|0.59722\n135202|0.25\n135203|0.625\n135204|0.58333\n135205|0.22222\n135206|0.23611\n135207|0.22222\n135208|0.68056\n135209|0.55556\n135210|0.48611\n135211|0.55556\n135212|0.52778\n135213|0.5\n135214|0.59722\n135215|0.52778\n135216|0.5\n135217|0.58333\n135218|0.54167\n135219|0.55556\n135220|0.70833\n135221|0.66667\n135222|0.5\n135223|0.5\n135224|0.69444\n135225|0.80556\n135226|0.86111\n135227|0.59722\n135228|0.5\n135229|0.63889\n135230|0.51389\n135231|0.44444\n135232|0.58333\n135233|0.58333\n135234|0.51389\n135235|0.41667\n135236|0.44444\n135237|0.38889\n135238|0.47222\n135239|0.70833\n135240|0.52778\n135241|0.55556\n135242|0.58333\n135243|0.66667\n135244|0.48611\n135245|0.48611\n135246|0.41667\n135247|0.5\n135248|0.47222\n135249|0.45833\n135250|0.79167\n135251|0.56944\n135252|0.47222\n135253|0.5\n135254|0.5\n135255|0.36111\n135256|0.22222\n135257|0.34722\n135258|0.5\n135259|0.625\n135260|0.48611\n135261|0.5\n135262|0.59722\n135263|0.31944\n135264|0.5\n135265|0.45833\n135266|0.55556\n135267|0.55556\n135268|0.58333\n135269|0.5\n135270|0.54167\n135271|0.47222\n135272|0.625\n135273|0.65278\n135274|0.5\n135275|0.59722\n135276|0.56944\n135277|0.5\n135278|0.5\n135279|0.38889\n135280|0.48611\n135281|0.75\n135282|0.80556\n135283|0.70833\n135284|0.34722\n135285|0.65278\n135286|0.72222\n135287|0.77778\n135288|0.95833\n135289|0.83333\n135290|0.51389\n135291|0.5\n135292|0.55556\n135293|0.25\n135294|0.5\n135295|0.79167\n135296|0.59722\n135297|0.5\n135298|0.30556\n135299|0.59722\n135300|0.20833\n135301|0.55556\n135302|0.5\n135303|0.51389\n135304|0.41667\n135305|0.31944\n135306|0.625\n135307|0.51389\n135308|0.34722\n135309|0.56944\n135310|0.68056\n135311|0.097222\n135312|0.55556\n135313|0.41667\n135314|0.48611\n135315|0.76389\n135316|0.30556\n135317|0.61111\n135318|0.65278\n135319|0.54167\n135320|0.68056\n135321|0.33333\n135322|0.5\n135323|0.47222\n135324|0.86111\n135325|0.75\n135326|0.76389\n135327|0.63889\n135328|0.91667\n135329|0.75\n135330|0.75\n135331|0.95833\n135332|0.66667\n135333|0.83333\n135334|0.625\n135335|0.69444\n135336|0.81944\n135337|0.56944\n135338|0.61111\n135339|0.83333\n135340|0.55556\n135341|0.47222\n135342|0.625\n135343|0.63889\n135344|0.69444\n135345|0.625\n135346|0.80556\n135347|0.91667\n135348|0.11111\n135349|0.65278\n135350|0.38889\n135351|0.66667\n135352|0.63889\n135353|0.30556\n135354|0.625\n135355|0.41667\n135356|0.68056\n135357|0.23611\n135358|0.69444\n135359|0.40278\n135360|0.76389\n135361|0.5\n135362|0.5\n135363|0.51389\n135364|0.76389\n135365|0.20833\n135366|0.65278\n135367|0.18056\n135368|0.79167\n135369|0.76389\n135370|0.61111\n135371|0.69444\n135372|0.13889\n135373|0.61111\n135374|0.63889\n135375|0.72222\n135376|0.72222\n135377|0.58333\n135378|0.55556\n135379|0.5\n135380|0.45833\n135381|0.625\n135382|0.5\n135383|0.16667\n135384|0.48611\n135385|0.51389\n135386|0.20833\n135387|0.5\n135388|0.5\n135389|0.5\n135390|0.79167\n135391|0.5\n135392|0.52778\n135393|0.5\n135394|0.93056\n135395|0.5\n135396|0.58333\n135397|0.40278\n135398|0.77778\n135399|0.30556\n135400|0.625\n135401|0.72222\n135402|0.5\n135403|0.375\n135404|0.56944\n135405|0.47222\n135406|0.72222\n135407|0.52778\n135408|0.20833\n135409|0.68056\n135410|0.5\n135411|0.65278\n135412|0.47222\n135413|0.625\n135414|0.5\n135415|0.33333\n135416|0.55556\n135417|0.59722\n135418|0.61111\n135419|0.5\n135420|0.52778\n135421|0.52778\n135422|0.63889\n135423|0.55556\n135424|0.5\n135425|0.56944\n135426|0.52778\n135427|0.5\n135428|0.65278\n135429|0.47222\n135430|0.59722\n135431|0.19444\n135432|0.625\n135433|0.77778\n135434|0.77778\n135435|0.81944\n135436|0.76389\n135437|0.77778\n135438|0.55556\n135439|0.34722\n135440|0.5\n135441|0.55556\n135442|0.58333\n135443|0.5\n135444|0.5\n135445|0.61111\n135446|0.52778\n135447|0.63889\n135448|0.55556\n135449|0.45833\n135450|0.5\n135451|0.55556\n135452|0.65278\n135453|0.58333\n135454|0.73611\n135455|0.20833\n135456|0.47222\n135457|0.51389\n135458|0.44444\n135459|0.31944\n135460|0.52778\n135461|0.625\n135462|0.61111\n135463|0.65278\n135464|0.5\n135465|0.44444\n135466|0.27778\n135467|0.66667\n135468|0.59722\n135469|0.68056\n135470|0.63889\n135471|0.72222\n135472|0.31944\n135473|0.5\n135474|0.54167\n135475|0.54167\n135476|0.77778\n135477|0.76389\n135478|0.76389\n135479|0.93056\n135480|0.5\n135481|0.51389\n135482|0.5\n135483|0.5\n135484|0.23611\n135485|0.61111\n135486|0.375\n135487|0.41667\n135488|0.5\n135489|0.63889\n135490|0.5\n135491|0.47222\n135492|0.63889\n135493|0.61111\n135494|0.875\n135495|0.38889\n135496|0.63889\n135497|0.58333\n135498|0.66667\n135499|0.68056\n135500|0.44444\n135501|0.52778\n135502|0.40278\n135503|0.58333\n135504|0.72222\n135505|0.5\n135506|0.58333\n135507|0.58333\n135508|0.66667\n135509|0.51389\n135510|0.54167\n135511|0.61111\n135512|0.70833\n135513|0.76389\n135514|0.52778\n135515|0.5\n135516|0.5\n135517|0.56944\n135518|0.56944\n135519|0.44444\n135520|0.47222\n135521|0.40278\n135522|0.47222\n135523|0.38889\n135524|0.73611\n135525|0.52778\n135526|0.45833\n135527|0.44444\n135528|0.84722\n135529|0.55556\n135530|0.45833\n135531|0.83333\n135532|0.19444\n135533|0.48611\n135534|0.44444\n135535|0.625\n135536|0.52778\n135537|0.47222\n135538|0.54167\n135539|0.55556\n135540|0.625\n135541|0.69444\n135542|0.75\n135543|0.84722\n135544|0.61111\n135545|0.38889\n135546|0.47222\n135547|0.56944\n135548|0.70833\n135549|0.33333\n135550|0.56944\n135551|0.26389\n135552|0.38889\n135553|0.45833\n135554|0.5\n135555|0.52778\n135556|0.45833\n135557|0.5\n135558|0.41667\n135559|0.56944\n135560|0.52778\n135561|0.54167\n135562|0.51389\n135563|0.44444\n135564|0.58333\n135565|0.5\n135566|0.48611\n135567|0.77778\n135568|0.63889\n135569|0.55556\n135570|0.18056\n135571|0.31944\n135572|0.25\n135573|0.097222\n135574|0.55556\n135575|0.69444\n135576|0.47222\n135577|0.56944\n135578|0.48611\n135579|0.56944\n135580|0.38889\n135581|0.58333\n135582|0.55556\n135583|0.56944\n135584|0.61111\n135585|0.375\n135586|0.66667\n135587|0.73611\n135588|0.47222\n135589|0.68056\n135590|0.59722\n135591|0.70833\n135592|0.80556\n135593|0.48611\n135594|0.5\n135595|0.48611\n135596|0.43056\n135597|0.56944\n135598|0.73611\n135599|0.73611\n135600|0.77778\n135601|0.83333\n135602|0.041667\n135603|0.54167\n135604|0.54167\n135605|0.38889\n135606|0.51389\n135607|0.23611\n135608|0.625\n135609|0.56944\n135610|0.26389\n135611|0.38889\n135612|0.27778\n135613|0.5\n135614|0.38889\n135615|0.58333\n135616|0.18056\n135617|0.5\n135618|0.51389\n135619|0.51389\n135620|0.55556\n135621|0.65278\n135622|0.5\n135623|0.5\n135624|0.5\n135625|0.5\n135626|0.44444\n135627|0.52778\n135628|0.27778\n135629|0.5\n135630|0.51389\n135631|0.44444\n135632|0.58333\n135633|0.5\n135634|0.13889\n135635|0.22222\n135636|0.22222\n135637|0.41667\n135638|0.52778\n135639|0.27778\n135640|0.65278\n135641|0.34722\n135642|0.36111\n135643|0.61111\n135644|0.19444\n135645|0.30556\n135646|0.5\n135647|0.25\n135648|0.66667\n135649|0.55556\n135650|0.54167\n135651|0.69444\n135652|0.63889\n135653|0.75\n135654|0.5\n135655|0.54167\n135656|0.375\n135657|0.55556\n135658|0.66667\n135659|0.5\n135660|0.5\n135661|0.5\n135662|0.5\n135663|0.47222\n135664|0.51389\n135665|0.5\n135666|0.38889\n135667|0.52778\n135668|0.5\n135669|0.51389\n135670|0.5\n135671|0.45833\n135672|0.375\n135673|0.5\n135674|0.33333\n135675|0.48611\n135676|0.61111\n135677|0.5\n135678|0.48611\n135679|0.55556\n135680|0.51389\n135681|0.51389\n135682|0.083333\n135683|0.19444\n135684|0.52778\n135685|0.5\n135686|0.5\n135687|0.44444\n135688|0.79167\n135689|0.25\n135690|0.51389\n135691|0.5\n135692|0.41667\n135693|0.5\n135694|0.5\n135695|0.5\n135696|0.5\n135697|0.47222\n135698|0.58333\n135699|0.5\n135700|0.5\n135701|0.52778\n135702|0.5\n135703|0.68056\n135704|0.73611\n135705|0.51389\n135706|0.38889\n135707|0.43056\n135708|0.5\n135709|0.70833\n135710|0.5\n135711|0.5\n135712|0.66667\n135713|0.625\n135714|0.5\n135715|0.51389\n135716|0.5\n135717|0.5\n135718|0.5\n135719|0.48611\n135720|0.33333\n135721|0.33333\n135722|0.68056\n135723|0.5\n135724|0.5\n135725|0.5\n135726|0.5\n135727|0.5\n135728|0.48611\n135729|0.625\n135730|0.68056\n135731|0.61111\n135732|0.375\n135733|0.66667\n135734|0.77778\n135735|0.43056\n135736|0.26389\n135737|0.36111\n135738|0.47222\n135739|0.34722\n135740|0.65278\n135741|0.29167\n135742|0.58333\n135743|0.77778\n135744|0.5\n135745|0.61111\n135746|0.91667\n135747|0.55556\n135748|0.16667\n135749|0.38889\n135750|0.69444\n135751|0.56944\n135752|0.44444\n135753|0.72222\n135754|0.91667\n135755|0.84722\n135756|0.58333\n135757|0.63889\n135758|0.73611\n135759|0.76389\n135760|0.65278\n135761|0.30556\n135762|0.69444\n135763|0.43056\n135764|0\n135765|0.45833\n135766|0.22222\n135767|0.13889\n135768|0.069444\n135769|0.44444\n135770|0.69444\n135771|0.61111\n135772|0.86111\n135773|0.5\n135774|0.63889\n135775|0.59722\n135776|0.55556\n135777|0.23611\n135778|0.59722\n135779|0.56944\n135780|0.73611\n135781|0.88889\n135782|0.90278\n135783|0.44444\n135784|0.75\n135785|0.97222\n135786|0.73611\n135787|0.83333\n135788|0.44444\n135789|0.55556\n135790|0.48611\n135791|0.51389\n135792|0.79167\n135793|0.18056\n135794|0.097222\n135795|0.11111\n135796|0.19444\n135797|0.44444\n135798|0.11111\n135799|0.55556\n135800|0.41667\n135801|0.625\n135802|0.5\n135803|0.625\n135804|0.5\n135805|0.52778\n135806|0.27778\n135807|0.44444\n135808|0.5\n135809|0.68056\n135810|0.93056\n135811|0.45833\n135812|0.26389\n135813|0.23611\n135814|0.22222\n135815|0.44444\n135816|0.069444\n135817|0.61111\n135818|0.5\n135819|0.5\n135820|0.5\n135821|0.43056\n135822|0.45833\n135823|0.54167\n135824|0.63889\n135825|0.27778\n135826|0.75\n135827|0.27778\n135828|0.55556\n135829|0.375\n135830|0.52778\n135831|0.45833\n135832|0.72222\n135833|0.36111\n135834|0.51389\n135835|0.65278\n135836|0.5\n135837|0.56944\n135838|0.44444\n135839|0.52778\n135840|0.48611\n135841|0.30556\n135842|0.5\n135843|0.52778\n135844|0.31944\n135845|0.63889\n135846|0.41667\n135847|0.43056\n135848|0.5\n135849|0.63889\n135850|0.48611\n135851|0.5\n135852|0.55556\n135853|0.625\n135854|0.51389\n135855|0.59722\n135856|0.61111\n135857|0.5\n135858|0.51389\n135859|0.55556\n135860|0.29167\n135861|0.81944\n135862|0.23611\n135863|0.15278\n135864|0.23611\n135865|0.22222\n135866|0.45833\n135867|0.5\n135868|0.31944\n135869|0.51389\n135870|0.5\n135871|0.69444\n135872|0.55556\n135873|0.52778\n135874|0.61111\n135875|0.56944\n135876|0.55556\n135877|0.61111\n135878|0.34722\n135879|0.40278\n135880|0.59722\n135881|0.36111\n135882|0.56944\n135883|0.5\n135884|0.5\n135885|0.5\n135886|0.5\n135887|0.5\n135888|0.5\n135889|0.61111\n135890|0.36111\n135891|0.55556\n135892|0.26389\n135893|0.27778\n135894|0.65278\n135895|0.47222\n135896|0.30556\n135897|0.48611\n135898|0.69444\n135899|0.40278\n135900|0.5\n135901|0.52778\n135902|0.34722\n135903|0.51389\n135904|0.5\n135905|0.36111\n135906|0.41667\n135907|0.18056\n135908|0.47222\n135909|0.55556\n135910|0.86111\n135911|0.66667\n135912|0.45833\n135913|0.5\n135914|0.48611\n135915|0.5\n135916|0.5\n135917|0.5\n135918|0.5\n135919|0.5\n135920|0.5\n135921|0.36111\n135922|0.5\n135923|0.69444\n135924|0.5\n135925|0.26389\n135926|0.55556\n135927|0.5\n135928|0.55556\n135929|0.55556\n135930|0.41667\n135931|0.73611\n135932|0.54167\n135933|0.44444\n135934|0.5\n135935|0.48611\n135936|0.5\n135937|0.5\n135938|0.56944\n135939|0.5\n135940|0.45833\n135941|0.66667\n135942|0.58333\n135943|0.51389\n135944|0.44444\n135945|0.58333\n135946|0.58333\n135947|0.29167\n135948|0.5\n135949|0.40278\n135950|0.097222\n135951|0.70833\n135952|0.47222\n135953|0.52778\n135954|0.51389\n135955|0.5\n135956|0.40278\n135957|0.40278\n135958|0.5\n135959|0.66667\n135960|0.44444\n135961|0.5\n135962|0.72222\n135963|0.69444\n135964|0.5\n135965|0.5\n135966|0.33333\n135967|0.5\n135968|0.26389\n135969|0.5\n135970|0.51389\n135971|0.66667\n135972|0.56944\n135973|0.52778\n135974|0.43056\n135975|0.45833\n135976|0.5\n135977|0.44444\n135978|0.44444\n135979|0.83333\n135980|1\n135981|0.88889\n135982|0.63889\n135983|0.54167\n135984|0.80556\n135985|0.26389\n135986|0.56944\n135987|0.81944\n135988|0.48611\n135989|0.47222\n135990|0.5\n135991|0.73611\n135992|0.5\n135993|0.5\n135994|0.52778\n135995|0.875\n135996|0.52778\n135997|0.48611\n135998|0.20833\n135999|0.5\n136000|0.25\n136001|0.77778\n136002|0.20833\n136003|0.36111\n136004|0.5\n136005|0.51389\n136006|0.5\n136007|0.52778\n136008|0.73611\n136009|0.5\n136010|0.43056\n136011|0.44444\n136012|0.40278\n136013|0.25\n136014|0.5\n136015|0.5\n136016|0.16667\n136017|0.47222\n136018|0.43056\n136019|0.48611\n136020|0.61111\n136021|0.29167\n136022|0.44444\n136023|0.72222\n136024|0.45833\n136025|0.26389\n136026|0.5\n136027|0.23611\n136028|0.38889\n136029|0.27778\n136030|0.33333\n136031|0.16667\n136032|0.5\n136033|0.5\n136034|0.66667\n136035|0.61111\n136036|0.43056\n136037|0.52778\n136038|0.51389\n136039|0.58333\n136040|0.55556\n136041|0.55556\n136042|0.48611\n136043|0.41667\n136044|0.54167\n136045|0.47222\n136046|0.81944\n136047|0.59722\n136048|0.30556\n136049|0.56944\n136050|0.38889\n136051|0.33333\n136052|0.40278\n136053|0.51389\n136054|0.40278\n136055|0.55556\n136056|0.34722\n136057|0.5\n136058|0.52778\n136059|0.72222\n136060|0.65278\n136061|0.48611\n136062|0.58333\n136063|0.36111\n136064|0.54167\n136065|0.5\n136066|0.55556\n136067|0.5\n136068|0.29167\n136069|0.5\n136070|0.63889\n136071|0.59722\n136072|0.61111\n136073|0.54167\n136074|0.59722\n136075|0.77778\n136076|0.15278\n136077|0.5\n136078|0.5\n136079|0.5\n136080|0.47222\n136081|0.51389\n136082|0.59722\n136083|0.63889\n136084|0.5\n136085|0.5\n136086|0.5\n136087|0.5\n136088|0.61111\n136089|0.61111\n136090|0.58333\n136091|0.69444\n136092|0.59722\n136093|0.47222\n136094|0.5\n136095|0.5\n136096|0.5\n136097|0.47222\n136098|0.44444\n136099|0.5\n136100|0.5\n136101|0.5\n136102|0.29167\n136103|0.51389\n136104|0.5\n136105|0.5\n136106|0.5\n136107|0.65278\n136108|0.68056\n136109|0.61111\n136110|0.63889\n136111|0.90278\n136112|0.75\n136113|0.45833\n136114|0.75\n136115|0.55556\n136116|0.61111\n136117|0.375\n136118|0.875\n136119|0.56944\n136120|0.70833\n136121|0.5\n136122|0.55556\n136123|0.52778\n136124|0.5\n136125|0.76389\n136126|0.56944\n136127|0.58333\n136128|0.72222\n136129|0.44444\n136130|0.58333\n136131|0.55556\n136132|0.5\n136133|0.55556\n136134|0.65278\n136135|0.31944\n136136|0.22222\n136137|0.5\n136138|0.52778\n136139|0.52778\n136140|0.36111\n136141|0.27778\n136142|0.66667\n136143|0.43056\n136144|0.56944\n136145|0.63889\n136146|0.54167\n136147|0.5\n136148|0.55556\n136149|0.52778\n136150|0.72222\n136151|0.83333\n136152|0.65278\n136153|0.79167\n136154|0.59722\n136155|0.38889\n136156|0.54167\n136157|0.69444\n136158|0.59722\n136159|0.56944\n136160|0.52778\n136161|0.76389\n136162|0.5\n136163|0.66667\n136164|0.73611\n136165|0.51389\n136166|0.5\n136167|0.51389\n136168|0.33333\n136169|0.5\n136170|0.55556\n136171|0.63889\n136172|0.47222\n136173|0.45833\n136174|0.5\n136175|0.47222\n136176|0.80556\n136177|0.86111\n136178|0.48611\n136179|0.44444\n136180|0.041667\n136181|0.44444\n136182|0.38889\n136183|0.33333\n136184|0.47222\n136185|0.52778\n136186|0.44444\n136187|0.20833\n136188|0.40278\n136189|0.33333\n136190|0.22222\n136191|0.26389\n136192|0.27778\n136193|0.15278\n136194|0.36111\n136195|0.083333\n136196|0.5\n136197|0.29167\n136198|0.63889\n136199|0.63889\n136200|0.41667\n136201|0.47222\n136202|0.84722\n136203|0.5\n136204|0.61111\n136205|0.5\n136206|0.66667\n136207|0.54167\n136208|0.63889\n136209|0.5\n136210|0.65278\n136211|0.48611\n136212|0.5\n136213|0.5\n136214|0.5\n136215|0.30556\n136216|0.31944\n136217|0.51389\n136218|0.5\n136219|0.055556\n136220|0.5\n136221|0.13889\n136222|0.54167\n136223|0.5\n136224|0.5\n136225|0.5\n136226|0.13889\n136227|0.34722\n136228|0.5\n136229|0.48611\n136230|0.65278\n136231|0.48611\n136232|0.59722\n136233|0.51389\n136234|0.44444\n136235|0.63889\n136236|0.30556\n136237|0.5\n136238|0.47222\n136239|0.56944\n136240|0.48611\n136241|0.65278\n136242|0.44444\n136243|0.58333\n136244|0.5\n136245|0.29167\n136246|0.52778\n136247|0.55556\n136248|0.47222\n136249|0.56944\n136250|0.40278\n136251|0.5\n136252|0.5\n136253|0.51389\n136254|0.5\n136255|0.5\n136256|0.34722\n136257|0.5\n136258|0.40278\n136259|0.45833\n136260|0.38889\n136261|0.55556\n136262|0.52778\n136263|0.72222\n136264|0.48611\n136265|0.63889\n136266|0.41667\n136267|0.59722\n136268|0.56944\n136269|0.44444\n136270|0.59722\n136271|0.45833\n136272|0.5\n136273|0.44444\n136274|0.47222\n136275|0.36111\n136276|0.23611\n136277|0.40278\n136278|0.5\n136279|0.5\n136280|0.56944\n136281|0.58333\n136282|0.5\n136283|0.5\n136284|0.48611\n136285|0.5\n136286|0.72222\n136287|0.75\n136288|0.013889\n136289|0.5\n136290|0.27778\n136291|0.61111\n136292|0.27778\n136293|0.59722\n136294|0.5\n136295|0.51389\n136296|0.72222\n136297|0.5\n136298|0.59722\n136299|0.40278\n136300|0.5\n136301|0.55556\n136302|0.5\n136303|0.51389\n136304|0.65278\n136305|0.61111\n136306|0.79167\n136307|0.5\n136308|0.55556\n136309|0.083333\n136310|0.5\n136311|0.5\n136312|0.51389\n136313|0.56944\n136314|0.5\n136315|0.47222\n136316|0.52778\n136317|0.52778\n136318|0.33333\n136319|0.58333\n136320|0.5\n136321|0.5\n136322|0.48611\n136323|0.69444\n136324|0.625\n136325|0.56944\n136326|0.55556\n136327|0.625\n136328|0.76389\n136329|0.56944\n136330|0.5\n136331|0.79167\n136332|0.5\n136333|0.5\n136334|0.29167\n136335|0.625\n136336|0.61111\n136337|0.66667\n136338|0.36111\n136339|0.5\n136340|0.23611\n136341|0.63889\n136342|0.61111\n136343|0.47222\n136344|0.5\n136345|0.5\n136346|0.55556\n136347|0.66667\n136348|0.44444\n136349|0.68056\n136350|0.61111\n136351|0.097222\n136352|0.52778\n136353|0.55556\n136354|0.79167\n136355|0.5\n136356|0.5\n136357|0.55556\n136358|0.54167\n136359|0.58333\n136360|0.5\n136361|0.68056\n136362|0.625\n136363|0.47222\n136364|0.44444\n136365|0.5\n136366|0.5\n136367|0.38889\n136368|0.61111\n136369|0.51389\n136370|0.5\n136371|0.26389\n136372|0.20833\n136373|0.40278\n136374|0.66667\n136375|0.69444\n136376|0.66667\n136377|0.63889\n136378|0.55556\n136379|0.88889\n136380|0.54167\n136381|0.44444\n136382|0.81944\n136383|0.5\n136384|0.5\n136385|0.5\n136386|0.5\n136387|0.375\n136388|0.52778\n136389|0.5\n136390|0.66667\n136391|0.47222\n136392|0.5\n136393|0.43056\n136394|0.5\n136395|0.56944\n136396|0.47222\n136397|0.5\n136398|0.5\n136399|0.44444\n136400|0.20833\n136401|0.45833\n136402|0.33333\n136403|0.31944\n136404|0.59722\n136405|0.5\n136406|0.47222\n136407|0.5\n136408|0.52778\n136409|0.63889\n136410|0.41667\n136411|0.66667\n136412|0.5\n136413|0.55556\n136414|0.76389\n136415|0.68056\n136416|0.5\n136417|0.38889\n136418|0.26389\n136419|0.22222\n136420|0.52778\n136421|0.5\n136422|0.47222\n136423|0.5\n136424|0.5\n136425|0.54167\n136426|0.63889\n136427|0.66667\n136428|0.625\n136429|0.30556\n136430|0.56944\n136431|0.30556\n136432|0.5\n136433|0.625\n136434|0.5\n136435|0.45833\n136436|0.31944\n136437|0.47222\n136438|0.55556\n136439|0.5\n136440|0.38889\n136441|0.5\n136442|0.625\n136443|0.5\n136444|0.40278\n136445|0.66667\n136446|0.51389\n136447|0.5\n136448|0.72222\n136449|0.66667\n136450|0.45833\n136451|0.55556\n136452|0.80556\n136453|0.41667\n136454|0.33333\n136455|0.47222\n136456|0.73611\n136457|0.72222\n136458|0.5\n136459|0.125\n136460|0.72222\n136461|0.5\n136462|0.48611\n136463|0.5\n136464|0.59722\n136465|0.5\n136466|0.5\n136467|0.5\n136468|0.44444\n136469|0.47222\n136470|0.5\n136471|0.54167\n136472|0.41667\n136473|0.30556\n136474|0.31944\n136475|0.5\n136476|0.55556\n136477|0.63889\n136478|0.55556\n136479|0.66667\n136480|0.47222\n136481|0.55556\n136482|0.5\n136483|0.5\n136484|0.5\n136485|0.5\n136486|0.47222\n136487|0.52778\n136488|0.75\n136489|0.56944\n136490|0.5\n136491|0.55556\n136492|0.5\n136493|0.48611\n136494|0.61111\n136495|0.41667\n136496|0.73611\n136497|0.5\n136498|0.16667\n136499|0.65278\n136500|0.5\n136501|0.5\n136502|0.41667\n136503|0.5\n136504|0.45833\n136505|0.54167\n136506|0.5\n136507|0.43056\n136508|0.54167\n136509|0.45833\n136510|0.54167\n136511|0.48611\n136512|0.5\n136513|0.94444\n136514|0.5\n136515|0.48611\n136516|0.33333\n136517|0.34722\n136518|0.5\n136519|0.56944\n136520|0.55556\n136521|0.31944\n136522|0.16667\n136523|0.56944\n136524|0.5\n136525|0.33333\n136526|0.40278\n136527|0.375\n136528|0.40278\n136529|0.75\n136530|0.5\n136531|0.73611\n136532|0.5\n136533|0.51389\n136534|0.69444\n136535|0.36111\n136536|0.5\n136537|0.55556\n136538|0.79167\n136539|0.75\n136540|0.65278\n136541|0.5\n136542|0.5\n136543|0.63889\n136544|0.48611\n136545|0.18056\n136546|0.29167\n136547|0.41667\n136548|0.625\n136549|0.29167\n136550|0.5\n136551|0.5\n136552|0.5\n136553|0.45833\n136554|0.48611\n136555|0.51389\n136556|0.61111\n136557|0.48611\n136558|0.79167\n136559|0.55556\n136560|0.5\n136561|0.63889\n136562|0.44444\n136563|0.61111\n136564|0.19444\n136565|0.52778\n136566|0.38889\n136567|0.47222\n136568|0.38889\n136569|0.5\n136570|0.55556\n136571|0.38889\n136572|0.58333\n136573|0.33333\n136574|0.44444\n136575|0.48611\n136576|0.41667\n136577|0.38889\n136578|0.5\n136579|0.5\n136580|0.41667\n136581|0.5\n136582|0.52778\n136583|0.5\n136584|0.5\n136585|0.54167\n136586|0.5\n136587|0.65278\n136588|0.72222\n136589|0.23611\n136590|0.90278\n136591|0.91667\n136592|0.91667\n136593|0.55556\n136594|0.5\n136595|0.5\n136596|0.30556\n136597|0.47222\n136598|0.5\n136599|0.45833\n136600|0.5\n136601|0.5\n136602|0.55556\n136603|0.5\n136604|0.61111\n136605|0.47222\n136606|0.52778\n136607|0.59722\n136608|0.5\n136609|0.70833\n136610|0.56944\n136611|0.5\n136612|0.73611\n136613|0.5\n136614|0.52778\n136615|0.40278\n136616|0.055556\n136617|0.125\n136618|0.40278\n136619|0.27778\n136620|0.16667\n136621|0.31944\n136622|0.29167\n136623|0.16667\n136624|0.45833\n136625|0.73611\n136626|0.77778\n136627|0.625\n136628|0.79167\n136629|0.5\n136630|0.40278\n136631|0.5\n136632|0.5\n136633|0.59722\n136634|0.125\n136635|0.76389\n136636|0.59722\n136637|0.5\n136638|0.40278\n136639|0.58333\n136640|0.5\n136641|0.5\n136642|0.5\n136643|0.52778\n136644|0.5\n136645|0.18056\n136646|0.45833\n136647|0.5\n136648|0.5\n136649|0.5\n136650|0.5\n136651|0.5\n136652|0.61111\n136653|0.5\n136654|0.5\n136655|0.61111\n136656|0.34722\n136657|0.5\n136658|0.5\n136659|0.40278\n136660|0.48611\n136661|0.44444\n136662|0.47222\n136663|0.19444\n136664|0.5\n136665|0.5\n136666|0.5\n136667|0.5\n136668|0.44444\n136669|0.63889\n136670|0.51389\n136671|0.55556\n136672|0.47222\n136673|0.625\n136674|0.51389\n136675|0.20833\n136676|0.80556\n136677|0.58333\n136678|0.55556\n136679|0.47222\n136680|0.61111\n136681|0.63889\n136682|0.98611\n136683|0.63889\n136684|0.66667\n136685|0.63889\n136686|0.5\n136687|0.5\n136688|0.56944\n136689|0.61111\n136690|0.5\n136691|0.5\n136692|0.5\n136693|0.5\n136694|0.47222\n136695|0.5\n136696|0.47222\n136697|0.52778\n136698|0.66667\n136699|0.69444\n136700|0.43056\n136701|0.5\n136702|0.73611\n136703|0.33333\n136704|0.55556\n136705|0.68056\n136706|0.5\n136707|0.27778\n136708|0.52778\n136709|0.375\n136710|0.59722\n136711|0.48611\n136712|0.45833\n136713|0.5\n136714|0.59722\n136715|0.70833\n136716|0.55556\n136717|0.20833\n136718|0.52778\n136719|0.5\n136720|0.5\n136721|0.48611\n136722|0.44444\n136723|0.47222\n136724|0.47222\n136725|0.72222\n136726|0.55556\n136727|0.54167\n136728|0.61111\n136729|0.75\n136730|0.44444\n136731|0.79167\n136732|0.26389\n136733|0.30556\n136734|0.22222\n136735|0.70833\n136736|0.16667\n136737|0.18056\n136738|0.15278\n136739|0.34722\n136740|0.11111\n136741|0.43056\n136742|0.47222\n136743|0.43056\n136744|0.75\n136745|0.70833\n136746|0.55556\n136747|0.70833\n136748|0.77778\n136749|0.47222\n136750|0.11111\n136751|0.58333\n136752|0.875\n136753|0.19444\n136754|0.41667\n136755|0.22222\n136756|0.29167\n136757|0.5\n136758|0.58333\n136759|0.375\n136760|0.25\n136761|0.27778\n136762|0.81944\n136763|0.33333\n136764|0.43056\n136765|0.54167\n136766|0.48611\n136767|0.55556\n136768|0.5\n136769|0.5\n136770|0.51389\n136771|0.36111\n136772|0.5\n136773|0.84722\n136774|0.40278\n136775|0.5\n136776|0.59722\n136777|0.48611\n136778|0.5\n136779|0.5\n136780|0.40278\n136781|0.45833\n136782|0.26389\n136783|0.5\n136784|0.5\n136785|0.5\n136786|0.29167\n136787|0.48611\n136788|0.41667\n136789|0.15278\n136790|0.34722\n136791|0.13889\n136792|0.5\n136793|0.375\n136794|0.27778\n136795|0.5\n136796|0.5\n136797|0.73611\n136798|0.54167\n136799|0.51389\n136800|0.38889\n136801|0.84722\n136802|0.54167\n136803|0.51389\n136804|0.5\n136805|0.61111\n136806|0.38889\n136807|0.30556\n136808|0.81944\n136809|0.75\n136810|0.72222\n136811|0.375\n136812|0.44444\n136813|0.51389\n136814|0.63889\n136815|0.44444\n136816|0.41667\n136817|0.63889\n136818|0.5\n136819|0.44444\n136820|0.63889\n136821|0.34722\n136822|0.34722\n136823|0.29167\n136824|0.33333\n136825|0.63889\n136826|0.5\n136827|0.47222\n136828|0.38889\n136829|0.25\n136830|0.63889\n136831|0.5\n136832|0.54167\n136833|0.65278\n136834|0.58333\n136835|0.59722\n136836|0.5\n136837|0.097222\n136838|0.47222\n136839|0.61111\n136840|0.23611\n136841|0.54167\n136842|0.5\n136843|0.33333\n136844|0.70833\n136845|0.51389\n136846|0.38889\n136847|0.47222\n136848|0.27778\n136849|0.5\n136850|0.5\n136851|0.52778\n136852|0.45833\n136853|0.29167\n136854|0.47222\n136855|0.48611\n136856|0.58333\n136857|0.5\n136858|0.44444\n136859|0.26389\n136860|0.34722\n136861|0.41667\n136862|0.34722\n136863|0.5\n136864|0.33333\n136865|0.5\n136866|0.55556\n136867|0.19444\n136868|0.44444\n136869|0.23611\n136870|0.5\n136871|0.23611\n136872|0.48611\n136873|0.61111\n136874|0.5\n136875|0.5\n136876|0.44444\n136877|0.375\n136878|0.75\n136879|0.77778\n136880|0.48611\n136881|0.16667\n136882|0.61111\n136883|0.61111\n136884|0.83333\n136885|0.80556\n136886|0.5\n136887|0.40278\n136888|0.16667\n136889|0.61111\n136890|0.56944\n136891|0.59722\n136892|0.5\n136893|0.44444\n136894|0.41667\n136895|0.44444\n136896|0.47222\n136897|0.48611\n136898|0.5\n136899|0.5\n136900|0.47222\n136901|0.27778\n136902|0.59722\n136903|0.31944\n136904|0.44444\n136905|0.5\n136906|0.52778\n136907|0.66667\n136908|0.5\n136909|0.375\n136910|0.59722\n136911|0.44444\n136912|0.54167\n136913|0.66667\n136914|0.80556\n136915|0.33333\n136916|0.125\n136917|0.76389\n136918|0.33333\n136919|0.27778\n136920|0.86111\n136921|0.72222\n136922|0.51389\n136923|0.44444\n136924|0.625\n136925|0.5\n136926|0.79167\n136927|0.77778\n136928|0.5\n136929|0.5\n136930|0.33333\n136931|0.16667\n136932|0.5\n136933|0.69444\n136934|0.69444\n136935|0.72222\n136936|0.83333\n136937|0.84722\n136938|0.63889\n136939|0.47222\n136940|0.58333\n136941|0.5\n136942|0.5\n136943|0.18056\n136944|0.61111\n136945|0.29167\n136946|0.51389\n136947|0.81944\n136948|0.69444\n136949|0.63889\n136950|0.47222\n136951|0.61111\n136952|0.5\n136953|0.55556\n136954|0.5\n136955|0.5\n136956|0.84722\n136957|0.58333\n136958|0.66667\n136959|0.72222\n136960|0.875\n136961|0.31944\n136962|0.31944\n136963|0.5\n136964|0.55556\n136965|0.23611\n136966|0.22222\n136967|0.56944\n136968|0.013889\n136969|0.625\n136970|0.94444\n136971|0.94444\n136972|0.73611\n136973|0.44444\n136974|0.45833\n136975|0.40278\n136976|0.56944\n136977|0.75\n136978|0.15278\n136979|0.5\n136980|0.5\n136981|0.5\n136982|0.65278\n136983|0.44444\n136984|0.66667\n136985|0.31944\n136986|0.5\n136987|0.34722\n136988|0.55556\n136989|0.38889\n136990|0.33333\n136991|0.625\n136992|0.79167\n136993|0.81944\n136994|0.75\n136995|0.5\n136996|0.54167\n136997|0.5\n136998|0.5\n136999|0.18056\n137000|0.5\n137001|0.18056\n137002|0.375\n137003|0.38889\n137004|0.25\n137005|0.47222\n137006|0.63889\n137007|0.69444\n137008|0.43056\n137009|0.5\n137010|0.79167\n137011|0.5\n137012|0.79167\n137013|0.72222\n137014|0.19444\n137015|0.48611\n137016|0.56944\n137017|0.5\n137018|0.48611\n137019|0.5\n137020|0.36111\n137021|0.38889\n137022|0.41667\n137023|0.66667\n137024|0.41667\n137025|0.72222\n137026|0.5\n137027|0.55556\n137028|0.52778\n137029|0.70833\n137030|0.5\n137031|0.65278\n137032|0.65278\n137033|0.66667\n137034|0.73611\n137035|0.77778\n137036|0.61111\n137037|0.63889\n137038|0.23611\n137039|0.77778\n137040|0.81944\n137041|0.77778\n137042|0.5\n137043|0.68056\n137044|0.36111\n137045|0.83333\n137046|0.65278\n137047|0.52778\n137048|0.58333\n137049|0.45833\n137050|0.75\n137051|0.38889\n137052|0.5\n137053|0.45833\n137054|0.63889\n137055|0.45833\n137056|0.5\n137057|0.66667\n137058|0.5\n137059|0.36111\n137060|0.31944\n137061|0.125\n137062|0.72222\n137063|0.70833\n137064|0.34722\n137065|0.55556\n137066|0.22222\n137067|0.5\n137068|0.52778\n137069|0.55556\n137070|0.15278\n137071|0.40278\n137072|0.47222\n137073|0.52778\n137074|0.34722\n137075|0.30556\n137076|0.22222\n137077|0.18056\n137078|0.5\n137079|0.51389\n137080|0.55556\n137081|0.34722\n137082|0.5\n137083|0.55556\n137084|0.625\n137085|0.41667\n137086|0.61111\n137087|0.625\n137088|0.34722\n137089|0.41667\n137090|0.34722\n137091|0.55556\n137092|0.5\n137093|0.55556\n137094|0.63889\n137095|0.16667\n137096|0.375\n137097|0.45833\n137098|0.44444\n137099|0.55556\n137100|0.34722\n137101|0.45833\n137102|0.55556\n137103|0.52778\n137104|0.31944\n137105|0.90278\n137106|0.84722\n137107|0.19444\n137108|0.48611\n137109|0.5\n137110|0.48611\n137111|0.44444\n137112|0.5\n137113|0.5\n137114|0.41667\n137115|0.55556\n137116|0.61111\n137117|0.54167\n137118|0.43056\n137119|0.55556\n137120|0.5\n137121|0.59722\n137122|0.56944\n137123|0.41667\n137124|0.27778\n137125|0.5\n137126|0.5\n137127|0.5\n137128|0.55556\n137129|0.44444\n137130|0.77778\n137131|0.5\n137132|0.5\n137133|0.51389\n137134|0.5\n137135|0.54167\n137136|0.5\n137137|0.47222\n137138|0.48611\n137139|0.5\n137140|0.5\n137141|0.375\n137142|0.68056\n137143|0.66667\n137144|0.55556\n137145|0.5\n137146|0.83333\n137147|0.38889\n137148|0.5\n137149|0.44444\n137150|0.58333\n137151|0.61111\n137152|0.59722\n137153|0.44444\n137154|0.27778\n137155|0.40278\n137156|0.5\n137157|0.41667\n137158|0.79167\n137159|0.625\n137160|0.68056\n137161|0.51389\n137162|0.41667\n137163|0.65278\n137164|0.55556\n137165|0.65278\n137166|0.68056\n137167|0.73611\n137168|0.77778\n137169|0.80556\n137170|0.69444\n137171|0.75\n137172|0.83333\n137173|0.75\n137174|0.68056\n137175|0.69444\n137176|0.58333\n137177|0.33333\n137178|0.27778\n137179|0.52778\n137180|0.20833\n137181|0.5\n137182|0.51389\n137183|0.5\n137184|0.5\n137185|0.5\n137186|0.51389\n137187|0.61111\n137188|0.58333\n137189|0.88889\n137190|0.83333\n137191|0.875\n137192|0.5\n137193|0.5\n137194|0.61111\n137195|0.76389\n137196|0.58333\n137197|0.52778\n137198|0.38889\n137199|0.55556\n137200|0.41667\n137201|0.72222\n137202|0.51389\n137203|0.5\n137204|0.66667\n137205|0.5\n137206|0.5\n137207|0.52778\n137208|0.5\n137209|0.52778\n137210|0.41667\n137211|0.55556\n137212|0.61111\n137213|0.40278\n137214|0.31944\n137215|0.5\n137216|0.5\n137217|0.5\n137218|0.41667\n137219|0.5\n137220|0.47222\n137221|0.43056\n137222|0.55556\n137223|0.51389\n137224|0.5\n137225|0.44444\n137226|0.5\n137227|0.5\n137228|0.5\n137229|0.58333\n137230|0.58333\n137231|0.55556\n137232|0.5\n137233|0.58333\n137234|0.34722\n137235|0.61111\n137236|0.5\n137237|0.5\n137238|0.27778\n137239|0.59722\n137240|0.27778\n137241|0.47222\n137242|0.23611\n137243|0.36111\n137244|0.5\n137245|0.44444\n137246|0.48611\n137247|0.5\n137248|0.5\n137249|0.68056\n137250|0.5\n137251|0.5\n137252|0.84722\n137253|0.5\n137254|0.625\n137255|0.5\n137256|0.5\n137257|0.5\n137258|0.625\n137259|0.55556\n137260|0.5\n137261|0.5\n137262|0.51389\n137263|0.44444\n137264|0.31944\n137265|0.5\n137266|0.083333\n137267|0.44444\n137268|0.81944\n137269|0.33333\n137270|0.63889\n137271|0.375\n137272|0.47222\n137273|0.23611\n137274|0.38889\n137275|0.5\n137276|0.56944\n137277|0.66667\n137278|0.45833\n137279|0.34722\n137280|0.31944\n137281|0.069444\n137282|0.44444\n137283|0.40278\n137284|0.33333\n137285|0.22222\n137286|0.375\n137287|0.44444\n137288|0.31944\n137289|0.40278\n137290|0.59722\n137291|0.44444\n137292|0.5\n137293|0.5\n137294|0.58333\n137295|0.48611\n137296|0.69444\n137297|0.5\n137298|0.5\n137299|0.5\n137300|0.5\n137301|0.5\n137302|0.5\n137303|0.45833\n137304|0.44444\n137305|0.58333\n137306|0.5\n137307|0.5\n137308|0.5\n137309|0.51389\n137310|0.5\n137311|0.34722\n137312|0.25\n137313|0.5\n137314|0.52778\n137315|0.52778\n137316|0.5\n137317|0.69444\n137318|0.5\n137319|0.58333\n137320|0.5\n137321|0.19444\n137322|0.48611\n137323|0.56944\n137324|0.63889\n137325|0.625\n137326|0.5\n137327|0.48611\n137328|0.34722\n137329|0.65278\n137330|0.29167\n137331|0.5\n137332|0.43056\n137333|0.56944\n137334|0.70833\n137335|0.52778\n137336|0.48611\n137337|0.56944\n137338|0.55556\n137339|0.5\n137340|0.68056\n137341|0.77778\n137342|0.70833\n137343|0.5\n137344|0.56944\n137345|0.23611\n137346|0.625\n137347|0.44444\n137348|0.43056\n137349|0.76389\n137350|0.63889\n137351|0.68056\n137352|0.73611\n137353|0.44444\n137354|0.5\n137355|0.63889\n137356|0.72222\n137357|0.625\n137358|0.61111\n137359|0.31944\n137360|0.44444\n137361|0.63889\n137362|0.48611\n137363|0.75\n137364|0.375\n137365|0.625\n137366|0.041667\n137367|0.5\n137368|0.40278\n137369|0.38889\n137370|0.63889\n137371|0.40278\n137372|0.44444\n137373|0.56944\n137374|0.55556\n137375|0.5\n137376|0.5\n137377|0.5\n137378|0.45833\n137379|0.52778\n137380|0.5\n137381|0.40278\n137382|0.5\n137383|0.56944\n137384|0.91667\n137385|0.44444\n137386|0.55556\n137387|0.55556\n137388|0.5\n137389|0.44444\n137390|0.40278\n137391|0.59722\n137392|0.45833\n137393|0.84722\n137394|0.5\n137395|0.52778\n137396|0.66667\n137397|0.66667\n137398|0.58333\n137399|0.56944\n137400|0.30556\n137401|0.61111\n137402|0.22222\n137403|0.51389\n137404|0.76389\n137405|0.86111\n137406|0.72222\n137407|0.69444\n137408|0.27778\n137409|0.5\n137410|0.52778\n137411|0.31944\n137412|0.61111\n137413|0.76389\n137414|0.23611\n137415|0.52778\n137416|0.33333\n137417|0.5\n137418|0.25\n137419|0.18056\n137420|0.63889\n137421|0.72222\n137422|0.56944\n137423|0.52778\n137424|0.52778\n137425|0.5\n137426|0.51389\n137427|0.5\n137428|0.48611\n137429|0.40278\n137430|0.5\n137431|0.65278\n137432|0.5\n137433|0.38889\n137434|0.72222\n137435|0.59722\n137436|0.51389\n137437|0.61111\n137438|0.16667\n137439|0.44444\n137440|0.59722\n137441|0.5\n137442|0.61111\n137443|0.61111\n137444|0.54167\n137445|0.45833\n137446|0.54167\n137447|0.625\n137448|0.56944\n137449|0.55556\n137450|0.61111\n137451|0.81944\n137452|0.48611\n137453|0.61111\n137454|0.63889\n137455|0.29167\n137456|0.70833\n137457|0.58333\n137458|0.13889\n137459|0.31944\n137460|0.56944\n137461|0.36111\n137462|0.63889\n137463|0.47222\n137464|0.44444\n137465|0.5\n137466|0.5\n137467|0.47222\n137468|0.68056\n137469|0.52778\n137470|0.5\n137471|0.5\n137472|0.5\n137473|0.41667\n137474|0.58333\n137475|0.52778\n137476|0.54167\n137477|0.70833\n137478|0.58333\n137479|0.56944\n137480|0.55556\n137481|0.5\n137482|0.5\n137483|0.27778\n137484|0.29167\n137485|0.5\n137486|0.5\n137487|0.47222\n137488|0.25\n137489|0.51389\n137490|0.69444\n137491|0.5\n137492|0.68056\n137493|0.55556\n137494|0.33333\n137495|0.20833\n137496|0.5\n137497|0.5\n137498|0.45833\n137499|0.38889\n137500|0.5\n137501|0.55556\n137502|0.73611\n137503|0.73611\n137504|0.44444\n137505|0.5\n137506|0.625\n137507|0.44444\n137508|0.55556\n137509|0.63889\n137510|0.36111\n137511|0.38889\n137512|0.27778\n137513|0.84722\n137514|0.34722\n137515|0.5\n137516|0.70833\n137517|0.63889\n137518|0.38889\n137519|0.48611\n137520|0.58333\n137521|0.58333\n137522|0.48611\n137523|0.5\n137524|0.65278\n137525|0.52778\n137526|0.13889\n137527|0.73611\n137528|0.52778\n137529|0.45833\n137530|0.66667\n137531|0.5\n137532|0.5\n137533|0.56944\n137534|0.5\n137535|0.61111\n137536|0.5\n137537|0.34722\n137538|0.76389\n137539|0.54167\n137540|0.20833\n137541|0.5\n137542|0.15278\n137543|0.5\n137544|0.69444\n137545|0.59722\n137546|0.31944\n137547|0.5\n137548|0.54167\n137549|0.5\n137550|0.5\n137551|0.41667\n137552|0.51389\n137553|0.61111\n137554|0.52778\n137555|0.77778\n137556|0.29167\n137557|0.75\n137558|0.5\n137559|0.66667\n137560|0.5\n137561|0.77778\n137562|0.33333\n137563|0.43056\n137564|0.55556\n137565|0.59722\n137566|0.36111\n137567|0.45833\n137568|0.59722\n137569|0.45833\n137570|0.5\n137571|0.48611\n137572|0.77778\n137573|0.5\n137574|0.45833\n137575|0.69444\n137576|0.55556\n137577|0.43056\n137578|0.68056\n137579|0.59722\n137580|0.375\n137581|0.69444\n137582|0.51389\n137583|0.5\n137584|0.45833\n137585|0.38889\n137586|0.23611\n137587|0.23611\n137588|0.59722\n137589|0.65278\n137590|0.55556\n137591|0.56944\n137592|0.5\n137593|0.5\n137594|0.81944\n137595|0.47222\n137596|0.34722\n137597|0.5\n137598|0.51389\n137599|0.375\n137600|0.41667\n137601|0.43056\n137602|0.52778\n137603|0.65278\n137604|0.61111\n137605|0.69444\n137606|0.58333\n137607|0.59722\n137608|0.55556\n137609|0.48611\n137610|0.56944\n137611|0.77778\n137612|0.38889\n137613|0.51389\n137614|0.55556\n137615|0.52778\n137616|0.48611\n137617|0.44444\n137618|0.33333\n137619|0.72222\n137620|0.5\n137621|0.66667\n137622|0.58333\n137623|0.55556\n137624|0.625\n137625|0.58333\n137626|0.52778\n137627|0.25\n137628|0.22222\n137629|0.15278\n137630|0.5\n137631|0.36111\n137632|0.77778\n137633|0.5\n137634|0.5\n137635|0.45833\n137636|0.41667\n137637|0.58333\n137638|0.38889\n137639|0.31944\n137640|0.31944\n137641|0.66667\n137642|0.56944\n137643|0.72222\n137644|0.5\n137645|0.81944\n137646|0.51389\n137647|0.51389\n137648|0.65278\n137649|0.33333\n137650|0.58333\n137651|0.5\n137652|0.48611\n137653|0.375\n137654|0.70833\n137655|0.5\n137656|0.65278\n137657|0.625\n137658|0.55556\n137659|0.63889\n137660|0.5\n137661|0.5\n137662|0.40278\n137663|0.61111\n137664|0.63889\n137665|0.44444\n137666|0.58333\n137667|0.5\n137668|0.5\n137669|0.58333\n137670|0.59722\n137671|0.56944\n137672|0.66667\n137673|0.19444\n137674|0.069444\n137675|0.59722\n137676|0.19444\n137677|0.41667\n137678|0.44444\n137679|0.48611\n137680|0.27778\n137681|0.48611\n137682|0.5\n137683|0.51389\n137684|0.75\n137685|0.27778\n137686|0.77778\n137687|0.40278\n137688|0.5\n137689|0.5\n137690|0.19444\n137691|0.31944\n137692|0.5\n137693|0.56944\n137694|0.29167\n137695|0.52778\n137696|0.59722\n137697|0.45833\n137698|0.55556\n137699|0.70833\n137700|0.51389\n137701|0.5\n137702|0.5\n137703|0.51389\n137704|0.73611\n137705|0.51389\n137706|0.63889\n137707|0.80556\n137708|0.63889\n137709|0.47222\n137710|0.45833\n137711|0.55556\n137712|0.5\n137713|0.47222\n137714|0.5\n137715|0.58333\n137716|0.34722\n137717|0.36111\n137718|0.52778\n137719|0.65278\n137720|0.66667\n137721|0.52778\n137722|0.5\n137723|0.31944\n137724|0.375\n137725|0.61111\n137726|0.52778\n137727|0.55556\n137728|0.69444\n137729|0.30556\n137730|0.5\n137731|0.5\n137732|0.48611\n137733|0.54167\n137734|0.5\n137735|0.72222\n137736|0.27778\n137737|0.25\n137738|0.48611\n137739|0.47222\n137740|0.59722\n137741|0.47222\n137742|0.58333\n137743|0.44444\n137744|0.52778\n137745|0.68056\n137746|0.43056\n137747|0.56944\n137748|0.51389\n137749|0.5\n137750|0.36111\n137751|0.61111\n137752|0.45833\n137753|0.52778\n137754|0.34722\n137755|0.5\n137756|0.38889\n137757|0.5\n137758|0.5\n137759|0.76389\n137760|0.31944\n137761|0.36111\n137762|0.5\n137763|0.5\n137764|0.5\n137765|0.66667\n137766|0.47222\n137767|0.44444\n137768|0.66667\n137769|0.625\n137770|0.5\n137771|0.58333\n137772|0.5\n137773|0.5\n137774|0.55556\n137775|0.38889\n137776|0.5\n137777|0.51389\n137778|0.52778\n137779|0.61111\n137780|0.56944\n137781|0.47222\n137782|0.51389\n137783|0.45833\n137784|0.55556\n137785|0.20833\n137786|0.41667\n137787|0.43056\n137788|0.69444\n137789|0.5\n137790|0.5\n137791|0.59722\n137792|0.45833\n137793|0.5\n137794|0.47222\n137795|0.43056\n137796|0.5\n137797|0.76389\n137798|0.625\n137799|0.5\n137800|0.52778\n137801|0.69444\n137802|0.13889\n137803|0.55556\n137804|0.61111\n137805|0.375\n137806|0.43056\n137807|0.5\n137808|0.72222\n137809|0.73611\n137810|0.52778\n137811|0.5\n137812|0.5\n137813|0.16667\n137814|0.375\n137815|0.5\n137816|0.55556\n137817|0.5\n137818|0.44444\n137819|0.625\n137820|0.61111\n137821|0.52778\n137822|0.38889\n137823|0.875\n137824|0.5\n137825|0.72222\n137826|0.55556\n137827|0.51389\n137828|0.45833\n137829|0.5\n137830|0.75\n137831|0.59722\n137832|0.5\n137833|0.55556\n137834|0.38889\n137835|0.94444\n137836|0.77778\n137837|0.63889\n137838|0.48611\n137839|0.61111\n137840|0.48611\n137841|0.5\n137842|0.58333\n137843|0.33333\n137844|0.56944\n137845|0.36111\n137846|0.55556\n137847|0.73611\n137848|0.55556\n137849|0.625\n137850|0.43056\n137851|0.5\n137852|0.5\n137853|0.625\n137854|0.31944\n137855|0.5\n137856|0.44444\n137857|0.51389\n137858|0.36111\n137859|0.125\n137860|0.15278\n137861|0.5\n137862|0.52778\n137863|0.5\n137864|0.72222\n137865|0.58333\n137866|0.36111\n137867|0.45833\n137868|0.33333\n137869|0.23611\n137870|0.69444\n137871|0.5\n137872|0.5\n137873|0.51389\n137874|0.5\n137875|0.56944\n137876|0.56944\n137877|0.48611\n137878|0.44444\n137879|0.5\n137880|0.40278\n137881|0.52778\n137882|0.81944\n137883|0.55556\n137884|0.125\n137885|0.54167\n137886|0.56944\n137887|0.51389\n137888|0.11111\n137889|0.41667\n137890|0.45833\n137891|0.44444\n137892|0.70833\n137893|0.58333\n137894|0.41667\n137895|0.59722\n137896|0.40278\n137897|0.55556\n137898|0.47222\n137899|0.55556\n137900|0.33333\n137901|0.59722\n137902|0.5\n137903|0.5\n137904|0.5\n137905|0.38889\n137906|0.65278\n137907|0.5\n137908|0.30556\n137909|0.43056\n137910|0.5\n137911|0.88889\n137912|0.625\n137913|0.18056\n137914|0.26389\n137915|0.73611\n137916|0.5\n137917|0.52778\n137918|0.36111\n137919|0.47222\n137920|0.59722\n137921|0.43056\n137922|0.45833\n137923|0.44444\n137924|0.63889\n137925|0.51389\n137926|0.5\n137927|0.47222\n137928|0.5\n137929|0.5\n137930|0.65278\n137931|0.5\n137932|0.5\n137933|0.56944\n137934|0.34722\n137935|0.625\n137936|0.66667\n137937|0.75\n137938|0.54167\n137939|0.59722\n137940|0.5\n137941|0.36111\n137942|0.86111\n137943|0.76389\n137944|0.43056\n137945|0.5\n137946|0.38889\n137947|0.11111\n137948|0.5\n137949|0.55556\n137950|0.5\n137951|0.55556\n137952|0.56944\n137953|0.375\n137954|0.59722\n137955|0.61111\n137956|0.5\n137957|0.69444\n137958|0.5\n137959|0.34722\n137960|0.43056\n137961|0.5\n137962|0.72222\n137963|0.33333\n137964|0.61111\n137965|0.48611\n137966|0.625\n137967|0.5\n137968|0.44444\n137969|0.44444\n137970|0.44444\n137971|0.5\n137972|0.5\n137973|0.31944\n137974|0.5\n137975|0.52778\n137976|0.59722\n137977|0.5\n137978|0.5\n137979|0.25\n137980|0.48611\n137981|0.52778\n137982|0.59722\n137983|0.5\n137984|0.45833\n137985|0.5\n137986|0.54167\n137987|0.58333\n137988|0.77778\n137989|0.65278\n137990|0.51389\n137991|0.45833\n137992|0.76389\n137993|0.40278\n137994|0.59722\n137995|0.59722\n137996|0.51389\n137997|0.55556\n137998|0.76389\n137999|0.54167\n138000|0.51389\n138001|0.625\n138002|0.5\n138003|0.73611\n138004|0.56944\n138005|0.41667\n138006|0.75\n138007|0.52778\n138008|0.54167\n138009|0.47222\n138010|0.23611\n138011|0.44444\n138012|0.55556\n138013|0.58333\n138014|0.44444\n138015|0.5\n138016|0.63889\n138017|0.43056\n138018|0.5\n138019|0.83333\n138020|0.5\n138021|0.33333\n138022|0.30556\n138023|0.48611\n138024|0.56944\n138025|0.52778\n138026|0.52778\n138027|0.52778\n138028|0.56944\n138029|0.51389\n138030|0.79167\n138031|0.61111\n138032|0.65278\n138033|0.5\n138034|0.45833\n138035|0.5\n138036|0.5\n138037|0.5\n138038|0.5\n138039|0.41667\n138040|0.69444\n138041|0.80556\n138042|0.38889\n138043|0.20833\n138044|0.375\n138045|0.47222\n138046|0.5\n138047|0.40278\n138048|0.43056\n138049|0.83333\n138050|0.54167\n138051|0.5\n138052|0.5\n138053|0.5\n138054|0.77778\n138055|0.15278\n138056|0.20833\n138057|0.25\n138058|0.55556\n138059|0.30556\n138060|0.47222\n138061|0.11111\n138062|0.26389\n138063|0.11111\n138064|0.36111\n138065|0.38889\n138066|0.79167\n138067|0.22222\n138068|0.44444\n138069|0.22222\n138070|0.5\n138071|0.51389\n138072|0.27778\n138073|0.54167\n138074|0.31944\n138075|0.52778\n138076|0.56944\n138077|0.43056\n138078|0.34722\n138079|0.5\n138080|0.48611\n138081|0.25\n138082|0.29167\n138083|0.27778\n138084|0.33333\n138085|0.375\n138086|0.54167\n138087|0.29167\n138088|0.40278\n138089|0.41667\n138090|0.51389\n138091|0.56944\n138092|0.86111\n138093|0.51389\n138094|0.30556\n138095|0.43056\n138096|0.41667\n138097|0.70833\n138098|0.36111\n138099|0.52778\n138100|0.41667\n138101|0.51389\n138102|0.36111\n138103|0.13889\n138104|0.26389\n138105|0.29167\n138106|0.055556\n138107|0.19444\n138108|0.15278\n138109|0.44444\n138110|0.18056\n138111|0.15278\n138112|0.19444\n138113|0.27778\n138114|0.125\n138115|0.38889\n138116|0.375\n138117|0.69444\n138118|0.23611\n138119|0.30556\n138120|0.40278\n138121|0.34722\n138122|0.26389\n138123|0.19444\n138124|0.55556\n138125|0.54167\n138126|0.27778\n138127|0.20833\n138128|0.19444\n138129|0.22222\n138130|0.41667\n138131|0.26389\n138132|0.16667\n138133|0.20833\n138134|0.45833\n138135|0.36111\n138136|0.41667\n138137|0.56944\n138138|0.51389\n138139|0.27778\n138140|0.20833\n138141|0.38889\n138142|0.45833\n138143|0.18056\n138144|0.22222\n138145|0.083333\n138146|0.26389\n138147|0.33333\n138148|0.30556\n138149|0.34722\n138150|0.45833\n138151|0.36111\n138152|0.22222\n138153|0.38889\n138154|0.47222\n138155|0.41667\n138156|0.625\n138157|0.54167\n138158|0.48611\n138159|0.30556\n138160|0.44444\n138161|0.34722\n138162|0.45833\n138163|0.22222\n138164|0.43056\n138165|0.29167\n138166|0.27778\n138167|0.5\n138168|0.43056\n138169|0.31944\n138170|0.54167\n138171|0.61111\n138172|0.43056\n138173|0.38889\n138174|0.38889\n138175|0.43056\n138176|0.44444\n138177|0.68056\n138178|0.5\n138179|0.52778\n138180|0.58333\n138181|0.55556\n138182|0.77778\n138183|0.51389\n138184|0.63889\n138185|0.52778\n138186|0.54167\n138187|0.52778\n138188|0.5\n138189|0.48611\n138190|0.33333\n138191|0.31944\n138192|0.88889\n138193|0.61111\n138194|0.38889\n138195|0.47222\n138196|0.51389\n138197|0.65278\n138198|0.45833\n138199|0.58333\n138200|0.38889\n138201|0.34722\n138202|0.33333\n138203|0.38889\n138204|0.22222\n138205|0.31944\n138206|0.33333\n138207|0.61111\n138208|0.5\n138209|0.54167\n138210|0.45833\n138211|0.44444\n138212|0.16667\n138213|0.27778\n138214|0.55556\n138215|0.63889\n138216|0.5\n138217|0.5\n138218|0.51389\n138219|0.83333\n138220|0.81944\n138221|0.5\n138222|0.55556\n138223|0.5\n138224|0.5\n138225|0.73611\n138226|0.59722\n138227|0.66667\n138228|0.375\n138229|0.55556\n138230|0.52778\n138231|0.47222\n138232|0.54167\n138233|0.5\n138234|0.51389\n138235|0.72222\n138236|0.625\n138237|0.79167\n138238|0.52778\n138239|0.54167\n138240|0.44444\n138241|0.51389\n138242|0.625\n138243|0.54167\n138244|0.83333\n138245|0.31944\n138246|0.61111\n138247|0.45833\n138248|0.31944\n138249|0.5\n138250|0.25\n138251|0.45833\n138252|0.52778\n138253|0.54167\n138254|0.36111\n138255|0.61111\n138256|0.5\n138257|0.56944\n138258|0.55556\n138259|0.77778\n138260|0.68056\n138261|0.38889\n138262|0.73611\n138263|0.72222\n138264|0.66667\n138265|0.72222\n138266|0.54167\n138267|0.72222\n138268|0.5\n138269|0.625\n138270|0.72222\n138271|0.75\n138272|0.5\n138273|0.58333\n138274|0.51389\n138275|0.51389\n138276|0.36111\n138277|0.54167\n138278|0.30556\n138279|0.40278\n138280|0.18056\n138281|0.27778\n138282|0.61111\n138283|0.5\n138284|0.41667\n138285|0.5\n138286|0.72222\n138287|0.40278\n138288|0.26389\n138289|0.5\n138290|0.44444\n138291|0.51389\n138292|0.54167\n138293|0.66667\n138294|0.59722\n138295|0.375\n138296|0.375\n138297|0.375\n138298|0.33333\n138299|0.58333\n138300|0.68056\n138301|0.61111\n138302|0.65278\n138303|0.625\n138304|0.5\n138305|0.63889\n138306|0.51389\n138307|0.61111\n138308|0.5\n138309|0.55556\n138310|0.5\n138311|0.38889\n138312|0.69444\n138313|0.52778\n138314|0.30556\n138315|0.5\n138316|0.38889\n138317|0.65278\n138318|0.59722\n138319|0.47222\n138320|0.52778\n138321|0.80556\n138322|0.5\n138323|0.33333\n138324|0.48611\n138325|0.625\n138326|0.55556\n138327|0.5\n138328|0.5\n138329|0.61111\n138330|0.63889\n138331|0.30556\n138332|0.30556\n138333|0.30556\n138334|0.56944\n138335|0.45833\n138336|0.23611\n138337|0.26389\n138338|0.52778\n138339|0.56944\n138340|0.59722\n138341|0.27778\n138342|0.56944\n138343|0.56944\n138344|0.59722\n138345|0.69444\n138346|0.5\n138347|0.5\n138348|0.26389\n138349|0.625\n138350|0.70833\n138351|0.76389\n138352|0.41667\n138353|0.30556\n138354|0.5\n138355|0.5\n138356|0.5\n138357|0.52778\n138358|0.38889\n138359|0.44444\n138360|0.069444\n138361|0.47222\n138362|0.52778\n138363|0.5\n138364|0.79167\n138365|0.65278\n138366|0.75\n138367|0.80556\n138368|0.76389\n138369|0.66667\n138370|0.59722\n138371|0.66667\n138372|0.69444\n138373|0.59722\n138374|0.5\n138375|0.72222\n138376|0.45833\n138377|0.58333\n138378|0.72222\n138379|0.58333\n138380|0.76389\n138381|0.66667\n138382|0.66667\n138383|0.73611\n138384|0.79167\n138385|0.65278\n138386|0.59722\n138387|0.84722\n138388|0.875\n138389|0.93056\n138390|0.875\n138391|0.45833\n138392|0.875\n138393|0.94444\n138394|0.69444\n138395|0.38889\n138396|0.45833\n138397|0.66667\n138398|0.76389\n138399|0.51389\n138400|0.5\n138401|0.48611\n138402|0.47222\n138403|0.5\n138404|0.43056\n138405|0.38889\n138406|0.65278\n138407|0.56944\n138408|0.38889\n138409|0.59722\n138410|0.5\n138411|0.5\n138412|0.44444\n138413|0.80556\n138414|0.69444\n138415|0.61111\n138416|0.51389\n138417|0.38889\n138418|0.54167\n138419|0.72222\n138420|0.61111\n138421|0.80556\n138422|0.55556\n138423|0.70833\n138424|0.625\n138425|0.83333\n138426|0.55556\n138427|0.56944\n138428|0.125\n138429|0.54167\n138430|0.56944\n138431|0.41667\n138432|0.25\n138433|0.069444\n138434|0.52778\n138435|0.48611\n138436|0.30556\n138437|0.26389\n138438|0.31944\n138439|0.51389\n138440|0.65278\n138441|0.5\n138442|0.65278\n138443|0.68056\n138444|0.48611\n138445|0.81944\n138446|0.45833\n138447|0.52778\n138448|0.5\n138449|0.5\n138450|0.20833\n138451|0.5\n138452|0.73611\n138453|0.5\n138454|0.59722\n138455|0.58333\n138456|0.73611\n138457|0.47222\n138458|0.27778\n138459|0.5\n138460|0.63889\n138461|0.5\n138462|0.38889\n138463|0.56944\n138464|0.59722\n138465|0.59722\n138466|0.47222\n138467|0.45833\n138468|0.65278\n138469|0.54167\n138470|0.43056\n138471|0.23611\n138472|0.45833\n138473|0.5\n138474|0.40278\n138475|0.30556\n138476|0.23611\n138477|0.34722\n138478|0.27778\n138479|0.22222\n138480|0.5\n138481|0.45833\n138482|0.5\n138483|0.5\n138484|0.52778\n138485|0.55556\n138486|0.47222\n138487|0.59722\n138488|0.56944\n138489|0.36111\n138490|0.33333\n138491|0.44444\n138492|0.44444\n138493|0.18056\n138494|0.069444\n138495|0.30556\n138496|0.375\n138497|0.48611\n138498|0.33333\n138499|0.5\n138500|0.59722\n138501|0.5\n138502|0.45833\n138503|0.36111\n138504|0.25\n138505|0.20833\n138506|0.22222\n138507|0.43056\n138508|0.20833\n138509|0.52778\n138510|0.40278\n138511|0.16667\n138512|0.43056\n138513|0.79167\n138514|0.76389\n138515|0.73611\n138516|0.26389\n138517|0.70833\n138518|0.33333\n138519|0.43056\n138520|0.41667\n138521|0.44444\n138522|0.51389\n138523|0.47222\n138524|0.61111\n138525|0.44444\n138526|0.51389\n138527|0.51389\n138528|0.70833\n138529|0.15278\n138530|0.45833\n138531|0.22222\n138532|0.25\n138533|0.38889\n138534|0.45833\n138535|0.61111\n138536|0.31944\n138537|0.5\n138538|0.56944\n138539|0.26389\n138540|0.19444\n138541|0.5\n138542|0.43056\n138543|0.52778\n138544|0.56944\n138545|0.40278\n138546|0.40278\n138547|0.11111\n138548|0.375\n138549|0.80556\n138550|0.16667\n138551|0.5\n138552|0.58333\n138553|0.59722\n138554|0.75\n138555|0.63889\n138556|0.70833\n138557|0.70833\n138558|0.5\n138559|0.77778\n138560|0.625\n138561|0.47222\n138562|0.86111\n138563|0.125\n138564|0.55556\n138565|0.29167\n138566|0.34722\n138567|0.44444\n138568|0.56944\n138569|0.63889\n138570|0.63889\n138571|0.27778\n138572|0.27778\n138573|0.75\n138574|0.54167\n138575|0.66667\n138576|0.625\n138577|0.43056\n138578|0.76389\n138579|0.43056\n138580|0.11111\n138581|0.55556\n138582|0.5\n138583|0.52778\n138584|0.56944\n138585|0.52778\n138586|0.65278\n138587|0.76389\n138588|0.75\n138589|0.44444\n138590|0.5\n138591|0.27778\n138592|0.43056\n138593|0.5\n138594|0.72222\n138595|0.54167\n138596|0.5\n138597|0.61111\n138598|0.58333\n138599|0.36111\n138600|0.30556\n138601|0.375\n138602|0.33333\n138603|0.20833\n138604|0.76389\n138605|0.30556\n138606|0.27778\n138607|0.47222\n138608|0.45833\n138609|0.45833\n138610|0.54167\n138611|0.55556\n138612|0.45833\n138613|0.51389\n138614|0.56944\n138615|0.38889\n138616|0.33333\n138617|0.52778\n138618|0.27778\n138619|0.41667\n138620|0.5\n138621|0.36111\n138622|0.18056\n138623|0.33333\n138624|0.36111\n138625|0.56944\n138626|0.5\n138627|0.43056\n138628|0.45833\n138629|0.47222\n138630|0.61111\n138631|0.375\n138632|0.69444\n138633|0.44444\n138634|0.80556\n138635|0.68056\n138636|0.43056\n138637|0.44444\n138638|0.5\n138639|0.22222\n138640|0.5\n138641|0.43056\n138642|0.43056\n138643|0.27778\n138644|0.375\n138645|0.36111\n138646|0.51389\n138647|0.16667\n138648|0.20833\n138649|0.23611\n138650|0.68056\n138651|0.29167\n138652|0.30556\n138653|0.34722\n138654|0.44444\n138655|0.38889\n138656|0.55556\n138657|0.65278\n138658|0.54167\n138659|0.58333\n138660|0.72222\n138661|0.76389\n138662|0.45833\n138663|0.44444\n138664|0.44444\n138665|0.55556\n138666|0.52778\n138667|0.27778\n138668|0.083333\n138669|0.5\n138670|0.45833\n138671|0.56944\n138672|0.48611\n138673|0.52778\n138674|0.88889\n138675|0.86111\n138676|0.54167\n138677|0.77778\n138678|0.76389\n138679|0.22222\n138680|0.19444\n138681|0.25\n138682|0.36111\n138683|0.18056\n138684|0.29167\n138685|0.125\n138686|0.16667\n138687|0.5\n138688|0.48611\n138689|0.56944\n138690|0.31944\n138691|0.5\n138692|0.5\n138693|0.25\n138694|0.52778\n138695|0.61111\n138696|0.55556\n138697|0.33333\n138698|0.23611\n138699|0.36111\n138700|0.38889\n138701|0.19444\n138702|0.70833\n138703|0.38889\n138704|0.18056\n138705|0.26389\n138706|0.26389\n138707|0.48611\n138708|0.51389\n138709|0.27778\n138710|0.43056\n138711|0.45833\n138712|0.33333\n138713|0.63889\n138714|0.5\n138715|0.25\n138716|0.16667\n138717|0.79167\n138718|0.625\n138719|0.5\n138720|0.625\n138721|0.63889\n138722|0.58333\n138723|0.61111\n138724|0.5\n138725|0.66667\n138726|0.43056\n138727|0.5\n138728|0.22222\n138729|0.5\n138730|0.77778\n138731|0.40278\n138732|0.23611\n138733|0.30556\n138734|0.5\n138735|0.40278\n138736|0.29167\n138737|0.59722\n138738|0.5\n138739|0.72222\n138740|0.11111\n138741|0.55556\n138742|0.79167\n138743|0.5\n138744|0.65278\n138745|0.61111\n138746|0.55556\n138747|0.65278\n138748|0.33333\n138749|0.40278\n138750|0.88889\n138751|0.80556\n138752|0.58333\n138753|0.91667\n138754|0.41667\n138755|0.38889\n138756|0.58333\n138757|0.375\n138758|0.36111\n138759|0.27778\n138760|0.44444\n138761|0.41667\n138762|0.16667\n138763|0.34722\n138764|0.47222\n138765|0.26389\n138766|0.16667\n138767|0.45833\n138768|0.34722\n138769|0.47222\n138770|0.44444\n138771|0.44444\n138772|0.5\n138773|0.38889\n138774|0.11111\n138775|0.027778\n138776|0.11111\n138777|0.48611\n138778|0.38889\n138779|0.36111\n138780|0.47222\n138781|0.30556\n138782|0.20833\n138783|0.27778\n138784|0.59722\n138785|0.5\n138786|0.375\n138787|0.52778\n138788|0.5\n138789|0.54167\n138790|0.75\n138791|0.77778\n138792|0.61111\n138793|0.81944\n138794|0.63889\n138795|0.5\n138796|0.27778\n138797|0.5\n138798|0.5\n138799|0.54167\n138800|0.59722\n138801|0.38889\n138802|0.55556\n138803|0.47222\n138804|0.68056\n138805|0.5\n138806|0.52778\n138807|0.34722\n138808|0.25\n138809|0.30556\n138810|0.52778\n138811|0.61111\n138812|0.79167\n138813|0.5\n138814|0.58333\n138815|0.625\n138816|0.54167\n138817|0.5\n138818|0.29167\n138819|0.29167\n138820|0.68056\n138821|0.47222\n138822|0.48611\n138823|0.56944\n138824|0.5\n138825|0.5\n138826|0.44444\n138827|0.47222\n138828|0.77778\n138829|0.83333\n138830|0.65278\n138831|0.5\n138832|0.41667\n138833|0.54167\n138834|0.5\n138835|0.43056\n138836|0.29167\n138837|0.59722\n138838|0.23611\n138839|0.44444\n138840|0.44444\n138841|0.625\n138842|0.5\n138843|0.5\n138844|0.54167\n138845|0.5\n138846|0.5\n138847|0.55556\n138848|0.63889\n138849|0.51389\n138850|0.45833\n138851|0.61111\n138852|0.625\n138853|0.58333\n138854|0.5\n138855|0.5\n138856|0.66667\n138857|0.5\n138858|0.77778\n138859|0.20833\n138860|0.33333\n138861|0.41667\n138862|0.31944\n138863|0.52778\n138864|0.47222\n138865|0.47222\n138866|0.5\n138867|0.48611\n138868|0.59722\n138869|0.5\n138870|0.40278\n138871|0.61111\n138872|0.58333\n138873|0.75\n138874|0.79167\n138875|0.5\n138876|0.55556\n138877|0.625\n138878|0.375\n138879|0.44444\n138880|0.54167\n138881|0.5\n138882|0.43056\n138883|0.55556\n138884|0.47222\n138885|0.19444\n138886|0.33333\n138887|0.5\n138888|0.44444\n138889|0.625\n138890|0.47222\n138891|0.58333\n138892|0.54167\n138893|0.5\n138894|0\n138895|0.47222\n138896|0.58333\n138897|0.18056\n138898|0.38889\n138899|0.59722\n138900|0.65278\n138901|0.45833\n138902|0.43056\n138903|0.43056\n138904|0.5\n138905|0.375\n138906|0.38889\n138907|0.41667\n138908|0.47222\n138909|0.5\n138910|0.52778\n138911|0.47222\n138912|0.44444\n138913|0.66667\n138914|0.5\n138915|0.45833\n138916|0.58333\n138917|0.27778\n138918|0.65278\n138919|0.59722\n138920|0.65278\n138921|0.65278\n138922|0.5\n138923|0.5\n138924|0.25\n138925|0.375\n138926|0.16667\n138927|0.40278\n138928|0.38889\n138929|0.54167\n138930|0.38889\n138931|0.73611\n138932|0.66667\n138933|0.5\n138934|0.69444\n138935|0.81944\n138936|0.72222\n138937|0.43056\n138938|0.5\n138939|0.625\n138940|0.51389\n138941|0.45833\n138942|0.5\n138943|0.5\n138944|0.5\n138945|0.26389\n138946|0.55556\n138947|0.38889\n138948|0.5\n138949|0.58333\n138950|0.73611\n138951|0.45833\n138952|0.38889\n138953|0.5\n138954|0.91667\n138955|0.625\n138956|0.72222\n138957|0.65278\n138958|0.43056\n138959|0.29167\n138960|0.34722\n138961|0.5\n138962|0.30556\n138963|0.27778\n138964|0.81944\n138965|0.75\n138966|0.83333\n138967|0.84722\n138968|0.875\n138969|0.73611\n138970|0.80556\n138971|0.75\n138972|0.69444\n138973|0.52778\n138974|0.48611\n138975|0.41667\n138976|0.75\n138977|0.45833\n138978|0.40278\n138979|0.40278\n138980|0.19444\n138981|0.76389\n138982|0.59722\n138983|0.83333\n138984|0.81944\n138985|0.73611\n138986|0.44444\n138987|0.63889\n138988|0.5\n138989|0.34722\n138990|0.55556\n138991|0.79167\n138992|0.83333\n138993|0.41667\n138994|0.52778\n138995|0.41667\n138996|0.375\n138997|0.38889\n138998|0.48611\n138999|0.61111\n139000|0.54167\n139001|0.63889\n139002|0.58333\n139003|0.58333\n139004|0.73611\n139005|0.88889\n139006|0.625\n139007|0.81944\n139008|0.63889\n139009|0.77778\n139010|0.65278\n139011|0.80556\n139012|0.83333\n139013|0.77778\n139014|0.86111\n139015|0.72222\n139016|0.5\n139017|0.5\n139018|0.66667\n139019|0.63889\n139020|0.70833\n139021|0.80556\n139022|0.5\n139023|0.58333\n139024|0.94444\n139025|0.81944\n139026|0.81944\n139027|0.45833\n139028|0.375\n139029|0.13889\n139030|0.5\n139031|0.5\n139032|0.5\n139033|0.38889\n139034|0.18056\n139035|0.22222\n139036|0.41667\n139037|0.11111\n139038|0.48611\n139039|0.5\n139040|0.47222\n139041|0.5\n139042|0.5\n139043|0.47222\n139044|0.5\n139045|0.52778\n139046|0.5\n139047|0.5\n139048|0.44444\n139049|0.5\n139050|0.44444\n139051|0.5\n139052|0.77778\n139053|0.76389\n139054|0.44444\n139055|0.5\n139056|0.5\n139057|0.52778\n139058|0.5\n139059|0.51389\n139060|0.27778\n139061|0.625\n139062|0.61111\n139063|0.44444\n139064|0.43056\n139065|0.5\n139066|0.5\n139067|0.5\n139068|0.5\n139069|0.79167\n139070|0.66667\n139071|0.65278\n139072|0.48611\n139073|0.80556\n139074|0.90278\n139075|0.88889\n139076|0.5\n139077|0.41667\n139078|0.5\n139079|0.69444\n139080|0.59722\n139081|0.52778\n139082|0.66667\n139083|0.41667\n139084|0.5\n139085|0.70833\n139086|0.31944\n139087|0.55556\n139088|0.5\n139089|0.36111\n139090|0.36111\n139091|0.875\n139092|0.70833\n139093|0.72222\n139094|0.77778\n139095|0.44444\n139096|0.61111\n139097|0.65278\n139098|0.80556\n139099|0.81944\n139100|0.65278\n139101|0.76389\n139102|0.90278\n139103|0.81944\n139104|0.5\n139105|0.58333\n139106|0.34722\n139107|0.68056\n139108|0.44444\n139109|0.5\n139110|0.625\n139111|0.54167\n139112|0.30556\n139113|0.30556\n139114|0.18056\n139115|0.5\n139116|0.5\n139117|0.70833\n139118|0.70833\n139119|0.5\n139120|0.77778\n139121|0.52778\n139122|0.5\n139123|0.27778\n139124|0.26389\n139125|0.5\n139126|0.77778\n139127|0.58333\n139128|0.58333\n139129|0.55556\n139130|0.5\n139131|0.51389\n139132|0.65278\n139133|0.68056\n139134|0.54167\n139135|0.61111\n139136|0.44444\n139137|0.47222\n139138|0.43056\n139139|0.44444\n139140|0.52778\n139141|0.5\n139142|0.25\n139143|0.47222\n139144|0.48611\n139145|0.069444\n139146|0.41667\n139147|0.5\n139148|0.51389\n139149|0.66667\n139150|0.54167\n139151|0.22222\n139152|0.5\n139153|0.55556\n139154|0.55556\n139155|0.69444\n139156|0.23611\n139157|0.48611\n139158|0.48611\n139159|0.58333\n139160|0.52778\n139161|0.52778\n139162|0.73611\n139163|0.38889\n139164|0.29167\n139165|0.26389\n139166|0.27778\n139167|0.36111\n139168|0.30556\n139169|0.38889\n139170|0.44444\n139171|0.055556\n139172|0.5\n139173|0.26389\n139174|0.5\n139175|0.63889\n139176|0.40278\n139177|0.72222\n139178|0.5\n139179|0.41667\n139180|0.51389\n139181|0.56944\n139182|0.66667\n139183|0.5\n139184|0.5\n139185|0.38889\n139186|0.55556\n139187|0.40278\n139188|0.55556\n139189|0.55556\n139190|0.54167\n139191|0.45833\n139192|0.58333\n139193|0.58333\n139194|0.40278\n139195|0.54167\n139196|0.36111\n139197|0.58333\n139198|0.5\n139199|0.43056\n139200|0.48611\n139201|0.58333\n139202|0.5\n139203|0.52778\n139204|0.52778\n139205|0.5\n139206|0.43056\n139207|0.44444\n139208|0.5\n139209|0.45833\n139210|0.44444\n139211|0.375\n139212|0.72222\n139213|0.72222\n139214|0.5\n139215|0.36111\n139216|0.72222\n139217|0.75\n139218|0.58333\n139219|0.43056\n139220|0.66667\n139221|0.66667\n139222|0.69444\n139223|0.375\n139224|0.31944\n139225|0.45833\n139226|0.5\n139227|0.33333\n139228|0.56944\n139229|0.625\n139230|0.56944\n139231|0.66667\n139232|0.52778\n139233|0.5\n139234|0.44444\n139235|0.16667\n139236|0.86111\n139237|0.86111\n139238|0.5\n139239|0.73611\n139240|0.66667\n139241|0.25\n139242|0.29167\n139243|0.41667\n139244|0.38889\n139245|0.36111\n139246|0.81944\n139247|0.80556\n139248|0.65278\n139249|0.44444\n139250|0.38889\n139251|0.88889\n139252|0.75\n139253|0.61111\n139254|0.61111\n139255|0.41667\n139256|0.54167\n139257|0.36111\n139258|0.48611\n139259|0.5\n139260|0.59722\n139261|0.68056\n139262|0.23611\n139263|0.18056\n139264|0.5\n139265|0.44444\n139266|0.79167\n139267|0.54167\n139268|0.70833\n139269|0.11111\n139270|0.15278\n139271|0.36111\n139272|0.70833\n139273|0.58333\n139274|0.43056\n139275|0.59722\n139276|0.44444\n139277|0.45833\n139278|0.30556\n139279|0.29167\n139280|0.27778\n139281|0.44444\n139282|0.26389\n139283|0.69444\n139284|0.70833\n139285|0.70833\n139286|0.83333\n139287|0.83333\n139288|0.45833\n139289|0.48611\n139290|0.56944\n139291|0.70833\n139292|0.48611\n139293|0.51389\n139294|0.56944\n139295|0.5\n139296|0.19444\n139297|0.25\n139298|0.43056\n139299|0.29167\n139300|0.68056\n139301|0.38889\n139302|0.5\n139303|0.48611\n139304|0.65278\n139305|0.61111\n139306|0.61111\n139307|0.54167\n139308|0.47222\n139309|0.51389\n139310|0.5\n139311|0.69444\n139312|0.40278\n139313|0.65278\n139314|0.625\n139315|0.5\n139316|0.5\n139317|0.51389\n139318|0.375\n139319|0.26389\n139320|0.44444\n139321|0.45833\n139322|0.44444\n139323|0.58333\n139324|0.76389\n139325|0.86111\n139326|0.52778\n139327|0.44444\n139328|0.27778\n139329|0.30556\n139330|0.51389\n139331|0.5\n139332|0.5\n139333|0.5\n139334|0.5\n139335|0.44444\n139336|0.34722\n139337|0.5\n139338|0.30556\n139339|0.34722\n139340|0.31944\n139341|0.5\n139342|0.58333\n139343|0.47222\n139344|0.5\n139345|0.41667\n139346|0.625\n139347|0.54167\n139348|0.26389\n139349|0.40278\n139350|0.80556\n139351|0.61111\n139352|0.66667\n139353|0.26389\n139354|0.25\n139355|0.58333\n139356|0.63889\n139357|0.72222\n139358|0.36111\n139359|0.61111\n139360|0.36111\n139361|0.56944\n139362|0.40278\n139363|0.45833\n139364|0.19444\n139365|0.45833\n139366|0.27778\n139367|0.44444\n139368|0.55556\n139369|0.55556\n139370|0.22222\n139371|0.43056\n139372|0.5\n139373|0.40278\n139374|0.59722\n139375|0.63889\n139376|0.45833\n139377|0.65278\n139378|0.43056\n139379|0.5\n139380|0.80556\n139381|0.5\n139382|0.5\n139383|0.5\n139384|0.13889\n139385|0.33333\n139386|0.58333\n139387|0.36111\n139388|0.31944\n139389|0.72222\n139390|0.38889\n139391|0.68056\n139392|0.59722\n139393|0.73611\n139394|0.43056\n139395|0.5\n139396|0.27778\n139397|0.68056\n139398|0.41667\n139399|0.5\n139400|0.61111\n139401|0.54167\n139402|0.5\n139403|0.5\n139404|0.43056\n139405|0.5\n139406|0.54167\n139407|0.58333\n139408|0.72222\n139409|0.5\n139410|0.41667\n139411|0.56944\n139412|0.54167\n139413|0.65278\n139414|0.52778\n139415|0.34722\n139416|0.11111\n139417|0.23611\n139418|0.63889\n139419|0.41667\n139420|0.40278\n139421|0.48611\n139422|0.41667\n139423|0.36111\n139424|0.45833\n139425|0.61111\n139426|0.15278\n139427|0.38889\n139428|0.40278\n139429|0.52778\n139430|0.36111\n139431|0.58333\n139432|0.70833\n139433|0.65278\n139434|0.33333\n139435|0.52778\n139436|0.38889\n139437|0.41667\n139438|0.43056\n139439|0.34722\n139440|0.23611\n139441|0.52778\n139442|0.38889\n139443|0.5\n139444|0.44444\n139445|0.52778\n139446|0.47222\n139447|0.44444\n139448|0.45833\n139449|0.54167\n139450|0.69444\n139451|0.625\n139452|0.52778\n139453|0.44444\n139454|0.44444\n139455|0.36111\n139456|0.27778\n139457|0.80556\n139458|0.90278\n139459|0.81944\n139460|0.66667\n139461|0.59722\n139462|0.56944\n139463|0.68056\n139464|0.69444\n139465|0.58333\n139466|0.68056\n139467|0.45833\n139468|0.31944\n139469|0.75\n139470|0.94444\n139471|0.70833\n139472|0.72222\n139473|0.83333\n139474|0.83333\n139475|0.76389\n139476|0.72222\n139477|0.88889\n139478|0.86111\n139479|0.75\n139480|0.72222\n139481|0.75\n139482|0.54167\n139483|0.68056\n139484|0.59722\n139485|0.54167\n139486|0.52778\n139487|0.68056\n139488|0.5\n139489|0.5\n139490|0.38889\n139491|0.5\n139492|0.5\n139493|0.5\n139494|0.5\n139495|0.083333\n139496|0.65278\n139497|0.5\n139498|0.5\n139499|0.55556\n139500|0.54167\n139501|0.55556\n139502|0.5\n139503|0.51389\n139504|0.52778\n139505|0.55556\n139506|0.30556\n139507|0.13889\n139508|0.31944\n139509|0.68056\n139510|0.47222\n139511|0.55556\n139512|0.5\n139513|0.51389\n139514|0.5\n139515|0.55556\n139516|0.15278\n139517|0.47222\n139518|0.38889\n139519|0.40278\n139520|0.27778\n139521|0.5\n139522|0.54167\n139523|0.69444\n139524|0.5\n139525|0.56944\n139526|0.47222\n139527|0.55556\n139528|0.72222\n139529|0.48611\n139530|0.47222\n139531|0.31944\n139532|0.68056\n139533|0.5\n139534|0.15278\n139535|0.61111\n139536|0.30556\n139537|0.33333\n139538|0.31944\n139539|0.31944\n139540|0.48611\n139541|0.68056\n139542|0.27778\n139543|0.55556\n139544|0.375\n139545|0.44444\n139546|0.5\n139547|0.66667\n139548|0.5\n139549|0.80556\n139550|0.5\n139551|0.63889\n139552|0.47222\n139553|0.40278\n139554|0.5\n139555|0.43056\n139556|0.33333\n139557|0.45833\n139558|0.40278\n139559|0.75\n139560|0.47222\n139561|0.75\n139562|0.66667\n139563|0.875\n139564|0.72222\n139565|0.55556\n139566|0.31944\n139567|0.5\n139568|0.33333\n139569|0.80556\n139570|0.40278\n139571|0.41667\n139572|0.56944\n139573|0.55556\n139574|0.5\n139575|0.61111\n139576|0.625\n139577|0.58333\n139578|0.56944\n139579|0.38889\n139580|0.44444\n139581|0.44444\n139582|0.38889\n139583|0.55556\n139584|0.44444\n139585|0.18056\n139586|0.58333\n139587|0.55556\n139588|0.51389\n139589|0.44444\n139590|0.69444\n139591|0.44444\n139592|0.36111\n139593|0.43056\n139594|0.5\n139595|0.26389\n139596|0.5\n139597|0.47222\n139598|0.5\n139599|0.43056\n139600|0.33333\n139601|0.31944\n139602|0.59722\n139603|0.31944\n139604|0.51389\n139605|0.41667\n139606|0.51389\n139607|0.31944\n139608|0.5\n139609|0.33333\n139610|0.5\n139611|0.61111\n139612|0.34722\n139613|0.47222\n139614|0.58333\n139615|0.5\n139616|0.5\n139617|0.52778\n139618|0.5\n139619|0.44444\n139620|0.61111\n139621|0.5\n139622|0.52778\n139623|0.65278\n139624|0.61111\n139625|0.5\n139626|0.55556\n139627|0.29167\n139628|0.56944\n139629|0.40278\n139630|0.45833\n139631|0.51389\n139632|0.38889\n139633|0.55556\n139634|0.55556\n139635|0.33333\n139636|0.5\n139637|0.38889\n139638|0.45833\n139639|0.70833\n139640|0.48611\n139641|0.63889\n139642|0.43056\n139643|0.44444\n139644|0.61111\n139645|0.5\n139646|0.77778\n139647|0.25\n139648|0.44444\n139649|0.44444\n139650|0.5\n139651|0.44444\n139652|0.52778\n139653|0.76389\n139654|0.59722\n139655|0.22222\n139656|0.52778\n139657|0.20833\n139658|0.75\n139659|0.63889\n139660|0.375\n139661|0.38889\n139662|0.29167\n139663|0.56944\n139664|0.61111\n139665|0.5\n139666|0.58333\n139667|0.30556\n139668|0.5\n139669|0.70833\n139670|0.58333\n139671|0.69444\n139672|0.41667\n139673|0.65278\n139674|0.30556\n139675|0.41667\n139676|0.52778\n139677|0.73611\n139678|0.59722\n139679|0.61111\n139680|0.75\n139681|0.27778\n139682|0.72222\n139683|0.61111\n139684|0.76389\n139685|0.47222\n139686|0.36111\n139687|0.5\n139688|0.38889\n139689|0.66667\n139690|0.52778\n139691|0.41667\n139692|0.5\n139693|0.55556\n139694|0.66667\n139695|0.51389\n139696|0.48611\n139697|0.55556\n139698|0.63889\n139699|0.41667\n139700|0.77778\n139701|0.55556\n139702|0.5\n139703|0.5\n139704|0.5\n139705|0.51389\n139706|0.5\n139707|0.45833\n139708|0.5\n139709|0.44444\n139710|0.38889\n139711|0.40278\n139712|0.5\n139713|0.43056\n139714|0.5\n139715|0.63889\n139716|0.66667\n139717|0.5\n139718|0.66667\n139719|0.72222\n139720|0.43056\n139721|0.52778\n139722|0.5\n139723|0.44444\n139724|0.5\n139725|0.44444\n139726|0.45833\n139727|0.30556\n139728|0.52778\n139729|0.59722\n139730|0.22222\n139731|0.40278\n139732|0.22222\n139733|0.097222\n139734|0.5\n139735|0.23611\n139736|0.27778\n139737|0.56944\n139738|0.5\n139739|0.33333\n139740|0.61111\n139741|0.45833\n139742|0.43056\n139743|0.56944\n139744|0.31944\n139745|0.43056\n139746|0.5\n139747|0.5\n139748|0.52778\n139749|0.54167\n139750|0.5\n139751|0.54167\n139752|0.5\n139753|0.45833\n139754|0.48611\n139755|0.63889\n139756|0.5\n139757|0.097222\n139758|0.56944\n139759|0.55556\n139760|0.52778\n139761|0.63889\n139762|0.5\n139763|0.70833\n139764|0.66667\n139765|0.375\n139766|0.47222\n139767|0.61111\n139768|0.38889\n139769|0.65278\n139770|0.27778\n139771|0.47222\n139772|0.20833\n139773|0.84722\n139774|0.72222\n139775|0.58333\n139776|0.27778\n139777|0.47222\n139778|0.52778\n139779|0.5\n139780|0.44444\n139781|0.5\n139782|0.59722\n139783|0.58333\n139784|0.5\n139785|0.38889\n139786|0.55556\n139787|0.52778\n139788|0.5\n139789|0.5\n139790|0.55556\n139791|0.38889\n139792|0.27778\n139793|0.51389\n139794|0.31944\n139795|0.48611\n139796|0.5\n139797|0.65278\n139798|0.63889\n139799|0.5\n139800|0.56944\n139801|0.30556\n139802|0.5\n139803|0.45833\n139804|0.54167\n139805|0.375\n139806|0.75\n139807|0.40278\n139808|0.54167\n139809|0.69444\n139810|0.81944\n139811|0.5\n139812|0.625\n139813|0.45833\n139814|0.83333\n139815|0.5\n139816|0.55556\n139817|0.51389\n139818|0.63889\n139819|0.5\n139820|0.45833\n139821|0.51389\n139822|0.47222\n139823|0.40278\n139824|0.41667\n139825|0.5\n139826|0.5\n139827|0.5\n139828|0.59722\n139829|0.58333\n139830|0.52778\n139831|0.52778\n139832|0.58333\n139833|0.56944\n139834|0.36111\n139835|0.70833\n139836|0.70833\n139837|0.72222\n139838|0.097222\n139839|0.55556\n139840|0.68056\n139841|0.59722\n139842|0.61111\n139843|0.54167\n139844|0.25\n139845|0.48611\n139846|0.33333\n139847|0.34722\n139848|0.44444\n139849|0.52778\n139850|0.51389\n139851|0.625\n139852|0.61111\n139853|0.5\n139854|0.625\n139855|0.5\n139856|0.58333\n139857|0.81944\n139858|0.55556\n139859|0.59722\n139860|0.41667\n139861|0.5\n139862|0.93056\n139863|0.68056\n139864|0.5\n139865|0.61111\n139866|0.66667\n139867|0.66667\n139868|0.61111\n139869|0.58333\n139870|0.77778\n139871|0.625\n139872|0.875\n139873|0.61111\n139874|0.48611\n139875|0.43056\n139876|0.29167\n139877|0.083333\n139878|0.51389\n139879|0.56944\n139880|0.61111\n139881|0.22222\n139882|0.36111\n139883|0.76389\n139884|0.75\n139885|0.44444\n139886|0.625\n139887|0.41667\n139888|0.5\n139889|0.38889\n139890|0.30556\n139891|0.45833\n139892|0.56944\n139893|0.44444\n139894|0.52778\n139895|0.75\n139896|0.70833\n139897|0.069444\n139898|0.34722\n139899|0.5\n139900|0.75\n139901|0.79167\n139902|0.51389\n139903|0.56944\n139904|0.27778\n139905|0.44444\n139906|0.65278\n139907|0.72222\n139908|0.83333\n139909|0.19444\n139910|0.59722\n139911|0.22222\n139912|0.69444\n139913|0.75\n139914|0.75\n139915|0.75\n139916|0.70833\n139917|0.80556\n139918|0.65278\n139919|0.11111\n139920|0.25\n139921|0.45833\n139922|0.63889\n139923|0.625\n139924|0.79167\n139925|0.43056\n139926|0.75\n139927|0.625\n139928|0.625\n139929|0.66667\n139930|0.61111\n139931|0.5\n139932|0.20833\n139933|0.097222\n139934|0.36111\n139935|0.38889\n139936|0.59722\n139937|0.5\n139938|0.59722\n139939|0.65278\n139940|0.27778\n139941|0.23611\n139942|0.55556\n139943|0.56944\n139944|0.70833\n139945|0.51389\n139946|0.79167\n139947|0.77778\n139948|0.16667\n139949|0.055556\n139950|0.52778\n139951|0.22222\n139952|0.54167\n139953|0.43056\n139954|0.5\n139955|0.75\n139956|0.61111\n139957|0.73611\n139958|0.20833\n139959|0.68056\n139960|0.65278\n139961|0.83333\n139962|0.5\n139963|0.43056\n139964|0.29167\n139965|0.72222\n139966|0.56944\n139967|0.33333\n139968|0.33333\n139969|0.48611\n139970|0.59722\n139971|0.59722\n139972|0.79167\n139973|0.5\n139974|0.44444\n139975|0.27778\n139976|0.45833\n139977|0.58333\n139978|0.70833\n139979|0.54167\n139980|0.61111\n139981|0.59722\n139982|0.45833\n139983|0.40278\n139984|0.125\n139985|0.25\n139986|0.56944\n139987|0.58333\n139988|0.65278\n139989|0.61111\n139990|0.63889\n139991|0.56944\n139992|0.48611\n139993|0.48611\n139994|0.5\n139995|0.15278\n139996|0.375\n139997|0.41667\n139998|0.625\n139999|0.56944\n140000|0.76389\n140001|0.80556\n140002|0.5\n140003|0.61111\n140004|0.5\n140005|0.63889\n140006|0.72222\n140007|0.44444\n140008|0.5\n140009|0.52778\n140010|0.43056\n140011|0.75\n140012|0.56944\n140013|0.48611\n140014|0.66667\n140015|0.55556\n140016|0.48611\n140017|0.41667\n140018|0.47222\n140019|0.56944\n140020|0.63889\n140021|0.45833\n140022|0.5\n140023|0.47222\n140024|0.72222\n140025|0.54167\n140026|0.51389\n140027|0.5\n140028|0.5\n140029|0.5\n140030|0.5\n140031|0.61111\n140032|0.5\n140033|0.55556\n140034|0.45833\n140035|0.66667\n140036|0.5\n140037|0.54167\n140038|0.5\n140039|0.43056\n140040|0.34722\n140041|0.5\n140042|0.5\n140043|0.5\n140044|0.65278\n140045|0.625\n140046|0.68056\n140047|0.66667\n140048|0.47222\n140049|0.75\n140050|0.47222\n140051|0.52778\n140052|0.33333\n140053|0.625\n140054|0.54167\n140055|0.61111\n140056|0.51389\n140057|0.59722\n140058|0.51389\n140059|0.59722\n140060|0.44444\n140061|0.26389\n140062|0.5\n140063|0.52778\n140064|0.38889\n140065|0.5\n140066|0.58333\n140067|0.54167\n140068|0.68056\n140069|0.56944\n140070|0.11111\n140071|0.54167\n140072|0.86111\n140073|0.59722\n140074|0.875\n140075|0.63889\n140076|0.54167\n140077|0.43056\n140078|0.23611\n140079|0.59722\n140080|0.5\n140081|0.72222\n140082|0.59722\n140083|0.58333\n140084|0.38889\n140085|0.55556\n140086|0.625\n140087|0.70833\n140088|0.5\n140089|0.25\n140090|0.61111\n140091|0.59722\n140092|0.22222\n140093|0.5\n140094|0.31944\n140095|0.38889\n140096|0.73611\n140097|0.5\n140098|0.54167\n140099|0.69444\n140100|0.80556\n140101|0.34722\n140102|0.75\n140103|0.55556\n140104|0.56944\n140105|0.52778\n140106|0.68056\n140107|0.5\n140108|0.76389\n140109|0.70833\n140110|0.45833\n140111|0.56944\n140112|0.48611\n140113|0.5\n140114|0.5\n140115|0.56944\n140116|0.30556\n140117|0.44444\n140118|0.375\n140119|0.56944\n140120|0.5\n140121|0.38889\n140122|0.70833\n140123|0.61111\n140124|0.54167\n140125|0.31944\n140126|0.34722\n140127|0.76389\n140128|0.5\n140129|0.52778\n140130|0.70833\n140131|0.83333\n140132|0.5\n140133|0.65278\n140134|0.5\n140135|0.77778\n140136|0.56944\n140137|0.56944\n140138|0.375\n140139|0.44444\n140140|0.72222\n140141|0.45833\n140142|0.33333\n140143|0.68056\n140144|0.66667\n140145|0.18056\n140146|0.54167\n140147|0.61111\n140148|0.41667\n140149|0.61111\n140150|0.5\n140151|0.52778\n140152|0.45833\n140153|0.61111\n140154|0.73611\n140155|0.51389\n140156|0.81944\n140157|0.81944\n140158|0.69444\n140159|0.66667\n140160|0.69444\n140161|0.30556\n140162|0.88889\n140163|0.77778\n140164|0.54167\n140165|0.73611\n140166|0.61111\n140167|0.55556\n140168|0.72222\n140169|0.5\n140170|0.52778\n140171|0.54167\n140172|0.81944\n140173|0.5\n140174|0.54167\n140175|0.44444\n140176|0.41667\n140177|0.33333\n140178|0.83333\n140179|0.58333\n140180|0.38889\n140181|0.5\n140182|0.58333\n140183|0.68056\n140184|0.54167\n140185|0.55556\n140186|0.61111\n140187|0.44444\n140188|0.61111\n140189|0.58333\n140190|0.44444\n140191|0.5\n140192|0.38889\n140193|0.56944\n140194|0.27778\n140195|0.36111\n140196|0.56944\n140197|0.5\n140198|0.5\n140199|0.625\n140200|0.79167\n140201|0.5\n140202|0.86111\n140203|0.65278\n140204|0.54167\n140205|0.16667\n140206|0.5\n140207|0.66667\n140208|0.44444\n140209|0.5\n140210|0.44444\n140211|0.625\n140212|0.51389\n140213|0.72222\n140214|0.55556\n140215|0.5\n140216|0.5\n140217|0.36111\n140218|0.33333\n140219|0.34722\n140220|0.66667\n140221|0.625\n140222|0.70833\n140223|0.40278\n140224|0.58333\n140225|0.69444\n140226|0.5\n140227|0.52778\n140228|0.43056\n140229|0.5\n140230|0.70833\n140231|0.33333\n140232|0.88889\n140233|0.80556\n140234|0.66667\n140235|0.38889\n140236|0.58333\n140237|0.83333\n140238|0.88889\n140239|0.47222\n140240|0.66667\n140241|0.43056\n140242|0.5\n140243|0.625\n140244|0.54167\n140245|0.51389\n140246|0.5\n140247|0.47222\n140248|0.5\n140249|0.56944\n140250|0.51389\n140251|0.54167\n140252|0.5\n140253|0.38889\n140254|0.73611\n140255|0.55556\n140256|0.51389\n140257|0.68056\n140258|0.55556\n140259|0.375\n140260|0.56944\n140261|0.27778\n140262|0.48611\n140263|0.52778\n140264|0.5\n140265|0.375\n140266|0.5\n140267|0.76389\n140268|0.44444\n140269|0.34722\n140270|0.54167\n140271|0.54167\n140272|0.29167\n140273|0.5\n140274|0.52778\n140275|0.58333\n140276|0.51389\n140277|0.5\n140278|0.30556\n140279|0.79167\n140280|0.63889\n140281|0.5\n140282|0.5\n140283|0.27778\n140284|0.61111\n140285|0.18056\n140286|0.069444\n140287|0.83333\n140288|0.51389\n140289|0.16667\n140290|0.625\n140291|0.66667\n140292|0.73611\n140293|0.22222\n140294|0.44444\n140295|0.22222\n140296|0.68056\n140297|0.59722\n140298|0.625\n140299|1\n140300|0.56944\n140301|0.38889\n140302|0.43056\n140303|0.51389\n140304|0.13889\n140305|0.33333\n140306|0.41667\n140307|0.5\n140308|0.48611\n140309|0.27778\n140310|0.44444\n140311|0.61111\n140312|0.81944\n140313|0.41667\n140314|0.70833\n140315|0.48611\n140316|0.34722\n140317|0.54167\n140318|0.98611\n140319|0.52778\n140320|0.69444\n140321|0.33333\n140322|0.73611\n140323|0.41667\n140324|0.75\n140325|0.43056\n140326|0.45833\n140327|0.52778\n140328|0.5\n140329|0.56944\n140330|0.47222\n140331|0.47222\n140332|0.5\n140333|0.72222\n140334|0.44444\n140335|0.31944\n140336|0.54167\n140337|0.5\n140338|0.66667\n140339|0.5\n140340|0.79167\n140341|0.76389\n140342|0.22222\n140343|0.80556\n140344|0.15278\n140345|0.30556\n140346|0.44444\n140347|0.45833\n140348|0.44444\n140349|0.23611\n140350|0.5\n140351|0.47222\n140352|0.61111\n140353|0.52778\n140354|0.45833\n140355|0.36111\n140356|0.52778\n140357|0.41667\n140358|0.52778\n140359|0.47222\n140360|0.52778\n140361|0.51389\n140362|0.61111\n140363|0.56944\n140364|0.5\n140365|0.5\n140366|0.77778\n140367|0.47222\n140368|0.59722\n140369|0.73611\n140370|0.76389\n140371|0.80556\n140372|0.84722\n140373|0.84722\n140374|0.70833\n140375|0.86111\n140376|0.79167\n140377|0.76389\n140378|0.76389\n140379|0.52778\n140380|0.76389\n140381|0.84722\n140382|0.88889\n140383|0.86111\n140384|0.76389\n140385|0.55556\n140386|0.61111\n140387|0.36111\n140388|0.38889\n140389|0.70833\n140390|0.80556\n140391|0.55556\n140392|0.48611\n140393|0.45833\n140394|0.5\n140395|0.5\n140396|0.5\n140397|0.5\n140398|0.66667\n140399|0.625\n140400|0.59722\n140401|0.11111\n140402|0.66667\n140403|0.5\n140404|0.52778\n140405|0.52778\n140406|0.55556\n140407|0.68056\n140408|0.55556\n140409|0.36111\n140410|0.55556\n140411|0.48611\n140412|0.59722\n140413|0.65278\n140414|0.51389\n140415|0.44444\n140416|0.5\n140417|0.52778\n140418|0.58333\n140419|0.70833\n140420|0.22222\n140421|0.45833\n140422|0.33333\n140423|0.80556\n140424|0.59722\n140425|0.59722\n140426|0.51389\n140427|0.44444\n140428|0.5\n140429|0.5\n140430|0.59722\n140431|0.55556\n140432|0.52778\n140433|0.5\n140434|0.43056\n140435|0.33333\n140436|0.61111\n140437|0.48611\n140438|0.5\n140439|0.38889\n140440|0.26389\n140441|0.72222\n140442|0.56944\n140443|0.76389\n140444|0.68056\n140445|0.69444\n140446|0.86111\n140447|0.79167\n140448|0.73611\n140449|0.61111\n140450|0.65278\n140451|0.59722\n140452|0.69444\n140453|0.5\n140454|0.36111\n140455|0.63889\n140456|0.54167\n140457|0.52778\n140458|0.5\n140459|0.625\n140460|0.75\n140461|0.5\n140462|0.59722\n140463|0.56944\n140464|0.5\n140465|0.5\n140466|0.56944\n140467|0.65278\n140468|0.58333\n140469|0.83333\n140470|0.23611\n140471|0.25\n140472|0.52778\n140473|0.5\n140474|0.5\n140475|0.43056\n140476|0.25\n140477|0.26389\n140478|0.15278\n140479|0.125\n140480|0.29167\n140481|0.027778\n140482|0.11111\n140483|0\n140484|0.44444\n140485|0.54167\n140486|0.375\n140487|0.31944\n140488|0.83333\n140489|0.72222\n140490|0.70833\n140491|0.66667\n140492|0.65278\n140493|0.70833\n140494|0.72222\n140495|0.69444\n140496|0.84722\n140497|0.68056\n140498|0.69444\n140499|0\n140500|0.29167\n140501|0.75\n140502|0.80556\n140503|0.66667\n140504|0.61111\n140505|0.875\n140506|0.56944\n140507|0.75\n140508|0.68056\n140509|0.72222\n140510|0.5\n140511|0.56944\n140512|0.47222\n140513|0.5\n140514|0.41667\n140515|0.5\n140516|0.65278\n140517|0.36111\n140518|0.33333\n140519|0.51389\n140520|0.40278\n140521|0.45833\n140522|0.54167\n140523|0.5\n140524|0.51389\n140525|0.5\n140526|0.45833\n140527|0.18056\n140528|0.43056\n140529|0.48611\n140530|0.66667\n140531|0.19444\n140532|0.56944\n140533|0.72222\n140534|0.18056\n140535|0.041667\n140536|0.5\n140537|0.083333\n140538|0.375\n140539|0.54167\n140540|0.83333\n140541|0.75\n140542|0.375\n140543|0.43056\n140544|0.43056\n140545|0.56944\n140546|0.59722\n140547|0.47222\n140548|0.30556\n140549|0.36111\n140550|0.33333\n140551|0.47222\n140552|0.5\n140553|0.5\n140554|0.5\n140555|0.055556\n140556|0.41667\n140557|0.51389\n140558|0.56944\n140559|0.75\n140560|0.54167\n140561|0.41667\n140562|0.44444\n140563|0.48611\n140564|0.68056\n140565|0.52778\n140566|0.40278\n140567|0.23611\n140568|0.5\n140569|0.38889\n140570|0.29167\n140571|0.34722\n140572|0.51389\n140573|0.5\n140574|0.43056\n140575|0.31944\n140576|0.36111\n140577|0.27778\n140578|0.5\n140579|0.55556\n140580|0.56944\n140581|0.51389\n140582|0.77778\n140583|0.51389\n140584|0.52778\n140585|0.65278\n140586|0.44444\n140587|0.625\n140588|0.23611\n140589|0.625\n140590|0.41667\n140591|0.44444\n140592|0.56944\n140593|0.33333\n140594|0.16667\n140595|0.013889\n140596|0.23611\n140597|0.19444\n140598|0.097222\n140599|0.5\n140600|0.54167\n140601|0.5\n140602|0.68056\n140603|0.5\n140604|0.5\n140605|0.52778\n140606|0.61111\n140607|0.48611\n140608|0.27778\n140609|0.52778\n140610|0.5\n140611|0.48611\n140612|0.5\n140613|0.5\n140614|0.5\n140615|0.75\n140616|0.61111\n140617|0.52778\n140618|0.52778\n140619|0.58333\n140620|0.61111\n140621|0.27778\n140622|0.31944\n140623|0.44444\n140624|0.66667\n140625|0.70833\n140626|0.5\n140627|0.63889\n140628|0.5\n140629|0.61111\n140630|0.36111\n140631|0.31944\n140632|0.38889\n140633|0.43056\n140634|0.51389\n140635|0.54167\n140636|0.5\n140637|0.43056\n140638|0.125\n140639|0.47222\n140640|0.41667\n140641|0.86111\n140642|0.55556\n140643|0.43056\n140644|0.76389\n140645|0.33333\n140646|0.5\n140647|0.45833\n140648|0.41667\n140649|0.45833\n140650|0.125\n140651|0.23611\n140652|0.47222\n140653|0.38889\n140654|0.52778\n140655|0.5\n140656|0.16667\n140657|0.29167\n140658|0.44444\n140659|0.61111\n140660|0.52778\n140661|0.52778\n140662|0.44444\n140663|0.56944\n140664|0.5\n140665|0.83333\n140666|0.625\n140667|0.59722\n140668|0.75\n140669|0.44444\n140670|0.875\n140671|0.625\n140672|0.79167\n140673|0.72222\n140674|0.33333\n140675|0.55556\n140676|0.51389\n140677|0.68056\n140678|0.54167\n140679|0.58333\n140680|0.30556\n140681|0.48611\n140682|0.29167\n140683|0.47222\n140684|0.47222\n140685|0.13889\n140686|0.66667\n140687|0.63889\n140688|0.27778\n140689|0.5\n140690|0.73611\n140691|0.36111\n140692|0.51389\n140693|0.5\n140694|0.55556\n140695|0.18056\n140696|0.44444\n140697|0.40278\n140698|0.55556\n140699|0.55556\n140700|0.16667\n140701|0.61111\n140702|0.59722\n140703|0.47222\n140704|0.5\n140705|0.5\n140706|0.45833\n140707|0.41667\n140708|0.5\n140709|0.54167\n140710|0.36111\n140711|0.58333\n140712|0.5\n140713|0.48611\n140714|0.54167\n140715|0.59722\n140716|0.31944\n140717|0.51389\n140718|0.48611\n140719|0.45833\n140720|0.63889\n140721|0.66667\n140722|0.58333\n140723|0.40278\n140724|0.5\n140725|0.5\n140726|0.52778\n140727|0.55556\n140728|0.61111\n140729|0.375\n140730|0.58333\n140731|0.72222\n140732|0.5\n140733|0.34722\n140734|0.55556\n140735|0.52778\n140736|0.625\n140737|0.41667\n140738|0.34722\n140739|0.43056\n140740|0.5\n140741|0.40278\n140742|0.70833\n140743|0.5\n140744|0.5\n140745|0.5\n140746|0.52778\n140747|0.47222\n140748|0.68056\n140749|0.27778\n140750|0.5\n140751|0.33333\n140752|0.81944\n140753|0.55556\n140754|0.65278\n140755|0.5\n140756|0.38889\n140757|0.54167\n140758|0.40278\n140759|0.625\n140760|0.55556\n140761|0.5\n140762|0.72222\n140763|0.47222\n140764|0.66667\n140765|0.25\n140766|0.29167\n140767|0.22222\n140768|0.65278\n140769|0.45833\n140770|0.63889\n140771|0.36111\n140772|0.44444\n140773|0.79167\n140774|0.54167\n140775|0.83333\n140776|0.44444\n140777|0.625\n140778|0.52778\n140779|0.43056\n140780|0.19444\n140781|0.47222\n140782|0.56944\n140783|0.083333\n140784|0.34722\n140785|0.47222\n140786|0.33333\n140787|0.52778\n140788|0.5\n140789|0.58333\n140790|0.5\n140791|0.48611\n140792|0.5\n140793|0.59722\n140794|0.52778\n140795|0.5\n140796|0.65278\n140797|0.43056\n140798|0.5\n140799|0.5\n140800|0.5\n140801|0.26389\n140802|0.375\n140803|0.48611\n140804|0.5\n140805|0.625\n140806|0.55556\n140807|0.54167\n140808|0.44444\n140809|0.56944\n140810|0.55556\n140811|0.45833\n140812|0.38889\n140813|0.45833\n140814|0.625\n140815|0.5\n140816|0.27778\n140817|0.041667\n140818|0.63889\n140819|0.5\n140820|0.069444\n140821|0.83333\n140822|0.38889\n140823|0.36111\n140824|0.83333\n140825|0.47222\n140826|0.375\n140827|0.63889\n140828|0.54167\n140829|0.52778\n140830|0.5\n140831|0.5\n140832|0.54167\n140833|0.5\n140834|0.61111\n140835|0.5\n140836|0.5\n140837|0.5\n140838|0.5\n140839|0.52778\n140840|0.5\n140841|0.5\n140842|0.5\n140843|0.51389\n140844|0.5\n140845|0.5\n140846|0.61111\n140847|0.65278\n140848|0.38889\n140849|0.52778\n140850|0.5\n140851|0.5\n140852|0.5\n140853|0.58333\n140854|0.61111\n140855|0.52778\n140856|0.69444\n140857|0.5\n140858|0.55556\n140859|0.51389\n140860|0.45833\n140861|0.5\n140862|0.5\n140863|0.55556\n140864|0.70833\n140865|0.47222\n140866|0.65278\n140867|0.5\n140868|0.5\n140869|0.26389\n140870|0.5\n140871|0.5\n140872|0.16667\n140873|0.70833\n140874|0.55556\n140875|0.36111\n140876|0.41667\n140877|0.34722\n140878|0.097222\n140879|0.51389\n140880|0.47222\n140881|0.48611\n140882|0.5\n140883|0.55556\n140884|0.48611\n140885|0.5\n140886|0.5\n140887|0.54167\n140888|0.55556\n140889|0.625\n140890|0.54167\n140891|0.5\n140892|0.48611\n140893|0.38889\n140894|0.26389\n140895|0.33333\n140896|0.22222\n140897|0.22222\n140898|0.30556\n140899|0.44444\n140900|0.43056\n140901|0.38889\n140902|0.5\n140903|0.5\n140904|0.56944\n140905|0.41667\n140906|0.013889\n140907|0.44444\n140908|0.29167\n140909|0.097222\n140910|0.5\n140911|0.45833\n140912|0.25\n140913|0.5\n140914|0.18056\n140915|0.5\n140916|0.097222\n140917|0.083333\n140918|0.36111\n140919|0.34722\n140920|0.44444\n140921|0.52778\n140922|0.43056\n140923|0.5\n140924|0.51389\n140925|0.5\n140926|0.47222\n140927|0.52778\n140928|0.13889\n140929|0.33333\n140930|0.5\n140931|0.44444\n140932|0.5\n140933|0.055556\n140934|0.5\n140935|0.59722\n140936|0.5\n140937|0.38889\n140938|0.375\n140939|0.41667\n140940|0.33333\n140941|0.51389\n140942|0.15278\n140943|0.44444\n140944|0.44444\n140945|0.5\n140946|0.5\n140947|0.5\n140948|0.5\n140949|0.5\n140950|0.45833\n140951|0.5\n140952|0.30556\n140953|0.33333\n140954|0.52778\n140955|0.54167\n140956|0.51389\n140957|0.375\n140958|0.56944\n140959|0.45833\n140960|0.43056\n140961|0.54167\n140962|0.5\n140963|0.33333\n140964|0.51389\n140965|0.38889\n140966|0.52778\n140967|0.44444\n140968|0.66667\n140969|0.34722\n140970|0.40278\n140971|0.055556\n140972|0.19444\n140973|0.45833\n140974|0.5\n140975|0.23611\n140976|0.18056\n140977|0.16667\n140978|0.027778\n140979|0.5\n140980|0.33333\n140981|0.34722\n140982|0.72222\n140983|0.68056\n140984|0.48611\n140985|0.30556\n140986|0.26389\n140987|0.52778\n140988|0.47222\n140989|0.5\n140990|0.097222\n140991|0.25\n140992|0.23611\n140993|0.5\n140994|0.72222\n140995|0.31944\n140996|0.47222\n140997|0.55556\n140998|0.55556\n140999|0.5\n141000|0.43056\n141001|0.47222\n141002|0.72222\n141003|0.59722\n141004|0.5\n141005|0.44444\n141006|0.5\n141007|0.25\n141008|0.45833\n141009|0.33333\n141010|0.54167\n141011|0.29167\n141012|0.55556\n141013|0.63889\n141014|0.5\n141015|0.27778\n141016|0.22222\n141017|0.375\n141018|0.19444\n141019|0.45833\n141020|0.34722\n141021|0.52778\n141022|0.36111\n141023|0.36111\n141024|0.5\n141025|0.625\n141026|0.5\n141027|0.5\n141028|0.55556\n141029|0.47222\n141030|0.5\n141031|0.51389\n141032|0.5\n141033|0.44444\n141034|0.48611\n141035|0.45833\n141036|0.25\n141037|0.15278\n141038|0.19444\n141039|0.30556\n141040|0.5\n141041|0.30556\n141042|0.41667\n141043|0.52778\n141044|0.48611\n141045|0.5\n141046|0.43056\n141047|0.375\n141048|0.5\n141049|0.31944\n141050|0.375\n141051|0.44444\n141052|0.5\n141053|0.31944\n141054|0.44444\n141055|0.125\n141056|0.41667\n141057|0.40278\n141058|0.56944\n141059|0.5\n141060|0.5\n141061|0.5\n141062|0.625\n141063|0.38889\n141064|0.44444\n141065|0.29167\n141066|0.041667\n141067|0.23611\n141068|0.54167\n141069|0.15278\n141070|0.069444\n141071|0.5\n141072|0.5\n141073|0.43056\n141074|0.47222\n141075|0.30556\n141076|0.027778\n141077|0.58333\n141078|0.73611\n141079|0.72222\n141080|0.59722\n141081|0.43056\n141082|0.55556\n141083|0.33333\n141084|0.38889\n141085|0.27778\n141086|0.41667\n141087|0.33333\n141088|0.13889\n141089|0.34722\n141090|0.15278\n141091|0.18056\n141092|0.31944\n141093|0.16667\n141094|0.13889\n141095|0.45833\n141096|0.625\n141097|0.52778\n141098|0.625\n141099|0.51389\n141100|0.55556\n141101|0.11111\n141102|0.20833\n141103|0.25\n141104|0.29167\n141105|0.36111\n141106|0.47222\n141107|0.34722\n141108|0.43056\n141109|0.18056\n141110|0.29167\n141111|0.66667\n141112|0.375\n141113|0.36111\n141114|0.47222\n141115|0.40278\n141116|0.54167\n141117|0.43056\n141118|0.5\n141119|0.33333\n141120|0.22222\n141121|0.27778\n141122|0.48611\n141123|0.52778\n141124|0.27778\n141125|0.23611\n141126|0.097222\n141127|0.13889\n141128|0.30556\n141129|0.5\n141130|0.23611\n141131|0.30556\n141132|0.58333\n141133|0.34722\n141134|0.27778\n141135|0.125\n141136|0.38889\n141137|0.069444\n141138|0.11111\n141139|0.40278\n141140|0.34722\n141141|0.26389\n141142|0.30556\n141143|0.54167\n141144|0.375\n141145|0.22222\n141146|0.33333\n141147|0.31944\n141148|0.16667\n141149|0.61111\n141150|0.55556\n141151|0.54167\n141152|0.51389\n141153|0.5\n141154|0.34722\n141155|0.26389\n141156|0.23611\n141157|0.68056\n141158|0.5\n141159|0.33333\n141160|0.5\n141161|0.31944\n141162|0.31944\n141163|0.38889\n141164|0.36111\n141165|0.40278\n141166|0.25\n141167|0.27778\n141168|0.76389\n141169|0.45833\n141170|0.41667\n141171|0.5\n141172|0.375\n141173|0.56944\n141174|0.22222\n141175|0.38889\n141176|0.20833\n141177|0.55556\n141178|0.61111\n141179|0.5\n141180|0.625\n141181|0.44444\n141182|0.45833\n141183|0.5\n141184|0.68056\n141185|0.36111\n141186|0.36111\n141187|0.5\n141188|0.38889\n141189|0.33333\n141190|0.23611\n141191|0.25\n141192|0.48611\n141193|0.34722\n141194|0.30556\n141195|0.5\n141196|0.45833\n141197|0.55556\n141198|0.36111\n141199|0.52778\n141200|0.20833\n141201|0.19444\n141202|0.40278\n141203|0.58333\n141204|0.41667\n141205|0.27778\n141206|0.22222\n141207|0.30556\n141208|0.52778\n141209|0.45833\n141210|0.34722\n141211|0.13889\n141212|0.43056\n141213|0.29167\n141214|0.38889\n141215|0.25\n141216|0.34722\n141217|0.36111\n141218|0.27778\n141219|0.13889\n141220|0.55556\n141221|0.27778\n141222|0.40278\n141223|0.88889\n141224|0.77778\n141225|0.63889\n141226|0.375\n141227|0.31944\n141228|0.15278\n141229|0.16667\n141230|0.055556\n141231|0.125\n141232|0.31944\n141233|0.44444\n141234|0.27778\n141235|0.29167\n141236|0.22222\n141237|0.33333\n141238|0.16667\n141239|0.29167\n141240|0.48611\n141241|0.11111\n141242|0.22222\n141243|0.13889\n141244|0.40278\n141245|0.5\n141246|0.41667\n141247|0.52778\n141248|0.55556\n141249|0.40278\n141250|0.27778\n141251|0.375\n141252|0.097222\n141253|0.027778\n141254|0.51389\n141255|0.31944\n141256|0.27778\n141257|0.18056\n141258|0.52778\n141259|0.56944\n141260|0.48611\n141261|0.38889\n141262|0.5\n141263|0.5\n141264|0.66667\n141265|0.29167\n141266|0.33333\n141267|0.66667\n141268|0.63889\n141269|0.20833\n141270|0.40278\n141271|0.27778\n141272|0.83333\n141273|0.44444\n141274|0.55556\n141275|0.44444\n141276|0.25\n141277|0.44444\n141278|0.58333\n141279|0.22222\n141280|0.25\n141281|0.5\n141282|0.5\n141283|0.70833\n141284|0.58333\n141285|0.5\n141286|0.51389\n141287|0.18056\n141288|0.44444\n141289|0.23611\n141290|0.13889\n141291|0.15278\n141292|0.13889\n141293|0.44444\n141294|0.25\n141295|0.27778\n141296|0.22222\n141297|0.20833\n141298|0.5\n141299|0.47222\n141300|0.375\n141301|0.44444\n141302|0.65278\n141303|0.22222\n141304|0.33333\n141305|0.36111\n141306|0.76389\n141307|0.48611\n141308|0.52778\n141309|0.44444\n141310|0.36111\n141311|0.40278\n141312|0.5\n141313|0.40278\n141314|0.097222\n141315|0.16667\n141316|0.58333\n141317|0.5\n141318|0.29167\n141319|0.027778\n141320|0.44444\n141321|0.22222\n141322|0.5\n141323|0.56944\n141324|0.5\n141325|0.47222\n141326|0.20833\n141327|0.22222\n141328|0.125\n141329|0.22222\n141330|0.26389\n141331|0.59722\n141332|0.29167\n141333|0.51389\n141334|0.30556\n141335|0.41667\n141336|0.77778\n141337|0.70833\n141338|0.23611\n141339|0.30556\n141340|0.5\n141341|0.66667\n141342|0.54167\n141343|0.47222\n141344|0.75\n141345|0.41667\n141346|0.27778\n141347|0.26389\n141348|0.58333\n141349|0.52778\n141350|0.43056\n141351|0.33333\n141352|0.34722\n141353|0.34722\n141354|0.44444\n141355|0.38889\n141356|0.26389\n141357|0.34722\n141358|0.47222\n141359|0.25\n141360|0.52778\n141361|0.52778\n141362|0.5\n141363|0.36111\n141364|0.59722\n141365|0.43056\n141366|0.41667\n141367|0.55556\n141368|0.41667\n141369|0.31944\n141370|0.23611\n141371|0.44444\n141372|0.45833\n141373|0.47222\n141374|0.5\n141375|0.61111\n141376|0.40278\n141377|0.45833\n141378|0.43056\n141379|0.45833\n141380|0.47222\n141381|0.38889\n141382|0.36111\n141383|0.18056\n141384|0.41667\n141385|0.63889\n141386|0.29167\n141387|0.27778\n141388|0.22222\n141389|0.18056\n141390|0.19444\n141391|0.20833\n141392|0.38889\n141393|0.41667\n141394|0.26389\n141395|0.20833\n141396|0.19444\n141397|0.25\n141398|0.33333\n141399|0.43056\n141400|0.40278\n141401|0.31944\n141402|0.16667\n141403|0.27778\n141404|0.56944\n141405|0.30556\n141406|0.43056\n141407|0.16667\n141408|0.083333\n141409|0.18056\n141410|0.33333\n141411|0.27778\n141412|0.23611\n141413|0.66667\n141414|0.36111\n141415|0.47222\n141416|0.25\n141417|0.30556\n141418|0.59722\n141419|0.5\n141420|0.5\n141421|0.51389\n141422|0.43056\n141423|0.34722\n141424|0.19444\n141425|0.22222\n141426|0.18056\n141427|0.20833\n141428|0.25\n141429|0.33333\n141430|0.38889\n141431|0.5\n141432|0.47222\n141433|0.51389\n141434|0.44444\n141435|0.20833\n141436|0.70833\n141437|0.69444\n141438|0.30556\n141439|0.72222\n141440|0.40278\n141441|0.125\n141442|0.22222\n141443|0.38889\n141444|0.31944\n141445|0.18056\n141446|0.27778\n141447|0.27778\n141448|0.19444\n141449|0.15278\n141450|0.27778\n141451|0.30556\n141452|0.19444\n141453|0.26389\n141454|0.20833\n141455|0.33333\n141456|0.26389\n141457|0.61111\n141458|0.27778\n141459|0.34722\n141460|0.26389\n141461|0.43056\n141462|0.45833\n141463|0.19444\n141464|0.47222\n141465|0.29167\n141466|0.40278\n141467|0.41667\n141468|0.51389\n141469|0.59722\n141470|0.44444\n141471|0.41667\n141472|0.13889\n141473|0.33333\n141474|0.20833\n141475|0.11111\n141476|0.40278\n141477|0.34722\n141478|0.25\n141479|0.38889\n141480|0.34722\n141481|0.27778\n141482|0.20833\n141483|0.38889\n141484|0.22222\n141485|0.15278\n141486|0.56944\n141487|0.58333\n141488|0.5\n141489|0.58333\n141490|0.54167\n141491|0.45833\n141492|0.33333\n141493|0.34722\n141494|0.5\n141495|0.34722\n141496|0.66667\n141497|0.61111\n141498|0.45833\n141499|0.29167\n141500|0.29167\n141501|0.33333\n141502|0.34722\n141503|0.30556\n141504|0.33333\n141505|0.25\n141506|0.19444\n141507|0.30556\n141508|0.30556\n141509|0.26389\n141510|0.63889\n141511|0.38889\n141512|0.38889\n141513|0.375\n141514|0.45833\n141515|0.45833\n141516|0.5\n141517|0.47222\n141518|0.38889\n141519|0.27778\n141520|0.38889\n141521|0.5\n141522|0.54167\n141523|0.5\n141524|0.5\n141525|0.38889\n141526|0.44444\n141527|0.36111\n141528|0.26389\n141529|0.23611\n141530|0.23611\n141531|0.54167\n141532|0.36111\n141533|0.22222\n141534|0.40278\n141535|0.20833\n141536|0.36111\n141537|0.45833\n141538|0.23611\n141539|0.44444\n141540|0.22222\n141541|0.63889\n141542|0.19444\n141543|0.31944\n141544|0.55556\n141545|0.19444\n141546|0.48611\n141547|0.26389\n141548|0.30556\n141549|0.23611\n141550|0.16667\n141551|0.38889\n141552|0.22222\n141553|0.33333\n141554|0.20833\n141555|0.45833\n141556|0.20833\n141557|0.19444\n141558|0.33333\n141559|0.43056\n141560|0.30556\n141561|0.65278\n141562|0.33333\n141563|0.36111\n141564|0.56944\n141565|0.25\n141566|0.54167\n141567|0.75\n141568|0.54167\n141569|0.43056\n141570|0.25\n141571|0.30556\n141572|0.33333\n141573|0.43056\n141574|0.75\n141575|0.44444\n141576|0.29167\n141577|0.26389\n141578|0.23611\n141579|0.47222\n141580|0.5\n141581|0.375\n141582|0.44444\n141583|0.083333\n141584|0.11111\n141585|0.75\n141586|0.41667\n141587|0.22222\n141588|0.18056\n141589|0.23611\n141590|0.34722\n141591|0.23611\n141592|0.11111\n141593|0.52778\n141594|0.33333\n141595|0.52778\n141596|0.15278\n141597|0.31944\n141598|0.22222\n141599|0.29167\n141600|0.18056\n141601|0.18056\n141602|0.25\n141603|0.25\n141604|0.31944\n141605|0.13889\n141606|0.38889\n141607|0.15278\n141608|0.375\n141609|0.34722\n141610|0.51389\n141611|0.27778\n141612|0.33333\n141613|0.23611\n141614|0.27778\n141615|0.20833\n141616|0.18056\n141617|0.36111\n141618|0.34722\n141619|0.375\n141620|0.66667\n141621|0.69444\n141622|0.23611\n141623|0.55556\n141624|0.38889\n141625|0.22222\n141626|0.20833\n141627|0.59722\n141628|0.59722\n141629|0.30556\n141630|0.44444\n141631|0.34722\n141632|0.375\n141633|0.25\n141634|0.52778\n141635|0.44444\n141636|0.47222\n141637|0.45833\n141638|0.375\n141639|0.097222\n141640|0.54167\n141641|0.59722\n141642|0.097222\n141643|0.16667\n141644|0.34722\n141645|0.15278\n141646|0.44444\n141647|0.38889\n141648|0.34722\n141649|0.72222\n141650|0.30556\n141651|0.45833\n141652|0.5\n141653|0.52778\n141654|0.22222\n141655|0.34722\n141656|0.41667\n141657|0.5\n141658|0.38889\n141659|0.25\n141660|0.48611\n141661|0.30556\n141662|0.5\n141663|0.5\n141664|0.61111\n141665|0.52778\n141666|0.5\n141667|0.43056\n141668|0.44444\n141669|0.48611\n141670|0.55556\n141671|0.36111\n141672|0.375\n141673|0.43056\n141674|0.30556\n141675|0.19444\n141676|0.27778\n141677|0.22222\n141678|0.19444\n141679|0.18056\n141680|0.19444\n141681|0.31944\n141682|0.26389\n141683|0.29167\n141684|0.22222\n141685|0.56944\n141686|0.375\n141687|0.23611\n141688|0.34722\n141689|0.44444\n141690|0.625\n141691|0.66667\n141692|0.51389\n141693|0.38889\n141694|0.5\n141695|0.54167\n141696|0.375\n141697|0.25\n141698|0.30556\n141699|0.22222\n141700|0.33333\n141701|0.31944\n141702|0.58333\n141703|0.25\n141704|0.5\n141705|0.5\n141706|0.375\n141707|0.43056\n141708|0.63889\n141709|0.48611\n141710|0.55556\n141711|0.29167\n141712|0.30556\n141713|0.58333\n141714|0.31944\n141715|0.34722\n141716|0.15278\n141717|0.38889\n141718|0.38889\n141719|0.52778\n141720|0.40278\n141721|0.54167\n141722|0.51389\n141723|0.5\n141724|0.33333\n141725|0.55556\n141726|0.48611\n141727|0.5\n141728|0.31944\n141729|0.33333\n141730|0.43056\n141731|0.5\n141732|0.26389\n141733|0.5\n141734|0.5\n141735|0.36111\n141736|0.30556\n141737|0.61111\n141738|0.40278\n141739|0.5\n141740|0.5\n141741|0.41667\n141742|0.47222\n141743|0.38889\n141744|0.5\n141745|0.55556\n141746|0.375\n141747|0.52778\n141748|0.5\n141749|0.18056\n141750|0.5\n141751|0.38889\n141752|0.56944\n141753|0.5\n141754|0.5\n141755|0.5\n141756|0.66667\n141757|0.5\n141758|0.069444\n141759|0.625\n141760|0.45833\n141761|0.66667\n141762|0.66667\n141763|0.58333\n141764|0.38889\n141765|0.31944\n141766|0.51389\n141767|0.47222\n141768|0.20833\n141769|0.5\n141770|0.5\n141771|0.45833\n141772|0.59722\n141773|0.5\n141774|0.5\n141775|0.27778\n141776|0.59722\n141777|0.40278\n141778|0.55556\n141779|0.44444\n141780|0.23611\n141781|0.23611\n141782|0.26389\n141783|0.44444\n141784|0.36111\n141785|0.22222\n141786|0.20833\n141787|0.44444\n141788|0.55556\n141789|0.34722\n141790|0.5\n141791|0.44444\n141792|0.5\n141793|0.55556\n141794|0.51389\n141795|0.5\n141796|0.52778\n141797|0.43056\n141798|0.44444\n141799|0.5\n141800|0.52778\n141801|0.41667\n141802|0.5\n141803|0.23611\n141804|0.61111\n141805|0.45833\n141806|0.55556\n141807|0.375\n141808|0.5\n141809|0.59722\n141810|0.5\n141811|0.33333\n141812|0.5\n141813|0.44444\n141814|0.5\n141815|0.63889\n141816|0.23611\n141817|0.44444\n141818|0.069444\n141819|0.375\n141820|0.29167\n141821|0.38889\n141822|0.27778\n141823|0.33333\n141824|0.5\n141825|0.55556\n141826|0.29167\n141827|0.29167\n141828|0.25\n141829|0.34722\n141830|0.5\n141831|0.069444\n141832|0.51389\n141833|0.54167\n141834|0.375\n141835|0.55556\n141836|0.5\n141837|0.23611\n141838|0.33333\n141839|0.13889\n141840|0.5\n141841|0.36111\n141842|0.41667\n141843|0.5\n141844|0.16667\n141845|0.54167\n141846|0.5\n141847|0.34722\n141848|0.40278\n141849|0.5\n141850|0.45833\n141851|0.5\n141852|0.375\n141853|0.31944\n141854|0.44444\n141855|0.5\n141856|0.70833\n141857|0.27778\n141858|0.40278\n141859|0.54167\n141860|0.41667\n141861|0.40278\n141862|0.5\n141863|0.63889\n141864|0.77778\n141865|0.76389\n141866|0.27778\n141867|0.18056\n141868|0.5\n141869|0.31944\n141870|0.5\n141871|0.55556\n141872|0.44444\n141873|0.36111\n141874|0.5\n141875|0.44444\n141876|0.5\n141877|0.5\n141878|0.54167\n141879|0.44444\n141880|0.5\n141881|0.5\n141882|0.44444\n141883|0.45833\n141884|0.25\n141885|0.54167\n141886|0.52778\n141887|0.44444\n141888|0.5\n141889|0.44444\n141890|0.51389\n141891|0.44444\n141892|0.5\n141893|0.73611\n141894|0.5\n141895|0.47222\n141896|0.27778\n141897|0.40278\n141898|0.5\n141899|0.51389\n141900|0.55556\n141901|0.38889\n141902|0.66667\n141903|0.5\n141904|0.52778\n141905|0.47222\n141906|0.54167\n141907|0.47222\n141908|0.5\n141909|0.47222\n141910|0.25\n141911|0.55556\n141912|0.5\n141913|0.31944\n141914|0.26389\n141915|0.44444\n141916|0.56944\n141917|0.51389\n141918|0.5\n141919|0.25\n141920|0.5\n141921|0.5\n141922|0.041667\n141923|0.23611\n141924|0.72222\n141925|0.44444\n141926|0.18056\n141927|0.22222\n141928|0.5\n141929|0.47222\n141930|0.48611\n141931|0.27778\n141932|0.5\n141933|0.45833\n141934|0.5\n141935|0.63889\n141936|0.055556\n141937|0.27778\n141938|0.29167\n141939|0.19444\n141940|0.097222\n141941|0.33333\n141942|0.58333\n141943|0.38889\n141944|0.15278\n141945|0.43056\n141946|0.44444\n141947|0.25\n141948|0.40278\n141949|0.5\n141950|0.875\n141951|0.75\n141952|0.55556\n141953|0.55556\n141954|0.44444\n141955|0.25\n141956|0.30556\n141957|0.27778\n141958|0.15278\n141959|0.15278\n141960|0.375\n141961|0.36111\n141962|0.5\n141963|0.097222\n141964|0.18056\n141965|0.27778\n141966|0.30556\n141967|0.45833\n141968|0.15278\n141969|0.15278\n141970|0.31944\n141971|0.63889\n141972|0.72222\n141973|0.51389\n141974|0.40278\n141975|0.5\n141976|0.59722\n141977|0.33333\n141978|0.20833\n141979|0.26389\n141980|0.66667\n141981|0.19444\n141982|0.44444\n141983|0.44444\n141984|0.66667\n141985|0.25\n141986|0.31944\n141987|0.33333\n141988|0.33333\n141989|0.23611\n141990|0.11111\n141991|0.38889\n141992|0.375\n141993|0.13889\n141994|0.31944\n141995|0.5\n141996|0.5\n141997|0.27778\n141998|0.5\n141999|0.30556\n142000|0.44444\n142001|0.22222\n142002|0.31944\n142003|0.38889\n142004|0.36111\n142005|0.375\n142006|0.47222\n142007|0.125\n142008|0.19444\n142009|0.5\n142010|0.22222\n142011|0.23611\n142012|0.30556\n142013|0.36111\n142014|0.66667\n142015|0.51389\n142016|0.30556\n142017|0.44444\n142018|0.11111\n142019|0.5\n142020|0.33333\n142021|0.47222\n142022|0.47222\n142023|0.375\n142024|0.34722\n142025|0.52778\n142026|0.34722\n142027|0.26389\n142028|0.63889\n142029|0.69444\n142030|0.20833\n142031|0.81944\n142032|0.40278\n142033|0.54167\n142034|0.31944\n142035|0.59722\n142036|0.43056\n142037|0.29167\n142038|0.875\n142039|0.33333\n142040|0.27778\n142041|0.31944\n142042|0.59722\n142043|0.41667\n142044|0.34722\n142045|0.013889\n142046|0.48611\n142047|0.375\n142048|0.38889\n142049|0.29167\n142050|0.22222\n142051|0.25\n142052|0.27778\n142053|0.47222\n142054|0.40278\n142055|0.26389\n142056|0.097222\n142057|0.16667\n142058|0.16667\n142059|0.59722\n142060|0.33333\n142061|0.5\n142062|0.44444\n142063|0.38889\n142064|0.47222\n142065|0.34722\n142066|0.33333\n142067|0.65278\n142068|0.29167\n142069|0.34722\n142070|0.43056\n142071|0.30556\n142072|0.5\n142073|0.45833\n142074|0.44444\n142075|0.65278\n142076|0.58333\n142077|0.61111\n142078|0.31944\n142079|0.41667\n142080|0.43056\n142081|0.5\n142082|0.23611\n142083|0.45833\n142084|0.44444\n142085|0.34722\n142086|0.52778\n142087|0.27778\n142088|0.51389\n142089|0.86111\n142090|0.5\n142091|0.19444\n142092|0.36111\n142093|0.36111\n142094|0.47222\n142095|0.77778\n142096|0.54167\n142097|0.36111\n142098|0.5\n142099|0.375\n142100|0.40278\n142101|0.34722\n142102|0.44444\n142103|0.65278\n142104|0.11111\n142105|0.625\n142106|0.58333\n142107|0.15278\n142108|0.40278\n142109|0.58333\n142110|0.5\n142111|0.15278\n142112|0.375\n142113|0.56944\n142114|0.5\n142115|0.19444\n142116|0.72222\n142117|0.16667\n142118|0.5\n142119|0.33333\n142120|0.55556\n142121|0.47222\n142122|0.31944\n142123|0.31944\n142124|0.25\n142125|0.73611\n142126|0.19444\n142127|0.30556\n142128|0.375\n142129|0.44444\n142130|0.22222\n142131|0.41667\n142132|0.36111\n142133|0.45833\n142134|0.23611\n142135|0.47222\n142136|0.76389\n142137|0.5\n142138|0.26389\n142139|0.69444\n142140|0.68056\n142141|0.48611\n142142|0.41667\n142143|0.31944\n142144|0.22222\n142145|0.097222\n142146|0.38889\n142147|0.22222\n142148|0.11111\n142149|0.20833\n142150|0.45833\n142151|0.25\n142152|0.45833\n142153|0.41667\n142154|0.33333\n142155|0.20833\n142156|0.16667\n142157|0.30556\n142158|0.097222\n142159|0.31944\n142160|0.5\n142161|0.375\n142162|0.5\n142163|0.5\n142164|0.43056\n142165|0.44444\n142166|0.5\n142167|0.36111\n142168|0.19444\n142169|0.083333\n142170|0.625\n142171|0.33333\n142172|0.041667\n142173|0.375\n142174|0.5\n142175|0.18056\n142176|0.31944\n142177|0.40278\n142178|0.47222\n142179|0.23611\n142180|0.59722\n142181|0.33333\n142182|0.22222\n142183|0.66667\n142184|0.30556\n142185|0.5\n142186|0.44444\n142187|0.44444\n142188|0.41667\n142189|0.41667\n142190|0.27778\n142191|0.33333\n142192|0.61111\n142193|0.44444\n142194|0.33333\n142195|0.48611\n142196|0.33333\n142197|0.34722\n142198|0.5\n142199|0.55556\n142200|0.34722\n142201|0.40278\n142202|0.19444\n142203|0.26389\n142204|0.33333\n142205|0.54167\n142206|0.27778\n142207|0.18056\n142208|0.34722\n142209|0.13889\n142210|0.45833\n142211|0.34722\n142212|0.5\n142213|0.5\n142214|0.31944\n142215|0.54167\n142216|0.61111\n142217|0.41667\n142218|0.18056\n142219|0.36111\n142220|0.68056\n142221|0.5\n142222|0.31944\n142223|0.52778\n142224|0.40278\n142225|0.55556\n142226|0.41667\n142227|0.19444\n142228|0.41667\n142229|0.47222\n142230|0.375\n142231|0.11111\n142232|0.41667\n142233|0.43056\n142234|0.5\n142235|0.15278\n142236|0.33333\n142237|0.5\n142238|0.30556\n142239|0.30556\n142240|0.20833\n142241|0.36111\n142242|0.22222\n142243|0.13889\n142244|0.34722\n142245|0.23611\n142246|0.5\n142247|0.125\n142248|0.80556\n142249|0.22222\n142250|0.16667\n142251|0.33333\n142252|0.26389\n142253|0.22222\n142254|0.22222\n142255|0.34722\n142256|0.26389\n142257|0.41667\n142258|0.20833\n142259|0.19444\n142260|0.30556\n142261|0.11111\n142262|0.5\n142263|0.36111\n142264|0.31944\n142265|0.30556\n142266|0.069444\n142267|0.20833\n142268|0.29167\n142269|0.30556\n142270|0.44444\n142271|0.29167\n142272|0.5\n142273|0.26389\n142274|0.20833\n142275|0.44444\n142276|0.33333\n142277|0.72222\n142278|0.23611\n142279|0.125\n142280|0.125\n142281|0.19444\n142282|0.36111\n142283|0.55556\n142284|0.43056\n142285|0.23611\n142286|0.33333\n142287|0.70833\n142288|0.22222\n142289|0.083333\n142290|0.23611\n142291|0.26389\n142292|0.52778\n142293|0.29167\n142294|0.38889\n142295|0.31944\n142296|0.33333\n142297|0.25\n142298|0.25\n142299|0.43056\n142300|0.26389\n142301|0.68056\n142302|0.25\n142303|0.41667\n142304|0.44444\n142305|0.20833\n142306|0.52778\n142307|0.30556\n142308|0.16667\n142309|0.23611\n142310|0.55556\n142311|0.26389\n142312|0.43056\n142313|0.22222\n142314|0.43056\n142315|0.23611\n142316|0.18056\n142317|0.56944\n142318|0.5\n142319|0.13889\n142320|0.54167\n142321|0.65278\n142322|0.22222\n142323|0.30556\n142324|0.33333\n142325|0.13889\n142326|0.68056\n142327|0.44444\n142328|0.36111\n142329|0.55556\n142330|0.45833\n142331|0.20833\n142332|0.38889\n142333|0.48611\n142334|0.29167\n142335|0.125\n142336|0.29167\n142337|0.31944\n142338|0.36111\n142339|0.31944\n142340|0.40278\n142341|0.41667\n142342|0.25\n142343|0.36111\n142344|0.36111\n142345|0.41667\n142346|0.27778\n142347|0.47222\n142348|0.54167\n142349|0.52778\n142350|0.5\n142351|0.45833\n142352|0.29167\n142353|0.34722\n142354|0.25\n142355|0.33333\n142356|0.5\n142357|0.5\n142358|0.27778\n142359|0.33333\n142360|0.44444\n142361|0.27778\n142362|0.40278\n142363|0.44444\n142364|0.38889\n142365|0.34722\n142366|0.44444\n142367|0.19444\n142368|0.26389\n142369|0.44444\n142370|0.36111\n142371|0.20833\n142372|0.5\n142373|0.40278\n142374|0.61111\n142375|0.30556\n142376|0.54167\n142377|0.13889\n142378|0.5\n142379|0.5\n142380|0.16667\n142381|0.5\n142382|0.76389\n142383|0.5\n142384|0.31944\n142385|0.40278\n142386|0.58333\n142387|0.55556\n142388|0.63889\n142389|0.51389\n142390|0.38889\n142391|0.45833\n142392|0.15278\n142393|0.41667\n142394|0.5\n142395|0.5\n142396|0.29167\n142397|0.27778\n142398|0.34722\n142399|0.51389\n142400|0.055556\n142401|0.27778\n142402|0.055556\n142403|0.27778\n142404|0.29167\n142405|0.51389\n142406|0.19444\n142407|0.29167\n142408|0.51389\n142409|0.29167\n142410|0.38889\n142411|0.29167\n142412|0.16667\n142413|0.65278\n142414|0.33333\n142415|0.26389\n142416|0.38889\n142417|0.43056\n142418|0.5\n142419|0.55556\n142420|0.23611\n142421|0.34722\n142422|0.45833\n142423|0.65278\n142424|0.56944\n142425|0.31944\n142426|0.33333\n142427|0.20833\n142428|0.44444\n142429|0.29167\n142430|0.5\n142431|0.58333\n142432|0.30556\n142433|0.54167\n142434|0.125\n142435|0.34722\n142436|0.44444\n142437|0.48611\n142438|0.055556\n142439|0.5\n142440|0.70833\n142441|0.19444\n142442|0.27778\n142443|0.27778\n142444|0.11111\n142445|0.54167\n142446|0.5\n142447|0.29167\n142448|0.375\n142449|0.5\n142450|0.41667\n142451|0.54167\n142452|0.34722\n142453|0.38889\n142454|0.30556\n142455|0.5\n142456|0.5\n142457|0.30556\n142458|0.23611\n142459|0.51389\n142460|0.34722\n142461|0.22222\n142462|0.63889\n142463|0.43056\n142464|0.23611\n142465|0.45833\n142466|0.38889\n142467|0.38889\n142468|0.38889\n142469|0.18056\n142470|0.27778\n142471|0.33333\n142472|0.11111\n142473|0.34722\n142474|0.375\n142475|0.47222\n142476|0.40278\n142477|0.54167\n142478|0.54167\n142479|0.34722\n142480|0.31944\n142481|0.43056\n142482|0.22222\n142483|0.27778\n142484|0.30556\n142485|0.44444\n142486|0.375\n142487|0.083333\n142488|0.36111\n142489|0.31944\n142490|0.34722\n142491|0.31944\n142492|0.33333\n142493|0.44444\n142494|0.19444\n142495|0.31944\n142496|0.34722\n142497|0.27778\n142498|0.41667\n142499|0.38889\n142500|0.29167\n142501|0.625\n142502|0.41667\n142503|0.31944\n142504|0.29167\n142505|0.26389\n142506|0.25\n142507|0.125\n142508|0.58333\n142509|0.375\n142510|0.20833\n142511|0.45833\n142512|0.25\n142513|0.40278\n142514|0.26389\n142515|0.40278\n142516|0.72222\n142517|0.25\n142518|0.27778\n142519|0.52778\n142520|0.29167\n142521|0.20833\n142522|0.29167\n142523|0.375\n142524|0.19444\n142525|0.26389\n142526|0.66667\n142527|0.29167\n142528|0.27778\n142529|0.20833\n142530|0.43056\n142531|0.625\n142532|0.48611\n142533|0.23611\n142534|0.15278\n142535|0.26389\n142536|0.16667\n142537|0.30556\n142538|0.30556\n142539|0.55556\n142540|0.25\n142541|0.27778\n142542|0.94444\n142543|0.16667\n142544|0.33333\n142545|0.26389\n142546|0.34722\n142547|0.52778\n142548|0.26389\n142549|0.27778\n142550|0.15278\n142551|0.5\n142552|0.41667\n142553|0.41667\n142554|0.5\n142555|0.30556\n142556|0.055556\n142557|0.27778\n142558|0.11111\n142559|0.69444\n142560|0.23611\n142561|0.20833\n142562|0.38889\n142563|0.27778\n142564|0.63889\n142565|0.22222\n142566|0.44444\n142567|0.097222\n142568|0.027778\n142569|0.5\n142570|0.5\n142571|0.19444\n142572|0.16667\n142573|0.41667\n142574|0.27778\n142575|0.31944\n142576|0.18056\n142577|0.26389\n142578|0.375\n142579|0.30556\n142580|0.22222\n142581|0.097222\n142582|0.43056\n142583|0.43056\n142584|0.40278\n142585|0.29167\n142586|0.055556\n142587|0.23611\n142588|0.36111\n142589|0.54167\n142590|0.69444\n142591|0.18056\n142592|0.18056\n142593|0.30556\n142594|0.63889\n142595|0.5\n142596|0.13889\n142597|0.16667\n142598|0.31944\n142599|0.48611\n142600|0.22222\n142601|0.26389\n142602|0.11111\n142603|0.58333\n142604|0.19444\n142605|0.48611\n142606|0.375\n142607|0.29167\n142608|0.41667\n142609|0.15278\n142610|0.29167\n142611|0.5\n142612|0.22222\n142613|0.33333\n142614|0.44444\n142615|0.43056\n142616|0.33333\n142617|0.19444\n142618|0.47222\n142619|0.25\n142620|0.29167\n142621|0.29167\n142622|0.44444\n142623|0.34722\n142624|0.20833\n142625|0.56944\n142626|0.83333\n142627|0.40278\n142628|0.51389\n142629|0.68056\n142630|0.31944\n142631|0.45833\n142632|0.41667\n142633|0.77778\n142634|0.44444\n142635|0.40278\n142636|0.47222\n142637|0.33333\n142638|0.30556\n142639|0.34722\n142640|0.19444\n142641|0.48611\n142642|0.52778\n142643|0.56944\n142644|0.30556\n142645|0.22222\n142646|0.45833\n142647|0.16667\n142648|0.34722\n142649|0.5\n142650|0.19444\n142651|0.5\n142652|0.375\n142653|0.69444\n142654|0.23611\n142655|0.11111\n142656|0.26389\n142657|0.40278\n142658|0.54167\n142659|0.58333\n142660|0.48611\n142661|0.5\n142662|0.5\n142663|0.22222\n142664|0.55556\n142665|0.15278\n142666|0.38889\n142667|0.41667\n142668|0.16667\n142669|0.47222\n142670|0.40278\n142671|0.26389\n142672|0.16667\n142673|0.66667\n142674|0.38889\n142675|0.20833\n142676|0.375\n142677|0.38889\n142678|0.13889\n142679|0.55556\n142680|0.52778\n142681|0.20833\n142682|0.54167\n142683|0.5\n142684|0.58333\n142685|0.36111\n142686|0.54167\n142687|0.29167\n142688|0.34722\n142689|0.52778\n142690|0.38889\n142691|0.30556\n142692|0.45833\n142693|0.5\n142694|0.34722\n142695|0.45833\n142696|0.52778\n142697|0.5\n142698|0.31944\n142699|0.54167\n142700|0.51389\n142701|0.5\n142702|0.48611\n142703|0.5\n142704|0.5\n142705|0.40278\n142706|0.56944\n142707|0.43056\n142708|0.41667\n142709|0.5\n142710|0.27778\n142711|0.5\n142712|0.58333\n142713|0.51389\n142714|0.55556\n142715|0.48611\n142716|0.40278\n142717|0.30556\n142718|0.43056\n142719|0.31944\n142720|0.41667\n142721|0.58333\n142722|0.30556\n142723|0.48611\n142724|0.41667\n142725|0.5\n142726|0.5\n142727|0.33333\n142728|0.58333\n142729|0.30556\n142730|0.5\n142731|0.48611\n142732|0.38889\n142733|0.66667\n142734|0.5\n142735|0.5\n142736|0.5\n142737|0.61111\n142738|0.5\n142739|0.52778\n142740|0.13889\n142741|0.16667\n142742|0.5\n142743|0.48611\n142744|0.5\n142745|0.5\n142746|0.5\n142747|0.36111\n142748|0.5\n142749|0.47222\n142750|0.5\n142751|0.65278\n142752|0.5\n142753|0.55556\n142754|0.47222\n142755|0.16667\n142756|0.58333\n142757|0.5\n142758|0.5\n142759|0.625\n142760|0.30556\n142761|0.30556\n142762|0.36111\n142763|0.375\n142764|0.34722\n142765|0.16667\n142766|0.34722\n142767|0.22222\n142768|0.27778\n142769|0.31944\n142770|0.16667\n142771|0.29167\n142772|0.52778\n142773|0.19444\n142774|0.125\n142775|0.16667\n142776|0.26389\n142777|0.40278\n142778|0.625\n142779|0.41667\n142780|0.31944\n142781|0.22222\n142782|0.59722\n142783|0.16667\n142784|0.18056\n142785|0.56944\n142786|0.77778\n142787|0.26389\n142788|0.27778\n142789|0.11111\n142790|0.23611\n142791|0.27778\n142792|0.51389\n142793|0.22222\n142794|0.15278\n142795|0.45833\n142796|0.48611\n142797|0.38889\n142798|0.41667\n142799|0.58333\n142800|0.33333\n142801|0.25\n142802|0.30556\n142803|0.069444\n142804|0.76389\n142805|0.22222\n142806|0.16667\n142807|0.38889\n142808|0.083333\n142809|0.23611\n142810|0.34722\n142811|0.23611\n142812|0.097222\n142813|0.23611\n142814|0.30556\n142815|0.19444\n142816|0.22222\n142817|0.30556\n142818|0.41667\n142819|0.56944\n142820|0.26389\n142821|0.22222\n142822|0.20833\n142823|0.25\n142824|0.13889\n142825|0.027778\n142826|0.41667\n142827|0.61111\n142828|0.16667\n142829|0.23611\n142830|0.43056\n142831|0.097222\n142832|0.34722\n142833|0.33333\n142834|0.61111\n142835|0.44444\n142836|0.47222\n142837|0.11111\n142838|0.23611\n142839|0.5\n142840|0.61111\n142841|0.22222\n142842|0.56944\n142843|0.47222\n142844|0.5\n142845|0.44444\n142846|0.5\n142847|0.5\n142848|0.43056\n142849|0.54167\n142850|0.52778\n142851|0.5\n142852|0.44444\n142853|0.48611\n142854|0.5\n142855|0.56944\n142856|0.51389\n142857|0.625\n142858|0.5\n142859|0.5\n142860|0.5\n142861|0.59722\n142862|0.5\n142863|0.5\n142864|0.5\n142865|0.5\n142866|0.45833\n142867|0.45833\n142868|0.5\n142869|0.5\n142870|0.58333\n142871|0.5\n142872|0.5\n142873|0.44444\n142874|0.52778\n142875|0.5\n142876|0.5\n142877|0.47222\n142878|0.5\n142879|0.51389\n142880|0.5\n142881|0.5\n142882|0.61111\n142883|0.5\n142884|0.43056\n142885|0.30556\n142886|0.48611\n142887|0.54167\n142888|0.55556\n142889|0.5\n142890|0.5\n142891|0.55556\n142892|0.5\n142893|0.5\n142894|0.5\n142895|0.5\n142896|0.5\n142897|0.54167\n142898|0.56944\n142899|0.5\n142900|0.5\n142901|0.30556\n142902|0.5\n142903|0.5\n142904|0.45833\n142905|0.55556\n142906|0.52778\n142907|0.5\n142908|0.5\n142909|0.5\n142910|0.51389\n142911|0.5\n142912|0.5\n142913|0.5\n142914|0.5\n142915|0.20833\n142916|0.51389\n142917|0.5\n142918|0.70833\n142919|0.70833\n142920|0.30556\n142921|0.5\n142922|0.5\n142923|0.5\n142924|0.43056\n142925|0.5\n142926|0.48611\n142927|0.59722\n142928|0.5\n142929|0.5\n142930|0.5\n142931|0.56944\n142932|0.5\n142933|0.45833\n142934|0.5\n142935|0.5\n142936|0.43056\n142937|0.5\n142938|0.65278\n142939|0.43056\n142940|0.5\n142941|0.5\n142942|0.5\n142943|0.5\n142944|0.23611\n142945|0.5\n142946|0.59722\n142947|0.58333\n142948|0.61111\n142949|0.29167\n142950|0.11111\n142951|0.31944\n142952|0.33333\n142953|0.16667\n142954|0.44444\n142955|0.34722\n142956|0.23611\n142957|0.5\n142958|0.5\n142959|0.33333\n142960|0.45833\n142961|0.34722\n142962|0.45833\n142963|0.65278\n142964|0.5\n142965|0.44444\n142966|0.41667\n142967|0.52778\n142968|0.34722\n142969|0.45833\n142970|0.5\n142971|0.55556\n142972|0.36111\n142973|0.5\n142974|0.44444\n142975|0.125\n142976|0.38889\n142977|0.5\n142978|0.20833\n142979|0.41667\n142980|0.55556\n142981|0.16667\n142982|0.38889\n142983|0.5\n142984|0.5\n142985|0.40278\n142986|0.26389\n142987|0.44444\n142988|0.22222\n142989|0.30556\n142990|0.43056\n142991|0.069444\n142992|0.20833\n142993|0.15278\n142994|0.13889\n142995|0.16667\n142996|0.41667\n142997|0.27778\n142998|0.29167\n142999|0.44444\n143000|0.44444\n143001|0.59722\n143002|0.52778\n143003|0.25\n143004|0.5\n143005|0.27778\n143006|0.33333\n143007|0.22222\n143008|0.19444\n143009|0.33333\n143010|0.22222\n143011|0.27778\n143012|0.055556\n143013|0.20833\n143014|0.25\n143015|0.23611\n143016|0.15278\n143017|0.27778\n143018|0.16667\n143019|0.5\n143020|0.26389\n143021|0.27778\n143022|0.18056\n143023|0.20833\n143024|0.63889\n143025|0.44444\n143026|0.31944\n143027|0.26389\n143028|0.52778\n143029|0.38889\n143030|0.36111\n143031|0.44444\n143032|0.34722\n143033|0.45833\n143034|0.41667\n143035|0.40278\n143036|0.48611\n143037|0.19444\n143038|0.18056\n143039|0.30556\n143040|0.47222\n143041|0.11111\n143042|0.16667\n143043|0.15278\n143044|0.36111\n143045|0.125\n143046|0.25\n143047|0.29167\n143048|0.29167\n143049|0.38889\n143050|0.30556\n143051|0.29167\n143052|0.58333\n143053|0.33333\n143054|0.41667\n143055|0.52778\n143056|0.5\n143057|0.29167\n143058|0.5\n143059|0.47222\n143060|0.083333\n143061|0.36111\n143062|0.23611\n143063|0.22222\n143064|0.54167\n143065|0.19444\n143066|0.15278\n143067|0.25\n143068|0.16667\n143069|0.26389\n143070|0.45833\n143071|0.16667\n143072|0.29167\n143073|0.041667\n143074|0.055556\n143075|0.20833\n143076|0.069444\n143077|0.375\n143078|0.11111\n143079|0.30556\n143080|0.18056\n143081|0.041667\n143082|0.23611\n143083|0.125\n143084|0.16667\n143085|0.20833\n143086|0.29167\n143087|0.45833\n143088|0.48611\n143089|0.625\n143090|0.63889\n143091|0.58333\n143092|0.38889\n143093|0.125\n143094|0.19444\n143095|0.27778\n143096|0.66667\n143097|0.625\n143098|0.375\n143099|0.26389\n143100|0.27778\n143101|0.44444\n143102|0.33333\n143103|0.27778\n143104|0.45833\n143105|0.31944\n143106|0.19444\n143107|0.20833\n143108|0.41667\n143109|0.26389\n143110|0.55556\n143111|0.38889\n143112|0.43056\n143113|0.25\n143114|0.22222\n143115|0.23611\n143116|0.34722\n143117|0.33333\n143118|0.19444\n143119|0.18056\n143120|0.77778\n143121|0.58333\n143122|0.55556\n143123|0.27778\n143124|0.36111\n143125|0.16667\n143126|0.23611\n143127|0.83333\n143128|0.47222\n143129|0.38889\n143130|0.41667\n143131|0.20833\n143132|0.20833\n143133|0.79167\n143134|0.18056\n143135|0.69444\n143136|0.36111\n143137|0.27778\n143138|0.26389\n143139|0.20833\n143140|0.36111\n143141|0.51389\n143142|0.38889\n143143|0.70833\n143144|0.66667\n143145|0.30556\n143146|0.15278\n143147|0.31944\n143148|0.20833\n143149|0.5\n143150|0.22222\n143151|0.25\n143152|0.68056\n143153|0.22222\n143154|0.375\n143155|0.47222\n143156|0.45833\n143157|0.25\n143158|0.27778\n143159|0.45833\n143160|0.36111\n143161|0.15278\n143162|0.13889\n143163|0.15278\n143164|0.31944\n143165|0.34722\n143166|0.36111\n143167|0.41667\n143168|0.33333\n143169|0.34722\n143170|0.43056\n143171|0.41667\n143172|0.22222\n143173|0.27778\n143174|0.34722\n143175|0.30556\n143176|0.11111\n143177|0.38889\n143178|0.31944\n143179|0.22222\n143180|0.20833\n143181|0.27778\n143182|0.19444\n143183|0.16667\n143184|0.15278\n143185|0.26389\n143186|0\n143187|0.19444\n143188|0.20833\n143189|0.33333\n143190|0.22222\n143191|0.31944\n143192|0.18056\n143193|0.26389\n143194|0.23611\n143195|0.083333\n143196|0.11111\n143197|0.45833\n143198|0.41667\n143199|0.45833\n143200|0.45833\n143201|0.45833\n143202|0.58333\n143203|0.20833\n143204|0.40278\n143205|0.27778\n143206|0.25\n143207|0.36111\n143208|0.375\n143209|0.097222\n143210|0.33333\n143211|0.34722\n143212|0.63889\n143213|0.51389\n143214|0.33333\n143215|0.34722\n143216|0.45833\n143217|0.56944\n143218|0.36111\n143219|0.63889\n143220|0.72222\n143221|0.59722\n143222|0.5\n143223|0.22222\n143224|0.40278\n143225|0.19444\n143226|0.27778\n143227|0.30556\n143228|0.41667\n143229|0.055556\n143230|0.31944\n143231|0.25\n143232|0.27778\n143233|0.19444\n143234|0.41667\n143235|0.66667\n143236|0.61111\n143237|0.40278\n143238|0.125\n143239|0.54167\n143240|0.26389\n143241|0.23611\n143242|0.25\n143243|0.31944\n143244|0.29167\n143245|0.47222\n143246|0.33333\n143247|0.41667\n143248|0.20833\n143249|0.34722\n143250|0.34722\n143251|0.16667\n143252|0.13889\n143253|0.29167\n143254|0.27778\n143255|0.19444\n143256|0.083333\n143257|0.083333\n143258|0.41667\n143259|0.055556\n143260|0.5\n143261|0.30556\n143262|0.25\n143263|0.30556\n143264|0.55556\n143265|0.36111\n143266|0.33333\n143267|0.48611\n143268|0.43056\n143269|0.375\n143270|0.125\n143271|0.13889\n143272|0.51389\n143273|0.44444\n143274|0.43056\n143275|0.19444\n143276|0.68056\n143277|0.18056\n143278|0.54167\n143279|0.375\n143280|0.22222\n143281|0.27778\n143282|0.31944\n143283|0.26389\n143284|0.45833\n143285|0.22222\n143286|0.15278\n143287|0.33333\n143288|0.48611\n143289|0.33333\n143290|0.38889\n143291|0.61111\n143292|0.43056\n143293|0.40278\n143294|0.5\n143295|0.29167\n143296|0.31944\n143297|0.027778\n143298|0.54167\n143299|0.48611\n143300|0.40278\n143301|0.5\n143302|0.45833\n143303|0.31944\n143304|0.41667\n143305|0.34722\n143306|0.51389\n143307|0.5\n143308|0.26389\n143309|0.36111\n143310|0.20833\n143311|0.47222\n143312|0.34722\n143313|0.18056\n143314|0.76389\n143315|0.75\n143316|0.65278\n143317|0.59722\n143318|0.68056\n143319|0.48611\n143320|0.625\n143321|0.23611\n143322|0.5\n143323|0.22222\n143324|0.36111\n143325|0.375\n143326|0.38889\n143327|0.52778\n143328|0.52778\n143329|0.25\n143330|0.083333\n143331|0.31944\n143332|0.125\n143333|0.27778\n143334|0.083333\n143335|0.069444\n143336|0.027778\n143337|0.38889\n143338|0.23611\n143339|0.36111\n143340|0.31944\n143341|0.16667\n143342|0.5\n143343|0.29167\n143344|0.47222\n143345|0.48611\n143346|0.34722\n143347|0.26389\n143348|0.40278\n143349|0.15278\n143350|0.23611\n143351|0.22222\n143352|0.097222\n143353|0.27778\n143354|0.29167\n143355|0.20833\n143356|0.72222\n143357|0.66667\n143358|0.38889\n143359|0.375\n143360|0.31944\n143361|0.38889\n143362|0.34722\n143363|0.36111\n143364|0.097222\n143365|0.027778\n143366|0.61111\n143367|0.44444\n143368|0.5\n143369|0.44444\n143370|0.38889\n143371|0.19444\n143372|0.47222\n143373|0.30556\n143374|0.34722\n143375|0.61111\n143376|0.61111\n143377|0.61111\n143378|0.38889\n143379|0.51389\n143380|0.44444\n143381|0.44444\n143382|0.47222\n143383|0.63889\n143384|0.30556\n143385|0.15278\n143386|0.29167\n143387|0.59722\n143388|0.875\n143389|0.90278\n143390|0.38889\n143391|0.29167\n143392|0.58333\n143393|0.38889\n143394|0.48611\n143395|0.48611\n143396|0.51389\n143397|0.65278\n143398|0.52778\n143399|0.68056\n143400|0.027778\n143401|0.069444\n143402|0.56944\n143403|0.48611\n143404|0.58333\n143405|0.34722\n143406|0.125\n143407|0.083333\n143408|0.33333\n143409|0.27778\n143410|0.34722\n143411|0.25\n143412|0.11111\n143413|0.29167\n143414|0.16667\n143415|0.375\n143416|0.18056\n143417|0.40278\n143418|0.30556\n143419|0.13889\n143420|0.19444\n143421|0.54167\n143422|0.38889\n143423|0.43056\n143424|0.31944\n143425|0.11111\n143426|0.23611\n143427|0.51389\n143428|0.31944\n143429|0.72222\n143430|0.63889\n143431|0.59722\n143432|0.58333\n143433|0.45833\n143434|0.44444\n143435|0.33333\n143436|0.30556\n143437|0.41667\n143438|0.47222\n143439|0.41667\n143440|0.36111\n143441|0.22222\n143442|0.26389\n143443|0.29167\n143444|0.23611\n143445|0.36111\n143446|0.5\n143447|0.48611\n143448|0.5\n143449|0.61111\n143450|0.52778\n143451|0.52778\n143452|0.5\n143453|0.41667\n143454|0.625\n143455|0.34722\n143456|0.38889\n143457|0.44444\n143458|0.38889\n143459|0.5\n143460|0.5\n143461|0.41667\n143462|0.19444\n143463|0.375\n143464|0.18056\n143465|0.44444\n143466|0.375\n143467|0.097222\n143468|0.5\n143469|0.625\n143470|0.069444\n143471|0.5\n143472|0.43056\n143473|0.5\n143474|0.61111\n143475|0.23611\n143476|0.18056\n143477|0.26389\n143478|0.16667\n143479|0.47222\n143480|0.18056\n143481|0.27778\n143482|0.5\n143483|0.69444\n143484|0.5\n143485|0.52778\n143486|0.5\n143487|0.55556\n143488|0.65278\n143489|0.72222\n143490|0.88889\n143491|0.80556\n143492|0.69444\n143493|0.47222\n143494|0.20833\n143495|0.47222\n143496|0.47222\n143497|0.59722\n143498|0.52778\n143499|0.54167\n143500|0.5\n143501|0.52778\n143502|0.52778\n143503|0.52778\n143504|0.375\n143505|0.56944\n143506|0.5\n143507|0.5\n143508|0.5\n143509|0.097222\n143510|0.15278\n143511|0.13889\n143512|0.13889\n143513|0.055556\n143514|0.11111\n143515|0.375\n143516|0.5\n143517|0.19444\n143518|0.16667\n143519|0.375\n143520|0.30556\n143521|0.26389\n143522|0.34722\n143523|0.75\n143524|0.69444\n143525|0.68056\n143526|0.61111\n143527|0.47222\n143528|0.34722\n143529|0.41667\n143530|0.58333\n143531|0.47222\n143532|0.34722\n143533|0.33333\n143534|0.47222\n143535|0.38889\n143536|0.125\n143537|0.5\n143538|0.31944\n143539|0.65278\n143540|0.375\n143541|0.29167\n143542|0.5\n143543|0.15278\n143544|0.51389\n143545|0.30556\n143546|0.56944\n143547|0.13889\n143548|0.45833\n143549|0.5\n143550|0.5\n143551|0.5\n143552|0.70833\n143553|0.18056\n143554|0.51389\n143555|0.22222\n143556|0.58333\n143557|0.44444\n143558|0.25\n143559|0.38889\n143560|0.56944\n143561|0.23611\n143562|0.55556\n143563|0.5\n143564|0.27778\n143565|0.34722\n143566|0.375\n143567|0.31944\n143568|0.13889\n143569|0.5\n143570|0.5\n143571|0.5\n143572|0.27778\n143573|0.61111\n143574|0.5\n143575|0.45833\n143576|0.22222\n143577|0.5\n143578|0.55556\n143579|0.5\n143580|0.59722\n143581|0.5\n143582|0.61111\n143583|0.5\n143584|0.56944\n143585|0.5\n143586|0.65278\n143587|0.65278\n143588|0.56944\n143589|0.80556\n143590|0.45833\n143591|0.43056\n143592|0.5\n143593|0.16667\n143594|0.51389\n143595|0.5\n143596|0.47222\n143597|0.52778\n143598|0.56944\n143599|0.47222\n143600|0.65278\n143601|0.43056\n143602|0.47222\n143603|0.33333\n143604|0.5\n143605|0.625\n143606|0.375\n143607|0.5\n143608|0.5\n143609|0.58333\n143610|0.61111\n143611|0.34722\n143612|0.65278\n143613|0.625\n143614|0.52778\n143615|0.625\n143616|0.34722\n143617|0.31944\n143618|0.5\n143619|0.375\n143620|0.22222\n143621|0.44444\n143622|0.51389\n143623|0.375\n143624|0.23611\n143625|0.55556\n143626|0.22222\n143627|0.61111\n143628|0.25\n143629|0.45833\n143630|0.55556\n143631|0.16667\n143632|0.5\n143633|0.27778\n143634|0.15278\n143635|0.5\n143636|0.23611\n143637|0.5\n143638|0.5\n143639|0.5\n143640|0.5\n143641|0.5\n143642|0.375\n143643|0.23611\n143644|0.125\n143645|0.15278\n143646|0.5\n143647|0.5\n143648|0.48611\n143649|0.5\n143650|0.5\n143651|0.52778\n143652|0.5\n143653|0.47222\n143654|0.52778\n143655|0.59722\n143656|0.56944\n143657|0.45833\n143658|0.20833\n143659|0.65278\n143660|0.29167\n143661|0.72222\n143662|0.31944\n143663|0.45833\n143664|0.125\n143665|0.59722\n143666|0.38889\n143667|0.70833\n143668|0.5\n143669|0.31944\n143670|0.25\n143671|0.51389\n143672|0.5\n143673|0.5\n143674|0.43056\n143675|0.5\n143676|0.22222\n143677|0.59722\n143678|0.5\n143679|0.5\n143680|0.5\n143681|0.34722\n143682|0.44444\n143683|0.22222\n143684|0.45833\n143685|0.5\n143686|0.48611\n143687|0.48611\n143688|0.5\n143689|0.5\n143690|0.54167\n143691|0.52778\n143692|0.5\n143693|0.33333\n143694|0.54167\n143695|0.58333\n143696|0.56944\n143697|0.5\n143698|0.5\n143699|0.5\n143700|0.5\n143701|0.38889\n143702|0.31944\n143703|0.54167\n143704|0.30556\n143705|0.75\n143706|0.22222\n143707|0.33333\n143708|0.11111\n143709|0.44444\n143710|0.13889\n143711|0.33333\n143712|0.16667\n143713|0.26389\n143714|0.27778\n143715|0.25\n143716|0.375\n143717|0.20833\n143718|0.31944\n143719|0.31944\n143720|0.23611\n143721|0.30556\n143722|0.45833\n143723|0.31944\n143724|0.61111\n143725|0.61111\n143726|0.47222\n143727|0.45833\n143728|0.43056\n143729|0.61111\n143730|0.76389\n143731|0.5\n143732|0.48611\n143733|0.33333\n143734|0.26389\n143735|0.22222\n143736|0.27778\n143737|0.19444\n143738|0.61111\n143739|0.20833\n143740|0.041667\n143741|0.013889\n143742|0.68056\n143743|0.38889\n143744|0.33333\n143745|0.27778\n143746|0.13889\n143747|0.23611\n143748|0.16667\n143749|0.41667\n143750|0.055556\n143751|0.44444\n143752|0.23611\n143753|0.30556\n143754|0.54167\n143755|0.31944\n143756|0.36111\n143757|0.26389\n143758|0.27778\n143759|0.375\n143760|0.31944\n143761|0.027778\n143762|0.33333\n143763|0.30556\n143764|0.31944\n143765|0.013889\n143766|0.083333\n143767|0.23611\n143768|0.20833\n143769|0.40278\n143770|0.375\n143771|0.11111\n143772|0.23611\n143773|0.41667\n143774|0.069444\n143775|0.29167\n143776|0.25\n143777|0.54167\n143778|0.51389\n143779|0.40278\n143780|0.20833\n143781|0.22222\n143782|0.73611\n143783|0.66667\n143784|0.5\n143785|0.52778\n143786|0.25\n143787|0.22222\n143788|0.30556\n143789|0.34722\n143790|0.18056\n143791|0.23611\n143792|0.22222\n143793|0.31944\n143794|0.40278\n143795|0.23611\n143796|0.48611\n143797|0.5\n143798|0.30556\n143799|0.44444\n143800|0.20833\n143801|0.125\n143802|0.76389\n143803|0.31944\n143804|0.5\n143805|0.34722\n143806|0.5\n143807|0.5\n143808|0.5\n143809|0.30556\n143810|0.44444\n143811|0.26389\n143812|0.40278\n143813|0.55556\n143814|0.5\n143815|0.51389\n143816|0.5\n143817|0.55556\n143818|0.20833\n143819|0.16667\n143820|0.29167\n143821|0.22222\n143822|0.31944\n143823|0.38889\n143824|0.30556\n143825|0.375\n143826|0.375\n143827|0.5\n143828|0.40278\n143829|0.25\n143830|0.40278\n143831|0.30556\n143832|0.33333\n143833|0.29167\n143834|0.5\n143835|0.5\n143836|0.5\n143837|0.5\n143838|0.40278\n143839|0.31944\n143840|0.19444\n143841|0.097222\n143842|0.5\n143843|0.55556\n143844|0.16667\n143845|0.5\n143846|0.22222\n143847|0.38889\n143848|0.15278\n143849|0.22222\n143850|0.20833\n143851|0.083333\n143852|0.61111\n143853|0.48611\n143854|0.54167\n143855|0.59722\n143856|0.48611\n143857|0.19444\n143858|0.27778\n143859|0.23611\n143860|0.23611\n143861|0.43056\n143862|0.26389\n143863|0.5\n143864|0.47222\n143865|0.5\n143866|0.27778\n143867|0.5\n143868|0.45833\n143869|0.5\n143870|0.31944\n143871|0.43056\n143872|0.625\n143873|0.5\n143874|0.55556\n143875|0.27778\n143876|0.5\n143877|0.5\n143878|0.33333\n143879|0.13889\n143880|0.36111\n143881|0.19444\n143882|0.51389\n143883|0.29167\n143884|0.38889\n143885|0.18056\n143886|0.38889\n143887|0.63889\n143888|0.54167\n143889|0.55556\n143890|0.54167\n143891|0.5\n143892|0.31944\n143893|0.47222\n143894|0.51389\n143895|0.27778\n143896|0.48611\n143897|0.55556\n143898|0.41667\n143899|0.5\n143900|0.19444\n143901|0.76389\n143902|0.16667\n143903|0.52778\n143904|0.66667\n143905|0.33333\n143906|0.45833\n143907|0.31944\n143908|0.47222\n143909|0.41667\n143910|0.45833\n143911|0.26389\n143912|0.56944\n143913|0.75\n143914|0.66667\n143915|0.55556\n143916|0.375\n143917|0.41667\n143918|0.43056\n143919|0.25\n143920|0.44444\n143921|0.31944\n143922|0.45833\n143923|0.34722\n143924|0.31944\n143925|0.22222\n143926|0.44444\n143927|0.19444\n143928|0.51389\n143929|0.26389\n143930|0.25\n143931|0.5\n143932|0.5\n143933|0.5\n143934|0.51389\n143935|0.36111\n143936|0.29167\n143937|0.41667\n143938|0.22222\n143939|0.5\n143940|0.73611\n143941|0.68056\n143942|0.65278\n143943|0.33333\n143944|0.20833\n143945|0.26389\n143946|0.16667\n143947|0.19444\n143948|0.26389\n143949|0.5\n143950|0.27778\n143951|0.055556\n143952|0.34722\n143953|0.5\n143954|0.26389\n143955|0.27778\n143956|0.72222\n143957|0.63889\n143958|0.66667\n143959|0.20833\n143960|0.38889\n143961|0.38889\n143962|0.47222\n143963|0.51389\n143964|0.41667\n143965|0.22222\n143966|0.5\n143967|0.5\n143968|0.20833\n143969|0.34722\n143970|0.30556\n143971|0.26389\n143972|0.16667\n143973|0.27778\n143974|0.44444\n143975|0.5\n143976|0.5\n143977|0.48611\n143978|0.5\n143979|0.5\n143980|0.5\n143981|0.52778\n143982|0.11111\n143983|0.625\n143984|0.51389\n143985|0.5\n143986|0.55556\n143987|0.055556\n143988|0.26389\n143989|0.38889\n143990|0.5\n143991|0.33333\n143992|0.31944\n143993|0.33333\n143994|0.31944\n143995|0.51389\n143996|0.5\n143997|0.54167\n143998|0.16667\n143999|0.27778\n144000|0.33333\n144001|0.15278\n144002|0.31944\n144003|0.19444\n144004|0.25\n144005|0.055556\n144006|0.375\n144007|0.19444\n144008|0.16667\n144009|0.13889\n144010|0.013889\n144011|0\n144012|0.34722\n144013|0.18056\n144014|0.38889\n144015|0.22222\n144016|0.5\n144017|0.38889\n144018|0.20833\n144019|0.18056\n144020|0.125\n144021|0.19444\n144022|0\n144023|0.055556\n144024|0.22222\n144025|0.097222\n144026|0.5\n144027|0.5\n144028|0.61111\n144029|0.5\n144030|0.375\n144031|0.26389\n144032|0.41667\n144033|0.5\n144034|0.5\n144035|0.47222\n144036|0.22222\n144037|0.5\n144038|0.5\n144039|0.27778\n144040|0.5\n144041|0.5\n144042|0.72222\n144043|0.51389\n144044|0.5\n144045|0.5\n144046|0.5\n144047|0.45833\n144048|0.15278\n144049|0.26389\n144050|0.5\n144051|0.40278\n144052|0.5\n144053|0.47222\n144054|0.55556\n144055|0.375\n144056|0.56944\n144057|0.5\n144058|0.38889\n144059|0.5\n144060|0.5\n144061|0.5\n144062|0.51389\n144063|0.13889\n144064|0.55556\n144065|0.5\n144066|0.40278\n144067|0.19444\n144068|0.13889\n144069|0.51389\n144070|0.15278\n144071|0.069444\n144072|0.58333\n144073|0.5\n144074|0.5\n144075|0.5\n144076|0.5\n144077|0.19444\n144078|0.22222\n144079|0.5\n144080|0.47222\n144081|0.54167\n144082|0.27778\n144083|0.5\n144084|0.5\n144085|0.72222\n144086|0.40278\n144087|0.48611\n144088|0.61111\n144089|0.48611\n144090|0.66667\n144091|0.38889\n144092|0.5\n144093|0.51389\n144094|0.5\n144095|0.5\n144096|0.27778\n144097|0.097222\n144098|0.16667\n144099|0.11111\n144100|0.51389\n144101|0.29167\n144102|0.5\n144103|0.52778\n144104|0.54167\n144105|0.59722\n144106|0.44444\n144107|0.5\n144108|0.5\n144109|0.055556\n144110|0.65278\n144111|0.27778\n144112|0.55556\n144113|0.48611\n144114|0.54167\n144115|0.625\n144116|0.5\n144117|0.47222\n144118|0.5\n144119|0.5\n144120|0.38889\n144121|0.5\n144122|0.68056\n144123|0.51389\n144124|0.45833\n144125|0.5\n144126|0.5\n144127|0.56944\n144128|0.5\n144129|0.48611\n144130|0.84722\n144131|0.83333\n144132|0.5\n144133|0.5\n144134|0.055556\n144135|0.15278\n144136|0.27778\n144137|0.55556\n144138|0.22222\n144139|0.52778\n144140|0.31944\n144141|0.5\n144142|0.38889\n144143|0.5\n144144|0.5\n144145|0.5\n144146|0.5\n144147|0.47222\n144148|0.5\n144149|0.43056\n144150|0.23611\n144151|0.19444\n144152|0.59722\n144153|0.45833\n144154|0.5\n144155|0.51389\n144156|0.58333\n144157|0.25\n144158|0.66667\n144159|0.5\n144160|0.27778\n144161|0.63889\n144162|0.70833\n144163|0.48611\n144164|0.26389\n144165|0.25\n144166|0.61111\n144167|0.52778\n144168|0.5\n144169|0.5\n144170|0.59722\n144171|0.5\n144172|0.76389\n144173|0.48611\n144174|0.5\n144175|0.5\n144176|0.31944\n144177|0.76389\n144178|0.625\n144179|0.70833\n144180|0.59722\n144181|0.25\n144182|0.18056\n144183|0.26389\n144184|0.44444\n144185|0.54167\n144186|0.5\n144187|0.33333\n144188|0.48611\n144189|0.83333\n144190|0.5\n144191|0.5\n144192|0.5\n144193|0.5\n144194|0.5\n144195|0.5\n144196|0.5\n144197|0.20833\n144198|0.65278\n144199|0.77778\n144200|0.70833\n144201|0.56944\n144202|0.33333\n144203|0.31944\n144204|0.51389\n144205|0.51389\n144206|0.5\n144207|0.52778\n144208|0.5\n144209|0.43056\n144210|0.5\n144211|0.15278\n144212|0.34722\n144213|0.5\n144214|0.5\n144215|0.51389\n144216|0.33333\n144217|0.27778\n144218|0.40278\n144219|0.5\n144220|0.75\n144221|0.65278\n144222|0.63889\n144223|0.44444\n144224|0.55556\n144225|0.68056\n144226|0.47222\n144227|0.22222\n144228|0.38889\n144229|0.25\n144230|0.5\n144231|0.5\n144232|0.5\n144233|0.5\n144234|0.16667\n144235|0.52778\n144236|0.5\n144237|0.34722\n144238|0.29167\n144239|0.5\n144240|0.5\n144241|0.29167\n144242|0.27778\n144243|0.23611\n144244|0.56944\n144245|0.66667\n144246|0.65278\n144247|0.58333\n144248|0.69444\n144249|0.375\n144250|0.5\n144251|0.5\n144252|0.5\n144253|0.5\n144254|0.5\n144255|0.5\n144256|0.48611\n144257|0.5\n144258|0.5\n144259|0.5\n144260|0.44444\n144261|0.54167\n144262|0.5\n144263|0.52778\n144264|0.51389\n144265|0.5\n144266|0.5\n144267|0.38889\n144268|0.43056\n144269|0.5\n144270|0.81944\n144271|0.5\n144272|0.54167\n144273|0.48611\n144274|0.5\n144275|0.5\n144276|0.25\n144277|0.5\n144278|0.44444\n144279|0.48611\n144280|0.51389\n144281|0.65278\n144282|0.45833\n144283|0.43056\n144284|0.5\n144285|0.5\n144286|0.56944\n144287|0.47222\n144288|0.45833\n144289|0.59722\n144290|0.23611\n144291|0.19444\n144292|0.5\n144293|0.5\n144294|0.51389\n144295|0.38889\n144296|0.34722\n144297|0.5\n144298|0.375\n144299|0.59722\n144300|0.5\n144301|0.44444\n144302|0.13889\n144303|0.23611\n144304|0.38889\n144305|0.47222\n144306|0.44444\n144307|0.51389\n144308|0.44444\n144309|0.29167\n144310|0.18056\n144311|0.30556\n144312|0.44444\n144313|0.27778\n144314|0.55556\n144315|0.48611\n144316|0.48611\n144317|0.27778\n144318|0.51389\n144319|0.27778\n144320|0.25\n144321|0.20833\n144322|0.38889\n144323|0.36111\n144324|0.18056\n144325|0.083333\n144326|0.38889\n144327|0.55556\n144328|0.44444\n144329|0.5\n144330|0.5\n144331|0.5\n144332|0.40278\n144333|0.5\n144334|0.5\n144335|0.45833\n144336|0.5\n144337|0.5\n144338|0.45833\n144339|0.5\n144340|0.47222\n144341|0.375\n144342|0.45833\n144343|0.58333\n144344|0.31944\n144345|0.59722\n144346|0.5\n144347|0.5\n144348|0.55556\n144349|0.23611\n144350|0.51389\n144351|0.5\n144352|0.5\n144353|0.58333\n144354|0.25\n144355|0.069444\n144356|0.44444\n144357|0.22222\n144358|0.041667\n144359|0.5\n144360|0.5\n144361|0.51389\n144362|0.45833\n144363|0.55556\n144364|0.5\n144365|0.5\n144366|0.5\n144367|0.5\n144368|0.36111\n144369|0.5\n144370|0.55556\n144371|0.75\n144372|0.66667\n144373|0.68056\n144374|0.38889\n144375|0.34722\n144376|0.5\n144377|0.5\n144378|0.44444\n144379|0.36111\n144380|0.33333\n144381|0.55556\n144382|0.52778\n144383|0.54167\n144384|0.5\n144385|0.40278\n144386|0.56944\n144387|0.43056\n144388|0.27778\n144389|0.20833\n144390|0.52778\n144391|0.55556\n144392|0.63889\n144393|0.5\n144394|0.5\n144395|0.5\n144396|0.5\n144397|0.31944\n144398|0.5\n144399|0.5\n144400|0.5\n144401|0.30556\n144402|0.5\n144403|0.47222\n144404|0.5\n144405|0.56944\n144406|0.083333\n144407|0.5\n144408|0.31944\n144409|0.38889\n144410|0.26389\n144411|0.5\n144412|0.5\n144413|0.5\n144414|0.33333\n144415|0.34722\n144416|0.45833\n144417|0.5\n144418|0.5\n144419|0.5\n144420|0.54167\n144421|0.47222\n144422|0.5\n144423|0.5\n144424|0.90278\n144425|0.5\n144426|0.5\n144427|0.5\n144428|0.5\n144429|0.26389\n144430|0.5\n144431|0.51389\n144432|0.5\n144433|0.5\n144434|0.43056\n144435|0.41667\n144436|0.5\n144437|0.5\n144438|0.125\n144439|0.5\n144440|0.5\n144441|0.20833\n144442|0.55556\n144443|0.52778\n144444|0.5\n144445|0.5\n144446|0.5\n144447|0.52778\n144448|0.5\n144449|0.47222\n144450|0.54167\n144451|0.5\n144452|0.5\n144453|0.34722\n144454|0.5\n144455|0.75\n144456|0.72222\n144457|0.58333\n144458|0.31944\n144459|0.5\n144460|0.52778\n144461|0.59722\n144462|0.52778\n144463|0.43056\n144464|0.13889\n144465|0.27778\n144466|0.22222\n144467|0.5\n144468|0.48611\n144469|0.61111\n144470|0.5\n144471|0.41667\n144472|0.29167\n144473|0.29167\n144474|0.22222\n144475|0.18056\n144476|0.18056\n144477|0.54167\n144478|0.5\n144479|0.56944\n144480|0.56944\n144481|0.5\n144482|0.44444\n144483|0.56944\n144484|0.5\n144485|0.51389\n144486|0.5\n144487|0.51389\n144488|0.48611\n144489|0.5\n144490|0.51389\n144491|0.5\n144492|0.44444\n144493|0.36111\n144494|0.5\n144495|0.5\n144496|0.5\n144497|0.54167\n144498|0.16667\n144499|0.5\n144500|0.375\n144501|0.15278\n144502|0.59722\n144503|0.5\n144504|0.69444\n144505|0.54167\n144506|0.47222\n144507|0.27778\n144508|0.40278\n144509|0.5\n144510|0.48611\n144511|0.5\n144512|0.38889\n144513|0.29167\n144514|0.52778\n144515|0.5\n144516|0.5\n144517|0.72222\n144518|0.83333\n144519|0.40278\n144520|0.55556\n144521|0.54167\n144522|0.5\n144523|0.5\n144524|0.40278\n144525|0.30556\n144526|0.23611\n144527|0.5\n144528|0.375\n144529|0.44444\n144530|0.52778\n144531|0.41667\n144532|0.45833\n144533|0.5\n144534|0.5\n144535|0.38889\n144536|0.55556\n144537|0.5\n144538|0.5\n144539|0.54167\n144540|0.125\n144541|0.36111\n144542|0.125\n144543|0.083333\n144544|0.5\n144545|0.40278\n144546|0.5\n144547|0.5\n144548|0.5\n144549|0.5\n144550|0.5\n144551|0.375\n144552|0.36111\n144553|0.51389\n144554|0.59722\n144555|0.52778\n144556|0.5\n144557|0.34722\n144558|0.5\n144559|0.34722\n144560|0.16667\n144561|0.44444\n144562|0.20833\n144563|0.23611\n144564|0.59722\n144565|0.54167\n144566|0.38889\n144567|0.55556\n144568|0.40278\n144569|0.5\n144570|0.31944\n144571|0.55556\n144572|0.34722\n144573|0.20833\n144574|0.26389\n144575|0.34722\n144576|0.26389\n144577|0.055556\n144578|0.59722\n144579|0.36111\n144580|0.61111\n144581|0.47222\n144582|0.083333\n144583|0.097222\n144584|0.47222\n144585|0.45833\n144586|0.40278\n144587|0.34722\n144588|0.16667\n144589|0.20833\n144590|0.5\n144591|0.5\n144592|0.52778\n144593|0.41667\n144594|0.59722\n144595|0.23611\n144596|0.22222\n144597|0.5\n144598|0.23611\n144599|0.69444\n144600|0.58333\n144601|0.27778\n144602|0.26389\n144603|0.5\n144604|0.43056\n144605|0.5\n144606|0.25\n144607|0.29167\n144608|0.19444\n144609|0.15278\n144610|0.5\n144611|0.5\n144612|0.63889\n144613|0.47222\n144614|0.44444\n144615|0.27778\n144616|0.5\n144617|0.51389\n144618|0.5\n144619|0.38889\n144620|0.45833\n144621|0.375\n144622|0.27778\n144623|0.26389\n144624|0.5\n144625|0.5\n144626|0.11111\n144627|0.19444\n144628|0.5\n144629|0.5\n144630|0.27778\n144631|0.23611\n144632|0.5\n144633|0.5\n144634|0.34722\n144635|0.26389\n144636|0.41667\n144637|0.5\n144638|0.18056\n144639|0.22222\n144640|0.25\n144641|0.22222\n144642|0.625\n144643|0.5\n144644|0.5\n144645|0.26389\n144646|0.26389\n144647|0.625\n144648|0.55556\n144649|0.30556\n144650|0.25\n144651|0.23611\n144652|0.19444\n144653|0.20833\n144654|0.68056\n144655|0.69444\n144656|0.59722\n144657|0.61111\n144658|0.23611\n144659|0.27778\n144660|0.30556\n144661|0.52778\n144662|0.47222\n144663|0.5\n144664|0.68056\n144665|0.5\n144666|0.59722\n144667|0.11111\n144668|0.43056\n144669|0.45833\n144670|0.36111\n144671|0.38889\n144672|0.33333\n144673|0.5\n144674|0.41667\n144675|0.55556\n144676|0.26389\n144677|0.5\n144678|0.52778\n144679|0.31944\n144680|0.47222\n144681|0.56944\n144682|0.45833\n144683|0.5\n144684|0.5\n144685|0.5\n144686|0.5\n144687|0.70833\n144688|0.61111\n144689|0.70833\n144690|0.5\n144691|0.5\n144692|0.5\n144693|0.5\n144694|0.47222\n144695|0.5\n144696|0.875\n144697|0.5\n144698|0.375\n144699|0.5\n144700|0.5\n144701|0.5\n144702|0.52778\n144703|0.45833\n144704|0.23611\n144705|0.44444\n144706|0.44444\n144707|0.31944\n144708|0.31944\n144709|0.26389\n144710|0.29167\n144711|0.25\n144712|0.5\n144713|0.5\n144714|0.5\n144715|0.81944\n144716|0.88889\n144717|0.51389\n144718|0.5\n144719|0.86111\n144720|0.77778\n144721|0.70833\n144722|0.36111\n144723|0.61111\n144724|0.26389\n144725|0.27778\n144726|0.45833\n144727|0.041667\n144728|0.13889\n144729|0.13889\n144730|0.47222\n144731|0.27778\n144732|0.13889\n144733|0.5\n144734|0.5\n144735|0.40278\n144736|0.5\n144737|0.5\n144738|0.52778\n144739|0.375\n144740|0.38889\n144741|0.33333\n144742|0.18056\n144743|0.097222\n144744|0.18056\n144745|0.22222\n144746|0.19444\n144747|0.54167\n144748|0.5\n144749|0.59722\n144750|0.56944\n144751|0.44444\n144752|0.34722\n144753|0.51389\n144754|0.58333\n144755|0.56944\n144756|0.22222\n144757|0.22222\n144758|0.375\n144759|0.5\n144760|0.48611\n144761|0.36111\n144762|0.23611\n144763|0.52778\n144764|0.44444\n144765|0.22222\n144766|0.5\n144767|0.5\n144768|0.5\n144769|0.73611\n144770|0.47222\n144771|0.56944\n144772|0.56944\n144773|0.47222\n144774|0.56944\n144775|0.5\n144776|0.19444\n144777|0.58333\n144778|0.5\n144779|0.19444\n144780|0.5\n144781|0.55556\n144782|0.5\n144783|0.5\n144784|0.45833\n144785|0.15278\n144786|0.31944\n144787|0.30556\n144788|0.34722\n144789|0.22222\n144790|0.52778\n144791|0.27778\n144792|0.38889\n144793|0.20833\n144794|0.47222\n144795|0.43056\n144796|0.54167\n144797|0.36111\n144798|0.47222\n144799|0.22222\n144800|0.55556\n144801|0.40278\n144802|0.51389\n144803|0.52778\n144804|0.66667\n144805|0.45833\n144806|0.44444\n144807|0.54167\n144808|0.33333\n144809|0.55556\n144810|0.66667\n144811|0.5\n144812|0.23611\n144813|0.56944\n144814|0.23611\n144815|0.5\n144816|0.26389\n144817|0.44444\n144818|0.5\n144819|0.5\n144820|0.625\n144821|0.68056\n144822|0.5\n144823|0.27778\n144824|0.51389\n144825|0.41667\n144826|0.40278\n144827|0.30556\n144828|0.27778\n144829|0.73611\n144830|0.76389\n144831|0.56944\n144832|0.11111\n144833|0.5\n144834|0.44444\n144835|0.43056\n144836|0.5\n144837|0.41667\n144838|0.33333\n144839|0.5\n144840|0.5\n144841|0.40278\n144842|0.36111\n144843|0.31944\n144844|0.20833\n144845|0.20833\n144846|0.55556\n144847|0.56944\n144848|0.30556\n144849|0.47222\n144850|0.43056\n144851|0.22222\n144852|0.5\n144853|0.59722\n144854|0.5\n144855|0.5\n144856|0.41667\n144857|0.5\n144858|0.41667\n144859|0.5\n144860|0.5\n144861|0.48611\n144862|0.45833\n144863|0.375\n144864|0.5\n144865|0.5\n144866|0.47222\n144867|0.54167\n144868|0.5\n144869|0.5\n144870|0.38889\n144871|0.5\n144872|0.75\n144873|0.63889\n144874|0.43056\n144875|0.34722\n144876|0.5\n144877|0.41667\n144878|0.5\n144879|0.5\n144880|0.5\n144881|0.30556\n144882|0.5\n144883|0.25\n144884|0.5\n144885|0.43056\n144886|0.29167\n144887|0.5\n144888|0.5\n144889|0.5\n144890|0.5\n144891|0.52778\n144892|0.47222\n144893|0.68056\n144894|0.45833\n144895|0.375\n144896|0.5\n144897|0.38889\n144898|0.23611\n144899|0.40278\n144900|0.59722\n144901|0.19444\n144902|0.41667\n144903|0.41667\n144904|0.56944\n144905|0.23611\n144906|0.47222\n144907|0.45833\n144908|0.47222\n144909|0.23611\n144910|0.30556\n144911|0.30556\n144912|0.23611\n144913|0.125\n144914|0.13889\n144915|0.083333\n144916|0.027778\n144917|0.41667\n144918|0.43056\n144919|0.5\n144920|0.44444\n144921|0.26389\n144922|0.44444\n144923|0.30556\n144924|0.125\n144925|0.125\n144926|0.41667\n144927|0.125\n144928|0.33333\n144929|0.31944\n144930|0.5\n144931|0.43056\n144932|0.36111\n144933|0.30556\n144934|0.20833\n144935|0.23611\n144936|0.23611\n144937|0.23611\n144938|0.34722\n144939|0.18056\n144940|0.27778\n144941|0.20833\n144942|0.30556\n144943|0.58333\n144944|0.56944\n144945|0.47222\n144946|0.20833\n144947|0.33333\n144948|0.55556\n144949|0.5\n144950|0.5\n144951|0.5\n144952|0.43056\n144953|0.48611\n144954|0.59722\n144955|0.5\n144956|0.5\n144957|0.5\n144958|0.625\n144959|0.45833\n144960|0.55556\n144961|0.38889\n144962|0.75\n144963|0.51389\n144964|0.25\n144965|0.25\n144966|0.54167\n144967|0.40278\n144968|0.47222\n144969|0.5\n144970|0.43056\n144971|0.5\n144972|0.44444\n144973|0.16667\n144974|0.11111\n144975|0.19444\n144976|0.5\n144977|0.33333\n144978|0.23611\n144979|0.52778\n144980|0.30556\n144981|0.47222\n144982|0.125\n144983|0.23611\n144984|0.33333\n144985|0.48611\n144986|0.26389\n144987|0.22222\n144988|0.13889\n144989|0.18056\n144990|0.5\n144991|0.55556\n144992|0.48611\n144993|0.36111\n144994|0.40278\n144995|0.61111\n144996|0.5\n144997|0.5\n144998|0.65278\n144999|0.47222\n145000|0.27778\n145001|0.29167\n145002|0.34722\n145003|0.20833\n145004|0.125\n145005|0.20833\n145006|0.58333\n145007|0.5\n145008|0.625\n145009|0.5\n145010|0.61111\n145011|0.48611\n145012|0.5\n145013|0.5\n145014|0.55556\n145015|0.5\n145016|0.5\n145017|0.5\n145018|0.55556\n145019|0.52778\n145020|0.5\n145021|0.33333\n145022|0.43056\n145023|0.44444\n145024|0.48611\n145025|0.45833\n145026|0.22222\n145027|0.23611\n145028|0.23611\n145029|0.5\n145030|0.38889\n145031|0.47222\n145032|0.81944\n145033|0.72222\n145034|0.77778\n145035|0.41667\n145036|0.625\n145037|0.69444\n145038|0.5\n145039|0.44444\n145040|0.13889\n145041|0.13889\n145042|0.52778\n145043|0.5\n145044|0.54167\n145045|0.375\n145046|0.54167\n145047|0.5\n145048|0.5\n145049|0.5\n145050|0.61111\n145051|0.5\n145052|0.27778\n145053|0.81944\n145054|0.52778\n145055|0.58333\n145056|0.36111\n145057|0.40278\n145058|0.5\n145059|0.5\n145060|0.5\n145061|0.38889\n145062|0.5\n145063|0.5\n145064|0.5\n145065|0.5\n145066|0.5\n145067|0.56944\n145068|0.375\n145069|0.5\n145070|0.5\n145071|0.51389\n145072|0.041667\n145073|0.40278\n145074|0.59722\n145075|0.58333\n145076|0.27778\n145077|0.5\n145078|0.5\n145079|0.45833\n145080|0.5\n145081|0.375\n145082|0.51389\n145083|0.5\n145084|0.5\n145085|0.41667\n145086|0.51389\n145087|0.69444\n145088|0.79167\n145089|0.36111\n145090|0.44444\n145091|0.38889\n145092|0.5\n145093|0.5\n145094|0.55556\n145095|0.40278\n145096|0.56944\n145097|0.59722\n145098|0.22222\n145099|0.375\n145100|0.22222\n145101|0.36111\n145102|0.097222\n145103|0.5\n145104|0.5\n145105|0.38889\n145106|0.61111\n145107|0.5\n145108|0.51389\n145109|0.5\n145110|0.5\n145111|0.54167\n145112|0.51389\n145113|0.5\n145114|0.5\n145115|0.5\n145116|0.52778\n145117|0.51389\n145118|0.5\n145119|0.47222\n145120|0.31944\n145121|0.45833\n145122|0.41667\n145123|0.61111\n145124|0.5\n145125|0.5\n145126|0.5\n145127|0.38889\n145128|0.43056\n145129|0.51389\n145130|0.44444\n145131|0.375\n145132|0.13889\n145133|0.5\n145134|0.5\n145135|0.58333\n145136|0.5\n145137|0.61111\n145138|0.5\n145139|0.54167\n145140|0.38889\n145141|0.20833\n145142|0.34722\n145143|0.38889\n145144|0.47222\n145145|0.45833\n145146|0.27778\n145147|0.33333\n145148|0.44444\n145149|0.15278\n145150|0.19444\n145151|0.16667\n145152|0.54167\n145153|0.44444\n145154|0.16667\n145155|0.31944\n145156|0.40278\n145157|0.625\n145158|0.25\n145159|0.33333\n145160|0.25\n145161|0.125\n145162|0.31944\n145163|0.27778\n145164|0.31944\n145165|0.47222\n145166|0.43056\n145167|0.59722\n145168|0.25\n145169|0.25\n145170|0.55556\n145171|0.58333\n145172|0.36111\n145173|0.38889\n145174|0.41667\n145175|0.33333\n145176|0.56944\n145177|0.31944\n145178|0.125\n145179|0.25\n145180|0.36111\n145181|0.22222\n145182|0.33333\n145183|0.56944\n145184|0.31944\n145185|0.13889\n145186|0.38889\n145187|0.26389\n145188|0.5\n145189|0.31944\n145190|0.5\n145191|0.31944\n145192|0.29167\n145193|0.52778\n145194|0.20833\n145195|0.13889\n145196|0.65278\n145197|0.22222\n145198|0.44444\n145199|0.56944\n145200|0.11111\n145201|0\n145202|0.33333\n145203|0.15278\n145204|0.375\n145205|0.47222\n145206|0.22222\n145207|0.5\n145208|0.5\n145209|0.30556\n145210|0.31944\n145211|0.72222\n145212|0.25\n145213|0.51389\n145214|0.58333\n145215|0.45833\n145216|0.73611\n145217|0.5\n145218|0.66667\n145219|0.5\n145220|0.68056\n145221|0.58333\n145222|0.72222\n145223|0.86111\n145224|0.83333\n145225|0.30556\n145226|0.29167\n145227|0.22222\n145228|0.16667\n145229|0.36111\n145230|0.5\n145231|0.59722\n145232|0.15278\n145233|0.26389\n145234|0.44444\n145235|0.26389\n145236|0.13889\n145237|0.34722\n145238|0.20833\n145239|0.36111\n145240|0.33333\n145241|0.26389\n145242|0.20833\n145243|0.27778\n145244|0.19444\n145245|0.19444\n145246|0.055556\n145247|0.34722\n145248|0.18056\n145249|0.55556\n145250|0.5\n145251|0.26389\n145252|0.66667\n145253|0.5\n145254|0.44444\n145255|0.375\n145256|0.375\n145257|0.5\n145258|0.41667\n145259|0.27778\n145260|0.25\n145261|0.55556\n145262|0.20833\n145263|0.30556\n145264|0.25\n145265|0.625\n145266|0.22222\n145267|0.30556\n145268|0.70833\n145269|0.54167\n145270|0.55556\n145271|0.55556\n145272|0.73611\n145273|0.23611\n145274|0.26389\n145275|0.5\n145276|0.31944\n145277|0.20833\n145278|0.18056\n145279|0.20833\n145280|0.48611\n145281|0.5\n145282|0.51389\n145283|0.5\n145284|0.5\n145285|0.5\n145286|0.5\n145287|0.5\n145288|0.5\n145289|0.5\n145290|0.52778\n145291|0.38889\n145292|0.56944\n145293|0.5\n145294|0.52778\n145295|0.47222\n145296|0.5\n145297|0.34722\n145298|0.70833\n145299|0.75\n145300|0.47222\n145301|0.5\n145302|0.48611\n145303|0.20833\n145304|0.5\n145305|0.30556\n145306|0.38889\n145307|0.83333\n145308|0.30556\n145309|0.23611\n145310|0.19444\n145311|0.38889\n145312|0.27778\n145313|0.30556\n145314|0.52778\n145315|0.25\n145316|0.34722\n145317|0.11111\n145318|0.16667\n145319|0.30556\n145320|0.43056\n145321|0.26389\n145322|0.22222\n145323|0.5\n145324|0.44444\n145325|0.5\n145326|0.16667\n145327|0.5\n145328|0.5\n145329|0.5\n145330|0.38889\n145331|0.38889\n145332|0.48611\n145333|0.61111\n145334|0.63889\n145335|0.45833\n145336|0.45833\n145337|0.5\n145338|0.027778\n145339|0.19444\n145340|0.5\n145341|0.45833\n145342|0.29167\n145343|0.23611\n145344|0.26389\n145345|0.23611\n145346|0.23611\n145347|0.5\n145348|0.43056\n145349|0.5\n145350|0.44444\n145351|0.5\n145352|0.54167\n145353|0.125\n145354|0.27778\n145355|0.63889\n145356|0.61111\n145357|0.40278\n145358|0.375\n145359|0.65278\n145360|0.52778\n145361|0.63889\n145362|0.5\n145363|0.44444\n145364|0.38889\n145365|0.38889\n145366|0.36111\n145367|0.44444\n145368|0.5\n145369|0.27778\n145370|0.33333\n145371|0.16667\n145372|0.61111\n145373|0.23611\n145374|0.26389\n145375|0.375\n145376|0.68056\n145377|0.68056\n145378|0.31944\n145379|0.5\n145380|0.33333\n145381|0.47222\n145382|0.34722\n145383|0.375\n145384|0.5\n145385|0.70833\n145386|0.55556\n145387|0.5\n145388|0.38889\n145389|0.52778\n145390|0.56944\n145391|0.38889\n145392|0.375\n145393|0.20833\n145394|0.36111\n145395|0.45833\n145396|0.22222\n145397|0.5\n145398|0.38889\n145399|0.36111\n145400|0.34722\n145401|0.5\n145402|0.41667\n145403|0.51389\n145404|0.45833\n145405|0.5\n145406|0.34722\n145407|0.56944\n145408|0.375\n145409|0.44444\n145410|0.29167\n145411|0.51389\n145412|0.23611\n145413|0.55556\n145414|0.27778\n145415|0.31944\n145416|0.27778\n145417|0.75\n145418|0.66667\n145419|0.30556\n145420|0.5\n145421|0.36111\n145422|0.5\n145423|0.055556\n145424|0.55556\n145425|0.45833\n145426|0.51389\n145427|0.27778\n145428|0.48611\n145429|0.19444\n145430|0.44444\n145431|0.36111\n145432|0.54167\n145433|0.22222\n145434|0.48611\n145435|0.22222\n145436|0.5\n145437|0.38889\n145438|0.31944\n145439|0.375\n145440|0.097222\n145441|0.055556\n145442|0.59722\n145443|0.30556\n145444|0.5\n145445|0.33333\n145446|0.66667\n145447|0.38889\n145448|0.36111\n145449|0.51389\n145450|0.58333\n145451|0.27778\n145452|0.31944\n145453|0.40278\n145454|0.34722\n145455|0.20833\n145456|0.33333\n145457|0.25\n145458|0.81944\n145459|0.5\n145460|0.5\n145461|0.5\n145462|0.5\n145463|0.16667\n145464|0.375\n145465|0.38889\n145466|0.54167\n145467|0.27778\n145468|0.5\n145469|0.5\n145470|0.5\n145471|0.36111\n145472|0.13889\n145473|0\n145474|0.5\n145475|0.5\n145476|0.5\n145477|0.5\n145478|0.40278\n145479|0.5\n145480|0.5\n145481|0.19444\n145482|0.23611\n145483|0.45833\n145484|0.5\n145485|0.5\n145486|0.38889\n145487|0.52778\n145488|0.5\n145489|0.5\n145490|0.47222\n145491|0.5\n145492|0.44444\n145493|0.36111\n145494|0.29167\n145495|0.43056\n145496|0.5\n145497|0.83333\n145498|0.56944\n145499|0.5\n145500|0.38889\n145501|0.30556\n145502|0.16667\n145503|0.31944\n145504|0.27778\n145505|0.59722\n145506|0.55556\n145507|0.20833\n145508|0.54167\n145509|0.5\n145510|0.41667\n145511|0.29167\n145512|0.33333\n145513|0.38889\n145514|0.31944\n145515|0.5\n145516|0.47222\n145517|0.29167\n145518|0.34722\n145519|0.33333\n145520|0.41667\n145521|0.48611\n145522|0.5\n145523|0.51389\n145524|0.5\n145525|0.58333\n145526|0.58333\n145527|0.5\n145528|0.58333\n145529|0.5\n145530|0.19444\n145531|0.5\n145532|0.41667\n145533|0.5\n145534|0.43056\n145535|0.45833\n145536|0.27778\n145537|0.47222\n145538|0.44444\n145539|0.44444\n145540|0.13889\n145541|0.5\n145542|0.5\n145543|0.51389\n145544|0.52778\n145545|0.44444\n145546|0.23611\n145547|0.58333\n145548|0.5\n145549|0.56944\n145550|0.44444\n145551|0.55556\n145552|0.5\n145553|0.5\n145554|0.5\n145555|0.5\n145556|0.5\n145557|0.61111\n145558|0.125\n145559|0.23611\n145560|0.38889\n145561|0.375\n145562|0.5\n145563|0.5\n145564|0.65278\n145565|0.5\n145566|0.55556\n145567|0.47222\n145568|0.5\n145569|0.44444\n145570|0.5\n145571|0.5\n145572|0.5\n145573|0.5\n145574|0.55556\n145575|0.375\n145576|0.5\n145577|0.31944\n145578|0.055556\n145579|0.31944\n145580|0.20833\n145581|0.48611\n145582|0.54167\n145583|0.52778\n145584|0.5\n145585|0.5\n145586|0.47222\n145587|0.44444\n145588|0.47222\n145589|0.29167\n145590|0.23611\n145591|0.26389\n145592|0.5\n145593|0.5\n145594|0.48611\n145595|0.61111\n145596|0.83333\n145597|0.30556\n145598|0.51389\n145599|0.30556\n145600|0.54167\n145601|0.125\n145602|0.27778\n145603|0.27778\n145604|0.47222\n145605|0.5\n145606|0.16667\n145607|0.18056\n145608|0.16667\n145609|0.33333\n145610|0.055556\n145611|0.16667\n145612|0.013889\n145613|0.083333\n145614|0.41667\n145615|0.22222\n145616|0.23611\n145617|0.19444\n145618|0.5\n145619|0.375\n145620|0.27778\n145621|0.33333\n145622|0.22222\n145623|0.31944\n145624|0.055556\n145625|0.625\n145626|0.66667\n145627|0.61111\n145628|0.65278\n145629|0.20833\n145630|0.5\n145631|0.33333\n145632|0.43056\n145633|0.5\n145634|0.5\n145635|0.5\n145636|0.45833\n145637|0.5\n145638|0.47222\n145639|0.5\n145640|0.58333\n145641|0.5\n145642|0.5\n145643|0.79167\n145644|0.84722\n145645|0.27778\n145646|0.40278\n145647|0.52778\n145648|0.41667\n145649|0.5\n145650|0.27778\n145651|0.18056\n145652|0.5\n145653|0.66667\n145654|0.5\n145655|0.43056\n145656|0.5\n145657|0.40278\n145658|0.5\n145659|0.5\n145660|0.34722\n145661|0.26389\n145662|0.51389\n145663|0.5\n145664|0.52778\n145665|0.5\n145666|0.47222\n145667|0.48611\n145668|0.44444\n145669|0.61111\n145670|0.5\n145671|0.40278\n145672|0.5\n145673|0.52778\n145674|0.5\n145675|0.19444\n145676|0.5\n145677|0.44444\n145678|0.52778\n145679|0.51389\n145680|0.5\n145681|0.33333\n145682|0.55556\n145683|0.5\n145684|0.34722\n145685|0.5\n145686|0.5\n145687|0.5\n145688|0.56944\n145689|0.18056\n145690|0.41667\n145691|0.5\n145692|0.48611\n145693|0.5\n145694|0.5\n145695|0.66667\n145696|0.5\n145697|0.56944\n145698|0.72222\n145699|0.54167\n145700|0.33333\n145701|0.25\n145702|0.375\n145703|0.36111\n145704|0.29167\n145705|0.40278\n145706|0.43056\n145707|0.5\n145708|0.45833\n145709|0.44444\n145710|0.58333\n145711|0.5\n145712|0.5\n145713|0.54167\n145714|0.5\n145715|0.44444\n145716|0.63889\n145717|0.72222\n145718|0.68056\n145719|0.38889\n145720|0.68056\n145721|0.55556\n145722|0.52778\n145723|0.43056\n145724|0.56944\n145725|0.52778\n145726|0.31944\n145727|0.5\n145728|0.44444\n145729|0.5\n145730|0.5\n145731|0.43056\n145732|0.30556\n145733|0.43056\n145734|0.375\n145735|0.19444\n145736|0.73611\n145737|0.40278\n145738|0.41667\n145739|0.29167\n145740|0.26389\n145741|0.55556\n145742|0.55556\n145743|0.5\n145744|0.41667\n145745|0.41667\n145746|0.47222\n145747|0.51389\n145748|0.375\n145749|0.5\n145750|0.68056\n145751|0.5\n145752|0.5\n145753|0.5\n145754|0.51389\n145755|0.48611\n145756|0.5\n145757|0.29167\n145758|0.45833\n145759|0.47222\n145760|0.43056\n145761|0.5\n145762|0.22222\n145763|0.375\n145764|0.30556\n145765|0.84722\n145766|0.23611\n145767|0.5\n145768|0.5\n145769|0.45833\n145770|0.47222\n145771|0.34722\n145772|0.44444\n145773|0.40278\n145774|0.34722\n145775|0.29167\n145776|0.27778\n145777|0.36111\n145778|0.45833\n145779|0.54167\n145780|0.5\n145781|0.58333\n145782|0.20833\n145783|0.27778\n145784|0.41667\n145785|0.5\n145786|0.45833\n145787|0.27778\n145788|0.36111\n145789|0.47222\n145790|0.56944\n145791|0.5\n145792|0.40278\n145793|0.5\n145794|0.54167\n145795|0.30556\n145796|0.5\n145797|0.41667\n145798|0.56944\n145799|0.33333\n145800|0.54167\n145801|0.29167\n145802|0.34722\n145803|0.44444\n145804|0.29167\n145805|0.26389\n145806|0.22222\n145807|0.41667\n145808|0.52778\n145809|0.72222\n145810|0.54167\n145811|0.5\n145812|0.55556\n145813|0.5\n145814|0.41667\n145815|0.5\n145816|0.5\n145817|0.84722\n145818|0.55556\n145819|0.5\n145820|0.20833\n145821|0.5\n145822|0.75\n145823|0.5\n145824|0.48611\n145825|0.5\n145826|0.47222\n145827|0.61111\n145828|0.23611\n145829|0.20833\n145830|0.63889\n145831|0.51389\n145832|0.27778\n145833|0.36111\n145834|0.11111\n145835|0.27778\n145836|0.61111\n145837|0.5\n145838|0.38889\n145839|0.48611\n145840|0.5\n145841|0.51389\n145842|0.5\n145843|0.55556\n145844|0.5\n145845|0.125\n145846|0.11111\n145847|0.041667\n145848|0.40278\n145849|0.23611\n145850|0.58333\n145851|0.51389\n145852|0.45833\n145853|0.47222\n145854|0.27778\n145855|0.26389\n145856|0.36111\n145857|0.18056\n145858|0.55556\n145859|0.47222\n145860|0.5\n145861|0.44444\n145862|0.54167\n145863|0.5\n145864|0.48611\n145865|0.5\n145866|0.22222\n145867|0.44444\n145868|0.41667\n145869|0.59722\n145870|0.33333\n145871|0.52778\n145872|0.34722\n145873|0.45833\n145874|0.5\n145875|0.65278\n145876|0.54167\n145877|0.18056\n145878|0.5\n145879|0.40278\n145880|0.38889\n145881|0.72222\n145882|0.5\n145883|0.19444\n145884|0.52778\n145885|0.23611\n145886|0.083333\n145887|0.16667\n145888|0.5\n145889|0.51389\n145890|0.23611\n145891|0.47222\n145892|0.055556\n145893|0.55556\n145894|0.48611\n145895|0.5\n145896|0.5\n145897|0.72222\n145898|0.77778\n145899|0.625\n145900|0.29167\n145901|0.33333\n145902|0.81944\n145903|0.69444\n145904|0.40278\n145905|0.48611\n145906|0.38889\n145907|0.36111\n145908|0.36111\n145909|0.5\n145910|0.5\n145911|0.68056\n145912|0.43056\n145913|0.25\n145914|0.41667\n145915|0.55556\n145916|0.55556\n145917|0.48611\n145918|0.27778\n145919|0.33333\n145920|0.5\n145921|0.5\n145922|0.52778\n145923|0.72222\n145924|0.48611\n145925|0.5\n145926|0.58333\n145927|0.76389\n145928|0.51389\n145929|0.47222\n145930|0.29167\n145931|0.5\n145932|0.55556\n145933|0.16667\n145934|0.22222\n145935|0.58333\n145936|0.40278\n145937|0.26389\n145938|0.5\n145939|0.125\n145940|0.5\n145941|0.38889\n145942|0.19444\n145943|0.65278\n145944|0.43056\n145945|0.77778\n145946|0.36111\n145947|0.41667\n145948|0.23611\n145949|0.34722\n145950|0.44444\n145951|0.20833\n145952|0.47222\n145953|0.55556\n145954|0.38889\n145955|0.11111\n145956|0.16667\n145957|0\n145958|0.069444\n145959|0.20833\n145960|0.25\n145961|0.083333\n145962|0.5\n145963|0.55556\n145964|0.63889\n145965|0.36111\n145966|0.43056\n145967|0.30556\n145968|0.47222\n145969|0.40278\n145970|0.5\n145971|0.27778\n145972|0.34722\n145973|0.27778\n145974|0.25\n145975|0.52778\n145976|0.56944\n145977|0.55556\n145978|0.55556\n145979|0.36111\n145980|0.375\n145981|0.43056\n145982|0.23611\n145983|0.45833\n145984|0.55556\n145985|0.5\n145986|0.5\n145987|0.5\n145988|0.5\n145989|0.48611\n145990|0.63889\n145991|0.13889\n145992|0.44444\n145993|0.56944\n145994|0.70833\n145995|0.51389\n145996|0.29167\n145997|0.055556\n145998|0.33333\n145999|0.38889\n146000|0.34722\n146001|0.16667\n146002|0.36111\n146003|0.38889\n146004|0.30556\n146005|0.43056\n146006|0.16667\n146007|0.30556\n146008|0.47222\n146009|0.63889\n146010|0.34722\n146011|0.65278\n146012|0.52778\n146013|0.11111\n146014|0.27778\n146015|0.25\n146016|0.20833\n146017|0.31944\n146018|0.5\n146019|0.31944\n146020|0.51389\n146021|0.30556\n146022|0.097222\n146023|0.34722\n146024|0.31944\n146025|0.5\n146026|0.25\n146027|0.26389\n146028|0.69444\n146029|0.61111\n146030|0.36111\n146031|0.29167\n146032|0.30556\n146033|0.055556\n146034|0.125\n146035|0.30556\n146036|0.30556\n146037|0.375\n146038|0.27778\n146039|0.43056\n146040|0.25\n146041|0.26389\n146042|0.30556\n146043|0.20833\n146044|0.27778\n146045|0.30556\n146046|0.23611\n146047|0.36111\n146048|0.29167\n146049|0.29167\n146050|0.44444\n146051|0.51389\n146052|0.27778\n146053|0.34722\n146054|0.48611\n146055|0.30556\n146056|0.055556\n146057|0.33333\n146058|0.36111\n146059|0.40278\n146060|0.25\n146061|0.56944\n146062|0.27778\n146063|0.27778\n146064|0.5\n146065|0.15278\n146066|0.45833\n146067|0.5\n146068|0.44444\n146069|0.5\n146070|0.22222\n146071|0.30556\n146072|0.013889\n146073|0.56944\n146074|0.81944\n146075|0.84722\n146076|0.63889\n146077|0.5\n146078|0.58333\n146079|0.5\n146080|0.23611\n146081|0.5\n146082|0.25\n146083|0.38889\n146084|0.36111\n146085|0.22222\n146086|0.23611\n146087|0.055556\n146088|0.16667\n146089|0.34722\n146090|0.5\n146091|0.52778\n146092|0.77778\n146093|0.59722\n146094|0.72222\n146095|0.77778\n146096|0.43056\n146097|0.61111\n146098|0.48611\n146099|0.5\n146100|0.5\n146101|0.38889\n146102|0.54167\n146103|0.30556\n146104|0.19444\n146105|0.25\n146106|0.36111\n146107|0.5\n146108|0.52778\n146109|0.5\n146110|0.26389\n146111|0.27778\n146112|0.18056\n146113|0.30556\n146114|0.11111\n146115|0.61111\n146116|0.38889\n146117|0.20833\n146118|0.18056\n146119|0.36111\n146120|0.31944\n146121|0.22222\n146122|0.40278\n146123|0.5\n146124|0.5\n146125|0.52778\n146126|0.51389\n146127|0.5\n146128|0.33333\n146129|0.33333\n146130|0.5\n146131|0.23611\n146132|0.375\n146133|0.26389\n146134|0.18056\n146135|0.027778\n146136|0.5\n146137|0.31944\n146138|0.26389\n146139|0.45833\n146140|0.56944\n146141|0.56944\n146142|0.27778\n146143|0.055556\n146144|0.19444\n146145|0.31944\n146146|0.27778\n146147|0.30556\n146148|0.26389\n146149|0.44444\n146150|0.13889\n146151|0.47222\n146152|0.59722\n146153|0.31944\n146154|0.45833\n146155|0.19444\n146156|0.30556\n146157|0.40278\n146158|0.5\n146159|0.38889\n146160|0.34722\n146161|0.61111\n146162|0.29167\n146163|0.5\n146164|0.38889\n146165|0.5\n146166|0.5\n146167|0.44444\n146168|0.27778\n146169|0.63889\n146170|0.72222\n146171|0.43056\n146172|0.47222\n146173|0.097222\n146174|0.54167\n146175|0.25\n146176|0.29167\n146177|0.44444\n146178|0.38889\n146179|0.77778\n146180|0.069444\n146181|0.5\n146182|0.26389\n146183|0.61111\n146184|0.31944\n146185|0.48611\n146186|0.15278\n146187|0.51389\n146188|0.51389\n146189|0.16667\n146190|0.55556\n146191|0.73611\n146192|0.48611\n146193|0.59722\n146194|0.38889\n146195|0.44444\n146196|0.47222\n146197|0.5\n146198|0.51389\n146199|0.27778\n146200|0.27778\n146201|0.44444\n146202|0.34722\n146203|0.34722\n146204|0.125\n146205|0.375\n146206|0.58333\n146207|0.25\n146208|0.20833\n146209|0.41667\n146210|0.027778\n146211|0.44444\n146212|0.22222\n146213|0.48611\n146214|0.36111\n146215|0.34722\n146216|0.18056\n146217|0.54167\n146218|0.16667\n146219|0.58333\n146220|0.5\n146221|0.47222\n146222|0.13889\n146223|0.47222\n146224|0.27778\n146225|0.5\n146226|0.65278\n146227|0.54167\n146228|0.18056\n146229|0.51389\n146230|0.26389\n146231|0.48611\n146232|0.29167\n146233|0.55556\n146234|0.34722\n146235|0.44444\n146236|0.38889\n146237|0.44444\n146238|0.26389\n146239|0.40278\n146240|0.31944\n146241|0.5\n146242|0.80556\n146243|0.55556\n146244|0.375\n146245|0.44444\n146246|0.23611\n146247|0.55556\n146248|0.27778\n146249|0.40278\n146250|0.47222\n146251|0.5\n146252|0.55556\n146253|0.23611\n146254|0.625\n146255|0.48611\n146256|0.5\n146257|0.16667\n146258|0.31944\n146259|0.23611\n146260|0.11111\n146261|0.19444\n146262|0.29167\n146263|0.30556\n146264|0.48611\n146265|0.33333\n146266|0.26389\n146267|0.375\n146268|0.22222\n146269|0.5\n146270|0.5\n146271|0.47222\n146272|0.29167\n146273|0.45833\n146274|0.31944\n146275|0.69444\n146276|0.54167\n146277|0.66667\n146278|0.22222\n146279|0.45833\n146280|0.26389\n146281|0.11111\n146282|0.16667\n146283|0.51389\n146284|0.13889\n146285|0.44444\n146286|0.25\n146287|0.5\n146288|0.31944\n146289|0.16667\n146290|0.61111\n146291|0.23611\n146292|0.5\n146293|0.56944\n146294|0.56944\n146295|0.25\n146296|0.5\n146297|0.18056\n146298|0.097222\n146299|0.097222\n146300|0.5\n146301|0.23611\n146302|0.5\n146303|0.68056\n146304|0.11111\n146305|0.375\n146306|0.29167\n146307|0.54167\n146308|0.22222\n146309|0.43056\n146310|0.33333\n146311|0.51389\n146312|0.34722\n146313|0.40278\n146314|0.18056\n146315|0.20833\n146316|0.45833\n146317|0.25\n146318|0.5\n146319|0.33333\n146320|0.5\n146321|0.26389\n146322|0.27778\n146323|0.55556\n146324|0.43056\n146325|0.38889\n146326|0.36111\n146327|0.16667\n146328|0.38889\n146329|0.34722\n146330|0.30556\n146331|0.45833\n146332|0.33333\n146333|0.44444\n146334|0\n146335|0.5\n146336|0.34722\n146337|0.41667\n146338|0.097222\n146339|0.44444\n146340|0.29167\n146341|0.59722\n146342|0.44444\n146343|0.26389\n146344|0.20833\n146345|0.5\n146346|0.5\n146347|0.375\n146348|0.72222\n146349|0.45833\n146350|0.55556\n146351|0.61111\n146352|0.45833\n146353|0.34722\n146354|0.48611\n146355|0.15278\n146356|0.11111\n146357|0.59722\n146358|0.41667\n146359|0.30556\n146360|0.5\n146361|0.5\n146362|0.5\n146363|0.625\n146364|0.80556\n146365|0.44444\n146366|0.31944\n146367|0.38889\n146368|0.5\n146369|0.44444\n146370|0.33333\n146371|0.38889\n146372|0.44444\n146373|0.44444\n146374|0.48611\n146375|0.48611\n146376|0.48611\n146377|0.375\n146378|0.5\n146379|0.36111\n146380|0.27778\n146381|0.5\n146382|0.5\n146383|0.5\n146384|0.5\n146385|0.54167\n146386|0.30556\n146387|0.5\n146388|0.19444\n146389|0.11111\n146390|0.44444\n146391|0.43056\n146392|0.44444\n146393|0.31944\n146394|0.16667\n146395|0.44444\n146396|0.13889\n146397|0.26389\n146398|0.19444\n146399|0.44444\n146400|0.31944\n146401|0.33333\n146402|0.625\n146403|0.63889\n146404|0.48611\n146405|0.65278\n146406|0.63889\n146407|0.41667\n146408|0.16667\n146409|0.40278\n146410|0.56944\n146411|0.41667\n146412|0.23611\n146413|0.27778\n146414|0.34722\n146415|0.40278\n146416|0.22222\n146417|0.18056\n146418|0\n146419|0.125\n146420|0.13889\n146421|0.15278\n146422|0.069444\n146423|0.30556\n146424|0.31944\n146425|0.40278\n146426|0.54167\n146427|0.44444\n146428|0.65278\n146429|0.70833\n146430|0.59722\n146431|0.52778\n146432|0.63889\n146433|0.48611\n146434|0.44444\n146435|0.66667\n146436|0.34722\n146437|0.63889\n146438|0.58333\n146439|0.61111\n146440|0.58333\n146441|0.43056\n146442|0.51389\n146443|0.25\n146444|0.23611\n146445|0.19444\n146446|0.45833\n146447|0.20833\n146448|0.27778\n146449|0.22222\n146450|0.18056\n146451|0.11111\n146452|0.15278\n146453|0.40278\n146454|0.083333\n146455|0.36111\n146456|0.18056\n146457|0.26389\n146458|0.097222\n146459|0.31944\n146460|0.72222\n146461|0.51389\n146462|0.375\n146463|0.26389\n146464|0.25\n146465|0.69444\n146466|0.69444\n146467|0.22222\n146468|0.13889\n146469|0.27778\n146470|0.30556\n146471|0.34722\n146472|0.041667\n146473|0.23611\n146474|0.26389\n146475|0.36111\n146476|0.25\n146477|0.29167\n146478|0.18056\n146479|0.26389\n146480|0.18056\n146481|0.26389\n146482|0.13889\n146483|0.16667\n146484|0.11111\n146485|0.15278\n146486|0.22222\n146487|0.52778\n146488|0.22222\n146489|0.63889\n146490|0.79167\n146491|0.58333\n146492|0.36111\n146493|0.48611\n146494|0.20833\n146495|0.19444\n146496|0.26389\n146497|0.47222\n146498|0.22222\n146499|0.38889\n146500|0.41667\n146501|0.43056\n146502|0.33333\n146503|0.22222\n146504|0.44444\n146505|0.34722\n146506|0.26389\n146507|0.58333\n146508|0.65278\n146509|0.48611\n146510|0.44444\n146511|0.30556\n146512|0.70833\n146513|0.59722\n146514|0.77778\n146515|0.90278\n146516|0.29167\n146517|0.23611\n146518|0.30556\n146519|0.34722\n146520|0.19444\n146521|0.11111\n146522|0.33333\n146523|0.26389\n146524|0.44444\n146525|0.23611\n146526|0.097222\n146527|0.23611\n146528|0.40278\n146529|0.40278\n146530|0.16667\n146531|0.25\n146532|0.30556\n146533|0.31944\n146534|0\n146535|0.19444\n146536|0.22222\n146537|0.083333\n146538|0.26389\n146539|0.40278\n146540|0.54167\n146541|0.59722\n146542|0.52778\n146543|0.41667\n146544|0.23611\n146545|0.18056\n146546|0.16667\n146547|0.45833\n146548|0.43056\n146549|0.48611\n146550|0.375\n146551|0.375\n146552|0.097222\n146553|0.18056\n146554|0.19444\n146555|0.22222\n146556|0.36111\n146557|0.055556\n146558|0.29167\n146559|0.25\n146560|0.27778\n146561|0.30556\n146562|0.26389\n146563|0.25\n146564|0.47222\n146565|0.47222\n146566|0.52778\n146567|0.31944\n146568|0.56944\n146569|0.30556\n146570|0.36111\n146571|0.55556\n146572|0.43056\n146573|0.48611\n146574|0.41667\n146575|0.25\n146576|0.11111\n146577|0.72222\n146578|0.59722\n146579|0.56944\n146580|0.58333\n146581|0.55556\n146582|0.30556\n146583|0.65278\n146584|0.52778\n146585|0.375\n146586|0.26389\n146587|0.375\n146588|0.51389\n146589|0.20833\n146590|0.45833\n146591|0.5\n146592|0.52778\n146593|0.5\n146594|0.61111\n146595|0.61111\n146596|0.625\n146597|0.75\n146598|0.15278\n146599|0.097222\n146600|0.31944\n146601|0.31944\n146602|0.31944\n146603|0.33333\n146604|0.19444\n146605|0.16667\n146606|0.16667\n146607|0.29167\n146608|0.29167\n146609|0.40278\n146610|0.25\n146611|0.15278\n146612|0.29167\n146613|0.36111\n146614|0.45833\n146615|0.13889\n146616|0.20833\n146617|0.16667\n146618|0.34722\n146619|0.26389\n146620|0.069444\n146621|0.43056\n146622|0.38889\n146623|0.31944\n146624|0.15278\n146625|0.23611\n146626|0.43056\n146627|0.29167\n146628|0.38889\n146629|0.18056\n146630|0.43056\n146631|0.36111\n146632|0.72222\n146633|0.72222\n146634|0.44444\n146635|0.55556\n146636|0.48611\n146637|0.13889\n146638|0.19444\n146639|0.625\n146640|0.30556\n146641|0.23611\n146642|0.23611\n146643|0.29167\n146644|0.30556\n146645|0.23611\n146646|0.40278\n146647|0.41667\n146648|0.33333\n146649|0.16667\n146650|0.25\n146651|0.55556\n146652|0.33333\n146653|0.375\n146654|0.5\n146655|0.58333\n146656|0.63889\n146657|0.45833\n146658|0.43056\n146659|0.27778\n146660|0.13889\n146661|0.40278\n146662|0.36111\n146663|0.45833\n146664|0.47222\n146665|0.44444\n146666|0.51389\n146667|0.30556\n146668|0.30556\n146669|0.52778\n146670|0.68056\n146671|0.45833\n146672|0.23611\n146673|0.27778\n146674|0.38889\n146675|0.34722\n146676|0.125\n146677|0.27778\n146678|0.27778\n146679|0.30556\n146680|0.097222\n146681|0.13889\n146682|0.31944\n146683|0.40278\n146684|0.43056\n146685|0.34722\n146686|0.29167\n146687|0.25\n146688|0.16667\n146689|0.18056\n146690|0.61111\n146691|0.47222\n146692|0.5\n146693|0.33333\n146694|0.31944\n146695|0.375\n146696|0.38889\n146697|0.30556\n146698|0.44444\n146699|0.73611\n146700|0.15278\n146701|0.63889\n146702|0.29167\n146703|0.47222\n146704|0.5\n146705|0.30556\n146706|0.33333\n146707|0.31944\n146708|0.20833\n146709|0.51389\n146710|0.38889\n146711|0.19444\n146712|0.47222\n146713|0.22222\n146714|0.33333\n146715|0.33333\n146716|0.20833\n146717|0.25\n146718|0.38889\n146719|0.43056\n146720|0.76389\n146721|0.61111\n146722|0.59722\n146723|0.41667\n146724|0.52778\n146725|0.47222\n146726|0.45833\n146727|0.45833\n146728|0.27778\n146729|0.33333\n146730|0.41667\n146731|0.43056\n146732|0.31944\n146733|0.52778\n146734|0.31944\n146735|0.47222\n146736|0.27778\n146737|0.81944\n146738|0.52778\n146739|0.63889\n146740|0.61111\n146741|0.22222\n146742|0.25\n146743|0.22222\n146744|0.097222\n146745|0.15278\n146746|0.055556\n146747|0.16667\n146748|0.18056\n146749|0.11111\n146750|0.11111\n146751|0.29167\n146752|0.5\n146753|0.19444\n146754|0.31944\n146755|0.45833\n146756|0.30556\n146757|0.33333\n146758|0.38889\n146759|0.52778\n146760|0.52778\n146761|0.5\n146762|0.29167\n146763|0.38889\n146764|0.18056\n146765|0.27778\n146766|0.097222\n146767|0.16667\n146768|0.45833\n146769|0.69444\n146770|0.43056\n146771|0.5\n146772|0.43056\n146773|0.38889\n146774|0.041667\n146775|0.16667\n146776|0.45833\n146777|0.23611\n146778|0.40278\n146779|0.5\n146780|0.25\n146781|0.43056\n146782|0.22222\n146783|0.18056\n146784|0.15278\n146785|0.30556\n146786|0.36111\n146787|0.22222\n146788|0.20833\n146789|0.41667\n146790|0.26389\n146791|0.20833\n146792|0.45833\n146793|0.33333\n146794|0.36111\n146795|0.375\n146796|0.29167\n146797|0.29167\n146798|0.5\n146799|0.27778\n146800|0.55556\n146801|0.30556\n146802|0.51389\n146803|0.30556\n146804|0.5\n146805|0.5\n146806|0.44444\n146807|0.34722\n146808|0.5\n146809|0.5\n146810|0.5\n146811|0.56944\n146812|0.36111\n146813|0.52778\n146814|0.56944\n146815|0.52778\n146816|0.47222\n146817|0.54167\n146818|0.38889\n146819|0.54167\n146820|0.26389\n146821|0.54167\n146822|0.20833\n146823|0.5\n146824|0.55556\n146825|0.5\n146826|0.5\n146827|0.54167\n146828|0.52778\n146829|0.5\n146830|0.5\n146831|0.52778\n146832|0.5\n146833|0.5\n146834|0.45833\n146835|0.5\n146836|0.44444\n146837|0.5\n146838|0.5\n146839|0.52778\n146840|0.5\n146841|0.5\n146842|0.5\n146843|0.47222\n146844|0.5\n146845|0.44444\n146846|0.5\n146847|0.5\n146848|0.5\n146849|0.26389\n146850|0.30556\n146851|0.5\n146852|0.34722\n146853|0.5\n146854|0.5\n146855|0.41667\n146856|0.5\n146857|0.5\n146858|0.5\n146859|0.5\n146860|0.56944\n146861|0.40278\n146862|0.51389\n146863|0.45833\n146864|0.5\n146865|0.5\n146866|0.48611\n146867|0.31944\n146868|0.43056\n146869|0.375\n146870|0.5\n146871|0.79167\n146872|0.56944\n146873|0.5\n146874|0.5\n146875|0.48611\n146876|0.5\n146877|0.5\n146878|0.5\n146879|0.5\n146880|0.5\n146881|0.48611\n146882|0.47222\n146883|0.5\n146884|0.47222\n146885|0.5\n146886|0.5\n146887|0.5\n146888|0.5\n146889|0.72222\n146890|0.5\n146891|0.5\n146892|0.5\n146893|0.52778\n146894|0.5\n146895|0.11111\n146896|0.5\n146897|0.5\n146898|0.5\n146899|0.5\n146900|0.5\n146901|0.54167\n146902|0.18056\n146903|0.5\n146904|0.5\n146905|0.22222\n146906|0.16667\n146907|0.5\n146908|0.41667\n146909|0.43056\n146910|0.5\n146911|0.5\n146912|0.79167\n146913|0.5\n146914|0.55556\n146915|0.5\n146916|0.5\n146917|0.5\n146918|0.36111\n146919|0.33333\n146920|0.34722\n146921|0.65278\n146922|0.65278\n146923|0.70833\n146924|0.23611\n146925|0.5\n146926|0.5\n146927|0.5\n146928|0.5\n146929|0.5\n146930|0.5\n146931|0.38889\n146932|0.5\n146933|0.38889\n146934|0.15278\n146935|0.5\n146936|0.31944\n146937|0.5\n146938|0.125\n146939|0.22222\n146940|0.61111\n146941|0.23611\n146942|0.23611\n146943|0.20833\n146944|0.22222\n146945|0.55556\n146946|0.58333\n146947|0.30556\n146948|0.30556\n146949|0.27778\n146950|0.15278\n146951|0.44444\n146952|0.23611\n146953|0.27778\n146954|0.11111\n146955|0.33333\n146956|0.55556\n146957|0.5\n146958|0.33333\n146959|0.63889\n146960|0.16667\n146961|0.33333\n146962|0.44444\n146963|0.55556\n146964|0.5\n146965|0.51389\n146966|0.16667\n146967|0.43056\n146968|0.375\n146969|0.27778\n146970|0.18056\n146971|0.40278\n146972|0.44444\n146973|0.5\n146974|0.29167\n146975|0.5\n146976|0.19444\n146977|0.33333\n146978|0.29167\n146979|0.40278\n146980|0.11111\n146981|0.22222\n146982|0.5\n146983|0.5\n146984|0.5\n146985|0.45833\n146986|0.5\n146987|0.34722\n146988|0.45833\n146989|0.5\n146990|0.5\n146991|0.5\n146992|0.36111\n146993|0.52778\n146994|0.5\n146995|0.43056\n146996|0.51389\n146997|0.41667\n146998|0.26389\n146999|0.47222\n147000|0.5\n147001|0.375\n147002|0.5\n147003|0.5\n147004|0.5\n147005|0.5\n147006|0.69444\n147007|0.41667\n147008|0.5\n147009|0.5\n147010|0.33333\n147011|0.56944\n147012|0.55556\n147013|0.56944\n147014|0.5\n147015|0.5\n147016|0.5\n147017|0.47222\n147018|0.52778\n147019|0.47222\n147020|0.33333\n147021|0.26389\n147022|0.26389\n147023|0.16667\n147024|0.54167\n147025|0.5\n147026|0.30556\n147027|0.5\n147028|0.45833\n147029|0.54167\n147030|0.45833\n147031|0.40278\n147032|0.5\n147033|0.34722\n147034|0.5\n147035|0.5\n147036|0.52778\n147037|0.5\n147038|0.5\n147039|0.5\n147040|0.5\n147041|0.33333\n147042|0.20833\n147043|0.33333\n147044|0.5\n147045|0.36111\n147046|0.5\n147047|0.34722\n147048|0.30556\n147049|0.34722\n147050|0.38889\n147051|0.29167\n147052|0.16667\n147053|0.20833\n147054|0.29167\n147055|0.20833\n147056|0.22222\n147057|0.25\n147058|0.11111\n147059|0.19444\n147060|0.44444\n147061|0.29167\n147062|0.41667\n147063|0.26389\n147064|0.5\n147065|0.5\n147066|0.56944\n147067|0.52778\n147068|0.5\n147069|0.5\n147070|0.5\n147071|0.15278\n147072|0.23611\n147073|0.19444\n147074|0.19444\n147075|0.43056\n147076|0.33333\n147077|0.27778\n147078|0.52778\n147079|0.80556\n147080|0.5\n147081|0.5\n147082|0.5\n147083|0.34722\n147084|0.55556\n147085|0.47222\n147086|0.25\n147087|0.5\n147088|0.44444\n147089|0.47222\n147090|0.5\n147091|0.52778\n147092|0.40278\n147093|0.33333\n147094|0.5\n147095|0.5\n147096|0.5\n147097|0.52778\n147098|0.5\n147099|0.5\n147100|0.47222\n147101|0.5\n147102|0.45833\n147103|0.5\n147104|0.5\n147105|0.38889\n147106|0.44444\n147107|0.22222\n147108|0.22222\n147109|0.5\n147110|0.5\n147111|0.56944\n147112|0.26389\n147113|0.52778\n147114|0.58333\n147115|0.61111\n147116|0.66667\n147117|0.54167\n147118|0.77778\n147119|0.58333\n147120|0.5\n147121|0.5\n147122|0.40278\n147123|0.44444\n147124|0.40278\n147125|0.33333\n147126|0.23611\n147127|0.25\n147128|0.5\n147129|0.52778\n147130|0.44444\n147131|0.38889\n147132|0.44444\n147133|0.44444\n147134|0.36111\n147135|0.5\n147136|0.22222\n147137|0.19444\n147138|0.25\n147139|0.34722\n147140|0.58333\n147141|0.27778\n147142|0.27778\n147143|0.41667\n147144|0.38889\n147145|0.45833\n147146|0.5\n147147|0.54167\n147148|0.5\n147149|0.38889\n147150|0.59722\n147151|0.68056\n147152|0.68056\n147153|0.41667\n147154|0.55556\n147155|0.55556\n147156|0.5\n147157|0.45833\n147158|0.5\n147159|0.73611\n147160|0.27778\n147161|0.125\n147162|0.11111\n147163|0.44444\n147164|0.47222\n147165|0.19444\n147166|0.16667\n147167|0.47222\n147168|0.5\n147169|0.44444\n147170|0.34722\n147171|0.19444\n147172|0.16667\n147173|0.47222\n147174|0.22222\n147175|0.43056\n147176|0.27778\n147177|0.34722\n147178|0.16667\n147179|0.52778\n147180|0.40278\n147181|0.5\n147182|0.375\n147183|0.25\n147184|0.27778\n147185|0.18056\n147186|0.5\n147187|0.36111\n147188|0.48611\n147189|0.5\n147190|0.59722\n147191|0.29167\n147192|0.45833\n147193|0.41667\n147194|0.5\n147195|0.5\n147196|0.41667\n147197|0.5\n147198|0.5\n147199|0.5\n147200|0.5\n147201|0.375\n147202|0.43056\n147203|0.52778\n147204|0.63889\n147205|0.41667\n147206|0.26389\n147207|0.29167\n147208|0.23611\n147209|0.36111\n147210|0.48611\n147211|0.55556\n147212|0.52778\n147213|0.34722\n147214|0.5\n147215|0.20833\n147216|0.23611\n147217|0.41667\n147218|0.5\n147219|0.27778\n147220|0.5\n147221|0.48611\n147222|0.5\n147223|0.5\n147224|0.5\n147225|0.069444\n147226|0.23611\n147227|0.5\n147228|0.54167\n147229|0.5\n147230|0.5\n147231|0.54167\n147232|0.20833\n147233|0.45833\n147234|0.31944\n147235|0.38889\n147236|0.19444\n147237|0.055556\n147238|0.5\n147239|0.34722\n147240|0.5\n147241|0.44444\n147242|0.375\n147243|0.44444\n147244|0.51389\n147245|0.40278\n147246|0.36111\n147247|0.29167\n147248|0.44444\n147249|0.45833\n147250|0.5\n147251|0.5\n147252|0.36111\n147253|0.38889\n147254|0.22222\n147255|0.26389\n147256|0.31944\n147257|0.66667\n147258|0.56944\n147259|0.56944\n147260|0.45833\n147261|0.20833\n147262|0.26389\n147263|0.77778\n147264|0.77778\n147265|0.48611\n147266|0.5\n147267|0.5\n147268|0.54167\n147269|0.5\n147270|0.66667\n147271|0.23611\n147272|0.58333\n147273|0.5\n147274|0.5\n147275|0.5\n147276|0.5\n147277|0.5\n147278|0.5\n147279|0.5\n147280|0.5\n147281|0.5\n147282|0.58333\n147283|0.38889\n147284|0.5\n147285|0.5\n147286|0.38889\n147287|0.5\n147288|0.5\n147289|0.59722\n147290|0.52778\n147291|0.5\n147292|0.51389\n147293|0.31944\n147294|0.29167\n147295|0.19444\n147296|0.30556\n147297|0.43056\n147298|0.36111\n147299|0.097222\n147300|0.22222\n147301|0.5\n147302|0.5\n147303|0.44444\n147304|0.16667\n147305|0.41667\n147306|0.54167\n147307|0.38889\n147308|0.47222\n147309|0.18056\n147310|0.19444\n147311|0.13889\n147312|0.41667\n147313|0.51389\n147314|0.5\n147315|0.36111\n147316|0.5\n147317|0.5\n147318|0.20833\n147319|0.5\n147320|0.5\n147321|0.52778\n147322|0.44444\n147323|0.5\n147324|0.5\n147325|0.51389\n147326|0.5\n147327|0.63889\n147328|0.5\n147329|0.61111\n147330|0.47222\n147331|0.41667\n147332|0.13889\n147333|0.43056\n147334|0.22222\n147335|0.5\n147336|0.38889\n147337|0.41667\n147338|0.5\n147339|0.58333\n147340|0.72222\n147341|0.5\n147342|0.52778\n147343|0.33333\n147344|0.44444\n147345|0.23611\n147346|0.31944\n147347|0.5\n147348|0.5\n147349|0.54167\n147350|0.36111\n147351|0.11111\n147352|0.23611\n147353|0.22222\n147354|0.5\n147355|0.47222\n147356|0.56944\n147357|0.5\n147358|0.56944\n147359|0.52778\n147360|0.5\n147361|0.52778\n147362|0.44444\n147363|0.38889\n147364|0.54167\n147365|0.51389\n147366|0.5\n147367|0.59722\n147368|0.16667\n147369|0.61111\n147370|0.47222\n147371|0.5\n147372|0.11111\n147373|0.5\n147374|0.36111\n147375|0.38889\n147376|0.45833\n147377|0.33333\n147378|0.27778\n147379|0.20833\n147380|0.5\n147381|0.5\n147382|0.125\n147383|0.52778\n147384|0.5\n147385|0.27778\n147386|0.375\n147387|0.43056\n147388|0.5\n147389|0.40278\n147390|0.30556\n147391|0.36111\n147392|0.41667\n147393|0.47222\n147394|0.66667\n147395|0.27778\n147396|0.58333\n147397|0.73611\n147398|0.83333\n147399|0.63889\n147400|0.30556\n147401|0.5\n147402|0.54167\n147403|0.33333\n147404|0.65278\n147405|0.44444\n147406|0.26389\n147407|0.18056\n147408|0.26389\n147409|0.33333\n147410|0.48611\n147411|0.56944\n147412|0.36111\n147413|0.625\n147414|0.5\n147415|0.5\n147416|0.625\n147417|0.54167\n147418|0.29167\n147419|0.34722\n147420|0.375\n147421|0.25\n147422|0.41667\n147423|0.30556\n147424|0.125\n147425|0.44444\n147426|0.16667\n147427|0.5\n147428|0.5\n147429|0.51389\n147430|0.43056\n147431|0.16667\n147432|0.40278\n147433|0.5\n147434|0.22222\n147435|0.51389\n147436|0.5\n147437|0.51389\n147438|0.5\n147439|0.52778\n147440|0.5\n147441|0.5\n147442|0.5\n147443|0.5\n147444|0.45833\n147445|0.61111\n147446|0.44444\n147447|0.5\n147448|0.51389\n147449|0.5\n147450|0.5\n147451|0.34722\n147452|0.5\n147453|0.33333\n147454|0.59722\n147455|0.79167\n147456|0.625\n147457|0.097222\n147458|0.5\n147459|0.5\n147460|0.5\n147461|0.5\n147462|0.38889\n147463|0.38889\n147464|0.30556\n147465|0.27778\n147466|0.52778\n147467|0.5\n147468|0.29167\n147469|0.5\n147470|0.5\n147471|0.55556\n147472|0.26389\n147473|0.5\n147474|0.5\n147475|0.61111\n147476|0.44444\n147477|0.5\n147478|0.5\n147479|0.81944\n147480|0.45833\n147481|0.45833\n147482|0.44444\n147483|0.5\n147484|0.54167\n147485|0.16667\n147486|0.27778\n147487|0.38889\n147488|0.44444\n147489|0.40278\n147490|0.43056\n147491|0.22222\n147492|0.30556\n147493|0.5\n147494|0.52778\n147495|0.5\n147496|0.55556\n147497|0.55556\n147498|0.75\n147499|0.52778\n147500|0.20833\n147501|0.27778\n147502|0.52778\n147503|0.27778\n147504|0.34722\n147505|0.48611\n147506|0.31944\n147507|0.52778\n147508|0.29167\n147509|0.58333\n147510|0.18056\n147511|0.55556\n147512|0.5\n147513|0.52778\n147514|0.51389\n147515|0.29167\n147516|0.5\n147517|0.30556\n147518|0.5\n147519|0.56944\n147520|0.51389\n147521|0.43056\n147522|0.30556\n147523|0.43056\n147524|0.5\n147525|0.51389\n147526|0.54167\n147527|0.25\n147528|0.30556\n147529|0.34722\n147530|0.5\n147531|0.30556\n147532|0.51389\n147533|0.31944\n147534|0.5\n147535|0.5\n147536|0.33333\n147537|0.5\n147538|0.5\n147539|0.5\n147540|0.58333\n147541|0.56944\n147542|0.36111\n147543|0.5\n147544|0.5\n147545|0.5\n147546|0.125\n147547|0.5\n147548|0.5\n147549|0.5\n147550|0.33333\n147551|0.54167\n147552|0.125\n147553|0.73611\n147554|0.55556\n147555|0.625\n147556|0.23611\n147557|0.29167\n147558|0.5\n147559|0.375\n147560|0.625\n147561|0.18056\n147562|0.36111\n147563|0.22222\n147564|0.19444\n147565|0.38889\n147566|0.5\n147567|0.44444\n147568|0.25\n147569|0.5\n147570|0.38889\n147571|0.5\n147572|0.68056\n147573|0.58333\n147574|0.75\n147575|0.65278\n147576|0.5\n147577|0.47222\n147578|0.33333\n147579|0.5\n147580|0.72222\n147581|0.86111\n147582|0.88889\n147583|0.5\n147584|0.5\n147585|0.52778\n147586|0.5\n147587|0.45833\n147588|0.56944\n147589|0.44444\n147590|0.31944\n147591|0.33333\n147592|0.5\n147593|0.18056\n147594|0.34722\n147595|0.11111\n147596|0.18056\n147597|0.48611\n147598|0.5\n147599|0.40278\n147600|0.34722\n147601|0.5\n147602|0.22222\n147603|0.31944\n147604|0.19444\n147605|0.27778\n147606|0.5\n147607|0.56944\n147608|0.5\n147609|0.5\n147610|0.43056\n147611|0.56944\n147612|0.5\n147613|0.44444\n147614|0.44444\n147615|0.41667\n147616|0.34722\n147617|0.47222\n147618|0.5\n147619|0.25\n147620|0.45833\n147621|0.5\n147622|0.069444\n147623|0.65278\n147624|0.5\n147625|0.43056\n147626|0.5\n147627|0.5\n147628|0.38889\n147629|0.375\n147630|0.38889\n147631|0.375\n147632|0.15278\n147633|0.20833\n147634|0.26389\n147635|0.16667\n147636|0.5\n147637|0.36111\n147638|0.18056\n147639|0.56944\n147640|0.25\n147641|0.47222\n147642|0.40278\n147643|0.23611\n147644|0.5\n147645|0.45833\n147646|0.69444\n147647|0.22222\n147648|0.23611\n147649|0.26389\n147650|0.22222\n147651|0.16667\n147652|0.26389\n147653|0.027778\n147654|0.30556\n147655|0.5\n147656|0.36111\n147657|0.51389\n147658|0.29167\n147659|0.5\n147660|0.25\n147661|0.59722\n147662|0.61111\n147663|0.47222\n147664|0.51389\n147665|0.40278\n147666|0.41667\n147667|0.58333\n147668|0.44444\n147669|0.16667\n147670|0.5\n147671|0.5\n147672|0.52778\n147673|0.47222\n147674|0.5\n147675|0.5\n147676|0.52778\n147677|0.48611\n147678|0.5\n147679|0.5\n147680|0.5\n147681|0.5\n147682|0.5\n147683|0.51389\n147684|0.47222\n147685|0.58333\n147686|0.5\n147687|0.5\n147688|0.19444\n147689|0.36111\n147690|0.20833\n147691|0.5\n147692|0.45833\n147693|0.52778\n147694|0.22222\n147695|0.22222\n147696|0.27778\n147697|0.22222\n147698|0.26389\n147699|0.58333\n147700|0.22222\n147701|0.5\n147702|0.52778\n147703|0.5\n147704|0.44444\n147705|0.30556\n147706|0.5\n147707|0.30556\n147708|0.43056\n147709|0.083333\n147710|0.36111\n147711|0.375\n147712|0.25\n147713|0.125\n147714|0.26389\n147715|0.27778\n147716|0.375\n147717|0.40278\n147718|0.25\n147719|0.18056\n147720|0.27778\n147721|0.43056\n147722|0.63889\n147723|0.30556\n147724|0.36111\n147725|0.13889\n147726|0.5\n147727|0.41667\n147728|0.23611\n147729|0.097222\n147730|0.45833\n147731|0.29167\n147732|0.375\n147733|0.16667\n147734|0.22222\n147735|0.54167\n147736|0.23611\n147737|0.30556\n147738|0.51389\n147739|0.48611\n147740|0.5\n147741|0.44444\n147742|0.23611\n147743|0.43056\n147744|0.25\n147745|0.41667\n147746|0.22222\n147747|0.26389\n147748|0.43056\n147749|0.26389\n147750|0.097222\n147751|0.5\n147752|0.47222\n147753|0.52778\n147754|0.58333\n147755|0.31944\n147756|0.31944\n147757|0.5\n147758|0.5\n147759|0.61111\n147760|0.27778\n147761|0.31944\n147762|0.33333\n147763|0.58333\n147764|0.44444\n147765|0.30556\n147766|0.29167\n147767|0.40278\n147768|0.36111\n147769|0.40278\n147770|0.30556\n147771|0.43056\n147772|0.63889\n147773|0.63889\n147774|0.44444\n147775|0.11111\n147776|0.48611\n147777|0.5\n147778|0.51389\n147779|0.65278\n147780|0.18056\n147781|0.027778\n147782|0.5\n147783|0.11111\n147784|0.5\n147785|0.51389\n147786|0.375\n147787|0.34722\n147788|0.54167\n147789|0.43056\n147790|0.20833\n147791|0.25\n147792|0.30556\n147793|0.34722\n147794|0.23611\n147795|0.13889\n147796|0.11111\n147797|0.33333\n147798|0.375\n147799|0.63889\n147800|0.15278\n147801|0.27778\n147802|0.375\n147803|0.36111\n147804|0.19444\n147805|0.30556\n147806|0.36111\n147807|0.20833\n147808|0.13889\n147809|0.31944\n147810|0.33333\n147811|0.23611\n147812|0.18056\n147813|0.5\n147814|0.13889\n147815|0.5\n147816|0.33333\n147817|0.33333\n147818|0.52778\n147819|0.19444\n147820|0.15278\n147821|0.30556\n147822|0.33333\n147823|0.31944\n147824|0.69444\n147825|0.44444\n147826|0.5\n147827|0.51389\n147828|0.61111\n147829|0.16667\n147830|0.30556\n147831|0.5\n147832|0.5\n147833|0.5\n147834|0.5\n147835|0.5\n147836|0.43056\n147837|0.48611\n147838|0.38889\n147839|0.52778\n147840|0.19444\n147841|0.47222\n147842|0.43056\n147843|0.55556\n147844|0.29167\n147845|0.75\n147846|0.69444\n147847|0.55556\n147848|0.30556\n147849|0.5\n147850|0.54167\n147851|0.43056\n147852|0.5\n147853|0.5\n147854|0.48611\n147855|0.5\n147856|0.51389\n147857|0.125\n147858|0.44444\n147859|0.5\n147860|0.38889\n147861|0.19444\n147862|0.20833\n147863|0.11111\n147864|0.20833\n147865|0.30556\n147866|0.20833\n147867|0.43056\n147868|0.22222\n147869|0.22222\n147870|0.22222\n147871|0.22222\n147872|0.20833\n147873|0.47222\n147874|0.5\n147875|0.5\n147876|0.33333\n147877|0.055556\n147878|0.125\n147879|0.58333\n147880|0.52778\n147881|0.47222\n147882|0.47222\n147883|0.5\n147884|0.63889\n147885|0.58333\n147886|0.65278\n147887|0.48611\n147888|0.52778\n147889|0.48611\n147890|0.27778\n147891|0.5\n147892|0.19444\n147893|0.26389\n147894|0.27778\n147895|0.47222\n147896|0.33333\n147897|0.33333\n147898|0.11111\n147899|0.34722\n147900|0.48611\n147901|0.47222\n147902|0.34722\n147903|0.375\n147904|0.27778\n147905|0.31944\n147906|0.22222\n147907|0.48611\n147908|0.5\n147909|0.16667\n147910|0.22222\n147911|0.5\n147912|0.34722\n147913|0.29167\n147914|0.18056\n147915|0.027778\n147916|0.26389\n147917|0.43056\n147918|0.56944\n147919|0.41667\n147920|0.22222\n147921|0.30556\n147922|0.33333\n147923|0.097222\n147924|0.45833\n147925|0.33333\n147926|0.38889\n147927|0.33333\n147928|0.33333\n147929|0.30556\n147930|0.375\n147931|0.38889\n147932|0.34722\n147933|0.43056\n147934|0.47222\n147935|0.055556\n147936|0.19444\n147937|0.41667\n147938|0.5\n147939|0.56944\n147940|0.40278\n147941|0.29167\n147942|0.5\n147943|0.5\n147944|0.69444\n147945|0.34722\n147946|0.40278\n147947|0.16667\n147948|0.5\n147949|0.43056\n147950|0.5\n147951|0.36111\n147952|0.5\n147953|0.54167\n147954|0.5\n147955|0.5\n147956|0.5\n147957|0.41667\n147958|0.41667\n147959|0.61111\n147960|0.44444\n147961|0.33333\n147962|0.5\n147963|0.13889\n147964|0.38889\n147965|0.15278\n147966|0.19444\n147967|0.5\n147968|0.51389\n147969|0.5\n147970|0.51389\n147971|0.48611\n147972|0.52778\n147973|0.70833\n147974|0.38889\n147975|0.5\n147976|0.27778\n147977|0.31944\n147978|0.45833\n147979|0.40278\n147980|0.29167\n147981|0.5\n147982|0.47222\n147983|0.51389\n147984|0.29167\n147985|0.22222\n147986|0.41667\n147987|0.45833\n147988|0.44444\n147989|0.16667\n147990|0.47222\n147991|0.5\n147992|0.5\n147993|0.51389\n147994|0.625\n147995|0.5\n147996|0.5\n147997|0.38889\n147998|0.5\n147999|0.26389\n148000|0.5\n148001|0.30556\n148002|0.48611\n148003|0.5\n148004|0.31944\n148005|0.5\n148006|0.25\n148007|0.5\n148008|0.5\n148009|0.22222\n148010|0.58333\n148011|0.38889\n148012|0.54167\n148013|0.5\n148014|0.5\n148015|0.52778\n148016|0.36111\n148017|0.22222\n148018|0.33333\n148019|0.43056\n148020|0.34722\n148021|0.33333\n148022|0.44444\n148023|0.5\n148024|0.54167\n148025|0.5\n148026|0.40278\n148027|0.5\n148028|0.41667\n148029|0.16667\n148030|0.56944\n148031|0.48611\n148032|0.5\n148033|0.45833\n148034|0.40278\n148035|0.069444\n148036|0.22222\n148037|0.26389\n148038|0.55556\n148039|0.5\n148040|0.13889\n148041|0.23611\n148042|0.44444\n148043|0.34722\n148044|0.375\n148045|0.375\n148046|0.36111\n148047|0.26389\n148048|0.22222\n148049|0.5\n148050|0.5\n148051|0.5\n148052|0.5\n148053|0.52778\n148054|0.5\n148055|0.5\n148056|0.5\n148057|0.63889\n148058|0.19444\n148059|0.26389\n148060|0.29167\n148061|0.5\n148062|0.5\n148063|0.54167\n148064|0.5\n148065|0.5\n148066|0.5\n148067|0.65278\n148068|0.43056\n148069|0.51389\n148070|0.43056\n148071|0.47222\n148072|0.40278\n148073|0.5\n148074|0.5\n148075|0.55556\n148076|0.5\n148077|0.5\n148078|0.48611\n148079|0.5\n148080|0.5\n148081|0.5\n148082|0.5\n148083|0.55556\n148084|0.5\n148085|0.45833\n148086|0.5\n148087|0.48611\n148088|0.5\n148089|0.5\n148090|0.52778\n148091|0.22222\n148092|0.51389\n148093|0.56944\n148094|0.097222\n148095|0.5\n148096|0.44444\n148097|0.45833\n148098|0.43056\n148099|0.40278\n148100|0.5\n148101|0.44444\n148102|0.5\n148103|0.22222\n148104|0.25\n148105|0.56944\n148106|0.54167\n148107|0.5\n148108|0.41667\n148109|0.27778\n148110|0.23611\n148111|0.27778\n148112|0.44444\n148113|0.5\n148114|0.43056\n148115|0.30556\n148116|0.33333\n148117|0.31944\n148118|0.36111\n148119|0.375\n148120|0.38889\n148121|0.26389\n148122|0.5\n148123|0.20833\n148124|0.5\n148125|0.47222\n148126|0.61111\n148127|0.5\n148128|0.5\n148129|0.5\n148130|0.5\n148131|0.36111\n148132|0.26389\n148133|0.36111\n148134|0.16667\n148135|0.26389\n148136|0.125\n148137|0.13889\n148138|0.16667\n148139|0.40278\n148140|0.65278\n148141|0.30556\n148142|0.26389\n148143|0.45833\n148144|0.31944\n148145|0.5\n148146|0.61111\n148147|0.5\n148148|0.55556\n148149|0.16667\n148150|0.38889\n148151|0.13889\n148152|0.20833\n148153|0.40278\n148154|0.44444\n148155|0.31944\n148156|0.45833\n148157|0.69444\n148158|0.23611\n148159|0.29167\n148160|0.23611\n148161|0.43056\n148162|0.5\n148163|0.5\n148164|0.5\n148165|0.44444\n148166|0.375\n148167|0.63889\n148168|0.58333\n148169|0.5\n148170|0.16667\n148171|0.63889\n148172|0.90278\n148173|0.73611\n148174|0.76389\n148175|0.81944\n148176|0.27778\n148177|0.27778\n148178|0.5\n148179|0.38889\n148180|0.31944\n148181|0.20833\n148182|0.18056\n148183|0.61111\n148184|0.47222\n148185|0.22222\n148186|0.5\n148187|0.36111\n148188|0.5\n148189|0.56944\n148190|0.34722\n148191|0.43056\n148192|0.54167\n148193|0.41667\n148194|0.41667\n148195|0.44444\n148196|0.36111\n148197|0.55556\n148198|0.48611\n148199|0.5\n148200|0.5\n148201|0.5\n148202|0.45833\n148203|0.22222\n148204|0.33333\n148205|0.45833\n148206|0.5\n148207|0.5\n148208|0.5\n148209|0.5\n148210|0.5\n148211|0.58333\n148212|0.51389\n148213|0.38889\n148214|0.40278\n148215|0.44444\n148216|0.51389\n148217|0.45833\n148218|0.26389\n148219|0.33333\n148220|0.29167\n148221|0.59722\n148222|0.58333\n148223|0.52778\n148224|0.5\n148225|0.38889\n148226|0.61111\n148227|0.52778\n148228|0.5\n148229|0.5\n148230|0.48611\n148231|0.54167\n148232|0.44444\n148233|0.375\n148234|0.5\n148235|0.5\n148236|0.54167\n148237|0.36111\n148238|0.34722\n148239|0.29167\n148240|0.16667\n148241|0.5\n148242|0.27778\n148243|0.27778\n148244|0.5\n148245|0.36111\n148246|0.36111\n148247|0.5\n148248|0.5\n148249|0.73611\n148250|0.47222\n148251|0.069444\n148252|0.5\n148253|0.41667\n148254|0.5\n148255|0.44444\n148256|0.72222\n148257|0.61111\n148258|0.56944\n148259|0.51389\n148260|0.5\n148261|0.27778\n148262|0.20833\n148263|0.5\n148264|0.5\n148265|0.56944\n148266|0.55556\n148267|0.52778\n148268|0.5\n148269|0.30556\n148270|0.36111\n148271|0.5\n148272|0.45833\n148273|0.48611\n148274|0.54167\n148275|0.25\n148276|0.44444\n148277|0.51389\n148278|0.5\n148279|0.54167\n148280|0.55556\n148281|0.45833\n148282|0.5\n148283|0.29167\n148284|0.47222\n148285|0.52778\n148286|0.5\n148287|0.36111\n148288|0.18056\n148289|0.27778\n148290|0.125\n148291|0.5\n148292|0.56944\n148293|0.36111\n148294|0.5\n148295|0.5\n148296|0.47222\n148297|0.22222\n148298|0.54167\n148299|0.41667\n148300|0.5\n148301|0.5\n148302|0.5\n148303|0.58333\n148304|0.5\n148305|0.5\n148306|0.5\n148307|0.55556\n148308|0.5\n148309|0.59722\n148310|0.5\n148311|0.52778\n148312|0.5\n148313|0.55556\n148314|0.5\n148315|0.069444\n148316|0.51389\n148317|0.41667\n148318|0.5\n148319|0.5\n148320|0.5\n148321|0.43056\n148322|0.5\n148323|0.5\n148324|0.54167\n148325|0.45833\n148326|0.75\n148327|0.65278\n148328|0.63889\n148329|0.40278\n148330|0.75\n148331|0.41667\n148332|0.30556\n148333|0.59722\n148334|0.5\n148335|0.66667\n148336|0.5\n148337|0.5\n148338|0.5\n148339|0.5\n148340|0.5\n148341|0.5\n148342|0.5\n148343|0.5\n148344|0.44444\n148345|0.5\n148346|0.27778\n148347|0.5\n148348|0.52778\n148349|0.56944\n148350|0.51389\n148351|0.48611\n148352|0.5\n148353|0.5\n148354|0.5\n148355|0.51389\n148356|0.5\n148357|0.61111\n148358|0.5\n148359|0.5\n148360|0.5\n148361|0.5\n148362|0.5\n148363|0.52778\n148364|0.5\n148365|0.5\n148366|0.52778\n148367|0.54167\n148368|0.43056\n148369|0.45833\n148370|0.36111\n148371|0.38889\n148372|0.375\n148373|0.65278\n148374|0.26389\n148375|0.5\n148376|0.34722\n148377|0.5\n148378|0.5\n148379|0.5\n148380|0.18056\n148381|0.5\n148382|0.5\n148383|0.27778\n148384|0.52778\n148385|0.5\n148386|0.56944\n148387|0.125\n148388|0.54167\n148389|0.52778\n148390|0.55556\n148391|0.45833\n148392|0.5\n148393|0.34722\n148394|0.5\n148395|0.33333\n148396|0.5\n148397|0.58333\n148398|0.56944\n148399|0.27778\n148400|0.5\n148401|0.61111\n148402|0.52778\n148403|0.5\n148404|0.45833\n148405|0.44444\n148406|0.34722\n148407|0.5\n148408|0.56944\n148409|0.56944\n148410|0.55556\n148411|0.33333\n148412|0.31944\n148413|0.47222\n148414|0.33333\n148415|0.34722\n148416|0.13889\n148417|0.38889\n148418|0.22222\n148419|0.27778\n148420|0.375\n148421|0.5\n148422|0.38889\n148423|0.51389\n148424|0.5\n148425|0.20833\n148426|0.11111\n148427|0.5\n148428|0.5\n148429|0.23611\n148430|0.33333\n148431|0.31944\n148432|0.29167\n148433|0.5\n148434|0.54167\n148435|0.5\n148436|0.22222\n148437|0.5\n148438|0.58333\n148439|0.59722\n148440|0.44444\n148441|0.5\n148442|0.44444\n148443|0.5\n148444|0.61111\n148445|0.52778\n148446|0.16667\n148447|0.22222\n148448|0.20833\n148449|0.38889\n148450|0.90278\n148451|0.70833\n148452|0.68056\n148453|0.56944\n148454|0.56944\n148455|0.20833\n148456|0.5\n148457|0.5\n148458|0.52778\n148459|0.27778\n148460|0.31944\n148461|0.5\n148462|0.5\n148463|0.5\n148464|0.5\n148465|0.51389\n148466|0.5\n148467|0.5\n148468|0.38889\n148469|0.375\n148470|0.5\n148471|0.54167\n148472|0.44444\n148473|0.5\n148474|0.5\n148475|0.40278\n148476|0.5\n148477|0.33333\n148478|0.5\n148479|0.43056\n148480|0.33333\n148481|0.44444\n148482|0.43056\n148483|0.43056\n148484|0.5\n148485|0.45833\n148486|0.34722\n148487|0.52778\n148488|0.5\n148489|0.5\n148490|0.55556\n148491|0.5\n148492|0.5\n148493|0.45833\n148494|0.80556\n148495|0.55556\n148496|0.51389\n148497|0.73611\n148498|0.25\n148499|0.36111\n148500|0.34722\n148501|0.5\n148502|0.625\n148503|0.59722\n148504|0.5\n148505|0.23611\n148506|0.33333\n148507|0.51389\n148508|0.51389\n148509|0.5\n148510|0.5\n148511|0.34722\n148512|0.13889\n148513|0.55556\n148514|0.48611\n148515|0.31944\n148516|0.40278\n148517|0.625\n148518|0.40278\n148519|0.59722\n148520|0.36111\n148521|0.16667\n148522|0.19444\n148523|0.27778\n148524|0.5\n148525|0.51389\n148526|0.25\n148527|0.44444\n148528|0.45833\n148529|0.22222\n148530|0.29167\n148531|0.38889\n148532|0.15278\n148533|0.13889\n148534|0.18056\n148535|0.5\n148536|0.5\n148537|0.5\n148538|0.29167\n148539|0.55556\n148540|0.5\n148541|0.36111\n148542|0.51389\n148543|0.48611\n148544|0.40278\n148545|0.5\n148546|0.41667\n148547|0.5\n148548|0.56944\n148549|0.5\n148550|0.5\n148551|0.51389\n148552|0.5\n148553|0.52778\n148554|0.47222\n148555|0.54167\n148556|0.27778\n148557|0.47222\n148558|0.38889\n148559|0.625\n148560|0.38889\n148561|0.15278\n148562|0.15278\n148563|0.44444\n148564|0.27778\n148565|0.36111\n148566|0.5\n148567|0.20833\n148568|0.20833\n148569|0.20833\n148570|0.38889\n148571|0.13889\n148572|0.5\n148573|0.5\n148574|0.70833\n148575|0.40278\n148576|0.38889\n148577|0.29167\n148578|0.36111\n148579|0.26389\n148580|0.5\n148581|0.5\n148582|0.54167\n148583|0.23611\n148584|0.19444\n148585|0.5\n148586|0.5\n148587|0.5\n148588|0.5\n148589|0.40278\n148590|0.5\n148591|0.5\n148592|0.5\n148593|0.5\n148594|0.43056\n148595|0.41667\n148596|0.27778\n148597|0.20833\n148598|0.34722\n148599|0.43056\n148600|0.22222\n148601|0.27778\n148602|0.44444\n148603|0.54167\n148604|0.5\n148605|0.52778\n148606|0.58333\n148607|0.5\n148608|0.44444\n148609|0.25\n148610|0.19444\n148611|0.55556\n148612|0.61111\n148613|0.26389\n148614|0.5\n148615|0.63889\n148616|0.69444\n148617|0.41667\n148618|0.30556\n148619|0.22222\n148620|0.5\n148621|0.23611\n148622|0.5\n148623|0.61111\n148624|0.5\n148625|0.5\n148626|0.5\n148627|0.38889\n148628|0.47222\n148629|0.56944\n148630|0.097222\n148631|0.16667\n148632|0.33333\n148633|0.25\n148634|0.33333\n148635|0.20833\n148636|0.55556\n148637|0.5\n148638|0.16667\n148639|0.5\n148640|0.56944\n148641|0.72222\n148642|0.61111\n148643|0.65278\n148644|0.5\n148645|0.58333\n148646|0.30556\n148647|0.5\n148648|0.31944\n148649|0.5\n148650|0.25\n148651|0.33333\n148652|0.54167\n148653|0.33333\n148654|0.27778\n148655|0.34722\n148656|0.36111\n148657|0.5\n148658|0.43056\n148659|0.52778\n148660|0.5\n148661|0.5\n148662|0.5\n148663|0.58333\n148664|0.125\n148665|0.055556\n148666|0.47222\n148667|0.31944\n148668|0.15278\n148669|0.055556\n148670|0.48611\n148671|0.58333\n148672|0.33333\n148673|0.31944\n148674|0.25\n148675|0.625\n148676|0.59722\n148677|0.56944\n148678|0.22222\n148679|0.27778\n148680|0.22222\n148681|0.18056\n148682|0.20833\n148683|0.027778\n148684|0.097222\n148685|0\n148686|0.18056\n148687|0.25\n148688|0.51389\n148689|0.5\n148690|0.5\n148691|0.44444\n148692|0.83333\n148693|0.69444\n148694|0.56944\n148695|0.375\n148696|0.54167\n148697|0.5\n148698|0.51389\n148699|0.58333\n148700|0.5\n148701|0.48611\n148702|0.45833\n148703|0.5\n148704|0.29167\n148705|0.5\n148706|0.54167\n148707|0.52778\n148708|0.5\n148709|0.40278\n148710|0.5\n148711|0.5\n148712|0.5\n148713|0.5\n148714|0.5\n148715|0.36111\n148716|0.11111\n148717|0.68056\n148718|0.61111\n148719|0.56944\n148720|0.25\n148721|0.15278\n148722|0.19444\n148723|0.11111\n148724|0.055556\n148725|0.66667\n148726|0.29167\n148727|0.51389\n148728|0.51389\n148729|0.26389\n148730|0.375\n148731|0.22222\n148732|0.51389\n148733|0.48611\n148734|0.73611\n148735|0.72222\n148736|0.58333\n148737|0.51389\n148738|0.29167\n148739|0.16667\n148740|0.47222\n148741|0.5\n148742|0.63889\n148743|0.59722\n148744|0.58333\n148745|0.23611\n148746|0.20833\n148747|0.54167\n148748|0.68056\n148749|0.44444\n148750|0.18056\n148751|0.5\n148752|0.38889\n148753|0.5\n148754|0.5\n148755|0.41667\n148756|0.58333\n148757|0.61111\n148758|0.55556\n148759|0.47222\n148760|0.44444\n148761|0.27778\n148762|0.44444\n148763|0.43056\n148764|0.23611\n148765|0.5\n148766|0.5\n148767|0.36111\n148768|0.33333\n148769|0.5\n148770|0.15278\n148771|0.51389\n148772|0.5\n148773|0.5\n148774|0.5\n148775|0.31944\n148776|0.61111\n148777|0.52778\n148778|0.55556\n148779|0.45833\n148780|0.5\n148781|0.61111\n148782|0.30556\n148783|0.5\n148784|0.45833\n148785|0.5\n148786|0.41667\n148787|0.125\n148788|0.51389\n148789|0.51389\n148790|0.52778\n148791|0.5\n148792|0.36111\n148793|0.55556\n148794|0.5\n148795|0.5\n148796|0.5\n148797|0.51389\n148798|0.5\n148799|0.30556\n148800|0.5\n148801|0.38889\n148802|0.48611\n148803|0.54167\n148804|0.55556\n148805|0.56944\n148806|0.23611\n148807|0.16667\n148808|0.5\n148809|0.40278\n148810|0.5\n148811|0.52778\n148812|0.40278\n148813|0.26389\n148814|0.16667\n148815|0.38889\n148816|0.58333\n148817|0.5\n148818|0.84722\n148819|0.69444\n148820|0.11111\n148821|0.13889\n148822|0.055556\n148823|0.375\n148824|0.77778\n148825|0.5\n148826|0.5\n148827|0.5\n148828|0.27778\n148829|0.44444\n148830|0.22222\n148831|0.15278\n148832|0.15278\n148833|0.5\n148834|0.5\n148835|0.5\n148836|0.51389\n148837|0.56944\n148838|0.625\n148839|0.55556\n148840|0.70833\n148841|0.33333\n148842|0.36111\n148843|0.72222\n148844|0.18056\n148845|0.5\n148846|0.58333\n148847|0.73611\n148848|0.13889\n148849|0.25\n148850|0.38889\n148851|0.5\n148852|0.25\n148853|0.40278\n148854|0.22222\n148855|0.13889\n148856|0.22222\n148857|0.23611\n148858|0.22222\n148859|0.5\n148860|0.43056\n148861|0.5\n148862|0.58333\n148863|0.63889\n148864|0.51389\n148865|0.79167\n148866|0.5\n148867|0.22222\n148868|0.45833\n148869|0.45833\n148870|0.44444\n148871|0.41667\n148872|0.31944\n148873|0.36111\n148874|0.125\n148875|0.59722\n148876|0.38889\n148877|0.22222\n148878|0.055556\n148879|0.36111\n148880|0.5\n148881|0.375\n148882|0.54167\n148883|0.81944\n148884|0.77778\n148885|0.69444\n148886|0.27778\n148887|0.51389\n148888|0.29167\n148889|0.33333\n148890|0.16667\n148891|0.375\n148892|0.20833\n148893|0.33333\n148894|0.59722\n148895|0.13889\n148896|0.27778\n148897|0.63889\n148898|0.36111\n148899|0.25\n148900|0.33333\n148901|0.18056\n148902|0.43056\n148903|0.51389\n148904|0.125\n148905|0.48611\n148906|0.44444\n148907|0.20833\n148908|0.30556\n148909|0.30556\n148910|0.23611\n148911|0.26389\n148912|0.097222\n148913|0.375\n148914|0.33333\n148915|0.18056\n148916|0.22222\n148917|0.125\n148918|0.29167\n148919|0.38889\n148920|0.30556\n148921|0.15278\n148922|0.18056\n148923|0.5\n148924|0.5\n148925|0.5\n148926|0.51389\n148927|0.5\n148928|0.44444\n148929|0.47222\n148930|0.43056\n148931|0.41667\n148932|0.44444\n148933|0.29167\n148934|0.26389\n148935|0.5\n148936|0.5\n148937|0.29167\n148938|0.56944\n148939|0.52778\n148940|0.43056\n148941|0.44444\n148942|0.5\n148943|0.66667\n148944|0.5\n148945|0.16667\n148946|0.5\n148947|0.45833\n148948|0.43056\n148949|0.25\n148950|0.43056\n148951|0.61111\n148952|0.52778\n148953|0.22222\n148954|0.55556\n148955|0.54167\n148956|0.36111\n148957|0.48611\n148958|0.33333\n148959|0.5\n148960|0.5\n148961|0.59722\n148962|0.30556\n148963|0.33333\n148964|0.73611\n148965|0.31944\n148966|0.26389\n148967|0.54167\n148968|0.55556\n148969|0.5\n148970|0.5\n148971|0.44444\n148972|0.5\n148973|0.52778\n148974|0.52778\n148975|0.5\n148976|0.5\n148977|0.5\n148978|0.61111\n148979|0.5\n148980|0.29167\n148981|0.51389\n148982|0.5\n148983|0.43056\n148984|0.45833\n148985|0.44444\n148986|0.51389\n148987|0.5\n148988|0.51389\n148989|0.41667\n148990|0.5\n148991|0.375\n148992|0.44444\n148993|0.56944\n148994|0.40278\n148995|0.27778\n148996|0.45833\n148997|0.36111\n148998|0.44444\n148999|0.5\n149000|0.52778\n149001|0.5\n149002|0.34722\n149003|0.16667\n149004|0.27778\n149005|0.16667\n149006|0.45833\n149007|0.45833\n149008|0.20833\n149009|0.51389\n149010|0.5\n149011|0.63889\n149012|0.31944\n149013|0.5\n149014|0.625\n149015|0.45833\n149016|0.5\n149017|0.44444\n149018|0.47222\n149019|0.5\n149020|0.5\n149021|0.5\n149022|0.5\n149023|0.5\n149024|0.38889\n149025|0.47222\n149026|0.22222\n149027|0.40278\n149028|0.52778\n149029|0.097222\n149030|0.5\n149031|0.58333\n149032|0.5\n149033|0.27778\n149034|0.5\n149035|0.5\n149036|0.33333\n149037|0.375\n149038|0.5\n149039|0.5\n149040|0.27778\n149041|0.5\n149042|0.5\n149043|0.44444\n149044|0.5\n149045|0.5\n149046|0.5\n149047|0.5\n149048|0.58333\n149049|0.76389\n149050|0.69444\n149051|0.73611\n149052|0.52778\n149053|0.375\n149054|0.34722\n149055|0.44444\n149056|0.44444\n149057|0.63889\n149058|0.5\n149059|0.63889\n149060|0.30556\n149061|0.84722\n149062|0.40278\n149063|0.25\n149064|0.26389\n149065|0.54167\n149066|0.51389\n149067|0.51389\n149068|0.41667\n149069|0.40278\n149070|0.51389\n149071|0.29167\n149072|0.5\n149073|0.55556\n149074|0.34722\n149075|0.5\n149076|0.5\n149077|0.5\n149078|0.5\n149079|0.5\n149080|0.5\n149081|0.47222\n149082|0.29167\n149083|0.70833\n149084|0.47222\n149085|0.33333\n149086|0.29167\n149087|0.5\n149088|0.44444\n149089|0.45833\n149090|0.27778\n149091|0.51389\n149092|0.5\n149093|0.40278\n149094|0.5\n149095|0.5\n149096|0.52778\n149097|0.5\n149098|0.88889\n149099|0.5\n149100|0.5\n149101|0.51389\n149102|0.5\n149103|0.22222\n149104|0.19444\n149105|0.55556\n149106|0.51389\n149107|0.54167\n149108|0.5\n149109|0.29167\n149110|0.097222\n149111|0.5\n149112|0.31944\n149113|0.5\n149114|0.5\n149115|0.45833\n149116|0.5\n149117|0.5\n149118|0.40278\n149119|0.18056\n149120|0.5\n149121|0.5\n149122|0.47222\n149123|0.5\n149124|0.097222\n149125|0.5\n149126|0.55556\n149127|0.48611\n149128|0.5\n149129|0.30556\n149130|0.38889\n149131|0.5\n149132|0.22222\n149133|0.18056\n149134|0.5\n149135|0.18056\n149136|0.25\n149137|0.5\n149138|0.54167\n149139|0.65278\n149140|0.51389\n149141|0.5\n149142|0.51389\n149143|0.5\n149144|0.5\n149145|0.34722\n149146|0.5\n149147|0.5\n149148|0.58333\n149149|0.15278\n149150|0.29167\n149151|0.26389\n149152|0.125\n149153|0.16667\n149154|0.5\n149155|0.41667\n149156|0.16667\n149157|0.11111\n149158|0.26389\n149159|0.52778\n149160|0.375\n149161|0.26389\n149162|0.20833\n149163|0.20833\n149164|0.625\n149165|0.25\n149166|0.61111\n149167|0.25\n149168|0.5\n149169|0.25\n149170|0.5\n149171|0.45833\n149172|0.5\n149173|0.5\n149174|0.41667\n149175|0.23611\n149176|0.19444\n149177|0.625\n149178|0.52778\n149179|0.30556\n149180|0.72222\n149181|0.5\n149182|0.27778\n149183|0.27778\n149184|0.26389\n149185|0.25\n149186|0.375\n149187|0.65278\n149188|0.33333\n149189|0.31944\n149190|0.055556\n149191|0.18056\n149192|0.5\n149193|0.59722\n149194|0.5\n149195|0.38889\n149196|0.31944\n149197|0.83333\n149198|0.73611\n149199|0.59722\n149200|0.29167\n149201|0.47222\n149202|0.33333\n149203|0.375\n149204|0.29167\n149205|0.20833\n149206|0.18056\n149207|0.26389\n149208|0.5\n149209|0.5\n149210|0.36111\n149211|0.22222\n149212|0.5\n149213|0.375\n149214|0.55556\n149215|0.61111\n149216|0.19444\n149217|0.40278\n149218|0.18056\n149219|0.45833\n149220|0.58333\n149221|0.5\n149222|0.45833\n149223|0.5\n149224|0.40278\n149225|0.31944\n149226|0.34722\n149227|0.34722\n149228|0.55556\n149229|0.41667\n149230|0.5\n149231|0.16667\n149232|0.56944\n149233|0.54167\n149234|0.59722\n149235|0.36111\n149236|0.5\n149237|0.30556\n149238|0.31944\n149239|0.15278\n149240|0.63889\n149241|0.15278\n149242|0.29167\n149243|0.51389\n149244|0.5\n149245|0.5\n149246|0.26389\n149247|0.5\n149248|0.59722\n149249|0.38889\n149250|0.16667\n149251|0.31944\n149252|0.31944\n149253|0.23611\n149254|0.27778\n149255|0.25\n149256|0.83333\n149257|0.94444\n149258|0.63889\n149259|0.52778\n149260|0.5\n149261|0.375\n149262|0.5\n149263|0.22222\n149264|0.25\n149265|0.30556\n149266|0.22222\n149267|0.38889\n149268|0.52778\n149269|0.33333\n149270|0.22222\n149271|0.22222\n149272|0.13889\n149273|0.11111\n149274|0.68056\n149275|0.73611\n149276|0.73611\n149277|0.52778\n149278|0.25\n149279|0.38889\n149280|0.19444\n149281|0.5\n149282|0.5\n149283|0.38889\n149284|0.125\n149285|0.5\n149286|0.30556\n149287|0.30556\n149288|0.65278\n149289|0.58333\n149290|0.40278\n149291|0.40278\n149292|0.36111\n149293|0.44444\n149294|0.40278\n149295|0.5\n149296|0.41667\n149297|0.29167\n149298|0.16667\n149299|0.27778\n149300|0.15278\n149301|0.54167\n149302|0.66667\n149303|0.44444\n149304|0.40278\n149305|0.20833\n149306|0.375\n149307|0.34722\n149308|0.31944\n149309|0.125\n149310|0.5\n149311|0.40278\n149312|0.5\n149313|0.52778\n149314|0.26389\n149315|0.47222\n149316|0.59722\n149317|0.31944\n149318|0.22222\n149319|0.41667\n149320|0.20833\n149321|0.125\n149322|0.18056\n149323|0.069444\n149324|0.16667\n149325|0.125\n149326|0.5\n149327|0.52778\n149328|0.54167\n149329|0.51389\n149330|0.63889\n149331|0.54167\n149332|0.33333\n149333|0.38889\n149334|0.44444\n149335|0.18056\n149336|0.26389\n149337|0.38889\n149338|0.63889\n149339|0.51389\n149340|0.29167\n149341|0.22222\n149342|0.66667\n149343|0.44444\n149344|0.34722\n149345|0.30556\n149346|0.5\n149347|0.69444\n149348|0.58333\n149349|0.52778\n149350|0.375\n149351|0.30556\n149352|0.48611\n149353|0.29167\n149354|0.54167\n149355|0.77778\n149356|0.61111\n149357|0.20833\n149358|0.18056\n149359|0.19444\n149360|0.43056\n149361|0.26389\n149362|0.22222\n149363|0.51389\n149364|0.72222\n149365|0.72222\n149366|0.65278\n149367|0.38889\n149368|0.375\n149369|0.47222\n149370|0.54167\n149371|0.5\n149372|0.29167\n149373|0.58333\n149374|0.43056\n149375|0.30556\n149376|0.38889\n149377|0.19444\n149378|0.13889\n149379|0.34722\n149380|0.125\n149381|0.5\n149382|0.44444\n149383|0.5\n149384|0.30556\n149385|0.52778\n149386|0.69444\n149387|0.65278\n149388|0.48611\n149389|0.43056\n149390|0.43056\n149391|0.34722\n149392|0.31944\n149393|0.36111\n149394|0.19444\n149395|0.18056\n149396|0.18056\n149397|0.44444\n149398|0.45833\n149399|0.26389\n149400|0.26389\n149401|0.38889\n149402|0.23611\n149403|0.40278\n149404|0.68056\n149405|0.63889\n149406|0.52778\n149407|0.5\n149408|0.41667\n149409|0.47222\n149410|0.51389\n149411|0.29167\n149412|0.11111\n149413|0.59722\n149414|0.56944\n149415|0.29167\n149416|0.27778\n149417|0.20833\n149418|0.36111\n149419|0.375\n149420|0.19444\n149421|0.72222\n149422|0.25\n149423|0.26389\n149424|0.69444\n149425|0.25\n149426|0.25\n149427|0.22222\n149428|0.44444\n149429|0.26389\n149430|0.23611\n149431|0.18056\n149432|0.23611\n149433|0.33333\n149434|0.055556\n149435|0.30556\n149436|0.47222\n149437|0.5\n149438|0.23611\n149439|0.26389\n149440|0.13889\n149441|0.083333\n149442|0.25\n149443|0.5\n149444|0.625\n149445|0.54167\n149446|0.40278\n149447|0.55556\n149448|0.48611\n149449|0.69444\n149450|0.125\n149451|0.61111\n149452|0.72222\n149453|0.26389\n149454|0.5\n149455|0.41667\n149456|0.5\n149457|0.18056\n149458|0.55556\n149459|0.20833\n149460|0.23611\n149461|0.19444\n149462|0.27778\n149463|0.36111\n149464|0.375\n149465|0.56944\n149466|0.29167\n149467|0.40278\n149468|0.40278\n149469|0.15278\n149470|0.44444\n149471|0.29167\n149472|0.25\n149473|0.52778\n149474|0.5\n149475|0.29167\n149476|0.5\n149477|0.5\n149478|0.77778\n149479|0.55556\n149480|0.63889\n149481|0.27778\n149482|0.45833\n149483|0.5\n149484|0.5\n149485|0.22222\n149486|0.25\n149487|0.5\n149488|0.5\n149489|0.33333\n149490|0.30556\n149491|0.30556\n149492|0.45833\n149493|0.31944\n149494|0.375\n149495|0.15278\n149496|0.54167\n149497|0.47222\n149498|0.5\n149499|0.375\n149500|0.61111\n149501|0.5\n149502|0.29167\n149503|0.25\n149504|0.33333\n149505|0.30556\n149506|0.34722\n149507|0.38889\n149508|0.31944\n149509|0.55556\n149510|0.61111\n149511|0.65278\n149512|0.59722\n149513|0.375\n149514|0.33333\n149515|0.27778\n149516|0.48611\n149517|0.375\n149518|0.125\n149519|0.041667\n149520|0.5\n149521|0.5\n149522|0.69444\n149523|0.5\n149524|0.48611\n149525|0.375\n149526|0.055556\n149527|0.041667\n149528|0.15278\n149529|0.23611\n149530|0.44444\n149531|0.25\n149532|0.16667\n149533|0.16667\n149534|0.44444\n149535|0.33333\n149536|0.5\n149537|0.5\n149538|0.31944\n149539|0.16667\n149540|0.375\n149541|0.22222\n149542|0.48611\n149543|0.43056\n149544|0.45833\n149545|0.31944\n149546|0.5\n149547|0.44444\n149548|0.56944\n149549|0.72222\n149550|0.44444\n149551|0.73611\n149552|0.72222\n149553|0.47222\n149554|0.70833\n149555|0.47222\n149556|0.25\n149557|0.15278\n149558|0.097222\n149559|0.18056\n149560|0.47222\n149561|0.36111\n149562|0.16667\n149563|0.41667\n149564|0.27778\n149565|0.5\n149566|0.5\n149567|0.5\n149568|0.34722\n149569|0.34722\n149570|0.25\n149571|0.29167\n149572|0.27778\n149573|0.22222\n149574|0.26389\n149575|0.16667\n149576|0.56944\n149577|0.79167\n149578|0.63889\n149579|0.55556\n149580|0.61111\n149581|0.48611\n149582|0.30556\n149583|0.31944\n149584|0.25\n149585|0.44444\n149586|0.31944\n149587|0.31944\n149588|0.31944\n149589|0.083333\n149590|0.30556\n149591|0.33333\n149592|0.16667\n149593|0.13889\n149594|0.083333\n149595|0.23611\n149596|0.125\n149597|0.29167\n149598|0.22222\n149599|0.65278\n149600|0.38889\n149601|0.16667\n149602|0.19444\n149603|0.43056\n149604|0.15278\n149605|0.72222\n149606|0.33333\n149607|0.66667\n149608|0.31944\n149609|0.44444\n149610|0.22222\n149611|0.20833\n149612|0.34722\n149613|0.36111\n149614|0.16667\n149615|0.45833\n149616|0.13889\n149617|0.23611\n149618|0.11111\n149619|0.125\n149620|0.5\n149621|0.33333\n149622|0.51389\n149623|0.33333\n149624|0.20833\n149625|0.26389\n149626|0.27778\n149627|0.27778\n149628|0.34722\n149629|0.41667\n149630|0.27778\n149631|0.51389\n149632|0.40278\n149633|0.097222\n149634|0.5\n149635|0.41667\n149636|0.61111\n149637|0.76389\n149638|0.76389\n149639|0.54167\n149640|0.36111\n149641|0.48611\n149642|0.61111\n149643|0.59722\n149644|0.26389\n149645|0.25\n149646|0.55556\n149647|0.52778\n149648|0.20833\n149649|0.29167\n149650|0.11111\n149651|0.44444\n149652|0.44444\n149653|0.13889\n149654|0.48611\n149655|0.51389\n149656|0.18056\n149657|0.43056\n149658|0.069444\n149659|0.5\n149660|0.375\n149661|0.5\n149662|0.5\n149663|0.16667\n149664|0.5\n149665|0.40278\n149666|0.375\n149667|0.34722\n149668|0.055556\n149669|0.36111\n149670|0.26389\n149671|0.375\n149672|0.125\n149673|0.23611\n149674|0.083333\n149675|0.5\n149676|0.19444\n149677|0.055556\n149678|0.22222\n149679|0.027778\n149680|0.5\n149681|0.27778\n149682|0.31944\n149683|0.51389\n149684|0.18056\n149685|0.29167\n149686|0.16667\n149687|0.5\n149688|0.31944\n149689|0.25\n149690|0.44444\n149691|0.375\n149692|0.54167\n149693|0.20833\n149694|0.25\n149695|0.48611\n149696|0.5\n149697|0.5\n149698|0.55556\n149699|0.5\n149700|0.375\n149701|0.13889\n149702|0.097222\n149703|0.25\n149704|0.41667\n149705|0.5\n149706|0.47222\n149707|0.20833\n149708|0.41667\n149709|0.34722\n149710|0.5\n149711|0.44444\n149712|0.36111\n149713|0.52778\n149714|0.40278\n149715|0.31944\n149716|0.23611\n149717|0.25\n149718|0.51389\n149719|0.51389\n149720|0.27778\n149721|0.5\n149722|0.52778\n149723|0.41667\n149724|0.25\n149725|0.31944\n149726|0.61111\n149727|0.31944\n149728|0.5\n149729|0.26389\n149730|0.45833\n149731|0.41667\n149732|0.16667\n149733|0.19444\n149734|0.375\n149735|0.25\n149736|0.26389\n149737|0.36111\n149738|0.30556\n149739|0.22222\n149740|0.16667\n149741|0.26389\n149742|0.27778\n149743|0.29167\n149744|0.40278\n149745|0.20833\n149746|0.73611\n149747|0.83333\n149748|0.69444\n149749|0.34722\n149750|0.375\n149751|0.11111\n149752|0.15278\n149753|0.44444\n149754|0.33333\n149755|0.23611\n149756|0.33333\n149757|0.18056\n149758|0.29167\n149759|0.083333\n149760|0.13889\n149761|0.375\n149762|0.20833\n149763|0.18056\n149764|0.31944\n149765|0.26389\n149766|0.47222\n149767|0.29167\n149768|0.44444\n149769|0.34722\n149770|0.34722\n149771|0.23611\n149772|0.38889\n149773|0.19444\n149774|0.25\n149775|0.29167\n149776|0.125\n149777|0.20833\n149778|0.40278\n149779|0.56944\n149780|0.63889\n149781|0.65278\n149782|0.75\n149783|0.56944\n149784|0.52778\n149785|0.5\n149786|0.5\n149787|0.40278\n149788|0.5\n149789|0.48611\n149790|0.5\n149791|0.34722\n149792|0.26389\n149793|0.61111\n149794|0.51389\n149795|0.31944\n149796|0.33333\n149797|0.38889\n149798|0.30556\n149799|0.38889\n149800|0.51389\n149801|0.25\n149802|0.18056\n149803|0.29167\n149804|0.22222\n149805|0.20833\n149806|0.15278\n149807|0.22222\n149808|0.18056\n149809|0.40278\n149810|0.44444\n149811|0.63889\n149812|0.5\n149813|0.25\n149814|0.36111\n149815|0.22222\n149816|0.11111\n149817|0.11111\n149818|0.34722\n149819|0.20833\n149820|0.34722\n149821|0.22222\n149822|0.34722\n149823|0.20833\n149824|0.51389\n149825|0.5\n149826|0.61111\n149827|0.375\n149828|0.19444\n149829|0.16667\n149830|0.5\n149831|0.56944\n149832|0.19444\n149833|0.5\n149834|0.23611\n149835|0.22222\n149836|0.31944\n149837|0.16667\n149838|0.45833\n149839|0.18056\n149840|0.66667\n149841|0.083333\n149842|0.47222\n149843|0.61111\n149844|0.51389\n149845|0.66667\n149846|0.45833\n149847|0.27778\n149848|0.5\n149849|0.34722\n149850|0.16667\n149851|0.125\n149852|0.625\n149853|0.5\n149854|0.34722\n149855|0.55556\n149856|0.27778\n149857|0.23611\n149858|0.30556\n149859|0.38889\n149860|0.34722\n149861|0.33333\n149862|0.29167\n149863|0.36111\n149864|0.33333\n149865|0.38889\n149866|0.23611\n149867|0.38889\n149868|0.33333\n149869|0.44444\n149870|0.5\n149871|0.22222\n149872|0.38889\n149873|0.36111\n149874|0.68056\n149875|0.68056\n149876|0.56944\n149877|0.54167\n149878|0.38889\n149879|0.45833\n149880|0.20833\n149881|0.5\n149882|0.5\n149883|0.51389\n149884|0.5\n149885|0.59722\n149886|0.69444\n149887|0.51389\n149888|0.45833\n149889|0.26389\n149890|0.43056\n149891|0.70833\n149892|0.66667\n149893|0.55556\n149894|0.34722\n149895|0.48611\n149896|0.5\n149897|0.625\n149898|0.041667\n149899|0\n149900|0\n149901|0.5\n149902|0.5\n149903|0.33333\n149904|0.52778\n149905|0.55556\n149906|0.55556\n149907|0.5\n149908|0.54167\n149909|0.63889\n149910|0.5\n149911|0.31944\n149912|0.47222\n149913|0.29167\n149914|0.47222\n149915|0.63889\n149916|0.68056\n149917|0.63889\n149918|0.38889\n149919|0.41667\n149920|0.54167\n149921|0.25\n149922|0.625\n149923|0.58333\n149924|0.18056\n149925|0.23611\n149926|0.23611\n149927|0.16667\n149928|0.20833\n149929|0.52778\n149930|0.44444\n149931|0.38889\n149932|0.5\n149933|0.625\n149934|0.27778\n149935|0.16667\n149936|0.5\n149937|0.375\n149938|0.51389\n149939|0.51389\n149940|0.5\n149941|0.54167\n149942|0.5\n149943|0.19444\n149944|0.23611\n149945|0.26389\n149946|0.5\n149947|0.27778\n149948|0.5\n149949|0.52778\n149950|0.25\n149951|0.5\n149952|0.68056\n149953|0.33333\n149954|0.5\n149955|0.38889\n149956|0.36111\n149957|0.43056\n149958|0.41667\n149959|0.51389\n149960|0.58333\n149961|0.33333\n149962|0.33333\n149963|0.31944\n149964|0.19444\n149965|0.083333\n149966|0.5\n149967|0.52778\n149968|0.5\n149969|0.5\n149970|0.30556\n149971|0.30556\n149972|0.23611\n149973|0.27778\n149974|0.22222\n149975|0.5\n149976|0.5\n149977|0.5\n149978|0.51389\n149979|0.5\n149980|0.23611\n149981|0.19444\n149982|0.30556\n149983|0.26389\n149984|0.5\n149985|0.27778\n149986|0.18056\n149987|0.55556\n149988|0.22222\n149989|0.51389\n149990|0.20833\n149991|0.59722\n149992|0.16667\n149993|0.27778\n149994|0.20833\n149995|0.41667\n149996|0.54167\n149997|0.52778\n149998|0.5\n149999|0.61111\n150000|0.5\n150001|0.5\n150002|0.38889\n150003|0.55556\n150004|0.58333\n150005|0.65278\n150006|0.33333\n150007|0.38889\n150008|0.20833\n150009|0.27778\n150010|0.19444\n150011|0.36111\n150012|0.5\n150013|0.5\n150014|0.43056\n150015|0.56944\n150016|0.5\n150017|0.5\n150018|0.69444\n150019|0.51389\n150020|0.38889\n150021|0.5\n150022|0.5\n150023|0.38889\n150024|0.56944\n150025|0.58333\n150026|0.5\n150027|0.48611\n150028|0.45833\n150029|0.54167\n150030|0.43056\n150031|0.44444\n150032|0.43056\n150033|0.56944\n150034|0.375\n150035|0.41667\n150036|0.63889\n150037|0.63889\n150038|0.41667\n150039|0.34722\n150040|0.38889\n150041|0.23611\n150042|0.40278\n150043|0.23611\n150044|0.33333\n150045|0.5\n150046|0.65278\n150047|0.52778\n150048|0.18056\n150049|0.36111\n150050|0.36111\n150051|0.15278\n150052|0.30556\n150053|0.44444\n150054|0.27778\n150055|0.18056\n150056|0.44444\n150057|0.23611\n150058|0.33333\n150059|0.22222\n150060|0.29167\n150061|0.41667\n150062|0.26389\n150063|0.34722\n150064|0.44444\n150065|0.20833\n150066|0.5\n150067|0.375\n150068|0.30556\n150069|0.375\n150070|0.69444\n150071|0.66667\n150072|0.56944\n150073|0.59722\n150074|0.45833\n150075|0.48611\n150076|0.55556\n150077|0.20833\n150078|0.27778\n150079|0.11111\n150080|0.23611\n150081|0.29167\n150082|0.38889\n150083|0.45833\n150084|0.25\n150085|0.20833\n150086|0.25\n150087|0.30556\n150088|0.29167\n150089|0.54167\n150090|0.16667\n150091|0.33333\n150092|0.26389\n150093|0.26389\n150094|0.20833\n150095|0.77778\n150096|0.75\n150097|0.5\n150098|0.20833\n150099|0.30556\n150100|0.43056\n150101|0.55556\n150102|0.45833\n150103|0.26389\n150104|0.27778\n150105|0.27778\n150106|0.45833\n150107|0.30556\n150108|0.44444\n150109|0.31944\n150110|0.47222\n150111|0.19444\n150112|0.20833\n150113|0.59722\n150114|0.13889\n150115|0.083333\n150116|0.16667\n150117|0.51389\n150118|0.52778\n150119|0.33333\n150120|0.40278\n150121|0.36111\n150122|0.33333\n150123|0.38889\n150124|0.34722\n150125|0.38889\n150126|0.30556\n150127|0.16667\n150128|0.22222\n150129|0.68056\n150130|0.16667\n150131|0.5\n150132|0.5\n150133|0.5\n150134|0.55556\n150135|0.25\n150136|0.38889\n150137|0.55556\n150138|0.38889\n150139|0.20833\n150140|0.26389\n150141|0.40278\n150142|0.5\n150143|0.47222\n150144|0.43056\n150145|0.5\n150146|0.5\n150147|0.5\n150148|0.5\n150149|0.25\n150150|0.5\n150151|0.61111\n150152|0.66667\n150153|0.58333\n150154|0.43056\n150155|0.44444\n150156|0.5\n150157|0.34722\n150158|0.5\n150159|0.54167\n150160|0.20833\n150161|0.45833\n150162|0.5\n150163|0.47222\n150164|0.56944\n150165|0.40278\n150166|0.375\n150167|0.44444\n150168|0.20833\n150169|0.33333\n150170|0.41667\n150171|0.29167\n150172|0.33333\n150173|0.47222\n150174|0.5\n150175|0.23611\n150176|0.19444\n150177|0.055556\n150178|0.5\n150179|0.5\n150180|0.5\n150181|0.23611\n150182|0.5\n150183|0.5\n150184|0.5\n150185|0.38889\n150186|0.15278\n150187|0.44444\n150188|0.51389\n150189|0.18056\n150190|0.38889\n150191|0.27778\n150192|0.18056\n150193|0.375\n150194|0.36111\n150195|0.30556\n150196|0.61111\n150197|0.51389\n150198|0.25\n150199|0.5\n150200|0.26389\n150201|0.44444\n150202|0.26389\n150203|0.25\n150204|0.16667\n150205|0.22222\n150206|0.083333\n150207|0.27778\n150208|0.41667\n150209|0.27778\n150210|0.63889\n150211|0.625\n150212|0.54167\n150213|0.5\n150214|0.52778\n150215|0.80556\n150216|0.81944\n150217|0.625\n150218|0.25\n150219|0.29167\n150220|0.27778\n150221|0.23611\n150222|0.125\n150223|0.16667\n150224|0.27778\n150225|0.375\n150226|0.38889\n150227|0.375\n150228|0.41667\n150229|0.66667\n150230|0.73611\n150231|0.54167\n150232|0.41667\n150233|0.33333\n150234|0.36111\n150235|0.33333\n150236|0.44444\n150237|0.19444\n150238|0.44444\n150239|0.375\n150240|0.26389\n150241|0.43056\n150242|0.20833\n150243|0.23611\n150244|0.18056\n150245|0.44444\n150246|0.55556\n150247|0.055556\n150248|0.16667\n150249|0.58333\n150250|0.38889\n150251|0.16667\n150252|0.38889\n150253|0.15278\n150254|0.36111\n150255|0.20833\n150256|0.27778\n150257|0.26389\n150258|0.59722\n150259|0.52778\n150260|0.34722\n150261|0.47222\n150262|0.40278\n150263|0.38889\n150264|0.13889\n150265|0.23611\n150266|0.15278\n150267|0.22222\n150268|0.19444\n150269|0.19444\n150270|0.125\n150271|0.29167\n150272|0.013889\n150273|0.097222\n150274|0.13889\n150275|0.5\n150276|0.25\n150277|0.25\n150278|0.29167\n150279|0.18056\n150280|0.23611\n150281|0.19444\n150282|0.5\n150283|0.63889\n150284|0.72222\n150285|0.65278\n150286|0.55556\n150287|0.41667\n150288|0.41667\n150289|0.11111\n150290|0.18056\n150291|0.19444\n150292|0.5\n150293|0.55556\n150294|0.55556\n150295|0.45833\n150296|0.5\n150297|0.30556\n150298|0.27778\n150299|0.66667\n150300|0.20833\n150301|0.5\n150302|0.041667\n150303|0\n150304|0.44444\n150305|0.51389\n150306|0.44444\n150307|0.125\n150308|0.43056\n150309|0.34722\n150310|0.25\n150311|0.5\n150312|0.36111\n150313|0.069444\n150314|0.23611\n150315|0.13889\n150316|0.19444\n150317|0.18056\n150318|0.15278\n150319|0.51389\n150320|0.5\n150321|0.51389\n150322|0.47222\n150323|0.54167\n150324|0.5\n150325|0.5\n150326|0.59722\n150327|0.5\n150328|0.33333\n150329|0.26389\n150330|0.5\n150331|0.47222\n150332|0.34722\n150333|0.44444\n150334|0.5\n150335|0.25\n150336|0.23611\n150337|0.34722\n150338|0.27778\n150339|0.51389\n150340|0.41667\n150341|0.52778\n150342|0.33333\n150343|0.625\n150344|0.38889\n150345|0.69444\n150346|0.375\n150347|0.66667\n150348|0.26389\n150349|0.625\n150350|0.375\n150351|0.375\n150352|0.63889\n150353|0.55556\n150354|0.43056\n150355|0.68056\n150356|0.34722\n150357|0.61111\n150358|0.44444\n150359|0.59722\n150360|0.27778\n150361|0.33333\n150362|0.48611\n150363|0.58333\n150364|0.61111\n150365|0.5\n150366|0.58333\n150367|0.5\n150368|0.29167\n150369|0.34722\n150370|0.5\n150371|0.25\n150372|0.5\n150373|0.59722\n150374|0.26389\n150375|0.44444\n150376|0.48611\n150377|0.5\n150378|0.5\n150379|0.5\n150380|0.5\n150381|0.5\n150382|0.33333\n150383|0.38889\n150384|0.23611\n150385|0.23611\n150386|0.069444\n150387|0.70833\n150388|0.59722\n150389|0.20833\n150390|0.15278\n150391|0.5\n150392|0.52778\n150393|0.45833\n150394|0.43056\n150395|0.56944\n150396|0.41667\n150397|0.47222\n150398|0.26389\n150399|0.5\n150400|0.56944\n150401|0.5\n150402|0.43056\n150403|0.38889\n150404|0.5\n150405|0.5\n150406|0.25\n150407|0.55556\n150408|0.5\n150409|0.33333\n150410|0.29167\n150411|0.38889\n150412|0.5\n150413|0.51389\n150414|0.5\n150415|0.5\n150416|0.43056\n150417|0.5\n150418|0.5\n150419|0.375\n150420|0.51389\n150421|0.5\n150422|0.38889\n150423|0.5\n150424|0.5\n150425|0.30556\n150426|0.48611\n150427|0.19444\n150428|0.55556\n150429|0.26389\n150430|0.44444\n150431|0.34722\n150432|0.31944\n150433|0.31944\n150434|0.34722\n150435|0.29167\n150436|0.5\n150437|0.29167\n150438|0.375\n150439|0.34722\n150440|0.27778\n150441|0.43056\n150442|0.375\n150443|0.36111\n150444|0.25\n150445|0.40278\n150446|0.29167\n150447|0.38889\n150448|0.11111\n150449|0.23611\n150450|0.19444\n150451|0.13889\n150452|0.36111\n150453|0.30556\n150454|0.36111\n150455|0.51389\n150456|0.38889\n150457|0.19444\n150458|0.45833\n150459|0.26389\n150460|0.41667\n150461|0.16667\n150462|0.11111\n150463|0.19444\n150464|0.25\n150465|0.22222\n150466|0.18056\n150467|0.20833\n150468|0.29167\n150469|0.16667\n150470|0.375\n150471|0.40278\n150472|0.20833\n150473|0.31944\n150474|0.18056\n150475|0.26389\n150476|0.26389\n150477|0.23611\n150478|0.375\n150479|0.36111\n150480|0.13889\n150481|0.33333\n150482|0.375\n150483|0.26389\n150484|0.36111\n150485|0.23611\n150486|0.5\n150487|0.26389\n150488|0.5\n150489|0.58333\n150490|0.5\n150491|0.56944\n150492|0.5\n150493|0.56944\n150494|0.5\n150495|0.5\n150496|0.55556\n150497|0.5\n150498|0.61111\n150499|0.27778\n150500|0.15278\n150501|0.51389\n150502|0.29167\n150503|0.36111\n150504|0.38889\n150505|0.18056\n150506|0.19444\n150507|0.13889\n150508|0.30556\n150509|0.36111\n150510|0.125\n150511|0.48611\n150512|0.48611\n150513|0.51389\n150514|0.54167\n150515|0.5\n150516|0.54167\n150517|0.55556\n150518|0.54167\n150519|0.51389\n150520|0.375\n150521|0.43056\n150522|0.25\n150523|0.47222\n150524|0.22222\n150525|0.27778\n150526|0.48611\n150527|0.375\n150528|0.5\n150529|0.5\n150530|0.52778\n150531|0.5\n150532|0.47222\n150533|0.5\n150534|0.5\n150535|0.36111\n150536|0.55556\n150537|0.5\n150538|0.43056\n150539|0.33333\n150540|0.083333\n150541|0.19444\n150542|0.5\n150543|0.375\n150544|0.5\n150545|0.5\n150546|0.44444\n150547|0.31944\n150548|0.44444\n150549|0.33333\n150550|0.34722\n150551|0.23611\n150552|0.27778\n150553|0.5\n150554|0.63889\n150555|0.72222\n150556|0.5\n150557|0.34722\n150558|0.5\n150559|0.5\n150560|0.44444\n150561|0.47222\n150562|0.5\n150563|0.5\n150564|0.33333\n150565|0.30556\n150566|0.5\n150567|0.38889\n150568|0.375\n150569|0.18056\n150570|0.375\n150571|0.34722\n150572|0.47222\n150573|0.26389\n150574|0.27778\n150575|0.48611\n150576|0.27778\n150577|0.33333\n150578|0.38889\n150579|0.19444\n150580|0.30556\n150581|0.27778\n150582|0.5\n150583|0.44444\n150584|0.22222\n150585|0.31944\n150586|0.29167\n150587|0.44444\n150588|0.33333\n150589|0.66667\n150590|0.5\n150591|0.47222\n150592|0.45833\n150593|0.55556\n150594|0.45833\n150595|0.38889\n150596|0.47222\n150597|0.29167\n150598|0.20833\n150599|0.5\n150600|0.5\n150601|0.5\n150602|0.5\n150603|0.5\n150604|0.52778\n150605|0.375\n150606|0.19444\n150607|0.51389\n150608|0.5\n150609|0.5\n150610|0.5\n150611|0.5\n150612|0.44444\n150613|0.30556\n150614|0.55556\n150615|0.5\n150616|0.16667\n150617|0.36111\n150618|0.44444\n150619|0.26389\n150620|0.30556\n150621|0.65278\n150622|0.56944\n150623|0.52778\n150624|0.5\n150625|0.22222\n150626|0.5\n150627|0.5\n150628|0.625\n150629|0.45833\n150630|0.33333\n150631|0.36111\n150632|0.38889\n150633|0.52778\n150634|0.27778\n150635|0.43056\n150636|0.29167\n150637|0.31944\n150638|0.44444\n150639|0.11111\n150640|0.56944\n150641|0.65278\n150642|0.79167\n150643|0.79167\n150644|0.88889\n150645|0.27778\n150646|0.40278\n150647|0.5\n150648|0.51389\n150649|0.59722\n150650|0.5\n150651|0.5\n150652|0.5\n150653|0.375\n150654|0.48611\n150655|0.44444\n150656|0.38889\n150657|0.40278\n150658|0.20833\n150659|0.13889\n150660|0.23611\n150661|0.41667\n150662|0.5\n150663|0.5\n150664|0.81944\n150665|0.59722\n150666|0.63889\n150667|0.40278\n150668|0.33333\n150669|0.5\n150670|0.5\n150671|0.58333\n150672|0.5\n150673|0.5\n150674|0.61111\n150675|0.52778\n150676|0.5\n150677|0.5\n150678|0.63889\n150679|0.5\n150680|0.5\n150681|0.5\n150682|0.31944\n150683|0.069444\n150684|0.5\n150685|0.5\n150686|0.59722\n150687|0.44444\n150688|0.5\n150689|0.5\n150690|0.5\n150691|0.52778\n150692|0.58333\n150693|0.54167\n150694|0.5\n150695|0.5\n150696|0.43056\n150697|0.55556\n150698|0.48611\n150699|0.47222\n150700|0.36111\n150701|0.5\n150702|0.43056\n150703|0.5\n150704|0.23611\n150705|0.5\n150706|0.30556\n150707|0.16667\n150708|0.5\n150709|0.23611\n150710|0.36111\n150711|0.18056\n150712|0.38889\n150713|0.66667\n150714|0.11111\n150715|0.083333\n150716|0.27778\n150717|0.55556\n150718|0.5\n150719|0.5\n150720|0.41667\n150721|0.54167\n150722|0.5\n150723|0.52778\n150724|0.5\n150725|0.375\n150726|0.47222\n150727|0.36111\n150728|0.5\n150729|0.27778\n150730|0.16667\n150731|0.29167\n150732|0.5\n150733|0.13889\n150734|0.52778\n150735|0.5\n150736|0.5\n150737|0.5\n150738|0.25\n150739|0.11111\n150740|0.11111\n150741|0.13889\n150742|0.15278\n150743|0.26389\n150744|0.84722\n150745|0.15278\n150746|0.41667\n150747|0.59722\n150748|0.23611\n150749|0.41667\n150750|0.26389\n150751|0.19444\n150752|0.5\n150753|0.38889\n150754|0.54167\n150755|0.56944\n150756|0.47222\n150757|0.55556\n150758|0.41667\n150759|0.5\n150760|0.55556\n150761|0.47222\n150762|0.27778\n150763|0.5\n150764|0.5\n150765|0.72222\n150766|0.47222\n150767|0.36111\n150768|0.625\n150769|0.19444\n150770|0.041667\n150771|0.33333\n150772|0.19444\n150773|0.83333\n150774|0.66667\n150775|0.36111\n150776|0.48611\n150777|0.5\n150778|0.5\n150779|0.5\n150780|0.5\n150781|0.5\n150782|0.30556\n150783|0.5\n150784|0.5\n150785|0.52778\n150786|0.27778\n150787|0.5\n150788|0.59722\n150789|0.40278\n150790|0.5\n150791|0.5\n150792|0.59722\n150793|0.5\n150794|0.11111\n150795|0.18056\n150796|0.40278\n150797|0.19444\n150798|0.43056\n150799|0.38889\n150800|0.33333\n150801|0.43056\n150802|0.29167\n150803|0.51389\n150804|0.5\n150805|0.5\n150806|0.38889\n150807|0.43056\n150808|0.52778\n150809|0.22222\n150810|0.33333\n150811|0.22222\n150812|0.55556\n150813|0.76389\n150814|0.70833\n150815|0.51389\n150816|0.58333\n150817|0.86111\n150818|0.44444\n150819|0.41667\n150820|0.34722\n150821|0.51389\n150822|0.33333\n150823|0.22222\n150824|0.375\n150825|0.30556\n150826|0.22222\n150827|0.38889\n150828|0.5\n150829|0.15278\n150830|0.11111\n150831|0.47222\n150832|0.48611\n150833|0.52778\n150834|0.5\n150835|0.5\n150836|0.40278\n150837|0.5\n150838|0.19444\n150839|0.5\n150840|0.56944\n150841|0.44444\n150842|0.38889\n150843|0.48611\n150844|0.33333\n150845|0.65278\n150846|0.20833\n150847|0.5\n150848|0.5\n150849|0.51389\n150850|0.5\n150851|0.13889\n150852|0.58333\n150853|0.083333\n150854|0.5\n150855|0.19444\n150856|0.41667\n150857|0.23611\n150858|0.38889\n150859|0.63889\n150860|0.23611\n150861|0.097222\n150862|0.5\n150863|0.55556\n150864|0.47222\n150865|0.27778\n150866|0.27778\n150867|0.5\n150868|0.47222\n150869|0.23611\n150870|0.41667\n150871|0.5\n150872|0.5\n150873|0.38889\n150874|0.5\n150875|0.25\n150876|0.40278\n150877|0.36111\n150878|0.43056\n150879|0.41667\n150880|0.26389\n150881|0.5\n150882|0.44444\n150883|0.15278\n150884|0.44444\n150885|0.26389\n150886|0.44444\n150887|0.23611\n150888|0.26389\n150889|0.5\n150890|0.66667\n150891|0.375\n150892|0.31944\n150893|0.54167\n150894|0.27778\n150895|0.25\n150896|0.55556\n150897|0.34722\n150898|0.56944\n150899|0.61111\n150900|0.33333\n150901|0.55556\n150902|0.43056\n150903|0.56944\n150904|0.29167\n150905|0.72222\n150906|0.31944\n150907|0.83333\n150908|0.43056\n150909|0.56944\n150910|0.26389\n150911|0.56944\n150912|0.25\n150913|0.61111\n150914|0.27778\n150915|0.68056\n150916|0.58333\n150917|0.66667\n150918|0.31944\n150919|0.70833\n150920|0.47222\n150921|0.55556\n150922|0.40278\n150923|0.56944\n150924|0.29167\n150925|0.52778\n150926|0.27778\n150927|0.11111\n150928|0.15278\n150929|0.41667\n150930|0.48611\n150931|0.63889\n150932|0.38889\n150933|0.625\n150934|0.44444\n150935|0.61111\n150936|0.5\n150937|0.47222\n150938|0.16667\n150939|0.069444\n150940|0.44444\n150941|0.52778\n150942|0.27778\n150943|0.375\n150944|0.34722\n150945|0.19444\n150946|0.5\n150947|0.5\n150948|0.5\n150949|0.5\n150950|0.5\n150951|0.625\n150952|0.54167\n150953|0.5\n150954|0.625\n150955|0.66667\n150956|0.22222\n150957|0.41667\n150958|0.25\n150959|0.38889\n150960|0.5\n150961|0.5\n150962|0.5\n150963|0.55556\n150964|0.5\n150965|0.52778\n150966|0.58333\n150967|0.5\n150968|0.51389\n150969|0.52778\n150970|0.5\n150971|0.13889\n150972|0.20833\n150973|0.29167\n150974|0.069444\n150975|0.31944\n150976|0.55556\n150977|0.27778\n150978|0.16667\n150979|0.41667\n150980|0.33333\n150981|0.45833\n150982|0.47222\n150983|0.31944\n150984|0.31944\n150985|0.30556\n150986|0.36111\n150987|0.40278\n150988|0.52778\n150989|0.54167\n150990|0.5\n150991|0.56944\n150992|0.58333\n150993|0.59722\n150994|0.29167\n150995|0.51389\n150996|0.79167\n150997|0.79167\n150998|0.5\n150999|0.18056\n151000|0.65278\n151001|0.22222\n151002|0.59722\n151003|0.38889\n151004|0.25\n151005|0.36111\n151006|0.20833\n151007|0.26389\n151008|0.375\n151009|0.52778\n151010|0.25\n151011|0.20833\n151012|0.40278\n151013|0.055556\n151014|0.30556\n151015|0.20833\n151016|0.40278\n151017|0.48611\n151018|0.625\n151019|0.19444\n151020|0.22222\n151021|0.29167\n151022|0.26389\n151023|0.26389\n151024|0.72222\n151025|0.23611\n151026|0.5\n151027|0.125\n151028|0.22222\n151029|0.125\n151030|0.55556\n151031|0.29167\n151032|0.5\n151033|0.43056\n151034|0.5\n151035|0.48611\n151036|0.48611\n151037|0.5\n151038|0.5\n151039|0.51389\n151040|0.5\n151041|0.51389\n151042|0.5\n151043|0.5\n151044|0.5\n151045|0.88889\n151046|0.63889\n151047|0.5\n151048|0.65278\n151049|0.23611\n151050|0.22222\n151051|0.125\n151052|0.63889\n151053|0.63889\n151054|0.56944\n151055|0.45833\n151056|0.44444\n151057|0.625\n151058|0.44444\n151059|0.38889\n151060|0.5\n151061|0.5\n151062|0.55556\n151063|0.5\n151064|0.69444\n151065|0.72222\n151066|0.56944\n151067|0.43056\n151068|0.36111\n151069|0.36111\n151070|0.38889\n151071|0.31944\n151072|0.33333\n151073|0.33333\n151074|0.18056\n151075|0.18056\n151076|0.5\n151077|0.55556\n151078|0.5\n151079|0.25\n151080|0.44444\n151081|0.5\n151082|0.61111\n151083|0.5\n151084|0.44444\n151085|0.5\n151086|0.54167\n151087|0.45833\n151088|0.45833\n151089|0.36111\n151090|0.41667\n151091|0.29167\n151092|0.125\n151093|0.18056\n151094|0.68056\n151095|0.72222\n151096|0.44444\n151097|0.5\n151098|0.58333\n151099|0.625\n151100|0.55556\n151101|0.54167\n151102|0.63889\n151103|0.5\n151104|0.5\n151105|0.083333\n151106|0.125\n151107|0.013889\n151108|0.15278\n151109|0.41667\n151110|0.45833\n151111|0.41667\n151112|0.25\n151113|0.375\n151114|0.5\n151115|0.5\n151116|0.125\n151117|0.59722\n151118|0.33333\n151119|0.20833\n151120|0.40278\n151121|0.30556\n151122|0.11111\n151123|0.18056\n151124|0.54167\n151125|0.47222\n151126|0.43056\n151127|0.22222\n151128|0.40278\n151129|0.5\n151130|0.33333\n151131|0.55556\n151132|0.59722\n151133|0.70833\n151134|0.59722\n151135|0.45833\n151136|0.31944\n151137|0.11111\n151138|0.20833\n151139|0.041667\n151140|0.41667\n151141|0.5\n151142|0.33333\n151143|0.5\n151144|0.20833\n151145|0.16667\n151146|0.5\n151147|0.36111\n151148|0.33333\n151149|0.58333\n151150|0.26389\n151151|0.61111\n151152|0.69444\n151153|0.61111\n151154|0.44444\n151155|0.5\n151156|0.45833\n151157|0.5\n151158|0.61111\n151159|0.59722\n151160|0.5\n151161|0.51389\n151162|0.20833\n151163|0.59722\n151164|0.41667\n151165|0.16667\n151166|0.5\n151167|0.5\n151168|0.5\n151169|0.22222\n151170|0.5\n151171|0.52778\n151172|0.75\n151173|0.79167\n151174|0.55556\n151175|0.25\n151176|0.58333\n151177|0.5\n151178|0.40278\n151179|0.59722\n151180|0.47222\n151181|0.5\n151182|0.5\n151183|0.5\n151184|0.38889\n151185|0.375\n151186|0.5\n151187|0.47222\n151188|0.5\n151189|0.5\n151190|0.40278\n151191|0.5\n151192|0.72222\n151193|0.56944\n151194|0.36111\n151195|0.31944\n151196|0.29167\n151197|0.20833\n151198|0.52778\n151199|0.59722\n151200|0.81944\n151201|0.55556\n151202|0.30556\n151203|0.48611\n151204|0.29167\n151205|0.5\n151206|0.15278\n151207|0.38889\n151208|0.5\n151209|0.15278\n151210|0.25\n151211|0.52778\n151212|0.55556\n151213|0.19444\n151214|0.54167\n151215|0.44444\n151216|0.48611\n151217|0.16667\n151218|0.26389\n151219|0.13889\n151220|0.36111\n151221|0.36111\n151222|0.51389\n151223|0.5\n151224|0.34722\n151225|0.5\n151226|0.5\n151227|0.61111\n151228|0.22222\n151229|0.625\n151230|0.58333\n151231|0.43056\n151232|0.61111\n151233|0.69444\n151234|0.44444\n151235|0.5\n151236|0.45833\n151237|0.58333\n151238|0.83333\n151239|0.83333\n151240|0.5\n151241|0.52778\n151242|0.44444\n151243|0.083333\n151244|0.36111\n151245|0.125\n151246|0.61111\n151247|0.48611\n151248|0.44444\n151249|0.70833\n151250|0.5\n151251|0.69444\n151252|0.5\n151253|0.5\n151254|0.33333\n151255|0.34722\n151256|0.45833\n151257|0.30556\n151258|0.5\n151259|0.44444\n151260|0.20833\n151261|0.5\n151262|0.5\n151263|0.25\n151264|0.31944\n151265|0.5\n151266|0.36111\n151267|0.47222\n151268|0.48611\n151269|0.55556\n151270|0.47222\n151271|0.5\n151272|0.66667\n151273|0.5\n151274|0.33333\n151275|0.44444\n151276|0.5\n151277|0.29167\n151278|0.44444\n151279|0.54167\n151280|0.55556\n151281|0.5\n151282|0.63889\n151283|0.5\n151284|0.48611\n151285|0.5\n151286|0.5\n151287|0.36111\n151288|0.52778\n151289|0.5\n151290|0.5\n151291|0.79167\n151292|0.5\n151293|0.5\n151294|0.5\n151295|0.5\n151296|0.5\n151297|0.44444\n151298|0.22222\n151299|0.34722\n151300|0.16667\n151301|0.5\n151302|0.45833\n151303|0.375\n151304|0.44444\n151305|0.54167\n151306|0.51389\n151307|0.5\n151308|0.5\n151309|0.54167\n151310|0.48611\n151311|0.5\n151312|0.47222\n151313|0.45833\n151314|0.41667\n151315|0.5\n151316|0.41667\n151317|0.31944\n151318|0.5\n151319|0.41667\n151320|0.5\n151321|0.45833\n151322|0.47222\n151323|0.5\n151324|0.5\n151325|0.44444\n151326|0.59722\n151327|0.48611\n151328|0.11111\n151329|0.5\n151330|0.11111\n151331|0.54167\n151332|0.29167\n151333|0.097222\n151334|0.19444\n151335|0.19444\n151336|0.083333\n151337|0.31944\n151338|0.23611\n151339|0.20833\n151340|0.38889\n151341|0.23611\n151342|0.41667\n151343|0.25\n151344|0.29167\n151345|0.19444\n151346|0.23611\n151347|0.38889\n151348|0.29167\n151349|0.27778\n151350|0.16667\n151351|0.19444\n151352|0.22222\n151353|0.15278\n151354|0.22222\n151355|0.31944\n151356|0.48611\n151357|0.5\n151358|0.30556\n151359|0.36111\n151360|0.47222\n151361|0.5\n151362|0.48611\n151363|0.625\n151364|0.68056\n151365|0.38889\n151366|0.45833\n151367|0.59722\n151368|0.13889\n151369|0.27778\n151370|0.31944\n151371|0.44444\n151372|0.58333\n151373|0.63889\n151374|0.58333\n151375|0.30556\n151376|0.47222\n151377|0.40278\n151378|0.59722\n151379|0.48611\n151380|0.38889\n151381|0.66667\n151382|0.45833\n151383|0.58333\n151384|0.65278\n151385|0.40278\n151386|0.43056\n151387|0.52778\n151388|0.097222\n151389|0.5\n151390|0.44444\n151391|0.5\n151392|0.5\n151393|0.22222\n151394|0.44444\n151395|0.44444\n151396|0.47222\n151397|0.27778\n151398|0.5\n151399|0.56944\n151400|0.68056\n151401|0.41667\n151402|0.25\n151403|0.44444\n151404|0.31944\n151405|0.13889\n151406|0.38889\n151407|0.16667\n151408|0.23611\n151409|0.125\n151410|0.38889\n151411|0.19444\n151412|0.72222\n151413|0.68056\n151414|0.61111\n151415|0.65278\n151416|0.56944\n151417|0.55556\n151418|0.51389\n151419|0.55556\n151420|0.26389\n151421|0.83333\n151422|0.33333\n151423|0.40278\n151424|0.41667\n151425|0.125\n151426|0.29167\n151427|0.61111\n151428|0.375\n151429|0.52778\n151430|0.55556\n151431|0.41667\n151432|0.47222\n151433|0.29167\n151434|0.44444\n151435|0.34722\n151436|0.38889\n151437|0.5\n151438|0.5\n151439|0.43056\n151440|0.44444\n151441|0.44444\n151442|0.18056\n151443|0.45833\n151444|0.375\n151445|0.5\n151446|0.26389\n151447|0.5\n151448|0.5\n151449|0.48611\n151450|0.29167\n151451|0.52778\n151452|0.5\n151453|0.33333\n151454|0.51389\n151455|0.5\n151456|0.5\n151457|0.16667\n151458|0.77778\n151459|0.73611\n151460|0.33333\n151461|0.5\n151462|0.625\n151463|0.72222\n151464|0.5\n151465|0.31944\n151466|0.16667\n151467|0.30556\n151468|0.5\n151469|0.23611\n151470|0.5\n151471|0.36111\n151472|0.25\n151473|0.36111\n151474|0.56944\n151475|0.48611\n151476|0.27778\n151477|0.18056\n151478|0.20833\n151479|0.375\n151480|0.55556\n151481|0.52778\n151482|0.5\n151483|0.23611\n151484|0.55556\n151485|0.65278\n151486|0.625\n151487|0.5\n151488|0.41667\n151489|0.56944\n151490|0.52778\n151491|0.69444\n151492|0.43056\n151493|0.33333\n151494|0.13889\n151495|0.18056\n151496|0.63889\n151497|0.48611\n151498|0.5\n151499|0.15278\n151500|0.31944\n151501|0.25\n151502|0.27778\n151503|0.55556\n151504|0.55556\n151505|0.52778\n151506|0.5\n151507|0.68056\n151508|0.27778\n151509|0.36111\n151510|0.5\n151511|0.20833\n151512|0.5\n151513|0.58333\n151514|0.5\n151515|0.55556\n151516|0.375\n151517|0.51389\n151518|0.5\n151519|0.22222\n151520|0.13889\n151521|0.18056\n151522|0.45833\n151523|0.43056\n151524|0.54167\n151525|0.31944\n151526|0.36111\n151527|0.47222\n151528|0.56944\n151529|0.73611\n151530|0.625\n151531|0.083333\n151532|0.22222\n151533|0.26389\n151534|0.18056\n151535|0.44444\n151536|0.18056\n151537|0.47222\n151538|0.63889\n151539|0.48611\n151540|0.5\n151541|0.5\n151542|0.56944\n151543|0.20833\n151544|0.66667\n151545|0.41667\n151546|0.5\n151547|0.5\n151548|0.38889\n151549|0.5\n151550|0.33333\n151551|0.43056\n151552|0.375\n151553|0.31944\n151554|0.19444\n151555|0.20833\n151556|0.31944\n151557|0.5\n151558|0.72222\n151559|0.25\n151560|0.56944\n151561|0.34722\n151562|0.26389\n151563|0.47222\n151564|0.26389\n151565|0.5\n151566|0.55556\n151567|0.5\n151568|0.47222\n151569|0.54167\n151570|0.5\n151571|0.41667\n151572|0.63889\n151573|0.51389\n151574|0.44444\n151575|0.51389\n151576|0.26389\n151577|0.36111\n151578|0.31944\n151579|0.40278\n151580|0.23611\n151581|0.5\n151582|0.68056\n151583|0.69444\n151584|0.56944\n151585|0.44444\n151586|0.72222\n151587|0.65278\n151588|0.58333\n151589|0.68056\n151590|0.69444\n151591|0.48611\n151592|0.5\n151593|0.625\n151594|0.375\n151595|0.083333\n151596|0.36111\n151597|0.31944\n151598|0.70833\n151599|0.81944\n151600|0.54167\n151601|0.375\n151602|0.52778\n151603|0.375\n151604|0.5\n151605|0.54167\n151606|0.41667\n151607|0.55556\n151608|0.5\n151609|0.30556\n151610|0.44444\n151611|0.33333\n151612|0.55556\n151613|0.52778\n151614|0.5\n151615|0.5\n151616|0.125\n151617|0.31944\n151618|0.34722\n151619|0.52778\n151620|0.43056\n151621|0.26389\n151622|0.375\n151623|0.20833\n151624|0.097222\n151625|0.125\n151626|0.25\n151627|0.375\n151628|0.47222\n151629|0.44444\n151630|0.31944\n151631|0.40278\n151632|0.5\n151633|0.63889\n151634|0.30556\n151635|0.5\n151636|0.54167\n151637|0.5\n151638|0.5\n151639|0.5\n151640|0.40278\n151641|0.23611\n151642|0.56944\n151643|0.5\n151644|0.5\n151645|0.5\n151646|0.55556\n151647|0.45833\n151648|0.375\n151649|0.51389\n151650|0.52778\n151651|0.52778\n151652|0.41667\n151653|0.44444\n151654|0.26389\n151655|0.20833\n151656|0.16667\n151657|0.22222\n151658|0.34722\n151659|0.25\n151660|0.18056\n151661|0.41667\n151662|0.51389\n151663|0.5\n151664|0.26389\n151665|0.84722\n151666|0.097222\n151667|0.16667\n151668|0.52778\n151669|0.5\n151670|0.52778\n151671|0.48611\n151672|0.5\n151673|0.58333\n151674|0.47222\n151675|0.22222\n151676|0.51389\n151677|0.84722\n151678|0.5\n151679|0.44444\n151680|0.5\n151681|0.31944\n151682|0.31944\n151683|0.34722\n151684|0.45833\n151685|0.48611\n151686|0.5\n151687|0.5\n151688|0.5\n151689|0.70833\n151690|0.5\n151691|0.59722\n151692|0.45833\n151693|0.51389\n151694|0.59722\n151695|0.41667\n151696|0.625\n151697|0.48611\n151698|0.65278\n151699|0.63889\n151700|0.65278\n151701|0.41667\n151702|0.20833\n151703|0.63889\n151704|0.47222\n151705|0.55556\n151706|0.40278\n151707|0.625\n151708|0.5\n151709|0.5\n151710|0.44444\n151711|0.5\n151712|0.5\n151713|0.5\n151714|0.5\n151715|0.52778\n151716|0.5\n151717|0.29167\n151718|0.41667\n151719|0.5\n151720|0.29167\n151721|0.38889\n151722|0.33333\n151723|0.43056\n151724|0.40278\n151725|0.40278\n151726|0.26389\n151727|0.055556\n151728|0.41667\n151729|0.58333\n151730|0.88889\n151731|0.48611\n151732|0.54167\n151733|0.44444\n151734|0.77778\n151735|0.56944\n151736|0.27778\n151737|0.25\n151738|0.097222\n151739|0.23611\n151740|0.16667\n151741|0.22222\n151742|0.125\n151743|0.26389\n151744|0.36111\n151745|0.56944\n151746|0.5\n151747|0.44444\n151748|0.5\n151749|0.5\n151750|0.56944\n151751|0.5\n151752|0.55556\n151753|0.55556\n151754|0.69444\n151755|0.43056\n151756|0.43056\n151757|0.52778\n151758|0.34722\n151759|0.5\n151760|0.55556\n151761|0.47222\n151762|0.5\n151763|0.31944\n151764|0.59722\n151765|0.40278\n151766|0.30556\n151767|0.33333\n151768|0.18056\n151769|0.61111\n151770|0.5\n151771|0.59722\n151772|0.26389\n151773|0.76389\n151774|0.875\n151775|0.54167\n151776|0.56944\n151777|0.63889\n151778|0.58333\n151779|0.47222\n151780|0.70833\n151781|0.38889\n151782|0.5\n151783|0.54167\n151784|0.55556\n151785|0.48611\n151786|0.5\n151787|0.29167\n151788|0.40278\n151789|0.47222\n151790|0.375\n151791|0.31944\n151792|0.125\n151793|0.29167\n151794|0.27778\n151795|0.44444\n151796|0.20833\n151797|0.76389\n151798|0.76389\n151799|0.34722\n151800|0.73611\n151801|0.77778\n151802|0.40278\n151803|0.16667\n151804|0.75\n151805|0.73611\n151806|0.52778\n151807|0.31944\n151808|0.54167\n151809|0.45833\n151810|0.69444\n151811|0.65278\n151812|0.66667\n151813|0.59722\n151814|0.73611\n151815|0.65278\n151816|0.52778\n151817|0.81944\n151818|0.77778\n151819|0.52778\n151820|0.58333\n151821|0.13889\n151822|0.375\n151823|0.65278\n151824|0.58333\n151825|0.80556\n151826|0.68056\n151827|0.43056\n151828|0.27778\n151829|0.86111\n151830|0.83333\n151831|0.70833\n151832|0.69444\n151833|0.23611\n151834|0.80556\n151835|0.73611\n151836|0.83333\n151837|0.73611\n151838|0.80556\n151839|0.65278\n151840|0.5\n151841|0.625\n151842|0.55556\n151843|0.5\n151844|0.5\n151845|0.41667\n151846|0.51389\n151847|0.29167\n151848|0.097222\n151849|0.27778\n151850|0.27778\n151851|0.48611\n151852|0.5\n151853|0.26389\n151854|0.375\n151855|0.52778\n151856|0.43056\n151857|0.41667\n151858|0.31944\n151859|0.36111\n151860|0.56944\n151861|0.5\n151862|0.38889\n151863|0.65278\n151864|0.31944\n151865|0.65278\n151866|0.375\n151867|0.61111\n151868|0.44444\n151869|0.40278\n151870|0.56944\n151871|0.30556\n151872|0.55556\n151873|0.59722\n151874|0.375\n151875|0.43056\n151876|0.59722\n151877|0.36111\n151878|0.40278\n151879|0.38889\n151880|0.5\n151881|0.33333\n151882|0.52778\n151883|0.44444\n151884|0.5\n151885|0.75\n151886|0.5\n151887|0.47222\n151888|0.33333\n151889|0.59722\n151890|0.27778\n151891|0.29167\n151892|0.125\n151893|0.18056\n151894|0.125\n151895|0.30556\n151896|0.41667\n151897|0.45833\n151898|0.5\n151899|0.29167\n151900|0.38889\n151901|0.47222\n151902|0.5\n151903|0.55556\n151904|0.55556\n151905|0.65278\n151906|0.55556\n151907|0.36111\n151908|0.5\n151909|0.48611\n151910|0.36111\n151911|0.48611\n151912|0.45833\n151913|0.79167\n151914|0.68056\n151915|0.76389\n151916|0.375\n151917|0.38889\n151918|0.72222\n151919|0.5\n151920|0.5\n151921|0.34722\n151922|0.47222\n151923|0.38889\n151924|0.48611\n151925|0.30556\n151926|0.43056\n151927|0.20833\n151928|0.38889\n151929|0.38889\n151930|0.44444\n151931|0.22222\n151932|0.51389\n151933|0.375\n151934|0.5\n151935|0.56944\n151936|0.625\n151937|0.5\n151938|0.33333\n151939|0.5\n151940|0.61111\n151941|0.68056\n151942|0.23611\n151943|0.083333\n151944|0.26389\n151945|0.5\n151946|0.26389\n151947|0.48611\n151948|0.38889\n151949|0.33333\n151950|0.23611\n151951|0.38889\n151952|0.51389\n151953|0.40278\n151954|0.43056\n151955|0.51389\n151956|0.45833\n151957|0.5\n151958|0.23611\n151959|0.30556\n151960|0.66667\n151961|0.47222\n151962|0.43056\n151963|0.30556\n151964|0.47222\n151965|0.22222\n151966|0.52778\n151967|0.38889\n151968|0.33333\n151969|0.40278\n151970|0.36111\n151971|0.51389\n151972|0.40278\n151973|0.5\n151974|0.69444\n151975|0.375\n151976|0.52778\n151977|0.5\n151978|0.34722\n151979|0.40278\n151980|0.56944\n151981|0.5\n151982|0.11111\n151983|0.25\n151984|0.5\n151985|0.069444\n151986|0.30556\n151987|0.47222\n151988|0.29167\n151989|0.20833\n151990|0.23611\n151991|0.375\n151992|0.30556\n151993|0.083333\n151994|0.33333\n151995|0.5\n151996|0.41667\n151997|0.31944\n151998|0.56944\n151999|0.26389\n152000|0.30556\n152001|0.79167\n152002|0.48611\n152003|0.34722\n152004|0.31944\n152005|0.48611\n152006|0.26389\n152007|0.27778\n152008|0.33333\n152009|0.25\n152010|0.30556\n152011|0.34722\n152012|0.51389\n152013|0.38889\n152014|0.25\n152015|0.29167\n152016|0.25\n152017|0.51389\n152018|0.58333\n152019|0.58333\n152020|0.33333\n152021|0.40278\n152022|0.52778\n152023|0.48611\n152024|0.22222\n152025|0.55556\n152026|0.51389\n152027|0.43056\n152028|0.27778\n152029|0.375\n152030|0.72222\n152031|0.63889\n152032|0.81944\n152033|0.26389\n152034|0.5\n152035|0.5\n152036|0.66667\n152037|0.625\n152038|0.375\n152039|0.43056\n152040|0.48611\n152041|0.47222\n152042|0.55556\n152043|0.63889\n152044|0.125\n152045|0.31944\n152046|0.52778\n152047|0.34722\n152048|0.30556\n152049|0.54167\n152050|0.43056\n152051|0.41667\n152052|0.36111\n152053|0.51389\n152054|0.58333\n152055|0.55556\n152056|0.5\n152057|0.5\n152058|0.43056\n152059|0.44444\n152060|0.56944\n152061|0.44444\n152062|0.44444\n152063|0.26389\n152064|0.30556\n152065|0.30556\n152066|0.48611\n152067|0.30556\n152068|0.5\n152069|0.5\n152070|0.76389\n152071|0.5\n152072|0.34722\n152073|0.45833\n152074|0.52778\n152075|0.47222\n152076|0.51389\n152077|0.58333\n152078|0.47222\n152079|0.23611\n152080|0.27778\n152081|0.36111\n152082|0.27778\n152083|0.47222\n152084|0.5\n152085|0.5\n152086|0.51389\n152087|0.5\n152088|0.5\n152089|0.81944\n152090|0.5\n152091|0.51389\n152092|0.48611\n152093|0.47222\n152094|0.38889\n152095|0.59722\n152096|0.55556\n152097|0.23611\n152098|0.29167\n152099|0.11111\n152100|0.083333\n152101|0.5\n152102|0.375\n152103|0.43056\n152104|0.083333\n152105|0.51389\n152106|0.69444\n152107|0.29167\n152108|0.18056\n152109|0.055556\n152110|0.11111\n152111|0.5\n152112|0.5\n152113|0.33333\n152114|0.44444\n152115|0.73611\n152116|0.38889\n152117|0.15278\n152118|0.055556\n152119|0.5\n152120|0.68056\n152121|0.47222\n152122|0.51389\n152123|0.45833\n152124|0.52778\n152125|0.69444\n152126|0.22222\n152127|0.15278\n152128|0.19444\n152129|0.56944\n152130|0.11111\n152131|0.18056\n152132|0.5\n152133|0.41667\n152134|0.13889\n152135|0.26389\n152136|0.097222\n152137|0.75\n152138|0.68056\n152139|0.45833\n152140|0.31944\n152141|0.34722\n152142|0.52778\n152143|0.55556\n152144|0.5\n152145|0.48611\n152146|0.33333\n152147|0.54167\n152148|0.5\n152149|0.59722\n152150|0.45833\n152151|0.55556\n152152|0.52778\n152153|0.5\n152154|0.69444\n152155|0.70833\n152156|0.69444\n152157|0.55556\n152158|0.34722\n152159|0.76389\n152160|0.11111\n152161|0.5\n152162|0.375\n152163|0.5\n152164|0.5\n152165|0.54167\n152166|0.72222\n152167|0.66667\n152168|0.26389\n152169|0.38889\n152170|0.375\n152171|0.43056\n152172|0.27778\n152173|0.13889\n152174|0.45833\n152175|0.59722\n152176|0.41667\n152177|0.43056\n152178|0.25\n152179|0.38889\n152180|0.44444\n152181|0.20833\n152182|0.54167\n152183|0.30556\n152184|0.54167\n152185|0.375\n152186|0.33333\n152187|0.22222\n152188|0.30556\n152189|0.29167\n152190|0.083333\n152191|0.41667\n152192|0.36111\n152193|0.36111\n152194|0.36111\n152195|0.47222\n152196|0.11111\n152197|0.36111\n152198|0.5\n152199|0.45833\n152200|0.61111\n152201|0.40278\n152202|0.48611\n152203|0.33333\n152204|0.375\n152205|0.5\n152206|0.44444\n152207|0.22222\n152208|0.23611\n152209|0.56944\n152210|0.5\n152211|0.52778\n152212|0.26389\n152213|0.52778\n152214|0.20833\n152215|0.5\n152216|0.48611\n152217|0.16667\n152218|0.5\n152219|0.33333\n152220|0.625\n152221|0.23611\n152222|0.5\n152223|0.5\n152224|0.47222\n152225|0.33333\n152226|0.52778\n152227|0.52778\n152228|0.41667\n152229|0.30556\n152230|0.27778\n152231|0.16667\n152232|0.5\n152233|0.20833\n152234|0.51389\n152235|0.29167\n152236|0.125\n152237|0.61111\n152238|0.56944\n152239|0.5\n152240|0.5\n152241|0.44444\n152242|0.26389\n152243|0.40278\n152244|0.27778\n152245|0.34722\n152246|0.5\n152247|0.52778\n152248|0.43056\n152249|0.5\n152250|0.41667\n152251|0.68056\n152252|0.72222\n152253|0.77778\n152254|0.5\n152255|0.16667\n152256|0.43056\n152257|0.22222\n152258|0.43056\n152259|0.41667\n152260|0.45833\n152261|0.625\n152262|0.47222\n152263|0.20833\n152264|0.66667\n152265|0.44444\n152266|0.26389\n152267|0.45833\n152268|0.5\n152269|0.29167\n152270|0.5\n152271|0.5\n152272|0.56944\n152273|0.33333\n152274|0.45833\n152275|0.90278\n152276|0.70833\n152277|0.5\n152278|0.5\n152279|0.5\n152280|0.41667\n152281|0.38889\n152282|0.52778\n152283|0.5\n152284|0.55556\n152285|0.58333\n152286|0.52778\n152287|0.66667\n152288|0.54167\n152289|0.26389\n152290|0.41667\n152291|0.45833\n152292|0.41667\n152293|0.56944\n152294|0.5\n152295|0.5\n152296|0.27778\n152297|0.18056\n152298|0.20833\n152299|0.25\n152300|0.54167\n152301|0.44444\n152302|0.52778\n152303|0.44444\n152304|0.5\n152305|0.45833\n152306|0.5\n152307|0.44444\n152308|0.5\n152309|0.5\n152310|0.43056\n152311|0.5\n152312|0.23611\n152313|0.45833\n152314|0.5\n152315|0.5\n152316|0.25\n152317|0.52778\n152318|0.38889\n152319|0.26389\n152320|0.55556\n152321|0.81944\n152322|0.31944\n152323|0.25\n152324|0.54167\n152325|0.44444\n152326|0.45833\n152327|0.36111\n152328|0.375\n152329|0.63889\n152330|0.5\n152331|0.5\n152332|0.68056\n152333|0.625\n152334|0.26389\n152335|0.20833\n152336|0.18056\n152337|0.5\n152338|0.375\n152339|0.26389\n152340|0.5\n152341|0.20833\n152342|0.13889\n152343|0.51389\n152344|0.26389\n152345|0.47222\n152346|0.27778\n152347|0.72222\n152348|0.41667\n152349|0.44444\n152350|0.25\n152351|0.16667\n152352|0.45833\n152353|0.22222\n152354|0.52778\n152355|0.5\n152356|0.5\n152357|0.55556\n152358|0.72222\n152359|0.5\n152360|0.625\n152361|0.40278\n152362|0.75\n152363|0.54167\n152364|0.25\n152365|0.68056\n152366|0.33333\n152367|0.48611\n152368|0.44444\n152369|0.44444\n152370|0.5\n152371|0.16667\n152372|0.5\n152373|0.48611\n152374|0.41667\n152375|0.25\n152376|0.34722\n152377|0.36111\n152378|0.875\n152379|0.33333\n152380|0.56944\n152381|0.5\n152382|0.5\n152383|0.5\n152384|0.5\n152385|0.44444\n152386|0.55556\n152387|0.58333\n152388|0.52778\n152389|0.65278\n152390|0.48611\n152391|0.69444\n152392|0.48611\n152393|0.44444\n152394|0.22222\n152395|0.31944\n152396|0.34722\n152397|0.11111\n152398|0.44444\n152399|0.52778\n152400|0.43056\n152401|0.58333\n152402|0.30556\n152403|0.29167\n152404|0.25\n152405|0.5\n152406|0.5\n152407|0.22222\n152408|0.55556\n152409|0.20833\n152410|0.375\n152411|0.29167\n152412|0.40278\n152413|0.16667\n152414|0.58333\n152415|0.43056\n152416|0.5\n152417|0.5\n152418|0.23611\n152419|0.5\n152420|0.5\n152421|0.5\n152422|0.36111\n152423|0.375\n152424|0.18056\n152425|0.5\n152426|0.52778\n152427|0.72222\n152428|0.5\n152429|0.5\n152430|0.5\n152431|0.5\n152432|0.58333\n152433|0.36111\n152434|0.27778\n152435|0.43056\n152436|0.5\n152437|0.55556\n152438|0.66667\n152439|0.55556\n152440|0.40278\n152441|0.40278\n152442|0.54167\n152443|0.625\n152444|0.48611\n152445|0.33333\n152446|0.44444\n152447|0.5\n152448|0.41667\n152449|0.38889\n152450|0.68056\n152451|0.58333\n152452|0.26389\n152453|0.36111\n152454|0.48611\n152455|0.58333\n152456|0.56944\n152457|0.33333\n152458|0.41667\n152459|0.27778\n152460|0.63889\n152461|0.43056\n152462|0.11111\n152463|0.16667\n152464|0.43056\n152465|0.54167\n152466|0.5\n152467|0.44444\n152468|0.77778\n152469|0.68056\n152470|0.41667\n152471|0.59722\n152472|0.375\n152473|0.59722\n152474|0.5\n152475|0.58333\n152476|0.22222\n152477|0.38889\n152478|0.29167\n152479|0.29167\n152480|0.055556\n152481|0.61111\n152482|0.34722\n152483|0.23611\n152484|0.22222\n152485|0.19444\n152486|0.45833\n152487|0.22222\n152488|0.5\n152489|0.66667\n152490|0.70833\n152491|0.29167\n152492|0.41667\n152493|0.51389\n152494|0.63889\n152495|0.44444\n152496|0.52778\n152497|0.5\n152498|0.68056\n152499|0.625\n152500|0.31944\n152501|0.61111\n152502|0.30556\n152503|0.375\n152504|0.40278\n152505|0.33333\n152506|0.47222\n152507|0.43056\n152508|0.52778\n152509|0.30556\n152510|0.59722\n152511|0.083333\n152512|0.38889\n152513|0.27778\n152514|0.43056\n152515|0.56944\n152516|0.56944\n152517|0.22222\n152518|0.5\n152519|0.63889\n152520|0.58333\n152521|0.5\n152522|0.5\n152523|0.5\n152524|0.55556\n152525|0.72222\n152526|0.48611\n152527|0.36111\n152528|0.13889\n152529|0.45833\n152530|0.5\n152531|0.5\n152532|0.77778\n152533|0.61111\n152534|0.51389\n152535|0.83333\n152536|0.875\n152537|0.5\n152538|0.375\n152539|0.36111\n152540|0.11111\n152541|0.51389\n152542|0.44444\n152543|0.61111\n152544|0.625\n152545|0.68056\n152546|0.52778\n152547|0.52778\n152548|0.33333\n152549|0.5\n152550|0.38889\n152551|0.51389\n152552|0.38889\n152553|0.47222\n152554|0.30556\n152555|0.56944\n152556|0.54167\n152557|0.27778\n152558|0.44444\n152559|0.44444\n152560|0.33333\n152561|0.88889\n152562|0.44444\n152563|0.61111\n152564|0.56944\n152565|0.44444\n152566|0.875\n152567|0.75\n152568|0.5\n152569|0.51389\n152570|0.36111\n152571|0.59722\n152572|0.5\n152573|0.33333\n152574|0.52778\n152575|0.59722\n152576|0.77778\n152577|0.77778\n152578|0.76389\n152579|0.5\n152580|0.44444\n152581|0.5\n152582|0.47222\n152583|0.29167\n152584|0.38889\n152585|0.26389\n152586|0.26389\n152587|0.625\n152588|0.29167\n152589|0.5\n152590|0.18056\n152591|0.59722\n152592|0.33333\n152593|0.54167\n152594|0.5\n152595|0.5\n152596|0.38889\n152597|0.16667\n152598|0.70833\n152599|0.51389\n152600|0.75\n152601|0.125\n152602|0.15278\n152603|0.20833\n152604|0.11111\n152605|0.5\n152606|0.5\n152607|0.33333\n152608|0.36111\n152609|0.22222\n152610|0.43056\n152611|0.33333\n152612|0.875\n152613|0.29167\n152614|0.34722\n152615|0.38889\n152616|0.33333\n152617|0.52778\n152618|0.5\n152619|0.43056\n152620|0.27778\n152621|0.097222\n152622|0.083333\n152623|0.20833\n152624|0.52778\n152625|0.22222\n152626|0.44444\n152627|0.36111\n152628|0.26389\n152629|0.45833\n152630|0.25\n152631|0.30556\n152632|0.34722\n152633|0.5\n152634|0.5\n152635|0.5\n152636|0.5\n152637|0.44444\n152638|0\n152639|0.73611\n152640|0.54167\n152641|0.41667\n152642|0.29167\n152643|0.61111\n152644|0.77778\n152645|0.83333\n152646|0.79167\n152647|0.30556\n152648|0.56944\n152649|0.5\n152650|0.47222\n152651|0.29167\n152652|0.25\n152653|0.44444\n152654|0.38889\n152655|0.41667\n152656|0.59722\n152657|0.33333\n152658|0.77778\n152659|0.29167\n152660|0.47222\n152661|0.5\n152662|0.47222\n152663|0.5\n152664|0.43056\n152665|0.5\n152666|0.15278\n152667|0.65278\n152668|0.51389\n152669|0.65278\n152670|0.47222\n152671|0.33333\n152672|0.20833\n152673|0.48611\n152674|0.33333\n152675|0.47222\n152676|0.79167\n152677|0.65278\n152678|0.40278\n152679|0.88889\n152680|0.5\n152681|0.52778\n152682|0.58333\n152683|0.52778\n152684|0.5\n152685|0.59722\n152686|0.40278\n152687|0.875\n152688|0.33333\n152689|0.38889\n152690|0.5\n152691|0.51389\n152692|0.125\n152693|0.90278\n152694|0.84722\n152695|0.5\n152696|0.5\n152697|0.40278\n152698|0.44444\n152699|0.54167\n152700|0.40278\n152701|0.13889\n152702|0.23611\n152703|0.68056\n152704|0.45833\n152705|0.31944\n152706|0.5\n152707|0.5\n152708|0.5\n152709|0.48611\n152710|0.5\n152711|0.5\n152712|0.19444\n152713|0.5\n152714|0.36111\n152715|0.5\n152716|0.5\n152717|0.54167\n152718|0.5\n152719|0.48611\n152720|0.44444\n152721|0.5\n152722|0.38889\n152723|0.41667\n152724|0.40278\n152725|0.18056\n152726|0.54167\n152727|0.22222\n152728|0.29167\n152729|0.33333\n152730|0.58333\n152731|0.5\n152732|0.38889\n152733|0.33333\n152734|0.19444\n152735|0.66667\n152736|0.5\n152737|0.45833\n152738|0.44444\n152739|0.51389\n152740|0.48611\n152741|0.38889\n152742|0.11111\n152743|0.19444\n152744|0.77778\n152745|0.5\n152746|0.66667\n152747|0.43056\n152748|0.5\n152749|0.5\n152750|0.43056\n152751|0.54167\n152752|0.5\n152753|0.52778\n152754|0.44444\n152755|0.5\n152756|0.5\n152757|0.43056\n152758|0.48611\n152759|0.66667\n152760|0.55556\n152761|0.5\n152762|0.5\n152763|0.41667\n152764|0.5\n152765|0.54167\n152766|0.5\n152767|0.18056\n152768|0.5\n152769|0.5\n152770|0.52778\n152771|0.44444\n152772|0.47222\n152773|0.22222\n152774|0.52778\n152775|0.54167\n152776|0.51389\n152777|0.36111\n152778|0.54167\n152779|0.5\n152780|0.47222\n152781|0.58333\n152782|0.55556\n152783|0.51389\n152784|0.55556\n152785|0.59722\n152786|0.40278\n152787|0.55556\n152788|0.44444\n152789|0.38889\n152790|0.40278\n152791|0.33333\n152792|0.5\n152793|0.5\n152794|0.5\n152795|0.41667\n152796|0.36111\n152797|0.44444\n152798|0.5\n152799|0.29167\n152800|0.23611\n152801|0.51389\n152802|0.47222\n152803|0.43056\n152804|0.20833\n152805|0.5\n152806|0.66667\n152807|0.69444\n152808|0.61111\n152809|0.33333\n152810|0.63889\n152811|0.56944\n152812|0.69444\n152813|0.44444\n152814|0.45833\n152815|0.40278\n152816|0.29167\n152817|0.40278\n152818|0.48611\n152819|0.30556\n152820|0.51389\n152821|0.15278\n152822|0.23611\n152823|0.097222\n152824|0.40278\n152825|0.69444\n152826|0.73611\n152827|0.31944\n152828|0.18056\n152829|0.19444\n152830|0.26389\n152831|0.16667\n152832|0.27778\n152833|0.19444\n152834|0.54167\n152835|0.63889\n152836|0.72222\n152837|0.5\n152838|0.52778\n152839|0.61111\n152840|0.20833\n152841|0.20833\n152842|0.34722\n152843|0.79167\n152844|0.23611\n152845|0.47222\n152846|0.76389\n152847|0.56944\n152848|0.38889\n152849|0.5\n152850|0.5\n152851|0.51389\n152852|0.43056\n152853|0.44444\n152854|0.51389\n152855|0.43056\n152856|0.26389\n152857|0.83333\n152858|0.48611\n152859|0.54167\n152860|0.68056\n152861|0.43056\n152862|0.5\n152863|0.36111\n152864|0.34722\n152865|0.36111\n152866|0.11111\n152867|0.54167\n152868|0.59722\n152869|0.5\n152870|0.5\n152871|0.375\n152872|0.26389\n152873|0.27778\n152874|0.16667\n152875|0.26389\n152876|0.5\n152877|0.5\n152878|0.5\n152879|0.48611\n152880|0.44444\n152881|0.5\n152882|0.56944\n152883|0.19444\n152884|0.52778\n152885|0.55556\n152886|0.48611\n152887|0.5\n152888|0.5\n152889|0.5\n152890|0.36111\n152891|0.44444\n152892|0.5\n152893|0.63889\n152894|0.5\n152895|0.5\n152896|0.55556\n152897|0.20833\n152898|0.5\n152899|0.51389\n152900|0.5\n152901|0.52778\n152902|0.5\n152903|0.5\n152904|0.55556\n152905|0.5\n152906|0.65278\n152907|0.5\n152908|0.5\n152909|0.5\n152910|0.5\n152911|0.52778\n152912|0.375\n152913|0.23611\n152914|0.22222\n152915|0.47222\n152916|0.56944\n152917|0.55556\n152918|0.5\n152919|0.5\n152920|0.25\n152921|0.58333\n152922|0.51389\n152923|0.40278\n152924|0.55556\n152925|0.5\n152926|0.5\n152927|0.69444\n152928|0.34722\n152929|0.59722\n152930|0.65278\n152931|0.70833\n152932|0.55556\n152933|0.41667\n152934|0.5\n152935|0.65278\n152936|0.40278\n152937|0.54167\n152938|0.52778\n152939|0.5\n152940|0.58333\n152941|0.5\n152942|0.5\n152943|0.45833\n152944|0.54167\n152945|0.48611\n152946|0.40278\n152947|0.20833\n152948|0.20833\n152949|0.33333\n152950|0.55556\n152951|0.5\n152952|0.48611\n152953|0.41667\n152954|0.20833\n152955|0.41667\n152956|0.5\n152957|0.54167\n152958|0.81944\n152959|0.625\n152960|0.63889\n152961|0.38889\n152962|0.73611\n152963|0.45833\n152964|0.5\n152965|0.29167\n152966|0.34722\n152967|0.31944\n152968|0.25\n152969|0.59722\n152970|0.61111\n152971|0.55556\n152972|0.55556\n152973|0.55556\n152974|0.58333\n152975|0.54167\n152976|0.65278\n152977|0.44444\n152978|0.44444\n152979|0.41667\n152980|0.22222\n152981|0.38889\n152982|0.55556\n152983|0.5\n152984|0.44444\n152985|0.52778\n152986|0.70833\n152987|0.44444\n152988|0.30556\n152989|0.31944\n152990|0.5\n152991|0.5\n152992|0.5\n152993|0.41667\n152994|0.40278\n152995|0.55556\n152996|0.47222\n152997|0.41667\n152998|0.25\n152999|0.40278\n153000|0.5\n153001|0.5\n153002|0.5\n153003|0.5\n153004|0.5\n153005|0.44444\n153006|0.5\n153007|0.5\n153008|0.5\n153009|0.20833\n153010|0.25\n153011|0.27778\n153012|0.375\n153013|0.47222\n153014|0.54167\n153015|0.31944\n153016|0.51389\n153017|0.23611\n153018|0.29167\n153019|0.56944\n153020|0.5\n153021|0.45833\n153022|0.34722\n153023|0.26389\n153024|0.22222\n153025|0.45833\n153026|0.18056\n153027|0.11111\n153028|0.43056\n153029|0.5\n153030|0.44444\n153031|0.5\n153032|0.36111\n153033|0.41667\n153034|0.65278\n153035|0.70833\n153036|0.5\n153037|0.51389\n153038|0.5\n153039|0.48611\n153040|0.23611\n153041|0.5\n153042|0.41667\n153043|0.41667\n153044|0.5\n153045|0.5\n153046|0.44444\n153047|0.56944\n153048|0.45833\n153049|0.45833\n153050|0.5\n153051|0.33333\n153052|0.58333\n153053|0.22222\n153054|0.19444\n153055|0.5\n153056|0.43056\n153057|0.20833\n153058|0.44444\n153059|0.54167\n153060|0.44444\n153061|0.19444\n153062|0.45833\n153063|0.52778\n153064|0.38889\n153065|0.43056\n153066|0.5\n153067|0.26389\n153068|0.47222\n153069|0.20833\n153070|0.5\n153071|0.5\n153072|0.44444\n153073|0.55556\n153074|0.5\n153075|0.55556\n153076|0.40278\n153077|0.65278\n153078|0.26389\n153079|0.5\n153080|0.33333\n153081|0.36111\n153082|0.34722\n153083|0.41667\n153084|0.48611\n153085|0.31944\n153086|0.5\n153087|0.5\n153088|0.38889\n153089|0.5\n153090|0.30556\n153091|0.5\n153092|0.5\n153093|0.48611\n153094|0.33333\n153095|0.51389\n153096|0.52778\n153097|0.20833\n153098|0.125\n153099|0.13889\n153100|0.083333\n153101|0.055556\n153102|0.55556\n153103|0.5\n153104|0.47222\n153105|0.5\n153106|0.52778\n153107|0.63889\n153108|0.41667\n153109|0.44444\n153110|0.23611\n153111|0.66667\n153112|0.22222\n153113|0.27778\n153114|0.56944\n153115|0.26389\n153116|0.65278\n153117|0.43056\n153118|0.59722\n153119|0.27778\n153120|0.43056\n153121|0.55556\n153122|0.52778\n153123|0.65278\n153124|0.5\n153125|0.75\n153126|0.22222\n153127|0.5\n153128|0.63889\n153129|0.66667\n153130|0.47222\n153131|0.55556\n153132|0.5\n153133|0.43056\n153134|0.25\n153135|0.63889\n153136|0.23611\n153137|0.27778\n153138|0.5\n153139|0.52778\n153140|0.44444\n153141|0.40278\n153142|0.51389\n153143|0.66667\n153144|0.44444\n153145|0.43056\n153146|0.5\n153147|0.18056\n153148|0.52778\n153149|0.36111\n153150|0.5\n153151|0.15278\n153152|0.11111\n153153|0.61111\n153154|0.29167\n153155|0.5\n153156|0.44444\n153157|0.40278\n153158|0.56944\n153159|0.47222\n153160|0.26389\n153161|0.30556\n153162|0.13889\n153163|0.38889\n153164|0.38889\n153165|0.5\n153166|0.43056\n153167|0.61111\n153168|0.375\n153169|0.38889\n153170|0.47222\n153171|0.5\n153172|0.5\n153173|0.45833\n153174|0.5\n153175|0.097222\n153176|0.58333\n153177|0.51389\n153178|0.38889\n153179|0.38889\n153180|0.54167\n153181|0.23611\n153182|0.55556\n153183|0.5\n153184|0.38889\n153185|0.33333\n153186|0.44444\n153187|0.58333\n153188|0.41667\n153189|0.44444\n153190|0.54167\n153191|0.54167\n153192|0.55556\n153193|0.30556\n153194|0.11111\n153195|0.51389\n153196|0.20833\n153197|0.30556\n153198|0.55556\n153199|0.5\n153200|0.48611\n153201|0.48611\n153202|0.40278\n153203|0.54167\n153204|0.33333\n153205|0.51389\n153206|0.20833\n153207|0.41667\n153208|0.33333\n153209|0.38889\n153210|0.47222\n153211|0.5\n153212|0.45833\n153213|0.22222\n153214|0.5\n153215|0.75\n153216|0.38889\n153217|0.27778\n153218|0.38889\n153219|0.5\n153220|0.5\n153221|0.5\n153222|0.40278\n153223|0.43056\n153224|0.66667\n153225|0.52778\n153226|0.43056\n153227|0.20833\n153228|0.22222\n153229|0.47222\n153230|0.29167\n153231|0.34722\n153232|0.31944\n153233|0.5\n153234|0.41667\n153235|0.22222\n153236|0.31944\n153237|0.23611\n153238|0.77778\n153239|0.61111\n153240|0.41667\n153241|0.73611\n153242|0.40278\n153243|0.77778\n153244|0.83333\n153245|0.66667\n153246|0.54167\n153247|0.20833\n153248|0.5\n153249|0.59722\n153250|0.43056\n153251|0.55556\n153252|0.59722\n153253|0.36111\n153254|0.15278\n153255|0.5\n153256|0.61111\n153257|0.54167\n153258|0.25\n153259|0.75\n153260|0.66667\n153261|0.55556\n153262|0.59722\n153263|0.59722\n153264|0.625\n153265|0.36111\n153266|0.5\n153267|0.47222\n153268|0.61111\n153269|0.61111\n153270|0.66667\n153271|0.65278\n153272|0.5\n153273|0.5\n153274|0.54167\n153275|0.51389\n153276|0.5\n153277|0.58333\n153278|0.5\n153279|0.52778\n153280|0.44444\n153281|0.63889\n153282|0.5\n153283|0.55556\n153284|0.29167\n153285|0.44444\n153286|0.25\n153287|0.25\n153288|0.40278\n153289|0.19444\n153290|0.26389\n153291|0.47222\n153292|0.65278\n153293|0.625\n153294|0.54167\n153295|0.41667\n153296|0.56944\n153297|0.56944\n153298|0.52778\n153299|0.5\n153300|0.5\n153301|0.625\n153302|0.5\n153303|0.375\n153304|0.27778\n153305|0.36111\n153306|0.40278\n153307|0.38889\n153308|0.5\n153309|0.44444\n153310|0.48611\n153311|0.20833\n153312|0.13889\n153313|0\n153314|0.27778\n153315|0.30556\n153316|0.125\n153317|0.22222\n153318|0.59722\n153319|0.51389\n153320|0.80556\n153321|0.58333\n153322|0.63889\n153323|0.40278\n153324|0.45833\n153325|0.44444\n153326|0.43056\n153327|0.48611\n153328|0.18056\n153329|0.5\n153330|0.66667\n153331|0.63889\n153332|0.51389\n153333|0.5\n153334|0.36111\n153335|0.19444\n153336|0.43056\n153337|0.15278\n153338|0.54167\n153339|0.52778\n153340|0.16667\n153341|0.83333\n153342|0.66667\n153343|0.72222\n153344|0.63889\n153345|0.59722\n153346|0.68056\n153347|0.76389\n153348|0.055556\n153349|0.52778\n153350|0.27778\n153351|0.61111\n153352|0.5\n153353|0.52778\n153354|0.33333\n153355|0.51389\n153356|0.52778\n153357|0.38889\n153358|0.38889\n153359|0.38889\n153360|0.23611\n153361|0.72222\n153362|0.66667\n153363|0.5\n153364|0.54167\n153365|0.77778\n153366|0.72222\n153367|0.55556\n153368|0.34722\n153369|0.34722\n153370|0.33333\n153371|0.22222\n153372|0.083333\n153373|0.11111\n153374|0.5\n153375|0.61111\n153376|0.23611\n153377|0.26389\n153378|0.33333\n153379|0.27778\n153380|0.56944\n153381|0.61111\n153382|0.59722\n153383|0.5\n153384|0.5\n153385|0.80556\n153386|0.36111\n153387|0.47222\n153388|0.44444\n153389|0.31944\n153390|0.27778\n153391|0.40278\n153392|0.29167\n153393|0.75\n153394|0.55556\n153395|0.625\n153396|0.33333\n153397|0.5\n153398|0.51389\n153399|0.73611\n153400|0.5\n153401|0.33333\n153402|0.40278\n153403|0.45833\n153404|0.19444\n153405|0.5\n153406|0.44444\n153407|0.65278\n153408|0.66667\n153409|0.34722\n153410|0.27778\n153411|0.5\n153412|0.30556\n153413|0.72222\n153414|0.5\n153415|0.81944\n153416|0.75\n153417|0.70833\n153418|0.31944\n153419|0.44444\n153420|0.55556\n153421|0.52778\n153422|0.625\n153423|0.47222\n153424|0.30556\n153425|0.38889\n153426|0.29167\n153427|0.5\n153428|0.51389\n153429|0.45833\n153430|0.45833\n153431|0.33333\n153432|0.88889\n153433|0.22222\n153434|0.16667\n153435|0.33333\n153436|0.66667\n153437|0.56944\n153438|0.79167\n153439|0.69444\n153440|0.80556\n153441|0.55556\n153442|0.625\n153443|0.625\n153444|0.65278\n153445|0.83333\n153446|0.45833\n153447|0.44444\n153448|0.055556\n153449|0.40278\n153450|0.34722\n153451|0.31944\n153452|0.23611\n153453|0.23611\n153454|0.625\n153455|0.44444\n153456|0.5\n153457|0.5\n153458|0.54167\n153459|0.54167\n153460|0.61111\n153461|0.45833\n153462|0.54167\n153463|0.5\n153464|0.43056\n153465|0.51389\n153466|0.29167\n153467|0.65278\n153468|0.58333\n153469|0.5\n153470|0.44444\n153471|0.5\n153472|0.33333\n153473|0.5\n153474|0.375\n153475|0.44444\n153476|0.69444\n153477|0.65278\n153478|0.51389\n153479|0.58333\n153480|0.29167\n153481|0.54167\n153482|0.36111\n153483|0.52778\n153484|0.30556\n153485|0.36111\n153486|0.38889\n153487|0.41667\n153488|0.31944\n153489|0.22222\n153490|0.38889\n153491|0.375\n153492|0.27778\n153493|0.33333\n153494|0.15278\n153495|0.15278\n153496|0.125\n153497|0.26389\n153498|0.31944\n153499|0.40278\n153500|0.23611\n153501|0.30556\n153502|0.23611\n153503|0.38889\n153504|0.40278\n153505|0.44444\n153506|0.52778\n153507|0.58333\n153508|0.44444\n153509|0.055556\n153510|0.16667\n153511|0.33333\n153512|0.33333\n153513|0.30556\n153514|0.41667\n153515|0.52778\n153516|0.66667\n153517|0.27778\n153518|0.29167\n153519|0.36111\n153520|0.38889\n153521|0.375\n153522|0.27778\n153523|0.27778\n153524|0.25\n153525|0.47222\n153526|0.30556\n153527|0.66667\n153528|0.86111\n153529|0.16667\n153530|0.45833\n153531|0.31944\n153532|0.44444\n153533|0.375\n153534|0.5\n153535|0.55556\n153536|0.5\n153537|0.5\n153538|0.52778\n153539|0.5\n153540|0.5\n153541|0.5\n153542|0.625\n153543|0.5\n153544|0.5\n153545|0.51389\n153546|0.5\n153547|0.48611\n153548|0.52778\n153549|0.5\n153550|0.5\n153551|0.61111\n153552|0.26389\n153553|0.48611\n153554|0.27778\n153555|0.5\n153556|0.48611\n153557|0.55556\n153558|0.48611\n153559|0.5\n153560|0.5\n153561|0.81944\n153562|0.34722\n153563|0.40278\n153564|0.61111\n153565|0.15278\n153566|0.41667\n153567|0.41667\n153568|0.5\n153569|0.30556\n153570|0.5\n153571|0.40278\n153572|0.36111\n153573|0.26389\n153574|0.5\n153575|0.5\n153576|0.52778\n153577|0.5\n153578|0.45833\n153579|0.5\n153580|0.44444\n153581|0.47222\n153582|0.5\n153583|0.38889\n153584|0.375\n153585|0.25\n153586|0.40278\n153587|0.40278\n153588|0.33333\n153589|0.52778\n153590|0.40278\n153591|0.5\n153592|0.55556\n153593|0.36111\n153594|0.5\n153595|0.5\n153596|0.5\n153597|0.26389\n153598|0.38889\n153599|0.20833\n153600|0.25\n153601|0.33333\n153602|0.48611\n153603|0.59722\n153604|0.55556\n153605|0.5\n153606|0.51389\n153607|0.44444\n153608|0.38889\n153609|0.58333\n153610|0.45833\n153611|0.30556\n153612|0.22222\n153613|0.22222\n153614|0.31944\n153615|0.26389\n153616|0.5\n153617|0.5\n153618|0.55556\n153619|0.47222\n153620|0.48611\n153621|0.22222\n153622|0.19444\n153623|0.29167\n153624|0.48611\n153625|0.59722\n153626|0.375\n153627|0.38889\n153628|0.375\n153629|0.31944\n153630|0.29167\n153631|0.25\n153632|0.20833\n153633|0.19444\n153634|0.19444\n153635|0.34722\n153636|0.13889\n153637|0.33333\n153638|0.41667\n153639|0.59722\n153640|0.38889\n153641|0.5\n153642|0.22222\n153643|0.5\n153644|0.56944\n153645|0.38889\n153646|0.30556\n153647|0.19444\n153648|0.44444\n153649|0.16667\n153650|0.375\n153651|0.16667\n153652|0.5\n153653|0.44444\n153654|0.27778\n153655|0.38889\n153656|0.5\n153657|0.5\n153658|0.5\n153659|0.40278\n153660|0.26389\n153661|0.5\n153662|0.38889\n153663|0.56944\n153664|0.16667\n153665|0.55556\n153666|0.5\n153667|0.5\n153668|0.5\n153669|0.54167\n153670|0.5\n153671|0.43056\n153672|0.55556\n153673|0.55556\n153674|0.5\n153675|0.5\n153676|0.48611\n153677|0.55556\n153678|0.45833\n153679|0.58333\n153680|0.5\n153681|0.44444\n153682|0.51389\n153683|0.44444\n153684|0.25\n153685|0.56944\n153686|0.45833\n153687|0.52778\n153688|0.44444\n153689|0.41667\n153690|0.51389\n153691|0.5\n153692|0.5\n153693|0.5\n153694|0.40278\n153695|0.52778\n153696|0.5\n153697|0.5\n153698|0.5\n153699|0.31944\n153700|0.5\n153701|0.48611\n153702|0.51389\n153703|0.5\n153704|0.25\n153705|0.5\n153706|0.45833\n153707|0.44444\n153708|0.55556\n153709|0.63889\n153710|0.45833\n153711|0.26389\n153712|0.5\n153713|0.33333\n153714|0.40278\n153715|0.45833\n153716|0.45833\n153717|0.47222\n153718|0.44444\n153719|0.44444\n153720|0.52778\n153721|0.44444\n153722|0.40278\n153723|0.125\n153724|0.47222\n153725|0.30556\n153726|0.16667\n153727|0.52778\n153728|0.72222\n153729|0.5\n153730|0.5\n153731|0.31944\n153732|0.45833\n153733|0.16667\n153734|0.48611\n153735|0.43056\n153736|0.5\n153737|0.44444\n153738|0.44444\n153739|0.5\n153740|0.5\n153741|0.5\n153742|0.72222\n153743|0.5\n153744|0.5\n153745|0.083333\n153746|0.41667\n153747|0.29167\n153748|0.31944\n153749|0.58333\n153750|0.81944\n153751|0.63889\n153752|0.34722\n153753|0.55556\n153754|0.44444\n153755|0.61111\n153756|0.51389\n153757|0.31944\n153758|0.30556\n153759|0.18056\n153760|0.19444\n153761|0.55556\n153762|0.5\n153763|0.58333\n153764|0.5\n153765|0.5\n153766|0.54167\n153767|0.56944\n153768|0.54167\n153769|0.51389\n153770|0.56944\n153771|0.44444\n153772|0.34722\n153773|0.5\n153774|0.47222\n153775|0.5\n153776|0.38889\n153777|0.41667\n153778|0.5\n153779|0.20833\n153780|0.25\n153781|0.5\n153782|0.58333\n153783|0.68056\n153784|0.5\n153785|0.375\n153786|0.30556\n153787|0.45833\n153788|0.5\n153789|0.55556\n153790|0.44444\n153791|0.58333\n153792|0.33333\n153793|0.5\n153794|0.45833\n153795|0.54167\n153796|0.54167\n153797|0.59722\n153798|0.29167\n153799|0.63889\n153800|0.68056\n153801|0.19444\n153802|0.34722\n153803|0.29167\n153804|0.38889\n153805|0.41667\n153806|0.125\n153807|0.16667\n153808|0.52778\n153809|0.33333\n153810|0.31944\n153811|0.59722\n153812|0.55556\n153813|0.055556\n153814|0.65278\n153815|0.52778\n153816|0.5\n153817|0.54167\n153818|0.38889\n153819|0.29167\n153820|0.59722\n153821|0.29167\n153822|0.45833\n153823|0.66667\n153824|0.45833\n153825|0.52778\n153826|0.55556\n153827|0.84722\n153828|0.48611\n153829|0.55556\n153830|0.16667\n153831|0.23611\n153832|0.48611\n153833|0.29167\n153834|0.52778\n153835|0.34722\n153836|0.45833\n153837|0.65278\n153838|0.26389\n153839|0.52778\n153840|0.56944\n153841|0.40278\n153842|0.30556\n153843|0.47222\n153844|0.40278\n153845|0.44444\n153846|0.44444\n153847|0.41667\n153848|0.45833\n153849|0.29167\n153850|0.25\n153851|0.34722\n153852|0.30556\n153853|0.76389\n153854|0.65278\n153855|0.5\n153856|0.34722\n153857|0.36111\n153858|0.41667\n153859|0.44444\n153860|0.375\n153861|0.27778\n153862|0.5\n153863|0.22222\n153864|0.33333\n153865|0.375\n153866|0.59722\n153867|0.18056\n153868|0.31944\n153869|0.38889\n153870|0.55556\n153871|0.44444\n153872|0.45833\n153873|0.52778\n153874|0.38889\n153875|0.40278\n153876|0.375\n153877|0.36111\n153878|0.13889\n153879|0.5\n153880|0.38889\n153881|0.56944\n153882|0.52778\n153883|0.15278\n153884|0.38889\n153885|0.52778\n153886|0.56944\n153887|0.19444\n153888|0.19444\n153889|0.61111\n153890|0.40278\n153891|0.59722\n153892|0.55556\n153893|0.55556\n153894|0.5\n153895|0.5\n153896|0.25\n153897|0.43056\n153898|0.375\n153899|0.5\n153900|0.41667\n153901|0.38889\n153902|0.58333\n153903|0.40278\n153904|0.55556\n153905|0.27778\n153906|0.22222\n153907|0.23611\n153908|0.23611\n153909|0.16667\n153910|0.43056\n153911|0.33333\n153912|0.56944\n153913|0.16667\n153914|0.29167\n153915|0.5\n153916|0.5\n153917|0.36111\n153918|0.5\n153919|0.20833\n153920|0.44444\n153921|0.31944\n153922|0.25\n153923|0.38889\n153924|0.51389\n153925|0.5\n153926|0.34722\n153927|0.11111\n153928|0.36111\n153929|0.26389\n153930|0.22222\n153931|0.29167\n153932|0.18056\n153933|0.44444\n153934|0.65278\n153935|0.44444\n153936|0.5\n153937|0.15278\n153938|0.30556\n153939|0.375\n153940|0.16667\n153941|0.55556\n153942|0.16667\n153943|0.38889\n153944|0.65278\n153945|0.40278\n153946|0.5\n153947|0.5\n153948|0.36111\n153949|0.26389\n153950|0.26389\n153951|0.33333\n153952|0.29167\n153953|0.44444\n153954|0.625\n153955|0.38889\n153956|0.30556\n153957|0.59722\n153958|0.33333\n153959|0.23611\n153960|0.43056\n153961|0.5\n153962|0.5\n153963|0.5\n153964|0.63889\n153965|0.45833\n153966|0.5\n153967|0.5\n153968|0.55556\n153969|0.48611\n153970|0.5\n153971|0.38889\n153972|0.36111\n153973|0.26389\n153974|0.48611\n153975|0.40278\n153976|0.625\n153977|0.44444\n153978|0.44444\n153979|0.40278\n153980|0.36111\n153981|0.29167\n153982|0.68056\n153983|0.40278\n153984|0.33333\n153985|0.25\n153986|0.61111\n153987|0.54167\n153988|0.59722\n153989|0.51389\n153990|0.125\n153991|0.30556\n153992|0.38889\n153993|0.33333\n153994|0.34722\n153995|0.48611\n153996|0.20833\n153997|0.18056\n153998|0.16667\n153999|0.58333\n154000|0.52778\n154001|0.52778\n154002|0.48611\n154003|0.44444\n154004|0.45833\n154005|0.5\n154006|0.54167\n154007|0.40278\n154008|0.40278\n154009|0.34722\n154010|0.40278\n154011|0.5\n154012|0.5\n154013|0.38889\n154014|0.45833\n154015|0.5\n154016|0.18056\n154017|0.5\n154018|0.55556\n154019|0.47222\n154020|0.25\n154021|0.30556\n154022|0.63889\n154023|0.5\n154024|0.47222\n154025|0.29167\n154026|0.47222\n154027|0.5\n154028|0.5\n154029|0.51389\n154030|0.23611\n154031|0.58333\n154032|0.5\n154033|0.58333\n154034|0.51389\n154035|0.61111\n154036|0.52778\n154037|0.5\n154038|0.5\n154039|0.5\n154040|0.58333\n154041|0.52778\n154042|0.56944\n154043|0.47222\n154044|0.5\n154045|0.34722\n154046|0.5\n154047|0.51389\n154048|0.5\n154049|0.44444\n154050|0.38889\n154051|0.5\n154052|0.5\n154053|0.30556\n154054|0.5\n154055|0.48611\n154056|0.5\n154057|0.55556\n154058|0.26389\n154059|0.54167\n154060|0.5\n154061|0.51389\n154062|0.5\n154063|0.5\n154064|0.52778\n154065|0.40278\n154066|0.52778\n154067|0.055556\n154068|0.5\n154069|0.61111\n154070|0.56944\n154071|0.5\n154072|0.43056\n154073|0.52778\n154074|0.5\n154075|0.47222\n154076|0.5\n154077|0.5\n154078|0.5\n154079|0.5\n154080|0.55556\n154081|0.45833\n154082|0.43056\n154083|0.54167\n154084|0.30556\n154085|0.61111\n154086|0.5\n154087|0.61111\n154088|0.33333\n154089|0.75\n154090|0.43056\n154091|0.19444\n154092|0.5\n154093|0.30556\n154094|0.58333\n154095|0.375\n154096|0.5\n154097|0.44444\n154098|0.5\n154099|0.48611\n154100|0.41667\n154101|0.56944\n154102|0.33333\n154103|0.5\n154104|0.31944\n154105|0.5\n154106|0.44444\n154107|0.54167\n154108|0.5\n154109|0.5\n154110|0.5\n154111|0.41667\n154112|0.41667\n154113|0.5\n154114|0.33333\n154115|0.44444\n154116|0.77778\n154117|0.48611\n154118|0.58333\n154119|0.66667\n154120|0.18056\n154121|0.45833\n154122|0.40278\n154123|0.54167\n154124|0.54167\n154125|0.66667\n154126|0.51389\n154127|0.33333\n154128|0.61111\n154129|0.55556\n154130|0.13889\n154131|0.5\n154132|0.5\n154133|0.23611\n154134|0.5\n154135|0.25\n154136|0.40278\n154137|0.625\n154138|0.38889\n154139|0.52778\n154140|0.44444\n154141|0.47222\n154142|0.48611\n154143|0.625\n154144|0.76389\n154145|0.5\n154146|0.5\n154147|0.16667\n154148|0.5\n154149|0.625\n154150|0.18056\n154151|0.48611\n154152|0.72222\n154153|0.58333\n154154|0.27778\n154155|0.27778\n154156|0.52778\n154157|0.31944\n154158|0.375\n154159|0.52778\n154160|0.48611\n154161|0.52778\n154162|0.5\n154163|0.44444\n154164|0.45833\n154165|0.38889\n154166|0.69444\n154167|0.63889\n154168|0.5\n154169|0.55556\n154170|0.51389\n154171|0.52778\n154172|0.56944\n154173|0.5\n154174|0.61111\n154175|0.59722\n154176|0.375\n154177|0.26389\n154178|0.26389\n154179|0.44444\n154180|0.20833\n154181|0.38889\n154182|0.27778\n154183|0.44444\n154184|0.26389\n154185|0.25\n154186|0.36111\n154187|0.55556\n154188|0.56944\n154189|0.34722\n154190|0.33333\n154191|0.51389\n154192|0.5\n154193|0.55556\n154194|0.38889\n154195|0.5\n154196|0.44444\n154197|0.38889\n154198|0.63889\n154199|0.29167\n154200|0.20833\n154201|0.54167\n154202|0.5\n154203|0.5\n154204|0.36111\n154205|0.5\n154206|0.61111\n154207|0.47222\n154208|0.5\n154209|0.18056\n154210|0.36111\n154211|0.41667\n154212|0.29167\n154213|0.48611\n154214|0.36111\n154215|0.375\n154216|0.5\n154217|0.47222\n154218|0.44444\n154219|0.5\n154220|0.5\n154221|0.625\n154222|0.41667\n154223|0.22222\n154224|0.68056\n154225|0.5\n154226|0.33333\n154227|0.34722\n154228|0.40278\n154229|0.26389\n154230|0.48611\n154231|0.61111\n154232|0.33333\n154233|0.5\n154234|0.31944\n154235|0.5\n154236|0.25\n154237|0.44444\n154238|0.33333\n154239|0.5\n154240|0.44444\n154241|0.625\n154242|0.5\n154243|0.29167\n154244|0.34722\n154245|0.125\n154246|0.41667\n154247|0.5\n154248|0.45833\n154249|0.55556\n154250|0.5\n154251|0.5\n154252|0.44444\n154253|0.44444\n154254|0.5\n154255|0.44444\n154256|0.11111\n154257|0.23611\n154258|0.5\n154259|0.15278\n154260|0.5\n154261|0.5\n154262|0.43056\n154263|0.20833\n154264|0.36111\n154265|0.51389\n154266|0.52778\n154267|0.5\n154268|0.44444\n154269|0.48611\n154270|0.5\n154271|0.5\n154272|0.5\n154273|0.5\n154274|0.44444\n154275|0.59722\n154276|0.38889\n154277|0.16667\n154278|0.47222\n154279|0.5\n154280|0.16667\n154281|0.30556\n154282|0.51389\n154283|0.43056\n154284|0.31944\n154285|0.66667\n154286|0.27778\n154287|0.34722\n154288|0.58333\n154289|0.38889\n154290|0.5\n154291|0.34722\n154292|0.54167\n154293|0.54167\n154294|0.18056\n154295|0.48611\n154296|0.48611\n154297|0.51389\n154298|0.40278\n154299|0.31944\n154300|0.77778\n154301|0.34722\n154302|0.23611\n154303|0.36111\n154304|0.38889\n154305|0.38889\n154306|0.23611\n154307|0.44444\n154308|0.40278\n154309|0.23611\n154310|0.40278\n154311|0.38889\n154312|0.25\n154313|0.30556\n154314|0.5\n154315|0.5\n154316|0.61111\n154317|0.5\n154318|0.34722\n154319|0.52778\n154320|0.45833\n154321|0.29167\n154322|0.36111\n154323|0.55556\n154324|0.75\n154325|0.5\n154326|0.56944\n154327|0.5\n154328|0.52778\n154329|0.58333\n154330|0.51389\n154331|0.26389\n154332|0.70833\n154333|0.13889\n154334|0.18056\n154335|0.40278\n154336|0.69444\n154337|0.48611\n154338|0.40278\n154339|0.55556\n154340|0.375\n154341|0.5\n154342|0.5\n154343|0.44444\n154344|0.48611\n154345|0.15278\n154346|0.5\n154347|0.44444\n154348|0.26389\n154349|0.33333\n154350|0.45833\n154351|0.18056\n154352|0.45833\n154353|0.54167\n154354|0.5\n154355|0.38889\n154356|0.22222\n154357|0.58333\n154358|0.5\n154359|0.59722\n154360|0.54167\n154361|0.58333\n154362|0.41667\n154363|0.5\n154364|0.625\n154365|0.5\n154366|0.68056\n154367|0.5\n154368|0.73611\n154369|0.5\n154370|0.38889\n154371|0.25\n154372|0.58333\n154373|0.15278\n154374|0.44444\n154375|0.055556\n154376|0.5\n154377|0.5\n154378|0.47222\n154379|0.47222\n154380|0.65278\n154381|0.5\n154382|0.41667\n154383|0.45833\n154384|0.5\n154385|0.38889\n154386|0.5\n154387|0.52778\n154388|0.40278\n154389|0.5\n154390|0.5\n154391|0.5\n154392|0.5\n154393|0.375\n154394|0.29167\n154395|0.47222\n154396|0.5\n154397|0.51389\n154398|0.45833\n154399|0.41667\n154400|0.5\n154401|0.55556\n154402|0.44444\n154403|0.5\n154404|0.58333\n154405|0.5\n154406|0.5\n154407|0.41667\n154408|0.5\n154409|0.59722\n154410|0.47222\n154411|0.54167\n154412|0.5\n154413|0.23611\n154414|0.5\n154415|0.52778\n154416|0.51389\n154417|0.61111\n154418|0.5\n154419|0.45833\n154420|0.33333\n154421|0.38889\n154422|0.375\n154423|0.40278\n154424|0.375\n154425|0.66667\n154426|0.5\n154427|0.43056\n154428|0.5\n154429|0.43056\n154430|0.5\n154431|0.52778\n154432|0.375\n154433|0.5\n154434|0.5\n154435|0.43056\n154436|0.51389\n154437|0.27778\n154438|0.22222\n154439|0.25\n154440|0.125\n154441|0.38889\n154442|0.15278\n154443|0.375\n154444|0.33333\n154445|0.27778\n154446|0.26389\n154447|0.5\n154448|0.5\n154449|0.5\n154450|0.5\n154451|0.125\n154452|0.51389\n154453|0.083333\n154454|0.54167\n154455|0.52778\n154456|0.11111\n154457|0.41667\n154458|0.29167\n154459|0.44444\n154460|0.5\n154461|0.43056\n154462|0.45833\n154463|0.36111\n154464|0.56944\n154465|0.48611\n154466|0.26389\n154467|0.26389\n154468|0.26389\n154469|0.5\n154470|0.47222\n154471|0.52778\n154472|0.55556\n154473|0.43056\n154474|0.5\n154475|0.5\n154476|0.5\n154477|0.44444\n154478|0.5\n154479|0.43056\n154480|0.54167\n154481|0.44444\n154482|0.54167\n154483|0.44444\n154484|0.5\n154485|0.47222\n154486|0.18056\n154487|0.65278\n154488|0.19444\n154489|0.33333\n154490|0.25\n154491|0.45833\n154492|0.36111\n154493|0.22222\n154494|0.18056\n154495|0.36111\n154496|0.45833\n154497|0.56944\n154498|0.5\n154499|0.63889\n154500|0.77778\n154501|0.16667\n154502|0.083333\n154503|0.375\n154504|0.34722\n154505|0.29167\n154506|0.30556\n154507|0.29167\n154508|0.16667\n154509|0.27778\n154510|0.30556\n154511|0.20833\n154512|0.5\n154513|0.23611\n154514|0.31944\n154515|0.22222\n154516|0.36111\n154517|0.34722\n154518|0.47222\n154519|0.31944\n154520|0.16667\n154521|0.27778\n154522|0.36111\n154523|0.5\n154524|0.5\n154525|0.40278\n154526|0.43056\n154527|0.5\n154528|0.5\n154529|0.18056\n154530|0.18056\n154531|0.43056\n154532|0.38889\n154533|0.19444\n154534|0.29167\n154535|0.375\n154536|0.13889\n154537|0.23611\n154538|0.34722\n154539|0.16667\n154540|0.125\n154541|0.33333\n154542|0.19444\n154543|0.375\n154544|0.15278\n154545|0.26389\n154546|0.18056\n154547|0.19444\n154548|0.055556\n154549|0.30556\n154550|0.16667\n154551|0.38889\n154552|0.27778\n154553|0.31944\n154554|0.26389\n154555|0.26389\n154556|0.15278\n154557|0.38889\n154558|0.30556\n154559|0.23611\n154560|0.38889\n154561|0.22222\n154562|0.31944\n154563|0.41667\n154564|0.23611\n154565|0.30556\n154566|0.31944\n154567|0.19444\n154568|0.27778\n154569|0.23611\n154570|0.38889\n154571|0.40278\n154572|0.375\n154573|0.23611\n154574|0.125\n154575|0.11111\n154576|0.41667\n154577|0.26389\n154578|0.26389\n154579|0.22222\n154580|0.27778\n154581|0.22222\n154582|0.11111\n154583|0.11111\n154584|0.18056\n154585|0.45833\n154586|0.41667\n154587|0.5\n154588|0.33333\n154589|0.41667\n154590|0.55556\n154591|0.375\n154592|0.48611\n154593|0.5\n154594|0.51389\n154595|0.625\n154596|0.36111\n154597|0.48611\n154598|0.5\n154599|0.5\n154600|0.26389\n154601|0.33333\n154602|0.54167\n154603|0.48611\n154604|0.56944\n154605|0.47222\n154606|0.41667\n154607|0.20833\n154608|0.34722\n154609|0.5\n154610|0.40278\n154611|0.44444\n154612|0.34722\n154613|0.13889\n154614|0.5\n154615|0.23611\n154616|0.25\n154617|0.5\n154618|0.5\n154619|0.61111\n154620|0.5\n154621|0.51389\n154622|0.43056\n154623|0.45833\n154624|0.5\n154625|0.5\n154626|0.19444\n154627|0.5\n154628|0.31944\n154629|0.45833\n154630|0.55556\n154631|0.5\n154632|0.20833\n154633|0.48611\n154634|0.51389\n154635|0.44444\n154636|0.5\n154637|0.5\n154638|0.70833\n154639|0.54167\n154640|0.43056\n154641|0.22222\n154642|0.52778\n154643|0.54167\n154644|0.5\n154645|0.44444\n154646|0.36111\n154647|0.36111\n154648|0.54167\n154649|0.16667\n154650|0.54167\n154651|0.58333\n154652|0.63889\n154653|0.83333\n154654|0.20833\n154655|0.73611\n154656|0.54167\n154657|0.55556\n154658|0.25\n154659|0.40278\n154660|0.5\n154661|0.66667\n154662|0.45833\n154663|0.72222\n154664|0.30556\n154665|0.25\n154666|0.33333\n154667|0.43056\n154668|0.29167\n154669|0.63889\n154670|0.41667\n154671|0.34722\n154672|0.52778\n154673|0.22222\n154674|0.34722\n154675|0.5\n154676|0.55556\n154677|0.56944\n154678|0.40278\n154679|0.58333\n154680|0.76389\n154681|0.63889\n154682|0.66667\n154683|0.625\n154684|0.5\n154685|0.5\n154686|0.44444\n154687|0.5\n154688|0.15278\n154689|0.22222\n154690|0.22222\n154691|0.375\n154692|0.30556\n154693|0.29167\n154694|0.29167\n154695|0.51389\n154696|0.26389\n154697|0.5\n154698|0.55556\n154699|0.38889\n154700|0.63889\n154701|0.26389\n154702|0.25\n154703|0.26389\n154704|0.25\n154705|0.73611\n154706|0.44444\n154707|0.51389\n154708|0.5\n154709|0.16667\n154710|0.36111\n154711|0.38889\n154712|0.15278\n154713|0.58333\n154714|0.125\n154715|0.5\n154716|0.52778\n154717|0.59722\n154718|0.5\n154719|0.66667\n154720|0.30556\n154721|0.44444\n154722|0.36111\n154723|0.65278\n154724|0.66667\n154725|0.625\n154726|0.20833\n154727|0.20833\n154728|0.069444\n154729|0.45833\n154730|0.44444\n154731|0.44444\n154732|0.45833\n154733|0.29167\n154734|0.47222\n154735|0.58333\n154736|0.40278\n154737|0.375\n154738|0.73611\n154739|0.59722\n154740|0.61111\n154741|0.5\n154742|0.5\n154743|0.55556\n154744|0.52778\n154745|0.5\n154746|0.55556\n154747|0.70833\n154748|0.125\n154749|0.27778\n154750|0.38889\n154751|0.47222\n154752|0.33333\n154753|0.44444\n154754|0.73611\n154755|0.23611\n154756|0.59722\n154757|0.41667\n154758|0.54167\n154759|0.625\n154760|0.79167\n154761|0.54167\n154762|0.25\n154763|0.51389\n154764|0.36111\n154765|0.30556\n154766|0.51389\n154767|0.5\n154768|0.54167\n154769|0.19444\n154770|0.54167\n154771|0.20833\n154772|0.30556\n154773|0.54167\n154774|0.51389\n154775|0.44444\n154776|0.36111\n154777|0.22222\n154778|0.66667\n154779|0.20833\n154780|0.23611\n154781|0.41667\n154782|0.375\n154783|0.34722\n154784|0.22222\n154785|0.31944\n154786|0.44444\n154787|0.38889\n154788|0.33333\n154789|0.65278\n154790|0.51389\n154791|0.41667\n154792|0.45833\n154793|0.69444\n154794|0.45833\n154795|0.38889\n154796|0.65278\n154797|0.47222\n154798|0.5\n154799|0.23611\n154800|0.38889\n154801|0.66667\n154802|0.56944\n154803|0.16667\n154804|0.15278\n154805|0.5\n154806|0.58333\n154807|0.23611\n154808|0.5\n154809|0.5\n154810|0.36111\n154811|0.15278\n154812|0.5\n154813|0.61111\n154814|0.79167\n154815|0.30556\n154816|0.5\n154817|0.23611\n154818|0.5\n154819|0.5\n154820|0.52778\n154821|0.36111\n154822|0.25\n154823|0.44444\n154824|0.38889\n154825|0.41667\n154826|0.72222\n154827|0.13889\n154828|0.23611\n154829|0.47222\n154830|0.51389\n154831|0.11111\n154832|0.47222\n154833|0.13889\n154834|0.125\n154835|0.54167\n154836|0.44444\n154837|0.58333\n154838|0.375\n154839|0.55556\n154840|0.51389\n154841|0.59722\n154842|0.31944\n154843|0.54167\n154844|0.51389\n154845|0.44444\n154846|0.61111\n154847|0.72222\n154848|0.18056\n154849|0.36111\n154850|0.55556\n154851|0.5\n154852|0.54167\n154853|0.51389\n154854|0.45833\n154855|0.47222\n154856|0.47222\n154857|0.5\n154858|0.5\n154859|0.41667\n154860|0.5\n154861|0.5\n154862|0.33333\n154863|0.43056\n154864|0.875\n154865|0.84722\n154866|0.61111\n154867|0.5\n154868|0.15278\n154869|0.5\n154870|0.54167\n154871|0.38889\n154872|0.63889\n154873|0.40278\n154874|0.18056\n154875|0.375\n154876|0.25\n154877|0.27778\n154878|0.40278\n154879|0.5\n154880|0.5\n154881|0.33333\n154882|0.51389\n154883|0.22222\n154884|0.27778\n154885|0.41667\n154886|0.45833\n154887|0.5\n154888|0.43056\n154889|0.36111\n154890|0.45833\n154891|0.5\n154892|0.33333\n154893|0.30556\n154894|0.29167\n154895|0.11111\n154896|0.58333\n154897|0.19444\n154898|0.38889\n154899|0.55556\n154900|0.75\n154901|0.51389\n154902|0.51389\n154903|0.55556\n154904|0.33333\n154905|0.61111\n154906|0.15278\n154907|0.30556\n154908|0.56944\n154909|0.11111\n154910|0.54167\n154911|0.25\n154912|0.56944\n154913|0.5\n154914|0.44444\n154915|0.33333\n154916|0.15278\n154917|0.13889\n154918|0.29167\n154919|0.45833\n154920|0.31944\n154921|0.23611\n154922|0.58333\n154923|0.27778\n154924|0.27778\n154925|0.375\n154926|0.27778\n154927|0.5\n154928|0.65278\n154929|0.30556\n154930|0.22222\n154931|0.20833\n154932|0.18056\n154933|0.58333\n154934|0.16667\n154935|0.43056\n154936|0.625\n154937|0.375\n154938|0.44444\n154939|0.41667\n154940|0.40278\n154941|0.45833\n154942|0.625\n154943|0.66667\n154944|0.40278\n154945|0.097222\n154946|0.77778\n154947|0.61111\n154948|0.40278\n154949|0.34722\n154950|0.33333\n154951|0.33333\n154952|0.29167\n154953|0.61111\n154954|0.375\n154955|0.51389\n154956|0.16667\n154957|0.31944\n154958|0.51389\n154959|0.5\n154960|0.48611\n154961|0.38889\n154962|0.38889\n154963|0.63889\n154964|0.33333\n154965|0.375\n154966|0.43056\n154967|0.47222\n154968|0.59722\n154969|0.5\n154970|0.5\n154971|0.31944\n154972|0.61111\n154973|0.59722\n154974|0.43056\n154975|0.52778\n154976|0.20833\n154977|0.069444\n154978|0.36111\n154979|0.38889\n154980|0.5\n154981|0.44444\n154982|0.5\n154983|0.51389\n154984|0.27778\n154985|0.54167\n154986|0.375\n154987|0.33333\n154988|0.5\n154989|0.51389\n154990|0.097222\n154991|0.5\n154992|0.20833\n154993|0.5\n154994|0.19444\n154995|0.5\n154996|0.5\n154997|0.22222\n154998|0.59722\n154999|0.5\n155000|0.44444\n155001|0.38889\n155002|0.5\n155003|0.55556\n155004|0.375\n155005|0.52778\n155006|0.22222\n155007|0.36111\n155008|0.5\n155009|0.52778\n155010|0.5\n155011|0.18056\n155012|0.5\n155013|0.40278\n155014|0.51389\n155015|0.5\n155016|0.47222\n155017|0.55556\n155018|0.30556\n155019|0.45833\n155020|0.34722\n155021|0.5\n155022|0.40278\n155023|0.45833\n155024|0.47222\n155025|0.5\n155026|0.41667\n155027|0.5\n155028|0.26389\n155029|0.5\n155030|0.5\n155031|0.5\n155032|0.38889\n155033|0.30556\n155034|0.25\n155035|0.69444\n155036|0.41667\n155037|0.375\n155038|0.33333\n155039|0.29167\n155040|0.5\n155041|0.43056\n155042|0.27778\n155043|0.19444\n155044|0.47222\n155045|0.33333\n155046|0.51389\n155047|0.625\n155048|0.51389\n155049|0.375\n155050|0.29167\n155051|0.47222\n155052|0.5\n155053|0.33333\n155054|0.18056\n155055|0.58333\n155056|0.5\n155057|0.5\n155058|0.23611\n155059|0.20833\n155060|0.19444\n155061|0.59722\n155062|0.45833\n155063|0.51389\n155064|0.18056\n155065|0.23611\n155066|0.70833\n155067|0.51389\n155068|0.48611\n155069|0.20833\n155070|0.66667\n155071|0.5\n155072|0.38889\n155073|0.59722\n155074|0.11111\n155075|0.5\n155076|0.63889\n155077|0.26389\n155078|0.5\n155079|0.5\n155080|0.52778\n155081|0.16667\n155082|0.22222\n155083|0.15278\n155084|0.055556\n155085|0.20833\n155086|0.59722\n155087|0.5\n155088|0.47222\n155089|0.56944\n155090|0.38889\n155091|0.44444\n155092|0.5\n155093|0.44444\n155094|0.52778\n155095|0.47222\n155096|0.19444\n155097|0.27778\n155098|0.27778\n155099|0.25\n155100|0.41667\n155101|0.31944\n155102|0.41667\n155103|0.5\n155104|0.38889\n155105|0.40278\n155106|0.54167\n155107|0.59722\n155108|0.44444\n155109|0.875\n155110|0.65278\n155111|0.44444\n155112|0.31944\n155113|0.47222\n155114|0.5\n155115|0.625\n155116|0.51389\n155117|0.52778\n155118|0.72222\n155119|0.44444\n155120|0.41667\n155121|0.29167\n155122|0.26389\n155123|0.29167\n155124|0.375\n155125|0.5\n155126|0.54167\n155127|0.41667\n155128|0.30556\n155129|0.5\n155130|0.52778\n155131|0.63889\n155132|0.47222\n155133|0.77778\n155134|0.76389\n155135|0.75\n155136|0.54167\n155137|0.76389\n155138|0.41667\n155139|0.41667\n155140|0.56944\n155141|0.44444\n155142|0.48611\n155143|0.55556\n155144|0.55556\n155145|0.34722\n155146|0.22222\n155147|0.41667\n155148|0.63889\n155149|0.48611\n155150|0.43056\n155151|0.45833\n155152|0.47222\n155153|0.54167\n155154|0.375\n155155|0.20833\n155156|0.58333\n155157|0.79167\n155158|0.70833\n155159|0.63889\n155160|0.52778\n155161|0.69444\n155162|0.5\n155163|0.61111\n155164|0.5\n155165|0.5\n155166|0.56944\n155167|0.52778\n155168|0.58333\n155169|0.45833\n155170|0.38889\n155171|0.5\n155172|0.58333\n155173|0.23611\n155174|0.58333\n155175|0.18056\n155176|0.54167\n155177|0.47222\n155178|0.47222\n155179|0.48611\n155180|0.36111\n155181|0.20833\n155182|0.41667\n155183|0.23611\n155184|0.41667\n155185|0.44444\n155186|0.5\n155187|0.5\n155188|0.31944\n155189|0.27778\n155190|0.5\n155191|0.41667\n155192|0.44444\n155193|0.59722\n155194|0.44444\n155195|0.54167\n155196|0.33333\n155197|0.54167\n155198|0.70833\n155199|0.63889\n155200|0.47222\n155201|0.56944\n155202|0.5\n155203|0.40278\n155204|0.5\n155205|0.33333\n155206|0.80556\n155207|0.26389\n155208|0.70833\n155209|0.5\n155210|0.5\n155211|0.34722\n155212|0.52778\n155213|0.5\n155214|0.44444\n155215|0.58333\n155216|0.48611\n155217|0.48611\n155218|0.625\n155219|0.75\n155220|0.75\n155221|0.29167\n155222|0.23611\n155223|0.625\n155224|0.45833\n155225|0.66667\n155226|0.44444\n155227|0.30556\n155228|0.55556\n155229|0.5\n155230|0.5\n155231|0.27778\n155232|0.51389\n155233|0.43056\n155234|0.45833\n155235|0.18056\n155236|0.55556\n155237|0.59722\n155238|0.5\n155239|0.44444\n155240|0.54167\n155241|0.55556\n155242|0.56944\n155243|0.43056\n155244|0.36111\n155245|0.38889\n155246|0.40278\n155247|0.625\n155248|0.5\n155249|0.375\n155250|0.27778\n155251|0.47222\n155252|0.51389\n155253|0.52778\n155254|0.41667\n155255|0.38889\n155256|0.5\n155257|0.5\n155258|0.41667\n155259|0.61111\n155260|0.54167\n155261|0.69444\n155262|0.52778\n155263|0.041667\n155264|0.66667\n155265|0.47222\n155266|0.77778\n155267|0.63889\n155268|0.72222\n155269|0.63889\n155270|0.90278\n155271|0.70833\n155272|0.79167\n155273|0.63889\n155274|0.45833\n155275|0.40278\n155276|0.38889\n155277|0.43056\n155278|0.47222\n155279|0.36111\n155280|0.5\n155281|0.55556\n155282|0.5\n155283|0.38889\n155284|0.27778\n155285|0.375\n155286|0.15278\n155287|0.5\n155288|0.16667\n155289|0.25\n155290|0.30556\n155291|0.47222\n155292|0.5\n155293|0.43056\n155294|0.54167\n155295|0.40278\n155296|0.59722\n155297|0.51389\n155298|0.5\n155299|0.38889\n155300|0.625\n155301|0.47222\n155302|0.30556\n155303|0.51389\n155304|0.16667\n155305|0.45833\n155306|0.5\n155307|0.5\n155308|0.38889\n155309|0.16667\n155310|0.48611\n155311|0.68056\n155312|0.30556\n155313|0.31944\n155314|0.48611\n155315|0.31944\n155316|0.5\n155317|0.48611\n155318|0.44444\n155319|0.5\n155320|0.33333\n155321|0.30556\n155322|0.63889\n155323|0.51389\n155324|0.33333\n155325|0.38889\n155326|0.5\n155327|0.44444\n155328|0.31944\n155329|0.27778\n155330|0.33333\n155331|0.55556\n155332|0.5\n155333|0.66667\n155334|0.65278\n155335|0.5\n155336|0.5\n155337|0.5\n155338|0.5\n155339|0.63889\n155340|0.44444\n155341|0.54167\n155342|0.48611\n155343|0.30556\n155344|0.44444\n155345|0.44444\n155346|0.40278\n155347|0.38889\n155348|0.375\n155349|0.16667\n155350|0.25\n155351|0.19444\n155352|0.33333\n155353|0.31944\n155354|0.47222\n155355|0.5\n155356|0.5\n155357|0.5\n155358|0.5\n155359|0.34722\n155360|0.61111\n155361|0.51389\n155362|0.5\n155363|0.18056\n155364|0.5\n155365|0.43056\n155366|0.31944\n155367|0.55556\n155368|0.375\n155369|0.54167\n155370|0.61111\n155371|0.5\n155372|0.56944\n155373|0.59722\n155374|0.68056\n155375|0.43056\n155376|0.44444\n155377|0.66667\n155378|0.31944\n155379|0.19444\n155380|0.23611\n155381|0.16667\n155382|0.27778\n155383|0.11111\n155384|0.20833\n155385|0.29167\n155386|0.18056\n155387|0.16667\n155388|0.25\n155389|0.45833\n155390|0.26389\n155391|0.22222\n155392|0.19444\n155393|0.34722\n155394|0.47222\n155395|0.11111\n155396|0.30556\n155397|0.23611\n155398|0.27778\n155399|0.44444\n155400|0.43056\n155401|0.45833\n155402|0.38889\n155403|0.33333\n155404|0.16667\n155405|0.55556\n155406|0.56944\n155407|0.5\n155408|0.55556\n155409|0.40278\n155410|0.5\n155411|0.41667\n155412|0.19444\n155413|0.16667\n155414|0.22222\n155415|0.5\n155416|0.56944\n155417|0.43056\n155418|0.5\n155419|0.54167\n155420|0.15278\n155421|0.56944\n155422|0.33333\n155423|0.58333\n155424|0.63889\n155425|0.48611\n155426|0.45833\n155427|0.34722\n155428|0.27778\n155429|0.45833\n155430|0.40278\n155431|0.375\n155432|0.375\n155433|0.47222\n155434|0.25\n155435|0.33333\n155436|0.44444\n155437|0.38889\n155438|0.5\n155439|0.48611\n155440|0.5\n155441|0.5\n155442|0.48611\n155443|0.5\n155444|0.51389\n155445|0.52778\n155446|0.5\n155447|0.18056\n155448|0.375\n155449|0.48611\n155450|0.5\n155451|0.5\n155452|0.59722\n155453|0.5\n155454|0.40278\n155455|0.58333\n155456|0.47222\n155457|0.52778\n155458|0.38889\n155459|0.44444\n155460|0.15278\n155461|0.38889\n155462|0.625\n155463|0.40278\n155464|0.47222\n155465|0.5\n155466|0.5\n155467|0.33333\n155468|0.58333\n155469|0.45833\n155470|0.27778\n155471|0.5\n155472|0.52778\n155473|0.5\n155474|0.36111\n155475|0.38889\n155476|0.70833\n155477|0.59722\n155478|0.59722\n155479|0.5\n155480|0.625\n155481|0.76389\n155482|0.73611\n155483|0.58333\n155484|0.5\n155485|0.76389\n155486|0.79167\n155487|0.91667\n155488|0.41667\n155489|0.43056\n155490|0.61111\n155491|0.61111\n155492|0.36111\n155493|0.43056\n155494|0.51389\n155495|0.61111\n155496|0.51389\n155497|0.5\n155498|0.33333\n155499|0.61111\n155500|0.38889\n155501|0.70833\n155502|0.55556\n155503|0.44444\n155504|0.34722\n155505|0.66667\n155506|0.41667\n155507|0.55556\n155508|0.55556\n155509|0.41667\n155510|0.54167\n155511|0.30556\n155512|0.29167\n155513|0.5\n155514|0.375\n155515|0.5\n155516|0.36111\n155517|0.44444\n155518|0.375\n155519|0.33333\n155520|0.43056\n155521|0.31944\n155522|0.34722\n155523|0.34722\n155524|0.083333\n155525|0.5\n155526|0.58333\n155527|0.5\n155528|0.5\n155529|0.25\n155530|0.51389\n155531|0.54167\n155532|0.5\n155533|0.44444\n155534|0.5\n155535|0.20833\n155536|0.81944\n155537|0.40278\n155538|0.5\n155539|0.44444\n155540|0.65278\n155541|0.68056\n155542|0.34722\n155543|0.48611\n155544|0.5\n155545|0.44444\n155546|0.52778\n155547|0.41667\n155548|0.20833\n155549|0.45833\n155550|0.45833\n155551|0.5\n155552|0.38889\n155553|0.38889\n155554|0.38889\n155555|0.44444\n155556|0.5\n155557|0.5\n155558|0.54167\n155559|0.625\n155560|0.52778\n155561|0.63889\n155562|0.5\n155563|0.63889\n155564|0.52778\n155565|0.41667\n155566|0.45833\n155567|0.36111\n155568|0.52778\n155569|0.23611\n155570|0.51389\n155571|0.61111\n155572|0.38889\n155573|0.5\n155574|0.30556\n155575|0.34722\n155576|0.55556\n155577|0.36111\n155578|0.44444\n155579|0.31944\n155580|0.38889\n155581|0.15278\n155582|0.45833\n155583|0.44444\n155584|0.34722\n155585|0.29167\n155586|0.33333\n155587|0.30556\n155588|0.56944\n155589|0.63889\n155590|0.36111\n155591|0.625\n155592|0.22222\n155593|0.51389\n155594|0.5\n155595|0.38889\n155596|0.44444\n155597|0.5\n155598|0.34722\n155599|0.5\n155600|0.54167\n155601|0.36111\n155602|0.26389\n155603|0.125\n155604|0.48611\n155605|0.40278\n155606|0.55556\n155607|0.5\n155608|0.47222\n155609|0.52778\n155610|0.68056\n155611|0.19444\n155612|0.48611\n155613|0.66667\n155614|0.56944\n155615|0.54167\n155616|0.43056\n155617|0.375\n155618|0.5\n155619|0.72222\n155620|0.34722\n155621|0.375\n155622|0.38889\n155623|0.48611\n155624|0.33333\n155625|0.33333\n155626|0.16667\n155627|0.36111\n155628|0.41667\n155629|0.65278\n155630|0.44444\n155631|0.33333\n155632|0.34722\n155633|0.55556\n155634|0.51389\n155635|0.47222\n155636|0.23611\n155637|0.375\n155638|0.26389\n155639|0.30556\n155640|0.27778\n155641|0.5\n155642|0.38889\n155643|0.56944\n155644|0.33333\n155645|0.26389\n155646|0.51389\n155647|0.47222\n155648|0.5\n155649|0.5\n155650|0.34722\n155651|0.48611\n155652|0.5\n155653|0.58333\n155654|0.29167\n155655|0.58333\n155656|0.47222\n155657|0.68056\n155658|0.5\n155659|0.54167\n155660|0.26389\n155661|0.47222\n155662|0.54167\n155663|0.5\n155664|0.34722\n155665|0.41667\n155666|0.5\n155667|0.5\n155668|0.5\n155669|0.36111\n155670|0.30556\n155671|0.27778\n155672|0.22222\n155673|0.54167\n155674|0.51389\n155675|0.48611\n155676|0.5\n155677|0.44444\n155678|0.56944\n155679|0.5\n155680|0.5\n155681|0.5\n155682|0.51389\n155683|0.5\n155684|0.5\n155685|0.5\n155686|0.66667\n155687|0.5\n155688|0.5\n155689|0.5\n155690|0.5\n155691|0.58333\n155692|0.5\n155693|0.51389\n155694|0.52778\n155695|0.5\n155696|0.5\n155697|0.58333\n155698|0.5\n155699|0.5\n155700|0.5\n155701|0.5\n155702|0.5\n155703|0.5\n155704|0.5\n155705|0.5\n155706|0.38889\n155707|0.5\n155708|0.27778\n155709|0.5\n155710|0.40278\n155711|0.31944\n155712|0.20833\n155713|0.43056\n155714|0.5\n155715|0.13889\n155716|0.22222\n155717|0.38889\n155718|0.44444\n155719|0.5\n155720|0.47222\n155721|0.38889\n155722|0.5\n155723|0.5\n155724|0.83333\n155725|0.22222\n155726|0.19444\n155727|0.51389\n155728|0.44444\n155729|0.43056\n155730|0.40278\n155731|0.5\n155732|0.5\n155733|0.44444\n155734|0.41667\n155735|0.52778\n155736|0.5\n155737|0.44444\n155738|0.44444\n155739|0.5\n155740|0.26389\n155741|0.5\n155742|0.44444\n155743|0.5\n155744|0.34722\n155745|0.45833\n155746|0.29167\n155747|0.36111\n155748|0.33333\n155749|0.5\n155750|0.5\n155751|0.375\n155752|0.375\n155753|0.5\n155754|0.27778\n155755|0.375\n155756|0.30556\n155757|0.26389\n155758|0.23611\n155759|0.44444\n155760|0.25\n155761|0.48611\n155762|0.47222\n155763|0.5\n155764|0.27778\n155765|0.33333\n155766|0.36111\n155767|0.625\n155768|0.44444\n155769|0.52778\n155770|0.36111\n155771|0.5\n155772|0.5\n155773|0.26389\n155774|0.33333\n155775|0.5\n155776|0.40278\n155777|0.38889\n155778|0.5\n155779|0.58333\n155780|0.5\n155781|0.51389\n155782|0.52778\n155783|0.5\n155784|0.51389\n155785|0.51389\n155786|0.625\n155787|0.33333\n155788|0.22222\n155789|0.19444\n155790|0.27778\n155791|0.47222\n155792|0.63889\n155793|0.44444\n155794|0.34722\n155795|0.5\n155796|0.5\n155797|0.5\n155798|0.23611\n155799|0.34722\n155800|0.54167\n155801|0.29167\n155802|0.13889\n155803|0.47222\n155804|0.23611\n155805|0.44444\n155806|0.45833\n155807|0.19444\n155808|0.5\n155809|0.5\n155810|0.5\n155811|0.51389\n155812|0.25\n155813|0.54167\n155814|0.65278\n155815|0.65278\n155816|0.47222\n155817|0.36111\n155818|0.47222\n155819|0.44444\n155820|0.61111\n155821|0.56944\n155822|0.27778\n155823|0.27778\n155824|0.5\n155825|0.54167\n155826|0.52778\n155827|0.5\n155828|0.47222\n155829|0.41667\n155830|0.45833\n155831|0.5\n155832|0.36111\n155833|0.20833\n155834|0.33333\n155835|0.36111\n155836|0.625\n155837|0.25\n155838|0.43056\n155839|0.27778\n155840|0.26389\n155841|0.34722\n155842|0.23611\n155843|0.30556\n155844|0.34722\n155845|0.27778\n155846|0.36111\n155847|0.18056\n155848|0.23611\n155849|0.41667\n155850|0.375\n155851|0.20833\n155852|0.40278\n155853|0.43056\n155854|0.23611\n155855|0.33333\n155856|0.15278\n155857|0.25\n155858|0.48611\n155859|0.38889\n155860|0.30556\n155861|0.18056\n155862|0.55556\n155863|0.19444\n155864|0.097222\n155865|0.51389\n155866|0.26389\n155867|0.22222\n155868|0.19444\n155869|0.33333\n155870|0.31944\n155871|0.23611\n155872|0.33333\n155873|0.27778\n155874|0.41667\n155875|0.79167\n155876|0.41667\n155877|0.43056\n155878|0.47222\n155879|0.51389\n155880|0.29167\n155881|0.51389\n155882|0.625\n155883|0.40278\n155884|0.66667\n155885|0.5\n155886|0.63889\n155887|0.27778\n155888|0.27778\n155889|0.36111\n155890|0.51389\n155891|0.625\n155892|0.52778\n155893|0.23611\n155894|0.375\n155895|0.52778\n155896|0.5\n155897|0.23611\n155898|0.45833\n155899|0.5\n155900|0.5\n155901|0.41667\n155902|0.48611\n155903|0.5\n155904|0.40278\n155905|0.5\n155906|0.56944\n155907|0.5\n155908|0.5\n155909|0.52778\n155910|0.11111\n155911|0.41667\n155912|0.22222\n155913|0.73611\n155914|0.47222\n155915|0.44444\n155916|0.68056\n155917|0.59722\n155918|0.41667\n155919|0.48611\n155920|0.26389\n155921|0.51389\n155922|0.33333\n155923|0.43056\n155924|0.34722\n155925|0.375\n155926|0.33333\n155927|0.51389\n155928|0.36111\n155929|0.31944\n155930|0.25\n155931|0.5\n155932|0.5\n155933|0.58333\n155934|0.73611\n155935|0.16667\n155936|0.20833\n155937|0.29167\n155938|0.27778\n155939|0.73611\n155940|0.47222\n155941|0.56944\n155942|0.16667\n155943|0.43056\n155944|0.52778\n155945|0.66667\n155946|0.22222\n155947|0.40278\n155948|0.44444\n155949|0.52778\n155950|0.5\n155951|0.63889\n155952|0.69444\n155953|0.5\n155954|0.65278\n155955|0.5\n155956|0.43056\n155957|0.5\n155958|0.38889\n155959|0.25\n155960|0.34722\n155961|0.16667\n155962|0.44444\n155963|0.23611\n155964|0.51389\n155965|0.34722\n155966|0.51389\n155967|0.16667\n155968|0.61111\n155969|0.44444\n155970|0.15278\n155971|0.16667\n155972|0.61111\n155973|0.52778\n155974|0.47222\n155975|0.29167\n155976|0.375\n155977|0.375\n155978|0.36111\n155979|0.5\n155980|0.27778\n155981|0.23611\n155982|0.43056\n155983|0.25\n155984|0.20833\n155985|0.48611\n155986|0.375\n155987|0.33333\n155988|0.125\n155989|0.125\n155990|0.375\n155991|0.38889\n155992|0.34722\n155993|0.5\n155994|0.5\n155995|0.66667\n155996|0.5\n155997|0.55556\n155998|0.27778\n155999|0.44444\n156000|0.54167\n156001|0.29167\n156002|0.54167\n156003|0.33333\n156004|0.22222\n156005|0.19444\n156006|0.26389\n156007|0.52778\n156008|0.61111\n156009|0.625\n156010|0.5\n156011|0.23611\n156012|0.45833\n156013|0.79167\n156014|0.5\n156015|0.5\n156016|0.40278\n156017|0.45833\n156018|0.51389\n156019|0.45833\n156020|0.70833\n156021|0.5\n156022|0.51389\n156023|0.20833\n156024|0.55556\n156025|0.44444\n156026|0.43056\n156027|0.72222\n156028|0.66667\n156029|0.63889\n156030|0.65278\n156031|0.625\n156032|0.5\n156033|0.5\n156034|0.26389\n156035|0.41667\n156036|0.44444\n156037|0.33333\n156038|0.51389\n156039|0.41667\n156040|0.5\n156041|0.48611\n156042|0.52778\n156043|0.54167\n156044|0.43056\n156045|0.41667\n156046|0.16667\n156047|0.48611\n156048|0.40278\n156049|0.27778\n156050|0.66667\n156051|0.68056\n156052|0.77778\n156053|0.41667\n156054|0.83333\n156055|0.75\n156056|0.66667\n156057|0.47222\n156058|0.375\n156059|0.56944\n156060|0.5\n156061|0.48611\n156062|0.56944\n156063|0.41667\n156064|0.47222\n156065|0.48611\n156066|0.5\n156067|0.59722\n156068|0.45833\n156069|0.55556\n156070|0.47222\n156071|0.5\n156072|0.44444\n156073|0.43056\n156074|0.45833\n156075|0.65278\n156076|0.55556\n156077|0.5\n156078|0.625\n156079|0.75\n156080|0.75\n156081|0.23611\n156082|0.44444\n156083|0.63889\n156084|0.5\n156085|0.5\n156086|0.47222\n156087|0.56944\n156088|0.27778\n156089|0.19444\n156090|0.36111\n156091|0.70833\n156092|0.69444\n156093|0.5\n156094|0.5\n156095|0.61111\n156096|0.44444\n156097|0.19444\n156098|0.625\n156099|0.5\n156100|0.29167\n156101|0.44444\n156102|0.52778\n156103|0.5\n156104|0.625\n156105|0.40278\n156106|0.5\n156107|0.51389\n156108|0.56944\n156109|0.72222\n156110|0.38889\n156111|0.055556\n156112|0.63889\n156113|0.58333\n156114|0.5\n156115|0.56944\n156116|0.5\n156117|0.56944\n156118|0.20833\n156119|0.5\n156120|0.5\n156121|0.65278\n156122|0.125\n156123|0.59722\n156124|0.58333\n156125|0.55556\n156126|0.5\n156127|0.22222\n156128|0.51389\n156129|0.5\n156130|0.375\n156131|0.41667\n156132|0.5\n156133|0.45833\n156134|0.44444\n156135|0.38889\n156136|0.55556\n156137|0.36111\n156138|0.5\n156139|0.23611\n156140|0.38889\n156141|0.30556\n156142|0.25\n156143|0.51389\n156144|0.54167\n156145|0.5\n156146|0.34722\n156147|0.5\n156148|0.5\n156149|0.45833\n156150|0.5\n156151|0.51389\n156152|0.51389\n156153|0.38889\n156154|0.51389\n156155|0.61111\n156156|0.5\n156157|0.55556\n156158|0.5\n156159|0.52778\n156160|0.29167\n156161|0.5\n156162|0.5\n156163|0.5\n156164|0.5\n156165|0.58333\n156166|0.69444\n156167|0.45833\n156168|0.625\n156169|0.5\n156170|0.52778\n156171|0.30556\n156172|0.625\n156173|0.63889\n156174|0.5\n156175|0.77778\n156176|0.69444\n156177|0.5\n156178|0.72222\n156179|0.70833\n156180|0.63889\n156181|0.73611\n156182|0.56944\n156183|0.66667\n156184|0.75\n156185|0.625\n156186|0.65278\n156187|0.66667\n156188|0.30556\n156189|0.30556\n156190|0.25\n156191|0.34722\n156192|0.40278\n156193|0.45833\n156194|0.5\n156195|0.55556\n156196|0.51389\n156197|0.73611\n156198|0.40278\n156199|0.47222\n156200|0.47222\n156201|0.26389\n156202|0.31944\n156203|0.22222\n156204|0.45833\n156205|0.22222\n156206|0.29167\n156207|0.36111\n156208|0.5\n156209|0.48611\n156210|0.26389\n156211|0.31944\n156212|0.19444\n156213|0.52778\n156214|0.44444\n156215|0.36111\n156216|0.80556\n156217|0.54167\n156218|0.83333\n156219|0.79167\n156220|0.84722\n156221|0.31944\n156222|0.68056\n156223|0.65278\n156224|0.23611\n156225|0.44444\n156226|0.38889\n156227|0.40278\n156228|0.33333\n156229|0.51389\n156230|0.56944\n156231|0.34722\n156232|0.52778\n156233|0.43056\n156234|0.26389\n156235|0.41667\n156236|0.5\n156237|0.5\n156238|0.5\n156239|0.5\n156240|0.51389\n156241|0.375\n156242|0.51389\n156243|0.33333\n156244|0.66667\n156245|0.44444\n156246|0.5\n156247|0.66667\n156248|0.54167\n156249|0.45833\n156250|0.47222\n156251|0.40278\n156252|0.44444\n156253|0.375\n156254|0.41667\n156255|0.34722\n156256|0.125\n156257|0.34722\n156258|0.27778\n156259|0.51389\n156260|0.44444\n156261|0.20833\n156262|0.47222\n156263|0.36111\n156264|0.5\n156265|0.34722\n156266|0.29167\n156267|0.47222\n156268|0.5\n156269|0.55556\n156270|0.5\n156271|0.40278\n156272|0.47222\n156273|0.59722\n156274|0.38889\n156275|0.48611\n156276|0.45833\n156277|0.44444\n156278|0.23611\n156279|0.48611\n156280|0.38889\n156281|0.55556\n156282|0.63889\n156283|0.38889\n156284|0.083333\n156285|0.58333\n156286|0.55556\n156287|0.56944\n156288|0.68056\n156289|0.43056\n156290|0.45833\n156291|0.38889\n156292|0.38889\n156293|0.55556\n156294|0.5\n156295|0.44444\n156296|0.75\n156297|0.27778\n156298|0.69444\n156299|0.125\n156300|0.5\n156301|0.54167\n156302|0.5\n156303|0.5\n156304|0.5\n156305|0.5\n156306|0.5\n156307|0.36111\n156308|0.5\n156309|0.58333\n156310|0.45833\n156311|0.47222\n156312|0.5\n156313|0.44444\n156314|0.5\n156315|0.47222\n156316|0.5\n156317|0.34722\n156318|0.52778\n156319|0.41667\n156320|0.63889\n156321|0.63889\n156322|0.41667\n156323|0.55556\n156324|0.56944\n156325|0.55556\n156326|0.59722\n156327|0.5\n156328|0.41667\n156329|0.41667\n156330|0.5\n156331|0.56944\n156332|0.625\n156333|0.54167\n156334|0.30556\n156335|0.27778\n156336|0.31944\n156337|0.18056\n156338|0.54167\n156339|0.77778\n156340|0.52778\n156341|0.125\n156342|0.56944\n156343|0.79167\n156344|0.83333\n156345|0.38889\n156346|0.43056\n156347|0.69444\n156348|0.58333\n156349|0.70833\n156350|0.56944\n156351|0.73611\n156352|0.48611\n156353|0.58333\n156354|0.33333\n156355|0.29167\n156356|0.26389\n156357|0.29167\n156358|0.27778\n156359|0.29167\n156360|0.36111\n156361|0.40278\n156362|0.27778\n156363|0.29167\n156364|0.25\n156365|0.20833\n156366|0.47222\n156367|0.33333\n156368|0.20833\n156369|0.375\n156370|0.41667\n156371|0.11111\n156372|0.30556\n156373|0.22222\n156374|0.44444\n156375|0.45833\n156376|0.26389\n156377|0.5\n156378|0.59722\n156379|0.5\n156380|0.44444\n156381|0.56944\n156382|0.5\n156383|0.45833\n156384|0.52778\n156385|0.5\n156386|0.5\n156387|0.27778\n156388|0.5\n156389|0.55556\n156390|0.34722\n156391|0.25\n156392|0.47222\n156393|0.47222\n156394|0.52778\n156395|0.48611\n156396|0.47222\n156397|0.55556\n156398|0.55556\n156399|0.16667\n156400|0.34722\n156401|0.44444\n156402|0.5\n156403|0.625\n156404|0.5\n156405|0.79167\n156406|0.54167\n156407|0.5\n156408|0.5\n156409|0.44444\n156410|0.5\n156411|0.58333\n156412|0.43056\n156413|0.51389\n156414|0.375\n156415|0.44444\n156416|0.5\n156417|0.16667\n156418|0.27778\n156419|0.29167\n156420|0.29167\n156421|0.29167\n156422|0.41667\n156423|0.47222\n156424|0.29167\n156425|0.38889\n156426|0.45833\n156427|0.22222\n156428|0.38889\n156429|0.31944\n156430|0.25\n156431|0.63889\n156432|0.30556\n156433|0.5\n156434|0.45833\n156435|0.5\n156436|0.51389\n156437|0.47222\n156438|0.47222\n156439|0.56944\n156440|0.51389\n156441|0.44444\n156442|0.47222\n156443|0.11111\n156444|0.16667\n156445|0.5\n156446|0.22222\n156447|0.44444\n156448|0.5\n156449|0.5\n156450|0.40278\n156451|0.41667\n156452|0.30556\n156453|0.40278\n156454|0.5\n156455|0.44444\n156456|0.5\n156457|0.5\n156458|0.61111\n156459|0.73611\n156460|0.61111\n156461|0.72222\n156462|0.51389\n156463|0.59722\n156464|0.5\n156465|0.36111\n156466|0.45833\n156467|0.18056\n156468|0.31944\n156469|0.48611\n156470|0.20833\n156471|0.375\n156472|0.15278\n156473|0.54167\n156474|0.34722\n156475|0.45833\n156476|0.25\n156477|0.27778\n156478|0.5\n156479|0.5\n156480|0.19444\n156481|0.26389\n156482|0.375\n156483|0.5\n156484|0.52778\n156485|0.47222\n156486|0.5\n156487|0.61111\n156488|0.5\n156489|0.36111\n156490|0.48611\n156491|0.26389\n156492|0.5\n156493|0.375\n156494|0.5\n156495|0.58333\n156496|0.56944\n156497|0.5\n156498|0.51389\n156499|0.5\n156500|0.43056\n156501|0.56944\n156502|0.63889\n156503|0.72222\n156504|0.5\n156505|0.51389\n156506|0.5\n156507|0.25\n156508|0.33333\n156509|0.30556\n156510|0.38889\n156511|0.375\n156512|0.625\n156513|0.48611\n156514|0.31944\n156515|0.25\n156516|0.55556\n156517|0.55556\n156518|0.43056\n156519|0.29167\n156520|0.5\n156521|0.51389\n156522|0.55556\n156523|0.61111\n156524|0.5\n156525|0.5\n156526|0.41667\n156527|0.5\n156528|0.26389\n156529|0.16667\n156530|0.097222\n156531|0.51389\n156532|0.38889\n156533|0.33333\n156534|0.40278\n156535|0.79167\n156536|0.19444\n156537|0.19444\n156538|0.44444\n156539|0.36111\n156540|0.5\n156541|0.11111\n156542|0.16667\n156543|0.52778\n156544|0.52778\n156545|0.45833\n156546|0.19444\n156547|0.5\n156548|0.22222\n156549|0.59722\n156550|0.66667\n156551|0.51389\n156552|0.55556\n156553|0.5\n156554|0.40278\n156555|0.20833\n156556|0.15278\n156557|0.38889\n156558|0.45833\n156559|0.31944\n156560|0.38889\n156561|0.61111\n156562|0.26389\n156563|0.36111\n156564|0.20833\n156565|0.5\n156566|0.47222\n156567|0.51389\n156568|0.41667\n156569|0.69444\n156570|0.70833\n156571|0.125\n156572|0.34722\n156573|0.44444\n156574|0.22222\n156575|0.44444\n156576|0.59722\n156577|0.23611\n156578|0.55556\n156579|0.5\n156580|0.625\n156581|0.66667\n156582|0.51389\n156583|0.48611\n156584|0.38889\n156585|0.5\n156586|0.54167\n156587|0.5\n156588|0.45833\n156589|0.11111\n156590|0.22222\n156591|0.45833\n156592|0.59722\n156593|0.40278\n156594|0.5\n156595|0.51389\n156596|0.625\n156597|0.66667\n156598|0.43056\n156599|0.55556\n156600|0.43056\n156601|0.5\n156602|0.51389\n156603|0.43056\n156604|0.54167\n156605|0.38889\n156606|0.44444\n156607|0.40278\n156608|0.5\n156609|0.30556\n156610|0.55556\n156611|0.5\n156612|0.66667\n156613|0.79167\n156614|0.43056\n156615|0.52778\n156616|0.34722\n156617|0.55556\n156618|0.65278\n156619|0.5\n156620|0.58333\n156621|0.51389\n156622|0.38889\n156623|0.13889\n156624|0\n156625|0.33333\n156626|0.34722\n156627|0.31944\n156628|0.34722\n156629|0.55556\n156630|0.61111\n156631|0.44444\n156632|0.45833\n156633|0.16667\n156634|0.055556\n156635|0.31944\n156636|0.27778\n156637|0.27778\n156638|0.19444\n156639|0.5\n156640|0.5\n156641|0.41667\n156642|0.34722\n156643|0.59722\n156644|0.33333\n156645|0.5\n156646|0.55556\n156647|0.47222\n156648|0.43056\n156649|0.63889\n156650|0.40278\n156651|0.25\n156652|0.56944\n156653|0.61111\n156654|0.48611\n156655|0.375\n156656|0.52778\n156657|0.5\n156658|0.61111\n156659|0.27778\n156660|0.52778\n156661|0.44444\n156662|0.27778\n156663|0.5\n156664|0.44444\n156665|0.61111\n156666|0.5\n156667|0.44444\n156668|0.5\n156669|0.38889\n156670|0.29167\n156671|0.23611\n156672|0.5\n156673|0.5\n156674|0.5\n156675|0.5\n156676|0.44444\n156677|0.48611\n156678|0.45833\n156679|0.31944\n156680|0.34722\n156681|0.61111\n156682|0.375\n156683|0.43056\n156684|0.55556\n156685|0.5\n156686|0.69444\n156687|0.44444\n156688|0.52778\n156689|0.5\n156690|0.56944\n156691|0.44444\n156692|0.61111\n156693|0.5\n156694|0.5\n156695|0.36111\n156696|0.48611\n156697|0.18056\n156698|0.375\n156699|0.44444\n156700|0.31944\n156701|0.375\n156702|0.72222\n156703|0.44444\n156704|0.5\n156705|0.56944\n156706|0.51389\n156707|0.61111\n156708|0.375\n156709|0.55556\n156710|0.5\n156711|0.61111\n156712|0.40278\n156713|0.61111\n156714|0.5\n156715|0.5\n156716|0.56944\n156717|0.5\n156718|0.29167\n156719|0.51389\n156720|0.72222\n156721|0.5\n156722|0.44444\n156723|0.5\n156724|0.75\n156725|0.375\n156726|0.58333\n156727|0.22222\n156728|0.30556\n156729|0.5\n156730|0.63889\n156731|0.56944\n156732|0.23611\n156733|0.5\n156734|0.5\n156735|0.38889\n156736|0.33333\n156737|0.5\n156738|0.56944\n156739|0.25\n156740|0.5\n156741|0.5\n156742|0.44444\n156743|0.51389\n156744|0.5\n156745|0.5\n156746|0.34722\n156747|0.48611\n156748|0.47222\n156749|0.41667\n156750|0.22222\n156751|0.45833\n156752|0.43056\n156753|0.083333\n156754|0.45833\n156755|0.54167\n156756|0.27778\n156757|0.5\n156758|0.44444\n156759|0.48611\n156760|0.56944\n156761|0.34722\n156762|0.22222\n156763|0.65278\n156764|0.5\n156765|0.59722\n156766|0.68056\n156767|0.65278\n156768|0.34722\n156769|0.25\n156770|0.125\n156771|0.5\n156772|0.52778\n156773|0.43056\n156774|0.48611\n156775|0.36111\n156776|0.5\n156777|0.5\n156778|0.54167\n156779|0.54167\n156780|0.41667\n156781|0.38889\n156782|0.31944\n156783|0.41667\n156784|0.76389\n156785|0.65278\n156786|0.47222\n156787|0.61111\n156788|0.55556\n156789|0.55556\n156790|0.58333\n156791|0.38889\n156792|0.36111\n156793|0.23611\n156794|0.22222\n156795|0.33333\n156796|0.33333\n156797|0.22222\n156798|0.51389\n156799|0.51389\n156800|0.54167\n156801|0.48611\n156802|0.48611\n156803|0.44444\n156804|0.29167\n156805|0.47222\n156806|0.5\n156807|0.52778\n156808|0.47222\n156809|0.56944\n156810|0.5\n156811|0.5\n156812|0.25\n156813|0.44444\n156814|0.375\n156815|0.58333\n156816|0.52778\n156817|0.45833\n156818|0.45833\n156819|0.59722\n156820|0.5\n156821|0.36111\n156822|0.41667\n156823|0.44444\n156824|0.44444\n156825|0.31944\n156826|0.61111\n156827|0.58333\n156828|0.61111\n156829|0.58333\n156830|0.5\n156831|0.54167\n156832|0.59722\n156833|0.27778\n156834|0.38889\n156835|0.29167\n156836|0.45833\n156837|0.44444\n156838|0.47222\n156839|0.52778\n156840|0.47222\n156841|0.44444\n156842|0.5\n156843|0.44444\n156844|0.16667\n156845|0.5\n156846|0.43056\n156847|0.41667\n156848|0.5\n156849|0.48611\n156850|0.51389\n156851|0.45833\n156852|0.43056\n156853|0.41667\n156854|0.45833\n156855|0.63889\n156856|0.44444\n156857|0.29167\n156858|0.013889\n156859|0.34722\n156860|0.083333\n156861|0.625\n156862|0.055556\n156863|0.069444\n156864|0.11111\n156865|0.38889\n156866|0.5\n156867|0.55556\n156868|0.52778\n156869|0.31944\n156870|0.5\n156871|0.44444\n156872|0.30556\n156873|0.55556\n156874|0.47222\n156875|0.47222\n156876|0.38889\n156877|0.36111\n156878|0.52778\n156879|0.31944\n156880|0.44444\n156881|0.41667\n156882|0.48611\n156883|0.56944\n156884|0.33333\n156885|0.30556\n156886|0.34722\n156887|0.5\n156888|0.22222\n156889|0.375\n156890|0.15278\n156891|0.069444\n156892|0.31944\n156893|0.36111\n156894|0.20833\n156895|0.36111\n156896|0.29167\n156897|0.23611\n156898|0.83333\n156899|0.47222\n156900|0.38889\n156901|0.41667\n156902|0.44444\n156903|0.48611\n156904|0.54167\n156905|0.38889\n156906|0.25\n156907|0.5\n156908|0.33333\n156909|0.59722\n156910|0.5\n156911|0.34722\n156912|0.45833\n156913|0.5\n156914|0.61111\n156915|0.375\n156916|0.69444\n156917|0.5\n156918|0.5\n156919|0.43056\n156920|0.5\n156921|0.40278\n156922|0.5\n156923|0.61111\n156924|0.55556\n156925|0.5\n156926|0.5\n156927|0.5\n156928|0.59722\n156929|0.5\n156930|0.40278\n156931|0.27778\n156932|0.44444\n156933|0.5\n156934|0.47222\n156935|0.5\n156936|0.65278\n156937|0.40278\n156938|0.41667\n156939|0.30556\n156940|0.19444\n156941|0.5\n156942|0.47222\n156943|0.30556\n156944|0.44444\n156945|0.22222\n156946|0.27778\n156947|0.36111\n156948|0.31944\n156949|0.11111\n156950|0.5\n156951|0.55556\n156952|0.38889\n156953|0.38889\n156954|0.30556\n156955|0.5\n156956|0.58333\n156957|0.66667\n156958|0.5\n156959|0.27778\n156960|0.84722\n156961|0.5\n156962|0.29167\n156963|0.23611\n156964|0.20833\n156965|0.59722\n156966|0.43056\n156967|0.56944\n156968|0.34722\n156969|0.44444\n156970|0.75\n156971|0.66667\n156972|0.54167\n156973|0.16667\n156974|0.40278\n156975|0.31944\n156976|0.33333\n156977|0.5\n156978|0.41667\n156979|0.5\n156980|0.54167\n156981|0.58333\n156982|0.54167\n156983|0.29167\n156984|0.5\n156985|0.5\n156986|0.44444\n156987|0.5\n156988|0.48611\n156989|0.30556\n156990|0.29167\n156991|0.47222\n156992|0.56944\n156993|0.38889\n156994|0.52778\n156995|0.48611\n156996|0.38889\n156997|0.38889\n156998|0.58333\n156999|0.44444\n157000|0.54167\n157001|0.54167\n157002|0.43056\n157003|0.55556\n157004|0.5\n157005|0.56944\n157006|0.44444\n157007|0.54167\n157008|0.36111\n157009|0.55556\n157010|0.5\n157011|0.13889\n157012|0.5\n157013|0.75\n157014|0.44444\n157015|0.80556\n157016|0.5\n157017|0.5\n157018|0.38889\n157019|0.38889\n157020|0.26389\n157021|0.38889\n157022|0.44444\n157023|0.58333\n157024|0.69444\n157025|0.5\n157026|0.54167\n157027|0.51389\n157028|0.5\n157029|0.65278\n157030|0.58333\n157031|0.40278\n157032|0.5\n157033|0.5\n157034|0.34722\n157035|0.61111\n157036|0.47222\n157037|0.30556\n157038|0.47222\n157039|0.38889\n157040|0.38889\n157041|0.13889\n157042|0.27778\n157043|0.27778\n157044|0.52778\n157045|0.41667\n157046|0.44444\n157047|0.47222\n157048|0.5\n157049|0.625\n157050|0.5\n157051|0.56944\n157052|0.54167\n157053|0.5\n157054|0.5\n157055|0.52778\n157056|0.25\n157057|0.20833\n157058|0.19444\n157059|0.45833\n157060|0.55556\n157061|0.625\n157062|0.38889\n157063|0.5\n157064|0.5\n157065|0.51389\n157066|0.5\n157067|0.5\n157068|0.40278\n157069|0.47222\n157070|0.36111\n157071|0.52778\n157072|0.44444\n157073|0.41667\n157074|0.29167\n157075|0.58333\n157076|0.44444\n157077|0.77778\n157078|0.79167\n157079|0.61111\n157080|0.47222\n157081|0.5\n157082|0.5\n157083|0.56944\n157084|0.58333\n157085|0.5\n157086|0.52778\n157087|0.5\n157088|0.51389\n157089|0.19444\n157090|0.61111\n157091|0.43056\n157092|0.51389\n157093|0.47222\n157094|0.31944\n157095|0.33333\n157096|0.33333\n157097|0.375\n157098|0.51389\n157099|0.40278\n157100|0.76389\n157101|0.69444\n157102|0.51389\n157103|0.45833\n157104|0.54167\n157105|0.45833\n157106|0.33333\n157107|0.45833\n157108|0.5\n157109|0.41667\n157110|0.52778\n157111|0.70833\n157112|0.19444\n157113|0.41667\n157114|0.5\n157115|0.41667\n157116|0.40278\n157117|0.5\n157118|0.58333\n157119|0.52778\n157120|0.5\n157121|0.5\n157122|0.40278\n157123|0.25\n157124|0.5\n157125|0.5\n157126|0.5\n157127|0.55556\n157128|0.51389\n157129|0.48611\n157130|0.58333\n157131|0.23611\n157132|0.625\n157133|0.26389\n157134|0.61111\n157135|0.43056\n157136|0.68056\n157137|0.5\n157138|0.38889\n157139|0.38889\n157140|0.18056\n157141|0.30556\n157142|0.40278\n157143|0.34722\n157144|0.51389\n157145|0.66667\n157146|0.44444\n157147|0.27778\n157148|0.19444\n157149|0.22222\n157150|0.23611\n157151|0.5\n157152|0.44444\n157153|0.45833\n157154|0.77778\n157155|0.44444\n157156|0.33333\n157157|0.36111\n157158|0.44444\n157159|0.31944\n157160|0.34722\n157161|0.5\n157162|0.40278\n157163|0.22222\n157164|0.75\n157165|0.625\n157166|0.625\n157167|0.59722\n157168|0.66667\n157169|0.625\n157170|0.76389\n157171|0.72222\n157172|0.66667\n157173|0.61111\n157174|0.58333\n157175|0.63889\n157176|0.44444\n157177|0.45833\n157178|0.40278\n157179|0.19444\n157180|0.33333\n157181|0.38889\n157182|0.29167\n157183|0.22222\n157184|0.5\n157185|0.5\n157186|0.51389\n157187|0.45833\n157188|0.5\n157189|0.41667\n157190|0.45833\n157191|0.31944\n157192|0.5\n157193|0.56944\n157194|0.44444\n157195|0.45833\n157196|0.54167\n157197|0.5\n157198|0.36111\n157199|0.5\n157200|0.20833\n157201|0.48611\n157202|0.5\n157203|0.52778\n157204|0.63889\n157205|0.5\n157206|0.5\n157207|0.61111\n157208|0.15278\n157209|0.18056\n157210|0.30556\n157211|0.36111\n157212|0.5\n157213|0.40278\n157214|0.47222\n157215|0.44444\n157216|0.5\n157217|0.63889\n157218|0.51389\n157219|0.44444\n157220|0.38889\n157221|0.48611\n157222|0.55556\n157223|0.23611\n157224|0.63889\n157225|0.47222\n157226|0.52778\n157227|0.33333\n157228|0.23611\n157229|0.38889\n157230|0.44444\n157231|0.5\n157232|0.5\n157233|0.44444\n157234|0.5\n157235|0.23611\n157236|0.5\n157237|0.47222\n157238|0.5\n157239|0.23611\n157240|0.58333\n157241|0.84722\n157242|0.88889\n157243|0.58333\n157244|0.5\n157245|0.55556\n157246|0.40278\n157247|0.27778\n157248|0.40278\n157249|0.083333\n157250|0.90278\n157251|0.40278\n157252|0.70833\n157253|0.375\n157254|0.54167\n157255|0.44444\n157256|0.30556\n157257|0.55556\n157258|0.52778\n157259|0.5\n157260|0.61111\n157261|0.5\n157262|0.56944\n157263|0.5\n157264|0.38889\n157265|0.47222\n157266|0.61111\n157267|0.77778\n157268|0.66667\n157269|0.77778\n157270|0.48611\n157271|0.5\n157272|0.44444\n157273|0.375\n157274|0.29167\n157275|0.38889\n157276|0.625\n157277|0.47222\n157278|0.5\n157279|0.59722\n157280|0.55556\n157281|0.36111\n157282|0.25\n157283|0.40278\n157284|0.73611\n157285|0.44444\n157286|0.48611\n157287|0.5\n157288|0.38889\n157289|0.38889\n157290|0.33333\n157291|0.23611\n157292|0.33333\n157293|0.72222\n157294|0.51389\n157295|0.097222\n157296|0.63889\n157297|0.25\n157298|0.20833\n157299|0.43056\n157300|0.30556\n157301|0.54167\n157302|0.33333\n157303|0.36111\n157304|0.18056\n157305|0.625\n157306|0.38889\n157307|0.5\n157308|0.52778\n157309|0.18056\n157310|0.40278\n157311|0.33333\n157312|0.15278\n157313|0.18056\n157314|0.097222\n157315|0.5\n157316|0.625\n157317|0.61111\n157318|0.36111\n157319|0.40278\n157320|0.61111\n157321|0.59722\n157322|0.47222\n157323|0.5\n157324|0.5\n157325|0.31944\n157326|0.34722\n157327|0.38889\n157328|0.48611\n157329|0.27778\n157330|0.26389\n157331|0.33333\n157332|0.27778\n157333|0.34722\n157334|0.41667\n157335|0.52778\n157336|0.38889\n157337|0.43056\n157338|0.59722\n157339|0.51389\n157340|0.47222\n157341|0.44444\n157342|0.52778\n157343|0.55556\n157344|0.5\n157345|0.43056\n157346|0.29167\n157347|0.29167\n157348|0.40278\n157349|0.36111\n157350|0.48611\n157351|0.44444\n157352|0.125\n157353|0.22222\n157354|0.22222\n157355|0.25\n157356|0.36111\n157357|0.41667\n157358|0.43056\n157359|0.31944\n157360|0.47222\n157361|0.52778\n157362|0.5\n157363|0.43056\n157364|0.5\n157365|0.59722\n157366|0.52778\n157367|0.59722\n157368|0.59722\n157369|0.45833\n157370|0.47222\n157371|0.61111\n157372|0.47222\n157373|0.625\n157374|0.31944\n157375|0.22222\n157376|0.26389\n157377|0.38889\n157378|0.5\n157379|0.51389\n157380|0.29167\n157381|0.33333\n157382|0.375\n157383|0.5\n157384|0.16667\n157385|0.83333\n157386|0.48611\n157387|0.51389\n157388|0.5\n157389|0.55556\n157390|0.54167\n157391|0.5\n157392|0.73611\n157393|0.54167\n157394|0.22222\n157395|0.19444\n157396|0.27778\n157397|0.44444\n157398|0.375\n157399|0.34722\n157400|0.5\n157401|0.31944\n157402|0.61111\n157403|0.11111\n157404|0.41667\n157405|0.22222\n157406|0.38889\n157407|0.31944\n157408|0.34722\n157409|0.375\n157410|0.23611\n157411|0.29167\n157412|0.33333\n157413|0.44444\n157414|0.20833\n157415|0.30556\n157416|0.33333\n157417|0.16667\n157418|0.15278\n157419|0.41667\n157420|0.55556\n157421|0.55556\n157422|0.23611\n157423|0.5\n157424|0.5\n157425|0.55556\n157426|0.5\n157427|0.51389\n157428|0.55556\n157429|0.56944\n157430|0.45833\n157431|0.47222\n157432|0.43056\n157433|0.44444\n157434|0.26389\n157435|0.30556\n157436|0.33333\n157437|0.20833\n157438|0.16667\n157439|0.26389\n157440|0.23611\n157441|0.47222\n157442|0.34722\n157443|0.16667\n157444|0.5\n157445|0.41667\n157446|0.5\n157447|0.5\n157448|0.58333\n157449|0.48611\n157450|0.5\n157451|0.34722\n157452|0.34722\n157453|0.25\n157454|0.36111\n157455|0.375\n157456|0.34722\n157457|0.45833\n157458|0.51389\n157459|0.18056\n157460|0.33333\n157461|0.13889\n157462|0.5\n157463|0.625\n157464|0.5\n157465|0.47222\n157466|0.41667\n157467|0.5\n157468|0.45833\n157469|0.5\n157470|0.65278\n157471|0.5\n157472|0.30556\n157473|0.5\n157474|0.5\n157475|0.52778\n157476|0.5\n157477|0.55556\n157478|0.68056\n157479|0.27778\n157480|0.65278\n157481|0.18056\n157482|0.20833\n157483|0.55556\n157484|0.58333\n157485|0.5\n157486|0.52778\n157487|0.5\n157488|0.25\n157489|0.25\n157490|0.5\n157491|0.5\n157492|0.56944\n157493|0.43056\n157494|0.52778\n157495|0.5\n157496|0.56944\n157497|0.5\n157498|0.36111\n157499|0.5\n157500|0.5\n157501|0.5\n157502|0.23611\n157503|0.5\n157504|0.5\n157505|0.56944\n157506|0.5\n157507|0.22222\n157508|0.5\n157509|0.5\n157510|0.5\n157511|0.5\n157512|0.5\n157513|0.19444\n157514|0.5\n157515|0.51389\n157516|0.5\n157517|0.51389\n157518|0.65278\n157519|0.5\n157520|0.5\n157521|0.625\n157522|0.5\n157523|0.55556\n157524|0.55556\n157525|0.27778\n157526|0.20833\n157527|0.36111\n157528|0.48611\n157529|0.47222\n157530|0.41667\n157531|0.66667\n157532|0.48611\n157533|0.33333\n157534|0.23611\n157535|0.20833\n157536|0.5\n157537|0.375\n157538|0.22222\n157539|0.16667\n157540|0.20833\n157541|0.22222\n157542|0.5\n157543|0.41667\n157544|0.5\n157545|0.40278\n157546|0.5\n157547|0.56944\n157548|0.43056\n157549|0.34722\n157550|0.33333\n157551|0.31944\n157552|0.22222\n157553|0.36111\n157554|0.30556\n157555|0.31944\n157556|0.40278\n157557|0.19444\n157558|0.5\n157559|0.375\n157560|0.40278\n157561|0.15278\n157562|0.25\n157563|0.22222\n157564|0.36111\n157565|0.40278\n157566|0.34722\n157567|0.22222\n157568|0.375\n157569|0.16667\n157570|0.40278\n157571|0.30556\n157572|0.26389\n157573|0.26389\n157574|0.36111\n157575|0.19444\n157576|0.31944\n157577|0.23611\n157578|0.30556\n157579|0.19444\n157580|0.20833\n157581|0.41667\n157582|0.38889\n157583|0.68056\n157584|0.31944\n157585|0.48611\n157586|0.51389\n157587|0.375\n157588|0.44444\n157589|0.22222\n157590|0.20833\n157591|0.36111\n157592|0.5\n157593|0.38889\n157594|0.43056\n157595|0.31944\n157596|0.29167\n157597|0.61111\n157598|0.69444\n157599|0.5\n157600|0.68056\n157601|0.625\n157602|0.5\n157603|0.47222\n157604|0.25\n157605|0.26389\n157606|0.51389\n157607|0.5\n157608|0.38889\n157609|0.41667\n157610|0.5\n157611|0.625\n157612|0.45833\n157613|0.56944\n157614|0.43056\n157615|0.44444\n157616|0.55556\n157617|0.45833\n157618|0.34722\n157619|0.45833\n157620|0.41667\n157621|0.44444\n157622|0.40278\n157623|0.61111\n157624|0.38889\n157625|0.56944\n157626|0.5\n157627|0.36111\n157628|0.52778\n157629|0.5\n157630|0.27778\n157631|0.5\n157632|0.54167\n157633|0.48611\n157634|0.61111\n157635|0.36111\n157636|0.5\n157637|0.38889\n157638|0.29167\n157639|0.34722\n157640|0.27778\n157641|0.72222\n157642|0.55556\n157643|0.23611\n157644|0.41667\n157645|0.33333\n157646|0.44444\n157647|0.25\n157648|0.30556\n157649|0.33333\n157650|0.33333\n157651|0.41667\n157652|0.5\n157653|0.43056\n157654|0.38889\n157655|0.5\n157656|0.5\n157657|0.34722\n157658|0.52778\n157659|0.30556\n157660|0.375\n157661|0.36111\n157662|0.36111\n157663|0.47222\n157664|0.22222\n157665|0.16667\n157666|0.20833\n157667|0.18056\n157668|0.13889\n157669|0.18056\n157670|0.22222\n157671|0.33333\n157672|0.27778\n157673|0.19444\n157674|0.11111\n157675|0.19444\n157676|0.38889\n157677|0.41667\n157678|0.38889\n157679|0.76389\n157680|0.68056\n157681|0.5\n157682|0.43056\n157683|0.68056\n157684|0.41667\n157685|0.48611\n157686|0.34722\n157687|0.40278\n157688|0.18056\n157689|0.5\n157690|0.22222\n157691|0.375\n157692|0.45833\n157693|0.33333\n157694|0.44444\n157695|0.54167\n157696|0.38889\n157697|0.41667\n157698|0.27778\n157699|0.65278\n157700|0.33333\n157701|0.41667\n157702|0.54167\n157703|0.5\n157704|0.47222\n157705|0.26389\n157706|0.375\n157707|0.38889\n157708|0.5\n157709|0.79167\n157710|0.83333\n157711|0.5\n157712|0.47222\n157713|0.72222\n157714|0.61111\n157715|0.31944\n157716|0.26389\n157717|0.48611\n157718|0.40278\n157719|0.41667\n157720|0.45833\n157721|0.70833\n157722|0.58333\n157723|0.38889\n157724|0.52778\n157725|0.59722\n157726|0.54167\n157727|0.5\n157728|0.48611\n157729|0.30556\n157730|0.36111\n157731|0.48611\n157732|0.38889\n157733|0.43056\n157734|0.34722\n157735|0.54167\n157736|0.55556\n157737|0.26389\n157738|0.26389\n157739|0.27778\n157740|0.25\n157741|0.51389\n157742|0.31944\n157743|0.36111\n157744|0.27778\n157745|0.31944\n157746|0.15278\n157747|0.23611\n157748|0.22222\n157749|0.26389\n157750|0.375\n157751|0.29167\n157752|0.43056\n157753|0.54167\n157754|0.31944\n157755|0.20833\n157756|0.25\n157757|0.33333\n157758|0.34722\n157759|0.44444\n157760|0.25\n157761|0.36111\n157762|0.26389\n157763|0.16667\n157764|0.36111\n157765|0.31944\n157766|0.31944\n157767|0.27778\n157768|0.30556\n157769|0.31944\n157770|0.27778\n157771|0.18056\n157772|0.18056\n157773|0.44444\n157774|0.36111\n157775|0.30556\n157776|0.33333\n157777|0.29167\n157778|0.27778\n157779|0.375\n157780|0.40278\n157781|0.33333\n157782|0.33333\n157783|0.25\n157784|0.26389\n157785|0.29167\n157786|0.47222\n157787|0.43056\n157788|0.27778\n157789|0.30556\n157790|0.41667\n157791|0.29167\n157792|0.19444\n157793|0.38889\n157794|0.25\n157795|0.23611\n157796|0.27778\n157797|0.375\n157798|0.33333\n157799|0.47222\n157800|0.29167\n157801|0.20833\n157802|0.20833\n157803|0.47222\n157804|0.45833\n157805|0.40278\n157806|0.20833\n157807|0.47222\n157808|0.27778\n157809|0.36111\n157810|0.34722\n157811|0.25\n157812|0.20833\n157813|0.38889\n157814|0.55556\n157815|0.61111\n157816|0.55556\n157817|0.625\n157818|0.52778\n157819|0.51389\n157820|0.86111\n157821|0.31944\n157822|0.48611\n157823|0.22222\n157824|0.34722\n157825|0.5\n157826|0.34722\n157827|0.30556\n157828|0.44444\n157829|0.43056\n157830|0.625\n157831|0.45833\n157832|0.22222\n157833|0.5\n157834|0.48611\n157835|0.5\n157836|0.375\n157837|0.33333\n157838|0.5\n157839|0.38889\n157840|0.27778\n157841|0.125\n157842|0.5\n157843|0.51389\n157844|0.44444\n157845|0.5\n157846|0.38889\n157847|0.44444\n157848|0.38889\n157849|0.5\n157850|0.069444\n157851|0.52778\n157852|0.27778\n157853|0.20833\n157854|0.5\n157855|0.34722\n157856|0.22222\n157857|0.54167\n157858|0.43056\n157859|0.30556\n157860|0.625\n157861|0.58333\n157862|0.52778\n157863|0.48611\n157864|0.20833\n157865|0.5\n157866|0.48611\n157867|0.47222\n157868|0.25\n157869|0.27778\n157870|0.5\n157871|0.45833\n157872|0.5\n157873|0.5\n157874|0.30556\n157875|0.15278\n157876|0.5\n157877|0.22222\n157878|0.27778\n157879|0.44444\n157880|0.48611\n157881|0.52778\n157882|0.69444\n157883|0.68056\n157884|0.58333\n157885|0.5\n157886|0.44444\n157887|0.48611\n157888|0.5\n157889|0.41667\n157890|0.47222\n157891|0.40278\n157892|0.56944\n157893|0.51389\n157894|0.5\n157895|0.5\n157896|0.19444\n157897|0.43056\n157898|0.29167\n157899|0.44444\n157900|0.52778\n157901|0.47222\n157902|0.41667\n157903|0.38889\n157904|0.22222\n157905|0.44444\n157906|0.38889\n157907|0.34722\n157908|0.41667\n157909|0.41667\n157910|0.069444\n157911|0.083333\n157912|0.38889\n157913|0.48611\n157914|0.22222\n157915|0.125\n157916|0.44444\n157917|0.18056\n157918|0.26389\n157919|0.27778\n157920|0.38889\n157921|0.51389\n157922|0.51389\n157923|0.22222\n157924|0.19444\n157925|0.069444\n157926|0.069444\n157927|0.33333\n157928|0.31944\n157929|0.5\n157930|0.48611\n157931|0.20833\n157932|0.36111\n157933|0.52778\n157934|0.52778\n157935|0.5\n157936|0.63889\n157937|0.48611\n157938|0.625\n157939|0.40278\n157940|0.48611\n157941|0.52778\n157942|0.41667\n157943|0.34722\n157944|0.48611\n157945|0.58333\n157946|0.56944\n157947|0.36111\n157948|0.5\n157949|0.80556\n157950|0.45833\n157951|0.40278\n157952|0.38889\n157953|0.5\n157954|0.083333\n157955|0.27778\n157956|0.38889\n157957|0.5\n157958|0.61111\n157959|0.16667\n157960|0.30556\n157961|0.33333\n157962|0.25\n157963|0.34722\n157964|0.47222\n157965|0.43056\n157966|0.51389\n157967|0.5\n157968|0.52778\n157969|0.5\n157970|0.38889\n157971|0.5\n157972|0.5\n157973|0.61111\n157974|0.36111\n157975|0.20833\n157976|0.16667\n157977|0.11111\n157978|0.15278\n157979|0.55556\n157980|0.15278\n157981|0.45833\n157982|0.5\n157983|0.43056\n157984|0.5\n157985|0.5\n157986|0.30556\n157987|0.56944\n157988|0.31944\n157989|0.5\n157990|0.47222\n157991|0.5\n157992|0.19444\n157993|0.5\n157994|0.38889\n157995|0.31944\n157996|0.23611\n157997|0.15278\n157998|0.40278\n157999|0.5\n158000|0.31944\n158001|0.47222\n158002|0.5\n158003|0.5\n158004|0.58333\n158005|0.54167\n158006|0.5\n158007|0.5\n158008|0.29167\n158009|0.23611\n158010|0.36111\n158011|0.43056\n158012|0.5\n158013|0.40278\n158014|0.5\n158015|0.5\n158016|0.5\n158017|0.40278\n158018|0.47222\n158019|0.15278\n158020|0.25\n158021|0.27778\n158022|0.29167\n158023|0.11111\n158024|0.18056\n158025|0.33333\n158026|0.19444\n158027|0.375\n158028|0.055556\n158029|0.31944\n158030|0.26389\n158031|0.16667\n158032|0.20833\n158033|0.30556\n158034|0.40278\n158035|0.16667\n158036|0.22222\n158037|0.19444\n158038|0.33333\n158039|0.36111\n158040|0.36111\n158041|0.41667\n158042|0.36111\n158043|0.25\n158044|0.097222\n158045|0.26389\n158046|0.16667\n158047|0.19444\n158048|0.25\n158049|0.38889\n158050|0.083333\n158051|0.38889\n158052|0.29167\n158053|0.38889\n158054|0.36111\n158055|0.27778\n158056|0.34722\n158057|0.34722\n158058|0.38889\n158059|0.45833\n158060|0.25\n158061|0.25\n158062|0.5\n158063|0.59722\n158064|0.54167\n158065|0.61111\n158066|0.51389\n158067|0.56944\n158068|0.34722\n158069|0.29167\n158070|0.47222\n158071|0.72222\n158072|0.25\n158073|0.36111\n158074|0.51389\n158075|0.5\n158076|0.48611\n158077|0.34722\n158078|0.55556\n158079|0.5\n158080|0.59722\n158081|0.51389\n158082|0.47222\n158083|0.63889\n158084|0.65278\n158085|0.18056\n158086|0.52778\n158087|0.75\n158088|0.65278\n158089|0.73611\n158090|0.84722\n158091|0.625\n158092|0.83333\n158093|0.88889\n158094|0.5\n158095|0.61111\n158096|0.63889\n158097|0.58333\n158098|0.48611\n158099|0.33333\n158100|0.61111\n158101|0.48611\n158102|0.27778\n158103|0.375\n158104|0.34722\n158105|0.44444\n158106|0.5\n158107|0.23611\n158108|0.45833\n158109|0.52778\n158110|0.58333\n158111|0.63889\n158112|0.375\n158113|0.44444\n158114|0.29167\n158115|0.63889\n158116|0.73611\n158117|0.44444\n158118|0.59722\n158119|0.5\n158120|0.30556\n158121|0.25\n158122|0.59722\n158123|0.75\n158124|0.29167\n158125|0.72222\n158126|0.69444\n158127|0.56944\n158128|0.5\n158129|0.26389\n158130|0.375\n158131|0.59722\n158132|0.59722\n158133|0.45833\n158134|0.52778\n158135|0.48611\n158136|0.58333\n158137|0.58333\n158138|0.5\n158139|0.375\n158140|0.40278\n158141|0.73611\n158142|0.55556\n158143|0.65278\n158144|0.58333\n158145|0.5\n158146|0.30556\n158147|0.43056\n158148|0.34722\n158149|0.76389\n158150|0.63889\n158151|0.86111\n158152|0.72222\n158153|0.54167\n158154|0.375\n158155|0.41667\n158156|0.5\n158157|0.55556\n158158|0.68056\n158159|0.63889\n158160|0.65278\n158161|0.44444\n158162|0.16667\n158163|0.19444\n158164|0.20833\n158165|0.29167\n158166|0.23611\n158167|0.19444\n158168|0.38889\n158169|0.33333\n158170|0.36111\n158171|0.58333\n158172|0.52778\n158173|0.61111\n158174|0.54167\n158175|0.5\n158176|0.30556\n158177|0.45833\n158178|0.5\n158179|0.26389\n158180|0.5\n158181|0.5\n158182|0.5\n158183|0.25\n158184|0.56944\n158185|0.23611\n158186|0.19444\n158187|0.41667\n158188|0.31944\n158189|0.5\n158190|0.5\n158191|0.5\n158192|0.27778\n158193|0.31944\n158194|0.5\n158195|0.38889\n158196|0.43056\n158197|0.41667\n158198|0.38889\n158199|0.43056\n158200|0.36111\n158201|0.5\n158202|0.375\n158203|0.48611\n158204|0.27778\n158205|0.52778\n158206|0.80556\n158207|0.27778\n158208|0.52778\n158209|0.59722\n158210|0.5\n158211|0.34722\n158212|0.52778\n158213|0.41667\n158214|0.30556\n158215|0.48611\n158216|0.5\n158217|0.54167\n158218|0.65278\n158219|0.52778\n158220|0.27778\n158221|0.5\n158222|0.5\n158223|0.40278\n158224|0.41667\n158225|0.5\n158226|0.19444\n158227|0.36111\n158228|0.33333\n158229|0.69444\n158230|0.44444\n158231|0.5\n158232|0.33333\n158233|0.33333\n158234|0.55556\n158235|0.38889\n158236|0.31944\n158237|0.27778\n158238|0.72222\n158239|0.47222\n158240|0.61111\n158241|0.70833\n158242|0.44444\n158243|0.29167\n158244|0.20833\n158245|0.26389\n158246|0.61111\n158247|0.55556\n158248|0.30556\n158249|0.43056\n158250|0.40278\n158251|0.31944\n158252|0.72222\n158253|0.79167\n158254|0.58333\n158255|0.29167\n158256|0.23611\n158257|0.48611\n158258|0.43056\n158259|0.375\n158260|0.31944\n158261|0.61111\n158262|0.72222\n158263|0.79167\n158264|0.65278\n158265|0.66667\n158266|0.68056\n158267|0.52778\n158268|0.63889\n158269|0.45833\n158270|0.55556\n158271|0.56944\n158272|0.56944\n158273|0.44444\n158274|0.55556\n158275|0.5\n158276|0.47222\n158277|0.5\n158278|0.51389\n158279|0.65278\n158280|0.16667\n158281|0.29167\n158282|0.41667\n158283|0.48611\n158284|0.76389\n158285|0.65278\n158286|0.81944\n158287|0.875\n158288|0.55556\n158289|0.81944\n158290|0.33333\n158291|0.47222\n158292|0.69444\n158293|0.55556\n158294|0.70833\n158295|0.61111\n158296|0.63889\n158297|0.51389\n158298|0.45833\n158299|0.27778\n158300|0.5\n158301|0.61111\n158302|0.72222\n158303|0.86111\n158304|0.61111\n158305|0.72222\n158306|0.5\n158307|0.5\n158308|0.61111\n158309|0.33333\n158310|0.25\n158311|0.38889\n158312|0.44444\n158313|0.52778\n158314|0.58333\n158315|0.48611\n158316|0.33333\n158317|0.5\n158318|0.20833\n158319|0.54167\n158320|0.27778\n158321|0.70833\n158322|0.58333\n158323|0.5\n158324|0.5\n158325|0.5\n158326|0.5\n158327|0.48611\n158328|0.66667\n158329|0.30556\n158330|0.56944\n158331|0.68056\n158332|0.625\n158333|0.66667\n158334|0.51389\n158335|0.48611\n158336|0.27778\n158337|0.5\n158338|0.51389\n158339|0.5\n158340|0.54167\n158341|0.5\n158342|0.625\n158343|0.31944\n158344|0.44444\n158345|0.25\n158346|0.25\n158347|0.51389\n158348|0.47222\n158349|0.43056\n158350|0.5\n158351|0.51389\n158352|0.70833\n158353|0.86111\n158354|0.25\n158355|0.31944\n158356|0.44444\n158357|0.5\n158358|0.33333\n158359|0.31944\n158360|0.22222\n158361|0.55556\n158362|0.45833\n158363|0.66667\n158364|0.83333\n158365|0.69444\n158366|0.66667\n158367|0.86111\n158368|0.52778\n158369|0.5\n158370|0.25\n158371|0.44444\n158372|0.44444\n158373|0.375\n158374|0.45833\n158375|0.51389\n158376|0.33333\n158377|0.52778\n158378|0.52778\n158379|0.20833\n158380|0.5\n158381|0.375\n158382|0.29167\n158383|0.5\n158384|0.40278\n158385|0.25\n158386|0.56944\n158387|0.51389\n158388|0.5\n158389|0.44444\n158390|0.54167\n158391|0.51389\n158392|0.44444\n158393|0.41667\n158394|0.48611\n158395|0.22222\n158396|0.5\n158397|0.43056\n158398|0.5\n158399|0.5\n158400|0.5\n158401|0.5\n158402|0.52778\n158403|0.52778\n158404|0.625\n158405|0.51389\n158406|0.5\n158407|0.52778\n158408|0.59722\n158409|0.5\n158410|0.38889\n158411|0.33333\n158412|0.5\n158413|0.45833\n158414|0.5\n158415|0.44444\n158416|0.47222\n158417|0.5\n158418|0.33333\n158419|0.41667\n158420|0.625\n158421|0.5\n158422|0.54167\n158423|0.33333\n158424|0.26389\n158425|0.5\n158426|0.38889\n158427|0.375\n158428|0.5\n158429|0.15278\n158430|0.34722\n158431|0.5\n158432|0.29167\n158433|0.41667\n158434|0.30556\n158435|0.33333\n158436|0.75\n158437|0.47222\n158438|0.58333\n158439|0.44444\n158440|0.55556\n158441|0.52778\n158442|0.16667\n158443|0.29167\n158444|0.5\n158445|0.5\n158446|0.63889\n158447|0.55556\n158448|0.40278\n158449|0.45833\n158450|0.48611\n158451|0.44444\n158452|0.47222\n158453|0.41667\n158454|0.5\n158455|0.59722\n158456|0.61111\n158457|0.375\n158458|0.36111\n158459|0.52778\n158460|0.51389\n158461|0.41667\n158462|0.30556\n158463|0.41667\n158464|0.5\n158465|0.30556\n158466|0.55556\n158467|0.41667\n158468|0.25\n158469|0.25\n158470|0.11111\n158471|0.58333\n158472|0.51389\n158473|0.33333\n158474|0.40278\n158475|0.5\n158476|0.375\n158477|0.48611\n158478|0.30556\n158479|0.48611\n158480|0.34722\n158481|0.44444\n158482|0.44444\n158483|0.48611\n158484|0.41667\n158485|0.47222\n158486|0.5\n158487|0.38889\n158488|0.43056\n158489|0.5\n158490|0.5\n158491|0.5\n158492|0.5\n158493|0.41667\n158494|0.51389\n158495|0.48611\n158496|0.26389\n158497|0.20833\n158498|0.5\n158499|0.5\n158500|0.52778\n158501|0.45833\n158502|0.52778\n158503|0.40278\n158504|0.52778\n158505|0.375\n158506|0.18056\n158507|0.38889\n158508|0.5\n158509|0.43056\n158510|0.5\n158511|0.22222\n158512|0.47222\n158513|0.56944\n158514|0.48611\n158515|0.5\n158516|0.38889\n158517|0.5\n158518|0.51389\n158519|0.23611\n158520|0.5\n158521|0.5\n158522|0.44444\n158523|0.44444\n158524|0.55556\n158525|0.5\n158526|0.16667\n158527|0.5\n158528|0.5\n158529|0.5\n158530|0.61111\n158531|0.51389\n158532|0.61111\n158533|0.33333\n158534|0.51389\n158535|0.5\n158536|0.5\n158537|0.54167\n158538|0.38889\n158539|0.52778\n158540|0.5\n158541|0.55556\n158542|0.26389\n158543|0.54167\n158544|0.61111\n158545|0.5\n158546|0.5\n158547|0.5\n158548|0.27778\n158549|0.58333\n158550|0.61111\n158551|0.30556\n158552|0.43056\n158553|0.40278\n158554|0.44444\n158555|0.16667\n158556|0.65278\n158557|0.59722\n158558|0.5\n158559|0.5\n158560|0.48611\n158561|0.55556\n158562|0.5\n158563|0.625\n158564|0.61111\n158565|0.44444\n158566|0.23611\n158567|0.5\n158568|0.5\n158569|0.11111\n158570|0.54167\n158571|0.66667\n158572|0.58333\n158573|0.5\n158574|0.51389\n158575|0.44444\n158576|0.38889\n158577|0.47222\n158578|0.41667\n158579|0.5\n158580|0.5\n158581|0.52778\n158582|0.55556\n158583|0.5\n158584|0.22222\n158585|0.18056\n158586|0.19444\n158587|0.38889\n158588|0.30556\n158589|0.29167\n158590|0.625\n158591|0.45833\n158592|0.34722\n158593|0.69444\n158594|0.44444\n158595|0.5\n158596|0.47222\n158597|0.36111\n158598|0.29167\n158599|0.44444\n158600|0.41667\n158601|0.44444\n158602|0.375\n158603|0.52778\n158604|0.33333\n158605|0.625\n158606|0.25\n158607|0.65278\n158608|0.041667\n158609|0.73611\n158610|0.41667\n158611|0.5\n158612|0.55556\n158613|0.5\n158614|0.72222\n158615|0.5\n158616|0.41667\n158617|0.5\n158618|0.45833\n158619|0.5\n158620|0.5\n158621|0.56944\n158622|0.66667\n158623|0.27778\n158624|0.22222\n158625|0.30556\n158626|0.16667\n158627|0.33333\n158628|0.27778\n158629|0.44444\n158630|0.25\n158631|0.375\n158632|0.22222\n158633|0.59722\n158634|0.5\n158635|0.44444\n158636|0.45833\n158637|0.52778\n158638|0.625\n158639|0.55556\n158640|0.69444\n158641|0.81944\n158642|0.5\n158643|0.625\n158644|0.80556\n158645|0.5\n158646|0.58333\n158647|0.23611\n158648|0.43056\n158649|0.27778\n158650|0.375\n158651|0.23611\n158652|0.58333\n158653|0.5\n158654|0.25\n158655|0.41667\n158656|0.52778\n158657|0.5\n158658|0.33333\n158659|0.61111\n158660|0.5\n158661|0.84722\n158662|0.47222\n158663|0.58333\n158664|0.47222\n158665|0.375\n158666|0.36111\n158667|0.34722\n158668|0.22222\n158669|0.16667\n158670|0.13889\n158671|0.43056\n158672|0.52778\n158673|0.45833\n158674|0.22222\n158675|0.40278\n158676|0.19444\n158677|0.55556\n158678|0.23611\n158679|0.44444\n158680|0.375\n158681|0.80556\n158682|0.54167\n158683|0.375\n158684|0.55556\n158685|0.44444\n158686|0.47222\n158687|0.5\n158688|0.47222\n158689|0.47222\n158690|0.51389\n158691|0.59722\n158692|0.27778\n158693|0.70833\n158694|0.41667\n158695|0.63889\n158696|0.55556\n158697|0.36111\n158698|0.5\n158699|0.5\n158700|0.51389\n158701|0.51389\n158702|0.013889\n158703|0.027778\n158704|0.45833\n158705|0.625\n158706|0.38889\n158707|0.22222\n158708|0.11111\n158709|0.38889\n158710|0.19444\n158711|0.22222\n158712|0.61111\n158713|0.625\n158714|0.5\n158715|0.45833\n158716|0.5\n158717|0.5\n158718|0.75\n158719|0.59722\n158720|0.5\n158721|0.5\n158722|0.375\n158723|0.5\n158724|0.51389\n158725|0.47222\n158726|0.5\n158727|0.51389\n158728|0.43056\n158729|0.25\n158730|0.26389\n158731|0.38889\n158732|0.38889\n158733|0.38889\n158734|0.38889\n158735|0.29167\n158736|0.055556\n158737|0.40278\n158738|0.23611\n158739|0.27778\n158740|0.30556\n158741|0.29167\n158742|0.26389\n158743|0.27778\n158744|0.38889\n158745|0.25\n158746|0.27778\n158747|0.16667\n158748|0.27778\n158749|0.34722\n158750|0.33333\n158751|0.51389\n158752|0.26389\n158753|0.16667\n158754|0.27778\n158755|0.22222\n158756|0.22222\n158757|0.40278\n158758|0.20833\n158759|0.25\n158760|0.26389\n158761|0.29167\n158762|0.25\n158763|0.15278\n158764|0.41667\n158765|0.15278\n158766|0.29167\n158767|0.47222\n158768|0.48611\n158769|0.52778\n158770|0.43056\n158771|0.33333\n158772|0.40278\n158773|0.29167\n158774|0.47222\n158775|0.069444\n158776|0.625\n158777|0.51389\n158778|0.33333\n158779|0.27778\n158780|0.41667\n158781|0.27778\n158782|0.26389\n158783|0.5\n158784|0.36111\n158785|0.22222\n158786|0.33333\n158787|0.61111\n158788|0.16667\n158789|0.16667\n158790|0.30556\n158791|0.25\n158792|0.34722\n158793|0.11111\n158794|0.125\n158795|0.23611\n158796|0.125\n158797|0.72222\n158798|0.20833\n158799|0.375\n158800|0.27778\n158801|0.20833\n158802|0.20833\n158803|0.29167\n158804|0.027778\n158805|0.13889\n158806|0.25\n158807|0.41667\n158808|0.375\n158809|0.33333\n158810|0.40278\n158811|0.27778\n158812|0.48611\n158813|0.27778\n158814|0.30556\n158815|0.5\n158816|0.75\n158817|0.30556\n158818|0.33333\n158819|0.5\n158820|0.5\n158821|0.33333\n158822|0.38889\n158823|0.54167\n158824|0.51389\n158825|0.44444\n158826|0.65278\n158827|0.38889\n158828|0.55556\n158829|0.75\n158830|0.52778\n158831|0.5\n158832|0.77778\n158833|0.63889\n158834|0.81944\n158835|0.77778\n158836|0.76389\n158837|0.88889\n158838|0.90278\n158839|0.55556\n158840|0.58333\n158841|0.63889\n158842|0.5\n158843|0.51389\n158844|0.45833\n158845|0.38889\n158846|0.56944\n158847|0.5\n158848|0.5\n158849|0.36111\n158850|0.22222\n158851|0.33333\n158852|0.44444\n158853|0.125\n158854|0.65278\n158855|0.63889\n158856|0.44444\n158857|0.27778\n158858|0.5\n158859|0.625\n158860|0.44444\n158861|0.54167\n158862|0.65278\n158863|0.31944\n158864|0.33333\n158865|0.29167\n158866|0.18056\n158867|0.26389\n158868|0.26389\n158869|0.5\n158870|0.55556\n158871|0.27778\n158872|0.51389\n158873|0.5\n158874|0.77778\n158875|0.40278\n158876|0.625\n158877|0.84722\n158878|0.5\n158879|0.48611\n158880|0.5\n158881|0.33333\n158882|0.47222\n158883|0.44444\n158884|0.5\n158885|0.48611\n158886|0.61111\n158887|0.54167\n158888|0.5\n158889|0.16667\n158890|0.5\n158891|0.45833\n158892|0.5\n158893|0.56944\n158894|0.40278\n158895|0.5\n158896|0.5\n158897|0.51389\n158898|0.5\n158899|0.5\n158900|0.5\n158901|0.5\n158902|0.5\n158903|0.5\n158904|0.51389\n158905|0.51389\n158906|0.47222\n158907|0.34722\n158908|0.44444\n158909|0.44444\n158910|0.29167\n158911|0.44444\n158912|0.23611\n158913|0.52778\n158914|0.19444\n158915|0.23611\n158916|0.33333\n158917|0.375\n158918|0.5\n158919|0.40278\n158920|0.30556\n158921|0.20833\n158922|0.36111\n158923|0.45833\n158924|0.61111\n158925|0.54167\n158926|0.36111\n158927|0.54167\n158928|0.75\n158929|0.5\n158930|0.38889\n158931|0.43056\n158932|0.375\n158933|0.5\n158934|0.79167\n158935|0.45833\n158936|0.61111\n158937|0.44444\n158938|0.40278\n158939|0.40278\n158940|0.33333\n158941|0.44444\n158942|0.5\n158943|0.25\n158944|0.27778\n158945|0.30556\n158946|0.20833\n158947|0.30556\n158948|0.30556\n158949|0.27778\n158950|0.33333\n158951|0.51389\n158952|0.41667\n158953|0.18056\n158954|0.125\n158955|0.30556\n158956|0.43056\n158957|0.15278\n158958|0.20833\n158959|0.29167\n158960|0.375\n158961|0.30556\n158962|0.30556\n158963|0.33333\n158964|0.30556\n158965|0.23611\n158966|0.77778\n158967|0.30556\n158968|0.26389\n158969|0.375\n158970|0.22222\n158971|0.55556\n158972|0.27778\n158973|0.375\n158974|0.27778\n158975|0.27778\n158976|0.23611\n158977|0.15278\n158978|0.29167\n158979|0.375\n158980|0.5\n158981|0.25\n158982|0.5\n158983|0.5\n158984|0.36111\n158985|0.30556\n158986|0.375\n158987|0.34722\n158988|0.33333\n158989|0.31944\n158990|0.44444\n158991|0.31944\n158992|0.22222\n158993|0.19444\n158994|0.13889\n158995|0.055556\n158996|0.54167\n158997|0.59722\n158998|0.30556\n158999|0.30556\n159000|0.5\n159001|0.61111\n159002|0.5\n159003|0.54167\n159004|0.61111\n159005|0.40278\n159006|0.45833\n159007|0.19444\n159008|0.63889\n159009|0.55556\n159010|0.52778\n159011|0.23611\n159012|0.27778\n159013|0.43056\n159014|0.33333\n159015|0.40278\n159016|0.5\n159017|0.56944\n159018|0.54167\n159019|0.47222\n159020|0.56944\n159021|0.5\n159022|0.38889\n159023|0.5\n159024|0.52778\n159025|0.44444\n159026|0.41667\n159027|0.55556\n159028|0.43056\n159029|0.375\n159030|0.40278\n159031|0.31944\n159032|0.47222\n159033|0.40278\n159034|0.375\n159035|0.59722\n159036|0.41667\n159037|0.34722\n159038|0.5\n159039|0.5\n159040|0.48611\n159041|0.51389\n159042|0.5\n159043|0.44444\n159044|0.52778\n159045|0.58333\n159046|0.5\n159047|0.30556\n159048|0.097222\n159049|0.5\n159050|0.5\n159051|0.43056\n159052|0.5\n159053|0.55556\n159054|0.25\n159055|0.5\n159056|0.5\n159057|0.5\n159058|0.51389\n159059|0.47222\n159060|0.43056\n159061|0.5\n159062|0.083333\n159063|0.26389\n159064|0.5\n159065|0.5\n159066|0.54167\n159067|0.43056\n159068|0.5\n159069|0.5\n159070|0.38889\n159071|0.45833\n159072|0.5\n159073|0.25\n159074|0.52778\n159075|0.33333\n159076|0.58333\n159077|0.45833\n159078|0.45833\n159079|0.45833\n159080|0.5\n159081|0.44444\n159082|0.51389\n159083|0.5\n159084|0.5\n159085|0.40278\n159086|0.63889\n159087|0.51389\n159088|0.40278\n159089|0.52778\n159090|0.34722\n159091|0.5\n159092|0.52778\n159093|0.5\n159094|0.5\n159095|0.5\n159096|0.61111\n159097|0.625\n159098|0.61111\n159099|0.38889\n159100|0.55556\n159101|0.5\n159102|0.59722\n159103|0.48611\n159104|0.33333\n159105|0.22222\n159106|0.23611\n159107|0.55556\n159108|0.11111\n159109|0.56944\n159110|0.45833\n159111|0.5\n159112|0.13889\n159113|0.5\n159114|0.5\n159115|0.5\n159116|0.20833\n159117|0.5\n159118|0.5\n159119|0.5\n159120|0.52778\n159121|0.20833\n159122|0.22222\n159123|0.13889\n159124|0.54167\n159125|0.27778\n159126|0.43056\n159127|0.41667\n159128|0.5\n159129|0.5\n159130|0.5\n159131|0.52778\n159132|0.44444\n159133|0.45833\n159134|0.55556\n159135|0.56944\n159136|0.15278\n159137|0.54167\n159138|0.55556\n159139|0.33333\n159140|0.55556\n159141|0.45833\n159142|0.26389\n159143|0.25\n159144|0.44444\n159145|0.38889\n159146|0.5\n159147|0.38889\n159148|0.23611\n159149|0.47222\n159150|0.52778\n159151|0.43056\n159152|0.48611\n159153|0.48611\n159154|0.44444\n159155|0.51389\n159156|0.125\n159157|0.58333\n159158|0.52778\n159159|0.52778\n159160|0.51389\n159161|0.55556\n159162|0.55556\n159163|0.22222\n159164|0.5\n159165|0.34722\n159166|0.51389\n159167|0.5\n159168|0.70833\n159169|0.61111\n159170|0.45833\n159171|0.52778\n159172|0.59722\n159173|0.73611\n159174|0.5\n159175|0.52778\n159176|0.48611\n159177|0.5\n159178|0.5\n159179|0.45833\n159180|0.5\n159181|0.5\n159182|0.68056\n159183|0.5\n159184|0.52778\n159185|0.5\n159186|0.54167\n159187|0.5\n159188|0.48611\n159189|0.40278\n159190|0.44444\n159191|0.55556\n159192|0.5\n159193|0.5\n159194|0.48611\n159195|0.5\n159196|0.55556\n159197|0.65278\n159198|0.54167\n159199|0.72222\n159200|0.81944\n159201|0.59722\n159202|0.72222\n159203|0.45833\n159204|0.5\n159205|0.5\n159206|0.33333\n159207|0.38889\n159208|0.30556\n159209|0.5\n159210|0.5\n159211|0.38889\n159212|0.45833\n159213|0.20833\n159214|0.25\n159215|0.33333\n159216|0.13889\n159217|0.44444\n159218|0.36111\n159219|0.44444\n159220|0.41667\n159221|0.5\n159222|0.20833\n159223|0.47222\n159224|0.5\n159225|0.47222\n159226|0.51389\n159227|0.54167\n159228|0.66667\n159229|0.59722\n159230|0.51389\n159231|0.58333\n159232|0.29167\n159233|0.5\n159234|0.45833\n159235|0.61111\n159236|0.5\n159237|0.5\n159238|0.20833\n159239|0.52778\n159240|0.5\n159241|0.5\n159242|0.40278\n159243|0.26389\n159244|0.56944\n159245|0.40278\n159246|0.40278\n159247|0.25\n159248|0.25\n159249|0.22222\n159250|0.40278\n159251|0.25\n159252|0.5\n159253|0.41667\n159254|0.29167\n159255|0.5\n159256|0.54167\n159257|0.23611\n159258|0.29167\n159259|0.48611\n159260|0.44444\n159261|0.51389\n159262|0.18056\n159263|0.41667\n159264|0.5\n159265|0.5\n159266|0.69444\n159267|0.63889\n159268|0.48611\n159269|0.65278\n159270|0.43056\n159271|0.40278\n159272|0.44444\n159273|0.51389\n159274|0.30556\n159275|0.22222\n159276|0.40278\n159277|0.5\n159278|0.47222\n159279|0.5\n159280|0.55556\n159281|0.5\n159282|0.59722\n159283|0.5\n159284|0.5\n159285|0.38889\n159286|0.58333\n159287|0.30556\n159288|0.22222\n159289|0.23611\n159290|0.11111\n159291|0.29167\n159292|0.5\n159293|0.5\n159294|0.30556\n159295|0.45833\n159296|0.54167\n159297|0.19444\n159298|0.22222\n159299|0.5\n159300|0.61111\n159301|0.63889\n159302|0.61111\n159303|0.59722\n159304|0.38889\n159305|0.52778\n159306|0.38889\n159307|0.45833\n159308|0.36111\n159309|0.33333\n159310|0.5\n159311|0.59722\n159312|0.54167\n159313|0.31944\n159314|0.5\n159315|0.45833\n159316|0.36111\n159317|0.44444\n159318|0.34722\n159319|0.40278\n159320|0.5\n159321|0.5\n159322|0.36111\n159323|0.59722\n159324|0.5\n159325|0.5\n159326|0.5\n159327|0.54167\n159328|0.55556\n159329|0.31944\n159330|0.5\n159331|0.55556\n159332|0.55556\n159333|0.58333\n159334|0.5\n159335|0.55556\n159336|0.48611\n159337|0.44444\n159338|0.5\n159339|0.54167\n159340|0.51389\n159341|0.5\n159342|0.43056\n159343|0.34722\n159344|0.5\n159345|0.43056\n159346|0.375\n159347|0.5\n159348|0.51389\n159349|0.5\n159350|0.55556\n159351|0.5\n159352|0.625\n159353|0.23611\n159354|0.65278\n159355|0.44444\n159356|0.5\n159357|0.44444\n159358|0.58333\n159359|0.56944\n159360|0.5\n159361|0.51389\n159362|0.5\n159363|0.34722\n159364|0.27778\n159365|0.19444\n159366|0.5\n159367|0.83333\n159368|0.36111\n159369|0.31944\n159370|0.22222\n159371|0.72222\n159372|0.29167\n159373|0.5\n159374|0.77778\n159375|0.47222\n159376|0.44444\n159377|0.43056\n159378|0.20833\n159379|0.22222\n159380|0.27778\n159381|0.5\n159382|0.5\n159383|0.5\n159384|0.52778\n159385|0.5\n159386|0.5\n159387|0.5\n159388|0.5\n159389|0.5\n159390|0.29167\n159391|0.55556\n159392|0.5\n159393|0.38889\n159394|0.40278\n159395|0.5\n159396|0.5\n159397|0.38889\n159398|0.38889\n159399|0.38889\n159400|0.33333\n159401|0.26389\n159402|0.47222\n159403|0.18056\n159404|0.52778\n159405|0.5\n159406|0.66667\n159407|0.47222\n159408|0.5\n159409|0.55556\n159410|0.65278\n159411|0.5\n159412|0.81944\n159413|0.5\n159414|0.86111\n159415|0.47222\n159416|0.5\n159417|0.48611\n159418|0.66667\n159419|0.625\n159420|0.34722\n159421|0.44444\n159422|0.43056\n159423|0.56944\n159424|0.33333\n159425|0.48611\n159426|0.58333\n159427|0.38889\n159428|0.5\n159429|0.5\n159430|0.77778\n159431|0.52778\n159432|0.5\n159433|0.48611\n159434|0.20833\n159435|0.5\n159436|0.56944\n159437|0.47222\n159438|0.70833\n159439|0.58333\n159440|0.40278\n159441|0.69444\n159442|0.29167\n159443|0.5\n159444|0.44444\n159445|0.5\n159446|0.59722\n159447|0.26389\n159448|0.5\n159449|0.48611\n159450|0.5\n159451|0.5\n159452|0.5\n159453|0.65278\n159454|0.45833\n159455|0.59722\n159456|0.69444\n159457|0.43056\n159458|0.63889\n159459|0.52778\n159460|0.51389\n159461|0.5\n159462|0.5\n159463|0.58333\n159464|0.48611\n159465|0.51389\n159466|0.19444\n159467|0.77778\n159468|0.41667\n159469|0.55556\n159470|0.52778\n159471|0.5\n159472|0.5\n159473|0.29167\n159474|0.52778\n159475|0.30556\n159476|0.5\n159477|0.5\n159478|0.5\n159479|0.52778\n159480|0.51389\n159481|0.69444\n159482|0.55556\n159483|0.61111\n159484|0.44444\n159485|0.47222\n159486|0.5\n159487|0.48611\n159488|0.75\n159489|0.40278\n159490|0.54167\n159491|0.44444\n159492|0.19444\n159493|0.5\n159494|0.5\n159495|0.5\n159496|0.5\n159497|0.47222\n159498|0.5\n159499|0.5\n159500|0.43056\n159501|0.5\n159502|0.44444\n159503|0.36111\n159504|0.55556\n159505|0.5\n159506|0.5\n159507|0.5\n159508|0.5\n159509|0.34722\n159510|0.51389\n159511|0.51389\n159512|0.22222\n159513|0.5\n159514|0.375\n159515|0.20833\n159516|0.44444\n159517|0.47222\n159518|0.44444\n159519|0.47222\n159520|0.55556\n159521|0.40278\n159522|0.47222\n159523|0.43056\n159524|0.61111\n159525|0.69444\n159526|0.5\n159527|0.56944\n159528|0.43056\n159529|0.5\n159530|0.5\n159531|0.56944\n159532|0.5\n159533|0.375\n159534|0.56944\n159535|0.5\n159536|0.44444\n159537|0.11111\n159538|0.51389\n159539|0.59722\n159540|0.52778\n159541|0.38889\n159542|0.44444\n159543|0.27778\n159544|0.41667\n159545|0.34722\n159546|0.30556\n159547|0.19444\n159548|0.33333\n159549|0.22222\n159550|0.38889\n159551|0.56944\n159552|0.23611\n159553|0.23611\n159554|0.47222\n159555|0.23611\n159556|0.18056\n159557|0.36111\n159558|0.22222\n159559|0.23611\n159560|0.44444\n159561|0.5\n159562|0.43056\n159563|0.48611\n159564|0.5\n159565|0.5\n159566|0.16667\n159567|0.25\n159568|0.083333\n159569|0.31944\n159570|0.25\n159571|0.44444\n159572|0.44444\n159573|0.31944\n159574|0.66667\n159575|0.48611\n159576|0.26389\n159577|0.26389\n159578|0.45833\n159579|0.5\n159580|0.48611\n159581|0.55556\n159582|0.5\n159583|0.26389\n159584|0.61111\n159585|0.20833\n159586|0.56944\n159587|0.5\n159588|0.5\n159589|0.40278\n159590|0.375\n159591|0.44444\n159592|0.375\n159593|0.33333\n159594|0.41667\n159595|0.33333\n159596|0.48611\n159597|0.40278\n159598|0.26389\n159599|0.5\n159600|0.36111\n159601|0.5\n159602|0.5\n159603|0.19444\n159604|0.20833\n159605|0.5\n159606|0.63889\n159607|0.41667\n159608|0.19444\n159609|0.23611\n159610|0.375\n159611|0.56944\n159612|0.23611\n159613|0.33333\n159614|0.45833\n159615|0.41667\n159616|0.54167\n159617|0.41667\n159618|0.27778\n159619|0.18056\n159620|0.15278\n159621|0.29167\n159622|0.33333\n159623|0.5\n159624|0.27778\n159625|0.5\n159626|0.51389\n159627|0.56944\n159628|0.44444\n159629|0.5\n159630|0.5\n159631|0.45833\n159632|0.52778\n159633|0.45833\n159634|0.38889\n159635|0.59722\n159636|0.44444\n159637|0.52778\n159638|0.48611\n159639|0.5\n159640|0.43056\n159641|0.375\n159642|0.48611\n159643|0.38889\n159644|0.58333\n159645|0.55556\n159646|0.61111\n159647|0.5\n159648|0.38889\n159649|0.51389\n159650|0.44444\n159651|0.56944\n159652|0.5\n159653|0.5\n159654|0.5\n159655|0.5\n159656|0.58333\n159657|0.27778\n159658|0.55556\n159659|0.59722\n159660|0.52778\n159661|0.58333\n159662|0.18056\n159663|0.375\n159664|0.30556\n159665|0.13889\n159666|0.34722\n159667|0.55556\n159668|0.38889\n159669|0.375\n159670|0.48611\n159671|0.44444\n159672|0.45833\n159673|0.5\n159674|0.34722\n159675|0.18056\n159676|0.5\n159677|0.52778\n159678|0.5\n159679|0.55556\n159680|0.61111\n159681|0.5\n159682|0.44444\n159683|0.55556\n159684|0.51389\n159685|0.5\n159686|0.45833\n159687|0.5\n159688|0.54167\n159689|0.51389\n159690|0.5\n159691|0.5\n159692|0.40278\n159693|0.27778\n159694|0.41667\n159695|0.5\n159696|0.375\n159697|0.47222\n159698|0.59722\n159699|0.5\n159700|0.54167\n159701|0.5\n159702|0.44444\n159703|0.38889\n159704|0.51389\n159705|0.44444\n159706|0.61111\n159707|0.22222\n159708|0.43056\n159709|0.19444\n159710|0.5\n159711|0.30556\n159712|0.48611\n159713|0.5\n159714|0.45833\n159715|0.63889\n159716|0.69444\n159717|0.61111\n159718|0.43056\n159719|0.27778\n159720|0.45833\n159721|0.5\n159722|0.5\n159723|0.48611\n159724|0.36111\n159725|0.55556\n159726|0.5\n159727|0.55556\n159728|0.61111\n159729|0.73611\n159730|0.29167\n159731|0.5\n159732|0.5\n159733|0.25\n159734|0.44444\n159735|0.45833\n159736|0.61111\n159737|0.26389\n159738|0.5\n159739|0.5\n159740|0.44444\n159741|0.51389\n159742|0.55556\n159743|0.29167\n159744|0.44444\n159745|0.48611\n159746|0.38889\n159747|0.5\n159748|0.5\n159749|0.22222\n159750|0.34722\n159751|0.5\n159752|0.5\n159753|0.51389\n159754|0.25\n159755|0.61111\n159756|0.5\n159757|0.5\n159758|0.5\n159759|0.51389\n159760|0.5\n159761|0.5\n159762|0.15278\n159763|0.5\n159764|0.31944\n159765|0.34722\n159766|0.40278\n159767|0.20833\n159768|0.47222\n159769|0.5\n159770|0.375\n159771|0.59722\n159772|0.375\n159773|0.20833\n159774|0.5\n159775|0.5\n159776|0.5\n159777|0.44444\n159778|0.56944\n159779|0.16667\n159780|0.33333\n159781|0.16667\n159782|0.5\n159783|0.5\n159784|0.5\n159785|0.5\n159786|0.5\n159787|0.33333\n159788|0.55556\n159789|0.66667\n159790|0.44444\n159791|0.38889\n159792|0.54167\n159793|0.5\n159794|0.54167\n159795|0.625\n159796|0.54167\n159797|0.20833\n159798|0.76389\n159799|0.16667\n159800|0.083333\n159801|0.58333\n159802|0.30556\n159803|0.29167\n159804|0.45833\n159805|0.51389\n159806|0.16667\n159807|0.34722\n159808|0.55556\n159809|0.58333\n159810|0.51389\n159811|0.45833\n159812|0.5\n159813|0.79167\n159814|0.5\n159815|0.5\n159816|0.55556\n159817|0.77778\n159818|0.58333\n159819|0.76389\n159820|0.61111\n159821|0.73611\n159822|0.40278\n159823|0.70833\n159824|0.59722\n159825|0.75\n159826|0.38889\n159827|0.33333\n159828|0.45833\n159829|0.52778\n159830|0.38889\n159831|0.68056\n159832|0.68056\n159833|0.66667\n159834|0.70833\n159835|0.66667\n159836|0.77778\n159837|0.72222\n159838|0.76389\n159839|0.51389\n159840|0.51389\n159841|0.63889\n159842|0.65278\n159843|0.66667\n159844|0.22222\n159845|0.59722\n159846|0.66667\n159847|0.73611\n159848|0.38889\n159849|0.61111\n159850|0.47222\n159851|0.19444\n159852|0.22222\n159853|0.16667\n159854|0.34722\n159855|0.41667\n159856|0.73611\n159857|0.48611\n159858|0.72222\n159859|0.40278\n159860|0.5\n159861|0.5\n159862|0.5\n159863|0.48611\n159864|0.20833\n159865|0.52778\n159866|0.66667\n159867|0.23611\n159868|0.27778\n159869|0.38889\n159870|0.5\n159871|0.5\n159872|0.5\n159873|0.5\n159874|0.48611\n159875|0.48611\n159876|0.5\n159877|0.44444\n159878|0.77778\n159879|0.54167\n159880|0.41667\n159881|0.44444\n159882|0.70833\n159883|0.63889\n159884|0.5\n159885|0.43056\n159886|0.47222\n159887|0.47222\n159888|0.875\n159889|0.47222\n159890|0.45833\n159891|0.40278\n159892|0.66667\n159893|0.5\n159894|0.5\n159895|0.40278\n159896|0.625\n159897|0.36111\n159898|0.43056\n159899|0.70833\n159900|0.20833\n159901|0.33333\n159902|0.51389\n159903|0.5\n159904|0.5\n159905|0.5\n159906|0.5\n159907|0.33333\n159908|0.45833\n159909|0.5\n159910|0.48611\n159911|0.51389\n159912|0.26389\n159913|0.5\n159914|0.34722\n159915|0.56944\n159916|0.5\n159917|0.45833\n159918|0.44444\n159919|0.44444\n159920|0.52778\n159921|0.52778\n159922|0.51389\n159923|0.23611\n159924|0.41667\n159925|0.25\n159926|0.33333\n159927|0.61111\n159928|0.80556\n159929|0.375\n159930|0.5\n159931|0.58333\n159932|0.23611\n159933|0.23611\n159934|0.43056\n159935|0.26389\n159936|0.31944\n159937|0.36111\n159938|0.33333\n159939|0.36111\n159940|0.33333\n159941|0.55556\n159942|0.66667\n159943|0.5\n159944|0.27778\n159945|0.61111\n159946|0.48611\n159947|0.5\n159948|0.5\n159949|0.38889\n159950|0.43056\n159951|0.55556\n159952|0.5\n159953|0.20833\n159954|0.69444\n159955|0.80556\n159956|0.73611\n159957|0.75\n159958|0.65278\n159959|0.56944\n159960|0.56944\n159961|0.5\n159962|0.56944\n159963|0.68056\n159964|0.70833\n159965|0.63889\n159966|0.66667\n159967|0.68056\n159968|0.58333\n159969|0.5\n159970|0.44444\n159971|0.33333\n159972|0.30556\n159973|0.5\n159974|0.47222\n159975|0.70833\n159976|0.5\n159977|0.48611\n159978|0.5\n159979|0.44444\n159980|0.5\n159981|0.52778\n159982|0.72222\n159983|0.40278\n159984|0.48611\n159985|0.63889\n159986|0.33333\n159987|0.5\n159988|0.5\n159989|0.31944\n159990|0.33333\n159991|0.55556\n159992|0.5\n159993|0.41667\n159994|0.375\n159995|0.5\n159996|0.51389\n159997|0.5\n159998|0.55556\n159999|0.19444\n160000|0.25\n160001|0.45833\n160002|0.45833\n160003|0.55556\n160004|0.41667\n160005|0.5\n160006|0.625\n160007|0.43056\n160008|0.43056\n160009|0.48611\n160010|0.26389\n160011|0.29167\n160012|0.38889\n160013|0.59722\n160014|0.5\n160015|0.44444\n160016|0.5\n160017|0.5\n160018|0.5\n160019|0.5\n160020|0.41667\n160021|0.72222\n160022|0.38889\n160023|0.23611\n160024|0.20833\n160025|0.29167\n160026|0.38889\n160027|0.18056\n160028|0.40278\n160029|0.45833\n160030|0.34722\n160031|0.66667\n160032|0.19444\n160033|0.15278\n160034|0.20833\n160035|0.5\n160036|0.34722\n160037|0.40278\n160038|0.51389\n160039|0.41667\n160040|0.47222\n160041|0.19444\n160042|0.58333\n160043|0.47222\n160044|0.38889\n160045|0.61111\n160046|0.43056\n160047|0.58333\n160048|0.31944\n160049|0.23611\n160050|0.61111\n160051|0.56944\n160052|0.44444\n160053|0.5\n160054|0.31944\n160055|0.34722\n160056|0.375\n160057|0.19444\n160058|0.5\n160059|0.38889\n160060|0.27778\n160061|0.31944\n160062|0.65278\n160063|0.38889\n160064|0.38889\n160065|0.65278\n160066|0.375\n160067|0.48611\n160068|0.48611\n160069|0.47222\n160070|0.31944\n160071|0.48611\n160072|0.70833\n160073|0.58333\n160074|0.65278\n160075|0.41667\n160076|0.63889\n160077|0.33333\n160078|0.5\n160079|0.5\n160080|0.5\n160081|0.68056\n160082|0.69444\n160083|0.5\n160084|0.38889\n160085|0.54167\n160086|0.5\n160087|0.43056\n160088|0.80556\n160089|0.83333\n160090|0.56944\n160091|0.43056\n160092|0.52778\n160093|0.52778\n160094|0.5\n160095|0.5\n160096|0.5\n160097|0.5\n160098|0.44444\n160099|0.22222\n160100|0.44444\n160101|0.40278\n160102|0.5\n160103|0.44444\n160104|0.5\n160105|0.63889\n160106|0.52778\n160107|0.55556\n160108|0.41667\n160109|0.22222\n160110|0.5\n160111|0.55556\n160112|0.45833\n160113|0.55556\n160114|0.59722\n160115|0.25\n160116|0.20833\n160117|0.5\n160118|0.26389\n160119|0.19444\n160120|0.5\n160121|0.33333\n160122|0.61111\n160123|0.27778\n160124|0.31944\n160125|0.5\n160126|0.23611\n160127|0.27778\n160128|0.34722\n160129|0.5\n160130|0.44444\n160131|0.45833\n160132|0.47222\n160133|0.56944\n160134|0.31944\n160135|0.5\n160136|0.51389\n160137|0.44444\n160138|0.29167\n160139|0.52778\n160140|0.5\n160141|0.5\n160142|0.65278\n160143|0.29167\n160144|0.40278\n160145|0.29167\n160146|0.083333\n160147|0.44444\n160148|0.5\n160149|0.51389\n160150|0.40278\n160151|0.31944\n160152|0.30556\n160153|0.34722\n160154|0.38889\n160155|0.41667\n160156|0.69444\n160157|0.625\n160158|0.5\n160159|0.52778\n160160|0.51389\n160161|0.45833\n160162|0.48611\n160163|0.5\n160164|0.625\n160165|0.65278\n160166|0.51389\n160167|0.5\n160168|0.40278\n160169|0.5\n160170|0.44444\n160171|0.23611\n160172|0.38889\n160173|0.44444\n160174|0.5\n160175|0.43056\n160176|0.5\n160177|0.625\n160178|0.65278\n160179|0.5\n160180|0.59722\n160181|0.29167\n160182|0.5\n160183|0.58333\n160184|0.55556\n160185|0.5\n160186|0.47222\n160187|0.5\n160188|0.15278\n160189|0.45833\n160190|0.48611\n160191|0.43056\n160192|0.73611\n160193|0.15278\n160194|0.125\n160195|0.25\n160196|0.36111\n160197|0.61111\n160198|0.52778\n160199|0.33333\n160200|0.36111\n160201|0.5\n160202|0.5\n160203|0.27778\n160204|0.16667\n160205|0.55556\n160206|0.22222\n160207|0.16667\n160208|0.23611\n160209|0.51389\n160210|0.69444\n160211|0.5\n160212|0.66667\n160213|0.51389\n160214|0.19444\n160215|0.33333\n160216|0.41667\n160217|0.55556\n160218|0.55556\n160219|0.33333\n160220|0.5\n160221|0.5\n160222|0.33333\n160223|0.55556\n160224|0.80556\n160225|0.45833\n160226|0.43056\n160227|0.54167\n160228|0.69444\n160229|0.73611\n160230|0.52778\n160231|0.56944\n160232|0.5\n160233|0.5\n160234|0.51389\n160235|0.36111\n160236|0.15278\n160237|0.29167\n160238|0.22222\n160239|0.33333\n160240|0.375\n160241|0.81944\n160242|0.73611\n160243|0.80556\n160244|0.69444\n160245|0.59722\n160246|0.375\n160247|0.76389\n160248|0.72222\n160249|0.27778\n160250|0.66667\n160251|0.66667\n160252|0.625\n160253|0.73611\n160254|0.48611\n160255|0.44444\n160256|0.65278\n160257|0.625\n160258|0.63889\n160259|0.625\n160260|0.68056\n160261|0.625\n160262|0.59722\n160263|0.66667\n160264|0.73611\n160265|0.72222\n160266|0.58333\n160267|0.76389\n160268|0.63889\n160269|0.72222\n160270|0.68056\n160271|0.59722\n160272|0.65278\n160273|0.40278\n160274|0.77778\n160275|0.59722\n160276|0.75\n160277|0.55556\n160278|0.45833\n160279|0.36111\n160280|0.5\n160281|0.56944\n160282|0.22222\n160283|0.22222\n160284|0.11111\n160285|0\n160286|0.52778\n160287|0.40278\n160288|0.45833\n160289|0.77778\n160290|0.77778\n160291|0.47222\n160292|0.41667\n160293|0.40278\n160294|0.5\n160295|0.70833\n160296|0.72222\n160297|0.5\n160298|0.48611\n160299|0.5\n160300|0.5\n160301|0.61111\n160302|0.79167\n160303|0.13889\n160304|0.63889\n160305|0.5\n160306|0.5\n160307|0.48611\n160308|0.51389\n160309|0.45833\n160310|0.5\n160311|0.38889\n160312|0.27778\n160313|0.625\n160314|0.5\n160315|0.19444\n160316|0.38889\n160317|0.31944\n160318|0.52778\n160319|0.51389\n160320|0.43056\n160321|0.52778\n160322|0.48611\n160323|0.5\n160324|0.45833\n160325|0.59722\n160326|0.44444\n160327|0.5\n160328|0.34722\n160329|0.34722\n160330|0.38889\n160331|0.73611\n160332|0.69444\n160333|0.27778\n160334|0.77778\n160335|0.93056\n160336|0.66667\n160337|0.66667\n160338|0.79167\n160339|0.65278\n160340|0.77778\n160341|0.86111\n160342|0.375\n160343|0.55556\n160344|0.61111\n160345|0.65278\n160346|0.375\n160347|0.38889\n160348|0.43056\n160349|0.5\n160350|0.5\n160351|0.5\n160352|0.5\n160353|0.55556\n160354|0.5\n160355|0.5\n160356|0.19444\n160357|0.19444\n160358|0.16667\n160359|0.33333\n160360|0.29167\n160361|0.43056\n160362|0.38889\n160363|0.43056\n160364|0.34722\n160365|0.36111\n160366|0.18056\n160367|0.36111\n160368|0.125\n160369|0.31944\n160370|0.5\n160371|0.55556\n160372|0.63889\n160373|0.34722\n160374|0.25\n160375|0.5\n160376|0.36111\n160377|0.083333\n160378|0.44444\n160379|0.45833\n160380|0.097222\n160381|0.59722\n160382|0.40278\n160383|0.52778\n160384|0.22222\n160385|0.77778\n160386|0.58333\n160387|0.51389\n160388|0.22222\n160389|0.5\n160390|0.48611\n160391|0.51389\n160392|0.5\n160393|0.52778\n160394|0.48611\n160395|0.59722\n160396|0.56944\n160397|0.22222\n160398|0.22222\n160399|0.16667\n160400|0.22222\n160401|0.26389\n160402|0.19444\n160403|0.40278\n160404|0.40278\n160405|0.33333\n160406|0.19444\n160407|0.23611\n160408|0.56944\n160409|0.47222\n160410|0.47222\n160411|0.5\n160412|0.55556\n160413|0.56944\n160414|0.5\n160415|0.375\n160416|0.55556\n160417|0.73611\n160418|0.44444\n160419|0.5\n160420|0.58333\n160421|0.5\n160422|0.5\n160423|0.5\n160424|0.43056\n160425|0.23611\n160426|0.47222\n160427|0.31944\n160428|0.41667\n160429|0.36111\n160430|0.47222\n160431|0.33333\n160432|0.38889\n160433|0.5\n160434|0.34722\n160435|0.5\n160436|0.36111\n160437|0.27778\n160438|0.5\n160439|0.48611\n160440|0.5\n160441|0.44444\n160442|0.5\n160443|0.5\n160444|0.47222\n160445|0.54167\n160446|0.5\n160447|0.61111\n160448|0.54167\n160449|0.55556\n160450|0.33333\n160451|0.5\n160452|0.5\n160453|0.5\n160454|0.5\n160455|0.48611\n160456|0.33333\n160457|0.25\n160458|0.47222\n160459|0.5\n160460|0.44444\n160461|0.5\n160462|0.47222\n160463|0.22222\n160464|0.27778\n160465|0.23611\n160466|0.34722\n160467|0.55556\n160468|0.31944\n160469|0.38889\n160470|0.5\n160471|0.16667\n160472|0.5\n160473|0.5\n160474|0.36111\n160475|0.34722\n160476|0.29167\n160477|0.27778\n160478|0.5\n160479|0.5\n160480|0.34722\n160481|0.25\n160482|0.33333\n160483|0.48611\n160484|0.375\n160485|0.48611\n160486|0.30556\n160487|0.5\n160488|0.5\n160489|0.38889\n160490|0.41667\n160491|0.5\n160492|0.36111\n160493|0.52778\n160494|0.5\n160495|0.47222\n160496|0.45833\n160497|0.5\n160498|0.45833\n160499|0.38889\n160500|0.27778\n160501|0.083333\n160502|0.18056\n160503|0.52778\n160504|0.47222\n160505|0.40278\n160506|0.19444\n160507|0.66667\n160508|0.41667\n160509|0.54167\n160510|0.51389\n160511|0.61111\n160512|0.75\n160513|0.79167\n160514|0.23611\n160515|0.375\n160516|0.56944\n160517|0.18056\n160518|0.44444\n160519|0.33333\n160520|0.38889\n160521|0.19444\n160522|0.34722\n160523|0.44444\n160524|0.48611\n160525|0.083333\n160526|0.55556\n160527|0.45833\n160528|0.52778\n160529|0.51389\n160530|0.20833\n160531|0.18056\n160532|0.48611\n160533|0.27778\n160534|0.5\n160535|0.5\n160536|0.27778\n160537|0.5\n160538|0.41667\n160539|0.47222\n160540|0.27778\n160541|0.5\n160542|0.31944\n160543|0.23611\n160544|0.33333\n160545|0.38889\n160546|0.33333\n160547|0.36111\n160548|0.33333\n160549|0.25\n160550|0.43056\n160551|0.20833\n160552|0.34722\n160553|0.36111\n160554|0.47222\n160555|0.33333\n160556|0.19444\n160557|0.38889\n160558|0.25\n160559|0.30556\n160560|0.33333\n160561|0.375\n160562|0.5\n160563|0.45833\n160564|0.5\n160565|0.52778\n160566|0.48611\n160567|0.43056\n160568|0.33333\n160569|0.29167\n160570|0.56944\n160571|0.51389\n160572|0.31944\n160573|0.11111\n160574|0.5\n160575|0.29167\n160576|0.48611\n160577|0.5\n160578|0.44444\n160579|0.66667\n160580|0.43056\n160581|0.47222\n160582|0.55556\n160583|0.5\n160584|0.68056\n160585|0.77778\n160586|0.48611\n160587|0.45833\n160588|0.30556\n160589|0.33333\n160590|0.48611\n160591|0.38889\n160592|0.625\n160593|0.5\n160594|0.38889\n160595|0.45833\n160596|0.31944\n160597|0.75\n160598|0.15278\n160599|0.55556\n160600|0.66667\n160601|0.33333\n160602|0.52778\n160603|0.56944\n160604|0.23611\n160605|0.34722\n160606|0.79167\n160607|0.77778\n160608|0.84722\n160609|0.69444\n160610|0.36111\n160611|0.5\n160612|0.22222\n160613|0.36111\n160614|0.29167\n160615|0.375\n160616|0.68056\n160617|0.40278\n160618|0.36111\n160619|0.48611\n160620|0.15278\n160621|0.61111\n160622|0.47222\n160623|0.27778\n160624|0.26389\n160625|0.38889\n160626|0.22222\n160627|0.38889\n160628|0.38889\n160629|0.33333\n160630|0.13889\n160631|0.56944\n160632|0.65278\n160633|0.63889\n160634|0.69444\n160635|0.625\n160636|0.68056\n160637|0.15278\n160638|0.055556\n160639|0.72222\n160640|0.5\n160641|0.36111\n160642|0.41667\n160643|0.61111\n160644|0.27778\n160645|0.27778\n160646|0.34722\n160647|0.34722\n160648|0.5\n160649|0.61111\n160650|0.29167\n160651|0.27778\n160652|0.61111\n160653|0.55556\n160654|0.27778\n160655|0.47222\n160656|0.43056\n160657|0.375\n160658|0.5\n160659|0.5\n160660|0.61111\n160661|0.59722\n160662|0.26389\n160663|0.54167\n160664|0.33333\n160665|0.48611\n160666|0.375\n160667|0.43056\n160668|0.52778\n160669|0.44444\n160670|0.55556\n160671|0.5\n160672|0.68056\n160673|0.31944\n160674|0.375\n160675|0.72222\n160676|0.73611\n160677|0.66667\n160678|0.54167\n160679|0.48611\n160680|0.68056\n160681|0.44444\n160682|0.125\n160683|0.5\n160684|0.34722\n160685|0.47222\n160686|0.40278\n160687|0.36111\n160688|0.44444\n160689|0.38889\n160690|0.18056\n160691|0.16667\n160692|0.45833\n160693|0.34722\n160694|0.33333\n160695|0.43056\n160696|0.36111\n160697|0.51389\n160698|0.61111\n160699|0.56944\n160700|0.47222\n160701|0.36111\n160702|0.30556\n160703|0.43056\n160704|0.38889\n160705|0.23611\n160706|0.5\n160707|0.22222\n160708|0.29167\n160709|0.25\n160710|0.36111\n160711|0.23611\n160712|0.44444\n160713|0.18056\n160714|0.34722\n160715|0.22222\n160716|0.30556\n160717|0.18056\n160718|0.26389\n160719|0.22222\n160720|0.22222\n160721|0.16667\n160722|0.40278\n160723|0.36111\n160724|0.54167\n160725|0.77778\n160726|0.19444\n160727|0.43056\n160728|0.5\n160729|0.55556\n160730|0.5\n160731|0.26389\n160732|0.22222\n160733|0.52778\n160734|0.30556\n160735|0.5\n160736|0.25\n160737|0.125\n160738|0.5\n160739|0.55556\n160740|0.5\n160741|0.27778\n160742|0.45833\n160743|0.52778\n160744|0.66667\n160745|0.40278\n160746|0.375\n160747|0.19444\n160748|0.54167\n160749|0.23611\n160750|0.5\n160751|0.5\n160752|0.41667\n160753|0.55556\n160754|0.29167\n160755|0.625\n160756|0.58333\n160757|0.5\n160758|0.27778\n160759|0.40278\n160760|0.29167\n160761|0.25\n160762|0.15278\n160763|0.11111\n160764|0.38889\n160765|0.22222\n160766|0.30556\n160767|0.40278\n160768|0.26389\n160769|0.41667\n160770|0.40278\n160771|0.5\n160772|0.52778\n160773|0.27778\n160774|0.31944\n160775|0.083333\n160776|0\n160777|0.041667\n160778|0.40278\n160779|0.5\n160780|0.22222\n160781|0.52778\n160782|0.44444\n160783|0.16667\n160784|0.5\n160785|0.5\n160786|0.47222\n160787|0.5\n160788|0.47222\n160789|0.40278\n160790|0.54167\n160791|0.77778\n160792|0.59722\n160793|0.097222\n160794|0.56944\n160795|0.54167\n160796|0.56944\n160797|0.45833\n160798|0.5\n160799|0.34722\n160800|0.44444\n160801|0.45833\n160802|0.61111\n160803|0.52778\n160804|0.45833\n160805|0.5\n160806|0.33333\n160807|0.54167\n160808|0.76389\n160809|0.54167\n160810|0.33333\n160811|0.72222\n160812|0.25\n160813|0.31944\n160814|0.27778\n160815|0.76389\n160816|0.5\n160817|0.38889\n160818|0.44444\n160819|0.38889\n160820|0.25\n160821|0.61111\n160822|0.45833\n160823|0.72222\n160824|0.5\n160825|0.36111\n160826|0.5\n160827|0.5\n160828|0.59722\n160829|0.52778\n160830|0.52778\n160831|0.11111\n160832|0.44444\n160833|0.48611\n160834|0.5\n160835|0.30556\n160836|0.54167\n160837|0.26389\n160838|0.36111\n160839|0.5\n160840|0.36111\n160841|0.52778\n160842|0.22222\n160843|0.61111\n160844|0.33333\n160845|0.26389\n160846|0.51389\n160847|0.125\n160848|0.5\n160849|0.30556\n160850|0.33333\n160851|0.34722\n160852|0.58333\n160853|0.54167\n160854|0.44444\n160855|0.5\n160856|0.45833\n160857|0.34722\n160858|0.30556\n160859|0.54167\n160860|0.59722\n160861|0.5\n160862|0.5\n160863|0.5\n160864|0.47222\n160865|0.40278\n160866|0.48611\n160867|0.44444\n160868|0.5\n160869|0.5\n160870|0.56944\n160871|0.44444\n160872|0.75\n160873|0.5\n160874|0.81944\n160875|0.72222\n160876|0.48611\n160877|0.61111\n160878|0.069444\n160879|0.52778\n160880|0.5\n160881|0.59722\n160882|0.61111\n160883|0.88889\n160884|0.5\n160885|0.59722\n160886|0.73611\n160887|0.38889\n160888|0.5\n160889|0.26389\n160890|0.5\n160891|0.5\n160892|0.34722\n160893|0.38889\n160894|0.52778\n160895|0.23611\n160896|0.25\n160897|0.70833\n160898|0.375\n160899|0.80556\n160900|0.65278\n160901|0.70833\n160902|0.70833\n160903|0.29167\n160904|0.34722\n160905|0.54167\n160906|0.55556\n160907|0.43056\n160908|0.45833\n160909|0.125\n160910|0.29167\n160911|0.25\n160912|0.61111\n160913|0.27778\n160914|0.5\n160915|0.55556\n160916|0.47222\n160917|0.55556\n160918|0.375\n160919|0.20833\n160920|0.16667\n160921|0.40278\n160922|0.22222\n160923|0.25\n160924|0.30556\n160925|0.55556\n160926|0.38889\n160927|0.40278\n160928|0.055556\n160929|0.20833\n160930|0.22222\n160931|0.58333\n160932|0.18056\n160933|0.5\n160934|0.5\n160935|0.43056\n160936|0.40278\n160937|0.125\n160938|0.55556\n160939|0.90278\n160940|0.97222\n160941|0.44444\n160942|0.51389\n160943|0.375\n160944|0.59722\n160945|0.45833\n160946|0.29167\n160947|0.30556\n160948|0.5\n160949|0.5\n160950|0.5\n160951|0.48611\n160952|0.38889\n160953|0.61111\n160954|0.26389\n160955|0.72222\n160956|0.54167\n160957|0.069444\n160958|0.5\n160959|0.5\n160960|0.40278\n160961|0.5\n160962|0.52778\n160963|0.5\n160964|0.38889\n160965|0.5\n160966|0.5\n160967|0.61111\n160968|0.38889\n160969|0.65278\n160970|0.23611\n160971|0.83333\n160972|0.44444\n160973|0.125\n160974|0.38889\n160975|0.63889\n160976|0.38889\n160977|0.38889\n160978|0.23611\n160979|0.5\n160980|0.27778\n160981|0.47222\n160982|0.5\n160983|0.5\n160984|0.40278\n160985|0.34722\n160986|0.19444\n160987|0.33333\n160988|0.23611\n160989|0.43056\n160990|0.33333\n160991|0.375\n160992|0.54167\n160993|0.44444\n160994|0.59722\n160995|0.45833\n160996|0.5\n160997|0.34722\n160998|0.29167\n160999|0.5\n161000|0.36111\n161001|0.40278\n161002|0.15278\n161003|0.41667\n161004|0.56944\n161005|0.45833\n161006|0.11111\n161007|0.5\n161008|0.61111\n161009|0.41667\n161010|0.33333\n161011|0.59722\n161012|0.29167\n161013|0.5\n161014|0.5\n161015|0.38889\n161016|0.56944\n161017|0.5\n161018|0.625\n161019|0.36111\n161020|0.38889\n161021|0.33333\n161022|0.45833\n161023|0.45833\n161024|0.55556\n161025|0.45833\n161026|0.36111\n161027|0.33333\n161028|0.5\n161029|0.61111\n161030|0.625\n161031|0.79167\n161032|0.73611\n161033|0.84722\n161034|0.33333\n161035|0.375\n161036|0.625\n161037|0.61111\n161038|0.47222\n161039|0.55556\n161040|0.70833\n161041|0.47222\n161042|0.63889\n161043|0.45833\n161044|0.52778\n161045|0.38889\n161046|0.65278\n161047|0.48611\n161048|0.31944\n161049|0.26389\n161050|0.47222\n161051|0.44444\n161052|0.34722\n161053|0.47222\n161054|0.5\n161055|0.41667\n161056|0.30556\n161057|0.34722\n161058|0.36111\n161059|0.5\n161060|0.23611\n161061|0.25\n161062|0.47222\n161063|0.54167\n161064|0.16667\n161065|0.44444\n161066|0.41667\n161067|0.5\n161068|0.38889\n161069|0.61111\n161070|0.16667\n161071|0.38889\n161072|0.41667\n161073|0.5\n161074|0.30556\n161075|0.5\n161076|0.31944\n161077|0.5\n161078|0.33333\n161079|0.25\n161080|0.54167\n161081|0.55556\n161082|0.48611\n161083|0.41667\n161084|0.56944\n161085|0.51389\n161086|0.5\n161087|0.51389\n161088|0.43056\n161089|0.5\n161090|0.43056\n161091|0.19444\n161092|0.5\n161093|0.48611\n161094|0.5\n161095|0.56944\n161096|0.5\n161097|0.625\n161098|0.51389\n161099|0.55556\n161100|0.55556\n161101|0.5\n161102|0.59722\n161103|0.33333\n161104|0.47222\n161105|0.375\n161106|0.51389\n161107|0.63889\n161108|0.5\n161109|0.52778\n161110|0.52778\n161111|0.29167\n161112|0.5\n161113|0.097222\n161114|0.56944\n161115|0.5\n161116|0.27778\n161117|0.5\n161118|0.51389\n161119|0.5\n161120|0.52778\n161121|0.41667\n161122|0.5\n161123|0.63889\n161124|0.69444\n161125|0.72222\n161126|0.56944\n161127|0.19444\n161128|0.5\n161129|0.66667\n161130|0.52778\n161131|0.29167\n161132|0.59722\n161133|0.27778\n161134|0.5\n161135|0.5\n161136|0.63889\n161137|0.31944\n161138|0.22222\n161139|0.54167\n161140|0.13889\n161141|0.30556\n161142|0.58333\n161143|0.34722\n161144|0.5\n161145|0.38889\n161146|0.40278\n161147|0.61111\n161148|0.38889\n161149|0.41667\n161150|0.41667\n161151|0.59722\n161152|0.40278\n161153|0.27778\n161154|0.48611\n161155|0.5\n161156|0.5\n161157|0.43056\n161158|0.40278\n161159|0.54167\n161160|0.45833\n161161|0.45833\n161162|0.44444\n161163|0.48611\n161164|0.5\n161165|0.19444\n161166|0.069444\n161167|0.29167\n161168|0.45833\n161169|0.23611\n161170|0.52778\n161171|0.51389\n161172|0.5\n161173|0.45833\n161174|0.38889\n161175|0.52778\n161176|0.61111\n161177|0.52778\n161178|0.5\n161179|0.25\n161180|0.5\n161181|0.51389\n161182|0.63889\n161183|0.73611\n161184|0.88889\n161185|0.5\n161186|0.5\n161187|0.44444\n161188|0.5\n161189|0.59722\n161190|0.027778\n161191|0.81944\n161192|0.55556\n161193|0.5\n161194|0.5\n161195|0.51389\n161196|0.19444\n161197|0.5\n161198|0.48611\n161199|0.5\n161200|0.30556\n161201|0.5\n161202|0.22222\n161203|0.52778\n161204|0.51389\n161205|0.51389\n161206|0.61111\n161207|0.76389\n161208|0.61111\n161209|0.38889\n161210|0.58333\n161211|0.47222\n161212|0.61111\n161213|0.5\n161214|0.34722\n161215|0.125\n161216|0.5\n161217|0.5\n161218|0.5\n161219|0.5\n161220|0.5\n161221|0.63889\n161222|0.44444\n161223|0.5\n161224|0.5\n161225|0.25\n161226|0.68056\n161227|0.5\n161228|0.27778\n161229|0.44444\n161230|0.5\n161231|0.29167\n161232|0.44444\n161233|0.5\n161234|0.5\n161235|0.5\n161236|0.5\n161237|0.52778\n161238|0.44444\n161239|0.5\n161240|0.5\n161241|0.5\n161242|0.44444\n161243|0.55556\n161244|0.5\n161245|0.5\n161246|0.5\n161247|0.5\n161248|0.56944\n161249|0.40278\n161250|0.5\n161251|0.51389\n161252|0.23611\n161253|0.48611\n161254|0.33333\n161255|0.56944\n161256|0.54167\n161257|0.40278\n161258|0.33333\n161259|0.58333\n161260|0.54167\n161261|0.625\n161262|0.76389\n161263|0.5\n161264|0.5\n161265|0.5\n161266|0.40278\n161267|0.48611\n161268|0.13889\n161269|0.5\n161270|0.54167\n161271|0.56944\n161272|0.5\n161273|0.48611\n161274|0.20833\n161275|0.58333\n161276|0.47222\n161277|0.5\n161278|0.5\n161279|0.5\n161280|0.5\n161281|0.375\n161282|0.5\n161283|0.47222\n161284|0.5\n161285|0.5\n161286|0.5\n161287|0.5\n161288|0.52778\n161289|0.5\n161290|0.5\n161291|0.5\n161292|0.44444\n161293|0.5\n161294|0.52778\n161295|0.52778\n161296|0.20833\n161297|0.52778\n161298|0.5\n161299|0.5\n161300|0.375\n161301|0.5\n161302|0.5\n161303|0.56944\n161304|0.45833\n161305|0.44444\n161306|0.52778\n161307|0.38889\n161308|0.38889\n161309|0.38889\n161310|0.34722\n161311|0.47222\n161312|0.55556\n161313|0.5\n161314|0.5\n161315|0.5\n161316|0.5\n161317|0.5\n161318|0.34722\n161319|0.5\n161320|0.5\n161321|0.54167\n161322|0.59722\n161323|0.69444\n161324|0.54167\n161325|0.66667\n161326|0.5\n161327|0.5\n161328|0.63889\n161329|0.5\n161330|0.26389\n161331|0.22222\n161332|0.5\n161333|0.5\n161334|0.41667\n161335|0.69444\n161336|0.51389\n161337|0.5\n161338|0.625\n161339|0.44444\n161340|0.58333\n161341|0.51389\n161342|0.55556\n161343|0.5\n161344|0.55556\n161345|0.66667\n161346|0.36111\n161347|0.5\n161348|0.33333\n161349|0.5\n161350|0.47222\n161351|0.38889\n161352|0.30556\n161353|0.72222\n161354|0.625\n161355|0.36111\n161356|0.5\n161357|0.59722\n161358|0.36111\n161359|0.51389\n161360|0.27778\n161361|0.25\n161362|0.25\n161363|0.15278\n161364|0.5\n161365|0.5\n161366|0.5\n161367|0.5\n161368|0.41667\n161369|0.48611\n161370|0.5\n161371|0.47222\n161372|0.36111\n161373|0.34722\n161374|0.31944\n161375|0.34722\n161376|0.27778\n161377|0.40278\n161378|0.23611\n161379|0.31944\n161380|0.38889\n161381|0.61111\n161382|0.56944\n161383|0.40278\n161384|0.31944\n161385|0.27778\n161386|0.29167\n161387|0.52778\n161388|0.47222\n161389|0.44444\n161390|0.125\n161391|0.5\n161392|0.27778\n161393|0.34722\n161394|0.30556\n161395|0.29167\n161396|0.55556\n161397|0.52778\n161398|0.29167\n161399|0.41667\n161400|0.48611\n161401|0.5\n161402|0.40278\n161403|0.5\n161404|0.5\n161405|0.19444\n161406|0.52778\n161407|0.38889\n161408|0.65278\n161409|0.40278\n161410|0.38889\n161411|0.5\n161412|0.48611\n161413|0.31944\n161414|0.58333\n161415|0.29167\n161416|0.33333\n161417|0.41667\n161418|0.15278\n161419|0.16667\n161420|0.083333\n161421|0.52778\n161422|0.5\n161423|0.5\n161424|0.5\n161425|0.47222\n161426|0.22222\n161427|0.23611\n161428|0.083333\n161429|0.22222\n161430|0.25\n161431|0.34722\n161432|0.5\n161433|0.55556\n161434|0.5\n161435|0.5\n161436|0.54167\n161437|0.375\n161438|0.375\n161439|0.38889\n161440|0.51389\n161441|0.41667\n161442|0.41667\n161443|0.375\n161444|0.5\n161445|0.5\n161446|0.5\n161447|0.5\n161448|0.5\n161449|0.48611\n161450|0.5\n161451|0.5\n161452|0.61111\n161453|0.5\n161454|0.44444\n161455|0.59722\n161456|0.5\n161457|0.44444\n161458|0.56944\n161459|0.069444\n161460|0.11111\n161461|0.75\n161462|0.56944\n161463|0.45833\n161464|0.5\n161465|0.47222\n161466|0.5\n161467|0.41667\n161468|0.40278\n161469|0.16667\n161470|0.29167\n161471|0.40278\n161472|0.33333\n161473|0.55556\n161474|0.5\n161475|0.41667\n161476|0.48611\n161477|0.45833\n161478|0.41667\n161479|0.44444\n161480|0.52778\n161481|0.44444\n161482|0.5\n161483|0.15278\n161484|0.44444\n161485|0.625\n161486|0.43056\n161487|0.70833\n161488|0.70833\n161489|0.72222\n161490|0.56944\n161491|0.375\n161492|0.5\n161493|0.19444\n161494|0.44444\n161495|0.33333\n161496|0.56944\n161497|0.41667\n161498|0.33333\n161499|0.25\n161500|0.13889\n161501|0.47222\n161502|0.61111\n161503|0.34722\n161504|0.48611\n161505|0.40278\n161506|0.5\n161507|0.61111\n161508|0.81944\n161509|0.44444\n161510|0.47222\n161511|0.58333\n161512|0.5\n161513|0.51389\n161514|0.5\n161515|0.5\n161516|0.5\n161517|0.65278\n161518|0.48611\n161519|0.5\n161520|0.5\n161521|0.63889\n161522|0.59722\n161523|0.72222\n161524|0.68056\n161525|0.75\n161526|0.23611\n161527|0.26389\n161528|0.20833\n161529|0.34722\n161530|0.20833\n161531|0.26389\n161532|0.16667\n161533|0.44444\n161534|0.38889\n161535|0.44444\n161536|0.5\n161537|0.51389\n161538|0.51389\n161539|0.5\n161540|0.59722\n161541|0.5\n161542|0.36111\n161543|0.38889\n161544|0.54167\n161545|0.66667\n161546|0.36111\n161547|0.5\n161548|0.52778\n161549|0.52778\n161550|0.625\n161551|0.43056\n161552|0.47222\n161553|0.20833\n161554|0.23611\n161555|0.38889\n161556|0.55556\n161557|0.23611\n161558|0.5\n161559|0.34722\n161560|0.29167\n161561|0.44444\n161562|0.5\n161563|0.68056\n161564|0.47222\n161565|0.29167\n161566|0.33333\n161567|0.55556\n161568|0.5\n161569|0.25\n161570|0.25\n161571|0.38889\n161572|0.38889\n161573|0.38889\n161574|0.63889\n161575|0.16667\n161576|0.33333\n161577|0.5\n161578|0.40278\n161579|0.38889\n161580|0.34722\n161581|0.5\n161582|0.59722\n161583|0.30556\n161584|0.29167\n161585|0.34722\n161586|0.625\n161587|0.625\n161588|0.41667\n161589|0.22222\n161590|0.22222\n161591|0.30556\n161592|0.20833\n161593|0.5\n161594|0.45833\n161595|0.22222\n161596|0.5\n161597|0.31944\n161598|0.15278\n161599|0.44444\n161600|0.375\n161601|0.56944\n161602|0.44444\n161603|0.5\n161604|0.5\n161605|0.375\n161606|0.18056\n161607|0.5\n161608|0.18056\n161609|0.38889\n161610|0.19444\n161611|0.5\n161612|0.29167\n161613|0.27778\n161614|0.66667\n161615|0.5\n161616|0.5\n161617|0.51389\n161618|0.31944\n161619|0.22222\n161620|0.51389\n161621|0.31944\n161622|0.40278\n161623|0.36111\n161624|0.61111\n161625|0.5\n161626|0.77778\n161627|0.41667\n161628|0.20833\n161629|0.26389\n161630|0.38889\n161631|0.25\n161632|0.30556\n161633|0.44444\n161634|0.23611\n161635|0.27778\n161636|0.30556\n161637|0.055556\n161638|0.33333\n161639|0.23611\n161640|0.41667\n161641|0.29167\n161642|0.29167\n161643|0.5\n161644|0.375\n161645|0.55556\n161646|0.38889\n161647|0.375\n161648|0.43056\n161649|0.5\n161650|0.56944\n161651|0.33333\n161652|0.41667\n161653|0.30556\n161654|0.375\n161655|0.5\n161656|0.29167\n161657|0.33333\n161658|0.55556\n161659|0.5\n161660|0.56944\n161661|0.61111\n161662|0.58333\n161663|0.58333\n161664|0.31944\n161665|0.61111\n161666|0.77778\n161667|0.36111\n161668|0.61111\n161669|0.19444\n161670|0.5\n161671|0.63889\n161672|0.55556\n161673|0.79167\n161674|0.097222\n161675|0.875\n161676|0.83333\n161677|0.63889\n161678|0.86111\n161679|0.38889\n161680|0.33333\n161681|0.5\n161682|0.45833\n161683|0.38889\n161684|0.375\n161685|0.5\n161686|0.18056\n161687|0.45833\n161688|0.5\n161689|0.15278\n161690|0.52778\n161691|0.5\n161692|0.73611\n161693|0.75\n161694|0.54167\n161695|0.52778\n161696|0.20833\n161697|0.44444\n161698|0.36111\n161699|0.30556\n161700|0.44444\n161701|0.65278\n161702|0.61111\n161703|0.48611\n161704|0.51389\n161705|0.30556\n161706|0.69444\n161707|0.66667\n161708|0.51389\n161709|0.72222\n161710|0.44444\n161711|0.5\n161712|0.38889\n161713|0.45833\n161714|0.59722\n161715|0.36111\n161716|0.33333\n161717|0.36111\n161718|0.48611\n161719|0.33333\n161720|0.5\n161721|0.5\n161722|0.61111\n161723|0.56944\n161724|0.38889\n161725|0.44444\n161726|0.5\n161727|0.47222\n161728|0.54167\n161729|0.5\n161730|0.5\n161731|0.38889\n161732|0.27778\n161733|0.5\n161734|0.5\n161735|0.375\n161736|0.51389\n161737|0.5\n161738|0.52778\n161739|0.44444\n161740|0.5\n161741|0.19444\n161742|0.5\n161743|0.5\n161744|0.5\n161745|0.5\n161746|0.5\n161747|0.5\n161748|0.54167\n161749|0.5\n161750|0.59722\n161751|0.54167\n161752|0.5\n161753|0.5\n161754|0.43056\n161755|0.5\n161756|0.52778\n161757|0.5\n161758|0.45833\n161759|0.5\n161760|0.23611\n161761|0.5\n161762|0.097222\n161763|0.52778\n161764|0.45833\n161765|0.5\n161766|0.5\n161767|0.56944\n161768|0.5\n161769|0.5\n161770|0.55556\n161771|0.56944\n161772|0.5\n161773|0.47222\n161774|0.15278\n161775|0.41667\n161776|0.22222\n161777|0.43056\n161778|0.5\n161779|0.31944\n161780|0.33333\n161781|0.47222\n161782|0.52778\n161783|0.52778\n161784|0.18056\n161785|0.5\n161786|0.56944\n161787|0.23611\n161788|0.48611\n161789|0.65278\n161790|0.56944\n161791|0.5\n161792|0.40278\n161793|0.55556\n161794|0.5\n161795|0.48611\n161796|0.30556\n161797|0.61111\n161798|0.375\n161799|0.58333\n161800|0.52778\n161801|0.5\n161802|0.5\n161803|0.125\n161804|0.48611\n161805|0.51389\n161806|0.5\n161807|0.41667\n161808|0.33333\n161809|0.44444\n161810|0.125\n161811|0.5\n161812|0.5\n161813|0.44444\n161814|0.58333\n161815|0.375\n161816|0.48611\n161817|0.40278\n161818|0.5\n161819|0.38889\n161820|0.44444\n161821|0.31944\n161822|0.58333\n161823|0.61111\n161824|0.36111\n161825|0.5\n161826|0.5\n161827|0.43056\n161828|0.19444\n161829|0.34722\n161830|0.59722\n161831|0.34722\n161832|0.30556\n161833|0.5\n161834|0.34722\n161835|0.58333\n161836|0.72222\n161837|0.52778\n161838|0.52778\n161839|0.52778\n161840|0.47222\n161841|0.5\n161842|0.55556\n161843|0.5\n161844|0.5\n161845|0.44444\n161846|0.38889\n161847|0.45833\n161848|0.38889\n161849|0.5\n161850|0.31944\n161851|0.61111\n161852|0.55556\n161853|0.47222\n161854|0.18056\n161855|0.44444\n161856|0.5\n161857|0.25\n161858|0.54167\n161859|0.097222\n161860|0.27778\n161861|0.5\n161862|0.55556\n161863|0.5\n161864|0.31944\n161865|0.54167\n161866|0.48611\n161867|0.54167\n161868|0.41667\n161869|0.33333\n161870|0.38889\n161871|0.51389\n161872|0.5\n161873|0.5\n161874|0.5\n161875|0.5\n161876|0.5\n161877|0.5\n161878|0.47222\n161879|0.63889\n161880|0.38889\n161881|0.25\n161882|0.5\n161883|0.5\n161884|0.5\n161885|0.5\n161886|0.5\n161887|0.16667\n161888|0.29167\n161889|0.5\n161890|0.18056\n161891|0.5\n161892|0.61111\n161893|0.36111\n161894|0.58333\n161895|0.51389\n161896|0.36111\n161897|0.59722\n161898|0.5\n161899|0.5\n161900|0.56944\n161901|0.41667\n161902|0.44444\n161903|0.5\n161904|0.5\n161905|0.56944\n161906|0.5\n161907|0.51389\n161908|0.5\n161909|0.5\n161910|0.5\n161911|0.15278\n161912|0.38889\n161913|0.22222\n161914|0.5\n161915|0.44444\n161916|0.43056\n161917|0.56944\n161918|0.5\n161919|0.48611\n161920|0.58333\n161921|0.63889\n161922|0.51389\n161923|0.52778\n161924|0.38889\n161925|0.63889\n161926|0.5\n161927|0.27778\n161928|0.5\n161929|0.48611\n161930|0.375\n161931|0.44444\n161932|0.30556\n161933|0.45833\n161934|0.61111\n161935|0.20833\n161936|0.54167\n161937|0.5\n161938|0.55556\n161939|0.5\n161940|0.52778\n161941|0.44444\n161942|0.59722\n161943|0.5\n161944|0.31944\n161945|0.66667\n161946|0.47222\n161947|0.56944\n161948|0.29167\n161949|0.16667\n161950|0.55556\n161951|0.54167\n161952|0.16667\n161953|0.43056\n161954|0.45833\n161955|0.27778\n161956|0.48611\n161957|0.55556\n161958|0.38889\n161959|0.34722\n161960|0.5\n161961|0.33333\n161962|0.5\n161963|0.30556\n161964|0.18056\n161965|0.31944\n161966|0.54167\n161967|0.625\n161968|0.52778\n161969|0.22222\n161970|0.5\n161971|0.52778\n161972|0.36111\n161973|0.16667\n161974|0.26389\n161975|0.51389\n161976|0.47222\n161977|0.5\n161978|0.5\n161979|0.51389\n161980|0.47222\n161981|0.48611\n161982|0.59722\n161983|0.54167\n161984|0.52778\n161985|0.48611\n161986|0.5\n161987|0.59722\n161988|0.48611\n161989|0.47222\n161990|0.5\n161991|0.61111\n161992|0.63889\n161993|0.375\n161994|0.44444\n161995|0.40278\n161996|0.29167\n161997|0.5\n161998|0.59722\n161999|0.5\n162000|0.25\n162001|0.22222\n162002|0.33333\n162003|0.5\n162004|0.44444\n162005|0.44444\n162006|0.44444\n162007|0.41667\n162008|0.27778\n162009|0.5\n162010|0.36111\n162011|0.5\n162012|0.20833\n162013|0.43056\n162014|0.5\n162015|0.56944\n162016|0.44444\n162017|0.44444\n162018|0.47222\n162019|0.5\n162020|0.27778\n162021|0.40278\n162022|0.5\n162023|0.5\n162024|0.5\n162025|0.43056\n162026|0.44444\n162027|0.38889\n162028|0.5\n162029|0.36111\n162030|0.48611\n162031|0.5\n162032|0.5\n162033|0.55556\n162034|0.51389\n162035|0.5\n162036|0.54167\n162037|0.41667\n162038|0.5\n162039|0.5\n162040|0.5\n162041|0.5\n162042|0.44444\n162043|0.22222\n162044|0.5\n162045|0.59722\n162046|0.59722\n162047|0.5\n162048|0.68056\n162049|0.58333\n162050|0.63889\n162051|0.5\n162052|0.5\n162053|0.5\n162054|0.5\n162055|0.5\n162056|0.48611\n162057|0.5\n162058|0.23611\n162059|0.27778\n162060|0.25\n162061|0.66667\n162062|0.34722\n162063|0.59722\n162064|0.30556\n162065|0.125\n162066|0.5\n162067|0.36111\n162068|0.58333\n162069|0.27778\n162070|0.5\n162071|0.54167\n162072|0.16667\n162073|0.5\n162074|0.27778\n162075|0.54167\n162076|0.51389\n162077|0.31944\n162078|0.61111\n162079|0.56944\n162080|0.34722\n162081|0.041667\n162082|0.41667\n162083|0.48611\n162084|0.29167\n162085|0.63889\n162086|0.34722\n162087|0.47222\n162088|0.55556\n162089|0.625\n162090|0.41667\n162091|0.48611\n162092|0.30556\n162093|0.5\n162094|0.5\n162095|0.5\n162096|0.47222\n162097|0.45833\n162098|0.33333\n162099|0.23611\n162100|0.23611\n162101|0.30556\n162102|0.33333\n162103|0.11111\n162104|0.40278\n162105|0.13889\n162106|0.30556\n162107|0.29167\n162108|0.5\n162109|0.31944\n162110|0.27778\n162111|0.5\n162112|0.36111\n162113|0.48611\n162114|0.5\n162115|0.43056\n162116|0.47222\n162117|0.16667\n162118|0.15278\n162119|0.19444\n162120|0.45833\n162121|0.33333\n162122|0.5\n162123|0.38889\n162124|0.25\n162125|0.20833\n162126|0.56944\n162127|0.44444\n162128|0.38889\n162129|0.44444\n162130|0.27778\n162131|0.22222\n162132|0.23611\n162133|0.55556\n162134|0.48611\n162135|0.41667\n162136|0.40278\n162137|0.44444\n162138|0.625\n162139|0.43056\n162140|0.56944\n162141|0.45833\n162142|0.47222\n162143|0.47222\n162144|0.5\n162145|0.54167\n162146|0.41667\n162147|0.45833\n162148|0.27778\n162149|0.59722\n162150|0.5\n162151|0.5\n162152|0.36111\n162153|0.23611\n162154|0.375\n162155|0.56944\n162156|0.5\n162157|0.58333\n162158|0.5\n162159|0.30556\n162160|0.5\n162161|0.29167\n162162|0.45833\n162163|0.5\n162164|0.20833\n162165|0.33333\n162166|0.30556\n162167|0.20833\n162168|0.27778\n162169|0.41667\n162170|0.19444\n162171|0.31944\n162172|0.45833\n162173|0.36111\n162174|0.30556\n162175|0.5\n162176|0.61111\n162177|0.44444\n162178|0.36111\n162179|0.26389\n162180|0.16667\n162181|0\n162182|0.51389\n162183|0.34722\n162184|0.54167\n162185|0.36111\n162186|0.25\n162187|0.20833\n162188|0.23611\n162189|0.58333\n162190|0.5\n162191|0.41667\n162192|0.27778\n162193|0.29167\n162194|0.5\n162195|0.54167\n162196|0.5\n162197|0.59722\n162198|0.61111\n162199|0.5\n162200|0.51389\n162201|0.58333\n162202|0.5\n162203|0.63889\n162204|0.5\n162205|0.68056\n162206|0.51389\n162207|0.625\n162208|0.66667\n162209|0.59722\n162210|0.34722\n162211|0.33333\n162212|0.59722\n162213|0.70833\n162214|0.44444\n162215|0.41667\n162216|0.5\n162217|0.44444\n162218|0.52778\n162219|0.5\n162220|0.5\n162221|0.5\n162222|0.45833\n162223|0.44444\n162224|0.55556\n162225|0.52778\n162226|0.72222\n162227|0.44444\n162228|0.38889\n162229|0.48611\n162230|0.36111\n162231|0.5\n162232|0.27778\n162233|0.44444\n162234|0.41667\n162235|0.25\n162236|0.54167\n162237|0.5\n162238|0.5\n162239|0.55556\n162240|0.5\n162241|0.23611\n162242|0.097222\n162243|0.34722\n162244|0.45833\n162245|0.5\n162246|0.56944\n162247|0.5\n162248|0.66667\n162249|0.70833\n162250|0.68056\n162251|0.61111\n162252|0.56944\n162253|0.44444\n162254|0.29167\n162255|0.79167\n162256|0.72222\n162257|0.5\n162258|0.5\n162259|0.77778\n162260|0.5\n162261|0.36111\n162262|0.56944\n162263|0.40278\n162264|0.36111\n162265|0.33333\n162266|0.43056\n162267|0.41667\n162268|0.52778\n162269|0.41667\n162270|0.34722\n162271|0.18056\n162272|0.5\n162273|0.16667\n162274|0.59722\n162275|0.44444\n162276|0.43056\n162277|0.5\n162278|0.11111\n162279|0.5\n162280|0.27778\n162281|0.25\n162282|0.19444\n162283|0.27778\n162284|0.33333\n162285|0.31944\n162286|0.33333\n162287|0.16667\n162288|0.19444\n162289|0.47222\n162290|0.55556\n162291|0.65278\n162292|0.16667\n162293|0.63889\n162294|0.41667\n162295|0.56944\n162296|0.54167\n162297|0.5\n162298|0.625\n162299|0.43056\n162300|0.16667\n162301|0.625\n162302|0.76389\n162303|0.63889\n162304|0.68056\n162305|0.41667\n162306|0.55556\n162307|0.63889\n162308|0.52778\n162309|0.44444\n162310|0.81944\n162311|0.48611\n162312|0.48611\n162313|0.41667\n162314|0.47222\n162315|0.38889\n162316|0.5\n162317|0.20833\n162318|0.61111\n162319|0.51389\n162320|0.52778\n162321|0.19444\n162322|0.79167\n162323|0.43056\n162324|0.72222\n162325|0.65278\n162326|0.54167\n162327|0.56944\n162328|0.69444\n162329|0.5\n162330|0.59722\n162331|0.625\n162332|0.72222\n162333|0.61111\n162334|0.69444\n162335|0.5\n162336|0.72222\n162337|0.625\n162338|0.58333\n162339|0.47222\n162340|0.52778\n162341|0.5\n162342|0.44444\n162343|0.5\n162344|0.18056\n162345|0.625\n162346|0.66667\n162347|0.54167\n162348|0.625\n162349|0.55556\n162350|0.5\n162351|0.20833\n162352|0.31944\n162353|0.55556\n162354|0.44444\n162355|0.44444\n162356|0.5\n162357|0.58333\n162358|0.47222\n162359|0.5\n162360|0.55556\n162361|0.43056\n162362|0.5\n162363|0.47222\n162364|0.5\n162365|0.19444\n162366|0.54167\n162367|0.5\n162368|0.47222\n162369|0.56944\n162370|0.44444\n162371|0.34722\n162372|0.20833\n162373|0.25\n162374|0.30556\n162375|0.41667\n162376|0.45833\n162377|0.41667\n162378|0.27778\n162379|0.375\n162380|0.40278\n162381|0.38889\n162382|0.55556\n162383|0.43056\n162384|0.5\n162385|0.31944\n162386|0.34722\n162387|0.33333\n162388|0.5\n162389|0.45833\n162390|0.44444\n162391|0.47222\n162392|0.43056\n162393|0.44444\n162394|0.5\n162395|0.45833\n162396|0.58333\n162397|0.44444\n162398|0.5\n162399|0.52778\n162400|0.5\n162401|0.54167\n162402|0.33333\n162403|0.5\n162404|0.33333\n162405|0.43056\n162406|0.38889\n162407|0.38889\n162408|0.44444\n162409|0.38889\n162410|0.40278\n162411|0.51389\n162412|0.44444\n162413|0.27778\n162414|0.58333\n162415|0.40278\n162416|0.5\n162417|0.375\n162418|0.51389\n162419|0.5\n162420|0.52778\n162421|0.5\n162422|0.40278\n162423|0.66667\n162424|0.125\n162425|0.44444\n162426|0.31944\n162427|0.48611\n162428|0.51389\n162429|0.5\n162430|0.43056\n162431|0.34722\n162432|0.38889\n162433|0.29167\n162434|0.38889\n162435|0.20833\n162436|0.30556\n162437|0.77778\n162438|0.80556\n162439|0.80556\n162440|0.43056\n162441|0.65278\n162442|0.41667\n162443|0.27778\n162444|0.27778\n162445|0.22222\n162446|0.65278\n162447|0.5\n162448|0.58333\n162449|0.625\n162450|0.59722\n162451|0.84722\n162452|0.72222\n162453|0.73611\n162454|0.59722\n162455|0.65278\n162456|0.51389\n162457|0.25\n162458|0.5\n162459|0.5\n162460|0.5\n162461|0.80556\n162462|0.88889\n162463|0.54167\n162464|0.31944\n162465|0.43056\n162466|0.59722\n162467|0.47222\n162468|0.40278\n162469|0.45833\n162470|0.29167\n162471|0.52778\n162472|0.19444\n162473|0.38889\n162474|0.44444\n162475|0.52778\n162476|0.47222\n162477|0.40278\n162478|0.5\n162479|0.625\n162480|0.5\n162481|0.51389\n162482|0.73611\n162483|0.33333\n162484|0.38889\n162485|0.54167\n162486|0.51389\n162487|0.52778\n162488|0.5\n162489|0.51389\n162490|0.52778\n162491|0.5\n162492|0.20833\n162493|0.65278\n162494|0.51389\n162495|0.34722\n162496|0.47222\n162497|0.5\n162498|0.29167\n162499|0.48611\n162500|0.44444\n162501|0.33333\n162502|0.47222\n162503|0.5\n162504|0.36111\n162505|0.13889\n162506|0.13889\n162507|0.30556\n162508|0.26389\n162509|0.34722\n162510|0.29167\n162511|0.29167\n162512|0.41667\n162513|0.31944\n162514|0.25\n162515|0.30556\n162516|0.5\n162517|0.55556\n162518|0.5\n162519|0.44444\n162520|0.51389\n162521|0.43056\n162522|0.44444\n162523|0.5\n162524|0.27778\n162525|0.36111\n162526|0.56944\n162527|0.5\n162528|0.027778\n162529|0.19444\n162530|0.375\n162531|0.26389\n162532|0.18056\n162533|0.19444\n162534|0.5\n162535|0.5\n162536|0.44444\n162537|0.55556\n162538|0.52778\n162539|0.22222\n162540|0.5\n162541|0.5\n162542|0.27778\n162543|0.19444\n162544|0.44444\n162545|0.45833\n162546|0.56944\n162547|0.31944\n162548|0.27778\n162549|0.72222\n162550|0.26389\n162551|0.33333\n162552|0.27778\n162553|0.30556\n162554|0.33333\n162555|0.26389\n162556|0.5\n162557|0.55556\n162558|0.51389\n162559|0.55556\n162560|0.16667\n162561|0.44444\n162562|0.5\n162563|0.5\n162564|0.25\n162565|0.40278\n162566|0.41667\n162567|0.5\n162568|0.15278\n162569|0.27778\n162570|0.30556\n162571|0.83333\n162572|0.68056\n162573|0.38889\n162574|0.41667\n162575|0.22222\n162576|0.11111\n162577|0.22222\n162578|0.22222\n162579|0.61111\n162580|0.44444\n162581|0.375\n162582|0.45833\n162583|0.18056\n162584|0.125\n162585|0.097222\n162586|0.30556\n162587|0.52778\n162588|0.27778\n162589|0.22222\n162590|0.13889\n162591|0.45833\n162592|0.13889\n162593|0.125\n162594|0.13889\n162595|0.375\n162596|0.27778\n162597|0.56944\n162598|0.66667\n162599|0.59722\n162600|0.59722\n162601|0.63889\n162602|0.45833\n162603|0.27778\n162604|0.43056\n162605|0.5\n162606|0.29167\n162607|0.79167\n162608|0.5\n162609|0.23611\n162610|0.61111\n162611|0.5\n162612|0.16667\n162613|0.18056\n162614|0.69444\n162615|0.16667\n162616|0.38889\n162617|0.15278\n162618|0.75\n162619|0.18056\n162620|0.23611\n162621|0.29167\n162622|0.26389\n162623|0.44444\n162624|0.55556\n162625|0.43056\n162626|0.5\n162627|0.31944\n162628|0.125\n162629|0.70833\n162630|0.43056\n162631|0.77778\n162632|0.31944\n162633|0.45833\n162634|0.19444\n162635|0.375\n162636|0.55556\n162637|0.5\n162638|0.13889\n162639|0.125\n162640|0.66667\n162641|0.73611\n162642|0.65278\n162643|0.45833\n162644|0.20833\n162645|0.25\n162646|0.29167\n162647|0.11111\n162648|0.43056\n162649|0.30556\n162650|0.069444\n162651|0.48611\n162652|0.15278\n162653|0.013889\n162654|0.36111\n162655|0.27778\n162656|0.15278\n162657|0.40278\n162658|0.33333\n162659|0.34722\n162660|0.33333\n162661|0.27778\n162662|0.38889\n162663|0.16667\n162664|0.19444\n162665|0.56944\n162666|0.73611\n162667|0.41667\n162668|0.41667\n162669|0.125\n162670|0.41667\n162671|0.15278\n162672|0.44444\n162673|0.33333\n162674|0.375\n162675|0.375\n162676|0.36111\n162677|0.16667\n162678|0.27778\n162679|0.16667\n162680|0.34722\n162681|0.31944\n162682|0.40278\n162683|0.30556\n162684|0.30556\n162685|0.11111\n162686|0.15278\n162687|0.22222\n162688|0.19444\n162689|0.38889\n162690|0.48611\n162691|0\n162692|0.20833\n162693|0.61111\n162694|0.66667\n162695|0.33333\n162696|0.19444\n162697|0.44444\n162698|0.40278\n162699|0.125\n162700|0.22222\n162701|0.41667\n162702|0.65278\n162703|0.44444\n162704|0.56944\n162705|0.45833\n162706|0.5\n162707|0.38889\n162708|0.65278\n162709|0.27778\n162710|0.44444\n162711|0.44444\n162712|0.55556\n162713|0.40278\n162714|0.31944\n162715|0.29167\n162716|0.18056\n162717|0.25\n162718|0.45833\n162719|0.34722\n162720|0.375\n162721|0.20833\n162722|0.27778\n162723|0.51389\n162724|0.5\n162725|0.45833\n162726|0.43056\n162727|0.41667\n162728|0.44444\n162729|0.38889\n162730|0.33333\n162731|0.19444\n162732|0.27778\n162733|0.56944\n162734|0.65278\n162735|0.43056\n162736|0.65278\n162737|0.72222\n162738|0.54167\n162739|0.69444\n162740|0.5\n162741|0.55556\n162742|0.33333\n162743|0.33333\n162744|0.27778\n162745|0.44444\n162746|0.22222\n162747|0.25\n162748|0.22222\n162749|0.43056\n162750|0.041667\n162751|0.027778\n162752|0.083333\n162753|0.47222\n162754|0.15278\n162755|0.34722\n162756|0.41667\n162757|0.47222\n162758|0.56944\n162759|0.15278\n162760|0.23611\n162761|0.41667\n162762|0.88889\n162763|0.95833\n162764|0.65278\n162765|0.72222\n162766|0.63889\n162767|0.51389\n162768|0.16667\n162769|0.38889\n162770|0.30556\n162771|0.097222\n162772|0.25\n162773|0.51389\n162774|0.23611\n162775|0.19444\n162776|0.5\n162777|0.55556\n162778|0.38889\n162779|0.5\n162780|0.52778\n162781|0.5\n162782|0.5\n162783|0.61111\n162784|0.25\n162785|0.5\n162786|0.33333\n162787|0.16667\n162788|0.18056\n162789|0.34722\n162790|0.31944\n162791|0.33333\n162792|0.30556\n162793|0.43056\n162794|0.31944\n162795|0.34722\n162796|0.25\n162797|0.54167\n162798|0.55556\n162799|0.30556\n162800|0.23611\n162801|0.26389\n162802|0.375\n162803|0.61111\n162804|0.59722\n162805|0.54167\n162806|0.47222\n162807|0.33333\n162808|0.39583\n162809|0.44444\n162810|0.23611\n162811|0.52778\n162812|0.125\n162813|0.25\n162814|0.16667\n162815|0.20833\n162816|0.22222\n162817|0.33333\n162818|0.40278\n162819|0.45833\n162820|0.65278\n162821|0.66667\n162822|0.22222\n162823|0.22222\n162824|0.20833\n162825|0.29167\n162826|0.30556\n162827|0.31944\n162828|0.43056\n162829|0.47222\n162830|0.625\n162831|0.61111\n162832|0.16667\n162833|0.29167\n162834|0.34722\n162835|0.069444\n162836|0.11111\n162837|0.69444\n162838|0.375\n162839|0.41667\n162840|0.19444\n162841|0.25\n162842|0.61111\n162843|0.375\n162844|0.5\n162845|0.61111\n162846|0.70833\n162847|0.65278\n162848|0.55556\n162849|0.43056\n162850|0.30556\n162851|0.63889\n162852|0.69444\n162853|0.5\n162854|0.125\n162855|0.22222\n162856|0.41667\n162857|0.30556\n162858|0.26389\n162859|0.31944\n162860|0.041667\n162861|0.22222\n162862|0.16667\n162863|0.5\n162864|0.5\n162865|0.54167\n162866|0.61111\n162867|0.29167\n162868|0.23611\n162869|0.16667\n162870|0.22222\n162871|0.58333\n162872|0.41667\n162873|0.13889\n162874|0.41667\n162875|0.40278\n162876|0.47222\n162877|0.125\n162878|0.31944\n162879|0.31944\n162880|0.31944\n162881|0.29167\n162882|0.61111\n162883|0.38889\n162884|0.15278\n162885|0.54167\n162886|0.30556\n162887|0.27778\n162888|0.31944\n162889|0.38889\n162890|0.31944\n162891|0.29167\n162892|0.375\n162893|0.26389\n162894|0.25\n162895|0.16667\n162896|0.11111\n162897|0.20833\n162898|0.33333\n162899|0.48611\n162900|0.41667\n162901|0.51389\n162902|0.23611\n162903|0.25\n162904|0.055556\n162905|0.055556\n162906|0.20833\n162907|0.47222\n162908|0.13889\n162909|0.52778\n162910|0.45833\n162911|0.31944\n162912|0.25\n162913|0.43056\n162914|0.5\n162915|0.51389\n162916|0.65278\n162917|0.20833\n162918|0.47222\n162919|0.52778\n162920|0.5\n162921|0.59722\n162922|0.80556\n162923|0.63889\n162924|0.88889\n162925|0.27778\n162926|0.31944\n162927|0.125\n162928|0.069444\n162929|0.26389\n162930|0.19444\n162931|0.5\n162932|0.22222\n162933|0.51389\n162934|0.26389\n162935|0.90278\n162936|0.30556\n162937|0.59722\n162938|0.58333\n162939|0.5\n162940|0.33333\n162941|0.20833\n162942|0.5\n162943|0.25\n162944|0.18056\n162945|0.48611\n162946|0.22222\n162947|0.80556\n162948|0.30556\n162949|0.48611\n162950|0.25\n162951|0.48611\n162952|0.19444\n162953|0.45833\n162954|0.66667\n162955|0.76389\n162956|0\n162957|0.30556\n162958|0.52778\n162959|0.5\n162960|0.18056\n162961|0.27778\n162962|0.38889\n162963|0.5\n162964|0.45833\n162965|0.41667\n162966|0.31944\n162967|0.19444\n162968|0.11111\n162969|0.16667\n162970|0.47222\n162971|0.5\n162972|0.61111\n162973|0.66667\n162974|0.27778\n162975|0.30556\n162976|0.29167\n162977|0.26389\n162978|0.52778\n162979|0.29167\n162980|0.5\n162981|0.44444\n162982|0.55556\n162983|0.58333\n162984|0.66667\n162985|0.23611\n162986|0.16667\n162987|0.33333\n162988|0.48611\n162989|0.66667\n162990|0.33333\n162991|0.30556\n162992|0.375\n162993|0.30556\n162994|0.13889\n162995|0.38889\n162996|0.20833\n162997|0.25\n162998|0.23611\n162999|0.40278\n163000|0.36111\n163001|0.45833\n163002|0.25\n163003|0.18056\n163004|0.013889\n163005|0.15278\n163006|0.25\n163007|0.48611\n163008|0.5\n163009|0.5\n163010|0.5\n163011|0.5\n163012|0.25\n163013|0.27778\n163014|0.70833\n163015|0.40278\n163016|0.47222\n163017|0.375\n163018|0.22222\n163019|0.61111\n163020|0.63889\n163021|0.38889\n163022|0.29167\n163023|0.34722\n163024|0.22222\n163025|0.5\n163026|0.45833\n163027|0.73611\n163028|0.72222\n163029|0.33333\n163030|0.125\n163031|0.15278\n163032|0.29167\n163033|0.27778\n163034|0.27778\n163035|0.16667\n163036|0.16667\n163037|0.19444\n163038|0.31944\n163039|0.38889\n163040|0.23611\n163041|0.33333\n163042|0.625\n163043|0.66667\n163044|0.59722\n163045|0.69444\n163046|0.45833\n163047|0.45833\n163048|0.68056\n163049|0.45833\n163050|0.22222\n163051|0.18056\n163052|0.52778\n163053|0.55556\n163054|0.13889\n163055|0.375\n163056|0.29167\n163057|0.33333\n163058|0.44444\n163059|0.29167\n163060|0.47222\n163061|0.5\n163062|0.43056\n163063|0.40278\n163064|0.36111\n163065|0.29167\n163066|0.36111\n163067|0.34722\n163068|0.43056\n163069|0.65278\n163070|0.51389\n163071|0.47222\n163072|0.33333\n163073|0.5\n163074|0.34722\n163075|0.5\n163076|0.33333\n163077|0.26389\n163078|0.20833\n163079|0.22222\n163080|0.40278\n163081|0.36111\n163082|0.55556\n163083|0.33333\n163084|0.33333\n163085|0.38889\n163086|0.18056\n163087|0.22222\n163088|0.33333\n163089|0.30556\n163090|0.23611\n163091|0.47222\n163092|0.29167\n163093|0.38889\n163094|0.51389\n163095|0.36111\n163096|0.40278\n163097|0.45833\n163098|0.43056\n163099|0.33333\n163100|0.38889\n163101|0.45833\n163102|0.40278\n163103|0.27778\n163104|0.36111\n163105|0.13889\n163106|0.55556\n163107|0.33333\n163108|0.26389\n163109|0.31944\n163110|0.55556\n163111|0.41667\n163112|0.29167\n163113|0.30556\n163114|0.27778\n163115|0.69444\n163116|0.52778\n163117|0.48611\n163118|0.11111\n163119|0.48611\n163120|0.31944\n163121|0.5\n163122|0.38889\n163123|0.5\n163124|0.40278\n163125|0.38889\n163126|0.36111\n163127|0.52778\n163128|0.375\n163129|0.40278\n163130|0.66667\n163131|0.36111\n163132|0.31944\n163133|0.38889\n163134|0.36111\n163135|0.44444\n163136|0.41667\n163137|0.41667\n163138|0.30556\n163139|0.47222\n163140|0.36111\n163141|0.5\n163142|0.51389\n163143|0.13889\n163144|0.13889\n163145|0.31944\n163146|0.069444\n163147|0.5\n163148|0.38889\n163149|0.5\n163150|0.45833\n163151|0.63889\n163152|0.30556\n163153|0.11111\n163154|0.55556\n163155|0.5\n163156|0.51389\n163157|0.19444\n163158|0.23611\n163159|0.11111\n163160|0.38889\n163161|0.55556\n163162|0.125\n163163|0.33333\n163164|0.38889\n163165|0.23611\n163166|0.40278\n163167|0.59722\n163168|0.27778\n163169|0.27778\n163170|0.29167\n163171|0.40278\n163172|0.65278\n163173|0.40278\n163174|0.45833\n163175|0.34722\n163176|0.27778\n163177|0.34722\n163178|0.33333\n163179|0.16667\n163180|0.11111\n163181|0.44444\n163182|0.18056\n163183|0.19444\n163184|0.55556\n163185|0.40278\n163186|0.19444\n163187|0.19444\n163188|0.33333\n163189|0.56944\n163190|0.55556\n163191|0.45833\n163192|0.45833\n163193|0.23611\n163194|0.41667\n163195|0.16667\n163196|0.27778\n163197|0.33333\n163198|0.19444\n163199|0.45833\n163200|0.16667\n163201|0.52778\n163202|0.61111\n163203|0.375\n163204|0.44444\n163205|0.36111\n163206|0.29167\n163207|0.13889\n163208|0.29167\n163209|0.13889\n163210|0.22222\n163211|0.52778\n163212|0.5\n163213|0.5\n163214|0.29167\n163215|0.45833\n163216|0.26389\n163217|0.5\n163218|0.5\n163219|0.29167\n163220|0.25\n163221|0.19444\n163222|0.31944\n163223|0.34722\n163224|0.027778\n163225|0.22222\n163226|0.11111\n163227|0.79167\n163228|0.69444\n163229|0.55556\n163230|0.29167\n163231|0.20833\n163232|0.18056\n163233|0.29167\n163234|0.15278\n163235|0.23611\n163236|0.34722\n163237|0.27778\n163238|0.33333\n163239|0.41667\n163240|0.61111\n163241|0.58333\n163242|0.55556\n163243|0.40278\n163244|0.27778\n163245|0.20833\n163246|0.5\n163247|0.26389\n163248|0.22222\n163249|0.13889\n163250|0.22222\n163251|0.20833\n163252|0.16667\n163253|0.41667\n163254|0.52778\n163255|0.44444\n163256|0.19444\n163257|0.27778\n163258|0.48611\n163259|0.13889\n163260|0.23611\n163261|0.27778\n163262|0.097222\n163263|0.16667\n163264|0.45833\n163265|0.31944\n163266|0.26389\n163267|0.68056\n163268|0.79167\n163269|0.40278\n163270|0.38889\n163271|0.47222\n163272|0.26389\n163273|0.43056\n163274|0.38889\n163275|0.43056\n163276|0.63889\n163277|0.65278\n163278|0.65278\n163279|0.55556\n163280|0.22222\n163281|0.33333\n163282|0.33333\n163283|0.41667\n163284|0.56944\n163285|0.61111\n163286|0.54167\n163287|0.33333\n163288|0.38889\n163289|0.66667\n163290|0.19444\n163291|0.27778\n163292|0.20833\n163293|0.19444\n163294|0.22222\n163295|0.15278\n163296|0.18056\n163297|0.5\n163298|0.56944\n163299|0.5\n163300|0.52778\n163301|0.16667\n163302|0.33333\n163303|0.38889\n163304|0.33333\n163305|0.29167\n163306|0.34722\n163307|0.34722\n163308|0.36111\n163309|0.125\n163310|0.19444\n163311|0.22222\n163312|0.20833\n163313|0.36111\n163314|0.43056\n163315|0.44444\n163316|0.33333\n163317|0.16667\n163318|0.27778\n163319|0.16667\n163320|0.16667\n163321|0.11111\n163322|0.31944\n163323|0.11111\n163324|0.13889\n163325|0.26389\n163326|0.20833\n163327|0.33333\n163328|0.16667\n163329|0.18056\n163330|0.63889\n163331|0.13889\n163332|0.125\n163333|0.18056\n163334|0.20833\n163335|0.19444\n163336|0.65278\n163337|0.31944\n163338|0.40278\n163339|0.63889\n163340|0.625\n163341|0.41667\n163342|0.30556\n163343|0.81944\n163344|0.79167\n163345|0.52778\n163346|0.38889\n163347|0.18056\n163348|0.25\n163349|0.097222\n163350|0.055556\n163351|0.19444\n163352|0.29167\n163353|0.22222\n163354|0.25\n163355|0.25\n163356|0.25\n163357|0.43056\n163358|0.33333\n163359|0.31944\n163360|0.38889\n163361|0.34722\n163362|0.40278\n163363|0.18056\n163364|0.15278\n163365|0.18056\n163366|0.16667\n163367|0.27778\n163368|0.18056\n163369|0.20833\n163370|0.44444\n163371|0.40278\n163372|0.29167\n163373|0.59722\n163374|0.43056\n163375|0.58333\n163376|0.45833\n163377|0.40278\n163378|0.30556\n163379|0.36111\n163380|0.19444\n163381|0.33333\n163382|0.23611\n163383|0.77778\n163384|0.55556\n163385|0.47222\n163386|0.22222\n163387|0.5\n163388|0.52778\n163389|0.54167\n163390|0.48611\n163391|0.43056\n163392|0.55556\n163393|0.47222\n163394|0.375\n163395|0.22222\n163396|0.44444\n163397|0.38889\n163398|0.52778\n163399|0.51389\n163400|0.375\n163401|0.58333\n163402|0.30556\n163403|0.27778\n163404|0.44444\n163405|0.61111\n163406|0.55556\n163407|0.55556\n163408|0.73611\n163409|0.25\n163410|0.43056\n163411|0.19444\n163412|0.375\n163413|0.38889\n163414|0.43056\n163415|0.5\n163416|0.29167\n163417|0.125\n163418|0.45833\n163419|0.22222\n163420|0.25\n163421|0.19444\n163422|0.31944\n163423|0.33333\n163424|0.51389\n163425|0.41667\n163426|0.33333\n163427|0.30556\n163428|0.51389\n163429|0.33333\n163430|0.33333\n163431|0.40278\n163432|0.38889\n163433|0.29167\n163434|0.375\n163435|0.69444\n163436|0.33333\n163437|0.027778\n163438|0.41667\n163439|0.31944\n163440|0.22222\n163441|0.20833\n163442|0.625\n163443|0.5\n163444|0.29167\n163445|0.36111\n163446|0.65278\n163447|0.5\n163448|0.20833\n163449|0.26389\n163450|0.59722\n163451|0.34722\n163452|0.51389\n163453|0.069444\n163454|0.33333\n163455|0.59722\n163456|0.56944\n163457|0.76389\n163458|0.19444\n163459|0.30556\n163460|0.40278\n163461|0.097222\n163462|0.26389\n163463|0.375\n163464|0.30556\n163465|0.18056\n163466|0.041667\n163467|0.069444\n163468|0.65278\n163469|0.5\n163470|0.44444\n163471|0.25\n163472|0.375\n163473|0.52778\n163474|0.5\n163475|0.5\n163476|0.22222\n163477|0.19444\n163478|0.375\n163479|0.5\n163480|0.19444\n163481|0.23611\n163482|0.19444\n163483|0.5\n163484|0.54167\n163485|0.59722\n163486|0.45833\n163487|0.13889\n163488|0.11111\n163489|0.18056\n163490|0.88889\n163491|0.51389\n163492|0.375\n163493|0.26389\n163494|0.23611\n163495|0.33333\n163496|0.44444\n163497|0.18056\n163498|0.25\n163499|0.44444\n163500|0.19444\n163501|0.22222\n163502|0.41667\n163503|0.5\n163504|0.41667\n163505|0.38889\n163506|0.47222\n163507|0.25\n163508|0.31944\n163509|0.23611\n163510|0.45833\n163511|0.33333\n163512|0.38889\n163513|0.44444\n163514|0.36111\n163515|0.22222\n163516|0.45833\n163517|0.375\n163518|0.52778\n163519|0.26389\n163520|0.75\n163521|0.36111\n163522|0.083333\n163523|0.25\n163524|0.31944\n163525|0.26389\n163526|0.29167\n163527|0.25\n163528|0.25\n163529|0.26389\n163530|0.16667\n163531|0.27778\n163532|0.31944\n163533|0.54167\n163534|0.61111\n163535|0.65278\n163536|0.66667\n163537|0.70833\n163538|0.51389\n163539|0.56944\n163540|0.23611\n163541|0.43056\n163542|0.375\n163543|0.38889\n163544|0.43056\n163545|0.16667\n163546|0.36111\n163547|0.11111\n163548|0.30556\n163549|0.33333\n163550|0.34722\n163551|0.40278\n163552|0.38889\n163553|0.26389\n163554|0.31944\n163555|0.25\n163556|0.23611\n163557|0.84722\n163558|0.625\n163559|0.61111\n163560|0.59722\n163561|0.38889\n163562|0.5\n163563|0.34722\n163564|0.25\n163565|0.45833\n163566|0.47222\n163567|0.41667\n163568|0.16667\n163569|0.52778\n163570|0.83333\n163571|0.29167\n163572|0.29167\n163573|0.59722\n163574|0.69444\n163575|0.69444\n163576|0.47222\n163577|0.33333\n163578|0.41667\n163579|0.30556\n163580|0.30556\n163581|0.55556\n163582|0.36111\n163583|0.5\n163584|0.45833\n163585|0.41667\n163586|0.38889\n163587|0.36111\n163588|0.30556\n163589|0.38889\n163590|0.16667\n163591|0.80556\n163592|0.72222\n163593|0.29167\n163594|0.61111\n163595|0.5\n163596|0.56944\n163597|0.43056\n163598|0.5\n163599|0.13889\n163600|0.77778\n163601|0.097222\n163602|0.18056\n163603|0.19444\n163604|0.34722\n163605|0.33333\n163606|0.66667\n163607|0.51389\n163608|0.26389\n163609|0.097222\n163610|0.27778\n163611|0.30556\n163612|0.20833\n163613|0.34722\n163614|0.18056\n163615|0.27778\n163616|0.5\n163617|0.65278\n163618|0.20833\n163619|0.5\n163620|0.5\n163621|0.47222\n163622|0.36111\n163623|0.19444\n163624|0.16667\n163625|0.30556\n163626|0.375\n163627|0.23611\n163628|0.29167\n163629|0.23611\n163630|0.55556\n163631|0.375\n163632|0.38889\n163633|0.59722\n163634|0.625\n163635|0.38889\n163636|0.41667\n163637|0.48611\n163638|0.23611\n163639|0.18056\n163640|0.23611\n163641|0.26389\n163642|0.069444\n163643|0.40278\n163644|0.11111\n163645|0.38889\n163646|0.75\n163647|0.73611\n163648|0.43056\n163649|0.86111\n163650|0.5\n163651|0.26389\n163652|0.31944\n163653|0.43056\n163654|0.20833\n163655|0.47222\n163656|0.41667\n163657|0.22222\n163658|0.26389\n163659|0.30556\n163660|0.25\n163661|0.22222\n163662|0.16667\n163663|0.41667\n163664|0.65278\n163665|0.27778\n163666|0.16667\n163667|0.38889\n163668|0.59722\n163669|0.375\n163670|0.43056\n163671|0.30556\n163672|0.15278\n163673|0.38889\n163674|0.56944\n163675|0.38889\n163676|0.33333\n163677|0.5\n163678|0.61111\n163679|0.38889\n163680|0.23611\n163681|0.38889\n163682|0.26389\n163683|0.11111\n163684|0.69444\n163685|0.375\n163686|0.43056\n163687|0.26389\n163688|0.11111\n163689|0.36111\n163690|0.27778\n163691|0.36111\n163692|0.52778\n163693|0.56944\n163694|0.33333\n163695|0.22222\n163696|0.20833\n163697|0.23611\n163698|0.20833\n163699|0.43056\n163700|0.33333\n163701|0.27778\n163702|0.33333\n163703|0.55556\n163704|0.31944\n163705|0.56944\n163706|0.38889\n163707|0.5\n163708|0.33333\n163709|0.33333\n163710|0.48611\n163711|0.19444\n163712|0.25\n163713|0.29167\n163714|0.34722\n163715|0.38889\n163716|0.5\n163717|0.44444\n163718|0.36111\n163719|0.51389\n163720|0.5\n163721|0.25\n163722|0.51389\n163723|0.55556\n163724|0.069444\n163725|0.22222\n163726|0.29167\n163727|0.36111\n163728|0.76389\n163729|0.625\n163730|0.22222\n163731|0.44444\n163732|0.5\n163733|0.5\n163734|0.5\n163735|0.625\n163736|0.38889\n163737|0.59722\n163738|0.33333\n163739|0.097222\n163740|0.5\n163741|0.33333\n163742|0.38889\n163743|0.5\n163744|0.47222\n163745|0.45833\n163746|0.33333\n163747|0.66667\n163748|0.31944\n163749|0.5\n163750|0.375\n163751|0.47222\n163752|0.5\n163753|0.55556\n163754|0.43056\n163755|0.29167\n163756|0.29167\n163757|0.54167\n163758|0.5\n163759|0.54167\n163760|0.31944\n163761|0.43056\n163762|0.44444\n163763|0.5\n163764|0.33333\n163765|0.069444\n163766|0.31944\n163767|0.33333\n163768|0.20833\n163769|0.48611\n163770|0.27778\n163771|0.72222\n163772|0.52778\n163773|0.66667\n163774|0.44444\n163775|0.15278\n163776|0.5\n163777|0.56944\n163778|0.38889\n163779|0.5\n163780|0.375\n163781|0.5\n163782|0.36111\n163783|0.44444\n163784|0.26389\n163785|0.26389\n163786|0.51389\n163787|0.44444\n163788|0.59722\n163789|0.29167\n163790|0.33333\n163791|0.33333\n163792|0.22222\n163793|0.41667\n163794|0.30556\n163795|0.44444\n163796|0.41667\n163797|0.5\n163798|0.22222\n163799|0.22222\n163800|0.47222\n163801|0.61111\n163802|0.30556\n163803|0.30556\n163804|0.27778\n163805|0.30556\n163806|0.55556\n163807|0.29167\n163808|0.5\n163809|0.5\n163810|0.13889\n163811|0.29167\n163812|0.125\n163813|0.27778\n163814|0.40278\n163815|0.59722\n163816|0.38889\n163817|0.15278\n163818|0.47222\n163819|0.5\n163820|0.20833\n163821|0.69444\n163822|0.22222\n163823|0.30556\n163824|0.26389\n163825|0.68056\n163826|0.625\n163827|0.63889\n163828|0.58333\n163829|0.52778\n163830|0.26389\n163831|0.23611\n163832|0.80556\n163833|0.34722\n163834|0.55556\n163835|0.69444\n163836|0.26389\n163837|0.44444\n163838|0.52778\n163839|0.375\n163840|0.29167\n163841|0.27778\n163842|0.18056\n163843|0.58333\n163844|0.29167\n163845|0.30556\n163846|0.41667\n163847|0.41667\n163848|0.72222\n163849|0.81944\n163850|0.5\n163851|0.48611\n163852|0.52778\n163853|0.27778\n163854|0.23611\n163855|0.80556\n163856|0.23611\n163857|0.20833\n163858|0.44444\n163859|0.40278\n163860|0.45833\n163861|0.18056\n163862|0.083333\n163863|0.5\n163864|0.5\n163865|0.23611\n163866|0.45833\n163867|0.29167\n163868|0.58333\n163869|0.48611\n163870|0.25\n163871|0.44444\n163872|0.45833\n163873|0.26389\n163874|0.51389\n163875|0.44444\n163876|0.52778\n163877|0.27778\n163878|0.43056\n163879|0.26389\n163880|0.23611\n163881|0.27778\n163882|0.38889\n163883|0.29167\n163884|0.16667\n163885|0.15278\n163886|0.5\n163887|0.15278\n163888|0.5\n163889|0.52778\n163890|0.22222\n163891|0.59722\n163892|0.26389\n163893|0.29167\n163894|0.47222\n163895|0.375\n163896|0.5\n163897|0.5\n163898|0.097222\n163899|0.25\n163900|0.23611\n163901|0.15278\n163902|0.38889\n163903|0.26389\n163904|0.38889\n163905|0.33333\n163906|0.29167\n163907|0.25\n163908|0.34722\n163909|0.5\n163910|0.61111\n163911|0.69444\n163912|0.44444\n163913|0.41667\n163914|0.26389\n163915|0.27778\n163916|0.58333\n163917|0.56944\n163918|0.48611\n163919|0.15278\n163920|0.30556\n163921|0.33333\n163922|0.55556\n163923|0.75\n163924|0.26389\n163925|0.58333\n163926|0.36111\n163927|0.26389\n163928|0.58333\n163929|0.36111\n163930|0.43056\n163931|0.43056\n163932|0.33333\n163933|0.375\n163934|0.45833\n163935|0.51389\n163936|0.40278\n163937|0.33333\n163938|0.31944\n163939|0.16667\n163940|0.26389\n163941|0.34722\n163942|0.65278\n163943|0.43056\n163944|0.5\n163945|0.38889\n163946|0.375\n163947|0.51389\n163948|0.5\n163949|0.26389\n163950|0.48611\n163951|0.41667\n163952|0.5\n163953|0.18056\n163954|0.20833\n163955|0.5\n163956|0.16667\n163957|0.16667\n163958|0.375\n163959|0.31944\n163960|0.66667\n163961|0.22222\n163962|0.30556\n163963|0.48611\n163964|0.33333\n163965|0.5\n163966|0.44444\n163967|0.45833\n163968|0.31944\n163969|0.38889\n163970|0.61111\n163971|0.27778\n163972|0.52778\n163973|0.44444\n163974|0.5\n163975|0.44444\n163976|0.63889\n163977|0.45833\n163978|0.34722\n163979|0.5\n163980|0.5\n163981|0.5\n163982|0.52778\n163983|0.22222\n163984|0.5\n163985|0.5\n163986|0.55556\n163987|0.5\n163988|0.31944\n163989|0.29167\n163990|0.5\n163991|0.27778\n163992|0.48611\n163993|0.58333\n163994|0.58333\n163995|0.5\n163996|0.5\n163997|0.20833\n163998|0.5\n163999|0.27778\n164000|0.55556\n164001|0.47222\n164002|0.61111\n164003|0.5\n164004|0.5\n164005|0.52778\n164006|0.5\n164007|0.25\n164008|0.5\n164009|0.30556\n164010|0.68056\n164011|0.18056\n164012|0.25\n164013|0.33333\n164014|0.22222\n164015|0.5\n164016|0.5\n164017|0.5\n164018|0.43056\n164019|0.54167\n164020|0.19444\n164021|0.40278\n164022|0.40278\n164023|0.48611\n164024|0.55556\n164025|0.44444\n164026|0.5\n164027|0.52778\n164028|0.5\n164029|0.5\n164030|0.5\n164031|0.5\n164032|0.5\n164033|0.54167\n164034|0.51389\n164035|0.5\n164036|0.22222\n164037|0.51389\n164038|0.54167\n164039|0.72222\n164040|0.72222\n164041|0.76389\n164042|0.66667\n164043|0.38889\n164044|0.5\n164045|0.72222\n164046|0.68056\n164047|0.47222\n164048|0.56944\n164049|0.375\n164050|0.66667\n164051|0.38889\n164052|0.56944\n164053|0.5\n164054|0.59722\n164055|0.55556\n164056|0.36111\n164057|0.76389\n164058|0.45833\n164059|0.31944\n164060|0.5\n164061|0.5\n164062|0.5\n164063|0.52778\n164064|0.22222\n164065|0.44444\n164066|0.23611\n164067|0.27778\n164068|0.26389\n164069|0.51389\n164070|0.38889\n164071|0.75\n164072|0.75\n164073|0.66667\n164074|0.59722\n164075|0.5\n164076|0.30556\n164077|0.45833\n164078|0.33333\n164079|0.51389\n164080|0.5\n164081|0.56944\n164082|0.65278\n164083|0.66667\n164084|0.30556\n164085|0.5\n164086|0.38889\n164087|0.5\n164088|0.51389\n164089|0.47222\n164090|0.36111\n164091|0.5\n164092|0.5\n164093|0.5\n164094|0.56944\n164095|0.5\n164096|0.38889\n164097|0.5\n164098|0.5\n164099|0.61111\n164100|0.52778\n164101|0.55556\n164102|0.5\n164103|0.44444\n164104|0.44444\n164105|0.48611\n164106|0.5\n164107|0.31944\n164108|0.43056\n164109|0.58333\n164110|0.69444\n164111|0.31944\n164112|0.59722\n164113|0.63889\n164114|0.375\n164115|0.54167\n164116|0.56944\n164117|0.34722\n164118|0.375\n164119|0.27778\n164120|0.33333\n164121|0.56944\n164122|0.44444\n164123|0.48611\n164124|0.5\n164125|0.63889\n164126|0.5\n164127|0.31944\n164128|0.48611\n164129|0.41667\n164130|0.34722\n164131|0.27778\n164132|0.44444\n164133|0.40278\n164134|0.56944\n164135|0.5\n164136|0.48611\n164137|0.31944\n164138|0.44444\n164139|0.48611\n164140|0.22222\n164141|0.47222\n164142|0.88889\n164143|0.76389\n164144|0.86111\n164145|0.69444\n164146|0.48611\n164147|0.5\n164148|0.34722\n164149|0.61111\n164150|0.44444\n164151|0.30556\n164152|0.52778\n164153|0.48611\n164154|0.55556\n164155|0.58333\n164156|0.31944\n164157|0.76389\n164158|0.23611\n164159|0.875\n164160|0.625\n164161|0.41667\n164162|0.68056\n164163|0.54167\n164164|0.56944\n164165|0.41667\n164166|0.65278\n164167|0.36111\n164168|0.5\n164169|0.5\n164170|0.72222\n164171|0.5\n164172|0.22222\n164173|0.44444\n164174|0.72222\n164175|0.33333\n164176|0.59722\n164177|0.55556\n164178|0.16667\n164179|0.51389\n164180|0.72222\n164181|0.52778\n164182|0.5\n164183|0.36111\n164184|0.54167\n164185|0.41667\n164186|0.63889\n164187|0.5\n164188|0.33333\n164189|0.5\n164190|0.375\n164191|0.44444\n164192|0.56944\n164193|0.31944\n164194|0.30556\n164195|0.31944\n164196|0.16667\n164197|0.125\n164198|0.31944\n164199|0.31944\n164200|0.27778\n164201|0.19444\n164202|0.69444\n164203|0.33333\n164204|0.69444\n164205|0.5\n164206|0.375\n164207|0.26389\n164208|0.5\n164209|0.5\n164210|0.45833\n164211|0.36111\n164212|0.30556\n164213|0.47222\n164214|0.33333\n164215|0.41667\n164216|0.33333\n164217|0.41667\n164218|0.5\n164219|0.36111\n164220|0.30556\n164221|0.27778\n164222|0.33333\n164223|0.47222\n164224|0.5\n164225|0.30556\n164226|0.5\n164227|0.625\n164228|0.625\n164229|0.5\n164230|0.5\n164231|0.29167\n164232|0.375\n164233|0.47222\n164234|0.59722\n164235|0.52778\n164236|0.5\n164237|0.44444\n164238|0.31944\n164239|0.61111\n164240|0.80556\n164241|0.59722\n164242|0.54167\n164243|0.70833\n164244|0.69444\n164245|0.52778\n164246|0.16667\n164247|0.5\n164248|0.5\n164249|0.5\n164250|0.51389\n164251|0.625\n164252|0.20833\n164253|0.19444\n164254|0.77778\n164255|0.63889\n164256|0.33333\n164257|0.20833\n164258|0.16667\n164259|0.33333\n164260|0.52778\n164261|0.45833\n164262|0.45833\n164263|0.52778\n164264|0.38889\n164265|0.52778\n164266|0.5\n164267|0.44444\n164268|0.65278\n164269|0.26389\n164270|0.20833\n164271|0.48611\n164272|0.5\n164273|0.44444\n164274|0.20833\n164275|0.58333\n164276|0.26389\n164277|0.30556\n164278|0.41667\n164279|0.38889\n164280|0.22222\n164281|0.20833\n164282|0.19444\n164283|0.125\n164284|0.27778\n164285|0.33333\n164286|0.45833\n164287|0.38889\n164288|0.5\n164289|0.56944\n164290|0.15278\n164291|0.44444\n164292|0.26389\n164293|0.45833\n164294|0.45833\n164295|0.44444\n164296|0.31944\n164297|0.41667\n164298|0.375\n164299|0.5\n164300|0.33333\n164301|0.33333\n164302|0.41667\n164303|0.19444\n164304|0.31944\n164305|0.27778\n164306|0.36111\n164307|0.45833\n164308|0.66667\n164309|0.30556\n164310|0.38889\n164311|0.43056\n164312|0.31944\n164313|0.61111\n164314|0.45833\n164315|0.34722\n164316|0.51389\n164317|0.5\n164318|0.34722\n164319|0.38889\n164320|0.19444\n164321|0.44444\n164322|0.55556\n164323|0.40278\n164324|0.22222\n164325|0.30556\n164326|0.23611\n164327|0.23611\n164328|0.22222\n164329|0.48611\n164330|0.5\n164331|0.55556\n164332|0.34722\n164333|0.31944\n164334|0.23611\n164335|0.5\n164336|0.23611\n164337|0.48611\n164338|0.44444\n164339|0.54167\n164340|0.30556\n164341|0.15278\n164342|0.30556\n164343|0.25\n164344|0.5\n164345|0.41667\n164346|0.27778\n164347|0.5\n164348|0.54167\n164349|0.38889\n164350|0.18056\n164351|0.11111\n164352|0.5\n164353|0.5\n164354|0.23611\n164355|0.44444\n164356|0.47222\n164357|0.31944\n164358|0.20833\n164359|0.41667\n164360|0.22222\n164361|0.52778\n164362|0.5\n164363|0.47222\n164364|0.34722\n164365|0.5\n164366|0.5\n164367|0.30556\n164368|0.48611\n164369|0.5\n164370|0.5\n164371|0.47222\n164372|0.20833\n164373|0.25\n164374|0.27778\n164375|0.33333\n164376|0.23611\n164377|0.5\n164378|0.47222\n164379|0.43056\n164380|0.66667\n164381|0.48611\n164382|0.25\n164383|0.5\n164384|0.44444\n164385|0.77778\n164386|0.51389\n164387|0.5\n164388|0.5\n164389|0.30556\n164390|0.44444\n164391|0.5\n164392|0.44444\n164393|0.44444\n164394|0.45833\n164395|0.5\n164396|0.55556\n164397|0.375\n164398|0.19444\n164399|0.44444\n164400|0.54167\n164401|0.41667\n164402|0.34722\n164403|0.41667\n164404|0.30556\n164405|0.40278\n164406|0.30556\n164407|0.5\n164408|0.5\n164409|0.58333\n164410|0.29167\n164411|0.40278\n164412|0.44444\n164413|0.54167\n164414|0.44444\n164415|0.66667\n164416|0.5\n164417|0.48611\n164418|0.54167\n164419|0.44444\n164420|0.61111\n164421|0.51389\n164422|0.54167\n164423|0.38889\n164424|0.22222\n164425|0.5\n164426|0.52778\n164427|0.47222\n164428|0.47222\n164429|0.38889\n164430|0.52778\n164431|0.55556\n164432|0.26389\n164433|0.48611\n164434|0.45833\n164435|0.25\n164436|0.375\n164437|0.36111\n164438|0.5\n164439|0.5\n164440|0.47222\n164441|0.59722\n164442|0.61111\n164443|0.5\n164444|0.63889\n164445|0.27778\n164446|0.36111\n164447|0.25\n164448|0.44444\n164449|0.44444\n164450|0.55556\n164451|0.55556\n164452|0.76389\n164453|0.5\n164454|0.27778\n164455|0.52778\n164456|0.5\n164457|0.5\n164458|0.25\n164459|0.54167\n164460|0.38889\n164461|0.30556\n164462|0.51389\n164463|0.5\n164464|0.41667\n164465|0.48611\n164466|0.5\n164467|0.44444\n164468|0.375\n164469|0.54167\n164470|0.22222\n164471|0.25\n164472|0.5\n164473|0.36111\n164474|0.30556\n164475|0.5\n164476|0.34722\n164477|0.55556\n164478|0.41667\n164479|0.54167\n164480|0.90278\n164481|0.41667\n164482|0.38889\n164483|0.54167\n164484|0.52778\n164485|0.43056\n164486|0.5\n164487|0.5\n164488|0.51389\n164489|0.66667\n164490|0.625\n164491|0.48611\n164492|0.55556\n164493|0.625\n164494|0.5\n164495|0.5\n164496|0.44444\n164497|0.51389\n164498|0.56944\n164499|0.5\n164500|0.55556\n164501|0.5\n164502|0.5\n164503|0.5\n164504|0.375\n164505|0.22222\n164506|0.38889\n164507|0.27778\n164508|0.29167\n164509|0.48611\n164510|0.38889\n164511|0.27778\n164512|0.22222\n164513|0.36111\n164514|0.36111\n164515|0.5\n164516|0.26389\n164517|0.29167\n164518|0.33333\n164519|0.22222\n164520|0.34722\n164521|0.18056\n164522|0.125\n164523|0.26389\n164524|0.19444\n164525|0.29167\n164526|0.27778\n164527|0.30556\n164528|0.33333\n164529|0.29167\n164530|0.29167\n164531|0.30556\n164532|0.51389\n164533|0.23611\n164534|0.40278\n164535|0.30556\n164536|0.25\n164537|0.31944\n164538|0.22222\n164539|0.375\n164540|0.38889\n164541|0.27778\n164542|0.47222\n164543|0.38889\n164544|0.31944\n164545|0.22222\n164546|0.34722\n164547|0.27778\n164548|0.29167\n164549|0.31944\n164550|0.11111\n164551|0.15278\n164552|0.18056\n164553|0.5\n164554|0.29167\n164555|0.11111\n164556|0.38889\n164557|0.30556\n164558|0.47222\n164559|0.27778\n164560|0.125\n164561|0.58333\n164562|0.5\n164563|0.52778\n164564|0.5\n164565|0.44444\n164566|0.26389\n164567|0.33333\n164568|0.47222\n164569|0.43056\n164570|0.5\n164571|0.22222\n164572|0.5\n164573|0.5\n164574|0.23611\n164575|0.48611\n164576|0.48611\n164577|0.52778\n164578|0.5\n164579|0.52778\n164580|0.48611\n164581|0.5\n164582|0.5\n164583|0.5\n164584|0.61111\n164585|0.5\n164586|0.5\n164587|0.54167\n164588|0.47222\n164589|0.5\n164590|0.43056\n164591|0.61111\n164592|0.44444\n164593|0.5\n164594|0.36111\n164595|0.61111\n164596|0.75\n164597|0.44444\n164598|0.5\n164599|0.61111\n164600|0.5\n164601|0.40278\n164602|0.41667\n164603|0.54167\n164604|0.44444\n164605|0.15278\n164606|0.5\n164607|0.5\n164608|0.59722\n164609|0.5\n164610|0.5\n164611|0.40278\n164612|0.55556\n164613|0.59722\n164614|0.58333\n164615|0.55556\n164616|0.68056\n164617|0.55556\n164618|0.34722\n164619|0.375\n164620|0.45833\n164621|0.41667\n164622|0.25\n164623|0.125\n164624|0.25\n164625|0.36111\n164626|0.51389\n164627|0.5\n164628|0.23611\n164629|0.33333\n164630|0.47222\n164631|0.625\n164632|0.55556\n164633|0.61111\n164634|0.66667\n164635|0.34722\n164636|0.5\n164637|0.27778\n164638|0.5\n164639|0.19444\n164640|0.16667\n164641|0.27778\n164642|0.069444\n164643|0.44444\n164644|0.38889\n164645|0.34722\n164646|0.22222\n164647|0.36111\n164648|0.34722\n164649|0.25\n164650|0.56944\n164651|0.44444\n164652|0.5\n164653|0.33333\n164654|0.38889\n164655|0.45833\n164656|0.22222\n164657|0.16667\n164658|0.375\n164659|0.069444\n164660|0.5\n164661|0.5\n164662|0.48611\n164663|0.51389\n164664|0.44444\n164665|0.43056\n164666|0.31944\n164667|0.5\n164668|0.55556\n164669|0.31944\n164670|0.5\n164671|0.56944\n164672|0.5\n164673|0.52778\n164674|0.54167\n164675|0.38889\n164676|0.5\n164677|0.52778\n164678|0.55556\n164679|0.38889\n164680|0.43056\n164681|0.26389\n164682|0.33333\n164683|0.36111\n164684|0.54167\n164685|0.375\n164686|0.29167\n164687|0.54167\n164688|0.40278\n164689|0.125\n164690|0.18056\n164691|0.34722\n164692|0.31944\n164693|0.45833\n164694|0.26389\n164695|0.23611\n164696|0.083333\n164697|0.38889\n164698|0.43056\n164699|0.76389\n164700|0.27778\n164701|0.38889\n164702|0.27778\n164703|0.27778\n164704|0.58333\n164705|0.5\n164706|0.44444\n164707|0.34722\n164708|0.36111\n164709|0.125\n164710|0.29167\n164711|0.41667\n164712|0.16667\n164713|0.23611\n164714|0.11111\n164715|0.16667\n164716|0.63889\n164717|0.30556\n164718|0.45833\n164719|0.15278\n164720|0.375\n164721|0.43056\n164722|0.5\n164723|0.16667\n164724|0.38889\n164725|0.43056\n164726|0.45833\n164727|0.51389\n164728|0.58333\n164729|0.56944\n164730|0.54167\n164731|0.65278\n164732|0.54167\n164733|0.83333\n164734|0.52778\n164735|0.5\n164736|0.41667\n164737|0.5\n164738|0.44444\n164739|0.5\n164740|0.72222\n164741|0.58333\n164742|0.43056\n164743|0.48611\n164744|0.45833\n164745|0.65278\n164746|0.31944\n164747|0.40278\n164748|0.30556\n164749|0.33333\n164750|0.18056\n164751|0.29167\n164752|0.19444\n164753|0.29167\n164754|0.11111\n164755|0.5\n164756|0.30556\n164757|0.33333\n164758|0.31944\n164759|0.27778\n164760|0.55556\n164761|0.55556\n164762|0.375\n164763|0.27778\n164764|0.5\n164765|0.48611\n164766|0.41667\n164767|0.25\n164768|0.16667\n164769|0.22222\n164770|0.45833\n164771|0.41667\n164772|0.44444\n164773|0.27778\n164774|0.43056\n164775|0.36111\n164776|0.26389\n164777|0.375\n164778|0.40278\n164779|0.34722\n164780|0.33333\n164781|0.41667\n164782|0.43056\n164783|0.33333\n164784|0.56944\n164785|0.45833\n164786|0.5\n164787|0.34722\n164788|0.47222\n164789|0.29167\n164790|0.33333\n164791|0.125\n164792|0.22222\n164793|0.5\n164794|0.54167\n164795|0.47222\n164796|0.31944\n164797|0.5\n164798|0.51389\n164799|0.38889\n164800|0.5\n164801|0.5\n164802|0.625\n164803|0.30556\n164804|0.20833\n164805|0.5\n164806|0.51389\n164807|0.55556\n164808|0.33333\n164809|0.52778\n164810|0.44444\n164811|0.30556\n164812|0.63889\n164813|0.44444\n164814|0.59722\n164815|0.41667\n164816|0.41667\n164817|0.44444\n164818|0.5\n164819|0.52778\n164820|0.43056\n164821|0.40278\n164822|0.43056\n164823|0.34722\n164824|0.54167\n164825|0.43056\n164826|0.18056\n164827|0.15278\n164828|0.20833\n164829|0.61111\n164830|0.5\n164831|0.69444\n164832|0.55556\n164833|0.68056\n164834|0.44444\n164835|0.38889\n164836|0.23611\n164837|0.625\n164838|0.5\n164839|0.34722\n164840|0.51389\n164841|0.29167\n164842|0.58333\n164843|0.66667\n164844|0.52778\n164845|0.48611\n164846|0.30556\n164847|0.5\n164848|0.69444\n164849|0.77778\n164850|0.69444\n164851|0.5\n164852|0.58333\n164853|0.61111\n164854|0.5\n164855|0.51389\n164856|0.5\n164857|0.22222\n164858|0.51389\n164859|0.51389\n164860|0.5\n164861|0.5\n164862|0.48611\n164863|0.44444\n164864|0.5\n164865|0.26389\n164866|0.5\n164867|0.55556\n164868|0.27778\n164869|0.58333\n164870|0.26389\n164871|0.5\n164872|0.5\n164873|0.5\n164874|0.48611\n164875|0.34722\n164876|0.5\n164877|0.43056\n164878|0.5\n164879|0.54167\n164880|0.625\n164881|0.31944\n164882|0.56944\n164883|0.33333\n164884|0.5\n164885|0.11111\n164886|0.5\n164887|0.11111\n164888|0.26389\n164889|0.25\n164890|0.19444\n164891|0.38889\n164892|0.56944\n164893|0.29167\n164894|0.51389\n164895|0.625\n164896|0.625\n164897|0.38889\n164898|0.27778\n164899|0.29167\n164900|0.5\n164901|0.52778\n164902|0.63889\n164903|0.43056\n164904|0.5\n164905|0.36111\n164906|0.45833\n164907|0.26389\n164908|0.86111\n164909|0.5\n164910|0.20833\n164911|0.27778\n164912|0.88889\n164913|0.40278\n164914|0.61111\n164915|0.55556\n164916|0.61111\n164917|0.29167\n164918|0.22222\n164919|0.45833\n164920|0.43056\n164921|0.36111\n164922|0.27778\n164923|0.097222\n164924|0.40278\n164925|0.125\n164926|0.11111\n164927|0.375\n164928|0.27778\n164929|0.44444\n164930|0.47222\n164931|0.19444\n164932|0.40278\n164933|0.43056\n164934|0.27778\n164935|0.34722\n164936|0.55556\n164937|0.15278\n164938|0.31944\n164939|0.11111\n164940|0.013889\n164941|0.22222\n164942|0.55556\n164943|0.13889\n164944|0.125\n164945|0.44444\n164946|0.55556\n164947|0.13889\n164948|0.41667\n164949|0.27778\n164950|0.44444\n164951|0.27778\n164952|0.36111\n164953|0.70833\n164954|0.61111\n164955|0.58333\n164956|0.43056\n164957|0.27778\n164958|0.26389\n164959|0.30556\n164960|0.40278\n164961|0.5\n164962|0.51389\n164963|0.5\n164964|0.16667\n164965|0.51389\n164966|0.34722\n164967|0.5\n164968|0.29167\n164969|0.44444\n164970|0.38889\n164971|0.51389\n164972|0.38889\n164973|0.5\n164974|0.52778\n164975|0.47222\n164976|0.5\n164977|0.5\n164978|0.54167\n164979|0.15278\n164980|0.31944\n164981|0.68056\n164982|0.5\n164983|0.27778\n164984|0.18056\n164985|0.36111\n164986|0.41667\n164987|0.5\n164988|0.51389\n164989|0.5\n164990|0.5\n164991|0.47222\n164992|0.52778\n164993|0.44444\n164994|0.5\n164995|0.55556\n164996|0.5\n164997|0.22222\n164998|0.16667\n164999|0.44444\n165000|0.29167\n165001|0.55556\n165002|0.33333\n165003|0.55556\n165004|0.55556\n165005|0.5\n165006|0.54167\n165007|0.33333\n165008|0.45833\n165009|0.51389\n165010|0.47222\n165011|0.55556\n165012|0.5\n165013|0.25\n165014|0.44444\n165015|0.5\n165016|0.5\n165017|0.40278\n165018|0.27778\n165019|0.22222\n165020|0.40278\n165021|0.48611\n165022|0.25\n165023|0.56944\n165024|0.52778\n165025|0.55556\n165026|0.44444\n165027|0.375\n165028|0.27778\n165029|0.55556\n165030|0.41667\n165031|0.48611\n165032|0.34722\n165033|0.38889\n165034|0.29167\n165035|0.36111\n165036|0.41667\n165037|0.52778\n165038|0.55556\n165039|0.5\n165040|0.5\n165041|0.5\n165042|0.5\n165043|0.5\n165044|0.55556\n165045|0.30556\n165046|0.36111\n165047|0.43056\n165048|0.27778\n165049|0.31944\n165050|0.5\n165051|0.125\n165052|0.47222\n165053|0.51389\n165054|0.5\n165055|0.5\n165056|0.66667\n165057|0.44444\n165058|0.38889\n165059|0.5\n165060|0.40278\n165061|0.33333\n165062|0.5\n165063|0.63889\n165064|0.40278\n165065|0.45833\n165066|0.47222\n165067|0.43056\n165068|0.5\n165069|0.59722\n165070|0.51389\n165071|0.59722\n165072|0.40278\n165073|0.31944\n165074|0.58333\n165075|0.31944\n165076|0.43056\n165077|0.51389\n165078|0.58333\n165079|0.47222\n165080|0.36111\n165081|0.41667\n165082|0.40278\n165083|0.44444\n165084|0.44444\n165085|0.40278\n165086|0.5\n165087|0.5\n165088|0.65278\n165089|0.34722\n165090|0.36111\n165091|0.51389\n165092|0.36111\n165093|0.34722\n165094|0.27778\n165095|0.30556\n165096|0.19444\n165097|0.38889\n165098|0.47222\n165099|0.30556\n165100|0.30556\n165101|0.375\n165102|0.33333\n165103|0.47222\n165104|0.44444\n165105|0.38889\n165106|0.27778\n165107|0.47222\n165108|0.34722\n165109|0.47222\n165110|0.40278\n165111|0.38889\n165112|0.22222\n165113|0.15278\n165114|0.51389\n165115|0.20833\n165116|0.44444\n165117|0.41667\n165118|0.5\n165119|0.34722\n165120|0.45833\n165121|0.36111\n165122|0.30556\n165123|0.20833\n165124|0.125\n165125|0.45833\n165126|0.5\n165127|0.5\n165128|0.5\n165129|0.47222\n165130|0.80556\n165131|0.51389\n165132|0.31944\n165133|0.5\n165134|0.56944\n165135|0.48611\n165136|0.40278\n165137|0.52778\n165138|0.38889\n165139|0.5\n165140|0.40278\n165141|0.5\n165142|0.5\n165143|0.56944\n165144|0.34722\n165145|0.15278\n165146|0.40278\n165147|0.19444\n165148|0.33333\n165149|0.56944\n165150|0.5\n165151|0.55556\n165152|0.5\n165153|0.56944\n165154|0.47222\n165155|0.52778\n165156|0.65278\n165157|0.41667\n165158|0.23611\n165159|0.38889\n165160|0.44444\n165161|0.56944\n165162|0.5\n165163|0.44444\n165164|0.5\n165165|0.5\n165166|0.29167\n165167|0.16667\n165168|0.19444\n165169|0.18056\n165170|0.19444\n165171|0.5\n165172|0.43056\n165173|0.51389\n165174|0.54167\n165175|0.54167\n165176|0.5\n165177|0.16667\n165178|0.375\n165179|0.48611\n165180|0.51389\n165181|0.48611\n165182|0.48611\n165183|0.125\n165184|0.15278\n165185|0.55556\n165186|0.22222\n165187|0.30556\n165188|0.375\n165189|0.19444\n165190|0.40278\n165191|0.47222\n165192|0.40278\n165193|0.5\n165194|0.5\n165195|0.54167\n165196|0.56944\n165197|0.44444\n165198|0.45833\n165199|0.36111\n165200|0.58333\n165201|0.5\n165202|0.52778\n165203|0.27778\n165204|0.48611\n165205|0.56944\n165206|0.83333\n165207|0.59722\n165208|0.5\n165209|0.84722\n165210|0.44444\n165211|0.76389\n165212|0.43056\n165213|0.38889\n165214|0.5\n165215|0.56944\n165216|0.52778\n165217|0.625\n165218|0.81944\n165219|0.55556\n165220|0.25\n165221|0.51389\n165222|0.40278\n165223|0.52778\n165224|0.44444\n165225|0.70833\n165226|0.55556\n165227|0.48611\n165228|0.22222\n165229|0.5\n165230|0.51389\n165231|0.47222\n165232|0.58333\n165233|0.11111\n165234|0.375\n165235|0.34722\n165236|0.36111\n165237|0.58333\n165238|0.52778\n165239|0.22222\n165240|0.34722\n165241|0.31944\n165242|0.44444\n165243|0.625\n165244|0.30556\n165245|0.40278\n165246|0.27778\n165247|0.20833\n165248|0.56944\n165249|0.34722\n165250|0.31944\n165251|0.45833\n165252|0.55556\n165253|0.375\n165254|0.29167\n165255|0.33333\n165256|0.52778\n165257|0.41667\n165258|0.55556\n165259|0.29167\n165260|0.65278\n165261|0.38889\n165262|0.45833\n165263|0.48611\n165264|0.44444\n165265|0.44444\n165266|0.23611\n165267|0.33333\n165268|0.5\n165269|0.27778\n165270|0.38889\n165271|0.31944\n165272|0.36111\n165273|0.27778\n165274|0.27778\n165275|0.29167\n165276|0.25\n165277|0.36111\n165278|0.31944\n165279|0.34722\n165280|0.55556\n165281|0.19444\n165282|0.36111\n165283|0.31944\n165284|0.36111\n165285|0.34722\n165286|0.27778\n165287|0.25\n165288|0.19444\n165289|0.47222\n165290|0.48611\n165291|0.34722\n165292|0.29167\n165293|0.33333\n165294|0.22222\n165295|0.55556\n165296|0.69444\n165297|0.5\n165298|0.72222\n165299|0.58333\n165300|0.61111\n165301|0.29167\n165302|0.31944\n165303|0.47222\n165304|0.31944\n165305|0.18056\n165306|0.33333\n165307|0.51389\n165308|0.55556\n165309|0.11111\n165310|0.11111\n165311|0.069444\n165312|0.625\n165313|0.125\n165314|0.45833\n165315|0.44444\n165316|0.5\n165317|0.48611\n165318|0.43056\n165319|0.44444\n165320|0\n165321|0.69444\n165322|0.375\n165323|0.56944\n165324|0.55556\n165325|0.5\n165326|0.38889\n165327|0.375\n165328|1\n165329|0.5\n165330|0.66667\n165331|0.77778\n165332|0.77778\n165333|0.875\n165334|0.30556\n165335|0.45833\n165336|0.38889\n165337|0.77778\n165338|0.72222\n165339|0.59722\n165340|0.80556\n165341|0.76389\n165342|0.72222\n165343|0.63889\n165344|0.56944\n165345|0.48611\n165346|0.23611\n165347|0.31944\n165348|0.33333\n165349|0.18056\n165350|0.38889\n165351|0.375\n165352|0.38889\n165353|0.19444\n165354|0.5\n165355|0.61111\n165356|0.26389\n165357|0.48611\n165358|0.44444\n165359|0.36111\n165360|0.44444\n165361|0.30556\n165362|0.51389\n165363|0.47222\n165364|0.44444\n165365|0.34722\n165366|0.52778\n165367|0.5\n165368|0.5\n165369|0.5\n165370|0.40278\n165371|0.31944\n165372|0.27778\n165373|0.33333\n165374|0.5\n165375|0.41667\n165376|0.23611\n165377|0.41667\n165378|0.38889\n165379|0.34722\n165380|0.5\n165381|0.31944\n165382|0.48611\n165383|0.5\n165384|0.5\n165385|0.33333\n165386|0.5\n165387|0.77778\n165388|0.65278\n165389|0.65278\n165390|0.5\n165391|0.5\n165392|0.44444\n165393|0.40278\n165394|0.38889\n165395|0.31944\n165396|0.5\n165397|0.47222\n165398|0.5\n165399|0.30556\n165400|0.52778\n165401|0.43056\n165402|0.51389\n165403|0.5\n165404|0.26389\n165405|0.29167\n165406|0.027778\n165407|0.48611\n165408|0.23611\n165409|0.38889\n165410|0.77778\n165411|0.48611\n165412|0.36111\n165413|0.41667\n165414|0.40278\n165415|0.5\n165416|0.41667\n165417|0.33333\n165418|0.19444\n165419|0.33333\n165420|0.44444\n165421|0.43056\n165422|0.375\n165423|0.38889\n165424|0.45833\n165425|0.41667\n165426|0.52778\n165427|0.5\n165428|0.375\n165429|0.33333\n165430|0.069444\n165431|0.5\n165432|0.40278\n165433|0.5\n165434|0.58333\n165435|0.16667\n165436|0.44444\n165437|0.27778\n165438|0.069444\n165439|0.47222\n165440|0.38889\n165441|0.16667\n165442|0.16667\n165443|0.52778\n165444|0.43056\n165445|0.36111\n165446|0.51389\n165447|0.44444\n165448|0.375\n165449|0.38889\n165450|0.31944\n165451|0.83333\n165452|0.125\n165453|0.27778\n165454|0.43056\n165455|0.41667\n165456|0.27778\n165457|0.30556\n165458|0.31944\n165459|0.41667\n165460|0.44444\n165461|0.41667\n165462|0.5\n165463|0.055556\n165464|0.51389\n165465|0.5\n165466|0.5\n165467|0.52778\n165468|0.5\n165469|0.65278\n165470|0.63889\n165471|0.58333\n165472|0.5\n165473|0.44444\n165474|0.5\n165475|0.26389\n165476|0.47222\n165477|0.31944\n165478|0.25\n165479|0.47222\n165480|0.11111\n165481|0.33333\n165482|0.58333\n165483|0.61111\n165484|0.5\n165485|0.29167\n165486|0.25\n165487|0.30556\n165488|0.43056\n165489|0.43056\n165490|0.56944\n165491|0.19444\n165492|0.47222\n165493|0.76389\n165494|0.18056\n165495|0.5\n165496|0.51389\n165497|0.34722\n165498|0.22222\n165499|0.27778\n165500|0.48611\n165501|0.54167\n165502|0.30556\n165503|0.41667\n165504|0.5\n165505|0.61111\n165506|0.56944\n165507|0.52778\n165508|0.5\n165509|0.66667\n165510|0.61111\n165511|0.41667\n165512|0.72222\n165513|0.5\n165514|0.65278\n165515|0.54167\n165516|0.66667\n165517|0.375\n165518|0.34722\n165519|0.30556\n165520|0.55556\n165521|0.5\n165522|0.5\n165523|0.5\n165524|0.26389\n165525|0.70833\n165526|0.55556\n165527|0.5\n165528|0.5\n165529|0.55556\n165530|0.61111\n165531|0.45833\n165532|0.5\n165533|0.44444\n165534|0.5\n165535|0.44444\n165536|0.48611\n165537|0.55556\n165538|0.38889\n165539|0.36111\n165540|0.80556\n165541|0.47222\n165542|0.27778\n165543|0.48611\n165544|0.61111\n165545|0.72222\n165546|0.66667\n165547|0.5\n165548|0.41667\n165549|0.31944\n165550|0.36111\n165551|0.66667\n165552|0.29167\n165553|0.40278\n165554|0.5\n165555|0.25\n165556|0.375\n165557|0.34722\n165558|0.38889\n165559|0.66667\n165560|0.33333\n165561|0.31944\n165562|0.19444\n165563|0.19444\n165564|0.20833\n165565|0.083333\n165566|0.375\n165567|0.48611\n165568|0.34722\n165569|0.27778\n165570|0.5\n165571|0.61111\n165572|0.40278\n165573|0.61111\n165574|0.19444\n165575|0.15278\n165576|0.88889\n165577|0.58333\n165578|0.52778\n165579|0.875\n165580|0.27778\n165581|0.33333\n165582|0.40278\n165583|0.375\n165584|0.31944\n165585|0.23611\n165586|0.5\n165587|0.47222\n165588|0.66667\n165589|0.5\n165590|0.27778\n165591|0.26389\n165592|0.59722\n165593|0.43056\n165594|0.41667\n165595|0.34722\n165596|0.20833\n165597|0.45833\n165598|0.31944\n165599|0.27778\n165600|0.20833\n165601|0.30556\n165602|0.61111\n165603|0.58333\n165604|0.38889\n165605|0.68056\n165606|0.44444\n165607|0.70833\n165608|0.66667\n165609|0.56944\n165610|0.75\n165611|0.5\n165612|0.625\n165613|0.61111\n165614|0.70833\n165615|0.69444\n165616|0.51389\n165617|0.66667\n165618|0.34722\n165619|0.36111\n165620|0.625\n165621|0.5\n165622|0.5\n165623|0.5\n165624|0.55556\n165625|0.63889\n165626|0.59722\n165627|0.55556\n165628|0.5\n165629|0.55556\n165630|0.5\n165631|0.68056\n165632|0.41667\n165633|0.44444\n165634|0.48611\n165635|0.51389\n165636|0.25\n165637|0.33333\n165638|0.58333\n165639|0.11111\n165640|0.5\n165641|0.11111\n165642|0.13889\n165643|0.79167\n165644|0.48611\n165645|0.70833\n165646|0.5\n165647|0.65278\n165648|0.5\n165649|0.45833\n165650|0.5\n165651|0.25\n165652|0.22222\n165653|0.083333\n165654|0.52778\n165655|0.31944\n165656|0.5\n165657|0.61111\n165658|0.44444\n165659|0.5\n165660|0.25\n165661|0.33333\n165662|0.81944\n165663|0.26389\n165664|0.33333\n165665|0.5\n165666|0.25\n165667|0.77778\n165668|0.72222\n165669|0.45833\n165670|0.52778\n165671|0.51389\n165672|0.55556\n165673|0.5\n165674|0.45833\n165675|0.26389\n165676|0.5\n165677|0.36111\n165678|0.375\n165679|0.5\n165680|0.51389\n165681|0.56944\n165682|0.5\n165683|0.43056\n165684|0.47222\n165685|0.44444\n165686|0.26389\n165687|0.52778\n165688|0.66667\n165689|0.55556\n165690|0.41667\n165691|0.36111\n165692|0.45833\n165693|0.5\n165694|0.61111\n165695|0.5\n165696|0.625\n165697|0.52778\n165698|0.625\n165699|0.5\n165700|0.5\n165701|0.5\n165702|0.26389\n165703|0.47222\n165704|0.47222\n165705|0.5\n165706|0.5\n165707|0.51389\n165708|0.58333\n165709|0.5\n165710|0.48611\n165711|0.54167\n165712|0.5\n165713|0.51389\n165714|0.5\n165715|0.51389\n165716|0.36111\n165717|0.43056\n165718|0.625\n165719|0.48611\n165720|0.63889\n165721|0.44444\n165722|0.44444\n165723|0.36111\n165724|0.44444\n165725|0.44444\n165726|0.34722\n165727|0.33333\n165728|0.54167\n165729|0.41667\n165730|0.73611\n165731|0.26389\n165732|0.625\n165733|0.33333\n165734|0.33333\n165735|0.76389\n165736|0.38889\n165737|0.27778\n165738|0.29167\n165739|0.19444\n165740|0.23611\n165741|0.41667\n165742|0.47222\n165743|0.33333\n165744|0.5\n165745|0.5\n165746|0.54167\n165747|0.58333\n165748|0.41667\n165749|0.30556\n165750|0.29167\n165751|0.22222\n165752|0.18056\n165753|0.26389\n165754|0.40278\n165755|0.54167\n165756|0.47222\n165757|0.68056\n165758|0.51389\n165759|0.65278\n165760|0.72222\n165761|0.27778\n165762|0.41667\n165763|0.43056\n165764|0.31944\n165765|0.41667\n165766|0.38889\n165767|0.38889\n165768|0.5\n165769|0.15278\n165770|0.5\n165771|0.73611\n165772|0.43056\n165773|0.34722\n165774|0.52778\n165775|0.41667\n165776|0.27778\n165777|0.16667\n165778|0.29167\n165779|0.19444\n165780|0.44444\n165781|0.47222\n165782|0.027778\n165783|0.5\n165784|0.33333\n165785|0.58333\n165786|0.52778\n165787|0.40278\n165788|0.52778\n165789|0.38889\n165790|0.5\n165791|0.59722\n165792|0.51389\n165793|0.66667\n165794|0.34722\n165795|0.44444\n165796|0.34722\n165797|0.20833\n165798|0.29167\n165799|0.18056\n165800|0.055556\n165801|0.11111\n165802|0.36111\n165803|0.26389\n165804|0.29167\n165805|0.38889\n165806|0.43056\n165807|0.43056\n165808|0.625\n165809|0.47222\n165810|0.48611\n165811|0.58333\n165812|0.61111\n165813|0.44444\n165814|0.30556\n165815|0.33333\n165816|0.5\n165817|0.34722\n165818|0.5\n165819|0.5\n165820|0.5\n165821|0.48611\n165822|0.18056\n165823|0.30556\n165824|0.29167\n165825|0.61111\n165826|0.34722\n165827|0.33333\n165828|0.36111\n165829|0.40278\n165830|0.16667\n165831|0.5\n165832|0.56944\n165833|0.54167\n165834|0.45833\n165835|0.38889\n165836|0.43056\n165837|0.59722\n165838|0.5\n165839|0.48611\n165840|0.43056\n165841|0.5\n165842|0.66667\n165843|0.23611\n165844|0.5\n165845|0.5\n165846|0.45833\n165847|0.5\n165848|0.58333\n165849|0.44444\n165850|0.5\n165851|0.41667\n165852|0.44444\n165853|0.48611\n165854|0.51389\n165855|0.625\n165856|0.44444\n165857|0.26389\n165858|0.36111\n165859|0.41667\n165860|0.19444\n165861|0.16667\n165862|0.125\n165863|0.54167\n165864|0.59722\n165865|0.54167\n165866|0.31944\n165867|0.40278\n165868|0.44444\n165869|0.27778\n165870|0.43056\n165871|0.51389\n165872|0.48611\n165873|0.54167\n165874|0.5\n165875|0.5\n165876|0.5\n165877|0.44444\n165878|0.5\n165879|0.48611\n165880|0.5\n165881|0.5\n165882|0.54167\n165883|0.26389\n165884|0.61111\n165885|0.54167\n165886|0.20833\n165887|0.25\n165888|0.5\n165889|0.45833\n165890|0.5\n165891|0.52778\n165892|0.44444\n165893|0.55556\n165894|0.5\n165895|0.44444\n165896|0.38889\n165897|0.5\n165898|0.44444\n165899|0.5\n165900|0.5\n165901|0.375\n165902|0.22222\n165903|0.33333\n165904|0.41667\n165905|0.26389\n165906|0.27778\n165907|0.45833\n165908|0.5\n165909|0.5\n165910|0.38889\n165911|0.33333\n165912|0.27778\n165913|0.51389\n165914|0.27778\n165915|0.16667\n165916|0.36111\n165917|0.40278\n165918|0.58333\n165919|0.66667\n165920|0.90278\n165921|0.5\n165922|0.55556\n165923|0.29167\n165924|0.36111\n165925|0.47222\n165926|0.34722\n165927|0.44444\n165928|0.44444\n165929|0.54167\n165930|0.48611\n165931|0.38889\n165932|0.625\n165933|0.41667\n165934|0.31944\n165935|0.30556\n165936|0.55556\n165937|0.38889\n165938|0.36111\n165939|0.63889\n165940|0.47222\n165941|0.48611\n165942|0.56944\n165943|0.29167\n165944|0.31944\n165945|0.44444\n165946|0.38889\n165947|0.23611\n165948|0.33333\n165949|0.20833\n165950|0.56944\n165951|0.11111\n165952|0.61111\n165953|0.20833\n165954|0.38889\n165955|0.069444\n165956|0.30556\n165957|0.15278\n165958|0.59722\n165959|0.55556\n165960|0.5\n165961|0.45833\n165962|0.5\n165963|0.375\n165964|0.625\n165965|0.63889\n165966|0.63889\n165967|0.55556\n165968|0.66667\n165969|0.51389\n165970|0.43056\n165971|0.38889\n165972|0.44444\n165973|0.48611\n165974|0.41667\n165975|0.48611\n165976|0.59722\n165977|0.43056\n165978|0.44444\n165979|0.055556\n165980|0.52778\n165981|0.54167\n165982|0.34722\n165983|0.27778\n165984|0.23611\n165985|0.23611\n165986|0.069444\n165987|0.33333\n165988|0.30556\n165989|0.27778\n165990|0.43056\n165991|0.52778\n165992|0.48611\n165993|0.41667\n165994|0.26389\n165995|0.5\n165996|0.5\n165997|0.58333\n165998|0.33333\n165999|0.36111\n166000|0.25\n166001|0.54167\n166002|0.5\n166003|0.23611\n166004|0.34722\n166005|0.36111\n166006|0.15278\n166007|0.27778\n166008|0.25\n166009|0.29167\n166010|0.19444\n166011|0.36111\n166012|0.15278\n166013|0.33333\n166014|0.38889\n166015|0.097222\n166016|0.44444\n166017|0.41667\n166018|0.26389\n166019|0.27778\n166020|0.41667\n166021|0.27778\n166022|0.41667\n166023|0.31944\n166024|0.30556\n166025|0.375\n166026|0.34722\n166027|0.22222\n166028|0.34722\n166029|0.38889\n166030|0.38889\n166031|0.27778\n166032|0.625\n166033|0.30556\n166034|0.36111\n166035|0.13889\n166036|0.55556\n166037|0.22222\n166038|0.48611\n166039|0.27778\n166040|0.55556\n166041|0.54167\n166042|0.44444\n166043|0.30556\n166044|0.29167\n166045|0.23611\n166046|0.30556\n166047|0.29167\n166048|0.34722\n166049|0.40278\n166050|0.36111\n166051|0.375\n166052|0.31944\n166053|0.375\n166054|0.26389\n166055|0.26389\n166056|0.5\n166057|0.41667\n166058|0.375\n166059|0.26389\n166060|0.36111\n166061|0.44444\n166062|0.40278\n166063|0.5\n166064|0.38889\n166065|0.5\n166066|0.33333\n166067|0.40278\n166068|0.5\n166069|0.625\n166070|0.52778\n166071|0.51389\n166072|0.51389\n166073|0.27778\n166074|0.44444\n166075|0.5\n166076|0.5\n166077|0.5\n166078|0.5\n166079|0.59722\n166080|0.59722\n166081|0.51389\n166082|0.52778\n166083|0.55556\n166084|0.5\n166085|0.5\n166086|0.55556\n166087|0.38889\n166088|0.51389\n166089|0.45833\n166090|0.41667\n166091|0.625\n166092|0.5\n166093|0.19444\n166094|0.23611\n166095|0.25\n166096|0.31944\n166097|0.5\n166098|0.51389\n166099|0.70833\n166100|0.5\n166101|0.5\n166102|0.44444\n166103|0.5\n166104|0.5\n166105|0.38889\n166106|0.55556\n166107|0.5\n166108|0.51389\n166109|0.68056\n166110|0.27778\n166111|0.43056\n166112|0.5\n166113|0.38889\n166114|0.5\n166115|0.58333\n166116|0.097222\n166117|0.47222\n166118|0.38889\n166119|0.36111\n166120|0.27778\n166121|0.52778\n166122|0.38889\n166123|0.47222\n166124|0.19444\n166125|0.19444\n166126|0.55556\n166127|0.58333\n166128|0.20833\n166129|0.33333\n166130|0.55556\n166131|0.56944\n166132|0.61111\n166133|0.58333\n166134|0.44444\n166135|0.65278\n166136|0.44444\n166137|0.38889\n166138|0.52778\n166139|0.41667\n166140|0.375\n166141|0.5\n166142|0.5\n166143|0.34722\n166144|0.38889\n166145|0.25\n166146|0.52778\n166147|0.30556\n166148|0.5\n166149|0.47222\n166150|0.5\n166151|0.5\n166152|0.29167\n166153|0.44444\n166154|0.52778\n166155|0.27778\n166156|0.25\n166157|0.5\n166158|0.55556\n166159|0.51389\n166160|0.51389\n166161|0.5\n166162|0.40278\n166163|0.52778\n166164|0.5\n166165|0.44444\n166166|0.25\n166167|0.31944\n166168|0.27778\n166169|0.18056\n166170|0.55556\n166171|0.51389\n166172|0.125\n166173|0.5\n166174|0.5\n166175|0.61111\n166176|0.19444\n166177|0.27778\n166178|0.45833\n166179|0.58333\n166180|0.47222\n166181|0.44444\n166182|0.70833\n166183|0.44444\n166184|0.5\n166185|0.66667\n166186|0.33333\n166187|0.20833\n166188|0.65278\n166189|0.16667\n166190|0.56944\n166191|0.51389\n166192|0.5\n166193|0.44444\n166194|0.33333\n166195|0.25\n166196|0.5\n166197|0.56944\n166198|0.38889\n166199|0.20833\n166200|0.63889\n166201|0.27778\n166202|0.375\n166203|0.41667\n166204|0.47222\n166205|0.56944\n166206|0.43056\n166207|0.56944\n166208|0.5\n166209|0.19444\n166210|0.33333\n166211|0.375\n166212|0.51389\n166213|0.26389\n166214|0.81944\n166215|0.51389\n166216|0.51389\n166217|0.375\n166218|0.63889\n166219|0.41667\n166220|0.41667\n166221|0.5\n166222|0.31944\n166223|0.44444\n166224|0.45833\n166225|0.40278\n166226|0.31944\n166227|0.43056\n166228|0.36111\n166229|0.27778\n166230|0.20833\n166231|0.61111\n166232|0.56944\n166233|0.375\n166234|0.36111\n166235|0.55556\n166236|0.375\n166237|0.59722\n166238|0.61111\n166239|0.70833\n166240|0.52778\n166241|0.5\n166242|0.23611\n166243|0.625\n166244|0.52778\n166245|0.30556\n166246|0.44444\n166247|0.51389\n166248|0.59722\n166249|0.5\n166250|0.5\n166251|0.45833\n166252|0.66667\n166253|0.61111\n166254|0.66667\n166255|0.70833\n166256|0.54167\n166257|0.55556\n166258|0.5\n166259|0.41667\n166260|0.43056\n166261|0.68056\n166262|0.48611\n166263|0.54167\n166264|0.43056\n166265|0.26389\n166266|0.33333\n166267|0.61111\n166268|0.625\n166269|0.51389\n166270|0.375\n166271|0.45833\n166272|0.41667\n166273|0.5\n166274|0.58333\n166275|0.5\n166276|0.63889\n166277|0.5\n166278|0.56944\n166279|0.43056\n166280|0.5\n166281|0.40278\n166282|0.34722\n166283|0.5\n166284|0.54167\n166285|0.68056\n166286|0.5\n166287|0.58333\n166288|0.097222\n166289|0.5\n166290|0.33333\n166291|0.45833\n166292|0.25\n166293|0.45833\n166294|0.40278\n166295|0.54167\n166296|0.52778\n166297|0.47222\n166298|0.5\n166299|0.38889\n166300|0.5\n166301|0.5\n166302|0.59722\n166303|0.5\n166304|0.55556\n166305|0.5\n166306|0.16667\n166307|0.23611\n166308|0.16667\n166309|0.81944\n166310|0.29167\n166311|0.25\n166312|0.13889\n166313|0.27778\n166314|0.097222\n166315|0.33333\n166316|0.15278\n166317|0.79167\n166318|0.5\n166319|0.5\n166320|0.61111\n166321|0.56944\n166322|0.375\n166323|0.25\n166324|0.5\n166325|0.5\n166326|0.48611\n166327|0.16667\n166328|0.5\n166329|0.25\n166330|0.22222\n166331|0.56944\n166332|0.5\n166333|0.5\n166334|0.43056\n166335|0.5\n166336|0.5\n166337|0.41667\n166338|0.23611\n166339|0.26389\n166340|0.5\n166341|0.5\n166342|0.5\n166343|0.15278\n166344|0.15278\n166345|0.375\n166346|0.56944\n166347|0.52778\n166348|0.58333\n166349|0.63889\n166350|0.51389\n166351|0.52778\n166352|0.29167\n166353|0.44444\n166354|0.65278\n166355|0.69444\n166356|0.45833\n166357|0.55556\n166358|0.22222\n166359|0.55556\n166360|0.36111\n166361|0.44444\n166362|0.375\n166363|0.34722\n166364|0.5\n166365|0.5\n166366|0.52778\n166367|0.45833\n166368|0.40278\n166369|0.58333\n166370|0.40278\n166371|0.43056\n166372|0.26389\n166373|0.52778\n166374|0.70833\n166375|0.55556\n166376|0.44444\n166377|0.54167\n166378|0.5\n166379|0.47222\n166380|0.5\n166381|0.5\n166382|0.54167\n166383|0.58333\n166384|0.48611\n166385|0.5\n166386|0.47222\n166387|0.30556\n166388|0.38889\n166389|0.15278\n166390|0.59722\n166391|0.5\n166392|0.61111\n166393|0.5\n166394|0.55556\n166395|0.5\n166396|0.5\n166397|0.72222\n166398|0.5\n166399|0.31944\n166400|0.33333\n166401|0.51389\n166402|0.22222\n166403|0.20833\n166404|0.22222\n166405|0.47222\n166406|0.56944\n166407|0.375\n166408|0.5\n166409|0.5\n166410|0.5\n166411|0.5\n166412|0.61111\n166413|0.5\n166414|0.5\n166415|0.16667\n166416|0.40278\n166417|0.52778\n166418|0.72222\n166419|0.59722\n166420|0.43056\n166421|0.5\n166422|0.61111\n166423|0.72222\n166424|0.5\n166425|0.29167\n166426|0.5\n166427|0.33333\n166428|0.5\n166429|0.25\n166430|0.27778\n166431|0.5\n166432|0.27778\n166433|0.16667\n166434|0.34722\n166435|0.11111\n166436|0.55556\n166437|0.55556\n166438|0.59722\n166439|0.59722\n166440|0.58333\n166441|0.34722\n166442|0.41667\n166443|0.26389\n166444|0.55556\n166445|0.69444\n166446|0.79167\n166447|0.76389\n166448|0.77778\n166449|0.59722\n166450|0.41667\n166451|0.48611\n166452|0.47222\n166453|0.73611\n166454|0.65278\n166455|0.30556\n166456|0.55556\n166457|0.56944\n166458|0.79167\n166459|0.55556\n166460|0.68056\n166461|0.48611\n166462|0.54167\n166463|0.44444\n166464|0.58333\n166465|0.5\n166466|0.36111\n166467|0.5\n166468|0.93056\n166469|0.45833\n166470|0.47222\n166471|0.63889\n166472|0.48611\n166473|0.68056\n166474|0.5\n166475|0.375\n166476|0.27778\n166477|0.33333\n166478|0.18056\n166479|0.73611\n166480|0.34722\n166481|0.43056\n166482|0.33333\n166483|0.44444\n166484|0.5\n166485|0.51389\n166486|0.61111\n166487|0.5\n166488|0.47222\n166489|0.5\n166490|0.5\n166491|0.38889\n166492|0.36111\n166493|0.5\n166494|0.45833\n166495|0.18056\n166496|0.55556\n166497|0.38889\n166498|0.40278\n166499|0.52778\n166500|0.11111\n166501|0.43056\n166502|0.5\n166503|0.25\n166504|0.36111\n166505|0.88889\n166506|0.29167\n166507|0.5\n166508|0.5\n166509|0.5\n166510|0.38889\n166511|0.55556\n166512|0.27778\n166513|0.5\n166514|0.5\n166515|0.40278\n166516|0.33333\n166517|0.5\n166518|0.055556\n166519|0.52778\n166520|0.44444\n166521|0.52778\n166522|0.41667\n166523|0.30556\n166524|0.125\n166525|0.43056\n166526|0.27778\n166527|0.5\n166528|0.52778\n166529|0.27778\n166530|0.56944\n166531|0.75\n166532|0.47222\n166533|0.5\n166534|0.51389\n166535|0.5\n166536|0.375\n166537|0.44444\n166538|0.5\n166539|0.72222\n166540|0.5\n166541|0.48611\n166542|0.56944\n166543|0.5\n166544|0.43056\n166545|0.375\n166546|0.36111\n166547|0.55556\n166548|0.58333\n166549|0.43056\n166550|0.43056\n166551|0.38889\n166552|0.48611\n166553|0.43056\n166554|0.51389\n166555|0.51389\n166556|0.33333\n166557|0.54167\n166558|0.44444\n166559|0.11111\n166560|0.65278\n166561|0.5\n166562|0.52778\n166563|0.16667\n166564|0.18056\n166565|0.22222\n166566|0.59722\n166567|0.52778\n166568|0.69444\n166569|0.5\n166570|0.77778\n166571|0.38889\n166572|0.44444\n166573|0.66667\n166574|0.26389\n166575|0.23611\n166576|0.29167\n166577|0.65278\n166578|0.52778\n166579|0.51389\n166580|0.52778\n166581|0.70833\n166582|0.59722\n166583|0.5\n166584|0.5\n166585|0.40278\n166586|0.47222\n166587|0.47222\n166588|0.27778\n166589|0.48611\n166590|0.5\n166591|0.375\n166592|0.5\n166593|0.5\n166594|0.38889\n166595|0.33333\n166596|0.75\n166597|0.47222\n166598|0.70833\n166599|0.48611\n166600|0.27778\n166601|0.5\n166602|0.13889\n166603|0.45833\n166604|0.36111\n166605|0.43056\n166606|0.47222\n166607|0.41667\n166608|0.55556\n166609|0.5\n166610|0.40278\n166611|0.33333\n166612|0.5\n166613|0.34722\n166614|0.22222\n166615|0.5\n166616|0.20833\n166617|0.375\n166618|0.48611\n166619|0.43056\n166620|0.38889\n166621|0.44444\n166622|0.30556\n166623|0.16667\n166624|0.31944\n166625|0.38889\n166626|0.19444\n166627|0.38889\n166628|0.44444\n166629|0.625\n166630|0.375\n166631|0.44444\n166632|0.36111\n166633|0.34722\n166634|0.31944\n166635|0.43056\n166636|0.34722\n166637|0.66667\n166638|0.54167\n166639|0.40278\n166640|0.36111\n166641|0.29167\n166642|0.27778\n166643|0.44444\n166644|0.27778\n166645|0.31944\n166646|0.54167\n166647|0.5\n166648|0.5\n166649|0.19444\n166650|0.40278\n166651|0.47222\n166652|0.33333\n166653|0.38889\n166654|0.5\n166655|0.36111\n166656|0.41667\n166657|0.48611\n166658|0.33333\n166659|0.47222\n166660|0.22222\n166661|0.43056\n166662|0.34722\n166663|0.63889\n166664|0.41667\n166665|0.34722\n166666|0.31944\n166667|0.29167\n166668|0.52778\n166669|0.38889\n166670|0.26389\n166671|0.29167\n166672|0.48611\n166673|0.18056\n166674|0.44444\n166675|0.33333\n166676|0.40278\n166677|0.25\n166678|0.56944\n166679|0.43056\n166680|0.25\n166681|0.43056\n166682|0.34722\n166683|0.54167\n166684|0.43056\n166685|0.13889\n166686|0.51389\n166687|0.26389\n166688|0.27778\n166689|0.23611\n166690|0.29167\n166691|0.44444\n166692|0.33333\n166693|0.23611\n166694|0.33333\n166695|0.58333\n166696|0.33333\n166697|0.52778\n166698|0.33333\n166699|0.36111\n166700|0.45833\n166701|0.5\n166702|0.5\n166703|0.44444\n166704|0.58333\n166705|0.58333\n166706|0.5\n166707|0.56944\n166708|0.5\n166709|0.54167\n166710|0.52778\n166711|0.61111\n166712|0.61111\n166713|0.52778\n166714|0.44444\n166715|0.56944\n166716|0.5\n166717|0.40278\n166718|0.5\n166719|0.65278\n166720|0.63889\n166721|0.44444\n166722|0.5\n166723|0.38889\n166724|0.43056\n166725|0.5\n166726|0.41667\n166727|0.5\n166728|0.51389\n166729|0.40278\n166730|0.5\n166731|0.56944\n166732|0.51389\n166733|0.36111\n166734|0.5\n166735|0.44444\n166736|0.5\n166737|0.29167\n166738|0.5\n166739|0.5\n166740|0.5\n166741|0.5\n166742|0.5\n166743|0.5\n166744|0.68056\n166745|0.65278\n166746|0.18056\n166747|0.58333\n166748|0.36111\n166749|0.47222\n166750|0.54167\n166751|0.52778\n166752|0.52778\n166753|0.36111\n166754|0.55556\n166755|0.47222\n166756|0.54167\n166757|0.41667\n166758|0.26389\n166759|0.33333\n166760|0.31944\n166761|0.22222\n166762|0.34722\n166763|0.48611\n166764|0.31944\n166765|0.38889\n166766|0.75\n166767|0.41667\n166768|0.47222\n166769|0.48611\n166770|0.36111\n166771|0.45833\n166772|0.5\n166773|0.44444\n166774|0.27778\n166775|0.70833\n166776|0.13889\n166777|0.33333\n166778|0.27778\n166779|0.27778\n166780|0.47222\n166781|0.40278\n166782|0.38889\n166783|0.36111\n166784|0.23611\n166785|0.55556\n166786|0.56944\n166787|0.41667\n166788|0.40278\n166789|0.33333\n166790|0.38889\n166791|0.30556\n166792|0.25\n166793|0.33333\n166794|0.43056\n166795|0.26389\n166796|0.29167\n166797|0.36111\n166798|0.33333\n166799|0.34722\n166800|0.055556\n166801|0.069444\n166802|0.15278\n166803|0.22222\n166804|0.38889\n166805|0.29167\n166806|0.59722\n166807|0.625\n166808|0.63889\n166809|0.5\n166810|0.375\n166811|0.33333\n166812|0.29167\n166813|0.44444\n166814|0.38889\n166815|0.47222\n166816|0.5\n166817|0.61111\n166818|0.5\n166819|0.38889\n166820|0.27778\n166821|0.31944\n166822|0.51389\n166823|0.45833\n166824|0.45833\n166825|0.56944\n166826|0.58333\n166827|0.5\n166828|0.43056\n166829|0.48611\n166830|0.27778\n166831|0.55556\n166832|0.54167\n166833|0.56944\n166834|0.41667\n166835|0.5\n166836|0.40278\n166837|0.34722\n166838|0.48611\n166839|0.5\n166840|0.43056\n166841|0.40278\n166842|0.5\n166843|0.52778\n166844|0.625\n166845|0.27083\n166846|0.5\n166847|0.26389\n166848|0.26389\n166849|0.33333\n166850|0.38889\n166851|0.44444\n166852|0.34722\n166853|0.375\n166854|0.20833\n166855|0.30556\n166856|0.22222\n166857|0.38889\n166858|0.38889\n166859|0.33333\n166860|0.38889\n166861|0.26389\n166862|0.18056\n166863|0.25\n166864|0.23611\n166865|0.34722\n166866|0.125\n166867|0.18056\n166868|0.29167\n166869|0.083333\n166870|0.48611\n166871|0.22222\n166872|0.26389\n166873|0.40278\n166874|0.22222\n166875|0.44444\n166876|0.29167\n166877|0.33333\n166878|0.30556\n166879|0.31944\n166880|0.34722\n166881|0.25\n166882|0.45833\n166883|0.40278\n166884|0.5\n166885|0.43056\n166886|0.44444\n166887|0.26389\n166888|0.43056\n166889|0.76389\n166890|0.56944\n166891|0.73611\n166892|0.59722\n166893|0.66667\n166894|0.59722\n166895|0.48611\n166896|0.38889\n166897|0.36111\n166898|0.61111\n166899|0.5\n166900|0.5\n166901|0.36111\n166902|0.47222\n166903|0.44444\n166904|0.5\n166905|0.59722\n166906|0.5\n166907|0.5\n166908|0.47222\n166909|0.40278\n166910|0.44444\n166911|0.34722\n166912|0.18056\n166913|0.5\n166914|0.38889\n166915|0.31944\n166916|0.52778\n166917|0.26389\n166918|0.23611\n166919|0.44444\n166920|0.76389\n166921|0.41667\n166922|0.33333\n166923|0.34722\n166924|0.33333\n166925|0.27778\n166926|0.27778\n166927|0.51389\n166928|0.36111\n166929|0.55556\n166930|0.34722\n166931|0.20833\n166932|0.30556\n166933|0.375\n166934|0.29167\n166935|0.41667\n166936|0.41667\n166937|0.13889\n166938|0.375\n166939|0.15278\n166940|0.72222\n166941|0.30556\n166942|0.38889\n166943|0.55556\n166944|0.31944\n166945|0.25\n166946|0.38889\n166947|0.5\n166948|0.375\n166949|0.44444\n166950|0.47222\n166951|0.55556\n166952|0.27778\n166953|0.47222\n166954|0.41667\n166955|0.5\n166956|0.44444\n166957|0.38889\n166958|0.31944\n166959|0.34722\n166960|0.38889\n166961|0.22222\n166962|0.23611\n166963|0.5\n166964|0.41667\n166965|0.375\n166966|0.5\n166967|0.43056\n166968|0.375\n166969|0.52778\n166970|0.44444\n166971|0.36111\n166972|0.47222\n166973|0.38889\n166974|0.45833\n166975|0.30556\n166976|0.36111\n166977|0.5\n166978|0.34722\n166979|0.31944\n166980|0.23611\n166981|0.33333\n166982|0.27778\n166983|0.16667\n166984|0.29167\n166985|0.13889\n166986|0.22222\n166987|0.43056\n166988|0.48611\n166989|0.375\n166990|0.38889\n166991|0.5\n166992|0.30556\n166993|0.52778\n166994|0.40278\n166995|0.5\n166996|0.45833\n166997|0.47222\n166998|0.38889\n166999|0.44444\n167000|0.45833\n167001|0.51389\n167002|0.26389\n167003|0.30556\n167004|0.41667\n167005|0.27778\n167006|0.47222\n167007|0.48611\n167008|0.30556\n167009|0.25\n167010|0.36111\n167011|0.31944\n167012|0.5\n167013|0.61111\n167014|0.45833\n167015|0.47222\n167016|0.5\n167017|0.59722\n167018|0.5\n167019|0.16667\n167020|0.23611\n167021|0.31944\n167022|0.5\n167023|0.58333\n167024|0.5\n167025|0.43056\n167026|0.20833\n167027|0.41667\n167028|0.22222\n167029|0.375\n167030|0.25\n167031|0.36111\n167032|0.22222\n167033|0.33333\n167034|0.22222\n167035|0.45833\n167036|0.44444\n167037|0.36111\n167038|0.375\n167039|0.055556\n167040|0.33333\n167041|0.375\n167042|0.25\n167043|0.5\n167044|0.66667\n167045|0.27778\n167046|0.43056\n167047|0.41667\n167048|0.5\n167049|0.16667\n167050|0.125\n167051|0.29167\n167052|0.5\n167053|0.375\n167054|0.5\n167055|0.5\n167056|0.5\n167057|0.44444\n167058|0.52778\n167059|0.45833\n167060|0.097222\n167061|0.33333\n167062|0.34722\n167063|0.25\n167064|0.25\n167065|0.5\n167066|0.375\n167067|0.48611\n167068|0.33333\n167069|0.36111\n167070|0.41667\n167071|0.34722\n167072|0.27778\n167073|0.5\n167074|0.38889\n167075|0.38889\n167076|0.43056\n167077|0.5\n167078|0.48611\n167079|0.41667\n167080|0.38889\n167081|0.30556\n167082|0.33333\n167083|0.55556\n167084|0.29167\n167085|0.38889\n167086|0.41667\n167087|0.23611\n167088|0.34722\n167089|0.20833\n167090|0.22222\n167091|0.26389\n167092|0.34722\n167093|0.083333\n167094|0.11111\n167095|0.48611\n167096|0.19444\n167097|0.44444\n167098|0.43056\n167099|0.22222\n167100|0.33333\n167101|0.75\n167102|0.625\n167103|0.66667\n167104|0.55556\n167105|0.59722\n167106|0.51389\n167107|0.40278\n167108|0.33333\n167109|0.23611\n167110|0.22222\n167111|0.40278\n167112|0.58333\n167113|0.34722\n167114|0.43056\n167115|0.44444\n167116|0.38889\n167117|0.38889\n167118|0.48611\n167119|0.25\n167120|0.25\n167121|0.63889\n167122|0.44444\n167123|0.38889\n167124|0.23611\n167125|0.58333\n167126|0.40278\n167127|0.66667\n167128|0.69444\n167129|0.59722\n167130|0.48611\n167131|0.48611\n167132|0.66667\n167133|0.56944\n167134|0.23611\n167135|0.52778\n167136|0.31944\n167137|0.5\n167138|0.22222\n167139|0.44444\n167140|0.47222\n167141|0.58333\n167142|0.65278\n167143|0.52778\n167144|0.59722\n167145|0.13889\n167146|0.5\n167147|0.5\n167148|0.38889\n167149|0.44444\n167150|0.5\n167151|0.44444\n167152|0.20833\n167153|0.16667\n167154|0.5\n167155|0.5\n167156|0.5\n167157|0.5\n167158|0.5\n167159|0.40278\n167160|0.5\n167161|0.5\n167162|0.5\n167163|0.625\n167164|0.5\n167165|0.40278\n167166|0.48611\n167167|0.33333\n167168|0.5\n167169|0.5\n167170|0.5\n167171|0.5\n167172|0.5\n167173|0.22222\n167174|0.5\n167175|0.40278\n167176|0.29167\n167177|0.48611\n167178|0.66667\n167179|0.66667\n167180|0.5\n167181|0.5\n167182|0.41667\n167183|0.44444\n167184|0.41667\n167185|0.43056\n167186|0.61111\n167187|0.5\n167188|0.51389\n167189|0.44444\n167190|0.5\n167191|0.5\n167192|0.52778\n167193|0.36111\n167194|0.5\n167195|0.43056\n167196|0.5\n167197|0.43056\n167198|0.5\n167199|0.5\n167200|0.5\n167201|0.5\n167202|0.29167\n167203|0.5\n167204|0.52778\n167205|0.34722\n167206|0.5\n167207|0.5\n167208|0.5\n167209|0.5\n167210|0.27778\n167211|0.45833\n167212|0.5\n167213|0.5\n167214|0.5\n167215|0.56944\n167216|0.5\n167217|0.52778\n167218|0.5\n167219|0.5\n167220|0.5\n167221|0.30556\n167222|0.5\n167223|0.44444\n167224|0.43056\n167225|0.45833\n167226|0.47222\n167227|0.5\n167228|0.5\n167229|0.5\n167230|0.63889\n167231|0.5\n167232|0.55556\n167233|0.5\n167234|0.52778\n167235|0.5\n167236|0.5\n167237|0.5\n167238|0.5\n167239|0.5\n167240|0.5\n167241|0.5\n167242|0.56944\n167243|0.5\n167244|0.5\n167245|0.5\n167246|0.48611\n167247|0.5\n167248|0.5\n167249|0.54167\n167250|0.5\n167251|0.5\n167252|0.27778\n167253|0.58333\n167254|0.5\n167255|0.25\n167256|0.5\n167257|0.5\n167258|0.5\n167259|0.52778\n167260|0.44444\n167261|0.51389\n167262|0.5\n167263|0.5\n167264|0.45833\n167265|0.43056\n167266|0.41667\n167267|0.56944\n167268|0.56944\n167269|0.47222\n167270|0.43056\n167271|0.56944\n167272|0.5\n167273|0.52778\n167274|0.5\n167275|0.52778\n167276|0.31944\n167277|0.59722\n167278|0.44444\n167279|0.5\n167280|0.5\n167281|0.45833\n167282|0.44444\n167283|0.41667\n167284|0.30556\n167285|0.54167\n167286|0.38889\n167287|0.375\n167288|0.48611\n167289|0.5\n167290|0.56944\n167291|0.61111\n167292|0.48611\n167293|0.5\n167294|0.5\n167295|0.61111\n167296|0.23611\n167297|0.44444\n167298|0.63889\n167299|0.61111\n167300|0.56944\n167301|0.30556\n167302|0.23611\n167303|0.097222\n167304|0.18056\n167305|0.56944\n167306|0.34722\n167307|0.36111\n167308|0.54167\n167309|0.29167\n167310|0.5\n167311|0.097222\n167312|0.59722\n167313|0.54167\n167314|0.38889\n167315|0.22222\n167316|0.44444\n167317|0.5\n167318|0.5\n167319|0.5\n167320|0.31944\n167321|0.61111\n167322|0.5\n167323|0.5\n167324|0.5\n167325|0.027778\n167326|0.5\n167327|0.54167\n167328|0.5\n167329|0.5\n167330|0.5\n167331|0.45833\n167332|0.48611\n167333|0.34722\n167334|0.33333\n167335|0.65278\n167336|0.5\n167337|0.20833\n167338|0.52778\n167339|0.5\n167340|0.38889\n167341|0.5\n167342|0.44444\n167343|0.44444\n167344|0.36111\n167345|0.40278\n167346|0.36111\n167347|0.5\n167348|0.45833\n167349|0.45833\n167350|0.38889\n167351|0.40278\n167352|0.33333\n167353|0.40278\n167354|0.19444\n167355|0.097222\n167356|0.5\n167357|0.40278\n167358|0.5\n167359|0.44444\n167360|0.29167\n167361|0.41667\n167362|0.5\n167363|0.5\n167364|0.5\n167365|0.43056\n167366|0.27778\n167367|0.22222\n167368|0.43056\n167369|0.54167\n167370|0.5\n167371|0.5\n167372|0.54167\n167373|0.43056\n167374|0.55556\n167375|0.56944\n167376|0.44444\n167377|0.61111\n167378|0.5\n167379|0.45833\n167380|0.31944\n167381|0.5\n167382|0.40278\n167383|0.70833\n167384|0.54167\n167385|0.45833\n167386|0.5\n167387|0.43056\n167388|0.55556\n167389|0.5\n167390|0.5\n167391|0.5\n167392|0.56944\n167393|0.5\n167394|0.5\n167395|0.72222\n167396|0.79167\n167397|0.51389\n167398|0.38889\n167399|0.55556\n167400|0.5\n167401|0.58333\n167402|0.43056\n167403|0.44444\n167404|0.61111\n167405|0.16667\n167406|0.5\n167407|0.45833\n167408|0.55556\n167409|0.61111\n167410|0.5\n167411|0.58333\n167412|0.55556\n167413|0.63889\n167414|0.55556\n167415|0.45833\n167416|0.59722\n167417|0.38889\n167418|0.36111\n167419|0.61111\n167420|0.55556\n167421|0.43056\n167422|0.47222\n167423|0.56944\n167424|0.19444\n167425|0.75\n167426|0.77778\n167427|0.27778\n167428|0.55556\n167429|0.5\n167430|0.20833\n167431|0.5\n167432|0.5\n167433|0.48611\n167434|0.58333\n167435|0.66667\n167436|0.33333\n167437|0.38889\n167438|0.40278\n167439|0.52778\n167440|0.5\n167441|0.54167\n167442|0.47222\n167443|0.25\n167444|0.30556\n167445|0.59722\n167446|0.47222\n167447|0.63889\n167448|0.59722\n167449|0.38889\n167450|0.47222\n167451|0.5\n167452|0.48611\n167453|0.33333\n167454|0.33333\n167455|0.58333\n167456|0.5\n167457|0.45833\n167458|0.31944\n167459|0.5\n167460|0.41667\n167461|0.94444\n167462|0.38889\n167463|0.29167\n167464|0.56944\n167465|0.5\n167466|0.5\n167467|0.44444\n167468|0.55556\n167469|0.5\n167470|0.44444\n167471|0.45833\n167472|0.48611\n167473|0.5\n167474|0.72222\n167475|0.5\n167476|0.5\n167477|0.625\n167478|0.29167\n167479|0.61111\n167480|0.33333\n167481|0.59722\n167482|0.44444\n167483|0.5\n167484|0.5\n167485|0.5\n167486|0.58333\n167487|0.72222\n167488|0.52778\n167489|0.61111\n167490|0.44444\n167491|0.36111\n167492|0.23611\n167493|0.5\n167494|0.47222\n167495|0.5\n167496|0.59722\n167497|0.5\n167498|0.54167\n167499|0.54167\n167500|0.5\n167501|0.43056\n167502|0.55556\n167503|0.54167\n167504|0.5\n167505|0.44444\n167506|0.54167\n167507|0.5\n167508|0.54167\n167509|0.41667\n167510|0.5\n167511|0.5\n167512|0.58333\n167513|0.5\n167514|0.65278\n167515|0.44444\n167516|0.5\n167517|0.27778\n167518|0.20833\n167519|0.52778\n167520|0.5\n167521|0.5\n167522|0.55556\n167523|0.55556\n167524|0.59722\n167525|0.55556\n167526|0.5\n167527|0.5\n167528|0.47222\n167529|0.61111\n167530|0.26389\n167531|0.30556\n167532|0.41667\n167533|0.5\n167534|0.41667\n167535|0.069444\n167536|0.26389\n167537|0.5\n167538|0.5\n167539|0.55556\n167540|0.58333\n167541|0.41667\n167542|0.44444\n167543|0.47222\n167544|0.65278\n167545|0.26389\n167546|0.40278\n167547|0.61111\n167548|0.43056\n167549|0.41667\n167550|0.31944\n167551|0.30556\n167552|0.5\n167553|0.59722\n167554|0.68056\n167555|0.45833\n167556|0.54167\n167557|0.625\n167558|0.52778\n167559|0.5\n167560|0.44444\n167561|0.61111\n167562|0.375\n167563|0.5\n167564|0.45833\n167565|0.51389\n167566|0.51389\n167567|0.58333\n167568|0.5\n167569|0.80556\n167570|0.5\n167571|0.5\n167572|0.5\n167573|0.41667\n167574|0.52778\n167575|0.33333\n167576|0.55556\n167577|0.63889\n167578|0.55556\n167579|0.5\n167580|0.48611\n167581|0.38889\n167582|0.5\n167583|0.54167\n167584|0.5\n167585|0.41667\n167586|0.55556\n167587|0.5\n167588|0.5\n167589|0.54167\n167590|0.58333\n167591|0.5\n167592|0.5\n167593|0.5\n167594|0.54167\n167595|0.66667\n167596|0.41667\n167597|0.34722\n167598|0.34722\n167599|0.51389\n167600|0.5\n167601|0.44444\n167602|0.63889\n167603|0.29167\n167604|0.61111\n167605|0.375\n167606|0.52778\n167607|0.38889\n167608|0.47222\n167609|0.5\n167610|0.65278\n167611|0.83333\n167612|0.5\n167613|0.375\n167614|0.51389\n167615|0.44444\n167616|0.625\n167617|0.55556\n167618|0.30556\n167619|0.40278\n167620|0.44444\n167621|0.5\n167622|0.40278\n167623|0.44444\n167624|0.45833\n167625|0.5\n167626|0.375\n167627|0.5\n167628|0.51389\n167629|0.65278\n167630|0.44444\n167631|0.27778\n167632|0.38889\n167633|0.5\n167634|0.5\n167635|0.5\n167636|0.44444\n167637|0.5\n167638|0.55556\n167639|0.26389\n167640|0.31944\n167641|0.5\n167642|0.5\n167643|0.38889\n167644|0.45833\n167645|0.47222\n167646|0.5\n167647|0.44444\n167648|0.5\n167649|0.27778\n167650|0.5\n167651|0.54167\n167652|0.51389\n167653|0.44444\n167654|0.22222\n167655|0.125\n167656|0.56944\n167657|0.5\n167658|0.20833\n167659|0.47222\n167660|0.29167\n167661|0.36111\n167662|0.31944\n167663|0.54167\n167664|0.29167\n167665|0.61111\n167666|0.25\n167667|0.54167\n167668|0.5\n167669|0.58333\n167670|0.19444\n167671|0.33333\n167672|0.47222\n167673|0.34722\n167674|0.27778\n167675|0.56944\n167676|0.33333\n167677|0.47222\n167678|0.31944\n167679|0.5\n167680|0.5\n167681|0.5\n167682|0.63889\n167683|0.48611\n167684|0.56944\n167685|0.23611\n167686|0.38889\n167687|0.23611\n167688|0.5\n167689|0.5\n167690|0.52778\n167691|0.5\n167692|0.44444\n167693|0.48611\n167694|0.41667\n167695|0.5\n167696|0.45833\n167697|0.51389\n167698|0.40278\n167699|0.56944\n167700|0.69444\n167701|0.68056\n167702|0.68056\n167703|0.38889\n167704|0.5\n167705|0.47222\n167706|0.5\n167707|0.5\n167708|0.61111\n167709|0.5\n167710|0.58333\n167711|0.44444\n167712|0.31944\n167713|0.25\n167714|0.29167\n167715|0.30556\n167716|0.44444\n167717|0.25\n167718|0.44444\n167719|0.5\n167720|0.61111\n167721|0.34722\n167722|0.45833\n167723|0.48611\n167724|0.5\n167725|0.54167\n167726|0.56944\n167727|0.44444\n167728|0.56944\n167729|0.27778\n167730|0.33333\n167731|0.40278\n167732|0.58333\n167733|0.5\n167734|0.5\n167735|0.5\n167736|0.5\n167737|0.5\n167738|0.5\n167739|0.5\n167740|0.5\n167741|0.5\n167742|0.45833\n167743|0.5\n167744|0.5\n167745|0.5\n167746|0.5\n167747|0.52778\n167748|0.5\n167749|0.55556\n167750|0.52778\n167751|0.5\n167752|0.56944\n167753|0.375\n167754|0.5\n167755|0.56944\n167756|0.5\n167757|0.55556\n167758|0.41667\n167759|0.25\n167760|0.58333\n167761|0.65278\n167762|0.5\n167763|0.36111\n167764|0.5\n167765|0.45833\n167766|0.52778\n167767|0.59722\n167768|0.44444\n167769|0.5\n167770|0.34722\n167771|0.5\n167772|0.5\n167773|0.5\n167774|0.5\n167775|0.54167\n167776|0.22222\n167777|0.45833\n167778|0.59722\n167779|0.76389\n167780|0.79167\n167781|0.5\n167782|0.20833\n167783|0.5\n167784|0.44444\n167785|0.31944\n167786|0.40278\n167787|0.5\n167788|0.5\n167789|0.5\n167790|0.56944\n167791|0.23611\n167792|0.55556\n167793|0.58333\n167794|0.5\n167795|0.375\n167796|0.45833\n167797|0.5\n167798|0.56944\n167799|0.25\n167800|0.52778\n167801|0.47222\n167802|0.5\n167803|0.45833\n167804|0.5\n167805|0.54167\n167806|0.26389\n167807|0.43056\n167808|0.25\n167809|0.25\n167810|0.52778\n167811|0.5\n167812|0.59722\n167813|0.44444\n167814|0.5\n167815|0.44444\n167816|0.5\n167817|0.5\n167818|0.5\n167819|0.52778\n167820|0.48611\n167821|0.52778\n167822|0.23611\n167823|0.34722\n167824|0.45833\n167825|0.5\n167826|0.29167\n167827|0.29167\n167828|0.5\n167829|0.44444\n167830|0.56944\n167831|0.5\n167832|0.59722\n167833|0.41667\n167834|0.68056\n167835|0.51389\n167836|0.5\n167837|0.63889\n167838|0.5\n167839|0.51389\n167840|0.5\n167841|0.40278\n167842|0.55556\n167843|0.51389\n167844|0.30556\n167845|0.44444\n167846|0.73611\n167847|0.5\n167848|0.31944\n167849|0.27778\n167850|0.34722\n167851|0.5\n167852|0.5\n167853|0.5\n167854|0.55556\n167855|0.5\n167856|0.45833\n167857|0.5\n167858|0.5\n167859|0.5\n167860|0.45833\n167861|0.5\n167862|0.58333\n167863|0.41667\n167864|0.5\n167865|0.56944\n167866|0.66667\n167867|0.5\n167868|0.38889\n167869|0.5\n167870|0.29167\n167871|0.65278\n167872|0.5\n167873|0.38889\n167874|0.31944\n167875|0.47222\n167876|0.375\n167877|0.73611\n167878|0.29167\n167879|0.5\n167880|0.34722\n167881|0.41667\n167882|0.625\n167883|0.43056\n167884|0.56944\n167885|0.069444\n167886|0.375\n167887|0.38889\n167888|0.38889\n167889|0.33333\n167890|0.25\n167891|0.23611\n167892|0.55556\n167893|0.097222\n167894|0.58333\n167895|0.45833\n167896|0.5\n167897|0.41667\n167898|0.65278\n167899|0.38889\n167900|0.47222\n167901|0.22222\n167902|0.38889\n167903|0.5\n167904|0.52778\n167905|0.47222\n167906|0.48611\n167907|0.5\n167908|0.51389\n167909|0.5\n167910|0.625\n167911|0.5\n167912|0.63889\n167913|0.5\n167914|0.55556\n167915|0.29167\n167916|0.58333\n167917|0.52778\n167918|0.5\n167919|0.51389\n167920|0.45833\n167921|0.5\n167922|0.5\n167923|0.65278\n167924|0.63889\n167925|0.47222\n167926|0.33333\n167927|0.5\n167928|0.47222\n167929|0.34722\n167930|0.36111\n167931|0.5\n167932|0.58333\n167933|0.44444\n167934|0.30556\n167935|0.22222\n167936|0.48611\n167937|0.31944\n167938|0.18056\n167939|0.44444\n167940|0.40278\n167941|0.27778\n167942|0.13889\n167943|0.36111\n167944|0.625\n167945|0.27778\n167946|0.54167\n167947|0.48611\n167948|0.5\n167949|0.5\n167950|0.38889\n167951|0.41667\n167952|0.125\n167953|0.27778\n167954|0.33333\n167955|0.38889\n167956|0.47222\n167957|0.45833\n167958|0.63889\n167959|0.55556\n167960|0.36111\n167961|0.16667\n167962|0.33333\n167963|0.5\n167964|0.40278\n167965|0.55556\n167966|0.5\n167967|0.375\n167968|0.45833\n167969|0.48611\n167970|0.29167\n167971|0.26389\n167972|0.33333\n167973|0.23611\n167974|0.11111\n167975|0.61111\n167976|0.375\n167977|0.38889\n167978|0.38889\n167979|0.38889\n167980|0.23611\n167981|0.34722\n167982|0.19444\n167983|0.41667\n167984|0.52778\n167985|0.44444\n167986|0.38889\n167987|0.38889\n167988|0.38889\n167989|0.47222\n167990|0.27778\n167991|0.48611\n167992|0.25\n167993|0.45833\n167994|0.48611\n167995|0.58333\n167996|0.44444\n167997|0.52778\n167998|0.43056\n167999|0.5\n168000|0.5\n168001|0.47222\n168002|0.5\n168003|0.40278\n168004|0.48611\n168005|0.44444\n168006|0.375\n168007|0.5\n168008|0.5\n168009|0.66667\n168010|0.27778\n168011|0.23611\n168012|0.44444\n168013|0.31944\n168014|0.5\n168015|0.5\n168016|0.77778\n168017|0.75\n168018|0.68056\n168019|0.56944\n168020|0.5\n168021|0.5\n168022|0.47222\n168023|0.47222\n168024|0.5\n168025|0.52778\n168026|0.27778\n168027|0.5\n168028|0.48611\n168029|0.44444\n168030|0.5\n168031|0.61111\n168032|0.5\n168033|0.54167\n168034|0.52778\n168035|0.5\n168036|0.58333\n168037|0.51389\n168038|0.52778\n168039|0.55556\n168040|0.375\n168041|0.55556\n168042|0.38889\n168043|0.5\n168044|0.5\n168045|0.5\n168046|0.5\n168047|0.5\n168048|0.54167\n168049|0.47222\n168050|0.51389\n168051|0.45833\n168052|0.55556\n168053|0.56944\n168054|0.5\n168055|0.5\n168056|0.44444\n168057|0.52778\n168058|0.22222\n168059|0.5\n168060|0.5\n168061|0.44444\n168062|0.36111\n168063|0.55556\n168064|0.48611\n168065|0.33333\n168066|0.38889\n168067|0.44444\n168068|0.33333\n168069|0.45833\n168070|0.5\n168071|0.5\n168072|0.40278\n168073|0.40278\n168074|0.5\n168075|0.5\n168076|0.55556\n168077|0.29167\n168078|0.27778\n168079|0.16667\n168080|0.5\n168081|0.26389\n168082|0.27778\n168083|0.44444\n168084|0.5\n168085|0.43056\n168086|0.59722\n168087|0.48611\n168088|0.43056\n168089|0.38889\n168090|0.31944\n168091|0.48611\n168092|0.44444\n168093|0.44444\n168094|0.45833\n168095|0.45833\n168096|0.48611\n168097|0.375\n168098|0.5\n168099|0.22222\n168100|0.52778\n168101|0.30556\n168102|0.65278\n168103|0.34722\n168104|0.43056\n168105|0.29167\n168106|0.5\n168107|0.59722\n168108|0.5\n168109|0.51389\n168110|0.27778\n168111|0.5\n168112|0.5\n168113|0.5\n168114|0.48611\n168115|0.5\n168116|0.41667\n168117|0.41667\n168118|0.41667\n168119|0.5\n168120|0.38889\n168121|0.51389\n168122|0.52778\n168123|0.36111\n168124|0.47222\n168125|0.5\n168126|0.5\n168127|0.48611\n168128|0.5\n168129|0.47222\n168130|0.5\n168131|0.25\n168132|0.48611\n168133|0.48611\n168134|0.47222\n168135|0.44444\n168136|0.43056\n168137|0.5\n168138|0.5\n168139|0.44444\n168140|0.5\n168141|0.25\n168142|0.5\n168143|0.47222\n168144|0.5\n168145|0.56944\n168146|0.45833\n168147|0.52778\n168148|0.52778\n168149|0.5\n168150|0.59722\n168151|0.5\n168152|0.48611\n168153|0.55556\n168154|0.47222\n168155|0.29167\n168156|0.5\n168157|0.33333\n168158|0.51389\n168159|0.52778\n168160|0.30556\n168161|0.38889\n168162|0.5\n168163|0.52778\n168164|0.375\n168165|0.38889\n168166|0.5\n168167|0.48611\n168168|0.51389\n168169|0.5\n168170|0.43056\n168171|0.44444\n168172|0.5\n168173|0.33333\n168174|0.41667\n168175|0.33333\n168176|0.33333\n168177|0.43056\n168178|0.33333\n168179|0.27778\n168180|0.5\n168181|0.27778\n168182|0.80556\n168183|0.66667\n168184|0.56944\n168185|0.56944\n168186|0.59722\n168187|0.54167\n168188|0.63889\n168189|0.51389\n168190|0.48611\n168191|0.43056\n168192|0.5\n168193|0.51389\n168194|0.16667\n168195|0.5\n168196|0.34722\n168197|0.5\n168198|0.69444\n168199|0.69444\n168200|0.5\n168201|0.34722\n168202|0.5\n168203|0.5\n168204|0.44444\n168205|0.34722\n168206|0.23611\n168207|0.34722\n168208|0.5\n168209|0.5\n168210|0.45833\n168211|0.55556\n168212|0.5\n168213|0.54167\n168214|0.30556\n168215|0.23611\n168216|0.33333\n168217|0.55556\n168218|0.40278\n168219|0.77778\n168220|0.26389\n168221|0.95833\n168222|0.40278\n168223|0.13889\n168224|0.55556\n168225|0.5\n168226|0.29167\n168227|0.19444\n168228|0.94444\n168229|0.26389\n168230|0.5\n168231|0.55556\n168232|0.5\n168233|0.083333\n168234|0.51389\n168235|0.36111\n168236|0.5\n168237|0.44444\n168238|0.5\n168239|0.375\n168240|0.23611\n168241|0.55556\n168242|0.15278\n168243|0.43056\n168244|0.47222\n168245|0.25\n168246|0.27778\n168247|0.38889\n168248|0.18056\n168249|0.22222\n168250|0.34722\n168251|0.25\n168252|0.33333\n168253|0.5\n168254|0.27778\n168255|0.38889\n168256|0.44444\n168257|0.44444\n168258|0.31944\n168259|0.44444\n168260|0.54167\n168261|0.5\n168262|0.5\n168263|0.51389\n168264|0.26389\n168265|0.45833\n168266|0.34722\n168267|0.41667\n168268|0.36111\n168269|0.48611\n168270|0.36111\n168271|0.44444\n168272|0.45833\n168273|0.38889\n168274|0.5\n168275|0.45833\n168276|0.47222\n168277|0.5\n168278|0.375\n168279|0.54167\n168280|0.52778\n168281|0.5\n168282|0.48611\n168283|0.58333\n168284|0.625\n168285|0.5\n168286|0.47222\n168287|0.40278\n168288|0.44444\n168289|0.47222\n168290|0.41667\n168291|0.48611\n168292|0.5\n168293|0.45833\n168294|0.5\n168295|0.375\n168296|0.43056\n168297|0.5\n168298|0.5\n168299|0.38889\n168300|0.54167\n168301|0.19444\n168302|0.38889\n168303|0.33333\n168304|0.5\n168305|0.22222\n168306|0.38889\n168307|0.59722\n168308|0.5\n168309|0.44444\n168310|0.47222\n168311|0.54167\n168312|0.5\n168313|0.5\n168314|0.54167\n168315|0.5\n168316|0.48611\n168317|0.45833\n168318|0.51389\n168319|0.47222\n168320|0.48611\n168321|0.38889\n168322|0.22222\n168323|0.27778\n168324|0.54167\n168325|0.5\n168326|0.41667\n168327|0.5\n168328|0.43056\n168329|0.52778\n168330|0.5\n168331|0.38889\n168332|0.48611\n168333|0.48611\n168334|0.58333\n168335|0.52778\n168336|0.38889\n168337|0.59722\n168338|0.5\n168339|0.44444\n168340|0.34722\n168341|0.34722\n168342|0.5\n168343|0.51389\n168344|0.40278\n168345|0.56944\n168346|0.5\n168347|0.44444\n168348|0.43056\n168349|0.47222\n168350|0.5\n168351|0.5\n168352|0.19444\n168353|0.5\n168354|0.22222\n168355|0.16667\n168356|0.36111\n168357|0.22222\n168358|0.51389\n168359|0.54167\n168360|0.5\n168361|0.47222\n168362|0.5\n168363|0.5\n168364|0.43056\n168365|0.5\n168366|0.58333\n168367|0.44444\n168368|0.45833\n168369|0.63889\n168370|0.625\n168371|0.59722\n168372|0.625\n168373|0.55556\n168374|0.61111\n168375|0.69444\n168376|0.61111\n168377|0.625\n168378|0.58333\n168379|0.72222\n168380|0.52778\n168381|0.45833\n168382|0.5\n168383|0.51389\n168384|0.55556\n168385|0.56944\n168386|0.30556\n168387|0.375\n168388|0.40278\n168389|0.33333\n168390|0.41667\n168391|0.27778\n168392|0.48611\n168393|0.5\n168394|0.47222\n168395|0.5\n168396|0.65278\n168397|0.45833\n168398|0.51389\n168399|0.5\n168400|0.51389\n168401|0.5\n168402|0.5\n168403|0.5\n168404|0.5\n168405|0.5\n168406|0.5\n168407|0.47222\n168408|0.51389\n168409|0.47222\n168410|0.23611\n168411|0.5\n168412|0.48611\n168413|0.48611\n168414|0.54167\n168415|0.55556\n168416|0.55556\n168417|0.63889\n168418|0.51389\n168419|0.625\n168420|0.30556\n168421|0.27778\n168422|0.29167\n168423|0.31944\n168424|0.31944\n168425|0.5\n168426|0.33333\n168427|0.43056\n168428|0.5\n168429|0.54167\n168430|0.5\n168431|0.56944\n168432|0.48611\n168433|0.41667\n168434|0.47222\n168435|0.44444\n168436|0.38889\n168437|0.47222\n168438|0.44444\n168439|0.40278\n168440|0.47222\n168441|0.38889\n168442|0.36111\n168443|0.20833\n168444|0.41667\n168445|0.5\n168446|0.59722\n168447|0.55556\n168448|0.38889\n168449|0.38889\n168450|0.38889\n168451|0.44444\n168452|0.5\n168453|0.5\n168454|0.43056\n168455|0.36111\n168456|0.44444\n168457|0.52778\n168458|0.58333\n168459|0.76389\n168460|0.31944\n168461|0.54167\n168462|0.13889\n168463|0.20833\n168464|0.61111\n168465|0.5\n168466|0.5\n168467|0.51389\n168468|0.44444\n168469|0.54167\n168470|0.5\n168471|0.47222\n168472|0.5\n168473|0.33333\n168474|0.34722\n168475|0.29167\n168476|0.5\n168477|0.31944\n168478|0.41667\n168479|0.20833\n168480|0.45833\n168481|0.40278\n168482|0.23611\n168483|0.40278\n168484|0.5\n168485|0.38889\n168486|0.5\n168487|0.51389\n168488|0.47222\n168489|0.5\n168490|0.5\n168491|0.58333\n168492|0.22222\n168493|0.51389\n168494|0.38889\n168495|0.43056\n168496|0.48611\n168497|0.5\n168498|0.5\n168499|0.55556\n168500|0.38889\n168501|0.40278\n168502|0.34722\n168503|0.38889\n168504|0.29167\n168505|0.375\n168506|0.23611\n168507|0.375\n168508|0.30556\n168509|0.54167\n168510|0.34722\n168511|0.29167\n168512|0.27778\n168513|0.375\n168514|0.375\n168515|0.26389\n168516|0.47222\n168517|0.29167\n168518|0.19444\n168519|0.36111\n168520|0.19444\n168521|0.61111\n168522|0.44444\n168523|0.59722\n168524|0.66667\n168525|0.66667\n168526|0.27778\n168527|0.30556\n168528|0.41667\n168529|0.375\n168530|0.29167\n168531|0.38889\n168532|0.44444\n168533|0.27778\n168534|0.375\n168535|0.38889\n168536|0.11111\n168537|0.30556\n168538|0.45833\n168539|0.44444\n168540|0.27778\n168541|0.40278\n168542|0.36111\n168543|0.36111\n168544|0.375\n168545|0.55556\n168546|0.59722\n168547|0.31944\n168548|0.23611\n168549|0.20833\n168550|0.29167\n168551|0.41667\n168552|0.29167\n168553|0.34722\n168554|0.30556\n168555|0.30556\n168556|0.33333\n168557|0.18056\n168558|0.54167\n168559|0.65278\n168560|0.5\n168561|0.29167\n168562|0.33333\n168563|0.30556\n168564|0.5\n168565|0.5\n168566|0.65278\n168567|0.29167\n168568|0.34722\n168569|0.38889\n168570|0.375\n168571|0.5\n168572|0.48611\n168573|0.52778\n168574|0.48611\n168575|0.52778\n168576|0.56944\n168577|0.52778\n168578|0.38889\n168579|0.5\n168580|0.47222\n168581|0.5\n168582|0.36111\n168583|0.56944\n168584|0.5\n168585|0.5\n168586|0.56944\n168587|0.69444\n168588|0.47222\n168589|0.40278\n168590|0.375\n168591|0.5\n168592|0.41667\n168593|0.625\n168594|0.5\n168595|0.52778\n168596|0.36111\n168597|0.22222\n168598|0.5\n168599|0.43056\n168600|0.29167\n168601|0.5\n168602|0.51389\n168603|0.5\n168604|0.54167\n168605|0.27778\n168606|0.33333\n168607|0.58333\n168608|0.5\n168609|0.5\n168610|0.30556\n168611|0.58333\n168612|0.097222\n168613|0.59722\n168614|0.52778\n168615|0.43056\n168616|0.5\n168617|0.43056\n168618|0.26389\n168619|0.52778\n168620|0.41667\n168621|0.38889\n168622|0.069444\n168623|0.22222\n168624|0.25\n168625|0.20833\n168626|0.38889\n168627|0.44444\n168628|0.625\n168629|0.5\n168630|0.47222\n168631|0.38889\n168632|0.40278\n168633|0.5\n168634|0.34722\n168635|0.31944\n168636|0.31944\n168637|0.18056\n168638|0.68056\n168639|0.52778\n168640|0.51389\n168641|0.45833\n168642|0.52778\n168643|0.40278\n168644|0.47222\n168645|0.48611\n168646|0.40278\n168647|0.30556\n168648|0.34722\n168649|0.5\n168650|0.097222\n168651|0.59722\n168652|0.26389\n168653|0.55556\n168654|0.52778\n168655|0.54167\n168656|0.69444\n168657|0.61111\n168658|0.48611\n168659|0.5\n168660|0.5\n168661|0.58333\n168662|0.65278\n168663|0.5\n168664|0.51389\n168665|0.5\n168666|0.52778\n168667|0.5\n168668|0.25\n168669|0.5\n168670|0.48611\n168671|0.54167\n168672|0.47222\n168673|0.5\n168674|0.5\n168675|0.5\n168676|0.52778\n168677|0.48611\n168678|0.27778\n168679|0.5\n168680|0.52778\n168681|0.51389\n168682|0.625\n168683|0.5\n168684|0.30556\n168685|0.5\n168686|0.5\n168687|0.5\n168688|0.76389\n168689|0.23611\n168690|0.25\n168691|0.29167\n168692|0.125\n168693|0.13889\n168694|0.11111\n168695|0.30556\n168696|0.33333\n168697|0.68056\n168698|0.52778\n168699|0.55556\n168700|0.5\n168701|0.5\n168702|0.47222\n168703|0.52778\n168704|0.44444\n168705|0.5\n168706|0.41667\n168707|0.29167\n168708|0.30556\n168709|0.20833\n168710|0.19444\n168711|0.22222\n168712|0.44444\n168713|0.58333\n168714|0.58333\n168715|0.47222\n168716|0.45833\n168717|0.31944\n168718|0.36111\n168719|0.44444\n168720|0.5\n168721|0.47222\n168722|0.5\n168723|0.52778\n168724|0.45833\n168725|0.38889\n168726|0.51389\n168727|0.52778\n168728|0.36111\n168729|0.51389\n168730|0.45833\n168731|0.5\n168732|0.40278\n168733|0.44444\n168734|0.5\n168735|0.16667\n168736|0.34722\n168737|0.5\n168738|0.5\n168739|0.47222\n168740|0.5\n168741|0.5\n168742|0.44444\n168743|0.47222\n168744|0.41667\n168745|0.5\n168746|0.38889\n168747|0.51389\n168748|0.41667\n168749|0.625\n168750|0.48611\n168751|0.63889\n168752|0.52778\n168753|0.38889\n168754|0.5\n168755|0.45833\n168756|0.47222\n168757|0.33333\n168758|0.66667\n168759|0.55556\n168760|0.13889\n168761|0.26389\n168762|0.48611\n168763|0.45833\n168764|0.22222\n168765|0.22222\n168766|0.52778\n168767|0.55556\n168768|0.34722\n168769|0.22222\n168770|0.5\n168771|0.25\n168772|0.34722\n168773|0.45833\n168774|0.33333\n168775|0.68056\n168776|0.41667\n168777|0.25\n168778|0.36111\n168779|0.19444\n168780|0.5\n168781|0.5\n168782|0.44444\n168783|0.56944\n168784|0.56944\n168785|0.52778\n168786|0.40278\n168787|0.44444\n168788|0.52778\n168789|0.45833\n168790|0.80556\n168791|0.68056\n168792|0.73611\n168793|0.88889\n168794|0.40278\n168795|0.61111\n168796|0.47222\n168797|0.51389\n168798|0.5\n168799|0.5\n168800|0.54167\n168801|0.73611\n168802|0.16667\n168803|0.5\n168804|0.26389\n168805|0.51389\n168806|0.30556\n168807|0.22222\n168808|0.52778\n168809|0.5\n168810|0.41667\n168811|0.36111\n168812|0.34722\n168813|0.18056\n168814|0.11111\n168815|0.31944\n168816|0.34722\n168817|0.48611\n168818|0.375\n168819|0.63889\n168820|0.5\n168821|0.56944\n168822|0.66667\n168823|0.54167\n168824|0.5\n168825|0.5\n168826|0.5\n168827|0.5\n168828|0.5\n168829|0.59722\n168830|0.44444\n168831|0.55556\n168832|0.34722\n168833|0.45833\n168834|0.5\n168835|0.44444\n168836|0.52778\n168837|0.41667\n168838|0.45833\n168839|0.44444\n168840|0.43056\n168841|0.20833\n168842|0.375\n168843|0.5\n168844|0.52778\n168845|0.5\n168846|0.55556\n168847|0.61111\n168848|0.55556\n168849|0.44444\n168850|0.24306\n168851|0.45833\n168852|0.44444\n168853|0.5\n168854|0.52778\n168855|0.5\n168856|0.5\n168857|0.27778\n168858|0.45833\n168859|0.38889\n168860|0.55556\n168861|0.58333\n168862|0.38889\n168863|0.40278\n168864|0.33333\n168865|0.33333\n168866|0.51389\n168867|0.5\n168868|0.5\n168869|0.5\n168870|0.61111\n168871|0.34722\n168872|0.375\n168873|0.38889\n168874|0.54167\n168875|0.31944\n168876|0.38889\n168877|0.25\n168878|0.33333\n168879|0.5\n168880|0.33333\n168881|0.41667\n168882|0.22222\n168883|0.5\n168884|0.47222\n168885|0.375\n168886|0.38889\n168887|0.55556\n168888|0.56944\n168889|0.11111\n168890|0.5\n168891|0.625\n168892|0.625\n168893|0.47222\n168894|0.58333\n168895|0.45833\n168896|0.25\n168897|0.31944\n168898|0.33333\n168899|0.16667\n168900|0.48611\n168901|0.77778\n168902|0.43056\n168903|0.54167\n168904|0.54167\n168905|0.5\n168906|0.59722\n168907|0.5\n168908|0.27778\n168909|0.16667\n168910|0.5\n168911|0.29167\n168912|0.31944\n168913|0.40278\n168914|0.5\n168915|0.45833\n168916|0.58333\n168917|0.65278\n168918|0.5\n168919|0.5\n168920|0.44444\n168921|0.45833\n168922|0.55556\n168923|0.5\n168924|0.41667\n168925|0.44444\n168926|0.25\n168927|0.36111\n168928|0.31944\n168929|0.66667\n168930|0.40278\n168931|0.26389\n168932|0.5\n168933|0.38889\n168934|0.40278\n168935|0.22222\n168936|0.54167\n168937|0.55556\n168938|0.55556\n168939|0.38889\n168940|0.27778\n168941|0.59722\n168942|0.625\n168943|0.16667\n168944|0.16667\n168945|0.15278\n168946|0.47222\n168947|0.48611\n168948|0.5\n168949|0.55556\n168950|0.5\n168951|0.23611\n168952|0.41667\n168953|0.27778\n168954|0.51389\n168955|0.29167\n168956|0.33333\n168957|0.15278\n168958|0.5\n168959|0.52778\n168960|0.86111\n168961|0.70833\n168962|0.59722\n168963|0.625\n168964|0.34722\n168965|0.58333\n168966|0.36111\n168967|0.26389\n168968|0.5\n168969|0.66667\n168970|0.69444\n168971|0.76389\n168972|0.75\n168973|0.61111\n168974|0.40278\n168975|0.27778\n168976|0.375\n168977|0.25\n168978|0.52778\n168979|0.30556\n168980|0.31944\n168981|0.5\n168982|0.33333\n168983|0.33333\n168984|0.22222\n168985|0.18056\n168986|0.23611\n168987|0.15278\n168988|0.34722\n168989|0.5\n168990|0.38889\n168991|0.25\n168992|0.27778\n168993|0.45833\n168994|0.5\n168995|0.5\n168996|0.54167\n168997|0.45833\n168998|0.58333\n168999|0.5\n169000|0.25\n169001|0.45833\n169002|0.55556\n169003|0.44444\n169004|0.48611\n169005|0.48611\n169006|0.43056\n169007|0.375\n169008|0.5\n169009|0.51389\n169010|0.38889\n169011|0.23611\n169012|0.80556\n169013|0.66667\n169014|0.5\n169015|0.38889\n169016|0.22222\n169017|0.11111\n169018|0.44444\n169019|0.23611\n169020|0.5\n169021|0.52778\n169022|0.55556\n169023|0.54167\n169024|0.55556\n169025|0.66667\n169026|0.55556\n169027|0.375\n169028|0.52778\n169029|0.5\n169030|0.48611\n169031|0.58333\n169032|0.5\n169033|0.5\n169034|0.61111\n169035|0.41667\n169036|0.58333\n169037|0.5\n169038|0.44444\n169039|0.70833\n169040|0.69444\n169041|0.38889\n169042|0.45833\n169043|0.33333\n169044|0.31944\n169045|0.27778\n169046|0.16667\n169047|0.055556\n169048|0.47222\n169049|0.375\n169050|0.375\n169051|0.40278\n169052|0.5\n169053|0.5\n169054|0.26389\n169055|0.45833\n169056|0.51389\n169057|0.25\n169058|0.44444\n169059|0.33333\n169060|0.33333\n169061|0.38889\n169062|0.45833\n169063|0.54167\n169064|0.45833\n169065|0.097222\n169066|0.5\n169067|0.5\n169068|0.40278\n169069|0.47222\n169070|0.16667\n169071|0.5\n169072|0.58333\n169073|0.55556\n169074|0.56944\n169075|0.5\n169076|0.22222\n169077|0.75\n169078|0.5\n169079|0.56944\n169080|0.33333\n169081|0.44444\n169082|0.40278\n169083|0.56944\n169084|0.45833\n169085|0.5\n169086|0.44444\n169087|0.5\n169088|0.58333\n169089|0.59722\n169090|0.33333\n169091|0.5\n169092|0.55556\n169093|0.26389\n169094|0.5\n169095|0.47222\n169096|0.5\n169097|0.5\n169098|0.5\n169099|0.5\n169100|0.44444\n169101|0.36111\n169102|0.43056\n169103|0.48611\n169104|0.30556\n169105|0.76389\n169106|0.68056\n169107|0.54167\n169108|0.30556\n169109|0.5\n169110|0.5\n169111|0.59722\n169112|0.5\n169113|0.51389\n169114|0.58333\n169115|0.5\n169116|0.19444\n169117|0.18056\n169118|0.11111\n169119|0.069444\n169120|0.069444\n169121|0.43056\n169122|0.5\n169123|0.5\n169124|0.5\n169125|0.56944\n169126|0.40278\n169127|0.5\n169128|0.5\n169129|0.52778\n169130|0.5\n169131|0.5\n169132|0.5\n169133|0.5\n169134|0.375\n169135|0.625\n169136|0.63889\n169137|0.625\n169138|0.72222\n169139|0.66667\n169140|0.44444\n169141|0.5\n169142|0.44444\n169143|0.5\n169144|0.76389\n169145|0.5\n169146|0.22222\n169147|0.44444\n169148|0.45833\n169149|0.81944\n169150|0.625\n169151|0.31944\n169152|0.5\n169153|0.5\n169154|0.5\n169155|0.625\n169156|0.5\n169157|0.33333\n169158|0.5\n169159|0.43056\n169160|0.5\n169161|0.5\n169162|0.44444\n169163|0.43056\n169164|0.36111\n169165|0.38889\n169166|0.48611\n169167|0.5\n169168|0.33333\n169169|0.61111\n169170|0.47222\n169171|0.55556\n169172|0.47222\n169173|0.55556\n169174|0.375\n169175|0.38889\n169176|0.41667\n169177|0.33333\n169178|0.22222\n169179|0.34722\n169180|0.25\n169181|0.38889\n169182|0.40278\n169183|0.375\n169184|0.41667\n169185|0.5\n169186|0.38889\n169187|0.19444\n169188|0.31944\n169189|0.29167\n169190|0.45833\n169191|0.43056\n169192|0.375\n169193|0.38889\n169194|0.5\n169195|0.52778\n169196|0.52778\n169197|0.38889\n169198|0.44444\n169199|0.5\n169200|0.45833\n169201|0.54167\n169202|0.22222\n169203|0.5\n169204|0.25\n169205|0.45833\n169206|0.54167\n169207|0.5\n169208|0.40278\n169209|0.41667\n169210|0.47222\n169211|0.33333\n169212|0.47222\n169213|0.5\n169214|0.54167\n169215|0.73611\n169216|0.5\n169217|0.48611\n169218|0.5\n169219|0.5\n169220|0.48611\n169221|0.18056\n169222|0.38889\n169223|0.45833\n169224|0.5\n169225|0.44444\n169226|0.38889\n169227|0.33333\n169228|0.5\n169229|0.38889\n169230|0.125\n169231|0.34722\n169232|0.26389\n169233|0.20833\n169234|0.16667\n169235|0.11111\n169236|0.23611\n169237|0.22222\n169238|0.48611\n169239|0.25\n169240|0.47222\n169241|0.38889\n169242|0.15278\n169243|0.13889\n169244|0.56944\n169245|0.47222\n169246|0.61111\n169247|0.43056\n169248|0.48611\n169249|0.625\n169250|0.84722\n169251|0.66667\n169252|0.38889\n169253|0.5\n169254|0.63889\n169255|0.54167\n169256|0.77778\n169257|0.625\n169258|0.51389\n169259|0.375\n169260|0.66667\n169261|0.36111\n169262|0.45833\n169263|0.15278\n169264|0.26389\n169265|0.125\n169266|0.16667\n169267|0.15278\n169268|0.77778\n169269|0.48611\n169270|0.34722\n169271|0.16667\n169272|0.51389\n169273|0.5\n169274|0.5\n169275|0.45833\n169276|0.47222\n169277|0.40278\n169278|0.23611\n169279|0.52778\n169280|0.23611\n169281|0.30556\n169282|0.47222\n169283|0.52778\n169284|0.5\n169285|0.47222\n169286|0.52778\n169287|0.5\n169288|0.44444\n169289|0.38889\n169290|0.34722\n169291|0.40278\n169292|0.5\n169293|0.5\n169294|0.52778\n169295|0.5\n169296|0.44444\n169297|0.40278\n169298|0.5\n169299|0.41667\n169300|0.38889\n169301|0.5\n169302|0.5\n169303|0.79167\n169304|0.5\n169305|0.5\n169306|0.29167\n169307|0.22222\n169308|0.30556\n169309|0.44444\n169310|0.5\n169311|0.20833\n169312|0.41667\n169313|0.59722\n169314|0.47222\n169315|0.5\n169316|0.47222\n169317|0.55556\n169318|0.51389\n169319|0.5\n169320|0.31944\n169321|0.27778\n169322|0.5\n169323|0.36111\n169324|0.5\n169325|0.5\n169326|0.44444\n169327|0.63889\n169328|0.25\n169329|0.41667\n169330|0.16667\n169331|0.5\n169332|0.5\n169333|0.5\n169334|0.5\n169335|0.47222\n169336|0.36111\n169337|0.5\n169338|0.5\n169339|0.5\n169340|0.5\n169341|0.36111\n169342|0.38889\n169343|0.5\n169344|0.44444\n169345|0.30556\n169346|0.29167\n169347|0.11111\n169348|0.83333\n169349|0.55556\n169350|0.5\n169351|0.84722\n169352|0.56944\n169353|0.375\n169354|0.55556\n169355|0.58333\n169356|0.55556\n169357|0.5\n169358|0.5\n169359|0.5\n169360|0.125\n169361|0.51389\n169362|0.69444\n169363|0.30556\n169364|0.20833\n169365|0.25\n169366|0.61111\n169367|0.75\n169368|0.54167\n169369|0.38889\n169370|0.43056\n169371|0.375\n169372|0.65278\n169373|0.73611\n169374|0.51389\n169375|0.5\n169376|0.44444\n169377|0.25\n169378|0.5\n169379|0.48611\n169380|0.44444\n169381|0.55556\n169382|0.20833\n169383|0.5\n169384|0.5\n169385|0.20833\n169386|0.41667\n169387|0.5\n169388|0.29167\n169389|0.40278\n169390|0.33333\n169391|0.5\n169392|0.5\n169393|0.30556\n169394|0.20833\n169395|0.55556\n169396|0.51389\n169397|0.5\n169398|0.33333\n169399|0.30556\n169400|0.40278\n169401|0.20833\n169402|0.20833\n169403|0.33333\n169404|0.58333\n169405|0.73611\n169406|0.58333\n169407|0.69444\n169408|0.31944\n169409|0.38889\n169410|0.26389\n169411|0.36111\n169412|0.76389\n169413|0.375\n169414|0.375\n169415|0.55556\n169416|0.63889\n169417|0.51389\n169418|0.56944\n169419|0.5\n169420|0.5\n169421|0.65278\n169422|0.65278\n169423|0.63889\n169424|0.26389\n169425|0.055556\n169426|0.58333\n169427|0.63889\n169428|0.55556\n169429|0.48611\n169430|0.51389\n169431|0.43056\n169432|0.5\n169433|0.375\n169434|0.51389\n169435|0.51389\n169436|0.5\n169437|0.5\n169438|0.33333\n169439|0.58333\n169440|0.63889\n169441|0.58333\n169442|0.51389\n169443|0.5\n169444|0.375\n169445|0.34722\n169446|0.23611\n169447|0.36111\n169448|0.083333\n169449|0.15278\n169450|0.5\n169451|0.44444\n169452|0.44444\n169453|0.48611\n169454|0.5\n169455|0.16667\n169456|0.25\n169457|0.36111\n169458|0.54167\n169459|0.58333\n169460|0.52778\n169461|0.23611\n169462|0.51389\n169463|0.45833\n169464|0.44444\n169465|0.48611\n169466|0.48611\n169467|0.5\n169468|0.51389\n169469|0.55556\n169470|0.5\n169471|0.40278\n169472|0.5\n169473|0.52778\n169474|0.34722\n169475|0.55556\n169476|0.52778\n169477|0.44444\n169478|0.18056\n169479|0.36111\n169480|0.41667\n169481|0.5\n169482|0.36111\n169483|0.31944\n169484|0.27778\n169485|0.63889\n169486|0.5\n169487|0.40278\n169488|0.56944\n169489|0.48611\n169490|0.52778\n169491|0.44444\n169492|0.58333\n169493|0.27778\n169494|0.31944\n169495|0.23611\n169496|0.30556\n169497|0.70833\n169498|0.43056\n169499|0.52778\n169500|0.26389\n169501|0.40278\n169502|0.15278\n169503|0.31944\n169504|0.33333\n169505|0.43056\n169506|0.45833\n169507|0.34722\n169508|0.40278\n169509|0.27778\n169510|0.5\n169511|0.44444\n169512|0.5\n169513|0.43056\n169514|0.58333\n169515|0.55556\n169516|0.625\n169517|0.31944\n169518|0.44444\n169519|0.26389\n169520|0.5\n169521|0.51389\n169522|0.097222\n169523|0.44444\n169524|0.43056\n169525|0.38889\n169526|0.55556\n169527|0.33333\n169528|0.5\n169529|0.58333\n169530|0.70833\n169531|0.38889\n169532|0.30556\n169533|0.38889\n169534|0.34722\n169535|0.43056\n169536|0.625\n169537|0.5\n169538|0.58333\n169539|0.55556\n169540|0.70833\n169541|0.66667\n169542|0.13889\n169543|0.33333\n169544|0.33333\n169545|0.55556\n169546|0.31944\n169547|0.5\n169548|0.5\n169549|0.43056\n169550|0.44444\n169551|0.27778\n169552|0.38889\n169553|0.61111\n169554|0.26389\n169555|0.40278\n169556|0.25\n169557|0.097222\n169558|0.34722\n169559|0.47222\n169560|0.51389\n169561|0.55556\n169562|0.44444\n169563|0.72222\n169564|0.77778\n169565|0.58333\n169566|0.55556\n169567|0.55556\n169568|0.5\n169569|0.58333\n169570|0.58333\n169571|0.54167\n169572|0.27778\n169573|0.26389\n169574|0.26389\n169575|0.16667\n169576|0.51389\n169577|0.55556\n169578|0.31944\n169579|0.23611\n169580|0.59722\n169581|0.68056\n169582|0.5\n169583|0.625\n169584|0.5\n169585|0.52778\n169586|0.55556\n169587|0.5\n169588|0.22222\n169589|0.44444\n169590|0.5\n169591|0.375\n169592|0.44444\n169593|0.63889\n169594|0.69444\n169595|0.58333\n169596|0.72222\n169597|0.52778\n169598|0.61111\n169599|0.55556\n169600|0.5\n169601|0.5\n169602|0.5\n169603|0.58333\n169604|0.66667\n169605|0.58333\n169606|0.48611\n169607|0.41667\n169608|0.59722\n169609|0.44444\n169610|0.56944\n169611|0.375\n169612|0.25\n169613|0.30556\n169614|0.29167\n169615|0.26389\n169616|0.33333\n169617|0.25\n169618|0.40278\n169619|0.48611\n169620|0.56944\n169621|0.38889\n169622|0.44444\n169623|0.63889\n169624|0.5\n169625|0.63889\n169626|0.30556\n169627|0.52778\n169628|0.5\n169629|0.58333\n169630|0.43056\n169631|0.47222\n169632|0.55556\n169633|0.18056\n169634|0.23611\n169635|0.76389\n169636|0\n169637|0.5\n169638|0.5\n169639|0.5\n169640|0.5\n169641|0.5\n169642|0.55556\n169643|0.66667\n169644|0.20833\n169645|0.38889\n169646|0.41667\n169647|0.31944\n169648|0.26389\n169649|0.43056\n169650|0.47222\n169651|0.40278\n169652|0.5\n169653|0.44444\n169654|0.27778\n169655|0.25\n169656|0.23611\n169657|0.375\n169658|0.33333\n169659|0.48611\n169660|0.27778\n169661|0.25\n169662|0.26389\n169663|0.43056\n169664|0.27778\n169665|0.34722\n169666|0.70833\n169667|0.65278\n169668|0.25\n169669|0.38889\n169670|0.5\n169671|0.45833\n169672|0.5\n169673|0.36111\n169674|0.34722\n169675|0.48611\n169676|0.44444\n169677|0.38889\n169678|0.61111\n169679|0.41667\n169680|0.45833\n169681|0.5\n169682|0.51389\n169683|0.55556\n169684|0.66667\n169685|0.73611\n169686|0.70833\n169687|0.75\n169688|0.66667\n169689|0.91667\n169690|0.79167\n169691|0.80556\n169692|0.55556\n169693|0.63889\n169694|0.625\n169695|0.68056\n169696|0.54167\n169697|0.34722\n169698|0.43056\n169699|0.61111\n169700|0.68056\n169701|0.52778\n169702|0.70833\n169703|0.52778\n169704|0.58333\n169705|0.5\n169706|0.54167\n169707|0.23611\n169708|0.47222\n169709|0.5\n169710|0.43056\n169711|0.38889\n169712|0.5\n169713|0.52778\n169714|0.45833\n169715|0.58333\n169716|0.44444\n169717|0.5\n169718|0.5\n169719|0.48611\n169720|0.5\n169721|0.27778\n169722|0.31944\n169723|0.27778\n169724|0.65278\n169725|0.625\n169726|0.51389\n169727|0.40278\n169728|0.59722\n169729|0.51389\n169730|0.27778\n169731|0.61111\n169732|0.66667\n169733|0.45833\n169734|0.72222\n169735|0.5\n169736|0.65278\n169737|0.52778\n169738|0.66667\n169739|0.5\n169740|0.59722\n169741|0.48611\n169742|0.52778\n169743|0.61111\n169744|0.375\n169745|0.31944\n169746|0.59722\n169747|0.20833\n169748|0.56944\n169749|0.36111\n169750|0.013889\n169751|0.125\n169752|0.11111\n169753|0.15278\n169754|0.31944\n169755|0.70833\n169756|0.77778\n169757|0.56944\n169758|0.54167\n169759|0.69444\n169760|0.34722\n169761|0.27778\n169762|0.23611\n169763|0.47222\n169764|0.70833\n169765|0.75\n169766|0.30556\n169767|0.69444\n169768|0.69444\n169769|0.5\n169770|0.55556\n169771|0.83333\n169772|0.16667\n169773|0.41667\n169774|0.61111\n169775|0.5\n169776|0.5\n169777|0.5\n169778|0.58333\n169779|0.625\n169780|0.77778\n169781|0.33333\n169782|0.47222\n169783|0.72222\n169784|0.69444\n169785|0.56944\n169786|0.041667\n169787|0.30556\n169788|0.33333\n169789|0.5\n169790|0.55556\n169791|0.40278\n169792|0.625\n169793|0.68056\n169794|0.55556\n169795|0.43056\n169796|0.31944\n169797|0.55556\n169798|0.52778\n169799|0.55556\n169800|0.23611\n169801|0.29167\n169802|0.51389\n169803|0.61111\n169804|0.5\n169805|0.30556\n169806|0.45833\n169807|0.5\n169808|0.5\n169809|0.5\n169810|0.36111\n169811|0.25\n169812|0.44444\n169813|0.38889\n169814|0.41667\n169815|0.30556\n169816|0.54167\n169817|0.43056\n169818|0.25\n169819|0.375\n169820|0.44444\n169821|0.41667\n169822|0.75\n169823|0.44444\n169824|0.5\n169825|0.29167\n169826|0.48611\n169827|0.70833\n169828|0.375\n169829|0.69444\n169830|0.77778\n169831|0.55556\n169832|0.5\n169833|0.45833\n169834|0.40278\n169835|0.52778\n169836|0.38889\n169837|0.5\n169838|0.56944\n169839|0.29167\n169840|0.58333\n169841|0.45833\n169842|0.5\n169843|0.34722\n169844|0.47222\n169845|0.26389\n169846|0.56944\n169847|0.45833\n169848|0.125\n169849|0.18056\n169850|0.38889\n169851|0.38889\n169852|0.44444\n169853|0.44444\n169854|0.40278\n169855|0.45833\n169856|0.29167\n169857|0.33333\n169858|0.44444\n169859|0.29167\n169860|0.27778\n169861|0.5\n169862|0.65278\n169863|0.66667\n169864|0.55556\n169865|0.27778\n169866|0.18056\n169867|0.16667\n169868|0.56944\n169869|0.48611\n169870|0.58333\n169871|0.29167\n169872|0.29167\n169873|0.31944\n169874|0.20833\n169875|0.15278\n169876|0.375\n169877|0.375\n169878|0.30556\n169879|0.13889\n169880|0.29167\n169881|0.38889\n169882|0.36111\n169883|0.47222\n169884|0.26389\n169885|0.5\n169886|0.5\n169887|0.48611\n169888|0.58333\n169889|0.43056\n169890|0.38889\n169891|0.27778\n169892|0.40278\n169893|0.5\n169894|0.63889\n169895|0.5\n169896|0.48611\n169897|0.36111\n169898|0.33333\n169899|0.47222\n169900|0.5\n169901|0.5\n169902|0.56944\n169903|0.54167\n169904|0.54167\n169905|0.5\n169906|0.43056\n169907|0.40278\n169908|0.34722\n169909|0.5\n169910|0.27778\n169911|0.51389\n169912|0.5\n169913|0.375\n169914|0.51389\n169915|0.27778\n169916|0.63889\n169917|0.55556\n169918|0.52778\n169919|0.34722\n169920|0.41667\n169921|0.69444\n169922|0.34722\n169923|0.34722\n169924|0.44444\n169925|0.56944\n169926|0.55556\n169927|0.5\n169928|0.55556\n169929|0.26389\n169930|0.29167\n169931|0.56944\n169932|0.58333\n169933|0.5\n169934|0.41667\n169935|0.55556\n169936|0.26389\n169937|0.125\n169938|0.58333\n169939|0.16667\n169940|0.47222\n169941|0.5\n169942|0.5\n169943|0.31944\n169944|0.27778\n169945|0.41667\n169946|0.22222\n169947|0.40278\n169948|0.45833\n169949|0.33333\n169950|0.44444\n169951|0.38889\n169952|0.59722\n169953|0.43056\n169954|0.31944\n169955|0.44444\n169956|0.40278\n169957|0.81944\n169958|0.41667\n169959|0.097222\n169960|0.5\n169961|0.5\n169962|0.5\n169963|0.38889\n169964|0.65278\n169965|0.56944\n169966|0.40278\n169967|0.47222\n169968|0.38889\n169969|0.47222\n169970|0.52778\n169971|0.56944\n169972|0.34722\n169973|0.083333\n169974|0.375\n169975|0.56944\n169976|0.54167\n169977|0.5\n169978|0.5\n169979|0.11111\n169980|0.61111\n169981|0.48611\n169982|0.58333\n169983|0.48611\n169984|0.48611\n169985|0.27778\n169986|0.5\n169987|0.48611\n169988|0.63889\n169989|0.43056\n169990|0.55556\n169991|0.54167\n169992|0.375\n169993|0.52778\n169994|0.52778\n169995|0.055556\n169996|0.44444\n169997|0.5\n169998|0.5\n169999|0.31944\n170000|0.47222\n170001|0.625\n170002|0.47222\n170003|0.51389\n170004|0.33333\n170005|0.43056\n170006|0.43056\n170007|0.38889\n170008|0.38889\n170009|0.25\n170010|0.33333\n170011|0.11111\n170012|0.23611\n170013|0.25\n170014|0.56944\n170015|0.44444\n170016|0.40278\n170017|0.52778\n170018|0.34722\n170019|0.27778\n170020|0.5\n170021|0.15278\n170022|0.5\n170023|0.43056\n170024|0.23611\n170025|0.38889\n170026|0.5\n170027|0.45833\n170028|0.45833\n170029|0.55556\n170030|0.5\n170031|0.625\n170032|0.5\n170033|0.31944\n170034|0.30556\n170035|0.16667\n170036|0.375\n170037|0.29167\n170038|0.375\n170039|0.34722\n170040|0.48611\n170041|0.40278\n170042|0.11111\n170043|0.26389\n170044|0.55556\n170045|0.5\n170046|0.5\n170047|0.5\n170048|0.5\n170049|0.44444\n170050|0.44444\n170051|0.5\n170052|0.65278\n170053|0.73611\n170054|0.20833\n170055|0.375\n170056|0.56944\n170057|0.5\n170058|0.29167\n170059|0.61111\n170060|0.48611\n170061|0.59722\n170062|0.52778\n170063|0.48611\n170064|0.54167\n170065|0.55556\n170066|0.72222\n170067|0.90278\n170068|0.5\n170069|0.5\n170070|0.33333\n170071|0.40278\n170072|0.5\n170073|0.18056\n170074|0.41667\n170075|0.55556\n170076|0.54167\n170077|0.375\n170078|0.16667\n170079|0.43056\n170080|0.25\n170081|0.041667\n170082|0.51389\n170083|0.33333\n170084|0.38889\n170085|0.59722\n170086|0.47222\n170087|0.44444\n170088|0.43056\n170089|0.26389\n170090|0.27778\n170091|0.23611\n170092|0.51389\n170093|0.61111\n170094|0.83333\n170095|0.72222\n170096|0.58333\n170097|0.40278\n170098|0.52778\n170099|0.43056\n170100|0.65278\n170101|0.43056\n170102|0.51389\n170103|0.5\n170104|0.51389\n170105|0.68056\n170106|0.45833\n170107|0.51389\n170108|0.38889\n170109|0.38889\n170110|0.41667\n170111|0.375\n170112|0.5\n170113|0.55556\n170114|0.56944\n170115|0.66667\n170116|0.44444\n170117|0.66667\n170118|0.54167\n170119|0.5\n170120|0.61111\n170121|0.45833\n170122|0.097222\n170123|0.44444\n170124|0.45833\n170125|0.38889\n170126|0.22222\n170127|0.5\n170128|0.27778\n170129|0.36111\n170130|0.19444\n170131|0.20833\n170132|0.375\n170133|0.26389\n170134|0.47222\n170135|0.5\n170136|0.34722\n170137|0.51389\n170138|0.44444\n170139|0.58333\n170140|0.75\n170141|0.70833\n170142|0.29167\n170143|0.375\n170144|0.22222\n170145|0.45833\n170146|0.34722\n170147|0.36111\n170148|0.38889\n170149|0.33333\n170150|0.44444\n170151|0.19444\n170152|0.38889\n170153|0.23611\n170154|0.61111\n170155|0.40278\n170156|0.51389\n170157|0.56944\n170158|0.27778\n170159|0.5\n170160|0.38889\n170161|0.38889\n170162|0.31944\n170163|0.31944\n170164|0.51389\n170165|0.55556\n170166|0.51389\n170167|0.5\n170168|0.47222\n170169|0.5\n170170|0.48611\n170171|0.20833\n170172|0.5\n170173|0.5\n170174|0.48611\n170175|0.38889\n170176|0.16667\n170177|0.43056\n170178|0.81944\n170179|0.40278\n170180|0.44444\n170181|0.5\n170182|0.55556\n170183|0.59722\n170184|0.44444\n170185|0.58333\n170186|0.58333\n170187|0.44444\n170188|0.5\n170189|0.5\n170190|0.44444\n170191|0.625\n170192|0.5\n170193|0.5\n170194|0.41667\n170195|0.55556\n170196|0.47222\n170197|0.61111\n170198|0.47222\n170199|0.43056\n170200|0.23611\n170201|0.44444\n170202|0.31944\n170203|0.54167\n170204|0.51389\n170205|0.54167\n170206|0.55556\n170207|0.52778\n170208|0.55556\n170209|0.59722\n170210|0.26389\n170211|0.5\n170212|0.5\n170213|0.52778\n170214|0.47222\n170215|0.43056\n170216|0.38889\n170217|0.48611\n170218|0.41667\n170219|0.41667\n170220|0.5\n170221|0.45833\n170222|0.5\n170223|0.625\n170224|0.40278\n170225|0.44444\n170226|0.20833\n170227|0.20833\n170228|0.15278\n170229|0.56944\n170230|0.48611\n170231|0.27778\n170232|0.36111\n170233|0.43056\n170234|0.34722\n170235|0.31944\n170236|0.54167\n170237|0.52778\n170238|0.5\n170239|0.41667\n170240|0.52778\n170241|0.47222\n170242|0.33333\n170243|0.30556\n170244|0.5\n170245|0.5\n170246|0.5\n170247|0.5\n170248|0.5\n170249|0.43056\n170250|0.44444\n170251|0.5\n170252|0.47222\n170253|0.33333\n170254|0.18056\n170255|0.33333\n170256|0.29167\n170257|0.29167\n170258|0.55556\n170259|0.54167\n170260|0.29167\n170261|0.30556\n170262|0.36111\n170263|0.22222\n170264|0.38889\n170265|0.54167\n170266|0.56944\n170267|0.38889\n170268|0.43056\n170269|0.61111\n170270|0.66667\n170271|0.38889\n170272|0.20833\n170273|0.27778\n170274|0.31944\n170275|0.40278\n170276|0.61111\n170277|0.27778\n170278|0.41667\n170279|0.26389\n170280|0.5\n170281|0.20833\n170282|0.22222\n170283|0.29167\n170284|0.41667\n170285|0.30556\n170286|0.23611\n170287|0.34722\n170288|0.41667\n170289|0.40278\n170290|0.33333\n170291|0.29167\n170292|0.30556\n170293|0.33333\n170294|0.30556\n170295|0.5\n170296|0.22222\n170297|0.51389\n170298|0.5\n170299|0.23611\n170300|0.5\n170301|0.5\n170302|0.5\n170303|0.5\n170304|0.29167\n170305|0.56944\n170306|0.5\n170307|0.54167\n170308|0.61111\n170309|0.52778\n170310|0.44444\n170311|0.55556\n170312|0.16667\n170313|0.5\n170314|0.375\n170315|0.47222\n170316|0.52778\n170317|0.5\n170318|0.29167\n170319|0.33333\n170320|0.54167\n170321|0.22222\n170322|0.38889\n170323|0.5\n170324|0.38889\n170325|0.41667\n170326|0.48611\n170327|0.11111\n170328|0.36111\n170329|0.33333\n170330|0.5\n170331|0.66667\n170332|0.33333\n170333|0.18056\n170334|0.38889\n170335|0.5\n170336|0.44444\n170337|0.65278\n170338|0.52778\n170339|0.5\n170340|0.30556\n170341|0.375\n170342|0.40278\n170343|0.52778\n170344|0.43056\n170345|0.51389\n170346|0.31944\n170347|0.38889\n170348|0.20833\n170349|0.097222\n170350|0.41667\n170351|0.26389\n170352|0.16667\n170353|0.33333\n170354|0.27778\n170355|0.55556\n170356|0.5\n170357|0.5\n170358|0.38889\n170359|0.34722\n170360|0.56944\n170361|0.5\n170362|0.31944\n170363|0.55556\n170364|0.38889\n170365|0.40278\n170366|0.76389\n170367|0.58333\n170368|0.66667\n170369|0.5\n170370|0.34722\n170371|0.41667\n170372|0.33333\n170373|0.47222\n170374|0.55556\n170375|0.5\n170376|0.47222\n170377|0.625\n170378|0.72222\n170379|0.54167\n170380|0.38889\n170381|0.625\n170382|0.51389\n170383|0.55556\n170384|0.63889\n170385|0.19444\n170386|0.55556\n170387|0.55556\n170388|0.47222\n170389|0.65278\n170390|0.33333\n170391|0.5\n170392|0.5\n170393|0.30556\n170394|0.375\n170395|0.27778\n170396|0.5\n170397|0.54167\n170398|0.30556\n170399|0.44444\n170400|0.5\n170401|0.5\n170402|0.40278\n170403|0.54167\n170404|0.25\n170405|0.44444\n170406|0.34722\n170407|0.47222\n170408|0.40278\n170409|0.51389\n170410|0.15278\n170411|0.15278\n170412|0.45833\n170413|0.54167\n170414|0.66667\n170415|0.22222\n170416|0.72222\n170417|0.5\n170418|0.44444\n170419|0.23611\n170420|0.40278\n170421|0.34722\n170422|0.5\n170423|0.27778\n170424|0.51389\n170425|0.5\n170426|0.70833\n170427|0.25\n170428|0.55556\n170429|0.5\n170430|0.5\n170431|0.375\n170432|0.5\n170433|0.43056\n170434|0.45833\n170435|0.5\n170436|0.51389\n170437|0.44444\n170438|0.5\n170439|0.51389\n170440|0.5\n170441|0.73611\n170442|0.56944\n170443|0.5\n170444|0.51389\n170445|0.30556\n170446|0.5\n170447|0.45833\n170448|0.55556\n170449|0.47222\n170450|0.5\n170451|0.5\n170452|0.59722\n170453|0.38889\n170454|0.66667\n170455|0.61111\n170456|0.26389\n170457|0.51389\n170458|0.51389\n170459|0.51389\n170460|0.51389\n170461|0.5\n170462|0.33333\n170463|0.34722\n170464|0.41667\n170465|0.5\n170466|0.33333\n170467|0.43056\n170468|0.5\n170469|0.5\n170470|0.36111\n170471|0.5\n170472|0.54167\n170473|0.58333\n170474|0.19444\n170475|0.5\n170476|0.5\n170477|0.5\n170478|0.5\n170479|0.54167\n170480|0.29167\n170481|0.5\n170482|0.375\n170483|0.18056\n170484|0.5\n170485|0.5\n170486|0.5\n170487|0.48611\n170488|0.23611\n170489|0.43056\n170490|0.45833\n170491|0.61111\n170492|0.61111\n170493|0.44444\n170494|0.48611\n170495|0.5\n170496|0.5\n170497|0.47222\n170498|0.61111\n170499|0.47222\n170500|0.44444\n170501|0.59722\n170502|0.48611\n170503|0.55556\n170504|0.45833\n170505|0.47222\n170506|0.5\n170507|0.63889\n170508|0.5\n170509|0.61111\n170510|0.52778\n170511|0.38889\n170512|0.26389\n170513|0.63889\n170514|0.61111\n170515|0.51389\n170516|0.25\n170517|0.47222\n170518|0.45833\n170519|0.31944\n170520|0.26389\n170521|0.51389\n170522|0.52778\n170523|0.79167\n170524|0.52778\n170525|0.52778\n170526|0.5\n170527|0.33333\n170528|0.45833\n170529|0.56944\n170530|0.59722\n170531|0.34722\n170532|0.375\n170533|0.58333\n170534|0.5\n170535|0.27778\n170536|0.5\n170537|0.27778\n170538|0.5\n170539|0.55556\n170540|0.61111\n170541|0.52778\n170542|0.55556\n170543|0.55556\n170544|0.47222\n170545|0.84722\n170546|0.51389\n170547|0.22222\n170548|0.19444\n170549|0.47222\n170550|0.22222\n170551|0.55556\n170552|0.63889\n170553|0.5\n170554|0.33333\n170555|0.125\n170556|0.41667\n170557|0.5\n170558|0.5\n170559|0.38889\n170560|0.5\n170561|0.45833\n170562|0.5\n170563|0.48611\n170564|0.40278\n170565|0.375\n170566|0.66667\n170567|0.41667\n170568|0.15278\n170569|0.44444\n170570|0.52778\n170571|0.23611\n170572|0.55556\n170573|0.38889\n170574|0.44444\n170575|0.48611\n170576|0.26389\n170577|0.70833\n170578|0.23611\n170579|0.083333\n170580|0.20833\n170581|0.44444\n170582|0.27778\n170583|0.47222\n170584|0.52778\n170585|0.625\n170586|0.5\n170587|0.51389\n170588|0.20833\n170589|0.44444\n170590|0.26389\n170591|0.56944\n170592|0.5\n170593|0.23611\n170594|0.30556\n170595|0.097222\n170596|0.20833\n170597|0.375\n170598|0.34722\n170599|0.26389\n170600|0.38889\n170601|0.40278\n170602|0.72222\n170603|0.15278\n170604|0.27778\n170605|0.29167\n170606|0.23611\n170607|0.40278\n170608|0.52778\n170609|0.33333\n170610|0.40278\n170611|0.41667\n170612|0.41667\n170613|0.33333\n170614|0.47222\n170615|0.29167\n170616|0.27778\n170617|0.68056\n170618|0.33333\n170619|0.22222\n170620|0.26389\n170621|0.30556\n170622|0.47222\n170623|0.26389\n170624|0.26389\n170625|0.30556\n170626|0.36111\n170627|0.31944\n170628|0.55556\n170629|0.22222\n170630|0.33333\n170631|0.36111\n170632|0.23611\n170633|0.18056\n170634|0.5\n170635|0.36111\n170636|0.375\n170637|0.43056\n170638|0.38889\n170639|0.40278\n170640|0.375\n170641|0.22222\n170642|0.68056\n170643|0.70833\n170644|0.51389\n170645|0.58333\n170646|0.25\n170647|0.51389\n170648|0.45833\n170649|0.48611\n170650|0.47222\n170651|0.41667\n170652|0.43056\n170653|0.34722\n170654|0.5\n170655|0.5\n170656|0.45833\n170657|0.5\n170658|0.55556\n170659|0.77778\n170660|0.52778\n170661|0.5\n170662|0.5\n170663|0.38889\n170664|0.51389\n170665|0.375\n170666|0.27778\n170667|0.29167\n170668|0.22222\n170669|0.47222\n170670|0.5\n170671|0.5\n170672|0.38889\n170673|0.44444\n170674|0.40278\n170675|0.41667\n170676|0.5\n170677|0.38889\n170678|0.125\n170679|0.26389\n170680|0.26389\n170681|0.36111\n170682|0.41667\n170683|0.41667\n170684|0.16667\n170685|0.11111\n170686|0.40278\n170687|0.31944\n170688|0.30556\n170689|0.44444\n170690|0.48611\n170691|0.44444\n170692|0.5\n170693|0.44444\n170694|0.5\n170695|0.31944\n170696|0.40278\n170697|0.56944\n170698|0.47222\n170699|0.23611\n170700|0.5\n170701|0.5\n170702|0.58333\n170703|0.38889\n170704|0.47222\n170705|0.29167\n170706|0.54167\n170707|0.41667\n170708|0.58333\n170709|0.66667\n170710|0.55556\n170711|0.44444\n170712|0.33333\n170713|0.23611\n170714|0.13889\n170715|0.51389\n170716|0.48611\n170717|0.5\n170718|0.58333\n170719|0.44444\n170720|0.40278\n170721|0.72222\n170722|0.5\n170723|0.52778\n170724|0.625\n170725|0.5\n170726|0.16667\n170727|0.36111\n170728|0.30556\n170729|0.33333\n170730|0.40278\n170731|0.27778\n170732|0.20833\n170733|0.47222\n170734|0.48611\n170735|0.31944\n170736|0.54167\n170737|0.55556\n170738|0.5\n170739|0.19444\n170740|0.11111\n170741|0.31944\n170742|0.23611\n170743|0.27778\n170744|0.5\n170745|0.40278\n170746|0.15278\n170747|0.77778\n170748|0.5\n170749|0.34722\n170750|0.51389\n170751|0.27778\n170752|0.48611\n170753|0.56944\n170754|0.27778\n170755|0.56944\n170756|0.5\n170757|0.29167\n170758|0.56944\n170759|0.52778\n170760|0.55556\n170761|0.52778\n170762|0.73611\n170763|0.59722\n170764|0.58333\n170765|0.61111\n170766|0.5\n170767|0.38889\n170768|0.375\n170769|0.63889\n170770|0.5\n170771|0.5\n170772|0.23611\n170773|0.22222\n170774|0.41667\n170775|0.5\n170776|0.38889\n170777|0.38889\n170778|0.55556\n170779|0.69444\n170780|0.5\n170781|0.5\n170782|0.58333\n170783|0.63889\n170784|0.58333\n170785|0.47222\n170786|0.47222\n170787|0.5\n170788|0.44444\n170789|0.55556\n170790|0.45833\n170791|0.38889\n170792|0.44444\n170793|0.375\n170794|0.55556\n170795|0.5\n170796|0.41667\n170797|0.47222\n170798|0.44444\n170799|0.5\n170800|0.34722\n170801|0.375\n170802|0.43056\n170803|0.29167\n170804|0.29167\n170805|0.29167\n170806|0.48611\n170807|0.13889\n170808|0.5\n170809|0.5\n170810|0.56944\n170811|0.52778\n170812|0.52778\n170813|0.52778\n170814|0.43056\n170815|0.16667\n170816|0.41667\n170817|0.27778\n170818|0.36111\n170819|0.45833\n170820|0.5\n170821|0.36111\n170822|0.38889\n170823|0.33333\n170824|0.38889\n170825|0.38889\n170826|0.38889\n170827|0.34722\n170828|0.22222\n170829|0.27778\n170830|0.36111\n170831|0.375\n170832|0.083333\n170833|0.23611\n170834|0.25\n170835|0.36111\n170836|0.55556\n170837|0.61111\n170838|0.45833\n170839|0.27778\n170840|0.5\n170841|0.5\n170842|0.80556\n170843|0.52778\n170844|0.51389\n170845|0.52778\n170846|0.55556\n170847|0.65278\n170848|0.15278\n170849|0.31944\n170850|0.52778\n170851|0.5\n170852|0.29167\n170853|0.41667\n170854|0.30556\n170855|0.73611\n170856|0.375\n170857|0.40278\n170858|0.375\n170859|0.5\n170860|0.47222\n170861|0.59722\n170862|0.63889\n170863|0.13889\n170864|0.5\n170865|0.44444\n170866|0.5\n170867|0.5\n170868|0.47222\n170869|0.56944\n170870|0.54167\n170871|0.5\n170872|0.55556\n170873|0.48611\n170874|0.27778\n170875|0.23611\n170876|0.55556\n170877|0.5\n170878|0.55556\n170879|0.72222\n170880|0.5\n170881|0.54167\n170882|0.43056\n170883|0.33333\n170884|0.70833\n170885|0.26389\n170886|0.38889\n170887|0.30556\n170888|0.31944\n170889|0.36111\n170890|0.20833\n170891|0.58333\n170892|0.5\n170893|0.5\n170894|0.47222\n170895|0.5\n170896|0.5\n170897|0.5\n170898|0.33333\n170899|0.5\n170900|0.48611\n170901|0.66667\n170902|0.5\n170903|0.33333\n170904|0.38889\n170905|0.29167\n170906|0.33333\n170907|0.5\n170908|0.375\n170909|0.5\n170910|0.5\n170911|0.81944\n170912|0.72222\n170913|0.80556\n170914|0.44444\n170915|0.375\n170916|0.48611\n170917|0.5\n170918|0.5\n170919|0.5\n170920|0.5\n170921|0.5\n170922|0.47222\n170923|0.29167\n170924|0.5\n170925|0.38889\n170926|0.5\n170927|0.34722\n170928|0.51389\n170929|0.54167\n170930|0.5\n170931|0.51389\n170932|0.45833\n170933|0.59722\n170934|0.27778\n170935|0.48611\n170936|0.31944\n170937|0.66667\n170938|0.625\n170939|0.58333\n170940|0.33333\n170941|0.15278\n170942|0.23611\n170943|0.23611\n170944|0.27778\n170945|0.11111\n170946|0.027778\n170947|0.51389\n170948|0.625\n170949|0.45833\n170950|0.5\n170951|0.083333\n170952|0.16667\n170953|0.41667\n170954|0.5\n170955|0.5\n170956|0.5\n170957|0.65278\n170958|0.5\n170959|0.5\n170960|0.30556\n170961|0.36111\n170962|0.38889\n170963|0.27778\n170964|0.23611\n170965|0.38889\n170966|0.38889\n170967|0.26389\n170968|0.5\n170969|0.5\n170970|0.069444\n170971|0.41667\n170972|0.55556\n170973|0.44444\n170974|0.45833\n170975|0.33333\n170976|0.33333\n170977|0.38889\n170978|0.65278\n170979|0.18056\n170980|0.5\n170981|0.48611\n170982|0.33333\n170983|0.16667\n170984|0.5\n170985|0.47222\n170986|0.5\n170987|0.55556\n170988|0.5\n170989|0.65278\n170990|0.45833\n170991|0.44444\n170992|0.44444\n170993|0.27778\n170994|0.5\n170995|0.48611\n170996|0.5\n170997|0.5\n170998|0.66667\n170999|0.72222\n171000|0.56944\n171001|0.69444\n171002|0.54167\n171003|0.40278\n171004|0.5\n171005|0.375\n171006|0.63889\n171007|0.75\n171008|0.55556\n171009|0.38889\n171010|0.41667\n171011|0.625\n171012|0.51389\n171013|0.5\n171014|0.51389\n171015|0.61111\n171016|0.79167\n171017|0.59722\n171018|0.56944\n171019|0.29167\n171020|0.45833\n171021|0.59722\n171022|0.44444\n171023|0.44444\n171024|0.5\n171025|0.51389\n171026|0.41667\n171027|0.33333\n171028|0.48611\n171029|0.375\n171030|0.31944\n171031|0.25\n171032|0.52778\n171033|0.51389\n171034|0.40278\n171035|0.61111\n171036|0.59722\n171037|0.43056\n171038|0.36111\n171039|0.48611\n171040|0.47222\n171041|0.36111\n171042|0.5\n171043|0.33333\n171044|0.45833\n171045|0.5\n171046|0.47222\n171047|0.44444\n171048|0.66667\n171049|0.36111\n171050|0.44444\n171051|0.55556\n171052|0.41667\n171053|0.25\n171054|0.22222\n171055|0.22222\n171056|0.5\n171057|0.25\n171058|0.5\n171059|0.61111\n171060|0.55556\n171061|0.5\n171062|0.41667\n171063|0.44444\n171064|0.23611\n171065|0.56944\n171066|0.5\n171067|0.45833\n171068|0.43056\n171069|0.48611\n171070|0.52778\n171071|0.34722\n171072|0.11111\n171073|0.45833\n171074|0.29167\n171075|0.40278\n171076|0.30556\n171077|0.44444\n171078|0.27778\n171079|0.44444\n171080|0.52778\n171081|0.36111\n171082|0.45833\n171083|0.79167\n171084|0.36111\n171085|0.47222\n171086|0.36111\n171087|0.34722\n171088|0.48611\n171089|0.5\n171090|0.5\n171091|0.5\n171092|0.48611\n171093|0.5\n171094|0.5\n171095|0.27778\n171096|0.52778\n171097|0.5\n171098|0.54167\n171099|0.45833\n171100|0.48611\n171101|0.36111\n171102|0.23611\n171103|0.23611\n171104|0.36111\n171105|0.5\n171106|0.61111\n171107|0.20833\n171108|0.47222\n171109|0.375\n171110|0.16667\n171111|0.34722\n171112|0.38889\n171113|0.18056\n171114|0.5\n171115|0.5\n171116|0.48611\n171117|0.34722\n171118|0.43056\n171119|0.5\n171120|0.5\n171121|0.5\n171122|0.5\n171123|0.55556\n171124|0.48611\n171125|0.5\n171126|0.55556\n171127|0.55556\n171128|0.66667\n171129|0.5\n171130|0.5\n171131|0.47222\n171132|0.5\n171133|0.5\n171134|0.38889\n171135|0.5\n171136|0.58333\n171137|0.5\n171138|0.41667\n171139|0.5\n171140|0.59722\n171141|0.40278\n171142|0.66667\n171143|0.63889\n171144|0.29167\n171145|0.41667\n171146|0.20833\n171147|0.31944\n171148|0.40278\n171149|0.59722\n171150|0.23611\n171151|0.34722\n171152|0.36111\n171153|0.5\n171154|0.375\n171155|0.68056\n171156|0.54167\n171157|0.44444\n171158|0.41667\n171159|0.66667\n171160|0.55556\n171161|0.5\n171162|0.56944\n171163|0.22222\n171164|0.36111\n171165|0.25\n171166|0.34722\n171167|0.36111\n171168|0.5\n171169|0.5\n171170|0.45833\n171171|0.5\n171172|0.56944\n171173|0.19444\n171174|0.47222\n171175|0.61111\n171176|0.23611\n171177|0.55556\n171178|0.5\n171179|0.51389\n171180|0.5\n171181|0.20833\n171182|0.5\n171183|0.5\n171184|0.51389\n171185|0.5\n171186|0.44444\n171187|0.20833\n171188|0.43056\n171189|0.23611\n171190|0.22222\n171191|0.5\n171192|0.5\n171193|0.31944\n171194|0.38889\n171195|0.5\n171196|0.58333\n171197|0.54167\n171198|0.36111\n171199|0.5\n171200|0.56944\n171201|0.31944\n171202|0.375\n171203|0.27778\n171204|0.5\n171205|0.5\n171206|0.5\n171207|0.5\n171208|0.54167\n171209|0.34722\n171210|0.40278\n171211|0.43056\n171212|0.5\n171213|0.43056\n171214|0.52778\n171215|0.083333\n171216|0.5\n171217|0.38889\n171218|0.5\n171219|0.43056\n171220|0.51389\n171221|0.43056\n171222|0.45833\n171223|0.55556\n171224|0.30556\n171225|0.5\n171226|0.31944\n171227|0.44444\n171228|0.41667\n171229|0.45833\n171230|0.40278\n171231|0.5\n171232|0.16667\n171233|0.48611\n171234|0.5\n171235|0.59722\n171236|0.52778\n171237|0.31944\n171238|0.45833\n171239|0.16667\n171240|0.54167\n171241|0.5\n171242|0.47222\n171243|0.44444\n171244|0.36111\n171245|0.375\n171246|0.38889\n171247|0.72222\n171248|0.55556\n171249|0.5\n171250|0.66667\n171251|0.86111\n171252|0.22222\n171253|0.47222\n171254|0.45833\n171255|0.23611\n171256|0.23611\n171257|0.375\n171258|0.48611\n171259|0.38889\n171260|0.16667\n171261|0.55556\n171262|0.34722\n171263|0.59722\n171264|0.80556\n171265|0.72222\n171266|0.70833\n171267|0.52778\n171268|0.63889\n171269|0.44444\n171270|0.51389\n171271|0.48611\n171272|0.25\n171273|0.19444\n171274|0.30556\n171275|0.47222\n171276|0.5\n171277|0.34722\n171278|0.61111\n171279|0.625\n171280|0.59722\n171281|0.52778\n171282|0.55556\n171283|0.63889\n171284|0.72222\n171285|0.33333\n171286|0.47222\n171287|0.45833\n171288|0.5\n171289|0.40278\n171290|0.375\n171291|0.38889\n171292|0.33333\n171293|0.29167\n171294|0.43056\n171295|0.20833\n171296|0.48611\n171297|0.38889\n171298|0.29167\n171299|0.48611\n171300|0.30556\n171301|0.20833\n171302|0.20833\n171303|0.51389\n171304|0.22222\n171305|0.19444\n171306|0.31944\n171307|0.013889\n171308|0.13889\n171309|0.5\n171310|0.5\n171311|0.5\n171312|0.31944\n171313|0.45833\n171314|0.38889\n171315|0.44444\n171316|0.5\n171317|0.40278\n171318|0.38889\n171319|0.5\n171320|0.38889\n171321|0.33333\n171322|0.45833\n171323|0.29167\n171324|0.40278\n171325|0.55556\n171326|0.5\n171327|0.61111\n171328|0.36111\n171329|0.375\n171330|0.23611\n171331|0.5\n171332|0.44444\n171333|0.58333\n171334|0.5\n171335|0.47222\n171336|0.55556\n171337|0.55556\n171338|0.68056\n171339|0.56944\n171340|0.51389\n171341|0.52778\n171342|0.47222\n171343|0.61111\n171344|0.55556\n171345|0.33333\n171346|0.069444\n171347|0.20833\n171348|0.43056\n171349|0.27778\n171350|0.36111\n171351|0.18056\n171352|0.625\n171353|0.55556\n171354|0.44444\n171355|0.61111\n171356|0.68056\n171357|0.375\n171358|0.625\n171359|0.45833\n171360|0.65278\n171361|0.38889\n171362|0.38889\n171363|0.20833\n171364|0.5\n171365|0.11111\n171366|0.36111\n171367|0.36111\n171368|0.18056\n171369|0.51389\n171370|0.31944\n171371|0.45833\n171372|0.70833\n171373|0.59722\n171374|0.43056\n171375|0.51389\n171376|0.26389\n171377|0.27778\n171378|0.69444\n171379|0.75\n171380|0.31944\n171381|0.125\n171382|0.29167\n171383|0.69444\n171384|0.125\n171385|0.55556\n171386|0.38889\n171387|0.27778\n171388|0.20833\n171389|0.23611\n171390|0.055556\n171391|0.055556\n171392|0.47222\n171393|0.16667\n171394|0.23611\n171395|0.11111\n171396|0.29167\n171397|0.26389\n171398|0.59722\n171399|0.27778\n171400|0.52778\n171401|0.38889\n171402|0.29167\n171403|0.11111\n171404|0.15278\n171405|0.29167\n171406|0.11111\n171407|0.51389\n171408|0.33333\n171409|0.69444\n171410|0.26389\n171411|0.18056\n171412|0.34722\n171413|0.55556\n171414|0.43056\n171415|0.36111\n171416|0.30556\n171417|0.70833\n171418|0.55556\n171419|0.43056\n171420|0.55556\n171421|0.26389\n171422|0.25\n171423|0.33333\n171424|0.5\n171425|0.26389\n171426|0.40278\n171427|0.47222\n171428|0.5\n171429|0.44444\n171430|0.19444\n171431|0.51389\n171432|0.44444\n171433|0.23611\n171434|0.5\n171435|0.26389\n171436|0.45833\n171437|0.33333\n171438|0.30556\n171439|0.63889\n171440|0.5\n171441|0.27778\n171442|0.55556\n171443|0.52778\n171444|0.52778\n171445|0.44444\n171446|0.38889\n171447|0.73611\n171448|0.20833\n171449|0.16667\n171450|0.5\n171451|0.29167\n171452|0.41667\n171453|0.125\n171454|0.55556\n171455|0.22222\n171456|0.69444\n171457|0.38889\n171458|0.58333\n171459|0.51389\n171460|0.41667\n171461|0.34722\n171462|0.55556\n171463|0.083333\n171464|0.5\n171465|0.11111\n171466|0.13889\n171467|0.38889\n171468|0.16667\n171469|0.25\n171470|0.38889\n171471|0.34722\n171472|0.22222\n171473|0.22222\n171474|0.5\n171475|0.58333\n171476|0.25\n171477|0.48611\n171478|0.41667\n171479|0.5\n171480|0.44444\n171481|0.65278\n171482|0.33333\n171483|0.125\n171484|0.5\n171485|0.81944\n171486|0.34722\n171487|0.61111\n171488|0.66667\n171489|0.65278\n171490|0.41667\n171491|0.23611\n171492|0.33333\n171493|0.34722\n171494|0.44444\n171495|0.36111\n171496|0.30556\n171497|0.27778\n171498|0.19444\n171499|0.40278\n171500|0.22222\n171501|0.31944\n171502|0.52778\n171503|0.26389\n171504|0.23611\n171505|0.31944\n171506|0.33333\n171507|0.38889\n171508|0.55556\n171509|0.55556\n171510|0.68056\n171511|0.48611\n171512|0.5\n171513|0.56944\n171514|0.44444\n171515|0.58333\n171516|0.5\n171517|0.54167\n171518|0.45833\n171519|0.58333\n171520|0.5\n171521|0.45833\n171522|0.26389\n171523|0.25\n171524|0.40278\n171525|0.5\n171526|0.27778\n171527|0.58333\n171528|0.31944\n171529|0.65278\n171530|0.5\n171531|0.18056\n171532|0.11111\n171533|0.20833\n171534|0.36111\n171535|0.33333\n171536|0.29167\n171537|0.51389\n171538|0.27778\n171539|0.59722\n171540|0.23611\n171541|0.625\n171542|0.65278\n171543|0.44444\n171544|0.54167\n171545|0.58333\n171546|0.63889\n171547|0.44444\n171548|0.65278\n171549|0.68056\n171550|0.73611\n171551|0.80556\n171552|0.69444\n171553|0.66667\n171554|0.56944\n171555|0.48611\n171556|0.44444\n171557|0.625\n171558|0.11111\n171559|0.13889\n171560|0.13889\n171561|0.44444\n171562|0.54167\n171563|0.65278\n171564|0.77778\n171565|0.75\n171566|0.40278\n171567|0.91667\n171568|0.66667\n171569|0.65278\n171570|0.63889\n171571|0.61111\n171572|0.72222\n171573|0.76389\n171574|0.625\n171575|0.19444\n171576|0.51389\n171577|0.45833\n171578|0.5\n171579|0.59722\n171580|0.625\n171581|0.38889\n171582|0.55556\n171583|0.47222\n171584|0.5\n171585|0.48611\n171586|0.55556\n171587|0.52778\n171588|0.69444\n171589|0.61111\n171590|0.5\n171591|0.5\n171592|0.48611\n171593|0.41667\n171594|0.56944\n171595|0.63889\n171596|0.5\n171597|0.56944\n171598|0.65278\n171599|0.76389\n171600|0.25\n171601|0.20833\n171602|0.56944\n171603|0.40278\n171604|0.41667\n171605|0.375\n171606|0.36111\n171607|0.36111\n171608|0.29167\n171609|0.5\n171610|0.625\n171611|0.61111\n171612|0.51389\n171613|0.45833\n171614|0.55556\n171615|0.55556\n171616|0.43056\n171617|0.51389\n171618|0.625\n171619|0.48611\n171620|0.34722\n171621|0.16667\n171622|0.22222\n171623|0.52778\n171624|0.5\n171625|0.58333\n171626|0.48611\n171627|0.5\n171628|0.38889\n171629|0.36111\n171630|0.5\n171631|0.33333\n171632|0.5\n171633|0.36111\n171634|0.5\n171635|0.52778\n171636|0.43056\n171637|0.5\n171638|0.26389\n171639|0.51389\n171640|0.22222\n171641|0.44444\n171642|0.25\n171643|0.375\n171644|0.31944\n171645|0.34722\n171646|0.25\n171647|0.59722\n171648|0.5\n171649|0.29167\n171650|0.72222\n171651|0.47222\n171652|0.34722\n171653|0.48611\n171654|0.26389\n171655|0.5\n171656|0.66667\n171657|0.40278\n171658|0.55556\n171659|0.45833\n171660|0.70833\n171661|0.55556\n171662|0.5\n171663|0.5\n171664|0.30556\n171665|0.55556\n171666|0.51389\n171667|0.34722\n171668|0.55556\n171669|0.5\n171670|0.41667\n171671|0.23611\n171672|0.30556\n171673|0.5\n171674|0.20833\n171675|0.72222\n171676|0.34722\n171677|0.30556\n171678|0.63889\n171679|0.63889\n171680|0.56944\n171681|0.29167\n171682|0.31944\n171683|0.34722\n171684|0.30556\n171685|0.27778\n171686|0.65278\n171687|0.73611\n171688|0.65278\n171689|0.63889\n171690|0.56944\n171691|0.56944\n171692|0.375\n171693|0.47222\n171694|0.27778\n171695|0.5\n171696|0.55556\n171697|0.44444\n171698|0.45833\n171699|0.5\n171700|0.44444\n171701|0.40278\n171702|0.31944\n171703|0.54167\n171704|0.51389\n171705|0.25\n171706|0.63889\n171707|0.47222\n171708|0.22222\n171709|0.40278\n171710|0.40278\n171711|0.375\n171712|0.19444\n171713|0.26389\n171714|0.43056\n171715|0.45833\n171716|0.41667\n171717|0.44444\n171718|0.375\n171719|0.40278\n171720|0.41667\n171721|0.36111\n171722|0.27778\n171723|0.33333\n171724|0.40278\n171725|0.5\n171726|0.5\n171727|0.34722\n171728|0.41667\n171729|0.38889\n171730|0.19444\n171731|0.16667\n171732|0.5\n171733|0.13889\n171734|0.13889\n171735|0.33333\n171736|0.375\n171737|0.51389\n171738|0.59722\n171739|0.38889\n171740|0.38889\n171741|0.5\n171742|0.13889\n171743|0.5\n171744|0.48611\n171745|0.5\n171746|0.27778\n171747|0.15278\n171748|0.56944\n171749|0.58333\n171750|0.055556\n171751|0.16667\n171752|0.30556\n171753|0.36111\n171754|0.5\n171755|0.5\n171756|0.33333\n171757|0.5\n171758|0.61111\n171759|0.5\n171760|0.41667\n171761|0.69444\n171762|0.30556\n171763|0.5\n171764|0.27778\n171765|0.51389\n171766|0.5\n171767|0.55556\n171768|0.45833\n171769|0.63889\n171770|0.41667\n171771|0.40278\n171772|0.63889\n171773|0.58333\n171774|0.61111\n171775|0.29167\n171776|0.5\n171777|0.18056\n171778|0.48611\n171779|0.36111\n171780|0.5\n171781|0.41667\n171782|0.375\n171783|0.26389\n171784|0.27778\n171785|0.51389\n171786|0.45833\n171787|0.43056\n171788|0.44444\n171789|0.22222\n171790|0.52778\n171791|0.66667\n171792|0.30556\n171793|0.097222\n171794|0.5\n171795|0.375\n171796|0.18056\n171797|0.51389\n171798|0.44444\n171799|0.47222\n171800|0.69444\n171801|0.5\n171802|0.66667\n171803|0.70833\n171804|0.58333\n171805|0.375\n171806|0.29167\n171807|0.34722\n171808|0.33333\n171809|0.5\n171810|0.45833\n171811|0.75\n171812|0.5\n171813|0.36111\n171814|0.27778\n171815|0.30556\n171816|0.43056\n171817|0.34722\n171818|0.30556\n171819|0.40278\n171820|0.83333\n171821|0.30556\n171822|0.5\n171823|0.63889\n171824|0.45833\n171825|0.5\n171826|0.38889\n171827|0.51389\n171828|0.5\n171829|0.375\n171830|0.5\n171831|0.5\n171832|0.5\n171833|0.38889\n171834|0.30556\n171835|0.5\n171836|0.29167\n171837|0.5\n171838|0.55556\n171839|0.5\n171840|0.5\n171841|0.5\n171842|0.36111\n171843|0.34722\n171844|0.55556\n171845|0.59722\n171846|0.56944\n171847|0.72222\n171848|0.48611\n171849|0.5\n171850|0.5\n171851|0.45833\n171852|0.44444\n171853|0.5\n171854|0.29167\n171855|0.20833\n171856|0.27778\n171857|0.20833\n171858|0.33333\n171859|0.5\n171860|0.52778\n171861|0.51389\n171862|0.5\n171863|0.47222\n171864|0.45833\n171865|0.54167\n171866|0.5\n171867|0.41667\n171868|0.375\n171869|0.15278\n171870|0.11111\n171871|0.48611\n171872|0.30556\n171873|0.45833\n171874|0.5\n171875|0.52778\n171876|0.55556\n171877|0.5\n171878|0.31944\n171879|0.41667\n171880|0.27778\n171881|0.22222\n171882|0.22222\n171883|0.27778\n171884|0.22222\n171885|0.22222\n171886|0.38889\n171887|0.34722\n171888|0.5\n171889|0.5\n171890|0.52778\n171891|0.5\n171892|0.43056\n171893|0.5\n171894|0.58333\n171895|0.40278\n171896|0.48611\n171897|0.66667\n171898|0.5\n171899|0.23611\n171900|0.29167\n171901|0.19444\n171902|0.44444\n171903|0.54167\n171904|0.5\n171905|0.20833\n171906|0.27778\n171907|0.68056\n171908|0.68056\n171909|0.55556\n171910|0.77778\n171911|0.5\n171912|0.45833\n171913|0.51389\n171914|0.56944\n171915|0.5\n171916|0.54167\n171917|0.375\n171918|0.5\n171919|0.5\n171920|0.5\n171921|0.58333\n171922|0.58333\n171923|0.52778\n171924|0.58333\n171925|0.5\n171926|0.66667\n171927|0.5\n171928|0.63889\n171929|0.13889\n171930|0.27778\n171931|0.31944\n171932|0.5\n171933|0.5\n171934|0.59722\n171935|0.375\n171936|0.23611\n171937|0.44444\n171938|0.54167\n171939|0.58333\n171940|0.66667\n171941|0.43056\n171942|0.41667\n171943|0.5\n171944|0.5\n171945|0.38889\n171946|0.72222\n171947|0.375\n171948|0.30556\n171949|0.45833\n171950|0.5\n171951|0.30556\n171952|0.38889\n171953|0.5\n171954|0.5\n171955|0.43056\n171956|0.61111\n171957|0.5\n171958|0.34722\n171959|0.43056\n171960|0.23611\n171961|0.34722\n171962|0.55556\n171963|0.625\n171964|0.38889\n171965|0.33333\n171966|0.36111\n171967|0.59722\n171968|0.48611\n171969|0.45833\n171970|0.5\n171971|0.40278\n171972|0.34722\n171973|0.44444\n171974|0.5\n171975|0.5\n171976|0.22222\n171977|0.40278\n171978|0.43056\n171979|0.375\n171980|0.33333\n171981|0.083333\n171982|0.38889\n171983|0.52778\n171984|0.44444\n171985|0.22222\n171986|0.16667\n171987|0.45833\n171988|0.36111\n171989|0.13889\n171990|0.34722\n171991|0.22222\n171992|0.36111\n171993|0.30556\n171994|0.55556\n171995|0.54167\n171996|0.22222\n171997|0.22222\n171998|0.38889\n171999|0.27778\n172000|0.47222\n172001|0.23611\n172002|0.68056\n172003|0.45833\n172004|0.5\n172005|0.25\n172006|0.41667\n172007|0.069444\n172008|0.16667\n172009|0.29167\n172010|0.5\n172011|0.54167\n172012|0.56944\n172013|0.5\n172014|0.5\n172015|0.5\n172016|0.55556\n172017|0.58333\n172018|0.5\n172019|0.34722\n172020|0.34722\n172021|0.41667\n172022|0.5\n172023|0.5\n172024|0.22222\n172025|0.5\n172026|0.5\n172027|0.5\n172028|0.45833\n172029|0.40278\n172030|0.38889\n172031|0.61111\n172032|0.44444\n172033|0.38889\n172034|0.5\n172035|0.44444\n172036|0.375\n172037|0.16667\n172038|0.22222\n172039|0.29167\n172040|0.22222\n172041|0.44444\n172042|0.23611\n172043|0.44444\n172044|0.41667\n172045|0.5\n172046|0.44444\n172047|0.40278\n172048|0.19444\n172049|0.5\n172050|0.36111\n172051|0.44444\n172052|0.5\n172053|0.19444\n172054|0.18056\n172055|0.59722\n172056|0.47222\n172057|0.61111\n172058|0.5\n172059|0.5\n172060|0.44444\n172061|0.47222\n172062|0.44444\n172063|0.5\n172064|0.44444\n172065|0.34722\n172066|0.31944\n172067|0.125\n172068|0.29167\n172069|0.44444\n172070|0.44444\n172071|0.16667\n172072|0.31944\n172073|0.18056\n172074|0.23611\n172075|0.25\n172076|0.19444\n172077|0.43056\n172078|0.41667\n172079|0.45833\n172080|0.66667\n172081|0.63889\n172082|0.375\n172083|0.52778\n172084|0.5\n172085|0.45833\n172086|0.58333\n172087|0.41667\n172088|0.43056\n172089|0.56944\n172090|0.43056\n172091|0.58333\n172092|0.51389\n172093|0.55556\n172094|0.27778\n172095|0.5\n172096|0.5\n172097|0.375\n172098|0.36111\n172099|0.23611\n172100|0.51389\n172101|0.5\n172102|0.41667\n172103|0.54167\n172104|0.79167\n172105|0.48611\n172106|0.52778\n172107|0.72222\n172108|0.33333\n172109|0.083333\n172110|0.38889\n172111|0.34722\n172112|0.38889\n172113|0.56944\n172114|0.29167\n172115|0.45833\n172116|0.29167\n172117|0.29167\n172118|0.5\n172119|0.625\n172120|0.44444\n172121|0.41667\n172122|0.25\n172123|0.33333\n172124|0.33333\n172125|0.75\n172126|0.70833\n172127|0.66667\n172128|0.77778\n172129|0.66667\n172130|0.5\n172131|0.29167\n172132|0.52778\n172133|0.5\n172134|0.48611\n172135|0.44444\n172136|0.52778\n172137|0.29167\n172138|0.52778\n172139|0.51389\n172140|0.38889\n172141|0.59722\n172142|0.45833\n172143|0.5\n172144|0.30556\n172145|0.5\n172146|0.11111\n172147|0.13889\n172148|0.43056\n172149|0.5\n172150|0.5\n172151|0.65278\n172152|0.52778\n172153|0.30556\n172154|0.54167\n172155|0.43056\n172156|0.20833\n172157|0.20833\n172158|0.25\n172159|0.76389\n172160|0.68056\n172161|0.44444\n172162|0.43056\n172163|0.22222\n172164|0.33333\n172165|0.34722\n172166|0.26389\n172167|0.22222\n172168|0.097222\n172169|0.083333\n172170|0.027778\n172171|0.22222\n172172|0.23611\n172173|0.27778\n172174|0.38889\n172175|0.54167\n172176|0.23611\n172177|0.55556\n172178|0.54167\n172179|0.5\n172180|0.36111\n172181|0.58333\n172182|0.27778\n172183|0.55556\n172184|0.5\n172185|0.625\n172186|0.55556\n172187|0.44444\n172188|0.63889\n172189|0.5\n172190|0.18056\n172191|0.55556\n172192|0.41667\n172193|0.069444\n172194|0.54167\n172195|0.44444\n172196|0.20833\n172197|0.5\n172198|0.55556\n172199|0.41667\n172200|0.5\n172201|0.5\n172202|0.65278\n172203|0.375\n172204|0.55556\n172205|0.61111\n172206|0.18056\n172207|0.22222\n172208|0.25\n172209|0.36111\n172210|0.54167\n172211|0.56944\n172212|0.5\n172213|0.54167\n172214|0.44444\n172215|0.5\n172216|0.70833\n172217|0.44444\n172218|0.45833\n172219|0.5\n172220|0.56944\n172221|0.31944\n172222|0.52778\n172223|0.61111\n172224|0.66667\n172225|0.45833\n172226|0.5\n172227|0.65278\n172228|0.68056\n172229|0.73611\n172230|0.25\n172231|0.58333\n172232|0.40278\n172233|0.15278\n172234|0.45833\n172235|0.33333\n172236|0.73611\n172237|0.25\n172238|0.40278\n172239|0.59722\n172240|0.56944\n172241|0.65278\n172242|0.59722\n172243|0.77778\n172244|0.375\n172245|0.625\n172246|0.41667\n172247|0.51389\n172248|0.40278\n172249|0.51389\n172250|0.38889\n172251|0.45833\n172252|0.43056\n172253|0.55556\n172254|0.44444\n172255|0.45833\n172256|0.29167\n172257|0.45833\n172258|0.48611\n172259|0.27778\n172260|0.31944\n172261|0.27778\n172262|0.33333\n172263|0.16667\n172264|0.15278\n172265|0.43056\n172266|0.33333\n172267|0.5\n172268|0.38889\n172269|0.36111\n172270|0.55556\n172271|0.33333\n172272|0.15278\n172273|0.38889\n172274|0.27778\n172275|0.23611\n172276|0.20833\n172277|0.40278\n172278|0.5\n172279|0.55556\n172280|0.625\n172281|0.61111\n172282|0.44444\n172283|0.43056\n172284|0.44444\n172285|0.52778\n172286|0.31944\n172287|0.23611\n172288|0.58333\n172289|0.52778\n172290|0.125\n172291|0.15278\n172292|0.44444\n172293|0.44444\n172294|0.38889\n172295|0.34722\n172296|0.72222\n172297|0.34722\n172298|0.5\n172299|0.5\n172300|0.5\n172301|0.41667\n172302|0.5\n172303|0.5\n172304|0.5\n172305|0.43056\n172306|0.5\n172307|0.5\n172308|0.25\n172309|0.26389\n172310|0.48611\n172311|0.5\n172312|0.5\n172313|0.44444\n172314|0.29167\n172315|0.47222\n172316|0.27778\n172317|0.59722\n172318|0.33333\n172319|0.23611\n172320|0.19444\n172321|0.40278\n172322|0.44444\n172323|0.33333\n172324|0.31944\n172325|0.34722\n172326|0.72222\n172327|0.44444\n172328|0.19444\n172329|0.54167\n172330|0.44444\n172331|0.34722\n172332|0.52778\n172333|0.40278\n172334|0.55556\n172335|0.5\n172336|0.34722\n172337|0.65278\n172338|0.47222\n172339|0.11111\n172340|0.47222\n172341|0.45833\n172342|0.68056\n172343|0.40278\n172344|0.11111\n172345|0.45833\n172346|0.5\n172347|0.58333\n172348|0.5\n172349|0.55556\n172350|0.5\n172351|0.5\n172352|0.48611\n172353|0.44444\n172354|0.5\n172355|0.33333\n172356|0.41667\n172357|0.29167\n172358|0.59722\n172359|0.34722\n172360|0.58333\n172361|0.47222\n172362|0.69444\n172363|0.40278\n172364|0.5\n172365|0.48611\n172366|0.43056\n172367|0.40278\n172368|0.55556\n172369|0.68056\n172370|0.51389\n172371|0.51389\n172372|0.19444\n172373|0.5\n172374|0.5\n172375|0.43056\n172376|0.5\n172377|0.56944\n172378|0.59722\n172379|0.76389\n172380|0.47222\n172381|0.51389\n172382|0.33333\n172383|0.48611\n172384|0.44444\n172385|0.27778\n172386|0.41667\n172387|0.54167\n172388|0.5\n172389|0.56944\n172390|0.55556\n172391|0.44444\n172392|0.38889\n172393|0.48611\n172394|0.54167\n172395|0.34722\n172396|0.41667\n172397|0.47222\n172398|0.41667\n172399|0.48611\n172400|0.5\n172401|0.52778\n172402|0.5\n172403|0.56944\n172404|0.47222\n172405|0.33333\n172406|0.47222\n172407|0.26389\n172408|0.44444\n172409|0.375\n172410|0.51389\n172411|0.27778\n172412|0.27778\n172413|0.5\n172414|0.47222\n172415|0.63889\n172416|0.5\n172417|0.48611\n172418|0.73611\n172419|0.59722\n172420|0.54167\n172421|0.63889\n172422|0.56944\n172423|0.63889\n172424|0.66667\n172425|0.66667\n172426|0.44444\n172427|0.5\n172428|0.5\n172429|0.61111\n172430|0.5\n172431|0.47222\n172432|0.34722\n172433|0.34722\n172434|0.29167\n172435|0.125\n172436|0.22222\n172437|0.27778\n172438|0.29167\n172439|0.51389\n172440|0.5\n172441|0.58333\n172442|0.55556\n172443|0.68056\n172444|0.34722\n172445|0.36111\n172446|0.61111\n172447|0.58333\n172448|0.5\n172449|0.5\n172450|0.38889\n172451|0.5\n172452|0.5\n172453|0.45833\n172454|0.63889\n172455|0.5\n172456|0.63889\n172457|0.43056\n172458|0.44444\n172459|0.26389\n172460|0.56944\n172461|0.36111\n172462|0.45833\n172463|0.44444\n172464|0.625\n172465|0.48611\n172466|0.59722\n172467|0.5\n172468|0.5\n172469|0.40278\n172470|0.5\n172471|0.45833\n172472|0.40278\n172473|0.38889\n172474|0.44444\n172475|0.40278\n172476|0.51389\n172477|0.5\n172478|0.40278\n172479|0.5\n172480|0.5\n172481|0.47222\n172482|0.34722\n172483|0.58333\n172484|0.625\n172485|0.16667\n172486|0.22222\n172487|0.5\n172488|0.5\n172489|0.29167\n172490|0.26389\n172491|0.48611\n172492|0.33333\n172493|0.38889\n172494|0.40278\n172495|0.11111\n172496|0.15278\n172497|0.375\n172498|0.45833\n172499|0.43056\n172500|0.41667\n172501|0.15278\n172502|0.5\n172503|0.31944\n172504|0.29167\n172505|0.19444\n172506|0.5\n172507|0.33333\n172508|0.45833\n172509|0.31944\n172510|0.5\n172511|0.26389\n172512|0.29167\n172513|0.44444\n172514|0.45833\n172515|0.58333\n172516|0.54167\n172517|0.52778\n172518|0.27778\n172519|0.26389\n172520|0.29167\n172521|0.27778\n172522|0.66667\n172523|0.30556\n172524|0.27778\n172525|0.25\n172526|0.65278\n172527|0.5\n172528|0.19444\n172529|0.30556\n172530|0.5\n172531|0.51389\n172532|0.66667\n172533|0.44444\n172534|0.625\n172535|0.61111\n172536|0.20833\n172537|0.59722\n172538|0.76389\n172539|0.70833\n172540|0.80556\n172541|0.83333\n172542|0.68056\n172543|0.47222\n172544|0.68056\n172545|0.5\n172546|0.41667\n172547|0.5\n172548|0.48611\n172549|0.5\n172550|0.18056\n172551|0.40278\n172552|0.5\n172553|0.58333\n172554|0.19444\n172555|0.77778\n172556|0.56944\n172557|0.33333\n172558|0.5\n172559|0.5\n172560|0.5\n172561|0.56944\n172562|0.40278\n172563|0.41667\n172564|0.48611\n172565|0.40278\n172566|0.61111\n172567|0.41667\n172568|0.33333\n172569|0.52778\n172570|0.18056\n172571|0.16667\n172572|0.77778\n172573|0.5\n172574|0.125\n172575|0.5\n172576|0.5\n172577|0.44444\n172578|0.48611\n172579|0.29167\n172580|0.31944\n172581|0.80556\n172582|0.65278\n172583|0.5\n172584|0.5\n172585|0.34722\n172586|0.27778\n172587|0.66667\n172588|0.83333\n172589|0.61111\n172590|0.47222\n172591|0.5\n172592|0.45833\n172593|0.5\n172594|0.43056\n172595|0.52778\n172596|0.13889\n172597|0.33333\n172598|0.18056\n172599|0.375\n172600|0.22222\n172601|0.31944\n172602|0.41667\n172603|0.44444\n172604|0.45833\n172605|0.5\n172606|0.5\n172607|0.34722\n172608|0.56944\n172609|0.43056\n172610|0.44444\n172611|0.44444\n172612|0.40278\n172613|0.125\n172614|0.43056\n172615|0.5\n172616|0.375\n172617|0.41667\n172618|0.5\n172619|0.56944\n172620|0.5\n172621|0.52778\n172622|0.48611\n172623|0.5\n172624|0.5\n172625|0.40278\n172626|0.52778\n172627|0.5\n172628|0.26389\n172629|0.375\n172630|0.5\n172631|0.45833\n172632|0.56944\n172633|0.48611\n172634|0.30556\n172635|0.47222\n172636|0.18056\n172637|0.33333\n172638|0.38889\n172639|0.43056\n172640|0.45833\n172641|0.54167\n172642|0.59722\n172643|0.20833\n172644|0.43056\n172645|0.29167\n172646|0.44444\n172647|0.5\n172648|0.5\n172649|0.51389\n172650|0.25\n172651|0.55556\n172652|0.38889\n172653|0.59722\n172654|0.44444\n172655|0.5\n172656|0.43056\n172657|0.33333\n172658|0.29167\n172659|0.125\n172660|0.5\n172661|0.5\n172662|0.31944\n172663|0.34722\n172664|0.31944\n172665|0.375\n172666|0.34722\n172667|0.26389\n172668|0.23611\n172669|0.30556\n172670|0.26389\n172671|0.18056\n172672|0.097222\n172673|0.22222\n172674|0.41667\n172675|0.22222\n172676|0.30556\n172677|0.38889\n172678|0.68056\n172679|0.5\n172680|0.44444\n172681|0.375\n172682|0.51389\n172683|0.36111\n172684|0.5\n172685|0.48611\n172686|0.54167\n172687|0.48611\n172688|0.56944\n172689|0.5\n172690|0.48611\n172691|0.48611\n172692|0.5\n172693|0.52778\n172694|0.5\n172695|0.5\n172696|0.36111\n172697|0.31944\n172698|0.5\n172699|0.68056\n172700|0.52778\n172701|0.58333\n172702|0.51389\n172703|0.47222\n172704|0.65278\n172705|0.5\n172706|0.43056\n172707|0.41667\n172708|0.5\n172709|0.61111\n172710|0.45833\n172711|0.44444\n172712|0.5\n172713|0.26389\n172714|0.5\n172715|0.36111\n172716|0.31944\n172717|0.31944\n172718|0.43056\n172719|0.51389\n172720|0.27778\n172721|0.58333\n172722|0.44444\n172723|0.40278\n172724|0.22222\n172725|0.43056\n172726|0.43056\n172727|0.48611\n172728|0.47222\n172729|0.33333\n172730|0.59722\n172731|0.5\n172732|0.43056\n172733|0.44444\n172734|0.43056\n172735|0.5\n172736|0.33333\n172737|0.47222\n172738|0.33333\n172739|0.51389\n172740|0.51389\n172741|0.44444\n172742|0.38889\n172743|0.48611\n172744|0.66667\n172745|0.58333\n172746|0.55556\n172747|0.48611\n172748|0.54167\n172749|0.34722\n172750|0.48611\n172751|0.75\n172752|0.47222\n172753|0.51389\n172754|0.52778\n172755|0.29167\n172756|0.40278\n172757|0.5\n172758|0.51389\n172759|0.68056\n172760|0.34722\n172761|0.47222\n172762|0.43056\n172763|0.375\n172764|0.5\n172765|0.5\n172766|0.41667\n172767|0.51389\n172768|0.36111\n172769|0.5\n172770|0.43056\n172771|0.25\n172772|0.27778\n172773|0.52778\n172774|0.40278\n172775|0.5\n172776|0.5\n172777|0.44444\n172778|0.5\n172779|0.5\n172780|0.34722\n172781|0.083333\n172782|0.5\n172783|0.44444\n172784|0.77778\n172785|0.5\n172786|0.44444\n172787|0.5\n172788|0.44444\n172789|0.31944\n172790|0.47222\n172791|0.5\n172792|0.47222\n172793|0.5\n172794|0.5\n172795|0.5\n172796|0.5\n172797|0.5\n172798|0.58333\n172799|0.29167\n172800|0.52778\n172801|0.40278\n172802|0.52778\n172803|0.52778\n172804|0.55556\n172805|0.51389\n172806|0.625\n172807|0.51389\n172808|0.45833\n172809|0.48611\n172810|0.25\n172811|0.38889\n172812|0.5\n172813|0.51389\n172814|0.38889\n172815|0.52778\n172816|0.5\n172817|0.40278\n172818|0.51389\n172819|0.44444\n172820|0.43056\n172821|0.45833\n172822|0.58333\n172823|0.27778\n172824|0.36111\n172825|0.45833\n172826|0.41667\n172827|0.11111\n172828|0.34722\n172829|0.65278\n172830|0.27778\n172831|0.33333\n172832|0.375\n172833|0.59722\n172834|0.33333\n172835|0.5\n172836|0.33333\n172837|0.47222\n172838|0.16667\n172839|0.40278\n172840|0.5\n172841|0.51389\n172842|0.43056\n172843|0.19444\n172844|0.45833\n172845|0.36111\n172846|0.63889\n172847|0.40278\n172848|0.20833\n172849|0.26389\n172850|0.55556\n172851|0.5\n172852|0.5\n172853|0.47222\n172854|0.51389\n172855|0.5\n172856|0.55556\n172857|0.5\n172858|0.20833\n172859|0.30556\n172860|0.22222\n172861|0.77778\n172862|0.30556\n172863|0.38889\n172864|0.47222\n172865|0.20833\n172866|0.22222\n172867|0.5\n172868|0.5\n172869|0.45833\n172870|0.27778\n172871|0.44444\n172872|0.38889\n172873|0.43056\n172874|0.5\n172875|0.5\n172876|0.41667\n172877|0.18056\n172878|0.5\n172879|0.5\n172880|0.375\n172881|0.52778\n172882|0.5\n172883|0.25\n172884|0.23611\n172885|0.45833\n172886|0.29167\n172887|0.56944\n172888|0.33333\n172889|0.19444\n172890|0.18056\n172891|0.27778\n172892|0.375\n172893|0.5\n172894|0.11111\n172895|0.055556\n172896|0.44444\n172897|0.26389\n172898|0.125\n172899|0.125\n172900|0.27778\n172901|0.43056\n172902|0.45833\n172903|0.44444\n172904|0.5\n172905|0.5\n172906|0.41667\n172907|0.54167\n172908|0.5\n172909|0.54167\n172910|0.73611\n172911|0.29167\n172912|0.45833\n172913|0.31944\n172914|0.33333\n172915|0.22222\n172916|0.26389\n172917|0.22222\n172918|0.29167\n172919|0.31944\n172920|0.69444\n172921|0.83333\n172922|0.5\n172923|0.58333\n172924|0.25\n172925|0.52778\n172926|0.625\n172927|0.38889\n172928|0.77778\n172929|0.375\n172930|0.63889\n172931|0.33333\n172932|0.44444\n172933|0.23611\n172934|0.19444\n172935|0.5\n172936|0.22222\n172937|0.5\n172938|0.5\n172939|0.5\n172940|0.40278\n172941|0.43056\n172942|0.5\n172943|0.59722\n172944|0.48611\n172945|0.33333\n172946|0.29167\n172947|0.20833\n172948|0.41667\n172949|0.38889\n172950|0.34722\n172951|0.45833\n172952|0.5\n172953|0.41667\n172954|0.5\n172955|0.375\n172956|0.36111\n172957|0.45833\n172958|0.29167\n172959|0.38889\n172960|0.40278\n172961|0.44444\n172962|0.36111\n172963|0.40278\n172964|0.375\n172965|0.51389\n172966|0.25\n172967|0.16667\n172968|0.29167\n172969|0.48611\n172970|0.44444\n172971|0.43056\n172972|0.41667\n172973|0.34722\n172974|0.45833\n172975|0.41667\n172976|0.29167\n172977|0.22222\n172978|0.5\n172979|0.38889\n172980|0.27778\n172981|0.18056\n172982|0.25\n172983|0.27778\n172984|0.43056\n172985|0.375\n172986|0.33333\n172987|0.5\n172988|0.18056\n172989|0.40278\n172990|0.51389\n172991|0.63889\n172992|0.38889\n172993|0.66667\n172994|0.23611\n172995|0.34722\n172996|0.61111\n172997|0.47222\n172998|0.19444\n172999|0.20833\n173000|0.20833\n173001|0.22222\n173002|0.33333\n173003|0.48611\n173004|0.40278\n173005|0.23611\n173006|0.26389\n173007|0.16667\n173008|0.22222\n173009|0.5\n173010|0.44444\n173011|0.55556\n173012|0.375\n173013|0.5\n173014|0.33333\n173015|0.63889\n173016|0.26389\n173017|0.36111\n173018|0.375\n173019|0.625\n173020|0.34722\n173021|0.52778\n173022|0.375\n173023|0.30556\n173024|0.27778\n173025|0.38889\n173026|0.44444\n173027|0.19444\n173028|0.40278\n173029|0.52778\n173030|0.26389\n173031|0.29167\n173032|0.25\n173033|0.48611\n173034|0.43056\n173035|0.59722\n173036|0.48611\n173037|0.29167\n173038|0.47222\n173039|0.68056\n173040|0.30556\n173041|0.56944\n173042|0.52778\n173043|0.5\n173044|0.25\n173045|0.63889\n173046|0.44444\n173047|0.43056\n173048|0.5\n173049|0.48611\n173050|0.22222\n173051|0.19444\n173052|0.43056\n173053|0.51389\n173054|0.48611\n173055|0.45833\n173056|0.30556\n173057|0.86111\n173058|0.63889\n173059|0.73611\n173060|0.36111\n173061|0.30556\n173062|0.30556\n173063|0.22222\n173064|0.22222\n173065|0.20833\n173066|0.18056\n173067|0.59722\n173068|0.41667\n173069|0.15278\n173070|0.45833\n173071|0.61111\n173072|0.47222\n173073|0.125\n173074|0.30556\n173075|0.31944\n173076|0.66667\n173077|0.22222\n173078|0.45833\n173079|0.5\n173080|0.40278\n173081|0.43056\n173082|0.33333\n173083|0.125\n173084|0.22222\n173085|0.25\n173086|0.23611\n173087|0.29167\n173088|0.19444\n173089|0.069444\n173090|0.25\n173091|0.51389\n173092|0.33333\n173093|0.43056\n173094|0.44444\n173095|0.41667\n173096|0.40278\n173097|0.16667\n173098|0.33333\n173099|0.43056\n173100|0.23611\n173101|0.51389\n173102|0.11111\n173103|0.375\n173104|0.29167\n173105|0.40278\n173106|0.54167\n173107|0.43056\n173108|0.51389\n173109|0.43056\n173110|0.59722\n173111|0.51389\n173112|0.29167\n173113|0.27778\n173114|0.43056\n173115|0.70833\n173116|0.25\n173117|0.43056\n173118|0.5\n173119|0.375\n173120|0.80556\n173121|0.43056\n173122|0.48611\n173123|0.22222\n173124|0.41667\n173125|0.47222\n173126|0.66667\n173127|0.20833\n173128|0.11111\n173129|0.44444\n173130|0.44444\n173131|0.25\n173132|0.33333\n173133|0.63889\n173134|0.61111\n173135|0.38889\n173136|0.38889\n173137|0.44444\n173138|0.31944\n173139|0.25\n173140|0.33333\n173141|0.43056\n173142|0.375\n173143|0.36111\n173144|0.31944\n173145|0.45833\n173146|0.43056\n173147|0.33333\n173148|0.38889\n173149|0.27778\n173150|0.41667\n173151|0.56944\n173152|0.5\n173153|0.625\n173154|0.44444\n173155|0.38889\n173156|0\n173157|0.5\n173158|0.55556\n173159|0.38889\n173160|0.29167\n173161|0.36111\n173162|0.5\n173163|0.33333\n173164|0.083333\n173165|0.5\n173166|0.58333\n173167|0.51389\n173168|0.70833\n173169|0.65278\n173170|0.48611\n173171|0.5\n173172|0.33333\n173173|0.36111\n173174|0.44444\n173175|0.55556\n173176|0.36111\n173177|0.19444\n173178|0.26389\n173179|0.20833\n173180|0.5\n173181|0.34722\n173182|0.34722\n173183|0.54167\n173184|0.25\n173185|0.5\n173186|0.5\n173187|0.27778\n173188|0.34722\n173189|0.47222\n173190|0.38889\n173191|0.38889\n173192|0.54167\n173193|0.43056\n173194|0.30556\n173195|0.5\n173196|0.51389\n173197|0.72222\n173198|0.20833\n173199|0.34722\n173200|0.5\n173201|0.33333\n173202|0.375\n173203|0.13889\n173204|0.875\n173205|0.25\n173206|0.45833\n173207|0.44444\n173208|0.31944\n173209|0.22222\n173210|0.18056\n173211|0.5\n173212|0.29167\n173213|0.16667\n173214|0.375\n173215|0.51389\n173216|0.33333\n173217|0.27778\n173218|0.75\n173219|0.38889\n173220|0.76389\n173221|0.25\n173222|0.36111\n173223|0.097222\n173224|0.56944\n173225|0.26389\n173226|0.26389\n173227|0.56944\n173228|0.375\n173229|0.34722\n173230|0.33333\n173231|0.55556\n173232|0.38889\n173233|0.43056\n173234|0.61111\n173235|0.41667\n173236|0.26389\n173237|0.45833\n173238|0.31944\n173239|0.52778\n173240|0.22222\n173241|0.25\n173242|0.36111\n173243|0.44444\n173244|0.33333\n173245|0.16667\n173246|0.40278\n173247|0.30556\n173248|0.47222\n173249|0.34722\n173250|0.55556\n173251|0.26389\n173252|0.44444\n173253|0.34722\n173254|0.40278\n173255|0.58333\n173256|0.31944\n173257|0.11111\n173258|0.51389\n173259|0.25\n173260|0.15278\n173261|0.55556\n173262|0.069444\n173263|0.45833\n173264|0.23611\n173265|0.26389\n173266|0.26389\n173267|0.5\n173268|0.23611\n173269|0.52778\n173270|0.22222\n173271|0.5\n173272|0.44444\n173273|0.5\n173274|0.5\n173275|0.65278\n173276|0.22222\n173277|0.31944\n173278|0.33333\n173279|0.30556\n173280|0.43056\n173281|0.70833\n173282|0.5\n173283|0.26389\n173284|0.375\n173285|0.5\n173286|0.36111\n173287|0.41667\n173288|0.61111\n173289|0.5\n173290|0.41667\n173291|0.59722\n173292|0.61111\n173293|0.44444\n173294|0.54167\n173295|0.375\n173296|0.44444\n173297|0.5\n173298|0.22222\n173299|0.097222\n173300|0.5\n173301|0.5\n173302|0.36111\n173303|0.48611\n173304|0.52778\n173305|0.52778\n173306|0.52778\n173307|0.65278\n173308|0.5\n173309|0.47222\n173310|0.58333\n173311|0.5\n173312|0.5\n173313|0.52778\n173314|0.44444\n173315|0.5\n173316|0.5\n173317|0.45833\n173318|0.5\n173319|0.5\n173320|0.52778\n173321|0.51389\n173322|0.52778\n173323|0.5\n173324|0.5\n173325|0.43056\n173326|0.5\n173327|0.5\n173328|0.5\n173329|0.5\n173330|0.77778\n173331|0.5\n173332|0.48611\n173333|0.23611\n173334|0.5\n173335|0.5\n173336|0.25\n173337|0.43056\n173338|0.51389\n173339|0.5\n173340|0.56944\n173341|0.54167\n173342|0.5\n173343|0.54167\n173344|0.5\n173345|0.5\n173346|0.41667\n173347|0.30556\n173348|0.52778\n173349|0.5\n173350|0.625\n173351|0.5\n173352|0.58333\n173353|0.48611\n173354|0.5\n173355|0.52778\n173356|0.58333\n173357|0.5\n173358|0.40278\n173359|0.75\n173360|0.56944\n173361|0.33333\n173362|0.51389\n173363|0.56944\n173364|0.5\n173365|0.20833\n173366|0.5\n173367|0.5\n173368|0.5\n173369|0.5\n173370|0.5\n173371|0.54167\n173372|0.27778\n173373|0.5\n173374|0.69444\n173375|0.5\n173376|0.47222\n173377|0.5\n173378|0.5\n173379|0.19444\n173380|0.38889\n173381|0.5\n173382|0.5\n173383|0.45833\n173384|0.5\n173385|0.5\n173386|0.5\n173387|0.5\n173388|0.43056\n173389|0.5\n173390|0.625\n173391|0.5\n173392|0.5\n173393|0.54167\n173394|0.5\n173395|0.5\n173396|0.5\n173397|0.54167\n173398|0.5\n173399|0.5\n173400|0.5\n173401|0.5\n173402|0.38889\n173403|0.5\n173404|0.5\n173405|0.48611\n173406|0.48611\n173407|0.55556\n173408|0.5\n173409|0.51389\n173410|0.58333\n173411|0.5\n173412|0.44444\n173413|0.5\n173414|0.5\n173415|0.48611\n173416|0.51389\n173417|0.48611\n173418|0.22222\n173419|0.44444\n173420|0.625\n173421|0.5\n173422|0.52778\n173423|0.68056\n173424|0.47222\n173425|0.25\n173426|0.61111\n173427|0.47222\n173428|0.51389\n173429|0.5\n173430|0.5\n173431|0.5\n173432|0.5\n173433|0.48611\n173434|0.52778\n173435|0.51389\n173436|0.5\n173437|0.5\n173438|0.61111\n173439|0.5\n173440|0.55556\n173441|0.51389\n173442|0.52778\n173443|0.5\n173444|0.44444\n173445|0.34722\n173446|0.375\n173447|0.51389\n173448|0.5\n173449|0.56944\n173450|0.5\n173451|0.44444\n173452|0.38889\n173453|0.33333\n173454|0.41667\n173455|0.23611\n173456|0.54167\n173457|0.38889\n173458|0.30556\n173459|0.5\n173460|0.47222\n173461|0.44444\n173462|0.41667\n173463|0.5\n173464|0.56944\n173465|0.5\n173466|0.5\n173467|0.27778\n173468|0.11111\n173469|0.72222\n173470|0.54167\n173471|0.36111\n173472|0.5\n173473|0.48611\n173474|0.59722\n173475|0.5\n173476|0.19444\n173477|0.22222\n173478|0.5\n173479|0.55556\n173480|0.73611\n173481|0.22222\n173482|0.30556\n173483|0.56944\n173484|0.5\n173485|0.41667\n173486|0.5\n173487|0.5\n173488|0.5\n173489|0.5\n173490|0.22222\n173491|0.5\n173492|0.43056\n173493|0.45833\n173494|0.41667\n173495|0.36111\n173496|0.30556\n173497|0.25\n173498|0.59722\n173499|0.083333\n173500|0.72222\n173501|0.40278\n173502|0.20833\n173503|0.43056\n173504|0.59722\n173505|0.5\n173506|0.45833\n173507|0.5\n173508|0.51389\n173509|0.34722\n173510|0.27778\n173511|0.18056\n173512|0.20833\n173513|0.19444\n173514|0.55556\n173515|0.48611\n173516|0.36111\n173517|0.5\n173518|0.27778\n173519|0.48611\n173520|0.34722\n173521|0.56944\n173522|0.44444\n173523|0.5\n173524|0.5\n173525|0.36111\n173526|0.56944\n173527|0.80556\n173528|0.5\n173529|0.70833\n173530|0.75\n173531|0.77778\n173532|0.80556\n173533|0.94444\n173534|0.61111\n173535|0.30556\n173536|0.51389\n173537|0.52778\n173538|0.58333\n173539|0.61111\n173540|0.55556\n173541|0.36111\n173542|0.5\n173543|0.51389\n173544|0.34722\n173545|0.13889\n173546|0.5\n173547|0.44444\n173548|0.5\n173549|0.36111\n173550|0.40278\n173551|0.58333\n173552|0.41667\n173553|0.58333\n173554|0.56944\n173555|0.26389\n173556|0.5\n173557|0.5\n173558|0.5\n173559|0.5\n173560|0.5\n173561|0.5\n173562|0.5\n173563|0.63889\n173564|0.5\n173565|0.5\n173566|0.625\n173567|0.5\n173568|0.45833\n173569|0.45833\n173570|0.34722\n173571|0.43056\n173572|0.29167\n173573|0.18056\n173574|0.5\n173575|0.625\n173576|0.31944\n173577|0.41667\n173578|0.65278\n173579|0.55556\n173580|0.58333\n173581|0.61111\n173582|0.68056\n173583|0.27778\n173584|0.30556\n173585|0.58333\n173586|0.27778\n173587|0.26389\n173588|0.5\n173589|0.34722\n173590|0.55556\n173591|0.5\n173592|0.125\n173593|0.41667\n173594|0.26389\n173595|0.19444\n173596|0.63889\n173597|0.65278\n173598|0.59722\n173599|0.31944\n173600|0.5\n173601|0.31944\n173602|0.47222\n173603|0.5\n173604|0.5\n173605|0.5\n173606|0.5\n173607|0.5\n173608|0.5\n173609|0.5\n173610|0.52778\n173611|0.29167\n173612|0.22222\n173613|0.375\n173614|0.5\n173615|0.5\n173616|0.70833\n173617|0.43056\n173618|0.19444\n173619|0.52778\n173620|0.5\n173621|0.25\n173622|0.25\n173623|0.23611\n173624|0.38889\n173625|0.11111\n173626|0.55556\n173627|0.5\n173628|0.58333\n173629|0.22222\n173630|0.31944\n173631|0.5\n173632|0.65278\n173633|0.5\n173634|0.55556\n173635|0.72222\n173636|0.58333\n173637|0.61111\n173638|0.52778\n173639|0.41667\n173640|0.5\n173641|0.45833\n173642|0.45833\n173643|0.5\n173644|0.31944\n173645|0.45833\n173646|0.20833\n173647|0.5\n173648|0.51389\n173649|0.5\n173650|0.69444\n173651|0.22222\n173652|0.41667\n173653|0.5\n173654|0.52778\n173655|0.31944\n173656|0.44444\n173657|0.375\n173658|0.23611\n173659|0.59722\n173660|0.34722\n173661|0.5\n173662|0.44444\n173663|0.48611\n173664|0.40278\n173665|0.45833\n173666|0.44444\n173667|0.51389\n173668|0.5\n173669|0.5\n173670|0.33333\n173671|0.45833\n173672|0.66667\n173673|0.34722\n173674|0.5\n173675|0.5\n173676|0.5\n173677|0.5\n173678|0.5\n173679|0.5\n173680|0.66667\n173681|0.43056\n173682|0.31944\n173683|0.19444\n173684|0.33333\n173685|0.54167\n173686|0.33333\n173687|0.375\n173688|0.52778\n173689|0.23611\n173690|0.48611\n173691|0.48611\n173692|0.61111\n173693|0.5\n173694|0.52778\n173695|0.47222\n173696|0.5\n173697|0.5\n173698|0.26389\n173699|0.5\n173700|0.51389\n173701|0.5\n173702|0.43056\n173703|0.34722\n173704|0.48611\n173705|0.72222\n173706|0.55556\n173707|0.40278\n173708|0.30556\n173709|0.31944\n173710|0.47222\n173711|0.5\n173712|0.51389\n173713|0.59722\n173714|0.31944\n173715|0.44444\n173716|0.45833\n173717|0.43056\n173718|0.43056\n173719|0.36111\n173720|0.55556\n173721|0.65278\n173722|0.55556\n173723|0.18056\n173724|0.54167\n173725|0.45833\n173726|0.30556\n173727|0.44444\n173728|0.45833\n173729|0.55556\n173730|0.52778\n173731|0.51389\n173732|0.31944\n173733|0.41667\n173734|0.5\n173735|0.5\n173736|0.33333\n173737|0.625\n173738|0.31944\n173739|0.44444\n173740|0.5\n173741|0.22222\n173742|0.5\n173743|0.5\n173744|0.44444\n173745|0.45833\n173746|0.29167\n173747|0.48611\n173748|0.5\n173749|0.5\n173750|0.41667\n173751|0.48611\n173752|0.44444\n173753|0.5\n173754|0.375\n173755|0.5\n173756|0.375\n173757|0.5\n173758|0.45833\n173759|0.51389\n173760|0.55556\n173761|0.625\n173762|0.27778\n173763|0.5\n173764|0.63889\n173765|0.43056\n173766|0.40278\n173767|0.31944\n173768|0.26389\n173769|0.5\n173770|0.31944\n173771|0.34722\n173772|0.33333\n173773|0.23611\n173774|0.59722\n173775|0.55556\n173776|0.44444\n173777|0.69444\n173778|0.29167\n173779|0.44444\n173780|0.44444\n173781|0.52778\n173782|0.59722\n173783|0.5\n173784|0.44444\n173785|0.56944\n173786|0.5\n173787|0.38889\n173788|0.375\n173789|0.5\n173790|0.30556\n173791|0.45833\n173792|0.52778\n173793|0.55556\n173794|0.54167\n173795|0.55556\n173796|0.44444\n173797|0.13889\n173798|0.22222\n173799|0.083333\n173800|0.55556\n173801|0.5\n173802|0.38889\n173803|0.5\n173804|0.5\n173805|0.5\n173806|0.375\n173807|0.47222\n173808|0.77778\n173809|0.54167\n173810|0.51389\n173811|0.625\n173812|0.61111\n173813|0.48611\n173814|0.47222\n173815|0.68056\n173816|0.52778\n173817|0.5\n173818|0.56944\n173819|0.23611\n173820|0.20833\n173821|0.5\n173822|0.56944\n173823|0.5\n173824|0.40278\n173825|0.44444\n173826|0.56944\n173827|0.61111\n173828|0.61111\n173829|0.75\n173830|0.80556\n173831|0.31944\n173832|0.70833\n173833|0.5\n173834|0.375\n173835|0.38889\n173836|0.45833\n173837|0.18056\n173838|0.55556\n173839|0.44444\n173840|0.61111\n173841|0.43056\n173842|0.52778\n173843|0.5\n173844|0.44444\n173845|0.56944\n173846|0.59722\n173847|0.34722\n173848|0.38889\n173849|0.33333\n173850|0.45833\n173851|0.40278\n173852|0.5\n173853|0.44444\n173854|0.47222\n173855|0.54167\n173856|0.45833\n173857|0.56944\n173858|0.15278\n173859|0.65278\n173860|0.5\n173861|0.47222\n173862|0.47222\n173863|0.41667\n173864|0.5\n173865|0.51389\n173866|0.27778\n173867|0.29167\n173868|0.38889\n173869|0.29167\n173870|0.5\n173871|0.5\n173872|0.5\n173873|0.51389\n173874|0.055556\n173875|0.45833\n173876|0.30556\n173877|0.44444\n173878|0.52778\n173879|0.36111\n173880|0.44444\n173881|0.48611\n173882|0.29167\n173883|0.47222\n173884|0.52778\n173885|0.5\n173886|0.41667\n173887|0.51389\n173888|0.5\n173889|0.25\n173890|0.47222\n173891|0.11111\n173892|0.5\n173893|0.5\n173894|0.5\n173895|0.5\n173896|0.20833\n173897|0.54167\n173898|0.33333\n173899|0.19444\n173900|0.40278\n173901|0.5\n173902|0.33333\n173903|0.61111\n173904|0.11111\n173905|0.31944\n173906|0.22222\n173907|0.43056\n173908|0.25\n173909|0.61111\n173910|0.055556\n173911|0.44444\n173912|0.68056\n173913|0.31944\n173914|0.23611\n173915|0.38889\n173916|0.16667\n173917|0.22222\n173918|0.59722\n173919|0.61111\n173920|0.20833\n173921|0.055556\n173922|0.43056\n173923|0.19444\n173924|0.25\n173925|0.26389\n173926|0.26389\n173927|0.43056\n173928|0.29167\n173929|0.44444\n173930|0.31944\n173931|0.19444\n173932|0.5\n173933|0.19444\n173934|0.5\n173935|0.31944\n173936|0.15278\n173937|0.55556\n173938|0.5\n173939|0.38889\n173940|0.33333\n173941|0.18056\n173942|0.44444\n173943|0.33333\n173944|0.34722\n173945|0.5\n173946|0.5\n173947|0.33333\n173948|0.30556\n173949|0.36111\n173950|0.5\n173951|0.5\n173952|0.44444\n173953|0.097222\n173954|0.5\n173955|0.44444\n173956|0.33333\n173957|0.48611\n173958|0.23611\n173959|0.61111\n173960|0.5\n173961|0.5\n173962|0.45833\n173963|0.66667\n173964|0.30556\n173965|0.5\n173966|0.55556\n173967|0.27778\n173968|0.5\n173969|0.54167\n173970|0.56944\n173971|0.23611\n173972|0.48611\n173973|0.5\n173974|0.5\n173975|0.5\n173976|0.5\n173977|0.27778\n173978|0.65278\n173979|0.5\n173980|0.5\n173981|0.5\n173982|0.51389\n173983|0.54167\n173984|0.33333\n173985|0.55556\n173986|0.5\n173987|0.25\n173988|0.45833\n173989|0.5\n173990|0.48611\n173991|0.33333\n173992|0.30556\n173993|0.41667\n173994|0.51389\n173995|0.59722\n173996|0.54167\n173997|0.44444\n173998|0.5\n173999|0.51389\n174000|0.51389\n174001|0.23611\n174002|0.5\n174003|0.44444\n174004|0.38889\n174005|0.59722\n174006|0.55556\n174007|0.66667\n174008|0.52778\n174009|0.61111\n174010|0.44444\n174011|0.61111\n174012|0.41667\n174013|0.63889\n174014|0.11111\n174015|0.81944\n174016|0.95833\n174017|0.41667\n174018|0.5\n174019|0.47222\n174020|0.44444\n174021|0.34722\n174022|0.44444\n174023|0.5\n174024|0.38889\n174025|0.44444\n174026|0.5\n174027|0.5\n174028|0.40278\n174029|0.5\n174030|0.40278\n174031|0.48611\n174032|0.22222\n174033|0.5\n174034|0.5\n174035|0.26389\n174036|0.5\n174037|0.44444\n174038|0.58333\n174039|0.41667\n174040|0.68056\n174041|0.5\n174042|0.55556\n174043|0.45833\n174044|0.5\n174045|0.55556\n174046|0.5\n174047|0.34722\n174048|0.33333\n174049|0.47222\n174050|0.26389\n174051|0.41667\n174052|0.54167\n174053|0.36111\n174054|0.5\n174055|0.5\n174056|0.47222\n174057|0.5\n174058|0.55556\n174059|0.44444\n174060|0.5\n174061|0.5\n174062|0.31944\n174063|0.38889\n174064|0.22222\n174065|0.48611\n174066|0.40278\n174067|0.43056\n174068|0.51389\n174069|0.43056\n174070|0.625\n174071|0.25\n174072|0.5\n174073|0.56944\n174074|0.38889\n174075|0.56944\n174076|0.5\n174077|0.51389\n174078|0.52778\n174079|0.38889\n174080|0.52778\n174081|0.52778\n174082|0.44444\n174083|0.41667\n174084|0.5\n174085|0.61111\n174086|0.66667\n174087|0.29167\n174088|0.5\n174089|0.5\n174090|0.5\n174091|0.52778\n174092|0.58333\n174093|0.5\n174094|0.33333\n174095|0.45833\n174096|0.59722\n174097|0.5\n174098|0.48611\n174099|0.61111\n174100|0.5\n174101|0.625\n174102|0.61111\n174103|0.69444\n174104|0.38889\n174105|0.52778\n174106|0.75\n174107|0.44444\n174108|0.27778\n174109|0.44444\n174110|0.48611\n174111|0.44444\n174112|0.5\n174113|0.45833\n174114|0.47222\n174115|0.72222\n174116|0.41667\n174117|0.45833\n174118|0.30556\n174119|0.27778\n174120|0.52778\n174121|0.59722\n174122|0.5\n174123|0.43056\n174124|0.61111\n174125|0.27778\n174126|0.51389\n174127|0.5\n174128|0.48611\n174129|0.54167\n174130|0.34722\n174131|0.5\n174132|0.51389\n174133|0.52778\n174134|0.54167\n174135|0.5\n174136|0.83333\n174137|0.5\n174138|0.61111\n174139|0.45833\n174140|0.47222\n174141|0.51389\n174142|0.23611\n174143|0.33333\n174144|0.56944\n174145|0.5\n174146|0.29167\n174147|0.5\n174148|0.625\n174149|0.33333\n174150|0.31944\n174151|0.36111\n174152|0.54167\n174153|0.59722\n174154|0.58333\n174155|0.61111\n174156|0.66667\n174157|0.33333\n174158|0.29167\n174159|0.5\n174160|0.63889\n174161|0.5\n174162|0.44444\n174163|0.73611\n174164|0.43056\n174165|0.5\n174166|0.44444\n174167|0.76389\n174168|0.61111\n174169|0.5\n174170|0.5\n174171|0.22222\n174172|0.31944\n174173|0.26389\n174174|0.5\n174175|0.44444\n174176|0.41667\n174177|0.27778\n174178|0.29167\n174179|0.48611\n174180|0.69444\n174181|0.30556\n174182|0.48611\n174183|0.52778\n174184|0.5\n174185|0.61111\n174186|0.5\n174187|0.5\n174188|0.41667\n174189|0.47222\n174190|0.5\n174191|0.30556\n174192|0.20833\n174193|0.16667\n174194|0.47222\n174195|0.5\n174196|0.51389\n174197|0.5\n174198|0.5\n174199|0.5\n174200|0.33333\n174201|0.40278\n174202|0.52778\n174203|0.38889\n174204|0.26389\n174205|0.47222\n174206|0.11111\n174207|0.5\n174208|0.34722\n174209|0.51389\n174210|0.52778\n174211|0.70833\n174212|0.41667\n174213|0.5\n174214|0.58333\n174215|0.72222\n174216|0.5\n174217|0.55556\n174218|0.26389\n174219|0.36111\n174220|0.55556\n174221|0.36111\n174222|0.5\n174223|0.5\n174224|0.44444\n174225|0.18056\n174226|0.15278\n174227|0.38889\n174228|0.20833\n174229|0.33333\n174230|0.19444\n174231|0.38889\n174232|0.47222\n174233|0.56944\n174234|0.375\n174235|0.5\n174236|0.51389\n174237|0.27778\n174238|0.5\n174239|0.56944\n174240|0.375\n174241|0.5\n174242|0.51389\n174243|0.47222\n174244|0.19444\n174245|0.55556\n174246|0.5\n174247|0.5\n174248|0.45833\n174249|0.375\n174250|0.47222\n174251|0.5\n174252|0.54167\n174253|0.44444\n174254|0.22222\n174255|0.5\n174256|0.55556\n174257|0.5\n174258|0.5\n174259|0.54167\n174260|0.5\n174261|0.40278\n174262|0.5\n174263|0.59722\n174264|0.5\n174265|0.59722\n174266|0.41667\n174267|0.54167\n174268|0.59722\n174269|0.20833\n174270|0.40278\n174271|0.31944\n174272|0.52778\n174273|0.375\n174274|0.48611\n174275|0.20833\n174276|0.29167\n174277|0.54167\n174278|0.58333\n174279|0.54167\n174280|0.52778\n174281|0.45833\n174282|0.65278\n174283|0.75\n174284|0.5\n174285|0.5\n174286|0.52778\n174287|0.29167\n174288|0.65278\n174289|0.44444\n174290|0.33333\n174291|0.68056\n174292|0.38889\n174293|0.56944\n174294|0.43056\n174295|0.31944\n174296|0.11111\n174297|0.43056\n174298|0.61111\n174299|0.33333\n174300|0.33333\n174301|0.61111\n174302|0.81944\n174303|0.51389\n174304|0.27778\n174305|0.625\n174306|0.31944\n174307|0.083333\n174308|0\n174309|0.41667\n174310|0.5\n174311|0.55556\n174312|0.5\n174313|0.61111\n174314|0.5\n174315|0.25\n174316|0.55556\n174317|0.5\n174318|0.59722\n174319|0.56944\n174320|0.27778\n174321|0.51389\n174322|0.625\n174323|0.70833\n174324|0.73611\n174325|0.5\n174326|0.43056\n174327|0.5\n174328|0.33333\n174329|0.625\n174330|0.5\n174331|0.5\n174332|0.26389\n174333|0.38889\n174334|0.36111\n174335|0.5\n174336|0.33333\n174337|0.29167\n174338|0.43056\n174339|0.16667\n174340|0.44444\n174341|0.5\n174342|0.30556\n174343|0.41667\n174344|0.52778\n174345|0.041667\n174346|0.5\n174347|0.16667\n174348|0.11111\n174349|0.36111\n174350|0.36111\n174351|0.47222\n174352|0.33333\n174353|0.22222\n174354|0.61111\n174355|0.13889\n174356|0.5\n174357|0.125\n174358|0.44444\n174359|0.29167\n174360|0.41667\n174361|0.48611\n174362|0.66667\n174363|0.55556\n174364|0.5\n174365|0.31944\n174366|0.23611\n174367|0.23611\n174368|0.48611\n174369|0.40278\n174370|0.56944\n174371|0.69444\n174372|0.27778\n174373|0.27778\n174374|0.25\n174375|0.30556\n174376|0.61111\n174377|0.5\n174378|0.5\n174379|0.38889\n174380|0.33333\n174381|0.55556\n174382|0.48611\n174383|0.5\n174384|0.38889\n174385|0.41667\n174386|0.5\n174387|0.25\n174388|0.5\n174389|0.52778\n174390|0.61111\n174391|0.625\n174392|0.47222\n174393|0.31944\n174394|0.59722\n174395|0.58333\n174396|0.61111\n174397|0.47222\n174398|0.44444\n174399|0.58333\n174400|0.52778\n174401|0.5\n174402|0.5\n174403|0.5\n174404|0.43056\n174405|0.31944\n174406|0.51389\n174407|0.29167\n174408|0.33333\n174409|0.47222\n174410|0.38889\n174411|0.44444\n174412|0.47222\n174413|0.5\n174414|0.33333\n174415|0.70833\n174416|0.68056\n174417|0.48611\n174418|0.51389\n174419|0.29167\n174420|0.5\n174421|0.41667\n174422|0.40278\n174423|0.51389\n174424|0.48611\n174425|0.5\n174426|0.51389\n174427|0.52778\n174428|0.5\n174429|0.58333\n174430|0.48611\n174431|0.51389\n174432|0.5\n174433|0.30556\n174434|0.44444\n174435|0.48611\n174436|0.55556\n174437|0.5\n174438|0.5\n174439|0.5\n174440|0.083333\n174441|0.54167\n174442|0.83333\n174443|0.52778\n174444|0.5\n174445|0.625\n174446|0.5\n174447|0.43056\n174448|0.36111\n174449|0.375\n174450|0.5\n174451|0.5\n174452|0.375\n174453|0.22222\n174454|0.44444\n174455|0.25\n174456|0.5\n174457|0.38889\n174458|0.44444\n174459|0.5\n174460|0.41667\n174461|0.48611\n174462|0.55556\n174463|0.44444\n174464|0.36111\n174465|0.5\n174466|0.5\n174467|0.5\n174468|0.51389\n174469|0.56944\n174470|0.5\n174471|0.55556\n174472|0.54167\n174473|0.5\n174474|0.48611\n174475|0.51389\n174476|0.55556\n174477|0.44444\n174478|0.5\n174479|0.5\n174480|0.26389\n174481|0.27778\n174482|0.31944\n174483|0.31944\n174484|0.16667\n174485|0.5\n174486|0.5\n174487|0.15278\n174488|0.31944\n174489|0.40278\n174490|0.41667\n174491|0.52778\n174492|0.5\n174493|0.44444\n174494|0.52778\n174495|0.43056\n174496|0.19444\n174497|0.65278\n174498|0.48611\n174499|0.5\n174500|0.5\n174501|0.45833\n174502|0.5\n174503|0.5\n174504|0.41667\n174505|0.38889\n174506|0.44444\n174507|0.55556\n174508|0.29167\n174509|0.5\n174510|0.51389\n174511|0.54167\n174512|0.5\n174513|0.38889\n174514|0.125\n174515|0.33333\n174516|0.5\n174517|0.25\n174518|0.52778\n174519|0.44444\n174520|0.52778\n174521|0.40278\n174522|0.47222\n174523|0.41667\n174524|0.52778\n174525|0.27778\n174526|0.23611\n174527|0.31944\n174528|0.27778\n174529|0.18056\n174530|0.22222\n174531|0.59722\n174532|0.5\n174533|0.31944\n174534|0.44444\n174535|0.29167\n174536|0.5\n174537|0.48611\n174538|0.16667\n174539|0.16667\n174540|0.61111\n174541|0.43056\n174542|0.72222\n174543|0.5\n174544|0.30556\n174545|0.44444\n174546|0.58333\n174547|0.52778\n174548|0.38889\n174549|0.41667\n174550|0.38889\n174551|0.56944\n174552|0.38889\n174553|0.5\n174554|0.52778\n174555|0.16667\n174556|0.43056\n174557|0.38889\n174558|0.47222\n174559|0.38889\n174560|0.70833\n174561|0.5\n174562|0.52778\n174563|0.5\n174564|0.63889\n174565|0.23611\n174566|0.5\n174567|0.36111\n174568|0.30556\n174569|0.26389\n174570|0.65278\n174571|0.5\n174572|0.63889\n174573|0.45833\n174574|0.5\n174575|0.11111\n174576|0.48611\n174577|0.5\n174578|0.27778\n174579|0.5\n174580|0.5\n174581|0.5\n174582|0.47222\n174583|0.44444\n174584|0.36111\n174585|0.51389\n174586|0.45833\n174587|0.30556\n174588|0.30556\n174589|0.26389\n174590|0.36111\n174591|0.5\n174592|0.20833\n174593|0.11111\n174594|0.5\n174595|0.51389\n174596|0.5\n174597|0.54167\n174598|0.47222\n174599|0.5\n174600|0.55556\n174601|0.45833\n174602|0.26389\n174603|0.5\n174604|0.33333\n174605|0.44444\n174606|0.36111\n174607|0.48611\n174608|0.44444\n174609|0.33333\n174610|0.40278\n174611|0.30556\n174612|0.44444\n174613|0.34722\n174614|0.52778\n174615|0.72222\n174616|0.63889\n174617|0.58333\n174618|0.45833\n174619|0.31944\n174620|0.27778\n174621|0.5\n174622|0.44444\n174623|0.44444\n174624|0.58333\n174625|0.56944\n174626|0.59722\n174627|0.5\n174628|0.44444\n174629|0.44444\n174630|0.41667\n174631|0.25\n174632|0.5\n174633|0.375\n174634|0.34722\n174635|0.38889\n174636|0.47222\n174637|0.22222\n174638|0.375\n174639|0.47222\n174640|0.58333\n174641|0.72222\n174642|0.41667\n174643|0.36111\n174644|0.25\n174645|0.43056\n174646|0.52778\n174647|0.65278\n174648|0.36111\n174649|0.63889\n174650|0.75\n174651|0.30556\n174652|0.23611\n174653|0.25\n174654|0.34722\n174655|0.63889\n174656|0.59722\n174657|0.70833\n174658|0.5\n174659|0.5\n174660|0.29167\n174661|0.48611\n174662|0.5\n174663|0.5\n174664|0.5\n174665|0.5\n174666|0.36111\n174667|0.38889\n174668|0.16667\n174669|0.31944\n174670|0.20833\n174671|0.26389\n174672|0.55556\n174673|0.30556\n174674|0.5\n174675|0.22222\n174676|0.38889\n174677|0.27778\n174678|0.5\n174679|0.51389\n174680|0.47222\n174681|0.54167\n174682|0.33333\n174683|0.30556\n174684|0.36111\n174685|0.26389\n174686|0.43056\n174687|0.36111\n174688|0.44444\n174689|0.44444\n174690|0.40278\n174691|0.48611\n174692|0.36111\n174693|0.5\n174694|0.26389\n174695|0.47222\n174696|0.29167\n174697|0.33333\n174698|0.083333\n174699|0.40278\n174700|0.5\n174701|0.55556\n174702|0.22222\n174703|0.59722\n174704|0.45833\n174705|0.625\n174706|0.5\n174707|0.44444\n174708|0.375\n174709|0.5\n174710|0.40278\n174711|0.16667\n174712|0.20833\n174713|0.36111\n174714|0.20833\n174715|0.5\n174716|0.52778\n174717|0.5\n174718|0.73611\n174719|0.375\n174720|0.54167\n174721|0.5\n174722|0.5\n174723|0.5\n174724|0.5\n174725|0.5\n174726|0.36111\n174727|0.5\n174728|0.5\n174729|0.58333\n174730|0.45833\n174731|0.45833\n174732|0.5\n174733|0.5\n174734|0.38889\n174735|0.5\n174736|0.5\n174737|0.52778\n174738|0.70833\n174739|0.56944\n174740|0.22222\n174741|0.30556\n174742|0.5\n174743|0.31944\n174744|0.44444\n174745|0.48611\n174746|0.51389\n174747|0.27778\n174748|0.5\n174749|0.51389\n174750|0.5\n174751|0.38889\n174752|0.43056\n174753|0.54167\n174754|0.45833\n174755|0.43056\n174756|0.5\n174757|0.65278\n174758|0.55556\n174759|0.5\n174760|0.5\n174761|0.5\n174762|0.44444\n174763|0.5\n174764|0.27778\n174765|0.43056\n174766|0.38889\n174767|0.45833\n174768|0.23611\n174769|0.34722\n174770|0.33333\n174771|0.5\n174772|0.38889\n174773|0.375\n174774|0.52778\n174775|0.45833\n174776|0.5\n174777|0.56944\n174778|0.48611\n174779|0.27778\n174780|0.20833\n174781|0.30556\n174782|0.30556\n174783|0.31944\n174784|0.375\n174785|0.11111\n174786|0.5\n174787|0.055556\n174788|0.5\n174789|0.59722\n174790|0.55556\n174791|0.61111\n174792|0.36111\n174793|0.55556\n174794|0.5\n174795|0.48611\n174796|0.5\n174797|0.76389\n174798|0.48611\n174799|0.51389\n174800|0.5\n174801|0.34722\n174802|0.29167\n174803|0.31944\n174804|0.44444\n174805|0.29167\n174806|0.55556\n174807|0.44444\n174808|0.55556\n174809|0.45833\n174810|0.58333\n174811|0.43056\n174812|0.5\n174813|0.23611\n174814|0.58333\n174815|0.47222\n174816|0.18056\n174817|0.33333\n174818|0.44444\n174819|0.36111\n174820|0.63889\n174821|0.73611\n174822|0.22222\n174823|0.33333\n174824|0.16667\n174825|0.083333\n174826|0.33333\n174827|0.27778\n174828|0.25\n174829|0.23611\n174830|0.5\n174831|0.30556\n174832|0.38889\n174833|0.34722\n174834|0.23611\n174835|0.41667\n174836|0.27778\n174837|0.26389\n174838|0.22222\n174839|0.44444\n174840|0.38889\n174841|0.44444\n174842|0.30556\n174843|0.36111\n174844|0.44444\n174845|0.5\n174846|0.15278\n174847|0.5\n174848|0.5\n174849|0.58333\n174850|0.5\n174851|0.58333\n174852|0.51389\n174853|0.5\n174854|0.5\n174855|0.43056\n174856|0.51389\n174857|0.5\n174858|0.56944\n174859|0.66667\n174860|0.5\n174861|0.625\n174862|0.48611\n174863|0.48611\n174864|0.5\n174865|0.5\n174866|0.5\n174867|0.48611\n174868|0.5\n174869|0.34722\n174870|0.68056\n174871|0.34722\n174872|0.54167\n174873|0.5\n174874|0.5\n174875|0.68056\n174876|0.375\n174877|0.63889\n174878|0.40278\n174879|0.56944\n174880|0.52778\n174881|0.34722\n174882|0.40278\n174883|0.26389\n174884|0.34722\n174885|0.31944\n174886|0.44444\n174887|0.15278\n174888|0.097222\n174889|0.5\n174890|0.40278\n174891|0.47222\n174892|0.5\n174893|0.55556\n174894|0.5\n174895|0.59722\n174896|0.61111\n174897|0.27778\n174898|0.5\n174899|0.25\n174900|0.5\n174901|0.40278\n174902|0.51389\n174903|0.5\n174904|0.47222\n174905|0.66667\n174906|0.5\n174907|0.54167\n174908|0.41667\n174909|0.5\n174910|0.5\n174911|0.18056\n174912|0.5\n174913|0.5\n174914|0.5\n174915|0.5\n174916|0.027778\n174917|0.51389\n174918|0.48611\n174919|0.51389\n174920|0.5\n174921|0.5\n174922|0.45833\n174923|0.29167\n174924|0.41667\n174925|0.5\n174926|0.58333\n174927|0.55556\n174928|0.16667\n174929|0.70833\n174930|0.38889\n174931|0.56944\n174932|0.56944\n174933|0.125\n174934|0.5\n174935|0.58333\n174936|0.48611\n174937|0.44444\n174938|0.38889\n174939|0.5\n174940|0.52778\n174941|0.5\n174942|0.58333\n174943|0.38889\n174944|0.5\n174945|0.18056\n174946|0.5\n174947|0.47222\n174948|0.38889\n174949|0.76389\n174950|0.097222\n174951|0.33333\n174952|0.31944\n174953|0.18056\n174954|0.5\n174955|0.625\n174956|0.5\n174957|0.65278\n174958|0.5\n174959|0.5\n174960|0.34722\n174961|0.43056\n174962|0.58333\n174963|0.5\n174964|0.48611\n174965|0.65278\n174966|0.5\n174967|0.45833\n174968|0.45833\n174969|0.59722\n174970|0.55556\n174971|0.33333\n174972|0.54167\n174973|0.44444\n174974|0.38889\n174975|0.23611\n174976|0.40278\n174977|0.55556\n174978|0.5\n174979|0.5\n174980|0.27778\n174981|0.5\n174982|0.36111\n174983|0.43056\n174984|0.5\n174985|0.72222\n174986|0.65278\n174987|0.47222\n174988|0.61111\n174989|0.5\n174990|0.5\n174991|0.5\n174992|0.59722\n174993|0.5\n174994|0.5\n174995|0.36111\n174996|0.22222\n174997|0.51389\n174998|0.41667\n174999|0.40278\n175000|0.5\n175001|0.5\n175002|0.33333\n175003|0.25\n175004|0.16667\n175005|0.30556\n175006|0.375\n175007|0.52778\n175008|0.56944\n175009|0.5\n175010|0.51389\n175011|0.54167\n175012|0.51389\n175013|0.51389\n175014|0.23611\n175015|0.31944\n175016|0.36111\n175017|0.27778\n175018|0.5\n175019|0.51389\n175020|0.59722\n175021|0.41667\n175022|0.20833\n175023|0.66667\n175024|0.44444\n175025|0.5\n175026|0.22222\n175027|0.65278\n175028|0.5\n175029|0.5\n175030|0.20833\n175031|0.55556\n175032|0.5\n175033|0.5\n175034|0.33333\n175035|0.5\n175036|0.45833\n175037|0.41667\n175038|0.47222\n175039|0.48611\n175040|0.51389\n175041|0.54167\n175042|0.5\n175043|0.5\n175044|0.54167\n175045|0.55556\n175046|0.81944\n175047|0.47222\n175048|0.25\n175049|0.26389\n175050|0.48611\n175051|0.25\n175052|0.013889\n175053|0.13889\n175054|0.59722\n175055|0.69444\n175056|0.61111\n175057|0.59722\n175058|0.63889\n175059|0.55556\n175060|0.34722\n175061|0.15278\n175062|0.38889\n175063|0.5\n175064|0.47222\n175065|0.33333\n175066|0.22222\n175067|0.55556\n175068|0.125\n175069|0.5\n175070|0.36111\n175071|0.58333\n175072|0.5\n175073|0.48611\n175074|0.38889\n175075|0.69444\n175076|0.23611\n175077|0.5\n175078|0.5\n175079|0.34722\n175080|0.40278\n175081|0.54167\n175082|0.36111\n175083|0.5\n175084|0.5\n175085|0.5\n175086|0.5\n175087|0.52778\n175088|0.48611\n175089|0.5\n175090|0.5\n175091|0.56944\n175092|0.5\n175093|0.5\n175094|0.55556\n175095|0.5\n175096|0.5\n175097|0.5\n175098|0.48611\n175099|0.51389\n175100|0.61111\n175101|0.43056\n175102|0.19444\n175103|0.52778\n175104|0.38889\n175105|0.65278\n175106|0.59722\n175107|0.5\n175108|0.51389\n175109|0.5\n175110|0.51389\n175111|0.5\n175112|0.5\n175113|0.5\n175114|0.52778\n175115|0.5\n175116|0.5\n175117|0.5\n175118|0.5\n175119|0.30556\n175120|0.52778\n175121|0.5\n175122|0.16667\n175123|0.5\n175124|0.63889\n175125|0.55556\n175126|0.5\n175127|0.55556\n175128|0.5\n175129|0.375\n175130|0.52778\n175131|0.31944\n175132|0.55556\n175133|0.29167\n175134|0.43056\n175135|0.47222\n175136|0.52778\n175137|0.47222\n175138|0.5\n175139|0.23611\n175140|0.30556\n175141|0.33333\n175142|0.34722\n175143|0.68056\n175144|0.23611\n175145|0.29167\n175146|0.31944\n175147|0.34722\n175148|0.41667\n175149|0.27778\n175150|0.34722\n175151|0.40278\n175152|0.47222\n175153|0.48611\n175154|0.47222\n175155|0.5\n175156|0.26389\n175157|0.27778\n175158|0.13889\n175159|0.75\n175160|0.36111\n175161|0.61111\n175162|0.375\n175163|0.15278\n175164|0.125\n175165|0.069444\n175166|0.48611\n175167|0.11111\n175168|0.31944\n175169|0.33333\n175170|0.34722\n175171|0.44444\n175172|0.70833\n175173|0.23611\n175174|0.38889\n175175|0.70833\n175176|0.33333\n175177|0.069444\n175178|0.44444\n175179|0.625\n175180|0.48611\n175181|0.5\n175182|0.51389\n175183|0.5\n175184|0.44444\n175185|0.41667\n175186|0.33333\n175187|0.097222\n175188|0.27778\n175189|0.40278\n175190|0.33333\n175191|0.52778\n175192|0.48611\n175193|0.5\n175194|0.5\n175195|0.51389\n175196|0.40278\n175197|0.54167\n175198|0.47222\n175199|0.36111\n175200|0.41667\n175201|0.5\n175202|0.31944\n175203|0.63889\n175204|0.5\n175205|0.47222\n175206|0.41667\n175207|0.5\n175208|0.59722\n175209|0.52778\n175210|0.48611\n175211|0.5\n175212|0.44444\n175213|0.40278\n175214|0.45833\n175215|0.5\n175216|0.30556\n175217|0.34722\n175218|0.36111\n175219|0.48611\n175220|0.38889\n175221|0.44444\n175222|0.26389\n175223|0.25\n175224|0.43056\n175225|0.5\n175226|0.47222\n175227|0.34722\n175228|0.59722\n175229|0.30556\n175230|0.22222\n175231|0.52778\n175232|0.34722\n175233|0.38889\n175234|0.33333\n175235|0.22222\n175236|0.31944\n175237|0.44444\n175238|0.27778\n175239|0.16667\n175240|0.18056\n175241|0.27778\n175242|0.48611\n175243|0.23611\n175244|0.5\n175245|0.33333\n175246|0.36111\n175247|0.33333\n175248|0.5\n175249|0.38889\n175250|0.52778\n175251|0.44444\n175252|0.5\n175253|0.097222\n175254|0.51389\n175255|0.38889\n175256|0.43056\n175257|0.48611\n175258|0.41667\n175259|0.5\n175260|0.23611\n175261|0.5\n175262|0.5\n175263|0.375\n175264|0.375\n175265|0.59722\n175266|0.45833\n175267|0.44444\n175268|0.68056\n175269|0.5\n175270|0.5\n175271|0.15278\n175272|0.22222\n175273|0.19444\n175274|0.47222\n175275|0.5\n175276|0.41667\n175277|0.29167\n175278|0.45833\n175279|0.36111\n175280|0.45833\n175281|0.375\n175282|0.51389\n175283|0.58333\n175284|0.38889\n175285|0.44444\n175286|0.54167\n175287|0.44444\n175288|0.375\n175289|0.5\n175290|0.31944\n175291|0.47222\n175292|0.5\n175293|0.5\n175294|0.43056\n175295|0.61111\n175296|0.23611\n175297|0.5\n175298|0.44444\n175299|0.41667\n175300|0.625\n175301|0.5\n175302|0.40278\n175303|0.45833\n175304|0.27778\n175305|0.18056\n175306|0.34722\n175307|0.51389\n175308|0.30556\n175309|0.47222\n175310|0.55556\n175311|0.38889\n175312|0.19444\n175313|0.70833\n175314|0.5\n175315|0.56944\n175316|0.5\n175317|0.45833\n175318|0.55556\n175319|0.20833\n175320|0.5\n175321|0.5\n175322|0.11111\n175323|0.5\n175324|0.48611\n175325|0.5\n175326|0.56944\n175327|0.5\n175328|0.25\n175329|0.30556\n175330|0.5\n175331|0.52778\n175332|0.22222\n175333|0.55556\n175334|0.43056\n175335|0.30556\n175336|0.5\n175337|0.20833\n175338|0.86111\n175339|0.5\n175340|0.5\n175341|0.5\n175342|0.29167\n175343|0.56944\n175344|0.54167\n175345|0.5\n175346|0.59722\n175347|0.5\n175348|0.43056\n175349|0.19444\n175350|0.68056\n175351|0.30556\n175352|0.22222\n175353|0.083333\n175354|0.26389\n175355|0.20833\n175356|0.56944\n175357|0.11111\n175358|0.15278\n175359|0.23611\n175360|0.44444\n175361|0.47222\n175362|0.16667\n175363|0.44444\n175364|0.41667\n175365|0.23611\n175366|0.36111\n175367|0.38889\n175368|0.31944\n175369|0.16667\n175370|0.31944\n175371|0.25\n175372|0.23611\n175373|0.47222\n175374|0.51389\n175375|0.13889\n175376|0.5\n175377|0.33333\n175378|0.31944\n175379|0.54167\n175380|0.61111\n175381|0.5\n175382|0.48611\n175383|0.75\n175384|0.30556\n175385|0.5\n175386|0.63889\n175387|0.22222\n175388|0.45833\n175389|0.48611\n175390|0.097222\n175391|0.54167\n175392|0.52778\n175393|0.625\n175394|0.59722\n175395|0.5\n175396|0.31944\n175397|0.47222\n175398|0.51389\n175399|0.52778\n175400|0.55556\n175401|0.33333\n175402|0.51389\n175403|0.375\n175404|0.52778\n175405|0.51389\n175406|0.30556\n175407|0.5\n175408|0.38889\n175409|0.34722\n175410|0.56944\n175411|0.58333\n175412|0.625\n175413|0.51389\n175414|0.47222\n175415|0.30556\n175416|0.55556\n175417|0.19444\n175418|0.52778\n175419|0.44444\n175420|0.43056\n175421|0.16667\n175422|0.38889\n175423|0.34722\n175424|0.16667\n175425|0.66667\n175426|0.72222\n175427|0.65278\n175428|0.63889\n175429|0.61111\n175430|0.11111\n175431|0.47222\n175432|0.18056\n175433|0.5\n175434|0.48611\n175435|0.27778\n175436|0.19444\n175437|0.41667\n175438|0.58333\n175439|0.44444\n175440|0.041667\n175441|0.375\n175442|0.65278\n175443|0.34722\n175444|0.58333\n175445|0.5\n175446|0.55556\n175447|0.55556\n175448|0.48611\n175449|0.55556\n175450|0.18056\n175451|0.25\n175452|0.5\n175453|0.5\n175454|0.48611\n175455|0.26389\n175456|0.16667\n175457|0.41667\n175458|0.16667\n175459|0.76389\n175460|0.26389\n175461|0.41667\n175462|0.44444\n175463|0.36111\n175464|0.15278\n175465|0.55556\n175466|0.13889\n175467|0.29167\n175468|0.51389\n175469|0.19444\n175470|0.5\n175471|0.44444\n175472|0.76389\n175473|0.80556\n175474|0.5\n175475|0.34722\n175476|0.5\n175477|0.38889\n175478|0.5\n175479|0.5\n175480|0.51389\n175481|0.48611\n175482|0.5\n175483|0.38889\n175484|0.22222\n175485|0.16667\n175486|0.25\n175487|0.44444\n175488|0.5\n175489|0.44444\n175490|0.29167\n175491|0.66667\n175492|0.22222\n175493|0.16667\n175494|0.58333\n175495|0.23611\n175496|0.19444\n175497|0.16667\n175498|0.44444\n175499|0.56944\n175500|0.44444\n175501|0.11111\n175502|0.27778\n175503|0.16667\n175504|0.29167\n175505|0.58333\n175506|0.55556\n175507|0.27778\n175508|0.23611\n175509|0.375\n175510|0.19444\n175511|0.20833\n175512|0.51389\n175513|0.5\n175514|0.34722\n175515|0.5\n175516|0.30556\n175517|0.36111\n175518|0.55556\n175519|0.47222\n175520|0.38889\n175521|0.58333\n175522|0.33333\n175523|0.30556\n175524|0.51389\n175525|0.54167\n175526|0.25\n175527|0.5\n175528|0.48611\n175529|0.44444\n175530|0.25\n175531|0.38889\n175532|0.22222\n175533|0.13889\n175534|0.027778\n175535|0.47222\n175536|0.22222\n175537|0.25\n175538|0.5\n175539|0.40278\n175540|0.38889\n175541|0.65278\n175542|0.29167\n175543|0.18056\n175544|0.36111\n175545|0.38889\n175546|0.52778\n175547|0.16667\n175548|0.069444\n175549|0.44444\n175550|0.56944\n175551|0.55556\n175552|0.54167\n175553|0.40278\n175554|0.13889\n175555|0.43056\n175556|0.55556\n175557|0.36111\n175558|0.20833\n175559|0.56944\n175560|0.38889\n175561|0.25\n175562|0.5\n175563|0.33333\n175564|0.33333\n175565|0.19444\n175566|0.44444\n175567|0.375\n175568|0.069444\n175569|0.5\n175570|0.5\n175571|0.19444\n175572|0.31944\n175573|0.54167\n175574|0.54167\n175575|0.375\n175576|0.41667\n175577|0.19444\n175578|0.055556\n175579|0.31944\n175580|0.097222\n175581|0.56944\n175582|0.81944\n175583|0.72222\n175584|0.31944\n175585|0.375\n175586|0.33333\n175587|0.26389\n175588|0.11111\n175589|0.5\n175590|0.45833\n175591|0.36111\n175592|0.30556\n175593|0.59722\n175594|0.48611\n175595|0.5\n175596|0.44444\n175597|0.52778\n175598|0.29167\n175599|0.44444\n175600|0.33333\n175601|0.44444\n175602|0.5\n175603|0.38889\n175604|0.45833\n175605|0.52778\n175606|0.36111\n175607|0.34722\n175608|0.55556\n175609|0.18056\n175610|0.5\n175611|0.40278\n175612|0.5\n175613|0.16667\n175614|0.55556\n175615|0.375\n175616|0.51389\n175617|0.43056\n175618|0.66667\n175619|0.5\n175620|0.45833\n175621|0.40278\n175622|0.47222\n175623|0.30556\n175624|0.63889\n175625|0.27778\n175626|0.33333\n175627|0.70833\n175628|0.34722\n175629|0.20833\n175630|0.54167\n175631|0.45833\n175632|0.68056\n175633|0.54167\n175634|0.18056\n175635|0.34722\n175636|0.11111\n175637|0.13889\n175638|0.56944\n175639|0.34722\n175640|0.27778\n175641|0.54167\n175642|0.61111\n175643|0.47222\n175644|0.69444\n175645|0.625\n175646|0.58333\n175647|0.625\n175648|0.80556\n175649|0.68056\n175650|0.5\n175651|0.56944\n175652|0.5\n175653|0.5\n175654|0.52778\n175655|0.41667\n175656|0.38889\n175657|0.41667\n175658|0.44444\n175659|0.40278\n175660|0.36111\n175661|0.375\n175662|0.5\n175663|0.33333\n175664|0.5\n175665|0.44444\n175666|0.29167\n175667|0.5\n175668|0.19444\n175669|0.33333\n175670|0.31944\n175671|0.48611\n175672|0.625\n175673|0.5\n175674|0.45833\n175675|0.38889\n175676|0.5\n175677|0.44444\n175678|0.40278\n175679|0.47222\n175680|0.19444\n175681|0.55556\n175682|0.56944\n175683|0.91667\n175684|0.77778\n175685|0.52778\n175686|0.84722\n175687|0.61111\n175688|0.69444\n175689|0.55556\n175690|0.625\n175691|0.75\n175692|0.69444\n175693|0.31944\n175694|0.5\n175695|0.58333\n175696|0.54167\n175697|0.44444\n175698|0.56944\n175699|0.36111\n175700|0.5\n175701|0.18056\n175702|0.44444\n175703|0.41667\n175704|0.5\n175705|0.31944\n175706|0.19444\n175707|0.5\n175708|0.27778\n175709|0.29167\n175710|0.48611\n175711|0.34722\n175712|0.097222\n175713|0.55556\n175714|0.30556\n175715|0.18056\n175716|0.26389\n175717|0.375\n175718|0.43056\n175719|0.45833\n175720|0.36111\n175721|0.33333\n175722|0.52778\n175723|0.36111\n175724|0.52778\n175725|0.15278\n175726|0.22222\n175727|0.40278\n175728|0.38889\n175729|0.47222\n175730|0.5\n175731|0.22222\n175732|0.11111\n175733|0.5\n175734|0.44444\n175735|0.41667\n175736|0.34722\n175737|0.375\n175738|0.55556\n175739|0.5\n175740|0.44444\n175741|0.11111\n175742|0.47222\n175743|0.38889\n175744|0.36111\n175745|0.55556\n175746|0.56944\n175747|0.51389\n175748|0.5\n175749|0.29167\n175750|0.375\n175751|0.47222\n175752|0.61111\n175753|0.45833\n175754|0.5\n175755|0.375\n175756|0.56944\n175757|0.72222\n175758|0.66667\n175759|0.5\n175760|0.40278\n175761|0.44444\n175762|0.51389\n175763|0.56944\n175764|0.5\n175765|0.30556\n175766|0.77778\n175767|0.58333\n175768|0.5\n175769|0.5\n175770|0.55556\n175771|0.45833\n175772|0.52778\n175773|0.47222\n175774|0.22222\n175775|0.34722\n175776|0.22222\n175777|0.29167\n175778|0.36111\n175779|0.45833\n175780|0.33333\n175781|0.38889\n175782|0.16667\n175783|0.18056\n175784|0.16667\n175785|0.5\n175786|0.5\n175787|0.48611\n175788|0.47222\n175789|0.5\n175790|0.5\n175791|0.52778\n175792|0.5\n175793|0.5\n175794|0.5\n175795|0.31944\n175796|0.55556\n175797|0.47222\n175798|0.5\n175799|0.5\n175800|0.47222\n175801|0.51389\n175802|0.55556\n175803|0.69444\n175804|0.55556\n175805|0.27778\n175806|0.63889\n175807|0.54167\n175808|0.51389\n175809|0.48611\n175810|0.5\n175811|0.5\n175812|0.5\n175813|0.23611\n175814|0.5\n175815|0.5\n175816|0.5\n175817|0.55556\n175818|0.5\n175819|0.5\n175820|0.59722\n175821|0.5\n175822|0.36111\n175823|0.27778\n175824|0.44444\n175825|0.63889\n175826|0.5\n175827|0.5\n175828|0.36111\n175829|0.41667\n175830|0.5\n175831|0.48611\n175832|0.5\n175833|0.45833\n175834|0.5\n175835|0.45833\n175836|0.56944\n175837|0.51389\n175838|0.34722\n175839|0.097222\n175840|0.61111\n175841|0.43056\n175842|0.33333\n175843|0.5\n175844|0.5\n175845|0.58333\n175846|0.29167\n175847|0.43056\n175848|0.5\n175849|0.5\n175850|0.51389\n175851|0.5\n175852|0.45833\n175853|0.5\n175854|0.48611\n175855|0.51389\n175856|0.5\n175857|0.54167\n175858|0.5\n175859|0.56944\n175860|0.55556\n175861|0.44444\n175862|0.36111\n175863|0.51389\n175864|0.40278\n175865|0.52778\n175866|0.52778\n175867|0.75\n175868|0.52778\n175869|0.45833\n175870|0.30556\n175871|0.52778\n175872|0.27778\n175873|0.43056\n175874|0.29167\n175875|0.61111\n175876|0.47222\n175877|0.5\n175878|0.15278\n175879|0.44444\n175880|0.69444\n175881|0.48611\n175882|0.47222\n175883|0.18056\n175884|0.58333\n175885|0.63889\n175886|0.23611\n175887|0.47222\n175888|0.125\n175889|0.43056\n175890|0.34722\n175891|0.40278\n175892|0.38889\n175893|0.5\n175894|0.45833\n175895|0.54167\n175896|0.55556\n175897|0.44444\n175898|0.45833\n175899|0.55556\n175900|0.56944\n175901|0.45833\n175902|0.25\n175903|0.19444\n175904|0.75\n175905|0.33333\n175906|0.52778\n175907|0.66667\n175908|0.52778\n175909|0.33333\n175910|0.31944\n175911|0.58333\n175912|0.29167\n175913|0.55556\n175914|0.55556\n175915|0.77778\n175916|0.76389\n175917|0.61111\n175918|0.55556\n175919|0.48611\n175920|0.38889\n175921|0.16667\n175922|0.36111\n175923|0.19444\n175924|0.5\n175925|0.15278\n175926|0.36111\n175927|0.55556\n175928|0.51389\n175929|0.51389\n175930|0.66667\n175931|0.5\n175932|0.29167\n175933|0.55556\n175934|0.54167\n175935|0.65278\n175936|0.15278\n175937|0.55556\n175938|0.36111\n175939|0.54167\n175940|0.59722\n175941|0.36111\n175942|0.55556\n175943|0.63889\n175944|0.55556\n175945|0.44444\n175946|0.61111\n175947|0.33333\n175948|0.44444\n175949|0.55556\n175950|0.5\n175951|0.5\n175952|0.25\n175953|0.18056\n175954|0.20833\n175955|0.33333\n175956|0.375\n175957|0.44444\n175958|0.20833\n175959|0.5\n175960|0.22222\n175961|0.54167\n175962|0.27778\n175963|0.48611\n175964|0.27778\n175965|0.63889\n175966|0.23611\n175967|0.33333\n175968|0.5\n175969|0.55556\n175970|0.54167\n175971|0.22222\n175972|0.5\n175973|0.22222\n175974|0.041667\n175975|0.29167\n175976|0.58333\n175977|0.55556\n175978|0.625\n175979|0.61111\n175980|0.33333\n175981|0.55556\n175982|0.34722\n175983|0.43056\n175984|0.61111\n175985|0.48611\n175986|0.48611\n175987|0.63889\n175988|0.29167\n175989|0.31944\n175990|0.27778\n175991|0.34722\n175992|0.47222\n175993|0.5\n175994|0.375\n175995|0.43056\n175996|0.20833\n175997|0.61111\n175998|0.5\n175999|0.38889\n176000|0.5\n176001|0.52778\n176002|0.33333\n176003|0.22222\n176004|0.44444\n176005|0.5\n176006|0.54167\n176007|0.36111\n176008|0.40278\n176009|0.41667\n176010|0.52778\n176011|0.5\n176012|0.5\n176013|0.5\n176014|0.51389\n176015|0.18056\n176016|0.44444\n176017|0.5\n176018|0.5\n176019|0.19444\n176020|0.23611\n176021|0.23611\n176022|0.5\n176023|0.55556\n176024|0.44444\n176025|0.61111\n176026|0.33333\n176027|0.5\n176028|0.5\n176029|0.61111\n176030|0.38889\n176031|0.5\n176032|0.5\n176033|0.375\n176034|0.25\n176035|0.31944\n176036|0.5\n176037|0.47222\n176038|0.41667\n176039|0.5\n176040|0.5\n176041|0.55556\n176042|0.5\n176043|0.45833\n176044|0.55556\n176045|0.5\n176046|0.41667\n176047|0.5\n176048|0.30556\n176049|0.43056\n176050|0.54167\n176051|0.30556\n176052|0.58333\n176053|0.86111\n176054|0.56944\n176055|0.55556\n176056|0.45833\n176057|0.23611\n176058|0.55556\n176059|0.30556\n176060|0.16667\n176061|0.5\n176062|0.80556\n176063|0.26389\n176064|0.26389\n176065|0.55556\n176066|0.56944\n176067|0.51389\n176068|0.5\n176069|0.43056\n176070|0.375\n176071|0.61111\n176072|0.43056\n176073|0.5\n176074|0.55556\n176075|0.34722\n176076|0.31944\n176077|0.45833\n176078|0.33333\n176079|0.29167\n176080|0.5\n176081|0.5\n176082|0.16667\n176083|0.5\n176084|0.5\n176085|0.48611\n176086|0.69444\n176087|0.375\n176088|0.33333\n176089|0.5\n176090|0.38889\n176091|0.47222\n176092|0.68056\n176093|0.5\n176094|0.40278\n176095|0.5\n176096|0.52778\n176097|0.66667\n176098|0.47222\n176099|0.5\n176100|0.29167\n176101|0.26389\n176102|0.68056\n176103|0.55556\n176104|0.44444\n176105|0.51389\n176106|0.31944\n176107|0.5\n176108|0.44444\n176109|0.52778\n176110|0.44444\n176111|0.23611\n176112|0.69444\n176113|0.38889\n176114|0.625\n176115|0.20833\n176116|0.47222\n176117|0.5\n176118|0.31944\n176119|0.125\n176120|0.5\n176121|0.5\n176122|0.52778\n176123|0.47222\n176124|0.65278\n176125|0.51389\n176126|0.43056\n176127|0.5\n176128|0.33333\n176129|0.40278\n176130|0.43056\n176131|0.5\n176132|0.33333\n176133|0.5\n176134|0.72222\n176135|0.52778\n176136|0.27778\n176137|0.61111\n176138|0.48611\n176139|0.34722\n176140|0.29167\n176141|0.56944\n176142|0.45833\n176143|0.44444\n176144|0.41667\n176145|0.5\n176146|0.5\n176147|0.44444\n176148|0.40278\n176149|0.40278\n176150|0.66667\n176151|0.375\n176152|0.44444\n176153|0.5\n176154|0.33333\n176155|0.38889\n176156|0.45833\n176157|0.61111\n176158|0.41667\n176159|0.52778\n176160|0.56944\n176161|0.54167\n176162|0.29167\n176163|0.5\n176164|0.58333\n176165|0.63889\n176166|0.36111\n176167|0.15278\n176168|0.33333\n176169|0.11111\n176170|0.38889\n176171|0.125\n176172|0.26389\n176173|0.56944\n176174|0.29167\n176175|0.48611\n176176|0.65278\n176177|0.27778\n176178|0.23611\n176179|0.55556\n176180|0.083333\n176181|0.44444\n176182|0.48611\n176183|0.5\n176184|0.44444\n176185|0.52778\n176186|0.5\n176187|0.5\n176188|0.19444\n176189|0.375\n176190|0.66667\n176191|0.5\n176192|0.25\n176193|0.66667\n176194|0.5\n176195|0.27778\n176196|0.41667\n176197|0.20833\n176198|0.083333\n176199|0.16667\n176200|0.5\n176201|0.59722\n176202|0.55556\n176203|0.34722\n176204|0.61111\n176205|0.75\n176206|0.18056\n176207|0.44444\n176208|0.51389\n176209|0.22222\n176210|0.54167\n176211|0.44444\n176212|0.56944\n176213|0.56944\n176214|0.5\n176215|0.22222\n176216|0.31944\n176217|0.25\n176218|0.19444\n176219|0.31944\n176220|0.36111\n176221|0.26389\n176222|0.29167\n176223|0.44444\n176224|0.51389\n176225|0.5\n176226|0.51389\n176227|0.5\n176228|0.5\n176229|0.27778\n176230|0.41667\n176231|0.55556\n176232|0.63889\n176233|0.27778\n176234|0.5\n176235|0.5\n176236|0.43056\n176237|0.47222\n176238|0.40278\n176239|0.47222\n176240|0.45833\n176241|0.58333\n176242|0.44444\n176243|0.52778\n176244|0.33333\n176245|0.27778\n176246|0.55556\n176247|0.66667\n176248|0.44444\n176249|0.47222\n176250|0.29167\n176251|0.25\n176252|0.19444\n176253|0.55556\n176254|0.44444\n176255|0.36111\n176256|0.59722\n176257|0.33333\n176258|0.41667\n176259|0.23611\n176260|0.73611\n176261|0.5\n176262|0.125\n176263|0.52778\n176264|0.58333\n176265|0.56944\n176266|0.31944\n176267|0.65278\n176268|0.63889\n176269|0.61111\n176270|0.66667\n176271|0.52778\n176272|0.5\n176273|0.81944\n176274|0.52778\n176275|0.5\n176276|0.5\n176277|0.5\n176278|0.5\n176279|0.5\n176280|0.5\n176281|0.5\n176282|0.54167\n176283|0.40278\n176284|0.45833\n176285|0.5\n176286|0.34722\n176287|0.25\n176288|0.47222\n176289|0.52778\n176290|0.5\n176291|0.33333\n176292|0.5\n176293|0.54167\n176294|0.5\n176295|0.41667\n176296|0.48611\n176297|0.36111\n176298|0.38889\n176299|0.44444\n176300|0.25\n176301|0.23611\n176302|0.51389\n176303|0.47222\n176304|0.5\n176305|0.48611\n176306|0.5\n176307|0.47222\n176308|0.5\n176309|0.55556\n176310|0.55556\n176311|0.45833\n176312|0.38889\n176313|0.5\n176314|0.44444\n176315|0.25\n176316|0.26389\n176317|0.5\n176318|0.51389\n176319|0.43056\n176320|0.51389\n176321|0.47222\n176322|0.375\n176323|0.55556\n176324|0.55556\n176325|0.36111\n176326|0.51389\n176327|0.52778\n176328|0.15278\n176329|0.44444\n176330|0.45833\n176331|0.38889\n176332|0.65278\n176333|0.5\n176334|0.40278\n176335|0.5\n176336|0.30556\n176337|0.5\n176338|0.69444\n176339|0.31944\n176340|0.5\n176341|0.5\n176342|0.20833\n176343|0.29167\n176344|0.70833\n176345|0.40278\n176346|0.69444\n176347|0.38889\n176348|0.27778\n176349|0.47222\n176350|0.55556\n176351|0.40278\n176352|0.5\n176353|0.11111\n176354|0.40278\n176355|0.56944\n176356|0.65278\n176357|0.43056\n176358|0.41667\n176359|0.51389\n176360|0.55556\n176361|0.55556\n176362|0.375\n176363|0.5\n176364|0.56944\n176365|0.38889\n176366|0.30556\n176367|0.5\n176368|0.36111\n176369|0.31944\n176370|0.5\n176371|0.375\n176372|0.31944\n176373|0.41667\n176374|0.52778\n176375|0.75\n176376|0.625\n176377|0.56944\n176378|0.54167\n176379|0.5\n176380|0.5\n176381|0.30556\n176382|0.66667\n176383|0.30556\n176384|0.29167\n176385|0.069444\n176386|0.5\n176387|0.34722\n176388|0.52778\n176389|0.52778\n176390|0.43056\n176391|0.47222\n176392|0.5\n176393|0.41667\n176394|0.45833\n176395|0.375\n176396|0.68056\n176397|0.19444\n176398|0.51389\n176399|0.44444\n176400|0.25\n176401|0.375\n176402|0.5\n176403|0.5\n176404|0.38889\n176405|0.54167\n176406|0.41667\n176407|0.5\n176408|0.38889\n176409|0.5\n176410|0.56944\n176411|0.5\n176412|0.30556\n176413|0.41667\n176414|0.56944\n176415|0.27778\n176416|0.375\n176417|0.26389\n176418|0.52778\n176419|0.5\n176420|0.5\n176421|0.5\n176422|0.44444\n176423|0.33333\n176424|0.20833\n176425|0.55556\n176426|0.36111\n176427|0.70833\n176428|0.55556\n176429|0.47222\n176430|0.43056\n176431|0.30556\n176432|0.56944\n176433|0.59722\n176434|0.52778\n176435|0.41667\n176436|0.45833\n176437|0.5\n176438|0.48611\n176439|0.5\n176440|0.40278\n176441|0.38889\n176442|0.44444\n176443|0.55556\n176444|0.38889\n176445|0.38889\n176446|0.36111\n176447|0.18056\n176448|0.44444\n176449|0.5\n176450|0.55556\n176451|0.58333\n176452|0.36111\n176453|0.625\n176454|0.5\n176455|0.40278\n176456|0.20833\n176457|0.5\n176458|0.5\n176459|0.5\n176460|0.52778\n176461|0.5\n176462|0.52778\n176463|0.38889\n176464|0.58333\n176465|0.5\n176466|0.5\n176467|0.54167\n176468|0.76389\n176469|0.44444\n176470|0.5\n176471|0.44444\n176472|0.45833\n176473|0.5\n176474|0.30556\n176475|0.55556\n176476|0.16667\n176477|0.41667\n176478|0.58333\n176479|0.61111\n176480|0.5\n176481|0.5\n176482|0.66667\n176483|0.5\n176484|0.22222\n176485|0.54167\n176486|0.5\n176487|0.5\n176488|0.55556\n176489|0.16667\n176490|0.5\n176491|0.5\n176492|0.055556\n176493|0.5\n176494|0.5\n176495|0.51389\n176496|0.5\n176497|0.23611\n176498|0.43056\n176499|0.13889\n176500|0.44444\n176501|0.45833\n176502|0.25\n176503|0.5\n176504|0.58333\n176505|0.55556\n176506|0.375\n176507|0.5\n176508|0.5\n176509|0.5\n176510|0.58333\n176511|0.55556\n176512|0.5\n176513|0.45833\n176514|0.5\n176515|0.5\n176516|0.5\n176517|0.5\n176518|0.51389\n176519|0.18056\n176520|0.36111\n176521|0.5\n176522|0.36111\n176523|0.44444\n176524|0.40278\n176525|0.36111\n176526|0.11111\n176527|0.34722\n176528|0.55556\n176529|0.27778\n176530|0.44444\n176531|0.5\n176532|0.47222\n176533|0.47222\n176534|0.5\n176535|0.27778\n176536|0.625\n176537|0.30556\n176538|0.15278\n176539|0.25\n176540|0.40278\n176541|0.84722\n176542|0.15278\n176543|0.5\n176544|0.31944\n176545|0.25\n176546|0.5\n176547|0.47222\n176548|0.48611\n176549|0.5\n176550|0.5\n176551|0.5\n176552|0.40278\n176553|0.29167\n176554|0.5\n176555|0.5\n176556|0.34722\n176557|0.41667\n176558|0.13889\n176559|0.47222\n176560|0.5\n176561|0.51389\n176562|0.5\n176563|0.55556\n176564|0.33333\n176565|0.5\n176566|0.5\n176567|0.41667\n176568|0.33333\n176569|0.20833\n176570|0.36111\n176571|0.20833\n176572|0.5\n176573|0.56944\n176574|0.48611\n176575|0.34722\n176576|0.33333\n176577|0.31944\n176578|0.27778\n176579|0.33333\n176580|0.48611\n176581|0.56944\n176582|0.22222\n176583|0.31944\n176584|0.31944\n176585|0.48611\n176586|0.30556\n176587|0.33333\n176588|0.16667\n176589|0.16667\n176590|0.18056\n176591|0.41667\n176592|0.44444\n176593|0.47222\n176594|0.36111\n176595|0.26389\n176596|0.25\n176597|0.26389\n176598|0.25\n176599|0.25\n176600|0.18056\n176601|0.33333\n176602|0.38889\n176603|0.26389\n176604|0.38889\n176605|0.34722\n176606|0.34722\n176607|0.18056\n176608|0.22222\n176609|0.22222\n176610|0.20833\n176611|0.27778\n176612|0.36111\n176613|0.44444\n176614|0.41667\n176615|0.23611\n176616|0.25\n176617|0.375\n176618|0.16667\n176619|0.44444\n176620|0.44444\n176621|0.30556\n176622|0.47222\n176623|0.40278\n176624|0.40278\n176625|0.34722\n176626|0.26389\n176627|0.31944\n176628|0.51389\n176629|0.31944\n176630|0.29167\n176631|0.22222\n176632|0.25\n176633|0.30556\n176634|0.30556\n176635|0.25\n176636|0.29167\n176637|0.33333\n176638|0.25\n176639|0.38889\n176640|0.22222\n176641|0.30556\n176642|0.29167\n176643|0.19444\n176644|0.41667\n176645|0.47222\n176646|0.33333\n176647|0.31944\n176648|0.31944\n176649|0.40278\n176650|0.27778\n176651|0.29167\n176652|0.5\n176653|0.41667\n176654|0.31944\n176655|0.41667\n176656|0.41667\n176657|0.22222\n176658|0.30556\n176659|0.30556\n176660|0.38889\n176661|0.26389\n176662|0.40278\n176663|0.34722\n176664|0.19444\n176665|0.34722\n176666|0.30556\n176667|0.31944\n176668|0.41667\n176669|0.22222\n176670|0.33333\n176671|0.25\n176672|0.40278\n176673|0.22222\n176674|0.33333\n176675|0.38889\n176676|0.19444\n176677|0.33333\n176678|0.41667\n176679|0.41667\n176680|0.59722\n176681|0.25\n176682|0.13889\n176683|0.27778\n176684|0.43056\n176685|0.36111\n176686|0.22222\n176687|0.36111\n176688|0.45833\n176689|0.43056\n176690|0.45833\n176691|0.30556\n176692|0.40278\n176693|0.30556\n176694|0.11111\n176695|0.26389\n176696|0.34722\n176697|0.33333\n176698|0.55556\n176699|0.40278\n176700|0.38889\n176701|0.31944\n176702|0.51389\n176703|0.5\n176704|0.51389\n176705|0.52778\n176706|0.5\n176707|0.47222\n176708|0.48611\n176709|0.29167\n176710|0.40278\n176711|0.38889\n176712|0.18056\n176713|0.34722\n176714|0.58333\n176715|0.38889\n176716|0.375\n176717|0.54167\n176718|0.33333\n176719|0.47222\n176720|0.33333\n176721|0.36111\n176722|0.15278\n176723|0.43056\n176724|0.47222\n176725|0.22222\n176726|0.27778\n176727|0.375\n176728|0.11111\n176729|0.59722\n176730|0.36111\n176731|0.5\n176732|0.48611\n176733|0.51389\n176734|0.5\n176735|0.40278\n176736|0.31944\n176737|0.27778\n176738|0.26389\n176739|0.15278\n176740|0.27778\n176741|0.43056\n176742|0.47222\n176743|0.41667\n176744|0.5\n176745|0.56944\n176746|0.55556\n176747|0.875\n176748|0.40278\n176749|0.34722\n176750|0.5\n176751|0.72222\n176752|0.52778\n176753|0.22222\n176754|0.54167\n176755|0.52778\n176756|0.5\n176757|0.5\n176758|0.61111\n176759|0.23611\n176760|0.5\n176761|0.33333\n176762|0.40278\n176763|0.48611\n176764|0.41667\n176765|0.52778\n176766|0.48611\n176767|0.52778\n176768|0.52778\n176769|0.29167\n176770|0.52778\n176771|0.20833\n176772|0.52778\n176773|0.36111\n176774|0.5\n176775|0.5\n176776|0.5\n176777|0.48611\n176778|0.45833\n176779|0.52778\n176780|0.5\n176781|0.19444\n176782|0.38889\n176783|0.5\n176784|0.65278\n176785|0.36111\n176786|0.31944\n176787|0.26389\n176788|0.5\n176789|0.55556\n176790|0.38889\n176791|0.5\n176792|0.44444\n176793|0.76389\n176794|0.40278\n176795|0.5\n176796|0.52778\n176797|0.5\n176798|0.63889\n176799|0.22222\n176800|0.13889\n176801|0.55556\n176802|0.5\n176803|0.41667\n176804|0.34722\n176805|0.38889\n176806|0.5\n176807|0.11111\n176808|0.097222\n176809|0.19444\n176810|0.48611\n176811|0.5\n176812|0.5\n176813|0.44444\n176814|0.47222\n176815|0.5\n176816|0.45833\n176817|0.5\n176818|0.43056\n176819|0.5\n176820|0.36111\n176821|0.26389\n176822|0.56944\n176823|0.5\n176824|0.59722\n176825|0.34722\n176826|0.36111\n176827|0.31944\n176828|0.5\n176829|0.625\n176830|0.19444\n176831|0.83333\n176832|0.40278\n176833|0.56944\n176834|0.36111\n176835|0.5\n176836|0.29167\n176837|0.27778\n176838|0.47222\n176839|0.33333\n176840|0.41667\n176841|0.48611\n176842|0.5\n176843|0.16667\n176844|0.31944\n176845|0.38889\n176846|0.22222\n176847|0.29167\n176848|0.29167\n176849|0.51389\n176850|0.30556\n176851|0.56944\n176852|0.43056\n176853|0.38889\n176854|0.26389\n176855|0.31944\n176856|0.27778\n176857|0.34722\n176858|0.29167\n176859|0.38889\n176860|0.26389\n176861|0.25\n176862|0.20833\n176863|0.27778\n176864|0.44444\n176865|0.48611\n176866|0.26389\n176867|0.34722\n176868|0.13889\n176869|0.27778\n176870|0.43056\n176871|0.5\n176872|0.55556\n176873|0.34722\n176874|0.52778\n176875|0.44444\n176876|0.43056\n176877|0.58333\n176878|0.41667\n176879|0.5\n176880|0.5\n176881|0.54167\n176882|0.45833\n176883|0.43056\n176884|0.25\n176885|0.44444\n176886|0.56944\n176887|0.43056\n176888|0.45833\n176889|0.59722\n176890|0.5\n176891|0.5\n176892|0.5\n176893|0.36111\n176894|0.77778\n176895|0.52778\n176896|0.5\n176897|0.51389\n176898|0.5\n176899|0.5\n176900|0.51389\n176901|0.51389\n176902|0.5\n176903|0.5\n176904|0.083333\n176905|0.25\n176906|0.11111\n176907|0.69444\n176908|0.29167\n176909|0.72222\n176910|0.70833\n176911|0.45833\n176912|0.30556\n176913|0.47222\n176914|0.43056\n176915|0.36111\n176916|0.38889\n176917|0.22222\n176918|0.16667\n176919|0.55556\n176920|0.44444\n176921|0.44444\n176922|0.59722\n176923|0.65278\n176924|0.625\n176925|0.45833\n176926|0.5\n176927|0.34722\n176928|0.5\n176929|0.33333\n176930|0.40278\n176931|0.45833\n176932|0.30556\n176933|0.44444\n176934|0.52778\n176935|0.5\n176936|0.45833\n176937|0.47222\n176938|0.44444\n176939|0.5\n176940|0.27778\n176941|0.5\n176942|0.5\n176943|0.52778\n176944|0.5\n176945|0.069444\n176946|0.29167\n176947|0.44444\n176948|0.45833\n176949|0.26389\n176950|0.43056\n176951|0.38889\n176952|0.44444\n176953|0.51389\n176954|0.25\n176955|0.38889\n176956|0.44444\n176957|0.27778\n176958|0.44444\n176959|0.5\n176960|0.5\n176961|0.44444\n176962|0.41667\n176963|0.5\n176964|0.36111\n176965|0.19444\n176966|0.18056\n176967|0.5\n176968|0.27778\n176969|0.63889\n176970|0.5\n176971|0.13889\n176972|0.5\n176973|0.30556\n176974|0.5\n176975|0.34722\n176976|0.34722\n176977|0.43056\n176978|0.54167\n176979|0.55556\n176980|0.16667\n176981|0.48611\n176982|0.33333\n176983|0.013889\n176984|0.5\n176985|0.54167\n176986|0.31944\n176987|0.083333\n176988|0.23611\n176989|0.27778\n176990|0.16667\n176991|0.34722\n176992|0.44444\n176993|0.375\n176994|0.22222\n176995|0.20833\n176996|0.29167\n176997|0.20833\n176998|0.19444\n176999|0.11111\n177000|0.40278\n177001|0.23611\n177002|0.31944\n177003|0.097222\n177004|0.5\n177005|0.5\n177006|0.5\n177007|0.5\n177008|0.5\n177009|0.5\n177010|0.54167\n177011|0.54167\n177012|0.36111\n177013|0.56944\n177014|0.59722\n177015|0.5\n177016|0.43056\n177017|0.5\n177018|0.26389\n177019|0.15278\n177020|0.5\n177021|0.41667\n177022|0.5\n177023|0.5\n177024|0.61111\n177025|0.61111\n177026|0.11111\n177027|0.5\n177028|0.34722\n177029|0.47222\n177030|0.36111\n177031|0.45833\n177032|0.38889\n177033|0.34722\n177034|0.40278\n177035|0.30556\n177036|0.41667\n177037|0.41667\n177038|0.29167\n177039|0.33333\n177040|0.27778\n177041|0.097222\n177042|0.22222\n177043|0.125\n177044|0.18056\n177045|0.30556\n177046|0.30556\n177047|0.16667\n177048|0.16667\n177049|0.45833\n177050|0.66667\n177051|0.61111\n177052|0.26389\n177053|0.22222\n177054|0.18056\n177055|0.26389\n177056|0.27778\n177057|0.18056\n177058|0.16667\n177059|0.52778\n177060|0.34722\n177061|0.20833\n177062|0.34722\n177063|0.25\n177064|0.30556\n177065|0.23611\n177066|0.26389\n177067|0.375\n177068|0.5\n177069|0.75\n177070|0.5\n177071|0.5\n177072|0.36111\n177073|0.31944\n177074|0.19444\n177075|0.44444\n177076|0.33333\n177077|0.40278\n177078|0.13889\n177079|0.33333\n177080|0.34722\n177081|0.31944\n177082|0.36111\n177083|0.26389\n177084|0.027778\n177085|0.41667\n177086|0.47222\n177087|0.51389\n177088|0.45833\n177089|0.58333\n177090|0.26389\n177091|0.48611\n177092|0.097222\n177093|0.27778\n177094|0.38889\n177095|0.48611\n177096|0.40278\n177097|0.47222\n177098|0.38889\n177099|0.27778\n177100|0.38889\n177101|0.20833\n177102|0.5\n177103|0.5\n177104|0.93056\n177105|0.5\n177106|0.47222\n177107|0.51389\n177108|0.59722\n177109|0.59722\n177110|0.19444\n177111|0.5\n177112|0.5\n177113|0.63889\n177114|0.5\n177115|0.29167\n177116|0.5\n177117|0.38889\n177118|0.5\n177119|0.30556\n177120|0.27778\n177121|0.26389\n177122|0.40278\n177123|0.48611\n177124|0.44444\n177125|0.25\n177126|0.48611\n177127|0.52778\n177128|0.43056\n177129|0.33333\n177130|0.5\n177131|0.51389\n177132|0.43056\n177133|0.34722\n177134|0.43056\n177135|0.40278\n177136|0.20833\n177137|0.40278\n177138|0.30556\n177139|0.25\n177140|0.63889\n177141|0.52778\n177142|0.40278\n177143|0.51389\n177144|0.18056\n177145|0.58333\n177146|0.51389\n177147|0.38889\n177148|0.33333\n177149|0.38889\n177150|0.45833\n177151|0.31944\n177152|0.33333\n177153|0.23611\n177154|0.44444\n177155|0.069444\n177156|0.38889\n177157|0.34722\n177158|0.54167\n177159|0.5\n177160|0.5\n177161|0.47222\n177162|0.375\n177163|0.44444\n177164|0.19444\n177165|0.38889\n177166|0.375\n177167|0.38889\n177168|0.29167\n177169|0.33333\n177170|0.48611\n177171|0.33333\n177172|0.18056\n177173|0.38889\n177174|0.51389\n177175|0.33333\n177176|0.16667\n177177|0.5\n177178|0.22222\n177179|0.40278\n177180|0.26389\n177181|0.41667\n177182|0.23611\n177183|0.22222\n177184|0.31944\n177185|0.25\n177186|0.26389\n177187|0.25\n177188|0.16667\n177189|0.22222\n177190|0.18056\n177191|0.27778\n177192|0.20833\n177193|0.20833\n177194|0.38889\n177195|0.20833\n177196|0.22222\n177197|0.11111\n177198|0.55556\n177199|0.19444\n177200|0.11111\n177201|0.29167\n177202|0.16667\n177203|0.45833\n177204|0.44444\n177205|0.5\n177206|0.54167\n177207|0.40278\n177208|0.52778\n177209|0.43056\n177210|0.55556\n177211|0.22222\n177212|0.51389\n177213|0.5\n177214|0.5\n177215|0.80556\n177216|0.75\n177217|0.27778\n177218|0.22222\n177219|0.43056\n177220|0.33333\n177221|0.11111\n177222|0.59722\n177223|0.069444\n177224|0.16667\n177225|0.45833\n177226|0.23611\n177227|0.20833\n177228|0.31944\n177229|0.44444\n177230|0.375\n177231|0.31944\n177232|0.44444\n177233|0.22222\n177234|0.30556\n177235|0.13889\n177236|0.375\n177237|0.36111\n177238|0.30556\n177239|0.22222\n177240|0.11111\n177241|0.11111\n177242|0.083333\n177243|0.27778\n177244|0.375\n177245|0.41667\n177246|0.5\n177247|0.125\n177248|0.44444\n177249|0.11111\n177250|0.59722\n177251|0.63889\n177252|0.48611\n177253|0.125\n177254|0.26389\n177255|0.58333\n177256|0.27778\n177257|0.40278\n177258|0.34722\n177259|0.18056\n177260|0.25\n177261|0.19444\n177262|0.29167\n177263|0.31944\n177264|0.44444\n177265|0.375\n177266|0.20833\n177267|0.27778\n177268|0.36111\n177269|0.33333\n177270|0.43056\n177271|0.44444\n177272|0.58333\n177273|0.41667\n177274|0.34722\n177275|0.44444\n177276|0.38889\n177277|0.5\n177278|0.19444\n177279|0.43056\n177280|0.69444\n177281|0.625\n177282|0.13889\n177283|0.375\n177284|0.44444\n177285|0.51389\n177286|0.5\n177287|0.25\n177288|0.45833\n177289|0.48611\n177290|0.625\n177291|0.47222\n177292|0.34722\n177293|0.27778\n177294|0.45833\n177295|0.15278\n177296|0.30556\n177297|0.5\n177298|0.27778\n177299|0.5\n177300|0.5\n177301|0.55556\n177302|0.43056\n177303|0.5\n177304|0.15278\n177305|0.51389\n177306|0.5\n177307|0.54167\n177308|0.5\n177309|0.77778\n177310|0.52778\n177311|0.22222\n177312|0.54167\n177313|0.5\n177314|0.5\n177315|0.47222\n177316|0.33333\n177317|0.34722\n177318|0.33333\n177319|0.41667\n177320|0.625\n177321|0.375\n177322|0.51389\n177323|0.27778\n177324|0.36111\n177325|0.25\n177326|0.5\n177327|0.77778\n177328|0.66667\n177329|0.72222\n177330|0.70833\n177331|0.5\n177332|0.5\n177333|0.52778\n177334|0.375\n177335|0.65278\n177336|0.44444\n177337|0.5\n177338|0.45833\n177339|0.375\n177340|0.5\n177341|0.40278\n177342|0.5\n177343|0.5\n177344|0.36111\n177345|0.23611\n177346|0.52778\n177347|0.27778\n177348|0.45833\n177349|0.27778\n177350|0.5\n177351|0.51389\n177352|0.47222\n177353|0.44444\n177354|0.47222\n177355|0.5\n177356|0.61111\n177357|0.5\n177358|0.5\n177359|0.47222\n177360|0.43056\n177361|0.5\n177362|0.38889\n177363|0.40278\n177364|0.38889\n177365|0.19444\n177366|0.5\n177367|0.48611\n177368|0.47222\n177369|0.70833\n177370|0.29167\n177371|0.27778\n177372|0.36111\n177373|0.38889\n177374|0.625\n177375|0.25\n177376|0.45833\n177377|0.16667\n177378|0.48611\n177379|0.45833\n177380|0.15278\n177381|0.38889\n177382|0.5\n177383|0.5\n177384|0.375\n177385|0.54167\n177386|0.66667\n177387|0.11111\n177388|0.5\n177389|0.48611\n177390|0.47222\n177391|0.36111\n177392|0.625\n177393|0.5\n177394|0.34722\n177395|0.18056\n177396|0.5\n177397|0.5\n177398|0.47222\n177399|0.66667\n177400|0.5\n177401|0.44444\n177402|0.33333\n177403|0.36111\n177404|0.63889\n177405|0.5\n177406|0.5\n177407|0.25\n177408|0.23611\n177409|0.13889\n177410|0.5\n177411|0.55556\n177412|0.5\n177413|0.45833\n177414|0.5\n177415|0.33333\n177416|0.5\n177417|0.44444\n177418|0.18056\n177419|0.19444\n177420|0.18056\n177421|0.5\n177422|0.41667\n177423|0.097222\n177424|0.26389\n177425|0.23611\n177426|0.54167\n177427|0.73611\n177428|0.65278\n177429|0.5\n177430|0.73611\n177431|0.80556\n177432|0.70833\n177433|0.45833\n177434|0.5\n177435|0.31944\n177436|0.18056\n177437|0.5\n177438|0.31944\n177439|0.61111\n177440|0.65278\n177441|0.54167\n177442|0.69444\n177443|0.73611\n177444|0.5\n177445|0.40278\n177446|0.16667\n177447|0.36111\n177448|0.41667\n177449|0.5\n177450|0.73611\n177451|0.73611\n177452|0.76389\n177453|0.22222\n177454|0.18056\n177455|0.44444\n177456|0.44444\n177457|0.625\n177458|0.55556\n177459|0.75\n177460|0.375\n177461|0.68056\n177462|0.54167\n177463|0.5\n177464|0.36111\n177465|0.5\n177466|0.5\n177467|0.27778\n177468|0.58333\n177469|0.52778\n177470|0.5\n177471|0.33333\n177472|0.27778\n177473|0.30556\n177474|0.29167\n177475|0.45833\n177476|0.52778\n177477|0.5\n177478|0.43056\n177479|0.5\n177480|0.5\n177481|0.5\n177482|0.5\n177483|0.27778\n177484|0.5\n177485|0.29167\n177486|0.18056\n177487|0.27778\n177488|0.33333\n177489|0.25\n177490|0.66667\n177491|0.23611\n177492|0.25\n177493|0.5\n177494|0.33333\n177495|0.5\n177496|0.5\n177497|0.63889\n177498|0.51389\n177499|0.40278\n177500|0.38889\n177501|0.34722\n177502|0.5\n177503|0.5\n177504|0.36111\n177505|0.54167\n177506|0.5\n177507|0.26389\n177508|0.27778\n177509|0.23611\n177510|0.20833\n177511|0.38889\n177512|0.52778\n177513|0.48611\n177514|0.72222\n177515|0.70833\n177516|0.66667\n177517|0.51389\n177518|0.52778\n177519|0.56944\n177520|0.81944\n177521|0.79167\n177522|0.29167\n177523|0.16667\n177524|0.18056\n177525|0.72222\n177526|0.34722\n177527|0.25\n177528|0.16667\n177529|0.30556\n177530|0.125\n177531|0.5\n177532|0.55556\n177533|0.5\n177534|0.22222\n177535|0.23611\n177536|0.25\n177537|0.22222\n177538|0.29167\n177539|0.5\n177540|0.5\n177541|0.40278\n177542|0.5\n177543|0.29167\n177544|0.36111\n177545|0.27778\n177546|0.44444\n177547|0.38889\n177548|0.47222\n177549|0.5\n177550|0.63889\n177551|0.65278\n177552|0.5\n177553|0.52778\n177554|0.43056\n177555|0.5\n177556|0.27778\n177557|0.16667\n177558|0.22222\n177559|0.27778\n177560|0.48611\n177561|0.38889\n177562|0.31944\n177563|0.38889\n177564|0.5\n177565|0.44444\n177566|0.5\n177567|0.43056\n177568|0.29167\n177569|0.52778\n177570|0.16667\n177571|0.45833\n177572|0.29167\n177573|0.375\n177574|0.55556\n177575|0.31944\n177576|0.23611\n177577|0.30556\n177578|0.625\n177579|0.375\n177580|0.20833\n177581|0.29167\n177582|0.23611\n177583|0.27778\n177584|0.48611\n177585|0.43056\n177586|0.51389\n177587|0.44444\n177588|0.125\n177589|0.38889\n177590|0.23611\n177591|0.48611\n177592|0.27778\n177593|0.38889\n177594|0.18056\n177595|0.44444\n177596|0.23611\n177597|0.55556\n177598|0.47222\n177599|0.51389\n177600|0.5\n177601|0.55556\n177602|0.34722\n177603|0.11111\n177604|0.48611\n177605|0.34722\n177606|0.70833\n177607|0.44444\n177608|0.40278\n177609|0.43056\n177610|0.34722\n177611|0.55556\n177612|0.43056\n177613|0.55556\n177614|0.43056\n177615|0.44444\n177616|0.5\n177617|0.5\n177618|0.55556\n177619|0.5\n177620|0.38889\n177621|0.38889\n177622|0.5\n177623|0.5\n177624|0.5\n177625|0.47222\n177626|0.5\n177627|0.29167\n177628|0.38889\n177629|0.5\n177630|0.58333\n177631|0.51389\n177632|0.69444\n177633|0.5\n177634|0.5\n177635|0.5\n177636|0.66667\n177637|0.51389\n177638|0.26389\n177639|0.11111\n177640|0.34722\n177641|0.33333\n177642|0.58333\n177643|0.5\n177644|0.18056\n177645|0.27778\n177646|0.5\n177647|0.5\n177648|0.5\n177649|0.59722\n177650|0.34722\n177651|0.68056\n177652|0.63889\n177653|0.15278\n177654|0.083333\n177655|0.5\n177656|0.23611\n177657|0.11111\n177658|0.26389\n177659|0.20833\n177660|0.375\n177661|0.11111\n177662|0.22222\n177663|0.22222\n177664|0.44444\n177665|0.29167\n177666|0.5\n177667|0.47222\n177668|0.33333\n177669|0.36111\n177670|0.47222\n177671|0.44444\n177672|0.45833\n177673|0.22222\n177674|0.51389\n177675|0.5\n177676|0.51389\n177677|0.44444\n177678|0.29167\n177679|0.19444\n177680|0.72222\n177681|0.5\n177682|0.22222\n177683|0.5\n177684|0.41667\n177685|0.40278\n177686|0.29167\n177687|0.56944\n177688|0.63889\n177689|0.54167\n177690|0.29167\n177691|0.36111\n177692|0.22222\n177693|0.51389\n177694|0.36111\n177695|0.33333\n177696|0.36111\n177697|0.47222\n177698|0.27778\n177699|0.45833\n177700|0.45833\n177701|0.16667\n177702|0.54167\n177703|0.055556\n177704|0.055556\n177705|0.30556\n177706|0.16667\n177707|0.19444\n177708|0.19444\n177709|0.63889\n177710|0.20833\n177711|0.22222\n177712|0.34722\n177713|0.48611\n177714|0.5\n177715|0.69444\n177716|0.72222\n177717|0.30556\n177718|0.56944\n177719|0.5\n177720|0.40278\n177721|0.44444\n177722|0.43056\n177723|0.26389\n177724|0.16667\n177725|0.055556\n177726|0.33333\n177727|0.38889\n177728|0.52778\n177729|0.5\n177730|0.23611\n177731|0.27778\n177732|0.5\n177733|0.5\n177734|0.27778\n177735|0.625\n177736|0.5\n177737|0.23611\n177738|0.15278\n177739|0.29167\n177740|0.44444\n177741|0.5\n177742|0.5\n177743|0.13889\n177744|0.5\n177745|0.5\n177746|0.56944\n177747|0.5\n177748|0\n177749|0.055556\n177750|0.027778\n177751|0.055556\n177752|0.15278\n177753|0.25\n177754|0.43056\n177755|0.11111\n177756|0.38889\n177757|0.51389\n177758|0.27778\n177759|0.25\n177760|0.51389\n177761|0.5\n177762|0.5\n177763|0.44444\n177764|0.375\n177765|0.5\n177766|0.56944\n177767|0.23611\n177768|0.5\n177769|0.56944\n177770|0.5\n177771|0.55556\n177772|0.58333\n177773|0.34722\n177774|0.47222\n177775|0.16667\n177776|0.375\n177777|0.25\n177778|0.5\n177779|0.38889\n177780|0.5\n177781|0.45833\n177782|0.38889\n177783|0.5\n177784|0.30556\n177785|0.52778\n177786|0.34722\n177787|0.36111\n177788|0.625\n177789|0.5\n177790|0.30556\n177791|0.44444\n177792|0.38889\n177793|0.5\n177794|0.23611\n177795|0.44444\n177796|0.75\n177797|0.29167\n177798|0.375\n177799|0.20833\n177800|0.19444\n177801|0.5\n177802|0.55556\n177803|0.43056\n177804|0.38889\n177805|0.47222\n177806|0.22222\n177807|0.27778\n177808|0.20833\n177809|0.23611\n177810|0.25\n177811|0.13889\n177812|0.52778\n177813|0.51389\n177814|0.27778\n177815|0.56944\n177816|0.5\n177817|0.5\n177818|0.45833\n177819|0.63889\n177820|0.52778\n177821|0.51389\n177822|0.36111\n177823|0.18056\n177824|0.33333\n177825|0.44444\n177826|0.33333\n177827|0.22222\n177828|0.34722\n177829|0.5\n177830|0.5\n177831|0.5\n177832|0.33333\n177833|0.36111\n177834|0.47222\n177835|0.45833\n177836|0.125\n177837|0.18056\n177838|0.13889\n177839|0.5\n177840|0.45833\n177841|0.30556\n177842|0.16667\n177843|0.38889\n177844|0.5\n177845|0.29167\n177846|0.22222\n177847|0.54167\n177848|0.54167\n177849|0.43056\n177850|0.73611\n177851|0.55556\n177852|0.63889\n177853|0.40278\n177854|0.30556\n177855|0.30556\n177856|0.43056\n177857|0.45833\n177858|0.75\n177859|0.27778\n177860|0.29167\n177861|0.43056\n177862|0.68056\n177863|0.52778\n177864|0.40278\n177865|0.22222\n177866|0.27778\n177867|0.51389\n177868|0.52778\n177869|0.5\n177870|0.27778\n177871|0.5\n177872|0.48611\n177873|0.84722\n177874|0.72222\n177875|0.77778\n177876|0.43056\n177877|0.61111\n177878|0.54167\n177879|0.48611\n177880|0.5\n177881|0.33333\n177882|0.45833\n177883|0.48611\n177884|0.77778\n177885|0.70833\n177886|0.77778\n177887|0.47222\n177888|0.55556\n177889|0.45833\n177890|0.68056\n177891|0.58333\n177892|0.48611\n177893|0.375\n177894|0.70833\n177895|0.58333\n177896|0.76389\n177897|0.33333\n177898|0.625\n177899|0.47222\n177900|0.30556\n177901|0.25\n177902|0.48611\n177903|0.54167\n177904|0.36111\n177905|0.27778\n177906|0.63889\n177907|0.5\n177908|0.51389\n177909|0.27778\n177910|0.5\n177911|0.5\n177912|0.54167\n177913|0.55556\n177914|0.5\n177915|0.43056\n177916|0.375\n177917|0.5\n177918|0.5\n177919|0.54167\n177920|0.54167\n177921|0.58333\n177922|0.5\n177923|0.625\n177924|0.5\n177925|0.41667\n177926|0.45833\n177927|0.56944\n177928|0.16667\n177929|0.11111\n177930|0.5\n177931|0.41667\n177932|0.5\n177933|0.51389\n177934|0.19444\n177935|0.18056\n177936|0.18056\n177937|0.5\n177938|0.41667\n177939|0.51389\n177940|0.44444\n177941|0.5\n177942|0.51389\n177943|0.40278\n177944|0.36111\n177945|0.58333\n177946|0.34722\n177947|0.5\n177948|0.33333\n177949|0.33333\n177950|0.40278\n177951|0.56944\n177952|0.56944\n177953|0.5\n177954|0.30556\n177955|0.27778\n177956|0.375\n177957|0.5\n177958|0.38889\n177959|0.29167\n177960|0.59722\n177961|0.38889\n177962|0.63889\n177963|0.44444\n177964|0.36111\n177965|0.55556\n177966|0.5\n177967|0.58333\n177968|0.5\n177969|0.5\n177970|0.47222\n177971|0.41667\n177972|0.29167\n177973|0.44444\n177974|0.5\n177975|0.26389\n177976|0.45833\n177977|0.44444\n177978|0.52778\n177979|0.22222\n177980|0.23611\n177981|0.22222\n177982|0.44444\n177983|0.52778\n177984|0.44444\n177985|0.72222\n177986|0.38889\n177987|0.5\n177988|0.5\n177989|0.5\n177990|0.47222\n177991|0.36111\n177992|0.5\n177993|0.61111\n177994|0.5\n177995|0.61111\n177996|0.58333\n177997|0.34722\n177998|0.55556\n177999|0.5\n178000|0.52778\n178001|0.48611\n178002|0.5\n178003|0.54167\n178004|0.38889\n178005|0.43056\n178006|0.79167\n178007|0.70833\n178008|0.54167\n178009|0.44444\n178010|0.47222\n178011|0.51389\n178012|0.19444\n178013|0.375\n178014|0.30556\n178015|0.41667\n178016|0.45833\n178017|0.43056\n178018|0.5\n178019|0.34722\n178020|0.48611\n178021|0.23611\n178022|0.5\n178023|0.63889\n178024|0.5\n178025|0.5\n178026|0.45833\n178027|0.45833\n178028|0.51389\n178029|0.5\n178030|0.5\n178031|0.16667\n178032|0.43056\n178033|0.013889\n178034|0.47222\n178035|0.375\n178036|0.54167\n178037|0.20833\n178038|0.27778\n178039|0.29167\n178040|0.5\n178041|0.38889\n178042|0.5\n178043|0.5\n178044|0.5\n178045|0.33333\n178046|0.5\n178047|0.45833\n178048|0.36111\n178049|0.44444\n178050|0.45833\n178051|0.44444\n178052|0.19444\n178053|0.36111\n178054|0.23611\n178055|0.5\n178056|0.36111\n178057|0.22222\n178058|0.44444\n178059|0.34722\n178060|0.5\n178061|0.56944\n178062|0.72222\n178063|0.34722\n178064|0.25\n178065|0.22222\n178066|0.13889\n178067|0.27778\n178068|0.58333\n178069|0.36111\n178070|0.43056\n178071|0.38889\n178072|0.5\n178073|0.47222\n178074|0.47222\n178075|0.5\n178076|0.31944\n178077|0.36111\n178078|0.43056\n178079|0.16667\n178080|0.38889\n178081|0.43056\n178082|0.45833\n178083|0.43056\n178084|0.47222\n178085|0.59722\n178086|0.5\n178087|0.33333\n178088|0.54167\n178089|0.54167\n178090|0.52778\n178091|0.16667\n178092|0.27778\n178093|0.375\n178094|0.41667\n178095|0.19444\n178096|0.38889\n178097|0.22222\n178098|0.41667\n178099|0.40278\n178100|0.44444\n178101|0.54167\n178102|0.27778\n178103|0.44444\n178104|0.38889\n178105|0.61111\n178106|0.29167\n178107|0.18056\n178108|0.5\n178109|0.625\n178110|0.5\n178111|0.19444\n178112|0.5\n178113|0.5\n178114|0.30556\n178115|0.43056\n178116|0.45833\n178117|0.48611\n178118|0.25\n178119|0.5\n178120|0.27778\n178121|0.44444\n178122|0.45833\n178123|0.41667\n178124|0.25\n178125|0.27778\n178126|0.27778\n178127|0.29167\n178128|0.48611\n178129|0.48611\n178130|0.51389\n178131|0.41667\n178132|0.40278\n178133|0.31944\n178134|0.77778\n178135|0.31944\n178136|0.30556\n178137|0.40278\n178138|0.44444\n178139|0.23611\n178140|0.5\n178141|0.16667\n178142|0.20833\n178143|0.13889\n178144|0.41667\n178145|0.47222\n178146|0.41667\n178147|0.43056\n178148|0.43056\n178149|0.75\n178150|0.5\n178151|0.5\n178152|0.20833\n178153|0.43056\n178154|0.45833\n178155|0.27778\n178156|0.25\n178157|0.26389\n178158|0.73611\n178159|0.38889\n178160|0.31944\n178161|0.055556\n178162|0.22222\n178163|0.15278\n178164|0.5\n178165|0.44444\n178166|0.5\n178167|0.72222\n178168|0.36111\n178169|0.19444\n178170|0.48611\n178171|0.22222\n178172|0.36111\n178173|0.47222\n178174|0.44444\n178175|0.52778\n178176|0.38889\n178177|0.65278\n178178|0.59722\n178179|0.36111\n178180|0.38889\n178181|0.55556\n178182|0.52778\n178183|0.54167\n178184|0.44444\n178185|0.27778\n178186|0.41667\n178187|0.22222\n178188|0.26389\n178189|0.52778\n178190|0.5\n178191|0.51389\n178192|0.36111\n178193|0.5\n178194|0.43056\n178195|0.5\n178196|0.5\n178197|0.5\n178198|0.5\n178199|0.47222\n178200|0.40278\n178201|0.45833\n178202|0.72222\n178203|0.59722\n178204|0.80556\n178205|0.5\n178206|0.73611\n178207|0.31944\n178208|0.22222\n178209|0.56944\n178210|0.31944\n178211|0.44444\n178212|0.58333\n178213|0.44444\n178214|0.5\n178215|0.18056\n178216|0.51389\n178217|0.41667\n178218|0.48611\n178219|0.34722\n178220|0.5\n178221|0.48611\n178222|0.48611\n178223|0.23611\n178224|0.44444\n178225|0.55556\n178226|0.5\n178227|0.375\n178228|0.5\n178229|0.38889\n178230|0.47222\n178231|0.44444\n178232|0.54167\n178233|0.5\n178234|0.5\n178235|0.5\n178236|0.65278\n178237|0.44444\n178238|0.51389\n178239|0.45833\n178240|0.48611\n178241|0.88889\n178242|0.5\n178243|0.5\n178244|0.47222\n178245|0.26389\n178246|0.15278\n178247|0.54167\n178248|0.375\n178249|0.44444\n178250|0.38889\n178251|0.5\n178252|0.58333\n178253|0.20833\n178254|0.38889\n178255|0.29167\n178256|0.52778\n178257|0.45833\n178258|0.5\n178259|0.43056\n178260|0.5\n178261|0.54167\n178262|0.58333\n178263|0.625\n178264|0.5\n178265|0.59722\n178266|0.25\n178267|0.5\n178268|0.5\n178269|0.44444\n178270|0.45833\n178271|0.5\n178272|0.23611\n178273|0.30556\n178274|0.5\n178275|0.5\n178276|0.30556\n178277|0.43056\n178278|0.5\n178279|0.5\n178280|0.56944\n178281|0.5\n178282|0.41667\n178283|0.5\n178284|0.45833\n178285|0.56944\n178286|0.58333\n178287|0.33333\n178288|0.23611\n178289|0.375\n178290|0.44444\n178291|0.38889\n178292|0.25\n178293|0.54167\n178294|0.70833\n178295|0.31944\n178296|0.5\n178297|0.5\n178298|0.26389\n178299|0.5\n178300|0.27778\n178301|0.56944\n178302|0.5\n178303|0.43056\n178304|0.69444\n178305|0.44444\n178306|0.56944\n178307|0.16667\n178308|0.30556\n178309|0.31944\n178310|0.38889\n178311|0.26389\n178312|0.27778\n178313|0.47222\n178314|0.38889\n178315|0.52778\n178316|0.41667\n178317|0.55556\n178318|0.33333\n178319|0.30556\n178320|0.23611\n178321|0.30556\n178322|0.5\n178323|0.48611\n178324|0.52778\n178325|0.5\n178326|0.47222\n178327|0.52778\n178328|0.36111\n178329|0.25\n178330|0.375\n178331|0.23611\n178332|0.27778\n178333|0.43056\n178334|0.48611\n178335|0.45833\n178336|0.51389\n178337|0.5\n178338|0.20833\n178339|0.13889\n178340|0.5\n178341|0.33333\n178342|0.027778\n178343|0.41667\n178344|0.69444\n178345|0.63889\n178346|0.55556\n178347|0.22222\n178348|0.27778\n178349|0.13889\n178350|0.27778\n178351|0.33333\n178352|0.54167\n178353|0.41667\n178354|0.375\n178355|0.33333\n178356|0.44444\n178357|0.29167\n178358|0.56944\n178359|0.47222\n178360|0.55556\n178361|0.38889\n178362|0.38889\n178363|0.625\n178364|0.41667\n178365|0.27778\n178366|0.43056\n178367|0.5\n178368|0.41667\n178369|0.73611\n178370|0.55556\n178371|0.52778\n178372|0.375\n178373|0.18056\n178374|0.5\n178375|0.5\n178376|0.61111\n178377|0.47222\n178378|0.45833\n178379|0.44444\n178380|0.5\n178381|0.47222\n178382|0.47222\n178383|0.18056\n178384|0.44444\n178385|0.43056\n178386|0.375\n178387|0.47222\n178388|0.38889\n178389|0.11111\n178390|0.43056\n178391|0.38889\n178392|0.54167\n178393|0.625\n178394|0.70833\n178395|0.59722\n178396|0.66667\n178397|0.51389\n178398|0.25\n178399|0.13889\n178400|0.5\n178401|0.5\n178402|0.61111\n178403|0.30556\n178404|0.125\n178405|0.55556\n178406|0.22222\n178407|0.41667\n178408|0.55556\n178409|0.45833\n178410|0.5\n178411|0.56944\n178412|0.34722\n178413|0.30556\n178414|0.30556\n178415|0.48611\n178416|0.58333\n178417|0.40278\n178418|0.52778\n178419|0.30556\n178420|0.27778\n178421|0.58333\n178422|0.5\n178423|0.47222\n178424|0.5\n178425|0.5\n178426|0.375\n178427|0.27778\n178428|0.375\n178429|0.38889\n178430|0.5\n178431|0.63889\n178432|0.33333\n178433|0.51389\n178434|0.43056\n178435|0.25\n178436|0.19444\n178437|0.45833\n178438|0.20833\n178439|0.22222\n178440|0.5\n178441|0.77778\n178442|0.48611\n178443|0.61111\n178444|0.61111\n178445|0.5\n178446|0.41667\n178447|0.34722\n178448|0.51389\n178449|0.16667\n178450|0.55556\n178451|0.5\n178452|0.16667\n178453|0.18056\n178454|0.40278\n178455|0.33333\n178456|0.31944\n178457|0.51389\n178458|0.66667\n178459|0.66667\n178460|0.5\n178461|0.16667\n178462|0.40278\n178463|0.5\n178464|0.5\n178465|0.5\n178466|0.5\n178467|0.51389\n178468|0.30556\n178469|0.38889\n178470|0.5\n178471|0.48611\n178472|0.54167\n178473|0.34722\n178474|0.11111\n178475|0.625\n178476|0.5\n178477|0.5\n178478|0.5\n178479|0.56944\n178480|0.44444\n178481|0.33333\n178482|0.375\n178483|0.41667\n178484|0.56944\n178485|0.5\n178486|0.45833\n178487|0.70833\n178488|0.69444\n178489|0.41667\n178490|0.5\n178491|0.61111\n178492|0.47222\n178493|0.41667\n178494|0.5\n178495|0.48611\n178496|0.26389\n178497|0.5\n178498|0.33333\n178499|0.5\n178500|0.40278\n178501|0.27778\n178502|0.5\n178503|0.33333\n178504|0.65278\n178505|0.44444\n178506|0.27778\n178507|0.33333\n178508|0.33333\n178509|0.43056\n178510|0.5\n178511|0.54167\n178512|0.44444\n178513|0.68056\n178514|0.5\n178515|0.34722\n178516|0.56944\n178517|0.45833\n178518|0.31944\n178519|0.15278\n178520|0.33333\n178521|0.47222\n178522|0.44444\n178523|0.33333\n178524|0.41667\n178525|0.76389\n178526|0.48611\n178527|0.43056\n178528|0.25\n178529|0.5\n178530|0.27778\n178531|0.5\n178532|0.51389\n178533|0.40278\n178534|0.19444\n178535|0.20833\n178536|0.41667\n178537|0.19444\n178538|0.5\n178539|0.56944\n178540|0.45833\n178541|0.52778\n178542|0.5\n178543|0.625\n178544|0.54167\n178545|0.22222\n178546|0.54167\n178547|0.29167\n178548|0.375\n178549|0.43056\n178550|0.19444\n178551|0.56944\n178552|0.33333\n178553|0.625\n178554|0.5\n178555|0.41667\n178556|0.66667\n178557|0.26389\n178558|0.5\n178559|0.51389\n178560|0.44444\n178561|0.36111\n178562|0.45833\n178563|0.38889\n178564|0.55556\n178565|0.59722\n178566|0.34722\n178567|0.65278\n178568|0.30556\n178569|0.51389\n178570|0.20833\n178571|0.375\n178572|0.38889\n178573|0.5\n178574|0.5\n178575|0.43056\n178576|0.58333\n178577|0.5\n178578|0.44444\n178579|0.44444\n178580|0.29167\n178581|0.5\n178582|0.20833\n178583|0.5\n178584|0.54167\n178585|0.23611\n178586|0.48611\n178587|0.81944\n178588|0.36111\n178589|0.56944\n178590|0.27778\n178591|0.59722\n178592|0.40278\n178593|0.16667\n178594|0.65278\n178595|0.5\n178596|0.44444\n178597|0.41667\n178598|0.69444\n178599|0.48611\n178600|0.22222\n178601|0.40278\n178602|0.54167\n178603|0.11111\n178604|0.47222\n178605|0.43056\n178606|0.33333\n178607|0.5\n178608|0.375\n178609|0.5\n178610|0.5\n178611|0.58333\n178612|0.44444\n178613|0.5\n178614|0.5\n178615|0.63889\n178616|0.5\n178617|0.31944\n178618|0.15278\n178619|0.34722\n178620|0.375\n178621|0.48611\n178622|0.31944\n178623|0.5\n178624|0.52778\n178625|0.44444\n178626|0.44444\n178627|0.54167\n178628|0.26389\n178629|0.27778\n178630|0.61111\n178631|0.5\n178632|0.51389\n178633|0.56944\n178634|0.22222\n178635|0.5\n178636|0.58333\n178637|0.625\n178638|0.58333\n178639|0.48611\n178640|0.51389\n178641|0.34722\n178642|0.36111\n178643|0.23611\n178644|0.36111\n178645|0.5\n178646|0.5\n178647|0.79167\n178648|0.55556\n178649|0.5\n178650|0.54167\n178651|0.54167\n178652|0.31944\n178653|0.5\n178654|0.5\n178655|0.30556\n178656|0.55556\n178657|0.5\n178658|0.58333\n178659|0.33333\n178660|0.55556\n178661|0.40278\n178662|0.18056\n178663|0.31944\n178664|0.36111\n178665|0.43056\n178666|0.34722\n178667|0.375\n178668|0.13889\n178669|0.51389\n178670|0.45833\n178671|0.40278\n178672|0.30556\n178673|0.33333\n178674|0.52778\n178675|0.61111\n178676|0.5\n178677|0.58333\n178678|0.47222\n178679|0.52778\n178680|0.63889\n178681|0.19444\n178682|0.5\n178683|0.5\n178684|0.31944\n178685|0.5\n178686|0.5\n178687|0.47222\n178688|0.23611\n178689|0.44444\n178690|0.44444\n178691|0.66667\n178692|0.40278\n178693|0.54167\n178694|0.125\n178695|0.45833\n178696|0.25\n178697|0.38889\n178698|0.625\n178699|0.5\n178700|0.16667\n178701|0.38889\n178702|0.63889\n178703|0.41667\n178704|0.40278\n178705|0.5\n178706|0.55556\n178707|0.44444\n178708|0.41667\n178709|0.40278\n178710|0.56944\n178711|0.40278\n178712|0.29167\n178713|0.41667\n178714|0.47222\n178715|0.5\n178716|0.36111\n178717|0.26389\n178718|0.47222\n178719|0.20833\n178720|0.52778\n178721|0.33333\n178722|0.23611\n178723|0.40278\n178724|0.43056\n178725|0.31944\n178726|0.38889\n178727|0.5\n178728|0.25\n178729|0.22222\n178730|0.15278\n178731|0.29167\n178732|0.5\n178733|0.75\n178734|0.34722\n178735|0.63889\n178736|0.58333\n178737|0.27778\n178738|0.51389\n178739|0.13889\n178740|0.26389\n178741|0.34722\n178742|0.34722\n178743|0.36111\n178744|0.38889\n178745|0.33333\n178746|0.43056\n178747|0.25\n178748|0.56944\n178749|0.5\n178750|0.25\n178751|0.48611\n178752|0.375\n178753|0.29167\n178754|0.27778\n178755|0.27778\n178756|0.48611\n178757|0.52778\n178758|0.25\n178759|0.5\n178760|0.44444\n178761|0.30556\n178762|0.38889\n178763|0.56944\n178764|0.27778\n178765|0.45833\n178766|0.25\n178767|0.33333\n178768|0.79167\n178769|0.44444\n178770|0.47222\n178771|0.5\n178772|0.375\n178773|0.44444\n178774|0.45833\n178775|0.51389\n178776|0.44444\n178777|0.38889\n178778|0.5\n178779|0.19444\n178780|0.22222\n178781|0.18056\n178782|0.5\n178783|0.52778\n178784|0.33333\n178785|0.18056\n178786|0.61111\n178787|0.5\n178788|0.52778\n178789|0.44444\n178790|0.38889\n178791|0.58333\n178792|0.40278\n178793|0.61111\n178794|0.58333\n178795|0.29167\n178796|0.5\n178797|0.5\n178798|0.58333\n178799|0.5\n178800|0.61111\n178801|0.68056\n178802|0.51389\n178803|0.72222\n178804|0.58333\n178805|0.66667\n178806|0.375\n178807|0.40278\n178808|0.125\n178809|0.125\n178810|0.45833\n178811|0.48611\n178812|0.44444\n178813|0.70833\n178814|0.58333\n178815|0.66667\n178816|0.66667\n178817|0.31944\n178818|0.54167\n178819|0.88889\n178820|0.47222\n178821|0.30556\n178822|0.083333\n178823|0.44444\n178824|0.5\n178825|0.68056\n178826|0.5\n178827|0.26389\n178828|0.40278\n178829|0.44444\n178830|0.38889\n178831|0.41667\n178832|0.125\n178833|0.30556\n178834|0.36111\n178835|0.27778\n178836|0.26389\n178837|0.15278\n178838|0.5\n178839|0.63889\n178840|0.61111\n178841|0.45833\n178842|0.61111\n178843|0.625\n178844|0.75\n178845|0.63889\n178846|0.63889\n178847|0.5\n178848|0.375\n178849|0.5\n178850|0.48611\n178851|0.5\n178852|0.23611\n178853|0.5\n178854|0.36111\n178855|0.38889\n178856|0.33333\n178857|0.5\n178858|0.59722\n178859|0.23611\n178860|0.45833\n178861|0.5\n178862|0.041667\n178863|0.18056\n178864|0.27778\n178865|0.19444\n178866|0.41667\n178867|0.26389\n178868|0.36111\n178869|0.69444\n178870|0.5\n178871|0.40278\n178872|0.375\n178873|0.36111\n178874|0.33333\n178875|0.61111\n178876|0.58333\n178877|0.27778\n178878|0.5\n178879|0.41667\n178880|0.31944\n178881|0.055556\n178882|0.15278\n178883|0.31944\n178884|0.31944\n178885|0.48611\n178886|0.59722\n178887|0.54167\n178888|0.13889\n178889|0.069444\n178890|0.44444\n178891|0.375\n178892|0.45833\n178893|0.5\n178894|0.41667\n178895|0.5\n178896|0.30556\n178897|0.41667\n178898|0.66667\n178899|0.38889\n178900|0.52778\n178901|0.38889\n178902|0.44444\n178903|0.16667\n178904|0.44444\n178905|0.083333\n178906|0.125\n178907|0.54167\n178908|0.58333\n178909|0.54167\n178910|0.69444\n178911|0.41667\n178912|0.33333\n178913|0.22222\n178914|0.30556\n178915|0.20833\n178916|0.22222\n178917|0.18056\n178918|0.55556\n178919|0.26389\n178920|0.59722\n178921|0.36111\n178922|0.069444\n178923|0.097222\n178924|0.125\n178925|0.083333\n178926|0.27778\n178927|0.54167\n178928|0.54167\n178929|0.44444\n178930|0.38889\n178931|0.31944\n178932|0.5\n178933|0.36111\n178934|0.15278\n178935|0.22222\n178936|0.44444\n178937|0.44444\n178938|0.5\n178939|0.44444\n178940|0.72222\n178941|0.5\n178942|0.5\n178943|0.5\n178944|0.5\n178945|0.5\n178946|0.5\n178947|0.375\n178948|0.47222\n178949|0.625\n178950|0.51389\n178951|0.5\n178952|0.33333\n178953|0.15278\n178954|0.11111\n178955|0.027778\n178956|0.44444\n178957|0.16667\n178958|0.18056\n178959|0.125\n178960|0.56944\n178961|0.5\n178962|0.375\n178963|0.52778\n178964|0.5\n178965|0.5\n178966|0.5\n178967|0.69444\n178968|0.5\n178969|0.5\n178970|0.51389\n178971|0.22222\n178972|0.52778\n178973|0.5\n178974|0.5\n178975|0.5\n178976|0.5\n178977|0.38889\n178978|0.47222\n178979|0.5\n178980|0.5\n178981|0.29167\n178982|0.11111\n178983|0.5\n178984|0.5\n178985|0.5\n178986|0.19444\n178987|0.38889\n178988|0.38889\n178989|0.31944\n178990|0.19444\n178991|0.20833\n178992|0.44444\n178993|0.47222\n178994|0.41667\n178995|0.40278\n178996|0.31944\n178997|0.27778\n178998|0.38889\n178999|0.36111\n179000|0.5\n179001|0.5\n179002|0.44444\n179003|0.5\n179004|0.5\n179005|0.5\n179006|0.083333\n179007|0.16667\n179008|0.51389\n179009|0.38889\n179010|0.55556\n179011|0.5\n179012|0.29167\n179013|0.5\n179014|0.5\n179015|0.31944\n179016|0.11111\n179017|0.27778\n179018|0.5\n179019|0.5\n179020|0.5\n179021|0.5\n179022|0.51389\n179023|0.30556\n179024|0.41667\n179025|0.375\n179026|0.44444\n179027|0.5\n179028|0.55556\n179029|0.20833\n179030|0.5\n179031|0.44444\n179032|0.40278\n179033|0.27778\n179034|0.125\n179035|0.38889\n179036|0.48611\n179037|0.51389\n179038|0.33333\n179039|0.36111\n179040|0.44444\n179041|0.48611\n179042|0.45833\n179043|0.29167\n179044|0.16667\n179045|0.47222\n179046|0.79167\n179047|0.45833\n179048|0.5\n179049|0.48611\n179050|0.30556\n179051|0.5\n179052|0.18056\n179053|0.38889\n179054|0.5\n179055|0.54167\n179056|0.65278\n179057|0.55556\n179058|0.52778\n179059|0.52778\n179060|0.5\n179061|0.41667\n179062|0.5\n179063|0.38889\n179064|0.44444\n179065|0.38889\n179066|0.5\n179067|0.44444\n179068|0.47222\n179069|0.5\n179070|0.47222\n179071|0.33333\n179072|0.45833\n179073|0.47222\n179074|0.30556\n179075|0.31944\n179076|0.56944\n179077|0.56944\n179078|0.47222\n179079|0.5\n179080|0.5\n179081|0.47222\n179082|0.41667\n179083|0.68056\n179084|0.34722\n179085|0.26389\n179086|0.41667\n179087|0.34722\n179088|0.51389\n179089|0.45833\n179090|0.33333\n179091|0.625\n179092|0.5\n179093|0.40278\n179094|0.40278\n179095|0.23611\n179096|0.5\n179097|0.5\n179098|0.61111\n179099|0.34722\n179100|0.19444\n179101|0.45833\n179102|0.38889\n179103|0.5\n179104|0.61111\n179105|0.29167\n179106|0.13889\n179107|0.44444\n179108|0.48611\n179109|0.56944\n179110|0.27778\n179111|0.5\n179112|0.33333\n179113|0.41667\n179114|0.44444\n179115|0.26389\n179116|0.31944\n179117|0.19444\n179118|0.25\n179119|0.375\n179120|0.55556\n179121|0.625\n179122|0.5\n179123|0.20833\n179124|0.34722\n179125|0.375\n179126|0.30556\n179127|0.65278\n179128|0.43056\n179129|0.5\n179130|0.48611\n179131|0.25\n179132|0.72222\n179133|0.5\n179134|0.45833\n179135|0.44444\n179136|0.5\n179137|0.20833\n179138|0.27778\n179139|0.43056\n179140|0.27778\n179141|0.34722\n179142|0.44444\n179143|0.55556\n179144|0.40278\n179145|0.48611\n179146|0.54167\n179147|0.5\n179148|0.30556\n179149|0.26389\n179150|0.34722\n179151|0.55556\n179152|0.52778\n179153|0.5\n179154|0.375\n179155|0.18056\n179156|0.38889\n179157|0.34722\n179158|0.15278\n179159|0.54167\n179160|0.5\n179161|0.625\n179162|0.69444\n179163|0.44444\n179164|0.5\n179165|0.5\n179166|0.11111\n179167|0.375\n179168|0.5\n179169|0.36111\n179170|0.40278\n179171|0.61111\n179172|0.54167\n179173|0.375\n179174|0.47222\n179175|0.61111\n179176|0.23611\n179177|0.5\n179178|0.30556\n179179|0.44444\n179180|0.58333\n179181|0.22222\n179182|0.34722\n179183|0.26389\n179184|0.55556\n179185|0.18056\n179186|0.22222\n179187|0.27778\n179188|0.27778\n179189|0.34722\n179190|0.30556\n179191|0.5\n179192|0.52778\n179193|0.45833\n179194|0.5\n179195|0.56944\n179196|0.55556\n179197|0.19444\n179198|0.5\n179199|0.5\n179200|0.5\n179201|0.56944\n179202|0.47222\n179203|0.5\n179204|0.5\n179205|0.16667\n179206|0.5\n179207|0.47222\n179208|0.38889\n179209|0.44444\n179210|0.5\n179211|0.56944\n179212|0.25\n179213|0.33333\n179214|0.33333\n179215|0.22222\n179216|0.40278\n179217|0.40278\n179218|0.27778\n179219|0.5\n179220|0.47222\n179221|0.56944\n179222|0.55556\n179223|0.52778\n179224|0.26389\n179225|0.31944\n179226|0.55556\n179227|0.5\n179228|0.5\n179229|0.5\n179230|0.5\n179231|0.30556\n179232|0.65278\n179233|0.47222\n179234|0.43056\n179235|0.51389\n179236|0.5\n179237|0.44444\n179238|0.5\n179239|0.5\n179240|0.52778\n179241|0.5\n179242|0.44444\n179243|0.36111\n179244|0.625\n179245|0.48611\n179246|0.45833\n179247|0.5\n179248|0.19444\n179249|0.44444\n179250|0.43056\n179251|0.5\n179252|0.5\n179253|0.44444\n179254|0.30556\n179255|0.5\n179256|0.19444\n179257|0.44444\n179258|0.27778\n179259|0.43056\n179260|0.22222\n179261|0.77778\n179262|0.63889\n179263|0.5\n179264|0.48611\n179265|0.5\n179266|0.5\n179267|0.44444\n179268|0.33333\n179269|0.41667\n179270|0.5\n179271|0.5\n179272|0.5\n179273|0.66667\n179274|0.58333\n179275|0.63889\n179276|0.20833\n179277|0.5\n179278|0.33333\n179279|0.5\n179280|0.40278\n179281|0.375\n179282|0.29167\n179283|0.5\n179284|0.58333\n179285|0.5\n179286|0.44444\n179287|0.61111\n179288|0.5\n179289|0.5\n179290|0.18056\n179291|0.30556\n179292|0.40278\n179293|0.34722\n179294|0.5\n179295|0.5\n179296|0.13889\n179297|0.41667\n179298|0.43056\n179299|0.5\n179300|0.41667\n179301|0.41667\n179302|0.45833\n179303|0.45833\n179304|0.5\n179305|0.5\n179306|0.52778\n179307|0.51389\n179308|0.52778\n179309|0.25\n179310|0.61111\n179311|0.58333\n179312|0.30556\n179313|0.55556\n179314|0.5\n179315|0.23611\n179316|0.52778\n179317|0.55556\n179318|0.73611\n179319|0.41667\n179320|0.43056\n179321|0.5\n179322|0.44444\n179323|0.5\n179324|0.38889\n179325|0.5\n179326|0.5\n179327|0.76389\n179328|0.61111\n179329|0.22222\n179330|0.44444\n179331|0.48611\n179332|0.72222\n179333|0.5\n179334|0.44444\n179335|0.34722\n179336|0.11111\n179337|0.5\n179338|0.41667\n179339|0.23611\n179340|0.51389\n179341|0.70833\n179342|0.5\n179343|0.56944\n179344|0.41667\n179345|0.44444\n179346|0.5\n179347|0.44444\n179348|0.44444\n179349|0.30556\n179350|0.11111\n179351|0.38889\n179352|0.5\n179353|0.5\n179354|0.40278\n179355|0.29167\n179356|0.41667\n179357|0.5\n179358|0.38889\n179359|0.36111\n179360|0.47222\n179361|0.33333\n179362|0.26389\n179363|0.29167\n179364|0.31944\n179365|0.59722\n179366|0.51389\n179367|0.44444\n179368|0.66667\n179369|0.19444\n179370|0.11111\n179371|0.5\n179372|0.11111\n179373|0.16667\n179374|0.22222\n179375|0.375\n179376|0.5\n179377|0.20833\n179378|0.16667\n179379|0.23611\n179380|0.23611\n179381|0.18056\n179382|0.54167\n179383|0.51389\n179384|0.5\n179385|0.16667\n179386|0.47222\n179387|0.43056\n179388|0.5\n179389|0.083333\n179390|0.055556\n179391|0.44444\n179392|0.20833\n179393|0.44444\n179394|0.27778\n179395|0.63889\n179396|0.18056\n179397|0.19444\n179398|0.31944\n179399|0.5\n179400|0.083333\n179401|0.19444\n179402|0.19444\n179403|0.38889\n179404|0.33333\n179405|0.27778\n179406|0.31944\n179407|0.40278\n179408|0.11111\n179409|0.30556\n179410|0.23611\n179411|0.34722\n179412|0.013889\n179413|0.23611\n179414|0.125\n179415|0.5\n179416|0.5\n179417|0.30556\n179418|0.27778\n179419|0.33333\n179420|0.51389\n179421|0.5\n179422|0.43056\n179423|0.5\n179424|0.33333\n179425|0.27778\n179426|0.5\n179427|0.625\n179428|0.72222\n179429|0.41667\n179430|0.5\n179431|0.25\n179432|0.54167\n179433|0.38889\n179434|0.5\n179435|0.27778\n179436|0.18056\n179437|0.38889\n179438|0.33333\n179439|0.44444\n179440|0.52778\n179441|0.52778\n179442|0.55556\n179443|0.59722\n179444|0.19444\n179445|0.25\n179446|0.27778\n179447|0.59722\n179448|0.40278\n179449|0.68056\n179450|0.5\n179451|0.33333\n179452|0.20833\n179453|0.33333\n179454|0.36111\n179455|0.51389\n179456|0.40278\n179457|0.34722\n179458|0.61111\n179459|0.25\n179460|0.69444\n179461|0.5\n179462|0.48611\n179463|0.36111\n179464|0.40278\n179465|0.38889\n179466|0.5\n179467|0.29167\n179468|0.33333\n179469|0.44444\n179470|0.38889\n179471|0.54167\n179472|0.5\n179473|0.33333\n179474|0.27778\n179475|0.5\n179476|0.19444\n179477|0.27778\n179478|0.5\n179479|0.625\n179480|0.52778\n179481|0.55556\n179482|0.47222\n179483|0.027778\n179484|0.44444\n179485|0.65278\n179486|0.5\n179487|0.5\n179488|0.5\n179489|0.66667\n179490|0.52778\n179491|0.5\n179492|0.76389\n179493|0.5\n179494|0.23611\n179495|0.25\n179496|0.38889\n179497|0.41667\n179498|0.15278\n179499|0.22222\n179500|0.52778\n179501|0.5\n179502|0.625\n179503|0.30556\n179504|0.25\n179505|0.86111\n179506|0.31944\n179507|0.48611\n179508|0.5\n179509|0.44444\n179510|0.27778\n179511|0.69444\n179512|0.66667\n179513|0.56944\n179514|0.5\n179515|0.40278\n179516|0.38889\n179517|0.5\n179518|0.20833\n179519|0.45833\n179520|0.59722\n179521|0.38889\n179522|0.72222\n179523|0.77778\n179524|0.33333\n179525|0.56944\n179526|0.25\n179527|0.23611\n179528|0.18056\n179529|0.65278\n179530|0.625\n179531|0.58333\n179532|0.30556\n179533|0.25\n179534|0.27778\n179535|0.38889\n179536|0.38889\n179537|0.125\n179538|0.375\n179539|0.45833\n179540|0.27778\n179541|0.22222\n179542|0.16667\n179543|0.16667\n179544|0.22222\n179545|0.84722\n179546|0.84722\n179547|0.5\n179548|0.5\n179549|0.22222\n179550|0.5\n179551|0.61111\n179552|0.5\n179553|0\n179554|0.055556\n179555|0.34722\n179556|0.23611\n179557|0.45833\n179558|0.30556\n179559|0.33333\n179560|0.29167\n179561|0.16667\n179562|0.52778\n179563|0.30556\n179564|0.13889\n179565|0.125\n179566|0.27778\n179567|0.19444\n179568|0.22222\n179569|0.43056\n179570|0.31944\n179571|0.23611\n179572|0.30556\n179573|0.63889\n179574|0.44444\n179575|0.47222\n179576|0\n179577|0.055556\n179578|0.097222\n179579|0.125\n179580|0.16667\n179581|0.38889\n179582|0.47222\n179583|0.61111\n179584|0.16667\n179585|0.16667\n179586|0.5\n179587|0.36111\n179588|0.5\n179589|0.91667\n179590|0.19444\n179591|0.45833\n179592|0.72222\n179593|0.70833\n179594|0.65278\n179595|0.29167\n179596|0.48611\n179597|0.44444\n179598|0.55556\n179599|0.33333\n179600|0.5\n179601|0.44444\n179602|0.51389\n179603|0.30556\n179604|0.26389\n179605|0.72222\n179606|0.38889\n179607|0.41667\n179608|0.34722\n179609|0.22222\n179610|0.5\n179611|0.30556\n179612|0.31944\n179613|0.26389\n179614|0.40278\n179615|0.11111\n179616|0.25\n179617|0.375\n179618|0.23611\n179619|0.15278\n179620|0.47222\n179621|0.80556\n179622|0.5\n179623|0.43056\n179624|0.72222\n179625|0.79167\n179626|0.25\n179627|0.40278\n179628|0.73611\n179629|0.61111\n179630|0.36111\n179631|0.22222\n179632|0.34722\n179633|0.45833\n179634|0.15278\n179635|0.26389\n179636|0.38889\n179637|0.26389\n179638|0.23611\n179639|0.43056\n179640|0.41667\n179641|0.055556\n179642|0.16667\n179643|0.69444\n179644|0.72222\n179645|0.56944\n179646|0.44444\n179647|0.5\n179648|0.13889\n179649|0.20833\n179650|0.52778\n179651|0.55556\n179652|0.23611\n179653|0.44444\n179654|0.43056\n179655|0.5\n179656|0.51389\n179657|0.33333\n179658|0.43056\n179659|0.26389\n179660|0.63889\n179661|0.55556\n179662|0.48611\n179663|0.19444\n179664|0.80556\n179665|0.69444\n179666|0.63889\n179667|0.61111\n179668|0.25\n179669|0.22222\n179670|0.5\n179671|0.44444\n179672|0.47222\n179673|0.66667\n179674|0.55556\n179675|0.66667\n179676|0.69444\n179677|0.73611\n179678|0.72222\n179679|0.80556\n179680|0.625\n179681|0.73611\n179682|0.625\n179683|0.63889\n179684|0.51389\n179685|0.43056\n179686|0.29167\n179687|0.11111\n179688|0.52778\n179689|0.55556\n179690|0.51389\n179691|0.47222\n179692|0.38889\n179693|0.25\n179694|0.33333\n179695|0.43056\n179696|0.22222\n179697|0.31944\n179698|0.19444\n179699|0.20833\n179700|0.44444\n179701|0.69444\n179702|0.54167\n179703|0.125\n179704|0.31944\n179705|0.375\n179706|0.26389\n179707|0.26389\n179708|0.16667\n179709|0.083333\n179710|0.44444\n179711|0.5\n179712|0.38889\n179713|0.15278\n179714|0.40278\n179715|0.083333\n179716|0.11111\n179717|0.52778\n179718|0.5\n179719|0.38889\n179720|0.34722\n179721|0.73611\n179722|0.66667\n179723|0.55556\n179724|0.22222\n179725|0.25\n179726|0.27778\n179727|0.19444\n179728|0.73611\n179729|0.54167\n179730|0.36111\n179731|0.5\n179732|0.33333\n179733|0.29167\n179734|0.41667\n179735|0.36111\n179736|0.45833\n179737|0.31944\n179738|0.20833\n179739|0.25\n179740|0.23611\n179741|0.29167\n179742|0.43056\n179743|0.45833\n179744|0.27778\n179745|0.27778\n179746|0.38889\n179747|0.44444\n179748|0.26389\n179749|0.11111\n179750|0.5\n179751|0.65278\n179752|0.65278\n179753|0.65278\n179754|0.38889\n179755|0.33333\n179756|0.69444\n179757|0.55556\n179758|0.625\n179759|0.55556\n179760|0.27778\n179761|0.47222\n179762|0.5\n179763|0.61111\n179764|0.36111\n179765|0.40278\n179766|0.34722\n179767|0.22222\n179768|0.33333\n179769|0.13889\n179770|0.26389\n179771|0.31944\n179772|0.097222\n179773|0.11111\n179774|0.11111\n179775|0.38889\n179776|0.63889\n179777|0.34722\n179778|0.5\n179779|0.33333\n179780|0.30556\n179781|0.33333\n179782|0.083333\n179783|0.5\n179784|0.125\n179785|0.5\n179786|0.80556\n179787|0.22222\n179788|0.34722\n179789|0.44444\n179790|0.5\n179791|0.51389\n179792|0.16667\n179793|0.41667\n179794|0.27778\n179795|0.58333\n179796|0.72222\n179797|0.54167\n179798|0.41667\n179799|0.43056\n179800|0.45833\n179801|0.38889\n179802|0.33333\n179803|0.13889\n179804|0.30556\n179805|0.15278\n179806|0.43056\n179807|0.31944\n179808|0.22222\n179809|0.19444\n179810|0.22222\n179811|0.083333\n179812|0.19444\n179813|0.23611\n179814|0.40278\n179815|0.33333\n179816|0.29167\n179817|0.22222\n179818|0.11111\n179819|0.27778\n179820|0.22222\n179821|0.375\n179822|0.45833\n179823|0.44444\n179824|0.22222\n179825|0.38889\n179826|0.29167\n179827|0.25\n179828|0.29167\n179829|0.41667\n179830|0.31944\n179831|0.27778\n179832|0.65278\n179833|0.40278\n179834|0.27778\n179835|0.40278\n179836|0.45833\n179837|0.33333\n179838|0.20833\n179839|0.097222\n179840|0.65278\n179841|0.51389\n179842|0.40278\n179843|0.18056\n179844|0.18056\n179845|0.22222\n179846|0.26389\n179847|0.44444\n179848|0.43056\n179849|0.47222\n179850|0.23611\n179851|0.59722\n179852|0.36111\n179853|0.77778\n179854|0.45833\n179855|0.33333\n179856|0.48611\n179857|0.45833\n179858|0.25\n179859|0.5\n179860|0.5\n179861|0.31944\n179862|0.27778\n179863|0.5\n179864|0.33333\n179865|0.055556\n179866|0.125\n179867|0.36111\n179868|0.44444\n179869|0.48611\n179870|0.27778\n179871|0.083333\n179872|0.25\n179873|0.33333\n179874|0.44444\n179875|0.58333\n179876|0.16667\n179877|0.15278\n179878|0.26389\n179879|0.16667\n179880|0.31944\n179881|0.13889\n179882|0.47222\n179883|0.38889\n179884|0.36111\n179885|0.43056\n179886|0.30556\n179887|0.26389\n179888|0.23611\n179889|0.22222\n179890|0.23611\n179891|0.30556\n179892|0.31944\n179893|0.30556\n179894|0.19444\n179895|0.15278\n179896|0.38889\n179897|0.5\n179898|0.30556\n179899|0.33333\n179900|0.22222\n179901|0.22222\n179902|0.40278\n179903|0.72222\n179904|0.48611\n179905|0.54167\n179906|0.5\n179907|0.30556\n179908|0.38889\n179909|0.59722\n179910|0.54167\n179911|0.55556\n179912|0.27778\n179913|0.55556\n179914|0.43056\n179915|0.25\n179916|0.58333\n179917|0.51389\n179918|0.48611\n179919|0.25\n179920|0.29167\n179921|0.25\n179922|0.20833\n179923|0.22222\n179924|0.55556\n179925|0.5\n179926|0.54167\n179927|0.55556\n179928|0.5\n179929|0.38889\n179930|0.52778\n179931|0.5\n179932|0.41667\n179933|0.5\n179934|0.11111\n179935|0.31944\n179936|0.63889\n179937|0.5\n179938|0.38889\n179939|0.41667\n179940|0.52778\n179941|0.5\n179942|0.23611\n179943|0.34722\n179944|0.25\n179945|0.63889\n179946|0.70833\n179947|0.77778\n179948|0.66667\n179949|0.27778\n179950|0.27778\n179951|0.5\n179952|0.58333\n179953|0.63889\n179954|0.44444\n179955|0.26389\n179956|0.15278\n179957|0.19444\n179958|0.26389\n179959|0.5\n179960|0.5\n179961|0.23611\n179962|0.33333\n179963|0.63889\n179964|0.72222\n179965|0.38889\n179966|0.25\n179967|0.16667\n179968|0.41667\n179969|0.5\n179970|0.27778\n179971|0.48611\n179972|0.45833\n179973|0.5\n179974|0.18056\n179975|0.38889\n179976|0.20833\n179977|0.16667\n179978|0.20833\n179979|0.36111\n179980|0.27778\n179981|0.47222\n179982|0.52778\n179983|0.19444\n179984|0.41667\n179985|0.375\n179986|0.18056\n179987|0.19444\n179988|0.44444\n179989|0.61111\n179990|0.68056\n179991|0.66667\n179992|0.27778\n179993|0.38889\n179994|0.47222\n179995|0.41667\n179996|0.38889\n179997|0.23611\n179998|0.54167\n179999|0.33333\n180000|0.33333\n180001|0.45833\n180002|0.16667\n180003|0.44444\n180004|0.40278\n180005|0.38889\n180006|0.54167\n180007|0.375\n180008|0.18056\n180009|0.19444\n180010|0.44444\n180011|0.5\n180012|0.55556\n180013|0.23611\n180014|0.47222\n180015|0.36111\n180016|0.59722\n180017|0.43056\n180018|0.5\n180019|0.5\n180020|0.40278\n180021|0.27778\n180022|0.31944\n180023|0.84722\n180024|0.88889\n180025|0.41667\n180026|0.51389\n180027|0.5\n180028|0.65278\n180029|0.88889\n180030|0.13889\n180031|0.13889\n180032|0.5\n180033|0.41667\n180034|0.70833\n180035|0.34722\n180036|0.125\n180037|0.36111\n180038|0.16667\n180039|0.47222\n180040|0.013889\n180041|0.34722\n180042|0.38889\n180043|0.26389\n180044|0.55556\n180045|0.47222\n180046|0.44444\n180047|0.29167\n180048|0.34722\n180049|0.20833\n180050|0.19444\n180051|0.22222\n180052|0.30556\n180053|0.5\n180054|0.5\n180055|0.33333\n180056|0.38889\n180057|0.22222\n180058|0.48611\n180059|0.26389\n180060|0.11111\n180061|0.27778\n180062|0.22222\n180063|0.16667\n180064|0.33333\n180065|0.30556\n180066|0.15278\n180067|0.29167\n180068|0.375\n180069|0.44444\n180070|0.43056\n180071|0.30556\n180072|0.36111\n180073|0.56944\n180074|0.18056\n180075|0.625\n180076|0.59722\n180077|0.65278\n180078|0.52778\n180079|0.44444\n180080|0.36111\n180081|0.31944\n180082|0.16667\n180083|0.15278\n180084|0.26389\n180085|0.22222\n180086|0.18056\n180087|0.18056\n180088|0.44444\n180089|0.25\n180090|0.027778\n180091|0.36111\n180092|0.22222\n180093|0.38889\n180094|0.40278\n180095|0.36111\n180096|0.26389\n180097|0.15278\n180098|0.52778\n180099|0.5\n180100|0.34722\n180101|0.11111\n180102|0.16667\n180103|0.23611\n180104|0.27778\n180105|0.18056\n180106|0.22222\n180107|0.30556\n180108|0.48611\n180109|0.52778\n180110|0.27778\n180111|0.16667\n180112|0.30556\n180113|0.30556\n180114|0.40278\n180115|0.58333\n180116|0.61111\n180117|0.75\n180118|0.77778\n180119|0.55556\n180120|0.65278\n180121|0.51389\n180122|0.375\n180123|0.44444\n180124|0.5\n180125|0.15278\n180126|0.5\n180127|0.5\n180128|0.65278\n180129|0.5\n180130|0.5\n180131|0.5\n180132|0.51389\n180133|0.5\n180134|0.40278\n180135|0.43056\n180136|0.36111\n180137|0.23611\n180138|0.5\n180139|0.5\n180140|0.25\n180141|0.47222\n180142|0.5\n180143|0.5\n180144|0.5\n180145|0.73611\n180146|0.19444\n180147|0.5\n180148|0.16667\n180149|0.66667\n180150|0.27778\n180151|0.58333\n180152|0.68056\n180153|0.48611\n180154|0.25\n180155|0.34722\n180156|0.55556\n180157|0.65278\n180158|0.44444\n180159|0.54167\n180160|0.5\n180161|0.5\n180162|0.5\n180163|0.5\n180164|0.31944\n180165|0.5\n180166|0.23611\n180167|0.5\n180168|0.31944\n180169|0.58333\n180170|0.11111\n180171|0.5\n180172|0.15278\n180173|0.097222\n180174|0.41667\n180175|0.125\n180176|0.27778\n180177|0.26389\n180178|0.25\n180179|0.44444\n180180|0.20833\n180181|0.5\n180182|0.5\n180183|0.55556\n180184|0.5\n180185|0.5\n180186|0.51389\n180187|0.61111\n180188|0.51389\n180189|0.22222\n180190|0.43056\n180191|0.63889\n180192|0.41667\n180193|0.36111\n180194|0.27778\n180195|0.26389\n180196|0.5\n180197|0.5\n180198|0.34722\n180199|0.59722\n180200|0.51389\n180201|0.44444\n180202|0.22222\n180203|0.5\n180204|0.25\n180205|0.45833\n180206|0.20833\n180207|0.22222\n180208|0.375\n180209|0.5\n180210|0.5\n180211|0.375\n180212|0.33333\n180213|0.20833\n180214|0.375\n180215|0.15278\n180216|0.5\n180217|0.47222\n180218|0.5\n180219|0.29167\n180220|0.22222\n180221|0.36111\n180222|0.11111\n180223|0.38889\n180224|0.27778\n180225|0.26389\n180226|0.15278\n180227|0.38889\n180228|0.47222\n180229|0.31944\n180230|0.23611\n180231|0.33333\n180232|0.61111\n180233|0.5\n180234|0.27778\n180235|0.5\n180236|0.51389\n180237|0.48611\n180238|0.29167\n180239|0.51389\n180240|0.58333\n180241|0.61111\n180242|0.5\n180243|0.5\n180244|0.31944\n180245|0.40278\n180246|0.52778\n180247|0.61111\n180248|0.58333\n180249|0.33333\n180250|0.5\n180251|0.27778\n180252|0.48611\n180253|0.59722\n180254|0.5\n180255|0.36111\n180256|0.36111\n180257|0.38889\n180258|0.59722\n180259|0.375\n180260|0.16667\n180261|0.5\n180262|0.58333\n180263|0.63889\n180264|0.5\n180265|0.5\n180266|0.5\n180267|0.29167\n180268|0.38889\n180269|0.30556\n180270|0.375\n180271|0.44444\n180272|0.5\n180273|0.5\n180274|0.41667\n180275|0.72222\n180276|0.44444\n180277|0.48611\n180278|0.5\n180279|0.5\n180280|0.59722\n180281|0.70833\n180282|0.5\n180283|0.58333\n180284|0.61111\n180285|0.5\n180286|0.47222\n180287|0.65278\n180288|0.5\n180289|0.5\n180290|0.33333\n180291|0.34722\n180292|0.38889\n180293|0.34722\n180294|0.44444\n180295|0.55556\n180296|0.33333\n180297|0.27778\n180298|0.5\n180299|0.34722\n180300|0.5\n180301|0.52778\n180302|0.5\n180303|0.5\n180304|0.5\n180305|0.40278\n180306|0.59722\n180307|0.5\n180308|0.5\n180309|0.5\n180310|0.5\n180311|0.5\n180312|0.5\n180313|0.5\n180314|0.5\n180315|0.34722\n180316|0.27778\n180317|0.13889\n180318|0.11111\n180319|0.77778\n180320|0.23611\n180321|0.43056\n180322|0.63889\n180323|0.30556\n180324|0.58333\n180325|0.11111\n180326|0.22222\n180327|0.51389\n180328|0.58333\n180329|0.55556\n180330|0.54167\n180331|0.44444\n180332|0.41667\n180333|0.31944\n180334|0.45833\n180335|0.44444\n180336|0.16667\n180337|0.5\n180338|0.5\n180339|0.47222\n180340|0.27778\n180341|0.19444\n180342|0.59722\n180343|0.5\n180344|0.45833\n180345|0.375\n180346|0.18056\n180347|0.51389\n180348|0.5\n180349|0.29167\n180350|0.20833\n180351|0.5\n180352|0.43056\n180353|0.48611\n180354|0.47222\n180355|0.61111\n180356|0.16667\n180357|0.54167\n180358|0.5\n180359|0.5\n180360|0.45833\n180361|0.26389\n180362|0.23611\n180363|0.27778\n180364|0.5\n180365|0.25\n180366|0.36111\n180367|0.13889\n180368|0.5\n180369|0.20833\n180370|0.56944\n180371|0.36111\n180372|0.5\n180373|0.041667\n180374|0.22222\n180375|0.29167\n180376|0.52778\n180377|0.18056\n180378|0.34722\n180379|0.45833\n180380|0.33333\n180381|0.11111\n180382|0.33333\n180383|0.40278\n180384|0.31944\n180385|0.38889\n180386|0.41667\n180387|0.68056\n180388|0.11111\n180389|0.38889\n180390|0.125\n180391|0.43056\n180392|0.27778\n180393|0.27778\n180394|0.33333\n180395|0.58333\n180396|0.625\n180397|0.5\n180398|0.5\n180399|0.48611\n180400|0.22222\n180401|0.34722\n180402|0.29167\n180403|0.5\n180404|0.19444\n180405|0.59722\n180406|0.69444\n180407|0.30556\n180408|0.54167\n180409|0.36111\n180410|0.58333\n180411|0.48611\n180412|0.40278\n180413|0.29167\n180414|0.5\n180415|0.30556\n180416|0.44444\n180417|0.79167\n180418|0.34722\n180419|0.15278\n180420|0.22222\n180421|0.56944\n180422|0.5\n180423|0.44444\n180424|0.33333\n180425|0.29167\n180426|0.22222\n180427|0.75\n180428|0.27778\n180429|0.55556\n180430|0.66667\n180431|0.26389\n180432|0.36111\n180433|0.44444\n180434|0.30556\n180435|0.16667\n180436|0.81944\n180437|0.56944\n180438|0.58333\n180439|0.29167\n180440|0.26389\n180441|0.38889\n180442|0.33333\n180443|0.40278\n180444|0.38889\n180445|0.27778\n180446|0.61111\n180447|0.027778\n180448|0.27778\n180449|0.5\n180450|0.97222\n180451|0.23611\n180452|0.34722\n180453|0.22222\n180454|0.18056\n180455|0.20833\n180456|0.27778\n180457|0.31944\n180458|0.34722\n180459|0.51389\n180460|0.79167\n180461|0.5\n180462|0.27778\n180463|0.80556\n180464|0.27778\n180465|0.5\n180466|0.45833\n180467|0.84722\n180468|0.29167\n180469|0.15278\n180470|0.65278\n180471|0.44444\n180472|0.33333\n180473|0.90278\n180474|0.5\n180475|0.29167\n180476|0.5\n180477|0.19444\n180478|0.27778\n180479|0.36111\n180480|0.19444\n180481|0.23611\n180482|0.125\n180483|0.51389\n180484|0.34722\n180485|0.18056\n180486|0.31944\n180487|0.56944\n180488|0.43056\n180489|0.25\n180490|0.54167\n180491|0.36111\n180492|0.26389\n180493|0.375\n180494|0.54167\n180495|0.48611\n180496|0.15278\n180497|0.30556\n180498|0.375\n180499|0.5\n180500|0.63889\n180501|0.5\n180502|0.27778\n180503|0.54167\n180504|0.44444\n180505|0.375\n180506|0.52778\n180507|0.34722\n180508|0.51389\n180509|0.16667\n180510|0.29167\n180511|0.44444\n180512|0.31944\n180513|0.38889\n180514|0.44444\n180515|0.5\n180516|0.16667\n180517|0.52778\n180518|0.30556\n180519|0.375\n180520|0.38889\n180521|0.18056\n180522|0.33333\n180523|0.38889\n180524|0.63889\n180525|0.5\n180526|0.5\n180527|0.5\n180528|0.25\n180529|0.29167\n180530|0.5\n180531|0.47222\n180532|0.27778\n180533|0.55556\n180534|0.25\n180535|0.27778\n180536|0.083333\n180537|0.27778\n180538|0.25\n180539|0.5\n180540|0.5\n180541|0.375\n180542|0.40278\n180543|0.77778\n180544|0.5\n180545|0.54167\n180546|0.34722\n180547|0.33333\n180548|0.22222\n180549|0.18056\n180550|0.33333\n180551|0.27778\n180552|0.30556\n180553|0.33333\n180554|0.38889\n180555|0.25\n180556|0.58333\n180557|0.59722\n180558|0.55556\n180559|0.41667\n180560|0.36111\n180561|0.88889\n180562|0.29167\n180563|0.36111\n180564|0.45833\n180565|0.31944\n180566|0.51389\n180567|0.33333\n180568|0.43056\n180569|0.44444\n180570|0.54167\n180571|0.44444\n180572|0.40278\n180573|0.27778\n180574|0.5\n180575|0.36111\n180576|0.34722\n180577|0.33333\n180578|0.5\n180579|0.16667\n180580|0.18056\n180581|0.25\n180582|0.22222\n180583|0.23611\n180584|0.44444\n180585|0.29167\n180586|0.54167\n180587|0.72222\n180588|0.097222\n180589|0.19444\n180590|0.43056\n180591|0.31944\n180592|0.40278\n180593|0.70833\n180594|0.76389\n180595|0.47222\n180596|0.52778\n180597|0.54167\n180598|0.15278\n180599|0.30556\n180600|0.34722\n180601|0.31944\n180602|0.20833\n180603|0.5\n180604|0.33333\n180605|0.20833\n180606|0.55556\n180607|0.5\n180608|0.34722\n180609|0.48611\n180610|0.76389\n180611|0.43056\n180612|0.30556\n180613|0.30556\n180614|0.27778\n180615|0.25\n180616|0.73611\n180617|0.47222\n180618|0.26389\n180619|0.18056\n180620|0.5\n180621|0.84722\n180622|0.51389\n180623|0.30556\n180624|0.41667\n180625|0.5\n180626|0.26389\n180627|0.43056\n180628|0.68056\n180629|0.23611\n180630|0.5\n180631|0.55556\n180632|0.44444\n180633|0.54167\n180634|0.5\n180635|0.23611\n180636|0.11111\n180637|0.29167\n180638|0.63889\n180639|0.15278\n180640|0.84722\n180641|0.30556\n180642|0.23611\n180643|0.5\n180644|0.34722\n180645|0.5\n180646|0.66667\n180647|0.61111\n180648|0.31944\n180649|0.5\n180650|0.5\n180651|0.5\n180652|0.45833\n180653|0.5\n180654|0.26389\n180655|0.5\n180656|0.77778\n180657|0.38889\n180658|0.58333\n180659|0.20833\n180660|0.5\n180661|0.11111\n180662|0.29167\n180663|0.16667\n180664|0.43056\n180665|0.33333\n180666|0.16667\n180667|0.77778\n180668|0.45833\n180669|0.18056\n180670|0.70833\n180671|0.69444\n180672|0.38889\n180673|0.375\n180674|0.36111\n180675|0.25\n180676|0.59722\n180677|0.29167\n180678|0.097222\n180679|0.31944\n180680|0.65278\n180681|0.44444\n180682|0.43056\n180683|0.23611\n180684|0.76389\n180685|0.31944\n180686|0.65278\n180687|0.375\n180688|0.29167\n180689|0.31944\n180690|0.16667\n180691|0.16667\n180692|0.069444\n180693|0.38889\n180694|0.51389\n180695|0.22222\n180696|0.15278\n180697|0.33333\n180698|0.30556\n180699|0.73611\n180700|0.40278\n180701|0.40278\n180702|0.43056\n180703|0.54167\n180704|0.27778\n180705|0.63889\n180706|0.73611\n180707|0.70833\n180708|0.15278\n180709|0.33333\n180710|0.5\n180711|0.27778\n180712|0.27778\n180713|0.097222\n180714|0.375\n180715|0.375\n180716|0.055556\n180717|0.20833\n180718|0.38889\n180719|0.34722\n180720|0.51389\n180721|0.26389\n180722|0.15278\n180723|0.38889\n180724|0.33333\n180725|0.18056\n180726|0.5\n180727|0.11111\n180728|0.16667\n180729|0.29167\n180730|0.55556\n180731|0.27778\n180732|0.29167\n180733|0.38889\n180734|0.25\n180735|0.19444\n180736|0.40278\n180737|0.27778\n180738|0.22222\n180739|0.11111\n180740|0.56944\n180741|0.55556\n180742|0.55556\n180743|0.26389\n180744|0.16667\n180745|0.27778\n180746|0.23611\n180747|0.5\n180748|0.33333\n180749|0.38889\n180750|0.625\n180751|0.26389\n180752|0.26389\n180753|0.11111\n180754|0.23611\n180755|0.5\n180756|0.22222\n180757|0.38889\n180758|0.44444\n180759|0\n180760|0.40278\n180761|0.40278\n180762|0.069444\n180763|0.26389\n180764|0.41667\n180765|0.375\n180766|0.15278\n180767|0.36111\n180768|0.30556\n180769|0.26389\n180770|0.40278\n180771|0.30556\n180772|0.48611\n180773|0.375\n180774|0.41667\n180775|0.41667\n180776|0.16667\n180777|0.33333\n180778|0.27778\n180779|0.23611\n180780|0.47222\n180781|0.65278\n180782|0\n180783|0.51389\n180784|0.61111\n180785|0.56944\n180786|0.51389\n180787|0.34722\n180788|0.625\n180789|0.375\n180790|0.75\n180791|0.15278\n180792|0.29167\n180793|0.38889\n180794|0.5\n180795|0.36111\n180796|0.097222\n180797|0.20833\n180798|0.47222\n180799|0.48611\n180800|0.5\n180801|0.34722\n180802|0.52778\n180803|0.52778\n180804|0.38889\n180805|0.22222\n180806|0.48611\n180807|0.61111\n180808|0.29167\n180809|0.38889\n180810|0.26389\n180811|0.26389\n180812|0.40278\n180813|0.73611\n180814|0.59722\n180815|0.5\n180816|0.11111\n180817|0.58333\n180818|0.5\n180819|0.43056\n180820|0.13889\n180821|0.65278\n180822|0.47222\n180823|0.73611\n180824|0.5\n180825|0.59722\n180826|0.27778\n180827|0.31944\n180828|0.34722\n180829|0.41667\n180830|0.27778\n180831|0.5\n180832|0.25\n180833|0.13889\n180834|0.55556\n180835|0.22222\n180836|0.29167\n180837|0.54167\n180838|0.55556\n180839|0.19444\n180840|0.52778\n180841|0.18056\n180842|0.44444\n180843|0.41667\n180844|0.30556\n180845|0.29167\n180846|0.48611\n180847|0.58333\n180848|0.38889\n180849|0.19444\n180850|0.5\n180851|0.33333\n180852|0.33333\n180853|0.13889\n180854|0.25\n180855|0.29167\n180856|0.30556\n180857|0.23611\n180858|0.66667\n180859|0.26389\n180860|0.52778\n180861|0.66667\n180862|0.45833\n180863|0.72222\n180864|0.43056\n180865|0.59722\n180866|0.41667\n180867|0.22222\n180868|0.20833\n180869|0.33333\n180870|0.40278\n180871|0.22222\n180872|0.20833\n180873|0.30556\n180874|0.45833\n180875|0.375\n180876|0.47222\n180877|0.61111\n180878|0.19444\n180879|0.22222\n180880|0.26389\n180881|0.51389\n180882|0.5\n180883|0.47222\n180884|0.375\n180885|0.11111\n180886|0.38889\n180887|0.45833\n180888|0.31944\n180889|0.5\n180890|0.15278\n180891|0.5\n180892|0.31944\n180893|0.16667\n180894|0.61111\n180895|0.33333\n180896|0.38889\n180897|0.29167\n180898|0.069444\n180899|0.44444\n180900|0.33333\n180901|0.33333\n180902|0.27778\n180903|0.52778\n180904|0.52778\n180905|0.44444\n180906|0.20833\n180907|0.40278\n180908|0.52778\n180909|0.23611\n180910|0.26389\n180911|0.19444\n180912|0.26389\n180913|0.22222\n180914|0.44444\n180915|0.20833\n180916|0.18056\n180917|0.33333\n180918|0\n180919|0.23611\n180920|0.25\n180921|0.11111\n180922|0.40278\n180923|0.27778\n180924|0.18056\n180925|0.61111\n180926|0.38889\n180927|0.45833\n180928|0.30556\n180929|0.44444\n180930|0.38889\n180931|0.40278\n180932|0.5\n180933|0.25\n180934|0.34722\n180935|0.26389\n180936|0.27778\n180937|0.63889\n180938|0.26389\n180939|0.20833\n180940|0.43056\n180941|0.34722\n180942|0.5\n180943|0.51389\n180944|0.47222\n180945|0.48611\n180946|0.23611\n180947|0.56944\n180948|0.5\n180949|0.5\n180950|0.18056\n180951|0.18056\n180952|0.55556\n180953|0.18056\n180954|0.30556\n180955|0.27778\n180956|0.36111\n180957|0.25\n180958|0.22222\n180959|0.36111\n180960|0.54167\n180961|0.84722\n180962|0.18056\n180963|0.29167\n180964|0.375\n180965|0.34722\n180966|0.36111\n180967|0.375\n180968|0.11111\n180969|0.26389\n180970|0.45833\n180971|0.13889\n180972|0.30556\n180973|0.16667\n180974|0.34722\n180975|0.34722\n180976|0.083333\n180977|0.40278\n180978|0.31944\n180979|0.47222\n180980|0.38889\n180981|0.23611\n180982|0.19444\n180983|0.20833\n180984|0.055556\n180985|0.34722\n180986|0.55556\n180987|0.27778\n180988|0.56944\n180989|0.41667\n180990|0.44444\n180991|0.52778\n180992|0.22222\n180993|0.18056\n180994|0.19444\n180995|0.22222\n180996|0.29167\n180997|0.77778\n180998|0.75\n180999|0.45833\n181000|0.51389\n181001|0.11111\n181002|0.41667\n181003|0.125\n181004|0.43056\n181005|0.15278\n181006|0.23611\n181007|0.30556\n181008|0.125\n181009|0.44444\n181010|0.40278\n181011|0.16667\n181012|0.25\n181013|0.23611\n181014|0.36111\n181015|0.20833\n181016|0.15278\n181017|0.48611\n181018|0.33333\n181019|0.33333\n181020|0.44444\n181021|0.22222\n181022|0.27778\n181023|0.43056\n181024|0.56944\n181025|0.75\n181026|0.54167\n181027|0.29167\n181028|0.70833\n181029|0.23611\n181030|0.45833\n181031|0.61111\n181032|0.45833\n181033|0.16667\n181034|0.23611\n181035|0.63889\n181036|0.72222\n181037|0.25\n181038|0.30556\n181039|0.44444\n181040|0.20833\n181041|0.18056\n181042|0.47222\n181043|0.16667\n181044|0.34722\n181045|0.55556\n181046|0.40278\n181047|0.31944\n181048|0.30556\n181049|0.25\n181050|0.5\n181051|0.625\n181052|0.375\n181053|0.34722\n181054|0.069444\n181055|0.40278\n181056|0.51389\n181057|0.43056\n181058|0.22222\n181059|0.25\n181060|0.47222\n181061|0.55556\n181062|0.88889\n181063|0.19444\n181064|0.61111\n181065|0.20833\n181066|0.375\n181067|0.34722\n181068|0.125\n181069|0.41667\n181070|0.25\n181071|0.15278\n181072|0.16667\n181073|0.27778\n181074|0.45833\n181075|0.375\n181076|0.25\n181077|0.29167\n181078|0.54167\n181079|0.18056\n181080|0.63889\n181081|0.38889\n181082|0.125\n181083|0.33333\n181084|0.59722\n181085|0.25\n181086|0.36111\n181087|0.30556\n181088|0.33333\n181089|0.16667\n181090|0.30556\n181091|0.41667\n181092|0.19444\n181093|0.27778\n181094|0.33333\n181095|0.43056\n181096|0.44444\n181097|0.5\n181098|0.26389\n181099|0.72222\n181100|0.5\n181101|0.29167\n181102|0.22222\n181103|0.083333\n181104|0.54167\n181105|0.20833\n181106|0.19444\n181107|0.22222\n181108|0.44444\n181109|0.20833\n181110|0.19444\n181111|0.33333\n181112|0.5\n181113|0.61111\n181114|0.38889\n181115|0.22222\n181116|0.27778\n181117|0.65278\n181118|0.83333\n181119|0.40278\n181120|0.5\n181121|0.44444\n181122|0.23611\n181123|0.52778\n181124|0.80556\n181125|0.68056\n181126|0.29167\n181127|0.77778\n181128|0.22222\n181129|0.65278\n181130|0.5\n181131|0.38889\n181132|0.22222\n181133|0.22222\n181134|0.38889\n181135|0.33333\n181136|0.375\n181137|0.33333\n181138|0.27778\n181139|0.47222\n181140|0.22222\n181141|0.47222\n181142|0.18056\n181143|0.16667\n181144|0.66667\n181145|0.66667\n181146|0.34722\n181147|0.25\n181148|0.5\n181149|0.27778\n181150|0.33333\n181151|0.44444\n181152|0.34722\n181153|0.30556\n181154|0.055556\n181155|0.48611\n181156|0.43056\n181157|0.5\n181158|0.20833\n181159|0.22222\n181160|0.29167\n181161|0.5\n181162|0.26389\n181163|0.11111\n181164|0.5\n181165|0.5\n181166|0.61111\n181167|0.33333\n181168|0.5\n181169|0.44444\n181170|0.52778\n181171|0.52778\n181172|0.72222\n181173|0.30556\n181174|0.40278\n181175|0.13889\n181176|0.55556\n181177|0.52778\n181178|0.34722\n181179|0.83333\n181180|0.69444\n181181|0.375\n181182|0.45833\n181183|0.40278\n181184|0.38889\n181185|0.33333\n181186|0.27778\n181187|0.45833\n181188|0.25\n181189|0.5\n181190|0.5\n181191|0.29167\n181192|0.44444\n181193|0.55556\n181194|0.59722\n181195|0.33333\n181196|0.5\n181197|0.5\n181198|0.875\n181199|0.5\n181200|0.51389\n181201|0.47222\n181202|0.38889\n181203|0.5\n181204|0.38889\n181205|0.47222\n181206|0.33333\n181207|0.22222\n181208|0.55556\n181209|0.55556\n181210|0.5\n181211|0.22222\n181212|0.38889\n181213|0.69444\n181214|0.27778\n181215|0.43056\n181216|0.20833\n181217|0.5\n181218|0.43056\n181219|0.54167\n181220|0.55556\n181221|0.45833\n181222|0.59722\n181223|0.31944\n181224|0.19444\n181225|0.5\n181226|0.38889\n181227|0.38889\n181228|0.43056\n181229|0.5\n181230|0.55556\n181231|0.66667\n181232|0.15278\n181233|0.66667\n181234|0.5\n181235|0.43056\n181236|0.31944\n181237|0.5\n181238|0.61111\n181239|0.51389\n181240|0.29167\n181241|0.5\n181242|0.30556\n181243|0.041667\n181244|0.5\n181245|0.54167\n181246|0.097222\n181247|0.5\n181248|0.36111\n181249|0.41667\n181250|0.26389\n181251|0.34722\n181252|0.5\n181253|0.5\n181254|0.5\n181255|0.5\n181256|0.15278\n181257|0.5\n181258|0.5\n181259|0.5\n181260|0.55556\n181261|0.5\n181262|0.5\n181263|0.5\n181264|0.5\n181265|0.19444\n181266|0.65278\n181267|0.52778\n181268|0.52778\n181269|0.36111\n181270|0.5\n181271|0.59722\n181272|0.5\n181273|0.5\n181274|0.56944\n181275|0.5\n181276|0.5\n181277|0.38889\n181278|0.33333\n181279|0.5\n181280|0.5\n181281|0.5\n181282|0.16667\n181283|0.5\n181284|0.18056\n181285|0.20833\n181286|0.36111\n181287|0.27778\n181288|0.5\n181289|0.41667\n181290|0.27778\n181291|0.11111\n181292|0.5\n181293|0.31944\n181294|0.16667\n181295|0.13889\n181296|0.11111\n181297|0.5\n181298|0.20833\n181299|0.44444\n181300|0.19444\n181301|0.33333\n181302|0.375\n181303|0.27778\n181304|0.34722\n181305|0.38889\n181306|0.23611\n181307|0.19444\n181308|0.22222\n181309|0.27778\n181310|0.43056\n181311|0.27778\n181312|0.23611\n181313|0.19444\n181314|0.65278\n181315|0.29167\n181316|0.44444\n181317|0.47222\n181318|0.27778\n181319|0.34722\n181320|0.30556\n181321|0.19444\n181322|0.55556\n181323|0.22222\n181324|0.22222\n181325|0.041667\n181326|0.31944\n181327|0.11111\n181328|0.29167\n181329|0.43056\n181330|0.18056\n181331|0\n181332|0.25\n181333|0.38889\n181334|0.43056\n181335|0.27778\n181336|0.27778\n181337|0.25\n181338|0.25\n181339|0.5\n181340|0.52778\n181341|0.59722\n181342|0.34722\n181343|0.29167\n181344|0.47222\n181345|0.013889\n181346|0.375\n181347|0.55556\n181348|0.041667\n181349|0.25\n181350|0.22222\n181351|0.48611\n181352|0.055556\n181353|0.5\n181354|0.47222\n181355|0.5\n181356|0.44444\n181357|0.5\n181358|0.43056\n181359|0.5\n181360|0.48611\n181361|0.625\n181362|0.5\n181363|0.43056\n181364|0.5\n181365|0.5\n181366|0.5\n181367|0.5\n181368|0.5\n181369|0.5\n181370|0.25\n181371|0.47222\n181372|0.43056\n181373|0.5\n181374|0.5\n181375|0.51389\n181376|0.5\n181377|0.5\n181378|0.5\n181379|0.66667\n181380|0.56944\n181381|0.5\n181382|0.43056\n181383|0.51389\n181384|0.5\n181385|0.5\n181386|0.5\n181387|0.54167\n181388|0.47222\n181389|0.5\n181390|0.5\n181391|0.5\n181392|0.5\n181393|0.5\n181394|0.5\n181395|0.52778\n181396|0.66667\n181397|0.66667\n181398|0.55556\n181399|0.5\n181400|0.54167\n181401|0.55556\n181402|0.5\n181403|0.5\n181404|0.5\n181405|0.5\n181406|0.44444\n181407|0.5\n181408|0.5\n181409|0.5\n181410|0.5\n181411|0.70833\n181412|0.5\n181413|0.54167\n181414|0.5\n181415|0.5\n181416|0.5\n181417|0.5\n181418|0.5\n181419|0.5\n181420|0.41667\n181421|0.45833\n181422|0.5\n181423|0.5\n181424|0.56944\n181425|0.5\n181426|0.44444\n181427|0.5\n181428|0.5\n181429|0.5\n181430|0.44444\n181431|0.5\n181432|0.52778\n181433|0.63889\n181434|0.41667\n181435|0.5\n181436|0.51389\n181437|0.5\n181438|0.54167\n181439|0.5\n181440|0.5\n181441|0.5\n181442|0.5\n181443|0.55556\n181444|0.11111\n181445|0.5\n181446|0.5\n181447|0.5\n181448|0.5\n181449|0.34722\n181450|0.5\n181451|0.5\n181452|0.43056\n181453|0.5\n181454|0.5\n181455|0.27778\n181456|0.26389\n181457|0.5\n181458|0.5\n181459|0.5\n181460|0.38889\n181461|0.47222\n181462|0.36111\n181463|0.38889\n181464|0.19444\n181465|0.5\n181466|0.16667\n181467|0.36111\n181468|0.63889\n181469|0.48611\n181470|0.61111\n181471|0.27778\n181472|0.61111\n181473|0.27778\n181474|0.27778\n181475|0.083333\n181476|0\n181477|0.19444\n181478|0.66667\n181479|0.5\n181480|0.5\n181481|0.33333\n181482|0.34722\n181483|0.44444\n181484|0.66667\n181485|0.5\n181486|0.15278\n181487|0.48611\n181488|0.11111\n181489|0.5\n181490|0.56944\n181491|0.5\n181492|0.5\n181493|0.5\n181494|0.5\n181495|0.5\n181496|0.55556\n181497|0.375\n181498|0.41667\n181499|0.43056\n181500|0.5\n181501|0.51389\n181502|0.52778\n181503|0.51389\n181504|0.36111\n181505|0.59722\n181506|0.38889\n181507|0.47222\n181508|0.43056\n181509|0.5\n181510|0.54167\n181511|0.38889\n181512|0.56944\n181513|0.38889\n181514|0.38889\n181515|0.38889\n181516|0.36111\n181517|0.30556\n181518|0.19444\n181519|0.16667\n181520|0.19444\n181521|0.18056\n181522|0.055556\n181523|0.15278\n181524|0.13889\n181525|0.38889\n181526|0.15278\n181527|0.027778\n181528|0.23611\n181529|0.23611\n181530|0.52778\n181531|0.23611\n181532|0.5\n181533|0.47222\n181534|0.26389\n181535|0.41667\n181536|0.375\n181537|0.83333\n181538|0.80556\n181539|0.40278\n181540|0.61111\n181541|0.25\n181542|0.27778\n181543|0.18056\n181544|0.097222\n181545|0.15278\n181546|0.51389\n181547|0.33333\n181548|0.375\n181549|0.26389\n181550|0.34722\n181551|0.25\n181552|0.19444\n181553|0.16667\n181554|0.26389\n181555|0.51389\n181556|0.23611\n181557|0.16667\n181558|0\n181559|0.23611\n181560|0.31944\n181561|0.20833\n181562|0.18056\n181563|0.26389\n181564|0.15278\n181565|0.13889\n181566|0.15278\n181567|0.125\n181568|0.097222\n181569|0.44444\n181570|0.44444\n181571|0.43056\n181572|0.38889\n181573|0.38889\n181574|0.51389\n181575|0.38889\n181576|0.15278\n181577|0.041667\n181578|0.375\n181579|0.30556\n181580|0.083333\n181581|0.083333\n181582|0.51389\n181583|0.61111\n181584|0.59722\n181585|0.31944\n181586|0.45833\n181587|0.58333\n181588|0.27778\n181589|0.45833\n181590|0.44444\n181591|0.33333\n181592|0.36111\n181593|0.27778\n181594|0.26389\n181595|0.48611\n181596|0.43056\n181597|0.097222\n181598|0\n181599|0.11111\n181600|0.15278\n181601|0.43056\n181602|0.23611\n181603|0.13889\n181604|0.30556\n181605|0.375\n181606|0.083333\n181607|0.34722\n181608|0.11111\n181609|0.23611\n181610|0.16667\n181611|0.069444\n181612|0.125\n181613|0.13889\n181614|0.22222\n181615|0.31944\n181616|0.16667\n181617|0.375\n181618|0.375\n181619|0.38889\n181620|0.43056\n181621|0.22222\n181622|0.44444\n181623|0.54167\n181624|0.36111\n181625|0.45833\n181626|0.5\n181627|0.30556\n181628|0.20833\n181629|0.22222\n181630|0.45833\n181631|0.25\n181632|0.013889\n181633|0.055556\n181634|0.29167\n181635|0.15278\n181636|0.055556\n181637|0.16667\n181638|0.15278\n181639|0.11111\n181640|0.15278\n181641|0.18056\n181642|0.23611\n181643|0.18056\n181644|0.30556\n181645|0.27778\n181646|0.36111\n181647|0.23611\n181648|0.27778\n181649|0.20833\n181650|0.25\n181651|0.625\n181652|0.69444\n181653|0.48611\n181654|0.58333\n181655|0.41667\n181656|0.375\n181657|0.66667\n181658|0.55556\n181659|0.55556\n181660|0.45833\n181661|0.56944\n181662|0.69444\n181663|0.33333\n181664|0.66667\n181665|0.66667\n181666|0.25\n181667|0.58333\n181668|0.51389\n181669|0.59722\n181670|0.625\n181671|0.54167\n181672|0.56944\n181673|0.25\n181674|0.59722\n181675|0.55556\n181676|0.625\n181677|0.23611\n181678|0.20833\n181679|0.15278\n181680|0.61111\n181681|0.65278\n181682|0.63889\n181683|0.25\n181684|0.23611\n181685|0.51389\n181686|0.41667\n181687|0.66667\n181688|0.38889\n181689|0.77778\n181690|0.48611\n181691|0.25\n181692|0.63889\n181693|0.81944\n181694|0.41667\n181695|0.31944\n181696|0.31944\n181697|0.29167\n181698|0.33333\n181699|0.55556\n181700|0.55556\n181701|0.59722\n181702|0.51389\n181703|0.68056\n181704|0.54167\n181705|0.33333\n181706|0.13889\n181707|0.25\n181708|0.25\n181709|0.13889\n181710|0.54167\n181711|0.45833\n181712|0.16667\n181713|0.16667\n181714|0.33333\n181715|0.58333\n181716|0.33333\n181717|0.43056\n181718|0.51389\n181719|0.70833\n181720|0.66667\n181721|0.25\n181722|0.31944\n181723|0.16667\n181724|0.097222\n181725|0.375\n181726|0.38889\n181727|0.26389\n181728|0.36111\n181729|0.30556\n181730|0.041667\n181731|0.88889\n181732|0.22222\n181733|0.20833\n181734|0.48611\n181735|0.19444\n181736|0.36111\n181737|0.5\n181738|0.68056\n181739|0.47222\n181740|0.44444\n181741|0.54167\n181742|0.36111\n181743|0.26389\n181744|0.72222\n181745|0.79167\n181746|0.54167\n181747|0.375\n181748|0.26389\n181749|0.19444\n181750|0.069444\n181751|0.43056\n181752|0.40278\n181753|0.44444\n181754|0.33333\n181755|0.38889\n181756|0.43056\n181757|0.36111\n181758|0.38889\n181759|0.16667\n181760|0.13889\n181761|0.51389\n181762|0.25\n181763|0.27778\n181764|0.11111\n181765|0.30556\n181766|0.20833\n181767|0.45833\n181768|0.22222\n181769|0.16667\n181770|0.5\n181771|0.51389\n181772|0.52778\n181773|0.36111\n181774|0.375\n181775|0.44444\n181776|0.55556\n181777|0.29167\n181778|0.5\n181779|0.43056\n181780|0.27778\n181781|0.25\n181782|0.55556\n181783|0.54167\n181784|0.65278\n181785|0.65278\n181786|0.40278\n181787|0.19444\n181788|0.19444\n181789|0.11111\n181790|0.11111\n181791|0.61111\n181792|0.51389\n181793|0.625\n181794|0.59722\n181795|0.33333\n181796|0.43056\n181797|0.38889\n181798|0.22222\n181799|0.19444\n181800|0.27778\n181801|0.11111\n181802|0.13889\n181803|0.16667\n181804|0.055556\n181805|0.097222\n181806|0.20833\n181807|0.11111\n181808|0.31944\n181809|0.51389\n181810|0.33333\n181811|0.41667\n181812|0.36111\n181813|0.43056\n181814|0.23611\n181815|0.22222\n181816|0.30556\n181817|0.29167\n181818|0.31944\n181819|0.5\n181820|0.40278\n181821|0.31944\n181822|0.25\n181823|0.22222\n181824|0.27778\n181825|0.55556\n181826|0.20833\n181827|0.23611\n181828|0.27778\n181829|0.36111\n181830|0.26389\n181831|0.38889\n181832|0.44444\n181833|0.30556\n181834|0.66667\n181835|0.61111\n181836|0.61111\n181837|0.70833\n181838|0.58333\n181839|0.52778\n181840|0.5\n181841|0.27778\n181842|0.69444\n181843|0.43056\n181844|0.30556\n181845|0.43056\n181846|0.55556\n181847|0.30556\n181848|0.43056\n181849|0.51389\n181850|0.44444\n181851|0.31944\n181852|0.38889\n181853|0.48611\n181854|0.51389\n181855|0.38889\n181856|0.23611\n181857|0.5\n181858|0.11111\n181859|0.125\n181860|0.33333\n181861|0.22222\n181862|0.34722\n181863|0.20833\n181864|0.34722\n181865|0.22222\n181866|0.25\n181867|0.33333\n181868|0.40278\n181869|0.20833\n181870|0.097222\n181871|0.43056\n181872|0.44444\n181873|0.5\n181874|0.44444\n181875|0.31944\n181876|0.375\n181877|0.11111\n181878|0.33333\n181879|0.5\n181880|0.5\n181881|0.15278\n181882|0.66667\n181883|0.61111\n181884|0.22222\n181885|0.18056\n181886|0.5\n181887|0.54167\n181888|0.48611\n181889|0.63889\n181890|0.44444\n181891|0.5\n181892|0.48611\n181893|0.44444\n181894|0.41667\n181895|0.48611\n181896|0.43056\n181897|0.48611\n181898|0.66667\n181899|0.72222\n181900|0.76389\n181901|0.23611\n181902|0.20833\n181903|0.097222\n181904|0.18056\n181905|0.055556\n181906|0.20833\n181907|0.18056\n181908|0.20833\n181909|0.16667\n181910|0.27778\n181911|0.31944\n181912|0.51389\n181913|0.5\n181914|0.27778\n181915|0.33333\n181916|0.23611\n181917|0.097222\n181918|0.41667\n181919|0.097222\n181920|0.29167\n181921|0.5\n181922|0.33333\n181923|0.31944\n181924|0.5\n181925|0.30556\n181926|0.40278\n181927|0.31944\n181928|0.23611\n181929|0.20833\n181930|0.34722\n181931|0.48611\n181932|0.61111\n181933|0.61111\n181934|0.625\n181935|0.80556\n181936|0.69444\n181937|0.20833\n181938|0.18056\n181939|0.52778\n181940|0.25\n181941|0.22222\n181942|0.83333\n181943|0.48611\n181944|0.27778\n181945|0.25\n181946|0.44444\n181947|0.25\n181948|0.5\n181949|0.54167\n181950|0.069444\n181951|0.22222\n181952|0.44444\n181953|0.33333\n181954|0.40278\n181955|0.22222\n181956|0.22222\n181957|0.27778\n181958|0.48611\n181959|0.18056\n181960|0.48611\n181961|0.19444\n181962|0.51389\n181963|0.41667\n181964|0.27778\n181965|0.43056\n181966|0.56944\n181967|0.30556\n181968|0.29167\n181969|0.5\n181970|0.43056\n181971|0.33333\n181972|0.30556\n181973|0.61111\n181974|0.5\n181975|0.76389\n181976|0.5\n181977|0.33333\n181978|0.66667\n181979|0.59722\n181980|0.33333\n181981|0.11111\n181982|0.16667\n181983|0.34722\n181984|0.27778\n181985|0.61111\n181986|0.66667\n181987|0.38889\n181988|0.055556\n181989|0.16667\n181990|0.23611\n181991|0.13889\n181992|0.25\n181993|0.055556\n181994|0.11111\n181995|0.34722\n181996|0.20833\n181997|0.375\n181998|0.36111\n181999|0.36111\n182000|0.48611\n182001|0.16667\n182002|0.29167\n182003|0.54167\n182004|0.36111\n182005|0.26389\n182006|0.55556\n182007|0.44444\n182008|0.38889\n182009|0.43056\n182010|0.16667\n182011|0.43056\n182012|0.13889\n182013|0.625\n182014|0.59722\n182015|0.36111\n182016|0.20833\n182017|0.45833\n182018|0.375\n182019|0.19444\n182020|0.25\n182021|0.54167\n182022|0.25\n182023|0.375\n182024|0.75\n182025|0.59722\n182026|0.083333\n182027|0.20833\n182028|0.11111\n182029|0.375\n182030|0.25\n182031|0.25\n182032|0.5\n182033|0.5\n182034|0.11111\n182035|0.19444\n182036|0.375\n182037|0.33333\n182038|0.22222\n182039|0.16667\n182040|0.097222\n182041|0.16667\n182042|0.33333\n182043|0.20833\n182044|0.55556\n182045|0.25\n182046|0.23611\n182047|0.34722\n182048|0.875\n182049|0.40278\n182050|0.30556\n182051|0.5\n182052|0.055556\n182053|0.18056\n182054|0.18056\n182055|0.5\n182056|0.27778\n182057|0.13889\n182058|0.20833\n182059|0.125\n182060|0.33333\n182061|0.41667\n182062|0.41667\n182063|0.29167\n182064|0.34722\n182065|0.29167\n182066|0.055556\n182067|0.11111\n182068|0.15278\n182069|0.083333\n182070|0.125\n182071|0.51389\n182072|0.51389\n182073|0.44444\n182074|0.5\n182075|0.25\n182076|0.25\n182077|0.11111\n182078|0.083333\n182079|0.33333\n182080|0.40278\n182081|0.26389\n182082|0.30556\n182083|0.41667\n182084|0.22222\n182085|0.41667\n182086|0.27778\n182087|0.38889\n182088|0.22222\n182089|0.22222\n182090|0.25\n182091|0.51389\n182092|0.77778\n182093|0.59722\n182094|0.69444\n182095|0.59722\n182096|0.63889\n182097|0.48611\n182098|0.58333\n182099|0.52778\n182100|0.54167\n182101|0.63889\n182102|0.31944\n182103|0.36111\n182104|0.55556\n182105|0.19444\n182106|0.30556\n182107|0.5\n182108|0.20833\n182109|0.027778\n182110|0.5\n182111|0.44444\n182112|0.41667\n182113|0.45833\n182114|0.18056\n182115|0.47222\n182116|0.38889\n182117|0.55556\n182118|0.19444\n182119|0.69444\n182120|0.25\n182121|0.18056\n182122|0.5\n182123|0.27778\n182124|0.125\n182125|0.13889\n182126|0.5\n182127|0.48611\n182128|0.44444\n182129|0.48611\n182130|0.47222\n182131|0.65278\n182132|0.5\n182133|0.083333\n182134|0.055556\n182135|0.19444\n182136|0.34722\n182137|0.29167\n182138|0.5\n182139|0.5\n182140|0.5\n182141|0.5\n182142|0.5\n182143|0.51389\n182144|0.5\n182145|0.5\n182146|0.5\n182147|0.72222\n182148|0.48611\n182149|0.16667\n182150|0.45833\n182151|0.51389\n182152|0.40278\n182153|0.20833\n182154|0.61111\n182155|0.51389\n182156|0.52778\n182157|0.77778\n182158|0.5\n182159|0.56944\n182160|0.73611\n182161|0.52778\n182162|0.15278\n182163|0.5\n182164|0.5\n182165|0.5\n182166|0.27778\n182167|0.5\n182168|0.55556\n182169|0.22222\n182170|0.48611\n182171|0.72222\n182172|0.44444\n182173|0.48611\n182174|0.5\n182175|0.5\n182176|0.61111\n182177|0.45833\n182178|0.38889\n182179|0.33333\n182180|0.68056\n182181|0.52778\n182182|0.625\n182183|0.44444\n182184|0.34722\n182185|0.44444\n182186|0.44444\n182187|0.56944\n182188|0.36111\n182189|0.18056\n182190|0.36111\n182191|0.61111\n182192|0.55556\n182193|0.40278\n182194|0.61111\n182195|0.20833\n182196|0.55556\n182197|0.40278\n182198|0.375\n182199|0.22222\n182200|0.26389\n182201|0.18056\n182202|0.125\n182203|0.13889\n182204|0.72222\n182205|0.30556\n182206|0.5\n182207|0.5\n182208|0.66667\n182209|0.5\n182210|0.44444\n182211|0.38889\n182212|0.44444\n182213|0.27778\n182214|0.5\n182215|0.55556\n182216|0.61111\n182217|0.11111\n182218|0.56944\n182219|0.56944\n182220|0.5\n182221|0.66667\n182222|0.5\n182223|0.59722\n182224|0.5\n182225|0.5\n182226|0.13889\n182227|0.5\n182228|0.5\n182229|0.44444\n182230|0.5\n182231|0.41667\n182232|0.23611\n182233|0.5\n182234|0.5\n182235|0.13889\n182236|0.40278\n182237|0.013889\n182238|0.34722\n182239|0.51389\n182240|0.56944\n182241|0.79167\n182242|0.25\n182243|0.5\n182244|0.52778\n182245|0.66667\n182246|0.38889\n182247|0.55556\n182248|0.27778\n182249|0.52778\n182250|0.38889\n182251|0.27778\n182252|0.375\n182253|0.5\n182254|0.63889\n182255|0.5\n182256|0.5\n182257|0.66667\n182258|0.26389\n182259|0.5\n182260|0.48611\n182261|0.375\n182262|0.5\n182263|0.56944\n182264|0.38889\n182265|0.18056\n182266|0.16667\n182267|0.5\n182268|0.5\n182269|0.40278\n182270|0.5\n182271|0.43056\n182272|0.34722\n182273|0.19444\n182274|0.5\n182275|0.5\n182276|0.40278\n182277|0.5\n182278|0.70833\n182279|0.65278\n182280|0.52778\n182281|0.26389\n182282|0.61111\n182283|0.34722\n182284|0.23611\n182285|0.31944\n182286|0.59722\n182287|0.375\n182288|0.34722\n182289|0.33333\n182290|0.58333\n182291|0.76389\n182292|0.25\n182293|0.5\n182294|0.86111\n182295|0.16667\n182296|0.5\n182297|0.55556\n182298|0.51389\n182299|0.5\n182300|0.66667\n182301|0.52778\n182302|0.43056\n182303|0.44444\n182304|0.38889\n182305|0.5\n182306|0.5\n182307|0.61111\n182308|0.51389\n182309|0.43056\n182310|0.31944\n182311|0.41667\n182312|0.5\n182313|0.5\n182314|0.5\n182315|0.51389\n182316|0.5\n182317|0.61111\n182318|0.47222\n182319|0.5\n182320|0.58333\n182321|0.27778\n182322|0.45833\n182323|0.69444\n182324|0.66667\n182325|0.54167\n182326|0.58333\n182327|0.30556\n182328|0.5\n182329|0.5\n182330|0.5\n182331|0.5\n182332|0.5\n182333|0.5\n182334|0.66667\n182335|0.36111\n182336|0.40278\n182337|0.61111\n182338|0.59722\n182339|0.66667\n182340|0.41667\n182341|0.43056\n182342|0.34722\n182343|0.5\n182344|0.625\n182345|0.65278\n182346|0.625\n182347|0.52778\n182348|0.47222\n182349|0.38889\n182350|0.5\n182351|0.33333\n182352|0.47222\n182353|0.15278\n182354|0.097222\n182355|0.47222\n182356|0.25\n182357|0.69444\n182358|0.77778\n182359|0.66667\n182360|0.52778\n182361|0.72222\n182362|0.63889\n182363|0.15278\n182364|0.29167\n182365|0.15278\n182366|0.125\n182367|0.52778\n182368|0.55556\n182369|0.55556\n182370|0.38889\n182371|0.30556\n182372|0.45833\n182373|0.25\n182374|0.15278\n182375|0.083333\n182376|0.125\n182377|0.041667\n182378|0.30556\n182379|0.20833\n182380|0.23611\n182381|0.27778\n182382|0.18056\n182383|0.31944\n182384|0.18056\n182385|0.18056\n182386|0.19444\n182387|0.25\n182388|0.44444\n182389|0.36111\n182390|0.40278\n182391|0.22222\n182392|0.69444\n182393|0.68056\n182394|0.625\n182395|0.27778\n182396|0.5\n182397|0.61111\n182398|0.22222\n182399|0.51389\n182400|0.20833\n182401|0.19444\n182402|0.083333\n182403|0.38889\n182404|0.5\n182405|0.27778\n182406|0\n182407|0.25\n182408|0.5\n182409|0.40278\n182410|0.31944\n182411|0.11111\n182412|0.41667\n182413|0.43056\n182414|0.125\n182415|0.26389\n182416|0.26389\n182417|0.38889\n182418|0.30556\n182419|0.30556\n182420|0.20833\n182421|0.16667\n182422|0.055556\n182423|0.055556\n182424|0.13889\n182425|0.23611\n182426|0.19444\n182427|0.15278\n182428|0.55556\n182429|0.375\n182430|0.54167\n182431|0.31944\n182432|0.36111\n182433|0.34722\n182434|0.34722\n182435|0.40278\n182436|0.33333\n182437|0.36111\n182438|0.40278\n182439|0.055556\n182440|0.30556\n182441|0.29167\n182442|0.19444\n182443|0.30556\n182444|0.26389\n182445|0.30556\n182446|0.33333\n182447|0.20833\n182448|0.18056\n182449|0.083333\n182450|0.36111\n182451|0.041667\n182452|0.069444\n182453|0.125\n182454|0.097222\n182455|0.027778\n182456|0.19444\n182457|0.25\n182458|0.80556\n182459|0.5\n182460|0.44444\n182461|0.38889\n182462|0.5\n182463|0.61111\n182464|0.5\n182465|0.52778\n182466|0.52778\n182467|0.61111\n182468|0.5\n182469|0.55556\n182470|0.5\n182471|0.5\n182472|0.43056\n182473|0.5\n182474|0.51389\n182475|0.38889\n182476|0.51389\n182477|0.5\n182478|0.5\n182479|0.48611\n182480|0.5\n182481|0.5\n182482|0.20833\n182483|0.083333\n182484|0.15278\n182485|0.40278\n182486|0.097222\n182487|0.30556\n182488|0.33333\n182489|0.055556\n182490|0.5\n182491|0.625\n182492|0.5\n182493|0.38889\n182494|0.47222\n182495|0.81944\n182496|0.48611\n182497|0.58333\n182498|0.63889\n182499|0.41667\n182500|0.375\n182501|0.41667\n182502|0.48611\n182503|0.5\n182504|0.38889\n182505|0.23611\n182506|0.69444\n182507|0.63889\n182508|0.36111\n182509|0.23611\n182510|0.5\n182511|0.5\n182512|0.23611\n182513|0.47222\n182514|0.22222\n182515|0.16667\n182516|0.34722\n182517|0.26389\n182518|0.25\n182519|0.44444\n182520|0.083333\n182521|0.083333\n182522|0.65278\n182523|0.38889\n182524|0.45833\n182525|0.86111\n182526|0.18056\n182527|0.30556\n182528|0.23611\n182529|0.19444\n182530|0.43056\n182531|0.5\n182532|0.56944\n182533|0.63889\n182534|0.47222\n182535|0.66667\n182536|0.61111\n182537|0.375\n182538|0.40278\n182539|0.38889\n182540|0.66667\n182541|0.5\n182542|0.68056\n182543|0.52778\n182544|0.44444\n182545|0.5\n182546|0.375\n182547|0.26389\n182548|0.55556\n182549|0.45833\n182550|0.5\n182551|0.5\n182552|0.36111\n182553|0.36111\n182554|0.56944\n182555|0.16667\n182556|0.5\n182557|0.40278\n182558|0.38889\n182559|0.52778\n182560|0.5\n182561|0.47222\n182562|0.5\n182563|0.58333\n182564|0.5\n182565|0.5\n182566|0.5\n182567|0.5\n182568|0.5\n182569|0.66667\n182570|0.52778\n182571|0.41667\n182572|0.68056\n182573|0.47222\n182574|0.40278\n182575|0.16667\n182576|0.29167\n182577|0.26389\n182578|0.34722\n182579|0.19444\n182580|0.5\n182581|0.26389\n182582|0.5\n182583|0.77778\n182584|0.44444\n182585|0.44444\n182586|0.097222\n182587|0.11111\n182588|0.22222\n182589|0.66667\n182590|0.34722\n182591|0.36111\n182592|0.5\n182593|0.58333\n182594|0.30556\n182595|0.40278\n182596|0.54167\n182597|0.68056\n182598|0.625\n182599|0.75\n182600|0.22222\n182601|0.54167\n182602|0.18056\n182603|0.15278\n182604|0.25\n182605|0.19444\n182606|0.16667\n182607|0.20833\n182608|0.13889\n182609|0.44444\n182610|0.20833\n182611|0.45833\n182612|0.47222\n182613|0.5\n182614|0.19444\n182615|0.33333\n182616|0.30556\n182617|0.5\n182618|0.5\n182619|0.5\n182620|0.55556\n182621|0.33333\n182622|0.20833\n182623|0.5\n182624|0.5\n182625|0.29167\n182626|0.29167\n182627|0.5\n182628|0.44444\n182629|0.5\n182630|0.58333\n182631|0.52778\n182632|0.27778\n182633|0.63889\n182634|0.11111\n182635|0.055556\n182636|0.18056\n182637|0.25\n182638|0.83333\n182639|0.27778\n182640|0.22222\n182641|0.34722\n182642|0.30556\n182643|0.25\n182644|0.34722\n182645|0.11111\n182646|0.51389\n182647|0.5\n182648|0.5\n182649|0.23611\n182650|0.5\n182651|0.40278\n182652|0.30556\n182653|0.26389\n182654|0.22222\n182655|0.625\n182656|0.25\n182657|0.27778\n182658|0.29167\n182659|0.11111\n182660|0.27778\n182661|0.16667\n182662|0.40278\n182663|0.5\n182664|0.44444\n182665|0.5\n182666|0.55556\n182667|0.29167\n182668|0.5\n182669|0.73611\n182670|0.25\n182671|0.72222\n182672|0.43056\n182673|0.52778\n182674|0.5\n182675|0.29167\n182676|0.45833\n182677|0.5\n182678|0.5\n182679|0.5\n182680|0.5\n182681|0.36111\n182682|0.73611\n182683|0.5\n182684|0.083333\n182685|0.5\n182686|0.47222\n182687|0.44444\n182688|0.625\n182689|0.5\n182690|0.5\n182691|0.5\n182692|0.55556\n182693|0.16667\n182694|0.44444\n182695|0.52778\n182696|0.52778\n182697|0.5\n182698|0.5\n182699|0.83333\n182700|0.36111\n182701|0.22222\n182702|0.5\n182703|0.61111\n182704|0.56944\n182705|0.22222\n182706|0.52778\n182707|0.54167\n182708|0.44444\n182709|0.48611\n182710|0.5\n182711|0.5\n182712|0.5\n182713|0.36111\n182714|0.43056\n182715|0.5\n182716|0.52778\n182717|0.5\n182718|0.5\n182719|0.29167\n182720|0.15278\n182721|0.5\n182722|0.44444\n182723|0.19444\n182724|0.16667\n182725|0.25\n182726|0.26389\n182727|0.5\n182728|0.083333\n182729|0.20833\n182730|0.45833\n182731|0.23611\n182732|0.61111\n182733|0.16667\n182734|0.18056\n182735|0.5\n182736|0.5\n182737|0.48611\n182738|0.29167\n182739|0.47222\n182740|0.55556\n182741|0.19444\n182742|0.26389\n182743|0.20833\n182744|0.5\n182745|0.25\n182746|0.33333\n182747|0.27778\n182748|0.29167\n182749|0.055556\n182750|0.30556\n182751|0.31944\n182752|0.33333\n182753|0.5\n182754|0.5\n182755|0.5\n182756|0.86111\n182757|0.73611\n182758|0.5\n182759|0.44444\n182760|0.31944\n182761|0.5\n182762|0.51389\n182763|0.19444\n182764|0.51389\n182765|0.375\n182766|0.44444\n182767|0.5\n182768|0.5\n182769|0.5\n182770|0.43056\n182771|0.5\n182772|0.5\n182773|0.097222\n182774|0.54167\n182775|0.22222\n182776|0.5\n182777|0.52778\n182778|0.5\n182779|0.58333\n182780|0.16667\n182781|0.5\n182782|0.45833\n182783|0.40278\n182784|0.5\n182785|0.48611\n182786|0.5\n182787|0.5\n182788|0.5\n182789|0.5\n182790|0.52778\n182791|0.26389\n182792|0.47222\n182793|0.51389\n182794|0.5\n182795|0.5\n182796|0.51389\n182797|0.54167\n182798|0.5\n182799|0.38889\n182800|0.5\n182801|0.61111\n182802|0.16667\n182803|0.40278\n182804|0.52778\n182805|0.5\n182806|0.5\n182807|0.59722\n182808|0.5\n182809|0.65278\n182810|0.5\n182811|0.36111\n182812|0.5\n182813|0.16667\n182814|0.65278\n182815|0.41667\n182816|0.91667\n182817|0.86111\n182818|0.58333\n182819|0.69444\n182820|0.55556\n182821|0.34722\n182822|0.20833\n182823|0.48611\n182824|0.58333\n182825|0.5\n182826|0.56944\n182827|0.5\n182828|0.40278\n182829|0.63889\n182830|0.5\n182831|0.5\n182832|0.45833\n182833|0.625\n182834|0.52778\n182835|0.5\n182836|0.25\n182837|0.055556\n182838|0.63889\n182839|0.76389\n182840|0.81944\n182841|0.34722\n182842|0.5\n182843|0.77778\n182844|0.20833\n182845|0.55556\n182846|0.22222\n182847|0.5\n182848|0.5\n182849|0.36111\n182850|0.44444\n182851|0.16667\n182852|0.25\n182853|0.19444\n182854|0.31944\n182855|0.5\n182856|0.11111\n182857|0.31944\n182858|0.26389\n182859|0.56944\n182860|0.5\n182861|0.48611\n182862|0.43056\n182863|0.5\n182864|0.5\n182865|0.63889\n182866|0.69444\n182867|0.63889\n182868|0.41667\n182869|0.27778\n182870|0.16667\n182871|0.52778\n182872|0.5\n182873|0.5\n182874|0.38889\n182875|0.33333\n182876|0.38889\n182877|0.5\n182878|0.38889\n182879|0.16667\n182880|0.18056\n182881|0.5\n182882|0.625\n182883|0.5\n182884|0.58333\n182885|0.5\n182886|0.58333\n182887|0.43056\n182888|0.59722\n182889|0.55556\n182890|0.63889\n182891|0.5\n182892|0.61111\n182893|0.55556\n182894|0.48611\n182895|0.5\n182896|0.72222\n182897|0.5\n182898|0.43056\n182899|0.18056\n182900|0.11111\n182901|0.5\n182902|0.61111\n182903|0.48611\n182904|0.22222\n182905|0.375\n182906|0.5\n182907|0.51389\n182908|0.5\n182909|0.5\n182910|0.5\n182911|0.54167\n182912|0.5\n182913|0.625\n182914|0.5\n182915|0.5\n182916|0.5\n182917|0.33333\n182918|0.5\n182919|0.5\n182920|0.5\n182921|0.22222\n182922|0.44444\n182923|0.5\n182924|0.5\n182925|0.5\n182926|0.5\n182927|0.5\n182928|0.5\n182929|0.43056\n182930|0.25\n182931|0.34722\n182932|0.19444\n182933|0.22222\n182934|0.70833\n182935|0.86111\n182936|0.30556\n182937|0.5\n182938|0.5\n182939|0.59722\n182940|0.48611\n182941|0.48611\n182942|0.5\n182943|0.5\n182944|0.48611\n182945|0.47222\n182946|0.58333\n182947|0.59722\n182948|0.5\n182949|0.5\n182950|0.5\n182951|0.5\n182952|0.61111\n182953|0.66667\n182954|0.5\n182955|0.56944\n182956|0.5\n182957|0.45833\n182958|0.44444\n182959|0.41667\n182960|0.125\n182961|0.34722\n182962|0.36111\n182963|0.40278\n182964|0.13889\n182965|0.65278\n182966|0.18056\n182967|0.5\n182968|0.55556\n182969|0.5\n182970|0.79167\n182971|0.51389\n182972|0.36111\n182973|0.72222\n182974|0.65278\n182975|0.5\n182976|0.5\n182977|0.26389\n182978|0.26389\n182979|0.30556\n182980|0.54167\n182981|0.5\n182982|0.5\n182983|0.38889\n182984|0.875\n182985|0.65278\n182986|0.5\n182987|0.51389\n182988|0.20833\n182989|0.19444\n182990|0.45833\n182991|0.33333\n182992|0.41667\n182993|0.44444\n182994|0.31944\n182995|0.5\n182996|0.75\n182997|0.44444\n182998|0.44444\n182999|0.59722\n183000|0.56944\n183001|0.25\n183002|0.23611\n183003|0.5\n183004|0.5\n183005|0.5\n183006|0.5\n183007|0.5\n183008|0.70833\n183009|0.5\n183010|0.5\n183011|0.5\n183012|0.5\n183013|0.44444\n183014|0.26389\n183015|0.27778\n183016|0.20833\n183017|0.5\n183018|0.40278\n183019|0.19444\n183020|0.70833\n183021|0.23611\n183022|0.75\n183023|0.26389\n183024|0.5\n183025|0.45833\n183026|0.5\n183027|0.5\n183028|0.63889\n183029|0.75\n183030|0.40278\n183031|0.5\n183032|0.25\n183033|0.5\n183034|0.5\n183035|0.5\n183036|0.22222\n183037|0.52778\n183038|0.15278\n183039|0.055556\n183040|0.77778\n183041|0.47222\n183042|0.30556\n183043|0.47222\n183044|0.13889\n183045|0.75\n183046|0.25\n183047|0.5\n183048|0.58333\n183049|0.25\n183050|0.5\n183051|0.25\n183052|0.65278\n183053|0.51389\n183054|0.51389\n183055|0.20833\n183056|0.5\n183057|0.5\n183058|0.54167\n183059|0.52778\n183060|0.19444\n183061|0.44444\n183062|0.44444\n183063|0.375\n183064|0.80556\n183065|0.56944\n183066|0.5\n183067|0.5\n183068|0.40278\n183069|0.30556\n183070|0.54167\n183071|0.5\n183072|0.26389\n183073|0.5\n183074|0.5\n183075|0.38889\n183076|0.27778\n183077|0.23611\n183078|0.36111\n183079|0.30556\n183080|0.5\n183081|0.55556\n183082|0.5\n183083|0.56944\n183084|0.375\n183085|0.5\n183086|0.5\n183087|0.5\n183088|0.5\n183089|0.5\n183090|0.52778\n183091|0.59722\n183092|0.38889\n183093|0.5\n183094|0.5\n183095|0.59722\n183096|0.54167\n183097|0.5\n183098|0.66667\n183099|0.44444\n183100|0.5\n183101|0.5\n183102|0.54167\n183103|0.5\n183104|0.5\n183105|0.54167\n183106|0.51389\n183107|0.5\n183108|0.5\n183109|0.5\n183110|0.70833\n183111|0.69444\n183112|0.38889\n183113|0.29167\n183114|0.5\n183115|0.5\n183116|0.34722\n183117|0.52778\n183118|0.625\n183119|0.55556\n183120|0.51389\n183121|0.44444\n183122|0.61111\n183123|0.55556\n183124|0.5\n183125|0.47222\n183126|0.5\n183127|0.27778\n183128|0.48611\n183129|0.23611\n183130|0.27778\n183131|0.27778\n183132|0.19444\n183133|0.5\n183134|0.5\n183135|0.5\n183136|0.5\n183137|0.5\n183138|0.52778\n183139|0.18056\n183140|0.47222\n183141|0.18056\n183142|0.069444\n183143|0.5\n183144|0.76389\n183145|0.13889\n183146|0.27778\n183147|0.055556\n183148|0.29167\n183149|0.30556\n183150|0.26389\n183151|0.43056\n183152|0.5\n183153|0.15278\n183154|0.33333\n183155|0.27778\n183156|0.29167\n183157|0.15278\n183158|0.26389\n183159|0.25\n183160|0.65278\n183161|0.43056\n183162|0.58333\n183163|0.61111\n183164|0.52778\n183165|0.5\n183166|0.5\n183167|0.55556\n183168|0.5\n183169|0.5\n183170|0.51389\n183171|0.41667\n183172|0.375\n183173|0.20833\n183174|0.25\n183175|0.23611\n183176|0.5\n183177|0.375\n183178|0.11111\n183179|0.25\n183180|0.33333\n183181|0.72222\n183182|0.70833\n183183|0.51389\n183184|0.5\n183185|0.88889\n183186|0.83333\n183187|0.25\n183188|0.31944\n183189|0.5\n183190|0.625\n183191|0.44444\n183192|0.34722\n183193|0.5\n183194|0.25\n183195|0.11111\n183196|0.13889\n183197|0.58333\n183198|0.43056\n183199|0.20833\n183200|0.27778\n183201|0.25\n183202|0.125\n183203|0.11111\n183204|0.5\n183205|0.5\n183206|0.61111\n183207|0.44444\n183208|0.22222\n183209|0.25\n183210|0.27778\n183211|0.34722\n183212|0.20833\n183213|0.52778\n183214|0.5\n183215|0.52778\n183216|0.66667\n183217|0.52778\n183218|0.16667\n183219|0.19444\n183220|0.59722\n183221|0.5\n183222|0.44444\n183223|0.375\n183224|0.45833\n183225|0.18056\n183226|0.55556\n183227|0.5\n183228|0.5\n183229|0.5\n183230|0.5\n183231|0.58333\n183232|0.5\n183233|0.54167\n183234|0.18056\n183235|0.52778\n183236|0.097222\n183237|0.44444\n183238|0.23611\n183239|0.5\n183240|0.34722\n183241|0.38889\n183242|0.069444\n183243|0.125\n183244|0.44444\n183245|0.47222\n183246|0.5\n183247|0.47222\n183248|0.34722\n183249|0.5\n183250|0.5\n183251|0.63889\n183252|0.44444\n183253|0.54167\n183254|0.5\n183255|0.18056\n183256|0.11111\n183257|0.5\n183258|0.54167\n183259|0.5\n183260|0.51389\n183261|0.5\n183262|0.5\n183263|0.5\n183264|0.52778\n183265|0.19444\n183266|0.55556\n183267|0.65278\n183268|0.52778\n183269|0.5\n183270|0.5\n183271|0.625\n183272|0.61111\n183273|0.5\n183274|0.5\n183275|0.5\n183276|0.5\n183277|0.52778\n183278|0.5\n183279|0.5\n183280|0.5\n183281|0.5\n183282|0.5\n183283|0.5\n183284|0.5\n183285|0.5\n183286|0.5\n183287|0.61111\n183288|0.5\n183289|0.5\n183290|0.5\n183291|0.55556\n183292|0.59722\n183293|0.52778\n183294|0.69444\n183295|0.45833\n183296|0.38889\n183297|0.43056\n183298|0.58333\n183299|0.5\n183300|0.51389\n183301|0.5\n183302|0.45833\n183303|0.47222\n183304|0.11111\n183305|0.77778\n183306|0.56944\n183307|0.68056\n183308|0.5\n183309|0.5\n183310|0.38889\n183311|0.41667\n183312|0.38889\n183313|0.5\n183314|0.5\n183315|0.5\n183316|0.59722\n183317|0.23611\n183318|0.52778\n183319|0.125\n183320|0.5\n183321|0.5\n183322|0.5\n183323|0.25\n183324|0.5\n183325|0.5\n183326|0.36111\n183327|0.41667\n183328|0.34722\n183329|0.083333\n183330|0.66667\n183331|0.625\n183332|0.72222\n183333|0.5\n183334|0.80556\n183335|0.70833\n183336|0.5\n183337|0.58333\n183338|0.38889\n183339|0.66667\n183340|0.80556\n183341|0.61111\n183342|0.27778\n183343|0.30556\n183344|0.5\n183345|0.5\n183346|0.19444\n183347|0.80556\n183348|0.80556\n183349|0.33333\n183350|0.22222\n183351|0.27778\n183352|0.23611\n183353|0.11111\n183354|0.36111\n183355|0.15278\n183356|0.22222\n183357|0.41667\n183358|0.083333\n183359|0.51389\n183360|0.69444\n183361|0.19444\n183362|0.30556\n183363|0.375\n183364|0.375\n183365|0.44444\n183366|0.27778\n183367|0.43056\n183368|0.38889\n183369|0.33333\n183370|0.44444\n183371|0.15278\n183372|0.43056\n183373|0.26389\n183374|0.31944\n183375|0.25\n183376|0.45833\n183377|0.48611\n183378|0.375\n183379|0.27778\n183380|0.52778\n183381|0.25\n183382|0.59722\n183383|0.22222\n183384|0.47222\n183385|0.25\n183386|0.56944\n183387|0.34722\n183388|0.51389\n183389|0.47222\n183390|0.61111\n183391|0.29167\n183392|0.27778\n183393|0.59722\n183394|0.54167\n183395|0.5\n183396|0.5\n183397|0.30556\n183398|0.56944\n183399|0.33333\n183400|0.54167\n183401|0.20833\n183402|0.44444\n183403|0.22222\n183404|0.38889\n183405|0.5\n183406|0.68056\n183407|0.43056\n183408|0.5\n183409|0.43056\n183410|0.19444\n183411|0.375\n183412|0.375\n183413|0.20833\n183414|0.30556\n183415|0.5\n183416|0.30556\n183417|0.23611\n183418|0.48611\n183419|0.5\n183420|0.51389\n183421|0.75\n183422|0.25\n183423|0.5\n183424|0.5\n183425|0.5\n183426|0.31944\n183427|0.44444\n183428|0.44444\n183429|0.76389\n183430|0.5\n183431|0.5\n183432|0.58333\n183433|0.25\n183434|0.5\n183435|0.5\n183436|0.5\n183437|0.5\n183438|0.23611\n183439|0.51389\n183440|0.65278\n183441|0.69444\n183442|0.48611\n183443|0.19444\n183444|0.22222\n183445|0.54167\n183446|0.33333\n183447|0.16667\n183448|0.76389\n183449|0.72222\n183450|0.44444\n183451|0.44444\n183452|0.44444\n183453|0.5\n183454|0.48611\n183455|0.66667\n183456|0.5\n183457|0.27778\n183458|0.375\n183459|0.5\n183460|0.23611\n183461|0.52778\n183462|0.47222\n183463|0.51389\n183464|0.5\n183465|0.45833\n183466|0.5\n183467|0.52778\n183468|0.75\n183469|0.47222\n183470|0.29167\n183471|0.44444\n183472|0.59722\n183473|0.66667\n183474|0.55556\n183475|0.38889\n183476|0.48611\n183477|0.19444\n183478|0.29167\n183479|0.47222\n183480|0.26389\n183481|0.083333\n183482|0.51389\n183483|0.86111\n183484|0.75\n183485|0.52778\n183486|0.75\n183487|0.20833\n183488|0.375\n183489|0.11111\n183490|0.5\n183491|0.5\n183492|0.5\n183493|0.56944\n183494|0.27778\n183495|0.5\n183496|0.44444\n183497|0.59722\n183498|0.20833\n183499|0.5\n183500|0.23611\n183501|0.34722\n183502|0.20833\n183503|0.16667\n183504|0.5\n183505|0.16667\n183506|0.33333\n183507|0.26389\n183508|0.125\n183509|0.18056\n183510|0.66667\n183511|0.61111\n183512|0.26389\n183513|0.63889\n183514|0.5\n183515|0.66667\n183516|0.5\n183517|0.5\n183518|0.47222\n183519|0.11111\n183520|0.27778\n183521|0.44444\n183522|0.27778\n183523|0.27778\n183524|0.33333\n183525|0.58333\n183526|0.45833\n183527|0.5\n183528|0.5\n183529|0.59722\n183530|0.48611\n183531|0.5\n183532|0.25\n183533|0.44444\n183534|0.30556\n183535|0.13889\n183536|0.23611\n183537|0.19444\n183538|0.43056\n183539|0.31944\n183540|0.25\n183541|0.15278\n183542|0.31944\n183543|0.11111\n183544|0.19444\n183545|0.22222\n183546|0.375\n183547|0.44444\n183548|0.23611\n183549|0.27778\n183550|0.45833\n183551|0.40278\n183552|0.30556\n183553|0.72222\n183554|0.61111\n183555|0.33333\n183556|0.48611\n183557|0.5\n183558|0.45833\n183559|0.48611\n183560|0.55556\n183561|0.5\n183562|0.5\n183563|0.5\n183564|0.25\n183565|0.16667\n183566|0.5\n183567|0.25\n183568|0.38889\n183569|0.27778\n183570|0.20833\n183571|0.27778\n183572|0.5\n183573|0.44444\n183574|0.375\n183575|0.375\n183576|0.23611\n183577|0.25\n183578|0.30556\n183579|0.23611\n183580|0.20833\n183581|0.23611\n183582|0.29167\n183583|0.29167\n183584|0.40278\n183585|0.5\n183586|0.27778\n183587|0.11111\n183588|0.29167\n183589|0.22222\n183590|0.125\n183591|0.55556\n183592|0.30556\n183593|0.19444\n183594|0.15278\n183595|0.15278\n183596|0.20833\n183597|0.18056\n183598|0.68056\n183599|0.73611\n183600|0.66667\n183601|0.29167\n183602|0.20833\n183603|0.5\n183604|0.52778\n183605|0.29167\n183606|0.36111\n183607|0.56944\n183608|0.72222\n183609|0.65278\n183610|0.65278\n183611|0.59722\n183612|0.45833\n183613|0.27778\n183614|0.47222\n183615|0.34722\n183616|0.33333\n183617|0.48611\n183618|0.77778\n183619|0.55556\n183620|0.70833\n183621|0.625\n183622|0.40278\n183623|0.625\n183624|0.069444\n183625|0.40278\n183626|0.5\n183627|0.5\n183628|0.5\n183629|0.5\n183630|0.73611\n183631|0.5\n183632|0.45833\n183633|0.63889\n183634|0.75\n183635|0.44444\n183636|0.38889\n183637|0.30556\n183638|0.5\n183639|0.56944\n183640|0.5\n183641|0.5\n183642|0.375\n183643|0.5\n183644|0.63889\n183645|0.097222\n183646|0.26389\n183647|0.30556\n183648|0.5\n183649|0.27778\n183650|0.26389\n183651|0.5\n183652|0.5\n183653|0.83333\n183654|0.55556\n183655|0.5\n183656|0.5\n183657|0.625\n183658|0.5\n183659|0.16667\n183660|0.5\n183661|0.5\n183662|0.38889\n183663|0.61111\n183664|0.33333\n183665|0.5\n183666|0.875\n183667|0.59722\n183668|0.54167\n183669|0.56944\n183670|0.56944\n183671|0.44444\n183672|0.40278\n183673|0.5\n183674|0.55556\n183675|0.5\n183676|0.76389\n183677|0.77778\n183678|0.52778\n183679|0.44444\n183680|0.375\n183681|0.79167\n183682|0.61111\n183683|0.375\n183684|0.63889\n183685|0.56944\n183686|0.66667\n183687|0.48611\n183688|0.40278\n183689|0.48611\n183690|0.45833\n183691|0.58333\n183692|0.5\n183693|0.5\n183694|0.40278\n183695|0.5\n183696|0.48611\n183697|0.84722\n183698|0.56944\n183699|0.20833\n183700|0.43056\n183701|0.23611\n183702|0.23611\n183703|0.43056\n183704|0.30556\n183705|0.75\n183706|0.38889\n183707|0.61111\n183708|0.61111\n183709|0.5\n183710|0.63889\n183711|0.33333\n183712|0.22222\n183713|0.16667\n183714|0.097222\n183715|0.5\n183716|0.5\n183717|0.45833\n183718|0.27778\n183719|0.54167\n183720|0.27778\n183721|0.54167\n183722|0.47222\n183723|0.5\n183724|0.5\n183725|0.36111\n183726|0.5\n183727|0.19444\n183728|0.31944\n183729|0.65278\n183730|0.54167\n183731|0.55556\n183732|0.20833\n183733|0.16667\n183734|0.56944\n183735|0.65278\n183736|0.45833\n183737|0.36111\n183738|0.43056\n183739|0.13889\n183740|0.34722\n183741|0.13889\n183742|0.013889\n183743|0.55556\n183744|0.36111\n183745|0.069444\n183746|0.43056\n183747|0.56944\n183748|0.34722\n183749|0.58333\n183750|0.375\n183751|0.36111\n183752|0.20833\n183753|0.52778\n183754|0.125\n183755|0.25\n183756|0.44444\n183757|0.18056\n183758|0.52778\n183759|0.33333\n183760|0.5\n183761|0.41667\n183762|0.47222\n183763|0.29167\n183764|0.47222\n183765|0.22222\n183766|0.125\n183767|0.11111\n183768|0.5\n183769|0.47222\n183770|0.5\n183771|0.23611\n183772|0.20833\n183773|0.083333\n183774|0.055556\n183775|0.52778\n183776|0.33333\n183777|0.51389\n183778|0.36111\n183779|0.25\n183780|0.22222\n183781|0.18056\n183782|0.16667\n183783|0.11111\n183784|0.5\n183785|0.5\n183786|0.375\n183787|0.5\n183788|0.51389\n183789|0.5\n183790|0.47222\n183791|0.41667\n183792|0.52778\n183793|0.34722\n183794|0.5\n183795|0.5\n183796|0.52778\n183797|0.5\n183798|0.77778\n183799|0.76389\n183800|0.5\n183801|0.56944\n183802|0.45833\n183803|0.72222\n183804|0.22222\n183805|0.11111\n183806|0.44444\n183807|0.52778\n183808|0.41667\n183809|0.41667\n183810|0.22222\n183811|0.11111\n183812|0.11111\n183813|0.11111\n183814|0.25\n183815|0.5\n183816|0.22222\n183817|0.15278\n183818|0.30556\n183819|0.375\n183820|0.66667\n183821|0.58333\n183822|0.68056\n183823|0.63889\n183824|0.13889\n183825|0.40278\n183826|0.5\n183827|0.5\n183828|0.93056\n183829|0.5\n183830|0.5\n183831|0.5\n183832|0.23611\n183833|0.23611\n183834|0.20833\n183835|0.11111\n183836|0.097222\n183837|0.23611\n183838|0.38889\n183839|0.11111\n183840|0.31944\n183841|0.33333\n183842|0.25\n183843|0.45833\n183844|0.31944\n183845|0.51389\n183846|0.5\n183847|0.68056\n183848|0.47222\n183849|0.44444\n183850|0.19444\n183851|0.27778\n183852|0.5\n183853|0.5\n183854|0.56944\n183855|0.66667\n183856|0.61111\n183857|0.38889\n183858|0.47222\n183859|0.25\n183860|0.47222\n183861|0.375\n183862|0.44444\n183863|0.45833\n183864|0.43056\n183865|0.75\n183866|0.83333\n183867|0.66667\n183868|0.45833\n183869|0.5\n183870|0.45833\n183871|0.875\n183872|0.43056\n183873|0.19444\n183874|0.33333\n183875|0.23611\n183876|0.26389\n183877|0.22222\n183878|0.18056\n183879|0.26389\n183880|0.13889\n183881|0.58333\n183882|0.5\n183883|0.70833\n183884|0.5\n183885|0.47222\n183886|0.40278\n183887|0.47222\n183888|0.44444\n183889|0.73611\n183890|0.54167\n183891|0.59722\n183892|0.5\n183893|0.45833\n183894|0.34722\n183895|0.55556\n183896|0.26389\n183897|0.43056\n183898|0.055556\n183899|0.33333\n183900|0.5\n183901|0.36111\n183902|0.5\n183903|0.31944\n183904|0.25\n183905|0.5\n183906|0.19444\n183907|0.44444\n183908|0.41667\n183909|0.34722\n183910|0.19444\n183911|0.5\n183912|0.34722\n183913|0.38889\n183914|0.73611\n183915|0.83333\n183916|0.83333\n183917|0.75\n183918|0.80556\n183919|0.58333\n183920|0.52778\n183921|0.54167\n183922|0.13889\n183923|0\n183924|0.48611\n183925|0.52778\n183926|0.61111\n183927|0.23611\n183928|0.40278\n183929|0.31944\n183930|0.65278\n183931|0.5\n183932|0.40278\n183933|0.18056\n183934|0.44444\n183935|0.5\n183936|0.44444\n183937|0.20833\n183938|0.52778\n183939|0.5\n183940|0.30556\n183941|0.5\n183942|0.5\n183943|0.45833\n183944|0.33333\n183945|0.36111\n183946|0.13889\n183947|0.22222\n183948|0.44444\n183949|0.625\n183950|0.59722\n183951|0.5\n183952|0.31944\n183953|0.29167\n183954|0.5\n183955|0.72222\n183956|0.36111\n183957|0.375\n183958|0.23611\n183959|0.51389\n183960|0.40278\n183961|0.20833\n183962|0.47222\n183963|0.44444\n183964|0.23611\n183965|0.52778\n183966|0.23611\n183967|0.61111\n183968|0.33333\n183969|0.5\n183970|0.38889\n183971|0.5\n183972|0.083333\n183973|0.52778\n183974|0.097222\n183975|0.5\n183976|0.40278\n183977|0.5\n183978|0.5\n183979|0.38889\n183980|0.47222\n183981|0.375\n183982|0.18056\n183983|0.5\n183984|0.26389\n183985|0.5\n183986|0.16667\n183987|0.72222\n183988|0.27778\n183989|0.48611\n183990|0.27778\n183991|0.41667\n183992|0.47222\n183993|0.51389\n183994|0.38889\n183995|0.52778\n183996|0.26389\n183997|0.23611\n183998|0.44444\n183999|0.44444\n184000|0.19444\n184001|0.58333\n184002|0.51389\n184003|0.5\n184004|0.375\n184005|0.375\n184006|0.5\n184007|0.65278\n184008|0.65278\n184009|0.61111\n184010|0.625\n184011|0.54167\n184012|0.54167\n184013|0.25\n184014|0.5\n184015|0.5\n184016|0.5\n184017|0.5\n184018|0.54167\n184019|0.65278\n184020|0.66667\n184021|0.52778\n184022|0.375\n184023|0.43056\n184024|0.5\n184025|0.51389\n184026|0.44444\n184027|0.51389\n184028|0.5\n184029|0.5\n184030|0.5\n184031|0.5\n184032|0.5\n184033|0.48611\n184034|0.34722\n184035|0.29167\n184036|0.5\n184037|0.5\n184038|0.5\n184039|0.59722\n184040|0.5\n184041|0.45833\n184042|0.47222\n184043|0.5\n184044|0.33333\n184045|0.5\n184046|0.59722\n184047|0.5\n184048|0.51389\n184049|0.5\n184050|0.41667\n184051|0.56944\n184052|0.625\n184053|0.31944\n184054|0.34722\n184055|0.5\n184056|0.5\n184057|0.65278\n184058|0.5\n184059|0.51389\n184060|0.5\n184061|0.38889\n184062|0.40278\n184063|0.5\n184064|0.51389\n184065|0.34722\n184066|0.22222\n184067|0.20833\n184068|0.18056\n184069|0.52778\n184070|0.54167\n184071|0.5\n184072|0.52778\n184073|0.5\n184074|0.52778\n184075|0.54167\n184076|0.34722\n184077|0.34722\n184078|0.38889\n184079|0.097222\n184080|0.45833\n184081|0.055556\n184082|0.055556\n184083|0.47222\n184084|0.5\n184085|0.5\n184086|0.5\n184087|0.51389\n184088|0.41667\n184089|0.5\n184090|0.16667\n184091|0.5\n184092|0.5\n184093|0.5\n184094|0.5\n184095|0.5\n184096|0.5\n184097|0.51389\n184098|0.44444\n184099|0.22222\n184100|0.15278\n184101|0.13889\n184102|0.083333\n184103|0.5\n184104|0.73611\n184105|0.5\n184106|0.375\n184107|0.5\n184108|0.5\n184109|0.5\n184110|0.5\n184111|0.5\n184112|0.5\n184113|0.5\n184114|0.5\n184115|0.23611\n184116|0.63889\n184117|0.51389\n184118|0.36111\n184119|0.36111\n184120|0.43056\n184121|0.38889\n184122|0.5\n184123|0.5\n184124|0.5\n184125|0.5\n184126|0.55556\n184127|0.375\n184128|0.55556\n184129|0.5\n184130|0.5\n184131|0.5\n184132|0.72222\n184133|0.5\n184134|0.5\n184135|0.36111\n184136|0.34722\n184137|0.083333\n184138|0.69444\n184139|0.30556\n184140|0.22222\n184141|0.5\n184142|0.51389\n184143|0.5\n184144|0.5\n184145|0.5\n184146|0.5\n184147|0.5\n184148|0.41667\n184149|0.48611\n184150|0.26389\n184151|0.43056\n184152|0.16667\n184153|0.23611\n184154|0.5\n184155|0.5\n184156|0.5\n184157|0.5\n184158|0.5\n184159|0.5\n184160|0.5\n184161|0.63889\n184162|0.70833\n184163|0.68056\n184164|0.34722\n184165|0.27778\n184166|0.56944\n184167|0.5\n184168|0.5\n184169|0.55556\n184170|0.45833\n184171|0.22222\n184172|0.625\n184173|0.5\n184174|0.625\n184175|0.61111\n184176|0.51389\n184177|0.51389\n184178|0.59722\n184179|0.76389\n184180|0.54167\n184181|0.41667\n184182|0.61111\n184183|0.15278\n184184|0.18056\n184185|0.16667\n184186|0.11111\n184187|0.27778\n184188|0.34722\n184189|0.76389\n184190|0.72222\n184191|0.61111\n184192|0.61111\n184193|0.77778\n184194|0.5\n184195|0.5\n184196|0.5\n184197|0.51389\n184198|0.5\n184199|0.65278\n184200|0.625\n184201|0.61111\n184202|0.55556\n184203|0.48611\n184204|0.25\n184205|0.5\n184206|0.5\n184207|0.51389\n184208|0.30556\n184209|0.86111\n184210|0.66667\n184211|0.23611\n184212|0.375\n184213|0.34722\n184214|0.25\n184215|0.45833\n184216|0.5\n184217|0.52778\n184218|0.61111\n184219|0.69444\n184220|0.5\n184221|0.51389\n184222|0.55556\n184223|0.5\n184224|0.5\n184225|0.55556\n184226|0.65278\n184227|0.16667\n184228|0.44444\n184229|0.52778\n184230|0.45833\n184231|0.36111\n184232|0.30556\n184233|0.5\n184234|0.88889\n184235|0.75\n184236|0.27778\n184237|0.25\n184238|0.125\n184239|0.22222\n184240|0.27778\n184241|0.33333\n184242|0.22222\n184243|0.26389\n184244|0.5\n184245|0.65278\n184246|0.72222\n184247|0.5\n184248|0.5\n184249|0.5\n184250|0.5\n184251|0.5\n184252|0.5\n184253|0.5\n184254|0.11111\n184255|0.069444\n184256|0.61111\n184257|0.59722\n184258|0.125\n184259|0.44444\n184260|0.29167\n184261|0.5\n184262|0.33333\n184263|0.25\n184264|0.5\n184265|0.5\n184266|0.51389\n184267|0.73611\n184268|0.5\n184269|0.36111\n184270|0.36111\n184271|0.44444\n184272|0.5\n184273|0.47222\n184274|0.5\n184275|0.5\n184276|0.54167\n184277|0.66667\n184278|0.20833\n184279|0.75\n184280|0.72222\n184281|0.58333\n184282|0.65278\n184283|0.41667\n184284|0.5\n184285|0.5\n184286|0.5\n184287|0\n184288|0.5\n184289|0.5\n184290|0.61111\n184291|0.73611\n184292|0.5\n184293|0.5\n184294|0.5\n184295|0.5\n184296|0.5\n184297|0.66667\n184298|0.58333\n184299|0.29167\n184300|0.5\n184301|0.48611\n184302|0.56944\n184303|0.27778\n184304|0.29167\n184305|0.55556\n184306|0.5\n184307|0.41667\n184308|0.5\n184309|0.5\n184310|0.5\n184311|0.72222\n184312|0.5\n184313|0.69444\n184314|0.44444\n184315|0.5\n184316|0.5\n184317|0.5\n184318|0.48611\n184319|0.27778\n184320|0.36111\n184321|0.40278\n184322|0.38889\n184323|0.31944\n184324|0.19444\n184325|0.027778\n184326|0.29167\n184327|0.22222\n184328|0.59722\n184329|0.22222\n184330|0.61111\n184331|0.72222\n184332|0.47222\n184333|0.43056\n184334|0.25\n184335|0.18056\n184336|0.19444\n184337|0.44444\n184338|0.13889\n184339|0.23611\n184340|0.40278\n184341|0.16667\n184342|0.51389\n184343|0.16667\n184344|0.54167\n184345|0.38889\n184346|0.36111\n184347|0.47222\n184348|0.22222\n184349|0.22222\n184350|0.48611\n184351|0.125\n184352|0.069444\n184353|0.15278\n184354|0.59722\n184355|0.5\n184356|0.5\n184357|0.41667\n184358|0.34722\n184359|0.30556\n184360|0.22222\n184361|0.54167\n184362|0.5\n184363|0.51389\n184364|0.44444\n184365|0.22222\n184366|0.5\n184367|0.18056\n184368|0.5\n184369|0.43056\n184370|0.30556\n184371|0.5\n184372|0.40278\n184373|0.33333\n184374|0.41667\n184375|0.11111\n184376|0.26389\n184377|0.5\n184378|0.5\n184379|0.5\n184380|0.5\n184381|0.52778\n184382|0.5\n184383|0.76389\n184384|0.51389\n184385|0.38889\n184386|0.33333\n184387|0.16667\n184388|0.5\n184389|0.5\n184390|0.5\n184391|0.45833\n184392|0.47222\n184393|0.41667\n184394|0.5\n184395|0.29167\n184396|0.55556\n184397|0.44444\n184398|0.38889\n184399|0.72222\n184400|0.43056\n184401|0.16667\n184402|0.083333\n184403|0.625\n184404|0.18056\n184405|0.27778\n184406|0.27778\n184407|0.47222\n184408|0.23611\n184409|0.16667\n184410|0.20833\n184411|0.18056\n184412|0.61111\n184413|0.66667\n184414|0.70833\n184415|0.5\n184416|0.68056\n184417|0.72222\n184418|0.66667\n184419|0.55556\n184420|0.51389\n184421|0.38889\n184422|0.25\n184423|0.125\n184424|0.15278\n184425|0.30556\n184426|0.069444\n184427|0.84722\n184428|0.59722\n184429|0.40278\n184430|0.59722\n184431|0.5\n184432|0.34722\n184433|0.30556\n184434|0.33333\n184435|0.33333\n184436|0.55556\n184437|0.5\n184438|0.70833\n184439|0.625\n184440|0.83333\n184441|0.44444\n184442|0.34722\n184443|0.33333\n184444|0.48611\n184445|0.65278\n184446|0.55556\n184447|0.48611\n184448|0.45833\n184449|0.51389\n184450|0.22222\n184451|0.22222\n184452|0.51389\n184453|0.5\n184454|0.38889\n184455|0.51389\n184456|0.375\n184457|0.34722\n184458|0.23611\n184459|0.41667\n184460|0.34722\n184461|0.625\n184462|0.61111\n184463|0.5\n184464|0.55556\n184465|0.56944\n184466|0.5\n184467|0.41667\n184468|0.52778\n184469|0.40278\n184470|0.81944\n184471|0.81944\n184472|0.80556\n184473|0.38889\n184474|0.5\n184475|0.47222\n184476|0.52778\n184477|0.68056\n184478|0.69444\n184479|0.59722\n184480|0.5\n184481|0.5\n184482|0.5\n184483|0.52778\n184484|0.55556\n184485|0.36111\n184486|0.097222\n184487|0.41667\n184488|0.41667\n184489|0.15278\n184490|0.26389\n184491|0.5\n184492|0.125\n184493|0.63889\n184494|0.5\n184495|0.5\n184496|0.61111\n184497|0.51389\n184498|0.33333\n184499|0.5\n184500|0.54167\n184501|0.5\n184502|0.40278\n184503|0.18056\n184504|0.44444\n184505|0.36111\n184506|0.44444\n184507|0.22222\n184508|0.5\n184509|0.26389\n184510|0.31944\n184511|0.16667\n184512|0.16667\n184513|0.38889\n184514|0.23611\n184515|0.47222\n184516|0.19444\n184517|0.15278\n184518|0.5\n184519|0.54167\n184520|0.27778\n184521|0.58333\n184522|0.59722\n184523|0.55556\n184524|0.5\n184525|0.65278\n184526|0.86111\n184527|0.5\n184528|0.45833\n184529|0.5\n184530|0.38889\n184531|0.5\n184532|0.69444\n184533|0.5\n184534|0.5\n184535|0.59722\n184536|0.47222\n184537|0.52778\n184538|0.30556\n184539|0.66667\n184540|0.38889\n184541|0.5\n184542|0.44444\n184543|0.23611\n184544|0.36111\n184545|0.15278\n184546|0.15278\n184547|0.055556\n184548|0.11111\n184549|0.5\n184550|0.5\n184551|0.59722\n184552|0.069444\n184553|0.22222\n184554|0.22222\n184555|0.125\n184556|0.31944\n184557|0.65278\n184558|0.61111\n184559|0.19444\n184560|0.38889\n184561|0.44444\n184562|0.5\n184563|0.40278\n184564|0.38889\n184565|0.625\n184566|0.33333\n184567|0.40278\n184568|0.069444\n184569|0.40278\n184570|0.26389\n184571|0.22222\n184572|0.11111\n184573|0.48611\n184574|0.33333\n184575|0.16667\n184576|0.097222\n184577|0.44444\n184578|0.44444\n184579|0.375\n184580|0.25\n184581|0.375\n184582|0.30556\n184583|0.16667\n184584|0.18056\n184585|0.069444\n184586|0.20833\n184587|0.36111\n184588|0.36111\n184589|0.27778\n184590|0.19444\n184591|0.23611\n184592|0.5\n184593|0.19444\n184594|0.56944\n184595|0.23611\n184596|0.52778\n184597|0.23611\n184598|0.29167\n184599|0.41667\n184600|0.79167\n184601|0.625\n184602|0.68056\n184603|0.47222\n184604|0.45833\n184605|0.41667\n184606|0.43056\n184607|0.34722\n184608|0.44444\n184609|0.48611\n184610|0.19444\n184611|0.25\n184612|0.31944\n184613|0.43056\n184614|0.41667\n184615|0.40278\n184616|0.84722\n184617|0.65278\n184618|0.65278\n184619|0.68056\n184620|0.72222\n184621|0.26389\n184622|0.44444\n184623|0.44444\n184624|0.44444\n184625|0.44444\n184626|0.44444\n184627|0.33333\n184628|0.11111\n184629|0.68056\n184630|0.5\n184631|0.5\n184632|0.5\n184633|0.16667\n184634|0.097222\n184635|0.20833\n184636|0.33333\n184637|0.33333\n184638|0.27778\n184639|0.16667\n184640|0.23611\n184641|0.29167\n184642|0.23611\n184643|0.44444\n184644|0.61111\n184645|0.34722\n184646|0.069444\n184647|0.22222\n184648|0.29167\n184649|0.47222\n184650|0.38889\n184651|0.055556\n184652|0.23611\n184653|0.61111\n184654|0.25\n184655|0.5\n184656|0.38889\n184657|0.5\n184658|0.15278\n184659|0.75\n184660|0.375\n184661|0.16667\n184662|0.30556\n184663|0.31944\n184664|0.15278\n184665|0.58333\n184666|0.45833\n184667|0.11111\n184668|0.52778\n184669|0.5\n184670|0.5\n184671|0.5\n184672|0.27778\n184673|0.29167\n184674|0.625\n184675|0.23611\n184676|0.5\n184677|0.27778\n184678|0.90278\n184679|0.76389\n184680|0.79167\n184681|0.81944\n184682|0.70833\n184683|0.69444\n184684|0.44444\n184685|0.68056\n184686|0.19444\n184687|0.79167\n184688|0.77778\n184689|0.70833\n184690|0.65278\n184691|0.52778\n184692|0.38889\n184693|0.45833\n184694|0.44444\n184695|0.25\n184696|0.18056\n184697|0.15278\n184698|0.5\n184699|0.72222\n184700|0.22222\n184701|0.44444\n184702|0.36111\n184703|0.52778\n184704|0.41667\n184705|0.84722\n184706|0.5\n184707|0.25\n184708|0.33333\n184709|0.34722\n184710|0.54167\n184711|0.79167\n184712|0.36111\n184713|0.68056\n184714|0.083333\n184715|0.40278\n184716|0.20833\n184717|0.27778\n184718|0.5\n184719|0.19444\n184720|0.54167\n184721|0.34722\n184722|0.5\n184723|0.55556\n184724|0.13889\n184725|0.34722\n184726|0.26389\n184727|0.13889\n184728|0.20833\n184729|0.34722\n184730|0.27778\n184731|0.375\n184732|0.43056\n184733|0.58333\n184734|0.36111\n184735|0.19444\n184736|0.41667\n184737|0.5\n184738|0.625\n184739|0.055556\n184740|0.069444\n184741|0.55556\n184742|0.26389\n184743|0.22222\n184744|0.11111\n184745|0.125\n184746|0.375\n184747|0.16667\n184748|0.29167\n184749|0.375\n184750|0.22222\n184751|0.52778\n184752|0.51389\n184753|0.125\n184754|0.5\n184755|0.61111\n184756|0.5\n184757|0.5\n184758|0.13889\n184759|0.16667\n184760|0.625\n184761|0.58333\n184762|0.73611\n184763|0.47222\n184764|0.51389\n184765|0.44444\n184766|0.45833\n184767|0.43056\n184768|0.33333\n184769|0.30556\n184770|0.47222\n184771|0.5\n184772|0.51389\n184773|0.23611\n184774|0.58333\n184775|0.56944\n184776|0.29167\n184777|0.34722\n184778|0.18056\n184779|0.55556\n184780|0.33333\n184781|0.66667\n184782|0.33333\n184783|0.45833\n184784|0.29167\n184785|0.375\n184786|0.18056\n184787|0.16667\n184788|0.041667\n184789|0.16667\n184790|0.76389\n184791|0.66667\n184792|0.31944\n184793|0.34722\n184794|0.47222\n184795|0.34722\n184796|0.52778\n184797|0.5\n184798|0.63889\n184799|0.33333\n184800|0.29167\n184801|0.30556\n184802|0.69444\n184803|0.43056\n184804|0.43056\n184805|0.29167\n184806|0.26389\n184807|0.083333\n184808|0.55556\n184809|0.36111\n184810|0.11111\n184811|0.55556\n184812|0.47222\n184813|0.18056\n184814|0.083333\n184815|0.5\n184816|0.34722\n184817|0.41667\n184818|0.18056\n184819|0.27778\n184820|0.27778\n184821|0.59722\n184822|0.31944\n184823|0.38889\n184824|0.097222\n184825|0.66667\n184826|0.51389\n184827|0.5\n184828|0.58333\n184829|0.069444\n184830|0.15278\n184831|0.38889\n184832|0.16667\n184833|0.11111\n184834|0.43056\n184835|0.27778\n184836|0.5\n184837|0.52778\n184838|0.66667\n184839|0.45833\n184840|0.29167\n184841|0.68056\n184842|0.36111\n184843|0.15278\n184844|0.16667\n184845|0.19444\n184846|0.51389\n184847|0.16667\n184848|0.51389\n184849|0.27778\n184850|0.5\n184851|0.26389\n184852|0.5\n184853|0.27778\n184854|0.5\n184855|0.56944\n184856|0.27778\n184857|0.22222\n184858|0.27778\n184859|0.5\n184860|0.5\n184861|0.11111\n184862|0.44444\n184863|0.26389\n184864|0.40278\n184865|0.5\n184866|0.5\n184867|0.59722\n184868|0.22222\n184869|0.20833\n184870|0.097222\n184871|0.51389\n184872|0.45833\n184873|0.43056\n184874|0.29167\n184875|0.31944\n184876|0.27778\n184877|0.30556\n184878|0.069444\n184879|0.48611\n184880|0.47222\n184881|0.30556\n184882|0.11111\n184883|0.083333\n184884|0.44444\n184885|0.13889\n184886|0.43056\n184887|0.75\n184888|0.55556\n184889|0.48611\n184890|0.63889\n184891|0.40278\n184892|0.5\n184893|0.29167\n184894|0.52778\n184895|0.041667\n184896|0.5\n184897|0.34722\n184898|0.56944\n184899|0.5\n184900|0.15278\n184901|0.5\n184902|0.27778\n184903|0.63889\n184904|0.22222\n184905|0.5\n184906|0.19444\n184907|0.43056\n184908|0.31944\n184909|0.38889\n184910|0.27778\n184911|0.11111\n184912|0.16667\n184913|0.5\n184914|0.43056\n184915|0.41667\n184916|0.63889\n184917|0.34722\n184918|0.30556\n184919|0.44444\n184920|0.5\n184921|0.55556\n184922|0.44444\n184923|0.40278\n184924|0.375\n184925|0.51389\n184926|0.19444\n184927|0.5\n184928|0.375\n184929|0.59722\n184930|0.58333\n184931|0.55556\n184932|0.54167\n184933|0.33333\n184934|0.5\n184935|0.54167\n184936|0.5\n184937|0.5\n184938|0.38889\n184939|0.61111\n184940|0.34722\n184941|0.41667\n184942|0.54167\n184943|0.51389\n184944|0.65278\n184945|0.61111\n184946|0.27778\n184947|0.097222\n184948|0.47222\n184949|0.16667\n184950|0.51389\n184951|0.23611\n184952|0.44444\n184953|0.27778\n184954|0.68056\n184955|0.83333\n184956|0.52778\n184957|0.61111\n184958|0.5\n184959|0.68056\n184960|0.63889\n184961|0.13889\n184962|0.19444\n184963|0.625\n184964|0.5\n184965|0.38889\n184966|0.65278\n184967|0.375\n184968|0.38889\n184969|0.5\n184970|0.44444\n184971|0.5\n184972|0.5\n184973|0.51389\n184974|0.44444\n184975|0.43056\n184976|0.083333\n184977|0.125\n184978|0.5\n184979|0.5\n184980|0.72222\n184981|0.5\n184982|0.44444\n184983|0.27778\n184984|0.30556\n184985|0.41667\n184986|0.25\n184987|0.44444\n184988|0.27778\n184989|0.18056\n184990|0.11111\n184991|0.5\n184992|0.54167\n184993|0.5\n184994|0.18056\n184995|0.125\n184996|0.22222\n184997|0.13889\n184998|0.55556\n184999|0.15278\n185000|0.13889\n185001|0.083333\n185002|0.61111\n185003|0.48611\n185004|0.40278\n185005|0.30556\n185006|0.22222\n185007|0.65278\n185008|0.94444\n185009|0.875\n185010|0.72222\n185011|0.375\n185012|0.625\n185013|0.5\n185014|0.5\n185015|0.055556\n185016|0.11111\n185017|0.5\n185018|0.34722\n185019|0.25\n185020|0.22222\n185021|0.097222\n185022|0.25\n185023|0.20833\n185024|0.375\n185025|0.30556\n185026|0.79167\n185027|0.375\n185028|0.22222\n185029|0.91667\n185030|0.27778\n185031|0.40278\n185032|0.33333\n185033|0.125\n185034|0.19444\n185035|0.76389\n185036|0.125\n185037|0.33333\n185038|0.30556\n185039|0.44444\n185040|0.55556\n185041|0.51389\n185042|0.40278\n185043|0.38889\n185044|0.31944\n185045|0.40278\n185046|0.40278\n185047|0.77778\n185048|0.44444\n185049|0.27778\n185050|0.36111\n185051|0.5\n185052|0.125\n185053|0.41667\n185054|0.27778\n185055|0.30556\n185056|0.18056\n185057|0.18056\n185058|0.36111\n185059|0.38889\n185060|0.36111\n185061|0.30556\n185062|0.31944\n185063|0.22222\n185064|0.18056\n185065|0.30556\n185066|0.22222\n185067|0.29167\n185068|0.26389\n185069|0.13889\n185070|0.22222\n185071|0.18056\n185072|0.72222\n185073|0.25\n185074|0.5\n185075|0.44444\n185076|0.72222\n185077|0.27778\n185078|0.27778\n185079|0.41667\n185080|0.30556\n185081|0.48611\n185082|0.5\n185083|0.54167\n185084|0.45833\n185085|0.20833\n185086|0.25\n185087|0.81944\n185088|0.83333\n185089|0.72222\n185090|0.55556\n185091|0.36111\n185092|0.041667\n185093|0.5\n185094|0.40278\n185095|0.20833\n185096|0.29167\n185097|0.375\n185098|0.083333\n185099|0.375\n185100|0.25\n185101|0.5\n185102|0.13889\n185103|0.40278\n185104|0.22222\n185105|0.083333\n185106|0.083333\n185107|0.56944\n185108|0.36111\n185109|0.54167\n185110|0.45833\n185111|0.75\n185112|0.625\n185113|0.51389\n185114|0.47222\n185115|0.48611\n185116|0.43056\n185117|0.22222\n185118|0.20833\n185119|0.18056\n185120|0.125\n185121|0.15278\n185122|0.80556\n185123|0.75\n185124|0.66667\n185125|0.58333\n185126|0.63889\n185127|0.56944\n185128|0.19444\n185129|0.16667\n185130|0.22222\n185131|0.13889\n185132|0.19444\n185133|0.27778\n185134|0.68056\n185135|0.16667\n185136|0.45833\n185137|0.13889\n185138|0.30556\n185139|0.31944\n185140|0.29167\n185141|0.25\n185142|0.23611\n185143|0.20833\n185144|0.5\n185145|0.26389\n185146|0.19444\n185147|0.22222\n185148|0.22222\n185149|0.25\n185150|0.48611\n185151|0.55556\n185152|0.55556\n185153|0.45833\n185154|0.55556\n185155|0.61111\n185156|0.52778\n185157|0.63889\n185158|0.48611\n185159|0.52778\n185160|0.27778\n185161|0.5\n185162|0.29167\n185163|0.30556\n185164|0.34722\n185165|0.36111\n185166|0.45833\n185167|0.48611\n185168|0.20833\n185169|0.20833\n185170|0.33333\n185171|0.30556\n185172|0.33333\n185173|0.45833\n185174|0.33333\n185175|0.34722\n185176|0.40278\n185177|0.54167\n185178|0.61111\n185179|0.625\n185180|0.36111\n185181|0.22222\n185182|0.52778\n185183|0.47222\n185184|0.38889\n185185|0.19444\n185186|0.41667\n185187|0.30556\n185188|0.27778\n185189|0.22222\n185190|0.31944\n185191|0.16667\n185192|0.61111\n185193|0.70833\n185194|0.54167\n185195|0.31944\n185196|0.31944\n185197|0.19444\n185198|0.27778\n185199|0.625\n185200|0.375\n185201|0.34722\n185202|0.54167\n185203|0.68056\n185204|0.80556\n185205|0.84722\n185206|0.875\n185207|0.52778\n185208|0.15278\n185209|0.33333\n185210|0.26389\n185211|0.44444\n185212|0.375\n185213|0.26389\n185214|0.45833\n185215|0.38889\n185216|0.51389\n185217|0.31944\n185218|0.23611\n185219|0.097222\n185220|0.29167\n185221|0.61111\n185222|0.79167\n185223|0.51389\n185224|0.51389\n185225|0.45833\n185226|0.44444\n185227|0.97222\n185228|0.25\n185229|0.88889\n185230|0.083333\n185231|0.41667\n185232|0.40278\n185233|0.44444\n185234|0.11111\n185235|0.29167\n185236|0.30556\n185237|0.45833\n185238|0.16667\n185239|0.16667\n185240|0.20833\n185241|0.27778\n185242|0.34722\n185243|0.36111\n185244|0.44444\n185245|0.25\n185246|0.19444\n185247|0.26389\n185248|0.041667\n185249|0.13889\n185250|0.19444\n185251|0.51389\n185252|0.38889\n185253|0.34722\n185254|0.22222\n185255|0.48611\n185256|0.34722\n185257|0.47222\n185258|0.23611\n185259|0.33333\n185260|0.52778\n185261|0.47222\n185262|0.27778\n185263|0.18056\n185264|0.25\n185265|0.38889\n185266|0.48611\n185267|0.31944\n185268|0.13889\n185269|0.027778\n185270|0.5\n185271|0.26389\n185272|0.22222\n185273|0.16667\n185274|0.26389\n185275|0.18056\n185276|0.22222\n185277|0.44444\n185278|0.56944\n185279|0.375\n185280|0.30556\n185281|0.25\n185282|0.72222\n185283|0.13889\n185284|0.375\n185285|0.29167\n185286|0.44444\n185287|0.23611\n185288|0.26389\n185289|0.75\n185290|0.80556\n185291|0.5\n185292|0.59722\n185293|0.5\n185294|0.38889\n185295|0.125\n185296|0.083333\n185297|0.13889\n185298|0.5\n185299|0.29167\n185300|0.40278\n185301|0.15278\n185302|0.20833\n185303|0.5\n185304|0.31944\n185305|0.22222\n185306|0.72222\n185307|0.69444\n185308|0.51389\n185309|0.31944\n185310|0.33333\n185311|0.43056\n185312|0.27778\n185313|0.125\n185314|0.47222\n185315|0.44444\n185316|0.47222\n185317|0.54167\n185318|0.23611\n185319|0.5\n185320|0.33333\n185321|0.52778\n185322|0.18056\n185323|0.125\n185324|0.083333\n185325|0.375\n185326|0.61111\n185327|0.33333\n185328|0.23611\n185329|0.625\n185330|0.20833\n185331|0.27778\n185332|0.22222\n185333|0.055556\n185334|0.33333\n185335|0.43056\n185336|0.36111\n185337|0.38889\n185338|0.34722\n185339|0.47222\n185340|0.19444\n185341|0.68056\n185342|0.59722\n185343|0.54167\n185344|0.56944\n185345|0.20833\n185346|0.20833\n185347|0.51389\n185348|0.41667\n185349|0.36111\n185350|0.38889\n185351|0.375\n185352|0.29167\n185353|0.19444\n185354|0.19444\n185355|0.125\n185356|0.15278\n185357|0.13889\n185358|0.31944\n185359|0.19444\n185360|0.31944\n185361|0.23611\n185362|0.625\n185363|0.68056\n185364|0.43056\n185365|0.43056\n185366|0.45833\n185367|0.25\n185368|0.61111\n185369|0.5\n185370|0.33333\n185371|0.43056\n185372|0.5\n185373|0.58333\n185374|0.72222\n185375|0.66667\n185376|0.69444\n185377|0.79167\n185378|0.33333\n185379|0.63889\n185380|0.29167\n185381|0.52778\n185382|0.19444\n185383|0.27778\n185384|0.77778\n185385|0.61111\n185386|0.30556\n185387|0.15278\n185388|0.20833\n185389|0.68056\n185390|0.33333\n185391|0.43056\n185392|0.31944\n185393|0.5\n185394|0.51389\n185395|0.36111\n185396|0.51389\n185397|0.77778\n185398|0.68056\n185399|0.66667\n185400|0.33333\n185401|0.36111\n185402|0.5\n185403|0.375\n185404|0.40278\n185405|0.34722\n185406|0.48611\n185407|0.56944\n185408|0.45833\n185409|0.23611\n185410|0.5\n185411|0.58333\n185412|0.79167\n185413|0.5\n185414|0.63889\n185415|0.52778\n185416|0.5\n185417|0.5\n185418|0.61111\n185419|0.25\n185420|0.5\n185421|0.47222\n185422|0.5\n185423|0.5\n185424|0.5\n185425|0.5\n185426|0.5\n185427|0.72222\n185428|0.51389\n185429|0.54167\n185430|0.61111\n185431|0.52778\n185432|0.5\n185433|0.59722\n185434|0.55556\n185435|0.5\n185436|0.33333\n185437|0.63889\n185438|0.5\n185439|0.5\n185440|0.52778\n185441|0.5\n185442|0.44444\n185443|0.47222\n185444|0.48611\n185445|0.5\n185446|0.48611\n185447|0.58333\n185448|0.18056\n185449|0.19444\n185450|0.31944\n185451|0.45833\n185452|0.70833\n185453|0.25\n185454|0.23611\n185455|0.375\n185456|0.5\n185457|0.51389\n185458|0.5\n185459|0.5\n185460|0.51389\n185461|0.5\n185462|0.36111\n185463|0.59722\n185464|0.375\n185465|0.66667\n185466|0.5\n185467|0.5\n185468|0.5\n185469|0.45833\n185470|0.59722\n185471|0.44444\n185472|0.48611\n185473|0.34722\n185474|0.34722\n185475|0.61111\n185476|0.44444\n185477|0.5\n185478|0.5\n185479|0.52778\n185480|0.5\n185481|0.5\n185482|0.5\n185483|0.29167\n185484|0.5\n185485|0.5\n185486|0.66667\n185487|0.5\n185488|0.5\n185489|0.625\n185490|0.5\n185491|0.5\n185492|0.5\n185493|0.55556\n185494|0.55556\n185495|0.52778\n185496|0.45833\n185497|0.59722\n185498|0.36111\n185499|0.5\n185500|0.5\n185501|0.5\n185502|0.5\n185503|0.33333\n185504|0.40278\n185505|0.51389\n185506|0.56944\n185507|0.5\n185508|0.5\n185509|0.73611\n185510|0.58333\n185511|0.52778\n185512|0.54167\n185513|0.38889\n185514|0.58333\n185515|0.18056\n185516|0.5\n185517|0.22222\n185518|0.5\n185519|0.5\n185520|0.44444\n185521|0.5\n185522|0.59722\n185523|0.5\n185524|0.58333\n185525|0.72222\n185526|0.83333\n185527|0.72222\n185528|0.55556\n185529|0.61111\n185530|0.5\n185531|0.30556\n185532|0.59722\n185533|0.44444\n185534|0.66667\n185535|0.76389\n185536|0.19444\n185537|0.5\n185538|0.44444\n185539|0.27778\n185540|0.59722\n185541|0.5\n185542|0.31944\n185543|0.29167\n185544|0.38889\n185545|0.15278\n185546|0.055556\n185547|0.15278\n185548|0.77778\n185549|0.40278\n185550|0.54167\n185551|0.26389\n185552|0.055556\n185553|0.55556\n185554|0.44444\n185555|0.30556\n185556|0.56944\n185557|0.66667\n185558|0.29167\n185559|0.5\n185560|0.51389\n185561|0.5\n185562|0.5\n185563|0.55556\n185564|0.5\n185565|0.5\n185566|0.45833\n185567|0.5\n185568|0.51389\n185569|0.38889\n185570|0.48611\n185571|0.5\n185572|0.375\n185573|0.30556\n185574|0.5\n185575|0.5\n185576|0.48611\n185577|0.5\n185578|0.33333\n185579|0.5\n185580|0.5\n185581|0.5\n185582|0.5\n185583|0.68056\n185584|0.22222\n185585|0.5\n185586|0.22222\n185587|0.58333\n185588|0.5\n185589|0.65278\n185590|0.54167\n185591|0.73611\n185592|0.5\n185593|0.5\n185594|0.5\n185595|0.5\n185596|0.5\n185597|0.51389\n185598|0.5\n185599|0.5\n185600|0.55556\n185601|0.66667\n185602|0.5\n185603|0.61111\n185604|0.5\n185605|0.22222\n185606|0.5\n185607|0.5\n185608|0.43056\n185609|0.5\n185610|0.25\n185611|0.51389\n185612|0.5\n185613|0.54167\n185614|0.36111\n185615|0.44444\n185616|0.5\n185617|0.5\n185618|0.26389\n185619|0.5\n185620|0.5\n185621|0.5\n185622|0.66667\n185623|0.44444\n185624|0.5\n185625|0.19444\n185626|0.43056\n185627|0.5\n185628|0.5\n185629|0.22222\n185630|0.27778\n185631|0.51389\n185632|0.26389\n185633|0.44444\n185634|0.5\n185635|0.5\n185636|0.5\n185637|0.5\n185638|0.16667\n185639|0.5\n185640|0.44444\n185641|0.22222\n185642|0.27778\n185643|0.19444\n185644|0.19444\n185645|0.5\n185646|0.5\n185647|0.30556\n185648|0.5\n185649|0.5\n185650|0.54167\n185651|0.5\n185652|0.66667\n185653|0.63889\n185654|0.5\n185655|0.69444\n185656|0.5\n185657|0.5\n185658|0.5\n185659|0.5\n185660|0.16667\n185661|0.20833\n185662|0.26389\n185663|0.33333\n185664|0.29167\n185665|0.33333\n185666|0.43056\n185667|0.23611\n185668|0.18056\n185669|0.125\n185670|0.29167\n185671|0.51389\n185672|0.51389\n185673|0.58333\n185674|0.5\n185675|0.5\n185676|0.5\n185677|0.52778\n185678|0.59722\n185679|0.72222\n185680|0.54167\n185681|0.47222\n185682|0.43056\n185683|0.5\n185684|0.5\n185685|0.5\n185686|0.51389\n185687|0.5\n185688|0.5\n185689|0.5\n185690|0.5\n185691|0.54167\n185692|0.5\n185693|0.48611\n185694|0.5\n185695|0.5\n185696|0.31944\n185697|0.375\n185698|0.29167\n185699|0.27778\n185700|0.29167\n185701|0.125\n185702|0.63889\n185703|0.31944\n185704|0.31944\n185705|0.33333\n185706|0.125\n185707|0.11111\n185708|0.5\n185709|0.44444\n185710|0.27778\n185711|0.5\n185712|0.5\n185713|0.63889\n185714|0.5\n185715|0.5\n185716|0.45833\n185717|0.31944\n185718|0.5\n185719|0.5\n185720|0.5\n185721|0.5\n185722|0.38889\n185723|0.51389\n185724|0.5\n185725|0.65278\n185726|0.66667\n185727|0.5\n185728|0.5\n185729|0.625\n185730|0.56944\n185731|0.34722\n185732|0.44444\n185733|0.45833\n185734|0.44444\n185735|0.18056\n185736|0.48611\n185737|0.34722\n185738|0.5\n185739|0.34722\n185740|0.16667\n185741|0.18056\n185742|0.47222\n185743|0.69444\n185744|0.22222\n185745|0.44444\n185746|0.55556\n185747|0.5\n185748|0.66667\n185749|0.34722\n185750|0.31944\n185751|0.33333\n185752|0.27778\n185753|0.25\n185754|0.51389\n185755|0.27778\n185756|0.22222\n185757|0.18056\n185758|0.33333\n185759|0.23611\n185760|0.22222\n185761|0.26389\n185762|0.45833\n185763|0.27778\n185764|0.33333\n185765|0.31944\n185766|0.44444\n185767|0.20833\n185768|0.48611\n185769|0.30556\n185770|0.375\n185771|0.5\n185772|0.45833\n185773|0.51389\n185774|0.5\n185775|0.58333\n185776|0.125\n185777|0.23611\n185778|0.25\n185779|0.375\n185780|0.375\n185781|0.34722\n185782|0.19444\n185783|0.5\n185784|0.18056\n185785|0.36111\n185786|0.31944\n185787|0.5\n185788|0.69444\n185789|0.65278\n185790|0.625\n185791|0.31944\n185792|0.33333\n185793|0.41667\n185794|0.40278\n185795|0.5\n185796|0.15278\n185797|0.59722\n185798|0.47222\n185799|0.5\n185800|0.27778\n185801|0.68056\n185802|0.5\n185803|0.34722\n185804|0.5\n185805|0.5\n185806|0.55556\n185807|0.72222\n185808|0.5\n185809|0.45833\n185810|0.52778\n185811|0.61111\n185812|0.43056\n185813|0.33333\n185814|0.055556\n185815|0.27778\n185816|0.5\n185817|0.5\n185818|0.45833\n185819|0.38889\n185820|0.55556\n185821|0.47222\n185822|0.51389\n185823|0.44444\n185824|0.48611\n185825|0.51389\n185826|0.29167\n185827|0.30556\n185828|0.5\n185829|0.5\n185830|0.5\n185831|0.5\n185832|0.68056\n185833|0.68056\n185834|0.55556\n185835|0.36111\n185836|0.20833\n185837|0.5\n185838|0.375\n185839|0.38889\n185840|0.25\n185841|0.45833\n185842|0.27778\n185843|0.33333\n185844|0.52778\n185845|0.51389\n185846|0.5\n185847|0.5\n185848|0.41667\n185849|0.47222\n185850|0.5\n185851|0.5\n185852|0.5\n185853|0.5\n185854|0.5\n185855|0.375\n185856|0.44444\n185857|0.16667\n185858|0.36111\n185859|0.375\n185860|0.33333\n185861|0.5\n185862|0.29167\n185863|0.5\n185864|0.59722\n185865|0.44444\n185866|0.38889\n185867|0.36111\n185868|0.44444\n185869|0.23611\n185870|0.16667\n185871|0.625\n185872|0.51389\n185873|0.48611\n185874|0.33333\n185875|0.30556\n185876|0.18056\n185877|0.375\n185878|0.11111\n185879|0.5\n185880|0.5\n185881|0.56944\n185882|0.36111\n185883|0.36111\n185884|0.5\n185885|0.61111\n185886|0.77778\n185887|0.5\n185888|0.44444\n185889|0.41667\n185890|0.66667\n185891|0.58333\n185892|0.30556\n185893|0.36111\n185894|0.27778\n185895|0.61111\n185896|0.77778\n185897|0.51389\n185898|0.45833\n185899|0.40278\n185900|0.5\n185901|0.5\n185902|0.55556\n185903|0.47222\n185904|0.5\n185905|0.5\n185906|0.5\n185907|0.38889\n185908|0.38889\n185909|0.13889\n185910|0.25\n185911|0.75\n185912|0.5\n185913|0.70833\n185914|0.61111\n185915|0.84722\n185916|0.63889\n185917|0.63889\n185918|0.27778\n185919|0.66667\n185920|0.40278\n185921|0.48611\n185922|0.5\n185923|0.5\n185924|0.5\n185925|0.25\n185926|0.66667\n185927|0.36111\n185928|0.66667\n185929|0.5\n185930|0.52778\n185931|0.15278\n185932|0.055556\n185933|0.5\n185934|0.5\n185935|0.41667\n185936|0.5\n185937|0.52778\n185938|0.55556\n185939|0.56944\n185940|0.5\n185941|0.48611\n185942|0.47222\n185943|0.55556\n185944|0.47222\n185945|0.33333\n185946|0.51389\n185947|0.51389\n185948|0.56944\n185949|0.18056\n185950|0.76389\n185951|0.66667\n185952|0.19444\n185953|0.5\n185954|0.5\n185955|0.55556\n185956|0.61111\n185957|0.66667\n185958|0.33333\n185959|0.5\n185960|0.5\n185961|0.23611\n185962|0.11111\n185963|0.5\n185964|0.43056\n185965|0.5\n185966|0.055556\n185967|0.25\n185968|0.40278\n185969|0.27778\n185970|0.26389\n185971|0.375\n185972|0.34722\n185973|0.5\n185974|0.5\n185975|0.5\n185976|0.5\n185977|0.40278\n185978|0.5\n185979|0.5\n185980|0.5\n185981|0.23611\n185982|0.29167\n185983|0.22222\n185984|0.22222\n185985|0.22222\n185986|0.27778\n185987|0.30556\n185988|0.5\n185989|0.5\n185990|0.44444\n185991|0.31944\n185992|0.23611\n185993|0.34722\n185994|0.41667\n185995|0.36111\n185996|0.52778\n185997|0.55556\n185998|0.40278\n185999|0.29167\n186000|0.38889\n186001|0.47222\n186002|0.51389\n186003|0.5\n186004|0.51389\n186005|0.56944\n186006|0.43056\n186007|0.5\n186008|0.5\n186009|0.68056\n186010|0.5\n186011|0.55556\n186012|0.5\n186013|0.5\n186014|0.56944\n186015|0.5\n186016|0.47222\n186017|0.5\n186018|0.5\n186019|0.33333\n186020|0.40278\n186021|0.5\n186022|0.38889\n186023|0.5\n186024|0.5\n186025|0.20833\n186026|0.52778\n186027|0.31944\n186028|0.5\n186029|0.5\n186030|0.5\n186031|0.51389\n186032|0.13889\n186033|0.5\n186034|0.5\n186035|0.5\n186036|0.26389\n186037|0.5\n186038|0.63889\n186039|0.5\n186040|0.5\n186041|0.5\n186042|0.29167\n186043|0.26389\n186044|0.27778\n186045|0.5\n186046|0.55556\n186047|0.44444\n186048|0.30556\n186049|0.5\n186050|0.5\n186051|0.45833\n186052|0.23611\n186053|0.041667\n186054|0.5\n186055|0.5\n186056|0.5\n186057|0.59722\n186058|0.16667\n186059|0.5\n186060|0.61111\n186061|0.5\n186062|0.5\n186063|0.125\n186064|0.20833\n186065|0.55556\n186066|0.52778\n186067|0.41667\n186068|0.22222\n186069|0.47222\n186070|0.51389\n186071|0.5\n186072|0.5\n186073|0.29167\n186074|0.29167\n186075|0.5\n186076|0.5\n186077|0.40278\n186078|0.75\n186079|0.55556\n186080|0.72222\n186081|0.61111\n186082|0.22222\n186083|0.36111\n186084|0.16667\n186085|0.26389\n186086|0.34722\n186087|0.16667\n186088|0.22222\n186089|0.52778\n186090|0.63889\n186091|0.56944\n186092|0.40278\n186093|0.47222\n186094|0.15278\n186095|0.43056\n186096|0.5\n186097|0.40278\n186098|0.48611\n186099|0.55556\n186100|0.68056\n186101|0.5\n186102|0.5\n186103|0.58333\n186104|0.55556\n186105|0.52778\n186106|0.5\n186107|0.5\n186108|0.54167\n186109|0.51389\n186110|0.61111\n186111|0.51389\n186112|0.625\n186113|0.5\n186114|0.5\n186115|0.5\n186116|0.5\n186117|0.38889\n186118|0.47222\n186119|0.25\n186120|0.5\n186121|0.5\n186122|0.5\n186123|0.5\n186124|0.5\n186125|0.5\n186126|0.5\n186127|0.5\n186128|0.52778\n186129|0.625\n186130|0.5\n186131|0.61111\n186132|0.5\n186133|0.59722\n186134|0.25\n186135|0.73611\n186136|0.5\n186137|0.55556\n186138|0.38889\n186139|0.36111\n186140|0.5\n186141|0.5\n186142|0.5\n186143|0.5\n186144|0.5\n186145|0.36111\n186146|0.5\n186147|0.5\n186148|0.5\n186149|0.5\n186150|0.5\n186151|0.51389\n186152|0.34722\n186153|0.29167\n186154|0.26389\n186155|0.40278\n186156|0.48611\n186157|0.36111\n186158|0.66667\n186159|0.30556\n186160|0.59722\n186161|0.43056\n186162|0.43056\n186163|0.013889\n186164|0.11111\n186165|0.75\n186166|0.375\n186167|0.19444\n186168|0.22222\n186169|0.45833\n186170|0.27778\n186171|0.27778\n186172|0.5\n186173|0.5\n186174|0.45833\n186175|0.5\n186176|0.625\n186177|0.55556\n186178|0.48611\n186179|0.41667\n186180|0.47222\n186181|0.13889\n186182|0.22222\n186183|0.5\n186184|0.5\n186185|0.45833\n186186|0.5\n186187|0.45833\n186188|0.5\n186189|0.16667\n186190|0.5\n186191|0.5\n186192|0.5\n186193|0.5\n186194|0.41667\n186195|0.45833\n186196|0.33333\n186197|0.27778\n186198|0.5\n186199|0.097222\n186200|0.25\n186201|0.5\n186202|0.65278\n186203|0.54167\n186204|0.5\n186205|0.23611\n186206|0.63889\n186207|0.52778\n186208|0.51389\n186209|0.51389\n186210|0.56944\n186211|0.66667\n186212|0.41667\n186213|0.5\n186214|0.29167\n186215|0.5\n186216|0.44444\n186217|0.5\n186218|0.73611\n186219|0.86111\n186220|0.73611\n186221|0.375\n186222|0.48611\n186223|0.5\n186224|0.5\n186225|0.51389\n186226|0.5\n186227|0.63889\n186228|0.5\n186229|0.76389\n186230|0.52778\n186231|0.20833\n186232|0.5\n186233|0.23611\n186234|0.31944\n186235|0.33333\n186236|0.125\n186237|0.31944\n186238|0.15278\n186239|0.25\n186240|0.13889\n186241|0.41667\n186242|0.51389\n186243|0.44444\n186244|0.34722\n186245|0.72222\n186246|0.5\n186247|0.36111\n186248|0.51389\n186249|0.77778\n186250|0.73611\n186251|0.56944\n186252|0.33333\n186253|0.44444\n186254|0.33333\n186255|0.51389\n186256|0.5\n186257|0.5\n186258|0.5\n186259|0.40278\n186260|0.5\n186261|0.18056\n186262|0.11111\n186263|0.26389\n186264|0.23611\n186265|0.5\n186266|0.34722\n186267|0.5\n186268|0.5\n186269|0.55556\n186270|0.48611\n186271|0.72222\n186272|0.55556\n186273|0.41667\n186274|0.13889\n186275|0.38889\n186276|0.48611\n186277|0.375\n186278|0.5\n186279|0.5\n186280|0.66667\n186281|0.65278\n186282|0.48611\n186283|0.375\n186284|0.40278\n186285|0.66667\n186286|0.11111\n186287|0.5\n186288|0.30556\n186289|0.33333\n186290|0.31944\n186291|0.5\n186292|0.5\n186293|0.52778\n186294|0.45833\n186295|0.38889\n186296|0.31944\n186297|0.41667\n186298|0.31944\n186299|0.11111\n186300|0.58333\n186301|0.61111\n186302|0.47222\n186303|0.70833\n186304|0.26389\n186305|0.23611\n186306|0.25\n186307|0.73611\n186308|0.27778\n186309|0.5\n186310|0.33333\n186311|0.5\n186312|0.48611\n186313|0.59722\n186314|0.5\n186315|0.13889\n186316|0.18056\n186317|0.33333\n186318|0.5\n186319|0.5\n186320|0.23611\n186321|0.5\n186322|0.61111\n186323|0.5\n186324|0.5\n186325|0.51389\n186326|0.51389\n186327|0.47222\n186328|0.55556\n186329|0.66667\n186330|0.72222\n186331|0.79167\n186332|0.5\n186333|0.5\n186334|0.44444\n186335|0.40278\n186336|0.5\n186337|0.5\n186338|0.33333\n186339|0.625\n186340|0.29167\n186341|0.33333\n186342|0.23611\n186343|0.26389\n186344|0.29167\n186345|0.5\n186346|0.5\n186347|0.5\n186348|0.5\n186349|0.5\n186350|0.13889\n186351|0.5\n186352|0.33333\n186353|0.5\n186354|0.45833\n186355|0.29167\n186356|0.52778\n186357|0.44444\n186358|0.47222\n186359|0.75\n186360|0.66667\n186361|0.38889\n186362|0.083333\n186363|0.375\n186364|0.22222\n186365|0.41667\n186366|0.15278\n186367|0.34722\n186368|0.16667\n186369|0.33333\n186370|0.38889\n186371|0.31944\n186372|0.23611\n186373|0.097222\n186374|0.45833\n186375|0.20833\n186376|0.375\n186377|0.51389\n186378|0.625\n186379|0.43056\n186380|0.36111\n186381|0.41667\n186382|0.16667\n186383|0.41667\n186384|0.27778\n186385|0.5\n186386|0.5\n186387|0.34722\n186388|0.33333\n186389|0.36111\n186390|0.41667\n186391|0.40278\n186392|0.27778\n186393|0.5\n186394|0.55556\n186395|0.47222\n186396|0.38889\n186397|0.29167\n186398|0.47222\n186399|0.5\n186400|0.45833\n186401|0.5\n186402|0.26389\n186403|0.23611\n186404|0.19444\n186405|0.31944\n186406|0.16667\n186407|0.16667\n186408|0.44444\n186409|0.25\n186410|0.5\n186411|0.52778\n186412|0.375\n186413|0.40278\n186414|0.45833\n186415|0.23611\n186416|0.26389\n186417|0.20833\n186418|0.20833\n186419|0.055556\n186420|0.5\n186421|0.5\n186422|0.5\n186423|0.52778\n186424|0.5\n186425|0.5\n186426|0.27778\n186427|0.625\n186428|0.51389\n186429|0.56944\n186430|0.79167\n186431|0.58333\n186432|0.29167\n186433|0.16667\n186434|0.5\n186435|0.47222\n186436|0.55556\n186437|0.31944\n186438|0.38889\n186439|0.34722\n186440|0.36111\n186441|0.16667\n186442|0.23611\n186443|0.33333\n186444|0.45833\n186445|0.38889\n186446|0.11111\n186447|0.59722\n186448|0.5\n186449|0.23611\n186450|0.33333\n186451|0.27778\n186452|0.38889\n186453|0.11111\n186454|0.70833\n186455|0.5\n186456|0.375\n186457|0.54167\n186458|0.51389\n186459|0.41667\n186460|0.22222\n186461|0.27778\n186462|0.48611\n186463|0.5\n186464|0.38889\n186465|0.125\n186466|0.43056\n186467|0.27778\n186468|0.38889\n186469|0.125\n186470|0.34722\n186471|0.26389\n186472|0.27778\n186473|0.38889\n186474|0.22222\n186475|0.33333\n186476|0.29167\n186477|0.25\n186478|0.5\n186479|0.20833\n186480|0.5\n186481|0.5\n186482|0.25\n186483|0.20833\n186484|0.16667\n186485|0.5\n186486|0.75\n186487|0.25\n186488|0.41667\n186489|0.5\n186490|0.5\n186491|0.5\n186492|0.52778\n186493|0.44444\n186494|0.5\n186495|0.69444\n186496|0.58333\n186497|0.43056\n186498|0.027778\n186499|0.069444\n186500|0.5\n186501|0.22222\n186502|0.5\n186503|0.5\n186504|0.52778\n186505|0.44444\n186506|0.52778\n186507|0.51389\n186508|0.48611\n186509|0.11111\n186510|0.5\n186511|0.22222\n186512|0.5\n186513|0.72222\n186514|0.11111\n186515|0.5\n186516|0.5\n186517|0.29167\n186518|0.5\n186519|0.5\n186520|0.5\n186521|0.61111\n186522|0.43056\n186523|0.45833\n186524|0.34722\n186525|0.5\n186526|0.31944\n186527|0.40278\n186528|0.52778\n186529|0.33333\n186530|0.27778\n186531|0.15278\n186532|0.66667\n186533|0.47222\n186534|0.47222\n186535|0.31944\n186536|0.38889\n186537|0.22222\n186538|0.44444\n186539|0.47222\n186540|0.19444\n186541|0.59722\n186542|0.63889\n186543|0.83333\n186544|0.44444\n186545|0.13889\n186546|0.43056\n186547|0.34722\n186548|0.36111\n186549|0.36111\n186550|0.26389\n186551|0.44444\n186552|0.58333\n186553|0.38889\n186554|0.22222\n186555|0.81944\n186556|0.93056\n186557|0.18056\n186558|0.20833\n186559|0.48611\n186560|0.16667\n186561|0.097222\n186562|0.29167\n186563|0.25\n186564|0.055556\n186565|0.29167\n186566|0.013889\n186567|0.23611\n186568|0.069444\n186569|0.43056\n186570|0\n186571|0.63889\n186572|0.5\n186573|0.19444\n186574|0.22222\n186575|0.47222\n186576|0.23611\n186577|0.36111\n186578|0.29167\n186579|0.80556\n186580|0.81944\n186581|0.5\n186582|0.44444\n186583|0.44444\n186584|0.625\n186585|0.52778\n186586|0.33333\n186587|0.15278\n186588|0.55556\n186589|0.61111\n186590|0.61111\n186591|0.70833\n186592|0.51389\n186593|0.16667\n186594|0.16667\n186595|0.5\n186596|0.34722\n186597|0.30556\n186598|0.5\n186599|0.19444\n186600|0.45833\n186601|0.61111\n186602|0.33333\n186603|0.5\n186604|0.47222\n186605|0.19444\n186606|0.5\n186607|0.66667\n186608|0.5\n186609|0.58333\n186610|0.5\n186611|0.5\n186612|0.48611\n186613|0.5\n186614|0.26389\n186615|0.5\n186616|0.5\n186617|0.52778\n186618|0.5\n186619|0.36111\n186620|0.56944\n186621|0.88889\n186622|0.26389\n186623|0.66667\n186624|0.5\n186625|0.48611\n186626|0.52778\n186627|0.47222\n186628|0.23611\n186629|0.18056\n186630|0.5\n186631|0.55556\n186632|0.23611\n186633|0.34722\n186634|0.44444\n186635|0.36111\n186636|0.26389\n186637|0.31944\n186638|0.19444\n186639|0.5\n186640|0.5\n186641|0.22222\n186642|0.11111\n186643|0.5\n186644|0.5\n186645|0.625\n186646|0.55556\n186647|0.5\n186648|0.48611\n186649|0.5\n186650|0.5\n186651|0.5\n186652|0.44444\n186653|0.31944\n186654|0.69444\n186655|0.73611\n186656|0.40278\n186657|0.55556\n186658|0.375\n186659|0.5\n186660|0.48611\n186661|0.5\n186662|0.18056\n186663|0.15278\n186664|0.5\n186665|0.48611\n186666|0.5\n186667|0.58333\n186668|0.30556\n186669|0.5\n186670|0.27778\n186671|0.625\n186672|0.27778\n186673|0.54167\n186674|0.47222\n186675|0.66667\n186676|0.68056\n186677|0.56944\n186678|0.47222\n186679|0.31944\n186680|0.5\n186681|0.22222\n186682|0.5\n186683|0.43056\n186684|0.5\n186685|0.44444\n186686|0.34722\n186687|0.375\n186688|0.5\n186689|0.5\n186690|0.69444\n186691|0.79167\n186692|0.41667\n186693|0.51389\n186694|0.33333\n186695|0.51389\n186696|0.5\n186697|0.5\n186698|0.65278\n186699|0.5\n186700|0.51389\n186701|0.5\n186702|0.33333\n186703|0.5\n186704|0.54167\n186705|0.51389\n186706|0.11111\n186707|0.43056\n186708|0.47222\n186709|0.26389\n186710|0.41667\n186711|0.40278\n186712|0.51389\n186713|0.27778\n186714|0.36111\n186715|0.5\n186716|0.5\n186717|0.41667\n186718|0.45833\n186719|0.56944\n186720|0.5\n186721|0.5\n186722|0.5\n186723|0.63889\n186724|0.45833\n186725|0.5\n186726|0.5\n186727|0.51389\n186728|0.5\n186729|0.25\n186730|0.5\n186731|0.5\n186732|0.5\n186733|0.5\n186734|0.51389\n186735|0.5\n186736|0.5\n186737|0.34722\n186738|0.51389\n186739|0.43056\n186740|0.25\n186741|0.25\n186742|0.58333\n186743|0.069444\n186744|0.5\n186745|0.61111\n186746|0.5\n186747|0.5\n186748|0.58333\n186749|0.31944\n186750|0.30556\n186751|0.59722\n186752|0.33333\n186753|0.54167\n186754|0.58333\n186755|0.27778\n186756|0.375\n186757|0.19444\n186758|0.27778\n186759|0.41667\n186760|0.65278\n186761|0.5\n186762|0.29167\n186763|0.43056\n186764|0.23611\n186765|0.22222\n186766|0.33333\n186767|0.51389\n186768|0.22222\n186769|0.097222\n186770|0.52778\n186771|0.54167\n186772|0.38889\n186773|0.38889\n186774|0.52778\n186775|0.66667\n186776|0.56944\n186777|0.18056\n186778|0.16667\n186779|0.055556\n186780|0.20833\n186781|0.27778\n186782|0.375\n186783|0.16667\n186784|0.5\n186785|0.52778\n186786|0.52778\n186787|0.5\n186788|0.29167\n186789|0.5\n186790|0.75\n186791|0.55556\n186792|0.41667\n186793|0.5\n186794|0.5\n186795|0.5\n186796|0.40278\n186797|0.51389\n186798|0.5\n186799|0.29167\n186800|0.23611\n186801|0.30556\n186802|0.5\n186803|0.5\n186804|0.44444\n186805|0.5\n186806|0.26389\n186807|0.25\n186808|0.5\n186809|0.5\n186810|0.66667\n186811|0.5\n186812|0.48611\n186813|0.5\n186814|0.625\n186815|0.375\n186816|0.22222\n186817|0.51389\n186818|0.45833\n186819|0.16667\n186820|0.5\n186821|0.5\n186822|0.5\n186823|0.47222\n186824|0.44444\n186825|0.51389\n186826|0.59722\n186827|0.52778\n186828|0.26389\n186829|0.20833\n186830|0.22222\n186831|0.59722\n186832|0.625\n186833|0.5\n186834|0.61111\n186835|0.55556\n186836|0.55556\n186837|0.5\n186838|0.48611\n186839|0.83333\n186840|0.5\n186841|0.5\n186842|0.5\n186843|0.51389\n186844|0.65278\n186845|0.5\n186846|0.52778\n186847|0.61111\n186848|0.61111\n186849|0.5\n186850|0.33333\n186851|0.19444\n186852|0.19444\n186853|0.18056\n186854|0.33333\n186855|0.33333\n186856|0.5\n186857|0.5\n186858|0.45833\n186859|0.5\n186860|0.5\n186861|0.27778\n186862|0.625\n186863|0.56944\n186864|0.5\n186865|0.40278\n186866|0.41667\n186867|0.26389\n186868|0.36111\n186869|0.36111\n186870|0.76389\n186871|0.58333\n186872|0.5\n186873|0.625\n186874|0.40278\n186875|0.20833\n186876|0.36111\n186877|0.41667\n186878|0.30556\n186879|0.5\n186880|0.5\n186881|0.51389\n186882|0.41667\n186883|0.38889\n186884|0.375\n186885|0.22222\n186886|0.16667\n186887|0.31944\n186888|0.18056\n186889|0.125\n186890|0.38889\n186891|0.5\n186892|0.25\n186893|0.48611\n186894|0.375\n186895|0.51389\n186896|0.29167\n186897|0.15278\n186898|0.5\n186899|0.33333\n186900|0.13889\n186901|0.58333\n186902|0.55556\n186903|0.51389\n186904|0.25\n186905|0.27778\n186906|0.29167\n186907|0.13889\n186908|0.20833\n186909|0.38889\n186910|0.20833\n186911|0.41667\n186912|0.55556\n186913|0.58333\n186914|0.36111\n186915|0.48611\n186916|0.5\n186917|0.66667\n186918|0.65278\n186919|0.36111\n186920|0.375\n186921|0.23611\n186922|0.38889\n186923|0.58333\n186924|0.5\n186925|0.44444\n186926|0.59722\n186927|0.5\n186928|0.5\n186929|0.5\n186930|0.5\n186931|0.5\n186932|0.5\n186933|0.75\n186934|0.69444\n186935|0.56944\n186936|0.22222\n186937|0.44444\n186938|0.5\n186939|0.5\n186940|0.58333\n186941|0.72222\n186942|0.75\n186943|0.45833\n186944|0.27778\n186945|0.52778\n186946|0.5\n186947|0.5\n186948|0.5\n186949|0.5\n186950|0.43056\n186951|0.44444\n186952|0.54167\n186953|0.36111\n186954|0.38889\n186955|0.22222\n186956|0.40278\n186957|0.52778\n186958|0.56944\n186959|0.47222\n186960|0.5\n186961|0.5\n186962|0.5\n186963|0.5\n186964|0.34722\n186965|0.18056\n186966|0.5\n186967|0.5\n186968|0.5\n186969|0.55556\n186970|0.33333\n186971|0.5\n186972|0.5\n186973|0.5\n186974|0.51389\n186975|0.5\n186976|0.56944\n186977|0.51389\n186978|0.51389\n186979|0.52778\n186980|0.5\n186981|0.55556\n186982|0.5\n186983|0.5\n186984|0.5\n186985|0.5\n186986|0.5\n186987|0.55556\n186988|0.61111\n186989|0.58333\n186990|0.34722\n186991|0.5\n186992|0.47222\n186993|0.30556\n186994|0.27778\n186995|0.34722\n186996|0.5\n186997|0.5\n186998|0.36111\n186999|0.52778\n187000|0.56944\n187001|0.63889\n187002|0.5\n187003|0.5\n187004|0.31944\n187005|0.45833\n187006|0.65278\n187007|0.55556\n187008|0.36111\n187009|0.52778\n187010|0.5\n187011|0.18056\n187012|0.52778\n187013|0.375\n187014|0.30556\n187015|0.20833\n187016|0.55556\n187017|0.58333\n187018|0.52778\n187019|0.51389\n187020|0.29167\n187021|0.5\n187022|0.48611\n187023|0.5\n187024|0.38889\n187025|0.20833\n187026|0.25\n187027|0.44444\n187028|0.44444\n187029|0.5\n187030|0.51389\n187031|0.5\n187032|0.27778\n187033|0.375\n187034|0.47222\n187035|0.47222\n187036|0.38889\n187037|0.27778\n187038|0.5\n187039|0.26389\n187040|0.5\n187041|0.51389\n187042|0.5\n187043|0.81944\n187044|0.5\n187045|0.5\n187046|0.5\n187047|0.5\n187048|0.5\n187049|0.5\n187050|0.5\n187051|0.16667\n187052|0.16667\n187053|0.29167\n187054|0.25\n187055|0.22222\n187056|0.5\n187057|0.52778\n187058|0.5\n187059|0.5\n187060|0.11111\n187061|0.30556\n187062|0.44444\n187063|0.625\n187064|0.23611\n187065|0.23611\n187066|0.33333\n187067|0.47222\n187068|0.48611\n187069|0.59722\n187070|0.625\n187071|0.79167\n187072|0.375\n187073|0.16667\n187074|0.31944\n187075|0.27778\n187076|0.55556\n187077|0.52778\n187078|0.44444\n187079|0.5\n187080|0.5\n187081|0.44444\n187082|0.48611\n187083|0.52778\n187084|0.55556\n187085|0.23611\n187086|0.44444\n187087|0.29167\n187088|0.26389\n187089|0.58333\n187090|0.27778\n187091|0.79167\n187092|0.80556\n187093|0.68056\n187094|0.22222\n187095|0.23611\n187096|0.81944\n187097|0.68056\n187098|0.51389\n187099|0.5\n187100|0.69444\n187101|0.69444\n187102|0.68056\n187103|0.68056\n187104|0.5\n187105|0.58333\n187106|0.5\n187107|0.22222\n187108|0.29167\n187109|0.23611\n187110|0.23611\n187111|0.22222\n187112|0.5\n187113|0.5\n187114|0.055556\n187115|0.51389\n187116|0.44444\n187117|0.59722\n187118|0.5\n187119|0.5\n187120|0.5\n187121|0.27778\n187122|0.38889\n187123|0.5\n187124|0.66667\n187125|0.5\n187126|0.5\n187127|0.5\n187128|0.5\n187129|0.29167\n187130|0.44444\n187131|0.29167\n187132|0.66667\n187133|0.41667\n187134|0.36111\n187135|0.61111\n187136|0.5\n187137|0.5\n187138|0.875\n187139|0.5\n187140|0.36111\n187141|0.5\n187142|0.63889\n187143|0.38889\n187144|0.5\n187145|0.5\n187146|0.45833\n187147|0.5\n187148|0.31944\n187149|0.625\n187150|0.5\n187151|0.5\n187152|0.38889\n187153|0.5\n187154|0.27778\n187155|0.5\n187156|0.38889\n187157|0.29167\n187158|0.5\n187159|0.5\n187160|0.5\n187161|0.5\n187162|0.5\n187163|0.81944\n187164|0.77778\n187165|0.75\n187166|0.61111\n187167|0.51389\n187168|0.66667\n187169|0.68056\n187170|0.5\n187171|0.5\n187172|0.66667\n187173|0.47222\n187174|0.19444\n187175|0.5\n187176|0.25\n187177|0.5\n187178|0.5\n187179|0.31944\n187180|0.63889\n187181|0.61111\n187182|0.34722\n187183|0.16667\n187184|0.11111\n187185|0.20833\n187186|0.51389\n187187|0.22222\n187188|0.33333\n187189|0.29167\n187190|0.097222\n187191|0.29167\n187192|0.30556\n187193|0.30556\n187194|0.5\n187195|0.59722\n187196|0.5\n187197|0.5\n187198|0.5\n187199|0.5\n187200|0.48611\n187201|0.625\n187202|0.48611\n187203|0.5\n187204|0.33333\n187205|0.59722\n187206|0.31944\n187207|0.34722\n187208|0.43056\n187209|0.45833\n187210|0.44444\n187211|0.5\n187212|0.34722\n187213|0.27778\n187214|0.38889\n187215|0.5\n187216|0.5\n187217|0.55556\n187218|0.59722\n187219|0.5\n187220|0.38889\n187221|0.5\n187222|0.5\n187223|0.5\n187224|0.30556\n187225|0.5\n187226|0.5\n187227|0.40278\n187228|0.5\n187229|0.625\n187230|0.58333\n187231|0.27778\n187232|0.11111\n187233|0.22222\n187234|0.23611\n187235|0.625\n187236|0.79167\n187237|0.56944\n187238|0.66667\n187239|0.58333\n187240|0.5\n187241|0.5\n187242|0.5\n187243|0.16667\n187244|0.58333\n187245|0.59722\n187246|0.5\n187247|0.5\n187248|0.56944\n187249|0.41667\n187250|0.5\n187251|0.5\n187252|0.5\n187253|0.5\n187254|0.5\n187255|0.5\n187256|0.5\n187257|0.38889\n187258|0.19444\n187259|0.34722\n187260|0.13889\n187261|0.15278\n187262|0.68056\n187263|0.5\n187264|0.5\n187265|0.5\n187266|0.22222\n187267|0.48611\n187268|0.27778\n187269|0.61111\n187270|0.44444\n187271|0.5\n187272|0.55556\n187273|0.5\n187274|0.75\n187275|0.63889\n187276|0.31944\n187277|0.31944\n187278|0.22222\n187279|0.61111\n187280|0.33333\n187281|0.38889\n187282|0.44444\n187283|0.52778\n187284|0.54167\n187285|0.26389\n187286|0.26389\n187287|0.5\n187288|0.5\n187289|0.36111\n187290|0.5\n187291|0.5\n187292|0.5\n187293|0.47222\n187294|0.5\n187295|0.5\n187296|0.56944\n187297|0.38889\n187298|0.41667\n187299|0.20833\n187300|0.44444\n187301|0.5\n187302|0.5\n187303|0.22222\n187304|0.5\n187305|0.5\n187306|0.44444\n187307|0.5\n187308|0.23611\n187309|0.68056\n187310|0.5\n187311|0.55556\n187312|0.61111\n187313|0.51389\n187314|0.40278\n187315|0.54167\n187316|0.5\n187317|0.5\n187318|0.33333\n187319|0.23611\n187320|0.22222\n187321|0.43056\n187322|0.083333\n187323|0.79167\n187324|0.65278\n187325|0.45833\n187326|0.16667\n187327|0.013889\n187328|0.027778\n187329|0.027778\n187330|0.44444\n187331|0.38889\n187332|0.16667\n187333|0.125\n187334|0.34722\n187335|0.38889\n187336|0.23611\n187337|0.16667\n187338|0.18056\n187339|0.47222\n187340|0.45833\n187341|0.44444\n187342|0.48611\n187343|0.20833\n187344|0.25\n187345|0.22222\n187346|0.33333\n187347|0.041667\n187348|0\n187349|0.29167\n187350|0.083333\n187351|0.54167\n187352|0.44444\n187353|0.38889\n187354|0.5\n187355|0.55556\n187356|0.61111\n187357|0.19444\n187358|0.54167\n187359|0.54167\n187360|0.5\n187361|0.5\n187362|0.5\n187363|0.5\n187364|0.40278\n187365|0.73611\n187366|0.5\n187367|0.375\n187368|0.33333\n187369|0.055556\n187370|0.25\n187371|0.097222\n187372|0.45833\n187373|0.5\n187374|0.33333\n187375|0.41667\n187376|0.5\n187377|0.30556\n187378|0.5\n187379|0.68056\n187380|0.375\n187381|0.26389\n187382|0.11111\n187383|0.22222\n187384|0.20833\n187385|0.16667\n187386|0.31944\n187387|0.25\n187388|0.29167\n187389|0.34722\n187390|0.33333\n187391|0.11111\n187392|0.027778\n187393|0.31944\n187394|0.29167\n187395|0.30556\n187396|0.40278\n187397|0.22222\n187398|0.44444\n187399|0.5\n187400|0.38889\n187401|0.5\n187402|0.25\n187403|0.27778\n187404|0.5\n187405|0.61111\n187406|0.5\n187407|0.58333\n187408|0.52778\n187409|0.27778\n187410|0.45833\n187411|0.43056\n187412|0.31944\n187413|0.31944\n187414|0.31944\n187415|0.34722\n187416|0.65278\n187417|0.38889\n187418|0.31944\n187419|0.68056\n187420|0.5\n187421|0.27778\n187422|0.5\n187423|0.55556\n187424|0.54167\n187425|0.31944\n187426|0.16667\n187427|0.11111\n187428|0.40278\n187429|0.72222\n187430|0.52778\n187431|0.16667\n187432|0.44444\n187433|0.38889\n187434|0.5\n187435|0.44444\n187436|0.26389\n187437|0.083333\n187438|0.83333\n187439|0.40278\n187440|0.51389\n187441|0.43056\n187442|0.45833\n187443|0.22222\n187444|0.36111\n187445|0.59722\n187446|0.43056\n187447|0.65278\n187448|0.38889\n187449|0.27778\n187450|0.15278\n187451|0.5\n187452|0.29167\n187453|0.26389\n187454|0.29167\n187455|0.33333\n187456|0.30556\n187457|0.5\n187458|0.5\n187459|0.48611\n187460|0.55556\n187461|0.5\n187462|0.63889\n187463|0.58333\n187464|0.45833\n187465|0.40278\n187466|0.48611\n187467|0.19444\n187468|0.34722\n187469|0.44444\n187470|0.25\n187471|0.11111\n187472|0.36111\n187473|0.5\n187474|0.22222\n187475|0.44444\n187476|0.27778\n187477|0.26389\n187478|0.27778\n187479|0.125\n187480|0.25\n187481|0.22222\n187482|0.18056\n187483|0.083333\n187484|0.41667\n187485|0.055556\n187486|0.5\n187487|0.66667\n187488|0.5\n187489|0.5\n187490|0.5\n187491|0.5\n187492|0.23611\n187493|0.5\n187494|0.5\n187495|0.52778\n187496|0.44444\n187497|0.5\n187498|0.5\n187499|0.30556\n187500|0.94444\n187501|0.77778\n187502|0.70833\n187503|0.84722\n187504|0.72222\n187505|0.79167\n187506|0.58333\n187507|0.79167\n187508|0.93056\n187509|0.5\n187510|0.375\n187511|0.27778\n187512|0.26389\n187513|0.29167\n187514|0.125\n187515|0.5\n187516|0.51389\n187517|0.41667\n187518|0.30556\n187519|0.41667\n187520|0.5\n187521|0.5\n187522|0.20833\n187523|0.375\n187524|0.25\n187525|0.31944\n187526|0.375\n187527|0.36111\n187528|0.27778\n187529|0.11111\n187530|0.375\n187531|0.58333\n187532|0.5\n187533|0.36111\n187534|0.61111\n187535|0.30556\n187536|0.27778\n187537|0.61111\n187538|0.76389\n187539|0.72222\n187540|0.52778\n187541|0.72222\n187542|0.41667\n187543|0.30556\n187544|0.31944\n187545|0.45833\n187546|0.54167\n187547|0.013889\n187548|0.63889\n187549|0.22222\n187550|0.19444\n187551|0.36111\n187552|0.5\n187553|0.22222\n187554|0.33333\n187555|0.44444\n187556|0.48611\n187557|0.069444\n187558|0.43056\n187559|0.16667\n187560|0.069444\n187561|0.5\n187562|0.5\n187563|0.33333\n187564|0.36111\n187565|0.44444\n187566|0.44444\n187567|0.66667\n187568|0.5\n187569|0.22222\n187570|0.5\n187571|0.5\n187572|0.25\n187573|0.5\n187574|0.5\n187575|0.23611\n187576|0.25\n187577|0.56944\n187578|0.55556\n187579|0.26389\n187580|0.72222\n187581|0.375\n187582|0.625\n187583|0.5\n187584|0.47222\n187585|0.31944\n187586|0.43056\n187587|0.44444\n187588|0.5\n187589|0.5\n187590|0.26389\n187591|0.5\n187592|0.26389\n187593|0.48611\n187594|0.5\n187595|0.55556\n187596|0.30556\n187597|0.25\n187598|0.51389\n187599|0.875\n187600|0.66667\n187601|0.5\n187602|0.55556\n187603|0.26389\n187604|0.15278\n187605|0\n187606|0.027778\n187607|0.069444\n187608|0.055556\n187609|0.83333\n187610|0.47222\n187611|0.25\n187612|0.47222\n187613|0.45833\n187614|0.45833\n187615|0.43056\n187616|0.30556\n187617|0.36111\n187618|0.29167\n187619|0.25\n187620|0.34722\n187621|0.23611\n187622|0.40278\n187623|0.16667\n187624|0.23611\n187625|0.23611\n187626|0.29167\n187627|0.13889\n187628|0.45833\n187629|0.41667\n187630|0.61111\n187631|0.25\n187632|0.30556\n187633|0.16667\n187634|0.20833\n187635|0.30556\n187636|0.5\n187637|0.18056\n187638|0.5\n187639|0.51389\n187640|0.27778\n187641|0.36111\n187642|0.29167\n187643|0.22222\n187644|0.31944\n187645|0.48611\n187646|0.69444\n187647|0.30556\n187648|0.65278\n187649|0.18056\n187650|0.52778\n187651|0.66667\n187652|0.5\n187653|0.51389\n187654|0.5\n187655|0.44444\n187656|0.18056\n187657|0.56944\n187658|0.44444\n187659|0.54167\n187660|0.5\n187661|0.5\n187662|0.5\n187663|0.65278\n187664|0.51389\n187665|0.48611\n187666|0.63889\n187667|0.51389\n187668|0.45833\n187669|0.36111\n187670|0.31944\n187671|0.31944\n187672|0.5\n187673|0.5\n187674|0.25\n187675|0.26389\n187676|0.22222\n187677|0.73611\n187678|0.5\n187679|0.30556\n187680|0.61111\n187681|0.5\n187682|0.56944\n187683|0.16667\n187684|0.31944\n187685|0.51389\n187686|0.5\n187687|0.5\n187688|0.5\n187689|0.5\n187690|0.5\n187691|0.75\n187692|0.76389\n187693|0.61111\n187694|0.34722\n187695|0.19444\n187696|0.5\n187697|0.34722\n187698|0.38889\n187699|0.22222\n187700|0.5\n187701|0.36111\n187702|0.22222\n187703|0.5\n187704|0.66667\n187705|0.625\n187706|0.11111\n187707|0.33333\n187708|0.31944\n187709|0.26389\n187710|0.5\n187711|0.47222\n187712|0.45833\n187713|0.5\n187714|0.69444\n187715|0.5\n187716|0.27778\n187717|0.41667\n187718|0.5\n187719|0.34722\n187720|0.44444\n187721|0.34722\n187722|0.63889\n187723|0.19444\n187724|0.027778\n187725|0.13889\n187726|0.26389\n187727|0.5\n187728|0.51389\n187729|0.5\n187730|0.5\n187731|0.27778\n187732|0.44444\n187733|0.29167\n187734|0.23611\n187735|0.40278\n187736|0.5\n187737|0.31944\n187738|0.51389\n187739|0.19444\n187740|0.069444\n187741|0.48611\n187742|0.56944\n187743|0.61111\n187744|0.45833\n187745|0.16667\n187746|0.41667\n187747|0.5\n187748|0.54167\n187749|0.5\n187750|0.5\n187751|0.38889\n187752|0.30556\n187753|0.5\n187754|0.5\n187755|0.55556\n187756|0.5\n187757|0.51389\n187758|0.5\n187759|0.625\n187760|0.54167\n187761|0.61111\n187762|0.31944\n187763|0.63889\n187764|0.66667\n187765|0.375\n187766|0.27778\n187767|0.38889\n187768|0.44444\n187769|0.25\n187770|0.31944\n187771|0.15278\n187772|0.375\n187773|0.44444\n187774|0.5\n187775|0.5\n187776|0.69444\n187777|0.68056\n187778|0.48611\n187779|0.40278\n187780|0.72222\n187781|0.52778\n187782|0.5\n187783|0.5\n187784|0.33333\n187785|0.5\n187786|0.59722\n187787|0.29167\n187788|0.55556\n187789|0.33333\n187790|0.5\n187791|0.5\n187792|0.5\n187793|0.69444\n187794|0.55556\n187795|0.31944\n187796|0.5\n187797|0.375\n187798|0.625\n187799|0.33333\n187800|0.40278\n187801|0.5\n187802|0.26389\n187803|0.5\n187804|0.5\n187805|0.5\n187806|0.58333\n187807|0.5\n187808|0.76389\n187809|0.5\n187810|0.48611\n187811|0.68056\n187812|0.84722\n187813|0.33333\n187814|0.15278\n187815|0.51389\n187816|0.55556\n187817|0.91667\n187818|0.81944\n187819|0.88889\n187820|0.72222\n187821|0.58333\n187822|0.5\n187823|0.47222\n187824|0.5\n187825|0.34722\n187826|0.5\n187827|0.51389\n187828|0.5\n187829|0.48611\n187830|0.5\n187831|0.27778\n187832|0.11111\n187833|0.23611\n187834|0.54167\n187835|0.29167\n187836|0.5\n187837|0.5\n187838|0.25\n187839|0.29167\n187840|0.31944\n187841|0.5\n187842|0.125\n187843|0.5\n187844|0.56944\n187845|0.5\n187846|0.22222\n187847|0.63889\n187848|0.43056\n187849|0.41667\n187850|0.52778\n187851|0.56944\n187852|0.34722\n187853|0.45833\n187854|0.26389\n187855|0.31944\n187856|0.16667\n187857|0.36111\n187858|0.38889\n187859|0.54167\n187860|0.5\n187861|0.5\n187862|0.5\n187863|0.66667\n187864|0.5\n187865|0.47222\n187866|0.5\n187867|0.5\n187868|0.5\n187869|0.55556\n187870|0.5\n187871|0.45833\n187872|0.5\n187873|0.31944\n187874|0.44444\n187875|0.5\n187876|0.38889\n187877|0.18056\n187878|0.38889\n187879|0.40278\n187880|0.27778\n187881|0.27778\n187882|0.44444\n187883|0.15278\n187884|0.055556\n187885|0.19444\n187886|0.23611\n187887|0.48611\n187888|0.5\n187889|0.44444\n187890|0.33333\n187891|0.52778\n187892|0.36111\n187893|0.11111\n187894|0.43056\n187895|0.5\n187896|0.38889\n187897|0.40278\n187898|0.41667\n187899|0.5\n187900|0.5\n187901|0.5\n187902|0.5\n187903|0.66667\n187904|0.23611\n187905|0.11111\n187906|0.40278\n187907|0.375\n187908|0.31944\n187909|0.19444\n187910|0.19444\n187911|0.11111\n187912|0.069444\n187913|0.19444\n187914|0.083333\n187915|0.041667\n187916|0.26389\n187917|0\n187918|0.73611\n187919|0.72222\n187920|0.65278\n187921|0.43056\n187922|0.33333\n187923|0.22222\n187924|0.25\n187925|0.40278\n187926|0.16667\n187927|0.30556\n187928|0.27778\n187929|0.51389\n187930|0.16667\n187931|0.18056\n187932|0.75\n187933|0.55556\n187934|0.65278\n187935|0.52778\n187936|0.38889\n187937|0.51389\n187938|0.5\n187939|0.5\n187940|0.86111\n187941|0.84722\n187942|0.73611\n187943|0.68056\n187944|0.40278\n187945|0.63889\n187946|0.63889\n187947|0.66667\n187948|0.625\n187949|0.47222\n187950|0.44444\n187951|0.51389\n187952|0.26389\n187953|0.29167\n187954|0.15278\n187955|0.5\n187956|0.52778\n187957|0.625\n187958|0.75\n187959|0.56944\n187960|0.29167\n187961|0.36111\n187962|0.34722\n187963|0.19444\n187964|0.29167\n187965|0.083333\n187966|0.5\n187967|0.5\n187968|0.625\n187969|0.80556\n187970|0.22222\n187971|0.5\n187972|0.73611\n187973|0.77778\n187974|0.77778\n187975|0.5\n187976|0.44444\n187977|0.51389\n187978|0.55556\n187979|0.72222\n187980|0.55556\n187981|0.22222\n187982|0.38889\n187983|0.48611\n187984|0.20833\n187985|0.41667\n187986|0.56944\n187987|0.5\n187988|0.5\n187989|0.47222\n187990|0.375\n187991|0.69444\n187992|0.5\n187993|0.70833\n187994|0.52778\n187995|0.5\n187996|0.52778\n187997|0.625\n187998|0.72222\n187999|0.61111\n188000|0.54167\n188001|0.43056\n188002|0.44444\n188003|0.5\n188004|0.47222\n188005|0.5\n188006|0.45833\n188007|0.5\n188008|0.30556\n188009|0.5\n188010|0.25\n188011|0.43056\n188012|0.34722\n188013|0.18056\n188014|0.75\n188015|0.70833\n188016|0.77778\n188017|0.79167\n188018|0.54167\n188019|0.54167\n188020|0.45833\n188021|0.27778\n188022|0.19444\n188023|0\n188024|0.16667\n188025|0.27778\n188026|0.36111\n188027|0.25\n188028|0.31944\n188029|0.48611\n188030|0.23611\n188031|0.5\n188032|0.44444\n188033|0.36111\n188034|0.63889\n188035|0.36111\n188036|0.31944\n188037|0.5\n188038|0.36111\n188039|0.5\n188040|0.5\n188041|0.44444\n188042|0.75\n188043|0.22222\n188044|0.5\n188045|0.58333\n188046|0.83333\n188047|0.76389\n188048|0.58333\n188049|0.41667\n188050|0.31944\n188051|0.25\n188052|0.15278\n188053|0.26389\n188054|0.16667\n188055|0.31944\n188056|0.65278\n188057|0.40278\n188058|0.23611\n188059|0.40278\n188060|0.27778\n188061|0.34722\n188062|0.22222\n188063|0.27778\n188064|0.25\n188065|0.44444\n188066|0.38889\n188067|0.23611\n188068|0.30556\n188069|0.31944\n188070|0.15278\n188071|0.22222\n188072|0.38889\n188073|0.20833\n188074|0.31944\n188075|0.5\n188076|0.36111\n188077|0.48611\n188078|0.33333\n188079|0.43056\n188080|0.23611\n188081|0.55556\n188082|0.54167\n188083|0.33333\n188084|0.23611\n188085|0.36111\n188086|0.26389\n188087|0.41667\n188088|0.45833\n188089|0.15278\n188090|0.52778\n188091|0.055556\n188092|0.51389\n188093|0.19444\n188094|0.5\n188095|0.33333\n188096|0.55556\n188097|0.5\n188098|0.48611\n188099|0.47222\n188100|0.20833\n188101|0.38889\n188102|0.23611\n188103|0.20833\n188104|0.5\n188105|0.61111\n188106|0.54167\n188107|0.56944\n188108|0.44444\n188109|0.23611\n188110|0.375\n188111|0.51389\n188112|0.38889\n188113|0.15278\n188114|0.34722\n188115|0.61111\n188116|0.5\n188117|0.26389\n188118|0.15278\n188119|0.26389\n188120|0.29167\n188121|0.29167\n188122|0.20833\n188123|0.5\n188124|0.5\n188125|0.36111\n188126|0.22222\n188127|0.22222\n188128|0.44444\n188129|0.5\n188130|0.38889\n188131|0.47222\n188132|0.625\n188133|0.5\n188134|0.55556\n188135|0.44444\n188136|0.27778\n188137|0.52778\n188138|0.22222\n188139|0.125\n188140|0.33333\n188141|0.20833\n188142|0.43056\n188143|0.41667\n188144|0.20833\n188145|0.125\n188146|0.38889\n188147|0.27778\n188148|0.5\n188149|0.51389\n188150|0.33333\n188151|0.51389\n188152|0.19444\n188153|0.18056\n188154|0.20833\n188155|0.44444\n188156|0\n188157|0.5\n188158|0.58333\n188159|0.36111\n188160|0.54167\n188161|0.66667\n188162|0.65278\n188163|0.625\n188164|0.30556\n188165|0.63889\n188166|0.38889\n188167|0.63889\n188168|0.18056\n188169|0.33333\n188170|0.375\n188171|0.375\n188172|0.41667\n188173|0.5\n188174|0.54167\n188175|0.22222\n188176|0.20833\n188177|0.26389\n188178|0.25\n188179|0.61111\n188180|0.41667\n188181|0.61111\n188182|0.375\n188183|0.375\n188184|0.41667\n188185|0.44444\n188186|0.56944\n188187|0.33333\n188188|0.18056\n188189|0.20833\n188190|0.52778\n188191|0.26389\n188192|0.16667\n188193|0.25\n188194|0.23611\n188195|0.25\n188196|0.15278\n188197|0.055556\n188198|0.16667\n188199|0.29167\n188200|0.33333\n188201|0.375\n188202|0.33333\n188203|0.25\n188204|0.18056\n188205|0.26389\n188206|0.31944\n188207|0.23611\n188208|0.27778\n188209|0.36111\n188210|0.22222\n188211|0.20833\n188212|0.27778\n188213|0.18056\n188214|0.51389\n188215|0.5\n188216|0.25\n188217|0.5\n188218|0.56944\n188219|0.55556\n188220|0.59722\n188221|0.83333\n188222|0.98611\n188223|0.55556\n188224|0.375\n188225|0.44444\n188226|0.54167\n188227|0.27778\n188228|0.22222\n188229|0.88889\n188230|0.73611\n188231|0.73611\n188232|0.61111\n188233|0.61111\n188234|0.30556\n188235|0.5\n188236|0.34722\n188237|0.30556\n188238|0.31944\n188239|0.23611\n188240|0.5\n188241|0.083333\n188242|0.27778\n188243|0.11111\n188244|0.18056\n188245|0.5\n188246|0.61111\n188247|0.125\n188248|0.43056\n188249|0.625\n188250|0.72222\n188251|0.75\n188252|0.47222\n188253|0.31944\n188254|0.77778\n188255|0.91667\n188256|0.91667\n188257|0.625\n188258|0.41667\n188259|0.63889\n188260|0.47222\n188261|0.58333\n188262|0.41667\n188263|0.30556\n188264|0.27778\n188265|0.56944\n188266|0.40278\n188267|0.23611\n188268|0.11111\n188269|0.18056\n188270|0.38889\n188271|0.25\n188272|0.38889\n188273|0.31944\n188274|0.23611\n188275|0.5\n188276|0.23611\n188277|0.20833\n188278|0.23611\n188279|0.22222\n188280|0.22222\n188281|0.5\n188282|0.33333\n188283|0.20833\n188284|0.26389\n188285|0.33333\n188286|0.27778\n188287|0.48611\n188288|0.70833\n188289|0.54167\n188290|0.52778\n188291|0.63889\n188292|0.30556\n188293|0.22222\n188294|0.5\n188295|0.26389\n188296|0.52778\n188297|0.22222\n188298|0.26389\n188299|0.22222\n188300|0.27778\n188301|0.097222\n188302|0.083333\n188303|0.375\n188304|0.38889\n188305|0.38889\n188306|0.55556\n188307|0.47222\n188308|0.34722\n188309|0.58333\n188310|0.34722\n188311|0.5\n188312|0.19444\n188313|0.63889\n188314|0.083333\n188315|0.54167\n188316|0.25\n188317|0.5\n188318|0.375\n188319|0.66667\n188320|0.51389\n188321|0.19444\n188322|0.19444\n188323|0.29167\n188324|0.26389\n188325|0.20833\n188326|0.5\n188327|0.18056\n188328|0.25\n188329|0.27778\n188330|0.34722\n188331|0.5\n188332|0.58333\n188333|0.38889\n188334|0.45833\n188335|0.30556\n188336|0.45833\n188337|0.13889\n188338|0.13889\n188339|0.625\n188340|0.5\n188341|0.61111\n188342|0.31944\n188343|0.5\n188344|0.69444\n188345|0.61111\n188346|0.66667\n188347|0.30556\n188348|0.34722\n188349|0.5\n188350|0.26389\n188351|0.22222\n188352|0.23611\n188353|0.16667\n188354|0.36111\n188355|0.5\n188356|0.375\n188357|0.13889\n188358|0.26389\n188359|0.19444\n188360|0.15278\n188361|0.15278\n188362|0.11111\n188363|0.41667\n188364|0.34722\n188365|0.44444\n188366|0.25\n188367|0.375\n188368|0.5\n188369|0.41667\n188370|0.65278\n188371|0.63889\n188372|0.15278\n188373|0.54167\n188374|0.20833\n188375|0.48611\n188376|0.375\n188377|0.34722\n188378|0.20833\n188379|0.33333\n188380|0.58333\n188381|0.34722\n188382|0.52778\n188383|0.52778\n188384|0.5\n188385|0.22222\n188386|0.30556\n188387|0.30556\n188388|0.27778\n188389|0.45833\n188390|0.26389\n188391|0.5\n188392|0.15278\n188393|0.625\n188394|0.13889\n188395|0.16667\n188396|0.52778\n188397|0.26389\n188398|0.38889\n188399|0.33333\n188400|0.34722\n188401|0.19444\n188402|0.56944\n188403|0.45833\n188404|0.34722\n188405|0.36111\n188406|0.5\n188407|0.25\n188408|0.16667\n188409|0.81944\n188410|0.625\n188411|0.65278\n188412|0.5\n188413|0.58333\n188414|0.52778\n188415|0.27778\n188416|0.25\n188417|0.30556\n188418|0.38889\n188419|0.25\n188420|0.47222\n188421|0.30556\n188422|0.31944\n188423|0.33333\n188424|0.43056\n188425|0.20833\n188426|0.055556\n188427|0.055556\n188428|0.33333\n188429|0.20833\n188430|0.23611\n188431|0.13889\n188432|0.11111\n188433|0.58333\n188434|0.375\n188435|0.33333\n188436|0.36111\n188437|0.33333\n188438|0.51389\n188439|0.11111\n188440|0.34722\n188441|0.22222\n188442|0.68056\n188443|0.15278\n188444|0.27778\n188445|0.125\n188446|0.18056\n188447|0.055556\n188448|0.20833\n188449|0.30556\n188450|0.44444\n188451|0.375\n188452|0.18056\n188453|0.36111\n188454|0.43056\n188455|0.125\n188456|0.51389\n188457|0.38889\n188458|0.31944\n188459|0.31944\n188460|0.625\n188461|0.5\n188462|0.5\n188463|0.5\n188464|0.34722\n188465|0.36111\n188466|0.33333\n188467|0.29167\n188468|0.45833\n188469|0.45833\n188470|0.20833\n188471|0.23611\n188472|0.27778\n188473|0.26389\n188474|0.69444\n188475|0.77778\n188476|0.48611\n188477|0.68056\n188478|0.16667\n188479|0.44444\n188480|0.36111\n188481|0.52778\n188482|0.5\n188483|0.33333\n188484|0.20833\n188485|0.30556\n188486|0.097222\n188487|0.41667\n188488|0.27778\n188489|0.22222\n188490|0.375\n188491|0.125\n188492|0.36111\n188493|0.45833\n188494|0.22222\n188495|0.5\n188496|0.45833\n188497|0.38889\n188498|0.58333\n188499|0.36111\n188500|0.41667\n188501|0.5\n188502|0.31944\n188503|0.34722\n188504|0.5\n188505|0.80556\n188506|0.75\n188507|0.79167\n188508|0.56944\n188509|0.625\n188510|0.5\n188511|0.38889\n188512|0.25\n188513|0.22222\n188514|0.51389\n188515|0.34722\n188516|0.47222\n188517|0.30556\n188518|0.20833\n188519|0.20833\n188520|0.13889\n188521|0.31944\n188522|0.26389\n188523|0.29167\n188524|0.19444\n188525|0.5\n188526|0.54167\n188527|0.56944\n188528|0.56944\n188529|0.44444\n188530|0.25\n188531|0.5\n188532|0.48611\n188533|0.22222\n188534|0.40278\n188535|0.069444\n188536|0.34722\n188537|0.5\n188538|0.44444\n188539|0.51389\n188540|0.55556\n188541|0.63889\n188542|0.56944\n188543|0.25\n188544|0.23611\n188545|0.27778\n188546|0.18056\n188547|0.11111\n188548|0.45833\n188549|0.51389\n188550|0.18056\n188551|0.19444\n188552|0.125\n188553|0.11111\n188554|0.19444\n188555|0.5\n188556|0.48611\n188557|0.79167\n188558|0.61111\n188559|0.66667\n188560|0.31944\n188561|0.23611\n188562|0.45833\n188563|0.20833\n188564|0.27778\n188565|0.18056\n188566|0.16667\n188567|0.11111\n188568|0.47222\n188569|0.44444\n188570|0.43056\n188571|0.27778\n188572|0.18056\n188573|0.38889\n188574|0.33333\n188575|0.34722\n188576|0.27778\n188577|0.26389\n188578|0.27778\n188579|0.29167\n188580|0.083333\n188581|0.11111\n188582|0.47222\n188583|0.33333\n188584|0.30556\n188585|0.36111\n188586|0.33333\n188587|0.16667\n188588|0.27778\n188589|0.44444\n188590|0.22222\n188591|0.55556\n188592|0.5\n188593|0.16667\n188594|0.61111\n188595|0.33333\n188596|0.375\n188597|0.20833\n188598|0.26389\n188599|0.26389\n188600|0.5\n188601|0.055556\n188602|0.61111\n188603|0.70833\n188604|0.72222\n188605|0.66667\n188606|0.47222\n188607|0.22222\n188608|0.33333\n188609|0.19444\n188610|0.27778\n188611|0.47222\n188612|0.25\n188613|0.5\n188614|0.26389\n188615|0.52778\n188616|0.5\n188617|0.36111\n188618|0.55556\n188619|0.59722\n188620|0.55556\n188621|0.29167\n188622|0.15278\n188623|0.5\n188624|0.5\n188625|0.5\n188626|0.27778\n188627|0.43056\n188628|0.29167\n188629|0.375\n188630|0.5\n188631|0.5\n188632|0.16667\n188633|0.5\n188634|0.5\n188635|0.30556\n188636|0.15278\n188637|0.20833\n188638|0.15278\n188639|0.16667\n188640|0.29167\n188641|0.40278\n188642|0.33333\n188643|0.36111\n188644|0.75\n188645|0.51389\n188646|0.44444\n188647|0.26389\n188648|0.29167\n188649|0.38889\n188650|0.36111\n188651|0.19444\n188652|0.097222\n188653|0.5\n188654|0.27778\n188655|0.54167\n188656|0.55556\n188657|0\n188658|0.30556\n188659|0.41667\n188660|0.38889\n188661|0.55556\n188662|0.34722\n188663|0.58333\n188664|0.61111\n188665|0.40278\n188666|0.54167\n188667|0.5\n188668|0.52778\n188669|0.48611\n188670|0.48611\n188671|0.625\n188672|0.5\n188673|0.5\n188674|0.69444\n188675|0.27778\n188676|0.45833\n188677|0.38889\n188678|0.26389\n188679|0.16667\n188680|0.19444\n188681|0.19444\n188682|0.48611\n188683|0.52778\n188684|0.375\n188685|0.26389\n188686|0.18056\n188687|0.5\n188688|0.34722\n188689|0.27778\n188690|0.44444\n188691|0.5\n188692|0.61111\n188693|0.18056\n188694|0.16667\n188695|0.19444\n188696|0.083333\n188697|0.11111\n188698|0.63889\n188699|0.51389\n188700|0.34722\n188701|0.26389\n188702|0.29167\n188703|0.36111\n188704|0.43056\n188705|0.22222\n188706|0.27778\n188707|0.16667\n188708|0.34722\n188709|0.38889\n188710|0.19444\n188711|0.25\n188712|0.31944\n188713|0.27778\n188714|0.23611\n188715|0.15278\n188716|0.36111\n188717|0.29167\n188718|0.29167\n188719|0.29167\n188720|0.23611\n188721|0.26389\n188722|0.5\n188723|0.5\n188724|0.41667\n188725|0.25\n188726|0.15278\n188727|0.13889\n188728|0.11111\n188729|0.19444\n188730|0.38889\n188731|0.5\n188732|0.83333\n188733|0.86111\n188734|0.84722\n188735|0.76389\n188736|0.81944\n188737|0.375\n188738|0.40278\n188739|0.5\n188740|0.59722\n188741|0.66667\n188742|0.61111\n188743|0.30556\n188744|0.16667\n188745|0.125\n188746|0.5\n188747|0.38889\n188748|0.18056\n188749|0.40278\n188750|0.23611\n188751|0.26389\n188752|0.38889\n188753|0.38889\n188754|0.22222\n188755|0.5\n188756|0.26389\n188757|0.5\n188758|0.23611\n188759|0.23611\n188760|0.43056\n188761|0.38889\n188762|0.48611\n188763|0.19444\n188764|0.16667\n188765|0.20833\n188766|0.43056\n188767|0.34722\n188768|0.29167\n188769|0.34722\n188770|0.027778\n188771|0.23611\n188772|0.16667\n188773|0.69444\n188774|0.5\n188775|0.88889\n188776|0.65278\n188777|0.44444\n188778|0.30556\n188779|0.125\n188780|0.041667\n188781|0\n188782|0.625\n188783|0.18056\n188784|0.51389\n188785|0.41667\n188786|0.68056\n188787|0.5\n188788|0.43056\n188789|0.22222\n188790|0.20833\n188791|0.25\n188792|0.59722\n188793|0.58333\n188794|0.41667\n188795|0.23611\n188796|0.20833\n188797|0.43056\n188798|0.36111\n188799|0.63889\n188800|0.25\n188801|0.40278\n188802|0.38889\n188803|0.27778\n188804|0.5\n188805|0.16667\n188806|0.29167\n188807|0.11111\n188808|0.11111\n188809|0.44444\n188810|0.41667\n188811|0.26389\n188812|0.59722\n188813|0.44444\n188814|0.23611\n188815|0.72222\n188816|0.38889\n188817|0.77778\n188818|0.31944\n188819|0.27778\n188820|0.80556\n188821|0.70833\n188822|0.55556\n188823|0.58333\n188824|0.40278\n188825|0.31944\n188826|0.25\n188827|0.22222\n188828|0.30556\n188829|0.125\n188830|0.16667\n188831|0.26389\n188832|0.40278\n188833|0.56944\n188834|0.11111\n188835|0.27778\n188836|0.26389\n188837|0.23611\n188838|0.40278\n188839|0.125\n188840|0.041667\n188841|0.66667\n188842|0.48611\n188843|0.33333\n188844|0.45833\n188845|0.33333\n188846|0.083333\n188847|0.69444\n188848|0.68056\n188849|0.52778\n188850|0.34722\n188851|0.34722\n188852|0.66667\n188853|0.34722\n188854|0.30556\n188855|0.26389\n188856|0.375\n188857|0.33333\n188858|0.18056\n188859|0.18056\n188860|0.56944\n188861|0.41667\n188862|0.30556\n188863|0.30556\n188864|0.41667\n188865|0.625\n188866|0.41667\n188867|0.52778\n188868|0.13889\n188869|0.65278\n188870|0.31944\n188871|0.375\n188872|0.36111\n188873|0.19444\n188874|0.13889\n188875|0.625\n188876|0.73611\n188877|0.55556\n188878|0.22222\n188879|0.40278\n188880|0.51389\n188881|0.47222\n188882|0.33333\n188883|0.70833\n188884|0.65278\n188885|0.61111\n188886|0.61111\n188887|0.45833\n188888|0.27778\n188889|0.45833\n188890|0.52778\n188891|0.27778\n188892|0.34722\n188893|0.16667\n188894|0.18056\n188895|0.11111\n188896|0.11111\n188897|0.22222\n188898|0.25\n188899|0.22222\n188900|0.375\n188901|0.23611\n188902|0.5\n188903|0.36111\n188904|0.5\n188905|0.27778\n188906|0.33333\n188907|0.26389\n188908|0.22222\n188909|0.48611\n188910|0.38889\n188911|0.31944\n188912|0.48611\n188913|0.45833\n188914|0.30556\n188915|0.25\n188916|0.29167\n188917|0.56944\n188918|0.51389\n188919|0.75\n188920|0.70833\n188921|0.45833\n188922|0.54167\n188923|0.30556\n188924|0.30556\n188925|0.5\n188926|0.72222\n188927|0.375\n188928|0.375\n188929|0.5\n188930|0.29167\n188931|0.33333\n188932|0.31944\n188933|0.26389\n188934|0.34722\n188935|0.40278\n188936|0.125\n188937|0.5\n188938|0.68056\n188939|0.68056\n188940|0.68056\n188941|0.80556\n188942|0.16667\n188943|0.027778\n188944|0.48611\n188945|0.5\n188946|0.36111\n188947|0.56944\n188948|0.30556\n188949|0.23611\n188950|0.15278\n188951|0.5\n188952|0.5\n188953|0.13889\n188954|0.5\n188955|0.13889\n188956|0.47222\n188957|0.20833\n188958|0.5\n188959|0.5\n188960|0.5\n188961|0.58333\n188962|0.5\n188963|0.26389\n188964|0.5\n188965|0.22222\n188966|0.29167\n188967|0.31944\n188968|0.5\n188969|0.083333\n188970|0.055556\n188971|0.15278\n188972|0.25\n188973|0.13889\n188974|0.11111\n188975|0.27778\n188976|0.19444\n188977|0.41667\n188978|0.16667\n188979|0.83333\n188980|0.73611\n188981|0.36111\n188982|0.34722\n188983|0.34722\n188984|0.16667\n188985|0.18056\n188986|0.22222\n188987|0.66667\n188988|0.70833\n188989|0.625\n188990|0.40278\n188991|0.33333\n188992|0.33333\n188993|0.43056\n188994|0.29167\n188995|0.29167\n188996|0.20833\n188997|0.20833\n188998|0.22222\n188999|0.20833\n189000|0.33333\n189001|0.55556\n189002|0.41667\n189003|0.16667\n189004|0.27778\n189005|0.27778\n189006|0.13889\n189007|0.27778\n189008|0.56944\n189009|0.63889\n189010|0.63889\n189011|0.55556\n189012|0.51389\n189013|0.44444\n189014|0.38889\n189015|0.33333\n189016|0.16667\n189017|0.069444\n189018|0\n189019|0.36111\n189020|0.22222\n189021|0.36111\n189022|0.13889\n189023|0.16667\n189024|0.15278\n189025|0.16667\n189026|0.11111\n189027|0.19444\n189028|0.58333\n189029|0.58333\n189030|0.75\n189031|0.22222\n189032|0\n189033|0.027778\n189034|0.097222\n189035|0.29167\n189036|0.375\n189037|0.26389\n189038|0.33333\n189039|0.027778\n189040|0.5\n189041|0.65278\n189042|0.25\n189043|0.5\n189044|0.11111\n189045|0.125\n189046|0.31944\n189047|0.23611\n189048|0.097222\n189049|0.18056\n189050|0.30556\n189051|0.47222\n189052|0.23611\n189053|0.51389\n189054|0.43056\n189055|0.5\n189056|0.125\n189057|0.34722\n189058|0.125\n189059|0.083333\n189060|0.055556\n189061|0.18056\n189062|0.083333\n189063|0.13889\n189064|0.43056\n189065|0.27778\n189066|0.18056\n189067|0.16667\n189068|0.16667\n189069|0.27778\n189070|0.13889\n189071|0.027778\n189072|0.055556\n189073|0.16667\n189074|0.34722\n189075|0.33333\n189076|0.36111\n189077|0.48611\n189078|0.20833\n189079|0.55556\n189080|0.23611\n189081|0.5\n189082|0.40278\n189083|0.20833\n189084|0.5\n189085|0.54167\n189086|0.5\n189087|0.38889\n189088|0.38889\n189089|0.5\n189090|0.51389\n189091|0.33333\n189092|0.18056\n189093|0.38889\n189094|0.18056\n189095|0.16667\n189096|0.125\n189097|0.5\n189098|0.38889\n189099|0.5\n189100|0.40278\n189101|0.41667\n189102|0.54167\n189103|0.41667\n189104|0.125\n189105|0.5\n189106|0.55556\n189107|0.59722\n189108|0.23611\n189109|0.5\n189110|0.47222\n189111|0.58333\n189112|0.41667\n189113|0.59722\n189114|0.41667\n189115|0.45833\n189116|0.22222\n189117|0.55556\n189118|0.33333\n189119|0.5\n189120|0.5\n189121|0.40278\n189122|0.45833\n189123|0.27778\n189124|0.48611\n189125|0.30556\n189126|0.73611\n189127|0.29167\n189128|0.61111\n189129|0.30556\n189130|0.41667\n189131|0.43056\n189132|0.72222\n189133|0.44444\n189134|0.36111\n189135|0.26389\n189136|0.69444\n189137|0.44444\n189138|0.27778\n189139|0.72222\n189140|0.38889\n189141|0.625\n189142|0.66667\n189143|0.31944\n189144|0.47222\n189145|0.30556\n189146|0.52778\n189147|0.30556\n189148|0.69444\n189149|0.48611\n189150|0.54167\n189151|0.61111\n189152|0.51389\n189153|0.51389\n189154|0.81944\n189155|0.79167\n189156|0.65278\n189157|0.375\n189158|0.40278\n189159|0.66667\n189160|0.20833\n189161|0.45833\n189162|0.20833\n189163|0.5\n189164|0.5\n189165|0.5\n189166|0.11111\n189167|0.5\n189168|0.29167\n189169|0.375\n189170|0.43056\n189171|0.44444\n189172|0.22222\n189173|0.15278\n189174|0.31944\n189175|0.25\n189176|0.33333\n189177|0.40278\n189178|0.22222\n189179|0.38889\n189180|0.26389\n189181|0.125\n189182|0.5\n189183|0.26389\n189184|0.34722\n189185|0.083333\n189186|0.5\n189187|0.5\n189188|0.58333\n189189|0.54167\n189190|0.58333\n189191|0.19444\n189192|0.22222\n189193|0.44444\n189194|0.375\n189195|0.38889\n189196|0.26389\n189197|0.375\n189198|0.43056\n189199|0.55556\n189200|0.66667\n189201|0.33333\n189202|0.29167\n189203|0.5\n189204|0.375\n189205|0.5\n189206|0.5\n189207|0.43056\n189208|0.5\n189209|0.26389\n189210|0.5\n189211|0.5\n189212|0.5\n189213|0.61111\n189214|0.5\n189215|0.68056\n189216|0.69444\n189217|0.56944\n189218|0.30556\n189219|0.40278\n189220|0.5\n189221|0.5\n189222|0.73611\n189223|0.5\n189224|0.20833\n189225|0.55556\n189226|0.61111\n189227|0.33333\n189228|0.56944\n189229|0.41667\n189230|0.083333\n189231|0.52778\n189232|0.22222\n189233|0.26389\n189234|0.33333\n189235|0.33333\n189236|0.66667\n189237|0.31944\n189238|0.48611\n189239|0.20833\n189240|0.22222\n189241|0.5\n189242|0.31944\n189243|0.40278\n189244|0.40278\n189245|0.29167\n189246|0.31944\n189247|0.29167\n189248|0.33333\n189249|0.5\n189250|0.58333\n189251|0.33333\n189252|0.19444\n189253|0.27778\n189254|0.125\n189255|0.625\n189256|0.68056\n189257|0.30556\n189258|0.15278\n189259|0.5\n189260|0.61111\n189261|0.54167\n189262|0.43056\n189263|0.55556\n189264|0.875\n189265|0.54167\n189266|0.5\n189267|0.5\n189268|0.44444\n189269|0.083333\n189270|0.26389\n189271|0.375\n189272|0.26389\n189273|0.58333\n189274|0.58333\n189275|0.5\n189276|0.63889\n189277|0.69444\n189278|0.55556\n189279|0.125\n189280|0.34722\n189281|0.51389\n189282|0.5\n189283|0.54167\n189284|0.76389\n189285|0.63889\n189286|0.29167\n189287|0.13889\n189288|0.69444\n189289|0.30556\n189290|0.40278\n189291|0.30556\n189292|0.5\n189293|0.51389\n189294|0.5\n189295|0.79167\n189296|0.70833\n189297|0.47222\n189298|0.625\n189299|0.5\n189300|0.5\n189301|0.26389\n189302|0.43056\n189303|0.40278\n189304|0.26389\n189305|0.68056\n189306|0.5\n189307|0.5\n189308|0.51389\n189309|0.5\n189310|0.36111\n189311|0.27778\n189312|0.22222\n189313|0.19444\n189314|0.5\n189315|0.5\n189316|0.5\n189317|0.5\n189318|0.41667\n189319|0.51389\n189320|0.5\n189321|0.13889\n189322|0.47222\n189323|0.30556\n189324|0.22222\n189325|0.29167\n189326|0.16667\n189327|0.23611\n189328|0.58333\n189329|0.40278\n189330|0.40278\n189331|0.5\n189332|0.30556\n189333|0.22222\n189334|0.22222\n189335|0.44444\n189336|0.375\n189337|0.5\n189338|0.36111\n189339|0.30556\n189340|0.18056\n189341|0.30556\n189342|0.16667\n189343|0.44444\n189344|0.25\n189345|0.375\n189346|0.13889\n189347|0.26389\n189348|0.23611\n189349|0.58333\n189350|0.45833\n189351|0.11111\n189352|0.26389\n189353|0.23611\n189354|0.20833\n189355|0.069444\n189356|0.20833\n189357|0.16667\n189358|0.125\n189359|0.5\n189360|0.5\n189361|0.41667\n189362|0.33333\n189363|0.16667\n189364|0.20833\n189365|0.45833\n189366|0.25\n189367|0.47222\n189368|0.26389\n189369|0.43056\n189370|0.45833\n189371|0.30556\n189372|0.30556\n189373|0.29167\n189374|0.47222\n189375|0.44444\n189376|0.55556\n189377|0.66667\n189378|0.27778\n189379|0.5\n189380|0.69444\n189381|0.58333\n189382|0.27778\n189383|0.375\n189384|0.29167\n189385|0.48611\n189386|0.44444\n189387|0.43056\n189388|0.51389\n189389|0.625\n189390|0.5\n189391|0.65278\n189392|0.5\n189393|0.16667\n189394|0.19444\n189395|0.13889\n189396|0.56944\n189397|0.5\n189398|0.48611\n189399|0.5\n189400|0.5\n189401|0.16667\n189402|0.5\n189403|0.18056\n189404|0.48611\n189405|0.5\n189406|0.26389\n189407|0.40278\n189408|0.18056\n189409|0.31944\n189410|0.38889\n189411|0.69444\n189412|0.79167\n189413|0.48611\n189414|0.45833\n189415|0.44444\n189416|0.44444\n189417|0.5\n189418|0.15278\n189419|0.5\n189420|0.5\n189421|0.5\n189422|0.40278\n189423|0.33333\n189424|0.5\n189425|0.48611\n189426|0.52778\n189427|0.29167\n189428|0.5\n189429|0.5\n189430|0.51389\n189431|0.34722\n189432|0.33333\n189433|0.48611\n189434|0.41667\n189435|0.48611\n189436|0.5\n189437|0.69444\n189438|0.5\n189439|0.38889\n189440|0.38889\n189441|0.26389\n189442|0.45833\n189443|0.44444\n189444|0.5\n189445|0.54167\n189446|0.5\n189447|0.5\n189448|0.72222\n189449|0.5\n189450|0.19444\n189451|0.26389\n189452|0.097222\n189453|0.5\n189454|0.63889\n189455|0.63889\n189456|0.61111\n189457|0.375\n189458|0.31944\n189459|0.19444\n189460|0.16667\n189461|0.26389\n189462|0.5\n189463|0.5\n189464|0.55556\n189465|0.125\n189466|0.15278\n189467|0.19444\n189468|0.19444\n189469|0.26389\n189470|0.5\n189471|0.5\n189472|0.56944\n189473|0.23611\n189474|0.44444\n189475|0.25\n189476|0.055556\n189477|0.52778\n189478|0.5\n189479|0.31944\n189480|0.097222\n189481|0.47222\n189482|0.59722\n189483|0.51389\n189484|0.55556\n189485|0.16667\n189486|0.43056\n189487|0.34722\n189488|0.52778\n189489|0.30556\n189490|0.16667\n189491|0.26389\n189492|0.22222\n189493|0.25\n189494|0.27778\n189495|0.5\n189496|0.54167\n189497|0.26389\n189498|0.27778\n189499|0.33333\n189500|0.29167\n189501|0.23611\n189502|0.16667\n189503|0.15278\n189504|0.5\n189505|0.5\n189506|0.5\n189507|0.625\n189508|0.5\n189509|0.51389\n189510|0.45833\n189511|0.38889\n189512|0.27778\n189513|0.27778\n189514|0.41667\n189515|0.40278\n189516|0.38889\n189517|0.58333\n189518|0.45833\n189519|0.48611\n189520|0.44444\n189521|0.41667\n189522|0.5\n189523|0.44444\n189524|0.66667\n189525|0.61111\n189526|0.5\n189527|0.5\n189528|0.5\n189529|0.375\n189530|0.51389\n189531|0.51389\n189532|0.41667\n189533|0.31944\n189534|0.5\n189535|0.5\n189536|0.375\n189537|0.15278\n189538|0.33333\n189539|0.19444\n189540|0.20833\n189541|0.20833\n189542|0.44444\n189543|0.055556\n189544|0.65278\n189545|0.26389\n189546|0.27778\n189547|0.48611\n189548|0.23611\n189549|0.58333\n189550|0.44444\n189551|0.5\n189552|0.68056\n189553|0.5\n189554|0.33333\n189555|0.22222\n189556|0.45833\n189557|0.40278\n189558|0.36111\n189559|0.20833\n189560|0.26389\n189561|0.44444\n189562|0.625\n189563|0.33333\n189564|0.18056\n189565|0.16667\n189566|0.33333\n189567|0.25\n189568|0.22222\n189569|0.055556\n189570|0.26389\n189571|0.63889\n189572|0.27778\n189573|0.48611\n189574|0.61111\n189575|0.44444\n189576|0.31944\n189577|0.43056\n189578|0.19444\n189579|0.44444\n189580|0.30556\n189581|0.25\n189582|0.66667\n189583|0.31944\n189584|0.33333\n189585|0.5\n189586|0.23611\n189587|0.48611\n189588|0.29167\n189589|0.54167\n189590|0.15278\n189591|0.36111\n189592|0.59722\n189593|0.45833\n189594|0.81944\n189595|0.43056\n189596|0.16667\n189597|0.51389\n189598|0.097222\n189599|0.40278\n189600|0.40278\n189601|0.125\n189602|0.33333\n189603|0.097222\n189604|0.26389\n189605|0.5\n189606|0.27778\n189607|0.33333\n189608|0.34722\n189609|0.36111\n189610|0.23611\n189611|0\n189612|0.51389\n189613|0.34722\n189614|0.51389\n189615|0.055556\n189616|0.33333\n189617|0.48611\n189618|0.54167\n189619|0.5\n189620|0.40278\n189621|0.375\n189622|0.20833\n189623|0.5\n189624|0.20833\n189625|0.25\n189626|0.25\n189627|0.5\n189628|0.13889\n189629|0.5\n189630|0.5\n189631|0.27778\n189632|0.52778\n189633|0.61111\n189634|0.51389\n189635|0.26389\n189636|0.5\n189637|0.5\n189638|0.43056\n189639|0.055556\n189640|0.36111\n189641|0.34722\n189642|0.5\n189643|0.5\n189644|0.625\n189645|0.44444\n189646|0.097222\n189647|0.48611\n189648|0.27778\n189649|0.5\n189650|0.34722\n189651|0.22222\n189652|0.44444\n189653|0.44444\n189654|0.27778\n189655|0.34722\n189656|0.61111\n189657|0.44444\n189658|0.29167\n189659|0.20833\n189660|0.18056\n189661|0.61111\n189662|0.55556\n189663|0.40278\n189664|0.15278\n189665|0.16667\n189666|0.083333\n189667|0.055556\n189668|0.45833\n189669|0.20833\n189670|0.5\n189671|0.55556\n189672|0.70833\n189673|0.375\n189674|0.75\n189675|0.55556\n189676|0.70833\n189677|0.29167\n189678|0.72222\n189679|0.47222\n189680|0.52778\n189681|0.16667\n189682|0.44444\n189683|0.51389\n189684|0.43056\n189685|0.66667\n189686|0.38889\n189687|0.48611\n189688|0.40278\n189689|0.56944\n189690|0.26389\n189691|0.36111\n189692|0.69444\n189693|0.61111\n189694|0.29167\n189695|0.41667\n189696|0.73611\n189697|0.56944\n189698|0.43056\n189699|0.65278\n189700|0.38889\n189701|0.54167\n189702|0.13889\n189703|0.70833\n189704|0.27778\n189705|0.36111\n189706|0.68056\n189707|0.63889\n189708|0.36111\n189709|0.54167\n189710|0.36111\n189711|0.5\n189712|0.44444\n189713|0.72222\n189714|0.63889\n189715|0.27778\n189716|0.45833\n189717|0.5\n189718|0.27778\n189719|0.125\n189720|0.45833\n189721|0.5\n189722|0.5\n189723|0.055556\n189724|0.23611\n189725|0.58333\n189726|0.5\n189727|0.5\n189728|0.70833\n189729|0.56944\n189730|0.61111\n189731|0.59722\n189732|0.59722\n189733|0.5\n189734|0.48611\n189735|0.44444\n189736|0.22222\n189737|0.68056\n189738|0.61111\n189739|0.31944\n189740|0.51389\n189741|0.625\n189742|0.59722\n189743|0.58333\n189744|0.56944\n189745|0.48611\n189746|0.90278\n189747|0.51389\n189748|0.48611\n189749|0.26389\n189750|0.30556\n189751|0.34722\n189752|0.30556\n189753|0.47222\n189754|0.36111\n189755|0.26389\n189756|0.19444\n189757|0.5\n189758|0.31944\n189759|0.30556\n189760|0.20833\n189761|0.86111\n189762|0.83333\n189763|0.52778\n189764|0.5\n189765|0.66667\n189766|0.40278\n189767|0.48611\n189768|0.5\n189769|0.5\n189770|0.43056\n189771|0.5\n189772|0.29167\n189773|0.23611\n189774|0.13889\n189775|0.56944\n189776|0.68056\n189777|0.56944\n189778|0.59722\n189779|0.34722\n189780|0.27778\n189781|0.51389\n189782|0.29167\n189783|0.5\n189784|0.43056\n189785|0.22222\n189786|0.33333\n189787|0.52778\n189788|0.27778\n189789|0.27778\n189790|0.43056\n189791|0.083333\n189792|0.125\n189793|0.15278\n189794|0.55556\n189795|0.41667\n189796|0.55556\n189797|0.40278\n189798|0.33333\n189799|0.375\n189800|0.44444\n189801|0.26389\n189802|0.27778\n189803|0.31944\n189804|0.23611\n189805|0.22222\n189806|0.5\n189807|0.31944\n189808|0.55556\n189809|0.38889\n189810|0.083333\n189811|0.23611\n189812|0.20833\n189813|0.51389\n189814|0.5\n189815|0.56944\n189816|0.33333\n189817|0.47222\n189818|0.51389\n189819|0.63889\n189820|0.56944\n189821|0.5\n189822|0.41667\n189823|0.51389\n189824|0.54167\n189825|0.5\n189826|0.44444\n189827|0.51389\n189828|0.27778\n189829|0.55556\n189830|0.16667\n189831|0.47222\n189832|0.38889\n189833|0.43056\n189834|0.375\n189835|0.30556\n189836|0.38889\n189837|0.5\n189838|0.375\n189839|0.54167\n189840|0.16667\n189841|0.23611\n189842|0.13889\n189843|0.055556\n189844|0.18056\n189845|0.19444\n189846|0.34722\n189847|0.25\n189848|0.29167\n189849|0.5\n189850|0.18056\n189851|0.18056\n189852|0.5\n189853|0.5\n189854|0.5\n189855|0.5\n189856|0.16667\n189857|0.13889\n189858|0.54167\n189859|0.29167\n189860|0.26389\n189861|0.5\n189862|0.5\n189863|0.375\n189864|0.40278\n189865|0.5\n189866|0.16667\n189867|0.38889\n189868|0.30556\n189869|0.22222\n189870|0.34722\n189871|0.5\n189872|0.23611\n189873|0.5\n189874|0.5\n189875|0.44444\n189876|0.22222\n189877|0.5\n189878|0.65278\n189879|0.51389\n189880|0.5\n189881|0.36111\n189882|0.22222\n189883|0.26389\n189884|0.33333\n189885|0.22222\n189886|0.23611\n189887|0.5\n189888|0.5\n189889|0.55556\n189890|0.22222\n189891|0.58333\n189892|0.5\n189893|0.5\n189894|0.77778\n189895|0.88889\n189896|0.65278\n189897|0.27778\n189898|0.36111\n189899|0.51389\n189900|0.45833\n189901|0.26389\n189902|0.34722\n189903|0.22222\n189904|0.45833\n189905|0.44444\n189906|0.44444\n189907|0.5\n189908|0.41667\n189909|0.43056\n189910|0.5\n189911|0.5\n189912|0.5\n189913|0.51389\n189914|0.5\n189915|0.5\n189916|0.027778\n189917|0.18056\n189918|0.19444\n189919|0.15278\n189920|0.26389\n189921|0.33333\n189922|0.5\n189923|0.52778\n189924|0.125\n189925|0.34722\n189926|0.18056\n189927|0.22222\n189928|0.54167\n189929|0.055556\n189930|0.30556\n189931|0.51389\n189932|0.18056\n189933|0.125\n189934|0.125\n189935|0.56944\n189936|0\n189937|0.36111\n189938|0.041667\n189939|0.38889\n189940|0.38889\n189941|0.40278\n189942|0.38889\n189943|0.38889\n189944|0.47222\n189945|0.5\n189946|0.51389\n189947|0.51389\n189948|0.41667\n189949|0.5\n189950|0.5\n189951|0.5\n189952|0.5\n189953|0.31944\n189954|0.58333\n189955|0.5\n189956|0.61111\n189957|0.5\n189958|0.5\n189959|0.5\n189960|0.5\n189961|0.65278\n189962|0.47222\n189963|0.5\n189964|0.34722\n189965|0.22222\n189966|0.38889\n189967|0.40278\n189968|0.5\n189969|0.5\n189970|0.54167\n189971|0.31944\n189972|0.11111\n189973|0.5\n189974|0.26389\n189975|0.70833\n189976|0.083333\n189977|0.5\n189978|0.5\n189979|0.36111\n189980|0.34722\n189981|0.41667\n189982|0.36111\n189983|0.5\n189984|0.5\n189985|0.58333\n189986|0.11111\n189987|0.44444\n189988|0.5\n189989|0.33333\n189990|0.83333\n189991|0.5\n189992|0.625\n189993|0.55556\n189994|0.63889\n189995|0.375\n189996|0.52778\n189997|0.68056\n189998|0.125\n189999|0.16667\n190000|0.5\n190001|0.59722\n190002|0.44444\n190003|0.5\n190004|0.5\n190005|0.61111\n190006|0.5\n190007|0.58333\n190008|0.61111\n190009|0.47222\n190010|0.36111\n190011|0.95833\n190012|0.125\n190013|0.58333\n190014|0.68056\n190015|0.65278\n190016|0.51389\n190017|0.70833\n190018|0.58333\n190019|0.83333\n190020|0.63889\n190021|0.77778\n190022|0.5\n190023|0.44444\n190024|0.40278\n190025|0.61111\n190026|0.31944\n190027|0.95833\n190028|0.81944\n190029|0.36111\n190030|0.40278\n190031|0.58333\n190032|0.38889\n190033|0.45833\n190034|0.5\n190035|0.5\n190036|0.36111\n190037|0.68056\n190038|0.5\n190039|0.25\n190040|0.5\n190041|0.45833\n190042|0.38889\n190043|0.47222\n190044|0.5\n190045|0.79167\n190046|0.55556\n190047|0.25\n190048|0.52778\n190049|0.5\n190050|0.66667\n190051|0.44444\n190052|0.5\n190053|0.5\n190054|0.51389\n190055|0.54167\n190056|0.5\n190057|0.5\n190058|0.33333\n190059|0.38889\n190060|0.51389\n190061|0.66667\n190062|0.23611\n190063|0.36111\n190064|0.5\n190065|0.5\n190066|0.5\n190067|0.5\n190068|0.65278\n190069|0.51389\n190070|0.41667\n190071|0.5\n190072|0.5\n190073|0.5\n190074|0.625\n190075|0.5\n190076|0.51389\n190077|0.5\n190078|0.44444\n190079|0.40278\n190080|0.76389\n190081|0.5\n190082|0.5\n190083|0.5\n190084|0.54167\n190085|0.5\n190086|0.63889\n190087|0.33333\n190088|0.30556\n190089|0.5\n190090|0.55556\n190091|0.5\n190092|0.5\n190093|0.45833\n190094|0.25\n190095|0.5\n190096|0.5\n190097|0.52778\n190098|0.5\n190099|0.45833\n190100|0.63889\n190101|0.51389\n190102|0.58333\n190103|0.5\n190104|0.22222\n190105|0.5\n190106|0.5\n190107|0.44444\n190108|0.5\n190109|0.43056\n190110|0.5\n190111|0.38889\n190112|0.38889\n190113|0.41667\n190114|0.25\n190115|0.55556\n190116|0.5\n190117|0.15278\n190118|0.41667\n190119|0.51389\n190120|0.45833\n190121|0.34722\n190122|0.125\n190123|0.33333\n190124|0.5\n190125|0.31944\n190126|0.11111\n190127|0.19444\n190128|0.44444\n190129|0.25\n190130|0.22222\n190131|0.22222\n190132|0.30556\n190133|0.16667\n190134|0.31944\n190135|0.083333\n190136|0.77778\n190137|0.54167\n190138|0.5\n190139|0.375\n190140|0.5\n190141|0.52778\n190142|0.33333\n190143|0.36111\n190144|0.47222\n190145|0.25\n190146|0.41667\n190147|0.44444\n190148|0.5\n190149|0.25\n190150|0.48611\n190151|0.38889\n190152|0.38889\n190153|0.38889\n190154|0.31944\n190155|0.5\n190156|0.36111\n190157|0.38889\n190158|0.375\n190159|0.75\n190160|0.58333\n190161|0.22222\n190162|0.65278\n190163|0.59722\n190164|0.19444\n190165|0.69444\n190166|0.38889\n190167|0.38889\n190168|0.59722\n190169|0.54167\n190170|0.75\n190171|0.54167\n190172|0.38889\n190173|0.48611\n190174|0.33333\n190175|0.55556\n190176|0.22222\n190177|0.56944\n190178|0.72222\n190179|0.5\n190180|0.625\n190181|0.55556\n190182|0.40278\n190183|0.44444\n190184|0.375\n190185|0.25\n190186|0.51389\n190187|0.30556\n190188|0.27778\n190189|0.65278\n190190|0.56944\n190191|0.43056\n190192|0.58333\n190193|0.52778\n190194|0.55556\n190195|0.26389\n190196|0.11111\n190197|0.51389\n190198|0.5\n190199|0.47222\n190200|0.16667\n190201|0.5\n190202|0.5\n190203|0.5\n190204|0.5\n190205|0.65278\n190206|0.44444\n190207|0.25\n190208|0.38889\n190209|0.16667\n190210|0.125\n190211|0.097222\n190212|0.36111\n190213|0.375\n190214|0.55556\n190215|0.069444\n190216|0.5\n190217|0.33333\n190218|0.56944\n190219|0.125\n190220|0.5\n190221|0.5\n190222|0.5\n190223|0.81944\n190224|0.22222\n190225|0.41667\n190226|0.88889\n190227|0.61111\n190228|0.69444\n190229|0.61111\n190230|0.77778\n190231|0.875\n190232|0.94444\n190233|0.5\n190234|0.56944\n190235|0.41667\n190236|0.45833\n190237|0.51389\n190238|0.34722\n190239|0.40278\n190240|0.27778\n190241|0.5\n190242|0.52778\n190243|0.34722\n190244|0.29167\n190245|0.125\n190246|0.5\n190247|0.5\n190248|0.44444\n190249|0.59722\n190250|0.52778\n190251|0.40278\n190252|0.48611\n190253|0.55556\n190254|0.20833\n190255|0.5\n190256|0.5\n190257|0.47222\n190258|0.625\n190259|0.41667\n190260|0.5\n190261|0.30556\n190262|0.18056\n190263|0.69444\n190264|0.22222\n190265|0.43056\n190266|0.375\n190267|0.5\n190268|0.45833\n190269|0.55556\n190270|0.23611\n190271|0.5\n190272|0.625\n190273|0.5\n190274|0.5\n190275|0.041667\n190276|0.76389\n190277|0.33333\n190278|0.41667\n190279|0.5\n190280|0.5\n190281|0.51389\n190282|0.5\n190283|0.38889\n190284|0.25\n190285|0.41667\n190286|0.625\n190287|0.27778\n190288|0.38889\n190289|0.52778\n190290|0.26389\n190291|0.15278\n190292|0.54167\n190293|0.43056\n190294|0.5\n190295|0.54167\n190296|0.75\n190297|0.81944\n190298|0.75\n190299|0.5\n190300|0.70833\n190301|0.27778\n190302|0.41667\n190303|0.5\n190304|0.56944\n190305|0.58333\n190306|0.70833\n190307|0.875\n190308|0.77778\n190309|0.5\n190310|0.72222\n190311|0.52778\n190312|0.77778\n190313|0.68056\n190314|0.47222\n190315|0.43056\n190316|0.27778\n190317|0.55556\n190318|0.54167\n190319|0.51389\n190320|0.58333\n190321|0.56944\n190322|0.55556\n190323|0.44444\n190324|0.38889\n190325|0.41667\n190326|0.16667\n190327|0.5\n190328|0.56944\n190329|0.097222\n190330|0.5\n190331|0.38889\n190332|0.51389\n190333|0.36111\n190334|0.66667\n190335|0.66667\n190336|0.66667\n190337|0.29167\n190338|0.5\n190339|0.5\n190340|0.44444\n190341|0.31944\n190342|0.43056\n190343|0.11111\n190344|0.43056\n190345|0.69444\n190346|0.5\n190347|0.30556\n190348|0.41667\n190349|0.13889\n190350|0.31944\n190351|0.5\n190352|0.375\n190353|0.5\n190354|0.65278\n190355|0.73611\n190356|0.48611\n190357|0.5\n190358|0.5\n190359|0.44444\n190360|0.44444\n190361|0.48611\n190362|0.55556\n190363|0.43056\n190364|0.51389\n190365|0.61111\n190366|0.75\n190367|0.76389\n190368|0.33333\n190369|0.44444\n190370|0.16667\n190371|0.38889\n190372|0.59722\n190373|0.51389\n190374|0.51389\n190375|0.27778\n190376|0.31944\n190377|0.25\n190378|0.31944\n190379|0.18056\n190380|0.52778\n190381|0.70833\n190382|0.73611\n190383|0.69444\n190384|0.43056\n190385|0.375\n190386|0.23611\n190387|0.41667\n190388|0.41667\n190389|0.58333\n190390|0.77778\n190391|0.66667\n190392|0.625\n190393|0.41667\n190394|0.16667\n190395|0.48611\n190396|0.375\n190397|0.52778\n190398|0.5\n190399|0.5\n190400|0.69444\n190401|0.77778\n190402|0.58333\n190403|0.72222\n190404|0.73611\n190405|0.72222\n190406|0.40278\n190407|0.30556\n190408|0.13889\n190409|0.38889\n190410|0.083333\n190411|0.38889\n190412|0.31944\n190413|0.58333\n190414|0.59722\n190415|0.38889\n190416|0.59722\n190417|0.41667\n190418|0.52778\n190419|0.30556\n190420|0.23611\n190421|0.66667\n190422|0.70833\n190423|0.61111\n190424|0.5\n190425|0.44444\n190426|0.41667\n190427|0.55556\n190428|0.5\n190429|0.34722\n190430|0.41667\n190431|0.33333\n190432|0.52778\n190433|0.63889\n190434|0.41667\n190435|0.54167\n190436|0.59722\n190437|0.55556\n190438|0.29167\n190439|0.41667\n190440|0.66667\n190441|0.55556\n190442|0.29167\n190443|0.23611\n190444|0.69444\n190445|0.5\n190446|0.26389\n190447|0.36111\n190448|0.36111\n190449|0.30556\n190450|0.56944\n190451|0.625\n190452|0.52778\n190453|0.33333\n190454|0.26389\n190455|0.5\n190456|0.43056\n190457|0.26389\n190458|0.5\n190459|0.31944\n190460|0.58333\n190461|0.40278\n190462|0.5\n190463|0.38889\n190464|0.47222\n190465|0.23611\n190466|0.30556\n190467|0.23611\n190468|0.5\n190469|0.11111\n190470|0.27778\n190471|0.15278\n190472|0.52778\n190473|0.55556\n190474|0.43056\n190475|0.41667\n190476|0.47222\n190477|0.5\n190478|0.5\n190479|0.23611\n190480|0.61111\n190481|0.11111\n190482|0.45833\n190483|0.5\n190484|0.5\n190485|0.5\n190486|0.44444\n190487|0.16667\n190488|0.18056\n190489|0.15278\n190490|0.29167\n190491|0.40278\n190492|0.31944\n190493|0.5\n190494|0.27778\n190495|0.5\n190496|0.375\n190497|0.18056\n190498|0.86111\n190499|0.88889\n190500|0.27778\n190501|0.38889\n190502|0.5\n190503|0.52778\n190504|0.5\n190505|0.54167\n190506|0.70833\n190507|0.63889\n190508|0.79167\n190509|0.79167\n190510|0.73611\n190511|0.73611\n190512|0.72222\n190513|0.27778\n190514|0.16667\n190515|0.81944\n190516|0.34722\n190517|0.70833\n190518|0.69444\n190519|0.61111\n190520|0.375\n190521|0.31944\n190522|0.51389\n190523|0.66667\n190524|0.59722\n190525|0.75\n190526|0.45833\n190527|0.52778\n190528|0.56944\n190529|0.5\n190530|0.47222\n190531|0.20833\n190532|0.625\n190533|0.72222\n190534|0.51389\n190535|0.375\n190536|0.63889\n190537|0.625\n190538|0.5\n190539|0.55556\n190540|0.69444\n190541|0.63889\n190542|0.45833\n190543|0.5\n190544|0.44444\n190545|0.40278\n190546|0.52778\n190547|0.51389\n190548|0.61111\n190549|0.72222\n190550|0.5\n190551|0.5\n190552|0.59722\n190553|0.5\n190554|0.33333\n190555|0.5\n190556|0.47222\n190557|0.36111\n190558|0.5\n190559|0.51389\n190560|0.5\n190561|0.5\n190562|0.72222\n190563|0.5\n190564|0.5\n190565|0.65278\n190566|0.23611\n190567|0.23611\n190568|0.5\n190569|0.59722\n190570|0.375\n190571|0.069444\n190572|0.27778\n190573|0.125\n190574|0.38889\n190575|0.27778\n190576|0.63889\n190577|0.40278\n190578|0.22222\n190579|0.27778\n190580|0.45833\n190581|0.36111\n190582|0.70833\n190583|0.51389\n190584|0.58333\n190585|0.58333\n190586|0.083333\n190587|0.63889\n190588|0.66667\n190589|0.83333\n190590|0.44444\n190591|0.43056\n190592|0.5\n190593|0.33333\n190594|0.36111\n190595|0.5\n190596|0.52778\n190597|0.36111\n190598|0.22222\n190599|0.36111\n190600|0.26389\n190601|0.5\n190602|0.61111\n190603|0.40278\n190604|0.44444\n190605|0.40278\n190606|0.30556\n190607|0.15278\n190608|0.48611\n190609|0.25\n190610|0.51389\n190611|0.31944\n190612|0.56944\n190613|0.5\n190614|0.13889\n190615|0.36111\n190616|0.66667\n190617|0.70833\n190618|0.48611\n190619|0.25\n190620|0.625\n190621|0.40278\n190622|0.22222\n190623|0.19444\n190624|0.45833\n190625|0.375\n190626|0.375\n190627|0.5\n190628|0.70833\n190629|0.69444\n190630|0.72222\n190631|0.66667\n190632|0.375\n190633|0.54167\n190634|0.5\n190635|0.68056\n190636|0.5\n190637|0.34722\n190638|0.19444\n190639|0.5\n190640|0.48611\n190641|0.61111\n190642|0.59722\n190643|0.63889\n190644|0.63889\n190645|0.56944\n190646|0.44444\n190647|0.33333\n190648|0.5\n190649|0.65278\n190650|0.69444\n190651|0.41667\n190652|0.59722\n190653|0.25\n190654|0.61111\n190655|0.59722\n190656|0.55556\n190657|0.61111\n190658|0.76389\n190659|0.43056\n190660|0.22222\n190661|0.72222\n190662|0.70833\n190663|0.76389\n190664|0.61111\n190665|0.75\n190666|0.77778\n190667|0.625\n190668|0.72222\n190669|0.86111\n190670|0.41667\n190671|0.55556\n190672|0.52778\n190673|0.44444\n190674|0.43056\n190675|0.5\n190676|0.5\n190677|0.41667\n190678|0.29167\n190679|0.54167\n190680|0.38889\n190681|0.72222\n190682|0.76389\n190683|0.72222\n190684|0.59722\n190685|0.72222\n190686|0.76389\n190687|0.81944\n190688|0.58333\n190689|0.38889\n190690|0.16667\n190691|0.875\n190692|0.48611\n190693|0.55556\n190694|0.29167\n190695|0.083333\n190696|0.68056\n190697|0.79167\n190698|0.90278\n190699|0.72222\n190700|0.33333\n190701|0.38889\n190702|0.44444\n190703|0.41667\n190704|0.55556\n190705|0.5\n190706|0.72222\n190707|0.61111\n190708|0.63889\n190709|0.44444\n190710|0.27778\n190711|0.58333\n190712|0.43056\n190713|0.38889\n190714|0.77778\n190715|0.63889\n190716|0.44444\n190717|0.41667\n190718|0.19444\n190719|0.55556\n190720|0.26389\n190721|0.58333\n190722|0.5\n190723|0.40278\n190724|0.61111\n190725|0.27778\n190726|0.43056\n190727|0.63889\n190728|0.33333\n190729|0.55556\n190730|0.27778\n190731|0.5\n190732|0.43056\n190733|0.58333\n190734|0.625\n190735|0.76389\n190736|0.68056\n190737|0.65278\n190738|0.70833\n190739|0.5\n190740|0.33333\n190741|0.66667\n190742|0.55556\n190743|0.5\n190744|0.26389\n190745|0.33333\n190746|0.19444\n190747|0.30556\n190748|0.56944\n190749|0.45833\n190750|0.5\n190751|0.5\n190752|0.41667\n190753|0.72222\n190754|0.31944\n190755|0.81944\n190756|0.44444\n190757|0.5\n190758|0.29167\n190759|0.33333\n190760|0.36111\n190761|0.48611\n190762|0.26389\n190763|0.34722\n190764|0.61111\n190765|0.30556\n190766|0.20833\n190767|0.027778\n190768|0.5\n190769|0.15278\n190770|0.23611\n190771|0.22222\n190772|0.11111\n190773|0.18056\n190774|0.069444\n190775|0.55556\n190776|0.79167\n190777|0.80556\n190778|0.55556\n190779|0.5\n190780|0.31944\n190781|0.33333\n190782|0.43056\n190783|0.51389\n190784|0.47222\n190785|0.5\n190786|0.5\n190787|0.63889\n190788|0.52778\n190789|0.5\n190790|0.5\n190791|0.36111\n190792|0.51389\n190793|0.68056\n190794|0.65278\n190795|0.5\n190796|0.18056\n190797|0.22222\n190798|0.5\n190799|0.18056\n190800|0.5\n190801|0.15278\n190802|0.44444\n190803|0.34722\n190804|0.38889\n190805|0.30556\n190806|0.45833\n190807|0.72222\n190808|0.38889\n190809|0.40278\n190810|0.5\n190811|0.5\n190812|0.5\n190813|0.29167\n190814|0.61111\n190815|0.54167\n190816|0.55556\n190817|0.77778\n190818|0.66667\n190819|0.5\n190820|0.51389\n190821|0.38889\n190822|0.41667\n190823|0.375\n190824|0.45833\n190825|0.48611\n190826|0.5\n190827|0.5\n190828|0.56944\n190829|0.34722\n190830|0.36111\n190831|0.34722\n190832|0.40278\n190833|0.61111\n190834|0.51389\n190835|0.54167\n190836|0.33333\n190837|0.38889\n190838|0.65278\n190839|0.43056\n190840|0.5\n190841|0.375\n190842|0.56944\n190843|0.36111\n190844|0.56944\n190845|0.30556\n190846|0.41667\n190847|0.23611\n190848|0.63889\n190849|0.31944\n190850|0.70833\n190851|0.48611\n190852|0.47222\n190853|0.33333\n190854|0.38889\n190855|0.5\n190856|0.73611\n190857|0.76389\n190858|0.33333\n190859|0.27778\n190860|0.26389\n190861|0.44444\n190862|0.16667\n190863|0.43056\n190864|0.55556\n190865|0.5\n190866|0.47222\n190867|0.41667\n190868|0.20833\n190869|0.34722\n190870|0.56944\n190871|0.11111\n190872|0.75\n190873|0.5\n190874|0.20833\n190875|0.5\n190876|0.33333\n190877|0.66667\n190878|0.68056\n190879|0.48611\n190880|0.5\n190881|0.19444\n190882|0.51389\n190883|0.16667\n190884|0.33333\n190885|0.69444\n190886|0.375\n190887|0.54167\n190888|0.33333\n190889|0.097222\n190890|0.43056\n190891|0.375\n190892|0.30556\n190893|0.52778\n190894|0.44444\n190895|0.30556\n190896|0.29167\n190897|0.30556\n190898|0.41667\n190899|0.44444\n190900|0.69444\n190901|0.625\n190902|0.30556\n190903|0.75\n190904|0.5\n190905|0.16667\n190906|0.5\n190907|0.22222\n190908|0.5\n190909|0.5\n190910|0.41667\n190911|0.43056\n190912|0.5\n190913|0\n190914|0.47222\n190915|0.5\n190916|0.45833\n190917|0.66667\n190918|0.61111\n190919|0.73611\n190920|0.40278\n190921|0.44444\n190922|0.45833\n190923|0.16667\n190924|0.26389\n190925|0.375\n190926|0.23611\n190927|0.40278\n190928|0.31944\n190929|0.45833\n190930|0.30556\n190931|0.41667\n190932|0.54167\n190933|0.38889\n190934|0.55556\n190935|0.38889\n190936|0.30556\n190937|0.58333\n190938|0.5\n190939|0.18056\n190940|0.30556\n190941|0.51389\n190942|0.25\n190943|0.31944\n190944|0.44444\n190945|0.5\n190946|0.33333\n190947|0.31944\n190948|0.23611\n190949|0.26389\n190950|0.20833\n190951|0.36111\n190952|0.41667\n190953|0.72222\n190954|0.63889\n190955|0.38889\n190956|0.47222\n190957|0.44444\n190958|0.36111\n190959|0.5\n190960|0.375\n190961|0.5\n190962|0.5\n190963|0.27778\n190964|0.375\n190965|0.26389\n190966|0.22222\n190967|0.41667\n190968|0.33333\n190969|0.81944\n190970|0.18056\n190971|0.069444\n190972|0.66667\n190973|0.66667\n190974|0.63889\n190975|0.44444\n190976|0.65278\n190977|0.5\n190978|0.38889\n190979|0.56944\n190980|0.77778\n190981|0.58333\n190982|0.30556\n190983|0.56944\n190984|0.5\n190985|0.73611\n190986|0.52778\n190987|0.34722\n190988|0.625\n190989|0.13889\n190990|0.5\n190991|0.41667\n190992|0.5\n190993|0.44444\n190994|0.54167\n190995|0.5\n190996|0.5\n190997|0.56944\n190998|0.11111\n190999|0.15278\n191000|0.18056\n191001|0.58333\n191002|0.47222\n191003|0.5\n191004|0.11111\n191005|0.54167\n191006|0.54167\n191007|0.15278\n191008|0.18056\n191009|0.40278\n191010|0.69444\n191011|0.11111\n191012|0.69444\n191013|0.72222\n191014|0.5\n191015|0.47222\n191016|0.29167\n191017|0.41667\n191018|0.5\n191019|0.5\n191020|0.29167\n191021|0.5\n191022|0.38889\n191023|0.11111\n191024|0.5\n191025|0.375\n191026|0.41667\n191027|0.72222\n191028|0.68056\n191029|0.79167\n191030|0.79167\n191031|0.66667\n191032|0.66667\n191033|0.26389\n191034|0.20833\n191035|0.55556\n191036|0.5\n191037|0.66667\n191038|0.5\n191039|0.61111\n191040|0.63889\n191041|0.69444\n191042|0.75\n191043|0.36111\n191044|0.5\n191045|0.54167\n191046|0.40278\n191047|0.41667\n191048|0.20833\n191049|0.40278\n191050|0.33333\n191051|0.51389\n191052|0.55556\n191053|0.63889\n191054|0.38889\n191055|0.22222\n191056|0.15278\n191057|0.31944\n191058|0.33333\n191059|0.27778\n191060|0.31944\n191061|0.43056\n191062|0.31944\n191063|0.27778\n191064|0.33333\n191065|0.875\n191066|0.43056\n191067|0.44444\n191068|0.34722\n191069|0.41667\n191070|0.59722\n191071|0.48611\n191072|0.38889\n191073|0.375\n191074|0.27778\n191075|0.22222\n191076|0.33333\n191077|0.29167\n191078|0.43056\n191079|0.40278\n191080|0.5\n191081|0.41667\n191082|0.55556\n191083|0.52778\n191084|0.29167\n191085|0.13889\n191086|0.25\n191087|0.055556\n191088|0.51389\n191089|0.48611\n191090|0.375\n191091|0.30556\n191092|0.5\n191093|0.30556\n191094|0.51389\n191095|0.47222\n191096|0.19444\n191097|0.36111\n191098|0.5\n191099|0.11111\n191100|0.16667\n191101|0.31944\n191102|0.54167\n191103|0.54167\n191104|0.29167\n191105|0.5\n191106|0.59722\n191107|0.68056\n191108|0.66667\n191109|0.30556\n191110|0.11111\n191111|0.31944\n191112|0.22222\n191113|0.013889\n191114|0.23611\n191115|0.26389\n191116|0.44444\n191117|0.5\n191118|0.75\n191119|0.26389\n191120|0.27778\n191121|0.5\n191122|0.33333\n191123|0.52778\n191124|0.55556\n191125|0.45833\n191126|0.22222\n191127|0.59722\n191128|0.44444\n191129|0.5\n191130|0.40278\n191131|0.33333\n191132|0.31944\n191133|0.23611\n191134|0.56944\n191135|0.51389\n191136|0.34722\n191137|0.63889\n191138|0.27778\n191139|0.19444\n191140|0.41667\n191141|0.5\n191142|0.66667\n191143|0.55556\n191144|0.47222\n191145|0.5\n191146|0.5\n191147|0.5\n191148|0.63889\n191149|0.5\n191150|0.5\n191151|0.59722\n191152|0.59722\n191153|0.77778\n191154|0.59722\n191155|0.34722\n191156|0.48611\n191157|0.31944\n191158|0.19444\n191159|0.55556\n191160|0.44444\n191161|0.5\n191162|0.38889\n191163|0.13889\n191164|0.16667\n191165|0.22222\n191166|0.38889\n191167|0.375\n191168|0.16667\n191169|0.33333\n191170|0.27778\n191171|0.52778\n191172|0.58333\n191173|0.52778\n191174|0.33333\n191175|0.63889\n191176|0.66667\n191177|0.19444\n191178|0.55556\n191179|0.54167\n191180|0.73611\n191181|0.11111\n191182|0.40278\n191183|0.20833\n191184|0.5\n191185|0.58333\n191186|0.65278\n191187|0.72222\n191188|0.68056\n191189|0.77778\n191190|0.40278\n191191|0.5\n191192|0.59722\n191193|0.15278\n191194|0.125\n191195|0.25\n191196|0.19444\n191197|0.54167\n191198|0.5\n191199|0.61111\n191200|0.5\n191201|0.52778\n191202|0.19444\n191203|0.45833\n191204|0.86111\n191205|0.51389\n191206|0.27778\n191207|0.69444\n191208|0.77778\n191209|0.625\n191210|0.52778\n191211|0.19444\n191212|0.43056\n191213|0.16667\n191214|0.41667\n191215|0.20833\n191216|0.13889\n191217|0.58333\n191218|0.48611\n191219|0.44444\n191220|0.55556\n191221|0.61111\n191222|0.68056\n191223|0.33333\n191224|0.34722\n191225|0.55556\n191226|0.055556\n191227|0.58333\n191228|0.44444\n191229|0.23611\n191230|0.34722\n191231|0.26389\n191232|0.5\n191233|0.23611\n191234|0.59722\n191235|0.51389\n191236|0.25\n191237|0.51389\n191238|0.56944\n191239|0.55556\n191240|0.84722\n191241|0.48611\n191242|0.5\n191243|0.36111\n191244|0.27778\n191245|0.375\n191246|0.55556\n191247|0.36111\n191248|0.43056\n191249|0.45833\n191250|0.43056\n191251|0.44444\n191252|0.48611\n191253|0.19444\n191254|0.15278\n191255|0.38889\n191256|0.54167\n191257|0.45833\n191258|0.33333\n191259|0.375\n191260|0.55556\n191261|0.58333\n191262|0.36111\n191263|0.36111\n191264|0.77778\n191265|0.76389\n191266|0.72222\n191267|0.29167\n191268|0.80556\n191269|0.47222\n191270|0.55556\n191271|0.5\n191272|0.29167\n191273|0.5\n191274|0.5\n191275|0.36111\n191276|0.70833\n191277|0.43056\n191278|0.44444\n191279|0.41667\n191280|0.38889\n191281|0.5\n191282|0.22222\n191283|0.19444\n191284|0.11111\n191285|0.19444\n191286|0.22222\n191287|0.26389\n191288|0.51389\n191289|0.5\n191290|0.44444\n191291|0.5\n191292|0.36111\n191293|0.63889\n191294|0.34722\n191295|0.52778\n191296|0.5\n191297|0.63889\n191298|0.47222\n191299|0.51389\n191300|0.30556\n191301|0.40278\n191302|0.44444\n191303|0.5\n191304|0.45833\n191305|0.77778\n191306|0.63889\n191307|0.625\n191308|0.58333\n191309|0.68056\n191310|0.61111\n191311|0.52778\n191312|0.5\n191313|0.55556\n191314|0.48611\n191315|0.19444\n191316|0.26389\n191317|0.52778\n191318|0.23611\n191319|0.44444\n191320|0.22222\n191321|0.48611\n191322|0.5\n191323|0.27778\n191324|0.23611\n191325|0.34722\n191326|0.52778\n191327|0.375\n191328|0.51389\n191329|0.5\n191330|0.5\n191331|0.56944\n191332|0.36111\n191333|0.51389\n191334|0.70833\n191335|0.51389\n191336|0.5\n191337|0.5\n191338|0.5\n191339|0.44444\n191340|0.54167\n191341|0.30556\n191342|0.36111\n191343|0.61111\n191344|0.34722\n191345|0.75\n191346|0.61111\n191347|0.61111\n191348|0.22222\n191349|0.25\n191350|0.23611\n191351|0.94444\n191352|0.33333\n191353|0.40278\n191354|0.54167\n191355|0.65278\n191356|0.48611\n191357|0.44444\n191358|0.20833\n191359|0.27778\n191360|0.19444\n191361|0.33333\n191362|0.52778\n191363|0.20833\n191364|0.54167\n191365|0.83333\n191366|0.22222\n191367|0.51389\n191368|0.72222\n191369|0.5\n191370|0.52778\n191371|0.29167\n191372|0.56944\n191373|0.83333\n191374|0.5\n191375|0.38889\n191376|0.16667\n191377|0.097222\n191378|0.36111\n191379|0.38889\n191380|0.65278\n191381|0.22222\n191382|0.34722\n191383|0.27778\n191384|0.44444\n191385|0.23611\n191386|0.22222\n191387|0.52778\n191388|0.58333\n191389|0.61111\n191390|0.27778\n191391|0.38889\n191392|0.27778\n191393|0.44444\n191394|0.38889\n191395|0.59722\n191396|0.083333\n191397|0.13889\n191398|0.41667\n191399|0.5\n191400|0.5\n191401|0.29167\n191402|0.5\n191403|0.22222\n191404|0.375\n191405|0.22222\n191406|0.27778\n191407|0.79167\n191408|0.66667\n191409|0.56944\n191410|0.68056\n191411|0.73611\n191412|0.69444\n191413|0.5\n191414|0.5\n191415|0.5\n191416|0.5\n191417|0.56944\n191418|0.61111\n191419|0.55556\n191420|0.55556\n191421|0.47222\n191422|0.51389\n191423|0.40278\n191424|0.36111\n191425|0.30556\n191426|0.66667\n191427|0.68056\n191428|0.23611\n191429|0.625\n191430|0.27778\n191431|0.22222\n191432|0.56944\n191433|0.77778\n191434|0.66667\n191435|0.72222\n191436|0.34722\n191437|0.41667\n191438|0.41667\n191439|0.27778\n191440|0.5\n191441|0.51389\n191442|0.63889\n191443|0.47222\n191444|0.30556\n191445|0.84722\n191446|0.43056\n191447|0.44444\n191448|0.66667\n191449|0.69444\n191450|0.5\n191451|0.30556\n191452|0.52778\n191453|0.34722\n191454|0.52778\n191455|0.48611\n191456|0.77778\n191457|0.58333\n191458|0.45833\n191459|0.55556\n191460|0.34722\n191461|0.54167\n191462|0.55556\n191463|0.5\n191464|0.13889\n191465|0.55556\n191466|0.40278\n191467|0.55556\n191468|0.5\n191469|0.56944\n191470|0.65278\n191471|0.56944\n191472|0.69444\n191473|0.38889\n191474|0.52778\n191475|0.43056\n191476|0.56944\n191477|0.5\n191478|0.27778\n191479|0.5\n191480|0.68056\n191481|0.5\n191482|0.59722\n191483|0.15278\n191484|0.45833\n191485|0.26389\n191486|0.59722\n191487|0.66667\n191488|0.25\n191489|0.34722\n191490|0.34722\n191491|0.44444\n191492|0.5\n191493|0.41667\n191494|0.23611\n191495|0.25\n191496|0.5\n191497|0.11111\n191498|0.18056\n191499|0.11111\n191500|0.083333\n191501|0.055556\n191502|0.069444\n191503|0.16667\n191504|0.125\n191505|0.11111\n191506|0.11111\n191507|0\n191508|0.22222\n191509|0.15278\n191510|0.5\n191511|0.61111\n191512|0.36111\n191513|0.5\n191514|0.33333\n191515|0.5\n191516|0.54167\n191517|0.5\n191518|0.58333\n191519|0.73611\n191520|0.38889\n191521|0.30556\n191522|0.41667\n191523|0.43056\n191524|0.36111\n191525|0.69444\n191526|0.76389\n191527|0.5\n191528|0.33333\n191529|0.5\n191530|0.45833\n191531|0.44444\n191532|0.5\n191533|0.56944\n191534|0.59722\n191535|0.41667\n191536|0.61111\n191537|0.41667\n191538|0.58333\n191539|0.65278\n191540|0.48611\n191541|0.58333\n191542|0.47222\n191543|0.56944\n191544|0.27778\n191545|0.25\n191546|0.72222\n191547|0.27778\n191548|0.47222\n191549|0.5\n191550|0.54167\n191551|0.25\n191552|0.26389\n191553|0.15278\n191554|0.19444\n191555|0.33333\n191556|0.5\n191557|0.44444\n191558|0.65278\n191559|0.5\n191560|0.38889\n191561|0.19444\n191562|0.54167\n191563|0.5\n191564|0.27778\n191565|0.16667\n191566|0.097222\n191567|0.65278\n191568|0.61111\n191569|0.31944\n191570|0.80556\n191571|0.38889\n191572|0.61111\n191573|0.18056\n191574|0.40278\n191575|0.51389\n191576|0.79167\n191577|0.44444\n191578|0.19444\n191579|0.54167\n191580|0.70833\n191581|0.625\n191582|0.51389\n191583|0.58333\n191584|0.44444\n191585|0.5\n191586|0.33333\n191587|0.5\n191588|0.83333\n191589|0.83333\n191590|0.41667\n191591|0.41667\n191592|0.34722\n191593|0.51389\n191594|0.61111\n191595|0.66667\n191596|0.41667\n191597|0.5\n191598|0.5\n191599|0.45833\n191600|0.5\n191601|0.375\n191602|0.58333\n191603|0.33333\n191604|0.72222\n191605|0.5\n191606|0.27778\n191607|0.18056\n191608|0.27778\n191609|0.5\n191610|0.30556\n191611|0.33333\n191612|0.66667\n191613|0.75\n191614|0.625\n191615|0.75\n191616|0.48611\n191617|0.63889\n191618|0.41667\n191619|0.31944\n191620|0.43056\n191621|0.5\n191622|0.34722\n191623|0.18056\n191624|0.59722\n191625|0.5\n191626|0.44444\n191627|0.38889\n191628|0.27778\n191629|0.20833\n191630|0.38889\n191631|0.30556\n191632|0.5\n191633|0.5\n191634|0.47222\n191635|0.47222\n191636|0.51389\n191637|0.55556\n191638|0.55556\n191639|0.66667\n191640|0.77778\n191641|0.38889\n191642|0.22222\n191643|0.86111\n191644|0.38889\n191645|0.66667\n191646|0.65278\n191647|0.72222\n191648|0.375\n191649|0.34722\n191650|0.29167\n191651|0.29167\n191652|0.5\n191653|0.56944\n191654|0.52778\n191655|0.55556\n191656|0.44444\n191657|0.27778\n191658|0.56944\n191659|0.5\n191660|0.20833\n191661|0.30556\n191662|0.26389\n191663|0.54167\n191664|0.5\n191665|0.72222\n191666|0.22222\n191667|0.38889\n191668|0.44444\n191669|0.43056\n191670|0.41667\n191671|0.69444\n191672|0.5\n191673|0.36111\n191674|0.5\n191675|0.54167\n191676|0.34722\n191677|0.51389\n191678|0.5\n191679|0.5\n191680|0.5\n191681|0.5\n191682|0.55556\n191683|0.5\n191684|0.5\n191685|0.51389\n191686|0.5\n191687|0.5\n191688|0.5\n191689|0.5\n191690|0.30556\n191691|0.59722\n191692|0.5\n191693|0.5\n191694|0.5\n191695|0.5\n191696|0.5\n191697|0.44444\n191698|0.54167\n191699|0.5\n191700|0.5\n191701|0.5\n191702|0.19444\n191703|0.31944\n191704|0.5\n191705|0.5\n191706|0.5\n191707|0.5\n191708|0.54167\n191709|0.5\n191710|0.40278\n191711|0.47222\n191712|0.38889\n191713|0.66667\n191714|0.5\n191715|0.43056\n191716|0.5\n191717|0.43056\n191718|0.58333\n191719|0.5\n191720|0.5\n191721|0.125\n191722|0.083333\n191723|0\n191724|0.5\n191725|0.38889\n191726|0.5\n191727|0.30556\n191728|0.51389\n191729|0.45833\n191730|0.5\n191731|0.5\n191732|0.54167\n191733|0.48611\n191734|0.5\n191735|0.29167\n191736|0.5\n191737|0.38889\n191738|0.5\n191739|0.5\n191740|0.55556\n191741|0.55556\n191742|0.5\n191743|0.5\n191744|0.54167\n191745|0.56944\n191746|0.5\n191747|0.51389\n191748|0.43056\n191749|0.5\n191750|0.69444\n191751|0.5\n191752|0.65278\n191753|0.51389\n191754|0.5\n191755|0.5\n191756|0.61111\n191757|0.29167\n191758|0.5\n191759|0.61111\n191760|0.5\n191761|0.5\n191762|0.5\n191763|0.54167\n191764|0.5\n191765|0.5\n191766|0.38889\n191767|0.51389\n191768|0.43056\n191769|0.27778\n191770|0.13889\n191771|0.38889\n191772|0.66667\n191773|0.5\n191774|0.40278\n191775|0.5\n191776|0.68056\n191777|0.5\n191778|0.52778\n191779|0.41667\n191780|0.5\n191781|0.51389\n191782|0.48611\n191783|0.45833\n191784|0.69444\n191785|0.56944\n191786|0.44444\n191787|0.5\n191788|0.48611\n191789|0.22222\n191790|0.56944\n191791|0.52778\n191792|0.40278\n191793|0.25\n191794|0.31944\n191795|0.65278\n191796|0.44444\n191797|0.56944\n191798|0.65278\n191799|0.5\n191800|0.5\n191801|0.375\n191802|0.5\n191803|0.63889\n191804|0.5\n191805|0.5\n191806|0.5\n191807|0.5\n191808|0.33333\n191809|0.5\n191810|0.40278\n191811|0.56944\n191812|0.52778\n191813|0.34722\n191814|0.26389\n191815|0.43056\n191816|0.625\n191817|0.31944\n191818|0.5\n191819|0.5\n191820|0.30556\n191821|0.94444\n191822|0.52778\n191823|0.16667\n191824|0.44444\n191825|0.77778\n191826|0.61111\n191827|0.48611\n191828|0.45833\n191829|0.20833\n191830|0.069444\n191831|0.19444\n191832|0.27778\n191833|0.29167\n191834|0.16667\n191835|0.31944\n191836|0.055556\n191837|0.54167\n191838|0.41667\n191839|0.19444\n191840|0.26389\n191841|0.58333\n191842|0.33333\n191843|0.40278\n191844|0.38889\n191845|0.5\n191846|0.31944\n191847|0.61111\n191848|0.69444\n191849|0.55556\n191850|0.55556\n191851|0.55556\n191852|0.54167\n191853|0.83333\n191854|0.75\n191855|0.55556\n191856|0.5\n191857|0.5\n191858|0.20833\n191859|0.56944\n191860|0.61111\n191861|0.55556\n191862|0.44444\n191863|0.13889\n191864|0.66667\n191865|0.5\n191866|0.41667\n191867|0.22222\n191868|0.43056\n191869|0.5\n191870|0.45833\n191871|0.41667\n191872|0.41667\n191873|0.11111\n191874|0.5\n191875|0.5\n191876|0.41667\n191877|0.5\n191878|0.5\n191879|0.22222\n191880|0.40278\n191881|0.68056\n191882|0.65278\n191883|0.66667\n191884|0.80556\n191885|0.069444\n191886|0.27778\n191887|0.5\n191888|0.33333\n191889|0.45833\n191890|0.31944\n191891|0.31944\n191892|0.5\n191893|0.38889\n191894|0.55556\n191895|0.63889\n191896|0.5\n191897|0.30556\n191898|0.23611\n191899|0.5\n191900|0.63889\n191901|0.52778\n191902|0.43056\n191903|0.5\n191904|0.44444\n191905|0.33333\n191906|0.51389\n191907|0.51389\n191908|0.56944\n191909|0.5\n191910|0.22222\n191911|0.55556\n191912|0.5\n191913|0.58333\n191914|0.58333\n191915|0.54167\n191916|0.56944\n191917|0.69444\n191918|0.5\n191919|0.5\n191920|0.30556\n191921|0.65278\n191922|0.51389\n191923|0.5\n191924|0.58333\n191925|0.5\n191926|0.61111\n191927|0.52778\n191928|0.61111\n191929|0.5\n191930|0.47222\n191931|0.5\n191932|0.44444\n191933|0.51389\n191934|0.23611\n191935|0.45833\n191936|0.47222\n191937|0.33333\n191938|0.5\n191939|0.5\n191940|0.43056\n191941|0.23611\n191942|0.5\n191943|0.59722\n191944|0.375\n191945|0.5\n191946|0.83333\n191947|0.79167\n191948|0.30556\n191949|0.56944\n191950|0.48611\n191951|0.72222\n191952|0.375\n191953|0.23611\n191954|0.70833\n191955|0.069444\n191956|0.72222\n191957|0.47222\n191958|0.47222\n191959|0.43056\n191960|0.79167\n191961|0.47222\n191962|0.5\n191963|0.5\n191964|0.55556\n191965|0.27778\n191966|0.31944\n191967|0.55556\n191968|0.16667\n191969|0.18056\n191970|0.5\n191971|0.47222\n191972|0.54167\n191973|0.30556\n191974|0.75\n191975|0.68056\n191976|0.26389\n191977|0.083333\n191978|0.66667\n191979|0.47222\n191980|0.5\n191981|0.5\n191982|0.55556\n191983|0.59722\n191984|0.44444\n191985|0.5\n191986|0.45833\n191987|0.47222\n191988|0.5\n191989|0.44444\n191990|0.69444\n191991|0.76389\n191992|0.75\n191993|0.54167\n191994|0.5\n191995|0.30556\n191996|0.41667\n191997|0.18056\n191998|0.63889\n191999|0.59722\n192000|0.52778\n192001|0.54167\n192002|0.375\n192003|0.44444\n192004|0.44444\n192005|0.5\n192006|0.625\n192007|0.38889\n192008|0.58333\n192009|0.61111\n192010|0.44444\n192011|0.36111\n192012|0.5\n192013|0.5\n192014|0.29167\n192015|0.5\n192016|0.51389\n192017|0.5\n192018|0.70833\n192019|0.5\n192020|0.5\n192021|0.56944\n192022|0.26389\n192023|0.5\n192024|0.5\n192025|0.58333\n192026|0.20833\n192027|0.55556\n192028|0.66667\n192029|0.55556\n192030|0.58333\n192031|0.30556\n192032|0.33333\n192033|0.38889\n192034|0.25\n192035|0.40278\n192036|0.55556\n192037|0.30556\n192038|0.45833\n192039|0.5\n192040|0.51389\n192041|0.5\n192042|0.44444\n192043|0.5\n192044|0.375\n192045|0.5\n192046|0.41667\n192047|0.23611\n192048|0.5\n192049|0.5\n192050|0.5\n192051|0.38889\n192052|0.54167\n192053|0.34722\n192054|0.43056\n192055|0.38889\n192056|0.5\n192057|0.5\n192058|0.5\n192059|0.44444\n192060|0.47222\n192061|0.51389\n192062|0.5\n192063|0.30556\n192064|0.15278\n192065|0.5\n192066|0.44444\n192067|0.44444\n192068|0.5\n192069|0.54167\n192070|0.5\n192071|0.5\n192072|0.5\n192073|0.51389\n192074|0.5\n192075|0.34722\n192076|0.54167\n192077|0.61111\n192078|0.66667\n192079|0.54167\n192080|0.5\n192081|0.34722\n192082|0.43056\n192083|0.26389\n192084|0.47222\n192085|0.38889\n192086|0.58333\n192087|0.40278\n192088|0.33333\n192089|0.25\n192090|0.31944\n192091|0.26389\n192092|0.23611\n192093|0.23611\n192094|0.15278\n192095|0.15278\n192096|0.23611\n192097|0.27778\n192098|0.54167\n192099|0.56944\n192100|0.48611\n192101|0.27778\n192102|0.38889\n192103|0.25\n192104|0.11111\n192105|0.13889\n192106|0.33333\n192107|0.63889\n192108|0.33333\n192109|0.5\n192110|0.5\n192111|0.36111\n192112|0.25\n192113|0.52778\n192114|0.44444\n192115|0.097222\n192116|0.45833\n192117|0.5\n192118|0.43056\n192119|0.40278\n192120|0.5\n192121|0.79167\n192122|0.61111\n192123|0.55556\n192124|0.51389\n192125|0.5\n192126|0.66667\n192127|0.54167\n192128|0.5\n192129|0.58333\n192130|0.55556\n192131|0.55556\n192132|0.72222\n192133|0.77778\n192134|0.54167\n192135|0.625\n192136|0.5\n192137|0.5\n192138|0.33333\n192139|0.54167\n192140|0.625\n192141|0.5\n192142|0.23611\n192143|0.55556\n192144|0.66667\n192145|0.125\n192146|0.5\n192147|0.5\n192148|0.66667\n192149|0.36111\n192150|0.47222\n192151|0.61111\n192152|0.30556\n192153|0.15278\n192154|0.5\n192155|0.5\n192156|0.22222\n192157|0.5\n192158|0.5\n192159|0.54167\n192160|0.41667\n192161|0.19444\n192162|0.31944\n192163|0.66667\n192164|0.375\n192165|0.48611\n192166|0.44444\n192167|0.5\n192168|0.5\n192169|0.5\n192170|0.5\n192171|0.5\n192172|0.33333\n192173|0.375\n192174|0.5\n192175|0.55556\n192176|0.38889\n192177|0.56944\n192178|0.47222\n192179|0.5\n192180|0.26389\n192181|0.27778\n192182|0.41667\n192183|0.48611\n192184|0.44444\n192185|0.45833\n192186|0.30556\n192187|0.5\n192188|0.31944\n192189|0.20833\n192190|0.34722\n192191|0.5\n192192|0.59722\n192193|0.625\n192194|0.5\n192195|0.59722\n192196|0.5\n192197|0.5\n192198|0.38889\n192199|0.5\n192200|0.51389\n192201|0.61111\n192202|0.54167\n192203|0.43056\n192204|0.5\n192205|0.63889\n192206|0.51389\n192207|0.63889\n192208|0.38889\n192209|0.66667\n192210|0.61111\n192211|0.5\n192212|0.41667\n192213|0.56944\n192214|0.52778\n192215|0.41667\n192216|0.52778\n192217|0.52778\n192218|0.48611\n192219|0.54167\n192220|0.625\n192221|0.25\n192222|0.61111\n192223|0.47222\n192224|0.33333\n192225|0.47222\n192226|0.5\n192227|0.44444\n192228|0.5\n192229|0.36111\n192230|0.5\n192231|0.65278\n192232|0.44444\n192233|0.375\n192234|0.56944\n192235|0.125\n192236|0.52778\n192237|0.51389\n192238|0.79167\n192239|0.44444\n192240|0.45833\n192241|0.55556\n192242|0.20833\n192243|0.55556\n192244|0.47222\n192245|0.5\n192246|0.48611\n192247|0.69444\n192248|0.5\n192249|0.5\n192250|0.23611\n192251|0.45833\n192252|0.33333\n192253|0.25\n192254|0.41667\n192255|0.5\n192256|0.63889\n192257|0.36111\n192258|0.34722\n192259|0.48611\n192260|0.40278\n192261|0.33333\n192262|0.5\n192263|0.27778\n192264|0.51389\n192265|0.5\n192266|0.5\n192267|0.56944\n192268|0.5\n192269|0.31944\n192270|0.5\n192271|0.25\n192272|0.5\n192273|0.47222\n192274|0.63889\n192275|0.5\n192276|0.48611\n192277|0.5\n192278|0.52778\n192279|0.51389\n192280|0.61111\n192281|0.58333\n192282|0.45833\n192283|0.5\n192284|0.77778\n192285|0.72222\n192286|0.52778\n192287|0.52778\n192288|0.44444\n192289|0.5\n192290|0.26389\n192291|0.38889\n192292|0.54167\n192293|0.48611\n192294|0.16667\n192295|0.47222\n192296|0.56944\n192297|0.51389\n192298|0.51389\n192299|0.23611\n192300|0.375\n192301|0.13889\n192302|0.5\n192303|0.18056\n192304|0.27778\n192305|0.5\n192306|0.5\n192307|0.16667\n192308|0.27778\n192309|0.5\n192310|0.375\n192311|0.56944\n192312|0.25\n192313|0.25\n192314|0.23611\n192315|0.40278\n192316|0.41667\n192317|0.72222\n192318|0.41667\n192319|0.58333\n192320|0.30556\n192321|0.5\n192322|0.69444\n192323|0.33333\n192324|0.51389\n192325|0.5\n192326|0.40278\n192327|0.20833\n192328|0.40278\n192329|0.41667\n192330|0.48611\n192331|0.43056\n192332|0.083333\n192333|0.75\n192334|0.27778\n192335|0.22222\n192336|0.27778\n192337|0.36111\n192338|0.26389\n192339|0.5\n192340|0.66667\n192341|0.44444\n192342|0.51389\n192343|0.65278\n192344|0.27778\n192345|0.5\n192346|0.33333\n192347|0.55556\n192348|0.5\n192349|0.5\n192350|0.20833\n192351|0.5\n192352|0.68056\n192353|0.63889\n192354|0.5\n192355|0.5\n192356|0.25\n192357|0.29167\n192358|0.25\n192359|0.20833\n192360|0.5\n192361|0.5\n192362|0.52778\n192363|0.34722\n192364|0.33333\n192365|0.54167\n192366|0.61111\n192367|0.48611\n192368|0.58333\n192369|0.54167\n192370|0.33333\n192371|0.52778\n192372|0.69444\n192373|0.40278\n192374|0.56944\n192375|0.5\n192376|0.54167\n192377|0.22222\n192378|0.38889\n192379|0.51389\n192380|0.27778\n192381|0.5\n192382|0.55556\n192383|0.29167\n192384|0.56944\n192385|0.25\n192386|0.43056\n192387|0.41667\n192388|0.44444\n192389|0.41667\n192390|0.27778\n192391|0.36111\n192392|0.56944\n192393|0.61111\n192394|0.55556\n192395|0.43056\n192396|0.61111\n192397|0.63889\n192398|0.58333\n192399|0.41667\n192400|0.55556\n192401|0.70833\n192402|0.41667\n192403|0.69444\n192404|0.5\n192405|0.625\n192406|0.61111\n192407|0.63889\n192408|0.70833\n192409|0.63889\n192410|0.70833\n192411|0.52778\n192412|0.58333\n192413|0.63889\n192414|0.58333\n192415|0.44444\n192416|0.375\n192417|0.38889\n192418|0.5\n192419|0.5\n192420|0.5\n192421|0.5\n192422|0.55556\n192423|0.5\n192424|0.5\n192425|0.43056\n192426|0.5\n192427|0.90278\n192428|0.88889\n192429|0.69444\n192430|0.65278\n192431|0.63889\n192432|0.23611\n192433|0.47222\n192434|0.5\n192435|0.31944\n192436|0.29167\n192437|0.31944\n192438|0.33333\n192439|0.16667\n192440|0.5\n192441|0.44444\n192442|0.38889\n192443|0.54167\n192444|0.41667\n192445|0.48611\n192446|0.5\n192447|0.33333\n192448|0.79167\n192449|0.54167\n192450|0.36111\n192451|0.58333\n192452|0.51389\n192453|0.41667\n192454|0.54167\n192455|0.38889\n192456|0.5\n192457|0.61111\n192458|0.76389\n192459|0.52778\n192460|0.18056\n192461|0.72222\n192462|0.52778\n192463|0.73611\n192464|0.66667\n192465|0.5\n192466|0.43056\n192467|0.73611\n192468|0.41667\n192469|0.19444\n192470|0.40278\n192471|0.5\n192472|0.51389\n192473|0.5\n192474|0.375\n192475|0.18056\n192476|0.44444\n192477|0.45833\n192478|0.18056\n192479|0.36111\n192480|0.55556\n192481|0.5\n192482|0.43056\n192483|0.40278\n192484|0.66667\n192485|0.36111\n192486|0.375\n192487|0.5\n192488|0.40278\n192489|0.40278\n192490|0.55556\n192491|0.36111\n192492|0.65278\n192493|0.43056\n192494|0.097222\n192495|0.055556\n192496|0.013889\n192497|0\n192498|0.44444\n192499|0.48611\n192500|0.55556\n192501|0.65278\n192502|0.44444\n192503|0.58333\n192504|0.72222\n192505|0.34722\n192506|0.11111\n192507|0.65278\n192508|0.65278\n192509|0.20833\n192510|0.66667\n192511|0.51389\n192512|0.66667\n192513|0.48611\n192514|0.55556\n192515|0.45833\n192516|0.86111\n192517|0.77778\n192518|0.79167\n192519|0.83333\n192520|0.29167\n192521|0.5\n192522|0.61111\n192523|0.65278\n192524|0.68056\n192525|0.51389\n192526|0.75\n192527|0.75\n192528|0.70833\n192529|0.52778\n192530|0.54167\n192531|0.73611\n192532|0.45833\n192533|0.41667\n192534|0.375\n192535|0.66667\n192536|0.20833\n192537|0.20833\n192538|0.38889\n192539|0.29167\n192540|0.52778\n192541|0.375\n192542|0.61111\n192543|0.77778\n192544|0.16667\n192545|0.30556\n192546|0.84722\n192547|0.52778\n192548|0.33333\n192549|0.86111\n192550|0.52778\n192551|0.77778\n192552|0.069444\n192553|0.30556\n192554|0.11111\n192555|0.77778\n192556|0.79167\n192557|0.41667\n192558|0.25\n192559|0.5\n192560|0.11111\n192561|0.43056\n192562|0.48611\n192563|0.19444\n192564|0.66667\n192565|0.5\n192566|0.40278\n192567|0.5\n192568|0.54167\n192569|0.5\n192570|0.23611\n192571|0.18056\n192572|0.27778\n192573|0.5\n192574|0.65278\n192575|0.22222\n192576|0.16667\n192577|0.625\n192578|0.26389\n192579|0.34722\n192580|0.33333\n192581|0.375\n192582|0.22222\n192583|0.13889\n192584|0.11111\n192585|0.13889\n192586|0.38889\n192587|0.5\n192588|0.44444\n192589|0.51389\n192590|0.13889\n192591|0.51389\n192592|0.097222\n192593|0.11111\n192594|0.11111\n192595|0.13889\n192596|0.72222\n192597|0.36111\n192598|0.625\n192599|0.83333\n192600|0.73611\n192601|0.83333\n192602|0.55556\n192603|0.65278\n192604|0.66667\n192605|0.63889\n192606|0.80556\n192607|0.73611\n192608|0.5\n192609|0.80556\n192610|0.70833\n192611|0.5\n192612|0.55556\n192613|0.48611\n192614|0.55556\n192615|0.36111\n192616|0.40278\n192617|0.43056\n192618|0.30556\n192619|0.29167\n192620|0.44444\n192621|0.45833\n192622|0.5\n192623|0.22222\n192624|0.5\n192625|0.61111\n192626|0.52778\n192627|0.59722\n192628|0.63889\n192629|0.54167\n192630|0.47222\n192631|0.47222\n192632|0.33333\n192633|0.66667\n192634|0.18056\n192635|0.11111\n192636|0.26389\n192637|0.51389\n192638|0.19444\n192639|0.26389\n192640|0.19444\n192641|0.51389\n192642|0.61111\n192643|0.20833\n192644|0.18056\n192645|0.25\n192646|0.18056\n192647|0.33333\n192648|0.33333\n192649|0.36111\n192650|0.26389\n192651|0.36111\n192652|0.375\n192653|0.5\n192654|0.16667\n192655|0.25\n192656|0.43056\n192657|0.55556\n192658|0.375\n192659|0.55556\n192660|0.33333\n192661|0.40278\n192662|0.33333\n192663|0.23611\n192664|0.5\n192665|0.52778\n192666|0.5\n192667|0.5\n192668|0.38889\n192669|0.52778\n192670|0.40278\n192671|0.30556\n192672|0.13889\n192673|0.41667\n192674|0.69444\n192675|0.47222\n192676|0.61111\n192677|0.63889\n192678|0.43056\n192679|0.48611\n192680|0.51389\n192681|0.5\n192682|0.11111\n192683|0.5\n192684|0.44444\n192685|0.47222\n192686|0.51389\n192687|0.75\n192688|0.55556\n192689|0.51389\n192690|0.5\n192691|0.27778\n192692|0.61111\n192693|0.5\n192694|0.5\n192695|0.5\n192696|0.5\n192697|0.5\n192698|0.5\n192699|0.5\n192700|0.52778\n192701|0.5\n192702|0.5\n192703|0.5\n192704|0.5\n192705|0.54167\n192706|0.58333\n192707|0.5\n192708|0.5\n192709|0.66667\n192710|0.55556\n192711|0.47222\n192712|0.45833\n192713|0.19444\n192714|0.5\n192715|0.5\n192716|0.73611\n192717|0.625\n192718|0.41667\n192719|0.44444\n192720|0.34722\n192721|0.61111\n192722|0.16667\n192723|0.5\n192724|0.36111\n192725|0.48611\n192726|0.5\n192727|0.41667\n192728|0.43056\n192729|0.41667\n192730|0.48611\n192731|0.30556\n192732|0.40278\n192733|0.29167\n192734|0.29167\n192735|0.5\n192736|0.29167\n192737|0.5\n192738|0.51389\n192739|0.19444\n192740|0.45833\n192741|0.30556\n192742|0.26389\n192743|0.66667\n192744|0.30556\n192745|0.625\n192746|0.44444\n192747|0.5\n192748|0.63889\n192749|0.61111\n192750|0.30556\n192751|0.43056\n192752|0.58333\n192753|0.43056\n192754|0.40278\n192755|0.25\n192756|0.36111\n192757|0.34722\n192758|0.5\n192759|0.5\n192760|0.5\n192761|0.19444\n192762|0.31944\n192763|0.5\n192764|0.58333\n192765|0.75\n192766|0.59722\n192767|0.26389\n192768|0.48611\n192769|0.41667\n192770|0.5\n192771|0.5\n192772|0.23611\n192773|0.30556\n192774|0.13889\n192775|0.44444\n192776|0.38889\n192777|0.44444\n192778|0.5\n192779|0.5\n192780|0.59722\n192781|0.5\n192782|0.44444\n192783|0.44444\n192784|0.33333\n192785|0.33333\n192786|0.22222\n192787|0.31944\n192788|0.38889\n192789|0.5\n192790|0.22222\n192791|0.72222\n192792|0.52778\n192793|0.52778\n192794|0.5\n192795|0.40278\n192796|0.40278\n192797|0.56944\n192798|0.5\n192799|0.38889\n192800|0.34722\n192801|0.38889\n192802|0.59722\n192803|0.29167\n192804|0.56944\n192805|0.5\n192806|0.55556\n192807|0.5\n192808|0.56944\n192809|0.5\n192810|0.54167\n192811|0.48611\n192812|0.5\n192813|0.48611\n192814|0.5\n192815|0.29167\n192816|0.33333\n192817|0.38889\n192818|0.27778\n192819|0.20833\n192820|0.25\n192821|0.5\n192822|0.45833\n192823|0.29167\n192824|0.22222\n192825|0.5\n192826|0.63889\n192827|0.5\n192828|0.375\n192829|0.5\n192830|0.43056\n192831|0.83333\n192832|0.73611\n192833|0.38889\n192834|0.27778\n192835|0.5\n192836|0.41667\n192837|0.51389\n192838|0.26389\n192839|0.41667\n192840|0.5\n192841|0.38889\n192842|0.38889\n192843|0.45833\n192844|0.5\n192845|0.48611\n192846|0.48611\n192847|0.5\n192848|0.54167\n192849|0.33333\n192850|0.66667\n192851|0.44444\n192852|0.54167\n192853|0.73611\n192854|0.41667\n192855|0.36111\n192856|0.25\n192857|0.29167\n192858|0.25\n192859|0.19444\n192860|0.48611\n192861|0.40278\n192862|0.73611\n192863|0.22222\n192864|0.18056\n192865|0.41667\n192866|0.84722\n192867|0.5\n192868|0.11111\n192869|0.34722\n192870|0.16667\n192871|0.15278\n192872|0.54167\n192873|0.51389\n192874|0.38889\n192875|0.5\n192876|0.5\n192877|0.43056\n192878|0.40278\n192879|0.44444\n192880|0.41667\n192881|0.54167\n192882|0.54167\n192883|0.52778\n192884|0.5\n192885|0.5\n192886|0.5\n192887|0.5\n192888|0.52778\n192889|0.5\n192890|0.44444\n192891|0.51389\n192892|0.5\n192893|0.33333\n192894|0.23611\n192895|0.5\n192896|0.34722\n192897|0.51389\n192898|0.5\n192899|0.58333\n192900|0.48611\n192901|0.38889\n192902|0.45833\n192903|0.5\n192904|0.55556\n192905|0.5\n192906|0.5\n192907|0.61111\n192908|0.5\n192909|0.56944\n192910|0.34722\n192911|0.58333\n192912|0.55556\n192913|0.55556\n192914|0.5\n192915|0.44444\n192916|0.44444\n192917|0.52778\n192918|0.5\n192919|0.5\n192920|0.5\n192921|0.38889\n192922|0.30556\n192923|0.5\n192924|0.5\n192925|0.34722\n192926|0.66667\n192927|0.5\n192928|0.44444\n192929|0.52778\n192930|0.52778\n192931|0.52778\n192932|0.51389\n192933|0.41667\n192934|0.5\n192935|0.38889\n192936|0.55556\n192937|0.38889\n192938|0.25\n192939|0.22222\n192940|0.25\n192941|0.44444\n192942|0.27778\n192943|0.65278\n192944|0.43056\n192945|0.43056\n192946|0.44444\n192947|0.11111\n192948|0.5\n192949|0.5\n192950|0.19444\n192951|0.5\n192952|0.45833\n192953|0.44444\n192954|0.5\n192955|0.48611\n192956|0.5\n192957|0.65278\n192958|0.47222\n192959|0.59722\n192960|0.625\n192961|0.56944\n192962|0.13889\n192963|0.44444\n192964|0.63889\n192965|0.44444\n192966|0.47222\n192967|0.44444\n192968|0.5\n192969|0.47222\n192970|0.36111\n192971|0.58333\n192972|0.13889\n192973|0.52778\n192974|0.5\n192975|0.375\n192976|0.45833\n192977|0.51389\n192978|0.51389\n192979|0.73611\n192980|0.27778\n192981|0.61111\n192982|0.61111\n192983|0.69444\n192984|0.5\n192985|0.31944\n192986|0.65278\n192987|0.47222\n192988|0.30556\n192989|0.26389\n192990|0.40278\n192991|0.26389\n192992|0.19444\n192993|0.33333\n192994|0.125\n192995|0.5\n192996|0.52778\n192997|0.19444\n192998|0.18056\n192999|0.16667\n193000|0.22222\n193001|0.44444\n193002|0.43056\n193003|0.80556\n193004|0.5\n193005|0.44444\n193006|0.5\n193007|0.80556\n193008|0.43056\n193009|0.55556\n193010|0.51389\n193011|0.72222\n193012|0.5\n193013|0.5\n193014|0.55556\n193015|0.41667\n193016|0.36111\n193017|0.47222\n193018|0.56944\n193019|0.59722\n193020|0.083333\n193021|0.23611\n193022|0.63889\n193023|0.77778\n193024|0.48611\n193025|0.58333\n193026|0.375\n193027|0.625\n193028|0.375\n193029|0.5\n193030|0.27778\n193031|0.22222\n193032|0.23611\n193033|0.5\n193034|0.77778\n193035|0.38889\n193036|0.25\n193037|0.66667\n193038|0.36111\n193039|0.18056\n193040|0.44444\n193041|0.5\n193042|0.47222\n193043|0.47222\n193044|0.52778\n193045|0.29167\n193046|0.31944\n193047|0.5\n193048|0.5\n193049|0.48611\n193050|0.43056\n193051|0.5\n193052|0.54167\n193053|0.25\n193054|0.41667\n193055|0.27778\n193056|0.31944\n193057|0.16667\n193058|0.055556\n193059|0.36111\n193060|0.34722\n193061|0.27778\n193062|0.43056\n193063|0.27778\n193064|0.20833\n193065|0.44444\n193066|0.45833\n193067|0.5\n193068|0.18056\n193069|0.5\n193070|0.5\n193071|0.48611\n193072|0.44444\n193073|0.81944\n193074|0.63889\n193075|0.44444\n193076|0.45833\n193077|0.75\n193078|0.41667\n193079|0.47222\n193080|0.45833\n193081|0.26389\n193082|0.43056\n193083|0.45833\n193084|0.5\n193085|0.5\n193086|0.5\n193087|0.70833\n193088|0.625\n193089|0.43056\n193090|0.5\n193091|0.5\n193092|0.66667\n193093|0.38889\n193094|0.43056\n193095|0.41667\n193096|0.38889\n193097|0.70833\n193098|0.33333\n193099|0.56944\n193100|0.44444\n193101|0.44444\n193102|0.5\n193103|0.29167\n193104|0.16667\n193105|0.54167\n193106|0.29167\n193107|0.19444\n193108|0.55556\n193109|0.41667\n193110|0.5\n193111|0.44444\n193112|0.81944\n193113|0.61111\n193114|0.44444\n193115|0.23611\n193116|0.68056\n193117|0.52778\n193118|0.68056\n193119|0.40278\n193120|0.54167\n193121|0.56944\n193122|0.61111\n193123|0.27778\n193124|0.26389\n193125|0.375\n193126|0.65278\n193127|0.5\n193128|0.40278\n193129|0.5\n193130|0.31944\n193131|0.18056\n193132|0.38889\n193133|0.20833\n193134|0.16667\n193135|0.40278\n193136|0.33333\n193137|0.27778\n193138|0.5\n193139|0.15278\n193140|0.5\n193141|0.56944\n193142|0.27778\n193143|0.5\n193144|0.16667\n193145|0.56944\n193146|0.44444\n193147|0.45833\n193148|0.19444\n193149|0.38889\n193150|0.30556\n193151|0.40278\n193152|0.29167\n193153|0.375\n193154|0.47222\n193155|0.5\n193156|0.18056\n193157|0.22222\n193158|0.54167\n193159|0.84722\n193160|0.52778\n193161|0.5\n193162|0.51389\n193163|0.72222\n193164|0.44444\n193165|0.59722\n193166|0.61111\n193167|0.73611\n193168|0.61111\n193169|0.59722\n193170|0.625\n193171|0.68056\n193172|0.41667\n193173|0.66667\n193174|0.77778\n193175|0.33333\n193176|0.41667\n193177|0.75\n193178|0.59722\n193179|0.625\n193180|0.20833\n193181|0.56944\n193182|0.27778\n193183|0.20833\n193184|0.55556\n193185|0.375\n193186|0.33333\n193187|0.76389\n193188|0.29167\n193189|0.22222\n193190|0.25\n193191|0.29167\n193192|0.22222\n193193|0.18056\n193194|0.15278\n193195|0.11111\n193196|0.58333\n193197|0.76389\n193198|0.33333\n193199|0.625\n193200|0.59722\n193201|0.5\n193202|0.44444\n193203|0.55556\n193204|0.69444\n193205|0.70833\n193206|0.73611\n193207|0.23611\n193208|0.15278\n193209|0.36111\n193210|0.48611\n193211|0.56944\n193212|0.55556\n193213|0.20833\n193214|0.19444\n193215|0.44444\n193216|0.44444\n193217|0.33333\n193218|0.20833\n193219|0.23611\n193220|0.63889\n193221|0.52778\n193222|0.66667\n193223|0.5\n193224|0.27778\n193225|0.25\n193226|0.27778\n193227|0.22222\n193228|0.34722\n193229|0.34722\n193230|0.375\n193231|0.5\n193232|0.70833\n193233|0.27778\n193234|0.34722\n193235|0.23611\n193236|0.30556\n193237|0.41667\n193238|0.5\n193239|0.29167\n193240|0.33333\n193241|0.22222\n193242|0.59722\n193243|0.54167\n193244|0.33333\n193245|0.59722\n193246|0.27778\n193247|0.45833\n193248|0.30556\n193249|0.56944\n193250|0.5\n193251|0.5\n193252|0.47222\n193253|0.5\n193254|0.5\n193255|0.5\n193256|0.45833\n193257|0.5\n193258|0.5\n193259|0.16667\n193260|0.44444\n193261|0.58333\n193262|0.5\n193263|0.40278\n193264|0.5\n193265|0.33333\n193266|0.48611\n193267|0.55556\n193268|0.5\n193269|0.625\n193270|0.29167\n193271|0.44444\n193272|0.44444\n193273|0.47222\n193274|0.18056\n193275|0.5\n193276|0.5\n193277|0.22222\n193278|0.5\n193279|0.44444\n193280|0.44444\n193281|0.52778\n193282|0.5\n193283|0.56944\n193284|0.56944\n193285|0.54167\n193286|0.55556\n193287|0.26389\n193288|0.33333\n193289|0.61111\n193290|0.56944\n193291|0.52778\n193292|0.59722\n193293|0.56944\n193294|0.19444\n193295|0.23611\n193296|0.66667\n193297|0.66667\n193298|0.5\n193299|0.27778\n193300|0.51389\n193301|0.44444\n193302|0.40278\n193303|0.41667\n193304|0.65278\n193305|0.625\n193306|0.75\n193307|0.5\n193308|0.5\n193309|0.5\n193310|0.5\n193311|0.5\n193312|0.44444\n193313|0.5\n193314|0.55556\n193315|0.59722\n193316|0.41667\n193317|0.55556\n193318|0.5\n193319|0.5\n193320|0.47222\n193321|0.22222\n193322|0.61111\n193323|0.79167\n193324|0.31944\n193325|0.66667\n193326|0.63889\n193327|0.55556\n193328|0.36111\n193329|0.5\n193330|0.51389\n193331|0.5\n193332|0.44444\n193333|0.34722\n193334|0.5\n193335|0.5\n193336|0.61111\n193337|0.5\n193338|0.55556\n193339|0.625\n193340|0.55556\n193341|0.51389\n193342|0.20833\n193343|0.33333\n193344|0.38889\n193345|0.55556\n193346|0.5\n193347|0.51389\n193348|0.33333\n193349|0.375\n193350|0.5\n193351|0.29167\n193352|0.33333\n193353|0.58333\n193354|0.5\n193355|0.5\n193356|0.66667\n193357|0.47222\n193358|0.29167\n193359|0.69444\n193360|0.55556\n193361|0.33333\n193362|0.5\n193363|0.56944\n193364|0.29167\n193365|0.5\n193366|0.5\n193367|0.43056\n193368|0.33333\n193369|0.59722\n193370|0.5\n193371|0.33333\n193372|0.625\n193373|0.5\n193374|0.56944\n193375|0.30556\n193376|0.19444\n193377|0.41667\n193378|0.58333\n193379|0.61111\n193380|0.45833\n193381|0.34722\n193382|0.70833\n193383|0.47222\n193384|0.5\n193385|0.52778\n193386|0.70833\n193387|0.5\n193388|0.45833\n193389|0.40278\n193390|0.5\n193391|0.56944\n193392|0.51389\n193393|0.58333\n193394|0.47222\n193395|0.375\n193396|0.26389\n193397|0.48611\n193398|0.27778\n193399|0.63889\n193400|0.43056\n193401|0.44444\n193402|0.18056\n193403|0.5\n193404|0.33333\n193405|0.36111\n193406|0.59722\n193407|0.25\n193408|0.48611\n193409|0.125\n193410|0.23611\n193411|0.36111\n193412|0.125\n193413|0.13889\n193414|0.22222\n193415|0.54167\n193416|0.34722\n193417|0.38889\n193418|0.41667\n193419|0.15278\n193420|0.33333\n193421|0.26389\n193422|0.25\n193423|0.31944\n193424|0.51389\n193425|0.5\n193426|0.59722\n193427|0.56944\n193428|0.56944\n193429|0.69444\n193430|0.31944\n193431|0.38889\n193432|0.45833\n193433|0.54167\n193434|0.63889\n193435|0.5\n193436|0.20833\n193437|0.44444\n193438|0.44444\n193439|0.23611\n193440|0.56944\n193441|0.34722\n193442|0.30556\n193443|0.027778\n193444|0.23611\n193445|0.5\n193446|0.18056\n193447|0.66667\n193448|0.625\n193449|0.58333\n193450|0.27778\n193451|0.18056\n193452|0.5\n193453|0.5\n193454|0.45833\n193455|0.38889\n193456|0.22222\n193457|0.27778\n193458|0.23611\n193459|0.63889\n193460|0.70833\n193461|0.5\n193462|0.5\n193463|0.54167\n193464|0.77778\n193465|0.75\n193466|0.81944\n193467|0.59722\n193468|0.65278\n193469|0.34722\n193470|0.33333\n193471|0.25\n193472|0.23611\n193473|0.27778\n193474|0.45833\n193475|0.375\n193476|0.47222\n193477|0.375\n193478|0.47222\n193479|0.40278\n193480|0.55556\n193481|0.38889\n193482|0.48611\n193483|0.5\n193484|0.51389\n193485|0.5\n193486|0.26389\n193487|0.59722\n193488|0.47222\n193489|0.40278\n193490|0.38889\n193491|0.75\n193492|0.27778\n193493|0.5\n193494|0.52778\n193495|0.34722\n193496|0.5\n193497|0.48611\n193498|0.73611\n193499|0.54167\n193500|0.51389\n193501|0.44444\n193502|0.25\n193503|0.625\n193504|0.41667\n193505|0.5\n193506|0.5\n193507|0.20833\n193508|0.27778\n193509|0.34722\n193510|0.58333\n193511|0.38889\n193512|0.66667\n193513|0.29167\n193514|0.25\n193515|0.48611\n193516|0.51389\n193517|0.375\n193518|0.47222\n193519|0.47222\n193520|0.38889\n193521|0.5\n193522|0.48611\n193523|0.43056\n193524|0.097222\n193525|0.375\n193526|0.47222\n193527|0.41667\n193528|0.55556\n193529|0.44444\n193530|0.22222\n193531|0.52778\n193532|0.58333\n193533|0.55556\n193534|0.31944\n193535|0.5\n193536|0.58333\n193537|0.48611\n193538|0.27778\n193539|0.29167\n193540|0.25\n193541|0.66667\n193542|0.54167\n193543|0.68056\n193544|0.5\n193545|0.013889\n193546|0.069444\n193547|0.5\n193548|0.5\n193549|0.5\n193550|0.61111\n193551|0.16667\n193552|0.59722\n193553|0.33333\n193554|0.38889\n193555|0.29167\n193556|0.16667\n193557|0.29167\n193558|0.44444\n193559|0.63889\n193560|0.55556\n193561|0.45833\n193562|0.625\n193563|0.52778\n193564|0.48611\n193565|0.33333\n193566|0.625\n193567|0.29167\n193568|0.40278\n193569|0.27778\n193570|0.56944\n193571|0.5\n193572|0.55556\n193573|0.45833\n193574|0.83333\n193575|0.33333\n193576|0.18056\n193577|0.15278\n193578|0.31944\n193579|0.25\n193580|0.58333\n193581|0.54167\n193582|0.31944\n193583|0.66667\n193584|0.5\n193585|0.5\n193586|0.5\n193587|0.26389\n193588|0.5\n193589|0.5\n193590|0.36111\n193591|0.34722\n193592|0.5\n193593|0.52778\n193594|0.44444\n193595|0.22222\n193596|0.5\n193597|0.43056\n193598|0.58333\n193599|0.5\n193600|0.5\n193601|0.5\n193602|0.625\n193603|0.34722\n193604|0.40278\n193605|0.51389\n193606|0.48611\n193607|0.38889\n193608|0.18056\n193609|0.5\n193610|0.5\n193611|0.5\n193612|0.59722\n193613|0.33333\n193614|0.30556\n193615|0.26389\n193616|0.61111\n193617|0.5\n193618|0.5\n193619|0.54167\n193620|0.22222\n193621|0.52778\n193622|0.33333\n193623|0.31944\n193624|0.48611\n193625|0.36111\n193626|0.33333\n193627|0.55556\n193628|0.51389\n193629|0.54167\n193630|0.5\n193631|0.27778\n193632|0.16667\n193633|0.44444\n193634|0.31944\n193635|0.44444\n193636|0.43056\n193637|0.26389\n193638|0.5\n193639|0.16667\n193640|0.125\n193641|0.22222\n193642|0.44444\n193643|0.45833\n193644|0.58333\n193645|0.625\n193646|0.44444\n193647|0.22222\n193648|0.22222\n193649|0.70833\n193650|0.5\n193651|0.58333\n193652|0.43056\n193653|0.5\n193654|0.5\n193655|0.43056\n193656|0.44444\n193657|0.5\n193658|0.54167\n193659|0.30556\n193660|0.5\n193661|0.26389\n193662|0.23611\n193663|0.5\n193664|0.5\n193665|0.5\n193666|0.625\n193667|0.52778\n193668|0.51389\n193669|0.5\n193670|0.59722\n193671|0.52778\n193672|0.68056\n193673|0.5\n193674|0.22222\n193675|0.5\n193676|0.52778\n193677|0.52778\n193678|0.29167\n193679|0.48611\n193680|0.5\n193681|0.56944\n193682|0.58333\n193683|0.625\n193684|0.52778\n193685|0.5\n193686|0.52778\n193687|0.5\n193688|0.5\n193689|0.56944\n193690|0.38889\n193691|0.59722\n193692|0.5\n193693|0.58333\n193694|0.54167\n193695|0.61111\n193696|0.58333\n193697|0.5\n193698|0.40278\n193699|0.5\n193700|0.5\n193701|0.77778\n193702|0.52778\n193703|0.33333\n193704|0.18056\n193705|0.47222\n193706|0.51389\n193707|0.055556\n193708|0.25\n193709|0.5\n193710|0.41667\n193711|0.45833\n193712|0.51389\n193713|0.5\n193714|0.5\n193715|0.5\n193716|0.59722\n193717|0.44444\n193718|0.5\n193719|0.41667\n193720|0.5\n193721|0.31944\n193722|0.43056\n193723|0.56944\n193724|0.41667\n193725|0.5\n193726|0.5\n193727|0.38889\n193728|0.52778\n193729|0.40278\n193730|0.5\n193731|0.43056\n193732|0.36111\n193733|0.55556\n193734|0.52778\n193735|0.5\n193736|0.47222\n193737|0.72222\n193738|0.25\n193739|0.5\n193740|0.63889\n193741|0.5\n193742|0.48611\n193743|0.38889\n193744|0.47222\n193745|0.61111\n193746|0.5\n193747|0.44444\n193748|0.5\n193749|0.36111\n193750|0.44444\n193751|0.70833\n193752|0.61111\n193753|0.63889\n193754|0.69444\n193755|0.58333\n193756|0.52778\n193757|0.69444\n193758|0.58333\n193759|0.5\n193760|0.5\n193761|0.33333\n193762|0.20833\n193763|0.18056\n193764|0.15278\n193765|0.625\n193766|0.54167\n193767|0.65278\n193768|0.69444\n193769|0.51389\n193770|0.25\n193771|0.27778\n193772|0.5\n193773|0.5\n193774|0.33333\n193775|0.58333\n193776|0.5\n193777|0.5\n193778|0.65278\n193779|0.5\n193780|0.48611\n193781|0.48611\n193782|0.5\n193783|0.5\n193784|0.23611\n193785|0.48611\n193786|0.23611\n193787|0.51389\n193788|0.65278\n193789|0.5\n193790|0.27778\n193791|0.20833\n193792|0.5\n193793|0.5\n193794|0.5\n193795|0.36111\n193796|0.55556\n193797|0.72222\n193798|0.5\n193799|0.5\n193800|0.5\n193801|0.58333\n193802|0.5\n193803|0.44444\n193804|0.5\n193805|0.5\n193806|0.36111\n193807|0.66667\n193808|0.375\n193809|0.51389\n193810|0.5\n193811|0.58333\n193812|0.5\n193813|0.20833\n193814|0.5\n193815|0.44444\n193816|0.58333\n193817|0.5\n193818|0.5\n193819|0.36111\n193820|0.51389\n193821|0.5\n193822|0.27778\n193823|0.16667\n193824|0.23611\n193825|0\n193826|0.31944\n193827|0.5\n193828|0.43056\n193829|0.5\n193830|0.38889\n193831|0.38889\n193832|0.58333\n193833|0.5\n193834|0.48611\n193835|0.29167\n193836|0.5\n193837|0.375\n193838|0.34722\n193839|0.26389\n193840|0.34722\n193841|0.26389\n193842|0.38889\n193843|0.36111\n193844|0.48611\n193845|0.5\n193846|0.51389\n193847|0.54167\n193848|0.5\n193849|0.48611\n193850|0.5\n193851|0.79167\n193852|0.52778\n193853|0.66667\n193854|0.65278\n193855|0.43056\n193856|0.55556\n193857|0.55556\n193858|0.31944\n193859|0.77778\n193860|0.68056\n193861|0.73611\n193862|0.19444\n193863|0.38889\n193864|0.38889\n193865|0.38889\n193866|0.58333\n193867|0.47222\n193868|0.54167\n193869|0.5\n193870|0.51389\n193871|0.33333\n193872|0.38889\n193873|0.375\n193874|0.47222\n193875|0.38889\n193876|0.56944\n193877|0.27778\n193878|0.54167\n193879|0.63889\n193880|0.76389\n193881|0.055556\n193882|0.44444\n193883|0.44444\n193884|0.36111\n193885|0.36111\n193886|0.5\n193887|0.27778\n193888|0.29167\n193889|0.13889\n193890|0.15278\n193891|0.47222\n193892|0.22222\n193893|0.45833\n193894|0.56944\n193895|0.375\n193896|0\n193897|0.069444\n193898|0.083333\n193899|0.34722\n193900|0.29167\n193901|0.34722\n193902|0.31944\n193903|0.36111\n193904|0.29167\n193905|0.38889\n193906|0.51389\n193907|0.5\n193908|0\n193909|0.11111\n193910|0.5\n193911|0.27778\n193912|0.5\n193913|0.54167\n193914|0.5\n193915|0.5\n193916|0.375\n193917|0.51389\n193918|0.5\n193919|0.41667\n193920|0.36111\n193921|0.41667\n193922|0.44444\n193923|0.5\n193924|0.5\n193925|0.47222\n193926|0.44444\n193927|0.33333\n193928|0.083333\n193929|0.19444\n193930|0.13889\n193931|0.083333\n193932|0.11111\n193933|0.23611\n193934|0.30556\n193935|0.36111\n193936|0.27778\n193937|0.20833\n193938|0.5\n193939|0.15278\n193940|0.125\n193941|0.31944\n193942|0.31944\n193943|0.36111\n193944|0.18056\n193945|0.38889\n193946|0.625\n193947|0.36111\n193948|0.51389\n193949|0.23611\n193950|0.33333\n193951|0.20833\n193952|0.13889\n193953|0.20833\n193954|0.29167\n193955|0.27778\n193956|0.5\n193957|0.44444\n193958|0.30556\n193959|0.19444\n193960|0.36111\n193961|0.36111\n193962|0.069444\n193963|0.26389\n193964|0.26389\n193965|0.29167\n193966|0.23611\n193967|0.20833\n193968|0.16667\n193969|0.25\n193970|0.41667\n193971|0.625\n193972|0.29167\n193973|0.45833\n193974|0.30556\n193975|0.54167\n193976|0.61111\n193977|0.55556\n193978|0.43056\n193979|0.29167\n193980|0.375\n193981|0.5\n193982|0.69444\n193983|0.65278\n193984|0.5\n193985|0.31944\n193986|0.38889\n193987|0.16667\n193988|0.36111\n193989|0.51389\n193990|0.5\n193991|0.5\n193992|0.48611\n193993|0.59722\n193994|0.43056\n193995|0.43056\n193996|0.66667\n193997|0.625\n193998|0.38889\n193999|0.44444\n194000|0.26389\n194001|0.375\n194002|0.31944\n194003|0.38889\n194004|0.34722\n194005|0.36111\n194006|0.22222\n194007|0.40278\n194008|0.11111\n194009|0.19444\n194010|0.52778\n194011|0.5\n194012|0.5\n194013|0.5\n194014|0.55556\n194015|0.5\n194016|0.5\n194017|0.27778\n194018|0.5\n194019|0.45833\n194020|0.29167\n194021|0.47222\n194022|0.33333\n194023|0.44444\n194024|0.63889\n194025|0.45833\n194026|0.52778\n194027|0.51389\n194028|0.5\n194029|0.48611\n194030|0.48611\n194031|0.61111\n194032|0.68056\n194033|0.59722\n194034|0.625\n194035|0.56944\n194036|0.29167\n194037|0.58333\n194038|0.5\n194039|0.54167\n194040|0.5\n194041|0.5\n194042|0.58333\n194043|0.38889\n194044|0.61111\n194045|0.41667\n194046|0.23611\n194047|0.48611\n194048|0.45833\n194049|0.51389\n194050|0.31944\n194051|0.31944\n194052|0.125\n194053|0.45833\n194054|0.51389\n194055|0.15278\n194056|0.34722\n194057|0.5\n194058|0.55556\n194059|0.55556\n194060|0.43056\n194061|0.38889\n194062|0.44444\n194063|0.23611\n194064|0.34722\n194065|0.40278\n194066|0.51389\n194067|0.52778\n194068|0.25\n194069|0.55556\n194070|0.43056\n194071|0.69444\n194072|0.52778\n194073|0.5\n194074|0.48611\n194075|0.5\n194076|0.38889\n194077|0.61111\n194078|0.48611\n194079|0.34722\n194080|0.56944\n194081|0.72222\n194082|0.33333\n194083|0.23611\n194084|0.23611\n194085|0.20833\n194086|0.72222\n194087|0.56944\n194088|0.26389\n194089|0.59722\n194090|0.23611\n194091|0.27778\n194092|0.40278\n194093|0.43056\n194094|0.29167\n194095|0.33333\n194096|0.43056\n194097|0.63889\n194098|0.41667\n194099|0.625\n194100|0.48611\n194101|0.54167\n194102|0.58333\n194103|0.38889\n194104|0.44444\n194105|0.55556\n194106|0.40278\n194107|0.31944\n194108|0.73611\n194109|0.41667\n194110|0.31944\n194111|0.44444\n194112|0.20833\n194113|0.19444\n194114|0.41667\n194115|0.59722\n194116|0.54167\n194117|0.59722\n194118|0.29167\n194119|0.5\n194120|0.61111\n194121|0.51389\n194122|0.59722\n194123|0.41667\n194124|0.38889\n194125|0.41667\n194126|0.44444\n194127|0.52778\n194128|0.52778\n194129|0.65278\n194130|0.5\n194131|0.34722\n194132|0.125\n194133|0.375\n194134|0.55556\n194135|0.16667\n194136|0.27778\n194137|0.16667\n194138|0.75\n194139|0.47222\n194140|0.44444\n194141|0.30556\n194142|0.625\n194143|0.40278\n194144|0.20833\n194145|0.40278\n194146|0.23611\n194147|0.58333\n194148|0.5\n194149|0.5\n194150|0.47222\n194151|0.80556\n194152|0.63889\n194153|0.75\n194154|0.5\n194155|0.43056\n194156|0.5\n194157|0.65278\n194158|0.40278\n194159|0.31944\n194160|0.20833\n194161|0.52778\n194162|0.625\n194163|0.36111\n194164|0.5\n194165|0.88889\n194166|0.25\n194167|0.47222\n194168|0.097222\n194169|0.26389\n194170|0.56944\n194171|0.55556\n194172|0.59722\n194173|0.83333\n194174|0.54167\n194175|0.52778\n194176|0.55556\n194177|0.72222\n194178|0.5\n194179|0.43056\n194180|0.65278\n194181|0.48611\n194182|0.70833\n194183|0.36111\n194184|0.61111\n194185|0.23611\n194186|0.51389\n194187|0.41667\n194188|0.80556\n194189|0.41667\n194190|0.48611\n194191|0.31944\n194192|0.625\n194193|0.75\n194194|0.44444\n194195|0.31944\n194196|0.44444\n194197|0.54167\n194198|0.58333\n194199|0.54167\n194200|0.15278\n194201|0.40278\n194202|0.80556\n194203|0.5\n194204|0.66667\n194205|0.44444\n194206|0.33333\n194207|0.51389\n194208|0.375\n194209|0.59722\n194210|0.45833\n194211|0.36111\n194212|0.19444\n194213|0.41667\n194214|0.5\n194215|0.54167\n194216|0.41667\n194217|0.55556\n194218|0.38889\n194219|0.375\n194220|0.36111\n194221|0.20833\n194222|0.51389\n194223|0.70833\n194224|0.29167\n194225|0.5\n194226|0.59722\n194227|0.5\n194228|0.5\n194229|0.5\n194230|0.70833\n194231|0.36111\n194232|0.30556\n194233|0.41667\n194234|0.34722\n194235|0.34722\n194236|0.44444\n194237|0.31944\n194238|0.38889\n194239|0.41667\n194240|0.45833\n194241|0.59722\n194242|0.47222\n194243|0.5\n194244|0.56944\n194245|0.80556\n194246|0.58333\n194247|0.76389\n194248|0.56944\n194249|0.76389\n194250|0.77778\n194251|0.65278\n194252|0.5\n194253|0.44444\n194254|0.30556\n194255|0.31944\n194256|0.38889\n194257|0.44444\n194258|0.5\n194259|0.16667\n194260|0.5\n194261|0.34722\n194262|0.22222\n194263|0.65278\n194264|0.59722\n194265|0.52778\n194266|0.375\n194267|0.5\n194268|0.33333\n194269|0.43056\n194270|0.375\n194271|0.38889\n194272|0.30556\n194273|0.40278\n194274|0.54167\n194275|0.30556\n194276|0.40278\n194277|0.34722\n194278|0.59722\n194279|0.38889\n194280|0.38889\n194281|0.52778\n194282|0.15278\n194283|0.68056\n194284|0.69444\n194285|0.47222\n194286|0.58333\n194287|0.41667\n194288|0.19444\n194289|0.30556\n194290|0.47222\n194291|0.55556\n194292|0.61111\n194293|0.55556\n194294|0.5\n194295|0.51389\n194296|0.34722\n194297|0.34722\n194298|0.5\n194299|0.36111\n194300|0.22222\n194301|0.22222\n194302|0.43056\n194303|0.44444\n194304|0.44444\n194305|0.33333\n194306|0.38889\n194307|0.20833\n194308|0.34722\n194309|0.47222\n194310|0.16667\n194311|0.27778\n194312|0.23611\n194313|0.25\n194314|0.44444\n194315|0.38889\n194316|0.56944\n194317|0.33333\n194318|0.20833\n194319|0.30556\n194320|0.375\n194321|0.097222\n194322|0.27778\n194323|0.5\n194324|0.47222\n194325|0.45833\n194326|0.23611\n194327|0.5\n194328|0.43056\n194329|0.5\n194330|0.29167\n194331|0.5\n194332|0.29167\n194333|0.61111\n194334|0.55556\n194335|0.52778\n194336|0.36111\n194337|0.25\n194338|0.61111\n194339|0.38889\n194340|0.44444\n194341|0.5\n194342|0.44444\n194343|0.59722\n194344|0.38889\n194345|0.5\n194346|0.375\n194347|0.54167\n194348|0.83333\n194349|0.25\n194350|0.097222\n194351|0.47222\n194352|0.15278\n194353|0.36111\n194354|0.45833\n194355|0.59722\n194356|0.43056\n194357|0.23611\n194358|0.31944\n194359|0.36111\n194360|0.47222\n194361|0.55556\n194362|0.375\n194363|0.23611\n194364|0.48611\n194365|0.27778\n194366|0.38889\n194367|0.44444\n194368|0.27778\n194369|0.44444\n194370|0.47222\n194371|0.33333\n194372|0.54167\n194373|0.61111\n194374|0.45833\n194375|0.52778\n194376|0.41667\n194377|0.30556\n194378|0.29167\n194379|0.38889\n194380|0.44444\n194381|0.36111\n194382|0.41667\n194383|0.38889\n194384|0.19444\n194385|0.36111\n194386|0.25\n194387|0.34722\n194388|0.22222\n194389|0.48611\n194390|0.59722\n194391|0.48611\n194392|0.30556\n194393|0.5\n194394|0.5\n194395|0.65278\n194396|0.5\n194397|0.27778\n194398|0.375\n194399|0.31944\n194400|0.52778\n194401|0.5\n194402|0.22222\n194403|0.5\n194404|0.47222\n194405|0.54167\n194406|0.5\n194407|0.5\n194408|0.5\n194409|0.69444\n194410|0.77778\n194411|0.29167\n194412|0.43056\n194413|0.36111\n194414|0.44444\n194415|0.47222\n194416|0.43056\n194417|0.069444\n194418|0.36111\n194419|0.61111\n194420|0.5\n194421|0.5\n194422|0.5\n194423|0.48611\n194424|0.5\n194425|0.25\n194426|0.54167\n194427|0.45833\n194428|0.51389\n194429|0.5\n194430|0.5\n194431|0.5\n194432|0.40278\n194433|0.5\n194434|0.31944\n194435|0.375\n194436|0.375\n194437|0.22222\n194438|0.56944\n194439|0.27778\n194440|0.34722\n194441|0.30556\n194442|0.16667\n194443|0.30556\n194444|0.48611\n194445|0.25\n194446|0.55556\n194447|0.56944\n194448|0.44444\n194449|0.26389\n194450|0.30556\n194451|0.5\n194452|0.5\n194453|0.38889\n194454|0.5\n194455|0.5\n194456|0.45833\n194457|0.5\n194458|0.44444\n194459|0.5\n194460|0.69444\n194461|0.5\n194462|0.47222\n194463|0.625\n194464|0.22222\n194465|0.5\n194466|0.625\n194467|0\n194468|0.36111\n194469|0.5\n194470|0.43056\n194471|0.375\n194472|0.38889\n194473|0.069444\n194474|0.38889\n194475|0.5\n194476|0.48611\n194477|0.51389\n194478|0.61111\n194479|0.66667\n194480|0.38889\n194481|0.68056\n194482|0.61111\n194483|0.63889\n194484|0.48611\n194485|0.36111\n194486|0.375\n194487|0.5\n194488|0.38889\n194489|0.65278\n194490|0.40278\n194491|0.27778\n194492|0.33333\n194493|0.40278\n194494|0.34722\n194495|0.44444\n194496|0.5\n194497|0.66667\n194498|0.52778\n194499|0.75\n194500|0.34722\n194501|0.13889\n194502|0.34722\n194503|0.34722\n194504|0.59722\n194505|0.41667\n194506|0.40278\n194507|0.22222\n194508|0.625\n194509|0.73611\n194510|0.40278\n194511|0.66667\n194512|0.5\n194513|0.63889\n194514|0.5\n194515|0.41667\n194516|0.54167\n194517|0.59722\n194518|0.59722\n194519|0.5\n194520|0.52778\n194521|0.77778\n194522|0.54167\n194523|0.51389\n194524|0.25\n194525|0.19444\n194526|0.69444\n194527|0.41667\n194528|0.91667\n194529|0.90278\n194530|0.79167\n194531|0.76389\n194532|0.63889\n194533|0.72222\n194534|0.27778\n194535|0.66667\n194536|0.61111\n194537|0.73611\n194538|0.83333\n194539|0.47222\n194540|0.59722\n194541|0.375\n194542|0.61111\n194543|0.56944\n194544|0.69444\n194545|0.58333\n194546|0.5\n194547|0.55556\n194548|0.52778\n194549|0.58333\n194550|0.51389\n194551|0.43056\n194552|0.33333\n194553|0.56944\n194554|0.68056\n194555|0.56944\n194556|0.41667\n194557|0.625\n194558|0.23611\n194559|0.61111\n194560|0.72222\n194561|0.65278\n194562|0.45833\n194563|0.33333\n194564|0.58333\n194565|0.625\n194566|0.47222\n194567|0.51389\n194568|0.56944\n194569|0.45833\n194570|0.52778\n194571|0.69444\n194572|0.27778\n194573|0.45833\n194574|0.61111\n194575|0.59722\n194576|0.63889\n194577|0.48611\n194578|0.33333\n194579|0.41667\n194580|0.56944\n194581|0.44444\n194582|0.26389\n194583|0.25\n194584|0.20833\n194585|0.52778\n194586|0.61111\n194587|0.70833\n194588|0.44444\n194589|0.54167\n194590|0.44444\n194591|0.5\n194592|0.36111\n194593|0.58333\n194594|0.41667\n194595|0.5\n194596|0.51389\n194597|0.5\n194598|0.59722\n194599|0.59722\n194600|0.61111\n194601|0.44444\n194602|0.375\n194603|0.25\n194604|0.625\n194605|0.45833\n194606|0.45833\n194607|0.43056\n194608|0.15278\n194609|0.61111\n194610|0.5\n194611|0.51389\n194612|0.5\n194613|0.52778\n194614|0.52778\n194615|0.31944\n194616|0.43056\n194617|0.38889\n194618|0.48611\n194619|0.5\n194620|0.58333\n194621|0.34722\n194622|0.5\n194623|0.52778\n194624|0.51389\n194625|0.33333\n194626|0.31944\n194627|0.29167\n194628|0.56944\n194629|0.65278\n194630|0.41667\n194631|0.47222\n194632|0.5\n194633|0.52778\n194634|0.5\n194635|0.5\n194636|0.33333\n194637|0.61111\n194638|0.54167\n194639|0.5\n194640|0.5\n194641|0.52778\n194642|1\n194643|0.63889\n194644|0.79167\n194645|0.5\n194646|0.43056\n194647|0.61111\n194648|0.52778\n194649|0.5\n194650|0.5\n194651|0.52778\n194652|0.5\n194653|0.58333\n194654|0.5\n194655|0.58333\n194656|0.5\n194657|0.13889\n194658|0.5\n194659|0.33333\n194660|0.5\n194661|0.5\n194662|0.5\n194663|0.625\n194664|0.61111\n194665|0.5\n194666|0.5\n194667|0.44444\n194668|0.5\n194669|0.51389\n194670|0.33333\n194671|0.45833\n194672|0.43056\n194673|0.56944\n194674|0.59722\n194675|0.40278\n194676|0.5\n194677|0.23611\n194678|0.34722\n194679|0.45833\n194680|0.31944\n194681|0.30556\n194682|0.38889\n194683|0.33333\n194684|0.63889\n194685|0.27778\n194686|0.44444\n194687|0.41667\n194688|0.375\n194689|0.5\n194690|0.61111\n194691|0.45833\n194692|0.44444\n194693|0.38889\n194694|0.47222\n194695|0.5\n194696|0.375\n194697|0.43056\n194698|0.23611\n194699|0.125\n194700|0.23611\n194701|0.23611\n194702|0.30556\n194703|0.43056\n194704|0.375\n194705|0.5\n194706|0.51389\n194707|0.33333\n194708|0.47222\n194709|0.41667\n194710|0.097222\n194711|0.25\n194712|0.44444\n194713|0.31944\n194714|0.63889\n194715|0.11111\n194716|0.5\n194717|0.13889\n194718|0.51389\n194719|0.66667\n194720|0.77778\n194721|0.5\n194722|0.45833\n194723|0.51389\n194724|0.5\n194725|0.5\n194726|0.5\n194727|0.34722\n194728|0.22222\n194729|0.25\n194730|0.38889\n194731|0.5\n194732|0.66667\n194733|0.5\n194734|0.48611\n194735|0.5\n194736|0.40278\n194737|0.45833\n194738|0.36111\n194739|0.44444\n194740|0.61111\n194741|0.44444\n194742|0.44444\n194743|0.5\n194744|0.48611\n194745|0.34722\n194746|0.5\n194747|0.47222\n194748|0.41667\n194749|0.43056\n194750|0.41667\n194751|0.59722\n194752|0.51389\n194753|0.38889\n194754|0.34722\n194755|0.31944\n194756|0.38889\n194757|0.5\n194758|0.5\n194759|0.80556\n194760|0.69444\n194761|0.65278\n194762|0.54167\n194763|0.5\n194764|0.5\n194765|0.54167\n194766|0.36111\n194767|0.52778\n194768|0.5\n194769|0.41667\n194770|0.20833\n194771|0.5\n194772|0.375\n194773|0.27778\n194774|0.27778\n194775|0.36111\n194776|0.26389\n194777|0.19444\n194778|0.26389\n194779|0.18056\n194780|0.27778\n194781|0.23611\n194782|0.26389\n194783|0.41667\n194784|0.30556\n194785|0.5\n194786|0.22222\n194787|0.47222\n194788|0.51389\n194789|0.5\n194790|0.30556\n194791|0.51389\n194792|0.40278\n194793|0.38889\n194794|0.375\n194795|0.125\n194796|0.69444\n194797|0.65278\n194798|0.19444\n194799|0.44444\n194800|0.33333\n194801|0.29167\n194802|0.59722\n194803|0.68056\n194804|0.36111\n194805|0.55556\n194806|0.5\n194807|0.34722\n194808|0.44444\n194809|0.5\n194810|0.61111\n194811|0.5\n194812|0.26389\n194813|0.20833\n194814|0.44444\n194815|0.59722\n194816|0.5\n194817|0.19444\n194818|0.34722\n194819|0.44444\n194820|0.63889\n194821|0.63889\n194822|0.20833\n194823|0.18056\n194824|0.38889\n194825|0.34722\n194826|0.19444\n194827|0.15278\n194828|0.29167\n194829|0.13889\n194830|0.055556\n194831|0.13889\n194832|0.36111\n194833|0.19444\n194834|0.34722\n194835|0.34722\n194836|0.5\n194837|0.23611\n194838|0.11111\n194839|0.33333\n194840|0.16667\n194841|0.22222\n194842|0.31944\n194843|0.23611\n194844|0.22222\n194845|0.5\n194846|0.52778\n194847|0.5\n194848|0.45833\n194849|0.27778\n194850|0.5\n194851|0.30556\n194852|0.76389\n194853|0.65278\n194854|0.27778\n194855|0.55556\n194856|0.54167\n194857|0.54167\n194858|0.59722\n194859|0.55556\n194860|0.5\n194861|0.5\n194862|0.36111\n194863|0.52778\n194864|0.36111\n194865|0.22222\n194866|0.5\n194867|0.44444\n194868|0.5\n194869|0.55556\n194870|0.5\n194871|0.55556\n194872|0.51389\n194873|0.5\n194874|0.31944\n194875|0.16667\n194876|0.16667\n194877|0.56944\n194878|0.59722\n194879|0.15278\n194880|0.34722\n194881|0.19444\n194882|0.29167\n194883|0.45833\n194884|0.43056\n194885|0.26389\n194886|0.38889\n194887|0.375\n194888|0.5\n194889|0.51389\n194890|0.23611\n194891|0.13889\n194892|0.26389\n194893|0.52778\n194894|0.31944\n194895|0.43056\n194896|0.125\n194897|0.52778\n194898|0.61111\n194899|0.5\n194900|0.5\n194901|0.40278\n194902|0.69444\n194903|0.5\n194904|0.61111\n194905|0.5\n194906|0.5\n194907|0.30556\n194908|0.52778\n194909|0.51389\n194910|0.51389\n194911|0.23611\n194912|0.55556\n194913|0.48611\n194914|0.59722\n194915|0.51389\n194916|0.34722\n194917|0.61111\n194918|0.27778\n194919|0.5\n194920|0.63889\n194921|0.41667\n194922|0.72222\n194923|0.48611\n194924|0.52778\n194925|0.58333\n194926|0.55556\n194927|0.19444\n194928|0.48611\n194929|0.48611\n194930|0.66667\n194931|0.5\n194932|0.5\n194933|0.5\n194934|0.55556\n194935|0.44444\n194936|0.18056\n194937|0.23611\n194938|0.25\n194939|0.25\n194940|0.40278\n194941|0.44444\n194942|0.26389\n194943|0.68056\n194944|0.66667\n194945|0.52778\n194946|0.61111\n194947|0.66667\n194948|0.48611\n194949|0.79167\n194950|0.875\n194951|0.5\n194952|0.88889\n194953|0.93056\n194954|0.63889\n194955|0.54167\n194956|0.5\n194957|0.52778\n194958|0.61111\n194959|0.5\n194960|0.61111\n194961|0.47222\n194962|0.30556\n194963|0.58333\n194964|0.58333\n194965|0.47222\n194966|0.5\n194967|0.44444\n194968|0.52778\n194969|0.59722\n194970|0.61111\n194971|0.41667\n194972|0.5\n194973|0.5\n194974|0.5\n194975|0.48611\n194976|0.29167\n194977|0.54167\n194978|0.29167\n194979|0.22222\n194980|0.083333\n194981|0.5\n194982|0.54167\n194983|0.72222\n194984|0.61111\n194985|0.54167\n194986|0.36111\n194987|0.61111\n194988|0.68056\n194989|0.61111\n194990|0.63889\n194991|0.5\n194992|0.5\n194993|0.44444\n194994|0.56944\n194995|0.44444\n194996|0.30556\n194997|0.27778\n194998|0.68056\n194999|0.5\n195000|0.5\n195001|0.5\n195002|0.5\n195003|0.5\n195004|0.38889\n195005|0.26389\n195006|0.47222\n195007|0.375\n195008|0.29167\n195009|0.013889\n195010|0.13889\n195011|0.47222\n195012|0.34722\n195013|0.55556\n195014|0.5\n195015|0.5\n195016|0.41667\n195017|0.44444\n195018|0.51389\n195019|0.5\n195020|0.38889\n195021|0.43056\n195022|0.44444\n195023|0.5\n195024|0.51389\n195025|0.40278\n195026|0.66667\n195027|0.44444\n195028|0.58333\n195029|0.65278\n195030|0.47222\n195031|0.5\n195032|0.47222\n195033|0.5\n195034|0.34722\n195035|0.5\n195036|0.65278\n195037|0.625\n195038|0.36111\n195039|0.25\n195040|0.48611\n195041|0.44444\n195042|0.25\n195043|0.20833\n195044|0.36111\n195045|0.31944\n195046|0.20833\n195047|0.30556\n195048|0.31944\n195049|0.30556\n195050|0.36111\n195051|0.69444\n195052|0.34722\n195053|0.625\n195054|0.63889\n195055|0.25\n195056|0.19444\n195057|0.34722\n195058|0.45833\n195059|0.55556\n195060|0.33333\n195061|0.55556\n195062|0.55556\n195063|0.5\n195064|0.34722\n195065|0.55556\n195066|0.38889\n195067|0.5\n195068|0.61111\n195069|0.59722\n195070|0.625\n195071|0.63889\n195072|0.66667\n195073|0.41667\n195074|0.72222\n195075|0.47222\n195076|0.29167\n195077|0.36111\n195078|0.23611\n195079|0.70833\n195080|0.31944\n195081|0.5\n195082|0.45833\n195083|0.11111\n195084|0.34722\n195085|0.375\n195086|0.55556\n195087|0.5\n195088|0.44444\n195089|0.66667\n195090|0.5\n195091|0.5\n195092|0.84722\n195093|0.19444\n195094|0.5\n195095|0.5\n195096|0.58333\n195097|0.43056\n195098|0.52778\n195099|0.5\n195100|0.59722\n195101|0.5\n195102|0.66667\n195103|0.52778\n195104|0.5\n195105|0.625\n195106|0.375\n195107|0.48611\n195108|0.61111\n195109|0.5\n195110|0.48611\n195111|0.5\n195112|0.76389\n195113|0.5\n195114|0.38889\n195115|0.22222\n195116|0.625\n195117|0.55556\n195118|0.5\n195119|0.20833\n195120|0.5\n195121|0.61111\n195122|0.25\n195123|0.47222\n195124|0.34722\n195125|0.23611\n195126|0.48611\n195127|0.33333\n195128|0.22222\n195129|0.16667\n195130|0.29167\n195131|0.30556\n195132|0.25\n195133|0.33333\n195134|0.44444\n195135|0.51389\n195136|0.38889\n195137|0.43056\n195138|0.625\n195139|0.27778\n195140|0.5\n195141|0.43056\n195142|0.5\n195143|0.44444\n195144|0.5\n195145|0.41667\n195146|0.5\n195147|0.5\n195148|0.45833\n195149|0.22222\n195150|0.56944\n195151|0.47222\n195152|0.22222\n195153|0.27778\n195154|0.36111\n195155|0.41667\n195156|0.45833\n195157|0.5\n195158|0.29167\n195159|0.47222\n195160|0.38889\n195161|0.5\n195162|0.51389\n195163|0.27778\n195164|0.38889\n195165|0.44444\n195166|0.5\n195167|0.41667\n195168|0.44444\n195169|0.27778\n195170|0.33333\n195171|0.5\n195172|0.5\n195173|0.30556\n195174|0.19444\n195175|0.45833\n195176|0.48611\n195177|0.5\n195178|0.65278\n195179|0.16667\n195180|0.5\n195181|0.27778\n195182|0.55556\n195183|0.23611\n195184|0.5\n195185|0.5\n195186|0.30556\n195187|0.27778\n195188|0.25\n195189|0.19444\n195190|0.5\n195191|0.16667\n195192|0.375\n195193|0.45833\n195194|0.20833\n195195|0.16667\n195196|0.38889\n195197|0.38889\n195198|0.30556\n195199|0.33333\n195200|0.5\n195201|0.31944\n195202|0.23611\n195203|0.5\n195204|0.5\n195205|0.33333\n195206|0.5\n195207|0.5\n195208|0.15278\n195209|0.5\n195210|0.44444\n195211|0.55556\n195212|0.20833\n195213|0.44444\n195214|0.5\n195215|0.44444\n195216|0.375\n195217|0.70833\n195218|0.52778\n195219|0.52778\n195220|0.38889\n195221|0.22222\n195222|0.52778\n195223|0.18056\n195224|0.25\n195225|0.5\n195226|0.47222\n195227|0.61111\n195228|0.48611\n195229|0.31944\n195230|0.36111\n195231|0.69444\n195232|0.5\n195233|0.29167\n195234|0.5\n195235|0.5\n195236|0.5\n195237|0.27778\n195238|0.31944\n195239|0.54167\n195240|0.41667\n195241|0.54167\n195242|0.41667\n195243|0.75\n195244|0.44444\n195245|0.27778\n195246|0.40278\n195247|0.22222\n195248|0.5\n195249|0.5\n195250|0.44444\n195251|0.5\n195252|0.083333\n195253|0.16667\n195254|0.40278\n195255|0.15278\n195256|0.20833\n195257|0.65278\n195258|0.36111\n195259|0.27778\n195260|0.38889\n195261|0.27778\n195262|0.44444\n195263|0.5\n195264|0.61111\n195265|0.34722\n195266|0.22222\n195267|0.44444\n195268|0.13889\n195269|0.5\n195270|0.34722\n195271|0.5\n195272|0.33333\n195273|0.16667\n195274|0.30556\n195275|0.20833\n195276|0.16667\n195277|0.84722\n195278|0.375\n195279|0.23611\n195280|0.31944\n195281|0.30556\n195282|0.29167\n195283|0.5\n195284|0.48611\n195285|0.125\n195286|0.44444\n195287|0.36111\n195288|0.45833\n195289|0.375\n195290|0.36111\n195291|0.5\n195292|0.40278\n195293|0.47222\n195294|0.54167\n195295|0.5\n195296|0.27778\n195297|0.625\n195298|0.55556\n195299|0.61111\n195300|0.5\n195301|0.5\n195302|0.55556\n195303|0.68056\n195304|0.5\n195305|0.45833\n195306|0.5\n195307|0.43056\n195308|0.43056\n195309|0.5\n195310|0.22222\n195311|0.5\n195312|0.54167\n195313|0.5\n195314|0.70833\n195315|0.80556\n195316|0.56944\n195317|0.45833\n195318|0.40278\n195319|0.5\n195320|0.5\n195321|0.33333\n195322|0.5\n195323|0.375\n195324|0.55556\n195325|0.875\n195326|0.30556\n195327|0.72222\n195328|0.30556\n195329|0.31944\n195330|0.22222\n195331|0.54167\n195332|0.5\n195333|0.5\n195334|0.63889\n195335|0.5\n195336|0.5\n195337|0.5\n195338|0.55556\n195339|0.25\n195340|0.47222\n195341|0.44444\n195342|0.41667\n195343|0.23611\n195344|0.43056\n195345|0.083333\n195346|0.055556\n195347|0.33333\n195348|0.625\n195349|0.61111\n195350|0.25\n195351|0.625\n195352|0.18056\n195353|0.16667\n195354|0.29167\n195355|0.65278\n195356|0.44444\n195357|0.16667\n195358|0.30556\n195359|0.54167\n195360|0.30556\n195361|0.5\n195362|0.55556\n195363|0.54167\n195364|0.22222\n195365|0.38889\n195366|0.27778\n195367|0.5\n195368|0.52778\n195369|0.36111\n195370|0.33333\n195371|0.51389\n195372|0.5\n195373|0.52778\n195374|0.44444\n195375|0.44444\n195376|0.11111\n195377|0.56944\n195378|0.625\n195379|0.5\n195380|0.25\n195381|0.45833\n195382|0.40278\n195383|0.66667\n195384|0.5\n195385|0.34722\n195386|0.26389\n195387|0.31944\n195388|0.45833\n195389|0.22222\n195390|0.38889\n195391|0.34722\n195392|0.23611\n195393|0.5\n195394|0.43056\n195395|0.56944\n195396|0.29167\n195397|0.33333\n195398|0.36111\n195399|0.45833\n195400|0.36111\n195401|0.33333\n195402|0.45833\n195403|0.375\n195404|0.41667\n195405|0.30556\n195406|0.27778\n195407|0.58333\n195408|0.5\n195409|0.27778\n195410|0.22222\n195411|0.66667\n195412|0.51389\n195413|0.30556\n195414|0.33333\n195415|0.38889\n195416|0.5\n195417|0.51389\n195418|0.54167\n195419|0.31944\n195420|0.33333\n195421|0.47222\n195422|0.44444\n195423|0.48611\n195424|0.34722\n195425|0.29167\n195426|0.15278\n195427|0.40278\n195428|0.5\n195429|0.5\n195430|0.41667\n195431|0.29167\n195432|0.5\n195433|0.51389\n195434|0.47222\n195435|0.13889\n195436|0.58333\n195437|0.52778\n195438|0.5\n195439|0.56944\n195440|0.70833\n195441|0.61111\n195442|0.56944\n195443|0.44444\n195444|0.55556\n195445|0.69444\n195446|0.33333\n195447|0.59722\n195448|0.23611\n195449|0.5\n195450|0.59722\n195451|0.61111\n195452|0.45833\n195453|0.47222\n195454|0.41667\n195455|0.20833\n195456|0.5\n195457|0.15278\n195458|0.38889\n195459|0.41667\n195460|0.29167\n195461|0.51389\n195462|0.25\n195463|0.23611\n195464|0.069444\n195465|0.5\n195466|0.76389\n195467|0.55556\n195468|0.69444\n195469|0.27778\n195470|0.47222\n195471|0.36111\n195472|0.48611\n195473|0.31944\n195474|0.18056\n195475|0.5\n195476|0.52778\n195477|0.5\n195478|0.5\n195479|0.625\n195480|0.43056\n195481|0.44444\n195482|0.22222\n195483|0.18056\n195484|0.5\n195485|0.25\n195486|0.27778\n195487|0.18056\n195488|0.61111\n195489|0.61111\n195490|0.56944\n195491|0.55556\n195492|0.5\n195493|0.625\n195494|0.31944\n195495|0.40278\n195496|0.61111\n195497|0.55556\n195498|0.45833\n195499|0.40278\n195500|0.56944\n195501|0.27778\n195502|0.5\n195503|0.51389\n195504|0.5\n195505|0.43056\n195506|0.36111\n195507|0.79167\n195508|0.73611\n195509|0.5\n195510|0.31944\n195511|0.29167\n195512|0.5\n195513|0.27778\n195514|0.58333\n195515|0.83333\n195516|0.66667\n195517|0.68056\n195518|0.51389\n195519|0.43056\n195520|0.51389\n195521|0.55556\n195522|0.5\n195523|0.40278\n195524|0.47222\n195525|0.31944\n195526|0.27778\n195527|0.47222\n195528|0.5\n195529|0.69444\n195530|0.25\n195531|0.22222\n195532|0.5\n195533|0.52778\n195534|0.22222\n195535|0.375\n195536|0.625\n195537|0.56944\n195538|0.69444\n195539|0.44444\n195540|0.58333\n195541|0.63889\n195542|0.5\n195543|0.55556\n195544|0.5\n195545|0.5\n195546|0.51389\n195547|0.38889\n195548|0.54167\n195549|0.5\n195550|0.44444\n195551|0.48611\n195552|0.5\n195553|0.5\n195554|0.47222\n195555|0.5\n195556|0.45833\n195557|0.44444\n195558|0.55556\n195559|0.5\n195560|0.5\n195561|0.75\n195562|0.66667\n195563|0.625\n195564|0.26389\n195565|0.31944\n195566|0.48611\n195567|0.5\n195568|0.15278\n195569|0.5\n195570|0.5\n195571|0.5\n195572|0.43056\n195573|0.31944\n195574|0.59722\n195575|0.20833\n195576|0.38889\n195577|0.63889\n195578|0.23611\n195579|0.5\n195580|0.30556\n195581|0.5\n195582|0.66667\n195583|0.33333\n195584|0.38889\n195585|0.36111\n195586|0.22222\n195587|0.58333\n195588|0.5\n195589|0.45833\n195590|0.40278\n195591|0.40278\n195592|0.43056\n195593|0.5\n195594|0.5\n195595|0.54167\n195596|0.5\n195597|0.65278\n195598|0.63889\n195599|0.33333\n195600|0.19444\n195601|0.5\n195602|0.58333\n195603|0.55556\n195604|0.27778\n195605|0.5\n195606|0.5\n195607|0.36111\n195608|0.29167\n195609|0.5\n195610|0.33333\n195611|0.34722\n195612|0.58333\n195613|0.47222\n195614|0.63889\n195615|0.625\n195616|0.29167\n195617|0.55556\n195618|0.63889\n195619|0.27778\n195620|0.72222\n195621|0.5\n195622|0.54167\n195623|0.25\n195624|0.13889\n195625|0.041667\n195626|0.25\n195627|0.23611\n195628|0.31944\n195629|0.36111\n195630|0.31944\n195631|0.27778\n195632|0.26389\n195633|0.47222\n195634|0.33333\n195635|0.45833\n195636|0.5\n195637|0.30556\n195638|0.34722\n195639|0.625\n195640|0.58333\n195641|0.43056\n195642|0.30556\n195643|0.27778\n195644|0.25\n195645|0.27778\n195646|0.19444\n195647|0.15278\n195648|0.16667\n195649|0.097222\n195650|0.63889\n195651|0.73611\n195652|0.27778\n195653|0.75\n195654|0.5\n195655|0.43056\n195656|0.51389\n195657|0.51389\n195658|0.27778\n195659|0.18056\n195660|0.45833\n195661|0.68056\n195662|0.5\n195663|0.38889\n195664|0.34722\n195665|0.79167\n195666|0.31944\n195667|0.31944\n195668|0.5\n195669|0.47222\n195670|0.5\n195671|0.48611\n195672|0.48611\n195673|0.34722\n195674|0.26389\n195675|0.22222\n195676|0.16667\n195677|0.45833\n195678|0.23611\n195679|0.25\n195680|0.33333\n195681|0.51389\n195682|0.375\n195683|0.15278\n195684|0.66667\n195685|0.58333\n195686|0.5\n195687|0.51389\n195688|0.36111\n195689|0.41667\n195690|0.30556\n195691|0.5\n195692|0.40278\n195693|0.5\n195694|0.75\n195695|0.55556\n195696|0.51389\n195697|0.58333\n195698|0.65278\n195699|0.56944\n195700|0.43056\n195701|0.66667\n195702|0.16667\n195703|0.44444\n195704|0.22222\n195705|0.72222\n195706|0.66667\n195707|0.77778\n195708|0.73611\n195709|0.69444\n195710|0.48611\n195711|0.5\n195712|0.52778\n195713|0.55556\n195714|0.5\n195715|0.44444\n195716|0.48611\n195717|0.41667\n195718|0.5\n195719|0.45833\n195720|0.5\n195721|0.54167\n195722|0.5\n195723|0.55556\n195724|0.48611\n195725|0.58333\n195726|0.44444\n195727|0.5\n195728|0.48611\n195729|0.5\n195730|0.5\n195731|0.56944\n195732|0.47222\n195733|0.38889\n195734|0.66667\n195735|0.63889\n195736|0.56944\n195737|0.55556\n195738|0.38889\n195739|0.47222\n195740|0.59722\n195741|0.86111\n195742|0.625\n195743|0.625\n195744|0.38889\n195745|0.61111\n195746|0.5\n195747|0.73611\n195748|0.55556\n195749|0.77778\n195750|0.61111\n195751|0.5\n195752|0.48611\n195753|0.55556\n195754|0.5\n195755|0.625\n195756|0.69444\n195757|0.5\n195758|0.75\n195759|0.68056\n195760|0.66667\n195761|0.5\n195762|0.41667\n195763|0.625\n195764|0.72222\n195765|0.77778\n195766|0.51389\n195767|0.55556\n195768|0.68056\n195769|0.59722\n195770|0.75\n195771|0.54167\n195772|0.23611\n195773|0.19444\n195774|0.27778\n195775|0.26389\n195776|0.30556\n195777|0.27778\n195778|0.26389\n195779|0.58333\n195780|0.43056\n195781|0.44444\n195782|0.45833\n195783|0.5\n195784|0.26389\n195785|0.38889\n195786|0.33333\n195787|0.43056\n195788|0.33333\n195789|0.22222\n195790|0.27778\n195791|0.70833\n195792|0.59722\n195793|0.5\n195794|0.51389\n195795|0.38889\n195796|0.51389\n195797|0.27778\n195798|0.5\n195799|0.5\n195800|0.48611\n195801|0.375\n195802|0.5\n195803|0.5\n195804|0.5\n195805|0.38889\n195806|0.41667\n195807|0.44444\n195808|0.16667\n195809|0.44444\n195810|0.20833\n195811|0.5\n195812|0.45833\n195813|0.625\n195814|0.5\n195815|0.47222\n195816|0.5\n195817|0.5\n195818|0.5\n195819|0.5\n195820|0.38889\n195821|0.52778\n195822|0.54167\n195823|0.30556\n195824|0.47222\n195825|0.31944\n195826|0.43056\n195827|0.16667\n195828|0.31944\n195829|0.55556\n195830|0.18056\n195831|0.25\n195832|0.25\n195833|0.31944\n195834|0.16667\n195835|0.15278\n195836|0.11111\n195837|0.027778\n195838|0.40278\n195839|0.33333\n195840|0.16667\n195841|0.44444\n195842|0.5\n195843|0.5\n195844|0.51389\n195845|0.65278\n195846|0.5\n195847|0.5\n195848|0.48611\n195849|0.5\n195850|0.5\n195851|0.66667\n195852|0.5\n195853|0.16667\n195854|0.40278\n195855|0.36111\n195856|0.41667\n195857|0.44444\n195858|0.56944\n195859|0.51389\n195860|0.72222\n195861|0.44444\n195862|0.5\n195863|0.5\n195864|0.375\n195865|0.19444\n195866|0.15278\n195867|0.36111\n195868|0.38889\n195869|0.31944\n195870|0.36111\n195871|0.44444\n195872|0.70833\n195873|0.15278\n195874|0.54167\n195875|0.27778\n195876|0.097222\n195877|0.19444\n195878|0.52778\n195879|0.26389\n195880|0.5\n195881|0.44444\n195882|0.51389\n195883|0.56944\n195884|0.47222\n195885|0.5\n195886|0.5\n195887|0.5\n195888|0.51389\n195889|0.38889\n195890|0.45833\n195891|0.5\n195892|0.36111\n195893|0.45833\n195894|0.5\n195895|0.51389\n195896|0.5\n195897|0.58333\n195898|0.59722\n195899|0.5\n195900|0.5\n195901|0.44444\n195902|0.31944\n195903|0.13889\n195904|0.30556\n195905|0.33333\n195906|0.30556\n195907|0.36111\n195908|0.48611\n195909|0.55556\n195910|0.72222\n195911|0.5\n195912|0.31944\n195913|0.36111\n195914|0.33333\n195915|0.34722\n195916|0.41667\n195917|0.56944\n195918|0.47222\n195919|0.45833\n195920|0.5\n195921|0.55556\n195922|0.31944\n195923|0.34722\n195924|0.38889\n195925|0.59722\n195926|0.73611\n195927|0.55556\n195928|0.68056\n195929|0.5\n195930|0.55556\n195931|0.58333\n195932|0.625\n195933|0.5\n195934|0.34722\n195935|0.5\n195936|0.5\n195937|0.55556\n195938|0.41667\n195939|0.5\n195940|0.52778\n195941|0.44444\n195942|0.40278\n195943|0.36111\n195944|0.40278\n195945|0.66667\n195946|0.61111\n195947|0.16667\n195948|0.54167\n195949|0.44444\n195950|0.30556\n195951|0.58333\n195952|0.40278\n195953|0.13889\n195954|0.19444\n195955|0.36111\n195956|0.19444\n195957|0.26389\n195958|0.15278\n195959|0.11111\n195960|0.63889\n195961|0.72222\n195962|0.65278\n195963|0.55556\n195964|0.52778\n195965|0.72222\n195966|0.52778\n195967|0.40278\n195968|0.22222\n195969|0.31944\n195970|0.31944\n195971|0.47222\n195972|0.55556\n195973|0.48611\n195974|0.72222\n195975|0.18056\n195976|0.40278\n195977|0.16667\n195978|0.47222\n195979|0.16667\n195980|0.16667\n195981|0.55556\n195982|0.5\n195983|0.40278\n195984|0.27778\n195985|0.65278\n195986|0.5\n195987|0.11111\n195988|0.44444\n195989|0.41667\n195990|0.55556\n195991|0.68056\n195992|0.66667\n195993|0.52778\n195994|0.52778\n195995|0.5\n195996|0.5\n195997|0.72222\n195998|0.5\n195999|0.625\n196000|0.55556\n196001|0.55556\n196002|0.5\n196003|0.61111\n196004|0.40278\n196005|0.63889\n196006|0.51389\n196007|0.59722\n196008|0.48611\n196009|0.5\n196010|0.48611\n196011|0.5\n196012|0.54167\n196013|0.54167\n196014|0.40278\n196015|0.375\n196016|0.5\n196017|0.44444\n196018|0.45833\n196019|0.33333\n196020|0.30556\n196021|0.25\n196022|0.22222\n196023|0.34722\n196024|0.30556\n196025|0.44444\n196026|0.5\n196027|0.5\n196028|0.54167\n196029|0.51389\n196030|0.5\n196031|0.59722\n196032|0.16667\n196033|0.61111\n196034|0.47222\n196035|0.5\n196036|0.44444\n196037|0.5\n196038|0.38889\n196039|0.51389\n196040|0.68056\n196041|0.44444\n196042|0.54167\n196043|0.5\n196044|0.76389\n196045|0.80556\n196046|0.61111\n196047|0.45833\n196048|0.59722\n196049|0.40278\n196050|0.59722\n196051|0.5\n196052|0.43056\n196053|0.73611\n196054|0.72222\n196055|0.55556\n196056|0.29167\n196057|0.61111\n196058|0.31944\n196059|0.22222\n196060|0.5\n196061|0.25\n196062|0.069444\n196063|0.45833\n196064|0.44444\n196065|0.43056\n196066|0.25\n196067|0.33333\n196068|0.15278\n196069|0.25\n196070|0.5\n196071|0.54167\n196072|0.44444\n196073|0.61111\n196074|0.76389\n196075|0.5\n196076|0.625\n196077|0.48611\n196078|0.54167\n196079|0.52778\n196080|0.22222\n196081|0.66667\n196082|0.29167\n196083|0.45833\n196084|0.36111\n196085|0.5\n196086|0.5\n196087|0.5\n196088|0.47222\n196089|0.38889\n196090|0.11111\n196091|0.20833\n196092|0.5\n196093|0.5\n196094|0.33333\n196095|0.55556\n196096|0.40278\n196097|0.72222\n196098|0.5\n196099|0.51389\n196100|0.56944\n196101|0.54167\n196102|0.55556\n196103|0.41667\n196104|0.5\n196105|0.44444\n196106|0.33333\n196107|0.20833\n196108|0.40278\n196109|0.16667\n196110|0.38889\n196111|0.44444\n196112|0.36111\n196113|0.31944\n196114|0.27778\n196115|0.33333\n196116|0.5\n196117|0.5\n196118|0.45833\n196119|0.52778\n196120|0.30556\n196121|0.22222\n196122|0.5\n196123|0.15278\n196124|0.55556\n196125|0.5\n196126|0.45833\n196127|0.41667\n196128|0.63889\n196129|0.79167\n196130|0.66667\n196131|0.69444\n196132|0.58333\n196133|0.54167\n196134|0.75\n196135|0.79167\n196136|0.76389\n196137|0.55556\n196138|0.44444\n196139|0.45833\n196140|0.5\n196141|0.45833\n196142|0.40278\n196143|0.36111\n196144|0.56944\n196145|0.5\n196146|0.16667\n196147|0.5\n196148|0.5\n196149|0.47222\n196150|0.47222\n196151|0.19444\n196152|0.61111\n196153|0.79167\n196154|0.5\n196155|0.41667\n196156|0.22222\n196157|0.25\n196158|0.13889\n196159|0.55556\n196160|0.41667\n196161|0.38889\n196162|0.58333\n196163|0.30556\n196164|0.375\n196165|0.55556\n196166|0.38889\n196167|0.5\n196168|0.22222\n196169|0.15278\n196170|0.65278\n196171|0.76389\n196172|0.77778\n196173|0.66667\n196174|0.19444\n196175|0.027778\n196176|0.27778\n196177|0.5\n196178|0.5\n196179|0.47222\n196180|0.26389\n196181|0.55556\n196182|0.27778\n196183|0.375\n196184|0.36111\n196185|0.16667\n196186|0.19444\n196187|0.22222\n196188|0.27778\n196189|0.13889\n196190|0.27778\n196191|0.33333\n196192|0.41667\n196193|0.31944\n196194|0.48611\n196195|0.33333\n196196|0.54167\n196197|0.29167\n196198|0.27778\n196199|0.16667\n196200|0.26389\n196201|0.44444\n196202|0.31944\n196203|0.5\n196204|0.5\n196205|0.48611\n196206|0.52778\n196207|0.56944\n196208|0.51389\n196209|0.43056\n196210|0.25\n196211|0.19444\n196212|0.55556\n196213|0.34722\n196214|0.5\n196215|0.59722\n196216|0.48611\n196217|0.51389\n196218|0.45833\n196219|0.38889\n196220|0.41667\n196221|0.27778\n196222|0.52778\n196223|0.61111\n196224|0.18056\n196225|0.375\n196226|0.72222\n196227|0.36111\n196228|0.41667\n196229|0.625\n196230|0.44444\n196231|0.52778\n196232|0.66667\n196233|0.25\n196234|0.5\n196235|0.31944\n196236|0.68056\n196237|0.63889\n196238|0.625\n196239|0.52778\n196240|0.36111\n196241|0.38889\n196242|0.36111\n196243|0.31944\n196244|0.48611\n196245|0.5\n196246|0.34722\n196247|0.33333\n196248|0.5\n196249|0.86111\n196250|0.5\n196251|0.5\n196252|0.5\n196253|0.55556\n196254|0.51389\n196255|0.5\n196256|0.31944\n196257|0.45833\n196258|0.66667\n196259|0.5\n196260|0.30556\n196261|0.48611\n196262|0.43056\n196263|0.63889\n196264|0.55556\n196265|0.27778\n196266|0.23611\n196267|0.18056\n196268|0.5\n196269|0.41667\n196270|0.38889\n196271|0.43056\n196272|0.11111\n196273|0.13889\n196274|0.5\n196275|0.375\n196276|0.41667\n196277|0.38889\n196278|0.36111\n196279|0.43056\n196280|0.44444\n196281|0.45833\n196282|0.33333\n196283|0.36111\n196284|0.33333\n196285|0.52778\n196286|0.51389\n196287|0.52778\n196288|0.47222\n196289|0.30556\n196290|0.61111\n196291|0.27778\n196292|0.5\n196293|0.41667\n196294|0.58333\n196295|0.5\n196296|0.52778\n196297|0.15278\n196298|0\n196299|0.52778\n196300|0.36111\n196301|0.11111\n196302|0.36111\n196303|0.31944\n196304|0.29167\n196305|0.27778\n196306|0.40278\n196307|0.22222\n196308|0.38889\n196309|0.44444\n196310|0.56944\n196311|0.16667\n196312|0.13889\n196313|0.625\n196314|0.43056\n196315|0.44444\n196316|0.38889\n196317|0.29167\n196318|0.33333\n196319|0.5\n196320|0.5\n196321|0.30556\n196322|0.41667\n196323|0.58333\n196324|0.23611\n196325|0.5\n196326|0.29167\n196327|0.52778\n196328|0.31944\n196329|0.625\n196330|0.5\n196331|0.70833\n196332|0.44444\n196333|0.41667\n196334|0.48611\n196335|0.5\n196336|0.29167\n196337|0.23611\n196338|0.51389\n196339|0.65278\n196340|0.5\n196341|0.73611\n196342|0.65278\n196343|0.56944\n196344|0.5\n196345|0.43056\n196346|0.5\n196347|0.51389\n196348|0.43056\n196349|0.63889\n196350|0.47222\n196351|0\n196352|0.5\n196353|0.36111\n196354|0.41667\n196355|0.5\n196356|0.20833\n196357|0.16667\n196358|0.43056\n196359|0.26389\n196360|0.5\n196361|0.5\n196362|0.72222\n196363|0.52778\n196364|0.41667\n196365|0.52778\n196366|0.31944\n196367|0.5\n196368|0.27778\n196369|0.18056\n196370|0.34722\n196371|0.19444\n196372|0.22222\n196373|0.31944\n196374|0.38889\n196375|0.68056\n196376|0.44444\n196377|0.29167\n196378|0.63889\n196379|0.59722\n196380|0.26389\n196381|0.36111\n196382|0.34722\n196383|0.19444\n196384|0.25\n196385|0.18056\n196386|0.33333\n196387|0.33333\n196388|0.26389\n196389|0.41667\n196390|0.55556\n196391|0.38889\n196392|0.44444\n196393|0.5\n196394|0.38889\n196395|0.625\n196396|0.51389\n196397|0.45833\n196398|0.22222\n196399|0.5\n196400|0.43056\n196401|0.70833\n196402|0.375\n196403|0.31944\n196404|0.5\n196405|0.47222\n196406|0.52778\n196407|0.56944\n196408|0.59722\n196409|0.80556\n196410|0.72222\n196411|0.65278\n196412|0.40278\n196413|0.48611\n196414|0.79167\n196415|0.36111\n196416|0.72222\n196417|0.55556\n196418|0.875\n196419|0.61111\n196420|0.81944\n196421|0.61111\n196422|0.68056\n196423|0.61111\n196424|0.5\n196425|0.58333\n196426|0.5\n196427|0.72222\n196428|0.41667\n196429|0.30556\n196430|0.41667\n196431|0.43056\n196432|0.34722\n196433|0.38889\n196434|0.52778\n196435|0.013889\n196436|0.45833\n196437|0.5\n196438|0.65278\n196439|0.5\n196440|0.5\n196441|0.63889\n196442|0.5\n196443|0.47222\n196444|0.19444\n196445|0.73611\n196446|0.72222\n196447|0.77778\n196448|0.80556\n196449|0.77778\n196450|0.375\n196451|0.25\n196452|0.5\n196453|0.44444\n196454|0.40278\n196455|0.44444\n196456|0.43056\n196457|0.30556\n196458|0.40278\n196459|0.625\n196460|0.5\n196461|0.48611\n196462|0.5\n196463|0.625\n196464|0.38889\n196465|0.51389\n196466|0.5\n196467|0.33333\n196468|0.65278\n196469|0.29167\n196470|0.41667\n196471|0.16667\n196472|0.47222\n196473|0.19444\n196474|0.43056\n196475|0.52778\n196476|0.18056\n196477|0.5\n196478|0.27778\n196479|0.26389\n196480|0.16667\n196481|0.48611\n196482|0.5\n196483|0.41667\n196484|0.29167\n196485|0.29167\n196486|0.52778\n196487|0.15278\n196488|0.5\n196489|0.27778\n196490|0.41667\n196491|0.5\n196492|0.5\n196493|0.41667\n196494|0.38889\n196495|0.44444\n196496|0.20833\n196497|0.43056\n196498|0.33333\n196499|0.5\n196500|0.44444\n196501|0.125\n196502|0.65278\n196503|0.5\n196504|0.5\n196505|0.44444\n196506|0.5\n196507|0.61111\n196508|0.5\n196509|0.5\n196510|0.5\n196511|0.55556\n196512|0.75\n196513|0.48611\n196514|0.52778\n196515|0.63889\n196516|0.54167\n196517|0.25\n196518|0.54167\n196519|0.30556\n196520|0.52778\n196521|0.5\n196522|0.5\n196523|0.25\n196524|0.44444\n196525|0.20833\n196526|0.097222\n196527|0.25\n196528|0.055556\n196529|0.13889\n196530|0.63889\n196531|0.48611\n196532|0.81944\n196533|0.68056\n196534|0.51389\n196535|0.56944\n196536|0.61111\n196537|0.77778\n196538|0.73611\n196539|0.55556\n196540|0.65278\n196541|0.70833\n196542|0.55556\n196543|0.66667\n196544|0.52778\n196545|0.63889\n196546|0.58333\n196547|0.65278\n196548|0.625\n196549|0.58333\n196550|0.65278\n196551|0.68056\n196552|0.70833\n196553|0.40278\n196554|0.38889\n196555|0.5\n196556|0.40278\n196557|0.33333\n196558|0.375\n196559|0.5\n196560|0.38889\n196561|0.44444\n196562|0.25\n196563|0.29167\n196564|0.41667\n196565|0.33333\n196566|0.66667\n196567|0.66667\n196568|0.70833\n196569|0.5\n196570|0.5\n196571|0.20833\n196572|0.55556\n196573|0.40278\n196574|0.65278\n196575|0.52778\n196576|0.70833\n196577|0.66667\n196578|0.65278\n196579|0.65278\n196580|0.63889\n196581|0.5\n196582|0.44444\n196583|0.47222\n196584|0.5\n196585|0.51389\n196586|0.45833\n196587|0.5\n196588|0.33333\n196589|0.5\n196590|0.44444\n196591|0.58333\n196592|0.44444\n196593|0.51389\n196594|0.66667\n196595|0.54167\n196596|0.43056\n196597|0.5\n196598|0.83333\n196599|0.5\n196600|0.36111\n196601|0.375\n196602|0.375\n196603|0.43056\n196604|0.5\n196605|0.13889\n196606|0.31944\n196607|0.27778\n196608|0.40278\n196609|0.47222\n196610|0.76389\n196611|0.44444\n196612|0.5\n196613|0.52778\n196614|0.31944\n196615|0.43056\n196616|0.61111\n196617|0.65278\n196618|0.125\n196619|0.36111\n196620|0.48611\n196621|0.5\n196622|0.5\n196623|0.45833\n196624|0.5\n196625|0.59722\n196626|0.44444\n196627|0.48611\n196628|0.5\n196629|0.66667\n196630|0.59722\n196631|0.51389\n196632|0.5\n196633|0.72222\n196634|0.70833\n196635|0.5\n196636|0.59722\n196637|0.66667\n196638|0.58333\n196639|0.63889\n196640|0.61111\n196641|0.61111\n196642|0.73611\n196643|0.63889\n196644|0.31944\n196645|0.5\n196646|0.48611\n196647|0.40278\n196648|0.44444\n196649|0.38889\n196650|0.18056\n196651|0.41667\n196652|0.29167\n196653|0.5\n196654|0.5\n196655|0.48611\n196656|0.51389\n196657|0.58333\n196658|0.47222\n196659|0.65278\n196660|0.33333\n196661|0.25\n196662|0.5\n196663|0.48611\n196664|0.38889\n196665|0.375\n196666|0.36111\n196667|0.34722\n196668|0.33333\n196669|0.36111\n196670|0.18056\n196671|0.48611\n196672|0.55556\n196673|0.44444\n196674|0.5\n196675|0.25\n196676|0.29167\n196677|0.5\n196678|0.51389\n196679|0.52778\n196680|0.375\n196681|0.59722\n196682|0.55556\n196683|0.5\n196684|0.5\n196685|0.31944\n196686|0.68056\n196687|0.5\n196688|0.27778\n196689|0.38889\n196690|0.55556\n196691|0.36111\n196692|0.30556\n196693|0.34722\n196694|0.19444\n196695|0.45833\n196696|0.13889\n196697|0.51389\n196698|0.15278\n196699|0.069444\n196700|0.5\n196701|0.5\n196702|0.40278\n196703|0.38889\n196704|0.63889\n196705|0.41667\n196706|0.76389\n196707|0.72222\n196708|0.625\n196709|0.66667\n196710|0.61111\n196711|0.52778\n196712|0.5\n196713|0.5\n196714|0.69444\n196715|0.22222\n196716|0.5\n196717|0.5\n196718|0.13889\n196719|0.54167\n196720|0.40278\n196721|0.70833\n196722|0.65278\n196723|0.5\n196724|0.41667\n196725|0.30556\n196726|0.38889\n196727|0.54167\n196728|0.56944\n196729|0.31944\n196730|0.59722\n196731|0.52778\n196732|0.58333\n196733|0.51389\n196734|0.5\n196735|0.5\n196736|0.43056\n196737|0.5\n196738|0.38889\n196739|0.48611\n196740|0.31944\n196741|0.26389\n196742|0.16667\n196743|0.5\n196744|0.55556\n196745|0.5\n196746|0.43056\n196747|0.45833\n196748|0.31944\n196749|0.55556\n196750|0.375\n196751|0.5\n196752|0.5\n196753|0.43056\n196754|0.43056\n196755|0.44444\n196756|0.47222\n196757|0.55556\n196758|0.54167\n196759|0.38889\n196760|0.36111\n196761|0.27778\n196762|0.58333\n196763|0.625\n196764|0.5\n196765|0.65278\n196766|0.45833\n196767|0.45833\n196768|0.51389\n196769|0.5\n196770|0.51389\n196771|0.5\n196772|0.5\n196773|0.11111\n196774|0.041667\n196775|0.22222\n196776|0.40278\n196777|0.27778\n196778|0.26389\n196779|0.27778\n196780|0.43056\n196781|0.097222\n196782|0.48611\n196783|0.30556\n196784|0.18056\n196785|0.16667\n196786|0.38889\n196787|0.48611\n196788|0.45833\n196789|0.26389\n196790|0.44444\n196791|0.48611\n196792|0.41667\n196793|0.38889\n196794|0.30556\n196795|0.44444\n196796|0.36111\n196797|0.45833\n196798|0.40278\n196799|0.33333\n196800|0.5\n196801|0.51389\n196802|0.41667\n196803|0.27778\n196804|0.25\n196805|0.36111\n196806|0.5\n196807|0.5\n196808|0.625\n196809|0.30556\n196810|0.38889\n196811|0.52778\n196812|0.5\n196813|0.44444\n196814|0.61111\n196815|0.31944\n196816|0.375\n196817|0.38889\n196818|0.19444\n196819|0.52778\n196820|0.43056\n196821|0.51389\n196822|0.47222\n196823|0.5\n196824|0.375\n196825|0.41667\n196826|0.27778\n196827|0.5\n196828|0.38889\n196829|0.375\n196830|0.31944\n196831|0.625\n196832|0.33333\n196833|0.375\n196834|0.40278\n196835|0.125\n196836|0.26389\n196837|0.38889\n196838|0.51389\n196839|0.5\n196840|0.56944\n196841|0.20833\n196842|0.375\n196843|0.40278\n196844|0.52778\n196845|0.54167\n196846|0.5\n196847|0.41667\n196848|0.61111\n196849|0.63889\n196850|0.375\n196851|0.52778\n196852|0.73611\n196853|0.52778\n196854|0.33333\n196855|0.125\n196856|0.52778\n196857|0.55556\n196858|0.69444\n196859|0.5\n196860|0.54167\n196861|0.22222\n196862|0.375\n196863|0.58333\n196864|0.55556\n196865|0.375\n196866|0.13889\n196867|0.083333\n196868|0.36111\n196869|0.5\n196870|0.66667\n196871|0.25\n196872|0.36111\n196873|0.44444\n196874|0.38889\n196875|0.5\n196876|0.44444\n196877|0.51389\n196878|0.5\n196879|0.43056\n196880|0.33333\n196881|0.41667\n196882|0.5\n196883|0.55556\n196884|0.36111\n196885|0.31944\n196886|0.41667\n196887|0.51389\n196888|0.61111\n196889|0.5\n196890|0.40278\n196891|0.22222\n196892|0.15278\n196893|0.33333\n196894|0.34722\n196895|0.59722\n196896|0.38889\n196897|0.55556\n196898|0.52778\n196899|0.47222\n196900|0.55556\n196901|0.47222\n196902|0.5\n196903|0.5\n196904|0.45833\n196905|0.5\n196906|0.65278\n196907|0.5\n196908|0.38889\n196909|0.36111\n196910|0.47222\n196911|0.16667\n196912|0.27778\n196913|0.52778\n196914|0.13889\n196915|0.5\n196916|0.33333\n196917|0.38889\n196918|0.54167\n196919|0.23611\n196920|0.59722\n196921|0.22222\n196922|0.29167\n196923|0.38889\n196924|0.47222\n196925|0.48611\n196926|0.38889\n196927|0.47222\n196928|0.15278\n196929|0.5\n196930|0.63889\n196931|0.26389\n196932|0.5\n196933|0.33333\n196934|0.55556\n196935|0.375\n196936|0.38889\n196937|0.5\n196938|0.56944\n196939|0.40278\n196940|0.16667\n196941|0.11111\n196942|0.33333\n196943|0.31944\n196944|0.16667\n196945|0.25\n196946|0.65278\n196947|0.5\n196948|0.43056\n196949|0.5\n196950|0.51389\n196951|0.47222\n196952|0.36111\n196953|0.23611\n196954|0.27778\n196955|0.19444\n196956|0.20833\n196957|0.5\n196958|0.43056\n196959|0.38889\n196960|0.36111\n196961|0.26389\n196962|0.15278\n196963|0.33333\n196964|0.625\n196965|0.5\n196966|0.54167\n196967|0.48611\n196968|0.30556\n196969|0.22222\n196970|0.65278\n196971|0.34722\n196972|0.31944\n196973|0.375\n196974|0.72222\n196975|0.55556\n196976|0.48611\n196977|0.36111\n196978|0.23611\n196979|0.36111\n196980|0.26389\n196981|0.13889\n196982|0.38889\n196983|0.16667\n196984|0.055556\n196985|0.069444\n196986|0.34722\n196987|0.5\n196988|0.51389\n196989|0.66667\n196990|0.5\n196991|0.5\n196992|0.43056\n196993|0.58333\n196994|0.58333\n196995|0.5\n196996|0.58333\n196997|0.23611\n196998|0.44444\n196999|0.375\n197000|0.29167\n197001|0.5\n197002|0.5\n197003|0.5\n197004|0.25\n197005|0.5\n197006|0.5\n197007|0.5\n197008|0.5\n197009|0.34722\n197010|0.58333\n197011|0.5\n197012|0.44444\n197013|0.55556\n197014|0.43056\n197015|0.5\n197016|0.5\n197017|0.41667\n197018|0.5\n197019|0.16667\n197020|0.54167\n197021|0.5\n197022|0.31944\n197023|0.5\n197024|0.5\n197025|0.5\n197026|0.5\n197027|0.51389\n197028|0.66667\n197029|0.70833\n197030|0.5\n197031|0.5\n197032|0.59722\n197033|0.5\n197034|0.51389\n197035|0.52778\n197036|0.5\n197037|0.125\n197038|0.5\n197039|0.5\n197040|0.38889\n197041|0.36111\n197042|0.16667\n197043|0.68056\n197044|0.5\n197045|0.33333\n197046|0.15278\n197047|0.25\n197048|0.27778\n197049|0.16667\n197050|0.26389\n197051|0.31944\n197052|0.11111\n197053|0.19444\n197054|0.34722\n197055|0.48611\n197056|0.15278\n197057|0.48611\n197058|0.5\n197059|0.375\n197060|0.5\n197061|0.5\n197062|0.5\n197063|0.31944\n197064|0.375\n197065|0.47222\n197066|0.5\n197067|0.47222\n197068|0.45833\n197069|0.375\n197070|0.52778\n197071|0.56944\n197072|0.56944\n197073|0.79167\n197074|0.56944\n197075|0.20833\n197076|0.51389\n197077|0.5\n197078|0.38889\n197079|0.26389\n197080|0.30556\n197081|0.13889\n197082|0.22222\n197083|0.45833\n197084|0.083333\n197085|0.22222\n197086|0.33333\n197087|0.30556\n197088|0.29167\n197089|0.083333\n197090|0.38889\n197091|0.27778\n197092|0.30556\n197093|0.27778\n197094|0.26389\n197095|0.26389\n197096|0.25\n197097|0.5\n197098|0.41667\n197099|0.15278\n197100|0.25\n197101|0.083333\n197102|0.5\n197103|0.48611\n197104|0.5\n197105|0.5\n197106|0.63889\n197107|0.25\n197108|0.5\n197109|0.61111\n197110|0.33333\n197111|0.33333\n197112|0.47222\n197113|0.41667\n197114|0.31944\n197115|0.36111\n197116|0.30556\n197117|0.44444\n197118|0.40278\n197119|0.58333\n197120|0.40278\n197121|0.54167\n197122|0.5\n197123|0.25\n197124|0.33333\n197125|0.5\n197126|0.48611\n197127|0.34722\n197128|0.54167\n197129|0.61111\n197130|0.51389\n197131|0.23611\n197132|0.375\n197133|0.44444\n197134|0.47222\n197135|0.5\n197136|0.33333\n197137|0.27778\n197138|0.25\n197139|0.38889\n197140|0.38889\n197141|0.54167\n197142|0.25\n197143|0.44444\n197144|0.5\n197145|0.59722\n197146|0.44444\n197147|0.5\n197148|0.69444\n197149|0.5\n197150|0.44444\n197151|0.41667\n197152|0.5\n197153|0.43056\n197154|0.54167\n197155|0.69444\n197156|0.61111\n197157|0.47222\n197158|0.31944\n197159|0.625\n197160|0.15278\n197161|0.43056\n197162|0.125\n197163|0.25\n197164|0.055556\n197165|0.31944\n197166|0.33333\n197167|0.44444\n197168|0.38889\n197169|0.45833\n197170|0.5\n197171|0.20833\n197172|0.52778\n197173|0.51389\n197174|0.54167\n197175|0.5\n197176|0.61111\n197177|0.77778\n197178|0.11111\n197179|0.18056\n197180|0.11111\n197181|0.15278\n197182|0.33333\n197183|0.5\n197184|0.52778\n197185|0.54167\n197186|0.27778\n197187|0.34722\n197188|0.72222\n197189|0.5\n197190|0.30556\n197191|0.33333\n197192|0.29167\n197193|0.375\n197194|0.055556\n197195|0.55556\n197196|0.34722\n197197|0.58333\n197198|0.41667\n197199|0.51389\n197200|0.43056\n197201|0.23611\n197202|0.22222\n197203|0.27778\n197204|0.5\n197205|0.23611\n197206|0.30556\n197207|0.48611\n197208|0.16667\n197209|0.13889\n197210|0.51389\n197211|0.22222\n197212|0.5\n197213|0.375\n197214|0.48611\n197215|0.27778\n197216|0.18056\n197217|0.31944\n197218|0.33333\n197219|0.33333\n197220|0.30556\n197221|0.44444\n197222|0.20833\n197223|0.48611\n197224|0.40278\n197225|0.33333\n197226|0.5\n197227|0.44444\n197228|0.38889\n197229|0.36111\n197230|0.34722\n197231|0.34722\n197232|0.40278\n197233|0.54167\n197234|0.55556\n197235|0.5\n197236|0.29167\n197237|0.61111\n197238|0.40278\n197239|0.52778\n197240|0.5\n197241|0.5\n197242|0.51389\n197243|0.5\n197244|0.55556\n197245|0.45833\n197246|0.45833\n197247|0.31944\n197248|0.18056\n197249|0.29167\n197250|0.44444\n197251|0.22222\n197252|0.5\n197253|0.5\n197254|0.5\n197255|0.61111\n197256|0.27778\n197257|0.45833\n197258|0.56944\n197259|0.43056\n197260|0.5\n197261|0.44444\n197262|0.5\n197263|0.27778\n197264|0.26389\n197265|0.33333\n197266|0.22222\n197267|0.18056\n197268|0.16667\n197269|0.083333\n197270|0.48611\n197271|0.61111\n197272|0.59722\n197273|0.26389\n197274|0.51389\n197275|0.625\n197276|0.69444\n197277|0.44444\n197278|0.375\n197279|0.45833\n197280|0.48611\n197281|0.5\n197282|0.65278\n197283|0.52778\n197284|0.51389\n197285|0.19444\n197286|0.34722\n197287|0.29167\n197288|0.26389\n197289|0.44444\n197290|0.38889\n197291|0.48611\n197292|0.375\n197293|0.56944\n197294|0.36111\n197295|0.27778\n197296|0.33333\n197297|0.22222\n197298|0.25\n197299|0.27778\n197300|0.19444\n197301|0.20833\n197302|0.44444\n197303|0.25\n197304|0.36111\n197305|0.79167\n197306|0.34722\n197307|0.44444\n197308|0.47222\n197309|0.22222\n197310|0.27778\n197311|0.48611\n197312|0.27778\n197313|0.51389\n197314|0.23611\n197315|0.38889\n197316|0.51389\n197317|0.41667\n197318|0.33333\n197319|0.33333\n197320|0.27778\n197321|0.30556\n197322|0.16667\n197323|0.16667\n197324|0.40278\n197325|0.26389\n197326|0.47222\n197327|0.58333\n197328|0.26389\n197329|0.30556\n197330|0.26389\n197331|0.33333\n197332|0.38889\n197333|0.33333\n197334|0.26389\n197335|0.44444\n197336|0.16667\n197337|0.43056\n197338|0.36111\n197339|0.45833\n197340|0.375\n197341|0.40278\n197342|0.25\n197343|0.19444\n197344|0.22222\n197345|0.19444\n197346|0.13889\n197347|0.097222\n197348|0.27778\n197349|0.20833\n197350|0.375\n197351|0.31944\n197352|0.26389\n197353|0.41667\n197354|0.375\n197355|0.25\n197356|0.27778\n197357|0.47222\n197358|0.40278\n197359|0.27778\n197360|0.44444\n197361|0.30556\n197362|0.16667\n197363|0.22222\n197364|0.25\n197365|0.22222\n197366|0.19444\n197367|0.13889\n197368|0.27778\n197369|0.11111\n197370|0.18056\n197371|0.47222\n197372|0.36111\n197373|0.125\n197374|0.16667\n197375|0.27778\n197376|0.19444\n197377|0.30556\n197378|0.29167\n197379|0.25\n197380|0.30556\n197381|0.43056\n197382|0.61111\n197383|0.41667\n197384|0.36111\n197385|0.45833\n197386|0.40278\n197387|0.69444\n197388|0.48611\n197389|0.38889\n197390|0.68056\n197391|0.33333\n197392|0.43056\n197393|0.5\n197394|0.58333\n197395|0.47222\n197396|0.5\n197397|0.5\n197398|0.22222\n197399|0.61111\n197400|0.5\n197401|0.43056\n197402|0.40278\n197403|0.43056\n197404|0.55556\n197405|0.31944\n197406|0.48611\n197407|0.38889\n197408|0.38889\n197409|0.31944\n197410|0.5\n197411|0.22222\n197412|0.27778\n197413|0.23611\n197414|0.5\n197415|0.38889\n197416|0.38889\n197417|0.20833\n197418|0.47222\n197419|0.45833\n197420|0.41667\n197421|0.51389\n197422|0.33333\n197423|0.15278\n197424|0.55556\n197425|0.45833\n197426|0.29167\n197427|0.72222\n197428|0.15278\n197429|0.41667\n197430|0.43056\n197431|0.45833\n197432|0.5\n197433|0.27778\n197434|0.19444\n197435|0.23611\n197436|0.20833\n197437|0.27778\n197438|0.34722\n197439|0.5\n197440|0.5\n197441|0.58333\n197442|0.5\n197443|0.16667\n197444|0.5\n197445|0.48611\n197446|0.56944\n197447|0.38889\n197448|0.36111\n197449|0.45833\n197450|0.29167\n197451|0.34722\n197452|0.34722\n197453|0.55556\n197454|0.375\n197455|0.5\n197456|0.5\n197457|0.33333\n197458|0.29167\n197459|0.375\n197460|0.27778\n197461|0.36111\n197462|0.63889\n197463|0.41667\n197464|0.43056\n197465|0.375\n197466|0.43056\n197467|0.55556\n197468|0.54167\n197469|0.16667\n197470|0.5\n197471|0.30556\n197472|0.36111\n197473|0.27778\n197474|0.36111\n197475|0.44444\n197476|0.19444\n197477|0.19444\n197478|0.19444\n197479|0.29167\n197480|0.31944\n197481|0.45833\n197482|0.22222\n197483|0.44444\n197484|0.16667\n197485|0.23611\n197486|0.27778\n197487|0.25\n197488|0.26389\n197489|0.61111\n197490|0.30556\n197491|0.5\n197492|0.44444\n197493|0.36111\n197494|0.59722\n197495|0.58333\n197496|0.38889\n197497|0.38889\n197498|0.75\n197499|0.69444\n197500|0.59722\n197501|0.51389\n197502|0.58333\n197503|0.80556\n197504|0.83333\n197505|0.36111\n197506|0.51389\n197507|0.45833\n197508|0.54167\n197509|0.375\n197510|0.80556\n197511|0.83333\n197512|0.26389\n197513|0.47222\n197514|0.36111\n197515|0.56944\n197516|0.61111\n197517|0.23611\n197518|0.22222\n197519|0.66667\n197520|0.5\n197521|0.45833\n197522|0.61111\n197523|0.65278\n197524|0.5\n197525|0.15278\n197526|0.27778\n197527|0.20833\n197528|0.25\n197529|0.22222\n197530|0.27778\n197531|0.375\n197532|0.31944\n197533|0.13889\n197534|0.5\n197535|0.48611\n197536|0.5\n197537|0.45833\n197538|0.55556\n197539|0.51389\n197540|0.56944\n197541|0.40278\n197542|0.31944\n197543|0.19444\n197544|0.5\n197545|0.5\n197546|0.5\n197547|0.34722\n197548|0.38889\n197549|0.29167\n197550|0.43056\n197551|0.52778\n197552|0.22222\n197553|0.26389\n197554|0.25\n197555|0.375\n197556|0.055556\n197557|0.51389\n197558|0.38889\n197559|0.20833\n197560|0.19444\n197561|0.54167\n197562|0.19444\n197563|0.44444\n197564|0.30556\n197565|0.5\n197566|0.33333\n197567|0.43056\n197568|0.41667\n197569|0.5\n197570|0.54167\n197571|0.36111\n197572|0.51389\n197573|0.375\n197574|0.29167\n197575|0.66667\n197576|0.51389\n197577|0.33333\n197578|0.5\n197579|0.5\n197580|0.51389\n197581|0.51389\n197582|0.5\n197583|0.47222\n197584|0.15278\n197585|0.11111\n197586|0.26389\n197587|0.13889\n197588|0.19444\n197589|0.16667\n197590|0.25\n197591|0.097222\n197592|0.18056\n197593|0.27778\n197594|0.16667\n197595|0.22222\n197596|0.33333\n197597|0.22222\n197598|0.18056\n197599|0.38889\n197600|0.22222\n197601|0.33333\n197602|0.34722\n197603|0.31944\n197604|0.29167\n197605|0.19444\n197606|0.34722\n197607|0.16667\n197608|0.125\n197609|0.5\n197610|0.31944\n197611|0.38889\n197612|0.58333\n197613|0.33333\n197614|0.20833\n197615|0.45833\n197616|0.5\n197617|0.20833\n197618|0.22222\n197619|0.68056\n197620|0.5\n197621|0.44444\n197622|0.45833\n197623|0.45833\n197624|0.5\n197625|0.51389\n197626|0.5\n197627|0.5\n197628|0.5\n197629|0.5\n197630|0.5\n197631|0.5\n197632|0.5\n197633|0.66667\n197634|0.5\n197635|0.66667\n197636|0.22222\n197637|0.18056\n197638|0.25\n197639|0.81944\n197640|0.34722\n197641|0.70833\n197642|0.51389\n197643|0.44444\n197644|0.5\n197645|0.51389\n197646|0.51389\n197647|0.5\n197648|0.5\n197649|0.44444\n197650|0.27778\n197651|0.66667\n197652|0.45833\n197653|0.5\n197654|0.5\n197655|0.23611\n197656|0.68056\n197657|0.69444\n197658|0.58333\n197659|0.55556\n197660|0.30556\n197661|0.5\n197662|0.5\n197663|0.43056\n197664|0.66667\n197665|0.5\n197666|0.5\n197667|0.34722\n197668|0.63889\n197669|0.625\n197670|0.54167\n197671|0.40278\n197672|0.30556\n197673|0.41667\n197674|0.68056\n197675|0.72222\n197676|0.5\n197677|0.36111\n197678|0.58333\n197679|0.30556\n197680|0.47222\n197681|0.59722\n197682|0.36111\n197683|0.55556\n197684|0.58333\n197685|0.20833\n197686|0.59722\n197687|0.65278\n197688|0.5\n197689|0.375\n197690|0.5\n197691|0.47222\n197692|0.5\n197693|0.5\n197694|0.66667\n197695|0.5\n197696|0.31944\n197697|0.55556\n197698|0.5\n197699|0.45833\n197700|0.72222\n197701|0.38889\n197702|0.22222\n197703|0.48611\n197704|0.54167\n197705|0.61111\n197706|0.22222\n197707|0.68056\n197708|0.5\n197709|0.72222\n197710|0.22222\n197711|0.38889\n197712|0.58333\n197713|0.38889\n197714|0.26389\n197715|0.47222\n197716|0.61111\n197717|0.375\n197718|0.38889\n197719|0.5\n197720|0.54167\n197721|0.47222\n197722|0.63889\n197723|0.73611\n197724|0.22222\n197725|0.625\n197726|0.44444\n197727|0.66667\n197728|0.52778\n197729|0.66667\n197730|0.22222\n197731|0.38889\n197732|0.44444\n197733|0.41667\n197734|0.31944\n197735|0.44444\n197736|0.33333\n197737|0.55556\n197738|0.63889\n197739|0.45833\n197740|0.5\n197741|0.73611\n197742|0.65278\n197743|0.48611\n197744|0.54167\n197745|0.41667\n197746|0.58333\n197747|0.5\n197748|0.48611\n197749|0.65278\n197750|0.77778\n197751|0.69444\n197752|0.5\n197753|0.56944\n197754|0.55556\n197755|0.27778\n197756|0.16667\n197757|0.5\n197758|0.48611\n197759|0.23611\n197760|0.48611\n197761|0.61111\n197762|0.5\n197763|0\n197764|0.55556\n197765|0.54167\n197766|0.75\n197767|0.70833\n197768|0.11111\n197769|0.20833\n197770|0.125\n197771|0.5\n197772|0.22222\n197773|0.19444\n197774|0.5\n197775|0.51389\n197776|0.29167\n197777|0.51389\n197778|0.19444\n197779|0.5\n197780|0.5\n197781|0.61111\n197782|0.5\n197783|0.70833\n197784|0.5\n197785|0.5\n197786|0.45833\n197787|0.44444\n197788|0.44444\n197789|0.55556\n197790|0.61111\n197791|0.65278\n197792|0.70833\n197793|0.34722\n197794|0.34722\n197795|0.52778\n197796|0.55556\n197797|0.27778\n197798|0.34722\n197799|0.23611\n197800|0.52778\n197801|0.38889\n197802|0.55556\n197803|0.44444\n197804|0.44444\n197805|0.27778\n197806|0.5\n197807|0.29167\n197808|0.52778\n197809|0.43056\n197810|0.59722\n197811|0.55556\n197812|0.375\n197813|0.27778\n197814|0.5\n197815|0.41667\n197816|0.36111\n197817|0.33333\n197818|0.44444\n197819|0.375\n197820|0.16667\n197821|0.33333\n197822|0.19444\n197823|0.33333\n197824|0.22222\n197825|0.125\n197826|0.41667\n197827|0.56944\n197828|0.23611\n197829|0.36111\n197830|0.55556\n197831|0.41667\n197832|0.5\n197833|0.61111\n197834|0.68056\n197835|0.5\n197836|0.29167\n197837|0.29167\n197838|0.33333\n197839|0.625\n197840|0.375\n197841|0.58333\n197842|0.11111\n197843|0.66667\n197844|0.63889\n197845|0.58333\n197846|0.5\n197847|0.63889\n197848|0.5\n197849|0.16667\n197850|0.41667\n197851|0.30556\n197852|0.48611\n197853|0.20833\n197854|0.34722\n197855|0.47222\n197856|0.5\n197857|0.29167\n197858|0.23611\n197859|0.38889\n197860|0.41667\n197861|0.44444\n197862|0.22222\n197863|0.19444\n197864|0.20833\n197865|0.23611\n197866|0.58333\n197867|0.40278\n197868|0.5\n197869|0.31944\n197870|0.36111\n197871|0.44444\n197872|0.5\n197873|0.027778\n197874|0.18056\n197875|0.27778\n197876|0.44444\n197877|0.40278\n197878|0.76389\n197879|0.68056\n197880|0.5\n197881|0.56944\n197882|0.5\n197883|0.5\n197884|0.81944\n197885|0.81944\n197886|0.79167\n197887|0.63889\n197888|0.44444\n197889|0.44444\n197890|0.58333\n197891|0.44444\n197892|0.5\n197893|0.70833\n197894|0.61111\n197895|0.70833\n197896|0.61111\n197897|0.5\n197898|0.5\n197899|0.58333\n197900|0.55556\n197901|0.51389\n197902|0.375\n197903|0.43056\n197904|0.5\n197905|0.375\n197906|0.56944\n197907|0.27778\n197908|0.51389\n197909|0.56944\n197910|0.5\n197911|0.375\n197912|0.63889\n197913|0.625\n197914|0.41667\n197915|0.63889\n197916|0.63889\n197917|0.56944\n197918|0.43056\n197919|0.43056\n197920|0.65278\n197921|0.38889\n197922|0.66667\n197923|0.30556\n197924|0.72222\n197925|0.625\n197926|0.51389\n197927|0.5\n197928|0.22222\n197929|0.38889\n197930|0.66667\n197931|0.63889\n197932|0.47222\n197933|0.625\n197934|0.38889\n197935|0.22222\n197936|0.66667\n197937|0.5\n197938|0.34722\n197939|0.51389\n197940|0.66667\n197941|0.5\n197942|0.59722\n197943|0.43056\n197944|0.72222\n197945|0.83333\n197946|0.70833\n197947|0.80556\n197948|0.61111\n197949|0.66667\n197950|0.73611\n197951|0.48611\n197952|0.72222\n197953|0.73611\n197954|0.5\n197955|0.5\n197956|0.29167\n197957|0.5\n197958|0.63889\n197959|0.5\n197960|0.5\n197961|0.5\n197962|0.5\n197963|0.5\n197964|0.5\n197965|0.5\n197966|0.43056\n197967|0.22222\n197968|0.375\n197969|0.40278\n197970|0.13889\n197971|0.19444\n197972|0.097222\n197973|0.19444\n197974|0.51389\n197975|0.5\n197976|0.61111\n197977|0.51389\n197978|0.5\n197979|0.44444\n197980|0.63889\n197981|0.70833\n197982|0.72222\n197983|0.51389\n197984|0.66667\n197985|0.22222\n197986|0.23611\n197987|0.16667\n197988|0.36111\n197989|0.375\n197990|0.5\n197991|0.47222\n197992|0.40278\n197993|0.51389\n197994|0.56944\n197995|0.61111\n197996|0.51389\n197997|0.54167\n197998|0.5\n197999|0.41667\n198000|0.25\n198001|0.5\n198002|0.54167\n198003|0.5\n198004|0.44444\n198005|0.5\n198006|0.59722\n198007|0.13889\n198008|0.5\n198009|0.51389\n198010|0.73611\n198011|0.45833\n198012|0.13889\n198013|0.66667\n198014|0.55556\n198015|0.81944\n198016|0.19444\n198017|0.30556\n198018|0.52778\n198019|0.5\n198020|0.013889\n198021|0.38889\n198022|0.54167\n198023|0.5\n198024|0.66667\n198025|0.55556\n198026|0.48611\n198027|0.41667\n198028|0.34722\n198029|0.40278\n198030|0.30556\n198031|0.44444\n198032|0.19444\n198033|0.13889\n198034|0.26389\n198035|0.31944\n198036|0.18056\n198037|0.20833\n198038|0.61111\n198039|0.81944\n198040|0.61111\n198041|0.33333\n198042|0.48611\n198043|0.48611\n198044|0.54167\n198045|0.55556\n198046|0.5\n198047|0.5\n198048|0.5\n198049|0.5\n198050|0.40278\n198051|0.38889\n198052|0.34722\n198053|0.38889\n198054|0.375\n198055|0.5\n198056|0.44444\n198057|0.22222\n198058|0.5\n198059|0.5\n198060|0.097222\n198061|0.25\n198062|0.25\n198063|0.51389\n198064|0.16667\n198065|0.38889\n198066|0.59722\n198067|0.29167\n198068|0.13889\n198069|0.44444\n198070|0.48611\n198071|0.34722\n198072|0.5\n198073|0.61111\n198074|0.22222\n198075|0.47222\n198076|0.38889\n198077|0.38889\n198078|0.30556\n198079|0.5\n198080|0.43056\n198081|0.61111\n198082|0.48611\n198083|0.41667\n198084|0.26389\n198085|0.36111\n198086|0.43056\n198087|0.5\n198088|0.33333\n198089|0.43056\n198090|0.40278\n198091|0.5\n198092|0.31944\n198093|0.33333\n198094|0.5\n198095|0.55556\n198096|0.68056\n198097|0.375\n198098|0.5\n198099|0.38889\n198100|0.11111\n198101|0.38889\n198102|0.33333\n198103|0.47222\n198104|0.38889\n198105|0.5\n198106|0.44444\n198107|0.30556\n198108|0.55556\n198109|0.125\n198110|0.47222\n198111|0.27778\n198112|0.36111\n198113|0.5\n198114|0.44444\n198115|0.33333\n198116|0.5\n198117|0.44444\n198118|0.59722\n198119|0.52778\n198120|0.52778\n198121|0.5\n198122|0.48611\n198123|0.5\n198124|0.30556\n198125|0.51389\n198126|0.33333\n198127|0.66667\n198128|0.41667\n198129|0.30556\n198130|0.58333\n198131|0.72222\n198132|0.41667\n198133|0.52778\n198134|0.5\n198135|0.52778\n198136|0.34722\n198137|0.20833\n198138|0.22222\n198139|0.22222\n198140|0.19444\n198141|0.51389\n198142|0.56944\n198143|0.5\n198144|0.5\n198145|0.5\n198146|0.61111\n198147|0.20833\n198148|0.48611\n198149|0.33333\n198150|0.5\n198151|0.30556\n198152|0.20833\n198153|0.54167\n198154|0.56944\n198155|0.91667\n198156|0.44444\n198157|0.66667\n198158|0.5\n198159|0.26389\n198160|0.16667\n198161|0.36111\n198162|0.59722\n198163|0.69444\n198164|0.5\n198165|0.5\n198166|0.23611\n198167|0.43056\n198168|0.33333\n198169|0.22222\n198170|0.55556\n198171|0.5\n198172|0.5\n198173|0.41667\n198174|0.38889\n198175|0.27778\n198176|0.33333\n198177|0.65278\n198178|0.38889\n198179|0.38889\n198180|0.48611\n198181|0.51389\n198182|0.5\n198183|0.5\n198184|0.43056\n198185|0.375\n198186|0.375\n198187|0.5\n198188|0.5\n198189|0.43056\n198190|0.34722\n198191|0.52778\n198192|0.5\n198193|0.52778\n198194|0.5\n198195|0.5\n198196|0.5\n198197|0.27778\n198198|0.18056\n198199|0.18056\n198200|0.5\n198201|0.51389\n198202|0.55556\n198203|0.5\n198204|0.40278\n198205|0.5\n198206|0.5\n198207|0.65278\n198208|0.59722\n198209|0.52778\n198210|0.33333\n198211|0.34722\n198212|0.5\n198213|0.23611\n198214|0.55556\n198215|0.61111\n198216|0.5\n198217|0.5\n198218|0.5\n198219|0.54167\n198220|0.18056\n198221|0.48611\n198222|0.30556\n198223|0.43056\n198224|0.31944\n198225|0.56944\n198226|0.54167\n198227|0.27778\n198228|0.63889\n198229|0.30556\n198230|0.58333\n198231|0.22222\n198232|0.375\n198233|0.5\n198234|0.27778\n198235|0.19444\n198236|0.36111\n198237|0.54167\n198238|0.27778\n198239|0.47222\n198240|0.22222\n198241|0.33333\n198242|0.29167\n198243|0.36111\n198244|0.63889\n198245|0.52778\n198246|0.51389\n198247|0.5\n198248|0.54167\n198249|0.38889\n198250|0.41667\n198251|0.47222\n198252|0.84722\n198253|0.77778\n198254|0.69444\n198255|0.81944\n198256|0.625\n198257|0.88889\n198258|0.27778\n198259|0.36111\n198260|0.625\n198261|0.5\n198262|0.5\n198263|0.48611\n198264|0.36111\n198265|0.5\n198266|0.58333\n198267|0.65278\n198268|0.51389\n198269|0.55556\n198270|0.375\n198271|0.27778\n198272|0.97222\n198273|0.90278\n198274|0.5\n198275|0.56944\n198276|0.34722\n198277|0.38889\n198278|0.13889\n198279|0.51389\n198280|0.52778\n198281|0.5\n198282|0.54167\n198283|0.84722\n198284|0.68056\n198285|0.38889\n198286|0.55556\n198287|0.25\n198288|0.54167\n198289|0.5\n198290|0.22222\n198291|0.29167\n198292|0.54167\n198293|0.22222\n198294|0.47222\n198295|0.45833\n198296|0.58333\n198297|0.52778\n198298|0.5\n198299|0.5\n198300|0.5\n198301|0.20833\n198302|0.56944\n198303|0.26389\n198304|0.125\n198305|0.20833\n198306|0.40278\n198307|0.54167\n198308|0.33333\n198309|0.34722\n198310|0.40278\n198311|0.5\n198312|0.22222\n198313|0.34722\n198314|0.055556\n198315|0.45833\n198316|0.88889\n198317|0.5\n198318|0.38889\n198319|0.27778\n198320|0.59722\n198321|0.5\n198322|0.40278\n198323|0.47222\n198324|0.5\n198325|0.5\n198326|0.041667\n198327|0.125\n198328|0.54167\n198329|0.55556\n198330|0.40278\n198331|0.52778\n198332|0.31944\n198333|0.375\n198334|0.23611\n198335|0.20833\n198336|0.5\n198337|0.41667\n198338|0.22222\n198339|0.22222\n198340|0.51389\n198341|0.5\n198342|0.51389\n198343|0.48611\n198344|0.5\n198345|0.36111\n198346|0.22222\n198347|0.25\n198348|0.5\n198349|0.13889\n198350|0.15278\n198351|0.55556\n198352|0.5\n198353|0.375\n198354|0.44444\n198355|0.83333\n198356|0.65278\n198357|0.5\n198358|0.47222\n198359|0.5\n198360|0.27778\n198361|0.56944\n198362|0.54167\n198363|0.61111\n198364|0.65278\n198365|0.38889\n198366|0.31944\n198367|0.38889\n198368|0.33333\n198369|0.38889\n198370|0.40278\n198371|0.16667\n198372|0.36111\n198373|0.47222\n198374|0.55556\n198375|0.80556\n198376|0.48611\n198377|0.63889\n198378|0.5\n198379|0.51389\n198380|0.51389\n198381|0.47222\n198382|0.5\n198383|0.5\n198384|0.58333\n198385|0.30556\n198386|0.16667\n198387|0.26389\n198388|0.41667\n198389|0.56944\n198390|0.625\n198391|0.61111\n198392|0.45833\n198393|0.55556\n198394|0.61111\n198395|0.30556\n198396|0.40278\n198397|0.61111\n198398|0.48611\n198399|0.5\n198400|0.66667\n198401|0.59722\n198402|0.22222\n198403|0.55556\n198404|0.79167\n198405|0.51389\n198406|0.5\n198407|0.58333\n198408|0.68056\n198409|0.31944\n198410|0.33333\n198411|0.25\n198412|0.45833\n198413|0.55556\n198414|0.51389\n198415|0.41667\n198416|0.44444\n198417|0.5\n198418|0.5\n198419|0.5\n198420|0.66667\n198421|0.55556\n198422|0.59722\n198423|0.56944\n198424|0.375\n198425|0.44444\n198426|0.48611\n198427|0.52778\n198428|0.5\n198429|0.19444\n198430|0.097222\n198431|0.5\n198432|0.48611\n198433|0.47222\n198434|0.30556\n198435|0.16667\n198436|0.22222\n198437|0.18056\n198438|0.16667\n198439|0.22222\n198440|0.25\n198441|0.41667\n198442|0.23611\n198443|0.15278\n198444|0.25\n198445|0.22222\n198446|0.055556\n198447|0.125\n198448|0.65278\n198449|0.22222\n198450|0.29167\n198451|0.11111\n198452|0.45833\n198453|0.33333\n198454|0.22222\n198455|0.33333\n198456|0.41667\n198457|0.48611\n198458|0.375\n198459|0.18056\n198460|0.16667\n198461|0.59722\n198462|0.55556\n198463|0.36111\n198464|0.61111\n198465|0.52778\n198466|0.33333\n198467|0.52778\n198468|0.55556\n198469|0.73611\n198470|0.29167\n198471|0.29167\n198472|0.33333\n198473|0.16667\n198474|0.083333\n198475|0.44444\n198476|0.29167\n198477|0.18056\n198478|0.25\n198479|0.5\n198480|0.23611\n198481|0.66667\n198482|0.58333\n198483|0.18056\n198484|0.27778\n198485|0.22222\n198486|0.19444\n198487|0.11111\n198488|0.25\n198489|0.30556\n198490|0.55556\n198491|0.5\n198492|0.25\n198493|0.25\n198494|0.41667\n198495|0.33333\n198496|0.375\n198497|0.36111\n198498|0.40278\n198499|0.36111\n198500|0.33333\n198501|0.73611\n198502|0.63889\n198503|0.23611\n198504|0.51389\n198505|0.45833\n198506|0.25\n198507|0.30556\n198508|0.33333\n198509|0.25\n198510|0.40278\n198511|0.5\n198512|0.45833\n198513|0.51389\n198514|0.33333\n198515|0.48611\n198516|0.58333\n198517|0.66667\n198518|0.72222\n198519|0.56944\n198520|0.69444\n198521|0.73611\n198522|0.72222\n198523|0.77778\n198524|0.51389\n198525|0.5\n198526|0.69444\n198527|0.72222\n198528|0.52778\n198529|0.5\n198530|0.26389\n198531|0.5\n198532|0.54167\n198533|0.47222\n198534|0.75\n198535|0.66667\n198536|0.84722\n198537|0.68056\n198538|0.77778\n198539|0.41667\n198540|0.25\n198541|0.20833\n198542|0.44444\n198543|0.44444\n198544|0.34722\n198545|0.18056\n198546|0.38889\n198547|0.80556\n198548|0.34722\n198549|0.27778\n198550|0.63889\n198551|0.52778\n198552|0.625\n198553|0.65278\n198554|0.66667\n198555|0.625\n198556|0.59722\n198557|0.20833\n198558|0.23611\n198559|0.61111\n198560|0.375\n198561|0.31944\n198562|0.27778\n198563|0.38889\n198564|0.38889\n198565|0.33333\n198566|0.20833\n198567|0.30556\n198568|0.055556\n198569|0.51389\n198570|0.19444\n198571|0.29167\n198572|0.40278\n198573|0.51389\n198574|0.34722\n198575|0.375\n198576|0.44444\n198577|0.29167\n198578|0.30556\n198579|0.29167\n198580|0.34722\n198581|0.38889\n198582|0.45833\n198583|0.44444\n198584|0.55556\n198585|0.59722\n198586|0.43056\n198587|0.65278\n198588|0.52778\n198589|0.55556\n198590|0.79167\n198591|0.93056\n198592|0.73611\n198593|0.88889\n198594|0.66667\n198595|0.55556\n198596|0.27778\n198597|0.38889\n198598|0.5\n198599|0.79167\n198600|0.66667\n198601|0.51389\n198602|0.61111\n198603|0.51389\n198604|0.55556\n198605|0.33333\n198606|0.29167\n198607|0.16667\n198608|0.16667\n198609|0.5\n198610|0.38889\n198611|0.41667\n198612|0.36111\n198613|0.41667\n198614|0.43056\n198615|0.16667\n198616|0.22222\n198617|0.56944\n198618|0.55556\n198619|0.27778\n198620|0.625\n198621|0.41667\n198622|0.48611\n198623|0.48611\n198624|0.33333\n198625|0.73611\n198626|0.48611\n198627|0.36111\n198628|0.68056\n198629|0.77778\n198630|0.5\n198631|0.5\n198632|0.68056\n198633|0.5\n198634|0.29167\n198635|0.625\n198636|0.65278\n198637|0.13889\n198638|0.125\n198639|0.40278\n198640|0.40278\n198641|0.25\n198642|0.48611\n198643|0.59722\n198644|0.47222\n198645|0.41667\n198646|0.33333\n198647|0.38889\n198648|0.68056\n198649|0.66667\n198650|0.72222\n198651|0.45833\n198652|0.40278\n198653|0.31944\n198654|0.27778\n198655|0.47222\n198656|0.45833\n198657|0.43056\n198658|0.16667\n198659|0.013889\n198660|0.41667\n198661|0.34722\n198662|0.36111\n198663|0.27778\n198664|0.18056\n198665|0.22222\n198666|0.55556\n198667|0.5\n198668|0.47222\n198669|0.41667\n198670|0.27778\n198671|0.16667\n198672|0.11111\n198673|0.43056\n198674|0.23611\n198675|0.30556\n198676|0.29167\n198677|0.5\n198678|0.70833\n198679|0.48611\n198680|0.69444\n198681|0.48611\n198682|0.45833\n198683|0.45833\n198684|0.52778\n198685|0.625\n198686|0.54167\n198687|0.5\n198688|0.36111\n198689|0.22222\n198690|0.44444\n198691|0.27778\n198692|0.22222\n198693|0.38889\n198694|0.38889\n198695|0.55556\n198696|0.44444\n198697|0.68056\n198698|0.375\n198699|0.43056\n198700|0.40278\n198701|0.31944\n198702|0.30556\n198703|0.26389\n198704|0.15278\n198705|0.11111\n198706|0.45833\n198707|0.44444\n198708|0.47222\n198709|0.29167\n198710|0.26389\n198711|0.20833\n198712|0.27778\n198713|0.25\n198714|0.36111\n198715|0.34722\n198716|0.22222\n198717|0.26389\n198718|0.20833\n198719|0.25\n198720|0.20833\n198721|0.26389\n198722|0.38889\n198723|0.26389\n198724|0.27778\n198725|0.48611\n198726|0.33333\n198727|0.15278\n198728|0.22222\n198729|0.15278\n198730|0.19444\n198731|0.25\n198732|0.29167\n198733|0.29167\n198734|0.26389\n198735|0.40278\n198736|0.16667\n198737|0.19444\n198738|0.25\n198739|0.11111\n198740|0.30556\n198741|0.61111\n198742|0.40278\n198743|0.31944\n198744|0.27778\n198745|0.36111\n198746|0.34722\n198747|0.5\n198748|0.38889\n198749|0.27778\n198750|0.55556\n198751|0.51389\n198752|0.19444\n198753|0.22222\n198754|0.19444\n198755|0.23611\n198756|0.18056\n198757|0.48611\n198758|0.5\n198759|0.66667\n198760|0.29167\n198761|0.22222\n198762|0.51389\n198763|0.51389\n198764|0.45833\n198765|0.47222\n198766|0.55556\n198767|0.61111\n198768|0.36111\n198769|0.5\n198770|0.5\n198771|0.38889\n198772|0.5\n198773|0.40278\n198774|0.5\n198775|0.48611\n198776|0.23611\n198777|0.61111\n198778|0.58333\n198779|0.56944\n198780|0.38889\n198781|0.55556\n198782|0.58333\n198783|0.40278\n198784|0.5\n198785|0.55556\n198786|0.61111\n198787|0.51389\n198788|0.19444\n198789|0.5\n198790|0.66667\n198791|0.54167\n198792|0.5\n198793|0.59722\n198794|0.56944\n198795|0.41667\n198796|0.43056\n198797|0.47222\n198798|0.66667\n198799|0.51389\n198800|0.51389\n198801|0.44444\n198802|0.48611\n198803|0.48611\n198804|0.29167\n198805|0.36111\n198806|0.34722\n198807|0.51389\n198808|0.5\n198809|0.5\n198810|0.48611\n198811|0.5\n198812|0.5\n198813|0.5\n198814|0.56944\n198815|0.38889\n198816|0.5\n198817|0.5\n198818|0.33333\n198819|0.40278\n198820|0.40278\n198821|0.30556\n198822|0.5\n198823|0.38889\n198824|0.38889\n198825|0.33333\n198826|0.51389\n198827|0.47222\n198828|0.41667\n198829|0.33333\n198830|0.33333\n198831|0.5\n198832|0.15278\n198833|0.20833\n198834|0.5\n198835|0.51389\n198836|0.27778\n198837|0.5\n198838|0.30556\n198839|0.45833\n198840|0.72222\n198841|0.77778\n198842|0.54167\n198843|0.55556\n198844|0.34722\n198845|0.22222\n198846|0.23611\n198847|0.58333\n198848|0.5\n198849|0.13889\n198850|0.5\n198851|0.58333\n198852|0.51389\n198853|0.43056\n198854|0.375\n198855|0.5\n198856|0.5\n198857|0.5\n198858|0.47222\n198859|0.33333\n198860|0.48611\n198861|0.41667\n198862|0.097222\n198863|0.5\n198864|0.23611\n198865|0.5\n198866|0.625\n198867|0.20833\n198868|0.51389\n198869|0.5\n198870|0.5\n198871|0.38889\n198872|0.5\n198873|0.5\n198874|0.30556\n198875|0.5\n198876|0.625\n198877|0.45833\n198878|0.5\n198879|0.16667\n198880|0.055556\n198881|0.5\n198882|0.5\n198883|0.5\n198884|0.44444\n198885|0.5\n198886|0.5\n198887|0.5\n198888|0.63889\n198889|0.5\n198890|0.375\n198891|0.68056\n198892|0.56944\n198893|0.26389\n198894|0.055556\n198895|0.16667\n198896|0.34722\n198897|0.36111\n198898|0.625\n198899|0.63889\n198900|0.27778\n198901|0.54167\n198902|0.52778\n198903|0.29167\n198904|0.20833\n198905|0.31944\n198906|0.40278\n198907|0.66667\n198908|0.18056\n198909|0.54167\n198910|0.31944\n198911|0.5\n198912|0.52778\n198913|0.56944\n198914|0.5\n198915|0.33333\n198916|0.55556\n198917|0.48611\n198918|0.23611\n198919|0.51389\n198920|0.5\n198921|0.52778\n198922|0.43056\n198923|0.5\n198924|0.375\n198925|0.097222\n198926|0.625\n198927|0.47222\n198928|0.5\n198929|0.5\n198930|0.68056\n198931|0.47222\n198932|0.66667\n198933|0.625\n198934|0.61111\n198935|0.34722\n198936|0.33333\n198937|0.22222\n198938|0.59722\n198939|0.625\n198940|0.41667\n198941|0.33333\n198942|0.70833\n198943|0.84722\n198944|0.65278\n198945|0.80556\n198946|0.38889\n198947|0.77778\n198948|0.625\n198949|0.81944\n198950|0.88889\n198951|0.61111\n198952|0.80556\n198953|0.54167\n198954|0.5\n198955|0.44444\n198956|0.44444\n198957|0.51389\n198958|0.54167\n198959|0.58333\n198960|0.5\n198961|0.5\n198962|0.5\n198963|0.5\n198964|0.52778\n198965|0.48611\n198966|0.63889\n198967|0.5\n198968|0.41667\n198969|0.5\n198970|0.61111\n198971|0.5\n198972|0.63889\n198973|0.625\n198974|0.41667\n198975|0.38889\n198976|0.5\n198977|0.5\n198978|0.5\n198979|0.5\n198980|0.5\n198981|0.68056\n198982|0.77778\n198983|0.45833\n198984|0.5\n198985|0.29167\n198986|0.5\n198987|0.33333\n198988|0.36111\n198989|0.70833\n198990|0.56944\n198991|0.5\n198992|0.56944\n198993|0.40278\n198994|0.77778\n198995|0.61111\n198996|0.81944\n198997|0.55556\n198998|0.63889\n198999|0.59722\n199000|0.5\n199001|0.47222\n199002|0.56944\n199003|0.5\n199004|0.48611\n199005|0.5\n199006|0.27778\n199007|0.36111\n199008|0.47222\n199009|0.20833\n199010|0.5\n199011|0.55556\n199012|0.31944\n199013|0.30556\n199014|0.22222\n199015|0.125\n199016|0.70833\n199017|0.34722\n199018|0.5\n199019|0.44444\n199020|0.33333\n199021|0.27778\n199022|0.29167\n199023|0.55556\n199024|0.19444\n199025|0.30556\n199026|0.29167\n199027|0.27778\n199028|0.16667\n199029|0.36111\n199030|0.33333\n199031|0.31944\n199032|0.30556\n199033|0.45833\n199034|0.36111\n199035|0.40278\n199036|0.43056\n199037|0.38889\n199038|0.34722\n199039|0.20833\n199040|0.38889\n199041|0.66667\n199042|0.54167\n199043|0.61111\n199044|0.27778\n199045|0.55556\n199046|0.40278\n199047|0.22222\n199048|0.5\n199049|0.23611\n199050|0.47222\n199051|0.875\n199052|0.63889\n199053|0.48611\n199054|0.5\n199055|0.5\n199056|0.41667\n199057|0.43056\n199058|0.5\n199059|0.5\n199060|0.38889\n199061|0.5\n199062|0.47222\n199063|0.5\n199064|0.41667\n199065|0.19444\n199066|0.27778\n199067|0.59722\n199068|0.18056\n199069|0.22222\n199070|0.43056\n199071|0.5\n199072|0.33333\n199073|0.055556\n199074|0.44444\n199075|0.16667\n199076|0.27778\n199077|0.66667\n199078|0.47222\n199079|0.40278\n199080|0.55556\n199081|0.54167\n199082|0.66667\n199083|0.55556\n199084|0.43056\n199085|0.47222\n199086|0.625\n199087|0.44444\n199088|0.43056\n199089|0.23611\n199090|0.44444\n199091|0.41667\n199092|0.52778\n199093|0.31944\n199094|0.47222\n199095|0.5\n199096|0.29167\n199097|0.59722\n199098|0.54167\n199099|0.5\n199100|0.34722\n199101|0.31944\n199102|0.44444\n199103|0.38889\n199104|0.26389\n199105|0.75\n199106|0.33333\n199107|0.5\n199108|0.5\n199109|0.5\n199110|0.63889\n199111|0.55556\n199112|0.55556\n199113|0.52778\n199114|0.25\n199115|0.44444\n199116|0.5\n199117|0.5\n199118|0.44444\n199119|0.44444\n199120|0.26389\n199121|0.5\n199122|0.5\n199123|0.5\n199124|0.26389\n199125|0.52778\n199126|0.47222\n199127|0.5\n199128|0.44444\n199129|0.5\n199130|0.58333\n199131|0.5\n199132|0.5\n199133|0.61111\n199134|0.51389\n199135|0.5\n199136|0.19444\n199137|0.5\n199138|0.5\n199139|0.56944\n199140|0.52778\n199141|0.5\n199142|0.48611\n199143|0.59722\n199144|0.55556\n199145|0.5\n199146|0.54167\n199147|0.5\n199148|0.55556\n199149|0.47222\n199150|0.5\n199151|0.52778\n199152|0.5\n199153|0.47222\n199154|0.13889\n199155|0.13889\n199156|0.5\n199157|0.45833\n199158|0.55556\n199159|0.41667\n199160|0.29167\n199161|0.41667\n199162|0.70833\n199163|0.5\n199164|0.47222\n199165|0.63889\n199166|0.55556\n199167|0.15278\n199168|0.5\n199169|0.55556\n199170|0.40278\n199171|0.5\n199172|0.43056\n199173|0.43056\n199174|0.625\n199175|0.5\n199176|0.48611\n199177|0.43056\n199178|0.5\n199179|0.55556\n199180|0.27778\n199181|0.55556\n199182|0.375\n199183|0.36111\n199184|0.5\n199185|0.5\n199186|0.63889\n199187|0.15278\n199188|0.45833\n199189|0.23611\n199190|0.69444\n199191|0.5\n199192|0.5\n199193|0.5\n199194|0.48611\n199195|0.5\n199196|0.44444\n199197|0.56944\n199198|0.23611\n199199|0.44444\n199200|0.5\n199201|0.5\n199202|0.13889\n199203|0.52778\n199204|0.5\n199205|0.27778\n199206|0.5\n199207|0.44444\n199208|0.375\n199209|0.54167\n199210|0.55556\n199211|0.36111\n199212|0.48611\n199213|0.33333\n199214|0.56944\n199215|0.5\n199216|0.375\n199217|0.38889\n199218|0.5\n199219|0.51389\n199220|0.55556\n199221|0.5\n199222|0.44444\n199223|0.56944\n199224|0.5\n199225|0.51389\n199226|0.51389\n199227|0.625\n199228|0.75\n199229|0.44444\n199230|0.5\n199231|0.5\n199232|0.31944\n199233|0.5\n199234|0.47222\n199235|0.20833\n199236|0.5\n199237|0.59722\n199238|0.31944\n199239|0.54167\n199240|0.51389\n199241|0.61111\n199242|0.041667\n199243|0.33333\n199244|0.625\n199245|0.61111\n199246|0.63889\n199247|0.48611\n199248|0.44444\n199249|0.23611\n199250|0.5\n199251|0.625\n199252|0.38889\n199253|0.5\n199254|0.48611\n199255|0.5\n199256|0.23611\n199257|0.55556\n199258|0.40278\n199259|0.48611\n199260|0.5\n199261|0.29167\n199262|0.5\n199263|0.5\n199264|0.5\n199265|0.51389\n199266|0.41667\n199267|0.38889\n199268|0.43056\n199269|0.5\n199270|0.5\n199271|0.63889\n199272|0.31944\n199273|0.5\n199274|0.52778\n199275|0.097222\n199276|0.61111\n199277|0.52778\n199278|0.5\n199279|0.5\n199280|0.38889\n199281|0.26389\n199282|0.29167\n199283|0.48611\n199284|0.65278\n199285|0.5\n199286|0.44444\n199287|0.61111\n199288|0.52778\n199289|0.18056\n199290|0.48611\n199291|0.73611\n199292|0.44444\n199293|0.5\n199294|0.5\n199295|0.25\n199296|0.33333\n199297|0.41667\n199298|0.5\n199299|0.44444\n199300|0.61111\n199301|0.43056\n199302|0.47222\n199303|0.5\n199304|0.5\n199305|0.43056\n199306|0.5\n199307|0.23611\n199308|0.5\n199309|0.625\n199310|0.5\n199311|0.5\n199312|0.5\n199313|0.54167\n199314|0.48611\n199315|0.54167\n199316|0.51389\n199317|0.375\n199318|0.56944\n199319|0.58333\n199320|0.5\n199321|0.40278\n199322|0.52778\n199323|0.68056\n199324|0.44444\n199325|0.5\n199326|0.625\n199327|0.625\n199328|0.51389\n199329|0.52778\n199330|0.52778\n199331|0.5\n199332|0.5\n199333|0.33333\n199334|0.69444\n199335|0.52778\n199336|0.5\n199337|0.22222\n199338|0.41667\n199339|0.5\n199340|0.69444\n199341|0.5\n199342|0.5\n199343|0.40278\n199344|0.44444\n199345|0.625\n199346|0.5\n199347|0.54167\n199348|0.5\n199349|0.5\n199350|0.18056\n199351|0.47222\n199352|0.5\n199353|0.23611\n199354|0.34722\n199355|0.52778\n199356|0.55556\n199357|0.55556\n199358|0.54167\n199359|0.41667\n199360|0.875\n199361|0.5\n199362|0.30556\n199363|0.45833\n199364|0.68056\n199365|0.5\n199366|0.16667\n199367|0.33333\n199368|0.5\n199369|0.38889\n199370|0.5\n199371|0.5\n199372|0.56944\n199373|0.34722\n199374|0.5\n199375|0.58333\n199376|0.47222\n199377|0.5\n199378|0.36111\n199379|0.5\n199380|0.44444\n199381|0.097222\n199382|0.22222\n199383|0.33333\n199384|0.61111\n199385|0.55556\n199386|0.44444\n199387|0.5\n199388|0.5\n199389|0.51389\n199390|0.51389\n199391|0.5\n199392|0.5\n199393|0.29167\n199394|0.44444\n199395|0.30556\n199396|0.41667\n199397|0.25\n199398|0.33333\n199399|0.13889\n199400|0.36111\n199401|0.20833\n199402|0.47222\n199403|0.51389\n199404|0.44444\n199405|0.19444\n199406|0.47222\n199407|0.5\n199408|0.44444\n199409|0.38889\n199410|0.43056\n199411|0.44444\n199412|0.375\n199413|0.44444\n199414|0.48611\n199415|0.34722\n199416|0.34722\n199417|0.23611\n199418|0.55556\n199419|0.40278\n199420|0.18056\n199421|0.51389\n199422|0.18056\n199423|0.27778\n199424|0.375\n199425|0.20833\n199426|0.20833\n199427|0.51389\n199428|0.29167\n199429|0.38889\n199430|0.55556\n199431|0.55556\n199432|0.66667\n199433|0.56944\n199434|0.30556\n199435|0.41667\n199436|0.38889\n199437|0.5\n199438|0.5\n199439|0.54167\n199440|0.48611\n199441|0.5\n199442|0.52778\n199443|0.36111\n199444|0.31944\n199445|0.29167\n199446|0.31944\n199447|0.58333\n199448|0.47222\n199449|0.40278\n199450|0.63889\n199451|0.23611\n199452|0.16667\n199453|0.5\n199454|0.36111\n199455|0.27778\n199456|0.5\n199457|0.44444\n199458|0.5\n199459|0.5\n199460|0.51389\n199461|0.22222\n199462|0.43056\n199463|0.23611\n199464|0.38889\n199465|0.29167\n199466|0.5\n199467|0.20833\n199468|0.58333\n199469|0.5\n199470|0.5\n199471|0.5\n199472|0.27778\n199473|0.40278\n199474|0.33333\n199475|0.25\n199476|0.55556\n199477|0.56944\n199478|0.43056\n199479|0.51389\n199480|0.29167\n199481|0.43056\n199482|0.56944\n199483|0.30556\n199484|0.23611\n199485|0.68056\n199486|0.45833\n199487|0.38889\n199488|0.19444\n199489|0.55556\n199490|0.20833\n199491|0.56944\n199492|0.5\n199493|0.44444\n199494|0.51389\n199495|0.44444\n199496|0.22222\n199497|0.38889\n199498|0.41667\n199499|0.31944\n199500|0.72222\n199501|0.69444\n199502|0.68056\n199503|0.81944\n199504|0.58333\n199505|0.72222\n199506|0.55556\n199507|0.65278\n199508|0.33333\n199509|0.5\n199510|0.63889\n199511|0.66667\n199512|0.68056\n199513|0.75\n199514|0.58333\n199515|0.63889\n199516|0.54167\n199517|0.45833\n199518|0.65278\n199519|0.41667\n199520|0.38889\n199521|0.41667\n199522|0.33333\n199523|0.5\n199524|0.58333\n199525|0.40278\n199526|0.5\n199527|0.5\n199528|0.625\n199529|0.5\n199530|0.5\n199531|0.51389\n199532|0.55556\n199533|0.30556\n199534|0.30556\n199535|0.22222\n199536|0.55556\n199537|0.5\n199538|0.75\n199539|0.5\n199540|0.5\n199541|0.5\n199542|0.36111\n199543|0.5\n199544|0.5\n199545|0.48611\n199546|0.33333\n199547|0.27778\n199548|0.15278\n199549|0.73611\n199550|0.44444\n199551|0.23611\n199552|0.5\n199553|0.5\n199554|0.5\n199555|0.27778\n199556|0.44444\n199557|0.25\n199558|0.41667\n199559|0.5\n199560|0.47222\n199561|0.54167\n199562|0.5\n199563|0.40278\n199564|0.5\n199565|0.125\n199566|0.5\n199567|0.34722\n199568|0.65278\n199569|0.20833\n199570|0.61111\n199571|0.63889\n199572|0.5\n199573|0.43056\n199574|0.5\n199575|0.5\n199576|0.5\n199577|0.56944\n199578|0.375\n199579|0.19444\n199580|0.5\n199581|0.58333\n199582|0.375\n199583|0.5\n199584|0.33333\n199585|0.55556\n199586|0.5\n199587|0.40278\n199588|0.5\n199589|0.65278\n199590|0.44444\n199591|0.36111\n199592|0.44444\n199593|0.52778\n199594|0.51389\n199595|0.19444\n199596|0.055556\n199597|0.5\n199598|0.33333\n199599|0.72222\n199600|0.45833\n199601|0.40278\n199602|0.5\n199603|0.30556\n199604|0.54167\n199605|0.38889\n199606|0.44444\n199607|0.5\n199608|0.5\n199609|0.61111\n199610|0.36111\n199611|0.5\n199612|0.5\n199613|0.59722\n199614|0.5\n199615|0.5\n199616|0.5\n199617|0.5\n199618|0.33333\n199619|0.31944\n199620|0.54167\n199621|0.5\n199622|0.25\n199623|0.43056\n199624|0.5\n199625|0.16667\n199626|0.125\n199627|0.44444\n199628|0.31944\n199629|0.38889\n199630|0.83333\n199631|0.5\n199632|0.51389\n199633|0.5\n199634|0.51389\n199635|0.22222\n199636|0.52778\n199637|0.5\n199638|0.51389\n199639|0.56944\n199640|0.625\n199641|0.23611\n199642|0.26389\n199643|0.20833\n199644|0.5\n199645|0.23611\n199646|0.51389\n199647|0.45833\n199648|0.30556\n199649|0.11111\n199650|0.26389\n199651|0.45833\n199652|0.36111\n199653|0.23611\n199654|0.19444\n199655|0.33333\n199656|0.375\n199657|0.31944\n199658|0.22222\n199659|0.25\n199660|0.16667\n199661|0.5\n199662|0.51389\n199663|0.55556\n199664|0.38889\n199665|0.65278\n199666|0.56944\n199667|0.5\n199668|0.61111\n199669|0.51389\n199670|0.5\n199671|0.5\n199672|0.55556\n199673|0.375\n199674|0.34722\n199675|0.58333\n199676|0.36111\n199677|0.48611\n199678|0.66667\n199679|0.625\n199680|0.65278\n199681|0.625\n199682|0.61111\n199683|0.5\n199684|0.44444\n199685|0.45833\n199686|0.65278\n199687|0.95833\n199688|0.83333\n199689|0.5\n199690|0.79167\n199691|0.30556\n199692|0.65278\n199693|0.5\n199694|0.77778\n199695|0.45833\n199696|0.5\n199697|0.51389\n199698|0.5\n199699|0.5\n199700|0.44444\n199701|0.19444\n199702|0.25\n199703|0.54167\n199704|0.55556\n199705|0.375\n199706|0.25\n199707|0.23611\n199708|0.55556\n199709|0.38889\n199710|0.5\n199711|0.55556\n199712|0.61111\n199713|0.5\n199714|0.38889\n199715|0.27778\n199716|0.47222\n199717|0.43056\n199718|0.55556\n199719|0.375\n199720|0.5\n199721|0.45833\n199722|0.22222\n199723|0.59722\n199724|0.36111\n199725|0.625\n199726|0.47222\n199727|0.15278\n199728|0.5\n199729|0.5\n199730|0.52778\n199731|0.5\n199732|0.5\n199733|0.5\n199734|0.19444\n199735|0.48611\n199736|0.5\n199737|0.40278\n199738|0.47222\n199739|0.5\n199740|0.51389\n199741|0.5\n199742|0.44444\n199743|0.38889\n199744|0.66667\n199745|0.47222\n199746|0.36111\n199747|0.56944\n199748|0.5\n199749|0.48611\n199750|0.5\n199751|0.26389\n199752|0.27778\n199753|0.33333\n199754|0.5\n199755|0.5\n199756|0.38889\n199757|0.43056\n199758|0.54167\n199759|0.75\n199760|0.44444\n199761|0.52778\n199762|0.36111\n199763|0.65278\n199764|0.52778\n199765|0.70833\n199766|0.73611\n199767|0.80556\n199768|0.47222\n199769|0.44444\n199770|0.13889\n199771|0.31944\n199772|0.30556\n199773|0.38889\n199774|0.11111\n199775|0.22222\n199776|0.61111\n199777|0.41667\n199778|0.16667\n199779|0.61111\n199780|0.5\n199781|0.65278\n199782|0.43056\n199783|0.48611\n199784|0.43056\n199785|0.44444\n199786|0.5\n199787|0.47222\n199788|0.55556\n199789|0.41667\n199790|0.41667\n199791|0.34722\n199792|0.52778\n199793|0.18056\n199794|0.27778\n199795|0.45833\n199796|0.61111\n199797|0.16667\n199798|0.72222\n199799|0.625\n199800|0.61111\n199801|0.58333\n199802|0.80556\n199803|0.625\n199804|0.79167\n199805|0.48611\n199806|0.84722\n199807|0.79167\n199808|0.61111\n199809|0.5\n199810|0.5\n199811|0.16667\n199812|0.36111\n199813|0.40278\n199814|0.44444\n199815|0.33333\n199816|0.41667\n199817|0.54167\n199818|0.51389\n199819|0.51389\n199820|0.51389\n199821|0.25\n199822|0.44444\n199823|0.48611\n199824|0.70833\n199825|0.41667\n199826|0.48611\n199827|0.125\n199828|0.20833\n199829|0.33333\n199830|0.55556\n199831|0.625\n199832|0.29167\n199833|0.44444\n199834|0.58333\n199835|0.52778\n199836|0.5\n199837|0.61111\n199838|0.5\n199839|0.027778\n199840|0.55556\n199841|0.43056\n199842|0.45833\n199843|0.56944\n199844|0.5\n199845|0.27778\n199846|0.47222\n199847|0.15278\n199848|0.375\n199849|0.51389\n199850|0.44444\n199851|0.625\n199852|0.52778\n199853|0.41667\n199854|0.44444\n199855|0.45833\n199856|0.48611\n199857|0.23611\n199858|0.48611\n199859|0.33333\n199860|0.43056\n199861|0.38889\n199862|0.27778\n199863|0.22222\n199864|0.54167\n199865|0.81944\n199866|0.84722\n199867|0.43056\n199868|0.33333\n199869|0.20833\n199870|0.15278\n199871|0.40278\n199872|0.30556\n199873|0.19444\n199874|0.58333\n199875|0.40278\n199876|0.36111\n199877|0.61111\n199878|0.38889\n199879|0.43056\n199880|0.51389\n199881|0.65278\n199882|0.5\n199883|0.43056\n199884|0.72222\n199885|0.38889\n199886|0.69444\n199887|0.47222\n199888|0.58333\n199889|0.40278\n199890|0.51389\n199891|0.22222\n199892|0.30556\n199893|0.30556\n199894|0.41667\n199895|0.23611\n199896|0.27778\n199897|0.34722\n199898|0.375\n199899|0.11111\n199900|0.41667\n199901|0.25\n199902|0.58333\n199903|0.5\n199904|0.125\n199905|0.5\n199906|0.18056\n199907|0.5\n199908|0.54167\n199909|0.34722\n199910|0.54167\n199911|0.63889\n199912|0.30556\n199913|0.5\n199914|0.52778\n199915|0.5\n199916|0.56944\n199917|0.38889\n199918|0.36111\n199919|0.5\n199920|0.5\n199921|0.51389\n199922|0.5\n199923|0.29167\n199924|0.58333\n199925|0.52778\n199926|0.51389\n199927|0.33333\n199928|0.44444\n199929|0.11111\n199930|0.47222\n199931|0.40278\n199932|0.5\n199933|0.56944\n199934|0.80556\n199935|0.41667\n199936|0.38889\n199937|0.70833\n199938|0.72222\n199939|0.45833\n199940|0.61111\n199941|0.48611\n199942|0.65278\n199943|0.43056\n199944|0.73611\n199945|0.5\n199946|0.5\n199947|0.18056\n199948|0.66667\n199949|0.38889\n199950|0.52778\n199951|0.47222\n199952|0.61111\n199953|0.15278\n199954|0.5\n199955|0.66667\n199956|0.5\n199957|0.44444\n199958|0.43056\n199959|0.56944\n199960|0.5\n199961|0.40278\n199962|0.54167\n199963|0.20833\n199964|0.55556\n199965|0.15278\n199966|0.47222\n199967|0.625\n199968|0.51389\n199969|0.52778\n199970|0.5\n199971|0.43056\n199972|0.56944\n199973|0.65278\n199974|0.75\n199975|0.31944\n199976|0.5\n199977|0.44444\n199978|0.5\n199979|0.33333\n199980|0.5\n199981|0.54167\n199982|0.45833\n199983|0.56944\n199984|0.19444\n199985|0.73611\n199986|0.70833\n199987|0.52778\n199988|0.51389\n199989|0.54167\n199990|0.5\n199991|0.54167\n199992|0.38889\n199993|0.38889\n199994|0.27778\n199995|0.55556\n199996|0.625\n199997|0.33333\n199998|0.44444\n199999|0.25\n200000|0.31944\n200001|0.22222\n200002|0.5\n200003|0.44444\n200004|0.30556\n200005|0.43056\n200006|0.375\n200007|0.52778\n200008|0.23611\n200009|0.58333\n200010|0.5\n200011|0.59722\n200012|0.58333\n200013|0.5\n200014|0.58333\n200015|0.375\n200016|0.5\n200017|0.27778\n200018|0.31944\n200019|0.38889\n200020|0.52778\n200021|0.5\n200022|0.51389\n200023|0.5\n200024|0.44444\n200025|0.51389\n200026|0.38889\n200027|0.55556\n200028|0.52778\n200029|0.5\n200030|0.33333\n200031|0.5\n200032|0.5\n200033|0.22222\n200034|0.52778\n200035|0.52778\n200036|0.5\n200037|0.38889\n200038|0.41667\n200039|0.5\n200040|0.5\n200041|0.54167\n200042|0.56944\n200043|0.36111\n200044|0.40278\n200045|0.23611\n200046|0.45833\n200047|0.375\n200048|0.51389\n200049|0.56944\n200050|0.59722\n200051|0.45833\n200052|0.34722\n200053|0.22222\n200054|0.47222\n200055|0.29167\n200056|0.47222\n200057|0.041667\n200058|0.29167\n200059|0.63889\n200060|0.40278\n200061|0.16667\n200062|0.30556\n200063|0.30556\n200064|0.54167\n200065|0.19444\n200066|0.65278\n200067|0.45833\n200068|0.48611\n200069|0.26389\n200070|0.48611\n200071|0.51389\n200072|0.45833\n200073|0.68056\n200074|0.16667\n200075|0.45833\n200076|0.5\n200077|0.38889\n200078|0.26389\n200079|0.63889\n200080|0.61111\n200081|0.61111\n200082|0.31944\n200083|0.26389\n200084|0.48611\n200085|0.25\n200086|0.5\n200087|0.41667\n200088|0.47222\n200089|0.44444\n200090|0.33333\n200091|0.44444\n200092|0.47222\n200093|0.55556\n200094|0.81944\n200095|0.54167\n200096|0.68056\n200097|0.69444\n200098|0.26389\n200099|0.77778\n200100|0.65278\n200101|0.56944\n200102|0.47222\n200103|0.72222\n200104|0.47222\n200105|0.83333\n200106|0.43056\n200107|0.83333\n200108|0.63889\n200109|0.61111\n200110|0.47222\n200111|0.73611\n200112|0.61111\n200113|0.59722\n200114|0.56944\n200115|0.70833\n200116|0.27778\n200117|0.73611\n200118|0.59722\n200119|0.72222\n200120|0.40278\n200121|0.52778\n200122|0.63889\n200123|0.65278\n200124|0.81944\n200125|0.63889\n200126|0.56944\n200127|0.80556\n200128|0.79167\n200129|0.77778\n200130|0.625\n200131|0.61111\n200132|0.72222\n200133|0.55556\n200134|0.375\n200135|0.26389\n200136|0.73611\n200137|0.76389\n200138|0.58333\n200139|0.51389\n200140|0.68056\n200141|0.44444\n200142|0.47222\n200143|0.48611\n200144|0.54167\n200145|0.5\n200146|0.61111\n200147|0.38889\n200148|0.27778\n200149|0.45833\n200150|0.25\n200151|0.47222\n200152|0.41667\n200153|0.56944\n200154|0.44444\n200155|0.19444\n200156|0.5\n200157|0.54167\n200158|0.5\n200159|0.44444\n200160|0.34722\n200161|0.5\n200162|0.58333\n200163|0.5\n200164|0.54167\n200165|0.44444\n200166|0.5\n200167|0.5\n200168|0.5\n200169|0.38889\n200170|0.61111\n200171|0.58333\n200172|0.27778\n200173|0.45833\n200174|0.5\n200175|0.125\n200176|0.48611\n200177|0.31944\n200178|0.26389\n200179|0.68056\n200180|0.36111\n200181|0.27778\n200182|0.29167\n200183|0.55556\n200184|0.51389\n200185|0.38889\n200186|0.65278\n200187|0.5\n200188|0.48611\n200189|0.43056\n200190|0.48611\n200191|0.375\n200192|0.58333\n200193|0.40278\n200194|0.25\n200195|0.40278\n200196|0.20833\n200197|0.19444\n200198|0.43056\n200199|0.44444\n200200|0.5\n200201|0.43056\n200202|0.36111\n200203|0.23611\n200204|0.94444\n200205|0.73611\n200206|0.83333\n200207|0.58333\n200208|0.75\n200209|0.75\n200210|0.80556\n200211|0.86111\n200212|0.30556\n200213|0.70833\n200214|0.36111\n200215|0.80556\n200216|0.625\n200217|0.75\n200218|0.79167\n200219|0.86111\n200220|0.33333\n200221|0.93056\n200222|0.75\n200223|0.68056\n200224|0.23611\n200225|0.72222\n200226|0.75\n200227|0.38889\n200228|0.5\n200229|0.31944\n200230|0.38889\n200231|0.30556\n200232|0.36111\n200233|0.48611\n200234|0.77778\n200235|0.45833\n200236|0.69444\n200237|0.27778\n200238|0.29167\n200239|0.29167\n200240|0.45833\n200241|0.33333\n200242|0.44444\n200243|0.44444\n200244|0.34722\n200245|0.44444\n200246|0.33333\n200247|0.38889\n200248|0.36111\n200249|0.20833\n200250|0.5\n200251|0.25\n200252|0.26389\n200253|0.041667\n200254|0.52778\n200255|0.5\n200256|0.30556\n200257|0.30556\n200258|0.48611\n200259|0.38889\n200260|0.5\n200261|0.19444\n200262|0.16667\n200263|0.38889\n200264|0.27778\n200265|0.30556\n200266|0.38889\n200267|0.59722\n200268|0.30556\n200269|0.16667\n200270|0.38889\n200271|0.23611\n200272|0.27778\n200273|0.5\n200274|0.51389\n200275|0.52778\n200276|0.41667\n200277|0.33333\n200278|0.65278\n200279|0.20833\n200280|0.125\n200281|0.41667\n200282|0.34722\n200283|0.375\n200284|0.40278\n200285|0.41667\n200286|0.36111\n200287|0.58333\n200288|0.5\n200289|0.5\n200290|0.47222\n200291|0.45833\n200292|0.5\n200293|0.5\n200294|0.36111\n200295|0.52778\n200296|0.27778\n200297|0.25\n200298|0.52778\n200299|0.52778\n200300|0.5\n200301|0.54167\n200302|0.44444\n200303|0.43056\n200304|0.375\n200305|0.27778\n200306|0.30556\n200307|0.34722\n200308|0.40278\n200309|0.5\n200310|0.5\n200311|0.5\n200312|0.25\n200313|0.18056\n200314|0.27778\n200315|0.16667\n200316|0.23611\n200317|0.22222\n200318|0.52778\n200319|0.45833\n200320|0.55556\n200321|0.66667\n200322|0.58333\n200323|0.51389\n200324|0.48611\n200325|0.48611\n200326|0.38889\n200327|0.40278\n200328|0.59722\n200329|0.55556\n200330|0.5\n200331|0.5\n200332|0.5\n200333|0.30556\n200334|0.5\n200335|0.5\n200336|0.5\n200337|0.51389\n200338|0.5\n200339|0.58333\n200340|0.625\n200341|0.51389\n200342|0.23611\n200343|0.20833\n200344|0.61111\n200345|0.055556\n200346|0.22222\n200347|0.73611\n200348|0.41667\n200349|0.44444\n200350|0.61111\n200351|0.47222\n200352|0.36111\n200353|0.61111\n200354|0.61111\n200355|0.5\n200356|0.40278\n200357|0.52778\n200358|0.5\n200359|0.44444\n200360|0.41667\n200361|0.45833\n200362|0.30556\n200363|0.33333\n200364|0.5\n200365|0.41667\n200366|0.34722\n200367|0.5\n200368|0.58333\n200369|0.38889\n200370|0.38889\n200371|0.47222\n200372|0.125\n200373|0.27778\n200374|0.44444\n200375|0.22222\n200376|0.23611\n200377|0.5\n200378|0.5\n200379|0.097222\n200380|0.26389\n200381|0.13889\n200382|0.5\n200383|0.81944\n200384|0.90278\n200385|0.55556\n200386|0.45833\n200387|0.29167\n200388|0.47222\n200389|0.48611\n200390|0.52778\n200391|0.44444\n200392|0.66667\n200393|0.56944\n200394|0.55556\n200395|0.20833\n200396|0.44444\n200397|0.5\n200398|0.51389\n200399|0.59722\n200400|0.48611\n200401|0.25\n200402|0.77778\n200403|0.43056\n200404|0.44444\n200405|0.5\n200406|0.5\n200407|0.40278\n200408|0.5\n200409|0.25\n200410|0.26389\n200411|0.45833\n200412|0.48611\n200413|0.29167\n200414|0.45833\n200415|0.51389\n200416|0.52778\n200417|0.55556\n200418|0.5\n200419|0.66667\n200420|0.54167\n200421|0.44444\n200422|0.5\n200423|0.54167\n200424|0.5\n200425|0.38889\n200426|0.38889\n200427|0.66667\n200428|0.54167\n200429|0.38889\n200430|0.5\n200431|0.33333\n200432|0.47222\n200433|0.15278\n200434|0.33333\n200435|0.15278\n200436|0.125\n200437|0.30556\n200438|0.15278\n200439|0.75\n200440|0.19444\n200441|0.47222\n200442|0.25\n200443|0.29167\n200444|0.13889\n200445|0.5\n200446|0.43056\n200447|0.59722\n200448|0.45833\n200449|0.5\n200450|0.54167\n200451|0.20833\n200452|0.5\n200453|0.375\n200454|0.44444\n200455|0.51389\n200456|0.38889\n200457|0.30556\n200458|0.30556\n200459|0.72222\n200460|0.79167\n200461|0.76389\n200462|0.55556\n200463|0.54167\n200464|0.22222\n200465|0.31944\n200466|0.27778\n200467|0.48611\n200468|0.75\n200469|0.80556\n200470|0.30556\n200471|0.5\n200472|0.34722\n200473|0.375\n200474|0.26389\n200475|0.63889\n200476|0.80556\n200477|0.73611\n200478|0.61111\n200479|0.43056\n200480|0.56944\n200481|0.55556\n200482|0.61111\n200483|0.625\n200484|0.55556\n200485|0.41667\n200486|0.625\n200487|0.30556\n200488|0.34722\n200489|0.44444\n200490|0.36111\n200491|0.77778\n200492|0.27778\n200493|0.16667\n200494|0.79167\n200495|0.65278\n200496|0.72222\n200497|0.23611\n200498|0.23611\n200499|0.31944\n200500|0.18056\n200501|0.40278\n200502|0.5\n200503|0.5\n200504|0.77778\n200505|0.20833\n200506|0.22222\n200507|0.40278\n200508|0.27778\n200509|0.18056\n200510|0.29167\n200511|0.25\n200512|0.22222\n200513|0.33333\n200514|0.30556\n200515|0.68056\n200516|0.27778\n200517|0.16667\n200518|0.33333\n200519|0.5\n200520|0.5\n200521|0.51389\n200522|0.375\n200523|0.44444\n200524|0.44444\n200525|0.40278\n200526|0.375\n200527|0.5\n200528|0.25\n200529|0.56944\n200530|0.30556\n200531|0.36111\n200532|0.5\n200533|0.5\n200534|0.44444\n200535|0.15278\n200536|0.20833\n200537|0.097222\n200538|0.45833\n200539|0.5\n200540|0.5\n200541|0.38889\n200542|0.45833\n200543|0.63889\n200544|0.375\n200545|0.45833\n200546|0.44444\n200547|0.52778\n200548|0.65278\n200549|0.43056\n200550|0.44444\n200551|0.48611\n200552|0.51389\n200553|0.68056\n200554|0.625\n200555|0.94444\n200556|0.5\n200557|0.5\n200558|0.58333\n200559|0.38889\n200560|0.52778\n200561|0.59722\n200562|0.48611\n200563|0.375\n200564|0.70833\n200565|0.66667\n200566|0.65278\n200567|0.72222\n200568|0.5\n200569|0.80556\n200570|0.66667\n200571|0.54167\n200572|0.38889\n200573|0.33333\n200574|0.36111\n200575|0.22222\n200576|0.31944\n200577|0.48611\n200578|0.5\n200579|0.30556\n200580|0.61111\n200581|0.5\n200582|0.63889\n200583|0.63889\n200584|0.66667\n200585|0.59722\n200586|0.29167\n200587|0.18056\n200588|0.34722\n200589|0.45833\n200590|0.61111\n200591|0.58333\n200592|0.47222\n200593|0.16667\n200594|0.375\n200595|0.44444\n200596|0.44444\n200597|0.23611\n200598|0.25\n200599|0.26389\n200600|0.25\n200601|0.33333\n200602|0.56944\n200603|0.29167\n200604|0.25\n200605|0.40278\n200606|0.41667\n200607|0.5\n200608|0.41667\n200609|0.19444\n200610|0.16667\n200611|0.61111\n200612|0.41667\n200613|0.38889\n200614|0.44444\n200615|0.41667\n200616|0.26389\n200617|0.16667\n200618|0.19444\n200619|0.13889\n200620|0.19444\n200621|0.20833\n200622|0.18056\n200623|0.68056\n200624|0.27778\n200625|0.5\n200626|0.44444\n200627|0.5\n200628|0.36111\n200629|0.38889\n200630|0.15278\n200631|0.26389\n200632|0.43056\n200633|0.55556\n200634|0.66667\n200635|0.47222\n200636|0.22222\n200637|0.73611\n200638|0.625\n200639|0.66667\n200640|0.33333\n200641|0.30556\n200642|0.33333\n200643|0.40278\n200644|0.58333\n200645|0.54167\n200646|0.625\n200647|0.59722\n200648|0.31944\n200649|0.36111\n200650|0.47222\n200651|0.31944\n200652|0.38889\n200653|0.30556\n200654|0.16667\n200655|0.27778\n200656|0.47222\n200657|0.47222\n200658|0.26389\n200659|0.22222\n200660|0.097222\n200661|0.22222\n200662|0.43056\n200663|0.43056\n200664|0.54167\n200665|0.34722\n200666|0.40278\n200667|0.31944\n200668|0.38889\n200669|0.26389\n200670|0.33333\n200671|0.75\n200672|0.19444\n200673|0.375\n200674|0.70833\n200675|0.66667\n200676|0.27778\n200677|0.20833\n200678|0.29167\n200679|0.55556\n200680|0.18056\n200681|0.19444\n200682|0.11111\n200683|0.15278\n200684|0.48611\n200685|0.29167\n200686|0.27778\n200687|0.38889\n200688|0.66667\n200689|0.625\n200690|0.31944\n200691|0.625\n200692|0.45833\n200693|0.36111\n200694|0.30556\n200695|0.31944\n200696|0.33333\n200697|0.44444\n200698|0.5\n200699|0.23611\n200700|0.43056\n200701|0.27778\n200702|0.20833\n200703|0.38889\n200704|0.29167\n200705|0.15278\n200706|0.43056\n200707|0.33333\n200708|0.48611\n200709|0.20833\n200710|0.52778\n200711|0.55556\n200712|0.51389\n200713|0.38889\n200714|0.625\n200715|0.54167\n200716|0.36111\n200717|0.5\n200718|0.33333\n200719|0.15278\n200720|0.63889\n200721|0.56944\n200722|0.38889\n200723|0.29167\n200724|0.13889\n200725|0.48611\n200726|0.22222\n200727|0.51389\n200728|0.5\n200729|0.73611\n200730|0.73611\n200731|0.66667\n200732|0.33333\n200733|0.22222\n200734|0.5\n200735|0.5\n200736|0.27778\n200737|0.29167\n200738|0.33333\n200739|0.33333\n200740|0.44444\n200741|0.58333\n200742|0.69444\n200743|0.41667\n200744|0.625\n200745|0.26389\n200746|0.51389\n200747|0.66667\n200748|0.68056\n200749|0.41667\n200750|0.56944\n200751|0.5\n200752|0.055556\n200753|0.45833\n200754|0.61111\n200755|0.51389\n200756|0.63889\n200757|0.38889\n200758|0.055556\n200759|0.52778\n200760|0.27778\n200761|0.44444\n200762|0.55556\n200763|0.27778\n200764|0.45833\n200765|0.56944\n200766|0.5\n200767|0.15278\n200768|0.27778\n200769|0.61111\n200770|0.47222\n200771|0.30556\n200772|0.625\n200773|0.41667\n200774|0.34722\n200775|0.36111\n200776|0.36111\n200777|0.40278\n200778|0.27778\n200779|0.30556\n200780|0.41667\n200781|0.5\n200782|0.45833\n200783|0.77778\n200784|0.45833\n200785|0.25\n200786|0.33333\n200787|0.26389\n200788|0.625\n200789|0.66667\n200790|0.31944\n200791|0.41667\n200792|0.55556\n200793|0.33333\n200794|0.48611\n200795|0.44444\n200796|0.18056\n200797|0.5\n200798|0.81944\n200799|0.41667\n200800|0.41667\n200801|0.51389\n200802|0.33333\n200803|0.45833\n200804|0.44444\n200805|0.76389\n200806|0.5\n200807|0.52778\n200808|0.51389\n200809|0.5\n200810|0.5\n200811|0.29167\n200812|0.41667\n200813|0.22222\n200814|0.54167\n200815|0.44444\n200816|0.69444\n200817|0.13889\n200818|0.26389\n200819|0.44444\n200820|0.41667\n200821|0.51389\n200822|0.47222\n200823|0.58333\n200824|0.56944\n200825|0.41667\n200826|0.55556\n200827|0.40278\n200828|0.5\n200829|0.5\n200830|0.51389\n200831|0.5\n200832|0.58333\n200833|0.51389\n200834|0.43056\n200835|0.52778\n200836|0.27778\n200837|0.56944\n200838|0.33333\n200839|0.68056\n200840|0.27778\n200841|0.63889\n200842|0.41667\n200843|0.55556\n200844|0.44444\n200845|0.44444\n200846|0.30556\n200847|0.15278\n200848|0.5\n200849|0.22222\n200850|0.20833\n200851|0.18056\n200852|0.34722\n200853|0.51389\n200854|0.26389\n200855|0.69444\n200856|0.51389\n200857|0.5\n200858|0.51389\n200859|0.31944\n200860|0.38889\n200861|0.73611\n200862|0.72222\n200863|0.61111\n200864|0.58333\n200865|0.16667\n200866|0.33333\n200867|0.54167\n200868|0.20833\n200869|0.30556\n200870|0.48611\n200871|0.22222\n200872|0.5\n200873|0.72222\n200874|0.75\n200875|0.68056\n200876|0.66667\n200877|0.63889\n200878|0.5\n200879|0.51389\n200880|0.26389\n200881|0.55556\n200882|0.47222\n200883|0.56944\n200884|0.44444\n200885|0.33333\n200886|0.097222\n200887|0.43056\n200888|0.55556\n200889|0.47222\n200890|0.29167\n200891|0.5\n200892|0.48611\n200893|0.25\n200894|0.30556\n200895|0.5\n200896|0.48611\n200897|0.43056\n200898|0.30556\n200899|0.44444\n200900|0.5\n200901|0.055556\n200902|0.26389\n200903|0.11111\n200904|0.15278\n200905|0.18056\n200906|0.36111\n200907|0.40278\n200908|0.38889\n200909|0.5\n200910|0.5\n200911|0.44444\n200912|0.44444\n200913|0.20833\n200914|0.43056\n200915|0.26389\n200916|0.27778\n200917|0.65278\n200918|0.15278\n200919|0.5\n200920|0.33333\n200921|0.5\n200922|0.5\n200923|0.26389\n200924|0.44444\n200925|0.52778\n200926|0.43056\n200927|0.54167\n200928|0.51389\n200929|0.55556\n200930|0.5\n200931|0.13889\n200932|0.16667\n200933|0.72222\n200934|0.5\n200935|0.5\n200936|0.22222\n200937|0.30556\n200938|0.29167\n200939|0.19444\n200940|0.18056\n200941|0.58333\n200942|0.5\n200943|0.5\n200944|0.5\n200945|0.38889\n200946|0.5\n200947|0.33333\n200948|0.375\n200949|0.16667\n200950|0.61111\n200951|0.38889\n200952|0.40278\n200953|0.52778\n200954|0.56944\n200955|0.5\n200956|0.5\n200957|0.5\n200958|0.66667\n200959|0.56944\n200960|0.5\n200961|0.51389\n200962|0.27778\n200963|0.52778\n200964|0.44444\n200965|0.48611\n200966|0.40278\n200967|0.58333\n200968|0.5\n200969|0.51389\n200970|0.77778\n200971|0.26389\n200972|0.11111\n200973|0.097222\n200974|0.5\n200975|0.47222\n200976|0.45833\n200977|0.68056\n200978|0.33333\n200979|0.41667\n200980|0.5\n200981|0.52778\n200982|0.5\n200983|0.54167\n200984|0.5\n200985|0.52778\n200986|0.70833\n200987|0.77778\n200988|0.84722\n200989|0.59722\n200990|0.5\n200991|0.44444\n200992|0.54167\n200993|0.52778\n200994|0.40278\n200995|0.27778\n200996|0.5\n200997|0.47222\n200998|0.5\n200999|0.22222\n201000|0.40278\n201001|0.18056\n201002|0.40278\n201003|0.44444\n201004|0.40278\n201005|0.44444\n201006|0.56944\n201007|0.63889\n201008|0.61111\n201009|0.59722\n201010|0.5\n201011|0.52778\n201012|0.61111\n201013|0.36111\n201014|0.5\n201015|0.48611\n201016|0.44444\n201017|0.5\n201018|0.43056\n201019|0.5\n201020|0.5\n201021|0.5\n201022|0.61111\n201023|0.56944\n201024|0.5\n201025|0.68056\n201026|0.5\n201027|0.5\n201028|0.15278\n201029|0.5\n201030|0.5\n201031|0.48611\n201032|0.20833\n201033|0.44444\n201034|0.5\n201035|0.55556\n201036|0.59722\n201037|0.52778\n201038|0.63889\n201039|0.59722\n201040|0.58333\n201041|0.52778\n201042|0.59722\n201043|0.51389\n201044|0.47222\n201045|0.38889\n201046|0.51389\n201047|0.54167\n201048|0.22222\n201049|0.25\n201050|0.375\n201051|0.23611\n201052|0.54167\n201053|0.30556\n201054|0.16667\n201055|0.38889\n201056|0.27778\n201057|0.30556\n201058|0.56944\n201059|0.5\n201060|0.55556\n201061|0.58333\n201062|0.29167\n201063|0.33333\n201064|0.45833\n201065|0.5\n201066|0.5\n201067|0.5\n201068|0.47222\n201069|0.5\n201070|0.43056\n201071|0.44444\n201072|0.22222\n201073|0.43056\n201074|0.375\n201075|0.40278\n201076|0.55556\n201077|0.81944\n201078|0.38889\n201079|0.51389\n201080|0.66667\n201081|0.55556\n201082|0.43056\n201083|0.5\n201084|0.5\n201085|0.5\n201086|0.625\n201087|0.68056\n201088|0.38889\n201089|0.41667\n201090|0.40278\n201091|0.33333\n201092|0.47222\n201093|0.61111\n201094|0.33333\n201095|0.48611\n201096|0.40278\n201097|0.5\n201098|0.30556\n201099|0.33333\n201100|0.77778\n201101|0.38889\n201102|0.58333\n201103|0.47222\n201104|0.41667\n201105|0.33333\n201106|0.5\n201107|0.27778\n201108|0.45833\n201109|0.875\n201110|0.68056\n201111|0.5\n201112|0.44444\n201113|0.5\n201114|0.31944\n201115|0.69444\n201116|0.5\n201117|0.70833\n201118|0.63889\n201119|0.61111\n201120|0.5\n201121|0.5\n201122|0.68056\n201123|0.59722\n201124|0.56944\n201125|0.5\n201126|0.5\n201127|0.61111\n201128|0.16667\n201129|0.30556\n201130|0.51389\n201131|0.43056\n201132|0.52778\n201133|0.5\n201134|0.5\n201135|0.625\n201136|0.51389\n201137|0.55556\n201138|0.55556\n201139|0.66667\n201140|0.55556\n201141|0.5\n201142|0.77778\n201143|0.44444\n201144|0.5\n201145|0.55556\n201146|0.5\n201147|0.33333\n201148|0.33333\n201149|0.51389\n201150|0.66667\n201151|0.48611\n201152|0.5\n201153|0.5\n201154|0.5\n201155|0.51389\n201156|0.44444\n201157|0.52778\n201158|0.30556\n201159|0.29167\n201160|0.58333\n201161|0.5\n201162|0.30556\n201163|0.47222\n201164|0.44444\n201165|0.5\n201166|0.375\n201167|0.5\n201168|0.5\n201169|0.375\n201170|0.5\n201171|0.5\n201172|0.5\n201173|0.48611\n201174|0.5\n201175|0.5\n201176|0.88889\n201177|0.58333\n201178|0.47222\n201179|0.5\n201180|0.65278\n201181|0.5\n201182|0.5\n201183|0.5\n201184|0.51389\n201185|0.44444\n201186|0.26389\n201187|0.5\n201188|0.22222\n201189|0.59722\n201190|0.43056\n201191|0.5\n201192|0.61111\n201193|0.41667\n201194|0.59722\n201195|0.47222\n201196|0.5\n201197|0.5\n201198|0.5\n201199|0.58333\n201200|0.43056\n201201|0.55556\n201202|0.27778\n201203|0.34722\n201204|0.58333\n201205|0.5\n201206|0.66667\n201207|0.125\n201208|0.5\n201209|0.44444\n201210|0.5\n201211|0.45833\n201212|0.55556\n201213|0.44444\n201214|0.5\n201215|0.55556\n201216|0.5\n201217|0.5\n201218|0.5\n201219|0.43056\n201220|0.5\n201221|0.5\n201222|0.55556\n201223|0.63889\n201224|0.40278\n201225|0.40278\n201226|0.5\n201227|0.47222\n201228|0.5\n201229|0.40278\n201230|0.5\n201231|0.5\n201232|0.55556\n201233|0.5\n201234|0.5\n201235|0.5\n201236|0.29167\n201237|0.5\n201238|0.40278\n201239|0.27778\n201240|0.52778\n201241|0.43056\n201242|0.33333\n201243|0.33333\n201244|0.5\n201245|0.5\n201246|0.58333\n201247|0.18056\n201248|0.5\n201249|0.61111\n201250|0.48611\n201251|0.19444\n201252|0.30556\n201253|0.5\n201254|0.27778\n201255|0.5\n201256|0.5\n201257|0.5\n201258|0.5\n201259|0.56944\n201260|0.44444\n201261|0.44444\n201262|0.25\n201263|0.41667\n201264|0.66667\n201265|0.72222\n201266|0.61111\n201267|0.48611\n201268|0.5\n201269|0.58333\n201270|0.375\n201271|0.5\n201272|0.44444\n201273|0.38889\n201274|0.41667\n201275|0.5\n201276|0.59722\n201277|0.33333\n201278|0.40278\n201279|0.59722\n201280|0.61111\n201281|0.625\n201282|0.27778\n201283|0.56944\n201284|0.34722\n201285|0.70833\n201286|0.54167\n201287|0.34722\n201288|0.51389\n201289|0.31944\n201290|0.61111\n201291|0.68056\n201292|0.61111\n201293|0.41667\n201294|0.22222\n201295|0.25\n201296|0.26389\n201297|0.59722\n201298|0.58333\n201299|0.16667\n201300|0.5\n201301|0.48611\n201302|0.5\n201303|0.44444\n201304|0.33333\n201305|0.375\n201306|0.20833\n201307|0.41667\n201308|0.44444\n201309|0.5\n201310|0.44444\n201311|0.5\n201312|0.5\n201313|0.34722\n201314|0.63889\n201315|0.81944\n201316|0.69444\n201317|0.63889\n201318|0.61111\n201319|0.55556\n201320|0.36111\n201321|0.25\n201322|0.73611\n201323|0.51389\n201324|0.54167\n201325|0.52778\n201326|0.55556\n201327|0.55556\n201328|0.48611\n201329|0.59722\n201330|0.51389\n201331|0.5\n201332|0.51389\n201333|0.41667\n201334|0.63889\n201335|0.52778\n201336|0.61111\n201337|0.097222\n201338|0.26389\n201339|0.22222\n201340|0.33333\n201341|0.23611\n201342|0.63889\n201343|0.5\n201344|0.26389\n201345|0.5\n201346|0.11111\n201347|0.013889\n201348|0.125\n201349|0.083333\n201350|0.055556\n201351|0.18056\n201352|0.30556\n201353|0.13889\n201354|0.055556\n201355|0.30556\n201356|0.41667\n201357|0.55556\n201358|0.5\n201359|0.5\n201360|0.5\n201361|0.41667\n201362|0.48611\n201363|0.38889\n201364|0.44444\n201365|0.40278\n201366|0.5\n201367|0.41667\n201368|0.72222\n201369|0.5\n201370|0.43056\n201371|0.5\n201372|0.44444\n201373|0.44444\n201374|0.36111\n201375|0.5\n201376|0.44444\n201377|0.41667\n201378|0.5\n201379|0.31944\n201380|0.5\n201381|0.52778\n201382|0.5\n201383|0.55556\n201384|0.5\n201385|0.48611\n201386|0.33333\n201387|0.5\n201388|0.44444\n201389|0.44444\n201390|0.15278\n201391|0.83333\n201392|0.5\n201393|0.33333\n201394|0.22222\n201395|0.61111\n201396|0.18056\n201397|0.27778\n201398|0.76389\n201399|0.56944\n201400|0.5\n201401|0.36111\n201402|0.44444\n201403|0.31944\n201404|0.52778\n201405|0.13889\n201406|0.38889\n201407|0.11111\n201408|0.125\n201409|0.5\n201410|0.5\n201411|0.5\n201412|0.56944\n201413|0.5\n201414|0.5\n201415|0.45833\n201416|0.51389\n201417|0.5\n201418|0.5\n201419|0.11111\n201420|0.68056\n201421|0.59722\n201422|0.63889\n201423|0.63889\n201424|0.52778\n201425|0.33333\n201426|0.41667\n201427|0.13889\n201428|0.11111\n201429|0.56944\n201430|0.18056\n201431|0.5\n201432|0.5\n201433|0.58333\n201434|0.66667\n201435|0.44444\n201436|0.68056\n201437|0.61111\n201438|0.41667\n201439|0.43056\n201440|0.29167\n201441|0.48611\n201442|0.55556\n201443|0.79167\n201444|0.65278\n201445|0.84722\n201446|0.72222\n201447|0.70833\n201448|0.72222\n201449|0.76389\n201450|0.44444\n201451|0.5\n201452|0.54167\n201453|0.51389\n201454|0.23611\n201455|0.43056\n201456|0.15278\n201457|0.86111\n201458|0.69444\n201459|0.5\n201460|0.52778\n201461|0.30556\n201462|0.40278\n201463|0.20833\n201464|0.38889\n201465|0.31944\n201466|0.36111\n201467|0.41667\n201468|0.5\n201469|0.48611\n201470|0.48611\n201471|0.58333\n201472|0.54167\n201473|0.56944\n201474|0.45833\n201475|0.5\n201476|0.5\n201477|0.36111\n201478|0.43056\n201479|0.58333\n201480|0.375\n201481|0.25\n201482|0.5\n201483|0.20833\n201484|0.5\n201485|0.58333\n201486|0.5\n201487|0.70833\n201488|0.5\n201489|0.5\n201490|0.52778\n201491|0.5\n201492|0.27778\n201493|0.27778\n201494|0.27778\n201495|0.31944\n201496|0.5\n201497|0.5\n201498|0.5\n201499|0.5\n201500|0.48611\n201501|0.44444\n201502|0.31944\n201503|0.5\n201504|0.5\n201505|0.48611\n201506|0.30556\n201507|0.33333\n201508|0.25\n201509|0.097222\n201510|0.40278\n201511|0.29167\n201512|0.61111\n201513|0.61111\n201514|0.58333\n201515|0.51389\n201516|0.375\n201517|0.375\n201518|0.48611\n201519|0.625\n201520|0.20833\n201521|0.44444\n201522|0.27778\n201523|0.23611\n201524|0.36111\n201525|0.51389\n201526|0.33333\n201527|0.25\n201528|0.26389\n201529|0.33333\n201530|0.69444\n201531|0.70833\n201532|0.40278\n201533|0.5\n201534|0.33333\n201535|0.41667\n201536|0.47222\n201537|0.48611\n201538|0.43056\n201539|0.31944\n201540|0.29167\n201541|0.61111\n201542|0.63889\n201543|0.5\n201544|0.47222\n201545|0.41667\n201546|0.31944\n201547|0.19444\n201548|0.47222\n201549|0.36111\n201550|0.40278\n201551|0.40278\n201552|0.5\n201553|0.15278\n201554|0.44444\n201555|0.375\n201556|0.44444\n201557|0.48611\n201558|0.41667\n201559|0.48611\n201560|0.33333\n201561|0.40278\n201562|0.41667\n201563|0.48611\n201564|0.33333\n201565|0.44444\n201566|0.52778\n201567|0.18056\n201568|0.41667\n201569|0.27778\n201570|0.48611\n201571|0.5\n201572|0.63889\n201573|0.58333\n201574|0.26389\n201575|0.33333\n201576|0.44444\n201577|0.27778\n201578|0.44444\n201579|0.36111\n201580|0.25\n201581|0.34722\n201582|0.38889\n201583|0.55556\n201584|0.44444\n201585|0.33333\n201586|0.38889\n201587|0.55556\n201588|0.27778\n201589|0.45833\n201590|0.11111\n201591|0.13889\n201592|0.72222\n201593|0.33333\n201594|0.45833\n201595|0.40278\n201596|0.58333\n201597|0.5\n201598|0.45833\n201599|0.375\n201600|0.52778\n201601|0.54167\n201602|0.5\n201603|0.26389\n201604|0.34722\n201605|0.41667\n201606|0.34722\n201607|0.43056\n201608|0.20833\n201609|0.38889\n201610|0.66667\n201611|0.40278\n201612|0.54167\n201613|0.61111\n201614|0.5\n201615|0.38889\n201616|0.19444\n201617|0.29167\n201618|0.56944\n201619|0.31944\n201620|0.27778\n201621|0.33333\n201622|0.27778\n201623|0.38889\n201624|0.31944\n201625|0.11111\n201626|0.13889\n201627|0.36111\n201628|0.26389\n201629|0.43056\n201630|0.33333\n201631|0.40278\n201632|0.55556\n201633|0.44444\n201634|0.48611\n201635|0.27778\n201636|0.5\n201637|0.44444\n201638|0.52778\n201639|0.5\n201640|0.40278\n201641|0.66667\n201642|0.55556\n201643|0.73611\n201644|0.58333\n201645|0.65278\n201646|0.69444\n201647|0.77778\n201648|0.72222\n201649|0.16667\n201650|0.20833\n201651|0.34722\n201652|0.51389\n201653|0.5\n201654|0.5\n201655|0.41667\n201656|0.48611\n201657|0.5\n201658|0.30556\n201659|0.375\n201660|0.25\n201661|0.40278\n201662|0.63889\n201663|0.55556\n201664|0.23611\n201665|0.5\n201666|0.61111\n201667|0.41667\n201668|0.375\n201669|0.52778\n201670|0.34722\n201671|0.40278\n201672|0.19444\n201673|0.44444\n201674|0.26389\n201675|0.33333\n201676|0.30556\n201677|0.5\n201678|0.43056\n201679|0.47222\n201680|0.375\n201681|0.34722\n201682|0.26389\n201683|0.38889\n201684|0.30556\n201685|0.45833\n201686|0.26389\n201687|0.56944\n201688|0.66667\n201689|0.61111\n201690|0.33333\n201691|0.80556\n201692|0.88889\n201693|0.58333\n201694|0.43056\n201695|0.27778\n201696|0.51389\n201697|0.44444\n201698|0.55556\n201699|0.43056\n201700|0.40278\n201701|0.5\n201702|0.70833\n201703|0.375\n201704|0.18056\n201705|0.5\n201706|0.5\n201707|0.36111\n201708|0.5\n201709|0.5\n201710|0.61111\n201711|0.5\n201712|0.5\n201713|0.48611\n201714|0.48611\n201715|0.5\n201716|0.54167\n201717|0.125\n201718|0.5\n201719|0.55556\n201720|0.5\n201721|0.58333\n201722|0.19444\n201723|0.5\n201724|0.22222\n201725|0.55556\n201726|0.5\n201727|0.61111\n201728|0.44444\n201729|0.44444\n201730|0.44444\n201731|0.55556\n201732|0.52778\n201733|0.41667\n201734|0.51389\n201735|0.5\n201736|0.51389\n201737|0.5\n201738|0.5\n201739|0.45833\n201740|0.5\n201741|0.5\n201742|0.59722\n201743|0.47222\n201744|0.625\n201745|0.5\n201746|0.5\n201747|0.5\n201748|0.47222\n201749|0.5\n201750|0.52778\n201751|0.5\n201752|0.5\n201753|0.61111\n201754|0.5\n201755|0.5\n201756|0.52778\n201757|0.52778\n201758|0.58333\n201759|0.38889\n201760|0.52778\n201761|0.5\n201762|0.5\n201763|0.5\n201764|0.5\n201765|0.51389\n201766|0.5\n201767|0.625\n201768|0.45833\n201769|0.5\n201770|0.47222\n201771|0.30556\n201772|0.52778\n201773|0.54167\n201774|0.36111\n201775|0.34722\n201776|0.5\n201777|0.5\n201778|0.5\n201779|0.5\n201780|0.26389\n201781|0.34722\n201782|0.41667\n201783|0.44444\n201784|0.25\n201785|0.27778\n201786|0.61111\n201787|0.48611\n201788|0.5\n201789|0.5\n201790|0.25\n201791|0.43056\n201792|0.125\n201793|0.18056\n201794|0.47222\n201795|0.375\n201796|0.30556\n201797|0.34722\n201798|0.48611\n201799|0.25\n201800|0.5\n201801|0.23611\n201802|0.25\n201803|0.22222\n201804|0.5\n201805|0.52778\n201806|0.375\n201807|0.5\n201808|0.22222\n201809|0.48611\n201810|0.25\n201811|0.55556\n201812|0.43056\n201813|0.52778\n201814|0.30556\n201815|0.5\n201816|0.25\n201817|0.5\n201818|0.29167\n201819|0.61111\n201820|0.625\n201821|0.5\n201822|0.38889\n201823|0.20833\n201824|0.65278\n201825|0.48611\n201826|0.44444\n201827|0.5\n201828|0.38889\n201829|0.38889\n201830|0.54167\n201831|0.5\n201832|0.43056\n201833|0.51389\n201834|0.5\n201835|0.51389\n201836|0.61111\n201837|0.5\n201838|0.5\n201839|0.5\n201840|0.54167\n201841|0.51389\n201842|0.5\n201843|0.5\n201844|0.5\n201845|0.5\n201846|0.72222\n201847|0.59722\n201848|0.66667\n201849|0.52778\n201850|0.5\n201851|0.5\n201852|0.375\n201853|0.38889\n201854|0.5\n201855|0.5\n201856|0.26389\n201857|0.52778\n201858|0.61111\n201859|0.16667\n201860|0.38889\n201861|0.59722\n201862|0.52778\n201863|0.5\n201864|0.52778\n201865|0.55556\n201866|0.44444\n201867|0.38889\n201868|0.5\n201869|0.5\n201870|0.5\n201871|0.5\n201872|0.625\n201873|0.44444\n201874|0.5\n201875|0.38889\n201876|0.375\n201877|0.43056\n201878|0.5\n201879|0.5\n201880|0.44444\n201881|0.65278\n201882|0.5\n201883|0.51389\n201884|0.5\n201885|0.63889\n201886|0.5\n201887|0.5\n201888|0.51389\n201889|0.48611\n201890|0.5\n201891|0.5\n201892|0.47222\n201893|0.5\n201894|0.5\n201895|0.63889\n201896|0.43056\n201897|0.54167\n201898|0.48611\n201899|0.58333\n201900|0.66667\n201901|0.5\n201902|0.34722\n201903|0.5\n201904|0.375\n201905|0.68056\n201906|0.26389\n201907|0.15278\n201908|0.36111\n201909|0.58333\n201910|0.51389\n201911|0.36111\n201912|0.5\n201913|0.45833\n201914|0.51389\n201915|0.45833\n201916|0.5\n201917|0.5\n201918|0.375\n201919|0.375\n201920|0.5\n201921|0.59722\n201922|0.55556\n201923|0.34722\n201924|0.43056\n201925|0.47222\n201926|0.43056\n201927|0.29167\n201928|0.33333\n201929|0.125\n201930|0.27778\n201931|0.5\n201932|0.51389\n201933|0.5\n201934|0.5\n201935|0.33333\n201936|0.38889\n201937|0.41667\n201938|0.625\n201939|0.66667\n201940|0.5\n201941|0.5\n201942|0.47222\n201943|0.48611\n201944|0.43056\n201945|0.52778\n201946|0.5\n201947|0.52778\n201948|0.52778\n201949|0.48611\n201950|0.20833\n201951|0.43056\n201952|0.5\n201953|0.68056\n201954|0.27778\n201955|0.625\n201956|0.5\n201957|0.26389\n201958|0.51389\n201959|0.5\n201960|0.44444\n201961|0.27778\n201962|0.27778\n201963|0.5\n201964|0.38889\n201965|0.5\n201966|0.5\n201967|0.48611\n201968|0.52778\n201969|0.44444\n201970|0.5\n201971|0.58333\n201972|0.45833\n201973|0.5\n201974|0.47222\n201975|0.61111\n201976|0.5\n201977|0.5\n201978|0.5\n201979|0.18056\n201980|0.58333\n201981|0.5\n201982|0.5\n201983|0.68056\n201984|0.5\n201985|0.23611\n201986|0.56944\n201987|0.51389\n201988|0.5\n201989|0.5\n201990|0.5\n201991|0.63889\n201992|0.52778\n201993|0.5\n201994|0.58333\n201995|0.5\n201996|0.5\n201997|0.56944\n201998|0.65278\n201999|0.5\n202000|0.375\n202001|0.5\n202002|0.33333\n202003|0.38889\n202004|0.69444\n202005|0.5\n202006|0.5\n202007|0.51389\n202008|0.5\n202009|0.70833\n202010|0.54167\n202011|0.5\n202012|0.52778\n202013|0.45833\n202014|0.5\n202015|0.65278\n202016|0.54167\n202017|0.5\n202018|0.29167\n202019|0.61111\n202020|0.5\n202021|0.54167\n202022|0.31944\n202023|0.5\n202024|0.38889\n202025|0.41667\n202026|0.27778\n202027|0.5\n202028|0.44444\n202029|0.44444\n202030|0.51389\n202031|0.5\n202032|0.45833\n202033|0.48611\n202034|0.27778\n202035|0.041667\n202036|0.43056\n202037|0.5\n202038|0.5\n202039|0.44444\n202040|0.55556\n202041|0.52778\n202042|0.43056\n202043|0.38889\n202044|0.52778\n202045|0.40278\n202046|0.41667\n202047|0.5\n202048|0.5\n202049|0.30556\n202050|0.40278\n202051|0.375\n202052|0.5\n202053|0.5\n202054|0.5\n202055|0.63889\n202056|0.5\n202057|0.5\n202058|0.40278\n202059|0.47222\n202060|0.23611\n202061|0.30556\n202062|0.5\n202063|0.65278\n202064|0.5\n202065|0.47222\n202066|0.26389\n202067|0.29167\n202068|0.5\n202069|0.43056\n202070|0.43056\n202071|0.5\n202072|0.5\n202073|0.47222\n202074|0.54167\n202075|0.76389\n202076|0.5\n202077|0.48611\n202078|0.13889\n202079|0.16667\n202080|0.5\n202081|0.25\n202082|0.13889\n202083|0.23611\n202084|0.125\n202085|0.65278\n202086|0.58333\n202087|0.5\n202088|0.36111\n202089|0.11111\n202090|0.41667\n202091|0.52778\n202092|0.5\n202093|0.013889\n202094|0.38889\n202095|0.25\n202096|0.51389\n202097|0.59722\n202098|0.41667\n202099|0.54167\n202100|0.47222\n202101|0.48611\n202102|0.5\n202103|0.61111\n202104|0.40278\n202105|0.47222\n202106|0.5\n202107|0.13889\n202108|0.29167\n202109|0.5\n202110|0.48611\n202111|0.22222\n202112|0.625\n202113|0.38889\n202114|0.34722\n202115|0.47222\n202116|0.5\n202117|0.52778\n202118|0.36111\n202119|0.51389\n202120|0.44444\n202121|0.5\n202122|0.36111\n202123|0.36111\n202124|0.33333\n202125|0.38889\n202126|0.15278\n202127|0.23611\n202128|0.40278\n202129|0.23611\n202130|0.22222\n202131|0.40278\n202132|0.61111\n202133|0.33333\n202134|0.52778\n202135|0.19444\n202136|0.36111\n202137|0.22222\n202138|0.66667\n202139|0.48611\n202140|0.36111\n202141|0.70833\n202142|0.61111\n202143|0.58333\n202144|0.45833\n202145|0.56944\n202146|0.5\n202147|0.51389\n202148|0.68056\n202149|0.73611\n202150|0.5\n202151|0.5\n202152|0.5\n202153|0.5\n202154|0.5\n202155|0.54167\n202156|0.58333\n202157|0.44444\n202158|0.16667\n202159|0.125\n202160|0.54167\n202161|0.375\n202162|0.36111\n202163|0.27778\n202164|0.36111\n202165|0.25\n202166|0.083333\n202167|0.36111\n202168|0.18056\n202169|0.19444\n202170|0.5\n202171|0.5\n202172|0.36111\n202173|0.26389\n202174|0.58333\n202175|0.069444\n202176|0.16667\n202177|0.31944\n202178|0.19444\n202179|0.20833\n202180|0.5\n202181|0.5\n202182|0.41667\n202183|0.083333\n202184|0.5\n202185|0.41667\n202186|0.59722\n202187|0.5\n202188|0.47222\n202189|0.23611\n202190|0.5\n202191|0.38889\n202192|0.45833\n202193|0.45833\n202194|0.5\n202195|0.54167\n202196|0.44444\n202197|0.58333\n202198|0.52778\n202199|0.055556\n202200|0.18056\n202201|0.5\n202202|0.26389\n202203|0.23611\n202204|0.47222\n202205|0.041667\n202206|0.25\n202207|0.33333\n202208|0.34722\n202209|0.52778\n202210|0.40278\n202211|0.58333\n202212|0.52778\n202213|0.16667\n202214|0.11111\n202215|0.45833\n202216|0.31944\n202217|0.54167\n202218|0.43056\n202219|0.43056\n202220|0.55556\n202221|0.375\n202222|0.23611\n202223|0.20833\n202224|0.083333\n202225|0.20833\n202226|0.5\n202227|0.55556\n202228|0.76389\n202229|0.5\n202230|0.23611\n202231|0.48611\n202232|0.5\n202233|0.375\n202234|0.33333\n202235|0.38889\n202236|0.43056\n202237|0.5\n202238|0.40278\n202239|0.5\n202240|0.13889\n202241|0.25\n202242|0.58333\n202243|0.097222\n202244|0.5\n202245|0.36111\n202246|0.41667\n202247|0.38889\n202248|0.43056\n202249|0.5\n202250|0.44444\n202251|0.625\n202252|0.54167\n202253|0.84722\n202254|0.5\n202255|0.61111\n202256|0.63889\n202257|0.5\n202258|0.20833\n202259|0.40278\n202260|0.33333\n202261|0.5\n202262|0.5\n202263|0.61111\n202264|0.5\n202265|0.27778\n202266|0.5\n202267|0.76389\n202268|0.29167\n202269|0.31944\n202270|0.58333\n202271|0.61111\n202272|0.27778\n202273|0.5\n202274|0.73611\n202275|0.625\n202276|0.68056\n202277|0.58333\n202278|0.83333\n202279|0.56944\n202280|0.73611\n202281|0.5\n202282|0.5\n202283|0.5\n202284|0.26389\n202285|0.45833\n202286|0.34722\n202287|0.23611\n202288|0.43056\n202289|0.34722\n202290|0.38889\n202291|0.5\n202292|0.48611\n202293|0.34722\n202294|0.44444\n202295|0.19444\n202296|0.25\n202297|0.11111\n202298|0.20833\n202299|0.22222\n202300|0.33333\n202301|0.22222\n202302|0.44444\n202303|0.083333\n202304|0.30556\n202305|0.33333\n202306|0.59722\n202307|0.54167\n202308|0.29167\n202309|0.48611\n202310|0.43056\n202311|0.61111\n202312|0.5\n202313|0.73611\n202314|0.5\n202315|0.55556\n202316|0.54167\n202317|0.5\n202318|0.375\n202319|0.41667\n202320|0.47222\n202321|0.5\n202322|0.33333\n202323|0.5\n202324|0.38889\n202325|0.40278\n202326|0.5\n202327|0.41667\n202328|0.5\n202329|0.5\n202330|0.63889\n202331|0.41667\n202332|0.5\n202333|0.59722\n202334|0.51389\n202335|0.81944\n202336|0.52778\n202337|0.625\n202338|0.48611\n202339|0.75\n202340|0.68056\n202341|0.83333\n202342|0.70833\n202343|0.72222\n202344|0.72222\n202345|0.77778\n202346|0.55556\n202347|0.66667\n202348|0.65278\n202349|0.72222\n202350|0.16667\n202351|0.75\n202352|0.5\n202353|0.52778\n202354|0.5\n202355|0.36111\n202356|0.5\n202357|0.5\n202358|0.16667\n202359|0.47222\n202360|0.72222\n202361|0.65278\n202362|0.45833\n202363|0.5\n202364|0.5\n202365|0.5\n202366|0.33333\n202367|0.55556\n202368|0.54167\n202369|0.5\n202370|0.26389\n202371|0.83333\n202372|0.55556\n202373|0.81944\n202374|0.5\n202375|0.31944\n202376|0.34722\n202377|0.38889\n202378|0.5\n202379|0.47222\n202380|0.51389\n202381|0.23611\n202382|0.33333\n202383|0.18056\n202384|0.43056\n202385|0.16667\n202386|0.34722\n202387|0.36111\n202388|0.25\n202389|0.5\n202390|0.30556\n202391|0.54167\n202392|0.5\n202393|0.54167\n202394|0.41667\n202395|0.23611\n202396|0.5\n202397|0.5\n202398|0.44444\n202399|0.11111\n202400|0.5\n202401|0.38889\n202402|0.30556\n202403|0.055556\n202404|0.36111\n202405|0.5\n202406|0.30556\n202407|0.375\n202408|0.38889\n202409|0.33333\n202410|0.36111\n202411|0.61111\n202412|0.44444\n202413|0.61111\n202414|0.54167\n202415|0.65278\n202416|0.5\n202417|0.44444\n202418|0.44444\n202419|0.51389\n202420|0.33333\n202421|0.5\n202422|0.5\n202423|0.70833\n202424|0.5\n202425|0.41667\n202426|0.34722\n202427|0.34722\n202428|0.625\n202429|0.47222\n202430|0.33333\n202431|0.44444\n202432|0.52778\n202433|0.52778\n202434|0.69444\n202435|0.41667\n202436|0.5\n202437|0.43056\n202438|0.5\n202439|0.22222\n202440|0.51389\n202441|0.69444\n202442|0.51389\n202443|0.48611\n202444|0.54167\n202445|0.44444\n202446|0.40278\n202447|0.36111\n202448|0.5\n202449|0.47222\n202450|0.45833\n202451|0.70833\n202452|0.70833\n202453|0.5\n202454|0.43056\n202455|0.56944\n202456|0.52778\n202457|0.27778\n202458|0.5\n202459|0.65278\n202460|0.625\n202461|0.30556\n202462|0.27778\n202463|0.19444\n202464|0.54167\n202465|0.5\n202466|0.70833\n202467|0.5\n202468|0.5\n202469|0.13889\n202470|0.5\n202471|0.61111\n202472|0.52778\n202473|0.20833\n202474|0.27778\n202475|0.48611\n202476|0.5\n202477|0.33333\n202478|0.40278\n202479|0.38889\n202480|0.27778\n202481|0.66667\n202482|0.61111\n202483|0.23611\n202484|0.16667\n202485|0.34722\n202486|0.31944\n202487|0.38889\n202488|0.27778\n202489|0.77778\n202490|0.80556\n202491|0.79167\n202492|0.20833\n202493|0.16667\n202494|0.22222\n202495|0.25\n202496|0.30556\n202497|0.29167\n202498|0.29167\n202499|0.19444\n202500|0.16667\n202501|0.47222\n202502|0.34722\n202503|0.34722\n202504|0.18056\n202505|0.48611\n202506|0.44444\n202507|0.47222\n202508|0.25\n202509|0.40278\n202510|0.27778\n202511|0.23611\n202512|0.5\n202513|0.5\n202514|0.38889\n202515|0.40278\n202516|0.26389\n202517|0.16667\n202518|0.33333\n202519|0.375\n202520|0.5\n202521|0.54167\n202522|0.055556\n202523|0.16667\n202524|0.11111\n202525|0.61111\n202526|0.5\n202527|0.55556\n202528|0.18056\n202529|0.15278\n202530|0.73611\n202531|0.30556\n202532|0.44444\n202533|0.23611\n202534|0.19444\n202535|0.48611\n202536|0.5\n202537|0.55556\n202538|0.5\n202539|0.36111\n202540|0.36111\n202541|0.22222\n202542|0.5\n202543|0.45833\n202544|0.625\n202545|0.44444\n202546|0.19444\n202547|0.38889\n202548|0.18056\n202549|0.22222\n202550|0.38889\n202551|0.33333\n202552|0.54167\n202553|0.16667\n202554|0.44444\n202555|0.375\n202556|0.36111\n202557|0.27778\n202558|0.27778\n202559|0.48611\n202560|0.25\n202561|0.22222\n202562|0.055556\n202563|0.069444\n202564|0.097222\n202565|0.20833\n202566|0.33333\n202567|0.22222\n202568|0.52778\n202569|0.52778\n202570|0.38889\n202571|0.44444\n202572|0.22222\n202573|0.30556\n202574|0.51389\n202575|0.19444\n202576|0.22222\n202577|0.18056\n202578|0.5\n202579|0.72222\n202580|0.48611\n202581|0.36111\n202582|0.33333\n202583|0.94444\n202584|0.80556\n202585|0.76389\n202586|0.51389\n202587|0.34722\n202588|0.29167\n202589|0.31944\n202590|0.43056\n202591|0.34722\n202592|0.34722\n202593|0.36111\n202594|0.18056\n202595|0.29167\n202596|0.38889\n202597|0.55556\n202598|0.66667\n202599|0.45833\n202600|0.38889\n202601|0.22222\n202602|0.5\n202603|0.58333\n202604|0.25\n202605|0.51389\n202606|0.25\n202607|0.52778\n202608|0.11111\n202609|0.31944\n202610|0.875\n202611|0.44444\n202612|0.31944\n202613|0.083333\n202614|0.27778\n202615|0.16667\n202616|0.125\n202617|0.38889\n202618|0.16667\n202619|0.18056\n202620|0.375\n202621|0.5\n202622|0.16667\n202623|0.23611\n202624|0.23611\n202625|0.43056\n202626|0.5\n202627|0.73611\n202628|0.23611\n202629|0.41667\n202630|0.36111\n202631|0.38889\n202632|0.52778\n202633|0.19444\n202634|0.23611\n202635|0.30556\n202636|0.27778\n202637|0.27778\n202638|0.5\n202639|0.20833\n202640|0.23611\n202641|0.31944\n202642|0.40278\n202643|0.30556\n202644|0.375\n202645|0.16667\n202646|0.30556\n202647|0.34722\n202648|0.23611\n202649|0.34722\n202650|0.27778\n202651|0.22222\n202652|0.36111\n202653|0.36111\n202654|0.59722\n202655|0.22222\n202656|0.27778\n202657|0.66667\n202658|0.83333\n202659|0.66667\n202660|0.20833\n202661|0.30556\n202662|0.27778\n202663|0.40278\n202664|0.52778\n202665|0.16667\n202666|0.19444\n202667|0.125\n202668|0.83333\n202669|0.73611\n202670|0.83333\n202671|0.56944\n202672|0.68056\n202673|0.15278\n202674|0.76389\n202675|0.52778\n202676|0.5\n202677|0.40278\n202678|0.45833\n202679|0.38889\n202680|0.5\n202681|0.11111\n202682|0.29167\n202683|0.5\n202684|0.26389\n202685|0.20833\n202686|0.055556\n202687|0.19444\n202688|0.83333\n202689|0.47222\n202690|0.40278\n202691|0.30556\n202692|0.22222\n202693|0.56944\n202694|0.40278\n202695|0.43056\n202696|0.31944\n202697|0.41667\n202698|0.375\n202699|0.27778\n202700|0.5\n202701|0.38889\n202702|0.48611\n202703|0.5\n202704|0.13889\n202705|0.18056\n202706|0.11111\n202707|0.069444\n202708|0.18056\n202709|0.5\n202710|0.41667\n202711|0.43056\n202712|0.25\n202713|0.43056\n202714|0.54167\n202715|0.58333\n202716|0.98611\n202717|0.73611\n202718|0.81944\n202719|0.34722\n202720|0.625\n202721|0.26389\n202722|0.26389\n202723|0.083333\n202724|0.31944\n202725|0.13889\n202726|0.66667\n202727|0.27778\n202728|0.375\n202729|0.33333\n202730|0.36111\n202731|0.5\n202732|0.54167\n202733|0.65278\n202734|0.20833\n202735|0.58333\n202736|0.29167\n202737|0.069444\n202738|0.65278\n202739|0.375\n202740|0.48611\n202741|0.48611\n202742|0.31944\n202743|0.52778\n202744|0.51389\n202745|0.65278\n202746|0.73611\n202747|0.41667\n202748|0.40278\n202749|0.055556\n202750|0.29167\n202751|0.5\n202752|0.15278\n202753|0.52778\n202754|0.5\n202755|0.40278\n202756|0.40278\n202757|0.47222\n202758|0.34722\n202759|0.27778\n202760|0.11111\n202761|0.47222\n202762|0.25\n202763|0.43056\n202764|0.40278\n202765|0.16667\n202766|0.27778\n202767|0.5\n202768|0.25\n202769|0.34722\n202770|0.72222\n202771|0.77778\n202772|0.84722\n202773|0.73611\n202774|0.11111\n202775|0.083333\n202776|0.13889\n202777|0.45833\n202778|0.45833\n202779|0.41667\n202780|0.125\n202781|0.15278\n202782|0.11111\n202783|0.20833\n202784|0.375\n202785|0.38889\n202786|0.625\n202787|0.18056\n202788|0.26389\n202789|0.48611\n202790|0.30556\n202791|0.68056\n202792|0.84722\n202793|0.30556\n202794|0.45833\n202795|0.54167\n202796|0.75\n202797|0.70833\n202798|0.55556\n202799|0.65278\n202800|0.27778\n202801|0.5\n202802|0.11111\n202803|0.097222\n202804|0.25\n202805|0.23611\n202806|0.36111\n202807|0.70833\n202808|0.18056\n202809|0.25\n202810|0.22222\n202811|0.41667\n202812|0.79167\n202813|0.68056\n202814|0.625\n202815|0.47222\n202816|0.055556\n202817|0.61111\n202818|0.18056\n202819|0.5\n202820|0.5\n202821|0.36111\n202822|0.66667\n202823|0.63889\n202824|0.36111\n202825|0.54167\n202826|0.33333\n202827|0.625\n202828|0.56944\n202829|0.47222\n202830|0.11111\n202831|0.29167\n202832|0.26389\n202833|0.41667\n202834|0.29167\n202835|0.44444\n202836|0.18056\n202837|0.22222\n202838|0.13889\n202839|0.083333\n202840|0.33333\n202841|0.29167\n202842|0.44444\n202843|0.36111\n202844|0.29167\n202845|0.083333\n202846|0.25\n202847|0.48611\n202848|0.23611\n202849|0.38889\n202850|0.23611\n202851|0.15278\n202852|0.29167\n202853|0.5\n202854|0.51389\n202855|0.083333\n202856|0.125\n202857|0.68056\n202858|0.20833\n202859|0.36111\n202860|0.20833\n202861|0.30556\n202862|0.27778\n202863|0.29167\n202864|0.34722\n202865|0.19444\n202866|0.18056\n202867|0.38889\n202868|0.47222\n202869|0.097222\n202870|0.27778\n202871|0.125\n202872|0.22222\n202873|0.27778\n202874|0.48611\n202875|0.375\n202876|0.61111\n202877|0.66667\n202878|0.40278\n202879|0.30556\n202880|0.43056\n202881|0.33333\n202882|0.63889\n202883|0.18056\n202884|0.34722\n202885|0.41667\n202886|0.36111\n202887|0.31944\n202888|0.45833\n202889|0.66667\n202890|0.44444\n202891|0.41667\n202892|0.27778\n202893|0.38889\n202894|0.52778\n202895|0.40278\n202896|0.26389\n202897|0.25\n202898|0.26389\n202899|0\n202900|0.027778\n202901|0.63889\n202902|0.069444\n202903|0.30556\n202904|0.75\n202905|0.25\n202906|0.25\n202907|0.43056\n202908|0.5\n202909|0\n202910|0.34722\n202911|0.25\n202912|0.30556\n202913|0.13889\n202914|0.38889\n202915|0.47222\n202916|0.5\n202917|0.27778\n202918|0.33333\n202919|0.41667\n202920|0.36111\n202921|0.22222\n202922|0.125\n202923|0.15278\n202924|0.73611\n202925|0.70833\n202926|0.70833\n202927|0.65278\n202928|0.36111\n202929|0.27778\n202930|0.41667\n202931|0.47222\n202932|0.33333\n202933|0.13889\n202934|0.44444\n202935|0.30556\n202936|0.40278\n202937|0.26389\n202938|0.19444\n202939|0.66667\n202940|0.61111\n202941|0.75\n202942|0.72222\n202943|0.66667\n202944|0.36111\n202945|0.54167\n202946|0.68056\n202947|0.25\n202948|0.36111\n202949|0.30556\n202950|0.5\n202951|0.38889\n202952|0.52778\n202953|0.51389\n202954|0.54167\n202955|0.44444\n202956|0.63889\n202957|0.625\n202958|0.38889\n202959|0.51389\n202960|0.41667\n202961|0.375\n202962|0.79167\n202963|0.81944\n202964|0.72222\n202965|0.84722\n202966|0.44444\n202967|0.38889\n202968|0.31944\n202969|0.22222\n202970|0.22222\n202971|0.19444\n202972|0.20833\n202973|0.16667\n202974|0.27778\n202975|0.25\n202976|0.22222\n202977|0.27778\n202978|0.25\n202979|0.27778\n202980|0.625\n202981|0.83333\n202982|0.16667\n202983|0.16667\n202984|0.18056\n202985|0.23611\n202986|0.23611\n202987|0.097222\n202988|0.13889\n202989|0.40278\n202990|0.55556\n202991|0.16667\n202992|0.27778\n202993|0.13889\n202994|0.16667\n202995|0.5\n202996|0.58333\n202997|0.51389\n202998|0.18056\n202999|0.30556\n203000|0.33333\n203001|0.61111\n203002|0.83333\n203003|0.73611\n203004|0.56944\n203005|0.5\n203006|0.29167\n203007|0.5\n203008|0.36111\n203009|0.47222\n203010|0.29167\n203011|0.33333\n203012|0.29167\n203013|0.27778\n203014|0.70833\n203015|0.625\n203016|0.73611\n203017|0.375\n203018|0.55556\n203019|0.31944\n203020|0.11111\n203021|0.31944\n203022|0.29167\n203023|0.41667\n203024|0.33333\n203025|0.30556\n203026|0.083333\n203027|0.20833\n203028|0.15278\n203029|0.125\n203030|0.16667\n203031|0.5\n203032|0.31944\n203033|0.38889\n203034|0.22222\n203035|0.13889\n203036|0.34722\n203037|0.66667\n203038|0.23611\n203039|0.40278\n203040|0.25\n203041|0.44444\n203042|0.19444\n203043|0.27778\n203044|0.13889\n203045|0.40278\n203046|0.68056\n203047|0.27778\n203048|0.36111\n203049|0.31944\n203050|0.23611\n203051|0.27778\n203052|0.5\n203053|0.36111\n203054|0.5\n203055|0.40278\n203056|0.38889\n203057|0.51389\n203058|0.33333\n203059|0.33333\n203060|0.34722\n203061|0.25\n203062|0.44444\n203063|0.30556\n203064|0.125\n203065|0.27778\n203066|0.47222\n203067|0.097222\n203068|0.33333\n203069|0.25\n203070|0.22222\n203071|0.31944\n203072|0.36111\n203073|0.083333\n203074|0.375\n203075|0.27778\n203076|0.47222\n203077|0.25\n203078|0.33333\n203079|0.31944\n203080|0.48611\n203081|0.38889\n203082|0.16667\n203083|0.36111\n203084|0.29167\n203085|0.11111\n203086|0.22222\n203087|0.33333\n203088|0.54167\n203089|0.125\n203090|0.16667\n203091|0.083333\n203092|0.097222\n203093|0.125\n203094|0.055556\n203095|0.51389\n203096|0.34722\n203097|0.44444\n203098|0.31944\n203099|0.30556\n203100|0.055556\n203101|0.16667\n203102|0.52778\n203103|0.44444\n203104|0.18056\n203105|0.51389\n203106|0.22222\n203107|0.375\n203108|0.33333\n203109|0.27778\n203110|0.34722\n203111|0.54167\n203112|0.25\n203113|0.63889\n203114|0.79167\n203115|0.68056\n203116|0.125\n203117|0.23611\n203118|0.61111\n203119|0.25\n203120|0.20833\n203121|0.41667\n203122|0.5\n203123|0.48611\n203124|0.36111\n203125|0.125\n203126|0.44444\n203127|0.5\n203128|0.40278\n203129|0.63889\n203130|0.58333\n203131|0.47222\n203132|0.22222\n203133|0.25\n203134|0.5\n203135|0.26389\n203136|0.31944\n203137|0.44444\n203138|0.5\n203139|0.16667\n203140|0.16667\n203141|0.43056\n203142|0.44444\n203143|0.55556\n203144|0.54167\n203145|0.55556\n203146|0.40278\n203147|0.30556\n203148|0.38889\n203149|0.41667\n203150|0.51389\n203151|0.61111\n203152|0.30556\n203153|0.26389\n203154|0.36111\n203155|0.30556\n203156|0.72222\n203157|0.22222\n203158|0.33333\n203159|0.375\n203160|0.30556\n203161|0.44444\n203162|0.27778\n203163|0.44444\n203164|0.375\n203165|0.36111\n203166|0.23611\n203167|0.22222\n203168|0.375\n203169|0.56944\n203170|0.31944\n203171|0.38889\n203172|0.41667\n203173|0.36111\n203174|0.29167\n203175|0.36111\n203176|0.38889\n203177|0.375\n203178|0.20833\n203179|0.34722\n203180|0.5\n203181|0.22222\n203182|0.36111\n203183|0.54167\n203184|0.19444\n203185|0.055556\n203186|0.55556\n203187|0.51389\n203188|0.31944\n203189|0.36111\n203190|0.36111\n203191|0.45833\n203192|0.41667\n203193|0.22222\n203194|0.11111\n203195|0.38889\n203196|0.5\n203197|0.31944\n203198|0.36111\n203199|0.5\n203200|0.44444\n203201|0.43056\n203202|0.45833\n203203|0.16667\n203204|0.375\n203205|0.47222\n203206|0.43056\n203207|0.31944\n203208|0.33333\n203209|0.20833\n203210|0.38889\n203211|0.44444\n203212|0.31944\n203213|0.30556\n203214|0.25\n203215|0.44444\n203216|0.34722\n203217|0.23611\n203218|0.15278\n203219|0.29167\n203220|0.26389\n203221|0.23611\n203222|0.29167\n203223|0.40278\n203224|0.45833\n203225|0.44444\n203226|0.33333\n203227|0.45833\n203228|0.52778\n203229|0.70833\n203230|0.58333\n203231|0.44444\n203232|0.27778\n203233|0.51389\n203234|0.38889\n203235|0.16667\n203236|0.16667\n203237|0.44444\n203238|0.29167\n203239|0.5\n203240|0.47222\n203241|0.55556\n203242|0.66667\n203243|0.625\n203244|0.70833\n203245|0.29167\n203246|0.25\n203247|0.26389\n203248|0.44444\n203249|0.33333\n203250|0.40278\n203251|0.34722\n203252|0.22222\n203253|0.41667\n203254|0.33333\n203255|0.23611\n203256|0.23611\n203257|0.38889\n203258|0.38889\n203259|0.29167\n203260|0.52778\n203261|0.63889\n203262|0.29167\n203263|0.22222\n203264|0.25\n203265|0.125\n203266|0.33333\n203267|0.43056\n203268|0.30556\n203269|0.5\n203270|0.30556\n203271|0.38889\n203272|0.083333\n203273|0.34722\n203274|0.13889\n203275|0.30556\n203276|0.52778\n203277|0.55556\n203278|0.027778\n203279|0.11111\n203280|0.13889\n203281|0.16667\n203282|0.097222\n203283|0.22222\n203284|0.097222\n203285|0.13889\n203286|0.26389\n203287|0.43056\n203288|0.86111\n203289|0.93056\n203290|0.083333\n203291|0\n203292|0.055556\n203293|0.30556\n203294|0.375\n203295|0.26389\n203296|0.5\n203297|0.29167\n203298|0.45833\n203299|0.19444\n203300|0.18056\n203301|0.45833\n203302|0.5\n203303|0.22222\n203304|0.31944\n203305|0.38889\n203306|0.5\n203307|0.55556\n203308|0.69444\n203309|0.22222\n203310|0.18056\n203311|0.16667\n203312|0.041667\n203313|0.11111\n203314|0.30556\n203315|0.25\n203316|0.44444\n203317|0.27778\n203318|0.23611\n203319|0.63889\n203320|0.34722\n203321|0.15278\n203322|0.51389\n203323|0.77778\n203324|0.70833\n203325|0.88889\n203326|0.5\n203327|0.625\n203328|0.25\n203329|0.083333\n203330|0.80556\n203331|0.55556\n203332|0.19444\n203333|0.22222\n203334|0.29167\n203335|0.44444\n203336|0.44444\n203337|0.26389\n203338|0.34722\n203339|0.44444\n203340|0.375\n203341|0.52778\n203342|0.38889\n203343|0.40278\n203344|0.55556\n203345|0.27778\n203346|0.27778\n203347|0.33333\n203348|0.31944\n203349|0.069444\n203350|0.56944\n203351|0.44444\n203352|0.5\n203353|0.47222\n203354|0.51389\n203355|0.625\n203356|0.27778\n203357|0.19444\n203358|0.375\n203359|0.43056\n203360|0.41667\n203361|0.34722\n203362|0.11111\n203363|0.083333\n203364|0.43056\n203365|0.25\n203366|0.18056\n203367|0.30556\n203368|0.59722\n203369|0.36111\n203370|0.65278\n203371|0.45833\n203372|0.13889\n203373|0.31944\n203374|0.38889\n203375|0.44444\n203376|0.19444\n203377|0.44444\n203378|0.41667\n203379|0.48611\n203380|0.19444\n203381|0.43056\n203382|0.45833\n203383|0.27778\n203384|0.47222\n203385|0.45833\n203386|0.55556\n203387|0.19444\n203388|0.70833\n203389|0.11111\n203390|0.19444\n203391|0.15278\n203392|0.11111\n203393|0.22222\n203394|0.31944\n203395|0.25\n203396|0.23611\n203397|0.31944\n203398|0.40278\n203399|0.44444\n203400|0.5\n203401|0.23611\n203402|0.56944\n203403|0.73611\n203404|0.25\n203405|0.51389\n203406|0.083333\n203407|0\n203408|0.069444\n203409|0.47222\n203410|0.26389\n203411|0.18056\n203412|0.125\n203413|0.38889\n203414|0.47222\n203415|0.22222\n203416|0.33333\n203417|0.19444\n203418|0.63889\n203419|0.20833\n203420|0.13889\n203421|0.15278\n203422|0.19444\n203423|0.055556\n203424|0.34722\n203425|0.59722\n203426|0.44444\n203427|0.5\n203428|0.72222\n203429|0.55556\n203430|0.5\n203431|0.43056\n203432|0.20833\n203433|0.30556\n203434|0.61111\n203435|0.5\n203436|0.59722\n203437|0.36111\n203438|0.45833\n203439|0.20833\n203440|0.52778\n203441|0.5\n203442|0.68056\n203443|0.61111\n203444|0.40278\n203445|0.22222\n203446|0.26389\n203447|0.48611\n203448|0.31944\n203449|0.29167\n203450|0.30556\n203451|0.18056\n203452|0.19444\n203453|0.19444\n203454|0.44444\n203455|0.34722\n203456|0.45833\n203457|0.58333\n203458|0.61111\n203459|0.16667\n203460|0.15278\n203461|0.45833\n203462|0.25\n203463|0.34722\n203464|0.27778\n203465|0.55556\n203466|0.125\n203467|0.43056\n203468|0.44444\n203469|0.22222\n203470|0.5\n203471|0.55556\n203472|0.22222\n203473|0.16667\n203474|0.84722\n203475|0.77778\n203476|0.44444\n203477|0.34722\n203478|0.33333\n203479|0.38889\n203480|0.48611\n203481|0.5\n203482|0.33333\n203483|0.30556\n203484|0.27778\n203485|0.40278\n203486|0.47222\n203487|0.5\n203488|0.5\n203489|0.61111\n203490|0.38889\n203491|0.5\n203492|0.5\n203493|0.55556\n203494|0.27778\n203495|0.22222\n203496|0.55556\n203497|0.069444\n203498|0.13889\n203499|0.45833\n203500|0.38889\n203501|0.33333\n203502|0.20833\n203503|0.31944\n203504|0.88889\n203505|0.041667\n203506|0.27778\n203507|0.27778\n203508|0.125\n203509|0.5\n203510|0.27778\n203511|0.16667\n203512|0.27778\n203513|0.11111\n203514|0.375\n203515|0.36111\n203516|0.40278\n203517|0.27778\n203518|0.38889\n203519|0.19444\n203520|0.26389\n203521|0.26389\n203522|0.18056\n203523|0.20833\n203524|0.40278\n203525|0.43056\n203526|0.30556\n203527|0.40278\n203528|0.44444\n203529|0.36111\n203530|0.5\n203531|0.5\n203532|0.93056\n203533|0.36111\n203534|0.22222\n203535|0.5\n203536|0.34722\n203537|0.19444\n203538|0.15278\n203539|0.26389\n203540|0.5\n203541|0.61111\n203542|0.41667\n203543|0.38889\n203544|0.38889\n203545|0.27778\n203546|0.58333\n203547|0.76389\n203548|0.31944\n203549|0.26389\n203550|0.75\n203551|0.069444\n203552|0.44444\n203553|0.38889\n203554|0.26389\n203555|0.34722\n203556|0.27778\n203557|0.375\n203558|0.51389\n203559|0.5\n203560|0.43056\n203561|0.43056\n203562|0.38889\n203563|0.375\n203564|0.44444\n203565|0.20833\n203566|0.19444\n203567|0.5\n203568|0.26389\n203569|0.61111\n203570|0.51389\n203571|0.18056\n203572|0\n203573|0.47222\n203574|0.45833\n203575|0.5\n203576|0.5\n203577|0.5\n203578|0.34722\n203579|0.27778\n203580|0.52778\n203581|0.23611\n203582|0.625\n203583|0.18056\n203584|0.38889\n203585|0.36111\n203586|0.83333\n203587|0.43056\n203588|0.18056\n203589|0.56944\n203590|0.31944\n203591|0.38889\n203592|0.22222\n203593|0.36111\n203594|0.75\n203595|0.77778\n203596|0.25\n203597|0.375\n203598|0.11111\n203599|0.16667\n203600|0.25\n203601|0.13889\n203602|0.25\n203603|0.43056\n203604|0.11111\n203605|0.41667\n203606|0.31944\n203607|0.22222\n203608|0.45833\n203609|0.375\n203610|0.19444\n203611|0.30556\n203612|0.29167\n203613|0.43056\n203614|0.22222\n203615|0.25\n203616|0.375\n203617|0.27778\n203618|0.27778\n203619|0.47222\n203620|0.375\n203621|0.36111\n203622|0.34722\n203623|0.45833\n203624|0.30556\n203625|0.33333\n203626|0.34722\n203627|0.90278\n203628|0.75\n203629|0.26389\n203630|0.23611\n203631|0.58333\n203632|0.34722\n203633|0.19444\n203634|0.55556\n203635|0.25\n203636|0.34722\n203637|0.125\n203638|0.13889\n203639|0.66667\n203640|0.40278\n203641|0.16667\n203642|0.30556\n203643|0.20833\n203644|0.16667\n203645|0.31944\n203646|0.375\n203647|0.48611\n203648|0.30556\n203649|0.25\n203650|0.23611\n203651|0.18056\n203652|0.26389\n203653|0.19444\n203654|0.48611\n203655|0.33333\n203656|0.31944\n203657|0.48611\n203658|0.38889\n203659|0.38889\n203660|0.81944\n203661|0.31944\n203662|0.55556\n203663|0.33333\n203664|0.33333\n203665|0.25\n203666|0.30556\n203667|0.041667\n203668|0.11111\n203669|0.68056\n203670|0.5\n203671|0.54167\n203672|0.27778\n203673|0.22222\n203674|0.40278\n203675|0.26389\n203676|0.36111\n203677|0.25\n203678|0.48611\n203679|0.5\n203680|0.34722\n203681|0.22222\n203682|0.45833\n203683|0.33333\n203684|0.45833\n203685|0.38889\n203686|0.18056\n203687|0.86111\n203688|0.81944\n203689|0.55556\n203690|0.055556\n203691|0.069444\n203692|0.38889\n203693|0.20833\n203694|0.13889\n203695|0.083333\n203696|0.33333\n203697|0.29167\n203698|0.54167\n203699|0.38889\n203700|0.23611\n203701|0.31944\n203702|0.44444\n203703|0.38889\n203704|0.83333\n203705|0.77778\n203706|0.70833\n203707|0.81944\n203708|0.36111\n203709|0.27778\n203710|0.41667\n203711|0.45833\n203712|0.47222\n203713|0.5\n203714|0.33333\n203715|0.15278\n203716|0.5\n203717|0.5\n203718|0.375\n203719|0.55556\n203720|0.25\n203721|0.5\n203722|0.18056\n203723|0.19444\n203724|0.59722\n203725|0.81944\n203726|0.26389\n203727|0.29167\n203728|0.58333\n203729|0.19444\n203730|0.34722\n203731|0.44444\n203732|0.625\n203733|0.41667\n203734|0.58333\n203735|0.59722\n203736|0.55556\n203737|0.52778\n203738|0.23611\n203739|0.75\n203740|0.34722\n203741|0.43056\n203742|0.20833\n203743|0.36111\n203744|0.47222\n203745|0.72222\n203746|0.30556\n203747|0.45833\n203748|0.013889\n203749|0.5\n203750|0.34722\n203751|0.30556\n203752|0.15278\n203753|0.66667\n203754|0.29167\n203755|0.34722\n203756|0.23611\n203757|0.45833\n203758|0.45833\n203759|0.18056\n203760|0.52778\n203761|0.36111\n203762|0.33333\n203763|0.29167\n203764|0.77778\n203765|0.69444\n203766|0.27778\n203767|0.40278\n203768|0.43056\n203769|0.30556\n203770|0.36111\n203771|0.33333\n203772|0.26389\n203773|0.51389\n203774|0.51389\n203775|0.27778\n203776|0.29167\n203777|0.70833\n203778|0.41667\n203779|0.48611\n203780|0.16667\n203781|0.63889\n203782|0.45833\n203783|0.25\n203784|0.30556\n203785|0.5\n203786|0.43056\n203787|0.125\n203788|0.40278\n203789|0.40278\n203790|0.56944\n203791|0.54167\n203792|0.26389\n203793|0.33333\n203794|0.15278\n203795|0.27778\n203796|0.31944\n203797|0.56944\n203798|0.083333\n203799|0.27778\n203800|0.18056\n203801|0.25\n203802|0.40278\n203803|0.38889\n203804|0.63889\n203805|0.5\n203806|0.5\n203807|0.47222\n203808|0.44444\n203809|0.30556\n203810|0.5\n203811|0.33333\n203812|0.43056\n203813|0.23611\n203814|0.43056\n203815|0.23611\n203816|0.31944\n203817|0.75\n203818|0.22222\n203819|0.26389\n203820|0.18056\n203821|0.80556\n203822|0.77778\n203823|0.41667\n203824|0.25\n203825|0.56944\n203826|0.55556\n203827|0.625\n203828|0.125\n203829|0.5\n203830|0.5\n203831|0.27778\n203832|0.38889\n203833|0.54167\n203834|0.80556\n203835|0.375\n203836|0.375\n203837|0.26389\n203838|0.38889\n203839|0.45833\n203840|0.22222\n203841|0.47222\n203842|0.69444\n203843|0.61111\n203844|0.51389\n203845|0.31944\n203846|0.13889\n203847|0.40278\n203848|0.5\n203849|0.30556\n203850|0.25\n203851|0.27778\n203852|0.20833\n203853|0.59722\n203854|0.33333\n203855|0.16667\n203856|0.16667\n203857|0.5\n203858|0.5\n203859|0.44444\n203860|0.19444\n203861|0.25\n203862|0.625\n203863|0.34722\n203864|0.41667\n203865|0.43056\n203866|0.30556\n203867|0.31944\n203868|0.5\n203869|0.51389\n203870|0.34722\n203871|0.27778\n203872|0.75\n203873|0.5\n203874|0.68056\n203875|0.27778\n203876|0.47222\n203877|0.47222\n203878|0.36111\n203879|0.125\n203880|0.33333\n203881|0.23611\n203882|0.48611\n203883|0.27778\n203884|0.27778\n203885|0.625\n203886|0.5\n203887|0.375\n203888|0.55556\n203889|0.29167\n203890|0.36111\n203891|0.26389\n203892|0.13889\n203893|0.18056\n203894|0.29167\n203895|0.65278\n203896|0.5\n203897|0.27778\n203898|0.27778\n203899|0.19444\n203900|0.31944\n203901|0.5\n203902|0.375\n203903|0.44444\n203904|0.5\n203905|0.34722\n203906|0.27778\n203907|0.27778\n203908|0.41667\n203909|0.75\n203910|0.38889\n203911|0.56944\n203912|0.38889\n203913|0.63889\n203914|0.375\n203915|0.58333\n203916|0.66667\n203917|0.48611\n203918|0.59722\n203919|0.5\n203920|0.66667\n203921|0.51389\n203922|0.54167\n203923|0.26389\n203924|0.44444\n203925|0.5\n203926|0.38889\n203927|0.36111\n203928|0.29167\n203929|0.26389\n203930|0.16667\n203931|0.125\n203932|0.22222\n203933|0.68056\n203934|0.47222\n203935|0.33333\n203936|0.33333\n203937|0.40278\n203938|0.20833\n203939|0.47222\n203940|0.27778\n203941|0.27778\n203942|0.54167\n203943|0.27778\n203944|0.33333\n203945|0.27778\n203946|0.23611\n203947|0.5\n203948|0.44444\n203949|0.77778\n203950|0.41667\n203951|0.27778\n203952|0.29167\n203953|0.19444\n203954|0.31944\n203955|0.5\n203956|0.47222\n203957|0.36111\n203958|0.25\n203959|0.11111\n203960|0.45833\n203961|0.5\n203962|0.23611\n203963|0.30556\n203964|0.22222\n203965|0.30556\n203966|0.33333\n203967|0.625\n203968|0.45833\n203969|0.58333\n203970|0.48611\n203971|0.16667\n203972|0.40278\n203973|0.38889\n203974|0.375\n203975|0.43056\n203976|0.5\n203977|0.52778\n203978|0.625\n203979|0.34722\n203980|0.44444\n203981|0.19444\n203982|0.48611\n203983|0.38889\n203984|0.29167\n203985|0.55556\n203986|0.33333\n203987|0.47222\n203988|0.43056\n203989|0.5\n203990|0.36111\n203991|0.25\n203992|0.5\n203993|0.13889\n203994|0.34722\n203995|0.5\n203996|0.34722\n203997|0.31944\n203998|0.5\n203999|0.65278\n204000|0.5\n204001|0.22222\n204002|0.30556\n204003|0.5\n204004|0.44444\n204005|0.29167\n204006|0.30556\n204007|0.30556\n204008|0.375\n204009|0.22222\n204010|0.45833\n204011|0.61111\n204012|0.40278\n204013|0.15278\n204014|0.40278\n204015|0.13889\n204016|0.40278\n204017|0.375\n204018|0.5\n204019|0.54167\n204020|0.47222\n204021|0.083333\n204022|0.65278\n204023|0.29167\n204024|0.51389\n204025|0.33333\n204026|0.30556\n204027|0.36111\n204028|0.68056\n204029|0.65278\n204030|0.55556\n204031|0.30556\n204032|0.75\n204033|0.48611\n204034|0.72222\n204035|0.63889\n204036|0.055556\n204037|0.5\n204038|0.58333\n204039|0.5\n204040|0.16667\n204041|0\n204042|0.23611\n204043|0.55556\n204044|0.30556\n204045|0.23611\n204046|0.55556\n204047|0.47222\n204048|0.45833\n204049|0.055556\n204050|0.34722\n204051|0.48611\n204052|0.5\n204053|0.30556\n204054|0.5\n204055|0.61111\n204056|0.58333\n204057|0.41667\n204058|0.66667\n204059|0.5\n204060|0.48611\n204061|0.45833\n204062|0.23611\n204063|0.54167\n204064|0.77778\n204065|0.5\n204066|0.61111\n204067|0.47222\n204068|0.38889\n204069|0.31944\n204070|0.22222\n204071|0.34722\n204072|0.5\n204073|0.5\n204074|0.44444\n204075|0.5\n204076|0.48611\n204077|0.40278\n204078|0.43056\n204079|0.47222\n204080|0.43056\n204081|0.47222\n204082|0.58333\n204083|0.20833\n204084|0.29167\n204085|0.63889\n204086|0.20833\n204087|0.44444\n204088|0.31944\n204089|0.15278\n204090|0.27778\n204091|0.22222\n204092|0.56944\n204093|0.69444\n204094|0.72222\n204095|0.33333\n204096|0.23611\n204097|0.31944\n204098|0.5\n204099|0.5\n204100|0.45833\n204101|0.43056\n204102|0.58333\n204103|0.5\n204104|0.5\n204105|0.52778\n204106|0.52778\n204107|0.54167\n204108|0.66667\n204109|0.41667\n204110|0.43056\n204111|0.55556\n204112|0.23611\n204113|0.19444\n204114|0.56944\n204115|0.041667\n204116|0.5\n204117|0.59722\n204118|0.16667\n204119|0.5\n204120|0.44444\n204121|0.5\n204122|0.51389\n204123|0.66667\n204124|0.27778\n204125|0.26389\n204126|0.80556\n204127|0.5\n204128|0.5\n204129|0.36111\n204130|0.5\n204131|0.59722\n204132|0.52778\n204133|0.5\n204134|0.51389\n204135|0.38889\n204136|0.375\n204137|0.29167\n204138|0.5\n204139|0.5\n204140|0.52778\n204141|0.5\n204142|0.66667\n204143|0.29167\n204144|0.69444\n204145|0.73611\n204146|0.52778\n204147|0.55556\n204148|0.33333\n204149|0.36111\n204150|0.65278\n204151|0.59722\n204152|0.52778\n204153|0.30556\n204154|0.18056\n204155|0.5\n204156|0.56944\n204157|0.29167\n204158|0.55556\n204159|0.083333\n204160|0.44444\n204161|0.33333\n204162|0.29167\n204163|0.43056\n204164|0.45833\n204165|0.38889\n204166|0.25\n204167|0.47222\n204168|0.30556\n204169|0.18056\n204170|0.27778\n204171|0.41667\n204172|0.58333\n204173|0.59722\n204174|0.52778\n204175|0.5\n204176|0.34722\n204177|0.61111\n204178|0.27778\n204179|0.47222\n204180|0.5\n204181|0.58333\n204182|0.44444\n204183|0.5\n204184|0.44444\n204185|0.23611\n204186|0.41667\n204187|0.40278\n204188|0.5\n204189|0.23611\n204190|0.44444\n204191|0.33333\n204192|0.41667\n204193|0.63889\n204194|0.47222\n204195|0.5\n204196|0.23611\n204197|0.5\n204198|0.22222\n204199|0.61111\n204200|0.30556\n204201|0.5\n204202|0.58333\n204203|0.66667\n204204|0.44444\n204205|0.54167\n204206|0.20833\n204207|0.31944\n204208|0.11111\n204209|0.5\n204210|0.66667\n204211|0.44444\n204212|0.5\n204213|0.65278\n204214|0.48611\n204215|0.54167\n204216|0.38889\n204217|0.22222\n204218|0.16667\n204219|0.375\n204220|0.375\n204221|0.15278\n204222|0.5\n204223|0.48611\n204224|0.36111\n204225|0.5\n204226|0.27778\n204227|0.27778\n204228|0.61111\n204229|0.27778\n204230|0.20833\n204231|0.5\n204232|0.38889\n204233|0.45833\n204234|0.5\n204235|0.52778\n204236|0.55556\n204237|0.26389\n204238|0.29167\n204239|0.51389\n204240|0.5\n204241|0.5\n204242|0.38889\n204243|0.38889\n204244|0.72222\n204245|0.52778\n204246|0.38889\n204247|0.38889\n204248|0.48611\n204249|0.25\n204250|0.41667\n204251|0.47222\n204252|0.31944\n204253|0.25\n204254|0.5\n204255|0.5\n204256|0.45833\n204257|0.22222\n204258|0.56944\n204259|0.29167\n204260|0.80556\n204261|0.5\n204262|0.65278\n204263|0.29167\n204264|0.5\n204265|0.52778\n204266|0.5\n204267|0.45833\n204268|0.375\n204269|0.40278\n204270|0.27778\n204271|0.375\n204272|0.22222\n204273|0.66667\n204274|0.61111\n204275|0.55556\n204276|0.61111\n204277|0.41667\n204278|0.48611\n204279|0.58333\n204280|0.38889\n204281|0.43056\n204282|0.44444\n204283|0.23611\n204284|0.55556\n204285|0.5\n204286|0.66667\n204287|0.83333\n204288|0.5\n204289|0.5\n204290|0.5\n204291|0.65278\n204292|0.15278\n204293|0.66667\n204294|0.66667\n204295|0.68056\n204296|0.38889\n204297|0.5\n204298|0.5\n204299|0.52778\n204300|0.36111\n204301|0.55556\n204302|0.36111\n204303|0.48611\n204304|0.43056\n204305|0.44444\n204306|0.54167\n204307|0.5\n204308|0.41667\n204309|0.59722\n204310|0.44444\n204311|0.33333\n204312|0.5\n204313|0.23611\n204314|0.36111\n204315|0.69444\n204316|0.5\n204317|0.44444\n204318|0.79167\n204319|0.75\n204320|0.40278\n204321|0.75\n204322|0.54167\n204323|0.70833\n204324|0.5\n204325|0.34722\n204326|0.40278\n204327|0.45833\n204328|0.5\n204329|0.5\n204330|0.45833\n204331|0.19444\n204332|0.375\n204333|0.43056\n204334|0.61111\n204335|0.38889\n204336|0.5\n204337|0.44444\n204338|0.5\n204339|0.77778\n204340|0.5\n204341|0.40278\n204342|0.5\n204343|0.5\n204344|0.51389\n204345|0.5\n204346|0.5\n204347|0.55556\n204348|0.45833\n204349|0.47222\n204350|0.5\n204351|0.44444\n204352|0.25\n204353|0.34722\n204354|0.625\n204355|0.58333\n204356|0.5\n204357|0.51389\n204358|0.52778\n204359|0.52778\n204360|0.5\n204361|0.61111\n204362|0.59722\n204363|0.73611\n204364|0.47222\n204365|0.47222\n204366|0.61111\n204367|0.5\n204368|0.47222\n204369|0.5\n204370|0.38889\n204371|0.56944\n204372|0.33333\n204373|0.36111\n204374|0.65278\n204375|0.36111\n204376|0.36111\n204377|0.125\n204378|0.31944\n204379|0.45833\n204380|0.34722\n204381|0.19444\n204382|0.48611\n204383|0.33333\n204384|0.5\n204385|0.27778\n204386|0.22222\n204387|0.48611\n204388|0.38889\n204389|0.5\n204390|0.59722\n204391|0.41667\n204392|0.44444\n204393|0.48611\n204394|0.58333\n204395|0.45833\n204396|0.45833\n204397|0.56944\n204398|0.48611\n204399|0.81944\n204400|0.20833\n204401|0.097222\n204402|0\n204403|0.013889\n204404|0.30556\n204405|0.33333\n204406|0.27778\n204407|0.11111\n204408|0.5\n204409|0.56944\n204410|0.23611\n204411|0.66667\n204412|0.47222\n204413|0.5\n204414|0.5\n204415|0.72222\n204416|0.75\n204417|0.30556\n204418|0.20833\n204419|0.29167\n204420|0.22222\n204421|0.15278\n204422|0.5\n204423|0.51389\n204424|0.44444\n204425|0.5\n204426|0.43056\n204427|0.41667\n204428|0.45833\n204429|0.33333\n204430|0.36111\n204431|0.20833\n204432|0.19444\n204433|0.38889\n204434|0.38889\n204435|0.27778\n204436|0.38889\n204437|0.5\n204438|0.77778\n204439|0.5\n204440|0.375\n204441|0.33333\n204442|0.15278\n204443|0.59722\n204444|0.5\n204445|0.33333\n204446|0.43056\n204447|0.30556\n204448|0.34722\n204449|0.30556\n204450|0.19444\n204451|0.31944\n204452|0.33333\n204453|0.66667\n204454|0.29167\n204455|0.26389\n204456|0.5\n204457|0.20833\n204458|0.22222\n204459|0.23611\n204460|0.5\n204461|0.51389\n204462|0.27778\n204463|0.36111\n204464|0.22222\n204465|0.5\n204466|0.40278\n204467|0.40278\n204468|0.22222\n204469|0.36111\n204470|0.47222\n204471|0.22222\n204472|0.20833\n204473|0.22222\n204474|0.29167\n204475|0.15278\n204476|0.44444\n204477|0.26389\n204478|0.5\n204479|0.56944\n204480|0.34722\n204481|0.27778\n204482|0.097222\n204483|0.22222\n204484|0.66667\n204485|0.23611\n204486|0.33333\n204487|0.31944\n204488|0.63889\n204489|0.44444\n204490|0.30556\n204491|0.56944\n204492|0.61111\n204493|0.59722\n204494|0.84722\n204495|0.26389\n204496|0.33333\n204497|0.36111\n204498|0.5\n204499|0.44444\n204500|0.66667\n204501|0.38889\n204502|0.41667\n204503|0.45833\n204504|0.38889\n204505|0.52778\n204506|0.63889\n204507|0.63889\n204508|0.83333\n204509|0.48611\n204510|0.5\n204511|0.5\n204512|0.48611\n204513|0.22222\n204514|0.125\n204515|0.58333\n204516|0.36111\n204517|0.29167\n204518|0.26389\n204519|0.56944\n204520|0.65278\n204521|0.41667\n204522|0.65278\n204523|0.31944\n204524|0.29167\n204525|0.13889\n204526|0.59722\n204527|0.51389\n204528|0.58333\n204529|0.5\n204530|0.61111\n204531|0.76389\n204532|0.54167\n204533|0.52778\n204534|0.63889\n204535|0.5\n204536|0.70833\n204537|0.66667\n204538|0.54167\n204539|0.45833\n204540|0.5\n204541|0.59722\n204542|0.45833\n204543|0.45833\n204544|0.5\n204545|0.44444\n204546|0.55556\n204547|0.41667\n204548|0.54167\n204549|0.55556\n204550|0.47222\n204551|0.125\n204552|0.44444\n204553|0.45833\n204554|0.58333\n204555|0.5\n204556|0.5\n204557|0.5\n204558|0.625\n204559|0.55556\n204560|0.055556\n204561|0.36111\n204562|0.72222\n204563|0.5\n204564|0.5\n204565|0.16667\n204566|0.5\n204567|0.38889\n204568|0.44444\n204569|0.34722\n204570|0.34722\n204571|0.5\n204572|0.40278\n204573|0.5\n204574|0.44444\n204575|0.45833\n204576|0.66667\n204577|0.5\n204578|0.5\n204579|0.54167\n204580|0.59722\n204581|0.43056\n204582|0.19444\n204583|0.375\n204584|0.63889\n204585|0.27778\n204586|0.61111\n204587|0.5\n204588|0.54167\n204589|0.5\n204590|0.48611\n204591|0.375\n204592|0.27778\n204593|0.69444\n204594|0.55556\n204595|0.27778\n204596|0.59722\n204597|0.13889\n204598|0.083333\n204599|0.43056\n204600|0.16667\n204601|0.68056\n204602|0.5\n204603|0.33333\n204604|0.36111\n204605|0.23611\n204606|0.18056\n204607|0.22222\n204608|0.34722\n204609|0.5\n204610|0.51389\n204611|0.43056\n204612|0.72222\n204613|0.47222\n204614|0.43056\n204615|0.625\n204616|0.47222\n204617|0.5\n204618|0.625\n204619|0.36111\n204620|0.27778\n204621|0.375\n204622|0.16667\n204623|0.375\n204624|0.26389\n204625|0.19444\n204626|0.20833\n204627|0.26389\n204628|0.16667\n204629|0.25\n204630|0.31944\n204631|0.20833\n204632|0.33333\n204633|0.13889\n204634|0.38889\n204635|0.47222\n204636|0.15278\n204637|0.29167\n204638|0.29167\n204639|0.33333\n204640|0.31944\n204641|0.26389\n204642|0.51389\n204643|0.20833\n204644|0.34722\n204645|0.18056\n204646|0.25\n204647|0.31944\n204648|0.23611\n204649|0.23611\n204650|0.16667\n204651|0.20833\n204652|0.22222\n204653|0.22222\n204654|0.375\n204655|0.47222\n204656|0.25\n204657|0.22222\n204658|0.27778\n204659|0.36111\n204660|0.23611\n204661|0.18056\n204662|0.44444\n204663|0.25\n204664|0.29167\n204665|0.40278\n204666|0.29167\n204667|0.29167\n204668|0.23611\n204669|0.27778\n204670|0.22222\n204671|0.22222\n204672|0.34722\n204673|0.41667\n204674|0.19444\n204675|0.19444\n204676|0.34722\n204677|0.22222\n204678|0.16667\n204679|0.19444\n204680|0.52778\n204681|0.48611\n204682|0.48611\n204683|0.5\n204684|0.5\n204685|0.5\n204686|0.5\n204687|0.47222\n204688|0.38889\n204689|0.36111\n204690|0.36111\n204691|0.5\n204692|0.5\n204693|0.36111\n204694|0.34722\n204695|0.27778\n204696|0.5\n204697|0.45833\n204698|0.26389\n204699|0.27778\n204700|0.52778\n204701|0.5\n204702|0.47222\n204703|0.5\n204704|0.54167\n204705|0.5\n204706|0.52778\n204707|0.27778\n204708|0.40278\n204709|0.5\n204710|0.5\n204711|0.51389\n204712|0.56944\n204713|0.48611\n204714|0.5\n204715|0.41667\n204716|0.48611\n204717|0.41667\n204718|0.65278\n204719|0.40278\n204720|0.38889\n204721|0.72222\n204722|0.5\n204723|0.33333\n204724|0.51389\n204725|0.48611\n204726|0.5\n204727|0.5\n204728|0.5\n204729|0.48611\n204730|0.66667\n204731|0.61111\n204732|0.40278\n204733|0.16667\n204734|0.44444\n204735|0.66667\n204736|0.79167\n204737|0.48611\n204738|0.33333\n204739|0.80556\n204740|0.38889\n204741|0.5\n204742|0.27778\n204743|0.36111\n204744|0.58333\n204745|0.43056\n204746|0.52778\n204747|0.33333\n204748|0.33333\n204749|0.52778\n204750|0.41667\n204751|0.79167\n204752|0.5\n204753|0.36111\n204754|0.38889\n204755|0.375\n204756|0.36111\n204757|0.38889\n204758|0.18056\n204759|0.33333\n204760|0.56944\n204761|0.23611\n204762|0.23611\n204763|0.25\n204764|0.11111\n204765|0.70833\n204766|0.61111\n204767|0.5\n204768|0.625\n204769|0.54167\n204770|0.5\n204771|0.48611\n204772|0.18056\n204773|0.33333\n204774|0.19444\n204775|0.58333\n204776|0.5\n204777|0.55556\n204778|0.5\n204779|0.625\n204780|0.26389\n204781|0.27778\n204782|0.40278\n204783|0.51389\n204784|0.27778\n204785|0.45833\n204786|0.5\n204787|0.58333\n204788|0.63889\n204789|0.5\n204790|0.58333\n204791|0.5\n204792|0.55556\n204793|0.40278\n204794|0.30556\n204795|0.375\n204796|0.55556\n204797|0.45833\n204798|0.79167\n204799|0.31944\n204800|0.29167\n204801|0.36111\n204802|0.055556\n204803|0.48611\n204804|0.18056\n204805|0.66667\n204806|0.61111\n204807|0.54167\n204808|0.33333\n204809|0.125\n204810|0.48611\n204811|0.25\n204812|0.33333\n204813|0.26389\n204814|0.16667\n204815|0.125\n204816|0.40278\n204817|0.31944\n204818|0.20833\n204819|0.23611\n204820|0.56944\n204821|0.33333\n204822|0.44444\n204823|0.5\n204824|0.45833\n204825|0.41667\n204826|0.36111\n204827|0.51389\n204828|0.36111\n204829|0.38889\n204830|0.5\n204831|0.54167\n204832|0.22222\n204833|0.55556\n204834|0.36111\n204835|0.375\n204836|0.20833\n204837|0.38889\n204838|0.19444\n204839|0.61111\n204840|0.36111\n204841|0.51389\n204842|0.51389\n204843|0.59722\n204844|0.5\n204845|0.5\n204846|0.56944\n204847|0.55556\n204848|0.33333\n204849|0.5\n204850|0.31944\n204851|0.5\n204852|0.15278\n204853|0.51389\n204854|0.41667\n204855|0.5\n204856|0.5\n204857|0.27778\n204858|0.47222\n204859|0.47222\n204860|0.38889\n204861|0.22222\n204862|0.33333\n204863|0.33333\n204864|0.38889\n204865|0.23611\n204866|0.43056\n204867|0.55556\n204868|0.38889\n204869|0.30556\n204870|0.40278\n204871|0.65278\n204872|0.5\n204873|0.44444\n204874|0.58333\n204875|0.40278\n204876|0.26389\n204877|0.34722\n204878|0.38889\n204879|0.40278\n204880|0.41667\n204881|0.47222\n204882|0.27778\n204883|0.22222\n204884|0.47222\n204885|0.48611\n204886|0.40278\n204887|0.5\n204888|0.41667\n204889|0.20833\n204890|0.27778\n204891|0.25\n204892|0.5\n204893|0.45833\n204894|0.48611\n204895|0.29167\n204896|0.29167\n204897|0.33333\n204898|0.5\n204899|0.33333\n204900|0.47222\n204901|0.5\n204902|0.43056\n204903|0.40278\n204904|0.44444\n204905|0.5\n204906|0.41667\n204907|0.5\n204908|0.66667\n204909|0.59722\n204910|0.55556\n204911|0.41667\n204912|0.26389\n204913|0.22222\n204914|0.44444\n204915|0.5\n204916|0.51389\n204917|0.75\n204918|0.5\n204919|0.61111\n204920|0.5\n204921|0.5\n204922|0.5\n204923|0.5\n204924|0.77778\n204925|0.63889\n204926|0.69444\n204927|0.55556\n204928|0.52778\n204929|0.58333\n204930|0.15278\n204931|0.23611\n204932|0.29167\n204933|0.61111\n204934|0.41667\n204935|0.41667\n204936|0.30556\n204937|0.55556\n204938|0.66667\n204939|0.55556\n204940|0.5\n204941|0.58333\n204942|0.52778\n204943|0.61111\n204944|0.48611\n204945|0.68056\n204946|0.29167\n204947|0.38889\n204948|0.38889\n204949|0.59722\n204950|0.58333\n204951|0.27778\n204952|0.59722\n204953|0.52778\n204954|0.47222\n204955|0.22222\n204956|0.625\n204957|0.5\n204958|0.5\n204959|0.5\n204960|0.5\n204961|0.29167\n204962|0.22222\n204963|0.125\n204964|0.5\n204965|0.36111\n204966|0.48611\n204967|0.58333\n204968|0.48611\n204969|0.375\n204970|0.59722\n204971|0.40278\n204972|0.51389\n204973|0.44444\n204974|0.5\n204975|0.48611\n204976|0.18056\n204977|0.38889\n204978|0.18056\n204979|0.61111\n204980|0.38889\n204981|0.63889\n204982|0.52778\n204983|0.61111\n204984|0.52778\n204985|0.5\n204986|0.61111\n204987|0.58333\n204988|0.5\n204989|0.54167\n204990|0.25\n204991|0.66667\n204992|0.56944\n204993|0.55556\n204994|0.11111\n204995|0.51389\n204996|0.48611\n204997|0.625\n204998|0.27778\n204999|0.61111\n205000|0.5\n205001|0.59722\n205002|0.56944\n205003|0.43056\n205004|0.16667\n205005|0.45833\n205006|0.38889\n205007|0.34722\n205008|0.63889\n205009|0.41667\n205010|0.36111\n205011|0.38889\n205012|0.44444\n205013|0.48611\n205014|0.30556\n205015|0.20833\n205016|0.31944\n205017|0.43056\n205018|0.41667\n205019|0.30556\n205020|0.38889\n205021|0.47222\n205022|0.29167\n205023|0.69444\n205024|0.625\n205025|0.27778\n205026|0.36111\n205027|0.27778\n205028|0.30556\n205029|0.36111\n205030|0.31944\n205031|0.44444\n205032|0.18056\n205033|0.36111\n205034|0.31944\n205035|0.68056\n205036|0.29167\n205037|0.27778\n205038|0.61111\n205039|0.16667\n205040|0.52778\n205041|0.125\n205042|0.33333\n205043|0.22222\n205044|0.13889\n205045|0.20833\n205046|0.27778\n205047|0.26389\n205048|0.54167\n205049|0.63889\n205050|0.45833\n205051|0.083333\n205052|0.31944\n205053|0.51389\n205054|0.33333\n205055|0.44444\n205056|0.5\n205057|0.29167\n205058|0.44444\n205059|0.55556\n205060|0.20833\n205061|0.5\n205062|0.19444\n205063|0.23611\n205064|0.44444\n205065|0.52778\n205066|0.48611\n205067|0.66667\n205068|0.5\n205069|0.5\n205070|0.58333\n205071|0.59722\n205072|0.51389\n205073|0.27778\n205074|0.22222\n205075|0.56944\n205076|0.33333\n205077|0.51389\n205078|0.5\n205079|0.26389\n205080|0.375\n205081|0.40278\n205082|0.51389\n205083|0.5\n205084|0.51389\n205085|0.5\n205086|0.26389\n205087|0.41667\n205088|0.26389\n205089|0.5\n205090|0.23611\n205091|0.5\n205092|0.54167\n205093|0.33333\n205094|0.33333\n205095|0.40278\n205096|0.69444\n205097|0.70833\n205098|0.56944\n205099|0.19444\n205100|0.20833\n205101|0.055556\n205102|0.65278\n205103|0.25\n205104|0.33333\n205105|0.41667\n205106|0.41667\n205107|0.48611\n205108|0.27778\n205109|0.59722\n205110|0.38889\n205111|0.36111\n205112|0.31944\n205113|0.65278\n205114|0.31944\n205115|0.26389\n205116|0.55556\n205117|0.43056\n205118|0.56944\n205119|0.22222\n205120|0.38889\n205121|0.375\n205122|0.44444\n205123|0.13889\n205124|0.29167\n205125|0.58333\n205126|0.56944\n205127|0.76389\n205128|0.77778\n205129|0.47222\n205130|0.41667\n205131|0.5\n205132|0.18056\n205133|0.34722\n205134|0.45833\n205135|0.68056\n205136|0.59722\n205137|0.625\n205138|0.55556\n205139|0.5\n205140|0.41667\n205141|0.40278\n205142|0.22222\n205143|0.22222\n205144|0.22222\n205145|0.29167\n205146|0.33333\n205147|0.23611\n205148|0.48611\n205149|0.31944\n205150|0.41667\n205151|0.51389\n205152|0.30556\n205153|0.47222\n205154|0.22222\n205155|0.375\n205156|0.36111\n205157|0.38889\n205158|0.41667\n205159|0.48611\n205160|0.22222\n205161|0.36111\n205162|0.40278\n205163|0.30556\n205164|0.54167\n205165|0.48611\n205166|0.47222\n205167|0.34722\n205168|0.5\n205169|0.44444\n205170|0.5\n205171|0.5\n205172|0.51389\n205173|0.22222\n205174|0.19444\n205175|0.29167\n205176|0.44444\n205177|0.375\n205178|0.22222\n205179|0.59722\n205180|0.61111\n205181|0.26389\n205182|0.48611\n205183|0.41667\n205184|0.33333\n205185|0.13889\n205186|0.15278\n205187|0.33333\n205188|0.30556\n205189|0.34722\n205190|0.19444\n205191|0.33333\n205192|0.30556\n205193|0.13889\n205194|0.15278\n205195|0.36111\n205196|0.41667\n205197|0.38889\n205198|0.5\n205199|0.5\n205200|0.59722\n205201|0.44444\n205202|0.52778\n205203|0.5\n205204|0.34722\n205205|0.47222\n205206|0.34722\n205207|0.34722\n205208|0.27778\n205209|0.55556\n205210|0.38889\n205211|0.48611\n205212|0.22222\n205213|0.52778\n205214|0.40278\n205215|0.40278\n205216|0.44444\n205217|0.48611\n205218|0.45833\n205219|0.54167\n205220|0.5\n205221|0.5\n205222|0.27778\n205223|0.26389\n205224|0.25\n205225|0.33333\n205226|0.15278\n205227|0.40278\n205228|0.16667\n205229|0.38889\n205230|0.29167\n205231|0.31944\n205232|0.30556\n205233|0.5\n205234|0.34722\n205235|0.59722\n205236|0.44444\n205237|0.22222\n205238|0.63889\n205239|0.31944\n205240|0.44444\n205241|0.38889\n205242|0.29167\n205243|0.25\n205244|0.51389\n205245|0.44444\n205246|0.29167\n205247|0.33333\n205248|0.18056\n205249|0.52778\n205250|0.16667\n205251|0.375\n205252|0.5\n205253|0.47222\n205254|0.52778\n205255|0.66667\n205256|0.26389\n205257|0.33333\n205258|0.38889\n205259|0.55556\n205260|0.72222\n205261|0.51389\n205262|0.72222\n205263|0.76389\n205264|0.83333\n205265|0.38889\n205266|0.27778\n205267|0.48611\n205268|0.5\n205269|0.48611\n205270|0.31944\n205271|0.58333\n205272|0.44444\n205273|0.5\n205274|0.48611\n205275|0.5\n205276|0.63889\n205277|0.5\n205278|0.33333\n205279|0.26389\n205280|0.52778\n205281|0.44444\n205282|0.41667\n205283|0.66667\n205284|0.77778\n205285|0.38889\n205286|0.25\n205287|0.16667\n205288|0.48611\n205289|0.40278\n205290|0.23611\n205291|0.16667\n205292|0.375\n205293|0.25\n205294|0.43056\n205295|0.5\n205296|0.54167\n205297|0.38889\n205298|0.5\n205299|0.31944\n205300|0.45833\n205301|0.48611\n205302|0.47222\n205303|0.375\n205304|0.33333\n205305|0.5\n205306|0.5\n205307|0.48611\n205308|0.27778\n205309|0.72222\n205310|0.51389\n205311|0.36111\n205312|0.29167\n205313|0.41667\n205314|0.5\n205315|0.27778\n205316|0.5\n205317|0.5\n205318|0.5\n205319|0.5\n205320|0.5\n205321|0.19444\n205322|0.20833\n205323|0.5\n205324|0.5\n205325|0.45833\n205326|0.66667\n205327|0.5\n205328|0.51389\n205329|0.66667\n205330|0.375\n205331|0.55556\n205332|0.66667\n205333|0.20833\n205334|0.55556\n205335|0.33333\n205336|0.58333\n205337|0.47222\n205338|0.5\n205339|0.48611\n205340|0.54167\n205341|0.44444\n205342|0.15278\n205343|0.26389\n205344|0.34722\n205345|0.27778\n205346|0.16667\n205347|0.63889\n205348|0.5\n205349|0.23611\n205350|0.23611\n205351|0.125\n205352|0.20833\n205353|0.36111\n205354|0.13889\n205355|0.5\n205356|0.44444\n205357|0.5\n205358|0.55556\n205359|0.5\n205360|0.48611\n205361|0.33333\n205362|0.19444\n205363|0.44444\n205364|0.72222\n205365|0.45833\n205366|0.5\n205367|0.5\n205368|0.43056\n205369|0.73611\n205370|0.51389\n205371|0.5\n205372|0.33333\n205373|0.43056\n205374|0.52778\n205375|0.38889\n205376|0.44444\n205377|0.48611\n205378|0.38889\n205379|0.70833\n205380|0.77778\n205381|0.81944\n205382|0.5\n205383|0.23611\n205384|0.20833\n205385|0.18056\n205386|0.56944\n205387|0.5\n205388|0.38889\n205389|0.31944\n205390|0.47222\n205391|0.34722\n205392|0.5\n205393|0.38889\n205394|0.44444\n205395|0.52778\n205396|0.22222\n205397|0.26389\n205398|0.44444\n205399|0.36111\n205400|0.36111\n205401|0.375\n205402|0.33333\n205403|0.27778\n205404|0.33333\n205405|0.33333\n205406|0.22222\n205407|0.5\n205408|0.5\n205409|0.23611\n205410|0.45833\n205411|0.33333\n205412|0.22222\n205413|0.25\n205414|0.20833\n205415|0.055556\n205416|0.47222\n205417|0.25\n205418|0.27778\n205419|0.22222\n205420|0.31944\n205421|0.22222\n205422|0.36111\n205423|0.16667\n205424|0.41667\n205425|0.31944\n205426|0.59722\n205427|0.59722\n205428|0.33333\n205429|0.54167\n205430|0.41667\n205431|0.43056\n205432|0.16667\n205433|0.43056\n205434|0.27778\n205435|0.44444\n205436|0.34722\n205437|0.51389\n205438|0.20833\n205439|0.5\n205440|0.65278\n205441|0.23611\n205442|0.375\n205443|0.30556\n205444|0.5\n205445|0.61111\n205446|0.44444\n205447|0.58333\n205448|0.19444\n205449|0.5\n205450|0.5\n205451|0.38889\n205452|0.27778\n205453|0.48611\n205454|0.13889\n205455|0.013889\n205456|0.20833\n205457|0.22222\n205458|0.44444\n205459|0.5\n205460|0.51389\n205461|0.27778\n205462|0.20833\n205463|0.40278\n205464|0.22222\n205465|0.5\n205466|0.47222\n205467|0.66667\n205468|0.54167\n205469|0.5\n205470|0.94444\n205471|0.5\n205472|0.44444\n205473|0.16667\n205474|0.18056\n205475|0.77778\n205476|0.79167\n205477|0.81944\n205478|0.30556\n205479|0.44444\n205480|0.5\n205481|0.59722\n205482|0.44444\n205483|0.22222\n205484|0.20833\n205485|0.36111\n205486|0.18056\n205487|0.30556\n205488|0.30556\n205489|0.26389\n205490|0.38889\n205491|0.38889\n205492|0.38889\n205493|0.25\n205494|0.16667\n205495|0.29167\n205496|0.16667\n205497|0.38889\n205498|0.36111\n205499|0.27778\n205500|0.33333\n205501|0.38889\n205502|0.38889\n205503|0.54167\n205504|0.26389\n205505|0.27778\n205506|0.19444\n205507|0.23611\n205508|0.48611\n205509|0.40278\n205510|0.5\n205511|0.26389\n205512|0.51389\n205513|0.22222\n205514|0.59722\n205515|0.65278\n205516|0.41667\n205517|0.13889\n205518|0.31944\n205519|0.56944\n205520|0.54167\n205521|0.41667\n205522|0.26389\n205523|0.55556\n205524|0.40278\n205525|0.44444\n205526|0.41667\n205527|0.5\n205528|0.48611\n205529|0.5\n205530|0.44444\n205531|0.22222\n205532|0.33333\n205533|0.61111\n205534|0.43056\n205535|0.54167\n205536|0.44444\n205537|0.34722\n205538|0.25\n205539|0.5\n205540|0.69444\n205541|0.55556\n205542|0.88889\n205543|0.63889\n205544|0.5\n205545|0.51389\n205546|0.44444\n205547|0.47222\n205548|0.5\n205549|0.47222\n205550|0.51389\n205551|0.47222\n205552|0.44444\n205553|0.54167\n205554|0.51389\n205555|0.5\n205556|0.45833\n205557|0.26389\n205558|0.43056\n205559|0.70833\n205560|0.59722\n205561|0.73611\n205562|0.72222\n205563|0.72222\n205564|0.40278\n205565|0.72222\n205566|0.5\n205567|0.51389\n205568|0.47222\n205569|0.27778\n205570|0.55556\n205571|0.66667\n205572|0.55556\n205573|0.33333\n205574|0.55556\n205575|0.083333\n205576|0.041667\n205577|0.875\n205578|0.45833\n205579|0.58333\n205580|0.59722\n205581|0.56944\n205582|0.48611\n205583|0.55556\n205584|0.33333\n205585|0.45833\n205586|0.5\n205587|0.69444\n205588|0.5\n205589|0.44444\n205590|0.38889\n205591|0.77778\n205592|0.44444\n205593|0.52778\n205594|0.33333\n205595|0.33333\n205596|0.125\n205597|0.19444\n205598|0.5\n205599|0.72222\n205600|0.58333\n205601|0.84722\n205602|0.375\n205603|0.66667\n205604|0.44444\n205605|0.43056\n205606|0.66667\n205607|0.54167\n205608|0.625\n205609|0.83333\n205610|0.25\n205611|0.48611\n205612|0.63889\n205613|0.30556\n205614|0.40278\n205615|0.19444\n205616|0.44444\n205617|0.625\n205618|0.41667\n205619|0.83333\n205620|0.5\n205621|0.61111\n205622|0.5\n205623|0.25\n205624|0.56944\n205625|0.41667\n205626|0.48611\n205627|0.44444\n205628|0.29167\n205629|0.38889\n205630|0.44444\n205631|0.54167\n205632|0.33333\n205633|0.33333\n205634|0.5\n205635|0.63889\n205636|0.33333\n205637|0.23611\n205638|0.61111\n205639|0.45833\n205640|0.38889\n205641|0.75\n205642|0.69444\n205643|0.66667\n205644|0.47222\n205645|0.55556\n205646|0.73611\n205647|0.79167\n205648|0.66667\n205649|0.5\n205650|0.44444\n205651|0.65278\n205652|0.5\n205653|0.65278\n205654|0.66667\n205655|0.56944\n205656|0.56944\n205657|0.44444\n205658|0.43056\n205659|0.22222\n205660|0.48611\n205661|0.34722\n205662|0.5\n205663|0.5\n205664|0.5\n205665|0.5\n205666|0.5\n205667|0.52778\n205668|0.44444\n205669|0.5\n205670|0.25\n205671|0.41667\n205672|0.55556\n205673|0.55556\n205674|0.51389\n205675|0.52778\n205676|0.5\n205677|0.54167\n205678|0.23611\n205679|0.375\n205680|0.26389\n205681|0.375\n205682|0.66667\n205683|0.77778\n205684|0.47222\n205685|0.63889\n205686|0.375\n205687|0.5\n205688|0.59722\n205689|0.61111\n205690|0.26389\n205691|0.59722\n205692|0.25\n205693|0.29167\n205694|0.44444\n205695|0.61111\n205696|0.27778\n205697|0.47222\n205698|0.59722\n205699|0.55556\n205700|0.40278\n205701|0.40278\n205702|0.61111\n205703|0.41667\n205704|0.61111\n205705|0.52778\n205706|0.44444\n205707|0.36111\n205708|0.30556\n205709|0.13889\n205710|0.25\n205711|0.27778\n205712|0.48611\n205713|0.61111\n205714|0.625\n205715|0.72222\n205716|0.76389\n205717|0.20833\n205718|0.26389\n205719|0.47222\n205720|0.33333\n205721|0.40278\n205722|0.36111\n205723|0.5\n205724|0.27778\n205725|0.29167\n205726|0.61111\n205727|0.23611\n205728|0.16667\n205729|0.5\n205730|0.5\n205731|0.13889\n205732|0.22222\n205733|0.48611\n205734|0.20833\n205735|0.125\n205736|0.55556\n205737|0.56944\n205738|0.34722\n205739|0.51389\n205740|0.75\n205741|0.5\n205742|0.47222\n205743|0.5\n205744|0.58333\n205745|0.125\n205746|0.26389\n205747|0.30556\n205748|0.5\n205749|0.31944\n205750|0.56944\n205751|0.30556\n205752|0.30556\n205753|0.38889\n205754|0.5\n205755|0.5\n205756|0.41667\n205757|0.29167\n205758|0.18056\n205759|0.31944\n205760|0.58333\n205761|0.79167\n205762|0.56944\n205763|0.5\n205764|0.58333\n205765|0.65278\n205766|0.41667\n205767|0.51389\n205768|0.38889\n205769|0.61111\n205770|0.48611\n205771|0.58333\n205772|0.56944\n205773|0.59722\n205774|0.5\n205775|0.59722\n205776|0.69444\n205777|0.43056\n205778|0.43056\n205779|0.34722\n205780|0.58333\n205781|0.36111\n205782|0.25\n205783|0.26389\n205784|0.68056\n205785|0.52778\n205786|0.11111\n205787|0.15278\n205788|0.61111\n205789|0.23611\n205790|0.22222\n205791|0.55556\n205792|0.65278\n205793|0.83333\n205794|0.55556\n205795|0.47222\n205796|0.61111\n205797|0.18056\n205798|0.33333\n205799|0.27778\n205800|0.375\n205801|0.43056\n205802|0.30556\n205803|0.52778\n205804|0.5\n205805|0.56944\n205806|0.375\n205807|0.31944\n205808|0.13889\n205809|0.76389\n205810|0.44444\n205811|0.45833\n205812|0.56944\n205813|0.13889\n205814|0.58333\n205815|0.5\n205816|0.47222\n205817|0.38889\n205818|0.5\n205819|0.83333\n205820|0.5\n205821|0.45833\n205822|0.5\n205823|0.5\n205824|0.52778\n205825|0.375\n205826|0.77778\n205827|0.51389\n205828|0.63889\n205829|0.51389\n205830|0.51389\n205831|0.54167\n205832|0.52778\n205833|0.61111\n205834|0.36111\n205835|0.36111\n205836|0.56944\n205837|0.58333\n205838|0.48611\n205839|0.5\n205840|0.44444\n205841|0.36111\n205842|0.29167\n205843|0.5\n205844|0.5\n205845|0.22222\n205846|0.61111\n205847|0.58333\n205848|0.59722\n205849|0.47222\n205850|0.34722\n205851|0.47222\n205852|0.5\n205853|0.33333\n205854|0.63889\n205855|0.65278\n205856|0.63889\n205857|0.5\n205858|0.5\n205859|0.38889\n205860|0.56944\n205861|0.38889\n205862|0.33333\n205863|0.5\n205864|0.5\n205865|0.20833\n205866|0.33333\n205867|0.45833\n205868|0.5\n205869|0.40278\n205870|0.5\n205871|0\n205872|0.16667\n205873|0.45833\n205874|0.94444\n205875|0.58333\n205876|0.84722\n205877|0.41667\n205878|0.25\n205879|0.5\n205880|0.45833\n205881|0.38889\n205882|0.625\n205883|0.51389\n205884|0.55556\n205885|0.33333\n205886|0.48611\n205887|0.5\n205888|0.11111\n205889|0.54167\n205890|0.63889\n205891|0.20833\n205892|0.55556\n205893|0.5\n205894|0.44444\n205895|0.31944\n205896|0.59722\n205897|0.5\n205898|0.41667\n205899|0.55556\n205900|0.52778\n205901|0.33333\n205902|0.51389\n205903|0.18056\n205904|0.38889\n205905|0.38889\n205906|0.45833\n205907|0.65278\n205908|0.43056\n205909|0.11111\n205910|0.56944\n205911|0.29167\n205912|0.58333\n205913|0.48611\n205914|0.38889\n205915|0.055556\n205916|0.097222\n205917|0.31944\n205918|0.52778\n205919|0.77778\n205920|0.30556\n205921|0.375\n205922|0.31944\n205923|0.59722\n205924|0.40278\n205925|0.26389\n205926|0.52778\n205927|0.33333\n205928|0.41667\n205929|0.27778\n205930|0.43056\n205931|0.30556\n205932|0.51389\n205933|0.41667\n205934|0.5\n205935|0.5\n205936|0.31944\n205937|0.22222\n205938|0.44444\n205939|0.43056\n205940|0.38889\n205941|0.055556\n205942|0.18056\n205943|0.51389\n205944|0.20833\n205945|0.22222\n205946|0.65278\n205947|0.30556\n205948|0.51389\n205949|0.625\n205950|0.31944\n205951|0.31944\n205952|0.25\n205953|0.48611\n205954|0.47222\n205955|0.31944\n205956|0.33333\n205957|0.5\n205958|0.29167\n205959|0.61111\n205960|0.22222\n205961|0.43056\n205962|0.38889\n205963|0.22222\n205964|0.54167\n205965|0.5\n205966|0.25\n205967|0.30556\n205968|0.38889\n205969|0.5\n205970|0.15278\n205971|0.40278\n205972|0.40278\n205973|0.52778\n205974|0.5\n205975|0.33333\n205976|0.5\n205977|0.45833\n205978|0.54167\n205979|0.11111\n205980|0.097222\n205981|0.33333\n205982|0.38889\n205983|0.51389\n205984|0.26389\n205985|0.41667\n205986|0.56944\n205987|0.29167\n205988|0.083333\n205989|0.22222\n205990|0.27778\n205991|0.26389\n205992|0.25\n205993|0.33333\n205994|0.375\n205995|0.72222\n205996|0.15278\n205997|0.51389\n205998|0.5\n205999|0.44444\n206000|0.51389\n206001|0.48611\n206002|0.30556\n206003|0.55556\n206004|0.41667\n206005|0.48611\n206006|0.75\n206007|0.44444\n206008|0.48611\n206009|0.5\n206010|0.47222\n206011|0.41667\n206012|0.5\n206013|0.41667\n206014|0.27778\n206015|0.27778\n206016|0.27778\n206017|0.43056\n206018|0.22222\n206019|0.59722\n206020|0.44444\n206021|0.33333\n206022|0.5\n206023|0.54167\n206024|0.30556\n206025|0.59722\n206026|0.5\n206027|0.48611\n206028|0.33333\n206029|0.26389\n206030|0.51389\n206031|0.27778\n206032|0.625\n206033|0.65278\n206034|0.38889\n206035|0.29167\n206036|0.54167\n206037|0.5\n206038|0.44444\n206039|0.51389\n206040|0.5\n206041|0.40278\n206042|0.68056\n206043|0.47222\n206044|0.33333\n206045|0.5\n206046|0.5\n206047|0.45833\n206048|0.45833\n206049|0.34722\n206050|0.40278\n206051|0.38889\n206052|0.47222\n206053|0.41667\n206054|0.41667\n206055|0.38889\n206056|0.20833\n206057|0.23611\n206058|0.26389\n206059|0.38889\n206060|0.19444\n206061|0.22222\n206062|0.34722\n206063|0.22222\n206064|0.16667\n206065|0.31944\n206066|0.18056\n206067|0.27778\n206068|0.16667\n206069|0.5\n206070|0.625\n206071|0.44444\n206072|0.81944\n206073|0.5\n206074|0.44444\n206075|0.55556\n206076|0.5\n206077|0.31944\n206078|0.16667\n206079|0.16667\n206080|0.16667\n206081|0.33333\n206082|0.5\n206083|0.47222\n206084|0.56944\n206085|0.44444\n206086|0.5\n206087|0.5\n206088|0.58333\n206089|0.27778\n206090|0.38889\n206091|0.5\n206092|0.5\n206093|0.5\n206094|0.5\n206095|0.55556\n206096|0.5\n206097|0.41667\n206098|0.5\n206099|0.45833\n206100|0.25\n206101|0.15278\n206102|0.22222\n206103|0.44444\n206104|0.23611\n206105|0.34722\n206106|0.48611\n206107|0.29167\n206108|0.27778\n206109|0.5\n206110|0.48611\n206111|0.48611\n206112|0.625\n206113|0.47222\n206114|0.20833\n206115|0.26389\n206116|0.48611\n206117|0.31944\n206118|0.69444\n206119|0.61111\n206120|0.55556\n206121|0.55556\n206122|0.59722\n206123|0.44444\n206124|0.59722\n206125|0.47222\n206126|0.45833\n206127|0.54167\n206128|0.22222\n206129|0.18056\n206130|0.41667\n206131|0.5\n206132|0.54167\n206133|0.41667\n206134|0.48611\n206135|0.54167\n206136|0.44444\n206137|0.51389\n206138|0.63889\n206139|0.27778\n206140|0.38889\n206141|0.5\n206142|0.52778\n206143|0.22222\n206144|0.23611\n206145|0.44444\n206146|0.5\n206147|0.5\n206148|0.38889\n206149|0.38889\n206150|0.31944\n206151|0.41667\n206152|0.54167\n206153|0.38889\n206154|0.26389\n206155|0.375\n206156|0.375\n206157|0.55556\n206158|0.44444\n206159|0.52778\n206160|0.47222\n206161|0.43056\n206162|0.31944\n206163|0.58333\n206164|0.27778\n206165|0.11111\n206166|0.44444\n206167|0.38889\n206168|0.41667\n206169|0.33333\n206170|0.41667\n206171|0.5\n206172|0.23611\n206173|0.16667\n206174|0.25\n206175|0.375\n206176|0.33333\n206177|0.47222\n206178|0.5\n206179|0.5\n206180|0.51389\n206181|0.54167\n206182|0.44444\n206183|0.34722\n206184|0.34722\n206185|0.055556\n206186|0.19444\n206187|0\n206188|0.38889\n206189|0.22222\n206190|0.20833\n206191|0.19444\n206192|0.33333\n206193|0.5\n206194|0.40278\n206195|0.375\n206196|0.77778\n206197|0.51389\n206198|0.51389\n206199|0.51389\n206200|0.5\n206201|0.55556\n206202|0.5\n206203|0.5\n206204|0.41667\n206205|0.36111\n206206|0.33333\n206207|0.625\n206208|0.41667\n206209|0.40278\n206210|0.38889\n206211|0.58333\n206212|0.5\n206213|0.5\n206214|0.76389\n206215|0.59722\n206216|0.61111\n206217|0.68056\n206218|0.5\n206219|0.58333\n206220|0.38889\n206221|0.38889\n206222|0.44444\n206223|0.5\n206224|0.19444\n206225|0.16667\n206226|0.25\n206227|0.45833\n206228|0.16667\n206229|0.27778\n206230|0.23611\n206231|0.23611\n206232|0\n206233|0.18056\n206234|0.30556\n206235|0.25\n206236|0.51389\n206237|0.26389\n206238|0.30556\n206239|0.375\n206240|0.29167\n206241|0.56944\n206242|0.26389\n206243|0.22222\n206244|0.41667\n206245|0.26389\n206246|0.23611\n206247|0.5\n206248|0.65278\n206249|0.36111\n206250|0.43056\n206251|0.41667\n206252|0.5\n206253|0.27778\n206254|0.23611\n206255|0.5\n206256|0.18056\n206257|0.38889\n206258|0.5\n206259|0.45833\n206260|0.36111\n206261|0.30556\n206262|0.44444\n206263|0.38889\n206264|0.44444\n206265|0.44444\n206266|0.29167\n206267|0.66667\n206268|0.47222\n206269|0.34722\n206270|0.43056\n206271|0.40278\n206272|0.33333\n206273|0.5\n206274|0.41667\n206275|0.18056\n206276|0.69444\n206277|0.5\n206278|0.54167\n206279|0.5\n206280|0.47222\n206281|0.51389\n206282|0.5\n206283|0.54167\n206284|0.5\n206285|0.58333\n206286|0.44444\n206287|0.5\n206288|0.73611\n206289|0.38889\n206290|0.61111\n206291|0.56944\n206292|0.51389\n206293|0.61111\n206294|0.33333\n206295|0.23611\n206296|0.56944\n206297|0.5\n206298|0.36111\n206299|0.5\n206300|0.38889\n206301|0.5\n206302|0.77778\n206303|0.48611\n206304|0.5\n206305|0.61111\n206306|0.52778\n206307|0.5\n206308|0.26389\n206309|0.5\n206310|0.5\n206311|0.5\n206312|0.30556\n206313|0.5\n206314|0.5\n206315|0.59722\n206316|0.58333\n206317|0.36111\n206318|0.55556\n206319|0.66667\n206320|0.5\n206321|0.5\n206322|0.84722\n206323|0.44444\n206324|0.5\n206325|0.44444\n206326|0.44444\n206327|0.44444\n206328|0.44444\n206329|0.51389\n206330|0.44444\n206331|0.61111\n206332|0.47222\n206333|0.45833\n206334|0.38889\n206335|0.56944\n206336|0.027778\n206337|0.5\n206338|0.77778\n206339|0.36111\n206340|0.375\n206341|0.33333\n206342|0.36111\n206343|0.375\n206344|0.38889\n206345|0.44444\n206346|0.5\n206347|0.31944\n206348|0.45833\n206349|0.52778\n206350|0.23611\n206351|0.52778\n206352|0.75\n206353|0.43056\n206354|0.34722\n206355|0.375\n206356|0.33333\n206357|0.48611\n206358|0.19444\n206359|0.25\n206360|0.59722\n206361|0.26389\n206362|0.5\n206363|0.56944\n206364|0.58333\n206365|0.65278\n206366|0.41667\n206367|0.41667\n206368|0.43056\n206369|0.23611\n206370|0.55556\n206371|0.45833\n206372|0.375\n206373|0.44444\n206374|0.55556\n206375|0.56944\n206376|0.58333\n206377|0.70833\n206378|0.68056\n206379|0.51389\n206380|0.72222\n206381|0.66667\n206382|0.65278\n206383|0.63889\n206384|0.52778\n206385|0.61111\n206386|0.22222\n206387|0.52778\n206388|0.66667\n206389|0.45833\n206390|0.34722\n206391|0.26389\n206392|0.54167\n206393|0.61111\n206394|0.45833\n206395|0.5\n206396|0.47222\n206397|0.15278\n206398|0.55556\n206399|0.44444\n206400|0.45833\n206401|0.38889\n206402|0.23611\n206403|0.33333\n206404|0.23611\n206405|0.43056\n206406|0.22222\n206407|0.45833\n206408|0.52778\n206409|0.5\n206410|0.5\n206411|0.27778\n206412|0.34722\n206413|0.52778\n206414|0.5\n206415|0.51389\n206416|0.41667\n206417|0.5\n206418|0.48611\n206419|0.56944\n206420|0.56944\n206421|0.51389\n206422|0.44444\n206423|0.5\n206424|0.47222\n206425|0.5\n206426|0.45833\n206427|0.5\n206428|0.5\n206429|0.52778\n206430|0.34722\n206431|0.33333\n206432|0.52778\n206433|0.63889\n206434|0.59722\n206435|0.69444\n206436|0.44444\n206437|0.23611\n206438|0.20833\n206439|0.41667\n206440|0.38889\n206441|0.66667\n206442|0.61111\n206443|0.55556\n206444|0.23611\n206445|0.41667\n206446|0.55556\n206447|0.31944\n206448|0.5\n206449|0.36111\n206450|0.22222\n206451|0.51389\n206452|0.70833\n206453|0.77778\n206454|0.58333\n206455|0.27778\n206456|0.65278\n206457|0.47222\n206458|0.41667\n206459|0.29167\n206460|0.51389\n206461|0.72222\n206462|0.54167\n206463|0.41667\n206464|0.48611\n206465|0.48611\n206466|0.36111\n206467|0.38889\n206468|0.61111\n206469|0.27778\n206470|0.73611\n206471|0.65278\n206472|0.5\n206473|0.375\n206474|0.5\n206475|0.5\n206476|0.48611\n206477|0.40278\n206478|0.33333\n206479|0.375\n206480|0.45833\n206481|0.38889\n206482|0.56944\n206483|0.625\n206484|0.34722\n206485|0.5\n206486|0.48611\n206487|0.5\n206488|0.5\n206489|0.51389\n206490|0.55556\n206491|0.375\n206492|0.5\n206493|0.48611\n206494|0.52778\n206495|0.70833\n206496|0.33333\n206497|0.30556\n206498|0.13889\n206499|0.33333\n206500|0.16667\n206501|0.33333\n206502|0.51389\n206503|0.76389\n206504|0.18056\n206505|0.26389\n206506|0.18056\n206507|0.44444\n206508|0.5\n206509|0.20833\n206510|0.25\n206511|0.43056\n206512|0.55556\n206513|0.47222\n206514|0.16667\n206515|0.18056\n206516|0.36111\n206517|0.26389\n206518|0.30556\n206519|0.33333\n206520|0.41667\n206521|0.44444\n206522|0.51389\n206523|0.5\n206524|0.72222\n206525|0.5\n206526|0.51389\n206527|0.43056\n206528|0.48611\n206529|0.5\n206530|0.40278\n206531|0.5\n206532|0.5\n206533|0.38889\n206534|0.20833\n206535|0.20833\n206536|0.20833\n206537|0.23611\n206538|0.18056\n206539|0.23611\n206540|0.25\n206541|0.55556\n206542|0.44444\n206543|0.41667\n206544|0.43056\n206545|0.625\n206546|0.30556\n206547|0.44444\n206548|0.58333\n206549|0.31944\n206550|0.33333\n206551|0.33333\n206552|0.33333\n206553|0.16667\n206554|0.52778\n206555|0.5\n206556|0.29167\n206557|0.29167\n206558|0.41667\n206559|0.36111\n206560|0.5\n206561|0.5\n206562|0.5\n206563|0.44444\n206564|0.52778\n206565|0.30556\n206566|0.29167\n206567|0.40278\n206568|0.20833\n206569|0.23611\n206570|0.22222\n206571|0.5\n206572|0.5\n206573|0.5\n206574|0.41667\n206575|0.48611\n206576|0.5\n206577|0.44444\n206578|0.5\n206579|0.36111\n206580|0.65278\n206581|0.5\n206582|0.38889\n206583|0.5\n206584|0.58333\n206585|0.30556\n206586|0.63889\n206587|0.70833\n206588|0.40278\n206589|0.44444\n206590|0.40278\n206591|0.43056\n206592|0.27778\n206593|0.5\n206594|0.5\n206595|0.5\n206596|0.5\n206597|0.48611\n206598|0.45833\n206599|0.59722\n206600|0.52778\n206601|0.61111\n206602|0.52778\n206603|0.5\n206604|0.47222\n206605|0.23611\n206606|0.5\n206607|0.5\n206608|0.38889\n206609|0.5\n206610|0.375\n206611|0.25\n206612|0.54167\n206613|0.5\n206614|0.5\n206615|0.5\n206616|0.33333\n206617|0.43056\n206618|0.51389\n206619|0.52778\n206620|0.5\n206621|0.55556\n206622|0.76389\n206623|0.54167\n206624|0.33333\n206625|0.48611\n206626|0.63889\n206627|0.54167\n206628|0.54167\n206629|0.55556\n206630|0.63889\n206631|0.5\n206632|0.5\n206633|0.5\n206634|0.5\n206635|0.48611\n206636|0.5\n206637|0.70833\n206638|0.66667\n206639|0.44444\n206640|0.34722\n206641|0.73611\n206642|0.59722\n206643|0.13889\n206644|0.5\n206645|0.5\n206646|0.5\n206647|0.30556\n206648|0.27778\n206649|0.58333\n206650|0.5\n206651|0.625\n206652|0.65278\n206653|0.5\n206654|0.25\n206655|0.5\n206656|0.70833\n206657|0.55556\n206658|0.38889\n206659|0.5\n206660|0.58333\n206661|0.48611\n206662|0.83333\n206663|0.61111\n206664|0.56944\n206665|0.51389\n206666|0.45833\n206667|0.55556\n206668|0.5\n206669|0.52778\n206670|0.33333\n206671|0.5\n206672|0.5\n206673|0.5\n206674|0.625\n206675|0.5\n206676|0.73611\n206677|0.36111\n206678|0.61111\n206679|0.44444\n206680|0.63889\n206681|0.5\n206682|0.40278\n206683|0.375\n206684|0.54167\n206685|0.34722\n206686|0.44444\n206687|0.625\n206688|0.55556\n206689|0.5\n206690|0.56944\n206691|0.77778\n206692|0.54167\n206693|0.26389\n206694|0.31944\n206695|0.68056\n206696|0.5\n206697|0.31944\n206698|0.5\n206699|0.51389\n206700|0.097222\n206701|0.30556\n206702|0.22222\n206703|0.61111\n206704|0.34722\n206705|0.29167\n206706|0.25\n206707|0.36111\n206708|0.375\n206709|0.44444\n206710|0.30556\n206711|0.68056\n206712|0.55556\n206713|0.43056\n206714|0.26389\n206715|0.30556\n206716|0.44444\n206717|0.31944\n206718|0.29167\n206719|0.18056\n206720|0.54167\n206721|0.63889\n206722|0.43056\n206723|0.5\n206724|0.5\n206725|0.5\n206726|0.61111\n206727|0.54167\n206728|0.22222\n206729|0.59722\n206730|0.18056\n206731|0.38889\n206732|0.44444\n206733|0.33333\n206734|0.52778\n206735|0.18056\n206736|0.15278\n206737|0.56944\n206738|0.5\n206739|0.43056\n206740|0.44444\n206741|0.22222\n206742|0.45833\n206743|0.26389\n206744|0.23611\n206745|0.34722\n206746|0.44444\n206747|0.31944\n206748|0.38889\n206749|0.5\n206750|0.44444\n206751|0.38889\n206752|0.41667\n206753|0.5\n206754|0.5\n206755|0.54167\n206756|0.51389\n206757|0.5\n206758|0.45833\n206759|0.20833\n206760|0.5\n206761|0.76389\n206762|0.81944\n206763|0.80556\n206764|0.5\n206765|0.51389\n206766|0.30556\n206767|0.5\n206768|0.47222\n206769|0.16667\n206770|0.5\n206771|0.33333\n206772|0.5\n206773|0.15278\n206774|0.59722\n206775|0.55556\n206776|0.5\n206777|0.27778\n206778|0.56944\n206779|0.5\n206780|0.38889\n206781|0.61111\n206782|0.63889\n206783|0.61111\n206784|0.38889\n206785|0.25\n206786|0.55556\n206787|0.5\n206788|0.5\n206789|0.55556\n206790|0.5\n206791|0.51389\n206792|0.18056\n206793|0.25\n206794|0.44444\n206795|0.375\n206796|0.5\n206797|0.47222\n206798|0.55556\n206799|0.40278\n206800|0.5\n206801|0.5\n206802|0.58333\n206803|0.38889\n206804|0.51389\n206805|0.13889\n206806|0.47222\n206807|0.33333\n206808|0.41667\n206809|0.27778\n206810|0.5\n206811|0.5\n206812|0.27778\n206813|0.66667\n206814|0.55556\n206815|0.59722\n206816|0.5\n206817|0.61111\n206818|0.47222\n206819|0.48611\n206820|0.48611\n206821|0.48611\n206822|0.25\n206823|0.27778\n206824|0.48611\n206825|0.5\n206826|0.56944\n206827|0.375\n206828|0.5\n206829|0.58333\n206830|0.11111\n206831|0.41667\n206832|0.47222\n206833|0.5\n206834|0.51389\n206835|0.55556\n206836|0.27778\n206837|0.56944\n206838|0.59722\n206839|0.44444\n206840|0.5\n206841|0.51389\n206842|0.58333\n206843|0.33333\n206844|0.27778\n206845|0.34722\n206846|0.5\n206847|0.59722\n206848|0.48611\n206849|0.75\n206850|0.68056\n206851|0.44444\n206852|0.18056\n206853|0.48611\n206854|0.5\n206855|0.47222\n206856|0.30556\n206857|0.44444\n206858|0.069444\n206859|0.66667\n206860|0.47222\n206861|0.5\n206862|0.20833\n206863|0.38889\n206864|0.23611\n206865|0.26389\n206866|0.48611\n206867|0.51389\n206868|0.5\n206869|0.43056\n206870|0.30556\n206871|0.44444\n206872|0.5\n206873|0.38889\n206874|0.51389\n206875|0.375\n206876|0.55556\n206877|0.33333\n206878|0.34722\n206879|0.47222\n206880|0.33333\n206881|0.47222\n206882|0.5\n206883|0.23611\n206884|0.36111\n206885|0.23611\n206886|0.44444\n206887|0.61111\n206888|0.625\n206889|0.29167\n206890|0.5\n206891|0.27778\n206892|0.33333\n206893|0.26389\n206894|0.36111\n206895|0.33333\n206896|0.5\n206897|0.22222\n206898|0.26389\n206899|0.5\n206900|0.40278\n206901|0.40278\n206902|0.52778\n206903|0.38889\n206904|0.43056\n206905|0.29167\n206906|0.34722\n206907|0.5\n206908|0.34722\n206909|0.31944\n206910|0.52778\n206911|0.51389\n206912|0.31944\n206913|0.45833\n206914|0.5\n206915|0.27778\n206916|0.48611\n206917|0.47222\n206918|0.13889\n206919|0.13889\n206920|0.25\n206921|0.72222\n206922|0.30556\n206923|0.16667\n206924|0.27778\n206925|0.33333\n206926|0.38889\n206927|0.44444\n206928|0.20833\n206929|0.33333\n206930|0.34722\n206931|0.54167\n206932|0.26389\n206933|0.26389\n206934|0.31944\n206935|0.31944\n206936|0.27778\n206937|0.27778\n206938|0.625\n206939|0.44444\n206940|0.27778\n206941|0.40278\n206942|0.26389\n206943|0.40278\n206944|0.43056\n206945|0.22222\n206946|0.45833\n206947|0.375\n206948|0.36111\n206949|0.41667\n206950|0.19444\n206951|0.59722\n206952|0.65278\n206953|0.66667\n206954|0.5\n206955|0.54167\n206956|0.63889\n206957|0.58333\n206958|0.61111\n206959|0.5\n206960|0.80556\n206961|0.29167\n206962|0.51389\n206963|0.5\n206964|0.76389\n206965|0.5\n206966|0.56944\n206967|0.52778\n206968|0.55556\n206969|0.44444\n206970|0.55556\n206971|0.58333\n206972|0.5\n206973|0.51389\n206974|0.56944\n206975|0.5\n206976|0.5\n206977|0.5\n206978|0.65278\n206979|0.58333\n206980|0.45833\n206981|0.72222\n206982|0.75\n206983|0.79167\n206984|0.68056\n206985|0.63889\n206986|0.5\n206987|0.5\n206988|0.625\n206989|0.36111\n206990|0.48611\n206991|0.5\n206992|0.61111\n206993|0.44444\n206994|0.41667\n206995|0.41667\n206996|0.375\n206997|0.44444\n206998|0.5\n206999|0.34722\n207000|0.29167\n207001|0.55556\n207002|0.55556\n207003|0.5\n207004|0.34722\n207005|0.41667\n207006|0.45833\n207007|0.61111\n207008|0.22222\n207009|0.22222\n207010|0.19444\n207011|0.11111\n207012|0.083333\n207013|0.13889\n207014|0.29167\n207015|0.125\n207016|0.22222\n207017|0.36111\n207018|0.13889\n207019|0.30556\n207020|0.31944\n207021|0.31944\n207022|0.54167\n207023|0.41667\n207024|0.5\n207025|0.20833\n207026|0.30556\n207027|0.44444\n207028|0.041667\n207029|0.48611\n207030|0.69444\n207031|0.27778\n207032|0.40278\n207033|0.38889\n207034|0.47222\n207035|0.375\n207036|0.22222\n207037|0.5\n207038|0.5\n207039|0.36111\n207040|0.29167\n207041|0.20833\n207042|0.27778\n207043|0.5\n207044|0.5\n207045|0.19444\n207046|0.33333\n207047|0.375\n207048|0.27778\n207049|0.43056\n207050|0.20833\n207051|0.45833\n207052|0.33333\n207053|0.45833\n207054|0.47222\n207055|0.30556\n207056|0.5\n207057|0.59722\n207058|0.61111\n207059|0.31944\n207060|0.48611\n207061|0.5\n207062|0.40278\n207063|0.44444\n207064|0.33333\n207065|0.52778\n207066|0.5\n207067|0.45833\n207068|0.5\n207069|0.34722\n207070|0.41667\n207071|0.22222\n207072|0.23611\n207073|0.55556\n207074|0.47222\n207075|0.23611\n207076|0.5\n207077|0.5\n207078|0.20833\n207079|0.36111\n207080|0.29167\n207081|0.5\n207082|0.66667\n207083|0.48611\n207084|0.27778\n207085|0.58333\n207086|0.33333\n207087|0.55556\n207088|0.33333\n207089|0.43056\n207090|0.30556\n207091|0.29167\n207092|0.25\n207093|0.18056\n207094|0.61111\n207095|0.44444\n207096|0.375\n207097|0.30556\n207098|0.36111\n207099|0.15278\n207100|0.027778\n207101|0.44444\n207102|0.20833\n207103|0.29167\n207104|0.26389\n207105|0.18056\n207106|0.375\n207107|0.5\n207108|0.43056\n207109|0.5\n207110|0.54167\n207111|0.38889\n207112|0.30556\n207113|0.31944\n207114|0.19444\n207115|0.25\n207116|0.59722\n207117|0.44444\n207118|0.22222\n207119|0.25\n207120|0.34722\n207121|0.36111\n207122|0.38889\n207123|0.30556\n207124|0.69444\n207125|0.34722\n207126|0.29167\n207127|0.80556\n207128|0.72222\n207129|0.47222\n207130|0.44444\n207131|0.43056\n207132|0.5\n207133|0.5\n207134|0.55556\n207135|0.33333\n207136|0.16667\n207137|0.86111\n207138|0.22222\n207139|0.40278\n207140|0.30556\n207141|0.25\n207142|0.30556\n207143|0.30556\n207144|0.29167\n207145|0.29167\n207146|0.22222\n207147|0.33333\n207148|0.29167\n207149|0.41667\n207150|0.22222\n207151|0.36111\n207152|0.29167\n207153|0.34722\n207154|0.29167\n207155|0.31944\n207156|0.44444\n207157|0.22222\n207158|0.26389\n207159|0.30556\n207160|0.38889\n207161|0.33333\n207162|0.45833\n207163|0.45833\n207164|0.34722\n207165|0.31944\n207166|0.18056\n207167|0.5\n207168|0.5\n207169|0.23611\n207170|0.44444\n207171|0.20833\n207172|0.55556\n207173|0.5\n207174|0.52778\n207175|0.41667\n207176|0.48611\n207177|0.22222\n207178|0.34722\n207179|0.19444\n207180|0.40278\n207181|0.44444\n207182|0.47222\n207183|0.34722\n207184|0.52778\n207185|0.51389\n207186|0.23611\n207187|0.59722\n207188|0.40278\n207189|0.375\n207190|0.625\n207191|0.5\n207192|0.23611\n207193|0.26389\n207194|0.20833\n207195|0.5\n207196|0.27778\n207197|0.54167\n207198|0.34722\n207199|0.45833\n207200|0.72222\n207201|0.5\n207202|0.30556\n207203|0.5\n207204|0.33333\n207205|0.18056\n207206|0.18056\n207207|0.36111\n207208|0.36111\n207209|0.375\n207210|0.30556\n207211|0.20833\n207212|0.44444\n207213|0.48611\n207214|0.61111\n207215|0.45833\n207216|0.36111\n207217|0.41667\n207218|0.45833\n207219|0.48611\n207220|0.5\n207221|0.58333\n207222|0.29167\n207223|0.45833\n207224|0.33333\n207225|0.375\n207226|0.33333\n207227|0.65278\n207228|0.63889\n207229|0.41667\n207230|0.375\n207231|0.43056\n207232|0.5\n207233|0.44444\n207234|0.48611\n207235|0.54167\n207236|0.41667\n207237|0.36111\n207238|0.5\n207239|0.5\n207240|0.29167\n207241|0.26389\n207242|0.47222\n207243|0.47222\n207244|0.33333\n207245|0.33333\n207246|0.23611\n207247|0.44444\n207248|0.23611\n207249|0.5\n207250|0.54167\n207251|0.15278\n207252|0.15278\n207253|0.34722\n207254|0.33333\n207255|0.40278\n207256|0.33333\n207257|0.31944\n207258|0.22222\n207259|0.29167\n207260|0.36111\n207261|0.55556\n207262|0.48611\n207263|0.44444\n207264|0.31944\n207265|0.33333\n207266|0.59722\n207267|0.38889\n207268|0.30556\n207269|0.33333\n207270|0.5\n207271|0.44444\n207272|0.375\n207273|0.55556\n207274|0.56944\n207275|0.33333\n207276|0.59722\n207277|0.5\n207278|0.55556\n207279|0.51389\n207280|0.5\n207281|0.58333\n207282|0.38889\n207283|0.47222\n207284|0.41667\n207285|0.41667\n207286|0.34722\n207287|0.44444\n207288|0.41667\n207289|0.29167\n207290|0.56944\n207291|0.65278\n207292|0.5\n207293|0.77778\n207294|0.5\n207295|0.30556\n207296|0.31944\n207297|0.48611\n207298|0.5\n207299|0.27778\n207300|0.31944\n207301|0.22222\n207302|0.16667\n207303|0.11111\n207304|0.5\n207305|0.56944\n207306|0.36111\n207307|0.5\n207308|0.55556\n207309|0.61111\n207310|0.5\n207311|0.48611\n207312|0.5\n207313|0.5\n207314|0.41667\n207315|0.40278\n207316|0.44444\n207317|0.44444\n207318|0.51389\n207319|0.055556\n207320|0.20833\n207321|0.25\n207322|0.38889\n207323|0.38889\n207324|0.36111\n207325|0.65278\n207326|0.5\n207327|0.5\n207328|0.45833\n207329|0.375\n207330|0.44444\n207331|0.5\n207332|0.51389\n207333|0.61111\n207334|0.15278\n207335|0.51389\n207336|0.31944\n207337|0.25\n207338|0.38889\n207339|0.36111\n207340|0.44444\n207341|0.48611\n207342|0.51389\n207343|0.70833\n207344|0.40278\n207345|0.55556\n207346|0.68056\n207347|0.38889\n207348|0.625\n207349|0.54167\n207350|0.41667\n207351|0.65278\n207352|0.375\n207353|0.55556\n207354|0.44444\n207355|0.41667\n207356|0.055556\n207357|0.47222\n207358|0.45833\n207359|0.43056\n207360|0.5\n207361|0.51389\n207362|0.26389\n207363|0.65278\n207364|0.41667\n207365|0.5\n207366|0.5\n207367|0.73611\n207368|0.56944\n207369|0.5\n207370|0.5\n207371|0.5\n207372|0.5\n207373|0.5\n207374|0.5\n207375|0.5\n207376|0.5\n207377|0.54167\n207378|0.625\n207379|0.5\n207380|0.41667\n207381|0.59722\n207382|0.5\n207383|0.5\n207384|0.5\n207385|0.5\n207386|0.52778\n207387|0.34722\n207388|0.5\n207389|0.5\n207390|0.52778\n207391|0.5\n207392|0.5\n207393|0.5\n207394|0.5\n207395|0.66667\n207396|0.375\n207397|0.5\n207398|0.48611\n207399|0.54167\n207400|0.5\n207401|0.5\n207402|0.41667\n207403|0.43056\n207404|0.45833\n207405|0.56944\n207406|0.5\n207407|0.5\n207408|0.26389\n207409|0.44444\n207410|0.5\n207411|0.66667\n207412|0.63889\n207413|0.54167\n207414|0.5\n207415|0.72222\n207416|0.51389\n207417|0.36111\n207418|0.51389\n207419|0.61111\n207420|0.5\n207421|0.5\n207422|0.52778\n207423|0.5\n207424|0.5\n207425|0.5\n207426|0.26389\n207427|0.5\n207428|0.5\n207429|0.33333\n207430|0.5\n207431|0.44444\n207432|0.66667\n207433|0.5\n207434|0.59722\n207435|0.38889\n207436|0.66667\n207437|0.38889\n207438|0.47222\n207439|0.45833\n207440|0.5\n207441|0.5\n207442|0.5\n207443|0.47222\n207444|0.36111\n207445|0.5\n207446|0.5\n207447|0.54167\n207448|0.5\n207449|0.5\n207450|0.33333\n207451|0.55556\n207452|0.33333\n207453|0.36111\n207454|0.47222\n207455|0.44444\n207456|0.48611\n207457|0.5\n207458|0.55556\n207459|0.5\n207460|0.55556\n207461|0.5\n207462|0.55556\n207463|0.5\n207464|0.5\n207465|0.63889\n207466|0.55556\n207467|0.5\n207468|0.5\n207469|0.48611\n207470|0.54167\n207471|0.5\n207472|0.5\n207473|0.59722\n207474|0.51389\n207475|0.55556\n207476|0.5\n207477|0.56944\n207478|0.5\n207479|0.5\n207480|0.26389\n207481|0.47222\n207482|0.5\n207483|0.5\n207484|0.41667\n207485|0.5\n207486|0.5\n207487|0.44444\n207488|0.56944\n207489|0.5\n207490|0.5\n207491|0.5\n207492|0.34722\n207493|0.5\n207494|0.5\n207495|0.31944\n207496|0.5\n207497|0.65278\n207498|0.51389\n207499|0.11111\n207500|0.48611\n207501|0.31944\n207502|0.48611\n207503|0.26389\n207504|0.59722\n207505|0.5\n207506|0.5\n207507|0.5\n207508|0.52778\n207509|0.55556\n207510|0.75\n207511|0.23611\n207512|0.51389\n207513|0.5\n207514|0.625\n207515|0.51389\n207516|0.625\n207517|0.5\n207518|0.5\n207519|0.18056\n207520|0.5\n207521|0.5\n207522|0.56944\n207523|0.48611\n207524|0.5\n207525|0.51389\n207526|0.44444\n207527|0.45833\n207528|0.5\n207529|0.38889\n207530|0.5\n207531|0.625\n207532|0.5\n207533|0.5\n207534|0.36111\n207535|0.11111\n207536|0.83333\n207537|0.77778\n207538|0.66667\n207539|0.66667\n207540|0.55556\n207541|0.61111\n207542|0.5\n207543|0.55556\n207544|0.40278\n207545|0.51389\n207546|0.55556\n207547|0.38889\n207548|0.47222\n207549|0.52778\n207550|0.22222\n207551|0.5\n207552|0.19444\n207553|0.55556\n207554|0.69444\n207555|0.31944\n207556|0.33333\n207557|0.33333\n207558|0.22222\n207559|0.51389\n207560|0.5\n207561|0.47222\n207562|0.5\n207563|0.56944\n207564|0.75\n207565|0.55556\n207566|0.5\n207567|0.45833\n207568|0.5\n207569|0.44444\n207570|0.23611\n207571|0.65278\n207572|0.29167\n207573|0.51389\n207574|0.26389\n207575|0.61111\n207576|0.45833\n207577|0.44444\n207578|0.5\n207579|0.5\n207580|0.38889\n207581|0.65278\n207582|0.5\n207583|0.43056\n207584|0.41667\n207585|0.55556\n207586|0.5\n207587|0.30556\n207588|0.48611\n207589|0.097222\n207590|0.5\n207591|0.34722\n207592|0.48611\n207593|0.47222\n207594|0.30556\n207595|0.055556\n207596|0.34722\n207597|0.5\n207598|0.59722\n207599|0.44444\n207600|0.61111\n207601|0.40278\n207602|0.5\n207603|0.22222\n207604|0.44444\n207605|0.68056\n207606|0.41667\n207607|0.5\n207608|0.45833\n207609|0.72222\n207610|0.69444\n207611|0.47222\n207612|0.33333\n207613|0.31944\n207614|0.5\n207615|0.18056\n207616|0.5\n207617|0.5\n207618|0.66667\n207619|0.55556\n207620|0.56944\n207621|0.5\n207622|0.44444\n207623|0.25\n207624|0.55556\n207625|0.13889\n207626|0.33333\n207627|0.56944\n207628|0.63889\n207629|0.45833\n207630|0.5\n207631|0.75\n207632|0.34722\n207633|0.48611\n207634|0.40278\n207635|0.29167\n207636|0.40278\n207637|0.16667\n207638|0.38889\n207639|0.31944\n207640|0.68056\n207641|0.70833\n207642|0.45833\n207643|0.5\n207644|0.51389\n207645|0.51389\n207646|0.5\n207647|0.26389\n207648|0.66667\n207649|0.44444\n207650|0.5\n207651|0.5\n207652|0.22222\n207653|0.63889\n207654|0.25\n207655|0.63889\n207656|0.63889\n207657|0.34722\n207658|0.33333\n207659|0.13889\n207660|0.40278\n207661|0.48611\n207662|0.25\n207663|0.5\n207664|0.55556\n207665|0.59722\n207666|0.63889\n207667|0.44444\n207668|0.31944\n207669|0.5\n207670|0.33333\n207671|0.51389\n207672|0.38889\n207673|0.48611\n207674|0.30556\n207675|0.29167\n207676|0.44444\n207677|0.75\n207678|0.77778\n207679|0.47222\n207680|0.65278\n207681|0.22222\n207682|0.45833\n207683|0.63889\n207684|0.45833\n207685|0.69444\n207686|0.26389\n207687|0.61111\n207688|0.33333\n207689|0.61111\n207690|0.72222\n207691|0.5\n207692|0.22222\n207693|0.5\n207694|0.5\n207695|0.63889\n207696|0.48611\n207697|0.5\n207698|0.61111\n207699|0.44444\n207700|0.52778\n207701|0.29167\n207702|0.5\n207703|0.5\n207704|0.5\n207705|0.33333\n207706|0.5\n207707|0.11111\n207708|0.5\n207709|0.55556\n207710|0.23611\n207711|0.5\n207712|0.5\n207713|0.5\n207714|0.5\n207715|0.48611\n207716|0.41667\n207717|0.5\n207718|0.56944\n207719|0.45833\n207720|0.23611\n207721|0.48611\n207722|0.40278\n207723|0.11111\n207724|0.63889\n207725|0.58333\n207726|0.59722\n207727|0.5\n207728|0.47222\n207729|0.20833\n207730|0.5\n207731|0.375\n207732|0.5\n207733|0.56944\n207734|0.34722\n207735|0.44444\n207736|0.23611\n207737|0.33333\n207738|0.19444\n207739|0.47222\n207740|0.63889\n207741|0.5\n207742|0.45833\n207743|0.5\n207744|0.41667\n207745|0.38889\n207746|0.55556\n207747|0.55556\n207748|0.5\n207749|0.69444\n207750|0.66667\n207751|0.69444\n207752|0.66667\n207753|0.34722\n207754|0.58333\n207755|0.51389\n207756|0.5\n207757|0.43056\n207758|0.48611\n207759|0.27778\n207760|0.31944\n207761|0.25\n207762|0.38889\n207763|0.5\n207764|0.5\n207765|0.5\n207766|0.51389\n207767|0.66667\n207768|0.625\n207769|0.58333\n207770|0.58333\n207771|0.55556\n207772|0.5\n207773|0.56944\n207774|0.33333\n207775|0.5\n207776|0.55556\n207777|0.5\n207778|0.5\n207779|0.47222\n207780|0.5\n207781|0.27778\n207782|0.65278\n207783|0.5\n207784|0.5\n207785|0.40278\n207786|0.5\n207787|0.55556\n207788|0.41667\n207789|0.625\n207790|0.47222\n207791|0.38889\n207792|0.5\n207793|0.51389\n207794|0.38889\n207795|0.52778\n207796|0.55556\n207797|0.5\n207798|0.41667\n207799|0.20833\n207800|0.26389\n207801|0.55556\n207802|0.5\n207803|0.63889\n207804|0.33333\n207805|0.58333\n207806|0.69444\n207807|0.38889\n207808|0.61111\n207809|0.55556\n207810|0.56944\n207811|0.38889\n207812|0.54167\n207813|0.59722\n207814|0.5\n207815|0.5\n207816|0.5\n207817|0.5\n207818|0.11111\n207819|0.76389\n207820|0.44444\n207821|0.41667\n207822|0.5\n207823|0.58333\n207824|0.36111\n207825|0.5\n207826|0.40278\n207827|0.72222\n207828|0.5\n207829|0.5\n207830|0.43056\n207831|0.47222\n207832|0.5\n207833|0.81944\n207834|0.29167\n207835|0.41667\n207836|0.47222\n207837|0.63889\n207838|0.15278\n207839|0.27778\n207840|0.5\n207841|0.55556\n207842|0.5\n207843|0.63889\n207844|0.52778\n207845|0.19444\n207846|0.375\n207847|0.54167\n207848|0.52778\n207849|0.41667\n207850|0.55556\n207851|0.36111\n207852|0.5\n207853|0.5\n207854|0.625\n207855|0.5\n207856|0.25\n207857|0.5\n207858|0.51389\n207859|0.44444\n207860|0.75\n207861|0.5\n207862|0.55556\n207863|0.58333\n207864|0.5\n207865|0.5\n207866|0.55556\n207867|0.58333\n207868|0.22222\n207869|0.375\n207870|0.5\n207871|0.36111\n207872|0.66667\n207873|0.63889\n207874|0.59722\n207875|0.66667\n207876|0.51389\n207877|0.69444\n207878|0.5\n207879|0.5\n207880|0.51389\n207881|0.19444\n207882|0.5\n207883|0.5\n207884|0.5\n207885|0.26389\n207886|0.47222\n207887|0.59722\n207888|0.30556\n207889|0.5\n207890|0.55556\n207891|0.51389\n207892|0.5\n207893|0.45833\n207894|0.40278\n207895|0.5\n207896|0.5\n207897|0.5\n207898|0.5\n207899|0.375\n207900|0.29167\n207901|0.5\n207902|0.5\n207903|0.5\n207904|0.15278\n207905|0.58333\n207906|0.5\n207907|0.51389\n207908|0.61111\n207909|0.68056\n207910|0.5\n207911|0.33333\n207912|0.54167\n207913|0.44444\n207914|0.5\n207915|0.38889\n207916|0.5\n207917|0.5\n207918|0.5\n207919|0.61111\n207920|0.56944\n207921|0.5\n207922|0.5\n207923|0.54167\n207924|0.72222\n207925|0.25\n207926|0.5\n207927|0.44444\n207928|0.5\n207929|0.56944\n207930|0.38889\n207931|0.5\n207932|0.44444\n207933|0.51389\n207934|0.69444\n207935|0.5\n207936|0.48611\n207937|0.27778\n207938|0.61111\n207939|0.33333\n207940|0.5\n207941|0.48611\n207942|0.5\n207943|0.375\n207944|0.5\n207945|0.70833\n207946|0.61111\n207947|0.73611\n207948|0.55556\n207949|0.31944\n207950|0.58333\n207951|0.5\n207952|0.5\n207953|0.38889\n207954|0.44444\n207955|0.40278\n207956|0.38889\n207957|0.59722\n207958|0.26389\n207959|0.55556\n207960|0.44444\n207961|0.47222\n207962|0.29167\n207963|0.375\n207964|0.5\n207965|0.5\n207966|0.34722\n207967|0.51389\n207968|0.48611\n207969|0.58333\n207970|0.38889\n207971|0.5\n207972|0.52778\n207973|0.63889\n207974|0.36111\n207975|0.5\n207976|0.5\n207977|0.47222\n207978|0.5\n207979|0.41667\n207980|0.56944\n207981|0.73611\n207982|0.41667\n207983|0.47222\n207984|0.5\n207985|0.30556\n207986|0.375\n207987|0.47222\n207988|0.5\n207989|0.68056\n207990|0.5\n207991|0.45833\n207992|0.44444\n207993|0.5\n207994|0.56944\n207995|0.625\n207996|0.36111\n207997|0.5\n207998|0.41667\n207999|0.52778\n208000|0.5\n208001|0.44444\n208002|0.41667\n208003|0.56944\n208004|0.25\n208005|0.5\n208006|0.19444\n208007|0.30556\n208008|0.38889\n208009|0.52778\n208010|0.5\n208011|0.625\n208012|0.77778\n208013|0.58333\n208014|0.58333\n208015|0.47222\n208016|0.58333\n208017|0.5\n208018|0.5\n208019|0.5\n208020|0.48611\n208021|0.5\n208022|0.5\n208023|0.55556\n208024|0.47222\n208025|0.66667\n208026|0.5\n208027|0.5\n208028|0.5\n208029|0.52778\n208030|0.29167\n208031|0.47222\n208032|0.5\n208033|0.5\n208034|0.58333\n208035|0.5\n208036|0.41667\n208037|0.55556\n208038|0.5\n208039|0.5\n208040|0.44444\n208041|0.5\n208042|0.51389\n208043|0.61111\n208044|0.93056\n208045|0.16667\n208046|0.61111\n208047|0.58333\n208048|0.5\n208049|0.45833\n208050|0.5\n208051|0.65278\n208052|0.5\n208053|0.45833\n208054|0.5\n208055|0.59722\n208056|0.51389\n208057|0.44444\n208058|0.5\n208059|0.5\n208060|0.47222\n208061|0.56944\n208062|0.5\n208063|0.51389\n208064|0.68056\n208065|0.52778\n208066|0.45833\n208067|0.41667\n208068|0.5\n208069|0.5\n208070|0.48611\n208071|0.5\n208072|0.5\n208073|0.5\n208074|0.38889\n208075|0.58333\n208076|0.5\n208077|0.68056\n208078|0.43056\n208079|0.33333\n208080|0.52778\n208081|0.33333\n208082|0.86111\n208083|0.44444\n208084|0.33333\n208085|0.36111\n208086|0.55556\n208087|0.5\n208088|0.69444\n208089|0.61111\n208090|0.5\n208091|0.5\n208092|0.66667\n208093|0.52778\n208094|0.5\n208095|0.5\n208096|0.51389\n208097|0.38889\n208098|0.58333\n208099|0.16667\n208100|0.5\n208101|0.5\n208102|0.51389\n208103|0.5\n208104|0.41667\n208105|0.30556\n208106|0.27778\n208107|0.22222\n208108|0.19444\n208109|0.16667\n208110|0.26389\n208111|0.30556\n208112|0.5\n208113|0.36111\n208114|0.59722\n208115|0.72222\n208116|0.5\n208117|0.33333\n208118|0.5\n208119|0.66667\n208120|0.44444\n208121|0.5\n208122|0.41667\n208123|0.65278\n208124|0.44444\n208125|0.5\n208126|0.11111\n208127|0.45833\n208128|0.65278\n208129|0.5\n208130|0.51389\n208131|0.56944\n208132|0.29167\n208133|0.56944\n208134|0.5\n208135|0.65278\n208136|0.51389\n208137|0.34722\n208138|0.18056\n208139|0.5\n208140|0.5\n208141|0.58333\n208142|0.5\n208143|0.56944\n208144|0.52778\n208145|0.5\n208146|0.5\n208147|0.29167\n208148|0.5\n208149|0.5\n208150|0.5\n208151|0.26389\n208152|0.34722\n208153|0.5\n208154|0.34722\n208155|0.44444\n208156|0.11111\n208157|0.44444\n208158|0.33333\n208159|0.22222\n208160|0.083333\n208161|0.22222\n208162|0.125\n208163|0\n208164|0.31944\n208165|0.23611\n208166|0.097222\n208167|0.22222\n208168|0.5\n208169|0.5\n208170|0.38889\n208171|0.5\n208172|0.5\n208173|0.40278\n208174|0.5\n208175|0.30556\n208176|0.45833\n208177|0.54167\n208178|0.23611\n208179|0.59722\n208180|0.43056\n208181|0.63889\n208182|0.47222\n208183|0.44444\n208184|0.27778\n208185|0.59722\n208186|0.5\n208187|0.33333\n208188|0.40278\n208189|0.66667\n208190|0.48611\n208191|0.5\n208192|0.22222\n208193|0.52778\n208194|0.33333\n208195|0.48611\n208196|0.5\n208197|0.375\n208198|0.26389\n208199|0.68056\n208200|0.33333\n208201|0.25\n208202|0.68056\n208203|0.52778\n208204|0.38889\n208205|0.5\n208206|0.63889\n208207|0.5\n208208|0.33333\n208209|0.41667\n208210|0.47222\n208211|0.5\n208212|0.5\n208213|0.44444\n208214|0.5\n208215|0.56944\n208216|0.36111\n208217|0.72222\n208218|0.25\n208219|0.58333\n208220|0.31944\n208221|0.22222\n208222|0.26389\n208223|0.40278\n208224|0.30556\n208225|0.63889\n208226|0.38889\n208227|0.54167\n208228|0.27778\n208229|0.41667\n208230|0.25\n208231|0.70833\n208232|0.52778\n208233|0.48611\n208234|0.5\n208235|0.47222\n208236|0.61111\n208237|0.51389\n208238|0.45833\n208239|0.5\n208240|0.61111\n208241|0.56944\n208242|0.51389\n208243|0.47222\n208244|0.36111\n208245|0.59722\n208246|0.55556\n208247|0.41667\n208248|0.5\n208249|0.51389\n208250|0.59722\n208251|0.5\n208252|0.45833\n208253|0.5\n208254|0.5\n208255|0.44444\n208256|0.29167\n208257|0.34722\n208258|0.38889\n208259|0.65278\n208260|0.5\n208261|0.5\n208262|0.45833\n208263|0.18056\n208264|0.75\n208265|0.34722\n208266|0.44444\n208267|0.20833\n208268|0.5\n208269|0.38889\n208270|0.40278\n208271|0.63889\n208272|0.52778\n208273|0.38889\n208274|0.31944\n208275|0.11111\n208276|0.45833\n208277|0.20833\n208278|0.22222\n208279|0.34722\n208280|0.16667\n208281|0.11111\n208282|0.45833\n208283|0.5\n208284|0.43056\n208285|0.5\n208286|0.44444\n208287|0.22222\n208288|0.61111\n208289|0.48611\n208290|0.61111\n208291|0.36111\n208292|0.59722\n208293|0.5\n208294|0.52778\n208295|0.44444\n208296|0.52778\n208297|0.875\n208298|0.75\n208299|0.72222\n208300|0.5\n208301|0.5\n208302|0.55556\n208303|0.31944\n208304|0.26389\n208305|0.20833\n208306|0.40278\n208307|0.5\n208308|0.61111\n208309|0.29167\n208310|0.25\n208311|0.11111\n208312|0.45833\n208313|0.66667\n208314|0.69444\n208315|0.58333\n208316|0.58333\n208317|0.5\n208318|0.22222\n208319|0.22222\n208320|0.5\n208321|0.44444\n208322|0.34722\n208323|0.55556\n208324|0.36111\n208325|0.29167\n208326|0.5\n208327|0.20833\n208328|0.29167\n208329|0.40278\n208330|0.65278\n208331|0.52778\n208332|0.51389\n208333|0.5\n208334|0.375\n208335|0.45833\n208336|0.41667\n208337|0.58333\n208338|0.63889\n208339|0.5\n208340|0.52778\n208341|0.43056\n208342|0.36111\n208343|0.33333\n208344|0.45833\n208345|0.375\n208346|0.5\n208347|0.16667\n208348|0.20833\n208349|0.44444\n208350|0.48611\n208351|0.16667\n208352|0.41667\n208353|0.52778\n208354|0.44444\n208355|0.375\n208356|0.38889\n208357|0.5\n208358|0.5\n208359|0.5\n208360|0.44444\n208361|0.5\n208362|0.48611\n208363|0.5\n208364|0.41667\n208365|0.36111\n208366|0.59722\n208367|0.51389\n208368|0.40278\n208369|0.61111\n208370|0.38889\n208371|0.51389\n208372|0.45833\n208373|0.40278\n208374|0.5\n208375|0.5\n208376|0.45833\n208377|0.5\n208378|0.5\n208379|0.52778\n208380|0.43056\n208381|0.66667\n208382|0.5\n208383|0.51389\n208384|0.5\n208385|0.56944\n208386|0.45833\n208387|0.66667\n208388|0.38889\n208389|0.5\n208390|0.44444\n208391|0.5\n208392|0.5\n208393|0.63889\n208394|0.5\n208395|0.33333\n208396|0.59722\n208397|0.5\n208398|0.52778\n208399|0.33333\n208400|0.58333\n208401|0.40278\n208402|0.48611\n208403|0.5\n208404|0.25\n208405|0.61111\n208406|0.63889\n208407|0.66667\n208408|0.38889\n208409|0.45833\n208410|0.125\n208411|0.5\n208412|0.5\n208413|0.48611\n208414|0.5\n208415|0.40278\n208416|0.5\n208417|0.51389\n208418|0.5\n208419|0.81944\n208420|0.44444\n208421|0.43056\n208422|0.44444\n208423|0.72222\n208424|0.38889\n208425|0.22222\n208426|0.61111\n208427|0.5\n208428|0.5\n208429|0.5\n208430|0.22222\n208431|0.375\n208432|0.5\n208433|0.5\n208434|0.5\n208435|0.5\n208436|0.55556\n208437|0.5\n208438|0.5\n208439|0.625\n208440|0.5\n208441|0.65278\n208442|0.59722\n208443|0.5\n208444|0.44444\n208445|0.55556\n208446|0.51389\n208447|0.5\n208448|0.48611\n208449|0.55556\n208450|0.30556\n208451|0.40278\n208452|0.51389\n208453|0.55556\n208454|0.52778\n208455|0.44444\n208456|0.44444\n208457|0.41667\n208458|0.48611\n208459|0.52778\n208460|0.61111\n208461|0.5\n208462|0.54167\n208463|0.5\n208464|0.5\n208465|0.5\n208466|0.30556\n208467|0.027778\n208468|0.41667\n208469|0.5\n208470|0.5\n208471|0.30556\n208472|0.33333\n208473|0.45833\n208474|0.25\n208475|0.56944\n208476|0.5\n208477|0.30556\n208478|0.5\n208479|0.44444\n208480|0.5\n208481|0.33333\n208482|0.77778\n208483|0.5\n208484|0.5\n208485|0.5\n208486|0.5\n208487|0.5\n208488|0.5\n208489|0.5\n208490|0.52778\n208491|0.5\n208492|0.5\n208493|0.5\n208494|0.66667\n208495|0.63889\n208496|0.5\n208497|0.47222\n208498|0.36111\n208499|0.48611\n208500|0.33333\n208501|0.5\n208502|0.5\n208503|0.55556\n208504|0.5\n208505|0.52778\n208506|0.44444\n208507|0.51389\n208508|0.25\n208509|0.5\n208510|0.44444\n208511|0.55556\n208512|0.31944\n208513|0.66667\n208514|0.44444\n208515|0.58333\n208516|0.5\n208517|0.5\n208518|0.5\n208519|0.47222\n208520|0.11111\n208521|0.41667\n208522|0.33333\n208523|0.5\n208524|0.5\n208525|0.66667\n208526|0.55556\n208527|0.5\n208528|0.36111\n208529|0.69444\n208530|0.29167\n208531|0.5\n208532|0.25\n208533|0.55556\n208534|0.5\n208535|0.52778\n208536|0.5\n208537|0.44444\n208538|0.38889\n208539|0.52778\n208540|0.55556\n208541|0.44444\n208542|0.27778\n208543|0.51389\n208544|0.56944\n208545|0.625\n208546|0.29167\n208547|0.375\n208548|0.25\n208549|0.47222\n208550|0.55556\n208551|0.18056\n208552|0.38889\n208553|0.48611\n208554|0.51389\n208555|0.65278\n208556|0.56944\n208557|0.5\n208558|0.58333\n208559|0.55556\n208560|0.5\n208561|0.30556\n208562|0.083333\n208563|0.52778\n208564|0.51389\n208565|0.56944\n208566|0.66667\n208567|0.5\n208568|0.51389\n208569|0.16667\n208570|0.30556\n208571|0.11111\n208572|0.48611\n208573|0.25\n208574|0.65278\n208575|0.65278\n208576|0.58333\n208577|0.47222\n208578|0.76389\n208579|0.47222\n208580|0.73611\n208581|0.29167\n208582|0.36111\n208583|0.19444\n208584|0.94444\n208585|0.23611\n208586|0.5\n208587|0.54167\n208588|0.5\n208589|0.72222\n208590|0.625\n208591|0.41667\n208592|0.5\n208593|0.27778\n208594|0.5\n208595|0.63889\n208596|0.5\n208597|0.5\n208598|0.40278\n208599|0.5\n208600|0.66667\n208601|0.44444\n208602|0.29167\n208603|0.23611\n208604|0.16667\n208605|0.5\n208606|0.58333\n208607|0.5\n208608|0.5\n208609|0.72222\n208610|0.81944\n208611|0.66667\n208612|0.61111\n208613|0.55556\n208614|0.5\n208615|1\n208616|0.22222\n208617|0.5\n208618|0.91667\n208619|0.19444\n208620|0.90278\n208621|0.083333\n208622|0.097222\n208623|0.041667\n208624|0.055556\n208625|0\n208626|0.013889\n208627|0.27778\n208628|0.38889\n208629|0.59722\n208630|0.31944\n208631|0.23611\n208632|0.65278\n208633|0.625\n208634|0.55556\n208635|0.54167\n208636|0.51389\n208637|0.5\n208638|0.22222\n208639|0.27778\n208640|0.22222\n208641|0.5\n208642|0.52778\n208643|0.41667\n208644|0.63889\n208645|0.43056\n208646|0.38889\n208647|0.44444\n208648|0.41667\n208649|0.40278\n208650|0.20833\n208651|0.5\n208652|0.58333\n208653|0.5\n208654|0.68056\n208655|0.72222\n208656|0.76389\n208657|0.51389\n208658|0.48611\n208659|0.5\n208660|0.44444\n208661|0.55556\n208662|0.29167\n208663|0.58333\n208664|0.48611\n208665|0.38889\n208666|0.097222\n208667|0.11111\n208668|0.44444\n208669|0.44444\n208670|0.5\n208671|0.5\n208672|0.5\n208673|0.48611\n208674|0.40278\n208675|0.27778\n208676|0.44444\n208677|0.43056\n208678|0.72222\n208679|0.48611\n208680|0.16667\n208681|0.22222\n208682|0.31944\n208683|0.45833\n208684|0.51389\n208685|0.56944\n208686|0.23611\n208687|0.52778\n208688|0.36111\n208689|0.5\n208690|0.23611\n208691|0.51389\n208692|0.63889\n208693|0.61111\n208694|0.26389\n208695|0.19444\n208696|0.51389\n208697|0.5\n208698|0.47222\n208699|0.48611\n208700|0.38889\n208701|0.51389\n208702|0.5\n208703|0.5\n208704|0.43056\n208705|0.31944\n208706|0.16667\n208707|0.18056\n208708|0.55556\n208709|0.65278\n208710|0.23611\n208711|0.5\n208712|0.23611\n208713|0.41667\n208714|0.47222\n208715|0.30556\n208716|0.55556\n208717|0.29167\n208718|0.54167\n208719|0.5\n208720|0.68056\n208721|0.5\n208722|0.61111\n208723|0.26389\n208724|0.27778\n208725|0.54167\n208726|0.40278\n208727|0.44444\n208728|0.56944\n208729|0.5\n208730|0.44444\n208731|0.52778\n208732|0.16667\n208733|0.5\n208734|0.5\n208735|0.5\n208736|0.55556\n208737|0.5\n208738|0.54167\n208739|0.52778\n208740|0.40278\n208741|0.38889\n208742|0.5\n208743|0.5\n208744|0.5\n208745|0.59722\n208746|0.48611\n208747|0.61111\n208748|0.63889\n208749|0.65278\n208750|0.5\n208751|0.27778\n208752|0.47222\n208753|0.68056\n208754|0.77778\n208755|0.5\n208756|0.27778\n208757|0.47222\n208758|0.5\n208759|0.5\n208760|0.51389\n208761|0.56944\n208762|0.45833\n208763|0.5\n208764|0.5\n208765|0.5\n208766|0.54167\n208767|0.59722\n208768|0.40278\n208769|0.5\n208770|0.5\n208771|0.5\n208772|0.5\n208773|0.36111\n208774|0.54167\n208775|0.65278\n208776|0.18056\n208777|0.5\n208778|0.58333\n208779|0.63889\n208780|0.19444\n208781|0.5\n208782|0.5\n208783|0.56944\n208784|0.625\n208785|0.5\n208786|0.5\n208787|0.5\n208788|0.81944\n208789|0.52778\n208790|0.5\n208791|0.56944\n208792|0.65278\n208793|0.61111\n208794|0.33333\n208795|0.5\n208796|0.56944\n208797|0.58333\n208798|0.625\n208799|0.55556\n208800|0.5\n208801|0.30556\n208802|0.45833\n208803|0.5\n208804|0.55556\n208805|0.5\n208806|0.29167\n208807|0.5\n208808|0.5\n208809|0.5\n208810|0.5\n208811|0.52778\n208812|0.56944\n208813|0.375\n208814|0.375\n208815|0.45833\n208816|0.33333\n208817|0.20833\n208818|0.5\n208819|0.5\n208820|0.5\n208821|0.59722\n208822|0.041667\n208823|0.5\n208824|0.52778\n208825|0.36111\n208826|0.29167\n208827|0.43056\n208828|0.61111\n208829|0.44444\n208830|0.26389\n208831|0.55556\n208832|0.5\n208833|0.5\n208834|0.44444\n208835|0.54167\n208836|0.43056\n208837|0.41667\n208838|0.66667\n208839|0.55556\n208840|0.47222\n208841|0.61111\n208842|0.5\n208843|0.5\n208844|0.56944\n208845|0.66667\n208846|0.5\n208847|0.48611\n208848|0.65278\n208849|0.25\n208850|0.5\n208851|0.5\n208852|0.27778\n208853|0.31944\n208854|0.38889\n208855|0.40278\n208856|0.54167\n208857|0.20833\n208858|0.59722\n208859|0.56944\n208860|0.52778\n208861|0.47222\n208862|0.375\n208863|0.51389\n208864|0.47222\n208865|0.5\n208866|0.5\n208867|0.44444\n208868|0.23611\n208869|0.26389\n208870|0.30556\n208871|0.5\n208872|0.45833\n208873|0.38889\n208874|0.41667\n208875|0.65278\n208876|0.86111\n208877|0.29167\n208878|0.5\n208879|0.33333\n208880|0.48611\n208881|0.5\n208882|0.52778\n208883|0.47222\n208884|0.5\n208885|0.44444\n208886|0.48611\n208887|0.47222\n208888|0.18056\n208889|0.5\n208890|0.51389\n208891|0.5\n208892|0.54167\n208893|0.73611\n208894|0.47222\n208895|0.33333\n208896|0.5\n208897|0.5\n208898|0.52778\n208899|0.33333\n208900|0.22222\n208901|0.29167\n208902|0.52778\n208903|0.48611\n208904|0.41667\n208905|0.36111\n208906|0.26389\n208907|0.22222\n208908|0.31944\n208909|0.22222\n208910|0.31944\n208911|0.40278\n208912|0.31944\n208913|0.29167\n208914|0.38889\n208915|0.43056\n208916|0.38889\n208917|0.70833\n208918|0.51389\n208919|0.38889\n208920|0.22222\n208921|0.33333\n208922|0.5\n208923|0.48611\n208924|0.375\n208925|0.29167\n208926|0.44444\n208927|0.27778\n208928|0.54167\n208929|0.27778\n208930|0.41667\n208931|0.11111\n208932|0.26389\n208933|0.52778\n208934|0.33333\n208935|0.36111\n208936|0.38889\n208937|0.45833\n208938|0.27778\n208939|0.38889\n208940|0.27778\n208941|0.44444\n208942|0.54167\n208943|0.44444\n208944|0.38889\n208945|0.33333\n208946|0.45833\n208947|0.5\n208948|0.33333\n208949|0.375\n208950|0.30556\n208951|0.20833\n208952|0.25\n208953|0.22222\n208954|0.29167\n208955|0.29167\n208956|0.375\n208957|0.27778\n208958|0.375\n208959|0.58333\n208960|0.36111\n208961|0.40278\n208962|0.33333\n208963|0.27778\n208964|0.29167\n208965|0.43056\n208966|0.44444\n208967|0.44444\n208968|0.5\n208969|0.38889\n208970|0.51389\n208971|0.5\n208972|0.5\n208973|0.68056\n208974|0.45833\n208975|0.58333\n208976|0.5\n208977|0.61111\n208978|0.63889\n208979|0.44444\n208980|0.5\n208981|0.58333\n208982|0.5\n208983|0.5\n208984|0.51389\n208985|0.5\n208986|0.52778\n208987|0.38889\n208988|0.19444\n208989|0.5\n208990|0.59722\n208991|0.70833\n208992|0.45833\n208993|0.66667\n208994|0.45833\n208995|0.69444\n208996|0.68056\n208997|0.54167\n208998|0.48611\n208999|0.5\n209000|0.5\n209001|0.16667\n209002|0.52778\n209003|0.55556\n209004|0.5\n209005|0.5\n209006|0.18056\n209007|0.30556\n209008|0.11111\n209009|0.5\n209010|0.38889\n209011|0.34722\n209012|0.097222\n209013|0.19444\n209014|0.18056\n209015|0.20833\n209016|0.33333\n209017|0.23611\n209018|0.375\n209019|0.19444\n209020|0.11111\n209021|0.055556\n209022|0.48611\n209023|0.15278\n209024|0.19444\n209025|0.68056\n209026|0.40278\n209027|0.44444\n209028|0.48611\n209029|0.375\n209030|0.33333\n209031|0.61111\n209032|0.5\n209033|0.5\n209034|0.5\n209035|0.5\n209036|0.40278\n209037|0.44444\n209038|0.38889\n209039|0.43056\n209040|0.31944\n209041|0.38889\n209042|0.18056\n209043|0.26389\n209044|0.16667\n209045|0.5\n209046|0.52778\n209047|0.625\n209048|0.58333\n209049|0.55556\n209050|0.5\n209051|0.5\n209052|0.5\n209053|0.5\n209054|0.26389\n209055|0.43056\n209056|0.27778\n209057|0.59722\n209058|0.5\n209059|0.5\n209060|0.5\n209061|0.5\n209062|0.51389\n209063|0.51389\n209064|0.47222\n209065|0.34722\n209066|0.5\n209067|0.125\n209068|0.5\n209069|0.38889\n209070|0.48611\n209071|0.5\n209072|0.5\n209073|0.5\n209074|0.55556\n209075|0.5\n209076|0.5\n209077|0.52778\n209078|0.38889\n209079|0.5\n209080|0.54167\n209081|0.65278\n209082|0.58333\n209083|0.22222\n209084|0.20833\n209085|0.94444\n209086|0.55556\n209087|0.52778\n209088|0.83333\n209089|0.81944\n209090|0.54167\n209091|0.65278\n209092|0.68056\n209093|0.56944\n209094|0.33333\n209095|0.55556\n209096|0.58333\n209097|0.5\n209098|0.45833\n209099|0.66667\n209100|0.5\n209101|0.5\n209102|0.5\n209103|0.5\n209104|0.54167\n209105|0.51389\n209106|0.41667\n209107|0.65278\n209108|0.52778\n209109|0.59722\n209110|0.43056\n209111|0.33333\n209112|0.61111\n209113|0.52778\n209114|0.56944\n209115|0.51389\n209116|0.5\n209117|0.5\n209118|0.29167\n209119|0.31944\n209120|0.5\n209121|0.20833\n209122|0.51389\n209123|0.38889\n209124|0.79167\n209125|0.76389\n209126|0.5\n209127|0.38889\n209128|0.52778\n209129|0.44444\n209130|0.43056\n209131|0.65278\n209132|0.5\n209133|0.5\n209134|0.36111\n209135|0.11111\n209136|0.27778\n209137|0.15278\n209138|0.041667\n209139|0.19444\n209140|0.29167\n209141|0.34722\n209142|0.43056\n209143|0.44444\n209144|0.40278\n209145|0.5\n209146|0.44444\n209147|0.44444\n209148|0.52778\n209149|0.41667\n209150|0.19444\n209151|0.54167\n209152|0.54167\n209153|0.59722\n209154|0.27778\n209155|0.5\n209156|0.41667\n209157|0.44444\n209158|0.43056\n209159|0.52778\n209160|0.5\n209161|0.55556\n209162|0.48611\n209163|0.625\n209164|0.44444\n209165|0.40278\n209166|0.25\n209167|0.5\n209168|0.55556\n209169|0.58333\n209170|0.5\n209171|0.5\n209172|0.36111\n209173|0.44444\n209174|0.56944\n209175|0.26389\n209176|0.43056\n209177|0.48611\n209178|0.22222\n209179|0.44444\n209180|0.36111\n209181|0.43056\n209182|0.47222\n209183|0.5\n209184|0.5\n209185|0.47222\n209186|0.45833\n209187|0.16667\n209188|0.5\n209189|0.5\n209190|0.59722\n209191|0.59722\n209192|0.66667\n209193|0.5\n209194|0.43056\n209195|0.61111\n209196|0.34722\n209197|0.5\n209198|0.54167\n209199|0.5\n209200|0.61111\n209201|0.38889\n209202|0.40278\n209203|0.5\n209204|0.66667\n209205|0.44444\n209206|0.44444\n209207|0.5\n209208|0.38889\n209209|0.47222\n209210|0.55556\n209211|0.375\n209212|0.5\n209213|0.5\n209214|0.5\n209215|0.34722\n209216|0.45833\n209217|0.44444\n209218|0.55556\n209219|0.52778\n209220|0.48611\n209221|0.55556\n209222|0.75\n209223|0.66667\n209224|0.5\n209225|0.20833\n209226|0.5\n209227|0.48611\n209228|0.5\n209229|0.52778\n209230|0.5\n209231|0.5\n209232|0.54167\n209233|0.5\n209234|0.30556\n209235|0.54167\n209236|0.5\n209237|0.80556\n209238|0.55556\n209239|0.77778\n209240|0.65278\n209241|0.5\n209242|0.44444\n209243|0.48611\n209244|0.41667\n209245|0.51389\n209246|0.48611\n209247|0.52778\n209248|0.875\n209249|0.13889\n209250|0.48611\n209251|0.58333\n209252|0.18056\n209253|0.31944\n209254|0.16667\n209255|0.23611\n209256|0.59722\n209257|0.18056\n209258|0.069444\n209259|0.44444\n209260|0.5\n209261|0.33333\n209262|0.5\n209263|0.52778\n209264|0.48611\n209265|0.11111\n209266|0.11111\n209267|0.5\n209268|0.38889\n209269|0.45833\n209270|0.5\n209271|0.38889\n209272|0.40278\n209273|0.73611\n209274|0.5\n209275|0.31944\n209276|0.5\n209277|0.22222\n209278|0.40278\n209279|0.30556\n209280|0.44444\n209281|0.63889\n209282|0.41667\n209283|0.5\n209284|0.58333\n209285|0.5\n209286|0.45833\n209287|0.55556\n209288|0.19444\n209289|0.45833\n209290|0.47222\n209291|0.61111\n209292|0.31944\n209293|0.43056\n209294|0.31944\n209295|0.027778\n209296|0.38889\n209297|0.23611\n209298|0.16667\n209299|0.47222\n209300|0.40278\n209301|0.125\n209302|0.38889\n209303|0.51389\n209304|0.5\n209305|0.5\n209306|0.51389\n209307|0.5\n209308|0.56944\n209309|0.33333\n209310|0.48611\n209311|0.27778\n209312|0.90278\n209313|0.47222\n209314|0.20833\n209315|0.5\n209316|0.25\n209317|0.625\n209318|0.48611\n209319|0.055556\n209320|0.20833\n209321|0.43056\n209322|0.26389\n209323|0.34722\n209324|0.22222\n209325|0.47222\n209326|0.15278\n209327|0.51389\n209328|0.5\n209329|0.5\n209330|0.5\n209331|0.5\n209332|0.66667\n209333|0.5\n209334|0.5\n209335|0.5\n209336|0.5\n209337|0.51389\n209338|0.625\n209339|0.51389\n209340|0.52778\n209341|0.47222\n209342|0.27778\n209343|0.13889\n209344|0.16667\n209345|0.34722\n209346|0.38889\n209347|0.56944\n209348|0.34722\n209349|0.41667\n209350|0.44444\n209351|0.26389\n209352|0.33333\n209353|0.47222\n209354|0.29167\n209355|0.56944\n209356|0.58333\n209357|0.375\n209358|0.29167\n209359|0.083333\n209360|0.083333\n209361|0.5\n209362|0.68056\n209363|0.54167\n209364|0.44444\n209365|0.375\n209366|0.44444\n209367|0.55556\n209368|0.5\n209369|0.26389\n209370|0.5\n209371|0.54167\n209372|0.52778\n209373|0.5\n209374|0.38889\n209375|0.52778\n209376|0.41667\n209377|0.5\n209378|0.5\n209379|0.55556\n209380|0.48611\n209381|0.19444\n209382|0.41667\n209383|0.33333\n209384|0.18056\n209385|0.22222\n209386|0.23611\n209387|0.23611\n209388|0.097222\n209389|0.18056\n209390|0.29167\n209391|0.31944\n209392|0.56944\n209393|0.38889\n209394|0.38889\n209395|0.41667\n209396|0.43056\n209397|0.56944\n209398|0.86111\n209399|0.70833\n209400|0.72222\n209401|0.51389\n209402|0.47222\n209403|0.61111\n209404|0.65278\n209405|0.58333\n209406|0.5\n209407|0.5\n209408|0.5\n209409|0.5\n209410|0.40278\n209411|0.5\n209412|0.51389\n209413|0.41667\n209414|0.51389\n209415|0.58333\n209416|0.54167\n209417|0.5\n209418|0.34722\n209419|0.5\n209420|0.26389\n209421|0.33333\n209422|0.5\n209423|0.375\n209424|0.20833\n209425|0.47222\n209426|0.44444\n209427|0.40278\n209428|0.27778\n209429|0.18056\n209430|0.25\n209431|0.5\n209432|0.27778\n209433|0.5\n209434|0.5\n209435|0.44444\n209436|0.44444\n209437|0.5\n209438|0.5\n209439|0.5\n209440|0.5\n209441|0.5\n209442|0.29167\n209443|0.5\n209444|0.5\n209445|0.47222\n209446|0.43056\n209447|0.16667\n209448|0.29167\n209449|0.47222\n209450|0.31944\n209451|0.30556\n209452|0.5\n209453|0.5\n209454|0.5\n209455|0.45833\n209456|0.80556\n209457|0.375\n209458|0.38889\n209459|0.63889\n209460|0.72222\n209461|0.29167\n209462|0.55556\n209463|0.5\n209464|0.61111\n209465|0.52778\n209466|0.5\n209467|0.5\n209468|0.44444\n209469|0.16667\n209470|0.40278\n209471|0.375\n209472|0.20833\n209473|0.27778\n209474|0.44444\n209475|0.5\n209476|0.5\n209477|0.22222\n209478|0.23611\n209479|0.54167\n209480|0.51389\n209481|0.38889\n209482|0.5\n209483|0.44444\n209484|0.45833\n209485|0.51389\n209486|0.44444\n209487|0.66667\n209488|0.48611\n209489|0.5\n209490|0.56944\n209491|0.47222\n209492|0.5\n209493|0.5\n209494|0.34722\n209495|0.56944\n209496|0.54167\n209497|0.31944\n209498|0.68056\n209499|0.18056\n209500|0.38889\n209501|0.41667\n209502|0.5\n209503|0.27778\n209504|0.23611\n209505|0.375\n209506|0.25\n209507|0.22222\n209508|0.33333\n209509|0.22222\n209510|0.5\n209511|0.375\n209512|0.44444\n209513|0.5\n209514|0.375\n209515|0.44444\n209516|0.44444\n209517|0.19444\n209518|0.22222\n209519|0.31944\n209520|0.19444\n209521|0.25\n209522|0.25\n209523|0.22222\n209524|0.30556\n209525|0.23611\n209526|0.23611\n209527|0.47222\n209528|0.5\n209529|0.70833\n209530|0.5\n209531|0.55556\n209532|0.5\n209533|0.51389\n209534|0.48611\n209535|0.58333\n209536|0.44444\n209537|0.083333\n209538|0.5\n209539|0.18056\n209540|0.125\n209541|0.5\n209542|0.34722\n209543|0.5\n209544|0.33333\n209545|0.5\n209546|0.55556\n209547|0.69444\n209548|0.5\n209549|0.29167\n209550|0.34722\n209551|0.5\n209552|0.36111\n209553|0.66667\n209554|0.59722\n209555|0.31944\n209556|0.18056\n209557|0.375\n209558|0.77778\n209559|0.58333\n209560|0.69444\n209561|0.52778\n209562|0.26389\n209563|0.51389\n209564|0.52778\n209565|0.48611\n209566|0.43056\n209567|0.81944\n209568|0.63889\n209569|0.5\n209570|0.5\n209571|0.5\n209572|0.5\n209573|0.5\n209574|0.5\n209575|0.13889\n209576|0.125\n209577|0.44444\n209578|0.40278\n209579|0.44444\n209580|0.5\n209581|0.54167\n209582|0.72222\n209583|0.72222\n209584|0.55556\n209585|0.5\n209586|0.52778\n209587|0.11111\n209588|0.18056\n209589|0.5\n209590|0.55556\n209591|0.69444\n209592|0.73611\n209593|0.66667\n209594|0.68056\n209595|0.5\n209596|0.5\n209597|0.56944\n209598|0.5\n209599|0.5\n209600|0.41667\n209601|0.65278\n209602|0.81944\n209603|0.68056\n209604|0.5\n209605|0.27778\n209606|0.66667\n209607|0.5\n209608|0.48611\n209609|0.40278\n209610|0.52778\n209611|0.5\n209612|0.5\n209613|0.5\n209614|0.5\n209615|0.48611\n209616|0.5\n209617|0.5\n209618|0.51389\n209619|0.59722\n209620|0.41667\n209621|0.375\n209622|0.44444\n209623|0.38889\n209624|0.34722\n209625|0.66667\n209626|0.70833\n209627|0.51389\n209628|0.34722\n209629|0.55556\n209630|0.55556\n209631|0.33333\n209632|0.61111\n209633|0.5\n209634|0.54167\n209635|0.36111\n209636|0.375\n209637|0.40278\n209638|0.23611\n209639|0.27778\n209640|0.30556\n209641|0.29167\n209642|0.29167\n209643|0.31944\n209644|0.375\n209645|0.26389\n209646|0.23611\n209647|0.20833\n209648|0.36111\n209649|0.5\n209650|0.55556\n209651|0.52778\n209652|0.54167\n209653|0.63889\n209654|0.29167\n209655|0.36111\n209656|0.51389\n209657|0.51389\n209658|0.5\n209659|0.40278\n209660|0.5\n209661|0.5\n209662|0.65278\n209663|0.5\n209664|0.30556\n209665|0.13889\n209666|0.22222\n209667|0.11111\n209668|0.5\n209669|0.5\n209670|0.5\n209671|0.125\n209672|0.20833\n209673|0.15278\n209674|0.31944\n209675|0.30556\n209676|0.5\n209677|0.33333\n209678|0.5\n209679|0.70833\n209680|0.27778\n209681|0.5\n209682|0.66667\n209683|0.72222\n209684|0.59722\n209685|0.61111\n209686|0.41667\n209687|0.18056\n209688|0.51389\n209689|0.5\n209690|0.44444\n209691|0.31944\n209692|0.48611\n209693|0.45833\n209694|0.5\n209695|0.43056\n209696|0.40278\n209697|0.43056\n209698|0.51389\n209699|0.66667\n209700|0.375\n209701|0.66667\n209702|0.56944\n209703|0.5\n209704|0.34722\n209705|0.375\n209706|0.44444\n209707|0.48611\n209708|0.44444\n209709|0.38889\n209710|0.22222\n209711|0.36111\n209712|0.27778\n209713|0.33333\n209714|0.22222\n209715|0.25\n209716|0.66667\n209717|0.72222\n209718|0.69444\n209719|0.34722\n209720|0.70833\n209721|0.375\n209722|0.27778\n209723|0.26389\n209724|0.69444\n209725|0.48611\n209726|0.36111\n209727|0.33333\n209728|0.33333\n209729|0.20833\n209730|0.48611\n209731|0.55556\n209732|0.34722\n209733|0.59722\n209734|0.45833\n209735|0.36111\n209736|0.5\n209737|0.58333\n209738|0.5\n209739|0.48611\n209740|0.48611\n209741|0.5\n209742|0.5\n209743|0.54167\n209744|0.73611\n209745|0.52778\n209746|0.5\n209747|0.44444\n209748|0.5\n209749|0.55556\n209750|0.625\n209751|0.52778\n209752|0.26389\n209753|0.61111\n209754|0.45833\n209755|0.73611\n209756|0.375\n209757|0.61111\n209758|0.51389\n209759|0.31944\n209760|0.43056\n209761|0.55556\n209762|0.22222\n209763|0.5\n209764|0.5\n209765|0.5\n209766|0.68056\n209767|0.61111\n209768|0.5\n209769|0.5\n209770|0.48611\n209771|0.5\n209772|0.52778\n209773|0.56944\n209774|0.51389\n209775|0.30556\n209776|0.5\n209777|0.54167\n209778|0.27778\n209779|0.375\n209780|0.83333\n209781|0.027778\n209782|0.125\n209783|0.43056\n209784|0.5\n209785|0.55556\n209786|0.58333\n209787|0.68056\n209788|0.5\n209789|0.5\n209790|0.5\n209791|0.5\n209792|0.65278\n209793|0.31944\n209794|0.51389\n209795|0.34722\n209796|0.59722\n209797|0.5\n209798|0.51389\n209799|0.375\n209800|0.22222\n209801|0.55556\n209802|0.45833\n209803|0.65278\n209804|0.51389\n209805|0.16667\n209806|0.29167\n209807|0.72222\n209808|0.45833\n209809|0.52778\n209810|0.76389\n209811|0.69444\n209812|0.18056\n209813|0.625\n209814|0.5\n209815|0.5\n209816|0.72222\n209817|0.41667\n209818|0.5\n209819|0.68056\n209820|0.23611\n209821|0.55556\n209822|0.41667\n209823|0.29167\n209824|0.66667\n209825|0.41667\n209826|0.59722\n209827|0.34722\n209828|0.33333\n209829|0.27778\n209830|0.56944\n209831|0.40278\n209832|0.23611\n209833|0.25\n209834|0.52778\n209835|0.34722\n209836|0.5\n209837|0.33333\n209838|0.20833\n209839|0.22222\n209840|0.33333\n209841|0.29167\n209842|0.055556\n209843|0.19444\n209844|0.5\n209845|0.52778\n209846|0.33333\n209847|0.5\n209848|0.5\n209849|0.625\n209850|0.45833\n209851|0.625\n209852|0.51389\n209853|0.36111\n209854|0.44444\n209855|0.40278\n209856|0.27778\n209857|0.5\n209858|0.40278\n209859|0.69444\n209860|0.5\n209861|0.61111\n209862|0.43056\n209863|0.36111\n209864|0.34722\n209865|0.31944\n209866|0.45833\n209867|0.5\n209868|0.58333\n209869|0.22222\n209870|0.5\n209871|0.5\n209872|0.69444\n209873|0.55556\n209874|0.51389\n209875|0.31944\n209876|0.40278\n209877|0.27778\n209878|0.26389\n209879|0.59722\n209880|0.5\n209881|0.40278\n209882|0.5\n209883|0.5\n209884|0.47222\n209885|0.52778\n209886|0.36111\n209887|0.48611\n209888|0.54167\n209889|0.5\n209890|0.44444\n209891|0.75\n209892|0.5\n209893|0.5\n209894|0.5\n209895|0.45833\n209896|0.61111\n209897|0.625\n209898|0.5\n209899|0.41667\n209900|0.5\n209901|0.25\n209902|0.5\n209903|0.40278\n209904|0.38889\n209905|0.55556\n209906|0.5\n209907|0.47222\n209908|0.5\n209909|0.5\n209910|0.33333\n209911|0.36111\n209912|0.38889\n209913|0.43056\n209914|0.47222\n209915|0.41667\n209916|0.69444\n209917|0.23611\n209918|0.30556\n209919|0.54167\n209920|0.47222\n209921|0.5\n209922|0.55556\n209923|0.63889\n209924|0.66667\n209925|0.52778\n209926|0.38889\n209927|0.34722\n209928|0.33333\n209929|0.27778\n209930|0.48611\n209931|0.38889\n209932|0.26389\n209933|0.375\n209934|0.5\n209935|0.63889\n209936|0.5\n209937|0.375\n209938|0.34722\n209939|0.44444\n209940|0.5\n209941|0.47222\n209942|0.5\n209943|0.5\n209944|0.5\n209945|0.27778\n209946|0.11111\n209947|0.15278\n209948|0.41667\n209949|0.097222\n209950|0.38889\n209951|0.375\n209952|0.38889\n209953|0.22222\n209954|0.27778\n209955|0.33333\n209956|0.041667\n209957|0.041667\n209958|0.055556\n209959|0.22222\n209960|0.29167\n209961|0.29167\n209962|0.61111\n209963|0.375\n209964|0.41667\n209965|0.44444\n209966|0.51389\n209967|0.63889\n209968|0.38889\n209969|0.36111\n209970|0.5\n209971|0.36111\n209972|0.5\n209973|0.41667\n209974|0.34722\n209975|0.44444\n209976|0.38889\n209977|0.55556\n209978|0.5\n209979|0.48611\n209980|0.55556\n209981|0.47222\n209982|0.51389\n209983|0.41667\n209984|0.52778\n209985|0.36111\n209986|0.25\n209987|0.47222\n209988|0.66667\n209989|0.51389\n209990|0.5\n209991|0.56944\n209992|0.38889\n209993|0.29167\n209994|0.38889\n209995|0.38889\n209996|0.52778\n209997|0.44444\n209998|0.58333\n209999|0.5\n210000|0.33333\n210001|0.13889\n210002|0.16667\n210003|0.22222\n210004|0.38889\n210005|0.375\n210006|0.5\n210007|0.65278\n210008|0.52778\n210009|0.65278\n210010|0.51389\n210011|0.59722\n210012|0.18056\n210013|0.40278\n210014|0.68056\n210015|0.83333\n210016|0.61111\n210017|0.40278\n210018|0.51389\n210019|0.51389\n210020|0.52778\n210021|0.52778\n210022|0.68056\n210023|0.66667\n210024|0.069444\n210025|0.51389\n210026|0.45833\n210027|0.88889\n210028|0.15278\n210029|0.48611\n210030|0.5\n210031|0.27778\n210032|0.55556\n210033|0.65278\n210034|0.36111\n210035|0.5\n210036|0.5\n210037|0.13889\n210038|0.16667\n210039|0.33333\n210040|0.58333\n210041|0.5\n210042|0.54167\n210043|0.5\n210044|0.36111\n210045|0.5\n210046|0.5\n210047|0.41667\n210048|0.51389\n210049|0.54167\n210050|0.44444\n210051|0.55556\n210052|0.61111\n210053|0.40278\n210054|0.41667\n210055|0.25\n210056|0.16667\n210057|0.41667\n210058|0.22222\n210059|0.54167\n210060|0.33333\n210061|0.30556\n210062|0.38889\n210063|0.33333\n210064|0.38889\n210065|0.16667\n210066|0.44444\n210067|0.25\n210068|0.38889\n210069|0.31944\n210070|0.23611\n210071|0.18056\n210072|0.5\n210073|0.61111\n210074|0.51389\n210075|0.38889\n210076|0.61111\n210077|0.5\n210078|0.45833\n210079|0.29167\n210080|0.33333\n210081|0.66667\n210082|0.45833\n210083|0.54167\n210084|0.72222\n210085|0.69444\n210086|0.51389\n210087|0.38889\n210088|0.25\n210089|0.63889\n210090|0.34722\n210091|0.13889\n210092|0.19444\n210093|0.22222\n210094|0.41667\n210095|0.41667\n210096|0.44444\n210097|0.33333\n210098|0.45833\n210099|0.31944\n210100|0.40278\n210101|0.44444\n210102|0.375\n210103|0.29167\n210104|0.36111\n210105|0.33333\n210106|0.23611\n210107|0.22222\n210108|0.27778\n210109|0.43056\n210110|0.48611\n210111|0.59722\n210112|0.51389\n210113|0.30556\n210114|0.48611\n210115|0.31944\n210116|0.5\n210117|0.66667\n210118|0.48611\n210119|0.44444\n210120|0.36111\n210121|0.33333\n210122|0.16667\n210123|0.54167\n210124|0.43056\n210125|0.48611\n210126|0.5\n210127|0.55556\n210128|0.69444\n210129|0.65278\n210130|0.33333\n210131|0.51389\n210132|0.51389\n210133|0.54167\n210134|0.20833\n210135|0.77778\n210136|0.58333\n210137|0.5\n210138|0.36111\n210139|0.43056\n210140|0.23611\n210141|0.54167\n210142|0.5\n210143|0.31944\n210144|0.5\n210145|0.33333\n210146|0.36111\n210147|0.38889\n210148|0.55556\n210149|0.51389\n210150|0.61111\n210151|0.55556\n210152|0.84722\n210153|0.5\n210154|0.66667\n210155|0.5\n210156|0.66667\n210157|0.51389\n210158|0.59722\n210159|0.61111\n210160|0.79167\n210161|0.61111\n210162|0.70833\n210163|0.68056\n210164|0.5\n210165|0.26389\n210166|0.5\n210167|0.66667\n210168|0.51389\n210169|0.66667\n210170|0.59722\n210171|0.625\n210172|0.5\n210173|0.31944\n210174|0.5\n210175|0.34722\n210176|0.59722\n210177|0.18056\n210178|0.23611\n210179|0.25\n210180|0.25\n210181|0.33333\n210182|0.5\n210183|0.45833\n210184|0.22222\n210185|0.125\n210186|0.13889\n210187|0.13889\n210188|0.23611\n210189|0.54167\n210190|0.33333\n210191|0.33333\n210192|0.18056\n210193|0.125\n210194|0.66667\n210195|0.52778\n210196|0.36111\n210197|0.68056\n210198|0.61111\n210199|0.61111\n210200|0.38889\n210201|0.5\n210202|0.5\n210203|0.48611\n210204|0.40278\n210205|0.52778\n210206|0.51389\n210207|0.27778\n210208|0.44444\n210209|0.125\n210210|0.43056\n210211|0.38889\n210212|0.20833\n210213|0.5\n210214|0.48611\n210215|0.19444\n210216|0.59722\n210217|0.63889\n210218|0.45833\n210219|0.625\n210220|0.625\n210221|0.55556\n210222|0.5\n210223|0.47222\n210224|0.47222\n210225|0.59722\n210226|0.58333\n210227|0.65278\n210228|0.375\n210229|0.69444\n210230|0.66667\n210231|0.72222\n210232|0.63889\n210233|0.45833\n210234|0.5\n210235|0.5\n210236|0.51389\n210237|0.56944\n210238|0.61111\n210239|0.5\n210240|0.5\n210241|0.44444\n210242|0.45833\n210243|0.5\n210244|0.5\n210245|0.69444\n210246|0.625\n210247|0.90278\n210248|0.5\n210249|0.45833\n210250|0.58333\n210251|0.5\n210252|0.5\n210253|0.31944\n210254|0.55556\n210255|0.65278\n210256|0.5\n210257|0.63889\n210258|0.5\n210259|0.56944\n210260|0.43056\n210261|0.069444\n210262|0.29167\n210263|0.29167\n210264|0.5\n210265|0.79167\n210266|0.55556\n210267|0.66667\n210268|0.65278\n210269|0.65278\n210270|0.61111\n210271|0.61111\n210272|0.55556\n210273|0.61111\n210274|0.58333\n210275|0.23611\n210276|0.19444\n210277|0.20833\n210278|0.26389\n210279|0.47222\n210280|0.44444\n210281|0.27778\n210282|0.18056\n210283|0.27778\n210284|0.40278\n210285|0.41667\n210286|0.19444\n210287|0.54167\n210288|0.5\n210289|0.54167\n210290|0.5\n210291|0.56944\n210292|0.5\n210293|0.38889\n210294|0.5\n210295|0.22222\n210296|0.54167\n210297|0.23611\n210298|0.33333\n210299|0.625\n210300|0.38889\n210301|0.33333\n210302|0.38889\n210303|0.68056\n210304|0.5\n210305|0.44444\n210306|0.5\n210307|0.55556\n210308|0.81944\n210309|0.44444\n210310|0.5\n210311|0.59722\n210312|0.30556\n210313|0.5\n210314|0.20833\n210315|0.22222\n210316|0.097222\n210317|0.27778\n210318|0.43056\n210319|0.40278\n210320|0.34722\n210321|0.5\n210322|0.5\n210323|0.55556\n210324|0.45833\n210325|0.5\n210326|0.34722\n210327|0.61111\n210328|0.69444\n210329|0.41667\n210330|0.51389\n210331|0.51389\n210332|0.5\n210333|0.47222\n210334|0.47222\n210335|0.55556\n210336|0.45833\n210337|0.31944\n210338|0.5\n210339|0.5\n210340|0.51389\n210341|0.44444\n210342|0.25\n210343|0.55556\n210344|0.15278\n210345|0.29167\n210346|0.51389\n210347|0.33333\n210348|0.38889\n210349|0.40278\n210350|0.5\n210351|0.22222\n210352|0.15278\n210353|0.47222\n210354|0.16667\n210355|0.23611\n210356|0.52778\n210357|0.59722\n210358|0.58333\n210359|0.16667\n210360|0.5\n210361|0.22222\n210362|0.26389\n210363|0.51389\n210364|0.38889\n210365|0.5\n210366|0.30556\n210367|0.26389\n210368|0.47222\n210369|0.22222\n210370|0.16667\n210371|0.125\n210372|0.375\n210373|0.51389\n210374|0.47222\n210375|0.26389\n210376|0.34722\n210377|0.47222\n210378|0.66667\n210379|0.36111\n210380|0.77778\n210381|0.72222\n210382|0.59722\n210383|0.5\n210384|0.5\n210385|0.375\n210386|0.86111\n210387|0.77778\n210388|0.77778\n210389|0.56944\n210390|0.5\n210391|0.44444\n210392|0.5\n210393|0.38889\n210394|0.47222\n210395|0.38889\n210396|0.48611\n210397|0.5\n210398|0.5\n210399|0.30556\n210400|0.5\n210401|0.5\n210402|0.70833\n210403|0.36111\n210404|0.45833\n210405|0.47222\n210406|0.31944\n210407|0.375\n210408|0.45833\n210409|0.52778\n210410|0.63889\n210411|0.20833\n210412|0.5\n210413|0.48611\n210414|0.38889\n210415|0.16667\n210416|0.5\n210417|0.63889\n210418|0.22222\n210419|0.47222\n210420|0.5\n210421|0.27778\n210422|0.15278\n210423|0.27778\n210424|0.16667\n210425|0.56944\n210426|0.33333\n210427|0.56944\n210428|0.11111\n210429|0.22222\n210430|0.36111\n210431|0.31944\n210432|0.55556\n210433|0.51389\n210434|0.5\n210435|0.31944\n210436|0.375\n210437|0.5\n210438|0.5\n210439|0.58333\n210440|0.33333\n210441|0.625\n210442|0.45833\n210443|0.25\n210444|0.18056\n210445|0.55556\n210446|0.61111\n210447|0.47222\n210448|0.5\n210449|0.79167\n210450|0.44444\n210451|0.15278\n210452|0.23611\n210453|0.5\n210454|0.5\n210455|0.54167\n210456|0.51389\n210457|0.51389\n210458|0.16667\n210459|0.30556\n210460|0.22222\n210461|0.43056\n210462|0.47222\n210463|0.31944\n210464|0.55556\n210465|0.16667\n210466|0.5\n210467|0.44444\n210468|0.375\n210469|0.33333\n210470|0.31944\n210471|0.43056\n210472|0.36111\n210473|0.41667\n210474|0.29167\n210475|0.51389\n210476|0.5\n210477|0.43056\n210478|0.20833\n210479|0.34722\n210480|0.51389\n210481|0.52778\n210482|0.45833\n210483|0.66667\n210484|0.625\n210485|0.5\n210486|0.66667\n210487|0.5\n210488|0.5\n210489|0.125\n210490|0.48611\n210491|0.38889\n210492|0.48611\n210493|0.48611\n210494|0.48611\n210495|0.5\n210496|0.5\n210497|0.69444\n210498|0.65278\n210499|0.31944\n210500|0.40278\n210501|0.47222\n210502|0.44444\n210503|0.51389\n210504|0.51389\n210505|0.23611\n210506|0.30556\n210507|0.5\n210508|0.5\n210509|0.45833\n210510|0.36111\n210511|0.45833\n210512|0.5\n210513|0.55556\n210514|0.38889\n210515|0.45833\n210516|0.34722\n210517|0.625\n210518|0.55556\n210519|0.375\n210520|0.36111\n210521|0.22222\n210522|0.52778\n210523|0.47222\n210524|0.25\n210525|0.54167\n210526|0.59722\n210527|0.5\n210528|0.5\n210529|0.56944\n210530|0.48611\n210531|0.36111\n210532|0.33333\n210533|0.65278\n210534|0.41667\n210535|0.45833\n210536|0.41667\n210537|0.41667\n210538|0.26389\n210539|0.48611\n210540|0.59722\n210541|0.72222\n210542|0.5\n210543|0.5\n210544|0.5\n210545|0.38889\n210546|0.36111\n210547|0.51389\n210548|0.52778\n210549|0.41667\n210550|0.31944\n210551|0.31944\n210552|0.5\n210553|0.44444\n210554|0.31944\n210555|0.5\n210556|0.30556\n210557|0.44444\n210558|0.31944\n210559|0.5\n210560|0.76389\n210561|0.25\n210562|0.55556\n210563|0.5\n210564|0.29167\n210565|0.5\n210566|0.5\n210567|0.59722\n210568|0.68056\n210569|0.5\n210570|0.45833\n210571|0.61111\n210572|0.22222\n210573|0.25\n210574|0.55556\n210575|0.5\n210576|0.59722\n210577|0.5\n210578|0.55556\n210579|0.59722\n210580|0.16667\n210581|0.36111\n210582|0.58333\n210583|0.56944\n210584|0.66667\n210585|0.72222\n210586|0.68056\n210587|0.5\n210588|0.61111\n210589|0.58333\n210590|0.5\n210591|0.45833\n210592|0.375\n210593|0.38889\n210594|0.5\n210595|0.5\n210596|0.55556\n210597|0.38889\n210598|0.43056\n210599|0.5\n210600|0.5\n210601|0.51389\n210602|0.45833\n210603|0.47222\n210604|0.5\n210605|0.66667\n210606|0.5\n210607|0.44444\n210608|0.44444\n210609|0.52778\n210610|0.58333\n210611|0.80556\n210612|0.5\n210613|0.5\n210614|0.5\n210615|0.41667\n210616|0.59722\n210617|0.5\n210618|0.36111\n210619|0.5\n210620|0.51389\n210621|0.75\n210622|0.65278\n210623|0.5\n210624|0.44444\n210625|0.61111\n210626|0.34722\n210627|0.47222\n210628|0.66667\n210629|0.27778\n210630|0.43056\n210631|0.41667\n210632|0.43056\n210633|0.38889\n210634|0.45833\n210635|0.51389\n210636|0.31944\n210637|0.5\n210638|0.51389\n210639|0.41667\n210640|0.38889\n210641|0.54167\n210642|0.52778\n210643|0.44444\n210644|0.41667\n210645|0.43056\n210646|0.29167\n210647|0.84722\n210648|0.5\n210649|0.47222\n210650|0.375\n210651|0.29167\n210652|0.34722\n210653|0.26389\n210654|0.59722\n210655|0.375\n210656|0.43056\n210657|0.48611\n210658|0.26389\n210659|0.29167\n210660|0.47222\n210661|0.56944\n210662|0.5\n210663|0.125\n210664|0.22222\n210665|0.23611\n210666|0.23611\n210667|0.22222\n210668|0.375\n210669|0.22222\n210670|0.16667\n210671|0.25\n210672|0.33333\n210673|0.375\n210674|0.38889\n210675|0.38889\n210676|0.44444\n210677|0.27778\n210678|0.52778\n210679|0.29167\n210680|0.27778\n210681|0.25\n210682|0.54167\n210683|0.56944\n210684|0.44444\n210685|0.19444\n210686|0.56944\n210687|0.44444\n210688|0.61111\n210689|0.20833\n210690|0.5\n210691|0.375\n210692|0.11111\n210693|0.40278\n210694|0.19444\n210695|0.25\n210696|0.25\n210697|0.18056\n210698|0.44444\n210699|0.48611\n210700|0.81944\n210701|0.73611\n210702|0.34722\n210703|0.55556\n210704|0.51389\n210705|0.44444\n210706|0.41667\n210707|0.29167\n210708|0.5\n210709|0.48611\n210710|0.63889\n210711|0.5\n210712|0.5\n210713|0.13889\n210714|0.30556\n210715|0.51389\n210716|0.52778\n210717|0.45833\n210718|0.30556\n210719|0.55556\n210720|0.33333\n210721|0.22222\n210722|0.27778\n210723|0.34722\n210724|0.5\n210725|0.38889\n210726|0.63194\n210727|0.69444\n210728|0.66667\n210729|0.41667\n210730|0.40278\n210731|0.34722\n210732|0.34722\n210733|0.56944\n210734|0.375\n210735|0.5\n210736|0.48611\n210737|0.44444\n210738|0.5\n210739|0.44444\n210740|0.5\n210741|0.58333\n210742|0.5\n210743|0.58333\n210744|0.48611\n210745|0.30556\n210746|0.54167\n210747|0.5\n210748|0.5\n210749|0.625\n210750|0.54167\n210751|0.54167\n210752|0.34722\n210753|0.45833\n210754|0.44444\n210755|0.33333\n210756|0.47222\n210757|0.45833\n210758|0.30556\n210759|0.18056\n210760|0.18056\n210761|0.56944\n210762|0.43056\n210763|0.48611\n210764|0.5\n210765|0.5\n210766|0.65278\n210767|0.61111\n210768|0.47222\n210769|0.38889\n210770|0.48611\n210771|0.43056\n210772|0.31944\n210773|0.19444\n210774|0.27778\n210775|0.38889\n210776|0.30556\n210777|0.33333\n210778|0.48611\n210779|0.22222\n210780|0.38889\n210781|0.56944\n210782|0.70833\n210783|0.38889\n210784|0.70833\n210785|0.69444\n210786|0.68056\n210787|0.625\n210788|0.51389\n210789|0.79167\n210790|0.76389\n210791|0.68056\n210792|0.79167\n210793|0.5\n210794|0.5\n210795|0.25\n210796|0.5\n210797|0.15278\n210798|0.5\n210799|0.41667\n210800|0.55556\n210801|0.31944\n210802|0.51389\n210803|0.54167\n210804|0.58333\n210805|0.61111\n210806|0.47222\n210807|0.40278\n210808|0.66667\n210809|0.5\n210810|0.5\n210811|0.25\n210812|0.18056\n210813|0.44444\n210814|0.55556\n210815|0.31944\n210816|0.5\n210817|0.375\n210818|0.81944\n210819|0.041667\n210820|0.5\n210821|0.55556\n210822|0.47222\n210823|0.5\n210824|0.38889\n210825|0.44444\n210826|0.45833\n210827|0.5\n210828|0.20833\n210829|0.44444\n210830|0.59722\n210831|0.25\n210832|0.52778\n210833|0.55556\n210834|0.22222\n210835|0.41667\n210836|0.30556\n210837|0.33333\n210838|0.33333\n210839|0.5\n210840|0.5\n210841|0.65278\n210842|0.23611\n210843|0.61111\n210844|0.40278\n210845|0.41667\n210846|0.23611\n210847|0.5\n210848|0.52778\n210849|0.5\n210850|0.5\n210851|0.47222\n210852|0.33333\n210853|0.31944\n210854|0.40278\n210855|0.47222\n210856|0.38889\n210857|0.375\n210858|0.5\n210859|0.43056\n210860|0.41667\n210861|0.097222\n210862|0.5\n210863|0.41667\n210864|0.68056\n210865|0.58333\n210866|0.43056\n210867|0.41667\n210868|0.5\n210869|0.27778\n210870|0.40278\n210871|0.5\n210872|0.5\n210873|0.45833\n210874|0.54167\n210875|0.5\n210876|0.51389\n210877|0.5\n210878|0.51389\n210879|0.44444\n210880|0.44444\n210881|0.375\n210882|0.34722\n210883|0.22222\n210884|0.36111\n210885|0.5\n210886|0.48611\n210887|0.30556\n210888|0.5\n210889|0.59722\n210890|0.5\n210891|0.5\n210892|0.5\n210893|0.5\n210894|0.44444\n210895|0.38889\n210896|0.625\n210897|0.33333\n210898|0.30556\n210899|0.54167\n210900|0.44444\n210901|0.30556\n210902|0.27778\n210903|0.5\n210904|0.20833\n210905|0.34722\n210906|0.27778\n210907|0.58333\n210908|0.5\n210909|0.5\n210910|0.58333\n210911|0.5\n210912|0.5\n210913|0.5\n210914|0.5\n210915|0.41667\n210916|0.31944\n210917|0.5\n210918|0.26389\n210919|0.38889\n210920|0.34722\n210921|0.30556\n210922|0.31944\n210923|0.38889\n210924|0.48611\n210925|0.47222\n210926|0.34722\n210927|0.38889\n210928|0.22222\n210929|0.48611\n210930|0.375\n210931|0.81944\n210932|0.5\n210933|0.625\n210934|0.44444\n210935|0.41667\n210936|0.5\n210937|0.52778\n210938|0.56944\n210939|0.5\n210940|0.47222\n210941|0.33333\n210942|0.38889\n210943|0.43056\n210944|0.29167\n210945|0.41667\n210946|0.43056\n210947|0.5\n210948|0.31944\n210949|0.25\n210950|0.5\n210951|0.29167\n210952|0.69444\n210953|0.44444\n210954|0.27778\n210955|0.055556\n210956|0.38889\n210957|0.20833\n210958|0.55556\n210959|0.625\n210960|0.38889\n210961|0.83333\n210962|0.5\n210963|0.61111\n210964|0.36111\n210965|0.26389\n210966|0.44444\n210967|0.34722\n210968|0.23611\n210969|0.125\n210970|0.59722\n210971|0.5\n210972|0.5\n210973|0.26389\n210974|0.41667\n210975|0.61111\n210976|0.36111\n210977|0.5\n210978|0.66667\n210979|0.34722\n210980|0.34722\n210981|0.48611\n210982|0.47222\n210983|0.33333\n210984|0.56944\n210985|0.625\n210986|0.70833\n210987|0.55556\n210988|0.47222\n210989|0.31944\n210990|0.33333\n210991|0.86111\n210992|0.5\n210993|0.55556\n210994|0.5\n210995|0.5\n210996|0.47222\n210997|0.27778\n210998|0.625\n210999|0.375\n211000|0.19444\n211001|0.069444\n211002|0.083333\n211003|0.31944\n211004|0.625\n211005|0.40278\n211006|0.54167\n211007|0.5\n211008|0.5\n211009|0.5\n211010|0.23611\n211011|0.59722\n211012|0.51389\n211013|0.55556\n211014|0.73611\n211015|0.5\n211016|0.54167\n211017|0.44444\n211018|0.38889\n211019|0.58333\n211020|0.625\n211021|0.47222\n211022|0.34722\n211023|0.51389\n211024|0.27778\n211025|0.36111\n211026|0.38889\n211027|0.23611\n211028|0.30556\n211029|0.375\n211030|0.43056\n211031|0.25\n211032|0.43056\n211033|0.36111\n211034|0.33333\n211035|0.54167\n211036|0.16667\n211037|0.16667\n211038|0.34722\n211039|0.30556\n211040|0.36111\n211041|0.26389\n211042|0.66667\n211043|0.27778\n211044|0.40278\n211045|0.33333\n211046|0.27778\n211047|0.22222\n211048|0.375\n211049|0.33333\n211050|0.45833\n211051|0.33333\n211052|0.55556\n211053|0.36111\n211054|0.72222\n211055|0.625\n211056|0.83333\n211057|0.34722\n211058|0.33333\n211059|0.56944\n211060|0.25\n211061|0.33333\n211062|0.23611\n211063|0.44444\n211064|0.51389\n211065|0.5\n211066|0.44444\n211067|0.041667\n211068|0.56944\n211069|0.77778\n211070|0.25\n211071|0.25\n211072|0.43056\n211073|0.55556\n211074|0.44444\n211075|0.63889\n211076|0.29167\n211077|0.51389\n211078|0.33333\n211079|0.63889\n211080|0.59722\n211081|0.22222\n211082|0.40278\n211083|0.18056\n211084|0.30556\n211085|0.41667\n211086|0.51389\n211087|0.34722\n211088|0.26389\n211089|0.65278\n211090|0.375\n211091|0.33333\n211092|0.41667\n211093|0.27778\n211094|0.23611\n211095|0.31944\n211096|0.44444\n211097|0.13889\n211098|0.29167\n211099|0.36111\n211100|0.26389\n211101|0.56944\n211102|0.34722\n211103|0.44444\n211104|0.38889\n211105|0.27778\n211106|0.47222\n211107|0.52778\n211108|0.41667\n211109|0.29167\n211110|0.43056\n211111|0.51389\n211112|0.22222\n211113|0.16667\n211114|0.25\n211115|0.19444\n211116|0.31944\n211117|0.26389\n211118|0.11111\n211119|0.19444\n211120|0.41667\n211121|0.34722\n211122|0.69444\n211123|0.27778\n211124|0.47222\n211125|0.5\n211126|0.5\n211127|0.33333\n211128|0.22222\n211129|0.5\n211130|0.33333\n211131|0.40278\n211132|0.30556\n211133|0.45833\n211134|0.25\n211135|0.25\n211136|0.36111\n211137|0.38889\n211138|0.33333\n211139|0.34722\n211140|0.083333\n211141|0.5\n211142|0.5\n211143|0.5\n211144|0.59722\n211145|0.48611\n211146|0.5\n211147|0.5\n211148|0.51389\n211149|0.61111\n211150|0.66667\n211151|0.55556\n211152|0.38889\n211153|0.44444\n211154|0.44444\n211155|0.25\n211156|0.30556\n211157|0.26389\n211158|0.44444\n211159|0.5\n211160|0.36111\n211161|0.5\n211162|0.20833\n211163|0.34722\n211164|0.22222\n211165|0.5\n211166|0.52778\n211167|0.33333\n211168|0.5\n211169|0.27778\n211170|0.44444\n211171|0.48611\n211172|0.29167\n211173|0.5\n211174|0.34722\n211175|0.5\n211176|0.16667\n211177|0.5\n211178|0.625\n211179|0.5\n211180|0.16667\n211181|0.375\n211182|0.52778\n211183|0.30556\n211184|0.30556\n211185|0.44444\n211186|0.33333\n211187|0.25\n211188|0.13889\n211189|0.25\n211190|0.5\n211191|0.13889\n211192|0.41667\n211193|0.31944\n211194|0.56944\n211195|0.51389\n211196|0.5\n211197|0.5\n211198|0.58333\n211199|0.27778\n211200|0.56944\n211201|0.19444\n211202|0.34722\n211203|0.41667\n211204|0.41667\n211205|0.43056\n211206|0.51389\n211207|0.625\n211208|0.44444\n211209|0.5\n211210|0.48611\n211211|0.63889\n211212|0.5\n211213|0.5\n211214|0.58333\n211215|0.069444\n211216|0.47222\n211217|0.51389\n211218|0.66667\n211219|0.16667\n211220|0.5\n211221|0.43056\n211222|0.58333\n211223|0.61111\n211224|0.63889\n211225|0.5\n211226|0.55556\n211227|0.5\n211228|0.5\n211229|0.47222\n211230|0.33333\n211231|0.36111\n211232|0.40278\n211233|0.33333\n211234|0.48611\n211235|0.44444\n211236|0.5\n211237|0.51389\n211238|0.23611\n211239|0.5\n211240|0.33333\n211241|0.23611\n211242|0.33333\n211243|0.5\n211244|0.43056\n211245|0.38889\n211246|0.5\n211247|0.5\n211248|0.5\n211249|0.5\n211250|0.5\n211251|0.51389\n211252|0.25\n211253|0.48611\n211254|0.5\n211255|0.73611\n211256|0.54167\n211257|0.55556\n211258|0.33333\n211259|0.68056\n211260|0.375\n211261|0.45833\n211262|0.29167\n211263|0.27778\n211264|0.36111\n211265|0.26389\n211266|0.44444\n211267|0.29167\n211268|0.5\n211269|0.47222\n211270|0.5\n211271|0.34722\n211272|0.27778\n211273|0.44444\n211274|0.51389\n211275|0.51389\n211276|0.30556\n211277|0.38889\n211278|0.5\n211279|0.55556\n211280|0.72222\n211281|0.30556\n211282|0.61111\n211283|0.58333\n211284|0.73611\n211285|0.625\n211286|0.47222\n211287|0.18056\n211288|0.54167\n211289|0.55556\n211290|0.5\n211291|0.5\n211292|0.48611\n211293|0.5\n211294|0.5\n211295|0.38889\n211296|0.44444\n211297|0.55556\n211298|0.30556\n211299|0.5\n211300|0.25\n211301|0.5\n211302|0.5\n211303|0.73611\n211304|0.5\n211305|0.56944\n211306|0.5\n211307|0.375\n211308|0.36111\n211309|0.68056\n211310|0.51389\n211311|0.45833\n211312|0.5\n211313|0.375\n211314|0.5\n211315|0.31944\n211316|0.33333\n211317|0.5\n211318|0.61111\n211319|0.40278\n211320|0.33333\n211321|0.30556\n211322|0.375\n211323|0.5\n211324|0.22222\n211325|0.52778\n211326|0.19444\n211327|0.38889\n211328|0.38889\n211329|0.41667\n211330|0.22222\n211331|0.54167\n211332|0.23611\n211333|0.5\n211334|0.44444\n211335|0.58333\n211336|0.23611\n211337|0.5\n211338|0.5\n211339|0.5\n211340|0.41667\n211341|0.54167\n211342|0.45833\n211343|0.34722\n211344|0.5\n211345|0.55556\n211346|0.52778\n211347|0.34722\n211348|0.5\n211349|0.55556\n211350|0.5\n211351|0.63889\n211352|0.58333\n211353|0.29167\n211354|0.34722\n211355|0.16667\n211356|0.45833\n211357|0.5\n211358|0.33333\n211359|0.36111\n211360|0.48611\n211361|0.13889\n211362|0.22222\n211363|0.13889\n211364|0.20833\n211365|0.34722\n211366|0.55556\n211367|0.59722\n211368|0.40278\n211369|0.77778\n211370|0.34722\n211371|0.27778\n211372|0.375\n211373|0.44444\n211374|0.16667\n211375|0.20833\n211376|0.5\n211377|0.48611\n211378|0.5\n211379|0.77778\n211380|0.61111\n211381|0.48611\n211382|0.48611\n211383|0.38889\n211384|0.38889\n211385|0.41667\n211386|0.45833\n211387|0.30556\n211388|0.22222\n211389|0.54167\n211390|0.5\n211391|0.5\n211392|0.5\n211393|0.5\n211394|0.5\n211395|0.40278\n211396|0.30556\n211397|0.5\n211398|0.5\n211399|0.40278\n211400|0.5\n211401|0.5\n211402|0.38889\n211403|0.34722\n211404|0.20833\n211405|0.16667\n211406|0.61111\n211407|0.55556\n211408|0.51389\n211409|0.44444\n211410|0.25\n211411|0.5\n211412|0.38889\n211413|0.66667\n211414|0.5\n211415|0.44444\n211416|0.43056\n211417|0.375\n211418|0.93056\n211419|0.63889\n211420|0.65278\n211421|0.44444\n211422|0.52778\n211423|0.36111\n211424|0.55556\n211425|0.52778\n211426|0.41667\n211427|0.52778\n211428|0.30556\n211429|0.45833\n211430|0.31944\n211431|0.48611\n211432|0.48611\n211433|0.27778\n211434|0.5\n211435|0.33333\n211436|0.5\n211437|0.45833\n211438|0.5\n211439|0.5\n211440|0.5\n211441|0.5\n211442|0.5\n211443|0.26389\n211444|0.20833\n211445|0.18056\n211446|0.52778\n211447|0.40278\n211448|0.19444\n211449|0.625\n211450|0.375\n211451|0.38889\n211452|0.5\n211453|0.25\n211454|0.5\n211455|0.66667\n211456|0.55556\n211457|0.36111\n211458|0.22222\n211459|0.5\n211460|0.31944\n211461|0.15278\n211462|0.11111\n211463|0.48611\n211464|0.55556\n211465|0.36111\n211466|0.38889\n211467|0.33333\n211468|0.68056\n211469|0.11111\n211470|0.23611\n211471|0.43056\n211472|0.66667\n211473|0.29167\n211474|0.26389\n211475|0.31944\n211476|0.44444\n211477|0.68056\n211478|0.38889\n211479|0.27778\n211480|0.22222\n211481|0.51389\n211482|0.52778\n211483|0.44444\n211484|0.63889\n211485|0.19444\n211486|0.20833\n211487|0.66667\n211488|0.625\n211489|0.83333\n211490|0.38889\n211491|0.43056\n211492|0.41667\n211493|0.38889\n211494|0.36111\n211495|0.5\n211496|0.61111\n211497|0.5\n211498|0.44444\n211499|0.27778\n211500|0.26389\n211501|0.20833\n211502|0.40278\n211503|0.38889\n211504|0.48611\n211505|0.77778\n211506|0.47222\n211507|0.5\n211508|0.5\n211509|0.27778\n211510|0.47222\n211511|0.48611\n211512|0.68056\n211513|0.68056\n211514|0.5\n211515|0.30556\n211516|0.5\n211517|0.33333\n211518|0.44444\n211519|0.15278\n211520|0.25\n211521|0.25\n211522|0.34722\n211523|0.22222\n211524|0.15278\n211525|0.26389\n211526|0.5\n211527|0.70833\n211528|0.41667\n211529|0.34722\n211530|0.34722\n211531|0.5\n211532|0.48611\n211533|0.5\n211534|0.27778\n211535|0.5\n211536|0.5\n211537|0.48611\n211538|0.5\n211539|0.51389\n211540|0.45833\n211541|0.58333\n211542|0.41667\n211543|0.34722\n211544|0.375\n211545|0.25\n211546|0.69444\n211547|0.47222\n211548|0.43056\n211549|0.41667\n211550|0.5\n211551|0.5\n211552|0.51389\n211553|0.16667\n211554|0.375\n211555|0.25\n211556|0.22222\n211557|0.52778\n211558|0.5\n211559|0.38889\n211560|0.72222\n211561|0.69444\n211562|0.54167\n211563|0.5\n211564|0.55556\n211565|0.375\n211566|0.25\n211567|0.47222\n211568|0.27778\n211569|0.19444\n211570|0.43056\n211571|0.40278\n211572|0.41667\n211573|0.55556\n211574|0.27778\n211575|0.23611\n211576|0.22222\n211577|0.44444\n211578|0.43056\n211579|0.51389\n211580|0.22222\n211581|0.56944\n211582|0.40278\n211583|0.52778\n211584|0.52778\n211585|0.5\n211586|0.5\n211587|0.18056\n211588|0.18056\n211589|0.375\n211590|0.26389\n211591|0.27778\n211592|0.5\n211593|0.41667\n211594|0.58333\n211595|0.38889\n211596|0.36111\n211597|0.33333\n211598|0.38889\n211599|0.29167\n211600|0.40278\n211601|0.31944\n211602|0.30556\n211603|0.30556\n211604|0.375\n211605|0.375\n211606|0.26389\n211607|0.34722\n211608|0.36111\n211609|0.43056\n211610|0.65278\n211611|0.44444\n211612|0.45833\n211613|0.59722\n211614|0.68056\n211615|0.52778\n211616|0.5\n211617|0.61111\n211618|0.54167\n211619|0.41667\n211620|0.38889\n211621|0.5\n211622|0.38889\n211623|0.625\n211624|0.23611\n211625|0.47222\n211626|0.44444\n211627|0.30556\n211628|0.30556\n211629|0.45833\n211630|0.47222\n211631|0.22222\n211632|0.56944\n211633|0.27778\n211634|0.36111\n211635|0.5\n211636|0.25\n211637|0.16667\n211638|0.44444\n211639|0.40278\n211640|0.48611\n211641|0.13889\n211642|0.22222\n211643|0.55556\n211644|0.5\n211645|0.5\n211646|0.625\n211647|0.5\n211648|0.055556\n211649|0.5\n211650|0.5\n211651|0.58333\n211652|0.72222\n211653|0.5\n211654|0.52778\n211655|0.375\n211656|0.63889\n211657|0.45833\n211658|0.47222\n211659|0.61111\n211660|0.40278\n211661|0.16667\n211662|0.5\n211663|0.5\n211664|0.65278\n211665|0.76389\n211666|0.51389\n211667|0.5\n211668|0.5\n211669|0.5\n211670|0.30556\n211671|0.44444\n211672|0.31944\n211673|0.22222\n211674|0.29167\n211675|0.22222\n211676|0.30556\n211677|0.25\n211678|0.097222\n211679|0.13889\n211680|0.27778\n211681|0.375\n211682|0.5\n211683|0.47222\n211684|0.5\n211685|0.34722\n211686|0.23611\n211687|0.36111\n211688|0.20833\n211689|0.5\n211690|0.44444\n211691|0.54167\n211692|0.22222\n211693|0.5\n211694|0.40278\n211695|0.41667\n211696|0.5\n211697|0.38889\n211698|0.41667\n211699|0.65278\n211700|0.38889\n211701|0.18056\n211702|0.25\n211703|0.16667\n211704|0.13889\n211705|0.041667\n211706|0.11111\n211707|0.38889\n211708|0.375\n211709|0.48611\n211710|0.33333\n211711|0.27778\n211712|0.13889\n211713|0.375\n211714|0.25\n211715|0.5\n211716|0.5\n211717|0.30556\n211718|0.22222\n211719|0.29167\n211720|0.16667\n211721|0.25\n211722|0.15278\n211723|0.51389\n211724|0.51389\n211725|0.20833\n211726|0.34722\n211727|0.45833\n211728|0.5\n211729|0.40278\n211730|0.5\n211731|0.5\n211732|0.5\n211733|0.5\n211734|0.41667\n211735|0.29167\n211736|0.52778\n211737|0.375\n211738|0.48611\n211739|0.54167\n211740|0.22222\n211741|0.25\n211742|0.11111\n211743|0.083333\n211744|0.47222\n211745|0.45833\n211746|0.5\n211747|0.41667\n211748|0.45833\n211749|0.45833\n211750|0.29167\n211751|0.33333\n211752|0.5\n211753|0.43056\n211754|0.30556\n211755|0.44444\n211756|0.52778\n211757|0.055556\n211758|0.013889\n211759|0.16667\n211760|0.44444\n211761|0.36111\n211762|0.30556\n211763|0.68056\n211764|0.48611\n211765|0.58333\n211766|0.25\n211767|0.69444\n211768|0.44444\n211769|0.5\n211770|0.083333\n211771|0.22222\n211772|0.15278\n211773|0.55556\n211774|0.48611\n211775|0.51389\n211776|0.5\n211777|0.48611\n211778|0.66667\n211779|0.63889\n211780|0.73611\n211781|0.75\n211782|0.65278\n211783|0.30556\n211784|0.5\n211785|0.55556\n211786|0.48611\n211787|0.34722\n211788|0.65278\n211789|0.29167\n211790|0.25\n211791|0.31944\n211792|0.44444\n211793|0.27778\n211794|0.38889\n211795|0.34722\n211796|0.5\n211797|0.44444\n211798|0.34722\n211799|0.44444\n211800|0.29167\n211801|0.31944\n211802|0.33333\n211803|0.22222\n211804|0.19444\n211805|0.22222\n211806|0.19444\n211807|0.31944\n211808|0.31944\n211809|0.44444\n211810|0.38889\n211811|0.22222\n211812|0.40278\n211813|0.11111\n211814|0.30556\n211815|0.43056\n211816|0.36111\n211817|0.26389\n211818|0.16667\n211819|0.25\n211820|0.25\n211821|0.5\n211822|0.44444\n211823|0.40278\n211824|0.44444\n211825|0.45833\n211826|0.44444\n211827|0.44444\n211828|0.27778\n211829|0.27778\n211830|0.31944\n211831|0.58333\n211832|0.40278\n211833|0.23611\n211834|0.34722\n211835|0.30556\n211836|0.29167\n211837|0.5\n211838|0.13889\n211839|0.5\n211840|0.51389\n211841|0.5\n211842|0.52778\n211843|0.48611\n211844|0.47222\n211845|0.55556\n211846|0.81944\n211847|0.61111\n211848|0.55556\n211849|0.5\n211850|0.5\n211851|0.68056\n211852|0.52778\n211853|0.38889\n211854|0.5\n211855|0.52778\n211856|0.51389\n211857|0.48611\n211858|0.52778\n211859|0.59722\n211860|0.38889\n211861|0.58333\n211862|0.91667\n211863|0.38889\n211864|0.33333\n211865|0.20833\n211866|0.22222\n211867|0.31944\n211868|0.5\n211869|0.5\n211870|0.70833\n211871|0.31944\n211872|0.51389\n211873|0.45833\n211874|0.40278\n211875|0.47222\n211876|0.43056\n211877|0.58333\n211878|0.45833\n211879|0.51389\n211880|0.25\n211881|0.125\n211882|0.27778\n211883|0.45833\n211884|0.44444\n211885|0.79167\n211886|0.22222\n211887|0.19444\n211888|0.5\n211889|0.58333\n211890|0.45833\n211891|0.43056\n211892|0.33333\n211893|0.5\n211894|0.55556\n211895|0.11111\n211896|0.43056\n211897|0.29167\n211898|0.45833\n211899|0.34722\n211900|0.5\n211901|0.5\n211902|0.5\n211903|0.31944\n211904|0.45833\n211905|0.19444\n211906|0.22222\n211907|0.61111\n211908|0.27778\n211909|0.31944\n211910|0.48611\n211911|0.30556\n211912|0.48611\n211913|0.23611\n211914|0.72222\n211915|0.5\n211916|0.375\n211917|0.47222\n211918|0.40278\n211919|0.43056\n211920|0.11111\n211921|0.59722\n211922|0.41667\n211923|0.30556\n211924|0.19444\n211925|0.45833\n211926|0.5\n211927|0.375\n211928|0.34722\n211929|0.16667\n211930|0.56944\n211931|0.56944\n211932|0.56944\n211933|0.34722\n211934|0.38889\n211935|0.5\n211936|0.44444\n211937|0.23611\n211938|0.51389\n211939|0.56944\n211940|0.29167\n211941|0.40278\n211942|0.51389\n211943|0.83333\n211944|0.25\n211945|0.34722\n211946|0.33333\n211947|0.5\n211948|0.31944\n211949|0.34722\n211950|0.23611\n211951|0.34722\n211952|0.25\n211953|0.43056\n211954|0.36111\n211955|0.22222\n211956|0.56944\n211957|0.51389\n211958|0.5\n211959|0.36111\n211960|0.27778\n211961|0.54167\n211962|0.38889\n211963|0.55556\n211964|0.375\n211965|0.38889\n211966|0.30556\n211967|0.23611\n211968|0.79167\n211969|0.63889\n211970|0.19444\n211971|0.5\n211972|0.40278\n211973|0.56944\n211974|0.41667\n211975|0.44444\n211976|0.22222\n211977|0.30556\n211978|0.36111\n211979|0.5\n211980|0.29167\n211981|0.31944\n211982|0.23611\n211983|0.5\n211984|0.59722\n211985|0.5\n211986|0.31944\n211987|0.26389\n211988|0.34722\n211989|0.31944\n211990|0.16667\n211991|0.5\n211992|0.33333\n211993|0.47222\n211994|0.30556\n211995|0.22222\n211996|0.33333\n211997|0.47222\n211998|0.45833\n211999|0.52778\n212000|0.26389\n212001|0.51389\n212002|0.33333\n212003|0.38889\n212004|0.375\n212005|0.18056\n212006|0.47222\n212007|0.625\n212008|0.30556\n212009|0.48611\n212010|0.27778\n212011|0.66667\n212012|0.43056\n212013|0.16667\n212014|0.27778\n212015|0.48611\n212016|0.43056\n212017|0.23611\n212018|0.16667\n212019|0.33333\n212020|0.58333\n212021|0.38889\n212022|0.33333\n212023|0.43056\n212024|0.47222\n212025|0.36111\n212026|0.33333\n212027|0.30556\n212028|0.48611\n212029|0.45833\n212030|0.5\n212031|0.51389\n212032|0.52778\n212033|0.5\n212034|0.44444\n212035|0.41667\n212036|0.51389\n212037|0.43056\n212038|0.45833\n212039|0.5\n212040|0.5\n212041|0.63889\n212042|0.51389\n212043|0.5\n212044|0.55556\n212045|0.55556\n212046|0.5\n212047|0.66667\n212048|0.5\n212049|0.55556\n212050|0.47222\n212051|0.58333\n212052|0.51389\n212053|0.44444\n212054|0.27778\n212055|0.47222\n212056|0.27778\n212057|0.20833\n212058|0.5\n212059|0.5\n212060|0.66667\n212061|0.29167\n212062|0.79167\n212063|0.61111\n212064|0.83333\n212065|0.68056\n212066|0.83333\n212067|0.34722\n212068|0.45833\n212069|0.55556\n212070|0.61111\n212071|0.22222\n212072|0.59722\n212073|0.68056\n212074|0.58333\n212075|0.47222\n212076|0.29167\n212077|0.5\n212078|0.5\n212079|0.44444\n212080|0.15278\n212081|0.66667\n212082|0.375\n212083|0.56944\n212084|0.5\n212085|0.55556\n212086|0.65278\n212087|0.59722\n212088|0.66667\n212089|0.55556\n212090|0.58333\n212091|0.33333\n212092|0.69444\n212093|0.70833\n212094|0.73611\n212095|0.58333\n212096|0.70833\n212097|0.72222\n212098|0.66667\n212099|0.68056\n212100|0.48611\n212101|0.31944\n212102|0.76389\n212103|0.51389\n212104|0.5\n212105|0.54167\n212106|0.625\n212107|0.625\n212108|0.31944\n212109|0.18056\n212110|0.40278\n212111|0.55556\n212112|0.66667\n212113|0.5\n212114|0.44444\n212115|0.68056\n212116|0.66667\n212117|0.5\n212118|0.43056\n212119|0.41667\n212120|0.27778\n212121|0.38889\n212122|0.38889\n212123|0.20833\n212124|0.055556\n212125|0.625\n212126|0.56944\n212127|0.51389\n212128|0.625\n212129|0.63889\n212130|0.61111\n212131|0.5\n212132|0.72222\n212133|0.5\n212134|0.55556\n212135|0.5\n212136|0.66667\n212137|0.5\n212138|0.63889\n212139|0.5\n212140|0.51389\n212141|0.70833\n212142|0.66667\n212143|0.27778\n212144|0.22222\n212145|0.083333\n212146|0.30556\n212147|0.5\n212148|0.68056\n212149|0.5\n212150|0.44444\n212151|0.79167\n212152|0.79167\n212153|0.625\n212154|0.59722\n212155|0.52778\n212156|0.76389\n212157|0.625\n212158|0.52778\n212159|0.30556\n212160|0.43056\n212161|0.27778\n212162|0.625\n212163|0.51389\n212164|0.13889\n212165|0.68056\n212166|0.66667\n212167|0.72222\n212168|0.55556\n212169|0.33333\n212170|0.63889\n212171|0.55556\n212172|0.5\n212173|0.41667\n212174|0.5\n212175|0.41667\n212176|0.31944\n212177|0.30556\n212178|0.5\n212179|0.44444\n212180|0.30556\n212181|0.55556\n212182|0.45833\n212183|0.48611\n212184|0.65278\n212185|0.43056\n212186|0.29167\n212187|0.5\n212188|0.31944\n212189|0.5\n212190|0.90278\n212191|0.27778\n212192|0.375\n212193|0.5\n212194|0.73611\n212195|0.31944\n212196|0.55556\n212197|0.61111\n212198|0.44444\n212199|0.47222\n212200|0.56944\n212201|0.33333\n212202|0.20833\n212203|0.65278\n212204|0.54167\n212205|0.66667\n212206|0.30556\n212207|0.625\n212208|0.47222\n212209|0.36111\n212210|0.29167\n212211|0.52778\n212212|0.52778\n212213|0.5\n212214|0.45833\n212215|0.34722\n212216|0.66667\n212217|0.76389\n212218|0.041667\n212219|0.69444\n212220|0.52778\n212221|0.59722\n212222|0.40278\n212223|0.68056\n212224|0.34722\n212225|0.34722\n212226|0.27778\n212227|0.44444\n212228|0.58333\n212229|0.31944\n212230|0.5\n212231|0.5\n212232|0.45833\n212233|0.44444\n212234|0.22222\n212235|0.47222\n212236|0.55556\n212237|0.375\n212238|0.29167\n212239|0.52778\n212240|0.61111\n212241|0.55556\n212242|0.45833\n212243|0.16667\n212244|0.5\n212245|0.20833\n212246|0.33333\n212247|0.58333\n212248|0.34722\n212249|0.40278\n212250|0.30556\n212251|0.11111\n212252|0.375\n212253|0.52778\n212254|0.43056\n212255|0.40278\n212256|0.65278\n212257|0.5\n212258|0.22222\n212259|0.27778\n212260|0.61111\n212261|0.5\n212262|0.59722\n212263|0.27778\n212264|0.19444\n212265|0.51389\n212266|0.36111\n212267|0.27778\n212268|0.25\n212269|0.13889\n212270|0.26389\n212271|0.40278\n212272|0.20833\n212273|0.25\n212274|0.23611\n212275|0.38889\n212276|0.5\n212277|0.5\n212278|0.48611\n212279|0.5\n212280|0.5\n212281|0.34722\n212282|0.5\n212283|0.66667\n212284|0.27778\n212285|0.29167\n212286|0.5\n212287|0.5\n212288|0.59722\n212289|0.47222\n212290|0.5\n212291|0.5\n212292|0.5\n212293|0.77778\n212294|0.5\n212295|0.55556\n212296|0.88889\n212297|0.30556\n212298|0.055556\n212299|0.45833\n212300|0.41667\n212301|0.56944\n212302|0.36111\n212303|0.38889\n212304|0.63889\n212305|0.65278\n212306|0.43056\n212307|0.625\n212308|0.38889\n212309|0.33333\n212310|0.625\n212311|0.40278\n212312|0.20833\n212313|0.44444\n212314|0.51389\n212315|0.5\n212316|0.44444\n212317|0.51389\n212318|0.55556\n212319|0.52778\n212320|0.16667\n212321|0.11111\n212322|0.5\n212323|0.48611\n212324|0.5\n212325|0.27778\n212326|0.31944\n212327|0.48611\n212328|0.38889\n212329|0.54167\n212330|0.55556\n212331|0.27778\n212332|0.63889\n212333|0.70833\n212334|0.73611\n212335|0.5\n212336|0.5\n212337|0.27778\n212338|0.33333\n212339|0.43056\n212340|0.5\n212341|0.51389\n212342|0.19444\n212343|0.27778\n212344|0.5\n212345|0.44444\n212346|0.43056\n212347|0.20833\n212348|0.23611\n212349|0.25\n212350|0.25\n212351|0.11111\n212352|0.52778\n212353|0.47222\n212354|0.19444\n212355|0.55556\n212356|0.58333\n212357|0.5\n212358|0.41667\n212359|0.26389\n212360|0.27778\n212361|0.38889\n212362|0.80556\n212363|0.58333\n212364|0.5\n212365|0.45833\n212366|0.375\n212367|0.51389\n212368|0.38889\n212369|0.84722\n212370|0.77778\n212371|0.41667\n212372|0.27778\n212373|0.44444\n212374|0.44444\n212375|0.36111\n212376|0.52778\n212377|0.5\n212378|0.47222\n212379|0.55556\n212380|0.51389\n212381|0.52778\n212382|0.55556\n212383|0.38889\n212384|0.47222\n212385|0.69444\n212386|0.30556\n212387|0.5\n212388|0.5\n212389|0.52778\n212390|0.31944\n212391|0.5\n212392|0.34722\n212393|0.65278\n212394|0.61111\n212395|0.48611\n212396|0.5\n212397|0.58333\n212398|0.63889\n212399|0.22222\n212400|0.55556\n212401|0.51389\n212402|0.22222\n212403|0.65278\n212404|0.5\n212405|0.23611\n212406|0.125\n212407|0.33333\n212408|0.34722\n212409|0.375\n212410|0.54167\n212411|0.38889\n212412|0.68056\n212413|0.625\n212414|0.58333\n212415|0.73611\n212416|0.45833\n212417|0.54167\n212418|0.44444\n212419|0.48611\n212420|0.30556\n212421|0.40278\n212422|0.22222\n212423|0.44444\n212424|0.45833\n212425|0.5\n212426|0.48611\n212427|0.5\n212428|0.44444\n212429|0.51389\n212430|0.5\n212431|0.375\n212432|0.30556\n212433|0.38889\n212434|0.34722\n212435|0.16667\n212436|0.23611\n212437|0.31944\n212438|0.375\n212439|0\n212440|0.40278\n212441|0.86111\n212442|0.375\n212443|0.40278\n212444|0.33333\n212445|0.25\n212446|0.38889\n212447|0.34722\n212448|0.59722\n212449|0.56944\n212450|0.58333\n212451|0.51389\n212452|0.44444\n212453|0.56944\n212454|0.43056\n212455|0.19444\n212456|0.5\n212457|0.56944\n212458|0.73611\n212459|0.44444\n212460|0.38889\n212461|0.43056\n212462|0.27778\n212463|0.33333\n212464|0.40278\n212465|0.48611\n212466|0.51389\n212467|0.48611\n212468|0.26389\n212469|0.20833\n212470|0.5\n212471|0.44444\n212472|0.19444\n212473|0.20833\n212474|0.5\n212475|0.5\n212476|0.5\n212477|0.72222\n212478|0.38889\n212479|0.5\n212480|0.5\n212481|0.38889\n212482|0.47222\n212483|0.5\n212484|0.52778\n212485|0.27778\n212486|0.36111\n212487|0.22222\n212488|0.41667\n212489|0.55556\n212490|0.5\n212491|0.51389\n212492|0.5\n212493|0.5\n212494|0.5\n212495|0.41667\n212496|0.29167\n212497|0.65278\n212498|0.25\n212499|0.5\n212500|0.55556\n212501|0.56944\n212502|0.5\n212503|0.44444\n212504|0.51389\n212505|0.34722\n212506|0.5\n212507|0.5\n212508|0.40278\n212509|0.54167\n212510|0.22222\n212511|0.34722\n212512|0.27778\n212513|0.38889\n212514|0.58333\n212515|0.48611\n212516|0.13889\n212517|0.19444\n212518|0.083333\n212519|0.11111\n212520|0.625\n212521|0.29167\n212522|0.30556\n212523|0.5\n212524|0.375\n212525|0.26389\n212526|0.5\n212527|0.5\n212528|0.38889\n212529|0.47222\n212530|0.34722\n212531|0.40278\n212532|0.375\n212533|0.31944\n212534|0.26389\n212535|0.51389\n212536|0.40278\n212537|0.54167\n212538|0.48611\n212539|0.44444\n212540|0.59722\n212541|0.59722\n212542|0.66667\n212543|0.66667\n212544|0.5\n212545|0.5\n212546|0.22222\n212547|0.5\n212548|0.44444\n212549|0.30556\n212550|0.375\n212551|0.68056\n212552|0.375\n212553|0.5\n212554|0.20833\n212555|0.55556\n212556|0.5\n212557|0.52778\n212558|0.55556\n212559|0.16667\n212560|0.27778\n212561|0.16667\n212562|0.33333\n212563|0.36111\n212564|0.43056\n212565|0.36111\n212566|0.33333\n212567|0.25\n212568|0.16667\n212569|0.5\n212570|0.5\n212571|0.29167\n212572|0.44444\n212573|0.36111\n212574|0.36111\n212575|0.59722\n212576|0.56944\n212577|0.38889\n212578|0.36111\n212579|0.25\n212580|0.16667\n212581|0.16667\n212582|0.47222\n212583|0.15278\n212584|0.20833\n212585|0.45833\n212586|0.29167\n212587|0.56944\n212588|0.30556\n212589|0.30556\n212590|0.5\n212591|0.33333\n212592|0.26389\n212593|0.33333\n212594|0.19444\n212595|0.59722\n212596|0.23611\n212597|0.30556\n212598|0.5\n212599|0.31944\n212600|0.125\n212601|0.18056\n212602|0.26389\n212603|0.44444\n212604|0.26389\n212605|0.54167\n212606|0.5\n212607|0.5\n212608|0.36111\n212609|0.66667\n212610|0.47222\n212611|0.38889\n212612|0.15278\n212613|0.5\n212614|0.5\n212615|0.5\n212616|0.40278\n212617|0.40278\n212618|0.61111\n212619|0.5\n212620|0.65278\n212621|0.5\n212622|0.55556\n212623|0.38889\n212624|0.30556\n212625|0.43056\n212626|0.36111\n212627|0.47222\n212628|0.22222\n212629|0.31944\n212630|0.30556\n212631|0.40278\n212632|0.5\n212633|0.5\n212634|0.43056\n212635|0.48611\n212636|0.45833\n212637|0.5\n212638|0.5\n212639|0.34722\n212640|0.27778\n212641|0.31944\n212642|0.44444\n212643|0.55556\n212644|0.48611\n212645|0.44444\n212646|0.47222\n212647|0.44444\n212648|0.48611\n212649|0.54167\n212650|0.30556\n212651|0.19444\n212652|0.29167\n212653|0.22222\n212654|0.18056\n212655|0.51389\n212656|0.34722\n212657|0.59722\n212658|0.5\n212659|0.41667\n212660|0.41667\n212661|0.19444\n212662|0.41667\n212663|0.44444\n212664|0.34722\n212665|0.36111\n212666|0.38889\n212667|0.38889\n212668|0.26389\n212669|0.36111\n212670|0.30556\n212671|0.30556\n212672|0.45833\n212673|0.47222\n212674|0.44444\n212675|0.45833\n212676|0.61111\n212677|0.59722\n212678|0.61111\n212679|0.27778\n212680|0.5\n212681|0.51389\n212682|0.5\n212683|0.44444\n212684|0.375\n212685|0.47222\n212686|0.18056\n212687|0.11111\n212688|0.63889\n212689|0.22222\n212690|0.68056\n212691|0.86111\n212692|0.86111\n212693|0.86111\n212694|0.63889\n212695|0.76389\n212696|0.68056\n212697|0.68056\n212698|0.59722\n212699|0.72222\n212700|0.70833\n212701|0.52778\n212702|0.38889\n212703|0.52778\n212704|0.5\n212705|0.41667\n212706|0.55556\n212707|0.48611\n212708|0.13889\n212709|0.38889\n212710|0.33333\n212711|0.45833\n212712|0.41667\n212713|0.38889\n212714|0.5\n212715|0.36111\n212716|0.15278\n212717|0.5\n212718|0.33333\n212719|0.52778\n212720|0.56944\n212721|0.38889\n212722|0.54167\n212723|0.33333\n212724|0.48611\n212725|0.5\n212726|0.40278\n212727|0.38889\n212728|0.26389\n212729|0.34722\n212730|0.30556\n212731|0.41667\n212732|0.5\n212733|0.83333\n212734|0.75\n212735|0.36111\n212736|0.56944\n212737|0.55556\n212738|0.5\n212739|0.58333\n212740|0.52778\n212741|0.51389\n212742|0.097222\n212743|0.375\n212744|0.33333\n212745|0.375\n212746|0.25\n212747|0.069444\n212748|0.11111\n212749|0.26389\n212750|0.47222\n212751|0.76389\n212752|0.38889\n212753|0.40278\n212754|0.56944\n212755|0.5\n212756|0.22222\n212757|0.52778\n212758|0.52778\n212759|0.55556\n212760|0.65278\n212761|0.625\n212762|0.69444\n212763|0.55556\n212764|0.61111\n212765|0.61111\n212766|0.40278\n212767|0.25\n212768|0.29167\n212769|0.72222\n212770|0.54167\n212771|0.5\n212772|0.5\n212773|0.59722\n212774|0.30556\n212775|0.5\n212776|0.48611\n212777|0.51389\n212778|0.41667\n212779|0.23611\n212780|0.47222\n212781|0.61111\n212782|0.47222\n212783|0.5\n212784|0.5\n212785|0.5\n212786|0.65278\n212787|0.47222\n212788|0.44444\n212789|0.44444\n212790|0.43056\n212791|0.27778\n212792|0.375\n212793|0.375\n212794|0.5\n212795|0.68056\n212796|0.44444\n212797|0.27778\n212798|0.31944\n212799|0.40278\n212800|0.52778\n212801|0.5\n212802|0.63889\n212803|0.55556\n212804|0.47222\n212805|0.75\n212806|0.65278\n212807|0.5\n212808|0.38889\n212809|0.375\n212810|0.18056\n212811|0.68056\n212812|0.069444\n212813|0.16667\n212814|0.31944\n212815|0.54167\n212816|0.75\n212817|0.097222\n212818|0.22222\n212819|0.25\n212820|0.33333\n212821|0.20833\n212822|0.33333\n212823|0.51389\n212824|0.5\n212825|0.43056\n212826|0.29167\n212827|0.83333\n212828|0.66667\n212829|0.26389\n212830|0.15278\n212831|0.73611\n212832|0.11111\n212833|0.22222\n212834|0.55556\n212835|0.36111\n212836|0.33333\n212837|0.69444\n212838|0.875\n212839|0.76389\n212840|0.48611\n212841|0.5\n212842|0.56944\n212843|0.77778\n212844|0.34722\n212845|0.56944\n212846|0.34722\n212847|0.41667\n212848|0.55556\n212849|0.51389\n212850|0.22222\n212851|0.55556\n212852|0.22222\n212853|0.40278\n212854|0.375\n212855|0.22222\n212856|0.76389\n212857|0.29167\n212858|0.5\n212859|0.48611\n212860|0.38889\n212861|0.48611\n212862|0.18056\n212863|0.43056\n212864|0.48611\n212865|0.31944\n212866|0.375\n212867|0.29167\n212868|0.23611\n212869|0.33333\n212870|0.38889\n212871|0.15278\n212872|0.30556\n212873|0.40278\n212874|0.22222\n212875|0.34722\n212876|0.15278\n212877|0.083333\n212878|0.5\n212879|0.19444\n212880|0.31944\n212881|0.25\n212882|0.30556\n212883|0.15278\n212884|0.125\n212885|0.25\n212886|0.20833\n212887|0.29167\n212888|0.23611\n212889|0.45833\n212890|0.36111\n212891|0.43056\n212892|0.52778\n212893|0.52778\n212894|0.36111\n212895|0.22222\n212896|0.58333\n212897|0.72222\n212898|0.72222\n212899|0.63889\n212900|0.61111\n212901|0.38889\n212902|0.25\n212903|0.29167\n212904|0.43056\n212905|0.36111\n212906|0.27778\n212907|0.58333\n212908|0.44444\n212909|0.72222\n212910|0.5\n212911|0.38889\n212912|0.48611\n212913|0.5\n212914|0.33333\n212915|0.56944\n212916|0.66667\n212917|0.41667\n212918|0.18056\n212919|0.20833\n212920|0.30556\n212921|0.43056\n212922|0.38889\n212923|0.48611\n212924|0.38889\n212925|0.20833\n212926|0.15278\n212927|0.54167\n212928|0.56944\n212929|0.625\n212930|0.81944\n212931|0.52778\n212932|0.52778\n212933|0.30556\n212934|0.59722\n212935|0.5\n212936|0.43056\n212937|0.25\n212938|0.5\n212939|0.55556\n212940|0.5\n212941|0.55556\n212942|0.5\n212943|0.41667\n212944|0.36111\n212945|0.44444\n212946|0.27778\n212947|0.375\n212948|0.55556\n212949|0.47222\n212950|0.43056\n212951|0.44444\n212952|0.43056\n212953|0.5\n212954|0.33333\n212955|0.5\n212956|0.54167\n212957|0.41667\n212958|0.83333\n212959|0.68056\n212960|0.30556\n212961|0.51389\n212962|0.26389\n212963|0.70833\n212964|0.47222\n212965|0.375\n212966|0.15278\n212967|0.36111\n212968|0.5\n212969|0.5\n212970|0.47222\n212971|0.51389\n212972|0.5\n212973|0.61111\n212974|0.51389\n212975|0.72222\n212976|0.48611\n212977|0.36111\n212978|0.68056\n212979|0.72222\n212980|0.23611\n212981|0.52778\n212982|0.27778\n212983|0.41667\n212984|0.54167\n212985|0.40278\n212986|0.30556\n212987|0.375\n212988|0.23611\n212989|0.375\n212990|0.55556\n212991|0.31944\n212992|0.55556\n212993|0.375\n212994|0.5\n212995|0.5\n212996|0.51389\n212997|0.56944\n212998|0.20833\n212999|0.19444\n213000|0.5\n213001|0.5\n213002|0.44444\n213003|0.59722\n213004|0.40278\n213005|0.5\n213006|0.055556\n213007|0.29167\n213008|0.51389\n213009|0.43056\n213010|0.44444\n213011|0.30556\n213012|0.47222\n213013|0.72222\n213014|0.75\n213015|0.76389\n213016|0.58333\n213017|0.5\n213018|0.61111\n213019|0.77778\n213020|0.52778\n213021|0.41667\n213022|0.72222\n213023|0.45833\n213024|0.65278\n213025|0.625\n213026|0.69444\n213027|0.44444\n213028|0.26389\n213029|0.47222\n213030|0.66667\n213031|0.5\n213032|0.18056\n213033|0.27778\n213034|0.55556\n213035|0.5\n213036|0.73611\n213037|0.44444\n213038|0.5\n213039|0.33333\n213040|0.30556\n213041|0.5\n213042|0.43056\n213043|0.48611\n213044|0.75\n213045|0.73611\n213046|0.55556\n213047|0.73611\n213048|0.5\n213049|0.5\n213050|0.63889\n213051|0.51389\n213052|0.47222\n213053|0.27778\n213054|0.48611\n213055|0.44444\n213056|0.54167\n213057|0.59722\n213058|0.38889\n213059|0.5\n213060|0.54167\n213061|0.75\n213062|0.61111\n213063|0.47222\n213064|0.51389\n213065|0.5\n213066|0.5\n213067|0.5\n213068|0.16667\n213069|0.5\n213070|0.72222\n213071|0.5\n213072|0.45833\n213073|0.5\n213074|0.54167\n213075|0.33333\n213076|0.30556\n213077|0.58333\n213078|0.48611\n213079|0.36111\n213080|0.29167\n213081|0.29167\n213082|0.22222\n213083|0.5\n213084|0.15278\n213085|0.5\n213086|0.5\n213087|0.36111\n213088|0.36111\n213089|0.33333\n213090|0.56944\n213091|0.29167\n213092|0.51389\n213093|0.5\n213094|0.52778\n213095|0.5\n213096|0.25\n213097|0.5\n213098|0.43056\n213099|0.5\n213100|0.5\n213101|0.23611\n213102|0.22222\n213103|0.52778\n213104|0.33333\n213105|0.44444\n213106|0.5\n213107|0.25\n213108|0.58333\n213109|0.69444\n213110|0.66667\n213111|0.68056\n213112|0.31944\n213113|0.44444\n213114|0.31944\n213115|0.40278\n213116|0.54167\n213117|0.38889\n213118|0.59722\n213119|0.20833\n213120|0.125\n213121|0.52778\n213122|0.51389\n213123|0.44444\n213124|0.48611\n213125|0.33333\n213126|0.48611\n213127|0.55556\n213128|0.23611\n213129|0.52778\n213130|0.16667\n213131|0.30556\n213132|0.65278\n213133|0.44444\n213134|0.5\n213135|0.31944\n213136|0.16667\n213137|0.73611\n213138|0.77778\n213139|0.625\n213140|0.18056\n213141|0.27778\n213142|0.44444\n213143|0.33333\n213144|0.41667\n213145|0.44444\n213146|0.51389\n213147|0.61111\n213148|0.5\n213149|0.31944\n213150|0.34722\n213151|0.27778\n213152|0.51389\n213153|0.55556\n213154|0.5\n213155|0.40278\n213156|0.47222\n213157|0.65278\n213158|0.5\n213159|0.5\n213160|0.44444\n213161|0.5\n213162|0.27778\n213163|0.47222\n213164|0.27778\n213165|0.51389\n213166|0.51389\n213167|0.625\n213168|0.40278\n213169|0.38889\n213170|0.51389\n213171|0.51389\n213172|0.72222\n213173|0.68056\n213174|0.73611\n213175|0.77778\n213176|0.61111\n213177|0.51389\n213178|0.5\n213179|0.25\n213180|0.38889\n213181|0.44444\n213182|0.16667\n213183|0.5\n213184|0.5\n213185|0.5\n213186|0.51389\n213187|0.5\n213188|0.44444\n213189|0.38889\n213190|0.41667\n213191|0.40278\n213192|0.31944\n213193|0.51389\n213194|0.47222\n213195|0.5\n213196|0.5\n213197|0.38889\n213198|0.23611\n213199|0.69444\n213200|0.72222\n213201|0.27778\n213202|0.45833\n213203|0.51389\n213204|0.31944\n213205|0.44444\n213206|0.58333\n213207|0.56944\n213208|0.61111\n213209|0.59722\n213210|0.54167\n213211|0.76389\n213212|0.44444\n213213|0.40278\n213214|0.29167\n213215|0.13889\n213216|0.43056\n213217|0.43056\n213218|0.13889\n213219|0.5\n213220|0.5\n213221|0.5\n213222|0.55556\n213223|0.47222\n213224|0.55556\n213225|0.5\n213226|0.40278\n213227|0.5\n213228|0.5\n213229|0.56944\n213230|0.45833\n213231|0.5\n213232|0.59722\n213233|0.23611\n213234|0.29167\n213235|0.25\n213236|0.48611\n213237|0.66667\n213238|0.44444\n213239|0.45833\n213240|0.5\n213241|0.625\n213242|0.38889\n213243|0.38889\n213244|0.41667\n213245|0.40278\n213246|0.34722\n213247|0.34722\n213248|0.5\n213249|0.55556\n213250|0.44444\n213251|0.44444\n213252|0.47222\n213253|0.5\n213254|0.44444\n213255|0.375\n213256|0.5\n213257|0.5\n213258|0.5\n213259|0.51389\n213260|0.5\n213261|0.48611\n213262|0.5\n213263|0.44444\n213264|0.22222\n213265|0.68056\n213266|0.52778\n213267|0.44444\n213268|0.44444\n213269|0.16667\n213270|0.44444\n213271|0.44444\n213272|0.23611\n213273|0.5\n213274|0.29167\n213275|0.31944\n213276|0.38889\n213277|0.58333\n213278|0.23611\n213279|0.43056\n213280|0.25\n213281|0.19444\n213282|0.375\n213283|0.38889\n213284|0.36111\n213285|0.5\n213286|0.54167\n213287|0.5\n213288|0.5\n213289|0.11111\n213290|0.44444\n213291|0.20833\n213292|0.69444\n213293|0.48611\n213294|0.38889\n213295|0.26389\n213296|0.29167\n213297|0.38889\n213298|0.44444\n213299|0.625\n213300|0.72222\n213301|0.70833\n213302|0.48611\n213303|0.29167\n213304|0.38889\n213305|0.22222\n213306|0.5\n213307|0.34722\n213308|0.44444\n213309|0.70833\n213310|0.63889\n213311|0.47222\n213312|0.5\n213313|0.5\n213314|0.44444\n213315|0.25\n213316|0.11111\n213317|0.069444\n213318|0.125\n213319|0.069444\n213320|0.069444\n213321|0.013889\n213322|0.16667\n213323|0.16667\n213324|0.13889\n213325|0.125\n213326|0.16667\n213327|0.77778\n213328|0.59722\n213329|0.29167\n213330|0.44444\n213331|0.41667\n213332|0.5\n213333|0.47222\n213334|0.5\n213335|0.65278\n213336|0.48611\n213337|0.58333\n213338|0.58333\n213339|0.47222\n213340|0.47222\n213341|0.55556\n213342|0.44444\n213343|0.33333\n213344|0.5\n213345|0.55556\n213346|0.51389\n213347|0.72222\n213348|0.51389\n213349|0.5\n213350|0.55556\n213351|0.5\n213352|0.55556\n213353|0.5\n213354|0.375\n213355|0.5\n213356|0.55556\n213357|0.33333\n213358|0.41667\n213359|0.43056\n213360|0.5\n213361|0.29167\n213362|0.33333\n213363|0.34722\n213364|0.5\n213365|0.55556\n213366|0.52778\n213367|0.16667\n213368|0.52778\n213369|0.33333\n213370|0.52778\n213371|0.33333\n213372|0.5\n213373|0.38889\n213374|0.48611\n213375|0.5\n213376|0.58333\n213377|0.16667\n213378|0.45833\n213379|0.5\n213380|0.5\n213381|0.55556\n213382|0.51389\n213383|0.5\n213384|0.5\n213385|0.44444\n213386|0.5\n213387|0.5\n213388|0.45833\n213389|0.44444\n213390|0.79167\n213391|0.38889\n213392|0.5\n213393|0.45833\n213394|0.66667\n213395|0.45833\n213396|0.5\n213397|0.48611\n213398|0.45833\n213399|0.58333\n213400|0.47222\n213401|0.44444\n213402|0.51389\n213403|0.48611\n213404|0.38889\n213405|0.55556\n213406|0.5\n213407|0.44444\n213408|0.38889\n213409|0.5\n213410|0.51389\n213411|0.54167\n213412|0.48611\n213413|0.45833\n213414|0.48611\n213415|0.44444\n213416|0.61111\n213417|0.47222\n213418|0.5\n213419|0.48611\n213420|0.43056\n213421|0.55556\n213422|0.38889\n213423|0.5\n213424|0.66667\n213425|0.5\n213426|0.5\n213427|0.34722\n213428|0.48611\n213429|0.5\n213430|0.5\n213431|0.5\n213432|0.44444\n213433|0.5\n213434|0.45833\n213435|0.41667\n213436|0.20833\n213437|0.43056\n213438|0.51389\n213439|0.38889\n213440|0.5\n213441|0.48611\n213442|0.44444\n213443|0.18056\n213444|0.15278\n213445|0.66667\n213446|0.38889\n213447|0.30556\n213448|0.5\n213449|0.5\n213450|0.5\n213451|0.27778\n213452|0.45833\n213453|0.40278\n213454|0.48611\n213455|0.47222\n213456|0.5\n213457|0.52778\n213458|0.56944\n213459|0.47222\n213460|0.5\n213461|0.41667\n213462|0.52778\n213463|0.26389\n213464|0.5\n213465|0.55556\n213466|0.47222\n213467|0.58333\n213468|0.45833\n213469|0.44444\n213470|0.33333\n213471|0.31944\n213472|0.70833\n213473|0.52778\n213474|0.58333\n213475|0.43056\n213476|0.30556\n213477|0.26389\n213478|0.72222\n213479|0.58333\n213480|0.34722\n213481|0.56944\n213482|0.73611\n213483|0.5\n213484|0.11111\n213485|0.27778\n213486|0.23611\n213487|0.5\n213488|0.25\n213489|0.16667\n213490|0.51389\n213491|0.47222\n213492|0.31944\n213493|0.43056\n213494|0.27778\n213495|0.33333\n213496|0.16667\n213497|0.29167\n213498|0.20833\n213499|0.30556\n213500|0.48611\n213501|0.16667\n213502|0.25\n213503|0.375\n213504|0.52778\n213505|0.45833\n213506|0.13889\n213507|0.27778\n213508|0.51389\n213509|0.26389\n213510|0.41667\n213511|0.44444\n213512|0.5\n213513|0.73611\n213514|0.43056\n213515|0.19444\n213516|0.5\n213517|0.44444\n213518|0.56944\n213519|0.30556\n213520|0.5\n213521|0.34722\n213522|0.47222\n213523|0.5\n213524|0.31944\n213525|0.23611\n213526|0.36111\n213527|0.40278\n213528|0.44444\n213529|0.44444\n213530|0.27778\n213531|0.44444\n213532|0.43056\n213533|0.36111\n213534|0.25\n213535|0.30556\n213536|0.36111\n213537|0.55556\n213538|0.58333\n213539|0.48611\n213540|0.5\n213541|0.26389\n213542|0.34722\n213543|0.16667\n213544|0.48611\n213545|0.26389\n213546|0.125\n213547|0.33333\n213548|0.48611\n213549|0.26389\n213550|0.38889\n213551|0.56944\n213552|0.31944\n213553|0.55556\n213554|0.33333\n213555|0.33333\n213556|0.375\n213557|0.36111\n213558|0.40278\n213559|0.73611\n213560|0.58333\n213561|0.58333\n213562|0.5\n213563|0.38889\n213564|0.55556\n213565|0.5\n213566|0.15278\n213567|0.61111\n213568|0.58333\n213569|0.52778\n213570|0.22222\n213571|0.36111\n213572|0.33333\n213573|0.55556\n213574|0.58333\n213575|0.30556\n213576|0.33333\n213577|0.65278\n213578|0.48611\n213579|0.47222\n213580|0.63889\n213581|0.44444\n213582|0.30556\n213583|0.5\n213584|0.48611\n213585|0.875\n213586|0.5\n213587|0.44444\n213588|0.29167\n213589|0.44444\n213590|0.33333\n213591|0.44444\n213592|0.34722\n213593|0.27778\n213594|0.44444\n213595|0.59722\n213596|0.5\n213597|0.51389\n213598|0.40278\n213599|0.5\n213600|0.19444\n213601|0.30556\n213602|0.48611\n213603|0.47222\n213604|0.40278\n213605|0.45833\n213606|0.34722\n213607|0.70833\n213608|0.5\n213609|0.25\n213610|0.5\n213611|0.44444\n213612|0.26389\n213613|0.47222\n213614|0.22222\n213615|0.16667\n213616|0.43056\n213617|0.375\n213618|0.65278\n213619|0.51389\n213620|0.5\n213621|0.5\n213622|0.44444\n213623|0.44444\n213624|0.069444\n213625|0.38889\n213626|0.26389\n213627|0.5\n213628|0.51389\n213629|0.54167\n213630|0.30556\n213631|0.5\n213632|0.44444\n213633|0.45833\n213634|0.45833\n213635|0.5\n213636|0.52778\n213637|0.5\n213638|0.16667\n213639|0.38889\n213640|0.31944\n213641|0.5\n213642|0.19444\n213643|0.069444\n213644|0.44444\n213645|0.48611\n213646|0.23611\n213647|0.5\n213648|0.51389\n213649|0.52778\n213650|0.5\n213651|0.55556\n213652|0.41667\n213653|0.65278\n213654|0.11111\n213655|0.34722\n213656|0.5\n213657|0.63889\n213658|0.5\n213659|0.43056\n213660|0.51389\n213661|0.15278\n213662|0.47222\n213663|0.44444\n213664|0.55556\n213665|0.33333\n213666|0.48611\n213667|0.5\n213668|0.027778\n213669|0.5\n213670|0.52778\n213671|0.36111\n213672|0.27778\n213673|0.20833\n213674|0.27778\n213675|0.5\n213676|0.375\n213677|0.40278\n213678|0.36111\n213679|0.083333\n213680|0.25\n213681|0.18056\n213682|0.26389\n213683|0.45833\n213684|0.20833\n213685|0.41667\n213686|0.44444\n213687|0.5\n213688|0.40278\n213689|0.38889\n213690|0.11111\n213691|0.23611\n213692|0.22222\n213693|0.55556\n213694|0.27778\n213695|0.29167\n213696|0.33333\n213697|0.22222\n213698|0.36111\n213699|0.23611\n213700|0.43056\n213701|0.54167\n213702|0.33333\n213703|0.58333\n213704|0.63889\n213705|0.27778\n213706|0.38889\n213707|0.23611\n213708|0.31944\n213709|0.30556\n213710|0.5\n213711|0.29167\n213712|0.40278\n213713|0.38889\n213714|0.40278\n213715|0.5\n213716|0.41667\n213717|0.22222\n213718|0.22222\n213719|0.26389\n213720|0.5\n213721|0.23611\n213722|0.30556\n213723|0.23611\n213724|0.68056\n213725|0.19444\n213726|0.11111\n213727|0.29167\n213728|0.52778\n213729|0.375\n213730|0.43056\n213731|0.44444\n213732|0.59722\n213733|0.40278\n213734|0.625\n213735|0.48611\n213736|0.5\n213737|0.33333\n213738|0.26389\n213739|0.16667\n213740|0.5\n213741|0.26389\n213742|0.20833\n213743|0.20833\n213744|0.5\n213745|0.22222\n213746|0.51389\n213747|0.38889\n213748|0.5\n213749|0.59722\n213750|0.23611\n213751|0.73611\n213752|0.63889\n213753|0.61111\n213754|0.47222\n213755|0.65278\n213756|0.40278\n213757|0.59722\n213758|0.5\n213759|0.44444\n213760|0.47222\n213761|0.33333\n213762|0.33333\n213763|0.51389\n213764|0.38889\n213765|0.51389\n213766|0.27778\n213767|0.38889\n213768|0.5\n213769|0.52778\n213770|0.72222\n213771|0.33333\n213772|0.33333\n213773|0.055556\n213774|0.40278\n213775|0.51389\n213776|0.5\n213777|0.36111\n213778|0.34722\n213779|0.44444\n213780|0.31944\n213781|0.33333\n213782|0.34722\n213783|0.61111\n213784|0.22222\n213785|0.38889\n213786|0.54167\n213787|0.61111\n213788|0.5\n213789|0.40278\n213790|0.5\n213791|0.55556\n213792|0.22222\n213793|0.22222\n213794|0.375\n213795|0.5\n213796|0.55556\n213797|0.069444\n213798|0.5\n213799|0.5\n213800|0.40278\n213801|0.5\n213802|0.19444\n213803|0.26389\n213804|0.75\n213805|0.66667\n213806|0.66667\n213807|0.52778\n213808|0.625\n213809|0.43056\n213810|0.29167\n213811|0.23611\n213812|0.25\n213813|0.75\n213814|0.48611\n213815|0.54167\n213816|0.47222\n213817|0.48611\n213818|0.66667\n213819|0.41667\n213820|0.5\n213821|0.41667\n213822|0.34722\n213823|0.5\n213824|0.375\n213825|0.47222\n213826|0.375\n213827|0.31944\n213828|0.30556\n213829|0.22222\n213830|0.31944\n213831|0.69444\n213832|0.625\n213833|0.41667\n213834|0.40278\n213835|0.29167\n213836|0.44444\n213837|0.23611\n213838|0.72222\n213839|0.5\n213840|0.58333\n213841|0.5\n213842|0.33333\n213843|0.36111\n213844|0.31944\n213845|0.5\n213846|0.16667\n213847|0.44444\n213848|0.23611\n213849|0.44444\n213850|0.38889\n213851|0.34722\n213852|0.5\n213853|0.44444\n213854|0.625\n213855|0.73611\n213856|0.5\n213857|0.58333\n213858|0.22222\n213859|0.36111\n213860|0.47222\n213861|0.625\n213862|0.84722\n213863|0.22222\n213864|0\n213865|0.47222\n213866|0.52778\n213867|0.36111\n213868|0.52778\n213869|0.38889\n213870|0.45833\n213871|0.23611\n213872|0.29167\n213873|0.13889\n213874|0.73611\n213875|0.26389\n213876|0.38889\n213877|0.40278\n213878|0.33333\n213879|0.20833\n213880|0.20833\n213881|0.23611\n213882|0.56944\n213883|0.29167\n213884|0.16667\n213885|0.34722\n213886|0.20833\n213887|0.30556\n213888|0.15278\n213889|0.43056\n213890|0.36111\n213891|0.44444\n213892|0.66667\n213893|0.58333\n213894|0.27778\n213895|0.29167\n213896|0.40278\n213897|0.45833\n213898|0.27778\n213899|0.875\n213900|0.5\n213901|0.22222\n213902|0.5\n213903|0.625\n213904|0.44444\n213905|0.47222\n213906|0.65278\n213907|0.41667\n213908|0.30556\n213909|0.59722\n213910|0.31944\n213911|0.055556\n213912|0.94444\n213913|0.11111\n213914|0.45833\n213915|0.625\n213916|0.20833\n213917|0.19444\n213918|0.63889\n213919|0.29167\n213920|0.43056\n213921|0.22222\n213922|0.73611\n213923|0.5\n213924|0.5\n213925|0.44444\n213926|0.34722\n213927|0.375\n213928|0.20833\n213929|0.23611\n213930|0.5\n213931|0.33333\n213932|0.27778\n213933|0.11111\n213934|0.069444\n213935|0.33333\n213936|0.44444\n213937|0.33333\n213938|0.625\n213939|0.56944\n213940|0.18056\n213941|0.13889\n213942|0.25\n213943|0.48611\n213944|0.16667\n213945|0.16667\n213946|0.34722\n213947|0.52778\n213948|0.55556\n213949|0.65278\n213950|0.34722\n213951|0.18056\n213952|0.26389\n213953|0.54167\n213954|0.5\n213955|0.52778\n213956|0.375\n213957|0.51389\n213958|0.48611\n213959|0.16667\n213960|0.22222\n213961|0.40278\n213962|0.20833\n213963|0.25\n213964|0.11111\n213965|0.36111\n213966|0.125\n213967|0.34722\n213968|0.55556\n213969|0.30556\n213970|0.5\n213971|0.55556\n213972|0.61111\n213973|0.58333\n213974|0.51389\n213975|0.5\n213976|0.16667\n213977|0.30556\n213978|0.33333\n213979|0.16667\n213980|0.5\n213981|0.5\n213982|0.61111\n213983|0.5\n213984|0.5\n213985|0.41667\n213986|0.5\n213987|0.36111\n213988|0.5\n213989|0.5\n213990|0.5\n213991|0.38889\n213992|0.61111\n213993|0.43056\n213994|0.5\n213995|0.5\n213996|0.5\n213997|0.625\n213998|0.5\n213999|0.5\n214000|0.5\n214001|0.56944\n214002|0.61111\n214003|0.80556\n214004|0.5\n214005|0.66667\n214006|0.5\n214007|0.69444\n214008|0.5\n214009|0.56944\n214010|0.5\n214011|0.51389\n214012|0.5\n214013|0.48611\n214014|0.38889\n214015|0.55556\n214016|0.5\n214017|0.44444\n214018|0.5\n214019|0.5\n214020|0.34722\n214021|0.5\n214022|0.5\n214023|0.30556\n214024|0.5\n214025|0.5\n214026|0.44444\n214027|0.22222\n214028|0.5\n214029|0.48611\n214030|0.43056\n214031|0.48611\n214032|0.55556\n214033|0.66667\n214034|0.48611\n214035|0.5\n214036|0.5\n214037|0.5\n214038|0.58333\n214039|0.76389\n214040|0.5\n214041|0.66667\n214042|0.5\n214043|0.44444\n214044|0.56944\n214045|0.48611\n214046|0.5\n214047|0.5\n214048|0.5\n214049|0.5\n214050|0.45833\n214051|0.54167\n214052|0.43056\n214053|0.63889\n214054|0.5\n214055|0.61111\n214056|0.56944\n214057|0.77778\n214058|0.48611\n214059|0.40278\n214060|0.5\n214061|0.5\n214062|0.36111\n214063|0.5\n214064|0.54167\n214065|0.63889\n214066|0.5\n214067|0.58333\n214068|0.66667\n214069|0.5\n214070|0.36111\n214071|0.5\n214072|0.52778\n214073|0.56944\n214074|0.65278\n214075|0.55556\n214076|0.5\n214077|0.5\n214078|0.51389\n214079|0.51389\n214080|0.5\n214081|0.5\n214082|0.19444\n214083|0.56944\n214084|0.5\n214085|0.59722\n214086|0.5\n214087|0.45833\n214088|0.5\n214089|0.41667\n214090|0.19444\n214091|0.5\n214092|0.26389\n214093|0.36111\n214094|0.5\n214095|0.45833\n214096|0.33333\n214097|0.73611\n214098|0.55556\n214099|0.63889\n214100|0.18056\n214101|0.47222\n214102|0.47222\n214103|0.54167\n214104|0.59722\n214105|0.5\n214106|0.81944\n214107|0.47222\n214108|0.51389\n214109|0.5\n214110|0.51389\n214111|0.41667\n214112|0.52778\n214113|0.38889\n214114|0.22222\n214115|0.5\n214116|0.5\n214117|0.51389\n214118|0.56944\n214119|0.23611\n214120|0.51389\n214121|0.44444\n214122|0.5\n214123|0.125\n214124|0.43056\n214125|0.20833\n214126|0.33333\n214127|0.5\n214128|0.48611\n214129|0.61111\n214130|0.72222\n214131|0.44444\n214132|0.5\n214133|0.45833\n214134|0.27778\n214135|0.54167\n214136|0.30556\n214137|0.5\n214138|0.5\n214139|0.29167\n214140|0.5\n214141|0.375\n214142|0.48611\n214143|0.5\n214144|0.5\n214145|0.5\n214146|0.5\n214147|0.5\n214148|0.41667\n214149|0.61111\n214150|0.5\n214151|0.51389\n214152|0.5\n214153|0.16667\n214154|0.45833\n214155|0.55556\n214156|0.52778\n214157|0.375\n214158|0.55556\n214159|0.5\n214160|0.52778\n214161|0.5\n214162|0.25\n214163|0.5\n214164|0.5\n214165|0.61111\n214166|0.625\n214167|0.55556\n214168|0.30556\n214169|0.40278\n214170|0.52778\n214171|0.44444\n214172|0.5\n214173|0.31944\n214174|0.375\n214175|0.38889\n214176|0.5\n214177|0.5\n214178|0.5\n214179|0.51389\n214180|0.625\n214181|0.375\n214182|0.44444\n214183|0.33333\n214184|0.75\n214185|0.65278\n214186|0.73611\n214187|0.625\n214188|0.625\n214189|0.80556\n214190|0.61111\n214191|0.66667\n214192|0.90278\n214193|0.5\n214194|0.5\n214195|0.51389\n214196|0.55556\n214197|0.5\n214198|0.65278\n214199|0.51389\n214200|0.38889\n214201|0.5\n214202|0.33333\n214203|0.29167\n214204|0.22222\n214205|0.5\n214206|0.45833\n214207|0.5\n214208|0.63889\n214209|0.26389\n214210|0.43056\n214211|0.38889\n214212|0.66667\n214213|0.52778\n214214|0.44444\n214215|0.5\n214216|0.48611\n214217|0.5\n214218|0.55556\n214219|0.5\n214220|0.27778\n214221|0.29167\n214222|0.27778\n214223|0.5\n214224|0.68056\n214225|0.34722\n214226|0.38889\n214227|0.5\n214228|0.5\n214229|0.5\n214230|0.5\n214231|0.40278\n214232|0.34722\n214233|0.375\n214234|0.30556\n214235|0.38889\n214236|0.38889\n214237|0.51389\n214238|0.41667\n214239|0.5\n214240|0.5\n214241|0.5\n214242|0.36111\n214243|0.5\n214244|0.5\n214245|0.55556\n214246|0.22222\n214247|0.72222\n214248|0.5\n214249|0.30556\n214250|0.51389\n214251|0.61111\n214252|0.5\n214253|0.5\n214254|0.30556\n214255|0.51389\n214256|0.5\n214257|0.59722\n214258|0.5\n214259|0.63889\n214260|0.5\n214261|0.43056\n214262|0.5\n214263|0.5\n214264|0.5\n214265|0.63889\n214266|0.5\n214267|0.44444\n214268|0.5\n214269|0.31944\n214270|0.61111\n214271|0.54167\n214272|0.26389\n214273|0.5\n214274|0.13889\n214275|0.23611\n214276|0.18056\n214277|0.58333\n214278|0.5\n214279|0.083333\n214280|0.51389\n214281|0.19444\n214282|0.22222\n214283|0.63889\n214284|0.5\n214285|0.75\n214286|0.66667\n214287|0.45833\n214288|0.56944\n214289|0.69444\n214290|0.63889\n214291|0.65278\n214292|0.66667\n214293|0.375\n214294|0.59722\n214295|0.5\n214296|0.5\n214297|0.61111\n214298|0.19444\n214299|0.31944\n214300|0.16667\n214301|0.58333\n214302|0.52778\n214303|0.29167\n214304|0.041667\n214305|0.44444\n214306|0.5\n214307|0.5\n214308|0.30556\n214309|0.38889\n214310|0.41667\n214311|0.40278\n214312|0.25\n214313|0.31944\n214314|0.31944\n214315|0.48611\n214316|0.5\n214317|0.52778\n214318|0.5\n214319|0.23611\n214320|0.5\n214321|0.66667\n214322|0.52778\n214323|0.25\n214324|0.51389\n214325|0.44444\n214326|0.5\n214327|0.69444\n214328|0.63889\n214329|0.30556\n214330|0.55556\n214331|0.58333\n214332|0.66667\n214333|0.65278\n214334|0.5\n214335|0.73611\n214336|0.66667\n214337|0.55556\n214338|0.875\n214339|0.55556\n214340|0.27778\n214341|0.55556\n214342|0.5\n214343|0.41667\n214344|0.38889\n214345|0.51389\n214346|0.48611\n214347|0.5\n214348|0.66667\n214349|0.5\n214350|0.52778\n214351|0.55556\n214352|0.56944\n214353|0.38889\n214354|0.33333\n214355|0.59722\n214356|0.38889\n214357|0.51389\n214358|0.375\n214359|0.44444\n214360|0.44444\n214361|0.61111\n214362|0.5\n214363|0.22222\n214364|0.51389\n214365|0.44444\n214366|0.55556\n214367|0.5\n214368|0.59722\n214369|0.44444\n214370|0.22222\n214371|0.47222\n214372|0.5\n214373|0.5\n214374|0.5\n214375|0.5\n214376|0.38889\n214377|0.5\n214378|0.5\n214379|0.38889\n214380|0.40278\n214381|0.5\n214382|0.41667\n214383|0.55556\n214384|0.52778\n214385|0.48611\n214386|0.61111\n214387|0.5\n214388|0.54167\n214389|0.55556\n214390|0.45833\n214391|0.375\n214392|0.63889\n214393|0.58333\n214394|0.56944\n214395|0.375\n214396|0.55556\n214397|0.5\n214398|0.44444\n214399|0.34722\n214400|0.29167\n214401|0.26389\n214402|0.26389\n214403|0.5\n214404|0.5\n214405|0.44444\n214406|0.59722\n214407|0.54167\n214408|0.38889\n214409|0.31944\n214410|0.5\n214411|0.58333\n214412|0.38889\n214413|0.52778\n214414|0.56944\n214415|0.31944\n214416|0.45833\n214417|0.5\n214418|0.36111\n214419|0.41667\n214420|0.40278\n214421|0.36111\n214422|0.31944\n214423|0.44444\n214424|0.43056\n214425|0.44444\n214426|0.5\n214427|0.23611\n214428|0.65278\n214429|0.875\n214430|0.5\n214431|0.5\n214432|0.56944\n214433|0.65278\n214434|0.63889\n214435|0.22222\n214436|0.22222\n214437|0.27778\n214438|0.31944\n214439|0.33333\n214440|0.11111\n214441|0.5\n214442|0.48611\n214443|0.5\n214444|0.36111\n214445|0.44444\n214446|0.5\n214447|0.75\n214448|0.55556\n214449|0.58333\n214450|0.59722\n214451|0.30556\n214452|0.56944\n214453|0.52778\n214454|0.43056\n214455|0.16667\n214456|0.33333\n214457|0.47222\n214458|0.20833\n214459|0.29167\n214460|0.56944\n214461|0.26389\n214462|0.56944\n214463|0.5\n214464|0.5\n214465|0.625\n214466|0.63889\n214467|0.33333\n214468|0.59722\n214469|0.70833\n214470|0.5\n214471|0.38889\n214472|0.36111\n214473|0.23611\n214474|0.45833\n214475|0.51389\n214476|0.56944\n214477|0.88889\n214478|0.79167\n214479|0.73611\n214480|0.69444\n214481|0.69444\n214482|0.79167\n214483|0.47222\n214484|0.375\n214485|0.55556\n214486|0.56944\n214487|0.33333\n214488|0.43056\n214489|0.30556\n214490|0.33333\n214491|0.44444\n214492|0.5\n214493|0.52778\n214494|0.5\n214495|0.27778\n214496|0.47222\n214497|0.55556\n214498|0.55556\n214499|0.66667\n214500|0.45833\n214501|0.5\n214502|0.51389\n214503|0.5\n214504|0.5\n214505|0.5\n214506|0.5\n214507|0.52778\n214508|0.5\n214509|0.29167\n214510|0.61111\n214511|0.48611\n214512|0.19444\n214513|0.55556\n214514|0.5\n214515|0.58333\n214516|0.5\n214517|0.54167\n214518|0.5\n214519|0.5\n214520|0.5\n214521|0.47222\n214522|0.45833\n214523|0.40278\n214524|0.23611\n214525|0.38889\n214526|0.29167\n214527|0.55556\n214528|0.72222\n214529|0.47222\n214530|0.5\n214531|0.47222\n214532|0.31944\n214533|0.5\n214534|0.55556\n214535|0.36111\n214536|0.45833\n214537|0.51389\n214538|0.097222\n214539|0.43056\n214540|0.54167\n214541|0.36111\n214542|0.5\n214543|0.5\n214544|0.26389\n214545|0.18056\n214546|0.70833\n214547|0.69444\n214548|0.44444\n214549|0.5\n214550|0.55556\n214551|0.25\n214552|0.77778\n214553|0.81944\n214554|0.59722\n214555|0.65278\n214556|0.19444\n214557|0.5\n214558|0.52778\n214559|0.61111\n214560|0.59722\n214561|0.5\n214562|0.26389\n214563|0.5\n214564|0.5\n214565|0.47222\n214566|0.5\n214567|0.51389\n214568|0.34722\n214569|0.51389\n214570|0.29167\n214571|0.375\n214572|0.31944\n214573|0.36111\n214574|0.5\n214575|0.5\n214576|0.5\n214577|0.44444\n214578|0.5\n214579|0.36111\n214580|0.34722\n214581|0.36111\n214582|0.40278\n214583|0.30556\n214584|0.44444\n214585|0.59722\n214586|0.34722\n214587|0.31944\n214588|0.40278\n214589|0.375\n214590|0.25\n214591|0.73611\n214592|0.5\n214593|0.55556\n214594|0.22222\n214595|0.18056\n214596|0.097222\n214597|0.18056\n214598|0.59722\n214599|0.5\n214600|0.43056\n214601|0.54167\n214602|0.15278\n214603|0.51389\n214604|0.125\n214605|0.38889\n214606|0.25\n214607|0.22222\n214608|0.83333\n214609|0.27778\n214610|0.31944\n214611|0.61111\n214612|0.34722\n214613|0.5\n214614|0.33333\n214615|0.25\n214616|0.38889\n214617|0.27778\n214618|0.38889\n214619|0.5\n214620|0.54167\n214621|0.5\n214622|0.43056\n214623|0.375\n214624|0.13889\n214625|0.30556\n214626|0.33333\n214627|0.097222\n214628|0.61111\n214629|0.25\n214630|0.59722\n214631|0.58333\n214632|0.61111\n214633|0.41667\n214634|0.55556\n214635|0.5\n214636|0.52778\n214637|0.33333\n214638|0.34722\n214639|0.61111\n214640|0.30556\n214641|0.5\n214642|0.5\n214643|0.5\n214644|0.65278\n214645|0.51389\n214646|0.083333\n214647|0.5\n214648|0.43056\n214649|0.61111\n214650|0.5\n214651|0.5\n214652|0.5\n214653|0.81944\n214654|0.77778\n214655|0.61111\n214656|0.59722\n214657|0.5\n214658|0.33333\n214659|0.5\n214660|0.5\n214661|0.5\n214662|0.59722\n214663|0.5\n214664|0.375\n214665|0.5\n214666|0.80556\n214667|0.34722\n214668|0.66667\n214669|0.125\n214670|0.5\n214671|0.23611\n214672|0.5\n214673|0.5\n214674|0.5\n214675|0.47222\n214676|0.5\n214677|0.23611\n214678|0.58333\n214679|0.5\n214680|0.38889\n214681|0.55556\n214682|0.625\n214683|0.47222\n214684|0.55556\n214685|0.58333\n214686|0.69444\n214687|0.33333\n214688|0.16667\n214689|0.30556\n214690|0.27778\n214691|0.5\n214692|0.5\n214693|0.5\n214694|0.5\n214695|0.48611\n214696|0.58333\n214697|0.38889\n214698|0.33333\n214699|0.5\n214700|0.54167\n214701|0.5\n214702|0.5\n214703|0.70833\n214704|0.13889\n214705|0.48611\n214706|0.45833\n214707|0.44444\n214708|0.5\n214709|0.54167\n214710|0.88889\n214711|0.94444\n214712|0.63889\n214713|0.34722\n214714|0.5\n214715|0.54167\n214716|0.5\n214717|0.5\n214718|0.34722\n214719|0.44444\n214720|0.375\n214721|0.5\n214722|0.56944\n214723|0.51389\n214724|0.5\n214725|0.41667\n214726|0.56944\n214727|0.33333\n214728|0.48611\n214729|0.26389\n214730|0.59722\n214731|0.25\n214732|0.5\n214733|0.34722\n214734|0.44444\n214735|0.65278\n214736|0.33333\n214737|0.33333\n214738|0.38889\n214739|0.5\n214740|0.43056\n214741|0.51389\n214742|0.55556\n214743|0.47222\n214744|0.70833\n214745|0.70833\n214746|0.875\n214747|0.375\n214748|0.19444\n214749|0.61111\n214750|0.29167\n214751|0.43056\n214752|0.52778\n214753|0.38889\n214754|0.5\n214755|0.5\n214756|0.26389\n214757|0.20833\n214758|0.61111\n214759|0.31944\n214760|0.25\n214761|0.45833\n214762|0.31944\n214763|0.5\n214764|0.55556\n214765|0.61111\n214766|0.44444\n214767|0.31944\n214768|0.40278\n214769|0.45833\n214770|0.48611\n214771|0.38889\n214772|0.5\n214773|0.5\n214774|0.56944\n214775|0.55556\n214776|0.56944\n214777|0.52778\n214778|0.58333\n214779|0.36111\n214780|0.41667\n214781|0.51389\n214782|0.31944\n214783|0.29167\n214784|0.63889\n214785|0.5\n214786|0.66667\n214787|0.5\n214788|0.5\n214789|0.44444\n214790|0.23611\n214791|0.58333\n214792|0.41667\n214793|0.30556\n214794|0.36111\n214795|0.5\n214796|0.25\n214797|0.22222\n214798|0.29167\n214799|0.38889\n214800|0.56944\n214801|0.41667\n214802|0.52778\n214803|0.44444\n214804|0.5\n214805|0.55556\n214806|0.58333\n214807|0.30556\n214808|0.5\n214809|0.20833\n214810|0.47222\n214811|0.70833\n214812|0.375\n214813|0.29167\n214814|0.56944\n214815|0.38889\n214816|0.11111\n214817|0.48611\n214818|0.45833\n214819|0.25\n214820|0.375\n214821|0.5\n214822|0.31944\n214823|0.44444\n214824|0.38889\n214825|0.22222\n214826|0.5\n214827|0.5\n214828|0.31944\n214829|0.5\n214830|0.36111\n214831|0.5\n214832|0.38889\n214833|0.51389\n214834|0.43056\n214835|0.52778\n214836|0.54167\n214837|0.375\n214838|0.48611\n214839|0.34722\n214840|0.29167\n214841|0.33333\n214842|0.41667\n214843|0.38889\n214844|0.40278\n214845|0.27778\n214846|0.41667\n214847|0.5\n214848|0.29167\n214849|0.33333\n214850|0.5\n214851|0.56944\n214852|0.5\n214853|0.38889\n214854|0.45833\n214855|0.55556\n214856|0.5\n214857|0.375\n214858|0.59722\n214859|0.44444\n214860|0.51389\n214861|0.27778\n214862|0.43056\n214863|0.375\n214864|0.19444\n214865|0.16667\n214866|0.47222\n214867|0.72222\n214868|0.73611\n214869|0.63889\n214870|0.23611\n214871|0.18056\n214872|0.59722\n214873|0.5\n214874|0.5\n214875|0.65278\n214876|0.5\n214877|0.5\n214878|0.58333\n214879|0.61111\n214880|0.63889\n214881|0.54167\n214882|0.45833\n214883|0.36111\n214884|0.44444\n214885|0.5\n214886|0.41667\n214887|0.33333\n214888|0.41667\n214889|0.5\n214890|0.5\n214891|0.54167\n214892|0.44444\n214893|0.5\n214894|0.43056\n214895|0.54167\n214896|0.68056\n214897|0.52778\n214898|0.33333\n214899|0.48611\n214900|0.40278\n214901|0.52778\n214902|0.44444\n214903|0.22222\n214904|0.61111\n214905|0.5\n214906|0.25\n214907|0.36111\n214908|0.26389\n214909|0.5\n214910|0.43056\n214911|0.31944\n214912|0.47222\n214913|0.31944\n214914|0.5\n214915|0.5\n214916|0.5\n214917|0.40278\n214918|0.5\n214919|0.5\n214920|0.5\n214921|0.55556\n214922|0.19444\n214923|0.16667\n214924|0.88889\n214925|0.5\n214926|0.55556\n214927|0.51389\n214928|0.26389\n214929|0.5\n214930|0.58333\n214931|0.48611\n214932|0.48611\n214933|0.5\n214934|0.19444\n214935|0.11111\n214936|0.20833\n214937|0.59722\n214938|0.5\n214939|0.5\n214940|0.40278\n214941|0.375\n214942|0.44444\n214943|0.48611\n214944|0.47222\n214945|0.31944\n214946|0.44444\n214947|0.44444\n214948|0.30556\n214949|0.51389\n214950|0.55556\n214951|0.51389\n214952|0.55556\n214953|0.5\n214954|0.5\n214955|0.54167\n214956|0.52778\n214957|0.5\n214958|0.55556\n214959|0.65278\n214960|0.61111\n214961|0.5\n214962|0.44444\n214963|0.27778\n214964|0.375\n214965|0.41667\n214966|0.54167\n214967|0.31944\n214968|0.58333\n214969|0.51389\n214970|0.48611\n214971|0.51389\n214972|0.11111\n214973|0.097222\n214974|0.5\n214975|0.73611\n214976|0.58333\n214977|0.27778\n214978|0.55556\n214979|0.5\n214980|0.48611\n214981|0.54167\n214982|0.5\n214983|0.45833\n214984|0.52778\n214985|0.52778\n214986|0.51389\n214987|0.5\n214988|0.77778\n214989|0.47222\n214990|0.84722\n214991|0.5\n214992|0.56944\n214993|0.5\n214994|0.5\n214995|0.56944\n214996|0.55556\n214997|0.5\n214998|0.44444\n214999|0.52778\n215000|0.625\n215001|0.68056\n215002|0.52778\n215003|0.5\n215004|0.5\n215005|0.22222\n215006|0.5\n215007|0.51389\n215008|0.48611\n215009|0.51389\n215010|0.5\n215011|0.31944\n215012|0.43056\n215013|0.16667\n215014|0.25\n215015|0.26389\n215016|0.5\n215017|0.5\n215018|0.34722\n215019|0.5\n215020|0.5\n215021|0.125\n215022|0.31944\n215023|0.5\n215024|0.5\n215025|0.44444\n215026|0.5\n215027|0.65278\n215028|0.25\n215029|0.25\n215030|0.5\n215031|0.5\n215032|0.22222\n215033|0.13889\n215034|0.13889\n215035|0.5\n215036|0.52778\n215037|0.55556\n215038|0.44444\n215039|0.25\n215040|0.25\n215041|0.18056\n215042|0.65278\n215043|0.5\n215044|0.5\n215045|0.55556\n215046|0.44444\n215047|0.44444\n215048|0.31944\n215049|0.33333\n215050|0.31944\n215051|0.34722\n215052|0.38889\n215053|0.44444\n215054|0.51389\n215055|0.47222\n215056|0.40278\n215057|0.5\n215058|0.5\n215059|0.48611\n215060|0.44444\n215061|0.5\n215062|0.375\n215063|0.29167\n215064|0.16667\n215065|0.22222\n215066|0.041667\n215067|0.52778\n215068|0.43056\n215069|0.63889\n215070|0.65278\n215071|0.61111\n215072|0.33333\n215073|0.40278\n215074|0.23611\n215075|0.52778\n215076|0.38889\n215077|0.18056\n215078|0.25\n215079|0.15278\n215080|0.26389\n215081|0.055556\n215082|0.20833\n215083|0.27778\n215084|0\n215085|0.68056\n215086|0.33333\n215087|0.40278\n215088|0.47222\n215089|0.41667\n215090|0.20833\n215091|0.34722\n215092|0.30556\n215093|0.5\n215094|0.40278\n215095|0.5\n215096|0.52778\n215097|0.5\n215098|0.54167\n215099|0.22222\n215100|0.52778\n215101|0.47222\n215102|0.51389\n215103|0.5\n215104|0.27778\n215105|0.54167\n215106|0.31944\n215107|0.375\n215108|0.47222\n215109|0.38889\n215110|0.25\n215111|0.31944\n215112|0.5\n215113|0.30556\n215114|0.20833\n215115|0.5\n215116|0.54167\n215117|0.083333\n215118|0.5\n215119|0.16667\n215120|0.11111\n215121|0.18056\n215122|0.29167\n215123|0.23611\n215124|0.69444\n215125|0.48611\n215126|0.70833\n215127|0.65278\n215128|0.20833\n215129|0.47222\n215130|0.36111\n215131|0.097222\n215132|0.59722\n215133|0.5\n215134|0.66667\n215135|0.20833\n215136|0.68056\n215137|0.36111\n215138|0.40278\n215139|0.31944\n215140|0.29167\n215141|0.375\n215142|0.75\n215143|0.34722\n215144|0.33333\n215145|0.58333\n215146|0.41667\n215147|0.33333\n215148|0.88889\n215149|0.11111\n215150|0.15278\n215151|0.70833\n215152|0.63889\n215153|0.65278\n215154|0.375\n215155|0.47222\n215156|0.34722\n215157|0.5\n215158|0.5\n215159|0.55556\n215160|0.29167\n215161|0.38889\n215162|0.5\n215163|0.22222\n215164|0.31944\n215165|0.27778\n215166|0.31944\n215167|0.25\n215168|0.84722\n215169|0.38889\n215170|0.5\n215171|0.5\n215172|0.5\n215173|0.5\n215174|0.44444\n215175|0.31944\n215176|0.5\n215177|0.65278\n215178|0.51389\n215179|0.75\n215180|0.59722\n215181|0.44444\n215182|0.5\n215183|0.55556\n215184|0.40278\n215185|0.375\n215186|0.5\n215187|0.65278\n215188|0.44444\n215189|0.5\n215190|0.36111\n215191|0.68056\n215192|0.44444\n215193|0.52778\n215194|0.5\n215195|0.22222\n215196|0.16667\n215197|0.69444\n215198|0.68056\n215199|0.43056\n215200|0.30556\n215201|0.375\n215202|0.5\n215203|0.20833\n215204|0.59722\n215205|0.44444\n215206|0.27778\n215207|0.68056\n215208|0.5\n215209|0.5\n215210|0.51389\n215211|0.43056\n215212|0.52778\n215213|0.54167\n215214|0.5\n215215|0.51389\n215216|0.41667\n215217|0.5\n215218|0.34722\n215219|0.44444\n215220|0.48611\n215221|0.30556\n215222|0.16667\n215223|0.5\n215224|0.54167\n215225|0.52778\n215226|0.26389\n215227|0.44444\n215228|0.56944\n215229|0.40278\n215230|0.61111\n215231|0.61111\n215232|0.51389\n215233|0.5\n215234|0.33333\n215235|0.48611\n215236|0.56944\n215237|0.25\n215238|0.5\n215239|0.66667\n215240|0.47222\n215241|0.47222\n215242|0.48611\n215243|0.61111\n215244|0.5\n215245|0.30556\n215246|0.58333\n215247|0.5\n215248|0.5\n215249|0.48611\n215250|0.27778\n215251|0.34722\n215252|0.48611\n215253|0.48611\n215254|0.41667\n215255|0.45833\n215256|0.41667\n215257|0.36111\n215258|0.48611\n215259|0.5\n215260|0.47222\n215261|0.45833\n215262|0.15278\n215263|0.31944\n215264|0.22222\n215265|0.63889\n215266|0.61111\n215267|0.91667\n215268|0.5\n215269|0.44444\n215270|0.5\n215271|0.625\n215272|0.5\n215273|0.55556\n215274|0.45833\n215275|0.47222\n215276|0.40278\n215277|0.5\n215278|0.5\n215279|0.5\n215280|0.5\n215281|0.5\n215282|0.45833\n215283|0.44444\n215284|0.5\n215285|0.5\n215286|0.36111\n215287|0.51389\n215288|0.38889\n215289|0.5\n215290|0.30556\n215291|0.59722\n215292|0.45833\n215293|0.25\n215294|0.375\n215295|0.29167\n215296|0.5\n215297|0.45833\n215298|0.5\n215299|0.5\n215300|0.5\n215301|0.5\n215302|0.47222\n215303|0.29167\n215304|0.5\n215305|0.47222\n215306|0.56944\n215307|0.30556\n215308|0.20833\n215309|0.22222\n215310|0.59722\n215311|0.30556\n215312|0.5\n215313|0.34722\n215314|0.38889\n215315|0.31944\n215316|0.5\n215317|0.68056\n215318|0.59722\n215319|0.70833\n215320|0.47222\n215321|0.66667\n215322|0.19444\n215323|0.16667\n215324|0.36111\n215325|0.5\n215326|0.5\n215327|0.61111\n215328|0.5\n215329|0.66667\n215330|0.16667\n215331|0.76389\n215332|0.45833\n215333|0.45833\n215334|0.54167\n215335|0.5\n215336|0.5\n215337|0.88889\n215338|0.84722\n215339|0.66667\n215340|0.48611\n215341|0.44444\n215342|0.54167\n215343|0.44444\n215344|0.54167\n215345|0.61111\n215346|0.22222\n215347|0.13889\n215348|0.375\n215349|0.31944\n215350|0.31944\n215351|0.25\n215352|0.5\n215353|0.25\n215354|0.18056\n215355|0.5\n215356|0.5\n215357|0.45833\n215358|0.5\n215359|0.5\n215360|0.34722\n215361|0.5\n215362|0.44444\n215363|0.5\n215364|0.5\n215365|0.63889\n215366|0.44444\n215367|0.5\n215368|0.625\n215369|0.61111\n215370|0.27778\n215371|0.45833\n215372|0.25\n215373|0.26389\n215374|0.23611\n215375|0.22222\n215376|0.5\n215377|0.22222\n215378|0.61111\n215379|0.63889\n215380|0.38889\n215381|0.44444\n215382|0.31944\n215383|0.18056\n215384|0.25\n215385|0.47222\n215386|0.5\n215387|0.55556\n215388|0.16667\n215389|0.16667\n215390|0.13889\n215391|0.73611\n215392|0.41667\n215393|0.51389\n215394|0.55556\n215395|0.63889\n215396|0.26389\n215397|0.23611\n215398|0.75\n215399|0.61111\n215400|0.55556\n215401|0.38889\n215402|0.31944\n215403|0.61111\n215404|0.5\n215405|0.5\n215406|0.5\n215407|0.25\n215408|0.5\n215409|0.5\n215410|0.47222\n215411|0.58333\n215412|0.5\n215413|0.5\n215414|0.55556\n215415|0.18056\n215416|0.097222\n215417|0.23611\n215418|0.375\n215419|0.27778\n215420|0.38889\n215421|0.44444\n215422|0.48611\n215423|0.47222\n215424|0.27778\n215425|0.5\n215426|0.38889\n215427|0.51389\n215428|0.72222\n215429|0.34722\n215430|0.45833\n215431|0.43056\n215432|0.26389\n215433|0.23611\n215434|0.5\n215435|0.5\n215436|0.48611\n215437|0.5\n215438|0.43056\n215439|0.47222\n215440|0.54167\n215441|0.44444\n215442|0.33333\n215443|0.31944\n215444|0.5\n215445|0.34722\n215446|0.5\n215447|0.55556\n215448|0.55556\n215449|0.43056\n215450|0.5\n215451|0.36111\n215452|0.41667\n215453|0.5\n215454|0.5\n215455|0.51389\n215456|0.68056\n215457|0.5\n215458|0.47222\n215459|0.55556\n215460|0.5\n215461|0.54167\n215462|0.055556\n215463|0.54167\n215464|0.51389\n215465|0.81944\n215466|0.55556\n215467|0.52778\n215468|0.41667\n215469|0.44444\n215470|0.5\n215471|0.44444\n215472|0.34722\n215473|0.43056\n215474|0.41667\n215475|0.36111\n215476|0.5\n215477|0.52778\n215478|0.59722\n215479|0.38889\n215480|0.027778\n215481|0.5\n215482|0.5\n215483|0.29167\n215484|0.5\n215485|0.15278\n215486|0.44444\n215487|0.16667\n215488|0.18056\n215489|0.5\n215490|0.52778\n215491|0.30556\n215492|0.34722\n215493|0.16667\n215494|0.77778\n215495|0.63889\n215496|0.68056\n215497|0.5\n215498|0.5\n215499|0.55556\n215500|0.68056\n215501|0.43056\n215502|0.61111\n215503|0.70833\n215504|0.56944\n215505|0.55556\n215506|0.55556\n215507|0.58333\n215508|0.65278\n215509|0.5\n215510|0.5\n215511|0.72222\n215512|0.70833\n215513|0.51389\n215514|0.5\n215515|0.41667\n215516|0.52778\n215517|0.56944\n215518|0.58333\n215519|0.5\n215520|0.51389\n215521|0.56944\n215522|0.58333\n215523|0.38889\n215524|0.48611\n215525|0.43056\n215526|0.5\n215527|0.65278\n215528|0.34722\n215529|0.38889\n215530|0.54167\n215531|0.47222\n215532|0.44444\n215533|0.30556\n215534|0.34722\n215535|0.27778\n215536|0.38889\n215537|0.5\n215538|0.30556\n215539|0.23611\n215540|0.13889\n215541|0.069444\n215542|0.26389\n215543|0.30556\n215544|0.33333\n215545|0.51389\n215546|0.11111\n215547|0.44444\n215548|0.5\n215549|0.56944\n215550|0.70833\n215551|0.38889\n215552|0.5\n215553|0.26389\n215554|0.59722\n215555|0.47222\n215556|0.56944\n215557|0.38889\n215558|0.59722\n215559|0.25\n215560|0.48611\n215561|0.11111\n215562|0.47222\n215563|0.66667\n215564|0.5\n215565|0.5\n215566|0.5\n215567|0.25\n215568|0.125\n215569|0.22222\n215570|0.41667\n215571|0.5\n215572|0.38889\n215573|0.38889\n215574|0.58333\n215575|0.5\n215576|0.375\n215577|0.66667\n215578|0.44444\n215579|0.45833\n215580|0.47222\n215581|0.38889\n215582|0.43056\n215583|0.5\n215584|0.5\n215585|0.61111\n215586|0.33333\n215587|0.52778\n215588|0.19444\n215589|0.44444\n215590|0.48611\n215591|0.5\n215592|0.5\n215593|0.61111\n215594|0.55556\n215595|0.16667\n215596|0.625\n215597|0.30556\n215598|0.375\n215599|0.54167\n215600|0.11111\n215601|0.23611\n215602|0.48611\n215603|0.40278\n215604|0.5\n215605|0.63889\n215606|0.79167\n215607|0.38889\n215608|0.43056\n215609|0.5\n215610|0.48611\n215611|0.19444\n215612|0.38889\n215613|0.45833\n215614|0.36111\n215615|0.33333\n215616|0.66667\n215617|0.41667\n215618|0.33333\n215619|0.52778\n215620|0.5\n215621|0.51389\n215622|0.16667\n215623|0.33333\n215624|0.44444\n215625|0.5\n215626|0.5\n215627|0.36111\n215628|0.45833\n215629|0.41667\n215630|0.45833\n215631|0.26389\n215632|0.5\n215633|0.375\n215634|0.65278\n215635|0.51389\n215636|0.5\n215637|0.76389\n215638|0.47222\n215639|0.5\n215640|0.48611\n215641|0.43056\n215642|0.31944\n215643|0.47222\n215644|0.23611\n215645|0.34722\n215646|0.30556\n215647|0.26389\n215648|0.5\n215649|0.5\n215650|0.44444\n215651|0.34722\n215652|0.44444\n215653|0.5\n215654|0.5\n215655|0.76389\n215656|0.41667\n215657|0.55556\n215658|0.29167\n215659|0.55556\n215660|0.63889\n215661|0.5\n215662|0.55556\n215663|0.76389\n215664|0.61111\n215665|0.44444\n215666|0.38889\n215667|0.56944\n215668|0.55556\n215669|0.58333\n215670|0.5\n215671|0.5\n215672|0.375\n215673|0.63889\n215674|0.44444\n215675|0.5\n215676|0.51389\n215677|0.70833\n215678|0.5\n215679|0.72222\n215680|0.54167\n215681|0.41667\n215682|0.34722\n215683|0.55556\n215684|0.22222\n215685|0.66667\n215686|0.083333\n215687|0.5\n215688|0.41667\n215689|0.48611\n215690|0.18056\n215691|0.40278\n215692|0.5\n215693|0.5\n215694|0.41667\n215695|0.5\n215696|0.27778\n215697|0.5\n215698|0.31944\n215699|0.66667\n215700|0.45833\n215701|0.88889\n215702|0.58333\n215703|0.375\n215704|0.77778\n215705|0.55556\n215706|0.56944\n215707|0.27778\n215708|0.52778\n215709|0.56944\n215710|0.61111\n215711|0.61111\n215712|0.5\n215713|0.375\n215714|0.51389\n215715|0.56944\n215716|0.38889\n215717|0.33333\n215718|0.31944\n215719|0.27778\n215720|0.25\n215721|0.5\n215722|0.27778\n215723|0.38889\n215724|0.33333\n215725|0.5\n215726|0.34722\n215727|0.34722\n215728|0.25\n215729|0.61111\n215730|0.5\n215731|0.52778\n215732|0.66667\n215733|0.43056\n215734|0.38889\n215735|0.5\n215736|0.5\n215737|0.56944\n215738|0.5\n215739|0.36111\n215740|0.19444\n215741|0.63889\n215742|0.76389\n215743|0.61111\n215744|0.5\n215745|0.65278\n215746|0.5\n215747|0.55556\n215748|0.45833\n215749|0.5\n215750|0.48611\n215751|0.625\n215752|0.45833\n215753|0.30556\n215754|0.38889\n215755|0.5\n215756|0.55556\n215757|0.625\n215758|0.23611\n215759|0.5\n215760|0.5\n215761|0.27778\n215762|0.5\n215763|0.44444\n215764|0.5\n215765|0.34722\n215766|0.48611\n215767|0.52778\n215768|0.23611\n215769|0.5\n215770|0.5\n215771|0.56944\n215772|0.72222\n215773|0.23611\n215774|0.23611\n215775|0.48611\n215776|0.5\n215777|0.5\n215778|0.55556\n215779|0.5\n215780|0.36111\n215781|0.5\n215782|0.5\n215783|0.5\n215784|0.5\n215785|0.30556\n215786|0.5\n215787|0.51389\n215788|0.47222\n215789|0.34722\n215790|0.36111\n215791|0.47222\n215792|0.66667\n215793|0.44444\n215794|0.5\n215795|0.33333\n215796|0.44444\n215797|0.56944\n215798|0.52778\n215799|0.16667\n215800|0.47222\n215801|0.48611\n215802|0.33333\n215803|0.36111\n215804|0.375\n215805|0.375\n215806|0.41667\n215807|0.5\n215808|0.48611\n215809|0.55556\n215810|0.70833\n215811|0.61111\n215812|0.73611\n215813|0.66667\n215814|0.5\n215815|0.44444\n215816|0.47222\n215817|0.68056\n215818|0.40278\n215819|0.45833\n215820|0.36111\n215821|0.43056\n215822|0.40278\n215823|0.45833\n215824|0.5\n215825|0.61111\n215826|0.40278\n215827|0.27778\n215828|0.27778\n215829|0.22222\n215830|0.22222\n215831|0.27778\n215832|0.83333\n215833|0.375\n215834|0.56944\n215835|0.72222\n215836|0.76389\n215837|0.5\n215838|0.56944\n215839|0.29167\n215840|0.34722\n215841|0.30556\n215842|0.5\n215843|0.5\n215844|0.5\n215845|0.5\n215846|0.38889\n215847|0.5\n215848|0.54167\n215849|0.52778\n215850|0.47222\n215851|0.5\n215852|0.5\n215853|0.29167\n215854|0.27778\n215855|0.54167\n215856|0.27778\n215857|0.77778\n215858|0.19444\n215859|0.69444\n215860|0.52778\n215861|0.48611\n215862|0.77778\n215863|0.80556\n215864|0.52778\n215865|0.69444\n215866|0.5\n215867|0.19444\n215868|0.5\n215869|0.5\n215870|0.5\n215871|0.5\n215872|0.16667\n215873|0.30556\n215874|0.19444\n215875|0.5\n215876|0.33333\n215877|0.625\n215878|0.5\n215879|0.44444\n215880|0.20833\n215881|0.5\n215882|0.43056\n215883|0.19444\n215884|0.38889\n215885|0.48611\n215886|0.30556\n215887|0.5\n215888|0.23611\n215889|0.31944\n215890|0.43056\n215891|0.15278\n215892|0.25\n215893|0.56944\n215894|0.44444\n215895|0.5\n215896|0.47222\n215897|0.20833\n215898|0.55556\n215899|0.59722\n215900|0.63889\n215901|0.41667\n215902|0.5\n215903|0.069444\n215904|0.5\n215905|0.5\n215906|0.40278\n215907|0.51389\n215908|0.375\n215909|0.40278\n215910|0.76389\n215911|0.54167\n215912|0.36111\n215913|0.29167\n215914|0.5\n215915|0.52778\n215916|0.18056\n215917|0\n215918|0.18056\n215919|0.22222\n215920|0.27778\n215921|0.22222\n215922|0.27778\n215923|0.48611\n215924|0.13889\n215925|0.041667\n215926|0\n215927|0.22222\n215928|0.16667\n215929|0.27778\n215930|0.13889\n215931|0.41667\n215932|0.16667\n215933|0\n215934|0.30556\n215935|0\n215936|0.23611\n215937|0.29167\n215938|0.38889\n215939|0.33333\n215940|0.47222\n215941|0.16667\n215942|0.27778\n215943|0.30556\n215944|0.18056\n215945|0.25\n215946|0.18056\n215947|0.069444\n215948|0.069444\n215949|0.5\n215950|0.36111\n215951|0.27778\n215952|0.30556\n215953|0.33333\n215954|0.33333\n215955|0.44444\n215956|0.26389\n215957|0.40278\n215958|0.47222\n215959|0.45833\n215960|0.44444\n215961|0.027778\n215962|0.5\n215963|0.5\n215964|0.5\n215965|0.51389\n215966|0.41667\n215967|0.5\n215968|0.34722\n215969|0.5\n215970|0.52778\n215971|0.43056\n215972|0.5\n215973|0.5\n215974|0.55556\n215975|0.5\n215976|0.31944\n215977|0.5\n215978|0.5\n215979|0.52778\n215980|0.5\n215981|0.44444\n215982|0.5\n215983|0.5\n215984|0.56944\n215985|0.5\n215986|0.27778\n215987|0.44444\n215988|0.5\n215989|0.5\n215990|0.5\n215991|0.5\n215992|0.5\n215993|0.44444\n215994|0.52778\n215995|0.56944\n215996|0.33333\n215997|0.58333\n215998|0.25\n215999|0.18056\n216000|0.5\n216001|0.5\n216002|0.51389\n216003|0.11111\n216004|0.55556\n216005|0.5\n216006|0.48611\n216007|0.5\n216008|0.5\n216009|0.5\n216010|0.51389\n216011|0.69444\n216012|0.66667\n216013|0.23611\n216014|0.375\n216015|0.375\n216016|0.5\n216017|0.51389\n216018|0.55556\n216019|0.625\n216020|0.5\n216021|0.5\n216022|0.5\n216023|0.69444\n216024|0.5\n216025|0.5\n216026|0.51389\n216027|0.59722\n216028|0.52778\n216029|0.5\n216030|0.31944\n216031|0.5\n216032|0.61111\n216033|0.51389\n216034|0.61111\n216035|0.5\n216036|0.30556\n216037|0.33333\n216038|0.25\n216039|0.5\n216040|0.5\n216041|0.5\n216042|0.66667\n216043|0.58333\n216044|0.54167\n216045|0.27778\n216046|0.45833\n216047|0.25\n216048|0.36111\n216049|0.20833\n216050|0.72222\n216051|0.54167\n216052|0.68056\n216053|0.80556\n216054|0.36111\n216055|0.43056\n216056|0.43056\n216057|0.52778\n216058|0.41667\n216059|0.27778\n216060|0.51389\n216061|0.63889\n216062|0.5\n216063|0.66667\n216064|0.38889\n216065|0.54167\n216066|0.20833\n216067|0.61111\n216068|0.55556\n216069|0.44444\n216070|0.38889\n216071|0.44444\n216072|0.55556\n216073|0.11111\n216074|0.51389\n216075|0.5\n216076|0.38889\n216077|0.15278\n216078|0.40278\n216079|0.55556\n216080|0.48611\n216081|0.22222\n216082|0.375\n216083|0.75\n216084|0.72222\n216085|0.5\n216086|0.55556\n216087|0.5\n216088|0.18056\n216089|0.5\n216090|0.58333\n216091|0.73611\n216092|0.23611\n216093|0.5\n216094|0.58333\n216095|0.083333\n216096|0.48611\n216097|0.27778\n216098|0.30556\n216099|0.625\n216100|0.5\n216101|0.26389\n216102|0.34722\n216103|0.27778\n216104|0.27778\n216105|0.22222\n216106|0.18056\n216107|0.16667\n216108|0.23611\n216109|0.16667\n216110|0.26389\n216111|0.30556\n216112|0.22222\n216113|0.30556\n216114|0.43056\n216115|0.43056\n216116|0.52778\n216117|0.55556\n216118|0.34722\n216119|0.52778\n216120|0.5\n216121|0.5\n216122|0.69444\n216123|0.38889\n216124|0.18056\n216125|0.19444\n216126|0.5\n216127|0.48611\n216128|0.73611\n216129|0.66667\n216130|0.33333\n216131|0.18056\n216132|0.5\n216133|0.5\n216134|0.45833\n216135|0.45833\n216136|0.29167\n216137|0.55556\n216138|0.5\n216139|0.19444\n216140|0.31944\n216141|0.20833\n216142|0.33333\n216143|0.47222\n216144|0.375\n216145|0.51389\n216146|0.27778\n216147|0.31944\n216148|0.15278\n216149|0.31944\n216150|0.47222\n216151|0.26389\n216152|0.375\n216153|0.5\n216154|0.41667\n216155|0.29167\n216156|0.36111\n216157|0.34722\n216158|0.29167\n216159|0.30556\n216160|0.38889\n216161|0.54167\n216162|0.27778\n216163|0.22222\n216164|0.055556\n216165|0.41667\n216166|0.5\n216167|0.5\n216168|0.43056\n216169|0.31944\n216170|0.31944\n216171|0.11111\n216172|0.51389\n216173|0.19444\n216174|0.5\n216175|0.41667\n216176|0.5\n216177|0.5\n216178|0.5\n216179|0.5\n216180|0.5\n216181|0.5\n216182|0.73611\n216183|0.40278\n216184|0.52778\n216185|0.40278\n216186|0.45833\n216187|0.27778\n216188|0.38889\n216189|0.52778\n216190|0.61111\n216191|0.5\n216192|0.76389\n216193|0.5\n216194|0.29167\n216195|0.66667\n216196|0.40278\n216197|0.125\n216198|0.94444\n216199|0.5\n216200|0.19444\n216201|0.44444\n216202|0.5\n216203|0.52778\n216204|0.16667\n216205|0.375\n216206|0.26389\n216207|0.5\n216208|0.33333\n216209|0.22222\n216210|0.44444\n216211|0.52778\n216212|0.375\n216213|0.18056\n216214|0.43056\n216215|0.44444\n216216|0.5\n216217|0.5\n216218|0.48611\n216219|0.5\n216220|0.51389\n216221|0.22222\n216222|0.44444\n216223|0.65278\n216224|0.5\n216225|0.5\n216226|0.38889\n216227|0.52778\n216228|0.38889\n216229|0.41667\n216230|0.27778\n216231|0.38889\n216232|0.66667\n216233|0.22222\n216234|0.5\n216235|0.5\n216236|0.33333\n216237|0.5\n216238|0.59722\n216239|0.44444\n216240|0.43056\n216241|0.33333\n216242|0.5\n216243|0.44444\n216244|0.47222\n216245|0.22222\n216246|0.29167\n216247|0.38889\n216248|0.36111\n216249|0.44444\n216250|0.375\n216251|0.33333\n216252|0.34722\n216253|0.43056\n216254|0.375\n216255|0.36111\n216256|0.52778\n216257|0.45833\n216258|0.125\n216259|0.33333\n216260|0.25\n216261|0.38889\n216262|0.27778\n216263|0.40278\n216264|0.38889\n216265|0.19444\n216266|0.5\n216267|0.51389\n216268|0.44444\n216269|0.34722\n216270|0.38889\n216271|0.48611\n216272|0.11111\n216273|0.47222\n216274|0.61111\n216275|0.51389\n216276|0.51389\n216277|0.59722\n216278|0.625\n216279|0.66667\n216280|0.44444\n216281|0.55556\n216282|0.45833\n216283|0.48611\n216284|0.47222\n216285|0.51389\n216286|0.47222\n216287|0.30556\n216288|0.59722\n216289|0.58333\n216290|0.48611\n216291|0.45833\n216292|0.15278\n216293|0.23611\n216294|0.23611\n216295|0.5\n216296|0.38889\n216297|0.47222\n216298|0.47222\n216299|0.5\n216300|0.5\n216301|0.5\n216302|0.5\n216303|0.44444\n216304|0.55556\n216305|0.33333\n216306|0.44444\n216307|0.27778\n216308|0.55556\n216309|0.30556\n216310|0.25\n216311|0.65278\n216312|0.29167\n216313|0.38889\n216314|0.29167\n216315|0.30556\n216316|0.51389\n216317|0.31944\n216318|0.58333\n216319|0.5\n216320|0.5\n216321|0.19444\n216322|0.51389\n216323|0.59722\n216324|0.54167\n216325|0.40278\n216326|0.26389\n216327|0.63889\n216328|0.5\n216329|0.44444\n216330|0.31944\n216331|0.27778\n216332|0.625\n216333|0.25\n216334|0.30556\n216335|0.55556\n216336|0.43056\n216337|0.5\n216338|0.5\n216339|0.5\n216340|0.45833\n216341|0.34722\n216342|0.33333\n216343|0.56944\n216344|0.33333\n216345|0.19444\n216346|0.22222\n216347|0.15278\n216348|0.069444\n216349|0.013889\n216350|0.25\n216351|0.23611\n216352|0.38889\n216353|0.44444\n216354|0.47222\n216355|0.5\n216356|0.44444\n216357|0.51389\n216358|0.54167\n216359|0.18056\n216360|0.29167\n216361|0.5\n216362|0.44444\n216363|0.52778\n216364|0.25\n216365|0.5\n216366|0.25\n216367|0.22222\n216368|0.48611\n216369|0.5\n216370|0.29167\n216371|0.33333\n216372|0.45833\n216373|0.54167\n216374|0.52778\n216375|0.76389\n216376|0.65278\n216377|0.79167\n216378|0.79167\n216379|0.70833\n216380|0.40278\n216381|0.76389\n216382|0.48611\n216383|0.5\n216384|0.5\n216385|0.5\n216386|0.15278\n216387|0.5\n216388|0.23611\n216389|0.55556\n216390|0.55556\n216391|0.36111\n216392|0.47222\n216393|0.40278\n216394|0.52778\n216395|0.27778\n216396|0.625\n216397|0.25\n216398|0.22222\n216399|0.29167\n216400|0.48611\n216401|0.59722\n216402|0.44444\n216403|0.27778\n216404|0.26389\n216405|0.22222\n216406|0.5\n216407|0.84722\n216408|0.22222\n216409|0.5\n216410|0.59722\n216411|0.47222\n216412|0.875\n216413|0.29167\n216414|0.31944\n216415|0.23611\n216416|0.66667\n216417|0.16667\n216418|0.22222\n216419|0.18056\n216420|0.51389\n216421|0.5\n216422|0.48611\n216423|0.30556\n216424|0.22222\n216425|0.18056\n216426|0.56944\n216427|0.66667\n216428|0.5\n216429|0.31944\n216430|0.40278\n216431|0.26389\n216432|0.5\n216433|0.38889\n216434|0.40278\n216435|0.44444\n216436|0.30556\n216437|0.23611\n216438|0.5\n216439|0.36111\n216440|0.72222\n216441|0.54167\n216442|0.54167\n216443|0.56944\n216444|0.38889\n216445|0.5\n216446|0.18056\n216447|0.34722\n216448|0.40278\n216449|0.45833\n216450|0.38889\n216451|0.15278\n216452|0.5\n216453|0.083333\n216454|0.29167\n216455|0.18056\n216456|0.61111\n216457|0.51389\n216458|0.54167\n216459|0.55556\n216460|0.083333\n216461|0.66667\n216462|0.5\n216463|0.5\n216464|0.11111\n216465|0.27778\n216466|0.23611\n216467|0.40278\n216468|0.22222\n216469|0.22222\n216470|0.58333\n216471|0.45833\n216472|0.40278\n216473|0.5\n216474|0.45833\n216475|0.72222\n216476|0.55556\n216477|0.38889\n216478|0.44444\n216479|0.44444\n216480|0.72222\n216481|0.41667\n216482|0.19444\n216483|0.5\n216484|0.59722\n216485|0.5\n216486|0.22222\n216487|0.47222\n216488|0.51389\n216489|0.5\n216490|0.33333\n216491|0.65278\n216492|0.38889\n216493|0.38889\n216494|0.125\n216495|0.29167\n216496|0.58333\n216497|0.5\n216498|0.5\n216499|0.5\n216500|0.55556\n216501|0.63889\n216502|0.55556\n216503|0.38889\n216504|0.52778\n216505|0.41667\n216506|0.31944\n216507|0.5\n216508|0.43056\n216509|0.22222\n216510|0.15278\n216511|0.097222\n216512|0.52778\n216513|0.52778\n216514|0.25\n216515|0.23611\n216516|0.27778\n216517|0.41667\n216518|0.055556\n216519|0.25\n216520|0.83333\n216521|0.40278\n216522|0.22222\n216523|0.27778\n216524|0.13889\n216525|0.23611\n216526|0.19444\n216527|0.40278\n216528|0.375\n216529|0.41667\n216530|0.55556\n216531|0.43056\n216532|0.40278\n216533|0.375\n216534|0.41667\n216535|0.44444\n216536|0.44444\n216537|0.5\n216538|0.5\n216539|0.5\n216540|0.36111\n216541|0.59722\n216542|0.19444\n216543|0.33333\n216544|0.43056\n216545|0.56944\n216546|0.55556\n216547|0.44444\n216548|0.33333\n216549|0.5\n216550|0.55556\n216551|0.5\n216552|0.27778\n216553|0.43056\n216554|0.5\n216555|0.22222\n216556|0.44444\n216557|0.38889\n216558|0.68056\n216559|0.48611\n216560|0.61111\n216561|0.33333\n216562|0.66667\n216563|0.63889\n216564|0.27778\n216565|0.59722\n216566|0.29167\n216567|0.18056\n216568|0.61111\n216569|0.40278\n216570|0.43056\n216571|0.5\n216572|0.51389\n216573|0.41667\n216574|0.29167\n216575|0.34722\n216576|0.33333\n216577|0.5\n216578|0.51389\n216579|0.5\n216580|0.48611\n216581|0.36111\n216582|0.375\n216583|0.44444\n216584|0.43056\n216585|0.31944\n216586|0.33333\n216587|0.5\n216588|0.5\n216589|0.55556\n216590|0.5\n216591|0.5\n216592|0.29167\n216593|0.16667\n216594|0.55556\n216595|0.59722\n216596|0.33333\n216597|0.5\n216598|0.5\n216599|0.52778\n216600|0.5\n216601|0.5\n216602|0.5\n216603|0.56944\n216604|0.5\n216605|0.5\n216606|0.15278\n216607|0.5\n216608|0.44444\n216609|0.5\n216610|0.52778\n216611|0.5\n216612|0.5\n216613|0.5\n216614|0.47222\n216615|0.29167\n216616|0.27778\n216617|0.5\n216618|0.66667\n216619|0.72222\n216620|0.56944\n216621|0.5\n216622|0.55556\n216623|0.625\n216624|0.36111\n216625|0.16667\n216626|0.77778\n216627|0.56944\n216628|0.20833\n216629|0.30556\n216630|0.5\n216631|0.77778\n216632|0.65278\n216633|0.375\n216634|0.34722\n216635|0.22222\n216636|0.13889\n216637|0.56944\n216638|0.44444\n216639|0.65278\n216640|0.70833\n216641|0.18056\n216642|0.13889\n216643|0.59722\n216644|0.58333\n216645|0.33333\n216646|0.25\n216647|0.15278\n216648|0.30556\n216649|0.5\n216650|0.375\n216651|0.18056\n216652|0.5\n216653|0.5\n216654|0.5\n216655|0.20833\n216656|0.30556\n216657|0.41667\n216658|0.41667\n216659|0.27778\n216660|0.38889\n216661|0.18056\n216662|0.5\n216663|0.5\n216664|0.56944\n216665|0.36111\n216666|0.22222\n216667|0.65278\n216668|0.22222\n216669|0.5\n216670|0.22222\n216671|0.29167\n216672|0.29167\n216673|0.36111\n216674|0.29167\n216675|0.5\n216676|0.55556\n216677|0.5\n216678|0.55556\n216679|0.31944\n216680|0.38889\n216681|0.22222\n216682|0.5\n216683|0.40278\n216684|0.34722\n216685|0.58333\n216686|0.375\n216687|0.43056\n216688|0.48611\n216689|0.59722\n216690|0.36111\n216691|0.375\n216692|0.5\n216693|0.43056\n216694|0.40278\n216695|0.38889\n216696|0.61111\n216697|0.25\n216698|0.18056\n216699|0.38889\n216700|0.72222\n216701|0.33333\n216702|0.33333\n216703|0.44444\n216704|0.61111\n216705|0.41667\n216706|0.36111\n216707|0.375\n216708|0.5\n216709|0.5\n216710|0.56944\n216711|0.5\n216712|0.5\n216713|0.36111\n216714|0.65278\n216715|0.5\n216716|0.5\n216717|0.5\n216718|0.5\n216719|0.5\n216720|0.5\n216721|0.5\n216722|0.48611\n216723|0.54167\n216724|0.45833\n216725|0.52778\n216726|0.54167\n216727|0.5\n216728|0.54167\n216729|0.5\n216730|0.5\n216731|0.59722\n216732|0.5\n216733|0.5\n216734|0.5\n216735|0.23611\n216736|0.5\n216737|0.20833\n216738|0.41667\n216739|0.61111\n216740|0.33333\n216741|0.11111\n216742|0.33333\n216743|0.375\n216744|0.48611\n216745|0.31944\n216746|0.29167\n216747|0.23611\n216748|0.36111\n216749|0.26389\n216750|0.22222\n216751|0.25\n216752|0.51389\n216753|0.375\n216754|0.19444\n216755|0.27778\n216756|0.375\n216757|0.36111\n216758|0.16667\n216759|0.34722\n216760|0.19444\n216761|0.34722\n216762|0.72222\n216763|0.5\n216764|0.58333\n216765|0.5\n216766|0.61111\n216767|0.51389\n216768|0.5\n216769|0.5\n216770|0.375\n216771|0.5\n216772|0.51389\n216773|0.5\n216774|0.5\n216775|0.083333\n216776|0.47222\n216777|0.29167\n216778|0.44444\n216779|0.18056\n216780|0.31944\n216781|0.27778\n216782|0.44444\n216783|0.47222\n216784|0.5\n216785|0.58333\n216786|0.65278\n216787|0.47222\n216788|0.38889\n216789|0.625\n216790|0.5\n216791|0.5\n216792|0.5\n216793|0.5\n216794|0.51389\n216795|0.54167\n216796|0.5\n216797|0.44444\n216798|0.5\n216799|0.5\n216800|0.5\n216801|0.5\n216802|0.65278\n216803|0.27778\n216804|0.38889\n216805|0.33333\n216806|0.5\n216807|0.44444\n216808|0.75\n216809|0.5\n216810|0.48611\n216811|0.18056\n216812|0.26389\n216813|0.40278\n216814|0.5\n216815|0.375\n216816|0.44444\n216817|0.48611\n216818|0.41667\n216819|0.68056\n216820|0.26389\n216821|0.55556\n216822|0.65278\n216823|0.41667\n216824|0.68056\n216825|0.5\n216826|0.25\n216827|0.34722\n216828|0.36111\n216829|0.51389\n216830|0.66667\n216831|0.16667\n216832|0.45833\n216833|0.55556\n216834|0.5\n216835|0.38889\n216836|0.58333\n216837|0.51389\n216838|0.55556\n216839|0.15278\n216840|0.56944\n216841|0.58333\n216842|0.27778\n216843|0.44444\n216844|0.51389\n216845|0.33333\n216846|0.59722\n216847|0.5\n216848|0.54167\n216849|0.51389\n216850|0.5\n216851|0.44444\n216852|0.34722\n216853|0.51389\n216854|0.5\n216855|0.59722\n216856|0.30556\n216857|0.44444\n216858|0.47222\n216859|0.54167\n216860|0.43056\n216861|0.61111\n216862|0.61111\n216863|0.27778\n216864|0.31944\n216865|0.45833\n216866|0.15278\n216867|0.44444\n216868|0.29167\n216869|0.58333\n216870|0.45833\n216871|0.30556\n216872|0.36111\n216873|0.56944\n216874|0.5\n216875|0.61111\n216876|0.51389\n216877|0.31944\n216878|0.5\n216879|0.70833\n216880|0.56944\n216881|0.38889\n216882|0.52778\n216883|0.56944\n216884|0.5\n216885|0.5\n216886|0.625\n216887|0.5\n216888|0.51389\n216889|0.51389\n216890|0.72222\n216891|0.44444\n216892|0.45833\n216893|0.5\n216894|0.51389\n216895|0.51389\n216896|0.61111\n216897|0.63889\n216898|0.31944\n216899|0.51389\n216900|0.55556\n216901|0.72222\n216902|0.47222\n216903|0.55556\n216904|0.5\n216905|0.47222\n216906|0.33333\n216907|0.44444\n216908|0.30556\n216909|0.22222\n216910|0.41667\n216911|0.34722\n216912|0.375\n216913|0.125\n216914|0.55556\n216915|0.40278\n216916|0.33333\n216917|0.19444\n216918|0.375\n216919|0.48611\n216920|0.5\n216921|0.26389\n216922|0.375\n216923|0.5\n216924|0.47222\n216925|0.40278\n216926|0.44444\n216927|0.5\n216928|0.55556\n216929|0.5\n216930|0.40278\n216931|0.5\n216932|0.30556\n216933|0.48611\n216934|0.48611\n216935|0.31944\n216936|0.5\n216937|0.54167\n216938|0.51389\n216939|0.5\n216940|0.44444\n216941|0.5\n216942|0.23611\n216943|0.55556\n216944|0.36111\n216945|0.45833\n216946|0.5\n216947|0.13889\n216948|0.36111\n216949|0.5\n216950|0.18056\n216951|0.5\n216952|0.40278\n216953|0.29167\n216954|0.58333\n216955|0.31944\n216956|0.5\n216957|0.18056\n216958|0.5\n216959|0.40278\n216960|0.13889\n216961|0.55556\n216962|0.45833\n216963|0.41667\n216964|0.36111\n216965|0.54167\n216966|0.36111\n216967|0.5\n216968|0.375\n216969|0.5\n216970|0.44444\n216971|0.38889\n216972|0.5\n216973|0.51389\n216974|0.30556\n216975|0.5\n216976|0.59722\n216977|0.5\n216978|0.5\n216979|0.22222\n216980|0.48611\n216981|0.27778\n216982|0.26389\n216983|0.5\n216984|0.5\n216985|0.19444\n216986|0.11111\n216987|0.44444\n216988|0.44444\n216989|0.5\n216990|0.29167\n216991|0.47222\n216992|0.375\n216993|0.44444\n216994|0.20833\n216995|0.47222\n216996|0.44444\n216997|0.38889\n216998|0.48611\n216999|0.5\n217000|0.5\n217001|0.56944\n217002|0.52778\n217003|0.33333\n217004|0.5\n217005|0.15278\n217006|0.44444\n217007|0.51389\n217008|0.5\n217009|0.68056\n217010|0.41667\n217011|0.40278\n217012|0.52778\n217013|0.5\n217014|0.5\n217015|0.5\n217016|0.5\n217017|0.29167\n217018|0.65278\n217019|0.61111\n217020|0.63889\n217021|0.23611\n217022|0.5\n217023|0.29167\n217024|0.5\n217025|0.51389\n217026|0.375\n217027|0.44444\n217028|0.5\n217029|0.5\n217030|0.5\n217031|0.36111\n217032|0.38889\n217033|0.5\n217034|0.5\n217035|0.44444\n217036|0.36111\n217037|0.54167\n217038|0.51389\n217039|0.5\n217040|0.27778\n217041|0.51389\n217042|0.5\n217043|0.40278\n217044|0.43056\n217045|0.47222\n217046|0.55556\n217047|0.5\n217048|0.30556\n217049|0.44444\n217050|0.58333\n217051|0.61111\n217052|0.22222\n217053|0.61111\n217054|0.5\n217055|0.48611\n217056|0.54167\n217057|0.15278\n217058|0.44444\n217059|0.41667\n217060|0.19444\n217061|0.43056\n217062|0.30556\n217063|0.51389\n217064|0.45833\n217065|0.5\n217066|0.5\n217067|0.70833\n217068|0.52778\n217069|0.29167\n217070|0.36111\n217071|0.51389\n217072|0.48611\n217073|0.33333\n217074|0.19444\n217075|0.33333\n217076|0.56944\n217077|0.44444\n217078|0.56944\n217079|0.43056\n217080|0.18056\n217081|0.25\n217082|0.25\n217083|0.19444\n217084|0.55556\n217085|0.15278\n217086|0.27778\n217087|0.40278\n217088|0.5\n217089|0.52778\n217090|0.33333\n217091|0.68056\n217092|0.44444\n217093|0.36111\n217094|0.5\n217095|0.5\n217096|0.47222\n217097|0.54167\n217098|0.5\n217099|0.18056\n217100|0.44444\n217101|0.52778\n217102|0.26389\n217103|0.51389\n217104|0.45833\n217105|0.40278\n217106|0.66667\n217107|0.18056\n217108|0.055556\n217109|0.19444\n217110|0.55556\n217111|0.375\n217112|0.36111\n217113|0.36111\n217114|0.33333\n217115|0.26389\n217116|0.29167\n217117|0.44444\n217118|0.5\n217119|0.25\n217120|0.66667\n217121|0.47222\n217122|0.41667\n217123|0.5\n217124|0.66667\n217125|0.33333\n217126|0.29167\n217127|0.34722\n217128|0.63889\n217129|0.52778\n217130|0.5\n217131|0.5\n217132|0.15278\n217133|0.47222\n217134|0.31944\n217135|0.66667\n217136|0.23611\n217137|0.625\n217138|0.5\n217139|0.59722\n217140|0.44444\n217141|0.125\n217142|0.48611\n217143|0.61111\n217144|0.52778\n217145|0.33333\n217146|0.5\n217147|0.41667\n217148|0.45833\n217149|0.5\n217150|0.34722\n217151|0.5\n217152|0.26389\n217153|0.5\n217154|0.375\n217155|0.48611\n217156|0.31944\n217157|0.5\n217158|0.29167\n217159|0.30556\n217160|0.31944\n217161|0.45833\n217162|0.34722\n217163|0.55556\n217164|0.40278\n217165|0.5\n217166|0.58333\n217167|0.30556\n217168|0.20833\n217169|0.52778\n217170|0.5\n217171|0.27778\n217172|0.48611\n217173|0.47222\n217174|0.47222\n217175|0.61111\n217176|0.63889\n217177|0.40278\n217178|0.56944\n217179|0.63889\n217180|0.59722\n217181|0.38889\n217182|0.5\n217183|0.75\n217184|0.68056\n217185|0.66667\n217186|0.55556\n217187|0.52778\n217188|0.63889\n217189|0.36111\n217190|0.54167\n217191|0.5\n217192|0.56944\n217193|0.36111\n217194|0.52778\n217195|0.55556\n217196|0.5\n217197|0.61111\n217198|0.55556\n217199|0.5\n217200|0.5\n217201|0.41667\n217202|0.44444\n217203|0.375\n217204|0.44444\n217205|0.44444\n217206|0.40278\n217207|0.61111\n217208|0.66667\n217209|0.51389\n217210|0.5\n217211|0.30556\n217212|0.5\n217213|0.25\n217214|0.5\n217215|0.30556\n217216|0.20833\n217217|0.43056\n217218|0.51389\n217219|0.375\n217220|0.43056\n217221|0.34722\n217222|0.45833\n217223|0.61111\n217224|0.5\n217225|0.26389\n217226|0.51389\n217227|0.26389\n217228|0.29167\n217229|0.31944\n217230|0.69444\n217231|0.77778\n217232|0.47222\n217233|0.5\n217234|0.5\n217235|0.51389\n217236|0.58333\n217237|0.5\n217238|0.59722\n217239|0.27778\n217240|0.5\n217241|0.54167\n217242|0.43056\n217243|0.44444\n217244|0.61111\n217245|0.51389\n217246|0.73611\n217247|0.5\n217248|0.51389\n217249|0.20833\n217250|0.36111\n217251|0.375\n217252|0.54167\n217253|0.5\n217254|0.19444\n217255|0.33333\n217256|0.58333\n217257|0.55556\n217258|0.54167\n217259|0.375\n217260|0.23611\n217261|0.5\n217262|0.5\n217263|0.44444\n217264|0.72222\n217265|0.31944\n217266|0.54167\n217267|0.5\n217268|0.58333\n217269|0.65278\n217270|0.51389\n217271|0.36111\n217272|0.51389\n217273|0.48611\n217274|0.75\n217275|0.5\n217276|0.44444\n217277|0.44444\n217278|0.54167\n217279|0.5\n217280|0.33333\n217281|0.20833\n217282|0.52778\n217283|0.31944\n217284|0.5\n217285|0.54167\n217286|0.66667\n217287|0.66667\n217288|0.40278\n217289|0.43056\n217290|0.55556\n217291|0.5\n217292|0.5\n217293|0.38889\n217294|0.41667\n217295|0.5\n217296|0.40278\n217297|0.65278\n217298|0.40278\n217299|0.59722\n217300|0.52778\n217301|0.5\n217302|0.48611\n217303|0.5\n217304|0.41667\n217305|0.5\n217306|0.44444\n217307|0.61111\n217308|0.51389\n217309|0.59722\n217310|0.48611\n217311|0.23611\n217312|0.38889\n217313|0.47222\n217314|0.5\n217315|0.31944\n217316|0.20833\n217317|0.44444\n217318|0.63889\n217319|0.5\n217320|0.5\n217321|0.59722\n217322|0.29167\n217323|0.61111\n217324|0.18056\n217325|0.55556\n217326|0.625\n217327|0.48611\n217328|0.41667\n217329|0.51389\n217330|0.36111\n217331|0.52778\n217332|0.33333\n217333|0.5\n217334|0.40278\n217335|0.22222\n217336|0.52778\n217337|0.66667\n217338|0.51389\n217339|0.40278\n217340|0.47222\n217341|0.61111\n217342|0.5\n217343|0.55556\n217344|0.56944\n217345|0.15278\n217346|0.44444\n217347|0.097222\n217348|0.45833\n217349|0.16667\n217350|0.26389\n217351|0.29167\n217352|0.5\n217353|0.22222\n217354|0.31944\n217355|0.27778\n217356|0.31944\n217357|0.25\n217358|0.47222\n217359|0.5\n217360|0.43056\n217361|0.5\n217362|0.54167\n217363|0.54167\n217364|0.48611\n217365|0.38889\n217366|0.38889\n217367|0.19444\n217368|0.5\n217369|0.34722\n217370|0.38889\n217371|0.34722\n217372|0.52778\n217373|0.5\n217374|0.27778\n217375|0.5\n217376|0.52778\n217377|0.30556\n217378|0.56944\n217379|0.27778\n217380|0.51389\n217381|0.51389\n217382|0.15278\n217383|0.5\n217384|0.375\n217385|0.73611\n217386|0.55556\n217387|0.44444\n217388|0.61111\n217389|0.625\n217390|0.52778\n217391|0.36111\n217392|0.52778\n217393|0.66667\n217394|0.44444\n217395|0.41667\n217396|0.43056\n217397|0.125\n217398|0.55556\n217399|0.44444\n217400|0.45833\n217401|0.54167\n217402|0.5\n217403|0.70833\n217404|0.44444\n217405|0.44444\n217406|0.51389\n217407|0.36111\n217408|0.59722\n217409|0.44444\n217410|0.73611\n217411|0.44444\n217412|0.61111\n217413|0.63889\n217414|0.5\n217415|0.55556\n217416|0.51389\n217417|0.5\n217418|0.5\n217419|0.5\n217420|0.51389\n217421|0.33333\n217422|0.16667\n217423|0.55556\n217424|0.5\n217425|0.19444\n217426|0.5\n217427|0.5\n217428|0.40278\n217429|0.18056\n217430|0.22222\n217431|0.54167\n217432|0.25\n217433|0.36111\n217434|0.22222\n217435|0.34722\n217436|0.23611\n217437|0.25\n217438|0.5\n217439|0.5\n217440|0.5\n217441|0.5\n217442|0.5\n217443|0.51389\n217444|0.27778\n217445|0.34722\n217446|0.5\n217447|0.20833\n217448|0.43056\n217449|0.54167\n217450|0.5\n217451|0.5\n217452|0.5\n217453|0.43056\n217454|0.5\n217455|0.44444\n217456|0.41667\n217457|0.38889\n217458|0.33333\n217459|0.20833\n217460|0.5\n217461|0.54167\n217462|0.34722\n217463|0.16667\n217464|0.29167\n217465|0.5\n217466|0.5\n217467|0.51389\n217468|0.33333\n217469|0.55556\n217470|0.25\n217471|0.54167\n217472|0.52778\n217473|0.43056\n217474|0.29167\n217475|0.43056\n217476|0.5\n217477|0.45833\n217478|0.41667\n217479|0.44444\n217480|0.52778\n217481|0.51389\n217482|0.5\n217483|0.51389\n217484|0.30556\n217485|0.45833\n217486|0.40278\n217487|0.5\n217488|0.5\n217489|0.56944\n217490|0.31944\n217491|0.5\n217492|0.65278\n217493|0.5\n217494|0.61111\n217495|0.33333\n217496|0.58333\n217497|0.5\n217498|0.45833\n217499|0.5\n217500|0.25\n217501|0.5\n217502|0.58333\n217503|0.5\n217504|0.51389\n217505|0.23611\n217506|0.30556\n217507|0.5\n217508|0.41667\n217509|0.65278\n217510|0.22222\n217511|0.47222\n217512|0.55556\n217513|0.5\n217514|0.48611\n217515|0.5\n217516|0.45833\n217517|0.58333\n217518|0.33333\n217519|0.58333\n217520|0.38889\n217521|0.61111\n217522|0.30556\n217523|0.31944\n217524|0.31944\n217525|0.48611\n217526|0.5\n217527|0.52778\n217528|0.34722\n217529|0.38889\n217530|0.5\n217531|0.5\n217532|0.68056\n217533|0.69444\n217534|0.63889\n217535|0.48611\n217536|0.26389\n217537|0.27778\n217538|0.18056\n217539|0.55556\n217540|0.27778\n217541|0.36111\n217542|0.34722\n217543|0.48611\n217544|0.5\n217545|0.38889\n217546|0.52778\n217547|0.55556\n217548|0.61111\n217549|0.48611\n217550|0.38889\n217551|0.51389\n217552|0.25\n217553|0.5\n217554|0.5\n217555|0.5\n217556|0.43056\n217557|0.5\n217558|0.5\n217559|0.5\n217560|0.5\n217561|0.5\n217562|0.58333\n217563|0.5\n217564|0.44444\n217565|0.26389\n217566|0.22222\n217567|0.34722\n217568|0.26389\n217569|0.097222\n217570|0.31944\n217571|0.52778\n217572|0.54167\n217573|0.38889\n217574|0.48611\n217575|0.44444\n217576|0.36111\n217577|0.44444\n217578|0.25\n217579|0.375\n217580|0.375\n217581|0.31944\n217582|0.33333\n217583|0.20833\n217584|0.45833\n217585|0.38889\n217586|0.36111\n217587|0.33333\n217588|0.33333\n217589|0.55556\n217590|0.375\n217591|0.27778\n217592|0.44444\n217593|0.65278\n217594|0.66667\n217595|0.51389\n217596|0.68056\n217597|0.79167\n217598|0.23611\n217599|0.33333\n217600|0.34722\n217601|0.33333\n217602|0.38889\n217603|0.47222\n217604|0.20833\n217605|0.16667\n217606|0.26389\n217607|0.36111\n217608|0.25\n217609|0.26389\n217610|0.18056\n217611|0.40278\n217612|0.375\n217613|0.33333\n217614|0.33333\n217615|0.25\n217616|0.34722\n217617|0.31944\n217618|0.375\n217619|0.31944\n217620|0.18056\n217621|0.43056\n217622|0.30556\n217623|0.29167\n217624|0.41667\n217625|0.22222\n217626|0.20833\n217627|0.33333\n217628|0.45833\n217629|0.29167\n217630|0.41667\n217631|0.36111\n217632|0.44444\n217633|0.375\n217634|0.34722\n217635|0.16667\n217636|0.30556\n217637|0.20833\n217638|0.30556\n217639|0.47222\n217640|0.38889\n217641|0.23611\n217642|0.26389\n217643|0.31944\n217644|0.26389\n217645|0.45833\n217646|0.5\n217647|0.33333\n217648|0.27778\n217649|0.20833\n217650|0.27778\n217651|0.43056\n217652|0.30556\n217653|0.43056\n217654|0.40278\n217655|0.34722\n217656|0.25\n217657|0.38889\n217658|0.44444\n217659|0.38889\n217660|0.27778\n217661|0.51389\n217662|0.45833\n217663|0.31944\n217664|0.38889\n217665|0.27778\n217666|0.25\n217667|0.5\n217668|0.33333\n217669|0.29167\n217670|0.54167\n217671|0.375\n217672|0.34722\n217673|0.45833\n217674|0.43056\n217675|0.54167\n217676|0.375\n217677|0.44444\n217678|0.5\n217679|0.5\n217680|0.5\n217681|0.47222\n217682|0.48611\n217683|0.44444\n217684|0.75\n217685|0.5\n217686|0.13889\n217687|0.38889\n217688|0.41667\n217689|0.45833\n217690|0.45833\n217691|0.5\n217692|0.5\n217693|0.30556\n217694|0.31944\n217695|0.38889\n217696|0.55556\n217697|0.63889\n217698|0.36111\n217699|0.52778\n217700|0.33333\n217701|0.38889\n217702|0.48611\n217703|0.33333\n217704|0.68056\n217705|0.40278\n217706|0.47222\n217707|0.16667\n217708|0.38889\n217709|0.47222\n217710|0.56944\n217711|0.25\n217712|0.27778\n217713|0.125\n217714|0.40278\n217715|0.55556\n217716|0.44444\n217717|0.31944\n217718|0.125\n217719|0.5\n217720|0.5\n217721|0.68056\n217722|0.40278\n217723|0.5\n217724|0.5\n217725|0.5\n217726|0.43056\n217727|0.5\n217728|0.27778\n217729|0.63889\n217730|0.47222\n217731|0.5\n217732|0.59722\n217733|0.55556\n217734|0.5\n217735|0.25\n217736|0.55556\n217737|0.23611\n217738|0.44444\n217739|0.47222\n217740|0.5\n217741|0.36111\n217742|0.66667\n217743|0.44444\n217744|0.55556\n217745|0.5\n217746|0.5\n217747|0.29167\n217748|0.23611\n217749|0.5\n217750|0.5\n217751|0.55556\n217752|0.36111\n217753|0.77778\n217754|0.47222\n217755|0.59722\n217756|0.18056\n217757|0.16667\n217758|0.20833\n217759|0.25\n217760|0.27778\n217761|0.52778\n217762|0.5\n217763|0.43056\n217764|0.48611\n217765|0.58333\n217766|0.13889\n217767|0.38889\n217768|0.29167\n217769|0.52778\n217770|0.22222\n217771|0.27778\n217772|0.61111\n217773|0.61111\n217774|0.56944\n217775|0.055556\n217776|0.20833\n217777|0.61111\n217778|0.27778\n217779|0.5\n217780|0.52778\n217781|0.33333\n217782|0.5\n217783|0.75\n217784|0.40278\n217785|0.31944\n217786|0.5\n217787|0.45833\n217788|0.48611\n217789|0.26389\n217790|0.23611\n217791|0.34722\n217792|0.33333\n217793|0.33333\n217794|0.26389\n217795|0.5\n217796|0.56944\n217797|0.33333\n217798|0.72222\n217799|0.625\n217800|0.41667\n217801|0.18056\n217802|0.29167\n217803|0.27778\n217804|0.25\n217805|0.27778\n217806|0.41667\n217807|0.34722\n217808|0.44444\n217809|0.48611\n217810|0.72222\n217811|0.59722\n217812|0.44444\n217813|0.41667\n217814|0.23611\n217815|0.33333\n217816|0.47222\n217817|0.22222\n217818|0.5\n217819|0.48611\n217820|0.5\n217821|0.48611\n217822|0.48611\n217823|0.5\n217824|0.44444\n217825|0.52778\n217826|0.36111\n217827|0.56944\n217828|0.375\n217829|0.40278\n217830|0.66667\n217831|0.40278\n217832|0.5\n217833|0.55556\n217834|0.29167\n217835|0.34722\n217836|0.29167\n217837|0.45833\n217838|0.5\n217839|0.65278\n217840|0.5\n217841|0.61111\n217842|0.69444\n217843|0.5\n217844|0.26389\n217845|0.16667\n217846|0.34722\n217847|0.76389\n217848|0.625\n217849|0.44444\n217850|0.55556\n217851|0.55556\n217852|0.76389\n217853|0.90278\n217854|0.58333\n217855|0.61111\n217856|0.29167\n217857|0.44444\n217858|0.625\n217859|0.83333\n217860|0.44444\n217861|0.625\n217862|0.5\n217863|0.75\n217864|0.59722\n217865|0.5\n217866|0.54167\n217867|0.5\n217868|0.61111\n217869|0.61111\n217870|0.55556\n217871|0.38889\n217872|0.44444\n217873|0.75\n217874|0.38889\n217875|0.375\n217876|0.48611\n217877|0.5\n217878|0.29167\n217879|0.23611\n217880|0.29167\n217881|0.38889\n217882|0.5\n217883|0.34722\n217884|0.48611\n217885|0.47222\n217886|0.54167\n217887|0.44444\n217888|0.41667\n217889|0.38889\n217890|0.5\n217891|0.59722\n217892|0.31944\n217893|0.41667\n217894|0.29167\n217895|0.11111\n217896|0.52778\n217897|0.36111\n217898|0.29167\n217899|0.26389\n217900|0.43056\n217901|0.375\n217902|0.44444\n217903|0.70833\n217904|0.22222\n217905|0.33333\n217906|0.44444\n217907|0.44444\n217908|0.61111\n217909|0.34722\n217910|0.33333\n217911|0.5\n217912|0.5\n217913|0.5\n217914|0.5\n217915|0.52778\n217916|0.40278\n217917|0.5\n217918|0.36111\n217919|0.33333\n217920|0.58333\n217921|0.5\n217922|0.5\n217923|0.375\n217924|0.34722\n217925|0.30556\n217926|0.30556\n217927|0.70833\n217928|0.29167\n217929|0.36111\n217930|0.48611\n217931|0.33333\n217932|0.54167\n217933|0.22222\n217934|0.5\n217935|0.51389\n217936|0.59722\n217937|0.5\n217938|0.5\n217939|0.56944\n217940|0.36111\n217941|0.125\n217942|0.5\n217943|0.5\n217944|0.38889\n217945|0.44444\n217946|0.625\n217947|0.5\n217948|0.43056\n217949|0.43056\n217950|0.625\n217951|0.48611\n217952|0.22222\n217953|0.43056\n217954|0.5\n217955|0.5\n217956|0.31944\n217957|0.26389\n217958|0.41667\n217959|0.5\n217960|0.44444\n217961|0.45833\n217962|0.55556\n217963|0.5\n217964|0.5\n217965|0.41667\n217966|0.40278\n217967|0.45833\n217968|0.36111\n217969|0.61111\n217970|0.63889\n217971|0.5\n217972|0.43056\n217973|0.47222\n217974|0.5\n217975|0.55556\n217976|0.44444\n217977|0.54167\n217978|0.61111\n217979|0.58333\n217980|0.40278\n217981|0.75\n217982|0.38889\n217983|0.5\n217984|0.59722\n217985|0.125\n217986|0.5\n217987|0.40278\n217988|0.72222\n217989|0.77778\n217990|0.5\n217991|0.44444\n217992|0.66667\n217993|0.34722\n217994|0.36111\n217995|0.22222\n217996|0.25\n217997|0.5\n217998|0.79167\n217999|0.77778\n218000|0.77778\n218001|0.72222\n218002|0.81944\n218003|0.55556\n218004|0.38889\n218005|0.19444\n218006|0.55556\n218007|0.5\n218008|0.61111\n218009|0.16667\n218010|0.66667\n218011|0.47222\n218012|0.5\n218013|0.5\n218014|0.5\n218015|0.44444\n218016|0.5\n218017|0.5\n218018|0.52778\n218019|0.22222\n218020|0.38889\n218021|0.5\n218022|0.45833\n218023|0.43056\n218024|0.47222\n218025|0.31944\n218026|0.36111\n218027|0.31944\n218028|0.375\n218029|0.5\n218030|0.25\n218031|0.13889\n218032|0.15278\n218033|0.19444\n218034|0.125\n218035|0.25\n218036|0.375\n218037|0.41667\n218038|0.81944\n218039|0.375\n218040|0.69444\n218041|0.61111\n218042|0.625\n218043|0.27778\n218044|0.54167\n218045|0.20833\n218046|0.27778\n218047|0.13889\n218048|0.25\n218049|0.19444\n218050|0.16667\n218051|0.125\n218052|0.43056\n218053|0.48611\n218054|0.51389\n218055|0.38889\n218056|0.125\n218057|0.19444\n218058|0.47222\n218059|0.44444\n218060|0.30556\n218061|0.5\n218062|0.38889\n218063|0.48611\n218064|0.61111\n218065|0.16667\n218066|0.48611\n218067|0.25\n218068|0.25\n218069|0.38889\n218070|0.27778\n218071|0.19444\n218072|0.16667\n218073|0.47222\n218074|0.58333\n218075|0.51389\n218076|0.30556\n218077|0.30556\n218078|0.31944\n218079|0.34722\n218080|0.54167\n218081|0.38889\n218082|0.45833\n218083|0.41667\n218084|0.43056\n218085|0.31944\n218086|0.26389\n218087|0.36111\n218088|0.56944\n218089|0.29167\n218090|0.54167\n218091|0.44444\n218092|0.5\n218093|0.27778\n218094|0.34722\n218095|0.5\n218096|0.55556\n218097|0.33333\n218098|0.5\n218099|0.38889\n218100|0.65278\n218101|0.44444\n218102|0.33333\n218103|0.25\n218104|0.11111\n218105|0.45833\n218106|0.25\n218107|0.44444\n218108|0.66667\n218109|0.48611\n218110|0.5\n218111|0.34722\n218112|0.5\n218113|0.47222\n218114|0.19444\n218115|0.13889\n218116|0.11111\n218117|0.5\n218118|0.16667\n218119|0.26389\n218120|0.22222\n218121|0.33333\n218122|0.34722\n218123|0.41667\n218124|0.30556\n218125|0.44444\n218126|0.44444\n218127|0.5\n218128|0.30556\n218129|0.5\n218130|0.5\n218131|0.52778\n218132|0.5\n218133|0.54167\n218134|0.36111\n218135|0.36111\n218136|0.44444\n218137|0.31944\n218138|0.34722\n218139|0.29167\n218140|0.5\n218141|0.52778\n218142|0.59722\n218143|0.097222\n218144|0.51389\n218145|0.26389\n218146|0.48611\n218147|0.25\n218148|0.51389\n218149|0.5\n218150|0.23611\n218151|0.65278\n218152|0.5\n218153|0.33333\n218154|0.23611\n218155|0.41667\n218156|0.5\n218157|0.5\n218158|0.23611\n218159|0.29167\n218160|0.31944\n218161|0.72222\n218162|0.29167\n218163|0.44444\n218164|0.75\n218165|0.47222\n218166|0.44444\n218167|0.45833\n218168|0.36111\n218169|0.38889\n218170|0.38889\n218171|0.375\n218172|0.51389\n218173|0.38889\n218174|0.33333\n218175|0.31944\n218176|0.30556\n218177|0.33333\n218178|0.15278\n218179|0.26389\n218180|0.38889\n218181|0.38889\n218182|0.5\n218183|0.19444\n218184|0.34722\n218185|0.22222\n218186|0.34722\n218187|0.47222\n218188|0.27778\n218189|0.26389\n218190|0.375\n218191|0.48611\n218192|0.51389\n218193|0.33333\n218194|0.22222\n218195|0.31944\n218196|0.18056\n218197|0.61111\n218198|0.77778\n218199|0.72222\n218200|0.63889\n218201|0.26389\n218202|0.31944\n218203|0.15278\n218204|0.27778\n218205|0.40278\n218206|0.15278\n218207|0.375\n218208|0.29167\n218209|0.34722\n218210|0.43056\n218211|0.36111\n218212|0.26389\n218213|0.34722\n218214|0.29167\n218215|0.29167\n218216|0.23611\n218217|0.23611\n218218|0.25\n218219|0.26389\n218220|0.11111\n218221|0.13889\n218222|0.30556\n218223|0.055556\n218224|0.11111\n218225|0.097222\n218226|0.15278\n218227|0.055556\n218228|0.055556\n218229|0.29167\n218230|0.33333\n218231|0.23611\n218232|0.125\n218233|0.16667\n218234|0.59722\n218235|0.43056\n218236|0.44444\n218237|0.31944\n218238|0.43056\n218239|0.25\n218240|0.375\n218241|0.26389\n218242|0.43056\n218243|0.5\n218244|0.41667\n218245|0.45833\n218246|0.40278\n218247|0.22222\n218248|0.16667\n218249|0.41667\n218250|0.5\n218251|0.33333\n218252|0.27778\n218253|0.20833\n218254|0.44444\n218255|0.26389\n218256|0.22222\n218257|0.33333\n218258|0.5\n218259|0.31944\n218260|0.34722\n218261|0.625\n218262|0.83333\n218263|0.27778\n218264|0.26389\n218265|0.23611\n218266|0.20833\n218267|0.66667\n218268|0.15278\n218269|0.5\n218270|0.41667\n218271|0.66667\n218272|0.5\n218273|0.5\n218274|0.38889\n218275|0.30556\n218276|0.36111\n218277|0.33333\n218278|0.61111\n218279|0.59722\n218280|0.38889\n218281|0.51389\n218282|0.40278\n218283|0.36111\n218284|0.5\n218285|0.16667\n218286|0.5\n218287|0.5\n218288|0.26389\n218289|0.26389\n218290|0.125\n218291|0.5\n218292|0.58333\n218293|0.5\n218294|0.59722\n218295|0.23611\n218296|0.5\n218297|0.51389\n218298|0.5\n218299|0.44444\n218300|0.59722\n218301|0.48611\n218302|0.41667\n218303|0.48611\n218304|0.55556\n218305|0.51389\n218306|0.55556\n218307|0.54167\n218308|0.63889\n218309|0.63889\n218310|0.70833\n218311|0.44444\n218312|0.75\n218313|0.5\n218314|0.41667\n218315|0.5\n218316|0.5\n218317|0.5\n218318|0.5\n218319|0.5\n218320|0.51389\n218321|0.56944\n218322|0.34722\n218323|0.5\n218324|0.20833\n218325|0.48611\n218326|0.55556\n218327|0.68056\n218328|0.5\n218329|0.30556\n218330|0.76389\n218331|0.63889\n218332|0.51389\n218333|0.33333\n218334|0.69444\n218335|0.625\n218336|0.625\n218337|0.44444\n218338|0.44444\n218339|0.52778\n218340|0.40278\n218341|0.22222\n218342|0.33333\n218343|0.55556\n218344|0.38889\n218345|0.38889\n218346|0.44444\n218347|0.44444\n218348|0.55556\n218349|0.30556\n218350|0.34722\n218351|0.125\n218352|0.34722\n218353|0.52778\n218354|0.25\n218355|0.069444\n218356|0\n218357|0.63889\n218358|0.40278\n218359|0.5\n218360|0.23611\n218361|0.30556\n218362|0.51389\n218363|0.27778\n218364|0.23611\n218365|0.65278\n218366|0.54167\n218367|0.5\n218368|0.5\n218369|0.58333\n218370|0.29167\n218371|0.48611\n218372|0.375\n218373|0.47222\n218374|0.5\n218375|0.27778\n218376|0.47222\n218377|0.73611\n218378|0.5\n218379|0.5\n218380|0.26389\n218381|0.38889\n218382|0.19444\n218383|0.55556\n218384|0.20833\n218385|0.125\n218386|0.18056\n218387|0.47222\n218388|0.23611\n218389|0.11111\n218390|0.055556\n218391|0.34722\n218392|0.31944\n218393|0.23611\n218394|0.48611\n218395|0.27778\n218396|0.51389\n218397|0.69444\n218398|0.25\n218399|0.79167\n218400|0.33333\n218401|0.52778\n218402|0.23611\n218403|0.61111\n218404|0.5\n218405|0.625\n218406|0.65278\n218407|0.54167\n218408|0.40278\n218409|0.44444\n218410|0.5\n218411|0.31944\n218412|0.29167\n218413|0.31944\n218414|0.47222\n218415|0.375\n218416|0.51389\n218417|0.25\n218418|0.5\n218419|0.56944\n218420|0.48611\n218421|0.36111\n218422|0.5\n218423|0.5\n218424|0.5\n218425|0.5\n218426|0.5\n218427|0.55556\n218428|0.5\n218429|0.5\n218430|0.51389\n218431|0.52778\n218432|0.625\n218433|0.51389\n218434|0.5\n218435|0.44444\n218436|0.34722\n218437|0.27778\n218438|0.29167\n218439|0.097222\n218440|0.34722\n218441|0.29167\n218442|0.33333\n218443|0.72222\n218444|0.19444\n218445|0.56944\n218446|0.45833\n218447|0.47222\n218448|0.5\n218449|0.52778\n218450|0.51389\n218451|0.26389\n218452|0.25\n218453|0.44444\n218454|0.5\n218455|0.54167\n218456|0.80556\n218457|0.43056\n218458|0.5\n218459|0.88889\n218460|0.38889\n218461|0.48611\n218462|0.59722\n218463|0.875\n218464|0.5\n218465|0.5\n218466|0.68056\n218467|0.79167\n218468|0.5\n218469|0.75\n218470|0.375\n218471|0.48611\n218472|0.625\n218473|0.51389\n218474|0.40278\n218475|0.88889\n218476|0.76389\n218477|0.54167\n218478|0.63889\n218479|0.5\n218480|0.13889\n218481|0.5\n218482|0.45833\n218483|0.29167\n218484|0.44444\n218485|0.83333\n218486|0.5\n218487|0.61111\n218488|0.66667\n218489|0.5\n218490|0.55556\n218491|0.59722\n218492|0.33333\n218493|0.30556\n218494|0.56944\n218495|0.5\n218496|0.30556\n218497|0.41667\n218498|0.29167\n218499|0.31944\n218500|0.52778\n218501|0.68056\n218502|0.75\n218503|0.79167\n218504|0.59722\n218505|0.31944\n218506|0.52778\n218507|0.79167\n218508|0.5\n218509|0.88889\n218510|0.43056\n218511|0.51389\n218512|0.5\n218513|0.5\n218514|0.625\n218515|0.22222\n218516|0.18056\n218517|0.29167\n218518|0.34722\n218519|0.47222\n218520|0.40278\n218521|0.5\n218522|0.5\n218523|0.51389\n218524|0.48611\n218525|0.44444\n218526|0.5\n218527|0.5\n218528|0.5\n218529|0.25\n218530|0.52778\n218531|0.25\n218532|0.54167\n218533|0.22222\n218534|0.52778\n218535|0.31944\n218536|0.25\n218537|0.25\n218538|0.30556\n218539|0.5\n218540|0.48611\n218541|0.22222\n218542|0.18056\n218543|0.11111\n218544|0.055556\n218545|0.34722\n218546|0.30556\n218547|0.5\n218548|0.40278\n218549|0.26389\n218550|0.13889\n218551|0.44444\n218552|0.44444\n218553|0.5\n218554|0.22222\n218555|0.25\n218556|0.18056\n218557|0.34722\n218558|0.31944\n218559|0.33333\n218560|0.36111\n218561|0.52778\n218562|0.5\n218563|0.041667\n218564|0.45833\n218565|0.54167\n218566|0.20833\n218567|0.54167\n218568|0.23611\n218569|0.65278\n218570|0.47222\n218571|0.61111\n218572|0.33333\n218573|0.70833\n218574|0.79167\n218575|0.68056\n218576|0.58333\n218577|0.33333\n218578|0.44444\n218579|0.77778\n218580|0.5\n218581|0.54167\n218582|0.41667\n218583|0.625\n218584|0.027778\n218585|0.26389\n218586|0.41667\n218587|0.16667\n218588|0.20833\n218589|0.16667\n218590|0.61111\n218591|0.5\n218592|0.63889\n218593|0.61111\n218594|0.38889\n218595|0.58333\n218596|0.44444\n218597|0.5\n218598|0.52778\n218599|0.5\n218600|0.5\n218601|0.43056\n218602|0.55556\n218603|0.5\n218604|0.5\n218605|0.41667\n218606|0.27778\n218607|0.36111\n218608|0.66667\n218609|0.48611\n218610|0.29167\n218611|0.5\n218612|0.34722\n218613|0.5\n218614|0.29167\n218615|0.48611\n218616|0.48611\n218617|0.40278\n218618|0.25\n218619|0.40278\n218620|0.41667\n218621|0.5\n218622|0.25\n218623|0.47222\n218624|0.29167\n218625|0.31944\n218626|0.51389\n218627|0.22222\n218628|0.36111\n218629|0.34722\n218630|0.16667\n218631|0.22222\n218632|0.13889\n218633|0.055556\n218634|0.083333\n218635|0.22222\n218636|0.22222\n218637|0.59722\n218638|0.36111\n218639|0.5\n218640|0.44444\n218641|0.34722\n218642|0.19444\n218643|0.30556\n218644|0.22222\n218645|0.26389\n218646|0.30556\n218647|0.31944\n218648|0.55556\n218649|0.51389\n218650|0.40278\n218651|0.18056\n218652|0.43056\n218653|0.55556\n218654|0.59722\n218655|0.69444\n218656|0.5\n218657|0.25\n218658|0.44444\n218659|0.44444\n218660|0.56944\n218661|0.22222\n218662|0.20833\n218663|0.38889\n218664|0.34722\n218665|0.44444\n218666|0.66667\n218667|0.5\n218668|0.61111\n218669|0.5\n218670|0.52778\n218671|0.41667\n218672|0.31944\n218673|0.52778\n218674|0.23611\n218675|0.48611\n218676|0.5\n218677|0.30556\n218678|0.26389\n218679|0.47222\n218680|0.5\n218681|0.55556\n218682|0.54167\n218683|0.54167\n218684|0.45833\n218685|0.5\n218686|0.5\n218687|0.5\n218688|0.73611\n218689|0.75\n218690|0.76389\n218691|0.55556\n218692|0.5\n218693|0.40278\n218694|0.66667\n218695|0.34722\n218696|0.41667\n218697|0.51389\n218698|0.56944\n218699|0.38889\n218700|0.19444\n218701|0.5\n218702|0.59722\n218703|0.30556\n218704|0.48611\n218705|0.69444\n218706|0.51389\n218707|0.55556\n218708|0.5\n218709|0.38889\n218710|0.5\n218711|0.43056\n218712|0.44444\n218713|0.38889\n218714|0.33333\n218715|0.43056\n218716|0.44444\n218717|0.5\n218718|0.5\n218719|0.75\n218720|0.27778\n218721|0.52778\n218722|0.72222\n218723|0.43056\n218724|0.31944\n218725|0.20833\n218726|0.47222\n218727|0.66667\n218728|0.5\n218729|0.25\n218730|0.33333\n218731|0.70833\n218732|0.36111\n218733|0.5\n218734|0.51389\n218735|0.34722\n218736|0.48611\n218737|0.61111\n218738|0.36111\n218739|0.5\n218740|0.27778\n218741|0.5\n218742|0.30556\n218743|0.44444\n218744|0.56944\n218745|0.44444\n218746|0.56944\n218747|0.45833\n218748|0.23611\n218749|0.43056\n218750|0.38889\n218751|0.44444\n218752|0.38889\n218753|0.5\n218754|0.36111\n218755|0.31944\n218756|0.30556\n218757|0.61111\n218758|0.69444\n218759|0.84722\n218760|0.27778\n218761|0.25\n218762|0.5\n218763|0.41667\n218764|0.47222\n218765|0.5\n218766|0.47222\n218767|0.47222\n218768|0.54167\n218769|0.15278\n218770|0.25\n218771|0.44444\n218772|0.58333\n218773|0.5\n218774|0.5\n218775|0.083333\n218776|0.38889\n218777|0.097222\n218778|0.15278\n218779|0.041667\n218780|0.375\n218781|0.26389\n218782|0.5\n218783|0.5\n218784|0.30556\n218785|0.66667\n218786|0.72222\n218787|0.5\n218788|0.5\n218789|0.51389\n218790|0.41667\n218791|0.55556\n218792|0.44444\n218793|0.56944\n218794|0.5\n218795|0.625\n218796|0.5\n218797|0.63889\n218798|0.30556\n218799|0.20833\n218800|0.34722\n218801|0.48611\n218802|0.47222\n218803|0.38889\n218804|0.59722\n218805|0.59722\n218806|0.58333\n218807|0.27778\n218808|0.26389\n218809|0.13889\n218810|0.22222\n218811|0.26389\n218812|0.16667\n218813|0.34722\n218814|0.13889\n218815|0.22222\n218816|0.375\n218817|0.13889\n218818|0.31944\n218819|0.16667\n218820|0.13889\n218821|0.097222\n218822|0.22222\n218823|0.40278\n218824|0.38889\n218825|0.069444\n218826|0.26389\n218827|0.16667\n218828|0.27778\n218829|0.18056\n218830|0.22222\n218831|0.25\n218832|0.16667\n218833|0.55556\n218834|0.43056\n218835|0.55556\n218836|0.79167\n218837|0.5\n218838|0.58333\n218839|0.55556\n218840|0.52778\n218841|0.27778\n218842|0.5\n218843|0.44444\n218844|0.38889\n218845|0.38889\n218846|0.43056\n218847|0.56944\n218848|0.5\n218849|0.76389\n218850|0.5\n218851|0.79167\n218852|0.77778\n218853|0.33333\n218854|0.25\n218855|0.23611\n218856|0.41667\n218857|0.73611\n218858|0.41667\n218859|0.34722\n218860|0.26389\n218861|0.5\n218862|0.69444\n218863|0.31944\n218864|0.45833\n218865|0.16667\n218866|0.19444\n218867|0.63889\n218868|0.5\n218869|0.47222\n218870|0.34722\n218871|0.59722\n218872|0.56944\n218873|0.5\n218874|0.44444\n218875|0.5\n218876|0.5\n218877|0.26389\n218878|0.097222\n218879|0.25\n218880|0.5\n218881|0.5\n218882|0.055556\n218883|0.5\n218884|0.5\n218885|0.5\n218886|0.27778\n218887|0.38889\n218888|0.30556\n218889|0.27778\n218890|0.36111\n218891|0.43056\n218892|0.5\n218893|0.34722\n218894|0.59722\n218895|0.5\n218896|0.55556\n218897|0.31944\n218898|0.5\n218899|0.55556\n218900|0.5\n218901|0.30556\n218902|0.33333\n218903|0.45833\n218904|0.45833\n218905|0.33333\n218906|0.22222\n218907|0.56944\n218908|0.34722\n218909|0.26389\n218910|0.48611\n218911|0.5\n218912|0.48611\n218913|0.38889\n218914|0.54167\n218915|0.44444\n218916|0.41667\n218917|0.5\n218918|0.26389\n218919|0.54167\n218920|0.5\n218921|0.5\n218922|0.5\n218923|0.73611\n218924|0.45833\n218925|0.47222\n218926|0.70833\n218927|0.47222\n218928|0.33333\n218929|0.52778\n218930|0.26389\n218931|0.23611\n218932|0.041667\n218933|0.5\n218934|0.5\n218935|0.43056\n218936|0.26389\n218937|0.54167\n218938|0.30556\n218939|0.48611\n218940|0.54167\n218941|0.43056\n218942|0.22222\n218943|0.31944\n218944|0.5\n218945|0.41667\n218946|0.5\n218947|0.44444\n218948|0.40278\n218949|0.18056\n218950|0.31944\n218951|0.31944\n218952|0.375\n218953|0.625\n218954|0.33333\n218955|0.25\n218956|0.47222\n218957|0.5\n218958|0.31944\n218959|0.375\n218960|0.31944\n218961|0.33333\n218962|0.375\n218963|0.33333\n218964|0.43056\n218965|0.44444\n218966|0.5\n218967|0.5\n218968|0.56944\n218969|0.25\n218970|0.30556\n218971|0.34722\n218972|0.55556\n218973|0.40278\n218974|0.26389\n218975|0.5\n218976|0.5\n218977|0.48611\n218978|0.5\n218979|0.5\n218980|0.16667\n218981|0.30556\n218982|0.20833\n218983|0.34722\n218984|0.27778\n218985|0.44444\n218986|0.44444\n218987|0.19444\n218988|0.31944\n218989|0.22222\n218990|0.33333\n218991|0.41667\n218992|0.33333\n218993|0.38889\n218994|0.375\n218995|0.18056\n218996|0.41667\n218997|0.56944\n218998|0.59722\n218999|0.55556\n219000|0.56944\n219001|0.86111\n219002|0.625\n219003|0.72222\n219004|0.65278\n219005|0.58333\n219006|0.56944\n219007|0.68056\n219008|0.55556\n219009|0.68056\n219010|0.55556\n219011|0.66667\n219012|0.83333\n219013|0.45833\n219014|0.75\n219015|0.75\n219016|0.47222\n219017|0.61111\n219018|0.72222\n219019|0.5\n219020|0.72222\n219021|0.83333\n219022|0.80556\n219023|0.68056\n219024|0.86111\n219025|0.70833\n219026|0.80556\n219027|0.69444\n219028|0.68056\n219029|0.69444\n219030|0.65278\n219031|0.41667\n219032|0.55556\n219033|0.5\n219034|0.48611\n219035|0.44444\n219036|0.41667\n219037|0.5\n219038|0.375\n219039|0.20833\n219040|0.625\n219041|0.33333\n219042|0.5\n219043|0.47222\n219044|0.38889\n219045|0.375\n219046|0.33333\n219047|0.47222\n219048|0.52778\n219049|0.38889\n219050|0.52778\n219051|0.33333\n219052|0.22222\n219053|0.83333\n219054|0.30556\n219055|0.44444\n219056|0.5\n219057|0.5\n219058|0.25\n219059|0.5\n219060|0.5\n219061|0.38889\n219062|0.63889\n219063|0.5\n219064|0.43056\n219065|0.44444\n219066|0.5\n219067|0.30556\n219068|0.54167\n219069|0.375\n219070|0.5\n219071|0.44444\n219072|0.48611\n219073|0.5\n219074|0.38889\n219075|0.52778\n219076|0.5\n219077|0.56944\n219078|0.44444\n219079|0.44444\n219080|0.5\n219081|0.52778\n219082|0.125\n219083|0.34722\n219084|0.51389\n219085|0.5\n219086|0.5\n219087|0.59722\n219088|0.38889\n219089|0.5\n219090|0.27778\n219091|0.375\n219092|0.29167\n219093|0.27778\n219094|0.47222\n219095|0.5\n219096|0.27778\n219097|0.5\n219098|0.5\n219099|0.25\n219100|0.13889\n219101|0.33333\n219102|0.5\n219103|0.055556\n219104|0.5\n219105|0.33333\n219106|0.5\n219107|0.41667\n219108|0.36111\n219109|0.72222\n219110|0.45833\n219111|0.25\n219112|0.43056\n219113|0.48611\n219114|0.5\n219115|0.51389\n219116|0.41667\n219117|0.52778\n219118|0.55556\n219119|0.51389\n219120|0.41667\n219121|0.51389\n219122|0.43056\n219123|0.375\n219124|0.73611\n219125|0.55556\n219126|0.52778\n219127|0.5\n219128|0.5\n219129|0.48611\n219130|0.31944\n219131|0.29167\n219132|0.75\n219133|0.52778\n219134|0.76389\n219135|0.375\n219136|0.41667\n219137|0.5\n219138|0.5\n219139|0.5\n219140|0.5\n219141|0.5\n219142|0.27778\n219143|0.54167\n219144|0.48611\n219145|0.5\n219146|0.16667\n219147|0.5\n219148|0.44444\n219149|0.5\n219150|0.29167\n219151|0.55556\n219152|0.44444\n219153|0.5\n219154|0.5\n219155|0.5\n219156|0.19444\n219157|0.15278\n219158|0.5\n219159|0.44444\n219160|0.5\n219161|0.5\n219162|0.47222\n219163|0.5\n219164|0.38889\n219165|0.5\n219166|0.5\n219167|0.5\n219168|0.34722\n219169|0.25\n219170|0.55556\n219171|0.5\n219172|0.5\n219173|0.25\n219174|0.33333\n219175|0.47222\n219176|0.34722\n219177|0.22222\n219178|0.59722\n219179|0.25\n219180|0.68056\n219181|0.73611\n219182|0.43056\n219183|0.38889\n219184|0.52778\n219185|0.5\n219186|0.52778\n219187|0.41667\n219188|0.47222\n219189|0.22222\n219190|0.5\n219191|0.5\n219192|0.51389\n219193|0.5\n219194|0.33333\n219195|0.23611\n219196|0.48611\n219197|0.5\n219198|0.52778\n219199|0.61111\n219200|0.48611\n219201|0.55556\n219202|0.27778\n219203|0.72222\n219204|0.52778\n219205|0.48611\n219206|0.48611\n219207|0.43056\n219208|0.33333\n219209|0.45833\n219210|0.27778\n219211|0.55556\n219212|0.5\n219213|0.25\n219214|0.27778\n219215|0.33333\n219216|0.34722\n219217|0.375\n219218|0.26389\n219219|0.22222\n219220|0.29167\n219221|0.55556\n219222|0.375\n219223|0.44444\n219224|0.5\n219225|0.65278\n219226|0.19444\n219227|0.44444\n219228|0.38889\n219229|0.56944\n219230|0.43056\n219231|0.44444\n219232|0.51389\n219233|0.55556\n219234|0.34722\n219235|0.16667\n219236|0.33333\n219237|0.33333\n219238|0.76389\n219239|0.44444\n219240|0.23611\n219241|0.47222\n219242|0.5\n219243|0.27778\n219244|0.33333\n219245|0.5\n219246|0.47222\n219247|0.70833\n219248|0.56944\n219249|0.16667\n219250|0.56944\n219251|0.65278\n219252|0.40278\n219253|0.34722\n219254|0.45833\n219255|0.66667\n219256|0.27778\n219257|0.5\n219258|0.31944\n219259|0.31944\n219260|0.18056\n219261|0.23611\n219262|0.16667\n219263|0.43056\n219264|0.81944\n219265|0.18056\n219266|0.33333\n219267|0.47222\n219268|0.13889\n219269|0.44444\n219270|0.5\n219271|0.5\n219272|0.34722\n219273|0.55556\n219274|0.65278\n219275|0.38889\n219276|0.22222\n219277|0.38889\n219278|0.73611\n219279|0.61111\n219280|0.36111\n219281|0.44444\n219282|0.40278\n219283|0.34722\n219284|0.38889\n219285|0.26389\n219286|0.40278\n219287|0.23611\n219288|0.52778\n219289|0.48611\n219290|0.5\n219291|0.41667\n219292|0.63889\n219293|0.22222\n219294|0.27778\n219295|0.80556\n219296|0.625\n219297|0.26389\n219298|0.38889\n219299|0.25\n219300|0.33333\n219301|0.5\n219302|0.63889\n219303|0.79167\n219304|0.44444\n219305|0.26389\n219306|0.44444\n219307|0.13889\n219308|0\n219309|0.22222\n219310|0.29167\n219311|0.52778\n219312|0.52778\n219313|0.5\n219314|0.5\n219315|0.47222\n219316|0.51389\n219317|0.29167\n219318|0.54167\n219319|0.43056\n219320|0.54167\n219321|0.5\n219322|0.38889\n219323|0.5\n219324|0.54167\n219325|0.44444\n219326|0.26389\n219327|0.5\n219328|0.5\n219329|0.5\n219330|0.5\n219331|0.54167\n219332|0.33333\n219333|0.36111\n219334|0.38889\n219335|0.33333\n219336|0.29167\n219337|0.625\n219338|0.19444\n219339|0.16667\n219340|0.33333\n219341|0.54167\n219342|0.43056\n219343|0.16667\n219344|0.5\n219345|0.5\n219346|0.5\n219347|0.5\n219348|0.61111\n219349|0.61111\n219350|0.33333\n219351|0.58333\n219352|0.5\n219353|0.68056\n219354|0.48611\n219355|0.33333\n219356|0.45833\n219357|0.44444\n219358|0.34722\n219359|0.5\n219360|0.5\n219361|0.33333\n219362|0.52778\n219363|0.5\n219364|0.43056\n219365|0.31944\n219366|0.33333\n219367|0.27778\n219368|0.5\n219369|0.47222\n219370|0.36111\n219371|0.31944\n219372|0.33333\n219373|0.41667\n219374|0.5\n219375|0.22222\n219376|0.375\n219377|0.44444\n219378|0.5\n219379|0.29167\n219380|0.40278\n219381|0.44444\n219382|0.59722\n219383|0.5\n219384|0.55556\n219385|0.61111\n219386|0.61111\n219387|0.40278\n219388|0.5\n219389|0.34722\n219390|0.65278\n219391|0.5\n219392|0.5\n219393|0.52778\n219394|0.45833\n219395|0.61111\n219396|0.34722\n219397|0.5\n219398|0.59722\n219399|0.27778\n219400|0.44444\n219401|0.40278\n219402|0.29167\n219403|0.33333\n219404|0.25\n219405|0.31944\n219406|0.61111\n219407|0.5\n219408|0.66667\n219409|0.51389\n219410|0.48611\n219411|0.55556\n219412|0.61111\n219413|0.34722\n219414|0.45833\n219415|0.58333\n219416|0.47222\n219417|0.84722\n219418|0.36111\n219419|0.58333\n219420|0.5\n219421|0.5\n219422|0.40278\n219423|0.5\n219424|0.68056\n219425|0.15278\n219426|0.40278\n219427|0.26389\n219428|0.5\n219429|0.45833\n219430|0.15278\n219431|0.33333\n219432|0.13889\n219433|0.19444\n219434|0.125\n219435|0.22222\n219436|0.18056\n219437|0.43056\n219438|0.29167\n219439|0.069444\n219440|0.5\n219441|0.27778\n219442|0.20833\n219443|0.34722\n219444|0.58333\n219445|0.52778\n219446|0.47222\n219447|0.36111\n219448|0.27778\n219449|0.5\n219450|0.5\n219451|0.5\n219452|0.33333\n219453|0.73611\n219454|0.66667\n219455|0.5\n219456|0.34722\n219457|0.69444\n219458|0.55556\n219459|0.5\n219460|0.56944\n219461|0.26389\n219462|0.33333\n219463|0.29167\n219464|0.43056\n219465|0.19444\n219466|0.18056\n219467|0.33333\n219468|0.30556\n219469|0.25\n219470|0.48611\n219471|0.45833\n219472|0.44444\n219473|0.26389\n219474|0.38889\n219475|0.31944\n219476|0.38889\n219477|0.47222\n219478|0.36111\n219479|0.77778\n219480|0.41667\n219481|0.55556\n219482|0.63889\n219483|0.44444\n219484|0.41667\n219485|0.55556\n219486|0.66667\n219487|0.25\n219488|0.45833\n219489|0.55556\n219490|0.44444\n219491|0.22222\n219492|0.51389\n219493|0.63889\n219494|0.11111\n219495|0.11111\n219496|0.5\n219497|0.54167\n219498|0.625\n219499|0.80556\n219500|0.59722\n219501|0.31944\n219502|0.38889\n219503|0.48611\n219504|0.63889\n219505|0.77778\n219506|0.56944\n219507|0.5\n219508|0.36111\n219509|0.43056\n219510|0.44444\n219511|0.29167\n219512|0.45833\n219513|0.48611\n219514|0.65278\n219515|0.375\n219516|0.027778\n219517|0.47222\n219518|0.5\n219519|0.5\n219520|0.45833\n219521|0.20833\n219522|0.097222\n219523|0.5\n219524|0.23611\n219525|0.52778\n219526|0.52778\n219527|0.41667\n219528|0.59722\n219529|0.94444\n219530|0.40278\n219531|0.43056\n219532|0.29167\n219533|0.27778\n219534|0.19444\n219535|0.25\n219536|0.33333\n219537|0.125\n219538|0.40278\n219539|0.36111\n219540|0.5\n219541|0.65278\n219542|0.61111\n219543|0.61111\n219544|0.55556\n219545|0.63889\n219546|0.29167\n219547|0.33333\n219548|0.097222\n219549|0.22222\n219550|0.63889\n219551|0.80556\n219552|0.5\n219553|0.29167\n219554|0.27778\n219555|0.34722\n219556|0.55556\n219557|0.27778\n219558|0.75\n219559|0.69444\n219560|0.66667\n219561|0.41667\n219562|0.27778\n219563|0.72222\n219564|0.27778\n219565|0.77778\n219566|0.52778\n219567|0.31944\n219568|0.30556\n219569|0.58333\n219570|0.44444\n219571|0.41667\n219572|0.5\n219573|0.34722\n219574|0.65278\n219575|0.65278\n219576|0.83333\n219577|0.31944\n219578|0.54167\n219579|0.31944\n219580|0.40278\n219581|0.51389\n219582|0.54167\n219583|0.5\n219584|0.40278\n219585|0.44444\n219586|0.47222\n219587|0.30556\n219588|0.33333\n219589|0.40278\n219590|0.22222\n219591|0.47222\n219592|0.29167\n219593|0.23611\n219594|0.44444\n219595|0.5\n219596|0.5\n219597|0.44444\n219598|0.5\n219599|0.63889\n219600|0.54167\n219601|0.88889\n219602|0.23611\n219603|0.75\n219604|0.75\n219605|0.55556\n219606|0.70833\n219607|0.625\n219608|0.51389\n219609|0.56944\n219610|0.55556\n219611|0.5\n219612|0.33333\n219613|0.33333\n219614|0.5\n219615|0.20833\n219616|0.51389\n219617|0.5\n219618|0.625\n219619|0.33333\n219620|0.375\n219621|0.40278\n219622|0.20833\n219623|0.5\n219624|0.5\n219625|0.72222\n219626|0.70833\n219627|0.48611\n219628|0.44444\n219629|0.73611\n219630|0.5\n219631|0.55556\n219632|0.5\n219633|0.51389\n219634|0.43056\n219635|0.58333\n219636|0.5\n219637|0.5\n219638|0.5\n219639|0.5\n219640|0.52778\n219641|0.5\n219642|0.5\n219643|0.41667\n219644|0.5\n219645|0.5\n219646|0.5\n219647|0.48611\n219648|0.41667\n219649|0.5\n219650|0.41667\n219651|0.55556\n219652|0.375\n219653|0.26389\n219654|0.33333\n219655|0.5\n219656|0.5\n219657|0.79167\n219658|0.26389\n219659|0.80556\n219660|0.48611\n219661|0.54167\n219662|0.44444\n219663|0.55556\n219664|0.38889\n219665|0.79167\n219666|0.44444\n219667|0.23611\n219668|0.30556\n219669|0.22222\n219670|0.41667\n219671|0.44444\n219672|0.47222\n219673|0.65278\n219674|0.5\n219675|0.61111\n219676|0.47222\n219677|0.23611\n219678|0.19444\n219679|0.5\n219680|0.68056\n219681|0.47222\n219682|0.5\n219683|0.33333\n219684|0.52778\n219685|0.72222\n219686|0.31944\n219687|0.20833\n219688|0.55556\n219689|0.61111\n219690|0.56944\n219691|0.5\n219692|0.51389\n219693|0.52778\n219694|0.29167\n219695|0.66667\n219696|0.36111\n219697|0.43056\n219698|0.58333\n219699|0.19444\n219700|0.41667\n219701|0.56944\n219702|0.70833\n219703|0.56944\n219704|0.54167\n219705|0.20833\n219706|0.5\n219707|0.18056\n219708|0.5\n219709|0.63889\n219710|0.27778\n219711|0.5\n219712|0.27778\n219713|0.59722\n219714|0.77778\n219715|0.26389\n219716|0.23611\n219717|0.38889\n219718|0.33333\n219719|0.61111\n219720|0.51389\n219721|0.27778\n219722|0.5\n219723|0.44444\n219724|0.40278\n219725|0.70833\n219726|0.5\n219727|0.59722\n219728|0.51389\n219729|0.5\n219730|0.54167\n219731|0.22222\n219732|0.48611\n219733|0.59722\n219734|0.5\n219735|0.41667\n219736|0.58333\n219737|0.29167\n219738|0.77778\n219739|0.48611\n219740|0.25\n219741|0.27778\n219742|0.31944\n219743|0.33333\n219744|0.58333\n219745|0.56944\n219746|0.625\n219747|0.51389\n219748|0.69444\n219749|0.54167\n219750|0.47222\n219751|0.30556\n219752|0.47222\n219753|0.76389\n219754|0.5\n219755|0.58333\n219756|0.56944\n219757|0.58333\n219758|0.5\n219759|0.66667\n219760|0.30556\n219761|0.41667\n219762|0.72222\n219763|0.55556\n219764|0.48611\n219765|0.36111\n219766|0.41667\n219767|0.31944\n219768|0.31944\n219769|0.48611\n219770|0.47222\n219771|0.5\n219772|0.27778\n219773|0.22222\n219774|0.27778\n219775|0.44444\n219776|0.33333\n219777|0.5\n219778|0.48611\n219779|0.11111\n219780|0.20833\n219781|0.54167\n219782|0.5\n219783|0.5\n219784|0.5\n219785|0.5\n219786|0.16667\n219787|0.5\n219788|0.25\n219789|0.5\n219790|0.38889\n219791|0.16667\n219792|0.5\n219793|0.29167\n219794|0.69444\n219795|0.15278\n219796|0.27778\n219797|0.5\n219798|0.375\n219799|0.68056\n219800|0.19444\n219801|0.5\n219802|0.33333\n219803|0.45833\n219804|0.41667\n219805|0.52778\n219806|0.29167\n219807|0.44444\n219808|0.56944\n219809|0.48611\n219810|0.44444\n219811|0.52778\n219812|0.5\n219813|0.51389\n219814|0.25\n219815|0.45833\n219816|0.375\n219817|0.55556\n219818|0.5\n219819|0.56944\n219820|0.20833\n219821|0.22222\n219822|0.44444\n219823|0.61111\n219824|0.23611\n219825|0.36111\n219826|0.5\n219827|0.26389\n219828|0.5\n219829|0.22222\n219830|0.27778\n219831|0.375\n219832|0.91667\n219833|0.5\n219834|0.27778\n219835|0.52778\n219836|0.44444\n219837|0.54167\n219838|0.45833\n219839|0.54167\n219840|0.5\n219841|0.36111\n219842|0.5\n219843|0.34722\n219844|0.5\n219845|0.55556\n219846|0.16667\n219847|0.83333\n219848|0.27778\n219849|0.23611\n219850|0.27778\n219851|0.44444\n219852|0.5\n219853|0.56944\n219854|0.5\n219855|0.19444\n219856|0.5\n219857|0.5\n219858|0.51389\n219859|0.36111\n219860|0.25\n219861|0.44444\n219862|0.44444\n219863|0.22222\n219864|0.23611\n219865|0.31944\n219866|0.23611\n219867|0.15278\n219868|0.5\n219869|0.55556\n219870|0.15278\n219871|0.5\n219872|0.54167\n219873|0.36111\n219874|0.29167\n219875|0.29167\n219876|0.51389\n219877|0.45833\n219878|0.51389\n219879|0.40278\n219880|0.375\n219881|0.40278\n219882|0.26389\n219883|0.33333\n219884|0.27778\n219885|0.63889\n219886|0.48611\n219887|0.27778\n219888|0.61111\n219889|0.45833\n219890|0.56944\n219891|0.27778\n219892|0.38889\n219893|0.375\n219894|0.30556\n219895|0.41667\n219896|0.5\n219897|0.43056\n219898|0.63889\n219899|0.40278\n219900|0.56944\n219901|0.58333\n219902|0.43056\n219903|0.5\n219904|0.45833\n219905|0.27778\n219906|0.40278\n219907|0.13889\n219908|0.25\n219909|0.22222\n219910|0.41667\n219911|0.30556\n219912|0.27778\n219913|0.83333\n219914|0.5\n219915|0.375\n219916|0.5\n219917|0.5\n219918|0.27778\n219919|0.26389\n219920|0.23611\n219921|0.52778\n219922|0.27778\n219923|0.51389\n219924|0.25\n219925|0.48611\n219926|0.48611\n219927|0.375\n219928|0.33333\n219929|0.43056\n219930|0.33333\n219931|0.45833\n219932|0.48611\n219933|0.26389\n219934|0.31944\n219935|0.22222\n219936|0.52778\n219937|0.5\n219938|0.5\n219939|0.55556\n219940|0.27778\n219941|0.11111\n219942|0.13889\n219943|0.45833\n219944|0.31944\n219945|0.66667\n219946|0.31944\n219947|0.83333\n219948|0.29167\n219949|0.22222\n219950|0.38889\n219951|0.43056\n219952|0.5\n219953|0.25\n219954|0.38889\n219955|0.45833\n219956|0.45833\n219957|0.40278\n219958|0.48611\n219959|0.51389\n219960|0.72222\n219961|0.73611\n219962|0.48611\n219963|0.61111\n219964|0.58333\n219965|0.26389\n219966|0.43056\n219967|0.38889\n219968|0.45833\n219969|0.22222\n219970|0.36111\n219971|0.18056\n219972|0.38889\n219973|0.22222\n219974|0.20833\n219975|0.51389\n219976|0.51389\n219977|0.5\n219978|0.33333\n219979|0.44444\n219980|0.51389\n219981|0.43056\n219982|0.54167\n219983|0.375\n219984|0.56944\n219985|0.375\n219986|0.55556\n219987|0.30556\n219988|0.44444\n219989|0.27778\n219990|0.5\n219991|0.54167\n219992|0.5\n219993|0.61111\n219994|0.55556\n219995|0.79167\n219996|0.68056\n219997|0.18056\n219998|0.65278\n219999|0.20833\n220000|0.43056\n220001|0.65278\n220002|0.68056\n220003|0.5\n220004|0.59722\n220005|0.61111\n220006|0.38889\n220007|0.33333\n220008|0.27778\n220009|0.375\n220010|0.51389\n220011|0.5\n220012|0.38889\n220013|0.26389\n220014|0.47222\n220015|0.45833\n220016|0.23611\n220017|0.097222\n220018|0\n220019|0.22222\n220020|0.41667\n220021|0.55556\n220022|0.027778\n220023|0.041667\n220024|0.41667\n220025|0.33333\n220026|0.26389\n220027|0.083333\n220028|0.13889\n220029|0.27778\n220030|0.38889\n220031|0.29167\n220032|0.18056\n220033|0.56944\n220034|0.77778\n220035|0.41667\n220036|0.58333\n220037|0.055556\n220038|0.77778\n220039|0.65278\n220040|0.69444\n220041|0.48611\n220042|0.27778\n220043|0.33333\n220044|0.33333\n220045|0.51389\n220046|0.375\n220047|0.31944\n220048|0.45833\n220049|0.5\n220050|0.18056\n220051|0.34722\n220052|0.375\n220053|0.16667\n220054|0.13889\n220055|0.23611\n220056|0.55556\n220057|0.55556\n220058|0.61111\n220059|0.38889\n220060|0.22222\n220061|0.29167\n220062|0.34722\n220063|0.70833\n220064|0.59722\n220065|0.48611\n220066|0.52778\n220067|0.52778\n220068|0.30556\n220069|0.48611\n220070|0.5\n220071|0.45833\n220072|0.5\n220073|0.48611\n220074|0.26389\n220075|0.125\n220076|0.16667\n220077|0.20833\n220078|0.44444\n220079|0.47222\n220080|0.36111\n220081|0.19444\n220082|0.33333\n220083|0.33333\n220084|0.40278\n220085|0.61111\n220086|0.68056\n220087|0.41667\n220088|0.38889\n220089|0.29167\n220090|0.45833\n220091|0.54167\n220092|0.27778\n220093|0.48611\n220094|0.5\n220095|0.48611\n220096|0.34722\n220097|0.625\n220098|0.48611\n220099|0.58333\n220100|0.68056\n220101|0.44444\n220102|0.097222\n220103|0.041667\n220104|0.41667\n220105|0.23611\n220106|0.33333\n220107|0.51389\n220108|0.40278\n220109|0.43056\n220110|0.27778\n220111|0.43056\n220112|0.51389\n220113|0.38889\n220114|0.44444\n220115|0.55556\n220116|0.069444\n220117|0.51389\n220118|0.58333\n220119|0.22222\n220120|0.25\n220121|0.5\n220122|0.30556\n220123|0.5\n220124|0.56944\n220125|0.27778\n220126|0.59722\n220127|0.5\n220128|0.5\n220129|0.44444\n220130|0.5\n220131|0.51389\n220132|0.52778\n220133|0.45833\n220134|0.19444\n220135|0.55556\n220136|0.5\n220137|0.5\n220138|0.5\n220139|0.5\n220140|0.5\n220141|0.5\n220142|0.5\n220143|0.56944\n220144|0.5\n220145|0.27778\n220146|0.5\n220147|0.61111\n220148|0.36111\n220149|0.52778\n220150|0.5\n220151|0.5\n220152|0.47222\n220153|0.5\n220154|0.5\n220155|0.30556\n220156|0.5\n220157|0.5\n220158|0.25\n220159|0.5\n220160|0.52778\n220161|0.5\n220162|0.29167\n220163|0.44444\n220164|0.44444\n220165|0.27778\n220166|0.5\n220167|0.45833\n220168|0.55556\n220169|0.375\n220170|0.40278\n220171|0.58333\n220172|0.38889\n220173|0.40278\n220174|0.52778\n220175|0.19444\n220176|0.54167\n220177|0.5\n220178|0.5\n220179|0.33333\n220180|0.66667\n220181|0.34722\n220182|0.47222\n220183|0.61111\n220184|0.5\n220185|0.66667\n220186|0.5\n220187|0.45833\n220188|0.34722\n220189|0.33333\n220190|0.5\n220191|0.43056\n220192|0.22222\n220193|0.19444\n220194|0.43056\n220195|0.29167\n220196|0.34722\n220197|0.20833\n220198|0.19444\n220199|0.33333\n220200|0.33333\n220201|0.54167\n220202|0.41667\n220203|0.36111\n220204|0.41667\n220205|0.16667\n220206|0.375\n220207|0.27778\n220208|0.48611\n220209|0.11111\n220210|0.27778\n220211|0.40278\n220212|0.27778\n220213|0.44444\n220214|0.66667\n220215|0.20833\n220216|0.83333\n220217|0.15278\n220218|0.56944\n220219|0\n220220|0.11111\n220221|0.22222\n220222|0.16667\n220223|0.16667\n220224|0.25\n220225|0.5\n220226|0.63889\n220227|0.22222\n220228|0.63889\n220229|0.26389\n220230|0.86111\n220231|0.41667\n220232|0.26389\n220233|0.27778\n220234|0.27778\n220235|0.29167\n220236|0.5\n220237|0.54167\n220238|0.27778\n220239|0.55556\n220240|0.47222\n220241|0.41667\n220242|0.36111\n220243|0.34722\n220244|0.54167\n220245|0.52778\n220246|0.34722\n220247|0.48611\n220248|0.33333\n220249|0.22222\n220250|0.31944\n220251|0.44444\n220252|0.41667\n220253|0.23611\n220254|0.083333\n220255|0.47222\n220256|0.5\n220257|0.58333\n220258|0.5\n220259|0.66667\n220260|0.48611\n220261|0.72222\n220262|0.48611\n220263|0.5\n220264|0.15278\n220265|0.40278\n220266|0.43056\n220267|0.19444\n220268|0.375\n220269|0.52778\n220270|0.625\n220271|0.30556\n220272|0.5\n220273|0.27778\n220274|0.48611\n220275|0.44444\n220276|0.55556\n220277|0.31944\n220278|0.61111\n220279|0.36111\n220280|0.34722\n220281|0.23611\n220282|0.083333\n220283|0.16667\n220284|0.5\n220285|0.48611\n220286|0.375\n220287|0.5\n220288|0.23611\n220289|0.5\n220290|0.27778\n220291|0.15278\n220292|0.34722\n220293|0.66667\n220294|0.36111\n220295|0.44444\n220296|0.5\n220297|0.31944\n220298|0.25\n220299|0.58333\n220300|0.79167\n220301|0.5\n220302|0.083333\n220303|0.40278\n220304|0.51389\n220305|0.47222\n220306|0.5\n220307|0.5\n220308|0.5\n220309|0.61111\n220310|0.51389\n220311|0.5\n220312|0.61111\n220313|0.375\n220314|0.66667\n220315|0.69444\n220316|0.66667\n220317|0.51389\n220318|0.61111\n220319|0.5\n220320|0.40278\n220321|0.5\n220322|0.40278\n220323|0.44444\n220324|0.29167\n220325|0.23611\n220326|0.15278\n220327|0.45833\n220328|0.83333\n220329|0.65278\n220330|0.30556\n220331|0.5\n220332|0.5\n220333|0.23611\n220334|0.5\n220335|0.5\n220336|0.44444\n220337|0.58333\n220338|0.16667\n220339|0.41667\n220340|0.23611\n220341|0.47222\n220342|0.44444\n220343|0.26389\n220344|0.63889\n220345|0.22222\n220346|0.33333\n220347|0.36111\n220348|0.48611\n220349|0.48611\n220350|0.5\n220351|0.73611\n220352|0.16667\n220353|0.27778\n220354|0.11111\n220355|0.55556\n220356|0.5\n220357|0.5\n220358|0.59722\n220359|0.5\n220360|0.5\n220361|0.5\n220362|0.54167\n220363|0.5\n220364|0.48611\n220365|0.61111\n220366|0.5\n220367|0.5\n220368|0.5\n220369|0.5\n220370|0.5\n220371|0.43056\n220372|0.5\n220373|0.5\n220374|0.5\n220375|0.38889\n220376|0.5\n220377|0.47222\n220378|0.54167\n220379|0.5\n220380|0.58333\n220381|0.22222\n220382|0.47222\n220383|0.097222\n220384|0.625\n220385|0.5\n220386|0.61111\n220387|0.34722\n220388|0.5\n220389|0.22222\n220390|0.5\n220391|0.5\n220392|0.5\n220393|0.52778\n220394|0.375\n220395|0.59722\n220396|0.58333\n220397|0.55556\n220398|0.63889\n220399|0.5\n220400|0.52778\n220401|0.52778\n220402|0.5\n220403|0.5\n220404|0.43056\n220405|0.45833\n220406|0.5\n220407|0.5\n220408|0.44444\n220409|0.66667\n220410|0.61111\n220411|0.34722\n220412|0.51389\n220413|0.56944\n220414|0.44444\n220415|0.44444\n220416|0.47222\n220417|0.43056\n220418|0.44444\n220419|0.41667\n220420|0.5\n220421|0.25\n220422|0.20833\n220423|0.47222\n220424|0.5\n220425|0.63889\n220426|0.52778\n220427|0.54167\n220428|0.58333\n220429|0.16667\n220430|0.18056\n220431|0.34722\n220432|0.11111\n220433|0.19444\n220434|0.11111\n220435|0.5\n220436|0.59722\n220437|0.5\n220438|0.51389\n220439|0.56944\n220440|0.5\n220441|0.13889\n220442|0.51389\n220443|0.5\n220444|0.5\n220445|0.5\n220446|0.5\n220447|0.5\n220448|0.5\n220449|0.54167\n220450|0.66667\n220451|0.5\n220452|0.5\n220453|0.5\n220454|0.47222\n220455|0.51389\n220456|0.47222\n220457|0.5\n220458|0.5\n220459|0.5\n220460|0.72222\n220461|0.47222\n220462|0.5\n220463|0.5\n220464|0.29167\n220465|0.75\n220466|0.5\n220467|0.15278\n220468|0.91667\n220469|0.66667\n220470|0.44444\n220471|0.5\n220472|0.5\n220473|0.59722\n220474|0.5\n220475|0.5\n220476|0.16667\n220477|0.88889\n220478|0.55556\n220479|0.61111\n220480|0.5\n220481|0.73611\n220482|0.70833\n220483|0.5\n220484|0.83333\n220485|0.18056\n220486|0.75\n220487|0.33333\n220488|0.52778\n220489|0.5\n220490|0.11111\n220491|0.81944\n220492|0.66667\n220493|0.81944\n220494|0.63889\n220495|0.16667\n220496|0.93056\n220497|0.61111\n220498|0.125\n220499|0.83333\n220500|0.875\n220501|0.63889\n220502|0.61111\n220503|0.90278\n220504|0.77778\n220505|0.77778\n220506|0.54167\n220507|0.125\n220508|0.61111\n220509|0.69444\n220510|0.84722\n220511|0.5\n220512|0.33333\n220513|0.77778\n220514|0.22222\n220515|0.45833\n220516|0.22222\n220517|0.5\n220518|0.18056\n220519|0.88889\n220520|0.44444\n220521|0.625\n220522|0.5\n220523|0.77778\n220524|0.26389\n220525|0.65278\n220526|0.5\n220527|0.51389\n220528|0.66667\n220529|0.5\n220530|0.79167\n220531|0.61111\n220532|0.55556\n220533|0.5\n220534|0.44444\n220535|0.40278\n220536|0.65278\n220537|0.5\n220538|0.5\n220539|0.625\n220540|0.40278\n220541|0.40278\n220542|0.5\n220543|0.13889\n220544|0.5\n220545|0.5\n220546|0.11111\n220547|0.625\n220548|0.5\n220549|0.5\n220550|0.5\n220551|0.5\n220552|0.5\n220553|0.51389\n220554|0.52778\n220555|0.5\n220556|0.45833\n220557|0.43056\n220558|0.27778\n220559|0.59722\n220560|0.125\n220561|0.33333\n220562|0.56944\n220563|0.43056\n220564|0.44444\n220565|0.55556\n220566|0.55556\n220567|0.55556\n220568|0.63889\n220569|0.875\n220570|0.625\n220571|0.63889\n220572|0.68056\n220573|0.125\n220574|0.47222\n220575|0.55556\n220576|0.26389\n220577|0.45833\n220578|0.22222\n220579|0.61111\n220580|0.23611\n220581|0.29167\n220582|0.31944\n220583|0.83333\n220584|0.86111\n220585|0.58333\n220586|0.51389\n220587|0.61111\n220588|0.66667\n220589|0.33333\n220590|0.41667\n220591|0.5\n220592|0.5\n220593|0.84722\n220594|0.84722\n220595|0.40278\n220596|0.61111\n220597|0.81944\n220598|0.61111\n220599|0.70833\n220600|0.65278\n220601|0.51389\n220602|0.013889\n220603|0.34722\n220604|0.22222\n220605|0.22222\n220606|0.34722\n220607|0.40278\n220608|0.77778\n220609|0.36111\n220610|0.013889\n220611|0.055556\n220612|0.15278\n220613|0.23611\n220614|0.5\n220615|0.56944\n220616|0.5\n220617|0.5\n220618|0.5\n220619|0.5\n220620|0.56944\n220621|0.5\n220622|0.36111\n220623|0.5\n220624|0.51389\n220625|0.5\n220626|0.33333\n220627|0.38889\n220628|0.34722\n220629|0.83333\n220630|0.52778\n220631|0.40278\n220632|0.30556\n220633|0.44444\n220634|0.44444\n220635|0.5\n220636|0.61111\n220637|0.58333\n220638|0.125\n220639|0.5\n220640|0.51389\n220641|0.52778\n220642|0.38889\n220643|0.44444\n220644|0.44444\n220645|0.55556\n220646|0.5\n220647|0.27778\n220648|0.27778\n220649|0.097222\n220650|0.72222\n220651|0.66667\n220652|0.5\n220653|0.5\n220654|0.5\n220655|0.5\n220656|0.5\n220657|0.125\n220658|0.11111\n220659|0.51389\n220660|0.5\n220661|0.625\n220662|0.34722\n220663|0.44444\n220664|0.5\n220665|0.5\n220666|0.5\n220667|0.5\n220668|0.55556\n220669|0.5\n220670|0.5\n220671|0.5\n220672|0.11111\n220673|0.47222\n220674|0.083333\n220675|0.15278\n220676|0.36111\n220677|0.73611\n220678|0.75\n220679|0.38889\n220680|0.48611\n220681|0.75\n220682|0.63889\n220683|0.34722\n220684|0.26389\n220685|0.5\n220686|0.47222\n220687|0.47222\n220688|0.5\n220689|0.44444\n220690|0.48611\n220691|0.38889\n220692|0.48611\n220693|0.58333\n220694|0.72222\n220695|0.80556\n220696|0.5\n220697|0.77778\n220698|0.66667\n220699|0.90278\n220700|0.81944\n220701|0.41667\n220702|0.25\n220703|0.59722\n220704|0.91667\n220705|0.5\n220706|0.44444\n220707|0.45833\n220708|0.45833\n220709|0.38889\n220710|0.44444\n220711|0.51389\n220712|0.29167\n220713|0.72222\n220714|0.625\n220715|0.40278\n220716|0.55556\n220717|0.31944\n220718|0.11111\n220719|0.5\n220720|0.5\n220721|0.77778\n220722|0.77778\n220723|0.31944\n220724|0.27778\n220725|0.81944\n220726|0.84722\n220727|0.19444\n220728|0.27778\n220729|0.77778\n220730|0.61111\n220731|0.68056\n220732|0.98611\n220733|0.77778\n220734|0.72222\n220735|0.75\n220736|0.48611\n220737|0.90278\n220738|0.625\n220739|0.63889\n220740|0.66667\n220741|0.52778\n220742|0.81944\n220743|0.76389\n220744|0.27778\n220745|0.70833\n220746|0.41667\n220747|0.31944\n220748|0.27778\n220749|0.26389\n220750|0.5\n220751|0.19444\n220752|0.23611\n220753|0.88889\n220754|0.27778\n220755|0.19444\n220756|0.18056\n220757|0.11111\n220758|0.80556\n220759|0.56944\n220760|0.55556\n220761|0.65278\n220762|0.75\n220763|0.76389\n220764|0.55556\n220765|0.5\n220766|0.76389\n220767|0.77778\n220768|0.65278\n220769|0.69444\n220770|0.15278\n220771|0.27778\n220772|0.15278\n220773|0.20833\n220774|0.30556\n220775|0.16667\n220776|0.48611\n220777|0.40278\n220778|0.375\n220779|0.16667\n220780|0.5\n220781|0.5\n220782|0.44444\n220783|0.91667\n220784|0.83333\n220785|0.54167\n220786|0.43056\n220787|0.5\n220788|0.68056\n220789|0.55556\n220790|0.61111\n220791|0.56944\n220792|0.45833\n220793|0.18056\n220794|0.83333\n220795|0.22222\n220796|0.51389\n220797|0.33333\n220798|0.29167\n220799|0.625\n220800|0.72222\n220801|0.76389\n220802|0.93056\n220803|0.76389\n220804|0.75\n220805|0.86111\n220806|0.66667\n220807|0.76389\n220808|0.5\n220809|0.19444\n220810|0.33333\n220811|0.41667\n220812|0.625\n220813|0.59722\n220814|0.52778\n220815|0.83333\n220816|0.5\n220817|0.5\n220818|0.86111\n220819|0.77778\n220820|0.70833\n220821|0.31944\n220822|0.27778\n220823|0.5\n220824|0.66667\n220825|0.77778\n220826|0.70833\n220827|0.69444\n220828|0.41667\n220829|0.45833\n220830|0.27778\n220831|0.26389\n220832|0.125\n220833|0.36111\n220834|0.27778\n220835|0.23611\n220836|0.083333\n220837|0.055556\n220838|0.27778\n220839|0.47222\n220840|0.5\n220841|0.54167\n220842|0.5\n220843|0.5\n220844|0.22222\n220845|0.38889\n220846|0.22222\n220847|0.75\n220848|0.625\n220849|0.26389\n220850|0.66667\n220851|0.40278\n220852|0.5\n220853|0.41667\n220854|0.27778\n220855|0.36111\n220856|0.055556\n220857|0.11111\n220858|0.19444\n220859|0.55556\n220860|0.20833\n220861|0.22222\n220862|0.30556\n220863|0.41667\n220864|0.48611\n220865|0.36111\n220866|0.23611\n220867|0.36111\n220868|0.73611\n220869|0.5\n220870|0.55556\n220871|0.59722\n220872|0.86111\n220873|0.68056\n220874|0.45833\n220875|0.5\n220876|0.63889\n220877|0.625\n220878|0.56944\n220879|0.56944\n220880|0.19444\n220881|0.125\n220882|0.38889\n220883|0.5\n220884|0.76389\n220885|0.79167\n220886|0.76389\n220887|0.54167\n220888|0.48611\n220889|0.5\n220890|0.375\n220891|0.33333\n220892|0.31944\n220893|0.375\n220894|0.5\n220895|0.5\n220896|0.48611\n220897|0.25\n220898|0.5\n220899|0.5\n220900|0.5\n220901|0.013889\n220902|0.013889\n220903|0.38889\n220904|0.27778\n220905|0.33333\n220906|0.61111\n220907|0.38889\n220908|0.19444\n220909|0.61111\n220910|0.75\n220911|0.86111\n220912|0.44444\n220913|0.48611\n220914|0.55556\n220915|0.44444\n220916|0.68056\n220917|0.34722\n220918|0.40278\n220919|0.25\n220920|0.23611\n220921|0.11111\n220922|0.41667\n220923|0.55556\n220924|0.36111\n220925|0.22222\n220926|0.20833\n220927|0.25\n220928|0.72222\n220929|0.63889\n220930|0.56944\n220931|0.63889\n220932|0.38889\n220933|0.20833\n220934|0.16667\n220935|0.52778\n220936|0.90278\n220937|0.97222\n220938|0.40278\n220939|0.48611\n220940|0.83333\n220941|0.70833\n220942|0.875\n220943|0.33333\n220944|0.70833\n220945|0.15278\n220946|0.16667\n220947|0.16667\n220948|0.70833\n220949|0.25\n220950|0.45833\n220951|0.69444\n220952|0.20833\n220953|0.13889\n220954|0.26389\n220955|0.44444\n220956|0.22222\n220957|0.55556\n220958|0.63889\n220959|0.58333\n220960|0.41667\n220961|0.23611\n220962|0.55556\n220963|0.61111\n220964|0.34722\n220965|0.23611\n220966|0.55556\n220967|0.91667\n220968|0.93056\n220969|0.63889\n220970|0.11111\n220971|0.027778\n220972|0.44444\n220973|0.54167\n220974|0.66667\n220975|0.5\n220976|0.13889\n220977|0.19444\n220978|0.11111\n220979|0.31944\n220980|0.61111\n220981|0.61111\n220982|0.44444\n220983|0.44444\n220984|0.26389\n220985|0.66667\n220986|0.75\n220987|0.77778\n220988|0.63889\n220989|0.11111\n220990|0.41667\n220991|0.54167\n220992|0.44444\n220993|0.5\n220994|0.43056\n220995|0.61111\n220996|0.5\n220997|0.30556\n220998|0.34722\n220999|0.66667\n221000|0.72222\n221001|0.79167\n221002|0.5\n221003|0.56944\n221004|0.55556\n221005|0.59722\n221006|0.61111\n221007|0.375\n221008|0.31944\n221009|0.375\n221010|0.36111\n221011|0.27778\n221012|0.31944\n221013|0.16667\n221014|0.77778\n221015|0.83333\n221016|0.41667\n221017|0.48611\n221018|0.31944\n221019|0.25\n221020|0.38889\n221021|0.69444\n221022|0.86111\n221023|0.73611\n221024|0.75\n221025|0.36111\n221026|0.38889\n221027|0.097222\n221028|0.375\n221029|0.40278\n221030|0.41667\n221031|0.26389\n221032|0.55556\n221033|0.27778\n221034|0.27778\n221035|0.30556\n221036|0.5\n221037|0.5\n221038|0.36111\n221039|0.83333\n221040|0.5\n221041|0.5\n221042|0.375\n221043|0.5\n221044|0.47222\n221045|0.44444\n221046|0.44444\n221047|0.5\n221048|0.5\n221049|0.16667\n221050|0.31944\n221051|0.33333\n221052|0.86111\n221053|0.5\n221054|0.63889\n221055|0.31944\n221056|0.22222\n221057|0.375\n221058|0.63889\n221059|0.76389\n221060|0.5\n221061|0.5\n221062|0.5\n221063|0.5\n221064|0.5\n221065|0.23611\n221066|0.55556\n221067|0.69444\n221068|0.625\n221069|0.56944\n221070|0.18056\n221071|0.52778\n221072|0.27778\n221073|0.13889\n221074|0.027778\n221075|0.63889\n221076|0.19444\n221077|0.69444\n221078|0.65278\n221079|0.5\n221080|0.48611\n221081|0.31944\n221082|0.5\n221083|0.93056\n221084|0.20833\n221085|0.27778\n221086|0.27778\n221087|0.23611\n221088|0.31944\n221089|0.20833\n221090|0.38889\n221091|0.5\n221092|0.375\n221093|0.61111\n221094|0.73611\n221095|0.72222\n221096|0.5\n221097|0.77778\n221098|0.5\n221099|0.41667\n221100|0.5\n221101|0.68056\n221102|0.5\n221103|0.5\n221104|0.5\n221105|0.48611\n221106|0.5\n221107|0.5\n221108|0.5\n221109|0.45833\n221110|0.5\n221111|0.51389\n221112|0.5\n221113|0.5\n221114|0.5\n221115|0.5\n221116|0.19444\n221117|0.25\n221118|0.45833\n221119|0.30556\n221120|0.26389\n221121|0.54167\n221122|0.55556\n221123|0.38889\n221124|0.76389\n221125|0.58333\n221126|0.15278\n221127|0.45833\n221128|0.069444\n221129|0.13889\n221130|0.5\n221131|0.41667\n221132|0.29167\n221133|0.55556\n221134|0.84722\n221135|0.80556\n221136|0.84722\n221137|0.5\n221138|0.45833\n221139|0.625\n221140|0.15278\n221141|0.33333\n221142|0.66667\n221143|0.27778\n221144|0.13889\n221145|0.375\n221146|0.20833\n221147|0.56944\n221148|0.52778\n221149|0.69444\n221150|0.77778\n221151|0.44444\n221152|0.36111\n221153|0.76389\n221154|0.083333\n221155|0.19444\n221156|0.38889\n221157|0.26389\n221158|0.5\n221159|0.73611\n221160|0.31944\n221161|0\n221162|0.36111\n221163|0\n221164|0.73611\n221165|0.16667\n221166|0.069444\n221167|0.18056\n221168|0.40278\n221169|0.5\n221170|0.5\n221171|0.55556\n221172|0.19444\n221173|0.47222\n221174|0.41667\n221175|0.30556\n221176|0.83333\n221177|0.55556\n221178|0.5\n221179|0.51389\n221180|0.66667\n221181|0.81944\n221182|0.59722\n221183|0.90278\n221184|0.76389\n221185|0.5\n221186|0.66667\n221187|0.34722\n221188|0.33333\n221189|0.75\n221190|0.68056\n221191|0.90278\n221192|0.84722\n221193|0.26389\n221194|0.36111\n221195|0.88889\n221196|0.19444\n221197|0.5\n221198|0.69444\n221199|0.29167\n221200|0.72222\n221201|0.75\n221202|0.5\n221203|0.5\n221204|0.30556\n221205|0.75\n221206|0.80556\n221207|0.81944\n221208|0.58333\n221209|0.23611\n221210|0.29167\n221211|0.86111\n221212|0.22222\n221213|0.79167\n221214|0.79167\n221215|0.38889\n221216|0.86111\n221217|0.51389\n221218|0.5\n221219|0.5\n221220|0.375\n221221|0.94444\n221222|0.75\n221223|0.77778\n221224|0.5\n221225|0.5\n221226|0.94444\n221227|0.15278\n221228|0.79167\n221229|0.81944\n221230|0.38889\n221231|0.40278\n221232|0.83333\n221233|0.16667\n221234|0.16667\n221235|0.98611\n221236|0.5\n221237|0.88889\n221238|0.77778\n221239|0.77778\n221240|0.72222\n221241|0.88889\n221242|0.38889\n221243|0.52778\n221244|0.61111\n221245|0.34722\n221246|0.041667\n221247|0.55556\n221248|0.33333\n221249|0.38889\n221250|0.33333\n221251|0.88889\n221252|0.44444\n221253|0.29167\n221254|0.5\n221255|0.73611\n221256|0.70833\n221257|0.625\n221258|0.70833\n221259|0.58333\n221260|0.55556\n221261|0.5\n221262|0.22222\n221263|0.13889\n221264|0.23611\n221265|0.47222\n221266|0.27778\n221267|0.45833\n221268|0.34722\n221269|0.51389\n221270|0.43056\n221271|0.63889\n221272|0.80556\n221273|0.51389\n221274|0.44444\n221275|0.58333\n221276|0.5\n221277|0.56944\n221278|0.51389\n221279|0.5\n221280|0.5\n221281|0.38889\n221282|0.31944\n221283|0.72222\n221284|0.51389\n221285|0.31944\n221286|0.63889\n221287|0.5\n221288|0.30556\n221289|0.26389\n221290|0.52778\n221291|0.83333\n221292|0.79167\n221293|0.77778\n221294|0.29167\n221295|0.40278\n221296|0.5\n221297|0.5\n221298|0.125\n221299|0.5\n221300|0.375\n221301|0.66667\n221302|0.45833\n221303|0.47222\n221304|0.54167\n221305|0.375\n221306|0.29167\n221307|0.90278\n221308|0.27778\n221309|0.44444\n221310|0.41667\n221311|0.22222\n221312|0.5\n221313|0.69444\n221314|0.38889\n221315|0.56944\n221316|0.45833\n221317|0.73611\n221318|0.61111\n221319|0.5\n221320|0.20833\n221321|0.11111\n221322|0.041667\n221323|0.38889\n221324|0.5\n221325|0.5\n221326|0.5\n221327|0.61111\n221328|0.38889\n221329|0.44444\n221330|0.27778\n221331|0.5\n221332|0.66667\n221333|0.5\n221334|0.31944\n221335|0.33333\n221336|0.5\n221337|0.375\n221338|0.83333\n221339|0.5\n221340|0.38889\n221341|0.30556\n221342|0.36111\n221343|0.47222\n221344|0.5\n221345|0.25\n221346|0.66667\n221347|0.66667\n221348|0.625\n221349|0.77778\n221350|0.72222\n221351|0.34722\n221352|0.97222\n221353|0.875\n221354|0.44444\n221355|0.5\n221356|0.77778\n221357|0.61111\n221358|0.25\n221359|0.55556\n221360|0\n221361|0.73611\n221362|0.66667\n221363|0.68056\n221364|0.25\n221365|0.79167\n221366|0.20833\n221367|0.75\n221368|0.069444\n221369|0.38889\n221370|0.5\n221371|0.77778\n221372|0.44444\n221373|0.22222\n221374|0.5\n221375|0.77778\n221376|0.5\n221377|0.44444\n221378|0.38889\n221379|0.027778\n221380|0.5\n221381|0.33333\n221382|0.84722\n221383|0.5\n221384|0.23611\n221385|0.93056\n221386|0.79167\n221387|0.027778\n221388|0.69444\n221389|0.94444\n221390|0.5\n221391|0.40278\n221392|0.44444\n221393|0.29167\n221394|0.70833\n221395|0.44444\n221396|0.5\n221397|0.041667\n221398|0.51389\n221399|0.5\n221400|0.34722\n221401|0.70833\n221402|0.40278\n221403|0.80556\n221404|0.77778\n221405|0.40278\n221406|0.45833\n221407|0.34722\n221408|0.30556\n221409|0.34722\n221410|0.59722\n221411|0.66667\n221412|0.20833\n221413|0.93056\n221414|0.93056\n221415|0.77778\n221416|0.083333\n221417|0.72222\n221418|0.44444\n221419|0.13889\n221420|0.47222\n221421|0.40278\n221422|0.29167\n221423|0.61111\n221424|0.18056\n221425|0.22222\n221426|0.25\n221427|0.22222\n221428|0\n221429|0.73611\n221430|0.27778\n221431|0.63889\n221432|0.43056\n221433|0.80556\n221434|0.5\n221435|0.44444\n221436|0.22222\n221437|0.5\n221438|0.083333\n221439|0.5\n221440|0.20833\n221441|0.79167\n221442|0.56944\n221443|0.48611\n221444|0.56944\n221445|0.27778\n221446|0.22222\n221447|0.29167\n221448|0.66667\n221449|0.22222\n221450|0.36111\n221451|0.27778\n221452|0.43056\n221453|0.5\n221454|0.47222\n221455|0.68056\n221456|0.22222\n221457|0.5\n221458|0.68056\n221459|0.69444\n221460|0.54167\n221461|0.59722\n221462|0.55556\n221463|0.5\n221464|0.5\n221465|0.055556\n221466|0.027778\n221467|0.27778\n221468|0.68056\n221469|0.5\n221470|0.41667\n221471|0.81944\n221472|0.29167\n221473|0.47222\n221474|0.18056\n221475|0.52778\n221476|0.38889\n221477|0.56944\n221478|0.88889\n221479|0.45833\n221480|0.73611\n221481|0.083333\n221482|0.44444\n221483|0.48611\n221484|0.47222\n221485|0.54167\n221486|0.51389\n221487|0.45833\n221488|0.75\n221489|0.33333\n221490|0.43056\n221491|0.44444\n221492|0.5\n221493|0.38889\n221494|0.90278\n221495|0.5\n221496|0.055556\n221497|0.69444\n221498|0.5\n221499|0.38889\n221500|0.33333\n221501|0.5\n221502|0.44444\n221503|0.52778\n221504|0.33333\n221505|0.56944\n221506|0.63889\n221507|0.33333\n221508|0.26389\n221509|0.80556\n221510|0.58333\n221511|0.65278\n221512|0.61111\n221513|0.76389\n221514|0.36111\n221515|0.63889\n221516|0.52778\n221517|0.54167\n221518|0.5\n221519|0.79167\n221520|0.34722\n221521|0.68056\n221522|0.44444\n221523|0.19444\n221524|0.29167\n221525|0.41667\n221526|0.18056\n221527|0.29167\n221528|0.81944\n221529|0.58333\n221530|0.66667\n221531|0.72222\n221532|0.68056\n221533|0.34722\n221534|0.5\n221535|0.44444\n221536|0.48611\n221537|0.15278\n221538|0.54167\n221539|0.77778\n221540|0.13889\n221541|0.5\n221542|0.47222\n221543|0.5\n221544|0.5\n221545|0.375\n221546|0.38889\n221547|0.41667\n221548|0.80556\n221549|0.95833\n221550|0.55556\n221551|0.79167\n221552|0.34722\n221553|0.23611\n221554|0.36111\n221555|0.38889\n221556|0.41667\n221557|0.52778\n221558|0.56944\n221559|0.5\n221560|0.23611\n221561|0.73611\n221562|0.76389\n221563|0.33333\n221564|0.55556\n221565|0.26389\n221566|0.61111\n221567|0.52778\n221568|0.22222\n221569|0.29167\n221570|0.56944\n221571|0.36111\n221572|0.66667\n221573|0.63889\n221574|0.81944\n221575|0.31944\n221576|0.38889\n221577|0.30556\n221578|0.5\n221579|0.59722\n221580|0.80556\n221581|0.5\n221582|0.41667\n221583|0.16667\n221584|0.47222\n221585|0.13889\n221586|0.29167\n221587|0.69444\n221588|0.48611\n221589|0.41667\n221590|0.88889\n221591|0.5\n221592|0.027778\n221593|0.86111\n221594|0.5\n221595|0.75\n221596|0.84722\n221597|0.66667\n221598|0.083333\n221599|0.45833\n221600|0.75\n221601|0.38889\n221602|0.58333\n221603|0.31944\n221604|0.26389\n221605|0.58333\n221606|0.38889\n221607|0.55556\n221608|0.27778\n221609|0.79167\n221610|0.5\n221611|0.69444\n221612|0.83333\n221613|0.13889\n221614|0.66667\n221615|0.34722\n221616|0.48611\n221617|0.54167\n221618|0.75\n221619|0.58333\n221620|0.69444\n221621|0.083333\n221622|0.66667\n221623|0.34722\n221624|0.22222\n221625|0.16667\n221626|0.88889\n221627|0.81944\n221628|0.5\n221629|0.625\n221630|0.40278\n221631|0.27778\n221632|0.66667\n221633|0.63889\n221634|0.80556\n221635|0.15278\n221636|0.86111\n221637|0.79167\n221638|0.38889\n221639|0.45833\n221640|0.16667\n221641|0.11111\n221642|0.75\n221643|0.88889\n221644|0.069444\n221645|0.38889\n221646|0.19444\n221647|0.40278\n221648|0.15278\n221649|0.76389\n221650|0.58333\n221651|0.5\n221652|0.55556\n221653|0.80556\n221654|0.5\n221655|0.5\n221656|0.75\n221657|0.38889\n221658|0.65278\n221659|0.5\n221660|0.69444\n221661|0.30556\n221662|0.5\n221663|0.31944\n221664|0.56944\n221665|0.23611\n221666|0.66667\n221667|0.33333\n221668|0.54167\n221669|0.56944\n221670|0.5\n221671|0.38889\n221672|0.48611\n221673|0.45833\n221674|0.83333\n221675|0.86111\n221676|0.23611\n221677|0.80556\n221678|0.23611\n221679|0.45833\n221680|0.31944\n221681|0.61111\n221682|0.51389\n221683|0.73611\n221684|0.125\n221685|0.77778\n221686|0.76389\n221687|0.36111\n221688|0.80556\n221689|0.72222\n221690|0.66667\n221691|0.59722\n221692|0.31944\n221693|0.27778\n221694|0.51389\n221695|0.90278\n221696|0.5\n221697|0.75\n221698|0.65278\n221699|0.66667\n221700|0.61111\n221701|0.41667\n221702|0.41667\n221703|0.22222\n221704|0.375\n221705|0.33333\n221706|0.54167\n221707|0.375\n221708|0.38889\n221709|0.69444\n221710|0.36111\n221711|0.125\n221712|0.38889\n221713|0.36111\n221714|0.69444\n221715|0.5\n221716|0.76389\n221717|0.23611\n221718|0.55556\n221719|0.5\n221720|0.16667\n221721|0.5\n221722|0.70833\n221723|0.40278\n221724|0.61111\n221725|0.23611\n221726|0.90278\n221727|0.76389\n221728|0.59722\n221729|0.55556\n221730|0.58333\n221731|0.68056\n221732|0.31944\n221733|0.20833\n221734|0.22222\n221735|0.5\n221736|0.5\n221737|0.19444\n221738|0.45833\n221739|0.61111\n221740|0.069444\n221741|0.81944\n221742|0.20833\n221743|0.52778\n221744|0.47222\n221745|0.63889\n221746|0.69444\n221747|0.45833\n221748|0.61111\n221749|0.88889\n221750|0.27778\n221751|0.5\n221752|0.22222\n221753|0.5\n221754|0.22222\n221755|0.47222\n221756|0.5\n221757|0.63889\n221758|0.36111\n221759|0.33333\n221760|0.72222\n221761|0.41667\n221762|0.33333\n221763|0.5\n221764|0.55556\n221765|0.58333\n221766|0.22222\n221767|0.84722\n221768|0.27778\n221769|0.26389\n221770|0.30556\n221771|0.11111\n221772|0.5\n221773|0.25\n221774|0.31944\n221775|0.77778\n221776|0.22222\n221777|0.30556\n221778|0.69444\n221779|0.75\n221780|0.11111\n221781|0.13889\n221782|0.91667\n221783|0.18056\n221784|0.26389\n221785|0.44444\n221786|0.31944\n221787|0.13889\n221788|0.33333\n221789|0.16667\n221790|0.86111\n221791|0.91667\n221792|0.79167\n221793|0.23611\n221794|0.22222\n221795|0.18056\n221796|0.69444\n221797|0.65278\n221798|0.54167\n221799|0.23611\n221800|0.16667\n221801|0.44444\n221802|0.18056\n221803|0.33333\n221804|0.52778\n221805|0.16667\n221806|0.44444\n221807|0.5\n221808|0.26389\n221809|0.375\n221810|0.069444\n221811|0.23611\n221812|0.125\n221813|0.75\n221814|0.93056\n221815|0.5\n221816|0.54167\n221817|0.45833\n221818|0.68056\n221819|0.72222\n221820|0.13889\n221821|0.44444\n221822|0.69444\n221823|0.30556\n221824|0.25\n221825|0.19444\n221826|0.58333\n221827|0.055556\n221828|0.055556\n221829|0.069444\n221830|0.73611\n221831|0.11111\n221832|0.44444\n221833|0.375\n221834|0.73611\n221835|0.27778\n221836|0.65278\n221837|0.63889\n221838|0.68056\n221839|0.20833\n221840|0.83333\n221841|0.48611\n221842|0.27778\n221843|0.55556\n221844|0.30556\n221845|0.54167\n221846|1\n221847|0.43056\n221848|0.23611\n221849|0.097222\n221850|0.055556\n221851|0.5\n221852|0.875\n221853|0.63889\n221854|0.027778\n221855|0.5\n221856|0.5\n221857|0.52778\n221858|0.5\n221859|0.33333\n221860|0.29167\n221861|0.66667\n221862|0.5\n221863|0.34722\n221864|0.5\n221865|0.5\n221866|0.34722\n221867|0.40278\n221868|0.5\n221869|0.5\n221870|0.5\n221871|0.45833\n221872|0.5\n221873|0.5\n221874|0.5\n221875|0.51389\n221876|0.5\n221877|0.5\n221878|0.5\n221879|0.5\n221880|0.5\n221881|0.5\n221882|0.5\n221883|0.5\n221884|0.5\n221885|0.5\n221886|0.55556\n221887|0.5\n221888|0.55556\n221889|0.5\n221890|0.5\n221891|0.51389\n221892|0.41667\n221893|0.5\n221894|0.5\n221895|0.5\n221896|0.55556\n221897|0.58333\n221898|0.5\n221899|0.55556\n221900|0.41667\n221901|0.33333\n221902|0.26389\n221903|0.43056\n221904|0.58333\n221905|0.48611\n221906|0.44444\n221907|0.041667\n221908|0.5\n221909|0.5\n221910|0.5\n221911|0.44444\n221912|0.33333\n221913|0.13889\n221914|0.44444\n221915|0.013889\n221916|0.51389\n221917|0.23611\n221918|0.25\n221919|0.47222\n221920|0.61111\n221921|0.5\n221922|0.27778\n221923|0.15278\n221924|0.55556\n221925|0.5\n221926|0.375\n221927|0.5\n221928|0.55556\n221929|0.375\n221930|0.069444\n221931|0.19444\n221932|0.45833\n221933|0.5\n221934|0.52778\n221935|0.52778\n221936|0.5\n221937|0.25\n221938|0.5\n221939|0.44444\n221940|0.59722\n221941|0.38194\n221942|0.20833\n221943|0.94444\n221944|0.91667\n221945|0.069444\n221946|0.23611\n221947|0.84722\n221948|0.80556\n221949|0.375\n221950|0.48611\n221951|0.5\n221952|0.5\n221953|0.19444\n221954|0.18056\n221955|0.18056\n221956|0.26389\n221957|0.27778\n221958|0.5\n221959|0.11111\n221960|0.26389\n221961|0.5\n221962|0.81944\n221963|0.79167\n221964|0.72222\n221965|0.72222\n221966|0.72222\n221967|0.61111\n221968|0.72222\n221969|0.86111\n221970|0.72222\n221971|0.77778\n221972|0.5\n221973|0.5\n221974|0.5\n221975|0.33333\n221976|0.51389\n221977|0.30556\n221978|0.80556\n221979|0.83333\n221980|0.26389\n221981|0.5\n221982|0.34722\n221983|0.26389\n221984|0.16667\n221985|0.88889\n221986|0.5\n221987|0.93056\n221988|0.55556\n221989|0.16667\n221990|0.88889\n221991|0.84722\n221992|0.66667\n221993|0.80556\n221994|0.83333\n221995|0.83333\n221996|0.81944\n221997|0.75\n221998|0.63889\n221999|0.45833\n222000|0.55556\n222001|0.70833\n222002|0.083333\n222003|0.77778\n222004|0.83333\n222005|0.70833\n222006|0.73611\n222007|0.77778\n222008|0.84722\n222009|0.73611\n222010|0.79167\n222011|0.56944\n222012|0.80556\n222013|0.90278\n222014|0.5\n222015|0.69444\n222016|0.72222\n222017|0.86111\n222018|0.44444\n222019|0.54167\n222020|0.38889\n222021|0.11111\n222022|0.22222\n222023|0.90278\n222024|0.83333\n222025|0.88889\n222026|0.875\n222027|0.97222\n222028|0.88889\n222029|0.94444\n222030|0.91667\n222031|0.875\n222032|0.19444\n222033|0.125\n222034|0.15278\n222035|0.055556\n222036|0.18056\n222037|0.33333\n222038|0.66667\n222039|0.5\n222040|0.76389\n222041|0.61111\n222042|0.59722\n222043|0.58333\n222044|0.20833\n222045|0.19444\n222046|0.125\n222047|0.11111\n222048|0.027778\n222049|0.16667\n222050|0.83333\n222051|0.63889\n222052|0.55556\n222053|0.76389\n222054|0.58333\n222055|0.41667\n222056|0.59722\n222057|0.77778\n222058|0.70833\n222059|0.069444\n222060|0.68056\n222061|0.26389\n222062|0.58333\n222063|0.77778\n222064|0.30556\n222065|0.20833\n222066|0.31944\n222067|0.83333\n222068|0.81944\n222069|0.44444\n222070|0.48611\n222071|0.11111\n222072|0.22222\n222073|0.69444\n222074|0.18056\n222075|0.65278\n222076|0.75\n222077|0.90278\n222078|0.5\n222079|0.013889\n222080|0.055556\n222081|0.72222\n222082|0.69444\n222083|0.76389\n222084|0.83333\n222085|0.59722\n222086|0.61111\n222087|0.70833\n222088|0.61111\n222089|0.65278\n222090|0.52778\n222091|0.22222\n222092|0.63889\n222093|0.80556\n222094|0.43056\n222095|0.33333\n222096|0.76389\n222097|0.75\n222098|0.75\n222099|0.083333\n222100|0.041667\n222101|0.013889\n222102|0.013889\n222103|0.80556\n222104|0.56944\n222105|0.44444\n222106|0.66667\n222107|0.52778\n222108|0.69444\n222109|0.88889\n222110|0.11111\n222111|0.61111\n222112|0.73611\n222113|0.86111\n222114|0.81944\n222115|0.97222\n222116|0.38889\n222117|0.31944\n222118|0.19444\n222119|0.75\n222120|0.63889\n222121|0.79167\n222122|0.76389\n222123|0.83333\n222124|0.36111\n222125|0.88889\n222126|0.625\n222127|0.72222\n222128|0.30556\n222129|0.44444\n222130|0.47222\n222131|0.041667\n222132|0.59722\n222133|0.63889\n222134|0.79167\n222135|0.5\n222136|0.5\n222137|0.5\n222138|0.5\n222139|0.5\n222140|0.65278\n222141|0.5\n222142|0.48611\n222143|0.55556\n222144|0.375\n222145|0.5\n222146|0.5\n222147|0.5\n222148|0.5\n222149|0.5\n222150|0.5\n222151|0.5\n222152|0.375\n222153|0.56944\n222154|0.45833\n222155|0.5\n222156|0.5\n222157|0.20833\n222158|0.38889\n222159|0.55556\n222160|0.5\n222161|0.625\n222162|0.93056\n222163|0.44444\n222164|0.59722\n222165|0.43056\n222166|0.55556\n222167|0.625\n222168|0.29167\n222169|0.63889\n222170|0.26389\n222171|0.55556\n222172|0.81944\n222173|0.30556\n222174|0.45833\n222175|0.26389\n222176|0.069444\n222177|0.23611\n222178|0.083333\n222179|0.66667\n222180|0.52778\n222181|0.5\n222182|0.18056\n222183|0.5\n222184|0.5\n222185|0.38889\n222186|0.5\n222187|0.41667\n222188|0.19444\n222189|0.22222\n222190|0.55556\n222191|0.65278\n222192|0.5\n222193|0.5\n222194|0.88889\n222195|0.41667\n222196|0.22222\n222197|0.5\n222198|0.18056\n222199|0.22222\n222200|0.27778\n222201|0.73611\n222202|0.097222\n222203|0.5\n222204|0.16667\n222205|0.13889\n222206|0.5\n222207|0.44444\n222208|0.22222\n222209|0.22222\n222210|0.19444\n222211|0.16667\n222212|0.19444\n222213|0.36111\n222214|0.44444\n222215|0.52778\n222216|0.13889\n222217|0.5\n222218|0.27778\n222219|0.5\n222220|0.61111\n222221|0.5\n222222|0.47222\n222223|0.30556\n222224|0.44444\n222225|0.18056\n222226|0.36111\n222227|0.66667\n222228|0.55556\n222229|0.5\n222230|0.61111\n222231|0.59722\n222232|0.45833\n222233|0.5\n222234|0.58333\n222235|0.5\n222236|0.55556\n222237|0.5\n222238|0.88889\n222239|0.27778\n222240|0.27778\n222241|0.23611\n222242|0.27778\n222243|0.20833\n222244|0.097222\n222245|0.5\n222246|0.5\n222247|0.13889\n222248|0.55556\n222249|0.65278\n222250|0.23611\n222251|0.20833\n222252|0.61111\n222253|0.55556\n222254|0.52778\n222255|0.66667\n222256|0.61111\n222257|0.25\n222258|0.45833\n222259|0.20833\n222260|0.88889\n222261|0.75\n222262|0.58333\n222263|0.63889\n222264|0.55556\n222265|0.38889\n222266|0.69444\n222267|0.43056\n222268|0.5\n222269|0.79167\n222270|0.69444\n222271|0.29167\n222272|0.61111\n222273|0.069444\n222274|0.44444\n222275|0.5\n222276|0.5\n222277|0.66667\n222278|0.55556\n222279|0.22222\n222280|0.27778\n222281|0.18056\n222282|0.11111\n222283|0.70833\n222284|0.61111\n222285|0.81944\n222286|0.68056\n222287|0.51389\n222288|0.56944\n222289|0.84722\n222290|0.77778\n222291|0.65278\n222292|0.93056\n222293|0.73611\n222294|0.83333\n222295|0.75\n222296|0.93056\n222297|0.83333\n222298|0.5\n222299|0.40278\n222300|0.36111\n222301|0.90278\n222302|0.90278\n222303|0.80556\n222304|0.13889\n222305|0.84722\n222306|0.875\n222307|0.72222\n222308|0.61111\n222309|0.93056\n222310|0.5\n222311|0.20833\n222312|0.47222\n222313|0.30556\n222314|0.5\n222315|0.22222\n222316|0.34722\n222317|0.16667\n222318|0.30556\n222319|0.94444\n222320|0.75\n222321|0.19444\n222322|0.16667\n222323|0.083333\n222324|0.11111\n222325|0.18056\n222326|0.16667\n222327|0.33333\n222328|0.26389\n222329|0.083333\n222330|0.13889\n222331|0.20833\n222332|0.83333\n222333|0.90278\n222334|0.54167\n222335|0.48611\n222336|0.48611\n222337|0.5\n222338|0.88889\n222339|0.77778\n222340|0.77778\n222341|0.25\n222342|0.55556\n222343|0.43056\n222344|0.66667\n222345|0.72222\n222346|0.47222\n222347|0.38889\n222348|0.27778\n222349|0.47222\n222350|0.45833\n222351|0.41667\n222352|0.66667\n222353|0.33333\n222354|0.76389\n222355|0.79167\n222356|0.5\n222357|0.61111\n222358|0.76389\n222359|0.26389\n222360|0.34722\n222361|0.27778\n222362|0.16667\n222363|0.055556\n222364|0.16667\n222365|0.61111\n222366|0.77778\n222367|0.77778\n222368|0.79167\n222369|0.29167\n222370|0.36111\n222371|0.93056\n222372|0.70833\n222373|0.5\n222374|0.26389\n222375|0.36111\n222376|0.65278\n222377|0.41667\n222378|0.26389\n222379|0.65278\n222380|0.66667\n222381|0.72222\n222382|0.63889\n222383|0.63889\n222384|0.70833\n222385|0.16667\n222386|0.73611\n222387|0.5\n222388|0.5\n222389|0.27778\n222390|0.23611\n222391|0.23611\n222392|0.77778\n222393|0.76389\n222394|0.72222\n222395|0.5\n222396|0.11111\n222397|0.43056\n222398|0.5\n222399|0.5\n222400|0.61111\n222401|0.55556\n222402|0.51389\n222403|0.33333\n222404|0.33333\n222405|0.83333\n222406|0.52778\n222407|0.41667\n222408|0.19444\n222409|0.27778\n222410|0.51389\n222411|0.5\n222412|0.41667\n222413|0.22222\n222414|0.5\n222415|0.61111\n222416|0.45833\n222417|0.44444\n222418|0.54167\n222419|0.59722\n222420|0.47222\n222421|0.29167\n222422|0.15278\n222423|0.5\n222424|0.5\n222425|0.5\n222426|0.90278\n222427|0.5\n222428|0.55556\n222429|0.36111\n222430|0.48611\n222431|0.52778\n222432|0.875\n222433|0.44444\n222434|0.16667\n222435|0.5\n222436|0.90278\n222437|0.90278\n222438|0.79167\n222439|0.26389\n222440|0.61111\n222441|0.81944\n222442|0.72222\n222443|0.36111\n222444|0.63889\n222445|0.875\n222446|0.5\n222447|0.44444\n222448|0.33333\n222449|0.52778\n222450|0.72222\n222451|0.5\n222452|0.27778\n222453|0.41667\n222454|0.63889\n222455|0.77778\n222456|0.23611\n222457|0.5\n222458|0.55556\n222459|0.69444\n222460|0.34722\n222461|0.18056\n222462|0.75\n222463|0.55556\n222464|0.63889\n222465|0.69444\n222466|0.88889\n222467|0.65278\n222468|0.5\n222469|0.56944\n222470|0.5\n222471|0.70833\n222472|0.23611\n222473|0.069444\n222474|0.59722\n222475|0.80556\n222476|0.79167\n222477|0.45833\n222478|0.5\n222479|0.16667\n222480|0.20833\n222481|0.66667\n222482|0.72222\n222483|0.61111\n222484|0.48611\n222485|0.26389\n222486|0.15278\n222487|0.45833\n222488|0.75\n222489|0.16667\n222490|0.73611\n222491|0.5\n222492|0.29167\n222493|0.66667\n222494|0.69444\n222495|0.61111\n222496|0.5\n222497|0.097222\n222498|0.51389\n222499|0.5\n222500|0.25\n222501|0.44444\n222502|0.55556\n222503|0.80556\n222504|0.56944\n222505|0.51389\n222506|0.23611\n222507|0.70833\n222508|0.77778\n222509|0.5\n222510|0.5\n222511|0.5\n222512|0.75\n222513|0.5\n222514|0.55556\n222515|0.23611\n222516|0.63889\n222517|0.34722\n222518|0.5\n222519|0.5\n222520|0.5\n222521|0.73611\n222522|0.41667\n222523|0.34722\n222524|0.72222\n222525|0.55556\n222526|0.5\n222527|0.15278\n222528|0.30556\n222529|0.59722\n222530|0.48611\n222531|0.125\n222532|0.20833\n222533|0.097222\n222534|0.54167\n222535|0.5\n222536|0.18056\n222537|0.5\n222538|0.5\n222539|0.16667\n222540|0.22222\n222541|0.38889\n222542|0.31944\n222543|0.22222\n222544|0.125\n222545|0.52778\n222546|0.55556\n222547|0.5\n222548|0.5\n222549|0.45833\n222550|0.5\n222551|0.5\n222552|0.5\n222553|0.51389\n222554|0.75\n222555|0.63889\n222556|0.88889\n222557|0.91667\n222558|0.41667\n222559|0.43056\n222560|0.25\n222561|0.93056\n222562|0.5\n222563|0.55556\n222564|0.27778\n222565|0.5\n222566|0.5\n222567|0.5\n222568|0.375\n222569|0.38889\n222570|0.18056\n222571|0.11111\n222572|0.69444\n222573|0.23611\n222574|0.43056\n222575|0.45833\n222576|0.5\n222577|0.55556\n222578|0.40278\n222579|0.375\n222580|0.51389\n222581|0.73611\n222582|0.72222\n222583|0.5\n222584|0.44444\n222585|0.81944\n222586|0.72222\n222587|0.52778\n222588|0.625\n222589|0.5\n222590|0.5\n222591|0.5\n222592|0.5\n222593|0.5\n222594|0.5\n222595|0.65278\n222596|0.63889\n222597|0.77778\n222598|0.90278\n222599|0.66667\n222600|0.63889\n222601|0.69444\n222602|0.61111\n222603|0.69444\n222604|0.59722\n222605|0.625\n222606|0.88889\n222607|0.86111\n222608|0.61111\n222609|0.84722\n222610|0.5\n222611|0.5\n222612|0.5\n222613|0.34722\n222614|0.77778\n222615|0.5\n222616|0.5\n222617|0.5\n222618|0.5\n222619|0.56944\n222620|0.027778\n222621|0.069444\n222622|0.22222\n222623|0.5\n222624|0.54167\n222625|0.81944\n222626|0.65278\n222627|0.38889\n222628|0.55556\n222629|0.27778\n222630|0.16667\n222631|0.19444\n222632|0.56944\n222633|0.375\n222634|0.29167\n222635|0.40278\n222636|0.45833\n222637|0.29167\n222638|0.79167\n222639|0.83333\n222640|0.22222\n222641|0.27778\n222642|0.38889\n222643|0.69444\n222644|0.97222\n222645|0.25\n222646|0.22222\n222647|0.52778\n222648|0.72222\n222649|0.875\n222650|0.54167\n222651|0.77778\n222652|0.65278\n222653|0.48611\n222654|0.16667\n222655|0.26389\n222656|0.125\n222657|0.20833\n222658|0.36111\n222659|0.77778\n222660|0.63889\n222661|0.80556\n222662|0.59722\n222663|0.5\n222664|0.48611\n222665|0.625\n222666|0.5\n222667|0.5\n222668|0.5\n222669|0.68056\n222670|0.15278\n222671|0.5\n222672|0.55556\n222673|0.45833\n222674|0.5\n222675|0.93056\n222676|0.91667\n222677|0.54167\n222678|0.36111\n222679|0.23611\n222680|0.18056\n222681|0.5\n222682|0.48611\n222683|0.55556\n222684|0.083333\n222685|0.5\n222686|0.5\n222687|0.5\n222688|0.51389\n222689|0.5\n222690|0.77778\n222691|0.5\n222692|0.5\n222693|0.56944\n222694|0.45833\n222695|0.5\n222696|0.5\n222697|0.5\n222698|0.5\n222699|0.55556\n222700|0.5\n222701|0.43056\n222702|0.55556\n222703|0.083333\n222704|0.13889\n222705|0.27778\n222706|0.41667\n222707|0.45833\n222708|0.22222\n222709|0.25\n222710|0.19444\n222711|0.41667\n222712|0.23611\n222713|0.41667\n222714|0.33333\n222715|0.55556\n222716|0.47222\n222717|0.55556\n222718|0.54167\n222719|0.52778\n222720|0.5\n222721|0.23611\n222722|0.38889\n222723|0.79167\n222724|0.91667\n222725|0.75\n222726|0.30556\n222727|0.31944\n222728|0.66667\n222729|0.11111\n222730|0.875\n222731|0.40278\n222732|0.47222\n222733|0.5\n222734|0.94444\n222735|0.27778\n222736|0.43056\n222737|0.33333\n222738|0.375\n222739|0.61111\n222740|0.5\n222741|0.73611\n222742|0.36111\n222743|0.33333\n222744|0.30556\n222745|0.22222\n222746|0.73611\n222747|0.55556\n222748|0.38889\n222749|0\n222750|0.40278\n222751|0.22222\n222752|0.15278\n222753|0.47222\n222754|0.47222\n222755|0.48611\n222756|0.72222\n222757|0.83333\n222758|0.86111\n222759|0.33333\n222760|0.73611\n222761|0.68056\n222762|0.125\n222763|0.30556\n222764|0.63889\n222765|0.18056\n222766|0.72222\n222767|0.22222\n222768|0.70833\n222769|0.75\n222770|0.36111\n222771|0.29167\n222772|0.59722\n222773|0.75\n222774|0.375\n222775|0.65278\n222776|0.55556\n222777|0.61111\n222778|0.27778\n222779|0.63889\n222780|0.33333\n222781|0.43056\n222782|0.26389\n222783|0.097222\n222784|0.27778\n222785|0.23611\n222786|0.83333\n222787|0.63889\n222788|0.38889\n222789|0.48611\n222790|0.63889\n222791|0.70833\n222792|0.625\n222793|0.5\n222794|0.5\n222795|0.20833\n222796|0.097222\n222797|0.26389\n222798|0.31944\n222799|0.375\n222800|0.31944\n222801|0.375\n222802|0.70833\n222803|0.19444\n222804|0.72222\n222805|0.26389\n222806|0.22222\n222807|0.40278\n222808|0.33333\n222809|0.16667\n222810|0.22222\n222811|0.19444\n222812|0.84722\n222813|0.83333\n222814|0.30556\n222815|0.19444\n222816|0.91667\n222817|0.23611\n222818|0.29167\n222819|0.23611\n222820|0.61111\n222821|0.31944\n222822|0.097222\n222823|0.30556\n222824|0.5\n222825|0.16667\n222826|0.29167\n222827|0.72222\n222828|0.16667\n222829|0.68056\n222830|0.29167\n222831|0.90278\n222832|0.54167\n222833|0.54167\n222834|0.38889\n222835|0.36111\n222836|0.33333\n222837|0.86111\n222838|0.51389\n222839|0.84722\n222840|0.45833\n222841|0.55556\n222842|0.5\n222843|0.33333\n222844|0.5\n222845|0.55556\n222846|0.5\n222847|0.77778\n222848|0.79167\n222849|0.069444\n222850|0.40278\n222851|0.48611\n222852|0.79167\n222853|0.5\n222854|0.47222\n222855|0.34722\n222856|0.66667\n222857|0.5\n222858|0.5\n222859|0.88889\n222860|0.40278\n222861|0.5\n222862|0.5\n222863|0.5\n222864|0.55556\n222865|0.5\n222866|0.83333\n222867|0.5\n222868|0.5\n222869|0.5\n222870|0.5\n222871|0.59722\n222872|0.51389\n222873|0.72222\n222874|0.52778\n222875|0.55556\n222876|0.56944\n222877|0.41667\n222878|0.55556\n222879|0.5\n222880|0.68056\n222881|0.47222\n222882|0.43056\n222883|0.5\n222884|0.5\n222885|0.5\n222886|0.5\n222887|0.76389\n222888|0.5\n222889|0.5\n222890|0.55556\n222891|0.51389\n222892|0.5\n222893|0.44444\n222894|0.56944\n222895|0.20833\n222896|0.16667\n222897|0.54167\n222898|0.45833\n222899|0.45833\n222900|0.55556\n222901|0.75\n222902|0.5\n222903|0.80556\n222904|0.75\n222905|0.86111\n222906|0.66667\n222907|0.5\n222908|0.56944\n222909|0.5\n222910|0.54167\n222911|0.5\n222912|0.83333\n222913|0.5\n222914|0.44444\n222915|0.98611\n222916|0.5\n222917|0.5\n222918|0.5\n222919|0.48611\n222920|0.5\n222921|0.36111\n222922|0.875\n222923|0.47222\n222924|0.69444\n222925|0.5\n222926|0.45833\n222927|0.5\n222928|0.5\n222929|0.5\n222930|0.5\n222931|0.59722\n222932|0.61111\n222933|0.5\n222934|0.5\n222935|0.36111\n222936|0.48611\n222937|0.23611\n222938|0.5\n222939|0.33333\n222940|0.79167\n222941|0.59722\n222942|0.66667\n222943|0.52778\n222944|0.47222\n222945|0.5\n222946|0.5\n222947|0.5\n222948|0.5\n222949|0.5\n222950|0.875\n222951|0.65278\n222952|0.11111\n222953|0.16667\n222954|0.41667\n222955|0.55556\n222956|0.27778\n222957|0.5\n222958|0.31944\n222959|0.43056\n222960|0.26389\n222961|0.56944\n222962|0.34722\n222963|0.19444\n222964|0.23611\n222965|0.5\n222966|0.36111\n222967|0.55556\n222968|0.5\n222969|0.51389\n222970|0.45833\n222971|0.26389\n222972|0.25\n222973|0.5\n222974|0.5\n222975|0.5\n222976|0.5\n222977|0.5\n222978|0.44444\n222979|0.22222\n222980|0.45833\n222981|0.72222\n222982|0.83333\n222983|0.86111\n222984|0.41667\n222985|0.5\n222986|0.76389\n222987|0.83333\n222988|0.5\n222989|0.44444\n222990|0.40278\n222991|0.055556\n222992|0.75\n222993|0.94444\n222994|0.5\n222995|0.5\n222996|0.90278\n222997|0.875\n222998|1\n222999|1\n223000|0.63889\n223001|0.77778\n223002|0.66667\n223003|0.55556\n223004|0.80556\n223005|0.51389\n223006|0.5\n223007|0.5\n223008|0.5\n223009|0.5\n223010|0.80556\n223011|0.41667\n223012|0.20833\n223013|0.041667\n223014|0.65278\n223015|0.81944\n223016|0.88889\n223017|0.22222\n223018|0.13889\n223019|0.375\n223020|0.5\n223021|0.375\n223022|0.36111\n223023|0.33333\n223024|0.45833\n223025|0.5\n223026|0.5\n223027|0.5\n223028|0.11111\n223029|0.13889\n223030|0.55556\n223031|0.5\n223032|0.40278\n223033|0.47222\n223034|0.54167\n223035|0.11111\n223036|0.31944\n223037|0.33333\n223038|0.51389\n223039|0.56944\n223040|0.48611\n223041|0.5\n223042|0.5\n223043|0.5\n223044|0.5\n223045|0.52778\n223046|0.5\n223047|0.5\n223048|0.48611\n223049|0.5\n223050|0.5\n223051|0.47222\n223052|0.38889\n223053|0.5\n223054|0.5\n223055|0.5\n223056|0.5\n223057|0.47222\n223058|0.81944\n223059|0.52778\n223060|0.38889\n223061|0.5\n223062|0.5\n223063|0.5\n223064|0.40278\n223065|0.375\n223066|0.5\n223067|0.47222\n223068|0.47222\n223069|0.88889\n223070|0.5\n223071|0.5\n223072|0.5\n223073|0.5\n223074|0.79167\n223075|0.33333\n223076|0.5\n223077|0.5\n223078|0.5\n223079|0.61111\n223080|0.29167\n223081|0.41667\n223082|0.65278\n223083|0.51389\n223084|0.41667\n223085|0.31944\n223086|0.069444\n223087|0.15278\n223088|0.44444\n223089|0.36111\n223090|0.29167\n223091|0.22222\n223092|0.055556\n223093|0.875\n223094|0.68056\n223095|0.81944\n223096|0.40278\n223097|0.83333\n223098|0.5\n223099|0.5\n223100|0.5\n223101|0.81944\n223102|0.5\n223103|0.44444\n223104|0.93056\n223105|0.79167\n223106|0.51389\n223107|0.51389\n223108|0.55556\n223109|0.43056\n223110|0.11111\n223111|0.83333\n223112|0.15278\n223113|0.56944\n223114|0.44444\n223115|0.73611\n223116|0.11111\n223117|0.27778\n223118|0.61111\n223119|0.72222\n223120|0.18056\n223121|0.52778\n223122|0.80556\n223123|0.66667\n223124|0.75\n223125|0.36111\n223126|0.81944\n223127|0.5\n223128|0.55556\n223129|0.55556\n223130|0.5\n223131|0.5\n223132|0.5\n223133|0.29167\n223134|0.22222\n223135|0.22222\n223136|0.5\n223137|0.22222\n223138|0.66667\n223139|0.5\n223140|0.33333\n223141|0.56944\n223142|0.72222\n223143|0.41667\n223144|0.5\n223145|0.5\n223146|0.5\n223147|0.63889\n223148|0.73611\n223149|0.93056\n223150|0.5\n223151|0.51389\n223152|0.38889\n223153|0.30556\n223154|0.20833\n223155|0.20833\n223156|0.20833\n223157|0.29167\n223158|0.25\n223159|0.22222\n223160|0.22222\n223161|0.30556\n223162|0.33333\n223163|0.56944\n223164|0.5\n223165|0.30556\n223166|0.48611\n223167|0.58333\n223168|0.48611\n223169|0.33333\n223170|0.38889\n223171|0.55556\n223172|0.5\n223173|0.27778\n223174|0.27778\n223175|0.22222\n223176|0.55556\n223177|0.5\n223178|0.5\n223179|0.5\n223180|0.5\n223181|0.5\n223182|0.5\n223183|0.56944\n223184|0.5\n223185|0.5\n223186|0.5\n223187|0.5\n223188|0.19444\n223189|0.5\n223190|0.54167\n223191|0.5\n223192|0.44444\n223193|0.80556\n223194|0.51389\n223195|0.23611\n223196|0.11111\n223197|0.5\n223198|0.75\n223199|0.625\n223200|0.75\n223201|0.90278\n223202|0.5\n223203|0.5\n223204|0.5\n223205|0.5\n223206|0.5\n223207|0.5\n223208|0.70833\n223209|0.76389\n223210|0.875\n223211|0.88889\n223212|0.55556\n223213|0.55556\n223214|0.15278\n223215|0.63889\n223216|0.52778\n223217|0.5\n223218|0.5\n223219|0.5\n223220|0.5\n223221|0.5\n223222|0.5\n223223|0.5\n223224|0.5\n223225|0.5\n223226|0.58333\n223227|0.38889\n223228|0.44444\n223229|0.33333\n223230|0.5\n223231|0.625\n223232|0.72222\n223233|0.625\n223234|0.91667\n223235|0.44444\n223236|0.27778\n223237|0.5\n223238|0.5\n223239|0.125\n223240|0.29167\n223241|0.36111\n223242|0.15278\n223243|0.56944\n223244|0.55556\n223245|0.48611\n223246|0.69444\n223247|0.70833\n223248|0.52778\n223249|0.81944\n223250|0.30556\n223251|0.56944\n223252|0.51389\n223253|0.5\n223254|0.29167\n223255|0.48611\n223256|0.65278\n223257|0.125\n223258|0.30556\n223259|0.125\n223260|0.5\n223261|0.97222\n223262|0.43056\n223263|0.77778\n223264|0.5\n223265|0.51389\n223266|0.55556\n223267|0.22222\n223268|0.5\n223269|0.27778\n223270|0.26389\n223271|0.16667\n223272|0.19444\n223273|0.083333\n223274|0.44444\n223275|0.5\n223276|0.54167\n223277|0.27778\n223278|0.70833\n223279|0.5\n223280|0.55556\n223281|0.51389\n223282|0.83333\n223283|0.23611\n223284|0.33333\n223285|0.23611\n223286|0.36111\n223287|0.5\n223288|0.013889\n223289|0.38889\n223290|0.27778\n223291|0.22222\n223292|0.38889\n223293|0.27778\n223294|0.83333\n223295|0.69444\n223296|0.61111\n223297|0.81944\n223298|0.93056\n223299|0.91667\n223300|0.77778\n223301|0.84722\n223302|0.16667\n223303|0.11111\n223304|0.59722\n223305|0.58333\n223306|0.56944\n223307|0.47222\n223308|0.875\n223309|0.75\n223310|0.16667\n223311|0.097222\n223312|0.027778\n223313|0.083333\n223314|0.22222\n223315|0.055556\n223316|0.5\n223317|0.56944\n223318|0.31944\n223319|0.25\n223320|0.22222\n223321|0.77778\n223322|0.83333\n223323|0.70833\n223324|0.79167\n223325|0.63889\n223326|0.33333\n223327|0.44444\n223328|0.29167\n223329|0.22222\n223330|0.86111\n223331|0.93056\n223332|0.43056\n223333|0.43056\n223334|0.45833\n223335|0.52778\n223336|0.22222\n223337|0.5\n223338|0.5\n223339|0.5\n223340|0.48611\n223341|0.59722\n223342|0.41667\n223343|0.72222\n223344|0.52778\n223345|0.80556\n223346|0.81944\n223347|0.83333\n223348|0.18056\n223349|0.31944\n223350|0.20833\n223351|0.16667\n223352|0.59722\n223353|0.44444\n223354|0.31944\n223355|0.5\n223356|0.51389\n223357|0.38889\n223358|0.29167\n223359|0.80556\n223360|0.48611\n223361|0.5\n223362|0.5\n223363|0.81944\n223364|0.5\n223365|0.77778\n223366|0.11111\n223367|0.66667\n223368|0.83333\n223369|0.73611\n223370|0.25\n223371|0.86111\n223372|0.47222\n223373|0.23611\n223374|0.20833\n223375|0.083333\n223376|0.31944\n223377|0.55556\n223378|0.47222\n223379|0.19444\n223380|0.23611\n223381|0.5\n223382|0.45833\n223383|0.61111\n223384|0.61111\n223385|0.84722\n223386|0.5\n223387|0.33333\n223388|0.22222\n223389|0.58333\n223390|0.45833\n223391|0.22222\n223392|0.79167\n223393|0.27778\n223394|0.55556\n223395|0.54167\n223396|0.16667\n223397|0.79167\n223398|0.90278\n223399|0.76389\n223400|0.75\n223401|0.41667\n223402|0.33333\n223403|0.75\n223404|0.041667\n223405|0.56944\n223406|0.48611\n223407|0.625\n223408|0.63889\n223409|0.55556\n223410|0.15278\n223411|0.73611\n223412|0.55556\n223413|0.83333\n223414|0.27778\n223415|0.63889\n223416|0.54167\n223417|0.59722\n223418|0.069444\n223419|0.75\n223420|0.81944\n223421|0.70833\n223422|0.55556\n223423|0.5\n223424|0.47222\n223425|0.20833\n223426|0.5\n223427|0.125\n223428|0.52778\n223429|0.44444\n223430|0.33333\n223431|0.5\n223432|0.5\n223433|0.68056\n223434|0.63889\n223435|0.16667\n223436|0.44444\n223437|0.66667\n223438|0.20833\n223439|0.19444\n223440|0.34722\n223441|0.76389\n223442|0.73611\n223443|0.68056\n223444|0.79167\n223445|0.81944\n223446|0.58333\n223447|0.76389\n223448|0.77778\n223449|0.72222\n223450|0.48611\n223451|0.5\n223452|0.5\n223453|0.25\n223454|0.16667\n223455|0.27778\n223456|0.375\n223457|0.51389\n223458|0.52778\n223459|0.81944\n223460|0.33333\n223461|0.80556\n223462|0.5\n223463|0.5\n223464|0.77778\n223465|0.80556\n223466|0.83333\n223467|0.76389\n223468|0.75\n223469|0.375\n223470|0.44444\n223471|0.16667\n223472|0.26389\n223473|0.65278\n223474|0.5\n223475|0.5\n223476|0.5\n223477|0.5\n223478|0.5\n223479|0.5\n223480|0.55556\n223481|0.44444\n223482|0.48611\n223483|0.5\n223484|0.18056\n223485|0.5\n223486|0.5\n223487|0.5\n223488|0.38889\n223489|0.61111\n223490|0.5\n223491|0.5\n223492|0.43056\n223493|0.77778\n223494|0.91667\n223495|0.84722\n223496|0.33333\n223497|0.11111\n223498|0.52778\n223499|0.55556\n223500|0.47222\n223501|0.40278\n223502|0.23611\n223503|0.44444\n223504|0.66667\n223505|0.5\n223506|0.5\n223507|0.91667\n223508|0.84722\n223509|0.61111\n223510|0.72222\n223511|0.27778\n223512|0.90278\n223513|0.68056\n223514|0.75\n223515|0.73611\n223516|0.25\n223517|0.5\n223518|0.88889\n223519|0.5\n223520|0.26389\n223521|0.5\n223522|0.55556\n223523|0.5\n223524|0.5\n223525|0.5\n223526|0.83333\n223527|0.47222\n223528|0.25\n223529|0.47222\n223530|0.15278\n223531|0.36111\n223532|0.66667\n223533|0.86111\n223534|0.88889\n223535|0.61111\n223536|0.86111\n223537|0.5\n223538|0.20833\n223539|0.43056\n223540|0.5\n223541|0.58333\n223542|0.5\n223543|0.5\n223544|0.875\n223545|0.5\n223546|0.80556\n223547|0.51389\n223548|0.5\n223549|0.5\n223550|0.58333\n223551|0.19444\n223552|0.26389\n223553|0.5\n223554|0.33333\n223555|0.5\n223556|0.5\n223557|0.5\n223558|0.5\n223559|0.5\n223560|0.48611\n223561|0.5\n223562|0.51389\n223563|0.13889\n223564|0.80556\n223565|0.75\n223566|0.93056\n223567|1\n223568|0.88889\n223569|0.44444\n223570|0.5\n223571|0.65278\n223572|0.65278\n223573|0.76389\n223574|0.5\n223575|0.77778\n223576|0.70833\n223577|0.70833\n223578|0.61111\n223579|0.70833\n223580|0.18056\n223581|0.38889\n223582|0.34722\n223583|0.27778\n223584|0.26389\n223585|0.5\n223586|0.5\n223587|0.58333\n223588|0.76389\n223589|0.72222\n223590|0.69444\n223591|0.66667\n223592|0.59722\n223593|0.5\n223594|0.36111\n223595|0.33333\n223596|0.26389\n223597|0.11111\n223598|0.23611\n223599|0.75\n223600|0.80556\n223601|0.75\n223602|0.81944\n223603|0.51389\n223604|0.55556\n223605|0.31944\n223606|0.45833\n223607|0.20833\n223608|0.23611\n223609|0.44444\n223610|0.54167\n223611|0.72222\n223612|0.625\n223613|0.80556\n223614|0.55556\n223615|0.27778\n223616|0.86111\n223617|0.41667\n223618|0.55556\n223619|0.625\n223620|0.48611\n223621|0.88889\n223622|0.19444\n223623|0.61111\n223624|0.45833\n223625|0.81944\n223626|0.875\n223627|0.5\n223628|0.40278\n223629|0.5\n223630|0.5\n223631|0.41667\n223632|0.13889\n223633|0.23611\n223634|0.5\n223635|0.58333\n223636|0.81944\n223637|0.375\n223638|0.5\n223639|0.65278\n223640|0.5\n223641|0.30556\n223642|0.34722\n223643|0.27778\n223644|0.22222\n223645|0.375\n223646|0.30556\n223647|0.54167\n223648|0.36111\n223649|0.41667\n223650|0.88889\n223651|0.25\n223652|0.54167\n223653|0.83333\n223654|0.13889\n223655|0.75\n223656|0.5\n223657|0.5\n223658|0.5\n223659|0.72222\n223660|0.83333\n223661|0.77778\n223662|0.80556\n223663|0.63889\n223664|0.56944\n223665|0.25\n223666|0.13889\n223667|0.55556\n223668|0.44444\n223669|0.55556\n223670|0.47222\n223671|0.20833\n223672|0.48611\n223673|0.18056\n223674|0.5\n223675|0.54167\n223676|0.30556\n223677|0.15278\n223678|0.51389\n223679|0.40278\n223680|0.5\n223681|0.5\n223682|0.55556\n223683|0.51389\n223684|0.58333\n223685|0.5\n223686|0.31944\n223687|0.13889\n223688|0.81944\n223689|0.5\n223690|0.5\n223691|0.26389\n223692|0.13889\n223693|0.013889\n223694|0.5\n223695|0.5\n223696|0.45833\n223697|0.15278\n223698|0.26389\n223699|0.48611\n223700|0.11111\n223701|0.069444\n223702|0.375\n223703|0.44444\n223704|0.36111\n223705|0.31944\n223706|0.70833\n223707|0.25\n223708|0.5\n223709|0.55556\n223710|0.68056\n223711|0.77778\n223712|0.72222\n223713|0.68056\n223714|0.58333\n223715|0.79167\n223716|0.77778\n223717|0.81944\n223718|0.5\n223719|0.84722\n223720|0.34722\n223721|0.61111\n223722|0.66667\n223723|0.65278\n223724|0.83333\n223725|0.41667\n223726|0.56944\n223727|0.45833\n223728|0.73611\n223729|0.36111\n223730|0.055556\n223731|0.55556\n223732|0.29167\n223733|0.5\n223734|0.5\n223735|0.20833\n223736|0.5\n223737|0.22222\n223738|0.58333\n223739|0.5\n223740|0.5\n223741|0.55556\n223742|0.5\n223743|0.5\n223744|0.5\n223745|0.5\n223746|0.5\n223747|0.38889\n223748|0.13889\n223749|0.31944\n223750|0.48611\n223751|0.61111\n223752|0.31944\n223753|0.65278\n223754|0\n223755|0.54167\n223756|0.52778\n223757|0.5\n223758|0.45833\n223759|0.5\n223760|0.125\n223761|0.13889\n223762|0.069444\n223763|0.84722\n223764|0.58333\n223765|0.52778\n223766|0.55556\n223767|0.11111\n223768|0.20833\n223769|0.44444\n223770|0.16667\n223771|0.65278\n223772|0.083333\n223773|0.375\n223774|0.5\n223775|0.44444\n223776|0.34722\n223777|0.083333\n223778|0.055556\n223779|0.27778\n223780|0.27778\n223781|0.52778\n223782|0.31944\n223783|0.66667\n223784|0.097222\n223785|0.59722\n223786|0.30556\n223787|0.19444\n223788|0.38889\n223789|0.33333\n223790|0.5\n223791|0.70833\n223792|0.75\n223793|0.91667\n223794|0.30556\n223795|0.44444\n223796|0.5\n223797|0.36111\n223798|0.36111\n223799|0.5\n223800|0.44444\n223801|0.44444\n223802|0.16667\n223803|0.13889\n223804|0.30556\n223805|0.013889\n223806|0.027778\n223807|0\n223808|0.41667\n223809|0.44444\n223810|0.51389\n223811|0.34722\n223812|0.25\n223813|0.47222\n223814|0.55556\n223815|0.22222\n223816|0.23611\n223817|0.15278\n223818|0.16667\n223819|0.013889\n223820|0.33333\n223821|0.19444\n223822|0.5\n223823|0.25\n223824|0.54167\n223825|0.5\n223826|0.22222\n223827|0.5\n223828|0.5\n223829|0.375\n223830|0.54167\n223831|0.61111\n223832|0.77778\n223833|0.69444\n223834|0.61111\n223835|0.69444\n223836|0.83333\n223837|0.93056\n223838|0.27778\n223839|0.36111\n223840|0.40278\n223841|0.55556\n223842|0.41667\n223843|0.61111\n223844|0.26389\n223845|0.51389\n223846|0.56944\n223847|0.52778\n223848|0.72222\n223849|0.055556\n223850|0.27778\n223851|0.54167\n223852|0.33333\n223853|0.23611\n223854|0.29167\n223855|0.11111\n223856|0.58333\n223857|0.88889\n223858|0.83333\n223859|0.88889\n223860|0.88889\n223861|0.77778\n223862|0.72222\n223863|0.875\n223864|0.26389\n223865|0.31944\n223866|0.48611\n223867|0.51389\n223868|0.30556\n223869|0.51389\n223870|0.5\n223871|0.55556\n223872|0.083333\n223873|0.31944\n223874|0.38889\n223875|0.30556\n223876|0.097222\n223877|0.16667\n223878|0.43056\n223879|0.44444\n223880|0.56944\n223881|0.44444\n223882|0.27778\n223883|0.11111\n223884|0.5\n223885|0.63889\n223886|0.5\n223887|0.20833\n223888|0.16667\n223889|0.097222\n223890|0.069444\n223891|0.44444\n223892|0.48611\n223893|0.48611\n223894|0.45833\n223895|0.125\n223896|0.055556\n223897|0.43056\n223898|0.25\n223899|0.33333\n223900|0.5\n223901|0.27778\n223902|0.56944\n223903|0.52778\n223904|0.40278\n223905|0.47222\n223906|0.44444\n223907|0.59722\n223908|0.68056\n223909|0.72222\n223910|0.56944\n223911|0.84722\n223912|0.22222\n223913|0.22222\n223914|0.83333\n223915|0.94444\n223916|0.055556\n223917|0.26389\n223918|0.13889\n223919|0.22222\n223920|0.31944\n223921|0.5\n223922|0.26389\n223923|0.29167\n223924|0.27778\n223925|0.16667\n223926|0.40278\n223927|0.51389\n223928|0.16667\n223929|0.52778\n223930|0.41667\n223931|0.33333\n223932|0.27778\n223933|0.56944\n223934|0.45833\n223935|0.66667\n223936|0.55556\n223937|0.48611\n223938|0.59722\n223939|0.52778\n223940|0.875\n223941|0.55556\n223942|0.5\n223943|0.61111\n223944|0.56944\n223945|0.5\n223946|0.63889\n223947|0.23611\n223948|0.90278\n223949|0.20833\n223950|0.47222\n223951|0.125\n223952|0.68056\n223953|0.54167\n223954|0.38889\n223955|0.33333\n223956|0.51389\n223957|0.77778\n223958|0.56944\n223959|0.51389\n223960|0.45833\n223961|0.5\n223962|0.625\n223963|0.51389\n223964|0.70833\n223965|0.54167\n223966|0.55556\n223967|0.25\n223968|0.36111\n223969|0.44444\n223970|0.38889\n223971|0.41667\n223972|0.75\n223973|0.44444\n223974|0.41667\n223975|0.45833\n223976|0.56944\n223977|0.58333\n223978|0.5\n223979|0.13889\n223980|0.27778\n223981|0.55556\n223982|0.55556\n223983|0.73611\n223984|0.84722\n223985|0.625\n223986|0.77778\n223987|0.55556\n223988|0.77778\n223989|0.5\n223990|0.27778\n223991|0.36111\n223992|0.26389\n223993|0.097222\n223994|0.5\n223995|0.18056\n223996|0.56944\n223997|0.5\n223998|0.625\n223999|0.58333\n224000|0.5\n224001|0.41667\n224002|0.68056\n224003|0.16667\n224004|0.40278\n224005|0.19444\n224006|0.5\n224007|0.5\n224008|0.44444\n224009|0.055556\n224010|0.68056\n224011|0.38889\n224012|0.31944\n224013|0.5\n224014|0.76389\n224015|0.76389\n224016|0.19444\n224017|0.5\n224018|0.86111\n224019|0.83333\n224020|0.43056\n224021|0.72222\n224022|0.55556\n224023|0.11111\n224024|0.51389\n224025|0.30556\n224026|0.25\n224027|0.22222\n224028|0.069444\n224029|0.083333\n224030|0.31944\n224031|0.51389\n224032|0.18056\n224033|0.5\n224034|0.30556\n224035|0.30556\n224036|0.47222\n224037|0.52778\n224038|0.33333\n224039|0.72222\n224040|0.5\n224041|0.36111\n224042|0.22222\n224043|0.5\n224044|0.34722\n224045|0.65278\n224046|0.22222\n224047|0.5\n224048|0.5\n224049|0.375\n224050|0.375\n224051|0.33333\n224052|0.375\n224053|0.38889\n224054|0.5\n224055|0.61111\n224056|0.38889\n224057|0.43056\n224058|0.84722\n224059|0.81944\n224060|0.75\n224061|0.40278\n224062|0.59722\n224063|0.86111\n224064|0.18056\n224065|0.23611\n224066|0.38889\n224067|0.27778\n224068|0.72222\n224069|0.27778\n224070|0.18056\n224071|0.27778\n224072|0.72222\n224073|0.84722\n224074|0.88889\n224075|0.29167\n224076|0.58333\n224077|0.66667\n224078|0.70833\n224079|0.75\n224080|0.83333\n224081|0.91667\n224082|0.5\n224083|0.41667\n224084|0.44444\n224085|0.5\n224086|0.5\n224087|0.48611\n224088|0.48611\n224089|0.55556\n224090|0.58333\n224091|0.47222\n224092|0.44444\n224093|0.36111\n224094|0.79167\n224095|0.52778\n224096|0.41667\n224097|0.43056\n224098|0.23611\n224099|0.125\n224100|0.56944\n224101|0.48611\n224102|0.40278\n224103|0.38889\n224104|0.45833\n224105|0.55556\n224106|0.5\n224107|0.52778\n224108|0.055556\n224109|0.52778\n224110|0.27778\n224111|0.16667\n224112|0.069444\n224113|0.083333\n224114|0.16667\n224115|0.11111\n224116|0.72222\n224117|0.44444\n224118|0.56944\n224119|0.80556\n224120|0.55556\n224121|0.5\n224122|0.86111\n224123|0.80556\n224124|0.80556\n224125|0.98611\n224126|0.25\n224127|0.66667\n224128|0.79167\n224129|0.66667\n224130|0.81944\n224131|0.45833\n224132|0.625\n224133|0.94444\n224134|0.69444\n224135|0.16667\n224136|0.68056\n224137|0.81944\n224138|0.84722\n224139|0.875\n224140|0.90278\n224141|0.56944\n224142|0.36111\n224143|0.18056\n224144|0.66667\n224145|0.77778\n224146|0.22222\n224147|0.22222\n224148|0.16667\n224149|0.20833\n224150|0.19444\n224151|0.20833\n224152|0.84722\n224153|0.13889\n224154|0.68056\n224155|0.70833\n224156|0.61111\n224157|0.30556\n224158|0.625\n224159|0.625\n224160|0.70833\n224161|0.48611\n224162|0.20833\n224163|0.20833\n224164|0.125\n224165|0.48611\n224166|0.81944\n224167|0.51389\n224168|0.29167\n224169|0.65278\n224170|0.47222\n224171|0.51389\n224172|0.79167\n224173|0.73611\n224174|0.75\n224175|0.625\n224176|0.72222\n224177|0.22222\n224178|0.5\n224179|0.11111\n224180|0.22222\n224181|0.20833\n224182|0.38889\n224183|0.375\n224184|0.68056\n224185|0.27778\n224186|0.72222\n224187|0.66667\n224188|0.19444\n224189|0.26389\n224190|0.66667\n224191|0.33333\n224192|0.25\n224193|0.055556\n224194|0.22222\n224195|0.34722\n224196|0.5\n224197|0.45833\n224198|0.43056\n224199|0.66667\n224200|0.55556\n224201|0.44444\n224202|0.34722\n224203|0.58333\n224204|0.041667\n224205|0.69444\n224206|0.66667\n224207|0.69444\n224208|0.76389\n224209|0.38889\n224210|0.11111\n224211|0.15278\n224212|0.38889\n224213|0.68056\n224214|0.069444\n224215|0.16667\n224216|0.19444\n224217|0.56944\n224218|0.56944\n224219|0.58333\n224220|0.68056\n224221|0.625\n224222|0.48611\n224223|0.59722\n224224|0.33333\n224225|0.77778\n224226|0.80556\n224227|0.83333\n224228|0.81944\n224229|0.91667\n224230|0.055556\n224231|0.43056\n224232|0.38889\n224233|0.70833\n224234|0.58333\n224235|0.25\n224236|0.33333\n224237|0.13889\n224238|0.79167\n224239|0.48611\n224240|0.44444\n224241|0.51389\n224242|0.66667\n224243|0.5\n224244|0.45833\n224245|0.083333\n224246|0.125\n224247|0.70833\n224248|0.76389\n224249|0.63889\n224250|0.41667\n224251|0.31944\n224252|0\n224253|0.875\n224254|0.27778\n224255|0.58333\n224256|0.77778\n224257|0.59722\n224258|0.34722\n224259|0.29167\n224260|0.33333\n224261|0.30556\n224262|0.54167\n224263|0.625\n224264|0.79167\n224265|0.13889\n224266|0.54167\n224267|0.77778\n224268|0.625\n224269|0.31944\n224270|0.56944\n224271|0.38889\n224272|0.38889\n224273|0.55556\n224274|0.041667\n224275|0.25\n224276|0.81944\n224277|0.45833\n224278|0.5\n224279|0.15278\n224280|0.125\n224281|0.16667\n224282|0.15278\n224283|0.36111\n224284|0.38889\n224285|0.52778\n224286|0.41667\n224287|0.43056\n224288|0.68056\n224289|0.61111\n224290|0.25\n224291|0.70833\n224292|0.26389\n224293|0.27778\n224294|0.375\n224295|0.61111\n224296|0.72222\n224297|0.375\n224298|0.44444\n224299|0.33333\n224300|0.30556\n224301|0.33333\n224302|0.20833\n224303|0.22222\n224304|0.25\n224305|0.34722\n224306|0.63889\n224307|0.80556\n224308|0.81944\n224309|0.45833\n224310|0.55556\n224311|0.26389\n224312|0.25\n224313|0.75\n224314|0.83333\n224315|0.81944\n224316|0.45833\n224317|0.625\n224318|0.72222\n224319|0.5\n224320|0.72222\n224321|0.22222\n224322|0.13889\n224323|0.097222\n224324|0.23611\n224325|0.30556\n224326|0.83333\n224327|0.875\n224328|0.59722\n224329|0.30556\n224330|0.51389\n224331|0.80556\n224332|0.63889\n224333|0.18056\n224334|0.36111\n224335|0.18056\n224336|0.5\n224337|0.55556\n224338|0.11111\n224339|0.13889\n224340|0.11111\n224341|0.055556\n224342|0.33333\n224343|0.38889\n224344|0.43056\n224345|0.34722\n224346|0.72222\n224347|0.65278\n224348|0.47222\n224349|0.27778\n224350|0.5\n224351|0.31944\n224352|0.51389\n224353|0.5\n224354|0.38889\n224355|0.097222\n224356|0.083333\n224357|0.11111\n224358|0.23611\n224359|0.055556\n224360|0.5\n224361|0.54167\n224362|0.45833\n224363|0.19444\n224364|0.48611\n224365|0.44444\n224366|0.79167\n224367|0.75\n224368|0.55556\n224369|0.52778\n224370|0.43056\n224371|0.38889\n224372|0.47222\n224373|0.77778\n224374|0.75\n224375|0.30556\n224376|0.47222\n224377|0.5\n224378|0.48611\n224379|0.875\n224380|0.79167\n224381|0.5\n224382|0.44444\n224383|0.22222\n224384|0.29167\n224385|0.5\n224386|0.61111\n224387|0.66667\n224388|0.11111\n224389|0.22222\n224390|0.45833\n224391|0.22222\n224392|0.75\n224393|0.013889\n224394|0.26389\n224395|0.63889\n224396|0.20833\n224397|0.38889\n224398|0.55556\n224399|0.59722\n224400|0.38889\n224401|0.29167\n224402|0.52778\n224403|0.5\n224404|0.36111\n224405|0.16667\n224406|0.375\n224407|0.40278\n224408|0.44444\n224409|0.13889\n224410|0.77778\n224411|0.38889\n224412|0.27778\n224413|0.25\n224414|0.23611\n224415|0.375\n224416|0.45833\n224417|0.33333\n224418|0.29167\n224419|0.22222\n224420|0.083333\n224421|0.069444\n224422|0.5\n224423|0.5\n224424|0.5\n224425|0.55556\n224426|0.58333\n224427|0.23611\n224428|0.625\n224429|0.52778\n224430|0.5\n224431|0.47222\n224432|0.5\n224433|0.80556\n224434|0.77778\n224435|0.5\n224436|0.5\n224437|0.5\n224438|0.5\n224439|0.5\n224440|0.5\n224441|0.5\n224442|0.5\n224443|0.65278\n224444|0.22222\n224445|0.013889\n224446|0.11111\n224447|0.33333\n224448|0.5\n224449|0.61111\n224450|0.48611\n224451|0.5\n224452|0.59722\n224453|0.38889\n224454|0.51389\n224455|0.34722\n224456|0.15278\n224457|0.5\n224458|0.5\n224459|0.5\n224460|0.52778\n224461|0.5\n224462|0.083333\n224463|0.84722\n224464|0.5\n224465|0.5\n224466|0.5\n224467|0.5\n224468|0.5\n224469|0.44444\n224470|0.5\n224471|0.5\n224472|0.29167\n224473|0.15278\n224474|0.52778\n224475|0.5\n224476|0.5\n224477|0.54167\n224478|0.55556\n224479|0.5\n224480|0.5\n224481|0.91667\n224482|0.52778\n224483|0.27778\n224484|0.5\n224485|0.5\n224486|0.5\n224487|0.5\n224488|0.5\n224489|0.72222\n224490|0.5\n224491|0.59722\n224492|0.43056\n224493|0.30556\n224494|0.625\n224495|0.23611\n224496|0.19444\n224497|0.5\n224498|0.875\n224499|0.83333\n224500|0.16667\n224501|0.38889\n224502|0.25\n224503|0.083333\n224504|0.47222\n224505|0.33333\n224506|0.5\n224507|0.72222\n224508|0.875\n224509|0.58333\n224510|0.73611\n224511|0.30556\n224512|0.5\n224513|0.5\n224514|0.5\n224515|0.5\n224516|0.55556\n224517|0.38889\n224518|0.5\n224519|0.5\n224520|0.5\n224521|0.79167\n224522|0.5\n224523|0.5\n224524|0.47222\n224525|0.5\n224526|0.5\n224527|0.5\n224528|0.5\n224529|0.5\n224530|0.5\n224531|0.33333\n224532|0.94444\n224533|0.61111\n224534|0.18056\n224535|0.5\n224536|0.16667\n224537|0.5\n224538|0.33333\n224539|0.5\n224540|0.72222\n224541|0.5\n224542|0.5\n224543|0.5\n224544|0.52778\n224545|0.5\n224546|0.5\n224547|0.5\n224548|0.51389\n224549|0.5\n224550|0.5\n224551|0.55556\n224552|0.88889\n224553|0.11111\n224554|0.18056\n224555|0.31944\n224556|0.31944\n224557|0.29167\n224558|0.097222\n224559|0.72222\n224560|0.5\n224561|0.55556\n224562|0.31944\n224563|0.61111\n224564|0.5\n224565|0.51389\n224566|0.44444\n224567|0.47222\n224568|0.41667\n224569|0.5\n224570|0.30556\n224571|0.625\n224572|0.16667\n224573|0.54167\n224574|0.47222\n224575|0.31944\n224576|0.125\n224577|0.097222\n224578|0.5\n224579|0.5\n224580|0.5\n224581|0.27778\n224582|0.47222\n224583|0.61111\n224584|0.41667\n224585|0.5\n224586|0.5\n224587|0.5\n224588|0.5\n224589|0.125\n224590|0.15278\n224591|0.69444\n224592|0.41667\n224593|0.5\n224594|0.80556\n224595|0.5\n224596|0.38889\n224597|0.31944\n224598|0.25\n224599|0.18056\n224600|0.27778\n224601|0.5\n224602|0.54167\n224603|0.38889\n224604|0.5\n224605|0.44444\n224606|0.31944\n224607|0.45833\n224608|0.375\n224609|0.5\n224610|0.69444\n224611|0.56944\n224612|0.86111\n224613|0.61111\n224614|0.36111\n224615|0.5\n224616|0.72222\n224617|0.69444\n224618|0.29167\n224619|0.44444\n224620|0.69444\n224621|0.22222\n224622|0.77778\n224623|0.65278\n224624|0.59722\n224625|0.26389\n224626|0.59722\n224627|0.16667\n224628|0.55556\n224629|0.44444\n224630|0.27778\n224631|0.75\n224632|0.48611\n224633|0.43056\n224634|0.93056\n224635|0.625\n224636|0.5\n224637|0.33333\n224638|0.33333\n224639|0.5\n224640|0.13889\n224641|0.98611\n224642|0.625\n224643|0.5\n224644|0.375\n224645|0.83333\n224646|0.5\n224647|0.54167\n224648|0.29167\n224649|0.48611\n224650|0.47222\n224651|0.5\n224652|0.5\n224653|0.47222\n224654|0.5\n224655|0.93056\n224656|0.5\n224657|0.56944\n224658|0.5\n224659|0.5\n224660|0.5\n224661|0.45833\n224662|0.44444\n224663|0.76389\n224664|0.83333\n224665|0.54167\n224666|0.36111\n224667|0.30556\n224668|0.5\n224669|0.5\n224670|0.5\n224671|0.5\n224672|0.5\n224673|0.83333\n224674|0.48611\n224675|0.5\n224676|0.5\n224677|0.52778\n224678|0.5\n224679|0.38889\n224680|0.5\n224681|0.5\n224682|0.125\n224683|0.83333\n224684|0.5\n224685|0.5\n224686|0.5\n224687|0.5\n224688|0.66667\n224689|0.5\n224690|0.72222\n224691|0.56944\n224692|0.23611\n224693|0.375\n224694|0.43056\n224695|0.44444\n224696|0.34722\n224697|0.65278\n224698|0.5\n224699|0.90278\n224700|0.5\n224701|0.5\n224702|0.22222\n224703|0.52778\n224704|0.44444\n224705|0.61111\n224706|0.5\n224707|0.5\n224708|0.5\n224709|0.5\n224710|0.56944\n224711|0.83333\n224712|0.5\n224713|0.5\n224714|0.38889\n224715|0.61111\n224716|0.52778\n224717|0.5\n224718|0.34722\n224719|0.25\n224720|0.18056\n224721|0.097222\n224722|0.5\n224723|0.5\n224724|0.5\n224725|0.79167\n224726|0.36111\n224727|0.5\n224728|0.15278\n224729|0.11111\n224730|0.5\n224731|0.23611\n224732|0.16667\n224733|0.76389\n224734|0.56944\n224735|0.25\n224736|0.16667\n224737|0.33333\n224738|0.34722\n224739|0.5\n224740|0.5\n224741|0.68056\n224742|0.43056\n224743|0.59722\n224744|0.69444\n224745|0.65278\n224746|0.36111\n224747|0.25\n224748|0.625\n224749|0.27778\n224750|0.29167\n224751|0.81944\n224752|0.41667\n224753|0.47222\n224754|0.5\n224755|0.18056\n224756|0.20833\n224757|0.33333\n224758|0.65278\n224759|0.125\n224760|0.23611\n224761|0.31944\n224762|0.27778\n224763|0.63889\n224764|0.5\n224765|0.58333\n224766|0.5\n224767|0.52778\n224768|0.48611\n224769|0.61111\n224770|0.13889\n224771|0.041667\n224772|0.11111\n224773|0.11111\n224774|0.25\n224775|0.76389\n224776|0.27778\n224777|0.5\n224778|0.47222\n224779|0.375\n224780|0.5\n224781|0.66667\n224782|0.5\n224783|0.69444\n224784|0.61111\n224785|0.5\n224786|0.5\n224787|0.5\n224788|0.5\n224789|0.70833\n224790|0.5\n224791|0.5\n224792|0.38889\n224793|0.5\n224794|0.75\n224795|0.84722\n224796|0.44444\n224797|0.61111\n224798|0.59722\n224799|0.72222\n224800|0.41667\n224801|0.73611\n224802|0.80556\n224803|0.72222\n224804|0.76389\n224805|0.58333\n224806|0.44444\n224807|0.33333\n224808|0.25\n224809|0.5\n224810|0.5\n224811|0.5\n224812|0.75\n224813|0.76389\n224814|0.94444\n224815|0.375\n224816|0.55556\n224817|0.84722\n224818|0.72222\n224819|0.66667\n224820|0.69444\n224821|0.72222\n224822|0.70833\n224823|0.88889\n224824|0.41667\n224825|0.5\n224826|0.5\n224827|0.56944\n224828|0.80556\n224829|0.59722\n224830|0.83333\n224831|0.66667\n224832|0.5\n224833|0.13889\n224834|0.58333\n224835|0.68056\n224836|0.43056\n224837|0.36111\n224838|0.40278\n224839|0.47222\n224840|0.58333\n224841|0.48611\n224842|0.13889\n224843|0.5\n224844|0.72222\n224845|0.61111\n224846|0.84722\n224847|0.88889\n224848|0.48611\n224849|0.5\n224850|0.83333\n224851|0.5\n224852|0.5\n224853|0.48611\n224854|0.5\n224855|0.5\n224856|0.90278\n224857|0.5\n224858|0.56944\n224859|0.5\n224860|0.5\n224861|0.5\n224862|0.5\n224863|0.51389\n224864|0.5\n224865|0.61111\n224866|0.5\n224867|0.80556\n224868|0.5\n224869|0.55556\n224870|0.5\n224871|0.63889\n224872|0.48611\n224873|0.5\n224874|0.5\n224875|0.51389\n224876|0.58333\n224877|0.5\n224878|0.5\n224879|0.5\n224880|0.51389\n224881|0.5\n224882|0.79167\n224883|0.5\n224884|0.79167\n224885|0.5\n224886|0.5\n224887|0.5\n224888|0.59722\n224889|0.5\n224890|0.65278\n224891|0.41667\n224892|0.61111\n224893|0.77778\n224894|0.81944\n224895|0.19444\n224896|0.83333\n224897|0.44444\n224898|0.5\n224899|0.5\n224900|0.5\n224901|0.51389\n224902|0.5\n224903|0.5\n224904|0.5\n224905|0.73611\n224906|0.75\n224907|0.5\n224908|0.30556\n224909|0.5\n224910|0.5\n224911|0.26389\n224912|0.16667\n224913|0.5\n224914|0.23611\n224915|0.38889\n224916|0.5\n224917|0.16667\n224918|0.22222\n224919|0.5\n224920|0.59722\n224921|0.5\n224922|0.5\n224923|0.58333\n224924|0.5\n224925|0.41667\n224926|0.5\n224927|0.5\n224928|0.5\n224929|0.5\n224930|0.83333\n224931|0.5\n224932|0.5\n224933|0.72222\n224934|0.5\n224935|0.5\n224936|0.54167\n224937|0.5\n224938|0.38889\n224939|0.5\n224940|0.5\n224941|0.77778\n224942|0.55556\n224943|0.30556\n224944|0.5\n224945|0.81944\n224946|0.5\n224947|0.81944\n224948|0.5\n224949|0.93056\n224950|0.5\n224951|0.5\n224952|0.5\n224953|0.72222\n224954|0.76389\n224955|0.86111\n224956|0.72222\n224957|0.72222\n224958|0.52778\n224959|0.5\n224960|0.72222\n224961|0.5\n224962|0.5\n224963|0.55556\n224964|0.5\n224965|0.76389\n224966|0.5\n224967|0.5\n224968|0.5\n224969|0.55556\n224970|0.83333\n224971|0.61111\n224972|0.80556\n224973|0.79167\n224974|0.77778\n224975|0.5\n224976|0.5\n224977|0.38889\n224978|0.5\n224979|0.5\n224980|0.5\n224981|0.59722\n224982|0.18056\n224983|0.5\n224984|0.5\n224985|0.625\n224986|0.5\n224987|0.5\n224988|0.72222\n224989|0.5\n224990|0.66667\n224991|0.5\n224992|0.76389\n224993|0.72222\n224994|0.79167\n224995|0.76389\n224996|0.83333\n224997|0.5\n224998|0.5\n224999|0.5\n225000|0.76389\n225001|0.5\n225002|0.88889\n225003|0.79167\n225004|0.73611\n225005|0.66667\n225006|0.36111\n225007|0.52778\n225008|0.5\n225009|0.59722\n225010|0.5\n225011|0.58333\n225012|0.5\n225013|0.5\n225014|0.51389\n225015|0.5\n225016|0.5\n225017|0.72222\n225018|0.5\n225019|0.625\n225020|0.5\n225021|0.86111\n225022|0.5\n225023|0.84722\n225024|0.5\n225025|0.5\n225026|0.5\n225027|0.5\n225028|0.5\n225029|0.33333\n225030|0.5\n225031|0.11111\n225032|0.5\n225033|0.5\n225034|0.5\n225035|0.5\n225036|0.5\n225037|0.5\n225038|0.65278\n225039|0.5\n225040|0.76389\n225041|0.43056\n225042|0.5\n225043|0.80556\n225044|0.5\n225045|0.5\n225046|0.5\n225047|0.38889\n225048|0.5\n225049|0.55556\n225050|0.5\n225051|0.5\n225052|0.66667\n225053|0.5\n225054|0.55556\n225055|0.5\n225056|0.83333\n225057|0.75\n225058|0.66667\n225059|0.65278\n225060|0.76389\n225061|0.73611\n225062|0.81944\n225063|0.55556\n225064|0.5\n225065|0.5\n225066|0.5\n225067|0.5\n225068|0.5\n225069|0.5\n225070|0.76389\n225071|0.83333\n225072|0.83333\n225073|0.83333\n225074|0.5\n225075|0.70833\n225076|0.26389\n225077|0.15278\n225078|0.069444\n225079|0.54167\n225080|0.5\n225081|0.15278\n225082|0.23611\n225083|0.5\n225084|0.5\n225085|0.41667\n225086|0.5\n225087|0.5\n225088|0.5\n225089|0.56944\n225090|0.66667\n225091|0.44444\n225092|0.81944\n225093|0.81944\n225094|0.86111\n225095|0.58333\n225096|0.45833\n225097|0.61111\n225098|0.75\n225099|0.75\n225100|0.5\n225101|0.51389\n225102|0.51389\n225103|0.625\n225104|0.33333\n225105|0.23611\n225106|0.73611\n225107|0.5\n225108|0.27778\n225109|0.38889\n225110|0.48611\n225111|0.73611\n225112|0.65278\n225113|0.22222\n225114|0.5\n225115|0.5\n225116|0.5\n225117|0.63889\n225118|0.69444\n225119|0.81944\n225120|0.86111\n225121|0.5\n225122|0.5\n225123|0.44444\n225124|0.70833\n225125|0.69444\n225126|0.875\n225127|0.73611\n225128|0.88889\n225129|0.625\n225130|0.5\n225131|0.90278\n225132|0.65278\n225133|0.55556\n225134|0.75\n225135|0.77778\n225136|0.5\n225137|0.5\n225138|0.45833\n225139|0.61111\n225140|0.055556\n225141|0.70833\n225142|0.30556\n225143|0.40278\n225144|0.33333\n225145|0.34722\n225146|0.36111\n225147|0.30556\n225148|0.069444\n225149|0.54167\n225150|0.52778\n225151|0.11111\n225152|0.055556\n225153|0.51389\n225154|0.94444\n225155|0.375\n225156|0.54167\n225157|0.33333\n225158|0.30556\n225159|0.30556\n225160|0.16667\n225161|0.25\n225162|0.30556\n225163|0.51389\n225164|0.5\n225165|0.22222\n225166|0.22222\n225167|0.5\n225168|0.22222\n225169|0.33333\n225170|0.91667\n225171|0.45833\n225172|0.5\n225173|0.51389\n225174|0.51389\n225175|0.11111\n225176|0.097222\n225177|0.44444\n225178|0.44444\n225179|0.51389\n225180|0.5\n225181|0.55556\n225182|0.25\n225183|0.40278\n225184|0.22222\n225185|0.30556\n225186|0.38889\n225187|0.48611\n225188|0.44444\n225189|0.38889\n225190|0.15278\n225191|0.41667\n225192|0.27778\n225193|0.27778\n225194|0.77778\n225195|0.61111\n225196|0.34722\n225197|0.25\n225198|0.47222\n225199|0.5\n225200|0.5\n225201|0.47222\n225202|0.83333\n225203|0.083333\n225204|0.55556\n225205|0.66667\n225206|0.33333\n225207|0.48611\n225208|0.31944\n225209|0.55556\n225210|0.80556\n225211|0.33333\n225212|0.31944\n225213|0.52778\n225214|0.16667\n225215|0.43056\n225216|0.76389\n225217|0.68056\n225218|0.34722\n225219|0.63889\n225220|0.54167\n225221|0.26389\n225222|0.375\n225223|0.5\n225224|0.375\n225225|0.875\n225226|0.63889\n225227|0.5\n225228|0.44444\n225229|0.27778\n225230|0.72222\n225231|0.77778\n225232|0.69444\n225233|0.73611\n225234|0.73611\n225235|0.25\n225236|0.44444\n225237|0.5\n225238|0.069444\n225239|0.26389\n225240|0.38889\n225241|0.875\n225242|0.5\n225243|0.5\n225244|0.5\n225245|0.5\n225246|0.5\n225247|0.5\n225248|0.5\n225249|0.5\n225250|0.5\n225251|0.56944\n225252|0.55556\n225253|0.40278\n225254|0.44444\n225255|0.47222\n225256|0.38889\n225257|0.36111\n225258|0.65278\n225259|0.66667\n225260|0.63889\n225261|0.75\n225262|0.83333\n225263|0.84722\n225264|0.5\n225265|0.43056\n225266|0.38889\n225267|0.375\n225268|0.31944\n225269|0.73611\n225270|0.76389\n225271|0.19444\n225272|0.5\n225273|0.91667\n225274|0.13889\n225275|0.5\n225276|0.23611\n225277|0.375\n225278|0.30556\n225279|0.77778\n225280|0.77778\n225281|0.20833\n225282|0.38889\n225283|0.55556\n225284|0.66667\n225285|0.59722\n225286|0.66667\n225287|0.27778\n225288|0.5\n225289|0.5\n225290|0.55556\n225291|0.76389\n225292|0.55556\n225293|0.75\n225294|0.069444\n225295|0.31944\n225296|0.80556\n225297|0.20833\n225298|0.76389\n225299|0.44444\n225300|0.069444\n225301|0.375\n225302|0.27778\n225303|0.40278\n225304|0.069444\n225305|0.20833\n225306|0.5\n225307|0.52778\n225308|0.33333\n225309|0.83333\n225310|0.83333\n225311|0.88889\n225312|0.18056\n225313|0.88889\n225314|0.79167\n225315|0.83333\n225316|0.5\n225317|0.5\n225318|0.18056\n225319|0.26389\n225320|0.20833\n225321|0.30556\n225322|0.83333\n225323|0.90278\n225324|0.20833\n225325|0.47222\n225326|0.58333\n225327|0.45833\n225328|0.55556\n225329|0.44444\n225330|0.52778\n225331|0.70833\n225332|0.5\n225333|0.58333\n225334|0.27778\n225335|0.26389\n225336|0.43056\n225337|0.5\n225338|0.5\n225339|0.5\n225340|0.29167\n225341|0.48611\n225342|0.5\n225343|0.52778\n225344|0.34722\n225345|0.5\n225346|0.75\n225347|0.79167\n225348|0.45833\n225349|0.45833\n225350|0.47222\n225351|0.33333\n225352|0.5\n225353|0.41667\n225354|0.30556\n225355|0.51389\n225356|0.75\n225357|0.84722\n225358|0.66667\n225359|0.52778\n225360|0.5\n225361|0.48611\n225362|0.38889\n225363|0.25\n225364|0.27778\n225365|0.27778\n225366|0.097222\n225367|0.22222\n225368|0.47222\n225369|0.55556\n225370|0.5\n225371|0.5\n225372|0.5\n225373|0.5\n225374|0.5\n225375|0.69444\n225376|0.75\n225377|0.76389\n225378|0.81944\n225379|0.5\n225380|0.5\n225381|0.83333\n225382|0.18056\n225383|0.19444\n225384|0.20833\n225385|0.27778\n225386|0.18056\n225387|0.22222\n225388|0.11111\n225389|0.069444\n225390|0.5\n225391|0.44444\n225392|0.5\n225393|0.44444\n225394|0.54167\n225395|0.48611\n225396|0.44444\n225397|0.88889\n225398|0.31944\n225399|0.48611\n225400|0.27778\n225401|0.66667\n225402|0.72222\n225403|0.5\n225404|0.5\n225405|0.5\n225406|0.5\n225407|0.34722\n225408|0.56944\n225409|0.38889\n225410|0.44444\n225411|0.44444\n225412|0.56944\n225413|0.52778\n225414|0.375\n225415|0.27778\n225416|0.73611\n225417|0.5\n225418|0.5\n225419|0.55556\n225420|0.11111\n225421|0.5\n225422|0.47222\n225423|0.61111\n225424|0.5\n225425|0.65278\n225426|0.72222\n225427|0.56944\n225428|0.69444\n225429|0.63889\n225430|0.88889\n225431|0.80556\n225432|0.56944\n225433|0.70833\n225434|0.81944\n225435|0.59722\n225436|0.34722\n225437|0.27778\n225438|0.36111\n225439|0.22222\n225440|0.33333\n225441|0.5\n225442|0.55556\n225443|0.18056\n225444|0.5\n225445|0.76389\n225446|0.5\n225447|0.5\n225448|0.5\n225449|0.5\n225450|0.5\n225451|0.5\n225452|0.80556\n225453|0.77778\n225454|0.70833\n225455|0.94444\n225456|0.5\n225457|0.54167\n225458|0.5\n225459|0.13889\n225460|0.5\n225461|0.5\n225462|0.5\n225463|0.54167\n225464|0.31944\n225465|0.5\n225466|0.33333\n225467|0.25\n225468|0.75\n225469|0.61111\n225470|0.72222\n225471|0.68056\n225472|0.81944\n225473|0.76389\n225474|0.875\n225475|0.5\n225476|0.81944\n225477|0.77778\n225478|0.5\n225479|0.5\n225480|0.66667\n225481|0.29167\n225482|0.73611\n225483|0.86111\n225484|0.79167\n225485|0.5\n225486|0.5\n225487|0.34722\n225488|0.25\n225489|0.16667\n225490|0.11111\n225491|0.5\n225492|0.59722\n225493|0.47222\n225494|0.43056\n225495|0.5\n225496|0.47222\n225497|0.5\n225498|0.44444\n225499|0.51389\n225500|0.5\n225501|0.625\n225502|0.72222\n225503|0.41667\n225504|0.29167\n225505|0.125\n225506|0.77778\n225507|0.38889\n225508|0.33333\n225509|0.52778\n225510|0.72222\n225511|0.58333\n225512|0.47222\n225513|0.75\n225514|0.38889\n225515|0.625\n225516|0.51389\n225517|0.5\n225518|0.25\n225519|0.81944\n225520|0.80556\n225521|0.84722\n225522|0.5\n225523|0.73611\n225524|0.625\n225525|0.81944\n225526|0.76389\n225527|0.55556\n225528|0.44444\n225529|0.29167\n225530|0.54167\n225531|0.5\n225532|0.33333\n225533|0.44444\n225534|0.375\n225535|0.5\n225536|0.61111\n225537|0.56944\n225538|0.30556\n225539|0.43056\n225540|0.16667\n225541|0.33333\n225542|0.68056\n225543|0.51389\n225544|0.75\n225545|0.5\n225546|0.83333\n225547|0.5\n225548|0.5\n225549|0.86111\n225550|0.65278\n225551|0.55556\n225552|0.79167\n225553|0.5\n225554|0.72222\n225555|0.56944\n225556|0.5\n225557|0.76389\n225558|0.5\n225559|0.23611\n225560|0.48611\n225561|0.5\n225562|0.5\n225563|0.77778\n225564|0.80556\n225565|0.54167\n225566|0.76389\n225567|0.61111\n225568|0.65278\n225569|0.52778\n225570|0.55556\n225571|0.75\n225572|0.38889\n225573|0.18056\n225574|0.083333\n225575|0.19444\n225576|0.097222\n225577|0.23611\n225578|0.5\n225579|0.5\n225580|0.81944\n225581|0.83333\n225582|0.80556\n225583|0.61111\n225584|0.80556\n225585|0.77778\n225586|0.83333\n225587|0.45833\n225588|0.79167\n225589|0.80556\n225590|0.625\n225591|0.15278\n225592|0.55556\n225593|0.16667\n225594|0.25\n225595|0.59722\n225596|0.61111\n225597|0.47222\n225598|0.44444\n225599|0.27778\n225600|0.23611\n225601|0.38889\n225602|0.69444\n225603|0.5\n225604|0.375\n225605|0.5\n225606|0.22222\n225607|0.22222\n225608|0.54167\n225609|0.59722\n225610|0.5\n225611|0.48611\n225612|0.27778\n225613|0.375\n225614|0.63889\n225615|0.70833\n225616|0.77778\n225617|0.48611\n225618|0.5\n225619|0.19444\n225620|0.52778\n225621|0.44444\n225622|0.44444\n225623|0.22222\n225624|0.15278\n225625|0.055556\n225626|0.13889\n225627|0.20833\n225628|0.055556\n225629|0.80556\n225630|0.5\n225631|0.5\n225632|0.61111\n225633|0.61111\n225634|0.5\n225635|0.61111\n225636|0.5\n225637|0.5\n225638|0.65278\n225639|0.63889\n225640|0.55556\n225641|0.80556\n225642|0.26389\n225643|0.5\n225644|0.5\n225645|0.61111\n225646|0.5\n225647|0.5\n225648|0.5\n225649|0.5\n225650|0.58333\n225651|0.45833\n225652|0.38889\n225653|0.81944\n225654|0.5\n225655|0.26389\n225656|0.5\n225657|0.41667\n225658|0.055556\n225659|0.055556\n225660|0.5\n225661|0.41667\n225662|0.5\n225663|0.5\n225664|0.5\n225665|0.68056\n225666|0.5\n225667|0.27778\n225668|0.55556\n225669|0.23611\n225670|0.58333\n225671|0.5\n225672|0.125\n225673|0.27778\n225674|0.23611\n225675|0.45833\n225676|0.59722\n225677|0.52778\n225678|0.58333\n225679|0.30556\n225680|0.48611\n225681|0.5\n225682|0.5\n225683|0.5\n225684|0.66667\n225685|0.93056\n225686|0.43056\n225687|0.52778\n225688|0.80556\n225689|0.68056\n225690|0.68056\n225691|0.5\n225692|0.18056\n225693|0.19444\n225694|0.055556\n225695|0.18056\n225696|0.5\n225697|0.34722\n225698|0.55556\n225699|0.68056\n225700|0.86111\n225701|0.93056\n225702|0.83333\n225703|0.375\n225704|0.55556\n225705|0.5\n225706|0.72222\n225707|0.15278\n225708|0.72222\n225709|0.5\n225710|0.45833\n225711|0.5\n225712|0.19444\n225713|0.44444\n225714|0.5\n225715|0.47222\n225716|0.5\n225717|0.5\n225718|0.5\n225719|0.44444\n225720|0.5\n225721|0.73611\n225722|0.52778\n225723|0.38889\n225724|0.83333\n225725|0.18056\n225726|0.73611\n225727|0.5\n225728|0.5\n225729|0.5\n225730|0.55556\n225731|0.61111\n225732|0.875\n225733|0.5\n225734|0.5\n225735|0.5\n225736|0.80556\n225737|0.86111\n225738|0.069444\n225739|0.5\n225740|0.69444\n225741|0.16667\n225742|0.20833\n225743|0.61111\n225744|0.79167\n225745|0.80556\n225746|0.45833\n225747|0.54167\n225748|0.5\n225749|0.30556\n225750|0.30556\n225751|0.40278\n225752|0.16667\n225753|0.5\n225754|0.44444\n225755|0.27778\n225756|0.61111\n225757|0.44444\n225758|0.61111\n225759|0.63889\n225760|0.63889\n225761|0.61111\n225762|0.55556\n225763|0.5\n225764|0.69444\n225765|0.625\n225766|0.38889\n225767|0.44444\n225768|0.68056\n225769|0.083333\n225770|0.069444\n225771|0.11111\n225772|0.5\n225773|0.73611\n225774|0.125\n225775|0.5\n225776|0.5\n225777|0.5\n225778|0.5\n225779|0.5\n225780|0.31944\n225781|0.47222\n225782|0.20833\n225783|0.33333\n225784|0.5\n225785|0.5\n225786|0.54167\n225787|0.55556\n225788|0.5\n225789|0.33333\n225790|0.5\n225791|0.45833\n225792|0.91667\n225793|0.59722\n225794|0.44444\n225795|0.5\n225796|0.5\n225797|0.59722\n225798|0.47222\n225799|0.55556\n225800|0.63889\n225801|0.625\n225802|0.5\n225803|0.51389\n225804|0.54167\n225805|0.5\n225806|0.80556\n225807|0.79167\n225808|0.44444\n225809|0.5\n225810|0.27778\n225811|0.40278\n225812|0.055556\n225813|0.625\n225814|0.56944\n225815|0.84722\n225816|0.66667\n225817|0.23611\n225818|0.27778\n225819|0.20833\n225820|0.15278\n225821|0.72222\n225822|0.84722\n225823|0.55556\n225824|0.55556\n225825|0.31944\n225826|0.48611\n225827|0.65278\n225828|0.5\n225829|0.16667\n225830|0.11111\n225831|0.63889\n225832|0.66667\n225833|0.5\n225834|0.55556\n225835|0.48611\n225836|0.38889\n225837|0.45833\n225838|0.88889\n225839|0.5\n225840|0.51389\n225841|0.63889\n225842|0.80556\n225843|0.44444\n225844|0.56944\n225845|0.48611\n225846|0.94444\n225847|0.77778\n225848|0.91667\n225849|0.69444\n225850|0.77778\n225851|0.72222\n225852|0.75\n225853|0.63889\n225854|0.80556\n225855|0.47222\n225856|0.80556\n225857|0.5\n225858|0.44444\n225859|0.11111\n225860|0.097222\n225861|0.33333\n225862|0.18056\n225863|0.55556\n225864|0.72222\n225865|0.375\n225866|0.51389\n225867|0.44444\n225868|0.63889\n225869|0.55556\n225870|0.65278\n225871|0.55556\n225872|0.44444\n225873|0.52778\n225874|0.38889\n225875|0.25\n225876|0.5\n225877|0.65278\n225878|0.77778\n225879|0.66667\n225880|0.41667\n225881|0.30556\n225882|0.30556\n225883|0.18056\n225884|0.16667\n225885|0.18056\n225886|0.84722\n225887|0.75\n225888|0.81944\n225889|0.75\n225890|0.36111\n225891|0.61111\n225892|0.29167\n225893|0.5\n225894|0.5\n225895|0.76389\n225896|0.22222\n225897|0.79167\n225898|0.44444\n225899|0.70833\n225900|0.59722\n225901|0.5\n225902|0.76389\n225903|0.81944\n225904|0.5\n225905|0.55556\n225906|0.34722\n225907|0.45833\n225908|0.375\n225909|0.76389\n225910|0.5\n225911|0.5\n225912|0.44444\n225913|0.52778\n225914|0.51389\n225915|0.54167\n225916|0.5\n225917|0.86111\n225918|0.5\n225919|0.5\n225920|0.5\n225921|0.5\n225922|0.88889\n225923|0.5\n225924|0.97222\n225925|0.93056\n225926|0.70833\n225927|0.65278\n225928|0.84722\n225929|0.88889\n225930|0.90278\n225931|0.5\n225932|0.5\n225933|0.5\n225934|0.5\n225935|0.5\n225936|0.54167\n225937|0.13889\n225938|0.22222\n225939|0.27778\n225940|0.20833\n225941|0.15278\n225942|0.26389\n225943|0.18056\n225944|0.5\n225945|0.22222\n225946|0.59722\n225947|0.43056\n225948|0.43056\n225949|0.5\n225950|0.72222\n225951|0.75\n225952|0.013889\n225953|0\n225954|0.48611\n225955|0.47222\n225956|0.76389\n225957|0.88889\n225958|0.65278\n225959|0.5\n225960|0.76389\n225961|0.83333\n225962|0.30556\n225963|0.125\n225964|0.30556\n225965|0.13889\n225966|0.45833\n225967|0.81944\n225968|0.77778\n225969|0.5\n225970|0.22222\n225971|0.29167\n225972|0.43056\n225973|0.81944\n225974|0.19444\n225975|0.5\n225976|0.5\n225977|0.5\n225978|0.5\n225979|0.36111\n225980|0.72222\n225981|0.48611\n225982|0.58333\n225983|0.26389\n225984|0.27778\n225985|0.45833\n225986|0.48611\n225987|0.5\n225988|0.44444\n225989|0.5\n225990|0.5\n225991|0.055556\n225992|0.125\n225993|0.041667\n225994|0.041667\n225995|0.013889\n225996|0.069444\n225997|0.83333\n225998|0.80556\n225999|0.91667\n226000|0.72222\n226001|0.83333\n226002|0.29167\n226003|0.18056\n226004|0.55556\n226005|0.27778\n226006|0.5\n226007|0.48611\n226008|0.47222\n226009|0.5\n226010|0.5\n226011|0.5\n226012|0.45833\n226013|0.72222\n226014|0.5\n226015|0.61111\n226016|0.625\n226017|0.66667\n226018|0.27778\n226019|0.55556\n226020|0.5\n226021|0.5\n226022|0.55556\n226023|0.5\n226024|0.5\n226025|0.51389\n226026|0.58333\n226027|0.40278\n226028|0.55556\n226029|0.5\n226030|0.44444\n226031|0.51389\n226032|0.5\n226033|0.5\n226034|0.5\n226035|0.45833\n226036|0.52778\n226037|0.48611\n226038|0.5\n226039|0.5\n226040|0.44444\n226041|0.58333\n226042|0.5\n226043|0.5\n226044|0.5\n226045|0.5\n226046|0.55556\n226047|0.73611\n226048|0.88889\n226049|0.5\n226050|0.5\n226051|0.44444\n226052|0.47222\n226053|0.33333\n226054|0.66667\n226055|0.29167\n226056|0.27778\n226057|0.055556\n226058|0.11111\n226059|0.90278\n226060|0.86111\n226061|0.5\n226062|0.77778\n226063|0.63889\n226064|0.55556\n226065|0.69444\n226066|0.59722\n226067|0.34722\n226068|0.097222\n226069|0.30556\n226070|0.22222\n226071|0.83333\n226072|0.33333\n226073|0.31944\n226074|0.34722\n226075|0.625\n226076|0.56944\n226077|0.26389\n226078|0.72222\n226079|0.66667\n226080|0.5\n226081|0.86111\n226082|0.52778\n226083|0.097222\n226084|0.55556\n226085|0.68056\n226086|0.5\n226087|0.70833\n226088|0.16667\n226089|0.40278\n226090|0.43056\n226091|0.5\n226092|0.15278\n226093|0.75\n226094|0.5\n226095|0.54167\n226096|0.5\n226097|0.16667\n226098|0.34722\n226099|0.59722\n226100|0.083333\n226101|0.45833\n226102|0.5\n226103|0.5\n226104|0.5\n226105|0.5\n226106|0.5\n226107|0.58333\n226108|0.72222\n226109|0.27778\n226110|0.84722\n226111|0.72222\n226112|0.59722\n226113|0.43056\n226114|0.58333\n226115|0.73611\n226116|0.91667\n226117|0.875\n226118|0.77778\n226119|0.55556\n226120|0.20833\n226121|0.5\n226122|0.5\n226123|0.55556\n226124|0.027778\n226125|0.83333\n226126|0.75\n226127|0.15278\n226128|0.27778\n226129|0.52778\n226130|0.5\n226131|0.41667\n226132|0.27778\n226133|0.38889\n226134|0.5\n226135|0.59722\n226136|0.73611\n226137|0.29167\n226138|0.40278\n226139|0.16667\n226140|0.125\n226141|0.18056\n226142|0.84722\n226143|0.5\n226144|0.73611\n226145|0.79167\n226146|0.55556\n226147|0.11111\n226148|0.41667\n226149|0.41667\n226150|0.44444\n226151|0.55556\n226152|0.23611\n226153|0.18056\n226154|0.5\n226155|0.5\n226156|0.83333\n226157|0.80556\n226158|0.56944\n226159|0.5\n226160|0.5\n226161|0.5\n226162|0.44444\n226163|0.5\n226164|0.5\n226165|0.70833\n226166|0.69444\n226167|0.51389\n226168|0.5\n226169|0.84722\n226170|0.47222\n226171|0.51389\n226172|0.5\n226173|0.55556\n226174|0.44444\n226175|0.29167\n226176|0.5\n226177|0.88889\n226178|0.38889\n226179|0.16667\n226180|0.55556\n226181|0.55556\n226182|0.22222\n226183|0.19444\n226184|0.22222\n226185|0.33333\n226186|0.94444\n226187|0.41667\n226188|0.16667\n226189|0.54167\n226190|0.55556\n226191|0.55556\n226192|0.16667\n226193|0.13889\n226194|0.041667\n226195|0.13889\n226196|0.5\n226197|0.73611\n226198|0.72222\n226199|0.27778\n226200|0.97222\n226201|0.83333\n226202|0.81944\n226203|0.68056\n226204|0.94444\n226205|0.875\n226206|0.84722\n226207|0.58333\n226208|0.70833\n226209|0.5\n226210|0.29167\n226211|0.29167\n226212|0.54167\n226213|0.40278\n226214|0.55556\n226215|0.79167\n226216|0.79167\n226217|0.77778\n226218|0.5\n226219|0.68056\n226220|0.18056\n226221|0.84722\n226222|0.34722\n226223|0.5\n226224|0.84722\n226225|0.79167\n226226|0.59722\n226227|0.069444\n226228|0.70833\n226229|0.61111\n226230|0.72222\n226231|0.83333\n226232|0.90278\n226233|0.16667\n226234|0.56944\n226235|0.41667\n226236|0.55556\n226237|0.80556\n226238|0.34722\n226239|0.18056\n226240|0.069444\n226241|0.77778\n226242|0.26389\n226243|0.65278\n226244|0.70833\n226245|0.68056\n226246|0.44444\n226247|0.48611\n226248|0.18056\n226249|0.81944\n226250|0.5\n226251|0.27778\n226252|0.19444\n226253|0.16667\n226254|0.30556\n226255|0.19444\n226256|0.16667\n226257|0.30556\n226258|0.31944\n226259|0.66667\n226260|0.5\n226261|0.61111\n226262|0.69444\n226263|0.79167\n226264|0.27778\n226265|0.70833\n226266|0.66667\n226267|0.63889\n226268|0.625\n226269|0.73611\n226270|0.27778\n226271|0.5\n226272|0.88889\n226273|0.36111\n226274|0.375\n226275|0.54167\n226276|0.61111\n226277|0.47222\n226278|0.69444\n226279|0.80556\n226280|0.77778\n226281|0.13889\n226282|0.77778\n226283|0.26389\n226284|0.15278\n226285|0.45833\n226286|0.25\n226287|0.15278\n226288|0.77778\n226289|0.44444\n226290|0.27778\n226291|0.66667\n226292|0.5\n226293|0.65278\n226294|0.5\n226295|0.55556\n226296|0.52778\n226297|0.54167\n226298|0.88889\n226299|0.88889\n226300|0.83333\n226301|0.61111\n226302|0.61111\n226303|0.91667\n226304|0.86111\n226305|0.5\n226306|0.20833\n226307|0.18056\n226308|0.41667\n226309|0.22222\n226310|0.43056\n226311|0.77778\n226312|0.125\n226313|0.47222\n226314|0.51389\n226315|0.5\n226316|0.45833\n226317|0.76389\n226318|0.80556\n226319|0.5\n226320|0.58333\n226321|0.75\n226322|0.68056\n226323|0.73611\n226324|0.33333\n226325|0.47222\n226326|0.19444\n226327|0.33333\n226328|0.61111\n226329|0.51389\n226330|0.70833\n226331|0.75\n226332|0.84722\n226333|0.90278\n226334|0.125\n226335|0.19444\n226336|0.72222\n226337|0.13889\n226338|0\n226339|0.11111\n226340|0.23611\n226341|0.63889\n226342|0.20833\n226343|0.5\n226344|0.84722\n226345|0.77778\n226346|0.54167\n226347|0.31944\n226348|0.30556\n226349|0.61111\n226350|0.69444\n226351|0.34722\n226352|0.66667\n226353|0.625\n226354|0.76389\n226355|0.11111\n226356|0.5\n226357|0.26389\n226358|0.80556\n226359|0.86111\n226360|0.80556\n226361|0.013889\n226362|0.33333\n226363|0.66667\n226364|0.625\n226365|0.83333\n226366|0.375\n226367|0.48611\n226368|0.34722\n226369|0.41667\n226370|0.43056\n226371|0.43056\n226372|0.15278\n226373|0.88889\n226374|0.83333\n226375|0.875\n226376|0.80556\n226377|0.75\n226378|0.33333\n226379|0.18056\n226380|0.47222\n226381|0.68056\n226382|0.44444\n226383|0.30556\n226384|0.44444\n226385|0.61111\n226386|0.15278\n226387|0.125\n226388|0.20833\n226389|0.30556\n226390|0.52778\n226391|0.38889\n226392|0.38889\n226393|0.44444\n226394|0.125\n226395|0.5\n226396|0.041667\n226397|0.77778\n226398|0.52778\n226399|0.55556\n226400|0.5\n226401|0.61111\n226402|0.61111\n226403|0.59722\n226404|0.63889\n226405|0.55556\n226406|0.73611\n226407|0.84722\n226408|0.80556\n226409|0.27778\n226410|0.54167\n226411|0.76389\n226412|0.65278\n226413|0.51389\n226414|0.11111\n226415|0.75\n226416|0.27778\n226417|0.43056\n226418|0.72222\n226419|0.69444\n226420|0.55556\n226421|0.55556\n226422|0.47222\n226423|0.44444\n226424|0.5\n226425|0.15278\n226426|0.625\n226427|0.11111\n226428|0.36111\n226429|0.125\n226430|0.125\n226431|0.875\n226432|0.63889\n226433|0.83333\n226434|0.84722\n226435|0.40278\n226436|0.16667\n226437|0.5\n226438|0.73611\n226439|0.68056\n226440|0.61111\n226441|0.30556\n226442|0.23611\n226443|0.22222\n226444|0.44444\n226445|0.19444\n226446|0.27778\n226447|0.23611\n226448|0.22222\n226449|0.36111\n226450|0.27778\n226451|0.26389\n226452|0.29167\n226453|0.5\n226454|0.48611\n226455|0.5\n226456|0.5\n226457|0.41667\n226458|0.20833\n226459|0.55556\n226460|0.59722\n226461|0.125\n226462|0.72222\n226463|0.72222\n226464|0.69444\n226465|0.5\n226466|0.5\n226467|0.80556\n226468|0.77778\n226469|0.20833\n226470|0.61111\n226471|0.61111\n226472|0.33333\n226473|0.36111\n226474|0.52778\n226475|0.22222\n226476|0.33333\n226477|0.38889\n226478|0.84722\n226479|0.61111\n226480|0.41667\n226481|0.66667\n226482|0.22222\n226483|0.5\n226484|0.22222\n226485|0.54167\n226486|0.22222\n226487|0.055556\n226488|0.77778\n226489|0.91667\n226490|0.80556\n226491|0.5\n226492|0.61111\n226493|0.47222\n226494|0.25\n226495|0.34722\n226496|0.5\n226497|0.44444\n226498|0.11111\n226499|0.30556\n226500|0.52778\n226501|0.73611\n226502|0.65278\n226503|0.34722\n226504|0.33333\n226505|0.26389\n226506|0.22222\n226507|0.66667\n226508|0.65278\n226509|0.625\n226510|0.79167\n226511|0.23611\n226512|0.38889\n226513|0.5\n226514|0.16667\n226515|0.31944\n226516|0\n226517|0.5\n226518|0.26389\n226519|0.40278\n226520|0.22222\n226521|0.125\n226522|0.80556\n226523|0.79167\n226524|0.44444\n226525|0.43056\n226526|0.48611\n226527|0.56944\n226528|0.63889\n226529|0.5\n226530|0.90278\n226531|0.54167\n226532|0.38889\n226533|0.29167\n226534|0.27778\n226535|0.26389\n226536|0.125\n226537|0.25\n226538|0.40278\n226539|0.625\n226540|0.30556\n226541|0.5\n226542|0.88889\n226543|0.5\n226544|0.16667\n226545|0.055556\n226546|0.77778\n226547|0.61111\n226548|0.81944\n226549|0.77778\n226550|0.5\n226551|0.72222\n226552|0.22222\n226553|0.33333\n226554|0.29167\n226555|0.34722\n226556|0.55556\n226557|0.11111\n226558|0.77778\n226559|0.27778\n226560|0.61111\n226561|0.69444\n226562|0.22222\n226563|0.84722\n226564|0.125\n226565|0.76389\n226566|0.66667\n226567|0.013889\n226568|0.26389\n226569|0.16667\n226570|0.70833\n226571|0.76389\n226572|0.76389\n226573|0.51389\n226574|0.33333\n226575|0.83333\n226576|0.72222\n226577|0.72222\n226578|0.875\n226579|0.76389\n226580|0.83333\n226581|0.91667\n226582|0.95833\n226583|0.16667\n226584|0.84722\n226585|0.36111\n226586|0.36111\n226587|0.61111\n226588|0.61111\n226589|0.76389\n226590|0.44444\n226591|0.5\n226592|0.77778\n226593|0.70833\n226594|0.72222\n226595|0.83333\n226596|0.80556\n226597|0.625\n226598|0.5\n226599|0.11111\n226600|0.40278\n226601|0.44444\n226602|0.33333\n226603|0.30556\n226604|0.16667\n226605|0.27778\n226606|0.055556\n226607|0.84722\n226608|0.66667\n226609|0.59722\n226610|0.47222\n226611|0.5\n226612|0.29167\n226613|0.72222\n226614|0.5\n226615|0.375\n226616|0.22222\n226617|0.36111\n226618|0.44444\n226619|0.34722\n226620|0.44444\n226621|0.33333\n226622|0.13889\n226623|0.5\n226624|0.22222\n226625|0.33333\n226626|0.58333\n226627|0.5\n226628|0.44444\n226629|0.27778\n226630|0.5\n226631|0.75\n226632|0.77778\n226633|0.69444\n226634|0.40278\n226635|0.38889\n226636|0.45833\n226637|0.29167\n226638|0.33333\n226639|0.54167\n226640|0.54167\n226641|0.20833\n226642|0.51389\n226643|0.51389\n226644|0.70833\n226645|0.26389\n226646|0.83333\n226647|0.93056\n226648|0.79167\n226649|0.73611\n226650|0.45833\n226651|0.55556\n226652|0.83333\n226653|0.77778\n226654|0.055556\n226655|0.88889\n226656|0.79167\n226657|0.625\n226658|0.84722\n226659|0.16667\n226660|0.41667\n226661|0.16667\n226662|0.33333\n226663|0.68056\n226664|0.66667\n226665|0.34722\n226666|0.30556\n226667|0.66667\n226668|0.70833\n226669|0.38889\n226670|0.29167\n226671|0.81944\n226672|0.76389\n226673|0.069444\n226674|0.63889\n226675|0.83333\n226676|0.55556\n226677|0.68056\n226678|0.56944\n226679|0.81944\n226680|0.56944\n226681|0.58333\n226682|0.30556\n226683|0.77778\n226684|0.5\n226685|0.91667\n226686|0.29167\n226687|0.5\n226688|0.375\n226689|0.33333\n226690|0.69444\n226691|0.56944\n226692|0.30556\n226693|0.48611\n226694|0.72222\n226695|0.26389\n226696|0.125\n226697|0.097222\n226698|0.16667\n226699|0.68056\n226700|0.75\n226701|0.25\n226702|0.22222\n226703|0.15278\n226704|0.16667\n226705|0.25\n226706|0.61111\n226707|0.72222\n226708|0.55556\n226709|0.375\n226710|0.29167\n226711|0.36111\n226712|0.5\n226713|0.5\n226714|0.23611\n226715|0.40278\n226716|0.22222\n226717|0.43056\n226718|0.31944\n226719|0.125\n226720|0\n226721|0.083333\n226722|0.90278\n226723|0.77778\n226724|0.70833\n226725|0.81944\n226726|0.5\n226727|0.22222\n226728|0.27778\n226729|0.58333\n226730|0.66667\n226731|0.54167\n226732|0.54167\n226733|0.77778\n226734|0.33333\n226735|0.20833\n226736|0.22222\n226737|0.38889\n226738|0.27778\n226739|0.16667\n226740|0.26389\n226741|0.11111\n226742|0.5\n226743|0.5\n226744|0.77778\n226745|0.097222\n226746|0.097222\n226747|0.5\n226748|0.66667\n226749|0.44444\n226750|0.5\n226751|0.5\n226752|0.38889\n226753|0.26389\n226754|0.47222\n226755|0.097222\n226756|0.18056\n226757|0.083333\n226758|0.23611\n226759|0.23611\n226760|0.31944\n226761|0.72222\n226762|0.5\n226763|0.23611\n226764|0.15278\n226765|0.5\n226766|0.5\n226767|0.51389\n226768|0.5\n226769|0.51389\n226770|0.5\n226771|0.5\n226772|0.51389\n226773|0.80556\n226774|0.5\n226775|0.88889\n226776|0.625\n226777|0.5\n226778|0.5\n226779|0.41667\n226780|0.5\n226781|0.55556\n226782|0.55556\n226783|0.38889\n226784|0.65278\n226785|0.5\n226786|0.5\n226787|0.66667\n226788|0.61111\n226789|0.34722\n226790|0.38889\n226791|0.30556\n226792|0.27778\n226793|0.5\n226794|0.5\n226795|0.5\n226796|0.5\n226797|0.22222\n226798|0.40278\n226799|0.20833\n226800|0.44444\n226801|0.55556\n226802|0.66667\n226803|0.77778\n226804|0.5\n226805|0.5\n226806|0.33333\n226807|0.20833\n226808|0.34722\n226809|0.61111\n226810|0.95833\n226811|0.80556\n226812|0.72222\n226813|0.625\n226814|0.29167\n226815|0.38889\n226816|0.75\n226817|0.72222\n226818|0.5\n226819|0.625\n226820|0.055556\n226821|0.041667\n226822|0.5\n226823|0.5\n226824|0.54167\n226825|0.5\n226826|0.43056\n226827|0.15278\n226828|0.083333\n226829|0.13889\n226830|0.5\n226831|0.5\n226832|1\n226833|0.88889\n226834|0.75\n226835|0.27778\n226836|0.58333\n226837|0.5\n226838|0.48611\n226839|0.44444\n226840|0.20833\n226841|0.52778\n226842|0.5\n226843|0.5\n226844|0.5\n226845|0.5\n226846|0.47222\n226847|0.5\n226848|0.68056\n226849|0.5\n226850|0.5\n226851|0.5\n226852|0.5\n226853|0.5\n226854|0.44444\n226855|0.5\n226856|0.76389\n226857|0.44444\n226858|0.33333\n226859|0.34722\n226860|0.5\n226861|0.125\n226862|0.44444\n226863|0.375\n226864|0.5\n226865|0.38889\n226866|0.69444\n226867|0.11111\n226868|0.30556\n226869|0.19444\n226870|0.125\n226871|0.34722\n226872|0.069444\n226873|0.26389\n226874|0.26389\n226875|0.47222\n226876|0.375\n226877|0.23611\n226878|0.79167\n226879|0.40278\n226880|0.41667\n226881|0.43056\n226882|0.5\n226883|0.13889\n226884|0.5\n226885|0.44444\n226886|0.31944\n226887|0.5\n226888|0.38889\n226889|0.5\n226890|0.5\n226891|0.44444\n226892|0.125\n226893|0.16667\n226894|0.16667\n226895|0.11111\n226896|0.5\n226897|0.5\n226898|0.5\n226899|0.5\n226900|0.5\n226901|0.58333\n226902|0.5\n226903|0.5\n226904|0.51389\n226905|0.5\n226906|0.48611\n226907|0.5\n226908|0.58333\n226909|0.055556\n226910|0.20833\n226911|0.5\n226912|0.44444\n226913|0.5\n226914|0.83333\n226915|0.63889\n226916|0.5\n226917|0.83333\n226918|0.5\n226919|0.75\n226920|0.69444\n226921|0.5\n226922|0.5\n226923|0.5\n226924|0.5\n226925|0.5\n226926|0.5\n226927|0.36111\n226928|0.40278\n226929|0.38889\n226930|0.083333\n226931|0.041667\n226932|0.36111\n226933|0.38889\n226934|0.47222\n226935|0.5\n226936|0.65278\n226937|0.40278\n226938|0.5\n226939|0.5\n226940|0.625\n226941|0.80556\n226942|0.77778\n226943|0.63889\n226944|0.875\n226945|0.5\n226946|0.5\n226947|0.48611\n226948|0.56944\n226949|0.56944\n226950|0.5\n226951|0.5\n226952|0.45833\n226953|0.45833\n226954|0.48611\n226955|0.61111\n226956|0.625\n226957|0.083333\n226958|0.20833\n226959|0.5\n226960|0.5\n226961|0.5\n226962|0.5\n226963|0.5\n226964|0.51389\n226965|0.56944\n226966|0.625\n226967|0.55556\n226968|0.20833\n226969|0.5\n226970|0.19444\n226971|0.13889\n226972|0.11111\n226973|0.68056\n226974|0.51389\n226975|0.29167\n226976|0.5\n226977|0.44444\n226978|0.47222\n226979|0.41667\n226980|0.51389\n226981|0.23611\n226982|0.30556\n226983|0.38889\n226984|0.86111\n226985|0.75\n226986|0.16667\n226987|0.041667\n226988|0.25\n226989|0.097222\n226990|0.33333\n226991|0.5\n226992|0.43056\n226993|0.29167\n226994|0.055556\n226995|0.88889\n226996|0.84722\n226997|0.70833\n226998|0.79167\n226999|0.125\n227000|0.58333\n227001|0.5\n227002|0.61111\n227003|0.27778\n227004|0.36111\n227005|0.31944\n227006|0.27778\n227007|0.27778\n227008|0.55556\n227009|0.5\n227010|0.34722\n227011|0.81944\n227012|0.63889\n227013|0.51389\n227014|0.38889\n227015|0.48611\n227016|0.66667\n227017|0.33333\n227018|0.375\n227019|0.26389\n227020|0.5\n227021|0.38889\n227022|0.22222\n227023|0.027778\n227024|0.31944\n227025|0.33333\n227026|0.13889\n227027|0.25\n227028|0.625\n227029|0.66667\n227030|0.52778\n227031|0.16667\n227032|0.47222\n227033|0.875\n227034|0.77778\n227035|0.48611\n227036|0.34722\n227037|0.625\n227038|0.45833\n227039|0.66667\n227040|0.38889\n227041|0.5\n227042|0.48611\n227043|0.73611\n227044|0.83333\n227045|0.56944\n227046|0.055556\n227047|0.76389\n227048|0.75\n227049|0.23611\n227050|0.31944\n227051|0.31944\n227052|0.5\n227053|0.65278\n227054|0.31944\n227055|0.59722\n227056|0.29167\n227057|0.88889\n227058|0.45833\n227059|0.68056\n227060|0.77778\n227061|0.70833\n227062|0.33333\n227063|0.29167\n227064|0.30556\n227065|0.5\n227066|0.5\n227067|0.23611\n227068|0.5\n227069|0.44444\n227070|0.5\n227071|0.16667\n227072|0.625\n227073|0.65278\n227074|0.45833\n227075|0.20833\n227076|0.375\n227077|0.38889\n227078|0.47222\n227079|0.40278\n227080|0.041667\n227081|0.83333\n227082|0.43056\n227083|0.18056\n227084|0.77778\n227085|0.41667\n227086|0.86111\n227087|0.20833\n227088|0.75\n227089|0.75\n227090|0.15278\n227091|0.5\n227092|0.38889\n227093|0.13889\n227094|0.47222\n227095|0.26389\n227096|0.48611\n227097|0.41667\n227098|0.75\n227099|0.69444\n227100|0.18056\n227101|0.55556\n227102|0.5\n227103|0.34722\n227104|0.055556\n227105|0.5\n227106|0.22222\n227107|0.27778\n227108|0.16667\n227109|0.097222\n227110|0.31944\n227111|0.56944\n227112|0.5\n227113|0.52778\n227114|0.83333\n227115|0.44444\n227116|0.72222\n227117|0.5\n227118|0.47222\n227119|0.41667\n227120|0.27778\n227121|0.54167\n227122|0.61111\n227123|0.375\n227124|0.68056\n227125|0.58333\n227126|0.30556\n227127|0.43056\n227128|0.58333\n227129|0.63889\n227130|0.5\n227131|0.68056\n227132|0.52778\n227133|0.76389\n227134|0.51389\n227135|0.58333\n227136|0.26389\n227137|0.5\n227138|0.5\n227139|0.5\n227140|0.5\n227141|0.23611\n227142|0.31944\n227143|0.5\n227144|0.31944\n227145|0.5\n227146|0.5\n227147|0.68056\n227148|0.44444\n227149|0.44444\n227150|0.38889\n227151|0.44444\n227152|0.5\n227153|0.5\n227154|0.5\n227155|0.26389\n227156|0.125\n227157|0.20833\n227158|0.013889\n227159|0.16667\n227160|0.80556\n227161|0.70833\n227162|0.84722\n227163|0.68056\n227164|0.63889\n227165|0.63889\n227166|0.33333\n227167|0.38889\n227168|0.54167\n227169|0.5\n227170|0.083333\n227171|0.125\n227172|0.41667\n227173|0.48611\n227174|0.5\n227175|0.47222\n227176|0.26389\n227177|0.22222\n227178|0.5\n227179|0.51389\n227180|0.75\n227181|0.18056\n227182|0.20833\n227183|0.5\n227184|0.38889\n227185|0.44444\n227186|0.33333\n227187|0.80556\n227188|0.77778\n227189|0.31944\n227190|0.44444\n227191|0.44444\n227192|0.70833\n227193|0.63889\n227194|0.63889\n227195|0.58333\n227196|0.68056\n227197|0.125\n227198|0.54167\n227199|0.5\n227200|0.40278\n227201|0.55556\n227202|0.33333\n227203|0.22222\n227204|0.13889\n227205|0.54167\n227206|0.79167\n227207|0.72222\n227208|0.59722\n227209|0.36111\n227210|0.20833\n227211|0.5\n227212|0.5\n227213|0.54167\n227214|0.5\n227215|0.79167\n227216|0.23611\n227217|0.38889\n227218|0.55556\n227219|0.5\n227220|0.5\n227221|0.5\n227222|0.5\n227223|0.45833\n227224|0.40278\n227225|0.44444\n227226|0.59722\n227227|0.41667\n227228|0.63889\n227229|0.5\n227230|0.79167\n227231|0.70833\n227232|0.58333\n227233|0.86111\n227234|0.58333\n227235|0.5\n227236|0.33333\n227237|0.51389\n227238|0.5\n227239|1\n227240|0.5\n227241|0.5\n227242|0.86111\n227243|0.55556\n227244|0.45833\n227245|0\n227246|0.11111\n227247|0.73611\n227248|0.63889\n227249|0.55556\n227250|0.23611\n227251|0.38889\n227252|0.77778\n227253|0.34722\n227254|0.72222\n227255|0.38889\n227256|0.625\n227257|0.5\n227258|0.625\n227259|0.41667\n227260|0.20833\n227261|0.069444\n227262|0.18056\n227263|0.11111\n227264|0.55556\n227265|0.375\n227266|0.81944\n227267|0.29167\n227268|0.44444\n227269|0.27778\n227270|0.55556\n227271|0.44444\n227272|0.055556\n227273|0.5\n227274|0.55556\n227275|0.79167\n227276|0.90278\n227277|0.27778\n227278|0.097222\n227279|0.31944\n227280|0.44444\n227281|0.625\n227282|0.5\n227283|0.34722\n227284|0.34722\n227285|0.33333\n227286|0.66667\n227287|0.66667\n227288|0.69444\n227289|0.54167\n227290|0.61111\n227291|0.59722\n227292|0.875\n227293|0.83333\n227294|0.15278\n227295|0.70833\n227296|0.51389\n227297|0.45833\n227298|0.72222\n227299|0.52778\n227300|0.29167\n227301|0.76389\n227302|0.77778\n227303|0.66667\n227304|0.48611\n227305|0.48611\n227306|0.44444\n227307|0.5\n227308|0.083333\n227309|0.11111\n227310|0.61111\n227311|0.45833\n227312|0.36111\n227313|0.5\n227314|0.80556\n227315|0.52778\n227316|0.55556\n227317|0.61111\n227318|0.5\n227319|0.5\n227320|0.22222\n227321|0.36111\n227322|0.44444\n227323|0.27778\n227324|0.055556\n227325|0.5\n227326|0.5\n227327|0.5\n227328|0.5\n227329|0.5\n227330|0.5\n227331|0.5\n227332|0.30556\n227333|0.44444\n227334|0.61111\n227335|0.5\n227336|0.5\n227337|0.47222\n227338|0.38889\n227339|0.5\n227340|0.5\n227341|0.5\n227342|0.45833\n227343|0.5\n227344|0.33333\n227345|0.70833\n227346|0.73611\n227347|0.5\n227348|0.41667\n227349|0.5\n227350|0.51389\n227351|0.48611\n227352|0.22222\n227353|0.5\n227354|0.5\n227355|0.40278\n227356|0.56944\n227357|0.47222\n227358|0.5\n227359|0.625\n227360|0.43056\n227361|0.875\n227362|0.16667\n227363|0.77778\n227364|0.5\n227365|0.30556\n227366|0.80556\n227367|0.31944\n227368|0.5\n227369|0.5\n227370|0.51389\n227371|0.70833\n227372|0.5\n227373|0.75\n227374|0.5\n227375|0.5\n227376|0.72222\n227377|0.51389\n227378|0.18056\n227379|0.5\n227380|0.5\n227381|0.16667\n227382|0.59722\n227383|0.44444\n227384|0.29167\n227385|0.77778\n227386|0.44444\n227387|0.5\n227388|0.54167\n227389|0.375\n227390|0.66667\n227391|0.34722\n227392|0.77778\n227393|0.5\n227394|0.069444\n227395|0.083333\n227396|0.22222\n227397|0\n227398|0.38889\n227399|0.5\n227400|0.5\n227401|0.22222\n227402|0.31944\n227403|0.18056\n227404|0.40278\n227405|0.81944\n227406|0.5\n227407|0.5\n227408|0.66667\n227409|0.5\n227410|0.5\n227411|0.38889\n227412|0\n227413|0.5\n227414|0.16667\n227415|0.11111\n227416|0.77778\n227417|0.81944\n227418|0.5\n227419|0.65278\n227420|0.75\n227421|0.16667\n227422|0.19444\n227423|0.30556\n227424|0.19444\n227425|0.041667\n227426|0.013889\n227427|0.5\n227428|0.5\n227429|0.34722\n227430|0.77778\n227431|0.26389\n227432|0.33333\n227433|0.55556\n227434|0.68056\n227435|0.5\n227436|0.56944\n227437|0.22222\n227438|0.55556\n227439|0.5\n227440|0.72222\n227441|0.40278\n227442|0.51389\n227443|0.70833\n227444|0.5\n227445|0.91667\n227446|0.91667\n227447|0.77778\n227448|0.48611\n227449|0.5\n227450|0.73611\n227451|0.5\n227452|0.65278\n227453|0.5\n227454|0.5\n227455|0.5\n227456|0.44444\n227457|0.34722\n227458|0.55556\n227459|0.61111\n227460|0.5\n227461|0.22222\n227462|0.40278\n227463|0.5\n227464|0.88889\n227465|0.5\n227466|0.33333\n227467|0.43056\n227468|0.5\n227469|0.93056\n227470|0.25\n227471|0.5\n227472|0.73611\n227473|0.31944\n227474|0.5\n227475|0.33333\n227476|0.95833\n227477|0.47222\n227478|0.66667\n227479|0.68056\n227480|0.34722\n227481|0.27778\n227482|0.55556\n227483|0.63889\n227484|0.52778\n227485|0.81944\n227486|0.5\n227487|0.40278\n227488|0.45833\n227489|0.81944\n227490|0.80556\n227491|0.33333\n227492|0.58333\n227493|0.58333\n227494|0.55556\n227495|0.5\n227496|0.69444\n227497|0.55556\n227498|0.59722\n227499|0.38889\n227500|0.45833\n227501|0.59722\n227502|0.5\n227503|0.94444\n227504|0.52778\n227505|0.5\n227506|0.20833\n227507|0.5\n227508|0.43056\n227509|0.55556\n227510|0.47222\n227511|0.5\n227512|0.5\n227513|0.5\n227514|0.5\n227515|0.11111\n227516|0.5\n227517|0.55556\n227518|0.44444\n227519|0.47222\n227520|0.55556\n227521|0.44444\n227522|0.5\n227523|0.58333\n227524|0.5\n227525|0.5\n227526|0.59722\n227527|0.54167\n227528|0.5\n227529|0.40278\n227530|0.26389\n227531|0.59722\n227532|0.58333\n227533|0.5\n227534|0.61111\n227535|0.41667\n227536|0.875\n227537|0.66667\n227538|0.86111\n227539|0.5\n227540|0.72222\n227541|0.5\n227542|0.44444\n227543|0.38889\n227544|0.61111\n227545|0.65278\n227546|0.76389\n227547|0.54167\n227548|0.5\n227549|0.5\n227550|0.51389\n227551|0.30556\n227552|0.34722\n227553|0.70833\n227554|0.83333\n227555|0.5\n227556|0.58333\n227557|0.5\n227558|0.63889\n227559|0.61111\n227560|0.5\n227561|0.52778\n227562|0.54167\n227563|0.54167\n227564|0.86111\n227565|0.83333\n227566|0.72222\n227567|0.55556\n227568|0.5\n227569|0.27778\n227570|0.38889\n227571|0.5\n227572|0.68056\n227573|0.5\n227574|0.5\n227575|0.5\n227576|0.58333\n227577|0.16667\n227578|0.5\n227579|0.5\n227580|0.625\n227581|0.77778\n227582|0.81944\n227583|0.5\n227584|0.81944\n227585|0.5\n227586|0.47222\n227587|0.5\n227588|0.13889\n227589|0.30556\n227590|0.30556\n227591|0.51389\n227592|0.26389\n227593|0.11111\n227594|0.44444\n227595|0.61111\n227596|0.98611\n227597|0.88889\n227598|0.5\n227599|0.5\n227600|0.5\n227601|0.58333\n227602|0.72222\n227603|0.5\n227604|0.56944\n227605|0.11111\n227606|0.5\n227607|0.5\n227608|0.27778\n227609|0.375\n227610|0.36111\n227611|0.68056\n227612|0.5\n227613|0.54167\n227614|0.51389\n227615|0.5\n227616|0.54167\n227617|0.5\n227618|0.66667\n227619|0.59722\n227620|0.5\n227621|0.59722\n227622|0.5\n227623|0.51389\n227624|0.44444\n227625|0.43056\n227626|0.52778\n227627|0.47222\n227628|0.51389\n227629|0.5\n227630|0.5\n227631|0.5\n227632|0.19444\n227633|0.41667\n227634|0.94444\n227635|0.88889\n227636|0.5\n227637|0.52778\n227638|0.5\n227639|0.5\n227640|0.48611\n227641|0.5\n227642|0.45833\n227643|0.44444\n227644|0.5\n227645|0.23611\n227646|0.5\n227647|0.44444\n227648|0.27778\n227649|0.013889\n227650|0.45833\n227651|0.55556\n227652|0.69444\n227653|0.55556\n227654|0.5\n227655|0.51389\n227656|0.52778\n227657|0.51389\n227658|0.44444\n227659|0.34722\n227660|0.44444\n227661|0.52778\n227662|0.5\n227663|0.43056\n227664|0.51389\n227665|0.40278\n227666|0.44444\n227667|0.45833\n227668|0.65278\n227669|0.48611\n227670|0.55556\n227671|0.52778\n227672|0.5\n227673|0.5\n227674|0.61111\n227675|0.22222\n227676|0.5\n227677|0.38889\n227678|0.5\n227679|0.44444\n227680|0.73611\n227681|0.40278\n227682|0.44444\n227683|0.375\n227684|0.45833\n227685|0.44444\n227686|0.52778\n227687|0.29167\n227688|0.5\n227689|0.54167\n227690|0.375\n227691|0.38889\n227692|0.31944\n227693|0.5\n227694|0.40278\n227695|0.027778\n227696|0.22222\n227697|0.77778\n227698|0.48611\n227699|0.125\n227700|0.55556\n227701|0.63889\n227702|0.5\n227703|0.5\n227704|0.44444\n227705|0.5\n227706|0.5\n227707|0.55556\n227708|0.27778\n227709|0.5\n227710|0.375\n227711|0.43056\n227712|0.5\n227713|0.45833\n227714|0.5\n227715|0.68056\n227716|0.5\n227717|0.63889\n227718|0.5\n227719|0.61111\n227720|0.54167\n227721|0.41667\n227722|0.5\n227723|0.55556\n227724|0.44444\n227725|0.18056\n227726|0.5\n227727|0.51389\n227728|0.61111\n227729|0.54167\n227730|0.44444\n227731|0.51389\n227732|0.41667\n227733|0.5\n227734|0.33333\n227735|0.5\n227736|0.34722\n227737|0.34722\n227738|0.38889\n227739|0.27778\n227740|0.5\n227741|0.44444\n227742|0.59722\n227743|0.47222\n227744|0.5\n227745|0.56944\n227746|0.52778\n227747|0.76389\n227748|0.38889\n227749|0.34722\n227750|0.5\n227751|0.41667\n227752|0.55556\n227753|0.5\n227754|0.63889\n227755|0.5\n227756|0.54167\n227757|0.5\n227758|0.16667\n227759|0.15278\n227760|0.15278\n227761|0.16667\n227762|0.26389\n227763|0.083333\n227764|0.22222\n227765|0.11111\n227766|0.33333\n227767|0.36111\n227768|0.58333\n227769|0.83333\n227770|0.70833\n227771|0.52778\n227772|0.31944\n227773|0.15278\n227774|0.20833\n227775|0.38889\n227776|0.41667\n227777|0.34722\n227778|0.25\n227779|0.41667\n227780|0.44444\n227781|0.51389\n227782|0.51389\n227783|0.55556\n227784|0.20833\n227785|0.19444\n227786|0.41667\n227787|0.16667\n227788|0.44444\n227789|0.16667\n227790|0.16667\n227791|0.5\n227792|0.47222\n227793|0.56944\n227794|0.5\n227795|0.375\n227796|0.79167\n227797|0.63889\n227798|0.55556\n227799|0.5\n227800|0.5\n227801|0.31944\n227802|0.5\n227803|0.55556\n227804|0.5\n227805|0.81944\n227806|0.5\n227807|0.5\n227808|0.5\n227809|0.69444\n227810|0.5\n227811|0.81944\n227812|0.73611\n227813|0.625\n227814|0.5\n227815|0.47222\n227816|0.80556\n227817|0.45833\n227818|0.30556\n227819|0.33333\n227820|0.38889\n227821|0.47222\n227822|0.34722\n227823|0.23611\n227824|0.58333\n227825|0.54167\n227826|0.5\n227827|0.5\n227828|0.73611\n227829|0.61111\n227830|0.61111\n227831|0.75\n227832|0.72222\n227833|0.77778\n227834|0.84722\n227835|0.875\n227836|0.55556\n227837|0.5\n227838|0.43056\n227839|0.19444\n227840|0.375\n227841|0.055556\n227842|0.75\n227843|0.73611\n227844|0.33333\n227845|0.5\n227846|0.66667\n227847|0.34722\n227848|0.70833\n227849|0.375\n227850|0.16667\n227851|0.55556\n227852|0.52778\n227853|0.70833\n227854|0.66667\n227855|0.59722\n227856|0.83333\n227857|0.72222\n227858|0.5\n227859|0.33333\n227860|0.375\n227861|0.15278\n227862|0.81944\n227863|0.83333\n227864|0.88889\n227865|0.83333\n227866|0.33333\n227867|0.31944\n227868|0.41667\n227869|0.51389\n227870|0.11111\n227871|0.22222\n227872|0.041667\n227873|0.70833\n227874|0.75\n227875|0.79167\n227876|0.5\n227877|0.38889\n227878|0.26389\n227879|0.38889\n227880|0.23611\n227881|0.59722\n227882|0.55556\n227883|0.73611\n227884|0.79167\n227885|0.27778\n227886|0.375\n227887|0.72222\n227888|0.55556\n227889|0.38889\n227890|0.61111\n227891|0.45833\n227892|0.69444\n227893|0.52778\n227894|0.56944\n227895|0.41667\n227896|0.40278\n227897|0.5\n227898|0.86111\n227899|0.81944\n227900|0.47222\n227901|0.5\n227902|0.5\n227903|0.55556\n227904|0.875\n227905|0.65278\n227906|0.5\n227907|0.54167\n227908|0.77778\n227909|0.38889\n227910|0.58333\n227911|0.70833\n227912|0.5\n227913|0.80556\n227914|0.75\n227915|0.72222\n227916|0.70833\n227917|0.79167\n227918|0.44444\n227919|0.80556\n227920|0.79167\n227921|0.79167\n227922|0.45833\n227923|0.70833\n227924|0.5\n227925|0.22222\n227926|0.36111\n227927|0.43056\n227928|0.26389\n227929|0.83333\n227930|0.75\n227931|0.75\n227932|0.83333\n227933|0.63889\n227934|0.77778\n227935|0.84722\n227936|0.80556\n227937|0.94444\n227938|0.58333\n227939|0.94444\n227940|1\n227941|0.5\n227942|0.77778\n227943|0.80556\n227944|0.80556\n227945|0.54167\n227946|0.40278\n227947|0.73611\n227948|0.5\n227949|0.47222\n227950|0.72222\n227951|0.73611\n227952|0.27778\n227953|0.5\n227954|0.29167\n227955|0.5\n227956|0.55556\n227957|0.51389\n227958|0.55556\n227959|0.59722\n227960|0.5\n227961|0.55556\n227962|0.55556\n227963|0.55556\n227964|0.75\n227965|0.48611\n227966|0.5\n227967|0.5\n227968|0.86111\n227969|0.875\n227970|0.31944\n227971|0.5\n227972|0.91667\n227973|0.5\n227974|0.88889\n227975|0.5\n227976|0.5\n227977|0.30556\n227978|0.86111\n227979|0.5\n227980|0.80556\n227981|0.56944\n227982|0.48611\n227983|0.61111\n227984|0.84722\n227985|0.72222\n227986|0.76389\n227987|0.55556\n227988|0.58333\n227989|0.52778\n227990|0.72222\n227991|0.70833\n227992|0.40278\n227993|0.5\n227994|0.54167\n227995|0.44444\n227996|0.58333\n227997|0.88889\n227998|0.51389\n227999|0.33333\n228000|0.15278\n228001|0.097222\n228002|0.70833\n228003|0.70833\n228004|0.55556\n228005|0.40278\n228006|0.38889\n228007|0.33333\n228008|0.44444\n228009|0.38889\n228010|0.5\n228011|0.19444\n228012|0.875\n228013|0.55556\n228014|0.34722\n228015|0.40278\n228016|0.33333\n228017|0.27778\n228018|0.81944\n228019|0.56944\n228020|0.75\n228021|0.81944\n228022|0.90278\n228023|0.56944\n228024|0.5\n228025|0.5\n228026|0.55556\n228027|0\n228028|0.23611\n228029|0.70833\n228030|0.5\n228031|0.083333\n228032|0.47222\n228033|0.43056\n228034|0.47222\n228035|0.56944\n228036|0.70833\n228037|0.055556\n228038|0.27778\n228039|0.61111\n228040|0.55556\n228041|0.5\n228042|0.56944\n228043|0.875\n228044|0.5\n228045|0.29167\n228046|0.83333\n228047|0.5\n228048|0.47222\n228049|0.61111\n228050|0.63889\n228051|0.61111\n228052|0.5\n228053|0.51389\n228054|0.72222\n228055|0.5\n228056|0.55556\n228057|0.55556\n228058|0.55556\n228059|0.875\n228060|0.81944\n228061|0.30556\n228062|0.36111\n228063|0.11111\n228064|0.5\n228065|0.5\n228066|0.45833\n228067|0.5\n228068|0.79167\n228069|0.88889\n228070|0.88889\n228071|0.44444\n228072|0.5\n228073|0.38889\n228074|0.375\n228075|0.027778\n228076|0.54167\n228077|0.56944\n228078|0.59722\n228079|0.13889\n228080|0.77778\n228081|0.63889\n228082|0.69444\n228083|0.69444\n228084|0.76389\n228085|0.23611\n228086|0.041667\n228087|0.5\n228088|0.55556\n228089|0.59722\n228090|0.48611\n228091|0.65278\n228092|0.47222\n228093|0.375\n228094|0.40278\n228095|0.61111\n228096|0.76389\n228097|0.86111\n228098|0.5\n228099|0.52778\n228100|0.15278\n228101|0.61111\n228102|0.63889\n228103|0.80556\n228104|0.31944\n228105|0.55556\n228106|0.33333\n228107|0.45833\n228108|0.48611\n228109|0.375\n228110|0.5\n228111|0.55556\n228112|0.34722\n228113|0.61111\n228114|0.20833\n228115|0.55556\n228116|0.5\n228117|0.91667\n228118|0.94444\n228119|0.31944\n228120|0.81944\n228121|0.88889\n228122|0.69444\n228123|0.55556\n228124|0.33333\n228125|0.11111\n228126|0.13889\n228127|0.44444\n228128|0.36111\n228129|0.5\n228130|0.27778\n228131|0.30556\n228132|0.5\n228133|0.5\n228134|0.83333\n228135|0.76389\n228136|0.41667\n228137|0.5\n228138|0.5\n228139|0.5\n228140|0.69444\n228141|0.68056\n228142|0.59722\n228143|0.61111\n228144|0.125\n228145|0.43056\n228146|0.54167\n228147|0.54167\n228148|0.18056\n228149|0.13889\n228150|0.54167\n228151|0.69444\n228152|0.86111\n228153|0.51389\n228154|0.13889\n228155|0.33333\n228156|0.47222\n228157|0.31944\n228158|0.5\n228159|0.625\n228160|0.44444\n228161|0.55556\n228162|0.83333\n228163|0.41667\n228164|0.88889\n228165|0.84722\n228166|0.44444\n228167|0.26389\n228168|0.79167\n228169|0.55556\n228170|0.16667\n228171|0.16667\n228172|0.18056\n228173|0.25\n228174|0.61111\n228175|0.65278\n228176|0.81944\n228177|0.66667\n228178|0.83333\n228179|0.75\n228180|0.23611\n228181|0.86111\n228182|0.41667\n228183|0.44444\n228184|0.68056\n228185|0.72222\n228186|0.79167\n228187|0.5\n228188|0.34722\n228189|0.5\n228190|0.52778\n228191|0.77778\n228192|0.81944\n228193|0.875\n228194|0.48611\n228195|0.66667\n228196|0.59722\n228197|0.75\n228198|0.61111\n228199|0.44444\n228200|0.59722\n228201|0.52778\n228202|0.90278\n228203|0.83333\n228204|0.69444\n228205|0.83333\n228206|0.5\n228207|0.77778\n228208|0.41667\n228209|0.5\n228210|0.33333\n228211|0.125\n228212|0.11111\n228213|0.86111\n228214|0.84722\n228215|0.48611\n228216|0.44444\n228217|0.40278\n228218|0.72222\n228219|0.45833\n228220|0.52778\n228221|0.5\n228222|0.55556\n228223|0.83333\n228224|0.91667\n228225|0.65278\n228226|0.83333\n228227|0.69444\n228228|0.84722\n228229|0.38889\n228230|0.38889\n228231|0.34722\n228232|0.5\n228233|0.68056\n228234|0.55556\n228235|0.33333\n228236|0.72222\n228237|0.5\n228238|0.81944\n228239|0.16667\n228240|0.27778\n228241|0.44444\n228242|0.77778\n228243|0.5\n228244|0.41667\n228245|0.25\n228246|0.5\n228247|0.77778\n228248|0.58333\n228249|0.83333\n228250|0.58333\n228251|0.51389\n228252|0.94444\n228253|0.43056\n228254|0.52778\n228255|0.48611\n228256|0.5\n228257|0.44444\n228258|0.72222\n228259|0.52778\n228260|0.30556\n228261|0.5\n228262|0.65278\n228263|0.80556\n228264|0.88889\n228265|0.83333\n228266|0.20833\n228267|0.54167\n228268|0.5\n228269|0.44444\n228270|0.30556\n228271|0.5\n228272|0.52778\n228273|0.5\n228274|0.5\n228275|0.41667\n228276|0.55556\n228277|0.5\n228278|0.51389\n228279|0.5\n228280|0.5\n228281|0.5\n228282|0.5\n228283|0.5\n228284|0.5\n228285|0.63889\n228286|0.5\n228287|0.5\n228288|0.47222\n228289|0.5\n228290|0.41667\n228291|0.63889\n228292|0.68056\n228293|0.5\n228294|0.48611\n228295|0.55556\n228296|0.38889\n228297|0.56944\n228298|0.45833\n228299|0.27778\n228300|0.36111\n228301|0.65278\n228302|0.625\n228303|0.29167\n228304|0.51389\n228305|0.27778\n228306|0.5\n228307|0.5\n228308|0.54167\n228309|0.55556\n228310|0.59722\n228311|0.80556\n228312|0.44444\n228313|0.44444\n228314|0.61111\n228315|0.54167\n228316|0.5\n228317|0.5\n228318|0.5\n228319|0.5\n228320|0.44444\n228321|0.5\n228322|0.5\n228323|0.33333\n228324|0.26389\n228325|0.041667\n228326|0.5\n228327|0.33333\n228328|0.16667\n228329|0.61111\n228330|0.77778\n228331|0.47222\n228332|0.36111\n228333|0.33333\n228334|0.56944\n228335|0.44444\n228336|0.30556\n228337|0.33333\n228338|0.5\n228339|0.13889\n228340|0.48611\n228341|0.36111\n228342|0.91667\n228343|0.73611\n228344|0.79167\n228345|0.5\n228346|0.55556\n228347|0.55556\n228348|0.19444\n228349|0.13889\n228350|0.29167\n228351|0.58333\n228352|0.69444\n228353|0.48611\n228354|0.72222\n228355|0.5\n228356|0.56944\n228357|0.5\n228358|0.81944\n228359|0.5\n228360|0.5\n228361|0.61111\n228362|0.83333\n228363|0.625\n228364|0.73611\n228365|0.70833\n228366|0.55556\n228367|0.5\n228368|0.5\n228369|0.5\n228370|0.38889\n228371|0.5\n228372|0.76389\n228373|0.59722\n228374|0.41667\n228375|0.375\n228376|0.38889\n228377|0.055556\n228378|0.65278\n228379|0.34722\n228380|0.36111\n228381|0.33333\n228382|0.41667\n228383|0.5\n228384|0.61111\n228385|0.73611\n228386|0.5\n228387|0.5\n228388|0.44444\n228389|0.61111\n228390|0.11111\n228391|0.069444\n228392|0.59722\n228393|0.36111\n228394|0.30556\n228395|0.29167\n228396|0.36111\n228397|0.5\n228398|0.45833\n228399|0.19444\n228400|0.52778\n228401|0.5\n228402|0.5\n228403|0.41667\n228404|0.375\n228405|0.58333\n228406|0.5\n228407|0.44444\n228408|0.38889\n228409|0.5\n228410|0.63889\n228411|0.43056\n228412|0.26389\n228413|0.055556\n228414|0.72222\n228415|0.44444\n228416|0.5\n228417|0.77778\n228418|0.77778\n228419|0.875\n228420|0.52778\n228421|0.5\n228422|0.5\n228423|0.5\n228424|0.47222\n228425|0.5\n228426|0.48611\n228427|0.5\n228428|0.5\n228429|0.5\n228430|0.61111\n228431|0.55556\n228432|0.26389\n228433|0.5\n228434|0.30556\n228435|0.54167\n228436|0.5\n228437|0.5\n228438|0.68056\n228439|0.083333\n228440|0.5\n228441|0.5\n228442|0.52778\n228443|0.5\n228444|0.55556\n228445|0.11111\n228446|0.5\n228447|0.54167\n228448|0.61111\n228449|0.66667\n228450|0.52778\n228451|0.5\n228452|0.44444\n228453|0.36111\n228454|0.55556\n228455|0.41667\n228456|0.38889\n228457|0.55556\n228458|0.125\n228459|0.73611\n228460|0.47222\n228461|0.73611\n228462|0.66667\n228463|0.61111\n228464|0.52778\n228465|0.61111\n228466|0.5\n228467|0.77778\n228468|0.36111\n228469|0.51389\n228470|0.34722\n228471|0.72222\n228472|0.55556\n228473|0.5\n228474|0.18056\n228475|0.75\n228476|0.36111\n228477|0.68056\n228478|0.41667\n228479|0.66667\n228480|0.66667\n228481|0.80556\n228482|0.5\n228483|0.81944\n228484|0.38889\n228485|0.31944\n228486|0.63889\n228487|0.30556\n228488|0.27778\n228489|0.33333\n228490|0.54167\n228491|0.38889\n228492|0.33333\n228493|0.40278\n228494|0.77778\n228495|0.38889\n228496|0.58333\n228497|0.77778\n228498|0.52778\n228499|0.5\n228500|0.61111\n228501|0.40278\n228502|0.125\n228503|0.94444\n228504|0.5\n228505|0.22222\n228506|0.22222\n228507|0.5\n228508|0.66667\n228509|0.63889\n228510|0.66667\n228511|0.055556\n228512|0.125\n228513|0.52778\n228514|0.5\n228515|0.5\n228516|0.48611\n228517|0.5\n228518|0.5\n228519|0.51389\n228520|0.5\n228521|0.16667\n228522|0.48611\n228523|0.48611\n228524|0.5\n228525|0.72222\n228526|0.52778\n228527|0.72222\n228528|0.59722\n228529|0.375\n228530|0.5\n228531|0.43056\n228532|0.5\n228533|0.44444\n228534|0.56944\n228535|0.68056\n228536|0.11111\n228537|0.069444\n228538|0.15278\n228539|0.27778\n228540|0.19444\n228541|0.75\n228542|0.61111\n228543|0.76389\n228544|0.58333\n228545|0.18056\n228546|0.73611\n228547|0.5\n228548|0.375\n228549|0.66667\n228550|0.63889\n228551|0.61111\n228552|0.5\n228553|0.45833\n228554|0.55556\n228555|0.52778\n228556|0.375\n228557|0.11111\n228558|0.041667\n228559|0.013889\n228560|0.15278\n228561|0.75\n228562|0.84722\n228563|0.79167\n228564|0.70833\n228565|0.86111\n228566|0.81944\n228567|0.73611\n228568|0.75\n228569|0.83333\n228570|0.84722\n228571|0.91667\n228572|0.88889\n228573|0.5\n228574|0.29167\n228575|0.47222\n228576|0.5\n228577|0.5\n228578|0.48611\n228579|0.26389\n228580|0.5\n228581|0.72222\n228582|0.44444\n228583|0.375\n228584|0.44444\n228585|0.72222\n228586|0.25\n228587|0.30556\n228588|0.52778\n228589|0.58333\n228590|0.94444\n228591|0.83333\n228592|0.52778\n228593|0.41667\n228594|0.23611\n228595|0.70833\n228596|0.47222\n228597|0.76389\n228598|0.80556\n228599|0.77778\n228600|0.72222\n228601|0.75\n228602|0.66667\n228603|0.72222\n228604|0.55556\n228605|0.63889\n228606|0.72222\n228607|0.47222\n228608|0.40278\n228609|0.5\n228610|0.47222\n228611|0.5\n228612|0.5\n228613|0.66667\n228614|0.61111\n228615|0.79167\n228616|0.47222\n228617|0.16667\n228618|0.52778\n228619|0.56944\n228620|0.61111\n228621|0.55556\n228622|0.5\n228623|0.25\n228624|0.61111\n228625|0.83333\n228626|0.51389\n228627|0.5\n228628|0.5\n228629|0.5\n228630|0.5\n228631|0.5\n228632|0.5\n228633|0.5\n228634|0.5\n228635|0.5\n228636|0.5\n228637|0.55556\n228638|0.27778\n228639|0.5\n228640|0.375\n228641|0.18056\n228642|0.51389\n228643|0.625\n228644|0.875\n228645|0.61111\n228646|0.41667\n228647|0.34722\n228648|0.5\n228649|0.5\n228650|0.25\n228651|0.72222\n228652|0.66667\n228653|0.44444\n228654|0.52778\n228655|0.73611\n228656|0.5\n228657|0.61111\n228658|0.68056\n228659|0.40278\n228660|0.48611\n228661|0.72222\n228662|0.5\n228663|0.29167\n228664|0.19444\n228665|0.5\n228666|0.875\n228667|0.5\n228668|0.5\n228669|0.5\n228670|0.54167\n228671|0.5\n228672|0.18056\n228673|0.54167\n228674|0.23611\n228675|0.36111\n228676|0.16667\n228677|0.61111\n228678|0.54167\n228679|0.45833\n228680|0.18056\n228681|0.69444\n228682|0.66667\n228683|0.59722\n228684|0.83333\n228685|0.5\n228686|0.33333\n228687|0.20833\n228688|0.18056\n228689|0.38889\n228690|0.43056\n228691|0.61111\n228692|0.5\n228693|0.27778\n228694|0.5\n228695|0.5\n228696|0.5\n228697|0.5\n228698|0.41667\n228699|0.5\n228700|0.5\n228701|0.61111\n228702|0.5\n228703|0.44444\n228704|0.48611\n228705|0.5\n228706|0.54167\n228707|0.58333\n228708|0.47222\n228709|0.54167\n228710|0.59722\n228711|0.33333\n228712|0.44444\n228713|0.38889\n228714|0.5\n228715|0.44444\n228716|0.5\n228717|0.44444\n228718|0.22222\n228719|0.25\n228720|0.61111\n228721|0.875\n228722|0.52778\n228723|0.5\n228724|0.5\n228725|0.25\n228726|0.43056\n228727|0.5\n228728|0.47222\n228729|0.5\n228730|0.48611\n228731|0.13889\n228732|0.66667\n228733|0.45833\n228734|0.5\n228735|0.26389\n228736|0.125\n228737|0.625\n228738|0.81944\n228739|0.5\n228740|0.5\n228741|0.5\n228742|0.5\n228743|0.20833\n228744|0.47222\n228745|0.41667\n228746|0.61111\n228747|0.77778\n228748|0.83333\n228749|0.63889\n228750|0.63889\n228751|0.5\n228752|0.56944\n228753|0.33333\n228754|0.70833\n228755|0.52778\n228756|0.5\n228757|0.5\n228758|0.80556\n228759|0.59722\n228760|0.63889\n228761|0.36111\n228762|0.375\n228763|0.33333\n228764|0.38889\n228765|0.34722\n228766|0.34722\n228767|0.5\n228768|0.5\n228769|0.5\n228770|0.5\n228771|0.93056\n228772|0.83333\n228773|0.73611\n228774|0.51389\n228775|0.79167\n228776|0.83333\n228777|0.94444\n228778|0.33333\n228779|0.41667\n228780|0.88889\n228781|0.94444\n228782|0.88889\n228783|0.94444\n228784|0.48611\n228785|0.41667\n228786|0.54167\n228787|0.70833\n228788|0.81944\n228789|0.65278\n228790|0.84722\n228791|0.77778\n228792|0.61111\n228793|0.61111\n228794|0.68056\n228795|0.625\n228796|0.51389\n228797|0.51389\n228798|0.38889\n228799|0.81944\n228800|0.95833\n228801|0.97222\n228802|0.95833\n228803|0.86111\n228804|0.88889\n228805|0.5\n228806|0.41667\n228807|0.44444\n228808|0.45833\n228809|0.38889\n228810|0.19444\n228811|0.22222\n228812|0.875\n228813|0.16667\n228814|0.5\n228815|0.20833\n228816|0.5\n228817|0.83333\n228818|0.83333\n228819|0.83333\n228820|0.58333\n228821|0.36111\n228822|0.76389\n228823|0.16667\n228824|0.15278\n228825|0.44444\n228826|0.5\n228827|0.5\n228828|0.44444\n228829|0.31944\n228830|0.38889\n228831|0.5\n228832|0.5\n228833|0.58333\n228834|0.58333\n228835|0.72222\n228836|0.5\n228837|0.5\n228838|0.77778\n228839|0.76389\n228840|0.88889\n228841|0.625\n228842|0.5\n228843|0.45833\n228844|0.45833\n228845|0.55556\n228846|0.51389\n228847|0.19444\n228848|0.22222\n228849|0.33333\n228850|0.5\n228851|0.58333\n228852|0.5\n228853|0.52778\n228854|0.55556\n228855|0.80556\n228856|0.61111\n228857|0.5\n228858|0.48611\n228859|0.44444\n228860|0.72222\n228861|0.65278\n228862|0.15278\n228863|0.18056\n228864|0.83333\n228865|0.77778\n228866|0.55556\n228867|0.68056\n228868|0.5\n228869|0.5\n228870|0.5\n228871|0.23611\n228872|0.5\n228873|0.70833\n228874|0.5\n228875|0.75\n228876|0.76389\n228877|0.73611\n228878|0.73611\n228879|0.5\n228880|0.5\n228881|0.38889\n228882|0.61111\n228883|0.5\n228884|0.5\n228885|0.66667\n228886|0.52778\n228887|0.083333\n228888|0.5\n228889|0.5\n228890|0.5\n228891|0.55556\n228892|0.66667\n228893|0.5\n228894|0.5\n228895|0.55556\n228896|0.5\n228897|0.5\n228898|0.52778\n228899|0.5\n228900|0.48611\n228901|0.5\n228902|0.55556\n228903|0.59722\n228904|0.45833\n228905|0.72222\n228906|0.61111\n228907|0.51389\n228908|0.34722\n228909|0.44444\n228910|0.55556\n228911|0.013889\n228912|0.5\n228913|0.69444\n228914|0.19444\n228915|0.72222\n228916|0.19444\n228917|0.44444\n228918|0.68056\n228919|0.5\n228920|0.33333\n228921|0.77778\n228922|0.54167\n228923|0.27778\n228924|0.86111\n228925|0.5\n228926|0.375\n228927|0.5\n228928|0.59722\n228929|0.48611\n228930|0.5\n228931|0.16667\n228932|0.11111\n228933|0.23611\n228934|0.38889\n228935|0.69444\n228936|0.20833\n228937|0.15278\n228938|0.5\n228939|0.55556\n228940|0.77778\n228941|0.70833\n228942|0.48611\n228943|0.61111\n228944|0.5\n228945|0.29167\n228946|0.5\n228947|0.55556\n228948|0.30556\n228949|0.44444\n228950|0.48611\n228951|0.5\n228952|0.51389\n228953|0.18056\n228954|0.38889\n228955|0.38889\n228956|0.083333\n228957|0.61111\n228958|0.22222\n228959|0.70833\n228960|0.5\n228961|0.5\n228962|0.48611\n228963|0.38889\n228964|0.41667\n228965|0.34722\n228966|0.22222\n228967|0.069444\n228968|0.16667\n228969|0.5\n228970|0.45833\n228971|0.5\n228972|0.84722\n228973|0.38889\n228974|0.41667\n228975|0.58333\n228976|0.48611\n228977|0.83333\n228978|0.70833\n228979|0.77778\n228980|0.80556\n228981|0.83333\n228982|0.5\n228983|0.5\n228984|0.41667\n228985|0.51389\n228986|0.65278\n228987|0.5\n228988|0.15278\n228989|0.61111\n228990|0.125\n228991|0.69444\n228992|0.5\n228993|0.5\n228994|0.55556\n228995|0.5\n228996|0.83333\n228997|0.36111\n228998|0.61111\n228999|0.47222\n229000|0.79167\n229001|0.72222\n229002|0.30556\n229003|0.18056\n229004|0.15278\n229005|0.5\n229006|0.18056\n229007|0.5\n229008|0.5\n229009|0.45833\n229010|0.5\n229011|0.375\n229012|0.61111\n229013|0.5\n229014|0.73611\n229015|0.30556\n229016|0.5\n229017|0.44444\n229018|0.5\n229019|0.625\n229020|0.75\n229021|0.48611\n229022|0.069444\n229023|0.083333\n229024|0.013889\n229025|0.61111\n229026|0.54167\n229027|0.5\n229028|0.5\n229029|0.5\n229030|0.5\n229031|0.55556\n229032|0.43056\n229033|0.26389\n229034|0.56944\n229035|0.5\n229036|0.44444\n229037|0.47222\n229038|0.26389\n229039|0.36111\n229040|0.5\n229041|0.40278\n229042|0.30556\n229043|0.45833\n229044|0.80556\n229045|0.5\n229046|0.54167\n229047|0.38889\n229048|0.625\n229049|0.54167\n229050|0.55556\n229051|0.5\n229052|0.59722\n229053|0.51389\n229054|0.58333\n229055|0.55556\n229056|0.22222\n229057|0.5\n229058|0.48611\n229059|0.40278\n229060|0.5\n229061|0.70833\n229062|0.54167\n229063|0.20833\n229064|0.52778\n229065|0.5\n229066|0.29167\n229067|0.33333\n229068|0.25\n229069|0.069444\n229070|0.58333\n229071|0.44444\n229072|0.43056\n229073|0.34722\n229074|0.23611\n229075|0.27778\n229076|0.27778\n229077|0.54167\n229078|0.73611\n229079|0.5\n229080|0.625\n229081|0.625\n229082|0.5\n229083|0.5\n229084|0.27778\n229085|0.13889\n229086|0.84722\n229087|0.34722\n229088|0.55556\n229089|0.63889\n229090|0.13889\n229091|0.51389\n229092|0.52778\n229093|0.5\n229094|0.56944\n229095|0.29167\n229096|0.44444\n229097|0.33333\n229098|0.47222\n229099|0.5\n229100|0.5\n229101|0.5\n229102|0.5\n229103|0.41667\n229104|0.58333\n229105|0.38889\n229106|0.083333\n229107|0.40278\n229108|0.26389\n229109|0.125\n229110|0.25\n229111|0.16667\n229112|0.097222\n229113|0.76389\n229114|0.73611\n229115|0.83333\n229116|0.5\n229117|0.45833\n229118|0.19444\n229119|0.13889\n229120|0.25\n229121|0.44444\n229122|0.75\n229123|0.5\n229124|0.5\n229125|0.5\n229126|0.5\n229127|0.90278\n229128|0.5\n229129|0.5\n229130|0.5\n229131|0.51389\n229132|0.47222\n229133|0.5\n229134|0.58333\n229135|0.54167\n229136|0.47222\n229137|0.34722\n229138|0.625\n229139|0.47222\n229140|0.48611\n229141|0.56944\n229142|0.45833\n229143|0.22222\n229144|0.22222\n229145|0.22222\n229146|0.61111\n229147|0.52778\n229148|0.54167\n229149|0.20833\n229150|0.44444\n229151|0.83333\n229152|0.875\n229153|0.27778\n229154|0.41667\n229155|0.125\n229156|0.19444\n229157|0.33333\n229158|0.34722\n229159|0.43056\n229160|0.27778\n229161|0.55556\n229162|0.38889\n229163|0.33333\n229164|0.66667\n229165|0.22222\n229166|0.43056\n229167|0.44444\n229168|0.81944\n229169|0.44444\n229170|0.38889\n229171|0.52778\n229172|0.36111\n229173|0.48611\n229174|0.72222\n229175|0.41667\n229176|0.47222\n229177|0.19444\n229178|0.38889\n229179|0.66667\n229180|0.41667\n229181|0.5\n229182|0.44444\n229183|0.79167\n229184|0.75\n229185|0.75\n229186|0.55556\n229187|0.5\n229188|0.54167\n229189|0.5\n229190|0.5\n229191|0.5\n229192|0.5\n229193|0.15278\n229194|0.47222\n229195|0.38889\n229196|0.5\n229197|0.34722\n229198|0.48611\n229199|0.33333\n229200|0.11111\n229201|0.5\n229202|0.51389\n229203|0.75\n229204|0.55556\n229205|0.68056\n229206|0.31944\n229207|0.55556\n229208|0.5\n229209|0.27778\n229210|0.45833\n229211|0.5\n229212|0.75\n229213|0.5\n229214|0.5\n229215|0.125\n229216|0.30556\n229217|0.55556\n229218|0.55556\n229219|0.63889\n229220|0.5\n229221|0.58333\n229222|0.73611\n229223|0.5\n229224|0.55556\n229225|0.56944\n229226|0.94444\n229227|0.44444\n229228|0.5\n229229|0.63889\n229230|0.5\n229231|0.66667\n229232|0.69444\n229233|0.31944\n229234|0.29167\n229235|0.44444\n229236|0.65278\n229237|0.75\n229238|0.81944\n229239|0.86111\n229240|0.84722\n229241|0.66667\n229242|0.70833\n229243|0.79167\n229244|0.23611\n229245|0.083333\n229246|0.5\n229247|0.097222\n229248|0.34722\n229249|0.72222\n229250|0.29167\n229251|0.22222\n229252|0.083333\n229253|0.5\n229254|0.55556\n229255|0.5\n229256|0.44444\n229257|0.55556\n229258|0.18056\n229259|0.41667\n229260|0.625\n229261|0.5\n229262|0.5\n229263|0.5\n229264|0.47222\n229265|0.41667\n229266|0.29167\n229267|0.41667\n229268|0.625\n229269|0.625\n229270|0.5\n229271|0.45833\n229272|0.25\n229273|0.5\n229274|0.36111\n229275|0.25\n229276|0.22222\n229277|0.15278\n229278|0.26389\n229279|0.26389\n229280|0.125\n229281|0.19444\n229282|0.34722\n229283|0.66667\n229284|0.375\n229285|0.5\n229286|0.47222\n229287|0.43056\n229288|0.66667\n229289|0.43056\n229290|0.36111\n229291|0.22222\n229292|0.33333\n229293|0.38889\n229294|0.22222\n229295|0.44444\n229296|0.73611\n229297|0.69444\n229298|0.88889\n229299|0.61111\n229300|0.26389\n229301|0.29167\n229302|0.47222\n229303|0.81944\n229304|0.44444\n229305|0.58333\n229306|0.25\n229307|0.68056\n229308|0.63889\n229309|0.61111\n229310|0.52778\n229311|0.55556\n229312|0.38889\n229313|0.54167\n229314|0.69444\n229315|0.13889\n229316|0.68056\n229317|0.44444\n229318|0.5\n229319|0.18056\n229320|0.48611\n229321|0.55556\n229322|0.375\n229323|0.56944\n229324|0.38889\n229325|0.11111\n229326|0.15278\n229327|0.25\n229328|0.47222\n229329|0.47222\n229330|0.5\n229331|0.5\n229332|0.47222\n229333|0.44444\n229334|0.52778\n229335|0.5\n229336|0.5\n229337|0.48611\n229338|0.38889\n229339|0.375\n229340|0.43056\n229341|0.47222\n229342|0.70833\n229343|0.70833\n229344|0.5\n229345|0.44444\n229346|0.47222\n229347|0.38889\n229348|0.52778\n229349|0.55556\n229350|0.55556\n229351|0.29167\n229352|0.36111\n229353|0.66667\n229354|0.61111\n229355|0.52778\n229356|0.5\n229357|0.54167\n229358|0.44444\n229359|0.63889\n229360|0.43056\n229361|0.5\n229362|0.83333\n229363|0.77778\n229364|0.47222\n229365|0.83333\n229366|0.83333\n229367|0.77778\n229368|0.77778\n229369|0.55556\n229370|0.77778\n229371|0.30556\n229372|0.27778\n229373|0.33333\n229374|0.38889\n229375|0.48611\n229376|0.48611\n229377|0.40278\n229378|0.44444\n229379|0.40278\n229380|0.38889\n229381|0.84722\n229382|0.68056\n229383|0.68056\n229384|0.33333\n229385|0.40278\n229386|0.48611\n229387|0.5\n229388|0.77778\n229389|0.44444\n229390|0.55556\n229391|0.44444\n229392|0.19444\n229393|0.63889\n229394|0.66667\n229395|0.5\n229396|0.5\n229397|0.083333\n229398|0.16667\n229399|0.41667\n229400|0.55556\n229401|0.55556\n229402|0.59722\n229403|0.5\n229404|0.61111\n229405|0.65278\n229406|0.5\n229407|0.52778\n229408|0.43056\n229409|0.375\n229410|0.73611\n229411|0.38889\n229412|0.5\n229413|0.33333\n229414|0.33333\n229415|0.5\n229416|0.44444\n229417|0.125\n229418|0.30556\n229419|0.40278\n229420|0.31944\n229421|0.125\n229422|0.77778\n229423|0.55556\n229424|0.61111\n229425|0.5\n229426|0.40278\n229427|0.5\n229428|0.625\n229429|0.65278\n229430|0.38889\n229431|0.125\n229432|0.40278\n229433|0.59722\n229434|0.13889\n229435|0.54167\n229436|0.75\n229437|0.29167\n229438|0.375\n229439|0.56944\n229440|0.5\n229441|0.81944\n229442|0.88889\n229443|0.5\n229444|0.5\n229445|0.84722\n229446|0.76389\n229447|0.38889\n229448|0.80556\n229449|0.51389\n229450|0.23611\n229451|0.26389\n229452|0.75\n229453|0.875\n229454|0.68056\n229455|0.5\n229456|0.72222\n229457|0.84722\n229458|0.55556\n229459|0.625\n229460|0.29167\n229461|0.44444\n229462|0.45833\n229463|0.81944\n229464|0.45833\n229465|0.5\n229466|0.72222\n229467|0.75\n229468|0.55556\n229469|0.70833\n229470|0.75\n229471|0.56944\n229472|0.5\n229473|0.65278\n229474|0.61111\n229475|0.58333\n229476|0.52778\n229477|0.86111\n229478|0.16667\n229479|0.77778\n229480|0.70833\n229481|0.55556\n229482|0.5\n229483|0.86111\n229484|0.81944\n229485|0.47222\n229486|0.31944\n229487|0.77778\n229488|0.5\n229489|0.5\n229490|0.70833\n229491|0.041667\n229492|0.11111\n229493|0.055556\n229494|0.33333\n229495|0.23611\n229496|0.18056\n229497|0.55556\n229498|0.5\n229499|0.66667\n229500|0.5\n229501|0.68056\n229502|0.5\n229503|0.055556\n229504|0.55556\n229505|0.58333\n229506|0.45833\n229507|0.55556\n229508|0.38889\n229509|0.66667\n229510|0.625\n229511|0.18056\n229512|0.16667\n229513|0.91667\n229514|0.91667\n229515|0.65278\n229516|0.68056\n229517|0.25\n229518|0.54167\n229519|0.34722\n229520|0.16667\n229521|0.52778\n229522|0.055556\n229523|0.5\n229524|0.58333\n229525|0.59722\n229526|0.76389\n229527|0.5\n229528|0.097222\n229529|0.5\n229530|0.33333\n229531|0.55556\n229532|0.5\n229533|0.33333\n229534|0.68056\n229535|0.58333\n229536|0.51389\n229537|0.33333\n229538|0.44444\n229539|0.48611\n229540|0.40278\n229541|0.45833\n229542|0.70833\n229543|0.27778\n229544|0.29167\n229545|0.33333\n229546|0.5\n229547|0.5\n229548|0.5\n229549|0.125\n229550|0.5\n229551|0.5\n229552|0.5\n229553|0.5\n229554|0.5\n229555|0.5\n229556|0.5\n229557|0.5\n229558|0.5\n229559|0.51389\n229560|0.5\n229561|0.55556\n229562|0.5\n229563|0.5\n229564|0.5\n229565|0.56944\n229566|0.5\n229567|0.5\n229568|0.51389\n229569|0.5\n229570|0.55556\n229571|0.54167\n229572|0.22222\n229573|0.625\n229574|0.36111\n229575|0.38889\n229576|0.66667\n229577|0.5\n229578|0.47222\n229579|0.76389\n229580|0.26389\n229581|0.5\n229582|0.47222\n229583|0.54167\n229584|0.5\n229585|0.31944\n229586|0.16667\n229587|0.5\n229588|0.5\n229589|0.30556\n229590|0.5\n229591|0.65278\n229592|0.56944\n229593|0.72222\n229594|0.375\n229595|0.11111\n229596|0.51389\n229597|0.19444\n229598|0.58333\n229599|0.5\n229600|0.54167\n229601|0.55556\n229602|0.5\n229603|0.5\n229604|0.18056\n229605|0.51389\n229606|0.41667\n229607|0.23611\n229608|0.027778\n229609|0.27778\n229610|0.44444\n229611|0.34722\n229612|0.30556\n229613|0.11111\n229614|0.80556\n229615|0.19444\n229616|0.13889\n229617|0.47222\n229618|0.5\n229619|0.16667\n229620|0.5\n229621|0.83333\n229622|0.055556\n229623|0.52778\n229624|0.76389\n229625|0.19444\n229626|0.44444\n229627|0.30556\n229628|0.59722\n229629|0.5\n229630|0.875\n229631|0.5\n229632|0.5\n229633|0.5\n229634|0.5\n229635|0.45833\n229636|0.69444\n229637|0.72222\n229638|0.5\n229639|0.65278\n229640|0.72222\n229641|0.80556\n229642|0.38889\n229643|0.59722\n229644|0.19444\n229645|0.61111\n229646|0.625\n229647|0.33333\n229648|0.375\n229649|0.40278\n229650|0.5\n229651|0.26389\n229652|0.40278\n229653|0.59722\n229654|0.55556\n229655|0.91667\n229656|0.58333\n229657|0.16667\n229658|0.83333\n229659|0.91667\n229660|0.30556\n229661|0.38889\n229662|0.33333\n229663|0.66667\n229664|0.55556\n229665|0.40278\n229666|0.27778\n229667|0.44444\n229668|0.38889\n229669|0.5\n229670|0.56944\n229671|0.44444\n229672|0.56944\n229673|0.56944\n229674|0.70833\n229675|0.55556\n229676|0.22222\n229677|0.44444\n229678|0.48611\n229679|0.5\n229680|0.11111\n229681|0.069444\n229682|0.5\n229683|0.625\n229684|0.56944\n229685|0.45833\n229686|0.26389\n229687|0.36111\n229688|0.33333\n229689|0.34722\n229690|0.45833\n229691|0.27778\n229692|0.097222\n229693|0.125\n229694|0.43056\n229695|0.65278\n229696|0.5\n229697|0.5\n229698|0.84722\n229699|0.77778\n229700|0.84722\n229701|0.38889\n229702|0.55556\n229703|0.23611\n229704|0.27778\n229705|0.55556\n229706|0.5\n229707|0.33333\n229708|0.5\n229709|0.66667\n229710|0.38889\n229711|0.47222\n229712|0.36111\n229713|0.27778\n229714|0.41667\n229715|0.19444\n229716|0.61111\n229717|0.34722\n229718|0.36111\n229719|0.22222\n229720|0.73611\n229721|0.55556\n229722|0.38889\n229723|0.48611\n229724|0.73611\n229725|0.48611\n229726|0.56944\n229727|0.88889\n229728|0.34722\n229729|0.30556\n229730|0.63889\n229731|0.72222\n229732|0.58333\n229733|0.61111\n229734|0.63889\n229735|0.56944\n229736|0.48611\n229737|0.51389\n229738|0.41667\n229739|0.41667\n229740|0.61111\n229741|0.38889\n229742|0.5\n229743|0.5\n229744|0.5\n229745|0.5\n229746|0.5\n229747|0.55556\n229748|0.52778\n229749|0.66667\n229750|0.22222\n229751|0.30556\n229752|0.68056\n229753|0.5\n229754|0.51389\n229755|0.5\n229756|0.44444\n229757|0.44444\n229758|0.34722\n229759|0.51389\n229760|0.38889\n229761|0.84722\n229762|0.69444\n229763|0.52778\n229764|0.43056\n229765|0.65278\n229766|0.61111\n229767|0.66667\n229768|0.59722\n229769|0.66667\n229770|0.48611\n229771|0.5\n229772|0.75\n229773|0.58333\n229774|0.73611\n229775|0.5\n229776|0.55556\n229777|0.5\n229778|0.51389\n229779|0.5\n229780|0.56944\n229781|0.45833\n229782|0.63889\n229783|0.69444\n229784|0.58333\n229785|0.75\n229786|0.15278\n229787|0.61111\n229788|0.625\n229789|0.79167\n229790|0.61111\n229791|0.5\n229792|0.5\n229793|0.5\n229794|0.45833\n229795|0.5\n229796|0.66667\n229797|0.40278\n229798|0.5\n229799|0.11111\n229800|0.30556\n229801|0.5\n229802|0.31944\n229803|0.23611\n229804|0.23611\n229805|0.16667\n229806|0.55556\n229807|0.38889\n229808|0.63889\n229809|0.51389\n229810|0.33333\n229811|0.66667\n229812|0.44444\n229813|0.5\n229814|0.5\n229815|0.51389\n229816|0.19444\n229817|0.22222\n229818|0.875\n229819|0.5\n229820|0.5\n229821|0.61111\n229822|0.31944\n229823|0.44444\n229824|0.5\n229825|0.5\n229826|0.51389\n229827|0.5\n229828|0.59722\n229829|0.66667\n229830|0.54167\n229831|0.48611\n229832|0.66667\n229833|0.40278\n229834|0.5\n229835|0.51389\n229836|0.61111\n229837|0.56944\n229838|0.56944\n229839|0.61111\n229840|0.73611\n229841|0.83333\n229842|0.81944\n229843|0.84722\n229844|0.65278\n229845|0.20833\n229846|0.22222\n229847|0.15278\n229848|0.13889\n229849|0.23611\n229850|0.26389\n229851|0.29167\n229852|0.15278\n229853|0.25\n229854|0.56944\n229855|0.55556\n229856|0.88889\n229857|0.5\n229858|0.5\n229859|0.5\n229860|0.59722\n229861|0.51389\n229862|0.29167\n229863|0.18056\n229864|0.16667\n229865|0.38889\n229866|0.5\n229867|0.5\n229868|0.56944\n229869|0.61111\n229870|0.55556\n229871|0.44444\n229872|0.58333\n229873|0.54167\n229874|0.15278\n229875|0.375\n229876|0.30556\n229877|0.5\n229878|0.5\n229879|0.52778\n229880|0.52778\n229881|0.52778\n229882|0.5\n229883|0.41667\n229884|0.55556\n229885|0.66667\n229886|0.69444\n229887|0.5\n229888|0.76389\n229889|0.48611\n229890|0.93056\n229891|0.625\n229892|0.5\n229893|0.13889\n229894|0.5\n229895|0.47222\n229896|0.5\n229897|0.41667\n229898|0.55556\n229899|0.33333\n229900|0.51389\n229901|0.19444\n229902|0.26389\n229903|0.375\n229904|0.44444\n229905|0.52778\n229906|0.61111\n229907|0.58333\n229908|0.36111\n229909|0.26389\n229910|0.34722\n229911|0.069444\n229912|0.013889\n229913|0.54167\n229914|0.31944\n229915|0.38889\n229916|0.68056\n229917|0.94444\n229918|0.80556\n229919|0.27778\n229920|0.26389\n229921|0.16667\n229922|0.5\n229923|0.44444\n229924|0.26389\n229925|0.55556\n229926|0.63889\n229927|0.83333\n229928|0.61111\n229929|0.48611\n229930|0.5\n229931|0.38889\n229932|0.81944\n229933|0.84722\n229934|0.56944\n229935|0.88889\n229936|0.80556\n229937|0.69444\n229938|0.80556\n229939|0.54167\n229940|0.5\n229941|0.55556\n229942|0.22222\n229943|0.33333\n229944|0.55556\n229945|0.38889\n229946|0.38889\n229947|0.5\n229948|0.5\n229949|0.47222\n229950|0.26389\n229951|0.80556\n229952|0.5\n229953|0.56944\n229954|0.30556\n229955|0.5\n229956|0.86111\n229957|0.63889\n229958|0.36111\n229959|0.44444\n229960|0.47222\n229961|0.069444\n229962|0.5\n229963|0.45833\n229964|0.59722\n229965|0.58333\n229966|0.25\n229967|0.22222\n229968|0.75\n229969|0.5\n229970|0.5\n229971|0.31944\n229972|0.58333\n229973|0.80556\n229974|0.70833\n229975|0.61111\n229976|0.51389\n229977|0.45833\n229978|0.38889\n229979|0.40278\n229980|0.44444\n229981|0.44444\n229982|0.76389\n229983|0.58333\n229984|0.41667\n229985|0.44444\n229986|0.19444\n229987|0.26389\n229988|0.40278\n229989|0.083333\n229990|0.44444\n229991|0.38889\n229992|0.5\n229993|0.47222\n229994|0.48611\n229995|0.40278\n229996|0.83333\n229997|0.65278\n229998|0.36111\n229999|0.5\n230000|0.5\n230001|0.5\n230002|0.48611\n230003|0.055556\n230004|0.51389\n230005|0.51389\n230006|0.63889\n230007|0.43056\n230008|0.5\n230009|0.76389\n230010|0.61111\n230011|0.5\n230012|0.5\n230013|0.61111\n230014|0.52778\n230015|0.88889\n230016|0.88889\n230017|0.88889\n230018|0.55556\n230019|0.77778\n230020|0.81944\n230021|0.88889\n230022|0.15278\n230023|0.47222\n230024|0.5\n230025|0.25\n230026|0.25\n230027|0.48611\n230028|0.5\n230029|0.40278\n230030|0.61111\n230031|0.61111\n230032|0.45833\n230033|0.59722\n230034|0.75\n230035|0.84722\n230036|0.66667\n230037|0.66667\n230038|0.69444\n230039|0.84722\n230040|0.5\n230041|0.55556\n230042|0.5\n230043|0.5\n230044|0.51389\n230045|0.5\n230046|0.29167\n230047|0.61111\n230048|0.19444\n230049|0.25\n230050|0.38889\n230051|0.61111\n230052|0.23611\n230053|0.5\n230054|0.125\n230055|0.52778\n230056|0.55556\n230057|0.625\n230058|0.52778\n230059|0.5\n230060|0.5\n230061|0.47222\n230062|0.47222\n230063|0.51389\n230064|0.5\n230065|0.5\n230066|0.33333\n230067|0.36111\n230068|0.66667\n230069|0.625\n230070|0.63889\n230071|0.68056\n230072|0.88889\n230073|0.54167\n230074|0.40278\n230075|0.34722\n230076|0.54167\n230077|0.27778\n230078|0.34722\n230079|0.36111\n230080|0.5\n230081|0.625\n230082|0.45833\n230083|0.51389\n230084|0.54167\n230085|0.59722\n230086|0.5\n230087|0.36111\n230088|0.5\n230089|0.48611\n230090|0.75\n230091|0.48611\n230092|0.56944\n230093|0.55556\n230094|0.58333\n230095|0.5\n230096|0.45833\n230097|0.5\n230098|0.51389\n230099|0.66667\n230100|0.59722\n230101|0.44444\n230102|0.11111\n230103|0.5\n230104|0.33333\n230105|0.5\n230106|0.72222\n230107|0.63889\n230108|0.5\n230109|0.44444\n230110|0.5\n230111|0.5\n230112|0.36111\n230113|0.75\n230114|0.15278\n230115|0.5\n230116|0.59722\n230117|0.81944\n230118|0.66667\n230119|0.29167\n230120|0.22222\n230121|0.61111\n230122|0.13889\n230123|0.5\n230124|0.52778\n230125|0.41667\n230126|0.5\n230127|0.72222\n230128|0.31944\n230129|0.80556\n230130|0.79167\n230131|0.5\n230132|0.625\n230133|0.83333\n230134|0.86111\n230135|0.91667\n230136|0.44444\n230137|0.44444\n230138|0.48611\n230139|0.625\n230140|0.81944\n230141|0.83333\n230142|0.76389\n230143|0.75\n230144|0.72222\n230145|0.54167\n230146|0.44444\n230147|0.5\n230148|0.61111\n230149|0.75\n230150|0.75\n230151|0.66667\n230152|0.48611\n230153|0.38889\n230154|0.5\n230155|0.44444\n230156|0.59722\n230157|0.16667\n230158|0.55556\n230159|0.5\n230160|0.44444\n230161|0.5\n230162|0.54167\n230163|0.5\n230164|0.63889\n230165|0.33333\n230166|0.41667\n230167|0.5\n230168|0.36111\n230169|0.56944\n230170|0.94444\n230171|0.44444\n230172|0.44444\n230173|0.47222\n230174|0.5\n230175|0.80556\n230176|0.875\n230177|0.79167\n230178|0.80556\n230179|0.22222\n230180|0.36111\n230181|0.56944\n230182|0.44444\n230183|0.44444\n230184|0.25\n230185|0.5\n230186|0.5\n230187|0.63889\n230188|0.44444\n230189|0.5\n230190|0.34722\n230191|0.375\n230192|0.31944\n230193|0.55556\n230194|0.5\n230195|0.51389\n230196|0.5\n230197|0.5\n230198|0.27778\n230199|0.26389\n230200|0.33333\n230201|0.29167\n230202|0.55556\n230203|0.26389\n230204|0.33333\n230205|0.5\n230206|0.75\n230207|0.38889\n230208|0.34722\n230209|0.30556\n230210|0.18056\n230211|0.38889\n230212|0.5\n230213|0.26389\n230214|0.40278\n230215|0.34722\n230216|0.55556\n230217|0.40278\n230218|0.33333\n230219|0.23611\n230220|0.5\n230221|0.625\n230222|0.61111\n230223|0.43056\n230224|0.38889\n230225|0.5\n230226|0.33333\n230227|0.33333\n230228|0.48611\n230229|0.5\n230230|0.55556\n230231|0.5\n230232|0.5\n230233|0.5\n230234|0.54167\n230235|0.5\n230236|0.5\n230237|0.5\n230238|0.52778\n230239|0.76389\n230240|0.79167\n230241|0.51389\n230242|0.51389\n230243|0.5\n230244|0.70833\n230245|0.5\n230246|0.5\n230247|0.5\n230248|0.66667\n230249|0.65278\n230250|0.20833\n230251|0.40278\n230252|0.44444\n230253|0.51389\n230254|0.69444\n230255|0.38889\n230256|0.40278\n230257|0.33333\n230258|0.56944\n230259|0.65278\n230260|0.38889\n230261|0.23611\n230262|0.29167\n230263|0.22222\n230264|0.11111\n230265|0.31944\n230266|0.41667\n230267|0.23611\n230268|0.36111\n230269|0.375\n230270|0.23611\n230271|0.20833\n230272|0.79167\n230273|0.59722\n230274|0.65278\n230275|0.83333\n230276|0.27778\n230277|0.70833\n230278|0.69444\n230279|0.61111\n230280|0.5\n230281|0.88889\n230282|0.097222\n230283|0.5\n230284|0.55556\n230285|0.69444\n230286|0.72222\n230287|0.83333\n230288|0.5\n230289|0.47222\n230290|0.45833\n230291|0.44444\n230292|0.47222\n230293|0.5\n230294|0.43056\n230295|0.79167\n230296|0.40278\n230297|0.36111\n230298|0.65278\n230299|0.55556\n230300|0.069444\n230301|0.27778\n230302|0.40278\n230303|0.375\n230304|0.26389\n230305|0.41667\n230306|0.23611\n230307|0.29167\n230308|0.15278\n230309|0.125\n230310|0.27778\n230311|0.25\n230312|0.40278\n230313|0.38889\n230314|0.72222\n230315|0.81944\n230316|0.5\n230317|0.5\n230318|0.5\n230319|0.5\n230320|0.34722\n230321|0.54167\n230322|0.625\n230323|0.375\n230324|0.5\n230325|0.5\n230326|0.5\n230327|0.45833\n230328|0.5\n230329|0.38889\n230330|0.5\n230331|0.61111\n230332|0.44444\n230333|0.73611\n230334|0.68056\n230335|0.58333\n230336|1\n230337|0.79167\n230338|0.5\n230339|0.56944\n230340|0.51389\n230341|0.40278\n230342|0.48611\n230343|0.80556\n230344|0.72222\n230345|0.47222\n230346|0.44444\n230347|0.76389\n230348|0.5\n230349|0.36111\n230350|0.36111\n230351|0.27778\n230352|0.23611\n230353|0.40278\n230354|0.19444\n230355|0.33333\n230356|0.30556\n230357|0.43056\n230358|0.22222\n230359|0.5\n230360|0.36111\n230361|0.375\n230362|0.22222\n230363|0.15278\n230364|0.16667\n230365|0.375\n230366|0.23611\n230367|0.27778\n230368|0.30556\n230369|0.22222\n230370|0.18056\n230371|0.40278\n230372|0.29167\n230373|0.55556\n230374|0.65278\n230375|0.69444\n230376|0.79167\n230377|0.22222\n230378|0.18056\n230379|0.33333\n230380|0.5\n230381|0.30556\n230382|0.27778\n230383|0.43056\n230384|0.47222\n230385|0.44444\n230386|0.76389\n230387|0.44444\n230388|0.45833\n230389|0.61111\n230390|0.61111\n230391|0.41667\n230392|0.44444\n230393|0.5\n230394|0.22222\n230395|0.27778\n230396|0.31944\n230397|0.33333\n230398|0.27778\n230399|0.15278\n230400|0.20833\n230401|0.66667\n230402|0.069444\n230403|0.61111\n230404|0.69444\n230405|0.45833\n230406|0.56944\n230407|0.5\n230408|0.47222\n230409|0.65278\n230410|0.44444\n230411|0.33333\n230412|0.38889\n230413|0.5\n230414|0.055556\n230415|0.41667\n230416|0.19444\n230417|0.33333\n230418|0.19444\n230419|0.40278\n230420|0.16667\n230421|0.48611\n230422|0.5\n230423|0.16667\n230424|0.48611\n230425|0.55556\n230426|0.61111\n230427|0.38889\n230428|0.30556\n230429|0.25\n230430|0.22222\n230431|0.5\n230432|0.43056\n230433|0.16667\n230434|0.055556\n230435|0.69444\n230436|0.68056\n230437|0.77778\n230438|0.20833\n230439|0.13889\n230440|0.19444\n230441|0.31944\n230442|0.22222\n230443|0.19444\n230444|0.16667\n230445|0.15278\n230446|0.16667\n230447|0.069444\n230448|0.125\n230449|0.055556\n230450|0.069444\n230451|0.20833\n230452|0.18056\n230453|0.19444\n230454|0.041667\n230455|0.34722\n230456|0.25\n230457|0.29167\n230458|0.18056\n230459|0.61111\n230460|0.5\n230461|0.5\n230462|0.25\n230463|0.5\n230464|0.5\n230465|0.58333\n230466|0.65278\n230467|0.5\n230468|0.55556\n230469|0.41667\n230470|0.68056\n230471|0.625\n230472|0.5\n230473|0.61111\n230474|0.45833\n230475|0.48611\n230476|0.5\n230477|0.61111\n230478|0.68056\n230479|0.5\n230480|0.20833\n230481|0.66667\n230482|0.19444\n230483|0.86111\n230484|0.47222\n230485|0.38889\n230486|0.66667\n230487|0.77778\n230488|0.5\n230489|0.59722\n230490|0.5\n230491|0.59722\n230492|0.47222\n230493|0.44444\n230494|0.31944\n230495|0.38889\n230496|0.31944\n230497|0.45833\n230498|0.45833\n230499|0.11111\n230500|0.61111\n230501|0.625\n230502|0.18056\n230503|0.77778\n230504|0.66667\n230505|0.22222\n230506|0.86111\n230507|0.69444\n230508|0.51389\n230509|0.66667\n230510|0.83333\n230511|0.5\n230512|0.34722\n230513|0.33333\n230514|0.30556\n230515|0.29167\n230516|0.13889\n230517|0.31944\n230518|0.5\n230519|0.5\n230520|0.59722\n230521|0.84722\n230522|0.5\n230523|0.625\n230524|0.58333\n230525|0.56944\n230526|0.40278\n230527|0.83333\n230528|0.77778\n230529|0.76389\n230530|0.83333\n230531|0.77778\n230532|0.73611\n230533|0.44444\n230534|0.20833\n230535|0.375\n230536|0.625\n230537|0.76389\n230538|0.88889\n230539|0.63889\n230540|0.72222\n230541|0.55556\n230542|0.66667\n230543|0.73611\n230544|0.77778\n230545|0.66667\n230546|0.83333\n230547|0.83333\n230548|0.5\n230549|0.76389\n230550|0.80556\n230551|0.65278\n230552|0.76389\n230553|0.56944\n230554|0.73611\n230555|0.38889\n230556|0.69444\n230557|0.61111\n230558|0.45833\n230559|0.625\n230560|0.56944\n230561|0.61111\n230562|0.29167\n230563|0.86111\n230564|0.69444\n230565|0.75\n230566|0.70833\n230567|0.5\n230568|0.58333\n230569|0.76389\n230570|0.70833\n230571|0.5\n230572|0.69444\n230573|0.20833\n230574|0.125\n230575|0.45833\n230576|0.77778\n230577|0.45833\n230578|0.58333\n230579|0.41667\n230580|0.27778\n230581|0.5\n230582|0.375\n230583|0.77778\n230584|0.55556\n230585|0.44444\n230586|0.5\n230587|0.25\n230588|0.47222\n230589|0.45833\n230590|0.75\n230591|0.5\n230592|0.5\n230593|0.36111\n230594|0.76389\n230595|0.5\n230596|0.52778\n230597|0.52778\n230598|0.61111\n230599|0.81944\n230600|0.68056\n230601|0.5\n230602|0.5\n230603|0.5\n230604|0.45833\n230605|0.61111\n230606|0.83333\n230607|0.5\n230608|0.27778\n230609|0.083333\n230610|0.54167\n230611|0.43056\n230612|0.69444\n230613|0.55556\n230614|0.55556\n230615|0.56944\n230616|0.5\n230617|0.47222\n230618|0.27778\n230619|0.5\n230620|0.91667\n230621|0.5\n230622|0.44444\n230623|0.41667\n230624|0.33333\n230625|0.61111\n230626|0.34722\n230627|0.125\n230628|0.22222\n230629|0.40278\n230630|0.5\n230631|0.45833\n230632|0.16667\n230633|0.27778\n230634|0.58333\n230635|0.16667\n230636|0.5\n230637|0.5\n230638|0.5\n230639|0.72222\n230640|0.33333\n230641|0.47222\n230642|0.55556\n230643|0.65278\n230644|0.5\n230645|0.58333\n230646|0.52778\n230647|0.66667\n230648|0.16667\n230649|0.55556\n230650|0.22222\n230651|0.52778\n230652|0.97222\n230653|0.81944\n230654|0.84722\n230655|0.94444\n230656|0.72222\n230657|0.5\n230658|0.30556\n230659|0.33333\n230660|0.69444\n230661|0.33333\n230662|0.5\n230663|0.65278\n230664|0.84722\n230665|0.77778\n230666|0.31944\n230667|0.375\n230668|0.375\n230669|0.5\n230670|0.55556\n230671|0.5\n230672|0.55556\n230673|0.5\n230674|0.375\n230675|0.29167\n230676|0.72222\n230677|0.38889\n230678|0.48611\n230679|0.75\n230680|0.41667\n230681|0.375\n230682|0.22222\n230683|0.47222\n230684|0.48611\n230685|0.41667\n230686|0.56944\n230687|0.30556\n230688|0.33333\n230689|0.47222\n230690|0.61111\n230691|0.56944\n230692|0.45833\n230693|0.70833\n230694|0.45833\n230695|0.59722\n230696|0.125\n230697|0.29167\n230698|0.54167\n230699|0.5\n230700|0.5\n230701|0.5\n230702|0.30556\n230703|0.26389\n230704|0.125\n230705|0.041667\n230706|0.23611\n230707|0.55556\n230708|0.11111\n230709|0.16667\n230710|0.25\n230711|0.33333\n230712|0.27778\n230713|0.16667\n230714|0.18056\n230715|0.13889\n230716|0.63889\n230717|0.72222\n230718|0.5\n230719|0.55556\n230720|0.55556\n230721|0.5\n230722|0.5\n230723|0.56944\n230724|0.55556\n230725|0.83333\n230726|0.5\n230727|0.55556\n230728|0.79167\n230729|0.61111\n230730|0.41667\n230731|0.48611\n230732|0.56944\n230733|0.59722\n230734|0.70833\n230735|0.72222\n230736|0.77778\n230737|0.90278\n230738|0.80556\n230739|0.5\n230740|0.375\n230741|0.43056\n230742|0.625\n230743|0.55556\n230744|0.41667\n230745|0.5\n230746|0.72222\n230747|0.55556\n230748|0.86111\n230749|0.86111\n230750|0.27778\n230751|0.27778\n230752|0.31944\n230753|0.43056\n230754|0.5\n230755|0.44444\n230756|0.58333\n230757|0.26389\n230758|0.5\n230759|0.77778\n230760|0.41667\n230761|0.65278\n230762|0.79167\n230763|0.31944\n230764|0.25\n230765|0.18056\n230766|0.16667\n230767|0.48611\n230768|0.41667\n230769|0.5\n230770|0.19444\n230771|0.27778\n230772|0.375\n230773|0.43056\n230774|0.5\n230775|0.5\n230776|0.36111\n230777|0.055556\n230778|0.48611\n230779|0.5\n230780|0.5\n230781|0.59722\n230782|0.5\n230783|0.52778\n230784|0.26389\n230785|0.75\n230786|0.47222\n230787|0.55556\n230788|0.48611\n230789|0.55556\n230790|0.47222\n230791|0.43056\n230792|0.59722\n230793|0.5\n230794|0.5\n230795|0.5\n230796|0.5\n230797|0.65278\n230798|0.5\n230799|0.5\n230800|0.5\n230801|0.63889\n230802|0.70833\n230803|0.66667\n230804|0.55556\n230805|0.26389\n230806|0.13889\n230807|0.55556\n230808|0.69444\n230809|0.625\n230810|0.5\n230811|0.63889\n230812|0.5\n230813|0.55556\n230814|0.45833\n230815|0.44444\n230816|0.40278\n230817|0.56944\n230818|0.45833\n230819|0.625\n230820|0.27778\n230821|0.5\n230822|0.52778\n230823|0.5\n230824|0.55556\n230825|0.70833\n230826|0.69444\n230827|0.73611\n230828|0.5\n230829|0.55556\n230830|0.31944\n230831|0.041667\n230832|0.31944\n230833|0.68056\n230834|0.20833\n230835|0.375\n230836|0.44444\n230837|0.52778\n230838|0.5\n230839|0.5\n230840|0.95833\n230841|0.84722\n230842|0.77778\n230843|0.83333\n230844|0.63889\n230845|0.5\n230846|0.5\n230847|0.48611\n230848|0.875\n230849|0.30556\n230850|0.125\n230851|0.15278\n230852|0.38889\n230853|0.36111\n230854|0.33333\n230855|0.30556\n230856|0.52778\n230857|0.51389\n230858|0.52778\n230859|0.61111\n230860|0.51389\n230861|0.61111\n230862|0.51389\n230863|0.52778\n230864|0.40278\n230865|0.55556\n230866|0.5\n230867|0.51389\n230868|0.61111\n230869|0.33333\n230870|0.44444\n230871|0.33333\n230872|0.125\n230873|0.19444\n230874|0.16667\n230875|0.45833\n230876|0.25\n230877|0.31944\n230878|0.083333\n230879|0.055556\n230880|0.5\n230881|0.59722\n230882|0.72222\n230883|0.72222\n230884|0.5\n230885|0.40278\n230886|0.5\n230887|0.5\n230888|0.55556\n230889|0.5\n230890|0.5\n230891|0.5\n230892|0.5\n230893|0.5\n230894|0.51389\n230895|0.51389\n230896|0.5\n230897|0.29167\n230898|0.5\n230899|0.45833\n230900|0.61111\n230901|0.11111\n230902|0.5\n230903|0.56944\n230904|0.5\n230905|0.5\n230906|0.5\n230907|0.5\n230908|0.75\n230909|0.5\n230910|0.44444\n230911|0.38889\n230912|0.31944\n230913|0.30556\n230914|0.5\n230915|0.5\n230916|0.30556\n230917|0.5\n230918|0.65278\n230919|0.5\n230920|0.48611\n230921|0.30556\n230922|0.5\n230923|0.5\n230924|0.45833\n230925|0.44444\n230926|0.73611\n230927|0.5\n230928|0.56944\n230929|0.66667\n230930|0.44444\n230931|0.875\n230932|0.5\n230933|0.33333\n230934|0.77778\n230935|0.5\n230936|0.44444\n230937|0.44444\n230938|0.44444\n230939|0.51389\n230940|0.5\n230941|0.5\n230942|0.22222\n230943|0.33333\n230944|0.5\n230945|0.5\n230946|0.125\n230947|0.5\n230948|0.70833\n230949|0.80556\n230950|0.48611\n230951|0.48611\n230952|0.38889\n230953|0.125\n230954|0.22222\n230955|0.52778\n230956|0.56944\n230957|0.54167\n230958|0.5\n230959|0.41667\n230960|0.5\n230961|0.55556\n230962|0.20833\n230963|0.41667\n230964|0.48611\n230965|0.40278\n230966|0.38889\n230967|0.69444\n230968|0.66667\n230969|0.68056\n230970|0.40278\n230971|0.51389\n230972|0.5\n230973|0.44444\n230974|0.25\n230975|0.45833\n230976|0.5\n230977|0.34722\n230978|0.34722\n230979|0.27778\n230980|0.55556\n230981|0.30556\n230982|0.44444\n230983|0.52778\n230984|0.47222\n230985|0.40278\n230986|0.36111\n230987|0.26389\n230988|0.44444\n230989|0.44444\n230990|0.58333\n230991|0.5\n230992|0.27778\n230993|0.51389\n230994|0.63889\n230995|0.66667\n230996|0.77778\n230997|0.36111\n230998|0.15278\n230999|0.33333\n231000|0.5\n231001|0.59722\n231002|0.5\n231003|0.625\n231004|0.5\n231005|0.47222\n231006|0.5\n231007|0.5\n231008|0.5\n231009|0.55556\n231010|0.66667\n231011|0.63889\n231012|0.31944\n231013|0.61111\n231014|0.61111\n231015|0.5\n231016|0.38889\n231017|0.5\n231018|0.5\n231019|0.31944\n231020|0.41667\n231021|0.5\n231022|0.44444\n231023|0.55556\n231024|0.66667\n231025|0.68056\n231026|0.76389\n231027|0.69444\n231028|0.625\n231029|0.52778\n231030|0.5\n231031|0.5\n231032|0.5\n231033|0.51389\n231034|0.61111\n231035|0.25\n231036|0.11111\n231037|0.5\n231038|0.77778\n231039|0.63889\n231040|0.18056\n231041|0.5\n231042|0.13889\n231043|0.70833\n231044|0.30556\n231045|0.5\n231046|0.61111\n231047|0.5\n231048|0.55556\n231049|0.54167\n231050|0.5\n231051|0.16667\n231052|0.47222\n231053|0.38889\n231054|0.56944\n231055|0.44444\n231056|0.16667\n231057|0.55556\n231058|0.56944\n231059|0.52778\n231060|0.51389\n231061|0.16667\n231062|0.81944\n231063|0.80556\n231064|0.48611\n231065|0.31944\n231066|0.77778\n231067|0.81944\n231068|0.83333\n231069|0.83333\n231070|0.75\n231071|0.83333\n231072|0.61111\n231073|0.80556\n231074|0.52778\n231075|0.77778\n231076|0.66667\n231077|0.875\n231078|0.77778\n231079|0.58333\n231080|0.72222\n231081|0.5\n231082|0.94444\n231083|0.65278\n231084|0.83333\n231085|0.875\n231086|0.73611\n231087|0.84722\n231088|0.44444\n231089|0.40278\n231090|0.47222\n231091|0.45833\n231092|0.18056\n231093|0.48611\n231094|0.18056\n231095|0.27778\n231096|0.5\n231097|0.013889\n231098|0.65278\n231099|0.48611\n231100|0.5\n231101|0.5\n231102|0.40278\n231103|0.25\n231104|0.44444\n231105|0.44444\n231106|0.41667\n231107|0.44444\n231108|0.45833\n231109|0.38889\n231110|0.84722\n231111|0.68056\n231112|0.83333\n231113|0.59722\n231114|0.75\n231115|0.77778\n231116|0.875\n231117|0.77778\n231118|0.47222\n231119|0.44444\n231120|0.94444\n231121|0.44444\n231122|0.27778\n231123|0.41667\n231124|0.48611\n231125|0.44444\n231126|0.33333\n231127|0.43056\n231128|0.5\n231129|0.58333\n231130|0.51389\n231131|0.5\n231132|0.55556\n231133|0.36111\n231134|0.63889\n231135|0.56944\n231136|0.44444\n231137|0.22222\n231138|0.5\n231139|0.30556\n231140|0.79167\n231141|0.625\n231142|0.5\n231143|0.41667\n231144|0.66667\n231145|0.5\n231146|0.5\n231147|0.26389\n231148|0.31944\n231149|0.22222\n231150|0.41667\n231151|0.22222\n231152|0.125\n231153|0.79167\n231154|0.61111\n231155|0.52778\n231156|0.40278\n231157|0.52778\n231158|0.48611\n231159|0.29167\n231160|0.23611\n231161|0.58333\n231162|0.44444\n231163|0.45833\n231164|0.27778\n231165|0.48611\n231166|0.48611\n231167|0.38889\n231168|0.375\n231169|0.41667\n231170|0.44444\n231171|0.44444\n231172|0.34722\n231173|0.73611\n231174|0.41667\n231175|0.5\n231176|0.5\n231177|0.68056\n231178|0.52778\n231179|0.44444\n231180|0.5\n231181|0.58333\n231182|0.63889\n231183|0.625\n231184|0.55556\n231185|0.54167\n231186|0.125\n231187|0.30556\n231188|0.27778\n231189|0.23611\n231190|0.69444\n231191|0.51389\n231192|0.33333\n231193|0.51389\n231194|0.55556\n231195|0.44444\n231196|0.5\n231197|0.83333\n231198|0.52778\n231199|0.36111\n231200|0.43056\n231201|0.51389\n231202|0.5\n231203|0.52778\n231204|0.5\n231205|0.77778\n231206|0.875\n231207|0.38889\n231208|0.30556\n231209|0.26389\n231210|0.625\n231211|0.25\n231212|0.77778\n231213|0.58333\n231214|0.75\n231215|0.29167\n231216|0.20833\n231217|0.48611\n231218|0.5\n231219|0.33333\n231220|0.81944\n231221|0.83333\n231222|0.5\n231223|0.59722\n231224|0.56944\n231225|0.70833\n231226|0.77778\n231227|0.375\n231228|0.30556\n231229|0.58333\n231230|0.34722\n231231|0.15278\n231232|0.45833\n231233|0.40278\n231234|0.375\n231235|0.66667\n231236|0.47222\n231237|0.5\n231238|0.5\n231239|0.31944\n231240|0.41667\n231241|0.44444\n231242|0.5\n231243|0.40278\n231244|0.69444\n231245|0.72222\n231246|0.59722\n231247|0.44444\n231248|0.25\n231249|0.33333\n231250|0.34722\n231251|0.31944\n231252|0.30556\n231253|0.29167\n231254|0.51389\n231255|0.22222\n231256|0.5\n231257|0.30556\n231258|0.31944\n231259|0.31944\n231260|0.875\n231261|0.5\n231262|0.48611\n231263|0.66667\n231264|0.52778\n231265|0.22222\n231266|0.44444\n231267|0.80556\n231268|0.83333\n231269|0.81944\n231270|0.88889\n231271|0.81944\n231272|0.81944\n231273|0.86111\n231274|0.94444\n231275|0.77778\n231276|0.77778\n231277|0.18056\n231278|0.70833\n231279|0.51389\n231280|0.27778\n231281|0.72222\n231282|0.88889\n231283|0.5\n231284|0.5\n231285|0.72222\n231286|0.29167\n231287|0.16667\n231288|0.77778\n231289|0.76389\n231290|0.40278\n231291|0.56944\n231292|0.44444\n231293|0.47222\n231294|0.5\n231295|0.33333\n231296|0.61111\n231297|0.51389\n231298|0.59722\n231299|0.54167\n231300|0.5\n231301|0.083333\n231302|0.72222\n231303|0.88889\n231304|0.81944\n231305|0.70833\n231306|0.15278\n231307|0.51389\n231308|0.5\n231309|0.59722\n231310|0.80556\n231311|0.5\n231312|0.31944\n231313|0.27778\n231314|0.33333\n231315|0.44444\n231316|0.375\n231317|0.36111\n231318|0.58333\n231319|0.69444\n231320|0.38889\n231321|0.25\n231322|0.44444\n231323|0.055556\n231324|0.75\n231325|0.5\n231326|0.66667\n231327|0.70833\n231328|0.61111\n231329|0.41667\n231330|0.55556\n231331|0.68056\n231332|0.52778\n231333|0.55556\n231334|0.34722\n231335|0.36111\n231336|0.055556\n231337|0.16667\n231338|0.055556\n231339|0.5\n231340|0.48611\n231341|0.48611\n231342|0.45833\n231343|0.5\n231344|0.27778\n231345|0.56944\n231346|0.5\n231347|0.54167\n231348|0.375\n231349|0.625\n231350|0.55556\n231351|0.55556\n231352|0.15278\n231353|0.375\n231354|0.5\n231355|0.20833\n231356|0.125\n231357|0.30556\n231358|0.26389\n231359|0.38889\n231360|0.93056\n231361|0.5\n231362|0.5\n231363|0.5\n231364|0.5\n231365|0.5\n231366|0.5\n231367|0.63889\n231368|0.66667\n231369|0.40278\n231370|0.43056\n231371|0.5\n231372|0.5\n231373|0.55556\n231374|0.375\n231375|0.30556\n231376|0.33333\n231377|0.5\n231378|0.59722\n231379|0.47222\n231380|0.44444\n231381|0.5\n231382|0.27778\n231383|0.36111\n231384|0.19444\n231385|0.15278\n231386|0.5\n231387|0.22222\n231388|0.29167\n231389|0.61111\n231390|0.33333\n231391|0.40278\n231392|0.61111\n231393|0.47222\n231394|0.52778\n231395|0.29167\n231396|0.27778\n231397|0.13889\n231398|0.65278\n231399|0.76389\n231400|0.73611\n231401|0.86111\n231402|0.80556\n231403|0.16667\n231404|0.13889\n231405|0.56944\n231406|0.54167\n231407|0.16667\n231408|0.18056\n231409|0.26389\n231410|0.66667\n231411|0.65278\n231412|0.61111\n231413|0.36111\n231414|0.80556\n231415|0.66667\n231416|0.625\n231417|0.47222\n231418|0.55556\n231419|0.69444\n231420|0.72222\n231421|0.52778\n231422|0.47222\n231423|0.72222\n231424|0.80556\n231425|0.76389\n231426|0.48611\n231427|0.83333\n231428|0.79167\n231429|0.86111\n231430|0.88889\n231431|0.41667\n231432|0.38889\n231433|0.66667\n231434|0.69444\n231435|0.30556\n231436|0.76389\n231437|0.80556\n231438|0.68056\n231439|0.15278\n231440|0.11111\n231441|0.45833\n231442|0.66667\n231443|0.5\n231444|0.84722\n231445|0.40278\n231446|0.30556\n231447|0.375\n231448|0.11111\n231449|0.20833\n231450|0.69444\n231451|0.83333\n231452|0.875\n231453|0.86111\n231454|0.58333\n231455|0.36111\n231456|0.77778\n231457|0.44444\n231458|0.66667\n231459|0.45833\n231460|0.27778\n231461|0.25\n231462|0.22222\n231463|0.19444\n231464|0.41667\n231465|0.22222\n231466|0.33333\n231467|0.55556\n231468|0.27778\n231469|0.51389\n231470|0.77778\n231471|0.80556\n231472|0.38889\n231473|0.44444\n231474|0.58333\n231475|0.18056\n231476|0.11111\n231477|0.56944\n231478|0.72222\n231479|0.66667\n231480|0.88889\n231481|0.75\n231482|0.52778\n231483|0.73611\n231484|0.61111\n231485|0.5\n231486|0.38889\n231487|0.19444\n231488|0.70833\n231489|0.65278\n231490|0.19444\n231491|0.30556\n231492|0.72222\n231493|0.73611\n231494|0.79167\n231495|0.80556\n231496|0.48611\n231497|0.59722\n231498|0.76389\n231499|0.77778\n231500|0.70833\n231501|0.22222\n231502|0.20833\n231503|0.13889\n231504|0.26389\n231505|0.61111\n231506|0.75\n231507|0.55556\n231508|0.18056\n231509|0.23611\n231510|0.77778\n231511|0.72222\n231512|0.31944\n231513|0.48611\n231514|0.38889\n231515|0.27778\n231516|0.097222\n231517|0.20833\n231518|0.16667\n231519|0.38889\n231520|0.36111\n231521|0.097222\n231522|0.16667\n231523|0.5\n231524|0.69444\n231525|0.55556\n231526|0.44444\n231527|0.55556\n231528|0.55556\n231529|0.56944\n231530|0.61111\n231531|0.56944\n231532|0.5\n231533|0.61111\n231534|0.65278\n231535|0.5\n231536|0.51389\n231537|0.45833\n231538|0.29167\n231539|0.29167\n231540|0.72222\n231541|0.75\n231542|0.44444\n231543|0.33333\n231544|0.69444\n231545|0.51389\n231546|0.45833\n231547|0.55556\n231548|0.54167\n231549|0.68056\n231550|0.055556\n231551|0.63889\n231552|0.25\n231553|0.31944\n231554|0.41667\n231555|0.19444\n231556|0.38889\n231557|0.41667\n231558|0.56944\n231559|0.79167\n231560|0.51389\n231561|0.72222\n231562|0.29167\n231563|0.34722\n231564|0.5\n231565|0.29167\n231566|0.86111\n231567|0.55556\n231568|0.52778\n231569|0.5\n231570|0.84722\n231571|0.19444\n231572|0.22222\n231573|0.23611\n231574|0.15278\n231575|0.72222\n231576|0.33333\n231577|0.33333\n231578|0.40278\n231579|0.56944\n231580|0.45833\n231581|0.90278\n231582|0.48611\n231583|0.5\n231584|0.45833\n231585|0.38889\n231586|0.34722\n231587|0.36111\n231588|0.41667\n231589|0.38889\n231590|0.5\n231591|0.5\n231592|0.31944\n231593|0.38889\n231594|0.61111\n231595|0.25\n231596|0.41667\n231597|0.083333\n231598|0.055556\n231599|0.66667\n231600|0.26389\n231601|0.22222\n231602|0.11111\n231603|0.29167\n231604|0.16667\n231605|0.41667\n231606|0.55556\n231607|0.5\n231608|0.44444\n231609|0.36111\n231610|0.875\n231611|0.61111\n231612|0.63889\n231613|0.81944\n231614|0.48611\n231615|0.44444\n231616|0.40278\n231617|0.52778\n231618|0.55556\n231619|0.56944\n231620|0.59722\n231621|0.72222\n231622|0.76389\n231623|0.72222\n231624|0.81944\n231625|0.76389\n231626|0.5\n231627|0.097222\n231628|0.16667\n231629|0.56944\n231630|0.68056\n231631|0.27778\n231632|0.22222\n231633|0.38889\n231634|0.11111\n231635|0.5\n231636|0.44444\n231637|0.72222\n231638|0.22222\n231639|0.81944\n231640|0.625\n231641|0.43056\n231642|0.5\n231643|0.20833\n231644|0.5\n231645|0.5\n231646|0.58333\n231647|0.68056\n231648|0.5\n231649|0.55556\n231650|0.69444\n231651|0.61111\n231652|0.5\n231653|0.55556\n231654|0.48611\n231655|0.5\n231656|0.5\n231657|0.5\n231658|0.47222\n231659|0.34722\n231660|0.40278\n231661|0.31944\n231662|0.45833\n231663|0.77778\n231664|0.75\n231665|0.86111\n231666|0.83333\n231667|0.44444\n231668|0.375\n231669|0.5\n231670|0.44444\n231671|0.69444\n231672|0.18056\n231673|0.61111\n231674|0.72222\n231675|0.75\n231676|0.5\n231677|0.5\n231678|0.54167\n231679|0.51389\n231680|0.52778\n231681|0.5\n231682|0.5\n231683|0.66667\n231684|0.5\n231685|0.58333\n231686|0.66667\n231687|0.58333\n231688|0.5\n231689|0.5\n231690|0.55556\n231691|0.5\n231692|0.77778\n231693|0.59722\n231694|0.44444\n231695|0.23611\n231696|0.20833\n231697|0.83333\n231698|0.75\n231699|0.19444\n231700|0.19444\n231701|0.52778\n231702|0.83333\n231703|0.88889\n231704|0.76389\n231705|0.5\n231706|0.72222\n231707|0.77778\n231708|0.84722\n231709|0.88889\n231710|0.875\n231711|0.51389\n231712|0.61111\n231713|0.5\n231714|0.5\n231715|0.52778\n231716|0.5\n231717|0.5\n231718|0.5\n231719|0.44444\n231720|0.5\n231721|0.5\n231722|0.5\n231723|0.52778\n231724|0.5\n231725|0.5\n231726|0.45833\n231727|0.31944\n231728|0.5\n231729|0.45833\n231730|0.65278\n231731|0.52778\n231732|0.5\n231733|0.61111\n231734|0.11111\n231735|0.56944\n231736|0.51389\n231737|0.5\n231738|0.61111\n231739|0.5\n231740|0.5\n231741|0.5\n231742|0.77778\n231743|0.38889\n231744|0.5\n231745|0.51389\n231746|0.30556\n231747|0.16667\n231748|0.5\n231749|0.51389\n231750|0.5\n231751|0.44444\n231752|0.81944\n231753|0.69444\n231754|0.27778\n231755|0.11111\n231756|0.33333\n231757|0.18056\n231758|0.58333\n231759|0.5\n231760|0.63889\n231761|0.5\n231762|0.36111\n231763|0.33333\n231764|0.56944\n231765|0.91667\n231766|0.86111\n231767|0.51389\n231768|0.66667\n231769|0.51389\n231770|0.5\n231771|0.81944\n231772|0.125\n231773|0.22222\n231774|0.69444\n231775|0.45833\n231776|0.44444\n231777|0.5\n231778|0.55556\n231779|0.65278\n231780|0.83333\n231781|0.23611\n231782|0.45833\n231783|0.26389\n231784|0.55556\n231785|0.45833\n231786|0.27778\n231787|0.41667\n231788|0.52778\n231789|0.5\n231790|0.47222\n231791|0.375\n231792|0.44444\n231793|0.5\n231794|0.5\n231795|0.55556\n231796|0.55556\n231797|0\n231798|0.5\n231799|0.59722\n231800|0.52778\n231801|0.5\n231802|0.44444\n231803|0.47222\n231804|0.13889\n231805|0.5\n231806|0.65278\n231807|0.33333\n231808|0.13889\n231809|0.33333\n231810|0.30556\n231811|0.23611\n231812|0.15278\n231813|0.26389\n231814|0.56944\n231815|0.40278\n231816|0.40278\n231817|0.44444\n231818|0.5\n231819|0.59722\n231820|0.69444\n231821|0.54167\n231822|0.51389\n231823|0.5\n231824|0.27778\n231825|0.375\n231826|0.5\n231827|0.20833\n231828|0.88889\n231829|0.84722\n231830|0.72222\n231831|0.5\n231832|0.5\n231833|0.54167\n231834|0.625\n231835|0.58333\n231836|0.33333\n231837|0.38889\n231838|0.44444\n231839|0.30556\n231840|0.55556\n231841|0.51389\n231842|0.73611\n231843|0.83333\n231844|0.5\n231845|0.61111\n231846|0.69444\n231847|0.59722\n231848|0.51389\n231849|0.5\n231850|0.5\n231851|0.15278\n231852|0.5\n231853|0.5\n231854|0.5\n231855|0.18056\n231856|0.5\n231857|0.5\n231858|0.38889\n231859|0.5\n231860|0.027778\n231861|0.43056\n231862|0.097222\n231863|0.5\n231864|0.38889\n231865|0.22222\n231866|0.34722\n231867|0.38889\n231868|0.38889\n231869|0.18056\n231870|0.47222\n231871|0.51389\n231872|0.40278\n231873|0.61111\n231874|0.47222\n231875|0.36111\n231876|0.5\n231877|0.33333\n231878|0.44444\n231879|0.25\n231880|0.26389\n231881|0.30556\n231882|0.29167\n231883|0.83333\n231884|0.40278\n231885|0.43056\n231886|0.16667\n231887|0.5\n231888|0.5\n231889|0.5\n231890|0.47222\n231891|0.5\n231892|0.51389\n231893|0.80556\n231894|0.56944\n231895|0.5\n231896|0.22222\n231897|0.26389\n231898|0.33333\n231899|0.30556\n231900|0.25\n231901|0.38889\n231902|0.5\n231903|0.44444\n231904|0.27778\n231905|0.5\n231906|0.625\n231907|0.55556\n231908|0.77778\n231909|0.61111\n231910|0.083333\n231911|0.38889\n231912|0.5\n231913|0.5\n231914|0.27778\n231915|0.097222\n231916|0.86111\n231917|0.83333\n231918|0.5\n231919|0.15278\n231920|0.15278\n231921|0.25\n231922|0.26389\n231923|0.33333\n231924|0.83333\n231925|0.63889\n231926|0.70833\n231927|0.79167\n231928|0.44444\n231929|0.27778\n231930|0.45833\n231931|0.55556\n231932|0.5\n231933|0.5\n231934|0.36111\n231935|0.5\n231936|0.75\n231937|0.56944\n231938|0.38889\n231939|0.5\n231940|0.5\n231941|0.5\n231942|0.5\n231943|0.52778\n231944|0.63889\n231945|0.5\n231946|0.52778\n231947|0.55556\n231948|0.5\n231949|0.5\n231950|0.70833\n231951|0.5\n231952|0.5\n231953|0.625\n231954|0.5\n231955|0.51389\n231956|0.51389\n231957|0.5\n231958|0.31944\n231959|0.5\n231960|0.5\n231961|0.5\n231962|0.5\n231963|0.5\n231964|0.5\n231965|0.44444\n231966|0.5\n231967|0.33333\n231968|0.43056\n231969|0.375\n231970|0.097222\n231971|0.27778\n231972|0.5\n231973|0.33333\n231974|0.5\n231975|0.16667\n231976|0.44444\n231977|0.44444\n231978|0.33333\n231979|0.38889\n231980|0.58333\n231981|0.5\n231982|0.27778\n231983|0.18056\n231984|0.52778\n231985|0.40278\n231986|0.56944\n231987|0.5\n231988|0.58333\n231989|0.66667\n231990|0.38889\n231991|0.5\n231992|0.44444\n231993|0.25\n231994|0.30556\n231995|0.65278\n231996|0.5\n231997|0.41667\n231998|0.5\n231999|0.52778\n232000|0.52778\n232001|0.44444\n232002|0.38889\n232003|0.625\n232004|0.38889\n232005|0.41667\n232006|0.48611\n232007|0.5\n232008|0.5\n232009|0.5\n232010|0.45833\n232011|0.55556\n232012|0.5\n232013|0.86111\n232014|0.66667\n232015|0.625\n232016|0.375\n232017|0.54167\n232018|0.5\n232019|0.83333\n232020|0.41667\n232021|0.81944\n232022|0.5\n232023|0.55556\n232024|0.63889\n232025|0.45833\n232026|0.56944\n232027|0.125\n232028|0.5\n232029|0.5\n232030|0.22222\n232031|0.36111\n232032|0.44444\n232033|0.5\n232034|0.80556\n232035|0.51389\n232036|0.44444\n232037|0.73611\n232038|0.30556\n232039|0.47222\n232040|0.5\n232041|0.43056\n232042|0.59722\n232043|0.58333\n232044|0.80556\n232045|0.76389\n232046|0.5\n232047|0.45833\n232048|0.30556\n232049|0.41667\n232050|0.5\n232051|0.54167\n232052|0.26389\n232053|0.38889\n232054|0.5\n232055|0.5\n232056|0.5\n232057|0.31944\n232058|0.5\n232059|0.5\n232060|0.25\n232061|0.625\n232062|0.73611\n232063|0.51389\n232064|0.5\n232065|0.52778\n232066|0.51389\n232067|0.55556\n232068|0.79167\n232069|0.69444\n232070|0.38889\n232071|0.5\n232072|0.41667\n232073|0.5\n232074|0.56944\n232075|0.5\n232076|0.44444\n232077|0.27778\n232078|0.22222\n232079|0.38889\n232080|0.47222\n232081|0.625\n232082|0.23611\n232083|0.30556\n232084|0.59722\n232085|0.88889\n232086|0.94444\n232087|0.83333\n232088|0.013889\n232089|0.20833\n232090|0.5\n232091|0.47222\n232092|0.23611\n232093|0.13889\n232094|0.29167\n232095|0.61111\n232096|0.44444\n232097|0.43056\n232098|0.5\n232099|0.11111\n232100|0.84722\n232101|0.61111\n232102|0.61111\n232103|0.5\n232104|0.47222\n232105|0.26389\n232106|0.41667\n232107|1\n232108|0.5\n232109|0.5\n232110|0.68056\n232111|0.70833\n232112|0.63889\n232113|0.61111\n232114|0.68056\n232115|0.36111\n232116|0.86111\n232117|0.5\n232118|0.29167\n232119|0.55556\n232120|0.52778\n232121|0.5\n232122|0.40278\n232123|0.41667\n232124|0.52778\n232125|0.58333\n232126|0.76389\n232127|0.66667\n232128|0.66667\n232129|0.5\n232130|0.5\n232131|0.5\n232132|0.77778\n232133|0.5\n232134|0.72222\n232135|0.79167\n232136|0.79167\n232137|0.84722\n232138|0.83333\n232139|0.90278\n232140|0.94444\n232141|0.72222\n232142|0.70833\n232143|0.55556\n232144|0.66667\n232145|0.65278\n232146|0.5\n232147|0.70833\n232148|0.88889\n232149|0.69444\n232150|0.66667\n232151|0.5\n232152|0.52778\n232153|0.47222\n232154|0.29167\n232155|0.5\n232156|0.5\n232157|0.69444\n232158|0.80556\n232159|0.5\n232160|0.73611\n232161|0.33333\n232162|0.5\n232163|0.45833\n232164|0.38889\n232165|0.61111\n232166|0.54167\n232167|0.56944\n232168|0.23611\n232169|0.38889\n232170|0.55556\n232171|0.5\n232172|0.44444\n232173|0.52778\n232174|0.23611\n232175|0.54167\n232176|0.72222\n232177|0.70833\n232178|0.44444\n232179|0.5\n232180|0.48611\n232181|0.25\n232182|0.5\n232183|0.54167\n232184|0.5\n232185|0.69444\n232186|0.5\n232187|0.47222\n232188|0.5\n232189|0.70833\n232190|0.79167\n232191|0.55556\n232192|0.5\n232193|0.84722\n232194|0.5\n232195|0.25\n232196|0.44444\n232197|0.055556\n232198|0\n232199|0.31944\n232200|0.44444\n232201|0.13889\n232202|0.055556\n232203|0.33333\n232204|0.11111\n232205|0.083333\n232206|0.15278\n232207|0.27778\n232208|0.069444\n232209|0.47222\n232210|0.33333\n232211|0.38889\n232212|0.70833\n232213|0.80556\n232214|0.45833\n232215|0.41667\n232216|0.5\n232217|0.5\n232218|0.63889\n232219|0.66667\n232220|0.51389\n232221|0.5\n232222|0.66667\n232223|0.75\n232224|0.48611\n232225|0.48611\n232226|0.52778\n232227|0.55556\n232228|0.52778\n232229|0.5\n232230|0.58333\n232231|0.56944\n232232|0.5\n232233|0.47222\n232234|0.68056\n232235|0.5\n232236|0.61111\n232237|0.5\n232238|0.5\n232239|0.55556\n232240|0.5\n232241|0.47222\n232242|0.5\n232243|0.5\n232244|0.375\n232245|0.40278\n232246|0.15278\n232247|0.27778\n232248|0.68056\n232249|0.77778\n232250|0.11111\n232251|0.75\n232252|0.79167\n232253|0.98611\n232254|1\n232255|0.80556\n232256|0.69444\n232257|0.22222\n232258|0.69444\n232259|0.75\n232260|0.29167\n232261|0.23611\n232262|0.44444\n232263|0.16667\n232264|0.41667\n232265|0.72222\n232266|0.11111\n232267|0.083333\n232268|0.097222\n232269|0.54167\n232270|0.61111\n232271|0.90278\n232272|0.86111\n232273|0.19444\n232274|0.11111\n232275|0.25\n232276|0.54167\n232277|0.56944\n232278|0.79167\n232279|0.77778\n232280|0.36111\n232281|0.84722\n232282|0.33333\n232283|0.66667\n232284|0.70833\n232285|0.52778\n232286|0.83333\n232287|0.18056\n232288|0.73611\n232289|0.56944\n232290|0.65278\n232291|0.76389\n232292|0.72222\n232293|0.16667\n232294|0.83333\n232295|0.80556\n232296|0.94444\n232297|0.94444\n232298|0.88889\n232299|0.875\n232300|0.66667\n232301|0.22222\n232302|0.72222\n232303|0.84722\n232304|0.84722\n232305|0.69444\n232306|0.66667\n232307|0.79167\n232308|0.069444\n232309|0.055556\n232310|0.11111\n232311|0.81944\n232312|0.88889\n232313|0.5\n232314|0.56944\n232315|0.55556\n232316|0.63889\n232317|0.91667\n232318|0.55556\n232319|0.80556\n232320|0.83333\n232321|0.68056\n232322|0.66667\n232323|0.65278\n232324|0.16667\n232325|0.23611\n232326|0.55556\n232327|0.72222\n232328|0.66667\n232329|0.83333\n232330|0.77778\n232331|0.86111\n232332|0.013889\n232333|0\n232334|0.29167\n232335|0.33333\n232336|0.86111\n232337|0.72222\n232338|0.77778\n232339|0.58333\n232340|0.55556\n232341|0.33333\n232342|0.66667\n232343|0.80556\n232344|0.93056\n232345|0.93056\n232346|0.97222\n232347|0.875\n232348|0.47222\n232349|0.80556\n232350|0.72222\n232351|0.73611\n232352|0.66667\n232353|0.55556\n232354|0.26389\n232355|0.22222\n232356|0.30556\n232357|0.22222\n232358|0.31944\n232359|0.22222\n232360|0.19444\n232361|0.13889\n232362|0.18056\n232363|0.25\n232364|0.875\n232365|0.75\n232366|0.59722\n232367|0.88889\n232368|0.97222\n232369|0.81944\n232370|0.45833\n232371|0.625\n232372|0.375\n232373|0.13889\n232374|0.13889\n232375|0.76389\n232376|0.75\n232377|0.29167\n232378|0.63889\n232379|0.13889\n232380|0.94444\n232381|0.38889\n232382|0.34722\n232383|0.55556\n232384|0.16667\n232385|0.23611\n232386|0.55556\n232387|0.58333\n232388|0.083333\n232389|0.097222\n232390|0.25\n232391|0.88889\n232392|0.83333\n232393|0.75\n232394|0.83333\n232395|0.77778\n232396|0.73611\n232397|0.29167\n232398|0.48611\n232399|0.41667\n232400|0.54167\n232401|0.22222\n232402|0.22222\n232403|0.15278\n232404|0.27778\n232405|0.77778\n232406|0.73611\n232407|0.65278\n232408|0.013889\n232409|0.055556\n232410|0.18056\n232411|0.40278\n232412|0.31944\n232413|0.55556\n232414|0.5\n232415|0.5\n232416|0.43056\n232417|0.27778\n232418|0.63889\n232419|0.95833\n232420|0.86111\n232421|0.81944\n232422|0.375\n232423|0.375\n232424|0.73611\n232425|0.73611\n232426|0.55556\n232427|0.56944\n232428|0.86111\n232429|0.66667\n232430|0.54167\n232431|0.63889\n232432|0.33333\n232433|0.81944\n232434|0.5\n232435|0.45833\n232436|0.34722\n232437|0.86111\n232438|0.98611\n232439|0.27778\n232440|0.22222\n232441|0.5\n232442|0.375\n232443|0.5\n232444|0.73611\n232445|0.81944\n232446|0.25\n232447|0.5\n232448|0.5\n232449|0.27778\n232450|0.55556\n232451|0.77778\n232452|0.75\n232453|0.36111\n232454|0.48611\n232455|0.38889\n232456|0.27778\n232457|0.83333\n232458|0.097222\n232459|0.44444\n232460|0.097222\n232461|0.80556\n232462|0.81944\n232463|0.76389\n232464|0.18056\n232465|0.5\n232466|0.5\n232467|0.56944\n232468|0.65278\n232469|0.5\n232470|0.55556\n232471|0.52778\n232472|0.80556\n232473|0.79167\n232474|0.33333\n232475|0.66667\n232476|0.54167\n232477|0.48611\n232478|0.66667\n232479|0.51389\n232480|0.15278\n232481|0.33333\n232482|0.27778\n232483|0.30556\n232484|0.18056\n232485|0.22222\n232486|0.29167\n232487|0.90278\n232488|0.75\n232489|0.81944\n232490|0.88889\n232491|0.73611\n232492|0.65278\n232493|0.69444\n232494|0.58333\n232495|0.76389\n232496|0.84722\n232497|0.5\n232498|0.22222\n232499|0.30556\n232500|0.88889\n232501|0.77778\n232502|0.86111\n232503|0.79167\n232504|0.36111\n232505|0.625\n232506|0.54167\n232507|0.58333\n232508|0.47222\n232509|0.44444\n232510|0.18056\n232511|0.23611\n232512|0.5\n232513|0.5\n232514|0.15278\n232515|0.125\n232516|0.73611\n232517|0.22222\n232518|0.34722\n232519|0.31944\n232520|0.5\n232521|0.5\n232522|0.5\n232523|0.79167\n232524|0.41667\n232525|0.5\n232526|0.23611\n232527|0.27778\n232528|0.31944\n232529|0.125\n232530|0.27778\n232531|0.19444\n232532|0.68056\n232533|0.31944\n232534|0.36111\n232535|0.29167\n232536|0.36111\n232537|0.22222\n232538|0.91667\n232539|0.38889\n232540|0.29167\n232541|0.47222\n232542|0.70833\n232543|0.94444\n232544|0.875\n232545|0.55556\n232546|0.52778\n232547|0.5\n232548|0.41667\n232549|0.47222\n232550|0.36111\n232551|0.44444\n232552|0.44444\n232553|0.68056\n232554|0.41667\n232555|0.33333\n232556|0.5\n232557|0.61111\n232558|0.68056\n232559|0.72222\n232560|0.58333\n232561|0.86111\n232562|0.76389\n232563|0.61111\n232564|0.73611\n232565|0.26389\n232566|0.23611\n232567|0.51389\n232568|0.45833\n232569|0.33333\n232570|0.43056\n232571|0.33333\n232572|0.77778\n232573|0.79167\n232574|0.5\n232575|0.5\n232576|0.59722\n232577|0.61111\n232578|0.66667\n232579|0.34722\n232580|0.38889\n232581|0.41667\n232582|0.38889\n232583|0.36111\n232584|0.41667\n232585|0.34722\n232586|0.45833\n232587|0.33333\n232588|0.20833\n232589|0.23611\n232590|0.25\n232591|0.33333\n232592|0.40278\n232593|0.40278\n232594|0.25\n232595|0.26389\n232596|0.055556\n232597|0.30556\n232598|0.51389\n232599|0.5\n232600|0.34722\n232601|0.56944\n232602|0.5\n232603|0.45833\n232604|0.72222\n232605|0.58333\n232606|0.47222\n232607|0.29167\n232608|0.38889\n232609|0.36111\n232610|0.22222\n232611|0.20833\n232612|0.13889\n232613|0.5\n232614|0.29167\n232615|0.33333\n232616|0.45833\n232617|0.26389\n232618|0.76389\n232619|0.69444\n232620|0.70833\n232621|0.75\n232622|0.84722\n232623|0.79167\n232624|0.80556\n232625|0.84722\n232626|0.55556\n232627|0.41667\n232628|0.47222\n232629|0.16667\n232630|0.33333\n232631|0.125\n232632|0.18056\n232633|0.26389\n232634|0.38889\n232635|0.68056\n232636|0.59722\n232637|0.40278\n232638|0.5\n232639|0.44444\n232640|0.51389\n232641|0.55556\n232642|0.34722\n232643|0.33333\n232644|0.29167\n232645|0.55556\n232646|0.5\n232647|0.44444\n232648|0.41667\n232649|0.30556\n232650|0.5\n232651|0.25\n232652|0.54167\n232653|0.45833\n232654|0.38889\n232655|0.41667\n232656|0.44444\n232657|0.38889\n232658|0.36111\n232659|0.54167\n232660|0.55556\n232661|0.20833\n232662|0.80556\n232663|0.25\n232664|0.45833\n232665|0.66667\n232666|0.52778\n232667|0.52778\n232668|0.5\n232669|0.33333\n232670|0.47222\n232671|0.16667\n232672|0.36111\n232673|0.43056\n232674|0.125\n232675|0.16667\n232676|0.19444\n232677|0.26389\n232678|0.23611\n232679|0.88889\n232680|0.65278\n232681|0.80556\n232682|0.25\n232683|0.069444\n232684|0.88889\n232685|0.083333\n232686|0.19444\n232687|0.22222\n232688|0.25\n232689|0.70833\n232690|0.80556\n232691|0.23611\n232692|0.013889\n232693|0.375\n232694|0.5\n232695|0.55556\n232696|0.93056\n232697|0.5\n232698|0.23611\n232699|0.44444\n232700|0.55556\n232701|0.77778\n232702|0.23611\n232703|0.18056\n232704|0.069444\n232705|0.5\n232706|0.80556\n232707|0.65278\n232708|0.91667\n232709|0.81944\n232710|0.47222\n232711|0.38889\n232712|0.5\n232713|0.34722\n232714|0.27778\n232715|0.65278\n232716|0.72222\n232717|0.13889\n232718|0.33333\n232719|0.18056\n232720|0.16667\n232721|0.875\n232722|0.69444\n232723|0.27778\n232724|0.625\n232725|0.76389\n232726|0.40278\n232727|0.5\n232728|0.48611\n232729|0.54167\n232730|0.15278\n232731|0.083333\n232732|0.40278\n232733|0.36111\n232734|0.13889\n232735|0.41667\n232736|0.33333\n232737|0.61111\n232738|0.79167\n232739|0.54167\n232740|0.097222\n232741|0.5\n232742|0.66667\n232743|0.5\n232744|0.36111\n232745|0.26389\n232746|0.13889\n232747|0.76389\n232748|0.26389\n232749|0.22222\n232750|0.47222\n232751|0.18056\n232752|0.13889\n232753|0.70833\n232754|0.75\n232755|0.72222\n232756|0.5\n232757|0.48611\n232758|0.27778\n232759|0.13889\n232760|1\n232761|0.80556\n232762|0.25\n232763|0.48611\n232764|0.83333\n232765|0.77778\n232766|0.69444\n232767|0.84722\n232768|0.80556\n232769|0.52778\n232770|0.5\n232771|0.16667\n232772|0.13889\n232773|0.83333\n232774|0.66667\n232775|0.61111\n232776|0.20833\n232777|0.77778\n232778|0.5\n232779|0.36111\n232780|0.63889\n232781|0.77778\n232782|0.47222\n232783|0.55556\n232784|0.26389\n232785|0.25\n232786|0.26389\n232787|0.33333\n232788|0.94444\n232789|0.31944\n232790|0.56944\n232791|0.47222\n232792|0.44444\n232793|0.72222\n232794|0.30556\n232795|0.18056\n232796|0.5\n232797|0.875\n232798|0.93056\n232799|0.38889\n232800|0.75\n232801|0.45833\n232802|0.38889\n232803|0.5\n232804|0.097222\n232805|0.125\n232806|0.069444\n232807|0.19444\n232808|0.25\n232809|0.45833\n232810|0.5\n232811|0.5\n232812|0.5\n232813|0.083333\n232814|0.73611\n232815|0.51389\n232816|0.61111\n232817|0.63889\n232818|0.54167\n232819|0.083333\n232820|0.069444\n232821|0.5\n232822|0.61111\n232823|0.80556\n232824|0.51389\n232825|0.23611\n232826|0.375\n232827|0.52778\n232828|0.54167\n232829|0.31944\n232830|0.38889\n232831|0.36111\n232832|0.15278\n232833|0.5\n232834|0.45833\n232835|0.73611\n232836|0.88889\n232837|0.66667\n232838|0.59722\n232839|0.40278\n232840|0.375\n232841|0.44444\n232842|0.47222\n232843|0.65278\n232844|0.375\n232845|0.43056\n232846|0.31944\n232847|0.18056\n232848|0.13889\n232849|0.25\n232850|0.5\n232851|0.31944\n232852|0.59722\n232853|0.72222\n232854|0.38889\n232855|0.86111\n232856|0.75\n232857|0.70833\n232858|0.94444\n232859|0.19444\n232860|0.20833\n232861|0.20833\n232862|0.98611\n232863|1\n232864|0.5\n232865|0.80556\n232866|0.47222\n232867|0.26389\n232868|0.36111\n232869|0.34722\n232870|0.19444\n232871|0.20833\n232872|0.93056\n232873|0.80556\n232874|0.77778\n232875|0.80556\n232876|0.81944\n232877|0.61111\n232878|0.5\n232879|0.38889\n232880|0.5\n232881|0.5\n232882|0.44444\n232883|0.65278\n232884|0.63889\n232885|0.5\n232886|0.79167\n232887|0.33333\n232888|0.33333\n232889|0.5\n232890|0.38889\n232891|0.5\n232892|0.38889\n232893|0.94444\n232894|0.875\n232895|0.083333\n232896|0.45833\n232897|0.48611\n232898|0.29167\n232899|0.5\n232900|0.18056\n232901|0.22222\n232902|0.16667\n232903|0.5\n232904|0.38889\n232905|0.52778\n232906|0.55556\n232907|0.75\n232908|0.63889\n232909|0.76389\n232910|0.44444\n232911|0.59722\n232912|0.83333\n232913|0.5\n232914|0.44444\n232915|0.013889\n232916|0.31944\n232917|0.80556\n232918|0.16667\n232919|0.56944\n232920|0.27778\n232921|0.27778\n232922|0.27778\n232923|0.68056\n232924|0.76389\n232925|0.43056\n232926|0.88889\n232927|0.61111\n232928|0.27778\n232929|0.23611\n232930|0.19444\n232931|0.76389\n232932|0.80556\n232933|0.375\n232934|0.55556\n232935|0.75\n232936|0.84722\n232937|0.56944\n232938|0.83333\n232939|0.34722\n232940|0.51389\n232941|0.5\n232942|0.70833\n232943|0.80556\n232944|0.27778\n232945|0.13889\n232946|0.34722\n232947|0.40278\n232948|0.44444\n232949|0.30556\n232950|0.26389\n232951|0.5\n232952|0.52778\n232953|0.44444\n232954|0.36111\n232955|0.51389\n232956|0.27778\n232957|0.68056\n232958|0.23611\n232959|0.54167\n232960|0.23611\n232961|0.55556\n232962|0.875\n232963|0.98611\n232964|0.66667\n232965|0.75\n232966|0.72222\n232967|0.15278\n232968|0.77778\n232969|0.54167\n232970|0.56944\n232971|0.54167\n232972|0.59722\n232973|0.84722\n232974|0.055556\n232975|0.26389\n232976|0.58333\n232977|0.33333\n232978|0.5\n232979|0.27778\n232980|0.29167\n232981|0.26389\n232982|0.16667\n232983|0.15278\n232984|0.19444\n232985|0.26389\n232986|0.73611\n232987|0.72222\n232988|0.5\n232989|0.85417\n232990|0.59722\n232991|0.33333\n232992|0.69444\n232993|0.86111\n232994|0.56944\n232995|0.68056\n232996|0.43056\n232997|0.16667\n232998|0.11111\n232999|0.58333\n233000|0.48611\n233001|0.31944\n233002|0.20833\n233003|0.26389\n233004|0.20833\n233005|0.19444\n233006|0.45833\n233007|0.44444\n233008|0.73611\n233009|0.41667\n233010|0.33333\n233011|0.83333\n233012|0.41667\n233013|0.15278\n233014|0.44444\n233015|0.31944\n233016|0.44444\n233017|0.69444\n233018|0.5\n233019|0.48611\n233020|0.51389\n233021|0.63889\n233022|0.16667\n233023|0.55556\n233024|0.58333\n233025|0.83333\n233026|0.11111\n233027|0.51389\n233028|0.36111\n233029|0.58333\n233030|0.16667\n233031|0.36111\n233032|0.5\n233033|0.013889\n233034|0.76389\n233035|0.72222\n233036|0.90278\n233037|0.83333\n233038|0.84722\n233039|0.88889\n233040|0.5\n233041|0.63889\n233042|0.375\n233043|0.013889\n233044|0.86111\n233045|0.22222\n233046|0.30556\n233047|0.45833\n233048|0.33333\n233049|0.51389\n233050|0.26389\n233051|0.33333\n233052|0.76389\n233053|0.47222\n233054|0.41667\n233055|0.68056\n233056|0.47222\n233057|0.055556\n233058|0.5\n233059|0.22222\n233060|0.31944\n233061|0.19444\n233062|0.44444\n233063|0.77778\n233064|0.34722\n233065|0.86111\n233066|0.22222\n233067|0.70833\n233068|0.81944\n233069|0.29167\n233070|0.36111\n233071|0.77778\n233072|0.45833\n233073|0.48611\n233074|0.5\n233075|0.52778\n233076|0.91667\n233077|0.20833\n233078|0.125\n233079|0.33333\n233080|0.29167\n233081|0.52778\n233082|0.72222\n233083|0.70833\n233084|0.66667\n233085|0.40278\n233086|0.38889\n233087|0.30556\n233088|0.83333\n233089|0.5\n233090|0.5\n233091|0.22222\n233092|0.59722\n233093|0.66667\n233094|0.5\n233095|0.40278\n233096|0.63889\n233097|0.5\n233098|0.56944\n233099|0.44444\n233100|0.45833\n233101|0.19444\n233102|0.16667\n233103|0.77778\n233104|0.5\n233105|0.19444\n233106|0.11111\n233107|0.73611\n233108|0.22222\n233109|0.18056\n233110|0.51389\n233111|0.73611\n233112|0.125\n233113|0.375\n233114|0.52778\n233115|0.625\n233116|0.30556\n233117|0.44444\n233118|0.47222\n233119|0.36111\n233120|0.31944\n233121|0.45833\n233122|0.23611\n233123|0.23611\n233124|0.44444\n233125|0.26389\n233126|0.33333\n233127|0.5\n233128|0.55556\n233129|0.625\n233130|0.30556\n233131|0.5\n233132|0.5\n233133|0.5\n233134|0.61111\n233135|0.52778\n233136|0.40278\n233137|0.5\n233138|0.5\n233139|0.5\n233140|0.44444\n233141|0.31944\n233142|0.40278\n233143|0.61111\n233144|0.5\n233145|0.51389\n233146|0.30556\n233147|0.83333\n233148|0.93056\n233149|0.70833\n233150|0.52778\n233151|0.5\n233152|0.25\n233153|0.5\n233154|0.5\n233155|0.20833\n233156|0.5\n233157|0.5\n233158|0.36111\n233159|0.52778\n233160|0.44444\n233161|0.5\n233162|0.5\n233163|0.34722\n233164|0.41667\n233165|0.56944\n233166|0.51389\n233167|0.77778\n233168|0.75\n233169|0.5\n233170|0.79167\n233171|0.52778\n233172|0.18056\n233173|0.61111\n233174|0.55556\n233175|0.70833\n233176|0.72222\n233177|0.83333\n233178|0.36111\n233179|0.22222\n233180|0.58333\n233181|0.22222\n233182|0.5\n233183|0.5\n233184|0.66667\n233185|0.65278\n233186|0.097222\n233187|0.19444\n233188|0.20833\n233189|0.27778\n233190|0.26389\n233191|0.52778\n233192|0.5\n233193|0.15278\n233194|0.16667\n233195|0.41667\n233196|0.5\n233197|0.95833\n233198|0.5\n233199|0.65278\n233200|0.52778\n233201|0.5\n233202|0.5\n233203|0.61111\n233204|0.70833\n233205|0.5\n233206|0.5\n233207|0.61111\n233208|0.72222\n233209|0.54167\n233210|0.055556\n233211|0.68056\n233212|0.41667\n233213|0.44444\n233214|0.5\n233215|0.11111\n233216|0.33333\n233217|0.25\n233218|0.29167\n233219|0.27778\n233220|0.22222\n233221|0.5\n233222|0.11111\n233223|0.34722\n233224|0.43056\n233225|0.5\n233226|0.16667\n233227|0.44444\n233228|0.41667\n233229|0.5\n233230|0.23611\n233231|0.27778\n233232|0.5\n233233|0.11111\n233234|0.083333\n233235|0.55556\n233236|0.19444\n233237|0.5\n233238|0.80556\n233239|0.70833\n233240|0.69444\n233241|0.59722\n233242|0.75\n233243|0.83333\n233244|0.44444\n233245|0.45833\n233246|0.43056\n233247|0.33333\n233248|0.5\n233249|0.41667\n233250|0.56944\n233251|0.58333\n233252|0.38889\n233253|0.69444\n233254|0.27778\n233255|0.83333\n233256|0.44444\n233257|0.54167\n233258|0.30556\n233259|0.34722\n233260|0.59722\n233261|0.63889\n233262|0.44444\n233263|0.44444\n233264|0.5\n233265|0.33333\n233266|0.31944\n233267|0.55556\n233268|0.51389\n233269|0.31944\n233270|0.40278\n233271|0.5\n233272|0.55556\n233273|0.52778\n233274|0.375\n233275|0.15278\n233276|0.27778\n233277|0.30556\n233278|0.29167\n233279|0.31944\n233280|0.31944\n233281|0.25\n233282|0.26389\n233283|0.27778\n233284|0.23611\n233285|0.18056\n233286|0.5\n233287|0.77778\n233288|0.93056\n233289|0.25\n233290|0.11111\n233291|0.16667\n233292|0.20833\n233293|0.5\n233294|0.59722\n233295|0.5\n233296|0.54167\n233297|0.5\n233298|0.5\n233299|0.33333\n233300|0.5\n233301|0.54167\n233302|0.33333\n233303|0.55556\n233304|0.77778\n233305|0.79167\n233306|0.76389\n233307|0.77778\n233308|0.65278\n233309|0.58333\n233310|0.63889\n233311|0.69444\n233312|0.59722\n233313|0.58333\n233314|0.75\n233315|0.83333\n233316|0.75\n233317|0.77778\n233318|0.61111\n233319|0.56944\n233320|0.625\n233321|0.59722\n233322|0.77778\n233323|0.73611\n233324|0.65278\n233325|0.27778\n233326|0.19444\n233327|0.29167\n233328|0.20833\n233329|0.63889\n233330|0.77778\n233331|0.5\n233332|0.33333\n233333|0.20833\n233334|0.23611\n233335|0.5\n233336|0.25\n233337|0.26389\n233338|0.55556\n233339|0.22222\n233340|0.38889\n233341|0.5\n233342|0.38889\n233343|0.47222\n233344|0.44444\n233345|0.5\n233346|0.11111\n233347|0.11111\n233348|0.31944\n233349|0.013889\n233350|0.40278\n233351|0.79167\n233352|0.19444\n233353|0.77778\n233354|0.5\n233355|0.23611\n233356|0.45833\n233357|0.58333\n233358|0.48611\n233359|0.27778\n233360|0.20833\n233361|0.43056\n233362|0.47222\n233363|0.5\n233364|0.5\n233365|0.20833\n233366|0.069444\n233367|0.27778\n233368|0.38889\n233369|0.16667\n233370|0.27778\n233371|0.63889\n233372|0.5\n233373|0.33333\n233374|0.55556\n233375|0.59722\n233376|0.22222\n233377|0.44444\n233378|0.29167\n233379|0.5\n233380|0.76389\n233381|0.45833\n233382|0.66667\n233383|0.48611\n233384|0.77778\n233385|0.63889\n233386|0.5\n233387|0.5\n233388|0.69444\n233389|0.5\n233390|0.48611\n233391|0.5\n233392|0.69444\n233393|0.5\n233394|0.47222\n233395|0.5\n233396|0.54167\n233397|0.41667\n233398|0.083333\n233399|0.5\n233400|0.83333\n233401|0.55556\n233402|0.38889\n233403|0.18056\n233404|0.56944\n233405|0.77778\n233406|0.55556\n233407|0.375\n233408|0.38889\n233409|0.5\n233410|0.43056\n233411|0.5\n233412|0.58333\n233413|0.625\n233414|0.43056\n233415|0.5\n233416|0.5\n233417|0.54167\n233418|0.5\n233419|0.54167\n233420|0.58333\n233421|0.5\n233422|0.45833\n233423|0.5\n233424|0.44444\n233425|0.55556\n233426|0.13889\n233427|0.5\n233428|0.5\n233429|0.54167\n233430|0.47222\n233431|0.20833\n233432|0.18056\n233433|0.5\n233434|0.34722\n233435|0.30556\n233436|0.90278\n233437|0.41667\n233438|0.16667\n233439|0.40278\n233440|0.5\n233441|0.38889\n233442|0.38889\n233443|0.11111\n233444|0.20833\n233445|0.69444\n233446|0.125\n233447|0.5\n233448|0.26389\n233449|0.22222\n233450|0.52778\n233451|0.5\n233452|0.43056\n233453|0.66667\n233454|0.26389\n233455|0.56944\n233456|0.5\n233457|0.5\n233458|0.375\n233459|0.73611\n233460|0.48611\n233461|0.44444\n233462|0.5\n233463|0.55556\n233464|0.55556\n233465|0.68056\n233466|0.5\n233467|0.47222\n233468|0.61111\n233469|0.5\n233470|0.52778\n233471|0.59722\n233472|0.51389\n233473|0.45833\n233474|0.5\n233475|0.41667\n233476|0.5\n233477|0.5\n233478|0.59722\n233479|0.73611\n233480|0.55556\n233481|0.47222\n233482|0.43056\n233483|0.5\n233484|0.45833\n233485|0.52778\n233486|0.47222\n233487|0.375\n233488|0.47222\n233489|0.55556\n233490|0.63889\n233491|0.55556\n233492|0.59722\n233493|0.5\n233494|0.52778\n233495|0.5\n233496|0.5\n233497|0.47222\n233498|0.47222\n233499|0.27778\n233500|0.5\n233501|0.5\n233502|0.47222\n233503|0.5\n233504|0.5\n233505|0.56944\n233506|0.5\n233507|0.61111\n233508|0.44444\n233509|0.47222\n233510|0.5\n233511|0.33333\n233512|0.38889\n233513|0.25\n233514|0.34722\n233515|0.43056\n233516|0.81944\n233517|0.75\n233518|0.41667\n233519|0.52778\n233520|0.58333\n233521|0.5\n233522|0.54167\n233523|0.61111\n233524|0.73611\n233525|0.81944\n233526|0.36111\n233527|0.5\n233528|0.55556\n233529|0.48611\n233530|0.65278\n233531|0.16667\n233532|0.5\n233533|0.45833\n233534|0.5\n233535|0.38889\n233536|0.73611\n233537|0.79167\n233538|0.47222\n233539|0.30556\n233540|0.19444\n233541|0.45833\n233542|0.18056\n233543|0.33333\n233544|0.18056\n233545|0.20833\n233546|0.18056\n233547|0.34722\n233548|0.26389\n233549|0.27778\n233550|0.38889\n233551|0.27778\n233552|0.16667\n233553|0.26389\n233554|0.45833\n233555|0.83333\n233556|0.72222\n233557|0.81944\n233558|0.52778\n233559|0.47222\n233560|0.77778\n233561|0.72222\n233562|0.5\n233563|0.875\n233564|0.55556\n233565|0.625\n233566|0.56944\n233567|0.5\n233568|0.56944\n233569|0.72222\n233570|0.5\n233571|0.79167\n233572|0.72222\n233573|0.79167\n233574|0.80556\n233575|0.54167\n233576|0.55556\n233577|0.61111\n233578|0.83333\n233579|0.80556\n233580|0.68056\n233581|0.63889\n233582|0.58333\n233583|0.91667\n233584|0.41667\n233585|0.44444\n233586|0.34722\n233587|0.66667\n233588|0.20833\n233589|0.25\n233590|0.15278\n233591|0.11111\n233592|0.16667\n233593|0.56944\n233594|0.51389\n233595|0.56944\n233596|0.51389\n233597|0.73611\n233598|0.63889\n233599|0.86111\n233600|0.38889\n233601|0.51389\n233602|0.52778\n233603|0.055556\n233604|0.27778\n233605|0.48611\n233606|0.5\n233607|0.44444\n233608|0.11111\n233609|0.75\n233610|0.59722\n233611|0.70833\n233612|0.083333\n233613|0.5\n233614|0.77778\n233615|0.84722\n233616|0.72222\n233617|0.77778\n233618|0.25\n233619|0.76389\n233620|0.80556\n233621|0.61111\n233622|0.61111\n233623|0.43056\n233624|0.84722\n233625|0.54167\n233626|0.72222\n233627|0.77778\n233628|0.52778\n233629|0.69444\n233630|0.40278\n233631|0.25\n233632|0.80556\n233633|0.5\n233634|0.66667\n233635|0.88889\n233636|0.5\n233637|0.70833\n233638|0.59722\n233639|0.5\n233640|0.15278\n233641|0.33333\n233642|0.38889\n233643|0.43056\n233644|0.61111\n233645|0.81944\n233646|0.61111\n233647|0.65278\n233648|0.75\n233649|0.069444\n233650|0.45833\n233651|0.72222\n233652|0.61111\n233653|0.5\n233654|0.5\n233655|0.86111\n233656|0.94444\n233657|0.93056\n233658|0.5\n233659|0.66667\n233660|0.65278\n233661|0.48611\n233662|0.5\n233663|0.5\n233664|0.5\n233665|0.31944\n233666|0.72222\n233667|0.73611\n233668|0.72222\n233669|0.76389\n233670|0.36111\n233671|0.18056\n233672|0.19444\n233673|0.61111\n233674|0.91667\n233675|1\n233676|0.94444\n233677|0.70833\n233678|0.61111\n233679|0.26389\n233680|0.61111\n233681|0.69444\n233682|0.77778\n233683|0.54167\n233684|0.11111\n233685|0.33333\n233686|0.29167\n233687|0.13889\n233688|0.52778\n233689|0.31944\n233690|0.36111\n233691|0.5\n233692|0.81944\n233693|0.91667\n233694|0.68056\n233695|0.68056\n233696|0.29167\n233697|0.66667\n233698|0.44444\n233699|0.63889\n233700|0.72222\n233701|0.65278\n233702|0.61111\n233703|0.5\n233704|0.54167\n233705|0.68056\n233706|0.66667\n233707|0.76389\n233708|0.61111\n233709|0.76389\n233710|0.95833\n233711|0.79167\n233712|0.48611\n233713|0.93056\n233714|0.47222\n233715|0.36111\n233716|0.38889\n233717|0.5\n233718|0.5\n233719|0.56944\n233720|0.65278\n233721|0.5\n233722|0.91667\n233723|0.84722\n233724|0.86111\n233725|0.34722\n233726|0.43056\n233727|0.75\n233728|0.44444\n233729|0.48611\n233730|0.61111\n233731|0.22222\n233732|0.5\n233733|0.15278\n233734|0.5\n233735|0.47222\n233736|0.58333\n233737|0.5\n233738|0.40278\n233739|0.52778\n233740|0.55556\n233741|0.88889\n233742|0.81944\n233743|0.44444\n233744|0.54167\n233745|0.90278\n233746|0.5\n233747|1\n233748|0.45833\n233749|0.5\n233750|0.51389\n233751|0.59722\n233752|0.5\n233753|0.54167\n233754|0.45833\n233755|0.27778\n233756|0.083333\n233757|0.125\n233758|0.54167\n233759|0.18056\n233760|0.38889\n233761|0.19444\n233762|0.5\n233763|0.27778\n233764|0.40278\n233765|0.43056\n233766|0.45833\n233767|0.88889\n233768|0.88889\n233769|0.54167\n233770|0.38889\n233771|0.22222\n233772|0.875\n233773|0.375\n233774|0.31944\n233775|0.20833\n233776|0.27778\n233777|0.47222\n233778|0.31944\n233779|0.44444\n233780|0.48611\n233781|0.33333\n233782|0.43056\n233783|0.59722\n233784|0.52778\n233785|0.66667\n233786|0.5\n233787|0.44444\n233788|0.47222\n233789|0.43056\n233790|0.55556\n233791|0.5\n233792|0.5\n233793|0.33333\n233794|0.45833\n233795|0.20833\n233796|0.22222\n233797|0.34722\n233798|0.54167\n233799|0.15278\n233800|0.5\n233801|0.43056\n233802|0.33333\n233803|0.83333\n233804|0.69444\n233805|0.083333\n233806|0.5\n233807|0.40278\n233808|0.26389\n233809|0.20833\n233810|0.55556\n233811|0.5\n233812|0.61111\n233813|0.625\n233814|0.33333\n233815|0.52778\n233816|0.5\n233817|0.5\n233818|0.45833\n233819|0.5\n233820|0.48611\n233821|0.5\n233822|0.45833\n233823|0.31944\n233824|0.19444\n233825|0.54167\n233826|0.43056\n233827|0.40278\n233828|0.43056\n233829|0.5\n233830|0.44444\n233831|0.70833\n233832|0.68056\n233833|0.5\n233834|0.47222\n233835|0.34722\n233836|0.27778\n233837|0.26389\n233838|0.36111\n233839|0.61111\n233840|0.52778\n233841|0.5\n233842|0.5\n233843|0.5\n233844|0.11111\n233845|0.36111\n233846|0.26389\n233847|0.16667\n233848|0.5\n233849|0.48611\n233850|0.34722\n233851|0.29167\n233852|0.45833\n233853|0.45833\n233854|0.36111\n233855|0.22222\n233856|0.36111\n233857|0.16667\n233858|0.375\n233859|0.76389\n233860|0.5\n233861|0.22222\n233862|0.48611\n233863|0.38889\n233864|0.58333\n233865|0.44444\n233866|0.5\n233867|0.5\n233868|0.77778\n233869|0.25\n233870|0.16667\n233871|0.51389\n233872|0.44444\n233873|0.44444\n233874|0.33333\n233875|0.41667\n233876|0.5\n233877|0.40278\n233878|0.29167\n233879|0.41667\n233880|0.59722\n233881|0.58333\n233882|0.61111\n233883|0.027778\n233884|0\n233885|0.30556\n233886|0.33333\n233887|0.52778\n233888|0.26389\n233889|0.44444\n233890|0.44444\n233891|0.41667\n233892|0.36111\n233893|0.34722\n233894|0.44444\n233895|0.31944\n233896|0.48611\n233897|0.72222\n233898|0.77778\n233899|0.5\n233900|0.52778\n233901|0.55556\n233902|0.51389\n233903|0.38889\n233904|0.61111\n233905|0.86111\n233906|0.25\n233907|0.5\n233908|0.83333\n233909|0.47222\n233910|0.125\n233911|0.5\n233912|0.55556\n233913|0.083333\n233914|0.38889\n233915|0.72222\n233916|0.22222\n233917|0.38889\n233918|0.61111\n233919|0.5\n233920|0.66667\n233921|0.59722\n233922|0.34722\n233923|0.72222\n233924|0.72222\n233925|0.77778\n233926|0.68056\n233927|0.63889\n233928|0.5\n233929|0.5\n233930|0.38889\n233931|0.55556\n233932|0.16667\n233933|0.5\n233934|0.23611\n233935|0.375\n233936|0.70833\n233937|0.52778\n233938|0.61111\n233939|0.33333\n233940|0.29167\n233941|0.41667\n233942|0.73611\n233943|0.68056\n233944|0.38889\n233945|0.45833\n233946|0.44444\n233947|0.61111\n233948|0.59722\n233949|0.66667\n233950|0.79167\n233951|0.54167\n233952|0.72222\n233953|0.5\n233954|0.19444\n233955|0.38889\n233956|0.81944\n233957|0.88889\n233958|0.22222\n233959|0.15278\n233960|0.91667\n233961|0.26389\n233962|0.5\n233963|0.30556\n233964|0.20833\n233965|0.5\n233966|0.69444\n233967|0.54167\n233968|0.61111\n233969|0.86111\n233970|0.5\n233971|0.86111\n233972|0.79167\n233973|0.90278\n233974|0.86111\n233975|0.16667\n233976|0.15278\n233977|0.30556\n233978|0.69444\n233979|0.86111\n233980|0.61111\n233981|0.51389\n233982|0.45833\n233983|0.5\n233984|0.5\n233985|0.5\n233986|0.5\n233987|0.61111\n233988|0.5\n233989|0.55556\n233990|0.55556\n233991|0.52778\n233992|0.5\n233993|0.41667\n233994|0.5\n233995|0.44444\n233996|0.59722\n233997|0.5\n233998|0.75\n233999|0.5\n234000|0.33333\n234001|0.95833\n234002|0.5\n234003|0.76389\n234004|0.58333\n234005|0.26389\n234006|0.5\n234007|0.20833\n234008|0.25\n234009|0.5\n234010|0.5\n234011|0.47222\n234012|0.5\n234013|0.70833\n234014|0.5\n234015|0.58333\n234016|0.5\n234017|0.5\n234018|0.59722\n234019|0.38889\n234020|0.44444\n234021|0.18056\n234022|0.5\n234023|0.5\n234024|0.5\n234025|0.5\n234026|0.5\n234027|0.75\n234028|0.40278\n234029|0.30556\n234030|0.069444\n234031|0.61111\n234032|0.45833\n234033|0.33333\n234034|0.45833\n234035|0.055556\n234036|0.55556\n234037|0.55556\n234038|0.45833\n234039|0.38889\n234040|0.66667\n234041|0.11111\n234042|0.43056\n234043|0.63889\n234044|0.55556\n234045|0.40278\n234046|0.26389\n234047|0.44444\n234048|0.22222\n234049|0.33333\n234050|0.55556\n234051|0.59722\n234052|0.94444\n234053|0.95833\n234054|0.43056\n234055|0.27778\n234056|0.13889\n234057|0.44444\n234058|0.30556\n234059|0.5\n234060|0.48611\n234061|0.013889\n234062|0.16667\n234063|0.55556\n234064|0.5\n234065|0.54167\n234066|0.76389\n234067|0.76389\n234068|0.75\n234069|0.27778\n234070|0.5\n234071|0.44444\n234072|0.45833\n234073|0.26389\n234074|0.5\n234075|0.52778\n234076|0.36111\n234077|0.5\n234078|0.52778\n234079|0.40278\n234080|0.625\n234081|0.52778\n234082|0.52778\n234083|0.23611\n234084|0.125\n234085|0.16667\n234086|0.29167\n234087|0.61111\n234088|0.58333\n234089|0.73611\n234090|0.61111\n234091|0.44444\n234092|0.25\n234093|0.70833\n234094|0.19444\n234095|0.19444\n234096|0.65278\n234097|0.73611\n234098|0.5\n234099|0.5\n234100|0.5\n234101|0.5\n234102|0.5\n234103|0.70833\n234104|0.55556\n234105|0.625\n234106|0.70833\n234107|0.5\n234108|0.5\n234109|0.38889\n234110|0.5\n234111|0.59722\n234112|0.125\n234113|0.65278\n234114|0.69444\n234115|0.83333\n234116|0.72222\n234117|0.44444\n234118|0.36111\n234119|0.36111\n234120|0.30556\n234121|0.26389\n234122|0.26389\n234123|0.11111\n234124|0.13889\n234125|0.083333\n234126|0.43056\n234127|0.375\n234128|0.083333\n234129|0.31944\n234130|0.48611\n234131|0.66667\n234132|0.38889\n234133|0.52778\n234134|0.31944\n234135|0.5\n234136|0.51389\n234137|0.5\n234138|0.44444\n234139|0.5\n234140|0.40278\n234141|0.44444\n234142|0.43056\n234143|0.18056\n234144|0.097222\n234145|0.45833\n234146|0.41667\n234147|0.5\n234148|0.43056\n234149|0.44444\n234150|0.11111\n234151|0.54167\n234152|0.5\n234153|0.30556\n234154|0.54167\n234155|0.33333\n234156|0.29167\n234157|0.44444\n234158|0.27778\n234159|0.47222\n234160|0.51389\n234161|0.61111\n234162|0.41667\n234163|0.33333\n234164|0.34722\n234165|0.22222\n234166|0.23611\n234167|0.29167\n234168|0.69444\n234169|0.29167\n234170|0.15278\n234171|0.48611\n234172|0.5\n234173|0.38889\n234174|0.33333\n234175|0.58333\n234176|0.56944\n234177|0.77778\n234178|0.26389\n234179|0.47222\n234180|0.25\n234181|0.33333\n234182|0.29167\n234183|0.43056\n234184|0.41667\n234185|0.22222\n234186|0.375\n234187|0.41667\n234188|0.55556\n234189|0.45833\n234190|0.47222\n234191|0.59722\n234192|0.65278\n234193|0.43056\n234194|0.48611\n234195|0.33333\n234196|0.27778\n234197|0.41667\n234198|0.38889\n234199|0.47222\n234200|0.29167\n234201|0.33333\n234202|0.5\n234203|0.5\n234204|0.52778\n234205|0.68056\n234206|0.055556\n234207|0.55556\n234208|0.43056\n234209|0.34722\n234210|0.23611\n234211|0.38889\n234212|0.16667\n234213|0.68056\n234214|0.25\n234215|0.19444\n234216|0.75\n234217|0.27778\n234218|0.44444\n234219|0.55556\n234220|0.5\n234221|0.54167\n234222|0.38889\n234223|0.48611\n234224|0.63889\n234225|0.48611\n234226|0.66667\n234227|0.77778\n234228|0.47222\n234229|0.5\n234230|0.5\n234231|0.16667\n234232|0.61111\n234233|0.29167\n234234|0.055556\n234235|0.29167\n234236|0.48611\n234237|0.65278\n234238|0.66667\n234239|0.5\n234240|0.5\n234241|0.5\n234242|0.5\n234243|0.69444\n234244|0.58333\n234245|0.33333\n234246|0.41667\n234247|0.055556\n234248|0.23611\n234249|0.44444\n234250|0.54167\n234251|0.5\n234252|0.79167\n234253|0.5\n234254|0.36111\n234255|0.5\n234256|0.76389\n234257|0.54167\n234258|0.51389\n234259|0.47222\n234260|0.44444\n234261|0.5\n234262|0.5\n234263|0.5\n234264|0.5\n234265|0.54167\n234266|0.58333\n234267|0.5\n234268|0.48611\n234269|0.5\n234270|0.5\n234271|0.5\n234272|0.5\n234273|0.38889\n234274|0.5\n234275|0.5\n234276|0.5\n234277|0.56944\n234278|0.36111\n234279|0.52778\n234280|0.59722\n234281|0.5\n234282|0.5\n234283|0.5\n234284|0.5\n234285|0.625\n234286|0.5\n234287|0.5\n234288|0.29167\n234289|0.48611\n234290|0.5\n234291|0.5\n234292|0.56944\n234293|0.5\n234294|0.48611\n234295|0.5\n234296|0.5\n234297|0.5\n234298|0.40278\n234299|0.55556\n234300|0.5\n234301|0.5\n234302|0.58333\n234303|0.5\n234304|0.5\n234305|0.55556\n234306|0.5\n234307|0.5\n234308|0.5\n234309|0.68056\n234310|0.52778\n234311|0.56944\n234312|0.5\n234313|0.5\n234314|0.63889\n234315|0.51389\n234316|0.5\n234317|0.5\n234318|0.5\n234319|0.83333\n234320|0.52778\n234321|0.5\n234322|0.5\n234323|0.5\n234324|0.5\n234325|0.5\n234326|0.5\n234327|0.73611\n234328|0.52778\n234329|0.5\n234330|0.5\n234331|0.5\n234332|0.5\n234333|0.5\n234334|0.5\n234335|0.5\n234336|0.44444\n234337|0.5\n234338|0.5\n234339|0.55556\n234340|0.5\n234341|0.5\n234342|0.5\n234343|0.5\n234344|0.5\n234345|0.52778\n234346|0.51389\n234347|0.5\n234348|0.5\n234349|0.5\n234350|0.5\n234351|0.5\n234352|0.5\n234353|0.66667\n234354|0.5\n234355|0.58333\n234356|0.375\n234357|0.80556\n234358|0.5\n234359|0.56944\n234360|0.5\n234361|0.26389\n234362|0.54167\n234363|0.30556\n234364|0.79167\n234365|0.77778\n234366|0.29167\n234367|0.5\n234368|0.54167\n234369|0.625\n234370|0.51389\n234371|0.51389\n234372|0.5\n234373|0.56944\n234374|0.47222\n234375|0.45833\n234376|0.5\n234377|0.77778\n234378|0.5\n234379|0.5\n234380|0.5\n234381|0.5\n234382|0.44444\n234383|0.34722\n234384|0.23611\n234385|0.29167\n234386|0.5\n234387|0.56944\n234388|0.5\n234389|0.44444\n234390|0.36111\n234391|0.5\n234392|0.34722\n234393|0.40278\n234394|0.30556\n234395|0.22222\n234396|0.56944\n234397|0.43056\n234398|0.61111\n234399|0.72222\n234400|0.5\n234401|0.61111\n234402|0.41667\n234403|0.76389\n234404|0.61111\n234405|0.5\n234406|0.59722\n234407|0.54167\n234408|0.5\n234409|0.5\n234410|0.73611\n234411|0.61111\n234412|0.15278\n234413|0.66667\n234414|0.65278\n234415|0.41667\n234416|0.5\n234417|0.5\n234418|0.5\n234419|0.58333\n234420|0.5\n234421|0.5\n234422|0.5\n234423|0.52778\n234424|0.61111\n234425|0.36111\n234426|0.44444\n234427|0.45833\n234428|0.59722\n234429|0.875\n234430|0.5\n234431|0.5\n234432|0.29167\n234433|0.041667\n234434|0.77778\n234435|0.77778\n234436|0.58333\n234437|0.52778\n234438|0.5\n234439|0.48611\n234440|0.41667\n234441|0.22222\n234442|0.72222\n234443|0.65278\n234444|0.5\n234445|0.47222\n234446|0.44444\n234447|0.125\n234448|0.44444\n234449|0.5\n234450|0.75\n234451|0.77778\n234452|0.5\n234453|0.68056\n234454|0.5\n234455|0.5\n234456|0.66667\n234457|0.44444\n234458|0.5\n234459|0.72222\n234460|0.48611\n234461|0.5\n234462|0.61111\n234463|0.5\n234464|0.5\n234465|0.34722\n234466|0.5\n234467|0.125\n234468|0.70833\n234469|0.48611\n234470|0.93056\n234471|0.51389\n234472|0.5\n234473|0.44444\n234474|0.59722\n234475|0.55556\n234476|0.5\n234477|0.5\n234478|0.5\n234479|0.55556\n234480|0.61111\n234481|0.44444\n234482|0.63889\n234483|0.5\n234484|0.61111\n234485|0.65278\n234486|0.51389\n234487|0.27778\n234488|0.5\n234489|0.47222\n234490|0.55556\n234491|0.55556\n234492|0.5\n234493|0.44444\n234494|0.75\n234495|0.5\n234496|0.51389\n234497|0.76389\n234498|0.38889\n234499|0.5\n234500|0.5\n234501|0.43056\n234502|0.47222\n234503|0.5\n234504|0.58333\n234505|0.63889\n234506|0.54167\n234507|0.80556\n234508|0.86111\n234509|0.38889\n234510|0.44444\n234511|0.5\n234512|0.5\n234513|0.44444\n234514|0.41667\n234515|0.5\n234516|0.5\n234517|0.5\n234518|0.5\n234519|0.51389\n234520|0.48611\n234521|0.5\n234522|0.44444\n234523|0.5\n234524|0.5\n234525|0.38889\n234526|0.38889\n234527|0.79167\n234528|0.63889\n234529|0.5\n234530|0.69444\n234531|0.54167\n234532|0.54167\n234533|0.36111\n234534|0.80556\n234535|0.56944\n234536|0.33333\n234537|0.43056\n234538|0.5\n234539|0.40278\n234540|0.5\n234541|0.34722\n234542|0.625\n234543|0.55556\n234544|0.5\n234545|0.5\n234546|0.5\n234547|0.38889\n234548|0.75\n234549|0.55556\n234550|0.98611\n234551|0.86111\n234552|0.875\n234553|0.5\n234554|0.93056\n234555|0.72222\n234556|0.5\n234557|0.30556\n234558|0.72222\n234559|0.51389\n234560|0.51389\n234561|0.5\n234562|0.81944\n234563|0.5\n234564|0.54167\n234565|0.55556\n234566|0.5\n234567|0.5\n234568|0.5\n234569|0.375\n234570|0.11111\n234571|0.5\n234572|0.65278\n234573|0.875\n234574|0.40278\n234575|0.55556\n234576|0.69444\n234577|0.48611\n234578|0.51389\n234579|0.5\n234580|0.58333\n234581|0.5\n234582|0.5\n234583|0.5\n234584|0.083333\n234585|0.83333\n234586|0.81944\n234587|0.56944\n234588|0.125\n234589|0.55556\n234590|0.75\n234591|0.875\n234592|0.44444\n234593|0.43056\n234594|0.5\n234595|0.18056\n234596|0.41667\n234597|0.5\n234598|0.66667\n234599|0.34722\n234600|0.5\n234601|0.5\n234602|0.16667\n234603|0.72222\n234604|0.61111\n234605|0.5\n234606|0.58333\n234607|0.45833\n234608|0.5\n234609|0.5\n234610|0.84722\n234611|0.48611\n234612|0.5\n234613|0.63889\n234614|0.70833\n234615|0.41667\n234616|0.43056\n234617|0.51389\n234618|0.38889\n234619|0.55556\n234620|0.83333\n234621|0.69444\n234622|0.72222\n234623|0.83333\n234624|0.44444\n234625|0.5\n234626|0.76389\n234627|0.625\n234628|0.69444\n234629|0.83333\n234630|0.72222\n234631|0.625\n234632|0.125\n234633|0.25\n234634|0.72222\n234635|0.47222\n234636|0.65278\n234637|0.55556\n234638|0.16667\n234639|0.34722\n234640|0.79167\n234641|0.73611\n234642|0.69444\n234643|0.54167\n234644|0.44444\n234645|0.44444\n234646|0.41667\n234647|0.55556\n234648|0.5\n234649|0.25\n234650|0.5\n234651|0.27778\n234652|0.36111\n234653|0.63889\n234654|0.41667\n234655|0.84722\n234656|0.52778\n234657|0.5\n234658|0.5\n234659|0.5\n234660|0.5\n234661|0.5\n234662|0.36111\n234663|0.30556\n234664|0.5\n234665|0.19444\n234666|0.5\n234667|0.5\n234668|0.5\n234669|0.58333\n234670|0.63889\n234671|0.27778\n234672|0.5\n234673|0.80556\n234674|0.56944\n234675|0.5\n234676|0.5\n234677|0.41667\n234678|0.27778\n234679|0.55556\n234680|0.5\n234681|0.5\n234682|0.44444\n234683|0.5\n234684|0.47222\n234685|0.69444\n234686|0.55556\n234687|0.5\n234688|0.5\n234689|0.45833\n234690|0.55556\n234691|0.5\n234692|0.5\n234693|0.36111\n234694|0.375\n234695|0.83333\n234696|0.5\n234697|0.083333\n234698|0.58333\n234699|0.56944\n234700|0.55556\n234701|0.77778\n234702|0.38889\n234703|0.875\n234704|0.5\n234705|0.5\n234706|0.5\n234707|0.72222\n234708|0.55556\n234709|0.5\n234710|0.5\n234711|0.55556\n234712|0.5\n234713|0.5\n234714|0.16667\n234715|0.26389\n234716|0.36111\n234717|0.30556\n234718|0.33333\n234719|0.5\n234720|0.69444\n234721|0.51389\n234722|0.083333\n234723|0.25\n234724|0.69444\n234725|0.75\n234726|0.58333\n234727|0.73611\n234728|0.5\n234729|0.18056\n234730|0.93056\n234731|0.52778\n234732|0.95833\n234733|0.23611\n234734|0.88889\n234735|0.88889\n234736|0.76389\n234737|0.94444\n234738|0.31944\n234739|0.23611\n234740|0.95833\n234741|0.55556\n234742|0.52778\n234743|0.65278\n234744|0.56944\n234745|0.5\n234746|0.5\n234747|0.5\n234748|0.5\n234749|0.5\n234750|0.63889\n234751|0.63889\n234752|0.47222\n234753|0.80556\n234754|0.55556\n234755|0.5\n234756|0.45833\n234757|0.375\n234758|0.27778\n234759|0.26389\n234760|0.20833\n234761|0.25\n234762|0.54167\n234763|0.41667\n234764|0.52778\n234765|0.55556\n234766|0.5\n234767|0.43056\n234768|0.5\n234769|0.44444\n234770|0.27778\n234771|0.48611\n234772|0.51389\n234773|0.66667\n234774|0.86111\n234775|0.61111\n234776|0.55556\n234777|0.5\n234778|0.47222\n234779|0.16667\n234780|0.26389\n234781|0.097222\n234782|0.51389\n234783|0.76389\n234784|0.73611\n234785|0.61111\n234786|0.38889\n234787|0.22222\n234788|0.56944\n234789|0.93056\n234790|0.54167\n234791|0.44444\n234792|0.5\n234793|0.51389\n234794|0.083333\n234795|0.15278\n234796|0.55556\n234797|0.58333\n234798|0.70833\n234799|0.66667\n234800|0.5\n234801|0.31944\n234802|0.5\n234803|0.5\n234804|0.33333\n234805|0.5\n234806|0.38889\n234807|0.44444\n234808|0.5\n234809|0.44444\n234810|0.40278\n234811|0.65278\n234812|0.22222\n234813|0.45833\n234814|0.36111\n234815|0.41667\n234816|0.5\n234817|0.93056\n234818|0.86111\n234819|0.15278\n234820|0.5\n234821|0.54167\n234822|0.5\n234823|0.5\n234824|0.18056\n234825|0.34722\n234826|0.19444\n234827|0.19444\n234828|0.375\n234829|0.63889\n234830|0.30556\n234831|0.23611\n234832|0.66667\n234833|0.48611\n234834|0.31944\n234835|0.44444\n234836|0.30556\n234837|0.34722\n234838|0.23611\n234839|0.22222\n234840|0.16667\n234841|0.5\n234842|0.5\n234843|0.68056\n234844|0.5\n234845|0.5\n234846|0.44444\n234847|0.43056\n234848|0.5\n234849|0.54167\n234850|0.79167\n234851|0.83333\n234852|0.29167\n234853|0.25\n234854|0.16667\n234855|0.5\n234856|0.16667\n234857|0.13889\n234858|0.5\n234859|0.83333\n234860|0.5\n234861|0.11111\n234862|0.375\n234863|0.22222\n234864|0.61111\n234865|0.45833\n234866|0.44444\n234867|0.44444\n234868|0.5\n234869|0.61111\n234870|0.48611\n234871|0.54167\n234872|0.54167\n234873|0.59722\n234874|0.5\n234875|0.48611\n234876|0.59722\n234877|0.58333\n234878|0.55556\n234879|0.5\n234880|0.44444\n234881|0.5\n234882|0.41667\n234883|0.5\n234884|0.5\n234885|0.51389\n234886|0.47222\n234887|0.44444\n234888|0.58333\n234889|0.44444\n234890|0.52778\n234891|0.19444\n234892|0.27778\n234893|0.80556\n234894|0.65278\n234895|0.38889\n234896|0.25\n234897|0.30556\n234898|0.55556\n234899|0.5\n234900|0.70833\n234901|0.61111\n234902|0.55556\n234903|0.38889\n234904|0.625\n234905|0.77778\n234906|0.41667\n234907|0.625\n234908|0.38889\n234909|0.38889\n234910|0.55556\n234911|0.75\n234912|0.68056\n234913|0.80556\n234914|0.73611\n234915|0.5\n234916|0.83333\n234917|0.73611\n234918|0.47222\n234919|0.29167\n234920|0.5\n234921|0.54167\n234922|0.34722\n234923|0.36111\n234924|0.5\n234925|0.44444\n234926|0.5\n234927|0.54167\n234928|0.18056\n234929|0.94444\n234930|0.5\n234931|0.81944\n234932|0.73611\n234933|0.5\n234934|0.5\n234935|0.5\n234936|0.83333\n234937|0.80556\n234938|0.38889\n234939|0.34722\n234940|0.47222\n234941|0.5\n234942|0.15278\n234943|0.5\n234944|0.31944\n234945|0.069444\n234946|0.27778\n234947|0.097222\n234948|0.18056\n234949|0.51389\n234950|0.5\n234951|0.55556\n234952|0.72222\n234953|0.76389\n234954|0.055556\n234955|0.13889\n234956|0.36111\n234957|0.19444\n234958|0.73611\n234959|0.29167\n234960|0.68056\n234961|0.72222\n234962|0.5\n234963|0.63889\n234964|0.52778\n234965|0.56944\n234966|0.5\n234967|0.44444\n234968|0.47222\n234969|0.54167\n234970|0.52778\n234971|0.48611\n234972|0.5\n234973|0.51389\n234974|0.55556\n234975|0.55556\n234976|0.125\n234977|0.69444\n234978|0.65278\n234979|0.61111\n234980|0.54167\n234981|0.66667\n234982|0.44444\n234983|0.44444\n234984|0.27778\n234985|0.31944\n234986|0.44444\n234987|0.41667\n234988|0.41667\n234989|0.375\n234990|0.48611\n234991|0.81944\n234992|0.5\n234993|0.5\n234994|0.58333\n234995|0.69444\n234996|0.63889\n234997|0.59722\n234998|0.72222\n234999|0.65278\n235000|0.5\n235001|0.5\n235002|0.5\n235003|0.40278\n235004|0.097222\n235005|0.44444\n235006|0.48611\n235007|0.5\n235008|0.55556\n235009|0.48611\n235010|0.77778\n235011|0.81944\n235012|0.54167\n235013|0.65278\n235014|0.41667\n235015|0.55556\n235016|0.375\n235017|0.48611\n235018|0.5\n235019|0.083333\n235020|0.43056\n235021|0.55556\n235022|0.52778\n235023|0.56944\n235024|0.36111\n235025|0.22222\n235026|0.55556\n235027|0.47222\n235028|0.5\n235029|0.44444\n235030|0.29167\n235031|0.36111\n235032|0.30556\n235033|0.18056\n235034|0.26389\n235035|0.66667\n235036|0.83333\n235037|0.55556\n235038|0.44444\n235039|0.38889\n235040|0.61111\n235041|0.52778\n235042|0.51389\n235043|0.58333\n235044|0.38889\n235045|0.52778\n235046|0.55556\n235047|0.88889\n235048|0.52778\n235049|0.66667\n235050|0.75\n235051|0.75\n235052|0.55556\n235053|0.47222\n235054|0.069444\n235055|0.33333\n235056|0.40278\n235057|0.26389\n235058|0.34722\n235059|0.47222\n235060|0.44444\n235061|0.58333\n235062|0.73611\n235063|0.5\n235064|0.59722\n235065|0.5\n235066|0.61111\n235067|0.70833\n235068|0.26389\n235069|0.66667\n235070|0.44444\n235071|0.5\n235072|0.5\n235073|0.5\n235074|0.5\n235075|0.36111\n235076|0.56944\n235077|0.48611\n235078|0.375\n235079|0.55556\n235080|0.5\n235081|0.51389\n235082|0.26389\n235083|0.30556\n235084|0.5\n235085|0.5\n235086|0.5\n235087|0.72222\n235088|0.80556\n235089|0.79167\n235090|0.68056\n235091|0.80556\n235092|0.375\n235093|0.52778\n235094|0.65278\n235095|0.40278\n235096|0.77778\n235097|0.27778\n235098|0.66667\n235099|0.45833\n235100|0.72222\n235101|0.81944\n235102|0.81944\n235103|0.5\n235104|0.81944\n235105|0.22222\n235106|0.23611\n235107|0.5\n235108|0.5\n235109|0.5\n235110|0.5\n235111|0.5\n235112|0.72222\n235113|0.48611\n235114|0.30556\n235115|0.43056\n235116|0.36111\n235117|0.44444\n235118|0.75\n235119|0.48611\n235120|0.58333\n235121|0.33333\n235122|0.61111\n235123|0.44444\n235124|0.44444\n235125|0.27778\n235126|0.44444\n235127|0.38889\n235128|0.48611\n235129|0.48611\n235130|0.5\n235131|0.11111\n235132|0.38889\n235133|0.47222\n235134|0.66667\n235135|0.5\n235136|0.40278\n235137|0\n235138|0.5\n235139|0.22222\n235140|0.63889\n235141|0.48611\n235142|0.27778\n235143|0.36111\n235144|0.5\n235145|0.47222\n235146|0.77778\n235147|0.25\n235148|0.41667\n235149|0.5\n235150|0.51389\n235151|0.65278\n235152|0.69444\n235153|0.70833\n235154|0.52778\n235155|0.61111\n235156|0.5\n235157|0.72222\n235158|0.80556\n235159|0.75\n235160|0.5\n235161|0.5\n235162|0.069444\n235163|0.58333\n235164|0.84722\n235165|0.88889\n235166|0.30556\n235167|0.27778\n235168|0.22222\n235169|0.5\n235170|0.55556\n235171|0.55556\n235172|0.34722\n235173|0.30556\n235174|0.5\n235175|0.38889\n235176|0.90278\n235177|0.83333\n235178|0.91667\n235179|0.47222\n235180|0.29167\n235181|0.30556\n235182|0.36111\n235183|0.23611\n235184|0.44444\n235185|0.84722\n235186|0.54167\n235187|0.51389\n235188|0.27778\n235189|0.23611\n235190|0.45833\n235191|0.5\n235192|0.70833\n235193|0.91667\n235194|0.51389\n235195|0.61111\n235196|0.5\n235197|0.48611\n235198|0.38889\n235199|0.5\n235200|0.30556\n235201|0.79167\n235202|0.72222\n235203|0.51389\n235204|0.5\n235205|0.16667\n235206|0.23611\n235207|0.33333\n235208|0.38889\n235209|0.30556\n235210|0.34722\n235211|0.45833\n235212|0.5\n235213|0.26389\n235214|0.29167\n235215|0.375\n235216|0.069444\n235217|0.5\n235218|0.61111\n235219|0.055556\n235220|0.5\n235221|0.125\n235222|0.55556\n235223|0.5\n235224|0.375\n235225|0\n235226|0.11111\n235227|0.72222\n235228|0.5\n235229|0.5\n235230|0.41667\n235231|0.625\n235232|0.66667\n235233|0.5\n235234|0.51389\n235235|0.5\n235236|0.54167\n235237|0.5\n235238|0.55556\n235239|0.5\n235240|0.5\n235241|0.83333\n235242|0.5\n235243|0.23611\n235244|0.26389\n235245|0.30556\n235246|0.70833\n235247|0.45833\n235248|0.66667\n235249|0.73611\n235250|0.70833\n235251|0.66667\n235252|0.65278\n235253|0.88889\n235254|0.69444\n235255|0.51389\n235256|0.55556\n235257|0.55556\n235258|0.5\n235259|0.51389\n235260|0.5\n235261|0.15278\n235262|0.16667\n235263|0.58333\n235264|0.47222\n235265|0.38889\n235266|0.36111\n235267|0.5\n235268|0.11111\n235269|0.31944\n235270|0.5\n235271|0.5\n235272|0.61111\n235273|0.44444\n235274|0.59722\n235275|0.5\n235276|0.33333\n235277|0.70833\n235278|0.80556\n235279|0.38889\n235280|0.34722\n235281|0.61111\n235282|0.29167\n235283|0.5\n235284|0.51389\n235285|0.5\n235286|0.5\n235287|0.5\n235288|0.55556\n235289|0.55556\n235290|0.5\n235291|0.48611\n235292|0.5\n235293|0.5\n235294|0.19444\n235295|0.16667\n235296|0.30556\n235297|0.15278\n235298|0.72222\n235299|0.77778\n235300|0.80556\n235301|0.51389\n235302|0.5\n235303|0.52778\n235304|0.51389\n235305|0.66667\n235306|0.86111\n235307|0.90278\n235308|0.5\n235309|0.5\n235310|0.29167\n235311|0.58333\n235312|0.5\n235313|0.5\n235314|0.375\n235315|0.31944\n235316|0.86111\n235317|0.73611\n235318|0.5\n235319|0.38889\n235320|0.61111\n235321|0.51389\n235322|0.027778\n235323|0.34722\n235324|0.86111\n235325|0.73611\n235326|0.72222\n235327|0.625\n235328|0.55556\n235329|0.65278\n235330|0.16667\n235331|0.11111\n235332|0.55556\n235333|0.125\n235334|0.15278\n235335|0.36111\n235336|0.375\n235337|0.61111\n235338|0.27778\n235339|0.51389\n235340|0.5\n235341|0.69444\n235342|0.083333\n235343|0.38889\n235344|0.43056\n235345|0.625\n235346|0.54167\n235347|0.72222\n235348|0.11111\n235349|0.61111\n235350|0.55556\n235351|0.5\n235352|0.5\n235353|0.43056\n235354|0.5\n235355|0.76389\n235356|0.5\n235357|0.5\n235358|0.27778\n235359|0.72222\n235360|0.72222\n235361|0.625\n235362|0.55556\n235363|0.5\n235364|0.44444\n235365|0.41667\n235366|0.5\n235367|0.30556\n235368|0.44444\n235369|0.40278\n235370|0.45833\n235371|0.5\n235372|0.5\n235373|0.61111\n235374|0.625\n235375|0.51389\n235376|0.5\n235377|0.45833\n235378|0.31944\n235379|0.80556\n235380|0.73611\n235381|0.76389\n235382|0.88889\n235383|0.5\n235384|0.56944\n235385|0.45833\n235386|0.56944\n235387|0.76389\n235388|0.66667\n235389|0.25\n235390|0.61111\n235391|0.58333\n235392|0.5\n235393|0.45833\n235394|0.61111\n235395|0.79167\n235396|0.22222\n235397|0.013889\n235398|0.125\n235399|0.055556\n235400|0.15278\n235401|0.40278\n235402|0.36111\n235403|0.40278\n235404|0.5\n235405|0.81944\n235406|0.83333\n235407|0.88889\n235408|0.70833\n235409|0.59722\n235410|0.47222\n235411|0.77778\n235412|0.88889\n235413|0.31944\n235414|0.26389\n235415|0.22222\n235416|0.16667\n235417|0.23611\n235418|0.31944\n235419|0.31944\n235420|0.44444\n235421|0.5\n235422|0.69444\n235423|0.83333\n235424|0.16667\n235425|0.16667\n235426|0.25\n235427|0.31944\n235428|0.61111\n235429|0.5\n235430|0.47222\n235431|0.27778\n235432|0.75\n235433|0.84722\n235434|0.52778\n235435|0.34722\n235436|0.52778\n235437|0.58333\n235438|0.43056\n235439|0.875\n235440|0.79167\n235441|0.83333\n235442|0.59722\n235443|0.54167\n235444|0.52778\n235445|0.55556\n235446|0.75\n235447|0.055556\n235448|0.5\n235449|0.5\n235450|0.47222\n235451|0.56944\n235452|0.5\n235453|0.58333\n235454|0.5\n235455|0.54167\n235456|0.19444\n235457|0.5\n235458|0.48611\n235459|0.44444\n235460|0.16667\n235461|0.5\n235462|0.44444\n235463|0.44444\n235464|0.5\n235465|0.5\n235466|0.15278\n235467|0.34722\n235468|0.22222\n235469|0.5\n235470|0.5\n235471|0.44444\n235472|0.43056\n235473|0.5\n235474|0.56944\n235475|0.69444\n235476|0.44444\n235477|0.36111\n235478|0.38889\n235479|0.43056\n235480|0.33333\n235481|0.34722\n235482|0.27778\n235483|0.5\n235484|0.16667\n235485|0.56944\n235486|0.18056\n235487|0.5\n235488|0.47222\n235489|0.5\n235490|0.5\n235491|0.5\n235492|0.44444\n235493|0.40278\n235494|0.75\n235495|0.55556\n235496|0.56944\n235497|0.5\n235498|0.5\n235499|0.56944\n235500|0.38889\n235501|0.56944\n235502|0.5\n235503|0.40278\n235504|0.79167\n235505|0.34722\n235506|0.375\n235507|0.5\n235508|0.5\n235509|0.80556\n235510|0.51389\n235511|0.52778\n235512|0.51389\n235513|0.36111\n235514|0.15278\n235515|0.61111\n235516|0.30556\n235517|0.125\n235518|0.22222\n235519|0.5\n235520|0.52778\n235521|0.72222\n235522|0.44444\n235523|0.55556\n235524|0.44444\n235525|0.44444\n235526|0.58333\n235527|0.56944\n235528|0.66667\n235529|0.52778\n235530|0.16667\n235531|0.33333\n235532|0.625\n235533|0.625\n235534|0.59722\n235535|0.73611\n235536|0.61111\n235537|0.375\n235538|0.38889\n235539|0.38889\n235540|0.38889\n235541|0.43056\n235542|0.34722\n235543|0.61111\n235544|0.041667\n235545|0.125\n235546|0.73611\n235547|0.18056\n235548|0.27778\n235549|0.55556\n235550|0.23611\n235551|0.40278\n235552|0.16667\n235553|0.19444\n235554|0.69444\n235555|0.43056\n235556|0.44444\n235557|0.5\n235558|0.38889\n235559|0.27778\n235560|0.77778\n235561|0.47222\n235562|0.38889\n235563|0.59722\n235564|0.38889\n235565|0.29167\n235566|0.31944\n235567|0.47222\n235568|0.38889\n235569|0.38889\n235570|0.5\n235571|0.22222\n235572|0.27778\n235573|0.27778\n235574|0.69444\n235575|0.68056\n235576|0.38889\n235577|0.76389\n235578|0.5\n235579|0.43056\n235580|0.5\n235581|0.58333\n235582|0.56944\n235583|0.5\n235584|0.5\n235585|0.5\n235586|0.44444\n235587|0.54167\n235588|0.51389\n235589|0.40278\n235590|0.47222\n235591|0.23611\n235592|0.5\n235593|0.77778\n235594|0.52778\n235595|0.38889\n235596|0.27778\n235597|0.66667\n235598|0.5\n235599|0.5\n235600|0.47222\n235601|0.5\n235602|0.45833\n235603|0.45833\n235604|0.22222\n235605|0.36111\n235606|0.54167\n235607|0.5\n235608|0.55556\n235609|0.375\n235610|0.18056\n235611|0.36111\n235612|0.36111\n235613|0.27778\n235614|0.63889\n235615|0.54167\n235616|0.41667\n235617|0.55556\n235618|0.61111\n235619|0.75\n235620|0.11111\n235621|0.125\n235622|0.47222\n235623|0.41667\n235624|0.45833\n235625|0.55556\n235626|0.30556\n235627|0.5\n235628|0.59722\n235629|0.56944\n235630|0.72222\n235631|0.5\n235632|0.51389\n235633|0.5\n235634|0.34722\n235635|0.86111\n235636|0.5\n235637|0.5\n235638|0.48611\n235639|0.55556\n235640|0.26389\n235641|0.47222\n235642|0.75\n235643|0.88889\n235644|0.5\n235645|0.38889\n235646|0.33333\n235647|0.31944\n235648|0.26389\n235649|0.20833\n235650|0.72222\n235651|0.81944\n235652|0.79167\n235653|0.75\n235654|0.75\n235655|0.875\n235656|0.66667\n235657|0.69444\n235658|0.69444\n235659|0.61111\n235660|0.5\n235661|0.79167\n235662|0.77778\n235663|0.29167\n235664|0.34722\n235665|0.70833\n235666|0.5\n235667|0.55556\n235668|0.51389\n235669|0.55556\n235670|0.73611\n235671|0.40278\n235672|0.48611\n235673|0.54167\n235674|0.5\n235675|0.5\n235676|0.5\n235677|0.45833\n235678|0.44444\n235679|0.40278\n235680|0.083333\n235681|0.11111\n235682|0.38889\n235683|0.34722\n235684|0.22222\n235685|0.16667\n235686|0.55556\n235687|0.55556\n235688|0.54167\n235689|0.5\n235690|0.27778\n235691|0.45833\n235692|0.61111\n235693|0.72222\n235694|0.625\n235695|0.66667\n235696|0.34722\n235697|0.33333\n235698|0.36111\n235699|0.43056\n235700|0.54167\n235701|0.66667\n235702|0.61111\n235703|0.27778\n235704|0.29167\n235705|0.30556\n235706|0.52778\n235707|0.625\n235708|0.41667\n235709|0.65278\n235710|0.66667\n235711|0.43056\n235712|0.5\n235713|0.47222\n235714|0.33333\n235715|0.56944\n235716|0.5\n235717|0.5\n235718|0.56944\n235719|0.45833\n235720|0.45833\n235721|0.75\n235722|0.79167\n235723|0.61111\n235724|0.54167\n235725|0.61111\n235726|0.75\n235727|0.5\n235728|0.38889\n235729|0.5\n235730|0.83333\n235731|0.90278\n235732|0.69444\n235733|0.38889\n235734|0.5\n235735|0.5\n235736|0.54167\n235737|0.55556\n235738|0.52778\n235739|0\n235740|0.11111\n235741|0.51389\n235742|0.625\n235743|0.47222\n235744|0.15278\n235745|0.41667\n235746|0.29167\n235747|0.27778\n235748|0.33333\n235749|0.34722\n235750|0.5\n235751|0.79167\n235752|0.83333\n235753|0.47222\n235754|0.069444\n235755|0.5\n235756|0.22222\n235757|0.5\n235758|0.5\n235759|0.5\n235760|0.5\n235761|0.5\n235762|0.5\n235763|0.5\n235764|0.5\n235765|0.5\n235766|0.5\n235767|0.5\n235768|0.5\n235769|0.5\n235770|0.097222\n235771|0.5\n235772|0.55556\n235773|0.5\n235774|0.44444\n235775|0.72222\n235776|0.5\n235777|0.41667\n235778|0.5\n235779|0.47222\n235780|0.31944\n235781|0.5\n235782|0.66667\n235783|0.65278\n235784|0.79167\n235785|0.33333\n235786|0.77778\n235787|0.5\n235788|0.61111\n235789|0.29167\n235790|0.5\n235791|0.5\n235792|0.55556\n235793|0.38889\n235794|0.13889\n235795|0.5\n235796|0.65278\n235797|0.19444\n235798|0.22222\n235799|0.5\n235800|0.47222\n235801|0.41667\n235802|0.097222\n235803|0.16667\n235804|0.16667\n235805|0.23611\n235806|0.61111\n235807|0.47222\n235808|0.44444\n235809|0.36111\n235810|0.30556\n235811|0.5\n235812|0.44444\n235813|0.5\n235814|0.44444\n235815|0.38889\n235816|0.44444\n235817|0.38889\n235818|0.33333\n235819|0.22222\n235820|0.36111\n235821|0.18056\n235822|0.30556\n235823|0.16667\n235824|0.375\n235825|0.27778\n235826|0.27778\n235827|0.5\n235828|0.5\n235829|0.23611\n235830|0.44444\n235831|0.73611\n235832|0.5\n235833|0.45833\n235834|0.94444\n235835|0.20833\n235836|0.61111\n235837|0.625\n235838|0.69444\n235839|0.41667\n235840|0.26389\n235841|0.65278\n235842|0.51389\n235843|0.16667\n235844|0.29167\n235845|0.16667\n235846|0.40278\n235847|0.5\n235848|0.23611\n235849|0.43056\n235850|0.45833\n235851|0.61111\n235852|0.625\n235853|0.5\n235854|0.375\n235855|0.25\n235856|0.51389\n235857|0.19444\n235858|0.5\n235859|0.44444\n235860|0.55556\n235861|0.66667\n235862|0.375\n235863|0.51389\n235864|0.26389\n235865|0.79167\n235866|0.54167\n235867|0.38889\n235868|0.16667\n235869|0.77778\n235870|0.73611\n235871|0.22222\n235872|0.13889\n235873|0.15278\n235874|0.73611\n235875|0.125\n235876|0.65278\n235877|0.5\n235878|0.375\n235879|0.44444\n235880|0.81944\n235881|0.19444\n235882|0.5\n235883|0.44444\n235884|0.5\n235885|0.51389\n235886|0.54167\n235887|0.69444\n235888|0.88889\n235889|0.69444\n235890|0.22222\n235891|0.43056\n235892|0.27778\n235893|0.43056\n235894|0.5\n235895|0.38889\n235896|0.31944\n235897|0.66667\n235898|0.47222\n235899|0.83333\n235900|0.69444\n235901|0.72222\n235902|0.76389\n235903|0.77778\n235904|0.88889\n235905|0.72222\n235906|0.44444\n235907|0.5\n235908|0.61111\n235909|0.5\n235910|0.15278\n235911|0.51389\n235912|0.38889\n235913|0.18056\n235914|0.33333\n235915|0.61111\n235916|0.625\n235917|0.875\n235918|0.65278\n235919|0.5\n235920|0.25\n235921|0.5\n235922|0.40278\n235923|0.31944\n235924|0.93056\n235925|0.5\n235926|0.29167\n235927|0.56944\n235928|0.5\n235929|0.5\n235930|0.44444\n235931|0.54167\n235932|0.66667\n235933|0.47222\n235934|0.34722\n235935|0.625\n235936|0.55556\n235937|0.041667\n235938|0.18056\n235939|0.81944\n235940|0.15278\n235941|0.77778\n235942|0\n235943|0.79167\n235944|0.58333\n235945|0.69444\n235946|0.69444\n235947|0.083333\n235948|0.125\n235949|0.30556\n235950|0.75\n235951|0.22222\n235952|0.76389\n235953|0.63889\n235954|0.75\n235955|0.34722\n235956|0.43056\n235957|0.41667\n235958|0.70833\n235959|0.51389\n235960|0.73611\n235961|0.5\n235962|0.5\n235963|0.375\n235964|0.097222\n235965|0.45833\n235966|0.5\n235967|0.5\n235968|0.375\n235969|0.27778\n235970|0.34722\n235971|0.013889\n235972|0.72222\n235973|0.43056\n235974|0.5\n235975|0.79167\n235976|0.65278\n235977|0.66667\n235978|0.5\n235979|0.52778\n235980|0.45833\n235981|0.44444\n235982|0.5\n235983|0.5\n235984|0.5\n235985|0.72222\n235986|0.44444\n235987|0.54167\n235988|0.5\n235989|0.5\n235990|0.58333\n235991|0.56944\n235992|0.52778\n235993|0.5\n235994|0.22222\n235995|0.5\n235996|0.63889\n235997|0.55556\n235998|0.59722\n235999|0.63889\n236000|0.5\n236001|0.44444\n236002|0.625\n236003|0.5\n236004|0.41667\n236005|0.44444\n236006|0.48611\n236007|0.29167\n236008|0.27778\n236009|0.47222\n236010|0.36111\n236011|0.40278\n236012|0.22222\n236013|0.5\n236014|0.38889\n236015|0.069444\n236016|0.5\n236017|0.66667\n236018|0.5\n236019|0.43056\n236020|0.41667\n236021|0.45833\n236022|0.80556\n236023|0.90278\n236024|0.33333\n236025|0.5\n236026|0.5\n236027|0.26389\n236028|0.44444\n236029|0.58333\n236030|0.5\n236031|0.59722\n236032|0.66667\n236033|0.19444\n236034|0.72222\n236035|0.43056\n236036|0.125\n236037|0.11111\n236038|0.52778\n236039|0.75\n236040|0.76389\n236041|0.55556\n236042|0.58333\n236043|0.61111\n236044|0.72222\n236045|0.5\n236046|0.56944\n236047|0.5\n236048|0.5\n236049|0.45833\n236050|0.25\n236051|0.52778\n236052|0.22222\n236053|0.55556\n236054|0.61111\n236055|0.41667\n236056|0.73611\n236057|0.40278\n236058|0.19444\n236059|0.66667\n236060|0.36111\n236061|0.5\n236062|0.29167\n236063|0.41667\n236064|0.5\n236065|0.68056\n236066|0.55556\n236067|0.5\n236068|0.69444\n236069|0.52778\n236070|0.47222\n236071|0.41667\n236072|0.52778\n236073|0.41667\n236074|0.61111\n236075|0.55556\n236076|0.69444\n236077|0.58333\n236078|0.5\n236079|0.55556\n236080|0.48611\n236081|0.54167\n236082|0.44444\n236083|0.41667\n236084|0.45833\n236085|0.36111\n236086|0.38889\n236087|0.44444\n236088|0.16667\n236089|0.65278\n236090|0.70833\n236091|0.76389\n236092|0.5\n236093|0.5\n236094|0.33333\n236095|0.36111\n236096|0.25\n236097|0.80556\n236098|0.13889\n236099|0.63889\n236100|0.59722\n236101|0.66667\n236102|0.77778\n236103|0.75\n236104|0.5\n236105|0.38889\n236106|0.75\n236107|0.61111\n236108|0.48611\n236109|0.18056\n236110|0.72222\n236111|0.83333\n236112|0.80556\n236113|0.72222\n236114|0.79167\n236115|0.73611\n236116|0.23611\n236117|0.77778\n236118|0.30556\n236119|0.52778\n236120|0.5\n236121|0.20833\n236122|0.43056\n236123|0.36111\n236124|0.52778\n236125|0.27778\n236126|0.5\n236127|0.5\n236128|0.5\n236129|0.76389\n236130|0.58333\n236131|0.63889\n236132|0.55556\n236133|0.40278\n236134|0.22222\n236135|0.30556\n236136|0.52778\n236137|0.26389\n236138|0.33333\n236139|0.27778\n236140|0.097222\n236141|0.5\n236142|0.5\n236143|0.5\n236144|0.5\n236145|0.45833\n236146|0.41667\n236147|0.65278\n236148|0.5\n236149|0.5\n236150|0.44444\n236151|0.77778\n236152|0.59722\n236153|0.34722\n236154|0.83333\n236155|0.41667\n236156|0.27778\n236157|0.63889\n236158|0.52778\n236159|0.19444\n236160|0.40278\n236161|0.13889\n236162|0.55556\n236163|0.375\n236164|0.86111\n236165|0.83333\n236166|0.68056\n236167|0.625\n236168|0.20833\n236169|0.25\n236170|0.84722\n236171|0.625\n236172|0.51389\n236173|0.34722\n236174|0.013889\n236175|0.44444\n236176|0.81944\n236177|0.51389\n236178|0.56944\n236179|0.56944\n236180|0.52778\n236181|0.77778\n236182|0.625\n236183|0.125\n236184|0.5\n236185|0.40278\n236186|0.63889\n236187|0.80556\n236188|0.44444\n236189|0.055556\n236190|0.11111\n236191|0.56944\n236192|0.68056\n236193|0.63889\n236194|0.40278\n236195|0.5\n236196|0.625\n236197|0.65278\n236198|0.75\n236199|0.5\n236200|0.69444\n236201|0.55556\n236202|0.55556\n236203|0.66667\n236204|0.5\n236205|0.55556\n236206|0.65278\n236207|0.76389\n236208|0.63889\n236209|0.70833\n236210|0.5\n236211|0.69444\n236212|0.81944\n236213|0.83333\n236214|0.58333\n236215|0.65278\n236216|0.20833\n236217|0.83333\n236218|0.44444\n236219|0.5\n236220|0.45833\n236221|0.5\n236222|0.22222\n236223|0.61111\n236224|0.63889\n236225|0.52778\n236226|0.31944\n236227|0.41667\n236228|0.55556\n236229|0.5\n236230|0.75\n236231|0.5\n236232|0.80556\n236233|0.61111\n236234|0.52778\n236235|0.16667\n236236|0.11111\n236237|0.58333\n236238|0.55556\n236239|0.68056\n236240|0.61111\n236241|0.5\n236242|0.5\n236243|0.31944\n236244|0.36111\n236245|0.5\n236246|0.48611\n236247|0.375\n236248|0.5\n236249|0.5\n236250|0.52778\n236251|0.51389\n236252|0.5\n236253|0.52778\n236254|0.5\n236255|0.16667\n236256|0.5\n236257|0.26389\n236258|0.55556\n236259|0.31944\n236260|0.38889\n236261|0.23611\n236262|0.25\n236263|0.5\n236264|0.59722\n236265|0.41667\n236266|0.5\n236267|0.52778\n236268|0.47222\n236269|0.625\n236270|0.38889\n236271|0.44444\n236272|0.5\n236273|0.59722\n236274|0.47222\n236275|0.23611\n236276|0.31944\n236277|0.66667\n236278|0.75\n236279|0.16667\n236280|0.88889\n236281|0.27778\n236282|0.38889\n236283|0.52778\n236284|0.23611\n236285|0.55556\n236286|0.55556\n236287|0.55556\n236288|0.5\n236289|0.5\n236290|0.5\n236291|0.55556\n236292|0.61111\n236293|0.875\n236294|0.51389\n236295|0.47222\n236296|0.5\n236297|0.66667\n236298|0.5\n236299|0.5\n236300|0.5\n236301|0.51389\n236302|0.5\n236303|0.5\n236304|0.5\n236305|0.375\n236306|0.51389\n236307|0.58333\n236308|0.5\n236309|0.54167\n236310|0.51389\n236311|0.44444\n236312|0.5\n236313|0.5\n236314|0.44444\n236315|0.5\n236316|0.5\n236317|0.58333\n236318|0.48611\n236319|0.5\n236320|0.58333\n236321|0.55556\n236322|0.27778\n236323|0.56944\n236324|0.5\n236325|0.875\n236326|0.18056\n236327|0.59722\n236328|0.43056\n236329|0.47222\n236330|0.29167\n236331|0.58333\n236332|0.5\n236333|0.5\n236334|0.40278\n236335|0.22222\n236336|0.5\n236337|0.44444\n236338|0.55556\n236339|0.5\n236340|0.77778\n236341|0.5\n236342|0.55556\n236343|0.5\n236344|0.81944\n236345|0.72222\n236346|0.875\n236347|0.72222\n236348|0.65278\n236349|0.72222\n236350|0.31944\n236351|0.22222\n236352|0.70833\n236353|0.23611\n236354|0.40278\n236355|0.77778\n236356|0.45833\n236357|0.29167\n236358|0.72222\n236359|0.15278\n236360|0.44444\n236361|0.55556\n236362|0.75\n236363|0.52778\n236364|0.38889\n236365|0.81944\n236366|0.65278\n236367|0.55556\n236368|0.63889\n236369|0.20833\n236370|0.5\n236371|0.40278\n236372|0.52778\n236373|0.65278\n236374|0.5\n236375|0.5\n236376|0.27778\n236377|0.40278\n236378|0.125\n236379|0.5\n236380|0.48611\n236381|0.055556\n236382|0.13889\n236383|0.59722\n236384|0.45833\n236385|0.36111\n236386|0.58333\n236387|0.16667\n236388|0.5\n236389|0.5\n236390|0.68056\n236391|0.61111\n236392|0.61111\n236393|0.5\n236394|0.5\n236395|0.44444\n236396|0.5\n236397|0.65278\n236398|0.58333\n236399|0.43056\n236400|0.59722\n236401|0.86111\n236402|0.25\n236403|0.45833\n236404|0.77778\n236405|0.77778\n236406|0.5\n236407|0.69444\n236408|0.5\n236409|0.79167\n236410|0.51389\n236411|0.625\n236412|0.70833\n236413|0.25\n236414|0.38889\n236415|0.77778\n236416|0.5\n236417|0.68056\n236418|0.54167\n236419|0.83333\n236420|0.80556\n236421|0.44444\n236422|0.55556\n236423|0.63889\n236424|0.66667\n236425|0.27778\n236426|0.5\n236427|0.69444\n236428|0.54167\n236429|0.54167\n236430|0.44444\n236431|0.86111\n236432|0.45833\n236433|0.51389\n236434|0.29167\n236435|0.69444\n236436|0.097222\n236437|0.86111\n236438|0.26389\n236439|0.47222\n236440|0.38889\n236441|0.66667\n236442|0.56944\n236443|0.56944\n236444|0.069444\n236445|0.44444\n236446|0.54167\n236447|0.93056\n236448|0.625\n236449|0.30556\n236450|0.5\n236451|0.5\n236452|0.20833\n236453|0.38889\n236454|0.36111\n236455|0.5\n236456|0.23611\n236457|0.86111\n236458|0.33333\n236459|0.51389\n236460|0.375\n236461|0.5\n236462|0.38889\n236463|0.26389\n236464|0.72222\n236465|0.40278\n236466|0.48611\n236467|0.31944\n236468|0.44444\n236469|0.69444\n236470|0.055556\n236471|0.18056\n236472|0.36111\n236473|0.86111\n236474|0.72222\n236475|0.40278\n236476|0.38889\n236477|0.33333\n236478|0.48611\n236479|0.54167\n236480|0.5\n236481|0.22222\n236482|0.41667\n236483|0.33333\n236484|0.25\n236485|0.5\n236486|0.22222\n236487|0.55556\n236488|0.44444\n236489|0.56944\n236490|0.36111\n236491|0.36111\n236492|0.51389\n236493|0.83333\n236494|0.61111\n236495|0.31944\n236496|0.83333\n236497|0.55556\n236498|0.23611\n236499|0.375\n236500|0.23611\n236501|0.25\n236502|0.48611\n236503|0.75\n236504|0.5\n236505|0.13889\n236506|0.33333\n236507|0.29167\n236508|0.29167\n236509|0.16667\n236510|0.55556\n236511|0.55556\n236512|0.31944\n236513|0.54167\n236514|0.27778\n236515|0.52778\n236516|0.33333\n236517|0.73611\n236518|0.5\n236519|0.58333\n236520|0.5\n236521|0.75\n236522|0.72222\n236523|0.51389\n236524|0.45833\n236525|0.29167\n236526|0.55556\n236527|0.25\n236528|0.22222\n236529|0.55556\n236530|0.27778\n236531|0.43056\n236532|0.44444\n236533|0.41667\n236534|0.45833\n236535|0.84722\n236536|0.38889\n236537|0.44444\n236538|0.38889\n236539|0.27778\n236540|0.59722\n236541|0.30556\n236542|0.72222\n236543|0.29167\n236544|0.41667\n236545|0.51389\n236546|0.44444\n236547|0.63889\n236548|0.083333\n236549|0.34722\n236550|0.11111\n236551|0.44444\n236552|0.44444\n236553|0.16667\n236554|0.055556\n236555|0.44444\n236556|0.66667\n236557|0.15278\n236558|0.29167\n236559|0.45833\n236560|0.76389\n236561|0.36111\n236562|0.65278\n236563|0.5\n236564|0.69444\n236565|0.69444\n236566|0.70833\n236567|0.18056\n236568|0.58333\n236569|0.63889\n236570|0.5\n236571|0.65278\n236572|0.56944\n236573|0.51389\n236574|0.13889\n236575|0.77778\n236576|0.56944\n236577|0.47222\n236578|0.45833\n236579|0.5\n236580|0.63889\n236581|0.45833\n236582|0.52778\n236583|0.76389\n236584|0.56944\n236585|0.65278\n236586|0.5\n236587|0.88889\n236588|0.66667\n236589|0.11111\n236590|0.5\n236591|0.58333\n236592|0.22222\n236593|0.083333\n236594|0.36111\n236595|0.65278\n236596|0.33333\n236597|0.52778\n236598|0.20833\n236599|0.72222\n236600|0.40278\n236601|0.5\n236602|0.5\n236603|0.33333\n236604|0.38889\n236605|0.5\n236606|0.59722\n236607|0.5\n236608|0.5\n236609|0.5\n236610|0.11111\n236611|0.56944\n236612|0.5\n236613|0.5\n236614|0.5\n236615|0.375\n236616|0.5\n236617|0.33333\n236618|0.11111\n236619|0.66667\n236620|0.5\n236621|0.5\n236622|0.27778\n236623|0.5\n236624|0.5\n236625|0.61111\n236626|0.5\n236627|0.5\n236628|0.48611\n236629|0.5\n236630|0.5\n236631|0.56944\n236632|0.26389\n236633|0.48611\n236634|0.5\n236635|0.5\n236636|0.5\n236637|0.77778\n236638|0.5\n236639|0.5\n236640|0.5\n236641|0.16667\n236642|0.5\n236643|0.55556\n236644|0.5\n236645|0.5\n236646|0.5\n236647|0.5\n236648|0.5\n236649|0.55556\n236650|0.5\n236651|0.51389\n236652|0.52778\n236653|0.47222\n236654|0.5\n236655|0.5\n236656|0.5\n236657|0.5\n236658|0.5\n236659|0.72222\n236660|0.77778\n236661|0.5\n236662|0.5\n236663|0.5\n236664|0.5\n236665|0.5\n236666|0.44444\n236667|0.47222\n236668|0.027778\n236669|0.5\n236670|0.61111\n236671|0.40278\n236672|0.83333\n236673|0.5\n236674|0.5\n236675|0.5\n236676|0.52778\n236677|0.48611\n236678|0.38889\n236679|0.45833\n236680|0.54167\n236681|0.38889\n236682|0.72222\n236683|0.70833\n236684|0.5\n236685|0.44444\n236686|0.5\n236687|0.36111\n236688|0.45833\n236689|0.55556\n236690|0.5\n236691|0.38889\n236692|0.61111\n236693|0.55556\n236694|0.43056\n236695|0.5\n236696|0.31944\n236697|0.56944\n236698|0.38889\n236699|0.48611\n236700|0.5\n236701|0.5\n236702|0.5\n236703|0.27778\n236704|0.20833\n236705|0.55556\n236706|0.55556\n236707|0.54167\n236708|0.52778\n236709|0.26389\n236710|0.59722\n236711|0.80556\n236712|0.75\n236713|0.54167\n236714|0.5\n236715|0.81944\n236716|0.29167\n236717|0.26389\n236718|0.15278\n236719|0.56944\n236720|0.43056\n236721|0.43056\n236722|0.625\n236723|0.5\n236724|0.56944\n236725|0.5\n236726|0.41667\n236727|0.5\n236728|0.61111\n236729|0.45833\n236730|0.5\n236731|0.16667\n236732|0.44444\n236733|0.5\n236734|0.44444\n236735|0.5\n236736|0.22222\n236737|0.5\n236738|0.61111\n236739|0.88889\n236740|0.86111\n236741|0.79167\n236742|0.84722\n236743|0.61111\n236744|0.98611\n236745|0.77778\n236746|0.5\n236747|0.51389\n236748|0.5\n236749|0.61111\n236750|0.56944\n236751|0.23611\n236752|0.59722\n236753|0.73611\n236754|0.5\n236755|0.5\n236756|0.55556\n236757|0.77778\n236758|0.55556\n236759|0.70833\n236760|0.72222\n236761|0.5\n236762|0.23611\n236763|0.43056\n236764|0.77778\n236765|0.29167\n236766|0.63889\n236767|0.51389\n236768|0.5\n236769|0.48611\n236770|0.5\n236771|0.29167\n236772|0.79167\n236773|0.75\n236774|0.83333\n236775|0.59722\n236776|0.30556\n236777|0.38889\n236778|0.15278\n236779|0.36111\n236780|0.69444\n236781|0.27778\n236782|0.15278\n236783|0.5\n236784|0.72222\n236785|0.63889\n236786|0.5\n236787|0.38889\n236788|0.25\n236789|0.55556\n236790|0.52778\n236791|0.52778\n236792|0.54167\n236793|0.59722\n236794|0.47222\n236795|0.5\n236796|0.44444\n236797|0.5\n236798|0.54167\n236799|0.5\n236800|0.041667\n236801|0.43056\n236802|0.625\n236803|0.5\n236804|0.40278\n236805|0.5\n236806|0.5\n236807|0.23611\n236808|0.26389\n236809|0.43056\n236810|0.5\n236811|0.52778\n236812|0.45833\n236813|0.36111\n236814|0.23611\n236815|0.23611\n236816|0.16667\n236817|0.5\n236818|0.5\n236819|0.5\n236820|0.5\n236821|0.5\n236822|0.5\n236823|0.75\n236824|0.5\n236825|0.44444\n236826|0.48611\n236827|0.5\n236828|0.84722\n236829|0.11111\n236830|0.22222\n236831|0.72222\n236832|0.83333\n236833|0.41667\n236834|0.27778\n236835|0.76389\n236836|0.27778\n236837|0.44444\n236838|0.51389\n236839|0.31944\n236840|0.69444\n236841|0.47222\n236842|0.54167\n236843|0.44444\n236844|0.31944\n236845|0.19444\n236846|0.34722\n236847|0.61111\n236848|0.72222\n236849|0.51389\n236850|0.54167\n236851|0.66667\n236852|0.31944\n236853|0.55556\n236854|0.41667\n236855|0.77778\n236856|0.33333\n236857|0.23611\n236858|0.66667\n236859|0.125\n236860|0.41667\n236861|0.72222\n236862|0.66667\n236863|0.30556\n236864|0.56944\n236865|0.5\n236866|0.66667\n236867|0.5\n236868|0.625\n236869|0.47222\n236870|0.15278\n236871|0.38889\n236872|0.61111\n236873|0.77778\n236874|0.5\n236875|0.23611\n236876|0.56944\n236877|0.79167\n236878|0.61111\n236879|0.65278\n236880|0.45833\n236881|0.375\n236882|0.79167\n236883|0.91667\n236884|0.33333\n236885|0.33333\n236886|0.33333\n236887|0.30556\n236888|0.30556\n236889|0.27778\n236890|0.30556\n236891|0.33333\n236892|0.56944\n236893|0.18056\n236894|0.34722\n236895|0.38889\n236896|0.86111\n236897|0.22222\n236898|0.5\n236899|0.5\n236900|0.22222\n236901|0.22222\n236902|0.083333\n236903|0.11111\n236904|0.13889\n236905|0.5\n236906|0.5\n236907|0.44444\n236908|0.68056\n236909|0.25\n236910|0.83333\n236911|0.47222\n236912|0.43056\n236913|0.44444\n236914|0.45833\n236915|0.34722\n236916|0.125\n236917|0.5\n236918|0.5\n236919|0.5\n236920|0.5\n236921|0.5\n236922|0.45833\n236923|0.51389\n236924|0.84722\n236925|0.5\n236926|0.5\n236927|0.72222\n236928|0.90278\n236929|0.5\n236930|0.5\n236931|0.51389\n236932|0.5\n236933|0.25\n236934|0.5\n236935|0.5\n236936|0.43056\n236937|0.5\n236938|0.45833\n236939|0.66667\n236940|0.79167\n236941|0.34722\n236942|0.5\n236943|0.5\n236944|0.76389\n236945|0.15278\n236946|0.59722\n236947|0.61111\n236948|0.5\n236949|0.48611\n236950|0.44444\n236951|0.27778\n236952|0.18056\n236953|0.055556\n236954|0.55556\n236955|0.5\n236956|0.55556\n236957|0.55556\n236958|0.61111\n236959|0.36111\n236960|0.5\n236961|0.5\n236962|0.22222\n236963|0.72222\n236964|0.61111\n236965|0.875\n236966|0.58333\n236967|0.31944\n236968|0.59722\n236969|0.44444\n236970|0.5\n236971|0.19444\n236972|0.56944\n236973|0.61111\n236974|0.77778\n236975|0.86111\n236976|0.5\n236977|0.38889\n236978|0.55556\n236979|0.45833\n236980|0.5\n236981|0.40278\n236982|0.5\n236983|0.38889\n236984|0.22222\n236985|0.65278\n236986|0.38889\n236987|0.72222\n236988|0.27778\n236989|0.5\n236990|0.5\n236991|0.55556\n236992|0.38889\n236993|0.48611\n236994|0.41667\n236995|0.45833\n236996|0.77778\n236997|0.5\n236998|0.56944\n236999|0.79167\n237000|0.38889\n237001|0.5\n237002|0.48611\n237003|0.38889\n237004|0.625\n237005|0.33333\n237006|0.77778\n237007|0.90278\n237008|0.58333\n237009|0.48611\n237010|0.56944\n237011|0.41667\n237012|0.56944\n237013|0.25\n237014|0.5\n237015|0.5\n237016|0.55556\n237017|0.61111\n237018|0.5\n237019|0.38889\n237020|0.51389\n237021|0.80556\n237022|0.56944\n237023|0.5\n237024|0.45833\n237025|0.70833\n237026|0.61111\n237027|0.5\n237028|0.5\n237029|0.5\n237030|0.30556\n237031|0.33333\n237032|0.38889\n237033|0.5\n237034|0.5\n237035|0.55556\n237036|0.41667\n237037|0.38889\n237038|0.55556\n237039|0.5\n237040|0.5\n237041|0.5\n237042|0.47222\n237043|0.5\n237044|0.59722\n237045|0.79167\n237046|0.47222\n237047|0.55556\n237048|0.94444\n237049|0.76389\n237050|0.48611\n237051|0.5\n237052|0.19444\n237053|0.5\n237054|0.5\n237055|0.70833\n237056|0.44444\n237057|0.33333\n237058|0.44444\n237059|0.5\n237060|0.5\n237061|0.38889\n237062|0.5\n237063|0.5\n237064|0.72222\n237065|0.86111\n237066|0.88889\n237067|0.13889\n237068|0.72222\n237069|0.55556\n237070|0.75\n237071|0.5\n237072|0.83333\n237073|0.90278\n237074|0.91667\n237075|0.69444\n237076|0.5\n237077|0.22222\n237078|0.33333\n237079|0.25\n237080|0.013889\n237081|0.84722\n237082|0.11111\n237083|0.81944\n237084|0.77778\n237085|0.52778\n237086|0.19444\n237087|0.76389\n237088|0.56944\n237089|0.5\n237090|0.43056\n237091|0.41667\n237092|0.79167\n237093|0.5\n237094|0.5\n237095|0.48611\n237096|0.31944\n237097|0.77778\n237098|0.18056\n237099|0.56944\n237100|0.38889\n237101|0.91667\n237102|0.34722\n237103|0.5\n237104|0.5\n237105|0.31944\n237106|0.5\n237107|0.65278\n237108|0.61111\n237109|0.5\n237110|0.69444\n237111|0.38889\n237112|0.5\n237113|0.47222\n237114|0.48611\n237115|0.5\n237116|0.5\n237117|0.52778\n237118|0.86111\n237119|0.73611\n237120|0.625\n237121|0.55556\n237122|0.40278\n237123|0.43056\n237124|0.38889\n237125|0.25\n237126|0.5\n237127|0.5\n237128|0.5\n237129|0.5\n237130|0.5\n237131|0.5\n237132|0.81944\n237133|0.34722\n237134|0.84722\n237135|0.54167\n237136|0.86111\n237137|0.43056\n237138|0.55556\n237139|0.5\n237140|0.86111\n237141|0.5\n237142|0.5\n237143|0.5\n237144|0.5\n237145|0.55556\n237146|0.44444\n237147|0.70833\n237148|0.25\n237149|0.375\n237150|0.625\n237151|0.54167\n237152|0.66667\n237153|0.25\n237154|0.40278\n237155|0.27778\n237156|0.63889\n237157|0.66667\n237158|0.47222\n237159|0.5\n237160|0.65278\n237161|0.38889\n237162|0.31944\n237163|0.18056\n237164|0.31944\n237165|0.59722\n237166|0.43056\n237167|0.31944\n237168|0.51389\n237169|0.55556\n237170|0.56944\n237171|0.5\n237172|0.44444\n237173|0.40278\n237174|0.22222\n237175|0.55556\n237176|0.69444\n237177|0.76389\n237178|0.56944\n237179|0.44444\n237180|0.55556\n237181|0.625\n237182|0.875\n237183|0.75\n237184|0.38889\n237185|0.58333\n237186|0.66667\n237187|0.5\n237188|0.77778\n237189|0.5\n237190|0.5\n237191|0.59722\n237192|0.72222\n237193|0.52778\n237194|0.30556\n237195|0.22222\n237196|0.5\n237197|0.5\n237198|0.22222\n237199|0.34722\n237200|0.22222\n237201|0.041667\n237202|0.66667\n237203|0.19444\n237204|0.5\n237205|0.23611\n237206|0.45833\n237207|0.5\n237208|0.34722\n237209|0.25\n237210|0.30556\n237211|0.31944\n237212|0.22222\n237213|0.5\n237214|0.5\n237215|0.31944\n237216|0.40278\n237217|0.41667\n237218|0.66667\n237219|0.5\n237220|0.625\n237221|0.38889\n237222|0.27778\n237223|0.44444\n237224|0.5\n237225|0.5\n237226|0.45833\n237227|0.5\n237228|0.72222\n237229|0.47222\n237230|0.47222\n237231|0.45833\n237232|0.5\n237233|0.5\n237234|0.36111\n237235|0.5\n237236|0.79167\n237237|0.63889\n237238|0.38889\n237239|0.22222\n237240|0.51389\n237241|0.65278\n237242|0.40278\n237243|0.31944\n237244|0.77778\n237245|0.875\n237246|0.88889\n237247|0.22222\n237248|0.40278\n237249|0.5\n237250|0.5\n237251|0.5\n237252|0.56944\n237253|0.83333\n237254|0.48611\n237255|0.55556\n237256|0.30556\n237257|0.58333\n237258|0.5\n237259|0.55556\n237260|0.40278\n237261|0.70833\n237262|0.5\n237263|0.5\n237264|0.5\n237265|0.58333\n237266|0.33333\n237267|0.23611\n237268|0.5\n237269|0.5\n237270|0.59722\n237271|0.5\n237272|0.5\n237273|0.47222\n237274|0.61111\n237275|0.36111\n237276|0.52778\n237277|0.44444\n237278|0.43056\n237279|0.54167\n237280|0.5\n237281|0.5\n237282|0.63889\n237283|0.34722\n237284|0.77778\n237285|0.5\n237286|0.55556\n237287|0.56944\n237288|0.81944\n237289|0.52778\n237290|0.41667\n237291|0.5\n237292|0.38889\n237293|0.5\n237294|0.5\n237295|0.5\n237296|0.5\n237297|0.48611\n237298|0.27778\n237299|0.44444\n237300|0.25\n237301|0.20833\n237302|0.43056\n237303|0.66667\n237304|0.76389\n237305|0.36111\n237306|0.38889\n237307|0.51389\n237308|0.70833\n237309|0.55556\n237310|0.5\n237311|0.44444\n237312|0.15278\n237313|0.55556\n237314|0.48611\n237315|0.26389\n237316|0.45833\n237317|0.47222\n237318|0.33333\n237319|0.5\n237320|0.15278\n237321|0.5\n237322|0.51389\n237323|0.27778\n237324|0.5\n237325|0.19444\n237326|0.45833\n237327|0.88889\n237328|0.66667\n237329|0.27778\n237330|0.55556\n237331|0.44444\n237332|0.83333\n237333|0.73611\n237334|0.55556\n237335|0.86111\n237336|0.5\n237337|0.5\n237338|0.45833\n237339|0.55556\n237340|0.27778\n237341|0.5\n237342|0.83333\n237343|0.80556\n237344|0.91667\n237345|0.79167\n237346|0.38889\n237347|0.5\n237348|0.45833\n237349|0.48611\n237350|0.55556\n237351|0.84722\n237352|0.80556\n237353|0.5\n237354|0.33333\n237355|0.54167\n237356|0.34722\n237357|0.5\n237358|0.73611\n237359|0.90278\n237360|0.63889\n237361|0.66667\n237362|0.5\n237363|0.5\n237364|0.52778\n237365|0.5\n237366|0.5\n237367|0.5\n237368|0.5\n237369|0.5\n237370|0.5\n237371|0.43056\n237372|0.5\n237373|0.5\n237374|0.51389\n237375|0.5\n237376|0.5\n237377|0.31944\n237378|0.22222\n237379|0.15278\n237380|0.56944\n237381|0.41667\n237382|0.5\n237383|0.44444\n237384|0.15278\n237385|0.48611\n237386|0.70833\n237387|0.15278\n237388|0.30556\n237389|0.55556\n237390|0.33333\n237391|0.5\n237392|0.45833\n237393|0.5\n237394|0.55556\n237395|0.83333\n237396|0.5\n237397|0.5\n237398|0.55556\n237399|0.83333\n237400|0.31944\n237401|0.75\n237402|0.59722\n237403|0.44444\n237404|0.19444\n237405|0.097222\n237406|0.83333\n237407|0.83333\n237408|0.29167\n237409|0.125\n237410|0.19444\n237411|0.43056\n237412|0.69444\n237413|0.61111\n237414|0.5\n237415|0.54167\n237416|0.63889\n237417|0.31944\n237418|0.40278\n237419|0.84722\n237420|0.80556\n237421|0.20833\n237422|0.40278\n237423|0.11111\n237424|0.16667\n237425|0.23611\n237426|0.76389\n237427|0.61111\n237428|0.5\n237429|0.55556\n237430|0.5\n237431|0.55556\n237432|0.5\n237433|0.73611\n237434|0.5\n237435|0.5\n237436|0.5\n237437|0.5\n237438|0.5\n237439|0.55556\n237440|0.5\n237441|0.76389\n237442|0.55556\n237443|0.61111\n237444|0.25\n237445|0.43056\n237446|0.66667\n237447|0.41667\n237448|0.65278\n237449|0.44444\n237450|0.27778\n237451|0.27778\n237452|0.27778\n237453|0.65278\n237454|0.45833\n237455|0.33333\n237456|0.33333\n237457|0.54167\n237458|0.75\n237459|0.375\n237460|0.45833\n237461|0.5\n237462|0.69444\n237463|0.40278\n237464|0.44444\n237465|0.5\n237466|0.5\n237467|0.625\n237468|0.69444\n237469|0.65278\n237470|0.88889\n237471|0.55556\n237472|0.5\n237473|0.5\n237474|0.11111\n237475|0.29167\n237476|0.30556\n237477|0.20833\n237478|0.30556\n237479|0.54167\n237480|0.68056\n237481|0.43056\n237482|0.5\n237483|0.5\n237484|0.38889\n237485|0.43056\n237486|0.51389\n237487|0.5\n237488|0.61111\n237489|0.63889\n237490|0.55556\n237491|0.33333\n237492|0.47222\n237493|0.27778\n237494|0.5\n237495|0.81944\n237496|0.58333\n237497|0.54167\n237498|0.5\n237499|0.5\n237500|0.51389\n237501|0.5\n237502|0.72222\n237503|0.23611\n237504|0.30556\n237505|0.18056\n237506|0.66667\n237507|0.80556\n237508|0.55556\n237509|0.65278\n237510|0.11111\n237511|0.125\n237512|0.40278\n237513|0.5\n237514|0.26389\n237515|0.68056\n237516|0.16667\n237517|0.5\n237518|0.5\n237519|0.55556\n237520|0.20833\n237521|0.81944\n237522|0.25\n237523|0.70833\n237524|0.54167\n237525|0.5\n237526|0.5\n237527|0.5\n237528|0.54167\n237529|0.55556\n237530|0.83333\n237531|0.72222\n237532|0.16667\n237533|0.65278\n237534|0.38889\n237535|0.125\n237536|0\n237537|0.38889\n237538|0.59722\n237539|0.38889\n237540|0.77778\n237541|0.72222\n237542|0.75\n237543|0.36111\n237544|0.81944\n237545|0.41667\n237546|0.36111\n237547|0.43056\n237548|0.875\n237549|0.875\n237550|0.5\n237551|0.5\n237552|0.5\n237553|0.30556\n237554|0.29167\n237555|0.069444\n237556|0.51389\n237557|0.31944\n237558|0.5\n237559|0.5\n237560|0.29167\n237561|0.5\n237562|0.33333\n237563|0.66667\n237564|0.375\n237565|0.34722\n237566|0.26389\n237567|0.20833\n237568|0.5\n237569|0.5\n237570|0.58333\n237571|0.055556\n237572|0.76389\n237573|0.77778\n237574|0.45833\n237575|0.069444\n237576|0.30556\n237577|0.5\n237578|0.63889\n237579|0.5\n237580|0.25\n237581|0.33333\n237582|0.5\n237583|0.27778\n237584|0.27778\n237585|0.31944\n237586|0.55556\n237587|0.16667\n237588|0\n237589|0.5\n237590|0.5\n237591|0.11111\n237592|0.16667\n237593|0.45833\n237594|0.52778\n237595|0.5\n237596|0.48611\n237597|0.47222\n237598|0.90278\n237599|0.48611\n237600|0.875\n237601|0.51389\n237602|0.5\n237603|0.5\n237604|0.48611\n237605|0.80556\n237606|0.5\n237607|0.51389\n237608|0.22222\n237609|0.5\n237610|0.5\n237611|0.76389\n237612|0.31944\n237613|0.70833\n237614|0.51389\n237615|0.51389\n237616|0.5\n237617|0.22222\n237618|0.16667\n237619|0.41667\n237620|0.5\n237621|0.51389\n237622|0.65278\n237623|0.88889\n237624|0.36111\n237625|0.88889\n237626|0.55556\n237627|0.20833\n237628|0.38889\n237629|0.5\n237630|0.31944\n237631|0.44444\n237632|0.33333\n237633|0.5\n237634|0.66667\n237635|0.26389\n237636|0.23611\n237637|0.34722\n237638|0.5\n237639|0.625\n237640|0.55556\n237641|0.5\n237642|0.22222\n237643|0.29167\n237644|0.41667\n237645|0.34722\n237646|0.52778\n237647|0.25\n237648|0.16667\n237649|0.16667\n237650|0.48611\n237651|0.47222\n237652|0.20833\n237653|0.56944\n237654|0.54167\n237655|0.33333\n237656|0.48611\n237657|0.34722\n237658|0.55556\n237659|0.13889\n237660|0.31944\n237661|0.54167\n237662|0.61111\n237663|0.61111\n237664|0.63889\n237665|0.5\n237666|0.38889\n237667|0.47222\n237668|0.5\n237669|0.41667\n237670|0.25\n237671|0.48611\n237672|0.5\n237673|0.51389\n237674|0.79167\n237675|0.30556\n237676|0.25\n237677|0.097222\n237678|0.68056\n237679|0.5\n237680|0.83333\n237681|0.5\n237682|0.5\n237683|0.5\n237684|0.5\n237685|0.5\n237686|0.45833\n237687|0.5\n237688|0.5\n237689|0.25\n237690|0.5\n237691|0.5\n237692|0.55556\n237693|0.5\n237694|0.5\n237695|0.75\n237696|0.5\n237697|0.5\n237698|0.5\n237699|0.33333\n237700|0.51389\n237701|0.65278\n237702|0.5\n237703|0.5\n237704|0.5\n237705|0.5\n237706|0.41667\n237707|0.61111\n237708|0.61111\n237709|0.38889\n237710|0.34722\n237711|0.30556\n237712|0.54167\n237713|0.63889\n237714|0.625\n237715|0.5\n237716|0.40278\n237717|0.097222\n237718|0.56944\n237719|0.38889\n237720|0.5\n237721|0.5\n237722|0.5\n237723|0.55556\n237724|0.55556\n237725|0.30556\n237726|0.44444\n237727|0.20833\n237728|0.66667\n237729|0.58333\n237730|0.5\n237731|0.30556\n237732|0.55556\n237733|0.54167\n237734|0.51389\n237735|0.5\n237736|0.76389\n237737|0.41667\n237738|0.5\n237739|0.51389\n237740|0.77778\n237741|0.63889\n237742|0.38889\n237743|0.5\n237744|0.55556\n237745|0.52778\n237746|0.20833\n237747|0.47222\n237748|0.40278\n237749|0.66667\n237750|0.41667\n237751|0.5\n237752|0.5\n237753|0.48611\n237754|0.54167\n237755|0.59722\n237756|0.68056\n237757|0.5\n237758|0.5\n237759|0.44444\n237760|0.73611\n237761|0.30556\n237762|0.5\n237763|0.5\n237764|0.125\n237765|0.33333\n237766|0.66667\n237767|0.52778\n237768|0.56944\n237769|0.5\n237770|0.5\n237771|0.58333\n237772|0.55556\n237773|0.59722\n237774|0.5\n237775|0.70833\n237776|0.5\n237777|0.52778\n237778|0.27778\n237779|0.47222\n237780|0.13889\n237781|0.70833\n237782|0.33333\n237783|0.5\n237784|0.52778\n237785|0.65278\n237786|0.55556\n237787|0.51389\n237788|0.30556\n237789|0.40278\n237790|0.86111\n237791|0.5\n237792|0.5\n237793|0.5\n237794|0.5\n237795|0.5\n237796|0.52778\n237797|0.16667\n237798|0.18056\n237799|0.65278\n237800|0.55556\n237801|0.66667\n237802|0.72222\n237803|0.5\n237804|0.5\n237805|0.41667\n237806|0.44444\n237807|0.13889\n237808|0.51389\n237809|0.375\n237810|0.5\n237811|0.45833\n237812|0.43056\n237813|0.52778\n237814|0.5\n237815|0.40278\n237816|0.54167\n237817|0.5\n237818|0.5\n237819|0.38889\n237820|0.61111\n237821|0.5\n237822|0.5\n237823|0.51389\n237824|0.58333\n237825|0.43056\n237826|0.5\n237827|0.65278\n237828|0.56944\n237829|0.88889\n237830|0.11111\n237831|0.41667\n237832|0.47222\n237833|0.44444\n237834|0.11111\n237835|0.51389\n237836|0.55556\n237837|0.34722\n237838|0.22222\n237839|0.86111\n237840|0.44444\n237841|0.34722\n237842|0.16667\n237843|0.69444\n237844|0.58333\n237845|0.5\n237846|0.5\n237847|0.22222\n237848|0.56944\n237849|0.22222\n237850|0.36111\n237851|0.083333\n237852|0.54167\n237853|0.375\n237854|0.5\n237855|0.86111\n237856|0.52778\n237857|0.55556\n237858|0.11111\n237859|0.5\n237860|0.5\n237861|0.5\n237862|0.5\n237863|0.5\n237864|0.63889\n237865|0.5\n237866|0.69444\n237867|0.33333\n237868|0.59722\n237869|0.48611\n237870|0.44444\n237871|0.27778\n237872|0.30556\n237873|0.44444\n237874|0.52778\n237875|0.5\n237876|0.86111\n237877|0.16667\n237878|0.52778\n237879|0.36111\n237880|0.45833\n237881|0.70833\n237882|0.5\n237883|0.55556\n237884|0.55556\n237885|0.44444\n237886|0.27778\n237887|0.25\n237888|0.5\n237889|0.43056\n237890|0.54167\n237891|0.77778\n237892|0.48611\n237893|0.88889\n237894|0.625\n237895|0.52778\n237896|0.5\n237897|0.5\n237898|0.34722\n237899|0.29167\n237900|0.30556\n237901|0.5\n237902|0.45833\n237903|0.33333\n237904|0.22222\n237905|0.44444\n237906|0.45833\n237907|0.68056\n237908|0.72222\n237909|0.5\n237910|0.47222\n237911|0.38889\n237912|0.29167\n237913|0.68056\n237914|0.29167\n237915|0.55556\n237916|0.5\n237917|0.33333\n237918|0.875\n237919|0.47222\n237920|0.38889\n237921|0.41667\n237922|0.41667\n237923|0.5\n237924|0.25\n237925|0.52778\n237926|0.097222\n237927|0.5\n237928|0.5\n237929|0.63889\n237930|0.70833\n237931|0.63889\n237932|0.5\n237933|0.5\n237934|0.54167\n237935|0.41667\n237936|0.44444\n237937|0.5\n237938|0.40278\n237939|0.18056\n237940|0.29167\n237941|0.5\n237942|0.47222\n237943|0.86111\n237944|0.5\n237945|0.59722\n237946|0.23611\n237947|0.069444\n237948|0.54167\n237949|0.40278\n237950|0.34722\n237951|0.55556\n237952|0.52778\n237953|0.5\n237954|0.27778\n237955|0.34722\n237956|0.45833\n237957|0.48611\n237958|0.5\n237959|0.83333\n237960|0.61111\n237961|0.22222\n237962|0.5\n237963|0.44444\n237964|0.51389\n237965|0.5\n237966|0.5\n237967|0.5\n237968|0.59722\n237969|0.16667\n237970|0.36111\n237971|0.84722\n237972|0.61111\n237973|0.18056\n237974|0.41667\n237975|0.48611\n237976|0.5\n237977|0.55556\n237978|0.5\n237979|0.58333\n237980|0.61111\n237981|0.5\n237982|0.375\n237983|0.55556\n237984|0.68056\n237985|0.58333\n237986|0.77778\n237987|0.79167\n237988|0.65278\n237989|0.65278\n237990|0.5\n237991|0.5\n237992|0.20833\n237993|0.81944\n237994|0.5\n237995|0.83333\n237996|0.5\n237997|0.43056\n237998|0.30556\n237999|0.70833\n238000|0.5\n238001|0.52778\n238002|0.5\n238003|0.63889\n238004|0.5\n238005|0.48611\n238006|0.5\n238007|0.55556\n238008|0.40278\n238009|0.33333\n238010|0.68056\n238011|0.58333\n238012|0.5\n238013|0.5\n238014|0.23611\n238015|0.5\n238016|0.54167\n238017|0.33333\n238018|0.56944\n238019|0.5\n238020|0.40278\n238021|0.56944\n238022|0.5\n238023|0.5\n238024|0.61111\n238025|0.31944\n238026|0.5\n238027|0.055556\n238028|0.5\n238029|0.45833\n238030|0.5\n238031|0.5\n238032|0.58333\n238033|0.5\n238034|0.5\n238035|0.5\n238036|0.55556\n238037|0.44444\n238038|0.55556\n238039|0.5\n238040|0.30556\n238041|0.625\n238042|0.55556\n238043|0.38889\n238044|0.5\n238045|0.18056\n238046|0.72222\n238047|0.5\n238048|0.48611\n238049|0.81944\n238050|0.25\n238051|0.33333\n238052|0.097222\n238053|0.18056\n238054|0.20833\n238055|0.36111\n238056|0.45833\n238057|0.59722\n238058|0.56944\n238059|0.58333\n238060|0.31944\n238061|0.33333\n238062|0.31944\n238063|0.20833\n238064|0.44444\n238065|0.33333\n238066|0.29167\n238067|0.38889\n238068|0.66667\n238069|0.44444\n238070|0.26389\n238071|0.27778\n238072|0.15278\n238073|0.27778\n238074|0.34722\n238075|0.125\n238076|0.31944\n238077|0.33333\n238078|0.5\n238079|0.097222\n238080|0.61111\n238081|0.33333\n238082|0.29167\n238083|0.16667\n238084|0.36111\n238085|0.45833\n238086|0.31944\n238087|0.47222\n238088|0.5\n238089|0.44444\n238090|0.43056\n238091|0.25\n238092|0.44444\n238093|0.61111\n238094|0.56944\n238095|0.68056\n238096|0.26389\n238097|0.18056\n238098|0.19444\n238099|0.77778\n238100|0.66667\n238101|0.66667\n238102|0.31944\n238103|0.55556\n238104|0.625\n238105|0.63889\n238106|0.041667\n238107|0.5\n238108|0.48611\n238109|0.20833\n238110|0.5\n238111|0.44444\n238112|0.61111\n238113|0.58333\n238114|0.77778\n238115|0.54167\n238116|0.375\n238117|0.11111\n238118|0.22222\n238119|0.19444\n238120|0.36111\n238121|0.47222\n238122|0.625\n238123|0.38889\n238124|0.84722\n238125|0.94444\n238126|0.61111\n238127|0.80556\n238128|0.59722\n238129|0.66667\n238130|0.5\n238131|0.63889\n238132|0.70833\n238133|0.66667\n238134|0.47222\n238135|0.5\n238136|0.36111\n238137|0.44444\n238138|0.19444\n238139|0.27778\n238140|0.15278\n238141|0.58333\n238142|0.125\n238143|0.5\n238144|0.45833\n238145|0.33333\n238146|0.16667\n238147|0.34722\n238148|0.5\n238149|0.44444\n238150|0.5\n238151|0.38889\n238152|0.38889\n238153|0.56944\n238154|0.5\n238155|0.375\n238156|0.47222\n238157|0.5\n238158|0.61111\n238159|0.58333\n238160|0.55556\n238161|0.5\n238162|0.48611\n238163|0.86111\n238164|0.91667\n238165|0.5\n238166|0.36111\n238167|0.43056\n238168|0.22222\n238169|0.5\n238170|0.5\n238171|0.30556\n238172|0.22222\n238173|0.43056\n238174|0.11111\n238175|0.16667\n238176|0.125\n238177|0.55556\n238178|0.23611\n238179|0.81944\n238180|0.23611\n238181|0.33333\n238182|0.58333\n238183|0.13889\n238184|0.30556\n238185|0.5\n238186|0.30556\n238187|0.68056\n238188|0.30556\n238189|0.16667\n238190|0.22222\n238191|0.26389\n238192|0.33333\n238193|0.33333\n238194|0.30556\n238195|0.40278\n238196|0.44444\n238197|0.5\n238198|0.29167\n238199|0.19444\n238200|0.16667\n238201|0.61111\n238202|0.5\n238203|0.55556\n238204|0.19444\n238205|0.20833\n238206|0.52778\n238207|0.5\n238208|0.40278\n238209|0.43056\n238210|0.16667\n238211|0.63889\n238212|0.51389\n238213|0.63889\n238214|0.31944\n238215|0.68056\n238216|0.51389\n238217|0.69444\n238218|0.5\n238219|0.26389\n238220|0.25\n238221|0.5\n238222|0.72222\n238223|0.055556\n238224|0.125\n238225|0.15278\n238226|0.55556\n238227|0.56944\n238228|0.41667\n238229|0.58333\n238230|0.65278\n238231|0.58333\n238232|0.36111\n238233|0.5\n238234|0.44444\n238235|0.23611\n238236|0.72222\n238237|0.43056\n238238|0.15278\n238239|0.5\n238240|0.22222\n238241|0.52778\n238242|0.33333\n238243|0.375\n238244|0.38889\n238245|0.33333\n238246|0.31944\n238247|0.5\n238248|0.5\n238249|0.68056\n238250|0.375\n238251|0.63889\n238252|0.56944\n238253|0.5\n238254|0.52778\n238255|0.44444\n238256|0.27778\n238257|0.38889\n238258|0.5\n238259|0.54167\n238260|0.33333\n238261|0.5\n238262|0.55556\n238263|0.5\n238264|0.55556\n238265|0.5\n238266|0.625\n238267|0.75\n238268|0.80556\n238269|0.48611\n238270|0.27778\n238271|0.29167\n238272|0.51389\n238273|0.23611\n238274|0.44444\n238275|0.5\n238276|0.5\n238277|0.5\n238278|0.55556\n238279|0.65278\n238280|0.44444\n238281|0.5\n238282|0.65278\n238283|0.5\n238284|0.5\n238285|0.5\n238286|0.5\n238287|0.48611\n238288|0.58333\n238289|0.40278\n238290|0.33333\n238291|0.40278\n238292|0.5\n238293|0.5\n238294|0.38889\n238295|0.59722\n238296|0.23611\n238297|0.23611\n238298|0.5\n238299|0.47222\n238300|0.45833\n238301|0.5\n238302|0.73611\n238303|0.88889\n238304|0.5\n238305|0.66667\n238306|0.56944\n238307|0.20833\n238308|0.26389\n238309|0.59722\n238310|0.45833\n238311|0.5\n238312|0.31944\n238313|0.5\n238314|0.48611\n238315|0.81944\n238316|0.29167\n238317|0.80556\n238318|0.5\n238319|0.5\n238320|0.55556\n238321|0.77778\n238322|0.72222\n238323|0.44444\n238324|0.25\n238325|0.13889\n238326|0.84722\n238327|0.66667\n238328|0.5\n238329|0.70833\n238330|0.5\n238331|0.38889\n238332|0.5\n238333|0.44444\n238334|0.18056\n238335|0.58333\n238336|0.5\n238337|0.20833\n238338|0.20833\n238339|0.27778\n238340|0.125\n238341|0.68056\n238342|0.5\n238343|0.22222\n238344|0.73611\n238345|0.5\n238346|0.5\n238347|0.56944\n238348|0.5\n238349|0.5\n238350|0.5\n238351|0.5\n238352|0.041667\n238353|0.125\n238354|0.55556\n238355|0.5\n238356|0.5\n238357|0.5\n238358|0.5\n238359|0.26389\n238360|0.56944\n238361|0.38889\n238362|0.48611\n238363|0.43056\n238364|0.11111\n238365|0.84722\n238366|0.79167\n238367|0.13889\n238368|0.54167\n238369|0.125\n238370|0.055556\n238371|0.125\n238372|0.15278\n238373|0.375\n238374|0.125\n238375|0.22222\n238376|0.38889\n238377|0.5\n238378|0.66667\n238379|0.34722\n238380|0.34722\n238381|0.43056\n238382|0.30556\n238383|0.5\n238384|0.041667\n238385|0.52778\n238386|0.68056\n238387|0.45833\n238388|0.22222\n238389|0.47222\n238390|0.29167\n238391|0.22222\n238392|0.70833\n238393|0.55556\n238394|0.5\n238395|0.5\n238396|0.5\n238397|0.5\n238398|0.34722\n238399|0.41667\n238400|0.5\n238401|0.44444\n238402|0.5\n238403|0.51389\n238404|0.52778\n238405|0.5\n238406|0.44444\n238407|0.69444\n238408|0.52778\n238409|0.58333\n238410|0.58333\n238411|0.38889\n238412|0.41667\n238413|0.45833\n238414|0.5\n238415|0.5\n238416|0.44444\n238417|0.40278\n238418|0.66667\n238419|0.55556\n238420|0.66667\n238421|0.51389\n238422|0.54167\n238423|0.77778\n238424|0.33333\n238425|0.44444\n238426|0.27778\n238427|0.5\n238428|0.5\n238429|0.5\n238430|0.5\n238431|0.55556\n238432|0.76389\n238433|0.5\n238434|0.5\n238435|0.55556\n238436|0.55556\n238437|0.63889\n238438|0.5\n238439|0.5\n238440|0.55556\n238441|0.5\n238442|0.45833\n238443|0.5\n238444|0.44444\n238445|0.16667\n238446|0.5\n238447|0.11111\n238448|0.22222\n238449|0.48611\n238450|0.5\n238451|0.68056\n238452|0.79167\n238453|0.61111\n238454|0.70833\n238455|0.26389\n238456|0.45833\n238457|0.25\n238458|0.19444\n238459|0.083333\n238460|0.097222\n238461|0.75\n238462|0.72222\n238463|0.55556\n238464|0.22222\n238465|0.041667\n238466|0.041667\n238467|0.52778\n238468|0.66667\n238469|0.77778\n238470|0.34722\n238471|0.55556\n238472|0.5\n238473|0.875\n238474|0.5\n238475|0.55556\n238476|0.5\n238477|0.75\n238478|0.70833\n238479|0.61111\n238480|0.31944\n238481|0.40278\n238482|0.54167\n238483|0.5\n238484|0.5\n238485|0.81944\n238486|0.80556\n238487|0.5\n238488|0.40278\n238489|0.5\n238490|0.76389\n238491|0.40278\n238492|0.097222\n238493|0.34722\n238494|0.5\n238495|0.5\n238496|0.15278\n238497|0.33333\n238498|0.55556\n238499|0.5\n238500|0.76389\n238501|0.31944\n238502|0.44444\n238503|0.38889\n238504|0.33333\n238505|0.61111\n238506|0.38889\n238507|0.5\n238508|0.5\n238509|0.27778\n238510|0.72222\n238511|0.5\n238512|0.33333\n238513|0.41667\n238514|0.56944\n238515|0.22222\n238516|0.36111\n238517|0.23611\n238518|0.56944\n238519|0.5\n238520|0.44444\n238521|0.55556\n238522|0.47222\n238523|0.33333\n238524|0.31944\n238525|0.47222\n238526|0.52778\n238527|0.41667\n238528|0.375\n238529|0.5\n238530|0.65278\n238531|0.54167\n238532|0.66667\n238533|0.44444\n238534|0.43056\n238535|0.5\n238536|0.55556\n238537|0.44444\n238538|0.54167\n238539|0.41667\n238540|0.45833\n238541|0.31944\n238542|0.375\n238543|0.27778\n238544|0.52778\n238545|0.91667\n238546|0.76389\n238547|0.81944\n238548|0.80556\n238549|0.29167\n238550|0.84722\n238551|0.75\n238552|0.83333\n238553|0.83333\n238554|0.72222\n238555|0.75\n238556|0.55556\n238557|0.45833\n238558|0.45833\n238559|0.31944\n238560|0.29167\n238561|0.36111\n238562|0.29167\n238563|0.5\n238564|0.47222\n238565|0.66667\n238566|0.29167\n238567|0.26389\n238568|0.34722\n238569|0.52778\n238570|0.72222\n238571|0.38889\n238572|0.55556\n238573|0.55556\n238574|0.73611\n238575|0.56944\n238576|0.25\n238577|0.41667\n238578|0.77778\n238579|0.38889\n238580|0.5\n238581|0.52778\n238582|0.5\n238583|0.5\n238584|0.55556\n238585|0.88889\n238586|0.86111\n238587|0.55556\n238588|0.38889\n238589|0.16667\n238590|0.48611\n238591|0.5\n238592|0.5\n238593|0.5\n238594|0.041667\n238595|0.56944\n238596|0.27778\n238597|0.36111\n238598|0.40278\n238599|0.72222\n238600|0.72222\n238601|0.5\n238602|0.69444\n238603|0.27778\n238604|0.375\n238605|0.5\n238606|0.69444\n238607|0.5\n238608|0.5\n238609|0.34722\n238610|0.84722\n238611|0.26389\n238612|0.47222\n238613|0.5\n238614|0.5\n238615|0.80556\n238616|0.72222\n238617|0.45833\n238618|0.33333\n238619|0.51389\n238620|0.38889\n238621|0.48611\n238622|0.45833\n238623|0.41667\n238624|0.51389\n238625|0.41667\n238626|0.16667\n238627|0.25\n238628|0.5\n238629|0.51389\n238630|0.5\n238631|0.51389\n238632|0.34722\n238633|0.19444\n238634|0.44444\n238635|0.375\n238636|0.52778\n238637|0.66667\n238638|0.55556\n238639|0.5\n238640|0.5\n238641|0.61111\n238642|0.125\n238643|0.5\n238644|0.16667\n238645|0.5\n238646|0.44444\n238647|0.41667\n238648|0.5\n238649|0.59722\n238650|0.5\n238651|0.54167\n238652|0.19444\n238653|0.5\n238654|0.38889\n238655|0.5\n238656|0.55556\n238657|0.5\n238658|0.34722\n238659|0.38889\n238660|0.81944\n238661|0.44444\n238662|0.66667\n238663|0.38889\n238664|0.51389\n238665|0.38889\n238666|0.58333\n238667|0.5\n238668|0.80556\n238669|0.027778\n238670|0.34722\n238671|0.5\n238672|0.875\n238673|0.29167\n238674|0.79167\n238675|0.47222\n238676|0.34722\n238677|0.5\n238678|0.70833\n238679|0.72222\n238680|0.30556\n238681|0.54167\n238682|0.65278\n238683|0.51389\n238684|0.61111\n238685|0.5\n238686|0.75\n238687|0.5\n238688|0.44444\n238689|0.80556\n238690|0.66667\n238691|0.55556\n238692|0.55556\n238693|0.55556\n238694|0.27778\n238695|0.44444\n238696|0.52778\n238697|0.625\n238698|0.65278\n238699|0.5\n238700|0.44444\n238701|0.43056\n238702|0.65278\n238703|0.625\n238704|0.44444\n238705|0.40278\n238706|0.5\n238707|0.52778\n238708|0.5\n238709|0.44444\n238710|0.5\n238711|0.36111\n238712|0.45833\n238713|0.5\n238714|0.5\n238715|0.5\n238716|0.70833\n238717|0.59722\n238718|0.51389\n238719|0.36111\n238720|0.51389\n238721|0.48611\n238722|0.375\n238723|0.5\n238724|0.625\n238725|0.5\n238726|0.69444\n238727|0.5\n238728|0.25\n238729|0.40278\n238730|0.45833\n238731|0.15278\n238732|0.25\n238733|0.51389\n238734|0.25\n238735|0.55556\n238736|0.47222\n238737|0.18056\n238738|0.20833\n238739|0.44444\n238740|0.72222\n238741|0.5\n238742|0.48611\n238743|0.625\n238744|0.66667\n238745|0.5\n238746|0.5\n238747|0.375\n238748|0.5\n238749|0.15278\n238750|0.375\n238751|0.5\n238752|0.36111\n238753|0.29167\n238754|0.41667\n238755|0.5\n238756|0.83333\n238757|0.875\n238758|0.5\n238759|0.18056\n238760|0.5\n238761|0.5\n238762|0.44444\n238763|0.45833\n238764|0.40278\n238765|0.40278\n238766|0.29167\n238767|0.41667\n238768|0.55556\n238769|0.55556\n238770|0.61111\n238771|0.72222\n238772|0.68056\n238773|0.72222\n238774|0.5\n238775|0.41667\n238776|0.43056\n238777|0.5\n238778|0.20833\n238779|0.80556\n238780|0.5\n238781|0.76389\n238782|0.72222\n238783|0.88889\n238784|0.70833\n238785|0.72222\n238786|0.77778\n238787|0.93056\n238788|0.34722\n238789|0.25\n238790|0.125\n238791|0.51389\n238792|0.47222\n238793|0.5\n238794|0.54167\n238795|0.27778\n238796|0.83333\n238797|0.66667\n238798|0.5\n238799|0.70833\n238800|0.95833\n238801|0.30556\n238802|0.23611\n238803|0.13889\n238804|0.16667\n238805|0.27778\n238806|0.22222\n238807|0.27778\n238808|0.61111\n238809|0.18056\n238810|0.125\n238811|0.18056\n238812|0.45833\n238813|0.54167\n238814|0.66667\n238815|0.61111\n238816|0.34722\n238817|0.72222\n238818|0.40278\n238819|0.44444\n238820|0.5\n238821|0.5\n238822|0.33333\n238823|0.44444\n238824|0.59722\n238825|0.86111\n238826|0.30556\n238827|0.5\n238828|0.58333\n238829|0.18056\n238830|0.36111\n238831|0.80556\n238832|0.76389\n238833|0.5\n238834|0.5\n238835|0.70833\n238836|0.5\n238837|0.5\n238838|0.625\n238839|0.5\n238840|0.5\n238841|0.5\n238842|0.48611\n238843|0.40278\n238844|0.5\n238845|0.5\n238846|0.5\n238847|0.69444\n238848|0.40278\n238849|0.22222\n238850|0.47222\n238851|0.5\n238852|0.48611\n238853|0.5\n238854|0.13889\n238855|0.40278\n238856|0.75\n238857|0.5\n238858|0.5\n238859|0.72222\n238860|0.40278\n238861|0.61111\n238862|0.097222\n238863|0.73611\n238864|0.55556\n238865|0.47222\n238866|0.375\n238867|0.55556\n238868|0.5\n238869|0.51389\n238870|0.79167\n238871|0.88889\n238872|0.38889\n238873|0.83333\n238874|0.72222\n238875|0.48611\n238876|0.41667\n238877|0.66667\n238878|0.5\n238879|0.66667\n238880|0.44444\n238881|0.63889\n238882|0.79167\n238883|0.47222\n238884|0.48611\n238885|0.5\n238886|0.59722\n238887|0.76389\n238888|0.75\n238889|0.5\n238890|0.5\n238891|0.19444\n238892|0.40278\n238893|0.55556\n238894|0.34722\n238895|0.47222\n238896|0.45833\n238897|0.44444\n238898|0.80556\n238899|0.43056\n238900|0.26389\n238901|0.83333\n238902|0.22222\n238903|0.65278\n238904|0.72222\n238905|0.63889\n238906|0.47222\n238907|0.5\n238908|0.56944\n238909|0.5\n238910|0.13889\n238911|0.5\n238912|0.80556\n238913|0.70833\n238914|0.68056\n238915|0.5\n238916|0.5\n238917|0.65278\n238918|0.69444\n238919|0.40278\n238920|0.5\n238921|0.51389\n238922|0.51389\n238923|0.5\n238924|0.56944\n238925|0.43056\n238926|0.72222\n238927|0.63889\n238928|0.61111\n238929|0.26389\n238930|0.59722\n238931|0.5\n238932|0.52778\n238933|0.5\n238934|0.63889\n238935|0.5\n238936|0.75\n238937|0.55556\n238938|0.70833\n238939|0.83333\n238940|0.84722\n238941|0.16667\n238942|0.11111\n238943|0.069444\n238944|0.41667\n238945|0.41667\n238946|0.27778\n238947|0.48611\n238948|0.61111\n238949|0.65278\n238950|0.5\n238951|0.5\n238952|0.51389\n238953|0.5\n238954|0.5\n238955|0.45833\n238956|0.55556\n238957|0.5\n238958|0.5\n238959|0.5\n238960|0.90278\n238961|0.88889\n238962|0.75\n238963|0.375\n238964|0.5\n238965|0.33333\n238966|0.55556\n238967|0.55556\n238968|0.55556\n238969|0.18056\n238970|0.13889\n238971|0.41667\n238972|0.5\n238973|0.45833\n238974|0.5\n238975|0.5\n238976|0.55556\n238977|0.76389\n238978|0.73611\n238979|0.5\n238980|0.16667\n238981|0.5\n238982|0.13889\n238983|0.13889\n238984|0.875\n238985|0.77778\n238986|0.81944\n238987|0.5\n238988|0.61111\n238989|0.58333\n238990|0.18056\n238991|0.41667\n238992|0.41667\n238993|0.36111\n238994|0.54167\n238995|0.43056\n238996|0.56944\n238997|0.16667\n238998|0.18056\n238999|0.16667\n239000|0.33333\n239001|0.27778\n239002|0.22222\n239003|0.75\n239004|0.44444\n239005|0.61111\n239006|0.48611\n239007|0.43056\n239008|0.375\n239009|0.33333\n239010|0.47222\n239011|0.30556\n239012|0.48611\n239013|0.34722\n239014|0.44444\n239015|0.34722\n239016|0.36111\n239017|0.44444\n239018|0.77778\n239019|0.44444\n239020|0.69444\n239021|0.55556\n239022|0.26389\n239023|0.34722\n239024|0.34722\n239025|0.18056\n239026|0.29167\n239027|0.70833\n239028|0.875\n239029|0.16667\n239030|0.13889\n239031|0.61111\n239032|0.29167\n239033|0.38889\n239034|0.56944\n239035|0.34722\n239036|0.33333\n239037|0.25\n239038|0.5\n239039|0.43056\n239040|0.44444\n239041|0.63889\n239042|0.48611\n239043|0.44444\n239044|0.38889\n239045|0.51389\n239046|0.27778\n239047|0.13889\n239048|0.18056\n239049|0.48611\n239050|0.80556\n239051|0.47222\n239052|0.5\n239053|0.5\n239054|0.5\n239055|0.5\n239056|0.5\n239057|0.5\n239058|0.5\n239059|0.5\n239060|0.77778\n239061|0.875\n239062|0.76389\n239063|0.27778\n239064|0.47222\n239065|0.13889\n239066|0.38889\n239067|0.25\n239068|0.5\n239069|0.5\n239070|0.625\n239071|0.5\n239072|0.38889\n239073|0.61111\n239074|0.5\n239075|0.63889\n239076|0.70833\n239077|0.43056\n239078|0.26389\n239079|0.72222\n239080|0.83333\n239081|0.61111\n239082|0.26389\n239083|0.18056\n239084|0.70833\n239085|0.38889\n239086|0.5\n239087|0.375\n239088|0.11111\n239089|0.23611\n239090|0.77778\n239091|0.27778\n239092|0.66667\n239093|0.27778\n239094|0.5\n239095|0.84722\n239096|0.45833\n239097|0.875\n239098|0.625\n239099|0.61111\n239100|0.027778\n239101|0.44444\n239102|0.63889\n239103|0.66667\n239104|0.22222\n239105|0.055556\n239106|0.44444\n239107|0.33333\n239108|0.90278\n239109|0.97222\n239110|0.72222\n239111|0.31944\n239112|0.5\n239113|0.625\n239114|0.11111\n239115|0.59722\n239116|0.5\n239117|0.69444\n239118|0.70833\n239119|0.44444\n239120|0.41667\n239121|0.5\n239122|0.40278\n239123|0.5\n239124|0.38889\n239125|0.5\n239126|0.70833\n239127|0.69444\n239128|0.44444\n239129|0.30556\n239130|0.48611\n239131|0.83333\n239132|0.47222\n239133|0.77778\n239134|0.72222\n239135|0.625\n239136|0.33333\n239137|0.76389\n239138|0.61111\n239139|0.55556\n239140|0.5\n239141|0.5\n239142|0.45833\n239143|0.44444\n239144|0.5\n239145|0.19444\n239146|0.22222\n239147|0.80556\n239148|0.38889\n239149|0.56944\n239150|0.5\n239151|0.26389\n239152|0.5\n239153|0.55556\n239154|0.81944\n239155|0.52778\n239156|0.54167\n239157|0.5\n239158|0.52778\n239159|0.26389\n239160|0.34722\n239161|0.5\n239162|0.36111\n239163|0.16667\n239164|0.61111\n239165|0.33333\n239166|0.31944\n239167|0.625\n239168|0.93056\n239169|0.59722\n239170|0.5\n239171|0.58333\n239172|0.625\n239173|0.58333\n239174|0.79167\n239175|0.33333\n239176|0.48611\n239177|0.79167\n239178|0.33333\n239179|0.23611\n239180|0.61111\n239181|0.27778\n239182|0.59722\n239183|0.45833\n239184|0.27778\n239185|0\n239186|0.29167\n239187|0.5\n239188|0.55556\n239189|0.76389\n239190|0.31944\n239191|0.47222\n239192|0.19444\n239193|0.54167\n239194|0.20833\n239195|0.58333\n239196|0.48611\n239197|0.5\n239198|0.38889\n239199|0.76389\n239200|0.375\n239201|0.66667\n239202|0.25\n239203|0.43056\n239204|0.59722\n239205|0.5\n239206|0.5\n239207|0.19444\n239208|0.40278\n239209|0.55556\n239210|0.5\n239211|0.5\n239212|0.5\n239213|0.5\n239214|0.5\n239215|0.5\n239216|0.66667\n239217|0.5\n239218|0.5\n239219|0.5\n239220|0.5\n239221|0.68056\n239222|0.69444\n239223|0.5\n239224|0.90278\n239225|0.5\n239226|0.81944\n239227|0.36111\n239228|0.38889\n239229|0.33333\n239230|0.88889\n239231|0.5\n"
  },
  {
    "path": "a2/utils/gradcheck.py",
    "content": "#!/usr/bin/env python\n\nimport numpy as np\nimport random\n\n\n# First implement a gradient checker by filling in the following functions\ndef gradcheck_naive(f, x, gradientText):\n    \"\"\" Gradient check for a function f.\n    Arguments:\n    f -- a function that takes a single argument and outputs the\n         loss and its gradients\n    x -- the point (numpy array) to check the gradient at\n    gradientText -- a string detailing some context about the gradient computation\n\n    Notes:\n    Note that gradient checking is a sanity test that only checks whether the\n    gradient and loss values produced by your implementation are consistent with\n    each other. Gradient check passing on its own doesn’t guarantee that you\n    have the correct gradients. It will pass, for example, if both the loss and\n    gradient values produced by your implementation are 0s (as is the case when\n    you have not implemented anything). Here is a detailed explanation of what\n    gradient check is doing if you would like some further clarification:\n    http://ufldl.stanford.edu/tutorial/supervised/DebuggingGradientChecking/. \n    \"\"\"\n    rndstate = random.getstate()\n    random.setstate(rndstate)\n    fx, grad = f(x) # Evaluate function value at original point\n    h = 1e-4        # Do not change this!\n\n    # Iterate over all indexes ix in x to check the gradient.\n    it = np.nditer(x, flags=['multi_index'], op_flags=['readwrite'])\n    while not it.finished:\n        ix = it.multi_index\n\n        x[ix] += h # increment by h\n        random.setstate(rndstate)\n        fxh, _ = f(x) # evalute f(x + h)\n        x[ix] -= 2 * h # restore to previous value (very important!)\n        random.setstate(rndstate)\n        fxnh, _ = f(x)\n        x[ix] += h\n        numgrad = (fxh - fxnh) / 2 / h\n\n        # Compare gradients\n        reldiff = abs(numgrad - grad[ix]) / max(1, abs(numgrad), abs(grad[ix]))\n        if reldiff > 1e-5:\n            print(\"Gradient check failed for %s.\" % gradientText)\n            print(\"First gradient error found at index %s in the vector of gradients\" % str(ix))\n            print(\"Your gradient: %f \\t Numerical gradient: %f\" % (\n                grad[ix], numgrad))\n            return\n\n        it.iternext() # Step to next dimension\n\n    print(\"Gradient check passed!. Read the docstring of the `gradcheck_naive`\"\n    \" method in utils.gradcheck.py to understand what the gradient check does.\")\n\n\ndef grad_tests_softmax(skipgram, dummy_tokens, dummy_vectors, dataset):\n    print (\"======Skip-Gram with naiveSoftmaxLossAndGradient Test Cases======\")\n\n    # first test\n    output_loss, output_gradCenterVecs, output_gradOutsideVectors = \\\n                skipgram(\"c\", 3, [\"a\", \"b\", \"e\", \"d\", \"b\", \"c\"],\n                dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset)\n\n    assert np.allclose(output_loss, 11.16610900153398), \\\n           \"Your loss does not match expected loss.\"\n    expected_gradCenterVecs = [[ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ],\n                               [-1.26947339, -1.36873189,  2.45158957],\n                               [ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ]]\n    expected_gradOutsideVectors = [[-0.41045956,  0.18834851,  1.43272264],\n                                   [ 0.38202831, -0.17530219, -1.33348241],\n                                   [ 0.07009355, -0.03216399, -0.24466386],\n                                   [ 0.09472154, -0.04346509, -0.33062865],\n                                   [-0.13638384,  0.06258276,  0.47605228]]\n                     \n    assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \\\n           \"Your gradCenterVecs do not match expected gradCenterVecs.\"\n    assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \\\n           \"Your gradOutsideVectors do not match expected gradOutsideVectors.\"\n    print(\"The first test passed!\")\n\n    # second test\n    output_loss, output_gradCenterVecs, output_gradOutsideVectors = \\\n                skipgram(\"b\", 3, [\"a\", \"b\", \"e\", \"d\", \"b\", \"c\"],\n                dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset)\n    assert np.allclose(output_loss, 9.87714910003414), \\\n           \"Your loss does not match expected loss.\"\n    expected_gradCenterVecs = [[ 0.,          0.,          0.        ],\n                               [-0.14586705, -1.34158321, -0.29291951],\n                               [ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ]]\n    expected_gradOutsideVectors = [[-0.30342672,  0.19808298,  0.19587419],\n                                   [-0.41359958,  0.27000601,  0.26699522],\n                                   [-0.08192272,  0.05348078,  0.05288442],\n                                   [ 0.6981188,  -0.4557458,  -0.45066387],\n                                   [ 0.10083022, -0.06582396, -0.06508997]]\n                     \n    assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \\\n           \"Your gradCenterVecs do not match expected gradCenterVecs.\"\n    assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \\\n           \"Your gradOutsideVectors do not match expected gradOutsideVectors.\"\n    print(\"The second test passed!\")\n\n    # third test\n    output_loss, output_gradCenterVecs, output_gradOutsideVectors = \\\n                skipgram(\"a\", 3, [\"a\", \"b\", \"e\", \"d\", \"b\", \"c\"],\n                dummy_tokens, dummy_vectors[:5,:], dummy_vectors[5:,:], dataset)\n\n    assert np.allclose(output_loss, 10.810758628593335), \\\n           \"Your loss does not match expected loss.\"\n    expected_gradCenterVecs = [[-1.1790274,  -1.35861865,  1.53590492],\n                               [ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ]]\n    expected_gradOutsideVectors = [[-7.96035953e-01, -1.79609012e-02,  2.07761330e-01],\n                                   [ 1.40175316e+00,  3.16276545e-02, -3.65850437e-01],\n                                   [-1.99691259e-01, -4.50561933e-03,  5.21184016e-02],\n                                   [ 2.02560028e-02,  4.57034715e-04, -5.28671357e-03],\n                                   [-4.26281954e-01, -9.61816867e-03,  1.11257419e-01]]\n                                                     \n    assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \\\n           \"Your gradCenterVecs do not match expected gradCenterVecs.\"\n    assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \\\n           \"Your gradOutsideVectors do not match expected gradOutsideVectors.\"\n    print(\"The third test passed!\")\n\n    print(\"All 3 tests passed!\")\n\n\ndef grad_tests_negsamp(skipgram, dummy_tokens, dummy_vectors, dataset, negSamplingLossAndGradient):\n    print (\"======Skip-Gram with negSamplingLossAndGradient======\")  \n\n    # first test\n    output_loss, output_gradCenterVecs, output_gradOutsideVectors = \\\n                skipgram(\"c\", 1, [\"a\", \"b\"], dummy_tokens, dummy_vectors[:5,:],\n                dummy_vectors[5:,:], dataset, negSamplingLossAndGradient)\n\n    assert np.allclose(output_loss, 16.15119285363322), \\\n           \"Your loss does not match expected loss.\"\n    expected_gradCenterVecs = [[ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ],\n                               [-4.54650789, -1.85942252,  0.76397441],\n                               [ 0.,          0.,          0.        ],\n                               [ 0.,          0.,          0.        ]]\n    expected_gradOutsideVectors = [[-0.69148188,  0.31730185,  2.41364029],\n                                   [-0.22716495,  0.10423969,  0.79292674],\n                                   [-0.45528438,  0.20891737,  1.58918512],\n                                   [-0.31602611,  0.14501561,  1.10309954],\n                                   [-0.80620296,  0.36994417,  2.81407799]]\n                     \n    assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \\\n           \"Your gradCenterVecs do not match expected gradCenterVecs.\"\n    assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \\\n           \"Your gradOutsideVectors do not match expected gradOutsideVectors.\"\n    print(\"The first test passed!\")\n\n    # second test\n    output_loss, output_gradCenterVecs, output_gradOutsideVectors = \\\n                skipgram(\"c\", 2, [\"a\", \"b\", \"c\", \"a\"], dummy_tokens, dummy_vectors[:5,:],\n                dummy_vectors[5:,:], dataset, negSamplingLossAndGradient)\n    assert np.allclose(output_loss, 28.653567707668795), \\\n           \"Your loss does not match expected loss.\"\n    expected_gradCenterVecs = [  [ 0.,          0.,          0.        ],\n                                 [ 0.,          0.,          0.        ],\n                                 [-6.42994865, -2.16396482, -1.89240934],\n                                 [ 0.,          0.,          0.        ],\n                                 [ 0.,          0.,          0.        ]]\n    expected_gradOutsideVectors = [  [-0.80413277,  0.36899421,  2.80685192],\n                                     [-0.9277269,   0.42570813,  3.23826131],\n                                     [-0.7511534,   0.34468345,  2.62192569],\n                                     [-0.94807832,  0.43504684,  3.30929863],\n                                     [-1.12868414,  0.51792184,  3.93970919]]\n                     \n    assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \\\n           \"Your gradCenterVecs do not match expected gradCenterVecs.\"\n    assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \\\n           \"Your gradOutsideVectors do not match expected gradOutsideVectors.\"\n    print(\"The second test passed!\")\n\n    # third test\n    output_loss, output_gradCenterVecs, output_gradOutsideVectors = \\\n                skipgram(\"a\", 3, [\"a\", \"b\", \"e\", \"d\", \"b\", \"c\"],\n                dummy_tokens, dummy_vectors[:5,:], \n                dummy_vectors[5:,:], dataset, negSamplingLossAndGradient)\n    assert np.allclose(output_loss, 60.648705494891914), \\\n           \"Your loss does not match expected loss.\"\n    expected_gradCenterVecs = [  [-17.89425315,  -7.36940626,  -1.23364121],\n                                 [  0.,           0.,           0.        ],\n                                 [  0.,           0.,           0.        ],\n                                 [  0.,           0.,           0.        ],\n                                 [  0.,           0.,           0.        ]]\n    expected_gradOutsideVectors = [[-6.4780819,  -0.14616449,  1.69074639],\n                                   [-0.86337952, -0.01948037,  0.22533766],\n                                   [-9.59525734, -0.21649709,  2.5043133 ],\n                                   [-6.02261515, -0.13588783,  1.57187189],\n                                   [-9.69010072, -0.21863704,  2.52906694]]\n                                                     \n    assert np.allclose(output_gradCenterVecs, expected_gradCenterVecs), \\\n           \"Your gradCenterVecs do not match expected gradCenterVecs.\"\n    assert np.allclose(output_gradOutsideVectors, expected_gradOutsideVectors), \\\n           \"Your gradOutsideVectors do not match expected gradOutsideVectors.\"\n    print(\"The third test passed!\")\n\n    print(\"All 3 tests passed!\")\n"
  },
  {
    "path": "a2/utils/treebank.py",
    "content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\nimport pickle\nimport numpy as np\nimport os\nimport random\n\nclass StanfordSentiment:\n    def __init__(self, path=None, tablesize = 1000000):\n        if not path:\n            path = \"utils/datasets/stanfordSentimentTreebank\"\n\n        self.path = path\n        self.tablesize = tablesize\n\n    def tokens(self):\n        if hasattr(self, \"_tokens\") and self._tokens:\n            return self._tokens\n\n        tokens = dict()\n        tokenfreq = dict()\n        wordcount = 0\n        revtokens = []\n        idx = 0\n\n        for sentence in self.sentences():\n            for w in sentence:\n                wordcount += 1\n                if not w in tokens:\n                    tokens[w] = idx\n                    revtokens += [w]\n                    tokenfreq[w] = 1\n                    idx += 1\n                else:\n                    tokenfreq[w] += 1\n\n        tokens[\"UNK\"] = idx\n        revtokens += [\"UNK\"]\n        tokenfreq[\"UNK\"] = 1\n        wordcount += 1\n\n        self._tokens = tokens\n        self._tokenfreq = tokenfreq\n        self._wordcount = wordcount\n        self._revtokens = revtokens\n        return self._tokens\n\n    def sentences(self):\n        if hasattr(self, \"_sentences\") and self._sentences:\n            return self._sentences\n\n        sentences = []\n        with open(self.path + \"/datasetSentences.txt\", \"r\") as f:\n            first = True\n            for line in f:\n                if first:\n                    first = False\n                    continue\n\n                splitted = line.strip().split()[1:]\n                # Deal with some peculiar encoding issues with this file\n                sentences += [[w.lower() for w in splitted]]\n\n        self._sentences = sentences\n        self._sentlengths = np.array([len(s) for s in sentences])\n        self._cumsentlen = np.cumsum(self._sentlengths)\n\n        return self._sentences\n\n    def numSentences(self):\n        if hasattr(self, \"_numSentences\") and self._numSentences:\n            return self._numSentences\n        else:\n            self._numSentences = len(self.sentences())\n            return self._numSentences\n\n    def allSentences(self):\n        if hasattr(self, \"_allsentences\") and self._allsentences:\n            return self._allsentences\n\n        sentences = self.sentences()\n        rejectProb = self.rejectProb()\n        tokens = self.tokens()\n        allsentences = [[w for w in s\n            if 0 >= rejectProb[tokens[w]] or random.random() >= rejectProb[tokens[w]]]\n            for s in sentences * 30]\n\n        allsentences = [s for s in allsentences if len(s) > 1]\n\n        self._allsentences = allsentences\n\n        return self._allsentences\n\n    def getRandomContext(self, C=5):\n        allsent = self.allSentences()\n        sentID = random.randint(0, len(allsent) - 1)\n        sent = allsent[sentID]\n        wordID = random.randint(0, len(sent) - 1)\n\n        context = sent[max(0, wordID - C):wordID]\n        if wordID+1 < len(sent):\n            context += sent[wordID+1:min(len(sent), wordID + C + 1)]\n\n        centerword = sent[wordID]\n        context = [w for w in context if w != centerword]\n\n        if len(context) > 0:\n            return centerword, context\n        else:\n            return self.getRandomContext(C)\n\n    def sent_labels(self):\n        if hasattr(self, \"_sent_labels\") and self._sent_labels:\n            return self._sent_labels\n\n        dictionary = dict()\n        phrases = 0\n        with open(self.path + \"/dictionary.txt\", \"r\") as f:\n            for line in f:\n                line = line.strip()\n                if not line: continue\n                splitted = line.split(\"|\")\n                dictionary[splitted[0].lower()] = int(splitted[1])\n                phrases += 1\n\n        labels = [0.0] * phrases\n        with open(self.path + \"/sentiment_labels.txt\", \"r\") as f:\n            first = True\n            for line in f:\n                if first:\n                    first = False\n                    continue\n\n                line = line.strip()\n                if not line: continue\n                splitted = line.split(\"|\")\n                labels[int(splitted[0])] = float(splitted[1])\n\n        sent_labels = [0.0] * self.numSentences()\n        sentences = self.sentences()\n        for i in range(self.numSentences()):\n            sentence = sentences[i]\n            full_sent = \" \".join(sentence).replace('-lrb-', '(').replace('-rrb-', ')')\n            sent_labels[i] = labels[dictionary[full_sent]]\n\n        self._sent_labels = sent_labels\n        return self._sent_labels\n\n    def dataset_split(self):\n        if hasattr(self, \"_split\") and self._split:\n            return self._split\n\n        split = [[] for i in range(3)]\n        with open(self.path + \"/datasetSplit.txt\", \"r\") as f:\n            first = True\n            for line in f:\n                if first:\n                    first = False\n                    continue\n\n                splitted = line.strip().split(\",\")\n                split[int(splitted[1]) - 1] += [int(splitted[0]) - 1]\n\n        self._split = split\n        return self._split\n\n    def getRandomTrainSentence(self):\n        split = self.dataset_split()\n        sentId = split[0][random.randint(0, len(split[0]) - 1)]\n        return self.sentences()[sentId], self.categorify(self.sent_labels()[sentId])\n\n    def categorify(self, label):\n        if label <= 0.2:\n            return 0\n        elif label <= 0.4:\n            return 1\n        elif label <= 0.6:\n            return 2\n        elif label <= 0.8:\n            return 3\n        else:\n            return 4\n\n    def getDevSentences(self):\n        return self.getSplitSentences(2)\n\n    def getTestSentences(self):\n        return self.getSplitSentences(1)\n\n    def getTrainSentences(self):\n        return self.getSplitSentences(0)\n\n    def getSplitSentences(self, split=0):\n        ds_split = self.dataset_split()\n        return [(self.sentences()[i], self.categorify(self.sent_labels()[i])) for i in ds_split[split]]\n\n    def sampleTable(self):\n        if hasattr(self, '_sampleTable') and self._sampleTable is not None:\n            return self._sampleTable\n\n        nTokens = len(self.tokens())\n        samplingFreq = np.zeros((nTokens,))\n        self.allSentences()\n        i = 0\n        for w in range(nTokens):\n            w = self._revtokens[i]\n            if w in self._tokenfreq:\n                freq = 1.0 * self._tokenfreq[w]\n                # Reweigh\n                freq = freq ** 0.75\n            else:\n                freq = 0.0\n            samplingFreq[i] = freq\n            i += 1\n\n        samplingFreq /= np.sum(samplingFreq)\n        samplingFreq = np.cumsum(samplingFreq) * self.tablesize\n\n        self._sampleTable = [0] * self.tablesize\n\n        j = 0\n        for i in range(self.tablesize):\n            while i > samplingFreq[j]:\n                j += 1\n            self._sampleTable[i] = j\n\n        return self._sampleTable\n\n    def rejectProb(self):\n        if hasattr(self, '_rejectProb') and self._rejectProb is not None:\n            return self._rejectProb\n\n        threshold = 1e-5 * self._wordcount\n\n        nTokens = len(self.tokens())\n        rejectProb = np.zeros((nTokens,))\n        for i in range(nTokens):\n            w = self._revtokens[i]\n            freq = 1.0 * self._tokenfreq[w]\n            # Reweigh\n            rejectProb[i] = max(0, 1 - np.sqrt(threshold / freq))\n\n        self._rejectProb = rejectProb\n        return self._rejectProb\n\n    def sampleTokenIdx(self):\n        return self.sampleTable()[random.randint(0, self.tablesize - 1)]"
  },
  {
    "path": "a2/utils/utils.py",
    "content": "#!/usr/bin/env python\n\nimport numpy as np\n\ndef normalizeRows(x):\n    \"\"\" Row normalization function\n\n    Implement a function that normalizes each row of a matrix to have\n    unit length.\n    \"\"\"\n    N = x.shape[0]\n    x /= np.sqrt(np.sum(x**2, axis=1)).reshape((N,1)) + 1e-30\n    return x\n\ndef softmax(x):\n    \"\"\"Compute the softmax function for each row of the input x.\n    It is crucial that this function is optimized for speed because\n    it will be used frequently in later code. \n\n    Arguments:\n    x -- A D dimensional vector or N x D dimensional numpy matrix.\n    Return:\n    x -- You are allowed to modify x in-place\n    \"\"\"\n    orig_shape = x.shape\n\n    if len(x.shape) > 1:\n        # Matrix\n        tmp = np.max(x, axis=1)\n        x -= tmp.reshape((x.shape[0], 1))\n        x = np.exp(x)\n        tmp = np.sum(x, axis=1)\n        x /= tmp.reshape((x.shape[0], 1))\n    else:\n        # Vector\n        tmp = np.max(x)\n        x -= tmp\n        x = np.exp(x)\n        tmp = np.sum(x)\n        x /= tmp\n\n    assert x.shape == orig_shape\n    return x"
  },
  {
    "path": "a2/word2vec.py",
    "content": "#!/usr/bin/env python\n\nimport argparse\nimport numpy as np\nimport random\n\nfrom utils.gradcheck import gradcheck_naive, grad_tests_softmax, grad_tests_negsamp\nfrom utils.utils import normalizeRows, softmax\n\n\ndef sigmoid(x):\n    \"\"\"\n    Compute the sigmoid function for the input here.\n    Arguments:\n    x -- A scalar or numpy array.\n    Return:\n    s -- sigmoid(x)\n    \"\"\"\n\n    ### YOUR CODE HERE (~1 Line)\n    s = 1 / (1 + np.exp(-x))\n    ### END YOUR CODE\n\n    return s\n\n\ndef naiveSoftmaxLossAndGradient(\n    centerWordVec,\n    outsideWordIdx,\n    outsideVectors,\n    dataset\n):\n    \"\"\" Naive Softmax loss & gradient function for word2vec models\n\n    Implement the naive softmax loss and gradients between a center word's \n    embedding and an outside word's embedding. This will be the building block\n    for our word2vec models. For those unfamiliar with numpy notation, note \n    that a numpy ndarray with a shape of (x, ) is a one-dimensional array, which\n    you can effectively treat as a vector with length x.\n\n    Arguments:\n    centerWordVec -- numpy ndarray, center word's embedding\n                    in shape (word vector length, )\n                    (v_c in the pdf handout)\n    outsideWordIdx -- integer, the index of the outside word\n                    (o of u_o in the pdf handout)\n    outsideVectors -- outside vectors is\n                    in shape (num words in vocab, word vector length) \n                    for all words in vocab (tranpose of U in the pdf handout)\n    dataset -- needed for negative sampling, unused here.\n\n    Return:\n    loss -- naive softmax loss\n    gradCenterVec -- the gradient with respect to the center word vector\n                     in shape (word vector length, )\n                     (dJ / dv_c in the pdf handout)\n    gradOutsideVecs -- the gradient with respect to all the outside word vectors\n                    in shape (num words in vocab, word vector length) \n                    (dJ / dU)\n    \"\"\"\n\n    ### YOUR CODE HERE (~6-8 Lines)\n\n    ### Please use the provided softmax function (imported earlier in this file)\n    ### This numerically stable implementation helps you avoid issues pertaining\n    ### to integer overflow. \n    \n    gradOutsideVecs = np.zeros_like(outsideVectors)\n    # obtain y_hat (i.e., the conditional probability distribution p(O = o | C = c))\n    # by taking vector dot products and applying softmax\n    y_hat = softmax(np.dot(outsideVectors, centerWordVec)) # (N,) N x 1\n    # can also get y_hat in a single line: y_hat = softmax(outsideVectors @ centerWordVec)\n\n    # for a single pair of words c and o, the loss is given by:\n    # J(v_c, o, U) = -log P(O = o | C = c) = -log [y_hat[o]]\n    loss = -np.log(y_hat[outsideWordIdx])\n\n    # grad calc\n    # generate the ground-truth one-hot vector, [..., 0, outsideWordIdx=1, 0, ...]\n    y = np.zeros_like(y_hat)\n    y[outsideWordIdx] = 1\n    # can also get loss as -np.dot(y, np.log(y_hat))    \n    \n    gradCenterVec = np.dot(y_hat - y, outsideVectors) # inner product results in a scalar\n    # or gradCenterVec = np.dot(outsideVectors.T, y_hat - y)\n    \n    gradOutsideVecs = np.outer(y_hat - y, centerWordVec) # outer product results in a matrix\n    # or gradOutsideVecs = np.dot((y_hat - y)[:, np.newaxis], centerWordVec[np.newaxis, :]) \n    \n    # sanity check the dimensions\n    assert gradCenterVec.shape == centerWordVec.shape\n    assert gradOutsideVecs.shape == outsideVectors.shape  \n\n    ### END YOUR CODE\n\n    return loss, gradCenterVec, gradOutsideVecs\n\n\ndef getNegativeSamples(outsideWordIdx, dataset, K):\n    \"\"\" Samples K indexes which are not the outsideWordIdx \"\"\"\n\n    negSampleWordIndices = [None] * K\n    for k in range(K):\n        newidx = dataset.sampleTokenIdx()\n        while newidx == outsideWordIdx:\n            newidx = dataset.sampleTokenIdx()\n        negSampleWordIndices[k] = newidx\n    return negSampleWordIndices\n\n\ndef negSamplingLossAndGradient(\n    centerWordVec,\n    outsideWordIdx,\n    outsideVectors,\n    dataset,\n    K=10\n):\n    \"\"\" Negative sampling loss function for word2vec models\n\n    Implement the negative sampling loss and gradients for a centerWordVec\n    and a outsideWordIdx word vector as a building block for word2vec\n    models. K is the number of negative samples to take.\n\n    Note: The same word may be negatively sampled multiple times. For\n    example if an outside word is sampled twice, you shall have to\n    double count the gradient with respect to this word. Thrice if\n    it was sampled three times, and so forth.\n\n    Arguments/Return Specifications: same as naiveSoftmaxLossAndGradient\n    \"\"\"\n\n    # Negative sampling of words is done for you. Do not modify this if you\n    # wish to match the autograder and receive points!\n    negSampleWordIndices = getNegativeSamples(outsideWordIdx, dataset, K)\n    indices = [outsideWordIdx] + negSampleWordIndices\n\n    ### YOUR CODE HERE (~10 Lines)\n\n    ### Please use your implementation of sigmoid in here.\n    \n    gradOutsideVecs = np.zeros(outsideVectors.shape)\n    \n    # Calculate the first term\n    y_hat = sigmoid(np.dot(outsideVectors[outsideWordIdx], centerWordVec))\n    loss = -np.log(y_hat)\n    \n    gradCenterVec = np.dot(y_hat - 1, outsideVectors[outsideWordIdx])\n    gradOutsideVecs[outsideWordIdx] = np.dot(y_hat - 1, centerWordVec)\n\n    # Calculate the second term\n    for i in range(K):\n        w_k = indices[i+1]\n        y_k_hat = sigmoid(-np.dot(outsideVectors[w_k], centerWordVec))\n        loss += -np.log(y_k_hat)\n        gradOutsideVecs[w_k] += np.dot(1.0 - y_k_hat, centerWordVec)\n        gradCenterVec += np.dot(1.0 - y_k_hat, outsideVectors[w_k])\n\n    ### END YOUR CODE\n\n    return loss, gradCenterVec, gradOutsideVecs\n\n\ndef skipgram(currentCenterWord, windowSize, outsideWords, word2Ind,\n             centerWordVectors, outsideVectors, dataset,\n             word2vecLossAndGradient=naiveSoftmaxLossAndGradient):\n    \"\"\" Skip-gram model in word2vec\n\n    Implement the skip-gram model in this function.\n\n    Arguments:\n    currentCenterWord -- a string of the current center word\n    windowSize -- integer, context window size\n    outsideWords -- list of no more than 2*windowSize strings, the outside words\n    word2Ind -- a dictionary that maps words to their indices in\n              the word vector list\n    centerWordVectors -- center word vectors (as rows) is in shape \n                        (num words in vocab, word vector length) \n                        for all words in vocab (V in pdf handout)\n    outsideVectors -- outside vectors is in shape \n                        (num words in vocab, word vector length) \n                        for all words in vocab (transpose of U in the pdf handout)\n    word2vecLossAndGradient -- the loss and gradient function for\n                               a prediction vector given the outsideWordIdx\n                               word vectors, could be one of the two\n                               loss functions you implemented above.\n\n    Return:\n    loss -- the loss function value for the skip-gram model\n            (J in the pdf handout)\n    gradCenterVec -- the gradient with respect to the center word vector\n                     in shape (word vector length, )\n                     (dJ / dv_c in the pdf handout)\n    gradOutsideVecs -- the gradient with respect to all the outside word vectors\n                    in shape (num words in vocab, word vector length) \n                    (dJ / dU)\n    \"\"\"\n\n    loss = 0.0\n    gradCenterVecs = np.zeros(centerWordVectors.shape)\n    gradOutsideVectors = np.zeros(outsideVectors.shape)\n\n    ### YOUR CODE HERE (~8 Lines)\n    \n    # skip-gram model predicts outside words from the center word\n    \n    # get center word vec first from currentCenterWord\n    centerWordIdx = word2Ind[currentCenterWord]\n    centerWordVec = centerWordVectors[centerWordIdx]\n\n    for outsideWord in outsideWords:\n        outsideWordIdx = word2Ind[outsideWord]\n        stepLoss, gradCenter, gradOutside = word2vecLossAndGradient(centerWordVec,\n                                                                    outsideWordIdx,\n                                                                    outsideVectors,\n                                                                    dataset)\n\n        loss += stepLoss\n        gradCenterVecs[centerWordIdx] += gradCenter\n        gradOutsideVectors += gradOutside    \n\n    ### END YOUR CODE\n    \n    return loss, gradCenterVecs, gradOutsideVectors\n\n\n#############################################\n# Testing functions below. DO NOT MODIFY!   #\n#############################################\n\ndef word2vec_sgd_wrapper(word2vecModel, word2Ind, wordVectors, dataset,\n                         windowSize,\n                         word2vecLossAndGradient=naiveSoftmaxLossAndGradient):\n    batchsize = 50\n    loss = 0.0\n    grad = np.zeros(wordVectors.shape)\n    N = wordVectors.shape[0]\n    centerWordVectors = wordVectors[:int(N/2),:]\n    outsideVectors = wordVectors[int(N/2):,:]\n    for i in range(batchsize):\n        windowSize1 = random.randint(1, windowSize)\n        centerWord, context = dataset.getRandomContext(windowSize1)\n\n        c, gin, gout = word2vecModel(\n            centerWord, windowSize1, context, word2Ind, centerWordVectors,\n            outsideVectors, dataset, word2vecLossAndGradient\n        )\n        loss += c / batchsize\n        grad[:int(N/2), :] += gin / batchsize\n        grad[int(N/2):, :] += gout / batchsize\n\n    return loss, grad\n\ndef test_sigmoid():\n    \"\"\" Test sigmoid function \"\"\"\n    print(\"=== Sanity check for sigmoid ===\")\n    assert sigmoid(0) == 0.5\n    assert np.allclose(sigmoid(np.array([0])), np.array([0.5]))\n    assert np.allclose(sigmoid(np.array([1,2,3])), np.array([0.73105858, 0.88079708, 0.95257413]))\n    print(\"Tests for sigmoid passed!\")\n\ndef getDummyObjects():\n    \"\"\" Helper method for naiveSoftmaxLossAndGradient and negSamplingLossAndGradient tests \"\"\"\n\n    def dummySampleTokenIdx():\n        return random.randint(0, 4)\n\n    def getRandomContext(C):\n        tokens = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n        return tokens[random.randint(0,4)], \\\n            [tokens[random.randint(0,4)] for i in range(2*C)]\n\n    dataset = type('dummy', (), {})()\n    dataset.sampleTokenIdx = dummySampleTokenIdx\n    dataset.getRandomContext = getRandomContext\n\n    random.seed(31415)\n    np.random.seed(9265)\n    dummy_vectors = normalizeRows(np.random.randn(10,3))\n    dummy_tokens = dict([(\"a\",0), (\"b\",1), (\"c\",2),(\"d\",3),(\"e\",4)])\n\n    return dataset, dummy_vectors, dummy_tokens\n\ndef test_naiveSoftmaxLossAndGradient():\n    \"\"\" Test naiveSoftmaxLossAndGradient \"\"\"\n    dataset, dummy_vectors, dummy_tokens = getDummyObjects()\n\n    print(\"==== Gradient check for naiveSoftmaxLossAndGradient ====\")\n    def temp(vec):\n        loss, gradCenterVec, gradOutsideVecs = naiveSoftmaxLossAndGradient(vec, 1, dummy_vectors, dataset)\n        return loss, gradCenterVec\n    gradcheck_naive(temp, np.random.randn(3), \"naiveSoftmaxLossAndGradient gradCenterVec\")\n\n    centerVec = np.random.randn(3)\n    def temp(vec):\n        loss, gradCenterVec, gradOutsideVecs = naiveSoftmaxLossAndGradient(centerVec, 1, vec, dataset)\n        return loss, gradOutsideVecs\n    gradcheck_naive(temp, dummy_vectors, \"naiveSoftmaxLossAndGradient gradOutsideVecs\")\n\ndef test_negSamplingLossAndGradient():\n    \"\"\" Test negSamplingLossAndGradient \"\"\"\n    dataset, dummy_vectors, dummy_tokens = getDummyObjects()\n\n    print(\"==== Gradient check for negSamplingLossAndGradient ====\")\n    def temp(vec):\n        loss, gradCenterVec, gradOutsideVecs = negSamplingLossAndGradient(vec, 1, dummy_vectors, dataset)\n        return loss, gradCenterVec\n    gradcheck_naive(temp, np.random.randn(3), \"negSamplingLossAndGradient gradCenterVec\")\n\n    centerVec = np.random.randn(3)\n    def temp(vec):\n        loss, gradCenterVec, gradOutsideVecs = negSamplingLossAndGradient(centerVec, 1, vec, dataset)\n        return loss, gradOutsideVecs\n    gradcheck_naive(temp, dummy_vectors, \"negSamplingLossAndGradient gradOutsideVecs\")\n\ndef test_skipgram():\n    \"\"\" Test skip-gram with naiveSoftmaxLossAndGradient \"\"\"\n    dataset, dummy_vectors, dummy_tokens = getDummyObjects()\n\n    print(\"==== Gradient check for skip-gram with naiveSoftmaxLossAndGradient ====\")\n    gradcheck_naive(lambda vec: word2vec_sgd_wrapper(\n        skipgram, dummy_tokens, vec, dataset, 5, naiveSoftmaxLossAndGradient),\n        dummy_vectors, \"naiveSoftmaxLossAndGradient Gradient\")\n    grad_tests_softmax(skipgram, dummy_tokens, dummy_vectors, dataset)\n\n    print(\"==== Gradient check for skip-gram with negSamplingLossAndGradient ====\")\n    gradcheck_naive(lambda vec: word2vec_sgd_wrapper(\n        skipgram, dummy_tokens, vec, dataset, 5, negSamplingLossAndGradient),\n        dummy_vectors, \"negSamplingLossAndGradient Gradient\")\n    grad_tests_negsamp(skipgram, dummy_tokens, dummy_vectors, dataset, negSamplingLossAndGradient)\n\ndef test_word2vec():\n    \"\"\" Test the two word2vec implementations, before running on Stanford Sentiment Treebank \"\"\"\n    test_sigmoid()\n    test_naiveSoftmaxLossAndGradient()\n    test_negSamplingLossAndGradient()\n    test_skipgram()\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(description='Test your implementations.')\n    parser.add_argument('function', nargs='?', type=str, default='all',\n                        help='Name of the function you would like to test.')\n\n    args = parser.parse_args()\n    if args.function == 'sigmoid':\n        test_sigmoid()\n    elif args.function == 'naiveSoftmaxLossAndGradient':\n        test_naiveSoftmaxLossAndGradient()\n    elif args.function == 'negSamplingLossAndGradient':\n        test_negSamplingLossAndGradient()\n    elif args.function == 'skipgram':\n        test_skipgram()\n    elif args.function == 'all':\n        test_word2vec()\n"
  },
  {
    "path": "a3/README.txt",
    "content": "Welcome to Assignment 3!\n\nWe'll be using PyTorch for this assignment. If you're not familiar with PyTorch, or if you would like to review some of the fundamentals of PyTorch, the PyTorch review session is posted on Canvas under Course Videos.  \n\nIf you want to continue using your cs224n environment from assignment 1 for this assignment, please make sure you have all the dependencies listed in local_env.yml. To do so, please run: \n\n# 1. Activate your old environment:\n\n    conda activate cs224n\n\n# 2. Install docopt\n\n    conda install docopt\n\n# 3. Install pytorch, torchvision, and tqdm\n\n    conda install pytorch torchvision -c pytorch\n    conda install -c anaconda tqdm\n\n\nIf you would like to instead create a new environment for this assignment, please run:\n\n# 1. Create an environment with dependencies specified in local_env.yml (note that this can take some time depending on your laptop):\n    \n    conda env create -f local_env.yml\n\n# 2. Activate the new environment:\n    \n    conda activate cs224n_a3\n    \n\n# To deactivate an active environment, use\n    \n    conda deactivate\n"
  },
  {
    "path": "a3/collect_submission.sh",
    "content": "rm -f assignment3.zip\nzip -r assignment3.zip *.py ./data ./utils\n"
  },
  {
    "path": "a3/data/dev.conll",
    "content": "1\tInfluential\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmembers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tWays\t_\tPROPN\tNNPS\t_\t2\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tMeans\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCommittee\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n10\tintroduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tlegislation\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\trestrict\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n15\thow\t_\tADV\tWRB\t_\t22\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\tsavings-and-loan\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\tbailout\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tagency\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\tcan\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\traise\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n23\tcapital\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tcreating\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n26\tanother\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tpotential\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tobstacle\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tgovernment\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tsale\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tsick\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tthrifts\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhose\t_\tPRON\tWP$\t_\t5\tnmod:poss\t_\t_\n5\tbackers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tinclude\t_\tVERB\tVBP\t_\t2\tacl:relcl\t_\t_\n7\tChairman\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tDan\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tRostenkowski\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n11\tD.\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tIll.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tprevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tResolution\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tTrust\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n22\tfrom\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\traising\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n24\ttemporary\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tworking\t_\tVERB\tJJ\t_\t26\tamod\t_\t_\n26\tcapital\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tby\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n28\thaving\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n29\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tRTC-owned\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tbank\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tthrift\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n34\tissue\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tdebt\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n36\tthat\t_\tPRON\tWDT\t_\t40\tnsubjpass\t_\t_\n37\twould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n38\tn't\t_\tPART\tRB\t_\t40\tneg\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tcounted\t_\tVERB\tVBN\t_\t31\tacl:relcl\t_\t_\n41\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tfederal\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tbudget\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tintends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trestrict\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tRTC\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tTreasury\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tborrowings\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tonly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tunless\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tagency\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\treceives\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n17\tspecific\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcongressional\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tauthorization\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tSuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n4\t`\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n5\tself-help\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\t'\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\tborrowing\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tunauthorized\t_\tADJ\tJJ\t_\t22\tccomp\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\texpensive\t_\tADJ\tJJ\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tfar\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\texpensive\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n16\tthan\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tdirect\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tTreasury\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tborrowing\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tRep.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tFortney\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tStark\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tD.\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tCalif.\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tbill\t_\tNOUN\tNN\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tchief\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tsponsor\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tcomplex\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tfinancing\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tplan\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tS&L\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tbailout\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tlaw\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\traising\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t30\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tdebt\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tissued\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tnewly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tcreated\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n22\tRTC\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfinancing\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tsystem\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tcreated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlaw\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tin\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\torder\t_\tNOUN\tNN\t_\t10\tmwe\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tkeep\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tbailout\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tspending\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tswelling\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tbudget\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdeficit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tadvmod\t_\t_\n2\t$\t_\tSYM\t$\t_\t7\tnsubjpass\t_\t_\n3\t20\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tbillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tthrough\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tTreasury\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tpay\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n14\tlower\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n15\tinterest\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trates\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tRTC\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\tworking\t_\tNOUN\tVBG\t_\t9\tcompound\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tcapital\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tmaintain\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbad\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tassets\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tthrifts\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubjpass\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n19\tsold\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tuntil\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tassets\t_\tNOUN\tNNS\t_\t26\tnsubjpass\t_\t_\n24\tcan\t_\tAUX\tMD\t_\t26\taux\t_\t_\n25\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n26\tsold\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n27\tseparately\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdebt\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tpaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\toff\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\tauxpass\t_\t_\n11\tsold\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tleaving\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\ttotal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tspending\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tbailout\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n22\t50\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tbillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n26\t$\t_\tSYM\t$\t_\t21\tconj\t_\t_\n27\t166\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tbillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tincluding\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n30\tinterest\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tover\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\t10\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tproblem\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tclearly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thas\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tresolved\t_\tVERB\tVBN\t_\t8\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tDavid\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCooke\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\texecutive\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdirector\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tRTC\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tspent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\troughly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n8\t19\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tselling\t_\tVERB\tNN\t_\t5\txcomp\t_\t_\n11\t34\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tinsolvent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tS&Ls\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n18\tlikely\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tsell\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tmerge\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n23\t600\t_\tNUM\tCD\t_\t20\tdobj\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttime\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tbailout\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n29\tconcludes\t_\tVERB\tVBZ\t_\t26\tacl:relcl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAbsent\t_\tVERB\tJJ\t_\t13\tdep\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tworking\t_\tNOUN\tVBG\t_\t4\tcompound\t_\t_\n4\tcapital\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t13\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tRTC\t_\tPROPN\tNNP\t_\t13\tnsubjpass\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tforced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tdelay\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tthrift\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tresolutions\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tuntil\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tcash\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n21\tcould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\traised\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n24\tby\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\tselling\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tbad\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tassets\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thave\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\twait\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tuntil\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tcollected\t_\tVERB\tVBN\t_\t6\tadvcl\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthose\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tassets\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tbefore\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\twe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tmove\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n18\tforward\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n21\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomplicated\t_\tVERB\tJJ\t_\t3\tamod\t_\t_\n3\tlanguage\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\thuge\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tlaw\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tmuddied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tfight\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlaw\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tallow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tborrow\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tup\t_\tADP\tIN\t_\t14\tdep\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n15\t5\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttime\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\ttotal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tobligations\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n10\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\texceed\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t50\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n18\tthat\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfigure\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n21\tderived\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tincluding\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tnotes\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdebt\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n30\tsubtracting\t_\tVERB\tVBG\t_\t23\tconj\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t30\tnmod\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tmarket\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tvalue\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tassets\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tRTC\t_\tPROPN\tNNP\t_\t41\tnsubj\t_\t_\n41\tholds\t_\tVERB\tVBZ\t_\t38\tacl:relcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tCongress\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tanticipate\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tintend\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n9\tpublic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdebt\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\topponents\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tRTC\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tworking-capital\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tplan\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n22\tRep.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tCharles\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tSchumer\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n25\t-LRB-\t_\tPUNCT\t-LRB-\t_\t26\tpunct\t_\t_\n26\tD.\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tN.Y\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t26\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t12\tconj\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tRTC\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tOversight\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tBoard\t_\tPROPN\tNNP\t_\t38\tnsubj\t_\t_\n36\thas\t_\tAUX\tVBZ\t_\t38\taux\t_\t_\n37\tbeen\t_\tVERB\tVBN\t_\t38\tcop\t_\t_\n38\tremiss\t_\tADJ\tVBN\t_\t31\tccomp\t_\t_\n39\tin\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n40\tnot\t_\tPART\tRB\t_\t41\tneg\t_\t_\n41\tkeeping\t_\tVERB\tVBG\t_\t38\tadvcl\t_\t_\n42\tCongress\t_\tPROPN\tNNP\t_\t43\tnsubj\t_\t_\n43\tinformed\t_\tVERB\tVBN\t_\t41\txcomp\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tThat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsecrecy\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tleads\t_\tVERB\tVBZ\t_\t26\tccomp\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tproposal\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tlike\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tone\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tWays\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tMeans\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tseems\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tme\t_\tPRON\tPRP\t_\t17\tnmod\t_\t_\n20\tsort\t_\tNOUN\tNN\t_\t22\tadvmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n22\tdraconian\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n25\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tRTC\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\thave\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tpay\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprice\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tprior\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tconsultation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tHill\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tif\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n19\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\twant\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n21\tthat\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tkind\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tflexibility\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tWays\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tMeans\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tCommittee\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\thold\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thearing\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tbill\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tnext\t_\tADP\tIN\t_\t14\tamod\t_\t_\n14\tTuesday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t're\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tabout\t_\tADP\tIN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tsee\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tadvertising\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tworks\t_\tVERB\tNNS\t_\t5\tadvcl\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHard\t_\tADV\tJJ\t_\t24\tadvmod\t_\t_\n2\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\theels\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\t190-point\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tstock-market\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplunge\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tuncertainty\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n15\t's\t_\tAUX\tVBZ\t_\t16\tauxpass\t_\t_\n16\tfollowed\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tbig\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tbrokerage\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tfirms\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\trolling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n25\tout\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\tnew\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tads\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\ttrumpeting\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tfamiliar\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tmessage\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\t:\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n33\tKeep\t_\tVERB\tVB\t_\t31\tdep\t_\t_\n34\ton\t_\tADP\tIN\t_\t33\tcompound:prt\t_\t_\n35\tinvesting\t_\tVERB\tNN\t_\t33\txcomp\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tmarket\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n39\t's\t_\tVERB\tPOS\t_\t41\tcop\t_\t_\n40\tjust\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\tfine\t_\tADJ\tJJ\t_\t33\tparataxis\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tTheir\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tmission\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tkeep\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tclients\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tfrom\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tfleeing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tindividual\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tdid\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tdroves\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tafter\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcrash\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tOctober\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tdays\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n3\tafter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcrash\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tbrokerage\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfirms\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\trushed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tout\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tads\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcalm\t_\tVERB\tJJ\t_\t11\tadvcl\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\taround\t_\tADP\tRP\t_\t2\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\t're\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tmoving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\teven\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tfaster\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tPaineWebber\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfilmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttelevision\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcommercial\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\t4\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tp.m.\t_\tNOUN\tRB\t_\t11\tcompound\t_\t_\n11\tEDT\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n12\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tair\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tnight\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInvestments\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tads\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnewspapers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\twrote\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n12\tanother\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tad\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tappearing\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\ttoday\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShearson\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tLehman\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tHutton\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tafternoon\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\talready\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\twritten\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tTV\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tads\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tconsidered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\trunning\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n4\tthem\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\tduring\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\ttomorrow\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnight\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tWorld\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tSeries\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tbroadcast\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n13\tdecided\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n14\tnot\t_\tADV\tRB\t_\t15\tneg\t_\t_\n15\tto\t_\tPART\tTO\t_\t13\txcomp\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\trecovered\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tincluding\t_\tVERB\tVBG\t_\t7\tcase\t_\t_\n6\tMerrill\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLynch\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tplotting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tout\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tpotential\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tad\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tstrategies\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tlearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlesson\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlast\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n10\taround\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n13\tfrightened\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tflooded\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tphone\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlines\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\tfled\t_\tVERB\tVBD\t_\t15\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tpanic\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tready\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\texample\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tprepared\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n7\tads\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tseveral\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n10\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcase\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplunge\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twent\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n5\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tfree\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tfall\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tafternoon\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tinvestment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tfirm\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tfull\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tpages\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tMonday\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\teditions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\thalf\t_\tDET\tPDT\t_\t25\tadvmod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tadvmod\t_\t_\n25\tdozen\t_\tNOUN\tNN\t_\t26\tnummod\t_\t_\n26\tnewspapers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tads\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\ttouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFidelity\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tautomated\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n7\t800-number\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tbeneath\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\thuge\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\theadline\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n14\tFidelity\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\tIs\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tReady\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n17\tFor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tYour\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tCall\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFidelity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\t800-line\t_\tNOUN\tJJ\t_\t21\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n9\talready\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\toperating\t_\tVERB\tVBG\t_\t6\tacl:relcl\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t18\tnmod\t_\t_\n14\tmany\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tclients\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\tdid\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tknow\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n19\tabout\t_\tADP\tRB\t_\t13\tcase\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\treceived\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n22\tabout\t_\tADV\tIN\t_\t23\tadvmod\t_\t_\n23\tdouble\t_\tADV\tRB\t_\t26\tnummod\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tusual\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tvolume\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tcalls\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tover\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tweekend\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlot\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tinvestor\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconfidence\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tcomes\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfact\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tspeak\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tus\t_\tPRON\tPRP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n19\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tTo\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\tmaintain\t_\tVERB\tVB\t_\t8\tcsubj\t_\t_\n4\tthat\t_\tDET\tIN\t_\t5\tdet\t_\t_\n5\tdialogue\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tabsolutely\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcrucial\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n3\thave\t_\tAUX\tVB\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\ttoo\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tlate\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tthink\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n9\tabout\t_\tADP\tRB\t_\t8\tnmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tthink\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tabout\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t4\tnmod\t_\t_\n7\tahead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tToday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tFidelity\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tad\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tgoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstep\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfurther\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tencouraging\t_\tVERB\tJJ\t_\t5\tadvcl\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tstay\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\teven\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tplunge\t_\tVERB\tNN\t_\t13\tconj\t_\t_\n21\tin\t_\tADP\tIN\t_\t20\tcompound:prt\t_\t_\n22\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tFidelity\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnderneath\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\theadline\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n5\tDiversification\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tcounsels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n12\tBased\t_\tVERB\tVBN\t_\t15\tcase\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tevents\t_\tNOUN\tNNS\t_\t23\tadvcl\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tpast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tweek\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n21\tall\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tinvestors\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tneed\t_\tVERB\tVBP\t_\t9\tccomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tknow\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tportfolios\t_\tNOUN\tNNS\t_\t29\tnsubjpass\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\tauxpass\t_\t_\n29\tbalanced\t_\tVERB\tVBN\t_\t25\tccomp\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\thelp\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tprotect\t_\tVERB\tVB\t_\t31\tccomp\t_\t_\n33\tthem\t_\tPRON\tPRP\t_\t32\tdobj\t_\t_\n34\tagainst\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tvolatility\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tgoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ton\t_\tADV\tIN\t_\t2\tadvmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tplug\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tdiversified\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tFidelity\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tfunds\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n11\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tname\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tPaineWebber\t_\tNOUN\tNNP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tgear\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tquickly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\tthanks\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\taftermath\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tdebacle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbrokerage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttaping\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n14\tcommercials\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tin-house\t_\tADJ\tJJ\t_\t13\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tultimately\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tgetting\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\ttiming\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tdown\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n22\tfast\t_\tADJ\tRB\t_\t23\tadvmod\t_\t_\n23\tenough\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\ttape\t_\tVERB\tVB\t_\t23\tdep\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tcommercial\t_\tNOUN\tJJ\t_\t25\tdobj\t_\t_\n28\tafter\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\tclosed\t_\tVERB\tVBD\t_\t25\tadvcl\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n33\trush\t_\tVERB\tVB\t_\t25\tconj\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t33\tdobj\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tair\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\tthat\t_\tDET\tWDT\t_\t39\tdet\t_\t_\n39\tnight\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tnegotiated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tarrangement\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tCable\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tNews\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tNetwork\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tunder\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tnmod\t_\t_\n12\tCNN\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tagree\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tair\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tlast-minute\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcreations\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tPaineWebber\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tcommercial\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tcreated\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tad\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tagency\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tSaatchi\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tSaatchi\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tMary\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tFarrell\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tone\t_\tNUM\tCD\t_\t17\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n22\tfirm\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n23\t's\t_\tVERB\tPOS\t_\t22\tcase\t_\t_\n24\tmost\t_\tADV\tRBS\t_\t25\tadvmod\t_\t_\n25\tvisible\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tinvestment\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tstrategists\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n29\tsounding\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n30\tparticularly\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tbullish\t_\tADJ\tJJ\t_\t29\txcomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tTaped\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n2\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tclosed\t_\tVERB\tVBD\t_\t1\tadvcl\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tMs.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tFarrell\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tadvising\t_\tNOUN\tVBG\t_\t12\tdep\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n16\tWe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tview\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\there\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tgoing\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n23\tthrough\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\trelatively\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tnormal\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcycle\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t...\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcontinue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tfeel\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tstill\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tplace\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tlong-term\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tappreciation\t_\tNOUN\tNN\t_\t12\tacl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspot\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tappear\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\ttimes\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tCNN\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tnight\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPaineWebber\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tconsidered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tharder\t_\tADJ\tRBR\t_\t6\tamod\t_\t_\n6\tsell\t_\tNOUN\tVB\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\trecommending\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n9\tspecific\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tdep\t_\t_\n6\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\turging\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tclients\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tlifeline\t_\tNOUN\tNN\t_\t9\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tkeep\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n16\tthat\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmoney\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tsaying\t_\tVERB\tVBG\t_\t32\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tworst\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tthing\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n8\tthat\t_\tADP\tWDT\t_\t11\tdobj\t_\t_\n9\tanyone\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tdo\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsee\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tgo\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n18\tdown\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tdump\t_\tVERB\tVB\t_\t17\tconj\t_\t_\n21\teverything\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n24\tjust\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tdrives\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n28\tdown\t_\tADP\tRP\t_\t25\tadvmod\t_\t_\n29\tfurther\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n32\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n33\tJohn\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tLampe\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tPaineWebber\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tdirector\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tadvertising\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\towned\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\tliked\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttrue\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tvalue\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tchanged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n5\tThis\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t2\tccomp\t_\t_\n9\trevisited\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfluctuating\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tthen\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tclosing\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n8\tup\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tmore\t_\tADV\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t88\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n13\tyesterday\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tinvestment\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\tconstantly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\trevise\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tapproach\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tShearson\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLehman\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tcreated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tpotential\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcommercials\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tnight\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthroughout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tweekend\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\tthen\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thad\t_\tVERB\tVBD\t_\t6\tdep\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tregroup\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tyesterday\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tafternoon\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tmake\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tone\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n9\tShearson\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\teasy-to-film\t_\tADJ\tNN\t_\t19\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\tblack-and-white\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n15\tWhere\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n16\tWe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tStand\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tcommercials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n22\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n23\tbeen\t_\tAUX\tVBN\t_\t24\taux\t_\t_\n24\trunning\t_\tVERB\tVBG\t_\t19\tacl:relcl\t_\t_\n25\toccasionally\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tresponse\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tnews\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tevents\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\tsince\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\t1985\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tad\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\thave\t_\tAUX\tVB\t_\t5\taux\t_\t_\n5\trun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tduring\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tWorld\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSeries\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\ttomorrow\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\treplacing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdebut\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcommercial\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tShearson\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tad\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcampaign\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n24\tLeadership\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n25\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tExample\t_\tNOUN\tNNP\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmeeting\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n5\tafter\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tclosed\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n9\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tShearson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\texecutives\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tdecided\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tgo\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\tahead\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tstock-market\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tad\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpoint\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tanything\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tneeds\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tsaid\t_\tVERB\tVBN\t_\t10\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tstraightening\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n7\tout\t_\tADP\tIN\t_\t6\tcompound:prt\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t're\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\ttaking\t_\tVERB\tVBG\t_\t3\tparataxis\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\twait-and-see\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tattitude\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tCathleen\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tB.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tStewart\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\texecutive\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tvice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tmarketing\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbrokerage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tclearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmoving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tfaster\t_\tADV\tJJR\t_\t10\tadvmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcreate\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tads\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tthan\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tdid\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfall\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1987\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tseen\t_\tVERB\tVBN\t_\t3\txcomp\t_\t_\n7\twhether\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tads\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\tany\t_\tDET\tDT\t_\t13\tdep\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbarrage\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tads\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tmost\t_\tADJ\tJJS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tinvestment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirms\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tindividuals\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tran\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\ten\t_\tX\tIN\t_\t23\tcompound\t_\t_\n23\tmasse\t_\tX\tNN\t_\t18\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tmust\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\ttry\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\thardest\t_\tADJ\tRBS\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tprove\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n10\tthat\t_\tDET\tIN\t_\t13\tmark\t_\t_\n11\tadvertising\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\twork\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\taround\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAd\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tNotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tARNOLD\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tADVERTISING\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tEdward\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEskandarian\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformer\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tDella\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tFemina\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMcNamee\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n11\tWCRS/Boston\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tagreement\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprinciple\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tacquire\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tmajority\t_\tADJ\tNN\t_\t22\tamod\t_\t_\n22\tstake\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tArnold\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAdvertising\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tsmall\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tBoston\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tshop\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEskandarian\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tresigned\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n7\tDella\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tFemina\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tpost\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tbecomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tchairman\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tchief\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\texecutive\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tArnold\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tVerret\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tagency\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\texecutive\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tretain\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttitle\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tpresident\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSeparately\t_\tPROPN\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tMcDonald\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tOak\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBrook\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tIll.\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tArnold\t_\tPROPN\tNNP\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\thandle\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n17\testimated\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n18\t$\t_\tSYM\t$\t_\t23\tamod\t_\t_\n19\t4\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tcooperative\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tad\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\taccount\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n26\tHartford\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tConn.\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tarea\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccount\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\tauxpass\t_\t_\n5\thandled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tDella\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tFemina\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMcNamee\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n11\tWCRS\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEDUCATION\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tADS\t_\tNOUN\tNNPS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t142-page\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tad\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tsupplement\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n6\tBusiness\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tWeek\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tspecial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n11\tCorporate\t_\tPROPN\tJJ\t_\t14\tcompound\t_\t_\n12\tElite\t_\tPROPN\tNN\t_\t14\tcompound\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tissue\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tcalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbusiness\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tleaders\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tuse\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tclout\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\thelp\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n25\tsolve\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tnation\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\teducation\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcrisis\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsupplement\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlargest\t_\tADJ\tJJS\t_\t2\tappos\t_\t_\n6\tever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmagazine\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tads\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\t52\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tcorporate\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tadvertisers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tkicks\t_\tNOUN\tVBZ\t_\t11\tconj\t_\t_\n19\toff\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\ttwo-year\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tBusiness\t_\tPROPN\tNN\t_\t24\tcompound\t_\t_\n23\tWeek\t_\tPROPN\tNN\t_\t24\tcompound\t_\t_\n24\tinitiative\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n25\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\teducation\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tdistribute\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgross\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\trevenues\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsupplement\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tgrants\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tinnovative\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tteachers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tYou\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tknow\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t8\tdobj\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlaw\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\taverages\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tdo\t_\tVERB\tVBP\t_\t2\tparataxis\t_\t_\n11\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n12\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n13\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t6\tdep\t_\t_\n4\t1\t_\tX\tLS\t_\t6\tdep\t_\t_\n5\t-RRB-\t_\tPUNCT\t-RRB-\t_\t4\tpunct\t_\t_\n6\texplains\t_\tVERB\tVBZ\t_\t2\tdep\t_\t_\n7\twhy\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n10\tlike\t_\tADJ\tIN\t_\t14\tcase\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\twell\t_\tADV\tRB\t_\t14\tdiscourse\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tourselves\t_\tPRON\tPRP\t_\t6\tadvcl\t_\t_\n15\trather\t_\tADV\tRB\t_\t14\tcc\t_\t_\n16\tthan\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tBo\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tJackson\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n20\t2\t_\tX\tLS\t_\t22\tdep\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t20\tpunct\t_\t_\n22\tcautions\t_\tVERB\tVBZ\t_\t6\tconj\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\t's\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n26\tpossible\t_\tADJ\tJJ\t_\t22\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tdrown\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tlake\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tthat\t_\tPRON\tIN\t_\t33\tnsubj\t_\t_\n33\taverages\t_\tVERB\tNNS\t_\t31\tacl:relcl\t_\t_\n34\ttwo\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tfeet\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\tdeep\t_\tADV\tRB\t_\t35\tamod\t_\t_\n37\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n39\t3\t_\tX\tLS\t_\t41\tdep\t_\t_\n40\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n41\tpredicts\t_\tVERB\tVBZ\t_\t6\tconj\t_\t_\n42\tthat\t_\tSCONJ\tIN\t_\t50\tmark\t_\t_\n43\t10,000\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\tmonkeys\t_\tNOUN\tNNS\t_\t50\tnsubj\t_\t_\n45\tplaced\t_\tVERB\tVBN\t_\t44\tacl\t_\t_\n46\tbefore\t_\tADP\tIN\t_\t48\tcase\t_\t_\n47\t10,000\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\tpianos\t_\tNOUN\tNNS\t_\t45\tnmod\t_\t_\n49\twould\t_\tAUX\tMD\t_\t50\taux\t_\t_\n50\tproduce\t_\tVERB\tVB\t_\t41\tccomp\t_\t_\n51\t1,118\t_\tNUM\tCD\t_\t53\tnummod\t_\t_\n52\tpublishable\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n53\trock\t_\tNOUN\tNN\t_\t50\tdobj\t_\t_\n54\t'n'\t_\tCONJ\tCC\t_\t53\tcc\t_\t_\n55\troll\t_\tNOUN\tNN\t_\t56\tcompound\t_\t_\n56\ttunes\t_\tNOUN\tNNS\t_\t53\tconj\t_\t_\n57\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBaseball\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthat\t_\tDET\tWDT\t_\t4\tdet\t_\t_\n4\tgame\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tlong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thaul\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tquintessential\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tsport\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmean\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tmean\t_\tADJ\tNN\t_\t22\tamod\t_\t_\n21\tol'\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tlaw\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tcaught\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n24\tup\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tSan\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tFrancisco\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tGiants\t_\tPROPN\tNNPS\t_\t23\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tWorld\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tSeries\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n34\tlast\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tweekend\t_\tNOUN\tNN\t_\t23\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tteam\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tdumped\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\truns\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbushel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tChicago\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCubs\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tNational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tLeague\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tplayoffs\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n19\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tjust\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tone\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tgames\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\thome-team\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tOakland\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tA\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\t's\t_\tPROPN\tPOS\t_\t19\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tgang\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n35\tthat\t_\tPRON\tWDT\t_\t38\tnsubjpass\t_\t_\n36\thad\t_\tAUX\tVBD\t_\t38\taux\t_\t_\n37\tbeen\t_\tAUX\tVBN\t_\t38\tauxpass\t_\t_\n38\tdone\t_\tVERB\tVBN\t_\t34\tacl:relcl\t_\t_\n39\tunto\t_\tADP\tJJ\t_\t38\tadvcl\t_\t_\n40\tsimilarly\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n41\tby\t_\tADP\tIN\t_\t45\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n43\tLos\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n44\tAngeles\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tDodgers\t_\tPROPN\tNNPS\t_\t38\tnmod\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t45\tcc\t_\t_\n47\tOrel\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n48\tHershiser\t_\tPROPN\tNNP\t_\t45\tconj\t_\t_\n49\tin\t_\tADP\tIN\t_\t53\tcase\t_\t_\n50\tlast\t_\tADJ\tJJ\t_\t51\tamod\t_\t_\n51\tyear\t_\tNOUN\tNN\t_\t53\tnmod:poss\t_\t_\n52\t's\t_\tPART\tPOS\t_\t51\tcase\t_\t_\n53\ttournament\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMorever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tmuch\t_\tADJ\tRB\t_\t8\tnsubjpass\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdamage\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\taccomplished\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tA\t_\tPROPN\tDT\t_\t11\tcompound\t_\t_\n11\t's\t_\tPROPN\tPOS\t_\t8\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\thad\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n14\tsome\t_\tDET\tDT\t_\t13\tdobj\t_\t_\n15\tcatching\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n16\tup\t_\tADP\tRP\t_\t14\tdep\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdo\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tgame\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n5\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tcool\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tSunday\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tevening\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tland\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tperpetual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tautumn\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tlot\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t18\tnmod\t_\t_\n21\tcatching\t_\tVERB\tVBG\t_\t20\tamod\t_\t_\n22\tup\t_\tADP\tRP\t_\t20\tdep\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tdone\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n25\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tA\t_\tPROPN\tNN\t_\t29\tcompound\t_\t_\n28\t's\t_\tPROPN\tPOS\t_\t29\tcompound\t_\t_\n29\tcatcher\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tTerry\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tSteinbach\t_\tPROPN\tNNP\t_\t29\tappos\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\t2-0\t_\tNUM\tJJ\t_\t5\tnummod\t_\t_\n5\tpitch\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tRick\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tReuschel\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tinto\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tleft-field\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstands\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tinning\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\tfour\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tstretch\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n18\this\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tteam\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tlead\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t2-1\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tdecisive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\t5-1\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\twhere\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tstayed\t_\tVERB\tVBD\t_\t27\tacl:relcl\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t0\troot\t_\t_\n2\twhat\t_\tPRON\tWP\t_\t1\tdep\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tSteinbach\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tstruck\t_\tVERB\tVBN\t_\t1\tdep\t_\t_\n7\tjust\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tseven\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\thome\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\truns\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t130\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\tregular-season\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgames\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tbatted\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tseventh\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tposition\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tA\t_\tPROPN\tNN\t_\t26\tcompound\t_\t_\n25\t's\t_\tPROPN\tPOS\t_\t26\tcompound\t_\t_\n26\tlineup\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tget\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n5\tyour\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tpitch\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\ttake\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgood\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tswing\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tanything\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tcan\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\thappen\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n19\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\tlater\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tremarked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tSaturday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tnight\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\tquite\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t15\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tboys\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tgreen\t_\tNOUN\tJJ\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tgold\t_\tNOUN\tJJ\t_\t12\tconj\t_\t_\n15\tsalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\taway\t_\tADP\tRB\t_\t15\tcompound:prt\t_\t_\n17\tsuccesses\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tsalve\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpain\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n23\tpast\t_\tADJ\tJJ\t_\t29\tdep\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tno\t_\tDET\tDT\t_\t27\tneg\t_\t_\n27\tdoubt\t_\tNOUN\tNN\t_\t29\tdep\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tfuture\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tdroughts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMark\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMcGwire\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tred-haired\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tOakland\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tfirst\t_\tADJ\tRB\t_\t10\tamod\t_\t_\n10\tbaseman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\thits\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tfour\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tat\t_\tNOUN\tIN\t_\t18\tcompound\t_\t_\n18\tbats\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t12\tdobj\t_\t_\n22\tthan\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\t'd\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\thad\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n26\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tfive-game\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tDodger\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tseries\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\twhich\t_\tPRON\tWDT\t_\t35\tnmod\t_\t_\n33\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\t'd\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tgone\t_\tVERB\tVBN\t_\t30\tacl:relcl\t_\t_\n36\t1-for-17\t_\tNOUN\tJJ\t_\t35\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tA-men\t_\tNOUN\tJJ\t_\t18\tnsubj\t_\t_\n3\tbatting\t_\tVERB\tNN\t_\t2\tacl\t_\t_\n4\tNos.\t_\tNOUN\tNNP\t_\t3\tdobj\t_\t_\n5\t6\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n6\tthrough\t_\tADP\tIN\t_\t4\tamod\t_\t_\n7\t9\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\ta.k.a.\t_\tADJ\tIN\t_\t12\tdep\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\tbottom\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\torder\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n18\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tseven\t_\tNUM\tCD\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tteam\t_\tNOUN\tNN\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\t11\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\thits\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tscored\t_\tVERB\tVBD\t_\t18\tconj\t_\t_\n28\tfour\t_\tNUM\tCD\t_\t27\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n31\truns\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\t5-0\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tdecision\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tRight-hander\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n2\tDave\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStewart\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tGiants\t_\tPROPN\tNNPS\t_\t4\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tfive\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\thits\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\taccount\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tzero\t_\tNOUN\tCD\t_\t11\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tside\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tSaturday\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tledger\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tA\t_\tPROPN\tNN\t_\t8\tcompound\t_\t_\n6\t's\t_\tPROPN\tPOS\t_\t8\tcompound\t_\t_\n7\twinningest\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpitcher\t_\tNOUN\tNN\t_\t28\tcsubj\t_\t_\n9\tduring\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n11\tAmerican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tLeague\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tcampaign\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t21-9\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tmark\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tplus\t_\tADP\tCC\t_\t17\tamod\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\twins\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n22\tover\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tToronto\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tplayoffs\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tindicates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tmay\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\thave\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n32\tsome\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tevening\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\tup\t_\tADP\tRP\t_\t33\tdep\t_\t_\n35\tcoming\t_\tVERB\tVBG\t_\t33\tacl\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n37\tbut\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n38\twith\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tway\t_\tNOUN\tNN\t_\t50\tnmod\t_\t_\n41\this\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n42\tsplit-fingered\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tfastball\t_\tNOUN\tNN\t_\t45\tnsubj\t_\t_\n44\tis\t_\tAUX\tVBZ\t_\t45\taux\t_\t_\n45\tbehaving\t_\tVERB\tVBG\t_\t40\tacl:relcl\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t50\tpunct\t_\t_\n47\tthat\t_\tADP\tWDT\t_\t50\tnsubj\t_\t_\n48\tmight\t_\tAUX\tMD\t_\t50\taux\t_\t_\n49\tnot\t_\tPART\tRB\t_\t50\tneg\t_\t_\n50\tbe\t_\tVERB\tVB\t_\t28\tconj\t_\t_\n51\tthis\t_\tDET\tDT\t_\t52\tdet\t_\t_\n52\tweek\t_\tNOUN\tNN\t_\t50\tnmod:tmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsame\t_\tADJ\tJJ\t_\t3\tnsubj\t_\t_\n3\tgoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tMike\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMoore\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tanother\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tveteran\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n11\tovercame\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n12\tearly\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tstruggles\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tpermit\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tGiants\t_\tPROPN\tNNPS\t_\t15\tiobj\t_\t_\n18\tbut\t_\tADV\tCC\t_\t20\tadvmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\trun\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tfour\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\thits\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tseven\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tinnings\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tSunday\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcontest\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tEvery\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tguy\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tput\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n6\tout\t_\tADV\tRP\t_\t7\tadvmod\t_\t_\n7\tthere\t_\tADV\tEX\t_\t5\tadvmod\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t18\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbetter\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tsplit-finger\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tguy\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tbefore\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tmarveled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tGiant\t_\tADJ\tNNP\t_\t22\tamod\t_\t_\n20\tmanager\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tRoger\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCraig\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tex-hurler\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n6\t's\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n7\tone\t_\tNUM\tCD\t_\t4\tacl:relcl\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tleading\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tgurus\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfashionable\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdelivery\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tlooks\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n19\tlike\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfastball\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tuntil\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tdives\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n25\tbeneath\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tlunging\t_\tVERB\tVBG\t_\t28\tamod\t_\t_\n28\tbat\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tupshot\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdownshoot\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tA\t_\tPROPN\tNN\t_\t10\tcompound\t_\t_\n10\t's\t_\tPROPN\tPOS\t_\t11\tnsubj\t_\t_\n11\tgo\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n12\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFrancisco\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tCandlestick\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPark\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n18\ttonight\t_\tADV\tNN\t_\t11\tnmod:tmod\t_\t_\n19\tup\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tgames\t_\tNOUN\tNNS\t_\t11\tadvmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tnone\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tbest-of-seven\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tfest\t_\tNOUN\tJJS\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstat\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\treckon\t_\tVERB\tVB\t_\t2\tacl\t_\t_\n5\twith\t_\tADP\tIN\t_\t4\tadvcl\t_\t_\n6\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n9\tabout\t_\tADV\tIN\t_\t12\tadvmod\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n12\tfour\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tclubs\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n15\t29\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t39\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n20\ttook\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n21\t2-0\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tSeries\t_\tPROPN\tNN\t_\t23\tcompound\t_\t_\n23\tleads\t_\tNOUN\tVBZ\t_\t20\tdobj\t_\t_\n24\twent\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n25\ton\t_\tADP\tIN\t_\t24\tcompound:prt\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\twin\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tall\t_\tDET\tDT\t_\t28\tdet\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\taverage\t_\tNOUN\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsoothe\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tGiant\t_\tPROPN\tJJ\t_\t9\tcompound\t_\t_\n9\trooters\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tmight\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\thome\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfans\t_\tNOUN\tNNS\t_\t40\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tSeries\t_\tPROPN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tSubway\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\tCalled\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tBART\t_\tPROPN\tNNP\t_\t14\txcomp\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n17\tthat\t_\tPRON\tDT\t_\t21\tnsubj\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tbetter\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tname\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpublic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tconveyance\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n28\tDesire\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n31\tdo\t_\tAUX\tVBP\t_\t34\taux\t_\t_\n32\tn't\t_\tPART\tRB\t_\t34\tneg\t_\t_\n33\tyou\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n34\tthink\t_\tVERB\tVB\t_\t21\tparataxis\t_\t_\n35\t?\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n36\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n37\twould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n38\thave\t_\tAUX\tVB\t_\t40\taux\t_\t_\n39\tbeen\t_\tVERB\tVBN\t_\t40\tcop\t_\t_\n40\tecstatic\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n41\tover\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tproceedings\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n45\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n46\tthey\t_\tPRON\tPRP\t_\t47\tnsubj\t_\t_\n47\tobserve\t_\tVERB\tVBP\t_\t3\tconj\t_\t_\n48\tthem\t_\tPRON\tPRP\t_\t47\tdobj\t_\t_\n49\tin\t_\tADP\tIN\t_\t51\tcase\t_\t_\n50\trelative\t_\tADJ\tJJ\t_\t51\tamod\t_\t_\n51\tcalm\t_\tNOUN\tNN\t_\t47\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPartisans\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttwo\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tcombatants\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\tsat\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tside\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tside\t_\tNOUN\tNN\t_\t6\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t49,000-plus\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tseats\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tOakland\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tColiseum\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n19\twhile\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tcheered\t_\tVERB\tVBD\t_\t30\tadvcl\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tfavorites\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n25\tbooed\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\topposition\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\thostilities\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\tadvanced\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n31\tno\t_\tDET\tDT\t_\t32\tneg\t_\t_\n32\tfurther\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n34\tat\t_\tADP\tIN\t_\t30\tadvmod\t_\t_\n35\tleast\t_\tADJ\tJJS\t_\t34\tmwe\t_\t_\n36\tas\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n37\tfar\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n38\tas\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tI\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\tcould\t_\tAUX\tMD\t_\t41\taux\t_\t_\n41\tsee\t_\tVERB\tVB\t_\t34\tadvcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfolks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tup\t_\tADP\tIN\t_\t5\tcompound:prt\t_\t_\n7\twearing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n8\tcaps\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tbearing\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcolors\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\temblems\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tboth\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tteams\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t'm\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tGiants\t_\tPROPN\tNNPS\t_\t0\troot\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tlost\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tlove\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\t'em\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\tboth\t_\tDET\tDT\t_\t3\tdet\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t'm\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\trooting\t_\tVERB\tVBG\t_\t3\tacl:relcl\t_\t_\n7\tfor\t_\tADP\tIN\t_\t6\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tSeries\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tgo\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n14\tseven\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tgames\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tDavid\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tWilliams\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tSacramento\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tseptuagenarian\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tColiseum\t_\tNOUN\tNNP\t_\t18\tnmod\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tSunday\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tgo\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tabove\t_\tADJ\tJJ\t_\t3\tnsubj\t_\t_\n3\trepresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttriumph\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\teither\t_\tDET\tCC\t_\t8\tcc:preconj\t_\t_\n8\tapathy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcivility\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tchoose\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tbelieve\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlatter\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\talthough\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\tprobably\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsprings\t_\tVERB\tVBZ\t_\t2\tadvcl\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tfact\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n18\tjust\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tabout\t_\tADV\tIN\t_\t20\tadvmod\t_\t_\n20\teveryone\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n21\tout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\there\t_\tADV\tRB\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tincluding\t_\tVERB\tVBG\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tA\t_\tPROPN\tNN\t_\t27\tcompound\t_\t_\n27\t's\t_\tPROPN\tPOS\t_\t20\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tGiants\t_\tPROPN\tNNP\t_\t27\tconj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n31\tis\t_\tVERB\tVBZ\t_\t35\tcop\t_\t_\n32\toriginally\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tsomewhere\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\telse\t_\tADV\tRB\t_\t16\tccomp\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSuffice\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t1\tdobj\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tsay\t_\tVERB\tVB\t_\t1\tadvcl\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n7\tthis\t_\tPRON\tDT\t_\t13\tnsubj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tYankees-Mets\t_\tADJ\tNNP\t_\t13\tamod\t_\t_\n13\tseries\t_\tNOUN\tNN\t_\t34\tadvcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tone\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n17\tbetween\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tChicago\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCubs\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tWhite\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tSox\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t29\tpunct\t_\t_\n25\they\t_\tINTJ\tRB\t_\t29\tdiscourse\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n28\t's\t_\tVERB\tVBZ\t_\t29\tcop\t_\t_\n29\tpossible\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t29\tpunct\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n32\tyou\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n33\t'd\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\tneed\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n35\tuniformed\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tpolice\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n37\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tevery\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tother\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tseat\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n41\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n42\tseparate\t_\tVERB\tJJ\t_\t34\tadvcl\t_\t_\n43\topposing\t_\tVERB\tVBG\t_\t44\tamod\t_\t_\n44\tfans\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n47\tonly\t_\tADV\tRB\t_\t49\tadvmod\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tsuicidal\t_\tADJ\tJJ\t_\t51\tnsubj\t_\t_\n50\twould\t_\tAUX\tMD\t_\t51\taux\t_\t_\n51\tbifurcate\t_\tVERB\tVB\t_\t34\tconj\t_\t_\n52\ttheir\t_\tPRON\tPRP$\t_\t53\tnmod:poss\t_\t_\n53\tbonnets\t_\tNOUN\tNNS\t_\t51\tdobj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAnyway\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tA\t_\tPROPN\tNN\t_\t5\tcompound\t_\t_\n5\t's\t_\tPROPN\tPOS\t_\t6\tnsubj\t_\t_\n6\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t6\tiobj\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tlot\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\theroes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\troot\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tfor\t_\tADP\tIN\t_\t13\tadvcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\topening\t_\tADJ\tNN\t_\t4\tamod\t_\t_\n4\tgame\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tbesides\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSteinbach\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tStewart\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tthere\t_\tPRON\tEX\t_\t12\texpl\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tWalt\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tWeiss\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\ttwiggy-looking\t_\tADJ\tNN\t_\t20\tamod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\tsecond-year\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tshortstop\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n21\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n22\thad\t_\tAUX\tVBD\t_\t23\taux\t_\t_\n23\tlost\t_\tVERB\tVBN\t_\t20\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tcouple\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmonths\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tseason\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n31\tknee\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsurgery\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\tflawless\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tafield\t_\tADV\tNN\t_\t3\tadvmod\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tditto\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tgame\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tmoved\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\trunner\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\talong\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n18\tA\t_\tPROPN\tNN\t_\t22\tcompound\t_\t_\n19\t's\t_\tPROPN\tPOS\t_\t22\tcompound\t_\t_\n20\tthree-run\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tsecond\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tinning\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n25\thomered\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\tteam\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tfinal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\ttally\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tdep\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\treputation\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n5\tamong\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tEast\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tBay\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBashers\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\thit\t_\tVERB\tVBD\t_\t27\tadvcl\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n15\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tcareer\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\thome\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\trun\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tseason\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tfan\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n24\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n25\tcaught\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t25\tdobj\t_\t_\n27\tagreed\t_\tVERB\tVBD\t_\t2\tdep\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tturn\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tball\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tover\t_\tADP\tIN\t_\t29\tcompound:prt\t_\t_\n33\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n34\thim\t_\tPRON\tPRP\t_\t29\tnmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\treturn\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n37\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tan\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tautograph\t_\tNOUN\tVBP\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tautograph\t_\tNOUN\tVB\t_\t0\troot\t_\t_\n4\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tpower-hitter\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tMcGwire\t_\tNOUN\tNNP\t_\t3\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tA\t_\tPROPN\tNN\t_\t4\tcompound\t_\t_\n3\t's\t_\tPROPN\tPOS\t_\t4\tcompound\t_\t_\n4\tco-hero\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsecond\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgame\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tRickey\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tHenderson\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n14\texemplifies\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\thot\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tside\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\thot-cold\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tequation\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsmoked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tToronto\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplayoffs\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tsix\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\thits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tseven\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\twalks\t_\tNOUN\tVBZ\t_\t9\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\teight\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tstolen\t_\tVERB\tVBN\t_\t16\tamod\t_\t_\n16\tbases\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t22\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tamod\t_\t_\n20\tbats\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n23\tcontinued\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n24\tthat\t_\tPRON\tIN\t_\t23\tdobj\t_\t_\n25\tby\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tgoing\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n27\t3-for-3\t_\tADJ\tNN\t_\t26\tadvmod\t_\t_\n28\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tplate\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tSunday\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n33\talong\t_\tADP\tIN\t_\t26\tcc\t_\t_\n34\twith\t_\tADP\tIN\t_\t33\tdep\t_\t_\n35\twalking\t_\tVERB\tNN\t_\t26\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tstealing\t_\tVERB\tVBG\t_\t35\tconj\t_\t_\n38\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tbase\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n41\tscoring\t_\tVERB\tVBG\t_\t35\tconj\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\trun\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tgroove\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsee\t_\tVERB\tVBP\t_\t17\tccomp\t_\t_\n11\tevery\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tball\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\ttremendously\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tlectured\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcold\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tguys\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tset\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tWill\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tClark\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tKevin\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMitchell\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tMatt\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tWilliams\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tGiants\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\t3-4-5\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\thitters\t_\tNOUN\tNNS\t_\t9\tappos\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcombined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\t25\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\thits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tsix\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\thome\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\truns\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\t24\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\truns\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n13\tbatted\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tin\t_\tADP\tIN\t_\t13\tcompound:prt\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfive\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tgames\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n19\tagainst\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tCubs\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tcollective\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\t5-for-24\t_\tNUM\tNN\t_\t2\tdobj\t_\t_\n6\there\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tzero\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\thomers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tribbies\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\t's\t_\tPART\tVBZ\t_\t5\tdep\t_\t_\n3\tthat\t_\tDET\tIN\t_\t5\tdet\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tset\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnumbers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tas\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmuch\t_\tADJ\tRB\t_\t5\tdep\t_\t_\n11\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tanything\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\telse\t_\tADV\tRB\t_\t12\tamod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tthat\t_\tPRON\tIN\t_\t16\tnsubj\t_\t_\n16\tgives\t_\tVERB\tVBZ\t_\t5\tdep\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tGiants\t_\tPROPN\tNNP\t_\t16\tiobj\t_\t_\n19\thope\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tSeries\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tgames\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tcome\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tbelieve\t_\tVERB\tVBP\t_\t11\tccomp\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlaw\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\taverages\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tdeclared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tSan\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n13\tFrancisco\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\tbatting\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tcoach\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tDusty\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tBaker\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n18\tafter\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tgame\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\trather\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tsee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tso-so\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thitter\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\thot\t_\tADJ\tJJ\t_\t8\tacl:relcl\t_\t_\n12\tcome\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tside\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tthan\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\thitter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n22\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\t's\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tcold\t_\tADJ\tJJ\t_\t21\tacl:relcl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\told\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tDodger\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tslugger\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twisely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tno\t_\tDET\tDT\t_\t9\tneg\t_\t_\n9\tprediction\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tabout\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n12\tgood\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttimes\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\treturn\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tside\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tgoes\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tnever\t_\tADV\tRB\t_\t8\tneg\t_\t_\n8\tknow\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t'll\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tget\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t12\tdobj\t_\t_\n14\tback\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tbaseball\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNCR\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tdrop\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthird-quarter\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tincome\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tciting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n14\tintense\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcompetition\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tcaused\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n19\tgross\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tprofit\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmargins\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdip\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincome\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t93.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n13\t103.1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\troughly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t20\tdobj\t_\t_\n18\tanalysts\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n19\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n20\texpected\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tper-share\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t2\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t1.23\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t1.26\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tcontinued\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n25\tbuy-back\t_\tADJ\tNN\t_\t26\tamod\t_\t_\n26\tplan\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAverage\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tshares\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\toutstanding\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\t75.8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t82.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t1\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t1.39\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t1.41\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmaker\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tsells\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\thalf\t_\tNOUN\tPDT\t_\t11\tnummod\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tgoods\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\toutside\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\talso\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tnegative\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\teffect\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tstronger\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tdollar\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n28\tadversely\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\taffect\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n31\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n32\tfourth-quarter\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tperformance\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n36\tmake\t_\tVERB\tVB\t_\t29\tconj\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n38\tdifficult\t_\tADJ\tJJ\t_\t41\tdep\t_\t_\n39\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tbetter\t_\tVERB\tJJR\t_\t36\txcomp\t_\t_\n42\t1988\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n43\tresults\t_\tNOUN\tNNS\t_\t41\tdobj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tNCR\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tboth\t_\tDET\tCC\t_\t4\tdep\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\toverseas\t_\tADV\tRB\t_\t5\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\treflecting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tworld-wide\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsoftening\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcomputer\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\torders\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tshowed\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgains\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n16\tduring\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlatest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\testimate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthose\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tgains\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\t12\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t10\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n9\t13\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpart\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t14\tnmod\t_\t_\n17\tcoming\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tlarge\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\torders\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tplaced\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tfew\t_\tADJ\tJJ\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tNCR\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcustomers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tgeneral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tslowing\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcomputer\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tindustry\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n12\tNCR\t_\tPROPN\tNNP\t_\t26\tnsubjpass\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tsells\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n16\tautomated\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n17\tteller\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmachines\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tcomputerized\t_\tVERB\tJJ\t_\t22\tamod\t_\t_\n21\tcash\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tregisters\t_\tNOUN\tVBZ\t_\t18\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t26\tauxpass\t_\t_\n25\talso\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\taffected\t_\tVERB\tVBN\t_\t47\tccomp\t_\t_\n27\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n29\tretail\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tfinancial\t_\tADJ\tJJ\t_\t29\tconj\t_\t_\n32\tsectors\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n35\tareas\t_\tNOUN\tNNS\t_\t32\tdep\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\teconomy\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\tthat\t_\tPRON\tWDT\t_\t44\tnsubj\t_\t_\n40\thave\t_\tAUX\tVBP\t_\t44\taux\t_\t_\n41\tgenerally\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n42\tnot\t_\tPART\tRB\t_\t44\tneg\t_\t_\n43\tbeen\t_\tVERB\tVBN\t_\t44\tcop\t_\t_\n44\trobust\t_\tADJ\tJJ\t_\t35\tacl:relcl\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t47\tpunct\t_\t_\n47\tnotes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n48\tSanjiv\t_\tPROPN\tNNP\t_\t50\tcompound\t_\t_\n49\tG.\t_\tPROPN\tNNP\t_\t50\tcompound\t_\t_\n50\tHingorani\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n51\t,\t_\tPUNCT\t,\t_\t50\tpunct\t_\t_\n52\tan\t_\tDET\tDT\t_\t53\tdet\t_\t_\n53\tanalyst\t_\tNOUN\tNN\t_\t50\tappos\t_\t_\n54\tfor\t_\tADP\tIN\t_\t57\tcase\t_\t_\n55\tSalomon\t_\tPROPN\tNNP\t_\t57\tcompound\t_\t_\n56\tBrothers\t_\tPROPN\tNNPS\t_\t57\tcompound\t_\t_\n57\tInc\t_\tPROPN\tNNP\t_\t53\tnmod\t_\t_\n58\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfactors\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tcombined\t_\tVERB\tVBN\t_\t8\tcase\t_\t_\n5\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tshould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tnegatively\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\taffect\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcurrent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tresults\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\tNCR\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tfourth\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tNCR\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t149.6\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.85\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\trevenue\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t1.8\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHingorani\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tlowered\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tfull-year\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\testimates\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1989\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t5.35\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t5.50\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprojections\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tslashed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n7\t6.03\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n11\t6.20\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tNCR\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tincome\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t439.3\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t5.33\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n21\t5.99\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\trevenue\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t9\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n15\t264.6\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t3.40\t_\tNUM\tCD\t_\t14\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n26\t289.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t3.49\t_\tNUM\tCD\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tRevenues\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t1\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t4.17\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t4.19\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tJJ\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tNCR\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t75\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tclose\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t57\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tConcerning\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n3\tSept.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tarticle\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tFirms\t_\tPROPN\tNNPS\t_\t10\tnsubj\t_\t_\n10\tLink\t_\tVERB\tNNP\t_\t5\tdep\t_\t_\n11\tAnalysts\t_\tPROPN\tNNS\t_\t13\tnmod:poss\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tPay\t_\tNOUN\tVB\t_\t10\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tPerformance\t_\tNOUN\tNNP\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n18\tI\t_\tPRON\tPRP\t_\t20\tnsubjpass\t_\t_\n19\t'm\t_\tVERB\tVBP\t_\t20\tauxpass\t_\t_\n20\tdelighted\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n22\tWall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStreet\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t26\taux\t_\t_\n25\tfinally\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\ttuning\t_\tVERB\tNN\t_\t20\tccomp\t_\t_\n27\tin\t_\tADP\tIN\t_\t26\tcompound:prt\t_\t_\n28\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n30\thard\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n32\tcold\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tfacts\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\treal\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tworking\t_\tNOUN\tJJ\t_\t38\tcompound\t_\t_\n38\tworld\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tserious\t_\tADJ\tJJ\t_\t10\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\twhy\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n10\tlimit\t_\tVERB\tNN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpractice\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tpoor\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tmaligned\t_\tVERB\tJJ\t_\t18\tamod\t_\t_\n18\tanalysts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\twhose\t_\tPRON\tWP$\t_\t20\tnmod:poss\t_\t_\n20\tability\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tsee\t_\tVERB\tVB\t_\t20\tdep\t_\t_\n23\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tfuture\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n27\tfragile\t_\tADJ\tJJ\t_\t18\tacl:relcl\t_\t_\n28\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tbest\t_\tADV\tJJS\t_\t27\tnmod\t_\t_\n30\t?\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tnot\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\textend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsame\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tharsh\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstandards\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tforce\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tpay\t_\tVERB\tNN\t_\t3\tconj\t_\t_\n15\tbrokers\t_\tNOUN\tNNS\t_\t14\tiobj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbase\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsalary\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tannual\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tbonus\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tbased\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\ton\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n24\thow\t_\tADV\tWRB\t_\t25\tadvmod\t_\t_\n25\tmuch\t_\tADJ\tJJ\t_\t26\tadvmod\t_\t_\n26\tmoney\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n27\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tmade\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ttheir\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n31\tclients\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tduring\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tyear\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\tshould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tstop\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlot\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\taccount-churning\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tproduce\t_\tVERB\tVBP\t_\t3\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tdriven\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tprofessional\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tconcern\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tcareful\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tthought\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsense\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t8\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n5\tthat\t_\tPRON\tIN\t_\t8\tnsubj\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnovelty\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tPhyllis\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tKyle\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStephenson\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\tNewport\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tNews\t_\tPROPN\tNNP\t_\t3\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tVa\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSteve\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tClark\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tShearson\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tLehman\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tHutton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\ttrader\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\twork\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t5\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\ta.m.\t_\tNOUN\tRB\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\thalf\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t22\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n25\tusual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\tMonday\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tmorning\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n28\tstrategy\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmeeting\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJefferies\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tJ.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tFrancis\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPalamara\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\tdid\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\treach\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\toffice\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tuntil\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t5:30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\ta.m.\t_\tNOUN\tRB\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\tthen\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n20\the\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n21\thad\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n22\tbeen\t_\tVERB\tVBN\t_\t29\tcop\t_\t_\n23\tup\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n24\tmost\t_\tADV\tJJS\t_\t29\tnmod:tmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tnight\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\thome\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n4\tcalls\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tall\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnight\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n7\tlong\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tStates\t_\tPROPN\tNNPS\t_\t3\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\twoken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tevery\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thour\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\t1:30\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\t2:30\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t3:30\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\t4:30\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tpossible\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\topportunities\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tbut\t_\tCONJ\tIN\t_\t3\tcc\t_\t_\n11\tnobody\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\twants\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tstick\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tchin\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t12\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tLondon\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsecurities\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\ttraders\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tstarted\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tnervously\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsmall\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\thours\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tlunchtime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tselling\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnear-panic\t_\tADJ\tNN\t_\t9\tamod\t_\t_\n9\tfever\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tas\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tday\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tfrantic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\tWall\t_\tPROPN\tNN\t_\t11\tcompound\t_\t_\n10\tStreet-inspired\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\trally\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tCity\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tbreathed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsigh\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\trelief\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSo\t_\tADP\tIN\t_\t3\tdep\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\trooms\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tLondon\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tfinancial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdistrict\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\twake\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tLondon\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tespecially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tvulnerable\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tbefore\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\topening\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tall\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teyes\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tearly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tTokyo\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tclue\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t28\tcase\t_\t_\n22\tto\t_\tADP\tTO\t_\t28\tmark\t_\t_\n23\thow\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n24\twidespread\t_\tADJ\tJJ\t_\t28\tdep\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tfallout\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\tmight\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tbe\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tofficially\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tgot\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\tunder\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tway\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t9\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ta.m.\t_\tNOUN\tRB\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tnews\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAsia\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tin\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmixed\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsignals\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tLondon\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\toff\t_\tADJ\tRP\t_\t3\tadvmod\t_\t_\n5\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tsignificant\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tless-than-alarming\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n9\t1.8\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t4\tdep\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthin\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tvolume\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n15\tHong\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tKong\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tdeclined\t_\tVERB\tVBD\t_\t3\tparataxis\t_\t_\n19\t6.5\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\torderly\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tJefferies\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttrading\t_\tVERB\tNN\t_\t5\tamod\t_\t_\n5\troom\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tFinsbury\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCircus\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstately\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcircle\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tedge\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfinancial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdistrict\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\tdesktop\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tscreens\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tdisplayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tLondon\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tmajor\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tbarometer\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n31\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n32\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n33\tFinancial\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n34\tTimes-Stock\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n35\tExchange\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n36\t100\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n37\tShare\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tIndex\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tRed\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tfigures\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tscreens\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tfalling\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\tblue\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfigures\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\trising\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t6\tparataxis\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRight\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\taway\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\treds\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\toutnumbered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tblues\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\t80\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t20\t_\tNUM\tCD\t_\t6\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\topened\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t2076.8\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\toff\t_\tADP\tRB\t_\t23\tcase\t_\t_\n22\t157.1\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tpoints\t_\tNOUN\tNNS\t_\t17\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n26\t7\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsee\t_\tVERB\tVBP\t_\t15\tccomp\t_\t_\n4\tconcern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tsee\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n11\tany\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpanic\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPalamara\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n20\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n22\tgood-humored\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tnative\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\truns\t_\tVERB\tVBZ\t_\t25\tacl:relcl\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\t15-trader\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\toffice\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tJefferies\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\toffice\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbranch\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tLos\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tAngeles-based\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tplayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tconservatively\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tseeking\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tavoid\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\trisk\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsort\t_\tNOUN\tNN\t_\t17\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\thave\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbig\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tposition\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tDavid\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSmith\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\theads\t_\tVERB\tVBZ\t_\t19\tacl:relcl\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tall\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tnon-U.S.\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstocks\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trun\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tvery\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\ttight\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbook\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tJefferies\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tspent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t2\tdobj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tenergies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmorning\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\ttrying\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tmatch\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tbuyers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tsellers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n18\tthere\t_\tPRON\tEX\t_\t19\texpl\t_\t_\n19\twere\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n20\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n21\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tbuyers\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tAll\t_\tDET\tPDT\t_\t5\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\tScottish\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tNewcastle\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tB.A.T\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tDRG\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n16\tgetting\t_\tAUX\tVBG\t_\t19\tauxpass\t_\t_\n17\tpretty\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\twell\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tpasted\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmorning\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSmith\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tSeconds\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n2\tlater\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\t7,500-share\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\tsell\t_\tNOUN\tVB\t_\t9\tcompound\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\torder\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tScottish\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tNewcastle\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tIN\t_\t14\tcompound:prt\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t15\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tminutes\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\ttrader\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n11\tnext\t_\tADJ\tJJ\t_\t10\tadvmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSmith\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tno-smoking\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tarea\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\thave\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcigarette\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tscreens\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tonly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\tforlorn\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tblue\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfigures\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tremained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\trecovered\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tpoints\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n22\toff\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tabout\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\t140\t_\tNUM\tCD\t_\t22\tnmod:npmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tBecause\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tTokyo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tcollapse\t_\tVERB\tNN\t_\t8\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tlet\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n9\t's\t_\tPART\tPOS\t_\t10\tnsubj\t_\t_\n10\tpick\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n11\tup\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tlittle\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tSmith\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttargeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t7,500\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tReuters\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n8\tpunched\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbutton\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tcall\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tscreen\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdealers\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tquotes\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tvivid\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tyellow\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tfigures\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t845\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpence\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t13.27\t_\tNUM\tCD\t_\t11\tappos\t_\t_\n16\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n18\tMr.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSmith\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\ttraders\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tstarted\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n23\tputting\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n24\tout\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\tfeelers\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsensed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tserious\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbuyer\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tdominated\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tselling\t_\tNOUN\tVBG\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tquotes\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\timmediately\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tjumped\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t850\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tpence\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\twant\t_\tVERB\tVBP\t_\t9\tadvcl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tbuy\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\trun\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tyou\t_\tPRON\tPRP\t_\t9\tnmod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tkeep\t_\tVERB\tVBP\t_\t9\tparataxis\t_\t_\n15\tchanging\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSmith\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tvery\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tfrustrating\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\ttemporarily\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tabandoned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tsearch\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tReuters\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n7\t4:30\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\ta.m.\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSmith\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tfielded\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcall\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tYork\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tcustomer\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\twanting\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\topinion\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tBritish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tstock\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\twhich\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n34\thad\t_\tAUX\tVBD\t_\t36\taux\t_\t_\n35\tbeen\t_\tAUX\tVBN\t_\t36\taux\t_\t_\n36\thaving\t_\tVERB\tVBG\t_\t31\tacl:relcl\t_\t_\n37\ttroubles\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tits\t_\tPRON\tPRP$\t_\t40\tnmod:poss\t_\t_\n40\town\t_\tADJ\tJJ\t_\t37\tnmod\t_\t_\n41\teven\t_\tADV\tRB\t_\t48\tadvmod\t_\t_\n42\tbefore\t_\tADP\tIN\t_\t48\tcase\t_\t_\n43\tFriday\t_\tPROPN\tNNP\t_\t48\tnmod:poss\t_\t_\n44\t's\t_\tPART\tPOS\t_\t43\tcase\t_\t_\n45\tNew\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n46\tYork\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n47\tmarket\t_\tNOUN\tNN\t_\t48\tcompound\t_\t_\n48\tbreak\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tFundamentally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tdangerous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSmith\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\talmost\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\twhisper\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n17\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\tfundamentally\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tweak\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n21\t...\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n22\tfairly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tvulnerable\t_\tADJ\tJJ\t_\t20\tdep\t_\t_\n24\tstill\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t...\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n26\textremely\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tdangerously\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tpoised\t_\tVERB\tVBN\t_\t20\tdep\t_\t_\n29\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\t're\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tturbulence\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t...\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\tright\t_\tADJ\tRB\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tmidday\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tLondon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tfull\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tretreat\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tfalling\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n5\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstone\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tDanny\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tLinger\t_\tPROPN\tVB\t_\t10\tnsubj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tpit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttrader\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n17\twho\t_\tPRON\tWP\t_\t19\tnsubj\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tstanding\t_\tVERB\tVBG\t_\t16\tacl:relcl\t_\t_\n20\toutside\t_\tADP\tIN\t_\t26\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n22\tLondon\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n23\tInternational\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tFinancial\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tFutures\t_\tPROPN\tNNPS\t_\t26\tcompound\t_\t_\n26\tExchange\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOnly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\thalf\t_\tNOUN\tPDT\t_\t6\tnummod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tusual\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tlunchtime\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcrowd\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tgathered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\ttony\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tCorney\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tBarrow\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\twine\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbar\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n16\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tOld\t_\tPROPN\tJJ\t_\t19\tcompound\t_\t_\n18\tBroad\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tStreet\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tnearby\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tConversation\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\tsubdued\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tmost\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tpatrons\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\twatched\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tlatest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tstatistics\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttelevision\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\t12:49\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tp.m.\t_\tNOUN\tRB\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tlow\t_\tADJ\tJJ\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\t2029.7\t_\tNUM\tCD\t_\t9\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\toff\t_\tADP\tRB\t_\t15\tcase\t_\t_\n14\t204.2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpoints\t_\tNOUN\tNNS\t_\t9\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tFrance\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t33\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlimit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n8\toff\t_\tADP\tRB\t_\t12\tcase\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tleast\t_\tADJ\tJJS\t_\t11\tnmod:npmod\t_\t_\n11\t10\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t16\tdep\t_\t_\n13\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tyou\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tcalculate\t_\tVERB\tVB\t_\t3\tparataxis\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tindex\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tdobj\t_\t_\n21\tyou\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tcould\t_\tAUX\tMD\t_\t16\tdep\t_\t_\n23\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n26\tMr.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tClark\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tShearson\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\ttrader\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tearly\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tafternoon\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tSpain\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tnmod:npmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tadvmod\t_\t_\n8\tsuspended\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tSweden\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\t's\t_\tVERB\tPOS\t_\t3\tparataxis\t_\t_\n12\tdown\t_\tADV\tRP\t_\t11\tadvmod\t_\t_\n13\t8\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tNorway\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n17\t11\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t11\tparataxis\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tbadly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tdamaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n2\t2:30\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tp.m.\t_\tNOUN\tRB\t_\t11\tnsubj\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\topening\t_\tVERB\tNN\t_\t9\tamod\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n11\tneared\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tShearson\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\ttraders\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tsalesmen\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\ttraded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tbets\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\ton\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\thow\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n21\tlow\t_\tADJ\tJJ\t_\t27\tadvmod\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\topen\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcenter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfloor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\ttrader\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tRoger\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStreeter\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcolleagues\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tscrambled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttelephones\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tas\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tsoon\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n22\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tYork\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\topened\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n29\tplummeting\t_\tVERB\tVBG\t_\t27\tparataxis\t_\t_\n30\tmore\t_\tADV\tJJR\t_\t32\tadvmod\t_\t_\n31\tthan\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\t60\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tpoints\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tfirst\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tfew\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tminutes\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\topportunity\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tcreated\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsell-off\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\ttraders\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tdumped\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n6\tAmerican\t_\tPROPN\tJJ\t_\t8\tcompound\t_\t_\n7\tDepositary\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tReceipts\t_\tPROPN\tNNPS\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tJaguar\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPLC\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tStreeter\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\ttrader\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tSam\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tRuiz\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\tbought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tresell\t_\tVERB\tVB\t_\t19\tadvcl\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.K\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\there\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\tstill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\texpect\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tFord\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tMotor\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tGeneral\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tMotors\t_\tPROPN\tNNPS\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbid\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJaguar\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSuddenly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tafter\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tabout\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n5\t45\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\trallied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tMMI\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgone\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n6\tbetter\t_\tADV\tRB\t_\t5\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n12\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tabout\t_\tADV\tIN\t_\t16\tadvmod\t_\t_\n14\t3:15\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tLondon\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tMajor\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tMarkets\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tIndex\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tcontract\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\tsuddenly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tindicated\t_\tVERB\tVBD\t_\t9\tdep\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tturnabout\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tstrengthened\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tLondon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\troom\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twild\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tscreens\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tposted\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n7\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tever-narrowing\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tloss\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tWall\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStreet\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tminutes\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n5\tlater\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tsuddenly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tRally\t_\tNOUN\tNNP\t_\t9\tdep\t_\t_\n3\t!\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n4\tRally\t_\tNOUN\tNNP\t_\t2\tdep\t_\t_\n5\t!\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n6\tRally\t_\tNOUN\tNNP\t_\t2\tdep\t_\t_\n7\t!\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tShearson\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tAndy\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tRosen\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tselling\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tJaguar\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tpanic\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbuying\t_\tNOUN\tVBG\t_\t0\troot\t_\t_\n6\t!\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tLondon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trallied\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tnsubj\t_\t_\n8\twondered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\twhether\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tweekend\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tworrying\t_\tVERB\tVBG\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tjitters\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t19\tcop\t_\t_\n18\tworth\t_\tADJ\tIN\t_\t19\tcase\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t8\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tindex\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t2163.4\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\thigh\t_\tNOUN\tJJ\t_\t6\tappos\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tday\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\toff\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t70.5\t_\tNUM\tCD\t_\t4\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t3.3\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t15\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAmbassador\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNitze\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tstatement\t_\tNOUN\tNN\t_\t53\tnsubj\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tNotable\t_\tPROPN\tJJ\t_\t5\tdep\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tQuotable\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tSept.\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n12\t20\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n16\tIf\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tyou\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\thave\t_\tVERB\tVBP\t_\t40\tadvcl\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpeople\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\tworking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tyou\t_\tPRON\tPRP\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n26\tevery\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tbad\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tthing\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n29\tthat\t_\tPRON\tWDT\t_\t30\tnsubj\t_\t_\n30\thas\t_\tVERB\tVBZ\t_\t28\tacl:relcl\t_\t_\n31\tone\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tchance\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t32\tnmod\t_\t_\n36\tof\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n37\tgoing\t_\tVERB\tVBG\t_\t32\tacl\t_\t_\n38\twrong\t_\tNOUN\tJJ\t_\t37\tadvmod\t_\t_\n39\twill\t_\tAUX\tMD\t_\t40\taux\t_\t_\n40\tgo\t_\tVERB\tVB\t_\t5\tdep\t_\t_\n41\twrong\t_\tADJ\tJJ\t_\t40\tadvmod\t_\t_\n42\tat\t_\tADP\tIN\t_\t46\tadvmod\t_\t_\n43\tleast\t_\tADJ\tJJS\t_\t42\tmwe\t_\t_\n44\tonce\t_\tADP\tRB\t_\t46\tcase\t_\t_\n45\ta\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tyear\t_\tNOUN\tNN\t_\t40\tadvmod\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n49\tis\t_\tVERB\tVBZ\t_\t53\tcop\t_\t_\n50\ta\t_\tDET\tDT\t_\t53\tdet\t_\t_\n51\tpretty\t_\tADV\tRB\t_\t52\tadvmod\t_\t_\n52\tnegative\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n53\tway\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n54\tof\t_\tSCONJ\tIN\t_\t55\tmark\t_\t_\n55\tlooking\t_\tVERB\tVBG\t_\t53\tacl\t_\t_\n56\tat\t_\tADP\tIN\t_\t57\tcase\t_\t_\n57\tthings\t_\tNOUN\tNNS\t_\t55\tnmod\t_\t_\n58\t.\t_\tPUNCT\t.\t_\t53\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n2\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tas\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\tfair\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsay\t_\tVERB\tVB\t_\t6\tdep\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n10\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t34\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpeople\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tworking\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tyou\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n20\tevery\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tgood\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tthing\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\thas\t_\tVERB\tVBZ\t_\t22\tacl:relcl\t_\t_\n25\tone\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tchance\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n30\tof\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n31\tgoing\t_\tVERB\tVBG\t_\t26\tacl\t_\t_\n32\tright\t_\tNOUN\tRB\t_\t31\tadvmod\t_\t_\n33\twill\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\tgo\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n35\tright\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n36\tat\t_\tADP\tIN\t_\t40\tadvmod\t_\t_\n37\tleast\t_\tADJ\tJJS\t_\t36\tmwe\t_\t_\n38\tonce\t_\tADP\tRB\t_\t40\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tyear\t_\tNOUN\tNN\t_\t34\tadvmod\t_\t_\n41\t?\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tDo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n2\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpessimist\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAmbassador\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTremdine\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tHouse\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tAviation\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSubcommittee\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tgive\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttransportation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsecretary\t_\tNOUN\tNN\t_\t10\tiobj\t_\t_\n14\tauthority\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\treview\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tapprove\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n19\tleveraged\t_\tVERB\tJJ\t_\t20\tamod\t_\t_\n20\tbuy-outs\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tmajor\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tairlines\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcollapsed\t_\tVERB\tJJ\t_\t3\tamod\t_\t_\n3\tplan\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tacquire\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tparent\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tUnited\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tAirlines\t_\tPROPN\tNNPS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tspurred\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tquick\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\taction\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tlegislation\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tintroduced\t_\tVERB\tVBN\t_\t19\tdep\t_\t_\n22\tWednesday\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tapproved\t_\tVERB\tVBN\t_\t21\tconj\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tsubcommittee\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tvoice\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tvote\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n32\tyesterday\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\ttaken\t_\tVERB\tVBN\t_\t4\txcomp\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tPublic\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tWorks\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tTransportation\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCommittee\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n16\ttomorrow\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfloor\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tvote\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tnext\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tweek\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\twill\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\turged\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tcriticism\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBush\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tparting\t_\tVERB\tNN\t_\t12\tamod\t_\t_\n12\tshot\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tfinancier\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tDonald\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTrump\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twho\t_\tPRON\tWP\t_\t20\tnsubj\t_\t_\n19\tyesterday\t_\tNOUN\tNN\t_\t20\tdep\t_\t_\n20\twithdrew\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\ttakeover\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tbid\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tAMR\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tparent\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tAmerican\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAirlines\t_\tPROPN\tNNPS\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tletter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n4\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n5\tsubcommittee\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tChairman\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tJames\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tOberstar\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tD.\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tMinn.\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTrump\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tcriticized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tbill\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\texplicit\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\teffort\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tthwart\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\this\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tbid\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tAMR\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n32\tsaid\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n34\tcontributed\t_\tVERB\tVBD\t_\t32\tccomp\t_\t_\n35\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcollapse\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tdeal\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tElaine\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChao\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdeputy\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\ttransportation\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsecretary\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tletter\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texpress\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tadministration\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\topposition\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbill\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tpresent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tform\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tRep.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOberstar\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tbrushed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\toff\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tTrump\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tallegations\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\texcuse\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\tfor\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\town\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdeal\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tfailing\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfact\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tletter\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tcome\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tTransportation\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tSecretary\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tSamuel\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSkinner\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\tindicated\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n22\twiggle\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\troom\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n25\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tadministration\t_\tNOUN\tNN\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tposition\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOberstar\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcommittee\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmembers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\trepeatedly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tlegislation\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tresponse\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tparticular\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsituation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tUAL\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tAMR\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\texamples\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\treasons\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tmove\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tquickly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tenact\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tlegislation\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAides\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n2\tboth\t_\tDET\tCC\t_\t5\tdep\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSenate\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\twithdrawal\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tTrump\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbid\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAMR\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tlikely\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdeflate\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tefforts\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tpush\t_\tVERB\tVB\t_\t22\tacl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlegislation\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrack\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\tstill\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\twant\t_\tVERB\tVBP\t_\t8\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tdo\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tone\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tSenate\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\taide\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\taimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\taddressing\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tairline\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tmight\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tsacrifice\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tcostly\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tsafety\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmeasures\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tpay\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n19\toff\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdebt\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tincurred\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tleveraged\t_\tVERB\tJJ\t_\t26\tamod\t_\t_\n26\tbuy-out\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCurrently\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttransportation\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsecretary\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tclearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\testablished\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\tauthority\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tblock\t_\tNOUN\tVB\t_\t14\tcompound\t_\t_\n14\tmergers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n17\tcan\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\ttake\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tdrastic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstep\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tof\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\trevoking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\toperating\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tcertificate\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tany\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcarrier\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tofficial\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n32\tconsiders\t_\tVERB\tVBZ\t_\t29\tacl:relcl\t_\t_\n33\tunfit\t_\tADJ\tJJ\t_\t32\txcomp\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tSupporters\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tlegislation\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tview\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\teffort\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tadd\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n13\tstability\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tcertainty\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tairline-acquisition\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprocess\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tpreserve\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tsafety\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tfitness\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tindustry\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tgeneral\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbill\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tTransportation\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDepartment\t_\tPROPN\tNNP\t_\t7\tiobj\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t30-day\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\treview\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tperiod\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n15\tbefore\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n16\t15\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t32\tnsubjpass\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n19\tmore\t_\tADJ\tJJR\t_\t17\tnummod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tvoting\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n27\tU.S.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tair\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcarrier\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tcould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\tacquired\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tacquiring\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tparty\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tnotify\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttransportation\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tsecretary\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tprovide\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n16\tall\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tinformation\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\trelevant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tmark\t_\t_\n20\tdetermining\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tintent\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tacquisition\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tallow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsecretary\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treject\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbuy-out\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tsufficient\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinformation\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tprovided\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tif\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tbuy-out\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tlikely\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tweaken\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tcarrier\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tfinancially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n31\tresult\t_\tVERB\tVBP\t_\t26\tconj\t_\t_\n32\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tsubstantial\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\treduction\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsize\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tairline\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\tthrough\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tdisposal\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tassets\t_\tNOUN\tNNS\t_\t42\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n46\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n47\tgive\t_\tVERB\tVB\t_\t26\tconj\t_\t_\n48\tcontrol\t_\tNOUN\tNN\t_\t47\tdobj\t_\t_\n49\tto\t_\tADP\tTO\t_\t52\tcase\t_\t_\n50\ta\t_\tDET\tDT\t_\t52\tdet\t_\t_\n51\tforeign\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tinterest\t_\tNOUN\tNN\t_\t47\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tmore\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tinformation\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tneeded\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsecretary\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tauthority\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\textend\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\treview\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tperiod\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t20\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tdays\t_\tNOUN\tNNS\t_\t13\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAll\t_\tDET\tPDT\t_\t3\tdet:predet\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\twitnesses\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tboth\t_\tDET\tDT\t_\t6\tcc:preconj\t_\t_\n6\tcongressmen\t_\tNOUN\tNNS\t_\t3\tappos\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tindustry\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\texperts\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tsupport\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbill\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tin\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\torder\t_\tNOUN\tNN\t_\t16\tmwe\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tprevent\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n20\tprofiteers\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tfrom\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tcashing\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n23\tin\t_\tADP\tIN\t_\t22\tcompound:prt\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tairline\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tprofits\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\texpense\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tsafe\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\tcost-effective\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tservice\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tseveral\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcommittee\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmembers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tdisapproved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tnsubj\t_\t_\n8\tbacking\t_\tVERB\tNN\t_\t5\tdep\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tTrump\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tclaim\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tthreat\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tregulation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tcaused\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfailure\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tUAL\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tdeal\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tstock-market\t_\tNOUN\tJJ\t_\t28\tcompound\t_\t_\n28\tplunge\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t10\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tmajor\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tconcerns\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\texpressed\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdissenters\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tairlines\t_\tNOUN\tNNS\t_\t16\tnsubjpass\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tprohibited\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tdivesting\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tthemselves\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsmaller\t_\tADJ\tJJR\t_\t22\tamod\t_\t_\n22\tentities\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\tproducing\t_\tVERB\tVBG\t_\t18\tconj\t_\t_\n25\tindependent\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tspin-off\t_\tADJ\tNN\t_\t27\tamod\t_\t_\n27\tcompanies\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tpossible\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprelude\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresumption\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttalks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tBoeing\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tstriking\t_\tVERB\tJJ\t_\t17\tamod\t_\t_\n15\tMachinists\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n16\tunion\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmembers\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfederal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmediator\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\trepresentatives\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tsides\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tmeet\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n30\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\thim\t_\tPRON\tPRP\t_\t29\tnmod\t_\t_\n32\ttomorrow\t_\tNOUN\tNN\t_\t29\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmeeting\t_\tNOUN\tNN\t_\t17\tccomp\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n10\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tshort\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tone\t_\tNUM\tCD\t_\t7\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tDoug\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tHammond\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmediator\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n25\tcalled\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tagreement\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tmeet\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tfirst\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tstep\t_\tNOUN\tNN\t_\t25\txcomp\t_\t_\n33\ttoward\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tresumption\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tnegotiations\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tencouraged\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\ttalks\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\tauxpass\t_\t_\n8\tscheduled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tbeyond\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tthat\t_\tPRON\tDT\t_\t16\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tmade\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n17\tno\t_\tDET\tDT\t_\t18\tneg\t_\t_\n18\texpression\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\texpectations\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tBoeing\t_\tVERB\tNNP\t_\t25\tamod\t_\t_\n25\tspokesman\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMachinists\t_\tPROPN\tNNS\t_\t3\tcompound\t_\t_\n3\tunion\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\trejected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tthree-year\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcontract\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\toffer\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\thave\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tprovided\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n17\twage\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tincrease\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\tover\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tlife\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpact\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n26\tplus\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tsome\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tbonuses\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCurrently\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpay\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tmachinists\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t13.39\t_\tNUM\tCD\t_\t14\tccomp\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\thour\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tBoeing\t_\tVERB\tNNP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\t13th\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tday\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstrike\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tidled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tabout\t_\tADV\tIN\t_\t12\tadvmod\t_\t_\n12\t55,000\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmachinists\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\tstarted\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdelay\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tdelivery\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsome\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tjetliners\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tstrike\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tfund\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tabout\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n7\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n8\t100\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tunion\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tprepared\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlong\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstrike\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tweek\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstrike\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tunion\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\treceiving\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t100\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfund\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWork\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tBoeing\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tcontinues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\twith\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tsupervisors\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnon-striking\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpersonnel\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n11\tmanning\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlines\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n2\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tWichita\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tKan.\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tplant\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n12\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n13\t2,400\t_\tNUM\tCD\t_\t20\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t11,700\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tmachinists\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tworking\t_\tVERB\tVBG\t_\t23\tdep\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\tBoeing\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tKansas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tright-to-work\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlaws\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tcontracts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n7\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tworkers\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n13\tunion\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmembers\t_\tNOUN\tNNS\t_\t9\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdeclined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tsay\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\thow\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tadvmod\t_\t_\n8\temployees\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tworking\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n11\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n13\tgiant\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n14\tRenton\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tWash.\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tplant\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnion\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\treached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tDPC\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPartners\t_\tPROPN\tNNPS\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\thostile\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsuitor\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tDataproducts\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tintends\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlaunch\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\ttender\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\toffer\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tprinter\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmaker\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tcommon\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDPC\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tgroup\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tled\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tCrescott\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\talso\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tplans\t_\tVERB\tVBZ\t_\t16\tccomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tfile\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tpreliminary\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmaterials\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tSecurities\t_\tPROPN\tNNPS\t_\t28\tcompound\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tExchange\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\tCommission\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n29\tregarding\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tshareholder\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsolicitation\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\toust\t_\tVERB\tVB\t_\t32\tacl\t_\t_\n35\tDataproducts\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n36\t'\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tboard\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tDPC\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t7.8\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t%\t_\tSYM\tNN\t_\t6\tamod\t_\t_\n6\tstake\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tDataproducts\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tmade\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t14\tamod\t_\t_\n13\t15-a-share\t_\tADJ\tJJ\t_\t12\tdep\t_\t_\n14\tbid\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tMay\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n22\tDataproducts\t_\tPROPN\tNNPS\t_\t23\tcompound\t_\t_\n23\tmanagement\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tconsidered\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t283.7\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tproposal\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\tunacceptable\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDPC\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\telaborate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tgroup\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tplan\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tcomposite\t_\tNOUN\tJJ\t_\t6\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tDataproducts\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t62.5\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tclose\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t9.375\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDataproducts\t_\tPROPN\tNNPS\t_\t13\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\taux\t_\t_\n6\tseeking\t_\tVERB\tVBG\t_\t1\tacl:relcl\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbuyer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tseveral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n13\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\trestructuring\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplan\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tSeptember\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\ttook\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n21\titself\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\toff\t_\tADP\tRP\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tauction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tblock\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\trestructuring\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tplans\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsplit\t_\tVERB\tVB\t_\t6\tdep\t_\t_\n9\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tsectors\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tphase\t_\tNOUN\tVB\t_\t8\tconj\t_\t_\n15\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tdomestic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tprinter\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tmanufacturing\t_\tVERB\tNN\t_\t19\tamod\t_\t_\n19\toperations\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tsell\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tEngland\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tsubsidiary\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tpart\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tDataproducts\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpact\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsell\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t63\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n18\treal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\testate\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tholdings\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tTrizec\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tProperties\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tInc.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tunit\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tCanada\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tTrizec\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tCorp\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tJack\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDavis\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tDataproducts\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t'\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tchief\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\texecutive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tloss\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tunderstand\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tDPC\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tintentions\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tannouncement\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\topportunistic\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tdisruptive\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tintends\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tproceed\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\trestructuring\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tShare\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tplummeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tacross\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tEurope\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tresponse\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tYork\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tsell-off\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n17\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tissues\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tstaged\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tlate\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcomeback\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tafter\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tWall\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tStreet\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\topened\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n27\twithout\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tanother\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\trout\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEuropean\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tfurther\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\treason\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\toptimism\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\ttoday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tafter\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\trebound\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tFrankfurt\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n8\tbefore\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\texchanges\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\topened\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\thardest\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\thit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tmajor\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tEuropean\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmarkets\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n25\twith\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tDAX\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tIndex\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\tdropping\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n30\t12.8\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tplummeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tearly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\toff\t_\tADJ\tRB\t_\t5\tconj\t_\t_\n12\tas\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tmuch\t_\tADJ\tJJ\t_\t15\tadvmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n15\t9\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n17\tbefore\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tcoming\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n19\tback\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\tstrong\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\topening\t_\tNOUN\tVBG\t_\t18\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tclose\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n28\tdown\t_\tADV\tRP\t_\t27\tadvmod\t_\t_\n29\tonly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\t3.2\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t28\tnmod:npmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n2\tGerman\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n3\tEconomics\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tMinister\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tHelmut\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tHaussmann\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n10\tIn\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmy\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tview\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tstabilize\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n19\trelatively\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tquickly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t10\texpl\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n4\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n7\tpsychological\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\ttechnical\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n10\treactions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t16\tnsubjpass\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t16\tauxpass\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tbased\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tfundamentals\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\teconomy\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tWest\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tGermany\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tEC\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t-LCB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n10\tEuropean\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCommunity\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n12\t-RCB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n14\thighly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tstable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tParis\t_\tPROPN\tNNP\t_\t18\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcenter\t_\tNOUN\tNN\t_\t1\tacl:relcl\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tspeculation\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfever\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\trecent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tweeks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n17\thard\t_\tADV\tJJ\t_\t18\tadvmod\t_\t_\n18\thit\t_\tVERB\tNN\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tShare\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tMilan\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tAmsterdam\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tZurich\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tMadrid\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tStockholm\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPrices\t_\tPROPN\tNNS\t_\t13\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tBrussels\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcomputer\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbreakdown\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tdisrupted\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\talso\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFollowing\t_\tVERB\tVBG\t_\t4\tdep\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tdep\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbreakdown\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tactivity\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tFRANKFURT\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tsharpest\t_\tADJ\tJJS\t_\t5\tamod\t_\t_\n5\tdeclines\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfinancial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcenter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tEurope\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tstrongest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDAX\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tIndex\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\t30\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n6\tWest\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tGerman\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tblue\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tchips\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t12.8\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tone-day\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trecord\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\twiping\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n19\tout\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsummer\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tgains\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindex\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\t1385.72\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n8\t203.56\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tpoints\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcomparison\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\ttwo\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\tago\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBlack\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\thave\t_\tAUX\tVB\t_\t16\taux\t_\t_\n16\tdropped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\t9.4\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\taccording\t_\tVERB\tVBG\t_\t23\tcase\t_\t_\n21\tto\t_\tADP\tTO\t_\t20\tmwe\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tprojection\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\texchange\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\thave\t_\tAUX\tVB\t_\t4\taux\t_\t_\n4\treacted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tstrongly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tbecause\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\thad\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n17\tvivid\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmemories\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tFrankfurt\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\texchange\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tlosing\t_\tVERB\tVBG\t_\t22\tdep\t_\t_\n25\t35\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t24\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tvalue\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\t1987\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tcrash\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tits\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n36\twake\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tsmall\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tacting\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n15\tso\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tswiftly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tall\t_\tDET\tDT\t_\t2\tdet\t_\t_\n4\twent\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\twrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdirection\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tAndreas\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInsam\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tinvestment\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tadviser\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tBank\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tLiechtenstein\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tFrankfurt\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tbranch\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\ttold\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tclients\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\tselected\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n9\tWest\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tGerman\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tblue\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tchips\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n13\tafter\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tfell\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n16\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t10\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\topening\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tdelayed\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n6\t30\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tminutes\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tbecause\t_\tADV\tIN\t_\t11\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcrush\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tsell\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\torders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n16\tFrankfurt\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tnormal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\ttwo-hour\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tsession\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\textended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n24\t75\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tminutes\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\thandle\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\theavy\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tvolume\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbeginning\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tchaotic\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tNigel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tLongley\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbroker\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tCommerzbank\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAG\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthree-quarters\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thour\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbefore\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tenough\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tworked\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\treading\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tInstitutional\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tbankers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tmany\t_\tDET\tJJ\t_\t9\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\twhom\t_\tPRON\tWP\t_\t6\tnmod\t_\t_\n9\tspent\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnight\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\tbefore\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\toffices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\twatching\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n17\tFar\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tEastern\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n21\twere\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n22\tcautiously\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\toptimistic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n24\tafter\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\tmild\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n27\t1.8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t%\t_\tSYM\tNN\t_\t29\tamod\t_\t_\n29\tdecline\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tTokyo\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tstock\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tprices\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tEverybody\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tconfident\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n8\tmost\t_\tADJ\tRBS\t_\t10\tamod\t_\t_\n9\tinstitutional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinvestors\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n3\twhy\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n4\teverybody\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlittle\t_\tADV\tJJ\t_\t8\tnmod:npmod\t_\t_\n8\tsurprised\t_\tVERB\tJJ\t_\t2\tadvcl\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstorm\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tsell\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\torders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tsmall\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tprivate\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tNorbert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBraeuer\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttrader\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tHessische\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tLandesbank\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinstitutions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tincluding\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n6\tbanks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tpicking\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\tup\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tlower-priced\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tlate\t_\tADV\tJJ\t_\t8\tadvmod\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n17\tmost\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\twanted\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tsee\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\twhat\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\thappen\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tNew\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tYork\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\tbefore\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tacting\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tWall\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStreet\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tcontinues\t_\tVERB\tVBZ\t_\t12\tadvcl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tstabilize\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tanalysts\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\there\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tlatest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\tblow\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tinvestor\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tconfidence\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tinhibit\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tswift\t_\tNOUN\tJJ\t_\t23\tcompound\t_\t_\n23\trecovery\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tFrankfurt\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\texchange\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\twhich\t_\tPRON\tWDT\t_\t32\tnsubj\t_\t_\n30\talready\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\twas\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\tshowing\t_\tVERB\tVBG\t_\t27\tacl:relcl\t_\t_\n33\tsigns\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tweakness\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\tafter\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tDAX\t_\tPROPN\tNNP\t_\t40\tnsubj\t_\t_\n39\thad\t_\tAUX\tVBD\t_\t40\taux\t_\t_\n40\tslipped\t_\tVERB\tVBN\t_\t32\tadvcl\t_\t_\n41\tfrom\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\t1989\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\thigh\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\t1657.61\t_\tNUM\tCD\t_\t44\tnmod\t_\t_\n47\ton\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tSept.\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n49\t8\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t8\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tWest\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGermany\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tbluest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tchips\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tsome\t_\tDET\tDT\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbiggest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n13\thits\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t16.3\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\t%\t_\tSYM\tNN\t_\t4\tamod\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tMannesmann\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAG\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tDresdner\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tBank\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAG\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\t9.6\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\tespecially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tproblematic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\trespective\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tboards\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\twhose\t_\tPRON\tWP$\t_\t25\tnmod:poss\t_\t_\n25\tplans\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\trights\t_\tNOUN\tNNS\t_\t29\tcompound\t_\t_\n29\tissues\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tNovember\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\tcould\t_\tAUX\tMD\t_\t36\taux\t_\t_\n33\tnow\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t36\tcop\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tjeopardy\t_\tNOUN\tNN\t_\t22\tacl:relcl\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tDresdner\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBank\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tlast\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\thoped\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\traise\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\t1.2\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tmarks\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n15\t642.2\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t-RRB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n18\tby\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tissuing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n20\tfour\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t300\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmarks\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\teach\t_\tDET\tDT\t_\t25\tnmod:npmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tDresdner\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tshare\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t33\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tmarks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t309\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tmarks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tleaving\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n20\tlittle\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tincentive\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tfor\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tinvestors\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsubscribe\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n26\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tstanding\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tunless\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n33\trecovers\t_\tVERB\tVBZ\t_\t25\tadvcl\t_\t_\n34\tquickly\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tHeaded\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n2\ttoward\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trecord\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tdrop\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tmidday\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tLondon\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\trecouped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ttwo-thirds\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\twake\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tNew\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tYork\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tearly\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trally\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\tFinancial\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tTimes-Stock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t100\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tShare\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tIndex\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\toff\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t70.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t2163.4\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\thigh\t_\tNOUN\tJJ\t_\t14\tappos\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tday\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\thaving\t_\tAUX\tVBG\t_\t24\taux\t_\t_\n24\tplunged\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n25\t204.2\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tpoints\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t12:49\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tp.m\t_\tNOUN\tRB\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tbig\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinstitutions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t10\tcase\t_\t_\n6\tas\t_\tADP\tIN\t_\t5\tmwe\t_\t_\n7\tNorwich\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tUnion\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tInsurance\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tGroup\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tScottish\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tAmicable\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tInvestment\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tManagers\t_\tPROPN\tNNPS\t_\t10\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tStandard\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tLife\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tAssurance\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCo.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n21\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tspearheaded\t_\tVERB\tVBD\t_\t4\tdep\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\trally\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAttracted\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n2\tby\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tlow\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n6\tencouraged\t_\tVERB\tVBN\t_\t1\tconj\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tperformance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tscooped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tequities\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tacross\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tboard\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tVolume\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\t959.3\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\ttriple\t_\tADJ\tJJ\t_\t11\tnummod\t_\t_\n10\trecent\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlevels\t_\tNOUN\tNNS\t_\t5\tappos\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPARIS\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tLate\t_\tADJ\tRB\t_\t2\tamod\t_\t_\n2\tbuying\t_\tNOUN\tVBG\t_\t3\tnsubj\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tParis\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBourse\t_\tPROPN\tNNP\t_\t3\tiobj\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tparachute\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tafter\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tfree\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfall\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\tearly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tCAC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tGeneral\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tIndex\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tdown\t_\tADV\tRP\t_\t5\tadvmod\t_\t_\n7\t5.4\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t523.6\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdrop\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t29.6\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tpoints\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tvolatility\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthat\t_\tADP\tIN\t_\t13\tdobj\t_\t_\n10\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n12\tnever\t_\tADV\tRB\t_\t13\tneg\t_\t_\n13\tseen\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n14\tbefore\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tMichel\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tVigier\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpartner\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n23\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tbrokerage\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n25\tfirm\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tCholet\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tDupont\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n3\tWall\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tStreet\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tturned\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n6\taround\t_\tADV\tRP\t_\t5\tadvmod\t_\t_\n7\tshortly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tafter\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\topening\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tthere\t_\tPRON\tEX\t_\t13\texpl\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tpanic\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbuying\t_\tNOUN\tVBG\t_\t13\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tParis\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tBrokers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnews\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tspread\t_\tVERB\tNN\t_\t23\tadvcl\t_\t_\n8\tthat\t_\tSCONJ\tWDT\t_\t12\tmark\t_\t_\n9\tWall\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tStreet\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tmoving\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n13\tup\t_\tADV\tRP\t_\t12\tcompound:prt\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n15\ttraders\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n16\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n17\thad\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n18\tcalled\t_\tVERB\tVBN\t_\t15\tacl:relcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tplace\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tsell\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\torders\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tchanged\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n24\ttheir\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tline\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tmid-conversation\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tordering\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n30\tbuys\t_\tNOUN\tVBZ\t_\t29\tdobj\t_\t_\n31\tinstead\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tdriven\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tprimarily\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tsmall\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tspeculators\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twith\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinstitutions\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\twaiting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsidelines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tuntil\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tlate\t_\tADJ\tJJ\t_\t14\tadvcl\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tday\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tturned\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbig\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tboys\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tentered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tlooking\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tbargains\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tswung\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tloss\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tthird\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twhile\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tNCNB\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\treported\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tmore\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n22\tdoubled\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n25\tSecurity\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tPacific\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tnet\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n29\trose\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n30\t10\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n10\t1.82\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tnet\t_\tNOUN\tJJ\t_\t13\tcompound\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tquarter\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\treflecting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tYork\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tbank\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tdecision\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n25\tlast\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tmonth\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tadd\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n29\t$\t_\tSYM\t$\t_\t28\tdobj\t_\t_\n30\t2\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tbillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\treserves\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tlosses\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n36\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tloans\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n38\tto\t_\tADP\tTO\t_\t40\tcase\t_\t_\n39\tless-developed\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tcountries\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\treserve\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\taddition\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparent\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tMorgan\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tGuaranty\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tTrust\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tamong\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tfew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tmajor\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tbanks\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tcovered\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n21\tnearly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n22\tall\t_\tDET\tDT\t_\t27\tdet:predet\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n24\tmedium\t_\tNOUN\tNN\t_\t27\tamod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tlong-term\t_\tADJ\tJJ\t_\t24\tconj\t_\t_\n27\tportfolios\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tless-developed\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tcountries\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\twith\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\treserves\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tquarter\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tequals\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t9.92\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tMorgan\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n9\t233.6\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t1.25\t_\tNUM\tCD\t_\t8\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSalem\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tanalyst\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tPrudential-Bache\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tSecurities\t_\tPROPN\tNNPS\t_\t9\tcompound\t_\t_\n9\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tresults\t_\tNOUN\tNNS\t_\t16\tdep\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tmildly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tdisappointing\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tExcluding\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n2\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\t$\t_\tSYM\t$\t_\t6\tamod\t_\t_\n4\t2\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tbillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tprovision\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n8\tallowing\t_\tVERB\tVBG\t_\t1\tconj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttaxes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tMorgan\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tpaid\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\t65\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tcents\t_\tNOUN\tNNS\t_\t25\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tSalem\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tJJ\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMorgan\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t1.50\t_\tNUM\tCD\t_\t11\tdobj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t44.125\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinterest\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsank\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t27\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n12\t254\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n16\t347\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinterest\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tshort-term\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfunds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t10\tdobj\t_\t_\n9\tbanks\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tborrow\t_\tVERB\tVBP\t_\t6\tacl:relcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tfinance\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tlonger-term\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tloans\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tcustomers\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tsharply\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\thigher\t_\tADJ\tJJR\t_\t25\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\tMorgan\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMorgan\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t2\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tinterest\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpayments\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n11\tmedium\t_\tADJ\tNN\t_\t15\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tlong-term\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tBrazilian\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tloans\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n17\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\taccruing\t_\tVERB\tVBG\t_\t32\tadvcl\t_\t_\n21\tinterest\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n23\tnet\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tinterest\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tincome\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n27\thave\t_\tAUX\tVB\t_\t32\taux\t_\t_\n28\tbeen\t_\tVERB\tVBN\t_\t32\tcop\t_\t_\n29\t$\t_\tSYM\t$\t_\t32\tnmod:npmod\t_\t_\n30\t35\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\thigher\t_\tADJ\tJJR\t_\t38\tccomp\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tquarter\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n37\tMorgan\t_\tPROPN\tNNP\t_\t38\tnsubj\t_\t_\n38\tsaid\t_\tVERB\tVBD\t_\t2\tparataxis\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tloans\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\tArgentina\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tclassified\t_\tADJ\tVBN\t_\t6\txcomp\t_\t_\n8\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tnon-accruing\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tcosting\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbank\t_\tNOUN\tNN\t_\t11\tiobj\t_\t_\n14\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tinterest\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tperiod\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIncome\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tsources\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\tthan\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tinterest\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t12\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n12\t414\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\treflecting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n16\thigher\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n17\tcorporate-finance\t_\tNOUN\tJJ\t_\t20\tcompound\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\tfees\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tgains\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tsales\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tinvestment\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsecurities\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tincreases\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tpartly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\toffset\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tlower\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n9\ttrading-related\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tincome\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tbank\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tNon-interest\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\texpenses\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t16\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n8\t496\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tnet\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tincome\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tmore\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n7\tthan\t_\tADP\tIN\t_\t6\tcase\t_\t_\n8\tdoubled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tperiod\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tlargely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n14\tbecause\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tcontinued\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n17\tstrong\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tperformance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n19\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbank\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tTexas\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\toperations\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tCharlotte\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.C.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tearnings\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t143.6\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.45\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n23\t58.9\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\t69\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tcents\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n34\tearlier\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tquarter\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t56.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t59\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\trelated\t_\tVERB\tJJ\t_\t6\tamod\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpurchase\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tremaining\t_\tADJ\tVBG\t_\t26\tamod\t_\t_\n25\t51\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tNCNB\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tTexas\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tNational\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tBank\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\tfrom\t_\tADP\tIN\t_\t37\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\tFederal\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n35\tDeposit\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tInsurance\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tCorp\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tstrong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tperformance\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tcontrasted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tunexpectedly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tlarge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tincrease\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsize\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tNCNB\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tproblem\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tloans\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n22\tparticularly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tSoutheast\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tnonperforming\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tassets\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n11\t474.1\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t1.43\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tloans\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tleases\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n25\t232.8\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t1.13\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t24\tconj\t_\t_\n31\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tsecond\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tquarter\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNonperformers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t230.8\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\t1.27\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t3\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tyear-ago\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIncluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tincrease\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tmost\t_\tADV\tRBS\t_\t8\tadvmod\t_\t_\n8\trecent\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t1\tauxpass\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t33\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tloan\t_\tNOUN\tNN\t_\t1\tnsubjpass\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t19\tdobj\t_\t_\n18\tNCNB\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n22\texpects\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n25\tfully\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\trepaid\t_\tVERB\tVBN\t_\t22\txcomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tno\t_\tDET\tDT\t_\t30\tneg\t_\t_\n30\tloss\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n32\tearly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tfourth\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdeterioration\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcredit\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tquality\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\toffset\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tloan\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tgrowth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t17\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tNCNB\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tSoutheast\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\toperations\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tas\t_\tADV\tRB\t_\t9\tcc\t_\t_\n20\twell\t_\tADV\tRB\t_\t19\tmwe\t_\t_\n21\tas\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\t28\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t%\t_\tSYM\tNN\t_\t25\tamod\t_\t_\n25\tgrowth\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tdeposits\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\tresulting\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\taggressive\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tmarketing\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tcampaign\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\thigher\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\trates\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tpaid\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdeposits\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tsqueeze\t_\tVERB\tNN\t_\t8\tccomp\t_\t_\n10\tNCNB\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmargin\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tSoutheast\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\t3.38\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t3.80\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n26\tearlier\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tcomposite\t_\tNOUN\tJJ\t_\t5\tcompound\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tNCNB\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t3.50\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t51\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tResults\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\treleased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tafter\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTexas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNational\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tformed\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tremnants\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tdep\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tfailed\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n13\tFirst\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tRepublicBank\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tDallas\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n19\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t$\t_\tSYM\t$\t_\t19\tdobj\t_\t_\n21\t76.9\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n24\tNCNB\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tbottom\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tline\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tthird\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tquarter\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tthird-quarter\t_\tNOUN\tJJ\t_\t5\tcompound\t_\t_\n5\tresults\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\treflect\t_\tVERB\tVBP\t_\t2\tccomp\t_\t_\n7\t100\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tTexas\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\toperation\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAug.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t1\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\traised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tsome\t_\tDET\tDT\t_\t4\tadvmod\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n5\t1.9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcapital\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tcomplete\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tNCNB\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tTexas\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tpurchase\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tacquire\t_\tVERB\tVB\t_\t14\tconj\t_\t_\n23\tseveral\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n24\tsmall\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tfailed\t_\tVERB\tVBD\t_\t26\tamod\t_\t_\n26\tthrifts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tfill\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n29\tout\t_\tADP\tRP\t_\t28\tcompound:prt\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tregional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tfranchise\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbanking\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tpurchased\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tboth\t_\tDET\tCC\t_\t12\tcc:preconj\t_\t_\n11\tFreedom\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tSavings\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tLoan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAssociation\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tTampa\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tFla.\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n22\tUniversity\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tFederal\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tSavings\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAssociation\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tSan\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tAntonio\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tTexas\t_\tPROPN\tNNP\t_\t28\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n34\t169.4\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tnine\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\tNCNB\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t65\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n16\t310.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t3.30\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n27\t188.2\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t2.22\t_\tNUM\tCD\t_\t26\tconj\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t38\tnmod:npmod\t_\t_\n38\tearlier\t_\tADV\tRBR\t_\t26\tadvmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tearnings\t_\tNOUN\tNNS\t_\t5\tcompound\t_\t_\n5\tgrowth\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tslowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tLos\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tAngeles\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tbank\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tholding\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n20\tstill\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\table\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tpost\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t10\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tamod\t_\t_\n27\tincrease\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tnet\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tincome\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t31\tmwe\t_\t_\n33\trobust\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tgrowth\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tresidential\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\treal-estate\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tconsumer\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tloans\t_\tNOUN\tNNS\t_\t37\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tNN\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t185.1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t1.55\t_\tNUM\tCD\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n16\t167.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.47\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tyear\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n27\tearlier\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgain\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tresulted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tmainly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n11\t54\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tincrease\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tnet\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tinterest\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tincome\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\treflecting\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\t33\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t%\t_\tSYM\tNN\t_\t23\tamod\t_\t_\n23\tincrease\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\treal\t_\tNOUN\tJJ\t_\t27\tcompound\t_\t_\n26\testate\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tloans\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t30\tpunct\t_\t_\n29\tmainly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tresidential\t_\tADJ\tJJ\t_\t27\tdep\t_\t_\n31\t-RRB-\t_\tPUNCT\t-RRB-\t_\t30\tpunct\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n34\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n35\t19\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\t%\t_\tSYM\tNN\t_\t37\tamod\t_\t_\n37\trise\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n38\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tconsumer\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tloans\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\thigh-yielding\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tloans\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\teffect\t_\tNOUN\tNN\t_\t6\tadvmod\t_\t_\n6\treplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlow-yielding\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t13\tcase\t_\t_\n11\tas\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tinter-bank\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloans\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t17\tnsubjpass\t_\t_\n16\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tallowed\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdecrease\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tSecurity\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPacific\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tinterest\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmargin\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t13\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tbasis\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tpoints\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmore\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n19\tmild\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdecrease\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n21\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tsome\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tmajor\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbanks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\toutside\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tCalifornia\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\twhich\t_\tPRON\tWDT\t_\t31\tnsubj\t_\t_\n29\thave\t_\tAUX\tVBP\t_\t31\taux\t_\t_\n30\tbeen\t_\tAUX\tVBN\t_\t31\taux\t_\t_\n31\treporting\t_\tVERB\tVBG\t_\t24\tacl:relcl\t_\t_\n32\tmore\t_\tADV\tRBR\t_\t33\tadvmod\t_\t_\n33\tsluggish\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tearnings\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t7\tdep\t_\t_\n7\t44.625\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tdown\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n10\t37.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tBig\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tcomposite\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tearnings\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\trepresent\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t0.89\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\treturn\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSecurity\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPacific\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n15\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\t18.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\treturn\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tequity\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tloan\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\toffset\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tcontinuing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n6\treal-estate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tloan\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tlosses\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tdepressed\t_\tVERB\tJJ\t_\t13\tamod\t_\t_\n12\tArizona\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t33\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tincrease\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcredit\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tlosses\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n18\t109\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n22\t81.9\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tyear-ago\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tperiod\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNonperforming\t_\tVERB\tVBG\t_\t2\tamod\t_\t_\n2\tloans\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tslightly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n7\t1.75\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tSept.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n15\t1.7\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tloan-loss\t_\tADJ\tNN\t_\t5\tamod\t_\t_\n5\tprovision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t22\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tnmod:npmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\t$\t_\tSYM\t$\t_\t9\tconj\t_\t_\n13\t30.4\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tadded\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tforeign-debt\t_\tADJ\tNN\t_\t22\tamod\t_\t_\n22\treserve\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t25\tnmod:npmod\t_\t_\n25\tbefore\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNon-interest\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincome\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tmainly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n11\tbecause\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tof\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tunusual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tgain\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyear\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tearlier\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsale\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tHong\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tKong\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tbanking\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\toperations\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNon-interest\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\texpense\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\t4\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tperiod\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tnet\t_\tADJ\tNN\t_\t7\tnsubj\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t17\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n12\t548.9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t4.67\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n23\t469.4\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\t$\t_\tSYM\t$\t_\t28\tdep\t_\t_\n28\t4.13\t_\tNUM\tCD\t_\t22\tconj\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n34\tearlier\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLIN\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBroadcasting\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\two\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tposition\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\trevised\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n14\ttender\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toffer\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tMcCaw\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tCellular\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tCommunications\t_\tPROPN\tNNPS\t_\t20\tcompound\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tbuy\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n23\tLIN\t_\tPROPN\tNNP\t_\t22\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n25\thas\t_\tAUX\tVBZ\t_\t26\taux\t_\t_\n26\tasked\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tclarification\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\toffer\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\toffer\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tseeks\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\t50.3\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tcellular\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tbroadcasting\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\tconcern\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t125\t_\tNUM\tCD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\t22\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tLIN\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\trevised\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n4\ttender\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tMcCaw\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tauction\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprocess\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJuly\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t1994\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n20\tout\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\tremaining\t_\tADJ\tVBG\t_\t22\tamod\t_\t_\n22\tholders\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tper-share\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\troughly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tequivalent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n29\tto\t_\tADP\tTO\t_\t36\tmark\t_\t_\n30\twhat\t_\tPRON\tWP\t_\t38\tdobj\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tthird\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tparty\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n34\tmight\t_\tAUX\tMD\t_\t36\taux\t_\t_\n35\tthen\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\thave\t_\tVERB\tVB\t_\t28\tadvcl\t_\t_\n37\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n38\tpay\t_\tVERB\tVB\t_\t36\txcomp\t_\t_\n39\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tall\t_\tDET\tDT\t_\t38\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tLIN\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLIN\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tasking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tMcCaw\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tclarify\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\ttender\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\tchallenges\t_\tVERB\tVBZ\t_\t9\tacl:relcl\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tagreement\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tbetween\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tBellSouth\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tLIN\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tmerge\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tcellular-telephone\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbusinesses\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBellSouth\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tnotified\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tLIN\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tshortly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\trespond\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tMcCaw\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tproposal\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tas\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n17\tfull\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\teffective\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmanner\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n22\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\tauxpass\t_\t_\n24\twarranted\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tLIN\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tboard\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tholders\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tmisled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprovision\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tMcCaw\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tproposal\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tthat\t_\tADP\tIN\t_\t18\tnsubj\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n18\tguarantees\t_\tNOUN\tNNS\t_\t11\tacl:relcl\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n20\tprivate\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tvalue\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tfive\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tremaining\t_\tADJ\tVBG\t_\t29\tamod\t_\t_\n29\tshares\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\thas\t_\tVERB\tVBZ\t_\t22\tccomp\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tobligation\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpurchase\t_\tNOUN\tVB\t_\t5\tacl\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdefinition\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprivate\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tvalue\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tuncertain\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tLIN\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tboard\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tboard\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tMcCaw\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\table\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcontrol\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tLIN\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\toperations\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n18\ttherefore\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\toperate\t_\tVERB\tVBP\t_\t8\tconj\t_\t_\n21\tLIN\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmanner\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tdiminish\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n29\tprivate\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tvalue\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tattractiveness\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n34\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tthird-party\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tpurchaser\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tfive\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\tyears\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tnational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tover-the-counter\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tLIN\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t104.75\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t2.75\t_\tNUM\tCD\t_\t12\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tinstitutional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tTelerate\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n11\tDow\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tJones\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t18\tamod\t_\t_\n17\t18-a-share\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n18\toffer\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n19\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n21\telectronic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n22\tfinancial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\tinformation\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tservices\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t29\tcop\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n28\tgrossly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tinadequate\t_\tADJ\tJJ\t_\t9\tccomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tletter\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n4\tfiled\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tSecurities\t_\tPROPN\tNNPS\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\tCommission\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\tholds\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n17\tabout\t_\tADV\tIN\t_\t19\tadvmod\t_\t_\n18\t4.5\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tTelerate\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tabout\t_\tADV\tIN\t_\t25\tadvmod\t_\t_\n25\t4.7\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t21\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tshares\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\toutstanding\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n32\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n34\t...\t_\tPUNCT\t:\t_\t32\tpunct\t_\t_\n35\tat\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tpresent\t_\tADJ\tJJ\t_\t40\tnmod\t_\t_\n37\tnone\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tus\t_\tPRON\tPRP\t_\t37\tnmod\t_\t_\n40\tbelieves\t_\tVERB\tVBZ\t_\t32\tparataxis\t_\t_\n41\tan\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\toffer\t_\tNOUN\tNN\t_\t52\tnsubj\t_\t_\n43\tfor\t_\tADP\tIN\t_\t46\tcase\t_\t_\n44\tless\t_\tADJ\tJJR\t_\t46\tadvmod\t_\t_\n45\tthan\t_\tADP\tIN\t_\t44\tmwe\t_\t_\n46\t$\t_\tSYM\t$\t_\t42\tnmod\t_\t_\n47\t25\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n48\tper\t_\tADP\tIN\t_\t49\tcase\t_\t_\n49\tshare\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n50\twould\t_\tAUX\tMD\t_\t52\taux\t_\t_\n51\tbe\t_\tVERB\tVB\t_\t52\tcop\t_\t_\n52\tfair\t_\tADJ\tJJ\t_\t40\tccomp\t_\t_\n53\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n54\tsome\t_\tDET\tDT\t_\t55\tnsubj\t_\t_\n55\tbelieve\t_\tVERB\tVBP\t_\t40\tconj\t_\t_\n56\tthat\t_\tDET\tIN\t_\t61\tmark\t_\t_\n57\t$\t_\tSYM\t$\t_\t58\tdep\t_\t_\n58\t25\t_\tNUM\tCD\t_\t61\tnsubj\t_\t_\n59\tis\t_\tVERB\tVBZ\t_\t61\tcop\t_\t_\n60\ttoo\t_\tADV\tRB\t_\t61\tadvmod\t_\t_\n61\tlow\t_\tADJ\tJJ\t_\t55\tccomp\t_\t_\n62\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n63\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tletter\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tdated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomposite\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tTelerate\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t18.875\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n20\t75\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tDow\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tJones\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tpublisher\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tJournal\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tlaunched\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n14\t$\t_\tSYM\t$\t_\t23\tamod\t_\t_\n15\t18-a-share\t_\tADJ\tJJ\t_\t14\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\t$\t_\tSYM\t$\t_\t14\tconj\t_\t_\n19\t576\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\ttender\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tacquire\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tremaining\t_\tADJ\tVBG\t_\t29\tamod\t_\t_\n28\tTelerate\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tshares\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n30\toutstanding\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n31\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n32\tDow\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tJones\t_\tPROPN\tNNP\t_\t34\tnsubj\t_\t_\n34\towns\t_\tVERB\tVBZ\t_\t12\tparataxis\t_\t_\n35\t67\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t34\tdobj\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tTelerate\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTelerate\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\trejected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\texpires\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\tNov.\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\t3\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tPutnam\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCos.\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tvarious\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\taffiliates\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tbased\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n13\tWells\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tFargo\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tBank\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tSan\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tFrancisco\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n21\tCalifornia\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tPublic\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tEmployees\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tRetirement\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSystem\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tSacramento\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tCalif.\t_\tPROPN\tNNP\t_\t27\tappos\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n32\tT.\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n33\tRowe\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n34\tPrice\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tAssociates\t_\tPROPN\tNNPS\t_\t36\tcompound\t_\t_\n36\tInc.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tBaltimore\t_\tPROPN\tNNP\t_\t36\tappos\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tletter\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n13\tconcerns\t_\tVERB\tNNS\t_\t11\tdobj\t_\t_\n14\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t21\tmark\t_\t_\n16\twhether\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tJones\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\toffer\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tmeets\t_\tVERB\tVBZ\t_\t13\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tapplicable\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\trequirements\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tprocedural\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tfairness\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tJones\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tseen\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tgroup\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfiling\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tadded\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n20\tobviously\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\tDow\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tJones\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tdisagrees\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tconclusions\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOur\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t9\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tall\t_\tDET\tDT\t_\t6\tconj\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\ttendered\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t18\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tTrade\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tRepresentative\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tCarla\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tHills\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdispute-settlement\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpanel\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n11\tset\t_\tVERB\tVBD\t_\t10\tacl\t_\t_\n12\tup\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tunder\t_\tADP\tIN\t_\t20\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n15\tU.S.-Canadian\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n17\tfree\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\ttrade\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tagreement\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\truled\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n24\tCanada\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\trestrictions\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n27\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\texports\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tPacific\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tsalmon\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\therring\t_\tNOUN\tVBG\t_\t31\tconj\t_\t_\n34\tviolate\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\taccord\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tCanada\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\thave\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n9\tuntil\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tNov.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t13\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tresolve\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdispute\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsolution\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\treached\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tthen\t_\tADV\tRB\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t16\tparataxis\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tright\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tsuspend\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tsome\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\ttrade\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tconcessions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tequivalent\t_\tNOUN\tNN\t_\t23\tamod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tvalue\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tlosses\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\tsuffered\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tU.S.\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tfish-processing\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tcompanies\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tAlaska\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tPacific\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tNorthwest\t_\tPROPN\tNNP\t_\t38\tconj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tOttawa\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tCanadian\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tTrade\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tMinister\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJohn\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCrosbie\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tdispute-settlement\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpanel\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\taccepted\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n18\tlegitimacy\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tCanada\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tposition\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tuse\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthese\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tlanding\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\trequirements\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tconserve\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tmanage\t_\tVERB\tVB\t_\t31\tconj\t_\t_\n34\tthese\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\timportant\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tfisheries\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tQuestioned\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n2\tabout\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tseeming\t_\tADJ\tVBG\t_\t5\tamod\t_\t_\n5\tcontradiction\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tCanadian\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tviews\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpanel\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\treport\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\taide\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tMrs.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tHills\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tpanel\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n27\thad\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n28\tclearly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\truled\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n30\tthat\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tCanadian\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\ttrade\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\trestrictions\t_\tNOUN\tNNS\t_\t37\tnsubj\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n36\tare\t_\tVERB\tVBP\t_\t37\tcop\t_\t_\n37\tillegal\t_\tADJ\tJJ\t_\t29\tccomp\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n39\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\ttrade\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trepresentative\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tput\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdollar\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\testimate\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlosses\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tresulting\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tCanadian\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\texport\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trestrictions\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCanada\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tinitially\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\texport\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tprohibition\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t9\tnsubjpass\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\treplaced\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tregulations\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\trequiring\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tthat\t_\tDET\tIN\t_\t16\tmark\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tfish\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\thad\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\tbrought\t_\tVERB\tVBN\t_\t16\txcomp\t_\t_\n20\tashore\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tBritish\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tColumbia\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tcommercial\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tfishermen\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\tprior\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\texport\t_\tVERB\tVB\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taction\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tdefended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tCanadian\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tconservation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tgrounds\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tdispute-settlement\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpanel\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trejected\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n10\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tCanadian\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tgovernment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\targument\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tfully\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\texpect\t_\tVERB\tVBP\t_\t27\tccomp\t_\t_\n5\tthat\t_\tSCONJ\tDT\t_\t8\tmark\t_\t_\n6\tCanada\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tcomply\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpanel\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\truling\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tlanding\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trequirement\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\talso\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n22\tmust\t_\tAUX\tMD\t_\t24\taux\t_\t_\n23\tbe\t_\tAUX\tVB\t_\t24\tauxpass\t_\t_\n24\tended\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tshe\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tEarlier\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tinternational\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpanel\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n6\tset\t_\tVERB\tVBD\t_\t5\tacl\t_\t_\n7\tup\t_\tPROPN\tRP\t_\t6\tcompound:prt\t_\t_\n8\tunder\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\trules\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tGeneral\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAgreement\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tTariffs\t_\tPROPN\tNNPS\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tTrade\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tGeneva\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\tdetermined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n24\toriginal\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tCanadian\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tfish-export\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\trestrictions\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tviolated\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n29\tGATT\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\trules\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\two\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\taccept\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdelays\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tafter\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tNov.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\t13\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tfish-processing\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfirms\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tenter\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n19\tinto\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcontracts\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tfall\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tpurchase\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tseason\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcatch\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tCanadian\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\trestrictions\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\tmust\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tremoved\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n9\tbefore\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcontracts\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\tauxpass\t_\t_\n13\tconcluded\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIdle\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tThought\t_\tNOUN\tNNP\t_\t0\troot\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tspend\t_\tVERB\tVB\t_\t26\tdep\t_\t_\n3\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tcarefree\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tidle\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tWhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n10\tduty\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tcalls\t_\tVERB\tVBZ\t_\t14\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tpay\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\theed\t_\tNOUN\tVB\t_\t14\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tTo\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\twhile\t_\tVERB\tIN\t_\t2\tdep\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tprecious\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\taway\t_\tADV\tRB\t_\t19\tcompound:prt\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t26\tpunct\t_\t_\n25\tCharacter\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n27\twhat\t_\tPRON\tWP\t_\t29\tdobj\t_\t_\n28\tyou\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\tneed\t_\tVERB\tVBP\t_\t26\tccomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n2\tMay\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tRichstone\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTelecussed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tguy\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n3\twho\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n4\tthrows\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tintercept\t_\tNOUN\tVB\t_\t4\tdobj\t_\t_\n7\t'Cause\t_\tSCONJ\tNN\t_\t10\tmark\t_\t_\n8\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\treceiver\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tslips\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n11\tShould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tsomehow\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tadvised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\twe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\tAt\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\thome\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tcan\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tread\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tlips\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n2\tDick\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tEmmons\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBancOklahoma\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tcompleted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\trestructuring\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tagreement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tpreviously\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tagreed\t_\tVERB\tVBD\t_\t8\tacl\t_\t_\n11\tto\t_\tADP\tTO\t_\t10\tnmod\t_\t_\n12\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tFederal\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tDeposit\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tInsurance\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tcreditor\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n22\tsubordinated\t_\tVERB\tVBN\t_\t24\tamod\t_\t_\n23\tdebenture\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tholders\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tpermit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tbank\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tholding\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tretire\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tbank\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tdebenture\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tobligations\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tcash\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tequity\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFDIC\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1986\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n7\tprovided\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n8\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n9\t130\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\topen-bank\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tassistance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n15\tBancOklahoma\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tBank\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tOklahoma\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tTulsa\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tmaintain\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\t$\t_\tSYM\t$\t_\t27\tdobj\t_\t_\n29\t90\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tpreferred\t_\tVERB\tJJ\t_\t33\tamod\t_\t_\n33\tstock\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tTulsa\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tbank\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tunit\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t40\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tFDIC\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\treceive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tadditional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twarrants\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tentitling\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t16\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n20\t60\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tBancOklahoma\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tcommon\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\toutstanding\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n29\tup\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n30\tfrom\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\t55\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\t%\t_\tSYM\tNN\t_\t34\tamod\t_\t_\n34\toption\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tFDIC\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n37\treceived\t_\tVERB\tVBD\t_\t34\tacl:relcl\t_\t_\n38\tunder\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tterms\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n42\t1986\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n43\tcapital\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tinfusion\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n6\t76\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubjpass\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\tauxpass\t_\t_\n10\towed\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tcreditor\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\treceive\t_\tVERB\tVB\t_\t42\tccomp\t_\t_\n16\t3.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tBancOklahoma\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tcommon\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tproceeds\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfuture\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tsales\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tfour\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n32\tsubsidiary\t_\tADJ\tNN\t_\t33\tamod\t_\t_\n33\tbanks\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n35\tprivate\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tbuyers\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n38\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\tbank\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n40\tholding\t_\tVERB\tVBG\t_\t41\tamod\t_\t_\n41\tcompany\t_\tNOUN\tNN\t_\t42\tnsubj\t_\t_\n42\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t42\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tunder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tdebenture\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tholders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tget\t_\tVERB\tVB\t_\t50\tccomp\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcommon\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\texchange\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n20\t7.7\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tdebentures\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n25\tholders\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n26\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n27\tBancOklahoma\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tseries\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n30\tA\t_\tDET\tNN\t_\t32\tdet\t_\t_\n31\tpreferred\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tstock\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\twill\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\treceive\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n35\t1.25\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tshares\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tcommon\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tstock\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tevery\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tshare\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tpreferred\t_\tVERB\tVBN\t_\t42\tnmod\t_\t_\n45\tthey\t_\tPRON\tPRP\t_\t46\tnsubj\t_\t_\n46\town\t_\tVERB\tVBP\t_\t42\tacl:relcl\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t50\tpunct\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tcompany\t_\tNOUN\tNN\t_\t50\tnsubj\t_\t_\n50\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t50\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\teconomist\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tLawrence\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tKudlow\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tSept.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\t29\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tissue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tfirm\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tGlobal\t_\tPROPN\tJJ\t_\t20\tcompound\t_\t_\n20\tSpectator\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\tWere\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttrue\t_\tADJ\tJJ\t_\t21\tadvcl\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tweak\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcurrency\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tpaves\t_\tVERB\tVBZ\t_\t3\tdep\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tway\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ttrade\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsurpluses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n15\tthen\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n16\tpresumably\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n17\tArgentina\t_\tNOUN\tNNP\t_\t21\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t21\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcenter\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\ttoday\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tglobal\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\teconomy\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbegin\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\ttomorrow\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\texchange\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n12\tup\t_\tADP\tRP\t_\t15\tdep\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\tone\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t11\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tcommon\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\tall\t_\tDET\tDT\t_\t15\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n25\t16.6\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\t7\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\t3/4\t_\tNUM\tCD\t_\t30\tdep\t_\t_\n30\t%\t_\tSYM\tNN\t_\t32\tdep\t_\t_\n31\tconvertible\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tdebentures\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n33\tdue\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n34\t2001\t_\tNUM\tCD\t_\t33\tnmod:tmod\t_\t_\n35\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tpackage\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tnew\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tdebt\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n42\tcommon\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n43\tstock\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\twarrants\t_\tNOUN\tNNS\t_\t40\tconj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tterms\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tsporting\t_\tNOUN\tVBG\t_\t10\tcompound\t_\t_\n9\tgoods\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tmaker\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tswap\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n14\t9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n15\tface\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tamount\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\t9\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t1/4\t_\tNUM\tCD\t_\t20\tdep\t_\t_\n20\t%\t_\tSYM\tNN\t_\t22\tdep\t_\t_\n21\tsubordinated\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n22\tnotes\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\tdue\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n24\t1996\t_\tNUM\tCD\t_\t23\tnmod:tmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n26\tone\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\twarrant\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n28\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\teach\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tcommon\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tEach\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twarrant\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tallows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tholder\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tBSN\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t10.75\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tany\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tnext\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tseven\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tcurrently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t4.6\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tcommon\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\toutstanding\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\toffering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t850\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n7\tface\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tamount\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tnotes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t64\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tcommon-stock\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twarrants\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\teach\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\t$\t_\tSYM\t$\t_\t21\tamod\t_\t_\n19\t1,000\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n20\tface\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tamount\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tconvertible\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdebt\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\toutstanding\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tcan\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tredeem\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twarrants\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\toption\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t1\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n15\teach\t_\tDET\tDT\t_\t14\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tcontingent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tcertain\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tamount\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\tbeing\t_\tAUX\tVBG\t_\t15\tauxpass\t_\t_\n15\texchanged\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tmaking\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\toffer\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tshrink\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcapital\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tincrease\t_\tVERB\tNN\t_\t9\tconj\t_\t_\n14\tshareholder\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tvalue\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n2\tall\t_\tDET\tPDT\t_\t4\tdet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbondholders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tholders\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tone\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tcommon\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\taccept\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tBSN\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tincrease\t_\tVERB\tVB\t_\t42\tccomp\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tdebt\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n23\t9\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n28\talso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n29\twill\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\trecognize\t_\tVERB\tVB\t_\t18\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\t$\t_\tSYM\t$\t_\t35\tamod\t_\t_\n33\t2\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\tgain\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n36\tfrom\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n37\tretiring\t_\tVERB\tVBG\t_\t35\tacl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\told\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tdebt\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n42\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n43\tMichael\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n44\tJ.\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tBlumenfeld\t_\tPROPN\tNNP\t_\t42\tnsubj\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\tpresident\t_\tNOUN\tNN\t_\t45\tappos\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t42\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n4\tsufficient\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcash\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tflow\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\thandle\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tthat\t_\tPRON\tDT\t_\t8\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffers\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\texpire\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tmid\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n10\tlate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tNovember\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tincome\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t37\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tBear\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tStearns\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCos.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tposted\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\t7.5\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t%\t_\tSYM\tNN\t_\t20\tamod\t_\t_\n20\tgain\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tnet\t_\tADJ\tNN\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n25\tPaineWebber\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tGroup\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tprofit\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\tfell\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tbut\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n33\twould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n34\thave\t_\tAUX\tVB\t_\t35\taux\t_\t_\n35\trisen\t_\tVERB\tVBN\t_\t30\tconj\t_\t_\n36\twithout\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tspecial\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tgain\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n40\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tyear\t_\tNOUN\tNN\t_\t42\tnmod:npmod\t_\t_\n42\tago\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMerrill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthird-period\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tnet\t_\tADJ\tNN\t_\t8\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n9\t41\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t34\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n21\t65.6\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n25\t58\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshare\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n32\tago\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTotal\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n5\t2.83\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tup\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n9\t10\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n13\t2.57\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfirm\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n7\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tweaker\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\trevenue\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\ttransactions\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\town\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\taccount\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdecline\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t19\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n24\t314.6\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\treduced\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\trevenue\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n29\tfrom\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n30\ttrading\t_\tVERB\tVBG\t_\t28\tacl\t_\t_\n31\tfixed-income\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tsecurities\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tInvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tbanking\t_\tVERB\tNN\t_\t3\tamod\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t22\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t296.6\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tfewer\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n13\tequity\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmunicipal\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\tunderwritings\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tcommission\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\trevenue\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t21\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n14\t462.8\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\thigher\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tvolume\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tstrong\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tsales\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmutual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tfunds\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tderived\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tinterest\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tdividends\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t30\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n12\t1.4\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAsset-management\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n2\tfee\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t12\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t151\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tloss\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t2.2\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tdiscontinued\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n14\toperations\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tdisposal\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n19\tFine\t_\tPROPN\tJJ\t_\t25\tcompound\t_\t_\n20\tHomes\t_\tPROPN\tNNPS\t_\t25\tcompound\t_\t_\n21\tInternational\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tLimited\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tPartnership\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\treal-estate\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsubsidiary\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnet\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tended\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tSept.\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t29\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\treached\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t22.1\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\t23\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tcents\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n25\t20.5\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t20\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tyear-earlier\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tquarter\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGross\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t21\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n8\t580.4\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n12\t478.9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProfit\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\town\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\taccount\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsecurities\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tfirm\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tInvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tbanking\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t25\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tcommission\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\trevenue\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tadvanced\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n12\t31\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tstronger\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tretail\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tholding\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tBear\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tStearns\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tinvestment\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbanking\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tbrokerage\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tfirm\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tJJ\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tBear\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tStearns\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t13.625\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n19\t25\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tPaineWebber\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tnet\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tincome\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n13\t16.8\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\t41\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n22\treflecting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n25\tbroad-based\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\timprovement\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcompany\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tcore\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tbusinesses\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRetail\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tprofit\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n11\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tmodest\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcontributor\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthird-quarter\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tresults\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tnet\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n6\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tbanking\t_\tVERB\tNN\t_\t12\tamod\t_\t_\n12\tfirm\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n15\t20.9\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\t50\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\tincluding\t_\tVERB\tVBG\t_\t28\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tspecial\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tpretax\t_\tADJ\tNN\t_\t28\tamod\t_\t_\n28\tgain\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\t$\t_\tSYM\t$\t_\t28\tnmod\t_\t_\n31\t46.3\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tsale\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tcompany\t_\tNOUN\tNN\t_\t40\tnmod:poss\t_\t_\n39\t's\t_\tPART\tPOS\t_\t38\tcase\t_\t_\n40\tinterest\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n41\tin\t_\tADP\tIN\t_\t46\tcase\t_\t_\n42\tNational\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n43\tCar\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n44\tRental\t_\tPROPN\tJJ\t_\t46\tcompound\t_\t_\n45\tSystems\t_\tPROPN\tNNPS\t_\t46\tcompound\t_\t_\n46\tInc\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n4\t444.9\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t9\tcase\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinterest\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tslightly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n15\t450.7\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tcomposite\t_\tNOUN\tJJ\t_\t5\tcompound\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\tyesterday\t_\tADV\tNN\t_\t9\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tPaineWebber\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t18.50\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n15\t75\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t14\tnmod:npmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSeafirst\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsigned\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tbuilder\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tMartin\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSelig\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tpurchase\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\theadquarters\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbuilding\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tColumbia\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tSeafirst\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCenter\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n25\t354\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPurchase\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\t76-story\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tstructure\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\texecution\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tdefinitive\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tagreement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tapproval\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tboards\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tSeafirst\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n23\tparent\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n25\tBankAmerica\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n29\tapproval\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n30\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tregulators\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tupheaval\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tapparently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\ttriggered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcash\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcrunch\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n12\tyet\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIndividual\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tinvestment\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n7\tarbitragers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n8\twho\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n9\tspeculate\t_\tVERB\tVBP\t_\t2\tacl:relcl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttakeover\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcandidates\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tsuffer\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tliquidity\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tpayment\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n21\tproblems\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tdive\t_\tVERB\tNN\t_\t17\tadvcl\t_\t_\n25\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n26\tthose\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tinvestors\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\toften\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tborrow\t_\tVERB\tVBP\t_\t17\tparataxis\t_\t_\n30\theavily\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tbuy\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n33\ttheir\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tholdings\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n36\tuse\t_\tVERB\tVB\t_\t29\tconj\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tstocks\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n39\tas\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tcollateral\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n41\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tloans\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tseveral\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tlarge\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbanks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tdetected\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n9\tno\t_\tDET\tDT\t_\t10\tneg\t_\t_\n10\tsigns\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tunusual\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdemand\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tcredit\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n17\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tsignal\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdifficulties\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tseeing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n5\tnothing\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tordinary\t_\tADJ\tJJ\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tofficial\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n15\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tTop\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\t10\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tbank\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tgood\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbecause\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n10\tswim\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\twater\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAdded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tanother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texecutive\t_\tNOUN\tNN\t_\t1\tnsubj\t_\t_\n4\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbank\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n10\tWe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n12\tall\t_\tDET\tPDT\t_\t15\tdep\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlittle\t_\tADJ\tJJ\t_\t15\tnmod:npmod\t_\t_\n15\tgoosey\t_\tADJ\tNN\t_\t1\tccomp\t_\t_\n16\tover\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tweekend\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\ttrying\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tforecast\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\twhat\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\thappen\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\t-LCB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n26\tMonday\t_\tPROPN\tNNP\t_\t24\tnmod:tmod\t_\t_\n27\t-RCB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n29\tbut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t34\tnsubjpass\t_\t_\n31\t's\t_\tAUX\tVBZ\t_\t34\tauxpass\t_\t_\n32\tbeen\t_\tVERB\tVBN\t_\t34\tcop\t_\t_\n33\tvery\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tquiet\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tas\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttomorrow\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\thell\t_\tINTJ\tNN\t_\t1\tdiscourse\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t10\tnsubj\t_\t_\n10\tknows\t_\tVERB\tVBZ\t_\t1\tdep\t_\t_\n11\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t2\tnsubj\t_\t_\n2\thappened\t_\tVERB\tVBD\t_\t4\tcsubj\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tfinancial\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n9\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n10\tyet\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tsufficiently\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tcoordinated\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\thandle\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tanother\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmeltdown\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tfiddling\t_\tNOUN\tVBG\t_\t9\tnsubj\t_\t_\n3\twith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tsystems\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tprocedures\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tprevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tfrom\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tsuffering\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tpanic\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\twave\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tselling\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\toperate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tgreater\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tlesser\t_\tADJ\tJJR\t_\t6\tconj\t_\t_\n9\tefficiency\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tplunge\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\twise\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\thalt\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\twhenever\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\tpanic\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tconditions\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tarose\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tadopted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n8\tspecific\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcircuit\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbreakers\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n12\tIf\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tDow\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tJones\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tfalls\t_\tVERB\tVBZ\t_\t27\tadvcl\t_\t_\n18\t250\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tpoints\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tday\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\texchange\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twill\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\thalt\t_\tNOUN\tVB\t_\t10\tdep\t_\t_\n28\ttrading\t_\tVERB\tNN\t_\t27\tdobj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tone\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\thour\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t;\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n33\tif\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdecline\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\thits\t_\tVERB\tVBZ\t_\t43\tadvcl\t_\t_\n37\t400\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tpoints\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\texchange\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n42\twill\t_\tAUX\tMD\t_\t43\taux\t_\t_\n43\tclose\t_\tVERB\tVB\t_\t27\tparataxis\t_\t_\n44\tfor\t_\tADP\tIN\t_\t48\tcase\t_\t_\n45\tan\t_\tDET\tDT\t_\t48\tdet\t_\t_\n46\tadditional\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n47\ttwo\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\thours\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trationale\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tinterruption\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tallow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\treconsider\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tstrategies\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tcalm\t_\tVERB\tJJ\t_\t13\tconj\t_\t_\n18\tsellers\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\tlead\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n21\tbuyers\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tenter\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tindicated\t_\tVERB\tVBD\t_\t30\tamod\t_\t_\n28\tnew\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tlevels\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\timpossible\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tdep\t_\t_\n5\tknow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n6\twhether\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttheory\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\trealistic\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttemporary\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcessation\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tindeed\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdiscourage\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tselling\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tpanic\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tfrom\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tfeeding\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\titself\t_\tPRON\tPRP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpossibility\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tshutting\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n9\tdown\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tintensify\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tfears\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tcause\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n16\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\teven\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tmore\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n19\tabrupt\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tslide\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tprices\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t2\tnsubj\t_\t_\n2\thappened\t_\tVERB\tVBD\t_\t6\tcsubj\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tworst\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tall\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tworlds\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\texchanges\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfollowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n6\town\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tpre-set\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcircuit\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbreakers\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tshut\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n12\tdown\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tabout\t_\tADV\tIN\t_\t16\tadvmod\t_\t_\n15\t3\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tp.m.\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t30\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tafter\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tStandard\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tPoor\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n27\t500\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n28\tstock\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tindex\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\thad\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n31\tfallen\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n32\t12\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tpoints\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tor\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n36\tabout\t_\tADV\tIN\t_\t37\tadvmod\t_\t_\n37\t100\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tpoints\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n39\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\tDow\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n42\tJones\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tindex\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOptions\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tstopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ttrading\t_\tNOUN\tVBG\t_\t3\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tunder\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\town\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\trules\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tremained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\topen\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tnowhere\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\telse\t_\tADV\tJJ\t_\t14\tnmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tgo\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n7\tsellers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n10\tparticularly\t_\tADV\tRB\t_\t12\tdep\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tfocused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tall\t_\tDET\tDT\t_\t17\tdet:predet\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tselling\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tYork\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tStock\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tExchange\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tliquidity\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthat\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tweakened\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tsharply\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfutures\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\toptions\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\topen\t_\tADJ\tJJ\t_\t15\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tadditional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tliquidity\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n12\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\thave\t_\tAUX\tVB\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tprovided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdecline\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n20\tmost\t_\tADV\tJJS\t_\t21\tadvmod\t_\t_\n21\tprobably\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n23\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n24\thave\t_\tAUX\tVB\t_\t27\taux\t_\t_\n25\tbeen\t_\tVERB\tVBN\t_\t27\tcop\t_\t_\n26\tless\t_\tADV\tRBR\t_\t27\tadvmod\t_\t_\n27\tintense\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t3:30\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tintense\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttelephone\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n8\tbetween\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tWashington\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tfutures\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\treopened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\taltogether\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t3:45\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarkets\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tdropped\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n18\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tadditional\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\t30\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tdaily\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tlimit\t_\tNOUN\tNN\t_\t21\tacl:relcl\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tdeclines\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\toptions\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tshut\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tdown\t_\tADP\tRB\t_\t9\tcompound:prt\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tonce\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tmore\t_\tADV\tJJR\t_\t14\tadvmod\t_\t_\n14\tleft\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n15\tall\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\thandled\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n20\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tStock\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tExchange\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trecognize\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tStock\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarkets\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\toptions\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n21\tthough\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tphysically\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tseparate\t_\tADJ\tJJ\t_\t27\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n25\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n26\tactually\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tbecome\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n28\tso\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tclosely\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tintertwined\t_\tVERB\tVBN\t_\t27\txcomp\t_\t_\n31\tas\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tconstitute\t_\tVERB\tVB\t_\t30\tadvcl\t_\t_\n34\tone\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tmarket\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\teffectively\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tvary\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tstrategies\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\texecute\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\torders\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tany\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tone\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tthem\t_\tPRON\tPRP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\ttherefore\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tsense\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\teach\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tadopt\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n11\tdifferent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tcircuit\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tbreakers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tachieve\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tmaximum\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tliquidity\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tminimize\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tvolatility\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\teither\t_\tCONJ\tCC\t_\t2\tcc:preconj\t_\t_\n11\tall\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n13\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n15\topen\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\ttrading\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n19\tnone\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSynchronized\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n2\tcircuit\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbreakers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tslide\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\tprobably\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\tmade\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tsmoother\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\tless\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n25\tvolatile\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\texecutions\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tPART\tVBZ\t_\t3\tdep\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tfor\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\texchanges\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tSecurities\t_\tPROPN\tNNPS\t_\t12\tcompound\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tCommission\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tagree\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tjoint\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tconditions\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tfor\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\thalting\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tstaying\t_\tVERB\tVBG\t_\t19\tconj\t_\t_\n23\topen\t_\tADJ\tJJ\t_\t22\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLet\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\t's\t_\tPRON\tPRP\t_\t1\tdobj\t_\t_\n3\tnot\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\thave\t_\tVERB\tVBP\t_\t1\tdep\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tshut\t_\tVERB\tVBD\t_\t4\txcomp\t_\t_\n8\tdown\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t30\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tminutes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tDow\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tdeclines\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n16\t100\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tanother\t_\tDET\tDT\t_\t20\tnsubj\t_\t_\n20\tshut\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n21\tdown\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\thour\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tafter\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\t250-point\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdecline\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tneed\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\thurried\t_\tADJ\tVBN\t_\t7\tamod\t_\t_\n5\tlast-minute\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttelephone\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tofficials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tdisappear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tonce\t_\tSCONJ\tRB\t_\t17\tmark\t_\t_\n14\trules\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t17\tcop\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tplace\t_\tNOUN\tNN\t_\t12\tadvcl\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tsynchronize\t_\tVERB\tVBP\t_\t17\tccomp\t_\t_\n20\tcircuit\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tbreakers\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tall\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcircuit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbreakers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t16\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tapplied\t_\tVERB\tVBN\t_\t8\txcomp\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tall\t_\tDET\tDT\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\toptions\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\tcontinue\t_\tVERB\tVBP\t_\t16\tccomp\t_\t_\n23\tas\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tlong\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n25\tas\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n27\tNew\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n28\tYork\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tStock\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tExchange\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n31\tremains\t_\tVERB\tVBZ\t_\t24\tadvcl\t_\t_\n32\topen\t_\tADJ\tJJ\t_\t31\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trules\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\tshould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\testablished\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tofficials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tall\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\taffected\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n14\texchanges\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tacting\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n16\tunder\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\toversight\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tapproval\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tgovernment\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tregulatory\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tagencies\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tShould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tSEC\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tCommodities\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tFutures\t_\tPROPN\tNNPS\t_\t9\tcompound\t_\t_\n8\tTrading\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCommission\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tSEC\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n17\tregulates\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tChicago\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tstock-index\t_\tADJ\tNN\t_\t21\tamod\t_\t_\n21\tmarkets\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n24\tunable\t_\tADJ\tJJ\t_\t31\tadvcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tagree\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tissue\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\tmay\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n32\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n33\tbe\t_\tAUX\tVB\t_\t34\tauxpass\t_\t_\n34\tresolved\t_\tVERB\tVBN\t_\t31\txcomp\t_\t_\n35\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tdecision\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tTreasury\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tsecretary\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tways\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tour\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tfinancial\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t10\tauxpass\t_\t_\n9\tbetter\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\tprepared\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n11\ttoday\t_\tADV\tNN\t_\t10\tnmod:tmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\thandle\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthan\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\twere\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n19\ttwo\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n21\tago\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcapacity\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\thandle\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tvolume\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tnearly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tadvmod\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tday\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTelephone\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tservice\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\tauxpass\t_\t_\n5\timproved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcustomers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\ttrying\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\treach\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tbrokers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\tspecialists\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n17\twho\t_\tPRON\tWP\t_\t19\tdobj\t_\t_\n18\tI\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tbelieve\t_\tVERB\tVBP\t_\t15\tacl:relcl\t_\t_\n20\tshould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tstay\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tdespite\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\turgings\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tsome\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tpost-crash\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcritics\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n31\thave\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n32\tlarger\t_\tADJ\tJJR\t_\t34\tamod\t_\t_\n33\tcapital\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tpositions\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n2\tOf\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tcourse\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tspecialists\t_\tNOUN\tNNS\t_\t7\tnmod:poss\t_\t_\n6\t'\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tactions\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\talone\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tnever\t_\tADV\tRB\t_\t11\tneg\t_\t_\n11\tprevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcrack\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWitness\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfact\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n10\tearly\t_\tADJ\tRB\t_\t11\tadvmod\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t9\tadvmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\topened\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n14\tlate\t_\tADJ\tRB\t_\t15\tadvmod\t_\t_\n15\tMonday\t_\tPROPN\tNNP\t_\t13\tadvmod\t_\t_\n16\tbecause\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tof\t_\tADP\tIN\t_\t16\tmwe\t_\t_\n18\tan\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\texcess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsell\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\torders\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t1\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttask\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\timproving\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tperformance\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tunfinished\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFreund\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformer\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tchief\t_\tADJ\tNN\t_\t6\tamod\t_\t_\n6\teconomist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tStock\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tExchange\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tprofessor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\teconomics\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tPace\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tUniversity\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tbusiness\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tschool\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tNew\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tYork\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tUNIFIED\t_\tADJ\tNNP\t_\t3\tamod\t_\t_\n3\tEUROPE\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tposes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tlabor\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproblems\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tprospects\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tfirms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\tsocial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdimension\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tworker\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tconcerns\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tEuropean\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCommunity\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tplan\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\topen\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tinternal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tborders\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t1992\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n23\tcould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tset\t_\tVERB\tVB\t_\t37\tccomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\teffort\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n28\toff\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\trails\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n32\tif\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n33\tnot\t_\tADV\tRB\t_\t34\tneg\t_\t_\n34\tdone\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n35\treasonably\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n37\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n38\tGeneral\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n39\tElectric\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n40\tsenior\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n41\tvice\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n42\tpresident\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n43\tFrank\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tDoyle\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\twanting\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\texpand\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tEurope\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tface\t_\tVERB\tNN\t_\t33\tccomp\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n10\ttough\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpressure\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tunions\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tnations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n17\tsuch\t_\tADJ\tJJ\t_\t20\tcase\t_\t_\n18\tas\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tWest\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGermany\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tplay\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tbig\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tconsulting\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\trole\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tmanagement\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tdecisions\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n32\the\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tFMC\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tBaxter\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInternational\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tunions\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\two\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tlike\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n12\tplant\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trelocations\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tneeded\t_\tVERB\tVBN\t_\t16\tamod\t_\t_\n16\trestructuring\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tmeans\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n20\tlayoffs\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\temployers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tbegun\t_\tVERB\tVBN\t_\t36\tdep\t_\t_\n6\tmoving\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tsouthern\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcountries\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t12\tcase\t_\t_\n11\tas\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tSpain\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tItaly\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twhere\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\twages\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n19\tlow\t_\tADJ\tJJ\t_\t9\tacl:relcl\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tunions\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n22\tare\t_\tVERB\tVBP\t_\t23\tcop\t_\t_\n23\tweaker\t_\tADJ\tJJR\t_\t19\tconj\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n25\tdemand\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\ttrained\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\tlabor\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tmanagers\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n31\twill\t_\tAUX\tMD\t_\t32\taux\t_\t_\n32\trise\t_\tVERB\tVB\t_\t5\tparataxis\t_\t_\n33\tthere\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n35\tFMC\t_\tPROPN\tNNP\t_\t36\tnsubj\t_\t_\n36\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tPfizer\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tFluor\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n5\tGE\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n6\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tbig\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n9\tEC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\t92\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tpluses\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpush\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tjob\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\ttraining\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\tease\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n21\tin\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tmoving\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tfinding\t_\tVERB\tVBG\t_\t22\tconj\t_\t_\n25\tworkers\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCLUBBING\t_\tVERB\tVBG\t_\t10\tcsubj\t_\t_\n2\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tFAN\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBaltimore\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tOrioles\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tfault\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfederal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tjudge\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcase\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\tinvolving\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tplayers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n15\tminor\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n16\tleague\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n17\tBluefield\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tVa.\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tOrioles\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tBaltimore\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tfarm\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tteam\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplayers\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\theckled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpatron\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n10\tJuly\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n11\t4\t_\tNUM\tCD\t_\t10\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n13\t1988\t_\tNUM\tCD\t_\t10\tdep\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tgame\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tMartinsville\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tPhillies\t_\tPROPN\tNNPS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tparent\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\tthat\t_\tDET\tIN\t_\t5\tdet\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n8\tBluefield\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n10\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\thaving\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tjudge\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgame\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n6\tBluefield\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tlost\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t9-8\t_\tNUM\tCD\t_\t7\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tstranding\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n12\tthree\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\trunners\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t...\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tninth\t_\tADJ\tJJ\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tnoted\t_\tVERB\tVBD\t_\t25\tparataxis\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\ttrouble\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tRBR\t_\t2\tamod\t_\t_\n2\ttaunting\t_\tNOUN\tVBG\t_\t12\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tparking\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tplayers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t12\tparataxis\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfight\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfan\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tpunched\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tkicked\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tplayer\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tnsubj\t_\t_\n16\tbroke\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tjaw\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tbaseball\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tbat\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tjudge\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdismissed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfan\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tsuit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tteam\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\thowever\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\truling\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tOrioles\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tinnocent\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tnegligent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\thiring\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n23\tnot\t_\tADV\tRB\t_\t24\tneg\t_\t_\n24\tresponsible\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tfight\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t34\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t34\tcop\t_\t_\n30\toutside\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tplayers\t_\tNOUN\tNNS\t_\t34\tnmod:poss\t_\t_\n33\t'\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\temployment\t_\tNOUN\tNN\t_\t27\tacl:relcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPROPOSALS\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tARISE\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tfor\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tcoping\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tshortage\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tnurses\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\tAssociation\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tAcademic\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tHealth\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCenters\t_\tPROPN\tNNPS\t_\t2\tnmod\t_\t_\n7\treport\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\turges\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tfreeing\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\tnurses\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tduties\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n14\tdo\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\trequire\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n17\tspecial\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tskills\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\trecommends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tbetter\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tretirement\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tday-care\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbenefits\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tbasing\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n12\tpay\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\teducation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\texperience\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tnurses\t_\tNOUN\tNNS\t_\t22\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tdemanding\t_\tADJ\tVBG\t_\t22\tamod\t_\t_\n21\twork\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tschedules\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\topposes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tAmerican\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tMedical\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tAssociation\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tproposal\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tcreating\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n13\tregistered\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcare\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\ttechnologist\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tpotentially\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdivisive\t_\tADJ\tJJ\t_\t3\tadvcl\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsays\t_\tVERB\tVBZ\t_\t3\tparataxis\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tjob\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n28\twould\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tentail\t_\tVERB\tVB\t_\t25\tccomp\t_\t_\n30\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tunwanted\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tnew\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tdoctor\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t38\tpunct\t_\t_\n36\tbedside\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t38\tpunct\t_\t_\n38\textension\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t3\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tadvmod\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t618\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\thospitals\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tsurveyed\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tconsultant\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tHewitt\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAssociates\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tuse\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tclinical\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tladder\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n19\tbasing\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n20\tadvancement\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tperformance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\teducation\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMany\t_\tADV\tJJ\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tuse\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\trecruiting\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\tbonuses\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ttuition\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\treimbursement\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tloan\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trepayment\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tchild-care\t_\tADJ\tNN\t_\t14\tamod\t_\t_\n14\thelp\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tgive\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tlump-sum\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincentives\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMRA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tStaffing\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSystems\t_\tPROPN\tNNPS\t_\t4\tnsubj\t_\t_\n4\tsigns\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tIN\t_\t4\tcompound:prt\t_\t_\n6\tnurses\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tpaid\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\ttravel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tpromising\t_\tVERB\tJJ\t_\t4\tadvcl\t_\t_\n12\tannual\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tup\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t50,000\t_\tNUM\tCD\t_\t13\tacl\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tfree\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tsubsidized\t_\tVERB\tJJ\t_\t19\tconj\t_\t_\n22\thousing\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTREATING\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n2\tEMPLOYEES\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n3\twith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\trespect\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tcrucial\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tmanagers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tconsultant\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tHay\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tGroup\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n14\tafter\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tsurveys\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tworkers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n3\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n5\ttop\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\tfive\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n8\twork\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tvalues\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tFully\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\t80\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t26\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\temployees\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tbosses\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\ttreat\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tthem\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trespect\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n16\tonly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n18\tthird\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthose\t_\tPRON\tDT\t_\t18\tnmod\t_\t_\n21\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n22\tdo\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n23\tn't\t_\tPART\tRB\t_\t24\tneg\t_\t_\n24\tfeel\t_\tVERB\tVB\t_\t20\tacl:relcl\t_\t_\n25\trespected\t_\tVERB\tJJ\t_\t24\txcomp\t_\t_\n26\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n27\tthey\t_\tPRON\tPRP\t_\t29\tnsubjpass\t_\t_\n28\t're\t_\tAUX\tVBP\t_\t29\tauxpass\t_\t_\n29\tsatisfied\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n30\twith\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n31\twhere\t_\tADV\tWRB\t_\t33\tadvmod\t_\t_\n32\tthey\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\twork\t_\tVERB\tVBP\t_\t29\tadvcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tSPRUCING\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tUP\t_\tADP\tRP\t_\t1\tcompound:prt\t_\t_\n3\tTHE\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tDIGS\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n6\tAbout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t200\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\temployees\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tMaryland\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tDepartment\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tEconomic\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tEmployment\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tDevelopment\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tfour\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n21\tpainted\t_\tVERB\tVBD\t_\t1\tparataxis\t_\t_\n22\twalls\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n24\tpolished\t_\tVERB\tVBN\t_\t21\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tcarpeted\t_\tVERB\tVBN\t_\t24\tconj\t_\t_\n27\tfloors\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\tbought\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n30\tplants\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n32\tcleaned\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n33\twindows\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tblinds\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n38\thung\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n39\tpictures\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n40\tat\t_\tADP\tIN\t_\t45\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tagency\t_\tNOUN\tNN\t_\t45\tnmod:poss\t_\t_\n43\t's\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tBaltimore\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\toffice\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t3,000\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\thours\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\twork\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tsave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tstate\t_\tNOUN\tNN\t_\t7\tiobj\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t55,000\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCURBING\t_\tVERB\tVBG\t_\t5\tcsubj\t_\t_\n2\tWAGE\t_\tNOUN\tNNP\t_\t3\tcompound\t_\t_\n3\tBOOSTS\t_\tNOUN\tVBZ\t_\t1\tdobj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tget\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n6\thigh\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpriority\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tagain\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\t1990\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tcollective\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbargaining\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n15\tBureau\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tNational\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tAffairs\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tsurvey\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t250\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tpacts\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\texpiring\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n26\tnext\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t25\tnmod:tmod\t_\t_\n28\tindicates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tlabor-shortage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\twarnings\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\t80\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tnsubj\t_\t_\n7\taim\t_\tVERB\tNN\t_\t0\troot\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tfirst-year\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\twage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tincreases\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tunder\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n14\t4\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n18\t77\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t20\tnsubj\t_\t_\n20\tsay\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n22\t'd\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\ttry\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\treplace\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tworkers\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n28\tif\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tstruck\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n32\twould\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\tconsider\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t33\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTEMPORARY\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tWORKERS\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n4\tgood\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\teducations\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tNational\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAssociation\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tTemporary\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tServices\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tsurvey\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t2,508\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\temployees\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tshows\t_\tVERB\tVBZ\t_\t13\tparataxis\t_\t_\n22\t82\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n24\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tmore\t_\tADJ\tJJR\t_\t23\tnmod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\thigh-school\t_\tADJ\tNN\t_\t29\tamod\t_\t_\n29\teducation\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n32\t31\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t23\tconj\t_\t_\n34\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tcollege\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tdegrees\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tIN\t_\t2\tadvmod\t_\t_\n2\t12\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tretired\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfull-time\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tjob\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\t54\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t15\tnsubjpass\t_\t_\n14\twere\t_\tAUX\tVBD\t_\t15\tauxpass\t_\t_\n15\tasked\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tstay\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\ton\t_\tADP\tIN\t_\t17\tcompound:prt\t_\t_\n19\tfull\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHOME-SALE\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tLOSSES\t_\tNOUN\tNNP\t_\t3\tnsubj\t_\t_\n3\trise\t_\tVERB\tNN\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t9\tnsubjpass\t_\t_\n7\t're\t_\tAUX\tVBP\t_\t9\tauxpass\t_\t_\n8\toften\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tcovered\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n10\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\temployers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsearch\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tways\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tlimit\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdamage\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tadvmod\t_\t_\n2\tthird\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\t439\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tcompanies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tsurveyed\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tEmployee\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tRelocation\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCouncil\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\treport\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\trise\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\t1988\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tIN\t_\t2\tadvmod\t_\t_\n2\t72\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t4\tnsubj\t_\t_\n4\treimburse\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tall\t_\tDET\tDT\t_\t9\tamod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsome\t_\tDET\tDT\t_\t6\tconj\t_\t_\n9\tlosses\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1984\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tmore\t_\tADJ\tRBR\t_\t5\tamod\t_\t_\n5\tcompanies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tgive\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n7\tsales-loss\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\taid\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\treal-estate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tvalues\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tdepreciated\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcouncil\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tRJR\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNabisco\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tRP\t_\t6\tdep\t_\t_\n5\tto\t_\tADP\tTO\t_\t4\tmwe\t_\t_\n6\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n7\t30,000\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tlosses\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tincluding\t_\tVERB\tVBG\t_\t12\tcase\t_\t_\n12\timprovements\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGoodrich\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\two\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tensure\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcoverage\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tprevent\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tcatastrophic\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tloss\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tgiven\t_\tVERB\tVBN\t_\t4\tparataxis\t_\t_\n20\tsome\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\temployees\t_\tNOUN\tNNS\t_\t19\tiobj\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tfull\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tpurchase\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n26\twhen\t_\tADV\tWRB\t_\t28\tadvmod\t_\t_\n27\tvalues\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tfell\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tconcern\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n31\tover\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tdangers\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tposed\t_\tVERB\tVBN\t_\t32\tacl\t_\t_\n34\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tdisposal\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tsite\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tExpress\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tChemical\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tFord\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n9\tNational\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCity\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\thome\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\tlet\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tworker\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tsell\t_\tVERB\tNN\t_\t17\tccomp\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\toutside\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfirm\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n27\tusually\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n28\two\t_\tAUX\tMD\t_\t30\taux\t_\t_\n29\tn't\t_\tPART\tRB\t_\t30\tneg\t_\t_\n30\tcover\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tloss\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1984\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tfirms\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n5\toffering\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\tprepurchase\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\thouse\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tappraisals\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdeter\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n12\toverpaying\t_\tVERB\tVBG\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t40\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tthose\t_\tPRON\tDT\t_\t17\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcouncil\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tpolled\t_\tVERB\tVBN\t_\t19\tacl:relcl\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t28\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t14\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTHE\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tCHECKOFF\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tNational\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAcademy\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tEngineering\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tgives\t_\tVERB\tVBZ\t_\t2\tparataxis\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tinventors\t_\tNOUN\tNNS\t_\t9\tiobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsemiconductor\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmicrochip\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\t$\t_\tSYM\t$\t_\t20\tamod\t_\t_\n18\t350,000\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n19\tachievement\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\taward\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n21\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t5\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\treactionary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\tLetter\t_\tPROPN\tNN\t_\t12\tcompound\t_\t_\n8\tCarriers\t_\tPROPN\tNNS\t_\t12\tcompound\t_\t_\n9\tunion\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tVincent\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tSombrotto\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\taccuses\t_\tVERB\tVBZ\t_\t5\tparataxis\t_\t_\n14\tPhiladelphia\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tpostmaster\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tCharles\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tJames\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n20\t12th\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tcentury\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n22\t...\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n23\toppressive\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tmanagement\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\ttactics\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\twords\t_\tNOUN\tNNS\t_\t29\tdep\t_\t_\n7\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n10\tStock\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n12\tChairman\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tJohn\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tJ.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tPhelan\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tJr.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tjust\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n19\tyour\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n21\treasonably\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tnormal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n24\t400\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion-share\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\tup\t_\tADV\tIN\t_\t28\tadvmod\t_\t_\n28\t88-points\t_\tADJ\tNNS\t_\t29\tamod\t_\t_\n29\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n4\tall\t_\tDET\tDT\t_\t3\tdep\t_\t_\n5\tover\t_\tADV\tIN\t_\t3\tadvmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tstaged\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\thuge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trecovery\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\tBig\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tofficials\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\twere\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n18\tself-congratulatory\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tabout\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\thow\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n21\twell\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tday\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n24\thad\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\tgone\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\texchange\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprocedures\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tpersonnel\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tequipment\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tlinks\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\texchanges\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\tperformed\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n21\tbetter\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n5\toperating\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproblems\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tall\t_\tDET\tDT\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPhelan\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tclosed\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tAll\t_\tDET\tPDT\t_\t4\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tthings\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n5\tthat\t_\tADP\tIN\t_\t7\tdobj\t_\t_\n6\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tset\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tslow\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tdown\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprocess\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlet\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n17\tpeople\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tknow\t_\tVERB\tVB\t_\t16\tdep\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\textreme\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tposition\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n28\tworked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\textremely\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\twell\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n2\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t416.3\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tchanged\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n9\thands\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsession\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\twere\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tcarried\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n15\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\texchange\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttape\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tbarely\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdelay\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tofficials\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\treaching\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n3\tblockbuster\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tproportions\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tvolume\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n10\tstill\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n11\twell\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n12\twithin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t600\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion-share\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcapacity\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n17\tthat\t_\tADP\tIN\t_\t21\tdobj\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\texchange\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\tcan\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\thandle\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\tdaily\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\tsince\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\tbeefing\t_\tVERB\tVBG\t_\t24\tadvcl\t_\t_\n28\tup\t_\tADP\tRP\t_\t27\tcompound:prt\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\tcomputers\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n31\tafter\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tOctober\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\t1987\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tcrash\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tso-called\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcircuit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbreakers\t_\tNOUN\tNNS\t_\t26\tnsubjpass\t_\t_\n5\tdevised\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tChicago\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tMercantile\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tquell\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n17\tfree\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tfalls\t_\tNOUN\tVBZ\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t26\tauxpass\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\ttriggered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n27\tyesterday\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n28\tbecause\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarkets\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n32\thigher\t_\tADJ\tJJR\t_\t26\tadvcl\t_\t_\n33\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tmost\t_\tADV\tJJS\t_\t32\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tday\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tcomplaints\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tPhelan\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tlinks\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n11\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tChicago\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tworked\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n17\tas\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\tplanned\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\trout\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tprovide\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tcooling-off\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tperiod\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tgreater\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\thelp\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tBig\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tBoard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t11\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n14\tnatural\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcircuit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbreaker\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tweekend\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tprovided\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tbreathing\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tperiod\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tthat\t_\tADP\tIN\t_\t29\tnsubj\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n29\tbrought\t_\tVERB\tVBN\t_\t26\tacl:relcl\t_\t_\n30\trationality\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n31\tback\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tmarket\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tChicken\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tChains\t_\tNOUN\tNNP\t_\t3\tnsubj\t_\t_\n3\tRuffled\t_\tVERB\tNNP\t_\t0\troot\t_\t_\n4\tBy\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tLoss\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tCustomers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n\n1\tFAST-FOOD\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tchicken\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tchains\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tfaced\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tworsening\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tslump\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\tstruggling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\thatch\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tsome\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tmarketing\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tstrategies\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tCrest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tReport\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\ttracks\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tconsumer\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpurchases\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tcustomer\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttraffic\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tchicken\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\trestaurants\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tfell\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n17\t10\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tsecond\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tquarter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\twhile\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\toverall\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n27\tfast-food\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n28\tcustomer\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcount\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n31\tdown\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\t2\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tChicken\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tbusiness\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\toff\t_\tADJ\tRB\t_\t22\tccomp\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\tbecause\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tof\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\tcompetition\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tgrocery-store\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tconvenience\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tfood\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\thome-delivered\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpizza\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\ttakeout\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tfare\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tspokesman\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\treport\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpublication\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tNPD\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tGroup\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n37\tresearch\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tfirm\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n39\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tPort\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tWashington\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tN.Y\t_\tPROPN\tNNP\t_\t41\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tloss\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tcustomers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlatest\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstring\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tproblems\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tChurch\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tFried\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tChicken\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t20\tnsubjpass\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tPopeye\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tFamous\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tFried\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tChicken\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tmerged\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t20\tauxpass\t_\t_\n19\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\ttroubled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\toverlapping\t_\tADJ\tVBG\t_\t24\tamod\t_\t_\n23\trestaurant\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tlocations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tChicken\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tchains\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tfeeling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tpressure\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tMcDonald\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tintroduced\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tMcChicken\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tsandwich\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n21\trecently\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\ttested\t_\tVERB\tVBN\t_\t14\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsale\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tindividual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tpieces\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tchicken\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNew\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tmanagement\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n3\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tKentucky\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tFried\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tChicken\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tunit\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tPepsiCo\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tfought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tback\t_\tADV\tRP\t_\t15\tadvmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n19\tmedium\t_\tNOUN\tNN\t_\t23\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tlarge\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tchicken\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsandwiches\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tlunch\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tcrowd\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tchain\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\ttesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t10\tnsubjpass\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t10\tauxpass\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tfried\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t17\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\tchar-grilled\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tchicken\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttry\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\twin\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\thealth-conscious\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tconsumers\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tKentucky\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tFried\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tChicken\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\ttesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\thome-delivery\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tchicken\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n12\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\thit\t_\tNOUN\tVBN\t_\t7\tacl:relcl\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tstay-at-home\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdiners\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfast-food\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tanalysts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tproblems\t_\tNOUN\tNNS\t_\t16\tnsubjpass\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tkeeping\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n10\tchicken\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\twarm\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tfresh\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tmust\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tsolved\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n17\tfirst\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tKentucky\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tFried\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tChicken\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\tdisputed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnotion\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdelivery\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tservice\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\texperienced\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n17\tproblems\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsome\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarkets\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\twhere\t_\tADV\tWRB\t_\t25\tadvmod\t_\t_\n22\ttesting\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tdiscontinued\t_\tVERB\tVBN\t_\t20\tacl:relcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttest\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tcontinuing\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tChicago\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tColumbus\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tOhio\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcities\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tadvertising\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tbuzzing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\trumors\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tKentucky\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tFried\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tChicken\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tdrop\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n14\tYoung\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n15\t&\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tRubicam\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\tseek\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tnew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tad\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tagency\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclines\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcomment\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEmanuel\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGoldman\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tPaineWebber\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tanalyst\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tKentucky\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tFried\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tChicken\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tpost\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n15\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\t11\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\tdrop\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\t1989\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tnet\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tincome\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n5\tlaggard\t_\tADJ\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t5\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\t'll\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thave\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tbecome\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tmore\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n19\taggressive\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tReluctant\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tAdvertisers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tTry\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tSoft-Sell\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tSpots\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n\n1\tCALL\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n2\tIT\t_\tPRON\tNNP\t_\t3\tnsubj\t_\t_\n3\tun-advertising\t_\tNOUN\tNN\t_\t1\txcomp\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tPittsburgh\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tconsultant\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\tDavid\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBear\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tselling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsoft\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tapproach\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tclients\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\twant\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n14\texposure\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tyet\t_\tCONJ\tRB\t_\t13\tcc\t_\t_\n16\tshun\t_\tVERB\tVBP\t_\t13\tconj\t_\t_\n17\tpushy\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tads\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHis\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tploy\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t60-second\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tradio\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tspots\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\toffer\t_\tVERB\tVBP\t_\t6\tacl:relcl\t_\t_\n9\thelpful\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\thints\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tplug\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsponsor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbrief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmention\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tend\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tspot\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmessages\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tresemble\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBusiness\t_\tPROPN\tNN\t_\t6\tcompound\t_\t_\n6\tTraveler\t_\tPROPN\tNN\t_\t3\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdaily\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdose\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ttravel\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttips\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tdeveloped\t_\tVERB\tVBN\t_\t13\tdep\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tBear\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tsponsored\t_\tVERB\tVBN\t_\t14\tconj\t_\t_\n20\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ttravel\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tagencies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tseveral\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tmajor\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcities\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNew\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tun-advertisers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tBurt\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tHill\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tKosar\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tRittlemann\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociates\t_\tPROPN\tNNPS\t_\t3\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n11\tButler\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tPa.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tarchitectural\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfirm\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tradio\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tseries\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfeatures\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tspots\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tFloodlights\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tEvening\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tWear\t_\tPROPN\tVB\t_\t9\tdep\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tUrban\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tStructures\t_\tPROPN\tNNS\t_\t12\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n19\tBuilding\t_\tVERB\tNNP\t_\t9\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tPlace\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tPark\t_\tVERB\tNNP\t_\t21\tacl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tharder\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tsell\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t16\tparataxis\t_\t_\n6\tJohn\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tKosar\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfirm\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tpresident\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n16\tdetract\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tprofession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tHospitals\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tsigned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tuse\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmessages\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tpromote\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n11\tfundraisers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tEquitable\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tGas\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCo.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tconsidering\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tformat\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\toffer\t_\tVERB\tVB\t_\t18\tadvcl\t_\t_\n23\tenergy\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\ttips\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n26\tconsumers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tsuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tspots\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tsoft\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n4\talways\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trisk\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tlost\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\tmessages\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tJohn\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFitzgerald\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tchairman\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tKetchum\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tAdvertising\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tUSA\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tcreated\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n24\tsimilar\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tradio\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tspots\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tPittsburgh\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tNational\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tBank\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tquestion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\thow\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n8\tmuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcredibility\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tgain\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tpossible\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tloss\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\trecognition\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tRetailer\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tSees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tPitfalls\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tEnvironmental\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tPush\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n\n1\tHERE\t_\tADV\tRB\t_\t2\tdep\t_\t_\n2\t'S\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tretailer\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n6\t's\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tgetting\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n8\ttough\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpush\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tenvironmentally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsafe\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpackaging\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tproducts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBig\t_\tPROPN\tJJ\t_\t4\tcompound\t_\t_\n2\tBear\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSupermarkets\t_\tPROPN\tNNS\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgrocery\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tchain\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tbased\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSan\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tDiego\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tdisplay\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tshelf\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcards\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n20\tdistribute\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n21\tpamphlets\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\trecommending\t_\tVERB\tVBG\t_\t16\tdep\t_\t_\n23\tproducts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tdeemed\t_\tVERB\tVBD\t_\t23\tacl\t_\t_\n25\tsafe\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n26\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tenvironment\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tchoices\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tresearch\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tDiego\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tEnvironmental\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHealth\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCoalition\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tinclude\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n18\tproducts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tlike\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tMurphy\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tOil\t_\tPROPN\tNN\t_\t23\tcompound\t_\t_\n23\tSoap\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tnoncorrosive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcleaners\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tchain\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tquickly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\trealizing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpitfalls\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tendorsements\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\trecommends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tnonchlorinated\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tdishwasher\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdetergent\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tputs\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n11\tSunlight\t_\tPROPN\tNN\t_\t10\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n14\tenvironmentally\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tsafe\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tlist\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tthrill\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tProcter\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tGamble\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tmaker\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tCascade\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tdishwasher\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tdetergent\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tquestioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tvalidity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tlist\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tnoting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\tthat\t_\tDET\tIN\t_\t15\tmark\t_\t_\n13\tchlorine\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tpresent\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tall\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tdishwasher\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tdetergents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tLever\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBros.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tconfirms\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tSunlight\t_\tPROPN\tNN\t_\t10\tcompound\t_\t_\n10\tbrand\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tdoes\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcontain\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tchlorine\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbleach\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\teven\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n17\tthough\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tlisted\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n22\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlabel\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tpowder\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tversion\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThomas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDahlen\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBear\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\texecutive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tvice\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tchain\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\treviewing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tproduct\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tlist\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tavoid\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n23\tsuch\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tproblems\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tOur\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tintent\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t13\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpromote\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tbest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n9\talternative\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\timportant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t9\tcop\t_\t_\n9\taccurate\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tcustomers\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\twishes\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\twhat\t_\tPRON\tWP\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tprevail\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBig\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tBear\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tcare\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tdisposable\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdiapers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tbiodegradable\t_\tADJ\tJJ\t_\t8\tacl:relcl\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYet\t_\tCONJ\tRB\t_\t3\tcc\t_\t_\n2\tparents\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdemand\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthem\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDahlen\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n6\tWe\t_\tPRON\tPRP\t_\t10\tnsubjpass\t_\t_\n7\t'll\t_\tAUX\tMD\t_\t10\taux\t_\t_\n8\tstill\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n10\tforced\t_\tVERB\tVBN\t_\t1\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsell\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\titems\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n15\tmight\t_\tAUX\tMD\t_\t18\taux\t_\t_\n16\tnot\t_\tPART\tRB\t_\t18\tneg\t_\t_\n17\tphilosophically\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tagree\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n19\twith\t_\tADP\tIN\t_\t18\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tOdds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tEnds\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n\n1\tNEATNESS\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tcount\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tat\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n6\tleast\t_\tADJ\tJJS\t_\t5\tmwe\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgrocery\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tstore\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstudy\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tSafeway\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tScanner\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tMarketing\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tResearch\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tsoap\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tclimbed\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n13\t5\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n16\tbars\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n17\twere\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n18\tneatly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tstacked\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tshelves\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tinstead\t_\tADV\tRB\t_\t19\tcc\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tdumped\t_\tVERB\tVBN\t_\t19\tconj\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\twire\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tbasket\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t...\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tWhich\t_\tDET\tWDT\t_\t3\tdet\t_\t_\n2\tcelebrity\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tendorsers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\tmost\t_\tADV\tRBS\t_\t6\tadvmod\t_\t_\n6\tbelievable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t?\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\trow\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tconsumers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tBill\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCosby\t_\tPROPN\tNNP\t_\t13\tdep\t_\t_\n13\tfirst\t_\tADJ\tRB\t_\t10\txcomp\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tJames\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tGarner\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n17\tsecond\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpersuasiveness\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tspokesmen\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tTV\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcommercials\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n26\taccording\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n27\tto\t_\tADP\tTO\t_\t26\tmwe\t_\t_\n28\tVideo\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tStoryboard\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tTests\t_\tPROPN\tNNS\t_\t10\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tNew\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tYork\t_\tPROPN\tNNP\t_\t30\tappos\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMichael\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tJ.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tFox\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tBruce\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tWillis\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthird\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tplace\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n11\tCher\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tplaced\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n13\tfourth\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsecond\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttime\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHealth\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tHuman\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tServices\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tSecretary\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tLouis\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSullivan\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tchosen\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n10\tAntonia\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tNovello\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tnext\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tsurgeon\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tgeneral\t_\tNOUN\tJJ\t_\t9\txcomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tBush\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tadministration\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tofficials\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tnominated\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tPresident\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBush\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tconfirmed\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tSenate\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\tDr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tNovello\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tsucceed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tC.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tEverett\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tKoop\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n23\trattled\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n24\tliberals\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tconservatives\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\talike\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n28\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\this\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\toutspoken\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tviews\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n32\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\trange\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\thealth\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tissues\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tDr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNovello\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\texpert\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tpediatric\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tkidney\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdiseases\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tdeputy\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdirector\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tNational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tInstitute\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tChild\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHealth\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tHuman\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDevelopment\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tserved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\ttask\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tforces\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tacquired\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n11\timmune\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tdeficiency\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsyndrome\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNovello\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\toffice\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tshe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\ttalk\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\treporters\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\trefused\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\trelease\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinformation\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\ther\t_\tPRON\tPRP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnewsletter\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tMedicine\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tHealth\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tfirst\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdisclosed\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n10\ther\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tselection\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tDr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSullivan\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tshe\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\t44\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n21\told\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tshe\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tstudied\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n25\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n27\tUniversity\t_\tPROPN\tNNP\t_\t31\tdep\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tPuerto\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tRico\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\tSchool\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tMedicine\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcontinuing\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tseries\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tHUD\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tscandals\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tsadly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tpredictable\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tresult\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tpork-barrel\t_\tNOUN\tJJ\t_\t14\tcompound\t_\t_\n14\tpolitics\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n3\tlobbies\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t8\tcase\t_\t_\n5\tas\t_\tADP\tIN\t_\t4\tmwe\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tHome\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tBuilders\t_\tPROPN\tNNPS\t_\t8\tnmod\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n13\tNAHB\t_\tPROPN\tNN\t_\t8\tappos\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n15\tcontinue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tpressure\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tCapitol\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tHill\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tmore\t_\tADJ\tRBR\t_\t23\tamod\t_\t_\n22\tspecial-interest\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tspending\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tKent\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tColton\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tNAHB\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\texecutive\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n6\tvice\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tfaces\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tmultifaceted\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\thousing\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcrisis\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n19\treduced\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n20\taffordability\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\thomes\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tfirst-time\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n27\tincreased\t_\tVERB\tVBD\t_\t28\tamod\t_\t_\n28\thomelessness\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n31\tlower\t_\tADJ\tJJR\t_\t34\tamod\t_\t_\n32\tapartment\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n33\tconstruction\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\trates\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n35\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n36\tthat\t_\tDET\tWDT\t_\t41\tnsubj\t_\t_\n37\twill\t_\tAUX\tMD\t_\t41\taux\t_\t_\n38\tbe\t_\tVERB\tVB\t_\t41\tcop\t_\t_\n39\t``\t_\tPUNCT\t``\t_\t41\tpunct\t_\t_\n40\tvery\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\tdifficult\t_\tADJ\tJJ\t_\t17\tacl:relcl\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n43\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n44\tsolve\t_\tVERB\tVB\t_\t41\txcomp\t_\t_\n45\t``\t_\tPUNCT\t``\t_\t44\tpunct\t_\t_\n46\twithout\t_\tADP\tIN\t_\t49\tcase\t_\t_\n47\texpanded\t_\tVERB\tVBN\t_\t49\tamod\t_\t_\n48\tfederal\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tresources\t_\tNOUN\tNNS\t_\t44\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n51\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tnothing\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n4\tunusual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tbusiness\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tgroups\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tpushing\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tspending\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tNAHB\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tcreated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1943\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\torganization\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tmade\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tname\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tfighting\t_\tVERB\tVBG\t_\t13\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tRoosevelt\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tadministration\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tproposal\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\ttake\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tover\t_\tADP\tRP\t_\t27\tdep\t_\t_\n24\tall\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tdefense\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\thousing\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tproduction\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThrough\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tassociation\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t10\tcop\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tactive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmember\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttaxpayer\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tcoalition\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tpushing\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tinitiatives\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tbalanced-budget\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tamendment\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmatters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tclose\t_\tADJ\tRB\t_\t3\tamod\t_\t_\n5\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\ter\t_\tINTJ\tNN\t_\t9\tdiscourse\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\thome\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tHUD\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tbudget\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tdropped\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t10\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n10\t70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n12\tsince\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1980\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tColton\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t4\tdobj\t_\t_\n6\tthan\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tour\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tfair\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tshare\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tproblem\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprograms\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\ttaken\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsimilar\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thit\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tNAHB\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tsupport\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tsubsidies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\trelated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\thousing\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcrunch\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyears\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tNAHB\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tbacked\t_\tVERB\tVBN\t_\t8\tparataxis\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\thost\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tpublic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprograms\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tonce\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tpushed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tnational\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\thousing\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tproduction\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tgoal\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tset\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgovernment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n17\tregularly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tadvanced\t_\tVERB\tJJ\t_\t3\tconj\t_\t_\n19\tanti-recession\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\thousing\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmeasures\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\texplains\t_\tVERB\tVBZ\t_\t10\tparataxis\t_\t_\n4\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tHUD\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tNAHB\t_\tPROPN\tNN\t_\t10\tnsubj\t_\t_\n10\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tsusceptible\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tinternal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpressure\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmembers\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tspecialize\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tsubsidized\t_\tVERB\tJJ\t_\t21\tamod\t_\t_\n21\tproduction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tassociation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tpushing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\textensive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\texpensive\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n9\twish-list\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tsubstantially\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tboost\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n15\tspending\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tabove\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcurrent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlevel\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t23\tadvmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n24\t15\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tannually\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tpeg\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tceiling\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tFederal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tHousing\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tAdministration\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tmortgage\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tguarantees\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\t95\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t5\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmedian\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tparticular\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n26\tinstead\t_\tADV\tRB\t_\t28\tmark\t_\t_\n27\tof\t_\tSCONJ\tIN\t_\t26\tmwe\t_\t_\n28\tlimiting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t28\tdobj\t_\t_\n30\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t101,250\t_\tNUM\tCD\t_\t28\tnmod\t_\t_\n33\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n34\treduce\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n35\t-LRB-\t_\tPUNCT\t-LRB-\t_\t38\tpunct\t_\t_\n36\tor\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n37\teven\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\teliminate\t_\tVERB\tVB\t_\t34\tdep\t_\t_\n39\t-RRB-\t_\tPUNCT\t-RRB-\t_\t38\tpunct\t_\t_\n40\tFHA\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n41\tdown-payment\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\trequirements\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n44\tincrease\t_\tVERB\tVB\t_\t34\tconj\t_\t_\n45\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tavailability\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n47\tof\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tvariable-rate\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tmortgages\t_\tNOUN\tNNS\t_\t46\tnmod\t_\t_\n50\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n51\texpand\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n52\tthe\t_\tDET\tDT\t_\t58\tdet\t_\t_\n53\tVeterans\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n54\tAffairs\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n55\tDepartment\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n56\tloan\t_\tNOUN\tNN\t_\t58\tcompound\t_\t_\n57\tguarantee\t_\tNOUN\tNN\t_\t58\tcompound\t_\t_\n58\tprogram\t_\tNOUN\tNN\t_\t51\tdobj\t_\t_\n59\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n60\tprovide\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n61\t``\t_\tPUNCT\t``\t_\t64\tpunct\t_\t_\n62\tadequate\t_\tADJ\tJJ\t_\t64\tamod\t_\t_\n63\t''\t_\tPUNCT\t''\t_\t64\tpunct\t_\t_\n64\tfunding\t_\tNOUN\tNN\t_\t60\tdobj\t_\t_\n65\tfor\t_\tADP\tIN\t_\t69\tcase\t_\t_\n66\tthe\t_\tDET\tDT\t_\t69\tdet\t_\t_\n67\tFarmers\t_\tPROPN\tNNP\t_\t69\tcompound\t_\t_\n68\tHome\t_\tPROPN\tNNP\t_\t69\tcompound\t_\t_\n69\tAdministration\t_\tPROPN\tNNP\t_\t64\tnmod\t_\t_\n70\t-LRB-\t_\tPUNCT\t-LRB-\t_\t71\tpunct\t_\t_\n71\tFmHA\t_\tPROPN\tNNP\t_\t69\tappos\t_\t_\n72\t-RRB-\t_\tPUNCT\t-RRB-\t_\t71\tpunct\t_\t_\n73\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n74\tincrease\t_\tVERB\tNN\t_\t5\tconj\t_\t_\n75\tfederal\t_\tADJ\tJJ\t_\t76\tamod\t_\t_\n76\tfunding\t_\tNOUN\tNN\t_\t74\tdobj\t_\t_\n77\tand\t_\tCONJ\tCC\t_\t76\tcc\t_\t_\n78\ttax\t_\tNOUN\tNN\t_\t79\tcompound\t_\t_\n79\tincentives\t_\tNOUN\tNNS\t_\t76\tconj\t_\t_\n80\tfor\t_\tADP\tIN\t_\t82\tcase\t_\t_\n81\tthe\t_\tDET\tDT\t_\t82\tdet\t_\t_\n82\tconstruction\t_\tNOUN\tNN\t_\t76\tnmod\t_\t_\n83\tof\t_\tADP\tIN\t_\t87\tcase\t_\t_\n84\tlow-income\t_\tADJ\tJJ\t_\t87\tamod\t_\t_\n85\tand\t_\tCONJ\tCC\t_\t84\tcc\t_\t_\n86\trental\t_\tNOUN\tJJ\t_\t84\tconj\t_\t_\n87\thousing\t_\tNOUN\tNN\t_\t82\tnmod\t_\t_\n88\t,\t_\tPUNCT\t,\t_\t76\tpunct\t_\t_\n89\tincluding\t_\tVERB\tVBG\t_\t90\tcase\t_\t_\n90\t$\t_\tSYM\t$\t_\t76\tnmod\t_\t_\n91\t4\t_\tNUM\tCD\t_\t92\tcompound\t_\t_\n92\tbillion\t_\tNUM\tCD\t_\t90\tnummod\t_\t_\n93\tin\t_\tADP\tIN\t_\t95\tcase\t_\t_\n94\tblock\t_\tNOUN\tNN\t_\t95\tcompound\t_\t_\n95\tgrants\t_\tNOUN\tNNS\t_\t90\tnmod\t_\t_\n96\tto\t_\tADP\tTO\t_\t97\tcase\t_\t_\n97\tstates\t_\tNOUN\tNNS\t_\t95\tnmod\t_\t_\n98\tand\t_\tCONJ\tCC\t_\t97\tcc\t_\t_\n99\tlocalities\t_\tNOUN\tNNS\t_\t97\tconj\t_\t_\n100\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n101\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n102\t``\t_\tPUNCT\t``\t_\t104\tpunct\t_\t_\n103\tfully\t_\tADV\tRB\t_\t104\tadvmod\t_\t_\n104\tfund\t_\tVERB\tNN\t_\t5\tconj\t_\t_\n105\t''\t_\tPUNCT\t''\t_\t104\tpunct\t_\t_\n106\tthe\t_\tDET\tDT\t_\t108\tdet\t_\t_\n107\tMcKinney\t_\tPROPN\tNNP\t_\t108\tcompound\t_\t_\n108\tAct\t_\tPROPN\tNNP\t_\t104\tdobj\t_\t_\n109\t,\t_\tPUNCT\t,\t_\t108\tpunct\t_\t_\n110\ta\t_\tDET\tDT\t_\t114\tdet\t_\t_\n111\t$\t_\tSYM\t$\t_\t114\tamod\t_\t_\n112\t656\t_\tNUM\tCD\t_\t113\tcompound\t_\t_\n113\tmillion\t_\tNUM\tCD\t_\t111\tnummod\t_\t_\n114\tpotpourri\t_\tNOUN\tNN\t_\t108\tappos\t_\t_\n115\tfor\t_\tADP\tIN\t_\t117\tcase\t_\t_\n116\tthe\t_\tDET\tDT\t_\t117\tdet\t_\t_\n117\thomeless\t_\tADJ\tNN\t_\t114\tnmod\t_\t_\n118\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDirect\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfederal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsubsidies\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\thousing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconstruction\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tproved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tintolerably\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\texpensive\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpast\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n16\tinevitably\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t18\tauxpass\t_\t_\n18\ttwisted\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbenefit\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\twell-connected\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdevelopers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tlobbyists\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tas\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tdemonstrated\t_\tVERB\tVBN\t_\t24\tdep\t_\t_\n30\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tongoing\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\tHUD\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tscandal\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n36\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n37\tcongressmen\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIndirect\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsubsidies\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tthrough\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tFHA\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinstance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tlittle\t_\tADV\tJJ\t_\t13\tadvmod\t_\t_\n13\tbetter\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThough\t_\tPROPN\tIN\t_\t4\tdep\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tColton\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t47\tadvcl\t_\t_\n5\texpanding\t_\tVERB\tVBG\t_\t9\tcsubj\t_\t_\n6\tFHA\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tlending\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tresult\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n12\tno\t_\tDET\tDT\t_\t13\tneg\t_\t_\n13\tcost\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tgovernment\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t47\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tmere\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdiversion\t_\tNOUN\tNN\t_\t47\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tfunds\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tparts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\teconomy\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tother\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tforms\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\thousing\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\t-LRB-\t_\tPUNCT\t-LRB-\t_\t39\tpunct\t_\t_\n37\tsuch\t_\tADJ\tJJ\t_\t39\tcase\t_\t_\n38\tas\t_\tADP\tIN\t_\t37\tmwe\t_\t_\n39\tlow-income\t_\tNOUN\tJJ\t_\t33\tnmod\t_\t_\n40\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n41\tto\t_\tADP\tTO\t_\t45\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n43\tsingle-family\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n44\thome\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n45\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n46\twould\t_\tAUX\tMD\t_\t47\taux\t_\t_\n47\tresult\t_\tVERB\tVB\t_\t0\troot\t_\t_\n48\tin\t_\tADP\tIN\t_\t51\tcase\t_\t_\n49\ta\t_\tDET\tDT\t_\t51\tdet\t_\t_\n50\tmajor\t_\tADJ\tJJ\t_\t51\tamod\t_\t_\n51\texpense\t_\tNOUN\tNN\t_\t47\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tMore\t_\tADV\tRBR\t_\t2\tadvmod\t_\t_\n2\timportant\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\thousing\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprograms\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n6\trun\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tHUD\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tVA\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tFmHA\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n16\tawash\t_\tADV\tJJ\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tred\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tink\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFHA\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talone\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t4.2\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tfiscal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\t1988\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgovernment\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tequity\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tagency\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tessentially\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\treserve\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tfund\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tfell\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tminus\t_\tADP\tCC\t_\t28\tamod\t_\t_\n28\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n29\t2.9\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfederal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgovernment\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\thad\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpump\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tin\t_\tADP\tIN\t_\t7\tcompound:prt\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n10\t2.28\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tinto\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tVA\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\thousing\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprogram\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n17\tsince\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t1984\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tkeep\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfund\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tafloat\t_\tADV\tRB\t_\t20\txcomp\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tVA\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\trequested\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n28\tan\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tadditional\t_\tADJ\tJJ\t_\t30\tadvmod\t_\t_\n30\t$\t_\tSYM\t$\t_\t27\tdobj\t_\t_\n31\t120\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n33\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tfiscal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tyear\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n37\tjust\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tended\t_\tVERB\tVBD\t_\t36\tacl\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t8\tadvmod\t_\t_\n2\ttold\t_\tVERB\tVBD\t_\t1\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfederal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tgovernment\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\talready\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tguarantees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tmore\t_\tADJ\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n12\t900\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmortgages\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n3\tnicely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tproduced\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\tpublication\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tWhere\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n8\tWill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n9\tOur\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tChildren\t_\tNOUN\tNNP\t_\t11\tnsubj\t_\t_\n11\tLive\t_\tVERB\tNNP\t_\t5\tdep\t_\t_\n12\t?\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tNAHB\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tacknowledge\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tcourse\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfull\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tmeasure\t_\tNOUN\tNN\t_\t32\tnsubjpass\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\thousing\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\taffordability\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tcan\t_\tAUX\tMD\t_\t32\taux\t_\t_\n30\tnot\t_\tPART\tRB\t_\t32\tneg\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\tprovided\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tfederal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tgovernment\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpoints\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpernicious\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\timpact\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tlocal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tgovernment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tregulation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tparticularly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tzoning\t_\tNOUN\tVBG\t_\t10\tappos\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tbuilding\t_\tNOUN\tVBG\t_\t16\tcompound\t_\t_\n16\tfees\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tpushes\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tprice\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\thousing\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tout\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\treach\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tlow-\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tmiddle-income\t_\tADJ\tJJ\t_\t29\tconj\t_\t_\n32\tpeople\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n2\twhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tNAHB\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tsuggested\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n7\tactions\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tthat\t_\tADP\tWDT\t_\t13\tdobj\t_\t_\n9\tstates\t_\tNOUN\tVBZ\t_\t13\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tlocalities\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n12\tshould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\ttake\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\treduce\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tregulatory\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbarriers\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tassociation\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tproposed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n24\tactivist\t_\tADJ\tNN\t_\t26\tamod\t_\t_\n25\tlegislative\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprogram\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t--\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n28\tcomparable\t_\tADJ\tJJ\t_\t26\tdep\t_\t_\n29\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n31\tsay\t_\tVERB\tVBP\t_\t35\tdep\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n34\tdetailed\t_\tVERB\tJJ\t_\t35\tamod\t_\t_\n35\trequest\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tmore\t_\tADJ\tJJR\t_\t39\tamod\t_\t_\n38\tfederal\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tsubsidies\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\t--\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n41\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n42\teliminate\t_\tVERB\tVB\t_\t26\tacl\t_\t_\n43\tcounterproductive\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tcontrols\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tassociation\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmajority\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\twhose\t_\tPRON\tWP$\t_\t9\tnmod:poss\t_\t_\n8\t156,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tbuild\t_\tVERB\tVBP\t_\t2\tacl:relcl\t_\t_\n11\tfewer\t_\tADJ\tJJR\t_\t13\tadvmod\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tadvmod\t_\t_\n13\t25\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tunits\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n19\tlike\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tmany\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tother\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tbusiness\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlobbies\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tExplains\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n2\tSheila\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMacDonald\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tTaxpayers\t_\tPROPN\tNNPS\t_\t8\tcompound\t_\t_\n8\tUnion\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n11\tIt\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\ttreads\t_\tVERB\tVBZ\t_\t1\tccomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tworlds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbuilders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tlike\t_\tVERB\tIN\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsubsidies\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsame\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\ttend\t_\tVERB\tVBP\t_\t3\tconj\t_\t_\n14\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\tfiscal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tconservatives\t_\tNOUN\tNNS\t_\t13\txcomp\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tterms\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tmajor\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tissues\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tsuch\t_\tADJ\tJJ\t_\t28\tcase\t_\t_\n25\tas\t_\tADP\tIN\t_\t24\tmwe\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tbalanced-budget\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tamendment\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnfortunately\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\torganization\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tdesire\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tpork\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ttends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\toverride\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tcommitment\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\toverall\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tfiscal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tresponsibility\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n4\twhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tNAHB\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tlobbied\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n11\t19\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tomnibus\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\thousing\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\torganization\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tbasically\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdropped\t_\tVERB\tVBD\t_\t30\tccomp\t_\t_\n22\tout\t_\tADP\tIN\t_\t27\tdep\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\ttaxpayers\t_\tNOUN\tNNS\t_\t27\tnmod:poss\t_\t_\n26\t'\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tcoalition\t_\tNOUN\tNN\t_\t21\tadvcl\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n30\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n31\tMs.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tMacDonald\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tColton\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tNAHB\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tacknowledges\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\tGovernment\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n12\tnot\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tsolve\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tproblem\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t...\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tkey\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\thave\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teconomy\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tworking\t_\tVERB\tNN\t_\t6\txcomp\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tinterest\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\trates\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n13\tdown\t_\tADV\tRB\t_\t9\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\tmoney\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tHUD\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tincrease\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tdeficit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tdestabilize\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\teconomy\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tmoney\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tmunicipalities\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\twrecking\t_\tVERB\tVBG\t_\t17\tacl:relcl\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n22\tlocal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\thousing\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n25\twill\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tfurther\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tinsulate\t_\tVERB\tVB\t_\t6\tparataxis\t_\t_\n28\tthem\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tdestructive\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\teffects\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ttheir\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n35\tpolicies\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t1\tnsubj\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t7\tdobj\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\thome\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbuilders\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\twant\t_\tVERB\tVB\t_\t1\tdep\t_\t_\n8\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBandow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tCato\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInstitute\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tfellow\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t2\tpunct\t_\t_\n2\tSee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\trelated\t_\tVERB\tJJ\t_\t4\tamod\t_\t_\n4\tstory\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n8\tBills\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tMake\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tWishes\t_\tNOUN\tNNP\t_\t12\tnsubj\t_\t_\n12\tCome\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n13\tTrue\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n16\tWSJ\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n17\tOct.\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n18\t17\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n20\t1989\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tattempt\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tgive\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmomentum\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tEuropean\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCommunity\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tplans\t_\tNOUN\tVBZ\t_\t5\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsingle\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcurrency\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tEC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tgovernment\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tleaders\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n21\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tagree\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tset\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdate\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tfor\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tstarting\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n30\tformal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\ttalks\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\ton\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n33\tamending\t_\tVERB\tVBG\t_\t31\tacl\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tEC\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tfounding\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tTreaty\t_\tPROPN\tNNP\t_\t33\tdobj\t_\t_\n39\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tRome\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t4\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tdiplomatic\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsources\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tBrussels\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tmost\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n9\tEC\t_\tPROPN\tNN\t_\t10\tcompound\t_\t_\n10\tleaders\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\ttalks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tbegin\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsecond\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\thalf\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1990\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tmake\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdeclaration\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\ton\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tthat\t_\tPRON\tDT\t_\t27\tnmod\t_\t_\n30\tduring\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tsummit\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tmeeting\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tStrasbourg\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tFrance\t_\tPROPN\tNNP\t_\t35\tappos\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n39\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tDec.\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n41\t8\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n43\t9\t_\tNUM\tCD\t_\t40\tconj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tonly\t_\tADJ\tRB\t_\t4\tamod\t_\t_\n3\tstrong\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\topposition\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tmark\t_\t_\n6\tchanging\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tEC\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\ttreaty\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tBritish\t_\tPROPN\tJJ\t_\t16\tcompound\t_\t_\n13\tPrime\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tMinister\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tMargaret\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tThatcher\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twho\t_\tPRON\tWP\t_\t20\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n20\topposed\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tmark\t_\t_\n22\tcreating\t_\tVERB\tVBG\t_\t20\tadvcl\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tsingle\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tEC\t_\tPROPN\tNN\t_\t26\tcompound\t_\t_\n26\tcurrency\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprocess\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tconvening\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tintergovernmental\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tconference\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tdoes\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tunanimity\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSetting\t_\tVERB\tVBG\t_\t8\tcsubjpass\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdate\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tstart\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\ttreaty\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tno\t_\tDET\tDT\t_\t11\tneg\t_\t_\n10\tlegal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsignificance\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\titself\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\tviewed\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n19\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\timportant\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tpsychological\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tpush\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFrench\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tPresident\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFrancois\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tMitterrand\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tfought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tset\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdate\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tconference\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tduring\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tEC\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tsummit\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tMadrid\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tJune\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmove\t_\tNOUN\tNN\t_\t26\tnsubjpass\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t26\tauxpass\t_\t_\n26\tscuttled\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n27\tbecause\t_\tADV\tIN\t_\t29\tcase\t_\t_\n28\tof\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n29\topposition\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tMrs.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tThatcher\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tWest\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n35\tGerman\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n36\tChancellor\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tHelmut\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tKohl\t_\tPROPN\tNNP\t_\t32\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tDiplomatic\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsources\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tKohl\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tnow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tagree\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tset\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdate\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tconference\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tmake\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t25\tnsubjpass\t_\t_\n19\tclear\t_\tADJ\tJJ\t_\t25\tdep\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tWest\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tGermany\t_\tPROPN\tNNP\t_\t25\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n24\tstill\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tcommitted\t_\tVERB\tVBN\t_\t17\txcomp\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tEC\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tunity\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tcrewcut\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tequities\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\treminds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tme\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tjoke\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tT.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tBoone\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tPickens\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\ttells\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n17\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tguy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\twho\t_\tPRON\tWP\t_\t22\tnsubjpass\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\trun\t_\tVERB\tVBN\t_\t19\tacl:relcl\t_\t_\n23\tover\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tparade\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tasked\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n4\tWhat\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\twent\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\twrong\t_\tADJ\tJJ\t_\t5\tadvmod\t_\t_\n7\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tunfortunate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tvictim\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n15\tIt\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcombination\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthings\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tso\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tGray\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgrand\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmarshal\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparade\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tappear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n10\thave\t_\tAUX\tVB\t_\t13\taux\t_\t_\n11\tbeen\t_\tVERB\tVBN\t_\t13\tcop\t_\t_\n12\texcess\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tleverage\t_\tNOUN\tNN\t_\t8\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tthat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n5\tso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tprobably\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\tbarriers\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n17\tshould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\tauxpass\t_\t_\n20\terected\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tstop\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tprocession\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tend\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\trout\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t32\tpunct\t_\t_\n32\te\t_\tNOUN\tLS\t_\t27\tnmod\t_\t_\n33\t-RRB-\t_\tPUNCT\t-RRB-\t_\t32\tpunct\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tceremonies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tafternoon\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n7\tword\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tspread\t_\tVERB\tNN\t_\t3\tadvcl\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tUAL\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tbuy-out\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tcollapsing\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tunion-bidder\t_\tNOUN\tJJ\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t27\tadvcl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpatch\t_\tVERB\tNN\t_\t4\txcomp\t_\t_\n7\ttogether\t_\tADP\tRB\t_\t6\tcompound:prt\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tsubstitute\t_\tADJ\tNN\t_\t10\tamod\t_\t_\n10\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tconsisting\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tless\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tcash\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tfailure\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tget\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tcash\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tJapanese\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n26\tbanks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tgrowing\t_\tVERB\tVBG\t_\t30\tamod\t_\t_\n30\tfear\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tamong\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tarbitragers\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tpageant\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\thigh-leverage\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\ttakeover\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tdeals\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\tis\t_\tAUX\tVBZ\t_\t41\taux\t_\t_\n41\tending\t_\tVERB\tVBG\t_\t30\tdep\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tLots\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tentries\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tmade\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tparade\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tcourse\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n13\tnotably\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tsurprisingly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tlarge\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tincrease\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tproducer\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\tsignalling\t_\tVERB\tNN\t_\t17\tacl\t_\t_\n23\tFederal\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tReserve\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\ttightness\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tBush\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tadministration\t_\tNOUN\tNN\t_\t36\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\t-LRB-\t_\tPUNCT\t-LRB-\t_\t33\tpunct\t_\t_\n33\ttemporary\t_\tADJ\tJJ\t_\t36\tdep\t_\t_\n34\t?\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t33\tpunct\t_\t_\n36\tdefeat\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n37\tin\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n38\ttrying\t_\tVERB\tVBG\t_\t36\tacl\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tlower\t_\tVERB\tVB\t_\t38\txcomp\t_\t_\n41\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tcapital-gains\t_\tNOUN\tNNS\t_\t43\tcompound\t_\t_\n43\ttax\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tusual\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tfavorable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\treviews\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\theard\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthat\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tever-present\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tmarching\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\tband\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttraders\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\talthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tmost\t_\tADJ\tJJS\t_\t21\tamod\t_\t_\n20\tserious\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstudies\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tsuggest\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n23\tthey\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tplay\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tmusic\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t30\tdobj\t_\t_\n29\tothers\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\twrite\t_\tVERB\tVBP\t_\t27\tacl:relcl\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWDT\t_\t3\tnsubj\t_\t_\n2\treally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tspooked\t_\tVERB\tVBD\t_\t15\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcrowds\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\talong\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\thowever\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsudden\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tconcern\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n18\twhatever\t_\tDET\tWDT\t_\t20\tdep\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\treason\t_\tNOUN\tNN\t_\t28\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpool\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tdebt\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tcapital\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tis\t_\tAUX\tVBZ\t_\t28\taux\t_\t_\n28\tdrying\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n29\tup\t_\tADP\tRP\t_\t28\tcompound:prt\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tGray\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treflects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpanic\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tmainly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\ttakeover\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tarbitragers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\trather\t_\tADV\tRB\t_\t10\tcc\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestor\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tas\t_\tADV\tIN\t_\t30\tadvmod\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\thighly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tmargined\t_\tVERB\tJJ\t_\t22\tamod\t_\t_\n22\tinvestments\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n23\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n26\tdeal\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n29\tare\t_\tAUX\tVBP\t_\t30\tauxpass\t_\t_\n30\tjeopardized\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n31\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tunexpected\t_\tADJ\tJJ\t_\t30\tnmod\t_\t_\n34\tdrying\t_\tVERB\tVBG\t_\t33\tamod\t_\t_\n35\tup\t_\tADP\tRB\t_\t33\tdep\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tlubricant\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\tfor\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tdeal\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tfinancing\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDeal\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tabsorbed\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\theaviest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tlosses\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUAL\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\ttriggered\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tslide\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t224\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n15\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t20\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t14\tnmod:npmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tThursday\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tclose\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAMR\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tMonday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t80\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tdown\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n9\tnearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t20\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t8\tnmod:npmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tThursday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tclose\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t3\tpunct\t_\t_\n2\tBoth\t_\tDET\tCC\t_\t3\tnsubj\t_\t_\n3\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfurther\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thits\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t3\tpunct\t_\t_\n\n1\tHilton\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t20\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n8\tParamount\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tlost\t_\tVERB\tVBD\t_\t2\tparataxis\t_\t_\n10\talmost\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t11\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcareful\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlook\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\treveals\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n6\twhere\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n7\tdeal\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tfinancing\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tsecured\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\ttarget\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprice\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n19\tnot\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\taffected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmultibillion-dollar\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprospects\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbidder\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tmust\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tline\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n10\tup\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tconsortium\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tbanks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tand/or\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tissue\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n17\tbillions\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\thigh-yield\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdebt\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n22\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\twhere\t_\tADV\tWRB\t_\t27\tadvmod\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tdamage\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n26\twas\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tconcentrated\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tso-called\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tjunk\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tsetting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstage\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdramatic\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmarch\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tseveral\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tweeks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tgrowing\t_\tVERB\tVBG\t_\t4\tamod\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdifficulties\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\thigh-leverage\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trestructurings\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ttakeovers\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tResorts\t_\tPROPN\tNNPS\t_\t15\tcompound\t_\t_\n15\tInternational\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tIntegrated\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tResources\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\tCampeau\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tretailing\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tempire\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n26\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tcast\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tpall\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\tover\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tentire\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\thigh-yield\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tsecurities\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\treacted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tby\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tignoring\t_\tVERB\tVBG\t_\t3\tdep\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tefforts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tfloat\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tjunk\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tbonds\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tOhio\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tMattress\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tforcing\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n18\tRamada\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tpostpone\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\tindefinitely\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n23\tplanned\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n24\tjunk-bond\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsale\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\trestructuring\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\thigh-yield\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmutual\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tdeclined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tacross\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tboard\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tmany\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n17\tplanning\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tsell\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\t$\t_\tSYM\t$\t_\t19\tdobj\t_\t_\n21\t11\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tjunk\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tbonds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tyear-end\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n29\texperiencing\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n30\tanxious\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\ttimes\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n3\tall\t_\tDET\tDT\t_\t5\tdep\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\texcesses\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tputting\t_\tVERB\tVBG\t_\t5\tdep\t_\t_\n8\taside\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tartificial\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tboosts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\tthat\t_\tADP\tIN\t_\t16\tdobj\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcode\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tgives\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\tdebt\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tequity\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n24\twhat\t_\tPRON\tWP\t_\t27\tdobj\t_\t_\n25\twe\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\t've\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tseen\t_\tVERB\tVBN\t_\t28\tcsubj\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\treining\t_\tVERB\tVBG\t_\t28\tdep\t_\t_\n32\tthem\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tin\t_\tADP\tIN\t_\t31\tcompound:prt\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tWashington\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tsilent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tleading\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdebacle\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\ttendency\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tmeddle\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tleverage\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tequation\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tremains\t_\tVERB\tVBZ\t_\t8\tconj\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\ttroublesome\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tprospect\t_\tNOUN\tNN\t_\t27\txcomp\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n32\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n33\tthose\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tpreliminary\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tsteps\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n36\tshould\t_\tAUX\tMD\t_\t38\taux\t_\t_\n37\tn't\t_\tPART\tRB\t_\t38\tneg\t_\t_\n38\tdistract\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n39\tus\t_\tPRON\tPRP\t_\t38\tdobj\t_\t_\n40\tfrom\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n42\tbasic\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n43\tmarket\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tfundamentalism\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n45\tthat\t_\tPRON\tWDT\t_\t48\tnsubj\t_\t_\n46\twas\t_\tVERB\tVBD\t_\t48\tcop\t_\t_\n47\tat\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\twork\t_\tNOUN\tNN\t_\t44\tacl:relcl\t_\t_\n49\ton\t_\tADP\tIN\t_\t50\tcase\t_\t_\n50\tFriday\t_\tPROPN\tNNP\t_\t48\tnmod\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tcorrect\t_\tADJ\tJJ\t_\t18\tdep\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tfind\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\tconcerns\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n9\tover\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tcorporate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tLBOs\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n14\tcaused\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n15\tGray\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\twhat\t_\tPRON\tWP\t_\t0\troot\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\timplications\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tpolicy\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmakers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t?\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tall\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tresponse\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcollapse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tUAL\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tdeal\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tmight\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tconfirm\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tanti-debt\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdirection\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tregulators\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\tprivate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tapproving\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tWashington\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tbashing\t_\tNOUN\tVBG\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tWall\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tStreet\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAbsolutely\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnot\t_\tPART\tRB\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\textent\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tsell-off\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\treflected\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsudden\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\treappraisal\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\texcesses\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tleverage\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmessage\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tthat\t_\tDET\tIN\t_\t30\tmark\t_\t_\n22\tWall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStreet\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tprivate\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\tare\t_\tVERB\tVBP\t_\t30\tcop\t_\t_\n29\tfully\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tcapable\t_\tADJ\tJJ\t_\t20\tccomp\t_\t_\n31\tof\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\timposing\t_\tVERB\tVBG\t_\t30\tadvcl\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tappropriate\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tincentives\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tsanctions\t_\tNOUN\tNNS\t_\t35\tconj\t_\t_\n38\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tcorporate\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tbehavior\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\teconomic\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinterests\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t8\tauxpass\t_\t_\n6\tmuch\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tbetter\t_\tADV\tJJR\t_\t8\tadvmod\t_\t_\n8\tserved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tallowing\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tprivate\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinterests\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tbankers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tultimate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tjudges\t_\tNOUN\tNNS\t_\t9\tccomp\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tinvestment\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tquality\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tvarious\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tLBO\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tdeals\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tleveraged\t_\tVERB\tJJ\t_\t31\tamod\t_\t_\n31\trestructurings\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdifficulties\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tjunk-bond\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tscarcity\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tbank\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcapital\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\trecent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdeals\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tunderscores\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\twisdom\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\tletting\t_\tVERB\tVBG\t_\t19\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfree\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\toperate\t_\tVERB\tVBP\t_\t21\tccomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\ttakeover\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tpremiums\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbecome\t_\tVERB\tVBP\t_\t19\tadvcl\t_\t_\n5\texcessive\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\tLBO\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tdealmakers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tbecome\t_\tVERB\tVBP\t_\t19\tdep\t_\t_\n11\ttoo\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\taggressive\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n14\tthen\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tprivate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\trecognize\t_\tVERB\tVB\t_\t0\troot\t_\t_\n20\tthese\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tproblems\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tmore\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n23\tquickly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\taccurately\t_\tADV\tRB\t_\t23\tconj\t_\t_\n26\tthan\t_\tSCONJ\tIN\t_\t27\tdep\t_\t_\n27\twill\t_\tAUX\tMD\t_\t23\tadvcl\t_\t_\n28\tpolicy\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmakers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tmarkets\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n34\twill\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tmove\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n36\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tlightning\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tspeed\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\timpose\t_\tVERB\tVB\t_\t35\txcomp\t_\t_\n41\tappropriate\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tsanctions\t_\tNOUN\tNNS\t_\t40\tdobj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tYes\t_\tINTJ\tUH\t_\t7\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tbroader\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\texchanges\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\tgot\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tcaught\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tspiral\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\trode\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\ttiger\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tup\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n19\tall\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tNot\t_\tPART\tRB\t_\t2\tdep\t_\t_\n2\tsurprisingly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tsometimes\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tbites\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tarbitragers\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tinitiatiors\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\tgot\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tkilled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tGray\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\twhile\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbesieged\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tmanagers\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tprospective\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttargets\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tcheered\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n20\tlustily\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tidentify\t_\tVERB\tVBP\t_\t11\tadvcl\t_\t_\n4\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbesieged\t_\tADJ\tVBN\t_\t7\tamod\t_\t_\n7\tmanagers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tmust\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tconcede\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n13\tspeedy\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\teffective\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\trelief\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\texcesses\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\ttakeover\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n25\tmore\t_\tADV\tRBR\t_\t26\tadvmod\t_\t_\n26\tlikely\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tcome\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tmarketplace\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tthan\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tWashington\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tside\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n4\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tarbitragers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\traiders\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\tclearly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tmore\t_\tADJ\tRBR\t_\t12\txcomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tfear\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tprivate\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tregulators\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n23\talthough\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tDelaware\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tcourts\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n27\tshould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n28\tnever\t_\tADV\tRB\t_\t30\tneg\t_\t_\n29\tbe\t_\tAUX\tVB\t_\t30\tauxpass\t_\t_\n30\tunderestimated\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttruth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tWashington\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tunderstands\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n7\tpolitics\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tbetter\t_\tADJ\tJJR\t_\t6\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\teconomics\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcitizen\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n6\tprobably\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tharmed\t_\tVERB\tVBN\t_\t28\tadvcl\t_\t_\n9\ttoo\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmuch\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tWashington\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\trhetorical\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twar\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\tagainst\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tregarding\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n20\texcessive\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tfinancial\t_\tADJ\tJJ\t_\t19\tdobj\t_\t_\n22\tleveraging\t_\tVERB\tVBG\t_\t21\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n24\tactual\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tlegislation\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tprobably\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\timpose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n29\tconsiderable\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tharm\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAny\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tattempt\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tdistinguish\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tgood\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdebt\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n12\tbad\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdebt\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdraw\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tline\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tparticular\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tindustry\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t29\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tairlines\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n31\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n32\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tblunt\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tspur\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\tthat\t_\tADP\tIN\t_\t43\tdobj\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tproper\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tamount\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n41\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tleverage\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n43\tprovides\t_\tVERB\tVBZ\t_\t36\tacl:relcl\t_\t_\n44\tboth\t_\tDET\tCC\t_\t47\tdep\t_\t_\n45\tto\t_\tADP\tTO\t_\t47\tcase\t_\t_\n46\tequity\t_\tNOUN\tNN\t_\t47\tcompound\t_\t_\n47\tmarkets\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t47\tcc\t_\t_\n49\teconomic\t_\tADJ\tJJ\t_\t50\tamod\t_\t_\n50\tefficiency\t_\tNOUN\tNN\t_\t47\tconj\t_\t_\n51\tin\t_\tADP\tIN\t_\t52\tcase\t_\t_\n52\tgeneral\t_\tNOUN\tJJ\t_\t50\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tFar\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tbetter\t_\tADV\tJJR\t_\t0\troot\t_\t_\n3\tfor\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tpolicy\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmakers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tconcentrate\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\twar\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tagainst\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdrugs\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tPanama\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdeficit\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tall\t_\tDET\tDT\t_\t22\tdep\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tthem\t_\tDET\tPRP\t_\t19\tnmod\t_\t_\n22\tparades\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tseem\t_\tVERB\tVBP\t_\t22\tacl:relcl\t_\t_\n25\tnever\t_\tADV\tRB\t_\t27\tneg\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tend\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tJarrell\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformer\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\ttop\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\teconomist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tSecurities\t_\tPROPN\tNNPS\t_\t12\tcompound\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tCommission\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tteaches\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tUniversity\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tRochester\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n21\tSimon\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tBusiness\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tSchool\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tshare\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tTuesday\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tmorning\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tNikkei\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\t225\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tselected\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\trising\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n17\t618.69\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tpoints\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tclose\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsession\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t35087.38\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindex\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t647.33\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tpoints\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\t1.8\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\t25\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tminutes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tTuesday\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\ttrading\t_\tNOUN\tVBG\t_\t5\tnmod\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tNikkei\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tsoared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t664.83\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpoints\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t35133.83\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t10\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n3\ta.m.\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tTokyo\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\ttime\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t435.11\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t34903.80\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tinvestors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\thailed\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tovernight\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\trally\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tslide\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\trelatively\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcalm\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsession\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tprovide\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n14\tmuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdirection\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmarkets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tShares\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlower\t_\tADV\tJJR\t_\t3\tadvmod\t_\t_\n6\tacross\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tEurope\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tparticularly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tFrankfurt\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\talthough\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n14\tLondon\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n20\trecovered\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n21\tsome\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tground\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tafter\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n24\tstocks\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tbegan\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\trebound\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tNew\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tYork\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n2\tAsian\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tPacific\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n5\tmarkets\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsharper\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tlosses\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tTokyo\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tselling\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\twave\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstopped\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n17\tshort\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tof\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tprecipitating\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n20\tanother\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tcrash\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\teyes\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tTokyo\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\topening\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\ttrade\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tsince\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\t190.58-point\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tplunge\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tWall\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tStreet\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\trather\t_\tADV\tRB\t_\t4\tmark\t_\t_\n3\tthan\t_\tSCONJ\tIN\t_\t2\tmwe\t_\t_\n4\tset\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttone\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tJapan\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tinstitutional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tchose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tremain\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsidelines\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n3\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsudden\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\treappearance\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tstock-market\t_\tADJ\tNN\t_\t9\tamod\t_\t_\n9\tturbulence\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tmanagers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tJapanese\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tinvestment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfunds\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\twere\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tplanning\t_\tVERB\tVBG\t_\t16\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tunload\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tEuropean\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n26\tequities\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\ttrade\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n6\tmuch\t_\tADJ\tJJ\t_\t5\tadvmod\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tour\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tpolicy\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tnow\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\twait\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tsee\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tfund\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmanager\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n24\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tTaisho\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tLife\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tInsurance\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCo\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\twait\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsee\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n9\tuntil\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tgoes\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n12\taround\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n13\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tEurope\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinstitutions\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tconfident\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tJapanese\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tregulators\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tstep\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tin\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tensure\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n13\torderly\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tnecessary\t_\tADJ\tJJ\t_\t9\tadvcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n21\tconsiderable\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tspeculation\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n23\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tday\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tFinance\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tMinistry\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n30\twas\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n31\tworking\t_\tVERB\tVBG\t_\t22\tdep\t_\t_\n32\tbehind\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tscenes\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tdo\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n37\tjust\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tthat\t_\tDET\tDT\t_\t36\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tabsence\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tpanicky\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tpresence\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n12\tnever\t_\tADV\tRB\t_\t14\tneg\t_\t_\n13\tovertly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tfelt\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tclose\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tNikkei\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\taverage\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t225\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tstood\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t34468.69\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tdown\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n16\t647.33\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\t1.8\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t17\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tbroader\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n3\tTokyo\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tPrice\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tIndex\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsank\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t45.66\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n11\t1.7\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t2600.88\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecline\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\tgenerally\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tline\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tanalysts\t_\tNOUN\tNNS\t_\t13\tnmod:poss\t_\t_\n11\t'\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tweekend\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpredictions\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tDeclining\t_\tVERB\tVBG\t_\t2\tamod\t_\t_\n2\tissues\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tswamped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tadvancers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t941-105\t_\tNUM\tCD\t_\t3\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tthin\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\t526.2\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tcompared\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t574.7\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t4\tadvcl\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlower\t_\tADV\tJJR\t_\t3\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tNikkei\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\taverage\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\tdown\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n12\tnearly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t600\t_\tNUM\tCD\t_\t11\tnmod:npmod\t_\t_\n14\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmidmorning\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trebound\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbrought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tshow\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t200\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tend\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmorning\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\trally\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tfailed\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tafternoon\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n33\tclosed\t_\tVERB\tVBD\t_\t25\tconj\t_\t_\n34\tnear\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tday\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tlow\t_\tNOUN\tJJ\t_\t33\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsmaller\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tTokyo\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tsecond\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsection\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\talso\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tbiggest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tTokyo\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsecond\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsection\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t100.96\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\t2.7\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t3655.40\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ttrying\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\toutperform\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tindexes\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tflocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\tthese\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsmall\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tissues\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\trecent\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tweeks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tJapanese\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\ttraders\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n5\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\trelief\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tTokyo\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tfall\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n14\tmore\t_\tADV\tJJR\t_\t15\tadvmod\t_\t_\n15\tsharply\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tperformance\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tbear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresemblance\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tevents\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tyears\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tago\t_\tADV\tRB\t_\t9\tacl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n17\tOctober\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n18\t1987\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n19\tglobal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tcrash\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tOct.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n3\t16\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n9\tbefore\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tBlack\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMonday\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t4.6\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tTokyo\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tfollowed\t_\tVERB\tVBD\t_\t19\tconj\t_\t_\n26\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tMonday\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\twith\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\t2.4\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t32\tamod\t_\t_\n32\tdrop\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tWall\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStreet\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tplunge\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t6.9\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tfollowed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t1.8\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t%\t_\tSYM\tNN\t_\t19\tamod\t_\t_\n19\tloss\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tTokyo\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tTokyo\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tbiggest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tfall\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\tafter\t_\tADP\tIN\t_\t20\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t22.6\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tamod\t_\t_\n18\tBlack\t_\tPROPN\tJJ\t_\t20\tcompound\t_\t_\n19\tMonday\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tplunge\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t26\tadvmod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tNikkei\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\taverage\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tfell\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n27\t14.9\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\t%\t_\tSYM\tNN\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tparticipants\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tahead\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tnervously\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n11\tWall\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStreet\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\topening\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tYork\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIndustrial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAverage\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t88.12\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tclose\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t2657.38\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\theavy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tvolume\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t416,290,000\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tshares\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\talthough\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n26\tdeclining\t_\tVERB\tVBG\t_\t27\tamod\t_\t_\n27\tissues\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\tstill\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\toutnumbered\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n30\tadvancing\t_\tVERB\tVBG\t_\t31\tamod\t_\t_\n31\tones\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tbroad\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tmarket\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tNobuto\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tYasuda\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tYamaichi\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tInvestment\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tTrust\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tManagement\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tsession\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tscenario\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tJapan\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tNow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t16\tccomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttime\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tplace\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tbuy\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\torders\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tus\t_\tPRON\tPRP\t_\t5\tdep\t_\t_\n4\tinstitutional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tchance\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tbuying\t_\tVERB\tNN\t_\t8\tnmod\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tIsao\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tUshikubo\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tgeneral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tinvestment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tresearch\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdepartment\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tToyo\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tTrust\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t&\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tBanking\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCo.\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\talso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n20\toptimistic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdescribed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tplunge\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tfleeting\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tevent\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\tresulting\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tpart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\texcessive\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmerger\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tacquisition\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tactivity\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tUnless\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t9\tadvcl\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpanic\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tthis\t_\tPRON\tDT\t_\t9\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t26\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tbest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\ttime\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbuy\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t19\tdep\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tdep\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcase\t_\tNOUN\tNN\t_\t9\tadvcl\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tyears\t_\tNOUN\tNNS\t_\t22\tnmod:npmod\t_\t_\n22\tago\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n25\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tposted\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n7\tgains\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tM&A\t_\tPROPN\tNN\t_\t10\tcompound\t_\t_\n10\tspeculation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tdashed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcold\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twater\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tfar\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tmajor\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t24\tnsubjpass\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\tconcerned\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tthere\t_\tPRON\tEX\t_\t27\texpl\t_\t_\n27\tis\t_\tVERB\tVBZ\t_\t12\tconj\t_\t_\n28\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n29\tmuch\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\timpact\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tsimilarly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsanguine\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t16\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tplans\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tadjust\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tour\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tasset\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tallocation\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tforeign\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tequities\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tMasato\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMurakami\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tchief\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tportfolio\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmanager\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n23\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tpension\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n26\tfund\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\tmanagement\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tdepartment\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tYasuda\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tTrust\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t&\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tBanking\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tCo\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tdecline\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\twell\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\twithin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trange\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tvolatility\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n17\tthat\t_\tADP\tWDT\t_\t20\tnmod\t_\t_\n18\tYasuda\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tTrust\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tplans\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n21\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tcharts\t_\tVERB\tNNS\t_\t20\tadvcl\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n26\toverseas\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tinvestment\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tstrategy\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tAsian\t_\tADJ\tJJ\t_\t11\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tPacific\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tMalaysia\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tSingapore\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbiggest\t_\tADJ\tJJS\t_\t14\tamod\t_\t_\n14\tlosses\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tKuala\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tLumpur\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcomposite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tindex\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tMalaysia\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\tfalling\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n25\t11.5\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t24\tdobj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n28\tSingapore\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tStraits\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tTimes\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tIndustrial\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tIndex\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n34\tdown\t_\tADV\tIN\t_\t33\tadvmod\t_\t_\n35\t10\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tindexes\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t6\tadvmod\t_\t_\n5\tthan\t_\tADP\tIN\t_\t4\tmwe\t_\t_\n6\t8\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tAustralia\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tZealand\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\t6.5\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t7\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tHong\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tKong\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBangkok\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tManila\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\tSeoul\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\tTaipei\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n9\tJakarta\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n10\tescaped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tslightly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsmaller\t_\tADJ\tJJR\t_\t14\tamod\t_\t_\n14\tlosses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBrokers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tfund\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmanagers\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tregion\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmarkets\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\treacting\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n12\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tWall\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tStreet\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tplunge\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\teven\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n19\tthough\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tthat\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdecline\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n23\tdue\t_\tADJ\tJJ\t_\t11\tadvcl\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\tlocal\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tfactors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tsuch\t_\tADJ\tJJ\t_\t31\tcase\t_\t_\n28\tas\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n29\tfailed\t_\tVERB\tJJ\t_\t31\tamod\t_\t_\n30\tcorporate\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tbuy-outs\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tdeteriorating\t_\tVERB\tVBG\t_\t36\tamod\t_\t_\n35\tjunk-bond\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tpure\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpsychology\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tWilliam\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tAu\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tYeung\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\taccount\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\texecutive\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n16\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n17\tDrexel\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n18\tBurnham\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n19\tLambert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n21\tHK\t_\tPROPN\tNNP\t_\t23\tappos\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n23\tLtd.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tHong\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tKong\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tMarkets\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthis\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tregion\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t9\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\tso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tgeared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tleveraged\t_\tVERB\tJJ\t_\t12\tamod\t_\t_\n12\tbuy-outs\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\teconomies\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n17\tgenerally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshape\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n24\tthere\t_\tPRON\tEX\t_\t25\texpl\t_\t_\n25\t's\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n26\tno\t_\tDET\tDT\t_\t27\tneg\t_\t_\n27\tdoubt\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n28\tthat\t_\tDET\tWDT\t_\t32\tmark\t_\t_\n29\tAsia\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n30\tis\t_\tAUX\tVBZ\t_\t32\taux\t_\t_\n31\tstill\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tfollowing\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n33\tAmerica\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tlead\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tMalaysia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tSingapore\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbiggest\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n10\tlosses\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tbecause\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\trelatively\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\topen\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\trapid\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcash\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tflows\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHong\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKong\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tregion\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t9\tadvmod\t_\t_\n9\topen\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tmany\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tforeign\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n17\tbeen\t_\tAUX\tVBN\t_\t18\taux\t_\t_\n18\tstaying\t_\tVERB\tVBG\t_\t10\tconj\t_\t_\n19\taway\t_\tADP\tRB\t_\t18\tcompound:prt\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t18\tnmod\t_\t_\n22\tsince\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tplunged\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tJune\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\tamid\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tpolitical\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tturmoil\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tChina\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tSingapore\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\ttook\t_\tVERB\tVBD\t_\t24\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tbecause\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\twant\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tget\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tout\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\ttend\t_\tVERB\tVBP\t_\t3\tdep\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tgo\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\twhere\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tliquidity\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tElizabeth\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tHambrecht\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tregional\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tanalyst\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n32\tBaring\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n33\tSecurities\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n34\t-LRB-\t_\tPUNCT\t-LRB-\t_\t36\tpunct\t_\t_\n35\tHong\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tKong\t_\tPROPN\tNNP\t_\t38\tappos\t_\t_\n37\t-RRB-\t_\tPUNCT\t-RRB-\t_\t36\tpunct\t_\t_\n38\tLtd\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpointed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tout\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n5\teven\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n6\tafter\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tMonday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\t10\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t11\tamod\t_\t_\n11\tdecline\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tStraits\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tTimes\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n18\tup\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t24\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n24\tso\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n25\tinvestors\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\tbailed\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n28\tout\t_\tADP\tRP\t_\t27\tcompound:prt\t_\t_\n29\tgenerally\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tdid\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n31\tso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\tprofitably\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSimilarly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tKuala\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLumpur\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tcomposite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tindex\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n9\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t27.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tabove\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\t1988\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tclose\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tHong\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tKong\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tHang\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tSeng\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tIndex\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t180.60\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tfinish\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t2601.70\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tabout\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n6\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tcompared\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t473.9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsession\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\torderly\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcontrast\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tfour-day\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tclosure\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tafter\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcrash\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChenevix-Trench\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tHong\t_\tPROPN\tNNP\t_\t8\tamod\t_\t_\n8\tKong-based\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n9\tBaring\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tInternational\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tFund\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tManagers\t_\tPROPN\tNNPS\t_\t13\tcompound\t_\t_\n13\tLtd.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tprobably\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\thit\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n22\tbottom\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n23\tyet\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n26\tclose\t_\tADJ\tRB\t_\t21\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tYork\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tcollapse\t_\tVERB\tNN\t_\t10\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsee\t_\tVERB\tVBP\t_\t32\tccomp\t_\t_\n11\tmaybe\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tanother\t_\tDET\tDT\t_\t13\tadvmod\t_\t_\n13\t5\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdownside\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tnot\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tcounting\t_\tVERB\tVBG\t_\t10\tdep\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\trisk\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tbad\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tnews\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tout\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tChina\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n31\the\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n32\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAustralia\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tSydney\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tAll\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tOrdinaries\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1601.5\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n14\t8.1\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tbiggest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tdrop\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n20\tsince\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tOctober\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tonly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\t162\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t143\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNestor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHinzack\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tanalyst\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n7\tbrokerage\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n8\tfirm\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n9\tBurdett\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tBuckeridge\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tYoung\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tLtd.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tdescribed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tperformance\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n23\tsheep-like\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n26\tinvestors\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tfled\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n29\tbluechip\t_\tADJ\tNN\t_\t31\tamod\t_\t_\n30\tAustralian\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tstocks\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n33\tshunned\t_\tVERB\tVBD\t_\t27\tconj\t_\t_\n34\tentrepreneurial\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tcompanies\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\tthey\t_\tPRON\tPRP\t_\t37\tnsubj\t_\t_\n37\tperceived\t_\tVERB\tVBN\t_\t35\tacl:relcl\t_\t_\n38\tas\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n39\thaving\t_\tVERB\tVBG\t_\t37\tadvcl\t_\t_\n40\tany\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\ttakeover\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tpremium\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n43\tbuilt\t_\tVERB\tVBN\t_\t39\tccomp\t_\t_\n44\tinto\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tprice\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tLondon\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tFinancial\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tTimes-Stock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\t100-share\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tmost\t_\tADV\tRBS\t_\t11\tadvmod\t_\t_\n11\tclosely\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\twatched\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbarometer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tintraday\t_\tADJ\tNN\t_\t20\tamod\t_\t_\n20\thigh\t_\tNOUN\tJJ\t_\t16\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t2163.4\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tdown\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n25\t70.5\t_\tNUM\tCD\t_\t24\tnmod:npmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n28\t3.2\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t25\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tlow\t_\tADJ\tJJ\t_\t12\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n5\tshortly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\tbefore\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\topened\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\toff\t_\tADJ\tRB\t_\t12\tadvmod\t_\t_\n14\tmore\t_\tADV\tJJR\t_\t16\tadvmod\t_\t_\n15\tthan\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\t130\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tFinancial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tTimes\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\t30-share\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t79.3\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tlower\t_\tADV\tJJR\t_\t6\tadvmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1738.7\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tVolume\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n2\tmore\t_\tADV\tJJR\t_\t4\tadvmod\t_\t_\n3\tthan\t_\tADP\tIN\t_\t2\tcase\t_\t_\n4\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\t959.3\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t457.7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n2\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tFrankfurt\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n7\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\theavy\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdecline\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tGerman\t_\tADJ\tNNP\t_\t7\tamod\t_\t_\n6\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tIndex\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t203.56\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\t12.8\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t1385.72\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tFrankfurt\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tsteepest\t_\tADJ\tJJS\t_\t24\tamod\t_\t_\n24\tfall\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n25\tever\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tRetail\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tholdings\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tmassive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tscale\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tpushing\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n11\tsome\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tblue-chip\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n15\tas\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\tmuch\t_\tADJ\tJJ\t_\t18\tadvmod\t_\t_\n17\tas\t_\tADP\tIN\t_\t18\tadvmod\t_\t_\n18\t20\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t14\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmemories\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tyears\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tsmall\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinvestors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\theld\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tafter\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tOctober\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tcrash\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tWest\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tGerman\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tcontinued\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tdecline\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\tsteeply\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tnext\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tthree\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tmonths\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t4\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttrends\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tworld\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tcalculated\t_\tVERB\tVBN\t_\t4\tdep\t_\t_\n15\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tMorgan\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n17\tStanley\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tCapital\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tInternational\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tPerspective\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tGeneva\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tmake\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n3\tthem\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tdirectly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcomparable\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\teach\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\tauxpass\t_\t_\n10\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ton\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tclose\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t1969\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\tequaling\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n17\t100\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tpercentage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tchange\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tsince\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tyear-end\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLloyd\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWright\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\treported\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tsaid\t_\tVERB\tVBN\t_\t5\txcomp\t_\t_\n9\tonce\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tyou\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\ttipped\t_\tVERB\tVBD\t_\t23\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tworld\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tside\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n20\teverything\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n21\tloose\t_\tADJ\tRB\t_\t20\tamod\t_\t_\n22\twould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tend\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n24\tup\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tCalifornia\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\talways\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tWright\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tunderestimated\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tCalifornia\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tvitality\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\tmaybe\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tstate\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tla-la\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfactions\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tstarting\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\toverwhelm\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tforces\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tmade\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n29\tsuch\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tsignificant\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tplace\t_\tNOUN\tNN\t_\t27\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t0\troot\t_\t_\n2\telse\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t1\tcop\t_\t_\n4\tone\t_\tPRON\tCD\t_\t1\tnsubj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tmake\t_\tVERB\tVB\t_\t1\tadvcl\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\twhacky\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsave-the-earth\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinitiative\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tproposed\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n14\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tseveral\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tmajor\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tenvironmental\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tgroups\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\torganized\t_\tVERB\tVBN\t_\t13\tconj\t_\t_\n21\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tstate\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tattorney\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tgeneral\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tpassed\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n3\tby\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tvoters\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\trecently\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tannounced\t_\tVERB\tVBN\t_\t10\tamod\t_\t_\n10\tinitiative\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tphase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tout\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpesticides\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\treduce\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n18\tcarbon\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\tdioxide\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\temissions\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t40\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t17\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\tban\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n26\tnew\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\toffshore\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdrilling\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n30\tban\t_\tVERB\tNN\t_\t12\tconj\t_\t_\n31\tchemicals\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n32\tthought\t_\tVERB\tVBD\t_\t31\tacl\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tdeplete\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tozone\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tlayer\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n40\tcreate\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n41\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n42\tnew\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n43\tstate\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n44\tenvironmental\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tofficer\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n46\tarmed\t_\tVERB\tVBN\t_\t45\tacl\t_\t_\n47\twith\t_\tADP\tIN\t_\t52\tcase\t_\t_\n48\ta\t_\tDET\tDT\t_\t52\tdet\t_\t_\n49\t$\t_\tSYM\t$\t_\t52\tamod\t_\t_\n50\t40\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n51\tmillion\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n52\tbudget\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n53\tto\t_\tPART\tTO\t_\t54\tmark\t_\t_\n54\tsue\t_\tVERB\tVB\t_\t52\tacl\t_\t_\n55\tany\t_\tDET\tDT\t_\t56\tdet\t_\t_\n56\tfirm\t_\tNOUN\tNN\t_\t54\tdobj\t_\t_\n57\tor\t_\tCONJ\tCC\t_\t56\tcc\t_\t_\n58\tagency\t_\tNOUN\tNN\t_\t56\tconj\t_\t_\n59\the\t_\tPRON\tPRP\t_\t60\tnsubj\t_\t_\n60\tthinks\t_\tVERB\tVBZ\t_\t56\tacl:relcl\t_\t_\n61\tis\t_\tAUX\tVBZ\t_\t64\taux\t_\t_\n62\tbeing\t_\tVERB\tVBG\t_\t64\tcop\t_\t_\n63\ttoo\t_\tADV\tRB\t_\t64\tadvmod\t_\t_\n64\tdirty\t_\tADJ\tJJ\t_\t60\tccomp\t_\t_\n65\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twish-lists\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgreen\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlobby\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tSierra\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tClub\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tLeague\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tConservation\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tVoters\t_\tPROPN\tNNPS\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tNatural\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tResources\t_\tPROPN\tNNPS\t_\t28\tcompound\t_\t_\n27\tDefense\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCouncil\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n30\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tNational\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tToxics\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCampaign\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tCitizens\t_\tPROPN\tNNPS\t_\t16\tconj\t_\t_\n37\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tBetter\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tEnvironment\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInterestingly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tEnvironmental\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tDefense\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tFund\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\thaving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tnothing\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdo\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tone\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\tonly\t_\tADJ\tRB\t_\t3\tcc:preconj\t_\t_\n3\tCalifornians\t_\tNOUN\tNNPS\t_\t8\tnsubj\t_\t_\n4\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tall\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tAmericans\t_\tNOUN\tNNPS\t_\t3\tconj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tthing\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tpassed\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tbars\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tany\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcrops\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tCalifornia\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\tdo\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tmeet\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tinitiative\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tstandards\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tKansas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\twheat\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tfarmers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tFlorida\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tfruit\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tgrowers\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tadjust\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tgive\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n14\tup\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tCalifornia\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\twords\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tCalifornia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tpresuming\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\ttake\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tcontrol\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnation\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tfarm\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpolicy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tusual\t_\tADV\tJJ\t_\t9\tadvcl\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tgreen\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tlobby\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tproposal\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n9\tdisconnected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tscientific\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\treality\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tgreenhouse-effect\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprovision\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tproposed\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n3\tinitiative\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tmandate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\treduction\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tcarbon\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdioxide\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t40\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tone\t_\tPRON\tCD\t_\t4\tnsubj\t_\t_\n4\tbuys\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n5\tinto\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\twhole\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tgreenhouse\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttheory\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n13\tinconceivable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n15\treductions\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsingle\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tstate\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\thave\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n22\tany\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\timpact\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\ton\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\twhat\t_\tPRON\tWP\t_\t27\tnsubjpass\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t27\tauxpass\t_\t_\n27\tbilled\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n28\tas\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tglobal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tproblem\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\trational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tscience\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\teconomics\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\thave\t_\tVERB\tVBP\t_\t19\tadvcl\t_\t_\n8\tnothing\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tdo\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tenvironment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tinitiative\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t19\tnsubj\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n20\ton\t_\tADP\tIN\t_\t19\tcompound:prt\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfirst\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tplace\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlook\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tunder\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthese\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcircumstances\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tways\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t19\tnmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsponsors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n17\tthemselves\t_\tPRON\tPRP\t_\t16\tnmod:npmod\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tbenefit\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tkey\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\there\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tambition\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tstate\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n9\tAttorney\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n10\tGeneral\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tJohn\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tVan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tde\t_\tPROPN\tIN\t_\t14\tcompound\t_\t_\n14\tKamp\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\trunning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tgovernor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tde\t_\tPROPN\tIN\t_\t4\tcompound\t_\t_\n4\tKamp\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tone\t_\tNUM\tNN\t_\t0\troot\t_\t_\n8\twho\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n9\tcollected\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tplans\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tvarious\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tradical\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tenvironmental\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tgroups\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tcobbled\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tsingle\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tunwieldy\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tinitiative\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n27\tbe\t_\tAUX\tVB\t_\t28\tauxpass\t_\t_\n28\tplaced\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n29\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tballot\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\telection\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tNov.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n36\t6\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n38\t1990\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tgubernatorial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\telection\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n5\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\tcrafted\t_\tVERB\tVBN\t_\t3\txcomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tinclude\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tall\t_\tDET\tPDT\t_\t13\tdet:predet\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\thot\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tissues\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tset\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n16\toff\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\twealthy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tHollywood\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tweepers\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\tdonate\t_\tVERB\tVBP\t_\t20\tacl:relcl\t_\t_\n23\tmoney\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tallows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tVan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tde\t_\tPROPN\tIN\t_\t7\tcompound\t_\t_\n7\tKamp\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tget\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n10\taround\t_\tADP\tIN\t_\t13\tdep\t_\t_\n11\tcampaign\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tspending\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tlimits\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tspend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlegal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmaximum\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tcampaign\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n11\tall\t_\tDET\tPDT\t_\t13\tdet:predet\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tspending\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tVan\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tde\t_\tPROPN\tIN\t_\t19\tcompound\t_\t_\n18\tKamp\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tinitiative\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t-LRB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\tare\t_\tVERB\tVBP\t_\t19\tdep\t_\t_\n25\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n26\tlimits\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t3\tparataxis\t_\t_\n29\tgravy\t_\tNOUN\tNN\t_\t28\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeing\t_\tAUX\tVBG\t_\t5\tauxpass\t_\t_\n5\tlabeled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBig\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGreen\t_\tPROPN\tNNP\t_\t5\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tmaybe\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t15\tnsubjpass\t_\t_\n13\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tcalled\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n16\tThe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tBig\t_\tPROPN\tJJ\t_\t18\tcompound\t_\t_\n18\tGreenback\t_\tPROPN\tNN\t_\t15\txcomp\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tRepublican\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcandidate\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tSen.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tPete\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tWilson\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tplaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tinitiative\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tfundraising\t_\tVERB\tNN\t_\t15\tamod\t_\t_\n15\tgame\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\ttoo\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tsponsoring\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\town\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tcrime\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tinitiative\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tpossible\t_\tADJ\tJJ\t_\t19\tadvcl\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tBig\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tGreen\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tinitiative\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n10\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\truled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\tunconstitutional\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n18\tcourse\t_\tNOUN\tNN\t_\t17\tmwe\t_\t_\n19\tconceivable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tmodern\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tCalifornia\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\tcould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tslide\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n27\tthrough\t_\tADV\tIN\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n6\trecently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tpassed\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tProp.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\t65\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tanti-toxic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinitiative\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tthis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tproposal\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tbecome\t_\tVERB\tVB\t_\t14\tadvcl\t_\t_\n8\tlaw\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgreen\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlobby\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tbenefit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tdirectly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcreates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tfree\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfloating\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tstate\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tenvironmental\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficer\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsue\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tgovernment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tagencies\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tdo\t_\tVERB\tVBP\t_\t12\tacl:relcl\t_\t_\n18\tthings\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\tdoes\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tlike\t_\tVERB\tVB\t_\t18\tacl:relcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tNRDC\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tsuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgroups\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n8\tno\t_\tADV\tRB\t_\t9\tneg\t_\t_\n9\tlonger\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\thave\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tspend\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tas\t_\tADP\tRB\t_\t16\tamod\t_\t_\n15\tmuch\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmoney\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tlitigation\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n20\ttaxpayers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tbear\t_\tVERB\tVB\t_\t2\tparataxis\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcost\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tde\t_\tPROPN\tIN\t_\t4\tcompound\t_\t_\n4\tKamp\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tallies\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\thoping\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tenvironment\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n15\tsuch\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmom\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tapple-pie\t_\tNOUN\tJJ\t_\t20\tcompound\t_\t_\n20\tissue\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\tamong\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tcertain\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tsegments\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tCalifornia\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tpopulation\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tnow\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n30\talmost\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\tany\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcollection\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n33\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tanti-scientific\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n36\tanti-pocketbook\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tnonsense\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n38\tcan\t_\tAUX\tMD\t_\t39\taux\t_\t_\n39\tpass\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n40\tunder\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tits\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n42\trubric\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t1\tmwe\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstate\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tliberals\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n8\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n9\tyet\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tunto\t_\tADP\tVBZ\t_\t13\tcase\t_\t_\n13\tthemselves\t_\tPRON\tPRP\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdecide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\tdoes\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\twant\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tPresident\t_\tPROPN\tNNP\t_\t13\txcomp\t_\t_\n18\twho\t_\tPRON\tWP\t_\t19\tnsubj\t_\t_\n19\tlost\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n20\tcontrol\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tinterstate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcommerce\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tattorney\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tgeneral\t_\tADJ\tNN\t_\t26\tamod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tCalifornia\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsegments\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tCalifornia\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tpolitical\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tmedia\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tculture\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tyet\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tstart\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpoint\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tout\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tinitiative\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\timpose\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n23\tsignificant\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcosts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tstate\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tless\t_\tADV\tJJR\t_\t30\tadvmod\t_\t_\n30\taffluent\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcitizens\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tform\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\thigher\t_\tADJ\tJJR\t_\t38\tamod\t_\t_\n37\tfood\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tprices\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tlost\t_\tVERB\tVBD\t_\t41\tamod\t_\t_\n41\tjobs\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgrandiose\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinitiative\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tCalifornia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tdefine\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n8\titself\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfuture\t_\tNOUN\tJJ\t_\t7\tnmod\t_\t_\n12\teither\t_\tCONJ\tCC\t_\t15\tcc:preconj\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstate\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\ttethered\t_\tVERB\tJJ\t_\t15\tacl\t_\t_\n18\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n19\teconomic\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tscientific\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\treality\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n25\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tone\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n27\tbeing\t_\tAUX\tVBG\t_\t28\tauxpass\t_\t_\n28\tled\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n29\tto\t_\tADP\tTO\t_\t34\tmark\t_\t_\n30\twherever\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n31\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n32\tla-la\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tactivists\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n34\twant\t_\tVERB\tVBP\t_\t28\tadvcl\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\ttake\t_\tVERB\tVB\t_\t34\txcomp\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFirst\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdeath\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\twatch\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t2\tdep\t_\t_\n2\texhilaration\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSpurred\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n2\tby\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\twaves\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tlarge-scale\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tbuying\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblue-chip\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tstocks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tDow\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tJones\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tIndustrial\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAverage\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\trallied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n19\terased\t_\tVERB\tVBN\t_\t16\tconj\t_\t_\n20\tabout\t_\tADV\tIN\t_\t22\tadvmod\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tadvmod\t_\t_\n22\thalf\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\t190.58-point\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tplunge\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n29\tgaining\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n30\t88.12\t_\tNUM\tCD\t_\t29\tdobj\t_\t_\n31\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n32\t2657.38\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfourth-biggest\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tadvance\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\taverage\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tblue\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tchips\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tfrenetic\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tStock\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tExchange\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tvolume\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t416,290,000\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tshares\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\thighest\t_\tADJ\tJJS\t_\t20\tdep\t_\t_\n27\tsince\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tdays\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tafter\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\t1987\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tcrash\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tadvance\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tcheered\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n7\tfeared\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t1987-style\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcrash\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\toccur\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n13\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n17\tstrictly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tbig-stock\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\trally\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n21\tfed\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\thuge\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbuying\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tbargain-hunting\t_\tADJ\tNN\t_\t27\tamod\t_\t_\n27\tinstitutions\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tprogram\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\ttraders\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttroubling\t_\tVERB\tJJ\t_\t3\tamod\t_\t_\n3\tsign\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tDeclining\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tBig\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBoard\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\toutnumbered\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n12\tadvancers\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\t975\t_\tNUM\tCD\t_\t16\tdep\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tdep\t_\t_\n16\t749\t_\tNUM\tCD\t_\t11\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tover-the-counter\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tincludes\t_\tVERB\tVBZ\t_\t21\tacl:relcl\t_\t_\n24\tmany\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tsmaller\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n26\tstocks\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tsuffered\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n28\taftershocks\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n30\tFriday\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tlate\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\tBig\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tBoard\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tplunge\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tOTC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tindex\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tdown\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t6.31\t_\tNUM\tCD\t_\t6\tnmod:npmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\t460.98\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdivergence\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tmost\t_\tADV\tRBS\t_\t13\tadvmod\t_\t_\n13\timportant\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tindicators\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tindustrials\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tsister\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\taverage\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n24\t20-stock\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n25\tDow\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tJones\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tTransportation\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tAverage\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n30\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\t102.06\t_\tNUM\tCD\t_\t30\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\t1304.23\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n35\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n36\tsecond-worst\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tdecline\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n38\tnext\t_\tADJ\tIN\t_\t37\tamod\t_\t_\n39\tto\t_\tADP\tTO\t_\t42\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\t164.78-point\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tfall\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n43\tduring\t_\tADP\tIN\t_\t46\tcase\t_\t_\n44\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n45\t1987\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n46\tcrash\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tTransports\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tdisappointments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tairline\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tstocks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tUAL\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tAMR\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\teach\t_\tDET\tDT\t_\t17\tdep\t_\t_\n17\tfell\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n18\tmore\t_\tADV\tJJR\t_\t20\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\t20\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n23\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\treopened\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\ttrading\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tyesterday\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n28\tafter\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n29\tbeing\t_\tAUX\tVBG\t_\t30\tauxpass\t_\t_\n30\tsuspended\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n31\tFriday\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tafternoon\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUAL\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcenter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\t190.58-point\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t56\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t7/8\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\t222\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t7/8\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n22\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tnearly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\t2.3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tpleasant\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trally\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\t's\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tselective\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tArthur\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tCashin\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tJr.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tveteran\t_\tADJ\tNN\t_\t25\tamod\t_\t_\n23\tPaineWebber\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tInc.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\ttrader\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tBig\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tBoard\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tEveryone\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tauxpass\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlittle\t_\tADV\tJJ\t_\t6\tdep\t_\t_\n6\tconcerned\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n7\tabout\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgeneral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tnarrowness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trally\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\tfailure\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tOTC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tget\t_\tVERB\tVB\t_\t15\tdep\t_\t_\n22\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tplus\t_\tADJ\tCC\t_\t24\tamod\t_\t_\n24\tterritory\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tstrange\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfeeling\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tanyone\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tleft\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplace\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\twhistling\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n10\tDixie\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trally\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tcredence\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tat\t_\tADP\tIN\t_\t3\tadvmod\t_\t_\n7\tleast\t_\tADJ\tJJS\t_\t6\tmwe\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tnow\t_\tADV\tRB\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tpre-trading\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdeclaration\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n16\tBig\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n17\tBoard\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n18\tChairman\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n19\tJohn\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJ.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPhelan\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tJr.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n23\tthat\t_\tSCONJ\tWDT\t_\t32\tmark\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tdebacle\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n28\twas\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n30\tan\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tabnormal\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcondition\t_\tNOUN\tNN\t_\t14\tdep\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n35\tnot\t_\tADV\tRB\t_\t37\tneg\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tdisaster\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n39\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tto\t_\tADP\tTO\t_\t3\tcase\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tlooked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tdisaster\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t9:30\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\ta.m.\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\topening\t_\tVERB\tNN\t_\t14\tamod\t_\t_\n14\tbell\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tIndustrial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAverage\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdown\t_\tADV\tRP\t_\t6\tadvmod\t_\t_\n8\t1.64\t_\tNUM\tCD\t_\t7\tnmod:npmod\t_\t_\n9\tshortly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tafter\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t9:30\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t21\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t30\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tblue-chip\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\taverage\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tincluding\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tEastman\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKodak\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tGeneral\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMotors\t_\tPROPN\tNNPS\t_\t14\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\ttrade\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tbecause\t_\tADV\tIN\t_\t26\tcase\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\theavy\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tbacklog\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tsell\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\torders\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tleft\t_\tVERB\tVBD\t_\t29\tacl\t_\t_\n31\tover\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\tfrom\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tFriday\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tlate-afternoon\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\trout\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t9:45\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tProcter\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tGamble\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n8\tone\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tmost\t_\tADV\tRBS\t_\t12\tadvmod\t_\t_\n12\timportant\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tDow\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbellwethers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlate\t_\tADJ\tJJ\t_\t8\tacl\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tdown\t_\tADV\tRP\t_\t18\tadvmod\t_\t_\n20\t2\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t3/4\t_\tNUM\tCD\t_\t19\tnmod:npmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\t117\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tquick\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\t27-point\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tloss\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttraders\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tlooked\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tif\t_\tSCONJ\tIN\t_\t16\tmwe\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\theaded\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n21\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tyet\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\tanother\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\ttumble\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tRBR\t_\t2\tamod\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tover\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tensuing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n7\thalf\t_\tADJ\tNN\t_\t8\tamod\t_\t_\n8\thour\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\t49\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n13\tBig\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tBoard\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tspecialist\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tcharge\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tof\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tkeeping\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\torderly\t_\tADV\tJJ\t_\t20\txcomp\t_\t_\n24\tgroped\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tfind\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tbuy\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\torders\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tmajor\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tbrokerage\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tfirms\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tmatch\t_\tVERB\tVB\t_\t28\tacl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tselling\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tflood\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tmake\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n5\tmatters\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tworse\t_\tADJ\tRBR\t_\t4\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tcomputerized\t_\tVERB\tJJ\t_\t10\tamod\t_\t_\n9\tsell\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprograms\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tkicked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t11\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\thammering\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tsteeper\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n18\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\theavy\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tstock-index\t_\tADJ\tNN\t_\t5\tamod\t_\t_\n5\tarbitrage\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tsold\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n10\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbaskets\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tbought\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n16\tstock-index\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n17\tfutures\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tprofit\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tprice\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tdiscrepancies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tbetween\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\thangover\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n9\tStandard\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tPoor\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n13\t500-stock\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tindex\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfutures\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tclosed\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n18\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsharp\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdiscount\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tonslaught\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tprogram\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tselling\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tdashed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thopes\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n11\tsome\t_\tDET\tDT\t_\t19\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tbig\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\ttrading\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfirms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\thold\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n20\toff\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\tuntil\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tstabilized\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\taccelerated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tslide\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tlosing\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n8\t63.52\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tfirst\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\t40\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tminutes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tprogram\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t9\tadvcl\t_\t_\n4\tseemingly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcharge\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tbuyers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tbacked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\taway\t_\tADP\tRB\t_\t9\tcompound:prt\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\twatched\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n16\tstocks\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tfall\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\t10:15\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tsuddenly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tstarted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\trebound\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tshot\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n15\tupward\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tdid\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n18\tso\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\teven\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tfaster\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tearly-morning\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfall\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n7\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n8\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprogram\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n12\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\tresponsible\t_\tADJ\tJJ\t_\t11\tacl:relcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAll\t_\tDET\tPDT\t_\t3\tdet:predet\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tselling\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tpushed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcheap\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tvalues\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tWDT\t_\t20\tmark\t_\t_\n12\tbig\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tinvestment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbanks\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tmoney\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tmanagement\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tfirms\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n20\tstarted\t_\tVERB\tVBD\t_\t10\tdep\t_\t_\n21\tbuying\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\theavily\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprogram\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tin\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\tthere\t_\tADV\tRB\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ttoo\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tcourse\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\taccording\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n3\tto\t_\tADP\tTO\t_\t2\tmwe\t_\t_\n4\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\ttrader\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprogrammers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tdid\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tlook\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tas\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n14\tdominant\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tupside\t_\tADV\tNN\t_\t14\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdownside\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tbecause\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n25\t-LCB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n26\talso\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n27\t-RCB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tlot\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tbargain-hunting\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n33\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tinstitutions\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tRoland\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMachold\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tdirector\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJersey\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDivision\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tInvestment\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\toversees\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n16\t$\t_\tSYM\t$\t_\t15\tdobj\t_\t_\n17\t29\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tbillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinvestments\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n25\tfirst\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tthing\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n27\twe\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tdid\t_\tVERB\tVBD\t_\t26\tacl:relcl\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t22\tccomp\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tdouble\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tour\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n33\torders\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n35\tyesterday\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tmorning\t_\tNOUN\tNN\t_\t31\tnmod:tmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWith\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n5\tdown\t_\tADV\tRP\t_\t12\tadvcl\t_\t_\n6\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthis\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\t'll\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tprobably\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tanother\t_\tDET\tDT\t_\t14\tadvmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n15\t50\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\tput\t_\tVERB\tVBD\t_\t12\tconj\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tWalt\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tDisney\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\tparticularly\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n7\tcaught\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t10\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\teyes\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tDisney\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tone\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tbiggest\t_\tADJ\tJJS\t_\t14\tamod\t_\t_\n13\tsell-order\t_\tADJ\tNN\t_\t14\tamod\t_\t_\n14\timbalances\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n20\tone\t_\tNUM\tCD\t_\t8\tparataxis\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tseven\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tstocks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tfinish\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n29\ttrading\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n30\tthat\t_\tDET\tWDT\t_\t31\tdet\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t28\tnmod:tmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tlate\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t114\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n10\t8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t1/2\t_\tNUM\tCD\t_\t9\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthen\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tshot\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n5\tupward\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2\t_\tNUM\tCD\t_\t5\tnmod:npmod\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tGoldman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tSachs\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tstepped\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n15\tin\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\tbought\t_\tVERB\tVBD\t_\t14\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\ttraders\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tDisney\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tspecialist\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tRobert\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tFagenson\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n10\tI\t_\tPRON\tPRP\t_\t13\tnsubjpass\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tsurprised\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tGoldman\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\trepresented\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n17\t4\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\topening\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tvolume\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAround\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tdesks\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\trelieved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t12\tmwe\t_\t_\n14\tplay\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcontrast\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tgridlock\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tDonaldson\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tLufkin\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tJenrette\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\thead\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n10\tequity\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tDudley\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tEppel\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n17\tI\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tthink\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\topening\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n22\tconstructive\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\torderly\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tput\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tsome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\torders\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\ttogether\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThere\t_\tADV\tEX\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlot\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tpanic\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tselling\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\teither\t_\tDET\tCC\t_\t11\tcc:preconj\t_\t_\n11\tdomestically\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tinternationally\t_\tADV\tRB\t_\t11\tconj\t_\t_\n14\t...\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n2\tlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\twhere\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n8\t-LCB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t-RCB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n12\tapart\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\tyet\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcrossed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tpositive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tterritory\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\ttraders\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n16\tglum\t_\tADJ\tNN\t_\t8\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tanother\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tdramatic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tburst\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\ttacked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tRP\t_\t12\tdep\t_\t_\n11\t42\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tfive\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tminutes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t10:25\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tindex\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tshowed\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tgain\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t5.74\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tfloor\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdesks\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tyelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tapproval\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tGrinned\t_\tVERB\tNNP\t_\t0\troot\t_\t_\n2\tGriffith\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPeck\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttrader\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tShearson\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tLehman\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tHutton\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tOTC\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdepartment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n17\tI\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\ttell\t_\tVERB\tVBP\t_\t1\tccomp\t_\t_\n19\tyou\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tacts\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n24\thealthy\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tAround\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\thim\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tscores\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttraders\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tseemed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tget\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tburst\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tenergy\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tboss\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tbroke\t_\tVERB\tVBD\t_\t7\tparataxis\t_\t_\n18\tout\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tbottles\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tPerrier\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\twater\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tcool\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n25\tthem\t_\tPRON\tPRP\t_\t24\tdobj\t_\t_\n26\toff\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspecialists\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcry\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n10\tPull\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n11\tyour\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\toffers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n15\tmeaning\t_\tVERB\tVBG\t_\t8\tparataxis\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tspecialists\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tsoon\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tget\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\thigher\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tbedlam\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tupside\t_\tADJ\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tspecialist\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tnot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n3\teverybody\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcarnage\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tChicago\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tBoard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tOptions\t_\tPROPN\tNNPS\t_\t8\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\toptions\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n18\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t28\tnsubjpass\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tS&P\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\t100\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tstock-index\t_\tADJ\tNN\t_\t26\tamod\t_\t_\n26\toptions\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\tauxpass\t_\t_\n28\thalted\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmakers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\t100\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\toptions\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbullish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpositions\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshutdown\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tcame\t_\tVERB\tVBD\t_\t23\tadvcl\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\twere\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tfrozen\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\thuge\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tlosses\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweekend\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tclearing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfirms\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tChicago\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmakers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tget\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n14\tout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tpositions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcost\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tMonday\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tabsolutely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tkilled\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tslaughtered\t_\tVERB\tVBN\t_\t5\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tChicago-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\toptions\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\ttrader\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tclosely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\twatched\t_\tVERB\tVBN\t_\t10\tamod\t_\t_\n8\tMajor\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tMarket\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tIndex\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhose\t_\tPRON\tWP$\t_\t14\tnmod:poss\t_\t_\n13\t20\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tmimic\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tindustrials\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tdid\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tlead\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n23\tyesterday\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tbig\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trally\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGallagher\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpartner\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tspecialist\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tFowler\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tRosenau\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tThe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdifference\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n17\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttoday\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tyears\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\tago\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n26\tTerrible\t_\tPROPN\tJJ\t_\t27\tcompound\t_\t_\n27\tTuesday\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n30\tOct.\t_\tPROPN\tNNP\t_\t27\tnmod:tmod\t_\t_\n31\t20\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n33\t1987\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n36\tis\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n37\tthat\t_\tDET\tDT\t_\t40\tmark\t_\t_\n38\tthen\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n39\twe\t_\tPRON\tPRP\t_\t40\tnsubj\t_\t_\n40\tneeded\t_\tVERB\tVBD\t_\t36\tccomp\t_\t_\n41\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tsavior\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n43\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n44\tgo\t_\tVERB\tVB\t_\t40\txcomp\t_\t_\n45\tinto\t_\tADP\tIN\t_\t49\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n47\tMajor\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n48\tMarket\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tIndex\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n51\tspend\t_\tVERB\tVBP\t_\t44\tconj\t_\t_\n52\t$\t_\tSYM\t$\t_\t51\tdobj\t_\t_\n53\t2\t_\tNUM\tCD\t_\t54\tcompound\t_\t_\n54\tmillion\t_\tNUM\tCD\t_\t52\tnummod\t_\t_\n55\tand\t_\tCONJ\tCC\t_\t44\tcc\t_\t_\n56\tget\t_\tVERB\tVB\t_\t44\tconj\t_\t_\n57\tthe\t_\tDET\tDT\t_\t59\tdet\t_\t_\n58\tprogram\t_\tNOUN\tNN\t_\t59\tcompound\t_\t_\n59\trally\t_\tNOUN\tNN\t_\t60\tnsubj\t_\t_\n60\tstarted\t_\tVERB\tVBD\t_\t56\tccomp\t_\t_\n61\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t-LCB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n4\tinstitutions\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\t-RCB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n6\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprograms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tcoming\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tbacked\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n12\taway\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\tbacked\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n15\taway\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttechnical\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlevel\t_\tNOUN\tNN\t_\t14\tadvcl\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tbuy\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tin\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tvengeance\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n3\taccording\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n4\tto\t_\tADP\tTO\t_\t3\tmwe\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tanalyst\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttiming\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tMajor\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n12\tMarket\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tIndex\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tbuying\t_\tNOUN\tVBG\t_\t9\tnmod\t_\t_\n16\tjust\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n17\tbefore\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tturnaround\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n21\tsimilar\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tthat\t_\tPRON\tDT\t_\t21\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tTerrible\t_\tPROPN\tJJ\t_\t26\tcompound\t_\t_\n26\tTuesday\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tFutures\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tpulling\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\thigher\t_\tADV\tJJR\t_\t4\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tDonald\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tSelkin\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\thead\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tstock-index\t_\tADJ\tNN\t_\t19\tamod\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tresearch\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tPrudential-Bache\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tSecurities\t_\tPROPN\tNNPS\t_\t23\tcompound\t_\t_\n23\tInc\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tspecialist\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tstruggled\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tanother\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\thighly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tvolatile\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tsession\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tperformance\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\tyesterday\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n20\tbetter\t_\tADV\tJJR\t_\t0\troot\t_\t_\n21\tthan\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tlate-afternoon\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tchaos\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\taccording\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n29\tto\t_\tADP\tTO\t_\t28\tmwe\t_\t_\n30\ttraders\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tbrokers\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n33\twho\t_\tPRON\tWP\t_\t34\tnsubj\t_\t_\n34\twork\t_\tVERB\tVBP\t_\t30\tacl:relcl\t_\t_\n35\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tthem\t_\tPRON\tPRP\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tSpecialists\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tcriticized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tinability\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tmaintain\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\torderly\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\thalts\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tblue-chip\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tMerck\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\twe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\texpected\t_\tVERB\tVBD\t_\t30\tdep\t_\t_\n18\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\thalts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n25\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n26\ttoo\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tbad\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tDonaldson\t_\tPROPN\tNNP\t_\t34\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tMr.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tEppel\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\twho\t_\tPRON\tWP\t_\t39\tnsubj\t_\t_\n37\thad\t_\tAUX\tVBD\t_\t39\taux\t_\t_\n38\tbeen\t_\tVERB\tVBN\t_\t39\tcop\t_\t_\n39\tcritical\t_\tADJ\tJJ\t_\t34\tacl:relcl\t_\t_\n40\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tspecialists\t_\tNOUN\tNNS\t_\t44\tnmod:poss\t_\t_\n43\t'\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tperformance\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n45\ton\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tFriday\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tBoard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n8\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\topened\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n12\tlate\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tthere\t_\tPRON\tEX\t_\t15\texpl\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tsubsequent\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\ttrading\t_\tVERB\tNN\t_\t18\tamod\t_\t_\n18\thalts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tonly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\tthree\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tissues\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t22\tpunct\t_\t_\n24\tAMR\t_\tPROPN\tNNP\t_\t22\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tMerck\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n28\tValero\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tEnergy\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMerck\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tmost\t_\tADV\tRBS\t_\t7\tadvmod\t_\t_\n7\timportant\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tMajor\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMarket\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tIndex\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tsector\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tspared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tpast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tdays\t_\tNOUN\tNNS\t_\t15\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tgyrations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tindustrials\t_\tNOUN\tNNS\t_\t7\tnmod:poss\t_\t_\n6\t'\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\thigh\t_\tNOUN\tJJ\t_\t21\tnmod\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tOct.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t9\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n16\trelatively\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tgood\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tperformances\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n20\tbeen\t_\tAUX\tVBN\t_\t21\tauxpass\t_\t_\n21\tturned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tin\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\treal-estate\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tutilities\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tprecious\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmetals\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n31\tlife\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n32\tinsurance\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tstocks\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\ttop\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tperforming\t_\tNOUN\tVBG\t_\t8\tcompound\t_\t_\n7\tindustry\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tgroup\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n10\toil\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tfield\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tequipment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tissues\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tHalliburton\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t3\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/4\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\t38\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tSchlumberger\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\trose\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/2\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t43\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t1/4\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\tBaker\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHughes\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\trose\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n22\t1\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t1/8\t_\tNUM\tCD\t_\t21\tdobj\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\t22\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBecause\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tUAL\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tAMR\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\ttumbles\t_\tNOUN\tVBZ\t_\t13\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tairlines\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tweakest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n13\tsector\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tPhilip\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorris\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBoard\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t9\tadvmod\t_\t_\n9\tactive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tissue\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\trising\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/4\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t43\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t1/4\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tnearly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\teight\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tmajor\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tissues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tCoca-Cola\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tup\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t2\t_\tNUM\tCD\t_\t9\tnmod:npmod\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t66\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t3/4\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t1.7\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n19\tAmerican\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tTelephone\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n21\t&\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tTelegraph\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\trose\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n24\t3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\t1/4\t_\tNUM\tCD\t_\t23\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n27\t43\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tnearly\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n30\t7.8\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tshares\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tShares\t_\tPROPN\tNNS\t_\t12\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tInternational\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBusiness\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMachines\t_\tPROPN\tNNPS\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\treported\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tfinished\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t103\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tup\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\t1\t_\tNUM\tCD\t_\t16\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tslipping\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n21\tbelow\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t100\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tsession\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tfirst\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\ttime\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tfive\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tShares\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthree\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tbrokerage\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tafter\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\treported\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t1\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t28\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tPaineWebber\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\trose\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n11\t3/4\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t18\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/2\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n16\tBear\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tStearns\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\trose\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n19\t3/8\t_\tNUM\tCD\t_\t18\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t14\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t1/4\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tNational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMortgage\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAssociation\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\trecently\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thot\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t4\t_\tNUM\tCD\t_\t11\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\t124\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tnearly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\t1.6\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tconference\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tclose\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tyesterday\t_\tNOUN\tNN\t_\t22\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBoard\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPhelan\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\texchange\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tofficials\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n22\tpraised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tperformance\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tcomputers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tpersonnel\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tDET\tIN\t_\t10\tmark\t_\t_\n5\tprogram\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tstrategies\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tresponsible\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\ttriggering\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tdespite\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tjump\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tuse\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tcomputer-driven\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tstrategies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tmonths\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tadvmod\t_\t_\n2\t24\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t32\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n7\tthan\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\t100\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\ttraded\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tfinal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\t90\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tsession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t29\tadvmod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tplunge\t_\tNOUN\tNN\t_\t29\tnsubjpass\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\twas\t_\tAUX\tVBD\t_\t29\tauxpass\t_\t_\n29\tconcentrated\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n32\tprogram-related\t_\tADJ\tJJ\t_\t35\tccomp\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n34\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tProgram\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\ttrades\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tmake\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\texchange\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tvolume\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\taverage\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n18\tdespite\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tincrease\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n21\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:tmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n26\tcertainly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tnot\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tsomething\t_\tNOUN\tNN\t_\t40\tccomp\t_\t_\n29\tyou\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\twould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\tsay\t_\tVERB\tVB\t_\t28\tacl:relcl\t_\t_\n32\tprecipitated\t_\tVERB\tVBD\t_\t31\tccomp\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tmarket\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tdecline\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t40\tpunct\t_\t_\n38\tMr.\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tPhelan\t_\tPROPN\tNNP\t_\t40\tnsubj\t_\t_\n40\tsaid\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\trelief\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\trebounded\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tObviously\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n4\tevery\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttime\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n6\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tget\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tkind\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\treaction\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\t's\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tgoing\t_\tVERB\tVBG\t_\t26\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tmake\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\teverybody\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tnervous\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tincluding\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n22\tme\t_\tPRON\tPRP\t_\t19\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n25\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\texchange\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n7\tconversations\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tWall\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tStreet\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tfirms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tthroughout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tweekend\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tall\t_\tDET\tPDT\t_\t20\tdet:predet\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tparticipants\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tbehaved\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n22\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tresponsibly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n26\ttoday\t_\tNOUN\tNN\t_\t21\tnmod:tmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tPeter\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDaPuzzo\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tShearson\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\thead\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tretail\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tequity\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttrading\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tpraised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tinstitutional\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tOTC\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n24\theavy\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t16\tacl:relcl\t_\t_\n26\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tNasdaq\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tbiggest\t_\tADJ\tJJS\t_\t32\tamod\t_\t_\n31\ttechnology\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tissues\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n33\tyesterday\t_\tNOUN\tNN\t_\t25\tnmod:tmod\t_\t_\n34\tamid\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tflood\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tselling\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n39\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tother\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tinvestors\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tinstitutions\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n4\tca\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\tcriticized\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tbehavior\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDaPuzzo\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tinterview\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\topposite\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\thappened\t_\tVERB\tVBD\t_\t5\tacl\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tOct.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t19\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tjudgment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tpanic\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tduring\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tround\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tselling\t_\tNOUN\tVBG\t_\t8\tnmod\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmorning\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tbought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tweakness\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n8\tsold\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n9\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstrength\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tkept\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\torderly\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMaybe\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tlearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\texperience\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tperformance\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tspecialists\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tduring\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n13\tadmirable\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tbecause\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n16\tout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\t1,640\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n19\tBig\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tBoard\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tcommon\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n23\ttraded\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tday\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tonly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tseven\t_\tNUM\tCD\t_\t30\tnsubjpass\t_\t_\n29\twere\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tclosed\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\twere\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n33\tn't\t_\tPART\tRB\t_\t34\tneg\t_\t_\n34\treopened\t_\tVERB\tVBN\t_\t30\tconj\t_\t_\n35\tbefore\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tclose\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tdid\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\texcellent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tjob\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tPhelan\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tspecialists\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tStreet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tcomplained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\ttrading\t_\tVERB\tNN\t_\t11\tamod\t_\t_\n11\tsuspensions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tA.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWhite\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tSonja\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSteptoe\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tarticle\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWest\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGermany\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tGreen\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tParty\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tjoined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tideological\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsoulmates\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tJeremy\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tRifkin\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tChristic\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInstitute\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlegal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbattle\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tground\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tAtlantis\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tshuttle\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n27\tplutonium-powered\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tGalileo\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tprobe\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n31\tJupiter\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tanti-defense\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tGreens\t_\tNOUN\tNNP\t_\t4\tnsubj\t_\t_\n4\twanted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tWashington\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tfederal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tappeals\t_\tNOUN\tNNS\t_\t9\tcompound\t_\t_\n9\tcourt\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tblock\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n12\ttoday\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tscheduled\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tliftoff\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tlong\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tenough\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n18\tfor\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthem\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\task\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tWorld\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCourt\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n25\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\torder\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tpermanent\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcancellation\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\t$\t_\tSYM\t$\t_\t37\tamod\t_\t_\n35\t1.5\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tbillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\tflight\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tthree-judge\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tappeals\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tpanel\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n6\trefused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tcomply\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tthough\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\tliberal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tJudge\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPat\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tWald\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\twent\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n16\tout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ther\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tway\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdeny\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n23\tthis\t_\tPRON\tDT\t_\t29\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n27\tfrivolous\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tcase\t_\tNOUN\tNN\t_\t21\tccomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNASA\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tshould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tfines\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tall\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthree\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpolitico-plaintiffs\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tforeign\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tdomestic\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tfor\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tbringing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n18\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmischievous\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tcase\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tHouse-Senate\t_\tADJ\tNNP\t_\t3\tamod\t_\t_\n3\tconference\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tpermanent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tsmoking\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tban\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tall\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tairline\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\troutes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\twithin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tcontinental\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tall\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tflights\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tsix\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\thours\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n26\tless\t_\tADJ\tJJR\t_\t24\tnummod\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\tAlaska\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tHawaii\t_\tPROPN\tNNP\t_\t28\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trestrictions\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcover\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tall\t_\tDET\tDT\t_\t4\tdobj\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpercentage\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tair\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttraffic\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\trepresent\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\texpansion\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tcurrent\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tsmoking\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tban\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tflights\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\ttwo\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\thours\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n31\tless\t_\tADJ\tJJR\t_\t29\tnummod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texemption\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\tallowed\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tlonger\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n6\tflights\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tAlaska\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tHawaii\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n14\tlargely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tface-saving\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tconcession\t_\tNOUN\tNN\t_\t11\txcomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\ttraditionally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tpowerful\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\ttobacco\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tindustry\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n27\tfound\t_\tVERB\tVBN\t_\t23\tacl:relcl\t_\t_\n28\titself\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\tincreasingly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tisolated\t_\tVERB\tVBD\t_\t27\txcomp\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tface\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tpublic\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tpressure\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\trecent\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tyears\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t6-4\t_\tNUM\tJJ\t_\t4\tnummod\t_\t_\n4\tmargin\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tHouse\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tnegotiators\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tinitially\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tnight\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tSenate\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tprovision\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tcovering\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tall\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tdomestic\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tflights\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsix-hour\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcompromise\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\tsoon\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tagreed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t7\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsubsequent\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdiscussions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tpractical\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmatter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\tflights\t_\tNOUN\tNNS\t_\t15\tnsubjpass\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCoast\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tHawaii\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tcovered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n19\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttime\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tlimit\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlanguage\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\texempt\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n29\tlonger\t_\tADJ\tJJR\t_\t30\tamod\t_\t_\n30\troutes\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tbeginning\t_\tVERB\tVBG\t_\t30\tacl\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\texample\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tChicago\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n38\tor\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\ton\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tEast\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tCoast\t_\tPROPN\tNNP\t_\t37\tconj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tSenate\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tban\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\thad\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\taggressive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsupport\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tSen.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tFrank\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tLautenberg\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t-LRB-\t_\tPUNCT\t-LRB-\t_\t16\tpunct\t_\t_\n16\tD.\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tN.J.\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n19\t-RRB-\t_\tPUNCT\t-RRB-\t_\t16\tpunct\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tused\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tposition\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tas\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\tSenate\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tAppropriations\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tsubcommittee\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tchairman\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tgarner\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n34\tvotes\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n35\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tinitiative\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tattached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n10\t26\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tfiscal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\t1990\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\ttransportation\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbill\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\twithin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLautenberg\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tjurisdiction\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfinal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcompromise\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t27\tauxpass\t_\t_\n27\tlaced\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n28\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tmore\t_\tADJ\tJJR\t_\t31\tadvmod\t_\t_\n30\tthan\t_\tADP\tIN\t_\t29\tmwe\t_\t_\n31\t$\t_\tSYM\t$\t_\t27\tnmod\t_\t_\n32\t205\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\troad\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tprojects\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n37\tearmarked\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n38\tby\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tmembers\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\tas\t_\tADV\tRB\t_\t31\tcc\t_\t_\n41\twell\t_\tADV\tRB\t_\t40\tmwe\t_\t_\n42\tas\t_\tADP\tIN\t_\t40\tmwe\t_\t_\n43\tfunds\t_\tNOUN\tNNS\t_\t31\tconj\t_\t_\n44\tsought\t_\tVERB\tVBN\t_\t43\tacl\t_\t_\n45\tby\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tmajor\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tairports\t_\tNOUN\tNNS\t_\t44\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n49\tincluding\t_\tVERB\tVBG\t_\t50\tcase\t_\t_\n50\tDenver\t_\tPROPN\tNNP\t_\t47\tnmod\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFrom\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\toutset\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttobacco\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tindustry\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tVERB\tVBN\t_\t10\tcop\t_\t_\n10\tuncertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t16\tmark\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t14\tdet\t_\t_\n14\tstrategy\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tfollow\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tretains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tsupport\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tHouse\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tleadership\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tinfluence\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tgrower\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tstates\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tsuch\t_\tADJ\tJJ\t_\t20\tcase\t_\t_\n18\tas\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tNorth\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCarolina\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMajority\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tWhip\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tWilliam\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGray\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\towes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tpolitical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdebt\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n10\tSouthern\t_\tADJ\tNNP\t_\t12\tamod\t_\t_\n11\tagriculture\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tlawmakers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\trise\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tHouse\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tPhiladelphia\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDemocrat\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tused\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n25\this\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tposition\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tconference\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tsalvage\t_\tVERB\tVB\t_\t24\tadvcl\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\texemption\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\tfrom\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\ttotal\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tban\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsmoking\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprovision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tattracted\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t10\tadvmod\t_\t_\n9\tpublic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinterest\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tunderlying\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbill\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsubject\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tbehind-the-scenes\t_\tADJ\tJJ\t_\t17\tnmod\t_\t_\n20\tlobbying\t_\tVERB\tNN\t_\t19\tamod\t_\t_\n21\tbecause\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tof\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\timpact\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tair\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\ttransportation\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n30\tmore\t_\tADV\tRBR\t_\t31\tadvmod\t_\t_\n31\tmundane\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tbut\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n34\tpolitically\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\timportant\t_\tADJ\tJJ\t_\t31\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n37\tprojects\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tmembers\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tstark\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlesson\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpower\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tappropriations\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tcommittees\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tHouse\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\tdeliberately\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tkilled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\thandful\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tprojects\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tbacked\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tlawmakers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFlorida\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tIllinois\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n29\tPennsylvania\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n30\twho\t_\tPRON\tWP\t_\t32\tnsubj\t_\t_\n31\thad\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\tvoted\t_\tVERB\tVBN\t_\t23\tacl:relcl\t_\t_\n33\tagainst\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tpanel\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tleadership\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tHouse\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tfloor\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tAnybody\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tvote\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\twant\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tRep.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tWilliam\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tLehman\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n15\tD.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tFla.\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\thead\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tHouse\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tconferees\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tyou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tmake\t_\tVERB\tVBP\t_\t11\tadvcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\trequest\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tshould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tsupport\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcommittee\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tAviation\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAdministration\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfinal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbill\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tpromises\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tincrease\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tspending\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tfacilities\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tequipment\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tmore\t_\tADJ\tJJR\t_\t21\tadvmod\t_\t_\n20\tthan\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\t20\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tlast\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n28\ttotal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\toperations\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n30\twould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\trise\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t31\tnmod\t_\t_\n34\t3.84\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tbillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t--\t_\tPUNCT\t:\t_\t33\tpunct\t_\t_\n37\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n38\t12\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\t%\t_\tSYM\tNN\t_\t40\tamod\t_\t_\n40\tboost\t_\tNOUN\tNN\t_\t33\tdep\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfacilities\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\taccount\t_\tNOUN\tVBP\t_\t4\tnsubj\t_\t_\n4\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t40\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tDenver\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tambitious\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tairport\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompetition\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthese\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfunds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tcreated\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n22\tshifting\t_\tVERB\tVBG\t_\t23\tamod\t_\t_\n23\talliances\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tbetween\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\turban\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tlawmakers\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\trepresenting\t_\tVERB\tVBG\t_\t26\tacl\t_\t_\n28\testablished\t_\tVERB\tJJ\t_\t29\tamod\t_\t_\n29\tairports\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tPhiladelphia\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tMichigan\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tmajor\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tcarriers\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n38\tto\t_\tADP\tTO\t_\t39\tcase\t_\t_\n39\tDenver\t_\tPROPN\tNNP\t_\t37\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n41\tUnited\t_\tPROPN\tNNP\t_\t37\tappos\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tContinental\t_\tPROPN\tNNP\t_\t41\tconj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLeery\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcosts\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tcritics\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tsay\t_\tVERB\tVBP\t_\t4\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tcompetition\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tairlines\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tsought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tgain\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tleverage\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcity\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tDenver\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tTexas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAir\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\towns\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tContinental\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tAir\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tTransport\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tAssociation\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n14\twere\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n15\tprominent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t15\tnmod\t_\t_\n18\tlobbying\t_\tVERB\tNN\t_\t17\tamod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindustry\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\timpose\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tconditions\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\thave\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\tdelayed\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\tfunds\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproject\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tuntil\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tDenver\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tairlines\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n20\thad\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\tagreed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tleases\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t50\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tgates\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\trejected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tfavor\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tmuch\t_\tADV\tJJ\t_\t9\tadvmod\t_\t_\n9\tlooser\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n10\tlanguage\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tdirecting\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tTransportation\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDepartment\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\treview\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcosts\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfirst\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tphase\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\texpected\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tcost\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tabout\t_\tADV\tIN\t_\t28\tadvmod\t_\t_\n28\t$\t_\tSYM\t$\t_\t26\tdobj\t_\t_\n29\t2\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThough\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tsmaller\t_\tADJ\tJJR\t_\t9\tadvcl\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ttotal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tdollars\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconference\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tpreserve\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\testimated\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n14\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n15\t30.6\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tcontroversial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsubsidies\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\tcarriers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tserving\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\trural\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tisolated\t_\tVERB\tVBN\t_\t23\tconj\t_\t_\n26\tairports\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsum\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t0\troot\t_\t_\n5\tthan\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdouble\t_\tADV\tJJ\t_\t4\tnmod\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tHouse\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tapproved\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tprogram\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tlist\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tqualified\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n21\tairports\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n23\tbe\t_\tAUX\tVB\t_\t24\tauxpass\t_\t_\n24\tcut\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n25\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t22\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n27\tunder\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tnew\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tdistance\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\trequirements\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tlimits\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n33\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tlevel\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsubsidy\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCongress\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tpreviously\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tcut\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsix\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tairports\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\timpact\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tchanges\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\teliminate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmost\t_\tADV\tRBS\t_\t14\tadvmod\t_\t_\n13\texcessive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcases\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tgovernment\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\tpaying\t_\tVERB\tVBG\t_\t14\tacl:relcl\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t23\tadvmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n24\t200\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\teach\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tpassenger\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tsubsidies\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\trail\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\thighway\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\taccounts\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tagreement\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tprovides\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t615\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAmtrak\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tincluding\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n18\t85\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tcapital\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\timprovements\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tfederal-formula\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgrants\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tmass\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\ttransit\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n9\teffectively\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tfrozen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t1.625\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\t$\t_\tSYM\t$\t_\t12\tconj\t_\t_\n18\t20\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tlast\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tfiscal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tEnjoying\t_\tVERB\tVBG\t_\t16\tdep\t_\t_\n2\tseveral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tblockbuster\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tmovie\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\thits\t_\tNOUN\tVBZ\t_\t1\tdobj\t_\t_\n6\tincluding\t_\tVERB\tVBG\t_\t8\tcase\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n8\tBatman\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n11\tLos\t_\tPROPN\tNNP\t_\t12\tamod\t_\t_\n12\tAngeles-based\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tGuber-Peters\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tEntertainment\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCo.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfirst\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tended\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tAug.\t_\tPROPN\tNNP\t_\t22\tnmod:tmod\t_\t_\n24\t31\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n27\t5.8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\t50\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tcents\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n36\tcompared\t_\tVERB\tVBN\t_\t40\tcase\t_\t_\n37\twith\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tyear-earlier\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tloss\t_\tNOUN\tNN\t_\t26\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tSony\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\toffered\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tacquire\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmovie-production\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tfree\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\ttop\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\texecutives\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tPeter\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tGuber\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tJon\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tPeters\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tan\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\texclusive\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tagreement\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n31\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n32\tTime\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tWarner\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tInc.\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tWarner\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tCommunications\t_\tPROPN\tNNPS\t_\t38\tcompound\t_\t_\n38\tInc.\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\tso\t_\tSCONJ\tIN\t_\t42\tmark\t_\t_\n40\tthey\t_\tPRON\tPRP\t_\t42\tnsubj\t_\t_\n41\tcan\t_\tAUX\tMD\t_\t42\taux\t_\t_\n42\trun\t_\tVERB\tVB\t_\t14\tadvcl\t_\t_\n43\tColumbia\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n44\tPictures\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n45\tEntertainment\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tInc\t_\tPROPN\tNNP\t_\t42\tdobj\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSony\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tweeks\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tacquire\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tColumbia\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n11\t3.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t27\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWarner\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tSony\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tGuber-Peters\t_\tNOUN\tNNP\t_\t3\tconj\t_\t_\n6\tlate\t_\tADJ\tRB\t_\t8\tamod\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tweek\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n10\tSony\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tGuber-Peters\t_\tNOUN\tNNP\t_\t10\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tcountersued\t_\tVERB\tVBN\t_\t2\tparataxis\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcharging\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n17\tWarner\t_\tPROPN\tNNP\t_\t16\tdobj\t_\t_\n18\twith\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tattempting\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tinterfere\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tSony\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tacquisition\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\ttwo\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcompanies\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGuber-Peters\t_\tNOUN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnet\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tlatest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tcompared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t6.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t62\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tyear-earlier\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tperiod\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\trevenue\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\t138\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n11\t10.9\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n15\t4.6\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\treflecting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsuccess\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tmovies\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n25\tGorillas\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tMist\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n32\tRainman\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n35\tas\t_\tADV\tRB\t_\t23\tcc\t_\t_\n36\twell\t_\tADV\tRB\t_\t35\tmwe\t_\t_\n37\tas\t_\tADP\tIN\t_\t35\tmwe\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tbox-office\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tsmash\t_\tNOUN\tVBP\t_\t23\tconj\t_\t_\n41\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n42\tBatman\t_\tPROPN\tNNP\t_\t40\tdep\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tincluding\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n4\tJon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tM.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tHuntsman\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tSalt\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tLake\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCity\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tboosted\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tstake\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tAristech\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tChemical\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\t8.36\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t14\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet:predet\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tcommon\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\toutstanding\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tpreviously\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\treported\t_\tVERB\tVBN\t_\t21\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tHuntsman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tHoldings\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\towned\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tJon\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tM.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHuntsman\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmembers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\this\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tfamily\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tproposed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n23\tBanstar\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCorp.\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\taffiliate\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tHuntsman\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tHoldings\t_\tPROPN\tNNPS\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n32\tacquire\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n33\tAristech\t_\tPROPN\tNNP\t_\t32\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tfriendly\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\ttransaction\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n38\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\t$\t_\tSYM\t$\t_\t40\tdep\t_\t_\n40\t25-a-share\t_\tADJ\tJJ\t_\t32\tnmod\t_\t_\n41\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tcash\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n44\tor\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n45\t$\t_\tSYM\t$\t_\t40\tconj\t_\t_\n46\t817.5\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n47\tmillion\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfiling\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tSecurities\t_\tPROPN\tNNPS\t_\t9\tcompound\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tCommission\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tHuntsman\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tcontrols\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n17\t2,720,675\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n18\tAristech\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tcommon\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tincluding\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n23\t306,000\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tbought\t_\tVERB\tVBD\t_\t24\tacl\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tAug.\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t21\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n30\tOct.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t13\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t36\tdep\t_\t_\n34\t20\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n35\tto\t_\tADP\tTO\t_\t36\tdep\t_\t_\n36\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n37\t20.875\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n38\tper\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tshare\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOfficials\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tAristech\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tPittsburgh\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tcomment\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tCongress\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t4\tcop\t_\t_\n4\tcritical\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBush\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tsending\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\tenough\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\taid\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tPoland\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tso\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\tgetting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n21\tready\t_\tADJ\tJJ\t_\t20\txcomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tsend\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\town\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tversion\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tCARE\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tpackage\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tSenate\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsend\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdelegation\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tcongressional\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tstaffers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tPoland\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tassist\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tlegislature\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tSejm\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tdemocratic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprocedures\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSenator\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPete\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDomenici\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tcalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\teffort\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tgift\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdemocracy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tPoles\t_\tNOUN\tNNPS\t_\t4\tnsubj\t_\t_\n3\tmight\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tdo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tbetter\t_\tADV\tJJR\t_\t4\tadvmod\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tview\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tTrojan\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHorse\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tvast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tshadow\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tgovernment\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t15,000\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tcongressional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstaffers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tthat\t_\tADP\tWDT\t_\t12\tnsubj\t_\t_\n12\thelps\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n13\tcreate\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tlegislative\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tatrocities\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n19\t1,376\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n20\tpage\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t13-pound\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\treconciliation\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tbill\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n26\tclaimed\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n27\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n28\tbe\t_\tVERB\tVB\t_\t30\tcop\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tbudget\t_\tNOUN\tNN\t_\t26\txcomp\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tUnited\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tStates\t_\tPROPN\tNNPS\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMaybe\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\tafter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstaffers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\texplain\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\twork\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tPoles\t_\tNOUN\tNNPS\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t'd\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n15\twilling\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcome\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tback\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tdo\t_\tVERB\tVB\t_\t17\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tsame\t_\tADJ\tJJ\t_\t20\tdobj\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tpeople\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tWaterford\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tWedgwood\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPLC\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tfinancially\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\ttroubled\t_\tVERB\tJJ\t_\t9\tamod\t_\t_\n8\tIrish\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tfine\t_\tADJ\tNN\t_\t12\tamod\t_\t_\n12\tcrystal\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tWedgwood\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tchina\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthat\t_\tDET\tIN\t_\t27\tmark\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tpretax\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tloss\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tfirst\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tsix\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\twidened\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n28\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n29\t10.6\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n31\tIrish\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tpunts\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t-LRB-\t_\tPUNCT\t-LRB-\t_\t34\tpunct\t_\t_\n34\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n35\t14.9\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t-RRB-\t_\tPUNCT\t-RRB-\t_\t34\tpunct\t_\t_\n38\tfrom\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\t5.8\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n41\tIrish\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tpunts\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n43\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tyear\t_\tNOUN\tNN\t_\t45\tnmod:npmod\t_\t_\n45\tearlier\t_\tADV\tRBR\t_\t42\tadvmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresults\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tworse\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n8\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\texpectations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tsuggested\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tinterim\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tloss\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\taround\t_\tADV\tIN\t_\t20\tadvmod\t_\t_\n19\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tIrish\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tpunts\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tsharply\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tweaker\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n5\tLondon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n9\tWaterford\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n12\tdown\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tpence\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t50\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpence\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\t-LRB-\t_\tPUNCT\t-LRB-\t_\t20\tpunct\t_\t_\n19\t79\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t17\tappos\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t20\tpunct\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tafter\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ttaxation\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tminority\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tinterests\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\t14\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tIrish\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpunts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tcompared\t_\tVERB\tVBN\t_\t20\tcase\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tloss\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\t9.3\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n23\tmillion\t_\tADJ\tCD\t_\t22\tadvmod\t_\t_\n24\tIrish\t_\tPROPN\tJJ\t_\t25\tcompound\t_\t_\n25\tpunts\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tyear-earlier\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tperiod\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\tany\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\textraordinary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\titems\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttotal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t27\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n10\t168.1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tIrish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpunts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tcompared\t_\tVERB\tVBN\t_\t19\tcase\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\t132.6\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n18\tIrish\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tpunts\t_\tNOUN\tNNS\t_\t6\tadvcl\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n22\tago\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWaterford\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdecided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tagainst\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tpaying\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tinterim\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdividend\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWaterford\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tappointment\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tmanagement\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tteam\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsigning\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tcomprehensive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tlabor\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tagreement\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tenhance\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tlong-term\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprospects\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tsudden\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n4\tflight\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tquality\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\ttriggered\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\texplosive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbond-market\t_\tADJ\tNN\t_\t14\tamod\t_\t_\n14\trally\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\treversed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n21\tflight\t_\tNOUN\tNN\t_\t25\tdep\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tquality\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\trout\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsetback\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t9\tnmod\t_\t_\n6\tTreasury\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tbond\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tplummeted\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trebound\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tprofit-taking\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpretty\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\twild\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOur\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tclosely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\ttied\t_\tVERB\tVBN\t_\t12\tdep\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tJoel\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKazis\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tmanager\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tSmith\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tBarney\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\tHarris\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n24\tUpham\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n25\t&\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tCo\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tflight\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tquality\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n8\tno\t_\tDET\tRB\t_\t9\tneg\t_\t_\n9\tlonger\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\tneeded\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n11\tonce\t_\tSCONJ\tRB\t_\t15\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tfound\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tlegs\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfixed-income\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfurther\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdrop\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tnearly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\t200-point\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdrop\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tIndustrial\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAverage\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tADP\tDT\t_\t2\tnsubj\t_\t_\n2\tcaused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tflee\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n9\thigh-quality\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tTreasury\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tbonds\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n15\tsafer\t_\tADJ\tJJR\t_\t11\tacl:relcl\t_\t_\n16\tthan\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttypes\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsecurities\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbegan\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tclimb\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tinstead\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tbonds\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tContributing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tselling\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tpressure\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t1\taux\t_\t_\n7\tdispatches\t_\tNOUN\tNNS\t_\t1\tnsubj\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tseveral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfirms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tadvising\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n13\tclients\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tboost\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tholdings\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\treduce\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tsize\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ttheir\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcash\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tbond\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tportfolios\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tMerrill\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tLynch\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n7\t&\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tDean\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tWitter\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tReynolds\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbond\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tseemed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tignore\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tevidence\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tFederal\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tReserve\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\teased\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n13\tcredit\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tconditions\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tslightly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tallowing\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tfederal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tfunds\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\trate\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdrift\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n24\tas\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tlow\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\tas\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\t8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t1/2\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tclosely\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\twatched\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tovernight\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tloans\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\tbetween\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tabout\t_\tADV\tIN\t_\t19\tadvmod\t_\t_\n18\t8\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t3/4\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n21\tlast\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tdown\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n27\tperceived\t_\tVERB\tVBN\t_\t29\tamod\t_\t_\n28\ttarget\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tlevel\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tabout\t_\tADV\tIN\t_\t32\tadvmod\t_\t_\n32\t9\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trate\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tearly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsignal\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tchanges\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tFed\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tpolicy\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmodest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\teasing\t_\tNOUN\tVBG\t_\t9\tnsubj\t_\t_\n7\tdid\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tstir\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n10\tmuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tenthusiasm\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t17\tnsubjpass\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n16\twidely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t9\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\teconomists\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tcontend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tlatest\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n10\teasing\t_\tNOUN\tVBG\t_\t11\tnsubj\t_\t_\n11\tstarted\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tweek\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tnote\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tdisappointed\t_\tVERB\tJJ\t_\t2\tccomp\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\taggressive\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\teasing\t_\tNOUN\tVBG\t_\t11\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tbenchmark\t_\tNOUN\tJJ\t_\t6\tcompound\t_\t_\n5\t30-year\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tbond\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tabout\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n10\t1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t3/4\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tlower\t_\tADV\tJJR\t_\t8\txcomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tnmod:npmod\t_\t_\n19\t17.50\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\teach\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\t$\t_\tSYM\t$\t_\t25\tamod\t_\t_\n23\t1,000\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n24\tface\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tamount\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\treversal\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n6\tevident\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tshorter-term\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tTreasury\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tsecurities\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tbill\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trates\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tplummeted\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n6\tas\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n7\tmuch\t_\tADV\tJJ\t_\t9\tadvmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n9\t0.70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tpercentage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tpoint\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tback\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tthree-fourths\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthat\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tamount\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbond-equivalent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyield\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthree-month\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tTreasury\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tbills\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\texample\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tlate\t_\tADJ\tRB\t_\t15\tamod\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t7.72\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t7.16\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t13\tadvcl\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tInvestment-grade\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tcorporate\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbonds\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tmortgage-backed\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsecurities\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tmunicipal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n10\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tjunk\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tbattered\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tnear\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tstandstill\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tpost\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tsmall\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgains\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tvolatile\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsession\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tJunk\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tbonds\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tas\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\tmuch\t_\tADV\tJJ\t_\t7\tadvmod\t_\t_\n6\tas\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n7\tfour\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tlower\t_\tADV\tJJR\t_\t3\txcomp\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\tstaged\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmodest\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcomeback\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tfirmed\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\thigh-yield\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\thelped\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tactive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tinstitutional\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbuying\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tparticular\t_\tADJ\tJJ\t_\t18\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t18\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t12\tcase\t_\t_\n9\tas\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tFirst\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tDrexel\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tBurnham\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tLambert\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tInc.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tmaking\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tjunk\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tissues\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tearly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsession\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n30\tprices\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n31\thit\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n32\tseverely\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tdepressed\t_\tVERB\tJJ\t_\t34\tamod\t_\t_\n34\tlevels\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t23\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\twillingness\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tcompanies\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\thigh-yield\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\timproved\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsentiment\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tjunk\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbonds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tJohn\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tLonski\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tan\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\teconomist\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n29\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\tMoody\t_\tPROPN\tNNP\t_\t34\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tInvestors\t_\tPROPN\tNNPS\t_\t34\tcompound\t_\t_\n33\tService\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tInc\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tbonds\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tovernight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tJapan\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\topened\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n14\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n16\t7:30\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tp.m.\t_\tNOUN\tRB\t_\t18\tcompound\t_\t_\n18\tEDT\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tbenchmark\t_\tNOUN\tJJ\t_\t4\tcompound\t_\t_\n3\t30-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbond\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n8\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoint\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tearly\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tJapanese\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\treaction\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tquick\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\t600-point\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdrop\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tTokyo\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tas\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tJapanese\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\trebounded\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tTreasurys\t_\tPROPN\tNNPS\t_\t8\tnsubj\t_\t_\n8\tretreated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tended\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n11\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tmodestly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\thigher\t_\tADV\tJJR\t_\t10\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\toperations\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twanting\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tkeep\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\twatchful\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\teye\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tJapanese\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tindication\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\twhere\t_\tADV\tWRB\t_\t23\tadvmod\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tbegin\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n25\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n26\tfully\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tstaffed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\tduring\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\tTokyo\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\ttrading\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsession\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tMost\t_\tADJ\tJJS\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\taction\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n7\tduring\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tnight\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tsession\t_\tNOUN\tNN\t_\t13\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tMichael\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMoore\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ttrading\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmanager\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tContinental\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tBank\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tJay\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGoldinger\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t6\tnsubj\t_\t_\n5\toften\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\ttrades\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n7\tovernight\t_\tADV\tJJ\t_\t6\tadvmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tCapital\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tInsight\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tBeverly\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tHills\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tCalif.\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tTokyo\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tactive\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\tbut\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n28\thighly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tvolatile\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t28\tdep\t_\t_\n4\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tpoint\t_\tNOUN\tNN\t_\t4\tnmod:npmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t10\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tright\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tbefore\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tlunch\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tthen\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n15\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlunch\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n17\twe\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\twent\t_\tVERB\tVBD\t_\t3\tparataxis\t_\t_\n19\tup\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\t3/4\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoint\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\t12\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tminutes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n27\the\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tTokyo\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tduring\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tlunchtime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tturned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbad\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbellwether\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\topened\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n5\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tregained\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n15\tstrength\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbond\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfocus\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tactivity\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tstrong\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tovershadowed\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n16\ttoday\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tslate\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\teconomic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdata\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tincludes\t_\tVERB\tVBZ\t_\t18\tacl:relcl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tgovernment\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\treport\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tAugust\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tU.S.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tmerchandise\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\ttrade\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tSeptember\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tindustrial\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tproduction\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIndustrial\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tproduction\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tdeclined\t_\tVERB\tVBN\t_\t4\txcomp\t_\t_\n8\t0.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\taccording\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t11\tmwe\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tconsensus\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\teconomists\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tsurveyed\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tCapital\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tMarkets\t_\tPROPN\tNNPS\t_\t23\tcompound\t_\t_\n23\tReport\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\ttrade\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdeficit\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\thave\t_\tAUX\tVB\t_\t9\taux\t_\t_\n9\twidened\t_\tVERB\tVBN\t_\t6\txcomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t9.1\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n16\t7.58\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tJuly\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twidening\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthat\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmagnitude\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t18\tparataxis\t_\t_\n8\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n9\tNew\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tYork\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n15\tnot\t_\tADV\tRB\t_\t18\tneg\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfavorable\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tnumber\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\t...\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tdo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tdamage\t_\tNOUN\tVB\t_\t3\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tus\t_\tPRON\tPRP\t_\t4\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tsupply\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tweigh\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\theavily\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tFederal\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tHome\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tLoan\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tBank\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tprices\t_\tVERB\tNNS\t_\t13\tacl:relcl\t_\t_\n21\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\t$\t_\tSYM\t$\t_\t25\tamod\t_\t_\n23\t2.3\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tbillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\toffering\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n26\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n27\tone-year\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tthree-year\t_\tADJ\tJJ\t_\t27\tconj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n31\tfive-year\t_\tADJ\tJJ\t_\t27\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n33\t10-year\t_\tADJ\tJJ\t_\t27\tconj\t_\t_\n34\tmaturities\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTomorrow\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tResolution\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tFunding\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tprovide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tdetails\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n12\tfirst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbond\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tissue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\texpected\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttotal\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n23\t4\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tbillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\t$\t_\tSYM\t$\t_\t22\tconj\t_\t_\n27\t6\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tbillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n30\tcarry\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmaturity\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tgreater\t_\tADJ\tJJR\t_\t32\tamod\t_\t_\n34\tthan\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\t20\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tyears\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tResolution\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFunding\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdivision\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tResolution\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tTrust\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tagency\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n15\tcreated\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tbail\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tout\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tnation\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\ttroubled\t_\tVERB\tJJ\t_\t23\tamod\t_\t_\n23\tthrifts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tTennessee\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tValley\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAuthority\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tprice\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\toffering\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\tpublic\t_\tNOUN\tJJ\t_\t21\tcompound\t_\t_\n20\tdebt\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tborrowing\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\t15\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tyears\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n3\t's\t_\tPART\tVBZ\t_\t4\tdep\t_\t_\n4\tlots\t_\tNOUN\tNNS\t_\t13\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsupply\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\ttrader\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcouple\t_\tNOUN\tNN\t_\t9\tnummod\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t5\tconj\t_\t_\n8\ttough\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tweeks\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tcoming\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tTreasury\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSecurities\t_\tPROPN\tNNPS\t_\t0\troot\t_\t_\n\n1\tPrices\t_\tPROPN\tNNS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tTreasury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tmoderate\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tactive\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tbenchmark\t_\tNOUN\tJJ\t_\t5\tcompound\t_\t_\n3\t30-year\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tTreasury\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tbond\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tlate\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprice\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t101\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t19/32\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tcompared\t_\tVERB\tVBN\t_\t20\tcase\t_\t_\n17\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tclosing\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t103\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t12/32\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:tmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyield\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbenchmark\t_\tNOUN\tJJ\t_\t6\tcompound\t_\t_\n6\tissue\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\t7.97\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t7.82\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n3\t10-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnotes\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tlate\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t100\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t3/32\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyield\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t7.97\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tcompared\t_\tVERB\tVBN\t_\t21\tcase\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t101\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t9/32\t_\tNUM\tCD\t_\t6\tadvcl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tyield\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\t7.84\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tShort-term\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinterest\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trates\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n6\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tweekly\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tbill\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tauction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdiscount\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tthree-month\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tTreasury\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tbills\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\t7.37\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlowest\t_\tADJ\tJJS\t_\t12\tappos\t_\t_\n16\tsince\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\taverage\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t7.36\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tauction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tOct.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t17\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdiscount\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\t7.42\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsix-month\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbills\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlowest\t_\tADJ\tJJS\t_\t7\tappos\t_\t_\n15\tsince\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\taverage\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\t7.35\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t17\tnmod\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tauction\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tJuly\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t31\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n28\t1989\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t4\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n3\tauction\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdetails\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tRates\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\tauxpass\t_\t_\n3\tdetermined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdifference\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tpurchase\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tface\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tvalue\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\thigher\t_\tADJ\tJJR\t_\t4\tamod\t_\t_\n4\tbidding\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tnarrows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinvestor\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\treturn\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\twhile\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tlower\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n12\tbidding\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\twidens\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tpercentage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trates\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\tauxpass\t_\t_\n5\tcalculated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t360-day\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tcoupon-equivalent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyield\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\tauxpass\t_\t_\n16\tbased\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n17\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\t365-day\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissues\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tdated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t13-week\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbills\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tmature\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tJan.\t_\tNOUN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t18\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1990\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t26-week\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbills\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tmature\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n15\tApril\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n16\t19\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n18\t1990\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCorporate\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tIssues\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n\n1\tInvestment-grade\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tcorporate\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbonds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tone\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tdep\t_\t_\n7\t1\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t1/2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tpoint\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n10\tlower\t_\tADV\tJJR\t_\t4\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tissues\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tForeign\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tBonds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n\n1\tForeign\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tbonds\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tweakened\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tmost\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcurrencies\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tbenchmark\t_\tNOUN\tJJ\t_\t3\tcompound\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n6\tJapan\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tNo.\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n9\t111\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n10\t4.6\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t%\t_\tSYM\tNN\t_\t12\tamod\t_\t_\n12\tbond\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tdue\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n14\t1998\t_\tNUM\tCD\t_\t13\tnmod:tmod\t_\t_\n15\tended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbrokers\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tscreens\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t96.15\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n23\t1.17\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tpoint\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyield\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\t5.245\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n2\tWest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGermany\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\t6\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t3/4\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tdep\t_\t_\n8\tissue\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tdue\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\tJune\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t1999\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t98.30\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tup\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\t0.91\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tpoint\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tyield\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n21\t6.99\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n2\tBritain\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\t11\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n7\tbond\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tdue\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\t2003/2007\t_\tNUM\tCD\t_\t8\tnmod:tmod\t_\t_\n10\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t1\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t1/8\t_\tNUM\tCD\t_\t13\tnmod:npmod\t_\t_\n13\thigher\t_\tADV\tJJR\t_\t10\tadvmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t111\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t19/32\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tyield\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n19\t10.12\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n24\t11\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\t3/4\t_\tNUM\tCD\t_\t26\tdep\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tdep\t_\t_\n27\tnotes\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n28\tdue\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n29\t1991\t_\tNUM\tCD\t_\t28\tnmod:tmod\t_\t_\n30\trose\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n31\t21/32\t_\tNUM\tCD\t_\t30\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\t98\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\t26/32\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tyield\t_\tVERB\tVB\t_\t30\tadvcl\t_\t_\n37\t12.74\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\t%\t_\tSYM\tNN\t_\t36\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMortgage-Backed\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tSecurities\t_\tNOUN\tNNPS\t_\t0\troot\t_\t_\n\n1\tMortgage\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tsecurities\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tmost\t_\tADJ\tJJS\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tgains\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tactive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tissues\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tended\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n14\t24/32\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tdep\t_\t_\n16\t30/32\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoint\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tlower\t_\tADV\tJJR\t_\t13\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDealers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmorning\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tactivity\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\thectic\t_\tADJ\tJJ\t_\t2\tdep\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tdropped\t_\tVERB\tVBD\t_\t6\tdep\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tresponse\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tgains\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tTreasury\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tsecurities\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n25\ttrading\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tslowed\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tmoderate\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tlevels\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tafternoon\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGovernment\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tNational\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tMortgage\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tAssociation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tNovember\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tdelivery\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tlate\t_\tADJ\tRB\t_\t14\tamod\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t98\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t4/32\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\t30/32\t_\tNUM\tCD\t_\t19\tnmod:npmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n24\t9\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\t1/2\t_\tNUM\tCD\t_\t26\tdep\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tdep\t_\t_\n27\tsecurities\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n28\twere\t_\tVERB\tVBD\t_\t33\tcop\t_\t_\n29\tdown\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n30\t27/32\t_\tNUM\tCD\t_\t29\tnmod:npmod\t_\t_\n31\tat\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\t100\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\t5/32\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n36\t10\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\t%\t_\tSYM\tNN\t_\t38\tamod\t_\t_\n38\tsecurities\t_\tNOUN\tNNS\t_\t42\tnsubj\t_\t_\n39\twere\t_\tVERB\tVBD\t_\t42\tcop\t_\t_\n40\tat\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\t102\t_\tNUM\tCD\t_\t42\tcompound\t_\t_\n42\t2/32\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n44\toff\t_\tADJ\tRB\t_\t42\tadvmod\t_\t_\n45\t24/32\t_\tNUM\tCD\t_\t44\tdep\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\t9\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n8\tsecurities\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\twere\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t97\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t1/4\t_\tNUM\tCD\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n15\t3/4\t_\tNUM\tCD\t_\t14\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tmortgage\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tissues\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tgained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tas\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmuch\t_\tADV\tJJ\t_\t6\tadvmod\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t5/32\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLate\t_\tADJ\tRB\t_\t2\tamod\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n3\tGinnie\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tMae\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tyielding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\t9.39\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\t12-year\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\taverage\t_\tNOUN\tJJ\t_\t17\tcompound\t_\t_\n16\tlife\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tassumption\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tspread\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n22\tabove\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tTreasury\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\t10-year\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tnote\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tnarrowed\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n28\t0.01\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n29\tpercentage\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tpoint\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n32\t1.42\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbusy\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdealings\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tFreddie\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMac\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tFederal\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tNational\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tMortgage\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAssociation\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tsecurities\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n18\tunderwriters\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tweek\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\theavy\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tslate\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\treal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n27\testate\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n28\tmortgage\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n29\tinvestment\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n30\tconduit\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tissues\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n32\tmoved\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tgather\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\tcollateral\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n36\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tnew\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tdeals\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOffsetting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tRemic-related\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpurchases\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\twere\t_\tVERB\tVBD\t_\t1\taux\t_\t_\n6\tcontinued\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n7\theavy\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsales\t_\tNOUN\tNNS\t_\t1\tnsubj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmortgage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\toriginators\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tproducing\t_\tVERB\tVBG\t_\t8\tacl:relcl\t_\t_\n16\tincreased\t_\tVERB\tVBN\t_\t17\tamod\t_\t_\n17\tamounts\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tfixed-rate\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tmortgage-backed\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tissues\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tlower\t_\tADJ\tJJR\t_\t24\tamod\t_\t_\n24\trates\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tnew-issue\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tactivity\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tderivative\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMunicipals\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n\n1\tRebounding\t_\tVERB\tVBG\t_\t2\tamod\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tweaker\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n5\tTreasury\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\tdrove\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tmunicipal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t1/4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t3/4\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tpoint\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n14\tlower\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tlate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdealings\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsession\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tlosses\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tmunicipal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tclose\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tmark\t_\t_\n10\twhere\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n13\tbefore\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\t190.58-point\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdrop\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n17\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tIndustrial\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAverage\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n24\tprompted\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tcapital\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t28\tcompound\t_\t_\n28\trally\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\thectic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tduring\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmorning\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tplayers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\ttrying\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tgauge\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tequities\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tcontinue\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n17\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tfree\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tfall\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n22\tstabilize\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n23\tafter\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tbrief\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tspot\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tweakness\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTax-exempts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tstarted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsession\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tflat\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttouch\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n9\thigher\t_\tADV\tJJR\t_\t5\tadvcl\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tanticipation\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tfurther\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\terosion\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n19\tbond\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\trapidly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tturned\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n23\tsouth\t_\tADJ\tRB\t_\t22\tadvmod\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tbecame\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n27\tmore\t_\tADV\tRBR\t_\t28\tadvmod\t_\t_\n28\tclear\t_\tADJ\tJJ\t_\t26\txcomp\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\trepeat\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n32\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tOctober\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\t1987\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tcrash\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\twas\t_\tVERB\tVBD\t_\t40\tcop\t_\t_\n38\tn't\t_\tPART\tRB\t_\t40\tneg\t_\t_\n39\tat\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\thand\t_\tNOUN\tNN\t_\t28\tccomp\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tProfessionals\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tdominated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmunicipal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tthroughout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsession\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tretail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tseemed\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\thugging\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsidelines\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tuntil\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmeasure\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tvolatility\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\tis\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\twrung\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n18\tout\t_\tADP\tIN\t_\t17\tcompound:prt\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tJersey\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tTurnpike\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAuthority\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\t7.20\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n8\tissue\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t2018\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n12\toff\t_\tADJ\tRB\t_\t17\tadvmod\t_\t_\n13\t3/4\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t98\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t1/2\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tbid\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tyielding\t_\tVERB\tVBG\t_\t17\txcomp\t_\t_\n20\t7.32\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tup\t_\tADV\tIN\t_\t19\tadvmod\t_\t_\n24\t0.07\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tpercentage\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tpoint\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tlate\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tFlorida\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBoard\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tEducation\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n6\t7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/4\t_\tNUM\tCD\t_\t8\tdep\t_\t_\n8\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n9\tissue\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t2023\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\t5/8\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tpoint\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n15\tweaker\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n16\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\t99\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t1/2\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tbid\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t7\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\t1/8\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n4\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n5\tissue\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tTriborough\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBridge\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tTunnel\t_\tPROPN\tNN\t_\t11\tcompound\t_\t_\n11\tAuthority\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tdue\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n17\t2019\t_\tNUM\tCD\t_\t16\tnmod:tmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n20\toff\t_\tADJ\tRB\t_\t25\tadvmod\t_\t_\n21\t5/8\t_\tNUM\tCD\t_\t20\tdep\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\t98\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t1/8\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tbid\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n2\tFairfax\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n3\tCounty\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\tVa.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tWater\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAuthority\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\t7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t1/4\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n12\t%\t_\tSYM\tNN\t_\t13\tdep\t_\t_\n13\tissue\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t2027\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n17\tdown\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n18\t3/4\t_\tNUM\tCD\t_\t17\tnmod:npmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\t99\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t7/8\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tbid\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tSerial\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tbond\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tyields\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t0.05\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tpercentage\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpoint\t_\tNOUN\tNN\t_\t5\tnmod:npmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBMA\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tKansas\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCity\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMo.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t's\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tweighing\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tstrategic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\talternatives\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n18\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tBusiness\t_\tPROPN\tNN\t_\t21\tcompound\t_\t_\n21\tMen\t_\tPROPN\tNN\t_\t25\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tAssurance\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tCo.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n28\tis\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n29\tcontacting\t_\tVERB\tVBG\t_\t12\tconj\t_\t_\n30\tpossible\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tbuyers\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tlife\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\thealth\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n37\tinsurance\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\toperation\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBMA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n6\trunaway\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tmedical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcosts\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\tmade\t_\tVERB\tVBN\t_\t4\tdep\t_\t_\n12\thealth\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tinsurance\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsignificant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchallenge\t_\tNOUN\tNN\t_\t11\txcomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\tmargins\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n22\talso\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tpinched\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n26\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tchanges\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmix\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tlife-insurance\t_\tADJ\tNN\t_\t33\tamod\t_\t_\n33\tproducts\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\tconsumers\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n35\tnow\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tdemand\t_\tVERB\tVBP\t_\t33\tacl:relcl\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBusiness\t_\tPROPN\tNN\t_\t3\tcompound\t_\t_\n3\tMen\t_\tPROPN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tAssurance\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\trepresented\t_\tVERB\tVBD\t_\t35\tccomp\t_\t_\n8\tabout\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n10\t288\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tnummod\t_\t_\n17\t488\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t1988\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\trevenue\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\toperating\t_\tVERB\tNN\t_\t28\tamod\t_\t_\n28\tincome\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n30\tabout\t_\tADV\tIN\t_\t31\tadvmod\t_\t_\n31\t$\t_\tSYM\t$\t_\t7\tconj\t_\t_\n32\t10\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tspokesman\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tBMA\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tinvestment\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbanker\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tAlex\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n8\tBrown\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tSons\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tauthorized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcontact\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tpossible\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbuyers\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tunit\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tLaidlaw\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTransportation\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLtd.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\traised\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tstake\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tADT\t_\tPROPN\tNN\t_\t11\tcompound\t_\t_\n11\tLtd.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tBermuda\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\t29.4\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t28\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tLaidlaw\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tdisclose\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tToronto\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\ttransportation\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\twaste\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tservices\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tconcern\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\tpaid\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tadditional\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t25\tdobj\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n26\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tacquired\t_\tVERB\tVBN\t_\t25\tccomp\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n29\tover\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tlast\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcouple\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tweeks\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tLaidlaw\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tincrease\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tstake\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tADT\t_\tPROPN\tNN\t_\t9\tnmod\t_\t_\n12\tbeyond\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t30\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n16\twithout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tgreat\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdeal\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tthought\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n23\tbecause\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tof\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n25\tBritish\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\ttakeover\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tregulations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n29\trequire\t_\tVERB\tVBP\t_\t27\tacl:relcl\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tcompany\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tacquiring\t_\tVERB\tVBG\t_\t31\tacl\t_\t_\n33\tmore\t_\tADJ\tJJR\t_\t35\tadvmod\t_\t_\n34\tthan\t_\tADP\tIN\t_\t33\tmwe\t_\t_\n35\t30\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t32\tdobj\t_\t_\n37\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n38\textend\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n39\tan\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\toffer\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n41\tto\t_\tADP\tTO\t_\t43\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\trest\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n44\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tcompany\t_\tNOUN\tNN\t_\t48\tnmod:poss\t_\t_\n47\t's\t_\tPART\tPOS\t_\t46\tcase\t_\t_\n48\tshareholders\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tADT\t_\tPROPN\tNN\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tsecurity\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tservices\t_\tNOUN\tNNS\t_\t1\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tauctions\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\ttrades\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n11\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tStock\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tExchange\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLaidlaw\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\t47%-controlled\t_\tNUM\tJJ\t_\t0\troot\t_\t_\n4\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tCanadian\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tPacific\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLtd.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tMontreal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\ttransportation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tresources\t_\tNOUN\tNNS\t_\t7\tappos\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tindustrial\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tholding\t_\tVERB\tNN\t_\t17\tamod\t_\t_\n17\tconcern\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNintendo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCo.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tJapanese\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmaker\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tvideo\t_\tADJ\tNN\t_\t9\tamod\t_\t_\n9\tgames\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\telectronic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tinformation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsystems\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tplaying\t_\tNOUN\tVBG\t_\t16\tcompound\t_\t_\n16\tcards\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\t23\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t%\t_\tSYM\tNN\t_\t23\tamod\t_\t_\n22\tunconsolidated\t_\tVERB\tJJ\t_\t23\tamod\t_\t_\n23\tsurge\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tpretax\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n28\t61.41\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tbillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tyen\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t30\tpunct\t_\t_\n32\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n33\t429\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t30\tpunct\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\t50\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tbillion\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tyen\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n40\t-LRB-\t_\tPUNCT\t-LRB-\t_\t39\tpunct\t_\t_\n41\t$\t_\tSYM\t$\t_\t39\tdep\t_\t_\n42\t349.9\t_\tNUM\tCD\t_\t43\tcompound\t_\t_\n43\tmillion\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n44\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n45\tfor\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t48\tdet\t_\t_\n47\tfiscal\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tyear\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n49\tended\t_\tVERB\tVBN\t_\t48\tacl\t_\t_\n50\tAug.\t_\tPROPN\tNNP\t_\t49\tnmod:tmod\t_\t_\n51\t31\t_\tNUM\tCD\t_\t50\tnummod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t40\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\t250.17\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tyen\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t178.61\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincome\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t11\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\t29.62\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyen\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t26.68\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPershare\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tnet\t_\tADJ\tNN\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\t423.3\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tyen\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t457.7\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyen\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tbecause\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tof\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\texpenses\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tcapital\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tadjustments\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWithout\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tdetailing\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n3\tspecific\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tproduct\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbreakdowns\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tNintendo\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tcredited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tbullish\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tupsurge\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n15\tincluding\t_\tVERB\tVBG\t_\t18\tcase\t_\t_\n16\tadvanced\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tgames\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ttelevision\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tentertainment\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tsystems\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n24\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n25\tsurging\t_\tADJ\tVBG\t_\t29\tamod\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n27\tleisure-oriented\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tforeign\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmarkets\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tExport\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tsales\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tleisure\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\titems\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\talone\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinstance\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t184.74\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tyen\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t12\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\tup\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t106.06\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tbillion\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tprevious\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tfiscal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDomestic\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tleisure\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tsales\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\tlower\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHertz\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tPark\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRidge\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tN.J.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tretained\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n12\tMerrill\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tLynch\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tCapital\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMarkets\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tsell\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n19\tHertz\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tEquipment\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tRental\t_\tPROPN\tJJ\t_\t23\tcompound\t_\t_\n22\tCorp.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t35\tdep\t_\t_\n4\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n5\tpressing\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tneed\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tunit\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tdoing\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\tso\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\twe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tcan\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tconcentrate\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tour\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tcore\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tbusiness\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\trenting\t_\tVERB\tVBG\t_\t24\tdep\t_\t_\n27\tautomobiles\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tU.S.\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tabroad\t_\tADV\tRB\t_\t30\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tWilliam\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tSlider\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tHertz\t_\tPROPN\tNNP\t_\t43\tnmod:poss\t_\t_\n40\t's\t_\tPART\tPOS\t_\t39\tcase\t_\t_\n41\texecutive\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\tvice\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tpresident\t_\tNOUN\tNN\t_\t37\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsell\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tright\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tprice\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tHertz\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEquipment\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\toperating\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprofit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tbefore\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tdepreciation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n10\t90\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trevenue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t150\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t1988\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tclosely\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\theld\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n4\tHertz\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trevenue\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tclose\t_\tADJ\tJJ\t_\t8\tacl\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t24\tnsubjpass\t_\t_\n21\t1.7\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tcontributed\t_\tVERB\tVBN\t_\t8\tacl:relcl\t_\t_\n25\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n27\tHertz\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n28\tRent\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n29\tA\t_\tDET\tNNP\t_\t30\tdet\t_\t_\n30\tCar\t_\tPROPN\tNNP\t_\t31\tdep\t_\t_\n31\toperations\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n32\tworld-wide\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHertz\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEquipment\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsupplier\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\trental\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tequipment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tFrance\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tSpain\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tU.K\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsupplies\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tcommercial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tindustrial\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n6\tequipment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t15\tcase\t_\t_\n8\tearth-moving\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\taerial\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tcompaction\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\telectrical\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n15\tequipment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tcompressors\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tcranes\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tforklifts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n23\ttrucks\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInterspec\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnet\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tloss\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t2.4\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tfiscal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tthird\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\tended\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tAug.\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n18\t31\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tloss\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tresulted\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tstartup\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tintroduction\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tcosts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\trelated\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n15\tmedical\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tultrasound\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tequipment\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsystem\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t955,000\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t15\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmanufacturer\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tultrasound\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tdiagnostic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsystems\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tAmbler\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tPa.\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tnine-month\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tnet\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tloss\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n21\t2.43\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tcompared\t_\tVERB\tVBN\t_\t26\tcase\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tnet\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tincome\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n29\t2.71\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n33\t44\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tcents\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n38\tfor\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tnine-month\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tperiod\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tyear\t_\tNOUN\tNN\t_\t44\tnmod:npmod\t_\t_\n44\tearlier\t_\tADV\tRBR\t_\t41\tadvmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tover-the-counter\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tInterspec\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t37.5\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t4.25\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAllegheny\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLudlum\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t47\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\treport\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthird-quarter\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tnet\t_\tADJ\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tabout\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n12\t34\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.50\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t38.4\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\t$\t_\tSYM\t$\t_\t29\tdep\t_\t_\n29\t1.70\t_\tNUM\tCD\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tyear\t_\tNOUN\tNN\t_\t35\tnmod:npmod\t_\t_\n35\tearlier\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n37\tRichard\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tP.\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tSimmons\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tchairman\t_\tNOUN\tNN\t_\t39\tappos\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tchief\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\texecutive\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tofficer\t_\tNOUN\tNN\t_\t41\tconj\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n47\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n48\tinstitutional\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tinvestors\t_\tNOUN\tNNS\t_\t47\tdobj\t_\t_\n50\tin\t_\tADP\tIN\t_\t52\tcase\t_\t_\n51\tNew\t_\tPROPN\tNNP\t_\t52\tcompound\t_\t_\n52\tYork\t_\tPROPN\tNNP\t_\t49\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tPittsburgh-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproducer\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tspecialty\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsteels\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmaterials\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\tfell\t_\tVERB\tVBD\t_\t31\tccomp\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tabout\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n15\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n16\t265\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n24\t320.5\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n28\tearlier\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tthird-quarter\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\testimate\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tindicates\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n7\tprofit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnine\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t4.65\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n19\talmost\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tequal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n21\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tfull-year\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\t1988\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tearnings\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n29\t108.6\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n33\t$\t_\tSYM\t$\t_\t34\tdep\t_\t_\n34\t4.81\t_\tNUM\tCD\t_\t28\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tnine\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1988\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tnet\t_\tADJ\tNN\t_\t11\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n12\t85\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t3.76\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSimmons\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tthird-quarter\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tresults\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\treflect\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n8\tcontinued\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\timprovements\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tproductivity\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\toperating\t_\tNOUN\tVBG\t_\t11\tconj\t_\t_\n14\tmargins\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tcapital\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tspending\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tnext\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\trise\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tabout\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n12\t45\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tabout\t_\tADV\tIN\t_\t16\tadvmod\t_\t_\n16\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n17\t35\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tagain\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\textended\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\texpiration\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdate\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n13\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n14\t7-a-share\t_\tADJ\tJJ\t_\t13\tdep\t_\t_\n15\ttender\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\toffer\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tInternational\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tBanknote\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCo.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tNov.\t_\tVERB\tNNP\t_\t23\tdep\t_\t_\n23\t15\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsell\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tcertain\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfacilities\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t19\tdobj\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\tdid\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tname\t_\tVERB\tNN\t_\t12\tacl:relcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tthird\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tparty\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tneeds\t_\tVERB\tVBZ\t_\t7\tconj\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\textension\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\ttry\t_\tVERB\tVB\t_\t28\tadvcl\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\treach\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tdefinitive\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tagreement\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tsale\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tbelieves\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsale\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tcompleted\t_\tVERB\tVBN\t_\t14\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tapparently\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tsatisfy\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n15\tantitrust\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tissues\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\traised\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tJustice\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tDepartment\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\tabout\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBanknote\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\toffer\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbuy\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\tInternational\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tBanknote\t_\tPROPN\tNNP\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tYork-based\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tprint\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcertificates\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tcurrency\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t9\tcop\t_\t_\n8\tno\t_\tDET\tDT\t_\t9\tneg\t_\t_\n9\tassurance\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsale\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tagreement\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tconcluded\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\ttender\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toffer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tprobably\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\thave\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\textended\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n13\tfurther\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcomplete\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tfinancing\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tarrangements\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCitibank\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\textended\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\texpiration\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdate\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcommitment\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tsenior\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tsecured\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tfinancing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tNov.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n18\t15\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tmade\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tJune\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t1\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\tauxpass\t_\t_\n10\textended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tseveral\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttimes\t_\tNOUN\tNNS\t_\t10\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tClosely\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\theld\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBanknote\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t7\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t$\t_\tSYM\t$\t_\t8\tconj\t_\t_\n14\t126\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tas\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t22\tadvmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n21\t14.9\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tshares\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n26\t78.6\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t23\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tInternational\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tBanknote\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tshares\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n34\toutstanding\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tOct.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n8\t13\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n10\t16.1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tabout\t_\tADV\tIN\t_\t16\tadvmod\t_\t_\n16\t84.3\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tfully\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdiluted\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\toutstanding\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\thad\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tbeen\t_\tAUX\tVBN\t_\t27\tauxpass\t_\t_\n27\ttendered\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGitano\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tGroup\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tagreed\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t50\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tRegatta\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tSport\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tLtd.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tclosely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\theld\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n19\tapparel\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmaker\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tassumption\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t24\tnmod\t_\t_\n27\t3\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcontingent\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tdebt\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tterms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcontract\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tamod\t_\t_\n9\tYork-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tGitano\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\toption\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tacquire\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tremaining\t_\tADJ\tVBG\t_\t19\tamod\t_\t_\n18\t50\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tRegatta\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmaker\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tmen\t_\tNOUN\tNNS\t_\t31\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n29\twomen\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tclothes\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n32\tsold\t_\tVERB\tVBD\t_\t31\tacl\t_\t_\n33\tprimarily\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tdepartment\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tstores\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n38\tunder\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tcertain\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tconditions\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThat\t_\tDET\tIN\t_\t3\tdet\t_\t_\n2\t50\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tClifford\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tParker\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tRegatta\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tpresident\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tchief\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\texecutive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tofficer\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\twho\t_\tPRON\tWP\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tcontinue\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tmanage\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tRegatta\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\toperations\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tunder\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tGitano\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1989\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tRegatta\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\thave\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\texcess\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t10\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tshow\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tprofit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tParker\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tGitano\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tmakes\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n5\tbudget-priced\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tapparel\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tmainly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmass\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmerchandisers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tlike\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tK\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmart\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tWal-Mart\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tRegatta\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tacquisition\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tenhance\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tstrategy\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\texpand\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tinto\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tdepartment\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tstores\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfall\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tGitano\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tmanufacturing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tmoderately\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tpriced\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\tclothes\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\taimed\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tdepartment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tstores\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tunder\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tGloria\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tVanderbilt\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\ttrademark\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t23\tdobj\t_\t_\n21\tGitano\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n22\trecently\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tacquired\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEnron\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tHouston\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsale\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tpreference\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tunits\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n14\tnewly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tformed\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n16\tEnron\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n17\tNGL\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n18\tPartners\t_\tPROPN\tNNPS\t_\t23\tcompound\t_\t_\n19\tL.P.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tmaster\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n21\tlimited\t_\tVERB\tJJ\t_\t23\tamod\t_\t_\n22\tpartnership\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsubsidiary\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tresult\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tundetermined\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tgain\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tfourth\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tquarter\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-ago\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tnatural\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tgas\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tconcern\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tnet\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tincome\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n15\t25.2\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\t34\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\trevenue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tabout\t_\tADV\tIN\t_\t28\tadvmod\t_\t_\n28\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n29\t1.46\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThose\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresults\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t2.7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tcharge\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\trelated\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tretirement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdebt\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\trelated\t_\tVERB\tJJ\t_\t4\tamod\t_\t_\n4\tmove\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tEnron\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tincreased\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnumber\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpartnership\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tunits\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\toffer\t_\tVERB\tVB\t_\t16\tacl:relcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\t6,930,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t5,500,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\told\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\trevised\t_\tVERB\tJJ\t_\t2\tconj\t_\t_\n5\tnumbers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tboth\t_\tDET\tCC\t_\t5\tdep\t_\t_\n7\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tover-allotment\t_\tADJ\tNN\t_\t9\tamod\t_\t_\n9\tprovisions\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tEnron\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\teach\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tunit\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\tpriced\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t12\tamod\t_\t_\n11\t19-to-$21\t_\tADJ\tCD\t_\t10\tdep\t_\t_\n12\trange\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\trepresent\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n16\tabout\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n17\t80\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tpartnership\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tequity\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tproceeds\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toffering\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n10\tclose\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t200\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tGoldman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tSachs\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n8\tDrexel\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBurnham\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tLambert\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n13\tlead\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tunderwriters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tArthur\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGoldberg\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\textended\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\this\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tunsolicited\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\ttender\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t32\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\ttender\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n17\toffer\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t13\tconj\t_\t_\n21\t154.3\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n24\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tDi\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tGiorgio\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\tNov.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n30\t1\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDIG\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tJersey\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tinvestor\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tacquisition\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tvehicle\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n15\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tclose\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tbusiness\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tyesterday\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n23\t560,839\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n25\thad\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tbeen\t_\tAUX\tVBN\t_\t27\tauxpass\t_\t_\n27\ttendered\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIncluding\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstake\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\tDIG\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\talready\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\theld\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tDIG\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttotal\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tabout\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n14\t25\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tDi\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGiorgio\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tfully\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tdiluted\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n25\tbasis\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tincludes\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n7\tcommon\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tpreferred\t_\tVERB\tJJ\t_\t7\tconj\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tpurchase\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\trights\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\texpire\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tnight\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tmidnight\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\texpiration\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdate\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t22\tnmod\t_\t_\n10\tDIG\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tfinancing\t_\tVERB\tNN\t_\t13\tamod\t_\t_\n13\tcommitments\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\ttotal\t_\tVERB\tVBP\t_\t13\tacl:relcl\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n19\t240\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tare\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\texpire\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDIG\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tunit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tDIG\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tHolding\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tunit\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tRose\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tPartners\t_\tPROPN\tNNPS\t_\t15\tcompound\t_\t_\n15\tL.P\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGoldberg\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsole\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tgeneral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpartner\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tRose\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tPartners\t_\tPROPN\tNNPS\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n4\tDi\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tGiorgio\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tSan\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tFrancisco\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tfood\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproducts\t_\tNOUN\tNNS\t_\t5\tappos\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tbuilding\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tmaterials\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarketing\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tdistribution\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tGoldberg\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\toffer\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tinadequate\t_\tADJ\tJJ\t_\t20\tadvcl\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tJJ\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tDi\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tGiorgio\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t31.50\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.75\t_\tNUM\tCD\t_\t19\tnmod:npmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tbelong\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA.\t_\tX\tNN\t_\t3\tdep\t_\t_\n2\tmanual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttypewriters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tB.\t_\tX\tNNP\t_\t7\tdep\t_\t_\n6\tblack-and-white\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsnapshots\t_\tNOUN\tNNS\t_\t3\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tC.\t_\tX\tFW\t_\t12\tdep\t_\t_\n10\tradio\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tadventure\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tshows\t_\tNOUN\tNNS\t_\t3\tappos\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tguessed\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n4\tblack-and-white\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsnapshots\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\t're\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tright\t_\tADJ\tRB\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n3\tof\t_\tSCONJ\tIN\t_\t4\tcase\t_\t_\n4\tfading\t_\tNOUN\tJJ\t_\t2\tacl\t_\t_\n5\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbackground\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\ttwo-tone\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tphotography\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcoming\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tback\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTrendy\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tadvertisements\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfeature\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tstark\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tblack-and-white\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tphotos\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tof\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tHollywood\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tcelebrities\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tpitching\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n12\tjeans\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tshoes\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tliquor\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPortrait\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tstudios\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\taccustomed\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tmark\t_\t_\n5\tshooting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n6\tonly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcolor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\treport\t_\tVERB\tNN\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trush\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\tblack-and-white\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tportrait\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\torders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tblack-and-white\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tphotography\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tclasses\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n6\tcrowded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tstudents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\thappening\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tphotography\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tmirrors\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpopularity\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tblack\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\twhite\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tfashion\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\thome\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfurnishings\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tcinematography\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tSeventh\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAvenue\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tdesigners\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\taux\t_\t_\n8\tadvancing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmonochrome\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlook\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tclothing\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcollections\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tdone\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tentirely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tblack\t_\tADJ\tJJ\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\twhite\t_\tADJ\tJJ\t_\t18\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tclassic\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tblack-and-white\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmovies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tenjoying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcomeback\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tvideocassette\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttapes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tspurred\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpart\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbacklash\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tagainst\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcolorization\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\told\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tfilms\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpendulum\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tswinging\t_\tVERB\tVBG\t_\t13\tdep\t_\t_\n6\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tblack\t_\tNOUN\tJJ\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twhite\t_\tNOUN\tJJ\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tRichard\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tDeMoulin\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tgeneral\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmanager\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tEastman\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tKodak\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCo.\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tprofessional\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tphotography\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tdivision\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t12\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tsales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\taux\t_\t_\n12\tdeclining\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tsteadily\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\t1960s\t_\tNUM\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n5\tbuoyed\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tincreased\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n8\tuse\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tadvertising\t_\tVERB\tNN\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tcommercial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tapplications\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t5\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t24\tnsubjpass\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\texpected\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tjump\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tleast\t_\tADJ\tJJS\t_\t30\tadvmod\t_\t_\n29\tthat\t_\tDET\tWDT\t_\t30\tdet\t_\t_\n30\tmuch\t_\tADV\tRB\t_\t26\tdobj\t_\t_\n31\tagain\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n32\tthis\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tPhotographic\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tscrambling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\ttap\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tresurging\t_\tVERB\tVBG\t_\t9\tamod\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\treviving\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n12\tsome\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tblack-and-white\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tproduct\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlines\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tdeveloping\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tones\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tKodak\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tignored\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tyears\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tblack-and-white\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tfilm\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tnow\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\taccount\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tnearly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t15\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnummod\t_\t_\n26\t3\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tbillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tfilm\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tpaper\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n32\tsales\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n33\tannually\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n35\tup\t_\tADP\tRB\t_\t20\tadvmod\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\t10\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\t%\t_\tSYM\tNN\t_\t35\tnmod\t_\t_\n39\tthree\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\tyears\t_\tNOUN\tNNS\t_\t41\tnmod:npmod\t_\t_\n41\tago\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\tRochester\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.Y.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tphotographic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgiant\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\trecently\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tmarketing\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\tT-Max\t_\tPROPN\tJJ\t_\t10\tdobj\t_\t_\n12\t3200\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\tone\t_\tNUM\tCD\t_\t11\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n17\tfastest\t_\tADJ\tJJS\t_\t20\tdep\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n19\tmost\t_\tADV\tRBS\t_\t20\tadvmod\t_\t_\n20\tsensitive\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tmonochrome\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tfilms\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAimed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n2\tat\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcommercial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tphotographers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tfilm\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n10\tused\t_\tVERB\tVBN\t_\t19\tdep\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tlow\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlight\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\twithout\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tsacrificing\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n17\tquality\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tDonald\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tFranz\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tPhotofinishing\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tNewsletter\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tsnare\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tportion\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t12\tamod\t_\t_\n10\t2\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n11\tbillion-a-year\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n12\tindustry\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t2\taux\t_\t_\n14\tAgfa\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tunit\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tBayer\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tAG\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAgfa\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tOlympic\t_\tADJ\tNNP\t_\t8\tamod\t_\t_\n5\tgold\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tmedalist\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tFlorence\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGriffith-Joyner\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tendorse\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tline\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tblack-and-white\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpaper\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubjpass\t_\t_\n18\t's\t_\tAUX\tVBZ\t_\t19\tauxpass\t_\t_\n19\tgeared\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\tconsumers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tcompete\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n25\tdirectly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tKodak\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tpapers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSlated\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tend\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpaper\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\thave\t_\tAUX\tVB\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tintroduced\t_\tVERB\tVBN\t_\t31\tdep\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tlong\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n21\tago\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\twas\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n26\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n27\tthere\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n28\tthen\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n31\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n32\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tAgfa\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tspokesman\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbiggest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tbeneficiary\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tblack-and-white\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trevival\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n12\tInternational\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPaper\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tIlford\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tdivision\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tknown\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tindustry\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\tpremium\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tproducts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tIlford\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tvarieties\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\toutpacing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tgrowth\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\toverall\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\talthough\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\two\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tsay\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\texactly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\thow\t_\tADV\tWRB\t_\t29\tadvmod\t_\t_\n29\tmuch\t_\tADJ\tRB\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t9\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttrend\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tlasts\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tLaurie\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tDiCara\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tIlford\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tmarketing\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tcommunications\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n17\tdirector\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t4\tdep\t_\t_\n2\tall\t_\tDET\tPDT\t_\t4\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tinterest\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tbaby\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tboomers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tgrew\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tbeing\t_\tAUX\tVBG\t_\t8\tauxpass\t_\t_\n8\tphotographed\t_\tVERB\tVBN\t_\t5\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcolor\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tblack\t_\tNOUN\tJJ\t_\t15\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\twhite\t_\tNOUN\tJJ\t_\t12\tconj\t_\t_\n15\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\teye-catching\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\texotic\t_\tADJ\tJJ\t_\t16\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t14\tdep\t_\t_\n4\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tarchival\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\talmost\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tnostalgic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquality\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tOwen\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tB.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tButler\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tchairman\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tapplied\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n24\tphotography\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdepartment\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tRochester\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tInstitute\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tTechnology\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tshift\t_\tVERB\tVB\t_\t15\tdep\t_\t_\n5\tout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\treality\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tblack\t_\tNOUN\tJJ\t_\t4\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\twhite\t_\tNOUN\tJJ\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tfeatures\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\tespecially\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tattractive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tprofessional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tphotographers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tmarketing\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\texecutives\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t18\taux\t_\t_\n17\tsteadily\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tincreasing\t_\tVERB\tVBG\t_\t9\tacl:relcl\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tuse\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tblack\t_\tNOUN\tJJ\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\twhite\t_\tNOUN\tJJ\t_\t22\tconj\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tadvertising\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tProcessing\t_\tVERB\tNN\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tblack-and-white\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tcommercial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tfilm\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t24\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\t18.7\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\trolls\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tGap\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t1\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhose\t_\tPRON\tWP$\t_\t8\tnmod:poss\t_\t_\n6\tlatest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n7\tad\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcampaign\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tfeatures\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n10\tblack-and-white\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshots\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tHollywood\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tstars\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tartists\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\twell-known\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tpersonalities\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n21\tmodeling\t_\tVERB\tNN\t_\t14\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tretailer\t_\tNOUN\tNN\t_\t25\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tjeans\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tT-shirts\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCrisman\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\taccount\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcampaign\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tGap\t_\tPROPN\tNN\t_\t16\tnsubj\t_\t_\n13\tdid\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tintentionally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tchoose\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n17\tblack\t_\tADJ\tJJ\t_\t16\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\twhite\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdistinguish\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tads\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tcolor\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tspreads\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tcompetitors\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twanted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\thighlight\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tindividual\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tnot\t_\tADV\tRB\t_\t11\tneg\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tenvironment\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t3\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tblack\t_\tNOUN\tJJ\t_\t22\tnsubj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\twhite\t_\tNOUN\tJJ\t_\t19\tconj\t_\t_\n22\tallows\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n23\tyou\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tdo\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n26\tthat\t_\tPRON\tIN\t_\t25\tdobj\t_\t_\n27\tbetter\t_\tADV\tJJR\t_\t25\tadvmod\t_\t_\n28\tthan\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tcolor\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcampaign\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tCleo\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\taward\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tbest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tad\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tspecialty\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tretailer\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tfood\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproducts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tautomobiles\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tlong\t_\tADV\tJJ\t_\t10\tadvmod\t_\t_\n10\tdepended\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcolor\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tswitch\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n3\tfeel\t_\tVERB\tVBP\t_\t14\tdep\t_\t_\n4\tblack\t_\tNOUN\tJJ\t_\t8\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\twhite\t_\tNOUN\tJJ\t_\t4\tconj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tconvey\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstronger\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tstatement\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tMarc\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tL.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tHauser\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tChicago\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tphotographer\t_\tNOUN\tNNP\t_\t17\tappos\t_\t_\n22\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\tworking\t_\tVERB\tVBG\t_\t21\tacl:relcl\t_\t_\n25\ton\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tblack-and-white\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tprint\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tad\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n31\tStouffer\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tFood\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp.\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tLean\t_\tPROPN\tVB\t_\t36\tcompound\t_\t_\n36\tCuisine\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tcurrently\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tusing\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n7\ttwo-tone\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tads\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tAmerican\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tExpress\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tEpson\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAmerica\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tInc\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPortrait\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tstudios\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlatched\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tonto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttrend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUsing\t_\tVERB\tVBG\t_\t9\tdep\t_\t_\n2\tblack\t_\tNOUN\tJJ\t_\t1\tdobj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\twhite\t_\tNOUN\tJJ\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tmake\t_\tVERB\tVB\t_\t16\tdep\t_\t_\n10\thousewives\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tlook\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n12\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstars\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tJohn\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tPerrin\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHis\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n2\tOn-Broadway\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tPhotography\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tstudio\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tPortland\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tOre.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t10\tparataxis\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n21\tbooked\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n22\tsolid\t_\tADJ\tJJ\t_\t21\txcomp\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tnext\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tfive\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tcustomer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tDayna\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBrunsdon\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tshe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tspurned\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tcolor\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tportrait\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tblack\t_\tADJ\tJJ\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\twhite\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\t's\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n21\tmore\t_\tADV\tJJR\t_\t22\tadvmod\t_\t_\n22\tdramatic\t_\tADJ\tJJ\t_\t9\tadvcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tshow\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tmy\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tfriends\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tall\t_\tDET\tDT\t_\t9\tdet\t_\t_\n11\tsay\t_\tVERB\tVBP\t_\t2\tconj\t_\t_\n12\t`\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n13\twow\t_\tINTJ\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n15\t'\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tordinary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcolor\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmost\t_\tADJ\tRBS\t_\t4\tamod\t_\t_\n4\tconsumers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tplunking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tinto\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tcameras\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\ttake\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n15\tfamily\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsnapshots\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tobstacle\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdrugstores\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tdevelop\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfilm\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tanymore\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTypically\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubjpass\t_\t_\n4\tmust\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tmailed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thandful\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprocessors\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\ttake\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t16\tnummod\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tprocessed\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\treturned\t_\tVERB\tVBN\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBlack-and-white\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tfilm\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcosts\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n4\tconsumers\t_\tNOUN\tNNS\t_\t3\tiobj\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlittle\t_\tADV\tJJ\t_\t7\tnmod:npmod\t_\t_\n7\tless\t_\tADJ\tJJR\t_\t3\tdobj\t_\t_\n8\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tcolor\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfilm\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\tprocessing\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tcosts\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsame\t_\tADJ\tJJ\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tphotofinishers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tdeveloping\t_\tNOUN\tVBG\t_\t6\tcompound\t_\t_\n6\tcosts\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tstarting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\ttackle\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tproblem\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIlford\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\texample\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\trecently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tintroduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tblack-and-white\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tfilm\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubjpass\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tprocessed\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n15\tquickly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tcolor\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlabs\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIntent\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n2\ton\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n3\twooing\t_\tVERB\tVBG\t_\t1\tadvcl\t_\t_\n4\tcustomers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\talso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tincreasing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tsponsorship\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tblack-and-white\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tphotography\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tclasses\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSimilarly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tAgfa\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tsponsoring\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tscores\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tphotography\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcontests\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\thigh\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tschools\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tcolleges\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\toffering\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n17\tfree\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tblack-and-white\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfilm\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tpaper\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tprizes\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tKodak\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tdistributing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tinstructional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tvideo\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tprocessors\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\ton\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\thow\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdevelop\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tmonochrome\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfilm\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tmore\t_\tADV\tRBR\t_\t18\tadvmod\t_\t_\n18\tefficiently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tintroducing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\trelated\t_\tVERB\tJJ\t_\t6\tamod\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBeseler\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tleading\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tmaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tphotographic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tenlargers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tintroduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmonth\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tcomplete\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tdarkroom\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tstarter\t_\tNOUN\tJJ\t_\t19\tcompound\t_\t_\n19\tkit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n20\ttargeted\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n21\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tteen-agers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n24\twant\t_\tVERB\tVBP\t_\t22\tacl:relcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tprocess\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n28\town\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tblack-and-white\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tphotographs\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tkit\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tsuggested\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n8\tretail\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t250\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\talready\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbecome\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbestseller\t_\tNOUN\tNN\t_\t16\txcomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n20\twas\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\tintroduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tretailers\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tnoticed\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n25\tnumerous\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trequests\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tparents\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tchildren\t_\tNOUN\tNNS\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tphotography\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tequipment\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t11\tdep\t_\t_\n4\tcomputers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\thobbies\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\twaned\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tIan\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBrightman\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tBeseler\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tchairman\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tchief\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\texecutive\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tofficer\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tobservers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresurgence\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tblack\t_\tNOUN\tJJ\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\twhite\t_\tNOUN\tJJ\t_\t9\tconj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n13\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfad\t_\tNOUN\tNN\t_\t5\tccomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcite\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\temergence\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tstill\t_\tADJ\tRB\t_\t8\tamod\t_\t_\n7\telectronic\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tphotography\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tnewspapers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tturning\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tcolor\t_\tVERB\tNN\t_\t12\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tpages\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n19\tmeasurable\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\timprovements\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tquality\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tcolor\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tprints\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tBlack\t_\tNOUN\tJJ\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\twhite\t_\tNOUN\tJJ\t_\t2\tconj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tmade\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tsame\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tquantum\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tleaps\t_\tNOUN\tVBZ\t_\t7\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ttechnological\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdevelopment\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tcolor\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tButler\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tRochester\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tInstitute\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcolor\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprint\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tsuperior\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tprints\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t10\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tyears\t_\tNOUN\tNNS\t_\t14\tnmod:npmod\t_\t_\n14\tago\t_\tADV\tRB\t_\t10\tacl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tca\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tsay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsame\t_\tADJ\tJJ\t_\t4\tdobj\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tblack\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twhite\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n3\tPopular\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tPhotography\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tleading\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tmagazine\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tphotographers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tselected\t_\tVERB\tVBN\t_\t32\tadvcl\t_\t_\n13\t15\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tgreatest\t_\tADJ\tJJS\t_\t17\tamod\t_\t_\n17\tphotos\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tever\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tmade\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tlatest\t_\tADJ\tJJS\t_\t23\tamod\t_\t_\n23\tissue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n24\tcelebrating\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n25\tphotography\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\t150th\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tanniversary\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\tall\t_\tDET\tDT\t_\t32\tnsubj\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n32\tblack\t_\tNOUN\tJJ\t_\t0\troot\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\twhite\t_\tNOUN\tJJ\t_\t32\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tgot\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tclassic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tspirit\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tcarries\t_\tVERB\tVBZ\t_\t4\tconj\t_\t_\n10\tover\t_\tADP\tIN\t_\t9\tcompound:prt\t_\t_\n11\temotionally\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tAlfred\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tDeBat\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tProfessional\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tPhotographers\t_\tPROPN\tNNPS\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAmerica\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tappeal\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMcClatchy\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tNewspapers\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\timprovements\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tadvertising\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tsubscription\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\trevenue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tled\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n12\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t21\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n16\tgain\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthird-quarter\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprofit\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t16\tnmod\t_\t_\n22\t8.8\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n26\t31\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tcents\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tshare\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\t$\t_\tSYM\t$\t_\t16\tnmod\t_\t_\n33\t7.2\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n36\tor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n37\t25\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tcents\t_\tNOUN\tNNS\t_\t32\tconj\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tshare\t_\tNOUN\tNN\t_\t38\tnmod:npmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmore\t_\tADV\tJJR\t_\t5\tadvmod\t_\t_\n4\tthan\t_\tADP\tIN\t_\t3\tmwe\t_\t_\n5\t7\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n9\t94.9\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n13\t88.3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tSacramento\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCalif.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tattributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\timproved\t_\tVERB\tJJ\t_\t10\tamod\t_\t_\n10\tperformance\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\tlower\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trate\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\thigher\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n19\tinterest\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tincome\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tnewspaper\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tchain\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\talmost\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t23\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tincrease\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n19\t23.6\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\t83\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tcents\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t24\tnmod:npmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n30\t19.2\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n33\tor\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n34\t68\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tcents\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tshare\t_\tNOUN\tNN\t_\t35\tnmod:npmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\talmost\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\t7\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n8\t279.1\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n12\t261.3\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMcClatchy\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tpublishes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n4\tSacramento\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t4\tpunct\t_\t_\n6\tCalif\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t4\tpunct\t_\t_\n9\tBee\t_\tPROPN\tNN\t_\t2\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tTacoma\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n13\tWash\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n15\t-RRB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n16\tNews\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tTribune\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n20\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpapers\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tWestern\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tstates\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomposite\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t25.25\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n21\t25\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAgip\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tS.p\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n4\tA.\t_\tPROPN\tNN\t_\t22\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tSociete\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tElf\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAquitaine\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tstate\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\toil\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t4\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tItaly\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tFrance\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\trespectively\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tsubmitted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\toffer\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tbuy\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tGatoil\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tSuisse\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tS.A\t_\tPROPN\tNNP\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprice\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tGatoil\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tSwiss\t_\tPROPN\tJJ\t_\t10\tcompound\t_\t_\n9\toil\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\texamining\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n16\tsubmitted\t_\tVERB\tVBN\t_\t14\tdep\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\talong\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n23\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\toffers\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\talso\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tsubmitted\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tweek\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\toffers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tprivate\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trefused\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tidentify\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbidding\t_\tVERB\tNN\t_\t14\tamod\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tfurther\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tleast\t_\tADJ\tJJS\t_\t8\tnmod:npmod\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tmore\t_\tADJ\tJJR\t_\t8\tadvmod\t_\t_\n10\toffers\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n12\texpected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\twithin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ttwo\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tweeks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGatoil\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSuisse\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\towns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trefinery\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tSwitzerland\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcapacity\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t70,000\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tbarrels\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\talong\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnetwork\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tgasoline\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tretailing\t_\tVERB\tNN\t_\t25\tamod\t_\t_\n25\toutlets\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tplunging\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tprompted\t_\tVERB\tVBD\t_\t34\tadvcl\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfears\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\teconomy\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tprospects\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlittle-known\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tindicator\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tfaithfully\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tforeshadowed\t_\tVERB\tVBN\t_\t18\tacl:relcl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\teconomy\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tups\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tdowns\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n29\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\texceptionally\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tlong\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tlead\t_\tNOUN\tJJ\t_\t33\tcompound\t_\t_\n33\ttimes\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n34\tpoints\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n35\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tsustained\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\trise\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\toverall\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n41\tbusiness\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tactivity\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbarometer\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdeveloped\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tColumbia\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUniversity\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tCenter\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tInternational\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tBusiness\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tCycle\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tResearch\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\trecord\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\thigh\t_\tADJ\tNN\t_\t21\tamod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t223.0\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tAugust\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tlatest\t_\tADJ\tJJS\t_\t30\tamod\t_\t_\n30\tmonth\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\tavailable\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tColumbia\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tresearchers\t_\tNOUN\tNNS\t_\t37\tnsubj\t_\t_\n37\testimate\t_\tVERB\tVBP\t_\t19\tconj\t_\t_\n38\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tit\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\thas\t_\tAUX\tVBZ\t_\t41\taux\t_\t_\n41\tmoved\t_\tVERB\tVBN\t_\t37\tccomp\t_\t_\n42\teven\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n43\thigher\t_\tADV\tJJR\t_\t41\tadvmod\t_\t_\n44\tsince\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\tthen\t_\tADV\tRB\t_\t41\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\treading\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\t223.0\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tup\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t222.3\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tJuly\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\t215.3\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n14\tas\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n15\trecently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tMarch\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\trise\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tmarked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tfifth\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tstraight\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tmonthly\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tindicator\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tuses\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1967\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\taverage\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbase\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t100\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcontrast\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tCommerce\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tDepartment\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\twidely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tfollowed\t_\tVERB\tJJ\t_\t10\tamod\t_\t_\n10\tindex\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tleading\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\tindicators\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n15\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tup\t_\tADV\tRB\t_\t21\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tAugust\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tfallen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\trepeatedly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tsince\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n24\treaching\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\thigh\t_\tADJ\tJJ\t_\t24\tdobj\t_\t_\n27\tearly\t_\tADV\tJJ\t_\t29\tadvmod\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tragged\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbehavior\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tthrough\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tmuch\t_\tADJ\tJJ\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1989\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tprompted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tsome\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tforecasters\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tanticipate\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstart\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trecession\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tperhaps\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n21\tbefore\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tend\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfar\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tstronger\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tshowing\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tColumbia\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tindex\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n11\tmakes\t_\tVERB\tVBZ\t_\t21\tdep\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trecession\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n14\tany\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tsoon\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\thighly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tunlikely\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tGeoffrey\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tH.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMoore\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdirector\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tColumbia\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tfacility\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tleading\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tauthority\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbusiness\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcycle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMoore\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n11\talso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmember\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tBusiness\t_\tPROPN\tNN\t_\t20\tcompound\t_\t_\n18\tCycle\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tDating\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGroup\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpanel\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tprivate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\teconomists\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\tdecides\t_\tVERB\tVBZ\t_\t23\tacl:relcl\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tgovernment\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\twhen\t_\tADV\tWRB\t_\t36\tadvmod\t_\t_\n33\texpansions\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\trecessions\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\tbegin\t_\tVERB\tVB\t_\t28\tadvcl\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n38\tend\t_\tVERB\tVB\t_\t36\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tnormally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tconvenes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tchange\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tgeneral\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tseems\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n16\tlikely\t_\tADV\tRB\t_\t15\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tNo\t_\tDET\tDT\t_\t3\tneg\t_\t_\n3\tmeeting\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tscheduled\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n6\tbecause\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\texpansion\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tshows\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n10\tno\t_\tDET\tDT\t_\t11\tneg\t_\t_\n11\tsign\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tgoing\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n14\toff\t_\tADP\tRP\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\ttracks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tMoore\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\treports\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tBased\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n2\tlargely\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\trecent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstrength\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tindex\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tcalled\t_\tVERB\tVBD\t_\t9\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tlong\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tleading\t_\tVERB\tVBG\t_\t15\tamod\t_\t_\n15\tindicator\t_\tNOUN\tNN\t_\t11\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tColumbia\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tanalysts\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tforesee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n21\tuninterrupted\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\teconomic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tgrowth\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tthrough\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\trest\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\tnext\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t26\tconj\t_\t_\n33\tas\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n34\twell\t_\tADV\tRB\t_\t33\tmwe\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t2.6\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t%\t_\tSYM\tNN\t_\t6\tamod\t_\t_\n6\trise\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1990\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tgross\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnational\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tproduct\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tadjustment\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tinflation\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnderlying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\toptimism\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t1\taux\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tlongstanding\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tability\t_\tNOUN\tNN\t_\t1\tnsubj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsignal\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\trecessions\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\trecoveries\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcase\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tbe\t_\tVERB\tVB\t_\t11\tparataxis\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tsubstantially\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tgreater\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n25\tperiods\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tCommerce\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tDepartment\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tindex\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tleading\t_\tVERB\tVBG\t_\t34\tamod\t_\t_\n34\tindicators\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n3\tfull\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n4\tpost-World\t_\tPROPN\tJJ\t_\t7\tcompound\t_\t_\n5\tWar\t_\tPROPN\tNN\t_\t7\tcompound\t_\t_\n6\tII\t_\tPROPN\tCD\t_\t7\tcompound\t_\t_\n7\tera\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tColumbia\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\taverage\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tentered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tsustained\t_\tVERB\tJJ\t_\t20\tamod\t_\t_\n20\tdeclines\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t14\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tmonths\t_\tNOUN\tNNS\t_\t18\tnmod:tmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tonset\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\trecessions\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n29\tturned\t_\tVERB\tVBD\t_\t18\tconj\t_\t_\n30\tup\t_\tADP\tRP\t_\t29\tcompound:prt\t_\t_\n31\teight\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tmonths\t_\tNOUN\tNNS\t_\t29\tnmod:tmod\t_\t_\n33\tbefore\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\trecoveries\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tcomparable\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tlead\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttimes\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tCommerce\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhose\t_\tPRON\tWP$\t_\t11\tnmod:poss\t_\t_\n11\tcomponents\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tinclude\t_\tVERB\tVBP\t_\t8\tacl:relcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n18\tfar\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tshorter\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n21\t10\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tmonths\t_\tNOUN\tNNS\t_\t19\tnmod:tmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\trecessions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\tonly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tthree\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tmonths\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\trecoveries\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tColumbia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\teconomists\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\treconstructed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\thow\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tlong\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tleading\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\thave\t_\tAUX\tVB\t_\t14\taux\t_\t_\n14\tbehaved\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\texisted\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1929\t_\tNUM\tCD\t_\t14\tdep\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tcrash\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tOctober\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\tthat\t_\tPRON\tWDT\t_\t31\tnsubj\t_\t_\n31\tushered\t_\tVERB\tVBD\t_\t27\tacl:relcl\t_\t_\n32\tin\t_\tADP\tIN\t_\t31\tcompound:prt\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tGreat\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tDepression\t_\tPROPN\tNNP\t_\t31\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindicator\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpeak\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJanuary\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t1929\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tthen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n12\tsteadily\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tup\t_\tADP\tRB\t_\t14\tcase\t_\t_\n14\tto\t_\tADP\tTO\t_\t18\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t18\tconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcrash\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tentirely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tdifferent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpattern\t_\tNOUN\tNN\t_\t18\tdep\t_\t_\n8\tfrom\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t12\tdobj\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t're\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tseeing\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n13\tnow\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMoore\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsource\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstrength\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tlong\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tleading\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n12\tindicator\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n14\tbeen\t_\tVERB\tVBN\t_\t16\tcop\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tperformance\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tcorporate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tbond-price\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tindex\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t29\tcop\t_\t_\n27\tnot\t_\tPART\tRB\t_\t29\tneg\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tpart\t_\tNOUN\tNN\t_\t23\tacl:relcl\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tCommerce\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tindex\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbond\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmeasure\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n8\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\thighest\t_\tADJ\tJJS\t_\t11\tdep\t_\t_\n11\tmonthly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tearly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\t1987\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsagged\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcomponents\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tlong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tleading\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tindicator\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tratio\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tunit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tlabor\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcosts\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tmanufacturing\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\tindustries\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tM2\t_\tNUM\tNN\t_\t23\tnummod\t_\t_\n23\tversion\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tmoney\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsupply\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tadjusted\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n30\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tinflation\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tvolume\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tnew\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\thome-building\t_\tADJ\tNN\t_\t39\tamod\t_\t_\n39\tpermits\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNotably\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tabsent\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tColumbia\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t15\tdobj\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tMoore\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n18\tsimply\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n19\tno\t_\tDET\tRB\t_\t20\tneg\t_\t_\n20\tlonger\t_\tADV\tRBR\t_\t24\tnmod:tmod\t_\t_\n21\tsuch\t_\tADJ\tPDT\t_\t24\tamod\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tindicator\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\teconomy\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tlong-range\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tprospects\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n32\tthough\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t36\tnsubj\t_\t_\n34\tstill\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n35\tis\t_\tVERB\tVBZ\t_\t36\tcop\t_\t_\n36\tuseful\t_\tADJ\tJJ\t_\t24\tadvcl\t_\t_\n37\tfor\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n38\tanticipating\t_\tVERB\tVBG\t_\t36\tadvcl\t_\t_\n39\tsome\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tshort-run\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\ttwists\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tturns\t_\tNOUN\tNNS\t_\t41\tconj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tADV\tIN\t_\t2\tadvmod\t_\t_\n2\trecently\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n3\tas\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\t1975\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\treflected\t_\tVERB\tVBN\t_\t8\tdep\t_\t_\n12\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tStandard\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n15\t&\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tPoor\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n18\tindex\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\t500\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tcommon\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n24\twas\t_\tAUX\tVBD\t_\t25\tauxpass\t_\t_\n25\trated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tNational\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tBureau\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tEconomic\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tResearch\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\tas\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tbest\t_\tADJ\tJJS\t_\t25\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n38\t12\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n39\tleading\t_\tVERB\tJJ\t_\t40\tamod\t_\t_\n40\tindicators\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n41\tthat\t_\tPRON\tWDT\t_\t43\tnsubj\t_\t_\n42\tthen\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n43\tmade\t_\tVERB\tVBD\t_\t40\tacl:relcl\t_\t_\n44\tup\t_\tADP\tRP\t_\t43\tcompound:prt\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tCommerce\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tindex\t_\tNOUN\tNN\t_\t43\tdobj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tassigned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmark\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t80\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tpossible\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\t100\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tcompared\t_\tVERB\tVBN\t_\t16\tcase\t_\t_\n15\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tscores\t_\tNOUN\tNNS\t_\t3\tadvcl\t_\t_\n17\tranging\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tlow\t_\tADJ\tJJ\t_\t17\tadvmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t69\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcomponents\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tlost\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tprecursory\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpower\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tanalysts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n11\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tColumbia\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tcenter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tclaim\t_\tNOUN\tNN\t_\t5\tparataxis\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tbecause\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tof\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tgrowing\t_\tVERB\tVBG\t_\t21\tamod\t_\t_\n21\timpact\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tinternational\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdevelopments\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tStocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tbecome\t_\tVERB\tVBN\t_\t20\tdep\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n6\tsensitive\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tfactors\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tdirectly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\ttied\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdomestic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n18\tMr.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMoore\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tciting\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\texchange\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\trate\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdollar\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcurrency\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tmarkets\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tforeign-trade\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tbalance\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n37\tinflows\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tforeign\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tcapital\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tfeels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trise\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcomputer-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpractices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tprogram\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tdiminished\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\trelevancy\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\teconomic\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\toutlook\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tS.A.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tleading\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n6\tFrench\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tfood\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tgroup\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tagreed\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tacquire\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tBirkel\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tG.m.b\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n18\tH.\t_\tPROPN\tNNP\t_\t14\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tWest\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tGerman\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tpasta\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmaker\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tvalue\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tacquisition\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tline\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tBSN\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tstrategy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tgradually\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tbuilding\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tEuropean\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tpasta\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tthrough\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\texternal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tgrowth\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tinitially\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\t15\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n8\tinterest\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tBirkel\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tclosely\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\theld\t_\tVERB\tJJ\t_\t15\tamod\t_\t_\n15\tconcern\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t31\tdep\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tagreement\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tgiving\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tiobj\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tright\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tbuy\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tall\t_\tDET\tPDT\t_\t15\tdet:predet\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\toutstanding\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n19\tthis\t_\tPRON\tDT\t_\t22\tnsubjpass\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tbe\t_\tAUX\tVB\t_\t22\tauxpass\t_\t_\n22\tcompleted\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n23\twithin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tfew\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tmonths\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tBSN\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tspokeswoman\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttakeover\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tsubmitted\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tapproval\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tWest\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tGerman\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tcartel\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\toffice\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tBSN\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBirkel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n3\tWest\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGermany\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsecond-biggest\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tproducer\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tpasta\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tsales\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\t250\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tmarks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t-LRB-\t_\tPUNCT\t-LRB-\t_\t18\tpunct\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n19\t133.4\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t18\tpunct\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t750\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthree\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tproduction\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tunits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsouthwest\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n11\tGermany\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n15\tthat\t_\tDET\tIN\t_\t16\tdet\t_\t_\n16\tnation\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tleading\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\tproducer\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tpasta\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tsauces\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tacquisition\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tstrengthens\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tBSN\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tposition\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tEuropean\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tpasta\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcurrently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tranks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tsecond\t_\tADJ\tJJ\t_\t5\tadvmod\t_\t_\n7\tafter\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBarilla\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tGroup\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tItaly\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\twhose\t_\tPRON\tWP$\t_\t14\tnmod:poss\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n16\tchiefly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tItalian\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\treduced\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\trating\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t281\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tsenior\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tsubordinated\t_\tVERB\tJJ\t_\t16\tconj\t_\t_\n19\tdebt\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthis\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tthrift\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tholding\t_\tVERB\tVBG\t_\t24\tamod\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n26\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n27\tC\t_\tPROPN\tNN\t_\t8\tnmod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tCa\t_\tPROPN\tNN\t_\t8\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n31\tsaying\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\tbelieves\t_\tVERB\tVBZ\t_\t31\tccomp\t_\t_\n34\tbondholders\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n35\twill\t_\tAUX\tMD\t_\t36\taux\t_\t_\n36\trecover\t_\tVERB\tVB\t_\t33\tccomp\t_\t_\n37\tonly\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n39\tnegligible\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tprincipal\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tconfirmed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tAmerican\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tContinental\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tpreferred\t_\tVERB\tJJ\t_\t11\tamod\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trating\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tC\t_\tPROPN\tNN\t_\t5\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAmerican\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tContinental\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tthrift\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tunit\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tLos\t_\tPROPN\tNNP\t_\t8\tamod\t_\t_\n8\tAngeles-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tLincoln\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSavings\t_\tPROPN\tNNPS\t_\t5\tappos\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tLoan\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tAssociation\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\treceivership\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tparent\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tfiled\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tprotection\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tcreditor\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tlawsuits\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tunder\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tChapter\t_\tPROPN\tNN\t_\t23\tnmod\t_\t_\n31\t11\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tfederal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tBankruptcy\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tCode\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tCENTRUST\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSAVINGS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBANK\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tMiami\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t-RRB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tdowngraded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tratings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsubordinated\t_\tVERB\tJJ\t_\t12\tamod\t_\t_\n12\tdebt\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tCenTrust\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tCaa\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tB-3\t_\tPROPN\tNN\t_\t6\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trating\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\treduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tratings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tlong-term\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdeposits\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tB-3\t_\tPROPN\tJJ\t_\t5\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tBa-3\t_\tNUM\tJJ\t_\t5\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tpreferred\t_\tVERB\tJJ\t_\t18\tamod\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n20\tCa\t_\tPROPN\tNN\t_\t18\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tCaa\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trating\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t12\tnsubjpass\t_\t_\n7\t85\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tsecurities\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\taffected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdowngrades\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tprompted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tMoody\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcontinuing\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\tturmoil\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tjunk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tbond\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsuspension\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tdividends\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tCenTrust\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tpreferred\t_\tVERB\tJJ\t_\t28\tamod\t_\t_\n28\tstock\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbelieved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tproposed\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\tsale\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\t63\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tCenTrust\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tbranches\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tGreat\t_\tADJ\tNNP\t_\t17\tamod\t_\t_\n16\tWestern\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tBank\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n18\tcould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tif\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\tcompleted\t_\tVERB\tVBN\t_\t23\tparataxis\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tendanger\t_\tVERB\tVBP\t_\t6\tccomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tthrift\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tfunding\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tposition\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTHE\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSTOCK\t_\tNOUN\tNNP\t_\t3\tcompound\t_\t_\n3\tMARKET\t_\tNOUN\tNNP\t_\t4\tnsubj\t_\t_\n4\tAVOIDED\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trepeat\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBlack\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\trecovered\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tearly\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tslide\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\tspurred\t_\tVERB\tVBN\t_\t12\tdep\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tbargain-hunting\t_\tADJ\tNN\t_\t21\tamod\t_\t_\n21\tinstitutions\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tprogram\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\ttraders\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tindustrials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tup\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t88.12\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t2657.38\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfourth-biggest\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tgain\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n16\tever\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n19\tbeing\t_\tVERB\tVBG\t_\t28\tcop\t_\t_\n20\tdown\t_\tADV\tRP\t_\t28\tadvmod\t_\t_\n21\tas\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n22\tmuch\t_\tADJ\tRB\t_\t24\tadvmod\t_\t_\n23\tas\t_\tADP\tIN\t_\t24\tadvmod\t_\t_\n24\t63.52\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tpoints\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmorning\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trally\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\terased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tabout\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\t190.58-point\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\tanalysts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n15\tcautious\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n16\tabout\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\toutlook\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhile\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tbond\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tplummeted\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tbill\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trates\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tsoared\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJunk\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tbonds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\trecovered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tsomewhat\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tremained\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n10\tstalled\t_\tADJ\tVBN\t_\t9\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGold\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tback\t_\tADV\tRP\t_\t4\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tearly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tTuesday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\tfollowing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t1.8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tMonday\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\thigher\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tTokyo\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDonald\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTrump\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\twithdrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t7.54\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\toffer\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tAmerican\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAir\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tciting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\trecent\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchange\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tconditions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAMR\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t4\tdep\t_\t_\n4\t22.125\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t76.50\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tUAL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tgroup\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tfinancing\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tlower\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n13\tbid\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tpossibly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t250\t_\tNUM\tCD\t_\t13\tappos\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tUAL\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t4\tdep\t_\t_\n4\t56.875\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t222.875\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLeveraged\t_\tVERB\tJJ\t_\t2\tamod\t_\t_\n2\tbuy-outs\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tairlines\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tapproval\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttransportation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsecretary\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n17\tpassed\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tHouse\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tsubcommittee\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tearnings\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t30\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tslightly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tmore\t_\tADJ\tJJR\t_\t4\txcomp\t_\t_\n14\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\texpected\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tgiant\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tpartly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstronger\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdelay\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n12\tin\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tshipping\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\thigh-end\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tdisk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tdrive\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t3\tcop\t_\t_\n3\tdownbeat\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tIBM\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\toutlook\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tnext\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tfew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarters\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tauto\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmakers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tplan\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdecrease\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tcar\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproduction\t_\tNOUN\tNN\t_\t6\tiobj\t_\t_\n9\t10.4\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfourth\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tvirtually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\tall\t_\tDET\tPDT\t_\t20\tdet:predet\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdecline\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tcoming\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tBig\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\tThree\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOutput\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tJapanese-owned\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tmanaged\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n6\tplants\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\tdue\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\trise\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\t42\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBudget\t_\tNOUN\tNNP\t_\t3\tcompound\t_\t_\n2\tdirector\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tDarman\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\two\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tgive\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\tfederal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tagencies\t_\tNOUN\tNNS\t_\t8\tiobj\t_\t_\n11\tmuch\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tleeway\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tin\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tcoping\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n15\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tGramm-Rudman\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tspending\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcuts\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\ttook\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n22\teffect\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n23\tyesterday\t_\tNOUN\tNN\t_\t21\tnmod:tmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDarman\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\thopes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tprod\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tCongress\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tfinish\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdeficit\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplan\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tS&L\t_\tPROPN\tNN\t_\t4\tcompound\t_\t_\n3\tbailout\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tagency\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\trestricted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tin\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\thow\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\traises\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n16\tcapital\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tWays\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tMeans\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tcreate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tanother\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tpossible\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tobstacle\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tmark\t_\t_\n12\tselling\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tsick\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tthrifts\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnatural\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tgas\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trule\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tstruck\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tdown\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tfederal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tappeals\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tcourt\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tregulation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tprevented\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tpipeline\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfirms\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tpassing\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n9\tpart\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t1\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tcosts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\talong\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\tcustomers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSupreme\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCourt\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdecide\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\twhether\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfederal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcourt\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tdismantle\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmerger\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\twon\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n18\tregulatory\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tapproval\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n21\tbeen\t_\tAUX\tVBN\t_\t22\tauxpass\t_\t_\n22\truled\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n23\tanticompetitive\t_\tADJ\tJJ\t_\t22\txcomp\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tprivate\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tsuit\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tprofit\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t37\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tthird\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tquarter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t7.5\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tgain\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tPaineWebber\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdecline\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tdue\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tyear-ago\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tgain\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tBritain\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treturn\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tname\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tManpower\t_\tPROPN\tNN\t_\t7\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\ttake\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tbig\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\twrite-off\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmoves\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfirm\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsolidify\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tdominance\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\ttemporary-help\t_\tADJ\tNN\t_\t14\tamod\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t1.82\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tloss\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tthird\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\treflecting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tbig\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\taddition\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tloan-loss\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\treserves\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tmore\t_\tADV\tJJR\t_\t6\tadvmod\t_\t_\n5\tthan\t_\tADP\tIN\t_\t4\tcase\t_\t_\n6\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tK\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tmart\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tacquire\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tPace\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tMembership\t_\tPROPN\tNN\t_\t8\tcompound\t_\t_\n8\tWarehouse\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n11\t322\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\texpanding\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tpresence\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tgrowing\t_\tVERB\tVBG\t_\t21\tamod\t_\t_\n20\twholesale-store\t_\tADJ\tNN\t_\t21\tamod\t_\t_\n21\tbusiness\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMarkets\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tVolume\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n4\t416,290,000\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tJones\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tindustrials\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t2657.38\t_\tNUM\tCD\t_\t3\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t88.12\t_\tNUM\tCD\t_\t6\tnmod:npmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n9\ttransportation\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n10\t1304.23\t_\tNUM\tCD\t_\t9\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\toff\t_\tADJ\tRB\t_\t10\tadvmod\t_\t_\n13\t102.06\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n15\tutilities\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n16\t214.73\t_\tNUM\tCD\t_\t15\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\t2.77\t_\tNUM\tCD\t_\t18\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBonds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tShearson\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tLehman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tHutton\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tTreasury\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tindex\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n8\t3393.51\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\toff\t_\tADJ\tRB\t_\t8\tadvmod\t_\t_\n\n1\tCommodities\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tDow\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tJones\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tfutures\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n7\t129.72\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\toff\t_\tADJ\tRB\t_\t7\tadvmod\t_\t_\n10\t0.15\t_\tNUM\tCD\t_\t9\tdep\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n12\tspot\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tindex\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n14\t130.16\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tup\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t0.91\t_\tNUM\tCD\t_\t16\tnmod:npmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDollar\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\t141.85\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tyen\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\toff\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t0.25\t_\tNUM\tCD\t_\t4\tadvmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\t1.8685\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmarks\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\toff\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t0.0055\t_\tNUM\tCD\t_\t10\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMonday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t16\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t1989\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n2\tkey\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tforeign\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n6\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinterest\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\trates\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\tbelow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tguide\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tgeneral\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlevels\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tdo\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\talways\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\trepresent\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n21\tactual\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttransactions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tPRIME\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tRATE\t_\tPROPN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t10\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t1/2\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbase\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcorporate\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tloans\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tcenter\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tcommercial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tFUNDS\t_\tPROPN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t8\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n7\thigh\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\t8\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t1/2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t6\tappos\t_\t_\n12\tlow\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\t8\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t5/8\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t6\tappos\t_\t_\n17\tnear\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tclosing\t_\tVERB\tNN\t_\t19\tamod\t_\t_\n19\tbid\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\t8\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t3/4\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t6\tappos\t_\t_\n24\toffered\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tReserves\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tamong\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcommercial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbanks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tovernight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tuse\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tamounts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tFulton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n4\tPrebon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n6\tU.S.A\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n9\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDISCOUNT\t_\tPROPN\tNN\t_\t2\tcompound\t_\t_\n2\tRATE\t_\tPROPN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t7\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tdepository\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n7\tinstitutions\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tReserve\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBank\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCALL\t_\tNOUN\tJJ\t_\t2\tcompound\t_\t_\n2\tMONEY\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t9\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tdep\t_\t_\n8\t10\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tbrokers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\texchange\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcollateral\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tplaced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tdirectly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tGeneral\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tMotors\t_\tPROPN\tNNPS\t_\t9\tcompound\t_\t_\n8\tAcceptance\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\t5\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n15\t44\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tdays\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n18\t8.20\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n20\t45\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tdep\t_\t_\n22\t59\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tdays\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n25\t8\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n27\t60\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tdep\t_\t_\n29\t89\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tdays\t_\tNOUN\tNNS\t_\t26\tnmod:npmod\t_\t_\n31\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n32\t7.875\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n34\t90\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n35\tto\t_\tADP\tTO\t_\t36\tdep\t_\t_\n36\t119\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n37\tdays\t_\tNOUN\tNNS\t_\t33\tnmod:npmod\t_\t_\n38\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n39\t7.75\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n41\t120\t_\tNUM\tCD\t_\t43\tcompound\t_\t_\n42\tto\t_\tADP\tTO\t_\t43\tdep\t_\t_\n43\t149\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\tdays\t_\tNOUN\tNNS\t_\t40\tnmod:npmod\t_\t_\n45\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n46\t7.625\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n47\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n48\t150\t_\tNUM\tCD\t_\t50\tcompound\t_\t_\n49\tto\t_\tADP\tTO\t_\t50\tdep\t_\t_\n50\t179\t_\tNUM\tCD\t_\t51\tnummod\t_\t_\n51\tdays\t_\tNOUN\tNNS\t_\t47\tnmod:npmod\t_\t_\n52\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n53\t7.375\t_\tNUM\tCD\t_\t54\tnummod\t_\t_\n54\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n55\t180\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n56\tto\t_\tADP\tTO\t_\t57\tdep\t_\t_\n57\t270\t_\tNUM\tCD\t_\t58\tnummod\t_\t_\n58\tdays\t_\tNOUN\tNNS\t_\t54\tnmod:npmod\t_\t_\n59\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\tHigh-grade\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tunsecured\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tnotes\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tthrough\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdealers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcorporations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tmultiples\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1,000\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n18\t:\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n19\t8.40\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tdays\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n24\t8.33\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n26\t60\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tdays\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n29\t8.26\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n31\t90\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tdays\t_\tNOUN\tNNS\t_\t30\tnmod:npmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCERTIFICATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tOF\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tDEPOSIT\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n5\t8.05\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t1\tdep\t_\t_\n7\tone\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\t8.02\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n15\t8\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n17\tthree\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmonths\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n20\t7.98\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n22\tsix\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n25\t7.95\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n27\tone\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t26\tdep\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAverage\t_\tNOUN\tJJ\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ttop\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tpaid\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprimary\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnegotiable\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tC.D.s\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tusually\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tamounts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t1\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tmore\t_\tADJ\tJJR\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tminimum\t_\tNOUN\tJJ\t_\t3\tcompound\t_\t_\n3\tunit\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t100,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trates\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsecondary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n8\t8.40\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\t8.40\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod:npmod\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n18\t8.40\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n20\tsix\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tmonths\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBANKERS\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tACCEPTANCES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t8.40\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n6\t30\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tdays\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\t8.35\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n11\t60\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n14\t8.27\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n16\t90\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tdays\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n18\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n19\t8.20\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n21\t120\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tdays\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n24\t8.15\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n26\t150\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tdays\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n29\t8.02\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n31\t180\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tdays\t_\tNOUN\tNNS\t_\t30\tnmod:npmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNegotiable\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\tbank-backed\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tbusiness\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tcredit\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tinstruments\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\ttypically\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tfinancing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\timport\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\torder\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLATE\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tEURODOLLARS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\t8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n6\t5/8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n9\t8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n10\t1/2\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n12\tone\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n15\t8\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n16\t5/8\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t21\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t21\tdep\t_\t_\n19\t8\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n20\t1/2\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n25\t8\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n26\t9/16\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t31\tdep\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tdep\t_\t_\n29\t8\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n30\t7/16\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n32\tthree\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tmonths\t_\tNOUN\tNNS\t_\t31\tnmod:npmod\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n35\t8\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n36\t1/2\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n37\t%\t_\tSYM\tNN\t_\t41\tdep\t_\t_\n38\tto\t_\tADP\tTO\t_\t41\tdep\t_\t_\n39\t8\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n40\t3/8\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n41\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n42\tfour\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n43\tmonths\t_\tNOUN\tNNS\t_\t41\tnmod:npmod\t_\t_\n44\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n45\t8\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n46\t1/2\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n47\t%\t_\tSYM\tNN\t_\t51\tdep\t_\t_\n48\tto\t_\tADP\tTO\t_\t51\tdep\t_\t_\n49\t8\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n50\t3/8\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n51\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n52\tfive\t_\tNUM\tCD\t_\t53\tnummod\t_\t_\n53\tmonths\t_\tNOUN\tNNS\t_\t51\tnmod:npmod\t_\t_\n54\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n55\t8\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n56\t1/2\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n57\t%\t_\tSYM\tNN\t_\t61\tdep\t_\t_\n58\tto\t_\tADP\tTO\t_\t61\tdep\t_\t_\n59\t8\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n60\t3/8\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n61\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n62\tsix\t_\tNUM\tCD\t_\t63\tnummod\t_\t_\n63\tmonths\t_\tNOUN\tNNS\t_\t61\tnmod:npmod\t_\t_\n64\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tINTERBANK\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tOFFERED\t_\tVERB\tNNP\t_\t4\tamod\t_\t_\n4\tRATES\t_\tNOUN\tNNPS\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tLIBOR\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\t8\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t1/2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t4\tdep\t_\t_\n12\tone\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n15\t8\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t1/2\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n18\tthree\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n21\t8\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t7/16\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n24\tsix\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmonths\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n26\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n27\t8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t3/8\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n30\tone\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t29\tdep\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tinterbank\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\toffered\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\trates\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdeposits\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tquotations\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tfive\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFOREIGN\t_\tPROPN\tJJ\t_\t3\tcompound\t_\t_\n2\tPRIME\t_\tPROPN\tJJ\t_\t3\tcompound\t_\t_\n3\tRATES\t_\tPROPN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tCanada\t_\tPROPN\tNNP\t_\t3\tdep\t_\t_\n6\t13.50\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\tGermany\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n10\t8.50\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n13\tJapan\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n14\t4.875\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdep\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n17\tSwitzerland\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n18\t8.50\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n21\tBritain\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n22\t15\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trate\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindications\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tdirectly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tcomparable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tlending\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpractices\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tvary\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n12\twidely\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tlocation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTREASURY\t_\tPROPN\tNN\t_\t2\tcompound\t_\t_\n2\tBILLS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\tResults\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n5\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n7\tMonday\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tOctober\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n10\t16\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\t1989\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tauction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tshort-term\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tgovernment\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tbills\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tsold\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n22\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdiscount\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tface\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tvalue\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tunits\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t34\tdep\t_\t_\n32\t10,000\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n33\tto\t_\tADP\tTO\t_\t34\tdep\t_\t_\n34\t$\t_\tSYM\t$\t_\t29\tnmod\t_\t_\n35\t1\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n38\t7.37\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\t%\t_\tSYM\tNN\t_\t4\tdep\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\t13\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tweeks\t_\tNOUN\tNNS\t_\t39\tappos\t_\t_\n43\t;\t_\tPUNCT\t:\t_\t39\tpunct\t_\t_\n44\t7.42\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n45\t%\t_\tSYM\tNN\t_\t39\tdep\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\t26\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\tweeks\t_\tNOUN\tNNS\t_\t45\tappos\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHOME\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLOAN\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMORTGAGE\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCORP\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n8\tFreddie\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMac\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n12\tPosted\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n13\tyields\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t30-year\t_\tNUM\tJJ\t_\t17\tnummod\t_\t_\n16\tmortgage\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcommitments\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tdelivery\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\twithin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tdays.\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n\n1\t9.83\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tstandard\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tconventional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfixedrate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmortgages\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\t7.875\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tdep\t_\t_\n14\trate\t_\tNOUN\tNN\t_\t19\tamod\t_\t_\n15\tcapped\t_\tVERB\tVBD\t_\t14\tdep\t_\t_\n16\tone-year\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tadjustable\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\trate\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmortgages\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tNATIONAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMORTGAGE\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tASSOCIATION\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n6\tFannie\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMae\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n10\tPosted\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\tyields\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\t30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tmortgage\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcommitments\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdelivery\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\twithin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t30\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tdays\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t-LRB-\t_\tPUNCT\t-LRB-\t_\t23\tpunct\t_\t_\n23\tpriced\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tpar\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\t-RRB-\t_\tPUNCT\t-RRB-\t_\t23\tpunct\t_\t_\n27\t.9.82\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tstandard\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\tconventional\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tfixed\t_\tVERB\tVBN\t_\t33\tamod\t_\t_\n33\trate-mortgages\t_\tNOUN\tNNS\t_\t28\tappos\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n35\t8.70\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t28\tdep\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\t6/2\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n39\trate\t_\tNOUN\tNN\t_\t40\tdep\t_\t_\n40\tcapped\t_\tVERB\tVBD\t_\t44\tamod\t_\t_\n41\tone-year\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n42\tadjustable\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n43\trate\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tmortgages\t_\tNOUN\tNNS\t_\t36\tappos\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMERRILL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tLYNCH\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tREADY\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tASSETS\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tTRUST\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\t8.49\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnnualized\t_\tVERB\tJJ\t_\t3\tamod\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\treturn\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\texpenses\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tpast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n14\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tforecast\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tfuture\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\treturns\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIntel\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\treached\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tAlliant\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tComputer\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tSystems\t_\tPROPN\tNNPS\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tdevelop\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n15\tsoftware\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tstandards\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tIntel\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\ti860\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmicroprocessor\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ti860\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tintroduced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tearlier\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tIntel\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tentry\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcrowded\t_\tVERB\tJJ\t_\t16\tamod\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n18\treduced\t_\tVERB\tVBN\t_\t26\tamod\t_\t_\n19\tinstruction\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n20\tset\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n21\tcomputing\t_\tVERB\tNN\t_\t26\tamod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n24\tRISC\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tcomputers\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIntel\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tbased\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tSanta\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tClara\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCalif.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tleader\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ttraditional\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmicroprocessors\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\t8086\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tfamily\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tforms\t_\tVERB\tVBZ\t_\t20\tacl:relcl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\theart\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tIBM-compatible\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tpersonal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tcomputers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tIntel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tinvest\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n9\t3\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tacquire\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t4\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n16\tstake\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tAlliant\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmaker\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tminisupercomputers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tscientists\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tengineers\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAlliant\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tbased\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tLittleton\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMass.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tlicense\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\tparallel-computing\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttechnologies\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tIntel\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tproviding\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n18\tusers\t_\tNOUN\tNNS\t_\t17\tiobj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tway\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tlet\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tmany\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\ti860\t_\tNOUN\tJJ\t_\t25\tcompound\t_\t_\n25\tmicroprocessors\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tsingle\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcomputer\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\twork\t_\tVERB\tNN\t_\t22\tccomp\t_\t_\n31\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tproblem\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\tsimultaneously\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAlliant\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tplans\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tuse\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmicroprocessor\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfuture\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tproducts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tdiscuss\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tplans\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfor\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tupgrading\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tcurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tproduct\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tline\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOmnicare\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tintends\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\texpand\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tposition\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tmedical\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tdental\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\tmarkets\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tacquired\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcotton\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tgauze\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tproducts\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tdivision\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tclosely\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\theld\t_\tVERB\tVBN\t_\t31\tamod\t_\t_\n29\tSterile\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tProducts\t_\tPROPN\tNNPS\t_\t31\tcompound\t_\t_\n31\tCorp.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n34\t8.2\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tOmnicare\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdivision\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tadd\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tsubstantial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tsales\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tvolume\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tpositive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcontribution\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tour\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tearnings\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1990\t_\tNUM\tCD\t_\t15\tdep\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tbeyond\t_\tADP\tIN\t_\t23\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1988\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tCincinnati\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t$\t_\tSYM\t$\t_\t6\tdobj\t_\t_\n8\t3.1\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\t32\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\trevenue\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n21\t148.5\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOmnicare\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdivision\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\toperates\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n6\tunder\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\ttrade\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tname\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tACCO\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tsupplies\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tmedical\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tdental\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tmarkets\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbusiness\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tSt.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLouis\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\thad\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t14\tadvmod\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n15\t14\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tfiscal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tended\t_\tVERB\tVBD\t_\t20\tacl\t_\t_\n22\tMarch\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t31\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\tOmnicare\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tBurmah\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tOil\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPLC\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tBritish\t_\tPROPN\tJJ\t_\t8\tcompound\t_\t_\n7\tindependent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\toil\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tspecialty\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tchemicals\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n12\tmarketing\t_\tNOUN\tVBG\t_\t13\tcompound\t_\t_\n13\tconcern\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tSHV\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tHoldings\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tN.V.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tNetherlands\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tbuilt\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n24\tup\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\t6.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tamod\t_\t_\n28\tstake\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tcompany\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAlexander\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBurmah\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tspokesman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tSHV\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tpreviously\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\towned\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tadvmod\t_\t_\n15\tlittle\t_\tADJ\tJJ\t_\t17\tadvmod\t_\t_\n16\tunder\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tBurmah\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tabout\t_\tADV\tIN\t_\t24\tadvmod\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDutch\t_\tPROPN\tJJ\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tnotified\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n7\tBurmah\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\treason\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tincreasing\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstake\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tSHV\t_\tPROPN\tNNP\t_\t23\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n6\tmerged\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tNorth\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSea\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\toil\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tgas\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\toperations\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tCalor\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tGroup\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tPLC\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n22\tbeen\t_\tAUX\tVBN\t_\t23\tauxpass\t_\t_\n23\tpegged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tspeculators\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tas\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tpossible\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tsuitor\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tBurmah\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tOil\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\trecent\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tweeks\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tSHV\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\towns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t40\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tCalor\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBurmah\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\towns\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tCastrol\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tbrand\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tlubricant\t_\tADJ\tNN\t_\t10\tamod\t_\t_\n10\toils\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t17\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n16\trise\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\t#\t_\tSYM\t#\t_\t23\tcompound\t_\t_\n22\t43.5\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t25\tpunct\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n26\t68.3\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t-RRB-\t_\tPUNCT\t-RRB-\t_\t25\tpunct\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tfirst\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\thalf\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsigned\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdefinitive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tBuilders\t_\tPROPN\tNNS\t_\t16\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tHardware\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tGroup\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\tclosely\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\theld\t_\tVERB\tJJ\t_\t21\tamod\t_\t_\n20\tNalcor\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tBeverly\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tHills\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tCalif\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tJ.P.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tIndustries\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tspokesman\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tamount\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n14\tJ.P.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tIndustries\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tget\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tgroup\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlittle\t_\tADV\tRB\t_\t25\tnmod:npmod\t_\t_\n25\tbetter\t_\tADV\tJJR\t_\t11\tdep\t_\t_\n26\tthan\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\texpected\t_\tVERB\tVBN\t_\t25\tccomp\t_\t_\n28\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarketplace\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tmarketplace\t_\tNOUN\tNN\t_\t37\tnsubj\t_\t_\n35\thad\t_\tAUX\tVBD\t_\t37\taux\t_\t_\n36\tbeen\t_\tAUX\tVBN\t_\t37\taux\t_\t_\n37\texpecting\t_\tVERB\tVBG\t_\t25\tconj\t_\t_\n38\t$\t_\tSYM\t$\t_\t42\tdep\t_\t_\n39\t25\t_\tNUM\tCD\t_\t42\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t42\tcompound\t_\t_\n41\tto\t_\tADP\tTO\t_\t42\tdep\t_\t_\n42\t$\t_\tSYM\t$\t_\t37\tdobj\t_\t_\n43\t30\t_\tNUM\tCD\t_\t44\tcompound\t_\t_\n44\tmillion\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tconsists\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tWeslock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tJPI\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tModern\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tInc\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNPS\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tAnn\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tArbor\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tMich.\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsale\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tcompletes\t_\tVERB\tVBZ\t_\t13\tccomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tpreviously\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tannounced\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n20\tprogram\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tdivest\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\titself\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\thardware\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tplumbing\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n29\tsupplies\t_\tNOUN\tNNS\t_\t30\tcompound\t_\t_\n30\toperations\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tremaining\t_\tADJ\tVBG\t_\t5\tamod\t_\t_\n5\tbusiness\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmanufacture\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tsale\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tengine\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\ttransmissions\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\tproducts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tindustrial\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\ttransportation\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n20\tapplications\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCiting\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\t$\t_\tSYM\t$\t_\t6\tamod\t_\t_\n4\t3.1\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tprovision\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdoubtful\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taccounts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tDallas-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tNational\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHeritage\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tloss\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tfourth\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tended\t_\tVERB\tVBD\t_\t21\tacl\t_\t_\n23\tJune\t_\tPROPN\tNNP\t_\t22\tnmod:tmod\t_\t_\n24\t30\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunit\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ttroubled\t_\tVERB\tJJ\t_\t6\tamod\t_\t_\n5\tSouthmark\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\toperator\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tnursing\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\thomes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tretirement\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcenters\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsustained\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnet\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tloss\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t1.6\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\tnine\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\tcompared\t_\tVERB\tVBN\t_\t36\tcase\t_\t_\n34\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tnet\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tincome\t_\tNOUN\tNN\t_\t18\tadvcl\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\t$\t_\tSYM\t$\t_\t36\tnmod\t_\t_\n39\t1.3\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n42\tor\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n43\teight\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\tcents\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n45\ta\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tshare\t_\tNOUN\tNN\t_\t44\tnmod:npmod\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n48\ta\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tyear\t_\tNOUN\tNN\t_\t50\tnmod:npmod\t_\t_\n50\tearlier\t_\tADV\tRBR\t_\t38\tadvmod\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tOperating\t_\tNOUN\tVBG\t_\t2\tcompound\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t13\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n8\t22.2\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n12\t19.7\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tyear-earlier\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t3.1\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\treserve\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\tcreated\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treflect\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tdoubt\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcollectability\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\treceivables\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\towed\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tNational\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tHeritage\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tsome\t_\tDET\tDT\t_\t19\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\treal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\testate\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tpartnerships\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tmanages\t_\tVERB\tVBZ\t_\t29\tacl:relcl\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\texpenses\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n6\tincurred\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tprevious\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tboard\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tmanagement\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\trecent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcontest\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tcontrol\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\trecognized\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n21\tprimarily\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfirst\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tquarter\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tended\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tSept.\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n28\t30\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNational\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tHeritage\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t12.5\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcents\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tclose\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t1.375\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tStock\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tExchange\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcomposite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnited\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tBiscuits\t_\tPROPN\tNNPS\t_\t6\tcompound\t_\t_\n3\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n4\tHoldings\t_\tPROPN\tNNS\t_\t6\tcompound\t_\t_\n5\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n6\tPLC\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tBritish\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tfood\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproducer\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcreation\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tEuropean\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tgroup\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tbring\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\ttogether\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tinterests\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tregion\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tcomprise\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tall\t_\tDET\tDT\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tUnited\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBiscuit\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tmanufacturing\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tmarketing\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\toperations\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfood\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsector\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tapart\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tthose\t_\tPRON\tDT\t_\t19\tnmod\t_\t_\n22\tbased\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnited\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBiscuits\t_\tPROPN\tNNPS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcombined\t_\tVERB\tJJ\t_\t6\tamod\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tinclude\t_\tVERB\tVB\t_\t6\tacl:relcl\t_\t_\n11\tbusinesses\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tMcVities\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tbiscuits\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tTerry\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tconfectionery\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\twill\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\thave\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n23\tannual\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsales\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tmore\t_\tADJ\tJJR\t_\t30\tadvmod\t_\t_\n27\tthan\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\t#\t_\tSYM\t#\t_\t30\tcompound\t_\t_\n29\t1.5\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t32\tpunct\t_\t_\n32\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n33\t2.35\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tbillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t32\tpunct\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n37\ttrading\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tprofit\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n39\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n40\tmore\t_\tADJ\tJJR\t_\t44\tadvmod\t_\t_\n41\tthan\t_\tADP\tIN\t_\t40\tmwe\t_\t_\n42\t#\t_\tSYM\t#\t_\t44\tcompound\t_\t_\n43\t160\t_\tNUM\tCD\t_\t44\tcompound\t_\t_\n44\tmillion\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n45\t-LRB-\t_\tPUNCT\t-LRB-\t_\t46\tpunct\t_\t_\n46\t$\t_\tSYM\t$\t_\t44\tdep\t_\t_\n47\t251\t_\tNUM\tCD\t_\t48\tcompound\t_\t_\n48\tmillion\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n49\t-RRB-\t_\tPUNCT\t-RRB-\t_\t46\tpunct\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstructure\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tenable\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n7\tUnited\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBiscuits\t_\tPROPN\tNNPS\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfocus\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n11\tclearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tupon\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\topportunities\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tplanned\t_\tVERB\tJJ\t_\t16\tamod\t_\t_\n16\tgrowth\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tduring\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\t1990s\t_\tNOUN\tCD\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tBob\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tClarke\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tdeputy\t_\tADJ\tNN\t_\t27\tamod\t_\t_\n27\tchairman\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tgroup\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n30\tchief\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\texecutive\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tUnited\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBiscuits\t_\tPROPN\tNNPS\t_\t6\tnsubj\t_\t_\n6\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tentire\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\trestaurant\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\toperations\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tGrand\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tMetropolitan\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPLC\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t#\t_\tSYM\t#\t_\t20\tcompound\t_\t_\n19\t180\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tAmerican\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tjournalist\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tstanding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ttrial\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tNamibia\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tplace\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tthat\t_\tDET\tWDT\t_\t10\tnmod\t_\t_\n6\tworld\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\topinion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n10\tcelebrating\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n11\tover\t_\tADP\tIN\t_\t5\tcase\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\texpectation\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\t's\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tgoing\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\thold\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tan\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\telection\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tlikely\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\twinner\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tMarxist-dominated\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tSWAPO\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\trebels\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tjournalist\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tcrime\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\twriting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\thead\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcommission\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tcharged\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n17\twith\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\toverseeing\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\telection\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tfairness\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tBryan\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tO'Linn\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n28\topenly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tsympathetic\t_\tADJ\tJJ\t_\t9\tccomp\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n31\tSWAPO\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tafter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthat\t_\tPRON\tDT\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tO'Linn\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tScott\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tStanley\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tarrested\t_\tVERB\tVBN\t_\t7\txcomp\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tpassport\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tconfiscated\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttrial\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcharges\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tviolated\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tproclamation\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tissued\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n15\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tSouth\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tAfrican\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tadministrator\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tgeneral\t_\tNOUN\tJJ\t_\t14\tnmod\t_\t_\n21\tearlier\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n26\tmade\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcrime\t_\tNOUN\tNN\t_\t41\tdep\t_\t_\n30\tpunishable\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n31\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ttwo\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tprison\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\tfor\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n37\tany\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tperson\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n39\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n40\t``\t_\tPUNCT\t``\t_\t41\tpunct\t_\t_\n41\tinsult\t_\tVERB\tNN\t_\t26\txcomp\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tdisparate\t_\tADJ\tJJ\t_\t41\tconj\t_\t_\n44\tor\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n45\tbelittle\t_\tVERB\tJJ\t_\t41\tconj\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n47\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n48\telection\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tcommission\t_\tNOUN\tNN\t_\t41\tconj\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\taffair\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tdoes\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tbode\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\twell\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfuture\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdemocracy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tfreedom\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tanything\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tNamibia\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n19\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n20\tSWAPO\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tstarts\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n22\trunning\t_\tVERB\tVBG\t_\t21\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tgovernment\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\textent\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStanley\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tdone\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tanything\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\twrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tstep\t_\tNOUN\tNN\t_\t13\tccomp\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tconsensus\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tworld\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tintellectuals\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tNamibian\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tguerrillas\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n30\twere\t_\tVERB\tVBD\t_\t35\tcop\t_\t_\n31\tabove\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tall\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\telse\t_\tADV\tRB\t_\t35\tnmod\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tvictims\t_\tNOUN\tNNS\t_\t22\tdep\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsuppression\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tneighboring\t_\tADJ\tVBG\t_\t41\tamod\t_\t_\n40\tSouth\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tAfrica\t_\tPROPN\tNNP\t_\t37\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSWAPO\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tenjoyed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tfavorable\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tWestern\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmedia\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\ttreatment\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tever\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n9\tsince\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tU.N.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tGeneral\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tAssembly\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tdeclared\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n16\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tsole\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tauthentic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\trepresentative\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tNamibia\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tpeople\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t21\tdep\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tbrokered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tpeace\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tsettlement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tremove\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n12\tCuba\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tAfrika\t_\tPROPN\tFW\t_\t16\tcompound\t_\t_\n16\tKorps\t_\tPROPN\tFW\t_\t11\tdobj\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tAngola\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\thold\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n23\tfree\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tfair\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\telections\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t30\tnsubj\t_\t_\n29\twould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\tend\t_\tVERB\tVB\t_\t27\tacl:relcl\t_\t_\n31\tSouth\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAfrica\t_\tPROPN\tNNP\t_\t34\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tcontrol\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n35\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tNamibia\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\telections\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tNov.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t7\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStanley\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\teditor\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tAmerican\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tPress\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInternational\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tWashington\t_\tPROPN\tNNP\t_\t15\tamod\t_\t_\n15\tD.C.-based\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tconservative\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\twire\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tservice\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tvisited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tNamibia\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\treport\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n24\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tU.N.-monitored\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\telection\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcampaign\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tinterviewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tO'Linn\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\thead\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcommission\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tcharged\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\twith\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tinvestigating\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\telectoral\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tintimidation\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n17\treported\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tO'Linn\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n22\topenly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tsympathetic\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tSWAPO\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tindeed\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\thad\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n29\tdefended\t_\tVERB\tVBN\t_\t23\tconj\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n31\tleaders\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tcourt\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStanley\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tarticle\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tpublished\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tNamibian\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tnewspapers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tO'Linn\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n16\tcriminal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcharges\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n18\tbrought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tagainst\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\teditors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tpublisher\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n25\tlawyer\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tarrested\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tcharged\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n7\talong\t_\tADP\tRP\t_\t4\tadvmod\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tothers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\treturned\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tNamibia\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tCC\t_\t4\tcc:preconj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tState\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDepartment\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tLawyers\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCommittee\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tFreedom\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tPress\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tprotested\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tStanley\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tdetention\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tarrest\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlatest\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tseries\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tincidents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tthreaten\t_\tVERB\tVBP\t_\t12\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tderail\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tNamibia\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\telections\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t6\tcc:preconj\t_\t_\n2\tSouth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAfrican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tSWAPO\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\textremists\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tintimidating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tvoters\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\thabit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tarranging\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tpeace\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tsettlements\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tthen\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\twashing\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\thands\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\ttragic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tresults\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tchance\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tredress\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tthat\t_\tDET\tIN\t_\t9\tdet\t_\t_\n9\trecord\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tNamibia\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tState\t_\tPROPN\tNN\t_\t7\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\thuman-rights\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcommunity\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n6\tshould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tinsist\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tStanley\t_\tPROPN\tNNP\t_\t16\tnsubjpass\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfellow\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdefendants\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\treleased\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tUnited\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tNation\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmonitors\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tmake\t_\tVERB\tVBP\t_\t16\tconj\t_\t_\n25\tcertain\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tO'Linn's\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tcommission\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\tinvestigates\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n31\telection\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tcomplaints\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tall\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tsides\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCommodity\t_\tNOUN\tNNP\t_\t3\tcompound\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tgenerally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstability\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tinfluence\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tfirst\t_\tADJ\tJJ\t_\t10\tadvcl\t_\t_\n10\tcreated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tnervousness\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLater\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbecame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t6\txcomp\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tundercurrent\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tdominating\t_\tADJ\tVBG\t_\t14\tamod\t_\t_\n14\tforce\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tindividual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarkets\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\treacted\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n19\tmore\t_\tADV\tJJR\t_\t18\tadvmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tfactors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGold\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttraditional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thaven\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttimes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tfinancial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcrisis\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tcontinued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tinverse\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlockstep\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdollar\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\trising\t_\tVERB\tVBG\t_\t12\tdep\t_\t_\n21\tearly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tday\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tcurrency\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n28\tfell\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n31\tthen\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tgiving\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n33\tup\t_\tADP\tRP\t_\t32\tcompound:prt\t_\t_\n34\tsome\t_\tDET\tDT\t_\t32\tdobj\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\tgains\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\tas\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tdollar\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n41\trecovered\t_\tVERB\tVBD\t_\t32\tadvcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tCopper\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tcrude\t_\tNOUN\tJJ\t_\t4\tcompound\t_\t_\n4\toil\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n5\treacted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tconcern\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrash\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tyesterday\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thave\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tpotentially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tdevastating\t_\tVERB\tJJ\t_\t19\tamod\t_\t_\n19\teffect\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCopper\t_\tPROPN\tNN\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tshowed\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n5\tlittle\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\trebound\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthrough\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tday\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n11\tone\t_\tNUM\tCD\t_\t22\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tsupply\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tproblems\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\tsupporting\t_\tVERB\tVBG\t_\t11\tacl:relcl\t_\t_\n21\tprices\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tappeared\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n23\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tsolved\t_\tVERB\tVBN\t_\t22\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCrude\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tearly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tretained\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n12\tearly\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tgains\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\ttoo\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n19\tbecame\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n20\tstronger\t_\tADJ\tJJR\t_\t19\txcomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\tending\t_\tVERB\tVBG\t_\t19\txcomp\t_\t_\n23\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tsmall\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tnet\t_\tNOUN\tJJ\t_\t27\tcompound\t_\t_\n27\tloss\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tcotton\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsugar\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tnervous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tshowed\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n10\tsmall\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdeclines\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tChicago\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tgrain\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tsoybean\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tslightly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tLivestock\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tmeat\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcrisis\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tcut\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n17\tconsumption\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tbeef\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tpork\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcommodity\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tPRECIOUS\t_\tADJ\tNNP\t_\t7\tamod\t_\t_\n7\tMETALS\t_\tNOUN\tNNPS\t_\t4\tdep\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tFutures\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tmoderately\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\thigher\t_\tADJ\tJJR\t_\t7\tdep\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tgold\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tgave\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n17\tup\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tsome\t_\tDET\tDT\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tearly\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tgains\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n24\tplatinum\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tbehaved\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n26\tindependently\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n28\tfirst\t_\tADV\tJJ\t_\t29\tadvmod\t_\t_\n29\tfalling\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tthen\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n32\tlater\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\trising\t_\tVERB\tVBG\t_\t29\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSilver\t_\tNOUN\tJJ\t_\t2\tnsubj\t_\t_\n2\tperformed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tquietly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tspot\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tgold\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t4\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t367.30\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tounce\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n3\tactive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tDecember\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tdelivery\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tgold\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsettled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t3.90\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tounce\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t371.20\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tafter\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\ttrading\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n22\tas\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\thigh\t_\tADJ\tJJ\t_\t21\tadvmod\t_\t_\n24\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t26\tdep\t_\t_\n26\t374\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDecember\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tsilver\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n4\tup\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n5\t2.3\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcents\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tounce\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t5.163\t_\tNUM\tCD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tPlatinum\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tbehaved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmore\t_\tADV\tJJR\t_\t7\tadvmod\t_\t_\n4\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tindustrial\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmetal\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\teasing\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n10\tearly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tconcern\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tpossible\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tweaker\t_\tADJ\tJJR\t_\t15\tdep\t_\t_\n17\teconomy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n20\trecovering\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n21\tlater\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tstrengthened\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGold\t_\tPROPN\tNN\t_\t6\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n3\tnowhere\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tspectacular\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tperformer\t_\tADJ\tNN\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tyears\t_\tNOUN\tNNS\t_\t11\tnmod:npmod\t_\t_\n11\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tBlack\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tMonday\t_\tPROPN\tNNP\t_\t6\tacl:relcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tprecious\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tmetals\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbefore\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\twent\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n17\tinto\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n19\tlate-in-the-day\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tnose\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdive\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n23\tso\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n25\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\treact\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBack\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t16\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\tl987\t_\tNUM\tNN\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tduring\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tgold\t_\tADJ\tNN\t_\t20\tamod\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tsurged\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n22\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tfell\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tOctober\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tcontract\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tthat\t_\tDET\tWDT\t_\t6\tdet\t_\t_\n6\tday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tas\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tmuch\t_\tADV\tJJ\t_\t11\tadvmod\t_\t_\n10\tas\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n12\t8.70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n14\tas\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\thigh\t_\tADJ\tJJ\t_\t17\tadvmod\t_\t_\n16\tas\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n18\t471.60\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tmore\t_\tADV\tRBR\t_\t24\tadvmod\t_\t_\n23\tdeferred\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tpositions\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tdue\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tmature\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\tas\t_\tADV\tIN\t_\t30\tadvmod\t_\t_\n30\tlate\t_\tADV\tJJ\t_\t28\tadvmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMarch\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t1989\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n35\trose\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n36\tas\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n37\tmuch\t_\tADV\tJJ\t_\t39\tadvmod\t_\t_\n38\tas\t_\tADP\tIN\t_\t39\tadvmod\t_\t_\n39\t$\t_\tSYM\t$\t_\t35\tdobj\t_\t_\n40\t9.60\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tBlack\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMonday\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tOctober\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tcontract\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\ttacked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ton\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tfurther\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tgains\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\trising\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n20\tas\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\thigh\t_\tADJ\tJJ\t_\t23\tadvmod\t_\t_\n22\tas\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n24\t491.50\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tgain\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\talmost\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\t$\t_\tSYM\t$\t_\t27\tnmod\t_\t_\n31\t20\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\ttop\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tFriday\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tadvances\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n39\tbefore\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n40\tgiving\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n41\tup\t_\tADP\tRP\t_\t40\tcompound:prt\t_\t_\n42\talmost\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n43\t$\t_\tSYM\t$\t_\t40\tdobj\t_\t_\n44\t10\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n45\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tthat\t_\tPRON\tDT\t_\t43\tnmod\t_\t_\n47\tat\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tclose\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tgain\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t7\tdep\t_\t_\n7\t4\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\tminiscule\t_\tNOUN\tJJ\t_\t0\troot\t_\t_\n10\tcompared\t_\tVERB\tVBN\t_\t12\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tthat\t_\tPRON\tDT\t_\t9\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tanalyst\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tPeter\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCardillo\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJosephthal\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tYork\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tgold\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\talready\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\thad\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n20\tsome\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tprice-supporting\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\ttechnical\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfactors\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\thave\t_\tAUX\tVB\t_\t28\taux\t_\t_\n28\tcaused\t_\tVERB\tVBN\t_\t24\tacl:relcl\t_\t_\n29\tprices\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\trise\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n33\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n34\tor\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\twithout\t_\tADP\tIN\t_\t33\tconj\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tstock\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tWhat\t_\tPRON\tWP\t_\t6\tdobj\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tdid\t_\tVERB\tVBD\t_\t8\tcsubj\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tcause\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\trise\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\tplace\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tearlier\t_\tADV\tJJR\t_\t12\tadvmod\t_\t_\n15\tthan\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\thave\t_\tAUX\tVB\t_\t19\taux\t_\t_\n19\thappened\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCardillo\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tgood\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tchance\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\tthat\t_\tDET\tWDT\t_\t9\tmark\t_\t_\n7\tgold\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tretain\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tgains\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\trise\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n14\tfurther\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tinterest\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\trates\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\thelp\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n12\tgold\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tkeeping\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdollar\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\trising\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFinally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n3\taccording\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n4\tto\t_\tADP\tTO\t_\t3\tmwe\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCardillo\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\timpact\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstrong\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdollar\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tshould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\treflected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\treduced\t_\tVERB\tVBN\t_\t19\tamod\t_\t_\n19\texports\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tAugust\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tmerchandise\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\ttrade\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdeficit\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n27\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tfigures\t_\tNOUN\tNNS\t_\t31\tnsubjpass\t_\t_\n30\tare\t_\tAUX\tVBP\t_\t31\tauxpass\t_\t_\n31\treleased\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n32\ttoday\t_\tNOUN\tNN\t_\t31\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t4\tcop\t_\t_\n4\tdamaging\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdollar\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tsupportive\t_\tADJ\tJJ\t_\t4\tconj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tgold\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tENERGY\t_\tPROPN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tWorried\t_\tVERB\tJJ\t_\t24\tadvcl\t_\t_\n2\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\t190-point\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tmight\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tharbinger\t_\tNOUN\tNN\t_\t1\tccomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tthings\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcome\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\teconomy\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\tpetroleum\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t23\tcompound\t_\t_\n23\ttraders\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\thalt\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\trecent\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tstring\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tincreases\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tcrude\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\toil\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n36\tfutures\t_\tNOUN\tNNS\t_\t37\tcompound\t_\t_\n37\tprices\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tbenchmark\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcrude\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tWest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tTexas\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tIntermediate\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t20.59\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbarrel\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tNovember\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tdelivery\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tdown\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tcrude\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tdue\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcorrection\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tanyhow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tseveral\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tsignificant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tgains\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tobservers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdrop\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n14\tdampened\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tspirits\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tpetroleum\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tpits\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfutures\t_\tNOUN\tNNS\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\theaded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tup\t_\tADV\tRP\t_\t8\tadvmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\texpectations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tworld\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\toil\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdemand\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tcontinue\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n20\tstrong\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tOrganization\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tPetroleum\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tExporting\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCountries\t_\tPROPN\tNNPS\t_\t2\tnmod\t_\t_\n7\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tproduction\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tceiling\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfourth\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tbased\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n16\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprojections\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\trobust\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdemand\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tSo\t_\tADP\tIN\t_\t17\tdep\t_\t_\n2\tany\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tbearish\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tindicator\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tsuch\t_\tADJ\tJJ\t_\t11\tcase\t_\t_\n7\tas\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tprecipitous\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdrop\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tsends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tshivers\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tthrough\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\toil\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmarkets\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\tas\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n24\twell\t_\tADV\tRB\t_\t23\tmwe\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tafter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\treacting\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n5\tearly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tday\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tplummet\t_\tNOUN\tVB\t_\t4\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tfutures\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tprices\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tagain\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\ttraders\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\ttook\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n23\tnote\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tpartial\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\trecovery\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n31\tyesterday\t_\tNOUN\tNN\t_\t22\tnmod:tmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tCOPPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tshowed\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n6\tlittle\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trebound\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n9\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tlabor\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tproblem\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\taux\t_\t_\n16\tunderpinning\t_\tVERB\tVBG\t_\t12\tacl:relcl\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tappeared\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tsolved\t_\tVERB\tVBN\t_\t18\txcomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDecember\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t3.05\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcents\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpound\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t1.2745\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n3\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\toutset\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdrop\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tmight\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tcreate\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tweakened\t_\tVERB\tJJ\t_\t22\tamod\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tconsequent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\treduction\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tcopper\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tuse\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trecovery\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tprovided\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tlittle\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\thelp\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcopper\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tword\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tspread\t_\tVERB\tNN\t_\t8\tadvcl\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tthree-month\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tstrike\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n20\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tHighland\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tValley\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tmine\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tBritish\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tColumbia\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\twas\t_\tVERB\tVBD\t_\t15\tccomp\t_\t_\n29\tabout\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tover\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n32\taccording\t_\tVERB\tVBG\t_\t35\tcase\t_\t_\n33\tto\t_\tADP\tTO\t_\t32\tmwe\t_\t_\n34\tan\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tanalyst\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHighland\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tValley\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tlarge\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tCanadian\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tproducer\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tprincipal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsupplier\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tJapan\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\trecently\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbegan\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n17\tseeking\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n18\tcopper\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\telsewhere\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tinventories\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tshrank\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\treported\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tDT\t_\t12\tmark\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tunion\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tnegotiations\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tovercome\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\thurdle\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcontracting\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tout\t_\tADP\tIN\t_\t18\tdep\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\twork\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tanalyst\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tonly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\tminor\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpoints\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tcleaned\t_\tVERB\tVBN\t_\t10\txcomp\t_\t_\n14\tup\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tall\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tintents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tpurposes\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tappears\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\thave\t_\tAUX\tVB\t_\t14\taux\t_\t_\n13\tbeen\t_\tAUX\tVBN\t_\t14\tauxpass\t_\t_\n14\tachieved\t_\tVERB\tVBN\t_\t10\txcomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tCopper\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tinventories\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n4\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tYork\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tCommodity\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\twarehouses\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n10\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t516\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\ttons\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t10,004\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\ttons\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLondon\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tMetal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tExchange\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tcopper\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tinventories\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n8\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t13,575\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\ttons\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t89,300\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\ttons\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tLME\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tdecline\t_\tNOUN\tVBP\t_\t5\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tas\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tComex\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n15\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthis\t_\tPRON\tDT\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tbrushed\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n6\taside\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tover\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tanalyst\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tfutures\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tfirmed\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tDecember\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tcontract\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n19\tas\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n20\thigh\t_\tADJ\tJJ\t_\t22\tadvmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n23\t1.2965\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n28\tn't\t_\tPART\tRB\t_\t29\tneg\t_\t_\n29\table\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tsustain\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tgain\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tauxpass\t_\t_\n4\tsimply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\toverbought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t5\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tselling\t_\tVERB\tNN\t_\t19\tnsubj\t_\t_\n13\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tfunds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n16\tare\t_\tVERB\tVBP\t_\t18\tauxpass\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t18\tdep\t_\t_\n18\tguided\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n19\thelped\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n20\tdepress\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n21\tprices\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCOTTON\t_\tPROPN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\teased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\treaction\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tHurricane\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tJerry\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tinfluence\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDecember\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tloss\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t0.22\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcent\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpound\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t74.48\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTechnical\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tconsiderations\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n3\tfollowing\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thurricane\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfactor\t_\tNOUN\tNN\t_\t5\tacl:relcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tcaused\t_\tVERB\tVBD\t_\t22\tccomp\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdecline\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tErnest\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tSimon\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tcotton\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tspecialist\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tPrudential-Bache\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tSecurities\t_\tPROPN\tNNPS\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tNew\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tYork\t_\tPROPN\tNNP\t_\t30\tappos\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tsharply\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstorm\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tapproached\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n9\tTexas\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tLouisiana\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tpart\t_\tNOUN\tNN\t_\t9\tacl:relcl\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tMississippi\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tDelta\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcotton-growing\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tarea\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n3\tafter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tabsorbing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tpotential\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\teffect\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\thurricane\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tbegan\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tslip\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tlate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tSimon\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tselling\t_\tNOUN\tVBG\t_\t3\tnsubj\t_\t_\n3\tcontinued\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tkept\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t6\txcomp\t_\t_\n8\tunder\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tpressure\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tColder\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\tweather\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeing\t_\tAUX\tVBG\t_\t5\tauxpass\t_\t_\n5\tpredicted\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\thigh\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tplains\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tTexas\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tnorthern\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstates\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tDelta\t_\tPROPN\tNN\t_\t15\tnmod\t_\t_\n19\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcoming\t_\tVERB\tVBG\t_\t22\tamod\t_\t_\n22\tweekend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSimon\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tyet\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcaptured\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n6\ttraders\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tattention\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSUGAR\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMarch\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n5\toff\t_\tADJ\tRB\t_\t12\tadvmod\t_\t_\n6\t0.32\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcent\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpound\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t13.97\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcents\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tearly\t_\tADV\tJJ\t_\t6\tadvmod\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tMarch\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\tas\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\thigh\t_\tADJ\tJJ\t_\t15\tadvmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n15\t14.22\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n17\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\trecovered\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\tthen\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tfell\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n28\tback\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprice-depressing\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfactor\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tanalyst\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n11\tIndia\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\tauxpass\t_\t_\n16\texpected\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuy\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\taround\t_\tADV\tIN\t_\t20\tadvmod\t_\t_\n20\t200,000\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\ttons\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsugar\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tworld\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n29\tdid\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\tmake\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n32\tany\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tpurchases\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIndia\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tbought\t_\tVERB\tVBD\t_\t15\tccomp\t_\t_\n4\t200,000\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\ttons\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbuy\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tmore\t_\tADJ\tJJR\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tanalyst\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalyst\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tIndia\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tpulled\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tbecause\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tof\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tconcern\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n2\tIndia\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\thave\t_\tAUX\tVB\t_\t5\taux\t_\t_\n5\tfelt\t_\tVERB\tVBN\t_\t30\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t24\tadvcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsevere\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdrop\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\taffected\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n20\tsugar\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\tcould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tbuy\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n25\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tlower\t_\tADJ\tJJR\t_\t27\tamod\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tJudith\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tGanes\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tanalyst\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n35\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tShearson\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tLehman\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tHutton\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n40\tNew\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tYork\t_\tPROPN\tNNP\t_\t38\tappos\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tshe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tadded\t_\tVERB\tVBD\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tIndia\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tneeds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsugar\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tso\t_\tADP\tIN\t_\t17\tdep\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t10\tparataxis\t_\t_\n18\tin\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n19\tsooner\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tlater\t_\tADV\tRBR\t_\t19\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tbuy\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tFARM\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tPRODUCTS\t_\tNOUN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tcattle\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\thog\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tfutures\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tcontracts\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n9\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tsharply\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tspeculated\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tplunge\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tlinger\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tminds\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tU.S.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tconsumers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tlong\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tenough\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tprompt\t_\tVERB\tVB\t_\t29\tdep\t_\t_\n32\tthem\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\trein\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n35\tin\t_\tADP\tRP\t_\t34\tnmod\t_\t_\n36\ttheir\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\tspending\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\tat\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tsupermarket\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n42\twhich\t_\tPRON\tWDT\t_\t44\tnsubj\t_\t_\n43\twould\t_\tAUX\tMD\t_\t44\taux\t_\t_\n44\thurt\t_\tVERB\tVB\t_\t34\tdep\t_\t_\n45\tdemand\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n46\tfor\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\tbeef\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t47\tcc\t_\t_\n49\tpork\t_\tNOUN\tNN\t_\t47\tconj\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprice\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\thog\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcontract\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tOctober\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tdelivery\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n12\tmaximum\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tpermissible\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tdaily\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlimit\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t1.5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpound\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tmost\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n5\tgrain\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tcontracts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tslightly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\tout\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trelief\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tshowing\t_\tVERB\tVBG\t_\t13\tccomp\t_\t_\n20\tsigns\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tof\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\trecovering\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tEarlier\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsession\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tseveral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsoybean\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tcontracts\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tset\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlows\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbroad\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trally\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tprocessors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tbegan\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n10\tbuying\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\tfutures\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tcontracts\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tapparently\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\ttake\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n17\tadvantage\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdip\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tKnight-Ridder\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\treport\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tincreased\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n8\tearnings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tper\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tcontrary\t_\tADJ\tNN\t_\t6\txcomp\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\treported\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n19\tanalysts\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n20\t'\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tcomments\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpublishing\t_\tVERB\tNN\t_\t25\tamod\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tearnings\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\twould\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tbe\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n30\tdown\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbelieved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconfusion\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\tcaused\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t22\tadvmod\t_\t_\n12\tJames\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBatten\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tKnight-Ridder\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tchairman\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tchief\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\texecutive\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\ttold\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tanalysts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tweeks\t_\tNOUN\tNNS\t_\t28\tnmod:npmod\t_\t_\n28\tago\t_\tADV\tIN\t_\t22\tadvmod\t_\t_\n29\tthat\t_\tSCONJ\tDT\t_\t48\tmark\t_\t_\n30\tKnight-Ridder\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tearnings\t_\tNOUN\tNNS\t_\t48\tnsubj\t_\t_\n33\tper\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n35\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\tfirst\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tnine\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tmonths\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\t1989\t_\tNUM\tCD\t_\t39\tnmod\t_\t_\n42\twould\t_\tAUX\tMD\t_\t48\taux\t_\t_\n43\t``\t_\tPUNCT\t``\t_\t48\tpunct\t_\t_\n44\tbe\t_\tVERB\tVB\t_\t48\tcop\t_\t_\n45\tbehind\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\ta\t_\tDET\tDT\t_\t48\tdet\t_\t_\n47\tlittle\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tbit\t_\tNOUN\tNN\t_\t22\tccomp\t_\t_\n49\t''\t_\tPUNCT\t''\t_\t48\tpunct\t_\t_\n50\tfrom\t_\tADP\tIN\t_\t52\tcase\t_\t_\n51\tlike\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tperiod\t_\tNOUN\tNN\t_\t48\tnmod\t_\t_\n53\tof\t_\tADP\tIN\t_\t52\tdep\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tKnight-Ridder\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tthird-quarter\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tearnings\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n8\tthat\t_\tADP\tIN\t_\t11\tdobj\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tplans\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\treport\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tOct.\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t24\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\tauxpass\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tup\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\tcomfortable\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\trevised\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n11\tanalysts\t_\tNOUN\tNNS\t_\t13\tnmod:poss\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tprojections\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\treport\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n19\tearnings\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t23\tamod\t_\t_\n22\t62\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tcents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\t64\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshare\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n30\tcompared\t_\tVERB\tVBN\t_\t34\tcase\t_\t_\n31\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\t53\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tcents\t_\tNOUN\tNNS\t_\t18\tadvcl\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n38\treported\t_\tVERB\tVBD\t_\t34\tacl:relcl\t_\t_\n39\tfor\t_\tADP\tIN\t_\t43\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\t1988\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n42\tthird\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tquarter\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tKnight-Ridder\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tagreed\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\testimates\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tthat\t_\tSCONJ\tWDT\t_\t18\tmark\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tall\t_\tDET\tDT\t_\t9\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1989\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n14\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n16\taround\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t2.86\t_\tNUM\tCD\t_\t6\tccomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tcompared\t_\tVERB\tVBN\t_\t25\tcase\t_\t_\n23\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n25\t2.59\t_\tNUM\tCD\t_\t18\tadvcl\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tshare\t_\tNOUN\tNN\t_\t25\tnmod:npmod\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n30\tearlier\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tKnight-Ridder\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t51.75\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tdown\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n17\t37.5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDD\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\textended\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\t$\t_\tSYM\t$\t_\t10\tamod\t_\t_\n9\t45-a-share\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n10\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tDunkin\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\t'\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\tDonuts\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tNov.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n18\t1\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tindicated\t_\tVERB\tJJ\t_\t6\tamod\t_\t_\n6\tvalue\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t268\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDD\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpartnership\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n7\tUnicorp\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tCanada\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tKingsbridge\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tCapital\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tGroup\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tunit\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tCara\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tOperations\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLtd\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tpreviously\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\treported\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n5\tunder\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tterms\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tconfidentiality\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tDunkin\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\t'\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tDonuts\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpartners\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tkeep\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\topen\t_\tADJ\tJJ\t_\t21\txcomp\t_\t_\n25\tuntil\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tNov.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t1\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n30\tnot\t_\tPART\tRB\t_\t32\tneg\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tacquire\t_\tVERB\tVB\t_\t21\tconj\t_\t_\n33\tany\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tadditional\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tshares\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n36\texcept\t_\tADP\tIN\t_\t40\tcase\t_\t_\n37\tthrough\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\ttender\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\toffer\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n41\texpiring\t_\tVERB\tVBG\t_\t40\tacl\t_\t_\n42\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tthat\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tdate\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tDD\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\talready\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\towns\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n8\t15\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcommon\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tdoughnut\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tshop\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tchain\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n21\tas\t_\tADV\tIN\t_\t24\tadvmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tclose\t_\tNOUN\tNN\t_\t34\tadvcl\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tbusiness\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tFriday\t_\tPROPN\tNNP\t_\t24\tnmod:tmod\t_\t_\n28\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tadditional\t_\tADJ\tJJ\t_\t30\tadvmod\t_\t_\n30\t11\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t34\tnsubjpass\t_\t_\n32\thad\t_\tAUX\tVBD\t_\t34\taux\t_\t_\n33\tbeen\t_\tAUX\tVBN\t_\t34\tauxpass\t_\t_\n34\ttendered\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n35\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n36\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\toffer\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDunkin\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\t'\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n3\tDonuts\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tRandolph\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tMass\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCara\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOperations\t_\tPROPN\tNNP\t_\t27\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tfood\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tservices\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tconcern\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tUnicorp\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tholding\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n15\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tinterests\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\toil\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tnatural\t_\tADJ\tJJ\t_\t18\tconj\t_\t_\n21\tgas\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tfinancial\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tservices\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n26\tare\t_\tAUX\tVBP\t_\t27\tauxpass\t_\t_\n27\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tToronto\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tGolden\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tWest\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFinancial\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\triding\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tabove\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tturbulence\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\ttroubled\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n13\tmost\t_\tADJ\tJJS\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tthrift\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tindustry\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\t16\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t%\t_\tSYM\tNN\t_\t23\tamod\t_\t_\n23\tincrease\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthird-quarter\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tearnings\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n29\t41.8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n30\tmillon\t_\tNOUN\tNN\t_\t28\tdep\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n33\t66\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tcents\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n5\t36\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\t57\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcents\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tyear-ago\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tquarter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHerbert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSandler\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tchief\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\texecutive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficer\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n12\tOakland\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tCalif.\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tsavings-and-loan\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tholding\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n20\tcredited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\thigh\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tnumber\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tloans\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tadded\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tportfolio\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\tover\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tlast\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\t12\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tmonths\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n37\tfor\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n38\tbroadening\t_\tVERB\tVBG\t_\t20\tadvcl\t_\t_\n39\tits\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n40\tearning\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n41\tasset\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tbase\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n44\timproving\t_\tVERB\tVBG\t_\t38\tconj\t_\t_\n45\tprofit\t_\tNOUN\tNN\t_\t46\tcompound\t_\t_\n46\tperformance\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\texecutive\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tnoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tslackening\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tdemand\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmortgages\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tdepressed\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tloan\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toriginations\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n18\t1\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t17\tappos\t_\t_\n23\tbelow\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tsame\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tperiod\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tlast\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tsavings\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tactivity\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSandler\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tconsumer\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdeposits\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\tenjoyed\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsteady\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tincrease\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tthroughout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1989\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\ttopped\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n20\t$\t_\tSYM\t$\t_\t19\tdobj\t_\t_\n21\t11\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tquarter\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tend\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tfirst\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\ttime\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcompany\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\thistory\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDeposit\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tgrowth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tamounted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n6\t393\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tmore\t_\tADV\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tdouble\t_\tADV\tRB\t_\t14\tnummod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tyear-ago\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tfigure\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhirlpool\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tBenton\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tHarbor\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMich.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tdeveloped\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tprocess\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\trecover\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tenvironmentally\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tharmful\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tchlorofluorocarbons\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tCFCs\t_\tNOUN\tNNP\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n25\tpreviously\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tentered\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tatmosphere\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tduring\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tin-home\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\trepair\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\trefrigerators\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tfreezers\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmaker\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\thome\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tappliances\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprocess\t_\tNOUN\tNN\t_\t37\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\tinvolves\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tuse\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tmultilayer\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tplastic\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tbag\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tduring\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\trepairs\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tcapture\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tgaseous\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tsubstance\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\ttransport\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\trecycling\t_\tVERB\tVBG\t_\t32\tamod\t_\t_\n32\tcenter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n34\tis\t_\tVERB\tVBZ\t_\t37\tcop\t_\t_\n35\talready\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tuse\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n38\tat\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tnumber\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tits\t_\tPRON\tPRP$\t_\t44\tnmod:poss\t_\t_\n43\tservice\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tcenters\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n47\twill\t_\tAUX\tMD\t_\t49\taux\t_\t_\n48\tbe\t_\tVERB\tVB\t_\t49\tcop\t_\t_\n49\tavailable\t_\tADJ\tJJ\t_\t37\tconj\t_\t_\n50\tto\t_\tADP\tTO\t_\t54\tcase\t_\t_\n51\tall\t_\tDET\tDT\t_\t54\tdet\t_\t_\n52\tauthorized\t_\tVERB\tVBN\t_\t54\tamod\t_\t_\n53\trepair\t_\tNOUN\tNN\t_\t54\tcompound\t_\t_\n54\tcenters\t_\tNOUN\tNNS\t_\t49\tnmod\t_\t_\n55\tby\t_\tADP\tIN\t_\t56\tcase\t_\t_\n56\tspring\t_\tNOUN\tNN\t_\t49\tnmod\t_\t_\n57\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tEarlier\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\trepairs\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tvented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tCFCs\t_\tNOUN\tNNP\t_\t3\tdobj\t_\t_\n6\tout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thome\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\those\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\tdirectly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n14\tinto\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tatmosphere\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCFCs\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n3\twidely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsolvents\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tcoolants\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tfire\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsuppressants\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tuse\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\tauxpass\t_\t_\n6\tlinked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tpotentially\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tdangerous\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdepletion\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tEarth\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tozone\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tlayer\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnumber\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tcompanies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tare\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n25\tseeking\t_\tVERB\tVBG\t_\t6\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tcurtail\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tuse\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n31\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tleast\t_\tADJ\tJJS\t_\t33\tadvmod\t_\t_\n33\temission\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tsubstance\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhirpool\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n5\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsee\t_\tVERB\tVBP\t_\t2\tccomp\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprocess\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tsmall\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\timportant\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tstep\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\ttoward\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\teventual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\telimination\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tCFC\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tuse\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tappliance\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmanufacture\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMaxus\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tEnergy\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tDallas\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tdiscovered\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\toil\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tfield\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tnortheast\t_\tNOUN\tNN\t_\t9\tadvmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n17\tpreviously\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tdiscovered\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n19\tIntan\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tField\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tsoutheast\t_\tADJ\tNN\t_\t25\tamod\t_\t_\n24\tSumatra\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tarea\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tIndonesia\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMaxus\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\trun\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tproduction\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttest\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\tdiscovery\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\twells\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tdrilled\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfield\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n23\tabout\t_\tADV\tIN\t_\t24\tadvmod\t_\t_\n24\t1.6\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmiles\t_\tNOUN\tNNS\t_\t19\tacl:relcl\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tIntan\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tField\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n31\tbecause\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\twells\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n34\tare\t_\tVERB\tVBP\t_\t35\tcop\t_\t_\n35\tsimilar\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n36\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n37\tothers\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n38\tdrilled\t_\tVERB\tVBD\t_\t37\tacl\t_\t_\n39\tat\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tits\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n41\tIntan\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tWiduri\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tfields\t_\tNOUN\tNNS\t_\t41\tconj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tMaxus\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbelieves\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\treserves\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfield\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n13\tabout\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n14\t10\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tbarrels\t_\tNOUN\tNNS\t_\t6\tccomp\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\toil\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tIntan\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tField\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\testimated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\treserves\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t50\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tbarrels\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tWiduri\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tField\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\testimated\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n17\treserves\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t225\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbarrels\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMaxus\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tindependent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tgas\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\toperator\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\towns\t_\tVERB\tVBZ\t_\t12\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\t56\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\tinterest\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tnew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tfield\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tcalled\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n25\tNortheast\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tIntan\t_\tPROPN\tNNP\t_\t24\txcomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinterests\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\towned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tBP\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n7\tPetroleum\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n8\tDevelopment\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n9\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tSES\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n11\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n12\tLtd.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tC.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tItoh\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tEnergy\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tCo.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tDeminex\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n21\tSumatra\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tOEL\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tG.m.b\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n25\tH.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n27\tHispanoil\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t29\tpunct\t_\t_\n29\tSumatra\t_\tPROPN\tNNP\t_\t32\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t29\tpunct\t_\t_\n31\tProduction\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n34\tHudbay\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n35\tOil\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n36\t-LRB-\t_\tPUNCT\t-LRB-\t_\t37\tpunct\t_\t_\n37\tIndonesia\t_\tPROPN\tNNP\t_\t39\tdep\t_\t_\n38\t-RRB-\t_\tPUNCT\t-RRB-\t_\t37\tpunct\t_\t_\n39\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n41\tInpex\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tSumatra\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tCo.\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n46\tLasmo\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n47\tSumatra\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n48\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n49\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n50\tSunda\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tShell\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n52\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n53\tTCR\t_\tPROPN\tNN\t_\t55\tcompound\t_\t_\n54\tSumat\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tA.G.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n56\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n57\tWarrior\t_\tPROPN\tNNP\t_\t59\tcompound\t_\t_\n58\tOil\t_\tPROPN\tNNP\t_\t59\tcompound\t_\t_\n59\tCo\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n60\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tproduction-sharing\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tarea\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tPertamina\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tIndonesian\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tstate\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\toil\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tEnvironmental\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSystems\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\trestating\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tresults\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\treduce\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\treported\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n14\tnet\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tnine\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tfiscal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tafter\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tdiscovering\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\ttook\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n29\ttax\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcredits\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t35\tnsubjpass\t_\t_\n32\talready\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n33\thad\t_\tAUX\tVBD\t_\t35\taux\t_\t_\n34\tbeen\t_\tAUX\tVBN\t_\t35\tauxpass\t_\t_\n35\ttaken\t_\tVERB\tVBN\t_\t30\tacl:relcl\t_\t_\n36\tlast\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t35\tnmod:tmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n2\tLittle\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n3\tRock\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\tArk.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\thazardous-waste\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tservices\t_\tNOUN\tNNS\t_\t9\tcompound\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\trestatement\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\treduce\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tnet\t_\tADJ\tNN\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tnine\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tended\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tJuly\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t31\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n26\t2.5\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t17\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n35\tfrom\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n37\t3.7\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tmillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n40\tor\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n41\t26\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tcents\t_\tNOUN\tNNS\t_\t36\tconj\t_\t_\n43\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tshare\t_\tNOUN\tNN\t_\t42\tnmod:npmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tNN\t_\t10\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\trestated\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n11\t1.6\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tnet\t_\tADJ\tNN\t_\t4\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t2.3\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\t15\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tfinancial\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\treporting\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpurposes\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\ttook\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n13\ttax\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcredits\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n16\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\trecognized\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttax\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tpurposes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tbecause\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tof\t_\tADP\tIN\t_\t2\tmwe\t_\t_\n4\tconfusion\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthose\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcredits\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tagain\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\tin\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\treporting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tresults\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfirst\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tnine\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tJack\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tW.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tForrest\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tEnvironmental\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tSystems\t_\tPROPN\tNNPS\t_\t7\tdep\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\texecutive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tofficer\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tchange\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tincreases\t_\tVERB\tVBZ\t_\t13\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\teffective\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\ttax\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\trate\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n23\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n24\tabout\t_\tADV\tIN\t_\t25\tadvmod\t_\t_\n25\t35\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t20\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tData\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsigned\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tdefinitive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tmerger\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tagreement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tISI\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tSystems\t_\tPROPN\tNNPS\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t19\tnmod\t_\t_\n17\tMemotec\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tacquire\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n20\tISI\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t20\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t25\tpunct\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t23\tappos\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t25\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tshare\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n32\tabout\t_\tADV\tIN\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t23\tconj\t_\t_\n34\t130\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n37\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tcash\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tsecurities\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tcomposite\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tISI\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t3.125\t_\tNUM\tCD\t_\t10\tnmod:npmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t18.625\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tMontreal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tExchange\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tMemotec\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tunchanged\t_\tADJ\tJJ\t_\t7\tadvmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\t10.625\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tCanadian\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdollars\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n14\tUS$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t9.05\t_\tNUM\tCD\t_\t12\tappos\t_\t_\n16\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tunder\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tagreement\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n7\tISI\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tBraintree\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tMass.\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tprovider\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tcomputer\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tsoftware\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tservices\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tinsurance\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tindustry\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n25\twill\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tmerge\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n27\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tU.S.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tunit\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMemotec\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\tcreated\t_\tVERB\tVBN\t_\t30\tacl\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthat\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tpurpose\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tMontreal-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmaker\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ttelecommunications\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproducts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tprovider\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\ttelecommunications\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tservices\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcalls\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n6\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tmake\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n11\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n12\t20-a-share\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n13\tcash\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\ttender\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toffer\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tall\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\toutstanding\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tISI\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCharles\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tJohnston\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tISI\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tagreed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsell\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\t60\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\tstake\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tISI\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tMemotec\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n23\tupon\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tcompletion\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\ttender\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\toffer\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tcombination\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tcash\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tMemotec\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tstock\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n38\tdebentures\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttender\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\tconditioned\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n8\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tamong\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tthings\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tholders\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\ttendering\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tleast\t_\tADJ\tJJS\t_\t18\tnmod:npmod\t_\t_\n18\t15\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\toutstanding\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\theld\t_\tVERB\tVBN\t_\t28\tacl\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tMr.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tJohnston\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tISI\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tboard\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tinstructed\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tmanagement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\taccept\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n10\tinquiries\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tany\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tothers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tinterested\t_\tVERB\tJJ\t_\t13\tacl\t_\t_\n15\tin\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tmaking\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbid\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tISI\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\twithdraw\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tmerger\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tMemotec\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbetter\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tbid\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsurfaces\t_\tVERB\tNNS\t_\t5\tadvcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCMS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tEnergy\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tJackson\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMich.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tresumed\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpurchase\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tcommon\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tunder\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n22\tapproved\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tdirectors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1987\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\toriginal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tannouncement\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tCMS\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tboard\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tauthorized\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpurchase\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tas\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n18\tmany\t_\tADJ\tJJ\t_\t21\tadvmod\t_\t_\n19\tas\t_\tADP\tIN\t_\t21\tadvmod\t_\t_\n20\tfive\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t2.6\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\tauxpass\t_\t_\n9\tpurchased\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n10\tsince\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tthen\t_\tADV\tRB\t_\t9\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbuy\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tadditional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\topen\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tprivate\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttransactions\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tprevailing\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomposite\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tCMS\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tEnergy\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t34.375\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n21\t62.5\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tclosing\t_\tVERB\tNN\t_\t27\tamod\t_\t_\n27\tprice\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t37.375\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tThursday\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tbefore\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tFriday\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tplunge\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tutility\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcurrently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tabout\t_\tADV\tIN\t_\t8\tadvmod\t_\t_\n7\t82.1\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\toutstanding\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMorgan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tact\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\texclusive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbroker\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trepurchase\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHughes\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAircraft\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tGeneral\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tMotors\t_\tPROPN\tNNPS\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tagreed\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpurchase\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tElectro-Optics\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tTechnology\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tdivision\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tPerkin-Elmer\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCorp\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfiscal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n6\tended\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n8\t31\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n10\t1988\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmost\t_\tADV\tRBS\t_\t15\tadvmod\t_\t_\n14\trecent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n18\tresults\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tbroken\t_\tVERB\tVBN\t_\t15\tacl:relcl\t_\t_\n21\tout\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tPerkin-Elmer\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\taccounted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tmore\t_\tADJ\tJJR\t_\t32\tadvmod\t_\t_\n29\tthan\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\thalf\t_\tDET\tPDT\t_\t32\tadvmod\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tadvmod\t_\t_\n32\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n33\t145\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tsales\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\trecorded\t_\tVERB\tVBN\t_\t32\tacl\t_\t_\n38\tby\t_\tADP\tIN\t_\t44\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tcompany\t_\tNOUN\tNN\t_\t44\tnmod:poss\t_\t_\n41\t's\t_\tPART\tPOS\t_\t40\tcase\t_\t_\n42\tgovernment\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n43\tsystems\t_\tNOUN\tNNS\t_\t44\tcompound\t_\t_\n44\tsector\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tPerkin-Elmer\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t1\tacl:relcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tNorwalk\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tConn.\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsale\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n16\tDanbury\t_\tPROPN\tNNP\t_\t20\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tConn.\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tunit\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tconsistent\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n23\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\trestructuring\t_\tVERB\tNN\t_\t26\tamod\t_\t_\n26\tstrategy\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tannounced\t_\tVERB\tVBD\t_\t26\tacl\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tApril\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tmark\t_\t_\n4\tmaking\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n5\telectro-optical\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsystems\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tunit\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tlaser\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\twarning\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treceivers\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t3\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\tauxpass\t_\t_\n3\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\taboard\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tmilitary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\thelicopters\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\twarn\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n9\tpilots\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tlaser\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tweapon\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\tauxpass\t_\t_\n16\tfocused\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tthem\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHughes\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tLos\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAngeles\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tPerkinElmer\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tunit\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\twork\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tcomplements\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n12\tefforts\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n15\tElectro-Optical\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tData\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tSystems\t_\tPROPN\tNNPS\t_\t19\tcompound\t_\t_\n19\tgroup\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tmakes\t_\tVERB\tVBZ\t_\t19\tacl:relcl\t_\t_\n23\tinfrared\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsensors\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tmilitary\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tlasers\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tnight\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n30\tvision\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tequipment\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHughes\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsale\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tclose\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tend\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tCommunications\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWorkers\t_\tPROPN\tNNPS\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tAmerica\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tratified\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tregional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tall\t_\tDET\tDT\t_\t14\tdep\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tone\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlocal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tagreements\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tBell\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tAtlantic\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCorp\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCWA\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tJersey\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tCommercial\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tlocal\t_\tNOUN\tJJ\t_\t18\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\trepresents\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n10\tabout\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n11\t2,500\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tservice\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trepresentatives\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmarketing\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\temployees\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\ttentative\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tagreement\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tCC\t_\t3\tcc:preconj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tunion\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tregional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\ttelephone\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tworking\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n13\ttogether\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tresolve\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tdifferences\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tthree-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcontracts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\treplace\t_\tVERB\tVBP\t_\t4\tacl:relcl\t_\t_\n8\tones\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\texpired\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tAug.\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n12\t5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tcover\t_\tVERB\tNN\t_\t0\troot\t_\t_\n15\t41,000\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n16\tBell\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAtlantic\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\temployees\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tratification\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tfollows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t23-day\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstrike\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tPhiladelphia-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tCWA\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tInternational\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBrotherhood\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tElectrical\t_\tPROPN\tJJ\t_\t10\tcompound\t_\t_\n9\tWorkers\t_\tPROPN\tNNS\t_\t10\tcompound\t_\t_\n10\tmembers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstrike\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tagainst\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tNynex\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tamod\t_\t_\n20\tYork-based\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tregional\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tphone\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n8\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tmediation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tCWA\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\trepresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t40,000\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tNynex\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tworkers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tIBEW\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\trepresents\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n11\t20,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tworkers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmoment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tat\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n6\tleast\t_\tADJ\tJJS\t_\t5\tmwe\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\teuphoria\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\treplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tanxiety\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tWall\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tStreet\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tIndustrial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAverage\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsharply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tclose\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t2657.38\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tpanic\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tdid\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tsweep\t_\tVERB\tNN\t_\t6\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tworld\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tmarkets\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n24\tinvestors\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n25\tlarge\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tsmall\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n28\tseemed\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\taccept\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tFriday\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tdizzying\t_\tVERB\tJJ\t_\t35\tamod\t_\t_\n34\t190-point\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tplunge\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n36\tas\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tsharp\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tcorrection\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tnot\t_\tADV\tRB\t_\t43\tneg\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tcalamity\t_\tNOUN\tNN\t_\t39\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tnsubj\t_\t_\n2\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tbargain-hunting\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n3\tsighing\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n4\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\trelief\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tJohn\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tH.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tGutfreund\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tchairman\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tSalomon\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBrothers\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n17\ttook\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n18\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfirm\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tfloor\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tmonitor\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n26\tyesterday\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tevents\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trally\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tgained\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n5\tstrength\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t3:15\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tp.m.\t_\tNOUN\tRB\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsmiled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbroadly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\tbrandished\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tunlit\t_\tNOUN\tJJ\t_\t17\tcompound\t_\t_\n17\tcigar\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\tslapped\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n20\tStanley\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tShopkorn\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\ttop\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\ttrader\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n28\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tback\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfirst\t_\tADJ\tRB\t_\t5\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tseemed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tas\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t6\tmwe\t_\t_\n8\thistory\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tmight\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\trepeat\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n11\titself\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmorning\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tmany\t_\tADJ\tJJ\t_\t11\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnation\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tbiggest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tcompanies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\tbecause\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\twave\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tsell\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\torders\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\twas\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\toverwhelming\t_\tVERB\tJJ\t_\t22\tadvcl\t_\t_\n33\tbuyers\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t10:10\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tIndustrials\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\toff\t_\tADJ\tRB\t_\t7\tadvmod\t_\t_\n9\t63.52\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t8\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tUAL\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\twhose\t_\tPRON\tWP$\t_\t20\tnmod:poss\t_\t_\n20\ttroubles\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\thad\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n22\tkicked\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n23\toff\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tplunge\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tstill\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n29\thad\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\topened\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tthen\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tas\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tquickly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n6\tas\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tfallen\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tturn\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\taround\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgain\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t88.12\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tclose\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tvolume\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\texchange\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n15\tthan\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\t416\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t13\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfourth\t_\tADJ\tJJ\t_\t17\tappos\t_\t_\n21\thighest\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\trecord\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\thandled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\thuge\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tvolume\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\twithout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tany\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tobvious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstrain\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsharp\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcontrast\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tBlack\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMonday\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trally\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tconfined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tblue-chip\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t16\tauxpass\t_\t_\n15\thard\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\thit\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n17\tduring\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tselling\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tfrenzy\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOverall\t_\tADJ\tRB\t_\t7\tdep\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n4\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tBoard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tthan\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tgained\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tarbitragers\t_\tNOUN\tNNS\t_\t18\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\talready\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\treeling\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tcollapse\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tUAL\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdeal\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t18\tauxpass\t_\t_\n17\tfurther\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tyesterday\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n20\twhen\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tproposed\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n23\ttakeover\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tAMR\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tparent\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tAmerican\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAirlines\t_\tPROPN\tNNPS\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n34\tcollapsed\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tJones\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tTransportation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAverage\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t102.06\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tsecond-worst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdrop\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\thistory\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWorld-wide\t_\tADJ\tJJ\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tgenerally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tmanageable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tFrankfurt\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\texchange\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\thardest\t_\tADV\tRBS\t_\t7\tadvmod\t_\t_\n7\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\twith\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tblue\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tchips\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\tthere\t_\tADV\tRB\t_\t17\tnsubj\t_\t_\n17\tfalling\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n18\t12.8\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmidday\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trally\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n13\toff\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t3.2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t12\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n18\tTokyo\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tleading\t_\tVERB\tVBG\t_\t22\tamod\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tindex\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tfell\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n24\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t1.8\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tsurprisingly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n29\tlackluster\t_\tNOUN\tJJ\t_\t30\tcompound\t_\t_\n30\ttrading\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmore\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n4\tthinly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\ttraded\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n6\tAsian\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tharder\t_\tADV\tJJR\t_\t9\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tTokyo\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tthere\t_\tPRON\tEX\t_\t17\texpl\t_\t_\n17\twere\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n18\tno\t_\tDET\tDT\t_\t20\tneg\t_\t_\n19\tfree-fall\t_\tADJ\tNN\t_\t20\tamod\t_\t_\n20\tdeclines\t_\tNOUN\tVBZ\t_\t17\tnsubj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tsmall\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n5\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tlearned\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tvaluable\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlessons\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tsince\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n15\tIn\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tage\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tcomputerized\t_\tVERB\tJJ\t_\t20\tamod\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n22\thuge\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcorrections\t_\tNOUN\tNNS\t_\t34\tnsubjpass\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\trunups\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n26\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfew\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\thours\t_\tNOUN\tNNS\t_\t31\tnmod:poss\t_\t_\n30\t'\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\ttime\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\tmust\t_\tAUX\tMD\t_\t34\taux\t_\t_\n33\tbe\t_\tAUX\tVB\t_\t34\tauxpass\t_\t_\n34\texpected\t_\tVERB\tVBN\t_\t5\tparataxis\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t9\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tshort-term\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcataclysms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tsurvivable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tno\t_\tDET\tDT\t_\t13\tneg\t_\t_\n13\tcause\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tpanic\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tselling\t_\tNOUN\tVBG\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tStephen\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBoesel\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tT.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tRowe\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPrice\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tBaltimore\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tThere\t_\tPRON\tEX\t_\t19\texpl\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t15\txcomp\t_\t_\n20\tless\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tpanic\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n22\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1987\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n25\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n26\tWe\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n27\thad\t_\tAUX\tVBD\t_\t30\taux\t_\t_\n28\tbeen\t_\tVERB\tVBN\t_\t30\tcop\t_\t_\n29\tthrough\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t19\tparataxis\t_\t_\n31\tonce\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tSomerset\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tWis.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tAdrian\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSween\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t10\tnsubj\t_\t_\n10\towns\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsupplier\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tnursing-home\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tequipment\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tactive\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n25\tagrees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tlook\t_\tVERB\tVBP\t_\t13\tdep\t_\t_\n4\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t3\tnmod\t_\t_\n6\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tho-hum\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmatter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfactors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tplayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpart\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tcomeback\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tReserve\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsignaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\twillingness\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tprovide\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tliquidity\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tinterest\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tloans\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbanks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tinched\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n21\tdownward\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tearly\t_\tADJ\tJJ\t_\t20\tadvmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tday\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tForeign\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarkets\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tkicked\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\toff\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tBlack\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\thuge\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tselling\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tspree\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\toff\t_\tADJ\tRP\t_\t16\tadvmod\t_\t_\n20\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\trelatively\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\tmodest\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tamounts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tafter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tfalling\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n6\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tovernight\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\t139.10\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tyen\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tbounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tback\t_\tADV\tRP\t_\t14\tadvmod\t_\t_\n16\tstrongly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t141.8\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tthus\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\teasing\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n22\tfears\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tforeigners\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n25\twould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tunload\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n27\tU.S.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\twidely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tdisseminated\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\topinion\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n6\tamong\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tmost\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\texperts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrash\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tstore\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n17\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tcalm\t_\tVERB\tJJ\t_\t18\txcomp\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinstitutions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tinto\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\twork\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n12\tready\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbuy\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tsome\t_\tDET\tDT\t_\t14\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tblue\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tchips\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tfelt\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n22\thad\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n23\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n24\tsharply\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tundervalued\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n26\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tFriday\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n3\tamid\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tall\t_\tDET\tPDT\t_\t5\tdep\t_\t_\n5\tthe\t_\tDET\tDT\t_\t19\tnmod\t_\t_\n6\tbackslapping\t_\tVERB\tNN\t_\t5\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tsigns\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\trelief\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tyesterday\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tevents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tprofessionals\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tcautioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tthere\t_\tPRON\tEX\t_\t22\texpl\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n23\tnothing\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n24\tpresent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tcurrent\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tsystem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tprevent\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n32\tanother\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tdizzying\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tdrop\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n35\tsuch\t_\tADJ\tJJ\t_\t37\tcase\t_\t_\n36\tas\t_\tADP\tIN\t_\t35\tmwe\t_\t_\n37\tFriday\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n4\ttoo\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcomplacency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tmanager\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tBarry\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tSchrager\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tComputers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tincreasingly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tconnected\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tsecurities\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tworld-wide\t_\tADJ\tRB\t_\t6\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tso\t_\tADV\tIN\t_\t21\tmark\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t9\tmwe\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tbuying\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tselling\t_\tNOUN\tVBG\t_\t12\tconj\t_\t_\n15\twave\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n20\toften\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tpassed\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n22\taround\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tglobe\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSo\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\teverywhere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tnervously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\teyed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\topening\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tTokyo\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tNikkei\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\taverage\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\t225\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n18\tblue-chip\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tgot\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n21\toff\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\trocky\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tstart\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taverage\t_\tNOUN\tJJ\t_\t3\tnsubj\t_\t_\n3\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tadvmod\t_\t_\n5\t600\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tpoints\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\t1.7\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tselling\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\twave\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tno\t_\tDET\tDT\t_\t7\tneg\t_\t_\n7\tconviction\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tfirst\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsurged\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n14\tupward\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t200\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tthen\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tdrifted\t_\tVERB\tVBD\t_\t13\tdep\t_\t_\n21\tlower\t_\tADV\tJJR\t_\t20\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n23\tclosing\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n24\tdown\t_\tADV\tRP\t_\t23\tadvmod\t_\t_\n25\t647\t_\tNUM\tCD\t_\t24\tnmod:npmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tmost\t_\tADJ\tJJS\t_\t12\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tJapan\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tchose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsit\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcalamity\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t9\tcase\t_\t_\n2\tMerrill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tTokyo\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\troom\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tadvmod\t_\t_\n12\t40\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\ttraders\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tassistants\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tsat\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tquietly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\torders\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tprocess\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tClients\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tall\t_\tDET\tDT\t_\t5\tdep\t_\t_\n5\tstaying\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tout\t_\tADP\tRP\t_\t10\tcase\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\tMerrill\t_\tPROPN\tNN\t_\t14\tcompound\t_\t_\n14\ttrader\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trelative\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcalm\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tTokyo\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tlittle\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcomfort\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\topening\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tup\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tEurope\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFrankfurt\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\topening\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tdelayed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\thalf\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thour\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n9\tbecause\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tof\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrush\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsell\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\torders\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbeginning\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tchaotic\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n8\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tNigel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tLongley\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbroker\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tCommerzbank\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tview\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tfloor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tAmerican\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tfirm\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tJefferies\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t&\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tCo.\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\talso\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n22\ttroubling\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tscreen\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tdisplaying\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\t100\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tblue-chip\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tcolors\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n9\teach\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tone\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n11\tred\t_\tNOUN\tNN\t_\t8\txcomp\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tprice\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\tfalling\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tscreen\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsea\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tred\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsee\t_\tVERB\tVBP\t_\t14\tdep\t_\t_\n4\tconcern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tsee\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n11\tpanic\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tJ.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tFrancis\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPalamara\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tYorker\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n22\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n23\truns\t_\tVERB\tVBZ\t_\t21\tacl:relcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t15-trader\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\toffice\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tLondon\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tblue-chip\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tturned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tup\t_\tADV\tRP\t_\t6\tadvmod\t_\t_\n8\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tbefore\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t8\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ta.m\t_\tNOUN\tRB\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\tsending\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n18\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tencouraging\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmessage\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tWall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStreet\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\ttrading\t_\tNOUN\tVBG\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t9:30\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\ta.m.\t_\tNOUN\tRB\t_\t10\tcompound\t_\t_\n10\tEDT\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tsharply\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tChicago\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\topened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tlevel\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tsuggesting\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tDow\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tfall\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t60\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tpoints\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tsell\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\torders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpiled\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n9\tabout\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n10\thalf\t_\tDET\tPDT\t_\t12\tnummod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tDow\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t9:45\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tindustrial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taverage\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tdropped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\t27\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\t10\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\ta.m.\t_\tNOUN\tRB\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t49\t_\tNUM\tCD\t_\t7\tnmod:npmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTen\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tlater\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tbottom\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t-\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n10\tdown\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n11\t63.52\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tanother\t_\tDET\tDT\t_\t15\tadvmod\t_\t_\n15\t2.5\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tshortly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tbefore\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tthen\t_\tADV\tRB\t_\t13\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n6\tsome\t_\tDET\tDT\t_\t13\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tWall\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tStreet\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tsharpest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsensed\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tturn\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tthing\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tcaught\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n7\tmy\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\teye\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tencouraging\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t19\tdep\t_\t_\n13\tTreasury\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbonds\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n16\toff\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tAustin\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tGeorge\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\thead\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\ttrading\t_\tVERB\tNN\t_\t25\tamod\t_\t_\n27\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tT.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tRowe\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tPrice\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tmeant\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tpeople\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\trunning\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\tpell-mell\t_\tNOUN\tNN\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsafety\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tbonds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tafter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\t10\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\ta.m.\t_\tNOUN\tRB\t_\t27\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tMajor\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tMarket\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tIndex\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\tChicago\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tTrade\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tfutures\t_\tNOUN\tNNS\t_\t9\tappos\t_\t_\n17\tcontract\t_\tVERB\tNN\t_\t16\tdep\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tdesigned\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tmimic\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tDJIA\t_\tPROPN\tNNP\t_\t23\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n27\texploded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tupward\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tbuoyed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tupturn\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tMMI\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n13\talso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tstarted\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\trecovery\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tTuesday\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n22\tfollowing\t_\tNOUN\tVBG\t_\t24\tdep\t_\t_\n23\tBlack\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMonday\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tMMI\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgone\t_\tVERB\tVBN\t_\t9\tdep\t_\t_\n6\tbetter\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tLondon\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\toffice\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tShearson\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tLehman\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tHutton\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tShearson\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tLondon\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\ttrading\t_\tVERB\tNN\t_\t5\tamod\t_\t_\n5\troom\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\twild\t_\tADJ\tJJ\t_\t6\txcomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tout\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tas\t_\tADV\tIN\t_\t12\tadvmod\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n6\tReuters\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tQuotron\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tTelerate\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\tscreens\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tposted\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tever-narrowing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tloss\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tminutes\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n5\tlater\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tsuddenly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tRally\t_\tVERB\tNNP\t_\t9\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\trally\t_\tVERB\tNN\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\trally\t_\tVERB\tNN\t_\t2\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tShearson\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tAndy\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tRosen\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tpanic\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbuying\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tblue-chip\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n4\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tPhilip\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMorris\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tGeneral\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMotors\t_\tPROPN\tNNPS\t_\t6\tconj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tProctor\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tGamble\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\trally\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tJapanese\t_\tPROPN\tJJ\t_\t3\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\theavy\t_\tNOUN\tJJ\t_\t7\tcompound\t_\t_\n7\tbuyers\t_\tNOUN\tNNS\t_\t3\txcomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGerman\t_\tPROPN\tJJ\t_\t4\tamod\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tDutch\t_\tPROPN\tJJ\t_\t1\tconj\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\treportedly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tloaded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tKellogg\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCo\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsay\t_\tVERB\tVBP\t_\t11\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tcorporations\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tshare\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tbuy-back\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tprograms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tkicked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tinto\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\thigh\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\ttriggering\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n17\tgains\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tamong\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tissues\t_\tNOUN\tNNS\t_\t25\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tAlcan\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAluminium\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tMcDonald\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWalt\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tDisney\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\tone\t_\tNOUN\tCD\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbiggest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n11\tsell-order\t_\tADJ\tNN\t_\t12\tamod\t_\t_\n12\timbalances\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n17\tone\t_\tNUM\tCD\t_\t6\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tseven\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tstocks\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\thalted\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\tnever\t_\tADV\tRB\t_\t26\tneg\t_\t_\n26\treopened\t_\tVERB\tVBD\t_\t22\tconj\t_\t_\n27\tthat\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tday\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n30\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tyesterday\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n32\tlate\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n33\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\t114.5\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n36\tdown\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n37\t8.5\t_\tNUM\tCD\t_\t36\tnmod:npmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthen\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tsuddenly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tburst\t_\tVERB\tVBP\t_\t24\tccomp\t_\t_\n6\tupward\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t7.5\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tGoldman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tSachs\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tstepped\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n15\tin\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\tbought\t_\tVERB\tVBD\t_\t14\tconj\t_\t_\n18\talmost\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\tevery\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\toffer\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\ttraders\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t10:25\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tturned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tadvmod\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tday\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tprompting\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n14\tcheers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttrading\t_\tVERB\tNN\t_\t17\tamod\t_\t_\n17\tdesks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\texchange\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tfloors\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspecialists\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcry\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tPull\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n11\tyour\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\toffers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tmeaning\t_\tNOUN\tVBG\t_\t8\tccomp\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tspecialists\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tsoon\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tget\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\thigher\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tbedlam\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tupside\t_\tADV\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tspecialist\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tWhat\t_\tPRON\tWP\t_\t4\tdobj\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t10\tcsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\treal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\told-fashioned\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\trally\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttechnical\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tstrength\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tspurred\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tbuying\t_\tNOUN\tVBG\t_\t4\tdobj\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tblack\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tboxes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n15\tcomputer\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprograms\t_\tNOUN\tNNS\t_\t12\tdep\t_\t_\n17\tdesigned\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\ttrigger\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tlarge\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpurchases\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tbullish\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tperiods\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tperhaps\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tBatterymarch\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tDean\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tLeBaron\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLeBaron\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tmanages\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n7\t10\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tWe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tturned\t_\tVERB\tVBD\t_\t10\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttrading\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tsystem\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t14\tcompound:prt\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tdid\t_\tVERB\tVBD\t_\t14\tconj\t_\t_\n23\twhatever\t_\tDET\tWDT\t_\t28\tdobj\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubjpass\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t26\tauxpass\t_\t_\n26\tprogrammed\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tdo\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n2\twhat\t_\tPRON\tWP\t_\t6\tdobj\t_\t_\n3\tstocks\t_\tVERB\tNNS\t_\t2\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tbought\t_\tVERB\tVBD\t_\t1\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tmoney\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmanager\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\tI\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n15\tdo\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tknow\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\teverybody\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tmoney\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcarnage\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tChicago\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tBoard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tOptions\t_\tPROPN\tNNPS\t_\t8\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\toptions\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n18\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t28\tnsubjpass\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tS&P\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\t100\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tstock-index\t_\tADJ\tNN\t_\t26\tamod\t_\t_\n26\toptions\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\tauxpass\t_\t_\n28\thalted\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmakers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\t100\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\toptions\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbullish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpositions\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshutdown\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tcame\t_\tVERB\tVBD\t_\t23\tadvcl\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\twere\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tfrozen\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\thuge\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tlosses\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweekend\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tclearing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfirms\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tChicago\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmakers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tget\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n14\tout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tpositions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcost\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tMonday\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tabsolutely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tkilled\t_\tVERB\tVBN\t_\t10\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tslaughtered\t_\tVERB\tVBN\t_\t5\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tChicago-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\toptions\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\ttrader\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttest\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\trally\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\t2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tp.m.\t_\tNOUN\tRB\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t2600\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tup\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\t31\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tpoints\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tday\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tClough\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tstrategist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMerrill\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tLynch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tbargain\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\thunting\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\texplained\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tDow\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tstrength\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tup\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tthat\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpoint\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n24\tthat\t_\tDET\tIN\t_\t29\tmark\t_\t_\n25\tmany\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tprofessionals\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\twere\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n29\tanticipating\t_\tVERB\tVBG\t_\t14\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdrop\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tDow\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tannouncement\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n5\tthat\t_\tSCONJ\tWDT\t_\t15\tmark\t_\t_\n6\treal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\testate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmagnate\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tsometime\t_\tADJ\tRB\t_\t13\tamod\t_\t_\n11\traider\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tDonald\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tTrump\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\twithdrawing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n16\this\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\toffer\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tAMR\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tmight\t_\tAUX\tMD\t_\t24\taux\t_\t_\n22\thave\t_\tAUX\tVB\t_\t24\taux\t_\t_\n23\tbeen\t_\tAUX\tVBN\t_\t24\tauxpass\t_\t_\n24\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\trattle\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\ttraders\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\trally\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tonly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tpaused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tminutes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\tthen\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsteamed\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n14\tforward\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tinstitutions\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tresumed\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n18\tbuying\t_\tVERB\tNN\t_\t17\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod:tmod\t_\t_\n5\tafter\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\treaching\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\thigh\t_\tNOUN\tJJ\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tday\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t8\tdep\t_\t_\n\n1\tAcross\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcountry\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpeople\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tevents\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tstride\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tremaining\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n16\tgenerally\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tuneasy\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n18\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tgeneral\t_\tNOUN\tJJ\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tJames\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNorman\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmayor\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tAva\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tMo.\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tI\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n14\tdo\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tinvest\t_\tVERB\tVB\t_\t1\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tmuch\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tprefer\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tmoney\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tI\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tput\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n8\tmy\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\thands\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tMayor\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNorman\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tfound\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tperformance\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n10\treassuring\t_\tVERB\tVBG\t_\t4\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t16\tparataxis\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tuneasy\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\thalf\t_\tDET\tPDT\t_\t6\tdet:predet\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\texperts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsaying\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n8\tone\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tthing\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\thalf\t_\tNOUN\tPDT\t_\t13\tdep\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcourse\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\teconomy\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRalph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHolzfaster\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfarmer\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tfarm-supply\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tstore\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\toperator\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOgallala\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tNeb.\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tlast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdays\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\tevents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n24\tIf\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tanything\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n27\tcomes\t_\tVERB\tVBZ\t_\t34\tadvcl\t_\t_\n28\tout\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tthis\t_\tPRON\tDT\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n33\tmight\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n35\tthat\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n36\tit\t_\tPRON\tPRP\t_\t37\tnsubj\t_\t_\n37\tputs\t_\tVERB\tVBZ\t_\t34\tccomp\t_\t_\n38\tsome\t_\tDET\tDT\t_\t37\tdobj\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tthese\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tLBOs\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n42\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tskids\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tGordon\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tFines\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmanager\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tIDS\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tFinancial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tServices\t_\tPROPN\tNNPS\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tMinneapolis\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n16\tYou\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n17\t're\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n18\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\troller\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcoaster\t_\tNOUN\tNN\t_\t1\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tthat\t_\tPRON\tDT\t_\t26\tnsubj\t_\t_\n25\tmay\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tlast\t_\tVERB\tVB\t_\t21\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpublic\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcautious\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSkipper\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tBellevue\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tWash.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsigned\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tdefinitive\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tmerger\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tagreement\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tfor\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n17\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tNational\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tPizza\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tunit\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tacquire\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t90.6\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tSkipper\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tInc.\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n32\tdoes\t_\tAUX\tVBZ\t_\t34\taux\t_\t_\n33\tn't\t_\tPART\tRB\t_\t34\tneg\t_\t_\n34\town\t_\tVERB\tVB\t_\t26\tacl:relcl\t_\t_\n35\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t37\tdep\t_\t_\n37\t11.50\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n38\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tshare\t_\tNOUN\tNN\t_\t37\tnmod:npmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n41\tor\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n42\tabout\t_\tADV\tIN\t_\t43\tadvmod\t_\t_\n43\t$\t_\tSYM\t$\t_\t37\tconj\t_\t_\n44\t28.1\t_\tNUM\tCD\t_\t45\tcompound\t_\t_\n45\tmillion\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tNP\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tPizza\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tunit\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tbegin\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\ttender\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tSkipper\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n22\tconditioned\t_\tVERB\tVBN\t_\t26\tcase\t_\t_\n23\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tleast\t_\tADJ\tJJS\t_\t26\tnmod:npmod\t_\t_\n26\ttwo-thirds\t_\tNOUN\tNNS\t_\t12\tadvcl\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tSkipper\t_\tPROPN\tNN\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tshares\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\tbeing\t_\tAUX\tVBG\t_\t32\tauxpass\t_\t_\n32\ttendered\t_\tVERB\tVBN\t_\t30\tacl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tPittsburg\t_\tPROPN\tNNP\t_\t3\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\tKan.-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tNational\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPizza\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttransaction\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tfinanced\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n12\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n14\trevolving\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcredit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tagreement\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tnational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tover-the-counter\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tSkipper\t_\tPROPN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t50\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t11\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSkipper\t_\tPROPN\tNN\t_\t3\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmerger\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\thelp\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tfinance\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n9\tremodeling\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tfuture\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tgrowth\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSkipper\t_\tPROPN\tNN\t_\t4\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tturned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tdown\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n8\t10-a-share\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n9\tproposal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tNational\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPizza\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\tPizza\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tHut\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tInc.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tquestioned\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n18\twhether\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpurchase\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tviolate\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n23\tNational\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tPizza\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tfranchise\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tagreements\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNational\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPizza\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsettled\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tdispute\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tPizza\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tHut\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tallowing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tpurchase\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tSkipper\t_\tPROPN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tresults\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tbegan\t_\tVERB\tVBD\t_\t18\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tturn\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\taround\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\tpermitting\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\thigher\t_\tADJ\tJJR\t_\t14\tamod\t_\t_\n14\toffer\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tNational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPizza\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t12\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tweeks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tSept.\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\t3\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tSkipper\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t361,000\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n19\t13\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tcompared\t_\tVERB\tVBN\t_\t28\tcase\t_\t_\n25\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tnet\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tloss\t_\tNOUN\tNN\t_\t11\tadvcl\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tyear\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n31\tearlier\t_\tADV\tRBR\t_\t28\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n4\t19.9\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEAST\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tGERMANS\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tRALLIED\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\treportedly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tsought\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\tHonecker\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\touster\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\twhat\t_\tPRON\tWP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tconsidered\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlargest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tprotest\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n8\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tCommunist\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstate\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\t40-year\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thistory\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tleast\t_\tADJ\tJJS\t_\t18\tnmod:npmod\t_\t_\n18\t120,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tdemonstrators\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tmarched\t_\tVERB\tVBD\t_\t36\tadvcl\t_\t_\n21\tthrough\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tsouthern\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcity\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tLeipzig\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tpress\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n29\tdemands\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tdemocratic\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tfreedoms\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n34\topposition\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tactivists\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n36\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tPolice\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tintervene\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfirst\t_\tADJ\tJJ\t_\t20\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\t1,300\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tEast\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tGermans\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\ttrying\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tflee\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tWest\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tPoland\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\trenounced\t_\tVERB\tVBD\t_\t28\tadvcl\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tcitizenship\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tWest\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tGerman\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnewspaper\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n28\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n30\tregional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tCommunist\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tofficials\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n33\tdemanded\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdismissal\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\thard-line\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tleader\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tHonecker\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tSecretary\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tState\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tBaker\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tforeign\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpolicy\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tspeech\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\treunification\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tGermany\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tsaying\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n24\tlegitimate\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tright\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tGerman\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpeople\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tGorbachev\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tblamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tSoviet\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tUnion\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tpress\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n8\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tcontributing\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tnation\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tmounting\t_\tVERB\tVBG\t_\t15\tamod\t_\t_\n15\tproblems\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmeeting\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tKremlin\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tleader\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tcomplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\trecent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tarticles\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\traised\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpossiblity\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tcivil\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tunrest\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n22\taccused\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmedia\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tof\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tfueling\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n27\tpanic\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n28\tbuying\t_\tVERB\tNN\t_\t27\tamod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tgoods\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\tby\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\tpublishing\t_\tVERB\tVBG\t_\t26\tadvcl\t_\t_\n33\tstories\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tabout\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\timpending\t_\tVERB\tVBG\t_\t36\tamod\t_\t_\n36\tshortages\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHouse-Senate\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tconferees\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpermanent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tsmoking\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tban\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tdomestic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tairline\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\troutes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\twithin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcontinental\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tflights\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tless\t_\tADJ\tJJR\t_\t22\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n22\tsix\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\thours\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tAlaska\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tHawaii\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcurbs\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcover\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tall\t_\tDET\tDT\t_\t4\tdobj\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpercentage\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tflights\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\trepresent\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\texpansion\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tcurrent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tban\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tflights\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tless\t_\tADJ\tJJR\t_\t26\tadvmod\t_\t_\n25\tthan\t_\tADP\tIN\t_\t24\tmwe\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\thours\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tE.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWallach\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tsentenced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tjudge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tYork\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tsix\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tyears\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprison\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\tfined\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t250,000\t_\tNUM\tCD\t_\t19\tdobj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tracketeering\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tconviction\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tWedtech\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tscandal\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWallach\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tassociate\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tex-Attorney\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tGeneral\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMeese\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\tauxpass\t_\t_\n11\tfound\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tguilty\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tof\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\ttaking\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t425,000\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tillegal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpayoffs\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tnow-defunct\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tdefense\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tcontractor\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNASA\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tresumed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcountdown\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tlaunch\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tspace\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tshuttle\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tAtlantis\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfederal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tappeals\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tcourt\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tWashington\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\tdismissed\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlawsuit\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tanti-nuclear\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tgroups\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tdelay\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tflight\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tbecause\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\tplutonium-powered\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\tGalileo\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tspace\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tprobe\t_\tNOUN\tNN\t_\t38\tnsubj\t_\t_\n38\twas\t_\tVERB\tVBD\t_\t29\tadvcl\t_\t_\n39\taboard\t_\tADV\tIN\t_\t38\tadvmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tspace\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\tdid\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\texpect\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\tweather\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tprotesters\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tblock\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tliftoff\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tpreparing\t_\tVERB\tVBG\t_\t21\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\textend\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tban\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tfederal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfinancing\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tresearch\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tusing\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tfetal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttissue\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tgovernment\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsources\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttemporary\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprohibition\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\timposed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tMarch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t1988\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tanti-abortion\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroups\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\tauxpass\t_\t_\n5\topposed\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tsuch\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tresearch\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tscientists\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\ttransplanting\t_\tVERB\tVBG\t_\t18\tcsubj\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttissue\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n18\teffective\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n19\tin\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\ttreating\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tdiabetes\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDelegates\t_\tNOUN\tNNPS\t_\t5\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\t91\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tnations\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tendorsed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tban\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tworld\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tivory\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttrade\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tattempt\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\trescue\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tendangered\t_\tVERB\tVBN\t_\t19\tamod\t_\t_\n19\telephant\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\textinction\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFive\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tAfrican\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tnations\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tcontinue\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tselling\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tvaluable\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttusks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMubarak\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\treconciliation\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttalks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tGadhafi\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tEgyptian\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tresort\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tMersa\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tMetruh\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tLibyan\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tleader\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrip\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tEgypt\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t16\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tyears\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\treduction\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tformalities\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttravel\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tshow\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n14\tany\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\treal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsigns\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tof\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tresuming\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tfull\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdiplomatic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tties\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tEgyptian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tvisit\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tLibya\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tresume\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttalks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSeoul\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tPyongyang\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttentative\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tallow\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tvisits\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tfamilies\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tdivided\t_\tVERB\tJJ\t_\t17\tamod\t_\t_\n16\tKorean\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tpeninsula\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfamily\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\treunions\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsecond\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tsince\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t1945\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDifferences\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tremained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tbetween\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tNorth\t_\tADJ\tNNP\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSouth\t_\tADJ\tNNP\t_\t9\tamod\t_\t_\n8\tKorean\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tgovernments\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\thowever\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tover\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tconditions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFreed\t_\tVERB\tNNP\t_\t3\tamod\t_\t_\n2\tblack\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tnationalists\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tresumed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tpolitical\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tactivity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tSouth\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAfrica\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tvowed\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tfight\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tapartheid\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\traising\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n18\tfears\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tpossible\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\twhite\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbacklash\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnation\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tmain\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\twhite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\topposition\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tparty\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\trelease\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n14\tSunday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\teight\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n17\tblack\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tpolitical\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprisoners\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\trisked\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n21\tbringing\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n22\tchaos\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\teventual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tblack\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tMarxist\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\trule\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tnation\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHouse\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tBush\t_\tPROPN\tNNP\t_\t9\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n8\tfully\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsatisfied\t_\tVERB\tJJ\t_\t4\tccomp\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tCIA\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tDirector\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tWebster\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tintelligence\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tagency\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tperformance\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n21\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n23\tOct.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\t3\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tfailed\t_\tVERB\tVBD\t_\t26\tamod\t_\t_\n26\tcoup\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tPanama\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tWashington\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPost\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tunidentified\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tsenior\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tofficials\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t11\tauxpass\t_\t_\n11\tfrustrated\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n12\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tWebster\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tlow-profile\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tactivities\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tduring\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinsurrection\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\twanted\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n22\thim\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\treplaced\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPoland\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tlegislature\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tlimits\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tautomatic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\twage\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tincreases\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\twithout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tspecial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tprovisions\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tfood\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tprice\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trises\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tvote\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttest\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tSolidarity-led\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tresolve\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tproceed\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tharsh\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\teconomic-restructuring\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprogram\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNorway\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tKing\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tOlav\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tV\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tinstalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tthree-party\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnon-Socialist\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n12\tGro\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHarlem\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBrundtland\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tthree-year-old\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tLabor\t_\tPROPN\tNN\t_\t18\tcompound\t_\t_\n18\tregime\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\trelinquished\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n20\tpower\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t19-member\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcabinet\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tPrime\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tMinister\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJan\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSyse\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\tacknowledged\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\tdifficult\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsituation\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n19\tsince\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcoalition\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tcontrols\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n23\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\t62\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tseats\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tOslo\t_\tNOUN\tNNP\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\t165-member\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tlegislature\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEl\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSalvador\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tgovernment\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tround\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\ttalks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcountry\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tleftist\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trebels\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tan\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\teffort\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tend\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tdecade-long\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tcivil\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\twar\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tguerrillas\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tpresent\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcease-fire\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tproposal\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tduring\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnegotiations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tCosta\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tRica\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tincludes\t_\tVERB\tVBZ\t_\t7\tdep\t_\t_\n19\tconstitutional\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\teconomic\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tchanges\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tState\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDepartment\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tpossibility\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tsome\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tNicaraguan\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\trebels\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\tselling\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tU.S.-supplied\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tarms\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tSalvadoran\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tguerrillas\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n25\tinsisted\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n28\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n29\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\torganized\t_\tVERB\tVBN\t_\t31\tamod\t_\t_\n31\teffort\t_\tNOUN\tNN\t_\t25\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tSecretary\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tState\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tBaker\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tcomplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tU.N.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\taide\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t15\tnsubj\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tweek\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n15\ttold\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tContras\t_\tNOUN\tNNPS\t_\t15\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdisband\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tpart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tregional\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tpeace\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\taccord\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tCornel\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tWilde\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t74\t_\tNUM\tCD\t_\t4\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tactor\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tdirector\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tLos\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAngeles\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tleukemia\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n18\t...\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDanilo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKis\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t54\t_\tNUM\tCD\t_\t2\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tYugoslav-born\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tnovelist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tessayist\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tSunday\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tParis\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcancer\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBritish\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tretail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tsales\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tvolume\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t29\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tprovisional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\t0.4\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tAugust\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n16\tup\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\t2.2\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tSeptember\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n21\t1988\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tTrade\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tIndustry\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthree\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tretail\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tvolume\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tdown\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n14\t0.5\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tprevious\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tthree\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tadvmod\t_\t_\n22\tup\t_\tADV\tIN\t_\t21\tadvmod\t_\t_\n23\t1.2\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\t%\t_\tSYM\tNN\t_\t22\tnmod:npmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n28\tearlier\t_\tADV\tRBR\t_\t22\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tChicago\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tinvestor\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\tWilliam\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tFarley\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsell\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthree\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tdivisions\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tCluett\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPeabody\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n18\t600\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tBidermann\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tS.A.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tclosely\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\theld\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n27\tclothing\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tmaker\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n29\tbased\t_\tVERB\tVBN\t_\t28\tacl\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tParis\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tafter\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n3\tcompleting\t_\tVERB\tVBG\t_\t25\tadvcl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t1.56\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tacquisition\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tWest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tApril\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tFarley\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tholding\t_\tVERB\tVBG\t_\t20\tamod\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tFarley\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc.\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\taux\t_\t_\n28\tconsidering\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tsale\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tCluett\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n35\tleading\t_\tADJ\tVBG\t_\t37\tamod\t_\t_\n36\tshirt\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tmaker\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tone\t_\tNUM\tCD\t_\t37\tconj\t_\t_\n40\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n41\tWest\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t45\tnmod:poss\t_\t_\n43\t's\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tbiggest\t_\tADJ\tJJS\t_\t45\tamod\t_\t_\n45\tunits\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIncluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsale\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t1\tauxpass\t_\t_\n6\tCluett\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tunits\t_\tNOUN\tNNS\t_\t1\tnsubjpass\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tmake\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n10\tmen\t_\tNOUN\tNNS\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tshirts\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tArrow\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tname\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tsocks\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n19\tunder\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tGold\t_\tPROPN\tNN\t_\t23\tcompound\t_\t_\n22\tToe\t_\tPROPN\tNN\t_\t23\tcompound\t_\t_\n23\tname\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n25\tmenswear\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n26\tthrough\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tSchoeneman\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tdivision\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tagreement\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tBidermann\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\treceipt\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tfinancing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n16\tregulatory\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t16\tconj\t_\t_\n19\tapprovals\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsale\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t9\tauxpass\t_\t_\n9\tconcluded\t_\tVERB\tVBN\t_\t6\txcomp\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tNovember\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFarley\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tCluett\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tfour\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tmain\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdivisions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tplus\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n17\tanticipated\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n19\tWest\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tasset\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tsales\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tDecember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n26\tshould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tbring\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n28\tin\t_\tADP\tRP\t_\t27\tcompound:prt\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\ttotal\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tabout\t_\tADV\tIN\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t30\tnmod\t_\t_\n34\t700\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\telaborate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tasset\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsales\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tbeing\t_\tAUX\tVBG\t_\t10\tauxpass\t_\t_\n10\tconsidered\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFarley\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfollowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsimilar\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpattern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tacquired\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n10\tNorthwest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tIndustries\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthen\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tsold\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n16\tmuch\t_\tADJ\tJJ\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tassets\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tkept\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFruit\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tLoom\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tunderwear\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmaker\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n13\tthat\t_\tADP\tIN\t_\t16\tdobj\t_\t_\n14\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tstill\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tcontrols\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tserves\t_\tVERB\tVBZ\t_\t16\tconj\t_\t_\n19\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tchairman\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tchief\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\texecutive\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCluett\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tindependent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tuntil\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tWest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tacquired\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n13\t375\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tcash\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1986\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfiscal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tSept.\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\t30\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\t1988\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tCluett\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\toperating\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tprofit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n17\t37\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsales\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t757\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBidermann\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tclothes\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tunder\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tvarious\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tlabels\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tincluding\t_\tVERB\tVBG\t_\t11\tcase\t_\t_\n9\tYves\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tSaint\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tLaurent\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tBill\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tRobinson\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmen\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tRalph\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tLauren\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\twomen\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t400\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1988\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t25\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t53.875\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBritain\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tArrow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPLC\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tintends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tchange\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tname\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tManpower\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPLC\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\twrite\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n16\toff\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tchunk\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tnearly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n23\t1.2\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tbillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\twill\t_\tNOUN\tMD\t_\t22\tnmod\t_\t_\n28\trealized\t_\tVERB\tVBN\t_\t27\tacl\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\ttakeover\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tU.S.-based\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tManpower\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tInc\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tChairman\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMitchell\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tFromstein\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tinterview\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tsteps\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n14\tmay\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tprelude\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tmark\t_\t_\n19\treincorporating\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tworld\t_\tNOUN\tNN\t_\t25\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tbiggest\t_\tADJ\tJJS\t_\t25\tamod\t_\t_\n24\temployment-services\t_\tADJ\tNNS\t_\t25\tamod\t_\t_\n25\tgroup\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFromstein\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tplanned\t_\tVERB\tJJ\t_\t6\tamod\t_\t_\n6\tsteps\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n9\twithin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmonths\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tBlue\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tArrow\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tposted\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\t2.5\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t21\tamod\t_\t_\n21\tdrop\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tthird-quarter\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tpretax\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tearnings\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tname\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tchange\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tgood\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\twill\t_\tNOUN\tMD\t_\t7\tcompound\t_\t_\n7\twrite-off\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tsolidify\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n11\tBlue\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tArrow\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tdominance\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\ttemporary-help\t_\tADJ\tNN\t_\t19\tamod\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n21\tgive\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t21\tiobj\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tmore\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\timage\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n27\tas\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tinvestors\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\tturn\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n31\tjittery\t_\tADJ\tJJ\t_\t30\txcomp\t_\t_\n32\tabout\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tforeign\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tstocks\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\tafter\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tFriday\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tmarket\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tplunge\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tholders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\town\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t7\tadvmod\t_\t_\n6\tthan\t_\tADP\tIN\t_\t5\tmwe\t_\t_\n7\t60\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tBlue\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tArrow\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tcompared\t_\tVERB\tVBN\t_\t15\tcase\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t9\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t4\tadvcl\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tJanuary\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trecognition\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tManpower\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tname\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n14\tinfinitely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tstronger\t_\tADJ\tJJR\t_\t23\tdep\t_\t_\n16\tthan\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tBlue\t_\tPROPN\tJJ\t_\t18\tcompound\t_\t_\n18\tArrow\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tFromstein\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmoves\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\terase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tshareholders\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tperception\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tBlue\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tArrow\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tturmoil\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tfurther\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\treinforces\t_\tVERB\tVBZ\t_\t18\tdep\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tconcept\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tBlue\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tArrow\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tthing\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpast\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tDoug\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tArthur\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tanalyst\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tKidder\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tPeabody\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tCo.\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tNew\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tYork\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tproposed\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n3\tchanges\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n5\tall\t_\tDET\tDT\t_\t3\tdep\t_\t_\n6\tmake\t_\tVERB\tVBP\t_\t16\tdep\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlot\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tsense\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tme\t_\tPRON\tPRP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\twidely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpublicized\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n5\tboardroom\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcoup\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tFromstein\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tousted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tAntony\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tBerry\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tBlue\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tArrow\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tchief\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\texecutive\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tJanuary\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmonth\t_\tNOUN\tNN\t_\t27\tdep\t_\t_\n23\tafter\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBerry\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n26\thad\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n27\tforced\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n28\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tFromstein\t_\tPROPN\tNNP\t_\t27\tdobj\t_\t_\n30\tout\t_\tADV\tRP\t_\t27\tadvmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t36\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n33\t$\t_\tSYM\t$\t_\t36\tamod\t_\t_\n34\t1\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n35\tmillion-a-year\t_\tADJ\tJJ\t_\t33\tdep\t_\t_\n36\tchief\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tMilwaukee-based\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tManpower\t_\tPROPN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFromstein\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsolidified\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tcontrol\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tApril\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\tby\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\ttaking\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n10\tover\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBerry\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tchairman\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tArrow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\ttumult\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n8\tover\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\tyet\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBritish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgovernment\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\tinvestigating\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n17\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n18\tdisputed\t_\tVERB\tVBN\t_\t27\tamod\t_\t_\n19\t#\t_\tSYM\t#\t_\t21\tcompound\t_\t_\n20\t25\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t27\tdep\t_\t_\n22\t-LRB-\t_\tPUNCT\t-LRB-\t_\t23\tpunct\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n24\t39.4\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t-RRB-\t_\tPUNCT\t-RRB-\t_\t23\tpunct\t_\t_\n27\tloan\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n28\twhich\t_\tPRON\tWDT\t_\t32\tdobj\t_\t_\n29\tMr.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tFromstein\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n31\thas\t_\tAUX\tVBZ\t_\t32\taux\t_\t_\n32\tsaid\t_\tVERB\tVBN\t_\t27\tacl:relcl\t_\t_\n33\twas\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n34\tmade\t_\tVERB\tVBN\t_\t32\tccomp\t_\t_\n35\tunder\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tMr.\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tBerry\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tdirection\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpull\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\toff\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t12\tamod\t_\t_\n10\t1.34\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\ttakeover\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tManpower\t_\tPROPN\tNN\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n17\tlargely\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n18\tbecause\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n19\tdifferent\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n20\tBritish\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tAmerican\t_\tADJ\tJJ\t_\t20\tconj\t_\t_\n23\taccounting\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tstandards\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tproduce\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n26\thigher\t_\tADJ\tJJR\t_\t28\tamod\t_\t_\n27\treported\t_\tVERB\tVBD\t_\t28\tamod\t_\t_\n28\tearnings\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tBritish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcompanies\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tBritish\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trules\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tBlue\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tArrow\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\twrite\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\toff\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tonce\t_\tADV\tRB\t_\t10\tnmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n16\t1.15\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\twill\t_\tNOUN\tMD\t_\t15\tnmod\t_\t_\n21\tarising\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpurchase\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tU.S.-based\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t9\tccomp\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tBlue\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tArrow\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tamortize\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twill\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n17\tmany\t_\tADJ\tJJ\t_\t19\tadvmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n19\t40\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n22\tcreating\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tcontinuing\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n25\tdrag\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\treported\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\tearnings\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tGood\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\twill\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\texcess\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcost\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tacquired\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\toperating\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tunit\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tassets\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n17\tover\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tcurrent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tfair\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tvalue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthose\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tassets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n6\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\theld\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tBlue\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tArrow\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\treports\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n17\ttwo\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tways\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tbased\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tboth\t_\tDET\tDT\t_\t23\tcc:preconj\t_\t_\n23\tU.K.\t_\tPROPN\tNNP\t_\t14\tadvcl\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\taccounting\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tstandards\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tOur\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tbalance\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tsheets\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tlook\t_\tVERB\tVBP\t_\t17\tdep\t_\t_\n6\tlike\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tcame\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tAlice\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\twonderland\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tFromstein\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBritish\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tversion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thandful\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tpounds\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tnet\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tworth\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n14\tfollowing\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\twrite-off\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\twill\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tAmerican\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tversion\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\treflects\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n28\t$\t_\tSYM\t$\t_\t26\tdobj\t_\t_\n29\t1\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tnet\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tworth\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tbecause\t_\tSCONJ\tIN\t_\t45\tmark\t_\t_\n35\talmost\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tnone\t_\tNOUN\tNN\t_\t45\tnsubjpass\t_\t_\n37\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\t-LCB-\t_\tPUNCT\t-LRB-\t_\t41\tpunct\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tgood\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\twill\t_\tNOUN\tMD\t_\t36\tnmod\t_\t_\n42\t-RCB-\t_\tPUNCT\t-RRB-\t_\t41\tpunct\t_\t_\n43\thas\t_\tAUX\tVBZ\t_\t45\taux\t_\t_\n44\tbeen\t_\tAUX\tVBN\t_\t45\tauxpass\t_\t_\n45\twritten\t_\tVERB\tVBN\t_\t26\tadvcl\t_\t_\n46\toff\t_\tADP\tRP\t_\t45\tcompound:prt\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFromstein\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\thopes\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\teradicate\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tsome\t_\tDET\tDT\t_\t7\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgood\t_\tADJ\tNN\t_\t12\tamod\t_\t_\n12\twill\t_\tNOUN\tMD\t_\t8\tnmod\t_\t_\n13\tleft\t_\tVERB\tRB\t_\t12\tacl\t_\t_\n14\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tBlue\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tArrow\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tbooks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tone\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tfell\t_\tADJ\tVBD\t_\t23\tamod\t_\t_\n23\tswoop\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tspecify\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n29\thow\t_\tADV\tWRB\t_\t30\tadvmod\t_\t_\n30\tmuch\t_\tADV\tJJ\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tclose\t_\tADJ\tRB\t_\t1\tamod\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tArrow\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsuggested\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twrite-down\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\trepresent\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsizable\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchunk\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\twith\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\texecutives\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tclaiming\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n18\tprior\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmanagement\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\toverstated\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\textent\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tManpower\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\twill\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\talong\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\treturn\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tManpower\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tname\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tbolster\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tprospects\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tpossibly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdifficult\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttimes\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ttemporary\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thelp\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnumber\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\ttemporary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tworkers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfell\t_\tVERB\tVBD\t_\t27\tccomp\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t1\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\t12\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\tending\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tAug.\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n17\t31\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tsliding\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n21\tnearly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\t3.5\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t20\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tJuly\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tKidder\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tPeabody\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tMr.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tArthur\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tblamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpretax\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tprofit\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tdrop\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tended\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tJuly\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t31\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\tpartly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tslower\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tgrowth\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tnon-Manpower\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tunits\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tBritain\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tpretax\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprofit\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\t#\t_\tSYM\t#\t_\t9\tcompound\t_\t_\n8\t18.49\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\t#\t_\tSYM\t#\t_\t16\tcompound\t_\t_\n15\t18.98\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tearlier\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSim\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tcredited\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\ttransforming\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n10\tApplied\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tPower\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tunderachiever\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\tinto\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfeisty\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tplayer\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tglobal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\thydraulic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\ttools\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n28\thopes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tguide\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tsimilar\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tturnaround\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n34\tat\t_\tADP\tIN\t_\t39\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tcompany\t_\tNOUN\tNN\t_\t39\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tlatest\t_\tADJ\tJJS\t_\t39\tamod\t_\t_\n39\tacquisition\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tBarry\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n42\tWright\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tCorp\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\t45-year-old\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n3\tformer\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n4\tGeneral\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tElectric\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tCo.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\texecutive\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tfigures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\teasier\t_\tADJ\tRBR\t_\t8\tccomp\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\ttime\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\twhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tapplauding\t_\tVERB\tVBG\t_\t9\tdep\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tacquisition\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tApplied\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\texecutive\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tfaces\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttough\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchallenge\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tin\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tintegrating\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttwo\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBarry\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWright\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tacquired\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tApplied\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t147\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tcomputer-room\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tequipment\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tvibration-control\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n17\tsystems\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tWatertown\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tMass.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tsales\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n10\tbeen\t_\tVERB\tVBN\t_\t11\tcop\t_\t_\n11\tdormant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tprofits\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tdropped\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tearnings\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n7\t1.3\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tincluding\t_\tVERB\tVBG\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t815,000\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\trestructuring\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tgain\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\twere\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n19\tfar\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n20\tbelow\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n24\t8.4\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tBesides\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tspurring\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n3\tBarry\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tWright\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsales\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n9\twere\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n10\t$\t_\tSYM\t$\t_\t6\tacl:relcl\t_\t_\n11\t201.7\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1988\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSim\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n18\tmust\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tpare\t_\tVERB\tVB\t_\t0\troot\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tcosts\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tproduct\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tline\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tquestion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n5\thow\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n6\tlong\t_\tADJ\tJJ\t_\t9\tadvmod\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\t's\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tgoing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\ttake\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tBarry\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tWright\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcontribution\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tF.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tJohn\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tMirek\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tanalyst\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n27\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tBlunt\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tEllis\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tLoewi\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMilwaukee\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanswer\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tdetermine\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n6\twhether\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tApplied\t_\tVERB\tNNP\t_\t8\tnsubj\t_\t_\n8\tcontinues\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\treach\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tambitious\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tgoals\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tset\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSim\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tButler\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tWis.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tmanufacturer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tpublic\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t15.75\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tSim\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tgoal\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n23\tthen\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t29\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n28\tper-share\t_\tADJ\tJJ\t_\t26\tdep\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n30\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\t1992\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tStrong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tearnings\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\thelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tachieve\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n6\tthat\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfar\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tahead\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tschedule\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n15\t1988\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tsince\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n5\tsoftened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ttrading\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n8\taround\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n10\t25\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tweek\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n16\tclosing\t_\tVERB\tNN\t_\t7\tconj\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t23.00\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tnational\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tover-the-counter\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSim\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfresh\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttarget\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t50\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t16\tdep\t_\t_\n\n1\tReaching\t_\tVERB\tVBG\t_\t17\tcsubj\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgoal\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t17\tparataxis\t_\t_\n6\tRobert\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tT.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tFoote\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tApplied\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tofficer\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n19\tefficient\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\treinvestment\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tcash\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tApplied\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n27\tcontinuation\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n30\thealthy\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\t19\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\t%\t_\tSYM\tNN\t_\t33\tamod\t_\t_\n33\trate\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\treturn\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\toperating\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tcapital\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tBarry\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWright\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSim\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tsituation\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tvery\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tsimilar\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tone\t_\tNUM\tNN\t_\t12\tnmod\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tfaced\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tjoined\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n22\tApplied\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n23\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tchief\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\toperating\t_\tVERB\tVBG\t_\t28\tamod\t_\t_\n28\tofficer\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n29\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\t1985\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tApplied\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthen\t_\tADV\tRB\t_\t7\tdep\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tclosely\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\theld\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tstagnating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tunder\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tcontrolling\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n17\tfamily\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tprofitable\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tgrowing\t_\tVERB\tVBG\t_\t22\tdep\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tproviding\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsatisfactory\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\treturn\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tinvested\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n18\tcapital\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n21\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSim\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tconfident\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdrive\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tdominate\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tcertain\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tniche\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\twork\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tBarry\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tWright\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tApplied\t_\tPROPN\tNNP\t_\t14\tadvcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tprofesses\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\tevangelical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tfervor\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tdevelop\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcorporate\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tculture\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\trewards\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n16\tmanagers\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n18\tproduce\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\twhere\t_\tADV\tWRB\t_\t23\tadvmod\t_\t_\n21\tdecision-making\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t23\tauxpass\t_\t_\n23\tshared\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSim\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tconsiders\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\toperations\t_\tNOUN\tNNS\t_\t11\tdep\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n10\tfundamentally\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsound\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tadds\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tBarry\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tWright\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n19\tbeen\t_\tVERB\tVBN\t_\t21\tcop\t_\t_\n20\tfairly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tsuccessful\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n22\tin\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tmoving\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tmarkets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n27\thave\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n28\tn't\t_\tPART\tRB\t_\t29\tneg\t_\t_\n29\tinterested\t_\tVERB\tJJ\t_\t25\tacl:relcl\t_\t_\n30\tlarger\t_\tADJ\tJJR\t_\t31\tamod\t_\t_\n31\tcompetitors\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tlittle\t_\tADJ\tJJ\t_\t5\tnmod:npmod\t_\t_\n5\tpatience\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthese\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbusinesses\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tperform\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n11\tvery\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tsatisfactorily\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSim\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tabout\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsix\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n7\tthings\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\tmoving\t_\tVERB\tVBG\t_\t18\tdep\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tright\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdirection\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSim\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfigures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n7\teasier\t_\tADJ\tJJR\t_\t3\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tturn\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tBarry\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tWright\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n12\taround\t_\tADP\tIN\t_\t9\tcompound:prt\t_\t_\n13\tsince\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n14\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n15\t's\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n16\tnow\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tdriver\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tseat\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\the\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tApplied\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n8\tI\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n9\tdid\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\thave\t_\tVERB\tVB\t_\t23\tdep\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpower\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\texecute\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tI\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tdo\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n19\ttoday\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\texecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tofficer\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tApplied\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1986\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n12\tbecame\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n13\tchairman\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n14\tlast\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tNovember\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tApplied\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSim\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tset\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tgrowth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tfirst\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tobjective\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tpublic\t_\tNOUN\tNN\t_\t2\txcomp\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\toffering\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\tnetted\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tApplied\t_\tPROPN\tNNP\t_\t10\tiobj\t_\t_\n12\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n14\t12.6\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\thelped\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n19\tlaunch\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tacquisition\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tprogram\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\testimated\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t245\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfiscal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\t1989\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tended\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n14\tAug.\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t31\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n19\t99.9\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tfiscal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\t1985\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n5\tearnings\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tmarched\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n10\tsteadily\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tupward\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\trecent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\treached\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n19\t20.8\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n24\t1.58\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t24\tnmod:npmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tfiscal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n32\tjust\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tended\t_\tVERB\tVBD\t_\t31\tacl\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n35\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t$\t_\tSYM\t$\t_\t35\tnmod\t_\t_\n38\t15.2\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\tmillion\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n40\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tfiscal\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\t1988\t_\tNUM\tCD\t_\t37\tnmod\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n44\t$\t_\tSYM\t$\t_\t37\tconj\t_\t_\n45\t3.9\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n46\tmillion\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n47\tin\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\t1985\t_\tNUM\tCD\t_\t44\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n"
  },
  {
    "path": "a3/data/dev.gold.conll",
    "content": "1\tInfluential\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmembers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tWays\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tMeans\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCommittee\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n10\tintroduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tlegislation\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\trestrict\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n15\thow\t_\tADV\tWRB\t_\t22\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\tsavings-and-loan\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\tbailout\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tagency\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\tcan\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\traise\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n23\tcapital\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tcreating\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n26\tanother\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tpotential\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tobstacle\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tgovernment\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tsale\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tsick\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tthrifts\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhose\t_\tPRON\tWP$\t_\t5\tnmod:poss\t_\t_\n5\tbackers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tinclude\t_\tVERB\tVBP\t_\t2\tacl:relcl\t_\t_\n7\tChairman\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tDan\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tRostenkowski\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n11\tD.\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tIll.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tprevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tResolution\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tTrust\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n22\tfrom\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\traising\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n24\ttemporary\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tworking\t_\tVERB\tVBG\t_\t26\tamod\t_\t_\n26\tcapital\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tby\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n28\thaving\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n29\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tRTC-owned\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tbank\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tthrift\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n34\tissue\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tdebt\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n36\tthat\t_\tPRON\tWDT\t_\t40\tnsubjpass\t_\t_\n37\twould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n38\tn't\t_\tPART\tRB\t_\t40\tneg\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tcounted\t_\tVERB\tVBN\t_\t31\tacl:relcl\t_\t_\n41\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tfederal\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tbudget\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tintends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trestrict\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tRTC\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tTreasury\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tborrowings\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tonly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tunless\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tagency\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\treceives\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n17\tspecific\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcongressional\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tauthorization\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tSuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n4\t`\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n5\tself-help\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\t'\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\tborrowing\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tunauthorized\t_\tADJ\tJJ\t_\t22\tccomp\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\texpensive\t_\tADJ\tJJ\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tfar\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\texpensive\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n16\tthan\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tdirect\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tTreasury\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tborrowing\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tRep.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tFortney\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tStark\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tD.\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tCalif.\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tbill\t_\tNOUN\tNN\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tchief\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tsponsor\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tcomplex\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tfinancing\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tplan\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tS&L\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tbailout\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tlaw\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\traising\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t30\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tdebt\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tissued\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tnewly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tcreated\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n22\tRTC\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfinancing\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tsystem\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tcreated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlaw\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tin\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\torder\t_\tNOUN\tNN\t_\t10\tmwe\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tkeep\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tbailout\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tspending\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tswelling\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tbudget\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdeficit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tadvmod\t_\t_\n2\t$\t_\tSYM\t$\t_\t7\tnsubjpass\t_\t_\n3\t20\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tbillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tthrough\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tTreasury\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tpay\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n14\tlower\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n15\tinterest\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trates\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tRTC\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\tworking\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tcapital\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tmaintain\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbad\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tassets\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tthrifts\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubjpass\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n19\tsold\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tuntil\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tassets\t_\tNOUN\tNNS\t_\t26\tnsubjpass\t_\t_\n24\tcan\t_\tAUX\tMD\t_\t26\taux\t_\t_\n25\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n26\tsold\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n27\tseparately\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdebt\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tpaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\toff\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\tauxpass\t_\t_\n11\tsold\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tleaving\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\ttotal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tspending\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tbailout\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n22\t50\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tbillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n26\t$\t_\tSYM\t$\t_\t21\tconj\t_\t_\n27\t166\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tbillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tincluding\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n30\tinterest\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tover\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\t10\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tproblem\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tclearly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thas\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tresolved\t_\tVERB\tVBN\t_\t8\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tDavid\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCooke\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\texecutive\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdirector\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tRTC\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tspent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\troughly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n8\t19\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tselling\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n11\t34\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tinsolvent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tS&Ls\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n18\tlikely\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tsell\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tmerge\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n23\t600\t_\tNUM\tCD\t_\t20\tdobj\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttime\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tbailout\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n29\tconcludes\t_\tVERB\tVBZ\t_\t26\tacl:relcl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAbsent\t_\tVERB\tVB\t_\t13\tdep\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tworking\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcapital\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t13\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tRTC\t_\tPROPN\tNNP\t_\t13\tnsubjpass\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tforced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tdelay\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tthrift\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tresolutions\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tuntil\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tcash\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n21\tcould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\traised\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n24\tby\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\tselling\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tbad\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tassets\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thave\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\twait\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tuntil\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tcollected\t_\tVERB\tVBN\t_\t6\tadvcl\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthose\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tassets\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tbefore\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\twe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tmove\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n18\tforward\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n21\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomplicated\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n3\tlanguage\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\thuge\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tlaw\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tmuddied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tfight\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlaw\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tallow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tborrow\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tup\t_\tADP\tIN\t_\t14\tdep\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n15\t5\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttime\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\ttotal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tobligations\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n10\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\texceed\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t50\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n18\tthat\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfigure\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n21\tderived\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tincluding\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tnotes\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdebt\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n30\tsubtracting\t_\tVERB\tVBG\t_\t23\tconj\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t30\tnmod\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tmarket\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tvalue\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tassets\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tRTC\t_\tPROPN\tNNP\t_\t41\tnsubj\t_\t_\n41\tholds\t_\tVERB\tVBZ\t_\t38\tacl:relcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tCongress\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tanticipate\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tintend\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n9\tpublic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdebt\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\topponents\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tRTC\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tworking-capital\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tplan\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n22\tRep.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tCharles\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tSchumer\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n25\t-LRB-\t_\tPUNCT\t-LRB-\t_\t26\tpunct\t_\t_\n26\tD.\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tN.Y\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t26\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t12\tconj\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tRTC\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tOversight\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tBoard\t_\tPROPN\tNNP\t_\t38\tnsubj\t_\t_\n36\thas\t_\tAUX\tVBZ\t_\t38\taux\t_\t_\n37\tbeen\t_\tVERB\tVBN\t_\t38\tcop\t_\t_\n38\tremiss\t_\tADJ\tJJ\t_\t31\tccomp\t_\t_\n39\tin\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n40\tnot\t_\tPART\tRB\t_\t41\tneg\t_\t_\n41\tkeeping\t_\tVERB\tVBG\t_\t38\tadvcl\t_\t_\n42\tCongress\t_\tPROPN\tNNP\t_\t43\tnsubj\t_\t_\n43\tinformed\t_\tVERB\tVBN\t_\t41\txcomp\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tThat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsecrecy\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tleads\t_\tVERB\tVBZ\t_\t26\tccomp\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tproposal\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tlike\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tone\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tWays\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tMeans\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tseems\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tme\t_\tPRON\tPRP\t_\t17\tnmod\t_\t_\n20\tsort\t_\tNOUN\tNN\t_\t22\tadvmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n22\tdraconian\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n25\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tRTC\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\thave\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tpay\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprice\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tprior\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tconsultation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tHill\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tif\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n19\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\twant\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n21\tthat\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tkind\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tflexibility\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tWays\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tMeans\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tCommittee\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\thold\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thearing\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tbill\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tnext\t_\tADP\tIN\t_\t14\tamod\t_\t_\n14\tTuesday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t're\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tabout\t_\tADP\tIN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tsee\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tadvertising\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tworks\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHard\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n2\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\theels\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\t190-point\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tstock-market\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplunge\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tuncertainty\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n15\t's\t_\tAUX\tVBZ\t_\t16\tauxpass\t_\t_\n16\tfollowed\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tbig\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tbrokerage\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tfirms\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\trolling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n25\tout\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\tnew\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tads\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\ttrumpeting\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tfamiliar\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tmessage\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\t:\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n33\tKeep\t_\tVERB\tVB\t_\t31\tdep\t_\t_\n34\ton\t_\tADP\tRP\t_\t33\tcompound:prt\t_\t_\n35\tinvesting\t_\tVERB\tVBG\t_\t33\txcomp\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tmarket\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n39\t's\t_\tVERB\tVBZ\t_\t41\tcop\t_\t_\n40\tjust\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\tfine\t_\tADJ\tJJ\t_\t33\tparataxis\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tTheir\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tmission\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tkeep\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tclients\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tfrom\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tfleeing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tindividual\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tdid\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tdroves\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tafter\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcrash\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tOctober\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tdays\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n3\tafter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcrash\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tbrokerage\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfirms\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\trushed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tout\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tads\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcalm\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\taround\t_\tADP\tRP\t_\t2\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\t're\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tmoving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\teven\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tfaster\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tPaineWebber\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfilmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttelevision\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcommercial\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\t4\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tp.m.\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tEDT\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n12\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tair\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tnight\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInvestments\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tads\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnewspapers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\twrote\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n12\tanother\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tad\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tappearing\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\ttoday\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShearson\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tLehman\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tHutton\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tafternoon\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\talready\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\twritten\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tTV\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tads\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tconsidered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\trunning\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n4\tthem\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\tduring\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\ttomorrow\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnight\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tWorld\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tSeries\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tbroadcast\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n13\tdecided\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n14\tnot\t_\tADV\tRB\t_\t15\tneg\t_\t_\n15\tto\t_\tPART\tTO\t_\t13\txcomp\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\trecovered\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tincluding\t_\tVERB\tVBG\t_\t7\tcase\t_\t_\n6\tMerrill\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLynch\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tplotting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tout\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tpotential\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tad\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tstrategies\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tlearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlesson\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlast\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n10\taround\t_\tADP\tRP\t_\t9\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n13\tfrightened\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tflooded\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tphone\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlines\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\tfled\t_\tVERB\tVBD\t_\t15\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tpanic\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tready\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\texample\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tprepared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tads\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tseveral\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n10\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcase\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplunge\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twent\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n5\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tfree\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tfall\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tafternoon\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tinvestment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tfirm\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tfull\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tpages\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tMonday\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\teditions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\thalf\t_\tDET\tPDT\t_\t25\tadvmod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tadvmod\t_\t_\n25\tdozen\t_\tNOUN\tNN\t_\t26\tnummod\t_\t_\n26\tnewspapers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tads\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\ttouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFidelity\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tautomated\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n7\t800-number\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tbeneath\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\thuge\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\theadline\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n14\tFidelity\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\tIs\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tReady\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n17\tFor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tYour\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tCall\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFidelity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\t800-line\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n9\talready\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\toperating\t_\tVERB\tVBG\t_\t6\tacl:relcl\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t18\tnmod\t_\t_\n14\tmany\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tclients\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\tdid\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tknow\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n19\tabout\t_\tADP\tIN\t_\t13\tcase\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\treceived\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n22\tabout\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tdouble\t_\tADV\tRB\t_\t26\tnummod\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tusual\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tvolume\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tcalls\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tover\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tweekend\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlot\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tinvestor\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconfidence\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tcomes\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfact\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tspeak\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tus\t_\tPRON\tPRP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n19\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tTo\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\tmaintain\t_\tVERB\tVB\t_\t8\tcsubj\t_\t_\n4\tthat\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdialogue\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tabsolutely\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcrucial\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n3\thave\t_\tAUX\tVB\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\ttoo\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tlate\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tthink\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n9\tabout\t_\tADP\tIN\t_\t8\tnmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tthink\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tabout\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t4\tnmod\t_\t_\n7\tahead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tToday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tFidelity\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tad\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tgoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstep\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfurther\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tencouraging\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tstay\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\teven\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tplunge\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n21\tin\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tFidelity\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnderneath\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\theadline\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n5\tDiversification\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tcounsels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n12\tBased\t_\tVERB\tVBN\t_\t15\tcase\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tevents\t_\tNOUN\tNNS\t_\t23\tadvcl\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tpast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tweek\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n21\tall\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tinvestors\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tneed\t_\tVERB\tVBP\t_\t9\tccomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tknow\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tportfolios\t_\tNOUN\tNNS\t_\t29\tnsubjpass\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\tauxpass\t_\t_\n29\tbalanced\t_\tVERB\tVBN\t_\t25\tccomp\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\thelp\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tprotect\t_\tVERB\tVB\t_\t31\tccomp\t_\t_\n33\tthem\t_\tPRON\tPRP\t_\t32\tdobj\t_\t_\n34\tagainst\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tvolatility\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tgoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ton\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tplug\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tdiversified\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tFidelity\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tfunds\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n11\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tname\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tPaineWebber\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tgear\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tquickly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\tthanks\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\taftermath\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tdebacle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbrokerage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttaping\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n14\tcommercials\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tin-house\t_\tADJ\tJJ\t_\t13\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tultimately\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tgetting\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\ttiming\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tdown\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n22\tfast\t_\tADJ\tJJ\t_\t23\tadvmod\t_\t_\n23\tenough\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\ttape\t_\tVERB\tVB\t_\t23\tdep\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tcommercial\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tafter\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\tclosed\t_\tVERB\tVBN\t_\t25\tadvcl\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n33\trush\t_\tVERB\tVB\t_\t25\tconj\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t33\tdobj\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tair\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\tthat\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tnight\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tnegotiated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tarrangement\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tCable\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tNews\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tNetwork\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tunder\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tnmod\t_\t_\n12\tCNN\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tagree\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tair\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tlast-minute\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcreations\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tPaineWebber\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tcommercial\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tcreated\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tad\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tagency\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tSaatchi\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tSaatchi\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tMary\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tFarrell\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tone\t_\tNUM\tCD\t_\t17\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n22\tfirm\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n23\t's\t_\tVERB\tVBZ\t_\t22\tcase\t_\t_\n24\tmost\t_\tADV\tRBS\t_\t25\tadvmod\t_\t_\n25\tvisible\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tinvestment\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tstrategists\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n29\tsounding\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n30\tparticularly\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tbullish\t_\tADJ\tJJ\t_\t29\txcomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tTaped\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n2\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tclosed\t_\tVERB\tVBD\t_\t1\tadvcl\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tMs.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tFarrell\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tadvising\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n16\tWe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tview\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\there\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tgoing\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n23\tthrough\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\trelatively\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tnormal\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcycle\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t...\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcontinue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tfeel\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tstill\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tplace\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tlong-term\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tappreciation\t_\tNOUN\tNN\t_\t12\tacl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspot\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tappear\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\ttimes\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tCNN\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tnight\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPaineWebber\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tconsidered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tharder\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n6\tsell\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\trecommending\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n9\tspecific\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tRP\t_\t7\tdep\t_\t_\n6\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\turging\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tclients\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tlifeline\t_\tNOUN\tNN\t_\t9\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tkeep\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n16\tthat\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmoney\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tsaying\t_\tVERB\tVBG\t_\t32\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tworst\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tthing\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n8\tthat\t_\tADP\tIN\t_\t11\tdobj\t_\t_\n9\tanyone\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tdo\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsee\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tgo\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n18\tdown\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tdump\t_\tVERB\tVB\t_\t17\tconj\t_\t_\n21\teverything\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n24\tjust\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tdrives\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n28\tdown\t_\tADP\tIN\t_\t25\tadvmod\t_\t_\n29\tfurther\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n32\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n33\tJohn\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tLampe\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tPaineWebber\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tdirector\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tadvertising\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\towned\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\tliked\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttrue\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tvalue\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tchanged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n5\tThis\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t2\tccomp\t_\t_\n9\trevisited\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfluctuating\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tthen\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tclosing\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n8\tup\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t88\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n13\tyesterday\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tinvestment\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\tconstantly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\trevise\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tapproach\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tShearson\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLehman\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tcreated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tpotential\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcommercials\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tnight\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthroughout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tweekend\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\tthen\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thad\t_\tVERB\tVBD\t_\t6\tdep\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tregroup\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tyesterday\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tafternoon\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tmake\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tone\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n9\tShearson\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\teasy-to-film\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\tblack-and-white\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n15\tWhere\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n16\tWe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tStand\t_\tVERB\tVBP\t_\t19\tccomp\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tcommercials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n22\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n23\tbeen\t_\tAUX\tVBN\t_\t24\taux\t_\t_\n24\trunning\t_\tVERB\tVBG\t_\t19\tacl:relcl\t_\t_\n25\toccasionally\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tresponse\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tnews\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tevents\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\tsince\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\t1985\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tad\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\thave\t_\tAUX\tVB\t_\t5\taux\t_\t_\n5\trun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tduring\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tWorld\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSeries\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\ttomorrow\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\treplacing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdebut\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcommercial\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tShearson\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tad\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcampaign\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n24\tLeadership\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n25\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tExample\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmeeting\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n5\tafter\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tclosed\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n9\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tShearson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\texecutives\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tdecided\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tgo\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\tahead\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tstock-market\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tad\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpoint\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tanything\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tneeds\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t10\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tstraightening\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n7\tout\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t're\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\ttaking\t_\tVERB\tVBG\t_\t3\tparataxis\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\twait-and-see\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tattitude\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tCathleen\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tB.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tStewart\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\texecutive\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tvice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tmarketing\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbrokerage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tclearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmoving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tfaster\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcreate\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tads\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tthan\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tdid\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfall\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1987\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tseen\t_\tVERB\tVBN\t_\t3\txcomp\t_\t_\n7\twhether\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tads\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\tany\t_\tDET\tDT\t_\t13\tdep\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbarrage\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tads\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tmost\t_\tADJ\tJJS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tinvestment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirms\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tindividuals\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tran\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\ten\t_\tX\tFW\t_\t23\tcompound\t_\t_\n23\tmasse\t_\tX\tFW\t_\t18\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tmust\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\ttry\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\thardest\t_\tADJ\tJJS\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tprove\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n10\tthat\t_\tDET\tDT\t_\t13\tmark\t_\t_\n11\tadvertising\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\twork\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\taround\t_\tADP\tRP\t_\t15\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAd\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tNotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tARNOLD\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tADVERTISING\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tEdward\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEskandarian\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformer\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tDella\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tFemina\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMcNamee\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n11\tWCRS/Boston\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tagreement\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprinciple\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tacquire\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tmajority\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstake\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tArnold\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAdvertising\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tsmall\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tBoston\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tshop\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEskandarian\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tresigned\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n7\tDella\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tFemina\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tpost\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tbecomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tchairman\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tchief\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\texecutive\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tArnold\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tVerret\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tagency\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\texecutive\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tretain\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttitle\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tpresident\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSeparately\t_\tPROPN\tNNP\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tMcDonald\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tOak\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBrook\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tIll.\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tnamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tArnold\t_\tPROPN\tNNP\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\thandle\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n17\testimated\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n18\t$\t_\tSYM\t$\t_\t23\tamod\t_\t_\n19\t4\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tcooperative\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tad\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\taccount\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n26\tHartford\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tConn.\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tarea\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccount\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\tauxpass\t_\t_\n5\thandled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tDella\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tFemina\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMcNamee\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n11\tWCRS\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEDUCATION\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tADS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t142-page\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tad\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tsupplement\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n6\tBusiness\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tWeek\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tspecial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n11\tCorporate\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tElite\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tissue\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tcalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbusiness\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tleaders\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tuse\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tclout\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\thelp\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n25\tsolve\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tnation\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\teducation\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcrisis\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsupplement\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlargest\t_\tADJ\tJJS\t_\t2\tappos\t_\t_\n6\tever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmagazine\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tads\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\t52\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tcorporate\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tadvertisers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tkicks\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n19\toff\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\ttwo-year\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tBusiness\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tWeek\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tinitiative\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n25\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\teducation\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tdistribute\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgross\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\trevenues\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsupplement\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tgrants\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tinnovative\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tteachers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tYou\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tknow\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t8\tdobj\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlaw\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\taverages\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tdo\t_\tVERB\tVBP\t_\t2\tparataxis\t_\t_\n11\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n12\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n13\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t6\tdep\t_\t_\n4\t1\t_\tX\tLS\t_\t6\tdep\t_\t_\n5\t-RRB-\t_\tPUNCT\t-RRB-\t_\t4\tpunct\t_\t_\n6\texplains\t_\tVERB\tVBZ\t_\t2\tdep\t_\t_\n7\twhy\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n10\tlike\t_\tADJ\tJJ\t_\t14\tcase\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\twell\t_\tADV\tRB\t_\t14\tdiscourse\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tourselves\t_\tPRON\tPRP\t_\t6\tadvcl\t_\t_\n15\trather\t_\tADV\tRB\t_\t14\tcc\t_\t_\n16\tthan\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tBo\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tJackson\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n20\t2\t_\tX\tLS\t_\t22\tdep\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t20\tpunct\t_\t_\n22\tcautions\t_\tVERB\tVBZ\t_\t6\tconj\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\t's\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n26\tpossible\t_\tADJ\tJJ\t_\t22\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tdrown\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tlake\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tthat\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n33\taverages\t_\tVERB\tVBZ\t_\t31\tacl:relcl\t_\t_\n34\ttwo\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tfeet\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\tdeep\t_\tADV\tRB\t_\t35\tamod\t_\t_\n37\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n39\t3\t_\tX\tLS\t_\t41\tdep\t_\t_\n40\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n41\tpredicts\t_\tVERB\tVBZ\t_\t6\tconj\t_\t_\n42\tthat\t_\tSCONJ\tIN\t_\t50\tmark\t_\t_\n43\t10,000\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\tmonkeys\t_\tNOUN\tNNS\t_\t50\tnsubj\t_\t_\n45\tplaced\t_\tVERB\tVBN\t_\t44\tacl\t_\t_\n46\tbefore\t_\tADP\tIN\t_\t48\tcase\t_\t_\n47\t10,000\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\tpianos\t_\tNOUN\tNNS\t_\t45\tnmod\t_\t_\n49\twould\t_\tAUX\tMD\t_\t50\taux\t_\t_\n50\tproduce\t_\tVERB\tVB\t_\t41\tccomp\t_\t_\n51\t1,118\t_\tNUM\tCD\t_\t53\tnummod\t_\t_\n52\tpublishable\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n53\trock\t_\tNOUN\tNN\t_\t50\tdobj\t_\t_\n54\t'n'\t_\tCONJ\tCC\t_\t53\tcc\t_\t_\n55\troll\t_\tNOUN\tNN\t_\t56\tcompound\t_\t_\n56\ttunes\t_\tNOUN\tNNS\t_\t53\tconj\t_\t_\n57\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBaseball\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthat\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tgame\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tlong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thaul\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tquintessential\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tsport\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmean\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tmean\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tol'\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tlaw\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tcaught\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n24\tup\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tSan\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tFrancisco\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tGiants\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tWorld\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tSeries\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n34\tlast\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tweekend\t_\tNOUN\tNN\t_\t23\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tteam\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tdumped\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\truns\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbushel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tChicago\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCubs\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tNational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tLeague\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tplayoffs\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n19\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tjust\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tone\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tgames\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\thome-team\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tOakland\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tA\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\t's\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tgang\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n35\tthat\t_\tPRON\tWDT\t_\t38\tnsubjpass\t_\t_\n36\thad\t_\tAUX\tVBD\t_\t38\taux\t_\t_\n37\tbeen\t_\tAUX\tVBN\t_\t38\tauxpass\t_\t_\n38\tdone\t_\tVERB\tVBN\t_\t34\tacl:relcl\t_\t_\n39\tunto\t_\tADP\tRP\t_\t38\tadvcl\t_\t_\n40\tsimilarly\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n41\tby\t_\tADP\tIN\t_\t45\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n43\tLos\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n44\tAngeles\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tDodgers\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t45\tcc\t_\t_\n47\tOrel\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n48\tHershiser\t_\tPROPN\tNNP\t_\t45\tconj\t_\t_\n49\tin\t_\tADP\tIN\t_\t53\tcase\t_\t_\n50\tlast\t_\tADJ\tJJ\t_\t51\tamod\t_\t_\n51\tyear\t_\tNOUN\tNN\t_\t53\tnmod:poss\t_\t_\n52\t's\t_\tPART\tPOS\t_\t51\tcase\t_\t_\n53\ttournament\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMorever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tmuch\t_\tADJ\tJJ\t_\t8\tnsubjpass\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdamage\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\taccomplished\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tA\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\t's\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\thad\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n14\tsome\t_\tDET\tDT\t_\t13\tdobj\t_\t_\n15\tcatching\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n16\tup\t_\tADP\tRP\t_\t14\tdep\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdo\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tgame\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n5\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tcool\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tSunday\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tevening\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tland\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tperpetual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tautumn\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tlot\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t18\tnmod\t_\t_\n21\tcatching\t_\tVERB\tVBG\t_\t20\tamod\t_\t_\n22\tup\t_\tADP\tRP\t_\t20\tdep\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tdone\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n25\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tA\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\t's\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tcatcher\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tTerry\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tSteinbach\t_\tPROPN\tNNP\t_\t29\tappos\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\t2-0\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tpitch\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tRick\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tReuschel\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tinto\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tleft-field\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstands\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tinning\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\tfour\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tstretch\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n18\this\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tteam\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tlead\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t2-1\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tdecisive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\t5-1\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\twhere\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tstayed\t_\tVERB\tVBD\t_\t27\tacl:relcl\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t0\troot\t_\t_\n2\twhat\t_\tPRON\tWP\t_\t1\tdep\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tSteinbach\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tstruck\t_\tVERB\tVBN\t_\t1\tdep\t_\t_\n7\tjust\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tseven\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\thome\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\truns\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t130\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\tregular-season\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgames\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tbatted\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tseventh\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tposition\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tA\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\t's\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tlineup\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tget\t_\tVERB\tVBP\t_\t16\tadvcl\t_\t_\n5\tyour\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tpitch\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\ttake\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgood\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tswing\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tanything\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tcan\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\thappen\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n19\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\tlater\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n21\tremarked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tSaturday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tnight\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\tquite\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t15\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tboys\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tgreen\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tgold\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\tsalted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\taway\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tsuccesses\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tsalve\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpain\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n23\tpast\t_\tADJ\tJJ\t_\t29\tdep\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tno\t_\tDET\tDT\t_\t27\tneg\t_\t_\n27\tdoubt\t_\tNOUN\tNN\t_\t29\tdep\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tfuture\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tdroughts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMark\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMcGwire\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tred-haired\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tOakland\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbaseman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\thits\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tfour\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tat\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tbats\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t12\tdobj\t_\t_\n22\tthan\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\t'd\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\thad\t_\tVERB\tVBN\t_\t21\tadvcl\t_\t_\n26\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tfive-game\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tDodger\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tseries\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\twhich\t_\tPRON\tWDT\t_\t35\tnmod\t_\t_\n33\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\t'd\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tgone\t_\tVERB\tVBN\t_\t30\tacl:relcl\t_\t_\n36\t1-for-17\t_\tNOUN\tNN\t_\t35\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tA-men\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n3\tbatting\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n4\tNos.\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\t6\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n6\tthrough\t_\tADP\tIN\t_\t4\tamod\t_\t_\n7\t9\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\ta.k.a.\t_\tADJ\tJJ\t_\t12\tdep\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\tbottom\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\torder\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n18\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tseven\t_\tNUM\tCD\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tteam\t_\tNOUN\tNN\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\t11\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\thits\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tscored\t_\tVERB\tVBD\t_\t18\tconj\t_\t_\n28\tfour\t_\tNUM\tCD\t_\t27\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n31\truns\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\t5-0\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tdecision\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tRight-hander\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tDave\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStewart\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tGiants\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tfive\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\thits\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\taccount\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tzero\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tside\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tSaturday\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tledger\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tA\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\t's\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\twinningest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tpitcher\t_\tNOUN\tNN\t_\t28\tcsubj\t_\t_\n9\tduring\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n11\tAmerican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tLeague\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tcampaign\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t21-9\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tmark\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tplus\t_\tADP\tIN\t_\t17\tamod\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\twins\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n22\tover\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tToronto\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tplayoffs\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tindicates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tmay\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\thave\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n32\tsome\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tevening\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\tup\t_\tADP\tRP\t_\t33\tdep\t_\t_\n35\tcoming\t_\tVERB\tVBG\t_\t33\tacl\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n37\tbut\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n38\twith\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tway\t_\tNOUN\tNN\t_\t50\tnmod\t_\t_\n41\this\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n42\tsplit-fingered\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tfastball\t_\tNOUN\tNN\t_\t45\tnsubj\t_\t_\n44\tis\t_\tAUX\tVBZ\t_\t45\taux\t_\t_\n45\tbehaving\t_\tVERB\tVBG\t_\t40\tacl:relcl\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t50\tpunct\t_\t_\n47\tthat\t_\tADP\tIN\t_\t50\tnsubj\t_\t_\n48\tmight\t_\tAUX\tMD\t_\t50\taux\t_\t_\n49\tnot\t_\tPART\tRB\t_\t50\tneg\t_\t_\n50\tbe\t_\tVERB\tVB\t_\t28\tconj\t_\t_\n51\tthis\t_\tDET\tDT\t_\t52\tdet\t_\t_\n52\tweek\t_\tNOUN\tNN\t_\t50\tnmod:tmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsame\t_\tADJ\tJJ\t_\t3\tnsubj\t_\t_\n3\tgoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tMike\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMoore\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tanother\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tveteran\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n11\tovercame\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n12\tearly\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tstruggles\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tpermit\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tGiants\t_\tPROPN\tNNP\t_\t15\tiobj\t_\t_\n18\tbut\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\trun\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tfour\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\thits\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tseven\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tinnings\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tSunday\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcontest\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tEvery\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tguy\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tput\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n6\tout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tthere\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t18\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbetter\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tsplit-finger\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tguy\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tbefore\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tmarveled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tGiant\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tmanager\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tRoger\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCraig\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tex-hurler\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n6\t's\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n7\tone\t_\tNUM\tCD\t_\t4\tacl:relcl\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tleading\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tgurus\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfashionable\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdelivery\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tlooks\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n19\tlike\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfastball\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tuntil\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tdives\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n25\tbeneath\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tlunging\t_\tVERB\tVBG\t_\t28\tamod\t_\t_\n28\tbat\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tupshot\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdownshoot\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tA\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\t's\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tgo\t_\tVERB\tVBP\t_\t6\tccomp\t_\t_\n12\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFrancisco\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tCandlestick\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPark\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n18\ttonight\t_\tADV\tRB\t_\t11\tnmod:tmod\t_\t_\n19\tup\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tgames\t_\tNOUN\tNNS\t_\t11\tadvmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tnone\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tbest-of-seven\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tfest\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstat\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\treckon\t_\tVERB\tVB\t_\t2\tacl\t_\t_\n5\twith\t_\tADP\tRP\t_\t4\tadvcl\t_\t_\n6\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n9\tabout\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n12\tfour\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tclubs\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n15\t29\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t39\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n20\ttook\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n21\t2-0\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tSeries\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tleads\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n24\twent\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n25\ton\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\twin\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tall\t_\tDET\tDT\t_\t28\tdet\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsoothe\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tGiant\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\trooters\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tmight\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\thome\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfans\t_\tNOUN\tNNS\t_\t40\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tSeries\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tSubway\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\tCalled\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tBART\t_\tPROPN\tNNP\t_\t14\txcomp\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n17\tthat\t_\tPRON\tDT\t_\t21\tnsubj\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tbetter\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tname\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpublic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tconveyance\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n28\tDesire\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n31\tdo\t_\tAUX\tVBP\t_\t34\taux\t_\t_\n32\tn't\t_\tPART\tRB\t_\t34\tneg\t_\t_\n33\tyou\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n34\tthink\t_\tVERB\tVBP\t_\t21\tparataxis\t_\t_\n35\t?\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n36\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n37\twould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n38\thave\t_\tAUX\tVB\t_\t40\taux\t_\t_\n39\tbeen\t_\tVERB\tVBN\t_\t40\tcop\t_\t_\n40\tecstatic\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n41\tover\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tproceedings\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n45\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n46\tthey\t_\tPRON\tPRP\t_\t47\tnsubj\t_\t_\n47\tobserve\t_\tVERB\tVBP\t_\t3\tconj\t_\t_\n48\tthem\t_\tPRON\tPRP\t_\t47\tdobj\t_\t_\n49\tin\t_\tADP\tIN\t_\t51\tcase\t_\t_\n50\trelative\t_\tADJ\tJJ\t_\t51\tamod\t_\t_\n51\tcalm\t_\tNOUN\tNN\t_\t47\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPartisans\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttwo\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tcombatants\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\tsat\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tside\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tside\t_\tNOUN\tNN\t_\t6\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t49,000-plus\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tseats\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tOakland\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tColiseum\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n19\twhile\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tcheered\t_\tVERB\tVBD\t_\t30\tadvcl\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tfavorites\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n25\tbooed\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\topposition\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\thostilities\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\tadvanced\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n31\tno\t_\tDET\tDT\t_\t32\tneg\t_\t_\n32\tfurther\t_\tADV\tRBR\t_\t30\tadvmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n34\tat\t_\tADP\tIN\t_\t30\tadvmod\t_\t_\n35\tleast\t_\tADJ\tJJS\t_\t34\tmwe\t_\t_\n36\tas\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n37\tfar\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n38\tas\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tI\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\tcould\t_\tAUX\tMD\t_\t41\taux\t_\t_\n41\tsee\t_\tVERB\tVB\t_\t34\tadvcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfolks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\twearing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n8\tcaps\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tbearing\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcolors\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\temblems\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tboth\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tteams\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t'm\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tGiants\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tlost\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tlove\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\t'em\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\tboth\t_\tDET\tDT\t_\t3\tdet\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t'm\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\trooting\t_\tVERB\tVBG\t_\t3\tacl:relcl\t_\t_\n7\tfor\t_\tADP\tIN\t_\t6\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tSeries\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tgo\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n14\tseven\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tgames\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tDavid\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tWilliams\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tSacramento\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tseptuagenarian\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tColiseum\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tSunday\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tgo\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tabove\t_\tADJ\tJJ\t_\t3\tnsubj\t_\t_\n3\trepresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttriumph\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\teither\t_\tDET\tDT\t_\t8\tcc:preconj\t_\t_\n8\tapathy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcivility\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tchoose\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tbelieve\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlatter\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\talthough\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\tprobably\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsprings\t_\tVERB\tVBZ\t_\t2\tadvcl\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tfact\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n18\tjust\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\teveryone\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n21\tout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\there\t_\tADV\tRB\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tincluding\t_\tVERB\tVBG\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tA\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\t's\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tGiants\t_\tPROPN\tNNP\t_\t27\tconj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n31\tis\t_\tVERB\tVBZ\t_\t35\tcop\t_\t_\n32\toriginally\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tsomewhere\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\telse\t_\tADV\tRB\t_\t16\tccomp\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSuffice\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t1\tdobj\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tsay\t_\tVERB\tVB\t_\t1\tadvcl\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n7\tthis\t_\tPRON\tDT\t_\t13\tnsubj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tYankees-Mets\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tseries\t_\tNOUN\tNN\t_\t34\tadvcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tone\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n17\tbetween\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tChicago\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCubs\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tWhite\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tSox\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t29\tpunct\t_\t_\n25\they\t_\tINTJ\tUH\t_\t29\tdiscourse\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n28\t's\t_\tVERB\tVBZ\t_\t29\tcop\t_\t_\n29\tpossible\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t29\tpunct\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n32\tyou\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n33\t'd\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\tneed\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n35\tuniformed\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tpolice\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n37\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tevery\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tother\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tseat\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n41\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n42\tseparate\t_\tVERB\tVB\t_\t34\tadvcl\t_\t_\n43\topposing\t_\tVERB\tVBG\t_\t44\tamod\t_\t_\n44\tfans\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n47\tonly\t_\tADV\tRB\t_\t49\tadvmod\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tsuicidal\t_\tADJ\tJJ\t_\t51\tnsubj\t_\t_\n50\twould\t_\tAUX\tMD\t_\t51\taux\t_\t_\n51\tbifurcate\t_\tVERB\tVB\t_\t34\tconj\t_\t_\n52\ttheir\t_\tPRON\tPRP$\t_\t53\tnmod:poss\t_\t_\n53\tbonnets\t_\tNOUN\tNNS\t_\t51\tdobj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAnyway\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tA\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\t's\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t6\tiobj\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tlot\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\theroes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\troot\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tfor\t_\tADP\tRP\t_\t13\tadvcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\topening\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tgame\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tbesides\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSteinbach\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tStewart\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tthere\t_\tPRON\tEX\t_\t12\texpl\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tWalt\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tWeiss\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\ttwiggy-looking\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\tsecond-year\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tshortstop\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n21\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n22\thad\t_\tAUX\tVBD\t_\t23\taux\t_\t_\n23\tlost\t_\tVERB\tVBN\t_\t20\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tcouple\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmonths\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tseason\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n31\tknee\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsurgery\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\tflawless\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tafield\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tditto\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tgame\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tmoved\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\trunner\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\talong\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n18\tA\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n19\t's\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tthree-run\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tsecond\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tinning\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n25\thomered\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\tteam\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tfinal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\ttally\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tdep\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\treputation\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n5\tamong\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tEast\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tBay\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBashers\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\thit\t_\tVERB\tVBD\t_\t27\tadvcl\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n15\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tcareer\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\thome\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\trun\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tseason\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tfan\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n24\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n25\tcaught\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t25\tdobj\t_\t_\n27\tagreed\t_\tVERB\tVBD\t_\t2\tdep\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tturn\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tball\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tover\t_\tADP\tRP\t_\t29\tcompound:prt\t_\t_\n33\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n34\thim\t_\tPRON\tPRP\t_\t29\tnmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\treturn\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n37\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tan\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tautograph\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tautograph\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tpower-hitter\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tMcGwire\t_\tNOUN\tNN\t_\t3\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tA\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\t's\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tco-hero\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsecond\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgame\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tRickey\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tHenderson\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n14\texemplifies\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\thot\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tside\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\thot-cold\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tequation\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsmoked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tToronto\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplayoffs\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tsix\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\thits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tseven\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\twalks\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\teight\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tstolen\t_\tVERB\tVBN\t_\t16\tamod\t_\t_\n16\tbases\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t22\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tamod\t_\t_\n20\tbats\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n23\tcontinued\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n24\tthat\t_\tPRON\tDT\t_\t23\tdobj\t_\t_\n25\tby\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tgoing\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n27\t3-for-3\t_\tADJ\tJJ\t_\t26\tadvmod\t_\t_\n28\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tplate\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tSunday\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n33\talong\t_\tADP\tIN\t_\t26\tcc\t_\t_\n34\twith\t_\tADP\tIN\t_\t33\tdep\t_\t_\n35\twalking\t_\tVERB\tVBG\t_\t26\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tstealing\t_\tVERB\tVBG\t_\t35\tconj\t_\t_\n38\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tbase\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n41\tscoring\t_\tVERB\tVBG\t_\t35\tconj\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\trun\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tgroove\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsee\t_\tVERB\tVBP\t_\t17\tccomp\t_\t_\n11\tevery\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tball\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\ttremendously\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tlectured\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcold\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tguys\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tset\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tWill\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tClark\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tKevin\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMitchell\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tMatt\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tWilliams\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tGiants\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\t3-4-5\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\thitters\t_\tNOUN\tNNS\t_\t9\tappos\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcombined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\t25\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\thits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tsix\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\thome\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\truns\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\t24\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\truns\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n13\tbatted\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tin\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfive\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tgames\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n19\tagainst\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tCubs\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tcollective\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\t5-for-24\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n6\there\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tzero\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\thomers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tribbies\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t5\tdep\t_\t_\n3\tthat\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tset\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnumbers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tas\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmuch\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n11\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tanything\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\telse\t_\tADV\tRB\t_\t12\tamod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\tgives\t_\tVERB\tVBZ\t_\t5\tdep\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tGiants\t_\tPROPN\tNNP\t_\t16\tiobj\t_\t_\n19\thope\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tSeries\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tgames\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tcome\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tbelieve\t_\tVERB\tVBP\t_\t11\tccomp\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlaw\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\taverages\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tdeclared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tSan\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n13\tFrancisco\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\tbatting\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tcoach\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tDusty\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tBaker\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n18\tafter\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tgame\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\trather\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tsee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tso-so\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thitter\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\thot\t_\tADJ\tJJ\t_\t8\tacl:relcl\t_\t_\n12\tcome\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tside\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tthan\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\thitter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n22\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\t's\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tcold\t_\tADJ\tJJ\t_\t21\tacl:relcl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\told\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tDodger\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tslugger\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twisely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tno\t_\tDET\tDT\t_\t9\tneg\t_\t_\n9\tprediction\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tabout\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n12\tgood\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttimes\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\treturn\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tside\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tgoes\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tnever\t_\tADV\tRB\t_\t8\tneg\t_\t_\n8\tknow\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t'll\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tget\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t12\tdobj\t_\t_\n14\tback\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tbaseball\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNCR\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tdrop\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthird-quarter\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tincome\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tciting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n14\tintense\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcompetition\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tcaused\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n19\tgross\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tprofit\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmargins\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdip\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincome\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t93.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n13\t103.1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\troughly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t20\tdobj\t_\t_\n18\tanalysts\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n19\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n20\texpected\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tper-share\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t2\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t1.23\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t1.26\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tcontinued\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n25\tbuy-back\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tplan\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAverage\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tshares\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\toutstanding\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\t75.8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t82.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t1\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t1.39\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t1.41\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmaker\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tsells\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\thalf\t_\tNOUN\tNN\t_\t11\tnummod\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tgoods\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\toutside\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\talso\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tnegative\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\teffect\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tstronger\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tdollar\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n28\tadversely\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\taffect\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n31\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n32\tfourth-quarter\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tperformance\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n36\tmake\t_\tVERB\tVB\t_\t29\tconj\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n38\tdifficult\t_\tADJ\tJJ\t_\t41\tdep\t_\t_\n39\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tbetter\t_\tVERB\tVB\t_\t36\txcomp\t_\t_\n42\t1988\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n43\tresults\t_\tNOUN\tNNS\t_\t41\tdobj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tNCR\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tboth\t_\tDET\tDT\t_\t4\tdep\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\toverseas\t_\tADV\tRB\t_\t5\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\treflecting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tworld-wide\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsoftening\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcomputer\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\torders\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tshowed\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgains\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n16\tduring\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlatest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\testimate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthose\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tgains\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\t12\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t10\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n9\t13\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpart\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t14\tnmod\t_\t_\n17\tcoming\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tlarge\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\torders\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tplaced\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tfew\t_\tADJ\tJJ\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tNCR\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcustomers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tgeneral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tslowing\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcomputer\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tindustry\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n12\tNCR\t_\tPROPN\tNNP\t_\t26\tnsubjpass\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tsells\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n16\tautomated\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n17\tteller\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmachines\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tcomputerized\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n21\tcash\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tregisters\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t26\tauxpass\t_\t_\n25\talso\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\taffected\t_\tVERB\tVBN\t_\t47\tccomp\t_\t_\n27\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n29\tretail\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tfinancial\t_\tADJ\tJJ\t_\t29\tconj\t_\t_\n32\tsectors\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n35\tareas\t_\tNOUN\tNNS\t_\t32\tdep\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\teconomy\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\tthat\t_\tPRON\tWDT\t_\t44\tnsubj\t_\t_\n40\thave\t_\tAUX\tVBP\t_\t44\taux\t_\t_\n41\tgenerally\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n42\tnot\t_\tPART\tRB\t_\t44\tneg\t_\t_\n43\tbeen\t_\tVERB\tVBN\t_\t44\tcop\t_\t_\n44\trobust\t_\tADJ\tJJ\t_\t35\tacl:relcl\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t47\tpunct\t_\t_\n47\tnotes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n48\tSanjiv\t_\tPROPN\tNNP\t_\t50\tcompound\t_\t_\n49\tG.\t_\tPROPN\tNNP\t_\t50\tcompound\t_\t_\n50\tHingorani\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n51\t,\t_\tPUNCT\t,\t_\t50\tpunct\t_\t_\n52\tan\t_\tDET\tDT\t_\t53\tdet\t_\t_\n53\tanalyst\t_\tNOUN\tNN\t_\t50\tappos\t_\t_\n54\tfor\t_\tADP\tIN\t_\t57\tcase\t_\t_\n55\tSalomon\t_\tPROPN\tNNP\t_\t57\tcompound\t_\t_\n56\tBrothers\t_\tPROPN\tNNP\t_\t57\tcompound\t_\t_\n57\tInc\t_\tPROPN\tNNP\t_\t53\tnmod\t_\t_\n58\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfactors\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tcombined\t_\tVERB\tVBN\t_\t8\tcase\t_\t_\n5\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tshould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tnegatively\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\taffect\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcurrent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tresults\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\tNCR\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tfourth\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tNCR\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t149.6\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.85\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\trevenue\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t1.8\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHingorani\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tlowered\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tfull-year\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\testimates\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1989\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t5.35\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t5.50\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprojections\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tslashed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n7\t6.03\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n11\t6.20\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tNCR\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tincome\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t439.3\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t5.33\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n21\t5.99\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\trevenue\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t9\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n15\t264.6\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t3.40\t_\tNUM\tCD\t_\t14\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n26\t289.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t3.49\t_\tNUM\tCD\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tRevenues\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t1\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t4.17\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t4.19\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tNCR\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t75\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tclose\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t57\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tConcerning\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n3\tSept.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tarticle\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tFirms\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tLink\t_\tVERB\tVBP\t_\t5\tdep\t_\t_\n11\tAnalysts\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tPay\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tPerformance\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n18\tI\t_\tPRON\tPRP\t_\t20\tnsubjpass\t_\t_\n19\t'm\t_\tVERB\tVBP\t_\t20\tauxpass\t_\t_\n20\tdelighted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n22\tWall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStreet\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t26\taux\t_\t_\n25\tfinally\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\ttuning\t_\tVERB\tVBG\t_\t20\tccomp\t_\t_\n27\tin\t_\tADP\tRP\t_\t26\tcompound:prt\t_\t_\n28\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n30\thard\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n32\tcold\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tfacts\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\treal\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tworking\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tworld\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tserious\t_\tADJ\tJJ\t_\t10\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\twhy\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n10\tlimit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpractice\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tpoor\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tmaligned\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n18\tanalysts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\twhose\t_\tPRON\tWP$\t_\t20\tnmod:poss\t_\t_\n20\tability\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tsee\t_\tVERB\tVB\t_\t20\tdep\t_\t_\n23\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tfuture\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n27\tfragile\t_\tADJ\tJJ\t_\t18\tacl:relcl\t_\t_\n28\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tbest\t_\tADV\tRBS\t_\t27\tnmod\t_\t_\n30\t?\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tnot\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\textend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsame\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tharsh\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstandards\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tforce\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tpay\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n15\tbrokers\t_\tNOUN\tNNS\t_\t14\tiobj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbase\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsalary\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tannual\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tbonus\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tbased\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\ton\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n24\thow\t_\tADV\tWRB\t_\t25\tadvmod\t_\t_\n25\tmuch\t_\tADJ\tJJ\t_\t26\tadvmod\t_\t_\n26\tmoney\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n27\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tmade\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ttheir\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n31\tclients\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tduring\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tyear\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\tshould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tstop\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlot\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\taccount-churning\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tproduce\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tdriven\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tprofessional\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tconcern\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tcareful\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tthought\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsense\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t8\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n5\tthat\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnovelty\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tPhyllis\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tKyle\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStephenson\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\tNewport\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tNews\t_\tPROPN\tNNP\t_\t3\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tVa\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSteve\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tClark\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tShearson\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tLehman\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tHutton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\ttrader\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\twork\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t5\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\ta.m.\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\thalf\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t22\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n25\tusual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\tMonday\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tmorning\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n28\tstrategy\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmeeting\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJefferies\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tJ.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tFrancis\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPalamara\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\tdid\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\treach\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\toffice\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tuntil\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t5:30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\ta.m.\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\tthen\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n20\the\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n21\thad\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n22\tbeen\t_\tVERB\tVBN\t_\t29\tcop\t_\t_\n23\tup\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n24\tmost\t_\tADV\tRBS\t_\t29\tnmod:tmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tnight\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\thome\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n4\tcalls\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tall\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnight\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n7\tlong\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tStates\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\twoken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tevery\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thour\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\t1:30\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\t2:30\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t3:30\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\t4:30\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tpossible\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\topportunities\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\tnobody\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\twants\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tstick\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tchin\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t12\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tLondon\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsecurities\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\ttraders\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tstarted\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tnervously\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsmall\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\thours\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tlunchtime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tselling\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnear-panic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfever\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tas\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tday\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tended\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tfrantic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\tWall\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tStreet-inspired\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\trally\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tCity\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tbreathed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsigh\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\trelief\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSo\t_\tADP\tIN\t_\t3\tdep\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\trooms\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tLondon\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tfinancial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdistrict\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\twake\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tLondon\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tespecially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tvulnerable\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tbefore\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\topening\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tall\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teyes\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tearly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tTokyo\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tclue\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t28\tcase\t_\t_\n22\tto\t_\tADP\tTO\t_\t28\tmark\t_\t_\n23\thow\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n24\twidespread\t_\tADJ\tJJ\t_\t28\tdep\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tfallout\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\tmight\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tbe\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tofficially\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tgot\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\tunder\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tway\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t9\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ta.m.\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tnews\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAsia\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tin\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmixed\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsignals\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tLondon\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\toff\t_\tADJ\tJJ\t_\t3\tadvmod\t_\t_\n5\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tsignificant\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tless-than-alarming\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n9\t1.8\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t4\tdep\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthin\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tvolume\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n15\tHong\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tKong\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tdeclined\t_\tVERB\tVBD\t_\t3\tparataxis\t_\t_\n19\t6.5\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\torderly\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tJefferies\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttrading\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\troom\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tFinsbury\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCircus\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstately\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcircle\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tedge\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfinancial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdistrict\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\tdesktop\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tscreens\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tdisplayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tLondon\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tmajor\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tbarometer\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n31\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n32\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n33\tFinancial\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n34\tTimes-Stock\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n35\tExchange\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n36\t100\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n37\tShare\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tIndex\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tRed\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tfigures\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tscreens\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tfalling\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\tblue\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfigures\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\trising\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t6\tparataxis\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRight\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\taway\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\treds\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\toutnumbered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tblues\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\t80\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t20\t_\tNUM\tCD\t_\t6\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\topened\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t2076.8\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\toff\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t157.1\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tpoints\t_\tNOUN\tNNS\t_\t17\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n26\t7\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsee\t_\tVERB\tVBP\t_\t15\tccomp\t_\t_\n4\tconcern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tsee\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n11\tany\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpanic\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPalamara\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n20\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n22\tgood-humored\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tnative\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\truns\t_\tVERB\tVBZ\t_\t25\tacl:relcl\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\t15-trader\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\toffice\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tJefferies\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\toffice\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbranch\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tLos\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tAngeles-based\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tplayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tconservatively\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tseeking\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tavoid\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\trisk\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsort\t_\tNOUN\tNN\t_\t17\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\thave\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbig\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tposition\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tDavid\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSmith\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\theads\t_\tVERB\tVBZ\t_\t19\tacl:relcl\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tall\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tnon-U.S.\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstocks\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trun\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tvery\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\ttight\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbook\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tJefferies\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tspent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t2\tdobj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tenergies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmorning\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\ttrying\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tmatch\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tbuyers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tsellers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n18\tthere\t_\tPRON\tEX\t_\t19\texpl\t_\t_\n19\twere\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n20\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n21\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tbuyers\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tAll\t_\tDET\tDT\t_\t5\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\tScottish\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tNewcastle\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tB.A.T\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tDRG\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n16\tgetting\t_\tAUX\tVBG\t_\t19\tauxpass\t_\t_\n17\tpretty\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\twell\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tpasted\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmorning\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSmith\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tSeconds\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n2\tlater\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\t7,500-share\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\tsell\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\torder\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tScottish\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tNewcastle\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t15\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tminutes\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\ttrader\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n11\tnext\t_\tADJ\tJJ\t_\t10\tadvmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSmith\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tno-smoking\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tarea\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\thave\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcigarette\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tscreens\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tonly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\tforlorn\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tblue\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfigures\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tremained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\trecovered\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tpoints\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n22\toff\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tabout\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\t140\t_\tNUM\tCD\t_\t22\tnmod:npmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tBecause\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tTokyo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tcollapse\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tlet\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n9\t's\t_\tPART\tPOS\t_\t10\tnsubj\t_\t_\n10\tpick\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n11\tup\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tlittle\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tSmith\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttargeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t7,500\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tReuters\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n8\tpunched\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbutton\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tcall\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tscreen\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdealers\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tquotes\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tvivid\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tyellow\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tfigures\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t845\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpence\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t13.27\t_\tNUM\tCD\t_\t11\tappos\t_\t_\n16\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n18\tMr.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSmith\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\ttraders\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tstarted\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n23\tputting\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n24\tout\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\tfeelers\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsensed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tserious\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbuyer\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tdominated\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tselling\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tquotes\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\timmediately\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tjumped\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t850\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tpence\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\twant\t_\tVERB\tVBP\t_\t9\tadvcl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tbuy\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\trun\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tyou\t_\tPRON\tPRP\t_\t9\tnmod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tkeep\t_\tVERB\tVBP\t_\t9\tparataxis\t_\t_\n15\tchanging\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSmith\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tvery\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tfrustrating\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\ttemporarily\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tabandoned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tsearch\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tReuters\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n7\t4:30\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\ta.m.\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSmith\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tfielded\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcall\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tYork\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tcustomer\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\twanting\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\topinion\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tBritish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tstock\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\twhich\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n34\thad\t_\tAUX\tVBD\t_\t36\taux\t_\t_\n35\tbeen\t_\tAUX\tVBN\t_\t36\taux\t_\t_\n36\thaving\t_\tVERB\tVBG\t_\t31\tacl:relcl\t_\t_\n37\ttroubles\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tits\t_\tPRON\tPRP$\t_\t40\tnmod:poss\t_\t_\n40\town\t_\tADJ\tJJ\t_\t37\tnmod\t_\t_\n41\teven\t_\tADV\tRB\t_\t48\tadvmod\t_\t_\n42\tbefore\t_\tADP\tIN\t_\t48\tcase\t_\t_\n43\tFriday\t_\tPROPN\tNNP\t_\t48\tnmod:poss\t_\t_\n44\t's\t_\tPART\tPOS\t_\t43\tcase\t_\t_\n45\tNew\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n46\tYork\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n47\tmarket\t_\tNOUN\tNN\t_\t48\tcompound\t_\t_\n48\tbreak\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tFundamentally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tdangerous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSmith\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\talmost\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\twhisper\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n17\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\tfundamentally\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tweak\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n21\t...\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n22\tfairly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tvulnerable\t_\tADJ\tJJ\t_\t20\tdep\t_\t_\n24\tstill\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t...\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n26\textremely\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tdangerously\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tpoised\t_\tVERB\tVBN\t_\t20\tdep\t_\t_\n29\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\t're\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tturbulence\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t...\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\tright\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tmidday\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tLondon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tfull\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tretreat\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tfalling\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n5\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstone\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tDanny\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tLinger\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tpit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttrader\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n17\twho\t_\tPRON\tWP\t_\t19\tnsubj\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tstanding\t_\tVERB\tVBG\t_\t16\tacl:relcl\t_\t_\n20\toutside\t_\tADP\tIN\t_\t26\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n22\tLondon\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n23\tInternational\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tFinancial\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tFutures\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tExchange\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOnly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\thalf\t_\tNOUN\tNN\t_\t6\tnummod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tusual\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tlunchtime\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcrowd\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tgathered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\ttony\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tCorney\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tBarrow\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\twine\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbar\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n16\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tOld\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tBroad\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tStreet\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tnearby\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tConversation\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\tsubdued\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tmost\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tpatrons\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\twatched\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tlatest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tstatistics\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttelevision\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\t12:49\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tp.m.\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tlow\t_\tADJ\tJJ\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\t2029.7\t_\tNUM\tCD\t_\t9\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\toff\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t204.2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpoints\t_\tNOUN\tNNS\t_\t9\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tFrance\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t33\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlimit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n8\toff\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tleast\t_\tADJ\tJJS\t_\t11\tnmod:npmod\t_\t_\n11\t10\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t16\tdep\t_\t_\n13\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tyou\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tcalculate\t_\tVERB\tVB\t_\t3\tparataxis\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tindex\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tdobj\t_\t_\n21\tyou\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tcould\t_\tAUX\tMD\t_\t16\tdep\t_\t_\n23\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n26\tMr.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tClark\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tShearson\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\ttrader\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tearly\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tafternoon\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tSpain\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tnmod:npmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tadvmod\t_\t_\n8\tsuspended\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tSweden\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\t's\t_\tVERB\tVBZ\t_\t3\tparataxis\t_\t_\n12\tdown\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t8\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tNorway\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n17\t11\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t11\tparataxis\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tbadly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tdamaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n2\t2:30\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tp.m.\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\topening\t_\tVERB\tVBG\t_\t9\tamod\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n11\tneared\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tShearson\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\ttraders\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tsalesmen\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\ttraded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tbets\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\ton\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\thow\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n21\tlow\t_\tADJ\tJJ\t_\t27\tadvmod\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\topen\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcenter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfloor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\ttrader\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tRoger\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStreeter\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcolleagues\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tscrambled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttelephones\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tas\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tsoon\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n22\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tYork\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\topened\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n29\tplummeting\t_\tVERB\tVBG\t_\t27\tparataxis\t_\t_\n30\tmore\t_\tADV\tRBR\t_\t32\tadvmod\t_\t_\n31\tthan\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\t60\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tpoints\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tfirst\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tfew\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tminutes\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\topportunity\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tcreated\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsell-off\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\ttraders\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tdumped\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n6\tAmerican\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tDepositary\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tReceipts\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tJaguar\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPLC\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tStreeter\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\ttrader\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tSam\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tRuiz\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\tbought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tresell\t_\tVERB\tVB\t_\t19\tadvcl\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.K\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\there\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\tstill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\texpect\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tFord\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tMotor\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tGeneral\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tMotors\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbid\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJaguar\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSuddenly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tafter\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tabout\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\t45\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\trallied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tMMI\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgone\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n6\tbetter\t_\tADV\tRBR\t_\t5\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n12\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n14\t3:15\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tLondon\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tMajor\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tMarkets\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tIndex\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tcontract\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\tsuddenly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tindicated\t_\tVERB\tVBD\t_\t9\tdep\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tturnabout\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tstrengthened\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tLondon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\troom\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twild\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tscreens\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tposted\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n7\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tever-narrowing\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tloss\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tWall\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStreet\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tminutes\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n5\tlater\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tsuddenly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tRally\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n3\t!\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n4\tRally\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n5\t!\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n6\tRally\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n7\t!\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tShearson\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tAndy\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tRosen\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tselling\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tJaguar\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tpanic\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbuying\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t!\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tLondon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trallied\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tnsubj\t_\t_\n8\twondered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\twhether\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tweekend\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tworrying\t_\tVERB\tVBG\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tjitters\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t19\tcop\t_\t_\n18\tworth\t_\tADJ\tJJ\t_\t19\tcase\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t8\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tindex\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t2163.4\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\thigh\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tday\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\toff\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t70.5\t_\tNUM\tCD\t_\t4\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t3.3\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t15\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAmbassador\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNitze\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tstatement\t_\tNOUN\tNN\t_\t53\tnsubj\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tNotable\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tQuotable\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tSept.\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n12\t20\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n16\tIf\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tyou\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\thave\t_\tVERB\tVBP\t_\t40\tadvcl\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpeople\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\tworking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tyou\t_\tPRON\tPRP\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n26\tevery\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tbad\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tthing\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n29\tthat\t_\tPRON\tWDT\t_\t30\tnsubj\t_\t_\n30\thas\t_\tVERB\tVBZ\t_\t28\tacl:relcl\t_\t_\n31\tone\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tchance\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t32\tnmod\t_\t_\n36\tof\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n37\tgoing\t_\tVERB\tVBG\t_\t32\tacl\t_\t_\n38\twrong\t_\tNOUN\tNN\t_\t37\tadvmod\t_\t_\n39\twill\t_\tAUX\tMD\t_\t40\taux\t_\t_\n40\tgo\t_\tVERB\tVB\t_\t5\tdep\t_\t_\n41\twrong\t_\tADJ\tJJ\t_\t40\tadvmod\t_\t_\n42\tat\t_\tADP\tIN\t_\t46\tadvmod\t_\t_\n43\tleast\t_\tADJ\tJJS\t_\t42\tmwe\t_\t_\n44\tonce\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\ta\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tyear\t_\tNOUN\tNN\t_\t40\tadvmod\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n49\tis\t_\tVERB\tVBZ\t_\t53\tcop\t_\t_\n50\ta\t_\tDET\tDT\t_\t53\tdet\t_\t_\n51\tpretty\t_\tADV\tRB\t_\t52\tadvmod\t_\t_\n52\tnegative\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n53\tway\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n54\tof\t_\tSCONJ\tIN\t_\t55\tmark\t_\t_\n55\tlooking\t_\tVERB\tVBG\t_\t53\tacl\t_\t_\n56\tat\t_\tADP\tIN\t_\t57\tcase\t_\t_\n57\tthings\t_\tNOUN\tNNS\t_\t55\tnmod\t_\t_\n58\t.\t_\tPUNCT\t.\t_\t53\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n2\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tas\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfair\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsay\t_\tVERB\tVB\t_\t6\tdep\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n10\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t34\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpeople\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tworking\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tyou\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n20\tevery\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tgood\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tthing\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\thas\t_\tVERB\tVBZ\t_\t22\tacl:relcl\t_\t_\n25\tone\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tchance\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n30\tof\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n31\tgoing\t_\tVERB\tVBG\t_\t26\tacl\t_\t_\n32\tright\t_\tNOUN\tNN\t_\t31\tadvmod\t_\t_\n33\twill\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\tgo\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n35\tright\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n36\tat\t_\tADP\tIN\t_\t40\tadvmod\t_\t_\n37\tleast\t_\tADJ\tJJS\t_\t36\tmwe\t_\t_\n38\tonce\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tyear\t_\tNOUN\tNN\t_\t34\tadvmod\t_\t_\n41\t?\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tDo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n2\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpessimist\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAmbassador\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTremdine\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tHouse\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tAviation\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSubcommittee\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tgive\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttransportation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsecretary\t_\tNOUN\tNN\t_\t10\tiobj\t_\t_\n14\tauthority\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\treview\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tapprove\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n19\tleveraged\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n20\tbuy-outs\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tmajor\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tairlines\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcollapsed\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n3\tplan\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tacquire\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tparent\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tUnited\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tAirlines\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tspurred\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tquick\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\taction\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tlegislation\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tintroduced\t_\tVERB\tVBD\t_\t19\tdep\t_\t_\n22\tWednesday\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tapproved\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tsubcommittee\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tvoice\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tvote\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n32\tyesterday\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\ttaken\t_\tVERB\tVBN\t_\t4\txcomp\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tPublic\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tWorks\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tTransportation\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCommittee\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n16\ttomorrow\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfloor\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tvote\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tnext\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tweek\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\twill\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\turged\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tcriticism\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBush\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tparting\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n12\tshot\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tfinancier\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tDonald\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTrump\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twho\t_\tPRON\tWP\t_\t20\tnsubj\t_\t_\n19\tyesterday\t_\tNOUN\tNN\t_\t20\tdep\t_\t_\n20\twithdrew\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\ttakeover\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tbid\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tAMR\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tparent\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tAmerican\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAirlines\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tletter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n4\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n5\tsubcommittee\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tChairman\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tJames\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tOberstar\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tD.\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tMinn.\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTrump\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tcriticized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tbill\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\texplicit\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\teffort\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tthwart\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\this\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tbid\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tAMR\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n32\tsaid\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n34\tcontributed\t_\tVERB\tVBD\t_\t32\tccomp\t_\t_\n35\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcollapse\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tdeal\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tElaine\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChao\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdeputy\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\ttransportation\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsecretary\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tletter\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texpress\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tadministration\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\topposition\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbill\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tpresent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tform\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tRep.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOberstar\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tbrushed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\toff\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tTrump\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tallegations\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\texcuse\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\tfor\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\town\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdeal\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tfailing\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfact\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tletter\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tcome\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tTransportation\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tSecretary\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tSamuel\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSkinner\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\tindicated\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n22\twiggle\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\troom\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n25\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tadministration\t_\tNOUN\tNN\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tposition\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOberstar\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcommittee\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmembers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\trepeatedly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tlegislation\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tresponse\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tparticular\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsituation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tUAL\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tAMR\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\texamples\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\treasons\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tmove\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tquickly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tenact\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tlegislation\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAides\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n2\tboth\t_\tDET\tDT\t_\t5\tdep\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSenate\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\twithdrawal\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tTrump\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbid\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAMR\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tlikely\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdeflate\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tefforts\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tpush\t_\tVERB\tVB\t_\t22\tacl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlegislation\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrack\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\tstill\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\twant\t_\tVERB\tVBP\t_\t8\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tdo\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tone\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tSenate\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\taide\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\taimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\taddressing\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tairline\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tmight\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tsacrifice\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tcostly\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tsafety\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmeasures\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tpay\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n19\toff\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdebt\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tincurred\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tleveraged\t_\tVERB\tVBN\t_\t26\tamod\t_\t_\n26\tbuy-out\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCurrently\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttransportation\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsecretary\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tclearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\testablished\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\tauthority\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tblock\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmergers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n17\tcan\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\ttake\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tdrastic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstep\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tof\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\trevoking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\toperating\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tcertificate\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tany\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcarrier\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tofficial\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n32\tconsiders\t_\tVERB\tVBZ\t_\t29\tacl:relcl\t_\t_\n33\tunfit\t_\tADJ\tJJ\t_\t32\txcomp\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tSupporters\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tlegislation\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tview\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\teffort\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tadd\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n13\tstability\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tcertainty\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tairline-acquisition\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprocess\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tpreserve\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tsafety\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tfitness\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tindustry\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tgeneral\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbill\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tTransportation\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDepartment\t_\tPROPN\tNNP\t_\t7\tiobj\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t30-day\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\treview\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tperiod\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n15\tbefore\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n16\t15\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t32\tnsubjpass\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n19\tmore\t_\tADJ\tJJR\t_\t17\tnummod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tvoting\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n27\tU.S.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tair\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcarrier\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tcould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\tacquired\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tacquiring\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tparty\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tnotify\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttransportation\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tsecretary\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tprovide\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n16\tall\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tinformation\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\trelevant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tmark\t_\t_\n20\tdetermining\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tintent\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tacquisition\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbill\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tallow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsecretary\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treject\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbuy-out\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tsufficient\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinformation\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tprovided\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tif\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tbuy-out\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tlikely\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tweaken\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tcarrier\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tfinancially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n31\tresult\t_\tVERB\tVB\t_\t26\tconj\t_\t_\n32\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tsubstantial\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\treduction\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsize\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tairline\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\tthrough\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tdisposal\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tassets\t_\tNOUN\tNNS\t_\t42\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n46\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n47\tgive\t_\tVERB\tVB\t_\t26\tconj\t_\t_\n48\tcontrol\t_\tNOUN\tNN\t_\t47\tdobj\t_\t_\n49\tto\t_\tADP\tTO\t_\t52\tcase\t_\t_\n50\ta\t_\tDET\tDT\t_\t52\tdet\t_\t_\n51\tforeign\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tinterest\t_\tNOUN\tNN\t_\t47\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tmore\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tinformation\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tneeded\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsecretary\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tauthority\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\textend\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\treview\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tperiod\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t20\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tdays\t_\tNOUN\tNNS\t_\t13\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t3\tdet:predet\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\twitnesses\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tboth\t_\tDET\tDT\t_\t6\tcc:preconj\t_\t_\n6\tcongressmen\t_\tNOUN\tNNS\t_\t3\tappos\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tindustry\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\texperts\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tsupport\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbill\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tin\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\torder\t_\tNOUN\tNN\t_\t16\tmwe\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tprevent\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n20\tprofiteers\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tfrom\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tcashing\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n23\tin\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tairline\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tprofits\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\texpense\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tsafe\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\tcost-effective\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tservice\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tseveral\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcommittee\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmembers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tdisapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tnsubj\t_\t_\n8\tbacking\t_\tVERB\tVBG\t_\t5\tdep\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tTrump\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tclaim\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tthreat\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tregulation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tcaused\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfailure\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tUAL\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tdeal\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tstock-market\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tplunge\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t10\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tmajor\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tconcerns\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\texpressed\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdissenters\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tairlines\t_\tNOUN\tNNS\t_\t16\tnsubjpass\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tprohibited\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tdivesting\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tthemselves\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsmaller\t_\tADJ\tJJR\t_\t22\tamod\t_\t_\n22\tentities\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\tproducing\t_\tVERB\tVBG\t_\t18\tconj\t_\t_\n25\tindependent\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tspin-off\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcompanies\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tpossible\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprelude\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresumption\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttalks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tBoeing\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tstriking\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n15\tMachinists\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n16\tunion\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmembers\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfederal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmediator\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\trepresentatives\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tsides\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tmeet\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n30\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\thim\t_\tPRON\tPRP\t_\t29\tnmod\t_\t_\n32\ttomorrow\t_\tNOUN\tNN\t_\t29\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmeeting\t_\tNOUN\tNN\t_\t17\tccomp\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n10\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tshort\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tone\t_\tNUM\tCD\t_\t7\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tDoug\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tHammond\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmediator\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n25\tcalled\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tagreement\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tmeet\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tfirst\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tstep\t_\tNOUN\tNN\t_\t25\txcomp\t_\t_\n33\ttoward\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tresumption\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tnegotiations\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tencouraged\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\ttalks\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\tauxpass\t_\t_\n8\tscheduled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tbeyond\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tthat\t_\tPRON\tDT\t_\t16\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tmade\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n17\tno\t_\tDET\tDT\t_\t18\tneg\t_\t_\n18\texpression\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\texpectations\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tBoeing\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n25\tspokesman\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMachinists\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tunion\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\trejected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tthree-year\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcontract\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\toffer\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\thave\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tprovided\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n17\twage\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tincrease\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\tover\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tlife\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpact\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n26\tplus\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tsome\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tbonuses\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCurrently\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpay\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tmachinists\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t13.39\t_\tNUM\tCD\t_\t14\tccomp\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\thour\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tBoeing\t_\tVERB\tVBG\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\t13th\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tday\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstrike\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tidled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tabout\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\t55,000\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmachinists\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\tstarted\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdelay\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tdelivery\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsome\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tjetliners\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tstrike\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tfund\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n8\t100\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tunion\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tprepared\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlong\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstrike\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tweek\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstrike\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tunion\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\treceiving\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t100\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfund\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWork\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tBoeing\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tcontinues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\twith\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tsupervisors\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnon-striking\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpersonnel\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n11\tmanning\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlines\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n2\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tWichita\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tKan.\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tplant\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t2,400\t_\tNUM\tCD\t_\t20\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t11,700\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tmachinists\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tworking\t_\tVERB\tVBG\t_\t23\tdep\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\tBoeing\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tKansas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tright-to-work\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlaws\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tcontracts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n7\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tworkers\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n13\tunion\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmembers\t_\tNOUN\tNNS\t_\t9\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdeclined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tsay\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\thow\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tadvmod\t_\t_\n8\temployees\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tworking\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n11\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n13\tgiant\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n14\tRenton\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tWash.\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tplant\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnion\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\treached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tDPC\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPartners\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\thostile\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsuitor\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tDataproducts\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tintends\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlaunch\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\ttender\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\toffer\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tprinter\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmaker\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tcommon\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDPC\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tgroup\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tled\t_\tVERB\tVBD\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tCrescott\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\talso\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tplans\t_\tVERB\tVBZ\t_\t16\tccomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tfile\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tpreliminary\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmaterials\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tSecurities\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tExchange\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\tCommission\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n29\tregarding\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tshareholder\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsolicitation\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\toust\t_\tVERB\tVB\t_\t32\tacl\t_\t_\n35\tDataproducts\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n36\t'\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tboard\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tDPC\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t7.8\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t%\t_\tSYM\tNN\t_\t6\tamod\t_\t_\n6\tstake\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tDataproducts\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tmade\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t14\tamod\t_\t_\n13\t15-a-share\t_\tADJ\tJJ\t_\t12\tdep\t_\t_\n14\tbid\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tMay\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n22\tDataproducts\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tmanagement\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tconsidered\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t283.7\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tproposal\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\tunacceptable\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDPC\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\telaborate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tgroup\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tplan\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tcomposite\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tDataproducts\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t62.5\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tclose\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t9.375\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDataproducts\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\taux\t_\t_\n6\tseeking\t_\tVERB\tVBG\t_\t1\tacl:relcl\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbuyer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tseveral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n13\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\trestructuring\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplan\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tSeptember\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\ttook\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n21\titself\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\toff\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tauction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tblock\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\trestructuring\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tplans\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsplit\t_\tVERB\tVB\t_\t6\tdep\t_\t_\n9\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tsectors\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tphase\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n15\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tdomestic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tprinter\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tmanufacturing\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\toperations\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tsell\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tEngland\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tsubsidiary\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tpart\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tDataproducts\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpact\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsell\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t63\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n18\treal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\testate\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tholdings\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tTrizec\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tProperties\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tInc.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tunit\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tCanada\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tTrizec\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tCorp\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tJack\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDavis\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tDataproducts\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t'\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tchief\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\texecutive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tloss\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tunderstand\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tDPC\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tintentions\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tannouncement\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\topportunistic\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tdisruptive\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tintends\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tproceed\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\trestructuring\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tShare\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tplummeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tacross\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tEurope\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tresponse\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tYork\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tsell-off\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n17\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tissues\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tstaged\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tlate\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcomeback\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tafter\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tWall\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tStreet\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\topened\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n27\twithout\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tanother\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\trout\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEuropean\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tfurther\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\treason\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\toptimism\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\ttoday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tafter\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\trebound\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tFrankfurt\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n8\tbefore\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\texchanges\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\topened\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\thardest\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\thit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tmajor\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tEuropean\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmarkets\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n25\twith\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tDAX\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tIndex\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\tdropping\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n30\t12.8\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tplummeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tearly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\toff\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n12\tas\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tmuch\t_\tADJ\tJJ\t_\t15\tadvmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n15\t9\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n17\tbefore\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tcoming\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n19\tback\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\tstrong\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\topening\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tclose\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n28\tdown\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n29\tonly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\t3.2\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t28\tnmod:npmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n2\tGerman\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n3\tEconomics\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tMinister\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tHelmut\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tHaussmann\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n10\tIn\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmy\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tview\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tstabilize\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n19\trelatively\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tquickly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t10\texpl\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n4\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n7\tpsychological\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\ttechnical\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n10\treactions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t16\tnsubjpass\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t16\tauxpass\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tbased\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tfundamentals\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\teconomy\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tWest\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tGermany\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tEC\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t-LCB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n10\tEuropean\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCommunity\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n12\t-RCB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n14\thighly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tstable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tParis\t_\tPROPN\tNNP\t_\t18\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcenter\t_\tNOUN\tNN\t_\t1\tacl:relcl\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tspeculation\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfever\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\trecent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tweeks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n17\thard\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tShare\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tMilan\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tAmsterdam\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tZurich\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tMadrid\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tStockholm\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPrices\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tBrussels\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcomputer\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbreakdown\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tdisrupted\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\talso\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFollowing\t_\tVERB\tVBG\t_\t4\tdep\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tdep\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbreakdown\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tactivity\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tFRANKFURT\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tsharpest\t_\tADJ\tJJS\t_\t5\tamod\t_\t_\n5\tdeclines\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfinancial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcenter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tEurope\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tstrongest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDAX\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tIndex\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\t30\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n6\tWest\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tGerman\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tblue\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tchips\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t12.8\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tone-day\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trecord\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\twiping\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n19\tout\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsummer\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tgains\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindex\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\t1385.72\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n8\t203.56\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tpoints\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcomparison\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\ttwo\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\tago\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBlack\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\thave\t_\tAUX\tVB\t_\t16\taux\t_\t_\n16\tdropped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\t9.4\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\taccording\t_\tVERB\tVBG\t_\t23\tcase\t_\t_\n21\tto\t_\tADP\tTO\t_\t20\tmwe\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tprojection\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\texchange\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\thave\t_\tAUX\tVB\t_\t4\taux\t_\t_\n4\treacted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tstrongly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tbecause\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\thad\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n17\tvivid\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmemories\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tFrankfurt\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\texchange\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tlosing\t_\tVERB\tVBG\t_\t22\tdep\t_\t_\n25\t35\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t24\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tvalue\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\t1987\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tcrash\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tits\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n36\twake\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tsmall\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tacting\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n15\tso\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tswiftly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tall\t_\tDET\tDT\t_\t2\tdet\t_\t_\n4\twent\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\twrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdirection\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tAndreas\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInsam\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tinvestment\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tadviser\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tBank\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tLiechtenstein\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tFrankfurt\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tbranch\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\ttold\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tclients\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\tselected\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n9\tWest\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tGerman\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tblue\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tchips\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n13\tafter\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tfell\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n16\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t10\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\topening\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tdelayed\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n6\t30\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tminutes\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tbecause\t_\tADV\tRB\t_\t11\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcrush\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tsell\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\torders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n16\tFrankfurt\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tnormal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\ttwo-hour\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tsession\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\textended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n24\t75\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tminutes\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\thandle\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\theavy\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tvolume\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbeginning\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tchaotic\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tNigel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tLongley\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbroker\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tCommerzbank\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAG\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthree-quarters\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thour\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbefore\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tenough\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tworked\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\treading\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tInstitutional\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tbankers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tmany\t_\tDET\tDT\t_\t9\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\twhom\t_\tPRON\tWP\t_\t6\tnmod\t_\t_\n9\tspent\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnight\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\tbefore\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\toffices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\twatching\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n17\tFar\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tEastern\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n21\twere\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n22\tcautiously\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\toptimistic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n24\tafter\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\tmild\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n27\t1.8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t%\t_\tSYM\tNN\t_\t29\tamod\t_\t_\n29\tdecline\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tTokyo\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tstock\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tprices\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tEverybody\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tconfident\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n8\tmost\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n9\tinstitutional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinvestors\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n3\twhy\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n4\teverybody\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlittle\t_\tADV\tRB\t_\t8\tnmod:npmod\t_\t_\n8\tsurprised\t_\tVERB\tVBN\t_\t2\tadvcl\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstorm\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tsell\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\torders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tsmall\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tprivate\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tNorbert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBraeuer\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttrader\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tHessische\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tLandesbank\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinstitutions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tincluding\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n6\tbanks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tpicking\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\tup\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tlower-priced\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tlate\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n17\tmost\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\twanted\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tsee\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\twhat\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\thappen\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tNew\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tYork\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\tbefore\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tacting\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tWall\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStreet\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tcontinues\t_\tVERB\tVBZ\t_\t12\tadvcl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tstabilize\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tanalysts\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\there\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tlatest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\tblow\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tinvestor\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tconfidence\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tinhibit\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tswift\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\trecovery\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tFrankfurt\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\texchange\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\twhich\t_\tPRON\tWDT\t_\t32\tnsubj\t_\t_\n30\talready\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\twas\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\tshowing\t_\tVERB\tVBG\t_\t27\tacl:relcl\t_\t_\n33\tsigns\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tweakness\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\tafter\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tDAX\t_\tPROPN\tNNP\t_\t40\tnsubj\t_\t_\n39\thad\t_\tAUX\tVBD\t_\t40\taux\t_\t_\n40\tslipped\t_\tVERB\tVBN\t_\t32\tadvcl\t_\t_\n41\tfrom\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\t1989\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\thigh\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\t1657.61\t_\tNUM\tCD\t_\t44\tnmod\t_\t_\n47\ton\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tSept.\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n49\t8\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t8\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tWest\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGermany\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tbluest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tchips\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tsome\t_\tDET\tDT\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbiggest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n13\thits\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t16.3\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\t%\t_\tSYM\tNN\t_\t4\tamod\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tMannesmann\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAG\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tDresdner\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tBank\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAG\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\t9.6\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\tespecially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tproblematic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\trespective\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tboards\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\twhose\t_\tPRON\tWP$\t_\t25\tnmod:poss\t_\t_\n25\tplans\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\trights\t_\tNOUN\tNNS\t_\t29\tcompound\t_\t_\n29\tissues\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tNovember\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\tcould\t_\tAUX\tMD\t_\t36\taux\t_\t_\n33\tnow\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t36\tcop\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tjeopardy\t_\tNOUN\tNN\t_\t22\tacl:relcl\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tDresdner\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBank\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tlast\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\thoped\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\traise\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\t1.2\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tmarks\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n15\t642.2\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t-RRB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n18\tby\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tissuing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n20\tfour\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t300\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmarks\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\teach\t_\tDET\tDT\t_\t25\tnmod:npmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tDresdner\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tshare\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t33\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tmarks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t309\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tmarks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tleaving\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n20\tlittle\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tincentive\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tfor\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tinvestors\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsubscribe\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n26\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tstanding\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tunless\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n33\trecovers\t_\tVERB\tVBZ\t_\t25\tadvcl\t_\t_\n34\tquickly\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tHeaded\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n2\ttoward\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trecord\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tdrop\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tmidday\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tLondon\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\trecouped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ttwo-thirds\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\twake\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tNew\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tYork\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tearly\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trally\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\tFinancial\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tTimes-Stock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t100\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tShare\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tIndex\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\toff\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t70.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t2163.4\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\thigh\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tday\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\thaving\t_\tAUX\tVBG\t_\t24\taux\t_\t_\n24\tplunged\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n25\t204.2\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tpoints\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t12:49\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tp.m\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tbig\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinstitutions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t10\tcase\t_\t_\n6\tas\t_\tADP\tIN\t_\t5\tmwe\t_\t_\n7\tNorwich\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tUnion\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tInsurance\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tGroup\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tScottish\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tAmicable\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tInvestment\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tManagers\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tStandard\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tLife\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tAssurance\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCo.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n21\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tspearheaded\t_\tVERB\tVBD\t_\t4\tdep\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\trally\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAttracted\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n2\tby\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tlow\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n6\tencouraged\t_\tVERB\tVBN\t_\t1\tconj\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tperformance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tscooped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tequities\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tacross\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tboard\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tVolume\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\t959.3\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\ttriple\t_\tADJ\tJJ\t_\t11\tnummod\t_\t_\n10\trecent\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlevels\t_\tNOUN\tNNS\t_\t5\tappos\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPARIS\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tLate\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tbuying\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tParis\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBourse\t_\tPROPN\tNNP\t_\t3\tiobj\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tparachute\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tafter\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tfree\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfall\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\tearly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tCAC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tGeneral\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tIndex\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tdown\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t5.4\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t523.6\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdrop\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t29.6\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tpoints\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tvolatility\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthat\t_\tADP\tIN\t_\t13\tdobj\t_\t_\n10\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n12\tnever\t_\tADV\tRB\t_\t13\tneg\t_\t_\n13\tseen\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n14\tbefore\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tMichel\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tVigier\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpartner\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n23\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tbrokerage\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n25\tfirm\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tCholet\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tDupont\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n3\tWall\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tStreet\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tturned\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n6\taround\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tshortly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tafter\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\topening\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tthere\t_\tPRON\tEX\t_\t13\texpl\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tpanic\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbuying\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tParis\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tBrokers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnews\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tspread\t_\tVERB\tVBD\t_\t23\tadvcl\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tWall\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tStreet\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tmoving\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n13\tup\t_\tADV\tRB\t_\t12\tcompound:prt\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n15\ttraders\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n16\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n17\thad\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n18\tcalled\t_\tVERB\tVBN\t_\t15\tacl:relcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tplace\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tsell\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\torders\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tchanged\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n24\ttheir\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tline\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tmid-conversation\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tordering\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n30\tbuys\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\tinstead\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tdriven\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tprimarily\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tsmall\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tspeculators\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twith\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinstitutions\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\twaiting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsidelines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tuntil\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tlate\t_\tADJ\tJJ\t_\t14\tadvcl\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tday\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tturned\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbig\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tboys\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tentered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tlooking\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tbargains\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tswung\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tloss\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tthird\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twhile\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tNCNB\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\treported\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tmore\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n22\tdoubled\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n25\tSecurity\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tPacific\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tnet\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n29\trose\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n30\t10\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n10\t1.82\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tnet\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tquarter\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\treflecting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tYork\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tbank\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tdecision\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n25\tlast\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tmonth\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tadd\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n29\t$\t_\tSYM\t$\t_\t28\tdobj\t_\t_\n30\t2\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tbillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\treserves\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tlosses\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n36\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tloans\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n38\tto\t_\tADP\tTO\t_\t40\tcase\t_\t_\n39\tless-developed\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tcountries\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\treserve\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\taddition\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparent\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tMorgan\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tGuaranty\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tTrust\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tamong\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tfew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tmajor\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tbanks\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tcovered\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n21\tnearly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n22\tall\t_\tDET\tDT\t_\t27\tdet:predet\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n24\tmedium\t_\tNOUN\tNN\t_\t27\tamod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tlong-term\t_\tADJ\tJJ\t_\t24\tconj\t_\t_\n27\tportfolios\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tless-developed\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tcountries\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\twith\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\treserves\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tquarter\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tequals\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t9.92\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tMorgan\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n9\t233.6\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t1.25\t_\tNUM\tCD\t_\t8\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSalem\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tanalyst\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tPrudential-Bache\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tSecurities\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tresults\t_\tNOUN\tNNS\t_\t16\tdep\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tmildly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tdisappointing\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tExcluding\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n2\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\t$\t_\tSYM\t$\t_\t6\tamod\t_\t_\n4\t2\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tbillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tprovision\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n8\tallowing\t_\tVERB\tVBG\t_\t1\tconj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttaxes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tMorgan\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tpaid\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t65\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tcents\t_\tNOUN\tNNS\t_\t25\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tSalem\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMorgan\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t1.50\t_\tNUM\tCD\t_\t11\tdobj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t44.125\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinterest\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsank\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t27\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n12\t254\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n16\t347\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinterest\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tshort-term\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfunds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t10\tdobj\t_\t_\n9\tbanks\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tborrow\t_\tVERB\tVBP\t_\t6\tacl:relcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tfinance\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tlonger-term\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tloans\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tcustomers\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tsharply\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\thigher\t_\tADJ\tJJR\t_\t25\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\tMorgan\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMorgan\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t2\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tinterest\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpayments\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n11\tmedium\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tlong-term\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tBrazilian\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tloans\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n17\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\taccruing\t_\tVERB\tVBG\t_\t32\tadvcl\t_\t_\n21\tinterest\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n23\tnet\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tinterest\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tincome\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n27\thave\t_\tAUX\tVB\t_\t32\taux\t_\t_\n28\tbeen\t_\tVERB\tVBN\t_\t32\tcop\t_\t_\n29\t$\t_\tSYM\t$\t_\t32\tnmod:npmod\t_\t_\n30\t35\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\thigher\t_\tADJ\tJJR\t_\t38\tccomp\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tquarter\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n37\tMorgan\t_\tPROPN\tNNP\t_\t38\tnsubj\t_\t_\n38\tsaid\t_\tVERB\tVBD\t_\t2\tparataxis\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tloans\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\tArgentina\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tclassified\t_\tADJ\tJJ\t_\t6\txcomp\t_\t_\n8\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tnon-accruing\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tcosting\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbank\t_\tNOUN\tNN\t_\t11\tiobj\t_\t_\n14\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tinterest\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tperiod\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIncome\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tsources\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\tthan\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tinterest\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t12\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n12\t414\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\treflecting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n16\thigher\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n17\tcorporate-finance\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\tfees\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tgains\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tsales\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tinvestment\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsecurities\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tincreases\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tpartly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\toffset\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tlower\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n9\ttrading-related\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tincome\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tbank\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tNon-interest\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\texpenses\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t16\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n8\t496\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tnet\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tincome\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tmore\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n7\tthan\t_\tADP\tIN\t_\t6\tcase\t_\t_\n8\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tperiod\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tlargely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n14\tbecause\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tcontinued\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n17\tstrong\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tperformance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n19\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbank\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tTexas\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\toperations\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tCharlotte\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.C.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tearnings\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t143.6\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.45\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n23\t58.9\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\t69\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tcents\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n34\tearlier\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tquarter\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t56.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t59\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\trelated\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpurchase\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tremaining\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\t51\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tNCNB\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tTexas\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tNational\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tBank\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\tfrom\t_\tADP\tIN\t_\t37\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\tFederal\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n35\tDeposit\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tInsurance\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tCorp\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tstrong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tperformance\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tcontrasted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tunexpectedly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tlarge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tincrease\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsize\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tNCNB\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tproblem\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tloans\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n22\tparticularly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tSoutheast\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tnonperforming\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tassets\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n11\t474.1\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t1.43\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tloans\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tleases\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n25\t232.8\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t1.13\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t24\tconj\t_\t_\n31\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tsecond\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tquarter\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNonperformers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t230.8\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\t1.27\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t3\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tyear-ago\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIncluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tincrease\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tmost\t_\tADV\tRBS\t_\t8\tadvmod\t_\t_\n8\trecent\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t1\tauxpass\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t33\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tloan\t_\tNOUN\tNN\t_\t1\tnsubjpass\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t19\tdobj\t_\t_\n18\tNCNB\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n22\texpects\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n25\tfully\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\trepaid\t_\tVERB\tVBN\t_\t22\txcomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tno\t_\tDET\tDT\t_\t30\tneg\t_\t_\n30\tloss\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n32\tearly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tfourth\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdeterioration\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcredit\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tquality\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\toffset\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tloan\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tgrowth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t17\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tNCNB\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tSoutheast\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\toperations\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tas\t_\tADV\tRB\t_\t9\tcc\t_\t_\n20\twell\t_\tADV\tRB\t_\t19\tmwe\t_\t_\n21\tas\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\t28\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t%\t_\tSYM\tNN\t_\t25\tamod\t_\t_\n25\tgrowth\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tdeposits\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\tresulting\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\taggressive\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tmarketing\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tcampaign\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\thigher\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\trates\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tpaid\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdeposits\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tsqueeze\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n10\tNCNB\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmargin\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tSoutheast\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\t3.38\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t3.80\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n26\tearlier\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tcomposite\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tNCNB\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t3.50\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t51\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tResults\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\treleased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tafter\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTexas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNational\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tformed\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tremnants\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tdep\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tfailed\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n13\tFirst\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tRepublicBank\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tDallas\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n19\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t$\t_\tSYM\t$\t_\t19\tdobj\t_\t_\n21\t76.9\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n24\tNCNB\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tbottom\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tline\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tthird\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tquarter\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tthird-quarter\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tresults\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\treflect\t_\tVERB\tVBP\t_\t2\tccomp\t_\t_\n7\t100\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tTexas\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\toperation\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAug.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t1\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\traised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tsome\t_\tDET\tDT\t_\t4\tadvmod\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n5\t1.9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcapital\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tcomplete\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tNCNB\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tTexas\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tpurchase\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tacquire\t_\tVERB\tVB\t_\t14\tconj\t_\t_\n23\tseveral\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n24\tsmall\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tfailed\t_\tVERB\tVBN\t_\t26\tamod\t_\t_\n26\tthrifts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tfill\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n29\tout\t_\tADP\tRP\t_\t28\tcompound:prt\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tregional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tfranchise\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbanking\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tpurchased\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tboth\t_\tDET\tDT\t_\t12\tcc:preconj\t_\t_\n11\tFreedom\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tSavings\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tLoan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAssociation\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tTampa\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tFla.\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n22\tUniversity\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tFederal\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tSavings\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAssociation\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tSan\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tAntonio\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tTexas\t_\tPROPN\tNNP\t_\t28\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n34\t169.4\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tnine\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\tNCNB\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t65\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n16\t310.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t3.30\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n27\t188.2\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t2.22\t_\tNUM\tCD\t_\t26\tconj\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t38\tnmod:npmod\t_\t_\n38\tearlier\t_\tADV\tRBR\t_\t26\tadvmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tearnings\t_\tNOUN\tNNS\t_\t5\tcompound\t_\t_\n5\tgrowth\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tslowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tLos\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tAngeles\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tbank\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tholding\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n20\tstill\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\table\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tpost\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t10\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tamod\t_\t_\n27\tincrease\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tnet\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tincome\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t31\tmwe\t_\t_\n33\trobust\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tgrowth\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tresidential\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\treal-estate\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tconsumer\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tloans\t_\tNOUN\tNNS\t_\t37\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t185.1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t1.55\t_\tNUM\tCD\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n16\t167.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.47\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tyear\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n27\tearlier\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgain\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tresulted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tmainly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n11\t54\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tincrease\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tnet\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tinterest\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tincome\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\treflecting\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\t33\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t%\t_\tSYM\tNN\t_\t23\tamod\t_\t_\n23\tincrease\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\treal\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\testate\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tloans\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t30\tpunct\t_\t_\n29\tmainly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tresidential\t_\tADJ\tJJ\t_\t27\tdep\t_\t_\n31\t-RRB-\t_\tPUNCT\t-RRB-\t_\t30\tpunct\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n34\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n35\t19\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\t%\t_\tSYM\tNN\t_\t37\tamod\t_\t_\n37\trise\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n38\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tconsumer\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tloans\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\thigh-yielding\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tloans\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\teffect\t_\tNOUN\tNN\t_\t6\tadvmod\t_\t_\n6\treplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlow-yielding\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t13\tcase\t_\t_\n11\tas\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tinter-bank\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloans\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t17\tnsubjpass\t_\t_\n16\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tallowed\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdecrease\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tSecurity\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPacific\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tinterest\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmargin\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t13\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tbasis\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tpoints\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmore\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n19\tmild\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdecrease\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n21\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tsome\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tmajor\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbanks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\toutside\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tCalifornia\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\twhich\t_\tPRON\tWDT\t_\t31\tnsubj\t_\t_\n29\thave\t_\tAUX\tVBP\t_\t31\taux\t_\t_\n30\tbeen\t_\tAUX\tVBN\t_\t31\taux\t_\t_\n31\treporting\t_\tVERB\tVBG\t_\t24\tacl:relcl\t_\t_\n32\tmore\t_\tADV\tRBR\t_\t33\tadvmod\t_\t_\n33\tsluggish\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tearnings\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t7\tdep\t_\t_\n7\t44.625\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tdown\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n10\t37.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tBig\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tcomposite\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tearnings\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\trepresent\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t0.89\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\treturn\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSecurity\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPacific\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n15\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\t18.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\treturn\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tequity\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tloan\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\toffset\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tcontinuing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n6\treal-estate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tloan\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tlosses\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tdepressed\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n12\tArizona\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t33\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tincrease\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcredit\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tlosses\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n18\t109\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n22\t81.9\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tyear-ago\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tperiod\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNonperforming\t_\tVERB\tVBG\t_\t2\tamod\t_\t_\n2\tloans\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tslightly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n7\t1.75\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tSept.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n15\t1.7\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSecurity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPacific\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tloan-loss\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tprovision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t22\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tnmod:npmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\t$\t_\tSYM\t$\t_\t9\tconj\t_\t_\n13\t30.4\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tadded\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tforeign-debt\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\treserve\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t25\tnmod:npmod\t_\t_\n25\tbefore\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNon-interest\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincome\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tmainly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n11\tbecause\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tof\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tunusual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tgain\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyear\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tearlier\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsale\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tHong\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tKong\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tbanking\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\toperations\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNon-interest\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\texpense\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\t4\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tperiod\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t7\tnsubj\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t17\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n12\t548.9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t4.67\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n23\t469.4\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\t$\t_\tSYM\t$\t_\t28\tdep\t_\t_\n28\t4.13\t_\tNUM\tCD\t_\t22\tconj\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n34\tearlier\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLIN\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBroadcasting\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\two\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tposition\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\trevised\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n14\ttender\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toffer\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tMcCaw\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tCellular\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tCommunications\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tbuy\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n23\tLIN\t_\tPROPN\tNNP\t_\t22\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n25\thas\t_\tAUX\tVBZ\t_\t26\taux\t_\t_\n26\tasked\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tclarification\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\toffer\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\toffer\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tseeks\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\t50.3\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tcellular\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tbroadcasting\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\tconcern\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t125\t_\tNUM\tCD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\t22\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tLIN\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\trevised\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n4\ttender\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tMcCaw\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tauction\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprocess\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJuly\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t1994\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n20\tout\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\tremaining\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tholders\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tper-share\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\troughly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tequivalent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n29\tto\t_\tADP\tTO\t_\t36\tmark\t_\t_\n30\twhat\t_\tPRON\tWP\t_\t38\tdobj\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tthird\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tparty\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n34\tmight\t_\tAUX\tMD\t_\t36\taux\t_\t_\n35\tthen\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\thave\t_\tVERB\tVB\t_\t28\tadvcl\t_\t_\n37\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n38\tpay\t_\tVERB\tVB\t_\t36\txcomp\t_\t_\n39\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tall\t_\tDET\tDT\t_\t38\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tLIN\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLIN\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tasking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tMcCaw\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tclarify\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\ttender\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\tchallenges\t_\tVERB\tVBZ\t_\t9\tacl:relcl\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tagreement\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tbetween\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tBellSouth\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tLIN\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tmerge\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tcellular-telephone\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbusinesses\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBellSouth\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tnotified\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tLIN\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tshortly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\trespond\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tMcCaw\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tproposal\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tas\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tfull\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\teffective\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmanner\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n22\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\tauxpass\t_\t_\n24\twarranted\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tLIN\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tboard\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tholders\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tmisled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprovision\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tMcCaw\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tproposal\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tthat\t_\tADP\tIN\t_\t18\tnsubj\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n18\tguarantees\t_\tNOUN\tNNS\t_\t11\tacl:relcl\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n20\tprivate\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tvalue\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tfive\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tremaining\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tshares\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\thas\t_\tVERB\tVBZ\t_\t22\tccomp\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tobligation\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpurchase\t_\tNOUN\tNN\t_\t5\tacl\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdefinition\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprivate\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tvalue\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tuncertain\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tLIN\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tboard\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tboard\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tMcCaw\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\table\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcontrol\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tLIN\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\toperations\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n18\ttherefore\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\toperate\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n21\tLIN\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmanner\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tdiminish\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n29\tprivate\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tvalue\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tattractiveness\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n34\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tthird-party\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tpurchaser\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tfive\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\tyears\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tnational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tover-the-counter\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tLIN\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t104.75\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t2.75\t_\tNUM\tCD\t_\t12\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tinstitutional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tTelerate\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n11\tDow\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tJones\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t18\tamod\t_\t_\n17\t18-a-share\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n18\toffer\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n19\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n21\telectronic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n22\tfinancial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\tinformation\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tservices\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t29\tcop\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n28\tgrossly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tinadequate\t_\tADJ\tJJ\t_\t9\tccomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tletter\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n4\tfiled\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tSecurities\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\tCommission\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\tholds\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n17\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\t4.5\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tTelerate\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tabout\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t4.7\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t21\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tshares\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\toutstanding\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n32\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n34\t...\t_\tPUNCT\t:\t_\t32\tpunct\t_\t_\n35\tat\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tpresent\t_\tADJ\tJJ\t_\t40\tnmod\t_\t_\n37\tnone\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tus\t_\tPRON\tPRP\t_\t37\tnmod\t_\t_\n40\tbelieves\t_\tVERB\tVBZ\t_\t32\tparataxis\t_\t_\n41\tan\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\toffer\t_\tNOUN\tNN\t_\t52\tnsubj\t_\t_\n43\tfor\t_\tADP\tIN\t_\t46\tcase\t_\t_\n44\tless\t_\tADJ\tJJR\t_\t46\tadvmod\t_\t_\n45\tthan\t_\tADP\tIN\t_\t44\tmwe\t_\t_\n46\t$\t_\tSYM\t$\t_\t42\tnmod\t_\t_\n47\t25\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n48\tper\t_\tADP\tIN\t_\t49\tcase\t_\t_\n49\tshare\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n50\twould\t_\tAUX\tMD\t_\t52\taux\t_\t_\n51\tbe\t_\tVERB\tVB\t_\t52\tcop\t_\t_\n52\tfair\t_\tADJ\tJJ\t_\t40\tccomp\t_\t_\n53\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n54\tsome\t_\tDET\tDT\t_\t55\tnsubj\t_\t_\n55\tbelieve\t_\tVERB\tVBP\t_\t40\tconj\t_\t_\n56\tthat\t_\tDET\tDT\t_\t61\tmark\t_\t_\n57\t$\t_\tSYM\t$\t_\t58\tdep\t_\t_\n58\t25\t_\tNUM\tCD\t_\t61\tnsubj\t_\t_\n59\tis\t_\tVERB\tVBZ\t_\t61\tcop\t_\t_\n60\ttoo\t_\tADV\tRB\t_\t61\tadvmod\t_\t_\n61\tlow\t_\tADJ\tJJ\t_\t55\tccomp\t_\t_\n62\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n63\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tletter\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tdated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomposite\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tTelerate\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t18.875\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n20\t75\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tDow\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tJones\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tpublisher\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tJournal\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tlaunched\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n14\t$\t_\tSYM\t$\t_\t23\tamod\t_\t_\n15\t18-a-share\t_\tADJ\tJJ\t_\t14\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\t$\t_\tSYM\t$\t_\t14\tconj\t_\t_\n19\t576\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\ttender\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tacquire\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tremaining\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tTelerate\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tshares\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n30\toutstanding\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n31\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n32\tDow\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tJones\t_\tPROPN\tNNP\t_\t34\tnsubj\t_\t_\n34\towns\t_\tVERB\tVBZ\t_\t12\tparataxis\t_\t_\n35\t67\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t34\tdobj\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tTelerate\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTelerate\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\trejected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\texpires\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\tNov.\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\t3\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tPutnam\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCos.\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tvarious\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\taffiliates\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tbased\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n13\tWells\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tFargo\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tBank\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tSan\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tFrancisco\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n21\tCalifornia\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tPublic\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tEmployees\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tRetirement\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSystem\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tSacramento\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tCalif.\t_\tPROPN\tNNP\t_\t27\tappos\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n32\tT.\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n33\tRowe\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n34\tPrice\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tAssociates\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tInc.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tBaltimore\t_\tPROPN\tNNP\t_\t36\tappos\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tletter\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n13\tconcerns\t_\tVERB\tVBZ\t_\t11\tdobj\t_\t_\n14\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t21\tmark\t_\t_\n16\twhether\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tJones\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\toffer\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tmeets\t_\tVERB\tVBZ\t_\t13\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tapplicable\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\trequirements\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tprocedural\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tfairness\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tJones\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tseen\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tgroup\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfiling\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tadded\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n20\tobviously\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\tDow\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tJones\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tdisagrees\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tconclusions\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOur\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t9\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tall\t_\tDET\tDT\t_\t6\tconj\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\ttendered\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t18\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tTrade\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tRepresentative\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tCarla\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tHills\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdispute-settlement\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpanel\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n11\tset\t_\tVERB\tVBD\t_\t10\tacl\t_\t_\n12\tup\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tunder\t_\tADP\tIN\t_\t20\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n15\tU.S.-Canadian\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n17\tfree\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\ttrade\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tagreement\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\truled\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n24\tCanada\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\trestrictions\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n27\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\texports\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tPacific\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tsalmon\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\therring\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n34\tviolate\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\taccord\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tCanada\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\thave\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n9\tuntil\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tNov.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t13\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tresolve\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdispute\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsolution\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\treached\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tthen\t_\tADV\tRB\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t16\tparataxis\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tright\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tsuspend\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tsome\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\ttrade\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tconcessions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tequivalent\t_\tNOUN\tNN\t_\t23\tamod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tvalue\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tlosses\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\tsuffered\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tU.S.\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tfish-processing\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tcompanies\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tAlaska\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tPacific\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tNorthwest\t_\tPROPN\tNNP\t_\t38\tconj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tOttawa\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tCanadian\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tTrade\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tMinister\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJohn\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCrosbie\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tdispute-settlement\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpanel\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\taccepted\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n18\tlegitimacy\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tCanada\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tposition\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tuse\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthese\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tlanding\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\trequirements\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tconserve\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tmanage\t_\tVERB\tVB\t_\t31\tconj\t_\t_\n34\tthese\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\timportant\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tfisheries\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tQuestioned\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n2\tabout\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tseeming\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcontradiction\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tCanadian\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tviews\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpanel\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\treport\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\taide\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tMrs.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tHills\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tpanel\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n27\thad\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n28\tclearly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\truled\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n30\tthat\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tCanadian\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\ttrade\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\trestrictions\t_\tNOUN\tNNS\t_\t37\tnsubj\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n36\tare\t_\tVERB\tVBP\t_\t37\tcop\t_\t_\n37\tillegal\t_\tADJ\tJJ\t_\t29\tccomp\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n39\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\ttrade\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trepresentative\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tput\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdollar\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\testimate\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlosses\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tresulting\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tCanadian\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\texport\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trestrictions\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCanada\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tinitially\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\texport\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tprohibition\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t9\tnsubjpass\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\treplaced\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tregulations\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\trequiring\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tthat\t_\tDET\tDT\t_\t16\tmark\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tfish\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\thad\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\tbrought\t_\tVERB\tVBN\t_\t16\txcomp\t_\t_\n20\tashore\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tBritish\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tColumbia\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tcommercial\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tfishermen\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\tprior\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\texport\t_\tVERB\tVB\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taction\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tdefended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tCanadian\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tconservation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tgrounds\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tdispute-settlement\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpanel\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trejected\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n10\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tCanadian\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tgovernment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\targument\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tfully\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\texpect\t_\tVERB\tVBP\t_\t27\tccomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tCanada\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tcomply\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpanel\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\truling\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tlanding\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trequirement\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\talso\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n22\tmust\t_\tAUX\tMD\t_\t24\taux\t_\t_\n23\tbe\t_\tAUX\tVB\t_\t24\tauxpass\t_\t_\n24\tended\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tshe\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tEarlier\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tinternational\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpanel\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n6\tset\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tup\t_\tPROPN\tNNP\t_\t6\tcompound:prt\t_\t_\n8\tunder\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\trules\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tGeneral\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAgreement\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tTariffs\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tTrade\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tGeneva\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\tdetermined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n24\toriginal\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tCanadian\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tfish-export\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\trestrictions\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tviolated\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n29\tGATT\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\trules\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\two\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\taccept\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdelays\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tafter\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tNov.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\t13\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tfish-processing\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfirms\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tenter\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n19\tinto\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcontracts\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tfall\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tpurchase\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tseason\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcatch\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tCanadian\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\trestrictions\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\tmust\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tremoved\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n9\tbefore\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcontracts\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\tauxpass\t_\t_\n13\tconcluded\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIdle\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tThought\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tspend\t_\tVERB\tVB\t_\t26\tdep\t_\t_\n3\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tcarefree\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tidle\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tWhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n10\tduty\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tcalls\t_\tVERB\tVBZ\t_\t14\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tpay\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\theed\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tTo\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\twhile\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tprecious\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\taway\t_\tADV\tRB\t_\t19\tcompound:prt\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t26\tpunct\t_\t_\n25\tCharacter\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n27\twhat\t_\tPRON\tWP\t_\t29\tdobj\t_\t_\n28\tyou\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\tneed\t_\tVERB\tVBP\t_\t26\tccomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n2\tMay\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tRichstone\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTelecussed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tguy\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n3\twho\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n4\tthrows\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tintercept\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t'Cause\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\treceiver\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tslips\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n11\tShould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tsomehow\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tadvised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\twe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\tAt\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\thome\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tcan\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tread\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tlips\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n2\tDick\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tEmmons\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBancOklahoma\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tcompleted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\trestructuring\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tagreement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tpreviously\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tagreed\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n11\tto\t_\tADP\tTO\t_\t10\tnmod\t_\t_\n12\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tFederal\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tDeposit\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tInsurance\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tcreditor\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n22\tsubordinated\t_\tVERB\tVBN\t_\t24\tamod\t_\t_\n23\tdebenture\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tholders\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tpermit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tbank\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tholding\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tretire\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tbank\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tdebenture\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tobligations\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tcash\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tequity\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFDIC\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1986\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n7\tprovided\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n8\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n9\t130\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\topen-bank\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tassistance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n15\tBancOklahoma\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tBank\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tOklahoma\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tTulsa\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tmaintain\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\t$\t_\tSYM\t$\t_\t27\tdobj\t_\t_\n29\t90\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tpreferred\t_\tVERB\tVBN\t_\t33\tamod\t_\t_\n33\tstock\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tTulsa\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tbank\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tunit\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t40\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tFDIC\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\treceive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tadditional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twarrants\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tentitling\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t16\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n20\t60\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tBancOklahoma\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tcommon\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\toutstanding\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n29\tup\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n30\tfrom\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\t55\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\t%\t_\tSYM\tNN\t_\t34\tamod\t_\t_\n34\toption\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tFDIC\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n37\treceived\t_\tVERB\tVBD\t_\t34\tacl:relcl\t_\t_\n38\tunder\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tterms\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n42\t1986\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n43\tcapital\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tinfusion\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n6\t76\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubjpass\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\tauxpass\t_\t_\n10\towed\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tcreditor\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\treceive\t_\tVERB\tVB\t_\t42\tccomp\t_\t_\n16\t3.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tBancOklahoma\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tcommon\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tproceeds\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfuture\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tsales\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tfour\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n32\tsubsidiary\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tbanks\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n35\tprivate\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tbuyers\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n38\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\tbank\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n40\tholding\t_\tVERB\tVBG\t_\t41\tamod\t_\t_\n41\tcompany\t_\tNOUN\tNN\t_\t42\tnsubj\t_\t_\n42\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t42\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tunder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tdebenture\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tholders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tget\t_\tVERB\tVB\t_\t50\tccomp\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcommon\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\texchange\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n20\t7.7\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tdebentures\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n25\tholders\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n26\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n27\tBancOklahoma\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tseries\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n30\tA\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tpreferred\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tstock\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\twill\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\treceive\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n35\t1.25\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tshares\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tcommon\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tstock\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tevery\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tshare\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tpreferred\t_\tVERB\tVBN\t_\t42\tnmod\t_\t_\n45\tthey\t_\tPRON\tPRP\t_\t46\tnsubj\t_\t_\n46\town\t_\tVERB\tVBP\t_\t42\tacl:relcl\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t50\tpunct\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tcompany\t_\tNOUN\tNN\t_\t50\tnsubj\t_\t_\n50\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t50\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\teconomist\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tLawrence\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tKudlow\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tSept.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\t29\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tissue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tfirm\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tGlobal\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tSpectator\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\tWere\t_\tVERB\tVB\t_\t3\tcop\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttrue\t_\tADJ\tJJ\t_\t21\tadvcl\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tweak\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcurrency\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tpaves\t_\tVERB\tVBZ\t_\t3\tdep\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tway\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ttrade\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsurpluses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n15\tthen\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n16\tpresumably\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n17\tArgentina\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t21\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcenter\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\ttoday\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tglobal\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\teconomy\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbegin\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\ttomorrow\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\texchange\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n12\tup\t_\tADP\tIN\t_\t15\tdep\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\tone\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t11\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tcommon\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\tall\t_\tDET\tDT\t_\t15\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n25\t16.6\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\t7\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\t3/4\t_\tNUM\tCD\t_\t30\tdep\t_\t_\n30\t%\t_\tSYM\tNN\t_\t32\tdep\t_\t_\n31\tconvertible\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tdebentures\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n33\tdue\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n34\t2001\t_\tNUM\tCD\t_\t33\tnmod:tmod\t_\t_\n35\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tpackage\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tnew\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tdebt\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n42\tcommon\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n43\tstock\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\twarrants\t_\tNOUN\tNNS\t_\t40\tconj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tterms\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tsporting\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tgoods\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tmaker\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tswap\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n14\t9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n15\tface\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tamount\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\t9\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t1/4\t_\tNUM\tCD\t_\t20\tdep\t_\t_\n20\t%\t_\tSYM\tNN\t_\t22\tdep\t_\t_\n21\tsubordinated\t_\tVERB\tVBD\t_\t22\tamod\t_\t_\n22\tnotes\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\tdue\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n24\t1996\t_\tNUM\tCD\t_\t23\tnmod:tmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n26\tone\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\twarrant\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n28\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\teach\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tcommon\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tEach\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twarrant\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tallows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tholder\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tBSN\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t10.75\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tany\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tnext\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tseven\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tcurrently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t4.6\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tcommon\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\toutstanding\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\toffering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t850\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n7\tface\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tamount\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tnotes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t64\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tcommon-stock\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twarrants\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\teach\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\t$\t_\tSYM\t$\t_\t21\tamod\t_\t_\n19\t1,000\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n20\tface\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tamount\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tconvertible\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdebt\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\toutstanding\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tcan\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tredeem\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twarrants\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\toption\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t1\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n15\teach\t_\tDET\tDT\t_\t14\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tcontingent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tcertain\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tamount\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\tbeing\t_\tAUX\tVBG\t_\t15\tauxpass\t_\t_\n15\texchanged\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tmaking\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\toffer\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tshrink\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcapital\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tincrease\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n14\tshareholder\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tvalue\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n2\tall\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbondholders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tholders\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tone\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tcommon\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\taccept\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tBSN\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tincrease\t_\tVERB\tVB\t_\t42\tccomp\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tdebt\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n23\t9\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n28\talso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n29\twill\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\trecognize\t_\tVERB\tVB\t_\t18\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\t$\t_\tSYM\t$\t_\t35\tamod\t_\t_\n33\t2\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\tgain\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n36\tfrom\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n37\tretiring\t_\tVERB\tVBG\t_\t35\tacl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\told\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tdebt\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n42\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n43\tMichael\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n44\tJ.\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tBlumenfeld\t_\tPROPN\tNNP\t_\t42\tnsubj\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\tpresident\t_\tNOUN\tNN\t_\t45\tappos\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t42\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n4\tsufficient\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcash\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tflow\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\thandle\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tthat\t_\tPRON\tDT\t_\t8\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffers\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\texpire\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tmid\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n10\tlate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tNovember\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tincome\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t37\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tBear\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tStearns\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCos.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tposted\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\t7.5\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t%\t_\tSYM\tNN\t_\t20\tamod\t_\t_\n20\tgain\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tnet\t_\tADJ\tJJ\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n25\tPaineWebber\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tGroup\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tprofit\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\tfell\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tbut\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n33\twould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n34\thave\t_\tAUX\tVB\t_\t35\taux\t_\t_\n35\trisen\t_\tVERB\tVBN\t_\t30\tconj\t_\t_\n36\twithout\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tspecial\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tgain\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n40\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tyear\t_\tNOUN\tNN\t_\t42\tnmod:npmod\t_\t_\n42\tago\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMerrill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthird-period\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t8\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n9\t41\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t34\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n21\t65.6\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n25\t58\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshare\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n32\tago\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTotal\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\treached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n5\t2.83\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tup\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n9\t10\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n13\t2.57\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfirm\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n7\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tweaker\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\trevenue\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\ttransactions\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\town\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\taccount\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdecline\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t19\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n24\t314.6\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\treduced\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\trevenue\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n29\tfrom\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n30\ttrading\t_\tVERB\tVBG\t_\t28\tacl\t_\t_\n31\tfixed-income\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tsecurities\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tInvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tbanking\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t22\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t296.6\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tfewer\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n13\tequity\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmunicipal\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\tunderwritings\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tcommission\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\trevenue\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t21\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n14\t462.8\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\thigher\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tvolume\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tstrong\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tsales\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmutual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tfunds\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tderived\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tinterest\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tdividends\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t30\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n12\t1.4\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAsset-management\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfee\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t12\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t151\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tloss\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t2.2\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tdiscontinued\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n14\toperations\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tdisposal\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n19\tFine\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n20\tHomes\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n21\tInternational\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tLimited\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tPartnership\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\treal-estate\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsubsidiary\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnet\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tended\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tSept.\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t29\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\treached\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t22.1\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\t23\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tcents\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n25\t20.5\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t20\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tyear-earlier\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tquarter\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGross\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t21\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n8\t580.4\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n12\t478.9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProfit\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\town\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\taccount\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsecurities\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tfirm\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tInvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tbanking\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trevenue\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t25\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tcommission\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\trevenue\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tadvanced\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n12\t31\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tstronger\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tretail\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tholding\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tBear\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tStearns\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tinvestment\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbanking\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tbrokerage\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tfirm\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tBear\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tStearns\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t13.625\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n19\t25\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tPaineWebber\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tnet\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tincome\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n13\t16.8\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\t41\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n22\treflecting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n25\tbroad-based\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\timprovement\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcompany\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tcore\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tbusinesses\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRetail\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tprofit\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n11\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tmodest\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcontributor\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthird-quarter\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tresults\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tnet\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n6\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tbanking\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n12\tfirm\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n15\t20.9\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\t50\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\tincluding\t_\tVERB\tVBG\t_\t28\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tspecial\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tpretax\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tgain\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\t$\t_\tSYM\t$\t_\t28\tnmod\t_\t_\n31\t46.3\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tsale\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tcompany\t_\tNOUN\tNN\t_\t40\tnmod:poss\t_\t_\n39\t's\t_\tPART\tPOS\t_\t38\tcase\t_\t_\n40\tinterest\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n41\tin\t_\tADP\tIN\t_\t46\tcase\t_\t_\n42\tNational\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n43\tCar\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n44\tRental\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n45\tSystems\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tInc\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n4\t444.9\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t9\tcase\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinterest\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tslightly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n15\t450.7\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tcomposite\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\tyesterday\t_\tADV\tRB\t_\t9\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tPaineWebber\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t18.50\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n15\t75\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t14\tnmod:npmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSeafirst\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsigned\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tbuilder\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tMartin\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSelig\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tpurchase\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\theadquarters\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbuilding\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tColumbia\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tSeafirst\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCenter\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n25\t354\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPurchase\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\t76-story\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tstructure\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\texecution\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tdefinitive\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tagreement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tapproval\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tboards\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tSeafirst\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n23\tparent\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n25\tBankAmerica\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n29\tapproval\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n30\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tregulators\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tupheaval\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tapparently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\ttriggered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcash\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcrunch\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n12\tyet\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIndividual\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tinvestment\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n7\tarbitragers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n8\twho\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n9\tspeculate\t_\tVERB\tVBP\t_\t2\tacl:relcl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttakeover\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcandidates\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tsuffer\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tliquidity\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tpayment\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n21\tproblems\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tdive\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n25\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n26\tthose\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tinvestors\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\toften\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tborrow\t_\tVERB\tVBP\t_\t17\tparataxis\t_\t_\n30\theavily\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tbuy\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n33\ttheir\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tholdings\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n36\tuse\t_\tVERB\tVB\t_\t29\tconj\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tstocks\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n39\tas\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tcollateral\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n41\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tloans\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tseveral\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tlarge\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbanks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tdetected\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n9\tno\t_\tDET\tDT\t_\t10\tneg\t_\t_\n10\tsigns\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tunusual\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdemand\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tcredit\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n17\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tsignal\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdifficulties\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tseeing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n5\tnothing\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tordinary\t_\tADJ\tJJ\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tofficial\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n15\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tTop\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\t10\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tbank\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tgood\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbecause\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n10\tswim\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\twater\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAdded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n2\tanother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texecutive\t_\tNOUN\tNN\t_\t1\tnsubj\t_\t_\n4\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbank\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n10\tWe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n12\tall\t_\tDET\tDT\t_\t15\tdep\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlittle\t_\tADJ\tJJ\t_\t15\tnmod:npmod\t_\t_\n15\tgoosey\t_\tADJ\tJJ\t_\t1\tccomp\t_\t_\n16\tover\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tweekend\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\ttrying\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tforecast\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\twhat\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\thappen\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\t-LCB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n26\tMonday\t_\tPROPN\tNNP\t_\t24\tnmod:tmod\t_\t_\n27\t-RCB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n29\tbut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t34\tnsubjpass\t_\t_\n31\t's\t_\tAUX\tVBZ\t_\t34\tauxpass\t_\t_\n32\tbeen\t_\tVERB\tVBN\t_\t34\tcop\t_\t_\n33\tvery\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tquiet\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tas\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttomorrow\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\thell\t_\tINTJ\tUH\t_\t1\tdiscourse\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t10\tnsubj\t_\t_\n10\tknows\t_\tVERB\tVBZ\t_\t1\tdep\t_\t_\n11\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t2\tnsubj\t_\t_\n2\thappened\t_\tVERB\tVBD\t_\t4\tcsubj\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tfinancial\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n9\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n10\tyet\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tsufficiently\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tcoordinated\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\thandle\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tanother\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmeltdown\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tfiddling\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\twith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tsystems\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tprocedures\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tprevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tfrom\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tsuffering\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tpanic\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\twave\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tselling\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\toperate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tgreater\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tlesser\t_\tADJ\tJJR\t_\t6\tconj\t_\t_\n9\tefficiency\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tplunge\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\twise\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\thalt\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\twhenever\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\tpanic\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tconditions\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tarose\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tadopted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n8\tspecific\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcircuit\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbreakers\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n12\tIf\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tDow\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tJones\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tfalls\t_\tVERB\tVBZ\t_\t27\tadvcl\t_\t_\n18\t250\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tpoints\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tday\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\texchange\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twill\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\thalt\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n28\ttrading\t_\tVERB\tVBG\t_\t27\tdobj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tone\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\thour\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t;\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n33\tif\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdecline\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\thits\t_\tVERB\tVBZ\t_\t43\tadvcl\t_\t_\n37\t400\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tpoints\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\texchange\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n42\twill\t_\tAUX\tMD\t_\t43\taux\t_\t_\n43\tclose\t_\tVERB\tVB\t_\t27\tparataxis\t_\t_\n44\tfor\t_\tADP\tIN\t_\t48\tcase\t_\t_\n45\tan\t_\tDET\tDT\t_\t48\tdet\t_\t_\n46\tadditional\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n47\ttwo\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\thours\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trationale\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tinterruption\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tallow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\treconsider\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tstrategies\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tcalm\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n18\tsellers\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\tlead\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n21\tbuyers\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tenter\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tindicated\t_\tVERB\tVBN\t_\t30\tamod\t_\t_\n28\tnew\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tlevels\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\timpossible\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tdep\t_\t_\n5\tknow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n6\twhether\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttheory\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\trealistic\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttemporary\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcessation\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tindeed\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdiscourage\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tselling\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tpanic\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tfrom\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tfeeding\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\titself\t_\tPRON\tPRP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpossibility\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tshutting\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n9\tdown\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tintensify\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tfears\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tcause\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n16\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\teven\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tmore\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n19\tabrupt\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tslide\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tprices\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t2\tnsubj\t_\t_\n2\thappened\t_\tVERB\tVBD\t_\t6\tcsubj\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tworst\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tall\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tworlds\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\texchanges\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfollowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n6\town\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tpre-set\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcircuit\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbreakers\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tshut\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n12\tdown\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n15\t3\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tp.m.\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t30\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tafter\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tStandard\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tPoor\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n27\t500\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n28\tstock\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tindex\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\thad\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n31\tfallen\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n32\t12\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tpoints\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tor\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n36\tabout\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n37\t100\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tpoints\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n39\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\tDow\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n42\tJones\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tindex\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOptions\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tstopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tunder\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\town\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\trules\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tremained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\topen\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tnowhere\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\telse\t_\tADV\tRB\t_\t14\tnmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tgo\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n7\tsellers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n10\tparticularly\t_\tADV\tRB\t_\t12\tdep\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tfocused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tall\t_\tDET\tDT\t_\t17\tdet:predet\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tselling\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tYork\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tStock\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tExchange\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tliquidity\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthat\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tweakened\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tsharply\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfutures\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\toptions\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\topen\t_\tADJ\tJJ\t_\t15\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tadditional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tliquidity\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n12\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\thave\t_\tAUX\tVB\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tprovided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdecline\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n20\tmost\t_\tADV\tRBS\t_\t21\tadvmod\t_\t_\n21\tprobably\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n23\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n24\thave\t_\tAUX\tVB\t_\t27\taux\t_\t_\n25\tbeen\t_\tVERB\tVBN\t_\t27\tcop\t_\t_\n26\tless\t_\tADV\tRBR\t_\t27\tadvmod\t_\t_\n27\tintense\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t3:30\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tintense\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttelephone\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n8\tbetween\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tWashington\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tfutures\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\treopened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\taltogether\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t3:45\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarkets\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tdropped\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n18\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tadditional\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\t30\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tdaily\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tlimit\t_\tNOUN\tNN\t_\t21\tacl:relcl\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tdeclines\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\toptions\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tshut\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tdown\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tonce\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\tleft\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n15\tall\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\thandled\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n20\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tStock\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tExchange\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trecognize\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tStock\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarkets\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\toptions\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n21\tthough\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tphysically\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tseparate\t_\tADJ\tJJ\t_\t27\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n25\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n26\tactually\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tbecome\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n28\tso\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tclosely\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tintertwined\t_\tVERB\tVBN\t_\t27\txcomp\t_\t_\n31\tas\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tconstitute\t_\tVERB\tVB\t_\t30\tadvcl\t_\t_\n34\tone\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tmarket\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\teffectively\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tvary\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tstrategies\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\texecute\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\torders\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tany\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tone\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tthem\t_\tPRON\tPRP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\ttherefore\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tsense\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\teach\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tadopt\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n11\tdifferent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tcircuit\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tbreakers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tachieve\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tmaximum\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tliquidity\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tminimize\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tvolatility\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\teither\t_\tCONJ\tCC\t_\t2\tcc:preconj\t_\t_\n11\tall\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n13\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n15\topen\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\ttrading\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n19\tnone\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSynchronized\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n2\tcircuit\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbreakers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tslide\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\tprobably\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\tmade\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tsmoother\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\tless\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n25\tvolatile\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\texecutions\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t3\tdep\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tfor\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\texchanges\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tSecurities\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tCommission\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tagree\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tjoint\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tconditions\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tfor\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\thalting\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tstaying\t_\tVERB\tVBG\t_\t19\tconj\t_\t_\n23\topen\t_\tADJ\tJJ\t_\t22\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLet\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\t's\t_\tPRON\tPRP\t_\t1\tdobj\t_\t_\n3\tnot\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\thave\t_\tVERB\tVB\t_\t1\tdep\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tshut\t_\tVERB\tVBD\t_\t4\txcomp\t_\t_\n8\tdown\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t30\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tminutes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tDow\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tdeclines\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n16\t100\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tanother\t_\tDET\tDT\t_\t20\tnsubj\t_\t_\n20\tshut\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n21\tdown\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\thour\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tafter\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\t250-point\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdecline\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tneed\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\thurried\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tlast-minute\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttelephone\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tofficials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tdisappear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tonce\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\trules\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t17\tcop\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tplace\t_\tNOUN\tNN\t_\t12\tadvcl\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tsynchronize\t_\tVERB\tVBP\t_\t17\tccomp\t_\t_\n20\tcircuit\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tbreakers\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tall\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcircuit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbreakers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t16\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tapplied\t_\tVERB\tVBN\t_\t8\txcomp\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tall\t_\tDET\tDT\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\toptions\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\tcontinue\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n23\tas\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tlong\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n25\tas\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n27\tNew\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n28\tYork\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tStock\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tExchange\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n31\tremains\t_\tVERB\tVBZ\t_\t24\tadvcl\t_\t_\n32\topen\t_\tADJ\tJJ\t_\t31\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trules\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\tshould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\testablished\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tofficials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tall\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\taffected\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n14\texchanges\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tacting\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n16\tunder\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\toversight\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tapproval\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tgovernment\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tregulatory\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tagencies\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tShould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tSEC\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tCommodities\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tFutures\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tTrading\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCommission\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tSEC\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n17\tregulates\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tChicago\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tstock-index\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmarkets\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n24\tunable\t_\tADJ\tJJ\t_\t31\tadvcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tagree\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tissue\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\tmay\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n32\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n33\tbe\t_\tAUX\tVB\t_\t34\tauxpass\t_\t_\n34\tresolved\t_\tVERB\tVBN\t_\t31\txcomp\t_\t_\n35\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tdecision\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tTreasury\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tsecretary\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tways\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tour\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tfinancial\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t10\tauxpass\t_\t_\n9\tbetter\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\tprepared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ttoday\t_\tADV\tRB\t_\t10\tnmod:tmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\thandle\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthan\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\twere\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n19\ttwo\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n21\tago\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcapacity\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\thandle\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tvolume\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tnearly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tadvmod\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tday\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTelephone\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tservice\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\tauxpass\t_\t_\n5\timproved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcustomers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\ttrying\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\treach\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tbrokers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\tspecialists\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n17\twho\t_\tPRON\tWP\t_\t19\tdobj\t_\t_\n18\tI\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tbelieve\t_\tVERB\tVBP\t_\t15\tacl:relcl\t_\t_\n20\tshould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tstay\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tdespite\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\turgings\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tsome\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tpost-crash\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcritics\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n31\thave\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n32\tlarger\t_\tADJ\tJJR\t_\t34\tamod\t_\t_\n33\tcapital\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tpositions\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n2\tOf\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tcourse\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tspecialists\t_\tNOUN\tNNS\t_\t7\tnmod:poss\t_\t_\n6\t'\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tactions\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\talone\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tnever\t_\tADV\tRB\t_\t11\tneg\t_\t_\n11\tprevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcrack\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWitness\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfact\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n10\tearly\t_\tADJ\tJJ\t_\t11\tadvmod\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t9\tadvmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\topened\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n14\tlate\t_\tADJ\tJJ\t_\t15\tadvmod\t_\t_\n15\tMonday\t_\tPROPN\tNNP\t_\t13\tadvmod\t_\t_\n16\tbecause\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tof\t_\tADP\tIN\t_\t16\tmwe\t_\t_\n18\tan\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\texcess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsell\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\torders\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t1\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttask\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\timproving\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tperformance\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tunfinished\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFreund\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformer\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\teconomist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tStock\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tExchange\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tprofessor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\teconomics\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tPace\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tUniversity\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tbusiness\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tschool\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tNew\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tYork\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tUNIFIED\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tEUROPE\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tposes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tlabor\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproblems\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tprospects\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tfirms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\tsocial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdimension\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tworker\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tconcerns\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tEuropean\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCommunity\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tplan\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\topen\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tinternal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tborders\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t1992\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n23\tcould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tset\t_\tVERB\tVB\t_\t37\tccomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\teffort\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n28\toff\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\trails\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n32\tif\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n33\tnot\t_\tADV\tRB\t_\t34\tneg\t_\t_\n34\tdone\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n35\treasonably\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n37\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n38\tGeneral\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n39\tElectric\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n40\tsenior\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n41\tvice\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n42\tpresident\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n43\tFrank\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tDoyle\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\twanting\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\texpand\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tEurope\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tface\t_\tVERB\tVBP\t_\t33\tccomp\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n10\ttough\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpressure\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tunions\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tnations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n17\tsuch\t_\tADJ\tJJ\t_\t20\tcase\t_\t_\n18\tas\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tWest\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGermany\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tplay\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tbig\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tconsulting\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\trole\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tmanagement\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tdecisions\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n32\the\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tFMC\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tBaxter\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInternational\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tunions\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\two\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tlike\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n12\tplant\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trelocations\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tneeded\t_\tVERB\tVBN\t_\t16\tamod\t_\t_\n16\trestructuring\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tmeans\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n20\tlayoffs\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\temployers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tbegun\t_\tVERB\tVBN\t_\t36\tdep\t_\t_\n6\tmoving\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tsouthern\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcountries\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t12\tcase\t_\t_\n11\tas\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tSpain\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tItaly\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twhere\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\twages\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n19\tlow\t_\tADJ\tJJ\t_\t9\tacl:relcl\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tunions\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n22\tare\t_\tVERB\tVBP\t_\t23\tcop\t_\t_\n23\tweaker\t_\tADJ\tJJR\t_\t19\tconj\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n25\tdemand\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\ttrained\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\tlabor\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tmanagers\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n31\twill\t_\tAUX\tMD\t_\t32\taux\t_\t_\n32\trise\t_\tVERB\tVB\t_\t5\tparataxis\t_\t_\n33\tthere\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n35\tFMC\t_\tPROPN\tNNP\t_\t36\tnsubj\t_\t_\n36\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tPfizer\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tFluor\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n5\tGE\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n6\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tbig\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n9\tEC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\t92\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tpluses\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpush\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tjob\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\ttraining\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\tease\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n21\tin\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tmoving\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tfinding\t_\tVERB\tVBG\t_\t22\tconj\t_\t_\n25\tworkers\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCLUBBING\t_\tVERB\tVBG\t_\t10\tcsubj\t_\t_\n2\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tFAN\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBaltimore\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tOrioles\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tfault\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfederal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tjudge\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcase\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\tinvolving\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tplayers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n15\tminor\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n16\tleague\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n17\tBluefield\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tVa.\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tOrioles\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tBaltimore\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tfarm\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tteam\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplayers\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\theckled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpatron\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n10\tJuly\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n11\t4\t_\tNUM\tCD\t_\t10\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n13\t1988\t_\tNUM\tCD\t_\t10\tdep\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tgame\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tMartinsville\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tPhillies\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tparent\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\tthat\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n8\tBluefield\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n10\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\thaving\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tjudge\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgame\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n6\tBluefield\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tlost\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t9-8\t_\tNUM\tCD\t_\t7\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tstranding\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n12\tthree\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\trunners\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t...\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tninth\t_\tADJ\tJJ\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tnoted\t_\tVERB\tVBD\t_\t25\tparataxis\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\ttrouble\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\ttaunting\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tparking\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tplayers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t12\tparataxis\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfight\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfan\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tpunched\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tkicked\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tplayer\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tnsubj\t_\t_\n16\tbroke\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tjaw\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tbaseball\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tbat\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tjudge\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdismissed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfan\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tsuit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tteam\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\thowever\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\truling\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tOrioles\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tinnocent\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tnegligent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\thiring\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n23\tnot\t_\tADV\tRB\t_\t24\tneg\t_\t_\n24\tresponsible\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tfight\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t34\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t34\tcop\t_\t_\n30\toutside\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tplayers\t_\tNOUN\tNNS\t_\t34\tnmod:poss\t_\t_\n33\t'\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\temployment\t_\tNOUN\tNN\t_\t27\tacl:relcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPROPOSALS\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tARISE\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tfor\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tcoping\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tshortage\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tnurses\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\tAssociation\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tAcademic\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tHealth\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCenters\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\treport\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\turges\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tfreeing\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\tnurses\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tduties\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n14\tdo\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\trequire\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n17\tspecial\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tskills\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\trecommends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tbetter\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tretirement\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tday-care\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbenefits\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tbasing\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n12\tpay\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\teducation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\texperience\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tnurses\t_\tNOUN\tNNS\t_\t22\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tdemanding\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\twork\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tschedules\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\topposes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tAmerican\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tMedical\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tAssociation\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tproposal\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tcreating\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n13\tregistered\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcare\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\ttechnologist\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tpotentially\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdivisive\t_\tADJ\tJJ\t_\t3\tadvcl\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsays\t_\tVERB\tVBZ\t_\t3\tparataxis\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tjob\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n28\twould\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tentail\t_\tVERB\tVB\t_\t25\tccomp\t_\t_\n30\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tunwanted\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tnew\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tdoctor\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t38\tpunct\t_\t_\n36\tbedside\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t38\tpunct\t_\t_\n38\textension\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t3\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tadvmod\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t618\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\thospitals\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tsurveyed\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tconsultant\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tHewitt\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAssociates\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tuse\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tclinical\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tladder\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n19\tbasing\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n20\tadvancement\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tperformance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\teducation\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMany\t_\tADV\tRB\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tuse\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\trecruiting\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\tbonuses\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ttuition\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\treimbursement\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tloan\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trepayment\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tchild-care\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thelp\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tgive\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tlump-sum\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincentives\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMRA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tStaffing\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSystems\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsigns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tnurses\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tpaid\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\ttravel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tpromising\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\tannual\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tup\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t50,000\t_\tNUM\tCD\t_\t13\tacl\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tfree\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tsubsidized\t_\tVERB\tVBN\t_\t19\tconj\t_\t_\n22\thousing\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTREATING\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n2\tEMPLOYEES\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n3\twith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\trespect\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tcrucial\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tmanagers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tconsultant\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tHay\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tGroup\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n14\tafter\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tsurveys\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tworkers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n3\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n5\ttop\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\tfive\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n8\twork\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tvalues\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tFully\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\t80\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t26\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\temployees\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tbosses\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\ttreat\t_\tVERB\tVBP\t_\t7\tccomp\t_\t_\n11\tthem\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trespect\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n16\tonly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n18\tthird\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthose\t_\tPRON\tDT\t_\t18\tnmod\t_\t_\n21\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n22\tdo\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n23\tn't\t_\tPART\tRB\t_\t24\tneg\t_\t_\n24\tfeel\t_\tVERB\tVB\t_\t20\tacl:relcl\t_\t_\n25\trespected\t_\tVERB\tVBN\t_\t24\txcomp\t_\t_\n26\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n27\tthey\t_\tPRON\tPRP\t_\t29\tnsubjpass\t_\t_\n28\t're\t_\tAUX\tVBP\t_\t29\tauxpass\t_\t_\n29\tsatisfied\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n30\twith\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n31\twhere\t_\tADV\tWRB\t_\t33\tadvmod\t_\t_\n32\tthey\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\twork\t_\tVERB\tVBP\t_\t29\tadvcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tSPRUCING\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tUP\t_\tADP\tRP\t_\t1\tcompound:prt\t_\t_\n3\tTHE\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tDIGS\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n6\tAbout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t200\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\temployees\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tMaryland\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tDepartment\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tEconomic\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tEmployment\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tDevelopment\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tfour\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n21\tpainted\t_\tVERB\tVBD\t_\t1\tparataxis\t_\t_\n22\twalls\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n24\tpolished\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tcarpeted\t_\tVERB\tVBD\t_\t24\tconj\t_\t_\n27\tfloors\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\tbought\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n30\tplants\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n32\tcleaned\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n33\twindows\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tblinds\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n38\thung\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n39\tpictures\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n40\tat\t_\tADP\tIN\t_\t45\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tagency\t_\tNOUN\tNN\t_\t45\tnmod:poss\t_\t_\n43\t's\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tBaltimore\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\toffice\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t3,000\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\thours\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\twork\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tsave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tstate\t_\tNOUN\tNN\t_\t7\tiobj\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t55,000\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCURBING\t_\tVERB\tVBG\t_\t5\tcsubj\t_\t_\n2\tWAGE\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tBOOSTS\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tget\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n6\thigh\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpriority\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tagain\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\t1990\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tcollective\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbargaining\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n15\tBureau\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tNational\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tAffairs\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tsurvey\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t250\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tpacts\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\texpiring\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n26\tnext\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t25\tnmod:tmod\t_\t_\n28\tindicates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tlabor-shortage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\twarnings\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\t80\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tnsubj\t_\t_\n7\taim\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tfirst-year\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\twage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tincreases\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tunder\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n14\t4\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n18\t77\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t20\tnsubj\t_\t_\n20\tsay\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n22\t'd\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\ttry\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\treplace\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tworkers\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n28\tif\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tstruck\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n32\twould\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\tconsider\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t33\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTEMPORARY\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tWORKERS\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n4\tgood\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\teducations\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tNational\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAssociation\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tTemporary\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tServices\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tsurvey\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t2,508\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\temployees\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tshows\t_\tVERB\tVBZ\t_\t13\tparataxis\t_\t_\n22\t82\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n24\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tmore\t_\tADJ\tJJR\t_\t23\tnmod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\thigh-school\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\teducation\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n32\t31\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t23\tconj\t_\t_\n34\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tcollege\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tdegrees\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t12\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tretired\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfull-time\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tjob\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\t54\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t15\tnsubjpass\t_\t_\n14\twere\t_\tAUX\tVBD\t_\t15\tauxpass\t_\t_\n15\tasked\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tstay\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\ton\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tfull\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHOME-SALE\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tLOSSES\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\trise\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t9\tnsubjpass\t_\t_\n7\t're\t_\tAUX\tVBP\t_\t9\tauxpass\t_\t_\n8\toften\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tcovered\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n10\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\temployers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsearch\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tways\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tlimit\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdamage\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tadvmod\t_\t_\n2\tthird\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\t439\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tcompanies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tsurveyed\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tEmployee\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tRelocation\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCouncil\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\treport\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\trise\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\t1988\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t72\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t4\tnsubj\t_\t_\n4\treimburse\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tall\t_\tDET\tDT\t_\t9\tamod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsome\t_\tDET\tDT\t_\t6\tconj\t_\t_\n9\tlosses\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1984\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tcompanies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tgive\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n7\tsales-loss\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\taid\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\treal-estate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tvalues\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tdepreciated\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcouncil\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tRJR\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNabisco\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tIN\t_\t6\tdep\t_\t_\n5\tto\t_\tADP\tTO\t_\t4\tmwe\t_\t_\n6\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n7\t30,000\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tlosses\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tincluding\t_\tVERB\tVBG\t_\t12\tcase\t_\t_\n12\timprovements\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGoodrich\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\two\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tensure\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcoverage\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tprevent\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tcatastrophic\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tloss\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tgiven\t_\tVERB\tVBN\t_\t4\tparataxis\t_\t_\n20\tsome\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\temployees\t_\tNOUN\tNNS\t_\t19\tiobj\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tfull\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tpurchase\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n26\twhen\t_\tADV\tWRB\t_\t28\tadvmod\t_\t_\n27\tvalues\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tfell\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tconcern\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n31\tover\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tdangers\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tposed\t_\tVERB\tVBN\t_\t32\tacl\t_\t_\n34\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tdisposal\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tsite\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tExpress\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tChemical\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tFord\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n9\tNational\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCity\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\thome\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\tlet\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tworker\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tsell\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\toutside\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfirm\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n27\tusually\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n28\two\t_\tAUX\tMD\t_\t30\taux\t_\t_\n29\tn't\t_\tPART\tRB\t_\t30\tneg\t_\t_\n30\tcover\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tloss\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1984\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tfirms\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n5\toffering\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\tprepurchase\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\thouse\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tappraisals\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdeter\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n12\toverpaying\t_\tVERB\tVBG\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t40\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tthose\t_\tPRON\tDT\t_\t17\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcouncil\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tpolled\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t28\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t14\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTHE\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tCHECKOFF\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tNational\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAcademy\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tEngineering\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tgives\t_\tVERB\tVBZ\t_\t2\tparataxis\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tinventors\t_\tNOUN\tNNS\t_\t9\tiobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsemiconductor\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmicrochip\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\t$\t_\tSYM\t$\t_\t20\tamod\t_\t_\n18\t350,000\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n19\tachievement\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\taward\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n21\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t5\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\treactionary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\tLetter\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n8\tCarriers\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n9\tunion\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tVincent\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tSombrotto\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\taccuses\t_\tVERB\tVBZ\t_\t5\tparataxis\t_\t_\n14\tPhiladelphia\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tpostmaster\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tCharles\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tJames\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n20\t12th\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tcentury\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n22\t...\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n23\toppressive\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tmanagement\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\ttactics\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\twords\t_\tNOUN\tNNS\t_\t29\tdep\t_\t_\n7\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n10\tStock\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n12\tChairman\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tJohn\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tJ.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tPhelan\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tJr.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tjust\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n19\tyour\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n21\treasonably\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tnormal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n24\t400\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion-share\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\tup\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\t88-points\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n4\tall\t_\tDET\tDT\t_\t3\tdep\t_\t_\n5\tover\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tstaged\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\thuge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trecovery\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\tBig\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tofficials\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\twere\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n18\tself-congratulatory\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tabout\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\thow\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n21\twell\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tday\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n24\thad\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\tgone\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\texchange\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprocedures\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tpersonnel\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tequipment\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tlinks\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\texchanges\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\tperformed\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n21\tbetter\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n5\toperating\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproblems\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tall\t_\tDET\tDT\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPhelan\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tclosed\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tAll\t_\tDET\tDT\t_\t4\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tthings\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n5\tthat\t_\tADP\tIN\t_\t7\tdobj\t_\t_\n6\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tset\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tslow\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tdown\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprocess\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlet\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n17\tpeople\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tknow\t_\tVERB\tVB\t_\t16\tdep\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\textreme\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tposition\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n28\tworked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\textremely\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\twell\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n2\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t416.3\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tchanged\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n9\thands\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsession\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\twere\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tcarried\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n15\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\texchange\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttape\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tbarely\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdelay\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tofficials\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\treaching\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n3\tblockbuster\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tproportions\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tvolume\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n10\tstill\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n11\twell\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n12\twithin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t600\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion-share\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcapacity\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n17\tthat\t_\tADP\tIN\t_\t21\tdobj\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\texchange\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\tcan\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\thandle\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\tdaily\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\tsince\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\tbeefing\t_\tVERB\tVBG\t_\t24\tadvcl\t_\t_\n28\tup\t_\tADP\tRP\t_\t27\tcompound:prt\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\tcomputers\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n31\tafter\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tOctober\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\t1987\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tcrash\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tso-called\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcircuit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbreakers\t_\tNOUN\tNNS\t_\t26\tnsubjpass\t_\t_\n5\tdevised\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tChicago\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tMercantile\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tquell\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n17\tfree\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tfalls\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t26\tauxpass\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\ttriggered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n27\tyesterday\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n28\tbecause\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarkets\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n32\thigher\t_\tADJ\tJJR\t_\t26\tadvcl\t_\t_\n33\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tmost\t_\tADV\tRBS\t_\t32\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tday\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tcomplaints\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tPhelan\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tlinks\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n11\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tChicago\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tworked\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n17\tas\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tplanned\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\trout\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tprovide\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tcooling-off\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tperiod\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tgreater\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\thelp\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tBig\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tBoard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t11\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n14\tnatural\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcircuit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbreaker\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tweekend\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tprovided\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tbreathing\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tperiod\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tthat\t_\tADP\tIN\t_\t29\tnsubj\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n29\tbrought\t_\tVERB\tVBN\t_\t26\tacl:relcl\t_\t_\n30\trationality\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n31\tback\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tmarket\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tChicken\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tChains\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tRuffled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tBy\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tLoss\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tCustomers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n\n1\tFAST-FOOD\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tchicken\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tchains\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tfaced\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tworsening\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tslump\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\tstruggling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\thatch\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tsome\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tmarketing\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tstrategies\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tCrest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tReport\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\ttracks\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tconsumer\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpurchases\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tcustomer\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttraffic\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tchicken\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\trestaurants\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tfell\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n17\t10\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tsecond\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tquarter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\twhile\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\toverall\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n27\tfast-food\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n28\tcustomer\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcount\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n31\tdown\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\t2\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tChicken\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tbusiness\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\toff\t_\tADJ\tJJ\t_\t22\tccomp\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\tbecause\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tof\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\tcompetition\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tgrocery-store\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tconvenience\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tfood\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\thome-delivered\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpizza\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\ttakeout\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tfare\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tspokesman\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\treport\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpublication\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tNPD\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tGroup\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n37\tresearch\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tfirm\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n39\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tPort\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tWashington\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tN.Y\t_\tPROPN\tNNP\t_\t41\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tloss\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tcustomers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlatest\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstring\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tproblems\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tChurch\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tFried\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tChicken\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t20\tnsubjpass\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tPopeye\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tFamous\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tFried\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tChicken\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tmerged\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t20\tauxpass\t_\t_\n19\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\ttroubled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\toverlapping\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\trestaurant\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tlocations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tChicken\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tchains\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tfeeling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tpressure\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tMcDonald\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tintroduced\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tMcChicken\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tsandwich\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n21\trecently\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\ttested\t_\tVERB\tVBD\t_\t14\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsale\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tindividual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tpieces\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tchicken\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNew\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmanagement\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n3\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tKentucky\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tFried\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tChicken\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tunit\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tPepsiCo\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tfought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tback\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n19\tmedium\t_\tNOUN\tNN\t_\t23\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tlarge\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tchicken\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsandwiches\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tlunch\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tcrowd\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tchain\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\ttesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t10\tnsubjpass\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t10\tauxpass\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tfried\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t17\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\tchar-grilled\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tchicken\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttry\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\twin\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\thealth-conscious\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tconsumers\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tKentucky\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tFried\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tChicken\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\ttesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\thome-delivery\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tchicken\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n12\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\thit\t_\tNOUN\tNN\t_\t7\tacl:relcl\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tstay-at-home\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdiners\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfast-food\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tanalysts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tproblems\t_\tNOUN\tNNS\t_\t16\tnsubjpass\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tkeeping\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n10\tchicken\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\twarm\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tfresh\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tmust\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tsolved\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n17\tfirst\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tKentucky\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tFried\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tChicken\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\tdisputed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnotion\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdelivery\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tservice\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\texperienced\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n17\tproblems\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsome\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarkets\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\twhere\t_\tADV\tWRB\t_\t25\tadvmod\t_\t_\n22\ttesting\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tdiscontinued\t_\tVERB\tVBN\t_\t20\tacl:relcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttest\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tcontinuing\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tChicago\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tColumbus\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tOhio\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcities\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tadvertising\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tbuzzing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\trumors\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tKentucky\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tFried\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tChicken\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tdrop\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n14\tYoung\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n15\t&\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tRubicam\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\tseek\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tnew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tad\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tagency\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclines\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcomment\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEmanuel\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGoldman\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tPaineWebber\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tanalyst\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tKentucky\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tFried\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tChicken\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tpost\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n15\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\t11\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\tdrop\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\t1989\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tnet\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tincome\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n5\tlaggard\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t5\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\t'll\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thave\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tbecome\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tmore\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n19\taggressive\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tReluctant\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tAdvertisers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tTry\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tSoft-Sell\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tSpots\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n\n1\tCALL\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tIT\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tun-advertising\t_\tNOUN\tNN\t_\t1\txcomp\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tPittsburgh\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tconsultant\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\tDavid\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBear\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tselling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsoft\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tapproach\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tclients\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\twant\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n14\texposure\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tyet\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tshun\t_\tVERB\tVBP\t_\t13\tconj\t_\t_\n17\tpushy\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tads\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHis\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tploy\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t60-second\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tradio\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tspots\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\toffer\t_\tVERB\tVBP\t_\t6\tacl:relcl\t_\t_\n9\thelpful\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\thints\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tplug\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsponsor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbrief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmention\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tend\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tspot\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmessages\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tresemble\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBusiness\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tTraveler\t_\tPROPN\tNNP\t_\t3\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdaily\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdose\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ttravel\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttips\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tdeveloped\t_\tVERB\tVBN\t_\t13\tdep\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tBear\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tsponsored\t_\tVERB\tVBN\t_\t14\tconj\t_\t_\n20\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ttravel\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tagencies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tseveral\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tmajor\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcities\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNew\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tun-advertisers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tBurt\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tHill\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tKosar\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tRittlemann\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociates\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n11\tButler\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tPa.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tarchitectural\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfirm\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tradio\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tseries\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tspots\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tFloodlights\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tEvening\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tWear\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tUrban\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tStructures\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n19\tBuilding\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tPlace\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tPark\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tharder\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tsell\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t16\tparataxis\t_\t_\n6\tJohn\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tKosar\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfirm\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tpresident\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n16\tdetract\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tprofession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tHospitals\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tsigned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tuse\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmessages\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tpromote\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n11\tfundraisers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tEquitable\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tGas\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCo.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tconsidering\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tformat\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\toffer\t_\tVERB\tVB\t_\t18\tadvcl\t_\t_\n23\tenergy\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\ttips\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n26\tconsumers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tsuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tspots\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tsoft\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n4\talways\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trisk\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tlost\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\tmessages\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tJohn\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFitzgerald\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tchairman\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tKetchum\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tAdvertising\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tUSA\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tcreated\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n24\tsimilar\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tradio\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tspots\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tPittsburgh\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tNational\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tBank\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tquestion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\thow\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n8\tmuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcredibility\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tgain\t_\tVERB\tVBP\t_\t5\tacl\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tpossible\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tloss\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\trecognition\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tRetailer\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tSees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tPitfalls\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tEnvironmental\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tPush\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n\n1\tHERE\t_\tADV\tRB\t_\t2\tdep\t_\t_\n2\t'S\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tretailer\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n6\t's\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tgetting\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n8\ttough\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpush\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tenvironmentally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsafe\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpackaging\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tproducts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBear\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSupermarkets\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgrocery\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tchain\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tbased\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSan\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tDiego\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tdisplay\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tshelf\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcards\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n20\tdistribute\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n21\tpamphlets\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\trecommending\t_\tVERB\tVBG\t_\t16\tdep\t_\t_\n23\tproducts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tdeemed\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\tsafe\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n26\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tenvironment\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tchoices\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tresearch\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tDiego\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tEnvironmental\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHealth\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCoalition\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tinclude\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n18\tproducts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tlike\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tMurphy\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tOil\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tSoap\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tnoncorrosive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcleaners\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tchain\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tquickly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\trealizing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpitfalls\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tendorsements\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\trecommends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tnonchlorinated\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tdishwasher\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdetergent\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tputs\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n11\tSunlight\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n14\tenvironmentally\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tsafe\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tlist\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tthrill\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tProcter\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tGamble\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tmaker\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tCascade\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tdishwasher\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tdetergent\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tquestioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tvalidity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tlist\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tnoting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\tthat\t_\tDET\tDT\t_\t15\tmark\t_\t_\n13\tchlorine\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tpresent\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tall\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tdishwasher\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tdetergents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tLever\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBros.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tconfirms\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tSunlight\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbrand\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tdoes\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcontain\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tchlorine\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbleach\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\teven\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n17\tthough\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tlisted\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n22\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlabel\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tpowder\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tversion\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThomas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDahlen\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBear\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\texecutive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tvice\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tchain\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\treviewing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tproduct\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tlist\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tavoid\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n23\tsuch\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tproblems\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tOur\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tintent\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t13\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpromote\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tbest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n9\talternative\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\timportant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t9\tcop\t_\t_\n9\taccurate\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tcustomers\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\twishes\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\twhat\t_\tPRON\tWP\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tprevail\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBig\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBear\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tcare\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tdisposable\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdiapers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tbiodegradable\t_\tADJ\tJJ\t_\t8\tacl:relcl\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYet\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tparents\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdemand\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthem\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDahlen\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n6\tWe\t_\tPRON\tPRP\t_\t10\tnsubjpass\t_\t_\n7\t'll\t_\tAUX\tMD\t_\t10\taux\t_\t_\n8\tstill\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n10\tforced\t_\tVERB\tVBN\t_\t1\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsell\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\titems\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n15\tmight\t_\tAUX\tMD\t_\t18\taux\t_\t_\n16\tnot\t_\tPART\tRB\t_\t18\tneg\t_\t_\n17\tphilosophically\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tagree\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n19\twith\t_\tADP\tIN\t_\t18\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tOdds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tEnds\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n\n1\tNEATNESS\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tcount\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tat\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n6\tleast\t_\tADJ\tJJS\t_\t5\tmwe\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgrocery\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tstore\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstudy\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tSafeway\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tScanner\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tMarketing\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tResearch\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tsoap\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tclimbed\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n13\t5\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n16\tbars\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n17\twere\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n18\tneatly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tstacked\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tshelves\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tinstead\t_\tADV\tRB\t_\t19\tcc\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tdumped\t_\tVERB\tVBD\t_\t19\tconj\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\twire\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tbasket\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t...\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tWhich\t_\tDET\tWDT\t_\t3\tdet\t_\t_\n2\tcelebrity\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tendorsers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\tmost\t_\tADV\tRBS\t_\t6\tadvmod\t_\t_\n6\tbelievable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t?\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\trow\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tconsumers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tBill\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCosby\t_\tPROPN\tNNP\t_\t13\tdep\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tJames\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tGarner\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n17\tsecond\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpersuasiveness\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tspokesmen\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tTV\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcommercials\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n26\taccording\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n27\tto\t_\tADP\tTO\t_\t26\tmwe\t_\t_\n28\tVideo\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tStoryboard\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tTests\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tNew\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tYork\t_\tPROPN\tNNP\t_\t30\tappos\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMichael\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tJ.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tFox\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tBruce\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tWillis\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthird\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tplace\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n11\tCher\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tplaced\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n13\tfourth\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsecond\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttime\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHealth\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tHuman\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tServices\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tSecretary\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tLouis\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSullivan\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tchosen\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n10\tAntonia\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tNovello\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tnext\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tsurgeon\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tgeneral\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tBush\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tadministration\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tofficials\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tnominated\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tPresident\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBush\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tconfirmed\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tSenate\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\tDr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tNovello\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tsucceed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tC.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tEverett\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tKoop\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n23\trattled\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n24\tliberals\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tconservatives\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\talike\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n28\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\this\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\toutspoken\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tviews\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n32\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\trange\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\thealth\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tissues\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tDr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNovello\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\texpert\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tpediatric\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tkidney\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdiseases\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tdeputy\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdirector\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tNational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tInstitute\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tChild\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHealth\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tHuman\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDevelopment\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tserved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\ttask\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tforces\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tacquired\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n11\timmune\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tdeficiency\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsyndrome\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNovello\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\toffice\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tshe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\ttalk\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\treporters\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\trefused\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\trelease\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinformation\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\ther\t_\tPRON\tPRP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnewsletter\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tMedicine\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tHealth\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tfirst\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdisclosed\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n10\ther\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tselection\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tDr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSullivan\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tshe\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\t44\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n21\told\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tshe\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tstudied\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n25\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n27\tUniversity\t_\tPROPN\tNNP\t_\t31\tdep\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tPuerto\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tRico\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\tSchool\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tMedicine\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcontinuing\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tseries\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tHUD\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tscandals\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tsadly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tpredictable\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tresult\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tpork-barrel\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tpolitics\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n3\tlobbies\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t8\tcase\t_\t_\n5\tas\t_\tADP\tIN\t_\t4\tmwe\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tHome\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tBuilders\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n13\tNAHB\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n15\tcontinue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tpressure\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tCapitol\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tHill\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n22\tspecial-interest\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tspending\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tKent\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tColton\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tNAHB\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\texecutive\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tvice\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tfaces\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tmultifaceted\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\thousing\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcrisis\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n19\treduced\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n20\taffordability\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\thomes\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tfirst-time\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n27\tincreased\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\thomelessness\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n31\tlower\t_\tADJ\tJJR\t_\t34\tamod\t_\t_\n32\tapartment\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n33\tconstruction\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\trates\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n35\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n36\tthat\t_\tDET\tDT\t_\t41\tnsubj\t_\t_\n37\twill\t_\tAUX\tMD\t_\t41\taux\t_\t_\n38\tbe\t_\tVERB\tVB\t_\t41\tcop\t_\t_\n39\t``\t_\tPUNCT\t``\t_\t41\tpunct\t_\t_\n40\tvery\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\tdifficult\t_\tADJ\tJJ\t_\t17\tacl:relcl\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n43\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n44\tsolve\t_\tVERB\tVB\t_\t41\txcomp\t_\t_\n45\t``\t_\tPUNCT\t``\t_\t44\tpunct\t_\t_\n46\twithout\t_\tADP\tIN\t_\t49\tcase\t_\t_\n47\texpanded\t_\tVERB\tVBN\t_\t49\tamod\t_\t_\n48\tfederal\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tresources\t_\tNOUN\tNNS\t_\t44\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n51\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tnothing\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n4\tunusual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tbusiness\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tgroups\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tpushing\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tspending\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tNAHB\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tcreated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1943\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\torganization\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tmade\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tname\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tfighting\t_\tVERB\tVBG\t_\t13\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tRoosevelt\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tadministration\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tproposal\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\ttake\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tover\t_\tADP\tRP\t_\t27\tdep\t_\t_\n24\tall\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tdefense\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\thousing\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tproduction\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThrough\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tassociation\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t10\tcop\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tactive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmember\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttaxpayer\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tcoalition\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tpushing\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tinitiatives\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tbalanced-budget\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tamendment\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmatters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tclose\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\ter\t_\tINTJ\tUH\t_\t9\tdiscourse\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\thome\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t...\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tHUD\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tbudget\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tdropped\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tmore\t_\tADJ\tJJ\t_\t10\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n10\t70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n12\tsince\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1980\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tColton\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t4\tdobj\t_\t_\n6\tthan\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tour\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tfair\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tshare\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tproblem\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprograms\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\ttaken\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsimilar\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thit\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tNAHB\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tsupport\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tsubsidies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\trelated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\thousing\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcrunch\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyears\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tNAHB\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tbacked\t_\tVERB\tVBN\t_\t8\tparataxis\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\thost\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tpublic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprograms\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tonce\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tpushed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tnational\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\thousing\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tproduction\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tgoal\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tset\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgovernment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n17\tregularly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tadvanced\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n19\tanti-recession\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\thousing\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmeasures\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\texplains\t_\tVERB\tVBZ\t_\t10\tparataxis\t_\t_\n4\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tHUD\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tNAHB\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tsusceptible\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tinternal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpressure\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmembers\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tspecialize\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tsubsidized\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n21\tproduction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tassociation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tpushing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\textensive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\texpensive\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n9\twish-list\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tsubstantially\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tboost\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n15\tspending\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tabove\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcurrent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlevel\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tmore\t_\tADJ\tJJ\t_\t23\tadvmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n24\t15\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tannually\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tpeg\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tceiling\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tFederal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tHousing\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tAdministration\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tmortgage\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tguarantees\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\t95\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t5\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmedian\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tparticular\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n26\tinstead\t_\tADV\tRB\t_\t28\tmark\t_\t_\n27\tof\t_\tSCONJ\tIN\t_\t26\tmwe\t_\t_\n28\tlimiting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t28\tdobj\t_\t_\n30\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t101,250\t_\tNUM\tCD\t_\t28\tnmod\t_\t_\n33\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n34\treduce\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n35\t-LRB-\t_\tPUNCT\t-LRB-\t_\t38\tpunct\t_\t_\n36\tor\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n37\teven\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\teliminate\t_\tVERB\tVB\t_\t34\tdep\t_\t_\n39\t-RRB-\t_\tPUNCT\t-RRB-\t_\t38\tpunct\t_\t_\n40\tFHA\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n41\tdown-payment\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\trequirements\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n44\tincrease\t_\tVERB\tVB\t_\t34\tconj\t_\t_\n45\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tavailability\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n47\tof\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tvariable-rate\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tmortgages\t_\tNOUN\tNNS\t_\t46\tnmod\t_\t_\n50\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n51\texpand\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n52\tthe\t_\tDET\tDT\t_\t58\tdet\t_\t_\n53\tVeterans\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n54\tAffairs\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n55\tDepartment\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n56\tloan\t_\tNOUN\tNN\t_\t58\tcompound\t_\t_\n57\tguarantee\t_\tNOUN\tNN\t_\t58\tcompound\t_\t_\n58\tprogram\t_\tNOUN\tNN\t_\t51\tdobj\t_\t_\n59\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n60\tprovide\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n61\t``\t_\tPUNCT\t``\t_\t64\tpunct\t_\t_\n62\tadequate\t_\tADJ\tJJ\t_\t64\tamod\t_\t_\n63\t''\t_\tPUNCT\t''\t_\t64\tpunct\t_\t_\n64\tfunding\t_\tNOUN\tNN\t_\t60\tdobj\t_\t_\n65\tfor\t_\tADP\tIN\t_\t69\tcase\t_\t_\n66\tthe\t_\tDET\tDT\t_\t69\tdet\t_\t_\n67\tFarmers\t_\tPROPN\tNNP\t_\t69\tcompound\t_\t_\n68\tHome\t_\tPROPN\tNNP\t_\t69\tcompound\t_\t_\n69\tAdministration\t_\tPROPN\tNNP\t_\t64\tnmod\t_\t_\n70\t-LRB-\t_\tPUNCT\t-LRB-\t_\t71\tpunct\t_\t_\n71\tFmHA\t_\tPROPN\tNNP\t_\t69\tappos\t_\t_\n72\t-RRB-\t_\tPUNCT\t-RRB-\t_\t71\tpunct\t_\t_\n73\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n74\tincrease\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n75\tfederal\t_\tADJ\tJJ\t_\t76\tamod\t_\t_\n76\tfunding\t_\tNOUN\tNN\t_\t74\tdobj\t_\t_\n77\tand\t_\tCONJ\tCC\t_\t76\tcc\t_\t_\n78\ttax\t_\tNOUN\tNN\t_\t79\tcompound\t_\t_\n79\tincentives\t_\tNOUN\tNNS\t_\t76\tconj\t_\t_\n80\tfor\t_\tADP\tIN\t_\t82\tcase\t_\t_\n81\tthe\t_\tDET\tDT\t_\t82\tdet\t_\t_\n82\tconstruction\t_\tNOUN\tNN\t_\t76\tnmod\t_\t_\n83\tof\t_\tADP\tIN\t_\t87\tcase\t_\t_\n84\tlow-income\t_\tADJ\tJJ\t_\t87\tamod\t_\t_\n85\tand\t_\tCONJ\tCC\t_\t84\tcc\t_\t_\n86\trental\t_\tNOUN\tNN\t_\t84\tconj\t_\t_\n87\thousing\t_\tNOUN\tNN\t_\t82\tnmod\t_\t_\n88\t,\t_\tPUNCT\t,\t_\t76\tpunct\t_\t_\n89\tincluding\t_\tVERB\tVBG\t_\t90\tcase\t_\t_\n90\t$\t_\tSYM\t$\t_\t76\tnmod\t_\t_\n91\t4\t_\tNUM\tCD\t_\t92\tcompound\t_\t_\n92\tbillion\t_\tNUM\tCD\t_\t90\tnummod\t_\t_\n93\tin\t_\tADP\tIN\t_\t95\tcase\t_\t_\n94\tblock\t_\tNOUN\tNN\t_\t95\tcompound\t_\t_\n95\tgrants\t_\tNOUN\tNNS\t_\t90\tnmod\t_\t_\n96\tto\t_\tADP\tTO\t_\t97\tcase\t_\t_\n97\tstates\t_\tNOUN\tNNS\t_\t95\tnmod\t_\t_\n98\tand\t_\tCONJ\tCC\t_\t97\tcc\t_\t_\n99\tlocalities\t_\tNOUN\tNNS\t_\t97\tconj\t_\t_\n100\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n101\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n102\t``\t_\tPUNCT\t``\t_\t104\tpunct\t_\t_\n103\tfully\t_\tADV\tRB\t_\t104\tadvmod\t_\t_\n104\tfund\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n105\t''\t_\tPUNCT\t''\t_\t104\tpunct\t_\t_\n106\tthe\t_\tDET\tDT\t_\t108\tdet\t_\t_\n107\tMcKinney\t_\tPROPN\tNNP\t_\t108\tcompound\t_\t_\n108\tAct\t_\tPROPN\tNNP\t_\t104\tdobj\t_\t_\n109\t,\t_\tPUNCT\t,\t_\t108\tpunct\t_\t_\n110\ta\t_\tDET\tDT\t_\t114\tdet\t_\t_\n111\t$\t_\tSYM\t$\t_\t114\tamod\t_\t_\n112\t656\t_\tNUM\tCD\t_\t113\tcompound\t_\t_\n113\tmillion\t_\tNUM\tCD\t_\t111\tnummod\t_\t_\n114\tpotpourri\t_\tNOUN\tNN\t_\t108\tappos\t_\t_\n115\tfor\t_\tADP\tIN\t_\t117\tcase\t_\t_\n116\tthe\t_\tDET\tDT\t_\t117\tdet\t_\t_\n117\thomeless\t_\tADJ\tJJ\t_\t114\tnmod\t_\t_\n118\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDirect\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfederal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsubsidies\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\thousing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconstruction\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tproved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tintolerably\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\texpensive\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpast\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n16\tinevitably\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t18\tauxpass\t_\t_\n18\ttwisted\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbenefit\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\twell-connected\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdevelopers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tlobbyists\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tas\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tdemonstrated\t_\tVERB\tVBN\t_\t24\tdep\t_\t_\n30\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tongoing\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\tHUD\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tscandal\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n36\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n37\tcongressmen\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIndirect\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsubsidies\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tthrough\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tFHA\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinstance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tlittle\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tbetter\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThough\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tColton\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t47\tadvcl\t_\t_\n5\texpanding\t_\tVERB\tVBG\t_\t9\tcsubj\t_\t_\n6\tFHA\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tlending\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tresult\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n12\tno\t_\tDET\tDT\t_\t13\tneg\t_\t_\n13\tcost\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tgovernment\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t47\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tmere\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdiversion\t_\tNOUN\tNN\t_\t47\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tfunds\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tparts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\teconomy\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tother\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tforms\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\thousing\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\t-LRB-\t_\tPUNCT\t-LRB-\t_\t39\tpunct\t_\t_\n37\tsuch\t_\tADJ\tJJ\t_\t39\tcase\t_\t_\n38\tas\t_\tADP\tIN\t_\t37\tmwe\t_\t_\n39\tlow-income\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n40\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n41\tto\t_\tADP\tTO\t_\t45\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n43\tsingle-family\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n44\thome\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n45\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n46\twould\t_\tAUX\tMD\t_\t47\taux\t_\t_\n47\tresult\t_\tVERB\tVB\t_\t0\troot\t_\t_\n48\tin\t_\tADP\tIN\t_\t51\tcase\t_\t_\n49\ta\t_\tDET\tDT\t_\t51\tdet\t_\t_\n50\tmajor\t_\tADJ\tJJ\t_\t51\tamod\t_\t_\n51\texpense\t_\tNOUN\tNN\t_\t47\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tMore\t_\tADV\tRBR\t_\t2\tadvmod\t_\t_\n2\timportant\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\thousing\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprograms\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n6\trun\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tHUD\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tVA\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tFmHA\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n16\tawash\t_\tADV\tRB\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tred\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tink\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFHA\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talone\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t4.2\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tfiscal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\t1988\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgovernment\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tequity\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tagency\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tessentially\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\treserve\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tfund\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tfell\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tminus\t_\tADP\tIN\t_\t28\tamod\t_\t_\n28\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n29\t2.9\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfederal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgovernment\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpump\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tin\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n10\t2.28\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tinto\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tVA\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\thousing\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprogram\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n17\tsince\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t1984\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tkeep\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfund\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tafloat\t_\tADV\tRB\t_\t20\txcomp\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tVA\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\trequested\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n28\tan\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tadditional\t_\tADJ\tJJ\t_\t30\tadvmod\t_\t_\n30\t$\t_\tSYM\t$\t_\t27\tdobj\t_\t_\n31\t120\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n33\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tfiscal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tyear\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n37\tjust\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tended\t_\tVERB\tVBD\t_\t36\tacl\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t8\tadvmod\t_\t_\n2\ttold\t_\tVERB\tVBD\t_\t1\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfederal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tgovernment\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\talready\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tguarantees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tmore\t_\tADJ\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n12\t900\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmortgages\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n3\tnicely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tproduced\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\tpublication\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tWhere\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n8\tWill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n9\tOur\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tChildren\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tLive\t_\tVERB\tVB\t_\t5\tdep\t_\t_\n12\t?\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tNAHB\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tacknowledge\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tcourse\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfull\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tmeasure\t_\tNOUN\tNN\t_\t32\tnsubjpass\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\thousing\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\taffordability\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tcan\t_\tAUX\tMD\t_\t32\taux\t_\t_\n30\tnot\t_\tPART\tRB\t_\t32\tneg\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\tprovided\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tfederal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tgovernment\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpoints\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpernicious\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\timpact\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tlocal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tgovernment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tregulation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tparticularly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tzoning\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tbuilding\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfees\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tpushes\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tprice\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\thousing\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tout\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\treach\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tlow-\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tmiddle-income\t_\tADJ\tJJ\t_\t29\tconj\t_\t_\n32\tpeople\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n2\twhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tNAHB\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tsuggested\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n7\tactions\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tthat\t_\tADP\tIN\t_\t13\tdobj\t_\t_\n9\tstates\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tlocalities\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n12\tshould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\ttake\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\treduce\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tregulatory\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbarriers\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tassociation\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tproposed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n24\tactivist\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tlegislative\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprogram\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t--\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n28\tcomparable\t_\tADJ\tJJ\t_\t26\tdep\t_\t_\n29\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n31\tsay\t_\tVERB\tVB\t_\t35\tdep\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n34\tdetailed\t_\tVERB\tVBN\t_\t35\tamod\t_\t_\n35\trequest\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tmore\t_\tADJ\tJJR\t_\t39\tamod\t_\t_\n38\tfederal\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tsubsidies\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\t--\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n41\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n42\teliminate\t_\tVERB\tVB\t_\t26\tacl\t_\t_\n43\tcounterproductive\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tcontrols\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tassociation\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmajority\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\twhose\t_\tPRON\tWP$\t_\t9\tnmod:poss\t_\t_\n8\t156,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tbuild\t_\tVERB\tVBP\t_\t2\tacl:relcl\t_\t_\n11\tfewer\t_\tADJ\tJJR\t_\t13\tadvmod\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tadvmod\t_\t_\n13\t25\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tunits\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n19\tlike\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tmany\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tother\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tbusiness\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlobbies\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tExplains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tSheila\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMacDonald\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tTaxpayers\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tUnion\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n11\tIt\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\ttreads\t_\tVERB\tVBZ\t_\t1\tccomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tworlds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbuilders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tlike\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsubsidies\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsame\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\ttend\t_\tVERB\tVBP\t_\t3\tconj\t_\t_\n14\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\tfiscal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tconservatives\t_\tNOUN\tNNS\t_\t13\txcomp\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tterms\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tmajor\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tissues\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tsuch\t_\tADJ\tJJ\t_\t28\tcase\t_\t_\n25\tas\t_\tADP\tIN\t_\t24\tmwe\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tbalanced-budget\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tamendment\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnfortunately\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\torganization\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tdesire\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tpork\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ttends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\toverride\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tcommitment\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\toverall\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tfiscal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tresponsibility\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n4\twhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tNAHB\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tlobbied\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n11\t19\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tomnibus\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\thousing\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\torganization\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tbasically\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdropped\t_\tVERB\tVBD\t_\t30\tccomp\t_\t_\n22\tout\t_\tADP\tRP\t_\t27\tdep\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\ttaxpayers\t_\tNOUN\tNNS\t_\t27\tnmod:poss\t_\t_\n26\t'\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tcoalition\t_\tNOUN\tNN\t_\t21\tadvcl\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n30\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n31\tMs.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tMacDonald\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tColton\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tNAHB\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tacknowledges\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\tGovernment\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n12\tnot\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tsolve\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tproblem\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t...\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tkey\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\thave\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teconomy\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tworking\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tinterest\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\trates\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n13\tdown\t_\tADV\tRB\t_\t9\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\tmoney\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tHUD\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tincrease\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tdeficit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tdestabilize\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\teconomy\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tmoney\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tmunicipalities\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\twrecking\t_\tVERB\tVBG\t_\t17\tacl:relcl\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n22\tlocal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\thousing\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n25\twill\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tfurther\t_\tADV\tRBR\t_\t27\tadvmod\t_\t_\n27\tinsulate\t_\tVERB\tVB\t_\t6\tparataxis\t_\t_\n28\tthem\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tdestructive\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\teffects\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ttheir\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n35\tpolicies\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t1\tnsubj\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t7\tdobj\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\thome\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbuilders\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\twant\t_\tVERB\tVBP\t_\t1\tdep\t_\t_\n8\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBandow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tCato\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInstitute\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tfellow\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t2\tpunct\t_\t_\n2\tSee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\trelated\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n4\tstory\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n8\tBills\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tMake\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tWishes\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tCome\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n13\tTrue\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n16\tWSJ\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n17\tOct.\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n18\t17\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n20\t1989\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tattempt\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tgive\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmomentum\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tEuropean\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCommunity\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tplans\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsingle\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcurrency\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tEC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tgovernment\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tleaders\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n21\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tagree\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tset\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdate\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tfor\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tstarting\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n30\tformal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\ttalks\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\ton\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n33\tamending\t_\tVERB\tVBG\t_\t31\tacl\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tEC\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tfounding\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tTreaty\t_\tPROPN\tNNP\t_\t33\tdobj\t_\t_\n39\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tRome\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t4\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tdiplomatic\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsources\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tBrussels\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tmost\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n9\tEC\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tleaders\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\ttalks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tbegin\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsecond\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\thalf\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1990\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tmake\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdeclaration\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\ton\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tthat\t_\tPRON\tDT\t_\t27\tnmod\t_\t_\n30\tduring\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tsummit\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tmeeting\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tStrasbourg\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tFrance\t_\tPROPN\tNNP\t_\t35\tappos\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n39\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tDec.\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n41\t8\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n43\t9\t_\tNUM\tCD\t_\t40\tconj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tstrong\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\topposition\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tmark\t_\t_\n6\tchanging\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tEC\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\ttreaty\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tBritish\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tPrime\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tMinister\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tMargaret\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tThatcher\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twho\t_\tPRON\tWP\t_\t20\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n20\topposed\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tmark\t_\t_\n22\tcreating\t_\tVERB\tVBG\t_\t20\tadvcl\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tsingle\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tEC\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tcurrency\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprocess\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tconvening\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tintergovernmental\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tconference\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tdoes\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tunanimity\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSetting\t_\tVERB\tVBG\t_\t8\tcsubjpass\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdate\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tstart\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\ttreaty\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tno\t_\tDET\tDT\t_\t11\tneg\t_\t_\n10\tlegal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsignificance\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\titself\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\tviewed\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n19\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\timportant\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tpsychological\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tpush\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFrench\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tPresident\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFrancois\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tMitterrand\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tfought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tset\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdate\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tconference\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tduring\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tEC\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tsummit\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tMadrid\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tJune\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmove\t_\tNOUN\tNN\t_\t26\tnsubjpass\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t26\tauxpass\t_\t_\n26\tscuttled\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n27\tbecause\t_\tADV\tRB\t_\t29\tcase\t_\t_\n28\tof\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n29\topposition\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tMrs.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tThatcher\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tWest\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n35\tGerman\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n36\tChancellor\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tHelmut\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tKohl\t_\tPROPN\tNNP\t_\t32\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tDiplomatic\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsources\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tKohl\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tnow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tagree\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tset\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdate\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tconference\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tmake\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t25\tnsubjpass\t_\t_\n19\tclear\t_\tADJ\tJJ\t_\t25\tdep\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tWest\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tGermany\t_\tPROPN\tNNP\t_\t25\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n24\tstill\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tcommitted\t_\tVERB\tVBN\t_\t17\txcomp\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tEC\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tunity\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tcrewcut\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tequities\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\treminds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tme\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tjoke\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tT.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tBoone\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tPickens\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\ttells\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n17\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tguy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\twho\t_\tPRON\tWP\t_\t22\tnsubjpass\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\trun\t_\tVERB\tVBN\t_\t19\tacl:relcl\t_\t_\n23\tover\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tparade\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tasked\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n4\tWhat\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\twent\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\twrong\t_\tADJ\tJJ\t_\t5\tadvmod\t_\t_\n7\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tunfortunate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tvictim\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n15\tIt\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcombination\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthings\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tso\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tGray\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgrand\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmarshal\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparade\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tappear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n10\thave\t_\tAUX\tVB\t_\t13\taux\t_\t_\n11\tbeen\t_\tVERB\tVBN\t_\t13\tcop\t_\t_\n12\texcess\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tleverage\t_\tNOUN\tNN\t_\t8\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tthat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n5\tso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tprobably\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\tbarriers\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n17\tshould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\tauxpass\t_\t_\n20\terected\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tstop\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tprocession\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tend\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\trout\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t32\tpunct\t_\t_\n32\te\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t-RRB-\t_\tPUNCT\t-RRB-\t_\t32\tpunct\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tceremonies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tafternoon\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n7\tword\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tspread\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tUAL\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tbuy-out\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tcollapsing\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tunion-bidder\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t27\tadvcl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpatch\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ttogether\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tsubstitute\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tconsisting\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tless\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tcash\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tfailure\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tget\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tcash\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tJapanese\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n26\tbanks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tgrowing\t_\tVERB\tVBG\t_\t30\tamod\t_\t_\n30\tfear\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tamong\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tarbitragers\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tpageant\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\thigh-leverage\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\ttakeover\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tdeals\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\tis\t_\tAUX\tVBZ\t_\t41\taux\t_\t_\n41\tending\t_\tVERB\tVBG\t_\t30\tdep\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tLots\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tentries\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tmade\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tparade\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tcourse\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n13\tnotably\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tsurprisingly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tlarge\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tincrease\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tproducer\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\tsignalling\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n23\tFederal\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tReserve\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\ttightness\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tBush\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tadministration\t_\tNOUN\tNN\t_\t36\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\t-LRB-\t_\tPUNCT\t-LRB-\t_\t33\tpunct\t_\t_\n33\ttemporary\t_\tADJ\tJJ\t_\t36\tdep\t_\t_\n34\t?\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t33\tpunct\t_\t_\n36\tdefeat\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n37\tin\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n38\ttrying\t_\tVERB\tVBG\t_\t36\tacl\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tlower\t_\tVERB\tVB\t_\t38\txcomp\t_\t_\n41\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tcapital-gains\t_\tNOUN\tNNS\t_\t43\tcompound\t_\t_\n43\ttax\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tusual\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tfavorable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\treviews\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\theard\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthat\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tever-present\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tmarching\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\tband\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttraders\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\talthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tmost\t_\tADJ\tJJS\t_\t21\tamod\t_\t_\n20\tserious\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstudies\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tsuggest\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n23\tthey\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tplay\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tmusic\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t30\tdobj\t_\t_\n29\tothers\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\twrite\t_\tVERB\tVBP\t_\t27\tacl:relcl\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\treally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tspooked\t_\tVERB\tVBD\t_\t15\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcrowds\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\talong\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\thowever\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsudden\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tconcern\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n18\twhatever\t_\tDET\tWDT\t_\t20\tdep\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\treason\t_\tNOUN\tNN\t_\t28\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpool\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tdebt\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tcapital\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tis\t_\tAUX\tVBZ\t_\t28\taux\t_\t_\n28\tdrying\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n29\tup\t_\tADP\tRP\t_\t28\tcompound:prt\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tGray\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treflects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpanic\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tmainly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\ttakeover\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tarbitragers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\trather\t_\tADV\tRB\t_\t10\tcc\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestor\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tas\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\thighly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tmargined\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n22\tinvestments\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n23\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n26\tdeal\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n29\tare\t_\tAUX\tVBP\t_\t30\tauxpass\t_\t_\n30\tjeopardized\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n31\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tunexpected\t_\tADJ\tJJ\t_\t30\tnmod\t_\t_\n34\tdrying\t_\tVERB\tVBG\t_\t33\tamod\t_\t_\n35\tup\t_\tADP\tRP\t_\t33\tdep\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tlubricant\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\tfor\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tdeal\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tfinancing\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDeal\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tabsorbed\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\theaviest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tlosses\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUAL\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\ttriggered\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tslide\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t224\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n15\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t20\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t14\tnmod:npmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tThursday\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tclose\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAMR\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tMonday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t80\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tdown\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n9\tnearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t20\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t8\tnmod:npmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tThursday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tclose\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t3\tpunct\t_\t_\n2\tBoth\t_\tDET\tDT\t_\t3\tnsubj\t_\t_\n3\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfurther\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thits\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t3\tpunct\t_\t_\n\n1\tHilton\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t20\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n8\tParamount\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tlost\t_\tVERB\tVBD\t_\t2\tparataxis\t_\t_\n10\talmost\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t11\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcareful\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlook\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\treveals\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n6\twhere\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n7\tdeal\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tfinancing\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tsecured\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\ttarget\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprice\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n19\tnot\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\taffected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmultibillion-dollar\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprospects\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbidder\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tmust\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tline\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n10\tup\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tconsortium\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tbanks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tand/or\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tissue\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n17\tbillions\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\thigh-yield\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdebt\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n22\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\twhere\t_\tADV\tWRB\t_\t27\tadvmod\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tdamage\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n26\twas\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tconcentrated\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tso-called\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tjunk\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tsetting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstage\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdramatic\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmarch\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tseveral\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tweeks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tgrowing\t_\tVERB\tVBG\t_\t4\tamod\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdifficulties\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\thigh-leverage\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trestructurings\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ttakeovers\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tResorts\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInternational\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tIntegrated\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tResources\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\tCampeau\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tretailing\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tempire\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n26\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tcast\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tpall\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\tover\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tentire\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\thigh-yield\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tsecurities\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\treacted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tby\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tignoring\t_\tVERB\tVBG\t_\t3\tdep\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tefforts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tfloat\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tjunk\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tbonds\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tOhio\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tMattress\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tforcing\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n18\tRamada\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tpostpone\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\tindefinitely\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n23\tplanned\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n24\tjunk-bond\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsale\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\trestructuring\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\thigh-yield\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmutual\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tdeclined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tacross\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tboard\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tmany\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n17\tplanning\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tsell\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\t$\t_\tSYM\t$\t_\t19\tdobj\t_\t_\n21\t11\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tjunk\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tbonds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tyear-end\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n29\texperiencing\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n30\tanxious\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\ttimes\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n3\tall\t_\tDET\tDT\t_\t5\tdep\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\texcesses\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tputting\t_\tVERB\tVBG\t_\t5\tdep\t_\t_\n8\taside\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tartificial\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tboosts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\tthat\t_\tADP\tIN\t_\t16\tdobj\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcode\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tgives\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\tdebt\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tequity\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n24\twhat\t_\tPRON\tWP\t_\t27\tdobj\t_\t_\n25\twe\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\t've\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tseen\t_\tVERB\tVBN\t_\t28\tcsubj\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\treining\t_\tVERB\tVBG\t_\t28\tdep\t_\t_\n32\tthem\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tin\t_\tADP\tRP\t_\t31\tcompound:prt\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tWashington\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tsilent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tleading\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdebacle\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\ttendency\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tmeddle\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tleverage\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tequation\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tremains\t_\tVERB\tVBZ\t_\t8\tconj\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\ttroublesome\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tprospect\t_\tNOUN\tNN\t_\t27\txcomp\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n32\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n33\tthose\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tpreliminary\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tsteps\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n36\tshould\t_\tAUX\tMD\t_\t38\taux\t_\t_\n37\tn't\t_\tPART\tRB\t_\t38\tneg\t_\t_\n38\tdistract\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n39\tus\t_\tPRON\tPRP\t_\t38\tdobj\t_\t_\n40\tfrom\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n42\tbasic\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n43\tmarket\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tfundamentalism\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n45\tthat\t_\tPRON\tWDT\t_\t48\tnsubj\t_\t_\n46\twas\t_\tVERB\tVBD\t_\t48\tcop\t_\t_\n47\tat\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\twork\t_\tNOUN\tNN\t_\t44\tacl:relcl\t_\t_\n49\ton\t_\tADP\tIN\t_\t50\tcase\t_\t_\n50\tFriday\t_\tPROPN\tNNP\t_\t48\tnmod\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tcorrect\t_\tADJ\tJJ\t_\t18\tdep\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tfind\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\tconcerns\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n9\tover\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tcorporate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tLBOs\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n14\tcaused\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n15\tGray\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\twhat\t_\tPRON\tWP\t_\t0\troot\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\timplications\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tpolicy\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmakers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t?\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tall\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tresponse\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcollapse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tUAL\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tdeal\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tmight\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tconfirm\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tanti-debt\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdirection\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tregulators\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\tprivate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tapproving\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tWashington\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tbashing\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tWall\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tStreet\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAbsolutely\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnot\t_\tPART\tRB\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\textent\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tsell-off\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\treflected\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsudden\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\treappraisal\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\texcesses\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tleverage\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmessage\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tthat\t_\tDET\tDT\t_\t30\tmark\t_\t_\n22\tWall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStreet\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tprivate\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\tare\t_\tVERB\tVBP\t_\t30\tcop\t_\t_\n29\tfully\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tcapable\t_\tADJ\tJJ\t_\t20\tccomp\t_\t_\n31\tof\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\timposing\t_\tVERB\tVBG\t_\t30\tadvcl\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tappropriate\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tincentives\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tsanctions\t_\tNOUN\tNNS\t_\t35\tconj\t_\t_\n38\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tcorporate\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tbehavior\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\teconomic\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinterests\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t8\tauxpass\t_\t_\n6\tmuch\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tbetter\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tserved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tallowing\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tprivate\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinterests\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tbankers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tultimate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tjudges\t_\tNOUN\tNNS\t_\t9\tccomp\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tinvestment\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tquality\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tvarious\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tLBO\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tdeals\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tleveraged\t_\tVERB\tVBN\t_\t31\tamod\t_\t_\n31\trestructurings\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdifficulties\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tjunk-bond\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tscarcity\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tbank\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcapital\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\trecent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdeals\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tunderscores\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\twisdom\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\tletting\t_\tVERB\tVBG\t_\t19\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfree\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\toperate\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\ttakeover\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tpremiums\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbecome\t_\tVERB\tVBP\t_\t19\tadvcl\t_\t_\n5\texcessive\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\tLBO\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tdealmakers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tbecome\t_\tVERB\tVBP\t_\t19\tdep\t_\t_\n11\ttoo\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\taggressive\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n14\tthen\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tprivate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\trecognize\t_\tVERB\tVB\t_\t0\troot\t_\t_\n20\tthese\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tproblems\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tmore\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n23\tquickly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\taccurately\t_\tADV\tRB\t_\t23\tconj\t_\t_\n26\tthan\t_\tSCONJ\tIN\t_\t27\tdep\t_\t_\n27\twill\t_\tAUX\tMD\t_\t23\tadvcl\t_\t_\n28\tpolicy\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmakers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tmarkets\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n34\twill\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tmove\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n36\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tlightning\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tspeed\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\timpose\t_\tVERB\tVB\t_\t35\txcomp\t_\t_\n41\tappropriate\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tsanctions\t_\tNOUN\tNNS\t_\t40\tdobj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tYes\t_\tINTJ\tUH\t_\t7\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tbroader\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\texchanges\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\tgot\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tcaught\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tspiral\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\trode\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\ttiger\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\tall\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tNot\t_\tPART\tRB\t_\t2\tdep\t_\t_\n2\tsurprisingly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tsometimes\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tbites\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tarbitragers\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tinitiatiors\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\tgot\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tkilled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tGray\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\twhile\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbesieged\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tmanagers\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tprospective\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttargets\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tcheered\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n20\tlustily\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tidentify\t_\tVERB\tVBP\t_\t11\tadvcl\t_\t_\n4\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbesieged\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmanagers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tmust\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tconcede\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n13\tspeedy\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\teffective\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\trelief\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\texcesses\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\ttakeover\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n25\tmore\t_\tADV\tRBR\t_\t26\tadvmod\t_\t_\n26\tlikely\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tcome\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tmarketplace\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tthan\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tWashington\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tside\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n4\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tarbitragers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\traiders\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\tclearly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tmore\t_\tADJ\tJJR\t_\t12\txcomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tfear\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tprivate\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tregulators\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n23\talthough\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tDelaware\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tcourts\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n27\tshould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n28\tnever\t_\tADV\tRB\t_\t30\tneg\t_\t_\n29\tbe\t_\tAUX\tVB\t_\t30\tauxpass\t_\t_\n30\tunderestimated\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttruth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tWashington\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tunderstands\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n7\tpolitics\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tbetter\t_\tADJ\tJJR\t_\t6\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\teconomics\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcitizen\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n6\tprobably\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tharmed\t_\tVERB\tVBN\t_\t28\tadvcl\t_\t_\n9\ttoo\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmuch\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tWashington\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\trhetorical\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twar\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\tagainst\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tregarding\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n20\texcessive\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tfinancial\t_\tADJ\tJJ\t_\t19\tdobj\t_\t_\n22\tleveraging\t_\tVERB\tVBG\t_\t21\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n24\tactual\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tlegislation\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tprobably\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\timpose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n29\tconsiderable\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tharm\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAny\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tattempt\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tdistinguish\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tgood\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdebt\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n12\tbad\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdebt\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdraw\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tline\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tparticular\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tindustry\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t29\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tairlines\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n31\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n32\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tblunt\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tspur\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\tthat\t_\tADP\tIN\t_\t43\tdobj\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tproper\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tamount\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n41\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tleverage\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n43\tprovides\t_\tVERB\tVBZ\t_\t36\tacl:relcl\t_\t_\n44\tboth\t_\tDET\tDT\t_\t47\tdep\t_\t_\n45\tto\t_\tADP\tTO\t_\t47\tcase\t_\t_\n46\tequity\t_\tNOUN\tNN\t_\t47\tcompound\t_\t_\n47\tmarkets\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t47\tcc\t_\t_\n49\teconomic\t_\tADJ\tJJ\t_\t50\tamod\t_\t_\n50\tefficiency\t_\tNOUN\tNN\t_\t47\tconj\t_\t_\n51\tin\t_\tADP\tIN\t_\t52\tcase\t_\t_\n52\tgeneral\t_\tNOUN\tNN\t_\t50\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tFar\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tbetter\t_\tADV\tRBR\t_\t0\troot\t_\t_\n3\tfor\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tpolicy\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmakers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tconcentrate\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\twar\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tagainst\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdrugs\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tPanama\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdeficit\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tall\t_\tDET\tDT\t_\t22\tdep\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tthem\t_\tDET\tDT\t_\t19\tnmod\t_\t_\n22\tparades\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tseem\t_\tVERB\tVBP\t_\t22\tacl:relcl\t_\t_\n25\tnever\t_\tADV\tRB\t_\t27\tneg\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tend\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tJarrell\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformer\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\ttop\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\teconomist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tSecurities\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tCommission\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tteaches\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tUniversity\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tRochester\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n21\tSimon\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tBusiness\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tSchool\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tshare\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tTuesday\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tmorning\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tNikkei\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\t225\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tselected\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\trising\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n17\t618.69\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tpoints\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tclose\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsession\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t35087.38\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindex\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t647.33\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tpoints\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\t1.8\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\t25\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tminutes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tTuesday\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tNikkei\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tsoared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t664.83\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpoints\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t35133.83\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t10\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n3\ta.m.\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tTokyo\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\ttime\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t435.11\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t34903.80\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tinvestors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\thailed\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tovernight\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\trally\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tslide\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\trelatively\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcalm\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsession\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tprovide\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n14\tmuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdirection\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmarkets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tShares\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlower\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n6\tacross\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tEurope\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tparticularly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tFrankfurt\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\talthough\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n14\tLondon\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmarkets\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n20\trecovered\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n21\tsome\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tground\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tafter\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n24\tstocks\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tbegan\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\trebound\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tNew\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tYork\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n2\tAsian\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tPacific\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n5\tmarkets\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsharper\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tlosses\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tTokyo\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tselling\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\twave\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstopped\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n17\tshort\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tof\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tprecipitating\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n20\tanother\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tcrash\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\teyes\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tTokyo\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\topening\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\ttrade\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tsince\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\t190.58-point\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tplunge\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tWall\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tStreet\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\trather\t_\tADV\tRB\t_\t4\tmark\t_\t_\n3\tthan\t_\tSCONJ\tIN\t_\t2\tmwe\t_\t_\n4\tset\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttone\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tJapan\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tinstitutional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tchose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tremain\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsidelines\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n3\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsudden\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\treappearance\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tstock-market\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tturbulence\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tmanagers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tJapanese\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tinvestment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfunds\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\twere\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tplanning\t_\tVERB\tVBG\t_\t16\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tunload\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tEuropean\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n26\tequities\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\ttrade\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n6\tmuch\t_\tADJ\tJJ\t_\t5\tadvmod\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tour\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tpolicy\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tnow\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\twait\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tsee\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tfund\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmanager\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n24\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tTaisho\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tLife\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tInsurance\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCo\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\twait\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsee\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n9\tuntil\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tgoes\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n12\taround\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tEurope\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinstitutions\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tconfident\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tJapanese\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tregulators\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tstep\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tin\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tensure\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n13\torderly\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tnecessary\t_\tADJ\tJJ\t_\t9\tadvcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n21\tconsiderable\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tspeculation\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n23\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tday\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tFinance\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tMinistry\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n30\twas\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n31\tworking\t_\tVERB\tVBG\t_\t22\tdep\t_\t_\n32\tbehind\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tscenes\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tdo\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n37\tjust\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tthat\t_\tDET\tDT\t_\t36\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tabsence\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tpanicky\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tpresence\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n12\tnever\t_\tADV\tRB\t_\t14\tneg\t_\t_\n13\tovertly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tfelt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tclose\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tNikkei\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\taverage\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t225\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tstood\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t34468.69\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tdown\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n16\t647.33\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\t1.8\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t17\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tbroader\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n3\tTokyo\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tPrice\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tIndex\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsank\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t45.66\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n11\t1.7\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t2600.88\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecline\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\tgenerally\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tline\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tanalysts\t_\tNOUN\tNNS\t_\t13\tnmod:poss\t_\t_\n11\t'\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tweekend\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpredictions\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tDeclining\t_\tVERB\tVBG\t_\t2\tamod\t_\t_\n2\tissues\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tswamped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tadvancers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t941-105\t_\tNUM\tCD\t_\t3\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tthin\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\t526.2\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tcompared\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t574.7\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t4\tadvcl\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlower\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tNikkei\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\taverage\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tnearly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t600\t_\tNUM\tCD\t_\t11\tnmod:npmod\t_\t_\n14\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmidmorning\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trebound\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbrought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tshow\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t200\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tend\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmorning\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\trally\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tfailed\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tafternoon\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n33\tclosed\t_\tVERB\tVBD\t_\t25\tconj\t_\t_\n34\tnear\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tday\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tlow\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsmaller\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tTokyo\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tsecond\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsection\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\talso\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tbiggest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tTokyo\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsecond\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsection\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t100.96\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\t2.7\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t3655.40\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ttrying\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\toutperform\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tindexes\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tflocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\tthese\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsmall\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tissues\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\trecent\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tweeks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tJapanese\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\ttraders\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n5\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\trelief\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tTokyo\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tfall\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\tsharply\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tperformance\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tbear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresemblance\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tevents\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tyears\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tago\t_\tADV\tRB\t_\t9\tacl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n17\tOctober\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n18\t1987\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n19\tglobal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tcrash\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tOct.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n3\t16\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n9\tbefore\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tBlack\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMonday\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t4.6\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tTokyo\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tfollowed\t_\tVERB\tVBD\t_\t19\tconj\t_\t_\n26\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tMonday\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\twith\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\t2.4\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t32\tamod\t_\t_\n32\tdrop\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tWall\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStreet\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tplunge\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t6.9\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tfollowed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t1.8\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t%\t_\tSYM\tNN\t_\t19\tamod\t_\t_\n19\tloss\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tTokyo\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tTokyo\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tbiggest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tfall\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\tafter\t_\tADP\tIN\t_\t20\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t22.6\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tamod\t_\t_\n18\tBlack\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tMonday\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tplunge\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t26\tadvmod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tNikkei\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\taverage\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tfell\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n27\t14.9\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\t%\t_\tSYM\tNN\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tparticipants\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tahead\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tnervously\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n11\tWall\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStreet\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\topening\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tYork\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIndustrial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAverage\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t88.12\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tclose\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t2657.38\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\theavy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tvolume\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t416,290,000\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tshares\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\talthough\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n26\tdeclining\t_\tVERB\tVBG\t_\t27\tamod\t_\t_\n27\tissues\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\tstill\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\toutnumbered\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n30\tadvancing\t_\tVERB\tVBG\t_\t31\tamod\t_\t_\n31\tones\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tbroad\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tmarket\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tNobuto\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tYasuda\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tYamaichi\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tInvestment\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tTrust\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tManagement\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tsession\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tscenario\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tJapan\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tNow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t16\tccomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttime\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tplace\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tbuy\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\torders\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tus\t_\tPRON\tPRP\t_\t5\tdep\t_\t_\n4\tinstitutional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tchance\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tbuying\t_\tVERB\tVBG\t_\t8\tnmod\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tIsao\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tUshikubo\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tgeneral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tinvestment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tresearch\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdepartment\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tToyo\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tTrust\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t&\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tBanking\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCo.\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\talso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n20\toptimistic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdescribed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tplunge\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tfleeting\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tevent\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\tresulting\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tpart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\texcessive\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmerger\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tacquisition\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tactivity\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tUnless\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t9\tadvcl\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpanic\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tthis\t_\tPRON\tDT\t_\t9\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t26\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tbest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\ttime\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbuy\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t19\tdep\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tdep\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcase\t_\tNOUN\tNN\t_\t9\tadvcl\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tyears\t_\tNOUN\tNNS\t_\t22\tnmod:npmod\t_\t_\n22\tago\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n25\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tposted\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n7\tgains\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tM&A\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tspeculation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tdashed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcold\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\twater\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tfar\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tmajor\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t24\tnsubjpass\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\tconcerned\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tthere\t_\tPRON\tEX\t_\t27\texpl\t_\t_\n27\tis\t_\tVERB\tVBZ\t_\t12\tconj\t_\t_\n28\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n29\tmuch\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\timpact\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tsimilarly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsanguine\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t16\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tplans\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tadjust\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tour\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tasset\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tallocation\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tforeign\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tequities\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tMasato\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMurakami\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tchief\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tportfolio\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmanager\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n23\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tpension\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n26\tfund\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\tmanagement\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tdepartment\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tYasuda\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tTrust\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t&\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tBanking\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tCo\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tdecline\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\twell\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\twithin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trange\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tvolatility\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n17\tthat\t_\tADP\tIN\t_\t20\tnmod\t_\t_\n18\tYasuda\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tTrust\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tplans\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n21\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tcharts\t_\tVERB\tVBZ\t_\t20\tadvcl\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n26\toverseas\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tinvestment\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tstrategy\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tAsian\t_\tADJ\tJJ\t_\t11\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tPacific\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tMalaysia\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tSingapore\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbiggest\t_\tADJ\tJJS\t_\t14\tamod\t_\t_\n14\tlosses\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tKuala\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tLumpur\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcomposite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tindex\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tMalaysia\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\tfalling\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n25\t11.5\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t24\tdobj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n28\tSingapore\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tStraits\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tTimes\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tIndustrial\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tIndex\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n34\tdown\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n35\t10\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tindexes\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t6\tadvmod\t_\t_\n5\tthan\t_\tADP\tIN\t_\t4\tmwe\t_\t_\n6\t8\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tAustralia\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tZealand\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\t6.5\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t7\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tHong\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tKong\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBangkok\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tManila\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\tSeoul\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\tTaipei\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n9\tJakarta\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n10\tescaped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tslightly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsmaller\t_\tADJ\tJJR\t_\t14\tamod\t_\t_\n14\tlosses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBrokers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tfund\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmanagers\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tregion\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmarkets\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\treacting\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n12\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tWall\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tStreet\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tplunge\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\teven\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n19\tthough\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tthat\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdecline\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n23\tdue\t_\tADJ\tJJ\t_\t11\tadvcl\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\tlocal\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tfactors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tsuch\t_\tADJ\tJJ\t_\t31\tcase\t_\t_\n28\tas\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n29\tfailed\t_\tVERB\tVBN\t_\t31\tamod\t_\t_\n30\tcorporate\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tbuy-outs\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tdeteriorating\t_\tVERB\tVBG\t_\t36\tamod\t_\t_\n35\tjunk-bond\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tpure\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpsychology\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tWilliam\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tAu\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tYeung\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\taccount\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\texecutive\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n16\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n17\tDrexel\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n18\tBurnham\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n19\tLambert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n21\tHK\t_\tPROPN\tNNP\t_\t23\tappos\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n23\tLtd.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tHong\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tKong\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tMarkets\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthis\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tregion\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t9\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\tso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tgeared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tleveraged\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n12\tbuy-outs\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\teconomies\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n17\tgenerally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshape\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n24\tthere\t_\tPRON\tEX\t_\t25\texpl\t_\t_\n25\t's\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n26\tno\t_\tDET\tDT\t_\t27\tneg\t_\t_\n27\tdoubt\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n28\tthat\t_\tDET\tDT\t_\t32\tmark\t_\t_\n29\tAsia\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n30\tis\t_\tAUX\tVBZ\t_\t32\taux\t_\t_\n31\tstill\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tfollowing\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n33\tAmerica\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tlead\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tMalaysia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tSingapore\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbiggest\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n10\tlosses\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tbecause\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\trelatively\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\topen\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\trapid\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcash\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tflows\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHong\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKong\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tregion\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t9\tadvmod\t_\t_\n9\topen\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tmany\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tforeign\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n17\tbeen\t_\tAUX\tVBN\t_\t18\taux\t_\t_\n18\tstaying\t_\tVERB\tVBG\t_\t10\tconj\t_\t_\n19\taway\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t18\tnmod\t_\t_\n22\tsince\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tplunged\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tJune\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\tamid\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tpolitical\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tturmoil\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tChina\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tSingapore\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\ttook\t_\tVERB\tVBD\t_\t24\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tbecause\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\twant\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tget\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tout\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\ttend\t_\tVERB\tVBP\t_\t3\tdep\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tgo\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\twhere\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tliquidity\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tElizabeth\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tHambrecht\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tregional\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tanalyst\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n32\tBaring\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n33\tSecurities\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n34\t-LRB-\t_\tPUNCT\t-LRB-\t_\t36\tpunct\t_\t_\n35\tHong\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tKong\t_\tPROPN\tNNP\t_\t38\tappos\t_\t_\n37\t-RRB-\t_\tPUNCT\t-RRB-\t_\t36\tpunct\t_\t_\n38\tLtd\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpointed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tout\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n5\teven\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n6\tafter\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tMonday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\t10\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t11\tamod\t_\t_\n11\tdecline\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tStraits\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tTimes\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n18\tup\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t24\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n24\tso\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n25\tinvestors\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\tbailed\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n28\tout\t_\tADP\tRP\t_\t27\tcompound:prt\t_\t_\n29\tgenerally\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tdid\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n31\tso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\tprofitably\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSimilarly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tKuala\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLumpur\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tcomposite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tindex\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n9\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t27.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tabove\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\t1988\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tclose\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tHong\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tKong\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tHang\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tSeng\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tIndex\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t180.60\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tfinish\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t2601.70\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tcompared\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t473.9\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsession\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\torderly\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcontrast\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tfour-day\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tclosure\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tafter\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcrash\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChenevix-Trench\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tHong\t_\tPROPN\tNNP\t_\t8\tamod\t_\t_\n8\tKong-based\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n9\tBaring\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tInternational\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tFund\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tManagers\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tLtd.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tprobably\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\thit\t_\tVERB\tVBD\t_\t15\tccomp\t_\t_\n22\tbottom\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n23\tyet\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n26\tclose\t_\tADJ\tJJ\t_\t21\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tYork\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tcollapse\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsee\t_\tVERB\tVBP\t_\t32\tccomp\t_\t_\n11\tmaybe\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tanother\t_\tDET\tDT\t_\t13\tadvmod\t_\t_\n13\t5\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdownside\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tnot\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tcounting\t_\tVERB\tVBG\t_\t10\tdep\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\trisk\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tbad\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tnews\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tout\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tChina\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n31\the\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n32\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAustralia\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tSydney\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tAll\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tOrdinaries\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1601.5\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n14\t8.1\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tbiggest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tdrop\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n20\tsince\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tOctober\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tonly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\t162\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t143\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNestor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHinzack\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tanalyst\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n7\tbrokerage\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n8\tfirm\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n9\tBurdett\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tBuckeridge\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tYoung\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tLtd.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tdescribed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tperformance\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n23\tsheep-like\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n26\tinvestors\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tfled\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n29\tbluechip\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tAustralian\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tstocks\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n33\tshunned\t_\tVERB\tVBD\t_\t27\tconj\t_\t_\n34\tentrepreneurial\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tcompanies\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\tthey\t_\tPRON\tPRP\t_\t37\tnsubj\t_\t_\n37\tperceived\t_\tVERB\tVBD\t_\t35\tacl:relcl\t_\t_\n38\tas\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n39\thaving\t_\tVERB\tVBG\t_\t37\tadvcl\t_\t_\n40\tany\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\ttakeover\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tpremium\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n43\tbuilt\t_\tVERB\tVBN\t_\t39\tccomp\t_\t_\n44\tinto\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tprice\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tLondon\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tFinancial\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tTimes-Stock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\t100-share\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tindex\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tmost\t_\tADV\tRBS\t_\t11\tadvmod\t_\t_\n11\tclosely\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\twatched\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbarometer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tintraday\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\thigh\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t2163.4\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tdown\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n25\t70.5\t_\tNUM\tCD\t_\t24\tnmod:npmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n28\t3.2\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t25\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tlow\t_\tADJ\tJJ\t_\t12\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n5\tshortly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\tbefore\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\topened\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\toff\t_\tADJ\tJJ\t_\t12\tadvmod\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n15\tthan\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\t130\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tFinancial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tTimes\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\t30-share\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t79.3\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tlower\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1738.7\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tVolume\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n3\tthan\t_\tADP\tIN\t_\t2\tcase\t_\t_\n4\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\t959.3\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t457.7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n2\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tFrankfurt\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n7\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\theavy\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdecline\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tGerman\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tIndex\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t203.56\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\t12.8\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t1385.72\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tFrankfurt\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tsteepest\t_\tADJ\tJJS\t_\t24\tamod\t_\t_\n24\tfall\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n25\tever\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tRetail\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tholdings\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tmassive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tscale\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tpushing\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n11\tsome\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tblue-chip\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n15\tas\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\tmuch\t_\tADJ\tJJ\t_\t18\tadvmod\t_\t_\n17\tas\t_\tADP\tIN\t_\t18\tadvmod\t_\t_\n18\t20\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t14\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmemories\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tyears\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tsmall\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinvestors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\theld\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tafter\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tOctober\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tcrash\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tWest\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tGerman\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tcontinued\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tdecline\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\tsteeply\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tnext\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tthree\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tmonths\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t4\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttrends\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tworld\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tcalculated\t_\tVERB\tVBN\t_\t4\tdep\t_\t_\n15\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tMorgan\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n17\tStanley\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tCapital\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tInternational\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tPerspective\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tGeneva\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tmake\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n3\tthem\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tdirectly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcomparable\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\teach\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\tauxpass\t_\t_\n10\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ton\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tclose\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t1969\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\tequaling\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n17\t100\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tpercentage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tchange\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tsince\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tyear-end\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLloyd\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWright\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\treported\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t5\txcomp\t_\t_\n9\tonce\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tyou\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\ttipped\t_\tVERB\tVBD\t_\t23\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tworld\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tside\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n20\teverything\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n21\tloose\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n22\twould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tend\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n24\tup\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tCalifornia\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\talways\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tWright\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tunderestimated\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tCalifornia\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tvitality\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\tmaybe\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tstate\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tla-la\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfactions\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tstarting\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\toverwhelm\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tforces\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tmade\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n29\tsuch\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tsignificant\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tplace\t_\tNOUN\tNN\t_\t27\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t0\troot\t_\t_\n2\telse\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t1\tcop\t_\t_\n4\tone\t_\tPRON\tPRP\t_\t1\tnsubj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tmake\t_\tVERB\tVB\t_\t1\tadvcl\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\twhacky\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsave-the-earth\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinitiative\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tproposed\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n14\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tseveral\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tmajor\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tenvironmental\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tgroups\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\torganized\t_\tVERB\tVBN\t_\t13\tconj\t_\t_\n21\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tstate\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tattorney\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tgeneral\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tpassed\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n3\tby\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tvoters\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\trecently\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tannounced\t_\tVERB\tVBN\t_\t10\tamod\t_\t_\n10\tinitiative\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tphase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tout\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpesticides\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\treduce\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n18\tcarbon\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\tdioxide\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\temissions\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t40\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t17\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\tban\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n26\tnew\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\toffshore\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdrilling\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n30\tban\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n31\tchemicals\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n32\tthought\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tdeplete\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tozone\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tlayer\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n40\tcreate\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n41\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n42\tnew\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n43\tstate\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n44\tenvironmental\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tofficer\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n46\tarmed\t_\tVERB\tVBN\t_\t45\tacl\t_\t_\n47\twith\t_\tADP\tIN\t_\t52\tcase\t_\t_\n48\ta\t_\tDET\tDT\t_\t52\tdet\t_\t_\n49\t$\t_\tSYM\t$\t_\t52\tamod\t_\t_\n50\t40\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n51\tmillion\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n52\tbudget\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n53\tto\t_\tPART\tTO\t_\t54\tmark\t_\t_\n54\tsue\t_\tVERB\tVB\t_\t52\tacl\t_\t_\n55\tany\t_\tDET\tDT\t_\t56\tdet\t_\t_\n56\tfirm\t_\tNOUN\tNN\t_\t54\tdobj\t_\t_\n57\tor\t_\tCONJ\tCC\t_\t56\tcc\t_\t_\n58\tagency\t_\tNOUN\tNN\t_\t56\tconj\t_\t_\n59\the\t_\tPRON\tPRP\t_\t60\tnsubj\t_\t_\n60\tthinks\t_\tVERB\tVBZ\t_\t56\tacl:relcl\t_\t_\n61\tis\t_\tAUX\tVBZ\t_\t64\taux\t_\t_\n62\tbeing\t_\tVERB\tVBG\t_\t64\tcop\t_\t_\n63\ttoo\t_\tADV\tRB\t_\t64\tadvmod\t_\t_\n64\tdirty\t_\tADJ\tJJ\t_\t60\tccomp\t_\t_\n65\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twish-lists\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgreen\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlobby\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tSierra\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tClub\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tLeague\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tConservation\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tVoters\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tNatural\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tResources\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tDefense\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCouncil\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n30\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tNational\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tToxics\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCampaign\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tCitizens\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n37\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tBetter\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tEnvironment\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInterestingly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tEnvironmental\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tDefense\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tFund\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\thaving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tnothing\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdo\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tone\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t3\tcc:preconj\t_\t_\n3\tCalifornians\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tall\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tAmericans\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tthing\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tpassed\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tbars\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tany\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcrops\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tCalifornia\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\tdo\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tmeet\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tinitiative\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tstandards\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tKansas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\twheat\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tfarmers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tFlorida\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tfruit\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tgrowers\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tadjust\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tgive\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n14\tup\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tCalifornia\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\twords\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tCalifornia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tpresuming\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\ttake\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tcontrol\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnation\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tfarm\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpolicy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tusual\t_\tADV\tRB\t_\t9\tadvcl\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tgreen\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tlobby\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tproposal\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n9\tdisconnected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tscientific\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\treality\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tgreenhouse-effect\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprovision\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tproposed\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n3\tinitiative\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tmandate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\treduction\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tcarbon\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdioxide\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t40\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tone\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tbuys\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n5\tinto\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\twhole\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tgreenhouse\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttheory\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n13\tinconceivable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n15\treductions\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsingle\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tstate\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\thave\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n22\tany\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\timpact\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\ton\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\twhat\t_\tPRON\tWP\t_\t27\tnsubjpass\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t27\tauxpass\t_\t_\n27\tbilled\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n28\tas\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tglobal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tproblem\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\trational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tscience\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\teconomics\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\thave\t_\tVERB\tVBP\t_\t19\tadvcl\t_\t_\n8\tnothing\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tdo\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tenvironment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tinitiative\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t19\tnsubj\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n20\ton\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfirst\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tplace\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlook\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\tunder\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthese\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcircumstances\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tways\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t19\tnmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsponsors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n17\tthemselves\t_\tPRON\tPRP\t_\t16\tnmod:npmod\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tbenefit\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tkey\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\there\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tambition\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tstate\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n9\tAttorney\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n10\tGeneral\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tJohn\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tVan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tde\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKamp\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\trunning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tgovernor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tde\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tKamp\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n8\twho\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n9\tcollected\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tplans\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tvarious\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tradical\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tenvironmental\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tgroups\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tcobbled\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tsingle\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tunwieldy\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tinitiative\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n27\tbe\t_\tAUX\tVB\t_\t28\tauxpass\t_\t_\n28\tplaced\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n29\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tballot\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\telection\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tNov.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n36\t6\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n38\t1990\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tgubernatorial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\telection\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n5\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\tcrafted\t_\tVERB\tVBN\t_\t3\txcomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tinclude\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tall\t_\tDET\tDT\t_\t13\tdet:predet\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\thot\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tissues\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tset\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n16\toff\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\twealthy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tHollywood\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tweepers\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\tdonate\t_\tVERB\tVBP\t_\t20\tacl:relcl\t_\t_\n23\tmoney\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tallows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tVan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tde\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tKamp\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tget\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n10\taround\t_\tADP\tRP\t_\t13\tdep\t_\t_\n11\tcampaign\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tspending\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tlimits\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tspend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlegal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmaximum\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tcampaign\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n11\tall\t_\tDET\tDT\t_\t13\tdet:predet\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tspending\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tVan\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tde\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tKamp\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tinitiative\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t-LRB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\tare\t_\tVERB\tVBP\t_\t19\tdep\t_\t_\n25\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n26\tlimits\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t3\tparataxis\t_\t_\n29\tgravy\t_\tNOUN\tNN\t_\t28\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeing\t_\tAUX\tVBG\t_\t5\tauxpass\t_\t_\n5\tlabeled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBig\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGreen\t_\tPROPN\tNNP\t_\t5\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tmaybe\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t15\tnsubjpass\t_\t_\n13\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tcalled\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n16\tThe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tBig\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGreenback\t_\tPROPN\tNNP\t_\t15\txcomp\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tRepublican\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcandidate\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tSen.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tPete\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tWilson\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tplaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tinitiative\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tfundraising\t_\tVERB\tVBG\t_\t15\tamod\t_\t_\n15\tgame\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\ttoo\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tsponsoring\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\town\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tcrime\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tinitiative\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tpossible\t_\tADJ\tJJ\t_\t19\tadvcl\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tBig\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tGreen\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tinitiative\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n10\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\truled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\tunconstitutional\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n18\tcourse\t_\tNOUN\tNN\t_\t17\tmwe\t_\t_\n19\tconceivable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tmodern\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tCalifornia\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\tcould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tslide\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n27\tthrough\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n6\trecently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tpassed\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tProp.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\t65\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tanti-toxic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinitiative\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tthis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tproposal\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tbecome\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n8\tlaw\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgreen\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlobby\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tbenefit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tdirectly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tinitiative\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcreates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tfree\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfloating\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tstate\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tenvironmental\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficer\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsue\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tgovernment\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tagencies\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tdo\t_\tVERB\tVBP\t_\t12\tacl:relcl\t_\t_\n18\tthings\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\tdoes\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tlike\t_\tVERB\tVB\t_\t18\tacl:relcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tNRDC\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tsuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgroups\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n8\tno\t_\tADV\tRB\t_\t9\tneg\t_\t_\n9\tlonger\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n10\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\thave\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tspend\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tas\t_\tADP\tIN\t_\t16\tamod\t_\t_\n15\tmuch\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmoney\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tlitigation\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n20\ttaxpayers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tbear\t_\tVERB\tVB\t_\t2\tparataxis\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcost\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tde\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tKamp\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tallies\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\thoping\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tenvironment\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n15\tsuch\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmom\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tapple-pie\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tissue\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\tamong\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tcertain\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tsegments\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tCalifornia\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tpopulation\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tnow\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n30\talmost\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\tany\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcollection\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n33\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tanti-scientific\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n36\tanti-pocketbook\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tnonsense\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n38\tcan\t_\tAUX\tMD\t_\t39\taux\t_\t_\n39\tpass\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n40\tunder\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tits\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n42\trubric\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t1\tmwe\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstate\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tliberals\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n8\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n9\tyet\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tunto\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tthemselves\t_\tPRON\tPRP\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdecide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\tdoes\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\twant\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tPresident\t_\tPROPN\tNNP\t_\t13\txcomp\t_\t_\n18\twho\t_\tPRON\tWP\t_\t19\tnsubj\t_\t_\n19\tlost\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n20\tcontrol\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tinterstate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcommerce\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tattorney\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tgeneral\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tCalifornia\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsegments\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tCalifornia\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tpolitical\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tmedia\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tculture\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tyet\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tstart\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpoint\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tout\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tinitiative\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\timpose\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n23\tsignificant\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcosts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tstate\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tless\t_\tADV\tRBR\t_\t30\tadvmod\t_\t_\n30\taffluent\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcitizens\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tform\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\thigher\t_\tADJ\tJJR\t_\t38\tamod\t_\t_\n37\tfood\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tprices\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tlost\t_\tVERB\tVBN\t_\t41\tamod\t_\t_\n41\tjobs\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgrandiose\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinitiative\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tCalifornia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tdefine\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n8\titself\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfuture\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\teither\t_\tCONJ\tCC\t_\t15\tcc:preconj\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstate\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\ttethered\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n18\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n19\teconomic\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tscientific\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\treality\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n25\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tone\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n27\tbeing\t_\tAUX\tVBG\t_\t28\tauxpass\t_\t_\n28\tled\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n29\tto\t_\tADP\tTO\t_\t34\tmark\t_\t_\n30\twherever\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n31\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n32\tla-la\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tactivists\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n34\twant\t_\tVERB\tVBP\t_\t28\tadvcl\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\ttake\t_\tVERB\tVB\t_\t34\txcomp\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFirst\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdeath\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\twatch\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t2\tdep\t_\t_\n2\texhilaration\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSpurred\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n2\tby\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\twaves\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tlarge-scale\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tbuying\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblue-chip\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tstocks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tDow\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tJones\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tIndustrial\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAverage\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\trallied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n19\terased\t_\tVERB\tVBN\t_\t16\tconj\t_\t_\n20\tabout\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tadvmod\t_\t_\n22\thalf\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\t190.58-point\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tplunge\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n29\tgaining\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n30\t88.12\t_\tNUM\tCD\t_\t29\tdobj\t_\t_\n31\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n32\t2657.38\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfourth-biggest\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tadvance\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\taverage\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tblue\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tchips\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tfrenetic\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tStock\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tExchange\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tvolume\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t416,290,000\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tshares\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\thighest\t_\tADJ\tJJS\t_\t20\tdep\t_\t_\n27\tsince\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tdays\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tafter\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\t1987\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tcrash\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tadvance\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tcheered\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n7\tfeared\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t1987-style\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcrash\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\toccur\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n13\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n17\tstrictly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tbig-stock\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\trally\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n21\tfed\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\thuge\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbuying\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tbargain-hunting\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tinstitutions\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tprogram\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\ttraders\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttroubling\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tsign\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tDeclining\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tBig\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBoard\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\toutnumbered\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n12\tadvancers\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\t975\t_\tNUM\tCD\t_\t16\tdep\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tdep\t_\t_\n16\t749\t_\tNUM\tCD\t_\t11\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tover-the-counter\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tincludes\t_\tVERB\tVBZ\t_\t21\tacl:relcl\t_\t_\n24\tmany\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tsmaller\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n26\tstocks\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tsuffered\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n28\taftershocks\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n30\tFriday\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tlate\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\tBig\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tBoard\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tplunge\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tOTC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tindex\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tdown\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t6.31\t_\tNUM\tCD\t_\t6\tnmod:npmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\t460.98\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdivergence\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tmost\t_\tADV\tRBS\t_\t13\tadvmod\t_\t_\n13\timportant\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tindicators\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tindustrials\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n19\t'\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tsister\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\taverage\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n24\t20-stock\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n25\tDow\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tJones\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tTransportation\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tAverage\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n30\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\t102.06\t_\tNUM\tCD\t_\t30\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\t1304.23\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n35\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n36\tsecond-worst\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tdecline\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n38\tnext\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n39\tto\t_\tADP\tTO\t_\t42\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\t164.78-point\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tfall\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n43\tduring\t_\tADP\tIN\t_\t46\tcase\t_\t_\n44\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n45\t1987\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n46\tcrash\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tTransports\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tdisappointments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tairline\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tstocks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tUAL\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tAMR\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\teach\t_\tDET\tDT\t_\t17\tdep\t_\t_\n17\tfell\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n18\tmore\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\t20\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n23\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\treopened\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\ttrading\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tyesterday\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n28\tafter\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n29\tbeing\t_\tAUX\tVBG\t_\t30\tauxpass\t_\t_\n30\tsuspended\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n31\tFriday\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tafternoon\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUAL\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcenter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\t190.58-point\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t56\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t7/8\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\t222\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t7/8\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n22\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tnearly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\t2.3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tpleasant\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trally\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\t's\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tselective\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tArthur\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tCashin\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tJr.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tveteran\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\tPaineWebber\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tInc.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\ttrader\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tBig\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tBoard\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tEveryone\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tauxpass\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlittle\t_\tADV\tRB\t_\t6\tdep\t_\t_\n6\tconcerned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tabout\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgeneral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tnarrowness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trally\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\tfailure\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tOTC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tget\t_\tVERB\tVB\t_\t15\tdep\t_\t_\n22\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tplus\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tterritory\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tstrange\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfeeling\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tanyone\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tleft\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplace\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\twhistling\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n10\tDixie\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trally\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tcredence\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tat\t_\tADP\tIN\t_\t3\tadvmod\t_\t_\n7\tleast\t_\tADJ\tJJS\t_\t6\tmwe\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tnow\t_\tADV\tRB\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tpre-trading\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdeclaration\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n16\tBig\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n17\tBoard\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n18\tChairman\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n19\tJohn\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJ.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPhelan\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tJr.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tdebacle\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n28\twas\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n30\tan\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tabnormal\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcondition\t_\tNOUN\tNN\t_\t14\tdep\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n35\tnot\t_\tADV\tRB\t_\t37\tneg\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tdisaster\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n39\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tto\t_\tADP\tTO\t_\t3\tcase\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tlooked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tdisaster\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t9:30\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\ta.m.\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\topening\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tbell\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tIndustrial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAverage\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t1.64\t_\tNUM\tCD\t_\t7\tnmod:npmod\t_\t_\n9\tshortly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tafter\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t9:30\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t21\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t30\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tblue-chip\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\taverage\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tincluding\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tEastman\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKodak\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tGeneral\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMotors\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\ttrade\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tbecause\t_\tADV\tRB\t_\t26\tcase\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\theavy\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tbacklog\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tsell\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\torders\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tleft\t_\tVERB\tVBD\t_\t29\tacl\t_\t_\n31\tover\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\tfrom\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tFriday\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tlate-afternoon\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\trout\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t9:45\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tProcter\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tGamble\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n8\tone\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tmost\t_\tADV\tRBS\t_\t12\tadvmod\t_\t_\n12\timportant\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tDow\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbellwethers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlate\t_\tADJ\tJJ\t_\t8\tacl\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\topened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tdown\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\t2\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t3/4\t_\tNUM\tCD\t_\t19\tnmod:npmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\t117\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tquick\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\t27-point\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tloss\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttraders\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tlooked\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tif\t_\tSCONJ\tIN\t_\t16\tmwe\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\theaded\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n21\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tyet\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\tanother\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\ttumble\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tover\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tensuing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n7\thalf\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thour\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\t49\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n13\tBig\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tBoard\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tspecialist\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tcharge\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tof\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tkeeping\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\torderly\t_\tADV\tRB\t_\t20\txcomp\t_\t_\n24\tgroped\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tfind\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tbuy\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\torders\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tmajor\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tbrokerage\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tfirms\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tmatch\t_\tVERB\tVB\t_\t28\tacl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tselling\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tflood\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tmake\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n5\tmatters\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tworse\t_\tADJ\tJJR\t_\t4\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tcomputerized\t_\tVERB\tVBN\t_\t10\tamod\t_\t_\n9\tsell\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprograms\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tkicked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\thammering\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tsteeper\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n18\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\theavy\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tstock-index\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tarbitrage\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tsold\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n10\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbaskets\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tbought\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n16\tstock-index\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfutures\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tprofit\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tprice\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tdiscrepancies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tbetween\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\thangover\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n9\tStandard\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tPoor\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n13\t500-stock\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tindex\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfutures\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tclosed\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n18\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsharp\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdiscount\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tonslaught\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tprogram\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tselling\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tdashed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thopes\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n11\tsome\t_\tDET\tDT\t_\t19\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tbig\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\ttrading\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfirms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\thold\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n20\toff\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\tuntil\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tstabilized\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\taccelerated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tslide\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tlosing\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n8\t63.52\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tfirst\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\t40\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tminutes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tprogram\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t9\tadvcl\t_\t_\n4\tseemingly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcharge\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tbuyers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tbacked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\taway\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\twatched\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n16\tstocks\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tfall\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\t10:15\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tsuddenly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tstarted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\trebound\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tshot\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n15\tupward\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tdid\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n18\tso\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\teven\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tfaster\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tearly-morning\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfall\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n7\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n8\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprogram\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n12\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\tresponsible\t_\tADJ\tJJ\t_\t11\tacl:relcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t3\tdet:predet\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tselling\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tpushed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcheap\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tvalues\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n12\tbig\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tinvestment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbanks\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tmoney\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tmanagement\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tfirms\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n20\tstarted\t_\tVERB\tVBD\t_\t10\tdep\t_\t_\n21\tbuying\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\theavily\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprogram\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tin\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tthere\t_\tADV\tRB\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ttoo\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tcourse\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\taccording\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n3\tto\t_\tADP\tTO\t_\t2\tmwe\t_\t_\n4\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\ttrader\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprogrammers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tdid\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tlook\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tdominant\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tupside\t_\tADV\tRB\t_\t14\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdownside\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tbecause\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n25\t-LCB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n26\talso\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n27\t-RCB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tlot\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tbargain-hunting\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n33\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tinstitutions\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tRoland\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMachold\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tdirector\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJersey\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDivision\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tInvestment\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\toversees\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n16\t$\t_\tSYM\t$\t_\t15\tdobj\t_\t_\n17\t29\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tbillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinvestments\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n25\tfirst\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tthing\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n27\twe\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tdid\t_\tVERB\tVBD\t_\t26\tacl:relcl\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t22\tccomp\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tdouble\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tour\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n33\torders\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n35\tyesterday\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tmorning\t_\tNOUN\tNN\t_\t31\tnmod:tmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWith\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n5\tdown\t_\tADV\tRB\t_\t12\tadvcl\t_\t_\n6\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthis\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\t'll\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tprobably\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tanother\t_\tDET\tDT\t_\t14\tadvmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n15\t50\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\tput\t_\tVERB\tVBD\t_\t12\tconj\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tWalt\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tDisney\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\tparticularly\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n7\tcaught\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t10\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\teyes\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tDisney\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tone\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tbiggest\t_\tADJ\tJJS\t_\t14\tamod\t_\t_\n13\tsell-order\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\timbalances\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n20\tone\t_\tNUM\tCD\t_\t8\tparataxis\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tseven\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tstocks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tfinish\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n29\ttrading\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n30\tthat\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t28\tnmod:tmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tlate\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t114\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n10\t8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t1/2\t_\tNUM\tCD\t_\t9\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthen\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tshot\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n5\tupward\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2\t_\tNUM\tCD\t_\t5\tnmod:npmod\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tGoldman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tSachs\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tstepped\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n15\tin\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\tbought\t_\tVERB\tVBD\t_\t14\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\ttraders\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tDisney\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tspecialist\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tRobert\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tFagenson\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n10\tI\t_\tPRON\tPRP\t_\t13\tnsubjpass\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tsurprised\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tGoldman\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\trepresented\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n17\t4\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\topening\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tvolume\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAround\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStreet\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tdesks\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\trelieved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t12\tmwe\t_\t_\n14\tplay\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcontrast\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tgridlock\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tDonaldson\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tLufkin\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tJenrette\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\thead\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n10\tequity\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tDudley\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tEppel\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n17\tI\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tthink\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\topening\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n22\tconstructive\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\torderly\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tput\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tsome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\torders\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\ttogether\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThere\t_\tADV\tRB\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlot\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tpanic\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tselling\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\teither\t_\tDET\tDT\t_\t11\tcc:preconj\t_\t_\n11\tdomestically\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tinternationally\t_\tADV\tRB\t_\t11\tconj\t_\t_\n14\t...\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n2\tlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\twhere\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n8\t-LCB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t-RCB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n12\tapart\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\tyet\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcrossed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tpositive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tterritory\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\ttraders\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n16\tglum\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tanother\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tdramatic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tburst\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\ttacked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tRP\t_\t12\tdep\t_\t_\n11\t42\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tfive\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tminutes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t10:25\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tindex\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tshowed\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tgain\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t5.74\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tBig\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tfloor\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdesks\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tyelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tapproval\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tGrinned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n2\tGriffith\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPeck\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttrader\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tShearson\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tLehman\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tHutton\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tOTC\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdepartment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n17\tI\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\ttell\t_\tVERB\tVBP\t_\t1\tccomp\t_\t_\n19\tyou\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tacts\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n24\thealthy\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tAround\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\thim\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tscores\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttraders\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tseemed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tget\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tburst\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tenergy\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tboss\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tbroke\t_\tVERB\tVBD\t_\t7\tparataxis\t_\t_\n18\tout\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tbottles\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tPerrier\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\twater\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tcool\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n25\tthem\t_\tPRON\tPRP\t_\t24\tdobj\t_\t_\n26\toff\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspecialists\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcry\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n10\tPull\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n11\tyour\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\toffers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n15\tmeaning\t_\tVERB\tVBG\t_\t8\tparataxis\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tspecialists\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tsoon\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tget\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\thigher\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tbedlam\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tupside\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tspecialist\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tnot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n3\teverybody\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcarnage\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tChicago\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tBoard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tOptions\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\toptions\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n18\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t28\tnsubjpass\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tS&P\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\t100\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tstock-index\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\toptions\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\tauxpass\t_\t_\n28\thalted\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmakers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\t100\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\toptions\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbullish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpositions\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshutdown\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tcame\t_\tVERB\tVBD\t_\t23\tadvcl\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\twere\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tfrozen\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\thuge\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tlosses\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweekend\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tclearing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfirms\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tChicago\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmakers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tget\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n14\tout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tpositions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcost\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tMonday\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tabsolutely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tkilled\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tslaughtered\t_\tVERB\tVBN\t_\t5\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tChicago-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\toptions\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\ttrader\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tclosely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\twatched\t_\tVERB\tVBN\t_\t10\tamod\t_\t_\n8\tMajor\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tMarket\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tIndex\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhose\t_\tPRON\tWP$\t_\t14\tnmod:poss\t_\t_\n13\t20\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tmimic\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tindustrials\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tdid\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tlead\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n23\tyesterday\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tbig\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trally\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGallagher\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpartner\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tspecialist\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tFowler\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tRosenau\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tThe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdifference\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n17\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttoday\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tyears\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\tago\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n26\tTerrible\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tTuesday\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n30\tOct.\t_\tPROPN\tNNP\t_\t27\tnmod:tmod\t_\t_\n31\t20\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n33\t1987\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n36\tis\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n37\tthat\t_\tDET\tDT\t_\t40\tmark\t_\t_\n38\tthen\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n39\twe\t_\tPRON\tPRP\t_\t40\tnsubj\t_\t_\n40\tneeded\t_\tVERB\tVBD\t_\t36\tccomp\t_\t_\n41\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tsavior\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n43\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n44\tgo\t_\tVERB\tVB\t_\t40\txcomp\t_\t_\n45\tinto\t_\tADP\tIN\t_\t49\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n47\tMajor\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n48\tMarket\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tIndex\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n51\tspend\t_\tVERB\tVB\t_\t44\tconj\t_\t_\n52\t$\t_\tSYM\t$\t_\t51\tdobj\t_\t_\n53\t2\t_\tNUM\tCD\t_\t54\tcompound\t_\t_\n54\tmillion\t_\tNUM\tCD\t_\t52\tnummod\t_\t_\n55\tand\t_\tCONJ\tCC\t_\t44\tcc\t_\t_\n56\tget\t_\tVERB\tVB\t_\t44\tconj\t_\t_\n57\tthe\t_\tDET\tDT\t_\t59\tdet\t_\t_\n58\tprogram\t_\tNOUN\tNN\t_\t59\tcompound\t_\t_\n59\trally\t_\tNOUN\tNN\t_\t60\tnsubj\t_\t_\n60\tstarted\t_\tVERB\tVBD\t_\t56\tccomp\t_\t_\n61\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t-LCB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n4\tinstitutions\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\t-RCB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n6\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprograms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tcoming\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tbacked\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n12\taway\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\tbacked\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n15\taway\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttechnical\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlevel\t_\tNOUN\tNN\t_\t14\tadvcl\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tbuy\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tin\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tvengeance\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n3\taccording\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n4\tto\t_\tADP\tTO\t_\t3\tmwe\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tanalyst\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttiming\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tMajor\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n12\tMarket\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tIndex\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tbuying\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\tjust\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n17\tbefore\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tturnaround\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n21\tsimilar\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tthat\t_\tPRON\tDT\t_\t21\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tTerrible\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tTuesday\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tFutures\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tpulling\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\thigher\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tDonald\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tSelkin\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\thead\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tstock-index\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tresearch\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tPrudential-Bache\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tSecurities\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tspecialist\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tstruggled\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tanother\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\thighly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tvolatile\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tsession\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tperformance\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\tyesterday\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n20\tbetter\t_\tADV\tRBR\t_\t0\troot\t_\t_\n21\tthan\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tlate-afternoon\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tchaos\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\taccording\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n29\tto\t_\tADP\tTO\t_\t28\tmwe\t_\t_\n30\ttraders\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tbrokers\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n33\twho\t_\tPRON\tWP\t_\t34\tnsubj\t_\t_\n34\twork\t_\tVERB\tVBP\t_\t30\tacl:relcl\t_\t_\n35\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tthem\t_\tPRON\tPRP\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tSpecialists\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tcriticized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tinability\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tmaintain\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\torderly\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\thalts\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tblue-chip\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tMerck\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\twe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\texpected\t_\tVERB\tVBD\t_\t30\tdep\t_\t_\n18\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\thalts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n25\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n26\ttoo\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tbad\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tDonaldson\t_\tPROPN\tNNP\t_\t34\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tMr.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tEppel\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\twho\t_\tPRON\tWP\t_\t39\tnsubj\t_\t_\n37\thad\t_\tAUX\tVBD\t_\t39\taux\t_\t_\n38\tbeen\t_\tVERB\tVBN\t_\t39\tcop\t_\t_\n39\tcritical\t_\tADJ\tJJ\t_\t34\tacl:relcl\t_\t_\n40\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tspecialists\t_\tNOUN\tNNS\t_\t44\tnmod:poss\t_\t_\n43\t'\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tperformance\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n45\ton\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tFriday\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tBoard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n8\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\topened\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n12\tlate\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tthere\t_\tPRON\tEX\t_\t15\texpl\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tsubsequent\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\ttrading\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\thalts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tonly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\tthree\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tissues\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t22\tpunct\t_\t_\n24\tAMR\t_\tPROPN\tNNP\t_\t22\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tMerck\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n28\tValero\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tEnergy\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMerck\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tmost\t_\tADV\tRBS\t_\t7\tadvmod\t_\t_\n7\timportant\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tMajor\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMarket\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tIndex\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tsector\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tspared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tpast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tdays\t_\tNOUN\tNNS\t_\t15\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tgyrations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tindustrials\t_\tNOUN\tNNS\t_\t7\tnmod:poss\t_\t_\n6\t'\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\thigh\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tOct.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t9\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n16\trelatively\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tgood\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tperformances\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n20\tbeen\t_\tAUX\tVBN\t_\t21\tauxpass\t_\t_\n21\tturned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tin\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\treal-estate\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tutilities\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tprecious\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmetals\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n31\tlife\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n32\tinsurance\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tstocks\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\ttop\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tperforming\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tindustry\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tgroup\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n10\toil\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tfield\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tequipment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tissues\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tHalliburton\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t3\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/4\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\t38\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tSchlumberger\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\trose\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/2\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t43\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t1/4\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\tBaker\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHughes\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\trose\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n22\t1\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t1/8\t_\tNUM\tCD\t_\t21\tdobj\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\t22\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBecause\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tUAL\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tAMR\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\ttumbles\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tairlines\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tweakest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n13\tsector\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tPhilip\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorris\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBoard\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t9\tadvmod\t_\t_\n9\tactive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tissue\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\trising\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/4\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\t43\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t1/4\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tnearly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\teight\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tmajor\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tissues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tCoca-Cola\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tup\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t2\t_\tNUM\tCD\t_\t9\tnmod:npmod\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t66\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t3/4\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t1.7\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n19\tAmerican\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tTelephone\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n21\t&\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tTelegraph\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\trose\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n24\t3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\t1/4\t_\tNUM\tCD\t_\t23\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n27\t43\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tnearly\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n30\t7.8\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tshares\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tShares\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tInternational\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBusiness\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMachines\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\treported\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tfinished\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t103\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tup\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\t1\t_\tNUM\tCD\t_\t16\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tslipping\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n21\tbelow\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t100\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tsession\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tfirst\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\ttime\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tfive\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tShares\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthree\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tbrokerage\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tafter\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\treported\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t1\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t28\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tPaineWebber\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\trose\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n11\t3/4\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t18\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/2\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n16\tBear\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tStearns\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\trose\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n19\t3/8\t_\tNUM\tCD\t_\t18\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t14\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t1/4\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tNational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMortgage\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAssociation\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\trecently\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thot\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t4\t_\tNUM\tCD\t_\t11\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\t124\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tnearly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\t1.6\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tconference\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tclose\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tyesterday\t_\tNOUN\tNN\t_\t22\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBoard\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPhelan\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\texchange\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tofficials\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n22\tpraised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tperformance\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tcomputers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tpersonnel\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tDET\tDT\t_\t10\tmark\t_\t_\n5\tprogram\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tstrategies\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tresponsible\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\ttriggering\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdecline\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tdespite\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tjump\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tuse\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tcomputer-driven\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tstrategies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tmonths\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tadvmod\t_\t_\n2\t24\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t32\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n7\tthan\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\t100\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\ttraded\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tfinal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\t90\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tminutes\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tsession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t29\tadvmod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tplunge\t_\tNOUN\tNN\t_\t29\tnsubjpass\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\twas\t_\tAUX\tVBD\t_\t29\tauxpass\t_\t_\n29\tconcentrated\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n32\tprogram-related\t_\tADJ\tJJ\t_\t35\tccomp\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n34\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tProgram\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\ttrades\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tmake\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\texchange\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tvolume\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\taverage\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n18\tdespite\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tincrease\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n21\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:tmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n26\tcertainly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tnot\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tsomething\t_\tNOUN\tNN\t_\t40\tccomp\t_\t_\n29\tyou\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\twould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\tsay\t_\tVERB\tVB\t_\t28\tacl:relcl\t_\t_\n32\tprecipitated\t_\tVERB\tVBD\t_\t31\tccomp\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tmarket\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tdecline\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t40\tpunct\t_\t_\n38\tMr.\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tPhelan\t_\tPROPN\tNNP\t_\t40\tnsubj\t_\t_\n40\tsaid\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\trelief\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\trebounded\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tObviously\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n4\tevery\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttime\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n6\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tget\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tkind\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\treaction\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\t's\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tgoing\t_\tVERB\tVBG\t_\t26\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tmake\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\teverybody\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tnervous\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tincluding\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n22\tme\t_\tPRON\tPRP\t_\t19\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n25\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\texchange\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n7\tconversations\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tWall\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tStreet\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tfirms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tthroughout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tweekend\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tall\t_\tDET\tDT\t_\t20\tdet:predet\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tparticipants\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tbehaved\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n22\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tresponsibly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n26\ttoday\t_\tNOUN\tNN\t_\t21\tnmod:tmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tPeter\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDaPuzzo\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tShearson\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\thead\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tretail\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tequity\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttrading\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tpraised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tinstitutional\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tOTC\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n24\theavy\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t16\tacl:relcl\t_\t_\n26\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tNasdaq\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tbiggest\t_\tADJ\tJJS\t_\t32\tamod\t_\t_\n31\ttechnology\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tissues\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n33\tyesterday\t_\tNOUN\tNN\t_\t25\tnmod:tmod\t_\t_\n34\tamid\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tflood\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tselling\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n39\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tother\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tinvestors\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tinstitutions\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n4\tca\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\tcriticized\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tbehavior\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDaPuzzo\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tinterview\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\topposite\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\thappened\t_\tVERB\tVBD\t_\t5\tacl\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tOct.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t19\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tjudgment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tpanic\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tduring\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tround\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tselling\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmorning\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tbought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tweakness\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n8\tsold\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n9\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstrength\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tkept\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\torderly\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMaybe\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tlearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\texperience\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tperformance\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tspecialists\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tduring\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n13\tadmirable\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tbecause\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n16\tout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\t1,640\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n19\tBig\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tBoard\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tcommon\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n23\ttraded\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tday\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tonly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tseven\t_\tNUM\tCD\t_\t30\tnsubjpass\t_\t_\n29\twere\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tclosed\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\twere\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n33\tn't\t_\tPART\tRB\t_\t34\tneg\t_\t_\n34\treopened\t_\tVERB\tVBN\t_\t30\tconj\t_\t_\n35\tbefore\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tclose\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tdid\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\texcellent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tjob\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tPhelan\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tspecialists\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWall\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tStreet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tcomplained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\ttrading\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tsuspensions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tA.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWhite\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tSonja\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSteptoe\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tarticle\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWest\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGermany\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tGreen\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tParty\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tjoined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tideological\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsoulmates\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tJeremy\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tRifkin\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tChristic\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInstitute\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlegal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbattle\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tground\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tAtlantis\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tshuttle\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n27\tplutonium-powered\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tGalileo\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tprobe\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n31\tJupiter\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tanti-defense\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tGreens\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\twanted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tWashington\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tfederal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tappeals\t_\tNOUN\tNNS\t_\t9\tcompound\t_\t_\n9\tcourt\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tblock\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n12\ttoday\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tscheduled\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tliftoff\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tlong\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tenough\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n18\tfor\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthem\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\task\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tWorld\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCourt\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n25\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\torder\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tpermanent\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcancellation\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\t$\t_\tSYM\t$\t_\t37\tamod\t_\t_\n35\t1.5\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tbillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\tflight\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tthree-judge\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tappeals\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tpanel\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n6\trefused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tcomply\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tthough\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\tliberal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tJudge\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPat\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tWald\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\twent\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n16\tout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ther\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tway\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdeny\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n23\tthis\t_\tPRON\tDT\t_\t29\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n27\tfrivolous\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tcase\t_\tNOUN\tNN\t_\t21\tccomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNASA\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tshould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tfines\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tall\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthree\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpolitico-plaintiffs\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tforeign\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tdomestic\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tfor\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tbringing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n18\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmischievous\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tcase\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tHouse-Senate\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tconference\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tpermanent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tsmoking\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tban\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tall\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tairline\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\troutes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\twithin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tcontinental\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tall\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tflights\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tsix\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\thours\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n26\tless\t_\tADJ\tJJR\t_\t24\tnummod\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\tAlaska\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tHawaii\t_\tPROPN\tNNP\t_\t28\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trestrictions\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcover\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tall\t_\tDET\tDT\t_\t4\tdobj\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpercentage\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tair\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttraffic\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\trepresent\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\texpansion\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tcurrent\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tsmoking\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tban\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tflights\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\ttwo\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\thours\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n31\tless\t_\tADJ\tJJR\t_\t29\tnummod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texemption\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\tallowed\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tlonger\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n6\tflights\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tAlaska\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tHawaii\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n14\tlargely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tface-saving\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tconcession\t_\tNOUN\tNN\t_\t11\txcomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\ttraditionally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tpowerful\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\ttobacco\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tindustry\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n27\tfound\t_\tVERB\tVBN\t_\t23\tacl:relcl\t_\t_\n28\titself\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\tincreasingly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tisolated\t_\tVERB\tVBN\t_\t27\txcomp\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tface\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tpublic\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tpressure\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\trecent\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tyears\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t6-4\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmargin\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tHouse\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tnegotiators\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tinitially\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tnight\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tSenate\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tprovision\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tcovering\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tall\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tdomestic\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tflights\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsix-hour\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcompromise\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\tsoon\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tagreed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t7\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsubsequent\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdiscussions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tpractical\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmatter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\tflights\t_\tNOUN\tNNS\t_\t15\tnsubjpass\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCoast\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tHawaii\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tcovered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n19\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttime\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tlimit\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlanguage\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\texempt\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n29\tlonger\t_\tADJ\tJJR\t_\t30\tamod\t_\t_\n30\troutes\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tbeginning\t_\tVERB\tVBG\t_\t30\tacl\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\texample\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tChicago\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n38\tor\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\ton\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tEast\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tCoast\t_\tPROPN\tNNP\t_\t37\tconj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tSenate\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tban\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\taggressive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsupport\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tSen.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tFrank\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tLautenberg\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t-LRB-\t_\tPUNCT\t-LRB-\t_\t16\tpunct\t_\t_\n16\tD.\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tN.J.\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n19\t-RRB-\t_\tPUNCT\t-RRB-\t_\t16\tpunct\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tused\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tposition\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tas\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\tSenate\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tAppropriations\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tsubcommittee\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tchairman\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tgarner\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n34\tvotes\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n35\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tinitiative\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tattached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n10\t26\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tfiscal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\t1990\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\ttransportation\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbill\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\twithin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLautenberg\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tjurisdiction\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfinal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcompromise\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t27\tauxpass\t_\t_\n27\tlaced\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n28\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tmore\t_\tADJ\tJJR\t_\t31\tadvmod\t_\t_\n30\tthan\t_\tADP\tIN\t_\t29\tmwe\t_\t_\n31\t$\t_\tSYM\t$\t_\t27\tnmod\t_\t_\n32\t205\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\troad\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tprojects\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n37\tearmarked\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n38\tby\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tmembers\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\tas\t_\tADV\tRB\t_\t31\tcc\t_\t_\n41\twell\t_\tADV\tRB\t_\t40\tmwe\t_\t_\n42\tas\t_\tADP\tIN\t_\t40\tmwe\t_\t_\n43\tfunds\t_\tNOUN\tNNS\t_\t31\tconj\t_\t_\n44\tsought\t_\tVERB\tVBD\t_\t43\tacl\t_\t_\n45\tby\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tmajor\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tairports\t_\tNOUN\tNNS\t_\t44\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n49\tincluding\t_\tVERB\tVBG\t_\t50\tcase\t_\t_\n50\tDenver\t_\tPROPN\tNNP\t_\t47\tnmod\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFrom\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\toutset\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttobacco\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tindustry\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tVERB\tVBN\t_\t10\tcop\t_\t_\n10\tuncertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t16\tmark\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t14\tdet\t_\t_\n14\tstrategy\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tfollow\t_\tVERB\tVB\t_\t10\tdep\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tretains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tsupport\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tHouse\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tleadership\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tinfluence\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tgrower\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tstates\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tsuch\t_\tADJ\tJJ\t_\t20\tcase\t_\t_\n18\tas\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tNorth\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCarolina\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMajority\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tWhip\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tWilliam\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGray\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\towes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tpolitical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdebt\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n10\tSouthern\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tagriculture\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tlawmakers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\trise\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tHouse\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tPhiladelphia\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDemocrat\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tused\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n25\this\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tposition\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tconference\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tsalvage\t_\tVERB\tVB\t_\t24\tadvcl\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\texemption\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\tfrom\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\ttotal\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tban\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsmoking\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprovision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tattracted\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t10\tadvmod\t_\t_\n9\tpublic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinterest\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tunderlying\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbill\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsubject\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tbehind-the-scenes\t_\tADJ\tJJ\t_\t17\tnmod\t_\t_\n20\tlobbying\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n21\tbecause\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tof\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\timpact\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tair\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\ttransportation\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n30\tmore\t_\tADV\tRBR\t_\t31\tadvmod\t_\t_\n31\tmundane\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tbut\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n34\tpolitically\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\timportant\t_\tADJ\tJJ\t_\t31\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n37\tprojects\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tmembers\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tstark\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlesson\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpower\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tappropriations\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tcommittees\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tHouse\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\tdeliberately\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tkilled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\thandful\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tprojects\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tbacked\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tlawmakers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFlorida\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tIllinois\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n29\tPennsylvania\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n30\twho\t_\tPRON\tWP\t_\t32\tnsubj\t_\t_\n31\thad\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\tvoted\t_\tVERB\tVBN\t_\t23\tacl:relcl\t_\t_\n33\tagainst\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tpanel\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tleadership\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tHouse\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tfloor\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tAnybody\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tvote\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\twant\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tRep.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tWilliam\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tLehman\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n15\tD.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tFla.\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\thead\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tHouse\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tconferees\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tyou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tmake\t_\tVERB\tVBP\t_\t11\tadvcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\trequest\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tshould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tsupport\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcommittee\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tAviation\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAdministration\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfinal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbill\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tpromises\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tincrease\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tspending\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tfacilities\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tequipment\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tmore\t_\tADJ\tJJR\t_\t21\tadvmod\t_\t_\n20\tthan\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\t20\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tlast\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n28\ttotal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\toperations\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n30\twould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\trise\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t31\tnmod\t_\t_\n34\t3.84\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tbillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t--\t_\tPUNCT\t:\t_\t33\tpunct\t_\t_\n37\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n38\t12\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\t%\t_\tSYM\tNN\t_\t40\tamod\t_\t_\n40\tboost\t_\tNOUN\tNN\t_\t33\tdep\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfacilities\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\taccount\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t40\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tDenver\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tambitious\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tairport\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompetition\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthese\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfunds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tcreated\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n22\tshifting\t_\tVERB\tVBG\t_\t23\tamod\t_\t_\n23\talliances\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tbetween\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\turban\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tlawmakers\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\trepresenting\t_\tVERB\tVBG\t_\t26\tacl\t_\t_\n28\testablished\t_\tVERB\tVBN\t_\t29\tamod\t_\t_\n29\tairports\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tPhiladelphia\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tMichigan\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tmajor\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tcarriers\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n38\tto\t_\tADP\tTO\t_\t39\tcase\t_\t_\n39\tDenver\t_\tPROPN\tNNP\t_\t37\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n41\tUnited\t_\tPROPN\tNNP\t_\t37\tappos\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tContinental\t_\tPROPN\tNNP\t_\t41\tconj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLeery\t_\tADJ\tJJ\t_\t16\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcosts\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tcritics\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tsay\t_\tVERB\tVBP\t_\t4\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tcompetition\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tairlines\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tsought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tgain\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tleverage\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcity\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tDenver\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tTexas\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAir\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\towns\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tContinental\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tAir\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tTransport\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tAssociation\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n14\twere\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n15\tprominent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t15\tnmod\t_\t_\n18\tlobbying\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindustry\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\timpose\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tconditions\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\thave\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\tdelayed\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\tfunds\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproject\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tuntil\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tDenver\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tairlines\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n20\thad\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\tagreed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tleases\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t50\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tgates\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\trejected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tfavor\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tmuch\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tlooser\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n10\tlanguage\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tdirecting\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tTransportation\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDepartment\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\treview\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcosts\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfirst\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tphase\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\texpected\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tcost\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tabout\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\t$\t_\tSYM\t$\t_\t26\tdobj\t_\t_\n29\t2\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThough\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tsmaller\t_\tADJ\tJJR\t_\t9\tadvcl\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ttotal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tdollars\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconference\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tpreserve\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\testimated\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n14\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n15\t30.6\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tcontroversial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsubsidies\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\tcarriers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tserving\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\trural\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tisolated\t_\tVERB\tVBN\t_\t23\tconj\t_\t_\n26\tairports\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsum\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t0\troot\t_\t_\n5\tthan\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdouble\t_\tADV\tRB\t_\t4\tnmod\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tHouse\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tapproved\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tprogram\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tlist\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tqualified\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n21\tairports\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n23\tbe\t_\tAUX\tVB\t_\t24\tauxpass\t_\t_\n24\tcut\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n25\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t22\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n27\tunder\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tnew\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tdistance\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\trequirements\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tlimits\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n33\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tlevel\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsubsidy\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCongress\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tpreviously\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tcut\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsix\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tairports\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\timpact\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tchanges\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\teliminate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmost\t_\tADV\tRBS\t_\t14\tadvmod\t_\t_\n13\texcessive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcases\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tgovernment\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\tpaying\t_\tVERB\tVBG\t_\t14\tacl:relcl\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t23\tadvmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n24\t200\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\teach\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tpassenger\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tsubsidies\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\trail\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\thighway\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\taccounts\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tagreement\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tprovides\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t615\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAmtrak\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tincluding\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n18\t85\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tcapital\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\timprovements\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tfederal-formula\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgrants\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tmass\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\ttransit\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n9\teffectively\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tfrozen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t1.625\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\t$\t_\tSYM\t$\t_\t12\tconj\t_\t_\n18\t20\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tlast\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tfiscal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tEnjoying\t_\tVERB\tVBG\t_\t16\tdep\t_\t_\n2\tseveral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tblockbuster\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tmovie\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\thits\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n6\tincluding\t_\tVERB\tVBG\t_\t8\tcase\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n8\tBatman\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n11\tLos\t_\tPROPN\tNNP\t_\t12\tamod\t_\t_\n12\tAngeles-based\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tGuber-Peters\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tEntertainment\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCo.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfirst\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tended\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tAug.\t_\tPROPN\tNNP\t_\t22\tnmod:tmod\t_\t_\n24\t31\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n27\t5.8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\t50\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tcents\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n36\tcompared\t_\tVERB\tVBN\t_\t40\tcase\t_\t_\n37\twith\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tyear-earlier\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tloss\t_\tNOUN\tNN\t_\t26\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tSony\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\toffered\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tacquire\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmovie-production\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tfree\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\ttop\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\texecutives\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tPeter\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tGuber\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tJon\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tPeters\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tan\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\texclusive\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tagreement\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n31\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n32\tTime\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tWarner\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tInc.\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tWarner\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tCommunications\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tInc.\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\tso\t_\tSCONJ\tIN\t_\t42\tmark\t_\t_\n40\tthey\t_\tPRON\tPRP\t_\t42\tnsubj\t_\t_\n41\tcan\t_\tAUX\tMD\t_\t42\taux\t_\t_\n42\trun\t_\tVERB\tVB\t_\t14\tadvcl\t_\t_\n43\tColumbia\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n44\tPictures\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n45\tEntertainment\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tInc\t_\tPROPN\tNNP\t_\t42\tdobj\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSony\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tweeks\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tacquire\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tColumbia\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n11\t3.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t27\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWarner\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tSony\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tGuber-Peters\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n6\tlate\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tweek\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n10\tSony\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tGuber-Peters\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tcountersued\t_\tVERB\tVBN\t_\t2\tparataxis\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcharging\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n17\tWarner\t_\tPROPN\tNNP\t_\t16\tdobj\t_\t_\n18\twith\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tattempting\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tinterfere\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tSony\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tacquisition\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\ttwo\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcompanies\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGuber-Peters\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnet\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tlatest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tcompared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t6.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t62\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tyear-earlier\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tperiod\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\trevenue\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\t138\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n11\t10.9\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n15\t4.6\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\treflecting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsuccess\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tmovies\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n25\tGorillas\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tMist\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n32\tRainman\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n35\tas\t_\tADV\tRB\t_\t23\tcc\t_\t_\n36\twell\t_\tADV\tRB\t_\t35\tmwe\t_\t_\n37\tas\t_\tADP\tIN\t_\t35\tmwe\t_\t_\n38\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\tbox-office\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tsmash\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n41\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n42\tBatman\t_\tPROPN\tNNP\t_\t40\tdep\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tincluding\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n4\tJon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tM.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tHuntsman\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tSalt\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tLake\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCity\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tboosted\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tstake\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tAristech\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tChemical\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\t8.36\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t14\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet:predet\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tcommon\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\toutstanding\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tpreviously\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\treported\t_\tVERB\tVBN\t_\t21\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tHuntsman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tHoldings\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\towned\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tJon\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tM.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHuntsman\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmembers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\this\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tfamily\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tproposed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n23\tBanstar\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCorp.\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\taffiliate\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tHuntsman\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tHoldings\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n32\tacquire\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n33\tAristech\t_\tPROPN\tNNP\t_\t32\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tfriendly\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\ttransaction\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n38\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\t$\t_\tSYM\t$\t_\t40\tdep\t_\t_\n40\t25-a-share\t_\tADJ\tJJ\t_\t32\tnmod\t_\t_\n41\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tcash\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n44\tor\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n45\t$\t_\tSYM\t$\t_\t40\tconj\t_\t_\n46\t817.5\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n47\tmillion\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfiling\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tSecurities\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tCommission\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tHuntsman\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tcontrols\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n17\t2,720,675\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n18\tAristech\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tcommon\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tincluding\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n23\t306,000\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tbought\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tAug.\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t21\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n30\tOct.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t13\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t36\tdep\t_\t_\n34\t20\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n35\tto\t_\tADP\tTO\t_\t36\tdep\t_\t_\n36\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n37\t20.875\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n38\tper\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tshare\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOfficials\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tAristech\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tPittsburgh\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tcomment\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tCongress\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t4\tcop\t_\t_\n4\tcritical\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBush\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tsending\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\tenough\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\taid\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tPoland\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tso\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\tgetting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n21\tready\t_\tADJ\tJJ\t_\t20\txcomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tsend\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\town\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tversion\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tCARE\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tpackage\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tSenate\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsend\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdelegation\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tcongressional\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tstaffers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tPoland\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tassist\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tlegislature\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tSejm\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tdemocratic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprocedures\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSenator\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPete\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDomenici\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tcalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\teffort\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tgift\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdemocracy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tPoles\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tmight\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tdo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tbetter\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tview\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tTrojan\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHorse\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tvast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tshadow\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tgovernment\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t15,000\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tcongressional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstaffers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tthat\t_\tADP\tIN\t_\t12\tnsubj\t_\t_\n12\thelps\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n13\tcreate\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tlegislative\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tatrocities\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n19\t1,376\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n20\tpage\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t13-pound\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\treconciliation\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tbill\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n26\tclaimed\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n27\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n28\tbe\t_\tVERB\tVB\t_\t30\tcop\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tbudget\t_\tNOUN\tNN\t_\t26\txcomp\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tUnited\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tStates\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMaybe\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\tafter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstaffers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\texplain\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\twork\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tPoles\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t'd\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n15\twilling\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcome\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tback\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tdo\t_\tVERB\tVB\t_\t17\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tsame\t_\tADJ\tJJ\t_\t20\tdobj\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tpeople\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tWaterford\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tWedgwood\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPLC\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tfinancially\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\ttroubled\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n8\tIrish\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tfine\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcrystal\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tWedgwood\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tchina\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthat\t_\tDET\tDT\t_\t27\tmark\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tpretax\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tloss\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tfirst\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tsix\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\twidened\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n28\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n29\t10.6\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n31\tIrish\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tpunts\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t-LRB-\t_\tPUNCT\t-LRB-\t_\t34\tpunct\t_\t_\n34\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n35\t14.9\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t-RRB-\t_\tPUNCT\t-RRB-\t_\t34\tpunct\t_\t_\n38\tfrom\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\t5.8\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n41\tIrish\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tpunts\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n43\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tyear\t_\tNOUN\tNN\t_\t45\tnmod:npmod\t_\t_\n45\tearlier\t_\tADV\tRBR\t_\t42\tadvmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresults\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tworse\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n8\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\texpectations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tsuggested\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tinterim\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tloss\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\taround\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tIrish\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tpunts\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tsharply\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tweaker\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n5\tLondon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n9\tWaterford\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n12\tdown\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tpence\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t50\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpence\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n18\t-LRB-\t_\tPUNCT\t-LRB-\t_\t20\tpunct\t_\t_\n19\t79\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t17\tappos\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t20\tpunct\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tafter\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ttaxation\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tminority\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tinterests\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\t14\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tIrish\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpunts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tcompared\t_\tVERB\tVBN\t_\t20\tcase\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tloss\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\t9.3\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n23\tmillion\t_\tADJ\tJJ\t_\t22\tadvmod\t_\t_\n24\tIrish\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tpunts\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tyear-earlier\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tperiod\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\tany\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\textraordinary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\titems\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttotal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t27\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n10\t168.1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tIrish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpunts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tcompared\t_\tVERB\tVBN\t_\t19\tcase\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\t132.6\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n18\tIrish\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tpunts\t_\tNOUN\tNNS\t_\t6\tadvcl\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n22\tago\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWaterford\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdecided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tagainst\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tpaying\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tinterim\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdividend\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWaterford\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tappointment\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tmanagement\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tteam\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsigning\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tcomprehensive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tlabor\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tagreement\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tenhance\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tlong-term\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprospects\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tsudden\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n4\tflight\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tquality\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\ttriggered\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\texplosive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbond-market\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\trally\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\treversed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n21\tflight\t_\tNOUN\tNN\t_\t25\tdep\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tquality\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\trout\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsetback\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t9\tnmod\t_\t_\n6\tTreasury\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tbond\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tplummeted\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trebound\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tprofit-taking\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpretty\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\twild\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOur\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tclosely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\ttied\t_\tVERB\tVBN\t_\t12\tdep\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tJoel\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKazis\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tmanager\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tSmith\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tBarney\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\tHarris\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n24\tUpham\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n25\t&\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tCo\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tflight\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tquality\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n8\tno\t_\tDET\tDT\t_\t9\tneg\t_\t_\n9\tlonger\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\tneeded\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n11\tonce\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tfound\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tlegs\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfixed-income\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfurther\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdrop\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tnearly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\t200-point\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdrop\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tIndustrial\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAverage\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tADP\tIN\t_\t2\tnsubj\t_\t_\n2\tcaused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tflee\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n9\thigh-quality\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tTreasury\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tbonds\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n15\tsafer\t_\tADJ\tJJR\t_\t11\tacl:relcl\t_\t_\n16\tthan\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttypes\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsecurities\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbegan\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tclimb\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tinstead\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tbonds\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tContributing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tselling\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tpressure\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t1\taux\t_\t_\n7\tdispatches\t_\tNOUN\tNNS\t_\t1\tnsubj\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tseveral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfirms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tadvising\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n13\tclients\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tboost\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tholdings\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\treduce\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tsize\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ttheir\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcash\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tbond\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tportfolios\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfirms\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tMerrill\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tLynch\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n7\t&\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tDean\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tWitter\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tReynolds\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbond\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tseemed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tignore\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tevidence\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tFederal\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tReserve\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\teased\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n13\tcredit\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tconditions\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tslightly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tallowing\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tfederal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tfunds\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\trate\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdrift\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n24\tas\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tlow\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\tas\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\t8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t1/2\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tclosely\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\twatched\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tovernight\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tloans\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\tbetween\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\t8\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t3/4\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n21\tlast\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tdown\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n27\tperceived\t_\tVERB\tVBN\t_\t29\tamod\t_\t_\n28\ttarget\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tlevel\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tabout\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\t9\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trate\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tearly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsignal\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tchanges\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tFed\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tpolicy\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmodest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\teasing\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tdid\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tstir\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n10\tmuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tenthusiasm\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t17\tnsubjpass\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n16\twidely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t9\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\teconomists\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tcontend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tlatest\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n10\teasing\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tstarted\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tweek\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tnote\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tdisappointed\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\taggressive\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\teasing\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tbenchmark\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\t30-year\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tbond\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\t1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t3/4\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tlower\t_\tADV\tRBR\t_\t8\txcomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tnmod:npmod\t_\t_\n19\t17.50\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\teach\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\t$\t_\tSYM\t$\t_\t25\tamod\t_\t_\n23\t1,000\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n24\tface\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tamount\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\treversal\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n6\tevident\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tshorter-term\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tTreasury\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tsecurities\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tbill\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trates\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tplummeted\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n6\tas\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n7\tmuch\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n9\t0.70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tpercentage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tpoint\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tback\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tthree-fourths\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthat\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tamount\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbond-equivalent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyield\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthree-month\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tTreasury\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tbills\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\texample\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tlate\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t7.72\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t7.16\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t13\tadvcl\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tInvestment-grade\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tcorporate\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbonds\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tmortgage-backed\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsecurities\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tmunicipal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n10\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tjunk\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tbattered\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tnear\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tstandstill\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tpost\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tsmall\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgains\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tvolatile\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsession\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tJunk\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tbonds\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tas\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\tmuch\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tas\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n7\tfour\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tlower\t_\tADV\tRBR\t_\t3\txcomp\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\tstaged\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmodest\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcomeback\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tfirmed\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\thigh-yield\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\thelped\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tactive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tinstitutional\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbuying\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tparticular\t_\tADJ\tJJ\t_\t18\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t18\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t12\tcase\t_\t_\n9\tas\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tFirst\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tDrexel\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tBurnham\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tLambert\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tInc.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tmaking\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tjunk\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tissues\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tearly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsession\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n30\tprices\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n31\thit\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n32\tseverely\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tdepressed\t_\tVERB\tVBN\t_\t34\tamod\t_\t_\n34\tlevels\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t23\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\twillingness\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tcompanies\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\thigh-yield\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\timproved\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsentiment\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tjunk\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbonds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tJohn\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tLonski\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tan\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\teconomist\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n29\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\tMoody\t_\tPROPN\tNNP\t_\t34\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tInvestors\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tService\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tInc\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tbonds\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tovernight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tJapan\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\topened\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n14\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\t7:30\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tp.m.\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tEDT\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tbenchmark\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\t30-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbond\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n8\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoint\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tearly\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tJapanese\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\treaction\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tquick\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\t600-point\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdrop\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tTokyo\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tas\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tJapanese\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\trebounded\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tTreasurys\t_\tPROPN\tNNPS\t_\t8\tnsubj\t_\t_\n8\tretreated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tended\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n11\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tmodestly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\thigher\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\toperations\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twanting\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tkeep\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\twatchful\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\teye\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tJapanese\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrading\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tindication\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\twhere\t_\tADV\tWRB\t_\t23\tadvmod\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tbegin\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n25\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n26\tfully\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tstaffed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\tduring\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\tTokyo\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\ttrading\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsession\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tMost\t_\tADJ\tJJS\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\taction\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n7\tduring\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tnight\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tsession\t_\tNOUN\tNN\t_\t13\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tMichael\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMoore\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ttrading\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmanager\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tContinental\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tBank\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tJay\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGoldinger\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t6\tnsubj\t_\t_\n5\toften\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\ttrades\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n7\tovernight\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tCapital\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tInsight\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tBeverly\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tHills\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tCalif.\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tTokyo\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tactive\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\tbut\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n28\thighly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tvolatile\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t28\tdep\t_\t_\n4\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tpoint\t_\tNOUN\tNN\t_\t4\tnmod:npmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t10\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tright\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tbefore\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tlunch\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tthen\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n15\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlunch\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n17\twe\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\twent\t_\tVERB\tVBD\t_\t3\tparataxis\t_\t_\n19\tup\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\t3/4\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoint\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\t12\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tminutes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n27\the\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tTokyo\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tduring\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tlunchtime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tturned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbad\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbellwether\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\topened\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n5\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tregained\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n15\tstrength\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbond\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfocus\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tactivity\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tstrong\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tovershadowed\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n16\ttoday\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tslate\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\teconomic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tdata\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tincludes\t_\tVERB\tVBZ\t_\t18\tacl:relcl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tgovernment\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\treport\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tAugust\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tU.S.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tmerchandise\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\ttrade\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tSeptember\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tindustrial\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tproduction\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIndustrial\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tproduction\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tdeclined\t_\tVERB\tVBN\t_\t4\txcomp\t_\t_\n8\t0.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\taccording\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t11\tmwe\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tconsensus\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\teconomists\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tsurveyed\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tCapital\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tMarkets\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tReport\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\ttrade\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdeficit\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\thave\t_\tAUX\tVB\t_\t9\taux\t_\t_\n9\twidened\t_\tVERB\tVBN\t_\t6\txcomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t9.1\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n16\t7.58\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tJuly\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twidening\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthat\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmagnitude\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t18\tparataxis\t_\t_\n8\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n9\tNew\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tYork\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n15\tnot\t_\tADV\tRB\t_\t18\tneg\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfavorable\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tnumber\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\t...\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tdo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tdamage\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tus\t_\tPRON\tPRP\t_\t4\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tsupply\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tweigh\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\theavily\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tFederal\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tHome\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tLoan\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tBank\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tprices\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n21\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\t$\t_\tSYM\t$\t_\t25\tamod\t_\t_\n23\t2.3\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tbillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\toffering\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n26\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n27\tone-year\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tthree-year\t_\tADJ\tJJ\t_\t27\tconj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n31\tfive-year\t_\tADJ\tJJ\t_\t27\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n33\t10-year\t_\tADJ\tJJ\t_\t27\tconj\t_\t_\n34\tmaturities\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTomorrow\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tResolution\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tFunding\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tprovide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tdetails\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n12\tfirst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbond\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tissue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\texpected\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttotal\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n23\t4\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tbillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\t$\t_\tSYM\t$\t_\t22\tconj\t_\t_\n27\t6\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tbillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n30\tcarry\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmaturity\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tgreater\t_\tADJ\tJJR\t_\t32\tamod\t_\t_\n34\tthan\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\t20\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tyears\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tResolution\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFunding\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdivision\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tResolution\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tTrust\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tagency\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n15\tcreated\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tbail\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tout\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tnation\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\ttroubled\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n23\tthrifts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tTennessee\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tValley\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAuthority\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tprice\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\toffering\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\tpublic\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tdebt\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tborrowing\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\t15\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tyears\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n3\t's\t_\tPART\tPOS\t_\t4\tdep\t_\t_\n4\tlots\t_\tNOUN\tNNS\t_\t13\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsupply\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\ttrader\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcouple\t_\tNOUN\tNN\t_\t9\tnummod\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t5\tconj\t_\t_\n8\ttough\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tweeks\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tcoming\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tTreasury\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSecurities\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tPrices\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tTreasury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tmoderate\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tactive\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n10\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tbenchmark\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\t30-year\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tTreasury\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tbond\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tlate\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprice\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t101\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t19/32\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tcompared\t_\tVERB\tVBN\t_\t20\tcase\t_\t_\n17\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tclosing\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t103\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t12/32\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:tmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyield\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbenchmark\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tissue\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\t7.97\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t7.82\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n3\t10-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnotes\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tlate\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t100\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t3/32\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyield\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t7.97\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tcompared\t_\tVERB\tVBN\t_\t21\tcase\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t101\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t9/32\t_\tNUM\tCD\t_\t6\tadvcl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tyield\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\t7.84\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tShort-term\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinterest\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trates\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n6\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tweekly\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tbill\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tauction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdiscount\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tthree-month\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tTreasury\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tbills\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\t7.37\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlowest\t_\tADJ\tJJS\t_\t12\tappos\t_\t_\n16\tsince\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\taverage\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t7.36\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tauction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tOct.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t17\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdiscount\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\t7.42\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsix-month\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbills\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlowest\t_\tADJ\tJJS\t_\t7\tappos\t_\t_\n15\tsince\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\taverage\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\t7.35\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t17\tnmod\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tauction\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tJuly\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t31\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n28\t1989\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t4\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n3\tauction\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdetails\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tRates\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\tauxpass\t_\t_\n3\tdetermined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdifference\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tpurchase\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tface\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tvalue\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\thigher\t_\tADJ\tJJR\t_\t4\tamod\t_\t_\n4\tbidding\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tnarrows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinvestor\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\treturn\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\twhile\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tlower\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n12\tbidding\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\twidens\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tpercentage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trates\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\tauxpass\t_\t_\n5\tcalculated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t360-day\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tcoupon-equivalent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyield\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\tauxpass\t_\t_\n16\tbased\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n17\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\t365-day\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissues\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tdated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t13-week\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbills\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tmature\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tJan.\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n6\t18\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1990\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t26-week\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbills\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tmature\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n15\tApril\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n16\t19\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n18\t1990\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCorporate\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tIssues\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n\n1\tInvestment-grade\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tcorporate\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbonds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tone\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tdep\t_\t_\n7\t1\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t1/2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tpoint\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n10\tlower\t_\tADV\tRBR\t_\t4\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tissues\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tForeign\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tBonds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n\n1\tForeign\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tbonds\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tweakened\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tmost\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcurrencies\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tbenchmark\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n6\tJapan\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tNo.\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n9\t111\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n10\t4.6\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t%\t_\tSYM\tNN\t_\t12\tamod\t_\t_\n12\tbond\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tdue\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n14\t1998\t_\tNUM\tCD\t_\t13\tnmod:tmod\t_\t_\n15\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbrokers\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tscreens\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t96.15\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n23\t1.17\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tpoint\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyield\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\t5.245\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n2\tWest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGermany\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\t6\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t3/4\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tdep\t_\t_\n8\tissue\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tdue\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\tJune\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t1999\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t98.30\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tup\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\t0.91\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tpoint\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tyield\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n21\t6.99\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n2\tBritain\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\t11\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n7\tbond\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tdue\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\t2003/2007\t_\tNUM\tCD\t_\t8\tnmod:tmod\t_\t_\n10\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t1\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t1/8\t_\tNUM\tCD\t_\t13\tnmod:npmod\t_\t_\n13\thigher\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t111\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t19/32\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tyield\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n19\t10.12\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n24\t11\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\t3/4\t_\tNUM\tCD\t_\t26\tdep\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tdep\t_\t_\n27\tnotes\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n28\tdue\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n29\t1991\t_\tNUM\tCD\t_\t28\tnmod:tmod\t_\t_\n30\trose\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n31\t21/32\t_\tNUM\tCD\t_\t30\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\t98\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\t26/32\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tyield\t_\tVERB\tVB\t_\t30\tadvcl\t_\t_\n37\t12.74\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\t%\t_\tSYM\tNN\t_\t36\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMortgage-Backed\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tSecurities\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n\n1\tMortgage\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tsecurities\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tmost\t_\tADJ\tJJS\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tgains\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tactive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tissues\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tended\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n14\t24/32\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tdep\t_\t_\n16\t30/32\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoint\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tlower\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDealers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmorning\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tactivity\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\thectic\t_\tADJ\tJJ\t_\t2\tdep\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tdropped\t_\tVERB\tVBD\t_\t6\tdep\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tresponse\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tgains\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tTreasury\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tsecurities\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n25\ttrading\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tslowed\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tmoderate\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tlevels\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tafternoon\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGovernment\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tNational\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tMortgage\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tAssociation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tNovember\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tdelivery\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tquoted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tlate\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t98\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t4/32\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\t30/32\t_\tNUM\tCD\t_\t19\tnmod:npmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n24\t9\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\t1/2\t_\tNUM\tCD\t_\t26\tdep\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tdep\t_\t_\n27\tsecurities\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n28\twere\t_\tVERB\tVBD\t_\t33\tcop\t_\t_\n29\tdown\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n30\t27/32\t_\tNUM\tCD\t_\t29\tnmod:npmod\t_\t_\n31\tat\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\t100\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\t5/32\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n36\t10\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\t%\t_\tSYM\tNN\t_\t38\tamod\t_\t_\n38\tsecurities\t_\tNOUN\tNNS\t_\t42\tnsubj\t_\t_\n39\twere\t_\tVERB\tVBD\t_\t42\tcop\t_\t_\n40\tat\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\t102\t_\tNUM\tCD\t_\t42\tcompound\t_\t_\n42\t2/32\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n44\toff\t_\tADJ\tJJ\t_\t42\tadvmod\t_\t_\n45\t24/32\t_\tNUM\tCD\t_\t44\tdep\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\t9\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n8\tsecurities\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\twere\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t97\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t1/4\t_\tNUM\tCD\t_\t0\troot\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n15\t3/4\t_\tNUM\tCD\t_\t14\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tmortgage\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tissues\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tgained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tas\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmuch\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t5/32\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLate\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n3\tGinnie\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tMae\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tyielding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\t9.39\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\t12-year\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\taverage\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tlife\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tassumption\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tspread\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n22\tabove\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tTreasury\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\t10-year\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tnote\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tnarrowed\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n28\t0.01\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n29\tpercentage\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tpoint\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n32\t1.42\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbusy\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdealings\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tFreddie\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMac\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tFederal\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tNational\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tMortgage\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAssociation\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tsecurities\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n18\tunderwriters\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tweek\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\theavy\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tslate\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\treal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n27\testate\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n28\tmortgage\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n29\tinvestment\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n30\tconduit\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tissues\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n32\tmoved\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tgather\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\tcollateral\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n36\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tnew\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tdeals\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOffsetting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tRemic-related\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpurchases\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\twere\t_\tVERB\tVBD\t_\t1\taux\t_\t_\n6\tcontinued\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n7\theavy\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsales\t_\tNOUN\tNNS\t_\t1\tnsubj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmortgage\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\toriginators\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tproducing\t_\tVERB\tVBG\t_\t8\tacl:relcl\t_\t_\n16\tincreased\t_\tVERB\tVBN\t_\t17\tamod\t_\t_\n17\tamounts\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tfixed-rate\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tmortgage-backed\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tissues\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tlower\t_\tADJ\tJJR\t_\t24\tamod\t_\t_\n24\trates\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tnew-issue\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tactivity\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tderivative\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMunicipals\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n\n1\tRebounding\t_\tVERB\tVBG\t_\t2\tamod\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tweaker\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n5\tTreasury\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\tdrove\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tmunicipal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t1/4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t3/4\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tpoint\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n14\tlower\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tlate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdealings\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsession\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tlosses\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tmunicipal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tclose\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tmark\t_\t_\n10\twhere\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n13\tbefore\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\t190.58-point\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdrop\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n17\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tIndustrial\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAverage\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n24\tprompted\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tcapital\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t28\tcompound\t_\t_\n28\trally\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\thectic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tduring\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmorning\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tplayers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\ttrying\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tgauge\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tequities\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tcontinue\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n17\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tfree\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tfall\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n22\tstabilize\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n23\tafter\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tbrief\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tspot\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tweakness\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTax-exempts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tstarted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsession\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tflat\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttouch\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n9\thigher\t_\tADV\tRBR\t_\t5\tadvcl\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tanticipation\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tfurther\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\terosion\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n19\tbond\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\trapidly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tturned\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n23\tsouth\t_\tADJ\tJJ\t_\t22\tadvmod\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tbecame\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n27\tmore\t_\tADV\tRBR\t_\t28\tadvmod\t_\t_\n28\tclear\t_\tADJ\tJJ\t_\t26\txcomp\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\trepeat\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n32\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tOctober\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\t1987\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tcrash\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\twas\t_\tVERB\tVBD\t_\t40\tcop\t_\t_\n38\tn't\t_\tPART\tRB\t_\t40\tneg\t_\t_\n39\tat\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\thand\t_\tNOUN\tNN\t_\t28\tccomp\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tProfessionals\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tdominated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmunicipal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tthroughout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsession\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tretail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tseemed\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\thugging\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsidelines\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tuntil\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmeasure\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tvolatility\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\tis\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\twrung\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n18\tout\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tJersey\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tTurnpike\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAuthority\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\t7.20\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n8\tissue\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t2018\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n12\toff\t_\tADJ\tJJ\t_\t17\tadvmod\t_\t_\n13\t3/4\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t98\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t1/2\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tbid\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tyielding\t_\tVERB\tVBG\t_\t17\txcomp\t_\t_\n20\t7.32\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tup\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n24\t0.07\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tpercentage\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tpoint\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tlate\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tFlorida\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBoard\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tEducation\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n6\t7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/4\t_\tNUM\tCD\t_\t8\tdep\t_\t_\n8\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n9\tissue\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t2023\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\t5/8\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tpoint\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n15\tweaker\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n16\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\t99\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t1/2\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tbid\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t7\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\t1/8\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n4\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n5\tissue\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tTriborough\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBridge\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tTunnel\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAuthority\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tdue\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n17\t2019\t_\tNUM\tCD\t_\t16\tnmod:tmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n20\toff\t_\tADJ\tJJ\t_\t25\tadvmod\t_\t_\n21\t5/8\t_\tNUM\tCD\t_\t20\tdep\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\t98\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t1/8\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tbid\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n2\tFairfax\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n3\tCounty\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\tVa.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tWater\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAuthority\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\t7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t1/4\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n12\t%\t_\tSYM\tNN\t_\t13\tdep\t_\t_\n13\tissue\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t2027\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n17\tdown\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n18\t3/4\t_\tNUM\tCD\t_\t17\tnmod:npmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\t99\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t7/8\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tbid\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tSerial\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tbond\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tyields\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t0.05\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tpercentage\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpoint\t_\tNOUN\tNN\t_\t5\tnmod:npmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBMA\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tKansas\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCity\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMo.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t's\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tweighing\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tstrategic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\talternatives\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n18\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tBusiness\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tMen\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tAssurance\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tCo.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n28\tis\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n29\tcontacting\t_\tVERB\tVBG\t_\t12\tconj\t_\t_\n30\tpossible\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tbuyers\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tlife\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\thealth\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n37\tinsurance\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\toperation\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBMA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n6\trunaway\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tmedical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcosts\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\tmade\t_\tVERB\tVBN\t_\t4\tdep\t_\t_\n12\thealth\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tinsurance\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsignificant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchallenge\t_\tNOUN\tNN\t_\t11\txcomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\tmargins\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n22\talso\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tpinched\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n26\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tchanges\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmix\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tlife-insurance\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tproducts\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\tconsumers\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n35\tnow\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tdemand\t_\tVERB\tVBP\t_\t33\tacl:relcl\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBusiness\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMen\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tAssurance\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\trepresented\t_\tVERB\tVBD\t_\t35\tccomp\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n10\t288\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tnummod\t_\t_\n17\t488\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t1988\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\trevenue\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\toperating\t_\tVERB\tVBG\t_\t28\tamod\t_\t_\n28\tincome\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n30\tabout\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\t$\t_\tSYM\t$\t_\t7\tconj\t_\t_\n32\t10\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tspokesman\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tBMA\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tinvestment\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbanker\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tAlex\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n8\tBrown\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tSons\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tauthorized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcontact\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tpossible\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbuyers\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tunit\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tLaidlaw\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTransportation\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLtd.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\traised\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tstake\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tADT\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tLtd.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tBermuda\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\t29.4\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t28\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tLaidlaw\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tdisclose\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tToronto\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\ttransportation\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\twaste\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tservices\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tconcern\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\tpaid\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tadditional\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t25\tdobj\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n26\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tacquired\t_\tVERB\tVBD\t_\t25\tccomp\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n29\tover\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tlast\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcouple\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tweeks\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tLaidlaw\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tincrease\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tstake\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tADT\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tbeyond\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t30\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n16\twithout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tgreat\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdeal\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tthought\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n23\tbecause\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tof\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n25\tBritish\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\ttakeover\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tregulations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n29\trequire\t_\tVERB\tVBP\t_\t27\tacl:relcl\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tcompany\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tacquiring\t_\tVERB\tVBG\t_\t31\tacl\t_\t_\n33\tmore\t_\tADJ\tJJR\t_\t35\tadvmod\t_\t_\n34\tthan\t_\tADP\tIN\t_\t33\tmwe\t_\t_\n35\t30\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t32\tdobj\t_\t_\n37\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n38\textend\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n39\tan\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\toffer\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n41\tto\t_\tADP\tTO\t_\t43\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\trest\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n44\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tcompany\t_\tNOUN\tNN\t_\t48\tnmod:poss\t_\t_\n47\t's\t_\tPART\tPOS\t_\t46\tcase\t_\t_\n48\tshareholders\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tADT\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tsecurity\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tservices\t_\tNOUN\tNNS\t_\t1\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tauctions\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\ttrades\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tStock\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tExchange\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLaidlaw\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\t47%-controlled\t_\tNUM\tCD\t_\t0\troot\t_\t_\n4\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tCanadian\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tPacific\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLtd.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tMontreal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\ttransportation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tresources\t_\tNOUN\tNNS\t_\t7\tappos\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tindustrial\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tholding\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n17\tconcern\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNintendo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCo.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tJapanese\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmaker\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tvideo\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tgames\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\telectronic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tinformation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsystems\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tplaying\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcards\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\t23\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t%\t_\tSYM\tNN\t_\t23\tamod\t_\t_\n22\tunconsolidated\t_\tVERB\tVBD\t_\t23\tamod\t_\t_\n23\tsurge\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tpretax\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n28\t61.41\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tbillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tyen\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t30\tpunct\t_\t_\n32\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n33\t429\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t30\tpunct\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\t50\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tbillion\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tyen\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n40\t-LRB-\t_\tPUNCT\t-LRB-\t_\t39\tpunct\t_\t_\n41\t$\t_\tSYM\t$\t_\t39\tdep\t_\t_\n42\t349.9\t_\tNUM\tCD\t_\t43\tcompound\t_\t_\n43\tmillion\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n44\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n45\tfor\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t48\tdet\t_\t_\n47\tfiscal\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tyear\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n49\tended\t_\tVERB\tVBN\t_\t48\tacl\t_\t_\n50\tAug.\t_\tPROPN\tNNP\t_\t49\tnmod:tmod\t_\t_\n51\t31\t_\tNUM\tCD\t_\t50\tnummod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsurged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t40\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\t250.17\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tyen\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t178.61\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincome\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t11\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\t29.62\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyen\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t26.68\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPershare\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tnet\t_\tADJ\tJJ\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\t423.3\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tyen\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t457.7\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyen\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\tbecause\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tof\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\texpenses\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tcapital\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tadjustments\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWithout\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tdetailing\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n3\tspecific\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tproduct\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbreakdowns\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tNintendo\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tcredited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tbullish\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tupsurge\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n15\tincluding\t_\tVERB\tVBG\t_\t18\tcase\t_\t_\n16\tadvanced\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tgames\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ttelevision\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tentertainment\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tsystems\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n24\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n25\tsurging\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n27\tleisure-oriented\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tforeign\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmarkets\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tExport\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tsales\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tleisure\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\titems\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\talone\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinstance\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t184.74\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tyen\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t12\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\tup\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t106.06\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tbillion\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tprevious\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tfiscal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDomestic\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tleisure\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tsales\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\tlower\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHertz\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tPark\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRidge\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tN.J.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tretained\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n12\tMerrill\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tLynch\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tCapital\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMarkets\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tsell\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n19\tHertz\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tEquipment\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tRental\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tCorp.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t35\tdep\t_\t_\n4\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n5\tpressing\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tneed\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tunit\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tdoing\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\tso\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\twe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tcan\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tconcentrate\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tour\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tcore\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tbusiness\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\trenting\t_\tVERB\tVBG\t_\t24\tdep\t_\t_\n27\tautomobiles\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tU.S.\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tabroad\t_\tADV\tRB\t_\t30\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tWilliam\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tSlider\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tHertz\t_\tPROPN\tNNP\t_\t43\tnmod:poss\t_\t_\n40\t's\t_\tPART\tPOS\t_\t39\tcase\t_\t_\n41\texecutive\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\tvice\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tpresident\t_\tNOUN\tNN\t_\t37\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsell\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tright\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tprice\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tHertz\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEquipment\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\toperating\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprofit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tbefore\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tdepreciation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n10\t90\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trevenue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t150\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t1988\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tclosely\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\theld\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n4\tHertz\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trevenue\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tclose\t_\tADJ\tJJ\t_\t8\tacl\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t24\tnsubjpass\t_\t_\n21\t1.7\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tcontributed\t_\tVERB\tVBN\t_\t8\tacl:relcl\t_\t_\n25\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n27\tHertz\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n28\tRent\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n29\tA\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tCar\t_\tPROPN\tNNP\t_\t31\tdep\t_\t_\n31\toperations\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n32\tworld-wide\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHertz\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tEquipment\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsupplier\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\trental\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tequipment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tFrance\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tSpain\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tU.K\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsupplies\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tcommercial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tindustrial\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n6\tequipment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t15\tcase\t_\t_\n8\tearth-moving\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\taerial\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tcompaction\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\telectrical\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n15\tequipment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tcompressors\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tcranes\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tforklifts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n23\ttrucks\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInterspec\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnet\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tloss\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t2.4\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tfiscal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tthird\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\tended\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tAug.\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n18\t31\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tloss\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tresulted\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tstartup\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tintroduction\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tcosts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\trelated\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n15\tmedical\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tultrasound\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tequipment\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsystem\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t955,000\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t15\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmanufacturer\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tultrasound\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tdiagnostic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsystems\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tAmbler\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tPa.\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tnine-month\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tnet\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tloss\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n21\t2.43\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tcompared\t_\tVERB\tVBN\t_\t26\tcase\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tnet\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tincome\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n29\t2.71\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n33\t44\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tcents\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n38\tfor\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tnine-month\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tperiod\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tyear\t_\tNOUN\tNN\t_\t44\tnmod:npmod\t_\t_\n44\tearlier\t_\tADV\tRBR\t_\t41\tadvmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tover-the-counter\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tInterspec\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t37.5\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t4.25\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAllegheny\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLudlum\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t47\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\treport\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthird-quarter\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n12\t34\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.50\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t38.4\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\t$\t_\tSYM\t$\t_\t29\tdep\t_\t_\n29\t1.70\t_\tNUM\tCD\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tyear\t_\tNOUN\tNN\t_\t35\tnmod:npmod\t_\t_\n35\tearlier\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n37\tRichard\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tP.\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tSimmons\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tchairman\t_\tNOUN\tNN\t_\t39\tappos\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tchief\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\texecutive\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tofficer\t_\tNOUN\tNN\t_\t41\tconj\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n47\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n48\tinstitutional\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tinvestors\t_\tNOUN\tNNS\t_\t47\tdobj\t_\t_\n50\tin\t_\tADP\tIN\t_\t52\tcase\t_\t_\n51\tNew\t_\tPROPN\tNNP\t_\t52\tcompound\t_\t_\n52\tYork\t_\tPROPN\tNNP\t_\t49\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tPittsburgh-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproducer\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tspecialty\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsteels\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmaterials\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\tfell\t_\tVERB\tVBD\t_\t31\tccomp\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n16\t265\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n24\t320.5\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n28\tearlier\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tthird-quarter\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\testimate\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tindicates\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n7\tprofit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnine\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t4.65\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tshare\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n19\talmost\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tequal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n21\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tfull-year\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\t1988\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tearnings\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n29\t108.6\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n33\t$\t_\tSYM\t$\t_\t34\tdep\t_\t_\n34\t4.81\t_\tNUM\tCD\t_\t28\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tnine\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1988\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t11\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n12\t85\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t3.76\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSimmons\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tthird-quarter\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tresults\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\treflect\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n8\tcontinued\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\timprovements\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tproductivity\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\toperating\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\tmargins\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tcapital\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tspending\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tnext\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\trise\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n12\t45\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n17\t35\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tagain\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\textended\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\texpiration\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdate\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n13\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n14\t7-a-share\t_\tADJ\tJJ\t_\t13\tdep\t_\t_\n15\ttender\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\toffer\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tInternational\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tBanknote\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCo.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tNov.\t_\tVERB\tVB\t_\t23\tdep\t_\t_\n23\t15\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnegotiations\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsell\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tcertain\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfacilities\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t19\tdobj\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\tdid\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tname\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tthird\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tparty\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tneeds\t_\tVERB\tVBZ\t_\t7\tconj\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\textension\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\ttry\t_\tVERB\tVB\t_\t28\tadvcl\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\treach\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tdefinitive\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tagreement\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\ton\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tsale\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tbelieves\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsale\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tcompleted\t_\tVERB\tVBN\t_\t14\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tapparently\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tsatisfy\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n15\tantitrust\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tissues\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\traised\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tJustice\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tDepartment\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\tabout\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBanknote\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\toffer\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbuy\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\tInternational\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tBanknote\t_\tPROPN\tNNP\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tYork-based\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tprint\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcertificates\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tcurrency\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t9\tcop\t_\t_\n8\tno\t_\tDET\tDT\t_\t9\tneg\t_\t_\n9\tassurance\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsale\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tagreement\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tconcluded\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\ttender\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toffer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tprobably\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\thave\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\textended\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n13\tfurther\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcomplete\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tfinancing\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tarrangements\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCitibank\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\textended\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\texpiration\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdate\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcommitment\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tsenior\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tsecured\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tfinancing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tNov.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n18\t15\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tmade\t_\tVERB\tVBD\t_\t2\tacl\t_\t_\n5\tJune\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t1\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\tauxpass\t_\t_\n10\textended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tseveral\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttimes\t_\tNOUN\tNNS\t_\t10\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tClosely\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\theld\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBanknote\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t7\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\t$\t_\tSYM\t$\t_\t8\tconj\t_\t_\n14\t126\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tas\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t22\tadvmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n21\t14.9\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tshares\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n26\t78.6\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t23\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tInternational\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tBanknote\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tshares\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n34\toutstanding\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBanknote\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tOct.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n8\t13\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n10\t16.1\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t84.3\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tfully\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdiluted\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\toutstanding\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\thad\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tbeen\t_\tAUX\tVBN\t_\t27\tauxpass\t_\t_\n27\ttendered\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGitano\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tGroup\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tagreed\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t50\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tRegatta\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tSport\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tLtd.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tclosely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\theld\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n19\tapparel\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmaker\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tassumption\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t24\tnmod\t_\t_\n27\t3\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcontingent\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tdebt\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tterms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcontract\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tamod\t_\t_\n9\tYork-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tGitano\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\toption\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tacquire\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tremaining\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\t50\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tRegatta\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmaker\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tmen\t_\tNOUN\tNNS\t_\t31\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n29\twomen\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tclothes\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n32\tsold\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n33\tprimarily\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tdepartment\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tstores\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n38\tunder\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tcertain\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tconditions\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t50\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tClifford\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tParker\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tRegatta\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tpresident\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tchief\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\texecutive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tofficer\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\twho\t_\tPRON\tWP\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tcontinue\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tmanage\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tRegatta\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\toperations\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tunder\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tGitano\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1989\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tRegatta\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\thave\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\texcess\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t10\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tshow\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tprofit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tParker\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tGitano\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tmakes\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n5\tbudget-priced\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tapparel\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tmainly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmass\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmerchandisers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tlike\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tK\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmart\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tWal-Mart\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tRegatta\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tacquisition\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tenhance\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tstrategy\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\texpand\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tinto\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tdepartment\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tstores\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfall\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tGitano\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tmanufacturing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tmoderately\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tpriced\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\tclothes\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\taimed\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tdepartment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tstores\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tunder\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tGloria\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tVanderbilt\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\ttrademark\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t23\tdobj\t_\t_\n21\tGitano\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n22\trecently\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tacquired\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEnron\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tHouston\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsale\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tpreference\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tunits\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n14\tnewly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tformed\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n16\tEnron\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n17\tNGL\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n18\tPartners\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n19\tL.P.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tmaster\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n21\tlimited\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n22\tpartnership\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsubsidiary\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tresult\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tundetermined\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tgain\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tfourth\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tquarter\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-ago\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tnatural\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tgas\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tconcern\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tnet\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tincome\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n15\t25.2\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\t34\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\trevenue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tabout\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n29\t1.46\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThose\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresults\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t2.7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tcharge\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\trelated\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tretirement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdebt\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\trelated\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n4\tmove\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tEnron\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tincreased\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnumber\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpartnership\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tunits\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\toffer\t_\tVERB\tVB\t_\t16\tacl:relcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\t6,930,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t5,500,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\told\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\trevised\t_\tVERB\tVBN\t_\t2\tconj\t_\t_\n5\tnumbers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tboth\t_\tDET\tDT\t_\t5\tdep\t_\t_\n7\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tover-allotment\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprovisions\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tEnron\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\teach\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tunit\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\tpriced\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t12\tamod\t_\t_\n11\t19-to-$21\t_\tADJ\tJJ\t_\t10\tdep\t_\t_\n12\trange\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\trepresent\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t80\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tpartnership\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tequity\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tproceeds\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toffering\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n10\tclose\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t200\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tGoldman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tSachs\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n8\tDrexel\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBurnham\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tLambert\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n13\tlead\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tunderwriters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tArthur\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGoldberg\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\textended\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\this\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tunsolicited\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\ttender\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t32\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\ttender\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n17\toffer\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t13\tconj\t_\t_\n21\t154.3\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n24\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tDi\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tGiorgio\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\tNov.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n30\t1\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDIG\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tJersey\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tinvestor\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tacquisition\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tvehicle\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n15\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tclose\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tbusiness\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tyesterday\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n23\t560,839\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n25\thad\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tbeen\t_\tAUX\tVBN\t_\t27\tauxpass\t_\t_\n27\ttendered\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIncluding\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstake\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\tDIG\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\talready\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\theld\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tDIG\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttotal\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\t25\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tDi\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGiorgio\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tfully\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tdiluted\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n25\tbasis\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tincludes\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n7\tcommon\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tpreferred\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tpurchase\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\trights\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\texpire\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tnight\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tmidnight\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\texpiration\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdate\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t22\tnmod\t_\t_\n10\tDIG\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tfinancing\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\tcommitments\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\ttotal\t_\tVERB\tVBP\t_\t13\tacl:relcl\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n19\t240\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tare\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\texpire\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDIG\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tunit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tDIG\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tHolding\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tunit\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tRose\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tPartners\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tL.P\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGoldberg\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsole\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tgeneral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpartner\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tRose\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tPartners\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n4\tDi\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tGiorgio\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tSan\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tFrancisco\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tfood\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproducts\t_\tNOUN\tNNS\t_\t5\tappos\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tbuilding\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tmaterials\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarketing\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tdistribution\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tGoldberg\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\toffer\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tinadequate\t_\tADJ\tJJ\t_\t20\tadvcl\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tDi\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tGiorgio\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t31.50\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.75\t_\tNUM\tCD\t_\t19\tnmod:npmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tbelong\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA.\t_\tX\tLS\t_\t3\tdep\t_\t_\n2\tmanual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttypewriters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tB.\t_\tX\tLS\t_\t7\tdep\t_\t_\n6\tblack-and-white\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsnapshots\t_\tNOUN\tNNS\t_\t3\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tC.\t_\tX\tLS\t_\t12\tdep\t_\t_\n10\tradio\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tadventure\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tshows\t_\tNOUN\tNNS\t_\t3\tappos\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tguessed\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n4\tblack-and-white\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsnapshots\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\t're\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tright\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n3\tof\t_\tSCONJ\tIN\t_\t4\tcase\t_\t_\n4\tfading\t_\tNOUN\tNN\t_\t2\tacl\t_\t_\n5\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbackground\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\ttwo-tone\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tphotography\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcoming\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tback\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTrendy\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tadvertisements\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfeature\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tstark\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tblack-and-white\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tphotos\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tof\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tHollywood\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tcelebrities\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tpitching\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n12\tjeans\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tshoes\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tliquor\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPortrait\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tstudios\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\taccustomed\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tmark\t_\t_\n5\tshooting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n6\tonly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcolor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\treport\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trush\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\tblack-and-white\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tportrait\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\torders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tblack-and-white\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tphotography\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tclasses\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n6\tcrowded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tstudents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\thappening\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tphotography\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tmirrors\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpopularity\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tblack\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\twhite\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tfashion\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\thome\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfurnishings\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tcinematography\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tSeventh\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAvenue\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tdesigners\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\taux\t_\t_\n8\tadvancing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmonochrome\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlook\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tclothing\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcollections\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tdone\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tentirely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tblack\t_\tADJ\tJJ\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\twhite\t_\tADJ\tJJ\t_\t18\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tclassic\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tblack-and-white\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmovies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tenjoying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcomeback\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tvideocassette\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttapes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tspurred\t_\tVERB\tVBD\t_\t8\tacl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpart\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbacklash\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tagainst\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcolorization\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\told\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tfilms\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpendulum\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tswinging\t_\tVERB\tVBG\t_\t13\tdep\t_\t_\n6\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tblack\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twhite\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tRichard\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tDeMoulin\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tgeneral\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmanager\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tEastman\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tKodak\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCo.\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tprofessional\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tphotography\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tdivision\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t12\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tsales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\taux\t_\t_\n12\tdeclining\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tsteadily\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\t1960s\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n5\tbuoyed\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tincreased\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n8\tuse\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tadvertising\t_\tVERB\tVBG\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tcommercial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tapplications\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t5\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t24\tnsubjpass\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\texpected\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tjump\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tleast\t_\tADJ\tJJS\t_\t30\tadvmod\t_\t_\n29\tthat\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmuch\t_\tADV\tRB\t_\t26\tdobj\t_\t_\n31\tagain\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n32\tthis\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tPhotographic\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tscrambling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\ttap\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tresurging\t_\tVERB\tVBG\t_\t9\tamod\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\treviving\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n12\tsome\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tblack-and-white\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tproduct\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlines\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tdeveloping\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tones\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tKodak\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tignored\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tyears\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tblack-and-white\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tfilm\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tnow\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\taccount\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tnearly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t15\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnummod\t_\t_\n26\t3\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tbillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tfilm\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tpaper\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n32\tsales\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n33\tannually\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n35\tup\t_\tADP\tIN\t_\t20\tadvmod\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\t10\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\t%\t_\tSYM\tNN\t_\t35\tnmod\t_\t_\n39\tthree\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\tyears\t_\tNOUN\tNNS\t_\t41\tnmod:npmod\t_\t_\n41\tago\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\tRochester\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.Y.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tphotographic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgiant\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\trecently\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tmarketing\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\tT-Max\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n12\t3200\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\tone\t_\tNUM\tCD\t_\t11\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n17\tfastest\t_\tADJ\tJJS\t_\t20\tdep\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n19\tmost\t_\tADV\tRBS\t_\t20\tadvmod\t_\t_\n20\tsensitive\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tmonochrome\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tfilms\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAimed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n2\tat\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcommercial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tphotographers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tfilm\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n10\tused\t_\tVERB\tVBN\t_\t19\tdep\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tlow\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlight\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\twithout\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tsacrificing\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n17\tquality\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tDonald\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tFranz\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tPhotofinishing\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tNewsletter\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tsnare\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tportion\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t12\tamod\t_\t_\n10\t2\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n11\tbillion-a-year\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n12\tindustry\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t2\taux\t_\t_\n14\tAgfa\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tunit\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tBayer\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tAG\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAgfa\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tOlympic\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n5\tgold\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tmedalist\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tFlorence\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGriffith-Joyner\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tendorse\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tline\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tblack-and-white\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpaper\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubjpass\t_\t_\n18\t's\t_\tAUX\tVBZ\t_\t19\tauxpass\t_\t_\n19\tgeared\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\tconsumers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tcompete\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n25\tdirectly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tKodak\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tpapers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSlated\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tend\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpaper\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\thave\t_\tAUX\tVB\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tintroduced\t_\tVERB\tVBN\t_\t31\tdep\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tlong\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n21\tago\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\twas\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n26\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n27\tthere\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n28\tthen\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n31\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n32\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tAgfa\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tspokesman\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbiggest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tbeneficiary\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tblack-and-white\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trevival\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n12\tInternational\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPaper\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tIlford\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tdivision\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tknown\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tindustry\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\tpremium\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tproducts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tIlford\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tvarieties\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\toutpacing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tgrowth\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\toverall\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\talthough\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\two\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tsay\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\texactly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\thow\t_\tADV\tWRB\t_\t29\tadvmod\t_\t_\n29\tmuch\t_\tADJ\tJJ\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t9\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttrend\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tlasts\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tLaurie\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tDiCara\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tIlford\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tmarketing\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tcommunications\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n17\tdirector\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t4\tdep\t_\t_\n2\tall\t_\tDET\tDT\t_\t4\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tinterest\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tbaby\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tboomers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tgrew\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tbeing\t_\tAUX\tVBG\t_\t8\tauxpass\t_\t_\n8\tphotographed\t_\tVERB\tVBN\t_\t5\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcolor\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tblack\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\twhite\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\teye-catching\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\texotic\t_\tADJ\tJJ\t_\t16\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t14\tdep\t_\t_\n4\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tarchival\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\talmost\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tnostalgic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquality\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tOwen\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tB.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tButler\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tchairman\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tapplied\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n24\tphotography\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdepartment\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tRochester\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tInstitute\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tTechnology\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tshift\t_\tVERB\tVB\t_\t15\tdep\t_\t_\n5\tout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\treality\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tblack\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\twhite\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tfeatures\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\tespecially\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tattractive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tprofessional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tphotographers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tmarketing\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\texecutives\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t18\taux\t_\t_\n17\tsteadily\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tincreasing\t_\tVERB\tVBG\t_\t9\tacl:relcl\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tuse\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tblack\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\twhite\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tadvertising\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tProcessing\t_\tVERB\tVBG\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tblack-and-white\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tcommercial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tfilm\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t24\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\t18.7\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\trolls\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tGap\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t1\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhose\t_\tPRON\tWP$\t_\t8\tnmod:poss\t_\t_\n6\tlatest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n7\tad\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcampaign\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tfeatures\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n10\tblack-and-white\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshots\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tHollywood\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tstars\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tartists\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\twell-known\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tpersonalities\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n21\tmodeling\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tretailer\t_\tNOUN\tNN\t_\t25\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tjeans\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tT-shirts\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCrisman\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\taccount\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcampaign\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tGap\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n13\tdid\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tintentionally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tchoose\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n17\tblack\t_\tADJ\tJJ\t_\t16\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\twhite\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdistinguish\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tads\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tcolor\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tspreads\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tcompetitors\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twanted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\thighlight\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tindividual\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tnot\t_\tADV\tRB\t_\t11\tneg\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tenvironment\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t3\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tblack\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\twhite\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tallows\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n23\tyou\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tdo\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n26\tthat\t_\tPRON\tDT\t_\t25\tdobj\t_\t_\n27\tbetter\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n28\tthan\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tcolor\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcampaign\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tCleo\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\taward\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tbest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tad\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tspecialty\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tretailer\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tfood\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproducts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tautomobiles\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tlong\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tdepended\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcolor\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tswitch\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n3\tfeel\t_\tVERB\tVBP\t_\t14\tdep\t_\t_\n4\tblack\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\twhite\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tconvey\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstronger\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tstatement\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tMarc\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tL.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tHauser\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tChicago\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tphotographer\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n22\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\tworking\t_\tVERB\tVBG\t_\t21\tacl:relcl\t_\t_\n25\ton\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tblack-and-white\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tprint\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tad\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n31\tStouffer\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tFood\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp.\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tLean\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tCuisine\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tcurrently\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tusing\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n7\ttwo-tone\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tads\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tAmerican\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tExpress\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tEpson\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAmerica\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tInc\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPortrait\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tstudios\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlatched\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tonto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttrend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUsing\t_\tVERB\tVBG\t_\t9\tdep\t_\t_\n2\tblack\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\twhite\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tmake\t_\tVERB\tVB\t_\t16\tdep\t_\t_\n10\thousewives\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tlook\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n12\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstars\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tJohn\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tPerrin\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHis\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n2\tOn-Broadway\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tPhotography\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tstudio\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tPortland\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tOre.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t10\tparataxis\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n21\tbooked\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n22\tsolid\t_\tADJ\tJJ\t_\t21\txcomp\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tnext\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tfive\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tcustomer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tDayna\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBrunsdon\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tshe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tspurned\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tcolor\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tportrait\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tblack\t_\tADJ\tJJ\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\twhite\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\t's\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n21\tmore\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n22\tdramatic\t_\tADJ\tJJ\t_\t9\tadvcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tshow\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tmy\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tfriends\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tall\t_\tDET\tDT\t_\t9\tdet\t_\t_\n11\tsay\t_\tVERB\tVBP\t_\t2\tconj\t_\t_\n12\t`\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n13\twow\t_\tINTJ\tUH\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n15\t'\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tordinary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcolor\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tconsumers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tplunking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tinto\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tcameras\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\ttake\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n15\tfamily\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsnapshots\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tobstacle\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdrugstores\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tdevelop\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfilm\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tanymore\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTypically\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubjpass\t_\t_\n4\tmust\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tmailed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thandful\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprocessors\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\ttake\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t16\tnummod\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tprocessed\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\treturned\t_\tVERB\tVBN\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBlack-and-white\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tfilm\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcosts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tconsumers\t_\tNOUN\tNNS\t_\t3\tiobj\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlittle\t_\tADV\tRB\t_\t7\tnmod:npmod\t_\t_\n7\tless\t_\tADJ\tJJR\t_\t3\tdobj\t_\t_\n8\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tcolor\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfilm\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\tprocessing\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tcosts\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsame\t_\tADJ\tJJ\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tphotofinishers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tdeveloping\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcosts\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tblack-and-white\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfilm\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tstarting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\ttackle\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tproblem\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIlford\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\texample\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\trecently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tintroduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tblack-and-white\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tfilm\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubjpass\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tprocessed\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n15\tquickly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tcolor\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlabs\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIntent\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n2\ton\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n3\twooing\t_\tVERB\tVBG\t_\t1\tadvcl\t_\t_\n4\tcustomers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\talso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tincreasing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tsponsorship\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tblack-and-white\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tphotography\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tclasses\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSimilarly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tAgfa\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tsponsoring\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tscores\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tphotography\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcontests\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\thigh\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tschools\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tcolleges\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\toffering\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n17\tfree\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tblack-and-white\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfilm\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tpaper\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tprizes\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tKodak\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tdistributing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tinstructional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tvideo\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tprocessors\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\ton\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\thow\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdevelop\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tmonochrome\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfilm\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tmore\t_\tADV\tRBR\t_\t18\tadvmod\t_\t_\n18\tefficiently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tintroducing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\trelated\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBeseler\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tleading\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tmaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tphotographic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tenlargers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tintroduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmonth\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tcomplete\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tdarkroom\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tstarter\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tkit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n20\ttargeted\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n21\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tteen-agers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\twho\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n24\twant\t_\tVERB\tVBP\t_\t22\tacl:relcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tprocess\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n28\town\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tblack-and-white\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tphotographs\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tkit\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tsuggested\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n8\tretail\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t250\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\talready\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbecome\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbestseller\t_\tNOUN\tNN\t_\t16\txcomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n20\twas\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\tintroduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tretailers\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tnoticed\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n25\tnumerous\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trequests\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tparents\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tchildren\t_\tNOUN\tNNS\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tphotography\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tequipment\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t11\tdep\t_\t_\n4\tcomputers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\thobbies\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\twaned\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tIan\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBrightman\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tBeseler\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tchairman\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tchief\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\texecutive\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tofficer\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tobservers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresurgence\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tblack\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\twhite\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n13\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfad\t_\tNOUN\tNN\t_\t5\tccomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcite\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\temergence\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tstill\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\telectronic\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tphotography\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tnewspapers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tturning\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tcolor\t_\tVERB\tVB\t_\t12\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tpages\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n19\tmeasurable\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\timprovements\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tquality\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tcolor\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tprints\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tBlack\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\twhite\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tmade\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tsame\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tquantum\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tleaps\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ttechnological\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdevelopment\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tcolor\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tButler\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tRochester\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tInstitute\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcolor\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprint\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tsuperior\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tprints\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t10\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tyears\t_\tNOUN\tNNS\t_\t14\tnmod:npmod\t_\t_\n14\tago\t_\tADV\tRB\t_\t10\tacl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tca\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tsay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsame\t_\tADJ\tJJ\t_\t4\tdobj\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tblack\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twhite\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n3\tPopular\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tPhotography\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tleading\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tmagazine\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tphotographers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tselected\t_\tVERB\tVBD\t_\t32\tadvcl\t_\t_\n13\t15\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tgreatest\t_\tADJ\tJJS\t_\t17\tamod\t_\t_\n17\tphotos\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tever\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tmade\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tlatest\t_\tADJ\tJJS\t_\t23\tamod\t_\t_\n23\tissue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n24\tcelebrating\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n25\tphotography\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\t150th\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tanniversary\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\tall\t_\tDET\tDT\t_\t32\tnsubj\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n32\tblack\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\twhite\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tgot\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tclassic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tspirit\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tcarries\t_\tVERB\tVBZ\t_\t4\tconj\t_\t_\n10\tover\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\temotionally\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tAlfred\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tDeBat\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tProfessional\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tPhotographers\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAmerica\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tappeal\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMcClatchy\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tNewspapers\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\timprovements\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tadvertising\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tsubscription\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\trevenue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tled\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n12\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t21\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n16\tgain\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthird-quarter\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprofit\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t16\tnmod\t_\t_\n22\t8.8\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n26\t31\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tcents\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tshare\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\t$\t_\tSYM\t$\t_\t16\tnmod\t_\t_\n33\t7.2\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n36\tor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n37\t25\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tcents\t_\tNOUN\tNNS\t_\t32\tconj\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tshare\t_\tNOUN\tNN\t_\t38\tnmod:npmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmore\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n4\tthan\t_\tADP\tIN\t_\t3\tmwe\t_\t_\n5\t7\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n9\t94.9\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n13\t88.3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tSacramento\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCalif.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tattributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\timproved\t_\tVERB\tVBN\t_\t10\tamod\t_\t_\n10\tperformance\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\tlower\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trate\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\thigher\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n19\tinterest\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tincome\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tnewspaper\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tchain\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\talmost\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t23\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tincrease\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n19\t23.6\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\t83\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tcents\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t24\tnmod:npmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n30\t19.2\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n33\tor\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n34\t68\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tcents\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tshare\t_\tNOUN\tNN\t_\t35\tnmod:npmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\talmost\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\t7\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n8\t279.1\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n12\t261.3\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMcClatchy\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tpublishes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n4\tSacramento\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t4\tpunct\t_\t_\n6\tCalif\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t4\tpunct\t_\t_\n9\tBee\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tTacoma\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t11\tpunct\t_\t_\n13\tWash\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n15\t-RRB-\t_\tPUNCT\t-RRB-\t_\t11\tpunct\t_\t_\n16\tNews\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tTribune\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n20\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpapers\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tWestern\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tstates\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomposite\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t25.25\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n21\t25\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAgip\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tS.p\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n4\tA.\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tSociete\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tElf\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAquitaine\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tstate\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\toil\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t4\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tItaly\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tFrance\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\trespectively\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tsubmitted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\toffer\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tbuy\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tGatoil\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tSuisse\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tS.A\t_\tPROPN\tNNP\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprice\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tGatoil\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tSwiss\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\toil\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\texamining\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n16\tsubmitted\t_\tVERB\tVBD\t_\t14\tdep\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\talong\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n23\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\toffers\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\talso\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tsubmitted\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tweek\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\toffers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tprivate\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trefused\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tidentify\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbidding\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tfurther\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tleast\t_\tADJ\tJJS\t_\t8\tnmod:npmod\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tmore\t_\tADJ\tJJR\t_\t8\tadvmod\t_\t_\n10\toffers\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n12\texpected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\twithin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ttwo\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tweeks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGatoil\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSuisse\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\towns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trefinery\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tSwitzerland\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcapacity\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t70,000\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tbarrels\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\talong\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnetwork\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tgasoline\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tretailing\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n25\toutlets\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tplunging\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tprompted\t_\tVERB\tVBD\t_\t34\tadvcl\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfears\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\teconomy\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tprospects\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlittle-known\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tindicator\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tfaithfully\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tforeshadowed\t_\tVERB\tVBN\t_\t18\tacl:relcl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\teconomy\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tups\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tdowns\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n29\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\texceptionally\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tlong\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tlead\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\ttimes\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n34\tpoints\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n35\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tsustained\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\trise\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\toverall\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n41\tbusiness\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tactivity\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbarometer\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdeveloped\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tColumbia\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUniversity\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tCenter\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tInternational\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tBusiness\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tCycle\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tResearch\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\there\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\trecord\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\thigh\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t223.0\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tAugust\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tlatest\t_\tADJ\tJJS\t_\t30\tamod\t_\t_\n30\tmonth\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\tavailable\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tColumbia\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tresearchers\t_\tNOUN\tNNS\t_\t37\tnsubj\t_\t_\n37\testimate\t_\tVERB\tVBP\t_\t19\tconj\t_\t_\n38\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tit\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\thas\t_\tAUX\tVBZ\t_\t41\taux\t_\t_\n41\tmoved\t_\tVERB\tVBN\t_\t37\tccomp\t_\t_\n42\teven\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n43\thigher\t_\tADV\tRBR\t_\t41\tadvmod\t_\t_\n44\tsince\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\tthen\t_\tADV\tRB\t_\t41\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlatest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\treading\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\t223.0\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tup\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t222.3\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tJuly\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\t215.3\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n14\tas\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\trecently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tMarch\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\trise\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tmarked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tfifth\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tstraight\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tmonthly\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tindicator\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tuses\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1967\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\taverage\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbase\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t100\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcontrast\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tCommerce\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tDepartment\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\twidely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tfollowed\t_\tVERB\tVBN\t_\t10\tamod\t_\t_\n10\tindex\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tleading\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\tindicators\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n15\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tup\t_\tADV\tRB\t_\t21\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tAugust\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tfallen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\trepeatedly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tsince\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n24\treaching\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\thigh\t_\tADJ\tJJ\t_\t24\tdobj\t_\t_\n27\tearly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tragged\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbehavior\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tthrough\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tmuch\t_\tADJ\tJJ\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1989\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tprompted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tsome\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tforecasters\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tanticipate\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstart\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trecession\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tperhaps\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n21\tbefore\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tend\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfar\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tstronger\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tshowing\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tColumbia\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tindex\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n11\tmakes\t_\tVERB\tVBZ\t_\t21\tdep\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trecession\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n14\tany\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tsoon\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\thighly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tunlikely\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tGeoffrey\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tH.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMoore\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdirector\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tColumbia\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tfacility\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tleading\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tauthority\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbusiness\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcycle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMoore\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n11\talso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmember\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tBusiness\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tCycle\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tDating\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGroup\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpanel\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tprivate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\teconomists\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\tdecides\t_\tVERB\tVBZ\t_\t23\tacl:relcl\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tgovernment\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\twhen\t_\tADV\tWRB\t_\t36\tadvmod\t_\t_\n33\texpansions\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\trecessions\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\tbegin\t_\tVERB\tVBP\t_\t28\tadvcl\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n38\tend\t_\tVERB\tVBP\t_\t36\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tnormally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tconvenes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tchange\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tgeneral\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tseems\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n16\tlikely\t_\tADV\tRB\t_\t15\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tNo\t_\tDET\tDT\t_\t3\tneg\t_\t_\n3\tmeeting\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tscheduled\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n6\tbecause\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\texpansion\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tshows\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n10\tno\t_\tDET\tDT\t_\t11\tneg\t_\t_\n11\tsign\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tgoing\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n14\toff\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\ttracks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tMoore\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\treports\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tBased\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n2\tlargely\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\trecent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstrength\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tindex\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tcalled\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tlong\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tleading\t_\tVERB\tVBG\t_\t15\tamod\t_\t_\n15\tindicator\t_\tNOUN\tNN\t_\t11\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tColumbia\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tanalysts\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tforesee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n21\tuninterrupted\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\teconomic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tgrowth\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tthrough\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\trest\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\tnext\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t26\tconj\t_\t_\n33\tas\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n34\twell\t_\tADV\tRB\t_\t33\tmwe\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t2.6\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t%\t_\tSYM\tNN\t_\t6\tamod\t_\t_\n6\trise\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1990\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tgross\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnational\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tproduct\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tadjustment\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tinflation\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnderlying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\toptimism\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t1\taux\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tlongstanding\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tability\t_\tNOUN\tNN\t_\t1\tnsubj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsignal\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\trecessions\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\trecoveries\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcase\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tbe\t_\tVERB\tVB\t_\t11\tparataxis\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tsubstantially\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tgreater\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n25\tperiods\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tCommerce\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tDepartment\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tindex\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tleading\t_\tVERB\tVBG\t_\t34\tamod\t_\t_\n34\tindicators\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n3\tfull\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n4\tpost-World\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tWar\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tII\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tera\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tColumbia\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\taverage\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tentered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tsustained\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n20\tdeclines\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t14\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tmonths\t_\tNOUN\tNNS\t_\t18\tnmod:tmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tonset\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\trecessions\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n29\tturned\t_\tVERB\tVBD\t_\t18\tconj\t_\t_\n30\tup\t_\tADP\tRP\t_\t29\tcompound:prt\t_\t_\n31\teight\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tmonths\t_\tNOUN\tNNS\t_\t29\tnmod:tmod\t_\t_\n33\tbefore\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\trecoveries\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tcomparable\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tlead\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttimes\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tCommerce\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhose\t_\tPRON\tWP$\t_\t11\tnmod:poss\t_\t_\n11\tcomponents\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tinclude\t_\tVERB\tVBP\t_\t8\tacl:relcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n18\tfar\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tshorter\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n21\t10\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tmonths\t_\tNOUN\tNNS\t_\t19\tnmod:tmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\trecessions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\tonly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tthree\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tmonths\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\trecoveries\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tColumbia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\teconomists\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\treconstructed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\thow\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tlong\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tleading\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\thave\t_\tAUX\tVB\t_\t14\taux\t_\t_\n14\tbehaved\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\texisted\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1929\t_\tNUM\tCD\t_\t14\tdep\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tcrash\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tOctober\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\tthat\t_\tPRON\tWDT\t_\t31\tnsubj\t_\t_\n31\tushered\t_\tVERB\tVBD\t_\t27\tacl:relcl\t_\t_\n32\tin\t_\tADP\tRP\t_\t31\tcompound:prt\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tGreat\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tDepression\t_\tPROPN\tNNP\t_\t31\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindicator\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpeak\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJanuary\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t1929\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tthen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n12\tsteadily\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tup\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tto\t_\tADP\tTO\t_\t18\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t18\tconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcrash\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tentirely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tdifferent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpattern\t_\tNOUN\tNN\t_\t18\tdep\t_\t_\n8\tfrom\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t12\tdobj\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t're\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tseeing\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n13\tnow\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMoore\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsource\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstrength\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tlong\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tleading\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n12\tindicator\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n14\tbeen\t_\tVERB\tVBN\t_\t16\tcop\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tperformance\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tJones\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tcorporate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tbond-price\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tindex\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t29\tcop\t_\t_\n27\tnot\t_\tPART\tRB\t_\t29\tneg\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tpart\t_\tNOUN\tNN\t_\t23\tacl:relcl\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tCommerce\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tindex\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbond\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmeasure\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n8\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\thighest\t_\tADJ\tJJS\t_\t11\tdep\t_\t_\n11\tmonthly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tearly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\t1987\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsagged\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcomponents\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tlong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tleading\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tindicator\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tratio\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tunit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tlabor\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcosts\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tmanufacturing\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\tindustries\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tM2\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tversion\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tmoney\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsupply\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n29\tadjusted\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n30\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tinflation\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tvolume\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tnew\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\thome-building\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tpermits\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNotably\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tabsent\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tColumbia\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t15\tdobj\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tMoore\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n18\tsimply\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n19\tno\t_\tDET\tDT\t_\t20\tneg\t_\t_\n20\tlonger\t_\tADV\tRBR\t_\t24\tnmod:tmod\t_\t_\n21\tsuch\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tindicator\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\teconomy\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tlong-range\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tprospects\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n32\tthough\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t36\tnsubj\t_\t_\n34\tstill\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n35\tis\t_\tVERB\tVBZ\t_\t36\tcop\t_\t_\n36\tuseful\t_\tADJ\tJJ\t_\t24\tadvcl\t_\t_\n37\tfor\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n38\tanticipating\t_\tVERB\tVBG\t_\t36\tadvcl\t_\t_\n39\tsome\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tshort-run\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\ttwists\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tturns\t_\tNOUN\tNNS\t_\t41\tconj\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAs\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\trecently\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n3\tas\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\t1975\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\treflected\t_\tVERB\tVBN\t_\t8\tdep\t_\t_\n12\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tStandard\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n15\t&\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tPoor\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n18\tindex\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\t500\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tcommon\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstocks\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n24\twas\t_\tAUX\tVBD\t_\t25\tauxpass\t_\t_\n25\trated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tNational\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tBureau\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tEconomic\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tResearch\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\tas\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tbest\t_\tADJ\tJJS\t_\t25\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n38\t12\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n39\tleading\t_\tVERB\tVBG\t_\t40\tamod\t_\t_\n40\tindicators\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n41\tthat\t_\tPRON\tWDT\t_\t43\tnsubj\t_\t_\n42\tthen\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n43\tmade\t_\tVERB\tVBD\t_\t40\tacl:relcl\t_\t_\n44\tup\t_\tADP\tRP\t_\t43\tcompound:prt\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tCommerce\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tindex\t_\tNOUN\tNN\t_\t43\tdobj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tassigned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmark\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t80\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tpossible\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\t100\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tcompared\t_\tVERB\tVBN\t_\t16\tcase\t_\t_\n15\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tscores\t_\tNOUN\tNNS\t_\t3\tadvcl\t_\t_\n17\tranging\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tlow\t_\tADJ\tJJ\t_\t17\tadvmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t69\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcomponents\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tlost\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tprecursory\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpower\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tanalysts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n11\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tColumbia\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tcenter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tclaim\t_\tNOUN\tNN\t_\t5\tparataxis\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tbecause\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tof\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tgrowing\t_\tVERB\tVBG\t_\t21\tamod\t_\t_\n21\timpact\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tinternational\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdevelopments\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tStocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tbecome\t_\tVERB\tVBN\t_\t20\tdep\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n6\tsensitive\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tfactors\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tdirectly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\ttied\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdomestic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n18\tMr.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMoore\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tciting\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\texchange\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\trate\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdollar\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcurrency\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tmarkets\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tforeign-trade\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tbalance\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n37\tinflows\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tforeign\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tcapital\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tfeels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trise\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcomputer-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpractices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tprogram\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tdiminished\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\trelevancy\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\teconomic\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\toutlook\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tS.A.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tleading\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n6\tFrench\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tfood\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tgroup\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tagreed\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tacquire\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tBirkel\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tG.m.b\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n18\tH.\t_\tPROPN\tNNP\t_\t14\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tWest\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tGerman\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tpasta\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmaker\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tvalue\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tacquisition\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tline\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tBSN\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tstrategy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tgradually\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tbuilding\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tEuropean\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tpasta\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tthrough\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\texternal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tgrowth\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBSN\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tinitially\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\t15\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n8\tinterest\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tBirkel\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tclosely\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\theld\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n15\tconcern\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t31\tdep\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tagreement\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tgiving\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tiobj\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tright\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tbuy\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tall\t_\tDET\tDT\t_\t15\tdet:predet\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\toutstanding\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n19\tthis\t_\tPRON\tDT\t_\t22\tnsubjpass\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tbe\t_\tAUX\tVB\t_\t22\tauxpass\t_\t_\n22\tcompleted\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n23\twithin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tfew\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tmonths\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tBSN\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tspokeswoman\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttakeover\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tsubmitted\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tapproval\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tWest\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tGerman\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tcartel\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\toffice\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tBSN\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBirkel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n3\tWest\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGermany\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsecond-biggest\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tproducer\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tpasta\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tsales\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\t250\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tmarks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t-LRB-\t_\tPUNCT\t-LRB-\t_\t18\tpunct\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n19\t133.4\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t18\tpunct\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t750\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthree\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tproduction\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tunits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsouthwest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n11\tGermany\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n15\tthat\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnation\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tleading\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\tproducer\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tpasta\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tsauces\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tacquisition\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tstrengthens\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tBSN\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tposition\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tEuropean\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tpasta\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcurrently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tranks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tsecond\t_\tADJ\tJJ\t_\t5\tadvmod\t_\t_\n7\tafter\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBarilla\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tGroup\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tItaly\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\twhose\t_\tPRON\tWP$\t_\t14\tnmod:poss\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n16\tchiefly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tItalian\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\treduced\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\trating\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t281\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tsenior\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tsubordinated\t_\tVERB\tVBN\t_\t16\tconj\t_\t_\n19\tdebt\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthis\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tthrift\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tholding\t_\tVERB\tVBG\t_\t24\tamod\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n26\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n27\tC\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tCa\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n31\tsaying\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\tbelieves\t_\tVERB\tVBZ\t_\t31\tccomp\t_\t_\n34\tbondholders\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n35\twill\t_\tAUX\tMD\t_\t36\taux\t_\t_\n36\trecover\t_\tVERB\tVB\t_\t33\tccomp\t_\t_\n37\tonly\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n39\tnegligible\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tprincipal\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tconfirmed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tAmerican\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tContinental\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tpreferred\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trating\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tC\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAmerican\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tContinental\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tthrift\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tunit\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tLos\t_\tPROPN\tNNP\t_\t8\tamod\t_\t_\n8\tAngeles-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tLincoln\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSavings\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tLoan\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tAssociation\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\treceivership\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tparent\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tfiled\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tprotection\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tcreditor\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tlawsuits\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tunder\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tChapter\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n31\t11\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tfederal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tBankruptcy\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tCode\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tCENTRUST\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSAVINGS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBANK\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tMiami\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t-RRB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tdowngraded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tratings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsubordinated\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n12\tdebt\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tCenTrust\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tCaa\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tB-3\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trating\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\treduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tratings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tlong-term\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdeposits\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tB-3\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tBa-3\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tpreferred\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n20\tCa\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tCaa\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trating\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t12\tnsubjpass\t_\t_\n7\t85\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tsecurities\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\taffected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdowngrades\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tprompted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tMoody\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcontinuing\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\tturmoil\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tjunk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tbond\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsuspension\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tdividends\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tCenTrust\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tpreferred\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\tstock\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbelieved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tproposed\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\tsale\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\t63\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tCenTrust\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tbranches\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tGreat\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tWestern\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tBank\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n18\tcould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tif\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\tcompleted\t_\tVERB\tVBN\t_\t23\tparataxis\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tendanger\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tthrift\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tfunding\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tposition\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTHE\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSTOCK\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tMARKET\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tAVOIDED\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trepeat\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBlack\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\trecovered\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tearly\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tslide\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\tspurred\t_\tVERB\tVBN\t_\t12\tdep\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tbargain-hunting\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tinstitutions\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tprogram\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\ttraders\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tindustrials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tup\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t88.12\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t2657.38\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfourth-biggest\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tgain\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n16\tever\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n19\tbeing\t_\tVERB\tVBG\t_\t28\tcop\t_\t_\n20\tdown\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n21\tas\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n22\tmuch\t_\tADJ\tJJ\t_\t24\tadvmod\t_\t_\n23\tas\t_\tADP\tIN\t_\t24\tadvmod\t_\t_\n24\t63.52\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tpoints\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmorning\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trally\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\terased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tabout\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\t190.58-point\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\tanalysts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n15\tcautious\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n16\tabout\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\toutlook\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\trebounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhile\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tbond\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tplummeted\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tTreasury\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tbill\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trates\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tsoared\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJunk\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tbonds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\trecovered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tsomewhat\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tremained\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n10\tstalled\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGold\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTokyo\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tearly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tTuesday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\tfollowing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t1.8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tMonday\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\thigher\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tTokyo\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDonald\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTrump\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\twithdrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t7.54\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\toffer\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tAmerican\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAir\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tciting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\trecent\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchange\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tconditions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAMR\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t4\tdep\t_\t_\n4\t22.125\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t76.50\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tUAL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tgroup\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tfinancing\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tlower\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n13\tbid\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tpossibly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t250\t_\tNUM\tCD\t_\t13\tappos\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tUAL\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t4\tdep\t_\t_\n4\t56.875\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t222.875\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLeveraged\t_\tVERB\tVBN\t_\t2\tamod\t_\t_\n2\tbuy-outs\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tairlines\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tapproval\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttransportation\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsecretary\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n17\tpassed\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tHouse\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tsubcommittee\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tearnings\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t30\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tslightly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tmore\t_\tADJ\tJJR\t_\t4\txcomp\t_\t_\n14\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\texpected\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tgiant\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tpartly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstronger\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdelay\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n12\tin\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tshipping\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\thigh-end\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tdisk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tdrive\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t3\tcop\t_\t_\n3\tdownbeat\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tIBM\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\toutlook\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tnext\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tfew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarters\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tauto\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmakers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tplan\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdecrease\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tcar\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproduction\t_\tNOUN\tNN\t_\t6\tiobj\t_\t_\n9\t10.4\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfourth\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tvirtually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\tall\t_\tDET\tDT\t_\t20\tdet:predet\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdecline\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tcoming\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tBig\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\tThree\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOutput\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tJapanese-owned\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tmanaged\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n6\tplants\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\tdue\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\trise\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\t42\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBudget\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tdirector\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tDarman\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\two\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tgive\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\tfederal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tagencies\t_\tNOUN\tNNS\t_\t8\tiobj\t_\t_\n11\tmuch\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tleeway\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tin\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tcoping\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n15\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tGramm-Rudman\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tspending\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcuts\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\ttook\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n22\teffect\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n23\tyesterday\t_\tNOUN\tNN\t_\t21\tnmod:tmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDarman\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\thopes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tprod\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tCongress\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tfinish\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdeficit\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplan\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tS&L\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tbailout\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tagency\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\trestricted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tin\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\thow\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\traises\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n16\tcapital\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tWays\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tMeans\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tcreate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tanother\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tpossible\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tobstacle\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tmark\t_\t_\n12\tselling\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tsick\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tthrifts\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnatural\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tgas\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\trule\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tstruck\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tdown\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tfederal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tappeals\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tcourt\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tregulation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tprevented\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tpipeline\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfirms\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tpassing\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n9\tpart\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t1\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tcosts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\talong\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\tcustomers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSupreme\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCourt\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdecide\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\twhether\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfederal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcourt\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tdismantle\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmerger\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\twon\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n18\tregulatory\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tapproval\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n21\tbeen\t_\tAUX\tVBN\t_\t22\tauxpass\t_\t_\n22\truled\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n23\tanticompetitive\t_\tADJ\tJJ\t_\t22\txcomp\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tprivate\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tsuit\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tprofit\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t37\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tthird\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tquarter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBear\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStearns\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t7.5\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tgain\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twhile\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tPaineWebber\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdecline\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tdue\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tyear-ago\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tgain\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tBritain\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treturn\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tname\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tManpower\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\ttake\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tbig\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\twrite-off\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmoves\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfirm\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsolidify\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tdominance\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\ttemporary-help\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorgan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t1.82\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tloss\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tthird\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\treflecting\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tbig\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\taddition\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tloan-loss\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\treserves\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n5\tthan\t_\tADP\tIN\t_\t4\tcase\t_\t_\n6\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tK\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tmart\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tacquire\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tPace\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tMembership\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tWarehouse\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n11\t322\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\texpanding\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tpresence\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tgrowing\t_\tVERB\tVBG\t_\t21\tamod\t_\t_\n20\twholesale-store\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tbusiness\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMarkets\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tVolume\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n4\t416,290,000\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tJones\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tindustrials\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t2657.38\t_\tNUM\tCD\t_\t3\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t88.12\t_\tNUM\tCD\t_\t6\tnmod:npmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n9\ttransportation\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n10\t1304.23\t_\tNUM\tCD\t_\t9\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\toff\t_\tADJ\tJJ\t_\t10\tadvmod\t_\t_\n13\t102.06\t_\tNUM\tCD\t_\t12\tdep\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n15\tutilities\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n16\t214.73\t_\tNUM\tCD\t_\t15\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\t2.77\t_\tNUM\tCD\t_\t18\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBonds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tShearson\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tLehman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tHutton\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tTreasury\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tindex\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n8\t3393.51\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\toff\t_\tADJ\tJJ\t_\t8\tadvmod\t_\t_\n\n1\tCommodities\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tDow\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tJones\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tfutures\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tindex\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n7\t129.72\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\toff\t_\tADJ\tJJ\t_\t7\tadvmod\t_\t_\n10\t0.15\t_\tNUM\tCD\t_\t9\tdep\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n12\tspot\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tindex\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n14\t130.16\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tup\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t0.91\t_\tNUM\tCD\t_\t16\tnmod:npmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDollar\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\t141.85\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tyen\t_\tNOUN\tNNS\t_\t1\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\toff\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t0.25\t_\tNUM\tCD\t_\t4\tadvmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\t1.8685\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmarks\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\toff\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t0.0055\t_\tNUM\tCD\t_\t10\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMonday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t16\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t1989\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n2\tkey\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tforeign\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n6\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinterest\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\trates\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\tbelow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tguide\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tgeneral\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlevels\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tdo\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\talways\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\trepresent\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n21\tactual\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttransactions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tPRIME\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRATE\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t10\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t1/2\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbase\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcorporate\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tloans\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tcenter\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tcommercial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFUNDS\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t8\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n7\thigh\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\t8\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t1/2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t6\tappos\t_\t_\n12\tlow\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\t8\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t5/8\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t6\tappos\t_\t_\n17\tnear\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tclosing\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\tbid\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\t8\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t3/4\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t6\tappos\t_\t_\n24\toffered\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tReserves\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tamong\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcommercial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbanks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tovernight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tuse\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tamounts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tFulton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n4\tPrebon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n6\tU.S.A\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n9\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDISCOUNT\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRATE\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t7\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tdepository\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinstitutions\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tReserve\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBank\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCALL\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tMONEY\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t9\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n5\t3/4\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tdep\t_\t_\n8\t10\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tbrokers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\texchange\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcollateral\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tplaced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tdirectly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tGeneral\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tMotors\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tAcceptance\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\t5\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n15\t44\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tdays\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n18\t8.20\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n20\t45\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tdep\t_\t_\n22\t59\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tdays\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n25\t8\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n27\t60\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tdep\t_\t_\n29\t89\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tdays\t_\tNOUN\tNNS\t_\t26\tnmod:npmod\t_\t_\n31\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n32\t7.875\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n34\t90\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n35\tto\t_\tADP\tTO\t_\t36\tdep\t_\t_\n36\t119\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n37\tdays\t_\tNOUN\tNNS\t_\t33\tnmod:npmod\t_\t_\n38\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n39\t7.75\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n41\t120\t_\tNUM\tCD\t_\t43\tcompound\t_\t_\n42\tto\t_\tADP\tTO\t_\t43\tdep\t_\t_\n43\t149\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\tdays\t_\tNOUN\tNNS\t_\t40\tnmod:npmod\t_\t_\n45\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n46\t7.625\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n47\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n48\t150\t_\tNUM\tCD\t_\t50\tcompound\t_\t_\n49\tto\t_\tADP\tTO\t_\t50\tdep\t_\t_\n50\t179\t_\tNUM\tCD\t_\t51\tnummod\t_\t_\n51\tdays\t_\tNOUN\tNNS\t_\t47\tnmod:npmod\t_\t_\n52\t;\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n53\t7.375\t_\tNUM\tCD\t_\t54\tnummod\t_\t_\n54\t%\t_\tSYM\tNN\t_\t12\tdep\t_\t_\n55\t180\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n56\tto\t_\tADP\tTO\t_\t57\tdep\t_\t_\n57\t270\t_\tNUM\tCD\t_\t58\tnummod\t_\t_\n58\tdays\t_\tNOUN\tNNS\t_\t54\tnmod:npmod\t_\t_\n59\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\tHigh-grade\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tunsecured\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tnotes\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tthrough\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdealers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcorporations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tmultiples\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1,000\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n18\t:\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n19\t8.40\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tdays\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n24\t8.33\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n26\t60\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tdays\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n29\t8.26\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n31\t90\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tdays\t_\tNOUN\tNNS\t_\t30\tnmod:npmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCERTIFICATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tOF\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tDEPOSIT\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n5\t8.05\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t1\tdep\t_\t_\n7\tone\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\t8.02\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n15\t8\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n17\tthree\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmonths\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n20\t7.98\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n22\tsix\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n25\t7.95\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n27\tone\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t26\tdep\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ttop\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tpaid\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprimary\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnegotiable\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tC.D.s\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tusually\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tamounts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t1\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tmore\t_\tADJ\tJJR\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tminimum\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tunit\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t100,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trates\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsecondary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n8\t8.40\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n10\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\t8.40\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod:npmod\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n18\t8.40\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n20\tsix\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tmonths\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBANKERS\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tACCEPTANCES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t8.40\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n6\t30\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tdays\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\t8.35\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n11\t60\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n14\t8.27\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n16\t90\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tdays\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n18\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n19\t8.20\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n21\t120\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tdays\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n24\t8.15\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n26\t150\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tdays\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n29\t8.02\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n31\t180\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\tdays\t_\tNOUN\tNNS\t_\t30\tnmod:npmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNegotiable\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\tbank-backed\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tbusiness\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tcredit\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tinstruments\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\ttypically\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tfinancing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\timport\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\torder\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLATE\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tEURODOLLARS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\t8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n6\t5/8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n9\t8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n10\t1/2\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n12\tone\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n15\t8\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n16\t5/8\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t21\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t21\tdep\t_\t_\n19\t8\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n20\t1/2\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tmonths\t_\tNOUN\tNNS\t_\t21\tnmod:npmod\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n25\t8\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n26\t9/16\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t31\tdep\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tdep\t_\t_\n29\t8\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n30\t7/16\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n32\tthree\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tmonths\t_\tNOUN\tNNS\t_\t31\tnmod:npmod\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n35\t8\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n36\t1/2\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n37\t%\t_\tSYM\tNN\t_\t41\tdep\t_\t_\n38\tto\t_\tADP\tTO\t_\t41\tdep\t_\t_\n39\t8\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n40\t3/8\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n41\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n42\tfour\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n43\tmonths\t_\tNOUN\tNNS\t_\t41\tnmod:npmod\t_\t_\n44\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n45\t8\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n46\t1/2\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n47\t%\t_\tSYM\tNN\t_\t51\tdep\t_\t_\n48\tto\t_\tADP\tTO\t_\t51\tdep\t_\t_\n49\t8\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n50\t3/8\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n51\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n52\tfive\t_\tNUM\tCD\t_\t53\tnummod\t_\t_\n53\tmonths\t_\tNOUN\tNNS\t_\t51\tnmod:npmod\t_\t_\n54\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n55\t8\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n56\t1/2\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n57\t%\t_\tSYM\tNN\t_\t61\tdep\t_\t_\n58\tto\t_\tADP\tTO\t_\t61\tdep\t_\t_\n59\t8\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n60\t3/8\t_\tNUM\tCD\t_\t61\tcompound\t_\t_\n61\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n62\tsix\t_\tNUM\tCD\t_\t63\tnummod\t_\t_\n63\tmonths\t_\tNOUN\tNNS\t_\t61\tnmod:npmod\t_\t_\n64\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tINTERBANK\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tOFFERED\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n4\tRATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tLIBOR\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\t8\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t1/2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t4\tdep\t_\t_\n12\tone\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n15\t8\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t1/2\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n18\tthree\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n21\t8\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t7/16\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n24\tsix\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmonths\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n26\t;\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n27\t8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t3/8\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n30\tone\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t29\tdep\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tinterbank\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\toffered\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\trates\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdeposits\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tquotations\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tfive\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFOREIGN\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPRIME\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tRATES\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n5\tCanada\t_\tPROPN\tNNP\t_\t3\tdep\t_\t_\n6\t13.50\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\tGermany\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n10\t8.50\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n13\tJapan\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n14\t4.875\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdep\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n17\tSwitzerland\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n18\t8.50\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n21\tBritain\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n22\t15\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trate\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindications\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tdirectly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tcomparable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tlending\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpractices\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tvary\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n12\twidely\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tlocation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTREASURY\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBILLS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\tResults\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n5\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n7\tMonday\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tOctober\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n10\t16\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\t1989\t_\tNUM\tCD\t_\t7\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tauction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tshort-term\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tgovernment\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tbills\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tsold\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n22\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdiscount\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tface\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tvalue\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tunits\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t34\tdep\t_\t_\n32\t10,000\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n33\tto\t_\tADP\tTO\t_\t34\tdep\t_\t_\n34\t$\t_\tSYM\t$\t_\t29\tnmod\t_\t_\n35\t1\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n38\t7.37\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\t%\t_\tSYM\tNN\t_\t4\tdep\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\t13\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tweeks\t_\tNOUN\tNNS\t_\t39\tappos\t_\t_\n43\t;\t_\tPUNCT\t:\t_\t39\tpunct\t_\t_\n44\t7.42\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n45\t%\t_\tSYM\tNN\t_\t39\tdep\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\t26\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\tweeks\t_\tNOUN\tNNS\t_\t45\tappos\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHOME\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLOAN\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMORTGAGE\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCORP\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n8\tFreddie\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMac\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n12\tPosted\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n13\tyields\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\t30-year\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tmortgage\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcommitments\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tdelivery\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\twithin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tdays.\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n\n1\t9.83\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tstandard\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tconventional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfixedrate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmortgages\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\t7.875\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tdep\t_\t_\n14\trate\t_\tNOUN\tNN\t_\t19\tamod\t_\t_\n15\tcapped\t_\tVERB\tVBD\t_\t14\tdep\t_\t_\n16\tone-year\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tadjustable\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\trate\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmortgages\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tNATIONAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMORTGAGE\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tASSOCIATION\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n6\tFannie\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMae\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n10\tPosted\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\tyields\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\t30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tmortgage\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcommitments\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdelivery\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\twithin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t30\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tdays\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t-LRB-\t_\tPUNCT\t-LRB-\t_\t23\tpunct\t_\t_\n23\tpriced\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tpar\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\t-RRB-\t_\tPUNCT\t-RRB-\t_\t23\tpunct\t_\t_\n27\t.9.82\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tstandard\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\tconventional\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tfixed\t_\tVERB\tVBN\t_\t33\tamod\t_\t_\n33\trate-mortgages\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n35\t8.70\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\t%\t_\tSYM\tNN\t_\t28\tdep\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\t6/2\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n39\trate\t_\tNOUN\tNN\t_\t40\tdep\t_\t_\n40\tcapped\t_\tVERB\tVBN\t_\t44\tamod\t_\t_\n41\tone-year\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n42\tadjustable\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n43\trate\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tmortgages\t_\tNOUN\tNNS\t_\t36\tappos\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMERRILL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tLYNCH\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tREADY\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tASSETS\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tTRUST\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\t8.49\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnnualized\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\treturn\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\texpenses\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tpast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n14\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tforecast\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tfuture\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\treturns\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIntel\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\treached\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tAlliant\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tComputer\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tSystems\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tdevelop\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n15\tsoftware\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tstandards\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tIntel\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\ti860\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmicroprocessor\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ti860\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tintroduced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tearlier\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tIntel\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tentry\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcrowded\t_\tVERB\tVBN\t_\t16\tamod\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n18\treduced\t_\tVERB\tVBN\t_\t26\tamod\t_\t_\n19\tinstruction\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n20\tset\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n21\tcomputing\t_\tVERB\tVBG\t_\t26\tamod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n24\tRISC\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tcomputers\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIntel\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tbased\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tSanta\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tClara\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCalif.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tleader\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ttraditional\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmicroprocessors\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\t8086\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tfamily\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tforms\t_\tVERB\tVBZ\t_\t20\tacl:relcl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\theart\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tIBM-compatible\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tpersonal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tcomputers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tIntel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tinvest\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n9\t3\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tacquire\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t4\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n16\tstake\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tAlliant\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmaker\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tminisupercomputers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tscientists\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tengineers\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAlliant\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tbased\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tLittleton\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMass.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tlicense\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\tparallel-computing\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttechnologies\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tIntel\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tproviding\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n18\tusers\t_\tNOUN\tNNS\t_\t17\tiobj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tway\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tlet\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tmany\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\ti860\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmicroprocessors\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tsingle\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcomputer\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\twork\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n31\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tproblem\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\tsimultaneously\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAlliant\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tplans\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tuse\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmicroprocessor\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfuture\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tproducts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tdiscuss\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tplans\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfor\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tupgrading\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tcurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tproduct\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tline\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOmnicare\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tintends\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\texpand\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tposition\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tmedical\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tdental\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\tmarkets\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tacquired\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcotton\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tgauze\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tproducts\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tdivision\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tclosely\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\theld\t_\tVERB\tVBN\t_\t31\tamod\t_\t_\n29\tSterile\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tProducts\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tCorp.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n34\t8.2\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tOmnicare\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdivision\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tadd\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tsubstantial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tsales\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tvolume\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tpositive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcontribution\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tour\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tearnings\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1990\t_\tNUM\tCD\t_\t15\tdep\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tbeyond\t_\tADP\tIN\t_\t23\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1988\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tCincinnati\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t$\t_\tSYM\t$\t_\t6\tdobj\t_\t_\n8\t3.1\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\t32\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\trevenue\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n21\t148.5\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOmnicare\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdivision\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\toperates\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n6\tunder\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\ttrade\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tname\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tACCO\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tsupplies\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tmedical\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tdental\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tmarkets\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbusiness\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tSt.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLouis\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\thad\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t14\tadvmod\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n15\t14\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tfiscal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tended\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tMarch\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t31\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\tOmnicare\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tBurmah\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tOil\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPLC\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tBritish\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tindependent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\toil\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tspecialty\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tchemicals\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n12\tmarketing\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tconcern\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tSHV\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tHoldings\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tN.V.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tNetherlands\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tbuilt\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n24\tup\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\t6.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tamod\t_\t_\n28\tstake\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tcompany\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAlexander\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBurmah\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tspokesman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tSHV\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tpreviously\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\towned\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tadvmod\t_\t_\n15\tlittle\t_\tADJ\tJJ\t_\t17\tadvmod\t_\t_\n16\tunder\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tBurmah\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tabout\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDutch\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tnotified\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n7\tBurmah\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\treason\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tincreasing\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstake\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tSHV\t_\tPROPN\tNNP\t_\t23\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n6\tmerged\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tNorth\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSea\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\toil\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tgas\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\toperations\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tCalor\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tGroup\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tPLC\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n22\tbeen\t_\tAUX\tVBN\t_\t23\tauxpass\t_\t_\n23\tpegged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tspeculators\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tas\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tpossible\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tsuitor\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tBurmah\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tOil\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\trecent\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tweeks\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tSHV\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\towns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t40\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tCalor\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBurmah\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\towns\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tCastrol\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tbrand\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tlubricant\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\toils\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t17\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n16\trise\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\t#\t_\tSYM\t#\t_\t23\tcompound\t_\t_\n22\t43.5\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t25\tpunct\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n26\t68.3\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t-RRB-\t_\tPUNCT\t-RRB-\t_\t25\tpunct\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tfirst\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\thalf\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsigned\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdefinitive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tBuilders\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tHardware\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tGroup\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\tclosely\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\theld\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n20\tNalcor\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tBeverly\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tHills\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tCalif\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tJ.P.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tIndustries\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tspokesman\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tamount\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n14\tJ.P.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tIndustries\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tget\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tgroup\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlittle\t_\tADV\tRB\t_\t25\tnmod:npmod\t_\t_\n25\tbetter\t_\tADV\tRBR\t_\t11\tdep\t_\t_\n26\tthan\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\texpected\t_\tVERB\tVBN\t_\t25\tccomp\t_\t_\n28\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarketplace\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tmarketplace\t_\tNOUN\tNN\t_\t37\tnsubj\t_\t_\n35\thad\t_\tAUX\tVBD\t_\t37\taux\t_\t_\n36\tbeen\t_\tAUX\tVBN\t_\t37\taux\t_\t_\n37\texpecting\t_\tVERB\tVBG\t_\t25\tconj\t_\t_\n38\t$\t_\tSYM\t$\t_\t42\tdep\t_\t_\n39\t25\t_\tNUM\tCD\t_\t42\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t42\tcompound\t_\t_\n41\tto\t_\tADP\tTO\t_\t42\tdep\t_\t_\n42\t$\t_\tSYM\t$\t_\t37\tdobj\t_\t_\n43\t30\t_\tNUM\tCD\t_\t44\tcompound\t_\t_\n44\tmillion\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tconsists\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tWeslock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tJPI\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tModern\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tInc\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJ.P.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tAnn\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tArbor\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tMich.\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsale\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tcompletes\t_\tVERB\tVBZ\t_\t13\tccomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tpreviously\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tannounced\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n20\tprogram\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tdivest\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\titself\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\thardware\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tplumbing\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n29\tsupplies\t_\tNOUN\tNNS\t_\t30\tcompound\t_\t_\n30\toperations\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tremaining\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbusiness\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmanufacture\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tsale\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tengine\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\ttransmissions\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\tproducts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tindustrial\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\ttransportation\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n20\tapplications\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCiting\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\t$\t_\tSYM\t$\t_\t6\tamod\t_\t_\n4\t3.1\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tprovision\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdoubtful\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taccounts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tDallas-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tNational\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHeritage\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tloss\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tfourth\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tended\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tJune\t_\tPROPN\tNNP\t_\t22\tnmod:tmod\t_\t_\n24\t30\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunit\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ttroubled\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n5\tSouthmark\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\toperator\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tnursing\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\thomes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tretirement\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcenters\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsustained\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnet\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tloss\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t1.6\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\tnine\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\tcompared\t_\tVERB\tVBN\t_\t36\tcase\t_\t_\n34\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tnet\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tincome\t_\tNOUN\tNN\t_\t18\tadvcl\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\t$\t_\tSYM\t$\t_\t36\tnmod\t_\t_\n39\t1.3\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n42\tor\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n43\teight\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\tcents\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n45\ta\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tshare\t_\tNOUN\tNN\t_\t44\tnmod:npmod\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n48\ta\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tyear\t_\tNOUN\tNN\t_\t50\tnmod:npmod\t_\t_\n50\tearlier\t_\tADV\tRBR\t_\t38\tadvmod\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tOperating\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t13\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n8\t22.2\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n12\t19.7\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tyear-earlier\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t3.1\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\treserve\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\tcreated\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treflect\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tdoubt\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcollectability\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\treceivables\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\towed\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tNational\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tHeritage\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tsome\t_\tDET\tDT\t_\t19\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\treal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\testate\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tpartnerships\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tmanages\t_\tVERB\tVBZ\t_\t29\tacl:relcl\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\texpenses\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n6\tincurred\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tprevious\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tboard\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tmanagement\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\trecent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcontest\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tcontrol\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\trecognized\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n21\tprimarily\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfirst\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tquarter\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tended\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tSept.\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n28\t30\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNational\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tHeritage\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t12.5\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcents\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tyesterday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tclose\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t1.375\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tStock\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tExchange\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcomposite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnited\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tBiscuits\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n4\tHoldings\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n6\tPLC\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tBritish\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tfood\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproducer\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcreation\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tEuropean\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tgroup\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tbring\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\ttogether\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tinterests\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tregion\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tcomprise\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tall\t_\tDET\tDT\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tUnited\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBiscuit\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tmanufacturing\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tmarketing\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\toperations\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfood\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsector\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tapart\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tthose\t_\tPRON\tDT\t_\t19\tnmod\t_\t_\n22\tbased\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnited\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBiscuits\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcombined\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tinclude\t_\tVERB\tVB\t_\t6\tacl:relcl\t_\t_\n11\tbusinesses\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tMcVities\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tbiscuits\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tTerry\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tconfectionery\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\twill\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\thave\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n23\tannual\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsales\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tmore\t_\tADJ\tJJR\t_\t30\tadvmod\t_\t_\n27\tthan\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\t#\t_\tSYM\t#\t_\t30\tcompound\t_\t_\n29\t1.5\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t32\tpunct\t_\t_\n32\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n33\t2.35\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tbillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t32\tpunct\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n37\ttrading\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tprofit\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n39\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n40\tmore\t_\tADJ\tJJR\t_\t44\tadvmod\t_\t_\n41\tthan\t_\tADP\tIN\t_\t40\tmwe\t_\t_\n42\t#\t_\tSYM\t#\t_\t44\tcompound\t_\t_\n43\t160\t_\tNUM\tCD\t_\t44\tcompound\t_\t_\n44\tmillion\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n45\t-LRB-\t_\tPUNCT\t-LRB-\t_\t46\tpunct\t_\t_\n46\t$\t_\tSYM\t$\t_\t44\tdep\t_\t_\n47\t251\t_\tNUM\tCD\t_\t48\tcompound\t_\t_\n48\tmillion\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n49\t-RRB-\t_\tPUNCT\t-RRB-\t_\t46\tpunct\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstructure\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tenable\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n7\tUnited\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBiscuits\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfocus\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n11\tclearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tupon\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\topportunities\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tplanned\t_\tVERB\tVBN\t_\t16\tamod\t_\t_\n16\tgrowth\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tduring\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\t1990s\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tBob\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tClarke\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tdeputy\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tchairman\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tgroup\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n30\tchief\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\texecutive\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tUnited\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBiscuits\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tentire\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\trestaurant\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\toperations\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tGrand\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tMetropolitan\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPLC\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t#\t_\tSYM\t#\t_\t20\tcompound\t_\t_\n19\t180\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tAmerican\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tjournalist\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tstanding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ttrial\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tNamibia\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tplace\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tthat\t_\tDET\tDT\t_\t10\tnmod\t_\t_\n6\tworld\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\topinion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n10\tcelebrating\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n11\tover\t_\tADP\tIN\t_\t5\tcase\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\texpectation\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\t's\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tgoing\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\thold\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tan\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\telection\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tlikely\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\twinner\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tMarxist-dominated\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tSWAPO\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\trebels\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tjournalist\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tcrime\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\twriting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\thead\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcommission\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tcharged\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n17\twith\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\toverseeing\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\telection\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tfairness\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tBryan\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tO'Linn\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n28\topenly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tsympathetic\t_\tADJ\tJJ\t_\t9\tccomp\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n31\tSWAPO\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tafter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthat\t_\tPRON\tDT\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tO'Linn\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tScott\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tStanley\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tarrested\t_\tVERB\tVBN\t_\t7\txcomp\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tpassport\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tconfiscated\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttrial\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcharges\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tviolated\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tproclamation\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tissued\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n15\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tSouth\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tAfrican\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tadministrator\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tgeneral\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tearlier\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n26\tmade\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcrime\t_\tNOUN\tNN\t_\t41\tdep\t_\t_\n30\tpunishable\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n31\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ttwo\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tprison\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\tfor\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n37\tany\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tperson\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n39\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n40\t``\t_\tPUNCT\t``\t_\t41\tpunct\t_\t_\n41\tinsult\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tdisparate\t_\tADJ\tJJ\t_\t41\tconj\t_\t_\n44\tor\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n45\tbelittle\t_\tVERB\tVB\t_\t41\tconj\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n47\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n48\telection\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tcommission\t_\tNOUN\tNN\t_\t41\tconj\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\taffair\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tdoes\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tbode\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\twell\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfuture\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdemocracy\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tfreedom\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tanything\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tNamibia\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n19\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n20\tSWAPO\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tstarts\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n22\trunning\t_\tVERB\tVBG\t_\t21\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tgovernment\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\textent\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStanley\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tdone\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tanything\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\twrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tstep\t_\tNOUN\tNN\t_\t13\tccomp\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tconsensus\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tworld\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tintellectuals\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tNamibian\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tguerrillas\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n30\twere\t_\tVERB\tVBD\t_\t35\tcop\t_\t_\n31\tabove\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tall\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\telse\t_\tADV\tRB\t_\t35\tnmod\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tvictims\t_\tNOUN\tNNS\t_\t22\tdep\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsuppression\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tneighboring\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n40\tSouth\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tAfrica\t_\tPROPN\tNNP\t_\t37\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSWAPO\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tenjoyed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tfavorable\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tWestern\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmedia\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\ttreatment\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tever\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n9\tsince\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tU.N.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tGeneral\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tAssembly\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tdeclared\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n16\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tsole\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tauthentic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\trepresentative\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tNamibia\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tpeople\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t21\tdep\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tbrokered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tpeace\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tsettlement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tremove\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n12\tCuba\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tAfrika\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tKorps\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tAngola\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\thold\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n23\tfree\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tfair\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\telections\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n28\tthat\t_\tPRON\tWDT\t_\t30\tnsubj\t_\t_\n29\twould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\tend\t_\tVERB\tVB\t_\t27\tacl:relcl\t_\t_\n31\tSouth\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAfrica\t_\tPROPN\tNNP\t_\t34\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tcontrol\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n35\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tNamibia\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\telections\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tNov.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t7\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStanley\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\teditor\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tAmerican\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tPress\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInternational\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tWashington\t_\tPROPN\tNNP\t_\t15\tamod\t_\t_\n15\tD.C.-based\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tconservative\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\twire\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tservice\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tvisited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tNamibia\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\treport\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n24\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tU.N.-monitored\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\telection\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcampaign\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tinterviewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tO'Linn\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\thead\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcommission\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tcharged\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\twith\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tinvestigating\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\telectoral\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tintimidation\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n17\treported\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tO'Linn\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n22\topenly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tsympathetic\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tSWAPO\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tindeed\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\thad\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n29\tdefended\t_\tVERB\tVBN\t_\t23\tconj\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n31\tleaders\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tcourt\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tStanley\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tarticle\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tpublished\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tNamibian\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tnewspapers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tO'Linn\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n16\tcriminal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcharges\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n18\tbrought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tagainst\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\teditors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tpublisher\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n25\tlawyer\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tarrested\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tcharged\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n7\talong\t_\tADP\tIN\t_\t4\tadvmod\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tothers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\treturned\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tNamibia\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t4\tcc:preconj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tState\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDepartment\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tLawyers\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCommittee\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tFreedom\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tPress\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tprotested\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tStanley\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tdetention\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tarrest\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlatest\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tseries\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tincidents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tthreaten\t_\tVERB\tVBP\t_\t12\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tderail\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tNamibia\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\telections\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t6\tcc:preconj\t_\t_\n2\tSouth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAfrican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tSWAPO\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\textremists\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tintimidating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tvoters\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\thabit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tarranging\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tpeace\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tsettlements\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tthen\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\twashing\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\thands\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\ttragic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tresults\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tchance\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tredress\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tthat\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trecord\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tNamibia\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tState\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\thuman-rights\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcommunity\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n6\tshould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tinsist\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tStanley\t_\tPROPN\tNNP\t_\t16\tnsubjpass\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfellow\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdefendants\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\treleased\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tUnited\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tNation\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmonitors\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tmake\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n25\tcertain\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tO'Linn's\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tcommission\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\tinvestigates\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n31\telection\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tcomplaints\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tall\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tsides\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCommodity\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tgenerally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstability\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tinfluence\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tfirst\t_\tADJ\tJJ\t_\t10\tadvcl\t_\t_\n10\tcreated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tnervousness\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLater\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbecame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t6\txcomp\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tundercurrent\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tdominating\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tforce\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tindividual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarkets\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\treacted\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n19\tmore\t_\tADV\tRBR\t_\t18\tadvmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tfactors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGold\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttraditional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thaven\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttimes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tfinancial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcrisis\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tcontinued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tinverse\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlockstep\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdollar\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\trising\t_\tVERB\tVBG\t_\t12\tdep\t_\t_\n21\tearly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tday\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tcurrency\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n28\tfell\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n31\tthen\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tgiving\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n33\tup\t_\tADP\tRP\t_\t32\tcompound:prt\t_\t_\n34\tsome\t_\tDET\tDT\t_\t32\tdobj\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\tgains\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\tas\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tdollar\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n41\trecovered\t_\tVERB\tVBD\t_\t32\tadvcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tCopper\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tcrude\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\toil\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n5\treacted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tconcern\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrash\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tyesterday\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thave\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tpotentially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tdevastating\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\teffect\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCopper\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tshowed\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n5\tlittle\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\trebound\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthrough\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tday\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n11\tone\t_\tNUM\tCD\t_\t22\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tsupply\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tproblems\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\tsupporting\t_\tVERB\tVBG\t_\t11\tacl:relcl\t_\t_\n21\tprices\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tappeared\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n23\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tsolved\t_\tVERB\tVBN\t_\t22\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCrude\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tearly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tretained\t_\tVERB\tVBD\t_\t19\tadvcl\t_\t_\n12\tearly\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tgains\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\ttoo\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n19\tbecame\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n20\tstronger\t_\tADJ\tJJR\t_\t19\txcomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\tending\t_\tVERB\tVBG\t_\t19\txcomp\t_\t_\n23\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tsmall\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tnet\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tloss\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tcotton\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsugar\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tnervous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tshowed\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n10\tsmall\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdeclines\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tChicago\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tgrain\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tsoybean\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tslightly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tLivestock\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tmeat\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcrisis\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tcut\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n17\tconsumption\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tbeef\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tpork\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcommodity\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tPRECIOUS\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tMETALS\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tFutures\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tmoderately\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\thigher\t_\tADJ\tJJR\t_\t7\tdep\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tgold\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tgave\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n17\tup\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tsome\t_\tDET\tDT\t_\t16\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tearly\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tgains\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n24\tplatinum\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tbehaved\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n26\tindependently\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n28\tfirst\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tfalling\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tthen\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n32\tlater\t_\tADV\tRBR\t_\t33\tadvmod\t_\t_\n33\trising\t_\tVERB\tVBG\t_\t29\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSilver\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tperformed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tquietly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tspot\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tgold\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t4\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t367.30\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tounce\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n3\tactive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tDecember\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tdelivery\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tgold\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsettled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t3.90\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tounce\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t371.20\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tafter\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\ttrading\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n22\tas\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\thigh\t_\tADJ\tJJ\t_\t21\tadvmod\t_\t_\n24\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t26\tdep\t_\t_\n26\t374\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDecember\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tsilver\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n4\tup\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n5\t2.3\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcents\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tounce\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t5.163\t_\tNUM\tCD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tPlatinum\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tbehaved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmore\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n4\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tindustrial\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmetal\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\teasing\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n10\tearly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tconcern\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tpossible\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tweaker\t_\tADJ\tJJR\t_\t15\tdep\t_\t_\n17\teconomy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n20\trecovering\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n21\tlater\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tstrengthened\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGold\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n3\tnowhere\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tspectacular\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tperformer\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tyears\t_\tNOUN\tNNS\t_\t11\tnmod:npmod\t_\t_\n11\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tBlack\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tMonday\t_\tPROPN\tNNP\t_\t6\tacl:relcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tprecious\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tmetals\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbefore\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\twent\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n17\tinto\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n19\tlate-in-the-day\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tnose\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdive\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n23\tso\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n25\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\treact\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBack\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t16\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\tl987\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tduring\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tgold\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tsurged\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n22\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tfell\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tOctober\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tcontract\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tthat\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tas\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tmuch\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tas\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n12\t8.70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n14\tas\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\thigh\t_\tADJ\tJJ\t_\t17\tadvmod\t_\t_\n16\tas\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n18\t471.60\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tmore\t_\tADV\tRBR\t_\t24\tadvmod\t_\t_\n23\tdeferred\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tpositions\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tdue\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tmature\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\tas\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tlate\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMarch\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t1989\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n35\trose\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n36\tas\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n37\tmuch\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n38\tas\t_\tADP\tIN\t_\t39\tadvmod\t_\t_\n39\t$\t_\tSYM\t$\t_\t35\tdobj\t_\t_\n40\t9.60\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tBlack\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMonday\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tOct.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tOctober\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tcontract\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\ttacked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ton\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tfurther\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tgains\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\trising\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n20\tas\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\thigh\t_\tADJ\tJJ\t_\t23\tadvmod\t_\t_\n22\tas\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n24\t491.50\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tgain\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\talmost\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\t$\t_\tSYM\t$\t_\t27\tnmod\t_\t_\n31\t20\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\ttop\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tFriday\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tadvances\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n39\tbefore\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n40\tgiving\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n41\tup\t_\tADP\tRP\t_\t40\tcompound:prt\t_\t_\n42\talmost\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n43\t$\t_\tSYM\t$\t_\t40\tdobj\t_\t_\n44\t10\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n45\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tthat\t_\tPRON\tDT\t_\t43\tnmod\t_\t_\n47\tat\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tclose\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tgain\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t7\tdep\t_\t_\n7\t4\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\tminiscule\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tcompared\t_\tVERB\tVBN\t_\t12\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tthat\t_\tPRON\tDT\t_\t9\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tanalyst\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tPeter\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCardillo\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJosephthal\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tYork\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tgold\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\talready\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\thad\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n20\tsome\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tprice-supporting\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\ttechnical\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfactors\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\thave\t_\tAUX\tVB\t_\t28\taux\t_\t_\n28\tcaused\t_\tVERB\tVBN\t_\t24\tacl:relcl\t_\t_\n29\tprices\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\trise\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n33\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n34\tor\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\twithout\t_\tADP\tIN\t_\t33\tconj\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tstock\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tWhat\t_\tPRON\tWP\t_\t6\tdobj\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tdid\t_\tVERB\tVBD\t_\t8\tcsubj\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tcause\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\trise\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\tplace\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tearlier\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n15\tthan\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\thave\t_\tAUX\tVB\t_\t19\taux\t_\t_\n19\thappened\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCardillo\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tgood\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tchance\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\tthat\t_\tDET\tDT\t_\t9\tmark\t_\t_\n7\tgold\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tretain\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tgains\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\trise\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n14\tfurther\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tinterest\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\trates\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\thelp\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n12\tgold\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tkeeping\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdollar\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\trising\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFinally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n3\taccording\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n4\tto\t_\tADP\tTO\t_\t3\tmwe\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCardillo\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\timpact\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstrong\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdollar\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tshould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\treflected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\treduced\t_\tVERB\tVBN\t_\t19\tamod\t_\t_\n19\texports\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tAugust\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tmerchandise\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\ttrade\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdeficit\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n27\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tfigures\t_\tNOUN\tNNS\t_\t31\tnsubjpass\t_\t_\n30\tare\t_\tAUX\tVBP\t_\t31\tauxpass\t_\t_\n31\treleased\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n32\ttoday\t_\tNOUN\tNN\t_\t31\tnmod:tmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t4\tcop\t_\t_\n4\tdamaging\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdollar\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tsupportive\t_\tADJ\tJJ\t_\t4\tconj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tgold\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tENERGY\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tWorried\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n2\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\t190-point\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tmight\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tharbinger\t_\tNOUN\tNN\t_\t1\tccomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tthings\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcome\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\teconomy\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\tpetroleum\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t23\tcompound\t_\t_\n23\ttraders\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\thalt\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\trecent\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tstring\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tincreases\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tcrude\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\toil\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n36\tfutures\t_\tNOUN\tNNS\t_\t37\tcompound\t_\t_\n37\tprices\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tbenchmark\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcrude\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tWest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tTexas\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tIntermediate\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t20.59\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbarrel\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tNovember\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tdelivery\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tcrude\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tdue\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcorrection\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tanyhow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tseveral\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tsignificant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tgains\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tobservers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdrop\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n14\tdampened\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tspirits\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tpetroleum\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tpits\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfutures\t_\tNOUN\tNNS\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\theaded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tup\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\texpectations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tworld\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\toil\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdemand\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tcontinue\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n20\tstrong\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tOrganization\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tPetroleum\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tExporting\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCountries\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tproduction\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tceiling\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfourth\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tbased\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n16\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprojections\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\trobust\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdemand\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tSo\t_\tADP\tIN\t_\t17\tdep\t_\t_\n2\tany\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tbearish\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tindicator\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tsuch\t_\tADJ\tJJ\t_\t11\tcase\t_\t_\n7\tas\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tprecipitous\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdrop\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tsends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tshivers\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tthrough\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\toil\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmarkets\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\tas\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n24\twell\t_\tADV\tRB\t_\t23\tmwe\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tafter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\treacting\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n5\tearly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tday\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tplummet\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tfutures\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tprices\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tagain\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\ttraders\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\ttook\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n23\tnote\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tpartial\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\trecovery\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n31\tyesterday\t_\tNOUN\tNN\t_\t22\tnmod:tmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tCOPPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tshowed\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n6\tlittle\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trebound\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n9\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tlabor\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tproblem\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\taux\t_\t_\n16\tunderpinning\t_\tVERB\tVBG\t_\t12\tacl:relcl\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tappeared\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tsolved\t_\tVERB\tVBN\t_\t18\txcomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDecember\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t3.05\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tcents\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpound\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t1.2745\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n3\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\toutset\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdrop\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tmight\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tcreate\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tweakened\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tconsequent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\treduction\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tcopper\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tuse\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trecovery\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tprovided\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tlittle\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\thelp\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcopper\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tword\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tspread\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tthree-month\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tstrike\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n20\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tHighland\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tValley\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tmine\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tBritish\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tColumbia\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\twas\t_\tVERB\tVBD\t_\t15\tccomp\t_\t_\n29\tabout\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tover\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n32\taccording\t_\tVERB\tVBG\t_\t35\tcase\t_\t_\n33\tto\t_\tADP\tTO\t_\t32\tmwe\t_\t_\n34\tan\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tanalyst\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHighland\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tValley\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tlarge\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tCanadian\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tproducer\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tprincipal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsupplier\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tJapan\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\trecently\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbegan\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n17\tseeking\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n18\tcopper\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\telsewhere\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tinventories\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tshrank\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\treported\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tunion\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tnegotiations\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tovercome\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\thurdle\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcontracting\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tout\t_\tADP\tRP\t_\t18\tdep\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\twork\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tanalyst\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tonly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\tminor\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpoints\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tcleaned\t_\tVERB\tVBN\t_\t10\txcomp\t_\t_\n14\tup\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tall\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tintents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tpurposes\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tappears\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\thave\t_\tAUX\tVB\t_\t14\taux\t_\t_\n13\tbeen\t_\tAUX\tVBN\t_\t14\tauxpass\t_\t_\n14\tachieved\t_\tVERB\tVBN\t_\t10\txcomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tCopper\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tinventories\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n4\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tYork\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tCommodity\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\twarehouses\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n10\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t516\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\ttons\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t10,004\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\ttons\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLondon\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tMetal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tExchange\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tcopper\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tinventories\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n8\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t13,575\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\ttons\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t89,300\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\ttons\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tLME\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tdecline\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tas\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tComex\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n15\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthis\t_\tPRON\tDT\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tbrushed\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n6\taside\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tover\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tanalyst\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tfutures\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tfirmed\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tDecember\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tcontract\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n19\tas\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n20\thigh\t_\tADJ\tJJ\t_\t22\tadvmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n23\t1.2965\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n28\tn't\t_\tPART\tRB\t_\t29\tneg\t_\t_\n29\table\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tsustain\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tgain\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tauxpass\t_\t_\n4\tsimply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\toverbought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t5\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tselling\t_\tVERB\tVBG\t_\t19\tnsubj\t_\t_\n13\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tfunds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n16\tare\t_\tVERB\tVBP\t_\t18\tauxpass\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t18\tdep\t_\t_\n18\tguided\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n19\thelped\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n20\tdepress\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n21\tprices\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCOTTON\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\teased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\treaction\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tHurricane\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tJerry\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tinfluence\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDecember\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tloss\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t0.22\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcent\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpound\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t74.48\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTechnical\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tconsiderations\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n3\tfollowing\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thurricane\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfactor\t_\tNOUN\tNN\t_\t5\tacl:relcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tcaused\t_\tVERB\tVBD\t_\t22\tccomp\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdecline\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tErnest\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tSimon\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tcotton\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tspecialist\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tPrudential-Bache\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tSecurities\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tNew\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tYork\t_\tPROPN\tNNP\t_\t30\tappos\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tsharply\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstorm\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tapproached\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n9\tTexas\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tLouisiana\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tpart\t_\tNOUN\tNN\t_\t9\tacl:relcl\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tMississippi\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tDelta\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcotton-growing\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tarea\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n3\tafter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tabsorbing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tpotential\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\teffect\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\thurricane\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tbegan\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tslip\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tlate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tSimon\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tselling\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcontinued\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tkept\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t6\txcomp\t_\t_\n8\tunder\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tpressure\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tColder\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\tweather\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeing\t_\tAUX\tVBG\t_\t5\tauxpass\t_\t_\n5\tpredicted\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\thigh\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tplains\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tTexas\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tnorthern\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstates\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tDelta\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcoming\t_\tVERB\tVBG\t_\t22\tamod\t_\t_\n22\tweekend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSimon\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tyet\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcaptured\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n6\ttraders\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tattention\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSUGAR\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMarch\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n5\toff\t_\tADJ\tJJ\t_\t12\tadvmod\t_\t_\n6\t0.32\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcent\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpound\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t13.97\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcents\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tearly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tMarch\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\tas\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\thigh\t_\tADJ\tJJ\t_\t15\tadvmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n15\t14.22\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n17\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\trecovered\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\tthen\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tfell\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n28\tback\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprice-depressing\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfactor\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tanalyst\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n11\tIndia\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\tauxpass\t_\t_\n16\texpected\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuy\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\taround\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\t200,000\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\ttons\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsugar\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tworld\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n29\tdid\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\tmake\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n32\tany\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tpurchases\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIndia\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tbought\t_\tVERB\tVBD\t_\t15\tccomp\t_\t_\n4\t200,000\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\ttons\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbuy\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tmore\t_\tADJ\tJJR\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tanalyst\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalyst\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tIndia\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tpulled\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tbecause\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tof\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tconcern\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n2\tIndia\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\thave\t_\tAUX\tVB\t_\t5\taux\t_\t_\n5\tfelt\t_\tVERB\tVBD\t_\t30\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t24\tadvcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsevere\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdrop\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\taffected\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n20\tsugar\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\tcould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tbuy\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n25\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tlower\t_\tADJ\tJJR\t_\t27\tamod\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tJudith\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tGanes\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tanalyst\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n35\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tShearson\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tLehman\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tHutton\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n40\tNew\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tYork\t_\tPROPN\tNNP\t_\t38\tappos\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tshe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tadded\t_\tVERB\tVBD\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tIndia\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tneeds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsugar\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tso\t_\tADP\tIN\t_\t17\tdep\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t10\tparataxis\t_\t_\n18\tin\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tsooner\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tlater\t_\tADV\tRBR\t_\t19\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tbuy\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tFARM\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tPRODUCTS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tcattle\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\thog\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tfutures\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tcontracts\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n9\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tsharply\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tspeculated\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tplunge\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tlinger\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tminds\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tU.S.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tconsumers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tlong\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tenough\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tprompt\t_\tVERB\tVB\t_\t29\tdep\t_\t_\n32\tthem\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\trein\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n35\tin\t_\tADP\tIN\t_\t34\tnmod\t_\t_\n36\ttheir\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\tspending\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\tat\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tsupermarket\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n42\twhich\t_\tPRON\tWDT\t_\t44\tnsubj\t_\t_\n43\twould\t_\tAUX\tMD\t_\t44\taux\t_\t_\n44\thurt\t_\tVERB\tVB\t_\t34\tdep\t_\t_\n45\tdemand\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n46\tfor\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\tbeef\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t47\tcc\t_\t_\n49\tpork\t_\tNOUN\tNN\t_\t47\tconj\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprice\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\thog\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcontract\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tOctober\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tdelivery\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n12\tmaximum\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tpermissible\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tdaily\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlimit\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t1.5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpound\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tmost\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n5\tgrain\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tcontracts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tslightly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\tout\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trelief\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tshowing\t_\tVERB\tVBG\t_\t13\tccomp\t_\t_\n20\tsigns\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tof\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\trecovering\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tEarlier\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsession\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tseveral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsoybean\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tcontracts\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tset\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlows\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbroad\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trally\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tprocessors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tbegan\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n10\tbuying\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\tfutures\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tcontracts\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tapparently\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\ttake\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n17\tadvantage\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdip\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tKnight-Ridder\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\treport\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tincreased\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n8\tearnings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tper\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tcontrary\t_\tADJ\tJJ\t_\t6\txcomp\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\treported\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n19\tanalysts\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n20\t'\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tcomments\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpublishing\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tearnings\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\twould\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tbe\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n30\tdown\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbelieved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconfusion\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\tcaused\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t22\tadvmod\t_\t_\n12\tJames\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBatten\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tKnight-Ridder\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tchairman\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tchief\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\texecutive\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\ttold\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n23\tNew\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tYork\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tanalysts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tweeks\t_\tNOUN\tNNS\t_\t28\tnmod:npmod\t_\t_\n28\tago\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t48\tmark\t_\t_\n30\tKnight-Ridder\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tearnings\t_\tNOUN\tNNS\t_\t48\tnsubj\t_\t_\n33\tper\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n35\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\tfirst\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tnine\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tmonths\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\t1989\t_\tNUM\tCD\t_\t39\tnmod\t_\t_\n42\twould\t_\tAUX\tMD\t_\t48\taux\t_\t_\n43\t``\t_\tPUNCT\t``\t_\t48\tpunct\t_\t_\n44\tbe\t_\tVERB\tVB\t_\t48\tcop\t_\t_\n45\tbehind\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\ta\t_\tDET\tDT\t_\t48\tdet\t_\t_\n47\tlittle\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tbit\t_\tNOUN\tNN\t_\t22\tccomp\t_\t_\n49\t''\t_\tPUNCT\t''\t_\t48\tpunct\t_\t_\n50\tfrom\t_\tADP\tIN\t_\t52\tcase\t_\t_\n51\tlike\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tperiod\t_\tNOUN\tNN\t_\t48\tnmod\t_\t_\n53\tof\t_\tADP\tIN\t_\t52\tdep\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tKnight-Ridder\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tthird-quarter\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tearnings\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n8\tthat\t_\tADP\tIN\t_\t11\tdobj\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tplans\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\treport\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tOct.\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t24\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\tauxpass\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tup\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\tcomfortable\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\trevised\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n11\tanalysts\t_\tNOUN\tNNS\t_\t13\tnmod:poss\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tprojections\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\treport\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n19\tearnings\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t23\tamod\t_\t_\n22\t62\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tcents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\t64\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshare\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n30\tcompared\t_\tVERB\tVBN\t_\t34\tcase\t_\t_\n31\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\t53\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tcents\t_\tNOUN\tNNS\t_\t18\tadvcl\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n38\treported\t_\tVERB\tVBD\t_\t34\tacl:relcl\t_\t_\n39\tfor\t_\tADP\tIN\t_\t43\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\t1988\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n42\tthird\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tquarter\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tKnight-Ridder\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tagreed\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\testimates\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tall\t_\tDET\tDT\t_\t9\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1989\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n14\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n16\taround\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t2.86\t_\tNUM\tCD\t_\t6\tccomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tcompared\t_\tVERB\tVBN\t_\t25\tcase\t_\t_\n23\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n25\t2.59\t_\tNUM\tCD\t_\t18\tadvcl\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tshare\t_\tNOUN\tNN\t_\t25\tnmod:npmod\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n30\tearlier\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tKnight-Ridder\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t51.75\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tdown\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n17\t37.5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDD\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\textended\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\t$\t_\tSYM\t$\t_\t10\tamod\t_\t_\n9\t45-a-share\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n10\toffer\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tDunkin\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\t'\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\tDonuts\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tNov.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n18\t1\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tindicated\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\tvalue\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t268\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDD\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpartnership\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n7\tUnicorp\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tCanada\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tKingsbridge\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tCapital\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tGroup\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tunit\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tCara\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tOperations\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLtd\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tpreviously\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\treported\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n5\tunder\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tterms\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tconfidentiality\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tDunkin\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\t'\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tDonuts\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpartners\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tkeep\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\topen\t_\tADJ\tJJ\t_\t21\txcomp\t_\t_\n25\tuntil\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tNov.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t1\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n30\tnot\t_\tPART\tRB\t_\t32\tneg\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tacquire\t_\tVERB\tVB\t_\t21\tconj\t_\t_\n33\tany\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tadditional\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tshares\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n36\texcept\t_\tADP\tIN\t_\t40\tcase\t_\t_\n37\tthrough\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n39\ttender\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\toffer\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n41\texpiring\t_\tVERB\tVBG\t_\t40\tacl\t_\t_\n42\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tthat\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tdate\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tDD\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\talready\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\towns\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n8\t15\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcommon\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tdoughnut\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tshop\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tchain\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n21\tas\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tclose\t_\tNOUN\tNN\t_\t34\tadvcl\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tbusiness\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tFriday\t_\tPROPN\tNNP\t_\t24\tnmod:tmod\t_\t_\n28\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tadditional\t_\tADJ\tJJ\t_\t30\tadvmod\t_\t_\n30\t11\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t34\tnsubjpass\t_\t_\n32\thad\t_\tAUX\tVBD\t_\t34\taux\t_\t_\n33\tbeen\t_\tAUX\tVBN\t_\t34\tauxpass\t_\t_\n34\ttendered\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n35\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n36\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\toffer\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDunkin\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\t'\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n3\tDonuts\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tRandolph\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tMass\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCara\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOperations\t_\tPROPN\tNNP\t_\t27\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tfood\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tservices\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tconcern\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tUnicorp\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tholding\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n15\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tinterests\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\toil\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tnatural\t_\tADJ\tJJ\t_\t18\tconj\t_\t_\n21\tgas\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tfinancial\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tservices\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n26\tare\t_\tAUX\tVBP\t_\t27\tauxpass\t_\t_\n27\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tToronto\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tGolden\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tWest\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFinancial\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\triding\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tabove\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tturbulence\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\ttroubled\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n13\tmost\t_\tADJ\tJJS\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tthrift\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tindustry\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\t16\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t%\t_\tSYM\tNN\t_\t23\tamod\t_\t_\n23\tincrease\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthird-quarter\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tearnings\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n29\t41.8\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n30\tmillon\t_\tNOUN\tNN\t_\t28\tdep\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n32\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n33\t66\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tcents\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tshare\t_\tNOUN\tNN\t_\t34\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n5\t36\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\t57\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcents\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tyear-ago\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tquarter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHerbert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tM.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSandler\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tchief\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\texecutive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficer\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n12\tOakland\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tCalif.\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tsavings-and-loan\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tholding\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n20\tcredited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\thigh\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tnumber\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tloans\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tadded\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tportfolio\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\tover\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tlast\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\t12\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tmonths\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n37\tfor\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n38\tbroadening\t_\tVERB\tVBG\t_\t20\tadvcl\t_\t_\n39\tits\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n40\tearning\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n41\tasset\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tbase\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n44\timproving\t_\tVERB\tVBG\t_\t38\tconj\t_\t_\n45\tprofit\t_\tNOUN\tNN\t_\t46\tcompound\t_\t_\n46\tperformance\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\texecutive\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tnoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tslackening\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tdemand\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmortgages\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tdepressed\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tloan\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toriginations\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n18\t1\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\t30\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t17\tappos\t_\t_\n23\tbelow\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tsame\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tperiod\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tlast\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tsavings\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tactivity\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSandler\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tconsumer\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdeposits\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\tenjoyed\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsteady\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tincrease\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tthroughout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1989\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\ttopped\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n20\t$\t_\tSYM\t$\t_\t19\tdobj\t_\t_\n21\t11\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tquarter\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tend\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tfirst\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\ttime\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcompany\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\thistory\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDeposit\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tgrowth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tamounted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n6\t393\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tdouble\t_\tADV\tRB\t_\t14\tnummod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tyear-ago\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tfigure\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhirlpool\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tBenton\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tHarbor\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMich.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tdeveloped\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tprocess\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\trecover\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tenvironmentally\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tharmful\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tchlorofluorocarbons\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tCFCs\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n25\tpreviously\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tentered\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tatmosphere\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tduring\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tin-home\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\trepair\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\trefrigerators\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tfreezers\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmaker\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\thome\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tappliances\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprocess\t_\tNOUN\tNN\t_\t37\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\tinvolves\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tuse\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tmultilayer\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tplastic\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tbag\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tduring\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\trepairs\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tcapture\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tgaseous\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tsubstance\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\ttransport\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\trecycling\t_\tVERB\tVBG\t_\t32\tamod\t_\t_\n32\tcenter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n34\tis\t_\tVERB\tVBZ\t_\t37\tcop\t_\t_\n35\talready\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tuse\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n38\tat\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tnumber\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tits\t_\tPRON\tPRP$\t_\t44\tnmod:poss\t_\t_\n43\tservice\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tcenters\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n47\twill\t_\tAUX\tMD\t_\t49\taux\t_\t_\n48\tbe\t_\tVERB\tVB\t_\t49\tcop\t_\t_\n49\tavailable\t_\tADJ\tJJ\t_\t37\tconj\t_\t_\n50\tto\t_\tADP\tTO\t_\t54\tcase\t_\t_\n51\tall\t_\tDET\tDT\t_\t54\tdet\t_\t_\n52\tauthorized\t_\tVERB\tVBN\t_\t54\tamod\t_\t_\n53\trepair\t_\tNOUN\tNN\t_\t54\tcompound\t_\t_\n54\tcenters\t_\tNOUN\tNNS\t_\t49\tnmod\t_\t_\n55\tby\t_\tADP\tIN\t_\t56\tcase\t_\t_\n56\tspring\t_\tNOUN\tNN\t_\t49\tnmod\t_\t_\n57\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tEarlier\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\trepairs\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tvented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tCFCs\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thome\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\those\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\tdirectly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n14\tinto\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tatmosphere\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCFCs\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n3\twidely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsolvents\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tcoolants\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tfire\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsuppressants\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tuse\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\tauxpass\t_\t_\n6\tlinked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tpotentially\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tdangerous\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdepletion\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tEarth\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tozone\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tlayer\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnumber\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tcompanies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tare\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n25\tseeking\t_\tVERB\tVBG\t_\t6\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tcurtail\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tuse\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n31\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tleast\t_\tADJ\tJJS\t_\t33\tadvmod\t_\t_\n33\temission\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tsubstance\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhirpool\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n5\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsee\t_\tVERB\tVBP\t_\t2\tccomp\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tprocess\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tsmall\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\timportant\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tstep\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\ttoward\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\teventual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\telimination\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tCFC\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tuse\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tappliance\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmanufacture\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMaxus\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tEnergy\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tDallas\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tdiscovered\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\toil\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tfield\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tnortheast\t_\tNOUN\tNN\t_\t9\tadvmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n17\tpreviously\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tdiscovered\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n19\tIntan\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tField\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tsoutheast\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tSumatra\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tarea\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tIndonesia\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMaxus\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\trun\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tproduction\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttest\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\tdiscovery\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\twells\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tdrilled\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfield\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n23\tabout\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\t1.6\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmiles\t_\tNOUN\tNNS\t_\t19\tacl:relcl\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tIntan\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tField\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n31\tbecause\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\twells\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n34\tare\t_\tVERB\tVBP\t_\t35\tcop\t_\t_\n35\tsimilar\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n36\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n37\tothers\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n38\tdrilled\t_\tVERB\tVBN\t_\t37\tacl\t_\t_\n39\tat\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tits\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n41\tIntan\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\tWiduri\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tfields\t_\tNOUN\tNNS\t_\t41\tconj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tMaxus\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tbelieves\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\treserves\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfield\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n13\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\t10\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tbarrels\t_\tNOUN\tNNS\t_\t6\tccomp\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\toil\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tIntan\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tField\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\testimated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\treserves\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t50\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tbarrels\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tWiduri\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tField\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\testimated\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n17\treserves\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t225\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbarrels\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMaxus\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tindependent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tgas\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\toperator\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\towns\t_\tVERB\tVBZ\t_\t12\tconj\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\t56\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\tinterest\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tnew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tfield\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tcalled\t_\tVERB\tVBD\t_\t22\tacl\t_\t_\n25\tNortheast\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tIntan\t_\tPROPN\tNNP\t_\t24\txcomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinterests\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\towned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tBP\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n7\tPetroleum\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n8\tDevelopment\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n9\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tSES\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n11\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n12\tLtd.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tC.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tItoh\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tEnergy\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tCo.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tDeminex\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n21\tSumatra\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tOEL\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tG.m.b\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n25\tH.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n27\tHispanoil\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t29\tpunct\t_\t_\n29\tSumatra\t_\tPROPN\tNNP\t_\t32\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t29\tpunct\t_\t_\n31\tProduction\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n34\tHudbay\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n35\tOil\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n36\t-LRB-\t_\tPUNCT\t-LRB-\t_\t37\tpunct\t_\t_\n37\tIndonesia\t_\tPROPN\tNNP\t_\t39\tdep\t_\t_\n38\t-RRB-\t_\tPUNCT\t-RRB-\t_\t37\tpunct\t_\t_\n39\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n41\tInpex\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tSumatra\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tCo.\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n46\tLasmo\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n47\tSumatra\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n48\tLtd.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n49\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n50\tSunda\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tShell\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n52\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n53\tTCR\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n54\tSumat\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tA.G.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n56\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n57\tWarrior\t_\tPROPN\tNNP\t_\t59\tcompound\t_\t_\n58\tOil\t_\tPROPN\tNNP\t_\t59\tcompound\t_\t_\n59\tCo\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n60\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tproduction-sharing\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tarea\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tPertamina\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tIndonesian\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tstate\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\toil\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tEnvironmental\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSystems\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\trestating\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tresults\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\treduce\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\treported\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n14\tnet\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tnine\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tfiscal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tafter\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tdiscovering\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\ttook\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n29\ttax\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcredits\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t35\tnsubjpass\t_\t_\n32\talready\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n33\thad\t_\tAUX\tVBD\t_\t35\taux\t_\t_\n34\tbeen\t_\tAUX\tVBN\t_\t35\tauxpass\t_\t_\n35\ttaken\t_\tVERB\tVBN\t_\t30\tacl:relcl\t_\t_\n36\tlast\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t35\tnmod:tmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n2\tLittle\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n3\tRock\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\tArk.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\thazardous-waste\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tservices\t_\tNOUN\tNNS\t_\t9\tcompound\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\trestatement\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\treduce\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tnet\t_\tADJ\tJJ\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tnine\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tended\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tJuly\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t31\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n26\t2.5\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t17\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n35\tfrom\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n37\t3.7\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tmillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n40\tor\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n41\t26\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tcents\t_\tNOUN\tNNS\t_\t36\tconj\t_\t_\n43\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tshare\t_\tNOUN\tNN\t_\t42\tnmod:npmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNet\t_\tADJ\tJJ\t_\t10\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\trestated\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n11\t1.6\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\treported\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tnet\t_\tADJ\tJJ\t_\t4\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t2.3\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\t15\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tfinancial\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\treporting\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpurposes\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\ttook\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n13\ttax\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcredits\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n16\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\trecognized\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttax\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tpurposes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tbecause\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tof\t_\tADP\tIN\t_\t2\tmwe\t_\t_\n4\tconfusion\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthose\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcredits\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tagain\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\tin\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\treporting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tresults\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfirst\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tnine\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tJack\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tW.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tForrest\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tEnvironmental\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tSystems\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\texecutive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tofficer\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tchange\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tincreases\t_\tVERB\tVBZ\t_\t13\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\teffective\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\ttax\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\trate\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n23\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n24\tabout\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t35\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t20\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tData\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsigned\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tdefinitive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tmerger\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tagreement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tISI\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tSystems\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t19\tnmod\t_\t_\n17\tMemotec\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tacquire\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n20\tISI\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t20\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t25\tpunct\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t23\tappos\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t25\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tshare\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n32\tabout\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t23\tconj\t_\t_\n34\t130\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n37\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tcash\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tsecurities\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tcomposite\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tISI\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t3.125\t_\tNUM\tCD\t_\t10\tnmod:npmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t18.625\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tMontreal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tExchange\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tMemotec\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tunchanged\t_\tADJ\tJJ\t_\t7\tadvmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\t10.625\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tCanadian\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdollars\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n14\tUS$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t9.05\t_\tNUM\tCD\t_\t12\tappos\t_\t_\n16\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tunder\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tagreement\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n7\tISI\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tBraintree\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tMass.\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tprovider\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tcomputer\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tsoftware\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tservices\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tinsurance\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tindustry\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n25\twill\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tmerge\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n27\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tU.S.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tunit\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMemotec\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\tcreated\t_\tVERB\tVBN\t_\t30\tacl\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthat\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tpurpose\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tMontreal-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmaker\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ttelecommunications\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tproducts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tprovider\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\ttelecommunications\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tservices\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcalls\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n6\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tmake\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n11\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n12\t20-a-share\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n13\tcash\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\ttender\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toffer\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tall\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\toutstanding\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tISI\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCharles\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tJohnston\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tISI\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tagreed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsell\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\t60\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n18\tstake\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tISI\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tMemotec\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n23\tupon\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tcompletion\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\ttender\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\toffer\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tcombination\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tcash\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tMemotec\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tstock\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n38\tdebentures\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMemotec\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttender\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\tconditioned\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n8\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tamong\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tthings\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tholders\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\ttendering\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tleast\t_\tADJ\tJJS\t_\t18\tnmod:npmod\t_\t_\n18\t15\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\toutstanding\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n26\tthan\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\theld\t_\tVERB\tVBN\t_\t28\tacl\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tMr.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tJohnston\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tISI\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tboard\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tinstructed\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tmanagement\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\taccept\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n10\tinquiries\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tany\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tothers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tinterested\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tin\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tmaking\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbid\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tISI\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\twithdraw\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tmerger\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tMemotec\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbetter\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tbid\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsurfaces\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCMS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tEnergy\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tJackson\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tMich.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tresumed\t_\tVERB\tVBN\t_\t9\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpurchase\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tcommon\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tunder\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n22\tapproved\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tdirectors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1987\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\toriginal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tannouncement\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tCMS\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tboard\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tauthorized\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpurchase\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tas\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n18\tmany\t_\tADJ\tJJ\t_\t21\tadvmod\t_\t_\n19\tas\t_\tADP\tIN\t_\t21\tadvmod\t_\t_\n20\tfive\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t2.6\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\tauxpass\t_\t_\n9\tpurchased\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n10\tsince\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tthen\t_\tADV\tRB\t_\t9\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbuy\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tadditional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\topen\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tprivate\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttransactions\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tprevailing\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomposite\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tExchange\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tCMS\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tEnergy\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t34.375\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n21\t62.5\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tclosing\t_\tVERB\tVBG\t_\t27\tamod\t_\t_\n27\tprice\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t37.375\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tThursday\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tbefore\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tFriday\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tplunge\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tutility\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcurrently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\t82.1\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\toutstanding\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMorgan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStanley\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tact\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\texclusive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbroker\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trepurchase\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHughes\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAircraft\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tGeneral\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tMotors\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tagreed\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpurchase\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tElectro-Optics\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tTechnology\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tdivision\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tPerkin-Elmer\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCorp\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfiscal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n6\tended\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n8\t31\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n10\t1988\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmost\t_\tADV\tRBS\t_\t15\tadvmod\t_\t_\n14\trecent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n18\tresults\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tbroken\t_\tVERB\tVBN\t_\t15\tacl:relcl\t_\t_\n21\tout\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tPerkin-Elmer\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\taccounted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tmore\t_\tADJ\tJJR\t_\t32\tadvmod\t_\t_\n29\tthan\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\thalf\t_\tDET\tPDT\t_\t32\tadvmod\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tadvmod\t_\t_\n32\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n33\t145\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tsales\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\trecorded\t_\tVERB\tVBN\t_\t32\tacl\t_\t_\n38\tby\t_\tADP\tIN\t_\t44\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tcompany\t_\tNOUN\tNN\t_\t44\tnmod:poss\t_\t_\n41\t's\t_\tPART\tPOS\t_\t40\tcase\t_\t_\n42\tgovernment\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n43\tsystems\t_\tNOUN\tNNS\t_\t44\tcompound\t_\t_\n44\tsector\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tPerkin-Elmer\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tbased\t_\tVERB\tVBN\t_\t1\tacl:relcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tNorwalk\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tConn.\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsale\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n16\tDanbury\t_\tPROPN\tNNP\t_\t20\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tConn.\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tunit\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tconsistent\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n23\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\trestructuring\t_\tVERB\tVBG\t_\t26\tamod\t_\t_\n26\tstrategy\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tannounced\t_\tVERB\tVBD\t_\t26\tacl\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tApril\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tmark\t_\t_\n4\tmaking\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n5\telectro-optical\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsystems\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tunit\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tlaser\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\twarning\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treceivers\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t3\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\tauxpass\t_\t_\n3\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\taboard\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tmilitary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\thelicopters\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\twarn\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n9\tpilots\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tlaser\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tweapon\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\tauxpass\t_\t_\n16\tfocused\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tthem\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHughes\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tLos\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAngeles\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tPerkinElmer\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tunit\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\twork\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tcomplements\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n12\tefforts\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n15\tElectro-Optical\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tData\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tSystems\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tgroup\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tmakes\t_\tVERB\tVBZ\t_\t19\tacl:relcl\t_\t_\n23\tinfrared\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsensors\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tmilitary\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tlasers\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tnight\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n30\tvision\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tequipment\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHughes\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsale\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tclose\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tend\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tCommunications\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWorkers\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tAmerica\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tratified\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tregional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tall\t_\tDET\tDT\t_\t14\tdep\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tone\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlocal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tagreements\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tBell\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tAtlantic\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCorp\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCWA\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tJersey\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tCommercial\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tlocal\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\trepresents\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n10\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t2,500\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tservice\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trepresentatives\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmarketing\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\temployees\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\ttentative\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tagreement\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t3\tcc:preconj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tunion\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tregional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\ttelephone\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tworking\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n13\ttogether\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tresolve\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tdifferences\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tthree-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcontracts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\treplace\t_\tVERB\tVBP\t_\t4\tacl:relcl\t_\t_\n8\tones\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\texpired\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tAug.\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n12\t5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tcover\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n15\t41,000\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n16\tBell\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAtlantic\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\temployees\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tratification\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tfollows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t23-day\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstrike\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tPhiladelphia-based\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tCWA\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tInternational\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBrotherhood\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tElectrical\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tWorkers\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tmembers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstrike\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tagainst\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tNynex\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tamod\t_\t_\n20\tYork-based\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tregional\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tphone\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n8\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tmediation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tCWA\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\trepresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t40,000\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tNynex\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tworkers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tIBEW\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\trepresents\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n11\t20,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tworkers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmoment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tat\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n6\tleast\t_\tADJ\tJJS\t_\t5\tmwe\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\teuphoria\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\treplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tanxiety\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tWall\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tStreet\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tIndustrial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAverage\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsharply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tclose\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t2657.38\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tpanic\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tdid\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tsweep\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tworld\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tmarkets\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n24\tinvestors\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n25\tlarge\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tsmall\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n28\tseemed\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\taccept\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tFriday\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tdizzying\t_\tVERB\tVBG\t_\t35\tamod\t_\t_\n34\t190-point\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tplunge\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n36\tas\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tsharp\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tcorrection\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tnot\t_\tADV\tRB\t_\t43\tneg\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tcalamity\t_\tNOUN\tNN\t_\t39\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tnsubj\t_\t_\n2\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tbargain-hunting\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n3\tsighing\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n4\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\trelief\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tJohn\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tH.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tGutfreund\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tchairman\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tSalomon\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBrothers\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n17\ttook\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n18\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfirm\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tfloor\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tmonitor\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n26\tyesterday\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tevents\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trally\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tgained\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n5\tstrength\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t3:15\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tp.m.\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsmiled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbroadly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\tbrandished\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tunlit\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcigar\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n19\tslapped\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n20\tStanley\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tShopkorn\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\ttop\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\ttrader\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n28\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tback\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfirst\t_\tADJ\tJJ\t_\t5\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tseemed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tas\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t6\tmwe\t_\t_\n8\thistory\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tmight\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\trepeat\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n11\titself\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmorning\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tmany\t_\tADJ\tJJ\t_\t11\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnation\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tbiggest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tcompanies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\tbecause\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\twave\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tsell\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\torders\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\twas\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\toverwhelming\t_\tVERB\tVBG\t_\t22\tadvcl\t_\t_\n33\tbuyers\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t10:10\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tIndustrials\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\toff\t_\tADJ\tJJ\t_\t7\tadvmod\t_\t_\n9\t63.52\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t8\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tUAL\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\twhose\t_\tPRON\tWP$\t_\t20\tnmod:poss\t_\t_\n20\ttroubles\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\thad\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n22\tkicked\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n23\toff\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tplunge\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tstill\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n29\thad\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\topened\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tthen\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tas\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tquickly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n6\tas\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tfallen\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tturn\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\taround\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgain\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t88.12\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tpoints\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tclose\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tvolume\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\texchange\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n15\tthan\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\t416\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t13\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tfourth\t_\tADJ\tJJ\t_\t17\tappos\t_\t_\n21\thighest\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\trecord\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\thandled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\thuge\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tvolume\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\twithout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tany\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tobvious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstrain\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsharp\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcontrast\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tBlack\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMonday\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trally\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tlargely\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tconfined\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tblue-chip\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t16\tauxpass\t_\t_\n15\thard\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\thit\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n17\tduring\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tselling\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tfrenzy\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOverall\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n4\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tBoard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tthan\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tgained\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tarbitragers\t_\tNOUN\tNNS\t_\t18\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\talready\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\treeling\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tcollapse\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tUAL\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdeal\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t18\tauxpass\t_\t_\n17\tfurther\t_\tADV\tRBR\t_\t18\tadvmod\t_\t_\n18\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tyesterday\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n20\twhen\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tproposed\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n23\ttakeover\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tAMR\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tparent\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tAmerican\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAirlines\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n34\tcollapsed\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tDow\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tJones\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tTransportation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAverage\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t102.06\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tsecond-worst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdrop\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\thistory\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWorld-wide\t_\tADJ\tJJ\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tgenerally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tmanageable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tFrankfurt\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\texchange\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\thardest\t_\tADV\tRBS\t_\t7\tadvmod\t_\t_\n7\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmarkets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\twith\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tblue\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tchips\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\tthere\t_\tADV\tRB\t_\t17\tnsubj\t_\t_\n17\tfalling\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n18\t12.8\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmidday\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trally\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n13\toff\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t3.2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t12\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n18\tTokyo\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tleading\t_\tVERB\tVBG\t_\t22\tamod\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tindex\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tfell\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n24\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t1.8\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tsurprisingly\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n29\tlackluster\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\ttrading\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tmore\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n4\tthinly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\ttraded\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n6\tAsian\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarkets\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tharder\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tTokyo\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tthere\t_\tPRON\tEX\t_\t17\texpl\t_\t_\n17\twere\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n18\tno\t_\tDET\tDT\t_\t20\tneg\t_\t_\n19\tfree-fall\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdeclines\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tsmall\t_\tADJ\tJJ\t_\t2\tconj\t_\t_\n5\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tlearned\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tvaluable\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlessons\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tsince\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n15\tIn\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tage\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tcomputerized\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n22\thuge\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcorrections\t_\tNOUN\tNNS\t_\t34\tnsubjpass\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\trunups\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n26\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfew\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\thours\t_\tNOUN\tNNS\t_\t31\tnmod:poss\t_\t_\n30\t'\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\ttime\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\tmust\t_\tAUX\tMD\t_\t34\taux\t_\t_\n33\tbe\t_\tAUX\tVB\t_\t34\tauxpass\t_\t_\n34\texpected\t_\tVERB\tVBN\t_\t5\tparataxis\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t9\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tshort-term\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcataclysms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tsurvivable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tno\t_\tDET\tDT\t_\t13\tneg\t_\t_\n13\tcause\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tpanic\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tselling\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tStephen\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBoesel\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tT.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tRowe\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPrice\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tBaltimore\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tThere\t_\tPRON\tEX\t_\t19\texpl\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t15\txcomp\t_\t_\n20\tless\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tpanic\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n22\tthan\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1987\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n25\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n26\tWe\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n27\thad\t_\tAUX\tVBD\t_\t30\taux\t_\t_\n28\tbeen\t_\tVERB\tVBN\t_\t30\tcop\t_\t_\n29\tthrough\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t19\tparataxis\t_\t_\n31\tonce\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tSomerset\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tWis.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tAdrian\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSween\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t10\tnsubj\t_\t_\n10\towns\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsupplier\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tnursing-home\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tequipment\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tactive\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n25\tagrees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tlook\t_\tVERB\tVBP\t_\t13\tdep\t_\t_\n4\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t3\tnmod\t_\t_\n6\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tho-hum\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmatter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfactors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tplayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpart\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tcomeback\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tReserve\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsignaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\twillingness\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tprovide\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tliquidity\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tinterest\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tloans\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbanks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tinched\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n21\tdownward\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tearly\t_\tADJ\tJJ\t_\t20\tadvmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tday\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tForeign\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarkets\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tkicked\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\toff\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tBlack\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\thuge\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tselling\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tspree\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\toff\t_\tADJ\tJJ\t_\t16\tadvmod\t_\t_\n20\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\trelatively\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\tmodest\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tamounts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tafter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tfalling\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n6\tsharply\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tovernight\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\t139.10\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tyen\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tbounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tback\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tstrongly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t141.8\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tthus\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\teasing\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n22\tfears\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tforeigners\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n25\twould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tunload\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n27\tU.S.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\twidely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tdisseminated\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\topinion\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n6\tamong\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tmost\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\texperts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrash\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tstore\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n17\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tcalm\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinstitutions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tinto\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\twork\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n12\tready\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbuy\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tsome\t_\tDET\tDT\t_\t14\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tblue\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tchips\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tfelt\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n22\thad\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n23\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n24\tsharply\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tundervalued\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n26\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tFriday\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n3\tamid\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tall\t_\tDET\tDT\t_\t5\tdep\t_\t_\n5\tthe\t_\tDET\tDT\t_\t19\tnmod\t_\t_\n6\tbackslapping\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tsigns\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\trelief\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tyesterday\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tevents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tprofessionals\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tcautioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tthere\t_\tPRON\tEX\t_\t22\texpl\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n23\tnothing\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n24\tpresent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tcurrent\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tsystem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tprevent\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n32\tanother\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tdizzying\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tdrop\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n35\tsuch\t_\tADJ\tJJ\t_\t37\tcase\t_\t_\n36\tas\t_\tADP\tIN\t_\t35\tmwe\t_\t_\n37\tFriday\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n4\ttoo\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcomplacency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tmanager\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tBarry\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tSchrager\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tComputers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tincreasingly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tconnected\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tsecurities\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tworld-wide\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tso\t_\tADV\tRB\t_\t21\tmark\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t9\tmwe\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tbuying\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tselling\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\twave\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n20\toften\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tpassed\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n22\taround\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tglobe\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\teverywhere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tnervously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\teyed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\topening\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tTokyo\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tNikkei\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\taverage\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\t225\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n18\tblue-chip\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tgot\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n21\toff\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\trocky\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tstart\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taverage\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tplunged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tadvmod\t_\t_\n5\t600\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tpoints\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\t1.7\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tselling\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\twave\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tno\t_\tDET\tDT\t_\t7\tneg\t_\t_\n7\tconviction\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tfirst\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsurged\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n14\tupward\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t200\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tthen\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tdrifted\t_\tVERB\tVBD\t_\t13\tdep\t_\t_\n21\tlower\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n23\tclosing\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n24\tdown\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t647\t_\tNUM\tCD\t_\t24\tnmod:npmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tmost\t_\tADJ\tJJS\t_\t12\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tJapan\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tchose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsit\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcalamity\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t9\tcase\t_\t_\n2\tMerrill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tTokyo\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\troom\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tadvmod\t_\t_\n12\t40\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\ttraders\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tassistants\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tsat\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tquietly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\torders\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tprocess\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tClients\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tall\t_\tDET\tDT\t_\t5\tdep\t_\t_\n5\tstaying\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tout\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\tMerrill\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\ttrader\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trelative\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcalm\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tTokyo\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tlittle\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcomfort\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\topening\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tup\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tEurope\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFrankfurt\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\topening\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tdelayed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\thalf\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thour\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n9\tbecause\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tof\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrush\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsell\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\torders\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbeginning\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tchaotic\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n8\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tNigel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tLongley\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbroker\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tCommerzbank\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tview\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tfloor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tAmerican\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tfirm\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tJefferies\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t&\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tCo.\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\talso\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n22\ttroubling\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tscreen\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tdisplaying\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\t100\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tblue-chip\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tcolors\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n9\teach\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tone\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n11\tred\t_\tNOUN\tNN\t_\t8\txcomp\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tprice\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\tfalling\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tscreen\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsea\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tred\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsee\t_\tVERB\tVBP\t_\t14\tdep\t_\t_\n4\tconcern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tsee\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n11\tpanic\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tJ.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tFrancis\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPalamara\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tYorker\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n22\twho\t_\tPRON\tWP\t_\t23\tnsubj\t_\t_\n23\truns\t_\tVERB\tVBZ\t_\t21\tacl:relcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t15-trader\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\toffice\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tLondon\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tblue-chip\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tturned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tup\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tbefore\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t8\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ta.m\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\tsending\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n18\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tencouraging\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmessage\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tWall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStreet\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\topened\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t9:30\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\ta.m.\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tEDT\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tsharply\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tmarkets\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tChicago\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\topened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tlevel\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tsuggesting\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tDow\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tfall\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t60\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tpoints\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tsell\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\torders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpiled\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\thalf\t_\tDET\tPDT\t_\t12\tnummod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tDow\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t9:45\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tindustrial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taverage\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tdropped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\t27\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tpoints\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\t10\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\ta.m.\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t49\t_\tNUM\tCD\t_\t7\tnmod:npmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTen\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tlater\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tbottom\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t-\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n10\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\t63.52\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tanother\t_\tDET\tDT\t_\t15\tadvmod\t_\t_\n15\t2.5\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tshortly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tbefore\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tthen\t_\tADV\tRB\t_\t13\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n6\tsome\t_\tDET\tDT\t_\t13\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tWall\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tStreet\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tsharpest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsensed\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tturn\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tthing\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tcaught\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n7\tmy\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\teye\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tencouraging\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t19\tdep\t_\t_\n13\tTreasury\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbonds\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n16\toff\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tAustin\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tGeorge\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\thead\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\ttrading\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n27\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tT.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tRowe\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tPrice\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tmeant\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tpeople\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\trunning\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\tpell-mell\t_\tNOUN\tNN\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsafety\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tbonds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tafter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\t10\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\ta.m.\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tMajor\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tMarket\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tIndex\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\tChicago\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tTrade\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tfutures\t_\tNOUN\tNNS\t_\t9\tappos\t_\t_\n17\tcontract\t_\tVERB\tVB\t_\t16\tdep\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tdesigned\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tmimic\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tDJIA\t_\tPROPN\tNNP\t_\t23\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n27\texploded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tupward\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tbuoyed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tupturn\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tMMI\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n13\talso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tstarted\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\trecovery\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tTuesday\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n22\tfollowing\t_\tNOUN\tNN\t_\t24\tdep\t_\t_\n23\tBlack\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMonday\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tMMI\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgone\t_\tVERB\tVBN\t_\t9\tdep\t_\t_\n6\tbetter\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttrader\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tLondon\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\toffice\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tShearson\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tLehman\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tHutton\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tShearson\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tLondon\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\ttrading\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\troom\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\twild\t_\tADJ\tJJ\t_\t6\txcomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tout\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tas\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n6\tReuters\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tQuotron\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tTelerate\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\tscreens\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tposted\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tever-narrowing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tloss\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tminutes\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n5\tlater\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tsuddenly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\trebounded\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tday\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tRally\t_\tVERB\tVB\t_\t9\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\trally\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\trally\t_\tVERB\tVB\t_\t2\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tshouted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tShearson\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tAndy\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tRosen\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tpanic\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbuying\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tblue-chip\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tstocks\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n4\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tPhilip\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMorris\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tGeneral\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMotors\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tProctor\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tGamble\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\trally\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tJapanese\t_\tPROPN\tNNP\t_\t3\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\theavy\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbuyers\t_\tNOUN\tNNS\t_\t3\txcomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGerman\t_\tPROPN\tNNP\t_\t4\tamod\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tDutch\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\treportedly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tloaded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tKellogg\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCo\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsay\t_\tVERB\tVB\t_\t11\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tcorporations\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tshare\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tbuy-back\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tprograms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tkicked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tinto\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\thigh\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\ttriggering\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n17\tgains\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tamong\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tissues\t_\tNOUN\tNNS\t_\t25\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tAlcan\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAluminium\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tMcDonald\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tWalt\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tDisney\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\tone\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbiggest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n11\tsell-order\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\timbalances\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n17\tone\t_\tNUM\tCD\t_\t6\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tseven\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tstocks\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\thalted\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\tnever\t_\tADV\tRB\t_\t26\tneg\t_\t_\n26\treopened\t_\tVERB\tVBD\t_\t22\tconj\t_\t_\n27\tthat\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tday\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n30\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tyesterday\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n32\tlate\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n33\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\t114.5\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n36\tdown\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n37\t8.5\t_\tNUM\tCD\t_\t36\tnmod:npmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthen\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tsuddenly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tburst\t_\tVERB\tVBD\t_\t24\tccomp\t_\t_\n6\tupward\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t7.5\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tGoldman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tSachs\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tstepped\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n15\tin\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\tbought\t_\tVERB\tVBD\t_\t14\tconj\t_\t_\n18\talmost\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\tevery\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\toffer\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\ttraders\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t10:25\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tturned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tup\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tday\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tprompting\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n14\tcheers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttrading\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n17\tdesks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\texchange\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tfloors\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspecialists\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcry\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tPull\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n11\tyour\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\toffers\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tmeaning\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tspecialists\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tsoon\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tget\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\thigher\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tshares\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tbedlam\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tupside\t_\tADV\tRB\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tspecialist\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tWhat\t_\tPRON\tWP\t_\t4\tdobj\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t10\tcsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\treal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\told-fashioned\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\trally\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttechnical\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tstrength\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tspurred\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tbuying\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tblack\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tboxes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n15\tcomputer\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprograms\t_\tNOUN\tNNS\t_\t12\tdep\t_\t_\n17\tdesigned\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\ttrigger\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tlarge\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpurchases\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tbullish\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tperiods\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tperhaps\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tBatterymarch\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tDean\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tLeBaron\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLeBaron\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tmanages\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n7\t10\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tWe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tturned\t_\tVERB\tVBD\t_\t10\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttrading\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tsystem\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\ton\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tdid\t_\tVERB\tVBD\t_\t14\tconj\t_\t_\n23\twhatever\t_\tDET\tWDT\t_\t28\tdobj\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubjpass\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t26\tauxpass\t_\t_\n26\tprogrammed\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tdo\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n2\twhat\t_\tPRON\tWP\t_\t6\tdobj\t_\t_\n3\tstocks\t_\tVERB\tVBZ\t_\t2\tdep\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tbought\t_\tVERB\tVBD\t_\t1\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tmoney\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmanager\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\tI\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n15\tdo\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tknow\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\teverybody\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tmoney\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcarnage\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tChicago\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tBoard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tOptions\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\toptions\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n18\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t28\tnsubjpass\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tS&P\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\t100\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tstock-index\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\toptions\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\tauxpass\t_\t_\n28\thalted\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmakers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\t100\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n8\tindex\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\toptions\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbullish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpositions\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshutdown\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tcame\t_\tVERB\tVBD\t_\t23\tadvcl\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\twere\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tfrozen\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n24\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\thuge\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tlosses\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweekend\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tclearing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfirms\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tChicago\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmakers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tget\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n14\tout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tpositions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcost\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tMonday\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tabsolutely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tkilled\t_\tVERB\tVBN\t_\t10\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tslaughtered\t_\tVERB\tVBN\t_\t5\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n12\tChicago-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\toptions\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\ttrader\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttest\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\trally\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\t2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tp.m.\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tDow\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t2600\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tup\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\t31\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tpoints\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tday\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tClough\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tstrategist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMerrill\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tLynch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tbargain\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\thunting\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\texplained\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tDow\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tstrength\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tup\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tthat\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpoint\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n24\tthat\t_\tDET\tDT\t_\t29\tmark\t_\t_\n25\tmany\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tprofessionals\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\twere\t_\tAUX\tVBD\t_\t29\taux\t_\t_\n29\tanticipating\t_\tVERB\tVBG\t_\t14\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdrop\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tDow\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tannouncement\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n6\treal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\testate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmagnate\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tsometime\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\traider\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tDonald\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tTrump\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\twithdrawing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n16\this\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\toffer\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tAMR\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tmight\t_\tAUX\tMD\t_\t24\taux\t_\t_\n22\thave\t_\tAUX\tVB\t_\t24\taux\t_\t_\n23\tbeen\t_\tAUX\tVBN\t_\t24\tauxpass\t_\t_\n24\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\trattle\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\ttraders\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\trally\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tonly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tpaused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tminutes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\tthen\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tsteamed\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n14\tforward\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tinstitutions\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tresumed\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n18\tbuying\t_\tVERB\tVBG\t_\t17\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tminutes\t_\tNOUN\tNNS\t_\t3\tnmod:tmod\t_\t_\n5\tafter\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\treaching\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\thigh\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tday\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t8\tdep\t_\t_\n\n1\tAcross\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcountry\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpeople\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tevents\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tstride\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tremaining\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n16\tgenerally\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tuneasy\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n18\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tgeneral\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tJames\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNorman\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmayor\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tAva\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tMo.\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tI\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n14\tdo\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tinvest\t_\tVERB\tVB\t_\t1\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tmuch\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tprefer\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tmoney\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tI\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tput\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n8\tmy\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\thands\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tMayor\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNorman\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tfound\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tperformance\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n10\treassuring\t_\tVERB\tVBG\t_\t4\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t16\tparataxis\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tuneasy\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\thalf\t_\tDET\tPDT\t_\t6\tdet:predet\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\texperts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsaying\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n8\tone\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tthing\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\thalf\t_\tNOUN\tNN\t_\t13\tdep\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcourse\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\teconomy\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRalph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHolzfaster\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfarmer\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tfarm-supply\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tstore\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\toperator\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOgallala\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tNeb.\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tlast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdays\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\tevents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n24\tIf\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tanything\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n27\tcomes\t_\tVERB\tVBZ\t_\t34\tadvcl\t_\t_\n28\tout\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tthis\t_\tPRON\tDT\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n33\tmight\t_\tAUX\tMD\t_\t34\taux\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n35\tthat\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n36\tit\t_\tPRON\tPRP\t_\t37\tnsubj\t_\t_\n37\tputs\t_\tVERB\tVBZ\t_\t34\tccomp\t_\t_\n38\tsome\t_\tDET\tDT\t_\t37\tdobj\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tthese\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tLBOs\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n42\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tskids\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tGordon\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tFines\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmanager\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tIDS\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tFinancial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tServices\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tMinneapolis\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n16\tYou\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n17\t're\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n18\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\troller\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcoaster\t_\tNOUN\tNN\t_\t1\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tthat\t_\tPRON\tDT\t_\t26\tnsubj\t_\t_\n25\tmay\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tlast\t_\tVERB\tVB\t_\t21\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpublic\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tcautious\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSkipper\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tBellevue\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tWash.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsigned\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tdefinitive\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tmerger\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tagreement\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tfor\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n17\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tNational\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tPizza\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tunit\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tacquire\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t90.6\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tSkipper\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tInc.\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n32\tdoes\t_\tAUX\tVBZ\t_\t34\taux\t_\t_\n33\tn't\t_\tPART\tRB\t_\t34\tneg\t_\t_\n34\town\t_\tVERB\tVB\t_\t26\tacl:relcl\t_\t_\n35\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t37\tdep\t_\t_\n37\t11.50\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n38\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tshare\t_\tNOUN\tNN\t_\t37\tnmod:npmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n41\tor\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n42\tabout\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n43\t$\t_\tSYM\t$\t_\t37\tconj\t_\t_\n44\t28.1\t_\tNUM\tCD\t_\t45\tcompound\t_\t_\n45\tmillion\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tNP\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAcquisition\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tPizza\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tunit\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tbegin\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\ttender\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\toffer\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tSkipper\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n22\tconditioned\t_\tVERB\tVBN\t_\t26\tcase\t_\t_\n23\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tleast\t_\tADJ\tJJS\t_\t26\tnmod:npmod\t_\t_\n26\ttwo-thirds\t_\tNOUN\tNNS\t_\t12\tadvcl\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tSkipper\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tshares\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\tbeing\t_\tAUX\tVBG\t_\t32\tauxpass\t_\t_\n32\ttendered\t_\tVERB\tVBN\t_\t30\tacl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tPittsburg\t_\tPROPN\tNNP\t_\t3\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\tKan.-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tNational\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPizza\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttransaction\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tfinanced\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n12\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n14\trevolving\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcredit\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tagreement\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tnational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tover-the-counter\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tSkipper\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t50\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t11\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSkipper\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmerger\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\thelp\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tfinance\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n9\tremodeling\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tfuture\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tgrowth\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSkipper\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tturned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tdown\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n8\t10-a-share\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n9\tproposal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tNational\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPizza\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\tPizza\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tHut\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tInc.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tquestioned\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n18\twhether\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpurchase\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tviolate\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n23\tNational\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tPizza\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tfranchise\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tagreements\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNational\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPizza\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsettled\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tdispute\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tPizza\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tHut\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tallowing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tpurchase\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tSkipper\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tresults\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tbegan\t_\tVERB\tVBD\t_\t18\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tturn\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\taround\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\tpermitting\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\thigher\t_\tADJ\tJJR\t_\t14\tamod\t_\t_\n14\toffer\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tNational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPizza\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t12\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tweeks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tSept.\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\t3\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tSkipper\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t361,000\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n19\t13\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n24\tcompared\t_\tVERB\tVBN\t_\t28\tcase\t_\t_\n25\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tnet\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tloss\t_\tNOUN\tNN\t_\t11\tadvcl\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tyear\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n31\tearlier\t_\tADV\tRBR\t_\t28\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t3\tcop\t_\t_\n3\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n4\t19.9\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEAST\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tGERMANS\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tRALLIED\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\treportedly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tsought\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n8\tHonecker\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\touster\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\twhat\t_\tPRON\tWP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tconsidered\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlargest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tprotest\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n8\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tCommunist\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstate\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\t40-year\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thistory\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tleast\t_\tADJ\tJJS\t_\t18\tnmod:npmod\t_\t_\n18\t120,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tdemonstrators\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tmarched\t_\tVERB\tVBN\t_\t36\tadvcl\t_\t_\n21\tthrough\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tsouthern\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcity\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tLeipzig\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tpress\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n29\tdemands\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tdemocratic\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tfreedoms\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n34\topposition\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tactivists\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n36\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tPolice\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tintervene\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfirst\t_\tADJ\tJJ\t_\t20\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t9\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t7\tmwe\t_\t_\n9\t1,300\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tEast\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tGermans\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\ttrying\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tflee\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tWest\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tPoland\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\trenounced\t_\tVERB\tVBD\t_\t28\tadvcl\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tcitizenship\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tWest\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tGerman\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnewspaper\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n28\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n30\tregional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tCommunist\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tofficials\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n33\tdemanded\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdismissal\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\thard-line\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tleader\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tHonecker\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tSecretary\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tState\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tBaker\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tforeign\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpolicy\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tspeech\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\treunification\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tGermany\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tsaying\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n24\tlegitimate\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tright\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tGerman\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpeople\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tGorbachev\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tblamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tSoviet\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tUnion\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tpress\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n8\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tcontributing\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tnation\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tmounting\t_\tVERB\tVBG\t_\t15\tamod\t_\t_\n15\tproblems\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmeeting\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tKremlin\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tleader\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tcomplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\trecent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tarticles\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\traised\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpossiblity\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tcivil\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tunrest\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n22\taccused\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmedia\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tof\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tfueling\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n27\tpanic\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n28\tbuying\t_\tVERB\tVBG\t_\t27\tamod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tgoods\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\tby\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\tpublishing\t_\tVERB\tVBG\t_\t26\tadvcl\t_\t_\n33\tstories\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tabout\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\timpending\t_\tVERB\tVBG\t_\t36\tamod\t_\t_\n36\tshortages\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHouse-Senate\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tconferees\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpermanent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tsmoking\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tban\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tdomestic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tairline\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\troutes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\twithin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcontinental\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tflights\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tless\t_\tADJ\tJJR\t_\t22\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n22\tsix\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\thours\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tAlaska\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tHawaii\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcurbs\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcover\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tall\t_\tDET\tDT\t_\t4\tdobj\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpercentage\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tflights\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\trepresent\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\texpansion\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tcurrent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tban\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tflights\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tless\t_\tADJ\tJJR\t_\t26\tadvmod\t_\t_\n25\tthan\t_\tADP\tIN\t_\t24\tmwe\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\thours\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tE.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWallach\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tsentenced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tjudge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tYork\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tsix\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tyears\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprison\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\tfined\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t250,000\t_\tNUM\tCD\t_\t19\tdobj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tracketeering\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tconviction\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tWedtech\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tscandal\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWallach\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tassociate\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tex-Attorney\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tGeneral\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMeese\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\tauxpass\t_\t_\n11\tfound\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tguilty\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tof\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\ttaking\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t425,000\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tillegal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpayoffs\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tnow-defunct\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tdefense\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tcontractor\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNASA\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tresumed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcountdown\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tlaunch\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tspace\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tshuttle\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tAtlantis\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfederal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tappeals\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tcourt\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tWashington\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\tdismissed\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlawsuit\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tanti-nuclear\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tgroups\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tdelay\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tflight\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tbecause\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\tplutonium-powered\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\tGalileo\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tspace\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tprobe\t_\tNOUN\tNN\t_\t38\tnsubj\t_\t_\n38\twas\t_\tVERB\tVBD\t_\t29\tadvcl\t_\t_\n39\taboard\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tspace\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tagency\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\tdid\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\texpect\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\tweather\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tprotesters\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tblock\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tliftoff\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tpreparing\t_\tVERB\tVBG\t_\t21\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\textend\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tban\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tfederal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfinancing\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tresearch\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tusing\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tfetal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttissue\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tgovernment\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsources\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\ttemporary\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprohibition\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\timposed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tMarch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t1988\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tanti-abortion\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroups\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\tauxpass\t_\t_\n5\topposed\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tsuch\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tresearch\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tscientists\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttransplanting\t_\tVERB\tVBG\t_\t18\tcsubj\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttissue\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n18\teffective\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n19\tin\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\ttreating\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tdiabetes\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDelegates\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\t91\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tnations\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tendorsed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tban\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tworld\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tivory\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttrade\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tattempt\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\trescue\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tendangered\t_\tVERB\tVBN\t_\t19\tamod\t_\t_\n19\telephant\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\textinction\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFive\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tAfrican\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tnations\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tcontinue\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tselling\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tvaluable\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttusks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMubarak\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\treconciliation\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttalks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tGadhafi\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tEgyptian\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tresort\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tMersa\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tMetruh\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tLibyan\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tleader\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttrip\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tEgypt\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t16\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tyears\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\treduction\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tformalities\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttravel\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tshow\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n14\tany\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\treal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsigns\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tof\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tresuming\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tfull\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdiplomatic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tties\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tEgyptian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tvisit\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tLibya\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tresume\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttalks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSeoul\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tPyongyang\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttentative\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tallow\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tvisits\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tfamilies\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tdivided\t_\tVERB\tVBN\t_\t17\tamod\t_\t_\n16\tKorean\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tpeninsula\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfamily\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\treunions\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsecond\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tsince\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t1945\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDifferences\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tremained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tbetween\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tNorth\t_\tADJ\tJJ\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSouth\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tKorean\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tgovernments\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\thowever\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tover\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tconditions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFreed\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n2\tblack\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tnationalists\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tresumed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tpolitical\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tactivity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tSouth\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAfrica\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tvowed\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tfight\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tapartheid\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\traising\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n18\tfears\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tpossible\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\twhite\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbacklash\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnation\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tmain\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\twhite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\topposition\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tparty\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\trelease\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n14\tSunday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\teight\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n17\tblack\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tpolitical\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprisoners\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\trisked\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n21\tbringing\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n22\tchaos\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\teventual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tblack\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tMarxist\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\trule\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tnation\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHouse\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tBush\t_\tPROPN\tNNP\t_\t9\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n8\tfully\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsatisfied\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tCIA\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tDirector\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tWebster\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tintelligence\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tagency\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tperformance\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n21\tduring\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n23\tOct.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\t3\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n25\tfailed\t_\tVERB\tVBN\t_\t26\tamod\t_\t_\n26\tcoup\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tPanama\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tWashington\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPost\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tunidentified\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tsenior\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tofficials\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t11\tauxpass\t_\t_\n11\tfrustrated\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n12\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tWebster\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tlow-profile\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tactivities\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tduring\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinsurrection\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\twanted\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n22\thim\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\treplaced\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPoland\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tlegislature\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tapproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tlimits\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tautomatic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\twage\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tincreases\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\twithout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tspecial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tprovisions\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tfood\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tprice\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trises\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tvote\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttest\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tSolidarity-led\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tresolve\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tproceed\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tharsh\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\teconomic-restructuring\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprogram\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNorway\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tKing\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tOlav\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tV\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tinstalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tthree-party\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnon-Socialist\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n12\tGro\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHarlem\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBrundtland\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tthree-year-old\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tLabor\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tregime\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\trelinquished\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n20\tpower\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t19-member\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcabinet\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tPrime\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tMinister\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJan\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSyse\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\tacknowledged\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\tdifficult\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsituation\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n19\tsince\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcoalition\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tcontrols\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n23\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\t62\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tseats\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tOslo\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\t165-member\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tlegislature\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEl\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSalvador\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tgovernment\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tround\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\ttalks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcountry\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tleftist\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trebels\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tan\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\teffort\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tend\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tdecade-long\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tcivil\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\twar\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tguerrillas\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tpresent\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcease-fire\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tproposal\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tduring\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnegotiations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tCosta\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tRica\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tincludes\t_\tVERB\tVBZ\t_\t7\tdep\t_\t_\n19\tconstitutional\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\teconomic\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tchanges\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tState\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDepartment\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tpossibility\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tsome\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tNicaraguan\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\trebels\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\tselling\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tU.S.-supplied\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tarms\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tSalvadoran\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tguerrillas\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n25\tinsisted\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n28\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n29\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\torganized\t_\tVERB\tVBN\t_\t31\tamod\t_\t_\n31\teffort\t_\tNOUN\tNN\t_\t25\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tSecretary\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tState\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tBaker\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tcomplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tU.N.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\taide\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t15\tnsubj\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tweek\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n15\ttold\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tContras\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdisband\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tpart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tregional\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tpeace\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\taccord\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tCornel\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tWilde\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t74\t_\tNUM\tCD\t_\t4\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tactor\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tdirector\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tLos\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAngeles\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tleukemia\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n18\t...\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDanilo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKis\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t54\t_\tNUM\tCD\t_\t2\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tYugoslav-born\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tnovelist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tessayist\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tSunday\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tParis\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcancer\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBritish\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tretail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tsales\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tvolume\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t29\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tprovisional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\t0.4\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tAugust\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n16\tup\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\t2.2\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tSeptember\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n21\t1988\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tTrade\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tIndustry\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthree\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tretail\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tvolume\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tdown\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n14\t0.5\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tprevious\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tthree\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t12\tadvmod\t_\t_\n22\tup\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\t1.2\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\t%\t_\tSYM\tNN\t_\t22\tnmod:npmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n28\tearlier\t_\tADV\tRBR\t_\t22\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tChicago\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tinvestor\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\tWilliam\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tFarley\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsell\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthree\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tdivisions\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tCluett\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPeabody\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n18\t600\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tBidermann\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tS.A.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\tclosely\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\theld\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n27\tclothing\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tmaker\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n29\tbased\t_\tVERB\tVBN\t_\t28\tacl\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tParis\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tafter\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n3\tcompleting\t_\tVERB\tVBG\t_\t25\tadvcl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n6\t1.56\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tacquisition\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tWest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tApril\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tFarley\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tholding\t_\tVERB\tVBG\t_\t20\tamod\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tFarley\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc.\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\taux\t_\t_\n28\tconsidering\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tsale\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tCluett\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n35\tleading\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n36\tshirt\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tmaker\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tone\t_\tNUM\tCD\t_\t37\tconj\t_\t_\n40\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n41\tWest\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t45\tnmod:poss\t_\t_\n43\t's\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tbiggest\t_\tADJ\tJJS\t_\t45\tamod\t_\t_\n45\tunits\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tIncluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsale\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t1\tauxpass\t_\t_\n6\tCluett\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tunits\t_\tNOUN\tNNS\t_\t1\tnsubjpass\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tmake\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n10\tmen\t_\tNOUN\tNNS\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tshirts\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tArrow\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tname\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tsocks\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n19\tunder\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tGold\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tToe\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tname\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n25\tmenswear\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n26\tthrough\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tSchoeneman\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tdivision\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tagreement\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tBidermann\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\treceipt\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tfinancing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n16\tregulatory\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t16\tconj\t_\t_\n19\tapprovals\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsale\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t9\tauxpass\t_\t_\n9\tconcluded\t_\tVERB\tVBN\t_\t6\txcomp\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tNovember\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFarley\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tCluett\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tfour\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tmain\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdivisions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\tplus\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n17\tanticipated\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n19\tWest\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tasset\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tsales\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tDecember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n26\tshould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tbring\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n28\tin\t_\tADP\tRP\t_\t27\tcompound:prt\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\ttotal\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tabout\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t30\tnmod\t_\t_\n34\t700\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\telaborate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tasset\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsales\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tbeing\t_\tAUX\tVBG\t_\t10\tauxpass\t_\t_\n10\tconsidered\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFarley\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfollowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsimilar\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpattern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tacquired\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n10\tNorthwest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tIndustries\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthen\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tsold\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n16\tmuch\t_\tADJ\tJJ\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tassets\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tkept\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFruit\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tLoom\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tunderwear\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmaker\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n13\tthat\t_\tADP\tIN\t_\t16\tdobj\t_\t_\n14\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tstill\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tcontrols\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tserves\t_\tVERB\tVBZ\t_\t16\tconj\t_\t_\n19\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tchairman\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tchief\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\texecutive\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCluett\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tindependent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tuntil\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tWest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tacquired\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n13\t375\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tcash\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1986\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfiscal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tSept.\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\t30\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\t1988\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tCluett\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\toperating\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tprofit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n17\t37\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsales\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t757\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBidermann\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tclothes\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tunder\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tvarious\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tlabels\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tincluding\t_\tVERB\tVBG\t_\t11\tcase\t_\t_\n9\tYves\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tSaint\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tLaurent\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tBill\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tRobinson\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmen\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tRalph\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tLauren\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\twomen\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t400\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1988\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tcomposite\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tPoint-Pepperell\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t25\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t53.875\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBritain\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tArrow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPLC\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tintends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tchange\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tname\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tManpower\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPLC\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\twrite\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n16\toff\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tchunk\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tnearly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t18\tnmod\t_\t_\n23\t1.2\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tbillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\twill\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\trealized\t_\tVERB\tVBN\t_\t27\tacl\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\ttakeover\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tU.S.-based\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tManpower\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tInc\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tChairman\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMitchell\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tFromstein\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tinterview\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tsteps\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n14\tmay\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tprelude\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tmark\t_\t_\n19\treincorporating\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tworld\t_\tNOUN\tNN\t_\t25\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tbiggest\t_\tADJ\tJJS\t_\t25\tamod\t_\t_\n24\temployment-services\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tgroup\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFromstein\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tplanned\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\tsteps\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n9\twithin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmonths\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tBlue\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tArrow\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tposted\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\t2.5\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t21\tamod\t_\t_\n21\tdrop\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tthird-quarter\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tpretax\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tearnings\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tname\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tchange\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tgood\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\twill\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\twrite-off\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tsolidify\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n11\tBlue\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tArrow\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tdominance\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\ttemporary-help\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n21\tgive\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t21\tiobj\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tmore\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\timage\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n27\tas\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tinvestors\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\tturn\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n31\tjittery\t_\tADJ\tJJ\t_\t30\txcomp\t_\t_\n32\tabout\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tforeign\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tstocks\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\tafter\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tFriday\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tmarket\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tplunge\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tholders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\town\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t7\tadvmod\t_\t_\n6\tthan\t_\tADP\tIN\t_\t5\tmwe\t_\t_\n7\t60\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tBlue\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tArrow\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tcompared\t_\tVERB\tVBN\t_\t15\tcase\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t9\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t4\tadvcl\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tJanuary\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trecognition\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tManpower\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tname\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n14\tinfinitely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tstronger\t_\tADJ\tJJR\t_\t23\tdep\t_\t_\n16\tthan\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tBlue\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tArrow\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tFromstein\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmoves\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\terase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tshareholders\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tperception\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tBlue\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tArrow\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tturmoil\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tfurther\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n4\treinforces\t_\tVERB\tVBZ\t_\t18\tdep\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tconcept\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tBlue\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tArrow\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tthing\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpast\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tDoug\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tArthur\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tanalyst\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tKidder\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tPeabody\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tCo.\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tNew\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tYork\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tproposed\t_\tVERB\tVBN\t_\t3\tamod\t_\t_\n3\tchanges\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n5\tall\t_\tDET\tDT\t_\t3\tdep\t_\t_\n6\tmake\t_\tVERB\tVBP\t_\t16\tdep\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlot\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tsense\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tme\t_\tPRON\tPRP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\twidely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpublicized\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n5\tboardroom\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcoup\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tFromstein\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tousted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tAntony\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tBerry\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tBlue\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tArrow\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tchief\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\texecutive\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tJanuary\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmonth\t_\tNOUN\tNN\t_\t27\tdep\t_\t_\n23\tafter\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBerry\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n26\thad\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n27\tforced\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n28\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tFromstein\t_\tPROPN\tNNP\t_\t27\tdobj\t_\t_\n30\tout\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t36\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n33\t$\t_\tSYM\t$\t_\t36\tamod\t_\t_\n34\t1\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n35\tmillion-a-year\t_\tADJ\tJJ\t_\t33\tdep\t_\t_\n36\tchief\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tMilwaukee-based\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tManpower\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFromstein\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsolidified\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tcontrol\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tApril\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\tby\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\ttaking\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n10\tover\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBerry\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tchairman\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tArrow\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\ttumult\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n8\tover\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\tyet\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBritish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgovernment\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\tinvestigating\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n17\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n18\tdisputed\t_\tVERB\tVBN\t_\t27\tamod\t_\t_\n19\t#\t_\tSYM\t#\t_\t21\tcompound\t_\t_\n20\t25\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t27\tdep\t_\t_\n22\t-LRB-\t_\tPUNCT\t-LRB-\t_\t23\tpunct\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n24\t39.4\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t-RRB-\t_\tPUNCT\t-RRB-\t_\t23\tpunct\t_\t_\n27\tloan\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n28\twhich\t_\tPRON\tWDT\t_\t32\tdobj\t_\t_\n29\tMr.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tFromstein\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n31\thas\t_\tAUX\tVBZ\t_\t32\taux\t_\t_\n32\tsaid\t_\tVERB\tVBD\t_\t27\tacl:relcl\t_\t_\n33\twas\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n34\tmade\t_\tVERB\tVBN\t_\t32\tccomp\t_\t_\n35\tunder\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tMr.\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tBerry\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tdirection\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpull\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\toff\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t12\tamod\t_\t_\n10\t1.34\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\ttakeover\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tManpower\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n17\tlargely\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n18\tbecause\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n19\tdifferent\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n20\tBritish\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tAmerican\t_\tADJ\tJJ\t_\t20\tconj\t_\t_\n23\taccounting\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tstandards\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tproduce\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n26\thigher\t_\tADJ\tJJR\t_\t28\tamod\t_\t_\n27\treported\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\tearnings\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tBritish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcompanies\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tBritish\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trules\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tBlue\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tArrow\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\twrite\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\toff\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tonce\t_\tADV\tRB\t_\t10\tnmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n16\t1.15\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\twill\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tarising\t_\tVERB\tVBG\t_\t15\tacl\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpurchase\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tU.S.-based\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t9\tccomp\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tBlue\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tArrow\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tamortize\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twill\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n17\tmany\t_\tADJ\tJJ\t_\t19\tadvmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n19\t40\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n22\tcreating\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tcontinuing\t_\tVERB\tVBG\t_\t25\tamod\t_\t_\n25\tdrag\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\treported\t_\tVERB\tVBN\t_\t28\tamod\t_\t_\n28\tearnings\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tGood\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\twill\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\texcess\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcost\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tacquired\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\toperating\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n14\tunit\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tassets\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n17\tover\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tcurrent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tfair\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tvalue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthose\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tassets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n6\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\theld\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tBlue\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tArrow\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\treports\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n17\ttwo\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tways\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tbased\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tboth\t_\tDET\tDT\t_\t23\tcc:preconj\t_\t_\n23\tU.K.\t_\tPROPN\tNNP\t_\t14\tadvcl\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\taccounting\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tstandards\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tOur\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tbalance\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tsheets\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tlook\t_\tVERB\tVBP\t_\t17\tdep\t_\t_\n6\tlike\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tcame\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tAlice\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\twonderland\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tFromstein\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBritish\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tversion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thandful\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tpounds\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tnet\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tworth\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n14\tfollowing\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\twrite-off\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\twill\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tAmerican\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tversion\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\treflects\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n28\t$\t_\tSYM\t$\t_\t26\tdobj\t_\t_\n29\t1\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tbillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tnet\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tworth\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tbecause\t_\tSCONJ\tIN\t_\t45\tmark\t_\t_\n35\talmost\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tnone\t_\tNOUN\tNN\t_\t45\tnsubjpass\t_\t_\n37\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\t-LCB-\t_\tPUNCT\t-LRB-\t_\t41\tpunct\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tgood\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\twill\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n42\t-RCB-\t_\tPUNCT\t-RRB-\t_\t41\tpunct\t_\t_\n43\thas\t_\tAUX\tVBZ\t_\t45\taux\t_\t_\n44\tbeen\t_\tAUX\tVBN\t_\t45\tauxpass\t_\t_\n45\twritten\t_\tVERB\tVBN\t_\t26\tadvcl\t_\t_\n46\toff\t_\tADP\tRP\t_\t45\tcompound:prt\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFromstein\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\thopes\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\teradicate\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tsome\t_\tDET\tDT\t_\t7\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgood\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\twill\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tleft\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tBlue\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tArrow\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tbooks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tone\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tfell\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tswoop\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tspecify\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n29\thow\t_\tADV\tWRB\t_\t30\tadvmod\t_\t_\n30\tmuch\t_\tADV\tRB\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tclose\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tBlue\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tArrow\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsuggested\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twrite-down\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\trepresent\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsizable\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchunk\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\twith\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\texecutives\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tclaiming\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n18\tprior\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmanagement\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\toverstated\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\textent\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tManpower\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\twill\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\talong\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\treturn\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tManpower\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tname\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tbolster\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tprospects\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tpossibly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdifficult\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttimes\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ttemporary\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thelp\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnumber\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\ttemporary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tworkers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfell\t_\tVERB\tVBD\t_\t27\tccomp\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t1\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\t12\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\tending\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tAug.\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n17\t31\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tafter\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tsliding\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n21\tnearly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\t3.5\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t20\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tJuly\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tKidder\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tPeabody\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tMr.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tArthur\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tBlue\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArrow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tblamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpretax\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tprofit\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tdrop\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tended\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tJuly\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t31\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\tpartly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tslower\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tgrowth\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tnon-Manpower\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tunits\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tBritain\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tpretax\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprofit\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\t#\t_\tSYM\t#\t_\t9\tcompound\t_\t_\n8\t18.49\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\t#\t_\tSYM\t#\t_\t16\tcompound\t_\t_\n15\t18.98\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tearlier\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSim\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tcredited\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\ttransforming\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n10\tApplied\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tPower\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tunderachiever\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\tinto\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfeisty\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tplayer\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tglobal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\thydraulic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\ttools\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n28\thopes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tguide\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tsimilar\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tturnaround\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n34\tat\t_\tADP\tIN\t_\t39\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tcompany\t_\tNOUN\tNN\t_\t39\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tlatest\t_\tADJ\tJJS\t_\t39\tamod\t_\t_\n39\tacquisition\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tBarry\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n42\tWright\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tCorp\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n2\t45-year-old\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n3\tformer\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n4\tGeneral\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tElectric\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tCo.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\texecutive\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tfigures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\teasier\t_\tADJ\tJJR\t_\t8\tccomp\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\ttime\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\twhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tapplauding\t_\tVERB\tVBG\t_\t9\tdep\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tacquisition\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tApplied\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\texecutive\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tfaces\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttough\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchallenge\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tin\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\tintegrating\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttwo\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBarry\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWright\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tacquired\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tApplied\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t147\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tcomputer-room\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tequipment\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tvibration-control\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsystems\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tWatertown\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tMass.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tsales\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n10\tbeen\t_\tVERB\tVBN\t_\t11\tcop\t_\t_\n11\tdormant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tprofits\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tdropped\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tearnings\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n7\t1.3\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tincluding\t_\tVERB\tVBG\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t815,000\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\trestructuring\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tgain\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\twere\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n19\tfar\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n20\tbelow\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n24\t8.4\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tBesides\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tspurring\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n3\tBarry\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tWright\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsales\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n9\twere\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n10\t$\t_\tSYM\t$\t_\t6\tacl:relcl\t_\t_\n11\t201.7\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1988\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSim\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n18\tmust\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tpare\t_\tVERB\tVB\t_\t0\troot\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tcosts\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tproduct\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tline\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tquestion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n5\thow\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n6\tlong\t_\tADJ\tJJ\t_\t9\tadvmod\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\t's\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tgoing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\ttake\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tBarry\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tWright\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcontribution\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tF.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tJohn\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tMirek\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tanalyst\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n27\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tBlunt\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tEllis\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tLoewi\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMilwaukee\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanswer\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thelp\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tdetermine\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n6\twhether\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tApplied\t_\tVERB\tVBN\t_\t8\tnsubj\t_\t_\n8\tcontinues\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\treach\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tambitious\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tgoals\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tset\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSim\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n2\tButler\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tWis.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tmanufacturer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tpublic\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t15.75\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tSim\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tgoal\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n23\tthen\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t29\tcop\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t29\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n28\tper-share\t_\tADJ\tJJ\t_\t26\tdep\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n30\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\t1992\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tStrong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tearnings\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\thelped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tachieve\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n6\tthat\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfar\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tahead\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tschedule\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n15\t1988\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tsince\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n5\tsoftened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ttrading\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n8\taround\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tdobj\t_\t_\n10\t25\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tweek\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n16\tclosing\t_\tVERB\tVBG\t_\t7\tconj\t_\t_\n17\tyesterday\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t23.00\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tnational\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tover-the-counter\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSim\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfresh\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttarget\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t50\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t16\tdep\t_\t_\n\n1\tReaching\t_\tVERB\tVBG\t_\t17\tcsubj\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgoal\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t17\tparataxis\t_\t_\n6\tRobert\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tT.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tFoote\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tApplied\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tofficer\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n19\tefficient\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\treinvestment\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tcash\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tApplied\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n27\tcontinuation\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n30\thealthy\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\t19\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\t%\t_\tSYM\tNN\t_\t33\tamod\t_\t_\n33\trate\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\treturn\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\toperating\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tcapital\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tBarry\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWright\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSim\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tsituation\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tvery\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tsimilar\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tone\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tfaced\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tjoined\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n22\tApplied\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n23\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tchief\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\toperating\t_\tVERB\tVBG\t_\t28\tamod\t_\t_\n28\tofficer\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n29\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\t1985\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tApplied\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthen\t_\tADV\tRB\t_\t7\tdep\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tclosely\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\theld\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tstagnating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tunder\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tcontrolling\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n17\tfamily\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tprofitable\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tgrowing\t_\tVERB\tVBG\t_\t22\tdep\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tproviding\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsatisfactory\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\treturn\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tinvested\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n18\tcapital\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n21\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSim\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tconfident\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdrive\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tdominate\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tcertain\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tniche\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\twork\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tBarry\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tWright\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tApplied\t_\tPROPN\tNNP\t_\t14\tadvcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tprofesses\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\tevangelical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tfervor\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tdevelop\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcorporate\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tculture\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\trewards\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n16\tmanagers\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n18\tproduce\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\twhere\t_\tADV\tWRB\t_\t23\tadvmod\t_\t_\n21\tdecision-making\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t23\tauxpass\t_\t_\n23\tshared\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSim\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tconsiders\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\toperations\t_\tNOUN\tNNS\t_\t11\tdep\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n10\tfundamentally\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsound\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tadds\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tBarry\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tWright\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n19\tbeen\t_\tVERB\tVBN\t_\t21\tcop\t_\t_\n20\tfairly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tsuccessful\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n22\tin\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tmoving\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tmarkets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n27\thave\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n28\tn't\t_\tPART\tRB\t_\t29\tneg\t_\t_\n29\tinterested\t_\tVERB\tVBN\t_\t25\tacl:relcl\t_\t_\n30\tlarger\t_\tADJ\tJJR\t_\t31\tamod\t_\t_\n31\tcompetitors\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tlittle\t_\tADJ\tJJ\t_\t5\tnmod:npmod\t_\t_\n5\tpatience\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthese\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbusinesses\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tperform\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n11\tvery\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tsatisfactorily\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSim\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tabout\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsix\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n7\tthings\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\tmoving\t_\tVERB\tVBG\t_\t18\tdep\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tright\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdirection\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSim\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfigures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n7\teasier\t_\tADJ\tJJR\t_\t3\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tturn\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tBarry\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tWright\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n12\taround\t_\tADP\tIN\t_\t9\tcompound:prt\t_\t_\n13\tsince\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n14\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n15\t's\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n16\tnow\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tdriver\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tseat\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\the\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tApplied\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n8\tI\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n9\tdid\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\thave\t_\tVERB\tVB\t_\t23\tdep\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpower\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\texecute\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tI\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tdo\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n19\ttoday\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\texecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tofficer\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tApplied\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1986\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n12\tbecame\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n13\tchairman\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n14\tlast\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tNovember\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tApplied\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSim\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tset\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tgrowth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tfirst\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tobjective\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tpublic\t_\tNOUN\tNN\t_\t2\txcomp\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\toffering\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\tnetted\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tApplied\t_\tPROPN\tNNP\t_\t10\tiobj\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n14\t12.6\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\thelped\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n19\tlaunch\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tacquisition\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tprogram\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tclimbed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\testimated\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t245\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfiscal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\t1989\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tended\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n14\tAug.\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t31\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n19\t99.9\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tfiscal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\t1985\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n5\tearnings\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tmarched\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n10\tsteadily\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tupward\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\trecent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\treached\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n19\t20.8\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n24\t1.58\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t24\tnmod:npmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tfiscal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n32\tjust\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tended\t_\tVERB\tVBD\t_\t31\tacl\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n35\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t$\t_\tSYM\t$\t_\t35\tnmod\t_\t_\n38\t15.2\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\tmillion\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n40\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tfiscal\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\t1988\t_\tNUM\tCD\t_\t37\tnmod\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n44\t$\t_\tSYM\t$\t_\t37\tconj\t_\t_\n45\t3.9\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n46\tmillion\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n47\tin\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\t1985\t_\tNUM\tCD\t_\t44\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n"
  },
  {
    "path": "a3/data/test.conll",
    "content": "1\tNo\t_\tADV\tDT\t_\t7\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tBlack\t_\tPROPN\tJJ\t_\t7\tcompound\t_\t_\n7\tMonday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n2\twhile\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tExchange\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tfall\t_\tVERB\tVB\t_\t33\tadvcl\t_\t_\n11\tapart\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tJones\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tIndustrial\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tAverage\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tplunged\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n20\t190.58\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n23\tmost\t_\tADJ\tJJS\t_\t21\tdep\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t23\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfinal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\thour\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n32\tbarely\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tmanaged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tstay\t_\tVERB\tVB\t_\t33\txcomp\t_\t_\n36\tthis\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tside\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tchaos\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\tcircuit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbreakers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n6\tinstalled\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\tafter\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tOctober\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\t1987\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcrash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tfailed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttest\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\ttraders\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t12\tparataxis\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tunable\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tcool\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tselling\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tpanic\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tboth\t_\tDET\tDT\t_\t28\tcc:preconj\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tfutures\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t49\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tspecialist\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n6\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tfloor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbuyers\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tsellers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tresort\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\twho\t_\tPRON\tWP\t_\t21\tnsubjpass\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\tcriticized\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n22\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\t1987\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tcrash\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n27\tonce\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tagain\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n29\tcould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\thandle\t_\tVERB\tVB\t_\t0\troot\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tselling\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tpressure\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tBig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbanks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trefused\t_\tVERB\tVBD\t_\t25\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tstep\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tadvmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tplate\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsupport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tbeleaguered\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tfloor\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttraders\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n17\tby\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tbuying\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n19\tbig\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tblocks\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\ttraders\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tHeavy\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tselling\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n4\tStandard\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tPoor\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n8\t500-stock\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tindex\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfutures\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tChicago\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n13\trelentlessly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tbeat\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tdownward\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSeven\t_\tNUM\tNNP\t_\t4\tnummod\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tAMR\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tBankAmerica\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tWalt\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tDisney\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tCapital\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCities/ABC\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tPhilip\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMorris\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\tPacific\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tTelesis\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tGroup\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n25\tstopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\ttrading\t_\tVERB\tNN\t_\t25\txcomp\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n28\tnever\t_\tADV\tRB\t_\t29\tneg\t_\t_\n29\tresumed\t_\tVERB\tVBN\t_\t25\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfinger-pointing\t_\tNOUN\tJJ\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tbegun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tequity\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tilliquid\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOnce\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tagain\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n3\t-LCB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tspecialists\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n6\t-RCB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\table\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\thandle\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\timbalances\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tfloor\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tStock\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tExchange\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tChristopher\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tPedersen\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tsenior\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tvice\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tpresident\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n32\tat\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tTwenty-First\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tSecurities\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCorp\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tCountered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tJames\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMaguire\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tspecialists\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n8\tHenderson\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBrothers\t_\tPROPN\tNNPS\t_\t10\tcompound\t_\t_\n10\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n13\tIt\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\teasy\t_\tADJ\tJJ\t_\t1\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tsay\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tspecialist\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tdoing\t_\tVERB\tVBG\t_\t17\tccomp\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tjob\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdollar\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tfree-fall\t_\tNOUN\tNN\t_\t14\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\teven\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tcentral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbanks\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n12\tca\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tstop\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSpeculators\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tcalling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdegree\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tliquidity\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n11\tnot\t_\tPART\tRB\t_\t15\tneg\t_\t_\n12\tthere\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t6\tacl:relcl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmoney\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttraders\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\talready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tleft\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\toffices\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tearly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tafternoon\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\twarm\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tautumn\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tday\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n21\tbecause\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n25\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n26\tso\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tquiet\t_\tADJ\tJJ\t_\t9\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tlightning\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tplunge\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tindustrials\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tbarely\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tnummod\t_\t_\n14\thour\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n15\tsurrendered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tabout\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tnummod\t_\t_\n18\tthird\t_\tADJ\tJJ\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tgains\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t21\tnmod:tmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tchalking\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n26\tup\t_\tADP\tRP\t_\t25\tcompound:prt\t_\t_\n27\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n28\t190.58-point\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n31\t6.9\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\t%\t_\tSYM\tNN\t_\t28\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n34\tloss\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tday\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tgargantuan\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n40\ttrading\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tvolume\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tFinal-hour\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\taccelerated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n5\t108.1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\trecord\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBoard\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tend\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tday\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\t251.2\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tindustrials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t2569.26\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecline\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tsecond\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tpoint\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tterms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tonly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\t508-point\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tBlack\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tMonday\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tcrash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\toccurred\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\tOct.\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n20\t19\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tpercentage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tterms\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tdive\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\t12th-worst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsharpest\t_\tADJ\tJJS\t_\t13\tconj\t_\t_\n18\tsince\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tfell\t_\tVERB\tVBD\t_\t17\tacl\t_\t_\n22\t156.83\t_\tNUM\tCD\t_\t21\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\t8\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t22\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tweek\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n30\tafter\t_\tADP\tIN\t_\t29\tcase\t_\t_\n31\tBlack\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tMonday\t_\tPROPN\tNNP\t_\t29\tdep\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t22.6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tBlack\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShares\t_\tPROPN\tNNS\t_\t13\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tUAL\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparent\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tUnited\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAirlines\t_\tPROPN\tNNPS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\textremely\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tactive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\treacting\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n20\tnews\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\trumors\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n23\tabout\t_\tADP\tIN\t_\t29\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n25\tproposed\t_\tVERB\tVBN\t_\t29\tamod\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t6.79\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tbillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tbuy-out\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tairline\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tan\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\temployee-management\t_\tADJ\tNN\t_\t36\tamod\t_\t_\n36\tgroup\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWall\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStreet\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttakeover-stock\t_\tADJ\tNN\t_\t5\tamod\t_\t_\n5\tspeculators\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\trisk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tarbitragers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tunusually\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tlarge\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbets\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttakeover\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tsucceed\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tUAL\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\trise\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\t2:43\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tp.m.\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tEDT\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t15\tdep\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsickening\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tnews\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n11\tThe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tBig\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\thalting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n16\ttrading\t_\tVERB\tNN\t_\t15\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tUAL\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n21\tpending\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n22\tnews\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\texchange\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tfloor\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n7\tas\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tsoon\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tUAL\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tstopped\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n12\ttrading\t_\tVERB\tNN\t_\t11\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tbraced\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpanic\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tone\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n23\ttop\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tfloor\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\ttrader\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tseen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tshaking\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\ttheir\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\theads\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tflashed\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tweeks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tnervous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tabout\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\ttakeovers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tafter\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n13\tCampeau\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tcash\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcrunch\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tspurred\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n19\tconcern\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tabout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tprospects\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tfuture\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\thighly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tleveraged\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttakeovers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\t10\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tminutes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n4\tafter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thalt\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n9\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tnews\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tUAL\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tgroup\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tget\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n18\tfinancing\t_\tNOUN\tVBG\t_\t17\tdobj\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tbid\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t35\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcrumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tArbitragers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdump\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\trid\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n12\tthemselves\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n14\tnearly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tevery\t_\tDET\tDT\t_\t19\tamod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n17\trumor\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\thad\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tselling\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tcaused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thalts\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tdeclared\t_\tVERB\tVBN\t_\t6\txcomp\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tUSAir\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tGroup\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tclosed\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n18\tdown\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t3\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t7/8\t_\tNUM\tCD\t_\t18\tnmod:npmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\t41\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t1/2\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tDelta\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tAir\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tLines\t_\tPROPN\tNNPS\t_\t14\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\twhich\t_\tPRON\tWDT\t_\t30\tnsubj\t_\t_\n30\tfell\t_\tVERB\tVBD\t_\t27\tacl:relcl\t_\t_\n31\t7\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\t3/4\t_\tNUM\tCD\t_\t30\tdobj\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\t69\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\t1/4\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n38\tPhilips\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tIndustries\t_\tPROPN\tNNPS\t_\t14\tconj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\twhich\t_\tPRON\tWDT\t_\t42\tnsubj\t_\t_\n42\tsank\t_\tVERB\tVBD\t_\t39\tacl:relcl\t_\t_\n43\t3\t_\tNUM\tCD\t_\t42\tdobj\t_\t_\n44\tto\t_\tADP\tTO\t_\t46\tcase\t_\t_\n45\t21\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n46\t1/2\t_\tNUM\tCD\t_\t42\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\teventually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\treopened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tas\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tpanic\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tspread\t_\tVERB\tNN\t_\t7\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tspeculators\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsell\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tblue-chip\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tPhilip\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMorris\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tInternational\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tBusiness\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMachines\t_\tPROPN\tNNPS\t_\t15\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\toffset\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tlosses\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\thalted\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tPhilip\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMorris\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\ttrading\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t41\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\t3\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t3/8\t_\tNUM\tCD\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\twhile\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tIBM\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\tclosed\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n23\t5\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t5/8\t_\tNUM\tCD\t_\t25\tnmod:npmod\t_\t_\n25\tlower\t_\tADJ\tJJR\t_\t22\tadvmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t102\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSelling\t_\tNOUN\tVBG\t_\t2\tnsubj\t_\t_\n2\tsnowballed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tbecause\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tof\t_\tADP\tIN\t_\t3\tmwe\t_\t_\n5\twaves\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tautomatic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n9\tstop-loss\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\torders\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubjpass\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\tauxpass\t_\t_\n15\ttriggered\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n16\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n19\tprices\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tfall\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tcertain\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tlevels\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tselling\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpressure\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tWall\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tStreet\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tprofessionals\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tincluding\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n14\tcomputer-guided\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttraders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t15\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinstitutional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\thand\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\tsat\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n16\ttight\t_\tADV\tJJ\t_\t15\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n3\tat\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\t3:07\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\tone\t_\tNUM\tCD\t_\t15\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tpost-crash\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n13\treforms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\thold\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tS&P\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\t500\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tfutures\t_\tNOUN\tNNS\t_\t22\tcompound\t_\t_\n22\tcontract\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\thad\t_\tAUX\tVBD\t_\t24\taux\t_\t_\n24\tplunged\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n25\t12\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tpoints\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tequivalent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\taround\t_\tADP\tIN\t_\t32\tadvmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tadvmod\t_\t_\n32\t100-point\t_\tADJ\tJJ\t_\t33\tnummod\t_\t_\n33\tdrop\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tDow\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tindustrials\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n4\tsigned\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBig\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBoard\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tChicago\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMercantile\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tExchange\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n17\ttemporarily\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tChicago\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\thalt\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tS&P\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\t500\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tpit\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tChicago\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\twaves\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tselling\t_\tNOUN\tVBG\t_\t13\tnmod\t_\t_\n16\tcontinued\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\thit\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tthemselves\t_\tPRON\tPRP\t_\t19\tnmod:npmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tBig\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tBoard\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n27\tspecialists\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tcontinued\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tnotch\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tprices\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n32\tdown\t_\tADP\tRB\t_\t30\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlink\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfutures\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\tripped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tapart\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWithout\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tguidepost\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tstock-index\t_\tADJ\tNN\t_\t6\tamod\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbarometer\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n10\tof\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\twhere\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tthink\t_\tVERB\tVBP\t_\t9\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\toverall\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\tauxpass\t_\t_\n19\theaded\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n21\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttraders\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n24\tafraid\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\ttrust\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tprices\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\tquoted\t_\tVERB\tVBN\t_\t28\tacl\t_\t_\n30\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tBig\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tBoard\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\thalt\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tassailed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tfloor\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tscrewed\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n4\tthings\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tspecialist\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconfusion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\teffectively\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thalted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tform\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tprogram\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tarbitrage\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\tclosely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tlinks\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfutures\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmarkets\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n25\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n26\tbeen\t_\tAUX\tVBN\t_\t27\tauxpass\t_\t_\n27\tblamed\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n28\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tsome\t_\tDET\tDT\t_\t27\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tbig\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tswings\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n2\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tstock-index\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n5\tarbitrage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tsell\t_\tNOUN\tVBP\t_\t7\tcompound\t_\t_\n7\tprogram\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\ttraders\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tbuy\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tsell\t_\tVERB\tVBP\t_\t10\tconj\t_\t_\n13\tbig\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbaskets\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tstocks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n18\toffset\t_\tVERB\tVBP\t_\t10\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttrade\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tlock\t_\tVERB\tVB\t_\t18\tadvcl\t_\t_\n25\tin\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tprice\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tdifference\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tairline\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tinformation\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n7\tthrough\t_\tADP\tIN\t_\t6\tcompound:prt\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tcracked\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n11\tevery\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmodel\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmarketplace\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tmanaging\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tdirector\t_\tNOUN\tNN\t_\t20\tdep\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tone\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tlargest\t_\tADJ\tJJS\t_\t30\tamod\t_\t_\n29\tprogram-trading\t_\tNOUN\tJJ\t_\t30\tcompound\t_\t_\n30\tfirms\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tget\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tchance\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tdo\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tprograms\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\twanted\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tdo\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tkept\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfalling\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tindustrials\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n5\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\t55\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tpoints\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t3\t_\tNUM\tCD\t_\t0\troot\t_\t_\n10\tp.m.\t_\tADV\tNN\t_\t9\tadvmod\t_\t_\n11\tbefore\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfutures-trading\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thalt\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t3:30\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\tp.m.\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tend\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n11\tcooling\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n12\toff\t_\tADP\tRP\t_\t14\tdep\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tperiod\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\taverage\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tdown\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\t114.76\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tduring\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet:predet\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thalt\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tS&P\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tfutures\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n12\tsell\t_\tNOUN\tVBP\t_\t13\tcompound\t_\t_\n13\torders\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tpiling\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\twhile\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tYork\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tkept\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n24\tfalling\t_\tVERB\tVBG\t_\t23\txcomp\t_\t_\n25\tsharply\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tBoard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tChairman\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tJohn\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tJ.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPhelan\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcircuit\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tbreaker\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n13\tworked\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n14\twell\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tmechanically\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tjust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tnonproductive\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpoint\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tget\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n12\tinto\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdebate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tif\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tarbitrage\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\thelped\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\thurt\t_\tVERB\tVBN\t_\t20\tconj\t_\t_\n23\tthings\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tanother\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tpost-crash\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsystem\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n6\tBig\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tBoard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tRichard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tGrasso\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPhelan\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\tflying\t_\tVERB\tVBG\t_\t25\tparataxis\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tBangkok\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n22\tfalling\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n23\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n24\twas\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\ttalking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n26\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n29\tinter-exchange\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\thot\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tline\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n33\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tother\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\texchanges\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n39\tSecurities\t_\tPROPN\tNNPS\t_\t42\tcompound\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\tExchange\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n42\tCommission\t_\tPROPN\tNNP\t_\t36\tconj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n44\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n45\tFederal\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n46\tReserve\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tBoard\t_\tPROPN\tNNP\t_\t36\tconj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcamped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tout\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\thigh-tech\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tnerve\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcenter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfloor\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tBig\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n18\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\twatch\t_\tVERB\tVB\t_\t8\tacl:relcl\t_\t_\n21\tupdates\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tpending\t_\tVERB\tVBG\t_\t27\tamod\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\torders\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tabout\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n3\t3:30\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tp.m.\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tEDT\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tS&P\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tfutures\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tresumed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ttrading\t_\tVERB\tNN\t_\t9\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tbrief\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\ttime\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmarkets\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\tstarted\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tcome\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tback\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tline\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBuyers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tstepped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t2\tadvmod\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tpit\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbuild-up\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tS&P\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n7\tsell\t_\tNOUN\tVBP\t_\t8\tcompound\t_\t_\n8\torders\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tweighed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tlink\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tbegan\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tfray\t_\tVERB\tNN\t_\t19\txcomp\t_\t_\n22\tagain\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tabout\t_\tADV\tIN\t_\t3\tadvmod\t_\t_\n3\t3:45\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tcareened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n10\tstill\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tanother\t_\tDET\tDT\t_\t12\tamod\t_\t_\n12\tlimit\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tpoints\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tdown\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t22\tnsubjpass\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\tlocked\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n23\tagain\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tS&P\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tsignaling\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tDow\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tfall\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n13\tas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tmuch\t_\tADJ\tJJ\t_\t12\tdobj\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t200\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDuring\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tsmall\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tringing\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tbrokers\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\twondering\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tanother\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcrash\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tbegun\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tPrudential-Bache\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSecurities\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\ttrying\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcater\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tsmall\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tdemoralized\t_\tADJ\tVBN\t_\t17\tamod\t_\t_\n17\tbrokers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthis\t_\tPRON\tDT\t_\t24\tnsubj\t_\t_\n20\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfinal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tconfidence-crusher\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n4\tGeorge\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tL.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBall\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n11\tPrudential\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n12\tInsurance\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAmerica\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tunit\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\ttook\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tinternal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tintercom\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsystem\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tdeclare\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tplunge\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n30\tonly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\tmechanical\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thunch\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tparticular\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdecline\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\ttoday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n12\tsomething\t_\tNOUN\tNN\t_\t5\tccomp\t_\t_\n13\t`\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n14\tmore\t_\tADJ\tRBR\t_\t15\tamod\t_\t_\n15\tado\t_\tNOUN\tJJ\t_\t12\tdep\t_\t_\n16\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tless\t_\tADJ\tJJR\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t'\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t5\tcop\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tinclination\t_\tNOUN\tNN\t_\t24\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tadvise\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n8\tclients\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t7\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tlook\t_\tVERB\tVB\t_\t11\tdep\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\topportunity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBall\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tbrokers\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMerrill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnation\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tbiggest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n11\tbrokerage\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tfirm\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tnews\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trelease\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n17\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n18\tprepared\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n19\theadlined\t_\tVERB\tVBN\t_\t18\tdep\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n21\tMerrill\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tLynch\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tComments\t_\tPROPN\tNNS\t_\t19\txcomp\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tMarket\t_\tPROPN\tNN\t_\t26\tcompound\t_\t_\n26\tDrop\t_\tPROPN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trelease\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcautioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n6\tthere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n8\tsignificant\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdifferences\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n10\tbetween\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcurrent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tenvironment\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tthat\t_\tADP\tIN\t_\t13\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tOctober\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t1987\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n22\tthere\t_\tPRON\tEX\t_\t23\texpl\t_\t_\n23\tare\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n24\tstill\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n26\tattractive\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tinvestment\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\topportunities\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tstock\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tJeffrey\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tB.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tLane\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tShearson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tLehman\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tHutton\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tplunge\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tgoing\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tset\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tback\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n26\trelations\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tcustomers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n31\tbecause\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\treinforces\t_\tVERB\tVBZ\t_\t21\tadvcl\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tconcern\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tvolatility\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlot\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tpeople\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tharp\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbring\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdebate\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tright\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tforefront\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tDow\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\taverage\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n5\tground\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n6\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tfinal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\t190.58\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tloss\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tS&P\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tpit\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tlocked\t_\tADJ\tVBN\t_\t16\txcomp\t_\t_\n18\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\t30-point\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tlimit\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tJeffrey\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tYass\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tprogram\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n5\ttrader\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tSusquehanna\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tInvestment\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGroup\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t2,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tS&P\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tcontracts\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tsale\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tclose\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tequivalent\t_\tNOUN\tNN\t_\t9\tccomp\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t330\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tbuyers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdebacle\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tinvolved\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n6\tmainly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tprofessional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\trather\t_\tADV\tRB\t_\t11\tcase\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tleft\t_\tVERB\tVBD\t_\t25\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tvulnerable\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tcontinued\t_\tADJ\tVBN\t_\t20\tamod\t_\t_\n20\tselling\t_\tNOUN\tVBG\t_\t17\tnmod\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\ttraders\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tStock-index\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tcontracts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tmuch\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tlower\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tindexes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\titself\t_\tPRON\tPRP\t_\t14\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlevels\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n7\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\thammered\t_\tVERB\tVBN\t_\t7\txcomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tindex\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tarbitragers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n17\tlock\t_\tVERB\tVBP\t_\t14\tacl:relcl\t_\t_\n18\tin\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tprofits\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tby\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\tbuying\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\twhen\t_\tADV\tWRB\t_\t26\tadvmod\t_\t_\n24\tfutures\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tfall\t_\tVERB\tVBP\t_\t21\tadvcl\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tsimultaneously\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tsell\t_\tVERB\tVB\t_\t17\tconj\t_\t_\n31\toff\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\tstocks\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tnobody\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tknows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\twhat\t_\tPRON\tWDT\t_\t6\tdet\t_\t_\n6\tlevel\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tfutures\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\topen\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n13\ttoday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tde-linkage\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tbetween\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tfutures\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n8\tmarkets\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n10\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tundoubtedly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tcause\t_\tNOUN\tVB\t_\t0\troot\t_\t_\n13\trenewed\t_\tADJ\tVBN\t_\t14\tamod\t_\t_\n14\tdebate\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tabout\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\twhether\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n20\tproperly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tprepared\t_\tADJ\tVBN\t_\t14\tacl\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tanother\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tcrash\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsituation\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tGrasso\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n10\tOur\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tsystemic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tperformance\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\tgood\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texchange\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tlook\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tperformance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tall\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tspecialists\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tObviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\twe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t'll\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\ttake\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tclose\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tlook\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsituation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t14\tnmod\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tthink\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tdealer-community\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n17\tobligations\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n18\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tmet\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n23\the\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t2\tpunct\t_\t_\n2\tSee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\trelated\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstory\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n7\tFed\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n8\tReady\t_\tADJ\tNNP\t_\t15\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tInject\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tBig\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tFunds\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n15\tWSJ\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n16\tOct.\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n17\t16\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\t1989\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tspecialists\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tcomplain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tprivately\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n6\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n7\tas\t_\tADP\tRB\t_\t6\tcase\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\t1987\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcrash\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\tupstairs\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tfirms\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n19\tbig\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tinvestment\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tbanks\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tsupport\t_\tVERB\tVBP\t_\t21\tacl:relcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tby\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\ttrading\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n28\tbig\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tblocks\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tstock\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n33\tstayed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n34\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tsidelines\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\tduring\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tFriday\t_\tPROPN\tNNP\t_\t40\tnmod:poss\t_\t_\n39\t's\t_\tPART\tPOS\t_\t38\tcase\t_\t_\n40\tblood-letting\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tanother\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tanalyze\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n16\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n17\twas\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n18\tbuying\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tselling\t_\tVERB\tVBG\t_\t18\tconj\t_\t_\n21\tFriday\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tConcerning\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n3\tSept.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\t21\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tpage-one\t_\tADJ\tNN\t_\t6\tamod\t_\t_\n6\tarticle\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tPrince\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCharles\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tleeches\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n14\tIt\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n15\t's\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n17\tfew\t_\tADJ\tJJ\t_\t18\tadvmod\t_\t_\n18\thundred\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n20\tsince\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tEngland\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n23\tbeen\t_\tVERB\tVBN\t_\t25\tcop\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tkingdom\t_\tNOUN\tNN\t_\t19\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tUnited\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tKingdom\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tGreat\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBritain\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tNorthern\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tIreland\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tcomprising\t_\tVERB\tVBG\t_\t15\tcase\t_\t_\n15\tWales\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tNorthern\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tIreland\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tScotland\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n23\t...\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n24\toh\t_\tINTJ\tUH\t_\t15\tdiscourse\t_\t_\n25\tyes\t_\tINTJ\tUH\t_\t24\tdep\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n27\tEngland\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n29\ttoo\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t'd\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tlike\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tknow\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorton\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tPorts\t_\tPROPN\tNNS\t_\t4\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tCall\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tagreements\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tremaining\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n11\tseven\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\taircraft\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tbuyers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n16\twere\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tdisclosed\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagreements\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tbring\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttotal\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tnine\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tnumber\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tplanes\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\ttravel\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcompany\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tsold\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tpart\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\trestructuring\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tportion\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n9\t32\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\trealized\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tused\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\trepay\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tbank\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tdebt\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tobligations\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n26\tresulting\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n29\tcurrently\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tsuspended\t_\tVERB\tVBN\t_\t32\tamod\t_\t_\n31\tair-charter\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\toperations\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEarlier\t_\tADV\tJJR\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tsell\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\taging\t_\tVERB\tNN\t_\t10\tamod\t_\t_\n10\tfleet\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tBoeing\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\t707s\t_\tPROPN\tNNS\t_\t10\tnmod\t_\t_\n15\tbecause\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tincreasing\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n18\tmaintenance\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcosts\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconsortium\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tprivate\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\toperating\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n7\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tLJH\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tFunding\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCo.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tmade\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n15\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n16\t$\t_\tSYM\t$\t_\t20\tamod\t_\t_\n17\t409\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tcash\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbid\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tmost\t_\tADJ\tJJS\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tL.J.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tHooker\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\treal-estate\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tshopping-center\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tholdings\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t$\t_\tSYM\t$\t_\t5\tamod\t_\t_\n3\t409\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tassumption\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\testimated\t_\tADJ\tVBN\t_\t12\tamod\t_\t_\n12\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n13\t300\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tsecured\t_\tADJ\tVBN\t_\t17\tamod\t_\t_\n17\tliabilities\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthose\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tproperties\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n22\taccording\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n23\tto\t_\tADP\tTO\t_\t22\tmwe\t_\t_\n24\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n25\tmaking\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbid\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tJay\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tShidler\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\texecutive\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n11\tofficer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tShidler\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tInvestment\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tHonolulu\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tA.\t_\tPROPN\tNN\t_\t22\tcompound\t_\t_\n21\tBoyd\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tSimpson\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tchief\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\texecutive\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n26\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\tAtlanta-based\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tSimpson\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tOrganization\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tInc\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tShidler\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tspecializes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tcommercial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\treal-estate\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tinvestment\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tclaims\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\thave\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\t$\t_\tSYM\t$\t_\t13\tdobj\t_\t_\n15\t1\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tassets\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSimpson\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdeveloper\t_\tNOUN\tNN\t_\t5\tparataxis\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tformer\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tsenior\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\texecutive\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tL.J.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tHooker\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tassets\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tgood\t_\tADJ\tJJ\t_\t26\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\trequire\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tmoney\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n15\tthan\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\tprovided\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n19\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tL.J.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHooker\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tcurrent\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsituation\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tSimpson\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tinterview\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n\n1\tHooker\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tphilosophy\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tbuild\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\twant\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tbuild\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\thold\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tL.J.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHooker\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAtlanta\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\toperating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprotection\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tcreditors\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tChapter\t_\tPROPN\tNN\t_\t11\tnmod\t_\t_\n17\t11\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tBankruptcy\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCode\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tparent\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tHooker\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tSydney\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tAustralia\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n13\tcurrently\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tbeing\t_\tAUX\tVBG\t_\t15\tauxpass\t_\t_\n15\tmanaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tcourt-appointed\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tprovisional\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tliquidator\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSanford\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSigoloff\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\texecutive\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tL.J.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tHooker\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstatement\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n18\tnot\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\tyet\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tseen\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tbid\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\treview\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n30\tbring\t_\tVERB\tVB\t_\t27\tconj\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t30\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tattention\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tcreditors\t_\tNOUN\tNNS\t_\t38\tcompound\t_\t_\n38\tcommittee\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t$\t_\tSYM\t$\t_\t5\tamod\t_\t_\n3\t409\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\testimated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSimpson\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\trepresenting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n13\t75\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tvalue\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tall\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tHooker\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\treal-estate\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tholdings\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tNot\t_\tPART\tRB\t_\t2\tneg\t_\t_\n2\tincluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t2\tauxpass\t_\t_\n7\tBonwit\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tTeller\t_\tPROPN\tNNP\t_\t2\tnsubjpass\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tB.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAltman\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tL.J.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tHooker\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tdepartment-store\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tchains\t_\tNOUN\tNNS\t_\t8\tappos\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcovers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\tmassive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n6\t1.8\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n7\tmillion-square-foot\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tForest\t_\tPROPN\tNN\t_\t10\tcompound\t_\t_\n9\tFair\t_\tPROPN\tNN\t_\t10\tcompound\t_\t_\n10\tMall\t_\tPROPN\tNN\t_\t3\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tCincinnati\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n15\t800,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n16\tsquare-foot\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tRichland\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tFashion\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMall\t_\tPROPN\tNN\t_\t10\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tColumbia\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tS.C.\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n26\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n27\t700,000\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n28\tsquare-foot\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n29\tThornton\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tTown\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tCenter\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tmall\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tThornton\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tColo\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tThornton\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmall\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tSept.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tBigg\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\thypermarket\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tanchor\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tColumbia\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tmall\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n20\texpected\t_\tVERB\tVBN\t_\t4\tparataxis\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\topen\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tNov.\t_\tPROPN\tNNP\t_\t22\tnmod:tmod\t_\t_\n24\t15\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tHooker\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tproperties\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBD\t_\t3\tacl\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\t20-story\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\toffice\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttower\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmidtown\t_\tADJ\tNN\t_\t12\tamod\t_\t_\n12\tAtlanta\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\texpected\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n15\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tcompleted\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n18\tnext\t_\tADP\tJJ\t_\t19\tamod\t_\t_\n19\tFebruary\t_\tPROPN\tNNP\t_\t17\tnmod:tmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n21\tvacant\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tland\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsites\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFlorida\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tOhio\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n29\tL.J.\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tHooker\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tInternational\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\tcommercial\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\treal-estate\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n36\tbrokerage\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tcompany\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n38\tthat\t_\tPRON\tWDT\t_\t40\tnsubj\t_\t_\n39\tonce\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tdid\t_\tVERB\tVBD\t_\t37\tacl:relcl\t_\t_\n41\tbusiness\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n42\tas\t_\tADP\tIN\t_\t47\tcase\t_\t_\n43\tMerrill\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n44\tLynch\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n45\tCommercial\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n46\tReal\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tEstate\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n49\tplus\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n50\tother\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n51\tshopping\t_\tNOUN\tNN\t_\t52\tcompound\t_\t_\n52\tcenters\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconsortium\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tput\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ttogether\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tHoare\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGovett\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tLondon-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tinvestment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tbanking\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsubsidiary\t_\tNOUN\tNN\t_\t14\tacl:relcl\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tSecurity\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPacific\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCorp\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tanticipate\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tproblems\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tin\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\traising\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfunding\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tbid\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tAllan\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCampbell\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\thead\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tmergers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tacquisitions\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tHoare\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tGovett\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tinterview\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHoare\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGovett\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tacting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tconsortium\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tinvestment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbankers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tpeople\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n4\tfamiliar\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tconsortium\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbid\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tcode-named\t_\tADJ\tNNP\t_\t0\troot\t_\t_\n13\tProject\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKlute\t_\tPROPN\tNNP\t_\t12\txcomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\treference\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tfilm\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n22\tKlute\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t34\tnmod\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tprostitute\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n28\tplayed\t_\tVERB\tVBN\t_\t27\tacl\t_\t_\n29\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tactress\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\tJane\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tFonda\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n33\tis\t_\tAUX\tVBZ\t_\t34\tauxpass\t_\t_\n34\tsaved\t_\tVERB\tVBN\t_\t22\tacl:relcl\t_\t_\n35\tfrom\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tpsychotic\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tbusinessman\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tby\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tpolice\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tofficer\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n43\tnamed\t_\tVERB\tVBD\t_\t42\tacl\t_\t_\n44\tJohn\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tKlute\t_\tPROPN\tNNP\t_\t43\txcomp\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tL.J.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHooker\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsmall\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\thome-building\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tbased\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tAtlanta\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1979\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSimpson\t_\tPROPN\tNNP\t_\t17\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\thired\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tpush\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tcommercial\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdevelopment\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmodestly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tuntil\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1986\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajority\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tposition\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tHooker\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\tacquired\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n17\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tAustralian\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\tdeveloper\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tGeorge\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHerscu\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tcurrently\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n24\tHooker\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tchairman\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHerscu\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tproceeded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlaunch\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n7\tambitious\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\till-fated\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n13\t1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tacquisition\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbinge\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tincluded\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\tBonwit\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tTeller\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tB.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAltman\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n27\tas\t_\tADV\tRB\t_\t20\tcc\t_\t_\n28\twell\t_\tADV\tRB\t_\t27\tmwe\t_\t_\n29\tas\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n30\tmajority\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tpositions\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tMerksamer\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tJewelers\t_\tPROPN\tNNPS\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tSacramento\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tchain\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\t;\t_\tPUNCT\t:\t_\t34\tpunct\t_\t_\n40\tSakowitz\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tInc.\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n44\tHouston-based\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tretailer\t_\tNOUN\tNN\t_\t41\tappos\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n47\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n48\tParisian\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tInc.\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n51\tthe\t_\tDET\tDT\t_\t54\tdet\t_\t_\n52\tSoutheast\t_\tPROPN\tNNP\t_\t54\tcompound\t_\t_\n53\tdepartment-store\t_\tNOUN\tNN\t_\t54\tcompound\t_\t_\n54\tchain\t_\tNOUN\tNN\t_\t49\tappos\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEventually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSimpson\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tHerscu\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfalling\t_\tNOUN\tVBG\t_\t7\tdobj\t_\t_\n10\tout\t_\tADP\tRP\t_\t9\tdep\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdirection\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tSimpson\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tresigned\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t1988\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthen\t_\tADV\tRB\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tHooker\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tinterest\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tParisian\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchain\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tback\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\tParisian\t_\tADJ\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tmanagement\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tcurrently\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tattempting\t_\tVERB\tVBG\t_\t7\tconj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tsell\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tB.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAltman\t_\tPROPN\tNNP\t_\t24\tdobj\t_\t_\n28\t&\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tCo.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tchain\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n4\tRobert\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSakowitz\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\texecutive\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tSakowitz\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tchain\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tis\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n16\tfunds\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuy\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tout\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tHooker\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tinterest\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMerksamer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tchain\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tcurrently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tbeing\t_\tAUX\tVBG\t_\t7\tauxpass\t_\t_\n7\toffered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tsale\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFirst\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tBoston\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tReached\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tHonolulu\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tShidler\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tbelieves\t_\tVERB\tVBZ\t_\t7\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tvarious\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tHooker\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmalls\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tcan\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tbecome\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n17\tprofitable\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmanagement\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThese\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tmature\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tassets\t_\tNOUN\tNNS\t_\t18\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\thave\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpotential\t_\tNOUN\tJJ\t_\t10\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\tso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tShidler\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tManaged\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n3\tproperly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tadvmod\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlong-term\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\toutlook\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tthese\t_\tPRON\tDT\t_\t13\tnsubj\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbecome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tinvestment-grade\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tquality\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tproperties\t_\tNOUN\tNNS\t_\t13\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tsteel-ingot\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttotaled\t_\tVERB\tVBD\t_\t35\tccomp\t_\t_\n5\t291,890\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tmetric\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttons\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tweek\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tended\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tOct.\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t7\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n16\t14.8\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t15\tnmod:npmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tpreceding\t_\tADJ\tVBG\t_\t21\tamod\t_\t_\n21\tweek\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\ttotal\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t254,280\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\ttons\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n28\tStatistics\t_\tPROPN\tNNPS\t_\t29\tcompound\t_\t_\n29\tCanada\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tfederal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tagency\t_\tNOUN\tNN\t_\t29\tappos\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttotal\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tup\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t6.2\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t274,963\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ttons\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n14\tearlier\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tyear-to-date\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttotal\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\t12,006,883\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\ttons\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tup\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n9\t7.8\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t11,141,711\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\ttons\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tyear\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n16\tearlier\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tplans\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\traise\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n7\t175\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tThursday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tselling\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n15\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tdobj\t_\t_\n17\t9.75\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tbillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t52-week\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tbills\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n23\tredeeming\t_\tVERB\tJJ\t_\t14\tconj\t_\t_\n24\t$\t_\tSYM\t$\t_\t26\tdep\t_\t_\n25\t9.58\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmaturing\t_\tVERB\tVBG\t_\t29\tamod\t_\t_\n29\tbills\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbills\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tdated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tOct.\t_\tPROPN\tNNP\t_\t5\txcomp\t_\t_\n7\t26\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tmature\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n11\tOct.\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n12\t25\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\t1990\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t4\tcop\t_\t_\n4\tavailable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tminimum\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdenominations\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t10,000\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBids\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\tmust\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tAUX\tVB\t_\t4\tauxpass\t_\t_\n4\treceived\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\t1\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tp.m.\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tEDT\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tThursday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tTreasury\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tFederal\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tReserve\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tbanks\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tbranches\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tsmall\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpeppered\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tmutual\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tphone\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcalls\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tweekend\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tbig\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tfund\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmanagers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\thave\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tstrong\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdefense\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tagainst\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tany\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\twave\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\twithdrawals\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\t:\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n30\tcash\t_\tNOUN\tNN\t_\t23\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweekend\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tbefore\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tBlack\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfunds\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tswamped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\theavy\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\twithdrawal\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trequests\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tfund\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmanagers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tbuilt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tcash\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tlevels\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tsay\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tbuying\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tFidelity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInvestments\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnation\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tlargest\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n9\tfund\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\ttelephone\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tvolume\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tsharply\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n21\tstill\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tjust\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\thalf\t_\tDET\tPDT\t_\t26\tnummod\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlevel\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tweekend\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tpreceding\t_\tVERB\tVBG\t_\t29\tacl\t_\t_\n31\tBlack\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tMonday\t_\tPROPN\tNNP\t_\t30\tnmod:tmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\t1987\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBoston\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tfirm\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tstock-fund\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tredemptions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\trunning\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tless\t_\tADJ\tJJR\t_\t12\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tone-third\t_\tNOUN\tJJ\t_\t14\tnummod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlevel\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n17\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tyesterday\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tafternoon\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tredemptions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\trepresented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tless\t_\tADJ\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t15\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\ttotal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tcash\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tposition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tabout\t_\tADV\tIN\t_\t20\tadvmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n21\t2\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tFidelity\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tfunds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tTwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n7\tmassive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tredemption\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tlevels\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n10\tover\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tweekend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlot\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tfear\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\taround\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tC.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tBruce\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tJohnstone\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\truns\t_\tVERB\tVBZ\t_\t24\tacl:relcl\t_\t_\n28\tFidelity\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tInvestments\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n30\t'\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t35\tamod\t_\t_\n32\t5\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tbillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\tEquity-Income\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tFund\t_\tPROPN\tNNP\t_\t27\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\tfeels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tmore\t_\tADV\tJJR\t_\t8\tadvmod\t_\t_\n5\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tone-shot\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdeal\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tpanicking\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttest\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ttoday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsell-off\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttoo\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tlate\t_\tADV\tJJ\t_\t6\tadvmod\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tact\t_\tVERB\tVB\t_\t8\tdep\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshareholders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\toff\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tuntil\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n9\tany\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfund\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\texchanges\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n12\tmade\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tclose\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\ttake\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n19\tplace\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ttoday\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tclosing\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tprices\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNNP\t_\t3\tcompound\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tredemptions\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\tduring\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tdebacle\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsnowball\t_\tVERB\tNN\t_\t10\txcomp\t_\t_\n13\tuntil\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\topened\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tBlack\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tMonday\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\tready\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tcash\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tlevels\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tact\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbuffer\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tsteep\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdeclines\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMario\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGabelli\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tinstance\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tcash\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpositions\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\twell\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tabove\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t20\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tseveral\t_\tADJ\tJJ\t_\t7\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tfunds\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWindsor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFund\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tJohn\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tNeff\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tMutual\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSeries\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tMichael\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPrice\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\traised\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tcash\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlevels\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t26\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n22\t20\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n23\t%\t_\tSYM\tNN\t_\t26\tdep\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n25\t30\t_\tNUM\tCD\t_\t26\tconj\t_\t_\n26\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\trespectively\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n30\tthis\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tPeter\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tmanager\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tFidelity\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n10\t12.7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tMagellan\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tFund\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnation\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tlargest\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tfund\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tbuilt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tup\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tcash\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\t7\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t22\tnmod\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\t$\t_\tSYM\t$\t_\t27\tconj\t_\t_\n30\t850\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\treason\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tDET\tIN\t_\t15\tmark\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tmonthly\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tredemptions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tfund\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tposted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n16\tnet\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tinflows\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tmoney\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tinvestors\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tAugust\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tSeptember\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tlet\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tbuild\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tup\t_\tADP\tRB\t_\t7\tcompound:prt\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tLynch\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twho\t_\tPRON\tWP\t_\t16\tnsubj\t_\t_\n16\tadded\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\thad\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n21\ttrouble\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\tfinding\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tlikes\t_\tVERB\tVBZ\t_\t23\tacl:relcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\tall\t_\tDET\tDT\t_\t3\tamod\t_\t_\n3\tfunds\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tcash\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tlevels\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcourse\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfunds\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t10.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tassets\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tcash\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAugust\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tlatest\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n20\tfigures\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n21\tavailable\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tInvestment\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tCompany\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tInstitute\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tmodestly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n5\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n7\t8.8\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t12\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\t9.2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tADJ\tNN\t_\t8\tconj\t_\t_\n12\tlevels\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tSeptember\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t1987\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tpersistent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tredemptions\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tforce\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfund\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmanagers\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdump\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\traise\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n15\tcash\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tstrong\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlevel\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tinvestor\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\twithdrawals\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n9\tmuch\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tunlikely\t_\tADJ\tJJ\t_\t18\tdep\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n14\taround\t_\tADV\tRP\t_\t13\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tfund\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmanagers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\treason\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n7\talready\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tsharply\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tscaled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n11\tback\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tpurchases\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfunds\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tsince\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tBlack\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMonday\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStock-fund\t_\tADJ\tNN\t_\t2\tamod\t_\t_\n2\tsales\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\trebounded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tmonthly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tnet\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tpurchases\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n13\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tstill\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\trunning\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n16\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tless\t_\tADJ\tJJR\t_\t19\tadvmod\t_\t_\n18\tthan\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\thalf\t_\tNOUN\tDT\t_\t21\tnummod\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tlevels\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t11\tccomp\t_\t_\n4\tnot\t_\tPART\tRB\t_\t3\tneg\t_\t_\n5\tnearly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tas\t_\tADP\tRB\t_\t7\tdep\t_\t_\n7\tmuch\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tfroth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tJohn\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBogle\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tchairman\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tVanguard\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tGroup\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tInc.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n22\tbig\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n23\tValley\t_\tPROPN\tNNP\t_\t29\tdep\t_\t_\n24\tForge\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n26\tPa.\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n28\tfund\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\targue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tnow\t_\tADV\tRB\t_\t9\tnsubj\t_\t_\n7\t's\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tbuy\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tVincent\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBajakian\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n8\t1.8\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tWellington\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tFund\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tpositions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tBristol-Myers\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSquibb\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tWoolworth\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\tDun\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tBradstreet\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\ttoday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\t'll\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tdrug\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tEli\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tLilly\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tPfizer\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\tAmerican\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tHome\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tProducts\t_\tPROPN\tNNPS\t_\t13\tconj\t_\t_\n20\twhose\t_\tPRON\tWP$\t_\t22\tnmod:poss\t_\t_\n21\tdividend\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tyields\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tbolstered\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tdeclines\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLynch\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tsnapped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tup\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tSouthern\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n16\tafter\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n19\tgot\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\thammered\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdrops\t_\tVERB\tVBZ\t_\t9\tadvcl\t_\t_\n5\tfurther\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\ttoday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\t'll\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tbuying\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n14\tblue\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tchips\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tsuch\t_\tADJ\tJJ\t_\t18\tcase\t_\t_\n17\tas\t_\tADP\tIN\t_\t16\tmwe\t_\t_\n18\tBristol-Myers\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tKellogg\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tcroak\t_\tVERB\tVBP\t_\t14\tadvcl\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthat\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tpresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\topportunity\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tkind\t_\tNOUN\tNN\t_\t16\tacl:relcl\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tthing\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tyou\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tdream\t_\tVERB\tVBP\t_\t21\tacl:relcl\t_\t_\n26\tabout\t_\tADP\tRB\t_\t25\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmutual-fund\t_\tNOUN\tJJ\t_\t3\tcompound\t_\t_\n3\tgroups\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tphone\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcalls\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tarriving\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ttwice\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tnormal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tweekend\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tpace\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tshare\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinformation\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmodestly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n7\tthan\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tnormal\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tfund\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tgroups\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\ttaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tchances\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tavoid\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tjammed\t_\tADJ\tVBN\t_\t8\tamod\t_\t_\n7\tphone\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tlines\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsnags\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tinfuriated\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n14\tsome\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tfund\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tOctober\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tSaturday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n4\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n6\t54\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\twalk-in\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tinvestor\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcenters\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n10\tacross\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcountry\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcenters\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tnormally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tclosed\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n6\tthrough\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tweekend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tEast\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tCoast\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tcenters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t7:30\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tEDT\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmorning\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tinstead\t_\tADV\tRB\t_\t19\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tnormal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\t8:30\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tT.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tRowe\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tPrice\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tAssociates\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tstaff\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tphone\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trepresentatives\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\thandle\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tinvestor\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\trequests\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBaltimore-based\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tnoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tmoved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tmoney\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tfunds\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tmoney-market\t_\tNOUN\tJJ\t_\t15\tcompound\t_\t_\n15\tfunds\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tseemed\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tinformation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmode\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n12\trather\t_\tADV\tRB\t_\t11\tcc\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttransaction\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmode\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tSteven\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tNorwitz\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tvice\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tpresident\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tVanguard\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tamong\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tgroups\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tadding\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t14\tamod\t_\t_\n13\tphone\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\trepresentatives\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\ttoday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\thelp\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tget\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n20\tthrough\t_\tADP\tIN\t_\t19\tcompound:prt\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tunusual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmove\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcalm\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trecordings\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\ttoll-free\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tphone\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlines\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tview\t_\tVERB\tVBP\t_\t28\tccomp\t_\t_\n4\t-LCB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\t-RCB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdecline\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\toffering\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n12\tus\t_\tPRON\tPRP\t_\t11\tiobj\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbuying\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\topportunity\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tlong-term\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\trecording\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n23\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tGabelli\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n25\t&\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tCo.\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n27\tfunds\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tover\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tweekend\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tJanus\t_\tPROPN\tNN\t_\t3\tcompound\t_\t_\n3\tGroup\t_\tPROPN\tNN\t_\t4\tnsubj\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsimilar\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trecording\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\trough\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmorning\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tstabilize\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tearly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tselling\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tstem\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tportfolio\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmanagers\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n14\twant\t_\tVERB\tVBP\t_\t9\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlock\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tin\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tfat\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprofits\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tfunds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\taveraged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstaggering\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\taccording\t_\tVERB\tVBG\t_\t19\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t14\tmwe\t_\t_\n16\tLipper\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tAnalytical\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tServices\t_\tPROPN\tNNPS\t_\t19\tcompound\t_\t_\n19\tInc\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tElaine\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGarzarelli\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\truns\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\tShearson\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tLehman\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tHutton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tInc.\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n12\t335\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tSector\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAnalysis\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPortfolio\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twill\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\topen\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n23\tdown\t_\tADV\tRP\t_\t22\tadvmod\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tleast\t_\tADJ\tJJS\t_\t26\tnmod:npmod\t_\t_\n26\t50\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tpoints\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\ttechnical\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tfactors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n33\tsome\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tpanic\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tselling\t_\tNOUN\tVBG\t_\t30\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\trebound\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\ttelling\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tshe\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\texpects\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\two\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tdecline\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t26\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n22\t10\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n23\t%\t_\tSYM\tNN\t_\t26\tdep\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tdep\t_\t_\n25\t15\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\trecent\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\thighs\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tMs.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGarzarelli\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tshe\t_\tPRON\tPRP\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tswamped\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tphone\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tcalls\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tover\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tweekend\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnervous\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tshareholders\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tHalf\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tthem\t_\tPRON\tPRP\t_\t2\tnmod\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\treally\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tscared\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\twant\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\tshe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t7\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tI\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\t'm\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\ttrying\t_\tVERB\tVBG\t_\t7\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\ttalk\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthem\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\tout\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n5\tIf\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n7\tall\t_\tDET\tDT\t_\t9\tdep\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\tbullish\t_\tADJ\tJJ\t_\t15\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tI\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n12\t'd\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\treally\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n15\tupset\t_\tADJ\tVBN\t_\t2\tccomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbackdrop\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tslide\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tmarkedly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdifferent\t_\tADJ\tJJ\t_\t20\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tthat\t_\tPRON\tDT\t_\t9\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tOctober\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\t1987\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcrash\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tfund\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmanagers\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\targue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tunlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttoday\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdollar\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\tweak\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\trates\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\trising\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n21\tvery\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tovervalued\t_\tADJ\tVBN\t_\t11\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\tthey\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tFrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t6\tnmod:poss\t_\t_\n5\t'\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tstandpoint\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tinstitutions\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tindividuals\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tlearned\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tpainful\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlesson\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t...\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tselling\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tlows\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n22\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tBlack\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMonday\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tStephen\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tBoesel\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tmanager\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n33\t$\t_\tSYM\t$\t_\t39\tamod\t_\t_\n34\t580\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\tT.\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tRowe\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tPrice\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tGrowth\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\tIncome\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tFund\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n5\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\tdo\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t'll\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tget\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tpanic\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treaction\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNewport\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tfiscal-first-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t13\tamod\t_\t_\n12\t15\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\t19\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tsomewhat\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n21\tbelow\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tanalysts\t_\tNOUN\tNNS\t_\t24\tnmod:poss\t_\t_\n23\t'\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\testimates\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t19\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tcents\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t27\tdep\t_\t_\n29\t23\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t27\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmaker\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tscientific\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinstruments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tlaser\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tparts\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\torders\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n12\tbelow\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\texpectations\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\trecent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n5\tsales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tcurrent\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\twill\t_\tNOUN\tMD\t_\t12\tdep\t_\t_\n11\tabout\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tequal\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tyearearlier\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tfigure\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n20\tNewport\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\treported\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n22\tnet\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tincome\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t1.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t21\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n35\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n37\t14.1\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tmillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tsales\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRipples\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstrike\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\t55,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\tMachinists\t_\tPROPN\tNNS\t_\t9\tcompound\t_\t_\n8\tunion\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tagainst\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tBoeing\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tair\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcarriers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tAmerica\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tWest\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAirlines\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tannounced\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tpostpone\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tnew\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tservice\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tout\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tHouston\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\tbecause\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t31\tmwe\t_\t_\n33\tdelays\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n34\tin\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n35\treceiving\t_\tVERB\tVBG\t_\t33\tacl\t_\t_\n36\taircraft\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n37\tfrom\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\tSeattle\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n40\tjet\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tmaker\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tPeter\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOtradovec\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tvice\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tplanning\t_\tNOUN\tVBG\t_\t5\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tPhoenix\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tAriz.\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tcarrier\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tan\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinterview\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\twork\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tstoppage\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tBoeing\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tnow\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tentering\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\t13th\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t28\tnmod:tmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t35\tpunct\t_\t_\n34\thas\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n35\tcaused\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n36\tsome\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tturmoil\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tour\t_\tPRON\tPRP$\t_\t40\tnmod:poss\t_\t_\n40\tscheduling\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t''\t_\tPUNCT\t''\t_\t35\tpunct\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n43\tthat\t_\tSCONJ\tIN\t_\t62\tmark\t_\t_\n44\tmore\t_\tADJ\tJJR\t_\t46\tadvmod\t_\t_\n45\tthan\t_\tADP\tIN\t_\t44\tmwe\t_\t_\n46\t500\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n47\tpassengers\t_\tNOUN\tNNS\t_\t62\tnsubjpass\t_\t_\n48\twho\t_\tPRON\tWP\t_\t50\tnsubjpass\t_\t_\n49\twere\t_\tAUX\tVBD\t_\t50\tauxpass\t_\t_\n50\tbooked\t_\tVERB\tVBN\t_\t47\tacl:relcl\t_\t_\n51\tto\t_\tPART\tTO\t_\t52\tmark\t_\t_\n52\tfly\t_\tVERB\tVB\t_\t50\txcomp\t_\t_\n53\tout\t_\tADP\tRB\t_\t55\tcase\t_\t_\n54\tof\t_\tADP\tIN\t_\t55\tcase\t_\t_\n55\tHouston\t_\tPROPN\tNNP\t_\t52\tnmod\t_\t_\n56\ton\t_\tADP\tIN\t_\t58\tcase\t_\t_\n57\tAmerica\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n58\tWest\t_\tPROPN\tNNP\t_\t52\tnmod\t_\t_\n59\twould\t_\tAUX\tMD\t_\t62\taux\t_\t_\n60\tnow\t_\tADV\tRB\t_\t62\tadvmod\t_\t_\n61\tbe\t_\tAUX\tVB\t_\t62\tauxpass\t_\t_\n62\tput\t_\tVERB\tVBN\t_\t35\tconj\t_\t_\n63\ton\t_\tADP\tIN\t_\t65\tcase\t_\t_\n64\tother\t_\tADJ\tJJ\t_\t65\tamod\t_\t_\n65\tairlines\t_\tNOUN\tNNS\t_\t62\tnmod\t_\t_\n66\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOtradovec\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tBoeing\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\ttold\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tAmerica\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tWest\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\t757\t_\tPROPN\tCD\t_\t21\tnsubjpass\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubjpass\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tsupposed\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tThursday\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n18\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tdelivered\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n22\tuntil\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tNov.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t7\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tday\t_\tNOUN\tNN\t_\t23\tdep\t_\t_\n28\tafter\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tairline\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n31\thad\t_\tAUX\tVBD\t_\t33\taux\t_\t_\n32\tbeen\t_\tAUX\tVBN\t_\t33\taux\t_\t_\n33\tplanning\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tinitiate\t_\tVERB\tVB\t_\t33\txcomp\t_\t_\n36\tservice\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n37\tat\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tHouston\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\twith\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tfour\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n41\tdaily\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tflights\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n44\tincluding\t_\tVERB\tVBG\t_\t46\tcase\t_\t_\n45\tthree\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n46\tnonstops\t_\tNOUN\tNNS\t_\t42\tnmod\t_\t_\n47\tto\t_\tADP\tTO\t_\t48\tcase\t_\t_\n48\tPhoenix\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n49\tand\t_\tCONJ\tCC\t_\t46\tcc\t_\t_\n50\tone\t_\tNUM\tCD\t_\t51\tnummod\t_\t_\n51\tnonstop\t_\tNOUN\tJJ\t_\t46\tconj\t_\t_\n52\tto\t_\tADP\tTO\t_\t54\tcase\t_\t_\n53\tLas\t_\tPROPN\tNNP\t_\t54\tcompound\t_\t_\n54\tVegas\t_\tPROPN\tNNP\t_\t51\tnmod\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthose\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\troutes\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tbegin\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tuntil\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tJan\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsupposed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tsend\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tAmerica\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tanother\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\t757\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\ttwin-engine\t_\tADJ\tNN\t_\t13\tamod\t_\t_\n13\taircraft\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n14\tas\t_\tADV\tRB\t_\t13\tcc\t_\t_\n15\twell\t_\tADV\tRB\t_\t14\tmwe\t_\t_\n16\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\t737\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n19\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tend\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThose\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\talmost\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tcertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tarrive\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tlate\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n5\tno\t_\tDET\tDT\t_\t9\tneg\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tAmerica\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tflights\t_\tNOUN\tNNS\t_\t32\tnsubjpass\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tincluding\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tservice\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tSan\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tAntonio\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tTexas\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n21\tNewark\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tN.J.\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n26\tPalmdale\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tCalif.\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n30\thave\t_\tAUX\tVBP\t_\t32\taux\t_\t_\n31\tbeen\t_\tAUX\tVBN\t_\t32\tauxpass\t_\t_\n32\taffected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n33\tby\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdelays\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tBoeing\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tdeliveries\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\treaction\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tunderscores\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdomino\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\teffect\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tthat\t_\tADP\tIN\t_\t19\tdobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\thuge\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmanufacturer\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tsuch\t_\tADJ\tJJ\t_\t17\tcase\t_\t_\n16\tas\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tBoeing\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tcan\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\thave\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n20\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tparts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\teconomy\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tsure\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\thelp\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmachinists\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tput\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n10\tadded\t_\tADJ\tVBN\t_\t11\tamod\t_\t_\n11\tpressure\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tfeel\t_\tVERB\tVB\t_\t31\tccomp\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\treally\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tstand\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\twant\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tprolonged\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\twalkout\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n21\tTom\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tBaker\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tMachinists\t_\tPROPN\tNNS\t_\t28\tnmod:poss\t_\t_\n27\t'\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tDistrict\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\t751\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tinterview\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tyesterday\t_\tNOUN\tNN\t_\t31\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tcustomers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tlike\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tvery\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tmuch\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAmerica\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWest\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tthough\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmaller\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\tairline\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\ttherefore\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\taffected\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n14\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tdelayed\t_\tADJ\tVBN\t_\t17\tamod\t_\t_\n17\tdelivery\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsingle\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tplane\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tthan\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n23\tmany\t_\tADJ\tJJ\t_\t28\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tcompetitors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tbe\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfigure\t_\tVERB\tVBP\t_\t33\tccomp\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tAmerican\t_\tPROPN\tJJ\t_\t9\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tUnited\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tprobably\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\thave\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n10\tsuch\t_\tDET\tJJ\t_\t13\tdet:predet\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\thard\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tcounting\t_\tVERB\tVBG\t_\t13\tdep\t_\t_\n15\tall\t_\tDET\tPDT\t_\t17\tdet:predet\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tplanes\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tfleets\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n23\tmight\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\tnot\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tmiss\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n26\tone\t_\tNUM\tCD\t_\t25\tdobj\t_\t_\n27\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tall\t_\tDET\tDT\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n31\tMr.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tOtradovec\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trandom\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcheck\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\tdid\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tindicate\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstrike\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\thaving\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n17\tmuch\t_\tADJ\tRB\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\teffect\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tairline\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\toperations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSouthwest\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAirlines\t_\tPROPN\tNNPS\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBoeing\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\t737-300\t_\tPROPN\tCD\t_\t3\tdobj\t_\t_\n7\tset\t_\tNOUN\tVBN\t_\t6\tamod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdelivery\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmonth\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n17\texpects\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\thave\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tplane\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\ttime\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tclose\t_\tADV\tJJ\t_\t21\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tcompletion\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tBoeing\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n10\t's\t_\tAUX\tPOS\t_\t11\tauxpass\t_\t_\n11\ttold\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n12\tus\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tthere\t_\tPRON\tEX\t_\t18\texpl\t_\t_\n14\two\t_\tAUX\tMD\t_\t18\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n16\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tproblem\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tSouthwest\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tspokesman\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tAMR\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tBoeing\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tassured\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n10\tAmerican\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAirlines\t_\tPROPN\tNNPS\t_\t9\tdobj\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tdeliver\t_\tVERB\tVB\t_\t9\tdep\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\t757\t_\tPROPN\tCD\t_\t14\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tlater\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmonth\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAmerican\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tpreparing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tdelivery\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tanother\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\t757\t_\tPROPN\tCD\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tearly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tDecember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\t20\t_\tNUM\tCD\t_\t5\tconj\t_\t_\n15\tmore\t_\tADJ\tJJR\t_\t14\tadvmod\t_\t_\n16\tnext\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tanticipating\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n22\tany\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tchanges\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthat\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttimetable\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tSeattle\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBoeing\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tspokesman\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\texplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n12\tbeen\t_\tVERB\tVBN\t_\t15\tcop\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tconstant\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcommunication\t_\tNOUN\tNN\t_\t7\tccomp\t_\t_\n16\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tall\t_\tDET\tDT\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tcustomers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n25\timpossible\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tpredict\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\twhat\t_\tPRON\tWP\t_\t30\tdet\t_\t_\n29\tfurther\t_\tADJ\tRB\t_\t30\tamod\t_\t_\n30\tdisruptions\t_\tNOUN\tNNS\t_\t33\tnsubjpass\t_\t_\n31\tmight\t_\tAUX\tMD\t_\t33\taux\t_\t_\n32\tbe\t_\tAUX\tVB\t_\t33\tauxpass\t_\t_\n33\ttriggered\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n34\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tstrike\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tsupervisors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tnon-striking\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\temployees\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tfinish\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tsome\t_\tADV\tDT\t_\t13\tadvmod\t_\t_\n13\t40\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\taircraft\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n16\tmostly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t747\t_\tPROPN\tCD\t_\t14\tdep\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\t767\t_\tPROPN\tCD\t_\t21\tcompound\t_\t_\n20\tjumbo\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tjets\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n22\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tEverett\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tWash.\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tplant\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n31\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n32\tthat\t_\tPRON\tWDT\t_\t36\tnsubjpass\t_\t_\n33\twere\t_\tAUX\tVBD\t_\t36\tauxpass\t_\t_\n34\tall\t_\tADV\tDT\t_\t36\tadvmod\t_\t_\n35\tbut\t_\tADV\tCC\t_\t34\tmwe\t_\t_\n36\tcompleted\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n37\tbefore\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\twalkout\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t8\tnsubjpass\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tdelivered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfifth\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tplane\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\t747-400\t_\tPROPN\tJJ\t_\t12\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n18\tsupposed\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tflown\t_\tVERB\tVBN\t_\t18\txcomp\t_\t_\n22\tout\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tweekend\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tAir\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tChina\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tdate\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n4\tyet\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\tauxpass\t_\t_\n6\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n9\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbargaining\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttable\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twant\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tmake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tknow\t_\tVERB\tVBP\t_\t5\txcomp\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\twant\t_\tVERB\tVBP\t_\t8\tccomp\t_\t_\n12\tbefore\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tcome\t_\tVERB\tVBP\t_\t11\tadvcl\t_\t_\n15\tback\t_\tADP\tRB\t_\t14\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tDoug\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHammond\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfederal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmediator\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\twho\t_\tPRON\tWP\t_\t29\tnsubj\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n27\tbeen\t_\tVERB\tVBN\t_\t29\tcop\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tcontact\t_\tNOUN\tNN\t_\t24\tacl:relcl\t_\t_\n30\twith\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tboth\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tsides\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\tsince\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tstrike\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\tbegan\t_\tVERB\tVBD\t_\t29\tadvcl\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcommunity\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tone\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n10\tanticipating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tspeedy\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tresolution\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThough\t_\tPROPN\tIN\t_\t7\tdep\t_\t_\n2\tBoeing\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tbattered\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n8\talong\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\tactually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\trisen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tlast\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tweeks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tstrength\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tnew\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\torders\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\ttaken\t_\tVERB\tVBN\t_\t34\tccomp\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tviews\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlabor\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tsituation\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tget\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tsettled\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tshort\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tterm\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n22\tthings\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tlook\t_\tVERB\tVBP\t_\t15\tconj\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\trosy\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tBoeing\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tlong\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tterm\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n34\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n35\tHoward\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tRubel\t_\tPROPN\tNNP\t_\t34\tnsubj\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tan\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tanalyst\t_\tNOUN\tNN\t_\t36\tappos\t_\t_\n40\tat\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tCyrus\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tJ.\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tLawrence\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tInc\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t4\t_\tNUM\tCD\t_\t4\tdobj\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tclose\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t57.375\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcomposite\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tYork\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tStock\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tExchange\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBaker\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tthinks\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t17\tnsubj\t_\t_\n8\tearliest\t_\tADV\tJJS\t_\t7\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpact\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tstruck\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n14\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tend\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmonth\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\thinting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tunion\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n28\tmay\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tresume\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n30\tnegotiations\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\tas\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tearly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n33\tas\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthis\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tweek\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tpossible\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstrike\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tlast\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tconsiderably\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tlonger\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\texpect\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\timmediate\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tresolution\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tanything\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tBoeing\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tChairman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tFrank\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tShrontz\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tstriking\t_\tVERB\tJJ\t_\t10\tamod\t_\t_\n10\tworkers\t_\tNOUN\tNNS\t_\t8\tiobj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tletter\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tsaying\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tmy\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tknowledge\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\tBoeing\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\trepresents\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\tbest\t_\tADJ\tJJS\t_\t29\tamod\t_\t_\n27\toverall\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tthree-year\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcontract\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n31\tany\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\tmajor\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\tU.S.\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tindustrial\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tfirm\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\trecent\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\thistory\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBaker\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tletter\t_\tNOUN\tNN\t_\t31\tdep\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\toffer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n13\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n17\twage\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tincrease\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tlife\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpact\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n26\tplus\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tbonuses\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n30\tvery\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tweak\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tmiscalculated\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tunion\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tresolve\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tworkers\t_\tNOUN\tNNS\t_\t15\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdisgust\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tbeing\t_\tAUX\tVBG\t_\t18\tauxpass\t_\t_\n18\tforced\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\twork\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tovertime\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tseparate\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdevelopments\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n6\tTalks\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tbroken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\toff\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tMachinists\t_\tPROPN\tNNS\t_\t12\tcompound\t_\t_\n12\trepresentatives\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tLockheed\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n18\tCalabasas\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tCalif.\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\taerospace\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tcontinuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\twork\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthrough\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\texpired\t_\tADJ\tVBN\t_\t10\tamod\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\tplanned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tstrike\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tvote\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tSunday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n12\tthat\t_\tADP\tDT\t_\t15\tnsubjpass\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tpushed\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n16\tback\t_\tADP\tRB\t_\t15\tcompound:prt\t_\t_\n17\tindefinitely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n2\tUnited\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tAuto\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tWorkers\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tLocal\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\t1069\t_\tPROPN\tCD\t_\t23\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\trepresents\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n10\t3,000\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tworkers\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tBoeing\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\thelicopter\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tunit\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tDelaware\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCounty\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tPa.\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tagreed\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\textend\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tcontract\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tday-by-day\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tbasis\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\t10-day\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tnotification\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tcancel\t_\tVERB\tVB\t_\t38\tacl\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n42\twhile\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n43\tit\t_\tPRON\tPRP\t_\t44\tnsubj\t_\t_\n44\tcontinues\t_\tVERB\tVBZ\t_\t27\tadvcl\t_\t_\n45\tbargaining\t_\tVERB\tNN\t_\t44\txcomp\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccord\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\texpired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\tBoeing\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\treceived\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\torder\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tMartinair\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHolland\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tfour\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n16\tmodel\t_\tADJ\tNN\t_\t19\tamod\t_\t_\n17\t767-300\t_\tPROPN\tCD\t_\t19\tcompound\t_\t_\n18\twide-body\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tjetliners\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n20\tvalued\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\ttotal\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tabout\t_\tADV\tIN\t_\t26\tadvmod\t_\t_\n26\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n27\t326\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplanes\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tlong\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\trange\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tversions\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tmedium-haul\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttwin-jet\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tdelivered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tPratt\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n17\t&\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tWhitney\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tPW4060\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tengines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tPratt\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tWhitney\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tUnited\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tTechnologies\t_\tPROPN\tNNPS\t_\t10\tcompound\t_\t_\n10\tInc\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMartinair\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHolland\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAmsterdam\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBoeing\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokeswoman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdelivery\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tdate\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tplanes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n12\tstill\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tbeing\t_\tAUX\tVBG\t_\t14\tauxpass\t_\t_\n14\tworked\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n15\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tvariety\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\treasons\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tnot\t_\tADV\tRB\t_\t28\tneg\t_\t_\n25\tbecause\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tof\t_\tADP\tIN\t_\t25\tmwe\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tstrike\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBridget\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tO'Brian\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tarticle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAtco\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLtd.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\tutilities\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tarm\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tconsidering\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\tbuilding\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\telectric\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tpower\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tplants\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tsome\t_\tDET\tDT\t_\t13\tappos\t_\t_\n16\tvalued\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t21\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\tone\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tCanadian\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdollars\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t25\tpunct\t_\t_\n25\tUS$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n26\t851\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t-RRB-\t_\tPUNCT\t-RRB-\t_\t25\tpunct\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tGreat\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tBritain\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\telsewhere\t_\tADV\tRB\t_\t32\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tC.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRichardson\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tAtco\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsenior\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tvice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tfinance\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n14\t50.1%-owned\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n15\tCanadian\t_\tPROPN\tJJ\t_\t18\tcompound\t_\t_\n16\tUtilities\t_\tPROPN\tNNS\t_\t18\tcompound\t_\t_\n17\tLtd.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tunit\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\treviewing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n21\tcogeneration\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tprojects\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\teastern\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n28\tconventional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n29\telectric\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tpower\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\tgenerating\t_\tNOUN\tVBG\t_\t32\tcompound\t_\t_\n32\tplants\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n33\telsewhere\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tincluding\t_\tVERB\tVBG\t_\t36\tcase\t_\t_\n36\tBritain\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\twhere\t_\tADV\tWRB\t_\t42\tadvmod\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tBritish\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tgovernment\t_\tNOUN\tNN\t_\t42\tnsubj\t_\t_\n42\tplans\t_\tNOUN\tNNS\t_\t36\tacl:relcl\t_\t_\n43\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n44\tallow\t_\tVERB\tVB\t_\t42\txcomp\t_\t_\n45\tlimited\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n46\tcompetition\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n47\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\telectrical\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tgeneration\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n50\tfrom\t_\tADP\tIN\t_\t52\tcase\t_\t_\n51\tprivate-sector\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tsuppliers\t_\tNOUN\tNNS\t_\t46\tnmod\t_\t_\n53\tas\t_\tADP\tIN\t_\t54\tcase\t_\t_\n54\tpart\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n55\tof\t_\tADP\tIN\t_\t58\tcase\t_\t_\n56\tits\t_\tPRON\tPRP$\t_\t58\tnmod:poss\t_\t_\n57\tprivatization\t_\tNOUN\tNN\t_\t58\tcompound\t_\t_\n58\tprogram\t_\tNOUN\tNN\t_\t54\tnmod\t_\t_\n59\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprojects\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t4\tcop\t_\t_\n4\tC$\t_\tSYM\t$\t_\t12\tccomp\t_\t_\n5\t1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tplus\t_\tADV\tCC\t_\t4\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n10\tMr.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tRichardson\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tgo\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n7\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tthem\t_\tPRON\tPRP\t_\t6\tnmod\t_\t_\n9\talone\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tCanadian\t_\tPROPN\tJJ\t_\t14\tcompound\t_\t_\n14\tUtilities\t_\tPROPN\tNNS\t_\t17\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tequity\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tstake\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n20\tsmall\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tIdeally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t'd\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\toperator\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n11\t-LCB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproject\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t-RCB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmodest\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tequity\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tinvestor\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOur\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tlong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsuit\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tour\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tproven\t_\tADJ\tVBN\t_\t7\tamod\t_\t_\n7\tability\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\toperate\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tpower\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tplants\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRichardson\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\toffer\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tspecifics\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tregarding\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n8\tAtco\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tVERB\tPOS\t_\t8\tcase\t_\t_\n10\tproposed\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n11\tBritish\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tproject\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tcompete\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tcustomers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n23\ttwo\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n24\thuge\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n25\tBritish\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n26\tpower\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\tgenerating\t_\tNOUN\tVBG\t_\t28\tcompound\t_\t_\n28\tcompanies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n29\tthat\t_\tPRON\tWDT\t_\t32\tnsubjpass\t_\t_\n30\twould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\tformed\t_\tVERB\tVBN\t_\t28\tacl:relcl\t_\t_\n33\tunder\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tcountry\t_\tNOUN\tNN\t_\t37\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tplan\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\tprivatize\t_\tVERB\tVB\t_\t37\tacl\t_\t_\n40\tits\t_\tPRON\tPRP$\t_\t45\tnmod:poss\t_\t_\n41\tmassive\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n42\twater\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t42\tcc\t_\t_\n44\telectric\t_\tADJ\tJJ\t_\t42\tconj\t_\t_\n45\tutilities\t_\tNOUN\tNNS\t_\t39\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBritain\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tgovernment\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\traise\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\t#\t_\tSYM\t#\t_\t10\tcompound\t_\t_\n9\t20\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tbillion\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t12\tpunct\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n13\t31.05\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t-RRB-\t_\tPUNCT\t-RRB-\t_\t12\tpunct\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsale\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tmost\t_\tADJ\tJJS\t_\t18\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n23\tgiant\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n24\twater\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\telectric\t_\tADJ\tJJ\t_\t24\tconj\t_\t_\n27\tutilities\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n29\tbeginning\t_\tVERB\tVBG\t_\t31\tcase\t_\t_\n30\tnext\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tmonth\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tplanned\t_\tADJ\tVBN\t_\t5\tamod\t_\t_\n3\telectric\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tutility\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tscheduled\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tnext\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n13\talone\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\traise\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\t#\t_\tSYM\t#\t_\t19\tcompound\t_\t_\n18\t13\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n21\tmaking\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tworld\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tlargest\t_\tADJ\tJJS\t_\t28\tamod\t_\t_\n27\tpublic\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\toffering\t_\tNOUN\tNN\t_\t21\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tterms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\tindependent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgenerators\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n11\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcompete\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t15\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tcustomers\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tuntil\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1994\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tanother\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t10\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t13\tconj\t_\t_\n27\tbetween\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1994\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\t1998\t_\tNUM\tCD\t_\t28\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tCanadian\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tUtilities\t_\tPROPN\tNNS\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\trevenue\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tC$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t1.16\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tmainly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tnatural\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tgas\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\telectric\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tutility\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tbusinesses\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAlberta\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhere\t_\tADV\tWRB\t_\t26\tadvmod\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tserves\t_\tVERB\tVBZ\t_\t21\tacl:relcl\t_\t_\n27\tabout\t_\tADV\tIN\t_\t28\tadvmod\t_\t_\n28\t800,000\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcustomers\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmove\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n8\taround\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tworld\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tderegulate\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tgeneration\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\telectricity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tRichardson\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n24\tCanadian\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tUtilities\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\thopes\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tcapitalize\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\treal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tthrust\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tour\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tutility\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tside\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tadding\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tCanadian\t_\tPROPN\tJJ\t_\t19\tcompound\t_\t_\n19\tUtilities\t_\tPROPN\tNNS\t_\t22\tnsubj\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\talso\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tmulling\t_\tVERB\tVBG\t_\t16\tccomp\t_\t_\n23\tprojects\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tunderdeveloped\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcountries\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n28\tthough\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n29\the\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n30\twould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n31\tbe\t_\tVERB\tVB\t_\t32\tcop\t_\t_\n32\tspecific\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tCanadian\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tUtilities\t_\tPROPN\tNNS\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\talone\t_\tADV\tRB\t_\t0\troot\t_\t_\n6\tin\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\texploring\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n8\tpower\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tgeneration\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\topportunities\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tBritain\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tanticipation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tprivatization\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tprogram\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tcertainly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tpower\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tgenerating\t_\tNOUN\tVBG\t_\t10\tcompound\t_\t_\n10\tprojects\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tEngland\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tBruce\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tStram\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tvice\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tcorporate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstrategy\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tcorporate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tplanning\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tEnron\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCorp.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tHouston\t_\tPROPN\tNNP\t_\t30\tappos\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n35\tbig\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n36\tnatural\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tgas\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tproducer\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tpipeline\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\toperator\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStram\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tEnron\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tconsidering\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tbuilding\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n8\tgas-fired\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpower\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplants\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.K.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\tcapable\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n15\tof\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tproducing\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\t500\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmegawatts\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tpower\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcost\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tabout\t_\tADV\tIN\t_\t31\tadvmod\t_\t_\n27\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n28\t300\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tdep\t_\t_\n31\t$\t_\tSYM\t$\t_\t24\tnmod\t_\t_\n32\t400\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPSE\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthird\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n12\t1.3\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n15\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n16\t1.7\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t14\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\tto\t_\tADP\tTO\t_\t21\tdep\t_\t_\n23\t18\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tcents\t_\tNOUN\tNNS\t_\t21\tdep\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-ago\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdesigner\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\toperator\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\tcogeneration\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\twaste\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\theat\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\trecovery\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplants\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t22\tdep\t_\t_\n22\t326,000\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\tfour\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshare\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n30\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\trevenue\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tabout\t_\tADV\tIN\t_\t34\tadvmod\t_\t_\n34\t$\t_\tSYM\t$\t_\t31\tnmod\t_\t_\n35\t41.4\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\timprovement\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t7\tauxpass\t_\t_\n7\trelated\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tadditional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcogeneration\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfacilities\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t15\tnsubjpass\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tput\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n16\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\toperation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCONCORDE\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\ttrans-Atlantic\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tflights\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t2,400\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tParis\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t3,200\t_\tNUM\tCD\t_\t6\tconj\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tLondon\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tCentennial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tJournal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tarticle\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\tOct.\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n7\t5\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfares\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\treversed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDiamond\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tShamrock\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tOffshore\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tPartners\t_\tPROPN\tNNPS\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tdiscovered\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\tgas\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\toffshore\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n11\tLouisiana\t_\tPROPN\tNNP\t_\t10\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twell\t_\tADV\tNN\t_\t3\tnsubj\t_\t_\n3\tflowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trate\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\t2.016\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tcubic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfeet\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tgas\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\t16\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\t64-inch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\topening\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n21\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tdepths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n23\tbetween\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\t5,782\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\t5,824\t_\tNUM\tCD\t_\t24\tconj\t_\t_\n27\tfeet\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDiamond\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tShamrock\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toperator\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\t100\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t11\tamod\t_\t_\n11\tinterest\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\twell\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tDiamond\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tShamrock\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tOffshore\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t12.5\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tclose\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t8.25\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tStock\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tExchange\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcomposite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tKaufman\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tBroad\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tformed\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n11\t53.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tlimited\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tpartnership\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsubsidiary\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tbuy\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tland\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tCalifornia\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tsuitable\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tresidential\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdevelopment\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpartnership\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tKaufman\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tBroad\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\tLand\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tDevelopment\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tVenture\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tLimited\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPartnership\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t50-50\t_\tADJ\tCD\t_\t17\tamod\t_\t_\n16\tjoint\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tventure\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttrust\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tcreated\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tinstitutional\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tclients\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tHeitman\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tAdvisory\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCorp.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tunit\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n32\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tHeitman\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tFinancial\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCorp.\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n38\treal\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n39\testate\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n40\tadvisory\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n42\tmanagement\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n44\tdevelopment\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n45\tcompany\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n46\twith\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\toffices\t_\tNOUN\tNNS\t_\t45\tnmod\t_\t_\n48\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n49\tChicago\t_\tPROPN\tNNP\t_\t47\tnmod\t_\t_\n50\tand\t_\tCONJ\tCC\t_\t49\tcc\t_\t_\n51\tBeverly\t_\tPROPN\tNNP\t_\t52\tcompound\t_\t_\n52\tHills\t_\tPROPN\tNNP\t_\t49\tconj\t_\t_\n53\t,\t_\tPUNCT\t,\t_\t52\tpunct\t_\t_\n54\tCalif\t_\tPROPN\tNNP\t_\t52\tappos\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tKaufman\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tBroad\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\thome\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tbuilding\t_\tNOUN\tVBG\t_\t8\tcompound\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tidentify\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tinstitutional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tland\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tpurchased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tjoint\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tventure\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\tyet\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\treceived\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tzoning\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tapprovals\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\trequired\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n19\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tdevelopment\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tpart\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\tKaufman\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n26\t&\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tBroad\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n29\tjob\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\twill\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\tbe\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tobtain\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n34\tsuch\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tapprovals\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpartnership\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\truns\t_\tVERB\tVBZ\t_\t38\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\trisk\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tnot\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tget\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tapprovals\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdevelopment\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\treturn\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\tcan\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tbuy\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n23\tland\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\twholesale\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\trather\t_\tADV\tRB\t_\t25\tcc\t_\t_\n27\tthan\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tretail\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n29\tprices\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n31\twhich\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n32\tcan\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\tresult\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tsizable\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tsavings\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n38\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n39\tBruce\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tKaratz\t_\tPROPN\tNNP\t_\t38\tnsubj\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n42\tpresident\t_\tNOUN\tNN\t_\t40\tappos\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t42\tcc\t_\t_\n44\tchief\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n45\texecutive\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n46\tofficer\t_\tNOUN\tNN\t_\t42\tconj\t_\t_\n47\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tKaufman\t_\tPROPN\tNNP\t_\t42\tnmod\t_\t_\n49\t&\t_\tCONJ\tCC\t_\t48\tcc\t_\t_\n50\tBroad\t_\tPROPN\tNNP\t_\t48\tconj\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t38\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\treally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\thave\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n10\tadequate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcapital\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tproperties\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\traw\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstate\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcash\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTypically\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tdevelopers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\toption\t_\tVERB\tNN\t_\t21\tccomp\t_\t_\n5\tproperty\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n8\tthen\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n9\tonce\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tget\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tadministrative\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tapprovals\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tbuy\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t17\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tKaratz\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tadding\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\the\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tbelieves\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tjoint\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tventure\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n32\tis\t_\tVERB\tVBZ\t_\t34\tcop\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tfirst\t_\tADJ\tJJ\t_\t28\tccomp\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\tkind\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tusually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\toperate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tconservative\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmanner\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBy\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tsetting\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n3\tup\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tjoint\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tventure\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\tKaufman\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tBroad\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\tcan\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t35\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\taggressive\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tapproach\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tof\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tbuying\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\traw\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tland\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tavoiding\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tnegative\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\timpacts\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n29\town\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tbalance\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tsheet\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n33\tMr.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tKaratz\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tputting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tonly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t10\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcapital\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\talthough\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tresponsible\t_\tADJ\tJJ\t_\t4\tadvcl\t_\t_\n17\tfor\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tproviding\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tmanagement\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tplanning\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\tprocessing\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n24\tservices\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tjoint\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tventure\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tone\t_\tNUM\tCD\t_\t30\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tways\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tassure\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpipeline\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tland\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tfuel\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n17\tour\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tgrowth\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tminimum\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\trisk\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n23\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n24\tour\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n28\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tKaratz\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tplastics\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\ttook\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n7\toff\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tQuantum\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tChemical\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp.\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\talong\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tride\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttiming\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tQuantum\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tNN\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tJohn\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tHoyt\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStookey\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n16\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n17\tnothing\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n18\tless\t_\tADV\tJJR\t_\t17\tamod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinspired\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\tbecause\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n24\thad\t_\tAUX\tVBD\t_\t26\taux\t_\t_\n25\tjust\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tincreased\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n27\tQuantum\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\treliance\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tplastics\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\toutpaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmuch\t_\tADJ\tRB\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tchemical\t_\tADJ\tNN\t_\t8\tamod\t_\t_\n8\tindustry\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tannual\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tprofit\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tgrew\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n13\tfivefold\t_\tADJ\tRB\t_\t12\tadvmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStookey\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tboom\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n9\tIt\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tgoing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlast\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\twhole\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tlot\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n17\tlonger\t_\tADV\tJJR\t_\t13\tadvmod\t_\t_\n18\tthan\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n19\tanybody\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tthinks\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tnose-dived\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tplummeting\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsecurities\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tno\t_\tADV\tDT\t_\t8\tneg\t_\t_\n8\tbetter\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tbreak-even\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n11\tresults\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tthird\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tprofit\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t99.8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t3.92\t_\tNUM\tCD\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n35\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tsales\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\t$\t_\tSYM\t$\t_\t36\tnmod\t_\t_\n39\t724.4\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\thaving\t_\tAUX\tVBG\t_\t5\taux\t_\t_\n5\tlost\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n6\tnearly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tnummod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tvalue\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tsince\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tSept.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t1\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n16\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t34.375\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\tdown\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n24\t1.125\t_\tNUM\tCD\t_\t22\tnmod:npmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n26\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n27\tNew\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n28\tYork\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n29\tStock\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tExchange\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tcomposite\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\ttrading\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n33\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdegree\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tQuantum\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\trepresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\ttimes\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tarrived\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tproducers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tso-called\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcommodity\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tplastics\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\tpervade\t_\tVERB\tVBP\t_\t19\tacl:relcl\t_\t_\n22\tmodern\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tlife\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHaving\t_\tAUX\tVBG\t_\t3\taux\t_\t_\n2\tjust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tpassed\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n4\tthrough\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tone\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t9\tadvmod\t_\t_\n9\tprofitable\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tperiods\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\thistory\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tthese\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tproducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\tnow\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\teroding\t_\tVERB\tVBG\t_\t18\tdep\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tPricing\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tcycles\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tnothing\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tplastics\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n13\tproducers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdecline\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsome\t_\tDET\tDT\t_\t4\tnmod\t_\t_\n7\tlooks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tsteep\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tcomparison\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\theady\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n18\tjust\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tbehind\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t15\tacl:relcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tall\t_\tDET\tDT\t_\t6\tdep\t_\t_\n5\twonderful\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\theroes\t_\tNOUN\tNNS\t_\t11\tccomp\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\texecutive\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n14\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tone\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tQuantum\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tcompetitors\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tNow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbottom\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\theap\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tQuantum\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttrouble\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\tmagnified\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\theavy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdependence\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tplastics\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOnce\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tknown\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n3\tas\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tNational\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tDistillers\t_\tPROPN\tNNPS\t_\t2\tnmod\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tChemical\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCorp.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\texited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\twine\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tspirits\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tbusiness\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n19\tplowed\t_\tVERB\tVBD\t_\t12\tconj\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t19\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tresources\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tplastics\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tafter\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tStookey\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\ttook\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tchief\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\texecutive\t_\tNOUN\tNN\t_\t34\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tjob\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t1986\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStookey\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t59\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\told\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tinterviewed\t_\tVERB\tVBN\t_\t8\txcomp\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tarticle\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n17\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tconsistently\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\targued\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n22\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tlong\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thaul\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n27\tacross\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tboth\t_\tDET\tCC\t_\t30\tcc:preconj\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpeaks\t_\tNOUN\tNNS\t_\t41\tdep\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\ttroughs\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tplastics\t_\tNOUN\tNNS\t_\t37\tcompound\t_\t_\n37\tmarket\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n38\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n39\tQuantum\t_\tPROPN\tNNP\t_\t41\tnsubj\t_\t_\n40\twill\t_\tAUX\tMD\t_\t41\taux\t_\t_\n41\tprosper\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n42\tthrough\t_\tADP\tIN\t_\t45\tcase\t_\t_\n43\tits\t_\tPRON\tPRP$\t_\t45\tnmod:poss\t_\t_\n44\tnew\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tdirection\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tlot\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\tmostly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\ttied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tpolyethylene\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tresin\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tused\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tgarbage\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbags\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tmilk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tjugs\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\thousewares\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\ttoys\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n24\tmeat\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tpackaging\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n27\tamong\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tother\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\titems\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tpolyethylene\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tclaimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlargest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tabout\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tcompetitors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n5\tincluding\t_\tVERB\tVBG\t_\t8\tcase\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tChemical\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tUnion\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tCarbide\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tseveral\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\toil\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tgiants\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\tmuch\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tbroader\t_\tADJ\tJJR\t_\t22\tamod\t_\t_\n21\tbusiness\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tinterests\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n24\tso\t_\tADV\tRB\t_\t18\tcc\t_\t_\n25\tare\t_\tAUX\tVBP\t_\t27\tauxpass\t_\t_\n26\tbetter\t_\tADV\tRBR\t_\t27\tadvmod\t_\t_\n27\tcushioned\t_\tVERB\tVBN\t_\t18\tconj\t_\t_\n28\tagainst\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tswings\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tpolyethylene\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tmoves\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tmere\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpenny\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpound\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tQuantum\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tannual\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tfluctuates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tabout\t_\tADV\tIN\t_\t20\tadvmod\t_\t_\n20\t85\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\tprovided\t_\tVERB\tVBD\t_\t30\tmark\t_\t_\n26\tno\t_\tDET\tDT\t_\t28\tneg\t_\t_\n27\tother\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tvariables\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n29\tare\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n30\tchanging\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmonths\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tpolyethylene\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n9\teven\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmore\t_\tADV\tJJR\t_\t19\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tthat\t_\tPRON\tDT\t_\t10\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcommodity\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplastics\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdive\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tBenchmark\t_\tADJ\tNN\t_\t2\tamod\t_\t_\n2\tgrades\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsold\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n7\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tas\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t11\tadvmod\t_\t_\n10\tas\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n11\t50\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpound\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\tlast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tspring\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\tskidded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t23\tamod\t_\t_\n22\t35\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tcents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\t40\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tprice\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tethylene\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tchemical\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n10\tbuilding\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tblock\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tpolyethylene\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tnearly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tfast\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdiscrepancy\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\thurts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tQuantum\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tbadly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\town\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tplants\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tcover\t_\tVERB\tVBP\t_\t3\tadvcl\t_\t_\n12\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\thalf\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tethylene\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tneeds\t_\tNOUN\tVBZ\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\taccounts\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tearly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thint\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trout\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmaking\t_\tNOUN\tVBG\t_\t11\tnmod\t_\t_\n15\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tstart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tChina\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\taux\t_\t_\n6\tputting\t_\tVERB\tVBG\t_\t1\tacl:relcl\t_\t_\n7\tin\t_\tADP\tIN\t_\t6\tcompound:prt\t_\t_\n8\thuge\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\torders\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tpolyethylene\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n13\tabruptly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\thalted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthem\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tCalculating\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n2\tthat\t_\tDET\tDT\t_\t8\tmark\t_\t_\n3\texcess\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpolyethylene\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n6\tsoon\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tsloshing\t_\tVERB\tVBG\t_\t1\tccomp\t_\t_\n9\taround\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbuyers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tthen\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbet\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n19\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n20\tpeaked\t_\tADJ\tJJ\t_\t16\tccomp\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n22\tso\t_\tADV\tRB\t_\t16\tcc\t_\t_\n23\tbegan\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tdraw\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tdown\t_\tADP\tRP\t_\t25\tcompound:prt\t_\t_\n27\tinventories\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n28\trather\t_\tADV\tRB\t_\t25\tcc\t_\t_\n29\tthan\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\torder\t_\tVERB\tVB\t_\t25\tconj\t_\t_\n31\tnew\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tproduct\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tKenneth\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMitchell\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tpolyethylene\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tproducers\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n13\twere\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tsurprised\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlearn\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\thow\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n18\tmuch\t_\tADV\tJJ\t_\t21\tadvmod\t_\t_\n19\tinventories\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\thad\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\tswelled\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n22\tthroughout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tdistribution\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchain\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tspiraled\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n29\tup\t_\tADV\tRP\t_\t28\tadvmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tPeople\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thoarding\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n6\tbags\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tproducers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\thit\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n7\tbottom\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tincreases\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpound\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n13\teffect\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tnext\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tseveral\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tweeks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tone\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tknows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhether\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tposted\t_\tADJ\tVBN\t_\t11\tamod\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tstick\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n14\tonce\t_\tSCONJ\tRB\t_\t18\tmark\t_\t_\n15\tproducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tcustomers\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\tstart\t_\tVERB\tVBP\t_\t13\tadvcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\thaggle\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tdoubter\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tGeorge\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tKrug\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tchemical-industry\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tanalyst\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOppenheimer\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbear\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tplastics\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNoting\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n2\tothers\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\testimates\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\tof\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tincreases\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tsustained\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tremarks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n17\tSome\t_\tDET\tDT\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n19\tOctober\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tNovember\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\t1992\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n4\tefforts\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tfirm\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tundermined\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tproducers\t_\tNOUN\tNNS\t_\t15\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tplans\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\texpand\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tproduction\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcapacity\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tquick\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tturnaround\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tcrucial\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tcash\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trequirements\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tremain\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n13\theavy\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcarry\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tout\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n9\tthree-year\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n12\t1.3\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tplant-expansion\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n16\tstarted\t_\tVERB\tVBD\t_\t15\tacl\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpayments\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tlong-term\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n15\tdouble\t_\tVERB\tRB\t_\t0\troot\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tago\t_\tADV\tIN\t_\t15\tadvcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n21\tabout\t_\tADV\tIN\t_\t24\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n23\t240\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n26\tlargely\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n27\tbecause\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tof\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n29\tdebt\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n30\ttaken\t_\tVERB\tVBN\t_\t29\tacl\t_\t_\n31\ton\t_\tADP\tIN\t_\t30\tcompound:prt\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tpay\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n34\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n35\t$\t_\tSYM\t$\t_\t38\tamod\t_\t_\n36\t50-a-share\t_\tADJ\tJJ\t_\t35\tdep\t_\t_\n37\tspecial\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tdividend\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n39\tearlier\t_\tADV\tRBR\t_\t41\tadvmod\t_\t_\n40\tthis\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tyear\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdescribed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tpayout\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttime\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tway\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tshare\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbonanza\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tholders\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\tbecause\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tprice\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\treflecting\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\thuge\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tprofit\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tincreases\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpayment\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teffort\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdispel\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n12\ttakeover\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tspeculation\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhether\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcash\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcrunch\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tmight\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\teventually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tforce\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tcut\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tquarterly\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdividend\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\traised\t_\tVERB\tVBD\t_\t14\tacl\t_\t_\n17\t36\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\t75\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tnummod\t_\t_\n26\tyear\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n27\tago\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\thas\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\ttopic\t_\tNOUN\tNN\t_\t30\txcomp\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tintense\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tspeculation\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tWall\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tStreet\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\tsince\t_\tSCONJ\tIN\t_\t42\tmark\t_\t_\n40\tMr.\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tStookey\t_\tPROPN\tNNP\t_\t42\tnsubj\t_\t_\n42\tdeflected\t_\tVERB\tVBD\t_\t30\tadvcl\t_\t_\n43\tdividend\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tquestions\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n45\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n46\ta\t_\tDET\tDT\t_\t49\tdet\t_\t_\n47\tSept.\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n48\t29\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n49\tmeeting\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n50\twith\t_\tADP\tIN\t_\t51\tcase\t_\t_\n51\tanalysts\t_\tNOUN\tNNS\t_\t49\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tviewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tresponse\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tthat\t_\tSCONJ\tDT\t_\t9\tmark\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdirectors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\treview\t_\tVERB\tVBP\t_\t4\tdep\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdividend\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tregularly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tnothing\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n17\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tstandard\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tline\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\texecutives\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tothers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\taway\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tthinking\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n6\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tgiven\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\tsomething\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tless\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tusual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tstraight-from-the-shoulder\t_\tADJ\tNN\t_\t15\tamod\t_\t_\n15\tperformance\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmeeting\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tQuantum\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tshares\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t2.625\t_\tNUM\tCD\t_\t15\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t36.625\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tBig\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tBoard\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\ttop\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\teverything\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\telse\t_\tADV\tRB\t_\t4\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tconfronts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdisaster\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tplant\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tMorris\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tIll\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texplosion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tidled\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplant\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJune\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tprogressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tSeptember\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\twithin\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t12\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\thours\t_\tNOUN\tNNS\t_\t12\tadvcl\t_\t_\n19\tof\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tcompleting\t_\tVERB\tVBG\t_\t18\tnmod\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tdrawn-out\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tprocess\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tof\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\trestarting\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t25\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsecond\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\texplosion\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\toccurred\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tworkers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsix\t_\tNUM\tCD\t_\t6\tnsubj\t_\t_\n6\tremain\t_\tVERB\tVBP\t_\t3\tconj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thospital\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\thuman\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttoll\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tmost\t_\tADV\tRBS\t_\t7\tadvmod\t_\t_\n7\tpainful\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdimension\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tyet\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsudden\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchange\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tQuantum\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tfortunes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n9\tsteadily\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tlowering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\taccident\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\tpicking\t_\tVERB\tVBG\t_\t10\tconj\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\ttrade-group\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tsafety\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tawards\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tprolonged\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\thalt\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tplant\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tintroduce\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tanother\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\timponderable\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tinto\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tQuantum\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tfinancial\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfuture\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tplant\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\taux\t_\t_\n7\trunning\t_\tVERB\tVBG\t_\t24\tadvcl\t_\t_\n8\tflat\t_\tADV\tJJ\t_\t9\tadvmod\t_\t_\n9\tout\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tmeet\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n12\tdemand\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n14\tcalculating\t_\tVERB\tVBG\t_\t24\tcsubj\t_\t_\n15\tlost\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tthus\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\tclaims\t_\tNOUN\tVBZ\t_\t16\tdep\t_\t_\n20\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tbusiness-interruption\t_\tADJ\tNN\t_\t22\tamod\t_\t_\n22\tinsurance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tstraightforward\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tnumbers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbecome\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\ttrickier\t_\tADJ\tJJR\t_\t4\txcomp\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tsubject\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tdickering\t_\tNOUN\tVBG\t_\t8\tnmod\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tinsured\t_\tNOUN\tJJ\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tinsurer\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\tdemand\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tshifting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t20\tccomp\t_\t_\n4\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tX\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpercent\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tproduct\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tY\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tpercent\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tthat\t_\tPRON\tDT\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\trecalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tTheodore\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tSemegran\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tanalyst\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tShearson\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tLehman\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tHutton\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\twho\t_\tPRON\tWP\t_\t31\tnsubj\t_\t_\n31\twent\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n32\tthrough\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthis\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\texercise\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tduring\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\this\t_\tPRON\tPRP$\t_\t38\tnmod:poss\t_\t_\n37\tformer\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tcareer\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n39\tas\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tchemical\t_\tADJ\tNN\t_\t42\tamod\t_\t_\n42\tengineer\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\tthen\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tyou\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tnegotiate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\thopes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tMorris\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tplant\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhere\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n8\tlimited\t_\tVERB\tJJ\t_\t9\tamod\t_\t_\n9\tproduction\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tgot\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n11\tunder\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tway\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tweek\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tresume\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n18\tfull\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\toperation\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tend\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplant\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tusually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\taccounts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\t20\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t10\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tQuantum\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tpolyethylene\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tproduction\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\t50\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tethylene\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tproduction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\teverything\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tlooks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tgrim\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tQuantum\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tplant\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\texpansion\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tshould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tstrengthen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tsway\t_\tNOUN\tVB\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tpolyethylene\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tbusiness\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n19\toften\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\ttaken\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n21\tthrough\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tsheer\t_\tNOUN\tJJ\t_\t23\tcompound\t_\t_\n23\tcapacity\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBy\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tlifting\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n3\tethylene\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tproduction\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\texpansion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\talso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tlower\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\traw\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tmaterial\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcosts\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\ttightening\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tgrip\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n9\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tlarge\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbusiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\toutside\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tchemicals\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tpropane\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarketing\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThrough\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tventure\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tinvestment\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbanker\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tFirst\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tBoston\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tQuantum\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tcompleted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAugust\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tacquisition\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tPetrolane\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\ttransaction\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\tvalued\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n26\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n28\t1.18\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tbillion\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tPetrolane\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tsecond-largest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tpropane\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tdistributor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlargest\t_\tADJ\tJJS\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tSuburban\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPropane\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n8\talready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\towned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tQuantum\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tQuantum\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcrisis\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tpast\t_\tADP\tJJ\t_\t8\tnmod\t_\t_\n10\tright\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tspeculate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tweakening\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tyet\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tattract\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsuitor\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tname\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tsurfacing\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\trumors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\tBritish\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tPetroleum\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n13\tlooking\t_\tVERB\tVBG\t_\t9\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\texpand\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tpolyethylene\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tbusiness\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n2\tabout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbid\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tQuantum\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tBP\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tspokesman\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n14\tWe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n15\tpretty\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tmuch\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\thave\t_\tVERB\tVB\t_\t11\tdep\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tpolicy\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tnot\t_\tADV\tRB\t_\t22\tneg\t_\t_\n22\tcommenting\t_\tVERB\tVBG\t_\t19\tacl\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\trumors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n27\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tthink\t_\tVERB\tVBP\t_\t17\tconj\t_\t_\n29\tthat\t_\tADP\tIN\t_\t30\tnsubj\t_\t_\n30\tfalls\t_\tVERB\tVBZ\t_\t28\tccomp\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthat\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcategory\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tRJR\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tNabisco\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tdisbanding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tdivision\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tresponsible\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tbuying\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n11\tnetwork\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tadvertising\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tjust\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tnummod\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n18\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n19\tmoving\t_\tVERB\tVBG\t_\t17\tdep\t_\t_\n20\t11\t_\tNUM\tCD\t_\t19\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tgroup\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\t14\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\temployees\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tNew\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tYork\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n30\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tAtlanta\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tamod\t_\t_\n6\tYork-based\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfood\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\ttobacco\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tgiant\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\ttaken\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n13\tprivate\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\tearlier\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n20\t25\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tleveraged\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbuy-out\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tKohlberg\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tKravis\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tRoberts\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n28\t&\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tCo.\t_\tPROPN\tNNP\t_\t27\tconj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n31\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\tis\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n35\tshutting\t_\tVERB\tVBG\t_\t31\tccomp\t_\t_\n36\tdown\t_\tADP\tRP\t_\t35\tcompound:prt\t_\t_\n37\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n38\tRJR\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n39\tNabisco\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n40\tBroadcast\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tunit\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n44\tdismissing\t_\tVERB\tVBG\t_\t35\tconj\t_\t_\n45\tits\t_\tPRON\tPRP$\t_\t47\tnmod:poss\t_\t_\n46\t14\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n47\temployees\t_\tNOUN\tNNS\t_\t44\tdobj\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n49\tin\t_\tADP\tIN\t_\t51\tcase\t_\t_\n50\ta\t_\tDET\tDT\t_\t51\tdet\t_\t_\n51\tmove\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n52\tto\t_\tPART\tTO\t_\t53\tmark\t_\t_\n53\tsave\t_\tVERB\tVB\t_\t51\tacl\t_\t_\n54\tmoney\t_\tNOUN\tNN\t_\t53\tdobj\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tRJR\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tdiscussing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tnetwork-buying\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tplans\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n13\tmain\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tadvertising\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tFCB/Leber\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tKatz\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tMcCann\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tErickson\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfound\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n4\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsize\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tour\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tmedia\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tpurchases\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tad\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tagency\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tdo\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n17\tjust\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tjob\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tsignificantly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tlower\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n25\tcost\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tspokesman\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\twho\t_\tPRON\tWP\t_\t33\tnsubj\t_\t_\n33\tdeclined\t_\tVERB\tVBD\t_\t30\tacl:relcl\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tspecify\t_\tVERB\tVB\t_\t33\txcomp\t_\t_\n36\thow\t_\tADV\tWRB\t_\t37\tadvmod\t_\t_\n37\tmuch\t_\tADJ\tJJ\t_\t39\tadvmod\t_\t_\n38\tRJR\t_\tPROPN\tNNP\t_\t39\tnsubj\t_\t_\n39\tspends\t_\tVERB\tVBZ\t_\t35\tccomp\t_\t_\n40\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tnetwork\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n42\ttelevision\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\ttime\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tclose\t_\tADV\tNN\t_\t2\tamod\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tRJR\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tspending\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n11\tabout\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n13\t140\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tnetwork\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\ttelevision\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\troughly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n26\t200\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t25\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbroadcast\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t9\tauxpass\t_\t_\n9\tdisbanded\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n10\tDec.\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t1\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmove\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n16\two\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\taffect\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n19\tRJR\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tprint\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n23\tradio\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tspot-television\t_\tADJ\tNN\t_\t23\tconj\t_\t_\n26\tbuying\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpractices\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbroadcast\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tuntil\t_\tADP\tIN\t_\t20\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tago\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n16\tRJR\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tprevious\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmanagement\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tmoved\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tAtlanta\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tcompany\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\theadquarters\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthis\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tsummer\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\temployee\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgroup\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tRJR\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tmoved\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\t11\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\temployees\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tSeptember\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n20\tbecause\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n22\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tsupposed\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n26\tbe\t_\tVERB\tVB\t_\t28\tcop\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tfuture\t_\tNOUN\tNN\t_\t24\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thired\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tthree\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tbuyers\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tunit\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\twithin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tpast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tweeks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\twooing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n19\tthem\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tjobs\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tadvertising\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tagencies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tRJR\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tmoved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t11\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\temployees\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tYork\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\tlast\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmonth\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n16\tbecause\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tgroup\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n19\thad\t_\tAUX\tVBD\t_\t24\taux\t_\t_\n20\tthen\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n21\tbeen\t_\tVERB\tVBN\t_\t24\tcop\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmidst\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n25\tof\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tpurchasing\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n27\tad\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\ttime\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tnetworks\t_\tNOUN\tNNS\t_\t34\tnmod:poss\t_\t_\n32\t'\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tupcoming\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tseason\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstudies\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n4\t-LCB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n5\ton\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tclosing\t_\tVERB\tVBG\t_\t3\tnmod\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tunit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t-RCB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n10\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tcompleted\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n14\tuntil\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tnow\t_\tADV\tRB\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tpresident\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tPeter\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tChrisanthopoulos\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n10\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\toffice\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tafternoon\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcomment\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tfinalizing\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tsteel-import\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquotas\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tallocating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tlarger\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n21\tdeveloping\t_\tADJ\tVBG\t_\t25\tamod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tnewly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tindustrialized\t_\tADJ\tVBN\t_\t21\tconj\t_\t_\n25\tcountries\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\thave\t_\tVERB\tVBP\t_\t25\tacl:relcl\t_\t_\n28\trelatively\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tunsubsidized\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tsteel\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tindustries\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tnegotiated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsignificant\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcut\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tJapan\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tsteel\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tquota\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tmade\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n18\tonly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tminor\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tincrease\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tsteel\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tallotment\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tEuropean\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCommunity\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBrazil\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tsimilar\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tMexico\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSouth\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tKorea\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tnegotiate\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tsomewhat\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbigger\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tthan\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\thad\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n25\tunder\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n27\tprevious\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n28\tfive-year\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tsteel\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tquotas\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\twhich\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n33\texpired\t_\tVERB\tVBD\t_\t30\tacl:relcl\t_\t_\n34\tSept.\t_\tPROPN\tNNP\t_\t33\tnmod:tmod\t_\t_\n35\t30\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBrazil\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tVenezuela\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tonly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcountries\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tcompleted\t_\tVERB\tVBN\t_\t8\tacl:relcl\t_\t_\n13\tsteel\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\ttalks\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tending\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n22\tOct.\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t1\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n25\t1990\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tsteelmakers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tsupplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tabout\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n10\t80\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t100\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\ttons\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tused\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n20\tannually\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tnation\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tremaining\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n4\t20\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n6\tneeded\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tsteel-quota\t_\tNOUN\tJJ\t_\t10\tcompound\t_\t_\n10\tnegotiations\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tallocate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n12\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tforeign\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsuppliers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n19\twith\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdifference\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tsupplied\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n23\tmainly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t25\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t30\tnsubjpass\t_\t_\n28\tis\t_\tAUX\tVBZ\t_\t30\tauxpass\t_\t_\n29\tn't\t_\tPART\tRB\t_\t30\tneg\t_\t_\n30\tincluded\t_\tVERB\tVBN\t_\t25\tacl:relcl\t_\t_\n31\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tquota\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tprogram\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcountries\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\thave\t_\tVERB\tVB\t_\t2\tacl:relcl\t_\t_\n7\tformal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tsteel\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tquotas\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n15\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tTaiwan\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tSweden\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n20\tArgentina\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n22\talso\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tsupplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n25\tsteel\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcountries\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n9\tmade\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tinformal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tagreements\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\tare\t_\tVERB\tVBP\t_\t17\tcop\t_\t_\n17\tsimilar\t_\tADJ\tJJ\t_\t11\tacl:relcl\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tquotas\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tearlier\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\textend\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tsteel\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tquotas\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tknown\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n15\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tvoluntary\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\trestraint\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tagreements\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tuntil\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tMarch\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n22\t31\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n24\t1992\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tuse\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tthat\t_\tDET\tIN\t_\t10\tdet\t_\t_\n8\ttwo-and-a-half\t_\tADJ\tCD\t_\t9\tdep\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t10\tamod\t_\t_\n10\tperiod\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\twork\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n13\ttoward\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tinternational\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tconsensus\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\ton\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tfreeing\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tup\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tinternational\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tsteel\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\ttrade\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t29\tnsubjpass\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n27\tbeen\t_\tAUX\tVBN\t_\t29\tauxpass\t_\t_\n28\tnotoriously\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tmanaged\t_\tVERB\tVBN\t_\t23\tacl:relcl\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tsubsidized\t_\tVERB\tJJ\t_\t29\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n33\tprotected\t_\tVERB\tVBN\t_\t29\tconj\t_\t_\n34\tby\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tgovernments\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\ttermed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n9\ttrade\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tliberalization\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tdespite\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tfact\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n20\tmerely\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\tan\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\textension\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMexico\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tone\t_\tNUM\tCD\t_\t1\tacl:relcl\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfirst\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcountries\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tconclude\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tsteel\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\ttalks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n19\tvirtually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tquota\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n24\t0.95\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t20\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tsteel\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\t0.48\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t20\tnmod\t_\t_\n34\tunder\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tprevious\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tquotas\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tSouth\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKorea\t_\tPROPN\tNNP\t_\t14\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\t1.9\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\tunder\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprevious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tquotas\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsmall\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincrease\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tabout\t_\tADV\tIN\t_\t22\tadvmod\t_\t_\n22\t1.95\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tincrease\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trises\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n5\tslightly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t8\tadvmod\t_\t_\n7\tthan\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\t2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t3\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n15\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tjoint\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tKorean-U.S.\t_\tPROPN\tNN\t_\t19\tcompound\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tproject\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n21\tincluded\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tBrazil\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tincrease\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tallowance\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t1.43\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\thad\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\trecent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tEC\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tJapan\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tU.S.\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tlargest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tsteel\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsuppliers\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\taux\t_\t_\n16\tfilling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tquotas\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfull\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\textent\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tEC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tsteel\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tcoping\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tstrong\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tEuropean\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdemand\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\taux\t_\t_\n17\tsupplying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n18\tabout\t_\tADV\tIN\t_\t19\tadvmod\t_\t_\n19\t5\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tcompared\t_\tVERB\tVBN\t_\t28\tcase\t_\t_\n26\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tquotas\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tabout\t_\tADV\tIN\t_\t31\tadvmod\t_\t_\n31\t6.7\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\t%\t_\tSYM\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tAUX\tVBN\t_\t4\taux\t_\t_\n4\tshipping\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tsteel\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\ttotal\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t4.5\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tcompared\t_\tVERB\tVBN\t_\t18\tcase\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tquota\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t5.9\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\trecent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttalks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tEC\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tquota\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tincreased\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n12\tabout\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n13\t300,000\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\ttons\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t7\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t6.7\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1988\t_\tNUM\tCD\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tquota\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t7\tcop\t_\t_\n6\tas\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\thigh\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t6.9\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1984\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tagreed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tcut\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tquota\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n13\t5\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t8\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t5.9\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t8\tnmod\t_\t_\n18\tpreviously\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tEC\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n6\tBrazil\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\tMexico\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n10\tSouth\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tKorea\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n12\tprovide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tabout\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n14\t80\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\timported\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tunder\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tquota\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tprogram\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbalance\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tsupplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thost\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tsmaller\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n10\texporters\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t14\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tAustralia\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tVenezuela\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tabout\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tadvmod\t_\t_\n6\textra\t_\tADJ\tJJ\t_\t7\tadvmod\t_\t_\n7\t2\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tsteel\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tgive\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tforeign\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tsuppliers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tquota\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\ttalks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t4\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tessentially\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmade\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tIN\t_\t4\tcompound:prt\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t1\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tincrease\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\toverall\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tquota\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\t1\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n19\tfrom\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tcutting\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\tJapan\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tallowance\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNegotiators\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tWhite\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\ttrade\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\toffice\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\trepeat\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tthese\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tquota\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tnegotiations\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tnext\t_\tADP\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\thave\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n19\tanother\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\t1\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tsteel\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tallocate\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\toptional\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\t1%-a-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincreases\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n5\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tsteel\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tquota\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprogram\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\tauxpass\t_\t_\n11\tbuilt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tBush\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tadministration\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tsteel-quota\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tprogram\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tgive\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tnegotiators\t_\tNOUN\tNNS\t_\t20\tdep\t_\t_\n23\tleverage\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tforeign\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tsteel\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsuppliers\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\ttry\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tget\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tthem\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\twithdraw\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n35\tsubsidies\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tprotectionism\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n38\tfrom\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\ttheir\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n40\town\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n41\tsteel\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tindustries\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tfiscal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tsecond-quarter\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tearnings\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\ttrail\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n9\t1988\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tresults\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\tanticipates\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\tseveral\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tproducts\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tlead\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n20\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n23\tmuch\t_\tADV\tJJ\t_\t24\tadvmod\t_\t_\n24\tstronger\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n26\tperformance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tsecond\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\thalf\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttelecommunications\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t272,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tfive\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tsecond\t_\tNOUN\tJJ\t_\t24\tcompound\t_\t_\n24\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tended\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n27\tSept.\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n28\t30\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t5\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPierce\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tchairman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tinterview\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmost\t_\tADV\tRBS\t_\t19\tadvmod\t_\t_\n19\trecent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n22\tbe\t_\tVERB\tVB\t_\t25\tcop\t_\t_\n23\tabout\t_\tADV\tIN\t_\t24\tadvmod\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tcents\t_\tNOUN\tNNS\t_\t10\tccomp\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tshare\t_\tNOUN\tNN\t_\t25\tnmod:npmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\trevenue\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tjust\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n32\tunder\t_\tADP\tIN\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t29\tnmod\t_\t_\n34\t4\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlower\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tresults\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPierce\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\treflect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t12-month\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdecline\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tindustry\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsales\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tprivately\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\towned\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n19\tpay\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttelephones\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tElcotel\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tprimary\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbusiness\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPierce\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n5\tthat\t_\tADP\tIN\t_\t6\tamod\t_\t_\n6\tline\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tstrengthen\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tnext\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tElcotel\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n19\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tbenefit\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tfrom\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tmoving\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tinto\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tareas\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tForemost\t_\tADV\tJJ\t_\t4\tdep\t_\t_\n2\tamong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthose\t_\tPRON\tDT\t_\t4\tnmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t17\tdep\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tentrance\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n9\tinto\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tpublic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tfacsimile\t_\tNOUN\tJJ\t_\t13\tcompound\t_\t_\n13\tbusiness\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPierce\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnext\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tElcotel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tplace\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\t10,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tfax\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmachines\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tmade\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n15\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tMinolta\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tJapan\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\thotels\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tmunicipal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbuildings\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n26\tdrugstores\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n28\tother\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tpublic\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tsettings\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n31\taround\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcountry\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tprovide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcredit-card\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\treader\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmachines\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tcollect\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tstore\t_\tVERB\tNN\t_\t11\tconj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\tforward\t_\tVERB\tRB\t_\t11\tconj\t_\t_\n16\tbilling\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tdata\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPierce\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tElcotel\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tshould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\trealize\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tminimum\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t10\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\trecurring\t_\tVERB\tVBG\t_\t15\tamod\t_\t_\n14\tnet\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\teach\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmachine\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\teach\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tdeveloped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tautomatic\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcall\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprocessor\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tmake\t_\tVERB\tVB\t_\t8\tacl:relcl\t_\t_\n12\tfurther\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tuse\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tsystem\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tfor\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tautomating\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\thandling\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n23\tcredit-card\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcalls\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tcollect\t_\tADJ\tVB\t_\t27\tamod\t_\t_\n27\tcalls\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAutomatic\t_\tADJ\tNNP\t_\t3\tamod\t_\t_\n2\tcall\t_\tNOUN\tVB\t_\t3\tcompound\t_\t_\n3\tprocessors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tprovide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthat\t_\tDET\tIN\t_\t7\tdet\t_\t_\n7\tsystem\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tvirtually\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tany\t_\tDET\tDT\t_\t11\tamod\t_\t_\n11\ttelephone\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tPierce\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t11\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tnot\t_\tADV\tRB\t_\t18\tneg\t_\t_\n18\tjust\t_\tADV\tRB\t_\t11\tdep\t_\t_\n19\tphones\t_\tVERB\tNNS\t_\t18\tdep\t_\t_\n20\tproduced\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tElcotel\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tproducing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tline\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tconvenience\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttelephones\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n15\tdo\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\taccept\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n18\tcoins\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tuse\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\thotel\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tlobbies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\toffice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tlobbies\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n29\thospitality\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tlounges\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n32\tsimilar\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tsettings\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPierce\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\testimated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tprocessors\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tconvenience\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tphones\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tproduce\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n12\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n14\t5\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\trecurring\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n17\tnet\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tearnings\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\teach\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmachine\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n22\teach\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBritain\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tretail\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tprice\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n7\t0.7\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tSeptember\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tAugust\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n15\tup\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n16\t7.6\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t15\tnmod:npmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tCentral\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tStatistical\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tOffice\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tQuest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMedical\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tadopted\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tshareholders\t_\tNOUN\tNNS\t_\t11\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\trights\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tplan\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t23\tnmod\t_\t_\n14\trights\t_\tNOUN\tNNS\t_\t23\tnsubjpass\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpurchase\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tcommon\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tdistributed\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n24\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tdividend\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\tshareholders\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\trecord\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tOct.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n34\t23\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tadopted\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tresponse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tknown\t_\tVERB\tJJ\t_\t14\tamod\t_\t_\n14\toffers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tQuest\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmaker\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tmarketer\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\thospital\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tproducts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trights\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tallow\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tshareholders\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpurchase\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tQuest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdiscount\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tperson\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tgroup\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tacquires\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t20\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\t15\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tcommon\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tannounces\t_\tVERB\tVBZ\t_\t17\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\ttender\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\toffer\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeasuring\t_\tNOUN\tVBG\t_\t2\tcompound\t_\t_\n2\tcups\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\treplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttablespoons\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlaundry\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\troom\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tProcter\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tGamble\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbegin\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ttesting\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\tnext\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmonth\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsuperconcentrated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdetergent\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\trequire\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n17\tonly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tadvmod\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t20\tnummod\t_\t_\n20\tspoonfuls\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\tper\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\twashload\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tstems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tlessons\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tlearned\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJapan\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\twhere\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tlocal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcompetitors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\thad\t_\tVERB\tVBN\t_\t8\tacl:relcl\t_\t_\n14\tphenomenal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsuccess\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tconcentrated\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tsoapsuds\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tmarks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tP&G\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgrowing\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tconcern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tJapanese\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\trivals\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n14\tas\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\tKao\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tmay\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tbring\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tsuperconcentrates\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tCincinnati\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tconsumer-products\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tgiant\t_\tNOUN\tJJ\t_\t6\tnsubjpass\t_\t_\n5\tgot\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tclobbered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tJapan\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\tKao\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tintroduced\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tpowerful\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdetergent\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tcalled\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n20\tAttack\t_\tPROPN\tNNP\t_\t19\txcomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n23\tquickly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\twon\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\t30\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tamod\t_\t_\n28\tstake\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tJapanese\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmarkets\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\twant\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\tget\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tcaught\t_\tVERB\tVBN\t_\t5\txcomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tone\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tindustry\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\twatcher\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tRetailers\t_\tPROPN\tNNS\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tPhoenix\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tAriz.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tP&G\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tpowdered\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdetergent\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tcalled\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n17\tCheer\t_\tPROPN\tVB\t_\t16\txcomp\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tColor\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGuard\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n22\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t25\tcop\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tshelves\t_\tNOUN\tNNS\t_\t7\tccomp\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthat\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tearly\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tNovember\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tP&G\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokeswoman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tshipments\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tPhoenix\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tstarted\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n10\tlate\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmonth\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tstudy\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\texpanding\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tothers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSuperconcentrates\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tentirely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tP&G\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tintroduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsuperconcentrated\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tLemon\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCheer\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tJapan\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\tafter\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\twatching\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsuccess\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAttack\t_\tPROPN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tAttack\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thit\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tshelves\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n9\tP&G\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tJapanese\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n18\tabout\t_\tADV\tIN\t_\t19\tadvmod\t_\t_\n19\t8\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tmore\t_\tADJ\tJJR\t_\t24\tadvmod\t_\t_\n23\tthan\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\t20\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\thelp\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tLemon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCheer\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tP&G\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\tauxpass\t_\t_\n12\tnow\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\testimated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\t12\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t13\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tJapanese\t_\tPROPN\tNNPS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tembraced\t_\tVERB\tVBN\t_\t29\tadvcl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcompact\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpackaging\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tconvenience\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tconcentrated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tproducts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttrue\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttest\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tP&G\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t29\tcop\t_\t_\n22\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n24\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n25\t4\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\tU.S.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tdetergent\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\twhere\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n32\tgrowth\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n33\tis\t_\tVERB\tVBZ\t_\t34\tcop\t_\t_\n34\tslow\t_\tADJ\tJJ\t_\t29\tacl:relcl\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\tliquids\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n37\thave\t_\tAUX\tVBP\t_\t38\taux\t_\t_\n38\tgained\t_\tVERB\tVBN\t_\t34\tconj\t_\t_\n39\tprominence\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n40\tover\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tpowders\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\thave\t_\tAUX\tVB\t_\t5\taux\t_\t_\n5\tchosen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tmarket\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tproduct\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tunder\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tCheer\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tname\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tsince\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t18\tnsubjpass\t_\t_\n16\t's\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n17\talready\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\texpanded\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tbest-selling\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tTide\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n22\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\t16\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n24\tdifferent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tvarieties\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tincluding\t_\tVERB\tVBG\t_\t32\tcase\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tbig\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\thit\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tTide\t_\tPROPN\tNNP\t_\t32\tappos\t_\t_\n35\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tBleach\t_\tNOUN\tNNP\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tsuperconcentrates\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n9\talways\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\teasy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tpersuade\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tconsumers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tthat\t_\tSCONJ\tWDT\t_\t17\tdep\t_\t_\n15\tless\t_\tADJ\tJJR\t_\t17\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tmore\t_\tADJ\tRBR\t_\t12\tdep\t_\t_\n18\t;\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tpeople\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\ttend\t_\tVERB\tVBP\t_\t10\tparataxis\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdump\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ttoo\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tmuch\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdetergent\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tinto\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\twashing\t_\tNOUN\tVBG\t_\t30\tcompound\t_\t_\n30\tmachine\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n32\tbelieving\t_\tVERB\tVBG\t_\t21\txcomp\t_\t_\n33\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\ttakes\t_\tVERB\tVBZ\t_\t32\tccomp\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcup\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tpowder\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n40\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n41\treally\t_\tADV\tRB\t_\t42\tadvmod\t_\t_\n42\tclean\t_\tVERB\tVB\t_\t35\tadvcl\t_\t_\n43\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tlaundry\t_\tNOUN\tNN\t_\t42\tdobj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tearly\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\t1980s\t_\tNOUN\tCD\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tP&G\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tlaunch\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\there\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tconcentrated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdetergent\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tunder\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tAriel\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tbrand\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tname\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n19\tthat\t_\tADP\tIN\t_\t21\tdobj\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tmarkets\t_\tVERB\tVBZ\t_\t18\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tEurope\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tproduct\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n7\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\tas\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n9\tconcentrated\t_\tADJ\tJJ\t_\t3\tacl:relcl\t_\t_\n10\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tCheer\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tbombed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\ttest\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tDenver\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tdropped\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tP&G\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tothers\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\ttried\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\trepeatedly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\thook\t_\tVERB\tNN\t_\t6\txcomp\t_\t_\n10\tconsumers\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tdetergent\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tfabric\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\tsoftener\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcombinations\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tpouches\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n22\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n23\tn't\t_\tPART\tRB\t_\t24\tneg\t_\t_\n24\tsold\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n25\twell\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n27\tdespite\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tconvenience\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tP&G\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcontends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tCheer\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tunique\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tformula\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\talso\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\toffers\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tingredient\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tprevents\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\tcolors\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tfrom\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tfading\t_\tVERB\tJJ\t_\t17\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tretailers\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tembrace\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tproduct\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tpart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\ttake\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tless\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n18\tshelf\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tspace\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n3\tshelf\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tspace\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tcheap\t_\tADJ\tJJ\t_\t10\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tbigger\t_\tADJ\tJJR\t_\t10\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n10\tbetter\t_\tADJ\tRBR\t_\t13\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tHugh\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tZurkuhlen\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tanalyst\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tSalomon\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tBros\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\twith\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbrands\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tvying\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tthat\t_\tPRON\tDT\t_\t15\tnsubj\t_\t_\n11\t's\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n12\tno\t_\tADV\tRB\t_\t13\tneg\t_\t_\n13\tlonger\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tCheer\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsells\t_\tVERB\tVBZ\t_\t14\tadvcl\t_\t_\n6\twell\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttrend\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\ttoward\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tsmaller\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n12\tpackaging\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n14\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\taccelerate\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\tcompetitors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tfollow\t_\tVERB\tVBP\t_\t16\tadvcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tsuperconcentrates\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\tretailers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tprobably\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tpush\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\t-LCB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\tless-established\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n10\t-RCB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\tbrands\t_\tNOUN\tVBZ\t_\t6\tdobj\t_\t_\n12\tout\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n13\taltogether\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tCompetition\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tbound\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tget\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ttougher\t_\tADJ\tJJR\t_\t5\txcomp\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tKao\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tintroduces\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tproduct\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tAttack\t_\tPROPN\tNN\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t3\tmark\t_\t_\n2\tbe\t_\tVERB\tVB\t_\t3\tcop\t_\t_\n3\tsure\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tKao\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\teasy\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ttaking\t_\tVERB\tVBG\t_\t11\tdep\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\taway\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmighty\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tP&G\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\thas\t_\tVERB\tVBZ\t_\t20\tacl:relcl\t_\t_\n24\tabout\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t23\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tKao\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\tinterested\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n9\tin\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tselling\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n11\tdetergents\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n17\tso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tfar\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tfocused\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tacquisitions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t31\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tpurchase\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tAndrew\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tJergens\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n38\tCincinnati\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\thand-lotion\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tmaker\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tproduct-testing\t_\tNOUN\tJJ\t_\t6\tcompound\t_\t_\n6\tfacility\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tCalifornia\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tP&G\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tinterest\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsuperconcentrated\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdetergent\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tgoes\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n11\tbeyond\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tconcern\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tJapanese\t_\tPROPN\tJJ\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tsomething\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n5\tP&G\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tdo\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twithout\t_\tADP\tIN\t_\t8\tconj\t_\t_\n11\tKao\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tZurkuhlen\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n2\teconomic\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttension\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tbetween\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tJapan\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tworsening\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tmany\t_\tADJ\tJJ\t_\t14\tnsubj\t_\t_\n12\tJapanese\t_\tVERB\tNNPS\t_\t11\tdep\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tfeared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tlast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tvisit\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tTrade\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tRepresentative\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tCarla\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tHills\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbarrage\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tdemands\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tJapan\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tdo\t_\tVERB\tVBP\t_\t7\tccomp\t_\t_\n11\tsomething\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tquickly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\treduce\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\ttrade\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tsurplus\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdiscussion\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tneed\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tfor\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tJapan\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\twork\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n17\ttogether\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\timportance\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tlong-term\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tview\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\ttrip\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tJapan\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tAmerica\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tchief\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\ttrade\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tnegotiator\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tcompletely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tdifferent\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttone\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmonth\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tvisit\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\tCommerce\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n26\tSecretary\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tRobert\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tA.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tMosbacher\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMosbacher\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tconcrete\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tresults\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tspring\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tnegotiations\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\tover\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tfundamental\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tJapanese\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tbusiness\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpractices\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n18\tsupposedly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tinhibit\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n20\tfree\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttrade\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tsuch\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\tshould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n8\tmeasurable\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tdollars\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n14\tin\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\treducing\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\ttrade\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tdeficit\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tJapan\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n2\tMrs.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHills\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tspeaking\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tbreakfast\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmeeting\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tAmerican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tChamber\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tCommerce\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tJapan\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tSaturday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n21\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tobjective\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n27\tnot\t_\tPART\tRB\t_\t26\tneg\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tget\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n30\tdefinitive\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\taction\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tspring\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tor\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tsummer\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n38\tis\t_\tVERB\tVBZ\t_\t26\tparataxis\t_\t_\n39\trather\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\thave\t_\tVERB\tVB\t_\t38\txcomp\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tblueprint\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\tfor\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\taction\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n47\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tshe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpected\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tperhaps\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\thave\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tdown\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tpayment\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t...\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\tsome\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tstep\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tconvince\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tAmerican\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpeople\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tJapanese\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tpeople\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\twe\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n28\t're\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n29\tmoving\t_\tVERB\tVBG\t_\t18\tccomp\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tearnest\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHow\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tsuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tremarks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\ttranslate\t_\tVERB\tVB\t_\t9\tcsubj\t_\t_\n5\tinto\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tpolicy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\two\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tbecome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tclear\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAmerican\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tJapanese\t_\tADJ\tJJ\t_\t1\tconj\t_\t_\n4\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttheories\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdifference\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tapproach\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tbetwen\t_\tNOUN\tVBD\t_\t15\tdep\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMosbacher\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tMrs.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tHills\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tnsubj\t_\t_\n2\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tsimply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcontrast\t_\tNOUN\tNN\t_\t2\txcomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tstyles\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tnsubj\t_\t_\n3\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tclassic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tnegotiating\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttactic\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tBush\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tadministration\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tfeel\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trhetoric\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tboth\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsides\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tgetting\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n15\tout\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\thand\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\treflected\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgrowing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tdebate\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tWashington\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tover\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tpursuing\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n13\tfree\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrade\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tJapan\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tversus\t_\tADP\tCC\t_\t19\tcase\t_\t_\n18\tsome\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tkind\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tmanaged\t_\tADJ\tVBN\t_\t22\tamod\t_\t_\n22\ttrade\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n2\tto\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\tcompare\t_\tVERB\tVB\t_\t1\txcomp\t_\t_\n4\ther\t_\tPRON\tPRP$\t_\t5\tdep\t_\t_\n5\tvisit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMosbacher\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tMrs.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHills\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n16\tI\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\tdid\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\thear\t_\tVERB\tVB\t_\t13\tparataxis\t_\t_\n20\tevery\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tword\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tspoke\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n26\tas\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tgeneral\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tproposition\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\tI\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n32\tthink\t_\tVERB\tVBP\t_\t19\tconj\t_\t_\n33\twe\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n34\thave\t_\tVERB\tVBP\t_\t32\tccomp\t_\t_\n35\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n36\tvery\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n37\tconsistent\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\ttrade\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tstrategy\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n40\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tBush\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tadministration\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n2\tmore\t_\tADJ\tJJR\t_\t4\tadvmod\t_\t_\n3\tthan\t_\tADP\tIN\t_\t2\tmwe\t_\t_\n4\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tAmerican\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n7\twho\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\tsat\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n9\tin\t_\tADP\tIN\t_\t8\tcompound:prt\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\ther\t_\tPRON\tPRP$\t_\t8\tnmod\t_\t_\n12\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\ttalks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tJapanese\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tofficials\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ther\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\ttone\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n23\toften\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n25\tsurprisingly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\tconciliatory\t_\tADJ\tJJ\t_\t20\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tline\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t9\tcop\t_\t_\n8\tvery\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tconsistent\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n12\tMrs.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHills\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tnews\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tconference\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tSaturday\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tafternoon\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\tam\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tpainted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tsometimes\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tferocious\t_\tADJ\tJJ\t_\t4\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tperhaps\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tI\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tferocious\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlist\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tstatutes\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\timplement\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tferocious\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\teither\t_\tCONJ\tRB\t_\t6\tcc:preconj\t_\t_\n6\thard\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsoft\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfeel\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tcommitted\t_\tADJ\tVBN\t_\t2\txcomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tprogram\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\topening\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tmarkets\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n11\texpanding\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n12\ttrade\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tmet\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlocal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpress\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttime\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\tMrs.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tHills\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\tfirmly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\treiterated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tneed\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tprogress\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tin\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tremoving\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n24\tbarriers\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n26\ttrade\t_\tNOUN\tVB\t_\t24\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tforest\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tproducts\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tsatellites\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n33\tsupercomputers\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n35\tthree\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tareas\t_\tNOUN\tNNS\t_\t29\tappos\t_\t_\n37\ttargeted\t_\tVERB\tVBN\t_\t36\tacl\t_\t_\n38\tunder\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n40\tSuper\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n41\t301\t_\tPROPN\tCD\t_\t42\tcompound\t_\t_\n42\tprovision\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t47\tcase\t_\t_\n44\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n45\t1988\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n46\ttrade\t_\tNOUN\tNN\t_\t47\tcompound\t_\t_\n47\tbill\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thighlighted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\texclusionary\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tbusiness\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tpractices\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\tthat\t_\tADP\tIN\t_\t11\tdobj\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tgovernment\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tidentified\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\ther\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tmain\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tthrust\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpromote\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\timportance\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tworld-wide\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tfree\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttrade\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\topen\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcompetition\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttrade\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\timbalance\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n7\tmainly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdue\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tmacroeconomic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfactors\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\tshould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\ttackled\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n17\tby\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tsetting\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tquantitative\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttargets\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ther\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tconference\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tJapanese\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\treporters\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\teconomics\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tjournalist\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tsummed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tJapanese\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsense\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\trelief\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tMy\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\timpression\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tscary\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\told\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlady\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tdrawing\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tfew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tnervous\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tchuckles\t_\tNOUN\tVBZ\t_\t18\tdobj\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcolleagues\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tam\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\trelieved\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsee\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n11\tbeautiful\t_\tADJ\tJJ\t_\t13\tdep\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n13\tgentle\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tintelligent\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tperson\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tintegrity\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tremarks\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\traise\t_\tNOUN\tVB\t_\t0\troot\t_\t_\n7\tquestions\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tat\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n10\tleast\t_\tADJ\tJJS\t_\t9\tmwe\t_\t_\n11\tamong\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tsome\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tofficials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tabout\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t24\tdobj\t_\t_\n18\texactly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\ther\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tstance\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n22\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\taccess\t_\tNOUN\tNN\t_\t7\tacl\t_\t_\n25\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tJapanese\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tsemiconductor\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tshare\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tJapanese\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n10\tstuck\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n11\taround\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t10\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tyears\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tAmericans\t_\tPROPN\tNNPS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tinterpreted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1986\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tassuring\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcompanies\t_\tNOUN\tNNS\t_\t9\tiobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t20\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1991\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tJapanese\t_\tPROPN\tNNPS\t_\t23\tnsubj\t_\t_\n22\thave\t_\tAUX\tVBP\t_\t23\taux\t_\t_\n23\tdenied\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n24\tmaking\t_\tVERB\tVBG\t_\t23\txcomp\t_\t_\n25\tany\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tpromise\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ther\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\tnews\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconferences\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tMrs.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tHills\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tI\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tbelieve\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n15\twe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tdo\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n18\tmuch\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tbetter\t_\tADV\tJJR\t_\t17\tadvmod\t_\t_\n20\tthan\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t20\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n6\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n7\tam\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tmanaged\t_\tADJ\tVBN\t_\t10\tamod\t_\t_\n10\ttrade\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tnot\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tenter\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tstipulates\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpercentage\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTraditional\t_\tPROPN\tJJ\t_\t3\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\texpects\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tloss\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfourth\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tended\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n18\tJune\t_\tPROPN\tNNP\t_\t17\tnmod:tmod\t_\t_\n19\t30\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tseeking\t_\tVERB\tVBG\t_\t6\tconj\t_\t_\n23\tnew\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfinancing\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tseller\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tphotographic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproducts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tservices\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tconsidering\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnumber\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tfinancing\t_\tNOUN\tVBG\t_\t16\tcompound\t_\t_\n16\talternatives\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tincluding\t_\tVERB\tVBG\t_\t19\tcase\t_\t_\n19\tseeking\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n20\tincreases\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tcredit\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tlines\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTraditional\t_\tPROPN\tJJ\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\testimate\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tloss\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tsay\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\texpects\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tshow\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tprofit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\tended\t_\tVERB\tVBD\t_\t3\tacl\t_\t_\n5\tJune\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t30\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tTraditional\t_\tPROPN\tJJ\t_\t11\tnsubj\t_\t_\n11\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t4.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.21\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tbreak\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tfourth-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tresults\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tlatest\t_\tADJ\tJJS\t_\t5\tamod\t_\t_\n4\tnine\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n10\t4.7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t1.31\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\trevenue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t44.3\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tfile\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tdelayed\t_\tADJ\tVBN\t_\t12\tamod\t_\t_\n11\tfiscal-year\t_\tNOUN\tJJ\t_\t12\tcompound\t_\t_\n12\treport\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tSecurities\t_\tPROPN\tNNPS\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tExchange\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tCommission\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n20\twithin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tapproximately\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\t45\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdelay\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tresulted\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tdifficulties\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tin\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tresolving\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\taccounting\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsettlement\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tFederal\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tTrade\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCommission\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n4\tfiled\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tAugust\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsettle\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n12\tFTC\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tobjections\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n15\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tTraditional\t_\tPROPN\tJJ\t_\t18\tcompound\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tpractices\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tTraditional\t_\tPROPN\tJJ\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\testablish\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t250,000\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n28\ttrust\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tfund\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tprovide\t_\tVERB\tVB\t_\t29\tacl\t_\t_\n32\trefunds\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\tcertain\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tcustomers\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tInformation\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tInternational\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tsued\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbuyer\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tcomputerized\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tnewspaper-publishing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsystem\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\talleging\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tfailed\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcorrect\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tdeficiencies\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tsystem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tInformation\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInternational\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlawsuit\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tunits\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tMorris\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tCommunications\t_\tPROPN\tNNPS\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tseeks\t_\tVERB\tVBZ\t_\t6\tccomp\t_\t_\n17\trestitution\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsystem\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n21\t's\t_\tVERB\tPOS\t_\t20\tcase\t_\t_\n22\tabout\t_\tADV\tIN\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t27\tamod\t_\t_\n24\t3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tpurchase\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tprice\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tcancellation\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tsoftware\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tlicense\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tprovided\t_\tVERB\tVBN\t_\t33\tacl\t_\t_\n35\tby\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tMorris\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tunits\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n39\tto\t_\tADP\tTO\t_\t41\tcase\t_\t_\n40\tInformation\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tInternational\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n42\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\talleged\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tfailure\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n45\tto\t_\tPART\tTO\t_\t46\tmark\t_\t_\n46\tpay\t_\tVERB\tVB\t_\t44\tacl\t_\t_\n47\troyalties\t_\tNOUN\tNNS\t_\t46\tdobj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tInformation\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInternational\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tbelieves\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcomplaints\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n10\tfiled\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tfederal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcourt\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tGeorgia\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n18\twithout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tmerit\t_\tNOUN\tNN\t_\t5\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tClosely\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\theld\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n3\tMorris\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCommunications\t_\tPROPN\tNNPS\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tAugusta\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tGa\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunits\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tfiled\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsuit\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tSoutheastern\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tNewspapers\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tFlorida\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPublishing\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSyms\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcompleted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tA.\t_\tPROPN\tNN\t_\t9\tcompound\t_\t_\n9\tSulka\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tsubsidiary\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmen\t_\tNOUN\tNNS\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tluxury\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\thaberdashery\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tLuxco\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tInvestments\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n2\tSyms\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n5\tcore\t_\tADJ\tNN\t_\t6\tamod\t_\t_\n6\tbusiness\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\toff-price\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tretailing\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tgrows\t_\tVERB\tVBZ\t_\t19\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsmall\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tsubsidiary\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n17\toperationally\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tunrelated\t_\tADJ\tJJ\t_\t14\tacl:relcl\t_\t_\n19\tbecomes\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tdifficult\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdistraction\t_\tNOUN\tNN\t_\t19\txcomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tMarcy\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tSyms\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tpresident\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tparent\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tstatement\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokeswoman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tSulka\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\toperates\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttotal\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tseven\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tstores\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\toverseas\t_\tADV\tRB\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSyms\t_\tNOUN\tNNP\t_\t2\tnsubj\t_\t_\n2\toperates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t25\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\toff-price\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tapparel\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tstores\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmiddling\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tprofits\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tpersist\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcompanies\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n4\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tnext\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdays\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\tauxpass\t_\t_\n10\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treport\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tmuch\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tless\t_\tADV\tJJR\t_\t15\tadvmod\t_\t_\n15\trobust\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n17\tthan\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n19\tdid\t_\tAUX\tVBD\t_\t23\taux\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n26\tago\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n28\tlargely\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n29\treflecting\t_\tVERB\tVBG\t_\t32\tdep\t_\t_\n30\tdeteriorating\t_\tVERB\tVBG\t_\t32\tamod\t_\t_\n31\tchemical\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tgasoline\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tprofitability\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgasoline\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tpicture\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\timprove\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tquarter\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tchemicals\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n12\tlikely\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tremain\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tweak\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tindustry\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\texecutives\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tanalysts\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n21\tsay\t_\tVERB\tVBP\t_\t14\tparataxis\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\treducing\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n24\tchances\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tthat\t_\tSCONJ\tWDT\t_\t28\tmark\t_\t_\n26\tprofits\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n27\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tequal\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n29\ttheir\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\tyear-earlier\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tperformance\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindustry\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n5\tseeing\t_\tVERB\tVBG\t_\t28\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsoftening\t_\tNOUN\tVBG\t_\t5\tdobj\t_\t_\n8\tsomewhat\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tvolume\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tcertainly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tprice\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpetrochemicals\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n19\tGlenn\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCox\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tPhillips\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tPetroleum\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCo.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tinterview\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tThat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tchange\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tobviously\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\timpact\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n7\tthird\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tfourth\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tearnings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tindustry\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tgeneral\t_\tADJ\tJJ\t_\t15\tacl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tforecast\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tPhillips\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tsecurities\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tPhillips\t_\tNOUN\tNNP\t_\t10\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n8\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompanies\t_\tNOUN\tNNS\t_\t4\tccomp\t_\t_\n11\thard-hit\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tweak\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tchemical\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprices\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tprobably\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tpost\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdrop\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthird-quarter\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tearnings\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\ttoo\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tpredict\t_\tVERB\tVBP\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t0\troot\t_\t_\n10\tExxon\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tChevron\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tAmoco\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t2\tdep\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n4\thappened\t_\tVERB\tVBD\t_\t2\tdep\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tethylene\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmajor\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tcommodity\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tchemical\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n15\tproduced\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tvast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tamounts\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\toil\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tplunged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t13\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tsince\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJuly\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\taround\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n10\t26\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpound\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n4\tethylene\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t33\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tpeaking\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n11\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n13\t34\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tlast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tDecember\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\treason\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tchemical\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tretreat\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\toverexpansion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBeginning\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmid-1987\t_\tNOUN\tNN\t_\t6\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\taccelerating\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tgrowing\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n11\tU.S.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\teconomy\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tweak\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdollar\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\tspurred\t_\tVERB\tVBN\t_\t6\tadvcl\t_\t_\n18\tdemand\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tcapacity\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\tfuriously\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tgreatly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tincreased\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\tsupplies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdollar\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tstronger\t_\tADJ\tJJR\t_\t9\tadvcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tdomestic\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\teconomic\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgrowth\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tslower\t_\tADJ\tJJR\t_\t15\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThird-quarter\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tprofits\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tgasoline\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tweaker\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tRefining\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmargins\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tgood\t_\tADJ\tJJ\t_\t23\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n15\tgenerally\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\tnot\t_\tADV\tRB\t_\t18\tneg\t_\t_\n17\tvery\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tgood\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tWilliam\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tRandol\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tsecurities\t_\tNOUN\tNNS\t_\t29\tcompound\t_\t_\n29\tanalyst\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n30\tat\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tFirst\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tBoston\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tOil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trefineries\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tran\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tflat\t_\tADV\tJJ\t_\t6\tadvmod\t_\t_\n6\tout\t_\tADV\tIN\t_\t4\tadvmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tprepare\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\trobust\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tholiday\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tdriving\t_\tNOUN\tVBG\t_\t14\tcompound\t_\t_\n14\tseason\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tJuly\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tAugust\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n20\tdid\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tmaterialize\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\texcess\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsupply\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tpushed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tgasoline\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tdown\t_\tADP\tRP\t_\t4\tadvmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthat\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tperiod\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tcrude\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tup\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n9\tsome\t_\tDET\tDT\t_\t8\tnmod:npmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tearlier\t_\tADV\tRBR\t_\t8\tadvcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tfurther\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tpressuring\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n17\tprofitability\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRefiners\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tmargins\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpicked\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tindustry\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tofficials\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tbelieve\t_\tVERB\tVBP\t_\t2\tconj\t_\t_\n14\tgasoline\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprofits\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\trebound\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tthough\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n22\tstill\t_\tADV\tRB\t_\t23\tdep\t_\t_\n23\tnot\t_\tPART\tRB\t_\t17\tadvcl\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlevel\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\t1988\t_\tNUM\tCD\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tfourth\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tquarter\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tDuring\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tsecond\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\trecord\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n11\tgasoline\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tchemical\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tprofits\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tCrude\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tturn\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tmost\t_\tADV\tRBS\t_\t11\tadvmod\t_\t_\n11\tsurprising\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\telement\t_\tNOUN\tNN\t_\t5\txcomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n3\taveraging\t_\tVERB\tVBG\t_\t20\tparataxis\t_\t_\n4\troughly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\t$\t_\tSYM\t$\t_\t9\tnmod:npmod\t_\t_\n6\t2\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbarrel\t_\tNOUN\tNN\t_\t5\tnmod:npmod\t_\t_\n9\thigher\t_\tADJ\tJJR\t_\t3\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tthird\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\tearlier\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tstayed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\twell\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n22\tabove\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tmost\t_\tADJ\tJJS\t_\t24\tamod\t_\t_\n24\tcompanies\t_\tNOUN\tNNS\t_\t26\tnmod:poss\t_\t_\n25\t'\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\texpectations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tDemand\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n4\tmuch\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tstronger\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n6\tthan\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tanticipated\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\ttypically\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\taccelerates\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tfourth\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tquarter\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tsee\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n5\thigher\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n6\toil\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tBryan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tJacoboski\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tanalyst\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tPaineWebber\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tInc\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\ttranslate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tsharply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thigher\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n7\tproduction\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprofits\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tparticularly\t_\tADV\tRB\t_\t8\tnmod\t_\t_\n11\tcompared\t_\tVERB\tVBN\t_\t10\tcase\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n16\toil\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tsteadily\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tfell\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tbelow\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n23\t13\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tbarrel\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfourth\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n6\tbetter\t_\tADJ\tJJR\t_\t15\tadvcl\t_\t_\n7\tthan\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tnatural\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tgas\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tbeen\t_\tVERB\tVBN\t_\t15\tcop\t_\t_\n15\tworse\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\taveraged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tabout\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n9\t5\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t11\tnmod:npmod\t_\t_\n11\tless\t_\tADJ\tJJR\t_\t7\txcomp\t_\t_\n12\tthan\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n14\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1988\t_\tNUM\tCD\t_\t11\tccomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmain\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\treason\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tweather\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsummer\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tnotable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\theat\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\twave\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tdrought\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\tcaused\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n13\tutilities\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tburn\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tnatural\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tgas\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tfeed\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n21\tincreased\t_\tADJ\tVBN\t_\t23\tamod\t_\t_\n22\telectrical\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdemand\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tair\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tconditioning\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tuse\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsummer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thand\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tmilder\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tweather\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tusual\t_\tADJ\tJJ\t_\t11\tacl\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tdisappointed\t_\tADJ\tVBN\t_\t16\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tperformance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tnatural\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tgas\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCox\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tPhillips\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tlagging\t_\tVERB\tJJ\t_\t5\tamod\t_\t_\n4\tgas\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tassist\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tfourth\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tperformance\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tmany\t_\tADJ\tJJ\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tGoing\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n2\tinto\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfourth\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n7\tnatural\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tgas\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n11\tanywhere\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n13\t8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tdep\t_\t_\n16\t17\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tlower\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n19\tthan\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n22\tearlier\t_\tADV\tRBR\t_\t18\tadvcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tnatural\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgas\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n6\tcurrently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tproduced\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n8\talong\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tGulf\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCoast\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n13\tselling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tspot\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\taround\t_\tADP\tIN\t_\t20\tadvmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n21\t1.47\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tadvmod\t_\t_\n23\tthousand\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n24\tcubic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tfeet\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n27\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n28\t13\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t27\tnmod:npmod\t_\t_\n30\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t1.69\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tadvmod\t_\t_\n34\tthousand\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n35\tcubic\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tfeet\t_\tNOUN\tNNS\t_\t32\tnmod:npmod\t_\t_\n37\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tyear\t_\tNOUN\tNN\t_\t39\tnmod:npmod\t_\t_\n39\tago\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n5\ttrying\t_\tVERB\tVBG\t_\t26\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tblunt\t_\tADJ\tVB\t_\t5\txcomp\t_\t_\n8\tgrowing\t_\tVERB\tVBG\t_\t9\tamod\t_\t_\n9\tdemands\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tWestern\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tEurope\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\trelaxation\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcontrols\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\texports\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tSoviet\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbloc\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\tis\t_\tAUX\tVBZ\t_\t26\taux\t_\t_\n26\tquestioning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n27\twhether\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n28\tItaly\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tIng\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n32\tC.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tOlivetti\t_\tPROPN\tNNP\t_\t36\tnsubj\t_\t_\n34\t&\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t33\tconj\t_\t_\n36\tsupplied\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n37\tmilitarily\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tvaluable\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\ttechnology\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n40\tto\t_\tADP\tTO\t_\t42\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tSoviets\t_\tPROPN\tNNPS\t_\t36\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t31\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tWestern\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tEuropean\t_\tPROPN\tJJ\t_\t6\tcompound\t_\t_\n6\tmembers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tCoordinating\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCommittee\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tMultilateral\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tExport\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tControls\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tunofficial\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tforum\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n18\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t25\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tallies\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\talign\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n27\texport-control\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tpolicies\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\tare\t_\tAUX\tVBP\t_\t31\tauxpass\t_\t_\n31\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\targue\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n34\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tmore\t_\tADV\tJJR\t_\t36\tadvmod\t_\t_\n36\tliberal\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\texport\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\trules\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n39\tat\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tmeeting\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n42\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n43\tbe\t_\tAUX\tVB\t_\t44\tauxpass\t_\t_\n44\theld\t_\tVERB\tVBN\t_\t41\tacl\t_\t_\n45\tin\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tParis\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n47\tOct.\t_\tPROPN\tNNP\t_\t44\tnmod:tmod\t_\t_\n48\t25\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n49\tand\t_\tCONJ\tCC\t_\t47\tcc\t_\t_\n50\t26\t_\tNUM\tCD\t_\t47\tconj\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tplan\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tpress\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tspecifically\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trelaxation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\trules\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tgoverning\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\texports\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tmachine\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\ttools\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tcomputers\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\thigh-technology\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tproducts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tBush\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\twants\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsee\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tevidence\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tall\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tCocom\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmembers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tcomplying\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n17\tfully\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\texisting\t_\tADJ\tVBG\t_\t21\tamod\t_\t_\n20\texport-control\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tprocedures\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tbefore\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tsupport\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n26\tfurther\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tliberalization\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tmake\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tpoint\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tchallenging\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tItalian\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texplain\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n14\treports\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tOlivetti\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n17\tmay\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\thave\t_\tAUX\tVB\t_\t19\taux\t_\t_\n19\tsupplied\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tSoviet\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tUnion\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n23\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tsophisticated\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tcomputer-driven\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdevices\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\tthat\t_\tPRON\tWDT\t_\t30\tnsubjpass\t_\t_\n28\tcould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n29\tbe\t_\tAUX\tVB\t_\t30\tauxpass\t_\t_\n30\tused\t_\tVERB\tVBN\t_\t26\tacl:relcl\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tbuild\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tparts\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tcombat\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\taircraft\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSunday\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tTimes\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tfirst\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\treported\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tconcerns\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tintelligence\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\treport\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsource\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tallegations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tthat\t_\tSCONJ\tWDT\t_\t26\tmark\t_\t_\n25\tOlivetti\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\texported\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n27\t$\t_\tSYM\t$\t_\t26\tdobj\t_\t_\n28\t25\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t38\tpunct\t_\t_\n32\tembargoed\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n34\tstate-of-the-art\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n36\tflexible\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tmanufacturing\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tsystems\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n39\tto\t_\tADP\tTO\t_\t43\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\tSoviet\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\taviation\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tindustry\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tOlivetti\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\treportedly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tshipping\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttools\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1984\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tState\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tDepartment\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tacknowledged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tdiscussing\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tallegations\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tItalian\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tgovernment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tCocom\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n21\tdeclined\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tconfirm\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tany\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tdetails\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tItalian\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tPresident\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFrancesco\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCossiga\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tpromised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tquick\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestigation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tinto\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\twhether\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tOlivetti\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tbroke\t_\tVERB\tVBD\t_\t8\tacl\t_\t_\n13\tCocom\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\trules\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPresident\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tattention\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmatter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tItalian\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tleader\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tvisit\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n15\there\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOlivetti\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdenied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tviolated\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tCocom\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\trules\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tasserting\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\treported\t_\tADJ\tVBN\t_\t14\tamod\t_\t_\n14\tshipments\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n16\tproperly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tlicensed\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tItalian\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tauthorities\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlegality\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsales\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n8\tstill\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\topen\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tquestion\t_\tNOUN\tNN\t_\t19\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdisclosure\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n18\tbetter\t_\tADV\tJJR\t_\t19\tadvmod\t_\t_\n19\ttimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tsupport\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tposition\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\texport-control\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\thawks\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tPentagon\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tintelligence\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tcommunity\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tme\t_\tPRON\tPRP\t_\t3\tnmod\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstory\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tlike\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tthis\t_\tPRON\tDT\t_\t8\tnmod\t_\t_\n11\tbreaks\t_\tVERB\tNNS\t_\t3\tccomp\t_\t_\n12\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n13\tbefore\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tevery\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\timportant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tCocom\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tmeeting\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tWashington\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tlobbyist\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tnumber\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tcomputer\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcompanies\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tsent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tconflicting\t_\tADJ\tVBG\t_\t7\tamod\t_\t_\n7\tsignals\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\texport-control\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpolicies\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\treflecting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n14\tunhealed\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdivisions\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tamong\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tseveral\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcompeting\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\tagencies\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsummer\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBush\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdirection\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tgradual\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tliberalization\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\ttold\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tNorth\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tAtlantic\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tTreaty\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tOrganization\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tmeeting\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tallow\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n28\tsome\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\texceptions\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tCocom\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tembargo\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tstrategic\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tgoods\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n3\trecently\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tPentagon\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tCommerce\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDepartment\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\topenly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tfeuded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tover\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\textent\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n18\tCocom\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n19\tshould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tliberalize\t_\tVERB\tVB\t_\t15\tacl:relcl\t_\t_\n21\texports\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tpersonal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcomputers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbloc\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagencies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tgenerally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\tshould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\tcautious\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n13\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tany\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tfurther\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tliberalization\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tevidence\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSoviet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprogram\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n10\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t12\tpunct\t_\t_\n12\tillegally\t_\tADV\tRB\t_\t14\tdep\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t12\tpunct\t_\t_\n14\tacquire\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n15\tWestern\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\ttechnology\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tdiminished\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tState\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tspokesman\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSalomon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBrothers\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tInternational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLtd.\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBritish\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsubsidiary\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tSalomon\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tissue\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n17\twarrants\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tHong\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tKong\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tTelecommunications\t_\tPROPN\tNNPS\t_\t24\tcompound\t_\t_\n24\tLtd\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tclosely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tfollows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsimilar\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\toffer\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tSalomon\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\twarrants\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tHongkong\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n16\t&\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tShanghai\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tBanking\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCorp\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlatest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\toffer\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n6\tHK$\t_\tSYM\t$\t_\t19\tnsubjpass\t_\t_\n7\t62.5\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tUS$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n11\t8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthree-year\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\twarrants\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n17\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\tissued\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tLondon\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\teach\t_\tDET\tDT\t_\t24\tnsubj\t_\t_\n24\tgiving\t_\tVERB\tVBG\t_\t19\tdep\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t24\tiobj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tright\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbuy\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\tone\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n31\tHong\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n32\tKong\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tTelecommunications\t_\tPROPN\tNNPS\t_\t34\tcompound\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n35\tat\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tprice\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n38\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tdetermined\t_\tVERB\tVBN\t_\t37\tacl\t_\t_\n41\tFriday\t_\tPROPN\tNNP\t_\t40\tnmod:tmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t50\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\twarrants\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tHK$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t1.25\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\teach\t_\tDET\tDT\t_\t10\tdep\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tare\t_\tAUX\tVBP\t_\t14\tauxpass\t_\t_\n14\texpected\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcarry\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpremium\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tprice\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tabout\t_\tADV\tIN\t_\t25\tadvmod\t_\t_\n25\t26\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\ttrading\t_\tVERB\tNN\t_\t13\tnmod\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tHong\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tKong\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tWednesday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tHK$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t4.80\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\teach\t_\tDET\tDT\t_\t17\tdep\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\trise\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tabove\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tHK$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t6.05\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n15\tsubscribers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tSalomon\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tissue\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n21\tprofitably\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tconvert\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\twarrants\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n2\tHong\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tKong\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tcompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpast\t_\tNOUN\tJJ\t_\t9\tnmod\t_\t_\n9\tissued\t_\tVERB\tJJ\t_\t21\tadvcl\t_\t_\n10\twarrants\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\town\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tshares\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n16\tSalomon\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\twarrants\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfirst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n22\there\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tissued\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tthird\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tparty\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSalomon\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n4\tcover\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\twarrants\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tby\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tbuying\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n10\tsufficient\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\toptions\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpurchase\t_\tNOUN\tVB\t_\t14\tdep\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tcover\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tentire\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tposition\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBankers\t_\tNOUN\tNNPS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\twarrants\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tHong\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tKong\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tattractive\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n10\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tgive\t_\tVERB\tVBP\t_\t9\tadvcl\t_\t_\n13\tforeign\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t12\tiobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twary\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tvolatility\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcolony\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\topportunity\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbuy\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\tshares\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\twithout\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\ttaking\t_\tVERB\tVBG\t_\t29\tadvcl\t_\t_\n33\ttoo\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tgreat\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\trisk\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tHong\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tKong\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tTelecommunications\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\twarrants\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tshould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tattractive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tbuyers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tEurope\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbankers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tadded\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tbecause\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tgroup\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tone\t_\tNUM\tCD\t_\t8\tadvcl\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\thandful\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tblue-chip\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tHong\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tKong\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tthat\t_\tPRON\tWDT\t_\t35\tnsubj\t_\t_\n35\thas\t_\tVERB\tVBZ\t_\t28\tacl:relcl\t_\t_\n36\tinternational\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tappeal\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tSanta\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBarbara\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tfiled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsuit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tformer\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n11\tspeculator\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n12\tIvan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tF.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBoesky\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tDrexel\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tBurnham\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tLambert\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tInc.\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\tcharging\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tdefrauded\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tthrift\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tby\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\tconcealing\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\trelationship\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n31\tpersuading\t_\tVERB\tVBG\t_\t27\tadvcl\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tbuy\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n35\t$\t_\tSYM\t$\t_\t34\tdobj\t_\t_\n36\t284\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\tmillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n38\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n39\thigh-yield\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n41\thigh-risk\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\tjunk\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tbonds\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsuit\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tfiled\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tThursday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tS&L\t_\tPROPN\tNN\t_\t12\tnsubj\t_\t_\n12\talleged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\tdisproportionate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tnumber\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbonds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tpurchased\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t1984\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n26\tdeclined\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tvalue\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpurchased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsuit\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\talleged\t_\tVERB\tVBN\t_\t3\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tafter\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBoesky\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tDrexel\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\tnegotiated\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tagreement\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tfor\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tVagabond\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHotels\t_\tPROPN\tNNPS\t_\t23\tnsubj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tpurchase\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t51\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tamod\t_\t_\n27\tstake\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tthrift\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tabout\t_\tADV\tIN\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n34\t34\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tVagabond\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHotels\t_\tPROPN\tNNPS\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tcontrolled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBoesky\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t12\tnsubj\t_\t_\n10\tcurrently\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tserving\t_\tVERB\tVBG\t_\t7\tacl:relcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tprison\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tterm\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tsecurities\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tviolations\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOfficials\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tDrexel\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tseen\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsuit\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tthus\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tcomment\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n5\t33\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tcompensatory\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdamages\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsuit\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tseeks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t100\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tpunitive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdamages\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsuit\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t2\tauxpass\t_\t_\n7\tIvan\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tF.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBoesky\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t2\tnsubjpass\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tNorthview\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsuccessor\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tVagabonds\t_\tPROPN\tNNPS\t_\t20\tcompound\t_\t_\n20\tHotels\t_\tPROPN\tNNPS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNorthview\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tlocated\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tafter\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\trepresentative\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tIvan\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tF.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tBoesky\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\tvisited\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tNovember\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t1983\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t18\tconj\t_\t_\n25\tFinancial\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n27\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\timprove\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\tfinancial\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcondition\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tby\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n33\tpurchasing\t_\tVERB\tVBG\t_\t28\tadvcl\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tbonds\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tbefore\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tvisit\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBoesky\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tDrexel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\trepresentives\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tmet\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tFinancial\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tofficials\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tsigned\t_\tVERB\tVBN\t_\t12\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tletter\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tintent\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tacquire\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\t51\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t%\t_\tSYM\tNN\t_\t29\tamod\t_\t_\n29\tstake\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcompany\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tcanceled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJune\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t1984\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpurchased\t_\tVERB\tVBD\t_\t29\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tleast\t_\tADJ\tJJS\t_\t9\tnmod:npmod\t_\t_\n9\t70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tdifferent\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttransactions\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1984\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tthen\t_\tADV\tRB\t_\t18\tnmod\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\trealized\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n19\t$\t_\tSYM\t$\t_\t18\tdobj\t_\t_\n20\t11\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tlosses\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tthem\t_\tPRON\tPRP\t_\t18\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tcompany\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBasic\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tIndustries\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tdirectors\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\treached\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tagreement\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tprinciple\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tcalling\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tHOFI\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tNorth\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAmerica\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tInc.\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tcombine\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n22\tNorth\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tAmerican\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tcement\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tholdings\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n26\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tIdeal\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\ttransaction\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n32\twill\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\tleave\t_\tVERB\tVB\t_\t30\tacl:relcl\t_\t_\n34\tIdeal\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tminority\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tshareholders\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n38\twith\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\t12.8\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\t%\t_\tSYM\tNN\t_\t33\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tcombined\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tcompany\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHOFI\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tNorth\t_\tADJ\tNNP\t_\t5\tamod\t_\t_\n5\tAmerican\t_\tADJ\tNNP\t_\t7\tamod\t_\t_\n6\tholding\t_\tNOUN\tVBG\t_\t7\tcompound\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tSwiss\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n11\tHolderbank\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFinanciere\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tGlaris\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tLtd.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tpreviously\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tproposed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tcombining\t_\tVERB\tVBG\t_\t17\txcomp\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\t100\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t%\t_\tSYM\tNN\t_\t22\tamod\t_\t_\n22\tstake\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tSt.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n25\tLawrence\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tCement\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n30\t60\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t32\tamod\t_\t_\n32\tstake\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tDundee\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tCement\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tCo.\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n37\twith\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\tits\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n39\t67\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\t%\t_\tSYM\tNN\t_\t41\tamod\t_\t_\n41\tstake\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n42\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\tIdeal\t_\tNOUN\tNNP\t_\t41\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tHOFI\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tgiven\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tIdeal\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshareholders\t_\tNOUN\tNNS\t_\t8\tiobj\t_\t_\n13\tabout\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n14\t10\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcombined\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcompany\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tdirectors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\toffer\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\talthough\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tendorsed\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmerger\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tproposal\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tHOFI\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\town\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\t87.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcombined\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tcurrent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\toperations\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\trepresent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tabout\t_\tADV\tIN\t_\t8\tadvmod\t_\t_\n8\t39.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcombined\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttransaction\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tdefinitive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tagreement\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tapproval\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tIdeal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tshareholders\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcomplete\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttransaction\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tearly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tnext\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tcorn\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tsoybean\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tslumped\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n8\twell\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n9\tbelow\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tdrought-induced\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tpeaks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\twheat\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\tstubbornly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\thigh\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tlikely\t_\tADJ\tJJ\t_\t15\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tstay\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tway\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tmonths\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tcome\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tanalysts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\teven\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tfarmers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tplanting\t_\tVERB\tVBG\t_\t22\tadvcl\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n11\twinter\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\twheat\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n15\tthan\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n18\ttight\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\twheat\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsupplies\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\tlikely\t_\tADJ\tJJ\t_\t32\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tsupport\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n26\twell\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tinto\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1990\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tanalysts\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n32\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\train\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tdoes\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tfall\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n7\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tacross\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tGreat\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPlains\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\twheat-growing\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tareas\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n18\tyields\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcrop\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tnow\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n23\tbeing\t_\tAUX\tVBG\t_\t24\tauxpass\t_\t_\n24\tplanted\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n25\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\treduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tfurther\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tsqueezing\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n31\tsupplies\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tsupporting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t2\taux\t_\t_\n5\texpectations\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSoviet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUnion\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tplace\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n12\tsubstantial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbuying\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\torders\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tnext\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tnext\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tMay\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n4\t31\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\twheat\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\tcarried\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n13\tover\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tnext\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tseason\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n19\tbefore\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\twinter\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\twheat\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n23\tnow\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\tbeing\t_\tAUX\tVBG\t_\t25\tauxpass\t_\t_\n25\tplanted\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t27\tauxpass\t_\t_\n27\tharvested\t_\tVERB\tVBN\t_\t12\tparataxis\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n29\tare\t_\tAUX\tVBP\t_\t30\tauxpass\t_\t_\n30\tprojected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tdrop\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n34\t443\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tbushels\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlowest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tlevel\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tsince\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tearly\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\t1970s\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\t698\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tbushels\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tMay\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t31\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tresponse\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tdwindling\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n5\tdomestic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsupplies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n8\tAgriculture\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tSecretary\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tClayton\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tYeutter\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tgovernment\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tslightly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tincrease\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tnumber\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tacres\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tfarmers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tcan\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tplant\t_\tVERB\tVB\t_\t22\tacl:relcl\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\twheat\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tnext\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n34\tstill\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tqualify\t_\tVERB\tVB\t_\t27\tconj\t_\t_\n36\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tfederal\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tsupport\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tpayments\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\testimates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tplan\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tboost\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\tproduction\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tnext\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tabout\t_\tADV\tIN\t_\t16\tadvmod\t_\t_\n15\t66\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tbushels\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\testimates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tproduction\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tnext\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tjust\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tunder\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n11\t2.6\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tbushels\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tcompared\t_\tVERB\tVBN\t_\t18\tcase\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t's\t_\tVERB\tPOS\t_\t18\tcase\t_\t_\n20\testimated\t_\tADJ\tVBN\t_\t18\tamod\t_\t_\n21\t2.04\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tdrought-stunted\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\t1.81\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tbillion\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfull\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\teffect\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\twinter\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\twheat\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tnow\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tbeing\t_\tAUX\tVBG\t_\t13\tauxpass\t_\t_\n13\tplanted\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n14\two\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tfelt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tuntil\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsecond\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\thalf\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tnext\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthen\t_\tADV\tRB\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tlimited\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\tlikely\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tkeep\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tnear\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n14\t4-a-bushel\t_\tADJ\tJJ\t_\t13\tdep\t_\t_\n15\tlevel\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tanalysts\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tChicago\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tTrade\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\twheat\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tDecember\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tdelivery\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t4.0675\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbushel\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tunchanged\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\ttheory\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\tat\t_\tADP\tIN\t_\t2\tadvmod\t_\t_\n4\tleast\t_\tADJ\tJJS\t_\t3\tmwe\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\ttight\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsupplies\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tspring\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\tcould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tleave\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\twheat\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsusceptible\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n17\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tsupply-demand\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tsqueeze\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tDaniel\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tBasse\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tfutures\t_\tNOUN\tNNS\t_\t28\tcompound\t_\t_\n28\tanalyst\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n29\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tAgResource\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tCo.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tChicago\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tSuch\t_\tDET\tPDT\t_\t3\tdet:predet\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsituation\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\twreak\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\thavoc\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\tshown\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\temergency\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tdeveloped\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tsoybean\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsummer\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n22\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tChicago\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBoard\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tTrade\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tCBOT\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tFerruzzi\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tFinanziaria\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tS.p\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n11\tA.\t_\tPROPN\tNN\t_\t6\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tliquidate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tpositions\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tequal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\t23\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbushels\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsoybeans\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tfeared\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmembers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\table\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tfind\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tenough\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsoybeans\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdeliver\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n20\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\thave\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdefault\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tcontractual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tobligation\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tItalian\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tconglomerate\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\twhich\t_\tPRON\tWDT\t_\t35\tnsubj\t_\t_\n34\thad\t_\tAUX\tVBD\t_\t35\taux\t_\t_\n35\trefused\t_\tVERB\tVBN\t_\t31\tacl:relcl\t_\t_\n36\trequests\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n37\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n38\treduce\t_\tVERB\tVB\t_\t36\tacl\t_\t_\n39\tits\t_\tPRON\tPRP$\t_\t40\tnmod:poss\t_\t_\n40\tholdings\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFerruzzi\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdenied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\ttrying\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tmanipulate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tsoybean\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tfutures\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnseasonably\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\thot\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n4\tdry\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tweather\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n6\tacross\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tlarge\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tportions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tGreat\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPlains\t_\tPROPN\tNNPS\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\twheat-growing\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tareas\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tWashington\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tOregon\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tthreatening\t_\tVERB\tVBG\t_\t35\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\treduce\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tyield\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tseason\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\twinter\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n32\twheat\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tcrop\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tConrad\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tLeslie\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tfutures\t_\tNOUN\tNNS\t_\t41\tcompound\t_\t_\n41\tanalyst\t_\tNOUN\tNN\t_\t37\tappos\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\thead\t_\tNOUN\tNN\t_\t41\tconj\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tLeslie\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tAnalytical\t_\tPROPN\tNNP\t_\t43\tnmod\t_\t_\n47\tin\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tChicago\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tOklahoma\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tpanhandle\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n9\t40\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t17\tnsubj\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t10\tnummod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttopsoil\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tshort\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tmoisture\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfigure\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tclimbs\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n5\tabout\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\t47\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t3\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\twheat-growing\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tportions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tKansas\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSoviet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tUnion\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tgiven\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tclear\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tindication\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n12\twheat\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tpurchase\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplans\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tmany\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tanalysts\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\texpect\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n20\tMoscow\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tplace\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n23\tsizable\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\torders\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tU.S.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\twheat\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\tnext\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tfew\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmonths\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n34\tfurther\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tsupporting\t_\tVERB\tVBG\t_\t22\tadvcl\t_\t_\n36\tprices\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tWheat\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tincreasingly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tpivot\t_\tVERB\tJJ\t_\t16\tccomp\t_\t_\n7\toff\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tSoviet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdemand\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tcoming\t_\tADJ\tVBG\t_\t14\tamod\t_\t_\n14\tweeks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n16\tpredicted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tRichard\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tFeltes\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tvice\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tpresident\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tresearch\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tRefco\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tChicago\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tLooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tahead\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcommodity\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tweek\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tOrange\t_\tNOUN\tNNP\t_\t3\tcompound\t_\t_\n2\tJuice\t_\tNOUN\tNNP\t_\t3\tcompound\t_\t_\n3\tTraders\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\twatching\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsee\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\thow\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n10\tlong\t_\tADV\tJJ\t_\t21\tadvmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\thow\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n13\tfar\t_\tADV\tRB\t_\t10\tdep\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tprice\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tdecline\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tgo\t_\tVERB\tVB\t_\t8\tdep\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLate\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\tThursday\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\tafter\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tclose\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n14\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n15\tnormally\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n16\thave\t_\tAUX\tVB\t_\t24\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t24\tcop\t_\t_\n18\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n19\tbullish\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t24\tdep\t_\t_\n21\tDepartment\t_\tPROPN\tNNP\t_\t20\tdep\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tAgriculture\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\testimate\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n27\t1989-90\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n28\tFlorida\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\torange\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcrop\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n3\tnear\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlow\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\trange\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\testimates\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\t130\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\t90-pound\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tboxes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcompared\t_\tVERB\tVBN\t_\t20\tcase\t_\t_\n17\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t146.6\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tboxes\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\tlast\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tseason\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tBrazil\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twaited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfor\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcrop\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\testimate\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcome\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n16\tthen\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tcut\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\texport\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tjuice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tconcentrate\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tabout\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n28\t1.34\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpound\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\taround\t_\tADP\tIN\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n34\t1.55\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tconsequent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tselling\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tcontracts\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\terased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\twhatever\t_\tDET\tWDT\t_\t11\tdet\t_\t_\n10\tsupportive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\teffect\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\treport\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tmight\t_\tAUX\tMD\t_\t17\taux\t_\t_\n16\thave\t_\tAUX\tVB\t_\t17\taux\t_\t_\n17\thad\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n19\tsent\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tNovember\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\torange\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tjuice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcontract\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n25\tdown\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n26\tas\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n27\tmuch\t_\tADJ\tJJ\t_\t29\tadvmod\t_\t_\n28\tas\t_\tADP\tIN\t_\t29\tadvmod\t_\t_\n29\t6.55\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tpound\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\tat\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tone\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\ttime\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t4.95\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t1.3210\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpound\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBrazilian\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tjuice\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n4\tafter\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdelay\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n7\tcaused\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdrought\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstart\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tcrop\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tseason\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tbeginning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tarrive\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tlarge\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tquantities\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tBrazil\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\twants\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tstimulate\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tdemand\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tproduct\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tgoing\t_\tVERB\tVBG\t_\t8\tacl:relcl\t_\t_\n13\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tplentiful\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsupply\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprice\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcut\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tanalyst\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\taimed\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n13\teven\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tEurope\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twhere\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n19\tconsumption\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tBrazilian\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tjuice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\tfallen\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tdollar-priced\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproduct\t_\tNOUN\tNN\t_\t21\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstrong\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdollar\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tmade\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\texpensive\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tEurope\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tanalyst\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tfutures\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tdropped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tsignificantly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tmore\t_\tADJ\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n12\t2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpound\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmidyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBarring\t_\tVERB\tVBG\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcold\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsnap\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcrop\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproblems\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgrowing\t_\tNOUN\tVBG\t_\t12\tcompound\t_\t_\n12\tareas\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n14\tdownward\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpressure\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n16\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n19\tlikely\t_\tADJ\tJJ\t_\t39\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tcontinue\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tJanuary\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhen\t_\tADV\tWRB\t_\t33\tadvmod\t_\t_\n26\tharvesting\t_\tNOUN\tVBG\t_\t33\tnsubj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tprocessing\t_\tNOUN\tNN\t_\t26\tconj\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\toranges\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tFlorida\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n33\treach\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n34\ttheir\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n35\tpeak\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tanalyst\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n39\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t39\tpunct\t_\t_\n\n1\tEnergy\t_\tNOUN\tNNP\t_\t0\troot\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tlook\t_\tVERB\tVBP\t_\t25\tadvcl\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tprofit-taking\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\twake\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tleap\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tcrude\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\toil\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tweek\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\trally\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n24\tgenerally\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tcontinue\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tweek\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcontinue\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tlook\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tstable\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcrude\t_\tNOUN\tJJ\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tat\t_\tADP\tIN\t_\t18\tadvmod\t_\t_\n14\tleast\t_\tADJ\tJJS\t_\t13\tmwe\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tfutures\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tWilliam\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tHinton\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tenergy\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tfutures\t_\tNOUN\tNNS\t_\t27\tcompound\t_\t_\n27\tbroker\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n28\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tStotler\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t&\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tCo\t_\tPROPN\tNNP\t_\t29\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tcapped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tweek\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tsteadily\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\trising\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n8\tcrude\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\toil\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tboth\t_\tCONJ\tDT\t_\t13\tcc:preconj\t_\t_\n13\tfutures\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tspot\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarkets\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tYork\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tMercantile\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tTexas\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIntermediate\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcrude\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tNovember\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdelivery\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfinished\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t20.89\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbarrel\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tup\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n23\t42\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tcents\t_\tNOUN\tNNS\t_\t22\tnmod:npmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tday\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tEuropean\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmarkets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\tmeanwhile\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tspot\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tNorth\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tSea\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tcrudes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tup\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t35\t_\tNUM\tCD\t_\t14\tnmod:npmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t75\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbarrel\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\twants\t_\tVERB\tVBZ\t_\t11\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tgo\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\thigher\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tNauman\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBarakat\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tvice\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpresident\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tShearson\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tLehman\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tHutton\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpredicted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tNovember\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tcontract\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\treach\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t21.50\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tbarrel\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t10\tnummod\t_\t_\n15\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tYork\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tMercantile\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tExchange\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t5\texpl\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n4\tlittle\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\taccount\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tsuch\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbuoyancy\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\toil\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmarkets\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tgenerally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tcite\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlack\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tbearish\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdevelopments\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tas\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n10\twell\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n11\tas\t_\tADP\tIN\t_\t5\tamod\t_\t_\n12\trumors\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tpossible\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\ttightening\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tsupplies\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tsome\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfuels\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tcrudes\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\trecurring\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\treports\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSoviet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUnion\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\thaving\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n12\tdifficulties\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\toil\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\texports\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tNigeria\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tabout\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\treached\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tproduction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tlimit\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\tca\t_\tAUX\tMD\t_\t29\taux\t_\t_\n28\tn't\t_\tPART\tRB\t_\t29\tneg\t_\t_\n29\tproduce\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n30\tas\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tmuch\t_\tADJ\tJJ\t_\t29\tdobj\t_\t_\n32\tas\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\tcould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tsell\t_\tVERB\tVB\t_\t31\tacl:relcl\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tforesee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttightening\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tnear-term\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsupplies\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tparticularly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\thigh-quality\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcrudes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n15\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tthose\t_\tPRON\tDT\t_\t13\tnmod\t_\t_\n17\tproduced\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tNorth\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSea\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tNigeria\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\thostile\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpredator\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\temerges\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n6\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tSaatchi\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tSaatchi\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\tCo.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n12\tco-founders\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n13\tCharles\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tMaurice\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSaatchi\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tlead\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tmanagement\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tbuy-out\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tattempt\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tofficial\t_\tADJ\tJJ\t_\t30\tnsubj\t_\t_\n26\tclose\t_\tNOUN\tNN\t_\t25\tamod\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tFinancing\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tany\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tattempt\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tproblematic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\twake\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tstock-market\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsell-off\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tNew\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tYork\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n21\tturmoil\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tjunk-bond\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tbeleaguered\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tBritish\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tadvertising\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tconsulting\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tgiant\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tweek\t_\tNOUN\tNN\t_\t13\tdep\t_\t_\n13\tnamed\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tchief\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\texecutive\t_\tADJ\tNN\t_\t18\tamod\t_\t_\n18\tofficer\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\treplace\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tMaurice\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tSaatchi\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n24\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n25\tbeen\t_\tVERB\tVBN\t_\t27\tcop\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tsubject\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tintense\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\ttakeover\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tspeculation\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tweeks\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tSaatchi\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tlargest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tshareholder\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tSoutheastern\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tAsset\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tManagement\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t17\tnsubjpass\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tapproached\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n18\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tone\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t19\tconj\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tparties\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\tinterested\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tpossible\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\trestructuring\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tCarl\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSpielvogel\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\texecutive\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n7\tofficer\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n9\tSaatchi\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tbig\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n12\tBacker\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tSpielvogel\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tBates\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tadvertising\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tunit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\thad\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\toffered\t_\tVERB\tVBN\t_\t18\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tlead\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tmanagement\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tbuy-out\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tbut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n32\twas\t_\tAUX\tVBD\t_\t33\tauxpass\t_\t_\n33\trebuffed\t_\tVERB\tVBN\t_\t21\tconj\t_\t_\n34\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tCharles\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tSaatchi\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSpielvogel\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tlaunch\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\thostile\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbid\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tclose\t_\tADV\tNN\t_\t2\tamod\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tSaatchi\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSaatchi\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t35\tpunct\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbidder\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tcame\t_\tVERB\tVBD\t_\t35\tadvcl\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tludicrously\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\thigh\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\toffer\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tcrazy\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\toffer\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t27\tdobj\t_\t_\n26\tSaatchi\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\tknew\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n29\tcould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\tbeat\t_\tVERB\tVB\t_\t27\tccomp\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\twould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\thave\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n36\tno\t_\tDET\tDT\t_\t37\tneg\t_\t_\n37\tchoice\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tbut\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\trecommend\t_\tVERB\tVB\t_\t37\tacl\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t40\tdobj\t_\t_\n42\tto\t_\tADP\tTO\t_\t43\tcase\t_\t_\n43\tshareholders\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\t-LCB-\t_\tPUNCT\t-LRB-\t_\t3\tpunct\t_\t_\n3\totherwise\t_\tADV\tRB\t_\t8\tdep\t_\t_\n4\t-RCB-\t_\tPUNCT\t-RRB-\t_\t3\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tundoubtedly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tback\t_\tADP\tRB\t_\t8\tcompound:prt\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n11\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\toffer\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmanagement\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tany\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbuy-out\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tled\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tboard\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhose\t_\tPRON\tWP$\t_\t15\tnmod:poss\t_\t_\n15\tchairman\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n17\tMaurice\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tSaatchi\t_\tPROPN\tNNP\t_\t12\tacl:relcl\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\twhose\t_\tPRON\tWP$\t_\t23\tnmod:poss\t_\t_\n21\tstrategic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tguiding\t_\tADJ\tVBG\t_\t23\tamod\t_\t_\n23\tforce\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n25\tbelieved\t_\tVERB\tVBN\t_\t18\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n27\tbe\t_\tVERB\tVB\t_\t29\tcop\t_\t_\n28\tCharles\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tSaatchi\t_\tPROPN\tNNP\t_\t25\txcomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSpielvogel\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tpart\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tboard\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tnor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n12\tany\t_\tDET\tDT\t_\t11\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\theads\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tSaatchi\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tbig\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tU.S.-based\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tad\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tagencies\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tname\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tsecurities\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tanalysts\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\tsaid\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n14\tSaatchi\t_\tNOUN\tNNP\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tfetch\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n17\tupward\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n19\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n20\t1.3\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdenied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tspeculation\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tSaatchi\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tbringing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t8\tcompound:prt\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\texecutive\t_\tADJ\tNN\t_\t14\tamod\t_\t_\n14\tofficer\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n15\tonly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tclean\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tfinancially\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n22\tso\t_\tSCONJ\tRB\t_\t27\tmark\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t22\tmwe\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tbrothers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tlead\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tbuy-back\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspeculation\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tabounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tindustry\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\texecutives\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tanalyzed\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tappointment\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tchief\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\texecutive\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tRobert\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLouis-Dreyfus\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\twho\t_\tPRON\tWP\t_\t21\tnsubj\t_\t_\n21\tjoins\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n22\tSaatchi\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tbecomes\t_\tVERB\tVBZ\t_\t21\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tmember\t_\tNOUN\tNN\t_\t24\txcomp\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tboard\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tJan.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n32\t1\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLouis-Dreyfus\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformerly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\texecutive\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n9\tpharmaceutical\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\tresearch\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n12\tIMS\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tInternational\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\treputation\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tsavvy\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tfinancial\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmanager\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n26\twill\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tbe\t_\tAUX\tVB\t_\t28\tauxpass\t_\t_\n28\tcharged\t_\tVERB\tVBN\t_\t16\tconj\t_\t_\n29\tlargely\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n30\twith\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n31\trepairing\t_\tVERB\tVBG\t_\t28\tadvcl\t_\t_\n32\tSaatchi\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tpoor\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tfinancial\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tstate\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n2\tabout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tspeculation\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLouis-Dreyfus\t_\tPROPN\tNNP\t_\t10\tnsubjpass\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\tauxpass\t_\t_\n10\thired\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tpave\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tway\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbuy-out\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbrothers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\texecutive\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n27\tThat\t_\tPRON\tDT\t_\t31\tnsubj\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n29\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\treason\t_\tNOUN\tNN\t_\t24\tccomp\t_\t_\n32\tDreyfus\t_\tPROPN\tNNP\t_\t35\tnsubjpass\t_\t_\n33\thas\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n34\tbeen\t_\tAUX\tVBN\t_\t35\tauxpass\t_\t_\n35\tbrought\t_\tVERB\tVBN\t_\t31\tacl:relcl\t_\t_\n36\tin\t_\tADP\tRP\t_\t35\tcompound:prt\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tbrought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tIN\t_\t3\tcompound:prt\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tturn\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\taround\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tseveral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tSaatchi\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tagency\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tclients\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tbelieve\t_\tVERB\tVBP\t_\t7\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tshakeup\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\thave\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n17\tlittle\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\taffect\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\timpact\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tus\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tnor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tdo\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\texpect\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t14\txcomp\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tspokeswoman\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tMiller\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tBrewing\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tclient\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tBacker\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tSpielvogel\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLampe\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tadvertising\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tPaineWebber\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tSaatchi\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tSaatchi\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAdvertising\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tclient\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t:\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n21\tWe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\thave\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n23\tno\t_\tDET\tDT\t_\t24\tneg\t_\t_\n24\tproblem\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tannouncement\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n29\tbecause\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n30\twe\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n31\tdo\t_\tAUX\tVBP\t_\t33\taux\t_\t_\n32\tn't\t_\tPART\tRB\t_\t33\tneg\t_\t_\n33\tknow\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n34\twhat\t_\tPRON\tWP\t_\t35\tdet\t_\t_\n35\tchange\t_\tNOUN\tVB\t_\t38\tdobj\t_\t_\n36\tit\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n37\t's\t_\tAUX\tVBZ\t_\t38\taux\t_\t_\n38\tgoing\t_\tVERB\tVBG\t_\t33\tccomp\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tbring\t_\tVERB\tVB\t_\t38\txcomp\t_\t_\n41\tabout\t_\tADP\tRB\t_\t40\tcompound:prt\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tchange\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tagencies\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tbecause\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tchange\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tLondon\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tExecutives\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tBacker\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tSpielvogel\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tclient\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tAvis\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tas\t_\tADV\tRB\t_\t7\tcc\t_\t_\n10\twell\t_\tADV\tRB\t_\t9\tmwe\t_\t_\n11\tas\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n12\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tSaatchi\t_\tNOUN\tNNP\t_\t17\tcompound\t_\t_\n14\tclient\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tPhilips\t_\tPROPN\tNN\t_\t17\tcompound\t_\t_\n16\tLighting\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\talso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tsaw\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n23\tno\t_\tDET\tDT\t_\t24\tneg\t_\t_\n24\teffect\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tExecutives\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tPrudential-Bache\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSecurities\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tBacker\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSpielvogel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tclient\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n13\treviewing\t_\tVERB\tVBG\t_\t10\tacl:relcl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\taccount\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tcomment\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSpielvogel\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tPrudential-Bache\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tauxpass\t_\t_\n8\tprepared\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfinance\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\teither\t_\tCONJ\tCC\t_\t14\tcc:preconj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbuy-out\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\trestructuring\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbuy-out\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tBacker\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tSpielvogel\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\talone\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n26\tled\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n27\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\thim\t_\tPRON\tPRP\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAd\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tNotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNEW\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tACCOUNT\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tCalifornia\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tGlendale\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBank\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tawarded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n8\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n9\t12\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\taccount\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tLos\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tAngeles\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\toffice\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tOmnicom\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tGroup\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tBBDO\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tagency\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccount\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tpreviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thandled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tDavis\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tBall\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tColombatto\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\tAdvertising\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tLos\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAngeles\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tagency\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tACCOUNT\t_\tPROPN\tNN\t_\t2\tcompound\t_\t_\n2\tREVIEW\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tRoyal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tCrown\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tCola\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\trelationship\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\toffice\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n14\tHill\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tHolliday\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tConnors\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\tCosmopulos\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccount\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tbilled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n7\t6\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1988\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\taccording\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\tLeading\t_\tPROPN\tVBG\t_\t16\tcompound\t_\t_\n15\tNational\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAdvertisers\t_\tPROPN\tNNPS\t_\t4\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNOT-GUILTY\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tPLEA\t_\tNOUN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\texpected\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tYoung\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tRubicam\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n8\talong\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tsenior\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\texecutives\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tformer\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\temployee\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\tpleaded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tnot\t_\tADV\tRB\t_\t20\tneg\t_\t_\n20\tguilty\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tfederal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcourt\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tHaven\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tConn.\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n31\tconspiracy\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tracketeering\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n34\tcharges\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tcharged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tbribed\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tJamaican\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficials\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\twin\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tJamaica\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\tTourist\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tad\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\taccount\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t1981\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAttorney\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\toffice\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\textradition\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproceedings\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tjust\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tbeginning\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tdefendants\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcase\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n26\tEric\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tAnthony\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tAbrahams\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tformer\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\tJamaican\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\ttourism\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tminister\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n36\tJamaican\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n37\tbusinessman\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n38\tArnold\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\tFoote\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tJr\t_\tPROPN\tNNP\t_\t28\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tKOREAN\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tAGENCY\t_\tNOUN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSamsung\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGroup\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tBozell\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\testablish\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tjoint\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tventure\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tadvertising\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tagency\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tSouth\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tKorea\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBozell\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCheil\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t15\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tagency\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tcalled\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tSeoul\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n20\t70\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t22\tdobj\t_\t_\n22\towned\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tSamsung\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\t30\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tdobj\t_\t_\n28\towned\t_\tVERB\tVBN\t_\t22\tconj\t_\t_\n29\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tBozell\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSamsung\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talready\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\towns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tKorea\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tFirst\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tAdvertising\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthat\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcountry\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tlargest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n13\tagency\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBozell\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tjoins\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tBacker\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSpielvogel\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBates\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tOgilvy\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGroup\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tagencies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tinterests\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tKorean\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tagencies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCiting\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpayment\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsupplier\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsales\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tcertain\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tdata-storage\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tproducts\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tMaxtor\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tearnings\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\trevenue\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n21\tjumped\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tsecond\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tquarter\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tended\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tSept.\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n28\t24\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmaker\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcomputer-data-storage\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproducts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tnet\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t4.8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t23\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tnet\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t1.1\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\tfive\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tsoared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t117\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n9\t81.5\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMaxtor\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tboosted\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n9\t2\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tpayments\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\treceived\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsupplier\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tcertain\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tline\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tproducts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tthat\t_\tADP\tWDT\t_\t28\tdobj\t_\t_\n25\tMaxtor\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tgoing\t_\tVERB\tVBG\t_\t21\tacl:relcl\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tsell\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tanymore\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMaxtor\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\teffects\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tfrom\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tdiscontinuing\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tline\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thave\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tpositive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\teffect\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tfuture\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\trevenue\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokeswoman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\telaborate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tdiscontinued\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n13\tproduct\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n15\tnever\t_\tADV\tRB\t_\t19\tneg\t_\t_\n16\tbeen\t_\tVERB\tVBN\t_\t19\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsource\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\trevenue\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tprofit\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOperationally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tMaxtor\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tbenefited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\trobust\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tproducts\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\tstore\t_\tVERB\tVBP\t_\t9\tacl:relcl\t_\t_\n12\tdata\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\thigh-end\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tpersonal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcomputers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tcomputer\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tworkstations\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfiscal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tnet\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n10\t7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t34\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcents\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n24\t3.1\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\t15\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t225.5\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n9\t161.8\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWalden\t_\tPROPN\tNNP\t_\t10\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t62\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tyears\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n7\told\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\telected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdirector\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tprovider\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tadvanced\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\ttechnology\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tsystems\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tservices\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tincreasing\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tboard\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\teight\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tmembers\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tretired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tsenior\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tfinance\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tadministration\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tchief\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tfinancial\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tOct.\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n20\t1\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSouthmark\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tfiled\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tpart\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\t10-K\t_\tADJ\tCD\t_\t11\tamod\t_\t_\n11\treport\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tSecurities\t_\tPROPN\tNNPS\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tExchange\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tCommission\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfiling\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\tdoes\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tinclude\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n27\taudited\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tfinancial\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tstatements\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\trelated\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tinformation\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\testate\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tthrift\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconcern\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\toperating\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n9\tunder\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tbankruptcy-law\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproceedings\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\ttold\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tSEC\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tprovide\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n22\tfinancial\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstatements\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tend\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tfirst\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\textension\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n32\twithout\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tunreasonable\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tburden\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n35\tor\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\texpense\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tasked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t15-day\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\textension\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tSept.\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n9\t30\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\treports\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n16\tdue\t_\tADJ\tJJ\t_\t8\tacl:relcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSouthmark\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tplans\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tamend\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\t10K\t_\tADJ\tCD\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tprovide\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n11\tfinancial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tresults\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\taudit\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\tauxpass\t_\t_\n19\tcompleted\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSeelenfreund\t_\tPROPN\tNNP\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t52\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\told\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tchairman\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprocessor\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tprescription\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tclaims\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tsucceeding\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n19\tThomas\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tW.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tField\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tJr.\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\t55\t_\tNUM\tCD\t_\t22\tamod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\tresigned\t_\tVERB\tVBD\t_\t22\tacl:relcl\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmonth\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tField\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n6\tchairman\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tMcKesson\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tresigning\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n12\tthat\t_\tDET\tIN\t_\t13\tdet\t_\t_\n13\tpost\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdispute\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tboard\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tcorporate\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstrategy\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSeelenfreund\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\texecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tchief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tfinancial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tMcKesson\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tcontinue\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthose\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\troles\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPCS\t_\tPROPN\tNN\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tnamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tRex\t_\tPROPN\tNN\t_\t6\tcompound\t_\t_\n5\tR.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMalson\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t57\t_\tNUM\tCD\t_\t6\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\texecutive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tvice\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tpresident\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tMcKesson\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdirector\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n20\tfilling\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tseat\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tvacated\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tMr.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tField\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMessrs.\t_\tPROPN\tNNPS\t_\t2\tcompound\t_\t_\n2\tMalson\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tSeelenfreund\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n6\tdirectors\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tMcKesson\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n12\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t86\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tstake\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tPCS\t_\tPROPN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMedChem\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tProducts\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tDistrict\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCourt\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tBoston\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\truled\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tchallenge\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n15\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tMedChem\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tvalidity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tpatent\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\theld\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tPharmacia\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n30\twithout\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tmerit\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tPharmacia\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tbased\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tUpsala\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tSweden\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tcharged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlawsuit\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tMedChem\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tthat\t_\tSCONJ\tWDT\t_\t22\tmark\t_\t_\n17\tMedChem\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tAMVISC\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tproduct\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tline\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tinfringes\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n23\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tPharmacia\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tpatent\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpatent\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tauxpass\t_\t_\n4\trelated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\thyaluronic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tacid\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\trooster-comb\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\textract\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\tused\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\teye\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsurgery\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tlawsuit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tPharmacia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tunspecified\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdamages\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tpreliminary\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinjunction\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tblock\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tMedChem\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tselling\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tAMVISC\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tproducts\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMedChem\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tcontribute\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n8\tabout\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tnummod\t_\t_\n10\tthird\t_\tADJ\tJJ\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tMedChem\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tearnings\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\tended\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tAug.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t31\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMedChem\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t2.9\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\t72\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t17.4\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMedChem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcourt\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\truling\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tissued\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n9\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tpart\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tfirst-phase\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttrial\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tpatent-infringement\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tproceedings\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n22\tconcerns\t_\tVERB\tNNS\t_\t8\tconj\t_\t_\n23\tonly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tone\t_\tNUM\tCD\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tdefenses\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcase\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tconsidering\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tall\t_\tDET\tDT\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\toptions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tlight\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdecision\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tincluding\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tpossible\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tappeal\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmedical-products\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tplans\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tassert\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdefenses\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\tagainst\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tPharmacia\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tlawsuit\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tincluding\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tclaim\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n25\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\tinfringed\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n28\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tPharmacia\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tpatent\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMedChem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcourt\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tscheduled\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconference\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnext\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tMonday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tset\t_\tVERB\tVB\t_\t6\tparataxis\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdate\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tproceedings\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tPharmacia\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tmotion\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tpreliminary\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tinjunction\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNewspaper\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tpublishers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\treporting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tmixed\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tthird-quarter\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\taided\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tfavorable\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnewsprint\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\thampered\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n16\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tflat\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tdeclining\t_\tADJ\tVBG\t_\t17\tconj\t_\t_\n20\tadvertising\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tlinage\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tespecially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tNortheast\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAdding\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n2\tto\t_\tADP\tTO\t_\t3\tcase\t_\t_\n3\tunsteadiness\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tindustry\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tseasonal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n9\tretail\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tad\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tspending\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tpatterns\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tnewspapers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tupset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tshifts\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\townership\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\tgeneral\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\thardships\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n25\twithin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tretail\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tindustry\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tBonwit\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tTeller\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tB.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAltman\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tdepartment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tstores\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tfiled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tprotection\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcreditors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tChapter\t_\tPROPN\tNN\t_\t16\tnmod\t_\t_\n23\t11\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tfederal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tBankruptcy\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCode\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n30\twhile\t_\tSCONJ\tIN\t_\t47\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tR.H.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tMacy\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n34\t&\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n37\tBloomingdale\t_\tPROPN\tNNP\t_\t33\tconj\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n40\tSaks\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n41\tFifth\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tAvenue\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tdepartment-store\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tchains\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n45\tare\t_\tVERB\tVBP\t_\t47\tcop\t_\t_\n46\tfor\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\tsale\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tpapers\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n3\tthroughout\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcountry\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t8\tauxpass\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tfaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tslowdown\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tclassified-ad\t_\tNOUN\tJJ\t_\t14\tcompound\t_\t_\n14\tspending\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbooming\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcategory\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tnewspapers\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\trecently\t_\tADV\tRB\t_\t6\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tanalysts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tbelieved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdecreases\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tretail\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tad\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tspending\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\thad\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n13\tbottomed\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tfact\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n19\tincrease\t_\tVERB\tNN\t_\t13\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tthird\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tfourth\t_\tADJ\tJJ\t_\t24\tconj\t_\t_\n27\tquarters\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbets\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n4\toff\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t13\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tbecause\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tof\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tshifting\t_\tADJ\tVBG\t_\t13\tamod\t_\t_\n13\townership\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tretail\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchains\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n2\tImproved\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tpaper\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\thelp\t_\tVERB\tVB\t_\t29\tccomp\t_\t_\n7\toffset\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n8\tweakness\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tlinage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tretailers\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tproblems\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n18\taffected\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tamount\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tad\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlinage\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tthey\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\tusually\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\trun\t_\tVERB\tVBP\t_\t20\tacl:relcl\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\tEdward\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tJ.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAtorino\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tindustry\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tanalyst\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n36\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tSalomon\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tBrothers\t_\tPROPN\tNNPS\t_\t39\tcompound\t_\t_\n39\tInc\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tRetailers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdisarray\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tGannett\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t11\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\ttotal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tad\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpages\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tdropped\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n20\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tUSA\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tToday\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n25\tadvertising\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\trevenue\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\trose\t_\tVERB\tVBD\t_\t19\tconj\t_\t_\n28\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n29\tof\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n31\thigher\t_\tADJ\tJJR\t_\t34\tamod\t_\t_\n32\tcirculation\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n33\trate\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tbase\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\tincreased\t_\tADJ\tVBD\t_\t37\tamod\t_\t_\n37\trates\t_\tNOUN\tNNS\t_\t34\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGannett\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\t83\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdaily\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n6\t35\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tnon-daily\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n8\tnewspapers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\t3\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t%\t_\tSYM\tNN\t_\t13\tamod\t_\t_\n13\tincrease\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tadvertising\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tcirculation\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\trevenue\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTotal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tadvertising\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tlinage\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\tmodestly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tlower\t_\tADJ\tJJR\t_\t28\tccomp\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tclassified-ad\t_\tNOUN\tJJ\t_\t11\tcompound\t_\t_\n11\tvolume\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tincreased\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tthere\t_\tPRON\tEX\t_\t16\texpl\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tsofter\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n19\tdemand\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tretail\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tnational\t_\tADJ\tJJ\t_\t22\tconj\t_\t_\n25\tad\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tlinage\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tJohn\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCurley\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tGannett\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tchief\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\texecutive\t_\tADJ\tNN\t_\t36\tamod\t_\t_\n36\tofficer\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tUSA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tToday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tad\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpages\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t785\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tdown\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n14\t9.2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\t1988\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tperiod\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t23\tnsubjpass\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\thelped\t_\tVERB\tVBN\t_\t19\tacl:relcl\t_\t_\n24\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tincreased\t_\tADJ\tVBN\t_\t27\tamod\t_\t_\n26\tad\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tspending\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tSummer\t_\tPROPN\tNN\t_\t31\tcompound\t_\t_\n31\tOlympics\t_\tPROPN\tNNPS\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n2\tUSA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tToday\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\ttotal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tpaid\t_\tADJ\tVBN\t_\t8\tamod\t_\t_\n7\tad\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpages\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tdate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\ttotaled\t_\tVERB\tVBD\t_\t31\tadvcl\t_\t_\n15\t2,735\t_\tNUM\tCD\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdecrease\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t4\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tlast\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tpaper\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tad\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\trevenue\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t8\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t31\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n38\t13\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\t%\t_\tSYM\tNN\t_\t31\tconj\t_\t_\n40\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tnine\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n43\tmonths\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tGannett\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tnet\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t9.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n14\t270\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t1.68\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n25\t247\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t1.52\t_\tNUM\tCD\t_\t24\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tgained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t6\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t2.55\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t2.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthird-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tnet\t_\tNOUN\tJJ\t_\t9\tcompound\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t9.9\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tyear-earlier\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tperiod\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNet\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t28.8\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\t29\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcents\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n16\t32\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t33\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tyear-earlier\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tperiod\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tone-time\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t3.5\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tfour\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcents\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tgained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t5.3\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t404.1\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t383.8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdrop\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tprofit\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tpart\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tcontinued\t_\tADJ\tVBD\t_\t11\tamod\t_\t_\n11\tsoftness\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tadvertising\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tThe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tJournal\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tBarron\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmagazine\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAd\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tlinage\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tJournal\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t6.1\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tthird\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAffiliated\t_\tPROPN\tVBN\t_\t3\tcompound\t_\t_\n2\tPublications\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treversed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tyear-earlier\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tloss\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpublisher\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBoston\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tGlobe\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n11\t8.5\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t12\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tloss\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t26.5\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t38\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n35\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tthird\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n39\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\t1988\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWilliam\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tO.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTaylor\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparent\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tchief\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\texecutive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tofficer\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tcontinued\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\thurt\t_\tVERB\tVBN\t_\t16\txcomp\t_\t_\n20\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsoftness\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tad\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tvolume\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tBoston\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tnewspaper\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThird-quarter\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tprofit\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\testimates\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tseveral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n8\tbeing\t_\tAUX\tVBG\t_\t10\tauxpass\t_\t_\n9\tstrongly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\taffected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprice\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tnewsprint\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n18\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\ttwo\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tyears\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\thad\t_\tVERB\tVBN\t_\t15\tacl:relcl\t_\t_\n25\tseveral\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tprice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tincreases\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsupply\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcrunch\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcaused\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\trise\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n9\t14\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\tsince\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1986\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t650\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tmetric\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tton\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tanalysts\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\tencouraged\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tbecause\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n25\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n26\tdo\t_\tAUX\tVBP\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\texpect\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tprice\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tincrease\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\trest\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthis\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n2\twith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tdaily\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnewspapers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tNortheast\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tneed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tstable\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnewsprint\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tease\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n16\tdamage\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tweak\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tad\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tlinage\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAtorino\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tSalomon\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBrothers\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\testimates\t_\tVERB\tVBZ\t_\t6\tccomp\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n10\tTimes\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tMirror\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tearnings\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n16\tdown\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tthird\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tquarter\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tbecause\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tsoft\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tadvertising\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tlevels\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n29\tLong\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tIsland\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tNewsday\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tHartford\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tCourant\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tnewspapers\t_\tNOUN\tNNS\t_\t31\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTrouble\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n2\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tEast\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCoast\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tlikely\t_\tADV\tJJ\t_\t8\tadvmod\t_\t_\n8\toffset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\timproved\t_\tADJ\tVBN\t_\t12\tamod\t_\t_\n11\tad\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tlinage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tLos\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tAngeles\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tTimes\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tweek\t_\tNOUN\tNN\t_\t23\tdep\t_\t_\n22\talso\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tunveiled\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tredesign\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tTimes\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tlower\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tbecause\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tcontinued\t_\tADJ\tVBN\t_\t20\tamod\t_\t_\n18\tweak\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tadvertising\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tlevels\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tflagship\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tYork\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tTimes\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n28\tdeep\t_\tADV\tJJ\t_\t29\tadvmod\t_\t_\n29\tdiscounting\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tnewsprint\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\taffiliate\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tForest\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tProducts\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tGroup\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n2\tTimes\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tregional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tdaily\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tnewspapers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tholding\t_\tVERB\tVBG\t_\t29\tccomp\t_\t_\n10\tup\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\twell\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthere\t_\tPRON\tEX\t_\t15\texpl\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n16\tlittle\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsign\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthings\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\timprove\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tYork\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\tAlan\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tKassan\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tanalyst\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n35\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tShearson\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tLehman\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tHutton\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tWashington\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPost\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\timproved\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tlargely\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n12\tbecause\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tof\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tincreased\t_\tADJ\tVBN\t_\t16\tamod\t_\t_\n15\tcable\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trevenue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tpublishing\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trevenue\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\thelped\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\timproved\t_\tADJ\tVBN\t_\t25\tamod\t_\t_\n24\tretail\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tWashington\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tarea\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tprofits\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thelped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tsuccessful\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tcost-cutting\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmeasures\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tNewsweek\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnews-weekly\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tfaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\theightened\t_\tADJ\tVBN\t_\t6\tamod\t_\t_\n6\tcompetition\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\trival\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tTime\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tmagazine\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\trelatively\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tflat\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tmagazine\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tadvertising\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tKnight-Ridder\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tfaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tcontinued\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tuncertainty\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tpending\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n11\tjoint\t_\tADJ\tNN\t_\t13\tamod\t_\t_\n12\toperating\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\tDetroit\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tFree\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tPress\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tGannett\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tDetroit\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tNews\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n27\ttold\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n28\tanalysts\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\tthat\t_\tSCONJ\tWDT\t_\t36\tmark\t_\t_\n30\tearnings\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t36\tcop\t_\t_\n32\tdown\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tthird\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t27\tccomp\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpoint\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\tpositive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tadvertising\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tspending\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tseveral\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tdaily\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tnewspapers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tsuch\t_\tADJ\tJJ\t_\t21\tcase\t_\t_\n18\tas\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tMiami\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHerald\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tSan\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tJose\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tMercury\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tNews\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tMiami\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tcoming\t_\tVERB\tVBG\t_\t31\tccomp\t_\t_\n7\tback\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t6\tadvmod\t_\t_\n9\tafter\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttough\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcouple\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n17\tKnight-Ridder\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n19\twas\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n20\tstarting\t_\tVERB\tVBG\t_\t12\tacl:relcl\t_\t_\n21\tup\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tHispanic\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tedition\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\tcirculation\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\taux\t_\t_\n28\tfalling\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tBruce\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tThorp\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tan\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tanalyst\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n37\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tProvident\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\tNational\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tBank\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tGeneral\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMotors\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tseries\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmoves\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\tangered\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n12\tunion\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tofficials\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tCanada\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tsignaled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n23\tas\t_\tADV\tIN\t_\t26\tadvmod\t_\t_\n24\tmany\t_\tADJ\tJJ\t_\t26\tadvmod\t_\t_\n25\tas\t_\tADP\tIN\t_\t26\tadvmod\t_\t_\n26\tfive\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n27\tNorth\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tAmerican\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tassembly\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tplants\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n31\tmay\t_\tAUX\tMD\t_\t33\taux\t_\t_\n32\tnot\t_\tPART\tRB\t_\t33\tneg\t_\t_\n33\tsurvive\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tmid-1990s\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\tas\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tcorporation\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n39\tstruggles\t_\tVERB\tVBZ\t_\t33\tadvcl\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tcut\t_\tVERB\tVB\t_\t39\txcomp\t_\t_\n42\tits\t_\tPRON\tPRP$\t_\t45\tnmod:poss\t_\t_\n43\texcess\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n44\tvehicle-making\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tcapacity\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tannouncements\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tlate\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tGM\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\teffectively\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tdeath\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tnotices\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n16\tfull-sized\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tvan\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tassembly\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tplants\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n22\tcast\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n23\tserious\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdoubt\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tfutures\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthree\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n30\tU.S.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tcar\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tfactories\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tunder\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tintense\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpressure\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tclose\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tfactories\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\tbecame\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tunprofitable\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\tas\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tgiant\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tauto\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmaker\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tskidded\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n22\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpast\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdecade\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\tcurrently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tusing\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n6\tabout\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n7\t80\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n11\tNorth\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tAmerican\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tvehicle\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcapacity\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tvowed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\trun\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t100\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tcapacity\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1992\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tnummod\t_\t_\n3\tmonth\t_\tNOUN\tNN\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tGM\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\taging\t_\tVERB\tNN\t_\t14\tamod\t_\t_\n13\tassembly\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplant\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tLakewood\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tGa.\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\teighth\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tassembly\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tfacility\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tclose\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tsince\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1987\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tGM\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tstepping\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpace\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfactory\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tconsolidation\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tshape\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\t1990s\t_\tNOUN\tCD\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\treason\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tmounting\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\tcompetition\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tJapanese\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcar\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplants\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tpouring\t_\tVERB\tVBG\t_\t10\tacl:relcl\t_\t_\n17\tout\t_\tADP\tRP\t_\t16\tadvmod\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t21\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\tone\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tvehicles\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tcosts\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n27\tlower\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n28\tthan\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tGM\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n30\tcan\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\tmatch\t_\tVERB\tVB\t_\t27\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n4\tUnited\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tAuto\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tWorkers\t_\tPROPN\tNNPS\t_\t8\tcompound\t_\t_\n7\tunion\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tofficials\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tsignaled\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\twant\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n13\ttighter\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n14\tno-layoff\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprovisions\t_\tNOUN\tNNS\t_\t12\txcomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n19\tBig\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tThree\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tnational\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcontract\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t26\tnsubjpass\t_\t_\n24\twill\t_\tAUX\tMD\t_\t26\taux\t_\t_\n25\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n26\tnegotiated\t_\tVERB\tVBN\t_\t22\tacl:relcl\t_\t_\n27\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\twant\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tget\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tstrategy\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\treduce\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tcapacity\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\twork\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tforce\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tplace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tbefore\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthose\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttalks\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tbegin\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tproblem\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tGM\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tmoves\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tcoming\t_\tVERB\tVBG\t_\t6\tccomp\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n17\tUAW\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tleaders\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\ttrying\t_\tVERB\tVBG\t_\t15\tacl:relcl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tsilence\t_\tVERB\tNN\t_\t20\txcomp\t_\t_\n23\tdissidents\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n25\tcharge\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tunion\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t30\tcop\t_\t_\n29\ttoo\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tpassive\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tface\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tGM\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tlayoffs\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAgainst\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbackdrop\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n5\tUAW\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n6\tVice\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tStephen\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tP.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tYokich\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n13\trecently\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tbecame\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n15\thead\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tunion\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tGM\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tdepartment\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tstatement\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n27\tblasting\t_\tVERB\tVBG\t_\t23\tdep\t_\t_\n28\tGM\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n31\tflagrant\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tinsensitivity\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n34\ttoward\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tunion\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tmembers\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tauto\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmaker\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tdecision\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tlet\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tword\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlatest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tshutdowns\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tproduct\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\treassignments\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\ttrickle\t_\tVERB\tVBP\t_\t7\tccomp\t_\t_\n17\tout\t_\tADP\tRP\t_\t16\tadvmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tseparate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tcommuniques\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\taffected\t_\tADJ\tVBN\t_\t24\tamod\t_\t_\n24\tplants\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tshowed\t_\tVERB\tVBD\t_\t43\tccomp\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\tdisarray\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n30\tan\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\tinability\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n33\tor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tunwillingness\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tprovide\t_\tVERB\tVB\t_\t34\tacl\t_\t_\n37\tconsistent\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tinformation\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t43\tpunct\t_\t_\n41\tMr.\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tYokich\t_\tPROPN\tNNP\t_\t43\tnsubj\t_\t_\n43\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t43\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tlate\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfollowing\t_\tADJ\tVBG\t_\t11\tamod\t_\t_\n11\tmoves\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\t:\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n13\tProduction\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tfull-sized\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tvans\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\tconsolidated\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n20\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tsingle\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tplant\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFlint\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tMich\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tplants\t_\tNOUN\tNNS\t_\t23\tnsubjpass\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tone\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tScarborough\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tOntario\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tLordstown\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tOhio\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n20\tprobably\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tshut\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n24\tdown\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\tafter\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tend\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t1991\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshutdowns\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tidle\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\t3,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\tCanadian\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tassembly\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tworkers\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tabout\t_\tADJ\tIN\t_\t12\tadvmod\t_\t_\n12\t2,500\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tworkers\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tOhio\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCanadian\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tAuto\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tWorkers\t_\tPROPN\tNNPS\t_\t8\tcompound\t_\t_\n7\tunion\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\timpending\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tScarborough\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tshutdown\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcriticize\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tU.S.-Canada\t_\tPROPN\tJJ\t_\t21\tcompound\t_\t_\n19\tfree\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttrade\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tagreement\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tchampion\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tPrime\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tMinister\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tBrian\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tMulroney\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tCanadian\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tauto\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tmay\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbenefit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tseparate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tGM\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tmove\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\taffects\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n14\tthree\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tcar\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tplants\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tone\t_\tNUM\tCD\t_\t17\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tQuebec\t_\tNOUN\tNNP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWorkers\t_\tNOUN\tNNS\t_\t18\tnsubjpass\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tplants\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tVan\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tNuys\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCalif.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tOklahoma\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCity\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tPontiac\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tMich.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\twere\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n18\ttold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tfacilities\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n21\tare\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n22\tno\t_\tADV\tRB\t_\t23\tneg\t_\t_\n23\tlonger\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\tbeing\t_\tNOUN\tVBG\t_\t25\tdep\t_\t_\n25\tconsidered\t_\tVERB\tVBN\t_\t18\tccomp\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tbuild\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tnext\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tgeneration\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tPontiac\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tFirebird\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\tChevrolet\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tCamaro\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tmuscle\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tcars\t_\tNOUN\tNNS\t_\t34\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tstudying\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n4\twhether\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tbuild\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tCamaro-Firebird\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n11\tprofitably\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tplant\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tSt.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tTherese\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tQuebec\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tunion\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\tofficials\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tannouncement\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tunion\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tVan\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tNuys\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tOklahoma\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCity\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\tuncertain\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n13\tabout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tfutures\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tNuys\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tplant\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\temploys\t_\tVERB\tVBZ\t_\t4\tacl:relcl\t_\t_\n8\tabout\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n9\t3,000\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tworkers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tproduct\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuild\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tafter\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1993\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tJerry\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tShrieves\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tUAW\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tlocal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfacility\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tasked\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tdraw\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tplans\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tcontinue\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tworking\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n23\tflex\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tplant\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n28\tcould\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tbuild\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n30\tseveral\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tdifferent\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\ttypes\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tproducts\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tshort\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tnotice\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\tsatisfy\t_\tVERB\tVB\t_\t29\tadvcl\t_\t_\n40\tdemand\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tOklahoma\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tCity\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tplant\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\temploys\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\tabout\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n10\t6,000\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tworkers\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tbuilding\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\teight-year-old\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n15\tA-body\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tmid-sized\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcars\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tSteve\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tFeatherston\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tUAW\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tlocal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tvice\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tpresident\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tplant\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\thas\t_\tVERB\tVBZ\t_\t27\tdep\t_\t_\n31\tno\t_\tDET\tDT\t_\t33\tneg\t_\t_\n32\tnew\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tproduct\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n34\tlined\t_\tVERB\tVBD\t_\t30\tccomp\t_\t_\n35\tup\t_\tADP\tRP\t_\t34\tcompound:prt\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n39\tnone\t_\tNOUN\tNN\t_\t42\tnsubj\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tus\t_\tPRON\tPRP\t_\t39\tnmod\t_\t_\n42\tknows\t_\tVERB\tVBZ\t_\t30\tconj\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t42\tpunct\t_\t_\n44\twhen\t_\tADV\tWRB\t_\t49\tadvmod\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tA-body\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tcars\t_\tNOUN\tNNS\t_\t49\tnsubj\t_\t_\n48\twill\t_\tAUX\tMD\t_\t49\taux\t_\t_\n49\tdie\t_\tVERB\tVB\t_\t42\tccomp\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tbelieves\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tGM\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\thas\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tplans\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tkeep\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tbuilding\t_\tVERB\tNN\t_\t9\txcomp\t_\t_\n11\tA-body\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcars\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tinto\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmid-1990s\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tPontiac\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tCamaro-Firebird\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tdecision\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\terase\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tUAW\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\thopes\t_\tNOUN\tVBZ\t_\t11\tdobj\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tGM\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\treopen\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tshuttered\t_\tADJ\tVBN\t_\t21\tamod\t_\t_\n20\tassembly\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tplant\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tthat\t_\tPRON\tIN\t_\t24\tnsubj\t_\t_\n23\tlast\t_\tADV\tJJ\t_\t24\tadvmod\t_\t_\n24\tbuilt\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n26\tplastic-bodied\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n28\ttwo-seater\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tPontiac\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tFiero\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tmodel\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFiero\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tplant\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tviewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmodel\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tunion-management\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcooperation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tGM\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\tbefore\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tslow\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tFiero\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\tforced\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tclose\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tfactory\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tlast\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnion\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbeating\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tpolitically\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tresult\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDissident\t_\tPROPN\tJJ\t_\t3\tcompound\t_\t_\n2\tUAW\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmembers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tFiero\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tplant\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsymbol\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tlabor-management\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcooperation\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tfailure\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInstitut\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMerieux\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tS.A.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFrance\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tCanadian\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tgovernment\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\traised\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tobstacle\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tproposed\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tacquisition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tConnaught\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tBioSciences\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\t942\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n24\tCanadian\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdollars\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tUS$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n28\t801.6\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMerieux\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tgovernment\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tminister\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tindustry\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tscience\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\ttechnology\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\ttold\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tconvinced\t_\tADJ\tVBN\t_\t13\tccomp\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpurchase\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tlikely\t_\tADJ\tJJ\t_\t19\tccomp\t_\t_\n25\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n26\tbe\t_\tVERB\tVB\t_\t30\tcop\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n29\tnet\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tbenefit\t_\tNOUN\tNN\t_\t24\txcomp\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\tCanada\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trules\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trequire\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tforeign\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttakeovers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tmeet\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n10\tthat\t_\tDET\tIN\t_\t11\tdet\t_\t_\n11\tstandard\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgovernment\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tgave\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tiobj\t_\t_\n9\t30\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tdays\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t14\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsubmit\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n15\tinformation\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n17\tfurther\t_\tADV\tJJ\t_\t18\tadvmod\t_\t_\n18\tsupport\t_\tVERB\tNN\t_\t15\tacl\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\ttakeover\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tplan\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tcc:preconj\t_\t_\n2\tMerieux\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tConnaught\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\tbiotechnology\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tresearch\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tvaccine\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tmanufacturing\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tconcerns\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\taction\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tunusual\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAlan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNymark\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\texecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tInvestment\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCanada\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\toversees\t_\tVERB\tVBZ\t_\t9\tacl:relcl\t_\t_\n13\tforeign\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttakeovers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tmarked\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfirst\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttime\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tfour-year\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thistory\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tthat\t_\tADP\tIN\t_\t30\tadvmod\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tagency\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n29\thas\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\tmade\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n31\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tadverse\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\tnet-benefit\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tdecision\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n35\tabout\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tacquisition\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n40\tpublicly\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\ttraded\t_\tVERB\tVBN\t_\t42\tamod\t_\t_\n42\tcompany\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\treached\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsame\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tconclusions\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsome\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tattempts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tclosely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\theld\t_\tVERB\tVBN\t_\t13\txcomp\t_\t_\n16\tconcerns\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\teventually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tallowed\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n21\tthose\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tacquisitions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tproceed\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tchange\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpolicy\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tprovision\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tused\t_\tVERB\tVBN\t_\t6\tparataxis\t_\t_\n16\tbefore\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tJodi\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tRedmond\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tpress\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tsecretary\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tHarvie\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAndre\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tCanada\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tminister\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tindustry\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tscience\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n37\ttechnology\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAndre\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\truling\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t9\tcase\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trecommendation\t_\tNOUN\tNN\t_\t3\tadvcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tInvestment\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCanada\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSpokesmen\t_\tPROPN\tNNS\t_\t6\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tMerieux\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tConnaught\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t11\tnsubjpass\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tinformed\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tspecific\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tareas\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tconcern\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\teither\t_\tCONJ\tCC\t_\t20\tcc:preconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tgovernment\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tInvestment\t_\tPROPN\tNN\t_\t23\tcompound\t_\t_\n23\tCanada\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n26\tadded\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n27\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\thope\t_\tVERB\tVBP\t_\t26\tccomp\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\thave\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tmore\t_\tADJ\tJJR\t_\t32\tamod\t_\t_\n32\tinformation\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tearly\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n34\tthis\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tweek\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tInvestment\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCanada\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tcomment\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\treasons\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tdecision\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tViren\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMehta\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpartner\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tMehta\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tIsaly\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t13\tamod\t_\t_\n13\tYork-based\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n14\tpharmaceutical\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tindustry\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tresearch\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfirm\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tgovernment\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\truling\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\tunexpected\t_\tADJ\tJJ\t_\t19\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tbecome\t_\tVERB\tVBN\t_\t25\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tvery\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tpoliticized\t_\tADJ\tVBN\t_\t8\tamod\t_\t_\n8\tdeal\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tconcerning\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n11\tCanada\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tonly\t_\tADJ\tRB\t_\t20\tamod\t_\t_\n14\tlarge\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tworld-class\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n17\tbio-research\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tpharmaceutical\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMehta\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMehta\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmove\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tallow\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\ttransaction\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\tahead\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tplanned\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n18\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tout-of-court\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tsettlement\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tConnaught\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tdispute\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tUniversity\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tToronto\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tUniversity\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tblock\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tacquisition\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tConnaught\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tforeign\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinterests\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tciting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n16\tconcerns\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tamount\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tresearch\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t25\tnsubjpass\t_\t_\n23\twould\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tdone\t_\tVERB\tVBN\t_\t19\tacl:relcl\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tCanada\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tuniversity\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tconsidering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsettlement\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tproposal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tmade\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tConnaught\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tneither\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tside\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tdisclose\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tcontents\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMehta\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tcontain\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n15\tmore\t_\tADV\tJJR\t_\t16\tadvmod\t_\t_\n16\tspecific\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tguarantees\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tresearch\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tdevelopment\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tspending\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlevels\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tthan\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\tMerieux\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\toffered\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tInvestment\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tCanada\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t7\tcase\t_\t_\n5\tas\t_\tADP\tIN\t_\t4\tmwe\t_\t_\n6\tMurray\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tGrossner\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tToronto-based\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tRichardson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tGreenshields\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tgovernment\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\truling\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tleaves\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdoor\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\topen\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbidders\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t30\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tSwitzerland\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tCiba-Geigy\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tChiron\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp.\t_\tPROPN\tNNP\t_\t30\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tEmeryville\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tCalif\t_\tPROPN\tNNP\t_\t35\tappos\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOfficials\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttwo\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tconcerns\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tbidding\t_\tVERB\tVBG\t_\t5\tacl:relcl\t_\t_\n10\tC$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t30\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tConnaught\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\treached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcomment\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tFrench\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tstate-owned\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tRhone-Poulenc\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tS.A.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\t51\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tMerieux\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tInternational\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tcanceled\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tplans\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tpreferred-stock\t_\tNOUN\tJJ\t_\t11\tcompound\t_\t_\n11\tswap\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tresume\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n15\tpayment\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tdividends\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n23\tadded\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\texpects\t_\tVERB\tVBZ\t_\t23\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n28\tpublicly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\toffer\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n30\tabout\t_\tADV\tIN\t_\t32\tadvmod\t_\t_\n31\t10\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n33\tcommon\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tshares\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tplanned\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\toffer\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tundetermined\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tnumber\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tcommon\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\texchange\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\t585,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tpreferred\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\toutstanding\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tratio\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tnever\t_\tADV\tRB\t_\t6\tneg\t_\t_\n6\testablished\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tconditions\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tled\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcancellation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tplanned\t_\tADJ\tVBN\t_\t12\tamod\t_\t_\n12\texchange\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tenergy-services\t_\tNOUN\tJJ\t_\t3\tcompound\t_\t_\n3\tconcern\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tJanuary\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n11\t1990\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tmay\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tresume\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n16\tpayments\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdividends\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tpreferred\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsuspended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tpreferred-dividend\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpayment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tOctober\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\t1985\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thas\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n13\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n14\tany\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tplans\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcatch\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tdividends\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tarrears\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tabout\t_\tADV\tIN\t_\t24\tadvmod\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod:npmod\t_\t_\n25\t6\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n28\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n29\twill\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\tdo\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n31\tso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\tsome\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\ttime\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tfuture\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAdditionally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tfiled\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tSecurities\t_\tPROPN\tNNPS\t_\t13\tcompound\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tExchange\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\tCommission\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tproposed\t_\tADJ\tVBN\t_\t17\tamod\t_\t_\n17\toffering\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tcommon\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n26\texpected\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n27\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n28\tbe\t_\tAUX\tVB\t_\t29\tauxpass\t_\t_\n29\toffered\t_\tVERB\tVBN\t_\t26\txcomp\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tNovember\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tSalomon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tBrothers\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t23\tnsubjpass\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tHoward\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tWeil\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tLabouisse\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tFriedrichs\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\tunderwriters\t_\tNOUN\tNNS\t_\t6\tappos\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\toffering\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n22\twere\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tgranted\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\toption\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tbuy\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tas\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tmuch\t_\tADJ\tJJ\t_\t27\tdobj\t_\t_\n30\tas\t_\tADP\tIN\t_\t35\tcase\t_\t_\n31\tan\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\tadditional\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\t1.5\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tshares\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\tcover\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n38\tover-allotments\t_\tNOUN\tNNS\t_\t37\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProceeds\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tAUX\tVB\t_\t4\tauxpass\t_\t_\n4\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\teliminate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\trestructure\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n9\tbank\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdebt\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tcurrently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tapproximately\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t11.1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tcommon\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\toutstanding\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEarnings\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnation\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpharmaceutical\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmakers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n12\tbelieved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n14\thave\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tmoved\t_\tVERB\tVBN\t_\t12\txcomp\t_\t_\n16\tahead\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\tbriskly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n24\tcompanies\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n25\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tnewer\t_\tADJ\tJJR\t_\t30\tamod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n28\tbig-selling\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tprescription\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tdrugs\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\tfared\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n32\tespecially\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\twell\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tconsecutive\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n9\tmost\t_\tADJ\tJJS\t_\t16\tnsubjpass\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t14\tnmod:poss\t_\t_\n13\t'\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\trevenues\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\tbattered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tadverse\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tforeign-currency\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttranslations\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tresult\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tstrong\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdollar\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tabroad\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n4\tMerck\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tCo.\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tEli\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tLilly\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tWarner-Lambert\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tSquibb\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tCorp.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tunit\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tBristol-Myers\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tSquibb\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCo.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\tall\t_\tDET\tDT\t_\t25\tdep\t_\t_\n25\tbenefited\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tstrong\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tsales\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\trelatively\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tnew\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\thigher-priced\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tmedicines\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n35\tthat\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n36\tprovide\t_\tVERB\tVBP\t_\t34\tacl:relcl\t_\t_\n37\twide\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tprofit\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tmargins\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLess\t_\tADV\tRBR\t_\t2\tadvmod\t_\t_\n2\trobust\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tearnings\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tPfizer\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tUpjohn\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t11\tauxpass\t_\t_\n11\tattributed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n13\tthose\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t17\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tolder\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tproducts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t22\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t19\tnmod\t_\t_\n22\tface\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n23\tstiffening\t_\tADJ\tVBG\t_\t24\tamod\t_\t_\n24\tcompetition\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tgeneric\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdrugs\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tother\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tmedicines\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tJoseph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRiccardo\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tanalyst\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tBear\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tStearns\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n15\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tpast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n20\tmost\t_\tADJ\tRBS\t_\t22\tamod\t_\t_\n21\tdrug\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmakers\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tshed\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tslow-growing\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tbusinesses\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tinstituted\t_\tVERB\tVBN\t_\t24\tconj\t_\t_\n30\tother\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tcost\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsavings\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tsuch\t_\tADJ\tJJ\t_\t36\tmark\t_\t_\n35\tas\t_\tSCONJ\tIN\t_\t34\tmwe\t_\t_\n36\tconsolidating\t_\tVERB\tVBG\t_\t32\tacl\t_\t_\n37\tmanufacturing\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tplants\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tadministrative\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tstaffs\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tproducts\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\thaving\t_\tVERB\tVBG\t_\t26\tccomp\t_\t_\n11\tsignificant\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\timpact\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\teven\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tvery\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tlarge\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\trevenues\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tRiccardo\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n6\tdozen\t_\tNOUN\tNN\t_\t11\tnummod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tso\t_\tADV\tRB\t_\t6\tconj\t_\t_\n9\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tdrug\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmakers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tgroup\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\testimated\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\thave\t_\tAUX\tVB\t_\t21\taux\t_\t_\n21\tclimbed\t_\tVERB\tVBN\t_\t18\txcomp\t_\t_\n22\tbetween\t_\tADP\tIN\t_\t24\tamod\t_\t_\n23\t11\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\t14\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t24\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tspectacular\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n7\tNeil\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSweig\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tanalyst\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tPrudential\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBache\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\trate\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tgrowth\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n24\tlook\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n25\tespecially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n27\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n28\tcompared\t_\tVERB\tVBN\t_\t26\tdep\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tother\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcompanies\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tif\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\teconomy\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n35\tturns\t_\tVERB\tVBZ\t_\t24\tadvcl\t_\t_\n36\tdownward\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSweig\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\testimated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n5\tMerck\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tprofit\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\trose\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\t22\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tpropelled\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n18\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tsales\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tline-up\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tfast-growing\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tprescription\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tdrugs\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tincluding\t_\tVERB\tVBG\t_\t31\tcase\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\tanti-cholesterol\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tdrug\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tMevacor\t_\tPROPN\tNNP\t_\t31\tappos\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n35\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n36\thigh\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n37\tblood\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n38\tpressure\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tmedicine\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tVasotec\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n42\t;\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n43\tPrimaxin\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n45\tan\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tantibiotic\t_\tNOUN\tJJ\t_\t43\tappos\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n49\tPepcid\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n51\tan\t_\tDET\tDT\t_\t53\tdet\t_\t_\n52\tanti-ulcer\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n53\tmedication\t_\tNOUN\tNN\t_\t49\tappos\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProfit\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tclimbed\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n3\teven\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n4\tthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tMerck\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\treduced\t_\tVERB\tVBN\t_\t2\tadvcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n12\tone\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tdep\t_\t_\n14\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tpercentage\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tresult\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tstrong\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdollar\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n26\tMr.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tSweig\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1988\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tMerck\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t311.8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t79\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tRahway\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.J.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tMerck\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tmake\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tprojections\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSweig\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\testimated\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n7\tLilly\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tjumped\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n14\tabout\t_\tADV\tIN\t_\t16\tadvmod\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tlargely\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n19\tbecause\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tof\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tperformance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n25\tnew\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tanti-depressant\t_\tNOUN\tJJ\t_\t27\tcompound\t_\t_\n27\tProzac\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdrug\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tintroduced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n9\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tgenerate\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tsales\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n16\t300\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tturning\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\treal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tblockbuster\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSweig\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tthird\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tLilly\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t171.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t1.20\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tIndianapolis\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tLilly\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tcomment\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpected\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tWarner-Lambert\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tprofit\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tincrease\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tmore\t_\tADJ\tJJR\t_\t15\tadvmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n19\t87.7\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n24\t1.25\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t24\tnmod:npmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\treported\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tlike\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tperiod\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tlast\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tyear\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tpraised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tsharply\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tlowering\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcosts\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\trecent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tshedding\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n17\tnumerous\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcompanies\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tlow\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tprofit\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmargins\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tlean\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toperation\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tanalysts\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tallowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tsharp-rising\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tsales\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tcholesterol\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tdrug\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tLopid\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tpower\t_\tVERB\tNN\t_\t10\txcomp\t_\t_\n22\tearnings\t_\tNOUN\tNNS\t_\t23\tcompound\t_\t_\n23\tgrowth\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLopid\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tsales\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\txcomp\t_\t_\n9\t300\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tup\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n17\t190\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1988\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMorris\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPlains\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tN.J.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tspokesman\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tanalysts\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tprojections\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tballpark\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tSquibb\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n5\testimated\t_\tVERB\tVBN\t_\t36\tadvcl\t_\t_\n6\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tanalysts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n10\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t18\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t5\txcomp\t_\t_\n13\tabove\t_\tADP\tIN\t_\t12\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n16\t123\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.25\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tearned\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tthird\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tquarter\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\t1988\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n34\twas\t_\tVERB\tVBD\t_\t36\tcop\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tresult\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n37\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tespecially\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n39\tstrong\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tsales\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tits\t_\tPRON\tPRP$\t_\t44\tnmod:poss\t_\t_\n43\tCapoten\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tdrug\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\tfor\t_\tSCONJ\tIN\t_\t46\tmark\t_\t_\n46\ttreating\t_\tVERB\tVBG\t_\t44\tacl\t_\t_\n47\thigh\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n48\tblood\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tpressure\t_\tNOUN\tNN\t_\t46\tdobj\t_\t_\n50\tand\t_\tCONJ\tCC\t_\t49\tcc\t_\t_\n51\tother\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n52\theart\t_\tNOUN\tNN\t_\t53\tcompound\t_\t_\n53\tdisease\t_\tNOUN\tNN\t_\t49\tconj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tofficially\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmerged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tBristol-Myers\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tearlier\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBristol-Myers\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tcomment\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRiccardo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tBear\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStearns\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n8\tSchering-Plough\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\texpected\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tprofit\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trise\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tabout\t_\tADV\tIN\t_\t20\tadvmod\t_\t_\n16\t18\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tBristol-Meyers\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\texpected\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tincrease\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tabout\t_\tADV\tIN\t_\t30\tadvmod\t_\t_\n30\t13\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t27\tnmod\t_\t_\n32\tare\t_\tVERB\tVBP\t_\t6\tccomp\t_\t_\n33\tlargely\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n34\tbecause\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n36\tthose\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcompanies\t_\tNOUN\tNNS\t_\t40\tnsubjpass\t_\t_\n38\tare\t_\tAUX\tVBP\t_\t40\tauxpass\t_\t_\n39\treally\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tmanaged\t_\tVERB\tVBN\t_\t32\tadvcl\t_\t_\n41\twell\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tScheringPlough\t_\tNOUN\tNNP\t_\t2\tnsubj\t_\t_\n2\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t94.4\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\t84\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tBristol-Myers\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tearned\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n16\t$\t_\tSYM\t$\t_\t15\tdobj\t_\t_\n17\t232.3\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n21\t81\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tshare\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tlike\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tperiod\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n32\tearlier\t_\tADV\tRBR\t_\t29\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tMadison\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.J.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tspokesman\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tSchering-Plough\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\tproblems\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\taverage\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\testimate\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tanalysts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tthat\t_\tSCONJ\tWDT\t_\t30\tmark\t_\t_\n26\tthird-quarter\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tearnings\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n28\tper\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tshare\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\trose\t_\tVERB\tVBD\t_\t21\tdep\t_\t_\n31\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tabout\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\t19\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\t%\t_\tSYM\tNN\t_\t30\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n36\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n37\t$\t_\tSYM\t$\t_\t38\tdep\t_\t_\n38\t1\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tachieve\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\t20\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t%\t_\tSYM\tNN\t_\t9\tamod\t_\t_\n9\tincrease\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tfull-year\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tearnings\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tper\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tprojected\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tspring\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tspokesman\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tPfizer\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tstring\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tlackluster\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tquarterly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tperformances\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tcontinued\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\texpected\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdecline\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tabout\t_\tADV\tIN\t_\t26\tadvmod\t_\t_\n26\t5\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSales\t_\tPROPN\tNNS\t_\t21\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tPfizer\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\timportant\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdrugs\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tFeldene\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\ttreating\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n11\tarthritis\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tProcardia\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\theart\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmedicine\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\thave\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tshrunk\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tbecause\t_\tADV\tIN\t_\t25\tcase\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tincreased\t_\tADJ\tVBN\t_\t25\tamod\t_\t_\n25\tcompetition\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\t-LRB-\t_\tPUNCT\t-LRB-\t_\t4\tpunct\t_\t_\n4\tstrong\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n5\t-RRB-\t_\tPUNCT\t-RRB-\t_\t4\tpunct\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\thurt\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n8\tPfizer\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tlot\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSweig\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tPfizer\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t216.8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t1.29\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpected\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tUpjohn\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tprofit\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n10\tflat\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\trise\t_\tVERB\tNN\t_\t10\tconj\t_\t_\n13\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n14\tonly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n15\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n16\t2\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n19\t4\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n21\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tcompared\t_\tVERB\tVBN\t_\t20\tdep\t_\t_\n23\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t89.6\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t49\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\tearned\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t38\tnmod:npmod\t_\t_\n38\tago\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUpjohn\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tbiggest-selling\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdrugs\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n6\tXanax\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttranquilizer\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\tHalcion\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsedative\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tboth\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdrugs\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tstate\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tlaws\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\trestricting\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tprescriptions\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tcertain\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\ttranquilizing\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmedicines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n20\tadverse\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpublicity\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n22\tabout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\texcessive\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tuse\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdrugs\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\thair-growing\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdrug\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tRogaine\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tselling\t_\tVERB\tVBG\t_\t47\tccomp\t_\t_\n13\twell\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tabout\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n18\t125\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tcompany\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tprofit\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdrug\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\thas\t_\tAUX\tVBZ\t_\t34\taux\t_\t_\n33\tbeen\t_\tAUX\tVBN\t_\t34\tauxpass\t_\t_\n34\treduced\t_\tVERB\tVBN\t_\t12\tconj\t_\t_\n35\tby\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tUpjohn\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\texpensive\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tprint\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\ttelevision\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tcampaigns\t_\tNOUN\tNNS\t_\t39\tconj\t_\t_\n43\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tadvertising\t_\tVERB\tNN\t_\t39\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n46\tanalysts\t_\tNOUN\tNNS\t_\t47\tnsubj\t_\t_\n47\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tKalamazoo\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tMich.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tUpjohn\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAmid\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcrowd\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcrashing\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tRelational\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tTechnology\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tInc.\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tparticularly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\thard\t_\tADV\tJJ\t_\t13\tadvmod\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tdropping\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\t23\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\tbecause\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tproblems\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t25\tauxpass\t_\t_\n25\tcompounded\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tdisclosure\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tunexpected\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tloss\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n34\tfiscal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tfirst\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tdatabase\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\tsoftware\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n10\t2\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfiscal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tquarter\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tended\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tSept.\t_\tPROPN\tNNP\t_\t19\tnmod:tmod\t_\t_\n21\t30\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\taux\t_\t_\n6\texpecting\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tperiod\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t3\tnsubjpass\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\tauxpass\t_\t_\n3\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tup\t_\tADV\tRP\t_\t8\tadvmod\t_\t_\n8\tmodestly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n13\t26.5\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\treported\t_\tVERB\tVBD\t_\t12\tacl\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyear\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tago\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRelational\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnet\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tincome\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t1.5\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\t12\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tyear-earlier\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tperiod\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tWhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tour\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tinternational\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toperations\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tshowed\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgrowth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n10\tour\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tsubstantially\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n15\tbelow\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\texpectations\t_\tNOUN\tNNS\t_\t19\tccomp\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tPaul\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tNewton\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tpresident\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tchief\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\texecutive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tofficer\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\thistorically\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsoft\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tgeneral\t_\tADJ\tJJ\t_\t15\tacl\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\texperiencing\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n20\tslower\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tsales\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNewton\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\taccepted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresignation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tThomas\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tWilson\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tvice\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpresident\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tcorporate\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tmarketing\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tresponsibilities\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\treassigned\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tWilson\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tresignation\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tauxpass\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\trelated\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsales\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tshortfall\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRelational\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tpublic\t_\tNOUN\tJJ\t_\t3\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tMay\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t1988\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t14\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t4\tdep\t_\t_\n4\t1.875\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tshare\t_\tNOUN\tNN\t_\t4\tnmod:npmod\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t6.25\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlow\t_\tADJ\tJJ\t_\t11\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tover-the-counter\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\thigh\t_\tNOUN\tJJ\t_\t9\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t16.375\t_\tNUM\tCD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tprevious\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n10\t4.5\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t37\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcents\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t47.2\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tBronx\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\twonderful\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tbotanical\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgarden\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tgreat\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tzoo\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n14\town\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tcharming\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tLittle\t_\tPROPN\tJJ\t_\t17\tcompound\t_\t_\n17\tItaly\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n18\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tArthur\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tAvenue\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tcourse\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tYankees\t_\tPROPN\tNNPS\t_\t7\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tpeople\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n6\thaving\t_\tAUX\tVBG\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tsubjected\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tnews\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfootage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tdevastated\t_\tADJ\tVBN\t_\t16\tamod\t_\t_\n15\tSouth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tBronx\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\tlook\t_\tVERB\tNN\t_\t0\troot\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tborough\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tway\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\tTom\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWolfe\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tSherman\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tMcCoy\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n29\tdid\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\tBonfire\t_\tNOUN\tNNP\t_\t23\tacl:relcl\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tVanities\t_\tNOUN\tNNP\t_\t32\tnmod\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n37\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n38\tas\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\twrong\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tturn\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n42\tinto\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\thell\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tLaura\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCunningham\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tBronx\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ther\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tchildhood\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tBronx\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\t'50s\t_\tNOUN\tCD\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tsomething\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\telse\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\taltogether\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tlovely\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tnovelistic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmemoir\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tSleeping\t_\tNOUN\tVBG\t_\t10\tcompound\t_\t_\n10\tArrangements\t_\tNOUN\tNNS\t_\t6\tappos\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n13\tKnopf\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\t195\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tpages\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t18.95\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\tshe\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tremembers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\texotic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tplayground\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tpeopled\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n29\tmainly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tJewish\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\teccentrics\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\toccasional\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tCatholic\t_\tPROPN\tNNP\t_\t32\tconj\t_\t_\n37\t-LRB-\t_\tPUNCT\t-LRB-\t_\t39\tpunct\t_\t_\n38\treal\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\toddballs\t_\tNOUN\tNNS\t_\t36\tdep\t_\t_\n40\tlike\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\ther\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n42\tsexpot\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tfriend\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\thell-kitten\t_\tNOUN\tJJ\t_\t47\tcompound\t_\t_\n47\tDiana\t_\tPROPN\tNNP\t_\t43\tappos\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n49\tage\t_\tNOUN\tNN\t_\t43\tappos\t_\t_\n50\tfive\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n51\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tMs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCunningham\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tnovelist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tplaywright\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n11\tvivid\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tdramatically\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\toutsized\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n15\tsense\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\trecall\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttransforms\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ther\t_\tPRON\tPRP$\t_\t5\tdep\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n5\tBronx\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\temotions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tplace\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n12\twhere\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tflats\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmediocrity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n18\tonly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\trelieved\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n20\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsteep\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdescents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\thysteria\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n26\tinto\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n29\tBabylonian\t_\tPROPN\tJJ\t_\t30\tcompound\t_\t_\n30\tBronx\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tworld\t_\tNOUN\tNN\t_\t30\tdep\t_\t_\n35\tsimmering\t_\tVERB\tVBG\t_\t34\tacl\t_\t_\n36\twith\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsex\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tdeath\t_\tNOUN\tNN\t_\t37\tconj\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n41\tintrigue\t_\tNOUN\tNN\t_\t37\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tBabylonian\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBronx\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tJewish\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tworking-class\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tlived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tdrab\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tSoviet-style\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbuildings\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n16\tglamorized\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tnames\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tlike\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tAnaMor\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTowers\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t-LRB-\t_\tPUNCT\t-LRB-\t_\t26\tpunct\t_\t_\n24\tafter\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\towners\t_\tNOUN\tNNS\t_\t26\tcompound\t_\t_\n26\tAnna\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tMorris\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tSnezak\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t26\tpunct\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n32\twhose\t_\tPRON\tWP$\t_\t33\tnmod:poss\t_\t_\n33\tlobbies\t_\tNOUN\tNNS\t_\t37\tnsubjpass\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\thallways\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\twere\t_\tAUX\tVBD\t_\t37\tauxpass\t_\t_\n37\tdecorated\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n38\twith\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tmurals\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tancient\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tSyrians\t_\tPROPN\tNNPS\t_\t39\tnmod\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t42\tcc\t_\t_\n44\tGreeks\t_\tPROPN\tNNPS\t_\t42\tconj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n46\tfriezes\t_\tNOUN\tNNS\t_\t39\tappos\t_\t_\n47\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tPompeii\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMs.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCunningham\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tarchitectural\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdiscombobulation\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tmatched\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdiscrepancy\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tfelt\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n12\tliving\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tAnaMor\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTowers\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tlittle\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgirl\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n21\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n23\t...\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n24\toutwardly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tordinary\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tinwardly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tornate\t_\tADJ\tJJ\t_\t25\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n30\towing\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n31\tall\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tinspiration\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\theathen\t_\tADJ\tVB\t_\t35\tamod\t_\t_\n35\tcultures\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tSharp-witted\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\tfunny\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n4\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n5\tnever\t_\tADV\tRB\t_\t6\tconj\t_\t_\n6\tmean\t_\tADJ\tVB\t_\t11\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n9\t's\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmemorialist\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbit\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n15\tTruman\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCapote\t_\tPROPN\tNNP\t_\t13\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tif\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\t'd\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tbeen\t_\tVERB\tVBN\t_\t22\tcop\t_\t_\n22\tJewish\t_\tADJ\tJJ\t_\t16\tacl:relcl\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tfemale\t_\tADJ\tJJ\t_\t22\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\tless\t_\tADV\tRBR\t_\t27\tadvmod\t_\t_\n27\tbitchy\t_\tADJ\tJJ\t_\t22\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tLittle\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tLily\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tMs.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCunningham\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tcalls\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n8\therself\t_\tPRON\tPRP\t_\t7\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbook\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\treally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tordinary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\teight\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyears\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ther\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tmother\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tRosie\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\twhom\t_\tPRON\tWP\t_\t19\tdobj\t_\t_\n18\tshe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tremembers\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n20\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tloving\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tliar\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twho\t_\tPRON\tWP\t_\t26\tnsubj\t_\t_\n26\trealigned\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n27\thistory\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\texplain\t_\tVERB\tVB\t_\t26\tadvcl\t_\t_\n30\twhy\t_\tADV\tWRB\t_\t36\tadvmod\t_\t_\n31\tLily\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tfather\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n34\tdid\t_\tAUX\tVBD\t_\t36\taux\t_\t_\n35\tn't\t_\tPART\tRB\t_\t36\tneg\t_\t_\n36\tlive\t_\tVERB\tVB\t_\t29\tadvcl\t_\t_\n37\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tthem\t_\tPRON\tPRP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRosie\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\treinvented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tman\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t4\tacl:relcl\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t7\tconj\t_\t_\n10\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n11\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\tknown\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n13\tabout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tchild\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\twar\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\thero\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tLily\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tbenefit\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRosie\t_\tNOUN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tyoung\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n5\tLily\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tremembered\t_\tVERB\tVBN\t_\t2\tconj\t_\t_\n8\ther\t_\tPRON\tPRP$\t_\t7\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tromantic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfigure\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n15\tdid\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tinterfere\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n18\tmuch\t_\tADV\tJJ\t_\t17\tadvmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ther\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tchild\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\teducation\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tstreets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgames\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n3\tBronx\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tchildren\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tplayed\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tholding\t_\tVERB\tVBG\t_\t2\tdep\t_\t_\n8\tkids\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tdown\t_\tADP\tRB\t_\t7\tcompound:prt\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tstripping\t_\tVERB\tVBG\t_\t7\tconj\t_\t_\n12\tthem\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\texample\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n17\tseem\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n18\ttame\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n19\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ttoday\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tcrack\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tstandards\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n26\tMs.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCunningham\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\tmakes\t_\tVERB\tVBZ\t_\t17\tconj\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tall\t_\tDET\tDT\t_\t31\tdep\t_\t_\n31\tsound\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n32\tlike\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tgreat\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tadventure\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWithout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tofficial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tknowledge\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsex\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tdeath\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tflirted\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tboth\t_\tDET\tCC\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\tshe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\twrites\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tanalyzed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tfamilies\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tsleeping\t_\tNOUN\tVBG\t_\t7\tcompound\t_\t_\n7\tarrangements\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHer\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tfriend\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tSusan\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhose\t_\tPRON\tWP$\t_\t6\tnmod:poss\t_\t_\n6\tparents\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tkept\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n8\treminding\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\ther\t_\tPRON\tPRP$\t_\t8\tdobj\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n12\tunwanted\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tslept\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tnarrow\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbed\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\twedged\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ther\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tparents\t_\tNOUN\tNNS\t_\t24\tnmod:poss\t_\t_\n23\t'\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tbedroom\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n26\tas\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n27\tthough\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n28\tshe\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n29\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\ttemporary\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tvisitor\t_\tNOUN\tNN\t_\t14\tadvcl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tHer\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tfriend\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tDiana\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfather\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tprofessional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tthief\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\tdid\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tseem\t_\tVERB\tVB\t_\t9\tparataxis\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\thave\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tany\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbedrooms\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tall\t_\tDET\tDT\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMaybe\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tLily\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tbecame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tobsessed\t_\tADJ\tVBN\t_\t3\txcomp\t_\t_\n6\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tslept\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\thow\t_\tADV\tWRB\t_\t9\tconj\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\ther\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\town\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tarrangements\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tkept\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n17\tshifting\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tRosie\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdied\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\ther\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tuncles\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tRB\t_\t7\tcompound:prt\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tlet\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n12\ther\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n15\tsleeping\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n18\thousehold\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tarrangements\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpainted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tapartment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\torange\t_\tADJ\tNN\t_\t2\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tpink\t_\tADJ\tNN\t_\t5\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\twhite\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\taccording\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t11\tmwe\t_\t_\n13\ther\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tinstructions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tloving\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdetail\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n4\tshe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\trecalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\ther\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tUncle\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGabe\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tOrthodox\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tJew\t_\tPROPN\tNN\t_\t8\tappos\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tsong\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlyricist\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t18\tpunct\t_\t_\n17\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n18\trhymed\t_\tVERB\tVBD\t_\t12\tdep\t_\t_\n19\triver\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tliver\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tlove\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsong\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\t-RRB-\t_\tPUNCT\t-RRB-\t_\t18\tpunct\t_\t_\n27\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n29\tUncle\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tLen\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tmysterious\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tpart-time\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tinvestigator\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n36\twho\t_\tPRON\tWP\t_\t37\tnsubj\t_\t_\n37\tlooked\t_\tVERB\tVBD\t_\t35\tacl:relcl\t_\t_\n38\tlike\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tLincoln\t_\tPROPN\tNNP\t_\t37\tnmod\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n41\tcarried\t_\tVERB\tVBD\t_\t37\tconj\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tchange\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\tclothing\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n46\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n47\ta\t_\tDET\tDT\t_\t49\tdet\t_\t_\n48\tManila\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tenvelope\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n51\tlike\t_\tADP\tIN\t_\t55\tcase\t_\t_\n52\tan\t_\tDET\tDT\t_\t55\tdet\t_\t_\n53\t``\t_\tPUNCT\t``\t_\t55\tpunct\t_\t_\n54\tundercover\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n55\tPresident\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n56\ton\t_\tADP\tIN\t_\t59\tcase\t_\t_\n57\ta\t_\tDET\tDT\t_\t59\tdet\t_\t_\n58\tgood-will\t_\tADJ\tNN\t_\t59\tamod\t_\t_\n59\tmission\t_\tNOUN\tNN\t_\t55\tnmod\t_\t_\n60\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n61\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tby\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tstrangeness\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\thonestly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLily\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tgrandmother\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tno\t_\tDET\tDT\t_\t7\tneg\t_\t_\n6\tcookie\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\texcised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\theads\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tdisliked\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\trelatives\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfamily\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\talbum\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n21\tlugged\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n22\taround\t_\tADP\tIN\t_\t21\tcompound:prt\t_\t_\n23\ther\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tperennial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\twork-in-progress\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n28\tPhilosophy\t_\tNOUN\tNN\t_\t25\tdep\t_\t_\n29\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tWomen\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbook\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tloses\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmomentum\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\ttoward\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tend\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n11\tLily\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tbecomes\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\tpreoccupied\t_\tADJ\tVBN\t_\t12\txcomp\t_\t_\n15\twith\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tdating\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n17\tboys\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tless\t_\tADV\tJJR\t_\t14\tconj\t_\t_\n20\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ther\t_\tPRON\tPRP$\t_\t24\tdep\t_\t_\n22\tdelightfully\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tweird\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfamily\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tpart\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthough\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t11\texpl\t_\t_\n9\t's\t_\tPART\tVBZ\t_\t11\tdep\t_\t_\n10\tmuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpleasure\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\ther\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n14\tsaucy\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tpoignant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tprobe\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\tinto\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmysteries\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tBabylonian\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tBronx\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tBronx\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tfigures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tBruce\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tJay\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tFriedman\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tlatest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n11\tnovel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tflashes\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n15\tback\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tNew\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tYork\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\t'50s\t_\tNOUN\tCD\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n2\tboth\t_\tDET\tDT\t_\t7\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tpast\t_\tNOUN\tNN\t_\t7\tamod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tpresent\t_\tADJ\tJJ\t_\t4\tconj\t_\t_\n7\tworlds\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tThe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tCurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tClimate\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n15\tAtlantic\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tMonthly\t_\tPROPN\tJJ\t_\t17\tcompound\t_\t_\n17\tPress\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\t200\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tpages\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t18.95\t_\tNUM\tCD\t_\t17\tdep\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n25\tfeel\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n26\tcramped\t_\tADJ\tJJ\t_\t25\txcomp\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tstatic\t_\tADJ\tJJ\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tsixth\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnovel\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tFriedman\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tresuscitate\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tprotagonist\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\t1972\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\twork\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n19\tAbout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tHarry\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tTowns\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tHarry\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t57-year-old\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\twriter\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhose\t_\tPRON\tWP$\t_\t10\tnmod:poss\t_\t_\n9\tcontinuing\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n10\tflirtation\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdrugs\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tmarginal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttypes\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tHollywood\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n21\tseems\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n22\tquaintly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tout-of-synch\t_\tADJ\tJJ\t_\t21\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHarry\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tfondly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tremembers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\told\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tdays\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tearly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\t'70s\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n15\tpeople\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n16\tlike\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tfriend\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tTravis\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\ttake\t_\tVERB\tVB\t_\t8\tacl:relcl\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpsychiatrist\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tdate\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tanalyze\t_\tVERB\tVB\t_\t21\tadvcl\t_\t_\n29\twhat\t_\tPRON\tWP\t_\t32\tdobj\t_\t_\n30\tTravis\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n31\twas\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\tdoing\t_\tVERB\tVBG\t_\t28\tccomp\t_\t_\n33\twrong\t_\tADJ\tJJ\t_\t32\tadvmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tAn\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tL.A.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tsolution\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\texplains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tFriedman\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLine\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n2\tby\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tline\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tFriedman\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tweary\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcynicism\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n11\tamusing\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tespecially\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n15\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\t's\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\triffing\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tHollywood\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tsocial\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tscheme\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t22\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tway\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n26\tpeople\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tsize\t_\tVERB\tVBP\t_\t25\tacl:relcl\t_\t_\n28\teach\t_\tDET\tDT\t_\t27\tdobj\t_\t_\n29\tother\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n30\tup\t_\tADP\tRB\t_\t27\tcompound:prt\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\timmediately\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tcanceling\t_\tVERB\tVBG\t_\t27\txcomp\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tdesperate\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tones\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n37\twho\t_\tPRON\tWP\t_\t40\tnsubj\t_\t_\n38\tmerely\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n39\talmost\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tmade\t_\tVERB\tVBD\t_\t36\tacl:relcl\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t40\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHarry\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tavoided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tall\t_\tDET\tDT\t_\t5\tdet:predet\t_\t_\n5\tthat\t_\tDET\tDT\t_\t3\tdobj\t_\t_\n6\tby\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tliving\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tLong\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tIsland\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tsuburb\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\twife\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twho\t_\tPRON\tWP\t_\t20\tnsubj\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n19\tso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\taddicted\t_\tADJ\tVBN\t_\t15\tacl:relcl\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tsoap\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\toperas\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tmystery\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tnovels\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\tshe\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n28\tbarely\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tseems\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tnotice\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\twhen\t_\tADV\tWRB\t_\t35\tadvmod\t_\t_\n33\ther\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\thusband\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n35\tdisappears\t_\tVERB\tVBZ\t_\t31\tadvcl\t_\t_\n36\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tdrug-seeking\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tforays\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\tinto\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tManhattan\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ttoo\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tlines\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfigure\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n11\tHarry\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n12\tout\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbore\t_\tNOUN\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tResources\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tChemical\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tagreed\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tpay\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n12\t1.5\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\taccord\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tEnvironmental\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tProtection\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAgency\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n24\tregarding\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n25\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tenvironmental\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcleanup\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tdefunct\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tsmelter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcompany\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n34\tformerly\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\toperated\t_\tVERB\tVBN\t_\t31\tacl:relcl\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tIdaho\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1984\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tEPA\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tnotified\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tGulf\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tResources\t_\tPROPN\tNNPS\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpart-owner\t_\tNOUN\tNN\t_\t7\tacl:relcl\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsmelter\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n20\tpotentially\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tliable\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n22\tfor\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tsharing\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tcleanup\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tcosts\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsite\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tunder\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tfederal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tSuperfund\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tprogram\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t21-square-mile\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tarea\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tcontaminated\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tlead\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tzinc\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmetals\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tResources\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tearlier\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n4\tthis\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n6\tproposed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\treorganization\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tplan\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tmake\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tunit\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tBermuda\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tconcern\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tpotentially\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\texempting\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tliability\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsmelter\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcleanup\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tcosts\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n5\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tpart\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tEPA\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n16\tmade\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n17\tcertain\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tvoluntary\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tundertakings\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\trespect\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tintercorporate\t_\tADJ\tVB\t_\t24\tamod\t_\t_\n24\ttransactions\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tentered\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n26\tinto\t_\tADP\tIN\t_\t25\tnmod\t_\t_\n27\tafter\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\treorganization\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tissued\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstatement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tlate\t_\tADV\tJJ\t_\t12\tadvmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n16\t$\t_\tSYM\t$\t_\t24\tnsubjpass\t_\t_\n17\t1\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpayment\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n23\tpreviously\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tprovided\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n25\tfor\t_\tADP\tIN\t_\t24\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tfinancial\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tstatements\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n31\tthat\t_\tDET\tIN\t_\t36\tmark\t_\t_\n32\t$\t_\tSYM\t$\t_\t33\tdep\t_\t_\n33\t500,000\t_\tNUM\tCD\t_\t36\tnsubjpass\t_\t_\n34\twill\t_\tAUX\tMD\t_\t36\taux\t_\t_\n35\tbe\t_\tAUX\tVB\t_\t36\tauxpass\t_\t_\n36\trecognized\t_\tVERB\tVBN\t_\t24\tconj\t_\t_\n37\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\tits\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n39\t1989\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n40\tthird-quarter\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tstatement\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tagreement\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tconsent\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\tdecree\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tcourt\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tapproval\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tResources\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tseek\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\trecover\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tequitable\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcontribution\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tothers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tboth\t_\tCONJ\tCC\t_\t18\tcc:preconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tamount\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsettlement\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\tany\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tliabilities\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n27\tmay\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tincur\t_\tVERB\tVB\t_\t25\tacl:relcl\t_\t_\n29\tunder\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tSuperfund\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tlaw\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tGulf\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tmust\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t7\tiobj\t_\t_\n11\t45\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n13\t'\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n14\tadvance\t_\tADJ\tNN\t_\t16\tamod\t_\t_\n15\twritten\t_\tADJ\tVBN\t_\t16\tamod\t_\t_\n16\tnotice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n17\tbefore\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tissuing\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n19\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdividends\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tcommon\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tnet\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tworth\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tfall\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tbelow\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n11\t185\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdividends\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\tauxpass\t_\t_\n17\tissued\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tterms\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthat\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tagreement\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tonly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tbecome\t_\tVERB\tVBP\t_\t28\tccomp\t_\t_\n9\teffective\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdate\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tGulf\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\treorganization\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t19\tdobj\t_\t_\n18\twe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tanticipate\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\toccur\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n22\tsometime\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tearly\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\t1990\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tLawrence\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tR.\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tMehl\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tGulf\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tgeneral\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tcounsel\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tGulf\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tmust\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t6\tiobj\t_\t_\n9\t20\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n10\tdays\t_\tNOUN\tNNS\t_\t14\tnmod:poss\t_\t_\n11\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n12\tadvance\t_\tADJ\tNN\t_\t14\tamod\t_\t_\n13\twritten\t_\tADJ\tVBN\t_\t14\tamod\t_\t_\n14\tnotice\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tany\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tloans\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\texceeding\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n19\t$\t_\tSYM\t$\t_\t18\tdobj\t_\t_\n20\t50\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t24\tnsubjpass\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\tmade\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n25\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tBermuda-based\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tholding\t_\tNOUN\tVBG\t_\t29\tcompound\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnet\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tworth\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthose\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttransaction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tmust\t_\tAUX\tMD\t_\t12\taux\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tleast\t_\tADJ\tJJS\t_\t12\tnmod:npmod\t_\t_\n12\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n13\t150\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\thold\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tspecial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmeeting\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tshareholders\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tearly\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\t1990\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tvote\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n20\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tproposed\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n23\treorganization\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t8\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tnation\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\thighest-ranking\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\texecutives\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\tsaluted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tplunge\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\toverdue\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcomeuppance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tspeculators\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ttakeover\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tplayers\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAssuming\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n2\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\thead\t_\tVERB\tVB\t_\t1\tccomp\t_\t_\n8\tinto\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbottomless\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tfree\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfall\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tsome\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\texecutives\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n17\tFriday\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\taction\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tprove\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tharbinger\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tgood\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tnews\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n28\tas\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tsign\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\tthat\t_\tSCONJ\tIN\t_\t43\tmark\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tleveraged\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tbuy-out\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\ttakeover\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tfrenzy\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\trecent\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tyears\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n41\tmay\t_\tAUX\tMD\t_\t43\taux\t_\t_\n42\tbe\t_\tAUX\tVB\t_\t43\taux\t_\t_\n43\tabating\t_\tVERB\tVBG\t_\t30\tccomp\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\treaction\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\tartificial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tLBO\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tvaluations\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\trather\t_\tADV\tRB\t_\t9\tcc\t_\t_\n12\tthan\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tany\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfundamentals\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tJohn\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tYoung\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tchairman\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tHewlett-Packard\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\twhose\t_\tPRON\tWP$\t_\t28\tnmod:poss\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n29\tdropped\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t3.125\t_\tNUM\tCD\t_\t29\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t34\tdep\t_\t_\n34\t48.125\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tget\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n5\trid\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlot\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthat\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnonsense\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tplus\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfew\t_\tADJ\tJJ\t_\t28\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\there\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfall\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmeeting\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBusiness\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCouncil\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tgroup\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tmeets\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdiscuss\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tnational\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tissues\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\twere\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n26\tonly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\ttoo\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\thappy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tpersonalize\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n32\tcriticism\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tPeople\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\twish\t_\tVERB\tVBP\t_\t25\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgovernment\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tdo\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tsomething\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tleveraged\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbuy-outs\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tdo\t_\tVERB\tVBP\t_\t7\tdep\t_\t_\n14\tsomething\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\ttakeovers\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tdo\t_\tVERB\tVBP\t_\t7\tdep\t_\t_\n19\tsomething\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tabout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tDonald\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTrump\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tRand\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAraskog\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tchairman\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tITT\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tCorp.\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\twhose\t_\tPRON\tWP$\t_\t35\tnmod:poss\t_\t_\n35\tstock\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\tdropped\t_\tVERB\tVBD\t_\t32\tacl:relcl\t_\t_\n37\t$\t_\tSYM\t$\t_\t38\tdep\t_\t_\n38\t3.375\t_\tNUM\tCD\t_\t36\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWhere\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tleadership\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n6\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhere\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tguy\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n5\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tsay\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\t`\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tEnough\t_\tADJ\tNNP\t_\t12\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n12\tenough\t_\tADJ\tRB\t_\t7\tccomp\t_\t_\n13\t'\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n15\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\tremarkably\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tunperturbed\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\teven\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tthough\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tlopped\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n13\tbillions\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tdollars\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\toff\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tvalue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tcompanies\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n24\tmillions\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n25\toff\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n27\tpersonal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tfortunes\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'm\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tworry\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tdecline\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tKenneth\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tOlsen\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tDigital\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tEquipment\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tleisurely\t_\tADV\tJJ\t_\t27\tadvmod\t_\t_\n27\tstrolling\t_\tVERB\tVBG\t_\t17\tacl:relcl\t_\t_\n28\tthrough\t_\tADP\tIN\t_\t34\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n30\tbright\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n31\torange\t_\tNOUN\tNN\t_\t34\tamod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tyellow\t_\tADJ\tJJ\t_\t31\tconj\t_\t_\n34\tleaves\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tmountains\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\there\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n39\tafter\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n40\this\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n41\tcompany\t_\tNOUN\tNN\t_\t43\tnmod:poss\t_\t_\n42\t's\t_\tPART\tPOS\t_\t41\tcase\t_\t_\n43\tshares\t_\tNOUN\tNNS\t_\t44\tnsubj\t_\t_\n44\tplunged\t_\tVERB\tVBD\t_\t27\tadvcl\t_\t_\n45\t$\t_\tSYM\t$\t_\t46\tdep\t_\t_\n46\t5.75\t_\tNUM\tCD\t_\t44\tdobj\t_\t_\n47\tto\t_\tPART\tTO\t_\t48\tmark\t_\t_\n48\tclose\t_\tVERB\tVB\t_\t44\tadvcl\t_\t_\n49\tat\t_\tADP\tIN\t_\t51\tcase\t_\t_\n50\t$\t_\tSYM\t$\t_\t51\tdep\t_\t_\n51\t86.50\t_\tNUM\tCD\t_\t48\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tbother\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tcalling\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tanybody\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n10\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\teven\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tturn\t_\tNOUN\tVB\t_\t5\tparataxis\t_\t_\n14\ton\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tTV\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tThere\t_\tADV\tEX\t_\t8\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n6\tany\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfundamental\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tchange\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tJohn\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSmale\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twhose\t_\tPRON\tWP$\t_\t23\tdobj\t_\t_\n19\tProcter\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\t&\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tGamble\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\tCo.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\ttook\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n24\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t$\t_\tSYM\t$\t_\t27\tamod\t_\t_\n26\t8.75\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n27\tslide\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tclose\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n30\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t120.75\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfact\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tthis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n6\thappened\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tthere\t_\tPRON\tRB\t_\t12\texpl\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\trecovery\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n15\tgives\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tpeople\t_\tNOUN\tNNS\t_\t15\tiobj\t_\t_\n17\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcomfort\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\tthis\t_\tPRON\tDT\t_\t25\tnsubj\t_\t_\n21\two\t_\tAUX\tMD\t_\t25\taux\t_\t_\n22\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t25\tcop\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tproblem\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\testablished\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcorporate\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmanagements\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\toften\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\ttend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tapplaud\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsetbacks\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tspeculators\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\ttakeover\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tartists\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n3\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tchief\t_\tADJ\tNN\t_\t5\tamod\t_\t_\n5\texecutive\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n6\twho\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tdownright\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdelighted\t_\tADJ\tJJ\t_\t5\tacl:relcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tevents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n15\tRobert\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCrandall\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tchairman\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tAMR\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tparent\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tAmerican\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAirlines\t_\tPROPN\tNNPS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\ttarget\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\ttakeover\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\toffer\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tMr.\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tTrump\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n2\twhether\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\taction\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\thelp\t_\tVERB\tVB\t_\t1\tccomp\t_\t_\n8\thim\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tavoid\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n10\tbeing\t_\tAUX\tVBG\t_\t11\tauxpass\t_\t_\n11\tTrumped\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tNew\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tYork\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\treal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\testate\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmagnate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCrandall\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\tsmiled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tbroadly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t22\tconj\t_\t_\n26\t:\t_\tPUNCT\t:\t_\t25\tpunct\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n28\tNo\t_\tDET\tDT\t_\t29\tneg\t_\t_\n29\tcomment\t_\tNOUN\tNN\t_\t25\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmorning\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tbefore\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tsell-off\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tleaders\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\treport\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tpredicting\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\teconomy\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tgrow\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n23\troughly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n24\tan\t_\tDET\tDT\t_\t29\tdet\t_\t_\n25\tinflation-adjusted\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\t2\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t29\tamod\t_\t_\n28\tannual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\trate\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tthrough\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tnext\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n35\tthen\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\taccelerate\t_\tVERB\tVB\t_\t21\tdep\t_\t_\n37\tanew\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n38\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\t1991\t_\tNUM\tCD\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t19\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\teconomists\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n5\twho\t_\tPRON\tWP\t_\t6\tnsubj\t_\t_\n6\tworked\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n7\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tBusiness\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCouncil\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tforecast\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnsubj\t_\t_\n15\tprojected\t_\tVERB\tVBN\t_\t47\tccomp\t_\t_\n16\tperiods\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdecline\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnation\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\toutput\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tover\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\ttwo\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n31\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n33\tboth\t_\tDET\tCC\t_\t34\tdet\t_\t_\n34\tinstances\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tdeclines\t_\tNOUN\tNNS\t_\t39\tnsubj\t_\t_\n37\tare\t_\tVERB\tVBP\t_\t39\tcop\t_\t_\n38\ttoo\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n39\tmodest\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\twarrant\t_\tVERB\tVB\t_\t39\txcomp\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tphrase\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\trecession\t_\tNOUN\tNN\t_\t43\tdep\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t47\tpunct\t_\t_\n47\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n48\tLewis\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tPreston\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n51\tchairman\t_\tNOUN\tNN\t_\t49\tappos\t_\t_\n52\tof\t_\tADP\tIN\t_\t54\tcase\t_\t_\n53\tJ.P.\t_\tPROPN\tNNP\t_\t54\tcompound\t_\t_\n54\tMorgan\t_\tPROPN\tNNP\t_\t51\tnmod\t_\t_\n55\t&\t_\tCONJ\tCC\t_\t54\tcc\t_\t_\n56\tCo.\t_\tPROPN\tNNP\t_\t54\tconj\t_\t_\n57\tand\t_\tCONJ\tCC\t_\t51\tcc\t_\t_\n58\tvice\t_\tNOUN\tNN\t_\t59\tcompound\t_\t_\n59\tchairman\t_\tNOUN\tNN\t_\t51\tconj\t_\t_\n60\tof\t_\tADP\tIN\t_\t63\tcase\t_\t_\n61\tthe\t_\tDET\tDT\t_\t63\tdet\t_\t_\n62\tBusiness\t_\tPROPN\tNNP\t_\t63\tcompound\t_\t_\n63\tCouncil\t_\tPROPN\tNNP\t_\t59\tnmod\t_\t_\n64\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\testate\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tslump\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n6\t's\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tpushing\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n8\tdown\t_\tADP\tRP\t_\t7\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tYork\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n14\toffice\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tspace\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\thousing\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\talso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\taffecting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcity\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tretail\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\treal\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\testate\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tManhattan\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tonce-desirable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tstore\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsites\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsit\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tvacant\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tnewly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tconstructed\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n12\tspace\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tVERB\tVBN\t_\t15\tcop\t_\t_\n15\tslow\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tfill\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRetail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\testate\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbrokers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\ttenants\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\treluctant\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsign\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tleases\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tbecause\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tof\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tuncertainty\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tabout\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlocal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\teconomy\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tturmoil\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\town\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tindustries\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbelief\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n29\trents\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n30\thave\t_\tAUX\tVBP\t_\t33\taux\t_\t_\n31\tnot\t_\tPART\tRB\t_\t33\tneg\t_\t_\n32\tyet\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\thit\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n34\tbottom\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tunbelievable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tavailable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tFaith\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tConsolo\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tsenior\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tvice\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpresident\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tGarrick-Aug\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tAssociates\t_\tPROPN\tNNPS\t_\t24\tcompound\t_\t_\n22\tStore\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tLeasing\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tInc\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tabout\t_\tADV\tIN\t_\t4\tadvmod\t_\t_\n4\t2,000\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tstores\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\trent\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tup\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\ttypical\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\trange\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\t1,200\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tdep\t_\t_\n18\t1,500\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\tfurther\t_\tADV\tJJ\t_\t4\tadvmod\t_\t_\n4\tconfuses\t_\tVERB\tNNS\t_\t9\tccomp\t_\t_\n5\tretailers\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n8\tshe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twonder\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tshould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsign\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlease\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n12\tstill\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tcoming\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n14\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t?\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\twrong\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\topen\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tstore\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWho\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n9\tnext\t_\tADP\tJJ\t_\t10\tcase\t_\t_\n10\tdoor\t_\tNOUN\tNN\t_\t8\tadvmod\t_\t_\n11\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMs.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tConsolo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsays\t_\tVERB\tVBZ\t_\t11\tparataxis\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ttenants\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\tusually\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tnegotiate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tpay\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\trents\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n16\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\tone-quarter\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tlower\t_\tADJ\tJJR\t_\t14\tacl:relcl\t_\t_\n20\tthan\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tlandlords\t_\tNOUN\tNNS\t_\t25\tnmod:poss\t_\t_\n22\t'\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tinitial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tasking\t_\tNOUN\tVBG\t_\t25\tcompound\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\thandful\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\thot\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tretail\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tlocations\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t12\tcase\t_\t_\n9\tas\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t57th\t_\tPROPN\tJJ\t_\t12\tcompound\t_\t_\n12\tStreet\t_\tPROPN\tNN\t_\t6\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tMadison\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tFifth\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAvenue\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tareas\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n20\thave\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n21\tbeen\t_\tVERB\tVBN\t_\t22\tcop\t_\t_\n22\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tsustain\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\twhat\t_\tPRON\tWP\t_\t27\tdobj\t_\t_\n26\tmany\t_\tDET\tJJ\t_\t27\tnsubj\t_\t_\n27\tsee\t_\tVERB\tVBP\t_\t24\tccomp\t_\t_\n28\tas\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tastronomical\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\trents\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tneighborhoods\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\trents\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tmerely\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tplateau\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\taverage\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tManhattan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tretail\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trents\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tdropped\t_\tVERB\tVBN\t_\t23\tccomp\t_\t_\n10\t10\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n15\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tpast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tsix\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n20\talone\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\texperts\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tfollows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n5\tsubtle\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdecline\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tprior\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsix\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tManhattan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\trents\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\trun\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n18\tup\t_\tADP\tRB\t_\t17\tadvmod\t_\t_\n19\trapidly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\tsince\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1986\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsame\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfactors\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\tlimiting\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tdemand\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\toffice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\taffected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tretailing\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tbusinesses\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tcontract\t_\tVERB\tNN\t_\t17\tadvcl\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tdepart\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnumber\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\temployees\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n13\tmight\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tuse\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n15\tretail\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tservices\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tshrinks\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tEdward\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tA.\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tFriedman\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tvice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tHelmsley\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tSpear\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tInc\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tproblems\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n5\tplaguing\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\telectronics\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tfur\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tfurniture\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\tcompanies\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n13\tkey\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcategories\t_\tNOUN\tNNS\t_\t11\tdep\t_\t_\n15\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tlocal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tretail\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\teconomy\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n21\thave\t_\tAUX\tVBP\t_\t23\taux\t_\t_\n22\tfurther\t_\tADV\tJJ\t_\t23\tadvmod\t_\t_\n23\tdeflated\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHardest\t_\tADJ\tJJS\t_\t2\tadvmod\t_\t_\n2\thit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t2\tdep\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t10\tdobj\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tcalls\t_\tVERB\tVBZ\t_\t2\tdep\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tsecondary\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsites\t_\tNOUN\tNNS\t_\t6\txcomp\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\tprimarily\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tserve\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n14\tneighborhood\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tresidents\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlocations\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tFriedman\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t13\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\tRetailers\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tincreasingly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tcautious\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tabout\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n15\texpanding\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\trents\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\tremained\t_\tVERB\tVBN\t_\t13\tconj\t_\t_\n20\tsteady\t_\tADV\tJJ\t_\t19\txcomp\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tsome\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcases\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n25\thave\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n26\tdeclined\t_\tVERB\tVBN\t_\t19\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tWeakness\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trestaurant\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tindustry\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tleaving\t_\tVERB\tVBG\t_\t5\tacl:relcl\t_\t_\n10\tretail\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tspace\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tvacant\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\texacerbates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tproblem\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tlandlords\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tcomfort\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tlandlords\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tsmall\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tretailers\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t28\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfuture\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tlarger\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n18\tdepartment\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tstores\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tanchor\t_\tVERB\tVBP\t_\t19\tacl:relcl\t_\t_\n23\tretail\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tneighborhoods\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n26\tare\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tdoubt\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHooker\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t14\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tparent\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tBonwit\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tTeller\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tB.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAltman\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\tmired\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tbankruptcy\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tproceedings\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tBloomingdale\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n22\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsale\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\towner\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tCampeau\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCorp\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttrend\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\ttoward\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tlower\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\trents\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tsurprising\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tgiven\t_\tVERB\tVBN\t_\t17\tmark\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcommunities\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tYork\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tbemoaning\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tloss\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tfavorite\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tlocal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbusinesses\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\thigh\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n3\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\trecent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsoftening\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmany\t_\tDET\tJJ\t_\t20\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthese\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tretailers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n14\t's\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n15\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n16\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n17\ttoo\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tbig\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tjump\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\trental\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\trates\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tlate\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\t1970s\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\twhen\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n32\tleases\t_\tNOUN\tNNS\t_\t34\tnsubjpass\t_\t_\n33\twere\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n34\tsigned\t_\tVERB\tVBN\t_\t28\tacl:relcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tCertainly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trecent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tdrop\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tdoes\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tmean\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tManhattan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tcomes\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n13\tcheap\t_\tADJ\tRB\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tretail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trents\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\trun\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\twell\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\tabove\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tgoing\t_\tADJ\tVBG\t_\t11\tamod\t_\t_\n11\trate\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tcities\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMadison\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tFifth\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tAvenues\t_\tPROPN\tNNPS\t_\t10\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tEast\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\t57th\t_\tPROPN\tJJ\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNN\t_\t4\tconj\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tcommand\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\trents\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n15\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n16\t500\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsquare\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfoot\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t250\t_\tNUM\tCD\t_\t26\tnsubj\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n25\tnot\t_\tADV\tRB\t_\t26\tneg\t_\t_\n26\tuncommon\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tthriving\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n3\t34th\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStreet\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tarea\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\trents\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n11\t100\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsquare\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tfoot\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t17\tdep\t_\t_\n17\tdo\t_\tVERB\tVBP\t_\t6\tadvcl\t_\t_\n18\tup-and-coming\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlocations\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n20\talong\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tlower\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n22\tFifth\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAvenue\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcontrast\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\trentals\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tbest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n8\tretail\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlocations\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFrancisco\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tChicago\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n17\trarely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\ttop\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t100\t_\tNUM\tCD\t_\t18\tdobj\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tsquare\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tfoot\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\trents\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tBeverly\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tHills\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t'\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tRodeo\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tDrive\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\tgenerally\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tdo\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\texceed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tabout\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t125\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsquare\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tfoot\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tsecurities\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n11\ttrading\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tweek\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPrecision\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCastparts\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tPortland\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tOre.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\ttrading\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsymbol\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tPCP\t_\tPROPN\tNN\t_\t14\tappos\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tinvestment\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcastings\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\ttraded\t_\tVERB\tVBN\t_\t2\tconj\t_\t_\n8\tover-the-counter\t_\tADV\tJJ\t_\t7\txcomp\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRoyal\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBank\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tScotland\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tGroup\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPLC\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n9\tEdinburgh\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tScotland\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tservices\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tcompany\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tlist\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tAmerican\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdepositary\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n23\trepresenting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n24\tpreferred\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tshares\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tsymbol\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tRBSPr\t_\tPROPN\tNN\t_\t29\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttrade\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tInternational\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tStock\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tExchange\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tlisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcompanies\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAIM\t_\tPROPN\tNN\t_\t3\tcompound\t_\t_\n2\tTelephones\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n6\tParsippany\t_\tPROPN\tNNP\t_\t13\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tN.J.\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\ttelecommunications\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tequipment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tsupply\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tstarted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\ttrading\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tsymbol\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tAIM\t_\tPROPN\tNN\t_\t19\tappos\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tover-the-counter\t_\tADV\tJJ\t_\t3\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tColumbia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLaboratories\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tMiami\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ttrading\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsymbol\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tCOB\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tpharmaceuticals\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tmaker\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tover-the-counter\t_\tADV\tJJ\t_\t5\txcomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMarket\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSystem\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tNasdaq\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tover-the-counter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tlisted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tEmployee\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBenefit\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tPlans\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t13\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tMinneapolis\t_\tNOUN\tNNP\t_\t10\tcompound\t_\t_\n8\thealth-care\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tservices\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tlisted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsymbol\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tEBPI\t_\tPROPN\tNN\t_\t16\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tJustice\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tWilliam\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBrennan\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tmarks\t_\tVERB\tVBZ\t_\t21\tadvcl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstart\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\t34th\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tSupreme\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCourt\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\toccasion\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tdiffer\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tsharply\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tprevious\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tanniversaries\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\ttenure\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\t83-year-old\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tjustice\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tfinds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tinfluence\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\talmost\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\texclusively\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tdissent\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\trather\t_\tADV\tRB\t_\t15\tcc\t_\t_\n18\tthan\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tforce\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n22\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\thigh\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcourt\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tmajority\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trole\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\treversal\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ttrue\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tas\t_\tADP\tRB\t_\t8\tcase\t_\t_\n8\twell\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n12\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n13\tliberal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmoderate\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\tallies\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tJustices\t_\tPROPN\tNNPS\t_\t23\tcompound\t_\t_\n19\tThurgood\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tMarshall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\tHarry\t_\tPROPN\tNNP\t_\t23\tappos\t_\t_\n23\tBlackmun\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tJohn\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tStevens\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n3\tthese\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfour\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tplayers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t5\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tthem\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\t80s\t_\tNOUN\tCD\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tready\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tassume\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tdifferent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trole\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tafter\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t88\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tcollectively\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tservice\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\thigh\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcourt\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n32\t?\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tEvery\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindication\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfour\t_\tNUM\tCD\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\tprepared\t_\tADJ\tVBN\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\taccept\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\trole\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tfrustrations\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tgo\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tdifferent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tways\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJustices\t_\tPROPN\tNNPS\t_\t2\tcompound\t_\t_\n2\tBrennan\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tStevens\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tappear\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tphilosophical\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t6\tnmod\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n10\tJustices\t_\tPROPN\tNNPS\t_\t11\tcompound\t_\t_\n11\tMarshall\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tBlackmun\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tappear\t_\tVERB\tVBP\t_\t5\tparataxis\t_\t_\n15\tfighting\t_\tNOUN\tVBG\t_\t16\tnmod:npmod\t_\t_\n16\tmad\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfour\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tjustices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n6\tnewcomers\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tdissent\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\toften\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tjoining\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n12\tforces\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tpast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdecade\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tcriticize\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcourt\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tconservative\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdrift\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\talways\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\tpast\t_\tADJ\tRB\t_\t5\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tbucked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttrend\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tbeen\t_\tVERB\tVBN\t_\t16\tcop\t_\t_\n16\table\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tpick\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tup\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfifth\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tvote\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\teke\t_\tVERB\tVB\t_\t18\tadvcl\t_\t_\n25\tout\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tnumber\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tmajor\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tvictories\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tcivil\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\trights\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tliberties\t_\tNOUN\tNNS\t_\t36\tcompound\t_\t_\n36\tcases\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tfive-member\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tconservative\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmajority\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tcontinues\t_\tVERB\tVBZ\t_\t22\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tsolidify\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n17\tvictories\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tliberals\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\trare\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tchange\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tmost\t_\tADV\tRBS\t_\t5\tadvmod\t_\t_\n5\tdramatic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tJustice\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBrennan\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tsurvivor\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tmid-1960s\t_\tNOUN\tCD\t_\t17\tcompound\t_\t_\n16\tliberal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmajority\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tChief\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJustice\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tEarl\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tWarren\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tseven\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tSupreme\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tCourt\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tterms\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfall\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1962\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tspring\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1967\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\theight\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tWarren\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCourt\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tpower\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n27\tJustice\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tBrennan\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\tcast\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\tonly\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\t25\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n32\tdissenting\t_\tADJ\tVBG\t_\t33\tamod\t_\t_\n33\tvotes\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\t555\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tcases\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n37\tdecided\t_\tVERB\tVBN\t_\t36\tacl\t_\t_\n38\tby\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tcourt\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tterm\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\talone\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tcast\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t52\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tdissenting\t_\tADJ\tVBG\t_\t8\tamod\t_\t_\n8\tvotes\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t133\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tdecisions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tcontentious\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tflag-burning\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\truling\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\tonly\t_\tADJ\tRB\t_\t22\tamod\t_\t_\n21\tbig\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tvictory\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tJustice\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBrennan\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tforesaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\this\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trole\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tstrongly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tdefending\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\timportance\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdissents\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1985\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tspeech\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tEach\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcourt\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trevisits\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tissue\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tjustices\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n12\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tforced\t_\tVERB\tVBN\t_\t31\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdissent\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\treconsider\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfundamental\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tquestions\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\trethink\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tresult\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n30\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\trecent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n6\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n11\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n13\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\twinning\t_\tVERB\tVBG\t_\t16\tamod\t_\t_\n16\tside\t_\tNOUN\tNN\t_\t22\tadvcl\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\t1960s\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n21\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tknew\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\ttables\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tmight\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tturn\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tfuture\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tknows\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n8\thow\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n9\tJustice\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tJohn\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tHarlan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tfelt\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\treference\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tlate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tconservative\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tjustice\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\twho\t_\tPRON\tWP\t_\t26\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tmost\t_\tADV\tRBS\t_\t25\tadvmod\t_\t_\n25\tfrequent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdissenter\t_\tNOUN\tNN\t_\t20\tacl:relcl\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tWarren\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCourt\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\topinions\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAssociates\t_\tNOUN\tNNPS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\t81-year-old\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tJustice\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMarshall\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tdepressed\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n12\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcourt\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tdirection\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tspring\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tfeisty\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n23\tabout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\trole\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\tdetermined\t_\tADJ\tVBN\t_\t22\tconj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tspeak\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\tout\t_\tADP\tIN\t_\t29\tcompound:prt\t_\t_\n31\tagainst\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcourt\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tcutbacks\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tcivil\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\trights\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tsweep\t_\tVERB\tNN\t_\t24\tccomp\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tunder\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trug\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\thide\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\tI\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n15\t'm\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tnot\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tgoing\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdo\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n23\the\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tspeech\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmonth\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tlike\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tJustice\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBrennan\t_\tPROPN\tNNP\t_\t7\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tconsiders\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tdissents\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\thighly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\timportant\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tfuture\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpoint\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n17\tthat\t_\tDET\tWDT\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tescaped\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n21\tlegal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tscholars\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tHarvard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tLaw\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tSchool\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tProfessor\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tLaurence\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tTribe\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t7\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tgeneration-skipping\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tflavor\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tcurrent\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdissents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdissenters\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tWarren\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCourt\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t11\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\taux\t_\t_\n14\twriting\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshort-term\t_\tNOUN\tJJ\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n19\tsuggesting\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcourt\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tdirection\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\tmight\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tchange\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n27\tsoon\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tBrennan\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tMarshall\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tspeaking\t_\tVERB\tVBG\t_\t18\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tdissents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\tdistant\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tfuture\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tJustice\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBlackmun\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tturn\t_\tVERB\tVB\t_\t2\tacl:relcl\t_\t_\n7\t81\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\talso\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tfeisty\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\trole\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAssociates\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\ttakes\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdefeats\t_\tNOUN\tVBZ\t_\t4\tdobj\t_\t_\n7\tmore\t_\tADV\tJJR\t_\t8\tadvmod\t_\t_\n8\tpersonally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcolleagues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tespecially\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tattempts\t_\tNOUN\tVBZ\t_\t4\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcurtail\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tright\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n20\tabortion\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tfirst\t_\tADV\tJJ\t_\t22\tadvmod\t_\t_\n22\trecognized\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\t1973\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\topinion\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tRoe\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\tvs.\t_\tADP\tFW\t_\t30\tcase\t_\t_\n30\tWade\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFriends\t_\tNOUN\tNNPS\t_\t11\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tassociates\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tsaw\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n6\tJustice\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBlackmun\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tduring\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsummer\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tno\t_\tDET\tRB\t_\t15\tneg\t_\t_\n15\tmore\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n16\tdiscouraged\t_\tADJ\tVBN\t_\t11\tccomp\t_\t_\n17\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcourt\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\toutlook\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\timproved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tafter\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tsuccessful\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcataract\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsurgery\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tAugust\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tlevel\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tfrustration\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\trecent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\timpassioned\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tspeech\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tgroup\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\thundreds\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tlawyers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tChicago\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tconcluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tremarks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tby\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tquoting\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\temotionally\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tadvmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlength\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\taccording\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t14\tmwe\t_\t_\n16\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n17\tpresent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tlate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tMartin\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tLuther\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tKing\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tfamous\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n27\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tHave\t_\tVERB\tVBP\t_\t32\tdep\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tDream\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n32\tspeech\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\t1963\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tMarch\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n37\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tWashington\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tJustice\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStevens\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t69\t_\tNUM\tCD\t_\t2\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n7\tprobably\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tmost\t_\tADV\tRBS\t_\t10\tadvmod\t_\t_\n10\tphilosophical\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdissenters\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\trole\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpart\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n20\tbecause\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n21\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n22\tmay\t_\tAUX\tMD\t_\t26\taux\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t26\tcop\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tleast\t_\tADJ\tJJS\t_\t26\tdep\t_\t_\n26\tliberal\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tfour\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n31\tbut\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n32\talso\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n33\tbecause\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n34\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\tenjoys\t_\tVERB\tVBZ\t_\t26\tdep\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tintellectual\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tchallenge\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n39\tof\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n40\targuing\t_\tVERB\tVBG\t_\t38\tacl\t_\t_\n41\twith\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tmajority\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n44\tmore\t_\tADV\tRBR\t_\t35\tadvmod\t_\t_\n45\tthan\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tothers\t_\tNOUN\tNNS\t_\t44\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trole\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tdissenters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tassuming\t_\tVERB\tVBG\t_\t3\tacl:relcl\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfamiliar\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tone\t_\tNUM\tCD\t_\t21\tadvcl\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tmodern\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tSupreme\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tCourt\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\thistory\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdiffers\t_\tVERB\tVBZ\t_\t32\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\timportant\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tway\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\thistory\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\tcourt\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\twatchers\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n32\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdissenters\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tWarren\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCourt\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\toften\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tdefending\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tlegal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tlegacy\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tthat\t_\tADP\tIN\t_\t16\tdobj\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tinherited\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t10\tdep\t_\t_\n20\tProf.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tA.E.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tDick\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tHoward\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n24\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tUniversity\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tVirginia\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n29\tLaw\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tSchool\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n33\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdissenters\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n36\ttoday\t_\tNOUN\tNN\t_\t35\tnmod:tmod\t_\t_\n37\tare\t_\tAUX\tVBP\t_\t38\taux\t_\t_\n38\tdefending\t_\tVERB\tVBG\t_\t10\tconj\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tlegacy\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n41\tthat\t_\tADP\tIN\t_\t43\tdobj\t_\t_\n42\tthey\t_\tPRON\tPRP\t_\t43\tnsubj\t_\t_\n43\tcreated\t_\tVERB\tVBD\t_\t40\tacl:relcl\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdeposits\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tfour\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tsavings-and-loan\t_\tADJ\tNN\t_\t9\tamod\t_\t_\n9\tinstitutions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twave\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tbig\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tsick\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tthrifts\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n24\tlow\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbids\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tprevented\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsale\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tfifth\t_\tADJ\tJJ\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfour\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tS&Ls\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tlarge\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbanks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tas\t_\tSCONJ\tRB\t_\t13\tmark\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcase\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmost\t_\tADJ\tJJS\t_\t13\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\t28\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tprevious\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttransactions\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\tinitiated\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tResolution\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tTrust\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\tsince\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t30\tnsubjpass\t_\t_\n29\twas\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tcreated\t_\tVERB\tVBN\t_\t21\tadvcl\t_\t_\n31\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tS&L\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n34\tbailout\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tlegislation\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n36\ttwo\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n37\tmonths\t_\tNOUN\tNNS\t_\t38\tnmod:npmod\t_\t_\n38\tago\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t8\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tthrifts\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tNCNB\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tCharlotte\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tN.C.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\taggressively\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\texpanded\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tmarkets\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tparticularly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tTexas\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tFlorida\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbank\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tanother\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tthrift\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tfirst\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tRTC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\ttransaction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tforeign\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbank\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdeals\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tjust\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdeposits\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\thealthy\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tassets\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n3\tclean-bank\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n5\ttransactions\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tleave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbulk\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tbad\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tassets\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tmostly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\treal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\testate\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tgovernment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tsold\t_\tVERB\tVBN\t_\t6\tadvcl\t_\t_\n24\tlater\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfour\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tinstance\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tRTC\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\tstuck\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n14\t4.51\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbad\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tassets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAcquirers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tpaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tpremiums\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tranging\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t1.5\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\t3.7\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdeposits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tbranch\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsystems\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\troughly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tline\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n21\twith\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n22\twhat\t_\tPRON\tWP\t_\t25\tdobj\t_\t_\n23\tanalysts\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\texpecting\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbuyers\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tlocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tinto\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdeposit\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\trates\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tjust\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tweeks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t19\tcop\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcase\t_\tNOUN\tNN\t_\t6\tadvcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tprevious\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdeals\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbuyers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\trepudiate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trates\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tpaid\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tformer\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tthrifts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tuncertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\twhether\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthese\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinstitutions\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\ttake\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tthose\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsteps\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\thighest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n12\trate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpayers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tTexas\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tFlorida\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\trates\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n24\tare\t_\tVERB\tVBP\t_\t26\tcop\t_\t_\n25\tespecially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tsensitive\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tretirement\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcommunities\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tRTC\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tpreviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\ttargeted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tfive\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tthrifts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tquick\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\torder\t_\tNOUN\tNN\t_\t11\tmwe\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tspend\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n15\tcash\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tcertain\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tbudgetary\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdeadlines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tdelays\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tillustrate\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\ttough\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tchore\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tfacing\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tagency\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tthrifts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\tbeached\t_\tADJ\tVBN\t_\t6\tamod\t_\t_\n6\twhales\t_\tNOUN\tNNS\t_\t9\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tBert\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tEly\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tindustry\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tconsultant\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n16\tbased\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tAlexandria\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tVa\t_\tPROPN\tNNP\t_\t18\tappos\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdelay\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n6\tin\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tselling\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n8\tPeople\t_\tPROPN\tNNS\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tHeritage\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSavings\t_\tPROPN\tNNPS\t_\t7\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tSalina\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tKan.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n19\t1.7\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tbillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tassets\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n24\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n25\tforced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tRTC\t_\tPROPN\tNNP\t_\t25\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tconsider\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n30\tselling\t_\tVERB\tVBG\t_\t29\txcomp\t_\t_\n31\toff\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tthrift\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n34\tbranch-by-branch\t_\tADV\tNN\t_\t30\tadvmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tinstead\t_\tADV\tRB\t_\t34\tcc\t_\t_\n37\tof\t_\tADP\tIN\t_\t36\tmwe\t_\t_\n38\tas\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\twhole\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tinstitution\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tcontinued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tforay\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tinto\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tFlorida\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tTexas\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tUniversity\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tFederal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tSavings\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAssociation\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tHouston\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\thad\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n13\tassets\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t2.8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tTexas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tNational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBank\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tRTC\t_\tPROPN\tNNP\t_\t6\tiobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpremium\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t129\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n17\t3.5\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tbillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tdeposits\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmeasure\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdepths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t15\tnmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tTexas\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\treal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\testate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tsunk\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tRTC\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n21\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n22\t3.8\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tbillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tNCNB\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\ttake\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n28\t$\t_\tSYM\t$\t_\t27\tdobj\t_\t_\n29\t750\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tbad\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tassets\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tacquired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFreedom\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSavings\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tLoan\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tTampa\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tFla.\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\thad\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n16\ttotal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tassets\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n20\t900\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tRTC\t_\tPROPN\tNNP\t_\t3\tiobj\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpremium\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t40.4\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n14\t1.1\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tdeposits\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t266\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tFreedom\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tassets\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tRTC\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\trequire\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n19\t$\t_\tSYM\t$\t_\t18\tdobj\t_\t_\n20\t875\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tassistance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMeridian\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBancorp\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tReading\t_\tNOUN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tPa.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tHill\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFinancial\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tSavings\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAssociation\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tRed\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tHill\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tPa.\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\thad\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n23\t$\t_\tSYM\t$\t_\t22\tdobj\t_\t_\n24\t2.3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tassets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMeridian\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpremium\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t30.5\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tassume\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tdeposits\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpurchase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t845\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tthrift\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tassets\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n16\t1.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tRTC\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tassistance\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tRTC\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\ttransaction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tforeign\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbuyer\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n11\tRoyal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tTrustco\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tLtd.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tToronto\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tPacific\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tSavings\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tBank\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tCosta\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMesa\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tCalif.\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\twhich\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n29\thad\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n30\t$\t_\tSYM\t$\t_\t29\tdobj\t_\t_\n31\t949\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tassets\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tRoyal\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTrustco\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t4\tiobj\t_\t_\n7\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n8\t25\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tassume\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t989\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tdeposits\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpurchase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t473\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n12\treceive\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t550\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tassistance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tRTC\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfollowing\t_\tADJ\tVBG\t_\t3\tamod\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\trecently\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfiled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tSecurities\t_\tPROPN\tNNPS\t_\t12\tcompound\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tCommission\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n\n1\tAmerican\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCyanamid\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\toffering\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\t1,250,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tcommon\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tvia\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tMerrill\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tLynch\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tCapital\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMarkets\t_\tPROPN\tNNPS\t_\t5\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLimited\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\toffering\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tup\t_\tADP\tRB\t_\t8\tdep\t_\t_\n7\tto\t_\tADP\tTO\t_\t6\tmwe\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t300\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tdebt\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\twarrants\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNuveen\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tCalifornia\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tPerformance\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tPlus\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tMunicipal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tFund\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tinitial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\toffering\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tfive\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tcommon\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tvia\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tAlex\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n20\tBrown\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n21\t&\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tSons\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tJohn\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tNuveen\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tCo.\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\tPrudential-Bache\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tCapital\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tFunding\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n35\tBateman\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n36\tEichler\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n38\tHill\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n39\tRichards\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tPacifiCare\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tHealth\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSystems\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tproposed\t_\tVERB\tVBD\t_\t7\tamod\t_\t_\n7\toffering\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\t1.5\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tcommon\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n16\t700,000\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n18\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\toffered\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n21\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tPacifiCare\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\t800,000\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tshares\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tUniHealth\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tAmerica\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tInc\t_\tPROPN\tNNP\t_\t25\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t32\tpunct\t_\t_\n32\tPacifiCare\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\t71\t_\tNUM\tCD\t_\t32\tdep\t_\t_\n35\t%\t_\tSYM\tNN\t_\t32\tdep\t_\t_\n36\t-RRB-\t_\tPUNCT\t-RRB-\t_\t32\tpunct\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n38\tvia\t_\tADP\tIN\t_\t44\tcase\t_\t_\n39\tDillon\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tRead\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n42\t&\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n43\tCo.\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n44\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n46\tGoldman\t_\tPROPN\tNNP\t_\t44\tconj\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t46\tpunct\t_\t_\n48\tSachs\t_\tPROPN\tNNP\t_\t46\tconj\t_\t_\n49\t&\t_\tCONJ\tCC\t_\t46\tcc\t_\t_\n50\tCo.\t_\tPROPN\tNNP\t_\t46\tconj\t_\t_\n51\tand\t_\tCONJ\tCC\t_\t44\tcc\t_\t_\n52\tDean\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n53\tWitter\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n54\tReynolds\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tInc\t_\tPROPN\tNNP\t_\t44\tconj\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPricor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\toffering\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tcommon\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t300,000\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tholders\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tvia\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tDrexel\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tBurnham\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tLambert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tJ.C.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tBradford\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tCo\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTrans\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tWorld\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tAirlines\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\toffering\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t150\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tsenior\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tnotes\t_\tNOUN\tNNS\t_\t8\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tvia\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tDrexel\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tBurnham\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmove\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treduce\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcosts\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tof\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\twooing\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tsubscribers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tis\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tlowering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tcirculation\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tguarantee\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tadvertisers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tsecond\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tconsecutive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n29\tincreasing\t_\tVERB\tVBG\t_\t17\tconj\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tsubscription\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\trates\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n34\tcutting\t_\tVERB\tVBG\t_\t17\tconj\t_\t_\n35\tback\t_\tADP\tRP\t_\t34\tcompound:prt\t_\t_\n36\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tmerchandise\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tgiveaways\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tannouncement\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tstaff\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tweek\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n10\texecutives\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n11\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n12\tTime\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tWarner\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tweekly\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmagazine\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tTime\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n22\tdramatically\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tde-emphasize\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tuse\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\telectronic\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tgiveaways\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tsuch\t_\tADJ\tJJ\t_\t32\tcase\t_\t_\n31\tas\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\ttelephones\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\ttelevision\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n35\tsubscription\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tdrives\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n37\t;\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n38\tcut\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tcirculation\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t42\tnsubj\t_\t_\n42\tguarantees\t_\tVERB\tVBZ\t_\t40\tacl:relcl\t_\t_\n43\tadvertisers\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n44\tby\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\t300,000\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n47\tto\t_\tADP\tTO\t_\t49\tcase\t_\t_\n48\tfour\t_\tNUM\tCD\t_\t49\tcompound\t_\t_\n49\tmillion\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n50\t;\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n51\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n52\tincrease\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n53\tthe\t_\tDET\tDT\t_\t54\tdet\t_\t_\n54\tcost\t_\tNOUN\tNN\t_\t52\tdobj\t_\t_\n55\tof\t_\tADP\tIN\t_\t59\tcase\t_\t_\n56\tits\t_\tPRON\tPRP$\t_\t59\tnmod:poss\t_\t_\n57\tannual\t_\tADJ\tJJ\t_\t59\tamod\t_\t_\n58\tsubscription\t_\tNOUN\tNN\t_\t59\tcompound\t_\t_\n59\trate\t_\tNOUN\tNN\t_\t54\tnmod\t_\t_\n60\tby\t_\tADP\tIN\t_\t62\tcase\t_\t_\n61\tabout\t_\tADV\tRB\t_\t62\tadvmod\t_\t_\n62\t$\t_\tSYM\t$\t_\t52\tnmod\t_\t_\n63\t4\t_\tNUM\tCD\t_\t62\tnummod\t_\t_\n64\tto\t_\tADP\tTO\t_\t66\tcase\t_\t_\n65\t$\t_\tSYM\t$\t_\t66\tdep\t_\t_\n66\t55\t_\tNUM\tCD\t_\t52\tnmod\t_\t_\n67\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\trelated\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdevelopment\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tnews-weekly\t_\tNOUN\tJJ\t_\t17\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfourth\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\trow\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\two\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tincrease\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tadvertising\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\trates\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t1990\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n27\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n29\tfull\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\tfour-color\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tpage\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tmagazine\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\tcosts\t_\tVERB\tVBZ\t_\t17\tparataxis\t_\t_\n37\tabout\t_\tADV\tIN\t_\t38\tadvmod\t_\t_\n38\t$\t_\tSYM\t$\t_\t36\tdobj\t_\t_\n39\t120,000\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n3\tbecause\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tguaranteed\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n6\tcirculation\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbase\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeing\t_\tAUX\tVBG\t_\t10\tauxpass\t_\t_\n10\tlowered\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n12\tad\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trates\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t19\tcop\t_\t_\n16\teffectively\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n17\t7.5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t19\tnmod:npmod\t_\t_\n19\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n20\tper\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsubscriber\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\taccording\t_\tVERB\tVBG\t_\t26\tcase\t_\t_\n24\tto\t_\tADP\tTO\t_\t23\tmwe\t_\t_\n25\tRichard\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tHeinemann\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tTime\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tassociate\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpublisher\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tfollowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcourse\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tmass-circulation\t_\tADJ\tNN\t_\t10\tamod\t_\t_\n10\tmagazines\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tthat\t_\tADP\tWDT\t_\t16\tnsubj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\trecent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tchallenged\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tpublishing\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmyth\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tthat\t_\tSCONJ\tWDT\t_\t31\tmark\t_\t_\n21\tmaintaining\t_\tVERB\tVBG\t_\t31\tcsubj\t_\t_\n22\tartificially\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\thigh\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n26\texpensive\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n28\tcirculations\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n29\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tway\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tdraw\t_\tVERB\tVB\t_\t31\tacl\t_\t_\n34\tadvertisers\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n5\tReader\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tDigest\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tTimes\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tMcCall\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n18\tmost\t_\tADV\tRBS\t_\t19\tadvmod\t_\t_\n19\trecently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n20\tNews\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tTV\t_\tPROPN\tNN\t_\t24\tcompound\t_\t_\n24\tGuide\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n26\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tcut\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n29\tmassive\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tcirculation\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\trate\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tbases\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\teliminate\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n35\tmarginal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tcirculation\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n38\thold\t_\tVERB\tVB\t_\t34\tconj\t_\t_\n39\tdown\t_\tADP\tRP\t_\t38\tcompound:prt\t_\t_\n40\trates\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n41\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tadvertisers\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tDeep\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tdiscounts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tsubscriptions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\toffers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tfree\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tclock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tradios\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\twatches\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\taccepted\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tforms\t_\tNOUN\tNNS\t_\t14\txcomp\t_\t_\n17\tof\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tattracting\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tsubscribers\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\thyper-competitive\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tworld\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tmagazine\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tnews-weeklies\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tTime\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tas\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tpart\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tmore\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n9\tcost-conscious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tTime\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tWarner\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\twants\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\twean\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\titself\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\taway\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\texpensive\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgimmicks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBesides\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tTime\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tselling\t_\tVERB\tVBG\t_\t15\tcsubj\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnews\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmagazine\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tclock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tradio\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\ttacky\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tGiveaways\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tjust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tgive\t_\tVERB\tVBP\t_\t11\tccomp\t_\t_\n5\tpeople\t_\tNOUN\tNNS\t_\t4\tiobj\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\twrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\timage\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHeinemann\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tperception\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfocus\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\toff\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmagazine\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tpredictably\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tpaint\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcirculation\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcut\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshow\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstrength\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\tactually\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbenefit\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tadvertisers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tWhat\t_\tPRON\tWP\t_\t5\tdobj\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tdoing\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t27\tccomp\t_\t_\n7\tscreening\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n8\tout\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\treaders\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\twho\t_\tPRON\tWP\t_\t15\tnsubjpass\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tauxpass\t_\t_\n13\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tcasually\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\trelated\t_\tVERB\tJJ\t_\t10\tacl:relcl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmagazine\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\tdo\t_\tAUX\tVBP\t_\t23\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t23\tneg\t_\t_\n22\treally\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tread\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tHeinemann\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcreate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tquality\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tinvolvement\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tTime\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsame\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\texplanation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOctober\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n12\t1988\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmagazine\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tcut\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tguaranteed\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n18\tcirculation\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t4.6\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\t4.3\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tTime\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tpaid\t_\tADJ\tVBN\t_\t5\tamod\t_\t_\n5\tcirculation\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n7\taccording\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n8\tto\t_\tADP\tTO\t_\t7\tmwe\t_\t_\n9\tAudit\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBureau\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tCirculations\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t7.3\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t14\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t4,393,237\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tsix\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\tended\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tJune\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\t30\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n27\t1989\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tTime\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmove\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeing\t_\tAUX\tVBG\t_\t8\tauxpass\t_\t_\n8\treceived\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\twell\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\tonce\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tterrific\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n5\tfor\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tadvertisers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tknow\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\treader\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tpaying\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n14\tmore\t_\tADJ\tRBR\t_\t13\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tMichael\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tDrexler\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tnational\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tmedia\t_\tNOUN\tNNS\t_\t23\tcompound\t_\t_\n23\tdirector\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n24\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tBozell\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tInc.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tad\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tagency\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdrops\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcirculation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tno\t_\tDET\tDT\t_\t10\tneg\t_\t_\n10\tconsequence\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tshow\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tweakness\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\timproving\t_\tVERB\tVBG\t_\t5\tparataxis\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tquality\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tcirculation\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\twhile\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tinsuring\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tprofits\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHeinemann\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tchanges\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\trepresent\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfocus\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tmagazine\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tindustry\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmagazine\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trevenue\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n20\tper\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsubscriber\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tactual\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trevenue\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tsubscribers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tafter\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n30\tdiscounts\t_\tNOUN\tNNS\t_\t38\tnsubjpass\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcost\t_\tNOUN\tNN\t_\t30\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tpremiums\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n36\thave\t_\tAUX\tVBP\t_\t38\taux\t_\t_\n37\tbeen\t_\tAUX\tVBN\t_\t38\tauxpass\t_\t_\n38\tstripped\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n39\taway\t_\tADP\tRB\t_\t38\tcompound:prt\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tquestion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n5\thow\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n6\tmuch\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tgetting\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\teach\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\treader\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tHeinemann\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\trivals\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tnews-weeklies\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tWashington\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tPost\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tNewsweek\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tNews\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t&\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tWorld\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tReport\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n19\tless\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n20\treliant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\telectronic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tgiveaways\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyears\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n29\tboth\t_\tDET\tCC\t_\t32\tnsubj\t_\t_\n30\thave\t_\tAUX\tVBP\t_\t32\taux\t_\t_\n31\tbeen\t_\tAUX\tVBN\t_\t32\taux\t_\t_\n32\tincreasing\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n33\ttheir\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n34\tcirculation\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n35\trate\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tbases\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmagazines\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tannounce\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tad\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\trates\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tcirculation\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tlevels\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1990\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n15\twithin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbroke\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tattempted\t_\tADJ\tVBN\t_\t8\tamod\t_\t_\n8\tcoup\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tPanama\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tweeks\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tago\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tSen.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tChristopher\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tDodd\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tState\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tDepartment\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tbriefing\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t`\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n6\tfollow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tCNN\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\t'\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\treporters\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\thow\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n4\tfar\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n5\tTed\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tTurner\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tCable\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tNews\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tNetwork\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcome\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n13\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tbirth\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tnine\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tyears\t_\tNOUN\tNNS\t_\t18\tnmod:npmod\t_\t_\n18\tago\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\twhen\t_\tADV\tWRB\t_\t23\tadvmod\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tconsidered\t_\tVERB\tVBN\t_\t15\tacl:relcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tlaughingstock\t_\tNOUN\tNN\t_\t23\txcomp\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\ttelevision\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tnews\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tbigger\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tfaster\t_\tADJ\tRBR\t_\t3\tconj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tmore\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n8\tprofitable\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n9\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tdivisions\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tany\t_\tDET\tDT\t_\t12\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tthree\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tbroadcast\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tnetworks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tniche\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tnetwork\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\trecord\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n10\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcrises\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\tdraws\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\telite\t_\tADJ\tNN\t_\t15\tamod\t_\t_\n15\taudiences\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\taround\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tworld\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tall\t_\tDET\tDT\t_\t5\tdet:predet\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tsuccess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tCNN\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tplateau\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tviewership\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsoars\t_\tNOUN\tVBZ\t_\t10\tadvcl\t_\t_\n4\twhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tnews\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tbreaks\t_\tVERB\tNNS\t_\t3\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tebbs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tperiods\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tcalm\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\texecutives\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tworry\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnetwork\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tpunchy\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\trepetitive\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tformat\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tmay\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tgetting\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n16\tstale\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\two\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tkeep\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n21\tviewers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tcoming\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n23\tback\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\talternatives\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tmultiply\t_\tVERB\tVBP\t_\t22\tadvcl\t_\t_\n28\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tnews\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tinformation\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n32\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tcable-TV\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tJust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tfact\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\ton\t_\tADP\tIN\t_\t4\tccomp\t_\t_\n8\t24\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\thours\t_\tNOUN\tNNS\t_\t7\tnmod:tmod\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tno\t_\tDET\tRB\t_\t12\tneg\t_\t_\n12\tlonger\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tbulletin\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tEd\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tTurner\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tCNN\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\texecutive\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tvice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tnews\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tgathering\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t31\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n30\tno\t_\tDET\tDT\t_\t31\tneg\t_\t_\n31\trelation\t_\tNOUN\tNN\t_\t24\tdep\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\tTed\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tTurner\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t31\tpunct\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tlive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthat\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\tCNN\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tunit\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tAtlanta-based\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\tTurner\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBroadcasting\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tSystem\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\treposition\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\titself\t_\tPRON\tPRP\t_\t16\tdobj\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tprimary\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tchannel\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\twhat\t_\tPRON\tWP\t_\t37\tdobj\t_\t_\n25\tpeople\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\ttelevision\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tindustry\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tcall\t_\tVERB\tVB\t_\t21\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n33\ttop\t_\tNOUN\tNN\t_\t37\tdep\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tmind\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t37\tpunct\t_\t_\n37\tnetwork\t_\tNOUN\tNN\t_\t30\txcomp\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTonight\t_\tADV\tNNP\t_\t11\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tkick\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n5\toff\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teffort\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tCNN\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tpremiere\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tprime-time\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tnewscast\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tyears\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\thourlong\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshow\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n22\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\t6\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n24\tp.m\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n26\tEastern\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttime\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tair\t_\tVERB\tNN\t_\t21\tacl\t_\t_\n30\thead-to-head\t_\tADV\tNN\t_\t29\tadvmod\t_\t_\n31\tagainst\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tnetwork\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tnewscasts\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshow\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tco-anchored\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tBernard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tShaw\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tCatherine\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCrier\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\t34-year-old\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tformer\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tTexas\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tjudge\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tcampus\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tbeauty\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tqueen\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n22\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tnever\t_\tADV\tRB\t_\t25\tneg\t_\t_\n25\theld\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tjob\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\ttelevision\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tjournalism\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tshow\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tperhaps\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tboldest\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tnumber\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tsteps\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tnetwork\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\ttaking\t_\tVERB\tVBG\t_\t12\tacl:relcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuild\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\taudience\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tloyalty\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tby\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tshifting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n23\taway\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tcurrent\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tformat\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\ttoward\t_\tADP\tIN\t_\t34\tcase\t_\t_\n29\tmore\t_\tADJ\tRBR\t_\t34\tamod\t_\t_\n30\tfull-length\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n32\tsignature\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n34\tprogramming\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n35\twith\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\trecognizable\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tstars\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tdistinguish\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n3\titself\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tCNN\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\texpanding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tinternational\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcoverage\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tadding\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tsecond\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tglobal-news\t_\tNOUN\tJJ\t_\t16\tcompound\t_\t_\n16\tprogram\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tpaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\thigher\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tsalaries\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tafter\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tscrimping\t_\tVERB\tVBG\t_\t8\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlure\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tkeep\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n16\texperienced\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tstaffers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tembarking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\texpensive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgamble\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbreak\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstories\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tlarge\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tinvestigative-reporting\t_\tNOUN\tJJ\t_\t17\tcompound\t_\t_\n17\tteam\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnext\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstage\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t32\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tbeyond\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\topinion\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tleaders\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\tuse\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n14\tus\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tpoint\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\treference\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tbecome\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpoint\t_\tNOUN\tNN\t_\t21\txcomp\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\treference\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tordinary\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tdinner\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\ttables\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n32\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n33\tJon\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tPetrovich\t_\tPROPN\tNNP\t_\t32\tdep\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\texecutive\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tvice\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tHeadline\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tNews\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tCNN\t_\tPROPN\tNNP\t_\t46\tnmod:poss\t_\t_\n44\t's\t_\tPART\tPOS\t_\t43\tcase\t_\t_\n45\tsister\t_\tNOUN\tNN\t_\t46\tcompound\t_\t_\n46\tnetwork\t_\tNOUN\tNN\t_\t41\tappos\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\two\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n6\teasy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNetworks\t_\tNOUN\tNNP\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tconsumer\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tdevelop\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\timages\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tpeoples\t_\tNOUN\tNNS\t_\t13\tnmod:poss\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tminds\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t17\tcop\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\teasy\t_\tADJ\tJJ\t_\t9\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tchange\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tmoney\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tthat\t_\tADP\tIN\t_\t9\tdobj\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tbeen\t_\tVERB\tVBN\t_\t9\tcop\t_\t_\n9\treluctant\t_\tADJ\tJJ\t_\t4\tacl:relcl\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tspend\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n14\tprograms\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\thire\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n17\ttalent\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tthat\t_\tADP\tIN\t_\t21\tdobj\t_\t_\n19\tviewers\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\ttune\t_\tVERB\tVB\t_\t17\tacl:relcl\t_\t_\n22\tin\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tspecially\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsee\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcable-TV\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\toperators\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tdistributors\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpart\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n11\towners\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n13\tlike\t_\tADP\tIN\t_\t0\troot\t_\t_\n14\tthings\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tway\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trepositioning\t_\tNOUN\tVBG\t_\t3\tcompound\t_\t_\n3\tbid\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\taimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tCNN\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tunsteady\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tviewership\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t15\tnsubj\t_\t_\n14\tmay\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thappen\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t15\tnmod\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tcable-TV\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tnews\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tgrows\t_\tVERB\tVBZ\t_\t15\tadvcl\t_\t_\n24\tmore\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n25\tcompetitive\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAlready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tCNN\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tfacing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tstronger\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tcompetition\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tFinancial\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tNews\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tNetwork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tGeneral\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tElectric\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCo.\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tConsumer\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tNews\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tBusiness\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tChannel\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tboth\t_\tDET\tDT\t_\t28\tnsubj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n27\tare\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n28\tlikely\t_\tADJ\tJJ\t_\t12\tacl:relcl\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tpursue\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tmore\t_\tADJ\tJJR\t_\t32\tdep\t_\t_\n32\tgeneral\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnews\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tfuture\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcable-TV\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsystems\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n7\tthemselves\t_\tPRON\tPRP\t_\t6\tnmod:npmod\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tairing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tmore\t_\tADJ\tRBR\t_\t15\tamod\t_\t_\n11\tlocal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tregional\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tnews\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprograms\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n16\tproduced\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tlocal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tbroadcast\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tstations\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\twants\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tchange\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tviewers\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\thabits\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\twatchers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\twhole\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tdisloyal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgroup\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tchannel-zapping\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tgrazers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tnews\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tjunkies\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\tspend\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\taverage\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tjust\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\t26\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tminutes\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tday\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\twatching\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n32\tCNN\t_\tPROPN\tNNP\t_\t31\tdobj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n34\taccording\t_\tVERB\tVBG\t_\t37\tcase\t_\t_\n35\tto\t_\tADP\tTO\t_\t34\tmwe\t_\t_\n36\taudience\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tresearch\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n3\tless\t_\tADJ\tJJR\t_\t5\tadvmod\t_\t_\n4\tthan\t_\tADP\tIN\t_\t3\tmwe\t_\t_\n5\tone-third\t_\tNOUN\tJJ\t_\t7\tnummod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tthat\t_\tADP\tWDT\t_\t10\tadvmod\t_\t_\n9\tviewers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\twatch\t_\tVERB\tVBP\t_\t7\tdep\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmajor\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbroadcast\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tnetworks\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbrief\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tattention\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tviewers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tgive\t_\tVERB\tVBP\t_\t3\tacl:relcl\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tput\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdisadvantage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n14\tratings\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tdata\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tadvertising\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tbecome\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n21\tmore\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n22\timportant\t_\tADJ\tJJ\t_\t20\txcomp\t_\t_\n23\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n24\tcable-TV\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchannels\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tviewer\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\thabits\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\tmolded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tformat\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tstrategy\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpast\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tserve\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tTV\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\twire\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tservice\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfocused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ton\t_\tSCONJ\tIN\t_\t4\tcase\t_\t_\n4\tbuilding\t_\tNOUN\tVBG\t_\t2\tadvcl\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tnews\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbureaus\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\taround\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tevents\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\ttook\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n17\tplace\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tgo\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n21\tlive\t_\tADJ\tJJ\t_\t20\txcomp\t_\t_\n22\tquicker\t_\tADV\tJJR\t_\t20\tadvmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tlonger\t_\tADV\tJJR\t_\t22\tconj\t_\t_\n25\tthan\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnetworks\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfilled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tdaily\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tschedule\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnewscasts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tcalled\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tDaybreak\t_\tPROPN\tNNP\t_\t8\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n14\tDaywatch\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n18\tNewsday\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n23\tNewsnight\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshows\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n29\tvaried\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n30\tlittle\t_\tADJ\tJJ\t_\t29\tdobj\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tcontent\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tpersonality\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n35\tor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n36\tlook\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tpush\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\ton\t_\tADV\tIN\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmore-distinctive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tshows\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tOur\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tgoal\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcreate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tprograms\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tindividual\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tidentity\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tPaul\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tAmos\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tCNN\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\texecutive\t_\tADJ\tNN\t_\t22\tamod\t_\t_\n21\tvice\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tprogramming\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAccordingly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tCNN\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tadding\t_\tVERB\tVBG\t_\t34\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tworld-affairs\t_\tNOUN\tJJ\t_\t8\tcompound\t_\t_\n8\tshow\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmorning\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tsurveys\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tshow\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tglobal-news\t_\tNOUN\tJJ\t_\t17\tcompound\t_\t_\n17\thour\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tafternoon\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t28\tcop\t_\t_\n22\tamong\t_\tADP\tIN\t_\t28\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n24\tmost\t_\tADV\tRBS\t_\t26\tadvmod\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n26\tdifferentiated\t_\tADJ\tVBN\t_\t28\tamod\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n28\tprograms\t_\tNOUN\tNNS\t_\t14\tccomp\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tviewers\t_\tNOUN\tNNS\t_\t32\tnmod:poss\t_\t_\n31\t'\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tminds\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n34\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n35\tMr.\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tAmos\t_\tPROPN\tNNP\t_\t34\tnsubj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\texploring\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\toriginal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tprograms\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tsimilar\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n10\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n13\tLarry\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKing\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n15\tLive\t_\tPROPN\tNNP\t_\t14\tamod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tCrossfire\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\ttalk\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n22\tshows\t_\tVERB\tNNS\t_\t21\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n24\twhich\t_\tPRON\tWDT\t_\t26\tdobj\t_\t_\n25\texecutives\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\thope\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n27\twill\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tkeep\t_\tVERB\tVB\t_\t26\tccomp\t_\t_\n29\tpeople\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\ttuned\t_\tVERB\tVBN\t_\t28\tdep\t_\t_\n31\tin\t_\tADP\tIN\t_\t30\tcompound:prt\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n5\tThe\t_\tPROPN\tDT\t_\t6\tcompound\t_\t_\n6\tWorld\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n7\tToday\t_\tPROPN\tNN\t_\t6\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tprime-time\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tnewscast\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n13\tfeaturing\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tShaw\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tMs.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCrier\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tnow\t_\tADV\tRB\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tCNN\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tfeatured\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tHollywood\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tgossip\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tshow\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tkey\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tevening\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\t70\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tcable-television-equipped\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thouseholds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\twatch\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n10\tnews\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tdo\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n12\tso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t6:30\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\tp.m.\t_\tADV\tNN\t_\t14\tadvmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\t7\t_\tNUM\tCD\t_\t14\tconj\t_\t_\n18\tp.m.\t_\tADV\tNN\t_\t17\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnetwork\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tdiscovered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tso\t_\tADP\tRB\t_\t22\tdep\t_\t_\n25\tCNN\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\twants\t_\tVERB\tVBZ\t_\t22\tparataxis\t_\t_\n27\tin\t_\tADV\tIN\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAmos\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tShaw-Crier\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tteam\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tprobably\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdo\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tlive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinterviews\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n17\tmost\t_\tADJ\tJJS\t_\t27\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tprogram\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tadvmod\t_\t_\n23\tleast\t_\tADJ\tJJS\t_\t22\tmwe\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tnow\t_\tADV\tRB\t_\t27\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n27\tappearing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n28\tsimilar\t_\tADJ\tJJ\t_\t27\txcomp\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tCNN\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tother\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnewcasts\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t6\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n6\tskeptical\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfind\t_\tVERB\tVBP\t_\t31\tccomp\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\thard\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tconceive\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\tof\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tpeople\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tswitching\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n11\tover\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tCNN\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n15\twhat\t_\tPRON\tWP\t_\t28\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n17\tat\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n18\tleast\t_\tADJ\tJJS\t_\t17\tmwe\t_\t_\n19\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpublic\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmind\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t28\tcop\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tsame\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tnews\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n31\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n32\tReuven\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tFrank\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tformer\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\ttwo-time\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tNBC\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tNews\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n43\tcreator\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n44\tof\t_\tADP\tIN\t_\t47\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tHuntley-Brinkley\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tReport\t_\tPROPN\tNNP\t_\t43\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tevening\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tslated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCNN\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tstage\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tbig\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpush\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tinvestigative\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tjournalism\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tnetwork\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\thired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\taward-winning\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tproducer\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tPamela\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tHill\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tformer\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thead\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnews\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tspecials\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tABC\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tassembling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tstaff\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tabout\t_\tADV\tIN\t_\t8\tadvmod\t_\t_\n8\t35\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tinvestigative\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\treporters\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tproduce\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n14\tweekly\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tin-depth\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsegments\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\teye\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n22\ttoward\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tbreaking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n24\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tstories\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\texecutives\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\theadlines\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n6\tcreated\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tscoops\t_\tNOUN\tVBZ\t_\t6\tnmod\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tgenerate\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n12\texcitement\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n16\tbranded\t_\tADJ\tVBN\t_\t18\tamod\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tway\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n24\t60\t_\tPROPN\tCD\t_\t25\tcompound\t_\t_\n25\tMinutes\t_\tPROPN\tNNPS\t_\t27\tnsubj\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tdid\t_\tVERB\tVBD\t_\t22\tacl:relcl\t_\t_\n28\tso\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\twell\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tCBS\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tsuch\t_\tDET\tJJ\t_\t5\tdet:predet\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdeparture\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpast\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t15\tnsubj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tindustry\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n15\tskeptical\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n16\tCNN\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tfollow\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n19\tthrough\t_\tADP\tIN\t_\t18\tcompound:prt\t_\t_\n20\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tinvestigative\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcommitment\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n25\tespecially\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n26\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tsees\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcost\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\tof\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\tproducing\t_\tVERB\tVBG\t_\t30\tacl\t_\t_\n33\tin-depth\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tpieces\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnever\t_\tADV\tRB\t_\t5\tneg\t_\t_\n5\tshown\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinclination\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tspend\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tproduction\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tMichael\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMosettig\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsenior\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tproducer\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tMacNeil-Lehrer\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tNewsHour\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\tnotes\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tCNN\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n30\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n31\tindispensable\t_\tADJ\tJJ\t_\t27\tccomp\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\this\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tjob\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnetwork\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tsalaries\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\talways\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tranged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tfar\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tbelow\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tindustry\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tstandards\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tresulting\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tless-experienced\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\twork\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tforce\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmost\t_\tADJ\tRBS\t_\t5\tamod\t_\t_\n5\temployees\t_\tNOUN\tNNS\t_\t3\tiobj\t_\t_\n6\traises\t_\tNOUN\tVBZ\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tas\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t11\tadvmod\t_\t_\n10\tas\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n11\t15\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\t're\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n17\tstill\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tdrastically\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tunderpaid\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tnetworks\t_\tNOUN\tNNS\t_\t19\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMosettig\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\tmy\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\twire\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tservice\t_\tNOUN\tNN\t_\t1\tccomp\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t're\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\ttop\t_\tNOUN\tNN\t_\t10\tparataxis\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\teverything\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tto\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\timprove\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t've\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\treally\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tgot\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tinvestment\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tpeople\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tcable-TV-system\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toperators\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\treason\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfear\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tany\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttinkering\t_\tNOUN\tVBG\t_\t10\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tCNN\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tformat\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tmarket\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tcable-TV\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tvery\t_\tADJ\tRB\t_\t8\tamod\t_\t_\n7\tgrazing\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\topportunities\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tCNN\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tseeks\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tdiscourage\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubjpass\t_\t_\n3\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tobviously\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tauxpass\t_\t_\n6\tupset\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthose\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tkinds\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tservices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tevolved\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n13\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t15\tdep\t_\t_\n15\tgeneral-interest\t_\tADJ\tNN\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tlong-format\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tprogramming\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tRobert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStengel\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tvice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tprogramming\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tContinental\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tCablevision\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tInc.\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\twhich\t_\tPRON\tWDT\t_\t37\tnsubj\t_\t_\n37\tholds\t_\tVERB\tVBZ\t_\t34\tacl:relcl\t_\t_\n38\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\t2\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\t%\t_\tSYM\tNN\t_\t41\tamod\t_\t_\n41\tstake\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n42\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tTurner\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tBroadcasting\t_\tPROPN\tNNP\t_\t41\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSecond\t_\tPROPN\tJJ\t_\t8\tdep\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\tCircuit\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n5\tCourt\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tAppeals\t_\tPROPN\tNNPS\t_\t2\tnmod\t_\t_\n8\topinion\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tArcadian\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tPhosphate\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tcase\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tdid\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tnot\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\trepudiate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tposition\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tPennzoil\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCo.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\ttook\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n22\tin\t_\tADP\tRP\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tdispute\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tTexaco\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n28\tcontrary\t_\tADJ\tJJ\t_\t16\tadvmod\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tyour\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n31\tSept.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\t8\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tarticle\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n35\tCourt\t_\tNOUN\tNNP\t_\t36\tnsubj\t_\t_\n36\tBacks\t_\tVERB\tVBZ\t_\t33\tdep\t_\t_\n37\tTexaco\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tView\t_\tNOUN\tNNP\t_\t36\tdobj\t_\t_\n40\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tPennzoil\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tCase\t_\tNOUN\tNNP\t_\t36\tnmod\t_\t_\n43\t--\t_\tPUNCT\t:\t_\t36\tpunct\t_\t_\n44\tToo\t_\tADV\tNNP\t_\t45\tadvmod\t_\t_\n45\tLate\t_\tADV\tNNP\t_\t36\tadvmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n47\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfundamental\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trule\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcontract\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tlaw\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tapplied\t_\tVERB\tVBD\t_\t3\tacl\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tboth\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcases\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tcourts\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tnot\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tenforce\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n17\tagreements\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tparties\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n22\tdid\t_\tAUX\tVBD\t_\t24\taux\t_\t_\n23\tnot\t_\tPART\tRB\t_\t24\tneg\t_\t_\n24\tintend\t_\tVERB\tVB\t_\t17\tacl:relcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\tbound\t_\tVERB\tVBN\t_\t24\txcomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tPennzoil/Texaco\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tlitigation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcourts\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tfound\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tPennzoil\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tGetty\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tOil\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\tintended\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tbound\t_\tVERB\tVBN\t_\t13\txcomp\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tArcadian\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tPhosphates\t_\tPROPN\tNNPS\t_\t22\tnmod\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tfound\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t22\tccomp\t_\t_\n25\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n26\tintention\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n27\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n28\tbe\t_\tAUX\tVB\t_\t29\tauxpass\t_\t_\n29\tbound\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAdmittedly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tprinciple\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcases\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsame\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\toutcome\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlegal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdispute\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\talmost\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\talways\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tturns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tfacts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfacts\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tfound\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tvarious\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcourts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthese\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\ttwo\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tlawsuits\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n17\tdifferent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsuggest\t_\tVERB\tVBP\t_\t7\tadvcl\t_\t_\n4\totherwise\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tleave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trealm\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\treporting\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tenter\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\torbit\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tspeculation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tF.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tVihon\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tValley\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSavings\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tLoan\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAssociation\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tImperial\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tAmerica\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\twithdrew\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tregulators\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tapplication\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuy\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tfive\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n20\tValley\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tFederal\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tbranches\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tleaving\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttransaction\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tlimbo\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbroken\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpurchase\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tadditional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tevidence\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttrouble\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tImperial\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhose\t_\tPRON\tWP$\t_\t15\tnmod:poss\t_\t_\n15\tspokesman\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\twithdrew\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tapplication\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfederal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tOffice\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tThrift\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tSupervision\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\tbecause\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tof\t_\tADP\tIN\t_\t29\tmwe\t_\t_\n31\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tinformal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnotice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n34\tthat\t_\tSCONJ\tWDT\t_\t39\tmark\t_\t_\n35\tImperial\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tthrift\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tunit\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n39\tfailed\t_\tVERB\tVBD\t_\t33\tccomp\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tmeet\t_\tVERB\tVB\t_\t39\txcomp\t_\t_\n42\tCommunity\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tReinvestment\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tAct\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\trequirements\t_\tNOUN\tNNS\t_\t41\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tCommunity\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tReinvestment\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAct\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tsavings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tloan\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tassociations\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tlend\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n12\tmoney\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tamounts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\trelated\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tareas\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\twhere\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n19\tdeposits\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\tauxpass\t_\t_\n21\treceived\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttransaction\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tannounced\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAugust\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tabout\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n11\t146\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdeposits\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfive\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\toutlets\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tCalifornia\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tSan\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tJoaquin\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tValley\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\tValley\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tFederal\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tsaid\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\texpected\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tpost\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tmodest\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tpretax\t_\tADJ\tNN\t_\t18\tamod\t_\t_\n18\tgain\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tsave\t_\tVERB\tVB\t_\t14\tconj\t_\t_\n22\tabout\t_\tADV\tIN\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tdobj\t_\t_\n24\t2\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\toperating\t_\tNOUN\tVBG\t_\t28\tcompound\t_\t_\n28\tcosts\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tannually\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tValley\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tconsidering\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\twhether\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tseek\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n12\tanother\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbuyer\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbranches\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tpursue\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttransaction\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tImperial\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCorp.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\tis\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\tattempting\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tmeet\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tCommunity\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n34\tReinvestment\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tAct\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\trequirements\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tValley\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t12\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tassets\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t3.3\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\tauxpass\t_\t_\n12\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tVan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tNuys\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tImperial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tSan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tDiego\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tparent\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tImperial\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSavings\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t&\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tLoan\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tsix\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t33.1\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCall\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n3\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n7\ttoo\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tbroke\t_\tADJ\tVBN\t_\t12\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfight\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tdefense\t_\tNOUN\tNN\t_\t1\txcomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tLawyers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tdozens\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tinsolvent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsavings\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tloan\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tassociations\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttack\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tefforts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdefuse\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\tsuits\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tfiled\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tborrowers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tdevelopers\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tcreditors\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tthrifts\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tlawyers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tclaim\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsuits\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tnumbering\t_\tVERB\tNN\t_\t8\tacl\t_\t_\n11\t700\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tdep\t_\t_\n13\t1,000\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tTexas\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\talone\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tshould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\tdismissed\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n21\tas\t_\tADV\tIN\t_\t22\tadvmod\t_\t_\n22\tmoot\t_\tADJ\tJJ\t_\t20\tadvcl\t_\t_\n23\tbecause\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n24\tneither\t_\tCONJ\tCC\t_\t26\tcc:preconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tS&Ls\t_\tNOUN\tNNP\t_\t36\tnsubj\t_\t_\n27\tnor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\textinct\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tFederal\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tSavings\t_\tPROPN\tNNPS\t_\t26\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tLoan\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tInsurance\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCorp.\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n36\thas\t_\tVERB\tVBZ\t_\t20\tadvcl\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tmoney\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tpay\t_\tVERB\tVB\t_\t38\tacl\t_\t_\n41\tjudgments\t_\tNOUN\tNNS\t_\t40\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThough\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\targument\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\thave\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcommon-sense\t_\tNOUN\tJJ\t_\t8\tcompound\t_\t_\n8\tring\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n12\teven\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tS&L\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlawyers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tconcede\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n17\tthere\t_\tPRON\tEX\t_\t18\texpl\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t16\tccomp\t_\t_\n19\tlittle\t_\tADV\tJJ\t_\t20\tadvmod\t_\t_\n20\tprecedent\t_\tADJ\tNN\t_\t18\tnsubj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tback\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tposition\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tfederal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tappeals\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tcourt\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tsignaled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\twilling\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tentertain\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tnotion\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tlawyers\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\thave\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\trenewed\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\targuments\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tTexas\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\teight\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n28\tother\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tstates\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n30\twhere\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tdefense\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n33\tis\t_\tAUX\tVBZ\t_\t34\tauxpass\t_\t_\n34\tpermitted\t_\tVERB\tVBN\t_\t25\tacl:relcl\t_\t_\n35\tunder\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tstate\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tlaw\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdismissal\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpending\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tsuits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tgo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tlong\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tway\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ttoward\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tclearing\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n14\tcourt\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdockets\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tTexas\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\treducing\t_\tVERB\tVBG\t_\t13\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tFSLIC\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmassive\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tlegal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbills\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\ttopped\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n29\t$\t_\tSYM\t$\t_\t28\tdobj\t_\t_\n30\t73\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\tlast\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t28\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tS&L\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tlawyers\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tencouraged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmonth\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tappellate-court\t_\tNOUN\tJJ\t_\t11\tcompound\t_\t_\n11\truling\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ttwo\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcases\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tbrought\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tagainst\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tdefunct\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tSunbelt\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSavings\t_\tPROPN\tNNPS\t_\t15\tnmod\t_\t_\n20\t&\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tLoan\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAssociation\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tDallas\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdevelopers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tValley\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tRanch\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tbest\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tknown\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n35\tas\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\ttraining\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tcenter\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n41\tDallas\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tCowboys\t_\tPROPN\tNNPS\t_\t44\tcompound\t_\t_\n43\tfootball\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tteam\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSunbelt\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tforeclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tranch\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSunbelt\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tFSLIC\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n5\targued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tFifth\t_\tPROPN\tJJ\t_\t11\tcompound\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCircuit\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCourt\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tAppeals\t_\tPROPN\tNNPS\t_\t11\tnmod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tthere\t_\tPRON\tEX\t_\t21\texpl\t_\t_\n17\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n18\tnever\t_\tADV\tRB\t_\t21\tneg\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t21\tcop\t_\t_\n20\tany\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tassets\t_\tNOUN\tNNS\t_\t5\tccomp\t_\t_\n22\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t25\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsatisfy\t_\tVERB\tVB\t_\t21\tacl:relcl\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tjudgment\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tagainst\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tSunbelt\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tSavings\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\tnor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n32\tany\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tmeans\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tcollect\t_\tVERB\tVB\t_\t33\tacl\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tany\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tother\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tparty\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tincluding\t_\tVERB\tVBG\t_\t42\tcase\t_\t_\n42\tFSLIC\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n44\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n3\ttrue\t_\tADJ\tJJ\t_\t14\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twrote\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcontention\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tjustify\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tdismissal\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthese\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tactions\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tprudential\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tgrounds\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcourt\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tlacked\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tenough\t_\tADV\tJJ\t_\t9\tadvmod\t_\t_\n8\tfinancial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinformation\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSunbelt\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tFSLIC\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tsent\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcases\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tback\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tfederal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tdistrict\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcourt\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tDallas\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHaworth\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlawyer\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSunbelt\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tplans\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tfile\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbrief\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tweek\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n18\turging\t_\tVERB\tVBG\t_\t13\tdep\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tdistrict\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tjudge\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdismiss\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tsuits\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n27\tbecause\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n28\tSunbelt\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tliabilities\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n31\texceeded\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n32\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n33\tassets\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tabout\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\t$\t_\tSYM\t$\t_\t31\tnmod\t_\t_\n37\t2\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tbillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\twhen\t_\tADV\tWRB\t_\t42\tadvmod\t_\t_\n40\tfederal\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tregulators\t_\tNOUN\tNNS\t_\t42\tnsubj\t_\t_\n42\tclosed\t_\tVERB\tVBD\t_\t31\tadvcl\t_\t_\n43\tit\t_\tPRON\tPRP\t_\t42\tdobj\t_\t_\n44\tin\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\tAugust\t_\tPROPN\tNNP\t_\t42\tnmod\t_\t_\n46\t1988\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tinstitution\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tbrain\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n7\tdead\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHaworth\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpartner\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tDallas\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\toffice\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAndrews\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t&\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tKurth\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tHouston\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tlaw\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tfirm\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlawyer\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tTriland\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInvestment\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tGroup\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdeveloper\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tValley\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tRanch\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tdismisses\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tsuch\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\targuments\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tdefense\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tdu\t_\tX\tNNP\t_\t21\tcompound\t_\t_\n23\tjour\t_\tX\tFW\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tAttorney\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tRichard\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tJackson\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tDallas\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tjudgment\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tTriland\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tsatisfied\t_\tADJ\tVBN\t_\t6\tccomp\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tways\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n17\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmonetary\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\taward\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tincluding\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\treversal\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tSunbelt\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tforeclosure\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tValley\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tRanch\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tasking\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcourt\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnumber\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tthings\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tgrant\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\taddition\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tthrill\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tvictory\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tValley\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tRanch\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n8\tfree\t_\tADJ\tJJ\t_\t4\tadvmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tclear\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbooby\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tprize\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tKenneth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tJ.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tThygerson\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twho\t_\tPRON\tWP\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tnamed\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n8\tpresident\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tthrift\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tholding\t_\tNOUN\tVBG\t_\t13\tcompound\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\tresigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tciting\t_\tVERB\tVBG\t_\t17\txcomp\t_\t_\n20\tpersonal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\treasons\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tThygerson\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tplanned\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\ttravel\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tbetween\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tjob\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tDenver\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\tSan\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tDiego\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\thome\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tfound\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcommute\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\ttoo\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tdifficult\t_\tADJ\tJJ\t_\t22\txcomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tcontinue\t_\tVERB\tVB\t_\t26\tccomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSOUTH\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAFRICA\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tFREED\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tANC\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tSisulu\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tseven\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tpolitical\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tprisoners\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThousands\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tsupporters\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tnsubj\t_\t_\n6\tbrandishing\t_\tVERB\tJJ\t_\t15\tadvcl\t_\t_\n7\tflags\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\toutlawed\t_\tVERB\tJJ\t_\t13\tamod\t_\t_\n11\tAfrican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tNational\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCongress\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tanti-apartheid\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tactivists\t_\tNOUN\tNNS\t_\t15\tiobj\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\ttumultuous\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\treception\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n22\tupon\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\treturn\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tblack\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttownships\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tacross\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcountry\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthose\t_\tPRON\tDT\t_\t1\tnmod\t_\t_\n4\tfreed\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tspent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tleast\t_\tADJ\tJJS\t_\t9\tnmod:npmod\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:tmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tprison\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t77-year-old\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tSisulu\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tsentenced\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tlife\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t1964\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n10\talong\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n11\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tblack\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tnationalist\t_\tNOUN\tJJ\t_\t15\tcompound\t_\t_\n14\tNelson\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMandela\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\tfor\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tplotting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\toverthrow\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tgovernment\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tequality\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tblacks\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tSouth\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tAfrica\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\treach\t_\tNOUN\tNN\t_\t23\tccomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\treleases\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tannounced\t_\tVERB\tVBD\t_\t2\tacl\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tweek\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tde\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tKlerk\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twere\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tviewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tPretoria\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\ttacit\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tlegalization\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tANC\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMandela\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tconsidered\t_\tVERB\tVBD\t_\t1\tacl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tmost\t_\tADV\tRBS\t_\t6\tadvmod\t_\t_\n6\tprominent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tleader\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tANC\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tprison\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\trelease\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n4\twithin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tnext\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmonths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n10\twidely\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSoviet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tUnion\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n6\tthousands\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttons\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tgoods\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tneeded\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tease\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\twidespread\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshortages\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tacross\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tnation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tpiled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n21\tup\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tports\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\trail\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tdepots\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n29\tfood\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tshipments\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n31\twere\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\trotting\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n33\tbecause\t_\tADV\tIN\t_\t36\tcase\t_\t_\n34\tof\t_\tADP\tIN\t_\t33\tmwe\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tlack\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tpeople\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tequipment\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n41\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n42\tmove\t_\tVERB\tVB\t_\t38\tacl\t_\t_\n43\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tcargo\t_\tNOUN\tNN\t_\t42\tdobj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStrikes\t_\tNOUN\tVBZ\t_\t5\tnsubjpass\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tmismanagement\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tcited\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tPremier\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tRyzhkov\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\twarned\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\ttough\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmeasures\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBush\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n4\tmight\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\troom\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tflexibility\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tallow\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tfederal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfunding\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tabortions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tpoor\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\twomen\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n24\tare\t_\tVERB\tVBP\t_\t25\tcop\t_\t_\n25\tvicitims\t_\tNOUN\tNNS\t_\t22\tacl:relcl\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\trape\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tincest\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\treiterated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\topposition\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tsuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunding\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\texpressed\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n11\thope\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompromise\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpresident\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tnews\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tconference\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\trenewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcall\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\touster\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tPanama\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tNoriega\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHouse\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tminors\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\thave\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n7\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n8\tany\t_\tDET\tRB\t_\t9\tdet\t_\t_\n9\tright\t_\tNOUN\tJJ\t_\t6\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tabortion\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\twithout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tconsent\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tparents\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tadministration\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tpolicy\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tstated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfriend-of-the-court\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbrief\t_\tNOUN\tJJ\t_\t6\tnmod\t_\t_\n11\turging\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tSupreme\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCourt\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tgive\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n17\tstates\t_\tNOUN\tNNS\t_\t16\tiobj\t_\t_\n18\tmore\t_\tADJ\tRBR\t_\t19\tamod\t_\t_\n19\tleeway\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\trestrict\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\tabortions\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTen\t_\tNUM\tCD\t_\t10\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tnation\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgovernors\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tmeanwhile\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tjustices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\treject\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n16\tefforts\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tlimit\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tabortions\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tJustice\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDepartment\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tFBI\t_\tPROPN\tNNP\t_\t10\tnsubjpass\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\tauxpass\t_\t_\n10\tgiven\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tauthority\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tseize\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tfugitives\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\toverseas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n18\twithout\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpermission\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tforeign\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tgovernments\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSecretary\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tState\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tBaker\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\temphasized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpolicy\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n11\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tinvoked\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tBush\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tadministration\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\twithout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfull\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tconsideration\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tforeign-policy\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\timplications\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNASA\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tpronounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tspace\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tshuttle\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tAtlantis\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tready\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tlaunch\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\ttomorrow\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n11\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfive-day\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpostponement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tflight\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tbecause\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tof\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tfaulty\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tengine\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcomputer\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdevice\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\treplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspacecraft\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfive\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tastronauts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tdispatch\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tGalileo\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tspace\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprobe\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\texploration\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmission\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\tJupiter\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSouth\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKorea\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tPresident\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRoh\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\ttraveled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfive-day\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tvisit\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\tauxpass\t_\t_\n16\texpected\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tfocus\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tties\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tWashington\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tSeoul\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRoh\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tfacing\t_\tVERB\tVBG\t_\t1\tacl:relcl\t_\t_\n6\tcalls\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\treduction\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tmilitary\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tforces\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tSouth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tKorea\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tmeet\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tBush\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\ttomorrow\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t18\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\taddress\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tjoint\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tsession\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tCongress\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tWednesday\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tChina\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tCommunist\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tleadership\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpurge\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tparty\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n12\thostile\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tanti-party\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\telements\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\twealthy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tprivate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tbusinessmen\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhom\t_\tPRON\tWP\t_\t25\tdobj\t_\t_\n23\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tcalled\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n25\texploiters\t_\tNOUN\tNNS\t_\t24\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdecision\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\treported\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n5\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tofficial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tXinhua\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tNews\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAgency\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcrackdown\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n16\tprompted\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tstudent-led\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tpro-democracy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tprotests\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tJune\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\tintensifying\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHundreds\t_\tPROPN\tNNS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tEast\t_\tPROPN\tNNS\t_\t4\tcompound\t_\t_\n4\tGermans\t_\tPROPN\tNNS\t_\t1\tnmod\t_\t_\n5\tflocked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\tBonn\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tEmbassy\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tWarsaw\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tbringing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tmore\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n16\tthan\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\t1,200\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tnumber\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\temigres\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\texpected\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tflee\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tWest\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\tbeginning\t_\tNOUN\tVBG\t_\t29\tdep\t_\t_\n29\ttoday\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t3\tadvmod\t_\t_\n2\tthan\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\t2,100\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tothers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tescaped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tWest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGermany\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tHungary\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tWeekend\t_\tNOUN\tNNP\t_\t5\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLeipzig\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tactivists\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tvowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tcontinue\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tstreet\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprotests\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdemand\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tinternal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchange\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tZaire\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tPresident\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tMobutu\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tmet\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tsouthern\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tFrance\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tAngolan\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\trebel\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tleader\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tSavimbi\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tsenior\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tenvoy\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbid\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\trevive\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\taccord\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tend\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tAngola\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcivil\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\twar\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tDetails\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttalks\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tdescribed\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tZairean\t_\tADJ\tNNP\t_\t10\tamod\t_\t_\n10\tofficial\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tvery\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tdelicate\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n17\twere\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tPLO\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tleader\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tArafat\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tinsisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tguarantees\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tthat\t_\tSCONJ\tWDT\t_\t16\tmark\t_\t_\n8\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\telections\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tIsraeli-occupied\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tterritories\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t16\tcop\t_\t_\n16\timpartial\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tmade\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tremarks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tPLO\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tgathering\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tBaghdad\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\toccupied\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlands\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tunderground\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tleaders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tArab\t_\tADJ\tNNP\t_\t11\tamod\t_\t_\n11\tuprising\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tplan\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tarrange\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tIsraeli-Palestinian\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\ttalks\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tShamir\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\topposed\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n23\tholding\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n24\tsuch\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdiscussions\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tCairo\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tLebanese\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tChristian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlawmakers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpresented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tArab\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmediators\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttalks\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSaudi\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tArabia\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tproposals\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttimetable\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\twithdrawal\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tSyria\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tforces\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tLebanon\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tcurrently\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tunder\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tstudy\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tgives\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tDamascus\t_\tPROPN\tNNP\t_\t6\tiobj\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyears\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tpull\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tback\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\teastern\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tLebanon\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tstarting\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tBeirut\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tlegislature\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tincreases\t_\tVERB\tVBZ\t_\t20\tacl:relcl\t_\t_\n25\tpolitical\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tpower\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tMoslems\t_\tPROPN\tNNPS\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHurricane\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tJerry\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tthreatened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tcombine\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\thighest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n9\ttides\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tswamp\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tTexas-Louisiana\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tcoast\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThousands\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tresidents\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tlow-lying\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tareas\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tordered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tevacuate\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tstorm\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\theaded\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n15\tnorth\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tGulf\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tMexico\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\t80\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmph\t_\tADJ\tNN\t_\t24\tamod\t_\t_\n24\twinds\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tArby\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tfranchisees\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tformed\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tassociation\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\toppose\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tMiami\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tBeach\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tfinancier\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tVictor\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tPosner\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tcontrol\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\trestaurant\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tchain\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdecision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlatest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tmove\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tescalating\t_\tVERB\tJJ\t_\t10\tamod\t_\t_\n10\tbattle\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tfranchisees\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPosner\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tAugust\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n7\tcalled\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tR.B.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tPartners\t_\tPROPN\tNNPS\t_\t10\tcompound\t_\t_\n10\tLtd.\t_\tPROPN\tNNP\t_\t7\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tconsisting\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\teight\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tArby\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tlargest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tfranchisees\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tmore\t_\tADJ\tJJR\t_\t24\tadvmod\t_\t_\n23\tthan\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\t$\t_\tSYM\t$\t_\t21\tdobj\t_\t_\n25\t200\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tbuy\t_\tVERB\tVB\t_\t21\tadvcl\t_\t_\n29\tArby\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tInc.\t_\tNOUN\tNNP\t_\t28\tdobj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\twhich\t_\tPRON\tWDT\t_\t35\tnsubj\t_\t_\n34\tis\t_\tVERB\tVBZ\t_\t35\tcop\t_\t_\n35\tpart\t_\tNOUN\tNN\t_\t31\tacl:relcl\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tDWG\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tCorp\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tDWG\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tholding\t_\tNOUN\tVBG\t_\t5\tcompound\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tcontrolled\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tPosner\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tlater\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n5\tLeonard\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tH.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tRoberts\t_\tPROPN\tNNP\t_\t19\tnsubjpass\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tpresident\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tchief\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\texecutive\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tofficer\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tArby\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n19\tfired\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tdispute\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tPosner\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\t42\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tfranchisees\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tformation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tassociation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n12\tcalled\t_\tVERB\tVBN\t_\t10\tdep\t_\t_\n13\tA.P.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tAssociation\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t12\txcomp\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n19\tpreserve\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tintegrity\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tArby\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tsystem\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfranchisees\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\towners\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\toperators\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1,000\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\t1,900\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tfranchised\t_\tADJ\tVBD\t_\t13\tamod\t_\t_\n13\tArby\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n22\tWe\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tconcluded\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n26\tcontinued\t_\tADJ\tVBN\t_\t27\tamod\t_\t_\n27\tcontrol\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tArby\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tVictor\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tPosner\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n34\tis\t_\tVERB\tVBZ\t_\t36\tcop\t_\t_\n35\ttotally\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tunacceptable\t_\tADJ\tJJ\t_\t24\tccomp\t_\t_\n37\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n38\tus\t_\tPRON\tPRP\t_\t36\tnmod\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n40\tbecause\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t44\tnsubj\t_\t_\n42\tis\t_\tVERB\tVBZ\t_\t44\tcop\t_\t_\n43\textremely\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n44\tlikely\t_\tADJ\tJJ\t_\t36\tadvcl\t_\t_\n45\tto\t_\tPART\tTO\t_\t46\tmark\t_\t_\n46\tcause\t_\tVERB\tVB\t_\t44\txcomp\t_\t_\n47\tirreparable\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tdamage\t_\tNOUN\tNN\t_\t46\tdobj\t_\t_\n49\tto\t_\tADP\tTO\t_\t53\tcase\t_\t_\n50\tthe\t_\tDET\tDT\t_\t51\tdet\t_\t_\n51\tArby\t_\tPROPN\tNNP\t_\t53\tnmod:poss\t_\t_\n52\t's\t_\tPART\tPOS\t_\t51\tcase\t_\t_\n53\tsystem\t_\tNOUN\tNN\t_\t48\tnmod\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsupport\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tall\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tefforts\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tremove\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\tVictor\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPosner\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcontrol\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tArby\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tArby\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tsystem\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tconsider\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tthings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\twithholding\t_\tVERB\tVBG\t_\t6\tccomp\t_\t_\n13\troyalty\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tpayments\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tinitiating\t_\tVERB\tVBG\t_\t12\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tclass-action\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlawsuit\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tseeking\t_\tVERB\tVBG\t_\t19\tacl\t_\t_\n21\tcourt\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tapproval\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\twithholdings\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tFlorida\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tRenee\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMottram\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tsenior\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tvice\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tDWG\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tresponded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n17\tWe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\tdo\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tthink\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n21\tany\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tindividual\t_\tNOUN\tJJ\t_\t26\tnsubj\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tgroup\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\tshould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tdisrupt\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\twinning\t_\tADJ\tVBG\t_\t29\tamod\t_\t_\n29\tsystem\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\tillegally\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tinterfere\t_\tVERB\tVB\t_\t26\tconj\t_\t_\n33\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\texisting\t_\tADJ\tVBG\t_\t36\tamod\t_\t_\n35\tcontractual\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\trelationships\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\tfor\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\ttheir\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n39\town\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n40\tself-serving\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tmotives\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tsteep\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trise\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tproducer\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tstill\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tpersists\t_\tVERB\tVBZ\t_\t8\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpessimism\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n17\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tinterest\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trates\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tcaused\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tnew\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tprice\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdata\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\tcontributed\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n27\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tstock\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tplunge\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n33\tFriday\t_\tPROPN\tNNP\t_\t32\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tfalling\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthree\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tconsecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmonths\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tproducer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tfinished\t_\tADJ\tVBN\t_\t14\tamod\t_\t_\n14\tgoods\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tshot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t0.9\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmonth\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tLabor\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\treported\t_\tVERB\tVBD\t_\t15\tparataxis\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t25\tnmod:tmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n28\tas\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tenergy\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tprices\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n31\tjumped\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n32\tafter\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n33\ttumbling\t_\tVERB\tVBG\t_\t31\tadvcl\t_\t_\n34\tthrough\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tsummer\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\treport\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\treleased\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n8\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\topened\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tdid\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\ttrigger\t_\tVERB\tVB\t_\t28\tadvcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\t190.58-point\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdrop\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tDow\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tJones\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tIndustrial\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAverage\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\tanalysts\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tdid\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n31\tplay\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\trole\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tdecline\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\timmediately\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tviewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tdata\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tgrimmest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tevidence\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tFederal\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tReserve\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n22\tunlikely\t_\tADJ\tJJ\t_\t16\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tallow\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tinterest\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\trates\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tfall\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n29\tas\t_\tSCONJ\tRB\t_\t33\tmark\t_\t_\n30\tmany\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tinvestors\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n32\thad\t_\tAUX\tVBD\t_\t33\taux\t_\t_\n33\thoped\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFurther\t_\tADV\tJJ\t_\t2\tadvmod\t_\t_\n2\tfueling\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbelief\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tWDT\t_\t11\tmark\t_\t_\n6\tpressures\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\teconomy\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\tsufficient\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tkeep\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tFed\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n16\tfrom\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\teasing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n18\tcredit\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tCommerce\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tDepartment\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n26\tretail\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tsales\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tgrew\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n29\t0.5\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t28\tdobj\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tSeptember\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n34\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n35\t$\t_\tSYM\t$\t_\t28\tnmod\t_\t_\n36\t145.21\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\tbillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trise\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttop\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t0.7\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tAugust\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tsuggested\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n16\tthere\t_\tPRON\tEX\t_\t17\texpl\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n18\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\thealthy\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tconsumer\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdemand\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\teconomy\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t33\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\treport\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tcombined\t_\tVERB\tVBN\t_\t11\tcase\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tactions\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tFed\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tweakened\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbelief\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthere\t_\tPRON\tEX\t_\t22\texpl\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n22\tgoing\t_\tVERB\tVBG\t_\t18\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n24\tbe\t_\tVERB\tVB\t_\t27\tcop\t_\t_\n25\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\timminent\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\teasing\t_\tNOUN\tNN\t_\t22\txcomp\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tmonetary\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpolicy\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tRobert\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tDederick\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tchief\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\teconomist\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n39\tat\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tNorthern\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n41\tTrust\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tCo.\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n43\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tChicago\t_\tPROPN\tNNP\t_\t42\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\teconomists\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tdivided\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n5\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\textent\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tthreat\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tsignaled\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tnumbers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t35\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\toverall\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\t0.9\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t%\t_\tSYM\tNN\t_\t6\tamod\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tserious\t_\tADJ\tJJ\t_\t35\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\titself\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t16\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n15\teven\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tworse\t_\tADJ\tJJR\t_\t17\tcsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t8\tconj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n19\texcluding\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n20\tfood\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tenergy\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tproducer\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tprice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tindex\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n28\tstill\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tincreased\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t0.7\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\t%\t_\tSYM\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t35\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tGordon\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tRichards\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tan\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\teconomist\t_\tNOUN\tNN\t_\t37\tappos\t_\t_\n41\tat\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tNational\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tAssociation\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n45\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tManufacturers\t_\tPROPN\tNNPS\t_\t44\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tSung\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tWon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSohn\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\teconomist\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tNorwest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tMinneapolis\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tblamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\trising\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n16\tenergy\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tannual\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tautumn\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tincrease\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tcar\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tmost\t_\tADJ\tJJS\t_\t14\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tSeptember\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tjump\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tsay\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n5\tthis\t_\tPRON\tDT\t_\t9\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\tbad\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tnews\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tthis\t_\tPRON\tDT\t_\t14\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tblip\t_\tNOUN\tNN\t_\t9\tparataxis\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcore\t_\tADJ\tNN\t_\t4\tamod\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n7\treally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n8\tout\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tline\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tenergy\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tskewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tproducer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tmeasures\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n15\tchanges\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tproducers\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\treceive\t_\tVERB\tVBP\t_\t18\tacl:relcl\t_\t_\n21\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tgoods\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tInflation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n2\tunquestionably\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tfallen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\ttorrid\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\twinter\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsteep\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trun-up\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tworld\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\toil\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tsent\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tindex\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tsurging\t_\tVERB\tVBG\t_\t21\tdep\t_\t_\n25\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tdouble-digit\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tannual\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\trates\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEnergy\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tthen\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tplummeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthrough\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsummer\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tcausing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdecline\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tconsecutive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tclimbed\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\t5.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t13\tamod\t_\t_\n11\tcompound\t_\tADJ\tNN\t_\t13\tamod\t_\t_\n12\tannual\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tstart\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tLabor\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDepartment\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tfar\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tmore\t_\tADV\tJJR\t_\t4\tadvmod\t_\t_\n4\trestrained\t_\tADJ\tJJ\t_\t20\tadvcl\t_\t_\n5\tthan\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpace\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbeginning\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n17\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tsteeper\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n20\trise\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n21\tthan\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\t4.0\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t%\t_\tSYM\tNN\t_\t25\tamod\t_\t_\n25\tincrease\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tall\t_\tDET\tDT\t_\t25\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tthis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgood\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinflation\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tnews\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\thave\t_\tAUX\tVB\t_\t11\taux\t_\t_\n11\tended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n16\tenergy\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tzoomed\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n19\tup\t_\tADV\tRP\t_\t18\tadvmod\t_\t_\n20\t6.5\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tplunging\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n24\t7.3\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tAugust\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\toil\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tremain\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\trelatively\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tstable\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tahead\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tleaving\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfuture\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tpace\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinflation\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tuncertain\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tclimb\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\toil\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n12\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tlead\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsubstantial\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\trise\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tproducer\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tprice\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tindex\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\t0.9\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tamod\t_\t_\n28\tclimb\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t30\tcop\t_\t_\n30\thigher\t_\tADJ\tJJR\t_\t3\tconj\t_\t_\n31\tthan\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tmost\t_\tADJ\tJJS\t_\t33\tnsubj\t_\t_\n33\tanticipated\t_\tVERB\tVBN\t_\t30\tccomp\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t20\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tresurgence\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\t-LCB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tinflation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t-RCB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tgoing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcontinue\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tfew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tJohn\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tMueller\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tchief\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\teconomist\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tBell\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tMueller\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCannon\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\tWashington\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n33\teconomic\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tforecasting\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tfirm\t_\tNOUN\tNN\t_\t29\tappos\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpredicted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tDET\tIN\t_\t4\tdet\t_\t_\n4\tinflation\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tmoderate\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tnext\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaying\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tcredit\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tconditions\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n15\tfairly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\ttight\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n17\tworld-wide\t_\tADV\tJJ\t_\t16\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tDirk\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDongen\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tNational\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAssociation\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tWholesaler-Distributors\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\trise\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n22\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n23\tas\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n24\tbad\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tomen\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n28\tas\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\t0.9\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t32\tamod\t_\t_\n32\tfigure\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n33\tsuggests\t_\tVERB\tVBZ\t_\t26\tacl:relcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texamine\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdata\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tcarefully\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tincrease\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\tauxpass\t_\t_\n12\tconcentrated\t_\tVERB\tVBN\t_\t37\tccomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tenergy\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tmotor\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tvehicle\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\trather\t_\tADV\tRB\t_\t25\tmark\t_\t_\n21\tthan\t_\tSCONJ\tIN\t_\t20\tmwe\t_\t_\n22\tbeing\t_\tVERB\tVBG\t_\t25\tcop\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tbroad-based\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tadvance\t_\tNOUN\tNN\t_\t18\tacl\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tprices\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tconsumer\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tindustrial\t_\tADJ\tJJ\t_\t30\tconj\t_\t_\n33\tgoods\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n35\t''\t_\tPUNCT\t''\t_\t37\tpunct\t_\t_\n36\the\t_\tPRON\tPRP\t_\t37\tnsubj\t_\t_\n37\texplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n\n1\tPassenger\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tcar\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t3.8\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tafter\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tclimbing\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\t0.5\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tdeclining\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlate\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tspring\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tsummer\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tSeptember\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tone-time\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tevent\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tcoming\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tdealers\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tintroduced\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\t1990\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmodels\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tall\t_\tDET\tPDT\t_\t5\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tprice\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tdata\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tadjusted\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnormal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tseasonal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfluctuations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tcar\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tprices\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tbeyond\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tcustomary\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tautumn\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tincrease\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcapital\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tequipment\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\thefty\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\t1.1\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\twhile\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n14\tprices\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\thome\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\telectronic\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tequipment\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tfell\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n20\t1.1\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFood\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t0.6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tafter\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tclimbing\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n9\t0.3\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tAugust\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tretail\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tsales\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\treport\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tcar\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\trose\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n12\t0.8\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tSeptember\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n18\t32.82\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tleast\t_\tADJ\tJJS\t_\t4\tadvmod\t_\t_\n4\tpart\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tincrease\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\thave\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\tcome\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\thigher\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\tanalysts\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tgeneral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tmerchandise\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tstores\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t1.7\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tafter\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tdeclining\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n11\t0.6\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\twhile\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tbuilding\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmaterials\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tfell\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n22\t1.8\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n24\tafter\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\trising\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n26\t1.7\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t25\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tProducer\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tintermediate\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgoods\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t0.4\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tSeptember\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tafter\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tdropping\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tconsecutive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcrude\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tgoods\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tarray\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\traw\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmaterials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t1.1\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n15\tafter\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tdeclining\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n17\t1.9\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tAugust\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n22\tedging\t_\tVERB\tVBG\t_\t16\tconj\t_\t_\n23\tup\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\t0.2\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t22\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tJuly\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tLabor\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tDepartment\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tproducer\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tprice\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tindexes\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n11\t1982\t_\tNUM\tCD\t_\t13\tnsubj\t_\t_\n12\t=\t_\tSYM\tJJ\t_\t13\tdep\t_\t_\n13\t100\t_\tNUM\tCD\t_\t9\tdep\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tSeptember\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tbefore\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tseasonal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tadjustment\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpercentage\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchanges\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tSeptember\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tFinancial\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\texpects\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tloss\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t18\tnmod:npmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n15\t125\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tdep\t_\t_\n18\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n19\t150\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tthird\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tperiod\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tCityFed\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t485,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tno\t_\tDET\tDT\t_\t17\tneg\t_\t_\n16\tper-share\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\texecutive\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tofficer\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tJohn\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAtherton\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tloss\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tstems\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tseveral\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tfactors\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tnonperforming\t_\tADJ\tVBG\t_\t4\tamod\t_\t_\n4\tassets\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n7\tslightly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t10\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n11\t700\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n15\t516\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tJune\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tSeptember\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tApproximately\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t85\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttotal\t_\tNOUN\tJJ\t_\t3\tnmod\t_\t_\n7\tconsisted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tnonperforming\t_\tADJ\tVBG\t_\t13\tamod\t_\t_\n10\tcommercial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\treal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\testate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tassets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAccordingly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tCityFed\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\testimated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tprovide\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\tbetween\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n11\t85\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t10\tconj\t_\t_\n15\t110\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tcredit\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n4\tsignificant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tadditional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tloan-loss\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n7\tprovisions\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n10\trequired\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tfederal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tregulators\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tcurrent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tannual\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\texamination\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tCity\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tFederal\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tSavings\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBank\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tCityFed\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tprimary\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tsubsidiary\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n32\tbased\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tSomerset\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tN.J\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\toperates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t105\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tbanking\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toffices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tJersey\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tFlorida\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAtherton\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCityFed\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\talso\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tmark\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tportfolio\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\thigh-yield\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tcorporate\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbonds\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tresult\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfederal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tlegislation\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\trequiring\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tsavings\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tinstitutions\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tdivest\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n27\tthemselves\t_\tPRON\tPRP\t_\t26\tdobj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tsuch\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tbonds\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taction\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tCityFed\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tresult\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcharge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tagainst\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthird-quarter\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tresults\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tapproximately\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n18\t30\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tshed\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n9\tremaining\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n10\tmortgage\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tloan\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\torigination\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\toperations\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n14\toutside\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tprincipal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarkets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tJersey\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tFlorida\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n25\tas\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tresult\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\tis\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\ttaking\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcharge\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tdiscontinued\t_\tADJ\tVBN\t_\t35\tamod\t_\t_\n35\toperations\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAll\t_\tDET\tPDT\t_\t3\tdet:predet\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tactions\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAtherton\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tresult\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t125\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n19\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n20\t150\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tthird\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tquarter\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t51\tpunct\t_\t_\n7\tDepending\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tresolution\t_\tNOUN\tNN\t_\t51\tadvcl\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tcertain\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\taccounting\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\trelating\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tmortgages\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tservicing\t_\tNOUN\tVBG\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\toutcome\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tannual\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\texamination\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tCity\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tFederal\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\tcurrently\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tprogress\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\twith\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\trespect\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n34\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tappropriate\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tlevel\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tloan\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n40\tloss\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\treserves\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t51\tpunct\t_\t_\n43\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n44\ttotal\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tloss\t_\tNOUN\tNN\t_\t51\tnsubj\t_\t_\n46\tfor\t_\tADP\tIN\t_\t48\tcase\t_\t_\n47\tthe\t_\tDET\tDT\t_\t48\tdet\t_\t_\n48\tquarter\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n49\tcould\t_\tAUX\tMD\t_\t51\taux\t_\t_\n50\tsignificantly\t_\tADV\tRB\t_\t51\tadvmod\t_\t_\n51\texceed\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n52\tthis\t_\tDET\tDT\t_\t53\tdet\t_\t_\n53\trange\t_\tNOUN\tNN\t_\t51\tdobj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSavings\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBank\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tthrift\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tregulators\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tordered\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsuspend\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n12\tdividend\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpayments\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\ttwo\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tclasses\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tpreferred\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tindicating\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n24\tregulators\t_\tNOUN\tNNS\t_\t26\tnmod:poss\t_\t_\n25\t'\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tconcerns\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n27\tabout\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\ttroubled\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tinstitution\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\thave\t_\tAUX\tVBP\t_\t32\taux\t_\t_\n32\theightened\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstatement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMiami-based\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tCenTrust\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tregulators\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tcited\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tthrift\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\toperating\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlosses\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tapparent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tjunk-bond\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tportfolio\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\tin\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tordering\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsuspension\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdividends\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRegulators\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCenTrust\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tstop\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tbuying\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n8\tback\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tpreferred\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDavid\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tL.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPaul\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tchief\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\texecutive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficer\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tcriticized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tOffice\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tThrift\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSupervision\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n20\tissued\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tdirective\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n24\tsaying\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n26\twas\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n28\tinappropriate\t_\tADJ\tJJ\t_\t24\tccomp\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n31\tbased\t_\tVERB\tVBN\t_\t36\tcase\t_\t_\n32\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n34\tinsufficient\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\t''\t_\tPUNCT\t''\t_\t36\tpunct\t_\t_\n36\treasons\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tthrift\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\ttry\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tregulators\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\treverse\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdecision\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsuspension\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpreferred\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tdividend\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tserious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstep\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tsignals\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tregulators\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\thave\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n17\tdeep\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tconcerns\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tabout\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tinstitution\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\thealth\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tMarch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tregulators\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tlabeled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\ttroubled\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinstitution\t_\tNOUN\tNN\t_\t5\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n13\tlargely\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n14\tbecause\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tjunk-bond\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tholdings\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\toperating\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlosses\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tOffice\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tThrift\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSupervision\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tinstitution\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tstop\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n16\tpaying\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n17\tcommon\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tdividends\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tuntil\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\toperations\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\ttrack\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\tended\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tJune\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\t30\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t21.3\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n20\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tnet\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tincome\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t52.8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n5\tFlorida\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tlargest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tthrift\t_\tNOUN\tNN\t_\t1\tacl:relcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tlargest\t_\tADJ\tJJS\t_\t16\tamod\t_\t_\n15\tjunk-bond\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tportfolios\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tthrift\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tnation\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tApril\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tpared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\thigh-yield\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tbond\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tholdings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n14\t890\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n18\t1.35\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tonly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t15\tnsubj\t_\t_\n7\t150\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tholdings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\ttradeable\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsecurities\t_\tNOUN\tNNS\t_\t3\tccomp\t_\t_\n16\tregistered\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tSecurities\t_\tPROPN\tNNPS\t_\t22\tcompound\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tExchange\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\tCommission\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tremainder\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tcommercial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tloan\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tparticipations\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tprivate\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tplacements\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t19\tnsubjpass\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tfiled\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tSEC\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tdo\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\thave\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tready\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tregulators\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tdispute\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tover\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tvaluations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tjunk\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbonds\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tOffice\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tThrift\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSupervision\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\taux\t_\t_\n8\thounding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tprovide\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n12\tcurrent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tvalues\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tholdings\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\tCenTrust\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n24\tca\t_\tAUX\tMD\t_\t27\taux\t_\t_\n25\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n26\teasily\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tobtain\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n28\tsuch\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tvalues\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tof\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\trelative\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tilliquidity\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tbonds\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n39\tlack\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n40\tof\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tready\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tmarket\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tRegulators\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tincreasingly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tantsy\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n7\tCenTrust\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tthrifts\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tjunk-bond\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tholdings\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlight\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n20\tfederal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tthrift\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tbailout\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlegislation\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tdeep\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdecline\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tjunk-bond\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlegislation\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthrifts\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdivest\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tthemselves\t_\tPRON\tPRP\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tjunk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tsomber\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tregulatory\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tclimate\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tcomposite\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tcommon\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t3\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n18\t12.5\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tcents\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstatement\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tPaul\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tchallenged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tregulators\t_\tNOUN\tNNS\t_\t12\tnmod:poss\t_\t_\n11\t'\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tdecision\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tsaying\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tthrift\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\toperating\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n22\tapparent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\tjunk-bond\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tlosses\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n27\thave\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n28\tbeen\t_\tAUX\tVBN\t_\t30\tauxpass\t_\t_\n29\tsubstantially\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\toffset\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n31\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tgains\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tother\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tactivities\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tbank\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsubstantial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\treserves\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tset\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\taside\t_\tADP\tRB\t_\t8\tcompound:prt\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tpossible\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlosses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tjunk\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbonds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tinstance\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n12\t22.5\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tgeneral\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\treserves\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tregulators\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tshould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tinstead\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmove\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tahead\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\twith\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tapproving\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n12\tCenTrust\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\trequest\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tsell\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\t63\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\t71\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbranches\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\tGreat\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tWestern\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBank\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tunit\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tGreat\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tWestern\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tFinancial\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n34\tbased\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n35\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tBeverly\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tHills\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tCalif\t_\tPROPN\tNNP\t_\t37\tappos\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbranch\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tsale\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcenterpiece\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tstrategy\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttransform\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\titself\t_\tPRON\tPRP\t_\t12\tdobj\t_\t_\n14\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttraditional\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tS&L\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\thigh-flying\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tinstitution\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\trelied\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n24\theavily\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tsecurities\t_\tNOUN\tNNS\t_\t27\tcompound\t_\t_\n27\ttrading\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tprofits\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n31\taccording\t_\tVERB\tVBG\t_\t34\tcase\t_\t_\n32\tto\t_\tADP\tTO\t_\t31\tmwe\t_\t_\n33\tMr.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tPaul\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tthrift\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdecision\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tproposed\t_\tADJ\tVBN\t_\t13\tamod\t_\t_\n13\ttransaction\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t17\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tannounced\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tJuly\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tlong\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\tbefore\t_\tADP\tRB\t_\t23\tcase\t_\t_\n23\tnow\t_\tADV\tRB\t_\t7\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tnsubj\t_\t_\n2\tinterpret\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdelay\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tindication\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tWDT\t_\t11\tmark\t_\t_\n9\tregulators\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\tskeptical\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n12\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproposal\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBranches\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tdeposits\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpremium\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tevent\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tregulators\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\ttake\t_\tVERB\tVBP\t_\t12\tccomp\t_\t_\n16\tover\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tinstitution\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\ttouts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbranch\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsale\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tsaying\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbring\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n14\tin\t_\tADP\tIN\t_\t13\tadvmod\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tdobj\t_\t_\n16\t150\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\treduce\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tthrift\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tassets\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n26\t6.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tbillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n30\t9\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tbillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsale\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tgive\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t6\tiobj\t_\t_\n8\tpositive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\ttangible\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcapital\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t82\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\t1.2\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tassets\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tnegative\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n27\t33\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tas\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tSept.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n32\t30\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n34\tthus\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tbringing\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n36\tCenTrust\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n37\tclose\t_\tADV\tVB\t_\t35\txcomp\t_\t_\n38\tto\t_\tADP\tTO\t_\t40\tcase\t_\t_\n39\tregulatory\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tstandards\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tbranch\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\treduce\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tamount\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tgood\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\twill\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n20\t180\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCritics\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbranch\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsale\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tCenTrust\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\tdependent\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n14\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tever\t_\tADV\tRB\t_\t13\tadvcl\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbrokered\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdeposits\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tjunk\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tbonds\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcounters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tintends\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\tfurther\t_\tADV\tJJ\t_\t9\tadvmod\t_\t_\n9\tpare\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsize\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tCenTrust\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\tby\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n16\trenewing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n17\tmore\t_\tADJ\tJJR\t_\t19\tadvmod\t_\t_\n18\tthan\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n20\t1\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tbrokered\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcertificates\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tdeposit\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\twhen\t_\tADV\tWRB\t_\t29\tadvmod\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\tcome\t_\tVERB\tVBP\t_\t16\tadvcl\t_\t_\n30\tdue\t_\tADJ\tRB\t_\t29\txcomp\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tthrift\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tworking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tunload\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tjunk-bond\t_\tADJ\tNN\t_\t10\tamod\t_\t_\n10\tportfolio\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tby\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tcontinuing\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsell\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\toff\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbonds\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tplans\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n23\teventually\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tplace\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n25\tsome\t_\tDET\tDT\t_\t24\tdobj\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tthem\t_\tPRON\tPRP\t_\t25\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tseparate\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\taffiliate\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n33\tas\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n34\trequired\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n35\tunder\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\tnew\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tthrift\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tlaw\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\trecent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tSaturday\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tnight\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmidst\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n11\tWest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tGermany\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tmost\t_\tADJ\tRBS\t_\t15\tdep\t_\t_\n15\tpopular\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tprime-time\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tshow\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcontestant\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tbet\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\thost\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tshe\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tname\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n28\tany\t_\tDET\tDT\t_\t27\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\t100\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n31\tdifferent\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcheeses\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tafter\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tjust\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n35\tone\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tnibble\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n38\twhile\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n39\tblindfolded\t_\tADJ\tVBN\t_\t27\tadvcl\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twoman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbet\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n2\tperhaps\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\teven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n5\tremarkable\t_\tADJ\tJJ\t_\t21\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tthree-hour-show\t_\tNOUN\tJJ\t_\t21\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tWetten\t_\tX\tNNP\t_\t12\tcompound\t_\t_\n12\tDass\t_\tX\tNNP\t_\t8\tappos\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n15\tMake\t_\tPROPN\tVB\t_\t17\tdep\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tBet\t_\tPROPN\tNN\t_\t12\tdep\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\tregularly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\twins\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\ttop\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tslot\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tcountry\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tTV\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tratings\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n32\tsometimes\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tdrawing\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n34\tas\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n35\tmany\t_\tADJ\tJJ\t_\t37\tadvmod\t_\t_\n36\tas\t_\tADP\tIN\t_\t37\tadvmod\t_\t_\n37\t50\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\t%\t_\tSYM\tNN\t_\t33\tdobj\t_\t_\n39\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tWest\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tGerman\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\thouseholds\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1992\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\teconomic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tintegration\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tapproaches\t_\tNOUN\tNNS\t_\t13\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tEurope\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tcultural\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcurators\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tramparts\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tagainst\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tAmerican\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tcultural\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\timperialism\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n24\tthreatening\t_\tVERB\tVBG\t_\t13\txcomp\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\timpose\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tquotas\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\tagainst\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tsuch\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tpop\t_\tADJ\tNN\t_\t31\tamod\t_\t_\n31\tinvaders\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n32\tas\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n34\tDallas\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n37\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n38\tMiami\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tVice\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n42\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n43\tL.A.\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tLaw\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tmuch\t_\tADJ\tRB\t_\t10\tnsubj\t_\t_\n3\tof\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t7\tdobj\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tEuropeans\t_\tPROPN\tNNPS\t_\t7\tnsubj\t_\t_\n7\twant\t_\tVERB\tVBP\t_\t2\tacl\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tprotect\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tevery\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tbit\t_\tNOUN\tNN\t_\t14\tdep\t_\t_\n13\tas\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n14\tcheesy\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\twhat\t_\tPRON\tWP\t_\t21\tdobj\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\ttrying\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tkeep\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tout\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tmilitant\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\topposition\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\tAmerican\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tTV\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\timports\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tcome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tFrench\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttelevision\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmovie\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tproducers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\twho\t_\tPRON\tWP\t_\t20\tnsubj\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tdemanded\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n21\tquotas\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tensuring\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tfull\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\t60\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t34\tnsubjpass\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tEurope\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tTV\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tshows\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\tbe\t_\tAUX\tVB\t_\t34\tauxpass\t_\t_\n34\tproduced\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tEurope\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tfar\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tFrench\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tfailed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\twin\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tenough\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tbroad-based\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tsupport\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tprevail\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tglance\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n3\tthrough\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\ttelevision\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tlistings\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttwists\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tEuropean\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\ttelevision\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdial\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tsuggest\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\treason\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\twhy\t_\tADV\tWRB\t_\t18\tdep\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n4\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpopular\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taction\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tdrama\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tseries\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tfew\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n12\tboast\t_\tVERB\tNN\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\thigh\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tculture\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tclassy\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tproduction\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n19\tvalues\t_\tVERB\tNNS\t_\t18\tdep\t_\t_\n20\tone\t_\tPRON\tNN\t_\t22\tnsubj\t_\t_\n21\tmight\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\texpect\t_\tVERB\tVB\t_\t15\tacl:relcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tRBR\t_\t4\tamod\t_\t_\n2\tEuropean\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tair\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tfilled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tlow-budget\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tgame\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tshows\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tvariety\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\thours\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tmovies\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\ttalk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tshows\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tmany\t_\tADJ\tJJ\t_\t25\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n23\tare\t_\tVERB\tVBP\t_\t25\tcop\t_\t_\n24\tauthorized\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n25\tknock-offs\t_\tADJ\tNNS\t_\t10\tacl:relcl\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tAmerican\t_\tPROPN\tJJ\t_\t29\tcompound\t_\t_\n29\tcounterparts\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t10\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n3\tFrance\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmost\t_\tADV\tRBS\t_\t6\tadvmod\t_\t_\n6\tpopular\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tSaturday\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tnight\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprograms\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n10\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tsemi-celebrities\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tseeking\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tout\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tgrammar-school\t_\tNOUN\tJJ\t_\t16\tcompound\t_\t_\n16\tclassmates\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ton-air\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\treunions\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tFlemish\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tgame\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tshow\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tas\t_\tADV\tIN\t_\t8\tadvmod\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\thost\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tBelgian\t_\tPROPN\tJJ\t_\t5\tdobj\t_\t_\n11\tpretending\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n14\tItalian\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t19\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tItaly\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfavorite\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tshows\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n9\tFantastico\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\ttepid\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tvariety\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tshow\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tso\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tpopular\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tviewers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tclamored\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tbuy\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tchocolate\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tproduct\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n30\tCacao\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tFantastico\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n34\twhose\t_\tPRON\tWP$\t_\t35\tnmod:poss\t_\t_\n35\tpraises\t_\tNOUN\tVBZ\t_\t37\tnsubjpass\t_\t_\n36\twere\t_\tAUX\tVBD\t_\t37\tauxpass\t_\t_\n37\tsung\t_\tVERB\tVBN\t_\t27\tacl:relcl\t_\t_\n38\teach\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tweek\t_\tNOUN\tNN\t_\t37\tnmod:tmod\t_\t_\n40\tby\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tdancing\t_\tVERB\tVBG\t_\t42\tamod\t_\t_\n42\tshowgirls\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n43\t--\t_\tPUNCT\t:\t_\t22\tpunct\t_\t_\n44\teven\t_\tADV\tRB\t_\t50\tadvmod\t_\t_\n45\tthough\t_\tSCONJ\tIN\t_\t50\tmark\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tproduct\t_\tNOUN\tNN\t_\t50\tnsubj\t_\t_\n48\tdid\t_\tAUX\tVBD\t_\t50\taux\t_\t_\n49\tn't\t_\tPART\tRB\t_\t50\tneg\t_\t_\n50\texist\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tTopping\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcheese\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tstunt\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tanother\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttypical\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tevening\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tfun\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tWetten\t_\tX\tNNP\t_\t15\tcompound\t_\t_\n15\tDass\t_\tX\tNNP\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcontestant\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tbet\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tshow\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\thost\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tThomas\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tGottschalk\t_\tPROPN\tNNP\t_\t27\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\tcould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tidentify\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n36\t300\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n37\tGerman\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tdialects\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n39\tover\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\ttelephone\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcelebrity\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tguest\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n6\tAmbassador\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tGermany\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tRichard\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tBurt\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\talso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbet\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tsomeone\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tpile\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n21\tup\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n23\t150\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tworth\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tquarters\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tslanted\t_\tADJ\tVBN\t_\t30\tamod\t_\t_\n30\tcoin\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBurt\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tnonetheless\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpenalty\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tif\t_\tSCONJ\tIN\t_\t7\tmwe\t_\t_\n9\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tlost\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tagreeing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tspend\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tday\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n19\tWest\t_\tPROPN\tJJ\t_\t24\tcompound\t_\t_\n20\tGerman\t_\tPROPN\tJJ\t_\t24\tcompound\t_\t_\n21\tForeign\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tMinister\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tHans-Dietrich\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tGenscher\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n25\tfrying\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tselling\t_\tVERB\tVBG\t_\t25\tconj\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tcombined\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tweight\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tpotato\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tpancakes\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n4\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tpretty\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tweak\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstuff\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\taround\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t11\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\traise\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tprotectionist\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbarriers\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\tmay\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tbe\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tbecause\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthese\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshows\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tneed\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n23\tall\t_\tDET\tPDT\t_\t25\tdet:predet\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tprotection\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n27\tcan\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tget\t_\tVERB\tVB\t_\t25\tacl:relcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tEuropean\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tprograms\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tusually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\ttarget\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n7\town\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tlocal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taudience\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\toften\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n13\tonly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tportion\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tthat\t_\tPRON\tDT\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMega-hits\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tGermany\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tItaly\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\trarely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tmake\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\teven\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tFrance\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tGreat\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBritain\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n17\talmost\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tnever\t_\tADV\tRB\t_\t19\tneg\t_\t_\n19\tshow\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n20\tup\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tscreens\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAttempts\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n2\tto\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\tproduce\t_\tVERB\tVB\t_\t1\tacl\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n5\tpan-European\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\tprograms\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tgenerally\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tresulted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdisappointment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tannual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tco-production\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tthree-hour-long\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tEurovision\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSong\t_\tPROPN\tNN\t_\t10\tcompound\t_\t_\n10\tContest\t_\tPROPN\tNN\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n13\tfeaturing\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n14\tsoft-rock\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsongs\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\teach\t_\tDET\tDT\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t20\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tEuropean\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcountries\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tdescribed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tas\t_\tADP\tIN\t_\t33\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tworld\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n29\t's\t_\tVERB\tPOS\t_\t28\tcase\t_\t_\n30\tmost\t_\tADV\tRBS\t_\t31\tadvmod\t_\t_\n31\tboring\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tTV\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tshow\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t25\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n4\tJeux\t_\tX\tNNP\t_\t6\tcompound\t_\t_\n5\tSans\t_\tX\tNNP\t_\t6\tcompound\t_\t_\n6\tFrontieres\t_\tX\tNNP\t_\t1\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n9\twhere\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n10\tvillagers\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tassorted\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tEuropean\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcountries\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tmake\t_\tVERB\tVBP\t_\t1\tacl:relcl\t_\t_\n16\tfools\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tthemselves\t_\tPRON\tPRP\t_\t15\tnmod\t_\t_\n19\tperforming\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n20\tpointless\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttasks\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\thit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tFrance\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tU.S.-made\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\timitation\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tunder\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttitle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n8\tAlmost\t_\tPROPN\tRB\t_\t9\tcompound\t_\t_\n9\tAnything\t_\tPROPN\tNN\t_\t10\tnsubj\t_\t_\n10\tGoes\t_\tPROPN\tVBZ\t_\t6\tdep\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n12\tflopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tfast\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\twhat\t_\tPRON\tWP\t_\t8\tnsubjpass\t_\t_\n7\t's\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tmade\t_\tVERB\tVBN\t_\t10\tcsubj\t_\t_\n9\there\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tstays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\there\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tgood\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\treason\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcream\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBritish\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcrop\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tliterary\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdramas\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubjpass\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\tauxpass\t_\t_\n13\tshown\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tpublic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttelevision\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tMasterpiece\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tTheater\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n24\tmake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n25\tup\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\trelatively\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tsmall\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tpart\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tBritish\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tair\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\ttime\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n2\tBritish\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprogramming\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tacquired\t_\tADJ\tVBN\t_\t9\tamod\t_\t_\n9\ttaste\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tinstance\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n8\tOne\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tMan\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tHis\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tDog\t_\tPROPN\tNN\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\therding\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcontest\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n18\tamong\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsheep\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tdogs\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\triveting\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tBritish\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\thours\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tdart-throwing\t_\tNOUN\tJJ\t_\t10\tcompound\t_\t_\n10\tchampionships\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\teven\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tmore\t_\tADJ\tRBR\t_\t14\tamod\t_\t_\n14\thours\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tlawn\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tbowling\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcontests\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tstill\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tmore\t_\tADJ\tRBR\t_\t22\tamod\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tsnooker\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmarathons\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tEuropean\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tdrama\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\thad\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tbetter\t_\tADJ\tRB\t_\t11\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tstill\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tmixed\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tfortunes\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tpopular\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tshows\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tfocus\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tnarrow\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnational\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tconcerns\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tknock-off\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tDallas\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n9\tcalled\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n11\tChateauvallon\t_\tPROPN\tNNP\t_\t9\txcomp\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tset\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tFrench\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tvineyard\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tgood\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\trun\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFrance\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\tended\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n29\tafter\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tfemale\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tlead\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n33\twas\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n34\tinjured\t_\tVERB\tVBN\t_\t28\tadvcl\t_\t_\n35\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\treal-life\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tauto\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\taccident\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n2\tSchwarzwaldklinik\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n6\tBlack\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tForest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tClinic\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tkind\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n13\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tGerman\t_\tPROPN\tJJ\t_\t18\tdep\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n16\tSt\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n18\tElsewhere\t_\tPROPN\tRB\t_\t12\tnmod\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n20\tset\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\thealth\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tspa\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n27\tpopular\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tGermany\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n32\thas\t_\tAUX\tVBZ\t_\t33\taux\t_\t_\n33\tspread\t_\tVERB\tVBN\t_\t27\tconj\t_\t_\n34\tinto\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tFrance\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tItaly\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmost\t_\tADV\tRBS\t_\t4\tadvmod\t_\t_\n4\tpopular\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tseries\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tdrama\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tcalled\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tLa\t_\tX\tNNP\t_\t12\tcompound\t_\t_\n12\tPiovra\t_\tX\tNNP\t_\t9\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n17\tThe\t_\tPROPN\tDT\t_\t18\tcompound\t_\t_\n18\tOctopus\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tchronicles\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tfight\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tan\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tidealistic\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tyoung\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tinvestigator\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tPalermo\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\tagainst\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tMafia\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tfront-page\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tItaly\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tearlier\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfictional\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinspector\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\tauxpass\t_\t_\n15\tgunned\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n16\tdown\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tseries\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSpain\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmost\t_\tADV\tRBS\t_\t4\tadvmod\t_\t_\n4\tpopular\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmini-series\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tJuncal\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstory\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\taging\t_\tVERB\tNN\t_\t18\tamod\t_\t_\n18\tbullfighter\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttrend\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n5\tpretty\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\twell\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\testablished\t_\tVERB\tVBN\t_\t23\tccomp\t_\t_\n8\tnow\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tlocal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tprograms\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmost\t_\tADV\tRBS\t_\t15\tadvmod\t_\t_\n15\tpopular\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twith\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tAmerican\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprograms\t_\tNOUN\tNNS\t_\t20\tdep\t_\t_\n20\tsecond\t_\tADJ\tJJ\t_\t15\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tBrian\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWenham\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tformer\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tdirector\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tprograms\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tBritish\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tBroadcasting\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tCorp\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tGiven\t_\tVERB\tVBN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tchoice\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\teverybody\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\twatch\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\thome-produced\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshow\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tfrequently\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n6\tmuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tchoice\t_\tADJ\tNN\t_\t4\tnsubj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tEurope\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tbegun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcrusade\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tproduce\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tmore\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n12\tworthy\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshows\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\town\t_\tADJ\tJJ\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t13\tappos\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tbroader\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tappeal\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbasically\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tgot\t_\tVERB\tVBN\t_\t28\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tstart\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tscratch\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttrain\t_\tVERB\tVB\t_\t7\tdep\t_\t_\n13\twriters\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tproducers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tmake\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n18\tshows\t_\tVERB\tNNS\t_\t17\tdobj\t_\t_\n19\tthat\t_\tADP\tIN\t_\t23\tdobj\t_\t_\n20\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpeople\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n22\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\twant\t_\tVERB\tVB\t_\t18\tacl:relcl\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsee\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tconcedes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\tColin\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tYoung\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\thead\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n33\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n34\tBritain\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tNational\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tFilm\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tTheatre\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tSchool\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tsome\t_\tDET\tDT\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tcontend\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n7\tthat\t_\tDET\tIN\t_\t11\tmark\t_\t_\n8\tadvertising\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbane\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttelevision\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\there\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tmany\t_\tADJ\tJJ\t_\t17\tnsubj\t_\t_\n17\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n18\tthat\t_\tDET\tIN\t_\t21\tmark\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tabsence\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tblame\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tEuropean\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tTV\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tindustry\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tsluggish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tdevelopment\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\trecently\t_\tADV\tRB\t_\t8\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tnational\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgovernments\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tEurope\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tcontrolled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tmost\t_\tADJ\tJJS\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tair\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tallowed\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n16\tlittle\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tno\t_\tDET\tDT\t_\t16\tconj\t_\t_\n19\tadvertising\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tSince\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tproduction\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcosts\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tguaranteed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tmatter\t_\tNOUN\tVB\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprogram\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tsold\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n18\tabroad\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tput\t_\tVERB\tVB\t_\t17\tconj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tsyndication\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n25\tmost\t_\tADJ\tJJS\t_\t27\tamod\t_\t_\n26\tAmerican\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tprograms\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tare\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tnot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n3\tmuch\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmoney\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tspent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tshows\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\teither\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsituation\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\tencouraged\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n17\tcheap-to-make\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttalk\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tgame\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tshows\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\twhile\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n24\tdiscouraging\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n25\texpensive-to-produce\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdramas\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tcommercial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tchannels\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tcoming\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n10\tmost\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n11\tEuropean\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcountries\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsame\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n20\tsatellite\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tcable\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n23\ttechnology\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n25\tspreading\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n26\trapidly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tGreece\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tauthorized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tcommercial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tchannels\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfirst\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n15\tSpain\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\tearlier\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n17\tbegan\t_\tVERB\tVBD\t_\t6\tparataxis\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tallow\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tcommercial\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttelevision\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\talongside\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tstate\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchannels\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresult\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\thuge\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n8\tappetite\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tprogramming\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tperhaps\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tconsternation\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthose\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\tcalling\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tquotas\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n12\tmost\t_\tADJ\tJJS\t_\t17\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tvoid\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\tfilled\t_\tVERB\tVBN\t_\t17\txcomp\t_\t_\n21\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n23\tcheapest\t_\tADJ\tJJS\t_\t27\tamod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tmost\t_\tADV\tRBS\t_\t26\tadvmod\t_\t_\n26\tplentiful\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n27\tprogramming\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\tnow\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tavailable\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n30\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n31\treruns\t_\tNOUN\tNNS\t_\t27\tdep\t_\t_\n32\t--\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n33\tusually\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tshows\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n36\tmade\t_\tVERB\tVBN\t_\t35\tacl\t_\t_\n37\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tU.S.\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tSky\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChannel\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBritish-based\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tventure\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tAustralian-American\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n9\tpress\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n10\ttycoon\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tRupert\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMurdoch\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\twhat\t_\tPRON\tWP\t_\t21\tnsubj\t_\t_\n16\tmust\t_\tAUX\tMD\t_\t21\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t21\tcop\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tbaffling\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tcultural\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmix\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tmost\t_\tADJ\tJJS\t_\t21\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\taudience\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tfinancially\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tstruggling\t_\tVERB\tVBG\t_\t4\tamod\t_\t_\n4\tstation\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tprograms\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tobviously\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmade\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n9\tavailable\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\tcheaply\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tboss\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tventures\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tMadrid\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\thotel\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\troom\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\trecently\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tviewer\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tcaught\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tend\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tbadly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tacted\t_\tVERB\tVBN\t_\t17\tamod\t_\t_\n17\tseries\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfishing\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tboat\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\tAustralia\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tGreat\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tBarrier\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tReef\t_\tPROPN\tNN\t_\t21\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n29\tonly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\turged\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tBritish\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tannouncer\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t39\tpunct\t_\t_\n39\tstay\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n40\ttuned\t_\tVERB\tVBN\t_\t39\tdep\t_\t_\n41\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tfurther\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tadventures\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n45\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\tSkippy\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n47\tthe\t_\tDET\tDT\t_\t48\tdet\t_\t_\n48\tKangaroo\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n50\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tLisa\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGrishaw-Mueller\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tBonn\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tLaura\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tColby\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tMilan\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tTim\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCarrington\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tLondon\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n16\tCarlta\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tVitzhum\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tMadrid\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tarticle\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tBritish\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAerospace\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPLC\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tFrance\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tThomson-CSF\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tS.A.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tnearing\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tagreement\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tmerge\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tguided-missile\t_\tNOUN\tJJ\t_\t19\tcompound\t_\t_\n19\tdivisions\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tgreatly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\texpanding\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n23\tcollaboration\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tbetween\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n27\tdefense\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcontractors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t50-50\t_\tADJ\tCD\t_\t4\tamod\t_\t_\n3\tjoint\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tventure\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t9\tnsubjpass\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t9\tauxpass\t_\t_\n9\tdubbed\t_\tVERB\tVBN\t_\t4\tacl:relcl\t_\t_\n10\tEurodynamics\t_\tPROPN\tNNS\t_\t9\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tcombined\t_\tADJ\tVBN\t_\t16\tamod\t_\t_\n15\tannual\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tleast\t_\tADJ\tJJS\t_\t22\tnmod:npmod\t_\t_\n20\t#\t_\tSYM\t#\t_\t22\tcompound\t_\t_\n21\t1.4\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n23\t-LRB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tdep\t_\t_\n25\t2.17\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n29\twould\t_\tAUX\tMD\t_\t37\taux\t_\t_\n30\tbe\t_\tVERB\tVB\t_\t37\tcop\t_\t_\n31\tamong\t_\tADP\tIN\t_\t37\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tworld\t_\tNOUN\tNN\t_\t37\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tlargest\t_\tADJ\tJJS\t_\t37\tamod\t_\t_\n36\tmissile\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tmakers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttalks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tplans\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tventure\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tsufficiently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tadvanced\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompanies\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tseek\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n19\tFrench\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tBritish\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tgovernment\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tclearance\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfinal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tyear-end\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tventure\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tstrengthen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\trapidly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tgrowing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tties\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n15\thelp\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n16\tmake\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n17\tthem\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tleading\t_\tADJ\tVBG\t_\t20\tamod\t_\t_\n20\tforce\t_\tNOUN\tNN\t_\t16\txcomp\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tEuropean\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tdefense\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcontracting\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tstring\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tcross-border\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmergers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tjoint\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tventures\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\treshaped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tonce-balkanized\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tworld\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tEuropean\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tarms\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\tmanufacture\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAlready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tBritish\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAerospace\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tFrench\t_\tADJ\tNNP\t_\t7\tamod\t_\t_\n7\tgovernment-controlled\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tThomson-CSF\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n9\tcollaborate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tBritish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmissile\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcontract\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tair-traffic\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tcontrol\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tradar\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tsystem\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tmake\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tjoint\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbid\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tFerranti\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tInternational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tSignal\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPLC\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tsmaller\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n21\tBritish\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tdefense\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcontractor\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n24\trocked\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\talleged\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\taccounting\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tfraud\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tU.S.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tunit\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsudden\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tromance\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tBritish\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAerospace\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tThomson-CSF\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\ttraditionally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\tbitter\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcompetitors\t_\tNOUN\tNNS\t_\t6\tdep\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tMiddle\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tEast\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tThird\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tWorld\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tweapons\t_\tNOUN\tNNS\t_\t20\tcompound\t_\t_\n20\tcontracts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n21\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tstirring\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n24\tcontroversy\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tWestern\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tEurope\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tdefense\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tindustry\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tMost\t_\tADV\tJJS\t_\t2\tadvmod\t_\t_\n2\tthreatened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tcloser\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n5\tBritish\t_\tPROPN\tJJ\t_\t7\tcompound\t_\t_\n6\tAerospace-Thomson\t_\tPROPN\tNN\t_\t7\tcompound\t_\t_\n7\tties\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t2\tauxpass\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n11\trespective\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnational\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\trivals\t_\tNOUN\tNNS\t_\t2\tnsubjpass\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tincluding\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n16\tMatra\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tS.A.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tFrance\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n21\tBritain\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tGeneral\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tElectric\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tPLC\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tneither\t_\tCONJ\tDT\t_\t3\tcc:preconj\t_\t_\n3\tMatra\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n4\tnor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tGEC\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n7\tunrelated\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n9\tStamford\t_\tPROPN\tNNP\t_\t11\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tConn.-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tGeneral\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tElectric\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tsitting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n18\tquietly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tby\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n20\tas\t_\tADV\tIN\t_\t23\tadvmod\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tcompetitors\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tjoin\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n24\tforces\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsource\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tclose\t_\tADV\tRB\t_\t4\tamod\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tGEC\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tjoin\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tFerranti\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tfight\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpart\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tpossible\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tconsortium\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n25\twould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tbid\t_\tVERB\tVB\t_\t23\tacl:relcl\t_\t_\n27\tagainst\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tBritish\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tAerospace\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tThomson-CSF\t_\tPROPN\tNNP\t_\t29\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n2\twith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnmod\t_\t_\n4\tGEC\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\thad\t_\tVERB\tVBN\t_\t1\tacl:relcl\t_\t_\n7\ttalks\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tabout\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tpossible\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\tjoint\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tFerranti\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tbid\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n15\tMatra\t_\tPROPN\tNNP\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tBritain\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tDowty\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tGroup\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tPLC\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tWest\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tGermany\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tDaimler-Benz\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAG\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n30\tFrance\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tDassault\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tgroup\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t5\tcop\t_\t_\n5\tweeks\t_\tNOUN\tNNS\t_\t19\tccomp\t_\t_\n6\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tGEC\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tpotential\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpartners\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\tdecide\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tbid\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsource\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tGEC\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tfirst\t_\tADV\tJJ\t_\t2\tadvmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tstudy\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\tFerranti\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tfinancial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taccounts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tdobj\t_\t_\n12\tauditors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\trecently\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n15\tincluded\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n16\t#\t_\tSYM\t#\t_\t18\tcompound\t_\t_\n17\t215\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t15\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfictitious\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcontracts\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tInternational\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tSignal\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n29\t&\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tControl\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tGroup\t_\tPROPN\tNNP\t_\t28\tconj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n33\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\twhich\t_\tPRON\tWDT\t_\t36\tnmod\t_\t_\n35\tFerranti\t_\tPROPN\tNNP\t_\t36\tnsubj\t_\t_\n36\tmerged\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n37\tlast\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tyear\t_\tNOUN\tNN\t_\t36\tnmod:tmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tany\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tGEC\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\tmight\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tblocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tBritish\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tantitrust\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tregulators\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n14\tFerranti\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n16\tGEC\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tmain\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcompetitor\t_\tNOUN\tNN\t_\t8\tparataxis\t_\t_\n20\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tseveral\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tkey\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tdefense-electronics\t_\tADJ\tNNS\t_\t24\tamod\t_\t_\n24\tcontracts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\tpurchase\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n29\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tGEC\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\tmay\t_\tAUX\tMD\t_\t32\taux\t_\t_\n32\theighten\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n33\tBritish\t_\tPROPN\tJJ\t_\t35\tcompound\t_\t_\n34\tDefense\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tMinistry\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tworries\t_\tNOUN\tVBZ\t_\t32\tdobj\t_\t_\n37\tabout\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tconcentration\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n39\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tcountry\t_\tNOUN\tNN\t_\t44\tnmod:poss\t_\t_\n42\t's\t_\tPART\tPOS\t_\t41\tcase\t_\t_\n43\tdefense\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tindustry\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tconsortium\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbid\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdiminish\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tGEC\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tdirect\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trole\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tFerranti\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n16\tmight\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tconsequently\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tappease\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n19\tministry\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tofficials\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tBritish\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tAerospace\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspokeswoman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tunperturbed\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprospect\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tfight\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tGEC\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tFerranti\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n19\tCompetition\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tname\t_\tNOUN\tNN\t_\t29\tccomp\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tgame\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n28\tshe\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t5\tparataxis\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tleast\t_\tADJ\tJJS\t_\t3\tnmod:npmod\t_\t_\n3\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tpotential\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tGEC\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tpartner\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tMatra\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tinsists\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tinterested\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tFerranti\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t21\tccomp\t_\t_\n4\tnothing\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tsay\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\tabout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\taffair\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tconcern\t_\tVERB\tNN\t_\t9\tacl:relcl\t_\t_\n15\tus\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tMatra\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tofficial\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tSunday\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmissile\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tventure\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tBritish\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tAerospace\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tspokeswoman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tneeded\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tresponse\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tenvironment\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tdefense\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcontracting\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tboth\t_\tDET\tDT\t_\t3\tcc:preconj\t_\t_\n3\tThomson\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tBritish\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAerospace\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n8\tearnings\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\thome\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tcome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpressure\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tincreasingly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\ttight-fisted\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdefense\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tministries\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\t;\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n24\tMiddle\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tEast\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tsales\t_\tNOUN\tNNS\t_\t39\tnsubjpass\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\ttraditional\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tmainstay\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tboth\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcompanies\t_\tNOUN\tNNS\t_\t35\tnmod:poss\t_\t_\n34\t'\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\texports\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n37\thave\t_\tAUX\tVBP\t_\t39\taux\t_\t_\n38\tbeen\t_\tAUX\tVBN\t_\t39\tauxpass\t_\t_\n39\thurt\t_\tVERB\tVBN\t_\t14\tconj\t_\t_\n40\tby\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tfive\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tyears\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n44\tweak\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n45\toil\t_\tNOUN\tNN\t_\t46\tcompound\t_\t_\n46\tprices\t_\tNOUN\tNNS\t_\t42\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tventure\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\timportance\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tThomson\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tgreat\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThomson\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tfeels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tfuture\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tdefense\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tdepends\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n10\ton\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tbuilding\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n12\tcooperation\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tEuropeans\t_\tPROPN\tNNPS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tEuropean\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdefense\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tconsolidating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinstance\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n11\tWest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tGermany\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tSiemens\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAG\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\trecently\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tjoined\t_\tVERB\tVBD\t_\t6\tparataxis\t_\t_\n18\tGEC\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttakeover\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tBritain\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tPlessey\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCo.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tDaimler-Benz\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n30\tagreed\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tbuy\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tMesserschmitt-Boelkow\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n34\tBlohm\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n35\tG.m.b\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n37\tH\t_\tPROPN\tNNP\t_\t32\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tmissiles\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tThomson\t_\tPROPN\tNNP\t_\t7\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n6\talready\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tovershadowed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tBritish\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAerospace\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\thome\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\trival\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tFrance\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tAerospatiale\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tS.A.\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n21\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n22\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n23\tbetter\t_\tADV\tJJR\t_\t24\tadvmod\t_\t_\n24\tcompete\t_\tVERB\tVB\t_\t31\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n26\tThomson\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tofficials\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tsay\t_\tVERB\tVBP\t_\t31\tparataxis\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tthey\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tneed\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tpartnership\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tjustify\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n3\t50-50\t_\tADJ\tCD\t_\t4\tamod\t_\t_\n4\townership\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tplanned\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tventure\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tThomson\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tmake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcash\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tpayment\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tBritish\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tAerospace\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAnnual\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tBritish\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAerospace\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tmissile\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n10\tabout\t_\tADV\tIN\t_\t13\tadvmod\t_\t_\n11\t#\t_\tSYM\t#\t_\t13\tcompound\t_\t_\n12\t950\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t18\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tThomson\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tspokesman\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBritish\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAerospace\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmissile\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\t17-year-old\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tfamily\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tRapier\t_\tNOUN\tNNP\t_\t14\tcompound\t_\t_\n13\tsurface-to-air\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmissiles\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThomson\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tmissile\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproducts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tabout\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n7\thalf\t_\tDET\tNN\t_\t12\tnummod\t_\t_\n8\tBritish\t_\tPROPN\tJJ\t_\t9\tcompound\t_\t_\n9\tAerospace\t_\tPROPN\tNN\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tannual\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trevenue\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tCrotale\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tsurface-to-air\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tmissile\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tfamily\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tInterprovincial\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tPipe\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tLine\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdelay\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n10\tproposed\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n11\ttwo-step\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n13\t830\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t15\tdep\t_\t_\n15\tCanadian-dollar\t_\tADJ\tNN\t_\t21\tdep\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n17\tUS$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n18\t705.6\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n21\texpansion\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tsystem\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tbecause\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n26\tCanada\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\toutput\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcrude\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\toil\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tis\t_\tAUX\tVBZ\t_\t33\taux\t_\t_\n33\tshrinking\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInterprovincial\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tCanada\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tbiggest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n6\toil\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tpipeline\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\toperator\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttransporter\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tcrude\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\trevised\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n21\tindustry\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tforecasts\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tindicate\t_\tVERB\tVBP\t_\t19\tccomp\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n25\tCanadian\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\toil\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\toutput\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n28\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\ttotal\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n30\tabout\t_\tADV\tIN\t_\t32\tadvmod\t_\t_\n31\t1.64\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tbarrels\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tday\t_\tNOUN\tNN\t_\t33\tnmod:npmod\t_\t_\n36\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t1991\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n39\t8\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\t%\t_\tSYM\tNN\t_\t41\tnmod:npmod\t_\t_\n41\tlower\t_\tADJ\tJJR\t_\t29\txcomp\t_\t_\n42\tthan\t_\tADP\tIN\t_\t45\tcase\t_\t_\n43\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n44\tprevious\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\testimate\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tcrude\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\taveraged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tIN\t_\t8\tadvmod\t_\t_\n6\t1.69\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tbarrels\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\t1989\t_\tNUM\tCD\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\thalf\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\t1\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n20\tbelow\t_\tADP\tIN\t_\t19\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\t1988\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tlevel\t_\tNOUN\tNN\t_\t19\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcapability\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\texisting\t_\tADJ\tVBG\t_\t6\tamod\t_\t_\n6\tfields\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tdeliver\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n9\toil\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tdropping\t_\tVERB\tVBG\t_\t33\tccomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\toil\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\texploration\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tactivity\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\tdown\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdramatically\t_\tADV\tRB\t_\t11\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tmany\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tproducers\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tshift\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\temphasis\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tnatural\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tgas\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tRonald\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tWatkins\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tvice\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n39\tfor\t_\tADP\tIN\t_\t43\tcase\t_\t_\n40\tgovernment\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n42\tindustry\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n43\trelations\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n44\twith\t_\tADP\tIN\t_\t47\tcase\t_\t_\n45\tInterprovincial\t_\tPROPN\tNNP\t_\t47\tnmod:poss\t_\t_\n46\t's\t_\tPART\tPOS\t_\t45\tcase\t_\t_\n47\tparent\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n49\tInterhome\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n50\tEnergy\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tInc\t_\tPROPN\tNNP\t_\t47\tappos\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWatkins\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tvolume\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tInterprovincial\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tsystem\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n10\tdown\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n11\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t10\tnmod:npmod\t_\t_\n14\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJanuary\t_\tPROPN\tNNP\t_\t3\tccomp\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\texpected\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tfall\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tfurther\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tmaking\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n24\texpansion\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tunnecessary\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\tuntil\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tperhaps\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmid-1990s\t_\tNOUN\tNNS\t_\t25\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tswing\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpendulum\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tback\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgas\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tside\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tCanada\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tgas\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproducers\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\toutlook\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tnatural\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgas\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tbetter\t_\tADJ\tJJR\t_\t9\tccomp\t_\t_\n17\tthan\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\toil\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n24\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n25\tshifted\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\texploration\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tdevelopment\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tbudgets\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\taccordingly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnumber\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tactive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tdrilling\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trigs\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tCanada\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t42\tccomp\t_\t_\n10\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tnmod:npmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tyear\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n16\tago\t_\tADV\tRB\t_\t10\tadvcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tnumber\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tcompleted\t_\tVERB\tVBN\t_\t24\tamod\t_\t_\n23\toil\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\twells\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n27\tdown\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n28\tmore\t_\tADJ\tJJR\t_\t27\tnmod:npmod\t_\t_\n29\tthan\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tthat\t_\tPRON\tDT\t_\t28\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n32\tdue\t_\tADJ\tJJ\t_\t9\tadvmod\t_\t_\n33\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tincreasing\t_\tVERB\tVBG\t_\t36\tamod\t_\t_\n36\tfocus\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\ton\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tgas\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\texploration\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n41\t''\t_\tPUNCT\t''\t_\t42\tpunct\t_\t_\n42\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n43\tRobert\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tFeick\t_\tPROPN\tNNP\t_\t42\tnsubj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n46\tmanager\t_\tNOUN\tNN\t_\t44\tappos\t_\t_\n47\tof\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tcrude\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\toil\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n50\twith\t_\tADP\tIN\t_\t55\tcase\t_\t_\n51\tCalgary\t_\tPROPN\tNNP\t_\t55\tnmod:poss\t_\t_\n52\t's\t_\tPART\tPOS\t_\t51\tcase\t_\t_\n53\tIndependent\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n54\tPetroleum\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tAssociation\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n56\tof\t_\tADP\tIN\t_\t57\tcase\t_\t_\n57\tCanada\t_\tPROPN\tNNP\t_\t55\tnmod\t_\t_\n58\t,\t_\tPUNCT\t,\t_\t55\tpunct\t_\t_\n59\tan\t_\tDET\tDT\t_\t61\tdet\t_\t_\n60\tindustry\t_\tNOUN\tNN\t_\t61\tcompound\t_\t_\n61\tgroup\t_\tNOUN\tNN\t_\t55\tappos\t_\t_\n62\t.\t_\tPUNCT\t.\t_\t42\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWatkins\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmain\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\treason\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tproduction\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdecline\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tshrinking\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\toutput\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tlight\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcrude\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tmature\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tconventional\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tfields\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\twestern\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tCanada\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tInterprovincial\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\ttransports\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tabout\t_\tADV\tIN\t_\t4\tadvmod\t_\t_\n4\t75\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcrude\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tproduced\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\twestern\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tCanada\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n15\talmost\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t60\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t23\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tInterprovincial\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\ttotal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tvolume\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\tconsists\t_\tVERB\tVBZ\t_\t2\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tlight\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcrude\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNearly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tall\t_\tDET\tDT\t_\t14\tnsubjpass\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcrude\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\toil\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tthat\t_\tADP\tWDT\t_\t9\tdobj\t_\t_\n8\tCanada\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\texports\t_\tNOUN\tNNS\t_\t6\tacl:relcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\ttransported\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tInterprovincial\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tsystem\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhose\t_\tPRON\tWP$\t_\t22\tnmod:poss\t_\t_\n21\tmain\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tline\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\truns\t_\tNOUN\tVBZ\t_\t18\tacl:relcl\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tEdmonton\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n27\tmajor\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tCanadian\t_\tADJ\tJJ\t_\t28\tconj\t_\t_\n31\tcities\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tGreat\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tLakes\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tregion\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n38\tincluding\t_\tVERB\tVBG\t_\t39\tcase\t_\t_\n39\tChicago\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tBuffalo\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n43\tToronto\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n44\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n45\tMontreal\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tCanada\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tcurrent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\toil\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\texports\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\ttotal\t_\tVERB\tJJ\t_\t26\tccomp\t_\t_\n10\tabout\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n11\t600,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tbarrels\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\t9.1\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tnet\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tcrude\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\timports\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tJohn\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tLichtblau\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tpresident\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n33\tNew\t_\tADJ\tNNP\t_\t34\tamod\t_\t_\n34\tYork-based\t_\tADJ\tNNP\t_\t38\tamod\t_\t_\n35\tPetroleum\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n36\tIndustry\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tResearch\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tFoundation\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tranks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tCanada\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfourth-largest\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsource\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\timported\t_\tADJ\tVBN\t_\t10\tamod\t_\t_\n10\tcrude\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tbehind\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tSaudi\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tArabia\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tNigeria\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tMexico\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLichtblau\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCanada\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tdeclining\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n7\tcrude\t_\tNOUN\tJJ\t_\t8\tcompound\t_\t_\n8\toutput\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tcombined\t_\tVERB\tVBN\t_\t14\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfast-shrinking\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\toutput\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tcrude\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\thelp\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n21\tintensify\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\treliance\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\toil\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\toverseas\t_\tNOUN\tRB\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tparticularly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tMiddle\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tEast\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\tvery\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmuch\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgrowing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n3\tsomething\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tinevitable\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tlearn\t_\tVERB\tVBP\t_\t16\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tlive\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLichtblau\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdelay\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tInterprovincial\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tproposed\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\texpansion\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\two\t_\tAUX\tMD\t_\t16\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n14\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\titself\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n16\tincrease\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tdependence\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\toffshore\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcrude\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\thowever\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tsince\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n26\tCanadian\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\timports\t_\tNOUN\tNNS\t_\t29\tnsubjpass\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\tauxpass\t_\t_\n29\tlimited\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tany\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcase\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tCanada\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tfalling\t_\tVERB\tVBG\t_\t37\tamod\t_\t_\n37\toutput\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tterms\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tproposed\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n6\ttwo-step\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\texpansion\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\trequired\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n13\tregulatory\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tapproval\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tInterprovincial\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tintended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tadd\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\t200,000\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbarrels\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tday\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tadditional\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcapacity\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tsystem\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n31\tbeginning\t_\tVERB\tVBG\t_\t35\tcase\t_\t_\n32\twith\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tmodest\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\texpansion\t_\tNOUN\tNN\t_\t19\tadvcl\t_\t_\n36\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t1991\t_\tNUM\tCD\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsystem\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tcurrently\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcapacity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t1.55\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tbarrels\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tday\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInland\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tSteel\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tIndustries\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tthird-quarter\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tdropped\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t14\tadvmod\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\t50\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tprevious\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tresult\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\treduced\t_\tADJ\tVBN\t_\t26\tamod\t_\t_\n25\tsales\t_\tNOUN\tNNS\t_\t26\tcompound\t_\t_\n26\tvolume\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tincreased\t_\tADJ\tVBD\t_\t29\tamod\t_\t_\n29\tcosts\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsecond\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsteelmaker\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t45.3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.25\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\tincluding\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tpretax\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcharge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t24\tnmod\t_\t_\n27\t17\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\trelated\t_\tVERB\tJJ\t_\t24\tamod\t_\t_\n30\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tsettlement\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tsuit\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n37\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n39\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\t$\t_\tSYM\t$\t_\t42\tdep\t_\t_\n41\t1.11\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tbillion\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnormal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tseasonal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsoftness\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tlost\t_\tADJ\tVBD\t_\t9\tamod\t_\t_\n9\torders\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\tcaused\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprolonged\t_\tADJ\tVBN\t_\t14\tamod\t_\t_\n13\tlabor\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\ttalks\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\treduced\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n16\tshipments\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t200,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\ttons\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tlatest\t_\tADJ\tJJS\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tcompared\t_\tVERB\tVBN\t_\t29\tcase\t_\t_\n26\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tsecond\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tintegrated-steel\t_\tNOUN\tJJ\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tcontinued\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincreases\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tmaterials\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tcosts\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\trepair\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tmaintenance\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n21\texpenses\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n23\tas\t_\tADV\tRB\t_\t13\tcc\t_\t_\n24\twell\t_\tADV\tRB\t_\t23\tmwe\t_\t_\n25\tas\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n26\thigher\t_\tADJ\tJJR\t_\t28\tamod\t_\t_\n27\tlabor\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcosts\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n29\tunder\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tnew\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcontract\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tservice-center\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbusiness\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\treduced\t_\tADJ\tVBN\t_\t8\tamod\t_\t_\n8\tmargins\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tstart-up\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcosts\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\tassociated\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n13\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n15\tJoseph\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tT.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tRyerson\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\t&\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tSon\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tunit\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tbeginning\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsee\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tsome\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tshipping-rate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\timprovements\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tboth\t_\tCONJ\tCC\t_\t15\tcc:preconj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tintergrated-steel\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tsteel-service-center\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsegments\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n21\tshould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tresult\t_\tVERB\tVB\t_\t8\tdep\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\timproved\t_\tADJ\tVBN\t_\t25\tamod\t_\t_\n25\tresults\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfourth\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tInland\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tthird-quarter\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tresults\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tannounced\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n9\tlater\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tindustry\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmidst\t_\tNOUN\tNN\t_\t5\tacl:relcl\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tboom\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcompany\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tnet\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t61\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\t$\t_\tSYM\t$\t_\t29\tdep\t_\t_\n29\t1.70\t_\tNUM\tCD\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tsales\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t34\tnmod\t_\t_\n37\t1.02\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tbillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tPredicting\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tcomputer\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n9\tbeen\t_\tVERB\tVBN\t_\t12\tcop\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttough\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tjob\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tlately\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tMicrosoft\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t1\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlargest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tmaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tpersonal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcomputer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsoftware\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tgenerally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tconsidered\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n15\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tindustry\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tbellwether\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tstunned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprediction\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tthat\t_\tDET\tWDT\t_\t24\tmark\t_\t_\n13\tgrowth\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tpersonal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tbusiness\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\toverall\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n20\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n22\tonly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\t10\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\t%\t_\tSYM\tNN\t_\t11\tccomp\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t1990\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tmodest\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tincrease\t_\tNOUN\tNN\t_\t24\tdep\t_\t_\n31\twhen\t_\tADV\tWRB\t_\t32\tadvmod\t_\t_\n32\tcompared\t_\tVERB\tVBN\t_\t30\tacl:relcl\t_\t_\n33\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tsizzling\t_\tADJ\tVBG\t_\t36\tamod\t_\t_\n36\texpansion\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tyears\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n39\tpast\t_\tADJ\tIN\t_\t38\tamod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n3\ttaking\t_\tVERB\tVBG\t_\t18\tparataxis\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsign\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbroad\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tindustry\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tslump\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\toffing\t_\tNOUN\tNN\t_\t7\tccomp\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n18\treacted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tby\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tselling\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tlost\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n28\t$\t_\tSYM\t$\t_\t29\tdep\t_\t_\n29\t3.25\t_\tNUM\tCD\t_\t27\tdobj\t_\t_\n30\tthat\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tclose\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n34\tat\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\t$\t_\tSYM\t$\t_\t36\tdep\t_\t_\n36\t52\t_\tNUM\tCD\t_\t33\tnmod\t_\t_\n37\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tnational\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n39\tover-the-counter\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\ttrading\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tall\t_\tDET\tDT\t_\t6\tadvmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tadvmod\t_\t_\n6\tthree\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n8\tago\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tMicrosoft\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\trevenue\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tfirst\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tended\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tSept.\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t30\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tincrease\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n18\t34\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tannouncement\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcaused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsurge\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t6.50\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tclose\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t75.50\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMicrosoft\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tsurprising\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstrength\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tone\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\texample\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdifficulty\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tfacing\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tinvestors\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tlooking\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\treassurances\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfinancial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\thealth\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tfirms\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\thard\t_\tADJ\tJJ\t_\t15\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tknow\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\texpect\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpoint\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tPeter\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tRogers\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tanalyst\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tRobertson\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStephens\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tCo\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdefies\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tcharacterization\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tillustrate\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRogers\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\t14\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tcomputer-related\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfirms\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tfollows\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\thalf\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\treport\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n19\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n21\tmost\t_\tADV\tRBS\t_\t22\tadvmod\t_\t_\n22\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tearnings\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n25\tbelow\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tlast\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tresults\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n32\thalf\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n33\tabove\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthose\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tresults\t_\tNOUN\tNNS\t_\t32\tdep\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompanies\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\thave\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdown\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tHewlett-Packard\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tAmdahl\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tSun\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tMicrosystems\t_\tPROPN\tNNPS\t_\t19\tcompound\t_\t_\n19\tInc.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tgenerally\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\tsolid\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tperformers\t_\tNOUN\tNNS\t_\t12\tappos\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tpast\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tInternational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBusiness\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMachines\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t7\tnsubjpass\t_\t_\n5\talso\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\treport\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tdisappointing\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tresults\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tApple\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tmeanwhile\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tshow\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\timproved\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tearnings\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tended\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tSept\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcontradictory\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmessage\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tBusinessland\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcomputer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tretailer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n8\tbooming\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsales\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tpersonal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcomputers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tApple\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tIBM\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tresulted\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n20\tin\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tnet\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tincome\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\tmore\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n24\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n25\tdoubling\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tfourth\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tended\t_\tVERB\tVBD\t_\t29\tacl\t_\t_\n31\tJune\t_\tPROPN\tNNP\t_\t30\tnmod:tmod\t_\t_\n32\t30\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n33\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n34\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n35\t7.4\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n38\tor\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n39\t23\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\tcents\t_\tNOUN\tNNS\t_\t34\tconj\t_\t_\n41\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tshare\t_\tNOUN\tNN\t_\t40\tnmod:npmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tBusinessland\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tthat\t_\tSCONJ\tWDT\t_\t20\tmark\t_\t_\n10\tresults\t_\tNOUN\tVBZ\t_\t20\tnsubj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tended\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tSept.\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n17\t30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tmet\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n21\texpectations\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tearnings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\t14\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n10\t17\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tdown\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t25\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tyear-earlier\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tperiod\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tearnings\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tpicture\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tconfuses\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tobservers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tforces\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n12\texpected\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tshape\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tindustry\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tcoming\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\tclearer\t_\tADJ\tJJR\t_\t8\tccomp\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\twar\t_\tVERB\tNN\t_\t3\txcomp\t_\t_\n6\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tstandards\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tpublishing\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbattle\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tover\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttypefaces\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\thurting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tAdobe\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tSystems\t_\tPROPN\tNNPS\t_\t13\tcompound\t_\t_\n13\tInc.\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\tsells\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n17\tsoftware\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tcontrols\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\timage\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tproduced\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tprinters\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tdisplays\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\trecently\t_\tADV\tRB\t_\t5\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tAdobe\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlock\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\timage\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsoftware\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n18\tApple\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tAdobe\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tbiggest\t_\tADJ\tJJS\t_\t23\tamod\t_\t_\n23\tcustomer\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n26\tMicrosoft\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n27\trebelled\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tfirms\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tcollaborating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\talternative\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tAdobe\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tapproach\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\tanalysts\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tsay\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n20\tlikely\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tcarry\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tIBM\t_\tPROPN\tNNP\t_\t22\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tbiggest\t_\tADJ\tJJS\t_\t27\tamod\t_\t_\n27\tseller\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tpersonal\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tcomputers\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n32\talong\t_\tADV\tIN\t_\t22\tadvmod\t_\t_\n33\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tthem\t_\tPRON\tPRP\t_\t32\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tshort-term\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\toutlook\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tAdobe\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tbusiness\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\thowever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tstrong\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tbeginning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tship\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tsoftware\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprogram\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubjpass\t_\t_\n12\t's\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tbeing\t_\tAUX\tVBG\t_\t14\tauxpass\t_\t_\n14\theralded\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tboon\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\towners\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tlow-end\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprinters\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tsold\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tApple\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprogram\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\taimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\timproving\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tquality\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tprinted\t_\tADJ\tVBN\t_\t11\tamod\t_\t_\n11\tmaterial\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWarnock\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tAdobe\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tNN\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n12\tMountain\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n13\tView\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n15\tCalif.\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\treceiving\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n21\t1,000\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcalls\t_\tNOUN\tVBZ\t_\t20\tdobj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tday\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\tabout\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tproduct\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\tsince\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t31\tnsubjpass\t_\t_\n30\twas\t_\tAUX\tVBD\t_\t31\tauxpass\t_\t_\n31\tdemonstrated\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n32\tat\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tcomputer\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n35\tpublishing\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tconference\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\tseveral\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tweeks\t_\tNOUN\tNNS\t_\t39\tnmod:npmod\t_\t_\n39\tago\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n3\tcompetition\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n4\tbetween\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tvarious\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\toperating\t_\tNOUN\tVBG\t_\t7\tcompound\t_\t_\n7\tsystems\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\tcontrol\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbasic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tfunctions\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcomputer\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tspells\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n19\ttrouble\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsoftware\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tfirms\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tgenerally\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcreates\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n4\tuncertainty\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tusually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tslows\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n8\tdown\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tsales\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tRuss\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCrabs\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tanalyst\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tSoundview\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tFinancial\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tGroup\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCrabs\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t11\tnsubj\t_\t_\n5\tprobably\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n7\tbehind\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\texpected\t_\tADJ\tVBN\t_\t11\tamod\t_\t_\n10\tweak\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tperformance\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tAldus\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tmaker\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\twidely\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tused\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n21\tcomputer\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tpublishing\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tprogram\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tAldus\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\treport\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\tearnings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t21\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trevenues\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t19.5\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n23\tcompared\t_\tVERB\tVBN\t_\t25\tcase\t_\t_\n24\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tearnings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\t30\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tcents\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\trevenue\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\t20.4\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t32\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tyear-earlier\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tperiod\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAldus\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\treached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\thand\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbattle\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbus\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\tauxpass\t_\t_\n12\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tgrow\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tincreasingly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tirrelevant\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbus\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tdata\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\thighway\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\twithin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcomputer\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tbacking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\ttype\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tbus\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tcalled\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n9\tmicrochannel\t_\tADJ\tNN\t_\t8\txcomp\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tnine\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tleading\t_\tADJ\tVBG\t_\t17\tamod\t_\t_\n16\tcomputer\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmakers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tincluding\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n20\tH-P\t_\tPROPN\tNN\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tCompaq\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tComputer\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCorp.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tchosen\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n28\tanother\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmethod\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tUsers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tcare\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbus\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tDaniel\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBenton\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tanalyst\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n17\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tGoldman\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tSachs\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\t&\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n22\tCo\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tApple\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfamily\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMacintosh\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tcomputers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tinstance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tuses\t_\tVERB\tVBZ\t_\t2\tdep\t_\t_\n14\tfour\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tdifferent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbuses\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tno\t_\tDET\tDT\t_\t20\tneg\t_\t_\n20\tone\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tseems\t_\tVERB\tVBZ\t_\t13\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tmind\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgap\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tbetween\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\twinners\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tlaggards\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tgrow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tpersonal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcomputers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tApple\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tCompaq\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\tIBM\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\ttighten\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\thold\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tbusiness\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tsecond-tier\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tlose\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tground\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlagging\t_\tVERB\tJJ\t_\t3\tamod\t_\t_\n3\tcompetitors\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tmay\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tleave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tpersonal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcomputer\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbusiness\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\taltogether\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWyse\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tinstance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcandidate\t_\tNOUN\tNN\t_\t8\txcomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsell\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\ttroubled\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\toperation\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWyse\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tdone\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n5\twell\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\testablishing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdistribution\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tdelivered\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n16\tproducts\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tsell\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tKimball\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBrown\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tanalyst\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tPrudential-Bache\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tSecurities\t_\tPROPN\tNNPS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBrown\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\testimates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tWyse\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhose\t_\tPRON\tWP$\t_\t8\tnmod:poss\t_\t_\n7\tterminals\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\tstrong\t_\tADJ\tJJ\t_\t4\tacl:relcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\treport\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tloss\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t12\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\tended\t_\tVERB\tVBD\t_\t23\tacl\t_\t_\n25\tSept\t_\tPROPN\tNNP\t_\t24\tnmod:tmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPersonal-computer\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tmakers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\teat\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\taway\t_\tADP\tRB\t_\t6\tcompound:prt\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbusiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tmore\t_\tADV\tJJR\t_\t13\tadvmod\t_\t_\n13\ttraditional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirms\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEver-more\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tpowerful\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdesk-top\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcomputers\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tdesigned\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t8\tconj\t_\t_\n11\tmicroprocessors\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tbrains\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n21\tincreasingly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\ttake\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n23\ton\t_\tADP\tRP\t_\t24\tdep\t_\t_\n24\tfunctions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tcarried\t_\tVERB\tVBD\t_\t24\tacl\t_\t_\n26\tout\t_\tADP\tRP\t_\t25\tcompound:prt\t_\t_\n27\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tmore\t_\tADV\tRBR\t_\t29\tadvmod\t_\t_\n29\texpensive\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tminicomputers\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tmainframes\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tguys\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n4\tthat\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tmake\t_\tVERB\tVBP\t_\t3\tacl:relcl\t_\t_\n6\ttraditional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thardware\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n9\treally\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tbeing\t_\tAUX\tVBG\t_\t11\tauxpass\t_\t_\n11\tobsoleted\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tmicroprocessor-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmachines\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tMr.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tBenton\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttrend\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n8\tlongtime\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpowerhouses\t_\tNOUN\tNNS\t_\t10\tdep\t_\t_\n10\tH-P\t_\tPROPN\tNN\t_\t18\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tIBM\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\tDigital\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tEquipment\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n18\tscrambling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tcounterattack\t_\tVERB\tNN\t_\t18\txcomp\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tmicroprocessor-based\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tsystems\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\town\t_\tADJ\tJJ\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tact\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tquickly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBenton\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tCompaq\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tunveil\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tfamily\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\thigh-end\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tpersonal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcomputers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tlater\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n18\tpowerful\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n19\tenough\t_\tADV\tJJ\t_\t18\tadvmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tserve\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n22\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\thub\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tcommunications\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\twithin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tlarge\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tnetworks\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tdesk-top\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmachines\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\traft\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\ttargeted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tserver\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPopulation\t_\tNOUN\tNNP\t_\t2\tcompound\t_\t_\n2\tDrain\t_\tNOUN\tNNP\t_\t3\tnsubj\t_\t_\n3\tEnds\t_\tVERB\tNNPS\t_\t0\troot\t_\t_\n4\tFor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tMidwestern\t_\tADJ\tNNP\t_\t6\tamod\t_\t_\n6\tStates\t_\tNOUN\tNNPS\t_\t3\tnmod\t_\t_\n\n1\tIOWA\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tIS\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tMAKING\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcomeback\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tIndiana\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tOhio\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tMichigan\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpopulation\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tall\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tstates\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tupswing\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\taccording\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tCensus\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tBureau\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\testimates\t_\tNOUN\tVBZ\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tfollowing\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n20\tdeclines\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n21\tthroughout\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tearly\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\t1980s\t_\tNOUN\tCD\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgains\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n9\trather\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tsmall\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIowa\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tinstance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tsaw\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tpopulation\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tgrow\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t11,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpeople\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\t0.4\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\tbetween\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t1987\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\t1988\t_\tNUM\tCD\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tCensus\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBureau\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tthat\t_\tDET\tIN\t_\t6\tdet\t_\t_\n5\tmodest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\tgood\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstate\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tgrown\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n17\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tall\t_\tDET\tDT\t_\t16\tnmod\t_\t_\n19\tsince\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1981\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBetween\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\t1988\t_\tNUM\tCD\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tNorth\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tDakota\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tonly\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tMidwest\t_\tADJ\tNNP\t_\t11\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlose\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n17\tpopulation\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tloss\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t4,000\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tpeople\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSix\t_\tNUM\tCD\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t12\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tmidwestern\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tgrowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tsteadily\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tsince\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1980\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n14\tIllinois\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tKansas\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tMinnesota\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tMissouri\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\tSouth\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDakota\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n25\tWisconsin\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tNortheast\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\tholding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\town\t_\tADJ\tJJ\t_\t5\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tpopulation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSeven\t_\tNUM\tCD\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tstates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tgrown\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\teach\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\tsince\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1980\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tincluding\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tlost\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n18\t4\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tpopulation\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\t1970s\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\talthough\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tPennsylvania\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tMassachusetts\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tsuffered\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n7\tslight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdeclines\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tearlier\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdecade\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tgrowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n17\tagain\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstates\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tSouth\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tWest\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\thad\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\town\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tpopulation\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tturnaround\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSeven\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tstates\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tgrew\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tearly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\t1980s\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n10\tnow\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tlosing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n12\tpopulation\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n14\tWest\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tVirginia\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tMississippi\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tLouisiana\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tOklahoma\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tMontana\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tWyoming\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n27\tAlaska\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthough\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tSouth\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tstill\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\toutpace\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tNortheast\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tMidwest\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tfast-growing\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstates\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n19\tlike\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tFlorida\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tCalifornia\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\tensure\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tpattern\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\twill\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tcontinue\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tgap\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\tbetween\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tSun\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBelt\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tregions\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tclearly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tstarted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tnarrowing\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tRBR\t_\t3\tnsubj\t_\t_\n2\tElderly\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n3\tMaintain\t_\tVERB\tNNP\t_\t0\troot\t_\t_\n4\tTheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tIndependence\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n\n1\tTHANKS\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n2\tTO\t_\tADP\tTO\t_\t4\tcase\t_\t_\n3\tmodern\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmedicine\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tcouples\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tgrowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\told\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n11\ttogether\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tafter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tlosing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tspouse\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t13\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\telderly\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\tstaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tindependent\t_\tADJ\tJJ\t_\t13\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tCensus\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBureau\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tstudy\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnoninstitutionalized\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpopulation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n12\t64\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t21\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpeople\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\taged\t_\tVERB\tJJ\t_\t15\tamod\t_\t_\n17\t65\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tdep\t_\t_\n19\t74\t_\tNUM\tCD\t_\t16\tdep\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\tliving\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tspouse\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t1988\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n28\tup\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\t59\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t28\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t1970\t_\tNUM\tCD\t_\t31\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tmean\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n7\tless\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n8\tlikely\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tlive\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\talone\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshare\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tremained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tabout\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n7\t24\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n9\tsince\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1970\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWDT\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tchanged\t_\tVERB\tVBN\t_\t4\tcsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t12\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tyoung\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\telderly\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tliving\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n13\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tspouses\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\trather\t_\tADV\tRB\t_\t14\tcc\t_\t_\n16\tthan\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trelatives\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tsuch\t_\tADJ\tJJ\t_\t23\tcase\t_\t_\n22\tas\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\tchildren\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\t10\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t12\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthose\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\taged\t_\tVERB\tJJ\t_\t7\tamod\t_\t_\n9\t65\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n11\t74\t_\tNUM\tCD\t_\t8\tdep\t_\t_\n12\tlived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\trelatives\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n16\tthan\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tspouses\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t15\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1970\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tpeople\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tget\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tolder\t_\tADJ\tJJR\t_\t3\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tnsubj\t_\t_\n8\tbecome\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\twidowed\t_\tADJ\tVBN\t_\t8\txcomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tamong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tthose\t_\tPRON\tDT\t_\t16\tnmod\t_\t_\n5\taged\t_\tVERB\tJJ\t_\t4\tamod\t_\t_\n6\t75\t_\tNUM\tCD\t_\t5\tdep\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tolder\t_\tADJ\tJJR\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tliving\t_\tVERB\tNN\t_\t11\tacl\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tspouse\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tslightly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\t40\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1988\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t38\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1970\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tLike\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tyounger\t_\tADJ\tJJR\t_\t4\tamod\t_\t_\n4\tcounterparts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tolder\t_\tADJ\tJJR\t_\t11\tnsubj\t_\t_\n8\telderly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n10\tless\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlive\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trelatives\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOnly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t17\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tthose\t_\tPRON\tDT\t_\t3\tnmod\t_\t_\n6\taged\t_\tVERB\tJJ\t_\t5\tamod\t_\t_\n7\t75\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\tolder\t_\tADJ\tJJR\t_\t6\tconj\t_\t_\n10\tlived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\trelatives\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tspouses\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1988\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t26\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1970\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlikelihood\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tof\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tliving\t_\tVERB\tNN\t_\t2\tacl\t_\t_\n5\talone\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tbeyond\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tage\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t75\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tincreased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t40\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t32\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\tpeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tremaining\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tindependent\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\tlonger\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n7\tpresumably\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\tbetter\t_\tADJ\tJJR\t_\t4\tadvcl\t_\t_\n12\toff\t_\tADP\tRP\t_\t11\tdep\t_\t_\n13\tphysically\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tfinancially\t_\tADV\tRB\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCareers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tCount\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tMost\t_\tADV\tJJS\t_\t2\tadvmod\t_\t_\n4\tFor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tWell-to-Do\t_\tADJ\tJJ\t_\t2\tnmod\t_\t_\n\n1\tMANY\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tAFFLUENT\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tplace\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tpersonal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsuccess\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tabove\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tfamily\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tleast\t_\tADJ\tJJS\t_\t4\tadvcl\t_\t_\n3\tthat\t_\tADP\tDT\t_\t4\tnsubj\t_\t_\n4\t's\t_\tPART\tVBZ\t_\t0\troot\t_\t_\n5\twhat\t_\tPRON\tWP\t_\t18\tdobj\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsurvey\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tErnst\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tYoung\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tYankelovich\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tClancy\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n17\tShulman\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n18\tindicates\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTwo-thirds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\trespondents\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tstrongly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tfelt\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tneed\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\tsuccessful\t_\tADJ\tJJ\t_\t9\tacl\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tjobs\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\twhile\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tfewer\t_\tADJ\tJJR\t_\t20\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t20\tadvmod\t_\t_\n20\thalf\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\tstrongly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tfelt\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tneed\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tspend\t_\tVERB\tVB\t_\t26\tacl\t_\t_\n29\tmore\t_\tADJ\tJJR\t_\t30\tamod\t_\t_\n30\ttime\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\twith\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ttheir\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n33\tfamilies\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBeing\t_\tVERB\tVBG\t_\t2\tcop\t_\t_\n2\tsuccessful\t_\tADJ\tJJ\t_\t13\tcsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tcareers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tspending\t_\tVERB\tVBG\t_\t2\tconj\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tmake\t_\tVERB\tVBP\t_\t8\tacl:relcl\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\ttop\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpriorities\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tgroup\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tstudies\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\taffluent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsurvey\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\texcluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsuper-rich\t_\tADJ\tJJ\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAverage\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\thousehold\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsample\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t194,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\taverage\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tnet\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tassets\t_\tNOUN\tNNS\t_\t16\tnsubjpass\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\treported\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n17\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t775,000\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgoal\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlearn\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tone\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tfastest-growing\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tincome\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tgroups\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tupper-middle\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tclass\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\trepresent\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\t2\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpopulation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tcontrol\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tnearly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tone-third\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tdiscretionary\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tincome\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAcross\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tboard\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tconsumers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tvalue\t_\tVERB\tNN\t_\t0\troot\t_\t_\n8\tquality\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n10\tbuy\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n11\twhat\t_\tPRON\tWP\t_\t13\tdobj\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tlike\t_\tVERB\tVBP\t_\t10\tdobj\t_\t_\n14\trather\t_\tADV\tRB\t_\t13\tcc\t_\t_\n15\tthan\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t19\tdobj\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tneed\t_\tVERB\tVBP\t_\t13\tdep\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n22\tappreciate\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n23\tproducts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n25\tare\t_\tVERB\tVBP\t_\t26\tcop\t_\t_\n26\tdistinctive\t_\tADJ\tJJ\t_\t23\tacl:relcl\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tconsiderable\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincomes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tassets\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n8\t40\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t18\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\trespondents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstudy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tdo\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tfinancially\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tsecure\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\tone-fourth\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n24\tdo\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\tfeel\t_\tVERB\tVB\t_\t18\tconj\t_\t_\n27\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\thave\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n30\tmade\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t30\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tTwenty\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tpercent\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n9\tfinancially\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\twell\t_\tADV\tRB\t_\t6\tccomp\t_\t_\n11\toff\t_\tADP\tIN\t_\t10\tdep\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\taffluent\t_\tNOUN\tJJ\t_\t1\tnmod\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tcomfortable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tthemselves\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\teither\t_\tADV\tCC\t_\t7\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tIN\t_\t2\tadvmod\t_\t_\n2\t40\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t6\tnsubj\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\t're\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n9\tmore\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\table\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tothers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\ttwothirds\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfeel\t_\tVERB\tVBP\t_\t13\tadvcl\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tguilt\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tabout\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tbeing\t_\tVERB\tVBG\t_\t8\tcop\t_\t_\n8\taffluent\t_\tNOUN\tJJ\t_\t5\tacl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t25\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t13\tnsubj\t_\t_\n13\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n15\t2,500\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n17\tmore\t_\tADJ\tJJR\t_\t13\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tcharity\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\teach\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThirty-five\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tpercent\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tattend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\treligious\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tservices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tregularly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsame\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t60\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tnsubj\t_\t_\n15\tfeel\t_\tVERB\tVBP\t_\t3\tparataxis\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tlife\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n19\tone\t_\tPRON\tCD\t_\t21\tnsubj\t_\t_\n20\tsometimes\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\thas\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcompromise\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tone\t_\tPRON\tCD\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tprinciples\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOdds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tEnds\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n\n1\tTHE\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tNUMBER\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\twomen\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tminorities\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\twho\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\thold\t_\tVERB\tVBP\t_\t4\tacl:relcl\t_\t_\n9\tjobs\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ttop\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmanagement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tnation\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tlargest\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\tbanks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n20\tmore\t_\tADV\tJJR\t_\t22\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n22\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tsince\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1978\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBankers\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tAssociation\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\twomen\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tmake\t_\tVERB\tVBP\t_\t5\tccomp\t_\t_\n9\tup\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\t47\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tofficials\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmanagers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\ttop\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\t50\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n22\tup\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t33\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t22\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1978\t_\tNUM\tCD\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshare\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tminorities\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthose\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpositions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\trisen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\t16\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t12\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n16\t...\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPer-capita\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tpersonal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfaster\t_\tADV\tJJR\t_\t7\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\taccording\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t14\tmwe\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tBureau\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tEconomic\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAnalysis\t_\tPROPN\tNN\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tamount\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tincome\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\tdivvied\t_\tVERB\tVBD\t_\t2\tacl\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\teach\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tman\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twoman\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tchild\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t16,489\t_\tNUM\tCD\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t1988\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n21\t6.6\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t20\tnmod:npmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n25\t15,472\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1987\t_\tNUM\tCD\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tPer\t_\tADP\tIN\t_\t2\tdep\t_\t_\n2\tcapita\t_\tNOUN\tNN\t_\t4\tamod\t_\t_\n3\tpersonal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincome\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tranged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t11,116\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tMississippi\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t23,059\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tConnecticut\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t...\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t23\tccomp\t_\t_\n3\t13.1\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tstudents\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcollege\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfall\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tup\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t1988\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tNational\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCenter\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tEducation\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tStatistics\t_\tPROPN\tNNPS\t_\t19\tnmod\t_\t_\n23\testimates\t_\tNOUN\tVBZ\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tIN\t_\t2\tadvmod\t_\t_\n2\t54\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\twomen\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\t44\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t12\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n11\tpart-time\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstudents\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tsmall\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tDallas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tsuburb\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\t's\t_\tPART\tPOS\t_\t6\tauxpass\t_\t_\n6\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttrouble\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTrouble\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tcapital\t_\tADJ\tNN\t_\t5\tamod\t_\t_\n5\tT\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n7\tthat\t_\tPRON\tIN\t_\t8\tnsubj\t_\t_\n8\trhymes\t_\tVERB\tNNS\t_\t1\tconj\t_\t_\n9\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tP\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n12\tthat\t_\tPRON\tIN\t_\t13\tnsubj\t_\t_\n13\tstands\t_\tVERB\tVBZ\t_\t1\tconj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpool\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMore\t_\tADV\tJJR\t_\t3\tadvmod\t_\t_\n2\tthan\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\t30\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tyears\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n5\tago\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n7\tProf.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tHarold\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tHill\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcon\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tman\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n14\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n15\tMeredith\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tWillson\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tThe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tMusic\t_\tNOUN\tNNP\t_\t21\tcompound\t_\t_\n21\tMan\t_\tNOUN\tNNP\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n24\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tcitizens\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tRiver\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCity\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tIowa\t_\tPROPN\tNNP\t_\t29\tappos\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n33\tagainst\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tgame\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\tkindred\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n3\tspirits\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tAddison\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\ttown\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcouncil\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tbarred\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttown\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfanciest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\thotel\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tGrand\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tKempinski\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tfrom\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tinstalling\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n23\tthree\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n24\tfree\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tpool\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\ttables\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tnew\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tlounge\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMayor\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLynn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSpruill\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tmembers\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcouncil\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n13\tworried\t_\tADJ\tVBN\t_\t10\tccomp\t_\t_\n14\tabout\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tsetting\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tprecedent\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tpermit\t_\tVERB\tVB\t_\t17\tacl:relcl\t_\t_\n21\tpool\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\thalls\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\talong\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tAddison\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmain\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstreet\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmayor\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tadmonition\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tbears\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\trhythmic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tresemblance\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tProf.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tHill\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n21\talcohol\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tleads\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n23\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n24\tbetting\t_\tNOUN\tVBG\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tleads\t_\tVERB\tVBZ\t_\t24\tacl:relcl\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\tfights\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcouncil\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\taction\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n6\tyet\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tanother\t_\tDET\tDT\t_\t8\tamod\t_\t_\n8\tblow\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsport\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tthat\t_\tADP\tIN\t_\t15\tdobj\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tfans\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tclaim\t_\tNOUN\tVBP\t_\t11\tacl:relcl\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n17\tbeen\t_\tAUX\tVBN\t_\t18\tauxpass\t_\t_\n18\tmaligned\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n19\tunjustly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tObviously\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttouch\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tgoing\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n12\ton\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tTom\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tManske\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tvice\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n23\tNational\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tPocket\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tBilliards\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tAssociation\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tPool\t_\tNOUN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\thot\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tChicago\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tinsists\t_\tVERB\tVBZ\t_\t6\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhere\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n15\tupscale\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tsuit-and-tie\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tplaces\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tadding\t_\tVERB\tVBG\t_\t6\tacl:relcl\t_\t_\n22\ttables\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\ttoday\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttougher\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n5\tdrunk\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tdriving\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tlaws\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tadds\t_\tVERB\tVBZ\t_\t16\tparataxis\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tpeople\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tdo\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\twant\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tjust\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tsit\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n20\taround\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tdrink\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tBesides\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\trowdy\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbehavior\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tunlikely\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tGrand\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tKempinski\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhere\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\trooms\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\taverage\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t200\t_\tNUM\tCD\t_\t14\tdobj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tnight\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tcheap\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tmixed\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdrinks\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tgo\t_\tVERB\tVBP\t_\t14\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t27\tdep\t_\t_\n27\t3.50\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tpop\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlounge\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tmanager\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tElizabeth\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tDyer\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n8\two\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tadmit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tpatrons\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tjeans\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tT-shirts\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\ttennis\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tshoes\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmajority\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tAddison\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tcouncil\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tbuy\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthose\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\targuments\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIntroducing\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n2\tpool\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n4\targued\t_\tVERB\tVBD\t_\t12\tparataxis\t_\t_\n5\tCouncilwoman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tRiley\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tReinker\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\tdangerous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcan\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tworms\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAddison\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tno\t_\tDET\tDT\t_\t4\tneg\t_\t_\n4\tstranger\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tcans\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tworms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\teither\t_\tADV\tCC\t_\t4\tadvmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tprevious\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmayor\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcommitted\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n6\tsuicide\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tinvestigation\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\ttown\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tofficials\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\tregularly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tvoted\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n18\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\town\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tprojects\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n23\tgave\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n24\tspecial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tfavors\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tdeveloper\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tfriends\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n30\tdipped\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n31\tinto\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\ttown\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tcoffers\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\ttrips\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tretreats\t_\tNOUN\tNNS\t_\t37\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trevelations\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tembarrassed\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n4\ttown\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\talthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\targued\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tproblems\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tas\t_\tADV\tIN\t_\t16\tadvmod\t_\t_\n16\tsevere\t_\tADJ\tJJ\t_\t9\tccomp\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmedia\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tsuggested\t_\tVERB\tVBD\t_\t16\tdep\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tpool\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tflap\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n4\tthere\t_\tPRON\tEX\t_\t5\texpl\t_\t_\n5\t's\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpeople\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n8\tworried\t_\tADJ\tVBN\t_\t7\tdep\t_\t_\n9\tabout\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tsomething\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tpretty\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tridiculous\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n15\tCouncilman\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tJohn\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tNolan\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t7\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\tall\t_\tDET\tDT\t_\t7\tdep\t_\t_\n7\ttaken\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tcare\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\t`\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tThe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tMusic\t_\tNOUN\tNNP\t_\t14\tcompound\t_\t_\n14\tMan\t_\tNOUN\tNNP\t_\t7\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n4\tRobert\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tGoldberg\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tpraise\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n8\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tCBS\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshow\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n14\tIsland\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSon\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n17\t-LRB-\t_\tPUNCT\t-LRB-\t_\t18\tpunct\t_\t_\n18\tLeisure\t_\tPROPN\tNN\t_\t12\tdep\t_\t_\n19\t&\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tArts\t_\tPROPN\tNNS\t_\t18\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tSept.\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n23\t25\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t18\tpunct\t_\t_\n25\twas\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tlocal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tcolor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n29\t;\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n30\tunfortunately\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n31\tneither\t_\tCONJ\tCC\t_\t32\tcc:preconj\t_\t_\n32\the\t_\tPRON\tPRP\t_\t40\tnsubj\t_\t_\n33\tnor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tproducers\t_\tNOUN\tNNS\t_\t32\tconj\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tshow\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\thave\t_\tAUX\tVBP\t_\t40\taux\t_\t_\n40\tdone\t_\tVERB\tVBN\t_\t28\tparataxis\t_\t_\n41\ttheir\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n42\thomework\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n5\tHaole\t_\tX\tNNP\t_\t14\tnsubj\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n8\twhite\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n11\tnot\t_\tPART\tRB\t_\t14\tneg\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tultimate\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinsult\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n17\tMainland\t_\tADJ\tNN\t_\t18\tamod\t_\t_\n18\thaole\t_\tX\tNN\t_\t20\tnsubj\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t14\tparataxis\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChamberlain\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdresses\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n4\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tMainland\t_\tADJ\tNN\t_\t8\tamod\t_\t_\n8\thaole\t_\tX\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n11\ttucking\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n12\tin\t_\tADP\tIN\t_\t11\tcompound:prt\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tHawaiian\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshirt\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\trolling\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tlong\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tsleeves\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlocal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\texpression\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tbrother\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n9\tbrah\t_\tX\tNN\t_\t14\tcompound\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n12\tnot\t_\tADV\tRB\t_\t14\tneg\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n14\tbruddah\t_\tX\tNN\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tnurse\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\twear\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n8\tflowers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ther\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\thair\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twhile\t_\tNOUN\tIN\t_\t14\tdep\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tduty\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n16\tif\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tshe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\twere\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n19\tengaged\t_\tADJ\tVBN\t_\t22\tadvcl\t_\t_\n20\tshe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tknow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\twear\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthem\t_\tPRON\tPRP\t_\t24\tdobj\t_\t_\n26\tbehind\t_\tADP\tIN\t_\t33\tcase\t_\t_\n27\ther\t_\tPRON\tPRP$\t_\t33\tdep\t_\t_\n28\tleft\t_\tADJ\tNN\t_\t31\tamod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\tnot\t_\tADV\tRB\t_\t31\tneg\t_\t_\n31\tright\t_\tADJ\tRB\t_\t33\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tear\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tSorry\t_\tADJ\tJJ\t_\t8\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tshow\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n6\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\teven\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tredeeming\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquality\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tgenuine\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tlocal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcolor\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnita\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDavis\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tall\t_\tDET\tPDT\t_\t5\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tethnic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\ttensions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tAmerica\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tmost\t_\tADV\tRBS\t_\t13\tadvmod\t_\t_\n13\ttroublesome\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tright\t_\tADV\tNN\t_\t15\tadvmod\t_\t_\n15\tnow\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t?\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgood\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbet\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttension\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tblacks\t_\tPROPN\tNNS\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tJews\t_\tPROPN\tNNS\t_\t9\tconj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCity\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOr\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tso\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tmust\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tJackie\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMason\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tveteran\t_\tADJ\tNN\t_\t13\tamod\t_\t_\n12\tJewish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcomedian\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n14\tappearing\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n15\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tABC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tsitcom\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tairing\t_\tNOUN\tVBG\t_\t19\tdep\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tTuesday\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tnights\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n25\t9:30-10\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n26\tp.m.\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tEDT\t_\tPROPN\tNNP\t_\t20\tdep\t_\t_\n28\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNot\t_\tPART\tRB\t_\t2\tdep\t_\t_\n2\tonly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t18\tdep\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMason\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstar\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n10\tChicken\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSoup\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n15\t's\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n16\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tinheritor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcomedic\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttradition\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tdating\t_\tVERB\tVBG\t_\t22\tacl\t_\t_\n24\tback\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n27\tDuck\t_\tPROPN\tNN\t_\t28\tcompound\t_\t_\n28\tSoup\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n32\the\t_\tPRON\tPRP\t_\t36\tnsubj\t_\t_\n33\t's\t_\tVERB\tVBZ\t_\t36\tcop\t_\t_\n34\tcurrently\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tman\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n37\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\thot\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\twater\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tneutral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tlanguage\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tgist\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMason\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tremarks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tquoted\t_\tVERB\tVBN\t_\t14\tdep\t_\t_\n17\tfirst\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tVillage\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tVoice\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n23\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tpaid\t_\tADJ\tVBN\t_\t27\tamod\t_\t_\n27\tspokesman\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n28\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n30\tRudolph\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tGiuliani\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tmayoral\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tcampaign\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n36\tthen\t_\tADV\tRB\t_\t16\tconj\t_\t_\n37\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tNewsweek\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\tafter\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n40\the\t_\tPRON\tPRP\t_\t44\tnsubj\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tcampaign\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n44\tparted\t_\tVERB\tVBD\t_\t36\tadvcl\t_\t_\n45\tcompany\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMason\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tJewish\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tvoters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tfeel\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n9\tguilty\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\ttoward\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tblacks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tso\t_\tADP\tIN\t_\t8\tdep\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsupport\t_\tVERB\tVBP\t_\t8\tparataxis\t_\t_\n16\tblack\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcandidates\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tuncritically\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tblack\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tvoters\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tfeel\t_\tVERB\tVBP\t_\t2\tccomp\t_\t_\n8\tbitter\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tracial\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdiscrimination\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tso\t_\tADP\tIN\t_\t7\tdep\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\ttoo\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\tsupport\t_\tVERB\tNN\t_\t7\tparataxis\t_\t_\n19\tblack\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tcandidates\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tuncritically\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tJews\t_\tPROPN\tNNPS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tcontributed\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tmore\t_\tADJ\tRBR\t_\t6\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tblack\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcauses\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyears\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tvice\t_\tX\tNN\t_\t16\tcompound\t_\t_\n16\tversa\t_\tX\tRB\t_\t6\tadvcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMason\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tdid\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tuse\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tneutral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tlanguage\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpractitioner\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tethnic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\thumor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\told\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdays\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBorscht\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBelt\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tlive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttelevision\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnightclub\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcircuit\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMason\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n25\tinstinctively\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tvernacular\t_\tNOUN\tJJ\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tJews\t_\tPROPN\tNNPS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tsick\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomplexes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tcalled\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n14\tDavid\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tDinkins\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGiuliani\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tblack\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\topponent\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tfancy\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tshvartze\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n27\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmustache\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMason\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tused\t_\tVERB\tVBN\t_\t30\tadvcl\t_\t_\n6\tless\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n7\tderogatory\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tlanguage\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tarticulate\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n11\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\tamateur\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tanalysis\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tvoting\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tbehavior\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\tfellow\t_\tNOUN\tJJ\t_\t22\tcompound\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tYorkers\t_\tPROPN\tNNPS\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n24\twould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\twater\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n27\tbe\t_\tVERB\tVB\t_\t30\tcop\t_\t_\n28\tquite\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n29\tso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\thot\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n31\t?\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n2\tprobably\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n3\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n5\tbecause\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t19\tnsubj\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tnone\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpeople\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tupset\t_\tADJ\tVBN\t_\t11\tamod\t_\t_\n13\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMason\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tremarks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\tbothered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdistinguish\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tbetween\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsubstance\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\this\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tcomments\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tfact\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n31\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\the\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\tused\t_\tVERB\tVBD\t_\t30\tccomp\t_\t_\n34\tinsulting\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tlanguage\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMason\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tcritics\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\timplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\ttype\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tethnic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\thumor\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\titself\t_\tPRON\tPRP\t_\t21\tnmod:npmod\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tform\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tracism\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tstate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcounsel\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tNAACP\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMason\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n18\tlike\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdinosaur\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tfast\t_\tADV\tJJ\t_\t4\tadvmod\t_\t_\n4\tleaving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplace\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\twhere\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n8\the\t_\tPRON\tPRP\t_\t10\tnsubjpass\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\tauxpass\t_\t_\n10\tstuck\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcritics\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfail\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tdistinguish\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tbetween\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttype\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tethnic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\thumor\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\taims\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n14\tat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tdisparaging\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n16\tanother\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tgroup\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t23\tcase\t_\t_\n20\tas\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n22\tPolish\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tjokes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\ttype\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n29\tthat\t_\tPRON\tWDT\t_\t31\tnsubj\t_\t_\n30\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n31\tdouble-edged\t_\tADJ\tJJ\t_\t28\tacl:relcl\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\taiming\t_\tVERB\tVBG\t_\t31\txcomp\t_\t_\n34\tinward\t_\tADV\tJJ\t_\t33\tadvmod\t_\t_\n35\tas\t_\tADV\tRB\t_\t34\tcc\t_\t_\n36\twell\t_\tADV\tRB\t_\t35\tmwe\t_\t_\n37\tas\t_\tADP\tIN\t_\t35\tmwe\t_\t_\n38\toutward\t_\tADV\tJJ\t_\t34\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlatter\t_\tADJ\tJJ\t_\t6\tnsubj\t_\t_\n3\ttypically\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\thumor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tunderdog\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubjpass\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tperfected\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tboth\t_\tDET\tCC\t_\t17\tcc:preconj\t_\t_\n17\tblacks\t_\tPROPN\tNNS\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tJews\t_\tPROPN\tNNS\t_\t17\tconj\t_\t_\n20\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tminstrel\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tvaudeville\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\tstage\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n26\tas\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmeans\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n29\tof\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n30\tmocking\t_\tVERB\tVBG\t_\t28\tacl\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n32\twhite\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tgentile\t_\tADJ\tJJ\t_\t32\tconj\t_\t_\n35\taudiences\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n36\talong\t_\tADP\tIN\t_\t35\tadvmod\t_\t_\n37\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tthemselves\t_\tPRON\tPRP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\thands\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tzealot\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tlike\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tLenny\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBruce\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tdouble-edged\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tblade\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tcut\t_\tVERB\tVB\t_\t0\troot\t_\t_\n16\tboth\t_\tDET\tCC\t_\t18\tcc:preconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tself\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\taudience\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tribbons\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\twielded\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n3\tby\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpro\t_\tNOUN\tFW\t_\t2\tnmod\t_\t_\n6\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tJackie\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMason\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tconstructive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tform\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmischief\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tconstructive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n3\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBecause\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n2\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tall\t_\tDET\tPDT\t_\t6\tdet:predet\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmedia\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tprattle\t_\tNOUN\tVBP\t_\t16\tnmod\t_\t_\n7\tabout\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tcomedy\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpolitics\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tnot\t_\tADV\tRB\t_\t12\tneg\t_\t_\n12\tmixing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n16\tsimilar\t_\tADJ\tJJ\t_\t23\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tone\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\trespect\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t:\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n21\tBoth\t_\tDET\tCC\t_\t23\tnsubj\t_\t_\n22\tcan\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tserve\t_\tVERB\tVB\t_\t0\troot\t_\t_\n24\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tmechanisms\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tfor\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\teasing\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n28\ttensions\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n30\tfacilitating\t_\tVERB\tVBG\t_\t27\tconj\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tco-existence\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tgroups\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tconflict\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhy\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tdangerous\t_\tADJ\tJJ\t_\t2\tadvcl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\thave\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\twell-intentioned\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tthought\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tpolice\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcollege\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcampuses\t_\tNOUN\tNNS\t_\t19\tdep\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\telsewhere\t_\tADV\tRB\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n19\ttaboo\t_\tVERB\tNN\t_\t8\tccomp\t_\t_\n20\tall\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcritical\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmention\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tgroup\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdifferences\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tElizabeth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tKristol\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\twrote\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tTimes\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tjust\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n11\tbefore\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tMason\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdonnybrook\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n17\tPerhaps\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n18\tintolerance\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tnot\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tboil\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tover\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tsuch\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tintensity\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tif\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\thonest\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdifferences\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n29\twere\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tallowed\t_\tVERB\tVBN\t_\t21\tadvcl\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tsimmer\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tquestion\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tconflicts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tstill\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\texist\t_\tVERB\tVBP\t_\t35\tdep\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tundeniably\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tdo\t_\tVERB\tVBP\t_\t9\tparataxis\t_\t_\n15\t-RRB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\tif\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tMason\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\ttype\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tethnic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thumor\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n27\tpasse\t_\tADJ\tJJ\t_\t9\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n29\tthen\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n30\twhat\t_\tPRON\tWP\t_\t32\tdet\t_\t_\n31\tother\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmeans\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n33\tdo\t_\tAUX\tVBP\t_\t35\taux\t_\t_\n34\twe\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\thave\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n36\tfor\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n37\tletting\t_\tVERB\tVBG\t_\t35\tadvcl\t_\t_\n38\toff\t_\tADP\tRP\t_\t37\tcompound:prt\t_\t_\n39\tsteam\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n40\t?\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tDo\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n2\tn't\t_\tPART\tRB\t_\t3\tneg\t_\t_\n3\tsay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tTV\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsitcom\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tthat\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n10\thappens\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tgenre\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n15\tthat\t_\tADP\tIN\t_\t28\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tdesperate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tneed\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tattract\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\teverybody\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\toffend\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n26\tnobody\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n28\tresembles\t_\tVERB\tVBZ\t_\t14\tacl:relcl\t_\t_\n29\tpolitics\t_\tNOUN\tNNS\t_\t28\txcomp\t_\t_\n30\tmore\t_\tADV\tJJR\t_\t28\tadvmod\t_\t_\n31\tthan\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n33\tdoes\t_\tAUX\tVBZ\t_\t34\taux\t_\t_\n34\tcomedy\t_\tNOUN\tNN\t_\t30\tadvcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\ttrue\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tsitcoms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tallow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\tgroup\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdifferences\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tsimmer\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n15\tyuppies\t_\tNOUN\tNNS\t_\t3\tparataxis\t_\t_\n16\tvs.\t_\tADP\tCC\t_\t18\tcase\t_\t_\n17\tblue-collar\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tBostonians\t_\tPROPN\tNNS\t_\t15\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tCheers\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n24\tchildren\t_\tNOUN\tNNS\t_\t15\tdep\t_\t_\n25\tvs.\t_\tADP\tCC\t_\t26\tcase\t_\t_\n26\tadults\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n29\tThe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tCosby\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tShow\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthese\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdifferences\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tmake\t_\tVERB\tVBP\t_\t6\tacl:relcl\t_\t_\n9\theadlines\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\tChicken\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSoup\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMason\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tplays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tJackie\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tJewish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbachelor\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n15\tcourting\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tMaddie\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n17\t-LRB-\t_\tPUNCT\t-LRB-\t_\t19\tpunct\t_\t_\n18\tLynn\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tRedgrave\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t19\tpunct\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tIrish\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\twidow\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tmother\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tthree\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n30\tagainst\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\twishes\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\this\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n35\tmother\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t-LRB-\t_\tPUNCT\t-LRB-\t_\t38\tpunct\t_\t_\n37\tRita\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tKarin\t_\tPROPN\tNNP\t_\t35\tappos\t_\t_\n39\t-RRB-\t_\tPUNCT\t-RRB-\t_\t38\tpunct\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n41\ther\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n42\tbrother\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tMichael\t_\tPROPN\tNNP\t_\t35\tconj\t_\t_\n44\t-LRB-\t_\tPUNCT\t-LRB-\t_\t46\tpunct\t_\t_\n45\tBrandon\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tMaggart\t_\tPROPN\tNNP\t_\t43\tappos\t_\t_\n47\t-RRB-\t_\tPUNCT\t-RRB-\t_\t46\tpunct\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tPART\tVBZ\t_\t3\tdep\t_\t_\n3\tworth\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tnoting\t_\tVERB\tVBG\t_\t3\tdep\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tboth\t_\tDET\tCC\t_\t8\tdet\t_\t_\n7\tdisapproving\t_\tADJ\tVBG\t_\t8\tamod\t_\t_\n8\trelatives\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n10\timmigrants\t_\tNOUN\tNNS\t_\t3\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tleast\t_\tADJ\tJJS\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tboth\t_\tDET\tDT\t_\t6\tdep\t_\t_\n6\tspeak\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taccents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tas\t_\tSCONJ\tRB\t_\t12\tdep\t_\t_\n12\tdo\t_\tVERB\tVBP\t_\t6\tadvcl\t_\t_\n13\tJackie\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tMaddie\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n6\tobvious\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n9\tChicken\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSoup\t_\tPROPN\tNNP\t_\t14\tnsubjpass\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tbeing\t_\tAUX\tVBG\t_\t14\tauxpass\t_\t_\n14\tmade\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\told\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\trecipe\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsafe\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tone\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n6\timagine\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tromance\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tquestion\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tOrthodox\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tJew\t_\tPROPN\tNN\t_\t6\tadvcl\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmember\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tNation\t_\tPROPN\tNN\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tIslam\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBack\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\t1920s\t_\tNOUN\tCD\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tplay\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tmovie\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tversions\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tAbie\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tIrish\t_\tPROPN\tJJ\t_\t16\tcompound\t_\t_\n16\tRose\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tmade\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttheme\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcourtship\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tbetween\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tassimilated\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\toffspring\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tJewish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tIrish\t_\tADJ\tJJ\t_\t28\tconj\t_\t_\n31\timmigrants\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\tso\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tpopular\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n34\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n35\tits\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n36\tauthor\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tAnne\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tNichols\t_\tPROPN\tNNP\t_\t36\tappos\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n41\tlost\t_\tVERB\tVBD\t_\t33\tccomp\t_\t_\n42\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tplagiarism\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tsuit\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n45\ton\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tgrounds\t_\tNOUN\tNNS\t_\t41\tnmod\t_\t_\n48\tthat\t_\tSCONJ\tIN\t_\t52\tmark\t_\t_\n49\tthe\t_\tDET\tDT\t_\t50\tdet\t_\t_\n50\tplot\t_\tNOUN\tNN\t_\t52\tnsubj\t_\t_\n51\thas\t_\tAUX\tVBZ\t_\t52\taux\t_\t_\n52\tentered\t_\tVERB\tVBN\t_\t47\tccomp\t_\t_\n53\tthe\t_\tDET\tDT\t_\t55\tdet\t_\t_\n54\tpublic\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n55\tdomain\t_\tNOUN\tNN\t_\t52\tdobj\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tremained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthere\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tevidenced\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\treappearance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t1972\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tCBS\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tsitcom\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tcalled\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tBridget\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n20\tLoves\t_\tPROPN\tVBZ\t_\t21\tdep\t_\t_\n21\tBernie\t_\tPROPN\tNNP\t_\t17\txcomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n24\twhose\t_\tPRON\tWP$\t_\t26\tnmod:poss\t_\t_\n25\tsole\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdistinction\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n30\tled\t_\tVERB\tVBD\t_\t27\tccomp\t_\t_\n31\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\treal-life\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tmarriage\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tMeredith\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tBaxter\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tDavid\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tBirney\t_\tPROPN\tNNP\t_\t37\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tClearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tquestion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tChicken\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSoup\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tnot\t_\tPART\tRB\t_\t10\tneg\t_\t_\n12\twhether\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpot\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tboil\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n17\tover\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n20\twhether\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n22\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tsimmer\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tall\t_\tDET\tDT\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSo\t_\tADP\tRB\t_\t2\tcase\t_\t_\n2\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbubbles\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tfew\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tfar\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tbetween\t_\tADV\tIN\t_\t8\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tPart\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tproblem\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttendency\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tall\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsitcoms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tever\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n13\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tdidactic\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdays\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tNorman\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tLear\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tpreach\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n23\tabout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tsocial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tissues\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\textent\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttendency\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\temerges\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\twhenever\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshow\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\ttries\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tenlighten\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tus\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tethnic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tstereotypes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tby\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\treversing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tMichael\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tdislikes\t_\tVERB\tNN\t_\t0\troot\t_\t_\n6\tJackie\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n7\tnot\t_\tADV\tRB\t_\t14\tdep\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tshrewd\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tJewish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbusinessman\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tquits\t_\tVERB\tVBZ\t_\t14\tconj\t_\t_\n20\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\twell-paying\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tjob\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tsalesman\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tin\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\torder\t_\tNOUN\tNN\t_\t26\tmwe\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbecome\t_\tVERB\tVB\t_\t19\tadvcl\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tsocial\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tworker\t_\tNOUN\tNN\t_\t29\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n3\tproblematic\t_\tADJ\tJJ\t_\t4\tdep\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tincompatibility\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tsitcom\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpreachiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMason\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tcomic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpersona\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tmoments\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tshow\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\toccur\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbeginning\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tend\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t19\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n16\toccasionally\t_\tADV\tRB\t_\t19\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmiddle\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t19\tpunct\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t25\tadvmod\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMason\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tslips\t_\tVERB\tVBZ\t_\t19\tacl:relcl\t_\t_\n26\tinto\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tstandup\t_\tADJ\tNN\t_\t29\tamod\t_\t_\n29\tmode\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n31\tstarts\t_\tNOUN\tVBZ\t_\t25\tconj\t_\t_\n32\tmeting\t_\tVERB\tVBG\t_\t31\txcomp\t_\t_\n33\tout\t_\tADP\tRP\t_\t32\tcompound:prt\t_\t_\n34\tthat\t_\tDET\tIN\t_\t37\tdet\t_\t_\n35\told-fashioned\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n36\tJewish\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tmischief\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n38\tto\t_\tADP\tTO\t_\t40\tcase\t_\t_\n39\tother\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tpeople\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n41\tas\t_\tADV\tRB\t_\t40\tcc\t_\t_\n42\twell\t_\tADV\tRB\t_\t41\tmwe\t_\t_\n43\tas\t_\tADP\tIN\t_\t41\tmwe\t_\t_\n44\tto\t_\tADP\tTO\t_\t45\tcase\t_\t_\n45\thimself\t_\tPRON\tPRP\t_\t40\tconj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\ttoo\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\toften\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\troutines\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tlack\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tspark\t_\tNOUN\tVB\t_\t7\tdobj\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsitcom\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tlike\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsitcoms\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n18\ttimid\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n19\tabout\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tconfronting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tMason\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\ttrade\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\t-\t_\tPUNCT\t:\t_\t24\tpunct\t_\t_\n28\tethnic\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tdifferences\t_\tNOUN\tNNS\t_\t24\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t'm\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tnot\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tsuggesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tproducers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tstart\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n9\tputting\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\ttogether\t_\tADV\tRP\t_\t9\tadvmod\t_\t_\n11\tepisodes\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tabout\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttopics\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tlike\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tCatholic-Jewish\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdispute\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tover\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tCarmelite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tconvent\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tAuschwitz\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissue\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tracial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\ttensions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCity\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcool\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tdown\t_\tADP\tRB\t_\t15\tcompound:prt\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n18\tnot\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\theat\t_\tVERB\tNN\t_\t15\tdep\t_\t_\n20\tup\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tbefore\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\tcan\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tsimmer\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tam\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tsuggesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tstop\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n8\trequiring\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMason\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tinterrupt\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tclassic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshtik\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tline\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tcaring\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tpeople\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n27\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tsound\t_\tVERB\tVB\t_\t18\tacl:relcl\t_\t_\n29\tshmaltzy\t_\tNOUN\tNN\t_\t28\txcomp\t_\t_\n30\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tlips\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tMiss\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tAmerica\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tJackie\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tought\t_\tAUX\tMD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tknow\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tyou\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\tca\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n16\tsoup\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\twithout\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tturning\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n19\tup\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tflame\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tofficial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tWhite\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tHouse\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\treaction\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\t60-year\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\thistory\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcalm\t_\tADJ\tNN\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tright\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\tup\t_\tADP\tIN\t_\t19\tcase\t_\t_\n21\tthrough\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTreasury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tSecretary\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tNicholas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBrady\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstatement\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstock-market\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tdecline\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tsignal\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n18\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tfundamental\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tchange\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcondition\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\teconomy\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\teconomy\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tadded\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\twell-balanced\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\toutlook\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n16\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tcontinued\t_\tADJ\tVBN\t_\t19\tamod\t_\t_\n18\tmoderate\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tgrowth\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tSound\t_\tVERB\tNN\t_\t0\troot\t_\t_\n2\tfamiliar\t_\tADJ\tJJ\t_\t1\txcomp\t_\t_\n3\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t16\tdep\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t6\tdobj\t_\t_\n4\tRonald\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tReagan\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t2\tdep\t_\t_\n7\tafter\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t1987\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcrash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t16\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tThe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tunderlying\t_\tADJ\tVBG\t_\t15\tamod\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tsound\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tnothing\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n4\twrong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teconomy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\tall\t_\tDET\tPDT\t_\t11\tdet:predet\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tindices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t2\tparataxis\t_\t_\n13\tup\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHeard\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tthat\t_\tPRON\tIN\t_\t1\tdobj\t_\t_\n3\tbefore\t_\tADV\tIN\t_\t1\tadvmod\t_\t_\n4\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t1929\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tcrash\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tHerbert\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tHoover\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n11\tThe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfundamental\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbusiness\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcountry\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t...\t_\tPUNCT\t:\t_\t24\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n19\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tsound\t_\tADJ\tNN\t_\t24\tamod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tprosperous\t_\tADJ\tJJ\t_\t21\tconj\t_\t_\n24\tbasis\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRobinson\t_\tPROPN\tNNP\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t57\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\told\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\telected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\texecutive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tofficer\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmaker\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tmagnetic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\trecording\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\theads\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tdisk\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tdrives\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t4\tcop\t_\t_\n4\tpresident\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tAmperex\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tElectronics\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdivision\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tNorth\t_\tPROPN\tJJ\t_\t20\tcompound\t_\t_\n18\tAmerican\t_\tPROPN\tJJ\t_\t20\tcompound\t_\t_\n19\tPhilips\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\titself\t_\tPRON\tPRP\t_\t20\tappos\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsubsidiary\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tN.V\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n28\tPhilips\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tNetherlands\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tJ.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tLawson\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tJr.\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t68\t_\tNUM\tCD\t_\t4\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n10\tbeen\t_\tVERB\tVBN\t_\t13\tcop\t_\t_\n11\tacting\t_\tADJ\tVBG\t_\t13\tamod\t_\t_\n12\tchief\t_\tADJ\tNN\t_\t13\tamod\t_\t_\n13\texecutive\t_\tNOUN\tNN\t_\t4\tacl:relcl\t_\t_\n14\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJune\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t14\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tchairman\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tformer\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\texecutive\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tEric\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tW.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMarkrud\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tresigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tJune\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecision\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tapprove\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tbare-bones\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdeficit-reduction\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbill\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\twithout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tcapital-gains\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n14\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcut\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tleaves\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\topen\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpossibility\t_\tNOUN\tNN\t_\t18\tdep\t_\t_\n21\tof\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tenacting\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tgains\t_\tNOUN\tNNS\t_\t26\tcompound\t_\t_\n25\ttax\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\treduction\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\tthis\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t22\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tLate\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tnight\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tSenate\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t87-7\t_\tNUM\tCD\t_\t7\tadvmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tapprove\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\testimated\t_\tADJ\tVBN\t_\t16\tamod\t_\t_\n13\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n14\t13.5\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tmeasure\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t20\tnsubjpass\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\tauxpass\t_\t_\n20\tstripped\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\thundreds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tprovisions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\thave\t_\tAUX\tVB\t_\t28\taux\t_\t_\n28\twidened\t_\tVERB\tVBN\t_\t22\tacl:relcl\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\trather\t_\tADV\tRB\t_\t28\tcc\t_\t_\n31\tthan\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\tnarrowed\t_\tVERB\tVBN\t_\t28\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n34\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n35\tfederal\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n36\tbudget\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tdeficit\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLawmakers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tdrastically\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tstreamlined\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbill\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tblunt\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n8\tcriticism\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n12\tbloated\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tspecial-interest\t_\tNOUN\tJJ\t_\t16\tdep\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbreaks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tspending\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tincreases\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tputting\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdeficit-reduction\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcategory\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tof\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tbeing\t_\tVERB\tVBG\t_\t16\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tdeficit-reduction\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbill\t_\tNOUN\tNN\t_\t11\tacl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tSenate\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n21\tBudget\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tCommittee\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tChairman\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tJames\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSasser\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tD.\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tTenn\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n31\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tsupporters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttrimmer\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n7\tlegislation\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbills\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\tsoon\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tmoving\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tCongress\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tcarry\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n21\tsome\t_\tDET\tDT\t_\t20\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmeasures\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubjpass\t_\t_\n26\thad\t_\tAUX\tVBD\t_\t28\taux\t_\t_\n27\tbeen\t_\tAUX\tVBN\t_\t28\tauxpass\t_\t_\n28\tcast\t_\tVERB\tVBN\t_\t24\tacl:relcl\t_\t_\n29\taside\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tincluding\t_\tVERB\tVBG\t_\t35\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tcapital-gains\t_\tNOUN\tNNS\t_\t35\tcompound\t_\t_\n34\ttax\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tcut\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tcompanion\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n6\tdeficit-reduction\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\talready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tpassed\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tHouse\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcapital-gains\t_\tNOUN\tJJ\t_\t16\tcompound\t_\t_\n16\tprovision\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tHouse-Senate\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tnegotiations\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tbegin\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tmidweek\t_\tNOUN\tJJ\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tlast\t_\tVERB\tJJ\t_\t6\tconj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\twhile\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tNo\t_\tDET\tDT\t_\t3\tneg\t_\t_\n3\tone\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tpredict\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n6\texactly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thappen\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tHouse\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tside\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tSenate\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tMinority\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tLeader\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tRobert\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tDole\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n22\t-LRB-\t_\tPUNCT\t-LRB-\t_\t23\tpunct\t_\t_\n23\tR.\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tKan\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t23\tpunct\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tadded\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tRepublicans\t_\tPROPN\tNNPS\t_\t13\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tDemocrats\t_\tPROPN\tNNPS\t_\t9\tconj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\twork\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\ttogether\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\tcapital-gains\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\treform\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tWhite\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tBudget\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tDirector\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tRichard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tDarman\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\treporters\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tyesterday\t_\tADV\tNN\t_\t7\tnmod:tmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tadministration\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tpush\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tkeep\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tcapital-gains\t_\tNOUN\tNNS\t_\t20\tcompound\t_\t_\n20\tcut\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfinal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tversion\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbill\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tneed\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n6\tthis\t_\tPRON\tDT\t_\t5\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tway\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tget\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tcapital\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tgains\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tBudget\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tCommittee\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tChairman\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tLeon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPanetta\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n8\tD.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tCalif\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n12\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tinterview\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n19\tIf\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tthat\t_\tPRON\tDT\t_\t23\tnsubj\t_\t_\n21\t's\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tsignal\t_\tNOUN\tNN\t_\t33\tadvcl\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n25\tcomes\t_\tVERB\tVBZ\t_\t23\tacl:relcl\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tWhite\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tHouse\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n32\twill\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\thelp\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n34\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tgreat\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tdeal\t_\tNOUN\tNN\t_\t33\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecision\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsetback\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBush\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n14\tapproval\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tcapital-gains\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n18\ttax\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcut\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tless\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n21\tcertain\t_\tADJ\tJJ\t_\t13\txcomp\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOpponents\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcut\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tplaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\thardball\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSenate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tMajority\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLeader\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tGeorge\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMitchell\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tD.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tMaine\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tconfident\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n18\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tHouse-Senate\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tagreement\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tdeficit-reduction\t_\tNOUN\tJJ\t_\t24\tcompound\t_\t_\n24\tlegislation\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\tinclude\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n28\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tcapital-gains\t_\tNOUN\tNNS\t_\t31\tcompound\t_\t_\n30\ttax\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tcut\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsenior\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\taide\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tHouse\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tWays\t_\tPROPN\tNNPS\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tMeans\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCommittee\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\twhere\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n14\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlegislation\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\toriginates\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\tare\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n21\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n22\tany\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n24\tplans\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tproduce\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tanother\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\ttax\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tbill\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\tthat\t_\tPRON\tWDT\t_\t32\tnsubj\t_\t_\n31\tcould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n32\tcarry\t_\tVERB\tVB\t_\t29\tacl:relcl\t_\t_\n33\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tgains\t_\tNOUN\tNNS\t_\t36\tcompound\t_\t_\n35\ttax\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tcut\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n37\tthis\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tobvious\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tplace\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tattach\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tcapital-gains\t_\tNOUN\tNNS\t_\t9\tcompound\t_\t_\n8\ttax\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcut\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tperhaps\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tpopular\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\titems\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n16\tstripped\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tdeficit-reduction\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbill\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlegislation\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\traise\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tfederal\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tborrowing\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tlimit\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tlegislation\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tmust\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tenacted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tbill\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tpared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tattempt\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tspeed\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tdeficit-reduction\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tCongress\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBecause\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlegislation\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\tcompleted\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBush\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tuntil\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tmidnight\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\ttonight\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tenact\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n17\tacross-the-board\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tspending\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcuts\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tmandated\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tGramm-Rudman\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tdeficit-reduction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tlaw\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSenators\t_\tNOUN\tNNPS\t_\t2\tnsubj\t_\t_\n2\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tneed\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tavoid\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tthose\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcuts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tpressure\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tHouse\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tagree\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tstreamlined\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbill\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tHouse\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\treluctant\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tjoin\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsenators\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tkey\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\twhether\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tRepublicans\t_\tPROPN\tNNPS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\twilling\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tacquiesce\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tSenate\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tcolleagues\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tdecision\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdrop\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tpet\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tprovisions\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tAlthough\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubjpass\t_\t_\n4\tam\t_\tAUX\tVBP\t_\t5\tauxpass\t_\t_\n5\tencouraged\t_\tVERB\tVBN\t_\t33\tadvcl\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSenate\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\taction\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t33\tparataxis\t_\t_\n13\tChairman\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tDan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tRostenkowski\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n17\tD.\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tIll\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tHouse\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWays\t_\tPROPN\tNNPS\t_\t15\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tMeans\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCommittee\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n32\tis\t_\tVERB\tVBZ\t_\t33\tcop\t_\t_\n33\tuncertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n34\twhether\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tclean\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tbill\t_\tNOUN\tNN\t_\t40\tnsubjpass\t_\t_\n38\tcan\t_\tAUX\tMD\t_\t40\taux\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tachieved\t_\tVERB\tVBN\t_\t33\tccomp\t_\t_\n41\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tupcoming\t_\tADJ\tVBG\t_\t44\tamod\t_\t_\n44\tconference\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\twith\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tSenate\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n49\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tquestion\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\thovering\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdebate\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t12\tdobj\t_\t_\n10\tPresident\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tBush\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tthinks\t_\tVERB\tVBZ\t_\t8\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tAUX\tVBN\t_\t4\taux\t_\t_\n4\tresisting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstripped-down\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\twithout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tguaranteed\t_\tADJ\tVBN\t_\t11\tamod\t_\t_\n11\tvote\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n14\tcapital-gains\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcut\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tRepublican\t_\tADJ\tNNP\t_\t3\tamod\t_\t_\n3\tsenators\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n6\tway\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tovercome\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprocedural\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\thurdle\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\tgarner\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\t60\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tvotes\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tneeded\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\twin\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcapital-gains\t_\tNOUN\tNNS\t_\t22\tcompound\t_\t_\n22\tissue\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tfloor\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n27\tso\t_\tADP\tIN\t_\t4\tdep\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\twent\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n30\tahead\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tstreamlined\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tbill\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tbill\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tstripped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n8\tpopular\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tthough\t_\tADP\tIN\t_\t11\tdep\t_\t_\n11\trevenue-losing\t_\tADJ\tNN\t_\t13\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tprovisions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnumber\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t16\tnmod\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\tauxpass\t_\t_\n20\tincluded\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tHouse-passed\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbill\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tchild-care\t_\tNOUN\tJJ\t_\t5\tcompound\t_\t_\n5\tinitiative\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\textensions\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tsoon-to-expire\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\ttax\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tbreaks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tlow-income\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thousing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tresearch-and-development\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\texpenditures\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tmissing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tSenate\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tbill\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t2\taux\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tHouse\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\trepeal\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlaw\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcalled\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n17\tSection\t_\tPROPN\tNNP\t_\t16\txcomp\t_\t_\n18\t89\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\tcompels\t_\tVERB\tVBZ\t_\t14\tacl:relcl\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tgive\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n25\trank-and-file\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tworkers\t_\tNOUN\tNNS\t_\t24\tiobj\t_\t_\n27\tcomparable\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\thealth\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tbenefits\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n30\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n31\ttop\t_\tADJ\tJJ\t_\t32\tdep\t_\t_\n32\tpaid\t_\tVERB\tVBN\t_\t33\tamod\t_\t_\n33\texecutives\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\thigh-profile\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprovision\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n4\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n6\toriginally\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tSenate\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbill\t_\tNOUN\tNN\t_\t3\tacl:relcl\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tcut\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tbecause\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tlost\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n18\tmoney\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tproposal\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n22\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tChairman\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tLloyd\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBentsen\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tD.\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tTexas\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n31\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tSenate\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tFinance\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCommittee\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\texpand\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tdeduction\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n40\tfor\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tindividual\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\tretirement\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\taccounts\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBentsen\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\thopes\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tSenate\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tconsider\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tthat\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmeasure\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tsoon\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdelight\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdoctors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbill\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tplan\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tpassed\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tFinance\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCommittee\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n19\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\thave\t_\tAUX\tVB\t_\t21\taux\t_\t_\n21\toverhauled\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tentire\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tphysician-reimbursement\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tsystem\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n26\tunder\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tMedicare\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdetriment\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tlow-income\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpeople\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n9\tefforts\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tboost\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tMedicaid\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tfunding\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tespecially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\trural\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tareas\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\talso\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\twere\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\tstricken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t25\tadvcl\t_\t_\n2\twhy\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n3\tsenators\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tgiving\t_\tVERB\tVBG\t_\t1\tccomp\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmuch\t_\tADJ\tRB\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tMexico\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tSen.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPete\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDomenici\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tranking\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tRepublican\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n19\ton\t_\tADP\tIN\t_\t23\tamod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tSenate\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tBudget\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCommittee\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n28\tWe\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\t're\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n30\tlooking\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n31\tlike\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tidiots\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThings\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tjust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tgone\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ttoo\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfar\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tSen.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDole\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmove\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\trequired\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tsacrifice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tevery\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsenator\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tworked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tothers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t2\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbecause\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n9\twere\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n10\tno\t_\tDET\tDT\t_\t11\tneg\t_\t_\n11\texceptions\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n12\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\trevenue-losing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprovisions\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n16\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tstricken\t_\tVERB\tVBN\t_\t9\tparataxis\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplan\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tFinance\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCommittee\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\thave\t_\tAUX\tVB\t_\t14\taux\t_\t_\n14\tincreased\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tincome\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tthreshold\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tbeyond\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t22\tnmod\t_\t_\n20\tsenior\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcitizens\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\thave\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tSocial\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tSecurity\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tbenefits\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\treduced\t_\tVERB\tVBD\t_\t22\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbill\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplan\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tpermanent\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\t3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n15\texcise\t_\tNOUN\tJJ\t_\t16\tcompound\t_\t_\n16\ttax\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n17\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tlong-distance\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\ttelephone\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tcalls\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tno\t_\tADV\tRB\t_\t3\tneg\t_\t_\n3\tlonger\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n4\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplan\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\thave\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\trepealed\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\twhat\t_\tPRON\tWP\t_\t12\tnsubj\t_\t_\n12\tremains\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcompleted-contract\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmethod\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\taccounting\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubjpass\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n22\tused\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n23\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tmilitary\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcontractors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\treduce\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\ttax\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tburden\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tdrops\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprovision\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\thave\t_\tAUX\tVB\t_\t9\taux\t_\t_\n9\tpermitted\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n10\tcorporations\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tuse\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n13\texcess\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tpension\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfunds\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tpay\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n18\thealth\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tbenefits\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tcurrent\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tretirees\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tstricken\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t2\tauxpass\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfivefold\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t2\tnsubjpass\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tmaximum\t_\tADJ\tNN\t_\t11\tamod\t_\t_\n10\tOccupational\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSafety\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tHealth\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tAdministration\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tpenalties\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\traised\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n21\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n22\t65\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tfiscal\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\t1990\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprovision\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\thave\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tmade\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tSocial\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSecurity\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAdministration\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n11\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tindependent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tagency\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\tauxpass\t_\t_\n15\texcised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tapproval\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tSenate\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tbill\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tespecially\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsweet\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSen.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMitchell\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twho\t_\tPRON\tWP\t_\t16\tnsubj\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\tproposed\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tstreamlining\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMitchell\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\trelations\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n5\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tBudget\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tDirector\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tDarman\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n11\tpushed\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n12\tfor\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcapital-gains\t_\tNOUN\tJJ\t_\t15\tcompound\t_\t_\n15\tcut\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n16\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\tadded\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmeasure\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tstrained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tsince\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tDarman\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\tchose\t_\tVERB\tVBD\t_\t25\tadvcl\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tbypass\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tMaine\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tDemocrat\t_\tPROPN\tNNP\t_\t31\tdobj\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n36\tdeal\t_\tVERB\tVB\t_\t31\tconj\t_\t_\n37\twith\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tother\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tlawmakers\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n40\tearlier\t_\tADV\tRBR\t_\t42\tadvmod\t_\t_\n41\tthis\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tyear\t_\tNOUN\tNN\t_\t29\tnmod:tmod\t_\t_\n43\tduring\t_\tADP\tIN\t_\t45\tcase\t_\t_\n44\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n45\tdispute\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n46\tover\t_\tADP\tIN\t_\t48\tcase\t_\t_\n47\tdrug\t_\tNOUN\tNN\t_\t48\tcompound\t_\t_\n48\tfunding\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n49\tin\t_\tADP\tIN\t_\t55\tcase\t_\t_\n50\tthe\t_\tDET\tDT\t_\t55\tdet\t_\t_\n51\tfiscal\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n52\t1989\t_\tNUM\tCD\t_\t55\tnummod\t_\t_\n53\tsupplemental\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n54\tspending\t_\tNOUN\tNN\t_\t55\tcompound\t_\t_\n55\tbill\t_\tNOUN\tNN\t_\t48\tnmod\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tdeficit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\treduction\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbill\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcontains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n7\t5.3\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ttax\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tincreases\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tfiscal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\t1990\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\t$\t_\tSYM\t$\t_\t6\tconj\t_\t_\n18\t26\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tfive\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tyears\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trevenue-raising\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprovisions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\taffect\t_\tVERB\tVBP\t_\t3\tacl:relcl\t_\t_\n7\tmostly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcorporations\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\twould\t_\tAUX\tMD\t_\t3\tdep\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tPrevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tcompanies\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tmade\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n7\tleveraged\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbuy-outs\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tfrom\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tgetting\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n11\tfederal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\ttax\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trefunds\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tresulting\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tcaused\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tinterest\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpayments\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tdebt\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tissued\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tfinance\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbuy-outs\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n29\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n30\tAug.\t_\tPROPN\tNNP\t_\t29\tnmod:tmod\t_\t_\n31\t2\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n33\t1989\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tmutual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tfunds\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tinclude\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\ttaxable\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tdividends\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\tpaid\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tthem\t_\tPRON\tPRP\t_\t12\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdate\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tthat\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdividends\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n21\tare\t_\tAUX\tVBP\t_\t22\tauxpass\t_\t_\n22\tdeclared\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n23\trather\t_\tADV\tRB\t_\t22\tcc\t_\t_\n24\tthan\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n25\treceived\t_\tVERB\tVBN\t_\t22\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n27\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tday\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\tafter\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\ttax\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tbill\t_\tNOUN\tNN\t_\t35\tnsubjpass\t_\t_\n34\tis\t_\tAUX\tVBZ\t_\t35\tauxpass\t_\t_\n35\tenacted\t_\tVERB\tVBN\t_\t29\tdep\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tClose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tloophole\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tregarding\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\temployee\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\townership\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tplans\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n12\tJune\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t6\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n15\t1989\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t20\tnsubjpass\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\tauxpass\t_\t_\n20\texploited\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n21\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tinvestment\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tbankers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tcorporate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\ttakeovers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trepeals\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t50\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tadvmod\t_\t_\n7\texclusion\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tgiven\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tloans\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tused\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tacquire\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tsecurities\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tan\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tESOP\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n24\tif\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tESOP\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\towns\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n28\tless\t_\tADJ\tJJR\t_\t30\tadvmod\t_\t_\n29\tthan\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\t30\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t27\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\temployer\t_\tNOUN\tNN\t_\t36\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tstock\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tCurb\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tjunk\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbonds\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tby\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tending\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n7\ttax\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbenefits\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tcertain\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n14\tas\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\tzero-coupon\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbonds\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tpostpone\t_\tVERB\tVBP\t_\t8\tacl:relcl\t_\t_\n20\tcash\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tinterest\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpayments\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRaise\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t851\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tby\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tsuspending\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tautomatic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\treduction\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tairport\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tairway\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\ttaxes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tSpeed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tup\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcollection\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tpayroll\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttax\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tlarge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n16\t1990\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tImpose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttax\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tozone-depleting\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tchemicals\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tsuch\t_\tADJ\tJJ\t_\t11\tcase\t_\t_\n10\tas\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tthose\t_\tPRON\tDT\t_\t7\tnmod\t_\t_\n12\tused\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tair\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tconditioners\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tStyrofoam\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tbeginning\t_\tVERB\tVBG\t_\t23\tcase\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t1.10\t_\tNUM\tCD\t_\t2\tadvcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tpound\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n26\tstarting\t_\tVERB\tVBG\t_\t28\tcase\t_\t_\n27\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tWithhold\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttaxes\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpaychecks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tcertain\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tfarm\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tworkers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tcurrently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\texempt\t_\tADJ\tVBP\t_\t11\tamod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\twithholding\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tChange\t_\tVERB\tNNP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcollection\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tgasoline\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\texcise\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttaxes\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tweekly\t_\tADV\tJJ\t_\t2\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tsemimonthly\t_\tADV\tJJ\t_\t2\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n15\tnext\t_\tADP\tJJ\t_\t16\tamod\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRestrict\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tability\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\treal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\testate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\towners\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tescape\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n11\ttaxes\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tby\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tswapping\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n14\tone\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpiece\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tproperty\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tanother\t_\tDET\tDT\t_\t13\tnmod\t_\t_\n20\tinstead\t_\tADV\tRB\t_\t22\tmark\t_\t_\n21\tof\t_\tSCONJ\tIN\t_\t20\tmwe\t_\t_\n22\tselling\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tcash\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tIncrease\t_\tVERB\tNN\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t5\tdep\t_\t_\n5\t6\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tperson\t_\tNOUN\tNN\t_\t5\tnmod:npmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t3\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tinternational\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tair-passenger\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tdeparture\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n18\timpose\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\t$\t_\tSYM\t$\t_\t22\tamod\t_\t_\n21\t3-a-person\t_\tADJ\tJJ\t_\t20\tdep\t_\t_\n22\ttax\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tinternational\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdepartures\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tcommercial\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tships\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tspending\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcuts\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tincreases\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfederal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfees\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tprovisions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tReduction\t_\tPROPN\tNN\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tMedicare\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tspending\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tfiscal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\t1990\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsome\t_\tDET\tDT\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n12\t2.8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpart\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n17\tby\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tcurbing\t_\tVERB\tVBG\t_\t2\tnmod\t_\t_\n19\tincreases\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\treimbursements\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tphysicians\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\timpose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbrief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfreeze\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tphysician\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfees\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\tnext\t_\tADP\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRemoval\t_\tPROPN\tNN\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tPostal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tService\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\toperating\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbudget\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbudget\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\treducing\t_\tVERB\tVBG\t_\t2\tdep\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdeficit\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t16\tnmod\t_\t_\n21\t1.77\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsimilar\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprovision\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tHouse\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tversion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tFederal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tAviation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAdministration\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\traise\t_\tVERB\tVB\t_\t2\tacl\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t239\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tcharging\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n15\tfees\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tcommercial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tairline-landing\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trights\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tYork\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tLaGuardia\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tJohn\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n27\tF.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n28\tKennedy\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tInternational\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tAirports\t_\tPROPN\tNNPS\t_\t24\tconj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n32\tO'Hare\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tInternational\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tAirport\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tChicago\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n38\tNational\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tAirport\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n40\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tWashington\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tIncreases\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tNuclear\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tRegulatory\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tCommission\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tfees\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\ttotaling\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n9\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n10\t54\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tDirection\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tCoast\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tGuard\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tcollect\t_\tVERB\tVB\t_\t2\tacl\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t50\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tusers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tCoast\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tGuard\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tservices\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRaising\t_\tVERB\tNNP\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tadditional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n6\t43\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tby\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tincreasing\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n10\texisting\t_\tADJ\tVBG\t_\t14\tamod\t_\t_\n11\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tCommunications\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tCommission\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tfees\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tpenalties\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\testablishing\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tfees\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tamateur\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tradio\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\toperators\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tship\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tstations\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tmobile\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tradio\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tfacilities\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tE.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tYang\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tarticle\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tresponse\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n4\tyour\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n5\toverly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\toptimistic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\toutdated\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpiece\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\ton\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\thow\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n12\tlong\t_\tADV\tJJ\t_\t14\tadvmod\t_\t_\n13\tunemployment\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tlasts\t_\tVERB\tVBZ\t_\t9\tacl\t_\t_\n15\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n16\tPeople\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n17\tPatterns\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tSept.\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n20\t20\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n22\t:\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n23\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n24\tam\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tcommunications\t_\tNOUN\tNNS\t_\t28\tcompound\t_\t_\n28\tfield\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tabove\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tentry\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tlevel\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tlaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\toff\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAugust\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t1988\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\tthorough\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\texhausting\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\tjob\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsearch\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n19\thired\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAugust\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t1989\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMy\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tunemployment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tinsurance\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tran\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tbefore\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tfound\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tjob\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tfound\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n14\tcutbacks\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tlayoffs\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tmany\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcompanies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstatistics\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n3\tquoted\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n9\tCensus\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tBureau\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\treport\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n13\tgarnered\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t1984\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t1986\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t27\tcop\t_\t_\n20\tout\t_\tADP\tIN\t_\t27\tadvmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tdate\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n24\tcertainly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n25\tas\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tNortheast\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n33\tpossibly\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\trest\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tcountry\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n4\tbothered\t_\tVERB\tVBD\t_\t10\tcsubj\t_\t_\n5\tme\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tmost\t_\tADV\tRBS\t_\t4\tadvmod\t_\t_\n7\tabout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpiece\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tthere\t_\tPRON\tEX\t_\t13\texpl\t_\t_\n13\tseemed\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n16\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tunderlying\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tattitude\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttell\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tyour\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\treaders\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tall\t_\tDET\tDT\t_\t25\tnsubj\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n25\twell\t_\tADJ\tRB\t_\t20\tdep\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t25\tpunct\t_\t_\n27\tif\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n28\tyou\t_\tPRON\tPRP\t_\t31\tnsubjpass\t_\t_\n29\t're\t_\tAUX\tVBP\t_\t31\taux\t_\t_\n30\tgetting\t_\tAUX\tVBG\t_\t31\tauxpass\t_\t_\n31\tlaid\t_\tVERB\tVBN\t_\t35\tcsubj\t_\t_\n32\toff\t_\tADP\tRP\t_\t31\tcompound:prt\t_\t_\n33\tdo\t_\tAUX\tVBP\t_\t35\taux\t_\t_\n34\tn't\t_\tPART\tRB\t_\t35\tneg\t_\t_\n35\tworry\t_\tVERB\tVB\t_\t25\tparataxis\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n38\tif\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tyou\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\t're\t_\tVERB\tVBP\t_\t41\tcop\t_\t_\n41\tunemployed\t_\tADJ\tJJ\t_\t48\tadvcl\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t48\tpunct\t_\t_\n43\tit\t_\tPRON\tPRP\t_\t48\tnsubj\t_\t_\n44\t's\t_\tVERB\tVBZ\t_\t48\tcop\t_\t_\n45\ta\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tseller\t_\tNOUN\tNN\t_\t48\tnmod:poss\t_\t_\n47\t's\t_\tPART\tPOS\t_\t46\tcase\t_\t_\n48\tmarket\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\ttop\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\toff\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tcaptioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tgraph\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tshowing\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\taverage\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tnumber\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tjob\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tsearch\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n22\tTime\t_\tNOUN\tNNP\t_\t7\tnmod\t_\t_\n23\tOff\t_\tADP\tIN\t_\t22\tamod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAre\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tkidding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLooking\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tjob\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tmost\t_\tADV\tRBS\t_\t10\tadvmod\t_\t_\n10\tanxious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tperiods\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tmy\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tlife\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tmost\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n20\tpeople\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tYour\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tpaper\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tneeds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tserious\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\treality\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcheck\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tReva\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLevin\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tCambridge\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tMass\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBULL\t_\tPROPN\tNN\t_\t5\tcompound\t_\t_\n2\tHN\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tINFORMATION\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSYSTEMS\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tmajority-owned\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tunit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tCie.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tdes\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tMachines\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tBull\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tedition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tname\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tunit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tmisstated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\treduced\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\trating\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t165\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tsubordinated\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdebt\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n18\tthis\t_\tDET\tDT\t_\t24\tdet\t_\t_\n19\tBeverly\t_\tPROPN\tNNP\t_\t24\tdep\t_\t_\n20\tHills\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\tCalif.\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tthrift\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n26\tciting\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n27\tturmoil\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tlow-grade\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n34\thigh-yield\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tsecurities\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\treduced\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\trating\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tthrift\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tsubordinated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdebt\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tB-2\t_\tADJ\tNN\t_\t5\tnmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tBa-2\t_\tADJ\tNN\t_\t5\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tkeep\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tdebt\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tunder\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\treview\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tpossible\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tfurther\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdowngrade\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tColumbia\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSavings\t_\tPROPN\tNNPS\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tholder\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tso-called\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tjunk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNew\t_\tADJ\tNNP\t_\t3\tamod\t_\t_\n2\tfederal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlegislation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tall\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tthrifts\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tdivest\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n9\tthemselves\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tsuch\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tspeculative\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tover\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tperiod\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tColumbia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSavings\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tavailable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdowngrade\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFRANKLIN\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSAVINGS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tASSOCIATION\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tOttawa\t_\tPROPN\tNNP\t_\t3\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tKan.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tdowngraded\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\trating\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tB-2\t_\tADJ\tNN\t_\t8\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tBa-3\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tless\t_\tADJ\tJJR\t_\t18\tadvmod\t_\t_\n17\tthan\t_\tADP\tIN\t_\t16\tmwe\t_\t_\n18\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tthrift\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tsubordinated\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnotes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trating\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tconcern\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tFranklin\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\ttroubled\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdiversification\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\trecord\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tbusiness\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\treason\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdowngrade\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n23\tciting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\ttroubles\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n28\tL.F.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tRothschild\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tsubsidiary\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tpossible\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tsale\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tother\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tsubsidiaries\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tperhaps\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n5\tconcern\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tgetting\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n10\tout\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tall\t_\tDET\tPDT\t_\t13\tdet:predet\t_\t_\n13\tthese\t_\tDET\tDT\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tFranklin\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tPresident\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tDuane\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tH.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHall\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlittle\t_\tADJ\tJJ\t_\t8\tnmod:npmod\t_\t_\n8\tpremature\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tpart\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tseemed\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n5\tsafe\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tgo\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\tback\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tinto\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tWall\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tStreet\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tsuffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tanother\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsevere\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tattack\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tnerves\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tDoes\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\tsignal\t_\tVERB\tNN\t_\t0\troot\t_\t_\n4\tanother\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBlack\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMonday\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tcoming\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOr\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n3\tthis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n4\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\textraordinary\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tbuying\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\topportunity\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n10\tlike\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tOct.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n12\t19\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\t1987\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\teventually\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tturned\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n18\tout\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tbe\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n4\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tleading\t_\tADJ\tVBG\t_\t7\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\texperts\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tmoney\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmanagers\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\tsay\t_\tVERB\tVBP\t_\t2\tdep\t_\t_\n12\tabout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\taction\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n18\thappens\t_\tVERB\tVBZ\t_\t11\tconj\t_\t_\n19\tnext\t_\tADV\tJJ\t_\t18\tadvmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\twhat\t_\tPRON\tWP\t_\t24\tdobj\t_\t_\n22\tinvestors\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\tshould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tdo\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tJoseph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGranville\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t'm\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tonly\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tone\t_\tNUM\tNN\t_\t24\tccomp\t_\t_\n7\twho\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n9\tthere\t_\tPRON\tEX\t_\t14\texpl\t_\t_\n10\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tOctober\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmassacre\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tall\t_\tADV\tDT\t_\t19\tadvmod\t_\t_\n17\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tlate\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tAugust\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tSeptember\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n24\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n25\tMr.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tGranville\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tonce\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n30\twidely\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tfollowed\t_\tVERB\tVBN\t_\t33\tamod\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tguru\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tstill\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n36\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\twell-known\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tnewsletter\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\twriter\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tEveryone\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\ttell\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttime\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\tdifferent\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tWell\t_\tADV\tUH\t_\t9\tdiscourse\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tways\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tdifferent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\ttechnically\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n15\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsame\t_\tADJ\tJJ\t_\t9\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttechnician\t_\tNOUN\tNN\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tobey\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsignals\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tRight\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\ttelling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tme\t_\tPRON\tPRP\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\thell\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n11\tout\t_\tADP\tIN\t_\t8\tadvmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\tstay\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n14\tout\t_\tADV\tRP\t_\t13\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tmajor\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsupport\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tuntil\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t2200\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tpossibility\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tgoing\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t2200\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGranville\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\teven\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tthink\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tbuying\t_\tVERB\tVBG\t_\t8\tnmod\t_\t_\n11\tuntil\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t16\tnmod:npmod\t_\t_\n14\t600\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tdep\t_\t_\n16\t700\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\thit\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n20\t52-week\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tlows\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n23\tabout\t_\tADV\tIN\t_\t25\tadvmod\t_\t_\n24\t100\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tstocks\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\thit\t_\tVERB\tVBD\t_\t3\tparataxis\t_\t_\n27\tnew\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tlows\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tMost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tpeople\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t10\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tno\t_\tDET\tDT\t_\t12\tneg\t_\t_\n12\tidea\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t17\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tmassacre\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpattern\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tlooks\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n18\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tElaine\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGarzarelli\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tquantitative\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tanalyst\t_\tNOUN\tNN\t_\t13\tccomp\t_\t_\n4\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tShearson\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tLehman\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tHutton\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tMs.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tGarzarelli\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\thad\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n13\twarned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tclients\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\ttake\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tmoney\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tout\t_\tADP\tIN\t_\t16\tadvmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t1987\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcrash\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tbig\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tshe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t13\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n11\tnot\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tOctober\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tmassacre\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n7\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tthose\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\toccurred\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1978\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\t1979\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tas\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthose\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\ther\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tindicators\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n14\tpositive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSo\t_\tADP\tIN\t_\t3\tdep\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthinks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdamage\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tshort-lived\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcontained\t_\tADJ\tVBD\t_\t8\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcorrections\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tlasted\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n5\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tdep\t_\t_\n7\tfour\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tweeks\t_\tNOUN\tNNS\t_\t4\tnmod:tmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\ttook\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t10%-12\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tnmod:npmod\t_\t_\n15\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\tshe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\texactly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsame\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tthing\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tas\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n10\tfar\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t14\tnsubjpass\t_\t_\n13\t'm\t_\tAUX\tVBP\t_\t14\tauxpass\t_\t_\n14\tconcerned\t_\tVERB\tJJ\t_\t10\tadvcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tshe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t22\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIndustrial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAverage\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tdropped\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n13\tbelow\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t2450\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n17\tIt\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n19\tjust\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n20\tbe\t_\tVERB\tVB\t_\t22\tcop\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfluke\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMy\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tadvice\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcalculates\t_\tVERB\tVBZ\t_\t10\tadvcl\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\taverage\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tnow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tsells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t12.5\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n14\ttimes\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t17\tnmod:poss\t_\t_\n16\t'\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tDET\tIN\t_\t4\tdet\t_\t_\n4\tratio\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tclimb\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t14.5\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tgiven\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tinterest\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trates\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n18\twithin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\trange\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n23\tfair\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tvalue\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tNed\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDavis\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tfall\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tmarks\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tstart\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbear\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDavis\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tpresident\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tNed\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tDavis\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tResearch\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDavis\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhose\t_\tPRON\tWP$\t_\t6\tnmod:poss\t_\t_\n6\tviews\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t9\tauxpass\t_\t_\n8\twidely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\trespected\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmoney\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmanagers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\texpects\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n17\tno\t_\tDET\tDT\t_\t19\tneg\t_\t_\n18\t1987-style\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcrash\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tunique\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcombination\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tMargin\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tdebt\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\trecord\t_\tADJ\tNN\t_\t8\tamod\t_\t_\n8\thigh\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttremendous\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tpublic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tenthusiasm\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tmutual\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfunds\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmain\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tportfolio\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tinsurance\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tmechanical\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\ttrading\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tsystem\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n13\tintended\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tprotect\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tinvestor\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tagainst\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tadvmod\t_\t_\n2\thundred\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdollars\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tselling\t_\tNOUN\tVBG\t_\t6\tnsubj\t_\t_\n6\tcontributed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tsnowball\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\teffect\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tToday\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n3\teven\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tup\t_\tADJ\tRB\t_\t7\tamod\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDavis\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t7\tparataxis\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tbrokerage\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tagree\t_\tVERB\tVBP\t_\t7\tadvcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\trefrain\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tnext\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tseveral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthough\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthings\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tlook\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n13\tbad\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t15\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\theading\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tNovember\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tprobably\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tyear-end\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trally\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tthen\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n13\tdown\t_\tADV\tRP\t_\t12\tadvmod\t_\t_\n14\tagain\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSort\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\ttwo-step\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tbear\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdownturn\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcarry\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIndustrial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAverage\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n12\tdown\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\taround\t_\tADP\tIN\t_\t15\tamod\t_\t_\n15\t2000\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n16\tsometime\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tnext\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tnormal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tbear\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tguess\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthat\t_\tADP\tDT\t_\t7\tnsubj\t_\t_\n5\t's\t_\tPART\tVBZ\t_\t7\tdep\t_\t_\n6\tmy\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tforecast\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tLeon\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCooperman\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tgoing\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n10\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tanother\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tOctober\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t'87\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tthink\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n5\tthat\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n6\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcase\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tall\t_\tDET\tDT\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCooperman\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpartner\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tGoldman\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tSachs\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\t&\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\tCo.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n26\tchairman\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tGoldman\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tSachs\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tAsset\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tManagement\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCooperman\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgood\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttime\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tpick\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tup\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tbargains\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n16\tdoes\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tthink\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\t's\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n21\tany\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tneed\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\trush\t_\tVERB\tNN\t_\t22\tacl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\topen\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\tweaker\t_\tADJ\tJJR\t_\t7\txcomp\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n12\tthen\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tfind\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n16\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tstability\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tticks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\toff\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tseveral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdifferences\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tacl\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tyears\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n12\tago\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tinterest\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\trates\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\taux\t_\t_\n8\tfalling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdollar\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tunlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\teconomy\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tappear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdanger\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\toverheating\t_\tVERB\tNN\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\teconomy\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tslower\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n6\tgrowth\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\talso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmeans\t_\tVERB\tVBZ\t_\t23\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\toutlook\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcorporate\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprofits\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tSo\t_\tADP\tIN\t_\t8\tdep\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tvery\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tmixed\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbag\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tconcludes\t_\tVERB\tVBZ\t_\t12\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n7\tThis\t_\tPRON\tDT\t_\t12\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n9\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgood\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tenvironment\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t16\tauxpass\t_\t_\n15\tfully\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tinvested\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tcome\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n6\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmargin\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\twith\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tlittle\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcash\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tportfolios\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tI\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tnot\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tdo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n23\tany\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tbuying\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\twe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tinto\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tconservative\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tportfolio\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tso\t_\tADP\tIN\t_\t3\tdep\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tlook\t_\tVERB\tVB\t_\t3\tparataxis\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tdo\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tsome\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmodest\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbuying\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tbehalf\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tclients\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t're\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlook\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbetter-known\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcompanies\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t14\tnsubjpass\t_\t_\n13\tgot\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tclocked\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tKenneth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGalbraith\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlatest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tmanifestation\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcapacity\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfinancial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcommunity\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\trecurrent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinsanity\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tGalbraith\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\teconomist\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsee\t_\tVERB\tVBP\t_\t17\tccomp\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\treaction\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\twhole\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\tjunk\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tbond\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\texplosion\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texplosion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tjunk\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\ttakeovers\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tlodged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlot\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tinsecure\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsecurities\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\thands\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n22\tloaded\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcorporations\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\tare\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tobjects\t_\tNOUN\tNNS\t_\t24\tacl:relcl\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\ttakeovers\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tfeared\t_\tADJ\tVBN\t_\t33\tamod\t_\t_\n33\ttakeovers\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n34\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\thuge\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tamounts\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tdebt\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n39\trather\t_\tADV\tRB\t_\t38\tcc\t_\t_\n40\tthan\t_\tADP\tIN\t_\t39\tmwe\t_\t_\n41\tequity\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tboth\t_\tCONJ\tDT\t_\t4\tdep\t_\t_\n4\tmade\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t6\tdep\t_\t_\n6\tuneasy\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcorporations\t_\tNOUN\tNNS\t_\t11\tdep\t_\t_\n10\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tvulnerable\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdepression\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tappear\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tlikely\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tresiliency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teconomy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tlarge\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\tthan\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcommonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsuppose\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\terror\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\thave\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdepression\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tback\t_\tADV\tRB\t_\t3\tadvcl\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tThirties\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n18\tmuch\t_\tADV\tJJ\t_\t27\tadvmod\t_\t_\n19\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfinancial\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcommunity\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tgovernment\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n26\tmay\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\ttry\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMario\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGabelli\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tmoney\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n4\tmanager\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tMario\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tGabelli\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\texpert\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\tat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tspotting\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n12\ttakeover\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcandidates\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\ttakeovers\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t21\tauxpass\t_\t_\n19\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n20\ttotally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tgone\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tCompanies\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tcompanies\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\taround\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tExamples\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n4\tFord\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJaguar\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tBellSouth\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tlooking\t_\tVERB\tVBG\t_\t5\tparataxis\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tLIN\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBroadcasting\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsorts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\ttakeovers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tdo\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tjunk\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tbig\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tbank\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tloans\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tfinance\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n16\tthem\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tso\t_\tADP\tIN\t_\t7\tdep\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGabelli\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tfigures\t_\tNOUN\tVBZ\t_\t7\tparataxis\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tcontinue\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t35\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tnmod:npmod\t_\t_\n8\tsince\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\t-LCB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tPresident\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n11\t-RCB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n12\tBush\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\ttook\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n14\toffice\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGabelli\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t4\tdep\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tso\t_\tADP\tIN\t_\t4\tdep\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcorrection\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n25\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\texpected\t_\tVERB\tVBN\t_\t24\txcomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tthinks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tanother\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcrash\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\tunlikely\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t2\tconj\t_\t_\n12\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tnibbling\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n16\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\tselected\t_\tADJ\tVBN\t_\t19\tamod\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tduring\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tplunge\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tStocks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tthrown\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\temotional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbasis\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tgreat\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\topportunity\t_\tNOUN\tNN\t_\t27\tccomp\t_\t_\n16\t-LCB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n17\tthis\t_\tDET\tDT\t_\t19\tdep\t_\t_\n18\t-RCB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n19\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tguys\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\tlike\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tme\t_\tPRON\tPRP\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n26\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n27\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tJim\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRogers\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tme\t_\tPRON\tPRP\t_\t3\tnmod\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthis\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpin\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tfinally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tpricked\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tballoon\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tRogers\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tprofessor\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tfinance\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tColumbia\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tUniversity\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n31\tformer\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tco-manager\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tone\t_\tNUM\tCD\t_\t32\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n37\tmost\t_\tADV\tRBS\t_\t38\tadvmod\t_\t_\n38\tsuccessful\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n39\thedge\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tfunds\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n41\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\thistory\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n44\tQuantum\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tFund\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n4\teconomic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproblems\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tfinancial\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tproblems\t_\tNOUN\tNNS\t_\t5\tappos\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n10\tahead\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfairly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tstrong\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tpossibility\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\trecession\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tsell\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n7\tdollars\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDealers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t4\tiobj\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tquote\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tthen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\trefuse\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttrade\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tstays\t_\tVERB\tVBZ\t_\t12\tadvcl\t_\t_\n5\tweak\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tsays\t_\tVERB\tVBZ\t_\t12\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tadd\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tinflationary\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpressures\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n20\tmake\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n22\thard\t_\tADJ\tRB\t_\t29\tdep\t_\t_\n23\tfor\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tFederal\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tReserve\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tBoard\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tease\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n30\tinterest\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\trates\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tvery\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tmuch\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRogers\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\two\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tdecide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\twhat\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tdo\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n10\tuntil\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsees\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n13\thow\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tLondon\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tTokyo\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tmarkets\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tgo\t_\tVERB\tVBP\t_\t12\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\trecommends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsell\t_\tVERB\tVBP\t_\t2\tccomp\t_\t_\n6\ttakeover-related\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\thang\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n11\ton\t_\tADP\tIN\t_\t10\tcompound:prt\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\tsome\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n17\tespecially\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tutilities\t_\tNOUN\tNNS\t_\t15\tdep\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n21\toften\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tdo\t_\tVERB\tVBP\t_\t18\tacl:relcl\t_\t_\n23\twell\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tperiods\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\teconomic\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tweakness\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCurzio\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tpeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tclaim\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tpredicted\t_\tVERB\tVBN\t_\t4\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t1987\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcrash\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tQueens\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tnewsletter\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n3\twriter\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n4\tFrancis\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tX.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCurzio\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\tactually\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n11\tHe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tstated\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\twriting\t_\tNOUN\tVBG\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tSeptember\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tDow\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tJones\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tIndustrial\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAverage\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n25\tlikely\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tdecline\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tabout\t_\tADV\tIN\t_\t29\tadvmod\t_\t_\n29\t500\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tpoints\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tfollowing\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tmonth\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCurzio\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\thappens\t_\tVERB\tVBZ\t_\t8\tcsubj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdepend\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tgood\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdeal\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tFederal\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tReserve\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tBoard\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tpromptly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tcuts\t_\tVERB\tVBZ\t_\t21\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdiscount\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\trate\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tcharges\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tloans\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t21\tparataxis\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tThat\t_\tPRON\tDT\t_\t21\tnsubj\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tquiet\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n22\tthings\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tdown\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tnot\t_\tPART\tRB\t_\t7\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n5\tWe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tgo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\t2200\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n10\tvery\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsoon\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tW.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTerrizzi\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n4\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thave\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tgo\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tdown\t_\tADV\tRP\t_\t8\tadvmod\t_\t_\n10\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tadditional\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tamount\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tbefore\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tbecome\t_\tVERB\tVBP\t_\t6\tadvcl\t_\t_\n16\tpositive\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tTerrizzi\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tmanaging\t_\tVERB\tVBG\t_\t28\tamod\t_\t_\n28\tdirector\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tRenaissance\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tInvestment\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tManagement\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tInc.\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tCincinnati\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tRenaissance\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tmanages\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n5\tabout\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n7\t1.8\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tdrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tstiff\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcriticism\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tmany\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tclients\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tearlier\t_\tADV\tRBR\t_\t18\tadvmod\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n19\tbecause\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tpulled\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n22\tentirely\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tstocks\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tbeginning\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n33\tthus\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tmissed\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tstrong\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\trally\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tRenaissance\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tkeeping\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tmoney\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tentirely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tcash\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tequivalents\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tprimarily\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tTreasury\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbills\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tT-bills\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tprobably\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tright\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tplace\t_\tNOUN\tNN\t_\t13\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tRegarding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tOct.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\t3\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tletter\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teditor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tRep.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tTom\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tLantos\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tchairman\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tHouse\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tSubcommittee\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tEmployment\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tHousing\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n24\talleging\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n25\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t1\t_\tX\tLS\t_\t14\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tDT\t_\t14\tmark\t_\t_\n4\tyour\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tSept.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\t28\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\teditorial\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n9\tKangaroo\t_\tNOUN\tNNP\t_\t10\tcompound\t_\t_\n10\tCommittees\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n13\tfactually\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tinaccurate\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tdeliberately\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tmisleading\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tyour\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\teditorial\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\tfactually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\taccurate\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tdeliberately\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\telucidative\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t2\t_\tX\tLS\t_\t6\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tDT\t_\t6\tmark\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tLantos\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsupported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trights\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\twitnesses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\ttake\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tFifth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAmendment\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tYes\t_\tINTJ\tUH\t_\t4\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tdid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twatched\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n4\thim\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tC-Span\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tI\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\theard\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\thim\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tspeak\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n12\tthose\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tlovely\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twords\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tBill\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tRights\t_\tPROPN\tNNPS\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t23\tdobj\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tquotes\t_\tVERB\tVBZ\t_\t14\tacl:relcl\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttranscript\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\thearings\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\trepeat\t_\tVERB\tNN\t_\t0\troot\t_\t_\n4\tthose\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnice\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tplatitudes\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tseveral\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttimes\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tindication\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tsupport\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tConstitution\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tabout\t_\tADV\tIN\t_\t4\tadvmod\t_\t_\n4\t56\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\twords\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\tdefending\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twitnesses\t_\tNOUN\tNNS\t_\t11\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tconstitutional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\trights\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnfortunately\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\trough\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tguess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tbetter\t_\tADJ\tJJR\t_\t12\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n12\t5,000\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\twords\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\theaping\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n15\tscorn\t_\tNOUN\tVB\t_\t14\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\twitnesses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tfor\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\texercising\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tFifth\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsandwiched\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tpraise\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tconstitutional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmeat\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbetween\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tlarge\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tloaves\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tbilious\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcommentary\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\teditorial\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\trightly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tpointed\t_\tVERB\tVBD\t_\t29\tadvcl\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n8\tSamuel\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tPierce\t_\tPROPN\tNNP\t_\t29\tnsubjpass\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tformer\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tHUD\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tsecretary\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tLance\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tWilson\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tPierce\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tformer\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\taide\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n26\tare\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n27\tcurrently\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\tbeing\t_\tAUX\tVBG\t_\t29\tauxpass\t_\t_\n29\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n30\tup\t_\tADV\tRP\t_\t29\tadvmod\t_\t_\n31\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n32\tscorn\t_\tNOUN\tVB\t_\t30\tnmod\t_\t_\n33\tfor\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n34\ttaking\t_\tVERB\tVBG\t_\t29\tadvcl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tFifth\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tAmendment\t_\tPROPN\tNNP\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n3\tcertainly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n5\tnot\t_\tPART\tRB\t_\t10\tneg\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tsupposed\t_\tADJ\tVBN\t_\t10\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tdistorted\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\treading\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n12\tindicated\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n13\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tLantos\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t3\t_\tX\tLS\t_\t9\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tDT\t_\t9\tmark\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tcommittee\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tdeal\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tpossible\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tcriminal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tactivity\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tHUD\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMy\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tcolleagues\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t2\tconj\t_\t_\n5\tfully\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\trealize\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n9\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcourt\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n12\t...\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n13\tetc\t_\tX\tFW\t_\t6\tdep\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tAbsolute\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trubbish\t_\tNOUN\tJJ\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n4\treasonable\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tman\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\tcriterion\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tLantos\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tcolleagues\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\twhole\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbunch\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpeople\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tconvicted\t_\tVERB\tVBD\t_\t20\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tApparently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tverdict\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tin\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tRight\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tpursuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tevidence\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tnot\t_\tADV\tRB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbad\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tway\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tproceed\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tjust\t_\tADV\tRB\t_\t3\tdep\t_\t_\n11\tsomewhat\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tdifferent\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tstandard\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tAmerican\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpractice\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHow\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n3\tthat\t_\tDET\tIN\t_\t4\tdet\t_\t_\n4\tpractice\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n5\treferred\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t5\tnmod\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n8\tI\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tschool\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n12\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAh\t_\tINTJ\tNN\t_\t5\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tyes\t_\tINTJ\tUH\t_\t5\tdiscourse\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tsomething\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tcalled\t_\tVERB\tVBD\t_\t5\tacl\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tStar\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tChamber\t_\tPROPN\tNNP\t_\t6\txcomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tLantos\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tdoth\t_\tVERB\tNN\t_\t0\troot\t_\t_\n7\tprotest\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\this\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tsubcommittee\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tsimply\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tseeks\t_\tVERB\tVBZ\t_\t7\tccomp\t_\t_\n13\tinformation\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tlegislative\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tchange\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tdoubt\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tpartially\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\ttrue\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tEverything\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n2\tthat\t_\tADP\tIN\t_\t5\tdobj\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLantos\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tletter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\tpartially\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\ttrue\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tright\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\this\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tsubcommittee\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tresponsibilities\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tcomes\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tmark\t_\t_\n13\tobtaining\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n14\tinformation\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tprior\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tHUD\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tofficials\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\texplanation\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tmotivation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\ttrue\t_\tADJ\tJJ\t_\t15\tadvcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\twhy\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t15\tauxpass\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tinvestigation\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n14\tso\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\toriented\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tidentify\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n19\tcriminal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tactivity\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tnot\t_\tADV\tRB\t_\t4\tdep\t_\t_\n3\tsimply\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tquestions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\tdesigned\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tidentify\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tsources\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcauses\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\twaste\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tinefficiency\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t5\tcase\t_\t_\n2\tas\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\thappened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n7\tCongress\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\twanted\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tknow\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tabout\t_\tADV\tIN\t_\t15\tadvmod\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t400\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n14\ttoilet\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tseats\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n17\twhatever\t_\tDET\tWDT\t_\t20\tdobj\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tsupposedly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tcost\t_\tVERB\tVB\t_\t15\tdep\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNo\t_\tADV\tDT\t_\t10\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLantos\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tcomplaints\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n7\tsimply\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\two\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\twash\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t4\t_\tX\tLS\t_\t6\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tJournal\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tdefends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tsleaze\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tfraud\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\twaste\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tembezzlement\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tinfluence-peddling\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tabuse\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpublic\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\ttook\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n25\tplace\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n26\twhile\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tPierce\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t30\tcop\t_\t_\n30\tsecretary\t_\tNOUN\tNN\t_\t24\tadvcl\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tHUD\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n35\tetc.\t_\tX\tFW\t_\t6\tdep\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tso\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tforth\t_\tADV\tRB\t_\t35\tdep\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNo\t_\tINTJ\tDT\t_\t12\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tmind\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tJournal\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n9\tdid\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n10\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\tdefend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tsleaze\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tfraud\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\twaste\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tembezzlement\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n21\tinfluence-peddling\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tabuse\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tpublic\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttrust\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t...\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tit\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdefended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tappropriate\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tconstitutional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsafeguards\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tpractical\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcommon\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsense\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tproblem\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t9\tdobj\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tJournal\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n7\tso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\trightly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tpointed\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n10\tout\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnumber\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tarticles\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n18\tnot\t_\tADV\tRB\t_\t20\tneg\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tlikes\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tLantos\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twho\t_\tPRON\tWP\t_\t32\tnsubj\t_\t_\n26\tafter\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tall\t_\tDET\tDT\t_\t32\tnmod\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n29\treally\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tbit\t_\tADJ\tNN\t_\t32\tamod\t_\t_\n32\tplayer\t_\tNOUN\tNN\t_\t23\tacl:relcl\t_\t_\n33\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tstage\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n37\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tattempt\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n40\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tCongress\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n42\tto\t_\tPART\tTO\t_\t43\tmark\t_\t_\n43\tenhance\t_\tVERB\tVB\t_\t39\tacl\t_\t_\n44\titself\t_\tPRON\tPRP\t_\t43\tdobj\t_\t_\n45\tinto\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\ta\t_\tDET\tDT\t_\t48\tdet\t_\t_\n47\tquasi-parliamentary/judicial\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tbody\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n2\tOf\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t've\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tgot\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tjudiciary\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\tseeks\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsame\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tobjective\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n17\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsystem\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tproblem\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tnot\t_\tPART\tRB\t_\t5\tdep\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tindividual\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmember\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIndividuals\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talways\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\thands\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tslapped\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\t's\t_\tPART\tVBZ\t_\t0\troot\t_\t_\n3\twhen\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tslapping\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\toccur\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n9\tthat\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t've\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tgot\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n13\ttrouble\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n3\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n4\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tany\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmeans\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n7\tdefend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tHUD\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tmanagement\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tkind\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tcongressional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestigation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t12\tnsubjpass\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\tpursued\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tfar\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tgreater\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tdanger\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tAmerican\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tnotions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tliberty\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tfreedom\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\tthan\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n26\tany\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tincompetency\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t34\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n31\tyes\t_\tINTJ\tUH\t_\t34\tdiscourse\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\tmaybe\t_\tADV\tRB\t_\t34\tdep\t_\t_\n34\tcriminality\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t34\tpunct\t_\t_\n36\twithin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tHUD\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n38\tcould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n39\tpossibly\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tgenerate\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaw\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tsimilar\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcongressional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\thearing\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n13\tTail\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\tGunner\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tJoe\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tMcCarthy\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tdid\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\twork\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tRaymond\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWeber\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tParsippany\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tN.J\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdisagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tstatement\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tLantos\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tone\t_\tPRON\tCD\t_\t13\tnsubj\t_\t_\n11\tshould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tnot\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tdraw\t_\tVERB\tVB\t_\t5\tdep\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tadverse\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinference\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tagainst\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tformer\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tHUD\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tofficials\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\tassert\t_\tVERB\tVBP\t_\t20\tacl:relcl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tFifth\t_\tPROPN\tJJ\t_\t26\tcompound\t_\t_\n25\tAmendment\t_\tPROPN\tNN\t_\t26\tcompound\t_\t_\n26\tprivilege\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\tagainst\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tself-incrimination\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcongressional\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\thearings\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFifth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAmendment\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tstates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\trelevant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpart\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tno\t_\tDET\tDT\t_\t10\tneg\t_\t_\n10\tperson\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tshall\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tcompelled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcriminal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcase\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n22\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\twitness\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n25\tagainst\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\thimself\t_\tPRON\tPRP\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprivilege\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tagainst\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tself-incrimination\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\tprecludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdrawing\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tadverse\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinference\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcriminal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdefendant\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n17\tchooses\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\tnot\t_\tPART\tRB\t_\t17\tneg\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttestify\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcriminal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcase\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprosecutor\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tcomment\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdefendant\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tfailure\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\ttestify\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\tnor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n21\tcan\t_\tAUX\tMD\t_\t25\taux\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tdefendant\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tcompelled\t_\tVERB\tVBN\t_\t12\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\ttake\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tstand\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\tas\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\twitness\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n34\tthus\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tforcing\t_\tVERB\tVBG\t_\t25\txcomp\t_\t_\n36\thim\t_\tPRON\tPRP\t_\t35\tdobj\t_\t_\n37\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t39\tpunct\t_\t_\n39\ttake\t_\tVERB\tVB\t_\t35\txcomp\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tFifth\t_\tPROPN\tNNP\t_\t39\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprivilege\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tlimited\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\taccordance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tplain\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlanguage\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tprotect\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdefendant\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tcriminal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmatters\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tonly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSupreme\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCourt\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tstates\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tspecifically\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\trecognized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tFifth\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAmendment\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n15\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tnot\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tpreclude\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinference\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\twhere\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tprivilege\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\tauxpass\t_\t_\n24\tclaimed\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tparty\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tcivil\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcause\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tBaxter\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\tv.\t_\tADP\tCC\t_\t3\tcase\t_\t_\n3\tPalmingiano\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\t425\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n7\t308\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\t1976\t_\tNUM\tCD\t_\t1\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcivil\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcase\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdefendant\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n10\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\twitness\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t20\tnsubjpass\t_\t_\n18\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\tforced\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\ttestify\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\ttake\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tFifth\t_\tPROPN\tNNP\t_\t24\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n29\this\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\ttaking\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tFifth\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n34\tmay\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tpermit\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tdrawing\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tan\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tadverse\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tinference\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n42\tagainst\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\thim\t_\tPRON\tPRP\t_\t41\tnmod\t_\t_\n44\tin\t_\tADP\tIN\t_\t47\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tcivil\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tmatter\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tFifth\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tcivil\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmatter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tgood\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfaith\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tjustifiable\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbelief\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\ttestimony\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\tmay\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tsubject\t_\tVERB\tVB\t_\t16\tdep\t_\t_\n25\thim\t_\tPRON\tPRP\t_\t24\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tcriminal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tprosecution\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAllowing\t_\tVERB\tVBG\t_\t14\tcsubj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdefendant\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t1\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tFifth\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcivil\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmatter\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\tnot\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tconstitutional\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tright\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\trefuse\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\ttestify\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\twhere\t_\tADV\tWRB\t_\t27\tadvmod\t_\t_\n24\tone\t_\tPRON\tNN\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\ttestimony\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tharms\t_\tVERB\tVBZ\t_\t20\tadvcl\t_\t_\n28\thim\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tcivil\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmatter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n34\tbut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n35\tbecause\t_\tSCONJ\tIN\t_\t45\tmark\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\ttestimony\t_\tNOUN\tNN\t_\t45\tnsubjpass\t_\t_\n38\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tcivil\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tmatter\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n42\tcould\t_\tAUX\tMD\t_\t45\taux\t_\t_\n43\tbe\t_\tAUX\tVB\t_\t45\tauxpass\t_\t_\n44\tunconstitutionally\t_\tADV\tRB\t_\t45\tadvmod\t_\t_\n45\tused\t_\tVERB\tVBN\t_\t14\tconj\t_\t_\n46\tagainst\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\thim\t_\tPRON\tPRP\t_\t45\tnmod\t_\t_\n48\tin\t_\tADP\tIN\t_\t52\tcase\t_\t_\n49\ta\t_\tDET\tDT\t_\t52\tdet\t_\t_\n50\tsubsequent\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n51\tcriminal\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tprosecution\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAbsent\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trisk\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tprosecution\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcourt\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\torder\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdefendant\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\ttestify\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n3\twhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPierce\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tasserted\t_\tVERB\tVBD\t_\t26\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFifth\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tnoncriminal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tproceeding\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tparticularly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tpresumably\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\treceiving\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n18\textensive\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tadvice\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tlegal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcounsel\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\tone\t_\tPRON\tCD\t_\t26\tnsubj\t_\t_\n25\tmust\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tconclude\t_\tVERB\tVB\t_\t0\troot\t_\t_\n27\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n28\the\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\theld\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n30\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n31\tgood-faith\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\tjustifiable\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tbelief\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n35\tthat\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n36\this\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\ttestimony\t_\tNOUN\tNN\t_\t40\tnsubjpass\t_\t_\n38\tcould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tused\t_\tVERB\tVBN\t_\t34\tccomp\t_\t_\n41\tagainst\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\thim\t_\tPRON\tPRP\t_\t40\tnmod\t_\t_\n43\tin\t_\tADP\tIN\t_\t47\tcase\t_\t_\n44\ta\t_\tDET\tDT\t_\t47\tdet\t_\t_\n45\tsubsequent\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n46\tcriminal\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tprosecution\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsubcommittee\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCongress\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tAmerican\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpublic\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n9\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tevery\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tright\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdraw\t_\tVERB\tVB\t_\t11\tdep\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tadverse\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinference\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tconcur\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n20\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tPierce\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\town\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbelief\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\ttestimony\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n29\tcould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\thelp\t_\tVERB\tVB\t_\t25\tccomp\t_\t_\n31\tconvict\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n32\thim\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tcrime\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tDrawing\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tadverse\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinference\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tnoncriminal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcongressional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\thearing\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n10\tdoes\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n11\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\toffend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tFifth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAmendment\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tshield\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tagainst\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tself-incrimination\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tClark\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tS.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSpalsbury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tJr\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEstes\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPark\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tColo\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\t13th\t_\tPROPN\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tplummeted\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n12\tnearly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t200\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tpoints\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcoincidence\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOr\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t11\taux\t_\t_\n3\ttriskaidekaphobia\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n5\tfear\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnumber\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t13\t_\tNUM\tCD\t_\t8\tdep\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n11\tjustified\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n12\t?\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tacademia\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tso-called\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n7\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n8\t13th\t_\tPROPN\tJJ\t_\t6\tdep\t_\t_\n9\teffect\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tshot\t_\tVERB\tVBN\t_\t12\tconj\t_\t_\n16\tdown\t_\tADP\tRB\t_\t15\tcompound:prt\t_\t_\n17\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tdifferent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprofessors\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKolb\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tRicardo\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRodriguez\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tprofessors\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tfinance\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tUniversity\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tMiami\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tfound\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tevidence\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t22\tnsubjpass\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n22\tspooked\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n23\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\t13th\t_\tPROPN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tstudy\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tspanned\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t1962-85\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tperiod\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n12\tsince\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n13\tbeen\t_\tAUX\tVBN\t_\t14\tauxpass\t_\t_\n14\tshown\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tjinxed\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tunlucky\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tchoice\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tdata\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\t'70s\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfalls\t_\tNOUN\tVBZ\t_\t7\tdobj\t_\t_\n9\tnine\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\ttimes\t_\tNOUN\tNNS\t_\t7\tnmod:tmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trow\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyou-know-what\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdate\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplus\t_\tNOUN\tCC\t_\t4\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tnot\t_\tADV\tRB\t_\t12\tneg\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tminus\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\taccording\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\tto\t_\tADP\tTO\t_\t17\tmwe\t_\t_\n19\tYale\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHirsch\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcollector\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tlore\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstudy\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tfound\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\t82\t_\tNUM\tCD\t_\t14\tnsubj\t_\t_\n7\tFridays\t_\tPROPN\tNNS\t_\t6\tdep\t_\t_\n8\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n9\t13th\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1940-1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tperiod\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n15\thigher\t_\tADJ\tJJR\t_\t17\tdep\t_\t_\n16\tthan\t_\tADP\tIN\t_\t17\tdep\t_\t_\n17\taverage\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\treturns\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\thigher\t_\tADJ\tJJR\t_\t21\tdep\t_\t_\n21\teven\t_\tADV\tRB\t_\t18\tamod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tFridays\t_\tPROPN\tNNS\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tgeneral\t_\tADJ\tJJ\t_\t23\tacl\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\ttend\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n29\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n30\tbe\t_\tVERB\tVB\t_\t32\tcop\t_\t_\n31\tstrong\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tdays\t_\tNOUN\tNNS\t_\t28\txcomp\t_\t_\n33\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tstock\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tprices\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n3\tonly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\t13th\t_\tPROPN\tJJ\t_\t16\tnmod\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tDow\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tJones\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tIndustrial\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAverage\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tabout\t_\tADV\tIN\t_\t18\tadvmod\t_\t_\n18\tfour\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tpoints\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tProfessor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKolb\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\toriginal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstudy\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ttitled\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\t13th\t_\tPROPN\tJJ\t_\t8\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tPart\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tVII\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tpublished\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n18\ttongue-in-cheek\t_\tADV\tJJ\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsimilar\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tvein\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tanniversary\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\t1987\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcrash\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\tSaturday\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tfull\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmoon\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\thave\t_\tAUX\tVB\t_\t22\taux\t_\t_\n22\tplayed\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpart\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\ttoo\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tactivity\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\treminiscent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthose\t_\tPRON\tDT\t_\t1\tnmod\t_\t_\n4\tduring\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tplummeted\t_\tVERB\tVBD\t_\t28\tadvcl\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tactivity\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tescalated\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n19\tsome\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tphone\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcalls\t_\tNOUN\tVBZ\t_\t28\tnsubj\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmakers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tover-the-counter\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstocks\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\twent\t_\tVERB\tVBD\t_\t1\tparataxis\t_\t_\n29\tunanswered\t_\tADJ\tJJ\t_\t28\txcomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tget\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n6\tdealers\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tanswer\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n9\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tphones\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tRobert\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tKing\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tsenior\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tvice\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tpresident\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tOTC\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tRobinson-Humphrey\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tAtlanta\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n4\t-LCB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tlike\t_\tADP\tIN\t_\t8\tdep\t_\t_\n6\t-RCB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n9\tbefore\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tBlack\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tMonday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n13\ttwo\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n15\tago\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhether\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tunanswered\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tphone\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcalls\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teffect\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\tnot\t_\tADV\tRB\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tNasdaq\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tsank\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tfar\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tless\t_\tADV\tJJR\t_\t13\tadvmod\t_\t_\n16\tthan\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tthose\t_\tPRON\tDT\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tYork\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tAmerican\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n24\texchanges\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tNonetheless\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tNasdaq\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tComposite\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tIndex\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsuffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n9\tbiggest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tpoint\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdecline\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tsixth\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n18\tworst\t_\tADJ\tJJS\t_\t17\tdep\t_\t_\n19\tever\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tdiving\t_\tVERB\tJJ\t_\t7\tadvcl\t_\t_\n22\t14.90\t_\tNUM\tCD\t_\t21\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\t3\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t22\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\t467.29\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTen\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tpoints\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdrop\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\toccurred\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tduring\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\t45\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tminutes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttrading\t_\tVERB\tNN\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcomparison\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tComposite\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t5.8\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tAmerican\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tStock\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tExchange\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tComposite\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tfell\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n21\t4\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tOct.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n3\t16\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tNasdaq\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tComposite\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t16.18\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\t3.8\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n18\tfollowed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n19\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n21\tdevastating\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n22\t46.12-point\t_\tADJ\tNN\t_\t27\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\t11\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t22\tconj\t_\t_\n27\tslide\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n29\tthree\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tdays\t_\tNOUN\tNNS\t_\t31\tnmod:npmod\t_\t_\n31\tlater\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNasdaq\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n4\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t167.7\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n11\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tfifth\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tbusiest\t_\tADJ\tJJS\t_\t13\tdep\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n16\tso\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tfar\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsingle-day\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trecord\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\t288\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOct.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t21\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tThere\t_\tADV\tEX\t_\t6\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t20\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tvolume\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\timpossible\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tmoved\t_\tVERB\tVBN\t_\t15\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tE.E.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n23\tBuzzy\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tGeduld\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tHerzog\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n31\tHeine\t_\tPROPN\tNNP\t_\t33\tappos\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n33\tGeduld\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tNew\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tYork\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tcompany\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n39\tthat\t_\tPRON\tWDT\t_\t40\tnsubj\t_\t_\n40\tmakes\t_\tVERB\tVBZ\t_\t38\tacl:relcl\t_\t_\n41\tmarkets\t_\tNOUN\tNNS\t_\t40\tdobj\t_\t_\n42\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\tthousands\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tOTC\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tissues\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcomplaints\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tunanswered\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tphone\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcalls\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tregional\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbrokers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\trather\t_\tADV\tRB\t_\t12\tcc\t_\t_\n14\tthan\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\tindividual\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKing\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tRobinson-Humphrey\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tothers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\tquick\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tadd\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tbelieve\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tproblem\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstemmed\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\tmore\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ttraders\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n20\t'\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tinability\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\thandle\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tvolume\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tcalls\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\trather\t_\tADV\tRB\t_\t21\tcc\t_\t_\n30\tthan\t_\tADP\tIN\t_\t29\tmwe\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tdeliberate\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tattempt\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tavoid\t_\tVERB\tVB\t_\t33\tacl\t_\t_\n36\tmaking\t_\tVERB\tVBG\t_\t35\txcomp\t_\t_\n37\ttrades\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsubject\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsore\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tNasdaq\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tmarket-making\t_\tADJ\tNN\t_\t12\tamod\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t17\tnsubjpass\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n16\twidely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tcriticized\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n20\tago\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\tfollowing\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n22\tcomplaints\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tinvestors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\twho\t_\tPRON\tWP\t_\t28\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\treach\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n29\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\tbrokers\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n32\ttrade\t_\tVERB\tNN\t_\t28\tconj\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tchaos\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tcrash\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPeter\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDaPuzzo\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thead\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tretail\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tequity\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tShearson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tLehman\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHutton\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tdeclared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n17\tIt\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\thour\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttoo\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tphones\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tringing\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\ttoo\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tthings\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n11\thappening\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texpect\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmakers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t19\tcop\t_\t_\n18\tas\t_\tADV\tIN\t_\t19\tadvmod\t_\t_\n19\tefficient\t_\tADJ\tJJ\t_\t13\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\trobots\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tintentional\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tall\t_\tADV\tDT\t_\t9\tadvmod\t_\t_\n9\tbusy\t_\tADJ\tJJ\t_\t4\tparataxis\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTarantino\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thead\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tOTC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tHambrecht\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tQuist\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFrancisco\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tIt\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n21\tjust\t_\tADV\tRB\t_\t16\tccomp\t_\t_\n22\tlike\t_\tADP\tIN\t_\t21\tcase\t_\t_\n23\ttwo\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tyears\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n25\tago\t_\tADV\tRB\t_\t21\tdep\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tEverybody\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tdo\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsame\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tthing\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsame\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttime\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tJeremiah\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMullins\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tOTC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tchief\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tDean\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tWitter\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tReynolds\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tproudly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\texecuted\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n22\tevery\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\torder\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\treceived\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tclose\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\ttrading\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tadded\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tonly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcall\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tMarket\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tmakers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tkeep\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tsupplies\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\thand\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmaintain\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n11\torderly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttrading\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n14\timbalances\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\toccur\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tdays\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n3\tlike\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\tmust\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tbuy\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tsellers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\tone\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\telse\t_\tADV\tRB\t_\t16\tamod\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n19\twilling\t_\tADJ\tJJ\t_\t10\tadvcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t19\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tselling\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tfrenzied\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tfall\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tsteeply\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tfast\t_\tADV\tRB\t_\t9\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tfaced\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n6\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpossibility\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\theavy\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlosses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tinventories\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmakers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\tthemselves\t_\tPRON\tPRP\t_\t20\tnmod:npmod\t_\t_\n22\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tdumping\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\texacerbating\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tslide\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tOTC\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tstock\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tprices\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmakers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tselling\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n3\twith\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tprofits\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsagging\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tsince\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcrash\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tcompanies\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tkept\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tsmaller\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tstockpiles\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\thand\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTarantino\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tHambrecht\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tQuist\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n11\twithout\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\ttrades\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\ttaking\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n14\tplace\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmakers\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tkept\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n20\tdropping\t_\tVERB\tVBG\t_\t19\txcomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tprices\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\twhich\t_\tPRON\tWDT\t_\t27\tnmod\t_\t_\n25\tthey\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tbuy\t_\tVERB\tVB\t_\t22\tacl:relcl\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tEveryone\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\thitting\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n5\teveryone\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n6\telse\t_\tADV\tRB\t_\t5\tamod\t_\t_\n7\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n8\tbid\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n3\twhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tOTC\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tcompanies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tincurred\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n7\tlosses\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\ttrading\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tofficials\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdamage\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n17\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tbad\t_\tADJ\tJJ\t_\t13\tccomp\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1987\t_\tNUM\tCD\t_\t19\tdep\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tTwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tIN\t_\t7\tadvmod\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tcarrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\thuge\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinventories\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tthat\t_\tPRON\tDT\t_\t15\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbig\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tculprit\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tknow\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tanyone\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tcarrying\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n8\tbig\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinventories\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tKing\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tRobinson-Humphrey\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tTony\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCecin\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thead\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tequity\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tPiper\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tJaffray\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tHopwood\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tMinneapolis\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tPiper\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tJaffray\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n21\tactually\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tmade\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n23\tmoney\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thelped\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tinventory\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tthird\t_\tNOUN\tJJ\t_\t9\tnmod:npmod\t_\t_\n9\tsmaller\t_\tADJ\tJJR\t_\t2\tccomp\t_\t_\n10\tnow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tthan\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tyears\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n16\tago\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tJoseph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHardiman\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tSecurities\t_\tPROPN\tNNPS\t_\t11\tcompound\t_\t_\n11\tDealers\t_\tPROPN\tNNPS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\toversees\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tNasdaq\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tcomputerized\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tsystem\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n23\tdespite\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\trush\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tselling\t_\tVERB\tNN\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n29\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tnever\t_\tADV\tRB\t_\t31\tneg\t_\t_\n31\tconsidered\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tsituation\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n34\tan\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n36\temergency\t_\tNOUN\tNN\t_\t31\txcomp\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpace\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\torderly\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNasdaq\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tSmall\t_\tPROPN\tJJ\t_\t6\tcompound\t_\t_\n4\tOrder\t_\tPROPN\tNN\t_\t6\tcompound\t_\t_\n5\tExecution\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSystem\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n8\tworked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tbeautifully\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n12\tas\t_\tSCONJ\tIN\t_\t13\tdep\t_\t_\n13\tdid\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tautomated\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsystem\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tlarger\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n19\ttrades\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\taccording\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n22\tto\t_\tADP\tTO\t_\t21\tmwe\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tHardiman\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tshock\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tanother\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsteep\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tundoubtedly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tshake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tmany\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t18\tnmod:poss\t_\t_\n17\t'\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tconfidence\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpast\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tOTC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tthrived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfirm\t_\tADJ\tNN\t_\t12\tamod\t_\t_\n12\tbase\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsmall-investor\t_\tNOUN\tJJ\t_\t15\tcompound\t_\t_\n15\tparticipation\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBecause\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tvolume\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\treturned\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tpre-crash\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlevels\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\ttraders\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tOTC\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tofficials\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n18\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdamage\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n21\two\t_\tAUX\tMD\t_\t24\taux\t_\t_\n22\tn't\t_\tPART\tRB\t_\t24\tneg\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n24\tpermanent\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tworried\t_\tADJ\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tjust\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tstarting\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpublic\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tconfidence\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\tback\t_\tADP\tRB\t_\t7\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tlamented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMullins\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tDean\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tWitter\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMore\t_\tADV\tRBR\t_\t2\tadvmod\t_\t_\n2\ttroubling\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprospect\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\toverall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcollapse\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tpermanently\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\terode\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbase\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsmall-investor\t_\tNOUN\tJJ\t_\t20\tcompound\t_\t_\n20\tsupport\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tOTC\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n24\twas\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\tstruggling\t_\tVERB\tVBG\t_\t17\tacl:relcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\trebuild\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\twake\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tOctober\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\t1987\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tcrash\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCecin\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tPiper\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tJaffray\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\taction\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tpolicy\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmakers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tallay\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n15\tinvestor\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfears\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\two\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\ttake\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n5\tmuch\t_\tADJ\tRB\t_\t4\tdobj\t_\t_\n6\tmore\t_\tADV\tJJR\t_\t5\tamod\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tscare\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\thell\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tout\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tretail\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsellers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n5\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcorners\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tOTC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n14\tbig\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tsmall\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tinstitutional\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tas\t_\tADV\tRB\t_\t18\tcc\t_\t_\n21\twell\t_\tADV\tRB\t_\t20\tmwe\t_\t_\n22\tas\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n23\tindividual\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tinvestors\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmakers\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tgrateful\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsell\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\torders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tgenerally\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tranged\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t20,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t50,000\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tcompared\t_\tVERB\tVBN\t_\t19\tcase\t_\t_\n18\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tblocks\t_\tNOUN\tNNS\t_\t9\tadvcl\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t500,000\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n24\tmore\t_\tADJ\tJJR\t_\t22\tnummod\t_\t_\n25\ttwo\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tyears\t_\tNOUN\tNNS\t_\t27\tnmod:npmod\t_\t_\n27\tago\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tShearson\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDaPuzzo\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tretail\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tnervously\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsold\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tnever\t_\tADV\tRB\t_\t14\tneg\t_\t_\n14\treturned\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tbargain-hunt\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInstitutional\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\taux\t_\t_\n7\tselling\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tthroughout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tweek\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlock\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n14\tin\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\thandsome\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tgains\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tmade\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tthrough\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n24\tcalmer\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tgood\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tselling\t_\tVERB\tVBG\t_\t6\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tinstitutions\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n14\tas\t_\tADP\tRB\t_\t15\tdep\t_\t_\n15\tmuch\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpanic\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tDaPuzzo\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tsell\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tsome\t_\tDET\tDT\t_\t11\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tthem\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n11\tput\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tback\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshelf\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t11\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tsome\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tbigger\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n9\tinstitutional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinvestors\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbids\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbuy\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tOTC\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\twhose\t_\tPRON\tWP$\t_\t19\tnmod:poss\t_\t_\n19\tprices\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\tbeaten\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n22\tdown\t_\tADP\tRB\t_\t21\tcompound:prt\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tDaPuzzo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tcomputer-guided\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tprogram\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tselling\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tOTC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tRussell\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tIndex\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t2000\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tsmall\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tStandard\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tPoor\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n27\t500-stock\t_\tPROPN\tJJ\t_\t28\tcompound\t_\t_\n28\tIndex\t_\tPROPN\tNN\t_\t16\tconj\t_\t_\n29\tsent\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n30\toccasional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\twaves\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n34\tthrough\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNasdaq\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tbiggest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\thammered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\t100\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tIndex\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tlargest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n8\tnonfinancial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tissues\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tincluding\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\tbig\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tOTC\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\ttechnology\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tissues\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t4.2\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n23\t19.76\t_\tNUM\tCD\t_\t20\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n26\t449.33\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFinancial\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tIndex\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tgiant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinsurance\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tbanking\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t9.31\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\t462.98\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tOTC\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thandful\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ttakeover-related\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsharply\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCellular\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCommunications\t_\tPROPN\tNNPS\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tinstance\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\toffered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tbuy\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tLIN\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBroadcasting\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n14\tas\t_\tADV\tRB\t_\t13\tcc\t_\t_\n15\twell\t_\tADV\tRB\t_\t14\tmwe\t_\t_\n16\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n17\tMetromedia\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tCity\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tcellular\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\ttelephone\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tinterests\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tseparate\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\ttransaction\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n32\tsell\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n33\tcertain\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tMcCaw\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tproperties\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n36\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n37\tContel\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tCellular\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t8\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\t3\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t1/2\t_\tNUM\tCD\t_\t4\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t40\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLIN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBroadcasting\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t5\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t1/2\t_\tNUM\tCD\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\t5\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t107\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/2\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tturnover\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tboth\t_\tDET\tCC\t_\t5\tdet\t_\t_\n5\tissues\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n7\troughly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tnormal\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tday\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n4\twhen\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n5\tnegative\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttakeover-related\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tnews\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tsit\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n11\twell\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n15\tCommercial\t_\tPROPN\tJJ\t_\t16\tcompound\t_\t_\n16\tIntertech\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmaker\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tengineered\t_\tADJ\tVBN\t_\t23\tamod\t_\t_\n22\tmetal\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tparts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tHaas\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tPartners\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\tadvised\t_\tVERB\tVBD\t_\t25\tccomp\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t29\tdobj\t_\t_\n31\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n33\tdoes\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n34\tn't\t_\tPART\tRB\t_\t35\tneg\t_\t_\n35\tplan\t_\tVERB\tVB\t_\t29\tccomp\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\tpursue\t_\tVERB\tVB\t_\t35\txcomp\t_\t_\n38\tits\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n39\tpreviously\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\treported\t_\tVERB\tVBN\t_\t43\tamod\t_\t_\n41\t$\t_\tSYM\t$\t_\t43\tamod\t_\t_\n42\t27.50-a-share\t_\tADJ\tJJ\t_\t41\tdep\t_\t_\n43\tbid\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n44\tto\t_\tPART\tTO\t_\t45\tmark\t_\t_\n45\tbuy\t_\tVERB\tVB\t_\t43\tacl\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tcompany\t_\tNOUN\tNN\t_\t45\tdobj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tCommercial\t_\tPROPN\tJJ\t_\t2\tcompound\t_\t_\n2\tIntertech\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tplummeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t6\t_\tNUM\tCD\t_\t3\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t26\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissues\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tcompanies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tties\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tjunk\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tbond\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\talso\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tOTC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n6\tFirst\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tExecutive\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbuyer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\thigh-risk\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\thigh-yield\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tissues\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t2\t_\tNUM\tCD\t_\t19\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\t12\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t1/4\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tOTC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tissues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tIntel\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t2\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t1/8\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\t33\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t7/8\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tLaidlaw\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTransportation\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tlost\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n18\t1\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t1/8\t_\tNUM\tCD\t_\t17\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t19\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t1/2\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tdepositary\t_\tADJ\tNN\t_\t27\tamod\t_\t_\n27\treceipts\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tJaguar\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\twere\t_\tVERB\tVBD\t_\t35\tcop\t_\t_\n31\toff\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n32\t1/4\t_\tNUM\tCD\t_\t31\tnmod:npmod\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\t10\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\t1/4\t_\tNUM\tCD\t_\t8\tconj\t_\t_\n36\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n37\tMCI\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tCommunications\t_\tPROPN\tNNPS\t_\t39\tnsubj\t_\t_\n39\tslipped\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n40\t2\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n41\t1/4\t_\tNUM\tCD\t_\t39\tdobj\t_\t_\n42\tto\t_\tADP\tTO\t_\t44\tcase\t_\t_\n43\t43\t_\tNUM\tCD\t_\t44\tcompound\t_\t_\n44\t1/2\t_\tNUM\tCD\t_\t39\tnmod\t_\t_\n45\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n46\tApple\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tComputer\t_\tPROPN\tNNP\t_\t48\tnsubj\t_\t_\n48\tfell\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n49\t3\t_\tNUM\tCD\t_\t48\tdobj\t_\t_\n50\tto\t_\tADP\tTO\t_\t52\tcase\t_\t_\n51\t45\t_\tNUM\tCD\t_\t52\tcompound\t_\t_\n52\t3/4\t_\tNUM\tCD\t_\t48\tnmod\t_\t_\n53\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n54\tNike\t_\tPROPN\tNNP\t_\t55\tnsubj\t_\t_\n55\tdropped\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n56\t2\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n57\t1/4\t_\tNUM\tCD\t_\t55\tdobj\t_\t_\n58\tto\t_\tADP\tTO\t_\t60\tcase\t_\t_\n59\t66\t_\tNUM\tCD\t_\t60\tcompound\t_\t_\n60\t3/4\t_\tNUM\tCD\t_\t55\tnmod\t_\t_\n61\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t13\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t1989\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n2\tkey\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tforeign\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n6\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinterest\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\trates\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\tbelow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tguide\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tgeneral\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlevels\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tdo\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\talways\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\trepresent\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n21\tactual\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttransactions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tPRIME\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tRATE\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t10\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\t1/2\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbase\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcorporate\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tloans\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tcenter\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tcommercial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFEDERAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tFUNDS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\t13/16\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n4\thigh\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t3\tappos\t_\t_\n9\tlow\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\t8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t5/8\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t3\tappos\t_\t_\n14\tnear\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tclosing\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbid\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\t8\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t3/4\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t3\tappos\t_\t_\n21\toffered\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tReserves\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\ttraded\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n3\tamong\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcommercial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbanks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tovernight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tuse\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tamounts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tFulton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n4\tPrebon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tU.S.A\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n9\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDISCOUNT\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tRATE\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t7\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tdepository\t_\tADJ\tNN\t_\t7\tamod\t_\t_\n7\tinstitutions\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tReserve\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBank\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCALL\t_\tNOUN\tJJ\t_\t2\tcompound\t_\t_\n2\tMONEY\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n2\t3/4\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n3\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tdep\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tbrokers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\texchange\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcollateral\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tplaced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tdirectly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tGeneral\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tMotors\t_\tPROPN\tNNPS\t_\t9\tcompound\t_\t_\n8\tAcceptance\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8.60\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t30\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tdep\t_\t_\n5\t44\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tdays\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n8\t8.55\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n10\t45\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t59\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tdays\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n15\t8.375\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n17\t60\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tdep\t_\t_\n19\t79\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tdays\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n21\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n22\t8.50\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n24\t80\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tdep\t_\t_\n26\t89\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tdays\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n29\t8.25\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n31\t90\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tdep\t_\t_\n33\t119\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tdays\t_\tNOUN\tNNS\t_\t30\tnmod:npmod\t_\t_\n35\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n36\t8.125\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n37\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n38\t120\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n39\tto\t_\tADP\tTO\t_\t40\tdep\t_\t_\n40\t149\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n41\tdays\t_\tNOUN\tNNS\t_\t37\tnmod:npmod\t_\t_\n42\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n43\t8\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n45\t150\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n46\tto\t_\tADP\tTO\t_\t47\tdep\t_\t_\n47\t179\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\tdays\t_\tNOUN\tNNS\t_\t44\tnmod:npmod\t_\t_\n49\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n50\t7.625\t_\tNUM\tCD\t_\t51\tnummod\t_\t_\n51\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n52\t180\t_\tNUM\tCD\t_\t54\tcompound\t_\t_\n53\tto\t_\tADP\tTO\t_\t54\tdep\t_\t_\n54\t270\t_\tNUM\tCD\t_\t55\tnummod\t_\t_\n55\tdays\t_\tNOUN\tNNS\t_\t51\tnmod:npmod\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tHigh-grade\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tunsecured\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tnotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tsold\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tthrough\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdealers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmajor\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcorporations\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tmultiples\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t1,000\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t8.65\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t30\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdays\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.55\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\t60\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tdays\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.55\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\t90\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCERTIFICATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tOF\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tDEPOSIT\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t8.15\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\tone\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.15\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.13\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tmonths\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n16\t8.11\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n18\tsix\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n21\t8.08\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n23\tone\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAverage\t_\tNOUN\tJJ\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ttop\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tpaid\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprimary\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnegotiable\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tC.D.s\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tusually\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tamounts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n24\t1\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tmore\t_\tADJ\tJJR\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tminimum\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tunit\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t100,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trates\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsecondary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8.65\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\tone\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.65\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\tthree\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.55\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\tsix\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tmonths\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBANKERS\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tACCEPTANCES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8.52\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t30\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdays\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.37\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\t60\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tdays\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.15\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\t90\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n16\t7.98\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n18\t120\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tdays\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n21\t7.92\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n23\t150\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tdays\t_\tNOUN\tNNS\t_\t22\tnmod:npmod\t_\t_\n25\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n26\t7.80\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n28\t180\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tdays\t_\tNOUN\tNNS\t_\t27\tnmod:npmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNegotiable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tbank-backed\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tbusiness\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tcredit\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tinstruments\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\ttypically\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tfinancing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\timport\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\torder\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLATE\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tEURODOLLARS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n2\t13/16\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n3\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tdep\t_\t_\n5\t8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n6\t11/16\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n8\tone\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmonth\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n11\t8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n12\t13/16\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tdep\t_\t_\n15\t8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n16\t11/16\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n21\t8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n22\t13/16\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n23\t%\t_\tSYM\tNN\t_\t27\tdep\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tdep\t_\t_\n25\t8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n26\t11/16\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n28\tthree\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tmonths\t_\tNOUN\tNNS\t_\t27\tnmod:npmod\t_\t_\n30\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n31\t8\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n32\t3/4\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n33\t%\t_\tSYM\tNN\t_\t37\tdep\t_\t_\n34\tto\t_\tADP\tTO\t_\t37\tdep\t_\t_\n35\t8\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n36\t5/8\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n38\tfour\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tmonths\t_\tNOUN\tNNS\t_\t37\tnmod:npmod\t_\t_\n40\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n41\t8\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n42\t11/16\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n43\t%\t_\tSYM\tNN\t_\t47\tdep\t_\t_\n44\tto\t_\tADP\tTO\t_\t47\tdep\t_\t_\n45\t8\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n46\t9/16\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n47\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n48\tfive\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n49\tmonths\t_\tNOUN\tNNS\t_\t47\tnmod:npmod\t_\t_\n50\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n51\t8\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n52\t5/8\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n53\t%\t_\tSYM\tNN\t_\t57\tdep\t_\t_\n54\tto\t_\tADP\tTO\t_\t57\tdep\t_\t_\n55\t8\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n56\t1/2\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n57\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n58\tsix\t_\tNUM\tCD\t_\t59\tnummod\t_\t_\n59\tmonths\t_\tNOUN\tNNS\t_\t57\tnmod:npmod\t_\t_\n60\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tINTERBANK\t_\tADV\tNNP\t_\t4\tadvmod\t_\t_\n3\tOFFERED\t_\tVERB\tNNP\t_\t4\tamod\t_\t_\n4\tRATES\t_\tNOUN\tNNPS\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tLIBOR\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\t8\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\t3/4\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n4\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonth\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n6\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n7\t8\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t3/4\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n13\t8\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t9/16\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n16\tsix\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n18\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n19\t8\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t9/16\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n22\tone\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tinterbank\t_\tADV\tNN\t_\t6\tadvmod\t_\t_\n5\toffered\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\trates\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdeposits\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n14\tbased\t_\tVERB\tVBN\t_\t16\tcase\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tquotations\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n17\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tfive\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFOREIGN\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tPRIME\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tRATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tCanada\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t13.50\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t1\tdep\t_\t_\n4\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n5\tGermany\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t8.50\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n9\tJapan\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t4.875\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n13\tSwitzerland\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n14\t8.50\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdep\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n17\tBritain\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n18\t15\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trate\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindications\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tdirectly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tcomparable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tlending\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpractices\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tvary\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n12\twidely\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tlocation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTREASURY\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tBILLS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tResults\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n4\tTuesday\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tOctober\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t10\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\t1989\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tauction\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tshort-term\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tgovernment\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbills\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tsold\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdiscount\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tface\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tvalue\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tunits\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n29\t10,000\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tdep\t_\t_\n31\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n32\t1\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t7.63\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t13\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tweeks\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t7.60\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\t26\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tweeks\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHOME\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLOAN\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMORTGAGE\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCORP\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n8\tFreddie\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMac\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\tPosted\t_\tVERB\tVBN\t_\t2\tamod\t_\t_\n2\tyields\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\t30-year\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmortgage\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcommitments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tdelivery\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\twithin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t30\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t9.91\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tstandard\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tconventional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfixedrate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmortgages\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\t7.875\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t19\tamod\t_\t_\n14\trate\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n15\tcapped\t_\tVERB\tVBD\t_\t19\tamod\t_\t_\n16\tone-year\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tadjustable\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\trate\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmortgages\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tNATIONAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMORTGAGE\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tASSOCIATION\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n6\tFannie\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMae\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tPosted\t_\tVERB\tVBN\t_\t2\tamod\t_\t_\n2\tyields\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\t30\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t7\tamod\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcommitments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdelivery\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\twithin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n14\tpriced\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpar\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t-RRB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n\n1\t9.86\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tstandard\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tconventional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfixed-rate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmortgages\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\t8.85\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t6/2\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t18\tamod\t_\t_\n14\tcapped\t_\tVERB\tVBD\t_\t13\tdep\t_\t_\n15\tone-year\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tadjustable\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\trate\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmortgages\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMERRILL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tLYNCH\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tREADY\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tASSETS\t_\tPROPN\tNNPS\t_\t5\tcompound\t_\t_\n5\tTRUST\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t8.33\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAnnualized\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\treturn\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\texpenses\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tpast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n14\tnot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tforecast\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tfuture\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\treturns\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPension\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tfunds\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tinsurers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbehemoths\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tinvesting\t_\tNOUN\tJJ\t_\t11\tcompound\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tbegan\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tscooping\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\trout\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tplan\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t5\tdobj\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRightly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\tor\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\twrongly\t_\tADV\tRB\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tgiant\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinstitutional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tappear\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\tfighting\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tlatest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\twar\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tapplying\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tlesson\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tlearned\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tOctober\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\t1987\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcrash\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n28\tBuying\t_\tVERB\tVBG\t_\t32\tcsubj\t_\t_\n29\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tbottom\t_\tNOUN\tJJ\t_\t28\tnmod\t_\t_\n32\tpays\t_\tVERB\tVBZ\t_\t19\tparataxis\t_\t_\n33\toff\t_\tADP\tRP\t_\t32\tcompound:prt\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t3\tmark\t_\t_\n2\tbe\t_\tVERB\tVB\t_\t3\tcop\t_\t_\n3\tsure\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tmight\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tput\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\taway\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcheckbooks\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\thurry\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tstocks\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\topen\t_\tVERB\tJJ\t_\t8\tadvcl\t_\t_\n18\tsharply\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tlower\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n20\ttoday\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tstill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpanic\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tbail\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n7\tout\t_\tADP\tIN\t_\t6\tcompound:prt\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tperformance\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tindicates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\two\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tabandon\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tunless\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tconditions\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tget\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n15\tfar\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tworse\t_\tADJ\tJJR\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tLast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t7\tnsubjpass\t_\t_\n6\tgot\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\trewarded\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n8\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tgoing\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n10\tout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tbuying\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n13\tstocks\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpanic\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tworst\t_\tADJ\tJJS\t_\t9\tadvcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tJohn\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tW.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tRogers\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tChicago-based\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n30\tAriel\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tCapital\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tManagement\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tInc.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twhich\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n36\tmanages\t_\tVERB\tVBZ\t_\t33\tacl:relcl\t_\t_\n37\t$\t_\tSYM\t$\t_\t36\tdobj\t_\t_\n38\t1.1\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\tbillion\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tstocks\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRogers\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tspent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\thalf\t_\tDET\tPDT\t_\t6\tdet:predet\t_\t_\n5\this\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tcash\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\thand\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tour\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfavorite\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tfallen\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n18\tapart\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tinvest\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trest\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tweakens\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n11\tfurther\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tDenver-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n2\tportfolio\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tmanager\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tJames\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCraig\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tdaunted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\trout\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tshaved\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n14\t$\t_\tSYM\t$\t_\t13\tdobj\t_\t_\n15\t40\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tvalue\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n22\t$\t_\tSYM\t$\t_\t26\tamod\t_\t_\n23\t752\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tJanus\t_\tPROPN\tNN\t_\t26\tcompound\t_\t_\n26\tFund\t_\tPROPN\tNN\t_\t19\tnmod\t_\t_\n27\the\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\toversees\t_\tVERB\tVBZ\t_\t26\tacl:relcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twaited\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tmake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tall\t_\tDET\tPDT\t_\t10\tdet:predet\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tprogram\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\ttrades\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tkicked\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n13\tthrough\t_\tADP\tIN\t_\t12\tcompound:prt\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\the\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tinto\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tspent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n5\t30\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\thalf-hour\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmoney\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\twallets\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tbuying\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tclose\t_\tADJ\tNN\t_\t4\tnmod\t_\t_\n8\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t'll\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tbuying\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n16\tagain\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\tI\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tknow\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n20\twe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\t're\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n22\tgetting\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n23\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tvalue\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tFrederick\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tA.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tMoran\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tpresident\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n33\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tMoran\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n35\tAsset\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tManagement\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tInc.\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tGreenwich\t_\tPROPN\tNNP\t_\t37\tappos\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tConn\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tjustification\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfundamental\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlevel\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmutual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfunds\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t8\tnsubjpass\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tforced\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsell\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tstockholdings\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\trush\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\twithdraw\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tmoney\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n19\tbig\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n21\tsuch\t_\tADJ\tJJ\t_\t24\tcase\t_\t_\n22\tas\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\tpension\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tfunds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tinsurance\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tcompanies\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\tcan\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tdecide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tride\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tout\t_\tADP\tRP\t_\t31\tcompound:prt\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tstorms\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\twithout\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n36\tjettisoning\t_\tVERB\tVBG\t_\t31\tadvcl\t_\t_\n37\tstock\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tMost\t_\tADV\tJJS\t_\t2\tadvmod\t_\t_\n2\toften\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tdo\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tthat\t_\tDET\tIN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tproved\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n13\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tbest-performing\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n17\tlong-term\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestment\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tattracting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tabout\t_\tADV\tIN\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n23\t1\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\ttrillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tpension\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tfunds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n28\talone\t_\tADV\tRB\t_\t27\tamod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tbought\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tdid\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n11\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\twell\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n14\toff\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbottom\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tStephen\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tB.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTimbers\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tchief\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tinvestment\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tofficer\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n27\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tChicago-based\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n29\tKemper\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tFinancial\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tServices\t_\tPROPN\tNNPS\t_\t32\tcompound\t_\t_\n32\tInc\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n2\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n3\t56\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tbillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\tCalifornia\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tPublic\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tEmployees\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tRetirement\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSystem\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tone\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t$\t_\tSYM\t$\t_\t14\tdobj\t_\t_\n16\t1\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tportfolio\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t24\tnmod:npmod\t_\t_\n24\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlast\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcrash\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\ttaught\t_\tVERB\tVBD\t_\t31\tccomp\t_\t_\n6\tinstitutional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\thave\t_\tVERB\tVBP\t_\t5\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n13\tlong-term\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tholders\t_\tNOUN\tNNS\t_\t10\txcomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\tca\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\treact\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tshort-term\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tevents\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tbad\t_\tADJ\tJJ\t_\t26\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tStephen\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tL.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tNesbitt\t_\tPROPN\tNNP\t_\t31\tdep\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tsenior\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tvice\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tpension\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tconsultants\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n43\tWilshire\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tAssociates\t_\tPROPN\tNNPS\t_\t42\tdep\t_\t_\n45\tin\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tSanta\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tMonica\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n49\tCalif\t_\tPROPN\tNNP\t_\t47\tappos\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThose\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tpulled\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tadvmod\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\tregretted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t10\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n18\tso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n19\tI\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tdoubt\t_\tVERB\tVBP\t_\t10\tparataxis\t_\t_\n21\tyou\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n22\t'll\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tsee\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n24\tany\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tsignificant\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tchanges\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tinstitutional\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tportfolios\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tresult\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tFriday\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tdecline\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tmeasured\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n5\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tStandard\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tPoor\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n11\t500-stock\t_\tPROPN\tJJ\t_\t12\tcompound\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n15\tbeen\t_\tVERB\tVBN\t_\t17\tcop\t_\t_\n16\tstellar\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tperformers\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\trising\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n22\t27.97\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n24\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tplunge\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\texcluding\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n30\tdividends\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tslump\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tleaves\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tahead\t_\tADV\tRB\t_\t5\txcomp\t_\t_\n8\tmore\t_\tADJ\tRBR\t_\t10\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\t20\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twell\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n14\tabove\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tannual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\taverage\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tseveral\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdecades\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tgo\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n5\tdown\t_\tADV\tRP\t_\t4\tadvmod\t_\t_\n6\t400\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tpoints\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tstill\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\thave\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tgood\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tJames\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tD.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAwad\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tNew\t_\tPROPN\tNNP\t_\t27\tamod\t_\t_\n27\tYork-based\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n28\tBMI\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tCapital\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCorp\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAwad\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tworries\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tdown\t_\tADV\tRP\t_\t12\tadvmod\t_\t_\n14\t800\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\t900\t_\tNUM\tCD\t_\t14\tconj\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tnext\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tfew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdays\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\thappen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tbefore\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tturn\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n8\taround\t_\tADV\tRP\t_\t7\tadvmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tdiscerns\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tparallels\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tincluding\t_\tVERB\tVBG\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\temphasis\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttakeover\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tre-emergence\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tcomputerized\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tonly\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tthing\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\tdo\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\thave\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t21\tparataxis\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n17\t`\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tportfolio\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tinsurance\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\t'\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tphenomenon\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n22\toverlaid\t_\tVERB\tNN\t_\t21\tacl\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\trest\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tMost\t_\tADV\tJJS\t_\t3\tadvmod\t_\t_\n2\tinstitutional\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tabandoned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tportfolio\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tinsurance\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\thedging\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\ttechnique\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t15\tnsubjpass\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t15\tauxpass\t_\t_\n14\twidely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tthought\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n17\thave\t_\tAUX\tVB\t_\t18\taux\t_\t_\n18\tworsened\t_\tVERB\tVBN\t_\t15\txcomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcrash\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n2\treally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tinsurance\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttactic\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tdesigned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsoften\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tblow\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tdeclining\t_\tVERB\tVBG\t_\t16\tamod\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprices\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n18\tgenerate\t_\tVERB\tVBP\t_\t10\tconj\t_\t_\n19\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\toffsetting\t_\tVERB\tJJ\t_\t21\tamod\t_\t_\n21\tprofit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tby\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tselling\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n24\twaves\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tS&P\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tfutures\t_\tNOUN\tNNS\t_\t28\tcompound\t_\t_\n28\tcontracts\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tseverest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\ttest\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t21\tnsubj\t_\t_\n8\t60\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tportfolio\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tinsurance\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\teffect\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcrash\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n19\tdid\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\twork\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tdisappeared\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tstock\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tfutures\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n31\tprices\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n32\tbecame\t_\tVERB\tVBD\t_\t26\tconj\t_\t_\n33\tdisconnected\t_\tVERB\tVBN\t_\t32\txcomp\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\twithout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tportfolio\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tinsurance\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tconditions\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\tgrim\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmanagers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tNeil\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWeisman\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhose\t_\tPRON\tWP$\t_\t9\tnmod:poss\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tamod\t_\t_\n6\tYork-based\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tChilmark\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tCapital\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tPartners\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tconverted\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n12\t85\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n16\t$\t_\tSYM\t$\t_\t20\tamod\t_\t_\n17\t220\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tinvestment\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpool\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tcash\t_\tVERB\tNN\t_\t11\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\trecent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\the\t_\tPRON\tPRP\t_\t30\tnsubjpass\t_\t_\n29\twas\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tbesieged\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n31\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tWall\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tStreet\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tfirms\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n35\tFriday\t_\tPROPN\tNNP\t_\t30\tnmod:tmod\t_\t_\n36\tasking\t_\tVERB\tVBG\t_\t30\tdep\t_\t_\n37\thim\t_\tPRON\tPRP\t_\t36\tdobj\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\ttake\t_\tVERB\tVB\t_\t36\txcomp\t_\t_\n40\tstock\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n41\toff\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\ttheir\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n43\thands\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tgot\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n4\tcalls\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tblock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thouses\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tasking\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n10\tus\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\twe\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\twant\t_\tVERB\tVBP\t_\t9\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tbids\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tanything\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tWeisman\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twho\t_\tPRON\tWP\t_\t37\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n27\thappy\t_\tADJ\tJJ\t_\t37\tccomp\t_\t_\n28\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\this\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\treturns\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tinvestments\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tchalked\t_\tVERB\tVBD\t_\t30\tacl\t_\t_\n34\tup\t_\tADP\tRB\t_\t33\tcompound:prt\t_\t_\n35\tearlier\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n37\tdeclined\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\toffers\t_\tNOUN\tNNS\t_\t37\tdobj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWeisman\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tappear\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tstabilize\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tnext\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tfew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tbefore\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tdeclining\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n16\tagain\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n18\ttrapping\t_\tVERB\tNN\t_\t15\tadvcl\t_\t_\n19\tmore\t_\tADJ\tRBR\t_\t20\tamod\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\trigor\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tmortis\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\trally\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tbrought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\treprieve\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmanagers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\twhose\t_\tPRON\tWP$\t_\t12\tnmod:poss\t_\t_\n11\tinvestment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tstyles\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tput\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n15\tthem\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\todds\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\trally\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEspecially\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tgleeful\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tshort\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsellers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twho\t_\tPRON\tWP\t_\t11\tnsubjpass\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tpounded\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n12\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tclimb\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshorts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsell\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tborrowed\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\thoping\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n10\tby\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\treplacing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n12\tthem\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tlater\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tlower\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tprice\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnation\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tlargest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n5\tshort-selling\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toperation\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\tFeshbach\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBrothers\t_\tPROPN\tNNPS\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tPalo\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tAlto\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tCalif.\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n18\tlast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tMay\t_\tPROPN\tNNP\t_\t17\tnmod:tmod\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tshort\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tpositions\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n24\thad\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\tshown\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n26\tlosses\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t10\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n33\tup\t_\tADP\tIN\t_\t25\tadvmod\t_\t_\n34\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n35\tthat\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tpoint\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdep\t_\t_\n2\tthat\t_\tDET\tWDT\t_\t5\tnsubj\t_\t_\n3\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tchanged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tahead\t_\tADV\tRB\t_\t13\tccomp\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbecause\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfirm\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tKurt\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tFeshbach\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tkilling\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFood\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tDrug\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tAdministration\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tspokesman\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tJeff\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tNesbit\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tagency\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tturned\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n13\tover\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tevidence\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tcriminal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestigation\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tconcerning\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n20\tVitarine\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPharmaceuticals\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tInc.\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n23\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tAttorney\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\toffice\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n29\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tBaltimore\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNeither\t_\tDET\tDT\t_\t2\tcc:preconj\t_\t_\n2\tVitarine\t_\tPROPN\tNNP\t_\t19\tnsubjpass\t_\t_\n3\tnor\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tany\t_\tDET\tDT\t_\t2\tconj\t_\t_\n5\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n7\tSpringfield\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n8\tGardens\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n10\tN.Y.\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tofficials\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\temployees\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n18\tbeen\t_\tAUX\tVBN\t_\t19\tauxpass\t_\t_\n19\tcharged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tany\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcrimes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tVitarine\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tapproval\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tmarket\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tversion\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tblood\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tpressure\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmedicine\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n14\tacknowledged\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsubstituted\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n18\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tSmithKline\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tBeecham\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPLC\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tproduct\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n23\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\town\t_\tADJ\tJJ\t_\t17\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\ttests\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNesbit\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tFDA\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tasked\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tBolar\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tPharmaceutical\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\trecall\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tretail\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tlevel\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n19\turinary\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttract\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tantibiotic\t_\tNOUN\tJJ\t_\t13\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tcomplied\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthat\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trequest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tspokesman\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBolar\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsubject\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcriminal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestigation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tFDA\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tInspector\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tGeneral\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\toffice\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tHealth\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tHuman\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tServices\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n26\tonly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tagreed\t_\tVERB\tVBD\t_\t51\tccomp\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\trecall\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\ttwo\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tstrengths\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tversion\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tMacrodantin\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n38\tas\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n39\tfar\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tdown\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n41\tas\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\tdirect\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tcustomers\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n45\tmostly\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n46\twholesalers\t_\tNOUN\tNNS\t_\t43\tdep\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t51\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t51\tpunct\t_\t_\n49\tMr.\t_\tPROPN\tNNP\t_\t50\tcompound\t_\t_\n50\tNesbit\t_\tPROPN\tNNP\t_\t51\tnsubj\t_\t_\n51\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t51\tpunct\t_\t_\n\n1\tBolar\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tCopiague\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tN.Y.\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tearlier\t_\tADV\tJJR\t_\t9\tadvmod\t_\t_\n9\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tvoluntary\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trecall\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n14\tboth\t_\tDET\tDT\t_\t21\tdet\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n16\t100\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmilligram\t_\tNOUN\tNN\t_\t21\tamod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\t50\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmilligram\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\tversions\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdrug\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFDA\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tpresented\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tevidence\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tuncovered\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tindicating\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tBolar\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tsubstituted\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tbrand-name\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tproduct\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t16\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tgain\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n25\tgovernment\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tapproval\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tsell\t_\tVERB\tVB\t_\t26\tacl\t_\t_\n29\tgeneric\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tversions\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMacrodantin\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBolar\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdenied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tswitched\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tbrand-name\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tproduct\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\town\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttesting\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tWest\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tGerman\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tretailer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tASKO\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tDeutsche\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tKaufhaus\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAG\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n9\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tchallenge\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlegality\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\twidely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\temployed\t_\tVERB\tVBN\t_\t19\tamod\t_\t_\n18\tanti-takeover\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdefense\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tcompanies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tNetherlands\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\teventual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcourt\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdecision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbecome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlandmark\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tDutch\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tcorporate\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlaw\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tbecause\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlawsuit\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n16\tASKO\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tplans\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tfile\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\twould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t23\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tfirst\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tchallenge\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tentire\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tprinciple\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tpractice\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n31\tof\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tcompanies\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n33\tissuing\t_\tVERB\tVBG\t_\t28\tacl\t_\t_\n34\tvoting\t_\tADJ\tNN\t_\t36\tamod\t_\t_\n35\tpreferred\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tshares\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n37\tto\t_\tADP\tTO\t_\t39\tcase\t_\t_\n38\tmanagement-controlled\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\ttrusts\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tdilute\t_\tVERB\tVB\t_\t33\tadvcl\t_\t_\n42\tvoting\t_\tNOUN\tVBG\t_\t43\tcompound\t_\t_\n43\tpower\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tcommon\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n46\tstockholders\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tUp\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n2\tto\t_\tADP\tTO\t_\t3\tcase\t_\t_\n3\tnow\t_\tADV\tRB\t_\t1\tnmod\t_\t_\n4\tonly\t_\tADJ\tRB\t_\t6\tamod\t_\t_\n5\tspecific\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taspects\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthese\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdefenses\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\tchallenged\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tthough\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tunsuccessfully\t_\tADV\tRB\t_\t12\tadvcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tASKO\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tDutch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tlawyers\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tnoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tShould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcourts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tuphold\t_\tVERB\tVBP\t_\t16\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tvalidity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttype\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tdefense\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tASKO\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tthen\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\task\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcourt\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\toverturn\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n21\tsuch\t_\tDET\tPDT\t_\t24\tdet:predet\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tvote-diluting\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmaneuver\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\trecently\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tdeployed\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n27\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tKoninklijke\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tAhold\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tNV\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tASKO\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tDutch-based\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tinternational\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfood\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tretailer\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n9\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n10\treasonable\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgrounds\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tissue\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tpreferred\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfriendly\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\ttrust\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n21\tthus\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tdilute\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tworth\t_\tNOUN\tJJ\t_\t22\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tvoting\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpower\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tASKO\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tother\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tshareholders\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSpeaking\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n2\tthrough\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tDutch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tlawyers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tASKO\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tholds\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tstake\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tAhold\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tASKO\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\theld\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t13.6\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tstake\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubjpass\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\taccumulated\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n14\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJuly\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tAhold\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tconfident\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\town\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tposition\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpropriety\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tpreferred-share\t_\tNOUN\tJJ\t_\t20\tcompound\t_\t_\n20\tissue\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttermed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tASKO\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tlegal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tactions\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tunproductive\t_\tADJ\tJJ\t_\t2\tadvcl\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tinternational\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcooperation\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tamong\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tEuropean\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tretailers\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tChase\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tManhattan\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tBank\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tChairman\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tWillard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tButcher\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tconservative\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbanker\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tloyal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tRepublican\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tmorning\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\thad\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n22\tfew\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tkind\t_\tADJ\tNN\t_\t24\tamod\t_\t_\n24\twords\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tPresident\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tBush\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\teconomic\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpolicy-making\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t38\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t38\tccomp\t_\t_\n4\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsignificant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tissues\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n8\tout\t_\tADV\tIN\t_\t9\tadvmod\t_\t_\n9\tthere\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n12\tas\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfiscal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdeficit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\ttrade\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tdeficit\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tour\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\trelations\t_\tNOUN\tNNS\t_\t15\tappos\t_\t_\n23\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tJapan\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\thave\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n28\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n29\tbe\t_\tVERB\tVB\t_\t31\tcop\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tsubject\t_\tNOUN\tNN\t_\t27\txcomp\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tmajor\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tinitiatives\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t38\tpunct\t_\t_\n37\the\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n38\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n39\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tan\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tinterview\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t38\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tsee\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tinitiative\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tI\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n13\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tshot\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tagenda\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\thours\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tlater\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t190\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPoliticians\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tfinger\t_\tVERB\tNN\t_\t2\txcomp\t_\t_\n5\teach\t_\tDET\tDT\t_\t4\tdobj\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tblame\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\talthough\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tanalysts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tdoubt\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tWashington\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n18\tsingly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tresponsible\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tWall\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tStreet\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\twoes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tButcher\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tcomments\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tmake\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tone\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tthing\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tclear\t_\tADJ\tJJ\t_\t15\tdep\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n11\tSome\t_\tDET\tDT\t_\t15\tnsubj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tWall\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tStreet\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\twonder\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n16\tif\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tanyone\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcharge\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\teconomic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tpolicy\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t1\tdobj\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n2\tBy\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\t11:59\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tp.m.\t_\tADV\tNN\t_\t5\tadvmod\t_\t_\n5\ttonight\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tPresident\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBush\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tmust\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\torder\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n12\t16\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tautomatic\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tacross-the-board\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcuts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tgovernment\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tspending\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcomply\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n24\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tGramm-Rudman\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tbudget\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tlaw\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcuts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tnecessary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tCongress\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tadministration\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\tfailed\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\treach\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tagreement\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tdeficit-cutting\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbill\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\tsimply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\thave\t_\tVERB\tVB\t_\t33\tccomp\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tleadership\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\ttry\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treduce\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdeficit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tmake\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n17\ttough\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tchoices\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n21\tHouse\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n22\tBudget\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n23\tCommittee\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tChairman\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tLeon\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tPanetta\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n27\t-LRB-\t_\tPUNCT\t-LRB-\t_\t28\tpunct\t_\t_\n28\tD.\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tCalif\t_\tPROPN\tNNP\t_\t28\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n32\t-RRB-\t_\tPUNCT\t-RRB-\t_\t28\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tyesterday\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tNBC\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tNews\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n40\tMeet\t_\tPROPN\tVB\t_\t42\tdep\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tPress\t_\tPROPN\tNNP\t_\t37\tdep\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n44\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tweeks\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tBush\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tadministration\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tReserve\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tengaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsemi-public\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tbattle\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tinternational\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\teconomic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tpolicy\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpush\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdollar\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tlower\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tFed\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\taux\t_\t_\n16\tresisting\t_\tVERB\tVBG\t_\t5\tparataxis\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tOne\t_\tNUM\tCD\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tthings\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\tcontinues\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tworry\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tme\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n12\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmonetary\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twarfare\t_\tNOUN\tNN\t_\t26\tccomp\t_\t_\n15\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tTreasury\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tDepartment\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tFederal\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tReserve\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBoard\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tLawrence\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tKudlow\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n31\tBear\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tStearns\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n34\t&\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n36\teconomist\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n38\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n39\tABC\t_\tPROPN\tNNP\t_\t43\tnmod:poss\t_\t_\n40\t's\t_\tPART\tPOS\t_\t39\tcase\t_\t_\n41\t``\t_\tPUNCT\t``\t_\t43\tpunct\t_\t_\n42\tThis\t_\tPROPN\tDT\t_\t43\tcompound\t_\t_\n43\tWeek\t_\tPROPN\tNN\t_\t26\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tsent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tadvmod\t_\t_\n7\tconfusing\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsignals\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tresponse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\trecent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tspate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tairline\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\ttakeovers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tTransportation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tSecretary\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tSam\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSkinner\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tforced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tNorthwest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAirlines\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treduce\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstake\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\theld\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tKLM\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tRoyal\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tDutch\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAirlines\t_\tPROPN\tNNPS\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tsince\t_\tADV\tIN\t_\t5\tadvmod\t_\t_\n5\trun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\topposition\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tTreasury\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tWhite\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tHouse\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthat\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdecision\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tkept\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tmum\t_\tADJ\tNN\t_\t4\txcomp\t_\t_\n6\ton\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\thow\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n8\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tdecision\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tmight\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\taffect\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbid\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tUnited\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAirlines\t_\tPROPN\tNNPS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tincludes\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tbig\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstake\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tBritish\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tAirways\t_\tPROPN\tNNPS\t_\t26\tcompound\t_\t_\n26\tPLC\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tuncertainty\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tabout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tWashington\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tanti-takeover\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpolicy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\treason\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n13\tthat\t_\tADP\tWDT\t_\t20\tadvmod\t_\t_\n14\tfinancing\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tUnited\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tAirlines\t_\tPROPN\tNNPS\t_\t19\tcompound\t_\t_\n19\ttakeover\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tfell\t_\tVERB\tVBD\t_\t12\tdep\t_\t_\n21\tthrough\t_\tADP\tRB\t_\t20\tcompound:prt\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tevent\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n26\ttriggered\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tdrop\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tways\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbackdrop\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n7\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdecline\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\teerily\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsimilar\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tthat\t_\tPRON\tDT\t_\t14\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tOctober\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n19\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n21\t508-point\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcrash\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tas\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tnow\t_\tADV\tRB\t_\t11\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbudget\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdebate\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tbehind\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tschedule\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tautomatic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tspending\t_\tADJ\tNN\t_\t15\tamod\t_\t_\n15\tcuts\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\twithin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdays\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n19\tof\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\ttaking\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\thold\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tlocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbattle\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tover\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tinternational\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\teconomic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpolicy\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\talthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthat\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\ttime\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tWest\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tGerman\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tofficials\t_\tNOUN\tNNS\t_\t4\tadvcl\t_\t_\n23\trather\t_\tADV\tRB\t_\t27\tcase\t_\t_\n24\tthan\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tFederal\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tReserve\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n2\tconcern\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n3\tabout\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tofficial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tactions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\taimed\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttakeovers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n10\tthen\t_\tADV\tRB\t_\t15\tdep\t_\t_\n11\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\ttax-writing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tHouse\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tWays\t_\tPROPN\tNNPS\t_\t6\tdep\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tMeans\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCommittee\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\trather\t_\tADV\tRB\t_\t23\tcase\t_\t_\n20\tthan\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tTransportation\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDepartment\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n25\twere\t_\tAUX\tVBD\t_\t26\taux\t_\t_\n26\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tnervous\t_\tADJ\tJJ\t_\t26\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tcrash\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbrought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tReagan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tadministration\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tDemocratic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tlawmakers\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttable\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tbudget\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsummit\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n20\tresulting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\ttwo-year\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tplan\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\treduce\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdeficit\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tmore\t_\tADJ\tJJR\t_\t32\tadvmod\t_\t_\n31\tthan\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n33\t76\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tbillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n36\teven\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n37\tthough\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tdeficit\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n40\tactually\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\trose\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n42\tby\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tnearly\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n44\t$\t_\tSYM\t$\t_\t41\tnmod\t_\t_\n45\t12\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n46\tbillion\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n47\tduring\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tthat\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tperiod\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tbarring\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n4\tfurther\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tdrops\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsimilar\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\toutcome\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tlikely\t_\tADV\tRB\t_\t17\txcomp\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tLawmakers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tofficials\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n5\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tdrop\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\titself\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tenough\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tforce\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tboth\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsides\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tback\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\ttable\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\ttry\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\treach\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tdeficit-reduction\t_\tNOUN\tJJ\t_\t31\tcompound\t_\t_\n31\tagreement\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tthat\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n33\twould\t_\tAUX\tMD\t_\t36\taux\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t36\tcop\t_\t_\n35\tmore\t_\tADV\tRBR\t_\t36\tadvmod\t_\t_\n36\tserious\t_\tADJ\tJJ\t_\t31\tacl:relcl\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n38\tmore\t_\tADV\tRBR\t_\t39\tadvmod\t_\t_\n39\tfar-reaching\t_\tADJ\tJJ\t_\t36\tconj\t_\t_\n40\tthan\t_\tADP\tIN\t_\t45\tcase\t_\t_\n41\tlast\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tspring\t_\tNOUN\tNN\t_\t45\tnmod:poss\t_\t_\n43\t's\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tgimmick-ridden\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tplan\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\twhich\t_\tPRON\tWDT\t_\t52\tnsubjpass\t_\t_\n48\tstill\t_\tADV\tRB\t_\t52\tadvmod\t_\t_\n49\tis\t_\tAUX\tVBZ\t_\t52\tauxpass\t_\t_\n50\tn't\t_\tPART\tRB\t_\t52\tneg\t_\t_\n51\tfully\t_\tADV\tRB\t_\t52\tadvmod\t_\t_\n52\timplemented\t_\tVERB\tVBN\t_\t45\tacl:relcl\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t15\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tbiggest\t_\tADJ\tJJS\t_\t5\tamod\t_\t_\n5\treasons\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\tthat\t_\tADP\tWDT\t_\t11\tadvmod\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttalks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tlikely\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcome\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tabout\t_\tADP\tRB\t_\t13\tcompound:prt\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n19\teveryone\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tlearned\t_\tVERB\tVBD\t_\t30\tadvcl\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\teconomy\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n29\tcan\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\tsurvive\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n31\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tone-day\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\t508-point\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\ttumble\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tEverybody\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tthought\t_\tVERB\tVBD\t_\t24\tccomp\t_\t_\n4\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tlooking\t_\tVERB\tVBG\t_\t3\tdep\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trepetition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1929\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\tlooking\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\trecession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n22\tRep.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tPanetta\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tyesterday\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tinterview\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\thappen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tlearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tsurvive\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t5\tdobj\t_\t_\n7\twithout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tproblem\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tadministration\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tprivately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPanetta\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tprecipitous\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdrop\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tgoing\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tforce\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpresident\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tCongress\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\ttake\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n28\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tmuch\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tharder\t_\tADJ\tJJR\t_\t29\tdep\t_\t_\n31\tlook\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tfiscal\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tpolicy\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t8\texpl\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tplenty\t_\tNOUN\tJJ\t_\t0\troot\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tblame\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n13\taround\t_\tADP\tRB\t_\t12\tcompound:prt\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t49\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t49\tccomp\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tunderlying\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tconcern\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpart\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tAmerican\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpeople\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n16\tthere\t_\tADV\tEX\t_\t18\tnsubj\t_\t_\n17\tshould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tbe\t_\tVERB\tVB\t_\t6\tdep\t_\t_\n19\t-\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tadministration\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tnot\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tgone\t_\tVERB\tVBN\t_\t6\tdep\t_\t_\n26\tfar\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tenough\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n28\tin\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tcutting\t_\tVERB\tVBG\t_\t25\tadvcl\t_\t_\n30\tthis\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdeficit\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n33\tthat\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n34\tCongress\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n35\thas\t_\tAUX\tVBZ\t_\t37\taux\t_\t_\n36\tbeen\t_\tVERB\tVBN\t_\t37\tcop\t_\t_\n37\tunwilling\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\tcut\t_\tVERB\tVB\t_\t37\txcomp\t_\t_\n40\twhat\t_\tPRON\tWP\t_\t43\tdobj\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tadministration\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n43\tasked\t_\tVERB\tVBD\t_\t39\tccomp\t_\t_\n44\tus\t_\tPRON\tPRP\t_\t43\tdobj\t_\t_\n45\tto\t_\tPART\tTO\t_\t46\tmark\t_\t_\n46\tcut\t_\tVERB\tVB\t_\t43\txcomp\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t49\tpunct\t_\t_\n49\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n50\tSenate\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n51\tFinance\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n52\tCommittee\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n53\tChairman\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n54\tLloyd\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tBentsen\t_\tPROPN\tNNP\t_\t49\tnsubj\t_\t_\n56\t-LRB-\t_\tPUNCT\t-LRB-\t_\t57\tpunct\t_\t_\n57\tD.\t_\tPROPN\tNNP\t_\t55\tappos\t_\t_\n58\t,\t_\tPUNCT\t,\t_\t57\tpunct\t_\t_\n59\tTexas\t_\tPROPN\tNNP\t_\t57\tdep\t_\t_\n60\t-RRB-\t_\tPUNCT\t-RRB-\t_\t57\tpunct\t_\t_\n61\t.\t_\tPUNCT\t.\t_\t49\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tclearly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t6\tdobj\t_\t_\n8\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\t190-point\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdecline\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tovercome\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tbitter\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfeelings\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tdeveloped\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tlawmakers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tWhite\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n25\tHouse\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n26\tBudget\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tDirector\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tRichard\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tDarman\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n30\tover\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tcapital-gains\t_\tNOUN\tNNS\t_\t33\tcompound\t_\t_\n33\tfight\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDemocrats\t_\tPROPN\tNNPS\t_\t5\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n4\tparticularly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tangry\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tover\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBush\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tclaim\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tcapital-gains\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tcut\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n16\tpart\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tApril\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tbudget\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\taccord\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tinsistence\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n25\ton\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tcombining\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t26\tdobj\t_\t_\n28\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tdeficit-reduction\t_\tNOUN\tJJ\t_\t31\tcompound\t_\t_\n31\tlegislation\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t40\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tprospect\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tso-called\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tgrand\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcompromise\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tdeal\t_\tNOUN\tVB\t_\t10\tconj\t_\t_\n13\tnext\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n15\tbecause\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tadministration\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tsimply\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\tdid\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tlive\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n22\tup\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n24\tthis\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tdeal\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t40\tpunct\t_\t_\n30\tSenate\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n31\tMajority\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n32\tLeader\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tGeorge\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tMitchell\t_\tPROPN\tNNP\t_\t40\tnsubj\t_\t_\n35\t-LRB-\t_\tPUNCT\t-LRB-\t_\t36\tpunct\t_\t_\n36\tD.\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tMaine\t_\tPROPN\tNNP\t_\t36\tdep\t_\t_\n39\t-RRB-\t_\tPUNCT\t-RRB-\t_\t36\tpunct\t_\t_\n40\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n41\tyesterday\t_\tNOUN\tNN\t_\t40\tnmod:tmod\t_\t_\n42\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tCBS\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tNews\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n45\t's\t_\tPART\tPOS\t_\t44\tcase\t_\t_\n46\t``\t_\tPUNCT\t``\t_\t44\tpunct\t_\t_\n47\tFace\t_\tPROPN\tNNP\t_\t49\tdep\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tNation\t_\tPROPN\tNNP\t_\t44\tdep\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t40\tpunct\t_\t_\n51\t''\t_\tPUNCT\t''\t_\t40\tpunct\t_\t_\n\n1\tDuring\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmaneuverings\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdeficit-cutting\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbill\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcapital-gains\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n13\tissue\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\tthere\t_\tPRON\tEX\t_\t16\texpl\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tsigns\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n19\tSenate\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tRepublicans\t_\tPROPN\tNNPS\t_\t26\tnsubj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tadministration\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n24\twere\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n25\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\todds\t_\tNOUN\tNNS\t_\t17\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tvery\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmoment\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n5\tthat\t_\tADP\tWDT\t_\t9\tadvmod\t_\t_\n6\tSenate\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tRepublicans\t_\tPROPN\tNNPS\t_\t9\tnsubj\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tnegotiating\t_\tVERB\tVBG\t_\t4\tdep\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdeal\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texclude\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tcapital\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tgains\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tdeficit-reduction\t_\tNOUN\tJJ\t_\t19\tcompound\t_\t_\n19\tlegislation\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n21\tWhite\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tHouse\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tspokesman\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tMarlin\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tFitzwater\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\treporters\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t34\tcop\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tpresident\t_\tNOUN\tNN\t_\t34\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tpolicy\t_\tNOUN\tNN\t_\t26\tccomp\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tinclude\t_\tVERB\tVB\t_\t34\tadvcl\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\treached\t_\tVERB\tVBN\t_\t30\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tstrip\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tcapital\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tgains\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlegislation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n14\tOregon\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tSen.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tBob\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPackwood\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tranking\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tGOP\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmember\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\ttax-writing\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n26\tSenate\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tFinance\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCommittee\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n30\thailed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t30\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t9\tadvcl\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t1\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tcurtly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n12\tThe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tadminstration\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thave\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tspeak\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\titself\t_\tPRON\tPRP\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttumble\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tspur\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\taction\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n9\treconciling\t_\tVERB\tVBG\t_\t21\tdep\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tHouse\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tSenate\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tversions\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tdeficit-reduction\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmeasure\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tprocess\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t25\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n24\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\texpected\t_\tVERB\tVBN\t_\t21\tacl:relcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tbegin\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tuntil\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\ttomorrow\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tsoonest\t_\tADJ\tJJS\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSenate\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRepublicans\t_\tPROPN\tNNPS\t_\t3\tnsubj\t_\t_\n3\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thope\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tHouse\t_\tNOUN\tNNP\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tfollow\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlead\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tSenate\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n20\tagreed\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tdrop\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tvariety\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tspending\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmeasures\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\ttax\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tbreaks\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t34\tnsubj\t_\t_\n32\twould\t_\tAUX\tMD\t_\t34\taux\t_\t_\n33\thave\t_\tAUX\tVB\t_\t34\taux\t_\t_\n34\tincreased\t_\tVERB\tVBN\t_\t27\tacl:relcl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tfiscal\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\t1990\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tdeficit\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t48\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tneeds\t_\tVERB\tVBZ\t_\t48\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstrong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsignal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t're\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\tserious\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n12\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tdeficit\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treduction\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tbest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tway\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdo\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\tthat\t_\tPRON\tDT\t_\t21\tdobj\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t4\tconj\t_\t_\n24\tfor\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tHouse\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tRepresentatives\t_\tPROPN\tNNPS\t_\t26\tnmod\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tstrip\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n32\tbill\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tsimilar\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tprovisions\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t48\tpunct\t_\t_\n38\tSen.\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\tWarren\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tRudman\t_\tPROPN\tNNP\t_\t48\tnsubj\t_\t_\n41\t-LRB-\t_\tPUNCT\t-LRB-\t_\t42\tpunct\t_\t_\n42\tR.\t_\tPROPN\tNNP\t_\t40\tappos\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n44\tN.H\t_\tPROPN\tNNP\t_\t42\tdep\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t44\tpunct\t_\t_\n46\t-RRB-\t_\tPUNCT\t-RRB-\t_\t42\tpunct\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t48\tpunct\t_\t_\n48\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n49\tyesterday\t_\tNOUN\tNN\t_\t48\tnmod:tmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t48\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tHouse\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tOffice\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tManagement\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tBudget\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\twhose\t_\tPRON\tWP$\t_\t11\tnmod:poss\t_\t_\n11\tcalculations\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tdetermine\t_\tVERB\tVBP\t_\t4\tacl:relcl\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tGramm-Rudman\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\ttargets\t_\tNOUN\tNNS\t_\t18\tnsubjpass\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t18\tauxpass\t_\t_\n18\tmet\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n20\testimated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tHouse-passed\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tdeficit-reduction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmeasure\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tcut\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tfiscal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\t1990\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tshortfall\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t27\tnmod\t_\t_\n34\t6.2\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tbillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n37\talmost\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\thalf\t_\tDET\tNN\t_\t33\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\tCongressional\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n42\tBudget\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tOffice\t_\tPROPN\tNNP\t_\t45\tnmod:poss\t_\t_\n44\t's\t_\tPART\tPOS\t_\t43\tcase\t_\t_\n45\testimate\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n46\tof\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\t$\t_\tSYM\t$\t_\t45\tnmod\t_\t_\n48\t11.0\t_\tNUM\tCD\t_\t49\tcompound\t_\t_\n49\tbillion\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tRep.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPanetta\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n5\tOMB\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tfigure\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n9\tstill\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n11\tenough\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tavoid\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tpermanent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tacross-the-board\t_\tNOUN\tJJ\t_\t13\tdobj\t_\t_\n16\tcuts\t_\tVERB\tNNS\t_\t15\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tadded\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n20\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n22\tWe\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\t're\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tgetting\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n25\tvery\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tclose\t_\tADV\tRB\t_\t24\txcomp\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmargins\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\there\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tone\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tWashington\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\twilling\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tblame\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tprovoking\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdrop\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tplayers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tquick\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tseize\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmoment\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBefore\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsun\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tset\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n9\tRichard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tRahn\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tsupply-side\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tchief\t_\tADJ\tNN\t_\t15\tamod\t_\t_\n15\teconomist\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tChamber\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tCommerce\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tstatement\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tattributing\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdrop\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tstock\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tprices\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tSenate\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tdecision\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\tpostpone\t_\tVERB\tVB\t_\t35\tacl\t_\t_\n38\taction\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n39\ton\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tcapital\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tgains\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tInvestors\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\taux\t_\t_\n7\tholding\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n8\tassets\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tanticipation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\tfavorable\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tsell\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tspooked\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n23\the\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t7\tcop\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tpreposterous\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\treasons\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n8\tadvanced\t_\tVERB\tVBD\t_\t7\tacl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsupport\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tcapital-gains\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n13\ttax\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcut\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tSen.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMitchell\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t7\tdep\t_\t_\n20\tduring\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\ttelevision\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tappearance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n27\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tsuggest\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n29\tthat\t_\tPRON\tIN\t_\t32\tnsubj\t_\t_\n30\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n31\tperhaps\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tmore\t_\tADV\tJJR\t_\t28\tccomp\t_\t_\n33\tthan\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tany\t_\tDET\tDT\t_\t32\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tothers\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n2\tfollowing\t_\tADJ\tVBG\t_\t9\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tTreasury\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tcorporate\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n8\tmunicipal\t_\tADJ\tJJ\t_\t4\tconj\t_\t_\n9\tofferings\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n11\ttentatively\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tsale\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\taccording\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n19\tto\t_\tADP\tTO\t_\t18\tmwe\t_\t_\n20\tDow\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tJones\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tCapital\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tMarkets\t_\tPROPN\tNNPS\t_\t24\tcompound\t_\t_\n24\tReport\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n25\t:\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t15.2\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tbillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthree-month\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tsix-month\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n8\tbills\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tTwo-year\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tnotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\trefinancing\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n5\tabout\t_\tADV\tIN\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n7\t9.6\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmaturing\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t9.75\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tbillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t52-week\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tbills\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tConnecticut\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLight\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tPower\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\tThree\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\t$\t_\tSYM\t$\t_\t7\tamod\t_\t_\n6\t25\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n7\tpreferred\t_\tADJ\tVBN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tvia\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tcompetitive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbidding\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tB&H\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tCrude\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tCarriers\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLtd.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tFour\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tSalomon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tBrothers\t_\tPROPN\tNNPS\t_\t9\tcompound\t_\t_\n9\tInc\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBaldwin\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t2.6\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n3\tClass\t_\tPROPN\tNN\t_\t5\tcompound\t_\t_\n4\tA\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tvia\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tSmith\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBarney\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tHarris\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tUpham\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tCo\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBlockbuster\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tEntertainment\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n2\t250\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tface\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n7\t-RRB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n8\tLiquid\t_\tPROPN\tNN\t_\t11\tcompound\t_\t_\n9\tYield\t_\tPROPN\tNN\t_\t11\tcompound\t_\t_\n10\tOption\t_\tPROPN\tNN\t_\t11\tcompound\t_\t_\n11\tNotes\t_\tPROPN\tNNS\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tvia\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tMerrill\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tLynch\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tCapital\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMarkets\t_\tPROPN\tNNPS\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tChase\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tManhattan\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t14\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tGoldman\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tSachs\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tCo\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tComcast\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t5\tamod\t_\t_\n2\t150\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tconvertible\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tdebentures\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tvia\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tMerrill\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tLynch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCSS\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNPS\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t1.3\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMerrill\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tLynch\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEastern\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tUtilities\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAssociates\t_\tPROPN\tNNPS\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t1.5\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tPaineWebber\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEmployee\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBenefit\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tPlans\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tDean\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tWitter\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tCapital\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMarkets\t_\tPROPN\tNNPS\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tExabyte\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t2,850,000\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tcommon\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tvia\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tGoldman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSachs\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tKnowledgeware\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t2.4\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMontgomery\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSecurities\t_\tPROPN\tNNPS\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOregon\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t100\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tgeneral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tobligation\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tveterans\t_\tNOUN\tNNS\t_\t10\tnmod:poss\t_\t_\n8\t'\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\ttax\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tnotes\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tSeries\t_\tPROPN\tNN\t_\t10\tappos\t_\t_\n13\t1989\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\tvia\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tcompetitive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbid\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWashington\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tD.C.\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t200\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\t1990\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n6\tgeneral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\tobligation\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\ttax\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\trevenue\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tnotes\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n12\tSeries\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\t1990A\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tvia\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tcompetitive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbid\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tVirginia\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tPublic\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSchool\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t2\tdep\t_\t_\n2\t55,730,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tschool\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tfinancing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t1989\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tSeries\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tB\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tresolution\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tvia\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tcompetitive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbid\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAustin\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tTexas\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t2\tdep\t_\t_\n2\t68,230,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tvarious\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t15\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n9\t32\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n11\thotel\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n12\toccupancy\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\trevenue\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tSeries\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\t1989A\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\t$\t_\tSYM\t$\t_\t27\tamod\t_\t_\n22\t36.23\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tconvention\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n25\tcenter\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\trevenue\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tbonds\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tSeries\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\t1989B\t_\tPROPN\tNNP\t_\t27\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\tvia\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tMorgan\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tStanley\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n36\t&\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tCo.\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tgroup\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCalifornia\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHealth\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tFacilities\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tFinancing\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t144.5\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tKaiser\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tPermanente\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\trevenue\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tvia\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tPaineWebber\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tConnecticut\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t3\tdep\t_\t_\n2\t100\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tgeneral\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\tobligation\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n7\tcapital\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tappreciation\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tCollege\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tSavings\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPlan\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\t1989\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tSeries\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tB\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n19\tvia\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tPrudential-Bache\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tCapital\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tFunding\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tgroup\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPennsylvania\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHigher\t_\tPROPN\tJJR\t_\t5\tcompound\t_\t_\n3\tEducation\t_\tPROPN\tNN\t_\t5\tcompound\t_\t_\n4\tFacilities\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t117\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\trevenue\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tHahnemann\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUniversity\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\tSeries\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n12\t1989\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n14\tvia\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tMerrill\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tLynch\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tTennessee\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tValley\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tThree\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tbillion\t_\tNUM\tCD\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tpower\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tvia\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tFirst\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBoston\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUniversity\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tMedicine\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tDentistry\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tNew\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tJersey\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t55\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tSeries\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\tvia\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tPrudential-Bache\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tVirginia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tParkways\t_\tPROPN\tNNPS\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tEconomic\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tDevelopment\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n7\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tTourism\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAuthority\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t143\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tparkway\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\trevenue\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tSeries\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n10\t1989\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tvia\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tPaineWebber\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAntonio\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tTexas\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t640\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tgas\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\telectric\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n8\trevenue\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\trefunding\t_\tNOUN\tVBG\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tvia\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tFirst\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tBoston\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSouth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tDakota\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHealth\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tEducation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tFacility\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAuthority\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t51.1\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tRapid\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tCity\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tRegional\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tHospital\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\tvia\t_\tADP\tIN\t_\t21\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n13\tDougherty\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tDawkins\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tStrand\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n18\t&\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tYost\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSmall\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tmatched\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tinstitutional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbrethren\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tanxiety\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tover\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tweekend\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tmost\t_\tADJ\tJJS\t_\t16\tnsubj\t_\t_\n16\tseemed\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\taux\t_\t_\n19\ttaking\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tphilosophical\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tapproach\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n25\tthey\t_\tPRON\tPRP\t_\t27\tnsubjpass\t_\t_\n26\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tresigned\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tmark\t_\t_\n29\triding\t_\tVERB\tVBG\t_\t27\tadvcl\t_\t_\n30\tout\t_\tADP\tRP\t_\t29\tcompound:prt\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tlatest\t_\tADJ\tJJS\t_\t33\tamod\t_\t_\n33\tstorm\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tstock\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tmarket\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'm\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tlosing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n6\tfaith\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tBoston\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tlawyer\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tChristopher\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSullivan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\twatched\t_\tVERB\tVBD\t_\t12\tdep\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tplunge\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n23\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tbig\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tscreen\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tfront\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tbrokerage\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tfirm\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\teveryone\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\telse\t_\tADV\tRB\t_\t8\tamod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t19\tccomp\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tMonday\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsmall\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n8\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tgoing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tpanic\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tsell\t_\tVERB\tVB\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tpredicted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSullivan\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhose\t_\tPRON\tWP$\t_\t24\tnmod:poss\t_\t_\n24\tinvestments\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tinclude\t_\tVERB\tVBP\t_\t21\tacl:relcl\t_\t_\n26\tAMR\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tAmerican\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tAirlines\t_\tPROPN\tNNPS\t_\t31\tcompound\t_\t_\n31\tunit\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tseveral\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tmutual\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tfunds\t_\tNOUN\tNNS\t_\t31\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tinstitutions\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tgoing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tcome\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tin\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tbuy\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n13\t...\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t'm\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\thold\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ton\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsell\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n4\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\t'll\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tloss\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tevinced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\toptimism\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t8\tnsubjpass\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\trewarded\t_\tVERB\tVBN\t_\t4\tacl:relcl\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tflee\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tOh\t_\tINTJ\tUH\t_\t5\tdiscourse\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tbet\t_\tVERB\tVBP\t_\t16\tccomp\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n7\t'll\t_\tAUX\tMD\t_\t13\taux\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t13\tcop\t_\t_\n9\tup\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n10\t50\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tMonday\t_\tPROPN\tNNP\t_\t5\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tLucy\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCrump\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\t78-year-old\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tretired\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\thousewife\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tLexington\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tKy\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCrump\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ther\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tAshwood\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInvestment\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tClub\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tportfolio\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tlost\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n11\tabout\t_\tADV\tIN\t_\t12\tadvmod\t_\t_\n12\tone-third\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tvalue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tfollowing\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tBlack\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tMonday\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tcrash\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tno\t_\tDET\tDT\t_\t25\tneg\t_\t_\n25\tone\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n26\tgot\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tdiscouraged\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n30\twe\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tgained\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n32\tthat\t_\tPRON\tDT\t_\t31\tdobj\t_\t_\n33\tback\t_\tADP\tRB\t_\t31\tcompound:prt\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t36\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n36\tmore\t_\tADJ\tJJR\t_\t31\tdep\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tannual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcongress\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tInvestors\t_\tPROPN\tNNPS\t_\t7\tnmod\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tHyatt\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tRegency\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\thotel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tMinneapolis\t_\tNOUN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tscene\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n23\tcalm\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tSome\t_\tADV\tDT\t_\t2\tadvmod\t_\t_\n2\t500\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n4\trepresenting\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tinvestor\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tclubs\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\taround\t_\tADP\tIN\t_\t10\tamod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tattending\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstarted\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tslide\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tShowalter\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tassociation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tno\t_\tDET\tDT\t_\t14\tneg\t_\t_\n13\tspecial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbulletins\t_\tNOUN\tNNS\t_\t24\tnsubjpass\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\temergency\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmeetings\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t22\tnmod:poss\t_\t_\n21\t'\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tclubs\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\tplanned\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t16\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tassociation\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n11\tlong-term\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tbuy-and-hold\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\twelcomed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdrop\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t11\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tadvantage\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tJohn\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tSnyder\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmember\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tLos\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tAngeles\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tinvestors\t_\tNOUN\tNNS\t_\t23\tnmod:poss\t_\t_\n22\t'\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tclub\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tfour\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tmind\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tdrop\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlevel\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\twants\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\teveryone\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\treacting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tcalmly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tmany\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n12\twonder\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n13\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tlong-term\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\timplications\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n18\twhat\t_\tPRON\tWP\t_\t21\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n20\twidely\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tviewed\t_\tVERB\tVBN\t_\t30\tdep\t_\t_\n22\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcause\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tslide\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n30\treluctance\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n31\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tbanks\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tprovide\t_\tVERB\tVB\t_\t30\tacl\t_\t_\n35\tfinancing\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n36\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tbuy-out\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tUAL\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tCorp.\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tparent\t_\tNOUN\tNN\t_\t41\tappos\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tUnited\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tAirlines\t_\tPROPN\tNNPS\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMarc\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPerkins\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\tTampa\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tFla.\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tinvestment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbanker\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdrop\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tone\t_\tNUM\tCD\t_\t12\tccomp\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttremendous\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tnumber\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tsigns\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tleveraged\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\ttake-out\t_\tNOUN\tJJ\t_\t29\tcompound\t_\t_\n29\tera\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\tis\t_\tAUX\tVBZ\t_\t31\taux\t_\t_\n31\tending\t_\tVERB\tVBG\t_\t24\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t4\tneg\t_\t_\n4\tquestion\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n7\t's\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgeneral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdistaste\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tleverage\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tamong\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tlenders\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPerkins\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tbelieves\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tstabilized\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\tCalifornia\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tinvestor\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tMarvin\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tDavis\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsteps\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n20\tback\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tUnited\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tbidding\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\toffer\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t275\t_\tNUM\tCD\t_\t28\tnmod\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSara\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAlbert\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t34-year-old\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tDallas\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tlaw\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tstudent\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tshe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\t's\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\tgenerally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tskittish\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n15\tabout\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttakeover\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tactivity\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tseems\t_\tVERB\tVBZ\t_\t22\tacl:relcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tfuel\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t26\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthis\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfeeling\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubjpass\t_\t_\n8\t's\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n9\tbuilt\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tsand\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\tshe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\trises\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\t's\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n25\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n26\tfoundation\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\ther\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\thusband\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n5\tpulled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tmost\t_\tADJ\tJJS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tinvestments\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tout\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tafter\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcrash\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\talthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tshe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\tstill\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\towns\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n23\tsome\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tTexaco\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPartly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tbecause\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tof\t_\tADP\tIN\t_\t2\tmwe\t_\t_\n4\tconcern\t_\tNOUN\tNN\t_\t27\tdep\t_\t_\n5\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teconomy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tpartly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n10\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tshe\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\trecently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tquit\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n14\ther\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tjob\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlegal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tassistant\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tgo\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tschool\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n26\tI\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n27\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n28\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthis\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpoint\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\twe\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n32\twant\t_\tVERB\tVBP\t_\t27\tccomp\t_\t_\n33\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t38\tcop\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tlot\t_\tNOUN\tNN\t_\t37\tnmod:npmod\t_\t_\n37\tmore\t_\tADV\tRBR\t_\t38\tadvmod\t_\t_\n38\tliquid\t_\tADJ\tJJ\t_\t32\txcomp\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\twonder\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\thow\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t13\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthese\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tshocks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsmall\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinvestor\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tstand\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tall\t_\tDET\tDT\t_\t4\tdep\t_\t_\n4\tassumed\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n5\tOctober\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n6\t'87\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tone-time\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tshot\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tSan\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tFrancisco\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tattorney\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tDavid\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGreenberg\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlittle\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tguy\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tonly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\thappen\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n11\tonce\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlifetime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tcome\t_\tVERB\tVBN\t_\t10\tparataxis\t_\t_\n17\ton\t_\tADP\tIN\t_\t16\tcompound:prt\t_\t_\n18\tback\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\thappening\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tagain\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGreenberg\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tout\t_\tADP\tRP\t_\t3\txcomp\t_\t_\n5\tjust\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\tbefore\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tregret\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tnever\t_\tADV\tRB\t_\t17\tneg\t_\t_\n17\twent\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n18\tback\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\teven\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tsoared\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tready\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tin\t_\tADP\tIN\t_\t7\tcompound:prt\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpanic\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\twears\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n14\toff\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n7\tWe\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tca\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\thave\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tkind\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tthing\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\thappen\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n16\tvery\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\toften\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlittle\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tguy\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tgets\t_\tVERB\tVBZ\t_\t11\tadvcl\t_\t_\n6\tfrightened\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbig\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tguys\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tbadly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tsurvive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\twithout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlittle\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tguy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tSmall\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\ttiptoed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tfollowing\t_\tVERB\tVBG\t_\t11\tcase\t_\t_\n10\tBlack\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tMonday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n14\tmostly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tmutual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfunds\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDiscount\t_\tADJ\tNN\t_\t3\tamod\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcustomers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n6\tbeen\t_\tVERB\tVBN\t_\t9\tcop\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t23\tccomp\t_\t_\n10\tsomewhat\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tnot\t_\tADV\tRB\t_\t14\tneg\t_\t_\n13\twhole\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thog\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tlike\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\twere\t_\tVERB\tVBD\t_\t14\tdep\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n20\tago\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tLeslie\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tQuick\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tJr.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tchairman\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tQuick\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t&\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tReilly\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n34\tdiscount\t_\tADJ\tNN\t_\t36\tamod\t_\t_\n35\tbrokerage\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tfirm\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tHugo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tQuackenbush\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tsenior\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCharles\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tScwhab\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tSchwab\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tcustomers\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n18\tneutral\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n20\tcautious\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n21\trecently\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tabout\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tIndividual\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tangry\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tprogram\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tMr.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tQuackenbush\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAvner\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArbel\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tCornell\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tUniversity\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tfinance\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprofessor\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tregulators\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\thave\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n16\tmore\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n17\tclosely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tcontrol\t_\tVERB\tJJ\t_\t14\txcomp\t_\t_\n19\tprogram\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n23\twin\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n24\tback\t_\tADP\tRB\t_\t23\tcompound:prt\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tconfidence\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tsmall\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tinvestor\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n5\tonly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\thas\t_\tVERB\tVBZ\t_\t8\tdep\t_\t_\n11\tsome\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsmall\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tworried\t_\tADJ\tVBN\t_\t10\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAlan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHelfman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tgeneral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tsales\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tChrysler\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tdealership\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tHouston\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tmother\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n19\thave\t_\tVERB\tVBP\t_\t14\tdep\t_\t_\n20\tsome\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tjoint\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tinvestments\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\toverall\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\teconomy\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n29\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n30\this\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tchief\t_\tADJ\tNN\t_\t32\tamod\t_\t_\n32\tworry\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tThese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\thigh\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trollers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\ttook\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbath\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tshowroom\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n20\twithin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tfew\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmiles\t_\tNOUN\tNNS\t_\t16\tacl:relcl\t_\t_\n24\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tmulti-million\t_\tADJ\tJJ\t_\t27\tdep\t_\t_\n27\tdollar\t_\tNOUN\tNN\t_\t28\tamod\t_\t_\n28\thomes\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tsome\t_\tDET\tDT\t_\t28\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tHouston\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\trichest\t_\tADJ\tJJS\t_\t35\tamod\t_\t_\n35\tcitizens\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\ttell\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t5\tdobj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\thigh\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\troller\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tgoing\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcome\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n17\ttomorrow\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tChrysler\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTC\t_\tPROPN\tNN\t_\t19\tdobj\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tMaserati\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tfinally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tgloaters\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tout\t_\tADP\tRP\t_\t3\txcomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEverything\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tPascal\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAntori\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n9\tAkron\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tOhio\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tplumbing\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcontractor\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n15\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tvisiting\t_\tVERB\tVBG\t_\t14\tacl:relcl\t_\t_\n18\tChicago\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tstopped\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n21\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tFidelity\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInvestments\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t'\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tLaSalle\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tStreet\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\toffice\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tjust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tstopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t4\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsee\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\thow\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t13\tadvmod\t_\t_\n10\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\thave\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tlost\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tWould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAntori\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tget\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t5\txcomp\t_\t_\n8\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tAre\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tkidding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\t!\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcomes\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tmoney\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tOnce\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tbitten\t_\tVERB\tNN\t_\t0\troot\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t2,000\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ttimes\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n12\tshy\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcrowded\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfield\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tnotebook-sized\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcomputers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tabout\t_\tADV\tIN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbecome\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlot\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\tcrowded\t_\tADJ\tVBN\t_\t10\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tlong-awaited\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tentry\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n8\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnotebook\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfield\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\tauxpass\t_\t_\n13\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tput\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\timmediate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\theat\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tothers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tespecially\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n25\tZenith\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tElectronics\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\tcurrent\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tleader\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tswarm\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tpromising\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tstart-ups\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tseries\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tnotebooks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\textends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttrend\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\ttoward\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tdownsizing\t_\tNOUN\tVBG\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tpersonal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tmanufacturer\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tproduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tclipboard-sized\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcomputer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tcalled\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnotepad\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tothers\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tintroduced\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n18\teven\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tsmaller\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tpalmtops\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmachines\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tnovelties\t_\tNOUN\tNNS\t_\t6\txcomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tkeyboards\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmunchkin\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tlove\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tscreens\t_\tVERB\tNNS\t_\t10\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tmatch\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnotebooks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcontrast\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfirst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tweight\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tclass\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tnot\t_\tPART\tRB\t_\t18\tneg\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tskimp\t_\tVERB\tVB\t_\t11\tdep\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tfeatures\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tfound\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tmuch\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tbigger\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n25\tmachines\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tfaster\t_\tADJ\tJJR\t_\t2\tdep\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tcarry\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\tmemory\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tanything\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\telse\t_\tADV\tRB\t_\t11\tamod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tsize\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\t're\t_\tAUX\tVBP\t_\t23\tauxpass\t_\t_\n23\tpriced\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n24\taggressively\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t27\tdep\t_\t_\n27\t2,400\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t27\tdep\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t5,000\t_\tNUM\tCD\t_\t27\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t4\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthis\t_\tPRON\tDT\t_\t1\tnmod\t_\t_\n4\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmachine\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tweighs\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsix\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpounds\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tfits\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n15\tcomfortably\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tmost\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\tbriefcases\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmonths\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tCompaq\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tcompetition\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tincluding\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n10\tZenith\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tToshiba\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tTandy\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n18\tNEC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n20\tall\t_\tDET\tDT\t_\t22\tdep\t_\t_\n21\thave\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n22\tintroduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tportables\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n25\tweigh\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n26\tapproximately\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsame\t_\tADJ\tJJ\t_\t25\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\tthat\t_\tPRON\tDT\t_\t32\tnsubjpass\t_\t_\n31\tare\t_\tAUX\tVBP\t_\t32\tauxpass\t_\t_\n32\tcalled\t_\tVERB\tVBN\t_\t25\tconj\t_\t_\n33\tnotebooks\t_\tNOUN\tNNS\t_\t32\txcomp\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t32\tpunct\t_\t_\n35\tperhaps\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tmisleadingly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tanalyst\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n4\tnoting\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n6\tmost\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n7\tsuch\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmachines\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n10\tabout\t_\tADV\tIN\t_\t11\tadvmod\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tinches\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tthick\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\texception\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tname\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n5\tquite\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tnotebook\t_\tNOUN\tNN\t_\t17\tccomp\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tcall\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tphonebook\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubjpass\t_\t_\n2\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n9\t2,400\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n10\tnotepad\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tcomputer\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tintroduced\t_\tVERB\tVBD\t_\t11\tacl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tweeks\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n16\tago\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tGRiD\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tSystems\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tTandy\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tkeyboard\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\twriting\t_\tNOUN\tVBG\t_\t10\tcompound\t_\t_\n10\tsurface\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\telectronic\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpen\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tability\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n20\tread\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n22\tblock\t_\tADJ\tNN\t_\t23\tamod\t_\t_\n23\tprinting\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\t4\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\t1/2\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tpounds\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t11\tnsubjpass\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n9\ttoo\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tambitiously\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tnevertheless\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\topens\t_\tVERB\tVBZ\t_\t11\tconj\t_\t_\n17\tup\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tkind\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tmarketing\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpossibilities\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tmake\t_\tVERB\tVBP\t_\t19\tacl:relcl\t_\t_\n25\tanalysts\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tfroth\t_\tVERB\tVBP\t_\t24\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tPalmtops\t_\tNOUN\tNNP\t_\t2\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\tfar\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tbehind\t_\tADV\tIN\t_\t2\tadvmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAtari\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tPortfolio\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n6\tintroduced\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tEurope\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod:npmod\t_\t_\n11\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tearly\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tSeptember\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\tweighs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tless\t_\tADV\tJJR\t_\t23\tadvmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tnummod\t_\t_\n24\tpound\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n26\tcosts\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tmere\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t400\t_\tNUM\tCD\t_\t26\tdobj\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n32\truns\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n33\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthree\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n35\tAA\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tbatteries\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n38\tyet\t_\tCONJ\tRB\t_\t20\tcc\t_\t_\n39\thas\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tpower\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n42\tto\t_\tPART\tTO\t_\t43\tmark\t_\t_\n43\trun\t_\tVERB\tVB\t_\t41\tacl\t_\t_\n44\tsome\t_\tDET\tDT\t_\t45\tdet\t_\t_\n45\tspreadsheets\t_\tNOUN\tNNS\t_\t43\tdobj\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t45\tcc\t_\t_\n47\tword\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n48\tprocessing\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tprograms\t_\tNOUN\tNNS\t_\t45\tconj\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcritics\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tability\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\trun\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tcommonplace\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tprograms\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\trestricted\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlimited\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmemory\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPoquet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tmeanwhile\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tintroduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tmuch\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tmore\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n12\tsophisticated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpalmtop\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\tcan\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\trun\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n17\tLotus\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\t1-2-3\t_\tPROPN\tNNP\t_\t16\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tother\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tsophisticated\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tsoftware\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tprograms\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n26\tcosts\t_\tVERB\tNNS\t_\t16\tconj\t_\t_\n27\tfive\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\ttimes\t_\tNOUN\tNNS\t_\t30\tnummod\t_\t_\n29\tas\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tmuch\t_\tADJ\tRB\t_\t26\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tstake\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t20\tdobj\t_\t_\n5\tMike\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSwavely\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCompaq\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tNorth\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tAmerica\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\toperations\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tcalls\t_\tVERB\tVBZ\t_\t28\tdep\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tHoly\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGrail\t_\tPROPN\tNN\t_\t16\txcomp\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tcomputer\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tindustry\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsearch\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\treal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tcomputer\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tpackage\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\tso\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tsmall\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n39\tyou\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\tcan\t_\tAUX\tMD\t_\t41\taux\t_\t_\n41\ttake\t_\tVERB\tVB\t_\t38\tccomp\t_\t_\n42\tit\t_\tPRON\tPRP\t_\t41\tdobj\t_\t_\n43\teverywhere\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tnobody\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tknows\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n9\tyet\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\thow\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n11\tbig\t_\tADJ\tJJ\t_\t14\tdep\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\ttrying\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tme\t_\tPRON\tPRP\t_\t11\tiobj\t_\t_\n13\tservices\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tfind\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tout\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\thow\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n18\tbig\t_\tADJ\tJJ\t_\t20\tdep\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tTom\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tHumphries\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tdirector\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tmarketing\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tGRiD\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tWhether\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t14\tadvcl\t_\t_\n6\t5\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\t$\t_\tSYM\t$\t_\t5\tconj\t_\t_\n10\t3.5\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tdoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n16\tmatter\t_\tNOUN\tVB\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\thuge\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tportables\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tnow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tcomprise\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n10\t12\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tall\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tpersonal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcomputer\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tLaptops\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n3\tgenerally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tanything\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n5\tunder\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t15\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tpounds\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tfastest-growing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tpersonal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsegment\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\twith\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\tsales\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tdoubling\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tResponding\t_\tVERB\tVBG\t_\t9\tdep\t_\t_\n2\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n3\tthat\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdemand\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tvariety\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tcompromises\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMaking\t_\tVERB\tVBG\t_\t5\tcsubj\t_\t_\n2\tcomputers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsmaller\t_\tADJ\tJJR\t_\t1\txcomp\t_\t_\n4\toften\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tsacrificing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tmemory\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tprecluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tuse\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n8\tfaster\t_\tADJ\tRBR\t_\t12\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tpowerful\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmicroprocessors\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tfound\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tincreasing\t_\tVERB\tVBG\t_\t16\tamod\t_\t_\n16\tnumbers\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tdesktop\t_\tADJ\tNN\t_\t19\tamod\t_\t_\n19\tmachines\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSize\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tweight\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n4\tconsiderations\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\talso\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tlimited\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tscreen\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdisplays\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcompetitive\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsniping\t_\tNOUN\tVBG\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tget\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tpretty\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tpetty\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttimes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tPoquet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tcriticizes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tAtari\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPortfolio\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\trequires\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tbatteries\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\twhile\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tPoquet\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tneeds\t_\tVERB\tVBZ\t_\t14\tadvcl\t_\t_\n21\tonly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpalmtops\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tdismissed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tnotebook\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmakers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t10\tnsubj\t_\t_\n10\targue\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t're\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\ttoo\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t26\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tproblem\t_\tNOUN\tNN\t_\t26\tdep\t_\t_\n19\tPoquet\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n20\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tencountered\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tfocus\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tgroups\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tadmits\t_\tVERB\tVBZ\t_\t15\tparataxis\t_\t_\n27\tGerry\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tPurdy\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tdirector\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tmarketing\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPoquet\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\ttrying\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tavoid\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tgadget\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tlabel\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tresponded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\ttag\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tline\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n19\tThe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tPoquet\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tPC\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tVery\t_\tPROPN\tRB\t_\t25\tamod\t_\t_\n25\tBig\t_\tPROPN\tJJ\t_\t26\tamod\t_\t_\n26\tComputer\t_\tPROPN\tNN\t_\t21\tdep\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsniping\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tfew\t_\tADJ\tJJ\t_\t6\tnsubj\t_\t_\n6\tquestion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tinevitability\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmove\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tsmall\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmachines\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n16\tdo\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tmake\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n19\tcompromises\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tToward\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tend\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\texperts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\treal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbattle\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\ttake\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n12\tplace\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcenter-stage\t_\tADJ\tNN\t_\t15\tamod\t_\t_\n15\tplayers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tlike\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tToshiba\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n19\tZenith\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tnow\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n22\tCompaq\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmachines\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n6\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdirect\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tthreat\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tstart-up\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfirms\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tlike\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tDynabook\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tintroduced\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tJune\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tthat\t_\tPRON\tIN\t_\t29\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n25\tlike\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tCompaq\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n29\tuses\t_\tVERB\tVBZ\t_\t22\tacl:relcl\t_\t_\n30\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tIntel\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\t286\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tmicroprocessor\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n35\thas\t_\tVERB\tVBZ\t_\t29\tconj\t_\t_\n36\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\thard\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tdisk\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tdrive\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tDynabook\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tproduct\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n6\ttwice\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tas\t_\tADP\tIN\t_\t8\tdep\t_\t_\n8\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcosts\t_\tNOUN\tVBZ\t_\t8\tconj\t_\t_\n11\tmore\t_\tADJ\tJJR\t_\t10\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tCompaq\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tannouncement\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tspells\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n6\ttrouble\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tZenith\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tdep\t_\t_\n13\thad\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n14\t28\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tlaptop\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n22\trecently\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tagreed\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsell\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n27\tcomputer\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tbusiness\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tCie.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tdes\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tMachines\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tBull\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n36\tFrench\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n37\tgovernment-owned\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tcomputer\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tmaker\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tZenith\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tholders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tvote\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tDecember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\tproposed\t_\tADJ\tVBN\t_\t13\tamod\t_\t_\n10\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n11\t635\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tsale\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tprice\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n18\tcould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tslip\t_\tVERB\tVB\t_\t16\tacl:relcl\t_\t_\n20\tbecause\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t23\tauxpass\t_\t_\n23\tpegged\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n25\tZenith\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tshare\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tsales\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talready\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\ttaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\taim\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tZenith\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRod\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCanion\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCompaq\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tchief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\texecutive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tnotes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tpointedly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tZenith\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t19\tamod\t_\t_\n18\t2,000\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n19\tMinisPort\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tuses\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n21\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n23\tunconventional\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n25\ttwo-inch\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tfloppy\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdisk\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n29\twhereas\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n30\tCompaq\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tnew\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tmachines\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n34\tuse\t_\tVERB\tVBP\t_\t20\tadvcl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n36\tmore\t_\tADV\tJJR\t_\t37\tadvmod\t_\t_\n37\tcommon\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n38\t3\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\t1/2-inch\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tdisk\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tP.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tFrank\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tZenith\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tData\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSystems\t_\tPROPN\tNNPS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tsimply\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tshrugs\t_\tNOUN\tVBZ\t_\t0\troot\t_\t_\n13\toff\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcriticism\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tnoting\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n19\t3\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t1/2-inch\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tfloppies\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n22\twere\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n23\talso\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n25\tunconventional\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\twhen\t_\tADV\tWRB\t_\t30\tadvmod\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\tfirst\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\treplaced\t_\tVERB\tVBD\t_\t25\tadvcl\t_\t_\n31\tfive-inch\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tdisks\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tlook\t_\tVERB\tVB\t_\t25\tccomp\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t5\tnmod\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tnot\t_\tADV\tRB\t_\t12\tneg\t_\t_\n10\tbeing\t_\tVERB\tVBG\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstandard\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tlook\t_\tVERB\tVBP\t_\t5\tparataxis\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t15\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstandard\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tsee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tiobj\t_\t_\n6\tthat\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tway\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\timagine\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\t'll\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\ttalk\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tanyone\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t15\tnsubj\t_\t_\n13\two\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\ttell\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n16\tyou\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\tthis\t_\tPRON\tDT\t_\t19\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n19\tdynamite\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tCompaq\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tstopper\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\teveryone\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\telse\t_\tADV\tRB\t_\t26\tamod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n30\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n31\tGene\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tTalsky\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tpresident\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n35\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tProfessional\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tMarketing\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tManagement\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tInc\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAdds\t_\tPROPN\tVBZ\t_\t0\troot\t_\t_\n2\tBill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLempesis\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tsenior\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tindustry\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tanalyst\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tDataQuest\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\thigh-technology\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tresearch\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirm\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n16\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n18\tWe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tbasically\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tthink\t_\tVERB\tVBP\t_\t1\tccomp\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n22\tthese\t_\tPRON\tDT\t_\t26\tnsubj\t_\t_\n23\tare\t_\tVERB\tVBP\t_\t26\tcop\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\thot\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tproducts\t_\tNOUN\tNNS\t_\t20\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tproblem\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tCompaq\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\thave\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n11\two\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n14\table\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tmake\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tenough\t_\tADJ\tJJ\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tthem\t_\tPRON\tPRP\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmachines\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\t3\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2-inch\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tfloppy\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdisk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdrive\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbacklit\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tscreen\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tonly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\t1/4-inch\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tthick\t_\tADJ\tJJ\t_\t14\tacl:relcl\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n21\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tinternal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\texpansion\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tslot\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tmodem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tother\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\twords\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n33\talmost\t_\tADV\tRB\t_\t36\tamod\t_\t_\n34\tall\t_\tDET\tPDT\t_\t33\tdep\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tcapabilities\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n37\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\ttypical\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n40\toffice\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tmachine\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tundoubtedly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tfollow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\tmost\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tanalysts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tbelieve\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n10\tCompaq\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t16\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsix-month\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tlead\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcompetition\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tToshiba\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tline\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tportables\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\texample\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tT-1000\t_\tPROPN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tsame\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tweight\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tclass\t_\tNOUN\tNN\t_\t12\tacl:relcl\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n23\tmuch\t_\tADV\tJJ\t_\t24\tadvmod\t_\t_\n24\tslower\t_\tADJ\tJJR\t_\t20\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\thas\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n27\tless\t_\tADJ\tJJR\t_\t28\tamod\t_\t_\n28\tmemory\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tT-1600\t_\tPROPN\tNN\t_\t12\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\twhich\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n35\talso\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tuses\t_\tVERB\tVBZ\t_\t32\tacl:relcl\t_\t_\n37\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\t286\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tmicroprocessor\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n41\tbut\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n42\twhich\t_\tPRON\tWDT\t_\t43\tnsubj\t_\t_\n43\tweighs\t_\tVERB\tVBZ\t_\t36\tconj\t_\t_\n44\talmost\t_\tADV\tRB\t_\t45\tadvmod\t_\t_\n45\ttwice\t_\tADV\tRB\t_\t43\tdobj\t_\t_\n46\tas\t_\tADP\tRB\t_\t47\tcase\t_\t_\n47\tmuch\t_\tADJ\tJJ\t_\t45\tnmod\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t43\tcc\t_\t_\n49\tis\t_\tVERB\tVBZ\t_\t53\tcop\t_\t_\n50\tthree\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n51\ttimes\t_\tNOUN\tNNS\t_\t53\tnummod\t_\t_\n52\tthe\t_\tDET\tDT\t_\t53\tdet\t_\t_\n53\tsize\t_\tNOUN\tNN\t_\t43\tconj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tthird\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmodel\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tmarketed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJapan\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\thit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tend\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1990\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tthen\t_\tADV\tRB\t_\t33\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\tanalysts\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tsay\t_\tVERB\tVBP\t_\t33\tparataxis\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tCompaq\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n31\twill\t_\tAUX\tMD\t_\t33\taux\t_\t_\n32\thave\t_\tAUX\tVB\t_\t33\taux\t_\t_\n33\testablished\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n34\titself\t_\tPRON\tPRP\t_\t33\tdobj\t_\t_\n35\tas\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tone\t_\tNUM\tCD\t_\t33\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tthree\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n39\tmajor\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tplayers\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t4\tdep\t_\t_\n2\tabout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tBig\t_\tPROPN\tJJ\t_\t4\tcompound\t_\t_\n4\tBlue\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInternational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBusiness\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMachines\t_\tPROPN\tNNPS\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t11\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tburned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\ttwice\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tin\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\ttrying\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tenter\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlaptop\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\tshows\t_\tVERB\tVBZ\t_\t11\tconj\t_\t_\n22\tno\t_\tDET\tDT\t_\t23\tneg\t_\t_\n23\tsigns\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tof\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\ttrying\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tget\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tinto\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tnotebooks\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n30\tanytime\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tsoon\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHoneywell\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tInternational\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tBusiness\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tMachines\t_\tPROPN\tNNPS\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n8\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tAir\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tForce\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcontracts\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdevelop\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tintegrated\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcircuits\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tuse\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tspace\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHoneywell\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t69.7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tIBM\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t4\tconj\t_\t_\n13\t68.8\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCo.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t10\tamod\t_\t_\n6\t46.7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tAir\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tForce\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tdeveloping\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tcable\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tsystems\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tMinuteman\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMissile\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGeneral\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tDynamics\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n6\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n7\t29\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tAir\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tForce\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcontract\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\telectronic-warfare\t_\tNOUN\tJJ\t_\t15\tcompound\t_\t_\n14\ttraining\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsets\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGrumman\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n6\t18.1\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tNavy\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tcontract\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tupgrade\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\taircraft\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\telectronics\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAvco\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n6\t11.8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tArmy\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tcontract\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\thelicopter\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tengines\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSharp\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincreases\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tfresh\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tproduce\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tcaused\t_\tVERB\tVBD\t_\t41\tccomp\t_\t_\n10\tSpain\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tSeptember\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tconsumer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tprice\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tindex\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tshoot\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n18\tup\t_\tADV\tRP\t_\t17\tadvmod\t_\t_\n19\t1.1\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tprevious\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmonth\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\tpushing\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tannual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\trate\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tinflation\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\t6.8\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tNational\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tInstitute\t_\tPROPN\tNNP\t_\t41\tnsubj\t_\t_\n39\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tStatistics\t_\tPROPN\tNNPS\t_\t38\tnmod\t_\t_\n41\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n42\tFriday\t_\tPROPN\tNNP\t_\t41\tnmod:tmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t41\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmonthly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tincrease\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\thighest\t_\tADV\tJJS\t_\t0\troot\t_\t_\n7\trecorded\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tpast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tfour\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tyears\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindex\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tregistered\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\t156.8\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbase\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t100\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\tset\t_\tNOUN\tVBN\t_\t15\tdep\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1983\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n23\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n24\tseasonally\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tadjusted\t_\tVERB\tVBN\t_\t13\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\trisen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t5.9\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnine\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmonths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\toutstripping\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n16\tboth\t_\tCONJ\tCC\t_\t22\tcc:preconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n18\tinitial\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n19\t3\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t22\tamod\t_\t_\n21\tinflation\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tgoal\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n23\tset\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tgovernment\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tSocialist\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n29\tPrime\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tMinister\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tFelipe\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tGonzalez\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n35\tsecond\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n37\trevised\t_\tVERB\tJJ\t_\t38\tamod\t_\t_\n38\tgoal\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\t5.8\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n41\t%\t_\tSYM\tNN\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\twholesale\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tSeptember\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n8\t3.3\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tearlier\t_\tADV\tRBR\t_\t7\tadvcl\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n16\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t0.4\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tprevious\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmonth\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tBank\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tJapan\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\twholesale\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tindex\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tstood\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t90.1\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tcompared\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1985\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tbase\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t100\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPlunge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWhat\t_\tDET\tWDT\t_\t2\tdet\t_\t_\n2\tplunge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTwenty-four\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tissues\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t52-week\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\thighs\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tduring\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tdespite\t_\tADP\tIN\t_\t23\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tJones\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tIndustrial\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAverage\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\t190.58-point\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tplunge\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tutilities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\trelatively\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tbetter\t_\tADV\tJJR\t_\t4\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsectors\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsell-off\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tamong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tissues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\thitting\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thighs\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tDetroit\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tEdison\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tNiagara\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tMohawk\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tPower\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\thitting\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\thighs\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tAmerican\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tTelephone\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tTelegraph\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tWestinghouse\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tElectric\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tExxon\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\tCigna\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tinsurer\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n6\tissues\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n8\t93\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n10\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlows\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tInternational\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tBusiness\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tMachines\t_\tPROPN\tNNPS\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n9\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tsession\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n13\ttraded\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n14\tbelow\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t100\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfirst\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttime\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n23\tsince\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tJune\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t1984\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t5\tdep\t_\t_\n5\t102\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tdown\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t5.625\t_\tNUM\tCD\t_\t7\tnmod:npmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlows\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tNavistar\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInternational\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tUnion\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCarbide\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tBethlehem\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tSteel\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\tall\t_\tDET\tDT\t_\t21\tnsubjpass\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t17\tnmod\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\tauxpass\t_\t_\n21\tincluded\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tindustrial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\taverage\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tinitial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tpublic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tofferings\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tbraved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcascading\t_\tADJ\tVBG\t_\t10\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tmaiden\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tnational\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tover-the-counter\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tShares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tRally\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\toperator\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfast-food\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trestaurants\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t17\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\teach\t_\tDET\tDT\t_\t16\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tup\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n22\t$\t_\tSYM\t$\t_\t25\tamod\t_\t_\n23\t15\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n24\toffering\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n27\tshares\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tEmployee\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tBenefit\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tPlans\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tInc.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\thealth-care\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tconsultant\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n38\tclosed\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n39\tat\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\t$\t_\tSYM\t$\t_\t41\tdep\t_\t_\n41\t14.125\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n43\tup\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n44\tfrom\t_\tADP\tIN\t_\t49\tcase\t_\t_\n45\tits\t_\tPRON\tPRP$\t_\t49\tnmod:poss\t_\t_\n46\t$\t_\tSYM\t$\t_\t49\tamod\t_\t_\n47\t12\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n48\toffering\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tprice\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFord\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMotor\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tacquired\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\t5\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tJaguar\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tPLC\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJaguar\t_\tPROPN\tNNP\t_\t16\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tLondon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSecurities\t_\tPROPN\tNNPS\t_\t1\tconj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tExchange\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCommission\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tbeing\t_\tAUX\tVBG\t_\t16\tauxpass\t_\t_\n16\tnotified\t_\tVERB\tVBN\t_\t23\tccomp\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttransactions\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tTrade\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCommission\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tadvised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tFord\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\tlast\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tweek\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\traise\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n15\tany\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tobjection\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tacquisition\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tas\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tmuch\t_\tADJ\tJJ\t_\t19\tnmod\t_\t_\n23\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t15\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tJaguar\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNo.\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\t2\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tauto\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmaker\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\twants\t_\tVERB\tVBZ\t_\t6\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tas\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tmuch\t_\tADJ\tJJ\t_\t13\tdobj\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t15\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tBritish\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tluxury-car\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmaker\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tmaximum\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n27\tallowed\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n28\tunder\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tcurrent\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n30\tUnited\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tKingdom\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tgovernment\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\trestrictions\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGeneral\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMotors\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tdiscussed\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpossibility\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tjoint\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tventure\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJaguar\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tbefore\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tFord\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n19\tbuying\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\tshares\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\ttalking\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJaguar\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tabout\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tacquiring\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tminority\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n2\twho\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n3\tbought\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tborrowed\t_\tADJ\tVBN\t_\t7\tamod\t_\t_\n7\tmoney\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n9\tthat\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t3\tparataxis\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tmargin\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n17\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n19\tmore\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n20\tworried\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n21\tthan\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tmost\t_\tADJ\tJJS\t_\t20\tnmod\t_\t_\n23\tfollowing\t_\tVERB\tVBG\t_\t27\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tdrop\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tbecause\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tbrokers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\trequire\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n8\tthem\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsell\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\tput\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tcash\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tenhance\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcollateral\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tbacking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tloans\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tOctober\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthese\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tmargin\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcalls\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\tcontributed\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tdownward\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tspiral\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTypically\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tmargin\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tcall\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\toccurs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tfalls\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n14\tbelow\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t75\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\toriginal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tvalue\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tinvestor\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tdoes\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tput\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\textra\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcash\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsatisfy\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcall\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbrokerage\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tfirm\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n21\tliquidating\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tsecurities\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tbig\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tbrokerage\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\texpect\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tproblems\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tresult\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tmargin\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcalls\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMargin\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tcalls\t_\tNOUN\tVBZ\t_\t8\tnsubj\t_\t_\n3\tsince\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\thigher\t_\tADJ\tJJR\t_\t23\tccomp\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tusual\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\treasonable\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tspokesman\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tShearson\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tLehman\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tHutton\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tInc.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\tdo\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\texpect\t_\tVERB\tVB\t_\t36\tccomp\t_\t_\n10\t-LCB-\t_\tPUNCT\t-LRB-\t_\t19\tpunct\t_\t_\n11\tmargin\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tcalls\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t-RCB-\t_\tPUNCT\t-RRB-\t_\t19\tpunct\t_\t_\n14\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t19\tcop\t_\t_\n16\tas\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfactor\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n24\tbecause\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n25\tfewer\t_\tADJ\tJJR\t_\t27\tamod\t_\t_\n26\tindividual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tinvestors\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n29\tbuying\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n30\tstock\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n31\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tmargin\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tspokesman\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tHugo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tQuackenbush\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tsenior\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCharles\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSchwab\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tamod\t_\t_\n14\tFrancisco-based\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tdiscount\t_\tADJ\tNN\t_\t17\tamod\t_\t_\n16\tbrokerage\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfirm\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n21\tdid\t_\tAUX\tVBD\t_\t23\taux\t_\t_\n22\tn't\t_\tPART\tRB\t_\t23\tneg\t_\t_\n23\texpect\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n24\tany\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\timmediate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tproblems\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmargin\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcalls\t_\tNOUN\tVBZ\t_\t26\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tSchwab\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tcustomers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tSchwab\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tincreased\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n6\tmargin\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\trequirements\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n9\tso\t_\tADP\tRB\t_\t5\tdep\t_\t_\n10\tcustomers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\thave\t_\tVERB\tVBP\t_\t5\tparataxis\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcushion\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n5\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tlearned\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlesson\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tvolatility\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAvis\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tfollowing\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n5\trival\t_\tNOUN\tJJ\t_\t7\tcompound\t_\t_\n6\tHertz\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tlead\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tbacking\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n15\tout\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tfrequent-flier\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthree\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tairlines\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n2\tGarden\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n3\tCity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\tN.Y.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tcar-rental\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\two\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\trenew\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n14\tcontracts\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tNWA\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tInc.\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tNorthwest\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tAirlines\t_\tPROPN\tNNPS\t_\t21\tcompound\t_\t_\n21\tunit\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tPan\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tAm\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCorp.\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tPan\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n28\tAmerican\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tWorld\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tAirways\t_\tPROPN\tNNPS\t_\t31\tcompound\t_\t_\n31\tunit\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n33\tMidway\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tAirlines\t_\tPROPN\tNNPS\t_\t21\tconj\t_\t_\n35\tat\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tend\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthis\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tyear\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tinvolved\t_\tADJ\tVBN\t_\t3\txcomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tprograms\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tAMR\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tAmerican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tAirlines\t_\tPROPN\tNNPS\t_\t13\tcompound\t_\t_\n13\tunit\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tDelta\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tAir\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tLines\t_\tPROPN\tNNPS\t_\t13\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIndustry\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\testimates\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tput\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tAvis\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tannual\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcost\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tall\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfive\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tprograms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n15\t8\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\t$\t_\tSYM\t$\t_\t14\tconj\t_\t_\n19\t14\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tAvis\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tspecify\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcosts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tairlines\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tbeing\t_\tAUX\tVBG\t_\t16\tauxpass\t_\t_\n16\tdropped\t_\tVERB\tVBD\t_\t14\tacl\t_\t_\n17\taccount\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tfar\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tless\t_\tADJ\tJJR\t_\t17\tnmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\thalf\t_\tDET\tNN\t_\t21\tnmod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\ttotal\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBudget\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tRent\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tCar\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tChicago\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tNational\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n12\tCar\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tRental\t_\tPROPN\tJJ\t_\t15\tcompound\t_\t_\n14\tSystems\t_\tPROPN\tNNPS\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tMinneapolis\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tboth\t_\tDET\tDT\t_\t21\tdep\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\thad\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n24\tno\t_\tDET\tDT\t_\t25\tneg\t_\t_\n25\tplans\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tfollow\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tsuit\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tBudget\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsaw\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbenefit\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tmark\t_\t_\n11\tstaying\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n12\tinvolved\t_\tADJ\tVBN\t_\t11\txcomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthese\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tprograms\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n19\trenters\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tearn\t_\tVERB\tVBP\t_\t15\tacl:relcl\t_\t_\n21\tfrequent-flier\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmiles\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\tfliers\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n25\tcan\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tget\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n27\tcar-rental\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdiscounts\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tsee\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n6\thow\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnews\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tHertz\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tAvis\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tnot\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tbenefit\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n16\tBudget\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tBob\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tWilson\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tBudget\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tvice\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tmarketing\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tplanning\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tNorthwest\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tMidway\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfive\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tairlines\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t13\tnmod\t_\t_\n12\tBudget\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t9\tacl:relcl\t_\t_\n14\tagreements\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNational\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tparticipates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNorthwest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tfrequent-flier\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tprogram\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\talong\t_\tADP\tIN\t_\t3\tadvmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tfour\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tairlines\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tincluding\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n16\tDelta\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tUSAir\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tGroup\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tUSAir\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\tHertz\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tPark\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tRidge\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tN.J.\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tdrop\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tmarketing\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tagreements\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tend\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tDelta\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tAmerica\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tWest\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\tTexas\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tAir\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tCorp.\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tContinental\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tAirlines\t_\tPROPN\tNNPS\t_\t25\tconj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tEastern\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tAirlines\t_\tPROPN\tNNPS\t_\t35\tconj\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n41\tthat\t_\tSCONJ\tIN\t_\t57\tmark\t_\t_\n42\tpacts\t_\tNOUN\tNNS\t_\t57\tnsubjpass\t_\t_\n43\twith\t_\tADP\tIN\t_\t45\tcase\t_\t_\n44\tAmerican\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tAirlines\t_\tPROPN\tNNPS\t_\t42\tnmod\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\tUAL\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n48\tInc\t_\tPROPN\tNNP\t_\t51\tnmod:poss\t_\t_\n49\t's\t_\tPART\tPOS\t_\t48\tcase\t_\t_\n50\tUnited\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tAirlines\t_\tPROPN\tNNPS\t_\t45\tconj\t_\t_\n52\tand\t_\tCONJ\tCC\t_\t45\tcc\t_\t_\n53\tUSAir\t_\tPROPN\tNNP\t_\t45\tconj\t_\t_\n54\talso\t_\tADV\tRB\t_\t57\tadvmod\t_\t_\n55\twould\t_\tAUX\tMD\t_\t57\taux\t_\t_\n56\tbe\t_\tAUX\tVB\t_\t57\tauxpass\t_\t_\n57\tended\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n58\t...\t_\tPUNCT\t:\t_\t57\tpunct\t_\t_\n59\tsometime\t_\tADV\tRB\t_\t57\tadvmod\t_\t_\n60\tafter\t_\tADP\tIN\t_\t61\tcase\t_\t_\n61\tDec.\t_\tPROPN\tNNP\t_\t59\tnmod\t_\t_\n62\t31\t_\tNUM\tCD\t_\t61\tnummod\t_\t_\n63\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tHertz\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tannual\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfees\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthose\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tairlines\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tamounted\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t20\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tvalue\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tredeemed\t_\tVERB\tVBN\t_\t24\tamod\t_\t_\n24\tawards\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\ttopped\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n26\t$\t_\tSYM\t$\t_\t25\tdobj\t_\t_\n27\t15\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tcompetitors\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tdoubt\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnumbers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\tthat\t_\tADV\tDT\t_\t12\tadvmod\t_\t_\n12\thigh\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBudget\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tfrequent-flier\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcosts\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n8\tsubstantially\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n9\tbelow\t_\tADP\tRB\t_\t13\tcase\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n11\tAvis\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tlevel\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tD.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCardillo\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tAvis\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tvice\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmarketing\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n14\tThe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tproliferation\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tcosts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\tattached\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\t-LCB-\t_\tPUNCT\t-LRB-\t_\t22\tpunct\t_\t_\n21\tfrequent-flier\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprograms\t_\tNOUN\tNNS\t_\t18\tadvcl\t_\t_\n23\t-RCB-\t_\tPUNCT\t-RRB-\t_\t22\tpunct\t_\t_\n24\thave\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n25\tsignificantly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tdiminished\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\tvalue\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n5\tdifficult\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tboth\t_\tDET\tDT\t_\t8\tcc:preconj\t_\t_\n8\tHertz\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tAvis\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tCharles\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFinnie\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcar-rental\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tindustry\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tanalyst\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tAlex\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n22\tBrown\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t&\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tSons\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tcosts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tthis\t_\tPRON\tDT\t_\t18\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfairly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tsensible\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tway\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tdo\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tCBS\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tcutting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n6\tThe\t_\tPROPN\tDT\t_\t9\tcompound\t_\t_\n7\tPat\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tSajak\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tShow\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n11\tdown\t_\tADV\tIN\t_\t4\tadvmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\thour\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n17\tcurrent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\t90\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tminutes\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCBS\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tinsisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmove\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsetback\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnetwork\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tentry\t_\tNOUN\tNN\t_\t11\tacl:relcl\t_\t_\n20\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tlate-night\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\ttalk\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tshow\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tformat\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tsince\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1972\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t27\tccomp\t_\t_\n4\tevery\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tintention\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tmaking\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n8\tthis\t_\tPRON\tDT\t_\t12\tnsubj\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbest\t_\tADJ\tJJS\t_\t11\tdep\t_\t_\n11\tpossible\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshow\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\thaving\t_\tVERB\tVBG\t_\t22\tcsubj\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\trun\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\thour\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tbest\t_\tADJ\tJJS\t_\t22\tamod\t_\t_\n22\tway\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n23\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tRod\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tPerth\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\twho\t_\tPRON\tWP\t_\t33\tnsubjpass\t_\t_\n32\twas\t_\tAUX\tVBD\t_\t33\tauxpass\t_\t_\n33\tnamed\t_\tVERB\tVBN\t_\t29\tacl:relcl\t_\t_\n34\tvice\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tpresident\t_\tNOUN\tNN\t_\t33\txcomp\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tlate\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tnight\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tentertainment\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n40\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tAugust\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\traise\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tenergy\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tlevel\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshow\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tCBS\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tprogram\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\taction-adventure\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tshows\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tfollow\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tSajak\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\thour\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tCBS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNews\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\textend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n7\tfour-hour\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tNightwatch\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t30\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tminutes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\tbegin\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1:30\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\ta.m\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshow\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tdespite\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tpromising\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tslipped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tbadly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tweekly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tratings\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tcompiled\t_\tVERB\tVBN\t_\t15\tdep\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tA.C.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tNielsen\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCo.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tfinishing\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n24\tfar\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n25\tbelow\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\tTonight\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n29\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tNBC\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tunit\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tGeneral\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tElectric\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tCo.\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n40\t``\t_\tPUNCT\t``\t_\t41\tpunct\t_\t_\n41\tNightline\t_\tPROPN\tNNP\t_\t27\tconj\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n43\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tABC-TV\t_\tPROPN\tNNP\t_\t41\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n46\ta\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tunit\t_\tNOUN\tNN\t_\t44\tappos\t_\t_\n48\tof\t_\tADP\tIN\t_\t51\tcase\t_\t_\n49\tCapital\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n50\tCities/ABC\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tInc\t_\tPROPN\tNNP\t_\t47\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tFurther\t_\tADV\tJJ\t_\t2\tadvmod\t_\t_\n2\tfractioning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tlate-night\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\taudience\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t2\taux\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\taddition\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tArsenio\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHall\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tShow\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n17\tsyndicated\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tParamount\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tCommunications\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputers\t_\tPROPN\tNNPS\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tpreparing\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tfight\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tInternational\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tBusiness\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tMachines\t_\tPROPN\tNNPS\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpiece\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmainframe\t_\tADJ\tNN\t_\t19\tamod\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\texpects\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tpost\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\thigher\t_\tADJ\tJJR\t_\t27\tamod\t_\t_\n27\trevenue\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tearnings\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n30\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n32\tfiscal\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\tfourth\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tquarter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n35\tended\t_\tVERB\tVBN\t_\t34\tacl\t_\t_\n36\tSept.\t_\tPROPN\tNNP\t_\t35\tnmod:tmod\t_\t_\n37\t30\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\treport\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\trevenue\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tabout\t_\tADV\tIN\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n11\t450\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\tearnings\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t35\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tto\t_\tADP\tTO\t_\t17\tdep\t_\t_\n19\t40\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresults\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tline\t_\tNOUN\tNN\t_\t2\tacl:relcl\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tanalysts\t_\tNOUN\tNNS\t_\t11\tnmod:poss\t_\t_\n10\t'\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\testimates\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\treflect\t_\tVERB\tVBP\t_\t24\tccomp\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tcontinued\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\timprovement\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tour\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tbusiness\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tJames\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tTreybig\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tTandem\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tchief\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\texecutive\t_\tADJ\tNN\t_\t32\tamod\t_\t_\n32\tofficer\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tperiod\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tTandem\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t30.1\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t31\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\trevenue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t383.9\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\treport\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfull\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tnext\t_\tADP\tJJ\t_\t12\tamod\t_\t_\n12\tweek\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tpredicted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tCupertino\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCalif.\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\treport\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n13\trevenue\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n16\t430\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tdep\t_\t_\n19\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n20\t460\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tearnings\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t35\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t26\tdep\t_\t_\n28\t40\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcents\t_\tNOUN\tNNS\t_\t26\tdep\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCommenting\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n2\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tTreybig\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tstrength\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tdomestic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tcame\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n21\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsurprise\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n26\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n27\thim\t_\tPRON\tPRP\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n29\tnoting\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n30\tthat\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n31\tsales\t_\tNOUN\tNNS\t_\t39\tnsubj\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tevery\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tregion\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tU.S.\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n39\texceeded\t_\tVERB\tVBD\t_\t29\tccomp\t_\t_\n40\tour\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n41\tplan\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tperformance\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\thelped\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n8\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\trecord\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcustomers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n4\tfault-tolerant\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n6\tcomputers\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n8\tmachines\t_\tNOUN\tNNS\t_\t6\tdep\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tbuilt-in\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tbackup\t_\tADJ\tNN\t_\t12\tamod\t_\t_\n12\tsystems\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n14\tthat\t_\tPRON\tIN\t_\t15\tnsubj\t_\t_\n15\trun\t_\tVERB\tNN\t_\t6\tacl:relcl\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tnetworks\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tautomatic\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttellers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tcomplex\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tcomputer\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsystems\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTomorrow\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tannounce\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n9\tmost\t_\tADJ\tRBS\t_\t10\tdep\t_\t_\n10\tpowerful\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcomputer\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\tever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tbring\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tdirect\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcompetition\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tmakers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmainframe\t_\tADJ\tNN\t_\t29\tamod\t_\t_\n29\tcomputers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\thigh-end\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tCyclone\t_\tPROPN\tNNP\t_\t7\txcomp\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmachine\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tcome\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tvarious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tconfigurations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n14\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n15\t2\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tdep\t_\t_\n18\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n19\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\twrest\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\thefty\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tslice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\taway\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tIBM\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlongtime\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tleader\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tmainframes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tbelieve\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tsiphon\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tperhaps\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdollars\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tIBM\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n16\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tnext\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tGeorge\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tWeiss\t_\tPROPN\tNNP\t_\t22\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tanalyst\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tGartner\t_\tADJ\tNNP\t_\t31\tamod\t_\t_\n31\tgroup\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tspur\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tTandem\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgrowth\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t5\tcop\t_\t_\n5\tdisappointed\t_\tADJ\tVBN\t_\t19\tccomp\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tgrew\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tless\t_\tADJ\tJJR\t_\t13\tadvmod\t_\t_\n12\tthan\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\t20\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n15\tnext\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tJohn\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tLevinson\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tanalyst\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tGoldman\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tSachs\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n30\tCo\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t3\tnsubjpass\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\tauxpass\t_\t_\n3\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trespond\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tTandem\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tCyclone\t_\tPROPN\tNN\t_\t7\tdep\t_\t_\n10\tby\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tdiscounting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\town\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmainframes\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t18\tdobj\t_\t_\n17\tanalysts\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t3\tdep\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t24\tcop\t_\t_\n20\troughly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\tthree\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\ttimes\t_\tNOUN\tNNS\t_\t24\tnummod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tprice\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tcomparable\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tsystem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tTandem\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tObviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tIBM\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tgive\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n6\tbigger\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tdiscounts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tusers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\timmediately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tWeiss\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTreybig\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tquestions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\twhether\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthat\t_\tPRON\tDT\t_\t9\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t9\tcop\t_\t_\n9\tenough\t_\tADJ\tRB\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tstop\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tTandem\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmainframe\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tfrom\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\ttaking\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\ton\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tsome\t_\tDET\tDT\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfunctions\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t27\tdobj\t_\t_\n24\tlarge\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\torganizations\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tpreviously\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tsought\t_\tVERB\tVBN\t_\t22\tacl:relcl\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tBig\t_\tPROPN\tJJ\t_\t30\tcompound\t_\t_\n30\tBlue\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tmachines\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tanswer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tprice\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\treductions\t_\tNOUN\tNNS\t_\t15\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsystems\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tTandem\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tfaces\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tvariety\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tchallenges\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbiggest\t_\tADJ\tJJS\t_\t12\tnsubj\t_\t_\n12\tbeing\t_\tNOUN\tVBG\t_\t8\tdep\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tcustomers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tgenerally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tview\t_\tVERB\tVBP\t_\t12\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tcomputers\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcomplementary\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n23\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n24\tIBM\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmainframes\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTreybig\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\treluctant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tabandon\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnotion\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tinsisting\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n13\tTandem\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmachines\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\treplacements\t_\tNOUN\tNNS\t_\t11\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tIBM\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmainframes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n4\tafter\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tlittle\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tbigger\t_\tADJ\tJJR\t_\t6\tdep\t_\t_\n8\tniche\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDo\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n2\tn't\t_\tPART\tRB\t_\t3\tneg\t_\t_\n3\tjump\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tyet\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tswoon\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tturn\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tout\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n11\tgood\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tnews\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\twild\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\thour\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttrading\t_\tVERB\tNN\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tmanaged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\taccomplish\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t21\tdobj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tBush\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tadministration\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n18\tbeen\t_\tAUX\tVBN\t_\t19\taux\t_\t_\n19\ttrying\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdo\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tunsuccessfully\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tweeks\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tforcing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tFederal\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tReserve\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tease\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tgrip\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcredit\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\ttook\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\twind\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tout\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tpreviously\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tirrepressible\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdollar\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tresulting\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tdecline\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tinterest\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trates\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tvalue\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdollar\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\treinvigorate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tAmerican\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbusiness\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t16\tpunct\t_\t_\n18\tindeed\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tentire\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tsound\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tstrangely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\toptimistic\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tall\t_\tDET\tDT\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tuntil\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n8\tago\t_\tADV\tRB\t_\t14\tadvcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tviewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbarometer\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnational\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\teconomy\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n4\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttradition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tfollowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tchanged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tpartly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n6\tbecause\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyears\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n10\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tworst\t_\tADJ\tJJS\t_\t14\tamod\t_\t_\n13\tstock-market\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\thistory\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n19\treasonably\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tcomfortable\t_\tADJ\tJJ\t_\t3\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tcrash\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfalse\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\talarm\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n9\thowever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tview\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tUniversity\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tChicago\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\teconomist\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tVictor\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tZarnowitz\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tincreasingly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tdisconnected\t_\tADJ\tVBN\t_\t3\txcomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trest\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tspasms\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tca\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\ttraced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\tfundamental\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tconditions\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tnor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tdo\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tappear\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tpresage\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tshifts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttoday\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t23\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlife\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\town\t_\tADJ\tJJ\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n13\tJohn\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAkers\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tchairman\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tInternational\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tBusiness\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tMachines\t_\tPROPN\tNNPS\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tSaturday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tnothing\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n5\trational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n6\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tkind\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\taction\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thealth\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teconomy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tthreatened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tif\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tcontinues\t_\tVERB\tVBZ\t_\t11\tadvcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tdive\t_\tVERB\tNN\t_\t15\txcomp\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSharply\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tfalling\t_\tVERB\tVBG\t_\t4\tamod\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\treduce\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tconsumer\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\twealth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tdamage\t_\tVERB\tNN\t_\t6\tconj\t_\t_\n11\tbusiness\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tconfidence\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\tdiscourage\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tforeign\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tinvestors\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tupon\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhom\t_\tPRON\tWP\t_\t23\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n22\tnow\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\trelies\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tfinancial\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tsustenance\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfinancial-services\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tbattered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcrash\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t23\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n5\talthough\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tfar\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tless\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n12\tovervalued\t_\tADJ\tVBN\t_\t23\tadvcl\t_\t_\n13\ttoday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n17\tago\t_\tADV\tRB\t_\t12\tadvcl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\teconomy\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n23\tweaker\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tGrowth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tslower\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProfits\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t3\tcop\t_\t_\n3\tsofter\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDebt\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tburdens\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\theavier\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tcontinue\t_\tVERB\tVB\t_\t25\tadvcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tplummet\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbeneficial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\teffects\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tlower\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tinterest\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\trates\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tlower\t_\tADJ\tJJR\t_\t22\tamod\t_\t_\n22\tdollar\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n23\tmay\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\twell\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tdominate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFed\t_\tPROPN\tNNP\t_\t17\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n5\tuntil\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tresisting\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n10\tmoves\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tease\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tcredit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t17\tauxpass\t_\t_\n16\tnow\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tpoised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tpour\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tmoney\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\teconomy\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tif\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\tneeded\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tsoothe\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmarkets\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tFed\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tprotest\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tthis\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n9\tnecessarily\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmean\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfundamental\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchange\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tinterest-rate\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tpolicies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texperience\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tsuggests\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tFed\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n12\tlikely\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbring\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tdown\t_\tADP\tRP\t_\t14\tadvmod\t_\t_\n16\tshort-term\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tinterest\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\trates\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\teffort\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcalm\t_\tVERB\tJJ\t_\t21\tacl\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnticipating\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tFed\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmove\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tmoney\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tlowered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tkey\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tinterest\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tknown\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tFederal\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tFunds\t_\tPROPN\tNNPS\t_\t19\tcompound\t_\t_\n19\trate\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t8.625\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n23\tlate\t_\tADV\tJJ\t_\t24\tadvmod\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n26\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t8.820\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t29\tnmod:tmod\t_\t_\n32\tbefore\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTiny\t_\tADJ\tNNP\t_\t2\tamod\t_\t_\n2\tmovements\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\trate\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tcharge\t_\tVERB\tVBP\t_\t8\tccomp\t_\t_\n12\teach\t_\tDET\tDT\t_\t11\tdobj\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tovernight\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tloans\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t24\tcop\t_\t_\n19\tusually\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n20\tamong\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tfew\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tvisible\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\ttracks\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n25\tthat\t_\tPRON\tIN\t_\t28\tdobj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tFed\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\tleaves\t_\tVERB\tVBZ\t_\t24\tacl:relcl\t_\t_\n29\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tmonetary\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmarkets\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdecline\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tplunge\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tcaused\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n15\tsome\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\treassess\t_\tVERB\tNN\t_\t14\txcomp\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tdesire\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tinvest\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTreasury\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\targuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdollar\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tstrength\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n14\tout\t_\tADP\tIN\t_\t13\tadvmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\twhack\t_\tNOUN\tVB\t_\t14\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\teconomic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfundamentals\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n21\tthreatening\t_\tVERB\tVBG\t_\t13\txcomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\textinguish\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\texport\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tboom\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tthat\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n28\thas\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n29\tsustained\t_\tVERB\tVBN\t_\t26\tacl:relcl\t_\t_\n30\tmanufacturers\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tseveral\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tdrop\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tapparently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tconvinced\t_\tVERB\tJJ\t_\t0\troot\t_\t_\n8\tforeign\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tTreasury\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\tright\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n15\tabout\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\toverpriced\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdollar\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmodest\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdrop\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n8\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmodest\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tone\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tmind\t_\tVERB\tNN\t_\t3\tdep\t_\t_\n14\tyou\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n16\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\twelcomed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1987\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdollar\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n13\tso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tweak\t_\tADJ\tJJ\t_\t7\tacl:relcl\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n16\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\teconomists\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tgovernment\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tofficials\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n21\tseriously\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tworried\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\tmight\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tcollapse\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tproducing\t_\tVERB\tVBG\t_\t26\tccomp\t_\t_\n29\tpanic\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n30\tamong\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tforeign\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tinvestors\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n34\tdiminishing\t_\tVERB\tVBG\t_\t28\tconj\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tflow\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tforeign\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tcapital\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\tto\t_\tADP\tTO\t_\t42\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tU.S.\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdifference\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tbetween\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\t1989\t_\tNUM\tCD\t_\t5\tconj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n9\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tcomforting\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\teconomy\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tspurted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tinflation-adjusted\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tannual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\trate\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t5.3\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconsensus\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tamong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\teconomists\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tgrew\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tmuch\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tmore\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n12\tsluggish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\t2.3\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tthird\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1989\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tended\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tweeks\t_\tNOUN\tNNS\t_\t26\tnmod:npmod\t_\t_\n26\tago\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplunge\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\thappening\t_\tVERB\tVBG\t_\t21\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\teconomy\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\talready\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tslowed\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n18\tdown\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\teconomist\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tLawrence\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tChimerine\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tWEFA\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tGroup\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n30\tBala\t_\tPROPN\tNNP\t_\t36\tdep\t_\t_\n31\tCynwyd\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n33\tPa.\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n35\tforecasting\t_\tNOUN\tVBG\t_\t36\tcompound\t_\t_\n36\tcompany\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlot\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tpent-up\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdemand\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tgone\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tConsumer\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tspending\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tdrop\t_\tVERB\tVB\t_\t26\tccomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tfollowing\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n9\tBlack\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMonday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t1987\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n15\tonly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tslightly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t4\tdep\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tshort\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tperiod\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\ttime\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n26\trecalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tZarnowitz\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tlongtime\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tstudent\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tbusiness\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tcycles\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\toffset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstrength\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\telsewhere\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t-LCB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\teffects\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t-RCB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n5\twere\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\tmuch\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tless\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n8\tsevere\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tless\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tprolonged\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n12\tthan\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tsome\t_\tDET\tDT\t_\t15\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\tfeared\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n2\tToday\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tfrets\t_\tVERB\tVBZ\t_\t14\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\texports\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tspending\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n14\tinsufficient\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpick\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tup\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tslack\t_\tADJ\tNN\t_\t16\tdobj\t_\t_\n20\tif\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tprices\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tsink\t_\tVERB\tVBP\t_\t14\tadvcl\t_\t_\n24\tthis\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tweek\t_\tNOUN\tNN\t_\t23\tnmod:tmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tif\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n28\tconsumers\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n29\tretrench\t_\tVERB\tVBP\t_\t23\tconj\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\treaction\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t11\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tcorporate\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tborrowing\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbinge\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tabated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tpast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t27\tccomp\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tsignificant\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\taccumulation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdebt\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t...\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n14\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\ttime\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n18\twhen\t_\tADV\tWRB\t_\t22\tadvmod\t_\t_\n19\tearnings\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n21\tbeing\t_\tAUX\tVBG\t_\t22\tauxpass\t_\t_\n22\tsqueezed\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n25\tMr.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tChimerine\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\tnotes\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmore\t_\tADV\tJJR\t_\t5\tdep\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trelies\t_\tVERB\tVBZ\t_\t13\tdep\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tborrowed\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tgreater\t_\tADJ\tJJR\t_\t13\tdep\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tsensitivity\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\teconomic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tslowdown\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tstrong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tbalance\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsheet\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\twithstand\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tunanticipated\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstorm\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\thighly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tleveraged\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\tmay\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tend\t_\tVERB\tVB\t_\t9\tparataxis\t_\t_\n20\tup\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tbankruptcy\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcourt\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFed\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tcourse\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tknows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthat\t_\tPRON\tIN\t_\t7\tdobj\t_\t_\n9\tvery\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\twell\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n12\thence\t_\tADV\tRB\t_\t7\tdep\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\treadiness\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpump\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tcredit\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tinto\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\teconomy\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprocess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFed\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\trisks\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n10\treigniting\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\tinflation\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tbefore\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tevents\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tHarvard\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tUniversity\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\teconomist\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tBenjamin\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tFriedman\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n13\targuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tFed\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n17\two\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n20\table\t_\tADJ\tJJ\t_\t13\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tlive\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tup\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\ttough\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\twords\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\ton\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\teliminating\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n30\tinflation\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n31\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t31\tmwe\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tresponsibility\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tprotect\t_\tVERB\tVB\t_\t34\tacl\t_\t_\n37\tfragile\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tfinancial\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tmarkets\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tbanks\t_\tNOUN\tNNS\t_\t39\tconj\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n43\thighly\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n44\tleveraged\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tcorporations\t_\tNOUN\tNNS\t_\t39\tconj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbiggest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tthreat\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\teconomic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thorizon\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tright\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\trecession\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\treasons\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\toutbreak\t_\tNOUN\tNN\t_\t15\tparataxis\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tuncontrolled\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tinflation\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tend\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcollapse\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tsuggested\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tmove\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlockstep\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\teconomy\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tdepend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tconfidence\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tbusinesses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tconsumers\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tforeign\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tinvestors\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpanic\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tWall\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStreet\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\texactly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tinspire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tconfidence\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSurveys\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsuggested\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tconsumer\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tconfidence\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\thigh\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n8\tbefore\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t190-point\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdrop\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tmake\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdent\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n14\tmultiply\t_\tVERB\tVB\t_\t6\tparataxis\t_\t_\n15\tthat\t_\tADP\tIN\t_\t14\tdobj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttimes\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n19\tover\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\tthough\t_\tADV\tIN\t_\t14\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\twill\t_\tAUX\tMD\t_\t14\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\treactions\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tgathered\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tSaturday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tHot\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSprings\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tVa.\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tBusiness\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tCouncil\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tmeetings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n20\ttypical\t_\tADJ\tJJ\t_\t27\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n22\tbusiness\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tleaders\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n25\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n26\toverly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\trattled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tdecline\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tforeign\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tbecome\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttad\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n8\tmore\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n9\tcautious\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n11\twell\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdollar\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\trecent\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tstrength\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tsuggests\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n22\tcan\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tstand\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tbottom\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tline\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tmost\t_\tADV\tRBS\t_\t8\tadvmod\t_\t_\n8\tcomforting\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfact\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\teconomic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\toutlook\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\twe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\t've\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n19\tthrough\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthis\t_\tPRON\tDT\t_\t14\tccomp\t_\t_\n21\tbefore\t_\tADV\tIN\t_\t20\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tabout\t_\tADV\tIN\t_\t8\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tonly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpoint\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcomparison\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\t1929\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcrash\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsubsequent\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tDepression\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdoomsayers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\treceptive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taudience\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprosperity\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tfollowed\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tBlack\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMonday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n7\tpermits\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tmore\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\toptimistic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tview\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\ttoday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tvery\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tleast\t_\tADJ\tJJS\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\testablishment\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\there\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\ttaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tcomfort\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tnation\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tsuccess\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tin\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\thandling\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tgo-around\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n2\tSen.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tLloyd\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBentsen\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tD.\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tTexas\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n10\tobserved\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n14\tThe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tFed\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tavoided\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmeltdown\t_\tADJ\tNN\t_\t16\tdobj\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n3\tmore\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n4\tsophisticated\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttime\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tchemical\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tprofits\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\teroded\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tbecause\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tskidding\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcommodity\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tend\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tbusiness\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tProducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcommodity\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tchemicals\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbasic\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tchemicals\t_\tNOUN\tNNS\t_\t4\tappos\t_\t_\n9\tproduced\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\thuge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tvolumes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmanufacturers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n18\tseen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tsharp\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tinventory\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcutting\t_\tNOUN\tVBG\t_\t18\tdobj\t_\t_\n22\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tbuyers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tOnce\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tchief\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbeneficiaries\t_\tNOUN\tNNS\t_\t18\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tindustry\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tnow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tfading\t_\tVERB\tJJ\t_\t11\tamod\t_\t_\n11\tboom\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tthese\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n15\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\taux\t_\t_\n18\treporting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n19\tagainst\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\texceptionally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tstrong\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tperformances\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t1988\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n26\tthird\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tquarter\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tsome\t_\tDET\tDT\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tthis\t_\tPRON\tDT\t_\t13\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfirst\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tquarter\t_\tNOUN\tNN\t_\t20\tccomp\t_\t_\n14\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tyear-to-year\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tnegative\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcomparisons\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tLeonard\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tBogner\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tchemical\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tindustry\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tanalyst\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n28\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tPrudential\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tBache\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tResearch\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfirst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tfive\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tsix\t_\tNUM\tCD\t_\t8\tconj\t_\t_\n11\tdown\t_\tADJ\tIN\t_\t12\tamod\t_\t_\n12\tquarters\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tPerhaps\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tprominent\t_\tADJ\tJJ\t_\t22\tccomp\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tChemical\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t22\tnsubjpass\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n10\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tmidyear\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tracked\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\teight\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n17\tconsecutive\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\trecord\t_\tADJ\tNN\t_\t19\tamod\t_\t_\n19\tquarters\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n22\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\treport\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthat\t_\tDET\tDT\t_\t27\tmark\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tdecreased\t_\tVERB\tVBD\t_\t24\tccomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tlatest\t_\tADJ\tJJS\t_\t31\tamod\t_\t_\n31\tquarter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tyear\t_\tNOUN\tNN\t_\t35\tnmod:npmod\t_\t_\n35\tearlier\t_\tADV\tRBR\t_\t27\tadvcl\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n37\tif\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n38\tonly\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n39\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tshade\t_\tNOUN\tNN\t_\t27\tadvcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThough\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\taggressively\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tdiversified\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n6\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tspecialty\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tchemicals\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpharmaceuticals\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tstill\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstake\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tpolyethylene\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t24\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\tauxpass\t_\t_\n24\tused\t_\tVERB\tVBN\t_\t20\tacl:relcl\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tpackaging\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\thousewares\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n2\t'\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tthird-quarter\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\testimates\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n7\tMidland\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tMich.\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t3.20\t_\tNUM\tCD\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t3.30\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tcompared\t_\tVERB\tVBN\t_\t27\tcase\t_\t_\n25\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t27\tdep\t_\t_\n27\t3.36\t_\tNUM\tCD\t_\t15\tadvcl\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n30\tago\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\twhen\t_\tADV\tWRB\t_\t35\tadvmod\t_\t_\n33\tprofit\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n34\twas\t_\tVERB\tVBD\t_\t35\tcop\t_\t_\n35\t$\t_\tSYM\t$\t_\t30\tadvcl\t_\t_\n36\t632\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\tmillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n38\ton\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tsales\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\t$\t_\tSYM\t$\t_\t39\tnmod\t_\t_\n42\t4.15\t_\tNUM\tCD\t_\t43\tcompound\t_\t_\n43\tbillion\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokeswoman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcomment\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\testimates\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tinvestment\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tfirm\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tSmith\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tBarney\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tHarris\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n10\tUpham\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcommodity-chemical\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsegment\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\tseen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tpulling\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\tdown\t_\tADP\tRP\t_\t19\tadvmod\t_\t_\n21\toverall\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprofit\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t20\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tcompanies\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\trepresentative\t_\tADJ\tNN\t_\t25\tamod\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\twhole\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tindustry\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n32\t8\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n33\t%\t_\tSYM\tNN\t_\t36\tdep\t_\t_\n34\tto\t_\tADP\tTO\t_\t36\tdep\t_\t_\n35\t10\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tfind\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcommodities\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n7\toff\t_\tADV\tIN\t_\t4\txcomp\t_\t_\n8\tmore\t_\tADV\tJJR\t_\t7\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tothers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdiversified\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n16\tabout\t_\tADV\tIN\t_\t17\tadvmod\t_\t_\n17\teven\t_\tADJ\tRB\t_\t7\tconj\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tslightly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tbetter\t_\tADJ\tJJR\t_\t17\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tJames\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWilbur\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tSmith\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tBarney\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tanalyst\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tFirst\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBoston\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tprojects\t_\tVERB\tNNS\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tWDT\t_\t14\tmark\t_\t_\n6\t10\t_\tNUM\tCD\t_\t14\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t15\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcompanies\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tfollows\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\treport\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n15\tlower\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\t10\t_\tNUM\tCD\t_\t1\tnmod\t_\t_\n5\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcommodity-chemical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\toperations\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tgiants\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\treport\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tcontinuing\t_\tADJ\tVBG\t_\t11\tamod\t_\t_\n11\tgains\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tlargely\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n14\tbecause\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n15\tso\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tmuch\t_\tADJ\tJJ\t_\t23\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n21\toutside\t_\tADP\tJJ\t_\t23\tcase\t_\t_\n22\tcommodity\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tchemicals\t_\tNOUN\tNNS\t_\t7\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDu\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPont\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\thad\t_\tVERB\tVBN\t_\t5\txcomp\t_\t_\n9\tsteady\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tprofit\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tgrowth\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\twhite\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpigments\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tfibers\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tpolymers\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n4\tWilmington\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tDel.\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\tauxpass\t_\t_\n10\thelped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tweaken\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tcommodity\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tchemicals\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tbuys\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n20\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tproduction\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tneeds\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t28\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tethylene\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\tauxpass\t_\t_\n3\tdivided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tover\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\twhether\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tDu\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tPont\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\treport\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n10\tmuch\t_\tADJ\tRB\t_\t9\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tlatest\t_\tADJ\tJJS\t_\t17\tamod\t_\t_\n17\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n20\tConoco\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tInc.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\toil\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\testimates\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tDu\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPont\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\trange\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n9\t2.25\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n11\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n12\t2.45\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t461\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t1.91\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsales\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t7.99\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tDu\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPont\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tcomment\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMonsanto\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCo.\t_\tPROPN\tNNP\t_\t7\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tcontinue\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\treporting\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\thigher\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n12\tprofit\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\teven\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n15\tthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tcrop\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tchemicals\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\twere\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\thurt\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tlatest\t_\tADJ\tJJS\t_\t26\tamod\t_\t_\n26\tquarter\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tdrought\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tnorthern\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tEurope\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\twestern\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tU.S.\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tSt.\t_\tPROPN\tNNP\t_\t3\tamod\t_\t_\n3\tLouis-based\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n11\tlosses\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tG.D.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSearle\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t&\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tCo.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tpharmaceutical\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tnarrowing\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSearle\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tcontinued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\toperate\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tred\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthrough\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfirst\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\thalf\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n17\tMonsanto\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\texpects\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n22\tSearle\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tpost\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tall\t_\tDET\tDT\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\t1989\t_\tNUM\tCD\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t2\tamod\t_\t_\n2\testimates\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tMonsanto\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\trun\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tbetween\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t1.70\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tconj\t_\t_\n11\t2\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthird-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t116\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.67\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tsales\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t2.02\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMonsanto\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tcomment\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcommodity-chemical\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tproducers\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n6\tcaught\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdownside\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tpricing\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcycle\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\taccounts\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tindustry\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tinventory\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treductions\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n16\tnear\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tend\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n21\tmay\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tpresage\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n23\tfirmer\t_\tADJ\tJJR\t_\t24\tamod\t_\t_\n24\tdemand\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tdoubters\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tgrowing\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n5\tproduction\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcapacity\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tkeep\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tpressure\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tinto\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tearly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\t1990s\t_\tNOUN\tCD\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlatest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tat\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n7\tleast\t_\tADJ\tJJS\t_\t6\tmwe\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tfall\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tsharply\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tHimont\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n6\thow\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n7\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdown\t_\tADV\tIN\t_\t10\tdep\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t15\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\tdo\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tknow\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tLeslie\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tRavitz\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tSalomon\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBrothers\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprojections\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tneighborhood\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t50\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tdep\t_\t_\n13\t75\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tcompared\t_\tVERB\tVBN\t_\t21\tcase\t_\t_\n17\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\trestated\t_\tADJ\tVBN\t_\t21\tamod\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.65\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n26\tearlier\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n29\tprofit\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n31\t$\t_\tSYM\t$\t_\t26\tadvcl\t_\t_\n32\t107.8\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tsales\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t$\t_\tSYM\t$\t_\t35\tnmod\t_\t_\n38\t435.5\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\tmillion\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHimont\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tfaces\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tlower\t_\tADJ\tJJR\t_\t4\tamod\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tmainstay\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproduct\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tpolypropylene\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twhile\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tgoes\t_\tVERB\tVBZ\t_\t2\tadvcl\t_\t_\n15\tforward\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\theavy\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\tcapital\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tinvestment\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tbolster\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n25\traw\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tmaterial\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsupply\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n29\tdevelop\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n30\tnew\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tuses\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tpolypropylene\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twhose\t_\tPRON\tWP$\t_\t36\tnmod:poss\t_\t_\n36\tmarkets\t_\tNOUN\tNNS\t_\t37\tnsubj\t_\t_\n37\tinclude\t_\tVERB\tVBP\t_\t33\tacl:relcl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n39\tpackaging\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\tautomobile\t_\tNOUN\tNN\t_\t39\tconj\t_\t_\n42\tindustries\t_\tNOUN\tNNS\t_\t37\tdobj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tWilmington\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tDel.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\t81%-owned\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tMontedison\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tS.p\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n16\tA.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tMilan\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\thas\t_\tVERB\tVBZ\t_\t16\tacl:relcl\t_\t_\n22\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\toutstanding\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tHimont\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n30\tdoes\t_\tAUX\tVBZ\t_\t33\taux\t_\t_\n31\tn't\t_\tPART\tRB\t_\t33\tneg\t_\t_\n32\talready\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\town\t_\tVERB\tVB\t_\t28\tacl:relcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tQuantum\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tChemical\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\ttrouble\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tlower\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpolyethylene\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\thigher\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n18\tdebt\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcosts\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tidling\t_\tNOUN\tVBG\t_\t13\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\timportant\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tplant\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tdue\t_\tADV\tJJ\t_\t22\tadvmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tan\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\texplosion\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thedge\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\testimates\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubjpass\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\tauxpass\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tknown\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tbook\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n19\tcertain\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tone-time\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcharges\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\testimates\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trange\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tbreak-even\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\t35\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n10\t99.8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t3.92\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t724.4\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tpolyethylene\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tproducer\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tUnion\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tCarbide\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCorp.\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tpost\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tprofit\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t1\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t1.25\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tcompared\t_\tVERB\tVBN\t_\t28\tcase\t_\t_\n26\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\t$\t_\tSYM\t$\t_\t28\tdep\t_\t_\n28\t1.56\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t33\tnmod:npmod\t_\t_\n33\tearlier\t_\tADV\tRBR\t_\t28\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twhen\t_\tADV\tWRB\t_\t38\tadvmod\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcompany\t_\tNOUN\tNN\t_\t38\tnsubj\t_\t_\n38\tearned\t_\tVERB\tVBD\t_\t33\tadvcl\t_\t_\n39\t$\t_\tSYM\t$\t_\t38\tdobj\t_\t_\n40\t213\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n41\tmillion\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n42\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\tsales\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n44\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\t$\t_\tSYM\t$\t_\t43\tnmod\t_\t_\n46\t2.11\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n47\tbillion\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHimont\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tQuantum\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n5\tUnion\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCarbide\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdep\t_\t_\n8\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcomment\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfollowing\t_\tADJ\tNN\t_\t7\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\tamong\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tofferings\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tpricings\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tnon-U.S.\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\tcapital\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarkets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tterms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tsyndicate\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmanager\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\tcompiled\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tDow\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n28\tJones\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tCapital\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tMarkets\t_\tPROPN\tNNPS\t_\t31\tcompound\t_\t_\n31\tReport\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n32\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n\n1\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tChemical\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t150\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\t8.55\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n7\tsenior\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tnotes\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n9\tdue\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n10\tOct.\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t15\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n13\t2009\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\tpriced\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tpar\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissue\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tputtable\t_\tADJ\tJJ\t_\t2\tacl:relcl\t_\t_\n7\tback\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tpar\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tOct.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n17\t1999\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\twas\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tspread\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\t50\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n26\tbasis\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpoints\t_\tNOUN\tNNS\t_\t23\tacl\t_\t_\n28\tabove\t_\tADP\tIN\t_\t27\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tTreasury\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\t10-year\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnote\t_\tNOUN\tNN\t_\t27\tdep\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tRated\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n2\tsingle-A-1\t_\tADJ\tJJ\t_\t1\txcomp\t_\t_\n3\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tMoody\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tInvestors\t_\tPROPN\tNNPS\t_\t8\tcompound\t_\t_\n7\tService\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n10\tsingle-A\t_\tADJ\tJJ\t_\t1\tconj\t_\t_\n11\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tStandard\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tPoor\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tnon-callable\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tissue\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n21\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n24\tthrough\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tunderwriters\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tled\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tMerrill\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tLynch\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tCapital\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tMarkets\t_\tPROPN\tNNPS\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tCentel\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCapital\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t150\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tdebentures\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\tdue\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n9\tOct.\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\t15\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n12\t2019\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n14\tpriced\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t99.943\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tyield\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n19\t9.008\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnon-callable\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tissue\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t8\tnsubjpass\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tput\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n9\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1999\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t99\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tbasis\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tabove\t_\tADP\tIN\t_\t21\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tTreasury\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\t10-year\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnote\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tRated\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n2\tBaa-1\t_\tADJ\tJJ\t_\t1\txcomp\t_\t_\n3\tby\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tMoody\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n7\ttriple-B-plus\t_\tADJ\tJJ\t_\t1\tconj\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tS&P\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tissue\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tunderwriters\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tled\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tMorgan\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tStanley\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t&\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tCo\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t500\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tRemic\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\toffered\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t13\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tclasses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tPrudential-Bache\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tSecurities\t_\tPROPN\tNNPS\t_\t15\tcompound\t_\t_\n15\tInc\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffering\t_\tNOUN\tNN\t_\t28\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tSeries\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t102\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tbacked\t_\tVERB\tVBN\t_\t28\tdep\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n10\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\t8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n12\t1/2\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tsecurities\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tweighted\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\taverage\t_\tNOUN\tJJ\t_\t20\tcompound\t_\t_\n19\tremaining\t_\tVERB\tVBG\t_\t20\tamod\t_\t_\n20\tterm\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tmaturity\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t28.4\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tyears\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\tauxpass\t_\t_\n28\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t34\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tafternoon\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tsurge\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tclasses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnmod\t_\t_\n5\tdetails\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tavailable\t_\tADJ\tJJ\t_\t2\tacl:relcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tyields\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tranged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t8.78\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t75\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tbasis\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpoints\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n19\tover\t_\tADP\tIN\t_\t18\tcase\t_\t_\n20\ttwo-year\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tTreasury\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tsecurities\t_\tNOUN\tNNS\t_\t18\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\t10.05\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n29\t200\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n30\tbasis\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tpoints\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n32\tover\t_\tADP\tIN\t_\t31\tcase\t_\t_\n33\t10-year\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tTreasurys\t_\tPROPN\tNNPS\t_\t31\tdep\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t300\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tRemic\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\toffered\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n9\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tCiticorp\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tSecurities\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMarkets\t_\tPROPN\tNNPS\t_\t13\tcompound\t_\t_\n13\tInc\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffering\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tSeries\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t101\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tbacked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n10\tFreddie\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n11\tMac\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n12\t9\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n13\t1/2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tPricing\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tdetails\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\timmediately\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tavailable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t200\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tstripped\t_\tADJ\tVBN\t_\t7\tamod\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\tunderwritten\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tBT\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tSecurities\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tstrips\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tissue\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tcollateralized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\t8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tpooled\t_\tVERB\tVBD\t_\t14\tacl\t_\t_\n16\tinto\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsingle\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsecurity\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tcalled\t_\tVERB\tVBD\t_\t19\tacl\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tGiant\t_\tPROPN\tNN\t_\t20\txcomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n24\twill\t_\tAUX\tMD\t_\t26\taux\t_\t_\n25\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n26\tdivided\t_\tVERB\tVBN\t_\t8\tdep\t_\t_\n27\tinto\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tinterest-only\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tprincipal-only\t_\tADJ\tJJ\t_\t28\tconj\t_\t_\n31\tsecurities\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcollateral\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeing\t_\tAUX\tVBG\t_\t5\tauxpass\t_\t_\n5\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tthrift\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tinstitution\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprincipal-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\trepackaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBT\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSecurities\t_\tPROPN\tNNPS\t_\t6\tnmod\t_\t_\n10\tinto\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tRemic\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tSeries\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t103\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\thave\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n22\tsix\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tclasses\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinterest-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tseparately\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tBT\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSecurities\t_\tPROPN\tNNPS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprincipal-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tprincipal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n9\tunderlying\t_\tADJ\tVBG\t_\t14\tamod\t_\t_\n10\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\t8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tsecurities\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\twhile\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tinterest-only\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsecurities\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tpay\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n21\tonly\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tinterest\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFreddie\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMac\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tprincipal-only\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsecurities\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tpriced\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t58\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t1/4\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tyield\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\t8.45\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\tassuming\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\taverage\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tlife\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\teight\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tprepayment\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t160\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tPSA\t_\tPROPN\tNN\t_\t33\tcompound\t_\t_\n33\tmodel\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinterest-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t35\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t1/2\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tyield\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n11\t10.72\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tmajor\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tEurobond\t_\tPROPN\tNN\t_\t2\tnsubj\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tforeign\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tbond\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tofferings\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tEurope\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n"
  },
  {
    "path": "a3/data/test.gold.conll",
    "content": "1\tNo\t_\tADV\tRB\t_\t7\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tBlack\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMonday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n2\twhile\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tYork\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tStock\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tExchange\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tfall\t_\tVERB\tVB\t_\t33\tadvcl\t_\t_\n11\tapart\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tDow\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tJones\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tIndustrial\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tAverage\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tplunged\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n20\t190.58\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n23\tmost\t_\tADJ\tJJS\t_\t21\tdep\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t23\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfinal\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\thour\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n32\tbarely\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tmanaged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tstay\t_\tVERB\tVB\t_\t33\txcomp\t_\t_\n36\tthis\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tside\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tchaos\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\tcircuit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbreakers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n6\tinstalled\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\tafter\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tOctober\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\t1987\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcrash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tfailed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttest\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\ttraders\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t12\tparataxis\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tunable\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tcool\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tselling\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tpanic\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tboth\t_\tDET\tDT\t_\t28\tcc:preconj\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tfutures\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t49\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tspecialist\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n6\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tfloor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbuyers\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tsellers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tresort\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\twho\t_\tPRON\tWP\t_\t21\tnsubjpass\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\tcriticized\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n22\tafter\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\t1987\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tcrash\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n27\tonce\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tagain\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n29\tcould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\thandle\t_\tVERB\tVB\t_\t0\troot\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tselling\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tpressure\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tBig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbanks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trefused\t_\tVERB\tVBD\t_\t25\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tstep\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tup\t_\tADP\tIN\t_\t6\tadvmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tplate\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsupport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tbeleaguered\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tfloor\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttraders\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n17\tby\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tbuying\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n19\tbig\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tblocks\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\ttraders\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tHeavy\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tselling\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n4\tStandard\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tPoor\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n8\t500-stock\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tindex\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfutures\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tChicago\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n13\trelentlessly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tbeat\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tdownward\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSeven\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tAMR\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tBankAmerica\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tWalt\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tDisney\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tCapital\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCities/ABC\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tPhilip\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMorris\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\tPacific\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tTelesis\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tGroup\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n25\tstopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\ttrading\t_\tVERB\tVBG\t_\t25\txcomp\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n28\tnever\t_\tADV\tRB\t_\t29\tneg\t_\t_\n29\tresumed\t_\tVERB\tVBD\t_\t25\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfinger-pointing\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tbegun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tequity\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tilliquid\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOnce\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tagain\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n3\t-LCB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tspecialists\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n6\t-RCB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\table\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\thandle\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\timbalances\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tfloor\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tStock\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tExchange\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tChristopher\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tPedersen\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tsenior\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tvice\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tpresident\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n32\tat\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tTwenty-First\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tSecurities\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCorp\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tCountered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n2\tJames\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMaguire\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tspecialists\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n8\tHenderson\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBrothers\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n13\tIt\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\teasy\t_\tADJ\tJJ\t_\t1\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tsay\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tspecialist\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tdoing\t_\tVERB\tVBG\t_\t17\tccomp\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tjob\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdollar\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tfree-fall\t_\tNOUN\tNN\t_\t14\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\teven\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tcentral\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbanks\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n12\tca\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tstop\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSpeculators\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tcalling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdegree\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tliquidity\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n11\tnot\t_\tPART\tRB\t_\t15\tneg\t_\t_\n12\tthere\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t6\tacl:relcl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmoney\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttraders\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\talready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tleft\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\toffices\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tearly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tafternoon\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\twarm\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tautumn\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tday\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n21\tbecause\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n25\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n26\tso\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tquiet\t_\tADJ\tJJ\t_\t9\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tlightning\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tplunge\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tindustrials\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tbarely\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tnummod\t_\t_\n14\thour\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n15\tsurrendered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tnummod\t_\t_\n18\tthird\t_\tADJ\tJJ\t_\t15\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tgains\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t21\tnmod:tmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tchalking\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n26\tup\t_\tADP\tRP\t_\t25\tcompound:prt\t_\t_\n27\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n28\t190.58-point\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n31\t6.9\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\t%\t_\tSYM\tNN\t_\t28\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n34\tloss\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tday\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tgargantuan\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n40\ttrading\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tvolume\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tFinal-hour\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\taccelerated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n5\t108.1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\trecord\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBig\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBoard\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tend\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tday\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\t251.2\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tshares\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tindustrials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t2569.26\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecline\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tsecond\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tpoint\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tterms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tonly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\t508-point\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tBlack\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tMonday\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tcrash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\toccurred\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\tOct.\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n20\t19\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tpercentage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tterms\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tdive\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\t12th-worst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tever\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsharpest\t_\tADJ\tJJS\t_\t13\tconj\t_\t_\n18\tsince\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tfell\t_\tVERB\tVBD\t_\t17\tacl\t_\t_\n22\t156.83\t_\tNUM\tCD\t_\t21\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\t8\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t22\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tweek\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n30\tafter\t_\tADP\tIN\t_\t29\tcase\t_\t_\n31\tBlack\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tMonday\t_\tPROPN\tNNP\t_\t29\tdep\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t22.6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tBlack\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShares\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tUAL\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparent\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tUnited\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAirlines\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\textremely\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tactive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\treacting\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n20\tnews\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\trumors\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n23\tabout\t_\tADP\tIN\t_\t29\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n25\tproposed\t_\tVERB\tVBN\t_\t29\tamod\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t6.79\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tbillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tbuy-out\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tairline\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tan\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\temployee-management\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tgroup\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWall\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStreet\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttakeover-stock\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tspeculators\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\trisk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tarbitragers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tunusually\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tlarge\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbets\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttakeover\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tsucceed\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tUAL\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\trise\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\t2:43\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tp.m.\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tEDT\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t15\tdep\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsickening\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tnews\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n11\tThe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tBig\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBoard\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\thalting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n16\ttrading\t_\tVERB\tVBG\t_\t15\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tUAL\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n21\tpending\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n22\tnews\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\texchange\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tfloor\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n7\tas\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tsoon\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tUAL\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tstopped\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n12\ttrading\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tbraced\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpanic\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tone\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n23\ttop\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tfloor\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\ttrader\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tseen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tshaking\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\ttheir\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\theads\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tflashed\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tweeks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tnervous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tabout\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\ttakeovers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tafter\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n13\tCampeau\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tcash\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcrunch\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tspurred\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n19\tconcern\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tabout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tprospects\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tfuture\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\thighly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tleveraged\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttakeovers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\t10\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tminutes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n4\tafter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thalt\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n9\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tnews\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tUAL\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tgroup\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tget\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n18\tfinancing\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tbid\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t35\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcrumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tArbitragers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdump\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tUAL\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\trid\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n12\tthemselves\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n14\tnearly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tevery\t_\tDET\tDT\t_\t19\tamod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n17\trumor\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\thad\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tselling\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tcaused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thalts\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tdeclared\t_\tVERB\tVBN\t_\t6\txcomp\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tUSAir\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tGroup\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tclosed\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n18\tdown\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t3\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t7/8\t_\tNUM\tCD\t_\t18\tnmod:npmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\t41\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t1/2\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tDelta\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tAir\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tLines\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\twhich\t_\tPRON\tWDT\t_\t30\tnsubj\t_\t_\n30\tfell\t_\tVERB\tVBD\t_\t27\tacl:relcl\t_\t_\n31\t7\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\t3/4\t_\tNUM\tCD\t_\t30\tdobj\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\t69\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\t1/4\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n38\tPhilips\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tIndustries\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\twhich\t_\tPRON\tWDT\t_\t42\tnsubj\t_\t_\n42\tsank\t_\tVERB\tVBD\t_\t39\tacl:relcl\t_\t_\n43\t3\t_\tNUM\tCD\t_\t42\tdobj\t_\t_\n44\tto\t_\tADP\tTO\t_\t46\tcase\t_\t_\n45\t21\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n46\t1/2\t_\tNUM\tCD\t_\t42\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\teventually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\treopened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tas\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tpanic\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tspread\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tspeculators\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsell\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tblue-chip\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tPhilip\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMorris\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tInternational\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tBusiness\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMachines\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\toffset\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tlosses\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\ttrading\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\thalted\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tPhilip\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMorris\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\ttrading\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t41\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\t3\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\t3/8\t_\tNUM\tCD\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\twhile\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tIBM\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\tclosed\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n23\t5\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t5/8\t_\tNUM\tCD\t_\t25\tnmod:npmod\t_\t_\n25\tlower\t_\tADJ\tJJR\t_\t22\tadvmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t102\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSelling\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tsnowballed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tbecause\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tof\t_\tADP\tIN\t_\t3\tmwe\t_\t_\n5\twaves\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tautomatic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n9\tstop-loss\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\torders\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t15\tnsubjpass\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t15\tauxpass\t_\t_\n15\ttriggered\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n16\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n19\tprices\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tfall\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tcertain\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tlevels\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tselling\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpressure\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tWall\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tStreet\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tprofessionals\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tincluding\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n14\tcomputer-guided\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttraders\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTraders\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t15\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinstitutional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\thand\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\tsat\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n16\ttight\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n3\tat\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\t3:07\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\tone\t_\tNUM\tCD\t_\t15\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tpost-crash\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n13\treforms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\thold\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tS&P\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\t500\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tfutures\t_\tNOUN\tNNS\t_\t22\tcompound\t_\t_\n22\tcontract\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\thad\t_\tAUX\tVBD\t_\t24\taux\t_\t_\n24\tplunged\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n25\t12\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tpoints\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tequivalent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\taround\t_\tADP\tIN\t_\t32\tadvmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tadvmod\t_\t_\n32\t100-point\t_\tADJ\tJJ\t_\t33\tnummod\t_\t_\n33\tdrop\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tDow\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tindustrials\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n4\tsigned\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBig\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBoard\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tChicago\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMercantile\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tExchange\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n17\ttemporarily\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\thalted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tChicago\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\ttrading\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\thalt\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tS&P\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\t500\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tpit\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tChicago\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\twaves\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tselling\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\tcontinued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\thit\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tthemselves\t_\tPRON\tPRP\t_\t19\tnmod:npmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tBig\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tBoard\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n27\tspecialists\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tcontinued\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tnotch\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tprices\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n32\tdown\t_\tADP\tRP\t_\t30\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlink\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfutures\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\tripped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tapart\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWithout\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tguidepost\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tstock-index\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbarometer\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n10\tof\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\twhere\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\ttraders\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tthink\t_\tVERB\tVBP\t_\t9\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\toverall\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\tauxpass\t_\t_\n19\theaded\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n21\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttraders\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n24\tafraid\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\ttrust\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tprices\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\tquoted\t_\tVERB\tVBN\t_\t28\tacl\t_\t_\n30\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tBig\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tBoard\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\thalt\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tassailed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tBig\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBoard\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tfloor\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tscrewed\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n4\tthings\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tup\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tspecialist\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconfusion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\teffectively\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thalted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tform\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tprogram\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tarbitrage\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\tclosely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tlinks\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfutures\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmarkets\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n25\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n26\tbeen\t_\tAUX\tVBN\t_\t27\tauxpass\t_\t_\n27\tblamed\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n28\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tsome\t_\tDET\tDT\t_\t27\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tbig\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tswings\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n2\tIn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tstock-index\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tarbitrage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tsell\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprogram\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\ttraders\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tbuy\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tsell\t_\tVERB\tVBP\t_\t10\tconj\t_\t_\n13\tbig\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbaskets\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tstocks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n18\toffset\t_\tVERB\tVBP\t_\t10\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttrade\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tlock\t_\tVERB\tVB\t_\t18\tadvcl\t_\t_\n25\tin\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tprice\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tdifference\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tairline\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tinformation\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n7\tthrough\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tcracked\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n11\tevery\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmodel\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmarketplace\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tmanaging\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tdirector\t_\tNOUN\tNN\t_\t20\tdep\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tone\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tlargest\t_\tADJ\tJJS\t_\t30\tamod\t_\t_\n29\tprogram-trading\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tfirms\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tget\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tchance\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tdo\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tprograms\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\twanted\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tdo\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tstocks\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tkept\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfalling\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tindustrials\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n5\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\t55\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tpoints\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t3\t_\tNUM\tCD\t_\t0\troot\t_\t_\n10\tp.m.\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tbefore\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfutures-trading\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thalt\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t3:30\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n3\tp.m.\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tend\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n11\tcooling\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n12\toff\t_\tADP\tRP\t_\t14\tdep\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tperiod\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\taverage\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tdown\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\t114.76\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tduring\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet:predet\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thalt\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tS&P\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tfutures\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n12\tsell\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\torders\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tpiling\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\twhile\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tYork\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tkept\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n24\tfalling\t_\tVERB\tVBG\t_\t23\txcomp\t_\t_\n25\tsharply\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tBig\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tBoard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tChairman\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tJohn\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tJ.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPhelan\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tyesterday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcircuit\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tbreaker\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n13\tworked\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n14\twell\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tmechanically\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tjust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tnonproductive\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpoint\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tget\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n12\tinto\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdebate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tif\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\tindex\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tarbitrage\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\thelped\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\thurt\t_\tVERB\tVBN\t_\t20\tconj\t_\t_\n23\tthings\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tanother\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tpost-crash\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsystem\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n6\tBig\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tBoard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tRichard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tGrasso\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t15\tpunct\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPhelan\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\tflying\t_\tVERB\tVBG\t_\t25\tparataxis\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tBangkok\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n22\tfalling\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n23\t-RRB-\t_\tPUNCT\t-RRB-\t_\t15\tpunct\t_\t_\n24\twas\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\ttalking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n26\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n29\tinter-exchange\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\thot\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tline\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n33\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tother\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\texchanges\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n39\tSecurities\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\tExchange\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n42\tCommission\t_\tPROPN\tNNP\t_\t36\tconj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n44\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n45\tFederal\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n46\tReserve\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tBoard\t_\tPROPN\tNNP\t_\t36\tconj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcamped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tout\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\thigh-tech\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tnerve\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcenter\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfloor\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tBig\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n18\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\twatch\t_\tVERB\tVB\t_\t8\tacl:relcl\t_\t_\n21\tupdates\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tprices\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tpending\t_\tVERB\tVBG\t_\t27\tamod\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\torders\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tabout\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\t3:30\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tp.m.\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tEDT\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tS&P\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tfutures\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tresumed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ttrading\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tbrief\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\ttime\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tmarkets\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\tstarted\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tcome\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tback\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tline\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBuyers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tstepped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t2\tadvmod\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tpit\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbuild-up\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tS&P\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n7\tsell\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\torders\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tweighed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tlink\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tbegan\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tfray\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tagain\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tabout\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\t3:45\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tS&P\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tcareened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n10\tstill\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tanother\t_\tDET\tDT\t_\t12\tamod\t_\t_\n12\tlimit\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tpoints\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tdown\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t22\tnsubjpass\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\tlocked\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n23\tagain\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFutures\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tS&P\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tsignaling\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tDow\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tfall\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n13\tas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tmuch\t_\tADJ\tJJ\t_\t12\tdobj\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t200\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDuring\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tsmall\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tringing\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tbrokers\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\twondering\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tanother\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcrash\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tbegun\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tPrudential-Bache\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSecurities\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\ttrying\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcater\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tsmall\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tdemoralized\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbrokers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthis\t_\tPRON\tDT\t_\t24\tnsubj\t_\t_\n20\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfinal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tconfidence-crusher\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n4\tGeorge\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tL.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tBall\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n11\tPrudential\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n12\tInsurance\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAmerica\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tunit\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\ttook\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tinternal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tintercom\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsystem\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tdeclare\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tplunge\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n30\tonly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\tmechanical\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thunch\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tparticular\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdecline\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\ttoday\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n12\tsomething\t_\tNOUN\tNN\t_\t5\tccomp\t_\t_\n13\t`\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tado\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n16\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tless\t_\tADJ\tJJR\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t'\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t5\tcop\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tinclination\t_\tNOUN\tNN\t_\t24\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tadvise\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n8\tclients\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t7\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tlook\t_\tVERB\tVB\t_\t11\tdep\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\topportunity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBall\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tbrokers\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMerrill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnation\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tbiggest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n11\tbrokerage\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tfirm\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tnews\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trelease\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n17\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n18\tprepared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\theadlined\t_\tVERB\tVBN\t_\t18\tdep\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n21\tMerrill\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tLynch\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\tComments\t_\tPROPN\tNNP\t_\t19\txcomp\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tMarket\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tDrop\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trelease\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcautioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n6\tthere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n8\tsignificant\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdifferences\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n10\tbetween\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcurrent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tenvironment\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tthat\t_\tADP\tIN\t_\t13\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tOctober\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t1987\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n22\tthere\t_\tPRON\tEX\t_\t23\texpl\t_\t_\n23\tare\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n24\tstill\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n26\tattractive\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tinvestment\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\topportunities\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tstock\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tJeffrey\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tB.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tLane\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tShearson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tLehman\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tHutton\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tplunge\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tgoing\t_\tVERB\tVBG\t_\t14\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tset\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tback\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n26\trelations\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tcustomers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n31\tbecause\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\treinforces\t_\tVERB\tVBZ\t_\t21\tadvcl\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tconcern\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tvolatility\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlot\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tpeople\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tharp\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttrading\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbring\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdebate\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tright\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tforefront\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tDow\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\taverage\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\tground\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n6\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tfinal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\t190.58\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tloss\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tS&P\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tpit\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstayed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tlocked\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n18\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\t30-point\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tlimit\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tJeffrey\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tYass\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tprogram\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n5\ttrader\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tSusquehanna\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tInvestment\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGroup\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t2,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tS&P\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tcontracts\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tsale\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tclose\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tequivalent\t_\tNOUN\tNN\t_\t9\tccomp\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t330\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tbuyers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdebacle\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tinvolved\t_\tVERB\tVB\t_\t14\tadvcl\t_\t_\n6\tmainly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tprofessional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\trather\t_\tADV\tRB\t_\t11\tcase\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tleft\t_\tVERB\tVBD\t_\t25\tccomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tvulnerable\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tcontinued\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tselling\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t17\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\ttraders\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tStock-index\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfutures\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tcontracts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tmuch\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tlower\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tindexes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tstock\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\titself\t_\tPRON\tPRP\t_\t14\tnmod:npmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlevels\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n7\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\thammered\t_\tVERB\tVBN\t_\t7\txcomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tindex\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tarbitragers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n17\tlock\t_\tVERB\tVBP\t_\t14\tacl:relcl\t_\t_\n18\tin\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tprofits\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tby\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n21\tbuying\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n22\tfutures\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\twhen\t_\tADV\tWRB\t_\t26\tadvmod\t_\t_\n24\tfutures\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tfall\t_\tVERB\tVBP\t_\t21\tadvcl\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tsimultaneously\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tsell\t_\tVERB\tVBP\t_\t17\tconj\t_\t_\n31\toff\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\tstocks\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tnobody\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tknows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\twhat\t_\tPRON\tWP\t_\t6\tdet\t_\t_\n6\tlevel\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tfutures\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\topen\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n13\ttoday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tde-linkage\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tbetween\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tfutures\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n8\tmarkets\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n10\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tundoubtedly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tcause\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\trenewed\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdebate\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tabout\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\twhether\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n20\tproperly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tprepared\t_\tADJ\tJJ\t_\t14\tacl\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tanother\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tcrash\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsituation\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBig\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBoard\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tGrasso\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n10\tOur\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tsystemic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tperformance\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\tgood\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texchange\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tlook\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tperformance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tall\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tspecialists\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tObviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\twe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t'll\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\ttake\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tclose\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tlook\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsituation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t14\tnmod\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tthink\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tdealer-community\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tobligations\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n18\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tmet\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n23\the\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t2\tpunct\t_\t_\n2\tSee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\trelated\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstory\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n7\tFed\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n8\tReady\t_\tADJ\tJJ\t_\t15\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tInject\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tBig\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tFunds\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n15\tWSJ\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n16\tOct.\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n17\t16\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\t1989\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tspecialists\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tcomplain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tprivately\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n6\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n7\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\t1987\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcrash\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\tupstairs\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tfirms\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n19\tbig\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tinvestment\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tbanks\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tsupport\t_\tVERB\tVBP\t_\t21\tacl:relcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tby\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\ttrading\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n28\tbig\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tblocks\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tstock\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n33\tstayed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n34\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tsidelines\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\tduring\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tFriday\t_\tPROPN\tNNP\t_\t40\tnmod:poss\t_\t_\n39\t's\t_\tPART\tPOS\t_\t38\tcase\t_\t_\n40\tblood-letting\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPhelan\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tanother\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tanalyze\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n16\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n17\twas\t_\tAUX\tVBD\t_\t18\taux\t_\t_\n18\tbuying\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tselling\t_\tVERB\tVBG\t_\t18\tconj\t_\t_\n21\tFriday\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tConcerning\t_\tVERB\tVBG\t_\t6\tcase\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n3\tSept.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\t21\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tpage-one\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tarticle\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tPrince\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCharles\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tleeches\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n14\tIt\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n15\t's\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tadvmod\t_\t_\n17\tfew\t_\tADJ\tJJ\t_\t18\tadvmod\t_\t_\n18\thundred\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n20\tsince\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tEngland\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n22\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n23\tbeen\t_\tVERB\tVBN\t_\t25\tcop\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tkingdom\t_\tNOUN\tNN\t_\t19\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tUnited\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tKingdom\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tGreat\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBritain\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tNorthern\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tIreland\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tcomprising\t_\tVERB\tVBG\t_\t15\tcase\t_\t_\n15\tWales\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tNorthern\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tIreland\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tScotland\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n23\t...\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n24\toh\t_\tINTJ\tUH\t_\t15\tdiscourse\t_\t_\n25\tyes\t_\tINTJ\tUH\t_\t24\tdep\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n27\tEngland\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n29\ttoo\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t'd\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tlike\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tknow\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMorton\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tPorts\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tCall\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tagreements\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tremaining\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n11\tseven\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\taircraft\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tbuyers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubjpass\t_\t_\n16\twere\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tdisclosed\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagreements\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tbring\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttotal\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tnine\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tnumber\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tplanes\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\ttravel\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcompany\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tsold\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tpart\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\trestructuring\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tportion\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n9\t32\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\trealized\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tused\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\trepay\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tbank\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tdebt\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tobligations\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n26\tresulting\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n29\tcurrently\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tsuspended\t_\tVERB\tVBN\t_\t32\tamod\t_\t_\n31\tair-charter\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\toperations\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEarlier\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tsell\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\taging\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n10\tfleet\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tBoeing\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\t707s\t_\tPROPN\tNNPS\t_\t10\tnmod\t_\t_\n15\tbecause\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tincreasing\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n18\tmaintenance\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcosts\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconsortium\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tprivate\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\toperating\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n7\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tLJH\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tFunding\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCo.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tmade\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n15\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n16\t$\t_\tSYM\t$\t_\t20\tamod\t_\t_\n17\t409\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tcash\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbid\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tmost\t_\tADJ\tJJS\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tL.J.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tHooker\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\treal-estate\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tshopping-center\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tholdings\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t$\t_\tSYM\t$\t_\t5\tamod\t_\t_\n3\t409\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tassumption\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\testimated\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n13\t300\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tsecured\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tliabilities\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthose\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tproperties\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n22\taccording\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n23\tto\t_\tADP\tTO\t_\t22\tmwe\t_\t_\n24\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n25\tmaking\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbid\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tJay\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tShidler\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tchief\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\texecutive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tofficer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tShidler\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tInvestment\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tHonolulu\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tA.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tBoyd\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tSimpson\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tchief\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\texecutive\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n26\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n28\tAtlanta-based\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tSimpson\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tOrganization\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tInc\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tShidler\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tspecializes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tcommercial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\treal-estate\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tinvestment\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tclaims\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\thave\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\t$\t_\tSYM\t$\t_\t13\tdobj\t_\t_\n15\t1\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tbillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tassets\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSimpson\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdeveloper\t_\tNOUN\tNN\t_\t5\tparataxis\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tformer\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tsenior\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\texecutive\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tL.J.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tHooker\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tassets\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tgood\t_\tADJ\tJJ\t_\t26\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\trequire\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tmoney\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n15\tthan\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\tprovided\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n19\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tL.J.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHooker\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tcurrent\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tsituation\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tSimpson\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tinterview\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n\n1\tHooker\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tphilosophy\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tbuild\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsell\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\twant\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tbuild\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\thold\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tL.J.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHooker\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAtlanta\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\toperating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprotection\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tcreditors\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tChapter\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\t11\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tBankruptcy\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCode\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tparent\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tHooker\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tSydney\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tAustralia\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n13\tcurrently\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tbeing\t_\tAUX\tVBG\t_\t15\tauxpass\t_\t_\n15\tmanaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tcourt-appointed\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tprovisional\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tliquidator\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSanford\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSigoloff\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\texecutive\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tL.J.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tHooker\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstatement\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n18\tnot\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\tyet\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tseen\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tbid\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\treview\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n30\tbring\t_\tVERB\tVB\t_\t27\tconj\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t30\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tattention\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tcreditors\t_\tNOUN\tNNS\t_\t38\tcompound\t_\t_\n38\tcommittee\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t$\t_\tSYM\t$\t_\t5\tamod\t_\t_\n3\t409\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\testimated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSimpson\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\trepresenting\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n13\t75\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tvalue\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tall\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tHooker\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\treal-estate\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tholdings\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tNot\t_\tPART\tRB\t_\t2\tneg\t_\t_\n2\tincluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t2\tauxpass\t_\t_\n7\tBonwit\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tTeller\t_\tPROPN\tNNP\t_\t2\tnsubjpass\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tB.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAltman\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tL.J.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tHooker\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tdepartment-store\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tchains\t_\tNOUN\tNNS\t_\t8\tappos\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffer\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcovers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\tmassive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n6\t1.8\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n7\tmillion-square-foot\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tForest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tFair\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMall\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tCincinnati\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n15\t800,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n16\tsquare-foot\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tRichland\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tFashion\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMall\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tColumbia\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tS.C.\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n26\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n27\t700,000\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n28\tsquare-foot\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n29\tThornton\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tTown\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tCenter\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tmall\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tThornton\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tColo\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tThornton\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmall\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tSept.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t19\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tBigg\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\thypermarket\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tanchor\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tColumbia\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tmall\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n20\texpected\t_\tVERB\tVBN\t_\t4\tparataxis\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\topen\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tNov.\t_\tPROPN\tNNP\t_\t22\tnmod:tmod\t_\t_\n24\t15\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tHooker\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tproperties\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\t20-story\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\toffice\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttower\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmidtown\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tAtlanta\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\texpected\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n15\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tcompleted\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n18\tnext\t_\tADP\tIN\t_\t19\tamod\t_\t_\n19\tFebruary\t_\tPROPN\tNNP\t_\t17\tnmod:tmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n21\tvacant\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tland\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tsites\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFlorida\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tOhio\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n29\tL.J.\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tHooker\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tInternational\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n34\tcommercial\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n35\treal-estate\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n36\tbrokerage\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tcompany\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n38\tthat\t_\tPRON\tWDT\t_\t40\tnsubj\t_\t_\n39\tonce\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tdid\t_\tVERB\tVBD\t_\t37\tacl:relcl\t_\t_\n41\tbusiness\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n42\tas\t_\tADP\tIN\t_\t47\tcase\t_\t_\n43\tMerrill\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n44\tLynch\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n45\tCommercial\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n46\tReal\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tEstate\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n49\tplus\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n50\tother\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n51\tshopping\t_\tNOUN\tNN\t_\t52\tcompound\t_\t_\n52\tcenters\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconsortium\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tput\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ttogether\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tHoare\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGovett\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tLondon-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tinvestment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tbanking\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsubsidiary\t_\tNOUN\tNN\t_\t14\tacl:relcl\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tSecurity\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPacific\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tCorp\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tanticipate\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tproblems\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tin\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\traising\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfunding\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tbid\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tAllan\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCampbell\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\thead\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tmergers\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tacquisitions\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tHoare\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tGovett\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tinterview\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHoare\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGovett\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tacting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tconsortium\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tinvestment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbankers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tpeople\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n4\tfamiliar\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tconsortium\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbid\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tcode-named\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n13\tProject\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKlute\t_\tPROPN\tNNP\t_\t12\txcomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\treference\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tfilm\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n22\tKlute\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t34\tnmod\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tprostitute\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n28\tplayed\t_\tVERB\tVBN\t_\t27\tacl\t_\t_\n29\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tactress\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\tJane\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tFonda\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n33\tis\t_\tAUX\tVBZ\t_\t34\tauxpass\t_\t_\n34\tsaved\t_\tVERB\tVBN\t_\t22\tacl:relcl\t_\t_\n35\tfrom\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tpsychotic\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tbusinessman\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tby\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tpolice\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tofficer\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n43\tnamed\t_\tVERB\tVBN\t_\t42\tacl\t_\t_\n44\tJohn\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tKlute\t_\tPROPN\tNNP\t_\t43\txcomp\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tL.J.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHooker\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsmall\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\thome-building\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tbased\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tAtlanta\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1979\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSimpson\t_\tPROPN\tNNP\t_\t17\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\thired\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tpush\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tcommercial\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdevelopment\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmodestly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tuntil\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1986\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajority\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tposition\t_\tNOUN\tNN\t_\t16\tnsubjpass\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tHooker\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\tacquired\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n17\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tAustralian\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\tdeveloper\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tGeorge\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHerscu\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tcurrently\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n24\tHooker\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tchairman\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHerscu\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tproceeded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlaunch\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n7\tambitious\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\till-fated\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n13\t1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tacquisition\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbinge\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tincluded\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\tBonwit\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tTeller\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tB.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAltman\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n27\tas\t_\tADV\tRB\t_\t20\tcc\t_\t_\n28\twell\t_\tADV\tRB\t_\t27\tmwe\t_\t_\n29\tas\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n30\tmajority\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tpositions\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tMerksamer\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tJewelers\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tSacramento\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tchain\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\t;\t_\tPUNCT\t:\t_\t34\tpunct\t_\t_\n40\tSakowitz\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tInc.\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n44\tHouston-based\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tretailer\t_\tNOUN\tNN\t_\t41\tappos\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n47\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n48\tParisian\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tInc.\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n51\tthe\t_\tDET\tDT\t_\t54\tdet\t_\t_\n52\tSoutheast\t_\tPROPN\tNNP\t_\t54\tcompound\t_\t_\n53\tdepartment-store\t_\tNOUN\tNN\t_\t54\tcompound\t_\t_\n54\tchain\t_\tNOUN\tNN\t_\t49\tappos\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEventually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSimpson\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tHerscu\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfalling\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tout\t_\tADP\tRP\t_\t9\tdep\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdirection\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tSimpson\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tresigned\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t1988\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthen\t_\tADV\tRB\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tHooker\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tinterest\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tParisian\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchain\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tback\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\tParisian\t_\tADJ\tJJ\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tmanagement\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tcurrently\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tattempting\t_\tVERB\tVBG\t_\t7\tconj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tsell\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tB.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAltman\t_\tPROPN\tNNP\t_\t24\tdobj\t_\t_\n28\t&\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tCo.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tchain\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n4\tRobert\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSakowitz\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\texecutive\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tSakowitz\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tchain\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tis\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n16\tfunds\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuy\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tout\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tHooker\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tinterest\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMerksamer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tchain\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tcurrently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tbeing\t_\tAUX\tVBG\t_\t7\tauxpass\t_\t_\n7\toffered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tsale\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFirst\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tBoston\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tReached\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tHonolulu\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tShidler\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tbelieves\t_\tVERB\tVBZ\t_\t7\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tvarious\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tHooker\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmalls\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tcan\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tbecome\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n17\tprofitable\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmanagement\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThese\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tmature\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tassets\t_\tNOUN\tNNS\t_\t18\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\thave\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpotential\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\tso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tShidler\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tManaged\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n3\tproperly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tadvmod\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlong-term\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\toutlook\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tthese\t_\tPRON\tDT\t_\t13\tnsubj\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbecome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tinvestment-grade\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tquality\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tproperties\t_\tNOUN\tNNS\t_\t13\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tsteel-ingot\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttotaled\t_\tVERB\tVBD\t_\t35\tccomp\t_\t_\n5\t291,890\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tmetric\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttons\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tweek\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tended\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n12\tOct.\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t7\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n16\t14.8\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t15\tnmod:npmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tpreceding\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tweek\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\ttotal\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t254,280\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\ttons\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n28\tStatistics\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCanada\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tfederal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tagency\t_\tNOUN\tNN\t_\t29\tappos\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttotal\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tup\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t6.2\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tnmod:npmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t274,963\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ttons\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t14\tnmod:npmod\t_\t_\n14\tearlier\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tyear-to-date\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttotal\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\t12,006,883\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\ttons\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tup\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\t7.8\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t11,141,711\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\ttons\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tyear\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n16\tearlier\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tplans\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\traise\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n7\t175\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tThursday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tselling\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n15\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tdobj\t_\t_\n17\t9.75\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tbillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t52-week\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tbills\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n23\tredeeming\t_\tVERB\tVBG\t_\t14\tconj\t_\t_\n24\t$\t_\tSYM\t$\t_\t26\tdep\t_\t_\n25\t9.58\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmaturing\t_\tVERB\tVBG\t_\t29\tamod\t_\t_\n29\tbills\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbills\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tdated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tOct.\t_\tPROPN\tNNP\t_\t5\txcomp\t_\t_\n7\t26\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tmature\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n11\tOct.\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n12\t25\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\t1990\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t4\tcop\t_\t_\n4\tavailable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tminimum\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdenominations\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t10,000\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBids\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\tmust\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tAUX\tVB\t_\t4\tauxpass\t_\t_\n4\treceived\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\t1\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tp.m.\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tEDT\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tThursday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tTreasury\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tFederal\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tReserve\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tbanks\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tbranches\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tsmall\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpeppered\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tmutual\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tphone\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcalls\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tweekend\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tbig\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tfund\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmanagers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\thave\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tstrong\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdefense\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tagainst\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tany\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\twave\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\twithdrawals\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\t:\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n30\tcash\t_\tNOUN\tNN\t_\t23\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tweekend\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tbefore\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tBlack\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMonday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfunds\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tswamped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\theavy\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\twithdrawal\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trequests\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tfund\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tmanagers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tbuilt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tcash\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tlevels\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tsay\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tbuying\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tFidelity\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInvestments\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnation\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tlargest\t_\tADJ\tJJS\t_\t10\tamod\t_\t_\n9\tfund\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\ttelephone\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tvolume\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tsharply\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n21\tstill\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tjust\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\thalf\t_\tDET\tPDT\t_\t26\tnummod\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlevel\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tweekend\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tpreceding\t_\tVERB\tVBG\t_\t29\tacl\t_\t_\n31\tBlack\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tMonday\t_\tPROPN\tNNP\t_\t30\tnmod:tmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\t1987\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBoston\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tfirm\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tstock-fund\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tredemptions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\trunning\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tless\t_\tADJ\tJJR\t_\t12\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t10\tmwe\t_\t_\n12\tone-third\t_\tNOUN\tNN\t_\t14\tnummod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlevel\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n17\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tyesterday\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tafternoon\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tredemptions\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\trepresented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tless\t_\tADJ\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t15\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\ttotal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tcash\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tposition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n21\t2\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tFidelity\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tfunds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tTwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n7\tmassive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tredemption\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tlevels\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n10\tover\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tweekend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlot\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tfear\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\taround\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tC.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tBruce\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tJohnstone\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\truns\t_\tVERB\tVBZ\t_\t24\tacl:relcl\t_\t_\n28\tFidelity\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tInvestments\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n30\t'\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t35\tamod\t_\t_\n32\t5\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tbillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\tEquity-Income\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tFund\t_\tPROPN\tNNP\t_\t27\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\tfeels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n5\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tone-shot\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdeal\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tpanicking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttest\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ttoday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsell-off\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttoo\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tlate\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tact\t_\tVERB\tVB\t_\t8\tdep\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshareholders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\theld\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\toff\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tuntil\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n9\tany\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfund\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\texchanges\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n12\tmade\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tclose\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\ttake\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n19\tplace\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ttoday\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tclosing\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tprices\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tredemptions\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\tduring\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tdebacle\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsnowball\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tuntil\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\topened\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tBlack\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tMonday\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\tready\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tcash\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tlevels\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tact\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbuffer\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tsteep\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdeclines\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMario\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGabelli\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tinstance\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tcash\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpositions\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\twell\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tabove\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t20\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tseveral\t_\tADJ\tJJ\t_\t7\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tfunds\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWindsor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFund\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tJohn\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tNeff\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tMutual\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSeries\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tMichael\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPrice\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\traised\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tcash\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlevels\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t26\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n22\t20\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n23\t%\t_\tSYM\tNN\t_\t26\tdep\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n25\t30\t_\tNUM\tCD\t_\t26\tconj\t_\t_\n26\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\trespectively\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n30\tthis\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tPeter\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLynch\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tmanager\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tFidelity\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n10\t12.7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tMagellan\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tFund\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnation\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tlargest\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tfund\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tbuilt\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tup\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tcash\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\t7\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t22\tnmod\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\t$\t_\tSYM\t$\t_\t27\tconj\t_\t_\n30\t850\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\treason\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tDET\tDT\t_\t15\tmark\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tmonthly\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tredemptions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tfund\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tposted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n16\tnet\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tinflows\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tmoney\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tinvestors\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tAugust\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tSeptember\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tlet\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmoney\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tbuild\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tLynch\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twho\t_\tPRON\tWP\t_\t16\tnsubj\t_\t_\n16\tadded\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\thad\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n21\ttrouble\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\tfinding\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tlikes\t_\tVERB\tVBZ\t_\t23\tacl:relcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\tall\t_\tDET\tDT\t_\t3\tamod\t_\t_\n3\tfunds\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tcash\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tlevels\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcourse\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfunds\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t10.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tassets\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tcash\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAugust\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tlatest\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n20\tfigures\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n21\tavailable\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tInvestment\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tCompany\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tInstitute\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tmodestly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n5\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n7\t8.8\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t12\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\t9.2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n12\tlevels\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tSeptember\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t1987\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tpersistent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tredemptions\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tforce\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfund\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmanagers\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdump\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\traise\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n15\tcash\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tstrong\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlevel\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tinvestor\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\twithdrawals\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n9\tmuch\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tunlikely\t_\tADJ\tJJ\t_\t18\tdep\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n14\taround\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tfund\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmanagers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\treason\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n7\talready\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tsharply\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tscaled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n11\tback\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tpurchases\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfunds\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tsince\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tBlack\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tMonday\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStock-fund\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsales\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\trebounded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\trecent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tmonthly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tnet\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tpurchases\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n13\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tstill\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\trunning\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n16\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tless\t_\tADJ\tJJR\t_\t19\tadvmod\t_\t_\n18\tthan\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\thalf\t_\tNOUN\tNN\t_\t21\tnummod\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tlevels\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t11\tccomp\t_\t_\n4\tnot\t_\tPART\tRB\t_\t3\tneg\t_\t_\n5\tnearly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tas\t_\tADP\tIN\t_\t7\tdep\t_\t_\n7\tmuch\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tfroth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tJohn\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBogle\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tchairman\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tVanguard\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tGroup\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tInc.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n22\tbig\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n23\tValley\t_\tPROPN\tNNP\t_\t29\tdep\t_\t_\n24\tForge\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n26\tPa.\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n28\tfund\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\targue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tnow\t_\tADV\tRB\t_\t9\tnsubj\t_\t_\n7\t's\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttime\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tbuy\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tVincent\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBajakian\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n8\t1.8\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tWellington\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tFund\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tpositions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tBristol-Myers\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSquibb\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tWoolworth\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\tDun\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tBradstreet\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\ttoday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\t'll\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tdrug\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tEli\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tLilly\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tPfizer\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\tAmerican\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tHome\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tProducts\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n20\twhose\t_\tPRON\tWP$\t_\t22\tnmod:poss\t_\t_\n21\tdividend\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tyields\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tbolstered\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tdeclines\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLynch\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tsnapped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tup\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tSouthern\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n16\tafter\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n19\tgot\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\thammered\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdrops\t_\tVERB\tVBZ\t_\t9\tadvcl\t_\t_\n5\tfurther\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n6\ttoday\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\t'll\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tbuying\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n14\tblue\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tchips\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tsuch\t_\tADJ\tJJ\t_\t18\tcase\t_\t_\n17\tas\t_\tADP\tIN\t_\t16\tmwe\t_\t_\n18\tBristol-Myers\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tKellogg\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tcroak\t_\tVERB\tVBP\t_\t14\tadvcl\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthat\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tpresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\topportunity\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tkind\t_\tNOUN\tNN\t_\t16\tacl:relcl\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tthing\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tyou\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tdream\t_\tVERB\tVBP\t_\t21\tacl:relcl\t_\t_\n26\tabout\t_\tADP\tIN\t_\t25\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmutual-fund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tgroups\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tphone\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcalls\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tarriving\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ttwice\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tnormal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tweekend\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tpace\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tyesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tshare\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinformation\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTrading\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmodestly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n7\tthan\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tnormal\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tfund\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tgroups\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\ttaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tchances\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tavoid\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tjammed\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tphone\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tlines\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsnags\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tinfuriated\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n14\tsome\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tfund\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tOctober\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFidelity\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tSaturday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n4\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n6\t54\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\twalk-in\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tinvestor\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcenters\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n10\tacross\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcountry\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcenters\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tnormally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tclosed\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tthrough\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tweekend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tEast\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tCoast\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tcenters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t7:30\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tEDT\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmorning\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n15\tinstead\t_\tADV\tRB\t_\t19\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tnormal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\t8:30\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tT.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tRowe\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tPrice\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tAssociates\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tstaff\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tphone\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trepresentatives\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\thandle\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tinvestor\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\trequests\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBaltimore-based\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tnoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tmoved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tmoney\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tfunds\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tmoney-market\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfunds\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tseemed\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tinformation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmode\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n12\trather\t_\tADV\tRB\t_\t11\tcc\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttransaction\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmode\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tSteven\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tNorwitz\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tvice\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tpresident\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tVanguard\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tamong\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tgroups\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\twas\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tadding\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t14\tamod\t_\t_\n13\tphone\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\trepresentatives\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\ttoday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\thelp\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tget\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n20\tthrough\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tunusual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmove\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunds\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcalm\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trecordings\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\ttoll-free\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tphone\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tlines\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tview\t_\tVERB\tVBP\t_\t28\tccomp\t_\t_\n4\t-LCB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\t-RCB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdecline\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\toffering\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n12\tus\t_\tPRON\tPRP\t_\t11\tiobj\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbuying\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\topportunity\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tlong-term\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\trecording\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n23\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tGabelli\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n25\t&\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tCo.\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n27\tfunds\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tover\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tweekend\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tJanus\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGroup\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsimilar\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trecording\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfund\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\trough\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmorning\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tstabilize\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tearly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tselling\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tstem\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tportfolio\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmanagers\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n14\twant\t_\tVERB\tVBP\t_\t9\tacl:relcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlock\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tin\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tfat\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprofits\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tfunds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\taveraged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstaggering\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\taccording\t_\tVERB\tVBG\t_\t19\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t14\tmwe\t_\t_\n16\tLipper\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tAnalytical\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tServices\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tInc\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tElaine\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGarzarelli\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\truns\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n6\tShearson\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tLehman\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tHutton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tInc.\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n12\t335\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tSector\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAnalysis\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPortfolio\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\twill\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\topen\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n23\tdown\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tleast\t_\tADJ\tJJS\t_\t26\tnmod:npmod\t_\t_\n26\t50\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tpoints\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\ttechnical\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tfactors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n33\tsome\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tpanic\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tselling\t_\tNOUN\tNN\t_\t30\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\trebound\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\ttelling\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n11\tinvestors\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tshe\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\texpects\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\two\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tdecline\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t26\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n22\t10\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n23\t%\t_\tSYM\tNN\t_\t26\tdep\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tdep\t_\t_\n25\t15\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\trecent\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\thighs\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tMs.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGarzarelli\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tshe\t_\tPRON\tPRP\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tswamped\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tphone\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tcalls\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tover\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tweekend\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnervous\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tshareholders\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tHalf\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tthem\t_\tPRON\tPRP\t_\t2\tnmod\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\treally\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tscared\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\twant\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\tshe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t7\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n19\tI\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\t'm\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\ttrying\t_\tVERB\tVBG\t_\t7\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\ttalk\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthem\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\tout\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n5\tIf\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n7\tall\t_\tDET\tDT\t_\t9\tdep\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\tbullish\t_\tADJ\tJJ\t_\t15\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tI\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n12\t'd\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\treally\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t15\tcop\t_\t_\n15\tupset\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbackdrop\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tslide\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tmarkedly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdifferent\t_\tADJ\tJJ\t_\t20\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tthat\t_\tPRON\tDT\t_\t9\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tOctober\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\t1987\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcrash\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tfund\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmanagers\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\targue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tunlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttoday\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdollar\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\tweak\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\trates\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\trising\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n21\tvery\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tovervalued\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\tthey\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tFrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t6\tnmod:poss\t_\t_\n5\t'\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tstandpoint\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tinstitutions\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tindividuals\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tlearned\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tpainful\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlesson\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t...\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tselling\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tlows\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n22\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tBlack\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMonday\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tStephen\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tBoesel\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tmanager\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n33\t$\t_\tSYM\t$\t_\t39\tamod\t_\t_\n34\t580\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\tT.\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tRowe\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tPrice\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tGrowth\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\tIncome\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tFund\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n5\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\tdo\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t'll\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tget\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tpanic\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treaction\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNewport\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tfiscal-first-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t13\tamod\t_\t_\n12\t15\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\t19\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tsomewhat\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n21\tbelow\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tanalysts\t_\tNOUN\tNNS\t_\t24\tnmod:poss\t_\t_\n23\t'\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\testimates\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t19\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tcents\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t27\tdep\t_\t_\n29\t23\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t27\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmaker\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tscientific\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tinstruments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tlaser\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tparts\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\torders\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tfell\t_\tVERB\tVBD\t_\t9\tccomp\t_\t_\n12\tbelow\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\texpectations\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\trecent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n5\tsales\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tcurrent\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\twill\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n11\tabout\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tequal\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tyearearlier\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tfigure\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n20\tNewport\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\treported\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n22\tnet\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tincome\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t1.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t21\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n35\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n37\t14.1\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tmillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tsales\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRipples\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tstrike\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\t55,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\tMachinists\t_\tPROPN\tNNPS\t_\t9\tcompound\t_\t_\n8\tunion\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tagainst\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tBoeing\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tair\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcarriers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tAmerica\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tWest\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAirlines\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tannounced\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tpostpone\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tnew\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tservice\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tout\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tHouston\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\tbecause\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t31\tmwe\t_\t_\n33\tdelays\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n34\tin\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n35\treceiving\t_\tVERB\tVBG\t_\t33\tacl\t_\t_\n36\taircraft\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n37\tfrom\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\tSeattle\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n40\tjet\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tmaker\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tPeter\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOtradovec\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tvice\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tplanning\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tPhoenix\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tAriz.\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tcarrier\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tan\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinterview\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\twork\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tstoppage\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tBoeing\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tnow\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tentering\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\t13th\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t28\tnmod:tmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t35\tpunct\t_\t_\n34\thas\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n35\tcaused\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n36\tsome\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tturmoil\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tour\t_\tPRON\tPRP$\t_\t40\tnmod:poss\t_\t_\n40\tscheduling\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t''\t_\tPUNCT\t''\t_\t35\tpunct\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n43\tthat\t_\tSCONJ\tIN\t_\t62\tmark\t_\t_\n44\tmore\t_\tADJ\tJJR\t_\t46\tadvmod\t_\t_\n45\tthan\t_\tADP\tIN\t_\t44\tmwe\t_\t_\n46\t500\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n47\tpassengers\t_\tNOUN\tNNS\t_\t62\tnsubjpass\t_\t_\n48\twho\t_\tPRON\tWP\t_\t50\tnsubjpass\t_\t_\n49\twere\t_\tAUX\tVBD\t_\t50\tauxpass\t_\t_\n50\tbooked\t_\tVERB\tVBN\t_\t47\tacl:relcl\t_\t_\n51\tto\t_\tPART\tTO\t_\t52\tmark\t_\t_\n52\tfly\t_\tVERB\tVB\t_\t50\txcomp\t_\t_\n53\tout\t_\tADP\tIN\t_\t55\tcase\t_\t_\n54\tof\t_\tADP\tIN\t_\t55\tcase\t_\t_\n55\tHouston\t_\tPROPN\tNNP\t_\t52\tnmod\t_\t_\n56\ton\t_\tADP\tIN\t_\t58\tcase\t_\t_\n57\tAmerica\t_\tPROPN\tNNP\t_\t58\tcompound\t_\t_\n58\tWest\t_\tPROPN\tNNP\t_\t52\tnmod\t_\t_\n59\twould\t_\tAUX\tMD\t_\t62\taux\t_\t_\n60\tnow\t_\tADV\tRB\t_\t62\tadvmod\t_\t_\n61\tbe\t_\tAUX\tVB\t_\t62\tauxpass\t_\t_\n62\tput\t_\tVERB\tVBN\t_\t35\tconj\t_\t_\n63\ton\t_\tADP\tIN\t_\t65\tcase\t_\t_\n64\tother\t_\tADJ\tJJ\t_\t65\tamod\t_\t_\n65\tairlines\t_\tNOUN\tNNS\t_\t62\tnmod\t_\t_\n66\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tOtradovec\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tBoeing\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\ttold\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tAmerica\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tWest\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\t757\t_\tPROPN\tNNP\t_\t21\tnsubjpass\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubjpass\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tsupposed\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tThursday\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n18\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tdelivered\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n22\tuntil\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tNov.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t7\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n25\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tday\t_\tNOUN\tNN\t_\t23\tdep\t_\t_\n28\tafter\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tairline\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n31\thad\t_\tAUX\tVBD\t_\t33\taux\t_\t_\n32\tbeen\t_\tAUX\tVBN\t_\t33\taux\t_\t_\n33\tplanning\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tinitiate\t_\tVERB\tVB\t_\t33\txcomp\t_\t_\n36\tservice\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n37\tat\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tHouston\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\twith\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tfour\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n41\tdaily\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tflights\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n44\tincluding\t_\tVERB\tVBG\t_\t46\tcase\t_\t_\n45\tthree\t_\tNUM\tCD\t_\t46\tnummod\t_\t_\n46\tnonstops\t_\tNOUN\tNNS\t_\t42\tnmod\t_\t_\n47\tto\t_\tADP\tTO\t_\t48\tcase\t_\t_\n48\tPhoenix\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n49\tand\t_\tCONJ\tCC\t_\t46\tcc\t_\t_\n50\tone\t_\tNUM\tCD\t_\t51\tnummod\t_\t_\n51\tnonstop\t_\tNOUN\tNN\t_\t46\tconj\t_\t_\n52\tto\t_\tADP\tTO\t_\t54\tcase\t_\t_\n53\tLas\t_\tPROPN\tNNP\t_\t54\tcompound\t_\t_\n54\tVegas\t_\tPROPN\tNNP\t_\t51\tnmod\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthose\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\troutes\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tbegin\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tuntil\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tJan\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsupposed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tsend\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tAmerica\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tanother\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\t757\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\ttwin-engine\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\taircraft\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n14\tas\t_\tADV\tRB\t_\t13\tcc\t_\t_\n15\twell\t_\tADV\tRB\t_\t14\tmwe\t_\t_\n16\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\t737\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n19\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tend\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThose\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\talmost\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tcertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tarrive\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tlate\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpoint\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n5\tno\t_\tDET\tDT\t_\t9\tneg\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tAmerica\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tflights\t_\tNOUN\tNNS\t_\t32\tnsubjpass\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tincluding\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tservice\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tSan\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tAntonio\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tTexas\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n21\tNewark\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tN.J.\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n24\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n26\tPalmdale\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tCalif.\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n30\thave\t_\tAUX\tVBP\t_\t32\taux\t_\t_\n31\tbeen\t_\tAUX\tVBN\t_\t32\tauxpass\t_\t_\n32\taffected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n33\tby\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdelays\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tBoeing\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tdeliveries\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\treaction\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tunderscores\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tdomino\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\teffect\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tthat\t_\tADP\tIN\t_\t19\tdobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\thuge\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmanufacturer\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tsuch\t_\tADJ\tJJ\t_\t17\tcase\t_\t_\n16\tas\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tBoeing\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tcan\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\thave\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n20\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tother\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tparts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\teconomy\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tsure\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\thelp\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmachinists\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tput\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n10\tadded\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpressure\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tfeel\t_\tVERB\tVB\t_\t31\tccomp\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\treally\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tstand\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\twant\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tprolonged\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\twalkout\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n21\tTom\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tBaker\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tMachinists\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t'\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tDistrict\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\t751\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tinterview\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tyesterday\t_\tNOUN\tNN\t_\t31\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tcustomers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tlike\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tvery\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tmuch\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAmerica\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWest\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tthough\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmaller\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\tairline\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\ttherefore\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\taffected\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n14\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tdelayed\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdelivery\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsingle\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tplane\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tthan\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n23\tmany\t_\tADJ\tJJ\t_\t28\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tcompetitors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tbe\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfigure\t_\tVERB\tVBP\t_\t33\tccomp\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tAmerican\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tUnited\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tprobably\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\thave\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n10\tsuch\t_\tDET\tPDT\t_\t13\tdet:predet\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\thard\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tcounting\t_\tVERB\tVBG\t_\t13\tdep\t_\t_\n15\tall\t_\tDET\tPDT\t_\t17\tdet:predet\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tplanes\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tfleets\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n23\tmight\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\tnot\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tmiss\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n26\tone\t_\tNUM\tCD\t_\t25\tdobj\t_\t_\n27\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tall\t_\tDET\tDT\t_\t25\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n31\tMr.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tOtradovec\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trandom\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcheck\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\tdid\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tindicate\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstrike\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twas\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\thaving\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n17\tmuch\t_\tADJ\tJJ\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\teffect\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tairline\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\toperations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSouthwest\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAirlines\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBoeing\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\t737-300\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n7\tset\t_\tNOUN\tNN\t_\t6\tamod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdelivery\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tend\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmonth\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n17\texpects\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\thave\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tplane\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\ttime\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tclose\t_\tADV\tRB\t_\t21\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tcompletion\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tBoeing\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n10\t's\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\ttold\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n12\tus\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tthere\t_\tPRON\tEX\t_\t18\texpl\t_\t_\n14\two\t_\tAUX\tMD\t_\t18\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n16\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tproblem\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tSouthwest\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tspokesman\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tAMR\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tBoeing\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tassured\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n10\tAmerican\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAirlines\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tdeliver\t_\tVERB\tVB\t_\t9\tdep\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\t757\t_\tPROPN\tNNP\t_\t14\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tlater\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmonth\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAmerican\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tpreparing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tdelivery\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tanother\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\t757\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tearly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tDecember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\t20\t_\tNUM\tCD\t_\t5\tconj\t_\t_\n15\tmore\t_\tADJ\tJJR\t_\t14\tadvmod\t_\t_\n16\tnext\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tanticipating\t_\tVERB\tVBG\t_\t3\tconj\t_\t_\n22\tany\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tchanges\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthat\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttimetable\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tSeattle\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBoeing\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tspokesman\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\texplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n12\tbeen\t_\tVERB\tVBN\t_\t15\tcop\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tconstant\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcommunication\t_\tNOUN\tNN\t_\t7\tccomp\t_\t_\n16\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tall\t_\tDET\tDT\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tcustomers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n25\timpossible\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tpredict\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\twhat\t_\tPRON\tWP\t_\t30\tdet\t_\t_\n29\tfurther\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tdisruptions\t_\tNOUN\tNNS\t_\t33\tnsubjpass\t_\t_\n31\tmight\t_\tAUX\tMD\t_\t33\taux\t_\t_\n32\tbe\t_\tAUX\tVB\t_\t33\tauxpass\t_\t_\n33\ttriggered\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n34\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tstrike\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tsupervisors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tnon-striking\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\temployees\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tfinish\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tsome\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t40\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\taircraft\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n16\tmostly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t747\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\t767\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tjumbo\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tjets\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n22\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tEverett\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tWash.\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tplant\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n31\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n32\tthat\t_\tPRON\tWDT\t_\t36\tnsubjpass\t_\t_\n33\twere\t_\tAUX\tVBD\t_\t36\tauxpass\t_\t_\n34\tall\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n35\tbut\t_\tADV\tRB\t_\t34\tmwe\t_\t_\n36\tcompleted\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n37\tbefore\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\twalkout\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t8\tnsubjpass\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tdelivered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfifth\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tplane\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\t747-400\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\twas\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n18\tsupposed\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\tbe\t_\tAUX\tVB\t_\t21\tauxpass\t_\t_\n21\tflown\t_\tVERB\tVBN\t_\t18\txcomp\t_\t_\n22\tout\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tweekend\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tAir\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tChina\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tdate\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n4\tyet\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\tauxpass\t_\t_\n6\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n9\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbargaining\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttable\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twant\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tmake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tknow\t_\tVERB\tVBP\t_\t5\txcomp\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\twant\t_\tVERB\tVBP\t_\t8\tccomp\t_\t_\n12\tbefore\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tcome\t_\tVERB\tVBP\t_\t11\tadvcl\t_\t_\n15\tback\t_\tADP\tRP\t_\t14\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tDoug\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHammond\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfederal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmediator\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\twho\t_\tPRON\tWP\t_\t29\tnsubj\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n27\tbeen\t_\tVERB\tVBN\t_\t29\tcop\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tcontact\t_\tNOUN\tNN\t_\t24\tacl:relcl\t_\t_\n30\twith\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tboth\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tsides\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\tsince\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tstrike\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\tbegan\t_\tVERB\tVBD\t_\t29\tadvcl\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcommunity\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tone\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n10\tanticipating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tspeedy\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tresolution\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThough\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n2\tBoeing\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tbattered\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n8\talong\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\tactually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\trisen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tlast\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tweeks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\ton\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tstrength\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tnew\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\torders\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\ttaken\t_\tVERB\tVBN\t_\t34\tccomp\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tviews\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlabor\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tsituation\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tget\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tsettled\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tshort\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tterm\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n22\tthings\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tlook\t_\tVERB\tVBP\t_\t15\tconj\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\trosy\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tBoeing\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tlong\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tterm\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n34\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n35\tHoward\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tRubel\t_\tPROPN\tNNP\t_\t34\tnsubj\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tan\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tanalyst\t_\tNOUN\tNN\t_\t36\tappos\t_\t_\n40\tat\t_\tADP\tIN\t_\t44\tcase\t_\t_\n41\tCyrus\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tJ.\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tLawrence\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tInc\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t4\t_\tNUM\tCD\t_\t4\tdobj\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tclose\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t57.375\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcomposite\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tYork\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tStock\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tExchange\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBaker\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tthinks\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t17\tnsubj\t_\t_\n8\tearliest\t_\tADV\tRBS\t_\t7\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpact\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tstruck\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n14\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tend\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmonth\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\thinting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tunion\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n28\tmay\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tresume\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n30\tnegotiations\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\tas\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tearly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n33\tas\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthis\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tweek\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tpossible\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstrike\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tlast\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tconsiderably\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tlonger\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\texpect\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\timmediate\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tresolution\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tanything\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tBoeing\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tChairman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tFrank\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tShrontz\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tstriking\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n10\tworkers\t_\tNOUN\tNNS\t_\t8\tiobj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tletter\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tsaying\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tmy\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tknowledge\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\tBoeing\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\trepresents\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\tbest\t_\tADJ\tJJS\t_\t29\tamod\t_\t_\n27\toverall\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tthree-year\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcontract\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n31\tany\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\tmajor\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\tU.S.\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tindustrial\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tfirm\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\trecent\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\thistory\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBaker\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tletter\t_\tNOUN\tNN\t_\t31\tdep\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\toffer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n13\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\t10\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\t%\t_\tSYM\tNN\t_\t18\tamod\t_\t_\n17\twage\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tincrease\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tover\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tlife\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpact\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n26\tplus\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n27\tbonuses\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n30\tvery\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tweak\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tmiscalculated\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tunion\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tresolve\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tworkers\t_\tNOUN\tNNS\t_\t15\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdisgust\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tbeing\t_\tAUX\tVBG\t_\t18\tauxpass\t_\t_\n18\tforced\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\twork\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tovertime\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tseparate\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdevelopments\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n6\tTalks\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tbroken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\toff\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tMachinists\t_\tPROPN\tNNPS\t_\t12\tcompound\t_\t_\n12\trepresentatives\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tLockheed\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n18\tCalabasas\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tCalif.\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\taerospace\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tcontinuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\twork\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthrough\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\texpired\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\tplanned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tstrike\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tvote\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tSunday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n12\tthat\t_\tADP\tIN\t_\t15\tnsubjpass\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tpushed\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n16\tback\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tindefinitely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n2\tUnited\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tAuto\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tWorkers\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tLocal\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\t1069\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\trepresents\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n10\t3,000\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tworkers\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tBoeing\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\thelicopter\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tunit\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tDelaware\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCounty\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tPa.\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tagreed\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\textend\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tcontract\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tday-by-day\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tbasis\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\t10-day\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tnotification\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tcancel\t_\tVERB\tVB\t_\t38\tacl\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n42\twhile\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n43\tit\t_\tPRON\tPRP\t_\t44\tnsubj\t_\t_\n44\tcontinues\t_\tVERB\tVBZ\t_\t27\tadvcl\t_\t_\n45\tbargaining\t_\tVERB\tVBG\t_\t44\txcomp\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccord\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\texpired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tyesterday\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\tBoeing\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\treceived\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\torder\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tMartinair\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHolland\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tfour\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n16\tmodel\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\t767-300\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\twide-body\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tjetliners\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n20\tvalued\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\ttotal\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tabout\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n27\t326\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplanes\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tlong\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\trange\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tversions\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tmedium-haul\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttwin-jet\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tdelivered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tPratt\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n17\t&\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tWhitney\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tPW4060\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tengines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tPratt\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tWhitney\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tUnited\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tTechnologies\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tInc\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMartinair\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHolland\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAmsterdam\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBoeing\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokeswoman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdelivery\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tdate\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tplanes\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n12\tstill\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tbeing\t_\tAUX\tVBG\t_\t14\tauxpass\t_\t_\n14\tworked\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n15\tout\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tvariety\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\treasons\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tnot\t_\tADV\tRB\t_\t28\tneg\t_\t_\n25\tbecause\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tof\t_\tADP\tIN\t_\t25\tmwe\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tstrike\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBridget\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tO'Brian\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tarticle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAtco\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLtd.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\tutilities\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tarm\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tconsidering\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\tbuilding\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\telectric\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tpower\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tplants\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tsome\t_\tDET\tDT\t_\t13\tappos\t_\t_\n16\tvalued\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t21\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\tone\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tCanadian\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdollars\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t25\tpunct\t_\t_\n25\tUS$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n26\t851\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t-RRB-\t_\tPUNCT\t-RRB-\t_\t25\tpunct\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tGreat\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tBritain\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\telsewhere\t_\tADV\tRB\t_\t32\tconj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tC.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRichardson\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tAtco\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tsenior\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tvice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tfinance\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n14\t50.1%-owned\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n15\tCanadian\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tUtilities\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tLtd.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tunit\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n20\treviewing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n21\tcogeneration\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tprojects\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\teastern\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n28\tconventional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n29\telectric\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tpower\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\tgenerating\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tplants\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n33\telsewhere\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tincluding\t_\tVERB\tVBG\t_\t36\tcase\t_\t_\n36\tBritain\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\twhere\t_\tADV\tWRB\t_\t42\tadvmod\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tBritish\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tgovernment\t_\tNOUN\tNN\t_\t42\tnsubj\t_\t_\n42\tplans\t_\tNOUN\tNNS\t_\t36\tacl:relcl\t_\t_\n43\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n44\tallow\t_\tVERB\tVB\t_\t42\txcomp\t_\t_\n45\tlimited\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n46\tcompetition\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n47\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\telectrical\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\tgeneration\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n50\tfrom\t_\tADP\tIN\t_\t52\tcase\t_\t_\n51\tprivate-sector\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tsuppliers\t_\tNOUN\tNNS\t_\t46\tnmod\t_\t_\n53\tas\t_\tADP\tIN\t_\t54\tcase\t_\t_\n54\tpart\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n55\tof\t_\tADP\tIN\t_\t58\tcase\t_\t_\n56\tits\t_\tPRON\tPRP$\t_\t58\tnmod:poss\t_\t_\n57\tprivatization\t_\tNOUN\tNN\t_\t58\tcompound\t_\t_\n58\tprogram\t_\tNOUN\tNN\t_\t54\tnmod\t_\t_\n59\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprojects\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t4\tcop\t_\t_\n4\tC$\t_\tSYM\t$\t_\t12\tccomp\t_\t_\n5\t1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tplus\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n10\tMr.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tRichardson\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tgo\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n7\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tthem\t_\tPRON\tPRP\t_\t6\tnmod\t_\t_\n9\talone\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tCanadian\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tUtilities\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tequity\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tstake\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n20\tsmall\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tIdeally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t'd\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\toperator\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n11\t-LCB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproject\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t-RCB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmodest\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tequity\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tinvestor\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOur\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tlong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsuit\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tour\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tproven\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tability\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\toperate\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tpower\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tplants\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRichardson\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\toffer\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tspecifics\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tregarding\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n8\tAtco\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tVERB\tVBZ\t_\t8\tcase\t_\t_\n10\tproposed\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n11\tBritish\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tproject\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tcompete\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tcustomers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n23\ttwo\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n24\thuge\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n25\tBritish\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n26\tpower\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n27\tgenerating\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcompanies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n29\tthat\t_\tPRON\tWDT\t_\t32\tnsubjpass\t_\t_\n30\twould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\tformed\t_\tVERB\tVBN\t_\t28\tacl:relcl\t_\t_\n33\tunder\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tcountry\t_\tNOUN\tNN\t_\t37\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tplan\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\tprivatize\t_\tVERB\tVB\t_\t37\tacl\t_\t_\n40\tits\t_\tPRON\tPRP$\t_\t45\tnmod:poss\t_\t_\n41\tmassive\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n42\twater\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t42\tcc\t_\t_\n44\telectric\t_\tADJ\tJJ\t_\t42\tconj\t_\t_\n45\tutilities\t_\tNOUN\tNNS\t_\t39\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBritain\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tgovernment\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\traise\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\t#\t_\tSYM\t#\t_\t10\tcompound\t_\t_\n9\t20\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tbillion\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t12\tpunct\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n13\t31.05\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t-RRB-\t_\tPUNCT\t-RRB-\t_\t12\tpunct\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsale\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tmost\t_\tADJ\tJJS\t_\t18\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n23\tgiant\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n24\twater\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\telectric\t_\tADJ\tJJ\t_\t24\tconj\t_\t_\n27\tutilities\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n29\tbeginning\t_\tVERB\tVBG\t_\t31\tcase\t_\t_\n30\tnext\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tmonth\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tplanned\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\telectric\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tutility\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tscheduled\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tnext\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n13\talone\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\traise\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\t#\t_\tSYM\t#\t_\t19\tcompound\t_\t_\n18\t13\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n21\tmaking\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tworld\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tlargest\t_\tADJ\tJJS\t_\t28\tamod\t_\t_\n27\tpublic\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\toffering\t_\tNOUN\tNN\t_\t21\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tterms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\tindependent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgenerators\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n11\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcompete\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t15\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tcustomers\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tuntil\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1994\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tanother\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t10\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t13\tconj\t_\t_\n27\tbetween\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1994\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\t1998\t_\tNUM\tCD\t_\t28\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tCanadian\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tUtilities\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\trevenue\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tC$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t1.16\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tmainly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tnatural\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tgas\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\telectric\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tutility\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tbusinesses\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAlberta\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhere\t_\tADV\tWRB\t_\t26\tadvmod\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n26\tserves\t_\tVERB\tVBZ\t_\t21\tacl:relcl\t_\t_\n27\tabout\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\t800,000\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcustomers\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmove\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n8\taround\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tworld\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tderegulate\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tgeneration\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\telectricity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tRichardson\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n24\tCanadian\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tUtilities\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\thopes\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tcapitalize\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\treal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tthrust\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tour\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tutility\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tside\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tadding\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tCanadian\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tUtilities\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\talso\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tmulling\t_\tVERB\tVBG\t_\t16\tccomp\t_\t_\n23\tprojects\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tunderdeveloped\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcountries\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n28\tthough\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n29\the\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n30\twould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n31\tbe\t_\tVERB\tVB\t_\t32\tcop\t_\t_\n32\tspecific\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tCanadian\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tUtilities\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\talone\t_\tADV\tRB\t_\t0\troot\t_\t_\n6\tin\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\texploring\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n8\tpower\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tgeneration\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\topportunities\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tBritain\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tanticipation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tprivatization\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tprogram\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tcertainly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tpower\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tgenerating\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprojects\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tEngland\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tBruce\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tStram\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tvice\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tcorporate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstrategy\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tcorporate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tplanning\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tEnron\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCorp.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tHouston\t_\tPROPN\tNNP\t_\t30\tappos\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n35\tbig\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n36\tnatural\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tgas\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tproducer\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tpipeline\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\toperator\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStram\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tEnron\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tconsidering\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tbuilding\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n8\tgas-fired\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpower\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplants\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.K.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\tcapable\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n15\tof\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tproducing\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t500\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmegawatts\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tpower\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcost\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n26\tabout\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n27\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n28\t300\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tdep\t_\t_\n31\t$\t_\tSYM\t$\t_\t24\tnmod\t_\t_\n32\t400\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPSE\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthird\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n12\t1.3\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n15\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n16\t1.7\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t14\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\tto\t_\tADP\tTO\t_\t21\tdep\t_\t_\n23\t18\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tcents\t_\tNOUN\tNNS\t_\t21\tdep\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-ago\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdesigner\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\toperator\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\tcogeneration\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\twaste\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n14\theat\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\trecovery\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplants\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincome\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t$\t_\tSYM\t$\t_\t22\tdep\t_\t_\n22\t326,000\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\tfour\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t22\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshare\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n30\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\trevenue\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tabout\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\t$\t_\tSYM\t$\t_\t31\tnmod\t_\t_\n35\t41.4\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\timprovement\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t7\tauxpass\t_\t_\n7\trelated\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\tadditional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcogeneration\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfacilities\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t15\tnsubjpass\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tput\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n16\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\toperation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCONCORDE\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\ttrans-Atlantic\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tflights\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t2,400\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tParis\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t3,200\t_\tNUM\tCD\t_\t6\tconj\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tLondon\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tCentennial\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tJournal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tarticle\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\tOct.\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n7\t5\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfares\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\treversed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDiamond\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tShamrock\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tOffshore\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tPartners\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tdiscovered\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\tgas\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\toffshore\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n11\tLouisiana\t_\tPROPN\tNNP\t_\t10\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twell\t_\tADV\tRB\t_\t3\tnsubj\t_\t_\n3\tflowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trate\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\t2.016\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tcubic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfeet\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tgas\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\t16\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\t64-inch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\topening\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n21\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tdepths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n23\tbetween\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\t5,782\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\t5,824\t_\tNUM\tCD\t_\t24\tconj\t_\t_\n27\tfeet\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDiamond\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tShamrock\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\toperator\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\t100\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t11\tamod\t_\t_\n11\tinterest\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\twell\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tDiamond\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tShamrock\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tOffshore\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tstock\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t12.5\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tclose\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t8.25\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tStock\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tExchange\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tcomposite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttrading\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tKaufman\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tBroad\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tformed\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n10\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n11\t53.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tlimited\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tpartnership\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsubsidiary\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tbuy\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tland\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tCalifornia\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tsuitable\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tresidential\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdevelopment\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpartnership\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tKaufman\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tBroad\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\tLand\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tDevelopment\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tVenture\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tLimited\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPartnership\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t50-50\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tjoint\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tventure\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttrust\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tcreated\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tinstitutional\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tclients\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tHeitman\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tAdvisory\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCorp.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tunit\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n32\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tHeitman\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tFinancial\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCorp.\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n38\treal\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n39\testate\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n40\tadvisory\t_\tNOUN\tNN\t_\t45\tcompound\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n42\tmanagement\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n44\tdevelopment\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n45\tcompany\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n46\twith\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\toffices\t_\tNOUN\tNNS\t_\t45\tnmod\t_\t_\n48\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n49\tChicago\t_\tPROPN\tNNP\t_\t47\tnmod\t_\t_\n50\tand\t_\tCONJ\tCC\t_\t49\tcc\t_\t_\n51\tBeverly\t_\tPROPN\tNNP\t_\t52\tcompound\t_\t_\n52\tHills\t_\tPROPN\tNNP\t_\t49\tconj\t_\t_\n53\t,\t_\tPUNCT\t,\t_\t52\tpunct\t_\t_\n54\tCalif\t_\tPROPN\tNNP\t_\t52\tappos\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tKaufman\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tBroad\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\thome\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tbuilding\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tidentify\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tinstitutional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tland\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tpurchased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tjoint\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tventure\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\tyet\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tzoning\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tapprovals\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\trequired\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n19\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tdevelopment\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tpart\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n24\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\tKaufman\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n26\t&\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tBroad\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n28\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n29\tjob\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\twill\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\tbe\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tobtain\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n34\tsuch\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tapprovals\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpartnership\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\truns\t_\tVERB\tVBZ\t_\t38\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\trisk\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tnot\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tget\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tapprovals\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdevelopment\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\treturn\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\tcan\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tbuy\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n23\tland\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\twholesale\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\trather\t_\tADV\tRB\t_\t25\tcc\t_\t_\n27\tthan\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tretail\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n29\tprices\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n31\twhich\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n32\tcan\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\tresult\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tsizable\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tsavings\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n38\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n39\tBruce\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tKaratz\t_\tPROPN\tNNP\t_\t38\tnsubj\t_\t_\n41\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n42\tpresident\t_\tNOUN\tNN\t_\t40\tappos\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t42\tcc\t_\t_\n44\tchief\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n45\texecutive\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n46\tofficer\t_\tNOUN\tNN\t_\t42\tconj\t_\t_\n47\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tKaufman\t_\tPROPN\tNNP\t_\t42\tnmod\t_\t_\n49\t&\t_\tCONJ\tCC\t_\t48\tcc\t_\t_\n50\tBroad\t_\tPROPN\tNNP\t_\t48\tconj\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t38\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\treally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\thave\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n10\tadequate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcapital\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tproperties\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\traw\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstate\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcash\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTypically\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tdevelopers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\toption\t_\tVERB\tVBP\t_\t21\tccomp\t_\t_\n5\tproperty\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n8\tthen\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n9\tonce\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tget\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tadministrative\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tapprovals\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tbuy\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t17\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tKaratz\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tadding\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\the\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tbelieves\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tjoint\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tventure\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n32\tis\t_\tVERB\tVBZ\t_\t34\tcop\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tfirst\t_\tADJ\tJJ\t_\t28\tccomp\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tits\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\tkind\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tusually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\toperate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tconservative\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmanner\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tBy\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tsetting\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n3\tup\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tjoint\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tventure\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\tKaufman\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tBroad\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\tcan\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t35\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\taggressive\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tapproach\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tof\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tbuying\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\traw\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tland\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tavoiding\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tnegative\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\timpacts\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n29\town\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tbalance\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tsheet\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n33\tMr.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tKaratz\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tputting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tonly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t10\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcapital\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\talthough\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tresponsible\t_\tADJ\tJJ\t_\t4\tadvcl\t_\t_\n17\tfor\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tproviding\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tmanagement\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tplanning\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\tprocessing\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n24\tservices\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tjoint\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tventure\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tone\t_\tNUM\tCD\t_\t30\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tways\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tassure\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpipeline\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tland\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tfuel\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n17\tour\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tgrowth\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tminimum\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\trisk\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n23\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n24\tour\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcompany\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n28\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tKaratz\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tplastics\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\ttook\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n7\toff\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tQuantum\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tChemical\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp.\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\talong\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tride\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttiming\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tQuantum\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tJohn\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tHoyt\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStookey\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n16\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n17\tnothing\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n18\tless\t_\tADV\tRBR\t_\t17\tamod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinspired\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\tbecause\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n24\thad\t_\tAUX\tVBD\t_\t26\taux\t_\t_\n25\tjust\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tincreased\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n27\tQuantum\t_\tPROPN\tNNP\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\treliance\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tplastics\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\toutpaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmuch\t_\tADJ\tJJ\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tchemical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tindustry\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tannual\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tprofit\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tgrew\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n13\tfivefold\t_\tADJ\tJJ\t_\t12\tadvmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStookey\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tboom\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n9\tIt\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tgoing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlast\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\twhole\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tlot\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n17\tlonger\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n18\tthan\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n19\tanybody\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tthinks\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tnose-dived\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tplummeting\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsecurities\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tno\t_\tADV\tRB\t_\t8\tneg\t_\t_\n8\tbetter\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tbreak-even\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n11\tresults\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tthird\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tprofit\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t99.8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t3.92\t_\tNUM\tCD\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n35\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tsales\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\t$\t_\tSYM\t$\t_\t36\tnmod\t_\t_\n39\t724.4\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\tmillion\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\thaving\t_\tAUX\tVBG\t_\t5\taux\t_\t_\n5\tlost\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n6\tnearly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tnummod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tvalue\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tsince\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tSept.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t1\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n16\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t34.375\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\tdown\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n24\t1.125\t_\tNUM\tCD\t_\t22\tnmod:npmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n26\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n27\tNew\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n28\tYork\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n29\tStock\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tExchange\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tcomposite\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\ttrading\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n33\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdegree\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tQuantum\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\trepresents\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\ttimes\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tarrived\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tproducers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tso-called\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcommodity\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tplastics\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\tpervade\t_\tVERB\tVBP\t_\t19\tacl:relcl\t_\t_\n22\tmodern\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tlife\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHaving\t_\tAUX\tVBG\t_\t3\taux\t_\t_\n2\tjust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tpassed\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n4\tthrough\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tone\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tmost\t_\tADV\tRBS\t_\t9\tadvmod\t_\t_\n9\tprofitable\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tperiods\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\thistory\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tthese\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tproducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\tnow\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\teroding\t_\tVERB\tVBG\t_\t18\tdep\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tPricing\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tcycles\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tnothing\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tplastics\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n13\tproducers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdecline\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsome\t_\tDET\tDT\t_\t4\tnmod\t_\t_\n7\tlooks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tsteep\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tcomparison\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\theady\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n18\tjust\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tbehind\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t15\tacl:relcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tall\t_\tDET\tDT\t_\t6\tdep\t_\t_\n5\twonderful\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\theroes\t_\tNOUN\tNNS\t_\t11\tccomp\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\texecutive\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n14\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tone\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tQuantum\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tcompetitors\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tNow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbottom\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\theap\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tQuantum\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttrouble\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\tmagnified\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\theavy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tdependence\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tplastics\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOnce\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tknown\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n3\tas\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tNational\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tDistillers\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tChemical\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCorp.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\texited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\twine\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tspirits\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tbusiness\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n19\tplowed\t_\tVERB\tVBD\t_\t12\tconj\t_\t_\n20\tmore\t_\tADJ\tJJR\t_\t19\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tresources\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tplastics\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\tafter\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tStookey\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\ttook\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tchief\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\texecutive\t_\tNOUN\tNN\t_\t34\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tjob\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t1986\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStookey\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t59\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\told\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tinterviewed\t_\tVERB\tVBN\t_\t8\txcomp\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tarticle\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n17\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tconsistently\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\targued\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n22\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tlong\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thaul\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n27\tacross\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tboth\t_\tDET\tDT\t_\t30\tcc:preconj\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpeaks\t_\tNOUN\tNNS\t_\t41\tdep\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\ttroughs\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tplastics\t_\tNOUN\tNNS\t_\t37\tcompound\t_\t_\n37\tmarket\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n38\t--\t_\tPUNCT\t:\t_\t30\tpunct\t_\t_\n39\tQuantum\t_\tPROPN\tNNP\t_\t41\tnsubj\t_\t_\n40\twill\t_\tAUX\tMD\t_\t41\taux\t_\t_\n41\tprosper\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n42\tthrough\t_\tADP\tIN\t_\t45\tcase\t_\t_\n43\tits\t_\tPRON\tPRP$\t_\t45\tnmod:poss\t_\t_\n44\tnew\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tdirection\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tlot\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\tmostly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\ttied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tpolyethylene\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tresin\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tused\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tgarbage\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbags\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tmilk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tjugs\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\thousewares\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\ttoys\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n24\tmeat\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tpackaging\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n27\tamong\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tother\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\titems\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tpolyethylene\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tclaimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlargest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tcompetitors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n5\tincluding\t_\tVERB\tVBG\t_\t8\tcase\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tChemical\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tUnion\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tCarbide\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tseveral\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\toil\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tgiants\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\tmuch\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tbroader\t_\tADJ\tJJR\t_\t22\tamod\t_\t_\n21\tbusiness\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tinterests\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n24\tso\t_\tADV\tRB\t_\t18\tcc\t_\t_\n25\tare\t_\tAUX\tVBP\t_\t27\tauxpass\t_\t_\n26\tbetter\t_\tADV\tRBR\t_\t27\tadvmod\t_\t_\n27\tcushioned\t_\tVERB\tVBN\t_\t18\tconj\t_\t_\n28\tagainst\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tprice\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tswings\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tpolyethylene\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tmoves\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tmere\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpenny\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpound\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tQuantum\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tannual\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tfluctuates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\t85\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\tprovided\t_\tVERB\tVBN\t_\t30\tmark\t_\t_\n26\tno\t_\tDET\tDT\t_\t28\tneg\t_\t_\n27\tother\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tvariables\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n29\tare\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n30\tchanging\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmonths\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tpolyethylene\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n9\teven\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmore\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tthat\t_\tPRON\tDT\t_\t10\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcommodity\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tplastics\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdive\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tBenchmark\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tgrades\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsold\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n7\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tas\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t11\tadvmod\t_\t_\n10\tas\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n11\t50\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpound\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\tlast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tspring\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\tskidded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t23\tamod\t_\t_\n22\t35\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tcents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\t40\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tprice\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tethylene\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tchemical\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tbuilding\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tblock\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tpolyethylene\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tdropped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tnearly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tfast\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdiscrepancy\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\thurts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tQuantum\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tbadly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\town\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tplants\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tcover\t_\tVERB\tVBP\t_\t3\tadvcl\t_\t_\n12\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\thalf\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tethylene\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tneeds\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\taccounts\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tearly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thint\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trout\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmaking\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tstart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tChina\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\taux\t_\t_\n6\tputting\t_\tVERB\tVBG\t_\t1\tacl:relcl\t_\t_\n7\tin\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\thuge\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\torders\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tpolyethylene\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n13\tabruptly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\thalted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthem\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tCalculating\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n2\tthat\t_\tDET\tDT\t_\t8\tmark\t_\t_\n3\texcess\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpolyethylene\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n6\tsoon\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tsloshing\t_\tVERB\tVBG\t_\t1\tccomp\t_\t_\n9\taround\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbuyers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tthen\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbet\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n19\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n20\tpeaked\t_\tADJ\tJJ\t_\t16\tccomp\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n22\tso\t_\tADV\tRB\t_\t16\tcc\t_\t_\n23\tbegan\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tdraw\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tdown\t_\tADP\tRP\t_\t25\tcompound:prt\t_\t_\n27\tinventories\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n28\trather\t_\tADV\tRB\t_\t25\tcc\t_\t_\n29\tthan\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\torder\t_\tVERB\tVB\t_\t25\tconj\t_\t_\n31\tnew\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tproduct\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tKenneth\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMitchell\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tDow\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tpolyethylene\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tproducers\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n13\twere\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tsurprised\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlearn\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\thow\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n18\tmuch\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\tinventories\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\thad\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\tswelled\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n22\tthroughout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tdistribution\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchain\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\tprices\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tspiraled\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n29\tup\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tPeople\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thoarding\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n6\tbags\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tproducers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\thit\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n7\tbottom\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tincreases\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpound\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttake\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n13\teffect\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tnext\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tseveral\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tweeks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tone\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tknows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\twhether\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tposted\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tstick\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n14\tonce\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tproducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tcustomers\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\tstart\t_\tVERB\tVBP\t_\t13\tadvcl\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\thaggle\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tdoubter\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tGeorge\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tKrug\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tchemical-industry\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tanalyst\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOppenheimer\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tCo.\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbear\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tplastics\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNoting\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n2\tothers\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\testimates\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\tof\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tincreases\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tsustained\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tremarks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n17\tSome\t_\tDET\tDT\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n19\tOctober\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tNovember\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\t1992\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n4\tefforts\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tfirm\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tundermined\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tproducers\t_\tNOUN\tNNS\t_\t15\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tplans\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\texpand\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tproduction\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcapacity\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tquick\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tturnaround\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tcrucial\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tcash\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trequirements\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tremain\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n13\theavy\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcarry\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tout\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n9\tthree-year\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n12\t1.3\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tplant-expansion\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n16\tstarted\t_\tVERB\tVBD\t_\t15\tacl\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpayments\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tlong-term\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n15\tdouble\t_\tVERB\tVB\t_\t0\troot\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tago\t_\tADV\tRB\t_\t15\tadvcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n21\tabout\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n23\t240\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n26\tlargely\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n27\tbecause\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tof\t_\tADP\tIN\t_\t27\tmwe\t_\t_\n29\tdebt\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n30\ttaken\t_\tVERB\tVBN\t_\t29\tacl\t_\t_\n31\ton\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tpay\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n34\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n35\t$\t_\tSYM\t$\t_\t38\tamod\t_\t_\n36\t50-a-share\t_\tADJ\tJJ\t_\t35\tdep\t_\t_\n37\tspecial\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tdividend\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n39\tearlier\t_\tADV\tRBR\t_\t41\tadvmod\t_\t_\n40\tthis\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tyear\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdescribed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tpayout\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttime\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tway\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tshare\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbonanza\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tholders\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\tbecause\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tprice\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\treflecting\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\thuge\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tprofit\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tincreases\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpayment\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teffort\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdispel\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n12\ttakeover\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tspeculation\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhether\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcash\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcrunch\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tmight\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\teventually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tforce\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tcut\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tquarterly\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdividend\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\traised\t_\tVERB\tVBD\t_\t14\tacl\t_\t_\n17\t36\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\t75\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\tonly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tnummod\t_\t_\n26\tyear\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n27\tago\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\thas\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\ttopic\t_\tNOUN\tNN\t_\t30\txcomp\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tintense\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tspeculation\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tWall\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tStreet\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\tsince\t_\tSCONJ\tIN\t_\t42\tmark\t_\t_\n40\tMr.\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tStookey\t_\tPROPN\tNNP\t_\t42\tnsubj\t_\t_\n42\tdeflected\t_\tVERB\tVBD\t_\t30\tadvcl\t_\t_\n43\tdividend\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tquestions\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n45\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n46\ta\t_\tDET\tDT\t_\t49\tdet\t_\t_\n47\tSept.\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n48\t29\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n49\tmeeting\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n50\twith\t_\tADP\tIN\t_\t51\tcase\t_\t_\n51\tanalysts\t_\tNOUN\tNNS\t_\t49\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tviewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tresponse\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdirectors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\treview\t_\tVERB\tVB\t_\t4\tdep\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdividend\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tregularly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tnothing\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n17\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tstandard\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tline\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\texecutives\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tothers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\taway\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tthinking\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n6\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tgiven\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n9\tsomething\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tless\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tusual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tstraight-from-the-shoulder\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tperformance\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmeeting\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tQuantum\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tshares\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t2.625\t_\tNUM\tCD\t_\t15\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t36.625\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tBig\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tBoard\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\ttrading\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\ttop\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\teverything\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\telse\t_\tADV\tRB\t_\t4\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tconfronts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdisaster\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tplant\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tMorris\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tIll\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texplosion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tidled\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplant\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJune\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tprogressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tSeptember\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n16\twithin\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n17\t12\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\thours\t_\tNOUN\tNNS\t_\t12\tadvcl\t_\t_\n19\tof\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tcompleting\t_\tVERB\tVBG\t_\t18\tnmod\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tdrawn-out\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tprocess\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tof\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\trestarting\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t25\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsecond\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\texplosion\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\toccurred\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tworkers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsix\t_\tNUM\tCD\t_\t6\tnsubj\t_\t_\n6\tremain\t_\tVERB\tVBP\t_\t3\tconj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\thospital\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\thuman\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttoll\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tmost\t_\tADV\tRBS\t_\t7\tadvmod\t_\t_\n7\tpainful\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdimension\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tyet\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsudden\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchange\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tQuantum\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tfortunes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n9\tsteadily\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tlowering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\taccident\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\tpicking\t_\tVERB\tVBG\t_\t10\tconj\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\ttrade-group\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tsafety\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tawards\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tprolonged\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\thalt\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tplant\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tintroduce\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tanother\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\timponderable\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tinto\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tQuantum\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tfinancial\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfuture\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tplant\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\taux\t_\t_\n7\trunning\t_\tVERB\tVBG\t_\t24\tadvcl\t_\t_\n8\tflat\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tmeet\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n12\tdemand\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n14\tcalculating\t_\tVERB\tVBG\t_\t24\tcsubj\t_\t_\n15\tlost\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tthus\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\tclaims\t_\tNOUN\tNNS\t_\t16\tdep\t_\t_\n20\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tbusiness-interruption\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tinsurance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tstraightforward\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tnumbers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tbecome\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\ttrickier\t_\tADJ\tJJR\t_\t4\txcomp\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tsubject\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tdickering\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tinsured\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tinsurer\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n17\tdemand\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tshifting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t20\tccomp\t_\t_\n4\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tsold\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tX\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpercent\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tproduct\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tY\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tpercent\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tthat\t_\tPRON\tDT\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\trecalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tTheodore\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tSemegran\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tanalyst\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tShearson\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tLehman\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tHutton\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\twho\t_\tPRON\tWP\t_\t31\tnsubj\t_\t_\n31\twent\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n32\tthrough\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthis\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\texercise\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tduring\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\this\t_\tPRON\tPRP$\t_\t38\tnmod:poss\t_\t_\n37\tformer\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tcareer\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n39\tas\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tchemical\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tengineer\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\tthen\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tyou\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tnegotiate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\thopes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tMorris\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tplant\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhere\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n8\tlimited\t_\tVERB\tVBN\t_\t9\tamod\t_\t_\n9\tproduction\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tgot\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n11\tunder\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tway\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tweek\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tresume\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n18\tfull\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\toperation\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tend\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplant\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tusually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\taccounts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\t20\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t10\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tQuantum\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tpolyethylene\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tproduction\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\t50\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tethylene\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tproduction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\teverything\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tlooks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tgrim\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tQuantum\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tplant\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\texpansion\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tshould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tstrengthen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tsway\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tpolyethylene\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tbusiness\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhere\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n19\toften\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\ttaken\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n21\tthrough\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tsheer\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcapacity\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBy\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tlifting\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n3\tethylene\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tproduction\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\texpansion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\talso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tlower\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\traw\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tmaterial\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcosts\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tQuantum\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\ttightening\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tgrip\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n9\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tlarge\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbusiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\toutside\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tchemicals\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tpropane\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarketing\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThrough\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tventure\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tinvestment\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbanker\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tFirst\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tBoston\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tQuantum\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tcompleted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tAugust\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tacquisition\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tPetrolane\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\ttransaction\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\tvalued\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n26\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n28\t1.18\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tbillion\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tPetrolane\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tsecond-largest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tpropane\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tdistributor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlargest\t_\tADJ\tJJS\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tSuburban\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPropane\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n8\talready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\towned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tQuantum\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tQuantum\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcrisis\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tpast\t_\tADP\tIN\t_\t8\tnmod\t_\t_\n10\tright\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tspeculate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tweakening\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tyet\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tattract\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsuitor\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tname\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tsurfacing\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\trumors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\tBritish\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tPetroleum\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n13\tlooking\t_\tVERB\tVBG\t_\t9\tacl:relcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\texpand\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tpolyethylene\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tbusiness\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n2\tabout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbid\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tQuantum\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tBP\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tspokesman\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n14\tWe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n15\tpretty\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tmuch\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\thave\t_\tVERB\tVBP\t_\t11\tdep\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tpolicy\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tnot\t_\tADV\tRB\t_\t22\tneg\t_\t_\n22\tcommenting\t_\tVERB\tVBG\t_\t19\tacl\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\trumors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n27\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tthink\t_\tVERB\tVBP\t_\t17\tconj\t_\t_\n29\tthat\t_\tADP\tIN\t_\t30\tnsubj\t_\t_\n30\tfalls\t_\tVERB\tVBZ\t_\t28\tccomp\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthat\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcategory\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tRJR\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tNabisco\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tdisbanding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tdivision\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tresponsible\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tbuying\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n11\tnetwork\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tadvertising\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tjust\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tnummod\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n18\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n19\tmoving\t_\tVERB\tVBG\t_\t17\tdep\t_\t_\n20\t11\t_\tNUM\tCD\t_\t19\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tgroup\t_\tNOUN\tNN\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\t14\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\temployees\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tNew\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tYork\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n30\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tAtlanta\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tamod\t_\t_\n6\tYork-based\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfood\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\ttobacco\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tgiant\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\ttaken\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n13\tprivate\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\tearlier\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n20\t25\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n22\tleveraged\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbuy-out\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tKohlberg\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tKravis\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tRoberts\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n28\t&\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tCo.\t_\tPROPN\tNNP\t_\t27\tconj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n31\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\tis\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n35\tshutting\t_\tVERB\tVBG\t_\t31\tccomp\t_\t_\n36\tdown\t_\tADP\tRP\t_\t35\tcompound:prt\t_\t_\n37\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n38\tRJR\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n39\tNabisco\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n40\tBroadcast\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tunit\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n44\tdismissing\t_\tVERB\tVBG\t_\t35\tconj\t_\t_\n45\tits\t_\tPRON\tPRP$\t_\t47\tnmod:poss\t_\t_\n46\t14\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n47\temployees\t_\tNOUN\tNNS\t_\t44\tdobj\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n49\tin\t_\tADP\tIN\t_\t51\tcase\t_\t_\n50\ta\t_\tDET\tDT\t_\t51\tdet\t_\t_\n51\tmove\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n52\tto\t_\tPART\tTO\t_\t53\tmark\t_\t_\n53\tsave\t_\tVERB\tVB\t_\t51\tacl\t_\t_\n54\tmoney\t_\tNOUN\tNN\t_\t53\tdobj\t_\t_\n55\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tRJR\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tdiscussing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tnetwork-buying\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tplans\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n13\tmain\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tadvertising\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tFCB/Leber\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tKatz\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tMcCann\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tErickson\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfound\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n4\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsize\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tour\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tmedia\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tpurchases\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tad\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tagency\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tdo\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n17\tjust\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tjob\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tsignificantly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tlower\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n25\tcost\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tspokesman\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\twho\t_\tPRON\tWP\t_\t33\tnsubj\t_\t_\n33\tdeclined\t_\tVERB\tVBD\t_\t30\tacl:relcl\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tspecify\t_\tVERB\tVB\t_\t33\txcomp\t_\t_\n36\thow\t_\tADV\tWRB\t_\t37\tadvmod\t_\t_\n37\tmuch\t_\tADJ\tJJ\t_\t39\tadvmod\t_\t_\n38\tRJR\t_\tPROPN\tNNP\t_\t39\tnsubj\t_\t_\n39\tspends\t_\tVERB\tVBZ\t_\t35\tccomp\t_\t_\n40\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tnetwork\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n42\ttelevision\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\ttime\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAn\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tclose\t_\tADV\tRB\t_\t2\tamod\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tRJR\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tspending\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n11\tabout\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n13\t140\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tnetwork\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\ttelevision\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\troughly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n26\t200\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t25\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbroadcast\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tunit\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t9\tauxpass\t_\t_\n9\tdisbanded\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n10\tDec.\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t1\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmove\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n16\two\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\taffect\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n19\tRJR\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tprint\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n23\tradio\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tspot-television\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n26\tbuying\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpractices\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbroadcast\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tgroup\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tuntil\t_\tADP\tIN\t_\t20\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tago\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n16\tRJR\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tprevious\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmanagement\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tmoved\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tAtlanta\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tcompany\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\theadquarters\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthis\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tsummer\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\temployee\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgroup\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tRJR\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tmoved\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\t11\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\temployees\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tNew\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tYork\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tSeptember\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n20\tbecause\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n22\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tsupposed\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n26\tbe\t_\tVERB\tVB\t_\t28\tcop\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tfuture\t_\tNOUN\tNN\t_\t24\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thired\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tthree\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tbuyers\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tunit\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\twithin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tpast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tweeks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\twooing\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n19\tthem\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tjobs\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tadvertising\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tagencies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tRJR\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tmoved\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t11\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\temployees\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tYork\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\tlast\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmonth\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n16\tbecause\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tgroup\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n19\thad\t_\tAUX\tVBD\t_\t24\taux\t_\t_\n20\tthen\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n21\tbeen\t_\tVERB\tVBN\t_\t24\tcop\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmidst\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n25\tof\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tpurchasing\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n27\tad\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\ttime\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tnetworks\t_\tNOUN\tNNS\t_\t34\tnmod:poss\t_\t_\n32\t'\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tupcoming\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tseason\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstudies\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n4\t-LCB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n5\ton\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tclosing\t_\tVERB\tVBG\t_\t3\tnmod\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tunit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t-RCB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n10\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tcompleted\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n14\tuntil\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tnow\t_\tADV\tRB\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tpresident\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tPeter\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tChrisanthopoulos\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n10\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\toffice\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tafternoon\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcomment\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tfinalizing\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tsteel-import\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquotas\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tallocating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tlarger\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n21\tdeveloping\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tnewly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tindustrialized\t_\tADJ\tJJ\t_\t21\tconj\t_\t_\n25\tcountries\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\thave\t_\tVERB\tVBP\t_\t25\tacl:relcl\t_\t_\n28\trelatively\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tunsubsidized\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tsteel\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tindustries\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tnegotiated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsignificant\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcut\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tJapan\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tsteel\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tquota\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tmade\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n18\tonly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tminor\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tincrease\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tsteel\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tallotment\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tEuropean\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCommunity\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBrazil\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tsimilar\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tMexico\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSouth\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tKorea\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tnegotiate\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tsomewhat\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tbigger\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tthan\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\thad\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n25\tunder\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n27\tprevious\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n28\tfive-year\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tsteel\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tquotas\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\twhich\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n33\texpired\t_\tVERB\tVBD\t_\t30\tacl:relcl\t_\t_\n34\tSept.\t_\tPROPN\tNNP\t_\t33\tnmod:tmod\t_\t_\n35\t30\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tBrazil\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tVenezuela\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tonly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcountries\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tcompleted\t_\tVERB\tVBN\t_\t8\tacl:relcl\t_\t_\n13\tsteel\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\ttalks\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tending\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n22\tOct.\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t1\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n25\t1990\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tsteelmakers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tsupplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t80\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t100\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\ttons\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tused\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n20\tannually\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tnation\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tremaining\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n4\t20\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n6\tneeded\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tsteel-quota\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tnegotiations\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tallocate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tforeign\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsuppliers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n19\twith\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdifference\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tsupplied\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n23\tmainly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t25\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t30\tnsubjpass\t_\t_\n28\tis\t_\tAUX\tVBZ\t_\t30\tauxpass\t_\t_\n29\tn't\t_\tPART\tRB\t_\t30\tneg\t_\t_\n30\tincluded\t_\tVERB\tVBN\t_\t25\tacl:relcl\t_\t_\n31\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tquota\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tprogram\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tcountries\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\thave\t_\tVERB\tVB\t_\t2\tacl:relcl\t_\t_\n7\tformal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tsteel\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tquotas\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n15\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tTaiwan\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tSweden\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n20\tArgentina\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n22\talso\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tsupplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n25\tsteel\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcountries\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n9\tmade\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tinformal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tagreements\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\tare\t_\tVERB\tVBP\t_\t17\tcop\t_\t_\n17\tsimilar\t_\tADJ\tJJ\t_\t11\tacl:relcl\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tquotas\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tearlier\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\textend\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tsteel\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tquotas\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tknown\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n15\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tvoluntary\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\trestraint\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tagreements\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tuntil\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tMarch\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n22\t31\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n24\t1992\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tuse\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tthat\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\ttwo-and-a-half\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t10\tamod\t_\t_\n10\tperiod\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\twork\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n13\ttoward\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tinternational\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tconsensus\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\ton\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tfreeing\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tup\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tinternational\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tsteel\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\ttrade\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t29\tnsubjpass\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n27\tbeen\t_\tAUX\tVBN\t_\t29\tauxpass\t_\t_\n28\tnotoriously\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tmanaged\t_\tVERB\tVBN\t_\t23\tacl:relcl\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tsubsidized\t_\tVERB\tVBN\t_\t29\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n33\tprotected\t_\tVERB\tVBN\t_\t29\tconj\t_\t_\n34\tby\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tgovernments\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\ttermed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n9\ttrade\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tliberalization\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n14\tdespite\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tfact\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n20\tmerely\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\tan\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\textension\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMexico\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tone\t_\tNUM\tCD\t_\t1\tacl:relcl\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfirst\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcountries\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tconclude\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tsteel\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\ttalks\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n19\tvirtually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tdoubled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tquota\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n24\t0.95\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t20\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tsteel\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\t0.48\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t20\tnmod\t_\t_\n34\tunder\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tprevious\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tquotas\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tSouth\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKorea\t_\tPROPN\tNNP\t_\t14\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\t1.9\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\tunder\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprevious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tquotas\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsmall\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tincrease\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tabout\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\t1.95\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tincrease\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trises\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n5\tslightly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t8\tadvmod\t_\t_\n7\tthan\t_\tADP\tIN\t_\t6\tmwe\t_\t_\n8\t2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t3\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n15\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tjoint\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tKorean-U.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tproject\t_\tNOUN\tNN\t_\t21\tnsubjpass\t_\t_\n20\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n21\tincluded\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tBrazil\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tincrease\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tallowance\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\t1.43\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\thad\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\trecent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tEC\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tJapan\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tU.S.\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tlargest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tsteel\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsuppliers\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\taux\t_\t_\n16\tfilling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tquotas\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfull\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\textent\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tEC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tsteel\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tcoping\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tstrong\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tEuropean\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdemand\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\taux\t_\t_\n17\tsupplying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n18\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t5\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tcompared\t_\tVERB\tVBN\t_\t28\tcase\t_\t_\n26\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tquotas\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tabout\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\t6.7\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\t%\t_\tSYM\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tAUX\tVBN\t_\t4\taux\t_\t_\n4\tshipping\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tsteel\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\ttotal\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t4.5\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tcompared\t_\tVERB\tVBN\t_\t18\tcase\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tquota\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t5.9\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\trecent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttalks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tEC\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tquota\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tincreased\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n12\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\t300,000\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\ttons\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t7\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t6.7\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1988\t_\tNUM\tCD\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tquota\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t7\tcop\t_\t_\n6\tas\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\thigh\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t6.9\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1984\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tagreed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tcut\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tquota\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t5\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t8\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t5.9\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t8\tnmod\t_\t_\n18\tpreviously\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tEC\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n6\tBrazil\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\tMexico\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n10\tSouth\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tKorea\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n12\tprovide\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\t80\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsteel\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\timported\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tunder\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tquota\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tprogram\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbalance\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tsupplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thost\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tsmaller\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n10\texporters\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tsuch\t_\tADJ\tJJ\t_\t14\tcase\t_\t_\n13\tas\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tAustralia\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tVenezuela\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tadvmod\t_\t_\n6\textra\t_\tADJ\tJJ\t_\t7\tadvmod\t_\t_\n7\t2\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tsteel\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tgive\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tforeign\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tsuppliers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tquota\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\ttalks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t4\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tessentially\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmade\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t1\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tincrease\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\toverall\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tquota\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprogram\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\t1\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n19\tfrom\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tcutting\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\tJapan\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tallowance\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNegotiators\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n2\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tWhite\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\ttrade\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\toffice\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\trepeat\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tthese\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tquota\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tnegotiations\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tnext\t_\tADP\tIN\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\thave\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n19\tanother\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\t1\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tsteel\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tallocate\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\toptional\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\t1%-a-year\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincreases\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n5\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tsteel\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tquota\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprogram\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\tauxpass\t_\t_\n11\tbuilt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tBush\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tadministration\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tsteel-quota\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tprogram\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tgive\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tnegotiators\t_\tNOUN\tNNS\t_\t20\tdep\t_\t_\n23\tleverage\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tforeign\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tsteel\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsuppliers\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\ttry\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tget\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tthem\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\twithdraw\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n35\tsubsidies\t_\tNOUN\tNNS\t_\t34\tdobj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tprotectionism\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n38\tfrom\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\ttheir\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n40\town\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n41\tsteel\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tindustries\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tfiscal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tsecond-quarter\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tearnings\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\ttrail\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n9\t1988\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tresults\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n13\tanticipates\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\tseveral\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tproducts\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tlead\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n20\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n23\tmuch\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tstronger\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n26\tperformance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tsecond\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\thalf\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttelecommunications\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t272,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tfive\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tsecond\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tended\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n27\tSept.\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n28\t30\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t5\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGeorge\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPierce\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tchairman\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tinterview\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tmost\t_\tADV\tRBS\t_\t19\tadvmod\t_\t_\n19\trecent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n22\tbe\t_\tVERB\tVB\t_\t25\tcop\t_\t_\n23\tabout\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tcents\t_\tNOUN\tNNS\t_\t10\tccomp\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tshare\t_\tNOUN\tNN\t_\t25\tnmod:npmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\trevenue\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tjust\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n32\tunder\t_\tADP\tIN\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t29\tnmod\t_\t_\n34\t4\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlower\t_\tADJ\tJJR\t_\t3\tamod\t_\t_\n3\tresults\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPierce\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\treflect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t12-month\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdecline\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tindustry\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsales\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tprivately\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\towned\t_\tVERB\tVBN\t_\t20\tamod\t_\t_\n19\tpay\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttelephones\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tElcotel\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tprimary\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbusiness\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPierce\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t17\tadvcl\t_\t_\n5\tthat\t_\tADP\tIN\t_\t6\tamod\t_\t_\n6\tline\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tstrengthen\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tnext\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tElcotel\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n19\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tbenefit\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tfrom\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tmoving\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tinto\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tother\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tareas\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tForemost\t_\tADV\tRB\t_\t4\tdep\t_\t_\n2\tamong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthose\t_\tPRON\tDT\t_\t4\tnmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t17\tdep\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tentrance\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n9\tinto\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tpublic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tfacsimile\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tbusiness\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPierce\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tWithin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnext\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tElcotel\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tplace\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\t10,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tfax\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmachines\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tmade\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n15\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tMinolta\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tJapan\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\thotels\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tmunicipal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbuildings\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n26\tdrugstores\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n28\tother\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tpublic\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tsettings\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n31\taround\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcountry\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tprovide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcredit-card\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\treader\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmachines\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tcollect\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tstore\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\tforward\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n16\tbilling\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tdata\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPierce\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tElcotel\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tshould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\trealize\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tminimum\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t10\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\trecurring\t_\tVERB\tVBG\t_\t15\tamod\t_\t_\n14\tnet\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\teach\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmachine\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\teach\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tElcotel\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tdeveloped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tautomatic\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcall\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprocessor\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tmake\t_\tVERB\tVB\t_\t8\tacl:relcl\t_\t_\n12\tfurther\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tuse\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tsystem\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\tfor\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tautomating\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\thandling\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n23\tcredit-card\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcalls\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tcollect\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcalls\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAutomatic\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tcall\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprocessors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tprovide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthat\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsystem\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tvirtually\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tany\t_\tDET\tDT\t_\t11\tamod\t_\t_\n11\ttelephone\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tPierce\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t11\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tnot\t_\tADV\tRB\t_\t18\tneg\t_\t_\n18\tjust\t_\tADV\tRB\t_\t11\tdep\t_\t_\n19\tphones\t_\tVERB\tVBZ\t_\t18\tdep\t_\t_\n20\tproduced\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tElcotel\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tproducing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tline\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tconvenience\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\ttelephones\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n15\tdo\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\taccept\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n18\tcoins\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tuse\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\thotel\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tlobbies\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\toffice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tlobbies\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n29\thospitality\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tlounges\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n32\tsimilar\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tsettings\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPierce\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\testimated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tprocessors\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tconvenience\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tphones\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tproduce\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n14\t5\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\trecurring\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n17\tnet\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tearnings\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\teach\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmachine\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n22\teach\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBritain\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tretail\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tprice\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n7\t0.7\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tSeptember\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tAugust\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n15\tup\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n16\t7.6\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t15\tnmod:npmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tCentral\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tStatistical\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tOffice\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tQuest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMedical\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tadopted\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tshareholders\t_\tNOUN\tNNS\t_\t11\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\trights\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tplan\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t23\tnmod\t_\t_\n14\trights\t_\tNOUN\tNNS\t_\t23\tnsubjpass\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpurchase\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tcommon\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tdistributed\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n24\tas\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tdividend\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\tshareholders\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\trecord\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tOct.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n34\t23\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tplan\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tadopted\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tresponse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tknown\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n14\toffers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tQuest\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmaker\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tmarketer\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\thospital\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tproducts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trights\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tallow\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tshareholders\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tpurchase\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tQuest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdiscount\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n13\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tperson\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tgroup\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tacquires\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t20\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\t15\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcompany\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tcommon\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstock\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tannounces\t_\tVERB\tVBZ\t_\t17\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\ttender\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\toffer\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeasuring\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tcups\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\treplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttablespoons\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlaundry\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\troom\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tProcter\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\t&\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tGamble\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbegin\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ttesting\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\tnext\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmonth\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsuperconcentrated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdetergent\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\trequire\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n17\tonly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tadvmod\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t20\tnummod\t_\t_\n20\tspoonfuls\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\tper\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\twashload\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tstems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tlessons\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tlearned\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJapan\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\twhere\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tlocal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcompetitors\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\thad\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n14\tphenomenal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsuccess\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tconcentrated\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tsoapsuds\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tmarks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tP&G\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgrowing\t_\tVERB\tVBG\t_\t7\tamod\t_\t_\n7\tconcern\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tJapanese\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\trivals\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n14\tas\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\tKao\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n18\tmay\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tbring\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tsuperconcentrates\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tCincinnati\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tconsumer-products\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tgiant\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tgot\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tclobbered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tJapan\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\tKao\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tintroduced\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tpowerful\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdetergent\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tcalled\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n20\tAttack\t_\tPROPN\tNNP\t_\t19\txcomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n23\tquickly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\twon\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\t30\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tamod\t_\t_\n28\tstake\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tJapanese\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmarkets\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\twant\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\tget\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tcaught\t_\tVERB\tVBN\t_\t5\txcomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tone\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tindustry\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\twatcher\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tRetailers\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tPhoenix\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tAriz.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tP&G\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tpowdered\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdetergent\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tcalled\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n17\tCheer\t_\tPROPN\tNNP\t_\t16\txcomp\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tColor\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGuard\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n22\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t25\tcop\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tshelves\t_\tNOUN\tNNS\t_\t7\tccomp\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthat\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tearly\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tNovember\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tP&G\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokeswoman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tshipments\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tPhoenix\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tstarted\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n10\tlate\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmonth\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tstudy\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\texpanding\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tothers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSuperconcentrates\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tentirely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tP&G\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tintroduced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tsuperconcentrated\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tLemon\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCheer\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tJapan\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\tafter\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\twatching\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsuccess\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAttack\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tAttack\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thit\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tshelves\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n9\tP&G\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tJapanese\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n18\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t8\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tmore\t_\tADJ\tJJR\t_\t24\tadvmod\t_\t_\n23\tthan\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\t20\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\thelp\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tLemon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCheer\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tP&G\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\tauxpass\t_\t_\n12\tnow\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\testimated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n16\t12\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t13\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tJapanese\t_\tPROPN\tNNPS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tembraced\t_\tVERB\tVBN\t_\t29\tadvcl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcompact\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpackaging\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tconvenience\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tconcentrated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tproducts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttrue\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttest\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tP&G\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t29\tcop\t_\t_\n22\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n24\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n25\t4\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\tU.S.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tdetergent\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\twhere\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n32\tgrowth\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n33\tis\t_\tVERB\tVBZ\t_\t34\tcop\t_\t_\n34\tslow\t_\tADJ\tJJ\t_\t29\tacl:relcl\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\tliquids\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n37\thave\t_\tAUX\tVBP\t_\t38\taux\t_\t_\n38\tgained\t_\tVERB\tVBN\t_\t34\tconj\t_\t_\n39\tprominence\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n40\tover\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tpowders\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\thave\t_\tAUX\tVB\t_\t5\taux\t_\t_\n5\tchosen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tmarket\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tproduct\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tunder\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tCheer\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tname\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tsince\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t18\tnsubjpass\t_\t_\n16\t's\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n17\talready\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\texpanded\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tbest-selling\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tTide\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n22\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\t16\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n24\tdifferent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tvarieties\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tincluding\t_\tVERB\tVBG\t_\t32\tcase\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tbig\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\thit\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tTide\t_\tPROPN\tNNP\t_\t32\tappos\t_\t_\n35\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tBleach\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tsuperconcentrates\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n9\talways\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\teasy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tpersuade\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tconsumers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tthat\t_\tSCONJ\tWDT\t_\t17\tdep\t_\t_\n15\tless\t_\tADJ\tJJR\t_\t17\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tmore\t_\tADJ\tJJR\t_\t12\tdep\t_\t_\n18\t;\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tpeople\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\ttend\t_\tVERB\tVBP\t_\t10\tparataxis\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdump\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ttoo\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tmuch\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdetergent\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tinto\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\twashing\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tmachine\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n32\tbelieving\t_\tVERB\tVBG\t_\t21\txcomp\t_\t_\n33\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\ttakes\t_\tVERB\tVBZ\t_\t32\tccomp\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcup\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tpowder\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n40\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n41\treally\t_\tADV\tRB\t_\t42\tadvmod\t_\t_\n42\tclean\t_\tVERB\tVB\t_\t35\tadvcl\t_\t_\n43\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tlaundry\t_\tNOUN\tNN\t_\t42\tdobj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tearly\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\t1980s\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tP&G\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tlaunch\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\there\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tconcentrated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdetergent\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tunder\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tAriel\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tbrand\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tname\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n19\tthat\t_\tADP\tIN\t_\t21\tdobj\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tmarkets\t_\tVERB\tVBZ\t_\t18\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tEurope\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tproduct\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n7\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\tas\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tconcentrated\t_\tADJ\tJJ\t_\t3\tacl:relcl\t_\t_\n10\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tCheer\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tbombed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\ttest\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tDenver\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n23\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n24\tdropped\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tP&G\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tothers\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\ttried\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\trepeatedly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\thook\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n10\tconsumers\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tdetergent\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tfabric\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\tsoftener\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcombinations\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tpouches\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n22\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n23\tn't\t_\tPART\tRB\t_\t24\tneg\t_\t_\n24\tsold\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n25\twell\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n27\tdespite\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tconvenience\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tP&G\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcontends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tCheer\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tunique\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tformula\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\talso\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\toffers\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n14\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tingredient\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tprevents\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\tcolors\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n19\tfrom\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tfading\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tretailers\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tembrace\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tproduct\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tpart\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\ttake\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tless\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n18\tshelf\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tspace\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n3\tshelf\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tspace\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tcheap\t_\tADJ\tJJ\t_\t10\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tbigger\t_\tADJ\tJJR\t_\t10\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n10\tbetter\t_\tADJ\tJJR\t_\t13\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tHugh\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tZurkuhlen\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tanalyst\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tSalomon\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tBros\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\twith\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbrands\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tvying\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tthat\t_\tPRON\tDT\t_\t15\tnsubj\t_\t_\n11\t's\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n12\tno\t_\tADV\tRB\t_\t13\tneg\t_\t_\n13\tlonger\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tCheer\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsells\t_\tVERB\tVBZ\t_\t14\tadvcl\t_\t_\n6\twell\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttrend\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\ttoward\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tsmaller\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n12\tpackaging\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n14\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\taccelerate\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\tcompetitors\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tfollow\t_\tVERB\tVBP\t_\t16\tadvcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tsuperconcentrates\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\tretailers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tprobably\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tpush\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\t-LCB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\tless-established\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n10\t-RCB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\tbrands\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\tout\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n13\taltogether\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tCompetition\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tbound\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tget\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ttougher\t_\tADJ\tJJR\t_\t5\txcomp\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tKao\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tintroduces\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tproduct\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tAttack\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t3\tmark\t_\t_\n2\tbe\t_\tVERB\tVB\t_\t3\tcop\t_\t_\n3\tsure\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tKao\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\teasy\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ttaking\t_\tVERB\tVBG\t_\t11\tdep\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\taway\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmighty\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tP&G\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\thas\t_\tVERB\tVBZ\t_\t20\tacl:relcl\t_\t_\n24\tabout\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t23\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tKao\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tsaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\tinterested\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n9\tin\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tselling\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n11\tdetergents\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n17\tso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tfar\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tfocused\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n23\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tacquisitions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t31\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tpurchase\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n32\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\tAndrew\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tJergens\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n38\tCincinnati\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\thand-lotion\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tmaker\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tproduct-testing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tfacility\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tCalifornia\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tP&G\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tinterest\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsuperconcentrated\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdetergent\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tgoes\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n11\tbeyond\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tconcern\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tJapanese\t_\tPROPN\tNNPS\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tsomething\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n5\tP&G\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tdo\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\twithout\t_\tADP\tIN\t_\t8\tconj\t_\t_\n11\tKao\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tZurkuhlen\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n2\teconomic\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttension\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tbetween\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tJapan\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tworsening\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tmany\t_\tADJ\tJJ\t_\t14\tnsubj\t_\t_\n12\tJapanese\t_\tVERB\tVBP\t_\t11\tdep\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tfeared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tlast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tvisit\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tTrade\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tRepresentative\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tCarla\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tHills\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbarrage\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tdemands\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tJapan\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tdo\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tsomething\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tquickly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\treduce\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\ttrade\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tsurplus\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdiscussion\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tneed\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tfor\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tJapan\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\twork\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n17\ttogether\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\timportance\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tlong-term\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tview\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\ttrip\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tJapan\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tAmerica\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tchief\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\ttrade\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tnegotiator\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tcompletely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tdifferent\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttone\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmonth\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tvisit\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n25\tCommerce\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n26\tSecretary\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tRobert\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tA.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tMosbacher\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMosbacher\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tconcrete\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tresults\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tspring\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tnegotiations\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\tover\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tfundamental\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tJapanese\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tbusiness\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpractices\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n18\tsupposedly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tinhibit\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n20\tfree\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttrade\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tsuch\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\tshould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n8\tmeasurable\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tdollars\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n14\tin\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\treducing\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\ttrade\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tdeficit\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tJapan\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n2\tMrs.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHills\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tspeaking\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n6\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tbreakfast\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmeeting\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tAmerican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tChamber\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tCommerce\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tJapan\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tSaturday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n21\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tobjective\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n27\tnot\t_\tPART\tRB\t_\t26\tneg\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tget\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n30\tdefinitive\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\taction\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tspring\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tor\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tsummer\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n38\tis\t_\tVERB\tVBZ\t_\t26\tparataxis\t_\t_\n39\trather\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\thave\t_\tVERB\tVB\t_\t38\txcomp\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tblueprint\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\tfor\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\taction\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n47\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tshe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpected\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tperhaps\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\thave\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tdown\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tpayment\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t...\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n14\tsome\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tstep\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tconvince\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tAmerican\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpeople\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tJapanese\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tpeople\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\twe\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n28\t're\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n29\tmoving\t_\tVERB\tVBG\t_\t18\tccomp\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tearnest\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHow\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tsuch\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tremarks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\ttranslate\t_\tVERB\tVBP\t_\t9\tcsubj\t_\t_\n5\tinto\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tpolicy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\two\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tbecome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tclear\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAmerican\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tJapanese\t_\tADJ\tJJ\t_\t1\tconj\t_\t_\n4\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\ttheories\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdifference\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tapproach\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tbetwen\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMosbacher\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tMrs.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tHills\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tnsubj\t_\t_\n2\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tsimply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcontrast\t_\tNOUN\tNN\t_\t2\txcomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tstyles\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tnsubj\t_\t_\n3\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tclassic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tnegotiating\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttactic\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tBush\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tadministration\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tfeel\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trhetoric\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tboth\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsides\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tgetting\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n15\tout\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\thand\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\treflected\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgrowing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tdebate\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tWashington\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tover\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tpursuing\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n13\tfree\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttrade\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tJapan\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tversus\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tsome\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tkind\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tmanaged\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttrade\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n2\tto\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\tcompare\t_\tVERB\tVB\t_\t1\txcomp\t_\t_\n4\ther\t_\tPRON\tPRP\t_\t5\tdep\t_\t_\n5\tvisit\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMosbacher\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tMrs.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHills\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n16\tI\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\tdid\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\thear\t_\tVERB\tVB\t_\t13\tparataxis\t_\t_\n20\tevery\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tword\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tspoke\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n26\tas\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tgeneral\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tproposition\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\tI\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n32\tthink\t_\tVERB\tVBP\t_\t19\tconj\t_\t_\n33\twe\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n34\thave\t_\tVERB\tVBP\t_\t32\tccomp\t_\t_\n35\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n36\tvery\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n37\tconsistent\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\ttrade\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tstrategy\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n40\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tBush\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tadministration\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tYet\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n2\tmore\t_\tADJ\tJJR\t_\t4\tadvmod\t_\t_\n3\tthan\t_\tADP\tIN\t_\t2\tmwe\t_\t_\n4\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tAmerican\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n7\twho\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\tsat\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n9\tin\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\ther\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n12\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\ttalks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tJapanese\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tofficials\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ther\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\ttone\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n23\toften\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n25\tsurprisingly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\tconciliatory\t_\tADJ\tJJ\t_\t20\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tline\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t9\tcop\t_\t_\n8\tvery\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tconsistent\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n12\tMrs.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHills\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tnews\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tconference\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tSaturday\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tafternoon\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n3\tam\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tpainted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tsometimes\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tferocious\t_\tADJ\tJJ\t_\t4\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tperhaps\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tI\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tferocious\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlist\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tstatutes\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\timplement\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tferocious\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\teither\t_\tCONJ\tCC\t_\t6\tcc:preconj\t_\t_\n6\thard\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tsoft\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfeel\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tcommitted\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tprogram\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tof\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\topening\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tmarkets\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n11\texpanding\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n12\ttrade\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tmet\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlocal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpress\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttime\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\tMrs.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tHills\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\tfirmly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\treiterated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tneed\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tprogress\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tin\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tremoving\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n24\tbarriers\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n26\ttrade\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tforest\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tproducts\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tsatellites\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n33\tsupercomputers\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n35\tthree\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tareas\t_\tNOUN\tNNS\t_\t29\tappos\t_\t_\n37\ttargeted\t_\tVERB\tVBN\t_\t36\tacl\t_\t_\n38\tunder\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n40\tSuper\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n41\t301\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tprovision\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t47\tcase\t_\t_\n44\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n45\t1988\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n46\ttrade\t_\tNOUN\tNN\t_\t47\tcompound\t_\t_\n47\tbill\t_\tNOUN\tNN\t_\t42\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thighlighted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\texclusionary\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tbusiness\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tpractices\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\tthat\t_\tADP\tIN\t_\t11\tdobj\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tgovernment\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tidentified\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\ther\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tmain\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tthrust\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpromote\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\timportance\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tworld-wide\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tfree\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttrade\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\topen\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcompetition\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttrade\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\timbalance\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n7\tmainly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdue\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tmacroeconomic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfactors\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\tshould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\ttackled\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n17\tby\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tsetting\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n19\tquantitative\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttargets\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ther\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tconference\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tJapanese\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\treporters\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\teconomics\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tjournalist\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tsummed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tJapanese\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsense\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\trelief\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tMy\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\timpression\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tscary\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\told\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlady\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tdrawing\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tfew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tnervous\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tchuckles\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\tcolleagues\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tam\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\trelieved\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsee\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n11\tbeautiful\t_\tADJ\tJJ\t_\t13\tdep\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n13\tgentle\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tintelligent\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tperson\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tintegrity\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHills\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tremarks\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tdid\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\traise\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tquestions\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tat\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n10\tleast\t_\tADJ\tJJS\t_\t9\tmwe\t_\t_\n11\tamong\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tsome\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tofficials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tabout\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t24\tdobj\t_\t_\n18\texactly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\ther\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tstance\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n22\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\taccess\t_\tNOUN\tNN\t_\t7\tacl\t_\t_\n25\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tJapanese\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tsemiconductor\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tshare\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tJapanese\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\taux\t_\t_\n10\tstuck\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\taround\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t10\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t10\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tyears\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tAmericans\t_\tPROPN\tNNPS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tinterpreted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1986\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tassuring\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcompanies\t_\tNOUN\tNNS\t_\t9\tiobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t20\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1991\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tJapanese\t_\tPROPN\tNNPS\t_\t23\tnsubj\t_\t_\n22\thave\t_\tAUX\tVBP\t_\t23\taux\t_\t_\n23\tdenied\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n24\tmaking\t_\tVERB\tVBG\t_\t23\txcomp\t_\t_\n25\tany\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tpromise\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ther\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\tnews\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconferences\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tMrs.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tHills\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tI\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tbelieve\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n15\twe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\tcan\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tdo\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n18\tmuch\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tbetter\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n20\tthan\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t20\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n6\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n7\tam\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tmanaged\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttrade\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tnot\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tenter\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tstipulates\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpercentage\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTraditional\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\texpects\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnet\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tloss\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfourth\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tended\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n18\tJune\t_\tPROPN\tNNP\t_\t17\tnmod:tmod\t_\t_\n19\t30\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tseeking\t_\tVERB\tVBG\t_\t6\tconj\t_\t_\n23\tnew\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfinancing\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tseller\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tphotographic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproducts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tservices\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tconsidering\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnumber\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tfinancing\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\talternatives\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tincluding\t_\tVERB\tVBG\t_\t19\tcase\t_\t_\n19\tseeking\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n20\tincreases\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tcredit\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tlines\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTraditional\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\testimate\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tloss\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tsay\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\texpects\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tshow\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tprofit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\tended\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tJune\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t30\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tTraditional\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t4.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.21\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tbreak\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tfourth-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tresults\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tlatest\t_\tADJ\tJJS\t_\t5\tamod\t_\t_\n4\tnine\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n6\tnet\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n10\t4.7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t1.31\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\trevenue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t44.3\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tfile\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tdelayed\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tfiscal-year\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\treport\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tSecurities\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tExchange\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tCommission\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n20\twithin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tapproximately\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\t45\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdelay\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tresulted\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tdifficulties\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tin\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tresolving\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\taccounting\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsettlement\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tFederal\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tTrade\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCommission\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n4\tfiled\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tAugust\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsettle\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n12\tFTC\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tobjections\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n15\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tTraditional\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tpractices\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tTraditional\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\testablish\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n26\t$\t_\tSYM\t$\t_\t29\tamod\t_\t_\n27\t250,000\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n28\ttrust\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tfund\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tprovide\t_\tVERB\tVB\t_\t29\tacl\t_\t_\n32\trefunds\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\tcertain\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tcustomers\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tInformation\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tInternational\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tsued\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbuyer\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tcomputerized\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tnewspaper-publishing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsystem\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\talleging\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tfailed\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcorrect\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tdeficiencies\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tsystem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tInformation\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInternational\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlawsuit\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tunits\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tMorris\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tCommunications\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tseeks\t_\tVERB\tVBZ\t_\t6\tccomp\t_\t_\n17\trestitution\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsystem\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n21\t's\t_\tVERB\tVBZ\t_\t20\tcase\t_\t_\n22\tabout\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t27\tamod\t_\t_\n24\t3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tpurchase\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tprice\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tcancellation\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tsoftware\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tlicense\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tprovided\t_\tVERB\tVBN\t_\t33\tacl\t_\t_\n35\tby\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tMorris\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tunits\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n39\tto\t_\tADP\tTO\t_\t41\tcase\t_\t_\n40\tInformation\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tInternational\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n42\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\talleged\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tfailure\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n45\tto\t_\tPART\tTO\t_\t46\tmark\t_\t_\n46\tpay\t_\tVERB\tVB\t_\t44\tacl\t_\t_\n47\troyalties\t_\tNOUN\tNNS\t_\t46\tdobj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tInformation\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInternational\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tbelieves\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcomplaints\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n10\tfiled\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tfederal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcourt\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tGeorgia\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n18\twithout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tmerit\t_\tNOUN\tNN\t_\t5\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tClosely\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\theld\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n3\tMorris\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCommunications\t_\tPROPN\tNNP\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tAugusta\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tGa\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tunits\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tfiled\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsuit\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tSoutheastern\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tNewspapers\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tFlorida\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPublishing\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSyms\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcompleted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tA.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSulka\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tsubsidiary\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmen\t_\tNOUN\tNNS\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tluxury\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\thaberdashery\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tLuxco\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tInvestments\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n2\tSyms\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n5\tcore\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tbusiness\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\toff-price\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tretailing\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tgrows\t_\tVERB\tVBZ\t_\t19\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsmall\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tsubsidiary\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n17\toperationally\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tunrelated\t_\tADJ\tJJ\t_\t14\tacl:relcl\t_\t_\n19\tbecomes\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tdifficult\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdistraction\t_\tNOUN\tNN\t_\t19\txcomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tMarcy\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tSyms\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tpresident\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tparent\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tstatement\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokeswoman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tSulka\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\toperates\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttotal\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tseven\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tstores\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\toverseas\t_\tADV\tRB\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSyms\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\toperates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t25\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\toff-price\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tapparel\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tstores\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmiddling\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tprofits\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tpersist\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcompanies\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n4\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tnext\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdays\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\tauxpass\t_\t_\n10\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treport\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tmuch\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tless\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\trobust\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n17\tthan\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n19\tdid\t_\tAUX\tVBD\t_\t23\taux\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n26\tago\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n28\tlargely\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n29\treflecting\t_\tVERB\tVBG\t_\t32\tdep\t_\t_\n30\tdeteriorating\t_\tVERB\tVBG\t_\t32\tamod\t_\t_\n31\tchemical\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tgasoline\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tprofitability\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgasoline\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tpicture\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\timprove\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tquarter\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tchemicals\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n12\tlikely\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tremain\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tweak\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tindustry\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\texecutives\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tanalysts\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n21\tsay\t_\tVERB\tVBP\t_\t14\tparataxis\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\treducing\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n24\tchances\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n26\tprofits\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n27\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tequal\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n29\ttheir\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\tyear-earlier\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tperformance\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindustry\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n5\tseeing\t_\tVERB\tVBG\t_\t28\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsoftening\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tsomewhat\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tvolume\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tcertainly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tprice\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpetrochemicals\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n19\tGlenn\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCox\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tPhillips\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tPetroleum\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCo.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tinterview\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tThat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tchange\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tobviously\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\timpact\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n7\tthird\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tfourth\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tearnings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tindustry\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tgeneral\t_\tADJ\tJJ\t_\t15\tacl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\the\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tforecast\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tPhillips\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tsecurities\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tPhillips\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n8\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompanies\t_\tNOUN\tNNS\t_\t4\tccomp\t_\t_\n11\thard-hit\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tweak\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tchemical\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprices\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tprobably\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tpost\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdrop\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthird-quarter\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tearnings\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\ttoo\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tpredict\t_\tVERB\tVBP\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t0\troot\t_\t_\n10\tExxon\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tChevron\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tAmoco\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t2\tdep\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n4\thappened\t_\tVERB\tVBD\t_\t2\tdep\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tethylene\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmajor\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tcommodity\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tchemical\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n15\tproduced\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tvast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tamounts\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tmany\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\toil\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tplunged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t13\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tsince\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJuly\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n9\taround\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n10\t26\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpound\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tethylene\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t33\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tpeaking\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n11\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t34\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tlast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tDecember\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\treason\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tchemical\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tretreat\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\toverexpansion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBeginning\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmid-1987\t_\tNOUN\tNN\t_\t6\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\taccelerating\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tgrowing\t_\tVERB\tVBG\t_\t12\tamod\t_\t_\n11\tU.S.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\teconomy\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tweak\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdollar\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\tspurred\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n18\tdemand\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tcapacity\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\tfuriously\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tgreatly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tincreased\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\tsupplies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdollar\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tstronger\t_\tADJ\tJJR\t_\t9\tadvcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tdomestic\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\teconomic\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgrowth\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tslower\t_\tADJ\tJJR\t_\t15\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThird-quarter\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tprofits\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tgasoline\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tweaker\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tRefining\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmargins\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tgood\t_\tADJ\tJJ\t_\t23\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n15\tgenerally\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\tnot\t_\tADV\tRB\t_\t18\tneg\t_\t_\n17\tvery\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tgood\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t18\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tWilliam\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tRandol\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tsecurities\t_\tNOUN\tNNS\t_\t29\tcompound\t_\t_\n29\tanalyst\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n30\tat\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tFirst\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tBoston\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tOil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trefineries\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tran\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tflat\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tout\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tprepare\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n9\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\trobust\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tholiday\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tdriving\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tseason\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tJuly\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tAugust\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n20\tdid\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tmaterialize\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\texcess\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsupply\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tpushed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tgasoline\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tdown\t_\tADP\tRP\t_\t4\tadvmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthat\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tperiod\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tcrude\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tup\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tsome\t_\tDET\tDT\t_\t8\tnmod:npmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tearlier\t_\tADV\tRBR\t_\t8\tadvcl\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tfurther\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tpressuring\t_\tVERB\tVBG\t_\t7\tccomp\t_\t_\n17\tprofitability\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRefiners\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tmargins\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpicked\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tindustry\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tofficials\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tbelieve\t_\tVERB\tVBP\t_\t2\tconj\t_\t_\n14\tgasoline\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprofits\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\twill\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\trebound\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\tthough\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n22\tstill\t_\tADV\tRB\t_\t23\tdep\t_\t_\n23\tnot\t_\tPART\tRB\t_\t17\tadvcl\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tlevel\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\t1988\t_\tNUM\tCD\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tfourth\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tquarter\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tDuring\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tsecond\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\trecord\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgasoline\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tchemical\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tprofits\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tCrude\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tturn\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tmost\t_\tADV\tRBS\t_\t11\tadvmod\t_\t_\n11\tsurprising\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\telement\t_\tNOUN\tNN\t_\t5\txcomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n3\taveraging\t_\tVERB\tVBG\t_\t20\tparataxis\t_\t_\n4\troughly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\t$\t_\tSYM\t$\t_\t9\tnmod:npmod\t_\t_\n6\t2\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbarrel\t_\tNOUN\tNN\t_\t5\tnmod:npmod\t_\t_\n9\thigher\t_\tADJ\tJJR\t_\t3\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tthird\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\tearlier\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tstayed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\twell\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n22\tabove\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tmost\t_\tADJ\tJJS\t_\t24\tamod\t_\t_\n24\tcompanies\t_\tNOUN\tNNS\t_\t26\tnmod:poss\t_\t_\n25\t'\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\texpectations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tDemand\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n4\tmuch\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tstronger\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n6\tthan\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tanticipated\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\ttypically\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\taccelerates\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tfourth\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tquarter\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tsee\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n5\thigher\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n6\toil\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tBryan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tJacoboski\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tanalyst\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tPaineWebber\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tInc\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\ttranslate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tsharply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thigher\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n7\tproduction\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprofits\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tparticularly\t_\tADV\tRB\t_\t8\tnmod\t_\t_\n11\tcompared\t_\tVERB\tVBN\t_\t10\tcase\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tlast\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n16\toil\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\tsteadily\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tfell\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\tbelow\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n23\t13\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tbarrel\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfourth\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\toil\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n6\tbetter\t_\tADJ\tJJR\t_\t15\tadvcl\t_\t_\n7\tthan\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tnatural\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tgas\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tbeen\t_\tVERB\tVBN\t_\t15\tcop\t_\t_\n15\tworse\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\taveraged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t5\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t11\tnmod:npmod\t_\t_\n11\tless\t_\tADJ\tJJR\t_\t7\txcomp\t_\t_\n12\tthan\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n14\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1988\t_\tNUM\tCD\t_\t11\tccomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmain\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\treason\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tweather\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsummer\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tnotable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\theat\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\twave\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tdrought\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\tcaused\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n13\tutilities\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tburn\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tnatural\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tgas\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tfeed\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n21\tincreased\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\telectrical\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdemand\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tair\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tconditioning\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tuse\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsummer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thand\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n9\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tmilder\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n11\tweather\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tusual\t_\tADJ\tJJ\t_\t11\tacl\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tdisappointed\t_\tADJ\tJJ\t_\t16\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tperformance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tnatural\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tgas\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCox\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tPhillips\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tlagging\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n4\tgas\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tassist\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tfourth\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tperformance\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tmany\t_\tADJ\tJJ\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tGoing\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n2\tinto\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfourth\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n7\tnatural\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tgas\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n11\tanywhere\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t17\tadvmod\t_\t_\n13\t8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tdep\t_\t_\n16\t17\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tlower\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n19\tthan\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n22\tearlier\t_\tADV\tRBR\t_\t18\tadvcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tnatural\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgas\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n6\tcurrently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tproduced\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n8\talong\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tGulf\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCoast\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n13\tselling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tspot\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\taround\t_\tADP\tIN\t_\t20\tadvmod\t_\t_\n20\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n21\t1.47\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tadvmod\t_\t_\n23\tthousand\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n24\tcubic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tfeet\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n27\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n28\t13\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t27\tnmod:npmod\t_\t_\n30\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t1.69\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tadvmod\t_\t_\n34\tthousand\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n35\tcubic\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tfeet\t_\tNOUN\tNNS\t_\t32\tnmod:npmod\t_\t_\n37\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tyear\t_\tNOUN\tNN\t_\t39\tnmod:npmod\t_\t_\n39\tago\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n5\ttrying\t_\tVERB\tVBG\t_\t26\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tblunt\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n8\tgrowing\t_\tVERB\tVBG\t_\t9\tamod\t_\t_\n9\tdemands\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tWestern\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tEurope\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\trelaxation\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcontrols\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\texports\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tSoviet\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbloc\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\tis\t_\tAUX\tVBZ\t_\t26\taux\t_\t_\n26\tquestioning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n27\twhether\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n28\tItaly\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tIng\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n32\tC.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tOlivetti\t_\tPROPN\tNNP\t_\t36\tnsubj\t_\t_\n34\t&\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t33\tconj\t_\t_\n36\tsupplied\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n37\tmilitarily\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tvaluable\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\ttechnology\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n40\tto\t_\tADP\tTO\t_\t42\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tSoviets\t_\tPROPN\tNNPS\t_\t36\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t31\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tWestern\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tEuropean\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tmembers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tCoordinating\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCommittee\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tMultilateral\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tExport\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tControls\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tunofficial\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tforum\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n18\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t25\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tallies\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n25\talign\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n27\texport-control\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tpolicies\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\tare\t_\tAUX\tVBP\t_\t31\tauxpass\t_\t_\n31\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\targue\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n34\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tmore\t_\tADV\tRBR\t_\t36\tadvmod\t_\t_\n36\tliberal\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\texport\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\trules\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n39\tat\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tmeeting\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n42\tto\t_\tPART\tTO\t_\t44\tmark\t_\t_\n43\tbe\t_\tAUX\tVB\t_\t44\tauxpass\t_\t_\n44\theld\t_\tVERB\tVBN\t_\t41\tacl\t_\t_\n45\tin\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tParis\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n47\tOct.\t_\tPROPN\tNNP\t_\t44\tnmod:tmod\t_\t_\n48\t25\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n49\tand\t_\tCONJ\tCC\t_\t47\tcc\t_\t_\n50\t26\t_\tNUM\tCD\t_\t47\tconj\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tplan\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tpress\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tspecifically\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trelaxation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\trules\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tgoverning\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\texports\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tmachine\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\ttools\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tcomputers\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\thigh-technology\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tproducts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tBush\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\twants\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsee\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tevidence\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tall\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tCocom\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmembers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tcomplying\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n17\tfully\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\texisting\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\texport-control\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tprocedures\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tbefore\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\twill\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tsupport\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n26\tfurther\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tliberalization\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tmake\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tpoint\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tchallenging\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tItalian\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texplain\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n14\treports\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tOlivetti\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n17\tmay\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\thave\t_\tAUX\tVB\t_\t19\taux\t_\t_\n19\tsupplied\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tSoviet\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tUnion\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n23\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tsophisticated\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tcomputer-driven\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdevices\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\tthat\t_\tPRON\tWDT\t_\t30\tnsubjpass\t_\t_\n28\tcould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n29\tbe\t_\tAUX\tVB\t_\t30\tauxpass\t_\t_\n30\tused\t_\tVERB\tVBN\t_\t26\tacl:relcl\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tbuild\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tparts\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tcombat\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\taircraft\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tLondon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSunday\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tTimes\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tfirst\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\treported\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tconcerns\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tcited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tintelligence\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\treport\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsource\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tallegations\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n25\tOlivetti\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\texported\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n27\t$\t_\tSYM\t$\t_\t26\tdobj\t_\t_\n28\t25\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t38\tpunct\t_\t_\n32\tembargoed\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n34\tstate-of-the-art\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n36\tflexible\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tmanufacturing\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tsystems\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n39\tto\t_\tADP\tTO\t_\t43\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\tSoviet\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\taviation\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tindustry\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tOlivetti\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\treportedly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tshipping\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttools\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1984\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tState\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tDepartment\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tacknowledged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tdiscussing\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tallegations\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tItalian\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tgovernment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tCocom\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n21\tdeclined\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tconfirm\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tany\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tdetails\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tItalian\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\tPresident\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFrancesco\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCossiga\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tpromised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tquick\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestigation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tinto\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\twhether\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tOlivetti\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tbroke\t_\tVERB\tVBD\t_\t8\tacl\t_\t_\n13\tCocom\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\trules\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPresident\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tattention\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmatter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tItalian\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tleader\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tvisit\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n15\there\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOlivetti\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdenied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tviolated\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tCocom\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\trules\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tasserting\t_\tVERB\tVBG\t_\t3\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\treported\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tshipments\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n16\tproperly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tlicensed\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tItalian\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tauthorities\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlegality\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsales\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n8\tstill\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\topen\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tquestion\t_\tNOUN\tNN\t_\t19\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdisclosure\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n15\tcould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n18\tbetter\t_\tADV\tRBR\t_\t19\tadvmod\t_\t_\n19\ttimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tsupport\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tposition\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\texport-control\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\thawks\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tPentagon\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tintelligence\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tcommunity\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tme\t_\tPRON\tPRP\t_\t3\tnmod\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstory\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tlike\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tthis\t_\tPRON\tDT\t_\t8\tnmod\t_\t_\n11\tbreaks\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n12\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n13\tbefore\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tevery\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\timportant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tCocom\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tmeeting\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tWashington\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tlobbyist\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tnumber\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tcomputer\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcompanies\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tBush\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tsent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tconflicting\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsignals\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\texport-control\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpolicies\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\treflecting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n14\tunhealed\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdivisions\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tamong\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tseveral\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tcompeting\t_\tVERB\tVBG\t_\t19\tamod\t_\t_\n19\tagencies\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tsummer\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBush\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tadministration\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdirection\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tgradual\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tliberalization\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\ttold\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tNorth\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tAtlantic\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tTreaty\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tOrganization\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tmeeting\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tallow\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n28\tsome\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\texceptions\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tCocom\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tembargo\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tstrategic\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tgoods\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n3\trecently\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tPentagon\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tCommerce\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDepartment\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n11\topenly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tfeuded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tover\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\textent\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n18\tCocom\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n19\tshould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tliberalize\t_\tVERB\tVB\t_\t15\tacl:relcl\t_\t_\n21\texports\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tpersonal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcomputers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbloc\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagencies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tgenerally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tWest\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\tshould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\tcautious\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n13\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tany\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tfurther\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tliberalization\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tevidence\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSoviet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprogram\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n10\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t12\tpunct\t_\t_\n12\tillegally\t_\tADV\tRB\t_\t14\tdep\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t12\tpunct\t_\t_\n14\tacquire\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n15\tWestern\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\ttechnology\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\tdiminished\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tState\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tspokesman\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSalomon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBrothers\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tInternational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLtd.\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tBritish\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsubsidiary\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tSalomon\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tissue\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n17\twarrants\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tHong\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tKong\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tTelecommunications\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tLtd\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmove\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tclosely\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tfollows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsimilar\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\toffer\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tSalomon\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\twarrants\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tHongkong\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n16\t&\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tShanghai\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tBanking\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCorp\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlatest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\toffer\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n6\tHK$\t_\tSYM\t$\t_\t19\tnsubjpass\t_\t_\n7\t62.5\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tUS$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n11\t8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthree-year\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\twarrants\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n17\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\tissued\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tLondon\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\teach\t_\tDET\tDT\t_\t24\tnsubj\t_\t_\n24\tgiving\t_\tVERB\tVBG\t_\t19\tdep\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t24\tiobj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tright\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbuy\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\tone\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n31\tHong\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n32\tKong\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tTelecommunications\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tshare\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n35\tat\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tprice\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n38\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tdetermined\t_\tVERB\tVBN\t_\t37\tacl\t_\t_\n41\tFriday\t_\tPROPN\tNNP\t_\t40\tnmod:tmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t50\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\twarrants\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\tauxpass\t_\t_\n7\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tHK$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t1.25\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n11\teach\t_\tDET\tDT\t_\t10\tdep\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tare\t_\tAUX\tVBP\t_\t14\tauxpass\t_\t_\n14\texpected\t_\tVERB\tVBN\t_\t7\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcarry\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpremium\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tprice\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tabout\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\t26\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\ttrading\t_\tVERB\tVBG\t_\t13\tnmod\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tHong\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tKong\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tWednesday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tHK$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t4.80\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\teach\t_\tDET\tDT\t_\t17\tdep\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\trise\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tabove\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tHK$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t6.05\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n15\tsubscribers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tSalomon\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tissue\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n21\tprofitably\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tconvert\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\twarrants\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n2\tHong\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tKong\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tcompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpast\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n9\tissued\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n10\twarrants\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\town\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tshares\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n16\tSalomon\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\twarrants\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfirst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n22\there\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tissued\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tthird\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tparty\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tSalomon\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n4\tcover\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\twarrants\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tby\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tbuying\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n10\tsufficient\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\toptions\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpurchase\t_\tNOUN\tNN\t_\t14\tdep\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tcover\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tentire\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tposition\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBankers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\twarrants\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tHong\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tKong\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t9\tcop\t_\t_\n9\tattractive\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n10\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tgive\t_\tVERB\tVBP\t_\t9\tadvcl\t_\t_\n13\tforeign\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t12\tiobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twary\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tvolatility\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcolony\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmarket\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\topportunity\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbuy\t_\tVERB\tVB\t_\t27\tacl\t_\t_\n30\tshares\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\twithout\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\ttaking\t_\tVERB\tVBG\t_\t29\tadvcl\t_\t_\n33\ttoo\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tgreat\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\trisk\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tHong\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tKong\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tTelecommunications\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\twarrants\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tshould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tattractive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tbuyers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tEurope\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbankers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tadded\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tbecause\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tgroup\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tone\t_\tNUM\tCD\t_\t8\tadvcl\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\thandful\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tblue-chip\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tstocks\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tHong\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tKong\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tthat\t_\tPRON\tWDT\t_\t35\tnsubj\t_\t_\n35\thas\t_\tVERB\tVBZ\t_\t28\tacl:relcl\t_\t_\n36\tinternational\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tappeal\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tSanta\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBarbara\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tfiled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tsuit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tagainst\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tformer\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n11\tspeculator\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n12\tIvan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tF.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBoesky\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tDrexel\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tBurnham\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tLambert\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tInc.\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\tcharging\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tdefrauded\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tthrift\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tby\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\tconcealing\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\trelationship\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n31\tpersuading\t_\tVERB\tVBG\t_\t27\tadvcl\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tbuy\t_\tVERB\tVB\t_\t31\txcomp\t_\t_\n35\t$\t_\tSYM\t$\t_\t34\tdobj\t_\t_\n36\t284\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\tmillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n38\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n39\thigh-yield\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n41\thigh-risk\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\tjunk\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tbonds\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsuit\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n4\tfiled\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tThursday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tS&L\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\talleged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n16\tdisproportionate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tnumber\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbonds\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tpurchased\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t1984\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n26\tdeclined\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tvalue\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpurchased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsuit\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\talleged\t_\tVERB\tVBD\t_\t3\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tafter\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBoesky\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tDrexel\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\tnegotiated\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tagreement\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tfor\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tVagabond\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHotels\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tpurchase\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t51\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t27\tamod\t_\t_\n27\tstake\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tthrift\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tabout\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n34\t34\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tVagabond\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHotels\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tcontrolled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBoesky\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t12\tnsubj\t_\t_\n10\tcurrently\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tserving\t_\tVERB\tVBG\t_\t7\tacl:relcl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tprison\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tterm\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tsecurities\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tviolations\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOfficials\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tDrexel\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tseen\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsuit\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tthus\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tcomment\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t8\tamod\t_\t_\n5\t33\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tcompensatory\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdamages\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsuit\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tseeks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t100\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tpunitive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdamages\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tsuit\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t2\tauxpass\t_\t_\n7\tIvan\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tF.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBoesky\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t2\tnsubjpass\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tNorthview\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsuccessor\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tVagabonds\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHotels\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNorthview\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tlocated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tafter\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\trepresentative\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tIvan\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tF.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tBoesky\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCorp.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\tvisited\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t18\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tNovember\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t1983\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t18\tconj\t_\t_\n25\tFinancial\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n27\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\timprove\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\tfinancial\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcondition\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tby\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n33\tpurchasing\t_\tVERB\tVBG\t_\t28\tadvcl\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tbonds\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tShortly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tbefore\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tvisit\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBoesky\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tDrexel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\trepresentives\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tmet\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tFinancial\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tofficials\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tsigned\t_\tVERB\tVBN\t_\t12\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tletter\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tintent\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tacquire\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\t51\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\t%\t_\tSYM\tNN\t_\t29\tamod\t_\t_\n29\tstake\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcompany\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tagreement\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tcanceled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJune\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t1984\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFinancial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpurchased\t_\tVERB\tVBD\t_\t29\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tleast\t_\tADJ\tJJS\t_\t9\tnmod:npmod\t_\t_\n9\t70\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tdifferent\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttransactions\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t1984\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tthen\t_\tADV\tRB\t_\t18\tnmod\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n18\trealized\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n19\t$\t_\tSYM\t$\t_\t18\tdobj\t_\t_\n20\t11\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tlosses\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tthem\t_\tPRON\tPRP\t_\t18\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tcompany\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBasic\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tIndustries\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tdirectors\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\treached\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tagreement\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tprinciple\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tcalling\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tHOFI\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tNorth\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAmerica\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tInc.\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tcombine\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n22\tNorth\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tAmerican\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tcement\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tholdings\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n26\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tIdeal\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\ttransaction\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n32\twill\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\tleave\t_\tVERB\tVB\t_\t30\tacl:relcl\t_\t_\n34\tIdeal\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tminority\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tshareholders\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n38\twith\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\t12.8\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\t%\t_\tSYM\tNN\t_\t33\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tcombined\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tcompany\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHOFI\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tNorth\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tAmerican\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tholding\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tSwiss\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\tconcern\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n11\tHolderbank\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFinanciere\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tGlaris\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tLtd.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tpreviously\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tproposed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tcombining\t_\tVERB\tVBG\t_\t17\txcomp\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\t100\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\t%\t_\tSYM\tNN\t_\t22\tamod\t_\t_\n22\tstake\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tSt.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n25\tLawrence\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tCement\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n30\t60\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t32\tamod\t_\t_\n32\tstake\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tDundee\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tCement\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tCo.\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n37\twith\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\tits\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n39\t67\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\t%\t_\tSYM\tNN\t_\t41\tamod\t_\t_\n41\tstake\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n42\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\tIdeal\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tHOFI\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toffer\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\tgiven\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tIdeal\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshareholders\t_\tNOUN\tNNS\t_\t8\tiobj\t_\t_\n13\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\t10\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcombined\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcompany\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tdirectors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\toffer\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\talthough\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tendorsed\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmerger\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tproposal\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tHOFI\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\town\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\t87.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcombined\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tcurrent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\toperations\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\trepresent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\t39.2\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcombined\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttransaction\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tdefinitive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tagreement\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tapproval\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tIdeal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tshareholders\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIdeal\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcomplete\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttransaction\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tearly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tnext\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tcorn\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tsoybean\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tslumped\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n8\twell\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n9\tbelow\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tdrought-induced\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tpeaks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\twheat\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tremain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\tstubbornly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\thigh\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tlikely\t_\tADJ\tJJ\t_\t15\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tstay\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tway\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tmonths\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tcome\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tanalysts\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\teven\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tfarmers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tplanting\t_\tVERB\tVBG\t_\t22\tadvcl\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n11\twinter\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\twheat\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n15\tthan\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n18\ttight\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\twheat\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsupplies\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\tlikely\t_\tADJ\tJJ\t_\t32\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tsupport\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n26\twell\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tinto\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1990\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tanalysts\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n32\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\train\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tdoes\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tfall\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n7\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tacross\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tGreat\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPlains\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t'\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\twheat-growing\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tareas\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n18\tyields\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcrop\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tnow\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n23\tbeing\t_\tAUX\tVBG\t_\t24\tauxpass\t_\t_\n24\tplanted\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n25\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\treduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tfurther\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tsqueezing\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n31\tsupplies\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tsupporting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t2\taux\t_\t_\n5\texpectations\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSoviet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUnion\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tplace\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n12\tsubstantial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbuying\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\torders\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tnext\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tnext\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tMay\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n4\t31\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\twheat\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\tcarried\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n13\tover\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tnext\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tseason\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n19\tbefore\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\twinter\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\twheat\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n23\tnow\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\tbeing\t_\tAUX\tVBG\t_\t25\tauxpass\t_\t_\n25\tplanted\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t27\tauxpass\t_\t_\n27\tharvested\t_\tVERB\tVBN\t_\t12\tparataxis\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n29\tare\t_\tAUX\tVBP\t_\t30\tauxpass\t_\t_\n30\tprojected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tdrop\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n34\t443\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tbushels\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n3\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlowest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tlevel\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tsince\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tearly\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\t1970s\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\t698\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tbushels\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tMay\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t31\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tresponse\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tdwindling\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n5\tdomestic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsupplies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n8\tAgriculture\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tSecretary\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tClayton\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tYeutter\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tgovernment\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tslightly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tincrease\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tnumber\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tacres\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tfarmers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tcan\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tplant\t_\tVERB\tVB\t_\t22\tacl:relcl\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\twheat\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tnext\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n34\tstill\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tqualify\t_\tVERB\tVB\t_\t27\tconj\t_\t_\n36\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tfederal\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tsupport\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tpayments\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\testimates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tplan\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tboost\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\tproduction\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tnext\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n15\t66\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tbushels\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\testimates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tproduction\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tnext\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tjust\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tunder\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n11\t2.6\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tbushels\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tcompared\t_\tVERB\tVBN\t_\t18\tcase\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t's\t_\tVERB\tVBZ\t_\t18\tcase\t_\t_\n20\testimated\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n21\t2.04\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tdrought-stunted\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\t1.81\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tbillion\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfull\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\teffect\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\twinter\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\twheat\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tnow\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tbeing\t_\tAUX\tVBG\t_\t13\tauxpass\t_\t_\n13\tplanted\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n14\two\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tfelt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tuntil\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsecond\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\thalf\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tnext\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthen\t_\tADV\tRB\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tlimited\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tstocks\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\tlikely\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tkeep\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tnear\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n14\t4-a-bushel\t_\tADJ\tJJ\t_\t13\tdep\t_\t_\n15\tlevel\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tanalysts\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tChicago\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBoard\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tTrade\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\twheat\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tDecember\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tdelivery\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t4.0675\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbushel\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tunchanged\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\ttheory\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\tat\t_\tADP\tIN\t_\t2\tadvmod\t_\t_\n4\tleast\t_\tADJ\tJJS\t_\t3\tmwe\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\ttight\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsupplies\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tspring\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\tcould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tleave\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\twheat\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsusceptible\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n17\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tsupply-demand\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tsqueeze\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tDaniel\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tBasse\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tfutures\t_\tNOUN\tNNS\t_\t28\tcompound\t_\t_\n28\tanalyst\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n29\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tAgResource\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tCo.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tChicago\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tSuch\t_\tDET\tPDT\t_\t3\tdet:predet\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsituation\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\twreak\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\thavoc\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\tshown\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\temergency\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\tdeveloped\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tsoybean\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tfutures\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsummer\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n22\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tChicago\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBoard\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tTrade\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tCBOT\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tFerruzzi\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tFinanziaria\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tS.p\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n11\tA.\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tliquidate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n14\tfutures\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tpositions\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tequal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n17\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n18\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\t23\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbushels\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsoybeans\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tfeared\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmembers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\table\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tfind\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tenough\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsoybeans\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdeliver\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n20\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\thave\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdefault\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tcontractual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tobligation\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tItalian\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tconglomerate\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\twhich\t_\tPRON\tWDT\t_\t35\tnsubj\t_\t_\n34\thad\t_\tAUX\tVBD\t_\t35\taux\t_\t_\n35\trefused\t_\tVERB\tVBN\t_\t31\tacl:relcl\t_\t_\n36\trequests\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n37\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n38\treduce\t_\tVERB\tVB\t_\t36\tacl\t_\t_\n39\tits\t_\tPRON\tPRP$\t_\t40\tnmod:poss\t_\t_\n40\tholdings\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFerruzzi\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdenied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\ttrying\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tmanipulate\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tsoybean\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tfutures\t_\tNOUN\tNNS\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnseasonably\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\thot\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n4\tdry\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tweather\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n6\tacross\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tlarge\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tportions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tGreat\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tPlains\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\twheat-growing\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tareas\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tWashington\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tOregon\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tthreatening\t_\tVERB\tVBG\t_\t35\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\treduce\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tyield\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tseason\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\twinter\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n32\twheat\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tcrop\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tConrad\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tLeslie\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tfutures\t_\tNOUN\tNNS\t_\t41\tcompound\t_\t_\n41\tanalyst\t_\tNOUN\tNN\t_\t37\tappos\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t41\tcc\t_\t_\n43\thead\t_\tNOUN\tNN\t_\t41\tconj\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tLeslie\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tAnalytical\t_\tPROPN\tNNP\t_\t43\tnmod\t_\t_\n47\tin\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tChicago\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tOklahoma\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tpanhandle\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n9\t40\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t17\tnsubj\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t10\tnummod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttopsoil\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tshort\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tmoisture\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfigure\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tclimbs\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t47\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t3\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\twheat-growing\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tportions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tKansas\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSoviet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tUnion\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tgiven\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tclear\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tindication\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n12\twheat\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tpurchase\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplans\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tmany\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tanalysts\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\texpect\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n20\tMoscow\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tplace\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n23\tsizable\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\torders\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tU.S.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\twheat\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\tnext\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tfew\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmonths\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n34\tfurther\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tsupporting\t_\tVERB\tVBG\t_\t22\tadvcl\t_\t_\n36\tprices\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tWheat\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tincreasingly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tpivot\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n7\toff\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tSoviet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdemand\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tcoming\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tweeks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n16\tpredicted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tRichard\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tFeltes\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tvice\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tpresident\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tresearch\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tRefco\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tChicago\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tLooking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tahead\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcommodity\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarkets\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tweek\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\tOrange\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tJuice\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tTraders\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\twatching\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsee\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\thow\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n10\tlong\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\thow\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n13\tfar\t_\tADV\tRB\t_\t10\tdep\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tprice\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tdecline\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tgo\t_\tVERB\tVB\t_\t8\tdep\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLate\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\tThursday\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\tafter\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tclose\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t24\tnsubj\t_\t_\n14\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n15\tnormally\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n16\thave\t_\tAUX\tVB\t_\t24\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t24\tcop\t_\t_\n18\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n19\tbullish\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t24\tdep\t_\t_\n21\tDepartment\t_\tPROPN\tNNP\t_\t20\tdep\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tAgriculture\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\testimate\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n27\t1989-90\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n28\tFlorida\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\torange\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tcrop\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n3\tnear\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlow\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\trange\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\testimates\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\t130\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n13\t90-pound\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tboxes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcompared\t_\tVERB\tVBN\t_\t20\tcase\t_\t_\n17\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t146.6\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tboxes\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\tlast\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tseason\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tBrazil\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twaited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfor\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcrop\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\testimate\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcome\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n16\tthen\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tcut\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\texport\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprice\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tjuice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tconcentrate\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tabout\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n28\t1.34\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpound\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n31\tfrom\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\taround\t_\tADP\tIN\t_\t33\tadvmod\t_\t_\n33\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n34\t1.55\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tconsequent\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tselling\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tfutures\t_\tNOUN\tNNS\t_\t7\tcompound\t_\t_\n7\tcontracts\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\terased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\twhatever\t_\tDET\tWDT\t_\t11\tdet\t_\t_\n10\tsupportive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\teffect\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\treport\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tmight\t_\tAUX\tMD\t_\t17\taux\t_\t_\n16\thave\t_\tAUX\tVB\t_\t17\taux\t_\t_\n17\thad\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n19\tsent\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tNovember\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\torange\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tjuice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcontract\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n25\tdown\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n26\tas\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n27\tmuch\t_\tADJ\tJJ\t_\t29\tadvmod\t_\t_\n28\tas\t_\tADP\tIN\t_\t29\tadvmod\t_\t_\n29\t6.55\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tpound\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\tat\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tone\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\ttime\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsettled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tloss\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t4.95\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tcents\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t1.3210\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpound\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBrazilian\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tjuice\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n4\tafter\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdelay\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n7\tcaused\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdrought\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstart\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tcrop\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tseason\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tbeginning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tarrive\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tlarge\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tquantities\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tBrazil\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\twants\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tstimulate\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tdemand\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tproduct\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tgoing\t_\tVERB\tVBG\t_\t8\tacl:relcl\t_\t_\n13\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t17\tcop\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tplentiful\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsupply\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprice\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcut\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tanalyst\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t9\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\taimed\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n13\teven\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tEurope\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twhere\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n19\tconsumption\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tBrazilian\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tjuice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\tfallen\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tdollar-priced\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproduct\t_\tNOUN\tNN\t_\t21\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstrong\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdollar\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tmade\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tmore\t_\tADV\tRBR\t_\t15\tadvmod\t_\t_\n15\texpensive\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tEurope\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tanalyst\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tfutures\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tdropped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tsignificantly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tmore\t_\tADJ\tJJR\t_\t11\tadvmod\t_\t_\n10\tthan\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n12\t2\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpound\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmidyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBarring\t_\tVERB\tVBG\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcold\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tsnap\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcrop\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproblems\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgrowing\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tareas\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n14\tdownward\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpressure\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n16\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n19\tlikely\t_\tADJ\tJJ\t_\t39\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tcontinue\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tJanuary\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twhen\t_\tADV\tWRB\t_\t33\tadvmod\t_\t_\n26\tharvesting\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tprocessing\t_\tNOUN\tNN\t_\t26\tconj\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\toranges\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tFlorida\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n33\treach\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n34\ttheir\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n35\tpeak\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tanalyst\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n39\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t39\tpunct\t_\t_\n\n1\tEnergy\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tlook\t_\tVERB\tVBP\t_\t25\tadvcl\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tprofit-taking\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\twake\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tleap\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tcrude\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\toil\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tweek\t_\tNOUN\tNN\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\trally\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n24\tgenerally\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tcontinue\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthis\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tweek\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcontinue\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tlook\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tstable\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcrude\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tat\t_\tADP\tIN\t_\t18\tadvmod\t_\t_\n14\tleast\t_\tADJ\tJJS\t_\t13\tmwe\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tfutures\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tWilliam\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tHinton\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tenergy\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tfutures\t_\tNOUN\tNNS\t_\t27\tcompound\t_\t_\n27\tbroker\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n28\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tStotler\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t&\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tCo\t_\tPROPN\tNNP\t_\t29\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tcapped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tweek\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tsteadily\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\trising\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n8\tcrude\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\toil\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tboth\t_\tCONJ\tCC\t_\t13\tcc:preconj\t_\t_\n13\tfutures\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tspot\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarkets\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tYork\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tMercantile\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tTexas\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIntermediate\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcrude\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tNovember\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdelivery\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfinished\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t20.89\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbarrel\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n23\t42\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tcents\t_\tNOUN\tNNS\t_\t22\tnmod:npmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tday\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tEuropean\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmarkets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\tmeanwhile\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tspot\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tNorth\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tSea\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tcrudes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tup\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t35\t_\tNUM\tCD\t_\t14\tnmod:npmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\t75\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbarrel\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\twants\t_\tVERB\tVBZ\t_\t11\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tgo\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\thigher\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tNauman\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBarakat\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tvice\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpresident\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tShearson\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tLehman\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tHutton\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpredicted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tNovember\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tcontract\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\treach\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t21.50\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tbarrel\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t10\tnummod\t_\t_\n15\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tYork\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tMercantile\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tExchange\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t5\texpl\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n4\tlittle\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\taccount\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tsuch\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbuoyancy\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\toil\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tmarkets\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tgenerally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tcite\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlack\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tbearish\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdevelopments\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tas\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n10\twell\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n11\tas\t_\tADP\tIN\t_\t5\tamod\t_\t_\n12\trumors\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tpossible\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\ttightening\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tsupplies\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tsome\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tfuels\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tcrudes\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\trecurring\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\treports\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSoviet\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUnion\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\thaving\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n12\tdifficulties\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\toil\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\texports\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tNigeria\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n21\tabout\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\treached\t_\tVERB\tVBN\t_\t11\tconj\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tproduction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tlimit\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\tca\t_\tAUX\tMD\t_\t29\taux\t_\t_\n28\tn't\t_\tPART\tRB\t_\t29\tneg\t_\t_\n29\tproduce\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n30\tas\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tmuch\t_\tADJ\tJJ\t_\t29\tdobj\t_\t_\n32\tas\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\tcould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tsell\t_\tVERB\tVB\t_\t31\tacl:relcl\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\ttraders\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tforesee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttightening\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tnear-term\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsupplies\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tparticularly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\thigh-quality\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcrudes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n15\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tthose\t_\tPRON\tDT\t_\t13\tnmod\t_\t_\n17\tproduced\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tNorth\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSea\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tNigeria\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\thostile\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tpredator\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\temerges\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n6\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tSaatchi\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tSaatchi\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\tCo.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n12\tco-founders\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n13\tCharles\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tMaurice\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSaatchi\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tlead\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tmanagement\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tbuy-out\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tattempt\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tofficial\t_\tADJ\tJJ\t_\t30\tnsubj\t_\t_\n26\tclose\t_\tNOUN\tNN\t_\t25\tamod\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tFinancing\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tany\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttakeover\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tattempt\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tproblematic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\twake\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tstock-market\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsell-off\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tNew\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tYork\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n21\tturmoil\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tjunk-bond\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tbeleaguered\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tBritish\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tadvertising\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tconsulting\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tgiant\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tweek\t_\tNOUN\tNN\t_\t13\tdep\t_\t_\n13\tnamed\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tchief\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\texecutive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tofficer\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\treplace\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tMaurice\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tSaatchi\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n24\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n25\tbeen\t_\tVERB\tVBN\t_\t27\tcop\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tsubject\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tintense\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\ttakeover\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tspeculation\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tweeks\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tSaatchi\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tlargest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tshareholder\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tSoutheastern\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tAsset\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tManagement\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t17\tnsubjpass\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tapproached\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n18\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tone\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t19\tconj\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tparties\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\tinterested\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tpossible\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\trestructuring\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tCarl\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSpielvogel\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\texecutive\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tofficer\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n9\tSaatchi\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tbig\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n12\tBacker\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tSpielvogel\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tBates\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tadvertising\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tunit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\thad\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\toffered\t_\tVERB\tVBN\t_\t18\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tlead\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tmanagement\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tbuy-out\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tbut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n32\twas\t_\tAUX\tVBD\t_\t33\tauxpass\t_\t_\n33\trebuffed\t_\tVERB\tVBN\t_\t21\tconj\t_\t_\n34\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tCharles\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tSaatchi\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSpielvogel\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tlaunch\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\thostile\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbid\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tclose\t_\tADV\tRB\t_\t2\tamod\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tSaatchi\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tSaatchi\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t35\tpunct\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbidder\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tcame\t_\tVERB\tVBD\t_\t35\tadvcl\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tludicrously\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\thigh\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\toffer\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tcrazy\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\toffer\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n25\twhich\t_\tPRON\tWDT\t_\t27\tdobj\t_\t_\n26\tSaatchi\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\tknew\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n29\tcould\t_\tAUX\tMD\t_\t31\taux\t_\t_\n30\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n31\tbeat\t_\tVERB\tVB\t_\t27\tccomp\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n33\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\twould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\thave\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n36\tno\t_\tDET\tDT\t_\t37\tneg\t_\t_\n37\tchoice\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tbut\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\trecommend\t_\tVERB\tVB\t_\t37\tacl\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t40\tdobj\t_\t_\n42\tto\t_\tADP\tTO\t_\t43\tcase\t_\t_\n43\tshareholders\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\t-LCB-\t_\tPUNCT\t-LRB-\t_\t3\tpunct\t_\t_\n3\totherwise\t_\tADV\tRB\t_\t8\tdep\t_\t_\n4\t-RCB-\t_\tPUNCT\t-RRB-\t_\t3\tpunct\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tundoubtedly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tback\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n11\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\toffer\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmanagement\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tany\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbuy-out\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tled\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tboard\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhose\t_\tPRON\tWP$\t_\t15\tnmod:poss\t_\t_\n15\tchairman\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n17\tMaurice\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tSaatchi\t_\tPROPN\tNNP\t_\t12\tacl:relcl\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\twhose\t_\tPRON\tWP$\t_\t23\tnmod:poss\t_\t_\n21\tstrategic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tguiding\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tforce\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n25\tbelieved\t_\tVERB\tVBN\t_\t18\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n27\tbe\t_\tVERB\tVB\t_\t29\tcop\t_\t_\n28\tCharles\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tSaatchi\t_\tPROPN\tNNP\t_\t25\txcomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSpielvogel\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tpart\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tboard\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tnor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n12\tany\t_\tDET\tDT\t_\t11\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\theads\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tSaatchi\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tbig\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tU.S.-based\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tad\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tagencies\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tname\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tprice\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\tsecurities\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n11\tanalysts\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n14\tSaatchi\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tfetch\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n17\tupward\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n19\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n20\t1.3\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutive\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tdenied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tspeculation\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tSaatchi\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tbringing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n9\tin\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\texecutive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tofficer\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n15\tonly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tclean\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tfinancially\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n22\tso\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t22\tmwe\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tbrothers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tlead\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tbuy-back\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspeculation\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tabounded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tindustry\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\texecutives\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tanalyzed\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tappointment\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tchief\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\texecutive\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tRobert\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tLouis-Dreyfus\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\twho\t_\tPRON\tWP\t_\t21\tnsubj\t_\t_\n21\tjoins\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n22\tSaatchi\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\tbecomes\t_\tVERB\tVBZ\t_\t21\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tmember\t_\tNOUN\tNN\t_\t24\txcomp\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tboard\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tJan.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n32\t1\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLouis-Dreyfus\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tformerly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\texecutive\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n9\tpharmaceutical\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\tresearch\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n11\tfirm\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n12\tIMS\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tInternational\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\treputation\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tsavvy\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tfinancial\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmanager\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n26\twill\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tbe\t_\tAUX\tVB\t_\t28\tauxpass\t_\t_\n28\tcharged\t_\tVERB\tVBN\t_\t16\tconj\t_\t_\n29\tlargely\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n30\twith\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n31\trepairing\t_\tVERB\tVBG\t_\t28\tadvcl\t_\t_\n32\tSaatchi\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tpoor\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tfinancial\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tstate\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n2\tabout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tspeculation\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tLouis-Dreyfus\t_\tPROPN\tNNP\t_\t10\tnsubjpass\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\tauxpass\t_\t_\n10\thired\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tpave\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tway\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbuy-out\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbrothers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\texecutive\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n27\tThat\t_\tPRON\tDT\t_\t31\tnsubj\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n29\tn't\t_\tPART\tRB\t_\t31\tneg\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\treason\t_\tNOUN\tNN\t_\t24\tccomp\t_\t_\n32\tDreyfus\t_\tPROPN\tNNP\t_\t35\tnsubjpass\t_\t_\n33\thas\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n34\tbeen\t_\tAUX\tVBN\t_\t35\tauxpass\t_\t_\n35\tbrought\t_\tVERB\tVBN\t_\t31\tacl:relcl\t_\t_\n36\tin\t_\tADP\tRP\t_\t35\tcompound:prt\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tbrought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tturn\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\taround\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tseveral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tSaatchi\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tagency\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tclients\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tbelieve\t_\tVERB\tVBP\t_\t7\tccomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tshakeup\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\thave\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n17\tlittle\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\taffect\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\thad\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\timpact\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tus\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tnor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n12\tdo\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n13\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\texpect\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t14\txcomp\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tspokeswoman\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tMiller\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tBrewing\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tmajor\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tclient\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tBacker\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tSpielvogel\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLampe\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tdirector\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tadvertising\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tPaineWebber\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tSaatchi\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tSaatchi\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAdvertising\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tclient\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t:\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n21\tWe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\thave\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n23\tno\t_\tDET\tDT\t_\t24\tneg\t_\t_\n24\tproblem\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tannouncement\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n29\tbecause\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n30\twe\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n31\tdo\t_\tAUX\tVBP\t_\t33\taux\t_\t_\n32\tn't\t_\tPART\tRB\t_\t33\tneg\t_\t_\n33\tknow\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n34\twhat\t_\tPRON\tWP\t_\t35\tdet\t_\t_\n35\tchange\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n36\tit\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n37\t's\t_\tAUX\tVBZ\t_\t38\taux\t_\t_\n38\tgoing\t_\tVERB\tVBG\t_\t33\tccomp\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tbring\t_\tVERB\tVB\t_\t38\txcomp\t_\t_\n41\tabout\t_\tADP\tRP\t_\t40\tcompound:prt\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tchange\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tagencies\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tbecause\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tchange\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tLondon\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tExecutives\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tBacker\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tSpielvogel\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tclient\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tAvis\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tas\t_\tADV\tRB\t_\t7\tcc\t_\t_\n10\twell\t_\tADV\tRB\t_\t9\tmwe\t_\t_\n11\tas\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n12\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tSaatchi\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n14\tclient\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n15\tPhilips\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tLighting\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\talso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tsaw\t_\tVERB\tVBD\t_\t20\tccomp\t_\t_\n23\tno\t_\tDET\tDT\t_\t24\tneg\t_\t_\n24\teffect\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tExecutives\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tPrudential-Bache\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSecurities\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tBacker\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSpielvogel\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tclient\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n13\treviewing\t_\tVERB\tVBG\t_\t10\tacl:relcl\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\taccount\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tcomment\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSpielvogel\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tPrudential-Bache\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tauxpass\t_\t_\n8\tprepared\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfinance\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\teither\t_\tCONJ\tCC\t_\t14\tcc:preconj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmanagement\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tbuy-out\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\trestructuring\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tbuy-out\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tBacker\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tSpielvogel\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\talone\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n26\tled\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n27\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\thim\t_\tPRON\tPRP\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAd\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tNotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNEW\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tACCOUNT\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tCalifornia\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tGlendale\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBank\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tawarded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n8\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n9\t12\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\taccount\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tLos\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tAngeles\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\toffice\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tOmnicom\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tGroup\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tBBDO\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tagency\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccount\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tpreviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thandled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tDavis\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tBall\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tColombatto\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\tAdvertising\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tLos\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAngeles\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tagency\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tACCOUNT\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tREVIEW\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tRoyal\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tCrown\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tCola\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\trelationship\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\toffice\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n14\tHill\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tHolliday\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tConnors\t_\tPROPN\tNNP\t_\t20\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\tCosmopulos\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taccount\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tbilled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n7\t6\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1988\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\taccording\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\tLeading\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tNational\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAdvertisers\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNOT-GUILTY\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPLEA\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\texpected\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\tYoung\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tRubicam\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n8\talong\t_\tADP\tIN\t_\t7\tadvmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tsenior\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\texecutives\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tformer\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\temployee\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\tpleaded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tnot\t_\tADV\tRB\t_\t20\tneg\t_\t_\n20\tguilty\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tfederal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcourt\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tHaven\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tConn.\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n30\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n31\tconspiracy\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tracketeering\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n34\tcharges\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tcharged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tbribed\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tJamaican\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficials\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\twin\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tJamaica\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\tTourist\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tBoard\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tad\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\taccount\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t1981\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAttorney\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\toffice\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\textradition\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproceedings\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tjust\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tbeginning\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttwo\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tdefendants\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcase\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n26\tEric\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tAnthony\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tAbrahams\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tformer\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n31\tJamaican\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\ttourism\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tminister\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n36\tJamaican\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n37\tbusinessman\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n38\tArnold\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\tFoote\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tJr\t_\tPROPN\tNNP\t_\t28\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tKOREAN\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tAGENCY\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSamsung\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGroup\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tBozell\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tagreed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\testablish\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tjoint\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tventure\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tadvertising\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tagency\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tSouth\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tKorea\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBozell\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCheil\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t15\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tagency\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tcalled\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tSeoul\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n20\t70\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t22\tdobj\t_\t_\n22\towned\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tSamsung\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\t30\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tdobj\t_\t_\n28\towned\t_\tVERB\tVBN\t_\t22\tconj\t_\t_\n29\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tBozell\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tSamsung\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talready\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\towns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tKorea\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tFirst\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tAdvertising\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthat\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcountry\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tlargest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n13\tagency\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBozell\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tjoins\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tBacker\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSpielvogel\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBates\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tOgilvy\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGroup\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tagencies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tinterests\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tKorean\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tagencies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCiting\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpayment\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsupplier\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsales\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tcertain\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tdata-storage\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tproducts\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tMaxtor\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tearnings\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\trevenue\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n21\tjumped\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tsecond\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tquarter\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tended\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tSept.\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n28\t24\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmaker\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcomputer-data-storage\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproducts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tnet\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t4.8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t23\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tnet\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t1.1\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\tfive\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tsoared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t117\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n9\t81.5\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMaxtor\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tboosted\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n9\t2\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tpayments\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\treceived\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsupplier\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tcertain\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tline\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tproducts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\tthat\t_\tADP\tIN\t_\t28\tdobj\t_\t_\n25\tMaxtor\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n26\tis\t_\tAUX\tVBZ\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\tgoing\t_\tVERB\tVBG\t_\t21\tacl:relcl\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tsell\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tanymore\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMaxtor\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\teffects\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\tfrom\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n5\tdiscontinuing\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tline\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thave\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tpositive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\teffect\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tfuture\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\trevenue\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokeswoman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\telaborate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcompany\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tdiscontinued\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n13\tproduct\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n15\tnever\t_\tADV\tRB\t_\t19\tneg\t_\t_\n16\tbeen\t_\tVERB\tVBN\t_\t19\tcop\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsource\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\trevenue\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tprofit\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOperationally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tMaxtor\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tbenefited\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\trobust\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tproducts\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\tstore\t_\tVERB\tVBP\t_\t9\tacl:relcl\t_\t_\n12\tdata\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\thigh-end\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tpersonal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcomputers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tcomputer\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tworkstations\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfiscal\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\thalf\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tnet\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n10\t7\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t34\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcents\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\tup\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n24\t3.1\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\t15\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcents\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t225.5\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n9\t161.8\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tWalden\t_\tPROPN\tNNP\t_\t10\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t62\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tyears\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n7\told\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\telected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdirector\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tprovider\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tadvanced\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\ttechnology\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tsystems\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tservices\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tincreasing\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tboard\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\teight\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tmembers\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tretired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tsenior\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tfinance\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tadministration\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tchief\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tfinancial\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tOct.\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n20\t1\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSouthmark\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tfiled\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tpart\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\t10-K\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\treport\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\tSecurities\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tExchange\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tCommission\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfiling\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\tdoes\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tinclude\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n27\taudited\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tfinancial\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tstatements\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\trelated\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tinformation\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\testate\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tthrift\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tconcern\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\toperating\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n9\tunder\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tbankruptcy-law\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tproceedings\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\ttold\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tSEC\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tprovide\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n22\tfinancial\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstatements\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tend\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tfirst\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\textension\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n32\twithout\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tunreasonable\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tburden\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n35\tor\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\texpense\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tasked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t15-day\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\textension\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tSept.\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n9\t30\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\treports\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n16\tdue\t_\tADJ\tJJ\t_\t8\tacl:relcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSouthmark\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tplans\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tamend\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\t10K\t_\tADJ\tJJ\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tprovide\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n11\tfinancial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tresults\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsoon\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\taudit\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\tauxpass\t_\t_\n19\tcompleted\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSeelenfreund\t_\tPROPN\tNNP\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t52\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\told\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tchairman\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprocessor\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tprescription\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tclaims\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tsucceeding\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n19\tThomas\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tW.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tField\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tJr.\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\t55\t_\tNUM\tCD\t_\t22\tamod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\tresigned\t_\tVERB\tVBD\t_\t22\tacl:relcl\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmonth\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tField\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n6\tchairman\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tMcKesson\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tresigning\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n12\tthat\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tpost\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdispute\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tboard\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tcorporate\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstrategy\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSeelenfreund\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\texecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tchief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tfinancial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tMcKesson\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tcontinue\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthose\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\troles\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPCS\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tnamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tRex\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tR.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMalson\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t57\t_\tNUM\tCD\t_\t6\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\texecutive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tvice\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tpresident\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tMcKesson\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdirector\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n20\tfilling\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tseat\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tvacated\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tMr.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tField\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMessrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMalson\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tSeelenfreund\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n6\tdirectors\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tMcKesson\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n12\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t86\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tstake\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tPCS\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMedChem\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tProducts\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tDistrict\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCourt\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tBoston\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\truled\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tchallenge\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n15\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tMedChem\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tvalidity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tpatent\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\theld\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tPharmacia\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tInc.\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n30\twithout\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tmerit\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tPharmacia\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tbased\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tUpsala\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tSweden\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tcharged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlawsuit\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tMedChem\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n17\tMedChem\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tAMVISC\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tproduct\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tline\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tinfringes\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n23\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tPharmacia\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tpatent\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpatent\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t4\tauxpass\t_\t_\n4\trelated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\thyaluronic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tacid\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\trooster-comb\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\textract\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\tused\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\teye\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsurgery\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tlawsuit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tPharmacia\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\tunspecified\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tdamages\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tpreliminary\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinjunction\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tblock\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tMedChem\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n17\tfrom\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tselling\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tAMVISC\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tproducts\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tMedChem\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tcontribute\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tnummod\t_\t_\n10\tthird\t_\tADJ\tJJ\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tMedChem\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tsales\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t10\tconj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tearnings\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n4\tended\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tAug.\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n6\t31\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n8\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tMedChem\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t2.9\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\t72\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n22\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t17.4\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMedChem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcourt\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\truling\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tissued\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n9\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tpart\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tfirst-phase\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttrial\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tpatent-infringement\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tproceedings\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n22\tconcerns\t_\tVERB\tVBZ\t_\t8\tconj\t_\t_\n23\tonly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tone\t_\tNUM\tCD\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tdefenses\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcase\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tconsidering\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n7\tall\t_\tDET\tDT\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\toptions\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tlight\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdecision\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tincluding\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tpossible\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tappeal\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmedical-products\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tplans\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tassert\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdefenses\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n15\tagainst\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tPharmacia\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tlawsuit\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\tincluding\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tclaim\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n25\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\tinfringed\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n28\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tPharmacia\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tpatent\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMedChem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcourt\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tscheduled\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tconference\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tnext\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tMonday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tset\t_\tVERB\tVB\t_\t6\tparataxis\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tdate\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tproceedings\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tPharmacia\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tmotion\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tpreliminary\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tinjunction\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNewspaper\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tpublishers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\treporting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tmixed\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tthird-quarter\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\taided\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tfavorable\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnewsprint\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\thampered\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n16\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tflat\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tdeclining\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\tadvertising\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tlinage\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tespecially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tNortheast\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAdding\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n2\tto\t_\tADP\tTO\t_\t3\tcase\t_\t_\n3\tunsteadiness\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tindustry\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tseasonal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n9\tretail\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tad\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tspending\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tpatterns\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tnewspapers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tupset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tshifts\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\townership\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\tgeneral\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\thardships\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n25\twithin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tretail\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tindustry\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tBonwit\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tTeller\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tB.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAltman\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tdepartment\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tstores\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tfiled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tprotection\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcreditors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tChapter\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\t11\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tfederal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tBankruptcy\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCode\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n30\twhile\t_\tSCONJ\tIN\t_\t47\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tR.H.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tMacy\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n34\t&\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n37\tBloomingdale\t_\tPROPN\tNNP\t_\t33\tconj\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n40\tSaks\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n41\tFifth\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tAvenue\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tdepartment-store\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tchains\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n45\tare\t_\tVERB\tVBP\t_\t47\tcop\t_\t_\n46\tfor\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\tsale\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tpapers\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n3\tthroughout\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcountry\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t8\tauxpass\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tfaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tslowdown\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tclassified-ad\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tspending\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbooming\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcategory\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tnewspapers\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\trecently\t_\tADV\tRB\t_\t6\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tanalysts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tbelieved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tdecreases\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tretail\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tad\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tspending\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\thad\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n13\tbottomed\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tfact\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n19\tincrease\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tthird\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tfourth\t_\tADJ\tJJ\t_\t24\tconj\t_\t_\n27\tquarters\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbets\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n4\toff\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t13\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tbecause\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tof\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tshifting\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\townership\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tretail\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tchains\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n2\tImproved\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tpaper\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\thelp\t_\tVERB\tVB\t_\t29\tccomp\t_\t_\n7\toffset\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n8\tweakness\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tlinage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tretailers\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tproblems\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n18\taffected\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tamount\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tad\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlinage\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tthey\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\tusually\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\trun\t_\tVERB\tVBP\t_\t20\tacl:relcl\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\tEdward\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tJ.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tAtorino\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tindustry\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tanalyst\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n36\tfor\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tSalomon\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tBrothers\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tInc\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tRetailers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tjust\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdisarray\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tGannett\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t11\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincome\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\ttotal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tad\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpages\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tdropped\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n20\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tUSA\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tToday\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n25\tadvertising\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\trevenue\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\trose\t_\tVERB\tVBD\t_\t19\tconj\t_\t_\n28\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n29\tof\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n31\thigher\t_\tADJ\tJJR\t_\t34\tamod\t_\t_\n32\tcirculation\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n33\trate\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tbase\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\tincreased\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\trates\t_\tNOUN\tNNS\t_\t34\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGannett\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\t83\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdaily\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n6\t35\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tnon-daily\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n8\tnewspapers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\t3\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t%\t_\tSYM\tNN\t_\t13\tamod\t_\t_\n13\tincrease\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tadvertising\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tcirculation\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\trevenue\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTotal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tadvertising\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tlinage\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\tmodestly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tlower\t_\tADJ\tJJR\t_\t28\tccomp\t_\t_\n9\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tclassified-ad\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tvolume\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tincreased\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\twhile\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tthere\t_\tPRON\tEX\t_\t16\texpl\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tsofter\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n19\tdemand\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tretail\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tnational\t_\tADJ\tJJ\t_\t22\tconj\t_\t_\n25\tad\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tlinage\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tJohn\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCurley\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tGannett\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tchief\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\texecutive\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tofficer\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tUSA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tToday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tad\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpages\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t785\t_\tNUM\tCD\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n14\t9.2\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tnmod:npmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\t1988\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tperiod\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t23\tnsubjpass\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\thelped\t_\tVERB\tVBN\t_\t19\tacl:relcl\t_\t_\n24\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tincreased\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tad\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tspending\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tSummer\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tOlympics\t_\tPROPN\tNNPS\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n2\tUSA\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tToday\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\ttotal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tpaid\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tad\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpages\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tdate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\ttotaled\t_\tVERB\tVBD\t_\t31\tadvcl\t_\t_\n15\t2,735\t_\tNUM\tCD\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdecrease\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t4\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tlast\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tpaper\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tad\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\trevenue\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n31\tincreased\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t8\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\t%\t_\tSYM\tNN\t_\t31\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n38\t13\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\t%\t_\tSYM\tNN\t_\t31\tconj\t_\t_\n40\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tnine\t_\tNUM\tCD\t_\t43\tnummod\t_\t_\n43\tmonths\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tGannett\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tnet\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t9.5\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n14\t270\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t1.68\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshare\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n25\t247\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t1.52\t_\tNUM\tCD\t_\t24\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tgained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t6\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t2.55\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t2.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tbillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tJones\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthird-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tnet\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t9.9\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tyear-earlier\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tperiod\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNet\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n5\t28.8\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\t29\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcents\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n16\t32\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t33\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcents\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tyear-earlier\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tperiod\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tone-time\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgain\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t3.5\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tfour\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcents\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tgained\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\t5.3\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n7\t404.1\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n11\t383.8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdrop\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tprofit\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\treflected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tpart\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tcontinued\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsoftness\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tadvertising\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tThe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tWall\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tStreet\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tJournal\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tBarron\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmagazine\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAd\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tlinage\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tJournal\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t6.1\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tthird\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAffiliated\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPublications\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treversed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tyear-earlier\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\tthird\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tloss\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpublisher\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBoston\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tGlobe\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n11\t8.5\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t12\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tloss\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t26.5\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n29\tor\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\t38\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tcents\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n35\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tthird\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n39\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\t1988\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWilliam\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tO.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTaylor\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tparent\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tchief\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\texecutive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tofficer\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tearnings\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tcontinued\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\thurt\t_\tVERB\tVBN\t_\t16\txcomp\t_\t_\n20\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsoftness\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tad\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tvolume\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tBoston\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tnewspaper\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThird-quarter\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tprofit\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\testimates\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tseveral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n8\tbeing\t_\tAUX\tVBG\t_\t10\tauxpass\t_\t_\n9\tstrongly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\taffected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprice\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tnewsprint\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n18\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\ttwo\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tyears\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\thad\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n25\tseveral\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tprice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tincreases\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsupply\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcrunch\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcaused\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n6\tprices\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\trise\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n9\t14\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\tsince\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1986\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t650\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tmetric\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tton\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tanalysts\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\tencouraged\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tbecause\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n25\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n26\tdo\t_\tAUX\tVBP\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\texpect\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tprice\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tincrease\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\trest\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthis\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n2\twith\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tdaily\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnewspapers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tNortheast\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tneed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tstable\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnewsprint\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tease\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n16\tdamage\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tweak\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tad\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tlinage\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAtorino\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tSalomon\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBrothers\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\testimates\t_\tVERB\tVBZ\t_\t6\tccomp\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n10\tTimes\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tMirror\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tearnings\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t20\tcop\t_\t_\n16\tdown\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tthird\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tquarter\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tbecause\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tsoft\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tadvertising\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tlevels\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n29\tLong\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tIsland\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tNewsday\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tHartford\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tCourant\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tnewspapers\t_\tNOUN\tNNS\t_\t31\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTrouble\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n2\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tEast\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCoast\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tlikely\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\toffset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\timproved\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tad\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tlinage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tLos\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tAngeles\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tTimes\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tweek\t_\tNOUN\tNN\t_\t23\tdep\t_\t_\n22\talso\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tunveiled\t_\tVERB\tVBD\t_\t17\tacl:relcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tredesign\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tTimes\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tlower\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tbecause\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tcontinued\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\tweak\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tadvertising\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tlevels\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tflagship\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tYork\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tTimes\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n28\tdeep\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tdiscounting\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tnewsprint\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\taffiliate\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tForest\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tProducts\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tGroup\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n2\tTimes\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tregional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tdaily\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tnewspapers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tholding\t_\tVERB\tVBG\t_\t29\tccomp\t_\t_\n10\tup\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\twell\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tthere\t_\tPRON\tEX\t_\t15\texpl\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n16\tlittle\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsign\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\tthings\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\timprove\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tNew\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tYork\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\tAlan\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tKassan\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tanalyst\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n35\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tShearson\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tLehman\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tHutton\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tWashington\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPost\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\timproved\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tlargely\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n12\tbecause\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tof\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tincreased\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcable\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\trevenue\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tpublishing\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trevenue\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\thelped\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\timproved\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tretail\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tWashington\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tarea\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAccording\t_\tVERB\tVBG\t_\t3\tcase\t_\t_\n2\tto\t_\tADP\tTO\t_\t1\tmwe\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tprofits\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thelped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tsuccessful\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tcost-cutting\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmeasures\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tNewsweek\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnews-weekly\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tfaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\theightened\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcompetition\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\trival\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tTime\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tmagazine\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\trelatively\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tflat\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tmagazine\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tadvertising\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tKnight-Ridder\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tfaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tcontinued\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tuncertainty\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tpending\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n11\tjoint\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\toperating\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\tDetroit\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tFree\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tPress\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tGannett\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tDetroit\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tNews\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n26\thas\t_\tAUX\tVBZ\t_\t27\taux\t_\t_\n27\ttold\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n28\tanalysts\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\tthat\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n30\tearnings\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n31\twere\t_\tVERB\tVBD\t_\t36\tcop\t_\t_\n32\tdown\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tthird\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t27\tccomp\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpoint\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\tpositive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tadvertising\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tspending\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tseveral\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tmajor\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tdaily\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tnewspapers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tsuch\t_\tADJ\tJJ\t_\t21\tcase\t_\t_\n18\tas\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tMiami\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHerald\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tSan\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tJose\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tMercury\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tNews\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tMiami\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tcoming\t_\tVERB\tVBG\t_\t31\tccomp\t_\t_\n7\tback\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t6\tadvmod\t_\t_\n9\tafter\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttough\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcouple\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n17\tKnight-Ridder\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n19\twas\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n20\tstarting\t_\tVERB\tVBG\t_\t12\tacl:relcl\t_\t_\n21\tup\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tHispanic\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tedition\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\tcirculation\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\taux\t_\t_\n28\tfalling\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tBruce\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tThorp\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tan\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tanalyst\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n37\tfor\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tProvident\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\tNational\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tBank\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tGeneral\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMotors\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tseries\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmoves\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t11\tnsubj\t_\t_\n11\tangered\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n12\tunion\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tofficials\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tCanada\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\thas\t_\tAUX\tVBZ\t_\t21\taux\t_\t_\n21\tsignaled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n23\tas\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n24\tmany\t_\tADJ\tJJ\t_\t26\tadvmod\t_\t_\n25\tas\t_\tADP\tIN\t_\t26\tadvmod\t_\t_\n26\tfive\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n27\tNorth\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tAmerican\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tassembly\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tplants\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n31\tmay\t_\tAUX\tMD\t_\t33\taux\t_\t_\n32\tnot\t_\tPART\tRB\t_\t33\tneg\t_\t_\n33\tsurvive\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tmid-1990s\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n36\tas\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tcorporation\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n39\tstruggles\t_\tVERB\tVBZ\t_\t33\tadvcl\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tcut\t_\tVERB\tVB\t_\t39\txcomp\t_\t_\n42\tits\t_\tPRON\tPRP$\t_\t45\tnmod:poss\t_\t_\n43\texcess\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n44\tvehicle-making\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tcapacity\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tannouncements\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tlate\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tGM\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\teffectively\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tdeath\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tnotices\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n16\tfull-sized\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tvan\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n18\tassembly\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tplants\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n22\tcast\t_\tVERB\tVBD\t_\t11\tconj\t_\t_\n23\tserious\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdoubt\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tfutures\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tthree\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n30\tU.S.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tcar\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tfactories\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tunder\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tintense\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpressure\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tclose\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tfactories\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\tbecame\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tunprofitable\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\tas\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tgiant\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tauto\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmaker\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tskidded\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n22\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpast\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdecade\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\tcurrently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tusing\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n6\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t80\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n11\tNorth\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tAmerican\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tvehicle\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcapacity\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tvowed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\trun\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t100\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tcapacity\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1992\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tnummod\t_\t_\n3\tmonth\t_\tNOUN\tNN\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tGM\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\taging\t_\tVERB\tVBG\t_\t14\tamod\t_\t_\n13\tassembly\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplant\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tLakewood\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tGa.\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\teighth\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tassembly\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tfacility\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tclose\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tsince\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1987\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tGM\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\tbe\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tstepping\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n8\tup\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpace\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfactory\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tconsolidation\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tshape\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\t1990s\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\treason\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tmounting\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n5\tcompetition\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tJapanese\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcar\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tplants\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tpouring\t_\tVERB\tVBG\t_\t10\tacl:relcl\t_\t_\n17\tout\t_\tADP\tRP\t_\t16\tadvmod\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t21\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\tone\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tvehicles\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tcosts\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n27\tlower\t_\tADJ\tJJR\t_\t26\tamod\t_\t_\n28\tthan\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tGM\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n30\tcan\t_\tAUX\tMD\t_\t31\taux\t_\t_\n31\tmatch\t_\tVERB\tVB\t_\t27\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n4\tUnited\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tAuto\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tWorkers\t_\tPROPN\tNNPS\t_\t8\tcompound\t_\t_\n7\tunion\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tofficials\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tsignaled\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\twant\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n13\ttighter\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n14\tno-layoff\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprovisions\t_\tNOUN\tNNS\t_\t12\txcomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n19\tBig\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tThree\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n21\tnational\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcontract\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t26\tnsubjpass\t_\t_\n24\twill\t_\tAUX\tMD\t_\t26\taux\t_\t_\n25\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n26\tnegotiated\t_\tVERB\tVBN\t_\t22\tacl:relcl\t_\t_\n27\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\twant\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tget\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tstrategy\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\treduce\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tcapacity\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\twork\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tforce\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tplace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n17\tbefore\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthose\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttalks\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tbegin\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tproblem\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tGM\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tmoves\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tcoming\t_\tVERB\tVBG\t_\t6\tccomp\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\twhen\t_\tADV\tWRB\t_\t20\tadvmod\t_\t_\n17\tUAW\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tleaders\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\ttrying\t_\tVERB\tVBG\t_\t15\tacl:relcl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tsilence\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tdissidents\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n25\tcharge\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tunion\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t30\tcop\t_\t_\n29\ttoo\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tpassive\t_\tADJ\tJJ\t_\t25\tccomp\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tface\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tGM\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tlayoffs\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAgainst\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tbackdrop\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n5\tUAW\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n6\tVice\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tStephen\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tP.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tYokich\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n13\trecently\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tbecame\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n15\thead\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n16\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tunion\t_\tNOUN\tNN\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tGM\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tdepartment\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tstatement\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n27\tblasting\t_\tVERB\tVBG\t_\t23\tdep\t_\t_\n28\tGM\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n31\tflagrant\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tinsensitivity\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n34\ttoward\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tunion\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tmembers\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tauto\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmaker\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tdecision\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tlet\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tword\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlatest\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n12\tshutdowns\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tproduct\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\treassignments\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\ttrickle\t_\tVERB\tVBP\t_\t7\tccomp\t_\t_\n17\tout\t_\tADP\tRP\t_\t16\tadvmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tseparate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tcommuniques\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\taffected\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tplants\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tshowed\t_\tVERB\tVBD\t_\t43\tccomp\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\tdisarray\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n30\tan\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\tinability\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n33\tor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tunwillingness\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tprovide\t_\tVERB\tVB\t_\t34\tacl\t_\t_\n37\tconsistent\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tinformation\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t43\tpunct\t_\t_\n41\tMr.\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tYokich\t_\tPROPN\tNNP\t_\t43\tnsubj\t_\t_\n43\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t43\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tlate\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tweek\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfollowing\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmoves\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\t:\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n13\tProduction\t_\tNOUN\tNN\t_\t19\tnsubjpass\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tfull-sized\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tvans\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\tauxpass\t_\t_\n19\tconsolidated\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n20\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tsingle\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tplant\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFlint\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tMich\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tplants\t_\tNOUN\tNNS\t_\t23\tnsubjpass\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\tone\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tScarborough\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tOntario\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tLordstown\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tOhio\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n20\tprobably\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tshut\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n24\tdown\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\tafter\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tend\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t1991\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshutdowns\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tidle\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t3,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n7\tCanadian\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tassembly\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tworkers\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tabout\t_\tADJ\tJJ\t_\t12\tadvmod\t_\t_\n12\t2,500\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tworkers\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tOhio\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCanadian\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n5\tAuto\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tWorkers\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tunion\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\timpending\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tScarborough\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tshutdown\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcriticize\t_\tVERB\tVB\t_\t10\tadvcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tU.S.-Canada\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tfree\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttrade\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tagreement\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tchampion\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tPrime\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tMinister\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tBrian\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tMulroney\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tCanadian\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tauto\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tworkers\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tmay\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbenefit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tseparate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tGM\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tmove\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\taffects\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n14\tthree\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tcar\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tplants\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tone\t_\tNUM\tCD\t_\t17\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tQuebec\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWorkers\t_\tNOUN\tNNS\t_\t18\tnsubjpass\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tplants\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tVan\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tNuys\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCalif.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tOklahoma\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCity\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tPontiac\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tMich.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\twere\t_\tAUX\tVBD\t_\t18\tauxpass\t_\t_\n18\ttold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tfacilities\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n21\tare\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n22\tno\t_\tADV\tRB\t_\t23\tneg\t_\t_\n23\tlonger\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n24\tbeing\t_\tNOUN\tNN\t_\t25\tdep\t_\t_\n25\tconsidered\t_\tVERB\tVBN\t_\t18\tccomp\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tbuild\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tnext\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tgeneration\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tPontiac\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tFirebird\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\tChevrolet\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tCamaro\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tmuscle\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tcars\t_\tNOUN\tNNS\t_\t34\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tstudying\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n4\twhether\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tbuild\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tCamaro-Firebird\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n11\tprofitably\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tplant\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tSt.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tTherese\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tQuebec\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n21\tcompany\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tunion\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\tofficials\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tannouncement\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tleft\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tunion\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tVan\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tNuys\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tOklahoma\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCity\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\tuncertain\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n13\tabout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tfutures\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tNuys\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tplant\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\temploys\t_\tVERB\tVBZ\t_\t4\tacl:relcl\t_\t_\n8\tabout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\t3,000\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tworkers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tproduct\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuild\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tafter\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1993\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tJerry\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tShrieves\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tUAW\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tlocal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tfacility\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tasked\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tdraw\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tplans\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tcontinue\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tworking\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n23\tflex\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tplant\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n28\tcould\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tbuild\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n30\tseveral\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tdifferent\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\ttypes\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tproducts\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tshort\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tnotice\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\tsatisfy\t_\tVERB\tVB\t_\t29\tadvcl\t_\t_\n40\tdemand\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tOklahoma\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tCity\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tplant\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\temploys\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t6,000\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tworkers\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tbuilding\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\teight-year-old\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tA-body\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tmid-sized\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcars\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tSteve\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tFeatherston\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tUAW\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tlocal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tvice\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tpresident\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tplant\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n30\thas\t_\tVERB\tVBZ\t_\t27\tdep\t_\t_\n31\tno\t_\tDET\tDT\t_\t33\tneg\t_\t_\n32\tnew\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tproduct\t_\tNOUN\tNN\t_\t34\tnsubj\t_\t_\n34\tlined\t_\tVERB\tVBN\t_\t30\tccomp\t_\t_\n35\tup\t_\tADP\tRP\t_\t34\tcompound:prt\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n39\tnone\t_\tNOUN\tNN\t_\t42\tnsubj\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tus\t_\tPRON\tPRP\t_\t39\tnmod\t_\t_\n42\tknows\t_\tVERB\tVBZ\t_\t30\tconj\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t42\tpunct\t_\t_\n44\twhen\t_\tADV\tWRB\t_\t49\tadvmod\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tA-body\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tcars\t_\tNOUN\tNNS\t_\t49\tnsubj\t_\t_\n48\twill\t_\tAUX\tMD\t_\t49\taux\t_\t_\n49\tdie\t_\tVERB\tVB\t_\t42\tccomp\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tbelieves\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tGM\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\thas\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tplans\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tkeep\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tbuilding\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\tA-body\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcars\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tinto\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmid-1990s\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tPontiac\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tCamaro-Firebird\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tdecision\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\terase\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tUAW\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\thopes\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tGM\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\treopen\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tshuttered\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tassembly\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tplant\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n23\tlast\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tbuilt\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n26\tplastic-bodied\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n28\ttwo-seater\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tPontiac\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tFiero\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tmodel\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFiero\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tplant\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tviewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmodel\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tunion-management\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcooperation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tGM\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\tbefore\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tslow\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tFiero\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\tforced\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tclose\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tfactory\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tlast\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tUnion\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVB\t_\t4\taux\t_\t_\n4\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbeating\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tpolitically\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tresult\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDissident\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tUAW\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmembers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tFiero\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tplant\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsymbol\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tlabor-management\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcooperation\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tfailure\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInstitut\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMerieux\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tS.A.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFrance\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tCanadian\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tgovernment\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\traised\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tobstacle\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tproposed\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tacquisition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tConnaught\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tBioSciences\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\t942\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n24\tCanadian\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdollars\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tUS$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n28\t801.6\t_\tNUM\tCD\t_\t29\tcompound\t_\t_\n29\tmillion\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMerieux\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tgovernment\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tminister\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tindustry\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tscience\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\ttechnology\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\ttold\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tconvinced\t_\tADJ\tJJ\t_\t13\tccomp\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpurchase\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n24\tlikely\t_\tADJ\tJJ\t_\t19\tccomp\t_\t_\n25\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n26\tbe\t_\tVERB\tVB\t_\t30\tcop\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n29\tnet\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tbenefit\t_\tNOUN\tNN\t_\t24\txcomp\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n33\tCanada\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tinvestment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\trules\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trequire\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tforeign\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttakeovers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tmeet\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tthat\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tstandard\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgovernment\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tgave\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tiobj\t_\t_\n9\t30\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tdays\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t14\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsubmit\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n15\tinformation\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n17\tfurther\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tsupport\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\ttakeover\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tplan\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tcc:preconj\t_\t_\n2\tMerieux\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tConnaught\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\tbiotechnology\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tresearch\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tvaccine\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tmanufacturing\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tconcerns\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\taction\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tunusual\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAlan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNymark\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\texecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tInvestment\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCanada\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\toversees\t_\tVERB\tVBZ\t_\t9\tacl:relcl\t_\t_\n13\tforeign\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttakeovers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tmarked\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfirst\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttime\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tfour-year\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thistory\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tthat\t_\tADP\tIN\t_\t30\tadvmod\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tagency\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n29\thas\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\tmade\t_\tVERB\tVBN\t_\t21\tdep\t_\t_\n31\tan\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tadverse\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\tnet-benefit\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tdecision\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n35\tabout\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tacquisition\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n40\tpublicly\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\ttraded\t_\tVERB\tVBN\t_\t42\tamod\t_\t_\n42\tcompany\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\treached\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsame\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tconclusions\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsome\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tattempts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tclosely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\theld\t_\tVERB\tVBN\t_\t13\txcomp\t_\t_\n16\tconcerns\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\teventually\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tallowed\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n21\tthose\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tacquisitions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tproceed\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tchange\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpolicy\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tprovision\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tAUX\tVBN\t_\t15\tauxpass\t_\t_\n15\tused\t_\tVERB\tVBN\t_\t6\tparataxis\t_\t_\n16\tbefore\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tJodi\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tRedmond\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tpress\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tsecretary\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tHarvie\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAndre\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tCanada\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tminister\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n32\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tindustry\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tscience\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n37\ttechnology\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAndre\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\truling\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tbased\t_\tVERB\tVBN\t_\t9\tcase\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trecommendation\t_\tNOUN\tNN\t_\t3\tadvcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tInvestment\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCanada\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSpokesmen\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tMerieux\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tConnaught\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t11\tnsubjpass\t_\t_\n8\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tinformed\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tspecific\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tareas\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tconcern\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\teither\t_\tCONJ\tCC\t_\t20\tcc:preconj\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tgovernment\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tInvestment\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCanada\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n26\tadded\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n27\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\thope\t_\tVERB\tVBP\t_\t26\tccomp\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\thave\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tmore\t_\tADJ\tJJR\t_\t32\tamod\t_\t_\n32\tinformation\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tearly\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n34\tthis\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tweek\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tInvestment\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCanada\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tcomment\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\treasons\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tdecision\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tViren\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMehta\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpartner\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tMehta\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tIsaly\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t13\tamod\t_\t_\n13\tYork-based\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n14\tpharmaceutical\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tindustry\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\tresearch\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfirm\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tgovernment\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\truling\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\tunexpected\t_\tADJ\tJJ\t_\t19\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tbecome\t_\tVERB\tVBN\t_\t25\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tvery\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tpoliticized\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdeal\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tconcerning\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n11\tCanada\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tonly\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n14\tlarge\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tworld-class\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n17\tbio-research\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tpharmaceutical\t_\tADJ\tJJ\t_\t17\tconj\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMehta\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMehta\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmove\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tallow\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\ttransaction\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\tahead\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tplanned\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n16\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n18\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tout-of-court\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tsettlement\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tConnaught\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tdispute\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tUniversity\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tToronto\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tUniversity\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tseeking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tblock\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tacquisition\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tConnaught\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tforeign\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinterests\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n15\tciting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n16\tconcerns\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tamount\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tresearch\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t25\tnsubjpass\t_\t_\n23\twould\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tdone\t_\tVERB\tVBN\t_\t19\tacl:relcl\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tCanada\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tuniversity\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tconsidering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsettlement\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tproposal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tmade\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tConnaught\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tneither\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tside\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tdisclose\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tcontents\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMehta\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tcontain\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n15\tmore\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n16\tspecific\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tguarantees\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tresearch\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tdevelopment\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n22\tspending\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlevels\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tCanada\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tthan\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\tMerieux\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\toffered\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tInvestment\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tCanada\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t7\tcase\t_\t_\n5\tas\t_\tADP\tIN\t_\t4\tmwe\t_\t_\n6\tMurray\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tGrossner\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tToronto-based\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tRichardson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tGreenshields\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tgovernment\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\truling\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tleaves\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdoor\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\topen\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbidders\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t30\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tSwitzerland\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tCiba-Geigy\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tChiron\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp.\t_\tPROPN\tNNP\t_\t30\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tEmeryville\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tCalif\t_\tPROPN\tNNP\t_\t35\tappos\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOfficials\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\ttwo\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tconcerns\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tbidding\t_\tVERB\tVBG\t_\t5\tacl:relcl\t_\t_\n10\tC$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t30\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tConnaught\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\treached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcomment\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tFrench\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tstate-owned\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tRhone-Poulenc\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tS.A.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\t51\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tMerieux\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tInternational\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tcanceled\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tplans\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tpreferred-stock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tswap\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tresume\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n15\tpayment\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tdividends\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n23\tadded\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\texpects\t_\tVERB\tVBZ\t_\t23\tccomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n28\tpublicly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\toffer\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n30\tabout\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\t10\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n33\tcommon\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tshares\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tplanned\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\toffer\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tundetermined\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tnumber\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tcommon\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\texchange\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\t585,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tshares\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tpreferred\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\toutstanding\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\texchange\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tratio\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tnever\t_\tADV\tRB\t_\t6\tneg\t_\t_\n6\testablished\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tconditions\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tled\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcancellation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tplanned\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\texchange\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tenergy-services\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tconcern\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tJanuary\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n11\t1990\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tmay\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tresume\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n16\tpayments\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdividends\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tpreferred\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsuspended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tpreferred-dividend\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tpayment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tOctober\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\t1985\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thas\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n13\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n14\tany\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tplans\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tcatch\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tdividends\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tarrears\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tabout\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod:npmod\t_\t_\n25\t6\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n28\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n29\twill\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\tdo\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n31\tso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n32\tsome\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\ttime\t_\tNOUN\tNN\t_\t30\tnmod:tmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tfuture\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAdditionally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tfiled\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tSecurities\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tExchange\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\tCommission\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tproposed\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\toffering\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tcommon\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n26\texpected\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n27\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n28\tbe\t_\tAUX\tVB\t_\t29\tauxpass\t_\t_\n29\toffered\t_\tVERB\tVBN\t_\t26\txcomp\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tNovember\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tSalomon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tBrothers\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t23\tnsubjpass\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tHoward\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\tWeil\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tLabouisse\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\tFriedrichs\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\tunderwriters\t_\tNOUN\tNNS\t_\t6\tappos\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\toffering\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n22\twere\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tgranted\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\toption\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tbuy\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tas\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tmuch\t_\tADJ\tJJ\t_\t27\tdobj\t_\t_\n30\tas\t_\tADP\tIN\t_\t35\tcase\t_\t_\n31\tan\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\tadditional\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\t1.5\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tmillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tshares\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\tcover\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n38\tover-allotments\t_\tNOUN\tNNS\t_\t37\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProceeds\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tbe\t_\tAUX\tVB\t_\t4\tauxpass\t_\t_\n4\tused\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\teliminate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\trestructure\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n9\tbank\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdebt\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWeatherford\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tcurrently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tapproximately\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t11.1\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tcommon\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tshares\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\toutstanding\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEarnings\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnation\t_\tNOUN\tNN\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpharmaceutical\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmakers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n12\tbelieved\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n14\thave\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tmoved\t_\tVERB\tVBN\t_\t12\txcomp\t_\t_\n16\tahead\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\tbriskly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n24\tcompanies\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n25\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tnewer\t_\tADJ\tJJR\t_\t30\tamod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n28\tbig-selling\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tprescription\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tdrugs\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\tfared\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n32\tespecially\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\twell\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tconsecutive\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n7\thowever\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n9\tmost\t_\tADJ\tJJS\t_\t16\tnsubjpass\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t14\tnmod:poss\t_\t_\n13\t'\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\trevenues\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\tbattered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tadverse\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tforeign-currency\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttranslations\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tresult\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tstrong\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdollar\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tabroad\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n4\tMerck\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tCo.\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tEli\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tLilly\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tWarner-Lambert\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tSquibb\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tCorp.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tunit\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tBristol-Myers\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tSquibb\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCo.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\tall\t_\tDET\tDT\t_\t25\tdep\t_\t_\n25\tbenefited\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tstrong\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tsales\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\trelatively\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tnew\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\thigher-priced\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tmedicines\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n35\tthat\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n36\tprovide\t_\tVERB\tVBP\t_\t34\tacl:relcl\t_\t_\n37\twide\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tprofit\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tmargins\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLess\t_\tADV\tRBR\t_\t2\tadvmod\t_\t_\n2\trobust\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tearnings\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n4\tat\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tPfizer\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tInc.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tUpjohn\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCo.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n10\twere\t_\tAUX\tVBD\t_\t11\tauxpass\t_\t_\n11\tattributed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n13\tthose\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompanies\t_\tNOUN\tNNS\t_\t17\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tolder\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tproducts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t22\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t19\tnmod\t_\t_\n22\tface\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n23\tstiffening\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcompetition\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tgeneric\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdrugs\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tother\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tmedicines\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tJoseph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRiccardo\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tanalyst\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tBear\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tStearns\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n15\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tpast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tfew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n20\tmost\t_\tADJ\tJJS\t_\t22\tamod\t_\t_\n21\tdrug\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmakers\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tshed\t_\tVERB\tVBN\t_\t13\tccomp\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tslow-growing\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tbusinesses\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tinstituted\t_\tVERB\tVBN\t_\t24\tconj\t_\t_\n30\tother\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tcost\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tsavings\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tsuch\t_\tADJ\tJJ\t_\t36\tmark\t_\t_\n35\tas\t_\tSCONJ\tIN\t_\t34\tmwe\t_\t_\n36\tconsolidating\t_\tVERB\tVBG\t_\t32\tacl\t_\t_\n37\tmanufacturing\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tplants\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tadministrative\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tstaffs\t_\tNOUN\tNNS\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n6\tmajor\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tproducts\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\thaving\t_\tVERB\tVBG\t_\t26\tccomp\t_\t_\n11\tsignificant\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\timpact\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\teven\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tvery\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tlarge\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\trevenues\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tRiccardo\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n4\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n6\tdozen\t_\tNOUN\tNN\t_\t11\tnummod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tso\t_\tADV\tRB\t_\t6\tconj\t_\t_\n9\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tdrug\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmakers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tgroup\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\testimated\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n20\thave\t_\tAUX\tVB\t_\t21\taux\t_\t_\n21\tclimbed\t_\tVERB\tVBN\t_\t18\txcomp\t_\t_\n22\tbetween\t_\tADP\tIN\t_\t24\tamod\t_\t_\n23\t11\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\t14\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t24\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tspectacular\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n7\tNeil\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSweig\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tanalyst\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tPrudential\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBache\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\trate\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tgrowth\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n24\tlook\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n25\tespecially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t24\txcomp\t_\t_\n27\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n28\tcompared\t_\tVERB\tVBN\t_\t26\tdep\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tother\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcompanies\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tif\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\teconomy\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n35\tturns\t_\tVERB\tVBZ\t_\t24\tadvcl\t_\t_\n36\tdownward\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSweig\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\testimated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n5\tMerck\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tprofit\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\trose\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tabout\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\t22\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\tpropelled\t_\tVERB\tVBN\t_\t11\tdep\t_\t_\n18\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tsales\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tline-up\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tfast-growing\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tprescription\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tdrugs\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tincluding\t_\tVERB\tVBG\t_\t31\tcase\t_\t_\n29\tits\t_\tPRON\tPRP$\t_\t31\tnmod:poss\t_\t_\n30\tanti-cholesterol\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tdrug\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tMevacor\t_\tPROPN\tNNP\t_\t31\tappos\t_\t_\n34\t;\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n35\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n36\thigh\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n37\tblood\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n38\tpressure\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tmedicine\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tVasotec\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n42\t;\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n43\tPrimaxin\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n45\tan\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tantibiotic\t_\tNOUN\tNN\t_\t43\tappos\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n49\tPepcid\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n51\tan\t_\tDET\tDT\t_\t53\tdet\t_\t_\n52\tanti-ulcer\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n53\tmedication\t_\tNOUN\tNN\t_\t49\tappos\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProfit\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tclimbed\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n3\teven\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n4\tthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tMerck\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tsales\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\treduced\t_\tVERB\tVBN\t_\t2\tadvcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n12\tone\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tdep\t_\t_\n14\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tpercentage\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tresult\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tstrong\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tdollar\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n26\tMr.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tSweig\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1988\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tMerck\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t311.8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t79\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tcents\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tRahway\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.J.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tMerck\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tspokesman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tmake\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n15\tearnings\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprojections\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSweig\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\testimated\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n7\tLilly\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tearnings\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tjumped\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n14\tabout\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tlargely\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n19\tbecause\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tof\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tperformance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n25\tnew\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tanti-depressant\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tProzac\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdrug\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tintroduced\t_\tVERB\tVBD\t_\t2\tacl\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n9\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tgenerate\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tsales\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n16\t300\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tturning\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\treal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tblockbuster\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSweig\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyear\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tthird\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tLilly\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t171.4\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t1.20\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tIndianapolis\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tLilly\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tcomment\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSeveral\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpected\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tWarner-Lambert\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tprofit\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tincrease\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tmore\t_\tADJ\tJJR\t_\t15\tadvmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\t20\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t11\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n19\t87.7\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n24\t1.25\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tshare\t_\tNOUN\tNN\t_\t24\tnmod:npmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\treported\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n30\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tlike\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tperiod\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\tlast\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tyear\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\tpraised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tsharply\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tlowering\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcosts\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\trecent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tshedding\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n17\tnumerous\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcompanies\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tlow\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tprofit\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmargins\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tlean\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toperation\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tanalysts\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tallowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tsharp-rising\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tsales\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tcholesterol\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tdrug\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tLopid\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tpower\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n22\tearnings\t_\tNOUN\tNNS\t_\t23\tcompound\t_\t_\n23\tgrowth\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tLopid\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tsales\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\txcomp\t_\t_\n9\t300\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tup\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t14\tnmod\t_\t_\n17\t190\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1988\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMorris\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPlains\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tN.J.\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tspokesman\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tanalysts\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tprojections\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t21\tcop\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tballpark\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tSquibb\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tprofit\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n5\testimated\t_\tVERB\tVBN\t_\t36\tadvcl\t_\t_\n6\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tanalysts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n10\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t18\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t5\txcomp\t_\t_\n13\tabove\t_\tADP\tIN\t_\t12\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n16\t123\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.25\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n26\tearned\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tthird\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tquarter\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\t1988\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n34\twas\t_\tVERB\tVBD\t_\t36\tcop\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tresult\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n37\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tespecially\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n39\tstrong\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tsales\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n41\tof\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tits\t_\tPRON\tPRP$\t_\t44\tnmod:poss\t_\t_\n43\tCapoten\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tdrug\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\tfor\t_\tSCONJ\tIN\t_\t46\tmark\t_\t_\n46\ttreating\t_\tVERB\tVBG\t_\t44\tacl\t_\t_\n47\thigh\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n48\tblood\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tpressure\t_\tNOUN\tNN\t_\t46\tdobj\t_\t_\n50\tand\t_\tCONJ\tCC\t_\t49\tcc\t_\t_\n51\tother\t_\tADJ\tJJ\t_\t53\tamod\t_\t_\n52\theart\t_\tNOUN\tNN\t_\t53\tcompound\t_\t_\n53\tdisease\t_\tNOUN\tNN\t_\t49\tconj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n4\tofficially\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmerged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tBristol-Myers\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tearlier\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBristol-Myers\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tcomment\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRiccardo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tBear\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStearns\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n8\tSchering-Plough\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\texpected\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tprofit\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trise\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n16\t18\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tBristol-Meyers\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\texpected\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tincrease\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tabout\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\t13\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t27\tnmod\t_\t_\n32\tare\t_\tVERB\tVBP\t_\t6\tccomp\t_\t_\n33\tlargely\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n34\tbecause\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n36\tthose\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcompanies\t_\tNOUN\tNNS\t_\t40\tnsubjpass\t_\t_\n38\tare\t_\tAUX\tVBP\t_\t40\tauxpass\t_\t_\n39\treally\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tmanaged\t_\tVERB\tVBN\t_\t32\tadvcl\t_\t_\n41\twell\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tScheringPlough\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t94.4\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n8\t84\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\twhile\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tBristol-Myers\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n15\tearned\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n16\t$\t_\tSYM\t$\t_\t15\tdobj\t_\t_\n17\t232.3\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n21\t81\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcents\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tshare\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tlike\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tperiod\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t32\tnmod:npmod\t_\t_\n32\tearlier\t_\tADV\tRBR\t_\t29\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tMadison\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tN.J.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tspokesman\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tSchering-Plough\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\tproblems\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\taverage\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\testimate\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tanalysts\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n26\tthird-quarter\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tearnings\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n28\tper\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tshare\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\trose\t_\tVERB\tVBD\t_\t21\tdep\t_\t_\n31\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tabout\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\t19\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\t%\t_\tSYM\tNN\t_\t30\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n36\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n37\t$\t_\tSYM\t$\t_\t38\tdep\t_\t_\n38\t1\t_\tNUM\tCD\t_\t30\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t25\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tachieve\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\t20\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t%\t_\tSYM\tNN\t_\t9\tamod\t_\t_\n9\tincrease\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tfull-year\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tearnings\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tper\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tprojected\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tspring\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tspokesman\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tPfizer\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tstring\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tlackluster\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tquarterly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tperformances\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tcontinued\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tearnings\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\texpected\t_\tVERB\tVBN\t_\t13\tadvcl\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdecline\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tabout\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\t5\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSales\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tPfizer\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\timportant\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdrugs\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tFeldene\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\tfor\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\ttreating\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n11\tarthritis\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n14\tProcardia\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\theart\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmedicine\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\thave\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tshrunk\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n22\tbecause\t_\tADV\tRB\t_\t25\tcase\t_\t_\n23\tof\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\tincreased\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcompetition\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\t-LRB-\t_\tPUNCT\t-LRB-\t_\t4\tpunct\t_\t_\n4\tstrong\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n5\t-RRB-\t_\tPUNCT\t-RRB-\t_\t4\tpunct\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\thurt\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n8\tPfizer\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tlot\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSweig\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tPfizer\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t216.8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t1.29\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpected\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n5\tUpjohn\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tprofit\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n10\tflat\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\trise\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n13\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n14\tonly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n15\tabout\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n16\t2\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t20\tdep\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n19\t4\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n21\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tcompared\t_\tVERB\tVBN\t_\t20\tdep\t_\t_\n23\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t89.6\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\t49\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tcents\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tshare\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n34\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\tearned\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tyear\t_\tNOUN\tNN\t_\t38\tnmod:npmod\t_\t_\n38\tago\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUpjohn\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tbiggest-selling\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdrugs\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n6\tXanax\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttranquilizer\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\tHalcion\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsedative\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tboth\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdrugs\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tstate\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tlaws\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\trestricting\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tprescriptions\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tcertain\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\ttranquilizing\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmedicines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n20\tadverse\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpublicity\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n22\tabout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\texcessive\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tuse\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdrugs\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\thair-growing\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdrug\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tRogaine\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tselling\t_\tVERB\tVBG\t_\t47\tccomp\t_\t_\n13\twell\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t12\tnmod\t_\t_\n18\t125\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tcompany\t_\tNOUN\tNN\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tprofit\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdrug\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\thas\t_\tAUX\tVBZ\t_\t34\taux\t_\t_\n33\tbeen\t_\tAUX\tVBN\t_\t34\tauxpass\t_\t_\n34\treduced\t_\tVERB\tVBN\t_\t12\tconj\t_\t_\n35\tby\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tUpjohn\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\texpensive\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tprint\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\ttelevision\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tcampaigns\t_\tNOUN\tNNS\t_\t39\tconj\t_\t_\n43\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tadvertising\t_\tVERB\tVBG\t_\t39\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n46\tanalysts\t_\tNOUN\tNNS\t_\t47\tnsubj\t_\t_\n47\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tKalamazoo\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tMich.\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tUpjohn\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAmid\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcrowd\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcrashing\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tRelational\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tTechnology\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tInc.\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tparticularly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\thard\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tdropping\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n19\t23\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\tbecause\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tproblems\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t25\tauxpass\t_\t_\n25\tcompounded\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tdisclosure\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tan\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tunexpected\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tloss\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n34\tfiscal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tfirst\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tquarter\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tdatabase\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\tsoftware\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n10\t2\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfiscal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tquarter\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tended\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tSept.\t_\tPROPN\tNNP\t_\t19\tnmod:tmod\t_\t_\n21\t30\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tanalysts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n5\tbeen\t_\tAUX\tVBN\t_\t6\taux\t_\t_\n6\texpecting\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tsmall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tperiod\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRevenue\t_\tNOUN\tNN\t_\t3\tnsubjpass\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\tauxpass\t_\t_\n3\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tup\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmodestly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n13\t26.5\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\treported\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyear\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n18\tago\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRelational\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnet\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tincome\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t1.5\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\t12\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tcents\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tshare\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tyear-earlier\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tperiod\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tWhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tour\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tinternational\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\toperations\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tshowed\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgrowth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n10\tour\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tdomestic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tsubstantially\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n15\tbelow\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\texpectations\t_\tNOUN\tNNS\t_\t19\tccomp\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tPaul\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tNewton\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tpresident\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tchief\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\texecutive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tofficer\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tquarter\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\thistorically\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsoft\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tgeneral\t_\tADJ\tJJ\t_\t15\tacl\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\texperiencing\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n20\tslower\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tsales\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNewton\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\taccepted\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tresignation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tThomas\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tWilson\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tvice\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpresident\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tcorporate\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\tmarketing\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tresponsibilities\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\treassigned\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tWilson\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tresignation\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tauxpass\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\trelated\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsales\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tshortfall\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRelational\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tpublic\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tMay\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t1988\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t14\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshare\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t4\tdep\t_\t_\n4\t1.875\t_\tNUM\tCD\t_\t2\tdobj\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tshare\t_\tNOUN\tNN\t_\t4\tnmod:npmod\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t6.25\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlow\t_\tADJ\tJJ\t_\t11\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tover-the-counter\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\ttrading\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\thigh\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tyear\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t16.375\t_\tNUM\tCD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tprevious\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n10\t4.5\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t37\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tcents\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t47.2\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tBronx\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\twonderful\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tbotanical\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgarden\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tgreat\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tzoo\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n14\town\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tcharming\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tLittle\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tItaly\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n18\t-LRB-\t_\tPUNCT\t-LRB-\t_\t21\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tArthur\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tAvenue\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t-RRB-\t_\tPUNCT\t-RRB-\t_\t21\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tcourse\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tYankees\t_\tPROPN\tNNPS\t_\t7\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tpeople\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n6\thaving\t_\tAUX\tVBG\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tsubjected\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tnews\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfootage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tdevastated\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tSouth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tBronx\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\tlook\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tborough\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tway\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\tTom\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWolfe\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tSherman\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tMcCoy\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n29\tdid\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\tBonfire\t_\tNOUN\tNN\t_\t23\tacl:relcl\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tVanities\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n37\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n38\tas\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\twrong\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tturn\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n42\tinto\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\thell\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tLaura\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCunningham\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tBronx\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ther\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tchildhood\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tBronx\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\t'50s\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\tsomething\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n16\telse\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\taltogether\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tlovely\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tnovelistic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmemoir\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tSleeping\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tArrangements\t_\tNOUN\tNNS\t_\t6\tappos\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n13\tKnopf\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\t195\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tpages\t_\tNOUN\tNNS\t_\t13\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t18.95\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\tshe\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tremembers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\texotic\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tplayground\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tpeopled\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n29\tmainly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tJewish\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\teccentrics\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\toccasional\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tCatholic\t_\tPROPN\tNNP\t_\t32\tconj\t_\t_\n37\t-LRB-\t_\tPUNCT\t-LRB-\t_\t39\tpunct\t_\t_\n38\treal\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\toddballs\t_\tNOUN\tNNS\t_\t36\tdep\t_\t_\n40\tlike\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\ther\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n42\tsexpot\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tfriend\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\thell-kitten\t_\tNOUN\tNN\t_\t47\tcompound\t_\t_\n47\tDiana\t_\tPROPN\tNNP\t_\t43\tappos\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n49\tage\t_\tNOUN\tNN\t_\t43\tappos\t_\t_\n50\tfive\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n51\t-RRB-\t_\tPUNCT\t-RRB-\t_\t39\tpunct\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tMs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCunningham\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tnovelist\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tplaywright\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n11\tvivid\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tdramatically\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\toutsized\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n15\tsense\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\trecall\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttransforms\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ther\t_\tPRON\tPRP\t_\t5\tdep\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n5\tBronx\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\temotions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tplace\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n12\twhere\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tflats\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmediocrity\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n18\tonly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\trelieved\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n20\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsteep\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdescents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\thysteria\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n26\tinto\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n29\tBabylonian\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tBronx\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tworld\t_\tNOUN\tNN\t_\t30\tdep\t_\t_\n35\tsimmering\t_\tVERB\tVBG\t_\t34\tacl\t_\t_\n36\twith\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tsex\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tdeath\t_\tNOUN\tNN\t_\t37\tconj\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n41\tintrigue\t_\tNOUN\tNN\t_\t37\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tBabylonian\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBronx\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tJewish\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tworking-class\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tlived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tdrab\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tSoviet-style\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbuildings\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n16\tglamorized\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tnames\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tlike\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tAnaMor\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTowers\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t-LRB-\t_\tPUNCT\t-LRB-\t_\t26\tpunct\t_\t_\n24\tafter\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\towners\t_\tNOUN\tNNS\t_\t26\tcompound\t_\t_\n26\tAnna\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tMorris\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tSnezak\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t26\tpunct\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n32\twhose\t_\tPRON\tWP$\t_\t33\tnmod:poss\t_\t_\n33\tlobbies\t_\tNOUN\tNNS\t_\t37\tnsubjpass\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\thallways\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n36\twere\t_\tAUX\tVBD\t_\t37\tauxpass\t_\t_\n37\tdecorated\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n38\twith\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tmurals\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tancient\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tSyrians\t_\tPROPN\tNNPS\t_\t39\tnmod\t_\t_\n43\tand\t_\tCONJ\tCC\t_\t42\tcc\t_\t_\n44\tGreeks\t_\tPROPN\tNNPS\t_\t42\tconj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n46\tfriezes\t_\tNOUN\tNNS\t_\t39\tappos\t_\t_\n47\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n48\tPompeii\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tMs.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCunningham\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tarchitectural\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdiscombobulation\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tmatched\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdiscrepancy\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tfelt\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n12\tliving\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tAnaMor\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTowers\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tlittle\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgirl\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n21\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n23\t...\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n24\toutwardly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tordinary\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tinwardly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tornate\t_\tADJ\tJJ\t_\t25\tdep\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n30\towing\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n31\tall\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tinspiration\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\theathen\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tcultures\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n37\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tSharp-witted\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n3\tfunny\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n4\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n5\tnever\t_\tADV\tRB\t_\t6\tconj\t_\t_\n6\tmean\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tshe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n9\t's\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmemorialist\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbit\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n15\tTruman\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCapote\t_\tPROPN\tNNP\t_\t13\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tif\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\t'd\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tbeen\t_\tVERB\tVBN\t_\t22\tcop\t_\t_\n22\tJewish\t_\tADJ\tJJ\t_\t16\tacl:relcl\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tfemale\t_\tADJ\tJJ\t_\t22\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n26\tless\t_\tADV\tRBR\t_\t27\tadvmod\t_\t_\n27\tbitchy\t_\tADJ\tJJ\t_\t22\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tLittle\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLily\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tas\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tMs.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCunningham\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tcalls\t_\tVERB\tVBZ\t_\t2\tacl:relcl\t_\t_\n8\therself\t_\tPRON\tPRP\t_\t7\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbook\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\treally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tordinary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\traised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tfirst\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\teight\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyears\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ther\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tmother\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tRosie\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\twhom\t_\tPRON\tWP\t_\t19\tdobj\t_\t_\n18\tshe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tremembers\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n20\tas\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tloving\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tliar\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twho\t_\tPRON\tWP\t_\t26\tnsubj\t_\t_\n26\trealigned\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n27\thistory\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\texplain\t_\tVERB\tVB\t_\t26\tadvcl\t_\t_\n30\twhy\t_\tADV\tWRB\t_\t36\tadvmod\t_\t_\n31\tLily\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tfather\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n34\tdid\t_\tAUX\tVBD\t_\t36\taux\t_\t_\n35\tn't\t_\tPART\tRB\t_\t36\tneg\t_\t_\n36\tlive\t_\tVERB\tVB\t_\t29\tadvcl\t_\t_\n37\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tthem\t_\tPRON\tPRP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRosie\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\treinvented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tman\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t4\tacl:relcl\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t7\tconj\t_\t_\n10\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n11\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\tknown\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n13\tabout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tchild\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tas\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\twar\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\thero\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tLily\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tbenefit\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRosie\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n2\tdied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tyoung\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n5\tLily\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tremembered\t_\tVERB\tVBN\t_\t2\tconj\t_\t_\n8\ther\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tromantic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfigure\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n15\tdid\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tinterfere\t_\tVERB\tVB\t_\t12\tacl:relcl\t_\t_\n18\tmuch\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ther\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tchild\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\teducation\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tstreets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgames\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n3\tBronx\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tchildren\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tplayed\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tholding\t_\tVERB\tVBG\t_\t2\tdep\t_\t_\n8\tkids\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tdown\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tstripping\t_\tVERB\tVBG\t_\t7\tconj\t_\t_\n12\tthem\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\texample\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n17\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\ttame\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n19\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ttoday\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tcrack\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tstandards\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n26\tMs.\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCunningham\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\tmakes\t_\tVERB\tVBZ\t_\t17\tconj\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tall\t_\tDET\tDT\t_\t31\tdep\t_\t_\n31\tsound\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n32\tlike\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tgreat\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tadventure\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWithout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tofficial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tknowledge\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tsex\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tdeath\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tflirted\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tboth\t_\tDET\tDT\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\tshe\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\twrites\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tanalyzed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tfamilies\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tsleeping\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tarrangements\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHer\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tfriend\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tSusan\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhose\t_\tPRON\tWP$\t_\t6\tnmod:poss\t_\t_\n6\tparents\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tkept\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n8\treminding\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\ther\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tshe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n12\tunwanted\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tslept\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tnarrow\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbed\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\twedged\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n20\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ther\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tparents\t_\tNOUN\tNNS\t_\t24\tnmod:poss\t_\t_\n23\t'\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tbedroom\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n26\tas\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n27\tthough\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n28\tshe\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n29\twere\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\ttemporary\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tvisitor\t_\tNOUN\tNN\t_\t14\tadvcl\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tHer\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tfriend\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tDiana\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfather\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tprofessional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tthief\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\tdid\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tseem\t_\tVERB\tVB\t_\t9\tparataxis\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\thave\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tany\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbedrooms\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tall\t_\tDET\tDT\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMaybe\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tLily\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tbecame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tobsessed\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n6\twith\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\twhere\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tslept\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\thow\t_\tADV\tWRB\t_\t9\tconj\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\ther\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\town\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tarrangements\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tkept\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n17\tshifting\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tRosie\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdied\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\ther\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tuncles\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tmoved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tlet\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n12\ther\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n15\tsleeping\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tother\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n18\thousehold\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tarrangements\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpainted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tapartment\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\torange\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tpink\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\twhite\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\taccording\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\tto\t_\tADP\tTO\t_\t11\tmwe\t_\t_\n13\ther\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tinstructions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tloving\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdetail\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n4\tshe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\trecalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\ther\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tUncle\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGabe\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tOrthodox\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tJew\t_\tPROPN\tNNP\t_\t8\tappos\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tsong\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlyricist\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t18\tpunct\t_\t_\n17\twho\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n18\trhymed\t_\tVERB\tVBD\t_\t12\tdep\t_\t_\n19\triver\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tliver\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tlove\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tsong\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n26\t-RRB-\t_\tPUNCT\t-RRB-\t_\t18\tpunct\t_\t_\n27\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n29\tUncle\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tLen\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tmysterious\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tpart-time\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tinvestigator\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n36\twho\t_\tPRON\tWP\t_\t37\tnsubj\t_\t_\n37\tlooked\t_\tVERB\tVBD\t_\t35\tacl:relcl\t_\t_\n38\tlike\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tLincoln\t_\tPROPN\tNNP\t_\t37\tnmod\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n41\tcarried\t_\tVERB\tVBD\t_\t37\tconj\t_\t_\n42\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tchange\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\tclothing\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n46\tin\t_\tADP\tIN\t_\t49\tcase\t_\t_\n47\ta\t_\tDET\tDT\t_\t49\tdet\t_\t_\n48\tManila\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tenvelope\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n51\tlike\t_\tADP\tIN\t_\t55\tcase\t_\t_\n52\tan\t_\tDET\tDT\t_\t55\tdet\t_\t_\n53\t``\t_\tPUNCT\t``\t_\t55\tpunct\t_\t_\n54\tundercover\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n55\tPresident\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n56\ton\t_\tADP\tIN\t_\t59\tcase\t_\t_\n57\ta\t_\tDET\tDT\t_\t59\tdet\t_\t_\n58\tgood-will\t_\tADJ\tJJ\t_\t59\tamod\t_\t_\n59\tmission\t_\tNOUN\tNN\t_\t55\tnmod\t_\t_\n60\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n61\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tby\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tstrangeness\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\thonestly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLily\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tgrandmother\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tno\t_\tDET\tDT\t_\t7\tneg\t_\t_\n6\tcookie\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\texcised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\theads\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tdisliked\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\trelatives\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfamily\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\talbum\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n21\tlugged\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n22\taround\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\ther\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tperennial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\twork-in-progress\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n28\tPhilosophy\t_\tNOUN\tNN\t_\t25\tdep\t_\t_\n29\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tWomen\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbook\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tloses\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmomentum\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\ttoward\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tend\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n11\tLily\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tbecomes\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\tpreoccupied\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n15\twith\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tdating\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n17\tboys\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tless\t_\tADV\tRBR\t_\t14\tconj\t_\t_\n20\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\ther\t_\tPRON\tPRP\t_\t24\tdep\t_\t_\n22\tdelightfully\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tweird\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tfamily\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tpart\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthough\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t11\texpl\t_\t_\n9\t's\t_\tPART\tPOS\t_\t11\tdep\t_\t_\n10\tmuch\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpleasure\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\ther\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n14\tsaucy\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tpoignant\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tprobe\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\tinto\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmysteries\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tBabylonian\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tBronx\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tBronx\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tfigures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tBruce\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tJay\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tFriedman\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tlatest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n11\tnovel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tflashes\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n15\tback\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tNew\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tYork\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\t'50s\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n2\tboth\t_\tDET\tDT\t_\t7\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tpast\t_\tNOUN\tNN\t_\t7\tamod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tpresent\t_\tADJ\tJJ\t_\t4\tconj\t_\t_\n7\tworlds\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tThe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tCurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tClimate\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n15\tAtlantic\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tMonthly\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPress\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\t200\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tpages\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t18.95\t_\tNUM\tCD\t_\t17\tdep\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n25\tfeel\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n26\tcramped\t_\tADJ\tJJ\t_\t25\txcomp\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tstatic\t_\tADJ\tJJ\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tsixth\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnovel\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tFriedman\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tresuscitate\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tprotagonist\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\t1972\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\twork\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n19\tAbout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tHarry\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tTowns\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tHarry\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n3\tnow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t57-year-old\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\twriter\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhose\t_\tPRON\tWP$\t_\t10\tnmod:poss\t_\t_\n9\tcontinuing\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n10\tflirtation\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdrugs\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tmarginal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttypes\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tHollywood\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n21\tseems\t_\tVERB\tVBZ\t_\t6\tacl:relcl\t_\t_\n22\tquaintly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tout-of-synch\t_\tADJ\tJJ\t_\t21\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHarry\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tfondly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tremembers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\told\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n8\tdays\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tearly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\t'70s\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n15\tpeople\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n16\tlike\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tfriend\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tTravis\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\ttake\t_\tVERB\tVB\t_\t8\tacl:relcl\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpsychiatrist\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tdate\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tanalyze\t_\tVERB\tVB\t_\t21\tadvcl\t_\t_\n29\twhat\t_\tPRON\tWP\t_\t32\tdobj\t_\t_\n30\tTravis\t_\tPROPN\tNNP\t_\t32\tnsubj\t_\t_\n31\twas\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\tdoing\t_\tVERB\tVBG\t_\t28\tccomp\t_\t_\n33\twrong\t_\tADJ\tJJ\t_\t32\tadvmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tAn\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tL.A.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tsolution\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\texplains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tFriedman\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLine\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n2\tby\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tline\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tFriedman\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tweary\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcynicism\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n11\tamusing\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tespecially\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n15\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\t's\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\triffing\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tHollywood\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tsocial\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tscheme\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t--\t_\tPUNCT\t:\t_\t22\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tway\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n26\tpeople\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tsize\t_\tVERB\tVBP\t_\t25\tacl:relcl\t_\t_\n28\teach\t_\tDET\tDT\t_\t27\tdobj\t_\t_\n29\tother\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n30\tup\t_\tADP\tRP\t_\t27\tcompound:prt\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\timmediately\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tcanceling\t_\tVERB\tVBG\t_\t27\txcomp\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tdesperate\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tones\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n37\twho\t_\tPRON\tWP\t_\t40\tnsubj\t_\t_\n38\tmerely\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n39\talmost\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tmade\t_\tVERB\tVBD\t_\t36\tacl:relcl\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t40\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHarry\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tavoided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tall\t_\tDET\tPDT\t_\t5\tdet:predet\t_\t_\n5\tthat\t_\tDET\tDT\t_\t3\tdobj\t_\t_\n6\tby\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tliving\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tLong\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tIsland\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tsuburb\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\twife\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twho\t_\tPRON\tWP\t_\t20\tnsubj\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n19\tso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\taddicted\t_\tADJ\tJJ\t_\t15\tacl:relcl\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tsoap\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\toperas\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tmystery\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tnovels\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\tshe\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n28\tbarely\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tseems\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tnotice\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\twhen\t_\tADV\tWRB\t_\t35\tadvmod\t_\t_\n33\ther\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\thusband\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n35\tdisappears\t_\tVERB\tVBZ\t_\t31\tadvcl\t_\t_\n36\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tdrug-seeking\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tforays\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\tinto\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tManhattan\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ttoo\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tlines\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfigure\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n11\tHarry\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n12\tout\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbore\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tResources\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tChemical\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tagreed\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tpay\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n12\t1.5\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\taccord\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tEnvironmental\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tProtection\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAgency\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n24\tregarding\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n25\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tenvironmental\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcleanup\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tdefunct\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tsmelter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcompany\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n34\tformerly\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\toperated\t_\tVERB\tVBD\t_\t31\tacl:relcl\t_\t_\n36\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tIdaho\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1984\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tEPA\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tnotified\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tGulf\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tResources\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpart-owner\t_\tNOUN\tNN\t_\t7\tacl:relcl\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsmelter\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n20\tpotentially\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tliable\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n22\tfor\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tsharing\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n24\tcleanup\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tcosts\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsite\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\tunder\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tfederal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tSuperfund\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tprogram\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t21-square-mile\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tarea\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tcontaminated\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tlead\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tzinc\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmetals\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tResources\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tearlier\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n4\tthis\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n6\tproposed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\treorganization\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tplan\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tmake\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tunit\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tBermuda\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tconcern\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tpotentially\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\texempting\t_\tVERB\tVBG\t_\t12\txcomp\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tliability\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsmelter\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcleanup\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tcosts\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n5\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tpart\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tagreement\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tEPA\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n16\tmade\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n17\tcertain\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tvoluntary\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tundertakings\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\trespect\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tintercorporate\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\ttransactions\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tentered\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n26\tinto\t_\tADP\tIN\t_\t25\tnmod\t_\t_\n27\tafter\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\treorganization\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tissued\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstatement\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tlate\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n16\t$\t_\tSYM\t$\t_\t24\tnsubjpass\t_\t_\n17\t1\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpayment\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t24\tauxpass\t_\t_\n23\tpreviously\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tprovided\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n25\tfor\t_\tADP\tIN\t_\t24\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tfinancial\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tstatements\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n31\tthat\t_\tDET\tDT\t_\t36\tmark\t_\t_\n32\t$\t_\tSYM\t$\t_\t33\tdep\t_\t_\n33\t500,000\t_\tNUM\tCD\t_\t36\tnsubjpass\t_\t_\n34\twill\t_\tAUX\tMD\t_\t36\taux\t_\t_\n35\tbe\t_\tAUX\tVB\t_\t36\tauxpass\t_\t_\n36\trecognized\t_\tVERB\tVBN\t_\t24\tconj\t_\t_\n37\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\tits\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n39\t1989\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n40\tthird-quarter\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tstatement\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tagreement\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tconsent\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n5\tdecree\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\tsubject\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tcourt\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tapproval\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tResources\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tseek\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\trecover\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tequitable\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcontribution\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tothers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tboth\t_\tCONJ\tCC\t_\t18\tcc:preconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tamount\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tsettlement\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\tany\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tliabilities\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n26\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n27\tmay\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tincur\t_\tVERB\tVB\t_\t25\tacl:relcl\t_\t_\n29\tunder\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tSuperfund\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tlaw\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tGulf\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tmust\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t7\tiobj\t_\t_\n11\t45\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n13\t'\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n14\tadvance\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\twritten\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tnotice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n17\tbefore\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tissuing\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n19\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdividends\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tcommon\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tstock\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tnet\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tworth\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tfall\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tbelow\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n11\t185\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdividends\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\tauxpass\t_\t_\n17\tissued\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tterms\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthat\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tagreement\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tonly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tbecome\t_\tVERB\tVBP\t_\t28\tccomp\t_\t_\n9\teffective\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdate\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tGulf\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\treorganization\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t19\tdobj\t_\t_\n18\twe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tanticipate\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\toccur\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n22\tsometime\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tearly\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\t1990\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tLawrence\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tR.\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tMehl\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tGulf\t_\tPROPN\tNNP\t_\t36\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tgeneral\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tcounsel\t_\tNOUN\tNN\t_\t31\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tGulf\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\tmust\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tgovernment\t_\tNOUN\tNN\t_\t6\tiobj\t_\t_\n9\t20\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n10\tdays\t_\tNOUN\tNNS\t_\t14\tnmod:poss\t_\t_\n11\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n12\tadvance\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\twritten\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tnotice\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tany\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tloans\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\texceeding\t_\tVERB\tVBG\t_\t17\tacl\t_\t_\n19\t$\t_\tSYM\t$\t_\t18\tdobj\t_\t_\n20\t50\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t24\tnsubjpass\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\tmade\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n25\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tBermuda-based\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tholding\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcompany\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGulf\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnet\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tworth\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthose\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttransaction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tmust\t_\tAUX\tMD\t_\t12\taux\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n10\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tleast\t_\tADJ\tJJS\t_\t12\tnmod:npmod\t_\t_\n12\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n13\t150\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSeparately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\thold\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tspecial\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmeeting\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tshareholders\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tearly\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\t1990\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tvote\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n20\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tproposed\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n23\treorganization\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t8\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tnation\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\thighest-ranking\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\texecutives\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\tsaluted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tplunge\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\toverdue\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcomeuppance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tspeculators\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ttakeover\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tplayers\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAssuming\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n2\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\thead\t_\tVERB\tVB\t_\t1\tccomp\t_\t_\n8\tinto\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbottomless\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tfree\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfall\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tsome\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\texecutives\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n17\tFriday\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\taction\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tprove\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tharbinger\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tgood\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tnews\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t--\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n28\tas\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tsign\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\tthat\t_\tSCONJ\tIN\t_\t43\tmark\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tleveraged\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tbuy-out\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n36\ttakeover\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tfrenzy\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\trecent\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tyears\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n41\tmay\t_\tAUX\tMD\t_\t43\taux\t_\t_\n42\tbe\t_\tAUX\tVB\t_\t43\taux\t_\t_\n43\tabating\t_\tVERB\tVBG\t_\t30\tccomp\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\treaction\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\tartificial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tLBO\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tvaluations\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\trather\t_\tADV\tRB\t_\t9\tcc\t_\t_\n12\tthan\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tany\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfundamentals\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tJohn\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tYoung\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tchairman\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tHewlett-Packard\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\twhose\t_\tPRON\tWP$\t_\t28\tnmod:poss\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n29\tdropped\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t3.125\t_\tNUM\tCD\t_\t29\tdobj\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t34\tdep\t_\t_\n34\t48.125\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tget\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n5\trid\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlot\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthat\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnonsense\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tplus\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfew\t_\tADJ\tJJ\t_\t28\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\there\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfall\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmeeting\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBusiness\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCouncil\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tgroup\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tmeets\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdiscuss\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tnational\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tissues\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\twere\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n26\tonly\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\ttoo\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\thappy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tpersonalize\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n32\tcriticism\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tPeople\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\twish\t_\tVERB\tVBP\t_\t25\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tgovernment\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tdo\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tsomething\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tleveraged\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbuy-outs\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tdo\t_\tVERB\tVB\t_\t7\tdep\t_\t_\n14\tsomething\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\ttakeovers\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tdo\t_\tVERB\tVB\t_\t7\tdep\t_\t_\n19\tsomething\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tabout\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tDonald\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTrump\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tRand\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAraskog\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tchairman\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tITT\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tCorp.\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\twhose\t_\tPRON\tWP$\t_\t35\tnmod:poss\t_\t_\n35\tstock\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\tdropped\t_\tVERB\tVBD\t_\t32\tacl:relcl\t_\t_\n37\t$\t_\tSYM\t$\t_\t38\tdep\t_\t_\n38\t3.375\t_\tNUM\tCD\t_\t36\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWhere\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tleadership\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n6\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhere\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tguy\t_\tNOUN\tNN\t_\t2\tdep\t_\t_\n5\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tsay\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\t`\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\tEnough\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n12\tenough\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n13\t'\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n15\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n4\tremarkably\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tunperturbed\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\teven\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tthough\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tlopped\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n13\tbillions\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tdollars\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\toff\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tvalue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tcompanies\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n24\tmillions\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n25\toff\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n27\tpersonal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tfortunes\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'm\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tworry\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tdecline\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tKenneth\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tOlsen\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tDigital\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tEquipment\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n25\twas\t_\tAUX\tVBD\t_\t27\taux\t_\t_\n26\tleisurely\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tstrolling\t_\tVERB\tVBG\t_\t17\tacl:relcl\t_\t_\n28\tthrough\t_\tADP\tIN\t_\t34\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n30\tbright\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n31\torange\t_\tNOUN\tNN\t_\t34\tamod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tyellow\t_\tADJ\tJJ\t_\t31\tconj\t_\t_\n34\tleaves\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tmountains\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\there\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n39\tafter\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n40\this\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n41\tcompany\t_\tNOUN\tNN\t_\t43\tnmod:poss\t_\t_\n42\t's\t_\tPART\tPOS\t_\t41\tcase\t_\t_\n43\tshares\t_\tNOUN\tNNS\t_\t44\tnsubj\t_\t_\n44\tplunged\t_\tVERB\tVBD\t_\t27\tadvcl\t_\t_\n45\t$\t_\tSYM\t$\t_\t46\tdep\t_\t_\n46\t5.75\t_\tNUM\tCD\t_\t44\tdobj\t_\t_\n47\tto\t_\tPART\tTO\t_\t48\tmark\t_\t_\n48\tclose\t_\tVERB\tVB\t_\t44\tadvcl\t_\t_\n49\tat\t_\tADP\tIN\t_\t51\tcase\t_\t_\n50\t$\t_\tSYM\t$\t_\t51\tdep\t_\t_\n51\t86.50\t_\tNUM\tCD\t_\t48\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tbother\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tcalling\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tanybody\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n10\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\teven\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tturn\t_\tNOUN\tNN\t_\t5\tparataxis\t_\t_\n14\ton\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tTV\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tThere\t_\tADV\tRB\t_\t8\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n6\tany\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfundamental\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tchange\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tJohn\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSmale\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twhose\t_\tPRON\tWP$\t_\t23\tdobj\t_\t_\n19\tProcter\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\t&\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tGamble\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\tCo.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\ttook\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n24\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t$\t_\tSYM\t$\t_\t27\tamod\t_\t_\n26\t8.75\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n27\tslide\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tclose\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n30\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t$\t_\tSYM\t$\t_\t32\tdep\t_\t_\n32\t120.75\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfact\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tthis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n6\thappened\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n9\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n11\tthere\t_\tPRON\tEX\t_\t12\texpl\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t6\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\trecovery\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n15\tgives\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tpeople\t_\tNOUN\tNNS\t_\t15\tiobj\t_\t_\n17\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcomfort\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\tthis\t_\tPRON\tDT\t_\t25\tnsubj\t_\t_\n21\two\t_\tAUX\tMD\t_\t25\taux\t_\t_\n22\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t25\tcop\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tproblem\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\testablished\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcorporate\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmanagements\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\toften\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\ttend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tapplaud\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tsetbacks\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tstock\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tspeculators\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\ttakeover\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tartists\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIndeed\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n3\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\texecutive\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n6\twho\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tdownright\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdelighted\t_\tADJ\tJJ\t_\t5\tacl:relcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tevents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n15\tRobert\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCrandall\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tchairman\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tAMR\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tparent\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tAmerican\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAirlines\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\ttarget\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\ttakeover\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\toffer\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tMr.\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tTrump\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n2\twhether\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\taction\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\thelp\t_\tVERB\tVB\t_\t1\tccomp\t_\t_\n8\thim\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tavoid\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n10\tbeing\t_\tAUX\tVBG\t_\t11\tauxpass\t_\t_\n11\tTrumped\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n14\tNew\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tYork\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\treal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\testate\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmagnate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCrandall\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\tsmiled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tbroadly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t22\tconj\t_\t_\n26\t:\t_\tPUNCT\t:\t_\t25\tpunct\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n28\tNo\t_\tDET\tDT\t_\t29\tneg\t_\t_\n29\tcomment\t_\tNOUN\tNN\t_\t25\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmorning\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tbefore\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tsell-off\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tleaders\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\treport\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tpredicting\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\teconomy\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tgrow\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n23\troughly\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n24\tan\t_\tDET\tDT\t_\t29\tdet\t_\t_\n25\tinflation-adjusted\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n26\t2\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t29\tamod\t_\t_\n28\tannual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\trate\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tthrough\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tnext\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n35\tthen\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\taccelerate\t_\tVERB\tVB\t_\t21\tdep\t_\t_\n37\tanew\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n38\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\t1991\t_\tNUM\tCD\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t19\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\teconomists\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n5\twho\t_\tPRON\tWP\t_\t6\tnsubj\t_\t_\n6\tworked\t_\tVERB\tVBD\t_\t4\tacl:relcl\t_\t_\n7\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tBusiness\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCouncil\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tforecast\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnsubj\t_\t_\n15\tprojected\t_\tVERB\tVBD\t_\t47\tccomp\t_\t_\n16\tperiods\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdecline\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnation\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\toutput\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tover\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\ttwo\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n31\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n33\tboth\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tinstances\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tdeclines\t_\tNOUN\tNNS\t_\t39\tnsubj\t_\t_\n37\tare\t_\tVERB\tVBP\t_\t39\tcop\t_\t_\n38\ttoo\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n39\tmodest\t_\tADJ\tJJ\t_\t15\tconj\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\twarrant\t_\tVERB\tVB\t_\t39\txcomp\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tphrase\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\trecession\t_\tNOUN\tNN\t_\t43\tdep\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t47\tpunct\t_\t_\n47\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n48\tLewis\t_\tPROPN\tNNP\t_\t49\tcompound\t_\t_\n49\tPreston\t_\tPROPN\tNNP\t_\t47\tnsubj\t_\t_\n50\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n51\tchairman\t_\tNOUN\tNN\t_\t49\tappos\t_\t_\n52\tof\t_\tADP\tIN\t_\t54\tcase\t_\t_\n53\tJ.P.\t_\tPROPN\tNNP\t_\t54\tcompound\t_\t_\n54\tMorgan\t_\tPROPN\tNNP\t_\t51\tnmod\t_\t_\n55\t&\t_\tCONJ\tCC\t_\t54\tcc\t_\t_\n56\tCo.\t_\tPROPN\tNNP\t_\t54\tconj\t_\t_\n57\tand\t_\tCONJ\tCC\t_\t51\tcc\t_\t_\n58\tvice\t_\tNOUN\tNN\t_\t59\tcompound\t_\t_\n59\tchairman\t_\tNOUN\tNN\t_\t51\tconj\t_\t_\n60\tof\t_\tADP\tIN\t_\t63\tcase\t_\t_\n61\tthe\t_\tDET\tDT\t_\t63\tdet\t_\t_\n62\tBusiness\t_\tPROPN\tNNP\t_\t63\tcompound\t_\t_\n63\tCouncil\t_\tPROPN\tNNP\t_\t59\tnmod\t_\t_\n64\t.\t_\tPUNCT\t.\t_\t47\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\testate\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tslump\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n6\t's\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tpushing\t_\tVERB\tVBG\t_\t4\tacl:relcl\t_\t_\n8\tdown\t_\tADP\tRP\t_\t7\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tYork\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n14\toffice\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tspace\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\thousing\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\talso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\taffecting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcity\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tretail\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\treal\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\testate\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmarket\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tManhattan\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tonce-desirable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tstore\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsites\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsit\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tvacant\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tnewly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tconstructed\t_\tVERB\tVBN\t_\t12\tamod\t_\t_\n12\tspace\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n14\tbeen\t_\tVERB\tVBN\t_\t15\tcop\t_\t_\n15\tslow\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tfill\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRetail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n2\treal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\testate\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbrokers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\ttenants\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\treluctant\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsign\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tleases\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tbecause\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tof\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\tuncertainty\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tabout\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlocal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\teconomy\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tturmoil\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\town\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tindustries\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbelief\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n29\trents\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n30\thave\t_\tAUX\tVBP\t_\t33\taux\t_\t_\n31\tnot\t_\tPART\tRB\t_\t33\tneg\t_\t_\n32\tyet\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\thit\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n34\tbottom\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tunbelievable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tavailable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tFaith\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tConsolo\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tsenior\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tvice\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpresident\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tGarrick-Aug\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tAssociates\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tStore\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tLeasing\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tInc\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tabout\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\t2,000\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tstores\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\trent\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tup\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\ttypical\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\trange\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\t1,200\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tdep\t_\t_\n18\t1,500\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\tfurther\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tconfuses\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n5\tretailers\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n8\tshe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twonder\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tshould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tsign\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlease\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n12\tstill\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tcoming\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n14\tdown\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t?\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIs\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\twrong\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\topen\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tstore\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWho\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n9\tnext\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tdoor\t_\tNOUN\tNN\t_\t8\tadvmod\t_\t_\n11\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMs.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tConsolo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsays\t_\tVERB\tVBZ\t_\t11\tparataxis\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ttenants\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\tusually\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tnegotiate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tpay\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\trents\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n16\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tone-quarter\t_\tNOUN\tNN\t_\t19\tnmod:npmod\t_\t_\n19\tlower\t_\tADJ\tJJR\t_\t14\tacl:relcl\t_\t_\n20\tthan\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tlandlords\t_\tNOUN\tNNS\t_\t25\tnmod:poss\t_\t_\n22\t'\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tinitial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tasking\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\thandful\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\thot\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tretail\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tlocations\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t12\tcase\t_\t_\n9\tas\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\t57th\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tStreet\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tMadison\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tFifth\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tAvenue\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tareas\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n20\thave\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n21\tbeen\t_\tVERB\tVBN\t_\t22\tcop\t_\t_\n22\table\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tsustain\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\twhat\t_\tPRON\tWP\t_\t27\tdobj\t_\t_\n26\tmany\t_\tDET\tDT\t_\t27\tnsubj\t_\t_\n27\tsee\t_\tVERB\tVBP\t_\t24\tccomp\t_\t_\n28\tas\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tastronomical\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\trents\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tneighborhoods\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\trents\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tmerely\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tplateau\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\ton\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\taverage\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tManhattan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tretail\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trents\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tdropped\t_\tVERB\tVBN\t_\t23\tccomp\t_\t_\n10\t10\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t11\tdep\t_\t_\n15\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tpast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tsix\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n20\talone\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\texperts\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tfollows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n5\tsubtle\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdecline\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tprior\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tsix\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tManhattan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\trents\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thad\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\trun\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tadvmod\t_\t_\n19\trapidly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\tsince\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1986\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsame\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfactors\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\tlimiting\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tdemand\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\toffice\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tspace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\taffected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tretailing\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tbusinesses\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tcontract\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tdepart\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnumber\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\temployees\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t14\tnsubj\t_\t_\n13\tmight\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tuse\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n15\tretail\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tservices\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tshrinks\t_\tVERB\tVBZ\t_\t20\tccomp\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tEdward\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tA.\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tFriedman\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tvice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tHelmsley\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tSpear\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tInc\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tproblems\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n5\tplaguing\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\telectronics\t_\tNOUN\tNNS\t_\t11\tcompound\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tfur\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tfurniture\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\tcompanies\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n13\tkey\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcategories\t_\tNOUN\tNNS\t_\t11\tdep\t_\t_\n15\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tlocal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tretail\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\teconomy\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n21\thave\t_\tAUX\tVBP\t_\t23\taux\t_\t_\n22\tfurther\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tdeflated\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tmarket\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHardest\t_\tADJ\tJJS\t_\t2\tadvmod\t_\t_\n2\thit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t2\tdep\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t10\tdobj\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tcalls\t_\tVERB\tVBZ\t_\t2\tdep\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tsecondary\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsites\t_\tNOUN\tNNS\t_\t6\txcomp\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n12\tprimarily\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tserve\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n14\tneighborhood\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tresidents\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlocations\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tFriedman\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t13\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\tRetailers\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tincreasingly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tcautious\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\texpanding\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\trents\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\tremained\t_\tVERB\tVBN\t_\t13\tconj\t_\t_\n20\tsteady\t_\tADV\tRB\t_\t19\txcomp\t_\t_\n21\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tsome\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcases\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n25\thave\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n26\tdeclined\t_\tVERB\tVBN\t_\t19\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tWeakness\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trestaurant\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tindustry\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tleaving\t_\tVERB\tVBG\t_\t5\tacl:relcl\t_\t_\n10\tretail\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tspace\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tvacant\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\texacerbates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tproblem\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tlandlords\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tcomfort\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tlandlords\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tsmall\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tretailers\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t28\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfuture\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tlarger\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n18\tdepartment\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tstores\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tanchor\t_\tVERB\tVBP\t_\t19\tacl:relcl\t_\t_\n23\tretail\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tneighborhoods\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n26\tare\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tdoubt\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHooker\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t14\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tparent\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tBonwit\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tTeller\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tB.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAltman\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\tmired\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tbankruptcy\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tproceedings\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tBloomingdale\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n22\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tsale\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\towner\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tCampeau\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCorp\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttrend\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\ttoward\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tlower\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\trents\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tsurprising\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tgiven\t_\tVERB\tVBN\t_\t17\tmark\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcommunities\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tYork\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tbemoaning\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tloss\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tfavorite\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tlocal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tbusinesses\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\thigh\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trents\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n3\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\trecent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsoftening\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmany\t_\tDET\tDT\t_\t20\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthese\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tretailers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n14\t's\t_\tAUX\tVBZ\t_\t20\tauxpass\t_\t_\n15\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n16\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n17\ttoo\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tbig\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tjump\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\trental\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\trates\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tlate\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\t1970s\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\twhen\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n32\tleases\t_\tNOUN\tNNS\t_\t34\tnsubjpass\t_\t_\n33\twere\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n34\tsigned\t_\tVERB\tVBN\t_\t28\tacl:relcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tCertainly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\trecent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tdrop\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tdoes\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tmean\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tManhattan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tcomes\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n13\tcheap\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tretail\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trents\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\trun\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\twell\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\tabove\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tgoing\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\trate\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tcities\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMadison\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tFifth\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tAvenues\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tEast\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\t57th\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n9\tcan\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tcommand\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\trents\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n15\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n16\t500\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsquare\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfoot\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t250\t_\tNUM\tCD\t_\t26\tnsubj\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n25\tnot\t_\tADV\tRB\t_\t26\tneg\t_\t_\n26\tuncommon\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tthriving\t_\tVERB\tVBG\t_\t5\tamod\t_\t_\n3\t34th\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStreet\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tarea\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\trents\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n11\t100\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsquare\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tfoot\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t17\tdep\t_\t_\n17\tdo\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n18\tup-and-coming\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlocations\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n20\talong\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tlower\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n22\tFifth\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAvenue\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcontrast\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n4\trentals\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tbest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n8\tretail\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlocations\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tBoston\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFrancisco\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tChicago\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n17\trarely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\ttop\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t100\t_\tNUM\tCD\t_\t18\tdobj\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tsquare\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tfoot\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n2\trents\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tBeverly\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tHills\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t'\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tRodeo\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tDrive\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n9\tgenerally\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n10\tdo\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\texceed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t125\t_\tNUM\tCD\t_\t12\tdobj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsquare\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tfoot\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tsecurities\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n11\ttrading\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tweek\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPrecision\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCastparts\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tPortland\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tOre.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\ttrading\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n12\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsymbol\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tPCP\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tinvestment\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcastings\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\ttraded\t_\tVERB\tVBN\t_\t2\tconj\t_\t_\n8\tover-the-counter\t_\tADV\tRB\t_\t7\txcomp\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRoyal\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBank\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tScotland\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tGroup\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPLC\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n9\tEdinburgh\t_\tPROPN\tNNP\t_\t15\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tScotland\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tfinancial\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tservices\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tcompany\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tlist\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tAmerican\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdepositary\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshares\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n23\trepresenting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n24\tpreferred\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tshares\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tsymbol\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n30\tRBSPr\t_\tPROPN\tNNP\t_\t29\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttrade\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tInternational\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tStock\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tExchange\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tlisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tshares\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcompanies\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAIM\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTelephones\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n6\tParsippany\t_\tPROPN\tNNP\t_\t13\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tN.J.\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\ttelecommunications\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n11\tequipment\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tsupply\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\tstarted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\ttrading\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tsymbol\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tAIM\t_\tPROPN\tNNP\t_\t19\tappos\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tover-the-counter\t_\tADV\tRB\t_\t3\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tColumbia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLaboratories\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tMiami\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\ttrading\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsymbol\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tCOB\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tpharmaceuticals\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tmaker\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\ttraded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tover-the-counter\t_\tADV\tRB\t_\t5\txcomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMarket\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSystem\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tNasdaq\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tover-the-counter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tlisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcompany\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tEmployee\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBenefit\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tPlans\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t13\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tMinneapolis\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n8\thealth-care\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tservices\t_\tNOUN\tNNS\t_\t10\tcompound\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tlisted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tsymbol\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tEBPI\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tJustice\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tWilliam\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBrennan\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tmarks\t_\tVERB\tVBZ\t_\t21\tadvcl\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstart\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\t34th\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tSupreme\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCourt\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\toccasion\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tdiffer\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tsharply\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tprevious\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tanniversaries\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\ttenure\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\t83-year-old\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tjustice\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tfinds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tinfluence\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\talmost\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\texclusively\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tdissent\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\trather\t_\tADV\tRB\t_\t15\tcc\t_\t_\n18\tthan\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tforce\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n22\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\thigh\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcourt\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tmajority\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trole\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\treversal\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ttrue\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\twell\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n12\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n13\tliberal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmoderate\t_\tADJ\tJJ\t_\t13\tconj\t_\t_\n16\tallies\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tJustices\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n19\tThurgood\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tMarshall\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\tHarry\t_\tPROPN\tNNP\t_\t23\tappos\t_\t_\n23\tBlackmun\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tJohn\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tStevens\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n3\tthese\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tfour\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tplayers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tthree\t_\tNUM\tCD\t_\t5\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tthem\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\t80s\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tready\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tassume\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tdifferent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trole\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tafter\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t88\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tcollectively\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tservice\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\thigh\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcourt\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n32\t?\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tEvery\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindication\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfour\t_\tNUM\tCD\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\tprepared\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\taccept\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\trole\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tfrustrations\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tgo\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tdifferent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tways\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJustices\t_\tPROPN\tNNPS\t_\t2\tcompound\t_\t_\n2\tBrennan\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tStevens\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tappear\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tphilosophical\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t6\tnmod\t_\t_\n9\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n10\tJustices\t_\tPROPN\tNNPS\t_\t11\tcompound\t_\t_\n11\tMarshall\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tBlackmun\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tappear\t_\tVERB\tVBP\t_\t5\tparataxis\t_\t_\n15\tfighting\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n16\tmad\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfour\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tjustices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n6\tnewcomers\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\tdissent\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\toften\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tjoining\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n12\tforces\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tpast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdecade\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tcriticize\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcourt\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tconservative\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdrift\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\talways\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\tpast\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tbucked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttrend\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tbeen\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n16\table\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tpick\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tup\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfifth\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tvote\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\teke\t_\tVERB\tVB\t_\t18\tadvcl\t_\t_\n25\tout\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tnumber\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tmajor\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tvictories\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tcivil\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\trights\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tliberties\t_\tNOUN\tNNS\t_\t36\tcompound\t_\t_\n36\tcases\t_\tNOUN\tNNS\t_\t33\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\tfive-member\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tconservative\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmajority\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tcontinues\t_\tVERB\tVBZ\t_\t22\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tsolidify\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n17\tvictories\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tliberals\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\trare\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tchange\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tmost\t_\tADV\tRBS\t_\t5\tadvmod\t_\t_\n5\tdramatic\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tJustice\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBrennan\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tsurvivor\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tmid-1960s\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n16\tliberal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmajority\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tunder\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tChief\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tJustice\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tEarl\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tWarren\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\tseven\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tSupreme\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tCourt\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tterms\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfall\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1962\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tspring\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t1967\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\theight\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tWarren\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCourt\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tpower\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n27\tJustice\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tBrennan\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\tcast\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\tonly\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\t25\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n32\tdissenting\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tvotes\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\t555\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tcases\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n37\tdecided\t_\tVERB\tVBN\t_\t36\tacl\t_\t_\n38\tby\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tcourt\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tterm\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\talone\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tcast\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\t52\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tdissenting\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tvotes\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t133\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tdecisions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tcontentious\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tflag-burning\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\truling\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\tonly\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tbig\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tvictory\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tJustice\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBrennan\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tforesaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\this\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\trole\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tstrongly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tdefending\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\timportance\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdissents\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1985\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tspeech\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tEach\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcourt\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\trevisits\t_\tVERB\tVBZ\t_\t3\tacl:relcl\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tissue\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tjustices\t_\tNOUN\tNNS\t_\t14\tnsubjpass\t_\t_\n12\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tforced\t_\tVERB\tVBN\t_\t31\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdissent\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\treconsider\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfundamental\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tquestions\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\trethink\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tresult\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n30\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\trecent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n6\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n11\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n13\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\twinning\t_\tVERB\tVBG\t_\t16\tamod\t_\t_\n16\tside\t_\tNOUN\tNN\t_\t22\tadvcl\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\t1960s\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n21\the\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tknew\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\ttables\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tmight\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tturn\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tfuture\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tknows\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n8\thow\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n9\tJustice\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tJohn\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tHarlan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tfelt\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\treference\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tlate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tconservative\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tjustice\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\twho\t_\tPRON\tWP\t_\t26\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tmost\t_\tADV\tRBS\t_\t25\tadvmod\t_\t_\n25\tfrequent\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdissenter\t_\tNOUN\tNN\t_\t20\tacl:relcl\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tWarren\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCourt\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\topinions\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAssociates\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\t81-year-old\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tJustice\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMarshall\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\tsay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tdepressed\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n12\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcourt\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tdirection\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tlast\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tspring\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n22\tfeisty\t_\tADJ\tJJ\t_\t10\tconj\t_\t_\n23\tabout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\trole\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n27\tdetermined\t_\tADJ\tJJ\t_\t22\tconj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tspeak\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\tout\t_\tADP\tRP\t_\t29\tcompound:prt\t_\t_\n31\tagainst\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcourt\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tcutbacks\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tcivil\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\trights\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tsweep\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tunder\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trug\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\thide\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n14\tI\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n15\t'm\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tnot\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tgoing\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdo\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n23\the\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tspeech\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tlast\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmonth\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tlike\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tJustice\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tBrennan\t_\tPROPN\tNNP\t_\t7\tccomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tconsiders\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tdissents\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\thighly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\timportant\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tfuture\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpoint\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n17\tthat\t_\tDET\tDT\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tescaped\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n21\tlegal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tscholars\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tHarvard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tLaw\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tSchool\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tProfessor\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tLaurence\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tTribe\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t7\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tgeneration-skipping\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tflavor\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tcurrent\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdissents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdissenters\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tWarren\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCourt\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t11\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\taux\t_\t_\n14\twriting\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshort-term\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n19\tsuggesting\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcourt\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tdirection\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\tmight\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tchange\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n27\tsoon\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tBrennan\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tMarshall\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tspeaking\t_\tVERB\tVBG\t_\t18\tccomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tdissents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\tdistant\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tfuture\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tJustice\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBlackmun\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tturn\t_\tVERB\tVB\t_\t2\tacl:relcl\t_\t_\n7\t81\t_\tNUM\tCD\t_\t6\tdobj\t_\t_\n8\tnext\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\talso\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tfeisty\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\trole\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAssociates\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\ttakes\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdefeats\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tmore\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n8\tpersonally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcolleagues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tespecially\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tattempts\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tcurtail\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tright\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n20\tabortion\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tfirst\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\trecognized\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\this\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n25\t1973\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\topinion\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tRoe\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\tvs.\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tWade\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFriends\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tassociates\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\tsaw\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n6\tJustice\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tBlackmun\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tduring\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsummer\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tno\t_\tDET\tDT\t_\t15\tneg\t_\t_\n15\tmore\t_\tADV\tRBR\t_\t16\tadvmod\t_\t_\n16\tdiscouraged\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n17\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcourt\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\toutlook\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\timproved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tafter\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tsuccessful\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcataract\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsurgery\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tAugust\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tlevel\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tfrustration\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\trecent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\timpassioned\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tspeech\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tgroup\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\thundreds\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tlawyers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tChicago\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tconcluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tremarks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tby\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tquoting\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\temotionally\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tadvmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlength\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\taccording\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t14\tmwe\t_\t_\n16\tthose\t_\tPRON\tDT\t_\t6\tnmod\t_\t_\n17\tpresent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tlate\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tMartin\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tLuther\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tKing\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tfamous\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n27\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tHave\t_\tVERB\tVBP\t_\t32\tdep\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tDream\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n32\tspeech\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n33\tfrom\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\t1963\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tMarch\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n37\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tWashington\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tJustice\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tStevens\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t69\t_\tNUM\tCD\t_\t2\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n7\tprobably\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tmost\t_\tADV\tRBS\t_\t10\tadvmod\t_\t_\n10\tphilosophical\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdissenters\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\trole\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpart\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n20\tbecause\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n21\the\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n22\tmay\t_\tAUX\tMD\t_\t26\taux\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t26\tcop\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tleast\t_\tADJ\tJJS\t_\t26\tdep\t_\t_\n26\tliberal\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tfour\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n31\tbut\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n32\talso\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n33\tbecause\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n34\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\tenjoys\t_\tVERB\tVBZ\t_\t26\tdep\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tintellectual\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tchallenge\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n39\tof\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n40\targuing\t_\tVERB\tVBG\t_\t38\tacl\t_\t_\n41\twith\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tmajority\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n44\tmore\t_\tADV\tRBR\t_\t35\tadvmod\t_\t_\n45\tthan\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tothers\t_\tNOUN\tNNS\t_\t44\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trole\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tdissenters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tassuming\t_\tVERB\tVBG\t_\t3\tacl:relcl\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfamiliar\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tone\t_\tNUM\tCD\t_\t21\tadvcl\t_\t_\n13\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tmodern\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tSupreme\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tCourt\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\thistory\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdiffers\t_\tVERB\tVBZ\t_\t32\tccomp\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\timportant\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tway\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\thistory\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n30\tcourt\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\twatchers\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n32\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdissenters\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tWarren\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCourt\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\toften\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tdefending\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tlegal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tlegacy\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tthat\t_\tADP\tIN\t_\t16\tdobj\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tinherited\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t10\tdep\t_\t_\n20\tProf.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tA.E.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tDick\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tHoward\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n24\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tUniversity\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tVirginia\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n29\tLaw\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tSchool\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n33\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tdissenters\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n36\ttoday\t_\tNOUN\tNN\t_\t35\tnmod:tmod\t_\t_\n37\tare\t_\tAUX\tVBP\t_\t38\taux\t_\t_\n38\tdefending\t_\tVERB\tVBG\t_\t10\tconj\t_\t_\n39\ta\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tlegacy\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n41\tthat\t_\tADP\tIN\t_\t43\tdobj\t_\t_\n42\tthey\t_\tPRON\tPRP\t_\t43\tnsubj\t_\t_\n43\tcreated\t_\tVERB\tVBD\t_\t40\tacl:relcl\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgovernment\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdeposits\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tfour\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tsavings-and-loan\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinstitutions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twave\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tbig\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tsick\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tthrifts\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n24\tlow\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbids\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tprevented\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsale\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tfifth\t_\tADJ\tJJ\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfour\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tS&Ls\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tlarge\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbanks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcase\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmost\t_\tADJ\tJJS\t_\t13\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\t28\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tprevious\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttransactions\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\tinitiated\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tResolution\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tTrust\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCorp.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\tsince\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t30\tnsubjpass\t_\t_\n29\twas\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tcreated\t_\tVERB\tVBN\t_\t21\tadvcl\t_\t_\n31\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tS&L\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n34\tbailout\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tlegislation\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n36\ttwo\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n37\tmonths\t_\tNOUN\tNNS\t_\t38\tnmod:npmod\t_\t_\n38\tago\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t8\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tthrifts\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tNCNB\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tCharlotte\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tN.C.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\taggressively\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\texpanded\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tmarkets\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n24\tparticularly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tTexas\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tFlorida\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbank\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tanother\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tthrift\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tfirst\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tRTC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\ttransaction\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tforeign\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbank\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdeals\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tjust\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdeposits\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\thealthy\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tassets\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n3\tclean-bank\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n5\ttransactions\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tleave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbulk\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tbad\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tassets\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tmostly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\treal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\testate\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tgovernment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tsold\t_\tVERB\tVBN\t_\t6\tadvcl\t_\t_\n24\tlater\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfour\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tinstance\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tRTC\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\tstuck\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n14\t4.51\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbad\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tassets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAcquirers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tpaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tpremiums\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tranging\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t1.5\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\t3.7\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t7\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdeposits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tbranch\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsystems\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n18\troughly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tline\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n21\twith\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n22\twhat\t_\tPRON\tWP\t_\t25\tdobj\t_\t_\n23\tanalysts\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\texpecting\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbuyers\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tlocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tinto\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdeposit\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\trates\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tjust\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\ttwo\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tweeks\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t19\tcop\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcase\t_\tNOUN\tNN\t_\t6\tadvcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tprevious\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdeals\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbuyers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\trepudiate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trates\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tpaid\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tformer\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tthrifts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tuncertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\twhether\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthese\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinstitutions\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\ttake\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tthose\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsteps\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\thighest\t_\tADJ\tJJS\t_\t13\tamod\t_\t_\n12\trate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpayers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tTexas\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tFlorida\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\trates\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n24\tare\t_\tVERB\tVBP\t_\t26\tcop\t_\t_\n25\tespecially\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tsensitive\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tretirement\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcommunities\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tRTC\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tpreviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\ttargeted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tfive\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tthrifts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tquick\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tin\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\torder\t_\tNOUN\tNN\t_\t11\tmwe\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tspend\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n15\tcash\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tcertain\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tbudgetary\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdeadlines\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tdelays\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tillustrate\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\ttough\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tchore\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\tfacing\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tagency\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tthrifts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n5\tbeached\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\twhales\t_\tNOUN\tNNS\t_\t9\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tBert\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tEly\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tindustry\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tconsultant\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n16\tbased\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tAlexandria\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tVa\t_\tPROPN\tNNP\t_\t18\tappos\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdelay\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n6\tin\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tselling\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n8\tPeople\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tHeritage\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSavings\t_\tPROPN\tNNP\t_\t7\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tSalina\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tKan.\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n19\t1.7\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tbillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tassets\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n24\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n25\tforced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tRTC\t_\tPROPN\tNNP\t_\t25\tdobj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tconsider\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n30\tselling\t_\tVERB\tVBG\t_\t29\txcomp\t_\t_\n31\toff\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tthrift\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n34\tbranch-by-branch\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tinstead\t_\tADV\tRB\t_\t34\tcc\t_\t_\n37\tof\t_\tADP\tIN\t_\t36\tmwe\t_\t_\n38\tas\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\twhole\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tinstitution\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tcontinued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tforay\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tinto\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tFlorida\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tTexas\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\tmarkets\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tUniversity\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tFederal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tSavings\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAssociation\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tHouston\t_\tPROPN\tNNP\t_\t7\tappos\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\thad\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n13\tassets\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t2.8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tTexas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tNational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBank\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tRTC\t_\tPROPN\tNNP\t_\t6\tiobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpremium\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t129\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n17\t3.5\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tbillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tdeposits\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmeasure\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdepths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t15\tnmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tTexas\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\treal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\testate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t15\taux\t_\t_\n15\tsunk\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tRTC\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n21\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n22\t3.8\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tbillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\tNCNB\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\ttake\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n28\t$\t_\tSYM\t$\t_\t27\tdobj\t_\t_\n29\t750\t_\tNUM\tCD\t_\t30\tcompound\t_\t_\n30\tmillion\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tbad\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tassets\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tacquired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFreedom\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSavings\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n6\t&\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tLoan\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tTampa\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tFla.\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\thad\t_\tVERB\tVBD\t_\t5\tacl:relcl\t_\t_\n16\ttotal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tassets\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t$\t_\tSYM\t$\t_\t17\tnmod\t_\t_\n20\t900\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tRTC\t_\tPROPN\tNNP\t_\t3\tiobj\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpremium\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n10\t40.4\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n14\t1.1\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tdeposits\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNCNB\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t266\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tFreedom\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tassets\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tRTC\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\trequire\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n19\t$\t_\tSYM\t$\t_\t18\tdobj\t_\t_\n20\t875\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tassistance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMeridian\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBancorp\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tReading\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tPa.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tHill\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFinancial\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tSavings\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAssociation\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tRed\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tHill\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tPa.\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\thad\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n23\t$\t_\tSYM\t$\t_\t22\tdobj\t_\t_\n24\t2.3\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tassets\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMeridian\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpremium\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t30.5\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tassume\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tdeposits\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpurchase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t845\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tthrift\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tassets\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n16\t1.9\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tRTC\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tassistance\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tRTC\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\ttransaction\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tforeign\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbuyer\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n11\tRoyal\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tTrustco\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tLtd.\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tToronto\t_\tPROPN\tNNP\t_\t13\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tacquire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tPacific\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tSavings\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tBank\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tCosta\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMesa\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tCalif.\t_\tPROPN\tNNP\t_\t24\tappos\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\twhich\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n29\thad\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n30\t$\t_\tSYM\t$\t_\t29\tdobj\t_\t_\n31\t949\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tassets\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tRoyal\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTrustco\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tpay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tRTC\t_\tPROPN\tNNP\t_\t4\tiobj\t_\t_\n7\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n8\t25\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tassume\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n12\t$\t_\tSYM\t$\t_\t11\tdobj\t_\t_\n13\t989\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tdeposits\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpurchase\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t473\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tassets\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n12\treceive\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n13\t$\t_\tSYM\t$\t_\t12\tdobj\t_\t_\n14\t550\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tassistance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tRTC\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfollowing\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\trecently\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfiled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n9\tSecurities\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tExchange\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tCommission\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t:\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n\n1\tAmerican\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCyanamid\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\toffering\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\t1,250,000\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tcommon\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tvia\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tMerrill\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tLynch\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tCapital\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMarkets\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLimited\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\toffering\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tup\t_\tADP\tIN\t_\t8\tdep\t_\t_\n7\tto\t_\tADP\tTO\t_\t6\tmwe\t_\t_\n8\t$\t_\tSYM\t$\t_\t4\tnmod\t_\t_\n9\t300\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tdebt\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\twarrants\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNuveen\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tCalifornia\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n3\tPerformance\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n4\tPlus\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tMunicipal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tFund\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tinitial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\toffering\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tfive\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n14\tcommon\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\tvia\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tAlex\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n20\tBrown\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n21\t&\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tSons\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tJohn\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tNuveen\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tCo.\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n30\tPrudential-Bache\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tCapital\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tFunding\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n35\tBateman\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n36\tEichler\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n38\tHill\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n39\tRichards\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tPacifiCare\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tHealth\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSystems\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tproposed\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n7\toffering\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\t1.5\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tcommon\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n16\t700,000\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tshares\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n18\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\toffered\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n21\tby\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tPacifiCare\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\t800,000\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tshares\t_\tNOUN\tNNS\t_\t20\tconj\t_\t_\n26\tby\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tUniHealth\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tAmerica\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tInc\t_\tPROPN\tNNP\t_\t25\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n31\t-LRB-\t_\tPUNCT\t-LRB-\t_\t32\tpunct\t_\t_\n32\tPacifiCare\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\t71\t_\tNUM\tCD\t_\t32\tdep\t_\t_\n35\t%\t_\tSYM\tNN\t_\t32\tdep\t_\t_\n36\t-RRB-\t_\tPUNCT\t-RRB-\t_\t32\tpunct\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n38\tvia\t_\tADP\tIN\t_\t44\tcase\t_\t_\n39\tDillon\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tRead\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n42\t&\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n43\tCo.\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n44\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n46\tGoldman\t_\tPROPN\tNNP\t_\t44\tconj\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t46\tpunct\t_\t_\n48\tSachs\t_\tPROPN\tNNP\t_\t46\tconj\t_\t_\n49\t&\t_\tCONJ\tCC\t_\t46\tcc\t_\t_\n50\tCo.\t_\tPROPN\tNNP\t_\t46\tconj\t_\t_\n51\tand\t_\tCONJ\tCC\t_\t44\tcc\t_\t_\n52\tDean\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n53\tWitter\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n54\tReynolds\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tInc\t_\tPROPN\tNNP\t_\t44\tconj\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPricor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\toffering\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tshares\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tcommon\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t300,000\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n16\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tholders\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n19\tvia\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tDrexel\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tBurnham\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tLambert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tJ.C.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tBradford\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tCo\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTrans\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tWorld\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tAirlines\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\toffering\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n9\t150\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n11\tsenior\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tnotes\t_\tNOUN\tNNS\t_\t8\tdep\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tvia\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tDrexel\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tBurnham\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmove\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treduce\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcosts\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\tof\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\twooing\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tsubscribers\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tis\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n17\tlowering\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tcirculation\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tguarantee\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tadvertisers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tsecond\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tconsecutive\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n29\tincreasing\t_\tVERB\tVBG\t_\t17\tconj\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tsubscription\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\trates\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n34\tcutting\t_\tVERB\tVBG\t_\t17\tconj\t_\t_\n35\tback\t_\tADP\tRP\t_\t34\tcompound:prt\t_\t_\n36\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tmerchandise\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tgiveaways\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tannouncement\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tstaff\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tweek\t_\tNOUN\tNN\t_\t3\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n10\texecutives\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n11\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n12\tTime\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tWarner\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tweekly\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmagazine\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tTime\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n22\tdramatically\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tde-emphasize\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\tuse\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\telectronic\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tgiveaways\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tsuch\t_\tADJ\tJJ\t_\t32\tcase\t_\t_\n31\tas\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\ttelephones\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\ttelevision\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n35\tsubscription\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tdrives\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n37\t;\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n38\tcut\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n39\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tcirculation\t_\tNOUN\tNN\t_\t38\tdobj\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t42\tnsubj\t_\t_\n42\tguarantees\t_\tVERB\tVBZ\t_\t40\tacl:relcl\t_\t_\n43\tadvertisers\t_\tNOUN\tNNS\t_\t42\tdobj\t_\t_\n44\tby\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\t300,000\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n47\tto\t_\tADP\tTO\t_\t49\tcase\t_\t_\n48\tfour\t_\tNUM\tCD\t_\t49\tcompound\t_\t_\n49\tmillion\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n50\t;\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n51\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n52\tincrease\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n53\tthe\t_\tDET\tDT\t_\t54\tdet\t_\t_\n54\tcost\t_\tNOUN\tNN\t_\t52\tdobj\t_\t_\n55\tof\t_\tADP\tIN\t_\t59\tcase\t_\t_\n56\tits\t_\tPRON\tPRP$\t_\t59\tnmod:poss\t_\t_\n57\tannual\t_\tADJ\tJJ\t_\t59\tamod\t_\t_\n58\tsubscription\t_\tNOUN\tNN\t_\t59\tcompound\t_\t_\n59\trate\t_\tNOUN\tNN\t_\t54\tnmod\t_\t_\n60\tby\t_\tADP\tIN\t_\t62\tcase\t_\t_\n61\tabout\t_\tADV\tRB\t_\t62\tadvmod\t_\t_\n62\t$\t_\tSYM\t$\t_\t52\tnmod\t_\t_\n63\t4\t_\tNUM\tCD\t_\t62\tnummod\t_\t_\n64\tto\t_\tADP\tTO\t_\t66\tcase\t_\t_\n65\t$\t_\tSYM\t$\t_\t66\tdep\t_\t_\n66\t55\t_\tNUM\tCD\t_\t52\tnmod\t_\t_\n67\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\trelated\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdevelopment\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tnews-weekly\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfourth\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\trow\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\two\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tincrease\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tadvertising\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\trates\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t1990\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n27\t;\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n29\tfull\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\tfour-color\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tpage\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tmagazine\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\tcosts\t_\tVERB\tVBZ\t_\t17\tparataxis\t_\t_\n37\tabout\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\t$\t_\tSYM\t$\t_\t36\tdobj\t_\t_\n39\t120,000\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n3\tbecause\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tguaranteed\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n6\tcirculation\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbase\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeing\t_\tAUX\tVBG\t_\t10\tauxpass\t_\t_\n10\tlowered\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n12\tad\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trates\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t19\tcop\t_\t_\n16\teffectively\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n17\t7.5\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t19\tnmod:npmod\t_\t_\n19\thigher\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n20\tper\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsubscriber\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\taccording\t_\tVERB\tVBG\t_\t26\tcase\t_\t_\n24\tto\t_\tADP\tTO\t_\t23\tmwe\t_\t_\n25\tRichard\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tHeinemann\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tTime\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tassociate\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpublisher\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tfollowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcourse\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tmass-circulation\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmagazines\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\tthat\t_\tADP\tIN\t_\t16\tnsubj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\trecent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tchallenged\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tpublishing\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmyth\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n21\tmaintaining\t_\tVERB\tVBG\t_\t31\tcsubj\t_\t_\n22\tartificially\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\thigh\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n26\texpensive\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n28\tcirculations\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n29\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tway\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tdraw\t_\tVERB\tVB\t_\t31\tacl\t_\t_\n34\tadvertisers\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n5\tReader\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tDigest\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tNew\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tYork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tTimes\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tMcCall\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n18\tmost\t_\tADV\tRBS\t_\t19\tadvmod\t_\t_\n19\trecently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n20\tNews\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tTV\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tGuide\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n26\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tcut\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n29\tmassive\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n30\tcirculation\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n31\trate\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tbases\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\teliminate\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n35\tmarginal\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tcirculation\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n38\thold\t_\tVERB\tVB\t_\t34\tconj\t_\t_\n39\tdown\t_\tADP\tRP\t_\t38\tcompound:prt\t_\t_\n40\trates\t_\tNOUN\tNNS\t_\t38\tdobj\t_\t_\n41\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\tadvertisers\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tDeep\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tdiscounts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tsubscriptions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\toffers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tfree\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tclock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tradios\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\twatches\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\taccepted\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tforms\t_\tNOUN\tNNS\t_\t14\txcomp\t_\t_\n17\tof\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tattracting\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tsubscribers\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\thyper-competitive\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tworld\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tmagazine\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tnews-weeklies\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tTime\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tas\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tpart\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tmore\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n9\tcost-conscious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tTime\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tWarner\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\twants\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\twean\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\titself\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\taway\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\texpensive\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tgimmicks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBesides\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tTime\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tselling\t_\tVERB\tVBG\t_\t15\tcsubj\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnews\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmagazine\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tclock\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tradio\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n15\ttacky\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tGiveaways\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tjust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tgive\t_\tVERB\tVBP\t_\t11\tccomp\t_\t_\n5\tpeople\t_\tNOUN\tNNS\t_\t4\tiobj\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\twrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\timage\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tMr.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tHeinemann\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tperception\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfocus\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\toff\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmagazine\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tmagazine\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tpredictably\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tpaint\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcirculation\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcut\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshow\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tstrength\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\tactually\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbenefit\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tadvertisers\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tWhat\t_\tPRON\tWP\t_\t5\tdobj\t_\t_\n3\twe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tdoing\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t27\tccomp\t_\t_\n7\tscreening\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n8\tout\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\treaders\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n11\twho\t_\tPRON\tWP\t_\t15\tnsubjpass\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tauxpass\t_\t_\n13\tonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tcasually\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\trelated\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmagazine\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n20\tdo\t_\tAUX\tVBP\t_\t23\taux\t_\t_\n21\tn't\t_\tPART\tRB\t_\t23\tneg\t_\t_\n22\treally\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tread\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tMr.\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tHeinemann\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcreate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tquality\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tinvolvement\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tHowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tTime\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\texecutives\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsame\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\texplanation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOctober\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n12\t1988\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmagazine\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tcut\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\tguaranteed\t_\tVERB\tVBN\t_\t18\tamod\t_\t_\n18\tcirculation\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t4.6\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\t4.3\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tTime\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tpaid\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcirculation\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n7\taccording\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n8\tto\t_\tADP\tTO\t_\t7\tmwe\t_\t_\n9\tAudit\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBureau\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tCirculations\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t7.3\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t14\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\t4,393,237\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tsix\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\tended\t_\tVERB\tVBD\t_\t22\tacl\t_\t_\n24\tJune\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\t30\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n27\t1989\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tTime\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmove\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeing\t_\tAUX\tVBG\t_\t8\tauxpass\t_\t_\n8\treceived\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\twell\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\tonce\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\tterrific\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n5\tfor\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tadvertisers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tknow\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\treader\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tpaying\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t13\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tMichael\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tDrexler\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tnational\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tmedia\t_\tNOUN\tNNS\t_\t23\tcompound\t_\t_\n23\tdirector\t_\tNOUN\tNN\t_\t19\tappos\t_\t_\n24\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tBozell\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n26\tInc.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tad\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tagency\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdrops\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcirculation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tno\t_\tDET\tDT\t_\t10\tneg\t_\t_\n10\tconsequence\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tshow\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tweakness\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\timproving\t_\tVERB\tVBG\t_\t5\tparataxis\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tquality\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tcirculation\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\twhile\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tinsuring\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tprofits\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHeinemann\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tchanges\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\trepresent\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfocus\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tmagazine\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tindustry\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmagazine\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tnet\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trevenue\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n20\tper\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsubscriber\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tactual\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\trevenue\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tsubscribers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n29\tafter\t_\tSCONJ\tIN\t_\t38\tmark\t_\t_\n30\tdiscounts\t_\tNOUN\tNNS\t_\t38\tnsubjpass\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcost\t_\tNOUN\tNN\t_\t30\tconj\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tpremiums\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n36\thave\t_\tAUX\tVBP\t_\t38\taux\t_\t_\n37\tbeen\t_\tAUX\tVBN\t_\t38\tauxpass\t_\t_\n38\tstripped\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n39\taway\t_\tADP\tRP\t_\t38\tcompound:prt\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tquestion\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n5\thow\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n6\tmuch\t_\tADJ\tJJ\t_\t9\tdep\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tgetting\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\teach\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\treader\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tHeinemann\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tTime\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\trivals\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tnews-weeklies\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tWashington\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tPost\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCo.\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tNewsweek\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tNews\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t&\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tWorld\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tReport\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n19\tless\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n20\treliant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\telectronic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tgiveaways\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyears\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n29\tboth\t_\tDET\tDT\t_\t32\tnsubj\t_\t_\n30\thave\t_\tAUX\tVBP\t_\t32\taux\t_\t_\n31\tbeen\t_\tAUX\tVBN\t_\t32\taux\t_\t_\n32\tincreasing\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n33\ttheir\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n34\tcirculation\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n35\trate\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tbases\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmagazines\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tannounce\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tad\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\trates\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tcirculation\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tlevels\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1990\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n15\twithin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbroke\t_\tVERB\tVBD\t_\t18\tadvcl\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tattempted\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcoup\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tPanama\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tweeks\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tago\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\tSen.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tChristopher\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tDodd\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tState\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tDepartment\t_\tPROPN\tNNP\t_\t18\tdobj\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tbriefing\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\t`\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n6\tfollow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tCNN\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\t'\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\treporters\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\thow\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n4\tfar\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n5\tTed\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tTurner\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tCable\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tNews\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tNetwork\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tcome\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n13\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tbirth\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tnine\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tyears\t_\tNOUN\tNNS\t_\t18\tnmod:npmod\t_\t_\n18\tago\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\twhen\t_\tADV\tWRB\t_\t23\tadvmod\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\twas\t_\tAUX\tVBD\t_\t23\tauxpass\t_\t_\n23\tconsidered\t_\tVERB\tVBN\t_\t15\tacl:relcl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tlaughingstock\t_\tNOUN\tNN\t_\t23\txcomp\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\ttelevision\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tnews\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tbigger\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tfaster\t_\tADJ\tJJR\t_\t3\tconj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tmore\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n8\tprofitable\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n9\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tdivisions\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tany\t_\tDET\tDT\t_\t12\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tthree\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tbroadcast\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tnetworks\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tniche\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\tas\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tnetwork\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\trecord\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n10\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcrises\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\tdraws\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\telite\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\taudiences\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\taround\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tworld\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tall\t_\tDET\tPDT\t_\t5\tdet:predet\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tsuccess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tCNN\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\thit\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tplateau\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tviewership\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsoars\t_\tNOUN\tNNS\t_\t10\tadvcl\t_\t_\n4\twhen\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tnews\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tbreaks\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tebbs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tperiods\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tcalm\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\texecutives\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tworry\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tnetwork\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tpunchy\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\trepetitive\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tformat\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tmay\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tgetting\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n16\tstale\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\two\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tkeep\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n21\tviewers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tcoming\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n23\tback\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\talternatives\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\tmultiply\t_\tVERB\tVBP\t_\t22\tadvcl\t_\t_\n28\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tnews\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tinformation\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n32\ton\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tcable-TV\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tJust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tfact\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n7\ton\t_\tADP\tIN\t_\t4\tccomp\t_\t_\n8\t24\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\thours\t_\tNOUN\tNNS\t_\t7\tnmod:tmod\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tno\t_\tDET\tDT\t_\t12\tneg\t_\t_\n12\tlonger\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\tbulletin\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tEd\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tTurner\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tCNN\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\texecutive\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tvice\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tnews\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tgathering\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t31\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n30\tno\t_\tDET\tDT\t_\t31\tneg\t_\t_\n31\trelation\t_\tNOUN\tNN\t_\t24\tdep\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\tTed\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tTurner\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t31\tpunct\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tlive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthat\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\tCNN\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tunit\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tAtlanta-based\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\tTurner\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBroadcasting\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tSystem\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tInc.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\treposition\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\titself\t_\tPRON\tPRP\t_\t16\tdobj\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tprimary\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tchannel\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n24\twhat\t_\tPRON\tWP\t_\t37\tdobj\t_\t_\n25\tpeople\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n26\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\ttelevision\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tindustry\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tcall\t_\tVERB\tVBP\t_\t21\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n33\ttop\t_\tNOUN\tNN\t_\t37\tdep\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tmind\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t37\tpunct\t_\t_\n37\tnetwork\t_\tNOUN\tNN\t_\t30\txcomp\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTonight\t_\tADV\tRB\t_\t11\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tkick\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n5\toff\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teffort\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tCNN\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tpremiere\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tprime-time\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tnewscast\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tyears\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\thourlong\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tshow\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n22\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\t6\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n24\tp.m\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n26\tEastern\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttime\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tair\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n30\thead-to-head\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\tagainst\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tnetwork\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tnewscasts\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshow\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tco-anchored\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tBernard\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tShaw\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tCatherine\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCrier\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\t34-year-old\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tformer\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tTexas\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tjudge\t_\tNOUN\tNN\t_\t11\tappos\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tcampus\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tbeauty\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tqueen\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n22\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tnever\t_\tADV\tRB\t_\t25\tneg\t_\t_\n25\theld\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tjob\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\ttelevision\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tjournalism\t_\tNOUN\tNN\t_\t29\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tshow\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tperhaps\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tboldest\t_\tADJ\tJJS\t_\t0\troot\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tnumber\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tsteps\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tnetwork\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n16\ttaking\t_\tVERB\tVBG\t_\t12\tacl:relcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuild\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\taudience\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tloyalty\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tby\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tshifting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n23\taway\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\tcurrent\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tformat\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\ttoward\t_\tADP\tIN\t_\t34\tcase\t_\t_\n29\tmore\t_\tADJ\tJJR\t_\t34\tamod\t_\t_\n30\tfull-length\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n32\tsignature\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n34\tprogramming\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n35\twith\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\trecognizable\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tstars\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tdistinguish\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n3\titself\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tCNN\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\texpanding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tinternational\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcoverage\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n12\tadding\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tsecond\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tglobal-news\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprogram\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tpaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\thigher\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tsalaries\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tafter\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tyears\t_\tNOUN\tNNS\t_\t3\tdep\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tscrimping\t_\tVERB\tVBG\t_\t8\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlure\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tkeep\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n16\texperienced\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tstaffers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tembarking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\texpensive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tgamble\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbreak\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstories\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tlarge\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tinvestigative-reporting\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tteam\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnext\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstage\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t32\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tbeyond\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\topinion\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tleaders\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n13\tuse\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n14\tus\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tpoint\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\treference\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tbecome\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpoint\t_\tNOUN\tNN\t_\t21\txcomp\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\treference\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tordinary\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tdinner\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\ttables\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t32\tpunct\t_\t_\n32\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n33\tJon\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tPetrovich\t_\tPROPN\tNNP\t_\t32\tdep\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\texecutive\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tvice\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tHeadline\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tNews\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tCNN\t_\tPROPN\tNNP\t_\t46\tnmod:poss\t_\t_\n44\t's\t_\tPART\tPOS\t_\t43\tcase\t_\t_\n45\tsister\t_\tNOUN\tNN\t_\t46\tcompound\t_\t_\n46\tnetwork\t_\tNOUN\tNN\t_\t41\tappos\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t32\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\two\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n6\teasy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNetworks\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tconsumer\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tdevelop\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\timages\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tpeoples\t_\tNOUN\tNNS\t_\t13\tnmod:poss\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tminds\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t17\tcop\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\teasy\t_\tADJ\tJJ\t_\t9\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tchange\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tmoney\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tthat\t_\tADP\tIN\t_\t9\tdobj\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tbeen\t_\tVERB\tVBN\t_\t9\tcop\t_\t_\n9\treluctant\t_\tADJ\tJJ\t_\t4\tacl:relcl\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tspend\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n14\tprograms\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\thire\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n17\ttalent\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tthat\t_\tADP\tIN\t_\t21\tdobj\t_\t_\n19\tviewers\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\ttune\t_\tVERB\tVB\t_\t17\tacl:relcl\t_\t_\n22\tin\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tspecially\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsee\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcable-TV\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\toperators\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tdistributors\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpart\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\towners\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n13\tlike\t_\tADP\tIN\t_\t0\troot\t_\t_\n14\tthings\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tway\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trepositioning\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbid\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\taimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tCNN\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tunsteady\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tviewership\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t15\tnsubj\t_\t_\n14\tmay\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thappen\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t15\tnmod\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tcable-TV\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tnews\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tgrows\t_\tVERB\tVBZ\t_\t15\tadvcl\t_\t_\n24\tmore\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n25\tcompetitive\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAlready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tCNN\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tfacing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tstronger\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tcompetition\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tFinancial\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tNews\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tNetwork\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tInc.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tGeneral\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tElectric\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCo.\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tConsumer\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tNews\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tBusiness\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tChannel\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tboth\t_\tDET\tDT\t_\t28\tnsubj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n27\tare\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n28\tlikely\t_\tADJ\tJJ\t_\t12\tacl:relcl\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tpursue\t_\tVERB\tVB\t_\t28\txcomp\t_\t_\n31\tmore\t_\tADJ\tJJR\t_\t32\tdep\t_\t_\n32\tgeneral\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnews\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tfuture\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcable-TV\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsystems\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n7\tthemselves\t_\tPRON\tPRP\t_\t6\tnmod:npmod\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tairing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t15\tamod\t_\t_\n11\tlocal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tregional\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n14\tnews\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tprograms\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n16\tproduced\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tlocal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tbroadcast\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tstations\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\twants\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tchange\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tits\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tviewers\t_\tNOUN\tNNS\t_\t8\tnmod:poss\t_\t_\n7\t'\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\thabits\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\twatchers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\twhole\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tdisloyal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgroup\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tchannel-zapping\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tgrazers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tnews\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tjunkies\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\tspend\t_\tVERB\tVBP\t_\t11\tacl:relcl\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\taverage\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tjust\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\t26\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tminutes\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tday\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\twatching\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n32\tCNN\t_\tPROPN\tNNP\t_\t31\tdobj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n34\taccording\t_\tVERB\tVBG\t_\t37\tcase\t_\t_\n35\tto\t_\tADP\tTO\t_\t34\tmwe\t_\t_\n36\taudience\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tresearch\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n3\tless\t_\tADJ\tJJR\t_\t5\tadvmod\t_\t_\n4\tthan\t_\tADP\tIN\t_\t3\tmwe\t_\t_\n5\tone-third\t_\tNOUN\tNN\t_\t7\tnummod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttime\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tthat\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n9\tviewers\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\twatch\t_\tVERB\tVBP\t_\t7\tdep\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tmajor\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tbroadcast\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tnetworks\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbrief\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tattention\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tviewers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tgive\t_\tVERB\tVBP\t_\t3\tacl:relcl\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tput\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdisadvantage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n14\tratings\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tdata\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\tadvertising\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tbecome\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n21\tmore\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n22\timportant\t_\tADJ\tJJ\t_\t20\txcomp\t_\t_\n23\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n24\tcable-TV\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchannels\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tviewer\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\thabits\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\tmolded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tformat\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tstrategy\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpast\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tserve\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tTV\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\twire\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tservice\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfocused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ton\t_\tSCONJ\tIN\t_\t4\tcase\t_\t_\n4\tbuilding\t_\tNOUN\tNN\t_\t2\tadvcl\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tnews\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbureaus\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\taround\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\tso\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n14\tas\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tevents\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\ttook\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n17\tplace\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tgo\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n21\tlive\t_\tADJ\tJJ\t_\t20\txcomp\t_\t_\n22\tquicker\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tlonger\t_\tADV\tRBR\t_\t22\tconj\t_\t_\n25\tthan\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnetworks\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tfilled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tdaily\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tschedule\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tnewscasts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tcalled\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tDaybreak\t_\tPROPN\tNNP\t_\t8\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n14\tDaywatch\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n18\tNewsday\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n23\tNewsnight\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tshows\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n29\tvaried\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n30\tlittle\t_\tADJ\tJJ\t_\t29\tdobj\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tcontent\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tpersonality\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n35\tor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n36\tlook\t_\tNOUN\tNN\t_\t32\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tpush\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\ton\t_\tADV\tRB\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmore-distinctive\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\tshows\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tOur\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tgoal\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcreate\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t8\tamod\t_\t_\n8\tprograms\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tindividual\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tidentity\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tPaul\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tAmos\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tCNN\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\texecutive\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tvice\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n23\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tprogramming\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAccordingly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tCNN\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tadding\t_\tVERB\tVBG\t_\t34\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tworld-affairs\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tshow\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmorning\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tsurveys\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tshow\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tglobal-news\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\thour\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tafternoon\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t28\tcop\t_\t_\n22\tamong\t_\tADP\tIN\t_\t28\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n24\tmost\t_\tADV\tRBS\t_\t26\tadvmod\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n26\tdifferentiated\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n28\tprograms\t_\tNOUN\tNNS\t_\t14\tccomp\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tviewers\t_\tNOUN\tNNS\t_\t32\tnmod:poss\t_\t_\n31\t'\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tminds\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n34\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n35\tMr.\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tAmos\t_\tPROPN\tNNP\t_\t34\tnsubj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t34\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\texploring\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\toriginal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tprograms\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tsimilar\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n10\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n13\tLarry\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tKing\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n15\tLive\t_\tPROPN\tNNP\t_\t14\tamod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tCrossfire\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\ttalk\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n22\tshows\t_\tVERB\tVBZ\t_\t21\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n24\twhich\t_\tPRON\tWDT\t_\t26\tdobj\t_\t_\n25\texecutives\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\thope\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n27\twill\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tkeep\t_\tVERB\tVB\t_\t26\tccomp\t_\t_\n29\tpeople\t_\tNOUN\tNNS\t_\t30\tnsubj\t_\t_\n30\ttuned\t_\tVERB\tVBN\t_\t28\tdep\t_\t_\n31\tin\t_\tADP\tRP\t_\t30\tcompound:prt\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n5\tThe\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tWorld\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n7\tToday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tprime-time\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tnewscast\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n13\tfeaturing\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tShaw\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tMs.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCrier\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tnow\t_\tADV\tRB\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tCNN\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tfeatured\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\tHollywood\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tgossip\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tshow\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tkey\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tevening\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\t70\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tcable-television-equipped\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thouseholds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\twatch\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n10\tnews\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tdo\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n12\tso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t6:30\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\tp.m.\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\t7\t_\tNUM\tCD\t_\t14\tconj\t_\t_\n18\tp.m.\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tnetwork\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tdiscovered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tso\t_\tADP\tIN\t_\t22\tdep\t_\t_\n25\tCNN\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\twants\t_\tVERB\tVBZ\t_\t22\tparataxis\t_\t_\n27\tin\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAmos\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tShaw-Crier\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tteam\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tprobably\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdo\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tlive\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tinterviews\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twith\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n17\tmost\t_\tADJ\tJJS\t_\t27\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tprogram\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tadvmod\t_\t_\n23\tleast\t_\tADJ\tJJS\t_\t22\tmwe\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tnow\t_\tADV\tRB\t_\t27\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n27\tappearing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n28\tsimilar\t_\tADJ\tJJ\t_\t27\txcomp\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tCNN\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tother\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnewcasts\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t6\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n6\tskeptical\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfind\t_\tVERB\tVBP\t_\t31\tccomp\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n5\thard\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tconceive\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\tof\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tpeople\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tswitching\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n11\tover\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tCNN\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n15\twhat\t_\tPRON\tWP\t_\t28\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n17\tat\t_\tADP\tIN\t_\t23\tadvmod\t_\t_\n18\tleast\t_\tADJ\tJJS\t_\t17\tmwe\t_\t_\n19\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tpublic\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmind\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t28\tcop\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tsame\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tnews\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n31\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n32\tReuven\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tFrank\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tformer\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\ttwo-time\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tNBC\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tNews\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n43\tcreator\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n44\tof\t_\tADP\tIN\t_\t47\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tHuntley-Brinkley\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tReport\t_\tPROPN\tNNP\t_\t43\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tevening\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tnews\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n5\talso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tslated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tas\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCNN\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tstage\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tbig\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpush\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tinvestigative\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tjournalism\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tAugust\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tnetwork\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\thired\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\taward-winning\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tproducer\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tPamela\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tHill\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tformer\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thead\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnews\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tspecials\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tABC\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tassembling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tstaff\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\t35\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tinvestigative\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\treporters\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tproduce\t_\tVERB\tVB\t_\t5\tacl:relcl\t_\t_\n14\tweekly\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tin-depth\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tsegments\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\teye\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n22\ttoward\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tbreaking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n24\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tstories\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\texecutives\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\theadlines\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n6\tcreated\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tsuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tscoops\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tgenerate\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n12\texcitement\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n16\tbranded\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tway\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n24\t60\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tMinutes\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tdid\t_\tVERB\tVBD\t_\t22\tacl:relcl\t_\t_\n28\tso\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\twell\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tCBS\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\tsuch\t_\tDET\tPDT\t_\t5\tdet:predet\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdeparture\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpast\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tmany\t_\tADJ\tJJ\t_\t15\tnsubj\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tindustry\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n15\tskeptical\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n16\tCNN\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tfollow\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n19\tthrough\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tinvestigative\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tcommitment\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n25\tespecially\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n26\tafter\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tsees\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcost\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\tof\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n32\tproducing\t_\tVERB\tVBG\t_\t30\tacl\t_\t_\n33\tin-depth\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tpieces\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnever\t_\tADV\tRB\t_\t5\tneg\t_\t_\n5\tshown\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tinclination\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tspend\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tproduction\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tMichael\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMosettig\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsenior\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tproducer\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tMacNeil-Lehrer\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tNewsHour\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\twho\t_\tPRON\tWP\t_\t27\tnsubj\t_\t_\n27\tnotes\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tCNN\t_\tPROPN\tNNP\t_\t31\tnsubj\t_\t_\n30\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n31\tindispensable\t_\tADJ\tJJ\t_\t27\tccomp\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\this\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tjob\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnetwork\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tsalaries\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\talways\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tranged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tfar\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tbelow\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tindustry\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tstandards\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tresulting\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tless-experienced\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\twork\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tforce\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCNN\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\trecently\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tmost\t_\tADJ\tJJS\t_\t5\tamod\t_\t_\n5\temployees\t_\tNOUN\tNNS\t_\t3\tiobj\t_\t_\n6\traises\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tas\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t11\tadvmod\t_\t_\n10\tas\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n11\t15\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\t're\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n17\tstill\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\tdrastically\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tunderpaid\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n20\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tnetworks\t_\tNOUN\tNNS\t_\t19\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMosettig\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n6\tCNN\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\tmy\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\twire\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tservice\t_\tNOUN\tNN\t_\t1\tccomp\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t're\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\ttop\t_\tNOUN\tNN\t_\t10\tparataxis\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\teverything\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tto\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\timprove\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t've\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\treally\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tinvestment\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tpeople\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tcable-TV-system\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toperators\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\treason\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfear\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tany\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttinkering\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tCNN\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tformat\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tmarket\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tcable-TV\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tvery\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tgrazing\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\topportunities\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n9\tCNN\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tseeks\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tdiscourage\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubjpass\t_\t_\n3\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tobviously\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tauxpass\t_\t_\n6\tupset\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthose\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tkinds\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tservices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tevolved\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n13\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tmore\t_\tADJ\tJJR\t_\t15\tdep\t_\t_\n15\tgeneral-interest\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tlong-format\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tprogramming\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tRobert\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStengel\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tvice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tprogramming\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n31\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tContinental\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tCablevision\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tInc.\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\twhich\t_\tPRON\tWDT\t_\t37\tnsubj\t_\t_\n37\tholds\t_\tVERB\tVBZ\t_\t34\tacl:relcl\t_\t_\n38\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\t2\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n40\t%\t_\tSYM\tNN\t_\t41\tamod\t_\t_\n41\tstake\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n42\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tTurner\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tBroadcasting\t_\tPROPN\tNNP\t_\t41\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSecond\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\tCircuit\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n5\tCourt\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tAppeals\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\topinion\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tArcadian\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tPhosphate\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tcase\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tdid\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tnot\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\trepudiate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tposition\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tPennzoil\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCo.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\ttook\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tdispute\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tTexaco\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n28\tcontrary\t_\tADJ\tJJ\t_\t16\tadvmod\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tyour\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n31\tSept.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\t8\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tarticle\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n35\tCourt\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\tBacks\t_\tVERB\tVBZ\t_\t33\tdep\t_\t_\n37\tTexaco\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\tView\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n40\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tPennzoil\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tCase\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n43\t--\t_\tPUNCT\t:\t_\t36\tpunct\t_\t_\n44\tToo\t_\tADV\tRB\t_\t45\tadvmod\t_\t_\n45\tLate\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n47\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfundamental\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trule\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcontract\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tlaw\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tapplied\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tboth\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcases\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tcourts\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tnot\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tenforce\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n17\tagreements\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t24\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tparties\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n22\tdid\t_\tAUX\tVBD\t_\t24\taux\t_\t_\n23\tnot\t_\tPART\tRB\t_\t24\tneg\t_\t_\n24\tintend\t_\tVERB\tVB\t_\t17\tacl:relcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\tbound\t_\tVERB\tVBN\t_\t24\txcomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tPennzoil/Texaco\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tlitigation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcourts\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tfound\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tPennzoil\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tGetty\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tOil\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\tintended\t_\tVERB\tVBD\t_\t8\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n15\tbe\t_\tAUX\tVB\t_\t16\tauxpass\t_\t_\n16\tbound\t_\tVERB\tVBN\t_\t13\txcomp\t_\t_\n17\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tArcadian\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tPhosphates\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n22\tfound\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t22\tccomp\t_\t_\n25\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n26\tintention\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n27\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n28\tbe\t_\tAUX\tVB\t_\t29\tauxpass\t_\t_\n29\tbound\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAdmittedly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tprinciple\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcases\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsame\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\toutcome\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlegal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tdispute\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\talmost\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\talways\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tturns\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tfacts\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tfacts\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n5\tas\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tfound\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tvarious\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcourts\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthese\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\ttwo\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tlawsuits\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t17\tcop\t_\t_\n17\tdifferent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsuggest\t_\tVERB\tVBP\t_\t7\tadvcl\t_\t_\n4\totherwise\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tleave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trealm\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\treporting\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tenter\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\torbit\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tspeculation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tF.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tVihon\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tValley\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSavings\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tLoan\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAssociation\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tImperial\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tAmerica\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\twithdrew\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tregulators\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tapplication\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tbuy\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tfive\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n20\tValley\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tFederal\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tbranches\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n24\tleaving\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttransaction\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tlimbo\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbroken\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpurchase\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tadditional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tevidence\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttrouble\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tImperial\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhose\t_\tPRON\tWP$\t_\t15\tnmod:poss\t_\t_\n15\tspokesman\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t12\tacl:relcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\twithdrew\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\tapplication\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tfederal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tOffice\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tThrift\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tSupervision\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\tbecause\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tof\t_\tADP\tIN\t_\t29\tmwe\t_\t_\n31\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tinformal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnotice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n34\tthat\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n35\tImperial\t_\tPROPN\tNNP\t_\t38\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tthrift\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tunit\t_\tNOUN\tNN\t_\t39\tnsubj\t_\t_\n39\tfailed\t_\tVERB\tVBD\t_\t33\tccomp\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tmeet\t_\tVERB\tVB\t_\t39\txcomp\t_\t_\n42\tCommunity\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tReinvestment\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tAct\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\trequirements\t_\tNOUN\tNNS\t_\t41\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tCommunity\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tReinvestment\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAct\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tsavings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tloan\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tassociations\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tlend\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n12\tmoney\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tamounts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\trelated\t_\tVERB\tVBN\t_\t14\tamod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\tareas\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\twhere\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n19\tdeposits\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\tauxpass\t_\t_\n21\treceived\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttransaction\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tannounced\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAugust\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tincluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n11\t146\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tdeposits\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfive\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\toutlets\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\tCalifornia\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tSan\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tJoaquin\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tValley\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTerms\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n2\twere\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\tValley\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tFederal\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\texpected\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tpost\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tmodest\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tpretax\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tgain\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tsave\t_\tVERB\tVB\t_\t14\tconj\t_\t_\n22\tabout\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tdobj\t_\t_\n24\t2\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\toperating\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcosts\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tannually\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tValley\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tconsidering\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\twhether\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tseek\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n12\tanother\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbuyer\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbranches\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tpursue\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttransaction\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tImperial\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCorp.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\tis\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\tattempting\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tmeet\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tCommunity\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n34\tReinvestment\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tAct\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\trequirements\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tValley\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t12\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tassets\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t3.3\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\tauxpass\t_\t_\n12\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tVan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tNuys\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tImperial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tSan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tDiego\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tparent\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tImperial\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tSavings\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t&\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tLoan\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tfirst\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tsix\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t33.1\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCall\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n3\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n7\ttoo\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tbroke\t_\tADJ\tJJ\t_\t12\tdep\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tfight\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tdefense\t_\tNOUN\tNN\t_\t1\txcomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tLawyers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tdozens\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tinsolvent\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsavings\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tloan\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tassociations\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\ttack\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tefforts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tdefuse\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\tsuits\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\tfiled\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tborrowers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tdevelopers\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tcreditors\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tthrifts\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n3\t'\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tlawyers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tclaim\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsuits\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tnumbering\t_\tVERB\tVBG\t_\t8\tacl\t_\t_\n11\t700\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tdep\t_\t_\n13\t1,000\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tTexas\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\talone\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tshould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\tdismissed\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n21\tas\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tmoot\t_\tADJ\tJJ\t_\t20\tadvcl\t_\t_\n23\tbecause\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n24\tneither\t_\tCONJ\tCC\t_\t26\tcc:preconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tS&Ls\t_\tNOUN\tNNS\t_\t36\tnsubj\t_\t_\n27\tnor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\textinct\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tFederal\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tSavings\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tLoan\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tInsurance\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCorp.\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n36\thas\t_\tVERB\tVBZ\t_\t20\tadvcl\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tmoney\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n39\tto\t_\tPART\tTO\t_\t40\tmark\t_\t_\n40\tpay\t_\tVERB\tVB\t_\t38\tacl\t_\t_\n41\tjudgments\t_\tNOUN\tNNS\t_\t40\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThough\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\targument\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\thave\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcommon-sense\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tring\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n12\teven\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tS&L\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlawyers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tconcede\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthere\t_\tPRON\tEX\t_\t18\texpl\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t16\tccomp\t_\t_\n19\tlittle\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tprecedent\t_\tADJ\tJJ\t_\t18\tnsubj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tback\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tposition\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tfederal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tappeals\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tcourt\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tsignaled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\twilling\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tentertain\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tnotion\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tlawyers\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n20\thave\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\trenewed\t_\tVERB\tVBN\t_\t8\tconj\t_\t_\n22\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\targuments\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tTexas\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\teight\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n28\tother\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tstates\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n30\twhere\t_\tADV\tWRB\t_\t34\tadvmod\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tdefense\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n33\tis\t_\tAUX\tVBZ\t_\t34\tauxpass\t_\t_\n34\tpermitted\t_\tVERB\tVBN\t_\t25\tacl:relcl\t_\t_\n35\tunder\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tstate\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tlaw\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdismissal\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpending\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n6\tsuits\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tgo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tlong\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tway\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ttoward\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tclearing\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n14\tcourt\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdockets\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tTexas\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\treducing\t_\tVERB\tVBG\t_\t13\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tFSLIC\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmassive\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tlegal\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbills\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\ttopped\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n29\t$\t_\tSYM\t$\t_\t28\tdobj\t_\t_\n30\t73\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tmillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\tlast\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tyear\t_\tNOUN\tNN\t_\t28\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tS&L\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tlawyers\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tencouraged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tlast\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmonth\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tappellate-court\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\truling\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ttwo\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcases\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tbrought\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tagainst\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tdefunct\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tSunbelt\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tSavings\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\t&\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tLoan\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAssociation\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tDallas\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tdevelopers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tValley\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tRanch\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tbest\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tknown\t_\tVERB\tVBN\t_\t31\tacl\t_\t_\n35\tas\t_\tADP\tIN\t_\t38\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\ttraining\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tcenter\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n41\tDallas\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n42\tCowboys\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n43\tfootball\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tteam\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSunbelt\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tforeclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tranch\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSunbelt\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tFSLIC\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n5\targued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tFifth\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCircuit\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCourt\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tAppeals\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tthere\t_\tPRON\tEX\t_\t21\texpl\t_\t_\n17\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n18\tnever\t_\tADV\tRB\t_\t21\tneg\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t21\tcop\t_\t_\n20\tany\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tassets\t_\tNOUN\tNNS\t_\t5\tccomp\t_\t_\n22\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\twhich\t_\tPRON\tWDT\t_\t25\tnmod\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsatisfy\t_\tVERB\tVB\t_\t21\tacl:relcl\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tjudgment\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tagainst\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tSunbelt\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tSavings\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\tnor\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n32\tany\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tmeans\t_\tNOUN\tNNS\t_\t21\tconj\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tcollect\t_\tVERB\tVB\t_\t33\tacl\t_\t_\n36\tfrom\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tany\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tother\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tparty\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tincluding\t_\tVERB\tVBG\t_\t42\tcase\t_\t_\n42\tFSLIC\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n44\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n3\ttrue\t_\tADJ\tJJ\t_\t14\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcourt\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\twrote\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcontention\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tjustify\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tdismissal\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthese\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tactions\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tprudential\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tgrounds\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcourt\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tlacked\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tenough\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\tfinancial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinformation\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSunbelt\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tFSLIC\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n16\tsent\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcases\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tback\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n21\tfederal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tdistrict\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcourt\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tDallas\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHaworth\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tlawyer\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tSunbelt\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tplans\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tfile\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbrief\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tweek\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n18\turging\t_\tVERB\tVBG\t_\t13\tdep\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tdistrict\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tjudge\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tdismiss\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tsuits\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n27\tbecause\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n28\tSunbelt\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tliabilities\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n31\texceeded\t_\tVERB\tVBD\t_\t11\tadvcl\t_\t_\n32\tits\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n33\tassets\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n34\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tabout\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\t$\t_\tSYM\t$\t_\t31\tnmod\t_\t_\n37\t2\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tbillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\twhen\t_\tADV\tWRB\t_\t42\tadvmod\t_\t_\n40\tfederal\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tregulators\t_\tNOUN\tNNS\t_\t42\tnsubj\t_\t_\n42\tclosed\t_\tVERB\tVBD\t_\t31\tadvcl\t_\t_\n43\tit\t_\tPRON\tPRP\t_\t42\tdobj\t_\t_\n44\tin\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\tAugust\t_\tPROPN\tNNP\t_\t42\tnmod\t_\t_\n46\t1988\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThis\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tinstitution\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tbrain\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n7\tdead\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHaworth\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpartner\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tDallas\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\toffice\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAndrews\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t&\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tKurth\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n25\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tHouston\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tlaw\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tfirm\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlawyer\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tTriland\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInvestment\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tGroup\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdeveloper\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tValley\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tRanch\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tdismisses\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tsuch\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\targuments\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tdefense\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\tdu\t_\tX\tFW\t_\t21\tcompound\t_\t_\n23\tjour\t_\tX\tFW\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n\n1\tAttorney\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tRichard\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tJackson\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tDallas\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tjudgment\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tTriland\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tsatisfied\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tways\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n17\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tmonetary\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\taward\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tincluding\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\treversal\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tSunbelt\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tforeclosure\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\ton\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tValley\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tRanch\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tasking\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcourt\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnumber\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tthings\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tgrant\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\taddition\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tthrill\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tvictory\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tValley\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tRanch\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n8\tfree\t_\tADJ\tJJ\t_\t4\tadvmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tclear\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbooby\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tprize\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tKenneth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tJ.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tThygerson\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twho\t_\tPRON\tWP\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tnamed\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n8\tpresident\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tthrift\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tholding\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\tresigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tciting\t_\tVERB\tVBG\t_\t17\txcomp\t_\t_\n20\tpersonal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\treasons\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tThygerson\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tplanned\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\ttravel\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tbetween\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tjob\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tDenver\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\tSan\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tDiego\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\thome\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n20\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tfound\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcommute\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n25\ttoo\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tdifficult\t_\tADJ\tJJ\t_\t22\txcomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tcontinue\t_\tVERB\tVB\t_\t26\tccomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSOUTH\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAFRICA\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tFREED\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tANC\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tSisulu\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tseven\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tpolitical\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tprisoners\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThousands\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tsupporters\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tnsubj\t_\t_\n6\tbrandishing\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n7\tflags\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\toutlawed\t_\tVERB\tVBN\t_\t13\tamod\t_\t_\n11\tAfrican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tNational\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCongress\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\tgave\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tanti-apartheid\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tactivists\t_\tNOUN\tNNS\t_\t15\tiobj\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\ttumultuous\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\treception\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n22\tupon\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\treturn\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tblack\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttownships\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tacross\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tcountry\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthose\t_\tPRON\tDT\t_\t1\tnmod\t_\t_\n4\tfreed\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tspent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tleast\t_\tADJ\tJJS\t_\t9\tnmod:npmod\t_\t_\n9\t25\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:tmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tprison\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t77-year-old\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tSisulu\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tsentenced\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tlife\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\t1964\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n10\talong\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n11\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tblack\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tnationalist\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tNelson\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMandela\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\tfor\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tplotting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\toverthrow\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tgovernment\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tequality\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tblacks\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tSouth\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tAfrica\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t32\tcop\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\treach\t_\tNOUN\tNN\t_\t23\tccomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\treleases\t_\tNOUN\tNNS\t_\t13\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tannounced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tweek\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tde\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tKlerk\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twere\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tviewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tPretoria\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\ttacit\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tlegalization\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tANC\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMandela\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tconsidered\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tmost\t_\tADV\tRBS\t_\t6\tadvmod\t_\t_\n6\tprominent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tleader\t_\tNOUN\tNN\t_\t3\txcomp\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tANC\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tprison\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\this\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\trelease\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n4\twithin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tnext\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tfew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmonths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n10\twidely\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSoviet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tUnion\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n6\tthousands\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttons\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tgoods\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\tneeded\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tease\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\twidespread\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshortages\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tacross\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tnation\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tpiled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n21\tup\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tports\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\trail\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tdepots\t_\tNOUN\tNNS\t_\t23\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n29\tfood\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tshipments\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n31\twere\t_\tAUX\tVBD\t_\t32\taux\t_\t_\n32\trotting\t_\tVERB\tVBG\t_\t20\tconj\t_\t_\n33\tbecause\t_\tADV\tRB\t_\t36\tcase\t_\t_\n34\tof\t_\tADP\tIN\t_\t33\tmwe\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tlack\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tpeople\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t38\tcc\t_\t_\n40\tequipment\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n41\tto\t_\tPART\tTO\t_\t42\tmark\t_\t_\n42\tmove\t_\tVERB\tVB\t_\t38\tacl\t_\t_\n43\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n44\tcargo\t_\tNOUN\tNN\t_\t42\tdobj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tStrikes\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tmismanagement\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tcited\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tPremier\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tRyzhkov\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\twarned\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\ttough\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmeasures\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBush\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n4\tmight\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\troom\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tflexibility\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbill\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tallow\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tfederal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfunding\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tabortions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tpoor\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\twomen\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\twho\t_\tPRON\tWP\t_\t25\tnsubj\t_\t_\n24\tare\t_\tVERB\tVBP\t_\t25\tcop\t_\t_\n25\tvicitims\t_\tNOUN\tNNS\t_\t22\tacl:relcl\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\trape\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tincest\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\treiterated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\topposition\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tsuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfunding\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n10\texpressed\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n11\thope\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcompromise\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpresident\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tnews\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tconference\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\talso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\trenewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcall\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\touster\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tPanama\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tNoriega\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHouse\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tminors\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\thave\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n7\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n8\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tright\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tabortion\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\twithout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tconsent\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tparents\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tadministration\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tpolicy\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tstated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfriend-of-the-court\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbrief\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\turging\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tSupreme\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCourt\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tgive\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n17\tstates\t_\tNOUN\tNNS\t_\t16\tiobj\t_\t_\n18\tmore\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n19\tleeway\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\trestrict\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\tabortions\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTen\t_\tNUM\tCD\t_\t10\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tnation\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgovernors\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tmeanwhile\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tcalled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tjustices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\treject\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n16\tefforts\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tlimit\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tabortions\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tJustice\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDepartment\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tFBI\t_\tPROPN\tNNP\t_\t10\tnsubjpass\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n9\tbeen\t_\tAUX\tVBN\t_\t10\tauxpass\t_\t_\n10\tgiven\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tauthority\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tseize\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tfugitives\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\toverseas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n18\twithout\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpermission\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tforeign\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tgovernments\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSecretary\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tState\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tBaker\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\temphasized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tpolicy\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n11\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tinvoked\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tBush\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tadministration\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\twithout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfull\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tconsideration\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tforeign-policy\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\timplications\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNASA\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tpronounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tspace\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tshuttle\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tAtlantis\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tready\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tlaunch\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\ttomorrow\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n11\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfive-day\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpostponement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tflight\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tbecause\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tof\t_\tADP\tIN\t_\t18\tmwe\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tfaulty\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tengine\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcomputer\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdevice\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\treplaced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspacecraft\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfive\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tastronauts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tdispatch\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tGalileo\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tspace\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprobe\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\texploration\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmission\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n18\tJupiter\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSouth\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKorea\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tPresident\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRoh\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\ttraveled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfive-day\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tvisit\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubjpass\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t16\tauxpass\t_\t_\n16\texpected\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tfocus\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tties\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tWashington\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tSeoul\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tRoh\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twho\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tfacing\t_\tVERB\tVBG\t_\t1\tacl:relcl\t_\t_\n6\tcalls\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\treduction\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tmilitary\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tforces\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tSouth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tKorea\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tmeet\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tBush\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\ttomorrow\t_\tNOUN\tNN\t_\t20\tnmod:tmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t18\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\taddress\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tjoint\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tsession\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tCongress\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tWednesday\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tChina\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tCommunist\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tleadership\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpurge\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tparty\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n12\thostile\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tanti-party\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\telements\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n18\twealthy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tprivate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tbusinessmen\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhom\t_\tPRON\tWP\t_\t25\tdobj\t_\t_\n23\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tcalled\t_\tVERB\tVBD\t_\t20\tacl:relcl\t_\t_\n25\texploiters\t_\tNOUN\tNNS\t_\t24\txcomp\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdecision\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\treported\t_\tVERB\tVBN\t_\t12\tadvcl\t_\t_\n5\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tofficial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tXinhua\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tNews\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAgency\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcrackdown\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n16\tprompted\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tstudent-led\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tpro-democracy\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tprotests\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tJune\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\taux\t_\t_\n24\tintensifying\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHundreds\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tEast\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tGermans\t_\tPROPN\tNNPS\t_\t1\tnmod\t_\t_\n5\tflocked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n7\tBonn\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tEmbassy\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tWarsaw\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tbringing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tmore\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n16\tthan\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\t1,200\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tnumber\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\temigres\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\texpected\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tflee\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tWest\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\tbeginning\t_\tNOUN\tNN\t_\t29\tdep\t_\t_\n29\ttoday\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t3\tadvmod\t_\t_\n2\tthan\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\t2,100\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tothers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tescaped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tWest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tGermany\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tthrough\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tHungary\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tWeekend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tLeipzig\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tactivists\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tvowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tcontinue\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tstreet\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprotests\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tdemand\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tinternal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchange\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tZaire\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tPresident\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tMobutu\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tmet\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tsouthern\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tFrance\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tAngolan\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\trebel\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tleader\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tSavimbi\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tsenior\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tenvoy\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tbid\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\trevive\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\tan\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\taccord\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tend\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tAngola\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tcivil\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\twar\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tDetails\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttalks\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tdescribed\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tZairean\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tofficial\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tas\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n13\tvery\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tdelicate\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n17\twere\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tdisclosed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tPLO\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tleader\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tArafat\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tinsisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tguarantees\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n8\tany\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\telections\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tIsraeli-occupied\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tterritories\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\twould\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t16\tcop\t_\t_\n16\timpartial\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tmade\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tremarks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tPLO\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tgathering\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tBaghdad\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\toccupied\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tlands\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tunderground\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tleaders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tArab\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tuprising\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\trejected\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tplan\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tarrange\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\tIsraeli-Palestinian\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\ttalks\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tShamir\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n22\topposed\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n23\tholding\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n24\tsuch\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdiscussions\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tCairo\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tLebanese\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tChristian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlawmakers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpresented\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tArab\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmediators\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttalks\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSaudi\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tArabia\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tproposals\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttimetable\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\twithdrawal\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tSyria\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tforces\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tLebanon\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tcurrently\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tunder\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tstudy\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tgives\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tDamascus\t_\tPROPN\tNNP\t_\t6\tiobj\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyears\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tpull\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tback\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\teastern\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tLebanon\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tstarting\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\tBeirut\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tlegislature\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tincreases\t_\tVERB\tVBZ\t_\t20\tacl:relcl\t_\t_\n25\tpolitical\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tpower\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tMoslems\t_\tPROPN\tNNPS\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHurricane\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tJerry\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tthreatened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tcombine\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\thighest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n9\ttides\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tswamp\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tTexas-Louisiana\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tcoast\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThousands\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tresidents\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tlow-lying\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tareas\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tordered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tevacuate\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tstorm\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\theaded\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n15\tnorth\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tGulf\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tMexico\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\t80\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmph\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\twinds\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tArby\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tfranchisees\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tformed\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tassociation\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\toppose\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tMiami\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tBeach\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tfinancier\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tVictor\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tPosner\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tcontrol\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\trestaurant\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tchain\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdecision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlatest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tmove\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tescalating\t_\tVERB\tVBG\t_\t10\tamod\t_\t_\n10\tbattle\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tbetween\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tfranchisees\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tMr.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tPosner\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t10\tacl:relcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tAugust\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n7\tcalled\t_\tVERB\tVBD\t_\t6\tacl\t_\t_\n8\tR.B.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tPartners\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tLtd.\t_\tPROPN\tNNP\t_\t7\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tconsisting\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\teight\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tArby\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tlargest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tfranchisees\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n21\toffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tmore\t_\tADJ\tJJR\t_\t24\tadvmod\t_\t_\n23\tthan\t_\tADP\tIN\t_\t22\tmwe\t_\t_\n24\t$\t_\tSYM\t$\t_\t21\tdobj\t_\t_\n25\t200\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tbuy\t_\tVERB\tVB\t_\t21\tadvcl\t_\t_\n29\tArby\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tInc.\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\twhich\t_\tPRON\tWDT\t_\t35\tnsubj\t_\t_\n34\tis\t_\tVERB\tVBZ\t_\t35\tcop\t_\t_\n35\tpart\t_\tNOUN\tNN\t_\t31\tacl:relcl\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tDWG\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tCorp\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tDWG\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tholding\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tcontrolled\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tMr.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tPosner\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tlater\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n5\tLeonard\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tH.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tRoberts\t_\tPROPN\tNNP\t_\t19\tnsubjpass\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tpresident\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tchief\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\texecutive\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tofficer\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tArby\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n19\tfired\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tdispute\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tMr.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tPosner\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\t42\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tfranchisees\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tformation\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tassociation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n12\tcalled\t_\tVERB\tVBN\t_\t10\tdep\t_\t_\n13\tA.P.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tAssociation\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t12\txcomp\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n19\tpreserve\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tintegrity\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tArby\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tsystem\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfranchisees\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\towners\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n5\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\toperators\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1,000\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\t1,900\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tfranchised\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tArby\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n22\tWe\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tconcluded\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n26\tcontinued\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tcontrol\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tArby\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tVictor\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tPosner\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n34\tis\t_\tVERB\tVBZ\t_\t36\tcop\t_\t_\n35\ttotally\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tunacceptable\t_\tADJ\tJJ\t_\t24\tccomp\t_\t_\n37\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n38\tus\t_\tPRON\tPRP\t_\t36\tnmod\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n40\tbecause\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n41\tit\t_\tPRON\tPRP\t_\t44\tnsubj\t_\t_\n42\tis\t_\tVERB\tVBZ\t_\t44\tcop\t_\t_\n43\textremely\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n44\tlikely\t_\tADJ\tJJ\t_\t36\tadvcl\t_\t_\n45\tto\t_\tPART\tTO\t_\t46\tmark\t_\t_\n46\tcause\t_\tVERB\tVB\t_\t44\txcomp\t_\t_\n47\tirreparable\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tdamage\t_\tNOUN\tNN\t_\t46\tdobj\t_\t_\n49\tto\t_\tADP\tTO\t_\t53\tcase\t_\t_\n50\tthe\t_\tDET\tDT\t_\t51\tdet\t_\t_\n51\tArby\t_\tPROPN\tNNP\t_\t53\tnmod:poss\t_\t_\n52\t's\t_\tPART\tPOS\t_\t51\tcase\t_\t_\n53\tsystem\t_\tNOUN\tNN\t_\t48\tnmod\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsupport\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tall\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tefforts\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tremove\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\tVictor\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPosner\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcontrol\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tArby\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tInc.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tArby\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tsystem\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgroup\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tconsider\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tamong\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tother\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tthings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\twithholding\t_\tVERB\tVBG\t_\t6\tccomp\t_\t_\n13\troyalty\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tpayments\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tinitiating\t_\tVERB\tVBG\t_\t12\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tclass-action\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlawsuit\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tseeking\t_\tVERB\tVBG\t_\t19\tacl\t_\t_\n21\tcourt\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tapproval\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\twithholdings\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tFlorida\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tRenee\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMottram\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tsenior\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tvice\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tDWG\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\tresponded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n17\tWe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\tdo\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tthink\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n21\tany\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tindividual\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tgroup\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\tshould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tdisrupt\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\twinning\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tsystem\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n31\tillegally\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tinterfere\t_\tVERB\tVB\t_\t26\tconj\t_\t_\n33\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\texisting\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tcontractual\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\trelationships\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\tfor\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\ttheir\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n39\town\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n40\tself-serving\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tmotives\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tsteep\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trise\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tproducer\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tstill\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tpersists\t_\tVERB\tVBZ\t_\t8\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpessimism\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n17\tover\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tinterest\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\trates\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\tcaused\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tnew\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tprice\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdata\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\tcontributed\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n27\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tstock\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tplunge\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n33\tFriday\t_\tPROPN\tNNP\t_\t32\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tfalling\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n3\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthree\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tconsecutive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmonths\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tproducer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tfinished\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgoods\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tshot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t0.9\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tdobj\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tmonth\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tLabor\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\treported\t_\tVERB\tVBD\t_\t15\tparataxis\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t25\tnmod:tmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n28\tas\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tenergy\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tprices\t_\tNOUN\tNNS\t_\t31\tnsubj\t_\t_\n31\tjumped\t_\tVERB\tVBD\t_\t15\tadvcl\t_\t_\n32\tafter\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n33\ttumbling\t_\tVERB\tVBG\t_\t31\tadvcl\t_\t_\n34\tthrough\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tsummer\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\treport\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\treleased\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n8\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\topened\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tdid\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\ttrigger\t_\tVERB\tVB\t_\t28\tadvcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\t190.58-point\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdrop\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tDow\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tJones\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tIndustrial\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tAverage\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\tanalysts\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tdid\t_\tAUX\tVBD\t_\t31\taux\t_\t_\n31\tplay\t_\tVERB\tVB\t_\t28\tccomp\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\trole\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t38\tnmod:poss\t_\t_\n37\t's\t_\tPART\tPOS\t_\t36\tcase\t_\t_\n38\tdecline\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\timmediately\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tviewed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tdata\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tgrimmest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tnews\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tas\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tevidence\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tFederal\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tReserve\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n21\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n22\tunlikely\t_\tADJ\tJJ\t_\t16\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tallow\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tinterest\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\trates\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tfall\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n29\tas\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n30\tmany\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tinvestors\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n32\thad\t_\tAUX\tVBD\t_\t33\taux\t_\t_\n33\thoped\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFurther\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tfueling\t_\tVERB\tVBG\t_\t23\tadvcl\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tbelief\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tpressures\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\teconomy\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n11\tsufficient\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tkeep\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tFed\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n16\tfrom\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\teasing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n18\tcredit\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tCommerce\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tDepartment\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n23\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n26\tretail\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tsales\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tgrew\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n29\t0.5\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t28\tdobj\t_\t_\n31\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tSeptember\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n34\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n35\t$\t_\tSYM\t$\t_\t28\tnmod\t_\t_\n36\t145.21\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\tbillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trise\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttop\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t0.7\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tgain\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tAugust\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tsuggested\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n16\tthere\t_\tPRON\tEX\t_\t17\texpl\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n18\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\thealthy\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tconsumer\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tdemand\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\teconomy\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t33\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\treport\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tcombined\t_\tVERB\tVBN\t_\t11\tcase\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tactions\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tFed\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tweakened\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tbelief\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthere\t_\tPRON\tEX\t_\t22\texpl\t_\t_\n21\twas\t_\tAUX\tVBD\t_\t22\taux\t_\t_\n22\tgoing\t_\tVERB\tVBG\t_\t18\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n24\tbe\t_\tVERB\tVB\t_\t27\tcop\t_\t_\n25\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\timminent\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\teasing\t_\tNOUN\tNN\t_\t22\txcomp\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tmonetary\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpolicy\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tRobert\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tDederick\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tchief\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\teconomist\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n39\tat\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tNorthern\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n41\tTrust\t_\tPROPN\tNNP\t_\t42\tcompound\t_\t_\n42\tCo.\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n43\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tChicago\t_\tPROPN\tNNP\t_\t42\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\teconomists\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n4\tdivided\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\textent\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tthreat\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tsignaled\t_\tVERB\tVBD\t_\t11\tacl\t_\t_\n13\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tnumbers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t35\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n3\toverall\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\t0.9\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\t%\t_\tSYM\tNN\t_\t6\tamod\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tserious\t_\tADJ\tJJ\t_\t35\tccomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\titself\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t16\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n15\teven\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tworse\t_\tADJ\tJJR\t_\t17\tcsubj\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t8\tconj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n19\texcluding\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n20\tfood\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tenergy\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tproducer\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tprice\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tindex\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n28\tstill\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tincreased\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n30\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\t0.7\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n32\t%\t_\tSYM\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t35\tpunct\t_\t_\n35\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n36\tGordon\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tRichards\t_\tPROPN\tNNP\t_\t35\tnsubj\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tan\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\teconomist\t_\tNOUN\tNN\t_\t37\tappos\t_\t_\n41\tat\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tNational\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tAssociation\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n45\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n46\tManufacturers\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tSung\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tWon\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSohn\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\teconomist\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tNorwest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tMinneapolis\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tblamed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\trising\t_\tVERB\tVBG\t_\t17\tamod\t_\t_\n16\tenergy\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tannual\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tautumn\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tincrease\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tcar\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprices\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tmost\t_\tADJ\tJJS\t_\t14\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tSeptember\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tjump\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tsay\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n5\tthis\t_\tPRON\tDT\t_\t9\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\tbad\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tnews\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\tthis\t_\tPRON\tDT\t_\t14\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tblip\t_\tNOUN\tNN\t_\t9\tparataxis\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcore\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trate\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n7\treally\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n8\tout\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tline\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tenergy\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tskewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tproducer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tprice\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\tmeasures\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n15\tchanges\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\tproducers\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\treceive\t_\tVERB\tVBP\t_\t18\tacl:relcl\t_\t_\n21\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tgoods\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tInflation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n2\tunquestionably\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tfallen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\ttorrid\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\twinter\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsteep\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trun-up\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tworld\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\toil\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tsent\t_\tVERB\tVBD\t_\t11\tacl:relcl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tindex\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\tsurging\t_\tVERB\tVBG\t_\t21\tdep\t_\t_\n25\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tdouble-digit\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tannual\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\trates\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEnergy\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tthen\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tplummeted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthrough\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsummer\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tcausing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tindex\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdecline\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tconsecutive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tindex\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tclimbed\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\t5.1\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t%\t_\tSYM\tNN\t_\t13\tamod\t_\t_\n11\tcompound\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tannual\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tstart\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tLabor\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDepartment\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tfar\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tmore\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n4\trestrained\t_\tADJ\tJJ\t_\t20\tadvcl\t_\t_\n5\tthan\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpace\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbeginning\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n17\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tsteeper\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n20\trise\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n21\tthan\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\t4.0\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\t%\t_\tSYM\tNN\t_\t25\tamod\t_\t_\n25\tincrease\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tall\t_\tDET\tDT\t_\t25\tnmod\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tthis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tyear\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgood\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinflation\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tnews\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\thave\t_\tAUX\tVB\t_\t11\taux\t_\t_\n11\tended\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tlast\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tmonth\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n16\tenergy\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tprices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tzoomed\t_\tVERB\tVBD\t_\t13\tacl:relcl\t_\t_\n19\tup\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\t6.5\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n22\tafter\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tplunging\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n24\t7.3\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t23\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tAugust\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\toil\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tremain\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\trelatively\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tstable\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\tahead\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tleaving\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfuture\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tpace\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinflation\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\tuncertain\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tclimb\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\toil\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n12\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tlead\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsubstantial\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\trise\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tproducer\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tprice\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tindex\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n24\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\t0.9\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t28\tamod\t_\t_\n28\tclimb\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t30\tcop\t_\t_\n30\thigher\t_\tADJ\tJJR\t_\t3\tconj\t_\t_\n31\tthan\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tmost\t_\tADJ\tJJS\t_\t33\tnsubj\t_\t_\n33\tanticipated\t_\tVERB\tVBD\t_\t30\tccomp\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t20\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tresurgence\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\t-LCB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tinflation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t-RCB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tgoing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcontinue\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tfew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tJohn\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tMueller\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tchief\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\teconomist\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n26\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tBell\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tMueller\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCannon\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n32\tWashington\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n33\teconomic\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tforecasting\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tfirm\t_\tNOUN\tNN\t_\t29\tappos\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tpredicted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tinflation\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tmoderate\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tnext\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaying\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tcredit\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tconditions\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n15\tfairly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\ttight\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n17\tworld-wide\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tDirk\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tVan\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDongen\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tNational\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAssociation\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tWholesaler-Distributors\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\trise\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t26\tcop\t_\t_\n22\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n23\tas\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n24\tbad\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tomen\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n28\tas\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\t0.9\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\t%\t_\tSYM\tNN\t_\t32\tamod\t_\t_\n32\tfigure\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n33\tsuggests\t_\tVERB\tVBZ\t_\t26\tacl:relcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texamine\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdata\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tcarefully\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tincrease\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\tauxpass\t_\t_\n12\tconcentrated\t_\tVERB\tVBN\t_\t37\tccomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tenergy\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tmotor\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n17\tvehicle\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\trather\t_\tADV\tRB\t_\t25\tmark\t_\t_\n21\tthan\t_\tSCONJ\tIN\t_\t20\tmwe\t_\t_\n22\tbeing\t_\tVERB\tVBG\t_\t25\tcop\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tbroad-based\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tadvance\t_\tNOUN\tNN\t_\t18\tacl\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tprices\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tconsumer\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tindustrial\t_\tADJ\tJJ\t_\t30\tconj\t_\t_\n33\tgoods\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n35\t''\t_\tPUNCT\t''\t_\t37\tpunct\t_\t_\n36\the\t_\tPRON\tPRP\t_\t37\tnsubj\t_\t_\n37\texplained\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n\n1\tPassenger\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n2\tcar\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tprices\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t3.8\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t4\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tSeptember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tafter\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tclimbing\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n12\t0.5\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\tdeclining\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlate\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tspring\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tsummer\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tSeptember\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tone-time\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tevent\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tcoming\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n13\tas\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tdealers\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tintroduced\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n17\t1990\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tmodels\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tall\t_\tDET\tPDT\t_\t5\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tprice\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tdata\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\tadjusted\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tnormal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tseasonal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfluctuations\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tcar\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tprices\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tbeyond\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tcustomary\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tautumn\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tincrease\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcapital\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tequipment\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\thefty\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\t1.1\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t5\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\twhile\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n14\tprices\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\thome\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\telectronic\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tequipment\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tfell\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n20\t1.1\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t19\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFood\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t0.6\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\tafter\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tclimbing\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n9\t0.3\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tAugust\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tretail\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tsales\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\treport\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tshowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tcar\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tsales\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\trose\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n12\t0.8\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tSeptember\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n18\t32.82\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tat\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tleast\t_\tADJ\tJJS\t_\t4\tadvmod\t_\t_\n4\tpart\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tincrease\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\thave\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\tcome\t_\tVERB\tVBN\t_\t16\tccomp\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\thigher\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\tanalysts\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tSales\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tgeneral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tmerchandise\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tstores\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t1.7\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tafter\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tdeclining\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n11\t0.6\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tAugust\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\twhile\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tbuilding\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmaterials\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tfell\t_\tVERB\tVBD\t_\t6\tadvcl\t_\t_\n22\t1.8\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n24\tafter\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\trising\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n26\t1.7\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t25\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tProducer\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tintermediate\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgoods\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\t0.4\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tSeptember\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tafter\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tdropping\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n14\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tconsecutive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcrude\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tgoods\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tarray\t_\tNOUN\tNN\t_\t4\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\traw\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmaterials\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t1.1\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t12\tdobj\t_\t_\n15\tafter\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n16\tdeclining\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n17\t1.9\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tAugust\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n22\tedging\t_\tVERB\tVBG\t_\t16\tconj\t_\t_\n23\tup\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\t0.2\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t22\tdobj\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tJuly\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tLabor\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tDepartment\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tproducer\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tprice\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tindexes\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n11\t1982\t_\tNUM\tCD\t_\t13\tnsubj\t_\t_\n12\t=\t_\tSYM\tSYM\t_\t13\tdep\t_\t_\n13\t100\t_\tNUM\tCD\t_\t9\tdep\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tSeptember\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tbefore\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tseasonal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tadjustment\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tpercentage\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchanges\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tSeptember\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\t1988\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tFinancial\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\texpects\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tloss\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t18\tnmod:npmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n15\t125\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tdep\t_\t_\n18\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n19\t150\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tthird\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tperiod\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tCityFed\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t12\tdep\t_\t_\n12\t485,000\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n15\tno\t_\tDET\tDT\t_\t17\tneg\t_\t_\n16\tper-share\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\texecutive\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tofficer\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tJohn\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAtherton\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tloss\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tstems\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tseveral\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tfactors\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tnonperforming\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tassets\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\trose\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n7\tslightly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t10\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n11\t700\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n15\t516\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tJune\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tSeptember\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tApproximately\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t85\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttotal\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tconsisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tnonperforming\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n10\tcommercial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\treal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\testate\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tassets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAccordingly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tCityFed\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\testimated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tprovide\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\tbetween\t_\tADP\tIN\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n11\t85\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t10\tconj\t_\t_\n15\t110\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tcredit\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tthird\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n4\tsignificant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tadditional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tloan-loss\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tprovisions\t_\tNOUN\tNNS\t_\t10\tnsubjpass\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t10\tauxpass\t_\t_\n10\trequired\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tfederal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tregulators\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tcurrent\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tannual\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\texamination\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tCity\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tFederal\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tSavings\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBank\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tCityFed\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tprimary\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tsubsidiary\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n32\tbased\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n33\tin\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tSomerset\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tN.J\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tFederal\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\toperates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t105\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tbanking\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toffices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tJersey\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tFlorida\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAtherton\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCityFed\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\talso\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tmark\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tportfolio\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\thigh-yield\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tcorporate\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbonds\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tresult\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfederal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tlegislation\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\trequiring\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tsavings\t_\tNOUN\tNNS\t_\t25\tcompound\t_\t_\n25\tinstitutions\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tdivest\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n27\tthemselves\t_\tPRON\tPRP\t_\t26\tdobj\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tsuch\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tbonds\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taction\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tCityFed\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tresult\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcharge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tagainst\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthird-quarter\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tresults\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tapproximately\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\t$\t_\tSYM\t$\t_\t11\tnmod\t_\t_\n18\t30\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCityFed\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tshed\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n9\tremaining\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n10\tmortgage\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tloan\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\torigination\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\toperations\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n14\toutside\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tprincipal\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmarkets\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tJersey\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tFlorida\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n25\tas\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tresult\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\tis\t_\tAUX\tVBZ\t_\t30\taux\t_\t_\n30\ttaking\t_\tVERB\tVBG\t_\t5\tconj\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcharge\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tdiscontinued\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\toperations\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAll\t_\tDET\tPDT\t_\t3\tdet:predet\t_\t_\n2\tthese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tactions\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMr.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAtherton\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tresult\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t125\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tto\t_\tADP\tTO\t_\t15\tdep\t_\t_\n19\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n20\t150\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tthird\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tquarter\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t51\tpunct\t_\t_\n7\tDepending\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tresolution\t_\tNOUN\tNN\t_\t51\tadvcl\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tcertain\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\taccounting\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\trelating\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tmortgages\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\tservicing\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\toutcome\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tannual\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\texamination\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tCity\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tFederal\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n29\tcurrently\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tprogress\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n32\twith\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\trespect\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n34\tto\t_\tADP\tTO\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tappropriate\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tlevel\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tloan\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n40\tloss\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\treserves\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t51\tpunct\t_\t_\n43\tthe\t_\tDET\tDT\t_\t45\tdet\t_\t_\n44\ttotal\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tloss\t_\tNOUN\tNN\t_\t51\tnsubj\t_\t_\n46\tfor\t_\tADP\tIN\t_\t48\tcase\t_\t_\n47\tthe\t_\tDET\tDT\t_\t48\tdet\t_\t_\n48\tquarter\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n49\tcould\t_\tAUX\tMD\t_\t51\taux\t_\t_\n50\tsignificantly\t_\tADV\tRB\t_\t51\tadvmod\t_\t_\n51\texceed\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n52\tthis\t_\tDET\tDT\t_\t53\tdet\t_\t_\n53\trange\t_\tNOUN\tNN\t_\t51\tdobj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSavings\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tBank\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tfederal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tthrift\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tregulators\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tordered\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsuspend\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n12\tdividend\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tpayments\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\ttwo\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tclasses\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tpreferred\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n22\tindicating\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t32\tmark\t_\t_\n24\tregulators\t_\tNOUN\tNNS\t_\t26\tnmod:poss\t_\t_\n25\t'\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tconcerns\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n27\tabout\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\ttroubled\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tinstitution\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\thave\t_\tAUX\tVBP\t_\t32\taux\t_\t_\n32\theightened\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstatement\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tMiami-based\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tCenTrust\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tregulators\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tcited\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tthrift\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\toperating\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlosses\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tapparent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n23\tjunk-bond\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tportfolio\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n25\tin\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tordering\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsuspension\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdividends\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tRegulators\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCenTrust\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tstop\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tbuying\t_\tVERB\tVBG\t_\t6\txcomp\t_\t_\n8\tback\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tpreferred\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDavid\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tL.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPaul\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tchairman\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tchief\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\texecutive\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tofficer\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tcriticized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tOffice\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tThrift\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tSupervision\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n20\tissued\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tdirective\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n24\tsaying\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n25\tit\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n26\twas\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n28\tinappropriate\t_\tADJ\tJJ\t_\t24\tccomp\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n31\tbased\t_\tVERB\tVBN\t_\t36\tcase\t_\t_\n32\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n34\tinsufficient\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\t''\t_\tPUNCT\t''\t_\t36\tpunct\t_\t_\n36\treasons\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tthrift\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\ttry\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tregulators\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\treverse\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdecision\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsuspension\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tpreferred\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tdividend\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tserious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstep\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\tsignals\t_\tVERB\tVBZ\t_\t11\tacl:relcl\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tregulators\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n16\thave\t_\tVERB\tVBP\t_\t13\tccomp\t_\t_\n17\tdeep\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tconcerns\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\tabout\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tinstitution\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\thealth\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tMarch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tregulators\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tlabeled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\ttroubled\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinstitution\t_\tNOUN\tNN\t_\t5\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n13\tlargely\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n14\tbecause\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tof\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tjunk-bond\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tholdings\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\toperating\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlosses\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tOffice\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tThrift\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSupervision\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tordered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tinstitution\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tstop\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n16\tpaying\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n17\tcommon\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tdividends\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tuntil\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\toperations\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\ttrack\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n5\tended\t_\tVERB\tVBD\t_\t4\tacl\t_\t_\n6\tJune\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n7\t30\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tnet\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tloss\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t21.3\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tcompared\t_\tVERB\tVBN\t_\t23\tcase\t_\t_\n20\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tyear-earlier\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tnet\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tincome\t_\tNOUN\tNN\t_\t10\tadvcl\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t23\tnmod\t_\t_\n26\t52.8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tmillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n5\tFlorida\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tlargest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tthrift\t_\tNOUN\tNN\t_\t1\tacl:relcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tholds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t10\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tlargest\t_\tADJ\tJJS\t_\t16\tamod\t_\t_\n15\tjunk-bond\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tportfolios\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tthrift\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tnation\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSince\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tApril\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tpared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n8\thigh-yield\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tbond\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tholdings\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n14\t890\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tmillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n18\t1.35\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tonly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t15\tnsubj\t_\t_\n7\t150\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tholdings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\ttradeable\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsecurities\t_\tNOUN\tNNS\t_\t3\tccomp\t_\t_\n16\tregistered\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tSecurities\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tExchange\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\tCommission\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tremainder\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n8\tcommercial\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tloan\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tparticipations\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tprivate\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tplacements\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t19\tnsubjpass\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tfiled\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tSEC\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n24\tdo\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\thave\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tready\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmarket\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tregulators\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n5\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tdispute\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tover\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tvaluations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tjunk\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbonds\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tOffice\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tThrift\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tSupervision\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\taux\t_\t_\n8\thounding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tprovide\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n12\tcurrent\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tvalues\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tholdings\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\tCenTrust\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n21\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n24\tca\t_\tAUX\tMD\t_\t27\taux\t_\t_\n25\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n26\teasily\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tobtain\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n28\tsuch\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tvalues\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tof\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\trelative\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tilliquidity\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tbonds\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n39\tlack\t_\tNOUN\tNN\t_\t34\tconj\t_\t_\n40\tof\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\ta\t_\tDET\tDT\t_\t43\tdet\t_\t_\n42\tready\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tmarket\t_\tNOUN\tNN\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tRegulators\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tincreasingly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tantsy\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n7\tCenTrust\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tthrifts\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\t'\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tjunk-bond\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tholdings\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlight\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n20\tfederal\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tthrift\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tbailout\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tlegislation\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\trecent\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tdeep\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdecline\t_\tNOUN\tNN\t_\t23\tconj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tjunk-bond\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlegislation\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthrifts\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdivest\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\tthemselves\t_\tPRON\tPRP\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tjunk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tsomber\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tregulatory\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tclimate\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t6\tcase\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tcomposite\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:tmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tcommon\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t3\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n18\t12.5\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tcents\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tstatement\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tPaul\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tchallenged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tregulators\t_\tNOUN\tNNS\t_\t12\tnmod:poss\t_\t_\n11\t'\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tdecision\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tsaying\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tthrift\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\toperating\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n22\tapparent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\tjunk-bond\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tlosses\t_\tNOUN\tNNS\t_\t19\tconj\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n27\thave\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n28\tbeen\t_\tAUX\tVBN\t_\t30\tauxpass\t_\t_\n29\tsubstantially\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\toffset\t_\tVERB\tVBN\t_\t14\tccomp\t_\t_\n31\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tgains\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tother\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tactivities\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tbank\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsubstantial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\treserves\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tset\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\taside\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tpossible\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlosses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tjunk\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbonds\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tinstance\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n12\t22.5\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tgeneral\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\treserves\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tregulators\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tshould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tinstead\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmove\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tahead\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\twith\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tapproving\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n12\tCenTrust\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\trequest\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tsell\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\t63\t_\tNUM\tCD\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\t71\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbranches\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\tGreat\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tWestern\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBank\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tunit\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tGreat\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tWestern\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tFinancial\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tCorp.\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n34\tbased\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n35\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tBeverly\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tHills\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tCalif\t_\tPROPN\tNNP\t_\t37\tappos\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbranch\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tsale\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcenterpiece\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCenTrust\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tstrategy\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttransform\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\titself\t_\tPRON\tPRP\t_\t12\tdobj\t_\t_\n14\tinto\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\ttraditional\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tS&L\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\thigh-flying\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tinstitution\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\trelied\t_\tVERB\tVBD\t_\t21\tacl:relcl\t_\t_\n24\theavily\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tsecurities\t_\tNOUN\tNNS\t_\t27\tcompound\t_\t_\n27\ttrading\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tprofits\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n31\taccording\t_\tVERB\tVBG\t_\t34\tcase\t_\t_\n32\tto\t_\tADP\tTO\t_\t31\tmwe\t_\t_\n33\tMr.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tPaul\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t2\tamod\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tthrift\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdecision\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tproposed\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttransaction\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t17\tnsubjpass\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tannounced\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tJuly\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tlong\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\tbefore\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tnow\t_\tADV\tRB\t_\t7\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tnsubj\t_\t_\n2\tinterpret\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdelay\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tindication\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tregulators\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\tskeptical\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n12\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproposal\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBranches\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tdeposits\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpremium\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tevent\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tregulators\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\ttake\t_\tVERB\tVBP\t_\t12\tccomp\t_\t_\n16\tover\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tinstitution\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\ttouts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbranch\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsale\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tsaying\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tbring\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n14\tin\t_\tADP\tRP\t_\t13\tadvmod\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tdobj\t_\t_\n16\t150\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\treduce\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tthrift\t_\tNOUN\tNN\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tassets\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n24\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n25\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n26\t6.7\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\tbillion\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\t$\t_\tSYM\t$\t_\t19\tnmod\t_\t_\n30\t9\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n31\tbillion\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsale\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tgive\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t6\tiobj\t_\t_\n8\tpositive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\ttangible\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcapital\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t82\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t1.2\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tassets\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tnegative\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n27\t33\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\tas\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tSept.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n32\t30\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n34\tthus\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tbringing\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n36\tCenTrust\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n37\tclose\t_\tADV\tRB\t_\t35\txcomp\t_\t_\n38\tto\t_\tADP\tTO\t_\t40\tcase\t_\t_\n39\tregulatory\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tstandards\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCenTrust\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tbranch\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tsale\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\treduce\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tamount\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tgood\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\twill\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tabout\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n20\t180\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCritics\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbranch\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tsale\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tCenTrust\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\tdependent\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n14\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tever\t_\tADV\tRB\t_\t13\tadvcl\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tbrokered\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdeposits\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tjunk\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tbonds\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPaul\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tcounters\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tintends\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\tfurther\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tpare\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsize\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tCenTrust\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\tby\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n16\trenewing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n17\tmore\t_\tADJ\tJJR\t_\t19\tadvmod\t_\t_\n18\tthan\t_\tADP\tIN\t_\t17\tmwe\t_\t_\n19\t$\t_\tSYM\t$\t_\t16\tdobj\t_\t_\n20\t1\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tbillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tbrokered\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcertificates\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tdeposit\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\twhen\t_\tADV\tWRB\t_\t29\tadvmod\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\tcome\t_\tVERB\tVBP\t_\t16\tadvcl\t_\t_\n30\tdue\t_\tADJ\tJJ\t_\t29\txcomp\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tthrift\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tworking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tunload\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tjunk-bond\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tportfolio\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tby\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tcontinuing\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tsell\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\toff\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbonds\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tplans\t_\tVERB\tVBZ\t_\t5\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n23\teventually\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tplace\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n25\tsome\t_\tDET\tDT\t_\t24\tdobj\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tthem\t_\tPRON\tPRP\t_\t25\tnmod\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tseparate\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\taffiliate\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n33\tas\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n34\trequired\t_\tVERB\tVBN\t_\t24\tadvcl\t_\t_\n35\tunder\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\tnew\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tthrift\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tlaw\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\trecent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tSaturday\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tnight\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmidst\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n11\tWest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tGermany\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tmost\t_\tADJ\tJJS\t_\t15\tdep\t_\t_\n15\tpopular\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tprime-time\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tshow\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tcontestant\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tbet\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\thost\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tshe\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tname\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n28\tany\t_\tDET\tDT\t_\t27\tdobj\t_\t_\n29\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\t100\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n31\tdifferent\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcheeses\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tafter\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tjust\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n35\tone\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n36\tnibble\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n38\twhile\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n39\tblindfolded\t_\tADJ\tJJ\t_\t27\tadvcl\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\twoman\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbet\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n2\tperhaps\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\teven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmore\t_\tADV\tRBR\t_\t5\tadvmod\t_\t_\n5\tremarkable\t_\tADJ\tJJ\t_\t21\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tthree-hour-show\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tWetten\t_\tX\tFW\t_\t12\tcompound\t_\t_\n12\tDass\t_\tX\tFW\t_\t8\tappos\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n15\tMake\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tBet\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\tregularly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\twins\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\ttop\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tslot\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tcountry\t_\tNOUN\tNN\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tTV\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tratings\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n32\tsometimes\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tdrawing\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n34\tas\t_\tADV\tRB\t_\t37\tadvmod\t_\t_\n35\tmany\t_\tADJ\tJJ\t_\t37\tadvmod\t_\t_\n36\tas\t_\tADP\tIN\t_\t37\tadvmod\t_\t_\n37\t50\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\t%\t_\tSYM\tNN\t_\t33\tdobj\t_\t_\n39\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tWest\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tGerman\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\thouseholds\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1992\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\teconomic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tintegration\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tapproaches\t_\tNOUN\tNNS\t_\t13\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tEurope\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tcultural\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcurators\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n12\thave\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\ttaken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tramparts\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tagainst\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tAmerican\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tcultural\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\timperialism\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n24\tthreatening\t_\tVERB\tVBG\t_\t13\txcomp\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\timpose\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tquotas\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\tagainst\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tsuch\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tpop\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tinvaders\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n32\tas\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n34\tDallas\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n37\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n38\tMiami\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tVice\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t34\tpunct\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n42\t``\t_\tPUNCT\t``\t_\t34\tpunct\t_\t_\n43\tL.A.\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tLaw\t_\tPROPN\tNNP\t_\t34\tconj\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n46\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tmuch\t_\tADJ\tJJ\t_\t10\tnsubj\t_\t_\n3\tof\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t7\tdobj\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tEuropeans\t_\tPROPN\tNNPS\t_\t7\tnsubj\t_\t_\n7\twant\t_\tVERB\tVBP\t_\t2\tacl\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tprotect\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tevery\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tbit\t_\tNOUN\tNN\t_\t14\tdep\t_\t_\n13\tas\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tcheesy\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n15\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\twhat\t_\tPRON\tWP\t_\t21\tdobj\t_\t_\n17\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\ttrying\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tkeep\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tout\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tmilitant\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\topposition\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\tAmerican\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tTV\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\timports\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tcome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tFrench\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttelevision\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmovie\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tproducers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\twho\t_\tPRON\tWP\t_\t20\tnsubj\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tdemanded\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n21\tquotas\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\tensuring\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tfull\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\t60\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t34\tnsubjpass\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tEurope\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tTV\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tshows\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\tbe\t_\tAUX\tVB\t_\t34\tauxpass\t_\t_\n34\tproduced\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tEurope\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tfar\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tFrench\t_\tPROPN\tNNPS\t_\t7\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tfailed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\twin\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tenough\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tbroad-based\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tsupport\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tprevail\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tglance\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n3\tthrough\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\ttelevision\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tlistings\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tfew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\ttwists\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tEuropean\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\ttelevision\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdial\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tsuggest\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\treason\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\twhy\t_\tADV\tWRB\t_\t18\tdep\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tthere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n4\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tpopular\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taction\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tdrama\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tseries\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tfew\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n12\tboast\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\thigh\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tculture\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tclassy\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tproduction\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n19\tvalues\t_\tVERB\tVBZ\t_\t18\tdep\t_\t_\n20\tone\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\tmight\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\texpect\t_\tVERB\tVB\t_\t15\tacl:relcl\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t4\tamod\t_\t_\n2\tEuropean\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tair\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\tfilled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tlow-budget\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tgame\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tshows\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tvariety\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\thours\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tmovies\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\ttalk\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tshows\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n20\tmany\t_\tADJ\tJJ\t_\t25\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n23\tare\t_\tVERB\tVBP\t_\t25\tcop\t_\t_\n24\tauthorized\t_\tVERB\tVBN\t_\t25\tamod\t_\t_\n25\tknock-offs\t_\tADJ\tJJ\t_\t10\tacl:relcl\t_\t_\n26\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tAmerican\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tcounterparts\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t10\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n3\tFrance\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmost\t_\tADV\tRBS\t_\t6\tadvmod\t_\t_\n6\tpopular\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tSaturday\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tnight\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tprograms\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n10\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tsemi-celebrities\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tseeking\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\tout\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n15\tgrammar-school\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tclassmates\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ton-air\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\treunions\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tFlemish\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tgame\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tshow\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tas\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\thost\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tBelgian\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n11\tpretending\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n14\tItalian\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t19\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tItaly\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfavorite\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tshows\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n9\tFantastico\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\ttepid\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tvariety\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tshow\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tso\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tpopular\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n21\tviewers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tclamored\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tbuy\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tchocolate\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tproduct\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n30\tCacao\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tFantastico\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n34\twhose\t_\tPRON\tWP$\t_\t35\tnmod:poss\t_\t_\n35\tpraises\t_\tNOUN\tNNS\t_\t37\tnsubjpass\t_\t_\n36\twere\t_\tAUX\tVBD\t_\t37\tauxpass\t_\t_\n37\tsung\t_\tVERB\tVBN\t_\t27\tacl:relcl\t_\t_\n38\teach\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tweek\t_\tNOUN\tNN\t_\t37\tnmod:tmod\t_\t_\n40\tby\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tdancing\t_\tVERB\tVBG\t_\t42\tamod\t_\t_\n42\tshowgirls\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n43\t--\t_\tPUNCT\t:\t_\t22\tpunct\t_\t_\n44\teven\t_\tADV\tRB\t_\t50\tadvmod\t_\t_\n45\tthough\t_\tSCONJ\tIN\t_\t50\tmark\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tproduct\t_\tNOUN\tNN\t_\t50\tnsubj\t_\t_\n48\tdid\t_\tAUX\tVBD\t_\t50\taux\t_\t_\n49\tn't\t_\tPART\tRB\t_\t50\tneg\t_\t_\n50\texist\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n51\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tTopping\t_\tVERB\tVBG\t_\t20\tdep\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcheese\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tstunt\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tanother\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttypical\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tevening\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tfun\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n14\tWetten\t_\tX\tFW\t_\t15\tcompound\t_\t_\n15\tDass\t_\tX\tFW\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcontestant\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tbet\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tshow\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\thost\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tThomas\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tGottschalk\t_\tPROPN\tNNP\t_\t27\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n33\the\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n34\tcould\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tidentify\t_\tVERB\tVB\t_\t22\tdep\t_\t_\n36\t300\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n37\tGerman\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tdialects\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n39\tover\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\ttelephone\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcelebrity\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tguest\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n6\tAmbassador\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tGermany\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\tRichard\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tBurt\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n13\talso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbet\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tsomeone\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tpile\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n21\tup\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\t$\t_\tSYM\t$\t_\t24\tdep\t_\t_\n23\t150\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tworth\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tquarters\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tslanted\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tcoin\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBurt\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tnonetheless\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tpenalty\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n8\tif\t_\tSCONJ\tIN\t_\t7\tmwe\t_\t_\n9\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tlost\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tagreeing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tspend\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tday\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n19\tWest\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n20\tGerman\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tForeign\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tMinister\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tHans-Dietrich\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tGenscher\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n25\tfrying\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tselling\t_\tVERB\tVBG\t_\t25\tconj\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tcombined\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tweight\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n31\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tpotato\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tpancakes\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t18\tadvcl\t_\t_\n4\tlike\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tpretty\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tweak\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstuff\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\taround\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t11\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\traise\t_\tVERB\tVB\t_\t7\tacl:relcl\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tprotectionist\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbarriers\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n17\tmay\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tbe\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tbecause\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tthese\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tshows\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\tneed\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n23\tall\t_\tDET\tPDT\t_\t25\tdet:predet\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tprotection\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\tthey\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n27\tcan\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tget\t_\tVERB\tVB\t_\t25\tacl:relcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tEuropean\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tprograms\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tusually\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\ttarget\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n7\town\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tlocal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taudience\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\toften\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n13\tonly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tportion\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tthat\t_\tPRON\tDT\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMega-hits\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n2\tin\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tGermany\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tItaly\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\trarely\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tmake\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\teven\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tFrance\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tGreat\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBritain\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n17\talmost\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tnever\t_\tADV\tRB\t_\t19\tneg\t_\t_\n19\tshow\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n20\tup\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tscreens\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAttempts\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n2\tto\t_\tPART\tTO\t_\t3\tmark\t_\t_\n3\tproduce\t_\tVERB\tVB\t_\t1\tacl\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n5\tpan-European\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\tprograms\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tgenerally\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tresulted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdisappointment\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tannual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tco-production\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tthree-hour-long\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tEurovision\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSong\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tContest\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n13\tfeaturing\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n14\tsoft-rock\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsongs\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\teach\t_\tDET\tDT\t_\t15\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t20\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tEuropean\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcountries\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tdescribed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tas\t_\tADP\tIN\t_\t33\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tworld\t_\tNOUN\tNN\t_\t33\tnmod:poss\t_\t_\n29\t's\t_\tVERB\tVBZ\t_\t28\tcase\t_\t_\n30\tmost\t_\tADV\tRBS\t_\t31\tadvmod\t_\t_\n31\tboring\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tTV\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tshow\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t25\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n4\tJeux\t_\tX\tFW\t_\t6\tcompound\t_\t_\n5\tSans\t_\tX\tFW\t_\t6\tcompound\t_\t_\n6\tFrontieres\t_\tX\tFW\t_\t1\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n9\twhere\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n10\tvillagers\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tassorted\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tEuropean\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcountries\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\tmake\t_\tVERB\tVBP\t_\t1\tacl:relcl\t_\t_\n16\tfools\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tthemselves\t_\tPRON\tPRP\t_\t15\tnmod\t_\t_\n19\tperforming\t_\tVERB\tVBG\t_\t15\txcomp\t_\t_\n20\tpointless\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttasks\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\thit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tFrance\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tU.S.-made\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\timitation\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tunder\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttitle\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n8\tAlmost\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAnything\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tGoes\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n12\tflopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tfast\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tmost\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tpart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\twhat\t_\tPRON\tWP\t_\t8\tnsubjpass\t_\t_\n7\t's\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tmade\t_\tVERB\tVBN\t_\t10\tcsubj\t_\t_\n9\there\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tstays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\there\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tgood\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\treason\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcream\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBritish\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcrop\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tliterary\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdramas\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubjpass\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\tauxpass\t_\t_\n13\tshown\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tpublic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttelevision\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tMasterpiece\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tTheater\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n24\tmake\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n25\tup\t_\tADP\tRP\t_\t24\tcompound:prt\t_\t_\n26\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\trelatively\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n28\tsmall\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tpart\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tBritish\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\tair\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\ttime\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n2\tBritish\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprogramming\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tacquired\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\ttaste\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tinstance\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n8\tOne\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tMan\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tHis\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\tDog\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\therding\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tcontest\t_\tNOUN\tNN\t_\t9\tdep\t_\t_\n18\tamong\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsheep\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tdogs\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\triveting\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tBritish\t_\tPROPN\tNNPS\t_\t6\tnmod\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\thours\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tdart-throwing\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tchampionships\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\teven\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tmore\t_\tADJ\tJJR\t_\t14\tamod\t_\t_\n14\thours\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tlawn\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tbowling\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcontests\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n20\tstill\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tmore\t_\tADJ\tJJR\t_\t22\tamod\t_\t_\n22\thours\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tsnooker\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmarathons\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tEuropean\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tdrama\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\thad\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tbetter\t_\tADJ\tJJR\t_\t11\tamod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tstill\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tmixed\t_\tADJ\tJJ\t_\t11\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tfortunes\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tpopular\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tshows\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tfocus\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tnarrow\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnational\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tconcerns\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFrench\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tknock-off\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tDallas\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n9\tcalled\t_\tVERB\tVBN\t_\t3\tdep\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n11\tChateauvallon\t_\tPROPN\tNNP\t_\t9\txcomp\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tset\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tFrench\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tvineyard\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tgood\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\trun\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFrance\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\tended\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n29\tafter\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tfemale\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tlead\t_\tNOUN\tNN\t_\t34\tnsubjpass\t_\t_\n33\twas\t_\tAUX\tVBD\t_\t34\tauxpass\t_\t_\n34\tinjured\t_\tVERB\tVBN\t_\t28\tadvcl\t_\t_\n35\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\treal-life\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tauto\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\taccident\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n2\tSchwarzwaldklinik\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n6\tBlack\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tForest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tClinic\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tkind\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n13\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tGerman\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n16\tSt\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n18\tElsewhere\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n20\tset\t_\tVERB\tVBN\t_\t18\tacl\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\thealth\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tspa\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n27\tpopular\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n28\tin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tGermany\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n32\thas\t_\tAUX\tVBZ\t_\t33\taux\t_\t_\n33\tspread\t_\tVERB\tVBN\t_\t27\tconj\t_\t_\n34\tinto\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tFrance\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tItaly\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmost\t_\tADV\tRBS\t_\t4\tadvmod\t_\t_\n4\tpopular\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tseries\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tdrama\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tcalled\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tLa\t_\tX\tFW\t_\t12\tcompound\t_\t_\n12\tPiovra\t_\tX\tFW\t_\t9\txcomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n17\tThe\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tOctopus\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n22\tchronicles\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tfight\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tan\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tidealistic\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\tyoung\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tinvestigator\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tPalermo\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n32\tagainst\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tMafia\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tfront-page\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tItaly\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tearlier\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfictional\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinspector\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\tauxpass\t_\t_\n15\tgunned\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n16\tdown\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tseries\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSpain\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmost\t_\tADV\tRBS\t_\t4\tadvmod\t_\t_\n4\tpopular\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmini-series\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tJuncal\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstory\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\taging\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\tbullfighter\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttrend\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n5\tpretty\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\twell\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\testablished\t_\tVERB\tVBN\t_\t23\tccomp\t_\t_\n8\tnow\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tlocal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tprograms\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmost\t_\tADV\tRBS\t_\t15\tadvmod\t_\t_\n15\tpopular\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twith\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tAmerican\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprograms\t_\tNOUN\tNNS\t_\t20\tdep\t_\t_\n20\tsecond\t_\tADJ\tJJ\t_\t15\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tBrian\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWenham\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tformer\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tdirector\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tprograms\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n32\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tBritish\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tBroadcasting\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tCorp\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tGiven\t_\tVERB\tVBN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tchoice\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\teverybody\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\twatch\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\thome-produced\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tshow\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tfrequently\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tthere\t_\tPRON\tEX\t_\t4\texpl\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n6\tmuch\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tchoice\t_\tADJ\tJJ\t_\t4\tnsubj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tEurope\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tbegun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\trecent\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcrusade\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tproduce\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tmore\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n12\tworthy\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tshows\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\town\t_\tADJ\tJJ\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t13\tappos\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tbroader\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n21\tappeal\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbasically\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tgot\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tstart\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tscratch\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\ttrain\t_\tVERB\tVB\t_\t7\tdep\t_\t_\n13\twriters\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tproducers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tmake\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n18\tshows\t_\tVERB\tVBZ\t_\t17\tdobj\t_\t_\n19\tthat\t_\tADP\tIN\t_\t23\tdobj\t_\t_\n20\tother\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tpeople\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n22\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\twant\t_\tVERB\tVB\t_\t18\tacl:relcl\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsee\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t28\tpunct\t_\t_\n28\tconcedes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n29\tColin\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tYoung\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\thead\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n33\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n34\tBritain\t_\tPROPN\tNNP\t_\t39\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tNational\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tFilm\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tTheatre\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tSchool\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tsome\t_\tDET\tDT\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tcontend\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n7\tthat\t_\tDET\tDT\t_\t11\tmark\t_\t_\n8\tadvertising\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbane\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttelevision\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\there\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tmany\t_\tADJ\tJJ\t_\t17\tnsubj\t_\t_\n17\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n18\tthat\t_\tDET\tDT\t_\t21\tmark\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tabsence\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tis\t_\tVERB\tVBZ\t_\t17\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tblame\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tEuropean\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tTV\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tindustry\t_\tNOUN\tNN\t_\t31\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tsluggish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tdevelopment\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\trecently\t_\tADV\tRB\t_\t8\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tnational\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tgovernments\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tEurope\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tcontrolled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tmost\t_\tADJ\tJJS\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tair\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tallowed\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n16\tlittle\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tor\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tno\t_\tDET\tDT\t_\t16\tconj\t_\t_\n19\tadvertising\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tSince\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tproduction\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcosts\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tguaranteed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tmatter\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tprogram\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tsold\t_\tVERB\tVBN\t_\t10\tccomp\t_\t_\n18\tabroad\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tput\t_\tVERB\tVB\t_\t17\tconj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tsyndication\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n25\tmost\t_\tADJ\tJJS\t_\t27\tamod\t_\t_\n26\tAmerican\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tprograms\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tare\t_\tVERB\tVBP\t_\t17\tadvcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tnot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n3\tmuch\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmoney\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\tspent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tshows\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\teither\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsituation\t_\tNOUN\tNN\t_\t6\tnmod:npmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\tencouraged\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n17\tcheap-to-make\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttalk\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tgame\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tshows\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\twhile\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n24\tdiscouraging\t_\tVERB\tVBG\t_\t16\tadvcl\t_\t_\n25\texpensive-to-produce\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdramas\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tcommercial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tchannels\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n8\tcoming\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n10\tmost\t_\tADJ\tJJS\t_\t12\tamod\t_\t_\n11\tEuropean\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcountries\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n15\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsame\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n20\tsatellite\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tcable\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n23\ttechnology\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n24\tis\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n25\tspreading\t_\tVERB\tVBG\t_\t8\tconj\t_\t_\n26\trapidly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tGreece\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tauthorized\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n8\tcommercial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tchannels\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfirst\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\ttime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n15\tSpain\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\tearlier\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n17\tbegan\t_\tVERB\tVBD\t_\t6\tparataxis\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tallow\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tcommercial\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\ttelevision\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\talongside\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n24\tstate\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tchannels\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresult\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\thuge\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n8\tappetite\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tprogramming\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tperhaps\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tconsternation\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthose\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\tcalling\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n9\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tquotas\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n12\tmost\t_\tADJ\tJJS\t_\t17\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tvoid\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\tfilled\t_\tVERB\tVBN\t_\t17\txcomp\t_\t_\n21\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n23\tcheapest\t_\tADJ\tJJS\t_\t27\tamod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tmost\t_\tADV\tRBS\t_\t26\tadvmod\t_\t_\n26\tplentiful\t_\tADJ\tJJ\t_\t23\tconj\t_\t_\n27\tprogramming\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\tnow\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\tavailable\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n30\t--\t_\tPUNCT\t:\t_\t27\tpunct\t_\t_\n31\treruns\t_\tNOUN\tNNS\t_\t27\tdep\t_\t_\n32\t--\t_\tPUNCT\t:\t_\t31\tpunct\t_\t_\n33\tusually\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tshows\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n36\tmade\t_\tVERB\tVBN\t_\t35\tacl\t_\t_\n37\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tU.S.\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tSky\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChannel\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBritish-based\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tventure\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tAustralian-American\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n9\tpress\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n10\ttycoon\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tRupert\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMurdoch\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\twhat\t_\tPRON\tWP\t_\t21\tnsubj\t_\t_\n16\tmust\t_\tAUX\tMD\t_\t21\taux\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t21\tcop\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\tbaffling\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tcultural\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmix\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tmost\t_\tADJ\tJJS\t_\t21\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\taudience\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tfinancially\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tstruggling\t_\tVERB\tVBG\t_\t4\tamod\t_\t_\n4\tstation\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\toffers\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tprograms\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tobviously\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmade\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n9\tavailable\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\tcheaply\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tboss\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tventures\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tMadrid\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\thotel\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\troom\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\trecently\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tviewer\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tcaught\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tend\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tbadly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tacted\t_\tVERB\tVBN\t_\t17\tamod\t_\t_\n17\tseries\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tfishing\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tboat\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\ton\t_\tADP\tIN\t_\t27\tcase\t_\t_\n23\tAustralia\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tGreat\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tBarrier\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tReef\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n29\tonly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n30\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n31\tbe\t_\tAUX\tVB\t_\t32\tauxpass\t_\t_\n32\turged\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n33\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tBritish\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tannouncer\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t39\tpunct\t_\t_\n39\tstay\t_\tVERB\tVB\t_\t32\txcomp\t_\t_\n40\ttuned\t_\tVERB\tVBN\t_\t39\tdep\t_\t_\n41\tfor\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tfurther\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tadventures\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n45\tof\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\tSkippy\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n47\tthe\t_\tDET\tDT\t_\t48\tdet\t_\t_\n48\tKangaroo\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n50\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tLisa\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGrishaw-Mueller\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tBonn\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n6\tLaura\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tColby\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tMilan\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tTim\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCarrington\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tLondon\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n16\tCarlta\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tVitzhum\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tMadrid\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tarticle\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tBritish\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tAerospace\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPLC\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tFrance\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tThomson-CSF\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tS.A.\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tnearing\t_\tVERB\tVBG\t_\t9\tccomp\t_\t_\n13\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tagreement\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tmerge\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n18\tguided-missile\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tdivisions\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tgreatly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\texpanding\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n23\tcollaboration\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tbetween\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\ttwo\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n27\tdefense\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcontractors\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\t50-50\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tjoint\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tventure\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t9\tnsubjpass\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t9\tauxpass\t_\t_\n9\tdubbed\t_\tVERB\tVBN\t_\t4\tacl:relcl\t_\t_\n10\tEurodynamics\t_\tPROPN\tNNPS\t_\t9\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tcombined\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tannual\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tleast\t_\tADJ\tJJS\t_\t22\tnmod:npmod\t_\t_\n20\t#\t_\tSYM\t#\t_\t22\tcompound\t_\t_\n21\t1.4\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n23\t-LRB-\t_\tPUNCT\t-LRB-\t_\t24\tpunct\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tdep\t_\t_\n25\t2.17\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t24\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n29\twould\t_\tAUX\tMD\t_\t37\taux\t_\t_\n30\tbe\t_\tVERB\tVB\t_\t37\tcop\t_\t_\n31\tamong\t_\tADP\tIN\t_\t37\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tworld\t_\tNOUN\tNN\t_\t37\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tlargest\t_\tADJ\tJJS\t_\t37\tamod\t_\t_\n36\tmissile\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tmakers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ttwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttalks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tplans\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tventure\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\tsufficiently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tadvanced\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tfor\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompanies\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tseek\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n19\tFrench\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tBritish\t_\tADJ\tJJ\t_\t19\tconj\t_\t_\n22\tgovernment\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tclearance\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfinal\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tagreement\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tyear-end\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tventure\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tstrengthen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\trapidly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tgrowing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tties\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\tbetween\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n15\thelp\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n16\tmake\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n17\tthem\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tleading\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tforce\t_\tNOUN\tNN\t_\t16\txcomp\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tEuropean\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tdefense\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tcontracting\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmonths\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tstring\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tcross-border\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmergers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tjoint\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tventures\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\treshaped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tonce-balkanized\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tworld\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tEuropean\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tarms\t_\tNOUN\tNNS\t_\t21\tcompound\t_\t_\n21\tmanufacture\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAlready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tBritish\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAerospace\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tFrench\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tgovernment-controlled\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tThomson-CSF\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n9\tcollaborate\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tBritish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tmissile\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcontract\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\tair-traffic\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tcontrol\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tradar\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tsystem\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tmake\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tjoint\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbid\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tFerranti\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tInternational\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tSignal\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPLC\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tsmaller\t_\tADJ\tJJR\t_\t23\tamod\t_\t_\n21\tBritish\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tdefense\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcontractor\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n24\trocked\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\talleged\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\taccounting\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tfraud\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tU.S.\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tunit\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsudden\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tromance\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tBritish\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAerospace\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tThomson-CSF\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n10\ttraditionally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\tbitter\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcompetitors\t_\tNOUN\tNNS\t_\t6\tdep\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tMiddle\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tEast\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tThird\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tWorld\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tweapons\t_\tNOUN\tNNS\t_\t20\tcompound\t_\t_\n20\tcontracts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n21\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t23\taux\t_\t_\n23\tstirring\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n24\tcontroversy\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tWestern\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tEurope\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tdefense\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tindustry\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tMost\t_\tADV\tRBS\t_\t2\tadvmod\t_\t_\n2\tthreatened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tcloser\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n5\tBritish\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tAerospace-Thomson\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tties\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tbe\t_\tAUX\tVB\t_\t2\tauxpass\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n11\trespective\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tnational\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\trivals\t_\tNOUN\tNNS\t_\t2\tnsubjpass\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tincluding\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n16\tMatra\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tS.A.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tFrance\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n21\tBritain\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tGeneral\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tElectric\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tPLC\t_\tPROPN\tNNP\t_\t17\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\tneither\t_\tCONJ\tCC\t_\t3\tcc:preconj\t_\t_\n3\tMatra\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n4\tnor\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tGEC\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n7\tunrelated\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n8\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n9\tStamford\t_\tPROPN\tNNP\t_\t11\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tConn.-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\tGeneral\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tElectric\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCo.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n16\tare\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tsitting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n18\tquietly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\tby\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\tas\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n21\ttheir\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tcompetitors\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tjoin\t_\tVERB\tVBP\t_\t17\tccomp\t_\t_\n24\tforces\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tYesterday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsource\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tclose\t_\tADV\tRB\t_\t4\tamod\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tGEC\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\tconfirmed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\this\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tjoin\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tFerranti\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tfight\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpart\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tpossible\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tconsortium\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n25\twould\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tbid\t_\tVERB\tVB\t_\t23\tacl:relcl\t_\t_\n27\tagainst\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tBritish\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tAerospace\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tThomson-CSF\t_\tPROPN\tNNP\t_\t29\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n2\twith\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t6\tnmod\t_\t_\n4\tGEC\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n5\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\thad\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n7\ttalks\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\tabout\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tpossible\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\tjoint\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tFerranti\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tbid\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n15\tMatra\t_\tPROPN\tNNP\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tBritain\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tDowty\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tGroup\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tPLC\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tWest\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tGermany\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tDaimler-Benz\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tAG\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n30\tFrance\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tDassault\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tgroup\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t5\tcop\t_\t_\n5\tweeks\t_\tNOUN\tNNS\t_\t19\tccomp\t_\t_\n6\tbefore\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tGEC\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n10\tpotential\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpartners\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\tdecide\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tbid\t_\tVERB\tVB\t_\t12\tccomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tsource\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n19\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tGEC\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tfirst\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tstudy\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\tFerranti\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tfinancial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taccounts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tdobj\t_\t_\n12\tauditors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\trecently\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n15\tincluded\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n16\t#\t_\tSYM\t#\t_\t18\tcompound\t_\t_\n17\t215\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t15\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tfictitious\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcontracts\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tU.S.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tunit\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tInternational\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tSignal\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n29\t&\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tControl\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tGroup\t_\tPROPN\tNNP\t_\t28\tconj\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n33\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\twhich\t_\tPRON\tWDT\t_\t36\tnmod\t_\t_\n35\tFerranti\t_\tPROPN\tNNP\t_\t36\tnsubj\t_\t_\n36\tmerged\t_\tVERB\tVBD\t_\t25\tacl:relcl\t_\t_\n37\tlast\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tyear\t_\tNOUN\tNN\t_\t36\tnmod:tmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tany\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tGEC\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tbid\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n6\tmight\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tblocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tBritish\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tantitrust\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tregulators\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n14\tFerranti\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n16\tGEC\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tmain\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcompetitor\t_\tNOUN\tNN\t_\t8\tparataxis\t_\t_\n20\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tseveral\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tkey\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tdefense-electronics\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcontracts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\tpurchase\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n29\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tGEC\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\tmay\t_\tAUX\tMD\t_\t32\taux\t_\t_\n32\theighten\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n33\tBritish\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tDefense\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tMinistry\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n36\tworries\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n37\tabout\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tconcentration\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n39\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tcountry\t_\tNOUN\tNN\t_\t44\tnmod:poss\t_\t_\n42\t's\t_\tPART\tPOS\t_\t41\tcase\t_\t_\n43\tdefense\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tindustry\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tconsortium\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbid\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdiminish\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tGEC\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tdirect\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trole\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tFerranti\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n16\tmight\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tconsequently\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tappease\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n19\tministry\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tofficials\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tBritish\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tAerospace\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tspokeswoman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tappeared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tunperturbed\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprospect\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tfight\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tGEC\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tFerranti\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n19\tCompetition\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tname\t_\tNOUN\tNN\t_\t29\tccomp\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tgame\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t29\tpunct\t_\t_\n28\tshe\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\tsaid\t_\tVERB\tVBD\t_\t5\tparataxis\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tleast\t_\tADJ\tJJS\t_\t3\tnmod:npmod\t_\t_\n3\tone\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tpotential\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tGEC\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tpartner\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tMatra\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tinsists\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tinterested\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tFerranti\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t21\tccomp\t_\t_\n4\tnothing\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tsay\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\tabout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\taffair\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tconcern\t_\tVERB\tVB\t_\t9\tacl:relcl\t_\t_\n15\tus\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tMatra\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tofficial\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tSunday\t_\tPROPN\tNNP\t_\t21\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmissile\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tventure\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tBritish\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tAerospace\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tspokeswoman\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tneeded\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tresponse\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tenvironment\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tdefense\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcontracting\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tboth\t_\tDET\tDT\t_\t3\tcc:preconj\t_\t_\n3\tThomson\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tBritish\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAerospace\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n8\tearnings\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\thome\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarkets\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\tcome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tunder\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpressure\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tincreasingly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\ttight-fisted\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tdefense\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tministries\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\t;\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n24\tMiddle\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tEast\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tsales\t_\tNOUN\tNNS\t_\t39\tnsubjpass\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\ttraditional\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tmainstay\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n31\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tboth\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tcompanies\t_\tNOUN\tNNS\t_\t35\tnmod:poss\t_\t_\n34\t'\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\texports\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n37\thave\t_\tAUX\tVBP\t_\t39\taux\t_\t_\n38\tbeen\t_\tAUX\tVBN\t_\t39\tauxpass\t_\t_\n39\thurt\t_\tVERB\tVBN\t_\t14\tconj\t_\t_\n40\tby\t_\tADP\tIN\t_\t42\tcase\t_\t_\n41\tfive\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tyears\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n43\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n44\tweak\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n45\toil\t_\tNOUN\tNN\t_\t46\tcompound\t_\t_\n46\tprices\t_\tNOUN\tNNS\t_\t42\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tventure\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\timportance\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tThomson\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tgreat\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThomson\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tfeels\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tfuture\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tdefense\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tdepends\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n10\ton\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tbuilding\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n12\tcooperation\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tEuropeans\t_\tPROPN\tNNPS\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tEuropean\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdefense\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tconsolidating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tinstance\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n11\tWest\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tGermany\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tSiemens\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAG\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n16\trecently\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tjoined\t_\tVERB\tVBD\t_\t6\tparataxis\t_\t_\n18\tGEC\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\ttakeover\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tBritain\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tPlessey\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tCo.\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n29\tDaimler-Benz\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n30\tagreed\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tbuy\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\tMesserschmitt-Boelkow\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n34\tBlohm\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n35\tG.m.b\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n37\tH\t_\tPROPN\tNNP\t_\t32\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t37\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tmissiles\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tThomson\t_\tPROPN\tNNP\t_\t7\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n6\talready\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tovershadowed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tBritish\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAerospace\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\thome\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\trival\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tFrance\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tAerospatiale\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tS.A.\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n21\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n22\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n23\tbetter\t_\tADV\tRBR\t_\t24\tadvmod\t_\t_\n24\tcompete\t_\tVERB\tVB\t_\t31\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n26\tThomson\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tofficials\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tsay\t_\tVERB\tVBP\t_\t31\tparataxis\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tthey\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tneed\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tpartnership\t_\tNOUN\tNN\t_\t31\tdobj\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tjustify\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n3\t50-50\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\townership\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tplanned\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tventure\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tThomson\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tmake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcash\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tpayment\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t18\tcase\t_\t_\n17\tBritish\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tAerospace\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAnnual\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trevenue\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tBritish\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAerospace\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tmissile\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n10\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\t#\t_\tSYM\t#\t_\t13\tcompound\t_\t_\n12\t950\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t18\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tThomson\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tspokesman\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBritish\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAerospace\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmissile\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tproducts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\t17-year-old\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tfamily\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tRapier\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\tsurface-to-air\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmissiles\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThomson\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tmissile\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproducts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\thalf\t_\tDET\tPDT\t_\t12\tnummod\t_\t_\n8\tBritish\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAerospace\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tannual\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trevenue\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tCrotale\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tsurface-to-air\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tmissile\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tfamily\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tInterprovincial\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tPipe\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tLine\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdelay\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n10\tproposed\t_\tVERB\tVBN\t_\t21\tamod\t_\t_\n11\ttwo-step\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n13\t830\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t15\tdep\t_\t_\n15\tCanadian-dollar\t_\tADJ\tJJ\t_\t21\tdep\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n17\tUS$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n18\t705.6\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tmillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n21\texpansion\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tsystem\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tbecause\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n26\tCanada\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\toutput\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcrude\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\toil\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tis\t_\tAUX\tVBZ\t_\t33\taux\t_\t_\n33\tshrinking\t_\tVERB\tVBG\t_\t8\tadvcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInterprovincial\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tCanada\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tbiggest\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n6\toil\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\tpipeline\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\toperator\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttransporter\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tcrude\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\trevised\t_\tVERB\tVBN\t_\t22\tamod\t_\t_\n21\tindustry\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tforecasts\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tindicate\t_\tVERB\tVBP\t_\t19\tccomp\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n25\tCanadian\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\toil\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\toutput\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n28\twill\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\ttotal\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n30\tabout\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n31\t1.64\t_\tNUM\tCD\t_\t32\tcompound\t_\t_\n32\tmillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tbarrels\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tday\t_\tNOUN\tNN\t_\t33\tnmod:npmod\t_\t_\n36\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t1991\t_\tNUM\tCD\t_\t29\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n39\t8\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\t%\t_\tSYM\tNN\t_\t41\tnmod:npmod\t_\t_\n41\tlower\t_\tADJ\tJJR\t_\t29\txcomp\t_\t_\n42\tthan\t_\tADP\tIN\t_\t45\tcase\t_\t_\n43\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n44\tprevious\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\testimate\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tCanadian\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tcrude\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tproduction\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\taveraged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t1.69\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tbarrels\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tday\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n11\tduring\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\t1989\t_\tNUM\tCD\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\thalf\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t1\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n20\tbelow\t_\tADP\tIN\t_\t19\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\t1988\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tlevel\t_\tNOUN\tNN\t_\t19\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcapability\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\texisting\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tfields\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tdeliver\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n9\toil\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tdropping\t_\tVERB\tVBG\t_\t33\tccomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n15\toil\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n16\texploration\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tactivity\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\tdown\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tdramatically\t_\tADV\tRB\t_\t11\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tmany\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tproducers\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tshift\t_\tVERB\tVBP\t_\t11\tconj\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\temphasis\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n30\tnatural\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tgas\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tRonald\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tWatkins\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tvice\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t35\tappos\t_\t_\n39\tfor\t_\tADP\tIN\t_\t43\tcase\t_\t_\n40\tgovernment\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n42\tindustry\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n43\trelations\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n44\twith\t_\tADP\tIN\t_\t47\tcase\t_\t_\n45\tInterprovincial\t_\tPROPN\tNNP\t_\t47\tnmod:poss\t_\t_\n46\t's\t_\tPART\tPOS\t_\t45\tcase\t_\t_\n47\tparent\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n49\tInterhome\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n50\tEnergy\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tInc\t_\tPROPN\tNNP\t_\t47\tappos\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWatkins\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tvolume\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n5\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tInterprovincial\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tsystem\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t15\tcop\t_\t_\n10\tdown\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n11\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t10\tnmod:npmod\t_\t_\n14\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJanuary\t_\tPROPN\tNNP\t_\t3\tccomp\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\texpected\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tfall\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\tfurther\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tmaking\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n24\texpansion\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n25\tunnecessary\t_\tADJ\tJJ\t_\t23\txcomp\t_\t_\n26\tuntil\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tperhaps\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmid-1990s\t_\tNOUN\tNNS\t_\t25\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t6\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tswing\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpendulum\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tback\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgas\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tside\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tCanada\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\toil\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tgas\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproducers\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n9\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\toutlook\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tnatural\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tgas\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n16\tbetter\t_\tADJ\tJJR\t_\t9\tccomp\t_\t_\n17\tthan\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\toil\t_\tNOUN\tNN\t_\t16\tccomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n24\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n25\tshifted\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n26\ttheir\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\texploration\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tdevelopment\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tbudgets\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\taccordingly\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnumber\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tactive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tdrilling\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trigs\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tCanada\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t42\tccomp\t_\t_\n10\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tnmod:npmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tyear\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n16\tago\t_\tADV\tRB\t_\t10\tadvcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tnumber\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tcompleted\t_\tVERB\tVBN\t_\t24\tamod\t_\t_\n23\toil\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\twells\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tis\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n27\tdown\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n28\tmore\t_\tADJ\tJJR\t_\t27\tnmod:npmod\t_\t_\n29\tthan\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tthat\t_\tPRON\tDT\t_\t28\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n32\tdue\t_\tADJ\tJJ\t_\t9\tadvmod\t_\t_\n33\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tincreasing\t_\tVERB\tVBG\t_\t36\tamod\t_\t_\n36\tfocus\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\ton\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tgas\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\texploration\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n41\t''\t_\tPUNCT\t''\t_\t42\tpunct\t_\t_\n42\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n43\tRobert\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tFeick\t_\tPROPN\tNNP\t_\t42\tnsubj\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n46\tmanager\t_\tNOUN\tNN\t_\t44\tappos\t_\t_\n47\tof\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tcrude\t_\tADJ\tJJ\t_\t49\tamod\t_\t_\n49\toil\t_\tNOUN\tNN\t_\t46\tnmod\t_\t_\n50\twith\t_\tADP\tIN\t_\t55\tcase\t_\t_\n51\tCalgary\t_\tPROPN\tNNP\t_\t55\tnmod:poss\t_\t_\n52\t's\t_\tPART\tPOS\t_\t51\tcase\t_\t_\n53\tIndependent\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n54\tPetroleum\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tAssociation\t_\tPROPN\tNNP\t_\t46\tnmod\t_\t_\n56\tof\t_\tADP\tIN\t_\t57\tcase\t_\t_\n57\tCanada\t_\tPROPN\tNNP\t_\t55\tnmod\t_\t_\n58\t,\t_\tPUNCT\t,\t_\t55\tpunct\t_\t_\n59\tan\t_\tDET\tDT\t_\t61\tdet\t_\t_\n60\tindustry\t_\tNOUN\tNN\t_\t61\tcompound\t_\t_\n61\tgroup\t_\tNOUN\tNN\t_\t55\tappos\t_\t_\n62\t.\t_\tPUNCT\t.\t_\t42\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWatkins\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmain\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\treason\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tproduction\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdecline\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tshrinking\t_\tVERB\tVBG\t_\t13\tamod\t_\t_\n13\toutput\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tlight\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcrude\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tmature\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\tconventional\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tfields\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\twestern\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tCanada\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tInterprovincial\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\ttransports\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tabout\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\t75\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcrude\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tproduced\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\twestern\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tCanada\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n15\talmost\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\t60\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t23\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tInterprovincial\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\ttotal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tvolume\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\tconsists\t_\tVERB\tVBZ\t_\t2\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tlight\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcrude\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNearly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tall\t_\tDET\tDT\t_\t14\tnsubjpass\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcrude\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\toil\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tthat\t_\tADP\tIN\t_\t9\tdobj\t_\t_\n8\tCanada\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\texports\t_\tNOUN\tNNS\t_\t6\tacl:relcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\ttransported\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tInterprovincial\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tsystem\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhose\t_\tPRON\tWP$\t_\t22\tnmod:poss\t_\t_\n21\tmain\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tline\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\truns\t_\tNOUN\tNNS\t_\t18\tacl:relcl\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tEdmonton\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n27\tmajor\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n28\tU.S.\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tCanadian\t_\tADJ\tJJ\t_\t28\tconj\t_\t_\n31\tcities\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tGreat\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n35\tLakes\t_\tPROPN\tNNPS\t_\t36\tcompound\t_\t_\n36\tregion\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n38\tincluding\t_\tVERB\tVBG\t_\t39\tcase\t_\t_\n39\tChicago\t_\tPROPN\tNNP\t_\t31\tnmod\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tBuffalo\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n43\tToronto\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n44\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n45\tMontreal\t_\tPROPN\tNNP\t_\t39\tconj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tCanada\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tcurrent\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\toil\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\texports\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\ttotal\t_\tVERB\tVBP\t_\t26\tccomp\t_\t_\n10\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t600,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tbarrels\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t12\tnmod:npmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\t9.1\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tnet\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tcrude\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\timports\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tJohn\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tLichtblau\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tpresident\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n33\tNew\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tYork-based\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n35\tPetroleum\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n36\tIndustry\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tResearch\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tFoundation\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tranks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tCanada\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfourth-largest\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsource\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\timported\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcrude\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tbehind\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tSaudi\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tArabia\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tNigeria\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tMexico\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLichtblau\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tCanada\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tdeclining\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n7\tcrude\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\toutput\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tcombined\t_\tVERB\tVBN\t_\t14\tcase\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfast-shrinking\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\toutput\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tU.S.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tcrude\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\thelp\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n21\tintensify\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n22\tU.S.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\treliance\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\toil\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\toverseas\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tparticularly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tMiddle\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tEast\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\tvery\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmuch\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgrowing\t_\tVERB\tVBG\t_\t8\tamod\t_\t_\n8\tconcern\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n3\tsomething\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tinevitable\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tlearn\t_\tVERB\tVBP\t_\t16\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tlive\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLichtblau\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tstressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdelay\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tInterprovincial\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tproposed\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n11\texpansion\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\two\t_\tAUX\tMD\t_\t16\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n14\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\titself\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n16\tincrease\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n17\tU.S.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tdependence\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\toffshore\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcrude\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\thowever\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tsince\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n26\tCanadian\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\timports\t_\tNOUN\tNNS\t_\t29\tnsubjpass\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\tauxpass\t_\t_\n29\tlimited\t_\tVERB\tVBN\t_\t16\tadvcl\t_\t_\n30\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tany\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tcase\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tCanada\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tfalling\t_\tVERB\tVBG\t_\t37\tamod\t_\t_\n37\toutput\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tUnder\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tterms\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n3\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tproposed\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n6\ttwo-step\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\texpansion\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n10\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\trequired\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n13\tregulatory\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tapproval\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tInterprovincial\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tintended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tadd\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\t200,000\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tbarrels\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tday\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tadditional\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tcapacity\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n29\tsystem\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n31\tbeginning\t_\tVERB\tVBG\t_\t35\tcase\t_\t_\n32\twith\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tmodest\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\texpansion\t_\tNOUN\tNN\t_\t19\tadvcl\t_\t_\n36\tby\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t1991\t_\tNUM\tCD\t_\t35\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsystem\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tcurrently\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcapacity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\t1.55\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tbarrels\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tday\t_\tNOUN\tNN\t_\t10\tnmod:npmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInland\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tSteel\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tIndustries\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tthird-quarter\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tearnings\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tdropped\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t14\tadvmod\t_\t_\n13\tthan\t_\tADP\tIN\t_\t12\tmwe\t_\t_\n14\t50\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tprevious\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tresult\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\treduced\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tsales\t_\tNOUN\tNNS\t_\t26\tcompound\t_\t_\n26\tvolume\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tincreased\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcosts\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsecond\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsteelmaker\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tnet\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t45.3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.25\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\tincluding\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tpretax\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcharge\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t24\tnmod\t_\t_\n27\t17\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\trelated\t_\tVERB\tVBN\t_\t24\tamod\t_\t_\n30\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tsettlement\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tsuit\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n37\ton\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n39\tof\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\t$\t_\tSYM\t$\t_\t42\tdep\t_\t_\n41\t1.11\t_\tNUM\tCD\t_\t42\tnummod\t_\t_\n42\tbillion\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tnormal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tseasonal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsoftness\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tlost\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\torders\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n10\tcaused\t_\tVERB\tVBN\t_\t9\tacl\t_\t_\n11\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprolonged\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tlabor\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\ttalks\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\treduced\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n16\tshipments\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t200,000\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\ttons\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tlatest\t_\tADJ\tJJS\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tcompared\t_\tVERB\tVBN\t_\t29\tcase\t_\t_\n26\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tsecond\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tintegrated-steel\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\twas\t_\tAUX\tVBD\t_\t10\tauxpass\t_\t_\n10\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tcontinued\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tincreases\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tmaterials\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tcosts\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\trepair\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tmaintenance\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n21\texpenses\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n23\tas\t_\tADV\tRB\t_\t13\tcc\t_\t_\n24\twell\t_\tADV\tRB\t_\t23\tmwe\t_\t_\n25\tas\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n26\thigher\t_\tADJ\tJJR\t_\t28\tamod\t_\t_\n27\tlabor\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tcosts\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n29\tunder\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tits\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tnew\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tcontract\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tservice-center\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tbusiness\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\thurt\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\treduced\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmargins\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tstart-up\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcosts\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\tassociated\t_\tVERB\tVBN\t_\t11\tamod\t_\t_\n13\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n15\tJoseph\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tT.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tRyerson\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n18\t&\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tSon\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tunit\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\tbeginning\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tsee\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tsome\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tshipping-rate\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\timprovements\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tboth\t_\tCONJ\tCC\t_\t15\tcc:preconj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tintergrated-steel\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tsteel-service-center\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsegments\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n21\tshould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tresult\t_\tVERB\tVB\t_\t8\tdep\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\timproved\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tresults\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tfourth\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tInland\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tthird-quarter\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tresults\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tannounced\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n9\tlater\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tweek\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tindustry\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmidst\t_\tNOUN\tNN\t_\t5\tacl:relcl\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tboom\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcompany\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tnet\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t61\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n28\t$\t_\tSYM\t$\t_\t29\tdep\t_\t_\n29\t1.70\t_\tNUM\tCD\t_\t23\tconj\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t29\tnmod:npmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n33\ton\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tsales\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\t$\t_\tSYM\t$\t_\t34\tnmod\t_\t_\n37\t1.02\t_\tNUM\tCD\t_\t38\tcompound\t_\t_\n38\tbillion\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tPredicting\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tfinancial\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t1\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tcomputer\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n9\tbeen\t_\tVERB\tVBN\t_\t12\tcop\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\ttough\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tjob\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tlately\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tMicrosoft\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t1\tdobj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tlargest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tmaker\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tpersonal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tcomputer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsoftware\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tgenerally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tconsidered\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n15\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tindustry\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tbellwether\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tstunned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprediction\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tthat\t_\tDET\tDT\t_\t24\tmark\t_\t_\n13\tgrowth\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tpersonal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tcomputer\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tbusiness\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n19\toverall\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n20\twould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n22\tonly\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\t10\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\t%\t_\tSYM\tNN\t_\t11\tccomp\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t1990\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tmodest\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tincrease\t_\tNOUN\tNN\t_\t24\tdep\t_\t_\n31\twhen\t_\tADV\tWRB\t_\t32\tadvmod\t_\t_\n32\tcompared\t_\tVERB\tVBN\t_\t30\tacl:relcl\t_\t_\n33\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tsizzling\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\texpansion\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tyears\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n39\tpast\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n3\ttaking\t_\tVERB\tVBG\t_\t18\tparataxis\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsign\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbroad\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tindustry\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tslump\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\toffing\t_\tNOUN\tNN\t_\t7\tccomp\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n18\treacted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tby\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tselling\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tlost\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n28\t$\t_\tSYM\t$\t_\t29\tdep\t_\t_\n29\t3.25\t_\tNUM\tCD\t_\t27\tdobj\t_\t_\n30\tthat\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n32\tto\t_\tPART\tTO\t_\t33\tmark\t_\t_\n33\tclose\t_\tVERB\tVB\t_\t27\tadvcl\t_\t_\n34\tat\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\t$\t_\tSYM\t$\t_\t36\tdep\t_\t_\n36\t52\t_\tNUM\tCD\t_\t33\tnmod\t_\t_\n37\tin\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tnational\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n39\tover-the-counter\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\ttrading\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tall\t_\tDET\tDT\t_\t6\tadvmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tadvmod\t_\t_\n6\tthree\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n8\tago\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tMicrosoft\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\texpects\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n8\trevenue\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tfirst\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tended\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tSept.\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t30\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tincrease\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n18\t34\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tannouncement\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tcaused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tsurge\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n10\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n11\t6.50\t_\tNUM\tCD\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tclose\t_\tVERB\tVB\t_\t9\tadvcl\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t75.50\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMicrosoft\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tsurprising\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tstrength\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tone\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\texample\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdifficulty\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tfacing\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tinvestors\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tlooking\t_\tVERB\tVBG\t_\t12\tacl\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\treassurances\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tabout\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfinancial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\thealth\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tfirms\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n4\thard\t_\tADJ\tJJ\t_\t15\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tknow\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\texpect\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpoint\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tPeter\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tRogers\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tanalyst\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tRobertson\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tStephens\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tCo\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdefies\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tcharacterization\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\tillustrate\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRogers\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\t14\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tcomputer-related\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfirms\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tfollows\t_\tVERB\tVBZ\t_\t12\tacl:relcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\thalf\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\treport\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n19\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ttheir\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n21\tmost\t_\tADV\tRBS\t_\t22\tadvmod\t_\t_\n22\trecent\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\tearnings\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n25\tbelow\t_\tADP\tIN\t_\t29\tcase\t_\t_\n26\tlast\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tyear\t_\tNOUN\tNN\t_\t29\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tresults\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n32\thalf\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n33\tabove\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthose\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tresults\t_\tNOUN\tNNS\t_\t32\tdep\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompanies\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n4\texpected\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\thave\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdown\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tquarter\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tHewlett-Packard\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tAmdahl\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tSun\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tMicrosystems\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tInc.\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n21\tgenerally\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n22\tsolid\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tperformers\t_\tNOUN\tNNS\t_\t12\tappos\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tpast\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tInternational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBusiness\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMachines\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t7\tnsubjpass\t_\t_\n5\talso\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\treport\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tdisappointing\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tresults\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tApple\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tmeanwhile\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tshow\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\timproved\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tearnings\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tperiod\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tended\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tSept\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcontradictory\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmessage\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tBusinessland\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tInc.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcomputer\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tretailer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tJuly\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n8\tbooming\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsales\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tpersonal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcomputers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tApple\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tIBM\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t19\taux\t_\t_\n19\tresulted\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n20\tin\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tnet\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tincome\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\tmore\t_\tADV\tRBR\t_\t25\tadvmod\t_\t_\n24\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n25\tdoubling\t_\tVERB\tVBG\t_\t19\tadvcl\t_\t_\n26\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tfourth\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tquarter\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tended\t_\tVERB\tVBN\t_\t29\tacl\t_\t_\n31\tJune\t_\tPROPN\tNNP\t_\t30\tnmod:tmod\t_\t_\n32\t30\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n33\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n34\t$\t_\tSYM\t$\t_\t25\tnmod\t_\t_\n35\t7.4\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\tmillion\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n38\tor\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n39\t23\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n40\tcents\t_\tNOUN\tNNS\t_\t34\tconj\t_\t_\n41\ta\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tshare\t_\tNOUN\tNN\t_\t40\tnmod:npmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tBusinessland\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n10\tresults\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfirst\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tended\t_\tVERB\tVBD\t_\t14\tacl\t_\t_\n16\tSept.\t_\tPROPN\tNNP\t_\t15\tnmod:tmod\t_\t_\n17\t30\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n20\tmet\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n21\texpectations\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\texpects\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tearnings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\t14\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tdep\t_\t_\n10\t17\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tdown\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t25\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tyear-earlier\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tperiod\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tearnings\t_\tNOUN\tNNS\t_\t4\tcompound\t_\t_\n4\tpicture\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tconfuses\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tobservers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tforces\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n12\texpected\t_\tVERB\tVBD\t_\t11\tacl\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tshape\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tindustry\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tcoming\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n21\tare\t_\tVERB\tVBP\t_\t22\tcop\t_\t_\n22\tclearer\t_\tADJ\tJJR\t_\t8\tccomp\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompanies\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\twar\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tstandards\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tcomputer\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tpublishing\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbattle\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tover\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttypefaces\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\thurting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tAdobe\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tSystems\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc.\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\twhich\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n16\tsells\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n17\tsoftware\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tcontrols\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\timage\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tproduced\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tprinters\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tdisplays\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tUntil\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\trecently\t_\tADV\tRB\t_\t5\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tAdobe\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlock\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\timage\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tsoftware\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n15\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n16\tlast\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tmonth\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n18\tApple\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tAdobe\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tbiggest\t_\tADJ\tJJS\t_\t23\tamod\t_\t_\n23\tcustomer\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n26\tMicrosoft\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n27\trebelled\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tfirms\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tcollaborating\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\talternative\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n11\tAdobe\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tapproach\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\tanalysts\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tsay\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n20\tlikely\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tcarry\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tIBM\t_\tPROPN\tNNP\t_\t22\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tbiggest\t_\tADJ\tJJS\t_\t27\tamod\t_\t_\n27\tseller\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tpersonal\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tcomputers\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n32\talong\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n33\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tthem\t_\tPRON\tPRP\t_\t32\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tshort-term\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\toutlook\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tAdobe\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tbusiness\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\thowever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tstrong\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tbeginning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tship\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tnew\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tsoftware\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tprogram\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubjpass\t_\t_\n12\t's\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tbeing\t_\tAUX\tVBG\t_\t14\tauxpass\t_\t_\n14\theralded\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tboon\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\towners\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tlow-end\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprinters\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tsold\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tApple\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprogram\t_\tNOUN\tNN\t_\t4\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\tauxpass\t_\t_\n4\taimed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\timproving\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tquality\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tprinted\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmaterial\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWarnock\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tAdobe\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n12\tMountain\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n13\tView\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n15\tCalif.\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\taux\t_\t_\n20\treceiving\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n21\t1,000\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tcalls\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tday\t_\tNOUN\tNN\t_\t22\tnmod:npmod\t_\t_\n25\tabout\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tproduct\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\tsince\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t31\tnsubjpass\t_\t_\n30\twas\t_\tAUX\tVBD\t_\t31\tauxpass\t_\t_\n31\tdemonstrated\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n32\tat\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tcomputer\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n35\tpublishing\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tconference\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\tseveral\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n38\tweeks\t_\tNOUN\tNNS\t_\t39\tnmod:npmod\t_\t_\n39\tago\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n3\tcompetition\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n4\tbetween\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tvarious\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\toperating\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsystems\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\tcontrol\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tbasic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tfunctions\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcomputer\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tspells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\ttrouble\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tsoftware\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tfirms\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tgenerally\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcreates\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n4\tuncertainty\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n6\tusually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tslows\t_\tVERB\tVBZ\t_\t3\tconj\t_\t_\n8\tdown\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tsales\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tRuss\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCrabs\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tanalyst\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n18\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tSoundview\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tFinancial\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tGroup\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCrabs\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t11\tnsubj\t_\t_\n5\tprobably\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n7\tbehind\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\texpected\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tweak\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tperformance\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tAldus\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tCorp.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tmaker\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\twidely\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tused\t_\tVERB\tVBN\t_\t23\tamod\t_\t_\n21\tcomputer\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n22\tpublishing\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tprogram\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tAldus\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\treport\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n6\tearnings\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t21\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\trevenues\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t19.5\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n23\tcompared\t_\tVERB\tVBN\t_\t25\tcase\t_\t_\n24\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tearnings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\t30\t_\tNUM\tCD\t_\t28\tnummod\t_\t_\n28\tcents\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\trevenue\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\t20.4\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tmillion\t_\tNUM\tCD\t_\t32\tnmod\t_\t_\n36\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\tyear-earlier\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tperiod\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAldus\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\treached\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\thand\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbattle\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbus\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t12\tauxpass\t_\t_\n12\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tgrow\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tincreasingly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tirrelevant\t_\tADJ\tJJ\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tbus\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tdata\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\thighway\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\twithin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcomputer\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tbacking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\ttype\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tbus\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tcalled\t_\tVERB\tVBD\t_\t5\tacl\t_\t_\n9\tmicrochannel\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\twhile\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tnine\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tleading\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tcomputer\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmakers\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tincluding\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n20\tH-P\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tCompaq\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tComputer\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tCorp.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\thave\t_\tAUX\tVBP\t_\t27\taux\t_\t_\n27\tchosen\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n28\tanother\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmethod\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tUsers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tcare\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tbus\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tDaniel\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBenton\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tanalyst\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n17\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tGoldman\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tSachs\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\t&\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n22\tCo\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tApple\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tfamily\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMacintosh\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tcomputers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tinstance\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tuses\t_\tVERB\tVBZ\t_\t2\tdep\t_\t_\n14\tfour\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tdifferent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbuses\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tno\t_\tDET\tDT\t_\t20\tneg\t_\t_\n20\tone\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tseems\t_\tVERB\tVBZ\t_\t13\tconj\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tmind\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgap\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tbetween\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\twinners\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tlaggards\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tgrow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tpersonal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tcomputers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tApple\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tCompaq\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\tIBM\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\ttighten\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\thold\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tbusiness\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tsecond-tier\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfirms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tlose\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tground\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlagging\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tcompetitors\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tmay\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tleave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tpersonal\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tcomputer\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbusiness\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\taltogether\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWyse\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tinstance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcandidate\t_\tNOUN\tNN\t_\t8\txcomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsell\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\ttroubled\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\toperation\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWyse\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tdone\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n5\twell\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\testablishing\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdistribution\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tdelivered\t_\tVERB\tVBN\t_\t4\tconj\t_\t_\n16\tproducts\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tsell\t_\tVERB\tVBP\t_\t16\tacl:relcl\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tKimball\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBrown\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tanalyst\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tPrudential-Bache\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tSecurities\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBrown\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\testimates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tWyse\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhose\t_\tPRON\tWP$\t_\t8\tnmod:poss\t_\t_\n7\tterminals\t_\tNOUN\tNNS\t_\t8\tcompound\t_\t_\n8\tbusiness\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\tstrong\t_\tADJ\tJJ\t_\t4\tacl:relcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\treport\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tloss\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t12\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcents\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n23\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\tended\t_\tVERB\tVBN\t_\t23\tacl\t_\t_\n25\tSept\t_\tPROPN\tNNP\t_\t24\tnmod:tmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPersonal-computer\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tmakers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\teat\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\taway\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbusiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tmore\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n13\ttraditional\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirms\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEver-more\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tpowerful\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tdesk-top\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcomputers\t_\tNOUN\tNNS\t_\t19\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tdesigned\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n7\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tone\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tmore\t_\tADJ\tJJR\t_\t8\tconj\t_\t_\n11\tmicroprocessors\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tbrains\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n18\tare\t_\tAUX\tVBP\t_\t19\tauxpass\t_\t_\n19\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n21\tincreasingly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\ttake\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n23\ton\t_\tADP\tRP\t_\t24\tdep\t_\t_\n24\tfunctions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tcarried\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n26\tout\t_\tADP\tRP\t_\t25\tcompound:prt\t_\t_\n27\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tmore\t_\tADV\tRBR\t_\t29\tadvmod\t_\t_\n29\texpensive\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tminicomputers\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tmainframes\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tguys\t_\tNOUN\tNNS\t_\t11\tnsubjpass\t_\t_\n4\tthat\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tmake\t_\tVERB\tVBP\t_\t3\tacl:relcl\t_\t_\n6\ttraditional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thardware\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n9\treally\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tbeing\t_\tAUX\tVBG\t_\t11\tauxpass\t_\t_\n11\tobsoleted\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n12\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tmicroprocessor-based\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmachines\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tMr.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tBenton\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tresult\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttrend\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n8\tlongtime\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tpowerhouses\t_\tNOUN\tNNS\t_\t10\tdep\t_\t_\n10\tH-P\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tIBM\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\tDigital\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tEquipment\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n18\tscrambling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tcounterattack\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n21\twith\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tmicroprocessor-based\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tsystems\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n26\town\t_\tADJ\tJJ\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tact\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tquickly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBenton\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tCompaq\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tunveil\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tfamily\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\thigh-end\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tpersonal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcomputers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\tlater\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tthis\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n16\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n18\tpowerful\t_\tADJ\tJJ\t_\t6\tdep\t_\t_\n19\tenough\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tserve\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n22\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\thub\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tcommunications\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\twithin\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tlarge\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tnetworks\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tdesk-top\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmachines\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\traft\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\ttargeted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tserver\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPopulation\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tDrain\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tEnds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tFor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tMidwestern\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tStates\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n\n1\tIOWA\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tIS\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tMAKING\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcomeback\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tIndiana\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tOhio\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n7\tMichigan\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpopulation\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tall\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfour\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tstates\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tupswing\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\taccording\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n13\tto\t_\tADP\tTO\t_\t12\tmwe\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tCensus\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tBureau\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\testimates\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tfollowing\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n20\tdeclines\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n21\tthroughout\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tearly\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\t1980s\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgains\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n9\trather\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tsmall\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIowa\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tinstance\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tsaw\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tpopulation\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tgrow\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t11,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpeople\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\t0.4\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\tbetween\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\t1987\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\t1988\t_\tNUM\tCD\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tCensus\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBureau\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tthat\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmodest\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\tgood\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tnews\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstate\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tgrown\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n17\tat\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tall\t_\tDET\tDT\t_\t16\tnmod\t_\t_\n19\tsince\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1981\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBetween\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\t1988\t_\tNUM\tCD\t_\t2\tconj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tNorth\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tDakota\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n8\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tonly\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tstate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tMidwest\t_\tADJ\tJJS\t_\t11\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tlose\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n17\tpopulation\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tloss\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t4,000\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tpeople\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSix\t_\tNUM\tCD\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\t12\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n5\tmidwestern\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tgrowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\tsteadily\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tsince\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1980\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n14\tIllinois\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tKansas\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n18\tMinnesota\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tMissouri\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n22\tSouth\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDakota\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n25\tWisconsin\t_\tPROPN\tNNP\t_\t14\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tNortheast\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\tholding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\town\t_\tADJ\tJJ\t_\t5\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tpopulation\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trace\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSeven\t_\tNUM\tCD\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tnine\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tstates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tgrown\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\teach\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\tsince\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1980\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tincluding\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tlost\t_\tVERB\tVBD\t_\t14\tacl:relcl\t_\t_\n18\t4\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\tpopulation\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\t1970s\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\talthough\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tPennsylvania\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tMassachusetts\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tsuffered\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n7\tslight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tdeclines\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tearlier\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdecade\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n16\tgrowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n17\tagain\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsame\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\ttime\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n6\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstates\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tSouth\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tWest\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\thave\t_\tAUX\tVBP\t_\t14\taux\t_\t_\n14\thad\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n16\town\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tpopulation\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tturnaround\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSeven\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tstates\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tgrew\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tearly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\t1980s\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tare\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n10\tnow\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tlosing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n12\tpopulation\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t11\tpunct\t_\t_\n14\tWest\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tVirginia\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tMississippi\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n19\tLouisiana\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tOklahoma\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\tMontana\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tWyoming\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n27\tAlaska\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOverall\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthough\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tSouth\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tWest\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\tstill\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\toutpace\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tNortheast\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tMidwest\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tfast-growing\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstates\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n19\tlike\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tFlorida\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tCalifornia\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\tensure\t_\tVERB\tVBP\t_\t10\tconj\t_\t_\n24\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tpattern\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n27\twill\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tcontinue\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tgap\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\tbetween\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tSun\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBelt\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tregions\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n12\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tclearly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tstarted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tnarrowing\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t3\tnsubj\t_\t_\n2\tElderly\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n3\tMaintain\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tTheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tIndependence\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n\n1\tTHANKS\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n2\tTO\t_\tADP\tTO\t_\t4\tcase\t_\t_\n3\tmodern\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmedicine\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tcouples\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tare\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tgrowing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n10\told\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n11\ttogether\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tafter\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tlosing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tspouse\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t13\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\telderly\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n12\tare\t_\tAUX\tVBP\t_\t13\taux\t_\t_\n13\tstaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tindependent\t_\tADJ\tJJ\t_\t13\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tCensus\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tBureau\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tstudy\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tnoninstitutionalized\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpopulation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tshows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n12\t64\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t21\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpeople\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\taged\t_\tVERB\tVBN\t_\t15\tamod\t_\t_\n17\t65\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tdep\t_\t_\n19\t74\t_\tNUM\tCD\t_\t16\tdep\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n21\tliving\t_\tVERB\tVBG\t_\t10\tccomp\t_\t_\n22\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tspouse\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\t1988\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n28\tup\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\t59\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t28\tnmod\t_\t_\n32\tin\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t1970\t_\tNUM\tCD\t_\t31\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\tdoes\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tmean\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t're\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n7\tless\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n8\tlikely\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tlive\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\talone\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshare\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tremained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tabout\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\t24\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t4\tnmod\t_\t_\n9\tsince\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1970\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tchanged\t_\tVERB\tVBN\t_\t4\tcsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t12\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tyoung\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\telderly\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tliving\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n13\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tspouses\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\trather\t_\tADV\tRB\t_\t14\tcc\t_\t_\n16\tthan\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tother\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trelatives\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tsuch\t_\tADJ\tJJ\t_\t23\tcase\t_\t_\n22\tas\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\tchildren\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1988\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\t10\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t12\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tthose\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n8\taged\t_\tVERB\tVBN\t_\t7\tamod\t_\t_\n9\t65\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n11\t74\t_\tNUM\tCD\t_\t8\tdep\t_\t_\n12\tlived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\trelatives\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n16\tthan\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tspouses\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t15\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1970\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tpeople\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tget\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n4\teven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tolder\t_\tADJ\tJJR\t_\t3\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t8\tnsubj\t_\t_\n8\tbecome\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\twidowed\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tamong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tthose\t_\tPRON\tDT\t_\t16\tnmod\t_\t_\n5\taged\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n6\t75\t_\tNUM\tCD\t_\t5\tdep\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tolder\t_\tADJ\tJJR\t_\t5\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n12\tliving\t_\tVERB\tVBG\t_\t11\tacl\t_\t_\n13\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tspouse\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tslightly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\t40\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t1988\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t38\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t16\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\t1970\t_\tNUM\tCD\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tLike\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tyounger\t_\tADJ\tJJR\t_\t4\tamod\t_\t_\n4\tcounterparts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tolder\t_\tADJ\tJJR\t_\t11\tnsubj\t_\t_\n8\telderly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n10\tless\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlive\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tother\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\trelatives\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tOnly\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t17\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tthose\t_\tPRON\tDT\t_\t3\tnmod\t_\t_\n6\taged\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n7\t75\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\tolder\t_\tADJ\tJJR\t_\t6\tconj\t_\t_\n10\tlived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\trelatives\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tspouses\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1988\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n19\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t26\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1970\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlikelihood\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n3\tof\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tliving\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n5\talone\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tbeyond\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tage\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t75\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tincreased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t40\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t32\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t12\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMore\t_\tADJ\tJJR\t_\t2\tamod\t_\t_\n2\tpeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tremaining\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tindependent\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\tlonger\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n7\tpresumably\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\tbetter\t_\tADJ\tJJR\t_\t4\tadvcl\t_\t_\n12\toff\t_\tADP\tRP\t_\t11\tdep\t_\t_\n13\tphysically\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tfinancially\t_\tADV\tRB\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCareers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tCount\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tMost\t_\tADV\tRBS\t_\t2\tadvmod\t_\t_\n4\tFor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tWell-to-Do\t_\tADJ\tJJ\t_\t2\tnmod\t_\t_\n\n1\tMANY\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tAFFLUENT\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tplace\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tpersonal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsuccess\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tabove\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tfamily\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tleast\t_\tADJ\tJJS\t_\t4\tadvcl\t_\t_\n3\tthat\t_\tADP\tIN\t_\t4\tnsubj\t_\t_\n4\t's\t_\tPART\tPOS\t_\t0\troot\t_\t_\n5\twhat\t_\tPRON\tWP\t_\t18\tdobj\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsurvey\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tErnst\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tYoung\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tYankelovich\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\tClancy\t_\tPROPN\tNNP\t_\t17\tappos\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n17\tShulman\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n18\tindicates\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTwo-thirds\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\trespondents\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tstrongly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tfelt\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tneed\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n12\tsuccessful\t_\tADJ\tJJ\t_\t9\tacl\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tjobs\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\twhile\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tfewer\t_\tADJ\tJJR\t_\t20\tadvmod\t_\t_\n19\tthan\t_\tADP\tIN\t_\t20\tadvmod\t_\t_\n20\thalf\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\tstrongly\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tfelt\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tneed\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tspend\t_\tVERB\tVB\t_\t26\tacl\t_\t_\n29\tmore\t_\tADJ\tJJR\t_\t30\tamod\t_\t_\n30\ttime\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n31\twith\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ttheir\t_\tPRON\tPRP$\t_\t33\tnmod:poss\t_\t_\n33\tfamilies\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBeing\t_\tVERB\tVBG\t_\t2\tcop\t_\t_\n2\tsuccessful\t_\tADJ\tJJ\t_\t13\tcsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tcareers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tspending\t_\tVERB\tVBG\t_\t2\tconj\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tmake\t_\tVERB\tVBP\t_\t8\tacl:relcl\t_\t_\n11\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n12\ttop\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpriorities\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tgroup\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tstudies\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\taffluent\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsurvey\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\texcluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tsuper-rich\t_\tADJ\tJJ\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAverage\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\thousehold\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tsample\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t194,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\taverage\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tnet\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tassets\t_\tNOUN\tNNS\t_\t16\tnsubjpass\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\tauxpass\t_\t_\n16\treported\t_\tVERB\tVBN\t_\t9\tconj\t_\t_\n17\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n19\t775,000\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tgoal\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlearn\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tone\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tfastest-growing\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tincome\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tgroups\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tupper-middle\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tclass\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlthough\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\trepresent\t_\tVERB\tVBP\t_\t12\tadvcl\t_\t_\n4\tonly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\t2\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpopulation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tcontrol\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n13\tnearly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tone-third\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tdiscretionary\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tincome\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAcross\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tboard\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tconsumers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tvalue\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tquality\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n10\tbuy\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n11\twhat\t_\tPRON\tWP\t_\t13\tdobj\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tlike\t_\tVERB\tVBP\t_\t10\tdobj\t_\t_\n14\trather\t_\tADV\tRB\t_\t13\tcc\t_\t_\n15\tthan\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n16\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t19\tdobj\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tneed\t_\tVERB\tVBP\t_\t13\tdep\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n22\tappreciate\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n23\tproducts\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n25\tare\t_\tVERB\tVBP\t_\t26\tcop\t_\t_\n26\tdistinctive\t_\tADJ\tJJ\t_\t23\tacl:relcl\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tconsiderable\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincomes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tassets\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n8\t40\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t18\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\trespondents\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tstudy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tdo\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n19\tfinancially\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tsecure\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n23\tone-fourth\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n24\tdo\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n25\tn't\t_\tPART\tRB\t_\t26\tneg\t_\t_\n26\tfeel\t_\tVERB\tVB\t_\t18\tconj\t_\t_\n27\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\thave\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n30\tmade\t_\tVERB\tVBN\t_\t26\tccomp\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t30\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tTwenty\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tpercent\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\teven\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n9\tfinancially\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\twell\t_\tADV\tRB\t_\t6\tccomp\t_\t_\n11\toff\t_\tADP\tRP\t_\t10\tdep\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\taffluent\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tcomfortable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tthemselves\t_\tPRON\tPRP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\teither\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t40\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t6\tnsubj\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tfeel\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\t're\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n9\tmore\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\table\t_\tADJ\tJJ\t_\t6\tccomp\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tothers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tWhile\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\ttwothirds\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfeel\t_\tVERB\tVBP\t_\t13\tadvcl\t_\t_\n4\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tguilt\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tabout\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tbeing\t_\tVERB\tVBG\t_\t8\tcop\t_\t_\n8\taffluent\t_\tNOUN\tNN\t_\t5\tacl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\t25\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t13\tnsubj\t_\t_\n13\tgive\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n14\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n15\t2,500\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n17\tmore\t_\tADJ\tJJR\t_\t13\tdobj\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\tcharity\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\teach\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThirty-five\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tpercent\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tattend\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\treligious\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tservices\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tregularly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsame\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t60\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tnsubj\t_\t_\n15\tfeel\t_\tVERB\tVBP\t_\t3\tparataxis\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tlife\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n19\tone\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\tsometimes\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\thas\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcompromise\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tone\t_\tPRON\tPRP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tprinciples\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOdds\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tEnds\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n\n1\tTHE\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tNUMBER\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\twomen\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tminorities\t_\tNOUN\tNNS\t_\t4\tconj\t_\t_\n7\twho\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\thold\t_\tVERB\tVBP\t_\t4\tacl:relcl\t_\t_\n9\tjobs\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ttop\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmanagement\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tnation\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tlargest\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\tbanks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n19\thas\t_\tAUX\tVBZ\t_\t22\taux\t_\t_\n20\tmore\t_\tADV\tRBR\t_\t22\tadvmod\t_\t_\n21\tthan\t_\tADP\tIN\t_\t20\tcase\t_\t_\n22\tdoubled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tsince\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1978\t_\tNUM\tCD\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tAmerican\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tBankers\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAssociation\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\twomen\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tmake\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\tup\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\t47\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tofficials\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tmanagers\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\ttop\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\t50\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n22\tup\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t33\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t22\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1978\t_\tNUM\tCD\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshare\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tminorities\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthose\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpositions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\trisen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\t16\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t12\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n16\t...\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPer-capita\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tpersonal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tgrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfaster\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tinflation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\taccording\t_\tVERB\tVBG\t_\t17\tcase\t_\t_\n15\tto\t_\tADP\tTO\t_\t14\tmwe\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tBureau\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tEconomic\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAnalysis\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tamount\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tincome\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\tdivvied\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\teach\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tman\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\twoman\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tchild\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t16,489\t_\tNUM\tCD\t_\t0\troot\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\t1988\t_\tNUM\tCD\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tup\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n21\t6.6\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t20\tnmod:npmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n25\t15,472\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1987\t_\tNUM\tCD\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tPer\t_\tADP\tIN\t_\t2\tdep\t_\t_\n2\tcapita\t_\tNOUN\tNN\t_\t4\tamod\t_\t_\n3\tpersonal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tincome\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tranged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t8\tdep\t_\t_\n8\t11,116\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tMississippi\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t13\tdep\t_\t_\n13\t23,059\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tConnecticut\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t...\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t23\tccomp\t_\t_\n3\t13.1\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tstudents\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tcollege\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tfall\t_\tNOUN\tNN\t_\t2\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\tup\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tnmod:npmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t1988\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tNational\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCenter\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tEducation\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tStatistics\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\testimates\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tAbout\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t54\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t5\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\twomen\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\t44\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t12\tnsubj\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n11\tpart-time\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstudents\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tsmall\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tDallas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tsuburb\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\t's\t_\tPART\tPOS\t_\t6\tauxpass\t_\t_\n6\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ttrouble\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTrouble\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tcapital\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tT\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n7\tthat\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n8\trhymes\t_\tVERB\tVBZ\t_\t1\tconj\t_\t_\n9\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tP\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n12\tthat\t_\tPRON\tDT\t_\t13\tnsubj\t_\t_\n13\tstands\t_\tVERB\tVBZ\t_\t1\tconj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpool\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMore\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n2\tthan\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\t30\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tyears\t_\tNOUN\tNNS\t_\t5\tnmod:npmod\t_\t_\n5\tago\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n7\tProf.\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tHarold\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tHill\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcon\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tman\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n14\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n15\tMeredith\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tWillson\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tThe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tMusic\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tMan\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n24\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tcitizens\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tRiver\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tCity\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\tIowa\t_\tPROPN\tNNP\t_\t29\tappos\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n33\tagainst\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tgame\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\tkindred\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tspirits\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tAddison\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\ttown\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcouncil\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tbarred\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\ttown\t_\tNOUN\tNN\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfanciest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\thotel\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tGrand\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tKempinski\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tfrom\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tinstalling\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n23\tthree\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n24\tfree\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tpool\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\ttables\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\tnew\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tlounge\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tMayor\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLynn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tSpruill\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tmembers\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcouncil\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n13\tworried\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n14\tabout\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tsetting\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tprecedent\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tpermit\t_\tVERB\tVB\t_\t17\tacl:relcl\t_\t_\n21\tpool\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\thalls\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\talong\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tAddison\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmain\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstreet\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmayor\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tadmonition\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tbears\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\trhythmic\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tresemblance\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tProf.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tHill\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\twarned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n21\talcohol\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tleads\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n23\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n24\tbetting\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\twhich\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\tleads\t_\tVERB\tVBZ\t_\t24\tacl:relcl\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\tfights\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcouncil\t_\tNOUN\tNN\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\taction\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n6\tyet\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tanother\t_\tDET\tDT\t_\t8\tamod\t_\t_\n8\tblow\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsport\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tthat\t_\tADP\tIN\t_\t15\tdobj\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tfans\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\tclaim\t_\tNOUN\tNN\t_\t11\tacl:relcl\t_\t_\n16\thas\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n17\tbeen\t_\tAUX\tVBN\t_\t18\tauxpass\t_\t_\n18\tmaligned\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n19\tunjustly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tyears\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tObviously\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\ttouch\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n8\twith\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n10\t's\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n11\tgoing\t_\tVERB\tVBG\t_\t7\tacl\t_\t_\n12\ton\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tTom\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tManske\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tvice\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpresident\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n21\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n23\tNational\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tPocket\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tBilliards\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tAssociation\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tPool\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\thot\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tChicago\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tinsists\t_\tVERB\tVBZ\t_\t6\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhere\t_\tADV\tWRB\t_\t21\tadvmod\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n15\tupscale\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tsuit-and-tie\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tplaces\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tadding\t_\tVERB\tVBG\t_\t6\tacl:relcl\t_\t_\n22\ttables\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tWith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\ttoday\t_\tNOUN\tNN\t_\t7\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttougher\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n5\tdrunk\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tdriving\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tlaws\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tadds\t_\tVERB\tVBZ\t_\t16\tparataxis\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tpeople\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n14\tdo\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\twant\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tjust\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tsit\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n20\taround\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n22\tdrink\t_\tVERB\tVB\t_\t19\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n\n1\tBesides\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\trowdy\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbehavior\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tunlikely\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tGrand\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tKempinski\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhere\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\trooms\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\taverage\t_\tVERB\tVBP\t_\t10\tacl:relcl\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t200\t_\tNUM\tCD\t_\t14\tdobj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tnight\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tcheap\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tmixed\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdrinks\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n24\tgo\t_\tVERB\tVBP\t_\t14\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t27\tdep\t_\t_\n27\t3.50\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tpop\t_\tNOUN\tNN\t_\t27\tnmod:npmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlounge\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tmanager\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tElizabeth\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tDyer\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n8\two\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tadmit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tpatrons\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tjeans\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tT-shirts\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n17\ttennis\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tshoes\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmajority\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tAddison\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tcouncil\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tbuy\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthose\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\targuments\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIntroducing\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n2\tpool\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n4\targued\t_\tVERB\tVBD\t_\t12\tparataxis\t_\t_\n5\tCouncilwoman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tRiley\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tReinker\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\tdangerous\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\twould\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\topen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcan\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tworms\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAddison\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t4\tcop\t_\t_\n3\tno\t_\tDET\tDT\t_\t4\tneg\t_\t_\n4\tstranger\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tcans\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tworms\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\teither\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAfter\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tprevious\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmayor\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcommitted\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n6\tsuicide\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tinvestigation\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\ttown\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tofficials\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\tregularly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tvoted\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n18\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\town\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tprojects\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n23\tgave\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n24\tspecial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tfavors\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tdeveloper\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tfriends\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n30\tdipped\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n31\tinto\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\ttown\t_\tNOUN\tNN\t_\t35\tnmod:poss\t_\t_\n34\t's\t_\tPART\tPOS\t_\t33\tcase\t_\t_\n35\tcoffers\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\tfor\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\ttrips\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tretreats\t_\tNOUN\tNNS\t_\t37\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\trevelations\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tembarrassed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ttown\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\talthough\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\targued\t_\tVERB\tVBD\t_\t3\tadvcl\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tproblems\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n13\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n14\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n15\tas\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tsevere\t_\tADJ\tJJ\t_\t9\tccomp\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmedia\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tsuggested\t_\tVERB\tVBD\t_\t16\tdep\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tpool\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tflap\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n4\tthere\t_\tPRON\tEX\t_\t5\texpl\t_\t_\n5\t's\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpeople\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n8\tworried\t_\tADJ\tJJ\t_\t7\tdep\t_\t_\n9\tabout\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tsomething\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tpretty\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tridiculous\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n15\tCouncilman\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tJohn\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tNolan\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t7\tnsubjpass\t_\t_\n5\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n6\tall\t_\tDET\tDT\t_\t7\tdep\t_\t_\n7\ttaken\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n8\tcare\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t7\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\t`\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tThe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tMusic\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tMan\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tonly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t28\tnsubj\t_\t_\n4\tRobert\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tGoldberg\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n6\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tpraise\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n8\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tCBS\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshow\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n14\tIsland\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSon\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n17\t-LRB-\t_\tPUNCT\t-LRB-\t_\t18\tpunct\t_\t_\n18\tLeisure\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n19\t&\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tArts\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\tSept.\t_\tPROPN\tNNP\t_\t18\tnmod:tmod\t_\t_\n23\t25\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n24\t-RRB-\t_\tPUNCT\t-RRB-\t_\t18\tpunct\t_\t_\n25\twas\t_\tVERB\tVBD\t_\t28\tcop\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tlocal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tcolor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n29\t;\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n30\tunfortunately\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n31\tneither\t_\tCONJ\tCC\t_\t32\tcc:preconj\t_\t_\n32\the\t_\tPRON\tPRP\t_\t40\tnsubj\t_\t_\n33\tnor\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tproducers\t_\tNOUN\tNNS\t_\t32\tconj\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tshow\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\thave\t_\tAUX\tVBP\t_\t40\taux\t_\t_\n40\tdone\t_\tVERB\tVBN\t_\t28\tparataxis\t_\t_\n41\ttheir\t_\tPRON\tPRP$\t_\t42\tnmod:poss\t_\t_\n42\thomework\t_\tNOUN\tNN\t_\t40\tdobj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n5\tHaole\t_\tX\tFW\t_\t14\tnsubj\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n8\twhite\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n11\tnot\t_\tPART\tRB\t_\t14\tneg\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tultimate\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinsult\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n17\tMainland\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\thaole\t_\tX\tFW\t_\t20\tnsubj\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t14\tparataxis\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tRichard\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tChamberlain\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdresses\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tMainland\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thaole\t_\tX\tFW\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n11\ttucking\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n12\tin\t_\tADP\tRP\t_\t11\tcompound:prt\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tHawaiian\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshirt\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n17\trolling\t_\tVERB\tVBG\t_\t11\tconj\t_\t_\n18\tup\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tlong\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tsleeves\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlocal\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\texpression\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tbrother\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n9\tbrah\t_\tX\tFW\t_\t14\tcompound\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n12\tnot\t_\tADV\tRB\t_\t14\tneg\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n14\tbruddah\t_\tX\tFW\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n2\teven\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n3\tif\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tnurse\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\twear\t_\tVERB\tVB\t_\t22\tadvcl\t_\t_\n8\tflowers\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ther\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\thair\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\twhile\t_\tNOUN\tNN\t_\t14\tdep\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tduty\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n16\tif\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tshe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n18\twere\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n19\tengaged\t_\tADJ\tJJ\t_\t22\tadvcl\t_\t_\n20\tshe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tknow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\twear\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthem\t_\tPRON\tPRP\t_\t24\tdobj\t_\t_\n26\tbehind\t_\tADP\tIN\t_\t33\tcase\t_\t_\n27\ther\t_\tPRON\tPRP\t_\t33\tdep\t_\t_\n28\tleft\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\tnot\t_\tADV\tRB\t_\t31\tneg\t_\t_\n31\tright\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tear\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tSorry\t_\tADJ\tJJ\t_\t8\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tshow\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n6\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\teven\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n11\tredeeming\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquality\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tgenuine\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tlocal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tcolor\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnita\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDavis\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tall\t_\tDET\tDT\t_\t5\tdet:predet\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tethnic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\ttensions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tAmerica\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tmost\t_\tADV\tRBS\t_\t13\tadvmod\t_\t_\n13\ttroublesome\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n14\tright\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tnow\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n16\t?\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tgood\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tbet\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n5\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttension\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tblacks\t_\tPROPN\tNNPS\t_\t7\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tJews\t_\tPROPN\tNNPS\t_\t9\tconj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCity\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOr\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tso\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tmust\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tJackie\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMason\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tveteran\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tJewish\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcomedian\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n14\tappearing\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n15\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tnew\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tABC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tsitcom\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tairing\t_\tNOUN\tNN\t_\t19\tdep\t_\t_\n21\ton\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tTuesday\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tnights\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n25\t9:30-10\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n26\tp.m.\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tEDT\t_\tPROPN\tNNP\t_\t20\tdep\t_\t_\n28\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNot\t_\tPART\tRB\t_\t2\tdep\t_\t_\n2\tonly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t18\tdep\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMason\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tstar\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n10\tChicken\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSoup\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n15\t's\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n16\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tinheritor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcomedic\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttradition\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tdating\t_\tVERB\tVBG\t_\t22\tacl\t_\t_\n24\tback\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t28\tpunct\t_\t_\n27\tDuck\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tSoup\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n32\the\t_\tPRON\tPRP\t_\t36\tnsubj\t_\t_\n33\t's\t_\tVERB\tVBZ\t_\t36\tcop\t_\t_\n34\tcurrently\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tman\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n37\tin\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\thot\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\twater\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tneutral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tlanguage\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tgist\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMason\t_\tPROPN\tNNP\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tremarks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tquoted\t_\tVERB\tVBN\t_\t14\tdep\t_\t_\n17\tfirst\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tVillage\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tVoice\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\twhile\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n23\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t27\tcop\t_\t_\n25\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tpaid\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tspokesman\t_\tNOUN\tNN\t_\t16\tadvcl\t_\t_\n28\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n30\tRudolph\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tGiuliani\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tmayoral\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tcampaign\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n36\tthen\t_\tADV\tRB\t_\t16\tconj\t_\t_\n37\tin\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tNewsweek\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n39\tafter\t_\tSCONJ\tIN\t_\t44\tmark\t_\t_\n40\the\t_\tPRON\tPRP\t_\t44\tnsubj\t_\t_\n41\tand\t_\tCONJ\tCC\t_\t40\tcc\t_\t_\n42\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n43\tcampaign\t_\tNOUN\tNN\t_\t40\tconj\t_\t_\n44\tparted\t_\tVERB\tVBD\t_\t36\tadvcl\t_\t_\n45\tcompany\t_\tNOUN\tNN\t_\t44\tdobj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMason\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tJewish\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tvoters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tfeel\t_\tVERB\tVBP\t_\t3\tccomp\t_\t_\n9\tguilty\t_\tADJ\tJJ\t_\t8\txcomp\t_\t_\n10\ttoward\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tblacks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tso\t_\tADP\tIN\t_\t8\tdep\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsupport\t_\tVERB\tVBP\t_\t8\tparataxis\t_\t_\n16\tblack\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcandidates\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tuncritically\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tblack\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tvoters\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tfeel\t_\tVERB\tVBP\t_\t2\tccomp\t_\t_\n8\tbitter\t_\tADJ\tJJ\t_\t7\txcomp\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tracial\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdiscrimination\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tso\t_\tADP\tIN\t_\t7\tdep\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\ttoo\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n18\tsupport\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n19\tblack\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tcandidates\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tuncritically\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tJews\t_\tPROPN\tNNPS\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tcontributed\t_\tVERB\tVBN\t_\t2\tccomp\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t6\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tblack\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcauses\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tover\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyears\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tvice\t_\tX\tFW\t_\t16\tcompound\t_\t_\n16\tversa\t_\tX\tFW\t_\t6\tadvcl\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMason\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\tdid\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tuse\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\tneutral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tlanguage\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAs\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpractitioner\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tethnic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\thumor\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\told\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdays\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tBorscht\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBelt\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tlive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\ttelevision\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnightclub\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcircuit\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMason\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n25\tinstinctively\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\treached\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tfor\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tvernacular\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tJews\t_\tPROPN\tNNPS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tsick\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomplexes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tcalled\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n14\tDavid\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tDinkins\t_\tPROPN\tNNP\t_\t26\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGiuliani\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tblack\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\topponent\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tfancy\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tshvartze\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n27\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmustache\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n31\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tMason\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tused\t_\tVERB\tVBN\t_\t30\tadvcl\t_\t_\n6\tless\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n7\tderogatory\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tlanguage\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tarticulate\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n11\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\tamateur\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tanalysis\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tvoting\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tbehavior\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n20\tfellow\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tYorkers\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n24\twould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\twater\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n27\tbe\t_\tVERB\tVB\t_\t30\tcop\t_\t_\n28\tquite\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n29\tso\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\thot\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n31\t?\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n2\tprobably\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n3\twould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n5\tbecause\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t19\tnsubj\t_\t_\n7\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tnone\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tpeople\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tupset\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n13\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMason\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tremarks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\tbothered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdistinguish\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tbetween\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsubstance\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\this\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n27\tcomments\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tfact\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n31\tthat\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\the\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n33\tused\t_\tVERB\tVBD\t_\t30\tccomp\t_\t_\n34\tinsulting\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tlanguage\t_\tNOUN\tNN\t_\t33\tdobj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tMr.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMason\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tcritics\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\timplied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\ttype\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tethnic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\thumor\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n19\titself\t_\tPRON\tPRP\t_\t21\tnmod:npmod\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tform\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tracism\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\texample\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tstate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcounsel\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tNAACP\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tMason\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n18\tlike\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdinosaur\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tPeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tfast\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tleaving\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplace\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\twhere\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n8\the\t_\tPRON\tPRP\t_\t10\tnsubjpass\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\tauxpass\t_\t_\n10\tstuck\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcritics\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tfail\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tdistinguish\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tbetween\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttype\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tethnic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\thumor\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n13\taims\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n14\tat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tdisparaging\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n16\tanother\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tgroup\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n19\tsuch\t_\tADJ\tJJ\t_\t23\tcase\t_\t_\n20\tas\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n22\tPolish\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tjokes\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\ttype\t_\tNOUN\tNN\t_\t8\tconj\t_\t_\n29\tthat\t_\tPRON\tWDT\t_\t31\tnsubj\t_\t_\n30\tis\t_\tVERB\tVBZ\t_\t31\tcop\t_\t_\n31\tdouble-edged\t_\tADJ\tJJ\t_\t28\tacl:relcl\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\taiming\t_\tVERB\tVBG\t_\t31\txcomp\t_\t_\n34\tinward\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n35\tas\t_\tADV\tRB\t_\t34\tcc\t_\t_\n36\twell\t_\tADV\tRB\t_\t35\tmwe\t_\t_\n37\tas\t_\tADP\tIN\t_\t35\tmwe\t_\t_\n38\toutward\t_\tADV\tRB\t_\t34\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tlatter\t_\tADJ\tJJ\t_\t6\tnsubj\t_\t_\n3\ttypically\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\thumor\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tunderdog\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubjpass\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tperfected\t_\tVERB\tVBN\t_\t6\tconj\t_\t_\n15\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tboth\t_\tDET\tDT\t_\t17\tcc:preconj\t_\t_\n17\tblacks\t_\tPROPN\tNNPS\t_\t14\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tJews\t_\tPROPN\tNNPS\t_\t17\tconj\t_\t_\n20\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tminstrel\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tvaudeville\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\tstage\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n26\tas\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmeans\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n29\tof\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n30\tmocking\t_\tVERB\tVBG\t_\t28\tacl\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n32\twhite\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t32\tcc\t_\t_\n34\tgentile\t_\tADJ\tJJ\t_\t32\tconj\t_\t_\n35\taudiences\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n36\talong\t_\tADP\tIN\t_\t35\tadvmod\t_\t_\n37\twith\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tthemselves\t_\tPRON\tPRP\t_\t36\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\thands\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tzealot\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tlike\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tLenny\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBruce\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tthis\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tdouble-edged\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tblade\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tcut\t_\tVERB\tVB\t_\t0\troot\t_\t_\n16\tboth\t_\tDET\tDT\t_\t18\tcc:preconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tself\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\taudience\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tribbons\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\twielded\t_\tVERB\tVBN\t_\t14\tadvcl\t_\t_\n3\tby\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tpro\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tJackie\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMason\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tconstructive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tform\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tmischief\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tconstructive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n3\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBecause\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n2\tdespite\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tall\t_\tDET\tPDT\t_\t6\tdet:predet\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmedia\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tprattle\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n7\tabout\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tcomedy\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpolitics\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tnot\t_\tADV\tRB\t_\t12\tneg\t_\t_\n12\tmixing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t16\tcop\t_\t_\n16\tsimilar\t_\tADJ\tJJ\t_\t23\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tone\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\trespect\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t:\t_\tPUNCT\t:\t_\t23\tpunct\t_\t_\n21\tBoth\t_\tDET\tDT\t_\t23\tnsubj\t_\t_\n22\tcan\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tserve\t_\tVERB\tVB\t_\t0\troot\t_\t_\n24\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tmechanisms\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tfor\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n27\teasing\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n28\ttensions\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n30\tfacilitating\t_\tVERB\tVBG\t_\t27\tconj\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tco-existence\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tgroups\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tconflict\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhy\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tdangerous\t_\tADJ\tJJ\t_\t2\tadvcl\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\thave\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\twell-intentioned\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tthought\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tpolice\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcollege\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcampuses\t_\tNOUN\tNNS\t_\t19\tdep\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\telsewhere\t_\tADV\tRB\t_\t15\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n19\ttaboo\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n20\tall\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcritical\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmention\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tgroup\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tdifferences\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tElizabeth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tKristol\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\twrote\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tTimes\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\tjust\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n11\tbefore\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tMason\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tdonnybrook\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n17\tPerhaps\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n18\tintolerance\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n19\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tnot\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tboil\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tover\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tsuch\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tintensity\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\tif\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\thonest\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdifferences\t_\tNOUN\tNNS\t_\t30\tnsubjpass\t_\t_\n29\twere\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tallowed\t_\tVERB\tVBN\t_\t21\tadvcl\t_\t_\n31\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n32\tsimmer\t_\tVERB\tVB\t_\t30\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tquestion\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tgroup\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tconflicts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tstill\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\texist\t_\tVERB\tVBP\t_\t35\tdep\t_\t_\n10\t-LRB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tundeniably\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tdo\t_\tVERB\tVBP\t_\t9\tparataxis\t_\t_\n15\t-RRB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\tif\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tMason\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\ttype\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tethnic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\thumor\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tis\t_\tVERB\tVBZ\t_\t27\tcop\t_\t_\n27\tpasse\t_\tADJ\tJJ\t_\t9\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n29\tthen\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n30\twhat\t_\tPRON\tWP\t_\t32\tdet\t_\t_\n31\tother\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmeans\t_\tNOUN\tNNS\t_\t35\tdobj\t_\t_\n33\tdo\t_\tAUX\tVBP\t_\t35\taux\t_\t_\n34\twe\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n35\thave\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n36\tfor\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n37\tletting\t_\tVERB\tVBG\t_\t35\tadvcl\t_\t_\n38\toff\t_\tADP\tRP\t_\t37\tcompound:prt\t_\t_\n39\tsteam\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n40\t?\t_\tPUNCT\t.\t_\t35\tpunct\t_\t_\n\n1\tDo\t_\tAUX\tVB\t_\t3\taux\t_\t_\n2\tn't\t_\tPART\tRB\t_\t3\tneg\t_\t_\n3\tsay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tTV\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tsitcom\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tthat\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n10\thappens\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tgenre\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n15\tthat\t_\tADP\tIN\t_\t28\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tdesperate\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tneed\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tattract\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\teverybody\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\toffend\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n26\tnobody\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n28\tresembles\t_\tVERB\tVBZ\t_\t14\tacl:relcl\t_\t_\n29\tpolitics\t_\tNOUN\tNNS\t_\t28\txcomp\t_\t_\n30\tmore\t_\tADV\tRBR\t_\t28\tadvmod\t_\t_\n31\tthan\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n33\tdoes\t_\tAUX\tVBZ\t_\t34\taux\t_\t_\n34\tcomedy\t_\tNOUN\tNN\t_\t30\tadvcl\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\ttrue\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbest\t_\tADJ\tJJS\t_\t7\tamod\t_\t_\n7\tsitcoms\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n9\tallow\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n10\tgroup\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdifferences\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tsimmer\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n14\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n15\tyuppies\t_\tNOUN\tNNS\t_\t3\tparataxis\t_\t_\n16\tvs.\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tblue-collar\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tBostonians\t_\tPROPN\tNNPS\t_\t15\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tCheers\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n24\tchildren\t_\tNOUN\tNNS\t_\t15\tdep\t_\t_\n25\tvs.\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tadults\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n29\tThe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tCosby\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tShow\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthese\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdifferences\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tmake\t_\tVERB\tVBP\t_\t6\tacl:relcl\t_\t_\n9\theadlines\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\tChicken\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tSoup\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tMason\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\tplays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tJackie\t_\tPROPN\tNNP\t_\t9\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tJewish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbachelor\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n15\tcourting\t_\tVERB\tVBG\t_\t14\tacl\t_\t_\n16\tMaddie\t_\tPROPN\tNNP\t_\t15\tdobj\t_\t_\n17\t-LRB-\t_\tPUNCT\t-LRB-\t_\t19\tpunct\t_\t_\n18\tLynn\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tRedgrave\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t19\tpunct\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n22\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tIrish\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\twidow\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tmother\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tthree\t_\tNUM\tCD\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n30\tagainst\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\twishes\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\this\t_\tPRON\tPRP$\t_\t35\tnmod:poss\t_\t_\n35\tmother\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t-LRB-\t_\tPUNCT\t-LRB-\t_\t38\tpunct\t_\t_\n37\tRita\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tKarin\t_\tPROPN\tNNP\t_\t35\tappos\t_\t_\n39\t-RRB-\t_\tPUNCT\t-RRB-\t_\t38\tpunct\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n41\ther\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n42\tbrother\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tMichael\t_\tPROPN\tNNP\t_\t35\tconj\t_\t_\n44\t-LRB-\t_\tPUNCT\t-LRB-\t_\t46\tpunct\t_\t_\n45\tBrandon\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tMaggart\t_\tPROPN\tNNP\t_\t43\tappos\t_\t_\n47\t-RRB-\t_\tPUNCT\t-RRB-\t_\t46\tpunct\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t3\tdep\t_\t_\n3\tworth\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tnoting\t_\tVERB\tVBG\t_\t3\tdep\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tboth\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tdisapproving\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trelatives\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t10\tcop\t_\t_\n10\timmigrants\t_\tNOUN\tNNS\t_\t3\tccomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tleast\t_\tADJ\tJJS\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tboth\t_\tDET\tDT\t_\t6\tdep\t_\t_\n6\tspeak\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\taccents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t12\tdep\t_\t_\n12\tdo\t_\tVERB\tVBP\t_\t6\tadvcl\t_\t_\n13\tJackie\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tMaddie\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n5\tmore\t_\tADV\tRBR\t_\t6\tadvmod\t_\t_\n6\tobvious\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n9\tChicken\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSoup\t_\tPROPN\tNNP\t_\t14\tnsubjpass\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tbeing\t_\tAUX\tVBG\t_\t14\tauxpass\t_\t_\n14\tmade\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\told\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\trecipe\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsafe\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tone\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n6\timagine\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tromance\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tquestion\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\twere\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tOrthodox\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tJew\t_\tPROPN\tNNP\t_\t6\tadvcl\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmember\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tNation\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tIslam\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBack\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n2\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\t1920s\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tplay\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tmovie\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n10\tversions\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tAbie\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tIrish\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tRose\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tmade\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\ttheme\t_\tNOUN\tNN\t_\t33\tnsubj\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcourtship\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tbetween\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tassimilated\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\toffspring\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tJewish\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tIrish\t_\tADJ\tJJ\t_\t28\tconj\t_\t_\n31\timmigrants\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\tso\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tpopular\t_\tADJ\tJJ\t_\t18\txcomp\t_\t_\n34\tthat\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n35\tits\t_\tPRON\tPRP$\t_\t36\tnmod:poss\t_\t_\n36\tauthor\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tAnne\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tNichols\t_\tPROPN\tNNP\t_\t36\tappos\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n41\tlost\t_\tVERB\tVBD\t_\t33\tccomp\t_\t_\n42\ta\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tplagiarism\t_\tNOUN\tNN\t_\t44\tcompound\t_\t_\n44\tsuit\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n45\ton\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tgrounds\t_\tNOUN\tNNS\t_\t41\tnmod\t_\t_\n48\tthat\t_\tSCONJ\tIN\t_\t52\tmark\t_\t_\n49\tthe\t_\tDET\tDT\t_\t50\tdet\t_\t_\n50\tplot\t_\tNOUN\tNN\t_\t52\tnsubj\t_\t_\n51\thas\t_\tAUX\tVBZ\t_\t52\taux\t_\t_\n52\tentered\t_\tVERB\tVBN\t_\t47\tccomp\t_\t_\n53\tthe\t_\tDET\tDT\t_\t55\tdet\t_\t_\n54\tpublic\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n55\tdomain\t_\tNOUN\tNN\t_\t52\tdobj\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tremained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tthere\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n7\tas\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n8\tevidenced\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\treappearance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\t1972\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n15\tCBS\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tsitcom\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tcalled\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tBridget\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n20\tLoves\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n21\tBernie\t_\tPROPN\tNNP\t_\t17\txcomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n24\twhose\t_\tPRON\tWP$\t_\t26\tnmod:poss\t_\t_\n25\tsole\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tdistinction\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\twas\t_\tVERB\tVBD\t_\t16\tacl:relcl\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n30\tled\t_\tVERB\tVBD\t_\t27\tccomp\t_\t_\n31\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\treal-life\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tmarriage\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tMeredith\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tBaxter\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n38\tand\t_\tCONJ\tCC\t_\t37\tcc\t_\t_\n39\tDavid\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tBirney\t_\tPROPN\tNNP\t_\t37\tconj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tClearly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tquestion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n5\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tChicken\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSoup\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tnot\t_\tPART\tRB\t_\t10\tneg\t_\t_\n12\twhether\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tpot\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\tboil\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n17\tover\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n19\tbut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n20\twhether\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n22\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tsimmer\t_\tVERB\tVB\t_\t16\tconj\t_\t_\n24\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tall\t_\tDET\tDT\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tSo\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbubbles\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tfew\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tfar\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tbetween\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tPart\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tproblem\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttendency\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tall\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsitcoms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tever\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n13\tsince\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tdidactic\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdays\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tNorman\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tLear\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tpreach\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n23\tabout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tsocial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tissues\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\textent\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttendency\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\temerges\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\twhenever\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshow\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\ttries\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tenlighten\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tus\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tethnic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tstereotypes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tby\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n19\treversing\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n20\tthem\t_\tPRON\tPRP\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tinstance\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tMichael\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tdislikes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tJackie\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n7\tnot\t_\tADV\tRB\t_\t14\tdep\t_\t_\n8\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n10\t's\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tshrewd\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tJewish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbusinessman\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tquits\t_\tVERB\tVBZ\t_\t14\tconj\t_\t_\n20\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n21\twell-paying\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tjob\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tsalesman\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\tin\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\torder\t_\tNOUN\tNN\t_\t26\tmwe\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tbecome\t_\tVERB\tVB\t_\t19\tadvcl\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tsocial\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tworker\t_\tNOUN\tNN\t_\t29\txcomp\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t3\tadvmod\t_\t_\n3\tproblematic\t_\tADJ\tJJ\t_\t4\tdep\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tincompatibility\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tsitcom\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tpreachiness\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tMr.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMason\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tcomic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpersona\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tmoments\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tshow\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\toccur\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tbeginning\t_\tNOUN\tNN\t_\t7\tadvcl\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tend\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n14\t-LRB-\t_\tPUNCT\t-LRB-\t_\t19\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n16\toccasionally\t_\tADV\tRB\t_\t19\tdep\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmiddle\t_\tNOUN\tNN\t_\t10\tdep\t_\t_\n20\t-RRB-\t_\tPUNCT\t-RRB-\t_\t19\tpunct\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\twhen\t_\tADV\tWRB\t_\t25\tadvmod\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tMason\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n25\tslips\t_\tVERB\tVBZ\t_\t19\tacl:relcl\t_\t_\n26\tinto\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t29\tnmod:poss\t_\t_\n28\tstandup\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tmode\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n31\tstarts\t_\tNOUN\tNNS\t_\t25\tconj\t_\t_\n32\tmeting\t_\tVERB\tVBG\t_\t31\txcomp\t_\t_\n33\tout\t_\tADP\tRP\t_\t32\tcompound:prt\t_\t_\n34\tthat\t_\tDET\tDT\t_\t37\tdet\t_\t_\n35\told-fashioned\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n36\tJewish\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tmischief\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n38\tto\t_\tADP\tTO\t_\t40\tcase\t_\t_\n39\tother\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tpeople\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n41\tas\t_\tADV\tRB\t_\t40\tcc\t_\t_\n42\twell\t_\tADV\tRB\t_\t41\tmwe\t_\t_\n43\tas\t_\tADP\tIN\t_\t41\tmwe\t_\t_\n44\tto\t_\tADP\tTO\t_\t45\tcase\t_\t_\n45\thimself\t_\tPRON\tPRP\t_\t40\tconj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\ttoo\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\toften\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\troutines\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tlack\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tspark\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n10\tthis\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsitcom\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tlike\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tsitcoms\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n18\ttimid\t_\tADJ\tJJ\t_\t7\tadvcl\t_\t_\n19\tabout\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\tconfronting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tMason\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\ttrade\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\t-\t_\tPUNCT\t:\t_\t24\tpunct\t_\t_\n28\tethnic\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tdifferences\t_\tNOUN\tNNS\t_\t24\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\t'm\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tnot\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tsuggesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tproducers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tstart\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n9\tputting\t_\tVERB\tVBG\t_\t8\txcomp\t_\t_\n10\ttogether\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tepisodes\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\tabout\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttopics\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\tlike\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tCatholic-Jewish\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tdispute\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tover\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tCarmelite\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tconvent\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tAuschwitz\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThat\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissue\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tlike\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tracial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\ttensions\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCity\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcool\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tdown\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n18\tnot\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\theat\t_\tVERB\tVB\t_\t15\tdep\t_\t_\n20\tup\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n22\tbefore\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n24\tcan\t_\tAUX\tMD\t_\t25\taux\t_\t_\n25\tsimmer\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tam\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tsuggesting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthey\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tstop\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n8\trequiring\t_\tVERB\tVBG\t_\t7\txcomp\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMason\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tinterrupt\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tclassic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tshtik\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\twith\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tsome\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tline\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tabout\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tcaring\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tother\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tpeople\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n27\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n28\tsound\t_\tVERB\tVB\t_\t18\tacl:relcl\t_\t_\n29\tshmaltzy\t_\tNOUN\tNN\t_\t28\txcomp\t_\t_\n30\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tlips\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tMiss\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tAmerica\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tage\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tJackie\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tought\t_\tAUX\tMD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tknow\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tyou\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\tca\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n16\tsoup\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\twithout\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tturning\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n19\tup\t_\tADP\tRP\t_\t18\tcompound:prt\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tflame\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tofficial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n3\tWhite\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tHouse\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\treaction\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\t60-year\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\thistory\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tcalm\t_\tADJ\tJJ\t_\t15\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n19\tright\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n20\tup\t_\tADP\tIN\t_\t19\tcase\t_\t_\n21\tthrough\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tFriday\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tTreasury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tSecretary\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tNicholas\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBrady\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tstatement\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:tmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tstock-market\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tdecline\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n15\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tsignal\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n18\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tfundamental\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tchange\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcondition\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\teconomy\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\teconomy\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tadded\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\twell-balanced\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\toutlook\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n16\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tcontinued\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tmoderate\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tgrowth\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tSound\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tfamiliar\t_\tADJ\tJJ\t_\t1\txcomp\t_\t_\n3\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t16\tdep\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t6\tdobj\t_\t_\n4\tRonald\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tReagan\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t2\tdep\t_\t_\n7\tafter\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t1987\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcrash\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t16\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n13\tThe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tunderlying\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\tsound\t_\tADJ\tJJ\t_\t16\txcomp\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tnothing\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n4\twrong\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teconomy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t...\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\tall\t_\tDET\tPDT\t_\t11\tdet:predet\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tindices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t2\tparataxis\t_\t_\n13\tup\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHeard\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n2\tthat\t_\tPRON\tDT\t_\t1\tdobj\t_\t_\n3\tbefore\t_\tADV\tRB\t_\t1\tadvmod\t_\t_\n4\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\t1929\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tcrash\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tHerbert\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tHoover\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n11\tThe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfundamental\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbusiness\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcountry\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t...\t_\tPUNCT\t:\t_\t24\tpunct\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n19\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tsound\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tprosperous\t_\tADJ\tJJ\t_\t21\tconj\t_\t_\n24\tbasis\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRobinson\t_\tPROPN\tNNP\t_\t9\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\t57\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tyears\t_\tNOUN\tNNS\t_\t6\tnmod:npmod\t_\t_\n6\told\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\telected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\texecutive\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tofficer\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthis\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tmaker\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tmagnetic\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\trecording\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\theads\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tdisk\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tdrives\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tVERB\tVBN\t_\t4\tcop\t_\t_\n4\tpresident\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tchief\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\texecutive\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tofficer\t_\tNOUN\tNN\t_\t4\tconj\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tAmperex\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tElectronics\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdivision\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tNorth\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tAmerican\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tPhilips\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\titself\t_\tPRON\tPRP\t_\t20\tappos\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsubsidiary\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tN.V\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n28\tPhilips\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tNetherlands\t_\tPROPN\tNNPS\t_\t28\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCharles\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tJ.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tLawson\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tJr.\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t68\t_\tNUM\tCD\t_\t4\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\twho\t_\tPRON\tWP\t_\t13\tnsubj\t_\t_\n9\thad\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n10\tbeen\t_\tVERB\tVBN\t_\t13\tcop\t_\t_\n11\tacting\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tchief\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\texecutive\t_\tNOUN\tNN\t_\t4\tacl:relcl\t_\t_\n14\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJune\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t14\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\twill\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tchairman\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tformer\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tpresident\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tchief\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\texecutive\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n8\tEric\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tW.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMarkrud\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tresigned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tJune\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecision\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tapprove\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tbare-bones\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdeficit-reduction\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbill\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\twithout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tcapital-gains\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n14\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tcut\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tstill\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tleaves\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\topen\t_\tADJ\tJJ\t_\t17\txcomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tpossibility\t_\tNOUN\tNN\t_\t18\tdep\t_\t_\n21\tof\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n22\tenacting\t_\tVERB\tVBG\t_\t20\tacl\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tgains\t_\tNOUN\tNNS\t_\t26\tcompound\t_\t_\n25\ttax\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\treduction\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\tthis\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t22\tnmod:tmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tLate\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tnight\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tSenate\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tvoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t87-7\t_\tNUM\tCD\t_\t7\tadvmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tapprove\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\testimated\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n13\t$\t_\tSYM\t$\t_\t16\tamod\t_\t_\n14\t13.5\t_\tNUM\tCD\t_\t15\tcompound\t_\t_\n15\tbillion\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n16\tmeasure\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t20\tnsubjpass\t_\t_\n18\thad\t_\tAUX\tVBD\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\tauxpass\t_\t_\n20\tstripped\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\thundreds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tprovisions\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\thave\t_\tAUX\tVB\t_\t28\taux\t_\t_\n28\twidened\t_\tVERB\tVBN\t_\t22\tacl:relcl\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\trather\t_\tADV\tRB\t_\t28\tcc\t_\t_\n31\tthan\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\tnarrowed\t_\tVERB\tVBN\t_\t28\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n34\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n35\tfederal\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n36\tbudget\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tdeficit\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLawmakers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tdrastically\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tstreamlined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbill\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tblunt\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n8\tcriticism\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n12\tbloated\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tspecial-interest\t_\tNOUN\tNN\t_\t16\tdep\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbreaks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tspending\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tincreases\t_\tNOUN\tNNS\t_\t16\tconj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\tputting\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdeficit-reduction\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcategory\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tof\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n13\tbeing\t_\tVERB\tVBG\t_\t16\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tdeficit-reduction\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbill\t_\tNOUN\tNN\t_\t11\tacl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tSenate\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n21\tBudget\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tCommittee\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tChairman\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tJames\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tSasser\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tD.\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tTenn\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n31\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tsupporters\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttrimmer\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tlegislation\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n10\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbills\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n13\tsoon\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tmoving\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tCongress\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\tcould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tcarry\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n21\tsome\t_\tDET\tDT\t_\t20\tdobj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tmeasures\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubjpass\t_\t_\n26\thad\t_\tAUX\tVBD\t_\t28\taux\t_\t_\n27\tbeen\t_\tAUX\tVBN\t_\t28\tauxpass\t_\t_\n28\tcast\t_\tVERB\tVBN\t_\t24\tacl:relcl\t_\t_\n29\taside\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n31\tincluding\t_\tVERB\tVBG\t_\t35\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tcapital-gains\t_\tNOUN\tNNS\t_\t35\tcompound\t_\t_\n34\ttax\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tcut\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tcompanion\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tdeficit-reduction\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n8\talready\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tpassed\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tHouse\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcapital-gains\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n16\tprovision\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tHouse-Senate\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tnegotiations\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tbegin\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tmidweek\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n10\tlast\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\twhile\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tNo\t_\tDET\tDT\t_\t3\tneg\t_\t_\n3\tone\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tpredict\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n6\texactly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\twhat\t_\tPRON\tWP\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\thappen\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tHouse\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tside\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tSenate\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tMinority\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tLeader\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tRobert\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tDole\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n22\t-LRB-\t_\tPUNCT\t-LRB-\t_\t23\tpunct\t_\t_\n23\tR.\t_\tPROPN\tNNP\t_\t21\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tKan\t_\tPROPN\tNNP\t_\t23\tdep\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n27\t-RRB-\t_\tPUNCT\t-RRB-\t_\t23\tpunct\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tadded\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tbelieve\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tRepublicans\t_\tPROPN\tNNPS\t_\t13\tnsubj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tDemocrats\t_\tPROPN\tNNPS\t_\t9\tconj\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\twork\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n14\ttogether\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\tcapital-gains\t_\tNOUN\tNNS\t_\t18\tcompound\t_\t_\n18\treform\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tWhite\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tBudget\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tDirector\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tRichard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tDarman\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\treporters\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tyesterday\t_\tADV\tRB\t_\t7\tnmod:tmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tadministration\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tpush\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tkeep\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tcapital-gains\t_\tNOUN\tNNS\t_\t20\tcompound\t_\t_\n20\tcut\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tfinal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tversion\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbill\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tneed\t_\tVERB\tVB\t_\t17\tccomp\t_\t_\n6\tthis\t_\tPRON\tDT\t_\t5\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tway\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tget\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tcapital\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tgains\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tBudget\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tCommittee\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tChairman\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tLeon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tPanetta\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n8\tD.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tCalif\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n12\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tinterview\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n19\tIf\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tthat\t_\tPRON\tDT\t_\t23\tnsubj\t_\t_\n21\t's\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tsignal\t_\tNOUN\tNN\t_\t33\tadvcl\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n25\tcomes\t_\tVERB\tVBZ\t_\t23\tacl:relcl\t_\t_\n26\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tWhite\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tHouse\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t33\tnsubj\t_\t_\n32\twill\t_\tAUX\tMD\t_\t33\taux\t_\t_\n33\thelp\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n34\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\tgreat\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tdeal\t_\tNOUN\tNN\t_\t33\tnmod:npmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tdecision\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsetback\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBush\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n12\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t7\tconj\t_\t_\n14\tapproval\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tcapital-gains\t_\tNOUN\tNNS\t_\t19\tcompound\t_\t_\n18\ttax\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcut\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tless\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n21\tcertain\t_\tADJ\tJJ\t_\t13\txcomp\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOpponents\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcut\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tplaying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n7\thardball\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSenate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tMajority\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLeader\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tGeorge\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tMitchell\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n7\tD.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tMaine\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tconfident\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n18\tany\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tHouse-Senate\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tagreement\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n21\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tdeficit-reduction\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tlegislation\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n26\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n27\tinclude\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n28\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tcapital-gains\t_\tNOUN\tNNS\t_\t31\tcompound\t_\t_\n30\ttax\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tcut\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsenior\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\taide\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n5\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tHouse\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tWays\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tMeans\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCommittee\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\twhere\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n14\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tlegislation\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\toriginates\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\tare\t_\tVERB\tVBP\t_\t18\tccomp\t_\t_\n21\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n22\tany\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n24\tplans\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tproduce\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tanother\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\ttax\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tbill\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\tthat\t_\tPRON\tWDT\t_\t32\tnsubj\t_\t_\n31\tcould\t_\tAUX\tMD\t_\t32\taux\t_\t_\n32\tcarry\t_\tVERB\tVB\t_\t29\tacl:relcl\t_\t_\n33\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n34\tgains\t_\tNOUN\tNNS\t_\t36\tcompound\t_\t_\n35\ttax\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tcut\t_\tNOUN\tNN\t_\t32\tdobj\t_\t_\n37\tthis\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tyear\t_\tNOUN\tNN\t_\t26\tnmod:tmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tobvious\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tplace\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tattach\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tcapital-gains\t_\tNOUN\tNNS\t_\t9\tcompound\t_\t_\n8\ttax\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tcut\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tperhaps\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tpopular\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\titems\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n16\tstripped\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tdeficit-reduction\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tbill\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tlegislation\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\traise\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tfederal\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\tborrowing\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tlimit\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tlegislation\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tmust\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tenacted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmonth\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tbill\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tpared\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tattempt\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tspeed\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tdeficit-reduction\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tthrough\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tCongress\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBecause\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlegislation\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\tauxpass\t_\t_\n7\tcompleted\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tPresident\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tBush\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\tuntil\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tmidnight\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n14\ttonight\t_\tNOUN\tNN\t_\t13\tnmod:tmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tenact\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n17\tacross-the-board\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tspending\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcuts\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\tmandated\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n21\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tGramm-Rudman\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tdeficit-reduction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tlaw\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSenators\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tneed\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tavoid\t_\tVERB\tVB\t_\t5\tacl\t_\t_\n8\tthose\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcuts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\tpressure\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tHouse\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tagree\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tstreamlined\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbill\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tHouse\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tappears\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\treluctant\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tjoin\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsenators\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tkey\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\twhether\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n5\tHouse\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tRepublicans\t_\tPROPN\tNNPS\t_\t8\tnsubj\t_\t_\n7\tare\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n8\twilling\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tacquiesce\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tSenate\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tcolleagues\t_\tNOUN\tNNS\t_\t16\tnmod:poss\t_\t_\n15\t'\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tdecision\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tdrop\t_\tVERB\tVB\t_\t16\tacl\t_\t_\n19\tmany\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tpet\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tprovisions\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tAlthough\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubjpass\t_\t_\n4\tam\t_\tAUX\tVBP\t_\t5\tauxpass\t_\t_\n5\tencouraged\t_\tVERB\tVBN\t_\t33\tadvcl\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tSenate\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\taction\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t33\tparataxis\t_\t_\n13\tChairman\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tDan\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tRostenkowski\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n16\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n17\tD.\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tIll\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tHouse\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWays\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tMeans\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCommittee\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n32\tis\t_\tVERB\tVBZ\t_\t33\tcop\t_\t_\n33\tuncertain\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n34\twhether\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tclean\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tbill\t_\tNOUN\tNN\t_\t40\tnsubjpass\t_\t_\n38\tcan\t_\tAUX\tMD\t_\t40\taux\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tachieved\t_\tVERB\tVBN\t_\t33\tccomp\t_\t_\n41\tin\t_\tADP\tIN\t_\t44\tcase\t_\t_\n42\tthe\t_\tDET\tDT\t_\t44\tdet\t_\t_\n43\tupcoming\t_\tADJ\tJJ\t_\t44\tamod\t_\t_\n44\tconference\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n45\twith\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tSenate\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n49\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tquestion\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\thovering\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tover\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdebate\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t12\tdobj\t_\t_\n10\tPresident\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tBush\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tthinks\t_\tVERB\tVBZ\t_\t8\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tbeen\t_\tAUX\tVBN\t_\t4\taux\t_\t_\n4\tresisting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstripped-down\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbill\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\twithout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tguaranteed\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tvote\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n14\tcapital-gains\t_\tNOUN\tNNS\t_\t16\tcompound\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tcut\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tRepublican\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsenators\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaw\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tno\t_\tDET\tDT\t_\t6\tneg\t_\t_\n6\tway\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tovercome\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tprocedural\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\thurdle\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\tgarner\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\t60\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tvotes\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tneeded\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\twin\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcapital-gains\t_\tNOUN\tNNS\t_\t22\tcompound\t_\t_\n22\tissue\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tfloor\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n27\tso\t_\tADP\tIN\t_\t4\tdep\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\twent\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n30\tahead\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\twith\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tstreamlined\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tbill\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tbill\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tstripped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n7\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n8\tpopular\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\tthough\t_\tADP\tIN\t_\t11\tdep\t_\t_\n11\trevenue-losing\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tprovisions\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnumber\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t16\tnmod\t_\t_\n19\tare\t_\tAUX\tVBP\t_\t20\tauxpass\t_\t_\n20\tincluded\t_\tVERB\tVBN\t_\t13\tacl:relcl\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tHouse-passed\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tbill\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tchild-care\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tinitiative\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\textensions\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tsoon-to-expire\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\ttax\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tbreaks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tlow-income\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thousing\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tresearch-and-development\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\texpenditures\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tmissing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tSenate\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tbill\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t2\taux\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tHouse\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\trepeal\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlaw\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcalled\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n17\tSection\t_\tPROPN\tNNP\t_\t16\txcomp\t_\t_\n18\t89\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n20\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\tcompels\t_\tVERB\tVBZ\t_\t14\tacl:relcl\t_\t_\n22\tcompanies\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tgive\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n25\trank-and-file\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tworkers\t_\tNOUN\tNNS\t_\t24\tiobj\t_\t_\n27\tcomparable\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\thealth\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tbenefits\t_\tNOUN\tNNS\t_\t24\tdobj\t_\t_\n30\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n31\ttop\t_\tADJ\tJJ\t_\t32\tdep\t_\t_\n32\tpaid\t_\tVERB\tVBN\t_\t33\tamod\t_\t_\n33\texecutives\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\thigh-profile\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprovision\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n4\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n6\toriginally\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tSenate\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbill\t_\tNOUN\tNN\t_\t3\tacl:relcl\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\tcut\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n14\tout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tbecause\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tlost\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n18\tmoney\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n19\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tproposal\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n22\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tChairman\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tLloyd\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tBentsen\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n26\t-LRB-\t_\tPUNCT\t-LRB-\t_\t27\tpunct\t_\t_\n27\tD.\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tTexas\t_\tPROPN\tNNP\t_\t27\tdep\t_\t_\n30\t-RRB-\t_\tPUNCT\t-RRB-\t_\t27\tpunct\t_\t_\n31\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tSenate\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\tFinance\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tCommittee\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\texpand\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tdeduction\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n40\tfor\t_\tADP\tIN\t_\t43\tcase\t_\t_\n41\tindividual\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n42\tretirement\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\taccounts\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBentsen\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\thopes\t_\tVERB\tVBZ\t_\t3\tccomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tSenate\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\tconsider\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tthat\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmeasure\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tsoon\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdelight\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdoctors\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbill\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tplan\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tpassed\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tFinance\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tCommittee\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n19\twould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\thave\t_\tAUX\tVB\t_\t21\taux\t_\t_\n21\toverhauled\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tentire\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tphysician-reimbursement\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tsystem\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n26\tunder\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tMedicare\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tTo\t_\tADP\tTO\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdetriment\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tlow-income\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpeople\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n9\tefforts\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tboost\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\tMedicaid\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tfunding\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tespecially\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\trural\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tareas\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n20\talso\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\twere\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\tstricken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t25\tadvcl\t_\t_\n2\twhy\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n3\tsenators\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tgiving\t_\tVERB\tVBG\t_\t1\tccomp\t_\t_\n6\tup\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tmuch\t_\tADJ\tJJ\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tMexico\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tSen.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tPete\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDomenici\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tranking\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tRepublican\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n19\ton\t_\tADP\tIN\t_\t23\tamod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tSenate\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tBudget\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tCommittee\t_\tPROPN\tNNP\t_\t18\tdep\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n28\tWe\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\t're\t_\tAUX\tVBP\t_\t30\taux\t_\t_\n30\tlooking\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n31\tlike\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tidiots\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThings\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\thad\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n3\tjust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tgone\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\ttoo\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tfar\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tSen.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDole\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmove\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\trequired\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n8\tsacrifice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tevery\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tsenator\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tworked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tothers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t2\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tbecause\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n8\tthere\t_\tPRON\tEX\t_\t9\texpl\t_\t_\n9\twere\t_\tVERB\tVBD\t_\t2\tadvcl\t_\t_\n10\tno\t_\tDET\tDT\t_\t11\tneg\t_\t_\n11\texceptions\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n12\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n13\tall\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\trevenue-losing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprovisions\t_\tNOUN\tNNS\t_\t17\tnsubjpass\t_\t_\n16\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tstricken\t_\tVERB\tVBN\t_\t9\tparataxis\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tSenate\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplan\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\tFinance\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCommittee\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\thave\t_\tAUX\tVB\t_\t14\taux\t_\t_\n14\tincreased\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tincome\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tthreshold\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tbeyond\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t22\tnmod\t_\t_\n20\tsenior\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcitizens\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n22\thave\t_\tVERB\tVBP\t_\t17\tacl:relcl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tSocial\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tSecurity\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tbenefits\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n27\treduced\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tbill\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplan\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmake\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tpermanent\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\t3\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t16\tamod\t_\t_\n15\texcise\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\ttax\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n17\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tlong-distance\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\ttelephone\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tcalls\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tno\t_\tADV\tRB\t_\t3\tneg\t_\t_\n3\tlonger\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n4\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tplan\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\thave\t_\tAUX\tVB\t_\t10\taux\t_\t_\n10\trepealed\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n11\twhat\t_\tPRON\tWP\t_\t12\tnsubj\t_\t_\n12\tremains\t_\tVERB\tVBZ\t_\t10\tccomp\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcompleted-contract\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmethod\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\taccounting\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubjpass\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n22\tused\t_\tVERB\tVBN\t_\t16\tacl:relcl\t_\t_\n23\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tmilitary\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tcontractors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\treduce\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n28\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n29\ttax\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tburden\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tdrops\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprovision\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n7\twould\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\thave\t_\tAUX\tVB\t_\t9\taux\t_\t_\n9\tpermitted\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n10\tcorporations\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tuse\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n13\texcess\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tpension\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfunds\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tpay\t_\tVERB\tVB\t_\t12\tadvcl\t_\t_\n18\thealth\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tbenefits\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tcurrent\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tretirees\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAlso\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tstricken\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t2\tauxpass\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tfivefold\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tincrease\t_\tNOUN\tNN\t_\t2\tnsubjpass\t_\t_\n7\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tmaximum\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tOccupational\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tSafety\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tHealth\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tAdministration\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tpenalties\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\thave\t_\tAUX\tVB\t_\t20\taux\t_\t_\n20\traised\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n21\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n22\t65\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tfiscal\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\t1990\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprovision\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\thave\t_\tAUX\tVB\t_\t6\taux\t_\t_\n6\tmade\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tSocial\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSecurity\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAdministration\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n11\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tindependent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tagency\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n14\twas\t_\tAUX\tVBD\t_\t15\tauxpass\t_\t_\n15\texcised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tapproval\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tSenate\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tbill\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tespecially\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsweet\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tSen.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tMitchell\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twho\t_\tPRON\tWP\t_\t16\tnsubj\t_\t_\n15\thad\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\tproposed\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tstreamlining\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMitchell\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\trelations\t_\tNOUN\tNNS\t_\t25\tnsubjpass\t_\t_\n5\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tBudget\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tDirector\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tDarman\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n11\tpushed\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n12\tfor\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcapital-gains\t_\tNOUN\tNNS\t_\t15\tcompound\t_\t_\n15\tcut\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n16\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\tadded\t_\tVERB\tVBN\t_\t11\tadvcl\t_\t_\n19\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmeasure\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n23\thave\t_\tAUX\tVBP\t_\t25\taux\t_\t_\n24\tbeen\t_\tAUX\tVBN\t_\t25\tauxpass\t_\t_\n25\tstrained\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n26\tsince\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tDarman\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n29\tchose\t_\tVERB\tVBD\t_\t25\tadvcl\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tbypass\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tMaine\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tDemocrat\t_\tPROPN\tNNP\t_\t31\tdobj\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n36\tdeal\t_\tVERB\tVB\t_\t31\tconj\t_\t_\n37\twith\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tother\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tlawmakers\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n40\tearlier\t_\tADV\tRBR\t_\t42\tadvmod\t_\t_\n41\tthis\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tyear\t_\tNOUN\tNN\t_\t29\tnmod:tmod\t_\t_\n43\tduring\t_\tADP\tIN\t_\t45\tcase\t_\t_\n44\ta\t_\tDET\tDT\t_\t45\tdet\t_\t_\n45\tdispute\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n46\tover\t_\tADP\tIN\t_\t48\tcase\t_\t_\n47\tdrug\t_\tNOUN\tNN\t_\t48\tcompound\t_\t_\n48\tfunding\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n49\tin\t_\tADP\tIN\t_\t55\tcase\t_\t_\n50\tthe\t_\tDET\tDT\t_\t55\tdet\t_\t_\n51\tfiscal\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n52\t1989\t_\tNUM\tCD\t_\t55\tnummod\t_\t_\n53\tsupplemental\t_\tADJ\tJJ\t_\t55\tamod\t_\t_\n54\tspending\t_\tNOUN\tNN\t_\t55\tcompound\t_\t_\n55\tbill\t_\tNOUN\tNN\t_\t48\tnmod\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tdeficit\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n3\treduction\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbill\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tcontains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\t$\t_\tSYM\t$\t_\t5\tdobj\t_\t_\n7\t5.3\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ttax\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tincreases\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tfiscal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\t1990\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\t$\t_\tSYM\t$\t_\t6\tconj\t_\t_\n18\t26\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\tbillion\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tfive\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tyears\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trevenue-raising\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprovisions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\taffect\t_\tVERB\tVBP\t_\t3\tacl:relcl\t_\t_\n7\tmostly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tcorporations\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\twould\t_\tAUX\tMD\t_\t3\tdep\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tPrevent\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tcompanies\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n4\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\tmade\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n7\tleveraged\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbuy-outs\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tfrom\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tgetting\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n11\tfederal\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\ttax\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trefunds\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n14\tresulting\t_\tVERB\tVBG\t_\t13\tacl\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlosses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n17\tcaused\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tinterest\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpayments\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tdebt\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tissued\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tfinance\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tbuy-outs\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n29\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n30\tAug.\t_\tPROPN\tNNP\t_\t29\tnmod:tmod\t_\t_\n31\t2\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n33\t1989\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tmutual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tfunds\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tinclude\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n9\ttaxable\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tincome\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tdividends\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\tpaid\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n14\tthem\t_\tPRON\tPRP\t_\t12\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdate\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tthat\t_\tADP\tIN\t_\t22\tadvmod\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdividends\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n21\tare\t_\tAUX\tVBP\t_\t22\tauxpass\t_\t_\n22\tdeclared\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n23\trather\t_\tADV\tRB\t_\t22\tcc\t_\t_\n24\tthan\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n25\treceived\t_\tVERB\tVBN\t_\t22\tconj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n27\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tday\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n30\tafter\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\ttax\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tbill\t_\tNOUN\tNN\t_\t35\tnsubjpass\t_\t_\n34\tis\t_\tAUX\tVBZ\t_\t35\tauxpass\t_\t_\n35\tenacted\t_\tVERB\tVBN\t_\t29\tdep\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tClose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tloophole\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tregarding\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\temployee\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\townership\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tplans\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n11\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n12\tJune\t_\tPROPN\tNNP\t_\t11\tnmod:tmod\t_\t_\n13\t6\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n15\t1989\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t20\tnsubjpass\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t20\taux\t_\t_\n19\tbeen\t_\tAUX\tVBN\t_\t20\tauxpass\t_\t_\n20\texploited\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n21\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tinvestment\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tbankers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tcorporate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\ttakeovers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\trepeals\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\t50\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tadvmod\t_\t_\n7\texclusion\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tgiven\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tloans\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tused\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tacquire\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tsecurities\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tan\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tESOP\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n24\tif\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tESOP\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\towns\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n28\tless\t_\tADJ\tJJR\t_\t30\tadvmod\t_\t_\n29\tthan\t_\tADP\tIN\t_\t28\tmwe\t_\t_\n30\t30\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\t%\t_\tSYM\tNN\t_\t27\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\temployer\t_\tNOUN\tNN\t_\t36\tnmod:poss\t_\t_\n35\t's\t_\tPART\tPOS\t_\t34\tcase\t_\t_\n36\tstock\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tCurb\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tjunk\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tbonds\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tby\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tending\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n7\ttax\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbenefits\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tcertain\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tsuch\t_\tADJ\tJJ\t_\t16\tcase\t_\t_\n14\tas\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\tzero-coupon\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbonds\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tpostpone\t_\tVERB\tVBP\t_\t8\tacl:relcl\t_\t_\n20\tcash\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n21\tinterest\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpayments\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRaise\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n4\t851\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n6\tby\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tsuspending\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tone\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tan\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tautomatic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\treduction\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tairport\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tairway\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n18\ttaxes\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tSpeed\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tup\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcollection\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tpayroll\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\ttax\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tlarge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n15\tAugust\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n16\t1990\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tImpose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\ttax\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tozone-depleting\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tchemicals\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tsuch\t_\tADJ\tJJ\t_\t11\tcase\t_\t_\n10\tas\t_\tADP\tIN\t_\t9\tmwe\t_\t_\n11\tthose\t_\tPRON\tDT\t_\t7\tnmod\t_\t_\n12\tused\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tair\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tconditioners\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tStyrofoam\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n20\tbeginning\t_\tVERB\tVBG\t_\t23\tcase\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t1.10\t_\tNUM\tCD\t_\t2\tadvcl\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tpound\t_\tNOUN\tNN\t_\t23\tnmod:npmod\t_\t_\n26\tstarting\t_\tVERB\tVBG\t_\t28\tcase\t_\t_\n27\tnext\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tyear\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tWithhold\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tincome\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttaxes\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tpaychecks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tcertain\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tfarm\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tworkers\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tcurrently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\texempt\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\twithholding\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tChange\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcollection\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tgasoline\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n7\texcise\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttaxes\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n10\tweekly\t_\tADV\tRB\t_\t2\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tsemimonthly\t_\tADV\tRB\t_\t2\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\teffective\t_\tADJ\tJJ\t_\t2\txcomp\t_\t_\n15\tnext\t_\tADP\tIN\t_\t16\tamod\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRestrict\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tability\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\treal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\testate\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\towners\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tescape\t_\tVERB\tVB\t_\t4\tacl\t_\t_\n11\ttaxes\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tby\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n13\tswapping\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n14\tone\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tpiece\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tproperty\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tanother\t_\tDET\tDT\t_\t13\tnmod\t_\t_\n20\tinstead\t_\tADV\tRB\t_\t22\tmark\t_\t_\n21\tof\t_\tSCONJ\tIN\t_\t20\tmwe\t_\t_\n22\tselling\t_\tVERB\tVBG\t_\t13\tadvcl\t_\t_\n23\tit\t_\tPRON\tPRP\t_\t22\tdobj\t_\t_\n24\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tcash\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tIncrease\t_\tVERB\tVB\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t5\tdep\t_\t_\n5\t6\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tperson\t_\tNOUN\tNN\t_\t5\tnmod:npmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\t$\t_\tSYM\t$\t_\t10\tdep\t_\t_\n10\t3\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tinternational\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tair-passenger\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tdeparture\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\ttax\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n18\timpose\t_\tVERB\tVB\t_\t2\tconj\t_\t_\n19\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\t$\t_\tSYM\t$\t_\t22\tamod\t_\t_\n21\t3-a-person\t_\tADJ\tJJ\t_\t20\tdep\t_\t_\n22\ttax\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tinternational\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tdepartures\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n26\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tcommercial\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tships\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmeasure\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tincludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tspending\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcuts\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tincreases\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfederal\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tfees\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tprovisions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tReduction\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tMedicare\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tspending\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tfiscal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\t1990\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tsome\t_\tDET\tDT\t_\t11\tadvmod\t_\t_\n11\t$\t_\tSYM\t$\t_\t2\tnmod\t_\t_\n12\t2.8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpart\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n17\tby\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\tcurbing\t_\tVERB\tVBG\t_\t2\tnmod\t_\t_\n19\tincreases\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\treimbursements\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tphysicians\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplan\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\timpose\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tbrief\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tfreeze\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tphysician\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tfees\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n11\tnext\t_\tADP\tIN\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRemoval\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tPostal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tService\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\toperating\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbudget\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tfederal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbudget\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\treducing\t_\tVERB\tVBG\t_\t2\tdep\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdeficit\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t$\t_\tSYM\t$\t_\t16\tnmod\t_\t_\n21\t1.77\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\tbillion\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsimilar\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tprovision\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n5\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tHouse\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tversion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tFederal\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tAviation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAdministration\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\traise\t_\tVERB\tVB\t_\t2\tacl\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t239\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tby\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\tcharging\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n15\tfees\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tcommercial\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tairline-landing\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\trights\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n20\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tNew\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tYork\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\tLaGuardia\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tJohn\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n27\tF.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n28\tKennedy\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tInternational\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tAirports\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n32\tO'Hare\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tInternational\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tAirport\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n35\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tChicago\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n38\tNational\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tAirport\t_\tPROPN\tNNP\t_\t24\tconj\t_\t_\n40\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tWashington\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tIncreases\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\tNuclear\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tRegulatory\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tCommission\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tfees\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\ttotaling\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n9\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n10\t54\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tDirection\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tU.S.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tCoast\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tGuard\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tcollect\t_\tVERB\tVB\t_\t2\tacl\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t50\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tusers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tCoast\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tGuard\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tservices\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n2\tRaising\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tadditional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\t$\t_\tSYM\t$\t_\t2\tdobj\t_\t_\n6\t43\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tby\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tincreasing\t_\tVERB\tVBG\t_\t2\tadvcl\t_\t_\n10\texisting\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n11\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tCommunications\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tCommission\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tfees\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tpenalties\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n18\testablishing\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n19\tnew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tfees\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tamateur\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tradio\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\toperators\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tship\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tstations\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n29\tmobile\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tradio\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tfacilities\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tE.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tYang\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tthis\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tarticle\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tresponse\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n3\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n4\tyour\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n5\toverly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\toptimistic\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\toutdated\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpiece\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n10\ton\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\thow\t_\tADV\tWRB\t_\t12\tadvmod\t_\t_\n12\tlong\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tunemployment\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tlasts\t_\tVERB\tVBZ\t_\t9\tacl\t_\t_\n15\t-LRB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n16\tPeople\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n17\tPatterns\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tSept.\t_\tPROPN\tNNP\t_\t17\tdep\t_\t_\n20\t20\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n21\t-RRB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n22\t:\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n23\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n24\tam\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n25\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tcommunications\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tfield\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tabove\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tentry\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tlevel\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\tauxpass\t_\t_\n3\tlaid\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\toff\t_\tADP\tRP\t_\t3\tcompound:prt\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tAugust\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t1988\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n10\tafter\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\tthorough\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\texhausting\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\tjob\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsearch\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\twas\t_\tAUX\tVBD\t_\t19\tauxpass\t_\t_\n19\thired\t_\tVERB\tVBN\t_\t3\tconj\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tAugust\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t1989\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMy\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n2\tunemployment\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tinsurance\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tran\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\tbefore\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tfound\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tjob\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tfound\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n14\tcutbacks\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tlayoffs\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tmany\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcompanies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstatistics\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n3\tquoted\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n9\tCensus\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tBureau\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\treport\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n13\tgarnered\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t1984\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n17\t1986\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t27\tcop\t_\t_\n20\tout\t_\tADP\tIN\t_\t27\tadvmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tdate\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n24\tcertainly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n25\tas\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n28\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tNortheast\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n33\tpossibly\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n34\tfor\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\trest\t_\tNOUN\tNN\t_\t27\tconj\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tcountry\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t4\tnsubj\t_\t_\n4\tbothered\t_\tVERB\tVBD\t_\t10\tcsubj\t_\t_\n5\tme\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tmost\t_\tADV\tRBS\t_\t4\tadvmod\t_\t_\n7\tabout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpiece\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tthere\t_\tPRON\tEX\t_\t13\texpl\t_\t_\n13\tseemed\t_\tVERB\tVBD\t_\t10\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n16\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tunderlying\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tattitude\t_\tNOUN\tNN\t_\t13\txcomp\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttell\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tyour\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\treaders\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tall\t_\tDET\tDT\t_\t25\tnsubj\t_\t_\n24\tis\t_\tVERB\tVBZ\t_\t25\tcop\t_\t_\n25\twell\t_\tADJ\tJJ\t_\t20\tdep\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t25\tpunct\t_\t_\n27\tif\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n28\tyou\t_\tPRON\tPRP\t_\t31\tnsubjpass\t_\t_\n29\t're\t_\tAUX\tVBP\t_\t31\taux\t_\t_\n30\tgetting\t_\tAUX\tVBG\t_\t31\tauxpass\t_\t_\n31\tlaid\t_\tVERB\tVBN\t_\t35\tcsubj\t_\t_\n32\toff\t_\tADP\tRP\t_\t31\tcompound:prt\t_\t_\n33\tdo\t_\tAUX\tVBP\t_\t35\taux\t_\t_\n34\tn't\t_\tPART\tRB\t_\t35\tneg\t_\t_\n35\tworry\t_\tVERB\tVB\t_\t25\tparataxis\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n38\tif\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n39\tyou\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\t're\t_\tVERB\tVBP\t_\t41\tcop\t_\t_\n41\tunemployed\t_\tADJ\tJJ\t_\t48\tadvcl\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t48\tpunct\t_\t_\n43\tit\t_\tPRON\tPRP\t_\t48\tnsubj\t_\t_\n44\t's\t_\tVERB\tVBZ\t_\t48\tcop\t_\t_\n45\ta\t_\tDET\tDT\t_\t46\tdet\t_\t_\n46\tseller\t_\tNOUN\tNN\t_\t48\tnmod:poss\t_\t_\n47\t's\t_\tPART\tPOS\t_\t46\tcase\t_\t_\n48\tmarket\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t2\tmark\t_\t_\n2\ttop\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t2\tdobj\t_\t_\n4\toff\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tcaptioned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tgraph\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tshowing\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\taverage\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tnumber\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tmonths\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tjob\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tsearch\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n22\tTime\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n23\tOff\t_\tADP\tRP\t_\t22\tamod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tAre\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tkidding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tLooking\t_\tVERB\tVBG\t_\t6\tcsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tjob\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tmost\t_\tADV\tRBS\t_\t10\tadvmod\t_\t_\n10\tanxious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tperiods\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tmy\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tlife\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n18\tfor\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tmost\t_\tADJ\tJJS\t_\t20\tamod\t_\t_\n20\tpeople\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tYour\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tpaper\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tneeds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tserious\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\treality\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcheck\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tReva\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLevin\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tCambridge\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tMass\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBULL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHN\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tINFORMATION\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSYSTEMS\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tmajority-owned\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tunit\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tCie.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tdes\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tMachines\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tBull\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tedition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tname\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tunit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\twas\t_\tAUX\tVBD\t_\t12\tauxpass\t_\t_\n12\tmisstated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\treduced\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\trating\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t165\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tsubordinated\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tdebt\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n18\tthis\t_\tDET\tDT\t_\t24\tdet\t_\t_\n19\tBeverly\t_\tPROPN\tNNP\t_\t24\tdep\t_\t_\n20\tHills\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n22\tCalif.\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tthrift\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n26\tciting\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n27\tturmoil\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tmarket\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tlow-grade\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t35\tpunct\t_\t_\n34\thigh-yield\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tsecurities\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\treduced\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\trating\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tthrift\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tsubordinated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdebt\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\tB-2\t_\tADJ\tJJ\t_\t5\tnmod\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tBa-2\t_\tADJ\tJJ\t_\t5\tnmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tkeep\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tdebt\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\tunder\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\treview\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tpossible\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n27\tfurther\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdowngrade\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tColumbia\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tSavings\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tholder\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tso-called\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tjunk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tfederal\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlegislation\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\trequires\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n6\tall\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tthrifts\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tdivest\t_\tVERB\tVBP\t_\t4\tccomp\t_\t_\n9\tthemselves\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tsuch\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tspeculative\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tover\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tperiod\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tyears\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tColumbia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSavings\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tofficials\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tavailable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tcomment\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdowngrade\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFRANKLIN\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tSAVINGS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tASSOCIATION\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tOttawa\t_\tPROPN\tNNP\t_\t3\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tKan.\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tMoody\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tInvestors\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tService\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tdowngraded\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\trating\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n12\tB-2\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tBa-3\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tless\t_\tADJ\tJJR\t_\t18\tadvmod\t_\t_\n17\tthan\t_\tADP\tIN\t_\t16\tmwe\t_\t_\n18\t$\t_\tSYM\t$\t_\t8\tnmod\t_\t_\n19\t20\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tthis\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tthrift\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n24\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tsenior\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tsubordinated\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnotes\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trating\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tconcern\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tFranklin\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\ttroubled\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdiversification\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\trecord\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsecurities\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tbusiness\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\treason\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n19\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdowngrade\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n23\tciting\t_\tVERB\tVBG\t_\t4\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\ttroubles\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n27\tits\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n28\tL.F.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tRothschild\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tsubsidiary\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n32\tthe\t_\tDET\tDT\t_\t34\tdet\t_\t_\n33\tpossible\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tsale\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tother\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\tsubsidiaries\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tperhaps\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n5\tconcern\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tgetting\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n10\tout\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tall\t_\tDET\tPDT\t_\t13\tdet:predet\t_\t_\n13\tthese\t_\tDET\tDT\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tFranklin\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n18\tPresident\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tDuane\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tH.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tHall\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlittle\t_\tADJ\tJJ\t_\t8\tnmod:npmod\t_\t_\n8\tpremature\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tpart\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\twhen\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tseemed\t_\tVERB\tVBD\t_\t14\tadvcl\t_\t_\n5\tsafe\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tgo\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\tback\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tinto\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tWall\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tStreet\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n14\tsuffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\tanother\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tsevere\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tattack\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tnerves\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tDoes\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n3\tsignal\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tanother\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tBlack\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMonday\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tcoming\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOr\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n3\tthis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n4\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\textraordinary\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tbuying\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\topportunity\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n10\tlike\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\tOct.\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n12\t19\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\t1987\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n16\teventually\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tturned\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n18\tout\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tbe\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tHere\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n4\tseveral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tleading\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\texperts\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tmoney\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmanagers\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\tsay\t_\tVERB\tVBP\t_\t2\tdep\t_\t_\n12\tabout\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\taction\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n17\twhat\t_\tPRON\tWP\t_\t18\tnsubj\t_\t_\n18\thappens\t_\tVERB\tVBZ\t_\t11\tconj\t_\t_\n19\tnext\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\twhat\t_\tPRON\tWP\t_\t24\tdobj\t_\t_\n22\tinvestors\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n23\tshould\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tdo\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tJoseph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGranville\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t'm\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tonly\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tone\t_\tNUM\tCD\t_\t24\tccomp\t_\t_\n7\twho\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n9\tthere\t_\tPRON\tEX\t_\t14\texpl\t_\t_\n10\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tOctober\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tmassacre\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n16\tall\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n17\tthrough\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tlate\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tAugust\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tSeptember\t_\tPROPN\tNNP\t_\t19\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n24\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n25\tMr.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tGranville\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tonce\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n30\twidely\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tfollowed\t_\tVERB\tVBN\t_\t33\tamod\t_\t_\n32\tmarket\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\tguru\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t33\tcc\t_\t_\n35\tstill\t_\tADV\tRB\t_\t39\tadvmod\t_\t_\n36\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\twell-known\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tnewsletter\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\twriter\t_\tNOUN\tNN\t_\t33\tconj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tEveryone\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\ttell\t_\tVERB\tVB\t_\t16\tccomp\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t4\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttime\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n10\tdifferent\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n2\tWell\t_\tADV\tRB\t_\t9\tdiscourse\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tways\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tdifferent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\ttechnically\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n15\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tsame\t_\tADJ\tJJ\t_\t9\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tyou\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\ttechnician\t_\tNOUN\tNN\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tobey\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tsignals\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tRight\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\ttelling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tme\t_\tPRON\tPRP\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\thell\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n11\tout\t_\tADP\tRP\t_\t8\tadvmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\tstay\t_\tVERB\tVB\t_\t8\tconj\t_\t_\n14\tout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tmajor\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsupport\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tuntil\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t2200\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsee\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tpossibility\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n6\tgoing\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t2200\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGranville\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n5\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\teven\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tthink\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tbuying\t_\tVERB\tVBG\t_\t8\tnmod\t_\t_\n11\tuntil\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t16\tnmod:npmod\t_\t_\n14\t600\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tdep\t_\t_\n16\t700\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n18\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n19\thit\t_\tVERB\tVBN\t_\t8\tadvcl\t_\t_\n20\t52-week\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tlows\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n22\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n23\tabout\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\t100\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tstocks\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\thit\t_\tVERB\tVBD\t_\t3\tparataxis\t_\t_\n27\tnew\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tlows\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t26\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tMost\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tpeople\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t10\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n10\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tno\t_\tDET\tDT\t_\t12\tneg\t_\t_\n12\tidea\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t17\tnmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tmassacre\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tpattern\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tlooks\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n18\tlike\t_\tADP\tIN\t_\t13\tcase\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tElaine\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGarzarelli\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tquantitative\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tanalyst\t_\tNOUN\tNN\t_\t13\tccomp\t_\t_\n4\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tShearson\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tLehman\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tHutton\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tMs.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tGarzarelli\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\thad\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n13\twarned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tclients\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\ttake\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n17\ttheir\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tmoney\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tout\t_\tADP\tIN\t_\t16\tadvmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tbefore\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\t1987\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcrash\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tbig\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tdrop\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tshe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsays\t_\tVERB\tVBZ\t_\t13\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n11\tnot\t_\tPART\tRB\t_\t13\tneg\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcrash\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tan\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tOctober\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tmassacre\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n7\tlike\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tthose\t_\tPRON\tDT\t_\t5\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\toccurred\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t1978\t_\tNUM\tCD\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\t1979\t_\tNUM\tCD\t_\t12\tconj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tas\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n4\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthose\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n9\ther\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tindicators\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t14\tcop\t_\t_\n14\tpositive\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tSo\t_\tADP\tIN\t_\t3\tdep\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthinks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdamage\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tshort-lived\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcontained\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcorrections\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tlasted\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n5\tone\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tdep\t_\t_\n7\tfour\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tweeks\t_\tNOUN\tNNS\t_\t4\tnmod:tmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\ttook\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t10%-12\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tnmod:npmod\t_\t_\n15\tdown\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\tshe\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\texactly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsame\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tthing\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tas\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tfar\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t14\tnsubjpass\t_\t_\n13\t'm\t_\tAUX\tVBP\t_\t14\tauxpass\t_\t_\n14\tconcerned\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tshe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t22\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIndustrial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAverage\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tdropped\t_\tVERB\tVBD\t_\t22\tadvcl\t_\t_\n13\tbelow\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t2450\t_\tNUM\tCD\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n17\tIt\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n18\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n19\tjust\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n20\tbe\t_\tVERB\tVB\t_\t22\tcop\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfluke\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMy\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tadvice\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tshe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcalculates\t_\tVERB\tVBZ\t_\t10\tadvcl\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\taverage\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\tnow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tsells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n12\tabout\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t12.5\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n14\ttimes\t_\tNOUN\tNNS\t_\t17\tcompound\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t17\tnmod:poss\t_\t_\n16\t'\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tearnings\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tratio\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tclimb\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n7\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n8\t14.5\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tgiven\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n11\tcurrent\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tinterest\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trates\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n16\tstill\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n18\twithin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\trange\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n23\tfair\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tvalue\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tNed\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDavis\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tfall\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tmarks\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tstart\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbear\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tMr.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tDavis\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tpresident\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tNed\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tDavis\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tResearch\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tDavis\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhose\t_\tPRON\tWP$\t_\t6\tnmod:poss\t_\t_\n6\tviews\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n7\tare\t_\tAUX\tVBP\t_\t9\tauxpass\t_\t_\n8\twidely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\trespected\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tmoney\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmanagers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\texpects\t_\tVERB\tVBZ\t_\t14\tccomp\t_\t_\n17\tno\t_\tDET\tDT\t_\t19\tneg\t_\t_\n18\t1987-style\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcrash\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tunique\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcombination\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tMargin\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tdebt\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n5\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\trecord\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\thigh\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttremendous\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tpublic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tenthusiasm\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tmutual\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfunds\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmain\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tthing\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n5\tportfolio\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tinsurance\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tmechanical\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\ttrading\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tsystem\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n13\tintended\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tprotect\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tinvestor\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tagainst\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tlosses\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tadvmod\t_\t_\n2\thundred\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tbillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdollars\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\tsubject\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tselling\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tcontributed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tsnowball\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\teffect\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tToday\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n3\teven\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t7\tcop\t_\t_\n5\tan\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tup\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tday\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tDavis\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t7\tparataxis\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n14\tmajor\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tbrokerage\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfirms\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\tagree\t_\tVERB\tVBP\t_\t7\tadvcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\trefrain\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tOver\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tnext\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tseveral\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmonths\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthough\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\the\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthings\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tlook\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n13\tbad\t_\tADJ\tJJ\t_\t12\txcomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t15\tccomp\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\theading\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n9\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tNovember\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tprobably\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tyear-end\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\trally\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tthen\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n13\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tagain\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tSort\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\ttwo-step\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tbear\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n8\t''\t_\tPUNCT\t''\t_\t1\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdownturn\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcarry\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\tDow\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tJones\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tIndustrial\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tAverage\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n12\tdown\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\taround\t_\tADP\tIN\t_\t15\tamod\t_\t_\n15\t2000\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n16\tsometime\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n17\tnext\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n3\twould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tnormal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tbear\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tguess\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthat\t_\tADP\tIN\t_\t7\tnsubj\t_\t_\n5\t's\t_\tPART\tPOS\t_\t7\tdep\t_\t_\n6\tmy\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tforecast\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tLeon\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tG.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCooperman\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tthink\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tis\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tgoing\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n10\tthrough\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tanother\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tOctober\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n13\t'87\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tthink\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n5\tthat\t_\tPRON\tDT\t_\t8\tnsubj\t_\t_\n6\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcase\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tall\t_\tDET\tDT\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCooperman\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tpartner\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tGoldman\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tSachs\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\t&\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\tCo.\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n26\tchairman\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tGoldman\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tSachs\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tAsset\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tManagement\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCooperman\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tgood\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttime\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tpick\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tup\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tbargains\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n16\tdoes\t_\tAUX\tVBZ\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tthink\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n19\tthere\t_\tPRON\tEX\t_\t20\texpl\t_\t_\n20\t's\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n21\tany\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tneed\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\trush\t_\tVERB\tVB\t_\t22\tacl\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\topen\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n8\tweaker\t_\tADJ\tJJR\t_\t7\txcomp\t_\t_\n9\tMonday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n12\tthen\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n14\tshould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tfind\t_\tVERB\tVB\t_\t3\tconj\t_\t_\n16\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tstability\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tticks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\toff\t_\tADP\tRP\t_\t2\tcompound:prt\t_\t_\n4\tseveral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmajor\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdifferences\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\tbetween\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tnow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t6\tacl\t_\t_\n10\ttwo\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tyears\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n12\tago\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tinterest\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\trates\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\taux\t_\t_\n8\tfalling\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tyear\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdollar\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\tstrong\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\tunlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\teconomy\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tappear\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n11\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdanger\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\toverheating\t_\tVERB\tVBG\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\teconomy\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tslower\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n6\tgrowth\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tyear\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\talso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmeans\t_\tVERB\tVBZ\t_\t23\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\toutlook\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcorporate\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tprofits\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\tgood\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tSo\t_\tADP\tIN\t_\t8\tdep\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tvery\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tmixed\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbag\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tconcludes\t_\tVERB\tVBZ\t_\t12\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n7\tThis\t_\tPRON\tDT\t_\t12\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n9\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tgood\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tenvironment\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t16\tauxpass\t_\t_\n15\tfully\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tinvested\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tcome\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n6\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmargin\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\twith\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tlittle\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tcash\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tportfolios\t_\tNOUN\tNNS\t_\t14\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tI\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n20\twould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\tnot\t_\tPART\tRB\t_\t22\tneg\t_\t_\n22\tdo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n23\tany\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tbuying\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\twe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tinto\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n6\twith\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tconservative\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tportfolio\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tso\t_\tADP\tIN\t_\t3\tdep\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tlook\t_\tVERB\tVB\t_\t3\tparataxis\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tdo\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tsome\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmodest\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbuying\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tbehalf\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tclients\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n\n1\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t're\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tlook\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tsome\t_\tDET\tDT\t_\t5\tnmod\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbetter-known\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcompanies\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tthat\t_\tPRON\tWDT\t_\t14\tnsubjpass\t_\t_\n13\tgot\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tclocked\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n16\tFriday\t_\tPROPN\tNNP\t_\t14\tnmod:tmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tKenneth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tGalbraith\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlatest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n6\tmanifestation\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcapacity\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfinancial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcommunity\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\trecurrent\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinsanity\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tGalbraith\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\teconomist\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsee\t_\tVERB\tVBP\t_\t17\tccomp\t_\t_\n4\tthis\t_\tPRON\tDT\t_\t3\tdobj\t_\t_\n5\tas\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\treaction\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\twhole\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n11\tjunk\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tbond\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\texplosion\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texplosion\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tjunk\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\ttakeovers\t_\tNOUN\tNNS\t_\t6\tconj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tlodged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlot\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tinsecure\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tsecurities\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\thands\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n22\tloaded\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcorporations\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n26\tare\t_\tVERB\tVBP\t_\t28\tcop\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tobjects\t_\tNOUN\tNNS\t_\t24\tacl:relcl\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\ttakeovers\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t30\tcc\t_\t_\n32\tfeared\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\ttakeovers\t_\tNOUN\tNNS\t_\t30\tconj\t_\t_\n34\twith\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\thuge\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tamounts\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n38\tdebt\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n39\trather\t_\tADV\tRB\t_\t38\tcc\t_\t_\n40\tthan\t_\tADP\tIN\t_\t39\tmwe\t_\t_\n41\tequity\t_\tNOUN\tNN\t_\t38\tconj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\tboth\t_\tCONJ\tCC\t_\t4\tdep\t_\t_\n4\tmade\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tinvestors\t_\tNOUN\tNNS\t_\t6\tdep\t_\t_\n6\tuneasy\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcorporations\t_\tNOUN\tNNS\t_\t11\tdep\t_\t_\n10\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tvulnerable\t_\tADJ\tJJ\t_\t6\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdepression\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tappear\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n10\tlikely\t_\tADJ\tJJ\t_\t9\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t18\tccomp\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tresiliency\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teconomy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tlarge\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\tthan\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\twe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcommonly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsuppose\t_\tVERB\tVBP\t_\t5\tadvcl\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t18\tnsubj\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tmore\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\terror\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\thave\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmajor\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdepression\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tback\t_\tADV\tRB\t_\t3\tadvcl\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tThirties\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n18\tmuch\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n19\tas\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfinancial\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcommunity\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tgovernment\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n26\tmay\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\ttry\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tMario\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGabelli\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tYork\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tmoney\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n4\tmanager\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tMario\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tGabelli\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\texpert\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\tat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tspotting\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n12\ttakeover\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcandidates\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n17\ttakeovers\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t21\tauxpass\t_\t_\n19\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n20\ttotally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tgone\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tCompanies\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tcompanies\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\taround\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tExamples\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n4\tFord\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJaguar\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tBellSouth\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tlooking\t_\tVERB\tVBG\t_\t5\tparataxis\t_\t_\n11\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tLIN\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBroadcasting\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsorts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\ttakeovers\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tdo\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\trequire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tjunk\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tbig\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tbank\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tloans\t_\tNOUN\tNNS\t_\t9\tconj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tfinance\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n16\tthem\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\tso\t_\tADP\tIN\t_\t7\tdep\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGabelli\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tfigures\t_\tNOUN\tNNS\t_\t7\tparataxis\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\twill\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tcontinue\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tup\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t35\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tnmod:npmod\t_\t_\n8\tsince\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\t-LCB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n10\tPresident\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n11\t-RCB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n12\tBush\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\ttook\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n14\toffice\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tMr.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGabelli\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t4\tdep\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n21\tso\t_\tADP\tIN\t_\t4\tdep\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcorrection\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t4\tparataxis\t_\t_\n25\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n26\tbe\t_\tAUX\tVB\t_\t27\tauxpass\t_\t_\n27\texpected\t_\tVERB\tVBN\t_\t24\txcomp\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tthinks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tanother\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcrash\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n7\tunlikely\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t2\tconj\t_\t_\n12\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n15\tnibbling\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n16\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\tselected\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tduring\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tFriday\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tplunge\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tStocks\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tthrown\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\tjust\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\temotional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbasis\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tgreat\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\topportunity\t_\tNOUN\tNN\t_\t27\tccomp\t_\t_\n16\t-LCB-\t_\tPUNCT\t-LRB-\t_\t17\tpunct\t_\t_\n17\tthis\t_\tDET\tDT\t_\t19\tdep\t_\t_\n18\t-RCB-\t_\tPUNCT\t-RRB-\t_\t17\tpunct\t_\t_\n19\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tguys\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n22\tlike\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tme\t_\tPRON\tPRP\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n26\the\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n27\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tJim\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRogers\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tme\t_\tPRON\tPRP\t_\t3\tnmod\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthis\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tpin\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n12\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tfinally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tpricked\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tballoon\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tRogers\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tprofessor\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tfinance\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tat\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tColumbia\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tUniversity\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n31\tformer\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tco-manager\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n33\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tone\t_\tNUM\tCD\t_\t32\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n37\tmost\t_\tADV\tRBS\t_\t38\tadvmod\t_\t_\n38\tsuccessful\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n39\thedge\t_\tNOUN\tNN\t_\t40\tcompound\t_\t_\n40\tfunds\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n41\tin\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\thistory\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n44\tQuantum\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tFund\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsees\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n4\teconomic\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tproblems\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tfinancial\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tproblems\t_\tNOUN\tNNS\t_\t5\tappos\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n10\tahead\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n11\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tU.S.\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tfairly\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tstrong\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tpossibility\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\trecession\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tsell\t_\tVERB\tVB\t_\t11\tccomp\t_\t_\n7\tdollars\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tDealers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n3\twould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tgive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t4\tiobj\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tquote\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tthen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\trefuse\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tmake\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttrade\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tstays\t_\tVERB\tVBZ\t_\t12\tadvcl\t_\t_\n5\tweak\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\the\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tsays\t_\tVERB\tVBZ\t_\t12\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tadd\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tinflationary\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tpressures\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n20\tmake\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n22\thard\t_\tADJ\tJJ\t_\t29\tdep\t_\t_\n23\tfor\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tFederal\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tReserve\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tBoard\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\tease\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n30\tinterest\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\trates\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tvery\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\tmuch\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRogers\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\two\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tdecide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\twhat\t_\tPRON\tWP\t_\t8\tnsubj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tdo\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n10\tuntil\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsees\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n13\thow\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n15\tLondon\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tTokyo\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n18\tmarkets\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tgo\t_\tVERB\tVBP\t_\t12\tccomp\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\trecommends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsell\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n6\ttakeover-related\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstocks\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\thang\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n11\ton\t_\tADP\tRP\t_\t10\tcompound:prt\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\tsome\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n17\tespecially\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tutilities\t_\tNOUN\tNNS\t_\t15\tdep\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n21\toften\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tdo\t_\tVERB\tVBP\t_\t18\tacl:relcl\t_\t_\n23\twell\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n24\tduring\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tperiods\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\teconomic\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tweakness\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCurzio\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMany\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tpeople\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tnow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tclaim\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n6\thave\t_\tAUX\tVB\t_\t7\taux\t_\t_\n7\tpredicted\t_\tVERB\tVBN\t_\t4\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t1987\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcrash\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tQueens\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tnewsletter\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n3\twriter\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n4\tFrancis\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tX.\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCurzio\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\tactually\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t8\tdobj\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n11\tHe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tstated\t_\tVERB\tVBD\t_\t8\tparataxis\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\twriting\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tSeptember\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n20\tDow\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tJones\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tIndustrial\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tAverage\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n24\twas\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n25\tlikely\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tdecline\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tabout\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n29\t500\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tpoints\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tfollowing\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tmonth\t_\tNOUN\tNN\t_\t27\tnmod:tmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCurzio\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\thappens\t_\tVERB\tVBZ\t_\t8\tcsubj\t_\t_\n6\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tdepend\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tgood\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tdeal\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tFederal\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tReserve\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tBoard\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tpromptly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tcuts\t_\tVERB\tVBZ\t_\t21\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tdiscount\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\trate\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tcharges\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tloans\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\the\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\tsays\t_\tVERB\tVBZ\t_\t21\tparataxis\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tThat\t_\tPRON\tDT\t_\t21\tnsubj\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\tquiet\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\tthings\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n23\tdown\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t2\tmark\t_\t_\n2\tnot\t_\tPART\tRB\t_\t7\tadvcl\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n5\tWe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tgo\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\t2200\t_\tNUM\tCD\t_\t7\tnmod\t_\t_\n10\tvery\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsoon\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n\n1\tFrank\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tW.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTerrizzi\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tStock\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n4\twould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\thave\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tgo\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tdown\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tadditional\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tamount\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n13\tbefore\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tbecome\t_\tVERB\tVBP\t_\t6\tadvcl\t_\t_\n16\tpositive\t_\tADJ\tJJ\t_\t15\txcomp\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tTerrizzi\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tmanaging\t_\tVERB\tVBG\t_\t28\tamod\t_\t_\n28\tdirector\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n29\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\tRenaissance\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tInvestment\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tManagement\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tInc.\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tCincinnati\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tRenaissance\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\twhich\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tmanages\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n7\t1.8\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tdrew\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tstiff\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcriticism\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tmany\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tclients\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tearlier\t_\tADV\tRBR\t_\t18\tadvmod\t_\t_\n17\tthis\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n19\tbecause\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tpulled\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n22\tentirely\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\tout\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tstocks\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\tat\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tbeginning\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tyear\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n33\tthus\t_\tADV\tRB\t_\t34\tadvmod\t_\t_\n34\tmissed\t_\tVERB\tVBD\t_\t21\tconj\t_\t_\n35\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tstrong\t_\tADJ\tJJ\t_\t37\tamod\t_\t_\n37\trally\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tRenaissance\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tkeeping\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tmoney\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tentirely\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tcash\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tequivalents\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tprimarily\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tTreasury\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tbills\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tT-bills\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n3\tprobably\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tright\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tplace\t_\tNOUN\tNN\t_\t13\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tRegarding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tOct.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\t3\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tletter\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n6\tto\t_\tADP\tTO\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teditor\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tRep.\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tTom\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tLantos\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tchairman\t_\tNOUN\tNN\t_\t12\tappos\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tHouse\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tSubcommittee\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tEmployment\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tHousing\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n24\talleging\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n25\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t1\t_\tX\tLS\t_\t14\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n4\tyour\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tSept.\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\t28\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\teditorial\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n9\tKangaroo\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tCommittees\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n13\tfactually\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tinaccurate\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tdeliberately\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tmisleading\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tthought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tyour\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\teditorial\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n6\tfactually\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\taccurate\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tdeliberately\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\telucidative\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t2\t_\tX\tLS\t_\t6\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tLantos\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsupported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trights\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\twitnesses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\ttake\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tFifth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAmendment\t_\tPROPN\tNNP\t_\t13\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tYes\t_\tINTJ\tUH\t_\t4\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tdid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twatched\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n4\thim\t_\tPRON\tPRP\t_\t3\tdobj\t_\t_\n5\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tC-Span\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\tI\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\theard\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\thim\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tspeak\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n12\tthose\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tlovely\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twords\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\tabout\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tBill\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tRights\t_\tPROPN\tNNPS\t_\t17\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\twhich\t_\tPRON\tWDT\t_\t23\tdobj\t_\t_\n22\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\tquotes\t_\tVERB\tVBZ\t_\t14\tacl:relcl\t_\t_\n24\tfrom\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\ttranscript\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\thearings\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tdid\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\trepeat\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthose\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tnice\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tplatitudes\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n7\tseveral\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttimes\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n9\tas\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tindication\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tsupport\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tConstitution\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tabout\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\t56\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\twords\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\tdefending\t_\tVERB\tVBG\t_\t2\txcomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\twitnesses\t_\tNOUN\tNNS\t_\t11\tnmod:poss\t_\t_\n9\t'\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tconstitutional\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\trights\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUnfortunately\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\trough\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tguess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tused\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tbetter\t_\tADJ\tJJR\t_\t12\tadvmod\t_\t_\n11\tthan\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n12\t5,000\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\twords\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n14\theaping\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n15\tscorn\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\twitnesses\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tfor\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\texercising\t_\tVERB\tVBG\t_\t14\tadvcl\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tFifth\t_\tPROPN\tNNP\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsandwiched\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tpraise\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tconstitutional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmeat\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbetween\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tlarge\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tloaves\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tbilious\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcommentary\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tyour\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\teditorial\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\trightly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tpointed\t_\tVERB\tVBD\t_\t29\tadvcl\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n8\tSamuel\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tPierce\t_\tPROPN\tNNP\t_\t29\tnsubjpass\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tformer\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tHUD\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tsecretary\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n16\tLance\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tWilson\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tPierce\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tformer\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\taide\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n26\tare\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n27\tcurrently\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n28\tbeing\t_\tAUX\tVBG\t_\t29\tauxpass\t_\t_\n29\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n30\tup\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n31\tto\t_\tADP\tTO\t_\t32\tcase\t_\t_\n32\tscorn\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n33\tfor\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n34\ttaking\t_\tVERB\tVBG\t_\t29\tadvcl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tFifth\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tAmendment\t_\tPROPN\tNNP\t_\t34\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n3\tcertainly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n5\tnot\t_\tPART\tRB\t_\t10\tneg\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tsupposed\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n9\tdistorted\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\treading\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n12\tindicated\t_\tVERB\tVBN\t_\t10\tacl\t_\t_\n13\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tLantos\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t3\t_\tX\tLS\t_\t9\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n6\tcommittee\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n8\tnot\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\tdeal\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tany\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tpossible\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tcriminal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tactivity\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tHUD\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMy\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tcolleagues\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t2\tconj\t_\t_\n5\tfully\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\trealize\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n8\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n9\tnot\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcourt\t_\tNOUN\tNN\t_\t6\tccomp\t_\t_\n12\t...\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n13\tetc\t_\tX\tFW\t_\t6\tdep\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tAbsolute\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trubbish\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n4\treasonable\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tman\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\t''\t_\tPUNCT\t''\t_\t7\tpunct\t_\t_\n7\tcriterion\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tLantos\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tcolleagues\t_\tNOUN\tNNS\t_\t10\tconj\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\twhole\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbunch\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tpeople\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\ttried\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tconvicted\t_\tVERB\tVBN\t_\t20\tconj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tApparently\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\tverdict\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tin\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tRight\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tpursuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tevidence\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tnot\t_\tADV\tRB\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbad\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tway\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tproceed\t_\tVERB\tVB\t_\t6\tacl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n10\tjust\t_\tADV\tRB\t_\t3\tdep\t_\t_\n11\tsomewhat\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tdifferent\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tstandard\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tAmerican\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpractice\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tHow\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n3\tthat\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tpractice\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n5\treferred\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tADP\tTO\t_\t5\tnmod\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n8\tI\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tschool\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n12\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAh\t_\tINTJ\tUH\t_\t5\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n3\tyes\t_\tINTJ\tUH\t_\t5\tdiscourse\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n5\tsomething\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tcalled\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tStar\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tChamber\t_\tPROPN\tNNP\t_\t6\txcomp\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tLantos\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tdoth\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tprotest\t_\tNOUN\tNN\t_\t6\tdep\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\this\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tsubcommittee\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\tsimply\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tseeks\t_\tVERB\tVBZ\t_\t7\tccomp\t_\t_\n13\tinformation\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tlegislative\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tchange\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tdoubt\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tpartially\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\ttrue\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tEverything\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n2\tthat\t_\tADP\tIN\t_\t5\tdobj\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLantos\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsays\t_\tVERB\tVBZ\t_\t1\tacl:relcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\this\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tletter\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n10\tpartially\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\ttrue\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tright\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\this\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tsubcommittee\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tresponsibilities\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tcomes\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n12\tto\t_\tADP\tTO\t_\t13\tmark\t_\t_\n13\tobtaining\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n14\tinformation\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tprior\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tHUD\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tofficials\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n3\this\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\texplanation\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tmotivation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\ttrue\t_\tADJ\tJJ\t_\t15\tadvcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n10\twhy\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t15\tauxpass\t_\t_\n12\this\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tinvestigation\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n14\tso\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\toriented\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tidentify\t_\tVERB\tVB\t_\t15\tadvcl\t_\t_\n19\tcriminal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tactivity\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tWhy\t_\tADV\tWRB\t_\t2\tadvmod\t_\t_\n2\tnot\t_\tADV\tRB\t_\t4\tdep\t_\t_\n3\tsimply\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tquestions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\tdesigned\t_\tVERB\tVBN\t_\t4\tacl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tidentify\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tsources\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcauses\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\twaste\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tinefficiency\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n15\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSuch\t_\tADJ\tJJ\t_\t5\tcase\t_\t_\n2\tas\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t5\tnsubj\t_\t_\n5\thappened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\twhen\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n7\tCongress\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\twanted\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tknow\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tabout\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n13\t400\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n14\ttoilet\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tseats\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n17\twhatever\t_\tDET\tWDT\t_\t20\tdobj\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tsupposedly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tcost\t_\tVERB\tVBD\t_\t15\tdep\t_\t_\n21\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNo\t_\tADV\tRB\t_\t10\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLantos\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tcomplaints\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n7\tsimply\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n8\two\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\twash\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t4\t_\tX\tLS\t_\t6\tdep\t_\t_\n2\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n3\tThat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tJournal\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tdefends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tsleaze\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tfraud\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\twaste\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\tembezzlement\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tinfluence-peddling\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n19\tabuse\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tpublic\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\ttook\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n25\tplace\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n26\twhile\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tPierce\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n29\twas\t_\tVERB\tVBD\t_\t30\tcop\t_\t_\n30\tsecretary\t_\tNOUN\tNN\t_\t24\tadvcl\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tHUD\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n34\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n35\tetc.\t_\tX\tFW\t_\t6\tdep\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tso\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tforth\t_\tADV\tRB\t_\t35\tdep\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNo\t_\tINTJ\tUH\t_\t12\tdiscourse\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n4\tmy\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tmind\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tJournal\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n9\tdid\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n10\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n12\tdefend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tsleaze\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tfraud\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\twaste\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tembezzlement\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n21\tinfluence-peddling\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tabuse\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tpublic\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\ttrust\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t...\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tit\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdefended\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tappropriate\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tconstitutional\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tsafeguards\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tpractical\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcommon\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tsense\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tproblem\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t9\tdobj\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tJournal\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n7\tso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\trightly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tpointed\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n10\tout\t_\tADP\tRP\t_\t9\tcompound:prt\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tnumber\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tarticles\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n18\tnot\t_\tADV\tRB\t_\t20\tneg\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tlikes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tLantos\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twho\t_\tPRON\tWP\t_\t32\tnsubj\t_\t_\n26\tafter\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tall\t_\tDET\tDT\t_\t32\tnmod\t_\t_\n28\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n29\treally\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tbit\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tplayer\t_\tNOUN\tNN\t_\t23\tacl:relcl\t_\t_\n33\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tstage\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n37\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tattempt\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n40\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tCongress\t_\tPROPN\tNNP\t_\t39\tnmod\t_\t_\n42\tto\t_\tPART\tTO\t_\t43\tmark\t_\t_\n43\tenhance\t_\tVERB\tVB\t_\t39\tacl\t_\t_\n44\titself\t_\tPRON\tPRP\t_\t43\tdobj\t_\t_\n45\tinto\t_\tADP\tIN\t_\t48\tcase\t_\t_\n46\ta\t_\tDET\tDT\t_\t48\tdet\t_\t_\n47\tquasi-parliamentary/judicial\t_\tADJ\tJJ\t_\t48\tamod\t_\t_\n48\tbody\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n49\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n2\tOf\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tcourse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\t've\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\talso\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tgot\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tjudiciary\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t12\tnsubj\t_\t_\n12\tseeks\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tsame\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tobjective\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n17\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsystem\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tproblem\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tnot\t_\tPART\tRB\t_\t5\tdep\t_\t_\n8\tan\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tindividual\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmember\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIndividuals\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\talways\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\thave\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\ttheir\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\thands\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tslapped\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\t's\t_\tPART\tPOS\t_\t0\troot\t_\t_\n3\twhen\t_\tADV\tWRB\t_\t8\tadvmod\t_\t_\n4\tsuch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tslapping\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\toccur\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n9\tthat\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n11\t've\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tgot\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n13\ttrouble\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n3\tnot\t_\tPART\tRB\t_\t7\tneg\t_\t_\n4\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tany\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmeans\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n7\tdefend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tHUD\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tmanagement\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tkind\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tcongressional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestigation\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t12\tnsubjpass\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\tpursued\t_\tVERB\tVBN\t_\t5\tacl:relcl\t_\t_\n13\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\tfar\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tgreater\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tdanger\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n18\tto\t_\tADP\tTO\t_\t20\tcase\t_\t_\n19\tAmerican\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tnotions\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tliberty\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tfreedom\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n25\tthan\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n26\tany\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tincompetency\t_\tNOUN\tNN\t_\t40\tnsubj\t_\t_\n28\t-LRB-\t_\tPUNCT\t-LRB-\t_\t34\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t34\tcc\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n31\tyes\t_\tINTJ\tUH\t_\t34\tdiscourse\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\tmaybe\t_\tADV\tRB\t_\t34\tdep\t_\t_\n34\tcriminality\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n35\t-RRB-\t_\tPUNCT\t-RRB-\t_\t34\tpunct\t_\t_\n36\twithin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\tHUD\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n38\tcould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n39\tpossibly\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tgenerate\t_\tVERB\tVB\t_\t17\tadvcl\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaw\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tsimilar\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcongressional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\thearing\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n13\tTail\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n14\tGunner\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tJoe\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n17\tMcCarthy\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tdid\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\twork\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tRaymond\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWeber\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n\n1\tParsippany\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tN.J\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tdisagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\twith\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tstatement\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tLantos\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tone\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\tshould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tnot\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tdraw\t_\tVERB\tVB\t_\t5\tdep\t_\t_\n14\tan\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tadverse\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinference\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tagainst\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tformer\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tHUD\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tofficials\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n21\twho\t_\tPRON\tWP\t_\t22\tnsubj\t_\t_\n22\tassert\t_\tVERB\tVBP\t_\t20\tacl:relcl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t26\tnmod:poss\t_\t_\n24\tFifth\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tAmendment\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tprivilege\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n27\tagainst\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tself-incrimination\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tcongressional\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\thearings\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tFifth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAmendment\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tstates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\trelevant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tpart\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tno\t_\tDET\tDT\t_\t10\tneg\t_\t_\n10\tperson\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tshall\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tAUX\tVB\t_\t14\tauxpass\t_\t_\n14\tcompelled\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tany\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tcriminal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tcase\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n22\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\twitness\t_\tNOUN\tNN\t_\t14\txcomp\t_\t_\n25\tagainst\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\thimself\t_\tPRON\tPRP\t_\t24\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprivilege\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tagainst\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tself-incrimination\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n5\tprecludes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tdrawing\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tadverse\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinference\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tagainst\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tcriminal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdefendant\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n17\tchooses\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\tnot\t_\tPART\tRB\t_\t17\tneg\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\ttestify\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcriminal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcase\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprosecutor\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\tcan\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\tcomment\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdefendant\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tfailure\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\ttestify\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\tnor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n21\tcan\t_\tAUX\tMD\t_\t25\taux\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tdefendant\t_\tNOUN\tNN\t_\t25\tnsubjpass\t_\t_\n24\tbe\t_\tAUX\tVB\t_\t25\tauxpass\t_\t_\n25\tcompelled\t_\tVERB\tVBN\t_\t12\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\ttake\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tstand\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n30\tas\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\twitness\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n34\tthus\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n35\tforcing\t_\tVERB\tVBG\t_\t25\txcomp\t_\t_\n36\thim\t_\tPRON\tPRP\t_\t35\tdobj\t_\t_\n37\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n38\t``\t_\tPUNCT\t``\t_\t39\tpunct\t_\t_\n39\ttake\t_\tVERB\tVB\t_\t35\txcomp\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tFifth\t_\tPROPN\tNNP\t_\t39\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprivilege\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\tlimited\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\taccordance\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\twith\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tplain\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tlanguage\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tprotect\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdefendant\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tcriminal\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tmatters\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n22\tonly\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tSupreme\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCourt\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tstates\t_\tNOUN\tNNS\t_\t3\tconj\t_\t_\n7\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tspecifically\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\trecognized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tFifth\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAmendment\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n15\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tnot\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tpreclude\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tinference\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\twhere\t_\tADV\tWRB\t_\t24\tadvmod\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tprivilege\t_\tNOUN\tNN\t_\t24\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\tauxpass\t_\t_\n24\tclaimed\t_\tVERB\tVBN\t_\t17\tadvcl\t_\t_\n25\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tparty\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t31\tcase\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tcivil\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tcause\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tBaxter\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\tv.\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tPalmingiano\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n5\t425\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tU.S.\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n7\t308\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n8\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\t1976\t_\tNUM\tCD\t_\t1\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tcivil\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcase\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdefendant\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n10\tmay\t_\tAUX\tMD\t_\t12\taux\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\tauxpass\t_\t_\n12\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\twitness\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\the\t_\tPRON\tPRP\t_\t20\tnsubjpass\t_\t_\n18\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n19\tbe\t_\tAUX\tVB\t_\t20\tauxpass\t_\t_\n20\tforced\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\ttestify\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\ttake\t_\tVERB\tVB\t_\t22\tconj\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tFifth\t_\tPROPN\tNNP\t_\t24\tdobj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n29\this\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\ttaking\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n31\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tFifth\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n34\tmay\t_\tAUX\tMD\t_\t35\taux\t_\t_\n35\tpermit\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tdrawing\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n38\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tan\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tadverse\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tinference\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n42\tagainst\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\thim\t_\tPRON\tPRP\t_\t41\tnmod\t_\t_\n44\tin\t_\tADP\tIN\t_\t47\tcase\t_\t_\n45\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n46\tcivil\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tmatter\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tFifth\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tcivil\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tmatter\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t3\tadvcl\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tgood\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tfaith\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tjustifiable\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbelief\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\ttestimony\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n23\tmay\t_\tAUX\tMD\t_\t24\taux\t_\t_\n24\tsubject\t_\tVERB\tVB\t_\t16\tdep\t_\t_\n25\thim\t_\tPRON\tPRP\t_\t24\tdobj\t_\t_\n26\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n27\tcriminal\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tprosecution\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAllowing\t_\tVERB\tVBG\t_\t14\tcsubj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdefendant\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t1\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tFifth\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tcivil\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tmatter\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\tnot\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tbased\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tconstitutional\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tright\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\trefuse\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\ttestify\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\twhere\t_\tADV\tWRB\t_\t27\tadvmod\t_\t_\n24\tone\t_\tPRON\tPRP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\ttestimony\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tharms\t_\tVERB\tVBZ\t_\t20\tadvcl\t_\t_\n28\thim\t_\tPRON\tPRP\t_\t27\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tcivil\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmatter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n34\tbut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n35\tbecause\t_\tSCONJ\tIN\t_\t45\tmark\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\ttestimony\t_\tNOUN\tNN\t_\t45\tnsubjpass\t_\t_\n38\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n39\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n40\tcivil\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n41\tmatter\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n42\tcould\t_\tAUX\tMD\t_\t45\taux\t_\t_\n43\tbe\t_\tAUX\tVB\t_\t45\tauxpass\t_\t_\n44\tunconstitutionally\t_\tADV\tRB\t_\t45\tadvmod\t_\t_\n45\tused\t_\tVERB\tVBN\t_\t14\tconj\t_\t_\n46\tagainst\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\thim\t_\tPRON\tPRP\t_\t45\tnmod\t_\t_\n48\tin\t_\tADP\tIN\t_\t52\tcase\t_\t_\n49\ta\t_\tDET\tDT\t_\t52\tdet\t_\t_\n50\tsubsequent\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n51\tcriminal\t_\tADJ\tJJ\t_\t52\tamod\t_\t_\n52\tprosecution\t_\tNOUN\tNN\t_\t45\tnmod\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tAbsent\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\trisk\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tsuch\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tprosecution\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcourt\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\torder\t_\tVERB\tVB\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tdefendant\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\ttestify\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThus\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n3\twhen\t_\tADV\tWRB\t_\t6\tadvmod\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPierce\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tasserted\t_\tVERB\tVBD\t_\t26\tadvcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFifth\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tnoncriminal\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tproceeding\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n14\tparticularly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\tafter\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tpresumably\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\treceiving\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n18\textensive\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tadvice\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tlegal\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcounsel\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n24\tone\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\tmust\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tconclude\t_\tVERB\tVB\t_\t0\troot\t_\t_\n27\tthat\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n28\the\t_\tPRON\tPRP\t_\t29\tnsubj\t_\t_\n29\theld\t_\tVERB\tVBD\t_\t26\tccomp\t_\t_\n30\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n31\tgood-faith\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n33\tjustifiable\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tbelief\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n35\tthat\t_\tSCONJ\tIN\t_\t40\tmark\t_\t_\n36\this\t_\tPRON\tPRP$\t_\t37\tnmod:poss\t_\t_\n37\ttestimony\t_\tNOUN\tNN\t_\t40\tnsubjpass\t_\t_\n38\tcould\t_\tAUX\tMD\t_\t40\taux\t_\t_\n39\tbe\t_\tAUX\tVB\t_\t40\tauxpass\t_\t_\n40\tused\t_\tVERB\tVBN\t_\t34\tccomp\t_\t_\n41\tagainst\t_\tADP\tIN\t_\t42\tcase\t_\t_\n42\thim\t_\tPRON\tPRP\t_\t40\tnmod\t_\t_\n43\tin\t_\tADP\tIN\t_\t47\tcase\t_\t_\n44\ta\t_\tDET\tDT\t_\t47\tdet\t_\t_\n45\tsubsequent\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n46\tcriminal\t_\tADJ\tJJ\t_\t47\tamod\t_\t_\n47\tprosecution\t_\tNOUN\tNN\t_\t40\tnmod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsubcommittee\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCongress\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tAmerican\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpublic\t_\tNOUN\tNN\t_\t2\tconj\t_\t_\n9\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tevery\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tright\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdraw\t_\tVERB\tVB\t_\t11\tdep\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tadverse\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinference\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tconcur\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n20\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tMr.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tPierce\t_\tPROPN\tNNP\t_\t25\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\town\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tbelief\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n27\this\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\ttestimony\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n29\tcould\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\thelp\t_\tVERB\tVB\t_\t25\tccomp\t_\t_\n31\tconvict\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n32\thim\t_\tPRON\tPRP\t_\t31\tdobj\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tcrime\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tDrawing\t_\tVERB\tVBG\t_\t12\tcsubj\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tadverse\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinference\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tnoncriminal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tcongressional\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\thearing\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n10\tdoes\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n11\tnot\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\toffend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tFifth\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tAmendment\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tshield\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n17\tagainst\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tself-incrimination\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tClark\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tS.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSpalsbury\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tJr\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEstes\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPark\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tColo\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\t13th\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n11\tplummeted\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n12\tnearly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\t200\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tpoints\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tJust\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcoincidence\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\t?\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOr\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t11\taux\t_\t_\n3\ttriskaidekaphobia\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n5\tfear\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnumber\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t13\t_\tNUM\tCD\t_\t8\tdep\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n11\tjustified\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\t?\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tacademia\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tso-called\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n7\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n8\t13th\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\teffect\t_\tNOUN\tNN\t_\t12\tnsubjpass\t_\t_\n10\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tup\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\tshot\t_\tVERB\tVBD\t_\t12\tconj\t_\t_\n16\tdown\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tby\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tdifferent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tprofessors\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKolb\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tRicardo\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tRodriguez\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tprofessors\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tfinance\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tUniversity\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tMiami\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tfound\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tevidence\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t22\tnsubjpass\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n22\tspooked\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n23\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\t13th\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t3\tnmod:poss\t_\t_\n3\tstudy\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n6\tspanned\t_\tVERB\tVBD\t_\t3\tacl:relcl\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t1962-85\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tperiod\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n12\tsince\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\tbeen\t_\tAUX\tVBN\t_\t14\tauxpass\t_\t_\n14\tshown\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n16\tbe\t_\tAUX\tVB\t_\t17\tauxpass\t_\t_\n17\tjinxed\t_\tVERB\tVBN\t_\t14\txcomp\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tunlucky\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tchoice\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tdata\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\t'70s\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\ttook\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tfalls\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tnine\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\ttimes\t_\tNOUN\tNNS\t_\t7\tnmod:tmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\trow\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tFriday\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tyou-know-what\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tdate\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tplus\t_\tNOUN\tNN\t_\t4\txcomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tnot\t_\tADV\tRB\t_\t12\tneg\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tminus\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\taccording\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\tto\t_\tADP\tTO\t_\t17\tmwe\t_\t_\n19\tYale\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tHirsch\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tcollector\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tlore\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tstudy\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tfound\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\t82\t_\tNUM\tCD\t_\t14\tnsubj\t_\t_\n7\tFridays\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n8\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n9\t13th\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1940-1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tperiod\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\thad\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n15\thigher\t_\tADJ\tJJR\t_\t17\tdep\t_\t_\n16\tthan\t_\tADP\tIN\t_\t17\tdep\t_\t_\n17\taverage\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\treturns\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\thigher\t_\tADJ\tJJR\t_\t21\tdep\t_\t_\n21\teven\t_\tADV\tRB\t_\t18\tamod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tFridays\t_\tPROPN\tNNPS\t_\t21\tnmod\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tgeneral\t_\tADJ\tJJ\t_\t23\tacl\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n27\twhich\t_\tPRON\tWDT\t_\t28\tnsubj\t_\t_\n28\ttend\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n29\tto\t_\tPART\tTO\t_\t32\tmark\t_\t_\n30\tbe\t_\tVERB\tVB\t_\t32\tcop\t_\t_\n31\tstrong\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tdays\t_\tNOUN\tNNS\t_\t28\txcomp\t_\t_\n33\tfor\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tstock\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tprices\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t7\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n3\tonly\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n4\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\t13th\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tyear\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tDow\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tJones\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tIndustrial\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tAverage\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\trose\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tabout\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tfour\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tpoints\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tProfessor\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKolb\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\toriginal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tstudy\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\ttitled\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\t13th\t_\tPROPN\tNNP\t_\t8\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tPart\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tVII\t_\tPROPN\tNNP\t_\t11\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tpublished\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n18\ttongue-in-cheek\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tsimilar\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tvein\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\the\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tanniversary\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\t1987\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcrash\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\tSaturday\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tfull\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmoon\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n20\tcould\t_\tAUX\tMD\t_\t22\taux\t_\t_\n21\thave\t_\tAUX\tVB\t_\t22\taux\t_\t_\n22\tplayed\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tpart\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\ttoo\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tactivity\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\treminiscent\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthose\t_\tPRON\tDT\t_\t1\tnmod\t_\t_\n4\tduring\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t28\tmark\t_\t_\n10\tas\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tplummeted\t_\tVERB\tVBD\t_\t28\tadvcl\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\ttrading\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tactivity\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tescalated\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n19\tsome\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tphone\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcalls\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tmakers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tover-the-counter\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tstocks\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\twent\t_\tVERB\tVBD\t_\t1\tparataxis\t_\t_\n29\tunanswered\t_\tADJ\tJJ\t_\t28\txcomp\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tget\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n6\tdealers\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tanswer\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n9\ttheir\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tphones\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tRobert\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tKing\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tsenior\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\tvice\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tpresident\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tOTC\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\tat\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tRobinson-Humphrey\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCo.\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tAtlanta\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tIt\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n4\t-LCB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tlike\t_\tADP\tIN\t_\t8\tdep\t_\t_\n6\t-RCB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n9\tbefore\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tBlack\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tMonday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n13\ttwo\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tyears\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n15\tago\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tWhether\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tunanswered\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tphone\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tcalls\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\thad\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n6\tany\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teffect\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\tnot\t_\tADV\tRB\t_\t5\tconj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\tNasdaq\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tsank\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tfar\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tless\t_\tADV\tRBR\t_\t13\tadvmod\t_\t_\n16\tthan\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tthose\t_\tPRON\tDT\t_\t15\tnmod\t_\t_\n18\ton\t_\tADP\tIN\t_\t24\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n20\tNew\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tYork\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tAmerican\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n24\texchanges\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tNonetheless\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tNasdaq\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tComposite\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tIndex\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\tsuffered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n9\tbiggest\t_\tADJ\tJJS\t_\t11\tamod\t_\t_\n10\tpoint\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdecline\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tsixth\t_\tADJ\tJJ\t_\t11\tconj\t_\t_\n18\tworst\t_\tADJ\tJJS\t_\t17\tdep\t_\t_\n19\tever\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tdiving\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n22\t14.90\t_\tNUM\tCD\t_\t21\tdobj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\t3\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t22\tconj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n29\t467.29\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTen\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tpoints\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tdrop\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\toccurred\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tduring\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\t45\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tminutes\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\ttrading\t_\tVERB\tVBG\t_\t11\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcomparison\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tYork\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tStock\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tExchange\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tComposite\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t5.8\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t10\tnmod:tmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tAmerican\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tStock\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tExchange\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tComposite\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tfell\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n21\t4\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tOct.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n3\t16\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tNasdaq\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tComposite\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\t16.18\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpoints\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n15\t3.8\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t12\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n18\tfollowed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n19\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n21\tdevastating\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n22\t46.12-point\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tor\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n25\t11\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\t%\t_\tSYM\tNN\t_\t22\tconj\t_\t_\n27\tslide\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n29\tthree\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\tdays\t_\tNOUN\tNNS\t_\t31\tnmod:npmod\t_\t_\n31\tlater\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tNasdaq\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tvolume\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n4\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t167.7\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n11\tonly\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tfifth\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tbusiest\t_\tADJ\tJJS\t_\t13\tdep\t_\t_\n15\tday\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n16\tso\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tfar\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tsingle-day\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trecord\t_\tNOUN\tNN\t_\t9\tnsubjpass\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\t288\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tshares\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\twas\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tOct.\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t21\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tThere\t_\tADV\tRB\t_\t6\tnsubj\t_\t_\n3\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t20\tccomp\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tvolume\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t13\tcop\t_\t_\n12\tjust\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\timpossible\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tget\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n17\tmoved\t_\tVERB\tVBN\t_\t15\tdep\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tE.E.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n23\tBuzzy\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n25\tGeduld\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tHerzog\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n31\tHeine\t_\tPROPN\tNNP\t_\t33\tappos\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n33\tGeduld\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tNew\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n37\tYork\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tcompany\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n39\tthat\t_\tPRON\tWDT\t_\t40\tnsubj\t_\t_\n40\tmakes\t_\tVERB\tVBZ\t_\t38\tacl:relcl\t_\t_\n41\tmarkets\t_\tNOUN\tNNS\t_\t40\tdobj\t_\t_\n42\tin\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\tthousands\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tOTC\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tissues\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t9\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcomplaints\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tunanswered\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tphone\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tcalls\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tregional\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbrokers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\trather\t_\tADV\tRB\t_\t12\tcc\t_\t_\n14\tthan\t_\tADP\tIN\t_\t13\tmwe\t_\t_\n15\tindividual\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tKing\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tRobinson-Humphrey\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tothers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n8\tquick\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tadd\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tbelieve\t_\tVERB\tVBP\t_\t10\tccomp\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tproblem\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstemmed\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\tmore\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ttraders\t_\tNOUN\tNNS\t_\t21\tnmod:poss\t_\t_\n20\t'\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tinability\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\thandle\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tvolume\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tcalls\t_\tNOUN\tNNS\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\trather\t_\tADV\tRB\t_\t21\tcc\t_\t_\n30\tthan\t_\tADP\tIN\t_\t29\tmwe\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tdeliberate\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tattempt\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n34\tto\t_\tPART\tTO\t_\t35\tmark\t_\t_\n35\tavoid\t_\tVERB\tVB\t_\t33\tacl\t_\t_\n36\tmaking\t_\tVERB\tVBG\t_\t35\txcomp\t_\t_\n37\ttrades\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsubject\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsore\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tone\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tNasdaq\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n11\tmarket-making\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tcompanies\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t17\tnsubjpass\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n16\twidely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tcriticized\t_\tVERB\tVBN\t_\t12\tacl:relcl\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n20\tago\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\tfollowing\t_\tVERB\tVBG\t_\t22\tcase\t_\t_\n22\tcomplaints\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tinvestors\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\twho\t_\tPRON\tWP\t_\t28\tnsubj\t_\t_\n26\tcould\t_\tAUX\tMD\t_\t28\taux\t_\t_\n27\tn't\t_\tPART\tRB\t_\t28\tneg\t_\t_\n28\treach\t_\tVERB\tVB\t_\t24\tacl:relcl\t_\t_\n29\ttheir\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\tbrokers\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tor\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n32\ttrade\t_\tVERB\tVB\t_\t28\tconj\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tchaos\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tcrash\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPeter\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDaPuzzo\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thead\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tretail\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tequity\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tShearson\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tLehman\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tHutton\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tdeclared\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n17\tIt\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\thour\t_\tNOUN\tNN\t_\t14\tccomp\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\ttrading\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t21\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\ttoo\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tphones\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n6\tringing\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n8\ttoo\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tmany\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tthings\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n11\thappening\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texpect\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmakers\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n17\tbe\t_\tVERB\tVB\t_\t19\tcop\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tefficient\t_\tADJ\tJJ\t_\t13\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\trobots\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t4\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tintentional\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twe\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n7\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n8\tall\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tbusy\t_\tADJ\tJJ\t_\t4\tparataxis\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tJames\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTarantino\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thead\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tOTC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tHambrecht\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tQuist\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFrancisco\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n19\tIt\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n20\twas\t_\tVERB\tVBD\t_\t21\tcop\t_\t_\n21\tjust\t_\tADV\tRB\t_\t16\tccomp\t_\t_\n22\tlike\t_\tADP\tIN\t_\t21\tcase\t_\t_\n23\ttwo\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tyears\t_\tNOUN\tNNS\t_\t25\tnmod:npmod\t_\t_\n25\tago\t_\tADV\tRB\t_\t21\tdep\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tEverybody\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t3\taux\t_\t_\n3\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tdo\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsame\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tthing\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tsame\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttime\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tJeremiah\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMullins\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tOTC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\ttrading\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tchief\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n8\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tDean\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tWitter\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tReynolds\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tYork\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tproudly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n19\this\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tcompany\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n21\texecuted\t_\tVERB\tVBD\t_\t16\tccomp\t_\t_\n22\tevery\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\torder\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\treceived\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tclose\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\ttrading\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tadded\t_\tVERB\tVBD\t_\t10\tparataxis\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tonly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tcall\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tMarket\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tmakers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tkeep\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tsupplies\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstock\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\thand\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tmaintain\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n11\torderly\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\ttrading\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n14\timbalances\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n15\toccur\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tdays\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n3\tlike\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n9\tmust\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tbuy\t_\tVERB\tVB\t_\t7\tccomp\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tsellers\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n15\tno\t_\tDET\tDT\t_\t16\tneg\t_\t_\n16\tone\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\telse\t_\tADV\tRB\t_\t16\tamod\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n19\twilling\t_\tADJ\tJJ\t_\t10\tadvcl\t_\t_\n20\tto\t_\tPART\tTO\t_\t19\txcomp\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tselling\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tfrenzied\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tprices\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n8\tfall\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n9\tsteeply\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tfast\t_\tADV\tRB\t_\t9\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tfaced\t_\tVERB\tVBN\t_\t22\tadvcl\t_\t_\n6\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tpossibility\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\theavy\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlosses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tinventories\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmakers\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n21\tthemselves\t_\tPRON\tPRP\t_\t20\tnmod:npmod\t_\t_\n22\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tdumping\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n24\tshares\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n26\texacerbating\t_\tVERB\tVBG\t_\t22\txcomp\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tslide\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tOTC\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tstock\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tprices\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tmakers\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n8\tselling\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\ttraders\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n3\twith\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n4\tprofits\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tsagging\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tWall\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tStreet\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tsince\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tcrash\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tcompanies\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n15\tkept\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tsmaller\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tstockpiles\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\thand\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tTarantino\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tHambrecht\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\t&\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tQuist\t_\tPROPN\tNNP\t_\t4\tconj\t_\t_\n7\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprices\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tfell\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n11\twithout\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\ttrades\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\ttaking\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n14\tplace\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n17\tmarket\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmakers\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tkept\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n20\tdropping\t_\tVERB\tVBG\t_\t19\txcomp\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tprices\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tat\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\twhich\t_\tPRON\tWDT\t_\t27\tnmod\t_\t_\n25\tthey\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tbuy\t_\tVERB\tVB\t_\t22\tacl:relcl\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tEveryone\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\thitting\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n5\teveryone\t_\tNOUN\tNN\t_\t8\tnmod:poss\t_\t_\n6\telse\t_\tADV\tRB\t_\t5\tamod\t_\t_\n7\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n8\tbid\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tSo\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n3\twhile\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n4\tOTC\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tcompanies\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tincurred\t_\tVERB\tVBD\t_\t13\tadvcl\t_\t_\n7\tlosses\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\ttrading\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tofficials\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tdamage\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n16\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n17\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n18\tas\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tbad\t_\tADJ\tJJ\t_\t13\tccomp\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t24\tmark\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n23\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t1987\t_\tNUM\tCD\t_\t19\tdep\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tTwo\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tyears\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tago\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\twere\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tcarrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n8\thuge\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinventories\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tthat\t_\tPRON\tDT\t_\t15\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t15\tcop\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tbig\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tculprit\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tknow\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tanyone\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\tcarrying\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n8\tbig\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinventories\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tKing\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tRobinson-Humphrey\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tTony\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCecin\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\thead\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tequity\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\ttrading\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tPiper\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tJaffray\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tHopwood\t_\tPROPN\tNNP\t_\t9\tconj\t_\t_\n14\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tMinneapolis\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n19\tPiper\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tJaffray\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n21\tactually\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tmade\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n23\tmoney\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n24\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thelped\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n4\this\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tinventory\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tthird\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n9\tsmaller\t_\tADJ\tJJR\t_\t2\tccomp\t_\t_\n10\tnow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tthan\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t9\tadvcl\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tyears\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n16\tago\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tJoseph\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHardiman\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tSecurities\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tDealers\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n14\toversees\t_\tVERB\tVBZ\t_\t8\tacl:relcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\tNasdaq\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n17\tcomputerized\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tsystem\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n23\tdespite\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\trush\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tselling\t_\tVERB\tVBG\t_\t25\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n29\the\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n30\tnever\t_\tADV\tRB\t_\t31\tneg\t_\t_\n31\tconsidered\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n32\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tsituation\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n34\tan\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\t``\t_\tPUNCT\t``\t_\t36\tpunct\t_\t_\n36\temergency\t_\tNOUN\tNN\t_\t31\txcomp\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpace\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\ttrading\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\torderly\t_\tADJ\tJJ\t_\t11\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n10\the\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tNasdaq\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tSmall\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tOrder\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tExecution\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSystem\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n8\tworked\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tbeautifully\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n12\tas\t_\tSCONJ\tIN\t_\t13\tdep\t_\t_\n13\tdid\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tautomated\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsystem\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n17\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tlarger\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n19\ttrades\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n21\taccording\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n22\tto\t_\tADP\tTO\t_\t21\tmwe\t_\t_\n23\tMr.\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tHardiman\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tshock\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tanother\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tsteep\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tplunge\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tundoubtedly\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tshake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tmany\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t18\tnmod:poss\t_\t_\n17\t'\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tconfidence\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tpast\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tOTC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tthrived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tfirm\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tbase\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsmall-investor\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tparticipation\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBecause\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\ttrading\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tvolume\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\treturned\t_\tVERB\tVBN\t_\t18\tadvcl\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n10\tpre-crash\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tlevels\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\ttraders\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tOTC\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tofficials\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n18\thope\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tdamage\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n21\two\t_\tAUX\tMD\t_\t24\taux\t_\t_\n22\tn't\t_\tPART\tRB\t_\t24\tneg\t_\t_\n23\tbe\t_\tVERB\tVB\t_\t24\tcop\t_\t_\n24\tpermanent\t_\tADJ\tJJ\t_\t18\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tworried\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\twere\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tjust\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tstarting\t_\tVERB\tVBG\t_\t15\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpublic\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tconfidence\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\tback\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tlamented\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\tMr.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMullins\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tDean\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tWitter\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tMore\t_\tADV\tRBR\t_\t2\tadvmod\t_\t_\n2\ttroubling\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprospect\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\toverall\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcollapse\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tpermanently\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\terode\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbase\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tsmall-investor\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tsupport\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tOTC\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tmarket\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n24\twas\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\tstruggling\t_\tVERB\tVBG\t_\t17\tacl:relcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\trebuild\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\twake\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n33\tOctober\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n34\t1987\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n35\tcrash\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCecin\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tPiper\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tJaffray\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tsome\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\taction\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tpolicy\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmakers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tallay\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n15\tinvestor\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tfears\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\two\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\ttake\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n5\tmuch\t_\tADJ\tJJ\t_\t4\tdobj\t_\t_\n6\tmore\t_\tADV\tRBR\t_\t5\tamod\t_\t_\n7\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tscare\t_\tVERB\tVB\t_\t4\tadvcl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\thell\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tout\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tretail\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tinvestors\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tsellers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n5\tcame\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcorners\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tOTC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n14\tbig\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tsmall\t_\tADJ\tJJ\t_\t14\tconj\t_\t_\n17\tinstitutional\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestors\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tas\t_\tADV\tRB\t_\t18\tcc\t_\t_\n21\twell\t_\tADV\tRB\t_\t20\tmwe\t_\t_\n22\tas\t_\tADP\tIN\t_\t20\tmwe\t_\t_\n23\tindividual\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tinvestors\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmakers\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tgrateful\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttraders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tsell\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\torders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tgenerally\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tranged\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t20,000\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\t50,000\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tshares\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n17\tcompared\t_\tVERB\tVBN\t_\t19\tcase\t_\t_\n18\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tblocks\t_\tNOUN\tNNS\t_\t9\tadvcl\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\t500,000\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\tshares\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tor\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n24\tmore\t_\tADJ\tJJR\t_\t22\tnummod\t_\t_\n25\ttwo\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tyears\t_\tNOUN\tNNS\t_\t27\tnmod:npmod\t_\t_\n27\tago\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tShearson\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tMr.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tDaPuzzo\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tretail\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\tnervously\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tsold\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n13\tnever\t_\tADV\tRB\t_\t14\tneg\t_\t_\n14\treturned\t_\tVERB\tVBD\t_\t9\tconj\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tbargain-hunt\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInstitutional\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\taux\t_\t_\n7\tselling\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n9\tthroughout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tlast\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tweek\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tlock\t_\tVERB\tVB\t_\t7\tadvcl\t_\t_\n14\tin\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\thandsome\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tgains\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n17\tmade\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n18\tthrough\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tthird\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tquarter\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n23\twere\t_\tVERB\tVBD\t_\t24\tcop\t_\t_\n24\tcalmer\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tgood\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tselling\t_\tVERB\tVBG\t_\t6\tnmod\t_\t_\n9\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tinstitutions\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tnot\t_\tADV\tRB\t_\t16\tneg\t_\t_\n14\tas\t_\tADP\tIN\t_\t15\tdep\t_\t_\n15\tmuch\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tpanic\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n19\tMr.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tDaPuzzo\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tsell\t_\tVERB\tVB\t_\t11\tadvcl\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tsome\t_\tDET\tDT\t_\t11\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tthem\t_\tPRON\tPRP\t_\t8\tnmod\t_\t_\n11\tput\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshares\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tback\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n15\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshelf\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t11\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tsome\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tbigger\t_\tADJ\tJJR\t_\t10\tamod\t_\t_\n9\tinstitutional\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tinvestors\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tplaced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tbids\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbuy\t_\tVERB\tVB\t_\t12\tacl\t_\t_\n15\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tOTC\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\twhose\t_\tPRON\tWP$\t_\t19\tnmod:poss\t_\t_\n19\tprices\t_\tNOUN\tNNS\t_\t21\tnsubjpass\t_\t_\n20\twere\t_\tAUX\tVBD\t_\t21\tauxpass\t_\t_\n21\tbeaten\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n22\tdown\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\taddition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\tMr.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tDaPuzzo\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tcomputer-guided\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tprogram\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tselling\t_\tNOUN\tNN\t_\t29\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tOTC\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tstocks\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tRussell\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tIndex\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\t2000\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tsmall\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tstocks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tStandard\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n24\t&\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tPoor\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\t's\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n27\t500-stock\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tIndex\t_\tPROPN\tNNP\t_\t16\tconj\t_\t_\n29\tsent\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n30\toccasional\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n32\twaves\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n33\t``\t_\tPUNCT\t``\t_\t32\tpunct\t_\t_\n34\tthrough\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tmarket\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tNasdaq\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tbiggest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\tauxpass\t_\t_\n6\thammered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\t100\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tIndex\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tlargest\t_\tADJ\tJJS\t_\t9\tamod\t_\t_\n8\tnonfinancial\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tissues\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tincluding\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n13\tbig\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tOTC\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\ttechnology\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tissues\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n18\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n19\t4.2\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\tor\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n23\t19.76\t_\tNUM\tCD\t_\t20\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n26\t449.33\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tNasdaq\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tFinancial\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tIndex\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tgiant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinsurance\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tbanking\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t9.31\t_\tNUM\tCD\t_\t13\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n19\t462.98\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tOTC\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tonly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\thandful\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\ttakeover-related\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tfell\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tsharply\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCellular\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCommunications\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tinstance\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\toffered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tbuy\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tLIN\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tBroadcasting\t_\tPROPN\tNNP\t_\t11\tdobj\t_\t_\n14\tas\t_\tADV\tRB\t_\t13\tcc\t_\t_\n15\twell\t_\tADV\tRB\t_\t14\tmwe\t_\t_\n16\tas\t_\tADP\tIN\t_\t14\tmwe\t_\t_\n17\tMetromedia\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tNew\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n20\tYork\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tCity\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tcellular\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\ttelephone\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tinterests\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n27\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tseparate\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\ttransaction\t_\tNOUN\tNN\t_\t32\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n32\tsell\t_\tVERB\tVB\t_\t11\tconj\t_\t_\n33\tcertain\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tMcCaw\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tproperties\t_\tNOUN\tNNS\t_\t32\tdobj\t_\t_\n36\tto\t_\tADP\tTO\t_\t38\tcase\t_\t_\n37\tContel\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tCellular\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMcCaw\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tlost\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t8\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\t%\t_\tSYM\tNN\t_\t2\tdobj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\t3\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t1/2\t_\tNUM\tCD\t_\t4\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\t40\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tLIN\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tBroadcasting\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n4\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t5\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t1/2\t_\tNUM\tCD\t_\t4\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n9\t5\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\t107\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t1/2\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tturnover\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tboth\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tissues\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n7\troughly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tnormal\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\ta\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tday\t_\tNOUN\tNN\t_\t25\tnmod\t_\t_\n4\twhen\t_\tADV\tWRB\t_\t10\tadvmod\t_\t_\n5\tnegative\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\ttakeover-related\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tnews\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\tdid\t_\tAUX\tVBD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tsit\t_\tVERB\tVB\t_\t3\tacl:relcl\t_\t_\n11\twell\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n15\tCommercial\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tIntertech\t_\tPROPN\tNNP\t_\t25\tnsubj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmaker\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n20\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tengineered\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tmetal\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tparts\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\tHaas\t_\tPROPN\tNNP\t_\t29\tnsubj\t_\t_\n27\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tPartners\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\tadvised\t_\tVERB\tVBD\t_\t25\tccomp\t_\t_\n30\tit\t_\tPRON\tPRP\t_\t29\tdobj\t_\t_\n31\tthat\t_\tSCONJ\tIN\t_\t35\tmark\t_\t_\n32\tit\t_\tPRON\tPRP\t_\t35\tnsubj\t_\t_\n33\tdoes\t_\tAUX\tVBZ\t_\t35\taux\t_\t_\n34\tn't\t_\tPART\tRB\t_\t35\tneg\t_\t_\n35\tplan\t_\tVERB\tVB\t_\t29\tccomp\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\tpursue\t_\tVERB\tVB\t_\t35\txcomp\t_\t_\n38\tits\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n39\tpreviously\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\treported\t_\tVERB\tVBN\t_\t43\tamod\t_\t_\n41\t$\t_\tSYM\t$\t_\t43\tamod\t_\t_\n42\t27.50-a-share\t_\tADJ\tJJ\t_\t41\tdep\t_\t_\n43\tbid\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n44\tto\t_\tPART\tTO\t_\t45\tmark\t_\t_\n45\tbuy\t_\tVERB\tVB\t_\t43\tacl\t_\t_\n46\tthe\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tcompany\t_\tNOUN\tNN\t_\t45\tdobj\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tCommercial\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tIntertech\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tplummeted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t6\t_\tNUM\tCD\t_\t3\tdobj\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\t26\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissues\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tcompanies\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\twith\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tties\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tjunk\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tbond\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\talso\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\ttumbled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tOTC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n6\tFirst\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tExecutive\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbuyer\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n12\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n14\thigh-risk\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\thigh-yield\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tissues\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n19\tslid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t2\t_\tNUM\tCD\t_\t19\tdobj\t_\t_\n21\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n22\t12\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\t1/4\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tother\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tOTC\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tissues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tIntel\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t2\t_\tNUM\tCD\t_\t10\tcompound\t_\t_\n10\t1/8\t_\tNUM\tCD\t_\t8\tdobj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\t33\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t7/8\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n15\tLaidlaw\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tTransportation\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tlost\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n18\t1\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t1/8\t_\tNUM\tCD\t_\t17\tdobj\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t19\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\t1/2\t_\tNUM\tCD\t_\t17\tnmod\t_\t_\n23\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tAmerican\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tdepositary\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\treceipts\t_\tNOUN\tNNS\t_\t35\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tJaguar\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n30\twere\t_\tVERB\tVBD\t_\t35\tcop\t_\t_\n31\toff\t_\tADV\tRB\t_\t35\tadvmod\t_\t_\n32\t1/4\t_\tNUM\tCD\t_\t31\tnmod:npmod\t_\t_\n33\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n34\t10\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\t1/4\t_\tNUM\tCD\t_\t8\tconj\t_\t_\n36\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n37\tMCI\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tCommunications\t_\tPROPN\tNNP\t_\t39\tnsubj\t_\t_\n39\tslipped\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n40\t2\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n41\t1/4\t_\tNUM\tCD\t_\t39\tdobj\t_\t_\n42\tto\t_\tADP\tTO\t_\t44\tcase\t_\t_\n43\t43\t_\tNUM\tCD\t_\t44\tcompound\t_\t_\n44\t1/2\t_\tNUM\tCD\t_\t39\tnmod\t_\t_\n45\t;\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n46\tApple\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tComputer\t_\tPROPN\tNNP\t_\t48\tnsubj\t_\t_\n48\tfell\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n49\t3\t_\tNUM\tCD\t_\t48\tdobj\t_\t_\n50\tto\t_\tADP\tTO\t_\t52\tcase\t_\t_\n51\t45\t_\tNUM\tCD\t_\t52\tcompound\t_\t_\n52\t3/4\t_\tNUM\tCD\t_\t48\tnmod\t_\t_\n53\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n54\tNike\t_\tPROPN\tNNP\t_\t55\tnsubj\t_\t_\n55\tdropped\t_\tVERB\tVBD\t_\t8\tconj\t_\t_\n56\t2\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n57\t1/4\t_\tNUM\tCD\t_\t55\tdobj\t_\t_\n58\tto\t_\tADP\tTO\t_\t60\tcase\t_\t_\n59\t66\t_\tNUM\tCD\t_\t60\tcompound\t_\t_\n60\t3/4\t_\tNUM\tCD\t_\t55\tnmod\t_\t_\n61\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n3\tOctober\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t13\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t1989\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n2\tkey\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tforeign\t_\tADJ\tJJ\t_\t3\tconj\t_\t_\n6\tannual\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinterest\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\trates\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n9\tbelow\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tare\t_\tVERB\tVBP\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tguide\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tgeneral\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tlevels\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tdo\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\talways\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\trepresent\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n21\tactual\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttransactions\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tPRIME\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tRATE\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t10\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\t1/2\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbase\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tcorporate\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tloans\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tlarge\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n10\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n11\tcenter\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n12\tcommercial\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tbanks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tFEDERAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tFUNDS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\t13/16\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n4\thigh\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n6\t8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t3\tappos\t_\t_\n9\tlow\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\t8\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\t5/8\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t3\tappos\t_\t_\n14\tnear\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tclosing\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbid\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\t8\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n19\t3/4\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t3\tappos\t_\t_\n21\toffered\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tReserves\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\ttraded\t_\tVERB\tVBD\t_\t1\tacl\t_\t_\n3\tamong\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tcommercial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbanks\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tovernight\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tuse\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tamounts\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t10\tnmod\t_\t_\n13\t1\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t12\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tFulton\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n4\tPrebon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tU.S.A\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n9\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tDISCOUNT\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tRATE\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t7\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n6\tdepository\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinstitutions\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tNew\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tYork\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tReserve\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tBank\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCALL\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tMONEY\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n2\t3/4\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n3\t%\t_\tSYM\tNN\t_\t6\tdep\t_\t_\n4\tto\t_\tADP\tTO\t_\t6\tdep\t_\t_\n5\t10\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcharge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tloans\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tto\t_\tADP\tTO\t_\t6\tcase\t_\t_\n6\tbrokers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tstock\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\texchange\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tcollateral\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tplaced\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n4\tdirectly\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tGeneral\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tMotors\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tAcceptance\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8.60\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t30\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tdep\t_\t_\n5\t44\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tdays\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n7\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n8\t8.55\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n10\t45\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n11\tto\t_\tADP\tTO\t_\t12\tdep\t_\t_\n12\t59\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tdays\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n14\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n15\t8.375\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n17\t60\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tdep\t_\t_\n19\t79\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tdays\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n21\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n22\t8.50\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n24\t80\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n25\tto\t_\tADP\tTO\t_\t26\tdep\t_\t_\n26\t89\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\tdays\t_\tNOUN\tNNS\t_\t23\tnmod:npmod\t_\t_\n28\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n29\t8.25\t_\tNUM\tCD\t_\t30\tnummod\t_\t_\n30\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n31\t90\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n32\tto\t_\tADP\tTO\t_\t33\tdep\t_\t_\n33\t119\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\tdays\t_\tNOUN\tNNS\t_\t30\tnmod:npmod\t_\t_\n35\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n36\t8.125\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n37\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n38\t120\t_\tNUM\tCD\t_\t40\tcompound\t_\t_\n39\tto\t_\tADP\tTO\t_\t40\tdep\t_\t_\n40\t149\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n41\tdays\t_\tNOUN\tNNS\t_\t37\tnmod:npmod\t_\t_\n42\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n43\t8\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n44\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n45\t150\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n46\tto\t_\tADP\tTO\t_\t47\tdep\t_\t_\n47\t179\t_\tNUM\tCD\t_\t48\tnummod\t_\t_\n48\tdays\t_\tNOUN\tNNS\t_\t44\tnmod:npmod\t_\t_\n49\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n50\t7.625\t_\tNUM\tCD\t_\t51\tnummod\t_\t_\n51\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n52\t180\t_\tNUM\tCD\t_\t54\tcompound\t_\t_\n53\tto\t_\tADP\tTO\t_\t54\tdep\t_\t_\n54\t270\t_\tNUM\tCD\t_\t55\tnummod\t_\t_\n55\tdays\t_\tNOUN\tNNS\t_\t51\tnmod:npmod\t_\t_\n56\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCOMMERCIAL\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tPAPER\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tHigh-grade\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tunsecured\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tnotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tsold\t_\tVERB\tVBN\t_\t3\tacl\t_\t_\n5\tthrough\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tdealers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmajor\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tcorporations\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tmultiples\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\t$\t_\tSYM\t$\t_\t14\tdep\t_\t_\n14\t1,000\t_\tNUM\tCD\t_\t11\tnmod\t_\t_\n15\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t8.65\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t30\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdays\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.55\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\t60\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tdays\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.55\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\t90\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCERTIFICATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tOF\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tDEPOSIT\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t8.15\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\tone\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.15\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.13\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tmonths\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n16\t8.11\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n18\tsix\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n21\t8.08\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n23\tone\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tyear\t_\tNOUN\tNN\t_\t22\tdep\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\ttop\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trates\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tpaid\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n6\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tmajor\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tNew\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tYork\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n11\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tprimary\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\tnew\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tissues\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tnegotiable\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tC.D.s\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\tusually\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tamounts\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t25\tdep\t_\t_\n24\t1\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tmillion\t_\tNUM\tCD\t_\t21\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tmore\t_\tADJ\tJJR\t_\t25\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tminimum\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tunit\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t6\tdep\t_\t_\n6\t100,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tTypical\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\trates\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tsecondary\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8.65\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\tone\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tmonth\t_\tNOUN\tNN\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.65\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\tthree\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmonths\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.55\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\tsix\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tmonths\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBANKERS\t_\tNOUN\tNNS\t_\t2\tcompound\t_\t_\n2\tACCEPTANCES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t8.52\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t30\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tdays\t_\tNOUN\tNNS\t_\t2\tnmod:npmod\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t8.37\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\t60\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tdays\t_\tNOUN\tNNS\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n11\t8.15\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n13\t90\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tdays\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n15\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n16\t7.98\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n18\t120\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tdays\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n21\t7.92\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n23\t150\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n24\tdays\t_\tNOUN\tNNS\t_\t22\tnmod:npmod\t_\t_\n25\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n26\t7.80\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n27\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n28\t180\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tdays\t_\tNOUN\tNNS\t_\t27\tnmod:npmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNegotiable\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tbank-backed\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n4\tbusiness\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tcredit\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tinstruments\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n7\ttypically\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tfinancing\t_\tVERB\tVBG\t_\t6\tacl\t_\t_\n9\tan\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\timport\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\torder\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tLATE\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tEURODOLLARS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n2\t13/16\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n3\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n4\tto\t_\tADP\tTO\t_\t7\tdep\t_\t_\n5\t8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n6\t11/16\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n8\tone\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tmonth\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n10\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n11\t8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n12\t13/16\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tdep\t_\t_\n15\t8\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n16\t11/16\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tmonths\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n20\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n21\t8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n22\t13/16\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n23\t%\t_\tSYM\tNN\t_\t27\tdep\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tdep\t_\t_\n25\t8\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n26\t11/16\t_\tNUM\tCD\t_\t27\tcompound\t_\t_\n27\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n28\tthree\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tmonths\t_\tNOUN\tNNS\t_\t27\tnmod:npmod\t_\t_\n30\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n31\t8\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n32\t3/4\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n33\t%\t_\tSYM\tNN\t_\t37\tdep\t_\t_\n34\tto\t_\tADP\tTO\t_\t37\tdep\t_\t_\n35\t8\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n36\t5/8\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n38\tfour\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tmonths\t_\tNOUN\tNNS\t_\t37\tnmod:npmod\t_\t_\n40\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n41\t8\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n42\t11/16\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n43\t%\t_\tSYM\tNN\t_\t47\tdep\t_\t_\n44\tto\t_\tADP\tTO\t_\t47\tdep\t_\t_\n45\t8\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n46\t9/16\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n47\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n48\tfive\t_\tNUM\tCD\t_\t49\tnummod\t_\t_\n49\tmonths\t_\tNOUN\tNNS\t_\t47\tnmod:npmod\t_\t_\n50\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n51\t8\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n52\t5/8\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n53\t%\t_\tSYM\tNN\t_\t57\tdep\t_\t_\n54\tto\t_\tADP\tTO\t_\t57\tdep\t_\t_\n55\t8\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n56\t1/2\t_\tNUM\tCD\t_\t57\tcompound\t_\t_\n57\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n58\tsix\t_\tNUM\tCD\t_\t59\tnummod\t_\t_\n59\tmonths\t_\tNOUN\tNNS\t_\t57\tnmod:npmod\t_\t_\n60\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tLONDON\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tINTERBANK\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\tOFFERED\t_\tVERB\tVBN\t_\t4\tamod\t_\t_\n4\tRATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tLIBOR\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n8\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\t8\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\t3/4\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n4\tone\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\tmonth\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n6\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n7\t8\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t3/4\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tmonths\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n13\t8\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t9/16\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n16\tsix\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tmonths\t_\tNOUN\tNNS\t_\t15\tnmod:npmod\t_\t_\n18\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n19\t8\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t9/16\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\t%\t_\tSYM\tNN\t_\t3\tdep\t_\t_\n22\tone\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyear\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\taverage\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tinterbank\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\toffered\t_\tVERB\tVBN\t_\t6\tamod\t_\t_\n6\trates\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tdollar\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdeposits\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tLondon\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n14\tbased\t_\tVERB\tVBN\t_\t16\tcase\t_\t_\n15\ton\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tquotations\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n17\tat\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tfive\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n19\tmajor\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tbanks\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFOREIGN\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tPRIME\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tRATES\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tCanada\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t13.50\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\t%\t_\tSYM\tNN\t_\t1\tdep\t_\t_\n4\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n5\tGermany\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t8.50\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t5\tdep\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n9\tJapan\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n10\t4.875\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdep\t_\t_\n12\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n13\tSwitzerland\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n14\t8.50\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdep\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n17\tBritain\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n18\t15\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\t%\t_\tSYM\tNN\t_\t17\tdep\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThese\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\trate\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindications\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tdirectly\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tcomparable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tlending\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tpractices\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tvary\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n12\twidely\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tlocation\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTREASURY\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tBILLS\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\tResults\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n4\tTuesday\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tOctober\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t10\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\t1989\t_\tNUM\tCD\t_\t4\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\tauction\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tshort-term\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n14\tU.S.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tgovernment\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tbills\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tsold\t_\tVERB\tVBN\t_\t16\tacl\t_\t_\n19\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tdiscount\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tface\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tvalue\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tunits\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n29\t10,000\t_\tNUM\tCD\t_\t31\tcompound\t_\t_\n30\tto\t_\tADP\tTO\t_\t31\tdep\t_\t_\n31\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n32\t1\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t7.63\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t13\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tweeks\t_\tNOUN\tNNS\t_\t2\tdep\t_\t_\n5\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n6\t7.60\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n8\t26\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tweeks\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHOME\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLOAN\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMORTGAGE\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCORP\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n7\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n8\tFreddie\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tMac\t_\tPROPN\tNNP\t_\t5\tappos\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\tPosted\t_\tVERB\tVBN\t_\t2\tamod\t_\t_\n2\tyields\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\t30-year\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmortgage\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcommitments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tdelivery\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\twithin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t30\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t9.91\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tstandard\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tconventional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfixedrate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmortgages\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\t7.875\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t2\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t19\tamod\t_\t_\n14\trate\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n15\tcapped\t_\tVERB\tVBN\t_\t19\tamod\t_\t_\n16\tone-year\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n17\tadjustable\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\trate\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmortgages\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tFEDERAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tNATIONAL\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMORTGAGE\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tASSOCIATION\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t7\tpunct\t_\t_\n6\tFannie\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tMae\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t-RRB-\t_\tPUNCT\t-RRB-\t_\t7\tpunct\t_\t_\n9\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tPosted\t_\tVERB\tVBN\t_\t2\tamod\t_\t_\n2\tyields\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\t30\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n5\tyear\t_\tNOUN\tNN\t_\t7\tamod\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcommitments\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tdelivery\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\twithin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t-LRB-\t_\tPUNCT\t-LRB-\t_\t14\tpunct\t_\t_\n14\tpriced\t_\tVERB\tVBN\t_\t7\tdep\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tpar\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\t-RRB-\t_\tPUNCT\t-RRB-\t_\t14\tpunct\t_\t_\n\n1\t9.86\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tstandard\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tconventional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfixed-rate\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmortgages\t_\tNOUN\tNNS\t_\t2\tappos\t_\t_\n8\t;\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n9\t8.85\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\t%\t_\tSYM\tNN\t_\t2\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t6/2\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t18\tamod\t_\t_\n14\tcapped\t_\tVERB\tVBD\t_\t13\tdep\t_\t_\n15\tone-year\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\tadjustable\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\trate\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmortgages\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSource\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n3\tTelerate\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tSystems\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tInc\t_\tPROPN\tNNP\t_\t1\tdep\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tMERRILL\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tLYNCH\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tREADY\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tASSETS\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tTRUST\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t8.33\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\t%\t_\tSYM\tNN\t_\t0\troot\t_\t_\n3\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAnnualized\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\taverage\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\trate\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\treturn\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\texpenses\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n8\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tpast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\t30\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdays\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n14\tnot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tforecast\t_\tNOUN\tNN\t_\t3\tdep\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tfuture\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\treturns\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPension\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tfunds\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tinsurers\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbehemoths\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tinvesting\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tworld\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tbegan\t_\tVERB\tVBD\t_\t12\tccomp\t_\t_\n15\tscooping\t_\tVERB\tVBG\t_\t14\txcomp\t_\t_\n16\tup\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\tstocks\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\tduring\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n20\t's\t_\tPART\tPOS\t_\t19\tcase\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\trout\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tthey\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tplan\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tbuy\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t5\tdobj\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tRightly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n2\tor\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\twrongly\t_\tADV\tRB\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tgiant\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tinstitutional\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestors\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tappear\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\tbe\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\tfighting\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tlatest\t_\tADJ\tJJS\t_\t15\tamod\t_\t_\n15\twar\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tby\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tapplying\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tlesson\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n20\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\tlearned\t_\tVERB\tVBD\t_\t19\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tOctober\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\t1987\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcrash\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n27\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n28\tBuying\t_\tVERB\tVBG\t_\t32\tcsubj\t_\t_\n29\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tbottom\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n32\tpays\t_\tVERB\tVBZ\t_\t19\tparataxis\t_\t_\n33\toff\t_\tADP\tRP\t_\t32\tcompound:prt\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTo\t_\tPART\tTO\t_\t3\tmark\t_\t_\n2\tbe\t_\tVERB\tVB\t_\t3\tcop\t_\t_\n3\tsure\t_\tADJ\tJJ\t_\t8\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n7\tmight\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tput\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\taway\t_\tADP\tRP\t_\t8\tcompound:prt\t_\t_\n10\ttheir\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tcheckbooks\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\thurry\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n15\tif\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tstocks\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n17\topen\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n18\tsharply\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tlower\t_\tADJ\tJJR\t_\t17\tadvmod\t_\t_\n20\ttoday\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n3\tstill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tpanic\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n6\tbail\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n7\tout\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\ttheir\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tperformance\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tindicates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\two\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\tabandon\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tstocks\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\tunless\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tconditions\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tget\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n15\tfar\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tworse\t_\tADJ\tJJR\t_\t14\txcomp\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tLast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\twe\t_\tPRON\tPRP\t_\t7\tnsubjpass\t_\t_\n6\tgot\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\trewarded\t_\tVERB\tVBN\t_\t22\tccomp\t_\t_\n8\tfor\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n9\tgoing\t_\tVERB\tVBG\t_\t7\tadvcl\t_\t_\n10\tout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tbuying\t_\tVERB\tVBG\t_\t9\tconj\t_\t_\n13\tstocks\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t19\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpanic\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tworst\t_\tADJ\tJJS\t_\t9\tadvcl\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tJohn\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tW.\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tRogers\t_\tPROPN\tNNP\t_\t22\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tpresident\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tChicago-based\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n30\tAriel\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tCapital\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tManagement\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tInc.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twhich\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n36\tmanages\t_\tVERB\tVBZ\t_\t33\tacl:relcl\t_\t_\n37\t$\t_\tSYM\t$\t_\t36\tdobj\t_\t_\n38\t1.1\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\tbillion\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tstocks\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRogers\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tspent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\thalf\t_\tDET\tPDT\t_\t6\tdet:predet\t_\t_\n5\this\t_\tPRON\tPRP$\t_\t6\tnmod:poss\t_\t_\n6\tcash\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\thand\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t3\tnmod:tmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tour\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tfavorite\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tstocks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tfallen\t_\tVERB\tVBN\t_\t14\tacl:relcl\t_\t_\n18\tapart\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tinvest\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\trest\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tif\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tweakens\t_\tVERB\tVBZ\t_\t4\tadvcl\t_\t_\n11\tfurther\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tDenver-based\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n2\tportfolio\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\tmanager\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n4\tJames\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCraig\t_\tPROPN\tNNP\t_\t8\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tdaunted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\trout\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\tshaved\t_\tVERB\tVBD\t_\t8\tadvcl\t_\t_\n14\t$\t_\tSYM\t$\t_\t13\tdobj\t_\t_\n15\t40\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tvalue\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n22\t$\t_\tSYM\t$\t_\t26\tamod\t_\t_\n23\t752\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tJanus\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tFund\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n27\the\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\toversees\t_\tVERB\tVBZ\t_\t26\tacl:relcl\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twaited\t_\tVERB\tVBD\t_\t17\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tmake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\tall\t_\tDET\tPDT\t_\t10\tdet:predet\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tprogram\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\ttrades\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thad\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tkicked\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n13\tthrough\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\the\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tjumped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tinto\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t:\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tspent\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\t$\t_\tSYM\t$\t_\t3\tdobj\t_\t_\n5\t30\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n7\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tlast\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\thalf-hour\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmoney\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmanagers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\topened\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\twallets\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tbuying\t_\tVERB\tVBG\t_\t27\tccomp\t_\t_\n5\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tclose\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n8\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n12\tI\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t'll\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\taux\t_\t_\n15\tbuying\t_\tVERB\tVBG\t_\t4\tconj\t_\t_\n16\tagain\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\tbecause\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\tI\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tknow\t_\tVERB\tVBP\t_\t15\tadvcl\t_\t_\n20\twe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\t're\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n22\tgetting\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n23\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tvalue\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tFrederick\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tA.\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tMoran\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\tpresident\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n33\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n34\tMoran\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n35\tAsset\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tManagement\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tInc.\t_\tPROPN\tNNP\t_\t32\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n39\tGreenwich\t_\tPROPN\tNNP\t_\t37\tappos\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tConn\t_\tPROPN\tNNP\t_\t39\tappos\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tjustification\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfundamental\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tlevel\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tUnlike\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmutual\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfunds\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t8\tnsubjpass\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tforced\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsell\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tstockholdings\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\trush\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\twithdraw\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tmoney\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n19\tbig\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n21\tsuch\t_\tADJ\tJJ\t_\t24\tcase\t_\t_\n22\tas\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\tpension\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tfunds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tinsurance\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tcompanies\t_\tNOUN\tNNS\t_\t24\tconj\t_\t_\n28\tcan\t_\tAUX\tMD\t_\t29\taux\t_\t_\n29\tdecide\t_\tVERB\tVB\t_\t0\troot\t_\t_\n30\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n31\tride\t_\tVERB\tVB\t_\t29\txcomp\t_\t_\n32\tout\t_\tADP\tRP\t_\t31\tcompound:prt\t_\t_\n33\tmarket\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tstorms\t_\tNOUN\tNNS\t_\t31\tdobj\t_\t_\n35\twithout\t_\tSCONJ\tIN\t_\t36\tmark\t_\t_\n36\tjettisoning\t_\tVERB\tVBG\t_\t31\tadvcl\t_\t_\n37\tstock\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t29\tpunct\t_\t_\n\n1\tMost\t_\tADV\tRBS\t_\t2\tadvmod\t_\t_\n2\toften\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tdo\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tjust\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tthat\t_\tDET\tDT\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tstocks\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n11\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tproved\t_\tVERB\tVBN\t_\t5\tadvcl\t_\t_\n13\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t18\tcop\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tbest-performing\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tlong-term\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestment\t_\tNOUN\tNN\t_\t12\txcomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\tattracting\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n21\tabout\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tdobj\t_\t_\n23\t1\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\ttrillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\tfrom\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tpension\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tfunds\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n28\talone\t_\tADV\tRB\t_\t27\tamod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tIf\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tbought\t_\tVERB\tVBD\t_\t10\tadvcl\t_\t_\n5\tafter\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tyou\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tdid\t_\tVERB\tVBD\t_\t19\tccomp\t_\t_\n11\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\tvery\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\twell\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n14\toff\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tbottom\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tStephen\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tB.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTimbers\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tchief\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n25\tinvestment\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tofficer\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n27\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tChicago-based\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n29\tKemper\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tFinancial\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tServices\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tInc\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n2\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n3\t56\t_\tNUM\tCD\t_\t4\tcompound\t_\t_\n4\tbillion\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n5\tCalifornia\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tPublic\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tEmployees\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tRetirement\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSystem\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tone\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n14\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t$\t_\tSYM\t$\t_\t14\tdobj\t_\t_\n16\t1\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tbillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tto\t_\tADP\tTO\t_\t21\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tstock\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tportfolio\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t24\tnmod:npmod\t_\t_\n24\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlast\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcrash\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\ttaught\t_\tVERB\tVBD\t_\t31\tccomp\t_\t_\n6\tinstitutional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tinvestors\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\thave\t_\tVERB\tVBP\t_\t5\tccomp\t_\t_\n11\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n12\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n13\tlong-term\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tholders\t_\tNOUN\tNNS\t_\t10\txcomp\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n18\tthey\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n19\tca\t_\tAUX\tMD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\treact\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tshort-term\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tevents\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tgood\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n27\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tbad\t_\tADJ\tJJ\t_\t26\tconj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t31\tpunct\t_\t_\n31\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n32\tStephen\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tL.\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tNesbitt\t_\tPROPN\tNNP\t_\t31\tdep\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t34\tpunct\t_\t_\n36\tsenior\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\tvice\t_\tNOUN\tNN\t_\t38\tcompound\t_\t_\n38\tpresident\t_\tNOUN\tNN\t_\t34\tappos\t_\t_\n39\tfor\t_\tADP\tIN\t_\t42\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n41\tpension\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n42\tconsultants\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n43\tWilshire\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tAssociates\t_\tPROPN\tNNP\t_\t42\tdep\t_\t_\n45\tin\t_\tADP\tIN\t_\t47\tcase\t_\t_\n46\tSanta\t_\tPROPN\tNNP\t_\t47\tcompound\t_\t_\n47\tMonica\t_\tPROPN\tNNP\t_\t44\tnmod\t_\t_\n48\t,\t_\tPUNCT\t,\t_\t47\tpunct\t_\t_\n49\tCalif\t_\tPROPN\tNNP\t_\t47\tappos\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t31\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n2\tThose\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tpulled\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tout\t_\tADP\tRP\t_\t4\tadvmod\t_\t_\n6\t-LRB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tstocks\t_\tNOUN\tNNS\t_\t5\tdep\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n10\tregretted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t10\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t10\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n18\tso\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n19\tI\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tdoubt\t_\tVERB\tVBP\t_\t10\tparataxis\t_\t_\n21\tyou\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n22\t'll\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tsee\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n24\tany\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tsignificant\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tchanges\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n28\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tinstitutional\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tportfolios\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n31\tas\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tresult\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tFriday\t_\tPROPN\tNNP\t_\t37\tnmod:poss\t_\t_\n36\t's\t_\tPART\tPOS\t_\t35\tcase\t_\t_\n37\tdecline\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tas\t_\tSCONJ\tIN\t_\t4\tmark\t_\t_\n4\tmeasured\t_\tVERB\tVBN\t_\t17\tdep\t_\t_\n5\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tStandard\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n8\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tPoor\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n11\t500-stock\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tindex\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n14\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n15\tbeen\t_\tVERB\tVBN\t_\t17\tcop\t_\t_\n16\tstellar\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tperformers\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n21\trising\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n22\t27.97\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\t%\t_\tSYM\tNN\t_\t21\tdobj\t_\t_\n24\tbefore\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tplunge\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n29\texcluding\t_\tVERB\tVBG\t_\t30\tcase\t_\t_\n30\tdividends\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tslump\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tleaves\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tinvestors\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tahead\t_\tADV\tRB\t_\t5\txcomp\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t10\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\t20\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t7\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twell\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n14\tabove\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tannual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\taverage\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tstocks\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n20\tover\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tseveral\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdecades\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tgo\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n5\tdown\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t400\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tpoints\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tstill\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\thave\t_\tVERB\tVB\t_\t4\tconj\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tgood\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tJames\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tD.\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tAwad\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\tpresident\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n25\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tNew\t_\tPROPN\tNNP\t_\t27\tamod\t_\t_\n27\tYork-based\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n28\tBMI\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tCapital\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tCorp\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAwad\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tworries\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n10\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n13\tdown\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\t800\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\t900\t_\tNUM\tCD\t_\t14\tconj\t_\t_\n17\tpoints\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tnext\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tfew\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tdays\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tcan\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\thappen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tbefore\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tturn\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n8\taround\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tdiscerns\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tparallels\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tincluding\t_\tVERB\tVBG\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\temphasis\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttakeover\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tstocks\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tre-emergence\t_\tNOUN\tNN\t_\t12\tconj\t_\t_\n19\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tcomputerized\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\ttrading\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tonly\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tthing\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n5\tyou\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n6\tdo\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\thave\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t21\tparataxis\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t21\tcop\t_\t_\n16\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n17\t`\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n18\tportfolio\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n19\tinsurance\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\t'\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tphenomenon\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n22\toverlaid\t_\tVERB\tVBN\t_\t21\tacl\t_\t_\n23\ton\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\trest\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n27\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n\n1\tMost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n2\tinstitutional\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n5\tabandoned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\tportfolio\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\tinsurance\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\thedging\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\ttechnique\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\twhich\t_\tPRON\tWDT\t_\t15\tnsubjpass\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t15\tauxpass\t_\t_\n14\twidely\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tthought\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n17\thave\t_\tAUX\tVB\t_\t18\taux\t_\t_\n18\tworsened\t_\tVERB\tVBN\t_\t15\txcomp\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\t1987\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tcrash\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t3\tneg\t_\t_\n2\treally\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tinsurance\t_\tNOUN\tNN\t_\t8\tccomp\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttactic\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n7\twas\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tdesigned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsoften\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tblow\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tdeclining\t_\tVERB\tVBG\t_\t16\tamod\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tprices\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n18\tgenerate\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n19\tan\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\toffsetting\t_\tVERB\tVBG\t_\t21\tamod\t_\t_\n21\tprofit\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tby\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n23\tselling\t_\tVERB\tVBG\t_\t18\tadvcl\t_\t_\n24\twaves\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tS&P\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tfutures\t_\tNOUN\tNNS\t_\t28\tcompound\t_\t_\n28\tcontracts\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tits\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n3\tseverest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\ttest\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\t$\t_\tSYM\t$\t_\t21\tnsubj\t_\t_\n8\t60\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\tbillion\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tportfolio\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tinsurance\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\teffect\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\tcrash\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n19\tdid\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\twork\t_\tVERB\tVB\t_\t0\troot\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tas\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tstock\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tbuyers\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tdisappeared\t_\tVERB\tVBD\t_\t21\tadvcl\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\tstock\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tfutures\t_\tNOUN\tNNS\t_\t28\tconj\t_\t_\n31\tprices\t_\tNOUN\tNNS\t_\t32\tnsubj\t_\t_\n32\tbecame\t_\tVERB\tVBD\t_\t26\tconj\t_\t_\n33\tdisconnected\t_\tVERB\tVBN\t_\t32\txcomp\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\twithout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tportfolio\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tinsurance\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tmarket\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tconditions\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t9\tcop\t_\t_\n9\tgrim\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\tmoney\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tmanagers\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tNeil\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWeisman\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhose\t_\tPRON\tWP$\t_\t9\tnmod:poss\t_\t_\n5\tNew\t_\tPROPN\tNNP\t_\t6\tamod\t_\t_\n6\tYork-based\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n7\tChilmark\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tCapital\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tPartners\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n10\thad\t_\tAUX\tVBD\t_\t11\taux\t_\t_\n11\tconverted\t_\tVERB\tVBN\t_\t2\tacl:relcl\t_\t_\n12\t85\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n16\t$\t_\tSYM\t$\t_\t20\tamod\t_\t_\n17\t220\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n18\tmillion\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n19\tinvestment\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tpool\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tcash\t_\tVERB\tVB\t_\t11\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\trecent\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\the\t_\tPRON\tPRP\t_\t30\tnsubjpass\t_\t_\n29\twas\t_\tAUX\tVBD\t_\t30\tauxpass\t_\t_\n30\tbesieged\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n31\tby\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tWall\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tStreet\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tfirms\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n35\tFriday\t_\tPROPN\tNNP\t_\t30\tnmod:tmod\t_\t_\n36\tasking\t_\tVERB\tVBG\t_\t30\tdep\t_\t_\n37\thim\t_\tPRON\tPRP\t_\t36\tdobj\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\ttake\t_\tVERB\tVB\t_\t36\txcomp\t_\t_\n40\tstock\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n41\toff\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\ttheir\t_\tPRON\tPRP$\t_\t43\tnmod:poss\t_\t_\n43\thands\t_\tNOUN\tNNS\t_\t39\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tgot\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n4\tcalls\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tblock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\thouses\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n9\tasking\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n10\tus\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tif\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n12\twe\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\twant\t_\tVERB\tVBP\t_\t9\tadvcl\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tmake\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tbids\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tanything\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tMr.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tWeisman\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\twho\t_\tPRON\tWP\t_\t37\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n27\thappy\t_\tADJ\tJJ\t_\t37\tccomp\t_\t_\n28\twith\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\this\t_\tPRON\tPRP$\t_\t30\tnmod:poss\t_\t_\n30\treturns\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n31\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tinvestments\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tchalked\t_\tVERB\tVBN\t_\t30\tacl\t_\t_\n34\tup\t_\tADP\tRP\t_\t33\tcompound:prt\t_\t_\n35\tearlier\t_\tADV\tRBR\t_\t33\tadvmod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t37\tpunct\t_\t_\n37\tdeclined\t_\tVERB\tVBD\t_\t23\tacl:relcl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\toffers\t_\tNOUN\tNNS\t_\t37\tdobj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tWeisman\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tpredicts\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tappear\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tstabilize\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tnext\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tfew\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tdays\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n14\tbefore\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tdeclining\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n16\tagain\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n18\ttrapping\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n19\tmore\t_\tADJ\tJJR\t_\t20\tamod\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t14\tccomp\t_\t_\n4\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n5\twill\t_\tAUX\tMD\t_\t10\taux\t_\t_\n6\tbe\t_\tVERB\tVB\t_\t10\tcop\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\trigor\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\tmortis\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\trally\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n13\the\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tbrought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\treprieve\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tmanagers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\twhose\t_\tPRON\tWP$\t_\t12\tnmod:poss\t_\t_\n11\tinvestment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tstyles\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tput\t_\tVERB\tVBN\t_\t9\tacl:relcl\t_\t_\n15\tthem\t_\tPRON\tPRP\t_\t14\tdobj\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\todds\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\trally\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEspecially\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tgleeful\t_\tADJ\tJJ\t_\t3\tdep\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tshort\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsellers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twho\t_\tPRON\tWP\t_\t11\tnsubjpass\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tpounded\t_\tVERB\tVBN\t_\t6\tacl:relcl\t_\t_\n12\tby\t_\tADP\tIN\t_\t17\tcase\t_\t_\n13\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tmarket\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tclimb\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshorts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsell\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tborrowed\t_\tVERB\tVBN\t_\t5\tamod\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n7\thoping\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n10\tby\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\treplacing\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n12\tthem\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\tlater\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tlower\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tprice\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tnation\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tlargest\t_\tADJ\tJJS\t_\t6\tamod\t_\t_\n5\tshort-selling\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\toperation\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n8\tFeshbach\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tBrothers\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tPalo\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tAlto\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tCalif.\t_\tPROPN\tNNP\t_\t12\tappos\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t17\tnsubj\t_\t_\n17\tsaid\t_\tVERB\tVBD\t_\t9\tacl:relcl\t_\t_\n18\tlast\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tMay\t_\tPROPN\tNNP\t_\t17\tnmod:tmod\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\tshort\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tpositions\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n24\thad\t_\tAUX\tVBD\t_\t25\taux\t_\t_\n25\tshown\t_\tVERB\tVBN\t_\t17\tccomp\t_\t_\n26\tlosses\t_\tNOUN\tNNS\t_\t25\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t10\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n33\tup\t_\tADP\tIN\t_\t25\tadvmod\t_\t_\n34\tto\t_\tADP\tTO\t_\t36\tcase\t_\t_\n35\tthat\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tpoint\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t2\tdep\t_\t_\n2\tthat\t_\tDET\tWDT\t_\t5\tnsubj\t_\t_\n3\tnow\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tchanged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tahead\t_\tADV\tRB\t_\t13\tccomp\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tyear\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tbecause\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tof\t_\tADP\tIN\t_\t8\tmwe\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tfirm\t_\tNOUN\tNN\t_\t18\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\tKurt\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tFeshbach\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t're\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tkilling\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n10\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\thad\t_\tVERB\tVBD\t_\t5\tconj\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tgood\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t11\tnmod:tmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tFood\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tDrug\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tAdministration\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tspokesman\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tJeff\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tNesbit\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tagency\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\thas\t_\tAUX\tVBZ\t_\t12\taux\t_\t_\n12\tturned\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n13\tover\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tevidence\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tcriminal\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tinvestigation\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n19\tconcerning\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n20\tVitarine\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPharmaceuticals\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tInc.\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n23\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tAttorney\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\toffice\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n29\tin\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tBaltimore\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tNeither\t_\tDET\tDT\t_\t2\tcc:preconj\t_\t_\n2\tVitarine\t_\tPROPN\tNNP\t_\t19\tnsubjpass\t_\t_\n3\tnor\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tany\t_\tDET\tDT\t_\t2\tconj\t_\t_\n5\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n7\tSpringfield\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n8\tGardens\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n10\tN.Y.\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t14\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tofficials\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\temployees\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t19\taux\t_\t_\n18\tbeen\t_\tAUX\tVBN\t_\t19\tauxpass\t_\t_\n19\tcharged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n20\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tany\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcrimes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tVitarine\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\twon\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tapproval\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tmarket\t_\tVERB\tVB\t_\t3\tacl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tversion\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tblood\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n11\tpressure\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmedicine\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n14\tacknowledged\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsubstituted\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n18\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n19\tSmithKline\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tBeecham\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tPLC\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tproduct\t_\tNOUN\tNN\t_\t17\tdobj\t_\t_\n23\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n25\town\t_\tADJ\tJJ\t_\t17\tnmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\ttests\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tNesbit\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tFDA\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tasked\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n9\tBolar\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tPharmaceutical\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\trecall\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tretail\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tlevel\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n19\turinary\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\ttract\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tantibiotic\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcompany\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tcomplied\t_\tVERB\tVBN\t_\t15\tccomp\t_\t_\n9\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthat\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\trequest\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tspokesman\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tBolar\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tsubject\t_\tNOUN\tNN\t_\t1\tappos\t_\t_\n5\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tcriminal\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tinvestigation\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tby\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tFDA\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tInspector\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tGeneral\t_\tPROPN\tNNP\t_\t17\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\toffice\t_\tNOUN\tNN\t_\t11\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tHealth\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tHuman\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tServices\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tDepartment\t_\tPROPN\tNNP\t_\t20\tconj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n26\tonly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tagreed\t_\tVERB\tVBD\t_\t51\tccomp\t_\t_\n28\tto\t_\tPART\tTO\t_\t29\tmark\t_\t_\n29\trecall\t_\tVERB\tVB\t_\t27\txcomp\t_\t_\n30\ttwo\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tstrengths\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tversion\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tMacrodantin\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n37\t``\t_\tPUNCT\t``\t_\t29\tpunct\t_\t_\n38\tas\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n39\tfar\t_\tADV\tRB\t_\t40\tadvmod\t_\t_\n40\tdown\t_\tADV\tRB\t_\t29\tadvmod\t_\t_\n41\tas\t_\tADP\tIN\t_\t43\tcase\t_\t_\n42\tdirect\t_\tADJ\tJJ\t_\t43\tamod\t_\t_\n43\tcustomers\t_\tNOUN\tNNS\t_\t40\tnmod\t_\t_\n44\t,\t_\tPUNCT\t,\t_\t43\tpunct\t_\t_\n45\tmostly\t_\tADV\tRB\t_\t43\tadvmod\t_\t_\n46\twholesalers\t_\tNOUN\tNNS\t_\t43\tdep\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t51\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t51\tpunct\t_\t_\n49\tMr.\t_\tPROPN\tNNP\t_\t50\tcompound\t_\t_\n50\tNesbit\t_\tPROPN\tNNP\t_\t51\tnsubj\t_\t_\n51\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t51\tpunct\t_\t_\n\n1\tBolar\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tCopiague\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tN.Y.\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tearlier\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n9\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tvoluntary\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\trecall\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n14\tboth\t_\tDET\tDT\t_\t21\tdet\t_\t_\n15\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n16\t100\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmilligram\t_\tNOUN\tNN\t_\t21\tamod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\t50\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmilligram\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n21\tversions\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tdrug\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFDA\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tpresented\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\tevidence\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n9\tuncovered\t_\tVERB\tVBD\t_\t7\tacl:relcl\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\tindicating\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n15\tBolar\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tsubstituted\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tbrand-name\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tproduct\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t16\tnmod\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tgain\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n25\tgovernment\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tapproval\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\tsell\t_\tVERB\tVB\t_\t26\tacl\t_\t_\n29\tgeneric\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tversions\t_\tNOUN\tNNS\t_\t28\tdobj\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tMacrodantin\t_\tPROPN\tNNP\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBolar\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tdenied\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tswitched\t_\tVERB\tVBD\t_\t3\tccomp\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tbrand-name\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tproduct\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t12\tnmod:poss\t_\t_\n12\town\t_\tADJ\tJJ\t_\t6\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttesting\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tWest\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tGerman\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tretailer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n5\tASKO\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tDeutsche\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tKaufhaus\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tAG\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n9\tplans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tchallenge\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tlegality\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n16\twidely\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\temployed\t_\tVERB\tVBN\t_\t19\tamod\t_\t_\n18\tanti-takeover\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tdefense\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tcompanies\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tNetherlands\t_\tPROPN\tNNPS\t_\t21\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\teventual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tcourt\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tdecision\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tbecome\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlandmark\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n9\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tDutch\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tcorporate\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlaw\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n13\tbecause\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlawsuit\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n16\tASKO\t_\tPROPN\tNNP\t_\t17\tnsubj\t_\t_\n17\tplans\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tfile\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\twould\t_\tAUX\tMD\t_\t23\taux\t_\t_\n21\tbe\t_\tVERB\tVB\t_\t23\tcop\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tfirst\t_\tADJ\tJJ\t_\t6\tadvcl\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tchallenge\t_\tVERB\tVB\t_\t23\tacl\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tentire\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tprinciple\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tpractice\t_\tNOUN\tNN\t_\t28\tconj\t_\t_\n31\tof\t_\tSCONJ\tIN\t_\t33\tmark\t_\t_\n32\tcompanies\t_\tNOUN\tNNS\t_\t33\tnsubj\t_\t_\n33\tissuing\t_\tVERB\tVBG\t_\t28\tacl\t_\t_\n34\tvoting\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tpreferred\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tshares\t_\tNOUN\tNNS\t_\t33\tdobj\t_\t_\n37\tto\t_\tADP\tTO\t_\t39\tcase\t_\t_\n38\tmanagement-controlled\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\ttrusts\t_\tNOUN\tNNS\t_\t33\tnmod\t_\t_\n40\tto\t_\tPART\tTO\t_\t41\tmark\t_\t_\n41\tdilute\t_\tVERB\tVB\t_\t33\tadvcl\t_\t_\n42\tvoting\t_\tNOUN\tNN\t_\t43\tcompound\t_\t_\n43\tpower\t_\tNOUN\tNN\t_\t41\tdobj\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tcommon\t_\tADJ\tJJ\t_\t46\tamod\t_\t_\n46\tstockholders\t_\tNOUN\tNNS\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tUp\t_\tADP\tIN\t_\t12\tadvmod\t_\t_\n2\tto\t_\tADP\tTO\t_\t3\tcase\t_\t_\n3\tnow\t_\tADV\tRB\t_\t1\tnmod\t_\t_\n4\tonly\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tspecific\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taspects\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthese\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdefenses\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n11\tbeen\t_\tAUX\tVBN\t_\t12\tauxpass\t_\t_\n12\tchallenged\t_\tVERB\tVBN\t_\t21\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tthough\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n15\tunsuccessfully\t_\tADV\tRB\t_\t12\tadvcl\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n17\tASKO\t_\tPROPN\tNNP\t_\t20\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tDutch\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tlawyers\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n21\tnoted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tShould\t_\tAUX\tMD\t_\t4\taux\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcourts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tuphold\t_\tVERB\tVB\t_\t16\tadvcl\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tvalidity\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\ttype\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tdefense\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\tASKO\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t16\taux\t_\t_\n15\tthen\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\task\t_\tVERB\tVB\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcourt\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\toverturn\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n21\tsuch\t_\tDET\tPDT\t_\t24\tdet:predet\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tvote-diluting\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmaneuver\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\trecently\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tdeployed\t_\tVERB\tVBN\t_\t24\tacl\t_\t_\n27\tby\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tKoninklijke\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tAhold\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tNV\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tASKO\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n4\tDutch-based\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n5\tinternational\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tfood\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tretailer\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n9\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n10\treasonable\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgrounds\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tissue\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tpreferred\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tstock\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfriendly\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\ttrust\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n21\tthus\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tdilute\t_\tVERB\tVB\t_\t13\tconj\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tworth\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t24\tcc\t_\t_\n26\tvoting\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpower\t_\tNOUN\tNN\t_\t24\tconj\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tASKO\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n31\tother\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tshareholders\t_\tNOUN\tNNS\t_\t29\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tSpeaking\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n2\tthrough\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tDutch\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tlawyers\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tASKO\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\talso\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tholds\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\t15\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tstake\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tAhold\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubjpass\t_\t_\n2\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n3\tpreviously\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tASKO\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\theld\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\t13.6\t_\tNUM\tCD\t_\t9\tcompound\t_\t_\n9\t%\t_\tSYM\tNN\t_\t10\tamod\t_\t_\n10\tstake\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tthat\t_\tPRON\tWDT\t_\t13\tnsubjpass\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\tauxpass\t_\t_\n13\taccumulated\t_\tVERB\tVBN\t_\t10\tacl:relcl\t_\t_\n14\tsince\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJuly\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tAhold\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\this\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n7\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t9\tcop\t_\t_\n9\tconfident\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n12\town\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tposition\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tpropriety\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tpreferred-share\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tissue\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\ttermed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tASKO\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tlegal\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tactions\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\tas\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tunproductive\t_\tADJ\tJJ\t_\t2\tadvcl\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tinternational\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tcooperation\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tamong\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tEuropean\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tretailers\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tChase\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n2\tManhattan\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tBank\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tChairman\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tWillard\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tButcher\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tconservative\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tbanker\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tloyal\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tRepublican\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tFriday\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tmorning\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n20\the\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\thad\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n22\tfew\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tkind\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\twords\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t30\tcase\t_\t_\n26\tPresident\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tBush\t_\tPROPN\tNNP\t_\t30\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\teconomic\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tpolicy-making\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t38\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t38\tccomp\t_\t_\n4\tsome\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tvery\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsignificant\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tissues\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n8\tout\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tthere\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tsuch\t_\tADJ\tJJ\t_\t15\tcase\t_\t_\n12\tas\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfiscal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tdeficit\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\ttrade\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tdeficit\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n21\tour\t_\tPRON\tPRP$\t_\t22\tnmod:poss\t_\t_\n22\trelations\t_\tNOUN\tNNS\t_\t15\tappos\t_\t_\n23\twith\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tJapan\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n26\tthat\t_\tPRON\tWDT\t_\t27\tnsubj\t_\t_\n27\thave\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n28\tto\t_\tPART\tTO\t_\t31\tmark\t_\t_\n29\tbe\t_\tVERB\tVB\t_\t31\tcop\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tsubject\t_\tNOUN\tNN\t_\t27\txcomp\t_\t_\n32\tof\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tmajor\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tinitiatives\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t38\tpunct\t_\t_\n37\the\t_\tPRON\tPRP\t_\t38\tnsubj\t_\t_\n38\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n39\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tan\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tinterview\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t38\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tlike\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tsee\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tthat\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tinitiative\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tI\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\thave\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n13\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tshot\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tagenda\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\thours\t_\tNOUN\tNNS\t_\t4\tnmod:npmod\t_\t_\n4\tlater\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tdropped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t190\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tPoliticians\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\ttried\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tfinger\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\teach\t_\tDET\tDT\t_\t4\tdobj\t_\t_\n6\tother\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tblame\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n11\talthough\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n12\tmany\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tanalysts\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tdoubt\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n16\tWashington\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n17\twas\t_\tVERB\tVBD\t_\t19\tcop\t_\t_\n18\tsingly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tresponsible\t_\tADJ\tJJ\t_\t14\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tWall\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tStreet\t_\tPROPN\tNNP\t_\t24\tnmod:poss\t_\t_\n23\t's\t_\tPART\tPOS\t_\t22\tcase\t_\t_\n24\twoes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tButcher\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tcomments\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tmake\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tone\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\tthing\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tclear\t_\tADJ\tJJ\t_\t15\tdep\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n11\tSome\t_\tDET\tDT\t_\t15\tnsubj\t_\t_\n12\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tWall\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tStreet\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\twonder\t_\tVERB\tVBP\t_\t6\txcomp\t_\t_\n16\tif\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tanyone\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tcharge\t_\tNOUN\tNN\t_\t15\tadvcl\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\teconomic\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tpolicy\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthis\t_\tPRON\tDT\t_\t1\tdobj\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n2\tBy\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\t11:59\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tp.m.\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\ttonight\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tPresident\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBush\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n9\tmust\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\torder\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\t$\t_\tSYM\t$\t_\t10\tdobj\t_\t_\n12\t16\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tbillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tautomatic\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\tacross-the-board\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tcuts\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tgovernment\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tspending\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcomply\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n24\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tGramm-Rudman\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tbudget\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tlaw\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcuts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\tnecessary\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tbecause\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n6\tCongress\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tadministration\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n10\thave\t_\tAUX\tVBP\t_\t11\taux\t_\t_\n11\tfailed\t_\tVERB\tVBN\t_\t4\tadvcl\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\treach\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tagreement\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tdeficit-cutting\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbill\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\tsimply\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\thave\t_\tVERB\tVB\t_\t33\tccomp\t_\t_\n7\tstrong\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tleadership\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\ttry\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treduce\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdeficit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tmake\t_\tVERB\tVB\t_\t12\tconj\t_\t_\n17\ttough\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tchoices\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n21\tHouse\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n22\tBudget\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n23\tCommittee\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n24\tChairman\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tLeon\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tPanetta\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n27\t-LRB-\t_\tPUNCT\t-LRB-\t_\t28\tpunct\t_\t_\n28\tD.\t_\tPROPN\tNNP\t_\t26\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tCalif\t_\tPROPN\tNNP\t_\t28\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n32\t-RRB-\t_\tPUNCT\t-RRB-\t_\t28\tpunct\t_\t_\n33\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n34\tyesterday\t_\tNOUN\tNN\t_\t33\tnmod:tmod\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tNBC\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tNews\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n38\t's\t_\tPART\tPOS\t_\t37\tcase\t_\t_\n39\t``\t_\tPUNCT\t``\t_\t37\tpunct\t_\t_\n40\tMeet\t_\tPROPN\tNNP\t_\t42\tdep\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tPress\t_\tPROPN\tNNP\t_\t37\tdep\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t33\tpunct\t_\t_\n44\t''\t_\tPUNCT\t''\t_\t33\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tlast\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n6\tweeks\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tBush\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tadministration\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tFederal\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tReserve\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n16\tbeen\t_\tAUX\tVBN\t_\t17\tauxpass\t_\t_\n17\tengaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tsemi-public\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tbattle\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\tover\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tinternational\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\teconomic\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tpolicy\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\ttrying\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tpush\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdollar\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tlower\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n11\t;\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tFed\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n14\thas\t_\tAUX\tVBZ\t_\t16\taux\t_\t_\n15\tbeen\t_\tAUX\tVBN\t_\t16\taux\t_\t_\n16\tresisting\t_\tVERB\tVBG\t_\t5\tparataxis\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n2\tOne\t_\tNUM\tCD\t_\t14\tnsubj\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tthings\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\tthat\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n7\tcontinues\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tworry\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tme\t_\tPRON\tPRP\t_\t9\tdobj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n12\tthis\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tmonetary\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\twarfare\t_\tNOUN\tNN\t_\t26\tccomp\t_\t_\n15\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tTreasury\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tDepartment\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tFederal\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\tReserve\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBoard\t_\tPROPN\tNNP\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n26\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\tLawrence\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tKudlow\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n31\tBear\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t31\tpunct\t_\t_\n33\tStearns\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n34\t&\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n35\tCo.\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n36\teconomist\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n38\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n39\tABC\t_\tPROPN\tNNP\t_\t43\tnmod:poss\t_\t_\n40\t's\t_\tPART\tPOS\t_\t39\tcase\t_\t_\n41\t``\t_\tPUNCT\t``\t_\t43\tpunct\t_\t_\n42\tThis\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tWeek\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n\n1\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tsent\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tout\t_\tADP\tRP\t_\t5\tadvmod\t_\t_\n7\tconfusing\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tsignals\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\tabout\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n11\tresponse\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\trecent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tspate\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tairline\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\ttakeovers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tLast\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t8\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n4\tTransportation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tSecretary\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tSam\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSkinner\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tforced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tNorthwest\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tAirlines\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\treduce\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tstake\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\theld\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tKLM\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tRoyal\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tDutch\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAirlines\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tsince\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\trun\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tinto\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\topposition\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n8\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tTreasury\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tWhite\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tHouse\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n15\tover\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthat\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tdecision\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tkept\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tmum\t_\tADJ\tJJ\t_\t4\txcomp\t_\t_\n6\ton\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n7\thow\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n8\this\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tdecision\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\tmight\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\taffect\t_\tVERB\tVB\t_\t5\tadvcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tbid\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tUnited\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tAirlines\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n19\tincludes\t_\tVERB\tVBZ\t_\t13\tacl:relcl\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tbig\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tstake\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tBritish\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tAirways\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tPLC\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tuncertainty\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n5\tabout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tWashington\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n7\t's\t_\tPART\tPOS\t_\t6\tcase\t_\t_\n8\tanti-takeover\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tpolicy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n10\twas\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\tone\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\treason\t_\tNOUN\tNN\t_\t3\tccomp\t_\t_\n13\tthat\t_\tADP\tIN\t_\t20\tadvmod\t_\t_\n14\tfinancing\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tUnited\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tAirlines\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\ttakeover\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tfell\t_\tVERB\tVBD\t_\t12\tdep\t_\t_\n21\tthrough\t_\tADP\tRP\t_\t20\tcompound:prt\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tevent\t_\tNOUN\tNN\t_\t12\tdep\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t26\tnsubj\t_\t_\n26\ttriggered\t_\tVERB\tVBD\t_\t24\tacl:relcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tdrop\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tmany\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tways\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tbackdrop\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n7\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n8\tFriday\t_\tPROPN\tNNP\t_\t11\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tdecline\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tis\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\teerily\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tsimilar\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n16\tthat\t_\tPRON\tDT\t_\t14\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n18\tOctober\t_\tPROPN\tNNP\t_\t22\tnmod:poss\t_\t_\n19\t1987\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n20\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n21\t508-point\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tcrash\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThen\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n3\tas\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tnow\t_\tADV\tRB\t_\t11\tadvcl\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbudget\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tdebate\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\twas\t_\tVERB\tVBD\t_\t11\tcop\t_\t_\n10\tbehind\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tschedule\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tautomatic\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tspending\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcuts\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t18\tcop\t_\t_\n17\twithin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tdays\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n19\tof\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n20\ttaking\t_\tVERB\tVBG\t_\t18\tacl\t_\t_\n21\thold\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tTreasury\t_\tPROPN\tNNP\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\tlocked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tbattle\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tover\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tinternational\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\teconomic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tpolicy\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\talthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tthat\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\ttime\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n18\twas\t_\tVERB\tVBD\t_\t22\tcop\t_\t_\n19\twith\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tWest\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tGerman\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tofficials\t_\tNOUN\tNNS\t_\t4\tadvcl\t_\t_\n23\trather\t_\tADV\tRB\t_\t27\tcase\t_\t_\n24\tthan\t_\tADP\tIN\t_\t23\tmwe\t_\t_\n25\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n26\tFederal\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tReserve\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n2\tconcern\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n3\tabout\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tofficial\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tactions\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\taimed\t_\tVERB\tVBN\t_\t5\tacl\t_\t_\n7\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\ttakeovers\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n10\tthen\t_\tADV\tRB\t_\t15\tdep\t_\t_\n11\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\ttax-writing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tHouse\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tWays\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tMeans\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCommittee\t_\tPROPN\tNNP\t_\t15\tconj\t_\t_\n19\trather\t_\tADV\tRB\t_\t23\tcase\t_\t_\n20\tthan\t_\tADP\tIN\t_\t19\tmwe\t_\t_\n21\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tTransportation\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tDepartment\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n24\t--\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n25\twere\t_\tAUX\tVBD\t_\t26\taux\t_\t_\n26\tmaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n27\tmarkets\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tnervous\t_\tADJ\tJJ\t_\t26\txcomp\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tcrash\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tbrought\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tReagan\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tadministration\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tDemocratic\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tlawmakers\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n11\tto\t_\tADP\tTO\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\ttable\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tbudget\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tsummit\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n20\tresulting\t_\tVERB\tVBG\t_\t4\tadvcl\t_\t_\n21\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\ttwo-year\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tplan\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\treduce\t_\tVERB\tVB\t_\t24\tacl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdeficit\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tmore\t_\tADJ\tJJR\t_\t32\tadvmod\t_\t_\n31\tthan\t_\tADP\tIN\t_\t30\tmwe\t_\t_\n32\t$\t_\tSYM\t$\t_\t26\tnmod\t_\t_\n33\t76\t_\tNUM\tCD\t_\t34\tcompound\t_\t_\n34\tbillion\t_\tNUM\tCD\t_\t32\tnummod\t_\t_\n35\t--\t_\tPUNCT\t:\t_\t20\tpunct\t_\t_\n36\teven\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n37\tthough\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n38\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n39\tdeficit\t_\tNOUN\tNN\t_\t41\tnsubj\t_\t_\n40\tactually\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n41\trose\t_\tVERB\tVBD\t_\t20\tadvcl\t_\t_\n42\tby\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tnearly\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n44\t$\t_\tSYM\t$\t_\t41\tnmod\t_\t_\n45\t12\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n46\tbillion\t_\tNUM\tCD\t_\t44\tnummod\t_\t_\n47\tduring\t_\tADP\tIN\t_\t49\tcase\t_\t_\n48\tthat\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tperiod\t_\tNOUN\tNN\t_\t41\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n3\tbarring\t_\tVERB\tVBG\t_\t5\tcase\t_\t_\n4\tfurther\t_\tADJ\tJJR\t_\t5\tamod\t_\t_\n5\tdrops\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n6\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tthis\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tweek\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tsimilar\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\toutcome\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\tdoes\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\tn't\t_\tPART\tRB\t_\t17\tneg\t_\t_\n17\tseem\t_\tVERB\tVB\t_\t0\troot\t_\t_\n18\tlikely\t_\tADV\tRB\t_\t17\txcomp\t_\t_\n19\tthis\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tyear\t_\tNOUN\tNN\t_\t17\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tLawmakers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tadministration\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tofficials\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n5\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tdrop\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n11\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\titself\t_\tPRON\tPRP\t_\t16\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t16\tcop\t_\t_\n15\tn't\t_\tPART\tRB\t_\t16\tneg\t_\t_\n16\tenough\t_\tADJ\tJJ\t_\t5\tccomp\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tforce\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tboth\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tsides\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n21\tback\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n22\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\ttable\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\ttry\t_\tVERB\tVB\t_\t18\txcomp\t_\t_\n27\tto\t_\tPART\tTO\t_\t28\tmark\t_\t_\n28\treach\t_\tVERB\tVB\t_\t26\txcomp\t_\t_\n29\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tdeficit-reduction\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tagreement\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n32\tthat\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n33\twould\t_\tAUX\tMD\t_\t36\taux\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t36\tcop\t_\t_\n35\tmore\t_\tADV\tRBR\t_\t36\tadvmod\t_\t_\n36\tserious\t_\tADJ\tJJ\t_\t31\tacl:relcl\t_\t_\n37\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n38\tmore\t_\tADV\tRBR\t_\t39\tadvmod\t_\t_\n39\tfar-reaching\t_\tADJ\tJJ\t_\t36\tconj\t_\t_\n40\tthan\t_\tADP\tIN\t_\t45\tcase\t_\t_\n41\tlast\t_\tADJ\tJJ\t_\t42\tamod\t_\t_\n42\tspring\t_\tNOUN\tNN\t_\t45\tnmod:poss\t_\t_\n43\t's\t_\tPART\tPOS\t_\t42\tcase\t_\t_\n44\tgimmick-ridden\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tplan\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\twhich\t_\tPRON\tWDT\t_\t52\tnsubjpass\t_\t_\n48\tstill\t_\tADV\tRB\t_\t52\tadvmod\t_\t_\n49\tis\t_\tAUX\tVBZ\t_\t52\tauxpass\t_\t_\n50\tn't\t_\tPART\tRB\t_\t52\tneg\t_\t_\n51\tfully\t_\tADV\tRB\t_\t52\tadvmod\t_\t_\n52\timplemented\t_\tVERB\tVBN\t_\t45\tacl:relcl\t_\t_\n53\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t15\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tbiggest\t_\tADJ\tJJS\t_\t5\tamod\t_\t_\n5\treasons\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n6\tthat\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n7\tnew\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\ttalks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tlikely\t_\tADJ\tJJ\t_\t5\tdep\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tcome\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tabout\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tthat\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n18\tas\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n19\teveryone\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\tlearned\t_\tVERB\tVBD\t_\t30\tadvcl\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\teconomy\t_\tNOUN\tNN\t_\t30\tnsubj\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tmarket\t_\tNOUN\tNN\t_\t25\tconj\t_\t_\n29\tcan\t_\tAUX\tMD\t_\t30\taux\t_\t_\n30\tsurvive\t_\tVERB\tVB\t_\t15\tccomp\t_\t_\n31\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n32\tone-day\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\t508-point\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\ttumble\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tEverybody\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tthought\t_\tVERB\tVBD\t_\t24\tccomp\t_\t_\n4\twe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\twere\t_\tAUX\tVBD\t_\t6\taux\t_\t_\n6\tlooking\t_\tVERB\tVBG\t_\t3\tdep\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\trepetition\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t1929\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\twere\t_\tAUX\tVBD\t_\t16\taux\t_\t_\n16\tlooking\t_\tVERB\tVBG\t_\t6\tdep\t_\t_\n17\tat\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\trecession\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n22\tRep.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tPanetta\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tyesterday\t_\tNOUN\tNN\t_\t24\tnmod:tmod\t_\t_\n26\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tinterview\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\thappen\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tlearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tcould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tsurvive\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t5\tdobj\t_\t_\n7\twithout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tmuch\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tproblem\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tadministration\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\tprivately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tagree\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tPanetta\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twho\t_\tPRON\tWP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tprecipitous\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tdrop\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n18\tis\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tgoing\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tforce\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tpresident\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n25\tCongress\t_\tPROPN\tNNP\t_\t23\tconj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\ttake\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n28\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tmuch\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\tharder\t_\tADJ\tJJR\t_\t29\tdep\t_\t_\n31\tlook\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tat\t_\tADP\tIN\t_\t34\tcase\t_\t_\n33\tfiscal\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tpolicy\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n36\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcase\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t8\texpl\t_\t_\n6\twill\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tVERB\tVB\t_\t8\tcop\t_\t_\n8\tplenty\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tblame\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tgo\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n13\taround\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t49\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t49\tccomp\t_\t_\n4\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tunderlying\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tconcern\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpart\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tAmerican\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpeople\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n16\tthere\t_\tADV\tRB\t_\t18\tnsubj\t_\t_\n17\tshould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tbe\t_\tVERB\tVB\t_\t6\tdep\t_\t_\n19\t-\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n20\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tadministration\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n23\thas\t_\tAUX\tVBZ\t_\t25\taux\t_\t_\n24\tnot\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\tgone\t_\tVERB\tVBN\t_\t6\tdep\t_\t_\n26\tfar\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tenough\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n28\tin\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\tcutting\t_\tVERB\tVBG\t_\t25\tadvcl\t_\t_\n30\tthis\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tdeficit\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n33\tthat\t_\tSCONJ\tIN\t_\t37\tmark\t_\t_\n34\tCongress\t_\tPROPN\tNNP\t_\t37\tnsubj\t_\t_\n35\thas\t_\tAUX\tVBZ\t_\t37\taux\t_\t_\n36\tbeen\t_\tVERB\tVBN\t_\t37\tcop\t_\t_\n37\tunwilling\t_\tADJ\tJJ\t_\t25\tconj\t_\t_\n38\tto\t_\tPART\tTO\t_\t39\tmark\t_\t_\n39\tcut\t_\tVERB\tVB\t_\t37\txcomp\t_\t_\n40\twhat\t_\tPRON\tWP\t_\t43\tdobj\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tadministration\t_\tNOUN\tNN\t_\t43\tnsubj\t_\t_\n43\tasked\t_\tVERB\tVBD\t_\t39\tccomp\t_\t_\n44\tus\t_\tPRON\tPRP\t_\t43\tdobj\t_\t_\n45\tto\t_\tPART\tTO\t_\t46\tmark\t_\t_\n46\tcut\t_\tVERB\tVB\t_\t43\txcomp\t_\t_\n47\t,\t_\tPUNCT\t,\t_\t49\tpunct\t_\t_\n48\t''\t_\tPUNCT\t''\t_\t49\tpunct\t_\t_\n49\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n50\tSenate\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n51\tFinance\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n52\tCommittee\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n53\tChairman\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n54\tLloyd\t_\tPROPN\tNNP\t_\t55\tcompound\t_\t_\n55\tBentsen\t_\tPROPN\tNNP\t_\t49\tnsubj\t_\t_\n56\t-LRB-\t_\tPUNCT\t-LRB-\t_\t57\tpunct\t_\t_\n57\tD.\t_\tPROPN\tNNP\t_\t55\tappos\t_\t_\n58\t,\t_\tPUNCT\t,\t_\t57\tpunct\t_\t_\n59\tTexas\t_\tPROPN\tNNP\t_\t57\tdep\t_\t_\n60\t-RRB-\t_\tPUNCT\t-RRB-\t_\t57\tpunct\t_\t_\n61\t.\t_\tPUNCT\t.\t_\t49\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tclearly\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tmore\t_\tADJ\tJJR\t_\t6\tdobj\t_\t_\n8\tthan\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\t190-point\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tdecline\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tovercome\t_\tVERB\tVB\t_\t6\tadvcl\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tbitter\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfeelings\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tthat\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n19\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n20\tdeveloped\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n21\tbetween\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tlawmakers\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tWhite\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n25\tHouse\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n26\tBudget\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n27\tDirector\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n28\tRichard\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tDarman\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n30\tover\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tcapital-gains\t_\tNOUN\tNNS\t_\t33\tcompound\t_\t_\n33\tfight\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tDemocrats\t_\tPROPN\tNNPS\t_\t5\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n4\tparticularly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tangry\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tover\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tMr.\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tBush\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tclaim\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tcapital-gains\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n14\tcut\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n15\twas\t_\tVERB\tVBD\t_\t16\tcop\t_\t_\n16\tpart\t_\tNOUN\tNN\t_\t10\tccomp\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tApril\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tbudget\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\taccord\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n23\this\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tinsistence\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n25\ton\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n26\tcombining\t_\tVERB\tVBG\t_\t24\tacl\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t26\tdobj\t_\t_\n28\twith\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tdeficit-reduction\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tlegislation\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t40\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t40\tccomp\t_\t_\n4\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n5\tprospect\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n6\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tany\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tso-called\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tgrand\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcompromise\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n11\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tdeal\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n13\tnext\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n15\tbecause\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tadministration\t_\tNOUN\tNN\t_\t21\tnsubj\t_\t_\n18\tsimply\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n19\tdid\t_\tAUX\tVBD\t_\t21\taux\t_\t_\n20\tn't\t_\tPART\tRB\t_\t21\tneg\t_\t_\n21\tlive\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n22\tup\t_\tADP\tRP\t_\t21\tcompound:prt\t_\t_\n23\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n24\tthis\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tdeal\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t40\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t40\tpunct\t_\t_\n30\tSenate\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n31\tMajority\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n32\tLeader\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n33\tGeorge\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tMitchell\t_\tPROPN\tNNP\t_\t40\tnsubj\t_\t_\n35\t-LRB-\t_\tPUNCT\t-LRB-\t_\t36\tpunct\t_\t_\n36\tD.\t_\tPROPN\tNNP\t_\t34\tappos\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n38\tMaine\t_\tPROPN\tNNP\t_\t36\tdep\t_\t_\n39\t-RRB-\t_\tPUNCT\t-RRB-\t_\t36\tpunct\t_\t_\n40\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n41\tyesterday\t_\tNOUN\tNN\t_\t40\tnmod:tmod\t_\t_\n42\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n43\tCBS\t_\tPROPN\tNNP\t_\t44\tcompound\t_\t_\n44\tNews\t_\tPROPN\tNNP\t_\t40\tnmod\t_\t_\n45\t's\t_\tPART\tPOS\t_\t44\tcase\t_\t_\n46\t``\t_\tPUNCT\t``\t_\t44\tpunct\t_\t_\n47\tFace\t_\tPROPN\tNNP\t_\t49\tdep\t_\t_\n48\tthe\t_\tDET\tDT\t_\t49\tdet\t_\t_\n49\tNation\t_\tPROPN\tNNP\t_\t44\tdep\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t40\tpunct\t_\t_\n51\t''\t_\tPUNCT\t''\t_\t40\tpunct\t_\t_\n\n1\tDuring\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tlast\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tweek\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmaneuverings\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n6\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdeficit-cutting\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbill\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tcapital-gains\t_\tNOUN\tNNS\t_\t13\tcompound\t_\t_\n13\tissue\t_\tNOUN\tNN\t_\t9\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\tthere\t_\tPRON\tEX\t_\t16\texpl\t_\t_\n16\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tsigns\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n19\tSenate\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tRepublicans\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tadministration\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n24\twere\t_\tVERB\tVBD\t_\t26\tcop\t_\t_\n25\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\todds\t_\tNOUN\tNNS\t_\t17\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tvery\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmoment\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n5\tthat\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n6\tSenate\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tRepublicans\t_\tPROPN\tNNPS\t_\t9\tnsubj\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n9\tnegotiating\t_\tVERB\tVBG\t_\t4\tdep\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdeal\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\texclude\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tcapital\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tgains\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tdeficit-reduction\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tlegislation\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n21\tWhite\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n22\tHouse\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n23\tspokesman\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tMarlin\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tFitzwater\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n26\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n27\treporters\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n28\tthat\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t34\tnsubj\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t34\tcop\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tpresident\t_\tNOUN\tNN\t_\t34\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tpolicy\t_\tNOUN\tNN\t_\t26\tccomp\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tinclude\t_\tVERB\tVB\t_\t34\tadvcl\t_\t_\n37\tit\t_\tPRON\tPRP\t_\t36\tdobj\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tan\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tagreement\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\treached\t_\tVERB\tVBN\t_\t30\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tstrip\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tcapital\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tgains\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlegislation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n14\tOregon\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tSen.\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tBob\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tPackwood\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n20\tranking\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tGOP\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tmember\t_\tNOUN\tNN\t_\t17\tappos\t_\t_\n23\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n25\ttax-writing\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n26\tSenate\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n27\tFinance\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tCommittee\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n30\thailed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n31\tit\t_\tPRON\tPRP\t_\t30\tdobj\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAsked\t_\tVERB\tVBN\t_\t9\tadvcl\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tadministration\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tagreed\t_\tVERB\tVBD\t_\t1\tadvcl\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\the\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\tcurtly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\treplied\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t:\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n12\tThe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tadminstration\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\thave\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tspeak\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\titself\t_\tPRON\tPRP\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n\n1\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttumble\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tspur\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\taction\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n9\treconciling\t_\tVERB\tVBG\t_\t21\tdep\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\tHouse\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tSenate\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\tversions\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tdeficit-reduction\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmeasure\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tprocess\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n22\tthat\t_\tPRON\tWDT\t_\t25\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n24\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n25\texpected\t_\tVERB\tVBN\t_\t21\tacl:relcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tbegin\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tuntil\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\ttomorrow\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tat\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tsoonest\t_\tADJ\tJJS\t_\t29\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSenate\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tRepublicans\t_\tPROPN\tNNPS\t_\t3\tnsubj\t_\t_\n3\texpressed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thope\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tHouse\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n9\twould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\tfollow\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlead\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tSenate\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n20\tagreed\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tdrop\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tvariety\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tspending\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tmeasures\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\ttax\t_\tNOUN\tNN\t_\t30\tcompound\t_\t_\n30\tbreaks\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n31\tthat\t_\tPRON\tWDT\t_\t34\tnsubj\t_\t_\n32\twould\t_\tAUX\tMD\t_\t34\taux\t_\t_\n33\thave\t_\tAUX\tVB\t_\t34\taux\t_\t_\n34\tincreased\t_\tVERB\tVBN\t_\t27\tacl:relcl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n36\tfiscal\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n37\t1990\t_\tNUM\tCD\t_\t38\tnummod\t_\t_\n38\tdeficit\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t48\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tneeds\t_\tVERB\tVBZ\t_\t48\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tstrong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tsignal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n9\twe\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n10\t're\t_\tVERB\tVBP\t_\t11\tcop\t_\t_\n11\tserious\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n12\tabout\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tdeficit\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treduction\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tbest\t_\tADJ\tJJS\t_\t19\tamod\t_\t_\n19\tway\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdo\t_\tVERB\tVB\t_\t19\tacl\t_\t_\n22\tthat\t_\tPRON\tDT\t_\t21\tdobj\t_\t_\n23\tis\t_\tVERB\tVBZ\t_\t4\tconj\t_\t_\n24\tfor\t_\tSCONJ\tIN\t_\t30\tmark\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tHouse\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n27\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tRepresentatives\t_\tPROPN\tNNPS\t_\t26\tnmod\t_\t_\n29\tto\t_\tPART\tTO\t_\t30\tmark\t_\t_\n30\tstrip\t_\tVERB\tVB\t_\t23\tadvcl\t_\t_\n31\ttheir\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n32\tbill\t_\tNOUN\tNN\t_\t30\tdobj\t_\t_\n33\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n34\tof\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\tsimilar\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n36\tprovisions\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t48\tpunct\t_\t_\n38\tSen.\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n39\tWarren\t_\tPROPN\tNNP\t_\t40\tcompound\t_\t_\n40\tRudman\t_\tPROPN\tNNP\t_\t48\tnsubj\t_\t_\n41\t-LRB-\t_\tPUNCT\t-LRB-\t_\t42\tpunct\t_\t_\n42\tR.\t_\tPROPN\tNNP\t_\t40\tappos\t_\t_\n43\t,\t_\tPUNCT\t,\t_\t42\tpunct\t_\t_\n44\tN.H\t_\tPROPN\tNNP\t_\t42\tdep\t_\t_\n45\t.\t_\tPUNCT\t.\t_\t44\tpunct\t_\t_\n46\t-RRB-\t_\tPUNCT\t-RRB-\t_\t42\tpunct\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t48\tpunct\t_\t_\n48\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n49\tyesterday\t_\tNOUN\tNN\t_\t48\tnmod:tmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t48\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tWhite\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tHouse\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tOffice\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tManagement\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tBudget\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\twhose\t_\tPRON\tWP$\t_\t11\tnmod:poss\t_\t_\n11\tcalculations\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tdetermine\t_\tVERB\tVBP\t_\t4\tacl:relcl\t_\t_\n13\twhether\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tGramm-Rudman\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\ttargets\t_\tNOUN\tNNS\t_\t18\tnsubjpass\t_\t_\n17\tare\t_\tAUX\tVBP\t_\t18\tauxpass\t_\t_\n18\tmet\t_\tVERB\tVBN\t_\t12\tccomp\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n20\testimated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t27\tmark\t_\t_\n22\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n23\tHouse-passed\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n24\tdeficit-reduction\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tmeasure\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n26\twould\t_\tAUX\tMD\t_\t27\taux\t_\t_\n27\tcut\t_\tVERB\tVB\t_\t20\tccomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n29\tfiscal\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n30\t1990\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n31\tshortfall\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n32\tby\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\t$\t_\tSYM\t$\t_\t27\tnmod\t_\t_\n34\t6.2\t_\tNUM\tCD\t_\t35\tcompound\t_\t_\n35\tbillion\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n37\talmost\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\thalf\t_\tDET\tDT\t_\t33\tappos\t_\t_\n39\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n40\tthe\t_\tDET\tDT\t_\t43\tdet\t_\t_\n41\tCongressional\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n42\tBudget\t_\tPROPN\tNNP\t_\t43\tcompound\t_\t_\n43\tOffice\t_\tPROPN\tNNP\t_\t45\tnmod:poss\t_\t_\n44\t's\t_\tPART\tPOS\t_\t43\tcase\t_\t_\n45\testimate\t_\tNOUN\tNN\t_\t38\tnmod\t_\t_\n46\tof\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\t$\t_\tSYM\t$\t_\t45\tnmod\t_\t_\n48\t11.0\t_\tNUM\tCD\t_\t49\tcompound\t_\t_\n49\tbillion\t_\tNUM\tCD\t_\t47\tnummod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tRep.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPanetta\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n5\tOMB\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tfigure\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n8\twould\t_\tAUX\tMD\t_\t11\taux\t_\t_\n9\tstill\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n11\tenough\t_\tADJ\tJJ\t_\t3\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tavoid\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tpermanent\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tacross-the-board\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tcuts\t_\tVERB\tVBZ\t_\t15\tdep\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n18\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n19\tadded\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n20\t:\t_\tPUNCT\t:\t_\t19\tpunct\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n22\tWe\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n23\t're\t_\tAUX\tVBP\t_\t24\taux\t_\t_\n24\tgetting\t_\tVERB\tVBG\t_\t19\tccomp\t_\t_\n25\tvery\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tclose\t_\tADV\tRB\t_\t24\txcomp\t_\t_\n27\tto\t_\tADP\tTO\t_\t29\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmargins\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\there\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tNo\t_\tDET\tDT\t_\t2\tneg\t_\t_\n2\tone\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tWashington\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n6\twilling\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tblame\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tprovoking\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tFriday\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tdrop\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tplayers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n4\twere\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n5\tquick\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tseize\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmoment\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBefore\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsun\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tset\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n6\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n9\tRichard\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tRahn\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tsupply-side\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tchief\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\teconomist\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tChamber\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tCommerce\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tissued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tstatement\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n26\tattributing\t_\tVERB\tVBG\t_\t25\tacl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tdrop\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tstock\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tprices\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n32\tto\t_\tADP\tTO\t_\t35\tcase\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tSenate\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tdecision\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n36\tto\t_\tPART\tTO\t_\t37\tmark\t_\t_\n37\tpostpone\t_\tVERB\tVB\t_\t35\tacl\t_\t_\n38\taction\t_\tNOUN\tNN\t_\t37\tdobj\t_\t_\n39\ton\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tcapital\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tgains\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n2\tInvestors\t_\tNOUN\tNNS\t_\t20\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twho\t_\tPRON\tWP\t_\t7\tnsubj\t_\t_\n5\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n6\tbeen\t_\tAUX\tVBN\t_\t7\taux\t_\t_\n7\tholding\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n8\tassets\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tanticipation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\tfavorable\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\ttime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tsell\t_\tVERB\tVB\t_\t15\tacl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\twere\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tspooked\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n23\the\t_\tPRON\tPRP\t_\t24\tnsubj\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t7\tcop\t_\t_\n5\tmany\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tpreposterous\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\treasons\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n8\tadvanced\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsupport\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tcapital-gains\t_\tNOUN\tNNS\t_\t14\tcompound\t_\t_\n13\ttax\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcut\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n17\tSen.\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMitchell\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t7\tdep\t_\t_\n20\tduring\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\this\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n22\ttelevision\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tappearance\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n26\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n27\tI\t_\tPRON\tPRP\t_\t28\tnsubj\t_\t_\n28\tsuggest\t_\tVERB\tVBP\t_\t7\tconj\t_\t_\n29\tthat\t_\tPRON\tDT\t_\t32\tnsubj\t_\t_\n30\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n31\tperhaps\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n32\tmore\t_\tADV\tRBR\t_\t28\tccomp\t_\t_\n33\tthan\t_\tADP\tIN\t_\t34\tcase\t_\t_\n34\tany\t_\tDET\tDT\t_\t32\tnmod\t_\t_\n35\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tothers\t_\tNOUN\tNNS\t_\t34\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n2\tfollowing\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n3\tU.S.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tTreasury\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tcorporate\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n8\tmunicipal\t_\tADJ\tJJ\t_\t4\tconj\t_\t_\n9\tofferings\t_\tNOUN\tNNS\t_\t12\tnsubjpass\t_\t_\n10\tare\t_\tAUX\tVBP\t_\t12\tauxpass\t_\t_\n11\ttentatively\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n13\tfor\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tsale\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\tthis\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tweek\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n18\taccording\t_\tVERB\tVBG\t_\t24\tcase\t_\t_\n19\tto\t_\tADP\tTO\t_\t18\tmwe\t_\t_\n20\tDow\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n21\tJones\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tCapital\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tMarkets\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tReport\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n25\t:\t_\tPUNCT\t:\t_\t12\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t15.2\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tbillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthree-month\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tsix-month\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n8\tbills\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tTwo-year\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tnotes\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\trefinancing\t_\tVERB\tVBG\t_\t2\tacl\t_\t_\n5\tabout\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n7\t9.6\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tbillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tmaturing\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tdebt\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t9.75\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tbillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\t52-week\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tbills\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tConnecticut\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLight\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tPower\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCo.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\tThree\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\t$\t_\tSYM\t$\t_\t7\tamod\t_\t_\n6\t25\t_\tNUM\tCD\t_\t5\tcompound\t_\t_\n7\tpreferred\t_\tADJ\tJJ\t_\t3\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tvia\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tcompetitive\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tbidding\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tB&H\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tCrude\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tCarriers\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tLtd.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tFour\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tSalomon\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tBrothers\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tInc\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBaldwin\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tTechnology\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t2.6\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n3\tClass\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tA\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tvia\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\tSmith\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tBarney\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tHarris\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tUpham\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n12\t&\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tCo\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tBlockbuster\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tEntertainment\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n2\t250\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\t-LRB-\t_\tPUNCT\t-LRB-\t_\t5\tpunct\t_\t_\n5\tface\t_\tNOUN\tNN\t_\t11\tdep\t_\t_\n6\tamount\t_\tNOUN\tNN\t_\t5\tdep\t_\t_\n7\t-RRB-\t_\tPUNCT\t-RRB-\t_\t5\tpunct\t_\t_\n8\tLiquid\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\tYield\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tOption\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tNotes\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tvia\t_\tADP\tIN\t_\t17\tcase\t_\t_\n14\tMerrill\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n15\tLynch\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tCapital\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tMarkets\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tChase\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tManhattan\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t14\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tGoldman\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tSachs\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n10\t&\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tCo\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tComcast\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t5\tamod\t_\t_\n2\t150\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tconvertible\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tdebentures\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tvia\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tMerrill\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tLynch\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tCSS\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tIndustries\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t1.3\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMerrill\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tLynch\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEastern\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tUtilities\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAssociates\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t1.5\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tPaineWebber\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEmployee\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBenefit\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tPlans\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tDean\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\tWitter\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tCapital\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMarkets\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tExabyte\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t2,850,000\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n2\tcommon\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tvia\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tGoldman\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tSachs\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tKnowledgeware\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t2.4\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tmillion\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\tcommon\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tshares\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tvia\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tMontgomery\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tSecurities\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOregon\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t100\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tgeneral\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tobligation\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tveterans\t_\tNOUN\tNNS\t_\t10\tnmod:poss\t_\t_\n8\t'\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\ttax\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tnotes\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tSeries\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t1989\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\tvia\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tcompetitive\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tbid\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWashington\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tD.C.\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t200\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\t1990\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n6\tgeneral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n7\tobligation\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n8\ttax\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\trevenue\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tnotes\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t10\tpunct\t_\t_\n12\tSeries\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\t1990A\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t10\tpunct\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n16\tvia\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tcompetitive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbid\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tVirginia\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tPublic\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tSchool\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t2\tdep\t_\t_\n2\t55,730,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n4\tschool\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n5\tfinancing\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\t1989\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n9\tSeries\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tB\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n11\t-LRB-\t_\tPUNCT\t-LRB-\t_\t13\tpunct\t_\t_\n12\t1987\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tresolution\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n14\t-RRB-\t_\tPUNCT\t-RRB-\t_\t13\tpunct\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tvia\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tcompetitive\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tbid\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAustin\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tTexas\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t2\tdep\t_\t_\n2\t68,230,000\t_\tNUM\tCD\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tvarious\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tincluding\t_\tVERB\tVBG\t_\t15\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t15\tamod\t_\t_\n9\t32\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n10\tmillion\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n11\thotel\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n12\toccupancy\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\ttax\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\trevenue\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tSeries\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\t1989A\t_\tPROPN\tNNP\t_\t15\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n21\t$\t_\tSYM\t$\t_\t27\tamod\t_\t_\n22\t36.23\t_\tNUM\tCD\t_\t23\tcompound\t_\t_\n23\tmillion\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n24\tconvention\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n25\tcenter\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\trevenue\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tbonds\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tSeries\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\t1989B\t_\tPROPN\tNNP\t_\t27\tappos\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n32\tvia\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\tMorgan\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tStanley\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n36\t&\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tCo.\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tgroup\t_\tNOUN\tNN\t_\t35\tconj\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tCalifornia\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHealth\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tFacilities\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tFinancing\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t144.5\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tKaiser\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tPermanente\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\trevenue\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n10\tvia\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tPaineWebber\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tConnecticut\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t3\tdep\t_\t_\n2\t100\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t0\troot\t_\t_\n4\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tgeneral\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n6\tobligation\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n7\tcapital\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n8\tappreciation\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tCollege\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tSavings\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tPlan\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n15\t1989\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n16\tSeries\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tB\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n19\tvia\t_\tADP\tIN\t_\t24\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n21\tPrudential-Bache\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n22\tCapital\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n23\tFunding\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tgroup\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tPennsylvania\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHigher\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tEducation\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tFacilities\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t117\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\trevenue\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n7\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tHahnemann\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tUniversity\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\tSeries\t_\tPROPN\tNNP\t_\t1\tappos\t_\t_\n12\t1989\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n14\tvia\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tMerrill\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tLynch\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tTennessee\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tValley\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAuthority\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\tThree\t_\tNUM\tCD\t_\t2\tcompound\t_\t_\n2\tbillion\t_\tNUM\tCD\t_\t0\troot\t_\t_\n3\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tpower\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tbonds\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tvia\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tFirst\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tBoston\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tUniversity\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tMedicine\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n4\tAnd\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tDentistry\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tNew\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tJersey\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t55\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tSeries\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tC\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n9\tvia\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tPrudential-Bache\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWest\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tVirginia\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tParkways\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tEconomic\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tDevelopment\t_\tPROPN\tNNP\t_\t3\tappos\t_\t_\n7\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tTourism\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tAuthority\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t143\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tparkway\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\trevenue\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tSeries\t_\tNOUN\tNN\t_\t7\tappos\t_\t_\n10\t1989\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tvia\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tPaineWebber\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAntonio\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tTexas\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t--\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t640\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n5\tgas\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\telectric\t_\tADJ\tJJ\t_\t5\tconj\t_\t_\n8\trevenue\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\trefunding\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n12\tvia\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tFirst\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tBoston\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSouth\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tDakota\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tHealth\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t&\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n5\tEducation\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tFacility\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tAuthority\t_\tPROPN\tNNP\t_\t3\tconj\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t51.1\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n5\tRapid\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n6\tCity\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tRegional\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tHospital\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tbonds\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n11\tvia\t_\tADP\tIN\t_\t21\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n13\tDougherty\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tDawkins\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\tStrand\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n18\t&\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tYost\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tgroup\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tSmall\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tmatched\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tbig\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tinstitutional\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tbrethren\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n8\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tanxiety\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tover\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tweekend\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n15\tmost\t_\tADJ\tJJS\t_\t16\tnsubj\t_\t_\n16\tseemed\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n17\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n18\tbe\t_\tAUX\tVB\t_\t19\taux\t_\t_\n19\ttaking\t_\tVERB\tVBG\t_\t16\txcomp\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tphilosophical\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tapproach\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t16\tconj\t_\t_\n25\tthey\t_\tPRON\tPRP\t_\t27\tnsubjpass\t_\t_\n26\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tresigned\t_\tVERB\tVBN\t_\t24\tccomp\t_\t_\n28\tto\t_\tADP\tTO\t_\t29\tmark\t_\t_\n29\triding\t_\tVERB\tVBG\t_\t27\tadvcl\t_\t_\n30\tout\t_\tADP\tRP\t_\t29\tcompound:prt\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tlatest\t_\tADJ\tJJS\t_\t33\tamod\t_\t_\n33\tstorm\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n34\tin\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n36\tstock\t_\tNOUN\tNN\t_\t37\tcompound\t_\t_\n37\tmarket\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'm\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tlosing\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n6\tfaith\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tBoston\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tlawyer\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n15\tChristopher\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tSullivan\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n17\tas\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\twatched\t_\tVERB\tVBD\t_\t12\tdep\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tmarket\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n22\tplunge\t_\tNOUN\tNN\t_\t19\tccomp\t_\t_\n23\ton\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tbig\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tscreen\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n27\tin\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tfront\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tbrokerage\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tfirm\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\the\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tsure\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\teveryone\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n9\telse\t_\tADV\tRB\t_\t8\tamod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tthink\t_\tVERB\tVBP\t_\t19\tccomp\t_\t_\n4\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tMonday\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tsmall\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n8\t-LRB-\t_\tPUNCT\t-LRB-\t_\t9\tpunct\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n10\t-RRB-\t_\tPUNCT\t-RRB-\t_\t9\tpunct\t_\t_\n11\tare\t_\tAUX\tVBP\t_\t12\taux\t_\t_\n12\tgoing\t_\tVERB\tVBG\t_\t3\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tpanic\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tsell\t_\tVERB\tVB\t_\t14\tconj\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tpredicted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tMr.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tSullivan\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\twhose\t_\tPRON\tWP$\t_\t24\tnmod:poss\t_\t_\n24\tinvestments\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n25\tinclude\t_\tVERB\tVBP\t_\t21\tacl:relcl\t_\t_\n26\tAMR\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n28\t's\t_\tPART\tPOS\t_\t27\tcase\t_\t_\n29\tAmerican\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tAirlines\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tunit\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tseveral\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n34\tmutual\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tfunds\t_\tNOUN\tNNS\t_\t31\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tinstitutions\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tgoing\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tcome\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tin\t_\tADP\tIN\t_\t9\tadvmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n12\tbuy\t_\tVERB\tVB\t_\t9\tconj\t_\t_\n13\t...\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n\n1\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t'm\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tgoing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\thold\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\ton\t_\tADP\tRP\t_\t5\tcompound:prt\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t3\tmark\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tsell\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n4\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n6\tI\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n7\t'll\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\ttake\t_\tVERB\tVB\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tbig\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tloss\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tnsubj\t_\t_\n2\tevinced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tan\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\toptimism\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n5\tthat\t_\tPRON\tWDT\t_\t8\tnsubjpass\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t8\taux\t_\t_\n7\tbeen\t_\tAUX\tVBN\t_\t8\tauxpass\t_\t_\n8\trewarded\t_\tVERB\tVBN\t_\t4\tacl:relcl\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\tdid\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tflee\t_\tVERB\tVB\t_\t8\tadvcl\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1987\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n2\tOh\t_\tINTJ\tUH\t_\t5\tdiscourse\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tbet\t_\tVERB\tVBP\t_\t16\tccomp\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n7\t'll\t_\tAUX\tMD\t_\t13\taux\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t13\tcop\t_\t_\n9\tup\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n10\t50\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tpoints\t_\tNOUN\tNNS\t_\t9\tnmod:npmod\t_\t_\n12\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tMonday\t_\tPROPN\tNNP\t_\t5\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t16\tpunct\t_\t_\n16\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tLucy\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCrump\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\t78-year-old\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tretired\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\thousewife\t_\tNOUN\tNN\t_\t18\tappos\t_\t_\n24\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tLexington\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tKy\t_\tPROPN\tNNP\t_\t25\tappos\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tMrs.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCrump\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ther\t_\tPRON\tPRP$\t_\t7\tnmod:poss\t_\t_\n5\tAshwood\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInvestment\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tClub\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tportfolio\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tlost\t_\tVERB\tVBD\t_\t3\tdep\t_\t_\n11\tabout\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tone-third\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tvalue\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tfollowing\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tBlack\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tMonday\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tcrash\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tno\t_\tDET\tDT\t_\t25\tneg\t_\t_\n25\tone\t_\tNOUN\tNN\t_\t27\tnsubjpass\t_\t_\n26\tgot\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n27\tdiscouraged\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n30\twe\t_\tPRON\tPRP\t_\t31\tnsubj\t_\t_\n31\tgained\t_\tVERB\tVBD\t_\t10\tconj\t_\t_\n32\tthat\t_\tPRON\tDT\t_\t31\tdobj\t_\t_\n33\tback\t_\tADP\tRP\t_\t31\tcompound:prt\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t36\tpunct\t_\t_\n35\tand\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n36\tmore\t_\tADJ\tJJR\t_\t31\tdep\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n38\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tannual\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcongress\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n7\tNational\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n8\tAssociation\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tInvestors\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tHyatt\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tRegency\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\thotel\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tMinneapolis\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tscene\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\twas\t_\tVERB\tVBD\t_\t23\tcop\t_\t_\n23\tcalm\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tSome\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\t500\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tinvestors\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n4\trepresenting\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\tinvestor\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tclubs\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\taround\t_\tADP\tIN\t_\t10\tamod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tU.S.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\twere\t_\tAUX\tVBD\t_\t12\taux\t_\t_\n12\tattending\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n13\twhen\t_\tADV\tWRB\t_\t16\tadvmod\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t16\tnsubj\t_\t_\n16\tstarted\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tslide\t_\tVERB\tVB\t_\t16\txcomp\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t16\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n2\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tShowalter\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tan\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tofficial\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tassociation\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tno\t_\tDET\tDT\t_\t14\tneg\t_\t_\n13\tspecial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tbulletins\t_\tNOUN\tNNS\t_\t24\tnsubjpass\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\temergency\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tmeetings\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tinvestors\t_\tNOUN\tNNS\t_\t22\tnmod:poss\t_\t_\n21\t'\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tclubs\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n23\tare\t_\tAUX\tVBP\t_\t24\tauxpass\t_\t_\n24\tplanned\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n4\tsome\t_\tDET\tDT\t_\t16\tnsubj\t_\t_\n5\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tassociation\t_\tNOUN\tNN\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmembers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n11\tlong-term\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tbuy-and-hold\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tinvestors\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t14\tpunct\t_\t_\n16\twelcomed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tdrop\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tprices\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t11\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thope\t_\tVERB\tVBP\t_\t11\tccomp\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\ttake\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tadvantage\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tit\t_\tPRON\tPRP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tJohn\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tSnyder\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tmember\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n19\tLos\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n20\tAngeles\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tinvestors\t_\tNOUN\tNNS\t_\t23\tnmod:poss\t_\t_\n22\t'\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tclub\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tfour\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tstocks\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tmind\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tbuy\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n9\tif\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n12\tdrop\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n13\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tlevel\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\twants\t_\tVERB\tVBZ\t_\t15\tacl:relcl\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tNot\t_\tADV\tRB\t_\t2\tneg\t_\t_\n2\teveryone\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\treacting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tso\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tcalmly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n11\tmany\t_\tADJ\tJJ\t_\t12\tnsubj\t_\t_\n12\twonder\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n13\tabout\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tlong-term\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\timplications\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n18\twhat\t_\tPRON\tWP\t_\t21\tnsubjpass\t_\t_\n19\tis\t_\tAUX\tVBZ\t_\t21\tauxpass\t_\t_\n20\twidely\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tviewed\t_\tVERB\tVBN\t_\t30\tdep\t_\t_\n22\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tcause\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\tslide\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n30\treluctance\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n31\tby\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tbanks\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n33\tto\t_\tPART\tTO\t_\t34\tmark\t_\t_\n34\tprovide\t_\tVERB\tVB\t_\t30\tacl\t_\t_\n35\tfinancing\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n36\tfor\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\ta\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tbuy-out\t_\tNOUN\tNN\t_\t34\tnmod\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\tUAL\t_\tPROPN\tNNP\t_\t41\tcompound\t_\t_\n41\tCorp.\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n43\tparent\t_\tNOUN\tNN\t_\t41\tappos\t_\t_\n44\tof\t_\tADP\tIN\t_\t46\tcase\t_\t_\n45\tUnited\t_\tPROPN\tNNP\t_\t46\tcompound\t_\t_\n46\tAirlines\t_\tPROPN\tNNP\t_\t43\tnmod\t_\t_\n47\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMarc\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPerkins\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\tTampa\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tFla.\t_\tPROPN\tNNP\t_\t5\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tinvestment\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tbanker\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tdrop\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t17\tcop\t_\t_\n17\tone\t_\tNUM\tCD\t_\t12\tccomp\t_\t_\n18\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttremendous\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tnumber\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tsigns\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n25\tthat\t_\tSCONJ\tIN\t_\t31\tmark\t_\t_\n26\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n27\tleveraged\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n28\ttake-out\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tera\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\tis\t_\tAUX\tVBZ\t_\t31\taux\t_\t_\n31\tending\t_\tVERB\tVBG\t_\t24\tccomp\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t4\tneg\t_\t_\n4\tquestion\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n6\tthere\t_\tPRON\tEX\t_\t7\texpl\t_\t_\n7\t's\t_\tVERB\tVBZ\t_\t4\tccomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tgeneral\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tdistaste\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n11\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tleverage\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tamong\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tlenders\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tPerkins\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tbelieves\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n11\tcould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tbe\t_\tAUX\tVB\t_\t13\tauxpass\t_\t_\n13\tstabilized\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n14\tif\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n15\tCalifornia\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tinvestor\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tMarvin\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tDavis\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n19\tsteps\t_\tVERB\tVBZ\t_\t13\tadvcl\t_\t_\n20\tback\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n22\tto\t_\tADP\tTO\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tUnited\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tbidding\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tan\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\toffer\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\t$\t_\tSYM\t$\t_\t31\tdep\t_\t_\n31\t275\t_\tNUM\tCD\t_\t28\tnmod\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tshare\t_\tNOUN\tNN\t_\t31\tnmod:npmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSara\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tAlbert\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\t34-year-old\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n6\tDallas\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tlaw\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tstudent\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tshe\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\t's\t_\tVERB\tVBZ\t_\t14\tcop\t_\t_\n13\tgenerally\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tskittish\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n15\tabout\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tstock\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\ttakeover\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tactivity\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tseems\t_\tVERB\tVBZ\t_\t22\tacl:relcl\t_\t_\n25\tto\t_\tPART\tTO\t_\t26\tmark\t_\t_\n26\tfuel\t_\tVERB\tVB\t_\t24\txcomp\t_\t_\n27\tit\t_\tPRON\tPRP\t_\t26\tdobj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tthis\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tfeeling\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t9\tnsubjpass\t_\t_\n8\t's\t_\tAUX\tVBZ\t_\t9\tauxpass\t_\t_\n9\tbuilt\t_\tVERB\tVBN\t_\t5\tccomp\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tsand\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\tshe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n20\trises\t_\tVERB\tVBZ\t_\t9\tdep\t_\t_\n21\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n22\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n23\tthere\t_\tPRON\tEX\t_\t24\texpl\t_\t_\n24\t's\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n25\tno\t_\tDET\tDT\t_\t26\tneg\t_\t_\n26\tfoundation\t_\tNOUN\tNN\t_\t24\tnsubj\t_\t_\n27\tto\t_\tADP\tTO\t_\t28\tcase\t_\t_\n28\tit\t_\tPRON\tPRP\t_\t26\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tShe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\ther\t_\tPRON\tPRP$\t_\t4\tnmod:poss\t_\t_\n4\thusband\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n5\tpulled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tmost\t_\tADJ\tJJS\t_\t5\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tinvestments\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\tout\t_\tADP\tIN\t_\t5\tadvmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tafter\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\t1987\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcrash\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n19\talthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n20\tshe\t_\tPRON\tPRP\t_\t22\tnsubj\t_\t_\n21\tstill\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\towns\t_\tVERB\tVBZ\t_\t5\tadvcl\t_\t_\n23\tsome\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tTexaco\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tstock\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPartly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tbecause\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tof\t_\tADP\tIN\t_\t2\tmwe\t_\t_\n4\tconcern\t_\tNOUN\tNN\t_\t27\tdep\t_\t_\n5\tabout\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\teconomy\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n9\tpartly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n10\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n11\tshe\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\trecently\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n13\tquit\t_\tVERB\tVBD\t_\t4\tconj\t_\t_\n14\ther\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tjob\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlegal\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tassistant\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tgo\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n22\tto\t_\tADP\tTO\t_\t23\tcase\t_\t_\n23\tschool\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n25\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n26\tI\t_\tPRON\tPRP\t_\t27\tnsubj\t_\t_\n27\tthink\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n28\tat\t_\tADP\tIN\t_\t30\tcase\t_\t_\n29\tthis\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tpoint\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\twe\t_\tPRON\tPRP\t_\t32\tnsubj\t_\t_\n32\twant\t_\tVERB\tVBP\t_\t27\tccomp\t_\t_\n33\tto\t_\tPART\tTO\t_\t38\tmark\t_\t_\n34\tbe\t_\tVERB\tVB\t_\t38\tcop\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tlot\t_\tNOUN\tNN\t_\t37\tnmod:npmod\t_\t_\n37\tmore\t_\tADV\tRBR\t_\t38\tadvmod\t_\t_\n38\tliquid\t_\tADJ\tJJ\t_\t32\txcomp\t_\t_\n39\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n40\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\twonder\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\thow\t_\tADV\tWRB\t_\t4\tadvmod\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t13\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthese\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tshocks\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tsmall\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tinvestor\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n12\tcan\t_\tAUX\tMD\t_\t13\taux\t_\t_\n13\tstand\t_\tVERB\tVB\t_\t2\tccomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tall\t_\tDET\tDT\t_\t4\tdep\t_\t_\n4\tassumed\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n5\tOctober\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n6\t'87\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n7\twas\t_\tVERB\tVBD\t_\t10\tcop\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tone-time\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tshot\t_\tNOUN\tNN\t_\t4\tccomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tSan\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n15\tFrancisco\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n16\tattorney\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n17\tDavid\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tGreenberg\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\ttold\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tlittle\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tguy\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tcould\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tonly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\thappen\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n11\tonce\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tlifetime\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n16\tcome\t_\tVERB\tVBN\t_\t10\tparataxis\t_\t_\n17\ton\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tback\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tNow\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t's\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\thappening\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\tagain\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n7\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tMr.\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tGreenberg\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tout\t_\tADP\tRP\t_\t3\txcomp\t_\t_\n5\tjust\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n6\tbefore\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\this\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\tregret\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n16\tnever\t_\tADV\tRB\t_\t17\tneg\t_\t_\n17\twent\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n18\tback\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\teven\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n20\tas\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tsoared\t_\tVERB\tVBD\t_\t17\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\ttime\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n3\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\tready\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tbuy\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tin\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t7\tpunct\t_\t_\n10\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tpanic\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\twears\t_\tVERB\tVBZ\t_\t7\tadvcl\t_\t_\n14\toff\t_\tADP\tRP\t_\t13\tcompound:prt\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\the\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tadds\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\t:\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n7\tWe\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tca\t_\tAUX\tMD\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\thave\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n11\tthis\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tkind\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tthing\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n15\thappen\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n16\tvery\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\toften\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t5\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlittle\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tguy\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tgets\t_\tVERB\tVBZ\t_\t11\tadvcl\t_\t_\n6\tfrightened\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tbig\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tguys\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\thurt\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n12\tbadly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tsurvive\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\twithout\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tlittle\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tguy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tSmall\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\ttiptoed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tback\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n6\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\tfollowing\t_\tVERB\tVBG\t_\t11\tcase\t_\t_\n10\tBlack\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tMonday\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n14\tmostly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tmutual\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tfunds\t_\tNOUN\tNNS\t_\t4\tdep\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tDiscount\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tbrokerage\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tcustomers\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n5\thave\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n6\tbeen\t_\tVERB\tVBN\t_\t9\tcop\t_\t_\n7\tin\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t23\tccomp\t_\t_\n10\tsomewhat\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n11\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tnot\t_\tADV\tRB\t_\t14\tneg\t_\t_\n13\twhole\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\thog\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tlike\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n16\tthey\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\twere\t_\tVERB\tVBD\t_\t14\tdep\t_\t_\n18\ttwo\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tyears\t_\tNOUN\tNNS\t_\t20\tnmod:npmod\t_\t_\n20\tago\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tLeslie\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n25\tQuick\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tJr.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tchairman\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n29\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tQuick\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\t&\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tReilly\t_\tPROPN\tNNP\t_\t36\tcompound\t_\t_\n34\tdiscount\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n35\tbrokerage\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tfirm\t_\tNOUN\tNN\t_\t31\tconj\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tHugo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tQuackenbush\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tsenior\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCharles\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tScwhab\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tSchwab\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tcustomers\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n15\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n17\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n18\tneutral\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tto\t_\tADP\tTO\t_\t20\tdep\t_\t_\n20\tcautious\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n21\trecently\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\tabout\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tstocks\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tIndividual\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n4\tstill\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tangry\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n6\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tprogram\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttrading\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tMr.\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tQuackenbush\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n12\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tAvner\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tArbel\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n5\tCornell\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n6\tUniversity\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tfinance\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tprofessor\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tgovernment\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tregulators\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\thave\t_\tVERB\tVB\t_\t10\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n16\tmore\t_\tADV\tRBR\t_\t17\tadvmod\t_\t_\n17\tclosely\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n18\tcontrol\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n19\tprogram\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\ttrading\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n23\twin\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n24\tback\t_\tADP\tRP\t_\t23\tcompound:prt\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tconfidence\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\tsmall\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tinvestor\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n32\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n4\tnot\t_\tPART\tRB\t_\t8\tneg\t_\t_\n5\tonly\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n9\tthat\t_\tPRON\tWDT\t_\t10\tnsubj\t_\t_\n10\thas\t_\tVERB\tVBZ\t_\t8\tdep\t_\t_\n11\tsome\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tsmall\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tinvestors\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n14\tworried\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAlan\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tHelfman\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tgeneral\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tsales\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tmanager\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tChrysler\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tdealership\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tHouston\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n14\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n15\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\this\t_\tPRON\tPRP$\t_\t18\tnmod:poss\t_\t_\n18\tmother\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n19\thave\t_\tVERB\tVBP\t_\t14\tdep\t_\t_\n20\tsome\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tjoint\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tstock\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tinvestments\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\toverall\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\teconomy\t_\tNOUN\tNN\t_\t32\tnsubj\t_\t_\n29\tis\t_\tVERB\tVBZ\t_\t32\tcop\t_\t_\n30\this\t_\tPRON\tPRP$\t_\t32\tnmod:poss\t_\t_\n31\tchief\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tworry\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tThese\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\thigh\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\trollers\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\ttook\t_\tVERB\tVBD\t_\t13\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tbath\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n9\ttoday\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n11\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n12\the\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\this\t_\tPRON\tPRP$\t_\t16\tnmod:poss\t_\t_\n16\tshowroom\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n20\twithin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n22\tfew\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tmiles\t_\tNOUN\tNNS\t_\t16\tacl:relcl\t_\t_\n24\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n26\tmulti-million\t_\tADJ\tJJ\t_\t27\tdep\t_\t_\n27\tdollar\t_\tNOUN\tNN\t_\t28\tamod\t_\t_\n28\thomes\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tsome\t_\tDET\tDT\t_\t28\tnmod\t_\t_\n31\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n32\tHouston\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\trichest\t_\tADJ\tJJS\t_\t35\tamod\t_\t_\n35\tcitizens\t_\tNOUN\tNNS\t_\t30\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n2\tAnd\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n3\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\ttell\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tyou\t_\tPRON\tPRP\t_\t5\tdobj\t_\t_\n7\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\thigh\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\troller\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tgoing\t_\tVERB\tVBG\t_\t5\tccomp\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tcome\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\tin\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n17\ttomorrow\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\tbuy\t_\tVERB\tVB\t_\t15\tconj\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tChrysler\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tTC\t_\tPROPN\tNNP\t_\t19\tdobj\t_\t_\n23\tby\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tMaserati\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\tfinally\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tthere\t_\tPRON\tEX\t_\t6\texpl\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tgloaters\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tgot\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tout\t_\tADP\tRP\t_\t3\txcomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tEverything\t_\tNOUN\tNN\t_\t4\tdep\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tPascal\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tAntori\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n9\tAkron\t_\tPROPN\tNNP\t_\t14\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tOhio\t_\tPROPN\tNNP\t_\t9\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tplumbing\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tcontractor\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n15\twho\t_\tPRON\tWP\t_\t17\tnsubj\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\taux\t_\t_\n17\tvisiting\t_\tVERB\tVBG\t_\t14\tacl:relcl\t_\t_\n18\tChicago\t_\tPROPN\tNNP\t_\t17\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n20\tstopped\t_\tVERB\tVBD\t_\t17\tconj\t_\t_\n21\tby\t_\tADP\tIN\t_\t27\tcase\t_\t_\n22\tFidelity\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tInvestments\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n24\t'\t_\tPART\tPOS\t_\t23\tcase\t_\t_\n25\tLaSalle\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tStreet\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\toffice\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\tjust\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tstopped\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tRP\t_\t4\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tsee\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n8\thow\t_\tADV\tWRB\t_\t9\tadvmod\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t13\tadvmod\t_\t_\n10\tI\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\twould\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\thave\t_\tAUX\tVB\t_\t13\taux\t_\t_\n13\tlost\t_\tVERB\tVBN\t_\t7\tccomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tWould\t_\tAUX\tMD\t_\t5\taux\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tAntori\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tever\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tget\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tback\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n7\tin\t_\tADP\tRP\t_\t5\txcomp\t_\t_\n8\t?\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tAre\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tyou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\tkidding\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\t!\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tcomes\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n4\tto\t_\tADP\tTO\t_\t5\tcase\t_\t_\n5\tmoney\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n6\t:\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n7\tOnce\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tbitten\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\t2,000\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\ttimes\t_\tNOUN\tNNS\t_\t12\tnmod:npmod\t_\t_\n12\tshy\t_\tADJ\tJJ\t_\t8\tdep\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcrowded\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tfield\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tnotebook-sized\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tcomputers\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n8\tabout\t_\tADV\tRB\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tbecome\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tlot\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tmore\t_\tADV\tRBR\t_\t14\tadvmod\t_\t_\n14\tcrowded\t_\tADJ\tJJ\t_\t10\txcomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tlong-awaited\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tentry\t_\tNOUN\tNN\t_\t13\tnsubjpass\t_\t_\n7\ttoday\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n8\tinto\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tnotebook\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tfield\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n12\tis\t_\tAUX\tVBZ\t_\t13\tauxpass\t_\t_\n13\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tput\t_\tVERB\tVB\t_\t13\txcomp\t_\t_\n16\timmediate\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\theat\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tothers\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmarket\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n24\tespecially\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n25\tZenith\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n26\tElectronics\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tCorp.\t_\tPROPN\tNNP\t_\t19\tdep\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n30\tcurrent\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t32\tcompound\t_\t_\n32\tleader\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n35\ton\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\ta\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tswarm\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tpromising\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tstart-ups\t_\tNOUN\tNNS\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tseries\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tnotebooks\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\textends\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttrend\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\ttoward\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tdownsizing\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tpersonal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tmarket\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tmanufacturer\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\talready\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tproduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tclipboard-sized\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcomputer\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tcalled\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnotepad\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n14\ttwo\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\tothers\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n16\thave\t_\tAUX\tVBP\t_\t17\taux\t_\t_\n17\tintroduced\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n18\teven\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n19\tsmaller\t_\tADJ\tJJR\t_\t21\tamod\t_\t_\n20\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n21\tpalmtops\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t5\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthose\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tmachines\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n5\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tnovelties\t_\tNOUN\tNNS\t_\t6\txcomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n9\twith\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tkeyboards\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tonly\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tmunchkin\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tcould\t_\tAUX\tMD\t_\t15\taux\t_\t_\n15\tlove\t_\tVERB\tVB\t_\t10\tacl:relcl\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n17\tscreens\t_\tVERB\tVBZ\t_\t10\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tmatch\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnotebooks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tcontrast\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n8\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n9\tbe\t_\tVERB\tVB\t_\t11\tcop\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tfirst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tweight\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tclass\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\tnot\t_\tPART\tRB\t_\t18\tneg\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tskimp\t_\tVERB\tVB\t_\t11\tdep\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tfeatures\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n21\tfound\t_\tVERB\tVBN\t_\t20\tacl\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tmuch\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tbigger\t_\tADJ\tJJR\t_\t25\tamod\t_\t_\n25\tmachines\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t're\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\tfaster\t_\tADJ\tJJR\t_\t2\tdep\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tcarry\t_\tVERB\tVBP\t_\t5\tconj\t_\t_\n8\tmore\t_\tADJ\tJJR\t_\t9\tamod\t_\t_\n9\tmemory\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tanything\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\telse\t_\tADV\tRB\t_\t11\tamod\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ttheir\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n15\tsize\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n16\ton\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmarket\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n19\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n21\tthey\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\t're\t_\tAUX\tVBP\t_\t23\tauxpass\t_\t_\n23\tpriced\t_\tVERB\tVBN\t_\t5\tconj\t_\t_\n24\taggressively\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n25\tat\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t27\tdep\t_\t_\n27\t2,400\t_\tNUM\tCD\t_\t23\tnmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t27\tdep\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t5,000\t_\tNUM\tCD\t_\t27\tdep\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAll\t_\tDET\tDT\t_\t4\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tthis\t_\tPRON\tDT\t_\t1\tnmod\t_\t_\n4\tcomes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmachine\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthat\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n9\tweighs\t_\tVERB\tVBZ\t_\t7\tacl:relcl\t_\t_\n10\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tsix\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tpounds\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\tfits\t_\tVERB\tVBZ\t_\t9\tconj\t_\t_\n15\tcomfortably\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\tinto\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tmost\t_\tADJ\tJJS\t_\t18\tamod\t_\t_\n18\tbriefcases\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\trecent\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmonths\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tCompaq\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tcompetition\t_\tNOUN\tNN\t_\t22\tnsubj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tincluding\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n10\tZenith\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tToshiba\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n15\tTandy\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n18\tNEC\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\tCorp.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n20\tall\t_\tDET\tDT\t_\t22\tdep\t_\t_\n21\thave\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n22\tintroduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tportables\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n24\tthat\t_\tPRON\tWDT\t_\t25\tnsubj\t_\t_\n25\tweigh\t_\tVERB\tVBP\t_\t23\tacl:relcl\t_\t_\n26\tapproximately\t_\tADV\tRB\t_\t28\tadvmod\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsame\t_\tADJ\tJJ\t_\t25\tdobj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\tthat\t_\tPRON\tWDT\t_\t32\tnsubjpass\t_\t_\n31\tare\t_\tAUX\tVBP\t_\t32\tauxpass\t_\t_\n32\tcalled\t_\tVERB\tVBN\t_\t25\tconj\t_\t_\n33\tnotebooks\t_\tNOUN\tNNS\t_\t32\txcomp\t_\t_\n34\t--\t_\tPUNCT\t:\t_\t32\tpunct\t_\t_\n35\tperhaps\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tmisleadingly\t_\tADV\tRB\t_\t32\tadvmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tOne\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tanalyst\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n4\tnoting\t_\tVERB\tVBG\t_\t15\tadvcl\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n6\tmost\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n7\tsuch\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmachines\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n9\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n10\tabout\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\ttwo\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tinches\t_\tNOUN\tNNS\t_\t13\tnmod:npmod\t_\t_\n13\tthick\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n15\ttakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\texception\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tname\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t7\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n5\tquite\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tnotebook\t_\tNOUN\tNN\t_\t17\tccomp\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n9\tI\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tcall\t_\tVERB\tVBP\t_\t7\tparataxis\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tphonebook\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t17\tpunct\t_\t_\n16\the\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n17\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubjpass\t_\t_\n2\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tbe\t_\tAUX\tVB\t_\t5\tauxpass\t_\t_\n5\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n8\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n9\t2,400\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n10\tnotepad\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tcomputer\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n12\tintroduced\t_\tVERB\tVBN\t_\t11\tacl\t_\t_\n13\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tfew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tweeks\t_\tNOUN\tNNS\t_\t16\tnmod:npmod\t_\t_\n16\tago\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n17\tby\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tGRiD\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tSystems\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tCorp.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t20\tappos\t_\t_\n24\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tTandy\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tInstead\t_\tADV\tRB\t_\t4\tcase\t_\t_\n2\tof\t_\tADP\tIN\t_\t1\tmwe\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tkeyboard\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\twriting\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tsurface\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tan\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\telectronic\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpen\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tability\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n18\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n20\tread\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n22\tblock\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tprinting\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\t4\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\t1/2\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n4\tpounds\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t11\tnsubjpass\t_\t_\n7\tmay\t_\tAUX\tMD\t_\t11\taux\t_\t_\n8\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n9\ttoo\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tambitiously\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tnamed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\tbut\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n15\tnevertheless\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\topens\t_\tVERB\tVBZ\t_\t11\tconj\t_\t_\n17\tup\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tkind\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tmarketing\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tpossibilities\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t24\tnsubj\t_\t_\n24\tmake\t_\tVERB\tVBP\t_\t19\tacl:relcl\t_\t_\n25\tanalysts\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n26\tfroth\t_\tVERB\tVB\t_\t24\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tPalmtops\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tn't\t_\tPART\tRB\t_\t2\tneg\t_\t_\n4\tfar\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tbehind\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAtari\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tPortfolio\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n6\tintroduced\t_\tVERB\tVBN\t_\t20\tadvcl\t_\t_\n7\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tEurope\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\ttwo\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmonths\t_\tNOUN\tNNS\t_\t11\tnmod:npmod\t_\t_\n11\tago\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tU.S.\t_\tPROPN\tNNP\t_\t6\tconj\t_\t_\n16\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tearly\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tSeptember\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n20\tweighs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tless\t_\tADV\tRBR\t_\t23\tadvmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t21\tmwe\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tnummod\t_\t_\n24\tpound\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n26\tcosts\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n27\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tmere\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n29\t$\t_\tSYM\t$\t_\t30\tdep\t_\t_\n30\t400\t_\tNUM\tCD\t_\t26\tdobj\t_\t_\n31\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n32\truns\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n33\ton\t_\tADP\tIN\t_\t36\tcase\t_\t_\n34\tthree\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n35\tAA\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tbatteries\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n38\tyet\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n39\thas\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n40\tthe\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tpower\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n42\tto\t_\tPART\tTO\t_\t43\tmark\t_\t_\n43\trun\t_\tVERB\tVB\t_\t41\tacl\t_\t_\n44\tsome\t_\tDET\tDT\t_\t45\tdet\t_\t_\n45\tspreadsheets\t_\tNOUN\tNNS\t_\t43\tdobj\t_\t_\n46\tand\t_\tCONJ\tCC\t_\t45\tcc\t_\t_\n47\tword\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n48\tprocessing\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tprograms\t_\tNOUN\tNNS\t_\t45\tconj\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcritics\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n4\thowever\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n6\tsay\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n8\tability\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\trun\t_\tVERB\tVB\t_\t8\tacl\t_\t_\n11\tcommonplace\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tprograms\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\tauxpass\t_\t_\n14\trestricted\t_\tVERB\tVBN\t_\t6\tccomp\t_\t_\n15\tby\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tlimited\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tmemory\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tPoquet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputer\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tmeanwhile\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\thas\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\tintroduced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n10\tmuch\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tmore\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n12\tsophisticated\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tpalmtop\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t16\tnsubj\t_\t_\n15\tcan\t_\tAUX\tMD\t_\t16\taux\t_\t_\n16\trun\t_\tVERB\tVB\t_\t13\tacl:relcl\t_\t_\n17\tLotus\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\t1-2-3\t_\tPROPN\tNNP\t_\t16\tdobj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\tother\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n21\tsophisticated\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tsoftware\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tprograms\t_\tNOUN\tNNS\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n25\tbut\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n26\tcosts\t_\tVERB\tVBZ\t_\t16\tconj\t_\t_\n27\tfive\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\ttimes\t_\tNOUN\tNNS\t_\t30\tnummod\t_\t_\n29\tas\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\tmuch\t_\tADJ\tJJ\t_\t26\tdobj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tstake\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\twhat\t_\tPRON\tWP\t_\t20\tdobj\t_\t_\n5\tMike\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tSwavely\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCompaq\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n9\t's\t_\tPART\tPOS\t_\t8\tcase\t_\t_\n10\tpresident\t_\tNOUN\tNN\t_\t6\tappos\t_\t_\n11\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tNorth\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tAmerica\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\toperations\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n16\tcalls\t_\tVERB\tVBZ\t_\t28\tdep\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tHoly\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tGrail\t_\tPROPN\tNNP\t_\t16\txcomp\t_\t_\n21\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tcomputer\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tindustry\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n26\t--\t_\tPUNCT\t:\t_\t28\tpunct\t_\t_\n27\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n28\tsearch\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n29\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n30\t``\t_\tPUNCT\t``\t_\t33\tpunct\t_\t_\n31\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\treal\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tcomputer\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n34\tin\t_\tADP\tIN\t_\t36\tcase\t_\t_\n35\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tpackage\t_\tNOUN\tNN\t_\t33\tnmod\t_\t_\n37\tso\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n38\tsmall\t_\tADJ\tJJ\t_\t36\tamod\t_\t_\n39\tyou\t_\tPRON\tPRP\t_\t41\tnsubj\t_\t_\n40\tcan\t_\tAUX\tMD\t_\t41\taux\t_\t_\n41\ttake\t_\tVERB\tVB\t_\t38\tccomp\t_\t_\n42\tit\t_\tPRON\tPRP\t_\t41\tdobj\t_\t_\n43\teverywhere\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n45\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n4\tso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tnew\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tnobody\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tknows\t_\tVERB\tVBZ\t_\t5\tccomp\t_\t_\n9\tyet\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\thow\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n11\tbig\t_\tADJ\tJJ\t_\t14\tdep\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\tbe\t_\tVERB\tVB\t_\t8\tccomp\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\thad\t_\tVERB\tVBD\t_\t23\tccomp\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tlot\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tpeople\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\ttrying\t_\tVERB\tVBG\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tsell\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tme\t_\tPRON\tPRP\t_\t11\tiobj\t_\t_\n13\tservices\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\tto\t_\tPART\tTO\t_\t15\tmark\t_\t_\n15\tfind\t_\tVERB\tVB\t_\t13\tacl\t_\t_\n16\tout\t_\tADP\tRP\t_\t15\tcompound:prt\t_\t_\n17\thow\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n18\tbig\t_\tADJ\tJJ\t_\t20\tdep\t_\t_\n19\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t15\tccomp\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tTom\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tHumphries\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tdirector\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n28\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tmarketing\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tGRiD\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n2\tWhether\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n4\t's\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\t$\t_\tSYM\t$\t_\t14\tadvcl\t_\t_\n6\t5\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tbillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n9\t$\t_\tSYM\t$\t_\t5\tconj\t_\t_\n10\t3.5\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tdoes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n16\tmatter\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\thuge\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tConsider\t_\tVERB\tVB\t_\t0\troot\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tgrowth\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tportables\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n8\tnow\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tcomprise\t_\tVERB\tVBP\t_\t5\tacl:relcl\t_\t_\n10\t12\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\t%\t_\tSYM\tNN\t_\t9\tdobj\t_\t_\n12\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tall\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tpersonal\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\tcomputer\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tsales\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tLaptops\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n2\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n3\tgenerally\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tanything\t_\tNOUN\tNN\t_\t1\tdep\t_\t_\n5\tunder\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\t15\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tpounds\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n9\thave\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n10\tbecome\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\tfastest-growing\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n13\tpersonal\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tcomputer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsegment\t_\tNOUN\tNN\t_\t10\txcomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n17\twith\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n18\tsales\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n19\tdoubling\t_\tVERB\tVBG\t_\t10\tadvcl\t_\t_\n20\tthis\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tyear\t_\tNOUN\tNN\t_\t19\tnmod:tmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tResponding\t_\tVERB\tVBG\t_\t9\tdep\t_\t_\n2\tto\t_\tADP\tTO\t_\t4\tcase\t_\t_\n3\tthat\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tdemand\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n6\thowever\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n8\thas\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n9\tled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tvariety\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tcompromises\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tMaking\t_\tVERB\tVBG\t_\t5\tcsubj\t_\t_\n2\tcomputers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsmaller\t_\tADJ\tJJR\t_\t1\txcomp\t_\t_\n4\toften\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tmeans\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tsacrificing\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n7\tmemory\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tprecluded\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tuse\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n8\tfaster\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tmore\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tpowerful\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tmicroprocessors\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n13\tfound\t_\tVERB\tVBN\t_\t12\tacl\t_\t_\n14\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tincreasing\t_\tVERB\tVBG\t_\t16\tamod\t_\t_\n16\tnumbers\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tdesktop\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tmachines\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tSize\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tweight\t_\tNOUN\tNN\t_\t1\tconj\t_\t_\n4\tconsiderations\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\talso\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t7\taux\t_\t_\n7\tlimited\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tscreen\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tdisplays\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tcompetitive\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsniping\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tget\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tpretty\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tpetty\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n8\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\ttimes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tPoquet\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokesman\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tfor\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\texample\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tcriticizes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tAtari\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tPortfolio\t_\tPROPN\tNNP\t_\t8\tdobj\t_\t_\n12\tbecause\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\trequires\t_\tVERB\tVBZ\t_\t8\tadvcl\t_\t_\n15\tthree\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tbatteries\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\twhile\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tPoquet\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tneeds\t_\tVERB\tVBZ\t_\t14\tadvcl\t_\t_\n21\tonly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\ttwo\t_\tNUM\tCD\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tBoth\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpalmtops\t_\tNOUN\tNNS\t_\t4\tnsubjpass\t_\t_\n3\tare\t_\tAUX\tVBP\t_\t4\tauxpass\t_\t_\n4\tdismissed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tnotebook\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tmakers\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twho\t_\tPRON\tWP\t_\t10\tnsubj\t_\t_\n10\targue\t_\tVERB\tVBP\t_\t7\tacl:relcl\t_\t_\n11\tthat\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n12\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\t're\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n14\ttoo\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tsmall\t_\tADJ\tJJ\t_\t10\tccomp\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t26\tpunct\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tproblem\t_\tNOUN\tNN\t_\t26\tdep\t_\t_\n19\tPoquet\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n20\talso\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tencountered\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tfocus\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tgroups\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n26\tadmits\t_\tVERB\tVBZ\t_\t15\tparataxis\t_\t_\n27\tGerry\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tPurdy\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tdirector\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n31\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tmarketing\t_\tNOUN\tNN\t_\t30\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tPoquet\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n3\ttrying\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tavoid\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n8\tgadget\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n9\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n10\tlabel\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tresponded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\twith\t_\tADP\tIN\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\ttag\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tline\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n19\tThe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tPoquet\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tPC\t_\tPROPN\tNNP\t_\t16\tdep\t_\t_\n22\t--\t_\tPUNCT\t:\t_\t21\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n24\tVery\t_\tPROPN\tNNP\t_\t25\tamod\t_\t_\n25\tBig\t_\tPROPN\tNNP\t_\t26\tamod\t_\t_\n26\tComputer\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n\n1\tDespite\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tsniping\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tfew\t_\tADJ\tJJ\t_\t6\tnsubj\t_\t_\n6\tquestion\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tinevitability\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tmove\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tsmall\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmachines\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n16\tdo\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n17\tn't\t_\tPART\tRB\t_\t18\tneg\t_\t_\n18\tmake\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n19\tcompromises\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tToward\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthat\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tend\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\texperts\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\treal\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tbattle\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n10\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n11\ttake\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n12\tplace\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tcenter-stage\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tplayers\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\tlike\t_\tADP\tIN\t_\t22\tcase\t_\t_\n17\tToshiba\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n19\tZenith\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tnow\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n22\tCompaq\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tmachines\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n6\tconsidered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tdirect\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tthreat\t_\tNOUN\tNN\t_\t6\txcomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tstart-up\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tfirms\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tlike\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tDynabook\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\twhich\t_\tPRON\tWDT\t_\t18\tnsubj\t_\t_\n18\tintroduced\t_\tVERB\tVBD\t_\t15\tacl:relcl\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tJune\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcomputer\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n25\tlike\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tCompaq\t_\tPROPN\tNNP\t_\t29\tnmod\t_\t_\n27\t's\t_\tPART\tPOS\t_\t26\tcase\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n29\tuses\t_\tVERB\tVBZ\t_\t22\tacl:relcl\t_\t_\n30\tan\t_\tDET\tDT\t_\t33\tdet\t_\t_\n31\tIntel\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\t286\t_\tNUM\tCD\t_\t33\tnummod\t_\t_\n33\tmicroprocessor\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n34\tand\t_\tCONJ\tCC\t_\t29\tcc\t_\t_\n35\thas\t_\tVERB\tVBZ\t_\t29\tconj\t_\t_\n36\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n37\thard\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tdisk\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tdrive\t_\tNOUN\tNN\t_\t35\tdobj\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tDynabook\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tproduct\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t8\tcop\t_\t_\n6\ttwice\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n7\tas\t_\tADP\tIN\t_\t8\tdep\t_\t_\n8\theavy\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tcosts\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\tmore\t_\tADJ\tJJR\t_\t10\tdobj\t_\t_\n12\tthan\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tCompaq\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tannouncement\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n4\talso\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tspells\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\ttrouble\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tZenith\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n11\tlast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tdep\t_\t_\n13\thad\t_\tVERB\tVBD\t_\t8\tacl:relcl\t_\t_\n14\t28\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tU.S.\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tlaptop\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n22\trecently\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\tagreed\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tsell\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\tits\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n27\tcomputer\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tbusiness\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n29\tto\t_\tADP\tTO\t_\t33\tcase\t_\t_\n30\tCie.\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tdes\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tMachines\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tBull\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\tthe\t_\tDET\tDT\t_\t39\tdet\t_\t_\n36\tFrench\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n37\tgovernment-owned\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tcomputer\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tmaker\t_\tNOUN\tNN\t_\t33\tappos\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tZenith\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tholders\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tvote\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tDecember\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\ton\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n9\tproposed\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n10\t$\t_\tSYM\t$\t_\t13\tamod\t_\t_\n11\t635\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tsale\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tprice\t_\tNOUN\tNN\t_\t13\tappos\t_\t_\n17\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n18\tcould\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tslip\t_\tVERB\tVB\t_\t16\tacl:relcl\t_\t_\n20\tbecause\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t23\tnsubjpass\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t23\tauxpass\t_\t_\n23\tpegged\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n25\tZenith\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tshare\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tsales\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n3\talready\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\ttaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\taim\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n6\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tZenith\t_\tPROPN\tNNP\t_\t10\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tshare\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tRod\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCanion\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tCompaq\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tchief\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\texecutive\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tofficer\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\tnotes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n13\tpointedly\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tZenith\t_\tPROPN\tNNP\t_\t19\tnmod:poss\t_\t_\n16\t's\t_\tPART\tPOS\t_\t15\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t19\tamod\t_\t_\n18\t2,000\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n19\tMinisPort\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n20\tuses\t_\tVERB\tVBZ\t_\t12\tccomp\t_\t_\n21\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n23\tunconventional\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n25\ttwo-inch\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tfloppy\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tdisk\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n29\twhereas\t_\tSCONJ\tIN\t_\t34\tmark\t_\t_\n30\tCompaq\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tnew\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tmachines\t_\tNOUN\tNNS\t_\t34\tnsubj\t_\t_\n34\tuse\t_\tVERB\tVBP\t_\t20\tadvcl\t_\t_\n35\tthe\t_\tDET\tDT\t_\t40\tdet\t_\t_\n36\tmore\t_\tADV\tRBR\t_\t37\tadvmod\t_\t_\n37\tcommon\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n38\t3\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\t1/2-inch\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tdisk\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tJohn\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tP.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tFrank\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tZenith\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tData\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSystems\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tsimply\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\tshrugs\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n13\toff\t_\tADP\tRP\t_\t12\tcompound:prt\t_\t_\n14\tsuch\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcriticism\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n17\tnoting\t_\tVERB\tVBG\t_\t12\tadvcl\t_\t_\n18\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n19\t3\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t1/2-inch\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tfloppies\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n22\twere\t_\tVERB\tVBD\t_\t25\tcop\t_\t_\n23\talso\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n24\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n25\tunconventional\t_\tADJ\tJJ\t_\t17\tccomp\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n27\twhen\t_\tADV\tWRB\t_\t30\tadvmod\t_\t_\n28\tthey\t_\tPRON\tPRP\t_\t30\tnsubj\t_\t_\n29\tfirst\t_\tADV\tRB\t_\t30\tadvmod\t_\t_\n30\treplaced\t_\tVERB\tVBD\t_\t25\tadvcl\t_\t_\n31\tfive-inch\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tdisks\t_\tNOUN\tNNS\t_\t30\tdobj\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tdo\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tlook\t_\tVERB\tVB\t_\t25\tccomp\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t5\tnmod\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n9\tnot\t_\tADV\tRB\t_\t12\tneg\t_\t_\n10\tbeing\t_\tVERB\tVBG\t_\t12\tcop\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstandard\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n14\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tlook\t_\tVERB\tVBP\t_\t5\tparataxis\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t15\tnmod\t_\t_\n18\tas\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnew\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tstandard\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\targues\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tdo\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n3\tn't\t_\tPART\tRB\t_\t4\tneg\t_\t_\n4\tsee\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t4\tiobj\t_\t_\n6\tthat\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tway\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t30\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tca\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\timagine\t_\tVERB\tVB\t_\t30\tccomp\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tyou\t_\tPRON\tPRP\t_\t9\tnsubj\t_\t_\n8\t'll\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\ttalk\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tcase\t_\t_\n11\tanyone\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n12\twho\t_\tPRON\tWP\t_\t15\tnsubj\t_\t_\n13\two\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\ttell\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n16\tyou\t_\tPRON\tPRP\t_\t15\tdobj\t_\t_\n17\tthis\t_\tPRON\tDT\t_\t19\tnsubj\t_\t_\n18\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n19\tdynamite\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tCompaq\t_\tPROPN\tNNP\t_\t19\tnmod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tstopper\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\teveryone\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\telse\t_\tADV\tRB\t_\t26\tamod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n29\t''\t_\tPUNCT\t''\t_\t30\tpunct\t_\t_\n30\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n31\tGene\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tTalsky\t_\tPROPN\tNNP\t_\t30\tnsubj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\tpresident\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n35\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n36\tProfessional\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n37\tMarketing\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n38\tManagement\t_\tPROPN\tNNP\t_\t39\tcompound\t_\t_\n39\tInc\t_\tPROPN\tNNP\t_\t34\tnmod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t30\tpunct\t_\t_\n\n1\tAdds\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n2\tBill\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tLempesis\t_\tPROPN\tNNP\t_\t1\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tsenior\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tindustry\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tanalyst\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tfor\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tDataQuest\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n12\thigh-technology\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n13\tmarket\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tresearch\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tfirm\t_\tNOUN\tNN\t_\t9\tappos\t_\t_\n16\t:\t_\tPUNCT\t:\t_\t1\tpunct\t_\t_\n17\t``\t_\tPUNCT\t``\t_\t1\tpunct\t_\t_\n18\tWe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n19\tbasically\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tthink\t_\tVERB\tVBP\t_\t1\tccomp\t_\t_\n21\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n22\tthese\t_\tPRON\tDT\t_\t26\tnsubj\t_\t_\n23\tare\t_\tVERB\tVBP\t_\t26\tcop\t_\t_\n24\tvery\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\thot\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tproducts\t_\tNOUN\tNNS\t_\t20\tccomp\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tproblem\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tCompaq\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n5\tgoing\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\thave\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n10\tthey\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n11\two\t_\tAUX\tMD\t_\t14\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n14\table\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tmake\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tenough\t_\tADJ\tJJ\t_\t16\tdobj\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tthem\t_\tPRON\tPRP\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n21\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tCompaq\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tmachines\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tinclude\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\t3\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\t1/2-inch\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n8\tfloppy\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tdisk\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tdrive\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbacklit\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tscreen\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n15\tthat\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n16\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n17\tonly\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n18\t1/4-inch\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tthick\t_\tADJ\tJJ\t_\t14\tacl:relcl\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n21\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tinternal\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\texpansion\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tslot\t_\tNOUN\tNN\t_\t10\tconj\t_\t_\n25\tfor\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tmodem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n28\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tother\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\twords\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n33\talmost\t_\tADV\tRB\t_\t36\tamod\t_\t_\n34\tall\t_\tDET\tPDT\t_\t33\tdep\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tcapabilities\t_\tNOUN\tNNS\t_\t10\tappos\t_\t_\n37\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n38\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n39\ttypical\t_\tADJ\tJJ\t_\t41\tamod\t_\t_\n40\toffice\t_\tNOUN\tNN\t_\t41\tcompound\t_\t_\n41\tmachine\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tOthers\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tundoubtedly\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tfollow\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tbut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n7\tmost\t_\tADJ\tJJS\t_\t8\tamod\t_\t_\n8\tanalysts\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tbelieve\t_\tVERB\tVBP\t_\t4\tconj\t_\t_\n10\tCompaq\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\thas\t_\tVERB\tVBZ\t_\t9\tccomp\t_\t_\n12\tat\t_\tADP\tIN\t_\t13\tcase\t_\t_\n13\tleast\t_\tADJ\tJJS\t_\t16\tadvmod\t_\t_\n14\ta\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tsix-month\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tlead\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n17\ton\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tcompetition\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tToshiba\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tline\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tportables\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n7\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\texample\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n10\tfeatures\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tT-1000\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n15\tis\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n16\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tsame\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tweight\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tclass\t_\tNOUN\tNN\t_\t12\tacl:relcl\t_\t_\n21\tbut\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t24\tcop\t_\t_\n23\tmuch\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tslower\t_\tADJ\tJJR\t_\t20\tconj\t_\t_\n25\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n26\thas\t_\tVERB\tVBZ\t_\t20\tconj\t_\t_\n27\tless\t_\tADJ\tJJR\t_\t28\tamod\t_\t_\n28\tmemory\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n30\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n31\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tT-1600\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\twhich\t_\tPRON\tWDT\t_\t36\tnsubj\t_\t_\n35\talso\t_\tADV\tRB\t_\t36\tadvmod\t_\t_\n36\tuses\t_\tVERB\tVBZ\t_\t32\tacl:relcl\t_\t_\n37\ta\t_\tDET\tDT\t_\t39\tdet\t_\t_\n38\t286\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n39\tmicroprocessor\t_\tNOUN\tNN\t_\t36\tdobj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n41\tbut\t_\tCONJ\tCC\t_\t36\tcc\t_\t_\n42\twhich\t_\tPRON\tWDT\t_\t43\tnsubj\t_\t_\n43\tweighs\t_\tVERB\tVBZ\t_\t36\tconj\t_\t_\n44\talmost\t_\tADV\tRB\t_\t45\tadvmod\t_\t_\n45\ttwice\t_\tADV\tRB\t_\t43\tdobj\t_\t_\n46\tas\t_\tADP\tIN\t_\t47\tcase\t_\t_\n47\tmuch\t_\tADJ\tJJ\t_\t45\tnmod\t_\t_\n48\tand\t_\tCONJ\tCC\t_\t43\tcc\t_\t_\n49\tis\t_\tVERB\tVBZ\t_\t53\tcop\t_\t_\n50\tthree\t_\tNUM\tCD\t_\t51\tcompound\t_\t_\n51\ttimes\t_\tNOUN\tNNS\t_\t53\tnummod\t_\t_\n52\tthe\t_\tDET\tDT\t_\t53\tdet\t_\t_\n53\tsize\t_\tNOUN\tNN\t_\t43\tconj\t_\t_\n54\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tthird\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tmodel\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n5\tmarketed\t_\tVERB\tVBN\t_\t10\tadvcl\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tJapan\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tmay\t_\tAUX\tMD\t_\t10\taux\t_\t_\n10\thit\t_\tVERB\tVB\t_\t0\troot\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t10\tdobj\t_\t_\n13\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tend\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tquarter\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\t1990\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tbut\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n24\tby\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tthen\t_\tADV\tRB\t_\t33\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\tanalysts\t_\tNOUN\tNNS\t_\t28\tnsubj\t_\t_\n28\tsay\t_\tVERB\tVBP\t_\t33\tparataxis\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tCompaq\t_\tPROPN\tNNP\t_\t33\tnsubj\t_\t_\n31\twill\t_\tAUX\tMD\t_\t33\taux\t_\t_\n32\thave\t_\tAUX\tVB\t_\t33\taux\t_\t_\n33\testablished\t_\tVERB\tVBN\t_\t10\tconj\t_\t_\n34\titself\t_\tPRON\tPRP\t_\t33\tdobj\t_\t_\n35\tas\t_\tADP\tIN\t_\t36\tcase\t_\t_\n36\tone\t_\tNUM\tCD\t_\t33\tnmod\t_\t_\n37\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n38\tthree\t_\tNUM\tCD\t_\t40\tnummod\t_\t_\n39\tmajor\t_\tADJ\tJJ\t_\t40\tamod\t_\t_\n40\tplayers\t_\tNOUN\tNNS\t_\t36\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t4\tdep\t_\t_\n2\tabout\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tBig\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBlue\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n5\t?\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tInternational\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n2\tBusiness\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tMachines\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t11\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tanalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tsay\t_\tVERB\tVBP\t_\t11\tparataxis\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tbeen\t_\tAUX\tVBN\t_\t11\tauxpass\t_\t_\n11\tburned\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\ttwice\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\tin\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n14\ttrying\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tenter\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlaptop\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tmarket\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n21\tshows\t_\tVERB\tVBZ\t_\t11\tconj\t_\t_\n22\tno\t_\tDET\tDT\t_\t23\tneg\t_\t_\n23\tsigns\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\tof\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\ttrying\t_\tVERB\tVBG\t_\t23\tacl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tget\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tinto\t_\tADP\tIN\t_\t29\tcase\t_\t_\n29\tnotebooks\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n30\tanytime\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n31\tsoon\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHoneywell\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n3\tand\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tInternational\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n5\tBusiness\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tMachines\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t2\tconj\t_\t_\n8\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tAir\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tForce\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcontracts\t_\tNOUN\tNNS\t_\t8\tdobj\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tdevelop\t_\tVERB\tVB\t_\t11\tacl\t_\t_\n14\tintegrated\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcircuits\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n16\tfor\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tuse\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\tin\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tspace\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tHoneywell\t_\tPROPN\tNNP\t_\t3\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tcontract\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\ttotaled\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\t$\t_\tSYM\t$\t_\t4\tdobj\t_\t_\n6\t69.7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n10\tIBM\t_\tPROPN\tNNP\t_\t12\tdep\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\t$\t_\tSYM\t$\t_\t4\tconj\t_\t_\n13\t68.8\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\tmillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBoeing\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCo.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t10\tamod\t_\t_\n6\t46.7\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tAir\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tForce\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tcontract\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n11\tfor\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n12\tdeveloping\t_\tVERB\tVBG\t_\t10\tacl\t_\t_\n13\tcable\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tsystems\t_\tNOUN\tNNS\t_\t12\tdobj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tMinuteman\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tMissile\t_\tPROPN\tNNP\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tGeneral\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tDynamics\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n6\t$\t_\tSYM\t$\t_\t11\tamod\t_\t_\n7\t29\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\tmillion\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n9\tAir\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tForce\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tcontract\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n12\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\telectronic-warfare\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\ttraining\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tsets\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGrumman\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n6\t18.1\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tNavy\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tcontract\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tupgrade\t_\tVERB\tVB\t_\t9\tacl\t_\t_\n12\taircraft\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\telectronics\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAvco\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCorp.\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\treceived\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tan\t_\tDET\tDT\t_\t9\tdet\t_\t_\n5\t$\t_\tSYM\t$\t_\t9\tamod\t_\t_\n6\t11.8\t_\tNUM\tCD\t_\t7\tcompound\t_\t_\n7\tmillion\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n8\tArmy\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tcontract\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\thelicopter\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tengines\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tSharp\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tincreases\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprice\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tfresh\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tproduce\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tcaused\t_\tVERB\tVBD\t_\t41\tccomp\t_\t_\n10\tSpain\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tSeptember\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tconsumer\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n14\tprice\t_\tNOUN\tNN\t_\t15\tcompound\t_\t_\n15\tindex\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tshoot\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n18\tup\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t1.1\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t17\tdobj\t_\t_\n21\tfrom\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n23\tprevious\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tmonth\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n26\tpushing\t_\tVERB\tVBG\t_\t17\tadvcl\t_\t_\n27\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n28\tannual\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\trate\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n30\tof\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\tinflation\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\tto\t_\tADP\tTO\t_\t34\tcase\t_\t_\n33\t6.8\t_\tNUM\tCD\t_\t34\tnummod\t_\t_\n34\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n35\t,\t_\tPUNCT\t,\t_\t41\tpunct\t_\t_\n36\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n37\tNational\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tInstitute\t_\tPROPN\tNNP\t_\t41\tnsubj\t_\t_\n39\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n40\tStatistics\t_\tPROPN\tNNP\t_\t38\tnmod\t_\t_\n41\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n42\tFriday\t_\tPROPN\tNNP\t_\t41\tnmod:tmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t41\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmonthly\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tincrease\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\thighest\t_\tADV\tRB\t_\t0\troot\t_\t_\n7\trecorded\t_\tVERB\tVBN\t_\t6\tacl\t_\t_\n8\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tpast\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tfour\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tyears\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tindex\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t5\tnsubj\t_\t_\n5\tregistered\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n6\t156.8\t_\tNUM\tCD\t_\t5\tdobj\t_\t_\n7\tat\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tend\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tSeptember\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tbase\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n16\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t100\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\tset\t_\tNOUN\tNN\t_\t15\tdep\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1983\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n22\tis\t_\tAUX\tVBZ\t_\t25\tauxpass\t_\t_\n23\tn't\t_\tPART\tRB\t_\t25\tneg\t_\t_\n24\tseasonally\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tadjusted\t_\tVERB\tVBN\t_\t13\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\trisen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t5.9\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n5\t%\t_\tSYM\tNN\t_\t3\tdobj\t_\t_\n6\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n8\tfirst\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tnine\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tmonths\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tyear\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n15\toutstripping\t_\tVERB\tVBG\t_\t3\tadvcl\t_\t_\n16\tboth\t_\tCONJ\tCC\t_\t22\tcc:preconj\t_\t_\n17\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n18\tinitial\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n19\t3\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\t%\t_\tSYM\tNN\t_\t22\tamod\t_\t_\n21\tinflation\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tgoal\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n23\tset\t_\tVERB\tVBN\t_\t22\tacl\t_\t_\n24\tby\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tgovernment\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n28\tSocialist\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n29\tPrime\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tMinister\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tFelipe\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tGonzalez\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n34\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n35\tsecond\t_\tADJ\tJJ\t_\t38\tamod\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n37\trevised\t_\tVERB\tVBN\t_\t38\tamod\t_\t_\n38\tgoal\t_\tNOUN\tNN\t_\t22\tconj\t_\t_\n39\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\t5.8\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n41\t%\t_\tSYM\tNN\t_\t38\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tJapan\t_\tPROPN\tNNP\t_\t4\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\twholesale\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tSeptember\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n7\trose\t_\tVERB\tVBD\t_\t28\tccomp\t_\t_\n8\t3.3\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\t%\t_\tSYM\tNN\t_\t7\tdobj\t_\t_\n10\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tyear\t_\tNOUN\tNN\t_\t13\tnmod:npmod\t_\t_\n13\tearlier\t_\tADV\tRBR\t_\t7\tadvcl\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n15\twere\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n16\tup\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n17\t0.4\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tfrom\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tprevious\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmonth\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tBank\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n26\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\tJapan\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n28\tannounced\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t28\tnmod:tmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\twholesale\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tprice\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tindex\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\tstood\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t90.1\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n9\tcompared\t_\tVERB\tVBN\t_\t13\tcase\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\t1985\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tbase\t_\tNOUN\tNN\t_\t5\tadvcl\t_\t_\n14\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\t100\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tPlunge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n2\t?\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tWhat\t_\tDET\tWDT\t_\t2\tdet\t_\t_\n2\tplunge\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n3\t?\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTwenty-four\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n2\tNew\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n3\tYork\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tExchange\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tissues\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\thit\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\t52-week\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\thighs\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tduring\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tFriday\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\ttrading\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n15\tdespite\t_\tADP\tIN\t_\t23\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tDow\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n18\tJones\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tIndustrial\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tAverage\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\t190.58-point\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tplunge\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tStocks\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tutilities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n4\theld\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tup\t_\tADP\tRP\t_\t4\tcompound:prt\t_\t_\n6\trelatively\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tbetter\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n8\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tother\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tsectors\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tduring\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tsell-off\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tamong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tissues\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n5\thitting\t_\tVERB\tVBG\t_\t4\tacl\t_\t_\n6\tnew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thighs\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tDetroit\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tEdison\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n13\tNiagara\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tMohawk\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\tPower\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tCorp\t_\tPROPN\tNNP\t_\t11\tconj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tmajor\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tissues\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n4\thitting\t_\tVERB\tVBG\t_\t3\tacl\t_\t_\n5\thighs\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n6\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tAmerican\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tTelephone\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n9\t&\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tTelegraph\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCo.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n13\tWestinghouse\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tElectric\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n17\tExxon\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n20\tCigna\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tbig\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\tinsurer\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tmany\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tmore\t_\tADJ\tJJR\t_\t6\tamod\t_\t_\n6\tissues\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n8\t93\t_\tNUM\tCD\t_\t6\tdep\t_\t_\n9\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n10\thit\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n11\tnew\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tlows\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThese\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tInternational\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n4\tBusiness\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tMachines\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCorp.\t_\tPROPN\tNNP\t_\t2\tdobj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\twhich\t_\tPRON\tWDT\t_\t13\tnsubj\t_\t_\n9\tduring\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tFriday\t_\tPROPN\tNNP\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tsession\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n13\ttraded\t_\tVERB\tVBD\t_\t6\tacl:relcl\t_\t_\n14\tbelow\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t100\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tfirst\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttime\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n23\tsince\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\tJune\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n25\t1984\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tat\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\t$\t_\tSYM\t$\t_\t5\tdep\t_\t_\n5\t102\t_\tNUM\tCD\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tdown\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n8\t$\t_\tSYM\t$\t_\t9\tdep\t_\t_\n9\t5.625\t_\tNUM\tCD\t_\t7\tnmod:npmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tOther\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n2\tnew\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tlows\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tincluded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tNavistar\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tInternational\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tUnion\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n10\tCarbide\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tCorp.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tBethlehem\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tSteel\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tCorp.\t_\tPROPN\tNNP\t_\t7\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n17\tall\t_\tDET\tDT\t_\t21\tnsubjpass\t_\t_\n18\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhich\t_\tPRON\tWDT\t_\t17\tnmod\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\tauxpass\t_\t_\n21\tincluded\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n22\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n24\tindustrial\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\taverage\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMeanwhile\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\ttwo\t_\tNUM\tCD\t_\t6\tnummod\t_\t_\n4\tinitial\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tpublic\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tofferings\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n7\tbraved\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tcascading\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tmarket\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\ttheir\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\tmaiden\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tday\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tnational\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tover-the-counter\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttrading\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tShares\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tRally\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tan\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\toperator\t_\tNOUN\tNN\t_\t5\tappos\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tfast-food\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\trestaurants\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t17\t_\tNUM\tCD\t_\t13\tnmod\t_\t_\n17\teach\t_\tDET\tDT\t_\t16\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n19\tup\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n20\tfrom\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t25\tnmod:poss\t_\t_\n22\t$\t_\tSYM\t$\t_\t25\tamod\t_\t_\n23\t15\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n24\toffering\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tprice\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n27\tshares\t_\tNOUN\tNNS\t_\t38\tnsubj\t_\t_\n28\tof\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tEmployee\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n30\tBenefit\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tPlans\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tInc.\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n35\thealth-care\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tconsultant\t_\tNOUN\tNN\t_\t32\tappos\t_\t_\n37\t,\t_\tPUNCT\t,\t_\t32\tpunct\t_\t_\n38\tclosed\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n39\tat\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\t$\t_\tSYM\t$\t_\t41\tdep\t_\t_\n41\t14.125\t_\tNUM\tCD\t_\t38\tnmod\t_\t_\n42\t,\t_\tPUNCT\t,\t_\t38\tpunct\t_\t_\n43\tup\t_\tADV\tRB\t_\t38\tadvmod\t_\t_\n44\tfrom\t_\tADP\tIN\t_\t49\tcase\t_\t_\n45\tits\t_\tPRON\tPRP$\t_\t49\tnmod:poss\t_\t_\n46\t$\t_\tSYM\t$\t_\t49\tamod\t_\t_\n47\t12\t_\tNUM\tCD\t_\t46\tcompound\t_\t_\n48\toffering\t_\tNOUN\tNN\t_\t49\tcompound\t_\t_\n49\tprice\t_\tNOUN\tNN\t_\t43\tnmod\t_\t_\n50\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tFord\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMotor\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tacquired\t_\tVERB\tVBD\t_\t4\tccomp\t_\t_\n7\t5\t_\tNUM\tCD\t_\t8\tnummod\t_\t_\n8\t%\t_\tSYM\tNN\t_\t6\tdobj\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshares\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tJaguar\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tPLC\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tJaguar\t_\tPROPN\tNNP\t_\t16\tnsubjpass\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n4\tLondon\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n5\tStock\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tExchange\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\tU.S.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSecurities\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tExchange\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tCommission\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n14\tare\t_\tAUX\tVBP\t_\t16\taux\t_\t_\n15\tbeing\t_\tAUX\tVBG\t_\t16\tauxpass\t_\t_\n16\tnotified\t_\tVERB\tVBN\t_\t23\tccomp\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\ttransactions\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tcompany\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tTrade\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCommission\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tadvised\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tFord\t_\tPROPN\tNNP\t_\t6\tdobj\t_\t_\n8\tlast\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tweek\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n12\twould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\traise\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n15\tany\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tobjection\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\tto\t_\tADP\tTO\t_\t19\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tacquisition\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tas\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tmuch\t_\tADJ\tJJ\t_\t19\tnmod\t_\t_\n23\tas\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t15\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\t%\t_\tSYM\tNN\t_\t22\tnmod\t_\t_\n26\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\tJaguar\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n2\tNo.\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n3\t2\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tauto\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmaker\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\tdisclosed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tlast\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tmonth\t_\tNOUN\tNN\t_\t6\tnmod:tmod\t_\t_\n9\tthat\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\twants\t_\tVERB\tVBZ\t_\t6\tccomp\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tbuy\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tas\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\tmuch\t_\tADJ\tJJ\t_\t13\tdobj\t_\t_\n16\tas\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t15\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tBritish\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n22\tluxury-car\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tmaker\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n25\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tmaximum\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n27\tallowed\t_\tVERB\tVBN\t_\t26\tacl\t_\t_\n28\tunder\t_\tADP\tIN\t_\t33\tcase\t_\t_\n29\tcurrent\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n30\tUnited\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n31\tKingdom\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n32\tgovernment\t_\tNOUN\tNN\t_\t33\tcompound\t_\t_\n33\trestrictions\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tGeneral\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tMotors\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n6\thad\t_\tAUX\tVBD\t_\t7\taux\t_\t_\n7\tdiscussed\t_\tVERB\tVBN\t_\t4\tccomp\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tpossibility\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tjoint\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tventure\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\twith\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tJaguar\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\tbefore\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n17\tFord\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n18\tbegan\t_\tVERB\tVBD\t_\t7\tadvcl\t_\t_\n19\tbuying\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\tshares\t_\tNOUN\tNNS\t_\t19\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tGM\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n4\tstill\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n6\ttalking\t_\tVERB\tVBG\t_\t2\tccomp\t_\t_\n7\twith\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tJaguar\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n9\tabout\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n10\tacquiring\t_\tVERB\tVBG\t_\t6\tadvcl\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tminority\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tinterest\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tInvestors\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n2\twho\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n3\tbought\t_\tVERB\tVBD\t_\t1\tacl:relcl\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n5\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tborrowed\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tmoney\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n9\tthat\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t3\tparataxis\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\t``\t_\tPUNCT\t``\t_\t10\tpunct\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tmargin\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t10\tpunct\t_\t_\n16\t--\t_\tPUNCT\t:\t_\t10\tpunct\t_\t_\n17\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n19\tmore\t_\tADV\tRBR\t_\t20\tadvmod\t_\t_\n20\tworried\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n21\tthan\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tmost\t_\tADJ\tJJS\t_\t20\tnmod\t_\t_\n23\tfollowing\t_\tVERB\tVBG\t_\t27\tcase\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmarket\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tdrop\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t2\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tbecause\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\tbrokers\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\trequire\t_\tVERB\tVB\t_\t2\tadvcl\t_\t_\n8\tthem\t_\tPRON\tPRP\t_\t7\tdobj\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tsell\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n11\tsome\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tshares\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n14\tput\t_\tVERB\tVB\t_\t10\tconj\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\tmore\t_\tADJ\tJJR\t_\t17\tamod\t_\t_\n17\tcash\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tenhance\t_\tVERB\tVB\t_\t17\tacl\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tcollateral\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n22\tbacking\t_\tVERB\tVBG\t_\t21\tacl\t_\t_\n23\ttheir\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n24\tloans\t_\tNOUN\tNNS\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tOctober\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n3\t1987\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n5\tthese\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tmargin\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tcalls\t_\tNOUN\tNNS\t_\t9\tnsubjpass\t_\t_\n8\twere\t_\tAUX\tVBD\t_\t9\tauxpass\t_\t_\n9\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n10\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n11\thave\t_\tAUX\tVB\t_\t12\taux\t_\t_\n12\tcontributed\t_\tVERB\tVBN\t_\t9\txcomp\t_\t_\n13\tto\t_\tADP\tTO\t_\t16\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tdownward\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tspiral\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tstock\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tmarket\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTypically\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tmargin\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tcall\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n6\toccurs\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n7\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tprice\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tstock\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tfalls\t_\tVERB\tVBZ\t_\t6\tadvcl\t_\t_\n14\tbelow\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\t75\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n17\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\toriginal\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tvalue\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t6\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tinvestor\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tdoes\t_\tAUX\tVBZ\t_\t6\taux\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tput\t_\tVERB\tVB\t_\t20\tadvcl\t_\t_\n7\tup\t_\tADP\tRP\t_\t6\tcompound:prt\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\textra\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tcash\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tsatisfy\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tcall\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbrokerage\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tfirm\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n19\tmay\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tbegin\t_\tVERB\tVB\t_\t0\troot\t_\t_\n21\tliquidating\t_\tVERB\tVBG\t_\t20\txcomp\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tsecurities\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\tbig\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\tbrokerage\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tfirms\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tthey\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n8\tdo\t_\tAUX\tVBP\t_\t10\taux\t_\t_\n9\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n10\texpect\t_\tVERB\tVB\t_\t6\tccomp\t_\t_\n11\tmajor\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tproblems\t_\tNOUN\tNNS\t_\t10\tdobj\t_\t_\n13\tas\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tresult\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tmargin\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tcalls\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tMargin\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tcalls\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n3\tsince\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tFriday\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\thave\t_\tAUX\tVBP\t_\t8\taux\t_\t_\n7\tbeen\t_\tVERB\tVBN\t_\t8\tcop\t_\t_\n8\thigher\t_\tADJ\tJJR\t_\t23\tccomp\t_\t_\n9\tthan\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tusual\t_\tADJ\tJJ\t_\t8\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n12\tbut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n13\treasonable\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tspokesman\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n18\tfor\t_\tADP\tIN\t_\t22\tcase\t_\t_\n19\tShearson\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n20\tLehman\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\tHutton\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tInc.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tMerrill\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tLynch\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n3\t&\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n4\tCo.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tofficials\t_\tNOUN\tNNS\t_\t2\tconj\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n7\tdo\t_\tAUX\tVBP\t_\t9\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n9\texpect\t_\tVERB\tVB\t_\t36\tccomp\t_\t_\n10\t-LCB-\t_\tPUNCT\t-LRB-\t_\t19\tpunct\t_\t_\n11\tmargin\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tcalls\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n13\t-RCB-\t_\tPUNCT\t-RRB-\t_\t19\tpunct\t_\t_\n14\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n15\tbe\t_\tVERB\tVB\t_\t19\tcop\t_\t_\n16\tas\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tfactor\t_\tNOUN\tNN\t_\t9\txcomp\t_\t_\n20\tas\t_\tADP\tIN\t_\t19\tadvmod\t_\t_\n21\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t1987\t_\tNUM\tCD\t_\t20\tnmod\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n24\tbecause\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n25\tfewer\t_\tADJ\tJJR\t_\t27\tamod\t_\t_\n26\tindividual\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tinvestors\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n28\tare\t_\tAUX\tVBP\t_\t29\taux\t_\t_\n29\tbuying\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n30\tstock\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n31\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n32\tmargin\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n33\t,\t_\tPUNCT\t,\t_\t36\tpunct\t_\t_\n34\ta\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tspokesman\t_\tNOUN\tNN\t_\t36\tnsubj\t_\t_\n36\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t36\tpunct\t_\t_\n\n1\tHugo\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tQuackenbush\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tsenior\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tvice\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tpresident\t_\tNOUN\tNN\t_\t2\tappos\t_\t_\n7\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tCharles\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n9\tSchwab\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tCorp.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n13\tSan\t_\tPROPN\tNNP\t_\t14\tamod\t_\t_\n14\tFrancisco-based\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n15\tdiscount\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tbrokerage\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tfirm\t_\tNOUN\tNN\t_\t10\tappos\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\the\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n21\tdid\t_\tAUX\tVBD\t_\t23\taux\t_\t_\n22\tn't\t_\tPART\tRB\t_\t23\tneg\t_\t_\n23\texpect\t_\tVERB\tVB\t_\t19\tccomp\t_\t_\n24\tany\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\timmediate\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tproblems\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n27\twith\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmargin\t_\tNOUN\tNN\t_\t29\tcompound\t_\t_\n29\tcalls\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\tfor\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tSchwab\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tcustomers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tSchwab\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\thad\t_\tAUX\tVBD\t_\t5\taux\t_\t_\n5\tincreased\t_\tVERB\tVBN\t_\t2\tdep\t_\t_\n6\tmargin\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\trequirements\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t5\tpunct\t_\t_\n9\tso\t_\tADP\tIN\t_\t5\tdep\t_\t_\n10\tcustomers\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\thave\t_\tVERB\tVBP\t_\t5\tparataxis\t_\t_\n12\tmore\t_\tADJ\tJJR\t_\t11\tdobj\t_\t_\n13\tof\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tcushion\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t2\tpunct\t_\t_\n\n1\tHe\t_\tPRON\tPRP\t_\t2\tnsubj\t_\t_\n2\tadded\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\t:\t_\tPUNCT\t:\t_\t2\tpunct\t_\t_\n4\t``\t_\tPUNCT\t``\t_\t2\tpunct\t_\t_\n5\tWe\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n6\tlearned\t_\tVERB\tVBD\t_\t2\tccomp\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tlesson\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\t1987\t_\tNUM\tCD\t_\t6\tnmod\t_\t_\n11\tabout\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tvolatility\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAvis\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tfollowing\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n5\trival\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n6\tHertz\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCorp.\t_\tPROPN\tNNP\t_\t9\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tlead\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n13\tis\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n14\tbacking\t_\tVERB\tVBG\t_\t11\tccomp\t_\t_\n15\tout\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tfrequent-flier\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n19\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthree\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n21\tairlines\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n2\tGarden\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n3\tCity\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n5\tN.Y.\t_\tPROPN\tNNP\t_\t2\tdep\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tcar-rental\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubj\t_\t_\n11\two\t_\tAUX\tMD\t_\t13\taux\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\trenew\t_\tVERB\tVB\t_\t9\tccomp\t_\t_\n14\tcontracts\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n16\tNWA\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tInc.\t_\tPROPN\tNNP\t_\t21\tnmod:poss\t_\t_\n18\t's\t_\tPART\tPOS\t_\t17\tcase\t_\t_\n19\tNorthwest\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tAirlines\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tunit\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tPan\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n24\tAm\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tCorp.\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tPan\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n28\tAmerican\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tWorld\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tAirways\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tunit\t_\tNOUN\tNN\t_\t21\tconj\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n33\tMidway\t_\tPROPN\tNNP\t_\t34\tcompound\t_\t_\n34\tAirlines\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n35\tat\t_\tADP\tIN\t_\t37\tcase\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tend\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n38\tof\t_\tADP\tIN\t_\t40\tcase\t_\t_\n39\tthis\t_\tDET\tDT\t_\t40\tdet\t_\t_\n40\tyear\t_\tNOUN\tNN\t_\t37\tnmod\t_\t_\n41\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tremains\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tinvolved\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tprograms\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n7\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n8\tAMR\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n10\t's\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\tAmerican\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tAirlines\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tunit\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n15\tDelta\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n16\tAir\t_\tPROPN\tNNP\t_\t17\tcompound\t_\t_\n17\tLines\t_\tPROPN\tNNP\t_\t13\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIndustry\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\testimates\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tput\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tAvis\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tannual\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tcost\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tall\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfive\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tprograms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\tat\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t14\tadvmod\t_\t_\n14\t$\t_\tSYM\t$\t_\t3\tnmod\t_\t_\n15\t8\t_\tNUM\tCD\t_\t16\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\t$\t_\tSYM\t$\t_\t14\tconj\t_\t_\n19\t14\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tspokesman\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tAvis\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\twould\t_\tAUX\tMD\t_\t7\taux\t_\t_\n6\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n7\tspecify\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tcosts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t7\tconj\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthree\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tairlines\t_\tNOUN\tNNS\t_\t17\tnsubj\t_\t_\n15\tbeing\t_\tAUX\tVBG\t_\t16\tauxpass\t_\t_\n16\tdropped\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n17\taccount\t_\tNOUN\tNN\t_\t11\tccomp\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n20\tfar\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tless\t_\tADJ\tJJR\t_\t17\tnmod\t_\t_\n22\tthan\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\thalf\t_\tDET\tDT\t_\t21\tnmod\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\ttotal\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBudget\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tRent\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\ta\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tCar\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tChicago\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n10\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n11\tNational\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n12\tCar\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n13\tRental\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tSystems\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc.\t_\tPROPN\tNNP\t_\t5\tconj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tMinneapolis\t_\tPROPN\tNNP\t_\t15\tnmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n20\tboth\t_\tDET\tDT\t_\t21\tdep\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tthey\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\thad\t_\tVERB\tVBD\t_\t21\tccomp\t_\t_\n24\tno\t_\tDET\tDT\t_\t25\tneg\t_\t_\n25\tplans\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tfollow\t_\tVERB\tVB\t_\t25\tacl\t_\t_\n28\tsuit\t_\tNOUN\tNN\t_\t27\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tfact\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\tBudget\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n5\tindicated\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n6\tit\t_\tPRON\tPRP\t_\t7\tnsubj\t_\t_\n7\tsaw\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n8\tsome\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tbenefit\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tmark\t_\t_\n11\tstaying\t_\tVERB\tVBG\t_\t9\tacl\t_\t_\n12\tinvolved\t_\tADJ\tJJ\t_\t11\txcomp\t_\t_\n13\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthese\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tprograms\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\twhich\t_\tPRON\tWDT\t_\t20\tnmod\t_\t_\n19\trenters\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tearn\t_\tVERB\tVBP\t_\t15\tacl:relcl\t_\t_\n21\tfrequent-flier\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tmiles\t_\tNOUN\tNNS\t_\t20\tdobj\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n24\tfliers\t_\tNOUN\tNNS\t_\t26\tnsubj\t_\t_\n25\tcan\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tget\t_\tVERB\tVB\t_\t20\tconj\t_\t_\n27\tcar-rental\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tdiscounts\t_\tNOUN\tNNS\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t21\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tnot\t_\tPART\tRB\t_\t5\tneg\t_\t_\n5\tsee\t_\tVERB\tVB\t_\t21\tccomp\t_\t_\n6\thow\t_\tADV\tWRB\t_\t15\tadvmod\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tnews\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n9\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tHertz\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n11\tand\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tAvis\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\tcan\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tnot\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tbenefit\t_\tVERB\tVB\t_\t5\tccomp\t_\t_\n16\tBudget\t_\tPROPN\tNNP\t_\t18\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tprograms\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tBob\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tWilson\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n25\tBudget\t_\tPROPN\tNNP\t_\t28\tnmod:poss\t_\t_\n26\t's\t_\tPART\tPOS\t_\t25\tcase\t_\t_\n27\tvice\t_\tNOUN\tNN\t_\t28\tcompound\t_\t_\n28\tpresident\t_\tNOUN\tNN\t_\t23\tappos\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\tmarketing\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tplanning\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tNorthwest\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tMidway\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tare\t_\tVERB\tVBP\t_\t5\tcop\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t0\troot\t_\t_\n6\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tfive\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tairlines\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\twhich\t_\tPRON\tWDT\t_\t13\tnmod\t_\t_\n12\tBudget\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n13\thas\t_\tVERB\tVBZ\t_\t9\tacl:relcl\t_\t_\n14\tagreements\t_\tNOUN\tNNS\t_\t13\tdobj\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tNational\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\talso\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n3\tparticipates\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tin\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tNorthwest\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tfrequent-flier\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tprogram\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n9\talong\t_\tADP\tIN\t_\t3\tadvmod\t_\t_\n10\twith\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tfour\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n12\tother\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tairlines\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tincluding\t_\tVERB\tVBG\t_\t16\tcase\t_\t_\n16\tDelta\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t16\tcc\t_\t_\n18\tUSAir\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n19\tGroup\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tInc.\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n21\t's\t_\tPART\tPOS\t_\t20\tcase\t_\t_\n22\tUSAir\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tunit\t_\tNOUN\tNN\t_\t16\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmonth\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n5\tHertz\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tPark\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tRidge\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n11\tN.J.\t_\tPROPN\tNNP\t_\t9\tappos\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t17\tnsubj\t_\t_\n16\twould\t_\tAUX\tMD\t_\t17\taux\t_\t_\n17\tdrop\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n18\tits\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n19\tmarketing\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tagreements\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tyear\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tend\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n24\twith\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tDelta\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\tAmerica\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tWest\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n30\tTexas\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n31\tAir\t_\tPROPN\tNNP\t_\t32\tcompound\t_\t_\n32\tCorp.\t_\tPROPN\tNNP\t_\t35\tnmod:poss\t_\t_\n33\t's\t_\tPART\tPOS\t_\t32\tcase\t_\t_\n34\tContinental\t_\tPROPN\tNNP\t_\t35\tcompound\t_\t_\n35\tAirlines\t_\tPROPN\tNNP\t_\t25\tconj\t_\t_\n36\tand\t_\tCONJ\tCC\t_\t35\tcc\t_\t_\n37\tEastern\t_\tPROPN\tNNP\t_\t38\tcompound\t_\t_\n38\tAirlines\t_\tPROPN\tNNP\t_\t35\tconj\t_\t_\n39\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n41\tthat\t_\tSCONJ\tIN\t_\t57\tmark\t_\t_\n42\tpacts\t_\tNOUN\tNNS\t_\t57\tnsubjpass\t_\t_\n43\twith\t_\tADP\tIN\t_\t45\tcase\t_\t_\n44\tAmerican\t_\tPROPN\tNNP\t_\t45\tcompound\t_\t_\n45\tAirlines\t_\tPROPN\tNNP\t_\t42\tnmod\t_\t_\n46\t,\t_\tPUNCT\t,\t_\t45\tpunct\t_\t_\n47\tUAL\t_\tPROPN\tNNP\t_\t48\tcompound\t_\t_\n48\tInc\t_\tPROPN\tNNP\t_\t51\tnmod:poss\t_\t_\n49\t's\t_\tPART\tPOS\t_\t48\tcase\t_\t_\n50\tUnited\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tAirlines\t_\tPROPN\tNNP\t_\t45\tconj\t_\t_\n52\tand\t_\tCONJ\tCC\t_\t45\tcc\t_\t_\n53\tUSAir\t_\tPROPN\tNNP\t_\t45\tconj\t_\t_\n54\talso\t_\tADV\tRB\t_\t57\tadvmod\t_\t_\n55\twould\t_\tAUX\tMD\t_\t57\taux\t_\t_\n56\tbe\t_\tAUX\tVB\t_\t57\tauxpass\t_\t_\n57\tended\t_\tVERB\tVBN\t_\t17\tconj\t_\t_\n58\t...\t_\tPUNCT\t:\t_\t57\tpunct\t_\t_\n59\tsometime\t_\tADV\tRB\t_\t57\tadvmod\t_\t_\n60\tafter\t_\tADP\tIN\t_\t61\tcase\t_\t_\n61\tDec.\t_\tPROPN\tNNP\t_\t59\tnmod\t_\t_\n62\t31\t_\tNUM\tCD\t_\t61\tnummod\t_\t_\n63\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\ttime\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n5\tHertz\t_\tPROPN\tNNP\t_\t6\tnsubj\t_\t_\n6\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n7\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n8\tannual\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfees\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthose\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tairlines\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tamounted\t_\tVERB\tVBD\t_\t6\tccomp\t_\t_\n14\tto\t_\tADP\tTO\t_\t15\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n16\t20\t_\tNUM\tCD\t_\t17\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tvalue\t_\tNOUN\tNN\t_\t25\tnsubj\t_\t_\n22\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tredeemed\t_\tVERB\tVBN\t_\t24\tamod\t_\t_\n24\tawards\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n25\ttopped\t_\tVERB\tVBD\t_\t13\tconj\t_\t_\n26\t$\t_\tSYM\t$\t_\t25\tdobj\t_\t_\n27\t15\t_\tNUM\tCD\t_\t28\tcompound\t_\t_\n28\tmillion\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n2\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n3\tcompetitors\t_\tNOUN\tNNS\t_\t1\tconj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tdoubt\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnumbers\t_\tNOUN\tNNS\t_\t12\tnsubj\t_\t_\n10\twere\t_\tVERB\tVBD\t_\t12\tcop\t_\t_\n11\tthat\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n12\thigh\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBudget\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tits\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n4\tfrequent-flier\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcosts\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n6\tare\t_\tVERB\tVBP\t_\t13\tcop\t_\t_\n7\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n8\tsubstantially\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n9\tbelow\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n11\tAvis\t_\tPROPN\tNNP\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tlevel\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tRobert\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tD.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCardillo\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tAvis\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tvice\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tpresident\t_\tNOUN\tNN\t_\t3\tappos\t_\t_\n8\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tmarketing\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t26\tpunct\t_\t_\n14\tThe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tproliferation\t_\tNOUN\tNN\t_\t26\tnsubj\t_\t_\n16\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tcosts\t_\tNOUN\tNNS\t_\t15\tconj\t_\t_\n18\tattached\t_\tVERB\tVBN\t_\t15\tacl\t_\t_\n19\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n20\t-LCB-\t_\tPUNCT\t-LRB-\t_\t22\tpunct\t_\t_\n21\tfrequent-flier\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprograms\t_\tNOUN\tNNS\t_\t18\tadvcl\t_\t_\n23\t-RCB-\t_\tPUNCT\t-RRB-\t_\t22\tpunct\t_\t_\n24\thave\t_\tAUX\tVBP\t_\t26\taux\t_\t_\n25\tsignificantly\t_\tADV\tRB\t_\t26\tadvmod\t_\t_\n26\tdiminished\t_\tVERB\tVBN\t_\t11\tccomp\t_\t_\n27\ttheir\t_\tPRON\tPRP$\t_\t28\tnmod:poss\t_\t_\n28\tvalue\t_\tNOUN\tNN\t_\t26\tdobj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n30\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tThis\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeen\t_\tVERB\tVBN\t_\t5\tcop\t_\t_\n5\tdifficult\t_\tADJ\tJJ\t_\t12\tccomp\t_\t_\n6\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tboth\t_\tDET\tDT\t_\t8\tcc:preconj\t_\t_\n8\tHertz\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tAvis\t_\tPROPN\tNNP\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\tCharles\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tFinnie\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tcar-rental\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tindustry\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tanalyst\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n19\tat\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tAlex\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n22\tBrown\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n23\t&\t_\tCONJ\tCC\t_\t22\tcc\t_\t_\n24\tSons\t_\tPROPN\tNNP\t_\t22\tconj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t25\tpunct\t_\t_\n2\tThey\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\tlooking\t_\tVERB\tVBG\t_\t25\tccomp\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tget\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\ttheir\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n9\tcosts\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tdown\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n13\tthis\t_\tPRON\tDT\t_\t18\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t18\tcop\t_\t_\n15\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tfairly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tsensible\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tway\t_\tNOUN\tNN\t_\t5\tconj\t_\t_\n19\tto\t_\tPART\tTO\t_\t20\tmark\t_\t_\n20\tdo\t_\tVERB\tVB\t_\t18\tacl\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t25\tpunct\t_\t_\n24\the\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tCBS\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tInc.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t4\taux\t_\t_\n4\tcutting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n6\tThe\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n7\tPat\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n8\tSajak\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tShow\t_\tPROPN\tNNP\t_\t4\tdobj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n11\tdown\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tcase\t_\t_\n13\tone\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\thour\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n15\tfrom\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n17\tcurrent\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\t90\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n19\tminutes\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tCBS\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tinsisted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmove\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n5\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n7\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tsetback\t_\tNOUN\tNN\t_\t2\tccomp\t_\t_\n9\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tprogram\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n13\twhich\t_\tPRON\tWDT\t_\t19\tnsubj\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t19\tcop\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tnetwork\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tfirst\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tentry\t_\tNOUN\tNN\t_\t11\tacl:relcl\t_\t_\n20\tinto\t_\tADP\tIN\t_\t25\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n22\tlate-night\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n23\ttalk\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n24\tshow\t_\tNOUN\tNN\t_\t25\tcompound\t_\t_\n25\tformat\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n26\tsince\t_\tADP\tIN\t_\t27\tcase\t_\t_\n27\t1972\t_\tNUM\tCD\t_\t19\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\thave\t_\tVERB\tVBP\t_\t27\tccomp\t_\t_\n4\tevery\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tintention\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n6\tof\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n7\tmaking\t_\tVERB\tVBG\t_\t5\tacl\t_\t_\n8\tthis\t_\tPRON\tDT\t_\t12\tnsubj\t_\t_\n9\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n10\tbest\t_\tADJ\tJJS\t_\t11\tdep\t_\t_\n11\tpossible\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tshow\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\thaving\t_\tVERB\tVBG\t_\t22\tcsubj\t_\t_\n15\tit\t_\tPRON\tPRP\t_\t16\tnsubj\t_\t_\n16\trun\t_\tVERB\tVB\t_\t14\tccomp\t_\t_\n17\tone\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\thour\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n19\tis\t_\tVERB\tVBZ\t_\t22\tcop\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tbest\t_\tADJ\tJJS\t_\t22\tamod\t_\t_\n22\tway\t_\tNOUN\tNN\t_\t3\tconj\t_\t_\n23\tto\t_\tADP\tTO\t_\t24\tcase\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t22\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n26\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n27\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n28\tRod\t_\tPROPN\tNNP\t_\t29\tcompound\t_\t_\n29\tPerth\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n30\t,\t_\tPUNCT\t,\t_\t29\tpunct\t_\t_\n31\twho\t_\tPRON\tWP\t_\t33\tnsubjpass\t_\t_\n32\twas\t_\tAUX\tVBD\t_\t33\tauxpass\t_\t_\n33\tnamed\t_\tVERB\tVBN\t_\t29\tacl:relcl\t_\t_\n34\tvice\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tpresident\t_\tNOUN\tNN\t_\t33\txcomp\t_\t_\n36\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n37\tlate\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tnight\t_\tNOUN\tNN\t_\t39\tcompound\t_\t_\n39\tentertainment\t_\tNOUN\tNN\t_\t35\tnmod\t_\t_\n40\tin\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\tAugust\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\traise\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tenergy\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tlevel\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tshow\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t4\tpunct\t_\t_\n\n1\tCBS\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tcontinue\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tprogram\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\taction-adventure\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tshows\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tfollow\t_\tVERB\tVB\t_\t7\tacl\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tSajak\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\thour\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n2\tCBS\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tNews\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\twill\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\textend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t9\tnmod:poss\t_\t_\n7\tfour-hour\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\t``\t_\tPUNCT\t``\t_\t9\tpunct\t_\t_\n9\tNightwatch\t_\tPROPN\tNNP\t_\t5\tdobj\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t9\tpunct\t_\t_\n11\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t30\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\tminutes\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n14\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n15\tbegin\t_\tVERB\tVB\t_\t5\tconj\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\t1:30\t_\tNUM\tCD\t_\t15\tnmod\t_\t_\n18\ta.m\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tshow\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n4\tdespite\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tpromising\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tstart\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\tslipped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\tbadly\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tweekly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tratings\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n16\tas\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\tcompiled\t_\tVERB\tVBN\t_\t15\tdep\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tA.C.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tNielsen\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCo.\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n23\tfinishing\t_\tVERB\tVBG\t_\t10\txcomp\t_\t_\n24\tfar\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n25\tbelow\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n27\tTonight\t_\tPROPN\tNNP\t_\t23\tnmod\t_\t_\n28\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n29\ton\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tNBC\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\ta\t_\tDET\tDT\t_\t33\tdet\t_\t_\n33\tunit\t_\tNOUN\tNN\t_\t30\tappos\t_\t_\n34\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n35\tGeneral\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n36\tElectric\t_\tPROPN\tNNP\t_\t37\tcompound\t_\t_\n37\tCo.\t_\tPROPN\tNNP\t_\t33\tnmod\t_\t_\n38\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n39\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n40\t``\t_\tPUNCT\t``\t_\t41\tpunct\t_\t_\n41\tNightline\t_\tPROPN\tNNP\t_\t27\tconj\t_\t_\n42\t''\t_\tPUNCT\t''\t_\t41\tpunct\t_\t_\n43\ton\t_\tADP\tIN\t_\t44\tcase\t_\t_\n44\tABC-TV\t_\tPROPN\tNNP\t_\t41\tnmod\t_\t_\n45\t,\t_\tPUNCT\t,\t_\t44\tpunct\t_\t_\n46\ta\t_\tDET\tDT\t_\t47\tdet\t_\t_\n47\tunit\t_\tNOUN\tNN\t_\t44\tappos\t_\t_\n48\tof\t_\tADP\tIN\t_\t51\tcase\t_\t_\n49\tCapital\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n50\tCities/ABC\t_\tPROPN\tNNP\t_\t51\tcompound\t_\t_\n51\tInc\t_\tPROPN\tNNP\t_\t47\tnmod\t_\t_\n52\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tFurther\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tfractioning\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tlate-night\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\taudience\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tis\t_\tVERB\tVBZ\t_\t2\taux\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\taddition\t_\tNOUN\tNN\t_\t2\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n11\t``\t_\tPUNCT\t``\t_\t14\tpunct\t_\t_\n12\tArsenio\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tHall\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tShow\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n17\tsyndicated\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n18\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tParamount\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tCommunications\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tInc\t_\tPROPN\tNNP\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tComputers\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n5\tpreparing\t_\tVERB\tVBG\t_\t21\tadvcl\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tfight\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\tInternational\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n10\tBusiness\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tMachines\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp.\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\ta\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tpiece\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tmainframe\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n21\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n22\tit\t_\tPRON\tPRP\t_\t23\tnsubj\t_\t_\n23\texpects\t_\tVERB\tVBZ\t_\t21\tccomp\t_\t_\n24\tto\t_\tPART\tTO\t_\t25\tmark\t_\t_\n25\tpost\t_\tVERB\tVB\t_\t23\txcomp\t_\t_\n26\thigher\t_\tADJ\tJJR\t_\t27\tamod\t_\t_\n27\trevenue\t_\tNOUN\tNN\t_\t25\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t27\tcc\t_\t_\n29\tearnings\t_\tNOUN\tNNS\t_\t27\tconj\t_\t_\n30\tfor\t_\tADP\tIN\t_\t34\tcase\t_\t_\n31\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n32\tfiscal\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n33\tfourth\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tquarter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n35\tended\t_\tVERB\tVBD\t_\t34\tacl\t_\t_\n36\tSept.\t_\tPROPN\tNNP\t_\t35\tnmod:tmod\t_\t_\n37\t30\t_\tNUM\tCD\t_\t36\tnummod\t_\t_\n38\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tit\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n4\texpects\t_\tVERB\tVBZ\t_\t2\tccomp\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\treport\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\trevenue\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tabout\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tnmod\t_\t_\n11\t450\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n14\tearnings\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n15\tof\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\t35\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n18\tto\t_\tADP\tTO\t_\t17\tdep\t_\t_\n19\t40\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\tcents\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tresults\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnsubj\t_\t_\n5\tare\t_\tVERB\tVBP\t_\t7\tcop\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tline\t_\tNOUN\tNN\t_\t2\tacl:relcl\t_\t_\n8\twith\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tanalysts\t_\tNOUN\tNNS\t_\t11\tnmod:poss\t_\t_\n10\t'\t_\tPART\tPOS\t_\t9\tcase\t_\t_\n11\testimates\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n13\treflect\t_\tVERB\tVBP\t_\t24\tccomp\t_\t_\n14\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n15\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tcontinued\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\timprovement\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n18\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tour\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tbusiness\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n23\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n24\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n25\tJames\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tTreybig\t_\tPROPN\tNNP\t_\t24\tnsubj\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tTandem\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n29\t's\t_\tPART\tPOS\t_\t28\tcase\t_\t_\n30\tchief\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n31\texecutive\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tofficer\t_\tNOUN\tNN\t_\t26\tappos\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tyear-earlier\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tperiod\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tTandem\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n7\treported\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tnet\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tincome\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t30.1\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t31\t_\tNUM\tCD\t_\t17\tnummod\t_\t_\n17\tcents\t_\tNOUN\tNNS\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\trevenue\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t383.9\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tmillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\texpects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\treport\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfull\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tresults\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tfor\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tnext\t_\tADP\tIN\t_\t12\tamod\t_\t_\n12\tweek\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\thave\t_\tAUX\tVBP\t_\t3\taux\t_\t_\n3\tpredicted\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tthat\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n5\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n6\tCupertino\t_\tPROPN\tNNP\t_\t10\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tCalif.\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n11\twill\t_\tAUX\tMD\t_\t12\taux\t_\t_\n12\treport\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n13\trevenue\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\t$\t_\tSYM\t$\t_\t19\tdep\t_\t_\n16\t430\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n17\tmillion\t_\tNUM\tCD\t_\t19\tcompound\t_\t_\n18\tto\t_\tADP\tTO\t_\t19\tdep\t_\t_\n19\t$\t_\tSYM\t$\t_\t13\tnmod\t_\t_\n20\t460\t_\tNUM\tCD\t_\t21\tcompound\t_\t_\n21\tmillion\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n22\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n23\tearnings\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n24\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\t35\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\tcents\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n27\tto\t_\tADP\tTO\t_\t26\tdep\t_\t_\n28\t40\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\tcents\t_\tNOUN\tNNS\t_\t26\tdep\t_\t_\n30\ta\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tshare\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tCommenting\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n2\ton\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tresults\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tquarter\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tMr.\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tTreybig\t_\tPROPN\tNNP\t_\t11\tnsubj\t_\t_\n11\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tstrength\t_\tNOUN\tNN\t_\t20\tnsubj\t_\t_\n14\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t19\tnmod:poss\t_\t_\n17\t's\t_\tPART\tPOS\t_\t16\tcase\t_\t_\n18\tdomestic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n20\tcame\t_\tVERB\tVBD\t_\t11\tccomp\t_\t_\n21\tas\t_\tADP\tIN\t_\t24\tcase\t_\t_\n22\t``\t_\tPUNCT\t``\t_\t24\tpunct\t_\t_\n23\ta\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tsurprise\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t24\tpunct\t_\t_\n26\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n27\thim\t_\tPRON\tPRP\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n29\tnoting\t_\tVERB\tVBG\t_\t11\txcomp\t_\t_\n30\tthat\t_\tSCONJ\tIN\t_\t39\tmark\t_\t_\n31\tsales\t_\tNOUN\tNNS\t_\t39\tnsubj\t_\t_\n32\t``\t_\tPUNCT\t``\t_\t31\tpunct\t_\t_\n33\tin\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tevery\t_\tDET\tDT\t_\t35\tdet\t_\t_\n35\tregion\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t38\tcase\t_\t_\n37\tthe\t_\tDET\tDT\t_\t38\tdet\t_\t_\n38\tU.S.\t_\tPROPN\tNNP\t_\t35\tnmod\t_\t_\n39\texceeded\t_\tVERB\tVBD\t_\t29\tccomp\t_\t_\n40\tour\t_\tPRON\tPRP$\t_\t41\tnmod:poss\t_\t_\n41\tplan\t_\tNOUN\tNN\t_\t39\tdobj\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n43\t''\t_\tPUNCT\t''\t_\t11\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tU.S.\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tperformance\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\twas\t_\tAUX\tVBD\t_\t7\tauxpass\t_\t_\n7\thelped\t_\tVERB\tVBN\t_\t19\tccomp\t_\t_\n8\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n9\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n10\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\trecord\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarter\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tnew\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcustomers\t_\tNOUN\tNNS\t_\t12\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n18\the\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tmakes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n4\tfault-tolerant\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n6\tcomputers\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n8\tmachines\t_\tNOUN\tNNS\t_\t6\tdep\t_\t_\n9\twith\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tbuilt-in\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n11\tbackup\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tsystems\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n13\t--\t_\tPUNCT\t:\t_\t8\tpunct\t_\t_\n14\tthat\t_\tPRON\tWDT\t_\t15\tnsubj\t_\t_\n15\trun\t_\tVERB\tVBP\t_\t6\tacl:relcl\t_\t_\n16\tstock\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\texchanges\t_\tNOUN\tNNS\t_\t15\tdobj\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t17\tpunct\t_\t_\n19\tnetworks\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tautomatic\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\ttellers\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n24\tother\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n25\tcomplex\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tcomputer\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsystems\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tTomorrow\t_\tNOUN\tNN\t_\t5\tnmod:tmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tcompany\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tscheduled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tannounce\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tits\t_\tPRON\tPRP$\t_\t11\tnmod:poss\t_\t_\n9\tmost\t_\tADJ\tJJS\t_\t10\tdep\t_\t_\n10\tpowerful\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tcomputer\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\tever\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n14\twhich\t_\tPRON\tWDT\t_\t20\tnsubj\t_\t_\n15\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfirst\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttime\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n19\twill\t_\tAUX\tMD\t_\t20\taux\t_\t_\n20\tbring\t_\tVERB\tVB\t_\t11\tacl:relcl\t_\t_\n21\tit\t_\tPRON\tPRP\t_\t20\tdobj\t_\t_\n22\tinto\t_\tADP\tIN\t_\t24\tcase\t_\t_\n23\tdirect\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\tcompetition\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n25\twith\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tmakers\t_\tNOUN\tNNS\t_\t24\tnmod\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\tmainframe\t_\tADJ\tJJ\t_\t29\tamod\t_\t_\n29\tcomputers\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tTandem\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n2\t's\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n4\thigh-end\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t7\tnsubjpass\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\tcalled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tCyclone\t_\tPROPN\tNNP\t_\t7\txcomp\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tPrices\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n2\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tmachine\t_\tNOUN\tNN\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n7\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tcome\t_\tVERB\tVB\t_\t4\tacl:relcl\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tvarious\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tconfigurations\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n13\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n14\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n15\t2\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n16\tmillion\t_\tNUM\tCD\t_\t18\tcompound\t_\t_\n17\tto\t_\tADP\tTO\t_\t18\tdep\t_\t_\n18\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n19\t10\t_\tNUM\tCD\t_\t20\tcompound\t_\t_\n20\tmillion\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\texpect\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tnew\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tcomputer\t_\tNOUN\tNN\t_\t2\tdobj\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\twrest\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n8\ta\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\thefty\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\tslice\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tbusiness\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\taway\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n14\tfrom\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tIBM\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tlongtime\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tleader\t_\tNOUN\tNN\t_\t15\tappos\t_\t_\n20\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tmainframes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t22\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\tbelieve\t_\tVERB\tVBP\t_\t22\tccomp\t_\t_\n4\tthey\t_\tPRON\tPRP\t_\t6\tnsubj\t_\t_\n5\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n6\tsiphon\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n7\tperhaps\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n9\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n10\tthree\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tbillion\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\tdollars\t_\tNOUN\tNNS\t_\t6\tdobj\t_\t_\n13\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tIBM\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n16\tover\t_\tADP\tIN\t_\t20\tcase\t_\t_\n17\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n18\tnext\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n19\tfew\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tyears\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n22\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n23\tGeorge\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tWeiss\t_\tPROPN\tNNP\t_\t22\tdep\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tan\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tanalyst\t_\tNOUN\tNN\t_\t24\tappos\t_\t_\n28\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tGartner\t_\tADJ\tJJR\t_\t31\tamod\t_\t_\n31\tgroup\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\twill\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tspur\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tTandem\t_\tPROPN\tNNP\t_\t6\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tgrowth\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t19\tpunct\t_\t_\n2\tI\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n3\t'd\t_\tAUX\tMD\t_\t5\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t5\tcop\t_\t_\n5\tdisappointed\t_\tADJ\tJJ\t_\t19\tccomp\t_\t_\n6\tif\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tgrew\t_\tVERB\tVBD\t_\t5\tadvcl\t_\t_\n10\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\tless\t_\tADJ\tJJR\t_\t13\tadvmod\t_\t_\n12\tthan\t_\tADP\tIN\t_\t11\tmwe\t_\t_\n13\t20\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n15\tnext\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tyear\t_\tNOUN\tNN\t_\t9\tnmod:tmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n18\t''\t_\tPUNCT\t''\t_\t19\tpunct\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n20\tJohn\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tLevinson\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n23\tan\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tanalyst\t_\tNOUN\tNN\t_\t21\tappos\t_\t_\n25\tat\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tGoldman\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tSachs\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n29\t&\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n30\tCo\t_\tPROPN\tNNP\t_\t26\tconj\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t19\tpunct\t_\t_\n\n1\tIBM\t_\tPROPN\tNNP\t_\t3\tnsubjpass\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\tauxpass\t_\t_\n3\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\trespond\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\tto\t_\tADP\tTO\t_\t7\tcase\t_\t_\n7\tTandem\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tCyclone\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n10\tby\t_\tSCONJ\tIN\t_\t11\tmark\t_\t_\n11\tdiscounting\t_\tVERB\tVBG\t_\t5\tadvcl\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n13\town\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tmainframes\t_\tNOUN\tNNS\t_\t11\tdobj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\twhich\t_\tPRON\tWDT\t_\t18\tdobj\t_\t_\n17\tanalysts\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n18\tsay\t_\tVERB\tVBP\t_\t3\tdep\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t24\tcop\t_\t_\n20\troughly\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n21\tthree\t_\tNUM\tCD\t_\t22\tcompound\t_\t_\n22\ttimes\t_\tNOUN\tNNS\t_\t24\tnummod\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tprice\t_\tNOUN\tNN\t_\t18\tccomp\t_\t_\n25\tof\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\ta\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tcomparable\t_\tADJ\tJJ\t_\t28\tamod\t_\t_\n28\tsystem\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\tfrom\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\tTandem\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t13\tpunct\t_\t_\n2\tObviously\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n3\tIBM\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tcan\t_\tAUX\tMD\t_\t5\taux\t_\t_\n5\tgive\t_\tVERB\tVB\t_\t13\tccomp\t_\t_\n6\tbigger\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tdiscounts\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n8\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n9\tusers\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n10\timmediately\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t13\tpunct\t_\t_\n13\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n14\tMr.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tWeiss\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTreybig\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tquestions\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n5\twhether\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tthat\t_\tPRON\tDT\t_\t9\tnsubj\t_\t_\n7\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n8\tbe\t_\tVERB\tVB\t_\t9\tcop\t_\t_\n9\tenough\t_\tADJ\tJJ\t_\t4\tccomp\t_\t_\n10\tto\t_\tPART\tTO\t_\t11\tmark\t_\t_\n11\tstop\t_\tVERB\tVB\t_\t9\txcomp\t_\t_\n12\tTandem\t_\tPROPN\tNNP\t_\t15\tnmod:poss\t_\t_\n13\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n14\tfirst\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmainframe\t_\tNOUN\tNN\t_\t11\tdobj\t_\t_\n16\tfrom\t_\tSCONJ\tIN\t_\t17\tmark\t_\t_\n17\ttaking\t_\tVERB\tVBG\t_\t11\tadvcl\t_\t_\n18\ton\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\tsome\t_\tDET\tDT\t_\t17\tdobj\t_\t_\n20\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tfunctions\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n23\tthat\t_\tPRON\tWDT\t_\t27\tdobj\t_\t_\n24\tlarge\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n25\torganizations\t_\tNOUN\tNNS\t_\t27\tnsubj\t_\t_\n26\tpreviously\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\tsought\t_\tVERB\tVBD\t_\t22\tacl:relcl\t_\t_\n28\tfrom\t_\tADP\tIN\t_\t32\tcase\t_\t_\n29\tBig\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tBlue\t_\tPROPN\tNNP\t_\t32\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\tmachines\t_\tNOUN\tNNS\t_\t27\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t15\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tanswer\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t7\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t7\tneg\t_\t_\n6\tprice\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\treductions\t_\tNOUN\tNNS\t_\t15\tccomp\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tbut\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\tnew\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tsystems\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n13\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tNevertheless\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n3\tTandem\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tfaces\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tvariety\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n8\tchallenges\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tbiggest\t_\tADJ\tJJS\t_\t12\tnsubj\t_\t_\n12\tbeing\t_\tNOUN\tNN\t_\t8\tdep\t_\t_\n13\tthat\t_\tSCONJ\tIN\t_\t16\tmark\t_\t_\n14\tcustomers\t_\tNOUN\tNNS\t_\t16\tnsubj\t_\t_\n15\tgenerally\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tview\t_\tVERB\tVBP\t_\t12\tccomp\t_\t_\n17\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tcompany\t_\tNOUN\tNN\t_\t20\tnmod:poss\t_\t_\n19\t's\t_\tPART\tPOS\t_\t18\tcase\t_\t_\n20\tcomputers\t_\tNOUN\tNNS\t_\t16\tdobj\t_\t_\n21\tas\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tcomplementary\t_\tADJ\tJJ\t_\t16\tadvcl\t_\t_\n23\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n24\tIBM\t_\tPROPN\tNNP\t_\t26\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\tmainframes\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tMr.\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tTreybig\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t5\tcop\t_\t_\n5\treluctant\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\tabandon\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthis\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tnotion\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n11\tinsisting\t_\tVERB\tVBG\t_\t5\txcomp\t_\t_\n12\tthat\t_\tSCONJ\tIN\t_\t19\tmark\t_\t_\n13\tTandem\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n14\t's\t_\tPART\tPOS\t_\t13\tcase\t_\t_\n15\tnew\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tmachines\t_\tNOUN\tNNS\t_\t19\tnsubj\t_\t_\n17\tare\t_\tVERB\tVBP\t_\t19\tcop\t_\t_\n18\tn't\t_\tPART\tRB\t_\t19\tneg\t_\t_\n19\treplacements\t_\tNOUN\tNNS\t_\t11\tccomp\t_\t_\n20\tfor\t_\tADP\tIN\t_\t23\tcase\t_\t_\n21\tIBM\t_\tPROPN\tNNP\t_\t23\tnmod:poss\t_\t_\n22\t's\t_\tPART\tPOS\t_\t21\tcase\t_\t_\n23\tmainframes\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t12\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n3\t're\t_\tVERB\tVBP\t_\t8\tcop\t_\t_\n4\tafter\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tlittle\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tbigger\t_\tADJ\tJJR\t_\t6\tdep\t_\t_\n8\tniche\t_\tNOUN\tNN\t_\t12\tccomp\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t12\tpunct\t_\t_\n11\the\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tDo\t_\tAUX\tVB\t_\t3\taux\t_\t_\n2\tn't\t_\tPART\tRB\t_\t3\tneg\t_\t_\n3\tjump\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tyet\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tstock\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tswoon\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\tmay\t_\tAUX\tMD\t_\t7\taux\t_\t_\n7\tturn\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\tout\t_\tADP\tRP\t_\t7\tcompound:prt\t_\t_\n9\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t12\tcop\t_\t_\n11\tgood\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tnews\t_\tNOUN\tNN\t_\t7\txcomp\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\teconomy\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tone\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n3\twild\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\thour\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\ttrading\t_\tVERB\tVBG\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tmarket\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tmanaged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\taccomplish\t_\tVERB\tVB\t_\t10\txcomp\t_\t_\n13\twhat\t_\tPRON\tWP\t_\t21\tdobj\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tBush\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n16\tadministration\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n17\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n18\tbeen\t_\tAUX\tVBN\t_\t19\taux\t_\t_\n19\ttrying\t_\tVERB\tVBG\t_\t12\tccomp\t_\t_\n20\tto\t_\tPART\tTO\t_\t21\tmark\t_\t_\n21\tdo\t_\tVERB\tVB\t_\t19\txcomp\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n23\tunsuccessfully\t_\tADV\tRB\t_\t19\tadvmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t19\tpunct\t_\t_\n25\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tweeks\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tIt\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n2\tis\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tforcing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tFederal\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tReserve\t_\tPROPN\tNNP\t_\t3\tdobj\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tease\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\tgrip\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n11\ton\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tcredit\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n14\tit\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\ttook\t_\tVERB\tVBD\t_\t3\tconj\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\twind\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n18\tout\t_\tADP\tIN\t_\t15\tadvmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n20\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n21\tpreviously\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tirrepressible\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tdollar\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tresulting\t_\tVERB\tVBG\t_\t3\tamod\t_\t_\n3\tdecline\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tinterest\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\trates\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tvalue\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdollar\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tcould\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\treinvigorate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tAmerican\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tbusiness\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t--\t_\tPUNCT\t:\t_\t16\tpunct\t_\t_\n18\tindeed\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tentire\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t16\tappos\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThis\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\tmay\t_\tAUX\tMD\t_\t3\taux\t_\t_\n3\tsound\t_\tVERB\tVB\t_\t0\troot\t_\t_\n4\tstrangely\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\toptimistic\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tAfter\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tall\t_\tDET\tDT\t_\t14\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n4\tuntil\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\tfew\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t8\tnmod:npmod\t_\t_\n8\tago\t_\tADV\tRB\t_\t14\tadvcl\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tstock\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tmarket\t_\tNOUN\tNN\t_\t14\tnsubjpass\t_\t_\n13\twas\t_\tAUX\tVBD\t_\t14\tauxpass\t_\t_\n14\tviewed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n15\tas\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tbarometer\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n18\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tnational\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\teconomy\t_\tNOUN\tNN\t_\t17\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWhen\t_\tADV\tWRB\t_\t3\tadvmod\t_\t_\n2\tit\t_\tPRON\tPRP\t_\t3\tnsubj\t_\t_\n3\twent\t_\tVERB\tVBD\t_\t12\tadvcl\t_\t_\n4\tdown\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n6\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\ttradition\t_\tNOUN\tNN\t_\t12\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n12\tfollowed\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t12\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t3\tnsubj\t_\t_\n2\thas\t_\tAUX\tVBZ\t_\t3\taux\t_\t_\n3\tchanged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\tpartly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n6\tbecause\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\ttwo\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tyears\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n10\tfollowing\t_\tVERB\tVBG\t_\t14\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tworst\t_\tADJ\tJJS\t_\t14\tamod\t_\t_\n13\tstock-market\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\tplunge\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\thistory\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n19\treasonably\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tcomfortable\t_\tADJ\tJJ\t_\t3\tadvcl\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t1987\t_\tNUM\tCD\t_\t3\tnummod\t_\t_\n3\tcrash\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\twas\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n6\ta\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tfalse\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\talarm\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n9\thowever\t_\tADV\tWRB\t_\t11\tadvmod\t_\t_\n10\tyou\t_\tPRON\tPRP\t_\t11\tnsubj\t_\t_\n11\tview\t_\tVERB\tVBP\t_\t8\tadvcl\t_\t_\n12\tit\t_\tPRON\tPRP\t_\t11\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t15\tpunct\t_\t_\n15\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\tUniversity\t_\tPROPN\tNNP\t_\t21\tdep\t_\t_\n17\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n18\tChicago\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n19\teconomist\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tVictor\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tZarnowitz\t_\tPROPN\tNNP\t_\t15\tnsubj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n3\tseems\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tincreasingly\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tdisconnected\t_\tADJ\tJJ\t_\t3\txcomp\t_\t_\n6\tfrom\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\trest\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tnation\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIts\t_\tPRON\tPRP$\t_\t2\tnmod:poss\t_\t_\n2\tspasms\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n3\tca\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\ttraced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n8\tfundamental\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t10\tcompound\t_\t_\n10\tconditions\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n12\tnor\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n13\tdo\t_\tAUX\tVB\t_\t15\taux\t_\t_\n14\tthey\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\tappear\t_\tVERB\tVBP\t_\t6\tconj\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tpresage\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tmajor\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tshifts\t_\tNOUN\tNNS\t_\t17\tdobj\t_\t_\n20\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\teconomy\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tmarket\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\ttoday\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\thas\t_\tVERB\tVBZ\t_\t23\tccomp\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tlife\t_\tNOUN\tNN\t_\t5\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tits\t_\tPRON\tPRP$\t_\t10\tnmod:poss\t_\t_\n10\town\t_\tADJ\tJJ\t_\t7\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n13\tJohn\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tAkers\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tchairman\t_\tNOUN\tNN\t_\t14\tappos\t_\t_\n17\tof\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\tInternational\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n19\tBusiness\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n20\tMachines\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tCorp.\t_\tPROPN\tNNP\t_\t16\tnmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n23\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n24\tSaturday\t_\tPROPN\tNNP\t_\t23\tnmod:tmod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t3\tpunct\t_\t_\n2\tThere\t_\tPRON\tEX\t_\t3\texpl\t_\t_\n3\t's\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n4\tnothing\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n5\trational\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n6\tabout\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthis\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tkind\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\taction\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n12\t''\t_\tPUNCT\t''\t_\t3\tpunct\t_\t_\n\n1\tOf\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tcourse\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\thealth\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n6\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\teconomy\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\twill\t_\tAUX\tMD\t_\t11\taux\t_\t_\n10\tbe\t_\tAUX\tVB\t_\t11\tauxpass\t_\t_\n11\tthreatened\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tif\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tmarket\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n15\tcontinues\t_\tVERB\tVBZ\t_\t11\tadvcl\t_\t_\n16\tto\t_\tPART\tTO\t_\t17\tmark\t_\t_\n17\tdive\t_\tVERB\tVB\t_\t15\txcomp\t_\t_\n18\tthis\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tweek\t_\tNOUN\tNN\t_\t15\tnmod:tmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tSharply\t_\tADV\tRB\t_\t2\tadvmod\t_\t_\n2\tfalling\t_\tVERB\tVBG\t_\t4\tamod\t_\t_\n3\tstock\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n5\tdo\t_\tAUX\tVBP\t_\t6\taux\t_\t_\n6\treduce\t_\tVERB\tVB\t_\t0\troot\t_\t_\n7\tconsumer\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\twealth\t_\tNOUN\tNN\t_\t6\tdobj\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n10\tdamage\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n11\tbusiness\t_\tNOUN\tNN\t_\t12\tcompound\t_\t_\n12\tconfidence\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n14\tdiscourage\t_\tVERB\tVB\t_\t6\tconj\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tforeign\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tinvestors\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n18\tupon\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\twhom\t_\tPRON\tWP\t_\t23\tnmod\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n22\tnow\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n23\trelies\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n24\tfor\t_\tADP\tIN\t_\t26\tcase\t_\t_\n25\tfinancial\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tsustenance\t_\tNOUN\tNN\t_\t23\tnmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tfinancial-services\t_\tNOUN\tNNS\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\twas\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tbattered\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\t1987\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcrash\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t23\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n5\talthough\t_\tSCONJ\tIN\t_\t12\tmark\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tstock\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tmarket\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n9\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n10\tfar\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tless\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n12\tovervalued\t_\tADJ\tJJ\t_\t23\tadvcl\t_\t_\n13\ttoday\t_\tNOUN\tNN\t_\t12\tnmod:tmod\t_\t_\n14\tthan\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t17\tnmod:npmod\t_\t_\n17\tago\t_\tADV\tRB\t_\t12\tadvcl\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tU.S.\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\teconomy\t_\tNOUN\tNN\t_\t23\tnsubj\t_\t_\n22\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n23\tweaker\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tGrowth\t_\tNOUN\tNN\t_\t3\tnsubj\t_\t_\n2\tis\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tslower\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tProfits\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t3\tcop\t_\t_\n3\tsofter\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n4\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tDebt\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tburdens\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n4\theavier\t_\tADJ\tJJR\t_\t0\troot\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t25\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n3\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tmarket\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t8\tneg\t_\t_\n8\tcontinue\t_\tVERB\tVB\t_\t25\tadvcl\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tplummet\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tbeneficial\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\teffects\t_\tNOUN\tNNS\t_\t25\tnsubj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tlower\t_\tADJ\tJJR\t_\t18\tamod\t_\t_\n17\tinterest\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\trates\t_\tNOUN\tNNS\t_\t14\tnmod\t_\t_\n19\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n20\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tlower\t_\tADJ\tJJR\t_\t22\tamod\t_\t_\n22\tdollar\t_\tNOUN\tNN\t_\t18\tconj\t_\t_\n23\tmay\t_\tAUX\tMD\t_\t25\taux\t_\t_\n24\twell\t_\tADV\tRB\t_\t25\tadvmod\t_\t_\n25\tdominate\t_\tVERB\tVB\t_\t0\troot\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t25\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFed\t_\tPROPN\tNNP\t_\t17\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t9\tnsubj\t_\t_\n5\tuntil\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod\t_\t_\n7\thad\t_\tAUX\tVBD\t_\t9\taux\t_\t_\n8\tbeen\t_\tAUX\tVBN\t_\t9\taux\t_\t_\n9\tresisting\t_\tVERB\tVBG\t_\t2\tacl:relcl\t_\t_\n10\tmoves\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n11\tto\t_\tPART\tTO\t_\t12\tmark\t_\t_\n12\tease\t_\tVERB\tVB\t_\t10\tacl\t_\t_\n13\tcredit\t_\tNOUN\tNN\t_\t12\tdobj\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n15\tis\t_\tAUX\tVBZ\t_\t17\tauxpass\t_\t_\n16\tnow\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tpoised\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tto\t_\tPART\tTO\t_\t19\tmark\t_\t_\n19\tpour\t_\tVERB\tVB\t_\t17\txcomp\t_\t_\n20\tmoney\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n21\tinto\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tthe\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\teconomy\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\tif\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\tneeded\t_\tVERB\tVBN\t_\t19\tadvcl\t_\t_\n26\tto\t_\tPART\tTO\t_\t27\tmark\t_\t_\n27\tsoothe\t_\tVERB\tVB\t_\t25\txcomp\t_\t_\n28\tthe\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tmarkets\t_\tNOUN\tNNS\t_\t27\tdobj\t_\t_\n30\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tFed\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n3\tmay\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tprotest\t_\tVERB\tVB\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n6\tthis\t_\tPRON\tDT\t_\t10\tnsubj\t_\t_\n7\tdoes\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n8\tn't\t_\tPART\tRB\t_\t10\tneg\t_\t_\n9\tnecessarily\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tmean\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfundamental\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tchange\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\ttheir\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n16\tinterest-rate\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tpolicies\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\texperience\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcrash\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tsuggests\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tFed\t_\tPROPN\tNNP\t_\t12\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n12\tlikely\t_\tADJ\tJJ\t_\t8\tccomp\t_\t_\n13\tto\t_\tPART\tTO\t_\t14\tmark\t_\t_\n14\tbring\t_\tVERB\tVB\t_\t12\txcomp\t_\t_\n15\tdown\t_\tADP\tRP\t_\t14\tadvmod\t_\t_\n16\tshort-term\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n17\tinterest\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\trates\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tits\t_\tPRON\tPRP$\t_\t21\tnmod:poss\t_\t_\n21\teffort\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tcalm\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\tmarkets\t_\tNOUN\tNNS\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnticipating\t_\tVERB\tVBG\t_\t9\tadvcl\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tFed\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tmove\t_\tNOUN\tNN\t_\t1\tdobj\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tmoney\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\ttraders\t_\tNOUN\tNNS\t_\t9\tnsubj\t_\t_\n9\tlowered\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n11\tkey\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n12\tinterest\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\trate\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n14\tknown\t_\tVERB\tVBN\t_\t13\tacl\t_\t_\n15\tas\t_\tADP\tIN\t_\t19\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n17\tFederal\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tFunds\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n19\trate\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n20\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n21\t8.625\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n22\t%\t_\tSYM\tNN\t_\t9\tnmod\t_\t_\n23\tlate\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n24\tFriday\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n26\tdown\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n27\tfrom\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t8.820\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tday\t_\tNOUN\tNN\t_\t29\tnmod:tmod\t_\t_\n32\tbefore\t_\tADV\tRB\t_\t31\tadvmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tTiny\t_\tADJ\tJJ\t_\t2\tamod\t_\t_\n2\tmovements\t_\tNOUN\tNNS\t_\t24\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\trate\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\twhich\t_\tPRON\tWDT\t_\t8\tnsubj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t5\tacl:relcl\t_\t_\n9\twhat\t_\tPRON\tWP\t_\t11\tdobj\t_\t_\n10\tbanks\t_\tNOUN\tNNS\t_\t11\tnsubj\t_\t_\n11\tcharge\t_\tVERB\tVBP\t_\t8\tccomp\t_\t_\n12\teach\t_\tDET\tDT\t_\t11\tdobj\t_\t_\n13\tother\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n14\tfor\t_\tADP\tIN\t_\t16\tcase\t_\t_\n15\tovernight\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tloans\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n18\tare\t_\tVERB\tVBP\t_\t24\tcop\t_\t_\n19\tusually\t_\tADV\tRB\t_\t24\tadvmod\t_\t_\n20\tamong\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n22\tfew\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tvisible\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n24\ttracks\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n25\tthat\t_\tPRON\tWDT\t_\t28\tdobj\t_\t_\n26\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n27\tFed\t_\tPROPN\tNNP\t_\t28\tnsubj\t_\t_\n28\tleaves\t_\tVERB\tVBZ\t_\t24\tacl:relcl\t_\t_\n29\ton\t_\tADP\tIN\t_\t32\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tmonetary\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tmarkets\t_\tNOUN\tNNS\t_\t28\tnmod\t_\t_\n33\t.\t_\tPUNCT\t.\t_\t24\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdollar\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\talso\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tbegan\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tdecline\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\tFriday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n8\tas\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tstock\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tmarket\t_\tNOUN\tNN\t_\t13\tnmod:poss\t_\t_\n12\t's\t_\tPART\tPOS\t_\t11\tcase\t_\t_\n13\tplunge\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n14\tcaused\t_\tVERB\tVBD\t_\t4\tadvcl\t_\t_\n15\tsome\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tinvestors\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\treassess\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n19\ttheir\t_\tPRON\tPRP$\t_\t20\tnmod:poss\t_\t_\n20\tdesire\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tinvest\t_\tVERB\tVB\t_\t20\tacl\t_\t_\n23\tin\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tU.S.\t_\tPROPN\tNNP\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tTreasury\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tofficials\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\thave\t_\tAUX\tVBP\t_\t5\taux\t_\t_\n4\tbeen\t_\tAUX\tVBN\t_\t5\taux\t_\t_\n5\targuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tdollar\t_\tNOUN\tNN\t_\t12\tnmod:poss\t_\t_\n11\t's\t_\tPART\tPOS\t_\t10\tcase\t_\t_\n12\tstrength\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n14\tout\t_\tADP\tIN\t_\t13\tadvmod\t_\t_\n15\tof\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\twhack\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\teconomic\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tfundamentals\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n21\tthreatening\t_\tVERB\tVBG\t_\t13\txcomp\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\textinguish\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\texport\t_\tNOUN\tNN\t_\t26\tcompound\t_\t_\n26\tboom\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n27\tthat\t_\tPRON\tWDT\t_\t29\tnsubj\t_\t_\n28\thas\t_\tAUX\tVBZ\t_\t29\taux\t_\t_\n29\tsustained\t_\tVERB\tVBN\t_\t26\tacl:relcl\t_\t_\n30\tmanufacturers\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n31\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n32\tseveral\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tyears\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmarket\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tdrop\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n4\thas\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n5\tnow\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\tapparently\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tconvinced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tforeign\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tinvestors\t_\tNOUN\tNNS\t_\t7\tdobj\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tTreasury\t_\tPROPN\tNNP\t_\t14\tnsubj\t_\t_\n13\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n14\tright\t_\tADJ\tJJ\t_\t7\tccomp\t_\t_\n15\tabout\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\toverpriced\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tdollar\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tmodest\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdrop\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tdollar\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n8\tonly\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n9\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tmodest\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tone\t_\tNUM\tCD\t_\t13\tdep\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n13\tmind\t_\tVERB\tVB\t_\t3\tdep\t_\t_\n14\tyou\t_\tPRON\tPRP\t_\t13\tdobj\t_\t_\n15\t--\t_\tPUNCT\t:\t_\t13\tpunct\t_\t_\n16\twould\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\tauxpass\t_\t_\n18\twelcomed\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThat\t_\tPRON\tDT\t_\t5\tnsubj\t_\t_\n2\twas\t_\tVERB\tVBD\t_\t5\tcop\t_\t_\n3\tn't\t_\tPART\tRB\t_\t5\tneg\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tcase\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n6\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t1987\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhen\t_\tADV\tWRB\t_\t14\tadvmod\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tdollar\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n13\tso\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n14\tweak\t_\tADJ\tJJ\t_\t7\tacl:relcl\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n16\tsome\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\teconomists\t_\tNOUN\tNNS\t_\t22\tnsubj\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tgovernment\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tofficials\t_\tNOUN\tNNS\t_\t17\tconj\t_\t_\n21\tseriously\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n22\tworried\t_\tVERB\tVBD\t_\t14\tccomp\t_\t_\n23\tthat\t_\tSCONJ\tIN\t_\t26\tmark\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t26\tnsubj\t_\t_\n25\tmight\t_\tAUX\tMD\t_\t26\taux\t_\t_\n26\tcollapse\t_\tVERB\tVB\t_\t22\tccomp\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tproducing\t_\tVERB\tVBG\t_\t26\tccomp\t_\t_\n29\tpanic\t_\tNOUN\tNN\t_\t28\tdobj\t_\t_\n30\tamong\t_\tADP\tIN\t_\t32\tcase\t_\t_\n31\tforeign\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tinvestors\t_\tNOUN\tNNS\t_\t29\tnmod\t_\t_\n33\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n34\tdiminishing\t_\tVERB\tVBG\t_\t28\tconj\t_\t_\n35\tthe\t_\tDET\tDT\t_\t36\tdet\t_\t_\n36\tflow\t_\tNOUN\tNN\t_\t34\tdobj\t_\t_\n37\tof\t_\tADP\tIN\t_\t39\tcase\t_\t_\n38\tforeign\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tcapital\t_\tNOUN\tNN\t_\t36\tnmod\t_\t_\n40\tto\t_\tADP\tTO\t_\t42\tcase\t_\t_\n41\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n42\tU.S.\t_\tPROPN\tNNP\t_\t36\tnmod\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdifference\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n4\tbetween\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\t1987\t_\tNUM\tCD\t_\t3\tnmod\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\t1989\t_\tNUM\tCD\t_\t5\tconj\t_\t_\n8\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n9\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n10\tso\t_\tADV\tRB\t_\t11\tadvmod\t_\t_\n11\tcomforting\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tthird\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\teconomy\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n10\tspurted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tat\t_\tADP\tIN\t_\t15\tcase\t_\t_\n12\tan\t_\tDET\tDT\t_\t15\tdet\t_\t_\n13\tinflation-adjusted\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n14\tannual\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\trate\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n16\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t5.3\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n18\t%\t_\tSYM\tNN\t_\t15\tnmod\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tconsensus\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n3\tamong\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\teconomists\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n6\tthat\t_\tSCONJ\tIN\t_\t8\tmark\t_\t_\n7\tit\t_\tPRON\tPRP\t_\t8\tnsubj\t_\t_\n8\tgrew\t_\tVERB\tVBD\t_\t5\tccomp\t_\t_\n9\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n10\tmuch\t_\tADV\tRB\t_\t12\tadvmod\t_\t_\n11\tmore\t_\tADV\tRBR\t_\t12\tadvmod\t_\t_\n12\tsluggish\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n13\t2.3\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\t%\t_\tSYM\tNN\t_\t8\tdobj\t_\t_\n15\tin\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tthird\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n19\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\t1989\t_\tNUM\tCD\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t23\tnsubj\t_\t_\n23\tended\t_\tVERB\tVBD\t_\t18\tacl:relcl\t_\t_\n24\ttwo\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tweeks\t_\tNOUN\tNNS\t_\t26\tnmod:npmod\t_\t_\n26\tago\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tplunge\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tstock\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tprices\t_\tNOUN\tNNS\t_\t2\tnmod\t_\t_\n6\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\taux\t_\t_\n8\thappening\t_\tVERB\tVBG\t_\t21\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\ttime\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n12\twhen\t_\tADV\tWRB\t_\t17\tadvmod\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\teconomy\t_\tNOUN\tNN\t_\t17\tnsubj\t_\t_\n15\thas\t_\tAUX\tVBZ\t_\t17\taux\t_\t_\n16\talready\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tslowed\t_\tVERB\tVBN\t_\t11\tacl:relcl\t_\t_\n18\tdown\t_\tADP\tRP\t_\t17\tcompound:prt\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t21\tpunct\t_\t_\n20\t''\t_\tPUNCT\t''\t_\t21\tpunct\t_\t_\n21\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n22\teconomist\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n23\tLawrence\t_\tPROPN\tNNP\t_\t24\tcompound\t_\t_\n24\tChimerine\t_\tPROPN\tNNP\t_\t21\tnsubj\t_\t_\n25\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\tWEFA\t_\tPROPN\tNNP\t_\t27\tcompound\t_\t_\n27\tGroup\t_\tPROPN\tNNP\t_\t24\tnmod\t_\t_\n28\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n29\ta\t_\tDET\tDT\t_\t36\tdet\t_\t_\n30\tBala\t_\tPROPN\tNNP\t_\t36\tdep\t_\t_\n31\tCynwyd\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n32\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n33\tPa.\t_\tPROPN\tNNP\t_\t30\tdep\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n35\tforecasting\t_\tNOUN\tNN\t_\t36\tcompound\t_\t_\n36\tcompany\t_\tNOUN\tNN\t_\t27\tappos\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t21\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t8\tpunct\t_\t_\n2\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tlot\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tpent-up\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tdemand\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tgone\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n10\t''\t_\tPUNCT\t''\t_\t8\tpunct\t_\t_\n\n1\tConsumer\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tspending\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n3\tdid\t_\tAUX\tVBD\t_\t4\taux\t_\t_\n4\tdrop\t_\tVERB\tVB\t_\t26\tccomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tmonths\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n8\tfollowing\t_\tVERB\tVBG\t_\t10\tcase\t_\t_\n9\tBlack\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tMonday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n11\t1987\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t--\t_\tPUNCT\t:\t_\t17\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t17\tpunct\t_\t_\n14\tbut\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n15\tonly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tslightly\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t4\tdep\t_\t_\n18\tfor\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tshort\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tperiod\t_\tNOUN\tNN\t_\t17\tconj\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\ttime\t_\tNOUN\tNN\t_\t21\tnmod\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n25\t''\t_\tPUNCT\t''\t_\t26\tpunct\t_\t_\n26\trecalls\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n27\tMr.\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tZarnowitz\t_\tPROPN\tNNP\t_\t26\tnsubj\t_\t_\n29\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n30\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n31\tlongtime\t_\tADJ\tJJ\t_\t32\tamod\t_\t_\n32\tstudent\t_\tNOUN\tNN\t_\t28\tappos\t_\t_\n33\tof\t_\tADP\tIN\t_\t35\tcase\t_\t_\n34\tbusiness\t_\tNOUN\tNN\t_\t35\tcompound\t_\t_\n35\tcycles\t_\tNOUN\tNNS\t_\t32\tnmod\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t26\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t4\tpunct\t_\t_\n2\tThat\t_\tPRON\tDT\t_\t4\tnsubjpass\t_\t_\n3\twas\t_\tAUX\tVBD\t_\t4\tauxpass\t_\t_\n4\toffset\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n5\tby\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tstrength\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n7\telsewhere\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\t-LCB-\t_\tPUNCT\t-LRB-\t_\t8\tpunct\t_\t_\n2\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\teffects\t_\tNOUN\tNNS\t_\t8\tnsubj\t_\t_\n4\t-RCB-\t_\tPUNCT\t-RRB-\t_\t8\tpunct\t_\t_\n5\twere\t_\tVERB\tVBD\t_\t8\tcop\t_\t_\n6\tmuch\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n7\tless\t_\tADV\tRBR\t_\t8\tadvmod\t_\t_\n8\tsevere\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tless\t_\tADV\tRBR\t_\t11\tadvmod\t_\t_\n11\tprolonged\t_\tADJ\tJJ\t_\t8\tconj\t_\t_\n12\tthan\t_\tSCONJ\tIN\t_\t15\tmark\t_\t_\n13\tsome\t_\tDET\tDT\t_\t15\tnsubj\t_\t_\n14\thad\t_\tAUX\tVBD\t_\t15\taux\t_\t_\n15\tfeared\t_\tVERB\tVBN\t_\t8\tccomp\t_\t_\n16\tor\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\texpected\t_\tVERB\tVBN\t_\t15\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\t''\t_\tPUNCT\t''\t_\t14\tpunct\t_\t_\n2\tToday\t_\tNOUN\tNN\t_\t14\tnmod:tmod\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n4\the\t_\tPRON\tPRP\t_\t5\tnsubj\t_\t_\n5\tfrets\t_\tVERB\tVBZ\t_\t14\tparataxis\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t5\tpunct\t_\t_\n7\texports\t_\tNOUN\tNNS\t_\t14\tnsubj\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tbusiness\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tinvestment\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tspending\t_\tNOUN\tNN\t_\t7\tconj\t_\t_\n12\tmay\t_\tAUX\tMD\t_\t14\taux\t_\t_\n13\tbe\t_\tVERB\tVB\t_\t14\tcop\t_\t_\n14\tinsufficient\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpick\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n17\tup\t_\tADP\tRP\t_\t16\tcompound:prt\t_\t_\n18\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tslack\t_\tADJ\tJJ\t_\t16\tdobj\t_\t_\n20\tif\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n21\tstock\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tprices\t_\tNOUN\tNNS\t_\t23\tnsubj\t_\t_\n23\tsink\t_\tVERB\tVBP\t_\t14\tadvcl\t_\t_\n24\tthis\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tweek\t_\tNOUN\tNN\t_\t23\tnmod:tmod\t_\t_\n26\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n27\tif\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n28\tconsumers\t_\tNOUN\tNNS\t_\t29\tnsubj\t_\t_\n29\tretrench\t_\tVERB\tVBP\t_\t23\tconj\t_\t_\n30\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n31\treaction\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tWhat\t_\tPRON\tWP\t_\t3\tnsubj\t_\t_\n2\t's\t_\tVERB\tVBZ\t_\t3\tcop\t_\t_\n3\tmore\t_\tADJ\tJJR\t_\t11\tadvcl\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n6\tcorporate\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tborrowing\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tbinge\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n9\thas\t_\tAUX\tVBZ\t_\t11\taux\t_\t_\n10\tn't\t_\tPART\tRB\t_\t11\tneg\t_\t_\n11\tabated\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n14\tpast\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n15\ttwo\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n16\tyears\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t27\tpunct\t_\t_\n2\tWe\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\t've\t_\tAUX\tVBP\t_\t4\taux\t_\t_\n4\thad\t_\tVERB\tVBN\t_\t27\tccomp\t_\t_\n5\ttwo\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n6\tmore\t_\tADJ\tJJR\t_\t7\tamod\t_\t_\n7\tyears\t_\tNOUN\tNNS\t_\t4\tdobj\t_\t_\n8\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tsignificant\t_\tADJ\tJJ\t_\t10\tamod\t_\t_\n10\taccumulation\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tdebt\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n13\t...\t_\tPUNCT\t:\t_\t4\tpunct\t_\t_\n14\tjust\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n15\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n16\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\ttime\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n18\twhen\t_\tADV\tWRB\t_\t22\tadvmod\t_\t_\n19\tearnings\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t22\taux\t_\t_\n21\tbeing\t_\tAUX\tVBG\t_\t22\tauxpass\t_\t_\n22\tsqueezed\t_\tVERB\tVBN\t_\t17\tacl:relcl\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n24\t''\t_\tPUNCT\t''\t_\t27\tpunct\t_\t_\n25\tMr.\t_\tPROPN\tNNP\t_\t26\tcompound\t_\t_\n26\tChimerine\t_\tPROPN\tNNP\t_\t27\tnsubj\t_\t_\n27\tnotes\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tmore\t_\tADV\tRBR\t_\t5\tdep\t_\t_\n3\ta\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t5\tnsubj\t_\t_\n5\trelies\t_\tVERB\tVBZ\t_\t13\tdep\t_\t_\n6\ton\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tborrowed\t_\tVERB\tVBN\t_\t8\tamod\t_\t_\n8\tmoney\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tgreater\t_\tADJ\tJJR\t_\t13\tdep\t_\t_\n12\tits\t_\tPRON\tPRP$\t_\t13\tnmod:poss\t_\t_\n13\tsensitivity\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n14\tto\t_\tADP\tTO\t_\t17\tcase\t_\t_\n15\tan\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\teconomic\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tslowdown\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\twith\t_\tADP\tIN\t_\t7\tcase\t_\t_\n4\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n5\tstrong\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tbalance\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsheet\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n8\tcan\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\twithstand\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tan\t_\tDET\tDT\t_\t12\tdet\t_\t_\n11\tunanticipated\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tstorm\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t9\tpunct\t_\t_\n14\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n15\thighly\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tleveraged\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcompany\t_\tNOUN\tNN\t_\t19\tnsubj\t_\t_\n18\tmay\t_\tAUX\tMD\t_\t19\taux\t_\t_\n19\tend\t_\tVERB\tVB\t_\t9\tparataxis\t_\t_\n20\tup\t_\tADP\tRP\t_\t19\tcompound:prt\t_\t_\n21\tin\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tbankruptcy\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcourt\t_\tNOUN\tNN\t_\t19\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tFed\t_\tPROPN\tNNP\t_\t7\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\tcourse\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tknows\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\tthat\t_\tPRON\tDT\t_\t7\tdobj\t_\t_\n9\tvery\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\twell\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n11\t--\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n12\thence\t_\tADV\tRB\t_\t7\tdep\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t14\tnmod:poss\t_\t_\n14\treadiness\t_\tNOUN\tNN\t_\t7\tdep\t_\t_\n15\tto\t_\tPART\tTO\t_\t16\tmark\t_\t_\n16\tpump\t_\tVERB\tVB\t_\t14\tacl\t_\t_\n17\tcredit\t_\tNOUN\tNN\t_\t16\tdobj\t_\t_\n18\tinto\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\teconomy\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n21\tthis\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tmorning\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n3\tin\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n5\tprocess\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tFed\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n9\trisks\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n10\treigniting\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\tinflation\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tEven\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n2\tbefore\t_\tADP\tIN\t_\t5\tcase\t_\t_\n3\tFriday\t_\tPROPN\tNNP\t_\t5\tnmod:poss\t_\t_\n4\t's\t_\tPART\tPOS\t_\t3\tcase\t_\t_\n5\tevents\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n7\tHarvard\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n8\tUniversity\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n9\teconomist\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n10\tBenjamin\t_\tPROPN\tNNP\t_\t11\tcompound\t_\t_\n11\tFriedman\t_\tPROPN\tNNP\t_\t13\tnsubj\t_\t_\n12\twas\t_\tAUX\tVBD\t_\t13\taux\t_\t_\n13\targuing\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n14\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tFed\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n17\two\t_\tAUX\tMD\t_\t20\taux\t_\t_\n18\tn't\t_\tPART\tRB\t_\t20\tneg\t_\t_\n19\tbe\t_\tVERB\tVB\t_\t20\tcop\t_\t_\n20\table\t_\tADJ\tJJ\t_\t13\tccomp\t_\t_\n21\tto\t_\tPART\tTO\t_\t22\tmark\t_\t_\n22\tlive\t_\tVERB\tVB\t_\t20\txcomp\t_\t_\n23\tup\t_\tADP\tRP\t_\t22\tcompound:prt\t_\t_\n24\tto\t_\tADP\tTO\t_\t27\tcase\t_\t_\n25\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n26\ttough\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\twords\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n28\ton\t_\tSCONJ\tIN\t_\t29\tmark\t_\t_\n29\teliminating\t_\tVERB\tVBG\t_\t27\tacl\t_\t_\n30\tinflation\t_\tNOUN\tNN\t_\t29\tdobj\t_\t_\n31\tbecause\t_\tADP\tIN\t_\t34\tcase\t_\t_\n32\tof\t_\tADP\tIN\t_\t31\tmwe\t_\t_\n33\tits\t_\tPRON\tPRP$\t_\t34\tnmod:poss\t_\t_\n34\tresponsibility\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n35\tto\t_\tPART\tTO\t_\t36\tmark\t_\t_\n36\tprotect\t_\tVERB\tVB\t_\t34\tacl\t_\t_\n37\tfragile\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n38\tfinancial\t_\tADJ\tJJ\t_\t39\tamod\t_\t_\n39\tmarkets\t_\tNOUN\tNNS\t_\t36\tdobj\t_\t_\n40\t,\t_\tPUNCT\t,\t_\t39\tpunct\t_\t_\n41\tbanks\t_\tNOUN\tNNS\t_\t39\tconj\t_\t_\n42\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n43\thighly\t_\tADV\tRB\t_\t44\tadvmod\t_\t_\n44\tleveraged\t_\tADJ\tJJ\t_\t45\tamod\t_\t_\n45\tcorporations\t_\tNOUN\tNNS\t_\t39\tconj\t_\t_\n46\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tbiggest\t_\tADJ\tJJS\t_\t3\tamod\t_\t_\n3\tthreat\t_\tNOUN\tNN\t_\t12\tnsubj\t_\t_\n4\ton\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\teconomic\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n7\thorizon\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n8\tright\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tnow\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t12\tcop\t_\t_\n11\tn't\t_\tPART\tRB\t_\t12\tneg\t_\t_\n12\trecession\t_\tNOUN\tNN\t_\t15\tccomp\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n14\the\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n15\treasons\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\t;\t_\tPUNCT\t:\t_\t15\tpunct\t_\t_\n17\tit\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n18\t's\t_\tVERB\tVBZ\t_\t20\tcop\t_\t_\n19\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\toutbreak\t_\tNOUN\tNN\t_\t15\tparataxis\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tuncontrolled\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n23\tinflation\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\tend\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n6\t1987\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n7\tcollapse\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n8\tsuggested\t_\tVERB\tVBD\t_\t14\tparataxis\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\teconomy\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n12\tdoes\t_\tAUX\tVBZ\t_\t14\taux\t_\t_\n13\tn't\t_\tPART\tRB\t_\t14\tneg\t_\t_\n14\tmove\t_\tVERB\tVB\t_\t0\troot\t_\t_\n15\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\tlockstep\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n17\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\tstock\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tprices\t_\tNOUN\tNNS\t_\t16\tnmod\t_\t_\n20\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\teconomy\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tdoes\t_\tAUX\tVBZ\t_\t7\taux\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\thowever\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n7\tdepend\t_\tVERB\tVB\t_\t0\troot\t_\t_\n8\ton\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tconfidence\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tbusinesses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t12\tpunct\t_\t_\n14\tconsumers\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n16\tforeign\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tinvestors\t_\tNOUN\tNNS\t_\t12\tconj\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tpanic\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n3\ton\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tWall\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tStreet\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\tdoes\t_\tAUX\tVBZ\t_\t9\taux\t_\t_\n7\tn't\t_\tPART\tRB\t_\t9\tneg\t_\t_\n8\texactly\t_\tADV\tRB\t_\t9\tadvmod\t_\t_\n9\tinspire\t_\tVERB\tVB\t_\t0\troot\t_\t_\n10\tconfidence\t_\tNOUN\tNN\t_\t9\tdobj\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tSurveys\t_\tNOUN\tNNS\t_\t2\tnsubj\t_\t_\n2\tsuggested\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tthat\t_\tSCONJ\tIN\t_\t7\tmark\t_\t_\n4\tconsumer\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tconfidence\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n6\twas\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\thigh\t_\tADJ\tJJ\t_\t2\tccomp\t_\t_\n8\tbefore\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\t190-point\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tdrop\t_\tNOUN\tNN\t_\t6\tnsubj\t_\t_\n4\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n5\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n6\tlikely\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\tmake\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tmuch\t_\tADJ\tJJ\t_\t8\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tdent\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\t;\t_\tPUNCT\t:\t_\t6\tpunct\t_\t_\n14\tmultiply\t_\tVERB\tVB\t_\t6\tparataxis\t_\t_\n15\tthat\t_\tADP\tIN\t_\t14\tdobj\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tfew\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\ttimes\t_\tNOUN\tNNS\t_\t19\tnmod:npmod\t_\t_\n19\tover\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n21\tthough\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n22\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n23\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t25\tnsubj\t_\t_\n25\twill\t_\tAUX\tMD\t_\t14\tconj\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIf\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\treactions\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n4\tof\t_\tADP\tIN\t_\t5\tcase\t_\t_\n5\texecutives\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n6\tgathered\t_\tVERB\tVBD\t_\t5\tacl\t_\t_\n7\tSaturday\t_\tPROPN\tNNP\t_\t6\tnmod:tmod\t_\t_\n8\tat\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tHot\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSprings\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n12\tVa.\t_\tPROPN\tNNP\t_\t10\tappos\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tfor\t_\tADP\tIN\t_\t18\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n16\tBusiness\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n17\tCouncil\t_\tPROPN\tNNP\t_\t18\tcompound\t_\t_\n18\tmeetings\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n19\tare\t_\tVERB\tVBP\t_\t20\tcop\t_\t_\n20\ttypical\t_\tADJ\tJJ\t_\t27\tadvcl\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n22\tbusiness\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tleaders\t_\tNOUN\tNNS\t_\t27\tnsubjpass\t_\t_\n24\twere\t_\tAUX\tVBD\t_\t27\tauxpass\t_\t_\n25\tn't\t_\tPART\tRB\t_\t27\tneg\t_\t_\n26\toverly\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n27\trattled\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n28\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tFriday\t_\tPROPN\tNNP\t_\t31\tnmod:poss\t_\t_\n30\t's\t_\tPART\tPOS\t_\t29\tcase\t_\t_\n31\tdecline\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t27\tpunct\t_\t_\n\n1\tAnd\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n2\tif\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n3\tforeign\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tinvestors\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n5\tbecome\t_\tVERB\tVBP\t_\t18\tadvcl\t_\t_\n6\ta\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\ttad\t_\tNOUN\tNN\t_\t8\tnmod:npmod\t_\t_\n8\tmore\t_\tADV\tRBR\t_\t9\tadvmod\t_\t_\n9\tcautious\t_\tADJ\tJJ\t_\t5\txcomp\t_\t_\n10\t--\t_\tPUNCT\t:\t_\t18\tpunct\t_\t_\n11\twell\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tdollar\t_\tNOUN\tNN\t_\t17\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\trecent\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tstrength\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n18\tsuggests\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tthat\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n20\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n21\tU.S.\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n22\tcan\t_\tAUX\tMD\t_\t23\taux\t_\t_\n23\tstand\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n24\tit\t_\tPRON\tPRP\t_\t23\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tOn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tbottom\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tline\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n7\tmost\t_\tADV\tRBS\t_\t8\tadvmod\t_\t_\n8\tcomforting\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tfact\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n10\tfor\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\teconomic\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\toutlook\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\tis\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n15\tthat\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n16\twe\t_\tPRON\tPRP\t_\t20\tnsubj\t_\t_\n17\t've\t_\tAUX\tVBP\t_\t20\taux\t_\t_\n18\tbeen\t_\tVERB\tVBN\t_\t20\tcop\t_\t_\n19\tthrough\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tthis\t_\tPRON\tDT\t_\t14\tccomp\t_\t_\n21\tbefore\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tTwo\t_\tNUM\tCD\t_\t2\tnummod\t_\t_\n2\tyears\t_\tNOUN\tNNS\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n5\tabout\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tonly\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tpoint\t_\tNOUN\tNN\t_\t14\tnsubj\t_\t_\n9\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n10\tcomparison\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n11\twas\t_\tVERB\tVBD\t_\t14\tcop\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\t1929\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcrash\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n15\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n16\tthe\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tsubsequent\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tDepression\t_\tNOUN\tNN\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t14\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tdoomsayers\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thad\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\ta\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\treceptive\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\taudience\t_\tNOUN\tNN\t_\t3\tdobj\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprosperity\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n3\tthat\t_\tPRON\tWDT\t_\t4\tnsubj\t_\t_\n4\tfollowed\t_\tVERB\tVBD\t_\t2\tacl:relcl\t_\t_\n5\tBlack\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tMonday\t_\tPROPN\tNNP\t_\t4\tnmod:tmod\t_\t_\n7\tpermits\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n8\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n9\tmore\t_\tADV\tRBR\t_\t10\tadvmod\t_\t_\n10\toptimistic\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tview\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n12\ttoday\t_\tNOUN\tNN\t_\t7\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tvery\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n4\tleast\t_\tADJ\tJJS\t_\t10\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\testablishment\t_\tNOUN\tNN\t_\t10\tnsubj\t_\t_\n8\there\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\taux\t_\t_\n10\ttaking\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n11\tcomfort\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n12\tfrom\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tnation\t_\tNOUN\tNN\t_\t16\tnmod:poss\t_\t_\n15\t's\t_\tPART\tPOS\t_\t14\tcase\t_\t_\n16\tsuccess\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n17\tin\t_\tSCONJ\tIN\t_\t18\tmark\t_\t_\n18\thandling\t_\tVERB\tVBG\t_\t16\tacl\t_\t_\n19\tthe\t_\tDET\tDT\t_\t21\tdet\t_\t_\n20\tlast\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tgo-around\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAs\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n2\tSen.\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tLloyd\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tBentsen\t_\tPROPN\tNNP\t_\t10\tnsubj\t_\t_\n5\t-LRB-\t_\tPUNCT\t-LRB-\t_\t6\tpunct\t_\t_\n6\tD.\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tTexas\t_\tPROPN\tNNP\t_\t6\tdep\t_\t_\n9\t-RRB-\t_\tPUNCT\t-RRB-\t_\t6\tpunct\t_\t_\n10\tobserved\t_\tVERB\tVBD\t_\t16\tadvcl\t_\t_\n11\tyesterday\t_\tNOUN\tNN\t_\t10\tnmod:tmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n13\t``\t_\tPUNCT\t``\t_\t16\tpunct\t_\t_\n14\tThe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n15\tFed\t_\tPROPN\tNNP\t_\t16\tnsubj\t_\t_\n16\tavoided\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tmeltdown\t_\tADJ\tJJ\t_\t16\tdobj\t_\t_\n19\tlast\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\ttime\t_\tNOUN\tNN\t_\t16\tnmod:tmod\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n\n1\tThey\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n2\tare\t_\tVERB\tVBP\t_\t4\tcop\t_\t_\n3\tmore\t_\tADV\tRBR\t_\t4\tadvmod\t_\t_\n4\tsophisticated\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n5\tthis\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\ttime\t_\tNOUN\tNN\t_\t4\tnmod:tmod\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tchemical\t_\tNOUN\tNN\t_\t3\tcompound\t_\t_\n3\tindustry\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t7\tmark\t_\t_\n7\treport\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n8\tthat\t_\tSCONJ\tIN\t_\t10\tmark\t_\t_\n9\tprofits\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\teroded\t_\tVERB\tVBD\t_\t7\tccomp\t_\t_\n11\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tthird\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n15\tbecause\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tof\t_\tADP\tIN\t_\t15\tmwe\t_\t_\n17\tskidding\t_\tVERB\tVBG\t_\t18\tamod\t_\t_\n18\tprices\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n19\tin\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n21\tcommodity\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tend\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tbusiness\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tProducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tcommodity\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tchemicals\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n7\tbasic\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tchemicals\t_\tNOUN\tNNS\t_\t4\tappos\t_\t_\n9\tproduced\t_\tVERB\tVBN\t_\t8\tacl\t_\t_\n10\tin\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\thuge\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tvolumes\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n13\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\tother\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tmanufacturers\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n17\thave\t_\tAUX\tVBP\t_\t18\taux\t_\t_\n18\tseen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tsharp\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tinventory\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tcutting\t_\tNOUN\tNN\t_\t18\tdobj\t_\t_\n22\tby\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\tbuyers\t_\tNOUN\tNNS\t_\t21\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tOnce\t_\tADV\tRB\t_\t4\tadvmod\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tchief\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tbeneficiaries\t_\tNOUN\tNNS\t_\t18\tccomp\t_\t_\n5\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tindustry\t_\tNOUN\tNN\t_\t11\tnmod:poss\t_\t_\n8\t's\t_\tPART\tPOS\t_\t7\tcase\t_\t_\n9\tnow\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n10\tfading\t_\tVERB\tVBG\t_\t11\tamod\t_\t_\n11\tboom\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n13\tthese\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tproducers\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n15\talso\t_\tADV\tRB\t_\t18\tadvmod\t_\t_\n16\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n17\tbe\t_\tAUX\tVB\t_\t18\taux\t_\t_\n18\treporting\t_\tVERB\tVBG\t_\t0\troot\t_\t_\n19\tagainst\t_\tADP\tIN\t_\t22\tcase\t_\t_\n20\texceptionally\t_\tADV\tRB\t_\t21\tadvmod\t_\t_\n21\tstrong\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tperformances\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n23\tin\t_\tADP\tIN\t_\t27\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\t1988\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n26\tthird\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tquarter\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t20\tpunct\t_\t_\n2\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n3\tsome\t_\tDET\tDT\t_\t13\tnmod\t_\t_\n4\tof\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthese\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompanies\t_\tNOUN\tNNS\t_\t3\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n8\tthis\t_\tPRON\tDT\t_\t13\tnsubj\t_\t_\n9\twill\t_\tAUX\tMD\t_\t13\taux\t_\t_\n10\tbe\t_\tVERB\tVB\t_\t13\tcop\t_\t_\n11\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tfirst\t_\tADJ\tJJ\t_\t13\tamod\t_\t_\n13\tquarter\t_\tNOUN\tNN\t_\t20\tccomp\t_\t_\n14\twith\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tyear-to-year\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n16\tnegative\t_\tADJ\tJJ\t_\t17\tamod\t_\t_\n17\tcomparisons\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n19\t''\t_\tPUNCT\t''\t_\t20\tpunct\t_\t_\n20\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n21\tLeonard\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tBogner\t_\tPROPN\tNNP\t_\t20\tnsubj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n24\ta\t_\tDET\tDT\t_\t27\tdet\t_\t_\n25\tchemical\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n26\tindustry\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tanalyst\t_\tNOUN\tNN\t_\t22\tappos\t_\t_\n28\tat\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tPrudential\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tBache\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tResearch\t_\tPROPN\tNNP\t_\t27\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t6\tpunct\t_\t_\n2\tThis\t_\tPRON\tDT\t_\t6\tnsubj\t_\t_\n3\tcould\t_\tAUX\tMD\t_\t6\taux\t_\t_\n4\tbe\t_\tVERB\tVB\t_\t6\tcop\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tfirst\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n8\tfive\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n9\tor\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tsix\t_\tNUM\tCD\t_\t8\tconj\t_\t_\n11\tdown\t_\tADJ\tJJ\t_\t12\tamod\t_\t_\n12\tquarters\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n14\t''\t_\tPUNCT\t''\t_\t6\tpunct\t_\t_\n\n1\tPerhaps\t_\tADV\tRB\t_\t3\tadvmod\t_\t_\n2\tmost\t_\tADV\tRBS\t_\t3\tadvmod\t_\t_\n3\tprominent\t_\tADJ\tJJ\t_\t22\tccomp\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t22\tpunct\t_\t_\n5\tDow\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tChemical\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tCo.\t_\tPROPN\tNNP\t_\t22\tnsubjpass\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\twhich\t_\tPRON\tWDT\t_\t14\tnsubj\t_\t_\n10\tas\t_\tADP\tIN\t_\t12\tcase\t_\t_\n11\tof\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tmidyear\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n13\thad\t_\tAUX\tVBD\t_\t14\taux\t_\t_\n14\tracked\t_\tVERB\tVBN\t_\t7\tacl:relcl\t_\t_\n15\tup\t_\tADP\tRP\t_\t14\tcompound:prt\t_\t_\n16\teight\t_\tNUM\tCD\t_\t19\tnummod\t_\t_\n17\tconsecutive\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n18\trecord\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tquarters\t_\tNOUN\tNNS\t_\t14\tdobj\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n21\tis\t_\tAUX\tVBZ\t_\t22\tauxpass\t_\t_\n22\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\treport\t_\tVERB\tVB\t_\t22\txcomp\t_\t_\n25\tthat\t_\tDET\tDT\t_\t27\tmark\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t27\tnsubj\t_\t_\n27\tdecreased\t_\tVERB\tVBD\t_\t24\tccomp\t_\t_\n28\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n30\tlatest\t_\tADJ\tJJS\t_\t31\tamod\t_\t_\n31\tquarter\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n32\tfrom\t_\tADP\tIN\t_\t35\tcase\t_\t_\n33\ta\t_\tDET\tDT\t_\t34\tdet\t_\t_\n34\tyear\t_\tNOUN\tNN\t_\t35\tnmod:npmod\t_\t_\n35\tearlier\t_\tADV\tRBR\t_\t27\tadvcl\t_\t_\n36\t,\t_\tPUNCT\t,\t_\t27\tpunct\t_\t_\n37\tif\t_\tSCONJ\tIN\t_\t41\tmark\t_\t_\n38\tonly\t_\tADV\tRB\t_\t41\tadvmod\t_\t_\n39\tby\t_\tADP\tIN\t_\t41\tcase\t_\t_\n40\ta\t_\tDET\tDT\t_\t41\tdet\t_\t_\n41\tshade\t_\tNOUN\tNN\t_\t27\tadvcl\t_\t_\n42\t.\t_\tPUNCT\t.\t_\t22\tpunct\t_\t_\n\n1\tThough\t_\tSCONJ\tIN\t_\t5\tmark\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t5\tnsubj\t_\t_\n3\thas\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\taggressively\t_\tADV\tRB\t_\t5\tadvmod\t_\t_\n5\tdiversified\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n6\tinto\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\tspecialty\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tchemicals\t_\tNOUN\tNNS\t_\t5\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t8\tcc\t_\t_\n10\tpharmaceuticals\t_\tNOUN\tNNS\t_\t8\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tcompany\t_\tNOUN\tNN\t_\t15\tnsubj\t_\t_\n14\tstill\t_\tADV\tRB\t_\t15\tadvmod\t_\t_\n15\thas\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n17\tbig\t_\tADJ\tJJ\t_\t18\tamod\t_\t_\n18\tstake\t_\tNOUN\tNN\t_\t15\tdobj\t_\t_\n19\tin\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tpolyethylene\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t20\tpunct\t_\t_\n22\twhich\t_\tPRON\tWDT\t_\t24\tnsubjpass\t_\t_\n23\tis\t_\tAUX\tVBZ\t_\t24\tauxpass\t_\t_\n24\tused\t_\tVERB\tVBN\t_\t20\tacl:relcl\t_\t_\n25\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n26\tpackaging\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n27\tand\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n28\thousewares\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t4\tnmod:poss\t_\t_\n2\t'\t_\tPART\tPOS\t_\t1\tcase\t_\t_\n3\tthird-quarter\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\testimates\t_\tNOUN\tNNS\t_\t15\tnsubj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t11\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n7\tMidland\t_\tPROPN\tNNP\t_\t11\tdep\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n9\tMich.\t_\tPROPN\tNNP\t_\t7\tdep\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n11\tcompany\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n12\tare\t_\tVERB\tVBP\t_\t15\tcop\t_\t_\n13\tbetween\t_\tADP\tIN\t_\t15\tcase\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t3.20\t_\tNUM\tCD\t_\t0\troot\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\tand\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n19\t$\t_\tSYM\t$\t_\t20\tdep\t_\t_\n20\t3.30\t_\tNUM\tCD\t_\t15\tconj\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tshare\t_\tNOUN\tNN\t_\t20\tnmod:npmod\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n24\tcompared\t_\tVERB\tVBN\t_\t27\tcase\t_\t_\n25\twith\t_\tADP\tIN\t_\t27\tcase\t_\t_\n26\t$\t_\tSYM\t$\t_\t27\tdep\t_\t_\n27\t3.36\t_\tNUM\tCD\t_\t15\tadvcl\t_\t_\n28\ta\t_\tDET\tDT\t_\t29\tdet\t_\t_\n29\tyear\t_\tNOUN\tNN\t_\t30\tnmod:npmod\t_\t_\n30\tago\t_\tADV\tRB\t_\t27\tadvmod\t_\t_\n31\t,\t_\tPUNCT\t,\t_\t30\tpunct\t_\t_\n32\twhen\t_\tADV\tWRB\t_\t35\tadvmod\t_\t_\n33\tprofit\t_\tNOUN\tNN\t_\t35\tnsubj\t_\t_\n34\twas\t_\tVERB\tVBD\t_\t35\tcop\t_\t_\n35\t$\t_\tSYM\t$\t_\t30\tadvcl\t_\t_\n36\t632\t_\tNUM\tCD\t_\t37\tcompound\t_\t_\n37\tmillion\t_\tNUM\tCD\t_\t35\tnummod\t_\t_\n38\ton\t_\tADP\tIN\t_\t39\tcase\t_\t_\n39\tsales\t_\tNOUN\tNNS\t_\t35\tnmod\t_\t_\n40\tof\t_\tADP\tIN\t_\t41\tcase\t_\t_\n41\t$\t_\tSYM\t$\t_\t39\tnmod\t_\t_\n42\t4.15\t_\tNUM\tCD\t_\t43\tcompound\t_\t_\n43\tbillion\t_\tNUM\tCD\t_\t41\tnummod\t_\t_\n44\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tspokeswoman\t_\tNOUN\tNN\t_\t4\tnsubj\t_\t_\n4\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n5\tto\t_\tPART\tTO\t_\t6\tmark\t_\t_\n6\tcomment\t_\tVERB\tVB\t_\t4\txcomp\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\testimates\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tinvestment\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tfirm\t_\tNOUN\tNN\t_\t18\tnmod\t_\t_\n5\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n6\tSmith\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n7\tBarney\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tHarris\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n10\tUpham\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n11\t&\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n12\tCo.\t_\tPROPN\tNNP\t_\t10\tconj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n14\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n15\tcommodity-chemical\t_\tADJ\tJJ\t_\t16\tamod\t_\t_\n16\tsegment\t_\tNOUN\tNN\t_\t18\tnsubjpass\t_\t_\n17\tis\t_\tAUX\tVBZ\t_\t18\tauxpass\t_\t_\n18\tseen\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n19\tpulling\t_\tVERB\tVBG\t_\t18\txcomp\t_\t_\n20\tdown\t_\tADP\tRP\t_\t19\tadvmod\t_\t_\n21\toverall\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tprofit\t_\tNOUN\tNN\t_\t19\tdobj\t_\t_\n23\tfor\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t20\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tcompanies\t_\tNOUN\tNNS\t_\t22\tnmod\t_\t_\n26\trepresentative\t_\tADJ\tJJ\t_\t25\tamod\t_\t_\n27\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n28\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n29\twhole\t_\tADJ\tJJ\t_\t30\tamod\t_\t_\n30\tindustry\t_\tNOUN\tNN\t_\t26\tnmod\t_\t_\n31\tby\t_\tADP\tIN\t_\t36\tcase\t_\t_\n32\t8\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n33\t%\t_\tSYM\tNN\t_\t36\tdep\t_\t_\n34\tto\t_\tADP\tTO\t_\t36\tdep\t_\t_\n35\t10\t_\tNUM\tCD\t_\t36\tcompound\t_\t_\n36\t%\t_\tSYM\tNN\t_\t19\tnmod\t_\t_\n37\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\t``\t_\tPUNCT\t``\t_\t23\tpunct\t_\t_\n2\tYou\t_\tPRON\tPRP\t_\t4\tnsubj\t_\t_\n3\twill\t_\tAUX\tMD\t_\t4\taux\t_\t_\n4\tfind\t_\tVERB\tVB\t_\t23\tccomp\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcommodities\t_\tNOUN\tNNS\t_\t7\tdep\t_\t_\n7\toff\t_\tADV\tRB\t_\t4\txcomp\t_\t_\n8\tmore\t_\tADV\tRBR\t_\t7\tadvmod\t_\t_\n9\tthan\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tothers\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tdiversified\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\tcompanies\t_\tNOUN\tNNS\t_\t17\tdep\t_\t_\n16\tabout\t_\tADV\tRB\t_\t17\tadvmod\t_\t_\n17\teven\t_\tADJ\tJJ\t_\t7\tconj\t_\t_\n18\tor\t_\tCONJ\tCC\t_\t17\tcc\t_\t_\n19\tslightly\t_\tADV\tRB\t_\t20\tadvmod\t_\t_\n20\tbetter\t_\tADJ\tJJR\t_\t17\tconj\t_\t_\n21\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n22\t''\t_\tPUNCT\t''\t_\t23\tpunct\t_\t_\n23\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n24\tJames\t_\tPROPN\tNNP\t_\t25\tcompound\t_\t_\n25\tWilbur\t_\tPROPN\tNNP\t_\t23\tnsubj\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t25\tpunct\t_\t_\n27\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n28\tSmith\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n29\tBarney\t_\tPROPN\tNNP\t_\t30\tcompound\t_\t_\n30\tanalyst\t_\tNOUN\tNN\t_\t25\tappos\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tFirst\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tBoston\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t4\tnsubj\t_\t_\n4\tprojects\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n5\tthat\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n6\t10\t_\tNUM\tCD\t_\t14\tnsubj\t_\t_\n7\tof\t_\tADP\tIN\t_\t10\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n9\t15\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n10\tcompanies\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n11\tit\t_\tPRON\tPRP\t_\t12\tnsubj\t_\t_\n12\tfollows\t_\tVERB\tVBZ\t_\t10\tacl:relcl\t_\t_\n13\twill\t_\tAUX\tMD\t_\t14\taux\t_\t_\n14\treport\t_\tVERB\tVB\t_\t4\tccomp\t_\t_\n15\tlower\t_\tADJ\tJJR\t_\t16\tamod\t_\t_\n16\tprofit\t_\tNOUN\tNN\t_\t14\tdobj\t_\t_\n17\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t5\tnsubj\t_\t_\n2\tof\t_\tADP\tIN\t_\t4\tcase\t_\t_\n3\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n4\t10\t_\tNUM\tCD\t_\t1\tnmod\t_\t_\n5\thave\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tbig\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n7\tcommodity-chemical\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\toperations\t_\tNOUN\tNNS\t_\t5\tdobj\t_\t_\n9\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tStill\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n3\tsome\t_\tDET\tDT\t_\t5\tdet\t_\t_\n4\tindustry\t_\tNOUN\tNN\t_\t5\tcompound\t_\t_\n5\tgiants\t_\tNOUN\tNNS\t_\t7\tnsubjpass\t_\t_\n6\tare\t_\tAUX\tVBP\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\treport\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\tcontinuing\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\tgains\t_\tNOUN\tNNS\t_\t9\tdobj\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n13\tlargely\t_\tADV\tRB\t_\t23\tadvmod\t_\t_\n14\tbecause\t_\tSCONJ\tIN\t_\t23\tmark\t_\t_\n15\tso\t_\tADV\tRB\t_\t16\tadvmod\t_\t_\n16\tmuch\t_\tADJ\tJJ\t_\t23\tnsubj\t_\t_\n17\tof\t_\tADP\tIN\t_\t19\tcase\t_\t_\n18\ttheir\t_\tPRON\tPRP$\t_\t19\tnmod:poss\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t16\tnmod\t_\t_\n20\tis\t_\tVERB\tVBZ\t_\t23\tcop\t_\t_\n21\toutside\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tcommodity\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tchemicals\t_\tNOUN\tNNS\t_\t7\tadvcl\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tDu\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tPont\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t5\tnsubjpass\t_\t_\n4\tis\t_\tAUX\tVBZ\t_\t5\tauxpass\t_\t_\n5\tthought\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n7\thave\t_\tAUX\tVB\t_\t8\taux\t_\t_\n8\thad\t_\tVERB\tVBD\t_\t5\txcomp\t_\t_\n9\tsteady\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n10\tprofit\t_\tNOUN\tNN\t_\t11\tcompound\t_\t_\n11\tgrowth\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n12\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\twhite\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n14\tpigments\t_\tNOUN\tNNS\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tfibers\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n17\tand\t_\tCONJ\tCC\t_\t14\tcc\t_\t_\n18\tpolymers\t_\tNOUN\tNNS\t_\t14\tconj\t_\t_\n19\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tMoreover\t_\tADV\tRB\t_\t10\tadvmod\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n3\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n4\tWilmington\t_\tPROPN\tNNP\t_\t8\tdep\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tDel.\t_\tPROPN\tNNP\t_\t4\tdep\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t10\tnsubjpass\t_\t_\n9\tis\t_\tAUX\tVBZ\t_\t10\tauxpass\t_\t_\n10\thelped\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n11\twhen\t_\tADV\tWRB\t_\t13\tadvmod\t_\t_\n12\tprices\t_\tNOUN\tNNS\t_\t13\tnsubj\t_\t_\n13\tweaken\t_\tVERB\tVBP\t_\t10\tadvcl\t_\t_\n14\ton\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tcommodity\t_\tNOUN\tNN\t_\t17\tcompound\t_\t_\n17\tchemicals\t_\tNOUN\tNNS\t_\t13\tnmod\t_\t_\n18\tit\t_\tPRON\tPRP\t_\t19\tnsubj\t_\t_\n19\tbuys\t_\tVERB\tVBZ\t_\t17\tacl:relcl\t_\t_\n20\tfor\t_\tADP\tIN\t_\t24\tcase\t_\t_\n21\tits\t_\tPRON\tPRP$\t_\t24\tnmod:poss\t_\t_\n22\town\t_\tADJ\tJJ\t_\t24\tamod\t_\t_\n23\tproduction\t_\tNOUN\tNN\t_\t24\tcompound\t_\t_\n24\tneeds\t_\tNOUN\tNNS\t_\t19\tnmod\t_\t_\n25\t,\t_\tPUNCT\t,\t_\t24\tpunct\t_\t_\n26\tsuch\t_\tADJ\tJJ\t_\t28\tcase\t_\t_\n27\tas\t_\tADP\tIN\t_\t26\tmwe\t_\t_\n28\tethylene\t_\tNOUN\tNN\t_\t24\tnmod\t_\t_\n29\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tAnalysts\t_\tNOUN\tNNS\t_\t3\tnsubjpass\t_\t_\n2\tare\t_\tAUX\tVBP\t_\t3\tauxpass\t_\t_\n3\tdivided\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n4\tover\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n5\twhether\t_\tSCONJ\tIN\t_\t9\tmark\t_\t_\n6\tDu\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tPont\t_\tPROPN\tNNP\t_\t9\tnsubj\t_\t_\n8\twill\t_\tAUX\tMD\t_\t9\taux\t_\t_\n9\treport\t_\tVERB\tVB\t_\t3\tadvcl\t_\t_\n10\tmuch\t_\tADJ\tJJ\t_\t9\tdobj\t_\t_\n11\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tgain\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n14\tin\t_\tADP\tIN\t_\t17\tcase\t_\t_\n15\tthe\t_\tDET\tDT\t_\t17\tdet\t_\t_\n16\tlatest\t_\tADJ\tJJS\t_\t17\tamod\t_\t_\n17\tquarter\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n18\tfrom\t_\tADP\tIN\t_\t23\tcase\t_\t_\n19\tits\t_\tPRON\tPRP$\t_\t23\tnmod:poss\t_\t_\n20\tConoco\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n21\tInc.\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n22\toil\t_\tNOUN\tNN\t_\t23\tcompound\t_\t_\n23\tcompany\t_\tNOUN\tNN\t_\t10\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\testimates\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t5\tcase\t_\t_\n4\tDu\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tPont\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n6\trange\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t11\tcase\t_\t_\n8\t$\t_\tSYM\t$\t_\t11\tdep\t_\t_\n9\t2.25\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n10\tto\t_\tADP\tTO\t_\t11\tdep\t_\t_\n11\t$\t_\tSYM\t$\t_\t6\tnmod\t_\t_\n12\t2.45\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n13\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tshare\t_\tNOUN\tNN\t_\t11\tnmod:npmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n7\tthe\t_\tDET\tDT\t_\t8\tdet\t_\t_\n8\tcompany\t_\tNOUN\tNN\t_\t9\tnsubj\t_\t_\n9\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n10\t$\t_\tSYM\t$\t_\t9\tdobj\t_\t_\n11\t461\t_\tNUM\tCD\t_\t12\tcompound\t_\t_\n12\tmillion\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n14\tor\t_\tCONJ\tCC\t_\t10\tcc\t_\t_\n15\t$\t_\tSYM\t$\t_\t16\tdep\t_\t_\n16\t1.91\t_\tNUM\tCD\t_\t10\tconj\t_\t_\n17\ta\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tshare\t_\tNOUN\tNN\t_\t16\tnmod:npmod\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n20\ton\t_\tADP\tIN\t_\t21\tcase\t_\t_\n21\tsales\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n22\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n23\t$\t_\tSYM\t$\t_\t21\tnmod\t_\t_\n24\t7.99\t_\tNUM\tCD\t_\t25\tcompound\t_\t_\n25\tbillion\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n26\t.\t_\tPUNCT\t.\t_\t9\tpunct\t_\t_\n\n1\tDu\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tPont\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tto\t_\tPART\tTO\t_\t5\tmark\t_\t_\n5\tcomment\t_\tVERB\tVB\t_\t3\txcomp\t_\t_\n6\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tMonsanto\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tCo.\t_\tPROPN\tNNP\t_\t7\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n4\ttoo\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n6\tis\t_\tAUX\tVBZ\t_\t7\tauxpass\t_\t_\n7\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n8\tto\t_\tPART\tTO\t_\t9\tmark\t_\t_\n9\tcontinue\t_\tVERB\tVB\t_\t7\txcomp\t_\t_\n10\treporting\t_\tVERB\tVBG\t_\t9\txcomp\t_\t_\n11\thigher\t_\tADJ\tJJR\t_\t12\tamod\t_\t_\n12\tprofit\t_\tNOUN\tNN\t_\t10\tdobj\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n14\teven\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n15\tthough\t_\tSCONJ\tIN\t_\t22\tmark\t_\t_\n16\tits\t_\tPRON\tPRP$\t_\t17\tnmod:poss\t_\t_\n17\tsales\t_\tNOUN\tNNS\t_\t22\tnsubjpass\t_\t_\n18\tof\t_\tADP\tIN\t_\t20\tcase\t_\t_\n19\tcrop\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n20\tchemicals\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n21\twere\t_\tAUX\tVBD\t_\t22\tauxpass\t_\t_\n22\thurt\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n23\tin\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tthe\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\tlatest\t_\tADJ\tJJS\t_\t26\tamod\t_\t_\n26\tquarter\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tby\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tdrought\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n29\tin\t_\tADP\tIN\t_\t31\tcase\t_\t_\n30\tnorthern\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tEurope\t_\tPROPN\tNNP\t_\t28\tnmod\t_\t_\n32\tand\t_\tCONJ\tCC\t_\t31\tcc\t_\t_\n33\tthe\t_\tDET\tDT\t_\t35\tdet\t_\t_\n34\twestern\t_\tADJ\tJJ\t_\t35\tamod\t_\t_\n35\tU.S.\t_\tPROPN\tNNP\t_\t31\tconj\t_\t_\n36\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tSt.\t_\tPROPN\tNNP\t_\t3\tamod\t_\t_\n3\tLouis-based\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tcompany\t_\tNOUN\tNN\t_\t6\tnsubjpass\t_\t_\n5\tis\t_\tAUX\tVBZ\t_\t6\tauxpass\t_\t_\n6\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tto\t_\tPART\tTO\t_\t8\tmark\t_\t_\n8\treport\t_\tVERB\tVB\t_\t6\txcomp\t_\t_\n9\tagain\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tthat\t_\tSCONJ\tIN\t_\t21\tmark\t_\t_\n11\tlosses\t_\tNOUN\tNNS\t_\t21\tnsubj\t_\t_\n12\tin\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tits\t_\tPRON\tPRP$\t_\t15\tnmod:poss\t_\t_\n14\tG.D.\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tSearle\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n16\t&\t_\tCONJ\tCC\t_\t15\tcc\t_\t_\n17\tCo.\t_\tPROPN\tNNP\t_\t19\tcompound\t_\t_\n18\tpharmaceutical\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tbusiness\t_\tNOUN\tNN\t_\t15\tconj\t_\t_\n20\tare\t_\tAUX\tVBP\t_\t21\taux\t_\t_\n21\tnarrowing\t_\tVERB\tVBG\t_\t8\tccomp\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tSearle\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tcontinued\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\toperate\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\tin\t_\tADP\tIN\t_\t7\tcase\t_\t_\n6\tthe\t_\tDET\tDT\t_\t7\tdet\t_\t_\n7\tred\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n8\tthrough\t_\tADP\tIN\t_\t11\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t11\tdet\t_\t_\n10\tfirst\t_\tADJ\tJJ\t_\t11\tamod\t_\t_\n11\thalf\t_\tNOUN\tNN\t_\t2\tnmod\t_\t_\n12\tof\t_\tADP\tIN\t_\t14\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n14\tyear\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n16\tbut\t_\tCONJ\tCC\t_\t2\tcc\t_\t_\n17\tMonsanto\t_\tPROPN\tNNP\t_\t19\tnsubj\t_\t_\n18\thas\t_\tAUX\tVBZ\t_\t19\taux\t_\t_\n19\tsaid\t_\tVERB\tVBD\t_\t2\tconj\t_\t_\n20\tit\t_\tPRON\tPRP\t_\t21\tnsubj\t_\t_\n21\texpects\t_\tVERB\tVBZ\t_\t19\tccomp\t_\t_\n22\tSearle\t_\tPROPN\tNNP\t_\t21\tdobj\t_\t_\n23\tto\t_\tPART\tTO\t_\t24\tmark\t_\t_\n24\tpost\t_\tVERB\tVB\t_\t21\txcomp\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tprofit\t_\tNOUN\tNN\t_\t24\tdobj\t_\t_\n27\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n28\tall\t_\tDET\tDT\t_\t26\tnmod\t_\t_\n29\tof\t_\tADP\tIN\t_\t30\tcase\t_\t_\n30\t1989\t_\tNUM\tCD\t_\t28\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tMost\t_\tADJ\tJJS\t_\t2\tamod\t_\t_\n2\testimates\t_\tNOUN\tNNS\t_\t5\tnsubj\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tMonsanto\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n5\trun\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n6\tbetween\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\t$\t_\tSYM\t$\t_\t5\tnmod\t_\t_\n8\t1.70\t_\tNUM\tCD\t_\t7\tnummod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n10\t$\t_\tSYM\t$\t_\t7\tconj\t_\t_\n11\t2\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n13\tshare\t_\tNOUN\tNN\t_\t7\tnmod:npmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tA\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tyear\t_\tNOUN\tNN\t_\t3\tnmod:npmod\t_\t_\n3\tago\t_\tADV\tRB\t_\t7\tadvmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tcompany\t_\tNOUN\tNN\t_\t7\tnsubj\t_\t_\n7\tposted\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n8\tthird-quarter\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t7\tdobj\t_\t_\n10\tof\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\t$\t_\tSYM\t$\t_\t9\tnmod\t_\t_\n12\t116\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\tmillion\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t11\tcc\t_\t_\n16\t$\t_\tSYM\t$\t_\t17\tdep\t_\t_\n17\t1.67\t_\tNUM\tCD\t_\t11\tconj\t_\t_\n18\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n19\tshare\t_\tNOUN\tNN\t_\t17\tnmod:npmod\t_\t_\n20\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n21\ton\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\tsales\t_\tNOUN\tNNS\t_\t9\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t24\tcase\t_\t_\n24\t$\t_\tSYM\t$\t_\t22\tnmod\t_\t_\n25\t2.02\t_\tNUM\tCD\t_\t26\tcompound\t_\t_\n26\tbillion\t_\tNUM\tCD\t_\t24\tnummod\t_\t_\n27\t.\t_\tPUNCT\t.\t_\t7\tpunct\t_\t_\n\n1\tMonsanto\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tto\t_\tPART\tTO\t_\t4\tmark\t_\t_\n4\tcomment\t_\tVERB\tVB\t_\t2\txcomp\t_\t_\n5\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tcommodity-chemical\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n4\tproducers\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n5\tare\t_\tAUX\tVBP\t_\t6\tauxpass\t_\t_\n6\tcaught\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\ton\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t9\tdet\t_\t_\n9\tdownside\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n10\tof\t_\tADP\tIN\t_\t13\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t13\tdet\t_\t_\n12\tpricing\t_\tNOUN\tNN\t_\t13\tcompound\t_\t_\n13\tcycle\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tBy\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tsome\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\taccounts\t_\tNOUN\tNNS\t_\t18\tnmod\t_\t_\n4\ton\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tWall\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tStreet\t_\tPROPN\tNNP\t_\t3\tnmod\t_\t_\n7\tand\t_\tCONJ\tCC\t_\t6\tcc\t_\t_\n8\tin\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tindustry\t_\tNOUN\tNN\t_\t6\tconj\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n12\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n13\tinventory\t_\tNOUN\tNN\t_\t14\tcompound\t_\t_\n14\treductions\t_\tNOUN\tNNS\t_\t18\tnsubj\t_\t_\n15\tare\t_\tVERB\tVBP\t_\t18\tcop\t_\t_\n16\tnear\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\tan\t_\tDET\tDT\t_\t18\tdet\t_\t_\n18\tend\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t22\tnsubj\t_\t_\n21\tmay\t_\tAUX\tMD\t_\t22\taux\t_\t_\n22\tpresage\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n23\tfirmer\t_\tADJ\tJJR\t_\t24\tamod\t_\t_\n24\tdemand\t_\tNOUN\tNN\t_\t22\tdobj\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t3\tcc\t_\t_\n2\tdoubters\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\tsay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\tgrowing\t_\tVERB\tVBG\t_\t6\tamod\t_\t_\n5\tproduction\t_\tNOUN\tNN\t_\t6\tcompound\t_\t_\n6\tcapacity\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\tcould\t_\tAUX\tMD\t_\t8\taux\t_\t_\n8\tkeep\t_\tVERB\tVB\t_\t3\tccomp\t_\t_\n9\tpressure\t_\tNOUN\tNN\t_\t8\tdobj\t_\t_\n10\ton\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tprices\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tinto\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tthe\t_\tDET\tDT\t_\t15\tdet\t_\t_\n14\tearly\t_\tADJ\tJJ\t_\t15\tamod\t_\t_\n15\t1990s\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t4\tdet\t_\t_\n3\tlatest\t_\tADJ\tJJS\t_\t4\tamod\t_\t_\n4\tquarter\t_\tNOUN\tNN\t_\t11\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n6\tat\t_\tADP\tIN\t_\t11\tadvmod\t_\t_\n7\tleast\t_\tADJ\tJJS\t_\t6\tmwe\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t11\tpunct\t_\t_\n9\tprofit\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tfall\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tsharply\t_\tADV\tRB\t_\t13\tadvmod\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tFor\t_\tADP\tIN\t_\t3\tcase\t_\t_\n2\tHimont\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tInc.\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n5\t``\t_\tPUNCT\t``\t_\t18\tpunct\t_\t_\n6\thow\t_\tADV\tWRB\t_\t7\tadvmod\t_\t_\n7\tfar\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n8\tdown\t_\tADV\tRB\t_\t10\tdep\t_\t_\n9\tit\t_\tPRON\tPRP\t_\t10\tnsubj\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t15\tadvcl\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n12\twe\t_\tPRON\tPRP\t_\t15\tnsubj\t_\t_\n13\tdo\t_\tAUX\tVBP\t_\t15\taux\t_\t_\n14\tn't\t_\tPART\tRB\t_\t15\tneg\t_\t_\n15\tknow\t_\tVERB\tVB\t_\t18\tccomp\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t18\tpunct\t_\t_\n17\t''\t_\tPUNCT\t''\t_\t18\tpunct\t_\t_\n18\tsays\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n19\tLeslie\t_\tPROPN\tNNP\t_\t20\tcompound\t_\t_\n20\tRavitz\t_\tPROPN\tNNP\t_\t18\tnsubj\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\tSalomon\t_\tPROPN\tNNP\t_\t23\tcompound\t_\t_\n23\tBrothers\t_\tPROPN\tNNP\t_\t20\tnmod\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t18\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tprojections\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\tare\t_\tVERB\tVBP\t_\t6\tcop\t_\t_\n4\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tneighborhood\t_\tNOUN\tNN\t_\t0\troot\t_\t_\n7\tof\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\t50\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\tto\t_\tADP\tTO\t_\t14\tdep\t_\t_\n13\t75\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n14\tcents\t_\tNOUN\tNNS\t_\t9\tdep\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n16\tcompared\t_\tVERB\tVBN\t_\t21\tcase\t_\t_\n17\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n18\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n19\trestated\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\t$\t_\tSYM\t$\t_\t21\tdep\t_\t_\n21\t1.65\t_\tNUM\tCD\t_\t9\tnmod\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tshare\t_\tNOUN\tNN\t_\t21\tnmod:npmod\t_\t_\n24\ta\t_\tDET\tDT\t_\t25\tdet\t_\t_\n25\tyear\t_\tNOUN\tNN\t_\t26\tnmod:npmod\t_\t_\n26\tearlier\t_\tADV\tRBR\t_\t21\tadvmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\twhen\t_\tADV\tWRB\t_\t31\tadvmod\t_\t_\n29\tprofit\t_\tNOUN\tNN\t_\t31\tnsubj\t_\t_\n30\twas\t_\tVERB\tVBD\t_\t31\tcop\t_\t_\n31\t$\t_\tSYM\t$\t_\t26\tadvcl\t_\t_\n32\t107.8\t_\tNUM\tCD\t_\t33\tcompound\t_\t_\n33\tmillion\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n34\ton\t_\tADP\tIN\t_\t35\tcase\t_\t_\n35\tsales\t_\tNOUN\tNNS\t_\t31\tnmod\t_\t_\n36\tof\t_\tADP\tIN\t_\t37\tcase\t_\t_\n37\t$\t_\tSYM\t$\t_\t35\tnmod\t_\t_\n38\t435.5\t_\tNUM\tCD\t_\t39\tcompound\t_\t_\n39\tmillion\t_\tNUM\tCD\t_\t37\tnummod\t_\t_\n40\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tHimont\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n2\tfaces\t_\tVERB\tVBZ\t_\t0\troot\t_\t_\n3\tlower\t_\tADJ\tJJR\t_\t4\tamod\t_\t_\n4\tprices\t_\tNOUN\tNNS\t_\t2\tdobj\t_\t_\n5\tfor\t_\tADP\tIN\t_\t8\tcase\t_\t_\n6\tits\t_\tPRON\tPRP$\t_\t8\tnmod:poss\t_\t_\n7\tmainstay\t_\tNOUN\tNN\t_\t8\tcompound\t_\t_\n8\tproduct\t_\tNOUN\tNN\t_\t4\tnmod\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n10\tpolypropylene\t_\tNOUN\tNN\t_\t8\tappos\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n12\twhile\t_\tSCONJ\tIN\t_\t14\tmark\t_\t_\n13\tit\t_\tPRON\tPRP\t_\t14\tnsubj\t_\t_\n14\tgoes\t_\tVERB\tVBZ\t_\t2\tadvcl\t_\t_\n15\tforward\t_\tADV\tRB\t_\t14\tadvmod\t_\t_\n16\twith\t_\tADP\tIN\t_\t21\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t21\tdet\t_\t_\n18\theavy\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n19\tcapital\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n20\tinvestment\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tprogram\t_\tNOUN\tNN\t_\t14\tnmod\t_\t_\n22\tto\t_\tPART\tTO\t_\t23\tmark\t_\t_\n23\tbolster\t_\tVERB\tVB\t_\t21\tacl\t_\t_\n24\tits\t_\tPRON\tPRP$\t_\t27\tnmod:poss\t_\t_\n25\traw\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n26\tmaterial\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tsupply\t_\tNOUN\tNN\t_\t23\tdobj\t_\t_\n28\tand\t_\tCONJ\tCC\t_\t23\tcc\t_\t_\n29\tdevelop\t_\tVERB\tVB\t_\t23\tconj\t_\t_\n30\tnew\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n31\tuses\t_\tNOUN\tNNS\t_\t29\tdobj\t_\t_\n32\tfor\t_\tADP\tIN\t_\t33\tcase\t_\t_\n33\tpolypropylene\t_\tNOUN\tNN\t_\t31\tnmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twhose\t_\tPRON\tWP$\t_\t36\tnmod:poss\t_\t_\n36\tmarkets\t_\tNOUN\tNNS\t_\t37\tnsubj\t_\t_\n37\tinclude\t_\tVERB\tVBP\t_\t33\tacl:relcl\t_\t_\n38\tthe\t_\tDET\tDT\t_\t42\tdet\t_\t_\n39\tpackaging\t_\tNOUN\tNN\t_\t42\tcompound\t_\t_\n40\tand\t_\tCONJ\tCC\t_\t39\tcc\t_\t_\n41\tautomobile\t_\tNOUN\tNN\t_\t39\tconj\t_\t_\n42\tindustries\t_\tNOUN\tNNS\t_\t37\tdobj\t_\t_\n43\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcompany\t_\tNOUN\tNN\t_\t11\tnsubj\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tbased\t_\tVERB\tVBN\t_\t2\tacl\t_\t_\n5\tin\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tWilmington\t_\tPROPN\tNNP\t_\t4\tnmod\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t6\tpunct\t_\t_\n8\tDel.\t_\tPROPN\tNNP\t_\t6\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n10\tis\t_\tVERB\tVBZ\t_\t11\tcop\t_\t_\n11\t81%-owned\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n12\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n13\tMontedison\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n14\tS.p\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n15\t.\t_\tPUNCT\t.\t_\t16\tpunct\t_\t_\n16\tA.\t_\tPROPN\tNNP\t_\t11\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n18\tMilan\t_\tPROPN\tNNP\t_\t16\tappos\t_\t_\n19\t,\t_\tPUNCT\t,\t_\t16\tpunct\t_\t_\n20\twhich\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n21\thas\t_\tVERB\tVBZ\t_\t16\tacl:relcl\t_\t_\n22\tan\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\toffer\t_\tNOUN\tNN\t_\t21\tdobj\t_\t_\n24\toutstanding\t_\tADJ\tJJ\t_\t23\tamod\t_\t_\n25\tfor\t_\tADP\tIN\t_\t28\tcase\t_\t_\n26\tthe\t_\tDET\tDT\t_\t28\tdet\t_\t_\n27\tHimont\t_\tPROPN\tNNP\t_\t28\tcompound\t_\t_\n28\tshares\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n29\tit\t_\tPRON\tPRP\t_\t33\tnsubj\t_\t_\n30\tdoes\t_\tAUX\tVBZ\t_\t33\taux\t_\t_\n31\tn't\t_\tPART\tRB\t_\t33\tneg\t_\t_\n32\talready\t_\tADV\tRB\t_\t33\tadvmod\t_\t_\n33\town\t_\tVERB\tVB\t_\t28\tacl:relcl\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tAt\t_\tADP\tIN\t_\t4\tcase\t_\t_\n2\tQuantum\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n3\tChemical\t_\tPROPN\tNNP\t_\t4\tcompound\t_\t_\n4\tCorp.\t_\tPROPN\tNNP\t_\t13\tnmod\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tNew\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n7\tYork\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\ttrouble\t_\tNOUN\tNN\t_\t13\tnsubj\t_\t_\n11\tis\t_\tVERB\tVBZ\t_\t13\tcop\t_\t_\n12\tlower\t_\tADJ\tJJR\t_\t13\tamod\t_\t_\n13\tprices\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n14\tfor\t_\tADP\tIN\t_\t15\tcase\t_\t_\n15\tpolyethylene\t_\tNOUN\tNN\t_\t13\tnmod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n17\thigher\t_\tADJ\tJJR\t_\t19\tamod\t_\t_\n18\tdebt\t_\tNOUN\tNN\t_\t19\tcompound\t_\t_\n19\tcosts\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n21\tthe\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tidling\t_\tNOUN\tNN\t_\t13\tconj\t_\t_\n23\tof\t_\tADP\tIN\t_\t26\tcase\t_\t_\n24\tan\t_\tDET\tDT\t_\t26\tdet\t_\t_\n25\timportant\t_\tADJ\tJJ\t_\t26\tamod\t_\t_\n26\tplant\t_\tNOUN\tNN\t_\t22\tnmod\t_\t_\n27\tdue\t_\tADV\tRB\t_\t22\tadvmod\t_\t_\n28\tto\t_\tADP\tTO\t_\t30\tcase\t_\t_\n29\tan\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\texplosion\t_\tNOUN\tNN\t_\t27\tnmod\t_\t_\n31\t.\t_\tPUNCT\t.\t_\t13\tpunct\t_\t_\n\n1\tSome\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tanalysts\t_\tNOUN\tNNS\t_\t3\tnsubj\t_\t_\n3\thedge\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n4\ttheir\t_\tPRON\tPRP$\t_\t5\tnmod:poss\t_\t_\n5\testimates\t_\tNOUN\tNNS\t_\t3\tdobj\t_\t_\n6\tfor\t_\tADP\tIN\t_\t7\tcase\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t5\tnmod\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n9\tbecause\t_\tSCONJ\tIN\t_\t13\tmark\t_\t_\n10\tit\t_\tPRON\tPRP\t_\t13\tnsubjpass\t_\t_\n11\tis\t_\tAUX\tVBZ\t_\t13\tauxpass\t_\t_\n12\tn't\t_\tPART\tRB\t_\t13\tneg\t_\t_\n13\tknown\t_\tVERB\tVBN\t_\t3\tadvcl\t_\t_\n14\twhen\t_\tADV\tWRB\t_\t18\tadvmod\t_\t_\n15\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n16\tcompany\t_\tNOUN\tNN\t_\t18\tnsubj\t_\t_\n17\twill\t_\tAUX\tMD\t_\t18\taux\t_\t_\n18\tbook\t_\tVERB\tVB\t_\t13\tadvcl\t_\t_\n19\tcertain\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n20\tone-time\t_\tADJ\tJJ\t_\t21\tamod\t_\t_\n21\tcharges\t_\tNOUN\tNNS\t_\t18\tdobj\t_\t_\n22\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tBut\t_\tCONJ\tCC\t_\t4\tcc\t_\t_\n2\tthe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n3\testimates\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\trange\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tfrom\t_\tADP\tIN\t_\t6\tcase\t_\t_\n6\tbreak-even\t_\tADJ\tJJ\t_\t4\tnmod\t_\t_\n7\tto\t_\tADP\tTO\t_\t9\tcase\t_\t_\n8\t35\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n9\tcents\t_\tNOUN\tNNS\t_\t6\tnmod\t_\t_\n10\ta\t_\tDET\tDT\t_\t11\tdet\t_\t_\n11\tshare\t_\tNOUN\tNN\t_\t9\tnmod:npmod\t_\t_\n12\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tIn\t_\tADP\tIN\t_\t5\tcase\t_\t_\n2\tthe\t_\tDET\tDT\t_\t5\tdet\t_\t_\n3\t1988\t_\tNUM\tCD\t_\t5\tnummod\t_\t_\n4\tthird\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tquarter\t_\tNOUN\tNN\t_\t8\tnmod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n7\tQuantum\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n8\tearned\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\t$\t_\tSYM\t$\t_\t8\tdobj\t_\t_\n10\t99.8\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\tmillion\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n13\tor\t_\tCONJ\tCC\t_\t9\tcc\t_\t_\n14\t$\t_\tSYM\t$\t_\t15\tdep\t_\t_\n15\t3.92\t_\tNUM\tCD\t_\t9\tconj\t_\t_\n16\ta\t_\tDET\tDT\t_\t17\tdet\t_\t_\n17\tshare\t_\tNOUN\tNN\t_\t15\tnmod:npmod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n19\ton\t_\tADP\tIN\t_\t20\tcase\t_\t_\n20\tsales\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t22\tcase\t_\t_\n22\t$\t_\tSYM\t$\t_\t20\tnmod\t_\t_\n23\t724.4\t_\tNUM\tCD\t_\t24\tcompound\t_\t_\n24\tmillion\t_\tNUM\tCD\t_\t22\tnummod\t_\t_\n25\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tAnother\t_\tDET\tDT\t_\t4\tdet\t_\t_\n2\tbig\t_\tADJ\tJJ\t_\t4\tamod\t_\t_\n3\tpolyethylene\t_\tNOUN\tNN\t_\t4\tcompound\t_\t_\n4\tproducer\t_\tNOUN\tNN\t_\t11\tnsubjpass\t_\t_\n5\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n6\tUnion\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tCarbide\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tCorp.\t_\tPROPN\tNNP\t_\t4\tappos\t_\t_\n9\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n10\tis\t_\tAUX\tVBZ\t_\t11\tauxpass\t_\t_\n11\texpected\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tpost\t_\tVERB\tVB\t_\t11\txcomp\t_\t_\n14\tprofit\t_\tNOUN\tNN\t_\t13\tdobj\t_\t_\n15\tof\t_\tADP\tIN\t_\t18\tcase\t_\t_\n16\tbetween\t_\tADP\tIN\t_\t18\tcase\t_\t_\n17\t$\t_\tSYM\t$\t_\t18\tdep\t_\t_\n18\t1\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n19\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n20\tshare\t_\tNOUN\tNN\t_\t18\tnmod:npmod\t_\t_\n21\tand\t_\tCONJ\tCC\t_\t18\tcc\t_\t_\n22\t$\t_\tSYM\t$\t_\t23\tdep\t_\t_\n23\t1.25\t_\tNUM\tCD\t_\t18\tconj\t_\t_\n24\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n25\tcompared\t_\tVERB\tVBN\t_\t28\tcase\t_\t_\n26\twith\t_\tADP\tIN\t_\t28\tcase\t_\t_\n27\t$\t_\tSYM\t$\t_\t28\tdep\t_\t_\n28\t1.56\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n29\ta\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tshare\t_\tNOUN\tNN\t_\t28\tnmod:npmod\t_\t_\n31\ta\t_\tDET\tDT\t_\t32\tdet\t_\t_\n32\tyear\t_\tNOUN\tNN\t_\t33\tnmod:npmod\t_\t_\n33\tearlier\t_\tADV\tRBR\t_\t28\tadvmod\t_\t_\n34\t,\t_\tPUNCT\t,\t_\t33\tpunct\t_\t_\n35\twhen\t_\tADV\tWRB\t_\t38\tadvmod\t_\t_\n36\tthe\t_\tDET\tDT\t_\t37\tdet\t_\t_\n37\tcompany\t_\tNOUN\tNN\t_\t38\tnsubj\t_\t_\n38\tearned\t_\tVERB\tVBD\t_\t33\tadvcl\t_\t_\n39\t$\t_\tSYM\t$\t_\t38\tdobj\t_\t_\n40\t213\t_\tNUM\tCD\t_\t41\tcompound\t_\t_\n41\tmillion\t_\tNUM\tCD\t_\t39\tnummod\t_\t_\n42\ton\t_\tADP\tIN\t_\t43\tcase\t_\t_\n43\tsales\t_\tNOUN\tNNS\t_\t38\tnmod\t_\t_\n44\tof\t_\tADP\tIN\t_\t45\tcase\t_\t_\n45\t$\t_\tSYM\t$\t_\t43\tnmod\t_\t_\n46\t2.11\t_\tNUM\tCD\t_\t47\tcompound\t_\t_\n47\tbillion\t_\tNUM\tCD\t_\t45\tnummod\t_\t_\n48\t.\t_\tPUNCT\t.\t_\t11\tpunct\t_\t_\n\n1\tHimont\t_\tPROPN\tNNP\t_\t8\tnsubj\t_\t_\n2\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n3\tQuantum\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n4\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n5\tUnion\t_\tPROPN\tNNP\t_\t6\tcompound\t_\t_\n6\tCarbide\t_\tPROPN\tNNP\t_\t1\tconj\t_\t_\n7\tall\t_\tDET\tDT\t_\t8\tdep\t_\t_\n8\tdeclined\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tcomment\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tfollowing\t_\tADJ\tJJ\t_\t7\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n4\tamong\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tFriday\t_\tPROPN\tNNP\t_\t7\tnmod:poss\t_\t_\n6\t's\t_\tPART\tPOS\t_\t5\tcase\t_\t_\n7\tofferings\t_\tNOUN\tNNS\t_\t0\troot\t_\t_\n8\tand\t_\tCONJ\tCC\t_\t7\tcc\t_\t_\n9\tpricings\t_\tNOUN\tNNS\t_\t7\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t16\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t16\tdet\t_\t_\n12\tU.S.\t_\tPROPN\tNNP\t_\t16\tcompound\t_\t_\n13\tand\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tnon-U.S.\t_\tADJ\tJJ\t_\t12\tconj\t_\t_\n15\tcapital\t_\tNOUN\tNN\t_\t16\tcompound\t_\t_\n16\tmarkets\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n18\twith\t_\tADP\tIN\t_\t19\tcase\t_\t_\n19\tterms\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n20\tand\t_\tCONJ\tCC\t_\t19\tcc\t_\t_\n21\tsyndicate\t_\tNOUN\tNN\t_\t22\tcompound\t_\t_\n22\tmanager\t_\tNOUN\tNN\t_\t19\tconj\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t7\tpunct\t_\t_\n24\tas\t_\tSCONJ\tIN\t_\t25\tmark\t_\t_\n25\tcompiled\t_\tVERB\tVBN\t_\t7\tadvcl\t_\t_\n26\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n27\tDow\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n28\tJones\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tCapital\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tMarkets\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tReport\t_\tPROPN\tNNP\t_\t25\tnmod\t_\t_\n32\t:\t_\tPUNCT\t:\t_\t7\tpunct\t_\t_\n\n1\tDow\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tChemical\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCo.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t150\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t8\tcase\t_\t_\n5\t8.55\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t8\tamod\t_\t_\n7\tsenior\t_\tADJ\tJJ\t_\t8\tamod\t_\t_\n8\tnotes\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n9\tdue\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n10\tOct.\t_\tPROPN\tNNP\t_\t9\tnmod:tmod\t_\t_\n11\t15\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n12\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n13\t2009\t_\tNUM\tCD\t_\t10\tnummod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n15\tpriced\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n16\tat\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tpar\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n18\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tissue\t_\tNOUN\tNN\t_\t20\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t6\tnsubj\t_\t_\n5\tis\t_\tVERB\tVBZ\t_\t6\tcop\t_\t_\n6\tputtable\t_\tADJ\tJJ\t_\t2\tacl:relcl\t_\t_\n7\tback\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tto\t_\tADP\tTO\t_\t10\tcase\t_\t_\n9\tthe\t_\tDET\tDT\t_\t10\tdet\t_\t_\n10\tcompany\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n11\tat\t_\tADP\tIN\t_\t12\tcase\t_\t_\n12\tpar\t_\tNOUN\tNN\t_\t6\tnmod\t_\t_\n13\ton\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\tOct.\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t15\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n17\t1999\t_\tNUM\tCD\t_\t14\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n19\twas\t_\tAUX\tVBD\t_\t20\tauxpass\t_\t_\n20\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n21\tat\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\ta\t_\tDET\tDT\t_\t23\tdet\t_\t_\n23\tspread\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n24\tof\t_\tADP\tIN\t_\t27\tcase\t_\t_\n25\t50\t_\tNUM\tCD\t_\t27\tnummod\t_\t_\n26\tbasis\t_\tNOUN\tNN\t_\t27\tcompound\t_\t_\n27\tpoints\t_\tNOUN\tNNS\t_\t23\tacl\t_\t_\n28\tabove\t_\tADP\tIN\t_\t27\tcase\t_\t_\n29\tthe\t_\tDET\tDT\t_\t30\tdet\t_\t_\n30\tTreasury\t_\tPROPN\tNNP\t_\t33\tnmod:poss\t_\t_\n31\t's\t_\tPART\tPOS\t_\t30\tcase\t_\t_\n32\t10-year\t_\tADJ\tJJ\t_\t33\tamod\t_\t_\n33\tnote\t_\tNOUN\tNN\t_\t27\tdep\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t20\tpunct\t_\t_\n\n1\tRated\t_\tVERB\tVBN\t_\t23\tadvcl\t_\t_\n2\tsingle-A-1\t_\tADJ\tJJ\t_\t1\txcomp\t_\t_\n3\tby\t_\tADP\tIN\t_\t8\tcase\t_\t_\n4\tMoody\t_\tPROPN\tNNP\t_\t8\tnmod:poss\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tInvestors\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n7\tService\t_\tPROPN\tNNP\t_\t8\tcompound\t_\t_\n8\tInc.\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n9\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n10\tsingle-A\t_\tADJ\tJJ\t_\t1\tconj\t_\t_\n11\tby\t_\tADP\tIN\t_\t16\tcase\t_\t_\n12\tStandard\t_\tPROPN\tNNP\t_\t16\tnmod:poss\t_\t_\n13\t&\t_\tCONJ\tCC\t_\t12\tcc\t_\t_\n14\tPoor\t_\tPROPN\tNNP\t_\t12\tconj\t_\t_\n15\t's\t_\tPART\tPOS\t_\t12\tcase\t_\t_\n16\tCorp.\t_\tPROPN\tNNP\t_\t10\tnmod\t_\t_\n17\t,\t_\tPUNCT\t,\t_\t23\tpunct\t_\t_\n18\tthe\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\tnon-callable\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tissue\t_\tNOUN\tNN\t_\t23\tnsubjpass\t_\t_\n21\twill\t_\tAUX\tMD\t_\t23\taux\t_\t_\n22\tbe\t_\tAUX\tVB\t_\t23\tauxpass\t_\t_\n23\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n24\tthrough\t_\tADP\tIN\t_\t25\tcase\t_\t_\n25\tunderwriters\t_\tNOUN\tNNS\t_\t23\tnmod\t_\t_\n26\tled\t_\tVERB\tVBN\t_\t25\tacl\t_\t_\n27\tby\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tMerrill\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n29\tLynch\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n30\tCapital\t_\tPROPN\tNNP\t_\t31\tcompound\t_\t_\n31\tMarkets\t_\tPROPN\tNNP\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t23\tpunct\t_\t_\n\n1\tCentel\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n2\tCapital\t_\tPROPN\tNNP\t_\t3\tcompound\t_\t_\n3\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n4\t--\t_\tPUNCT\t:\t_\t3\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t150\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\t9\t_\tNUM\tCD\t_\t6\tcompound\t_\t_\n6\t%\t_\tSYM\tNN\t_\t7\tamod\t_\t_\n7\tdebentures\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\tdue\t_\tADJ\tJJ\t_\t1\tamod\t_\t_\n9\tOct.\t_\tPROPN\tNNP\t_\t8\tnmod:tmod\t_\t_\n10\t15\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n11\t,\t_\tPUNCT\t,\t_\t9\tpunct\t_\t_\n12\t2019\t_\tNUM\tCD\t_\t9\tnummod\t_\t_\n13\t,\t_\tPUNCT\t,\t_\t1\tpunct\t_\t_\n14\tpriced\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n15\tat\t_\tADP\tIN\t_\t16\tcase\t_\t_\n16\t99.943\t_\tNUM\tCD\t_\t14\tnmod\t_\t_\n17\tto\t_\tPART\tTO\t_\t18\tmark\t_\t_\n18\tyield\t_\tVERB\tVB\t_\t14\txcomp\t_\t_\n19\t9.008\t_\tNUM\tCD\t_\t20\tnummod\t_\t_\n20\t%\t_\tSYM\tNN\t_\t18\tdobj\t_\t_\n21\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tnon-callable\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tissue\t_\tNOUN\tNN\t_\t17\tnsubjpass\t_\t_\n4\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n5\twhich\t_\tPRON\tWDT\t_\t8\tnsubjpass\t_\t_\n6\tcan\t_\tAUX\tMD\t_\t8\taux\t_\t_\n7\tbe\t_\tAUX\tVB\t_\t8\tauxpass\t_\t_\n8\tput\t_\tVERB\tVBN\t_\t3\tacl:relcl\t_\t_\n9\tback\t_\tADV\tRB\t_\t8\tadvmod\t_\t_\n10\tto\t_\tADP\tTO\t_\t12\tcase\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tcompany\t_\tNOUN\tNN\t_\t9\tnmod\t_\t_\n13\tin\t_\tADP\tIN\t_\t14\tcase\t_\t_\n14\t1999\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n16\twas\t_\tAUX\tVBD\t_\t17\tauxpass\t_\t_\n17\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n18\tat\t_\tADP\tIN\t_\t21\tcase\t_\t_\n19\t99\t_\tNUM\tCD\t_\t21\tnummod\t_\t_\n20\tbasis\t_\tNOUN\tNN\t_\t21\tcompound\t_\t_\n21\tpoints\t_\tNOUN\tNNS\t_\t17\tnmod\t_\t_\n22\tabove\t_\tADP\tIN\t_\t21\tcase\t_\t_\n23\tthe\t_\tDET\tDT\t_\t24\tdet\t_\t_\n24\tTreasury\t_\tPROPN\tNNP\t_\t27\tnmod:poss\t_\t_\n25\t's\t_\tPART\tPOS\t_\t24\tcase\t_\t_\n26\t10-year\t_\tADJ\tJJ\t_\t27\tamod\t_\t_\n27\tnote\t_\tNOUN\tNN\t_\t21\tdep\t_\t_\n28\t.\t_\tPUNCT\t.\t_\t17\tpunct\t_\t_\n\n1\tRated\t_\tVERB\tVBN\t_\t15\tadvcl\t_\t_\n2\tBaa-1\t_\tADJ\tJJ\t_\t1\txcomp\t_\t_\n3\tby\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\tMoody\t_\tPROPN\tNNP\t_\t1\tnmod\t_\t_\n5\t's\t_\tPART\tPOS\t_\t4\tcase\t_\t_\n6\tand\t_\tCONJ\tCC\t_\t1\tcc\t_\t_\n7\ttriple-B-plus\t_\tADJ\tJJ\t_\t1\tconj\t_\t_\n8\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n9\tS&P\t_\tPROPN\tNNP\t_\t7\tnmod\t_\t_\n10\t,\t_\tPUNCT\t,\t_\t15\tpunct\t_\t_\n11\tthe\t_\tDET\tDT\t_\t12\tdet\t_\t_\n12\tissue\t_\tNOUN\tNN\t_\t15\tnsubjpass\t_\t_\n13\twill\t_\tAUX\tMD\t_\t15\taux\t_\t_\n14\tbe\t_\tAUX\tVB\t_\t15\tauxpass\t_\t_\n15\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n16\tthrough\t_\tADP\tIN\t_\t17\tcase\t_\t_\n17\tunderwriters\t_\tNOUN\tNNS\t_\t15\tnmod\t_\t_\n18\tled\t_\tVERB\tVBN\t_\t17\tacl\t_\t_\n19\tby\t_\tADP\tIN\t_\t21\tcase\t_\t_\n20\tMorgan\t_\tPROPN\tNNP\t_\t21\tcompound\t_\t_\n21\tStanley\t_\tPROPN\tNNP\t_\t18\tnmod\t_\t_\n22\t&\t_\tCONJ\tCC\t_\t21\tcc\t_\t_\n23\tCo\t_\tPROPN\tNNP\t_\t21\tconj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t15\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t500\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tRemic\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\toffered\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n9\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t13\t_\tNUM\tCD\t_\t11\tnummod\t_\t_\n11\tclasses\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n12\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n13\tPrudential-Bache\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n14\tSecurities\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n15\tInc\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffering\t_\tNOUN\tNN\t_\t28\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tSeries\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t102\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tbacked\t_\tVERB\tVBN\t_\t28\tdep\t_\t_\n8\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n9\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n10\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\t8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n12\t1/2\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tsecurities\t_\tNOUN\tNNS\t_\t7\tnmod\t_\t_\n15\twith\t_\tADP\tIN\t_\t20\tcase\t_\t_\n16\ta\t_\tDET\tDT\t_\t20\tdet\t_\t_\n17\tweighted\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n18\taverage\t_\tNOUN\tNN\t_\t20\tcompound\t_\t_\n19\tremaining\t_\tVERB\tVBG\t_\t20\tamod\t_\t_\n20\tterm\t_\tNOUN\tNN\t_\t7\tnmod\t_\t_\n21\tto\t_\tADP\tTO\t_\t22\tcase\t_\t_\n22\tmaturity\t_\tNOUN\tNN\t_\t20\tnmod\t_\t_\n23\tof\t_\tADP\tIN\t_\t25\tcase\t_\t_\n24\t28.4\t_\tNUM\tCD\t_\t25\tnummod\t_\t_\n25\tyears\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n26\t,\t_\tPUNCT\t,\t_\t28\tpunct\t_\t_\n27\twas\t_\tAUX\tVBD\t_\t28\tauxpass\t_\t_\n28\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n29\tbefore\t_\tADP\tIN\t_\t34\tcase\t_\t_\n30\tthe\t_\tDET\tDT\t_\t31\tdet\t_\t_\n31\tmarket\t_\tNOUN\tNN\t_\t34\tnmod:poss\t_\t_\n32\t's\t_\tPART\tPOS\t_\t31\tcase\t_\t_\n33\tafternoon\t_\tNOUN\tNN\t_\t34\tcompound\t_\t_\n34\tsurge\t_\tNOUN\tNN\t_\t28\tnmod\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t28\tpunct\t_\t_\n\n1\tAmong\t_\tADP\tIN\t_\t2\tcase\t_\t_\n2\tclasses\t_\tNOUN\tNNS\t_\t10\tnmod\t_\t_\n3\tfor\t_\tADP\tIN\t_\t4\tcase\t_\t_\n4\twhich\t_\tPRON\tWDT\t_\t7\tnmod\t_\t_\n5\tdetails\t_\tNOUN\tNNS\t_\t7\tnsubj\t_\t_\n6\twere\t_\tVERB\tVBD\t_\t7\tcop\t_\t_\n7\tavailable\t_\tADJ\tJJ\t_\t2\tacl:relcl\t_\t_\n8\t,\t_\tPUNCT\t,\t_\t10\tpunct\t_\t_\n9\tyields\t_\tNOUN\tNNS\t_\t10\tnsubj\t_\t_\n10\tranged\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n11\tfrom\t_\tADP\tIN\t_\t13\tcase\t_\t_\n12\t8.78\t_\tNUM\tCD\t_\t13\tnummod\t_\t_\n13\t%\t_\tSYM\tNN\t_\t10\tnmod\t_\t_\n14\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n15\tor\t_\tCONJ\tCC\t_\t13\tcc\t_\t_\n16\t75\t_\tNUM\tCD\t_\t18\tnummod\t_\t_\n17\tbasis\t_\tNOUN\tNN\t_\t18\tcompound\t_\t_\n18\tpoints\t_\tNOUN\tNNS\t_\t13\tconj\t_\t_\n19\tover\t_\tADP\tIN\t_\t18\tcase\t_\t_\n20\ttwo-year\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n21\tTreasury\t_\tPROPN\tNNP\t_\t22\tcompound\t_\t_\n22\tsecurities\t_\tNOUN\tNNS\t_\t18\tdep\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t13\tpunct\t_\t_\n24\tto\t_\tADP\tTO\t_\t26\tcase\t_\t_\n25\t10.05\t_\tNUM\tCD\t_\t26\tnummod\t_\t_\n26\t%\t_\tSYM\tNN\t_\t13\tnmod\t_\t_\n27\t,\t_\tPUNCT\t,\t_\t26\tpunct\t_\t_\n28\tor\t_\tCONJ\tCC\t_\t26\tcc\t_\t_\n29\t200\t_\tNUM\tCD\t_\t31\tnummod\t_\t_\n30\tbasis\t_\tNOUN\tNN\t_\t31\tcompound\t_\t_\n31\tpoints\t_\tNOUN\tNNS\t_\t26\tconj\t_\t_\n32\tover\t_\tADP\tIN\t_\t31\tcase\t_\t_\n33\t10-year\t_\tADJ\tJJ\t_\t34\tamod\t_\t_\n34\tTreasurys\t_\tPROPN\tNNPS\t_\t31\tdep\t_\t_\n35\t.\t_\tPUNCT\t.\t_\t10\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t300\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tRemic\t_\tPROPN\tNNP\t_\t7\tcompound\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\toffered\t_\tVERB\tVBN\t_\t1\tacl\t_\t_\n9\tby\t_\tADP\tIN\t_\t13\tcase\t_\t_\n10\tCiticorp\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n11\tSecurities\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n12\tMarkets\t_\tPROPN\tNNP\t_\t13\tcompound\t_\t_\n13\tInc\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n14\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\toffering\t_\tNOUN\tNN\t_\t8\tnsubjpass\t_\t_\n3\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n4\tSeries\t_\tPROPN\tNNP\t_\t2\tappos\t_\t_\n5\t101\t_\tNUM\tCD\t_\t4\tnummod\t_\t_\n6\t,\t_\tPUNCT\t,\t_\t2\tpunct\t_\t_\n7\tis\t_\tAUX\tVBZ\t_\t8\tauxpass\t_\t_\n8\tbacked\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t15\tcase\t_\t_\n10\tFreddie\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n11\tMac\t_\tPROPN\tNNP\t_\t15\tcompound\t_\t_\n12\t9\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n13\t1/2\t_\tNUM\tCD\t_\t14\tcompound\t_\t_\n14\t%\t_\tSYM\tNN\t_\t15\tamod\t_\t_\n15\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n16\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tPricing\t_\tNOUN\tNN\t_\t2\tcompound\t_\t_\n2\tdetails\t_\tNOUN\tNNS\t_\t6\tnsubj\t_\t_\n3\twere\t_\tVERB\tVBD\t_\t6\tcop\t_\t_\n4\tn't\t_\tPART\tRB\t_\t6\tneg\t_\t_\n5\timmediately\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n6\tavailable\t_\tADJ\tJJ\t_\t0\troot\t_\t_\n7\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tFederal\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n2\tHome\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n3\tLoan\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n4\tMortgage\t_\tPROPN\tNNP\t_\t5\tcompound\t_\t_\n5\tCorp.\t_\tPROPN\tNNP\t_\t0\troot\t_\t_\n6\t--\t_\tPUNCT\t:\t_\t5\tpunct\t_\t_\n\n1\t$\t_\tSYM\t$\t_\t0\troot\t_\t_\n2\t200\t_\tNUM\tCD\t_\t3\tcompound\t_\t_\n3\tmillion\t_\tNUM\tCD\t_\t1\tnummod\t_\t_\n4\tof\t_\tADP\tIN\t_\t7\tcase\t_\t_\n5\tstripped\t_\tADJ\tJJ\t_\t7\tamod\t_\t_\n6\tmortgage\t_\tNOUN\tNN\t_\t7\tcompound\t_\t_\n7\tsecurities\t_\tNOUN\tNNS\t_\t1\tnmod\t_\t_\n8\tunderwritten\t_\tVERB\tVBN\t_\t7\tacl\t_\t_\n9\tby\t_\tADP\tIN\t_\t12\tcase\t_\t_\n10\tBT\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n11\tSecurities\t_\tPROPN\tNNP\t_\t12\tcompound\t_\t_\n12\tCorp\t_\tPROPN\tNNP\t_\t8\tnmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t1\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tagency\t_\tNOUN\tNN\t_\t6\tnmod:poss\t_\t_\n3\t's\t_\tPART\tPOS\t_\t2\tcase\t_\t_\n4\tfirst\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n5\tstrips\t_\tNOUN\tNNS\t_\t6\tcompound\t_\t_\n6\tissue\t_\tNOUN\tNN\t_\t8\tnsubj\t_\t_\n7\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n8\tcollateralized\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n9\tby\t_\tADP\tIN\t_\t14\tcase\t_\t_\n10\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\t8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tsecurities\t_\tNOUN\tNNS\t_\t8\tnmod\t_\t_\n15\tpooled\t_\tVERB\tVBN\t_\t14\tacl\t_\t_\n16\tinto\t_\tADP\tIN\t_\t19\tcase\t_\t_\n17\ta\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tsingle\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsecurity\t_\tNOUN\tNN\t_\t15\tnmod\t_\t_\n20\tcalled\t_\tVERB\tVBN\t_\t19\tacl\t_\t_\n21\ta\t_\tDET\tDT\t_\t22\tdet\t_\t_\n22\tGiant\t_\tPROPN\tNNP\t_\t20\txcomp\t_\t_\n23\t,\t_\tPUNCT\t,\t_\t8\tpunct\t_\t_\n24\twill\t_\tAUX\tMD\t_\t26\taux\t_\t_\n25\tbe\t_\tAUX\tVB\t_\t26\tauxpass\t_\t_\n26\tdivided\t_\tVERB\tVBN\t_\t8\tdep\t_\t_\n27\tinto\t_\tADP\tIN\t_\t31\tcase\t_\t_\n28\tinterest-only\t_\tADJ\tJJ\t_\t31\tamod\t_\t_\n29\tand\t_\tCONJ\tCC\t_\t28\tcc\t_\t_\n30\tprincipal-only\t_\tADJ\tJJ\t_\t28\tconj\t_\t_\n31\tsecurities\t_\tNOUN\tNNS\t_\t26\tnmod\t_\t_\n32\t.\t_\tPUNCT\t.\t_\t8\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t2\tdet\t_\t_\n2\tcollateral\t_\tNOUN\tNN\t_\t5\tnsubjpass\t_\t_\n3\tis\t_\tAUX\tVBZ\t_\t5\taux\t_\t_\n4\tbeing\t_\tAUX\tVBG\t_\t5\tauxpass\t_\t_\n5\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n7\ta\t_\tDET\tDT\t_\t9\tdet\t_\t_\n8\tthrift\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tinstitution\t_\tNOUN\tNN\t_\t5\tnmod\t_\t_\n10\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprincipal-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\trepackaged\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tby\t_\tADP\tIN\t_\t9\tcase\t_\t_\n8\tBT\t_\tPROPN\tNNP\t_\t9\tcompound\t_\t_\n9\tSecurities\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n10\tinto\t_\tADP\tIN\t_\t14\tcase\t_\t_\n11\ta\t_\tDET\tDT\t_\t14\tdet\t_\t_\n12\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n13\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n14\tRemic\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n16\tSeries\t_\tPROPN\tNNP\t_\t14\tappos\t_\t_\n17\t103\t_\tNUM\tCD\t_\t16\tnummod\t_\t_\n18\t,\t_\tPUNCT\t,\t_\t14\tpunct\t_\t_\n19\tthat\t_\tPRON\tWDT\t_\t21\tnsubj\t_\t_\n20\twill\t_\tAUX\tMD\t_\t21\taux\t_\t_\n21\thave\t_\tVERB\tVB\t_\t14\tacl:relcl\t_\t_\n22\tsix\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tclasses\t_\tNOUN\tNNS\t_\t21\tdobj\t_\t_\n24\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinterest-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t6\tnsubjpass\t_\t_\n4\twill\t_\tAUX\tMD\t_\t6\taux\t_\t_\n5\tbe\t_\tAUX\tVB\t_\t6\tauxpass\t_\t_\n6\tsold\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n7\tseparately\t_\tADV\tRB\t_\t6\tadvmod\t_\t_\n8\tby\t_\tADP\tIN\t_\t10\tcase\t_\t_\n9\tBT\t_\tPROPN\tNNP\t_\t10\tcompound\t_\t_\n10\tSecurities\t_\tPROPN\tNNP\t_\t6\tnmod\t_\t_\n11\t.\t_\tPUNCT\t.\t_\t6\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tprincipal-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t4\tnsubj\t_\t_\n4\tpay\t_\tVERB\tVBP\t_\t0\troot\t_\t_\n5\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n6\tprincipal\t_\tNOUN\tNN\t_\t4\tdobj\t_\t_\n7\tfrom\t_\tADP\tIN\t_\t14\tcase\t_\t_\n8\tthe\t_\tDET\tDT\t_\t14\tdet\t_\t_\n9\tunderlying\t_\tADJ\tJJ\t_\t14\tamod\t_\t_\n10\tFreddie\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n11\tMac\t_\tPROPN\tNNP\t_\t14\tcompound\t_\t_\n12\t8\t_\tNUM\tCD\t_\t13\tcompound\t_\t_\n13\t%\t_\tSYM\tNN\t_\t14\tamod\t_\t_\n14\tsecurities\t_\tNOUN\tNNS\t_\t4\tnmod\t_\t_\n15\t,\t_\tPUNCT\t,\t_\t4\tpunct\t_\t_\n16\twhile\t_\tSCONJ\tIN\t_\t20\tmark\t_\t_\n17\tthe\t_\tDET\tDT\t_\t19\tdet\t_\t_\n18\tinterest-only\t_\tADJ\tJJ\t_\t19\tamod\t_\t_\n19\tsecurities\t_\tNOUN\tNNS\t_\t20\tnsubj\t_\t_\n20\tpay\t_\tVERB\tVBP\t_\t4\tadvcl\t_\t_\n21\tonly\t_\tADJ\tJJ\t_\t22\tamod\t_\t_\n22\tinterest\t_\tNOUN\tNN\t_\t20\tdobj\t_\t_\n23\t.\t_\tPUNCT\t.\t_\t4\tpunct\t_\t_\n\n1\tFreddie\t_\tPROPN\tNNP\t_\t2\tcompound\t_\t_\n2\tMac\t_\tPROPN\tNNP\t_\t3\tnsubj\t_\t_\n3\tsaid\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n4\tthe\t_\tDET\tDT\t_\t6\tdet\t_\t_\n5\tprincipal-only\t_\tADJ\tJJ\t_\t6\tamod\t_\t_\n6\tsecurities\t_\tNOUN\tNNS\t_\t8\tnsubjpass\t_\t_\n7\twere\t_\tAUX\tVBD\t_\t8\tauxpass\t_\t_\n8\tpriced\t_\tVERB\tVBN\t_\t3\tccomp\t_\t_\n9\tat\t_\tADP\tIN\t_\t11\tcase\t_\t_\n10\t58\t_\tNUM\tCD\t_\t11\tcompound\t_\t_\n11\t1/4\t_\tNUM\tCD\t_\t8\tnmod\t_\t_\n12\tto\t_\tPART\tTO\t_\t13\tmark\t_\t_\n13\tyield\t_\tVERB\tVB\t_\t8\txcomp\t_\t_\n14\t8.45\t_\tNUM\tCD\t_\t15\tnummod\t_\t_\n15\t%\t_\tSYM\tNN\t_\t13\tdobj\t_\t_\n16\t,\t_\tPUNCT\t,\t_\t3\tpunct\t_\t_\n17\tassuming\t_\tVERB\tVBG\t_\t20\tcase\t_\t_\n18\tan\t_\tDET\tDT\t_\t20\tdet\t_\t_\n19\taverage\t_\tADJ\tJJ\t_\t20\tamod\t_\t_\n20\tlife\t_\tNOUN\tNN\t_\t3\tnmod\t_\t_\n21\tof\t_\tADP\tIN\t_\t23\tcase\t_\t_\n22\teight\t_\tNUM\tCD\t_\t23\tnummod\t_\t_\n23\tyears\t_\tNOUN\tNNS\t_\t20\tnmod\t_\t_\n24\tand\t_\tCONJ\tCC\t_\t20\tcc\t_\t_\n25\ta\t_\tDET\tDT\t_\t26\tdet\t_\t_\n26\tprepayment\t_\tNOUN\tNN\t_\t20\tconj\t_\t_\n27\tof\t_\tADP\tIN\t_\t29\tcase\t_\t_\n28\t160\t_\tNUM\tCD\t_\t29\tnummod\t_\t_\n29\t%\t_\tSYM\tNN\t_\t26\tnmod\t_\t_\n30\tof\t_\tADP\tIN\t_\t33\tcase\t_\t_\n31\tthe\t_\tDET\tDT\t_\t33\tdet\t_\t_\n32\tPSA\t_\tPROPN\tNNP\t_\t33\tcompound\t_\t_\n33\tmodel\t_\tNOUN\tNN\t_\t29\tnmod\t_\t_\n34\t.\t_\tPUNCT\t.\t_\t3\tpunct\t_\t_\n\n1\tThe\t_\tDET\tDT\t_\t3\tdet\t_\t_\n2\tinterest-only\t_\tADJ\tJJ\t_\t3\tamod\t_\t_\n3\tsecurities\t_\tNOUN\tNNS\t_\t5\tnsubjpass\t_\t_\n4\twere\t_\tAUX\tVBD\t_\t5\tauxpass\t_\t_\n5\tpriced\t_\tVERB\tVBN\t_\t0\troot\t_\t_\n6\tat\t_\tADP\tIN\t_\t8\tcase\t_\t_\n7\t35\t_\tNUM\tCD\t_\t8\tcompound\t_\t_\n8\t1/2\t_\tNUM\tCD\t_\t5\tnmod\t_\t_\n9\tto\t_\tPART\tTO\t_\t10\tmark\t_\t_\n10\tyield\t_\tVERB\tVB\t_\t5\txcomp\t_\t_\n11\t10.72\t_\tNUM\tCD\t_\t12\tnummod\t_\t_\n12\t%\t_\tSYM\tNN\t_\t10\tdobj\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t5\tpunct\t_\t_\n\n1\tThere\t_\tPRON\tEX\t_\t2\texpl\t_\t_\n2\twere\t_\tVERB\tVBD\t_\t0\troot\t_\t_\n3\tno\t_\tDET\tDT\t_\t5\tneg\t_\t_\n4\tmajor\t_\tADJ\tJJ\t_\t5\tamod\t_\t_\n5\tEurobond\t_\tPROPN\tNNP\t_\t2\tnsubj\t_\t_\n6\tor\t_\tCONJ\tCC\t_\t5\tcc\t_\t_\n7\tforeign\t_\tADJ\tJJ\t_\t9\tamod\t_\t_\n8\tbond\t_\tNOUN\tNN\t_\t9\tcompound\t_\t_\n9\tofferings\t_\tNOUN\tNNS\t_\t5\tconj\t_\t_\n10\tin\t_\tADP\tIN\t_\t11\tcase\t_\t_\n11\tEurope\t_\tPROPN\tNNP\t_\t2\tnmod\t_\t_\n12\tFriday\t_\tPROPN\tNNP\t_\t2\tnmod:tmod\t_\t_\n13\t.\t_\tPUNCT\t.\t_\t2\tpunct\t_\t_\n\n"
  },
  {
    "path": "a3/local_env.yml",
    "content": "name: cs224n_a3\nchannels:\n  - pytorch\n  - defaults\ndependencies:\n  - python=3.7\n  - numpy\n  - tqdm\n  - docopt\n  - pytorch\n  - torchvision\n"
  },
  {
    "path": "a3/parser_model.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCS224N 2020-2021: Homework 3\nparser_model.py: Feed-Forward Neural Network for Dependency Parsing\nSahil Chopra <schopra8@stanford.edu>\nHaoshen Hong <haoshen@stanford.edu>\n\"\"\"\nimport argparse\nimport numpy as np\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nclass ParserModel(nn.Module):\n    \"\"\" Feedforward neural network with an embedding layer and two hidden layers.\n    The ParserModel will predict which transition should be applied to a\n    given partial parse configuration.\n\n    PyTorch Notes:\n        - Note that \"ParserModel\" is a subclass of the \"nn.Module\" class. In PyTorch all neural networks\n            are a subclass of this \"nn.Module\".\n        - The \"__init__\" method is where you define all the layers and parameters\n            (embedding layers, linear layers, dropout layers, etc.).\n        - \"__init__\" gets automatically called when you create a new instance of your class, e.g.\n            when you write \"m = ParserModel()\".\n        - Other methods of ParserModel can access variables that have \"self.\" prefix. Thus,\n            you should add the \"self.\" prefix layers, values, etc. that you want to utilize\n            in other ParserModel methods.\n        - For further documentation on \"nn.Module\" please see https://pytorch.org/docs/stable/nn.html.\n    \"\"\"\n    def __init__(self, embeddings, n_features=36,\n        hidden_size=200, n_classes=3, dropout_prob=0.5):\n        \"\"\" Initialize the parser model.\n\n        @param embeddings (ndarray): word embeddings (num_words, embedding_size)\n        @param n_features (int): number of input features\n        @param hidden_size (int): number of hidden units\n        @param n_classes (int): number of output classes\n        @param dropout_prob (float): dropout probability\n        \"\"\"\n        super(ParserModel, self).__init__()\n        self.n_features = n_features\n        self.n_classes = n_classes\n        self.dropout_prob = dropout_prob\n        self.embed_size = embeddings.shape[1]\n        self.hidden_size = hidden_size\n        self.embeddings = nn.Parameter(torch.tensor(embeddings))\n\n        ### YOUR CODE HERE (~9-10 Lines)\n        ### TODO:\n        ###     1) Declare `self.embed_to_hidden_weight` and `self.embed_to_hidden_bias` as `nn.Parameter`.\n        ###        Initialize weight with the `nn.init.xavier_uniform_` function and bias with `nn.init.uniform_`\n        ###        with default parameters.\n        ###     2) Construct `self.dropout` layer.\n        ###     3) Declare `self.hidden_to_logits_weight` and `self.hidden_to_logits_bias` as `nn.Parameter`.\n        ###        Initialize weight with the `nn.init.xavier_uniform_` function and bias with `nn.init.uniform_`\n        ###        with default parameters.\n        ###\n        ### Note: Trainable variables are declared as `nn.Parameter` which is a commonly used API\n        ###       to include a tensor into a computational graph to support updating w.r.t its gradient.\n        ###       Here, we use Xavier Uniform Initialization for our Weight initialization.\n        ###       It has been shown empirically, that this provides better initial weights\n        ###       for training networks than random uniform initialization.\n        ###       For more details checkout this great blogpost:\n        ###             http://andyljones.tumblr.com/post/110998971763/an-explanation-of-xavier-initialization\n        ###\n        ### Please see the following docs for support:\n        ###     nn.Parameter: https://pytorch.org/docs/stable/nn.html#parameters\n        ###     Initialization: https://pytorch.org/docs/stable/nn.init.html\n        ###     Dropout: https://pytorch.org/docs/stable/nn.html#dropout-layers\n        ### \n        ### See the PDF for hints.\n\n        self.embed_to_hidden_weight = nn.Parameter(nn.init.xavier_uniform_(torch.empty(self.n_features*self.embed_size, self.hidden_size)))\n        self.embed_to_hidden_bias = nn.Parameter(nn.init.uniform_(torch.empty(self.hidden_size)))\n        self.dropout = nn.Dropout(p=self.dropout_prob)\n        self.hidden_to_logits_weight = nn.Parameter(nn.init.xavier_uniform_(torch.empty(self.hidden_size, self.n_classes)))\n        self.hidden_to_logits_bias = nn.Parameter(nn.init.uniform_(torch.empty(self.n_classes)))\n\n        ### END YOUR CODE\n\n    def embedding_lookup(self, w):\n        \"\"\" Utilize `w` to select embeddings from embedding matrix `self.embeddings`\n            @param w (Tensor): input tensor of word indices (batch_size, n_features)\n\n            @return x (Tensor): tensor of embeddings for words represented in w\n                                (batch_size, n_features * embed_size)\n        \"\"\"\n\n        ### YOUR CODE HERE (~1-4 Lines)\n        ### TODO:\n        ###     1) For each index `i` in `w`, select `i`th vector from self.embeddings\n        ###     2) Reshape the tensor using `view` function if necessary\n        ###\n        ### Note: All embedding vectors are stacked and stored as a matrix. The model receives\n        ###       a list of indices representing a sequence of words, then it calls this lookup\n        ###       function to map indices to sequence of embeddings.\n        ###\n        ###       This problem aims to test your understanding of embedding lookup,\n        ###       so DO NOT use any high level API like nn.Embedding\n        ###       (we are asking you to implement that!). Pay attention to tensor shapes\n        ###       and reshape if necessary. Make sure you know each tensor's shape before you run the code!\n        ###\n        ### Pytorch has some useful APIs for you, and you can use either one\n        ### in this problem (except nn.Embedding). These docs might be helpful:\n        ###     Index select: https://pytorch.org/docs/stable/torch.html#torch.index_select\n        ###     Gather: https://pytorch.org/docs/stable/torch.html#torch.gather\n        ###     View: https://pytorch.org/docs/stable/tensors.html#torch.Tensor.view\n        ###     Flatten: https://pytorch.org/docs/stable/generated/torch.flatten.html\n\n        x = torch.Tensor([torch.index_select(self.embeddings, 0, w[b]).view(-1).detach().numpy() for b in range(w.shape[0])])\n        #x = torch.index_select(self.embeddings, 0, w.view(-1, )).view(w.size(0), self.n_features * self.embed_size)        \n        \n        assert x.shape == (w.shape[0], self.n_features*self.embed_size)\n\n        ### END YOUR CODE\n        return x\n\n\n    def forward(self, w):\n        \"\"\" Run the model forward.\n\n            Note that we will not apply the softmax function here because it is included in the loss function nn.CrossEntropyLoss\n\n            PyTorch Notes:\n                - Every nn.Module object (PyTorch model) has a `forward` function.\n                - When you apply your nn.Module to an input tensor `w` this function is applied to the tensor.\n                    For example, if you created an instance of your ParserModel and applied it to some `w` as follows,\n                    the `forward` function would called on `w` and the result would be stored in the `output` variable:\n                        model = ParserModel()\n                        output = model(w) # this calls the forward function\n                - For more details checkout: https://pytorch.org/docs/stable/nn.html#torch.nn.Module.forward\n\n        @param w (Tensor): input tensor of tokens (batch_size, n_features)\n\n        @return logits (Tensor): tensor of predictions (output after applying the layers of the network)\n                                 without applying softmax (batch_size, n_classes)\n        \"\"\"\n        ### YOUR CODE HERE (~3-5 lines)\n        ### TODO:\n        ###     Complete the forward computation as described in write-up. In addition, include a dropout layer\n        ###     as decleared in `__init__` after ReLU function.\n        ###\n        ### Note: We do not apply the softmax to the logits here, because\n        ### the loss function (torch.nn.CrossEntropyLoss) applies it more efficiently.\n        ###\n        ### Please see the following docs for support:\n        ###     Matrix product: https://pytorch.org/docs/stable/torch.html#torch.matmul\n        ###     ReLU: https://pytorch.org/docs/stable/nn.html?highlight=relu#torch.nn.functional.relu\n\n        embeddings = self.embedding_lookup(w)\n        hidden_activations = torch.nn.functional.relu(embeddings @ self.embed_to_hidden_weight + self.embed_to_hidden_bias)\n        hidden_activations_droppedout = self.dropout(hidden_activations)\n        logits = hidden_activations_droppedout @ self.hidden_to_logits_weight + self.hidden_to_logits_bias\n\n        ### END YOUR CODE\n        return logits\n\n\nif __name__ == \"__main__\":\n\n    parser = argparse.ArgumentParser(description='Simple sanity check for parser_model.py')\n    parser.add_argument('-e', '--embedding', action='store_true', help='sanity check for embeding_lookup function')\n    parser.add_argument('-f', '--forward', action='store_true', help='sanity check for forward function')\n    args = parser.parse_args()\n\n    embeddings = np.zeros((100, 30), dtype=np.float32)\n    model = ParserModel(embeddings)\n\n    def check_embedding():\n        inds = torch.randint(0, 100, (4, 36), dtype=torch.long)\n        selected = model.embedding_lookup(inds)\n        assert np.all(selected.data.numpy() == 0), \"The result of embedding lookup: \" \\\n                                      + repr(selected) + \" contains non-zero elements.\"\n\n    def check_forward():\n        inputs =torch.randint(0, 100, (4, 36), dtype=torch.long)\n        out = model(inputs)\n        expected_out_shape = (4, 3)\n        assert out.shape == expected_out_shape, \"The result shape of forward is: \" + repr(out.shape) + \\\n                                                \" which doesn't match expected \" + repr(expected_out_shape)\n\n    if args.embedding:\n        check_embedding()\n        print(\"Embedding_lookup sanity check passes!\")\n\n    if args.forward:\n        check_forward()\n        print(\"Forward sanity check passes!\")"
  },
  {
    "path": "a3/parser_transitions.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCS224N 2020-2021: Homework 3\nparser_transitions.py: Algorithms for completing partial parsess.\nSahil Chopra <schopra8@stanford.edu>\nHaoshen Hong <haoshen@stanford.edu>\n\"\"\"\n\nimport sys\n\nclass PartialParse(object):\n    def __init__(self, sentence):\n        \"\"\"Initializes this partial parse.\n\n        @param sentence (list of str): The sentence to be parsed as a list of words.\n                                        Your code should not modify the sentence.\n        \"\"\"\n        # The sentence being parsed is kept for bookkeeping purposes. Do NOT alter it in your code.\n        self.sentence = sentence\n\n        ### YOUR CODE HERE (3 Lines)\n        ### Your code should initialize the following fields:\n        ###     self.stack: The current stack represented as a list with the top of the stack as the\n        ###                 last element of the list.\n        ###     self.buffer: The current buffer represented as a list with the first item on the\n        ###                  buffer as the first item of the list\n        ###     self.dependencies: The list of dependencies produced so far. Represented as a list of\n        ###             tuples where each tuple is of the form (head, dependent).\n        ###             Order for this list doesn't matter.\n        ###\n        ### Note: The root token should be represented with the string \"ROOT\"\n        ### Note: If you need to use the sentence object to initialize anything, make sure to not directly \n        ###       reference the sentence object.  That is, remember to NOT modify the sentence object. \n\n        self.stack = ['ROOT']\n        self.buffer = sentence[:] # or self.sentence.copy() \n        self.dependencies = []\n\n        ### END YOUR CODE\n\n\n    def parse_step(self, transition):\n        \"\"\"Performs a single parse step by applying the given transition to this partial parse\n\n        @param transition (str): A string that equals \"S\", \"LA\", or \"RA\" representing the shift,\n                                left-arc, and right-arc transitions. You can assume the provided\n                                transition is a legal transition.\n        \"\"\"\n        ### YOUR CODE HERE (~7-12 Lines)\n        ### TODO:\n        ###     Implement a single parsing step, i.e. the logic for the following as\n        ###     described in the pdf handout:\n        ###         1. Shift\n        ###         2. Left Arc\n        ###         3. Right Arc\n\n        if transition == 'S':\n            buffer_head = self.buffer.pop(0)\n            self.stack.append(buffer_head)\n        elif transition == 'LA':\n            dependent = self.stack.pop(-2)\n            self.dependencies.append((self.stack[-1], dependent))\n        elif transition == 'RA':\n            dependent = self.stack.pop()\n            self.dependencies.append((self.stack[-1], dependent))\n        else:\n            print(f\"Unknown transition: {transition}\")\n\n        ### END YOUR CODE\n\n    def parse(self, transitions):\n        \"\"\"Applies the provided transitions to this PartialParse\n\n        @param transitions (list of str): The list of transitions in the order they should be applied\n\n        @return dependencies (list of string tuples): The list of dependencies produced when\n                                                        parsing the sentence. Represented as a list of\n                                                        tuples where each tuple is of the form (head, dependent).\n        \"\"\"\n        for transition in transitions:\n            self.parse_step(transition)\n        return self.dependencies\n\n\ndef minibatch_parse(sentences, model, batch_size):\n    \"\"\"Parses a list of sentences in minibatches using a model.\n\n    @param sentences (list of list of str): A list of sentences to be parsed\n                                            (each sentence is a list of words and each word is of type string)\n    @param model (ParserModel): The model that makes parsing decisions. It is assumed to have a function\n                                model.predict(partial_parses) that takes in a list of PartialParses as input and\n                                returns a list of transitions predicted for each parse. That is, after calling\n                                    transitions = model.predict(partial_parses)\n                                transitions[i] will be the next transition to apply to partial_parses[i].\n    @param batch_size (int): The number of PartialParses to include in each minibatch\n\n\n    @return dependencies (list of dependency lists): A list where each element is the dependencies\n                                                    list for a parsed sentence. Ordering should be the\n                                                    same as in sentences (i.e., dependencies[i] should\n                                                    contain the parse for sentences[i]).\n    \"\"\"\n    dependencies = []\n\n    ### YOUR CODE HERE (~8-10 Lines)\n    ### TODO:\n    ###     Implement the minibatch parse algorithm.  Note that the pseudocode for this algorithm is given in the pdf handout.\n    ###\n    ###     Note: A shallow copy (as denoted in the PDF) can be made with the \"=\" sign in python, e.g.\n    ###                 unfinished_parses = partial_parses[:].\n    ###             Here `unfinished_parses` is a shallow copy of `partial_parses`.\n    ###             In Python, a shallow copied list like `unfinished_parses` does not contain new instances\n    ###             of the object stored in `partial_parses`. Rather both lists refer to the same objects.\n    ###             In our case, `partial_parses` contains a list of partial parses. `unfinished_parses`\n    ###             contains references to the same objects. Thus, you should NOT use the `del` operator\n    ###             to remove objects from the `unfinished_parses` list. This will free the underlying memory that\n    ###             is being accessed by `partial_parses` and may cause your code to crash.\n\n    # Initialize a list of PartialParses, one for each sentence\n    partial_parses = [PartialParse(sentence) for sentence in sentences]\n    \n    # Shallow copy partial_parses.\n    unfinished_parses = partial_parses[:]\n    \n    # While unfinished_parses is not empty do\n    while unfinished_parses:\n        # Take first batch_size parses in unfinished_parses as minibatch\n        minibatch = unfinished_parses[:batch_size]\n        \n        # Use model to predict next transition for each partial parse in the minibatch\n        transitions = model.predict(minibatch)\n        \n        # Perform parse step for each partial_parse_minibatch with their predicted transition\n        for transition, partial_parse in zip(transitions, minibatch):\n            partial_parse.parse_step(transition)\n            \n            # Remove completed parses\n            if len(partial_parse.buffer) == 0 and len(partial_parse.stack) == 1:\n                unfinished_parses.remove(partial_parse)\n        \n    dependencies = [parse.dependencies for parse in partial_parses]\n\n    ### END YOUR CODE\n\n    return dependencies\n\n\ndef test_step(name, transition, stack, buf, deps,\n              ex_stack, ex_buf, ex_deps):\n    \"\"\"Tests that a single parse step returns the expected output\"\"\"\n    pp = PartialParse([])\n    pp.stack, pp.buffer, pp.dependencies = stack, buf, deps\n\n    pp.parse_step(transition)\n    stack, buf, deps = (tuple(pp.stack), tuple(pp.buffer), tuple(sorted(pp.dependencies)))\n    assert stack == ex_stack, \\\n        \"{:} test resulted in stack {:}, expected {:}\".format(name, stack, ex_stack)\n    assert buf == ex_buf, \\\n        \"{:} test resulted in buffer {:}, expected {:}\".format(name, buf, ex_buf)\n    assert deps == ex_deps, \\\n        \"{:} test resulted in dependency list {:}, expected {:}\".format(name, deps, ex_deps)\n    print(\"{:} test passed!\".format(name))\n\n\ndef test_parse_step():\n    \"\"\"Simple tests for the PartialParse.parse_step function\n    Warning: these are not exhaustive\n    \"\"\"\n    test_step(\"SHIFT\", \"S\", [\"ROOT\", \"the\"], [\"cat\", \"sat\"], [],\n              (\"ROOT\", \"the\", \"cat\"), (\"sat\",), ())\n    test_step(\"LEFT-ARC\", \"LA\", [\"ROOT\", \"the\", \"cat\"], [\"sat\"], [],\n              (\"ROOT\", \"cat\",), (\"sat\",), ((\"cat\", \"the\"),))\n    test_step(\"RIGHT-ARC\", \"RA\", [\"ROOT\", \"run\", \"fast\"], [], [],\n              (\"ROOT\", \"run\",), (), ((\"run\", \"fast\"),))\n\n\ndef test_parse():\n    \"\"\"Simple tests for the PartialParse.parse function\n    Warning: these are not exhaustive\n    \"\"\"\n    sentence = [\"parse\", \"this\", \"sentence\"]\n    dependencies = PartialParse(sentence).parse([\"S\", \"S\", \"S\", \"LA\", \"RA\", \"RA\"])\n    dependencies = tuple(sorted(dependencies))\n    expected = (('ROOT', 'parse'), ('parse', 'sentence'), ('sentence', 'this'))\n    assert dependencies == expected,  \\\n        \"parse test resulted in dependencies {:}, expected {:}\".format(dependencies, expected)\n    assert tuple(sentence) == (\"parse\", \"this\", \"sentence\"), \\\n        \"parse test failed: the input sentence should not be modified\"\n    print(\"parse test passed!\")\n\n\nclass DummyModel(object):\n    \"\"\"Dummy model for testing the minibatch_parse function\n    \"\"\"\n    def __init__(self, mode = \"unidirectional\"):\n        self.mode = mode\n\n    def predict(self, partial_parses):\n        if self.mode == \"unidirectional\":\n            return self.unidirectional_predict(partial_parses)\n        elif self.mode == \"interleave\":\n            return self.interleave_predict(partial_parses)\n        else:\n            raise NotImplementedError()\n\n    def unidirectional_predict(self, partial_parses):\n        \"\"\"First shifts everything onto the stack and then does exclusively right arcs if the first word of\n        the sentence is \"right\", \"left\" if otherwise.\n        \"\"\"\n        return [(\"RA\" if pp.stack[1] is \"right\" else \"LA\") if len(pp.buffer) == 0 else \"S\"\n                for pp in partial_parses]\n\n    def interleave_predict(self, partial_parses):\n        \"\"\"First shifts everything onto the stack and then interleaves \"right\" and \"left\".\n        \"\"\"\n        return [(\"RA\" if len(pp.stack) % 2 == 0 else \"LA\") if len(pp.buffer) == 0 else \"S\"\n                for pp in partial_parses]\n\ndef test_dependencies(name, deps, ex_deps):\n    \"\"\"Tests the provided dependencies match the expected dependencies\"\"\"\n    deps = tuple(sorted(deps))\n    assert deps == ex_deps, \\\n        \"{:} test resulted in dependency list {:}, expected {:}\".format(name, deps, ex_deps)\n\n\ndef test_minibatch_parse():\n    \"\"\"Simple tests for the minibatch_parse function\n    Warning: these are not exhaustive\n    \"\"\"\n\n    # Unidirectional arcs test\n    sentences = [[\"right\", \"arcs\", \"only\"],\n                 [\"right\", \"arcs\", \"only\", \"again\"],\n                 [\"left\", \"arcs\", \"only\"],\n                 [\"left\", \"arcs\", \"only\", \"again\"]]\n    deps = minibatch_parse(sentences, DummyModel(), 2)\n    test_dependencies(\"minibatch_parse\", deps[0],\n                      (('ROOT', 'right'), ('arcs', 'only'), ('right', 'arcs')))\n    test_dependencies(\"minibatch_parse\", deps[1],\n                      (('ROOT', 'right'), ('arcs', 'only'), ('only', 'again'), ('right', 'arcs')))\n    test_dependencies(\"minibatch_parse\", deps[2],\n                      (('only', 'ROOT'), ('only', 'arcs'), ('only', 'left')))\n    test_dependencies(\"minibatch_parse\", deps[3],\n                      (('again', 'ROOT'), ('again', 'arcs'), ('again', 'left'), ('again', 'only')))\n\n    # Out-of-bound test\n    sentences = [[\"right\"]]\n    deps = minibatch_parse(sentences, DummyModel(), 2)\n    test_dependencies(\"minibatch_parse\", deps[0], (('ROOT', 'right'),))\n\n    # Mixed arcs test\n    sentences = [[\"this\", \"is\", \"interleaving\", \"dependency\", \"test\"]]\n    deps = minibatch_parse(sentences, DummyModel(mode=\"interleave\"), 1)\n    test_dependencies(\"minibatch_parse\", deps[0],\n                      (('ROOT', 'is'), ('dependency', 'interleaving'),\n                      ('dependency', 'test'), ('is', 'dependency'), ('is', 'this')))\n    print(\"minibatch_parse test passed!\")\n\n\nif __name__ == '__main__':\n    args = sys.argv\n    if len(args) != 2:\n        raise Exception(\"You did not provide a valid keyword. Either provide 'part_c' or 'part_d', when executing this script\")\n    elif args[1] == \"part_c\":\n        test_parse_step()\n        test_parse()\n    elif args[1] == \"part_d\":\n        test_minibatch_parse()\n    else:\n        raise Exception(\"You did not provide a valid keyword. Either provide 'part_c' or 'part_d', when executing this script\")\n"
  },
  {
    "path": "a3/run.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCS224N 2020-2021: Homework 3\nrun.py: Run the dependency parser.\nSahil Chopra <schopra8@stanford.edu>\nHaoshen Hong <haoshen@stanford.edu>\n\"\"\"\nfrom datetime import datetime\nimport os\nimport pickle\nimport math\nimport time\nimport argparse\n\nfrom torch import nn, optim\nimport torch\nfrom tqdm import tqdm\n\nfrom parser_model import ParserModel\nfrom utils.parser_utils import minibatches, load_and_preprocess_data, AverageMeter\n\nparser = argparse.ArgumentParser(description='Train neural dependency parser in pytorch')\nparser.add_argument('-d', '--debug', action='store_true', help='whether to enter debug mode')\nargs = parser.parse_args()\n\n# -----------------\n# Primary Functions\n# -----------------\ndef train(parser, train_data, dev_data, output_path, batch_size=1024, n_epochs=10, lr=0.0005):\n    \"\"\" Train the neural dependency parser.\n\n    @param parser (Parser): Neural Dependency Parser\n    @param train_data ():\n    @param dev_data ():\n    @param output_path (str): Path to which model weights and results are written.\n    @param batch_size (int): Number of examples in a single batch\n    @param n_epochs (int): Number of training epochs\n    @param lr (float): Learning rate\n    \"\"\"\n    best_dev_UAS = 0\n\n\n    ### YOUR CODE HERE (~2-7 lines)\n    ### TODO:\n    ###      1) Construct Adam Optimizer in variable `optimizer`\n    ###      2) Construct the Cross Entropy Loss Function in variable `loss_func` with `mean`\n    ###         reduction (default)\n    ###\n    ### Hint: Use `parser.model.parameters()` to pass optimizer\n    ###       necessary parameters to tune.\n    ### Please see the following docs for support:\n    ###     Adam Optimizer: https://pytorch.org/docs/stable/optim.html\n    ###     Cross Entropy Loss: https://pytorch.org/docs/stable/nn.html#crossentropyloss\n\n    optimizer = optim.Adam(parser.model.parameters(), lr=lr)\n    loss_func = nn.CrossEntropyLoss(reduction = 'mean')\n\n    ### END YOUR CODE\n\n    for epoch in range(n_epochs):\n        print(\"Epoch {:} out of {:}\".format(epoch + 1, n_epochs))\n        dev_UAS = train_for_epoch(parser, train_data, dev_data, optimizer, loss_func, batch_size)\n        if dev_UAS > best_dev_UAS:\n            best_dev_UAS = dev_UAS\n            print(\"New best dev UAS! Saving model.\")\n            torch.save(parser.model.state_dict(), output_path)\n        print(\"\")\n\n\ndef train_for_epoch(parser, train_data, dev_data, optimizer, loss_func, batch_size):\n    \"\"\" Train the neural dependency parser for single epoch.\n\n    Note: In PyTorch we can signify train versus test and automatically have\n    the Dropout Layer applied and removed, accordingly, by specifying\n    whether we are training, `model.train()`, or evaluating, `model.eval()`\n\n    @param parser (Parser): Neural Dependency Parser\n    @param train_data ():\n    @param dev_data ():\n    @param optimizer (nn.Optimizer): Adam Optimizer\n    @param loss_func (nn.CrossEntropyLoss): Cross Entropy Loss Function\n    @param batch_size (int): batch size\n\n    @return dev_UAS (float): Unlabeled Attachment Score (UAS) for dev data\n    \"\"\"\n    parser.model.train() # Places model in \"train\" mode, i.e. apply dropout layer\n    n_minibatches = math.ceil(len(train_data) / batch_size)\n    loss_meter = AverageMeter()\n\n    with tqdm(total=(n_minibatches)) as prog:\n        for i, (train_x, train_y) in enumerate(minibatches(train_data, batch_size)):\n            optimizer.zero_grad()   # remove any baggage in the optimizer\n            loss = 0. # store loss for this batch here\n            train_x = torch.from_numpy(train_x).long()\n            train_y = torch.from_numpy(train_y.nonzero()[1]).long()\n\n            ### YOUR CODE HERE (~4-10 lines)\n            ### TODO:\n            ###      1) Run train_x forward through model to produce `logits`\n            ###      2) Use the `loss_func` parameter to apply the PyTorch CrossEntropyLoss function.\n            ###         This will take `logits` and `train_y` as inputs. It will output the CrossEntropyLoss\n            ###         between softmax(`logits`) and `train_y`. Remember that softmax(`logits`)\n            ###         are the predictions (y^ from the PDF).\n            ###      3) Backprop losses\n            ###      4) Take step with the optimizer\n            ### Please see the following docs for support:\n            ###     Optimizer Step: https://pytorch.org/docs/stable/optim.html#optimizer-step\n\n            # Forward pass: compute predicted logits\n            logits = parser.model(train_x)\n            \n            # Compute loss\n            loss = loss_func(logits, train_y)\n            \n            # Compute gradients of the loss w.r.t model parameters.\n            loss.backward()\n            \n            # Take step with optimizer\n            optimizer.step()\n\n            ### END YOUR CODE\n            prog.update(1)\n            loss_meter.update(loss.item())\n\n    print (\"Average Train Loss: {}\".format(loss_meter.avg))\n\n    print(\"Evaluating on dev set\",)\n    parser.model.eval() # Places model in \"eval\" mode, i.e. don't apply dropout layer\n    dev_UAS, _ = parser.parse(dev_data)\n    print(\"- dev UAS: {:.2f}\".format(dev_UAS * 100.0))\n    return dev_UAS\n\n\nif __name__ == \"__main__\":\n    debug = args.debug\n\n    assert (torch.__version__.split(\".\") >= [\"1\", \"0\", \"0\"]), \"Please install torch version >= 1.0.0\"\n\n    print(80 * \"=\")\n    print(\"INITIALIZING\")\n    print(80 * \"=\")\n    parser, embeddings, train_data, dev_data, test_data = load_and_preprocess_data(debug)\n\n    start = time.time()\n    model = ParserModel(embeddings)\n    parser.model = model\n    print(\"took {:.2f} seconds\\n\".format(time.time() - start))\n\n    print(80 * \"=\")\n    print(\"TRAINING\")\n    print(80 * \"=\")\n    output_dir = \"results/{:%Y%m%d_%H%M%S}/\".format(datetime.now())\n    output_path = output_dir + \"model.weights\"\n\n    if not os.path.exists(output_dir):\n        os.makedirs(output_dir)\n\n    train(parser, train_data, dev_data, output_path, batch_size=1024, n_epochs=10, lr=0.0005)\n\n    if not debug:\n        print(80 * \"=\")\n        print(\"TESTING\")\n        print(80 * \"=\")\n        print(\"Restoring the best model weights found on the dev set\")\n        parser.model.load_state_dict(torch.load(output_path))\n        print(\"Final evaluation on test set\",)\n        parser.model.eval()\n        UAS, dependencies = parser.parse(test_data)\n        print(\"- test UAS: {:.2f}\".format(UAS * 100.0))\n        print(\"Done!\")\n"
  },
  {
    "path": "a3/utils/__init__.py",
    "content": ""
  },
  {
    "path": "a3/utils/general_utils.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCS224N 2020-2021: Homework 3\ngeneral_utils.py: General purpose utilities.\nSahil Chopra <schopra8@stanford.edu>\n\"\"\"\n\nimport sys\nimport time\nimport numpy as np\n\n\ndef get_minibatches(data, minibatch_size, shuffle=True):\n    \"\"\"\n    Iterates through the provided data one minibatch at at time. You can use this function to\n    iterate through data in minibatches as follows:\n\n        for inputs_minibatch in get_minibatches(inputs, minibatch_size):\n            ...\n\n    Or with multiple data sources:\n\n        for inputs_minibatch, labels_minibatch in get_minibatches([inputs, labels], minibatch_size):\n            ...\n\n    Args:\n        data: there are two possible values:\n            - a list or numpy array\n            - a list where each element is either a list or numpy array\n        minibatch_size: the maximum number of items in a minibatch\n        shuffle: whether to randomize the order of returned data\n    Returns:\n        minibatches: the return value depends on data:\n            - If data is a list/array it yields the next minibatch of data.\n            - If data a list of lists/arrays it returns the next minibatch of each element in the\n              list. This can be used to iterate through multiple data sources\n              (e.g., features and labels) at the same time.\n\n    \"\"\"\n    list_data = type(data) is list and (type(data[0]) is list or type(data[0]) is np.ndarray)\n    data_size = len(data[0]) if list_data else len(data)\n    indices = np.arange(data_size)\n    if shuffle:\n        np.random.shuffle(indices)\n    for minibatch_start in np.arange(0, data_size, minibatch_size):\n        minibatch_indices = indices[minibatch_start:minibatch_start + minibatch_size]\n        yield [_minibatch(d, minibatch_indices) for d in data] if list_data \\\n            else _minibatch(data, minibatch_indices)\n\n\ndef _minibatch(data, minibatch_idx):\n    return data[minibatch_idx] if type(data) is np.ndarray else [data[i] for i in minibatch_idx]\n\n\ndef test_all_close(name, actual, expected):\n    if actual.shape != expected.shape:\n        raise ValueError(\"{:} failed, expected output to have shape {:} but has shape {:}\"\n                         .format(name, expected.shape, actual.shape))\n    if np.amax(np.fabs(actual - expected)) > 1e-6:\n        raise ValueError(\"{:} failed, expected {:} but value is {:}\".format(name, expected, actual))\n    else:\n        print(name, \"passed!\")\n"
  },
  {
    "path": "a3/utils/parser_utils.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCS224N 2020-2021: Homework 3\nparser_utils.py: Utilities for training the dependency parser.\nSahil Chopra <schopra8@stanford.edu>\n\"\"\"\n\nimport time\nimport os\nimport logging\nfrom collections import Counter\nfrom . general_utils import get_minibatches\nfrom parser_transitions import minibatch_parse\n\nfrom tqdm import tqdm\nimport torch\nimport numpy as np\n\nP_PREFIX = '<p>:'\nL_PREFIX = '<l>:'\nUNK = '<UNK>'\nNULL = '<NULL>'\nROOT = '<ROOT>'\n\n\nclass Config(object):\n    language = 'english'\n    with_punct = True\n    unlabeled = True\n    lowercase = True\n    use_pos = True\n    use_dep = True\n    use_dep = use_dep and (not unlabeled)\n    data_path = './data'\n    train_file = 'train.conll'\n    dev_file = 'dev.conll'\n    test_file = 'test.conll'\n    embedding_file = './data/en-cw.txt'\n\n\nclass Parser(object):\n    \"\"\"Contains everything needed for transition-based dependency parsing except for the model\"\"\"\n\n    def __init__(self, dataset):\n        root_labels = list([l for ex in dataset\n                           for (h, l) in zip(ex['head'], ex['label']) if h == 0])\n        counter = Counter(root_labels)\n        if len(counter) > 1:\n            logging.info('Warning: more than one root label')\n            logging.info(counter)\n        self.root_label = counter.most_common()[0][0]\n        deprel = [self.root_label] + list(set([w for ex in dataset\n                                               for w in ex['label']\n                                               if w != self.root_label]))\n        tok2id = {L_PREFIX + l: i for (i, l) in enumerate(deprel)}\n        tok2id[L_PREFIX + NULL] = self.L_NULL = len(tok2id)\n\n        config = Config()\n        self.unlabeled = config.unlabeled\n        self.with_punct = config.with_punct\n        self.use_pos = config.use_pos\n        self.use_dep = config.use_dep\n        self.language = config.language\n\n        if self.unlabeled:\n            trans = ['L', 'R', 'S']\n            self.n_deprel = 1\n        else:\n            trans = ['L-' + l for l in deprel] + ['R-' + l for l in deprel] + ['S']\n            self.n_deprel = len(deprel)\n\n        self.n_trans = len(trans)\n        self.tran2id = {t: i for (i, t) in enumerate(trans)}\n        self.id2tran = {i: t for (i, t) in enumerate(trans)}\n\n        # logging.info('Build dictionary for part-of-speech tags.')\n        tok2id.update(build_dict([P_PREFIX + w for ex in dataset for w in ex['pos']],\n                                  offset=len(tok2id)))\n        tok2id[P_PREFIX + UNK] = self.P_UNK = len(tok2id)\n        tok2id[P_PREFIX + NULL] = self.P_NULL = len(tok2id)\n        tok2id[P_PREFIX + ROOT] = self.P_ROOT = len(tok2id)\n\n        # logging.info('Build dictionary for words.')\n        tok2id.update(build_dict([w for ex in dataset for w in ex['word']],\n                                  offset=len(tok2id)))\n        tok2id[UNK] = self.UNK = len(tok2id)\n        tok2id[NULL] = self.NULL = len(tok2id)\n        tok2id[ROOT] = self.ROOT = len(tok2id)\n\n        self.tok2id = tok2id\n        self.id2tok = {v: k for (k, v) in tok2id.items()}\n\n        self.n_features = 18 + (18 if config.use_pos else 0) + (12 if config.use_dep else 0)\n        self.n_tokens = len(tok2id)\n\n    def vectorize(self, examples):\n        vec_examples = []\n        for ex in examples:\n            word = [self.ROOT] + [self.tok2id[w] if w in self.tok2id\n                                  else self.UNK for w in ex['word']]\n            pos = [self.P_ROOT] + [self.tok2id[P_PREFIX + w] if P_PREFIX + w in self.tok2id\n                                   else self.P_UNK for w in ex['pos']]\n            head = [-1] + ex['head']\n            label = [-1] + [self.tok2id[L_PREFIX + w] if L_PREFIX + w in self.tok2id\n                            else -1 for w in ex['label']]\n            vec_examples.append({'word': word, 'pos': pos,\n                                 'head': head, 'label': label})\n        return vec_examples\n\n    def extract_features(self, stack, buf, arcs, ex):\n        if stack[0] == \"ROOT\":\n            stack[0] = 0\n\n        def get_lc(k):\n            return sorted([arc[1] for arc in arcs if arc[0] == k and arc[1] < k])\n\n        def get_rc(k):\n            return sorted([arc[1] for arc in arcs if arc[0] == k and arc[1] > k],\n                          reverse=True)\n\n        p_features = []\n        l_features = []\n        features = [self.NULL] * (3 - len(stack)) + [ex['word'][x] for x in stack[-3:]]\n        features += [ex['word'][x] for x in buf[:3]] + [self.NULL] * (3 - len(buf))\n        if self.use_pos:\n            p_features = [self.P_NULL] * (3 - len(stack)) + [ex['pos'][x] for x in stack[-3:]]\n            p_features += [ex['pos'][x] for x in buf[:3]] + [self.P_NULL] * (3 - len(buf))\n\n        for i in range(2):\n            if i < len(stack):\n                k = stack[-i-1]\n                lc = get_lc(k)\n                rc = get_rc(k)\n                llc = get_lc(lc[0]) if len(lc) > 0 else []\n                rrc = get_rc(rc[0]) if len(rc) > 0 else []\n\n                features.append(ex['word'][lc[0]] if len(lc) > 0 else self.NULL)\n                features.append(ex['word'][rc[0]] if len(rc) > 0 else self.NULL)\n                features.append(ex['word'][lc[1]] if len(lc) > 1 else self.NULL)\n                features.append(ex['word'][rc[1]] if len(rc) > 1 else self.NULL)\n                features.append(ex['word'][llc[0]] if len(llc) > 0 else self.NULL)\n                features.append(ex['word'][rrc[0]] if len(rrc) > 0 else self.NULL)\n\n                if self.use_pos:\n                    p_features.append(ex['pos'][lc[0]] if len(lc) > 0 else self.P_NULL)\n                    p_features.append(ex['pos'][rc[0]] if len(rc) > 0 else self.P_NULL)\n                    p_features.append(ex['pos'][lc[1]] if len(lc) > 1 else self.P_NULL)\n                    p_features.append(ex['pos'][rc[1]] if len(rc) > 1 else self.P_NULL)\n                    p_features.append(ex['pos'][llc[0]] if len(llc) > 0 else self.P_NULL)\n                    p_features.append(ex['pos'][rrc[0]] if len(rrc) > 0 else self.P_NULL)\n\n                if self.use_dep:\n                    l_features.append(ex['label'][lc[0]] if len(lc) > 0 else self.L_NULL)\n                    l_features.append(ex['label'][rc[0]] if len(rc) > 0 else self.L_NULL)\n                    l_features.append(ex['label'][lc[1]] if len(lc) > 1 else self.L_NULL)\n                    l_features.append(ex['label'][rc[1]] if len(rc) > 1 else self.L_NULL)\n                    l_features.append(ex['label'][llc[0]] if len(llc) > 0 else self.L_NULL)\n                    l_features.append(ex['label'][rrc[0]] if len(rrc) > 0 else self.L_NULL)\n            else:\n                features += [self.NULL] * 6\n                if self.use_pos:\n                    p_features += [self.P_NULL] * 6\n                if self.use_dep:\n                    l_features += [self.L_NULL] * 6\n\n        features += p_features + l_features\n        assert len(features) == self.n_features\n        return features\n\n    def get_oracle(self, stack, buf, ex):\n        if len(stack) < 2:\n            return self.n_trans - 1\n\n        i0 = stack[-1]\n        i1 = stack[-2]\n        h0 = ex['head'][i0]\n        h1 = ex['head'][i1]\n        l0 = ex['label'][i0]\n        l1 = ex['label'][i1]\n\n        if self.unlabeled:\n            if (i1 > 0) and (h1 == i0):\n                return 0\n            elif (i1 >= 0) and (h0 == i1) and \\\n                 (not any([x for x in buf if ex['head'][x] == i0])):\n                return 1\n            else:\n                return None if len(buf) == 0 else 2\n        else:\n            if (i1 > 0) and (h1 == i0):\n                return l1 if (l1 >= 0) and (l1 < self.n_deprel) else None\n            elif (i1 >= 0) and (h0 == i1) and \\\n                 (not any([x for x in buf if ex['head'][x] == i0])):\n                return l0 + self.n_deprel if (l0 >= 0) and (l0 < self.n_deprel) else None\n            else:\n                return None if len(buf) == 0 else self.n_trans - 1\n\n    def create_instances(self, examples):\n        all_instances = []\n        succ = 0\n        for id, ex in enumerate(examples):\n            n_words = len(ex['word']) - 1\n\n            # arcs = {(h, t, label)}\n            stack = [0]\n            buf = [i + 1 for i in range(n_words)]\n            arcs = []\n            instances = []\n            for i in range(n_words * 2):\n                gold_t = self.get_oracle(stack, buf, ex)\n                if gold_t is None:\n                    break\n                legal_labels = self.legal_labels(stack, buf)\n                assert legal_labels[gold_t] == 1\n                instances.append((self.extract_features(stack, buf, arcs, ex),\n                                  legal_labels, gold_t))\n                if gold_t == self.n_trans - 1:\n                    stack.append(buf[0])\n                    buf = buf[1:]\n                elif gold_t < self.n_deprel:\n                    arcs.append((stack[-1], stack[-2], gold_t))\n                    stack = stack[:-2] + [stack[-1]]\n                else:\n                    arcs.append((stack[-2], stack[-1], gold_t - self.n_deprel))\n                    stack = stack[:-1]\n            else:\n                succ += 1\n                all_instances += instances\n\n        return all_instances\n\n    def legal_labels(self, stack, buf):\n        labels = ([1] if len(stack) > 2 else [0]) * self.n_deprel\n        labels += ([1] if len(stack) >= 2 else [0]) * self.n_deprel\n        labels += [1] if len(buf) > 0 else [0]\n        return labels\n\n    def parse(self, dataset, eval_batch_size=5000):\n        sentences = []\n        sentence_id_to_idx = {}\n        for i, example in enumerate(dataset):\n            n_words = len(example['word']) - 1\n            sentence = [j + 1 for j in range(n_words)]\n            sentences.append(sentence)\n            sentence_id_to_idx[id(sentence)] = i\n\n        model = ModelWrapper(self, dataset, sentence_id_to_idx)\n        dependencies = minibatch_parse(sentences, model, eval_batch_size)\n\n        UAS = all_tokens = 0.0\n        with tqdm(total=len(dataset)) as prog:\n            for i, ex in enumerate(dataset):\n                head = [-1] * len(ex['word'])\n                for h, t, in dependencies[i]:\n                    head[t] = h\n                for pred_h, gold_h, gold_l, pos in \\\n                        zip(head[1:], ex['head'][1:], ex['label'][1:], ex['pos'][1:]):\n                        assert self.id2tok[pos].startswith(P_PREFIX)\n                        pos_str = self.id2tok[pos][len(P_PREFIX):]\n                        if (self.with_punct) or (not punct(self.language, pos_str)):\n                            UAS += 1 if pred_h == gold_h else 0\n                            all_tokens += 1\n                prog.update(i + 1)\n        UAS /= all_tokens\n        return UAS, dependencies\n\n\nclass ModelWrapper(object):\n    def __init__(self, parser, dataset, sentence_id_to_idx):\n        self.parser = parser\n        self.dataset = dataset\n        self.sentence_id_to_idx = sentence_id_to_idx\n\n    def predict(self, partial_parses):\n        mb_x = [self.parser.extract_features(p.stack, p.buffer, p.dependencies,\n                                             self.dataset[self.sentence_id_to_idx[id(p.sentence)]])\n                for p in partial_parses]\n        mb_x = np.array(mb_x).astype('int32')\n        mb_x = torch.from_numpy(mb_x).long()\n        mb_l = [self.parser.legal_labels(p.stack, p.buffer) for p in partial_parses]\n\n        pred = self.parser.model(mb_x)\n        pred = pred.detach().numpy()\n        pred = np.argmax(pred + 10000 * np.array(mb_l).astype('float32'), 1)\n        pred = [\"S\" if p == 2 else (\"LA\" if p == 0 else \"RA\") for p in pred]\n        return pred\n\n\ndef read_conll(in_file, lowercase=False, max_example=None):\n    examples = []\n    with open(in_file) as f:\n        word, pos, head, label = [], [], [], []\n        for line in f.readlines():\n            sp = line.strip().split('\\t')\n            if len(sp) == 10:\n                if '-' not in sp[0]:\n                    word.append(sp[1].lower() if lowercase else sp[1])\n                    pos.append(sp[4])\n                    head.append(int(sp[6]))\n                    label.append(sp[7])\n            elif len(word) > 0:\n                examples.append({'word': word, 'pos': pos, 'head': head, 'label': label})\n                word, pos, head, label = [], [], [], []\n                if (max_example is not None) and (len(examples) == max_example):\n                    break\n        if len(word) > 0:\n            examples.append({'word': word, 'pos': pos, 'head': head, 'label': label})\n    return examples\n\n\ndef build_dict(keys, n_max=None, offset=0):\n    count = Counter()\n    for key in keys:\n        count[key] += 1\n    ls = count.most_common() if n_max is None \\\n        else count.most_common(n_max)\n\n    return {w[0]: index + offset for (index, w) in enumerate(ls)}\n\n\ndef punct(language, pos):\n    if language == 'english':\n        return pos in [\"''\", \",\", \".\", \":\", \"``\", \"-LRB-\", \"-RRB-\"]\n    elif language == 'chinese':\n        return pos == 'PU'\n    elif language == 'french':\n        return pos == 'PUNC'\n    elif language == 'german':\n        return pos in [\"$.\", \"$,\", \"$[\"]\n    elif language == 'spanish':\n        # http://nlp.stanford.edu/software/spanish-faq.shtml\n        return pos in [\"f0\", \"faa\", \"fat\", \"fc\", \"fd\", \"fe\", \"fg\", \"fh\",\n                       \"fia\", \"fit\", \"fp\", \"fpa\", \"fpt\", \"fs\", \"ft\",\n                       \"fx\", \"fz\"]\n    elif language == 'universal':\n        return pos == 'PUNCT'\n    else:\n        raise ValueError('language: %s is not supported.' % language)\n\n\ndef minibatches(data, batch_size):\n    x = np.array([d[0] for d in data])\n    y = np.array([d[2] for d in data])\n    one_hot = np.zeros((y.size, 3))\n    one_hot[np.arange(y.size), y] = 1\n    return get_minibatches([x, one_hot], batch_size)\n\n\ndef load_and_preprocess_data(reduced=True):\n    config = Config()\n\n    print(\"Loading data...\",)\n    start = time.time()\n    train_set = read_conll(os.path.join(config.data_path, config.train_file),\n                           lowercase=config.lowercase)\n    dev_set = read_conll(os.path.join(config.data_path, config.dev_file),\n                         lowercase=config.lowercase)\n    test_set = read_conll(os.path.join(config.data_path, config.test_file),\n                          lowercase=config.lowercase)\n    if reduced:\n        train_set = train_set[:1000]\n        dev_set = dev_set[:500]\n        test_set = test_set[:500]\n    print(\"took {:.2f} seconds\".format(time.time() - start))\n\n    print(\"Building parser...\",)\n    start = time.time()\n    parser = Parser(train_set)\n    print(\"took {:.2f} seconds\".format(time.time() - start))\n\n    print(\"Loading pretrained embeddings...\",)\n    start = time.time()\n    word_vectors = {}\n    for line in open(config.embedding_file).readlines():\n        sp = line.strip().split()\n        word_vectors[sp[0]] = [float(x) for x in sp[1:]]\n    embeddings_matrix = np.asarray(np.random.normal(0, 0.9, (parser.n_tokens, 50)), dtype='float32')\n\n    for token in parser.tok2id:\n        i = parser.tok2id[token]\n        if token in word_vectors:\n            embeddings_matrix[i] = word_vectors[token]\n        elif token.lower() in word_vectors:\n            embeddings_matrix[i] = word_vectors[token.lower()]\n    print(\"took {:.2f} seconds\".format(time.time() - start))\n\n    print(\"Vectorizing data...\",)\n    start = time.time()\n    train_set = parser.vectorize(train_set)\n    dev_set = parser.vectorize(dev_set)\n    test_set = parser.vectorize(test_set)\n    print(\"took {:.2f} seconds\".format(time.time() - start))\n\n    print(\"Preprocessing training data...\",)\n    start = time.time()\n    train_examples = parser.create_instances(train_set)\n    print(\"took {:.2f} seconds\".format(time.time() - start))\n\n    return parser, embeddings_matrix, train_examples, dev_set, test_set,\n\n\nclass AverageMeter(object):\n    \"\"\"Computes and stores the average and current value\"\"\"\n    def __init__(self):\n        self.reset()\n\n    def reset(self):\n        self.val = 0\n        self.avg = 0\n        self.sum = 0\n        self.count = 0\n\n    def update(self, val, n=1):\n        self.val = val\n        self.sum += val * n\n        self.count += n\n        self.avg = self.sum / self.count\n\n\nif __name__ == '__main__':\n    pass\n"
  },
  {
    "path": "a4/README.md",
    "content": "# NMT Assignment\nNote: Heavily inspired by the https://github.com/pcyin/pytorch_nmt repository\n"
  },
  {
    "path": "a4/__init__.py",
    "content": ""
  },
  {
    "path": "a4/chr_en_data/dev.chr",
    "content": "ᏉᎳ, ᎠᎴ ᏌᏱᎳ, ᎠᎴ ᏗᎹᏗ, ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᏕᏏᎶᏂᎦ ᎢᏤᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏣᏁᎶᏛᎢ.\nᎤᏂᏣᏘᏃ ᎤᎾᏛᎦᏅ ᎤᏂᏍᏆᏂᎪᏒᎩ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᎪᎥᎩ ᎦᎸᎳᏗ ᏓᏳᏠᎠᏒᎩ, ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒᎩ; ᎾᏍᎩᏃ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎡᎶᎯ ᎢᎦ ᎤᏘᏍᏔᏅᎩ.\nᎯᎠᏃ ᎾᏍᎩ ᎢᏣᏙᎯᎱᎯᏍᏙ ᎨᏎᏍᏗ; Ꮣ ᏰᏥᏩᏛᎯ ᎠᏲᎵ ᎠᏥᏣᏄᎴᏍᏗ, ᏐᏈᎵ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎦᏅᎨᏍᏗ.\nᎨᏍᏗ ᏳᏬᎯᏳᎮ ᏄᏍᏛ ᎠᎪᏩᏘᏍᎬ, ᎠᏎᏃ ᎤᏙᎯᏳ ᏕᎦᏁᎵᏍᎨ ᏛᎦ, ᎦᏙᎵᎨ ᏍᎩᎾᎾ.\nᏥᏌᏃ ᏣᎷᏏᎵᎻ ᏭᏴᎴᎢ, ᎠᎴ ᎤᏔᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏴᎴᎢ; ᎿᏉᏃ ᎬᏩᏚᏫᏛ ᏚᎧᎿᏂᏙᎸ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏚᎧᎿᏅ, ᎠᎴ ᎿᏉ ᎤᏒᎯᏴᏱ ᎨᏎᎢ, ᎤᏄᎪᏤ ᏇᏗᏂᏱ ᏭᎶᏎ ᎠᏁᎮ ᏔᎳᏚ ᎢᏯᏂᏛ.\nᏔᎵ ᎢᏳᎾᏙᏓᏆᏍᏗ ᏙᏥᎭᏲᎲ, ᏐᏉ ᎣᏥᏩᏛᎲ ᎤᏛᏐᏅ ᎾᎥᏂ ᏗᎨᏫ ᏃᎴ ᎤᏩᏌ ᎦᏂᎩᎸ, ᏏᏆ ᎭᏫᏯ ᏧᏙᎢᏓ ᎤᏛᏅ ᏃᎴ ᎾᎥᏂ ᏍᎪᎯᏍᏆ ᎢᏳᏕᏘᏴᏓ.\nᎨᏍᏗ ᏱᏥᎪᏩᏘᏍᎨ ᎢᏣ ᎣᎩᏅᎪᎢᏍᏗ.\nᎤᎴᏅᎮ ᎠᏦᏱᎲᎢ ᎠᎳᏂ.\nᏥᏌᏃ ᎤᏄᎪᏤ ᎠᎴ ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏏᏌᎵᏱ ᏈᎵᎩ ᏕᎦᏚᎲ ᏭᏂᎶᏎᎢ; ᏩᎾᎢᏒᏃ ᏚᏛᏛᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎬᏉᏎᎰ ᏴᏫ?\nᏣᏌᏙᏰᏃ ᎢᎦᎦᏛ ᏓᏳᏂᎷᏤᎵ ᏂᎬᎾᏛ ᏗᏁᎯ.\nᏚᏁᏤᎴᏃ ᎤᏂᏣᏘ ᎦᏙᎯ ᎤᎾᏂᏢᏗᏱ; ᎦᎵᏉᎩᏃ ᎦᏚ ᏚᎩᏒ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᏚᎬᎭᎷᏰᎢ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏁᎴ ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᏧᏂᏁᏗᏱ; ᎢᎬᏱᏗᏢᏃ ᏚᏂᏁᎴ ᎤᏂᏣᏘ ᏴᏫ.\nᏓᏓᏁᏄᎸᏗᏍᎨ ᏃᎴ ᏓᏲᏍᏔᏁᎮ ᏴᏫ.\nᏣᏄᏏ, ᎡᎶᏗ ᏃᎴ ᎰᎻ ᎤᏂᎷᏤᎢ ᏍᎩᏴᎯ, ᏚᏂᏍᏓᏩᏗᏎ ᎠᎳᏂ, ᎪᏱᏁᎢ, ᎡᎳᏆᏗ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ.\nᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎣᏂᏉ ᎤᎷᏨᎩ, ᎠᎴ ᎠᏤᎵᏍᏛ ᏭᏴᎸᎩ, ᎠᎴ ᏚᎪᎲᎩ ᏙᎴᏛ ᏗᏄᏬ ᏕᎦᏅᎢ.\nᎯᎠ ᏁᏥᏪᏏ ᏌᏯᏂ ᎤᏪᏥ ᎠᎨᏴ; ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᏣᏤᎵ ᏓᏯᎢ, ᏓᏣᎷᏤᎵ ᎤᏓᏙᎵᏍᏗᏳ, ᎠᎴ ᎤᎩᎸᏕᏍᏗ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎪᎱᏍᏗ ᎠᏛᏁᎯ ᎤᏪᏥ ᎠᎩᎾ.\nᎬᏂᏳᏉ, ᎢᏨᎾᏄᎪᏫᏎ ᎤᏕᎵᏛ ᎨᏒᎢ; ᎥᏝ ᏂᎦᏛ ᏴᏓᏗᎵᏅᏥ, ᏂᎦᏗᏳᏍᎩᏂ ᎡᎩᏁᏟᏴᏍᏗ ᎨᏎᏍᏗ\nᎤᎬᏫᏳ Ross, ᏗᏘᎭᏁᎩ ᎠᏂᏣᎳᎩ, ᎠᏂᏐ ᏗᏂᎳᏫᎩ ᏄᏂᏁᎩᏴ ᏍᏉ ᎤᏁᎦ ᎨᏎ.\nᎠᏂᏐᎢ ᎡᎾᎢ ᏂᏓᏅᏁ ᎦᏓ.\nᎿᏉᏃ ᏔᎵᏁ ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᎪᏙ ᏨᏁᎴ ᏕᏣᏍᏚᎢᎡᎴ ᏘᎦᏙᎵ?\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎩᎶ ᎠᎩᏍᎦᎩ ᎾᏍᎩ ᏄᏛᏁᎸ. ᏧᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎬᏪᏎᎴᎢ; ᏣᏚᎵᏍᎪᏃ ᎣᎩᏰᎯᏒᏍᏗᏱ?\nᏛᎾᎵᏛᏔᏂ ᎾᏍᎩ; ᏂᎯᏍᎩᏂ ᏁᏣᏛᏁᏍᏗᏉ; ᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᏓᏳᏁᏔᏥ ᎠᏄᏬ ᎾᏍᎩᏯᎢ;\nᏌᏉᏍᎩᏂ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᏪᏅᏎᎢ, ᏭᏍᎪᎭ ᎦᏙᎯ, ᎠᎴ ᏫᏚᏩᏍᎦᎳᏁ ᎤᎾᏝᎢ ᏧᏤᎵ ᎠᏕᎸ.\nPhiladelphia ᏓᏳᎶᏒ ᎠᏧᏣ ᏦᎢ ᎢᏴ ᎤᏍᏆᎵᏒ ᏚᏇᏍᏗ, ᎠᏥᎸ ᏫᏚᏗᏅᏒ.\n“ᎯᎠᏛ ᎾᏅᏛᏁᎰ ᏱᎾᏚᎳᏑᏝᎾ,” ᎤᏛᏁ ᏩᎭᏯ ᎭᎴ ᎾᏦᎯᏍᎬ.\nᎾᏍᎩ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎿᏉ ᏗᏗᏲᎵ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎢᎩᏃᎸᏔᏂᏓᏍᏗᏱ ᏂᎨᏒᎾ ᏂᎦᎥᏉ ᏗᏕᏲᏗ ᎨᏒ ᎦᏃᎸᏔᏂᏙᎲᎢ, ᎤᎾᏓᎵᏓᏍᏗᏳ ᎨᏒ ᏴᏫ, ᎠᏂᏏᎾᏌᏅ ᎠᏂᎦᏘᏴ ᎤᎾᏓᎶᏄᎮᏗᏱ;\nᏌᎳᏓ ᏚᏏᎳᏛ  \nᏥᏌ ᎯᎠ ᏄᏪᏒᎩ, ᏅᏯ ᎢᏥᎲᎾ. ᎹᏗ ᎤᏲᎮᏒᎯ ᎤᏙ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎪᎯ ᎠᏎ ᎠᏒᎦ, ᏅᎩᏰᏃ ᏁᏒᎭ ᎦᏰᏥᏂᏌᏅᎯ.\nᎦᎸᎳᏗᏰᏃ ᎤᏤᎵᎪᎯ ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᎦᏁᎳ, ᏑᎾᎴᎢᏳ ᏧᏪᏅᏎ ᏥᏚᏅᏒᏎ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎯ ᏖᎸᎳᏗ ᏚᏫᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ.\nᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᎢᎦᏪᏛ ᎨᏒᎢ, ᎠᎦᏔ ᎠᎦᏔᏉ ᏓᎬᏩᎸᏍᎨᏍᏗ, ᎧᏳᎦᏃ ᎧᏳᎦᏉ ᏓᎬᏩᎸᏍᎨᏍᏗ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᎣᏍᏛ ᎢᏳᏅᎿᏕᎩ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏗᏂᎳᏫᎩ, ᎾᏍᎩ ᎬᏩᏂᏴᎯᎸᎯ, ᎢᏥᎷᎩᏍᎪ ᎠᏓᎾᏌᎲᏍᎩ ᏤᏥᏲᎰ ᎾᏍᎩᏯᎢ, ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏥᏕᏥᏁᎭ?\nᎾᏍᎩ ᏥᏚᏍᏆᏂᎪᏗ ᏥᏚᏩᏍᎦᎳ ᏂᎦᎥ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒ ᎠᎴ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ.\nᏎᎦᏨ ᏩᎩᏍᏚᎩᏒ ᎠᏍᏚᏗ, ᏥᏩᏛᎲ ᏗᏓᎯ, ᎠᏂᏫᏄᏣ ᏧᎵᎢ ᏚᏟᏃᎮᏛ.\nᎠᎴ ᎤᏬᎯᏤ ᎬᏩᎪᏩᏘᏍᎨ ᎨᎵᎵ ᎾᏍᎩ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎢᏧᎳᎭ ᏥᎷᏏᎵᎻ ᎤᏂᎷᏨᎯ; ᎾᏍᎩ ᏧᏤᎵ ᎬᏩᏃᎮᏍᎩ ᏴᏫ ᎠᏂᎦᏔᎲᎢ.\nᏰᎵ ᏍᎪᎯᏍᏆ ᏴᏫ ᎤᏁᏙᎸ ᎠᎾᏓᎪᎾᏗᏍᎬ, ᎨᏍᏗ ᎩᎶ ᏯᎦᏔᎮᎢ ᏄᎵᏍᎨᏗᏴ ᏄᏛᏁᎸ ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩ.\nᎦᏙ ᎤᏍᏗ ᎤᏟ ᎠᎯᏗᏳ ᎧᏁᎢᏍᏗᏱ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ ᎠᏛᏗᏱ; ᎠᎴ ᎯᎠ ᎢᎦᏪᏍᏗᏱ, ᏔᎴᎲᎦ ᎠᎴ ᎮᏓ?\nᎪᎯᎢᏴ ᎤᎵᏖᎸᏁ.\nᎾᎨᎢᏴ ᎣᎭᏁ, ᎠᎾᏓᎭᏲᎯ ᎠᏂᎾᎷᏍᎬ ᏚᎨᏓᎵᏴ ᎾᎥᏂᎨ ᎠᏂᎷᎬ ᎤᏙᏓᏈᏒ.\nᎠᎴ ᏓᎬᏩᎵᎥᏂᎵ, ᎠᎴ ᏓᎬᏩᎵ; ᏦᎢᏁᏃ ᎢᎦ ᏙᏛᎠᎴᎯᏌᏂ.\nᎲ…Ꮂ… ᎠᏗᎲ ᎢᎦ ᎤᏍᎦᏱᏓ ᎨᏒ!\nᎠᏎᏃ ᎢᏣᏛᎩᏍᎨᏍᏗ ᏓᏅᏩ ᎠᎴ ᏧᏓᎴᏅᏛ ᏂᎦᎵᏍᏔᏂᏙᎲᎢ, ᏞᏍᏗ ᏱᏥᏍᎦ-ᎢᎮᏍᏗ; ᎯᎠᏰᏃ ᎾᏍᎩ ᎠᏎ ᎢᎬᏱ ᎢᏳ-ᎵᏍᏙᏗ, ᎥᏝᏍᎩᏂ ᎢᎬᏪᏅᏛᏉ ᎤᎵᏍᏆᏗᏍᏗ ᏱᎨᏎᏍᏗ.\nᏃᏗ ᏓᏰᏍᏛᎥᏍᎨ ᎤᏩᏂ ᎠᎴ ᎠᎭᎾᏬ ᎤᏩᏌ ᏧᏩᏅ, ᏔᎵ ᎢᎦ ᏓᎦᎸᎦᏍᎨ ᎤᏐᏱ ᎦᏙ ᏧᏥᎶᏍᏔᏅ, ᏗᏦᎯᏓ ᏕᎦᏰᏫᏍᎨ.\nᎯᎸᏍᎩ ᎢᏯᎦᏴᎵ ᏕᎯᏅᎪᏩ ᎪᎰᏍᏗ ᏳᎵᏍᏔᏅᎾ.\n“ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ.\nᎠᏆᏛᎦᏅᎩᏃ ᎠᏍᏓᏯ ᎧᏁᎬ ᎩᎶ ᎦᎸᎳᏗ ᏛᏓᎴᎲᏍᎬᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎬᏂᏳᏉ ᎤᏁᎳᏅᎯ ᎤᎵᏦᏛ ᏴᏫ ᎠᏁᎲ ᎤᏓᏑᏯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏁᎲ ᏛᏕᏂ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎨᏎᏍᏗ ᏴᏫ, ᎤᏁᎳᏅᎯᏃ ᎤᏩᏒ ᎾᏍᎩ ᎠᏁᎲ ᎡᎮᏍᏗ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏏᎵ ᏧᏁᏢᏔᏅᏛ ᏥᎩ; ᎾᏍᎩ ᎤᎾᏤᎵᎦ ᏥᎩ [ᎤᏁᎳᏅᎯ] ᏧᏪᏥ ᎢᎨᎬᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏥᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏚᎢᏍᏙᏗ ᎨᏒᎢ;\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏳᏪᏎᎭ, ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩ ᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏟᎯᏳ ᎾᏍᎩ Ꮎ ᎦᏚᎲᎢ.\nᎣᏍᏓᎦ ᎨᏎᏍᏗ ᏫᏗᎷᏨ ᏗᎨᏅᏒ, ᎯᏓᎵᎪᏅ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ?” \n“ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᏓᏊᎧᏔ ᏂᎯ ᏍᏓᎵᎪᏒ ᎠᎨᏳᏣ,” ᏥᏲᏎᎸ ᎣᎩᎾᎵ Michael.\n”ᏄᏓᎴᏒ ᎠᎩᎸᏉᏗ ᎭᏂ.”\nᎤᏓᏅᏎᏃ ᏭᏂᏍᏓᏕᏎ ᏣᏂ ᏗᏓᏍᏚᏗᏱ.\n“ᏍᎩᏗ ᎢᎩᏂᎬᎦ,” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎠᏌᎻᏓ, ᎤᎩᎸᏉ, ᎤᏁᎸᏔᏁ ᎤᎵᏒᏗ ᎦᎶᏇ, ᎠᏎᏃ ᏚᏩᏰᏐᏪᎢᏉ ᎤᏁᎸᏔᏅ ᎤᎧᏁᏴᏗ ᎠᎭᏳᎾᏚᎳ.\nᎤᏓᏅᏖᏔᏅ ᎠᏌᎻᏓ.\nᎤᏏᎳᏛᏙᏗ ᎦᏓᎡ ᏏᏆ ᎡᏆ ᎧᏴᏌᏛ ᎠᎬᏱᏣ ᏭᎴᏫᏍᏔᏁ.\nᎿᏉᏃ ᎠᎨᏴ ᎤᎷᏨ ᎤᏓᏙᎵᏍᏓᏁᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᏍᎩᏍᏕᎢ.\nᎠᏎᏃ ᏚᏓᏂᏴᎲ ᏃᎴ ᎤᏛᏒ.\nᎡᎵᏊᏃ ᎢᎦ ᏚᏃᏴᎬ ᏚᏬᏪᎳᏅ ᏍᏛᎾ ᏁᎵᏍᎪᎯ ᏅᎩ ᎤᎴᏅᎮ ᏕᎪᏪᎵᏍᎬ ᏗᎧᏁᎢᏍᏗ ᏣᎳᎩ ᎦᏬᏂᎯᏍᏗ.\nᎩᎶ ᎾᏆᎵᎪᏁᎲᎾ, ᎾᏍᎩ ᎠᏆᏡᏗᎭ; ᎩᎶᏃ ᏃᏍᏗᏟᏏᏍᎬᎾ, ᎾᏍᎩ ᏯᏗᎦᎴᏯᏍᎦ.\nᎠᎴ ᎥᏝ ᎿᏉ ᏰᎵ ᎠᏇᏥ ᎨᏍᏉᏎᏗ ᏱᎩ; ᏘᏅᏏᏓᏍᏗᏉ ᏔᎫᏴᎡᎯ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏍᏋᎦ.\nᏩᏏᏓᏂ ᏣᏲᎪ.\nᎦᏙᏃ ᏯᏆᏕᏯᏙᏔᏅᎭ?\n“ᏔᎵ ᎢᏯᏅᏓ ᎢᏯᏆᏕᏘᏴᏓ ᏃᏉ ᏓᎩᏯᏪᎦ ᎨᎥᎢ, ᎤᏛᏁ.\nᎠᎩᏁᎫ ᎾᏆᎵᏍᏔᏅ ᎦᏢᏆᏍᎬᎢ; ᏂᎯ ᏂᏍᎩᏴᏂᏌᏏ; ᏂᎯᏰᏃ ᏍᎩᎸᏉᏙᏗ ᎨᏒᎩ; ᎥᏝ ᏰᏃ ᏑᏓᎴᎩ ᎤᏅ ᎡᏍᎦ ᏱᎦᏥᏲᎠᏍᎦ ᏄᏂᎬᏫᏳᏒ ᎨᏥᏅᏏᏛ, ᎾᏍᏉ ᎠᏴ ᎪᎱᏍᏗ ᏂᎨᏒᎾ ᏱᎩ.\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎠᏆᏓᏅᏛ ᎤᎧᎵᏨᎯ ᎤᏣᏘ ᎡᎯᏍᏗ ᎨᏒᎢ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᎦᎢ. ᎠᏂ ᎢᏥᏁᏍᏗ ᎠᎴ ᎢᏧᎳᎭ ᎢᏗᏯᏫᏍᎨᏍᏗ.\nᏰᎵ ᎪᎯᏓ ᎡᏝᏪᎯ ᏄᎵᏍᏔᏁ, ᎠᎾᏗᎦᎴᏯᏍᎨ ᎠᎾᏓᎭᏲᎯ, ᎠᎬᏱᏣ ᏃᎴ ᎠᎾᏕᎭᏲᎮ.\nᎪᎯᏊᏴ ᏆᏧ ᎢᎪᎢ ᎠᏭᏴ ᏩᎩᎶᏒ Ꮎ ᎠᏓᏁᎸ ᎨᏒ ᎾᎥᏂ.\nᎠᏎᏃ ᏓᎻ, ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᎳ, ᏗᏗᎹ ᏧᏙᎢᏛ, ᎥᏝ ᏱᎨᎴ ᏥᏌ ᎤᎷᏨ.\nᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎯ ᏕᏥᏴᎨᏍᏗ ᎠᎴ ᎢᏥᏍᎪᏂᎮᏍᏗ, ᎡᎶᎯᏍᎩᏂ ᎠᎵᎮᎵᎨᏍᏗ; ᏂᎯᏃ ᎤᏲ ᎢᏣᏓᏅᏖᏍᏗ, ᎠᏎᏃ ᎤᏲᎢᏣᏓᏅᏛ ᎤᎵᎮᎵᏍᏗ ᏮᏛᏓᏁᏟᏴᏍᏔᏂ.\nᏌᏊ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ.\n”ᏙᎢᏳᏍᏗ ᎠᎩᎵᏓᏍᏓ?” ᎤᏛᏛᏁ ᏏᏆ, ᎣᏍᏓ ᏭᏛᏂᏌᎾ ᏭᏅᏥᎸᎢ.\nᎤᏃᏍᎩᏛᏃ ᎨᏒ ᏞᏍᏗ ᎿᏉ ᏳᏃᏍᎩᏎᏍᏗ; ᏚᎸᏫᏍᏓᏁᎮᏍᏗᏉᏍᎩᏂ ᏕᎬᏗᏍᎨᏍᏗ ᏧᏬᏰᏂ ᎣᏍᏛ ᎨᏒ ᎾᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᎦᎬᏩᏁᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎤᏂᎬᏎᎯ ᎨᏒᎢ.\nᏌᏌ ᎠᏂᏓ ᏕᏥᎦᏖᏃᎭ.” \nᏱᏓᎩᏯᏪᎬᎾ ᏃᎴ ᏯᎩᏚᎬᎾ ᏓᎩᎷᏫᏍᏔᏁᎲ.\nᏠᎨᏏᏃ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏂᏂᏴᎮ ᏧᏅᏏᏓᏍᏗ, ᎠᏏᏴᏫ ᎤᏂᎸᏂᎴᎢ, ᏐᎢᏃ ᎤᏂᎴᎢ, ᏐᎢᏃ ᏅᏯ ᏚᏅᏂᏍᏔᏁᎢ.\nᎤᎸᏃ ᎡᎮ ᎺᎵ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏬᎴ ᏥᏌ ᏚᎳᏍᎬᎢ, ᎠᎴ ᎤᏛᏓᏍᏕ ᎦᏬᏂᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎤᏟ ᎢᎪᎯᏛ ᎦᏲᎦᏛᏂᏗᏍᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ, ᎣᏏᏳ ᎣᎩᏰᎸᏅᎩ ᎣᎬᏒ ᎣᎩᎧᎯᏯᏍᏗᏱ ᎡᏗᏂᏱ;\nᎾᏍᎩ ᎤᏩᏒ ᎠᎦᏔᎲ ᎤᏪᎪᏗᏱ ᏗᎬᏩᎸᏌᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᏄᏚᏯᏍᏛᎾ, ᎠᎴ ᏄᏓᏁᎪᏳᏒᎾ, ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏍᎩ ᎢᏳᏍᏗ ᏄᏓᏓᎸᎾ; ᎾᏍᎦᏅᎾᏍᎩᏂ ᎢᏳᎵᏍᏙᏗᏱ ᎠᎴ ᎪᎱᏍᏗ ᎾᎫᎢᏍᏛᎾ.\n“ᎬᏲᎵᎭ, ᎤᏐᏱᏉᏗ ᏏᏲ,” ᎤᏛᏁ ᎩᎶ.\nᎤᏣᏘᏰᏃ ᎢᏳᏓᎴᎩ ᏂᏗᎥ ᎢᏗᏍᎦᏅᎪᎢ. ᎢᏳᏃ ᎩᎶ ᎦᏬᏂᏍᎬ ᎾᏍᎦᏅᎬᎾ ᏥᎨᏐᎢ, ᎾᏍᎩ ᏄᎪᎸᎾ ᎨᏐ ᎠᏍᎦᏯ, ᏰᎵᏉ ᎬᏪᎾᎯᏍᏙᏗ ᏂᎬ ᎠᏰᎸᎢ.\nᎤᏍᎫᏴ ᎤᏭᏓᎳᎩᏍᏓᏁ ᎠᏍᏚᎩᏍᏗ.\nᎦᎸᎳᏗᏣ ᎨᏍᏗ ᎪᎱᏍᏗ ᏯᎵᏖᎸᎮᏍᎨᎢ: ᏩᎦ ᎤᎾᏣᏪᏐᎸᏍᏕ, ᏐᏈᎵ ᎠᏂᏟᏁᎢ.\nᎢᏳᏃ ᏴᏫ ᎢᏳᎾᏛᏁᏗ ᎢᏯᏆᏛᏁᎸᎯ ᏱᎩ, ᏅᎩ ᏗᏂᏅᏌᏗ ᎤᏂᏍᎦᏎᏗ ᎣᎦᎵᎸᎯ ᏱᎩ ᎡᏈᏌ ᎦᏚᎲᎢ, ᎦᏙ ᎬᎩᏁᏉᏤᏗ ᎣᏍᏛ ᎨᏒ, ᎢᏳᏃ ᏧᏂᏲᎱᏒᎯ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ? ᎢᏓᎵᏍᏓᏴᎲᏍᎨᏍᏗ, ᎠᎴ ᎢᏓᏗᏔᏍᎨᏍᏗ; ᏑᎾᎴᏉᏰᏃ ᏙᏓᏗᏲᎱᏏ.\nᎯᎠᏰᏃ ᏄᏪᏎ ᎤᏓᏅᏛᎢ; ᎢᏳᏃ ᎤᏄᏩᎥᏉ ᏯᏆᏒᏂᎸ, ᎠᏎ ᏯᏆᏗᏫ.\nᏐᏁᎳ ᏧᏪᏥ ᏚᏁᏍᎩᎴ ᏌᏌ.\n“Ꮘ-Ꮘ-Ꮘ!” ᎤᎾᏛᏁ ᏌᏌ ᎠᏂᏓ.\nᏣᎵ ᎤᏩᏌ ᎤᏬᏂᏒ, ᎤᏁᎸᏔᏅ ᎤᏎᎵᏓᏍᏗ ᏚᎾᏢᎥ ᏧᏬᏰᏂ.\n“ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᏌᎳᏓ ᎡᏝᏪᎯ.\nᎭᏫᏂᏣ, ᎤᏓᏅᏘ ᏃᎴ ᎢᎪᎯᏓ ᎠᏓᏍᏕᎵᏍᎩ ᎨᏒ.\nᏄᏟᏂᎬᎬ ᎠᏏᎳᏛᏙᏗ ᎬᏓ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᏁᎮᎢ.\nᏂᎦᏓ ᎧᏅᏂᏍᎩ ᏍᎩᏄᎾᏍᏗ, ᎡᎵᏍᏗ.”\nᏌᎳᏓ ᏃᎴ ᏫᎵᎻ ᎤᏅᏌ ᎨᏎᎢ.\n“ᎡᎭ ᎤᏟᏍᏓ!” ᎤᏛᏁ ᏫᎵᎻ.\nᏑᎾᎴ ᏄᎵᏍᏔᎾ, ᏂᎦᏓ ᎢᎦᎯ ᏥᏂᎦᎵᏍᏗ ᎤᎾᏗᏛᎮ.\nᎦᎵᏣᏗ ᏃᎴ ᎦᏟᏓ ᏃᎴ ᎪᎰᏍᏗ ᏚᏇᏍᏘ ᏧᏙᎢᏓ ᏚᏅᏯ, ᎤᏍᏗ ᎢᎾᎨ ᎡᎯ ᏧᏂᎯᏍᏙᏗ, ᎠᏂᏍᎦᏯᏯ.\nᎠᏂᏳᏩᏁᎦ ᏧᎾᎦᏎᏂ ᎠᏂᏅᎦᎵᏗᏍᎪ ᎠᏓᏁᏖᎸ ᎤᏩᏙᎯᏴᏓ ᏧᏙᏓᏋᏓ.\nᎡᎳᏗᏣ ᏧᎦᏎᏍᏕᎢ ᏫᎵᎻ.\nᎾᎯᏳ ᎼᏏ ᎤᏕᏁᎢ, ᎠᎴ ᎤᏩᏔᏅᎯ ᎤᏬᏚᎯᏳ ᎨᏎᎢ, ᎠᎴ ᎠᏥᏍᏆᏂᎪᏔᏁ ᎤᏙᏓ ᎦᏁ-ᎸᎢ ᏦᎢ ᎢᏯᏅᏙ.\nᎿᏉᏰᏃ ᏂᎪᎯᎸᎾᏉ, ᎾᏍᎩ ᎤᎷᎯᏍᏗ ᏥᎩ ᏓᎦᎷᏥ, ᎠᎴ ᎥᏝ ᏴᏛᏙᎯᏗ.\n”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ.” ᎤᏛᏛᏁ ᏌᎳᏓ, ᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏔᏅ ᏱᎨᏎ ᎣᎳ ᎤᎧᏲᏓ.\nᎤᎵᏂᎩᏛᏰᏃ ᎠᏉᎯᏳᎭ, ᎾᏍᎩ ᎥᏝ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏛᏂᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎨᏥᎸᏉᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎪᎯ ᏤᎭ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏎ ᎤᎾᏄᎪᎢᏍᏗ ᏥᎩ,\nᏙᏉ ᎢᏳᏍᏗ ᎠᏰᎸᏗ ᏧᎾᎪᎰᏍᏔᏅ ᏓᏓᏁᎸ ᏃᎴ ᏧᏂᎸ ᎠᏂᎾᏌ?\nᎠᏎᏃ ᎨᏍᏗ ᏍᎩᎾᎾ ᏱᏄᎵᏍᏔᎾ.\nᎬᏂᏳᏉ ᏂᏨᏃᏁᎸ.\nᎠᎩᏚᏚ ᏍᏊ ᎢᎪᎯᏓ ᏓᏁᎶᏗᏍᎪ ᎤᎾᏗᎴᎩ ᏥᎩ ᎢᏳᎾᏍᏗ, ᏍᏆᏂᏯ ᎤᎦᎾᏮ ᎠᎹᏰᎵ ᏗᏳᎾᏓᎴᏅ.\nᎾᏍᎩᏯᏃ ᎾᏍᏉ ᎪᎯ ᎨᏒᎢ ᎤᎾᎵᏃᎯᏴᎯ ᎠᏁᎭ ᎾᏍᎩᏯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏩᏔᏅ ᏚᏑᏰᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎢᏥᎪᎲᎭ ᎤᏍᎦᎢᏍᏗᏳ ᎬᏃᏌᏛᎯ ᎢᎬᏁᎯ, ᎾᏍᎩ ᏕᏂᎵ ᎠᏙᎴᎰᏍᎩ ᏧᏁᎢᏍᏔᏁᎢ, ᎦᏙᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, (ᎩᎶ ᎠᎪᎵᏰᏍᎨᏍᏗ ᎪᎵᎨᏍᏗ,)\n[ᎤᏁᎳᏅᎯᏰᏃ] ᎣᏏᏳ ᎤᏰᎸᏗ ᎡᎩᏅᎦᎸᏗᏱ ᏥᏌ ᎦᎶᏁᏛ ᎠᏰᎸ ᏌᏉ ᎢᏯᎵᏍᎪᎸᏔᏅᎯ ᎨᏒ ᎢᏳᏩᏂᏌᏛ.\nᎠᏕᎳ ᎬᏘ ᏗᎪᏚᎢᏍᏔᏅ ᏧᏔᏬᏗ ᏓᏆᎳᏑᏢ, ᏗᏥᏂᎨᏂ ᏩᏍᏗ ᏗᎧᏁᏴᏓ ᏃᎴ ᏗᎦᎸᎩᏓ ᏕᎦᏰᏫᏒ.\nᎠᏎᏍᎩᏂ ᏄᏍᏛ ᏓᏆᏚᏍᏔᏅᎢ ᎠᏎ ᎢᏯᏆᏛᏁᏗ,\nᎨᏍᏗ ᎠᏎ ᏯᏆᎵᏍᎦᏂᏎᎢ.” \n“ᏄᏓᎴ ᎧᏃᎮᏗ ᏍᎩᏃᎯᏏ!” ᎤᏓᏍᏗᏰᏔᏁ ᏫᎵᎻ.\nᎦᎢᏒ, ᏫᎦᎢᏒ.\nᎠᎨᏯ ᎤᏴᎵᎸ ᎠᎭᏰᎲ ᎤᏃᏩ ᎤᎶᏛ ᏏᏆ ᎭᏫᏯ, ᎠᏂᏤ ᏄᎾ ᏗᏒᎾᏔᏅ ᏃᎴ ᎠᎪᏍᏔ ᎠᎩᏍᏗ ᎪᎢ ᎠᏍᏚᏨ.\nᏂᎯᏍᎩᏂ ᎮᏯᏔᎯᏳ ᎨᏎᏍᏗ ᏂᎦᎥ ᏂᏣᏛᎿᏕᎬᎢ, ᎲᏂᏗᏳ ᎨᏎᏍᏗ ᎯᎩᎵᏲᎬᎢ, ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ ᎠᎵᏥᏙᏂᏙᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᏰᎵᎦᏯ ᎯᏍᏆᏗᏍᎨᏍᏗ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎤᏙᎯᏳ ᎦᎵᏍᏓᏴᎲᎦ ᏃᎴ ᎦᏛᏁᎵᏍᎬ! \nᏅᏦᎠᏎᏍᎬᎾ ᎠᎦᏘᏰᎢ ᎪᎳ ᎤᎶᏐᎲᏍᏗ ᏃᎴ ᎤᏂᎷᎯᏍᏗ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ.\nᎤᏅᎪᏤ ᏚᎨᏓᎵᏴ, ᏧᎵᏑᏫᏓ ᏧᏆᎶᎦ ᏕᎦᏓᎥ ᏕᏧᎬ, ᎠᎦᏗᏛ ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎦᎴᎩ ᎤᏛᏒ ᎪᎨ, ᎦᎵᏬᎨ ᎠᎪᏩᏘᏍᎬ ᎢᏳᏓᏅᎯᏓ, ᏃᎴ ᏧᎧᎭᏲᏒ ᏚᏅᏓᏒ, ᎤᏒᎮᎯ ᎤᎾᎷᏎ ᎠᏙᎯ ᏕᏧᎬ ᎧᏂᎩᏓ ᏧᏆᎶᎦ, ᎬᏂᎨ ᎤᏍᎪᎸ ᎪᎳ ᎢᏳᏍᏗ ᏃᏥᏳ ᎢᏣ ᎬᏂᎨ ᏚᏭᏌᎥ ᎦᎸᎳᏗᎨ ᏚᏅᏓᏒ, ᎡᎶᎯ ᎤᏓᏴᎳᏘ ᏃᎴ ᎡᏝᏪᎯ, ᏓᎳᏍᎨᏍᎬ ᎠᏛᎪᏗ ᏱᎨᏒᎾ ᏩᎾᎢ ᎦᎳᎨᏴ ᏃᏥ ᎤᏬᎰᏒ.\nᎠᏇᏙᏅ ᏧᏂᎷᏫᏍᏔᏁᏗ ᏓᏍᏆᏚᎸ.\n“ᎡᏝᏪ ᎨᏎᏍᏗ!” \nᎤᎵᏍᏔᏴᏗ ᏫᏓᏥᎩᏏ!” \nᎤᎵᏍᎫᏪ ᏲᎾ ᎤᏤᏍᏙ, ”ᎣᏍᏓᏗ ᎠᎩᏰᎸᎲ, ᎬᏅ ᎢᎪᎯᏓ ᎨᏍᏗ ᎯᎸᎯᏳ ᏍᎩᏲᏍᏓ ᎠᎩᏰᎸᏅ ᏱᎩ.”\nᎡᏣᎵᎡᎵᏤᎮᏍᏗ ᏂᎪᎯᎸ ᎤᏁᎳᏅᎯ ᎠᎴ ᎠᎦᏴᎵᎨᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎬᏩᎵ, ᎢᏨᏗᏍᎨᏍᏗ ᏚᏙᎥ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ;\nᎨᏍᏗ ᏴᎦᏔᎰᎢ, ᎯᎸᎢᏴ ᎬᏙᏗ ᏥᎨᏐᎢ.\nᏄᏍᏛᏉ, ᎦᏓᏲᏍᏗ ᏥᏓᎫᏕᎪ ᎠᎴ ᏗᎷᎬᏒ ᎠᏕᎳ ᎢᏳᏍᏗ ᎠᏆᏂᏲᎯᎲ.\nᏍᎩᏴᏃ ᏭᏩᎩᏰᏫᏒ ᎪᏪᎵ, ᎦᏅᏃᏫ ᎤᏧ ᏍᏔᏝᏅ.\nᎪᏱᏁᎢ ᏕᎦᎿᏬᏍᏗᏍᎨ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᏎᏃ ᎤᏁᏣ ᏝᏗ ᎩᎶ ᏲᎩᎾᎵᎪᏎ ᎠᏉᏎᎸ.\nᎾᏍᎩᏃ ᎤᏂᏲᏍᏙᏔᏅ ᎠᎴ ᎤᏂᏐᏢᎢᏍᏔᏅ, ᎤᏄᏬ ᎤᏩᏣᎬᏅᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎩᎬ ᏗᏥᏍᎪᎵ ᎢᏨᏒ ᏕᏣᏓᏅᎵᏰᎡᏍᏗ, ᎠᏴ ᎥᏝ ᏯᏆᏓᏅᎵᏰᎥ; ᎿᏉ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᏮᏓᏥᎶᏏ.\nᎠᎴ ᎯᎠ ᎾᏍᎩ ᎥᏝ ᏳᏃᎵᏤᎢ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒ ᎨᎬᏍᎦᎳᏁᎴᎢ, ᎠᎴ ᎥᏝ ᏯᏂᎦᏔᎮ ᎢᏳᏍᏗ ᎦᏛᎬ ᎾᏍᎩ ᎤᏁᏨᎢ.\nᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏂᎯ ᏗᏤ-ᎳᏍᏓ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎯᏍᎩᏉ ᎦᏚ ᏙᏥᏰᎭ ᎠᎴ ᎠᏣᏗ ᏔᎵᏉᎢ; ᎢᏳᏍᎩᏂᏃᏅ ᏲᎩᏩᏎᏅ ᏂᎦᏛ ᎯᎠ ᎾᏍᎩ ᏴᏫ ᎤᎾᎵᏍᏓᏴᏗ.\nᎠᏎᏃ ᎪᎯ ᏥᎩ, ᎿᏉ ᎡᏥᎦᏙᎥᏒᎯ ᏥᎩ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏯᏛᏅ ᎤᏁᎳᏅᎯ ᎢᏥᎦᏙᎥᏒᎯ ᏥᎩ, ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᎢᏣᏨᎭ ᏙᏣᎵᏍᎦᏍᏙᏗᎭ ᎠᏩᎾᎦᎳ ᎠᎴ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏗᎴᏅᏙᏗ ᏗᏕᎶᏆᏍᏗ, ᎾᏍᎩ ᎠᏏ ᎾᎿ ᏥᏣᏚᎵ ᏤᏥᎾᏝ ᏔᎵᏁ ᎢᏣᎵᏍᏙᏗᏱ?\nᎤᎷᏤᎸᎩ ᎠᎨᏴ ᎠᏰᎲᎩ ᎫᎫ ᏅᏯ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎠᏟᏍᏛᎩ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᏠᏁᏗ, ᎠᎴ ᎤᎶᏁᏔᏅᎩ ᎠᏍᎪᎵ ᎦᏅᎬ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ.\nᏂᎦᏓ ᎠᎾᏤᏩᏍᎪ ᎠᎵᏍᏓᏴᏗ ᎠᎾᏓᎪᎾᏗᏍᎬ.\n”ᏥᏓᎯᏉᏗ, ᎧᏂᎩᏓ ᏗᏆᎵᎢ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏙᏓᏆᏓ ᏛᎦᎿᏂ, ᏃᎴ ᏴᎦᎦᎷᎩ ᏲᎾ ᎤᏤᏍᏙ ᏥᏄᏲᎢᏯ ᏙᏱ.\nᎿᏉᏃ ᎢᎦ ᏄᎵᏍᏔᏅ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏫᏚᏯᏅᎮᎢ; ᎾᏍᎩᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᏔᎳᏚ ᎢᏯᏂᏛ ᏚᏑᏰᏎᎢ, ᎠᎴ ᎨᏥᏅᏏᏛ ᏚᏬᎡᎢ--\n“ᎪᎱᏍᏗ ᏘᏃᎩ!” ᎤᏓᏍᏗᏰᏔᏁ ᏫᎵᎻ, ᏓᎧᏔᏍᏗᏍᎨᎢ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎠᏆᏛᎦᏅᎩ ᎠᏍᏓᏯ ᎠᏂᏁᎬ ᎤᏂᏣᏘ ᏴᏫ ᎦᎸᎳᏗ ᎢᏴᏛ, ᎯᎠ ᏅᏛᏂᏪᏍᎬᎩ, ᏱᎰᏩ ᎡᏗᎸᏉᏓ; ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏥᎸᏉᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏍᏛ ᎠᏥᏰᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎤᏤᎵᎦ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᎢᎦᏁᎳᏅᎯ;\nᎠᏎᏃ ᎤᏚᎩ ᎠᏋᎭ ᏞᎩᏳ ᎬᎪᏩᏛᏗᏱ, ᎠᎴ ᎿᏉ ᏗᏂᎰᎵ ᏗᎩᏅᏙᏗᏱ ᎩᎾᎵᏃᎮᏗᏱ. ᏅᏩᏙᎯᏯᏛ ᏂᏣᏛᎢᏕᎨᏍᏗ. ᎢᎦᎵᎢ ᏫᎨᏣᏲᎵᎭ. ᎦᎾᏙᎠᏗᏒ ᎩᏲᎵᎸᎭ ᎢᎦᎵᎢ.\nᎬᏂᏳᏉ ᎢᏨᏯᎵᏍᎪᎸᏓᏏ ᏗᏣᎳᏍᏓᎡᏗᏱ ᎢᎾᏛ ᎠᎴ ᏗᏂᏙᎬ ᏗᎾᏓᏨᏯᏍᏗᏍᎩ, ᎠᎴ ᎢᏣᏓᎵᏁᎯᏕᏗᏱ ᏂᎦᎥ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎦᏍᎩ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏰᎵ ᎤᏲ ᎢᎨᏨᏁᏗ ᏱᎨᏎᏍᏗ.\nᎿᏉᏃ ᎪᎯᏗᏳ ᎦᏲᎦᎵᏍᏓᏴᏅᎯ ᏄᎵᏍᏔᏅ ᏉᎳ ᏚᎴᏅᎩ ᎠᏰᎵ ᎤᎾᏣᎥᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ, ᏱᏍᎩᏲᎢᏳᏁᎢ, ᎠᎴ ᏅᏗᏥᎧᏙᏴᎾᏉ ᏱᎨᏎ ᏟᏗ, ᎥᏝ ᎾᏍᎩ ᎯᎠ ᎤᏐᏅ ᏱᏂᎨᏣᎵᏍᏓᏁᎴ ᎠᎴ ᏱᎨᏥᎪᎶᎯᏎᎴᎢ.\nᎤᏩᏒᏍᎩᏂ ᎠᏓᎪᎵᏰᏍᎨᏍᏗ ᏴᏫ, ᎩᎳᏃ ᎿᏉ ᎠᎩᏍᎨᏍᏗ ᎾᏍᎩ ᎦᏚ, ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ ᎾᏍᎩ ᎤᎵᏍᏈᏗ.\nᏄᎵᏍᏙᏗ, ᏂᎦᏓ ᎤᏂᎾᎥ ᏃᎴ ᏚᏂᏂᏌᎥ ᏗᎦᏂᏴᎡᏗ ᎩᎳᏈᏴ. ᎦᏲᏟ ᎬᏂᎨᏒ ᏱᏄᏅᏁᎳ ᎤᎾᏓᏟᏴᏗ, ᏃᎴ ᏗᏗᏂᏴᎡᏗ ᏚᎨᏓᎵᏴ, ᎢᎦᎴᏅᏗ ᏄᏍᏛ ᎢᏗᏰᎵᏒ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ, ᎠᏏ ᏗᏗᏲᎵ ᏥᎨᏒᎩ, ᏤᎩᎾᏝᎢ ᎨᏒᎩ, ᎢᎦᏓᏄᏴᏛᎩ ᏗᎴᏅᏙᏗ ᏗᏕᎶᏆᏍᏗ ᎡᎶᎯ ᎡᎯ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏙᏥᏅᎵ ᏧᏓᏏ ᎠᎴ ᏌᏱᎳ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏂᏁᎬᎢ ᎤᏠᏱ ᏓᎨᏥᏃᎮᎮᎵ.\nᎦᎵ ᏧᏂᏍᏚᎩᏛ ᎨᏒ ᏚᏂᏁᎸ ᎨᎦᎫᏴᎡ ᎤᎾᏕᏒᏗ ᎠᏂᎨᏯ.\n”ᎪᎱᏍᏗᏃ ᏳᎵᏍᏔᏂᏙᎸᎾ ᎨᏎᏍᏗ, Ꭵ,” ᎤᏛᏁ.\nᎠᏂᎦᏘᏱ ᎠᏂᏙᎾᎥ ᏚᎾᎦᏎᏍᏛ ᎤᏂᏍᎦᏅᏨ ᎠᏂᏅ ᏧᏁᏃᏅᏗ ᏧᎬ ᎭᏫᏂᏨ, ᏧᏃᏰᏅ ᏗᎦᏢᎢᏓ ᏗᏂᎦᎶ ᎠᏰᎵ ᏂᏚᏅᏅ ᏯᎾᏟᏃᎮᏍᎬᎾ.\nᎤᏁᏤᎸᎩᏃ ᎠᏍᎪᎯᏧᏛ ᏗᏘᏂᏙᎯ ᏧᎧᎿᏩᏗᏓᏍᏗᏱ ᏉᎳ, ᎠᎴ ᎤᏁᎳᎩ ᏪᏓ ᎤᏪᎵᏎᏗᏱ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᏣᏅᏍᏙᏒᎩ ᎩᎶ ᎢᏳᏍᏗ ᎤᎾᎵᎢ ᎤᏍᏕᎸᎯᏓᏍᏗᏱ ᎠᎴ ᎤᏩᏛᎯᎯᏍᏗᏱ.\nᎰᏩᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᏆᏓᏅᏒᎩ ᏪᏣᏯᏅᏗᏱ; ᎣᏏᏳᏃ ᏂᏣᏛᏁᎸ ᏥᎷᎩ. ᎿᏉᏃ ᏂᎦᏛ ᎠᏂ ᎣᏤᏙᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎣᎦᏛᏅᎢᏍᏗ ᎣᎦᏛᎪᏗᏱ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏣᏁᏤᎸᎯ ᎨᏒᎢ.\nᎦᏃᎮᏅ ᎠᏂᏫᏍᎩ ᏧᏂᎳᏫᏤ, ᎤᏪᎾᎢ ᎦᎵᏦᎯᏓ ᏗᏘᏲᎯ Savannah ᏓᏳᎶᏒ, ᎤᏓᎴᏨ ᎡᎲ ᎠᎾᏗᏍᎬ.\nᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᎯᏙᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᎸᎳᏗ ᏨᏗᏓᏁᎸ ᏓᏳᏄᎪᏨᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎦᏁᎲᎩ ᎪᏍᏓᏯ ᎠᏍᎫᏕᏍᏗ.\nᏂᏓᎦᏪᏏᏒᏃ ᏂᎦᏓ ᏃᏊ ᎣᏍᏓ ᎣᎦᏛᏓᏍᏛ ᎠᎴ ᎡᏝᏪ ᎣᏥᏅᏜᎥᎢ.\nᎥᏝᏰᏃ ᎠᏓᏫ ᏯᏥᎶᏄᎡᎴᎢ, ᎠᎨᏴᏍᎩᏂ ᎠᏥᎶᏄᎡᎸ ᎤᏍᎦᏅᏤᎢ.\nᎾᏂᎥᏰᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎨᏥᏁᏤᎸᎯ ᎨᏐ ᏧᎾᎵᏍᎪᎸᏙᏗᏱ ᎠᏓᏁᏗ ᎨᏒ ᎠᎴ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎾᏍᏉ ᎠᏎ ᎪᎱᏍᏗ ᎤᏲᎯᏍᏗ ᎨᏎ ᎤᎵᏍᎪᎸᏙᏗ.\nᏴᏫᏃ ᎾᎥ ᎠᏂᏙᎾᎢ ᎤᎾᏛᎦᏅ, ᎠᏴᏓᏆᎶᏣ, ᎤᎾᏛᏅᎩ. ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏗᎧᎿᏩᏗᏙᎯ ᏓᏳᏬᏁᏓ.\n”ᎯᏒᎦᏗ ᏂᏣᏍᏛᎢᏉ,” ᎤᏛᏁ ᎤᏃᏕᎾ ᎠᏓᎯ ᎩᎳ ᎤᏴᎵᎸ.\n“ᏙᎢᏳᏍᏗ ᎠᏓᎴᏍᎩᏱᏍᎩ ᎤᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎯᎠ?” ᎤᎵᏍᎦᏎᏔᏁᎢ.\n“ᎭᏩ, ᎣᏏᏗ ᎯᏰᎸᎾ,” ᎤᎵᏍᎦᏂᏏ ᎢᏳᏍᏗ ᏄᏪᏎ ᏥᏍᏕᏥ.\nᎭᎴᏫᏍᏓ, ᎠᎨᏳᏣ!\nᎾᏍᎩᏃ ᎠᎨᏔᎮ ᏄᎵᏍᏓᏁᎸᎢ, ᎤᎷᏤ ᎠᎴ ᎡᎳᏗ ᎤᏓᏅᏁᎴᎢ, ᎠᎴ ᏂᎦᏛ ᏚᏳᎪᏛ ᎤᏃᏁᎴᎢ.\nᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎭᏛᎩᏍᎪ ᎯᎠ ᏥᎾᏂᏪᎭ? ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᎥ, ᏝᏍᎪ ᎯᎸᎯᏳ ᎯᎠ ᏱᏥᎪᎵᏰᎣᎢ; ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎠᎴ ᏗᏂᏍᏓᎢ ᎠᏂᎰᎵ ᎤᏄᎪᏨᎯ ᏣᏩᏛᏙᏔᏅ ᎡᏣᎸᏉᏙᏗᏱ?\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏥᎪ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏂᎦᏔᎯ ᏰᎵ ᎠᎹᏟ ᏯᏅᎾ ᎠᏕᏒᎲᏍᎩ ᎤᏁᎳᏗᏙᎲ ᎢᎪᎯᏛ? ᎢᎪᎯᏛ ᎠᏕᏒᎲᏍᎩ ᎤᏁᎳᏗᏙᎲ, ᎥᏝ ᏰᎵ ᎠᎹᏟ ᏴᎬᏅᎾ.\nᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎪᏪᎵᎯ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᎤᏪᏂᏒᎯ, ᎯᎠ ᏥᏂᎦᏪᎭ; ᎤᏪᎷᎦ ᎩᎶ ᎢᎾᎨᎢ, ᎯᎠ ᏂᎦᏪᎭ; ᎡᏣᏛᏅᎢᏍᏓᏏ ᏱᎰᏩ ᎤᎶᎯᏍᏗᏱ, ᏚᏅᏅ ᏗᏥᏥᏃᎯᏍᏓ.\nᎾᏍᎩ ᎦᎵᏦᏛ ᏗᏟᎶᏍᏔᏅᎯᏉ ᏥᎨᏎ ᎾᎯᏳ ᎨᏒᎢ, ᎾᎿᏂ ᏥᏓᎾᎵᏍᎪᎸᏗᏍᎨ ᎠᏓᏁᏗ ᎨᏒ ᎠᎴ ᎾᏍᏉ ᎠᏥᎸ-ᎨᎳᏍᏙᏗ, ᎾᏍᎩ Ꮎ ᎢᏳᏛᏁᎸᎯ ᏰᎵ ᎾᏍᎦᏅᎾ ᎢᎬᏩᏁᏗ ᏂᎨᏒᎾ ᏥᎨᏎ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᎨᏒᎢ;\nᏧᏂᏲᎱᏒᎯᏃ ᏧᎾᎴᎯᏐᏗ ᎨᏒᎢ, ᎾᎯᏳ ᎾᏍᎩ ᎯᎠ ᏓᎾᎴᎯᏌᏅᎭ, ᎦᎪ ᎤᏓᎵᎢ ᎨᏎᏍᏗ ᎾᏍᎩ ᎯᎠ? ᎦᎵᏉᎩᏰᏃ ᎢᏯᏂᏛ ᎠᎾᏓᏰᎲᎩ.\nᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ ᎪᏪᎳᏅ, ᎠᏓᏁᏝᏍᎨ ᎤᏁᎾᎢ ᎠᏂᏴᏫᏯ ᎤᎾᏓᏂᏯᏍᏗᏉ, ᏧᏂᏍᏆᏂᎪᏙᏗᏉ ᏚᏂᏂᏴᎲ - ᎦᏙ ᏃᎴ ᏓᏂᏂᎩᎸ ᏃᎴ ᎠᏂᎱᏣ ᏚᏂᎾᏌᎥ - ᎠᎹᏰᎵ ᎠᏁᎯ ᎢᏯᎾᎵᏍᏗᏍᎩ.\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᏞᏍᏗ ᏣᏍᏚᏅᎩ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎠᏂ ᎯᎠ ᎪᏪᎵᎯ; ᎤᏍᏆᎸᎯᏗᏰᏃ.\nᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ ᏂᎯ ᏌᏯᏂ ᎤᏪᏥ, ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᏣᏤᎵᎦ ᏓᏯᎢ, ᎠᎩᎾ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎤᏪᏥ ᎤᎩᎸᏗ.\nᏧᏴᏨᏗᏣ ᏓᏳᏂᎶᏒ ᏴᏫ ᎠᎦᏓ ᎣᏏᏉ ᎠᏁᎵᏍᎩ ᏃᎴ ᎠᎦᏓ ᎤᎾᏓᏎᎳᏓᏅ.\nᎤᎸᏉᏗ ᎤᏅᏗ ᎨᏎ ᏫᎵᎻ ᏃᎴ ᎠᎵᎮᎵᎨ ᏲᎾ ᎤᏤᏍᏙ ᏯᎦᎾᏬᏗ ᎫᎦ.\nᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎯᎨᏴ, ᎦᏙᏃ ᏙᎭᏠᏱᎭ? ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏁᏒ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎠᎴ ᎤᏂᏅᏅ ᏂᏥᎦᏔᎲᎾ ᎨᏒᎢ.\nᎠᏎᏃ ᎩᏅᏌ ᎢᏂᎦᏔᎮᏍᏗ .\nᎤᏂᏲᏍᎩᏂ ᏴᏫ ᎤᎾᏠᎾᏍᏗ ᎠᏂᏁᏉᎨᏍᏗ ᎤᏂᏲ ᎨᏒᎢ, ᏓᏂᎶᎾᏍᏗᏍᎨᏍᏗ ᎠᎴ ᎨᏥᎶᎾᏍᏗᏍᎨᏍᏗ. ᏍᏗᏍᎨᏍᏗ ᎠᎴ ᎨᏥᎶᎾᏍᏗᏍᎨᏍᏗ.\nᏫᎵᎻ ᎤᎨᏳᎯ.”\nᎨᎢᏴ ᎣᎩᏁᏅᏓ, ᏫᏥᏴᏍᏔᏅ ᎠᏍᏆᏚᎸ ᎦᎵ ᎠᎾᏘᎨ ᎠᏂᎨᏯ ᏃᎴ ᎢᎦᏓ Ꮳ.\n“ᎠᏯ ᏍᏉ,” ᎤᏛᏁ ᏐᎢ ᎠᏍᎦᏯ.\nᎾᏍᎩ Ꮎ ᎣᏍᏛ ᏤᏣᎨᏅᏴ ᏣᏍᏆᏂᎪᏕᏍᏗ, ᏣᏍᏕᎵᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᏥᎩᏯᎠ.\nᎡᏗᎿᎸᏍᏗᏍᎨᏍᏗᏍᎪ ᎤᎬᏫᏳᎯ? ᎤᏟᏍᎪ ᏂᏕᎦᎵᏂᎬᎦ ᎡᏍᎦᏉ ᎾᏍᎩ?\nᏰᎵ ᎤᎵᏍᎨᏓ ᎯᎾᏌ ᏏᏆ.\nᎤᏦᎢᏎᏗ ᎤᎵᏖᎸᏁ ᎪᏱᏁ.\n“ᏕᎦᏂᏰᏨ?”\nᎢᏳ ᎠᎴ ᏏᏓᏁᎸ ᎨᏒ ᏔᎵ ᏱᏄᏓᎠ, ᎤᏩᏒᏉ ᏯᏓᏡᏗᎭ, ᎾᏍᎩ ᏏᏓᏁᎸ ᎨᏒ ᎥᏝ ᏰᎵ ᏱᏂᎬᏩᏍᏗᏉ.\nᏂᎦᏓ ᎠᏰᎸ ᏧᏘᏅᏍᏔᏃ ᎠᏧᏣ ᎽᏍᏕ.\nᎤᏥ ᎤᏃᎯᏎᎳ ᏲᎾ ᎤᏤᏍᏙ, ᎦᎾᏍᏓ ᎬᏗ ᎤᏩᏂᏍᏗ ᎤᏁᎸᏔᏅᎢ ᎧᏅᏂᏍᎩ ᎡᎳᏆᏗ, ᎤᏒᎮᎯ ᏳᎵᏍᏔᏴᏅᎾ ᎤᏂᏏᏗ ᎤᏪᏅᏍᏗ ᏄᏩᏁᎴᎢ ᎠᎳᏂ, ᎠᏥᏍᏛᏗᏍᏔᏁᎢ.\nᎾᏍᎩᏴ ᎱᏂᎷᏣ  ᎠᏂᎴᏴᏍᎩ ᏃᎴ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᏣᏄᏏ ᏗᎾᏛᏁᎵᏍᎬ ᎤᏁᏙᎸ, ᏄᏩᏁᎰᏁ ᏚᏏᎳᏛ ᏌᎳᏓ.\nᎨᏍᏗ ᏙᏓᏆᏓ ᏱᏓᎦᏓᏏᏙᎳ ᎤᏲ ᎤᎾᏗᏅᏗ ᎠᎩᏲᎲ ᏕᎦᏃᏣᏢ.\nᎤᏁᎦᎭ ᎨᏎ, ᎩᎦᎨ ᎤᏍᎪᎸ ᏗᎦᎴᏂ ᎾᎥᏂ ᏃᎴ ᎧᏴᏐᎵ ᏃᎴ ᎤᏬᏍᎩᎵ ᎨᏎᎢ.\nᎠᏎᏃ ᏂᎦᏛᏁᎲ ᎾᏍᎩ ᏂᎦᎦᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᎦᏥᏲᏍᏙᏓᏁᏗᏱ ᎤᎾᏜᏅᏓᏕᏗᏱ ᎾᏍᎩ ᎾᏍᎩ Ꮎ ᏧᎾᏚᎵᎭ ᎤᎾᏜᏅᏓᏕᏗᏱ; ᎾᏍᎩ ᎾᎿ ᎠᎾᏢᏈᏍᎬ ᎾᏍᎩ ᎠᏴ ᏃᎦᏍᏛ ᎾᏍᎩᏯ ᏄᎾᏍᏛ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏓ.\nᎪᎯᏱᏃ ᎢᏴᏛ ᏅᏩᏓᎴ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᎾᏍᏉ ᎾᎿ ᎮᎸ ᎢᎩ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᏍᎦᏯ, ᎥᏝ ᎠᏴ ᎾᎿ ᎨᎸ ᏱᎩ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎩᎶ ᏰᎭᎾᏍᎩ ᎤᏮᏕᏨᎯ ᎢᎨᏎᏍᏗ ᎠᏓᏁᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏧᏙ, ᎠᎴ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏚᎶᎨᏒᎢ, ᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ,\nᏧᎾᎳᏑᎸᏗᏱᏍᎩᏂ; ᎠᎴ ᏞᏍᏗ ᏔᎵ ᏱᏗᏣᏄᏬᏍᎨᏍᏗ.\nᏔᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᎩ, ᎣᏓᎸᏃ ᎡᏆ ᏣᏓᏪᎵᎩᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ ᎠᎺᏉᎯ ᏭᎾᏗᏅᎩ; ᎢᏳᏬᏨᎯ ᎩᎬ ᏄᎵᏍᏔᏅᎩ;\nᎦᏓᏅᏖᏍᎬᏰᏃ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏃᎬᏁᎸ ᎠᏴ ᎣᎩᏅᏏᏛ ᎣᏂᏱ ᎨᏒᎢ, ᏦᎩᏲᎱᎯᏍᏗᏱ ᎾᏍᎩᏯᎢ; ᏗᎪᎦᎧᏃᏗᏰᏃ ᏃᎦᎵᏍᏔᏅ ᎡᎶᎯ ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᎴ ᏴᏫ.\nᎠᏎᏃ ᎦᏥᏅᎵ ᎣᏣᎵᏅᏟ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎣᏣᏢᏈᏍᎬ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ; ᎾᏍᎩ ᎢᏣᏛᏅᎢᏍᏔᏅᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎾᎩᏪᏒᎢ.\nᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎯᏲᏍᏗᏍᎩ, ᏦᎢᏉᏃ ᎢᎦ ᎯᏰᎢᎵᏙᎯ ᎭᏁᏍᎨᏍᎩ, ᎭᎵᏍᏕᎸ ᏨᏒ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᏓᏓᎿᏩᏍᏛ ᎡᎭᏠᎠᎯ.\nᏃᎴ ᎨᎵᎠ ᏧᏍᏆᏴᏍᏗ ᎤᏪᏅᏍᏗ ᏍᏉ--- ᏯᎩᏂᎬᎦ ᎩᎶ ᎤᏓᏏᏓᏍᏗ ᏃᎴ ᏄᏓᎴᏒ ᏧᎷᏫᏍᏔᏁ.\nᎤᎴᏅᎮ ᏕᎫᏔᎩᏍᎬ ᏅᏯ, ᎠᏧᏣ ᎦᎾᎥ ᏚᏌᏁ, ᏧᏔᏂᏓ ᏚᎴᏅᏔᏁ, ᏅᏯ ᏂᏂᏚᏍᏛ ᎠᏓᏅᏖᏍᎨ ᎤᏩᏌ, ᎨᏍᏗ ᏯᏓᏅᏖᏍᎨ ᏗᎦᎨᏓ ᏱᎩ.\nᎠᏴ ᏧᏓᏏ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏓᏍᏗ ᎠᎴ ᏥᎻ ᏦᏍᏓᏓᏅᏟ, ᏫᏨᏲᎵᎦ ᏂᎯ ᏂᏥᏍᎦᏅᎾ ᎢᏨᏁᎸᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᏎᎨᎢ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎡᏥᏍᏆᏂᎪᏔᏅᎯ, ᎠᎴ ᎡᏥᏩᏂᏌᏛ ᎡᏥᏍᏆᏂᎪᏔᏅᎯ, ᎠᎴ ᎡᏥᏯᏅᏛ ᎢᏣᏓᏅᏘ ᎢᏣᎵᏍᏙᏗᏱ;\nᎠᎴ ᏦᏩ ᎾᏍᏉ ᎨᎵᎵ ᎤᏂᎩᏎᎢ ᎤᏄᎪᏤ ᎠᏎᎵᏗ ᎦᏑᎲᎢ, ᏭᎷᏤ ᏧᏗᏱ, ᏕᏫ ᏧᏪᏚᎲᎢ, ᎦᏚᏱ ᏧᏙᎢᏛ, ᏕᏫᏰᏃ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ ᎤᎦᏴᎵᎨ ᎨᏎᎢ ᎠᎴ ᏕᏫ,\nᎾᏍᏉᏰᏃ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᏱᎾᏂᎥ ᏗᎨᏤᏲᎲᏍᎩ ᎦᎶᏁᏛ ᏕᏣᏁᎶᏛᎢ, ᎠᏎᏃ ᎥᏝ ᏯᏂᎪᏗ ᏗᏥᏙᏓ; ᎦᎶᏁᏛᏰᏃ ᏥᏌ ᏕᏣᏁᎶᏛ ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏗ ᏍᎩᏯᏕᏁᎸᎩ.\nᎤᎵᏂᎩᏛᏃ ᎤᏁᏤᎸ, ᎩᎳᏉ ᎢᏴᏛ ᎤᏁᏤᎴ ᎤᏓᏅᏍᏗᏱ;\nᎤᎵᏏᏂᏕᎾ, ᏦᏍᎪᎯ ᎠᎴ ᏅᎩᏍᎪᎯ ᎢᏯᏂ ᎠᏁᎨ ᎠᏂᎭᏰᎯ ᏚᏂᏇᏅᏛ ᏧᏍᏆᏅᎾ, ᏗᏓᏍᏔᏴᏙᏗ ᏃᎴ ᏧᏍᏗ ᎪᎰᏍᏗ ᏳᏰᎸᏛᎾ, ᎤᎾᏅᏙᏗ ᏧᏂᎶᏒ.\nᏎᎷ ᏗᏣᏲᎦ! \nᏝᏉᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᎩᎶ ᎤᏁᎫᏥᏛ ᏥᏚᎾᏚᏓᏙ ᏌᏉᏉ ᎠᏂᏰᎸ ᎨᏒᎢ? ᎯᎠᏰᏃ ᏂᎦᏪᎭ, ᎠᏂᏔᎵ ᏌᏉᏉ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᎤᏂᏇᏓᎸᎢ.\nᏥᎳᏇᎵᏃ ᎠᏆᏯᏗ ᎤᏕᏁᎴᎢ, ᎠᏆᏯᏗᏃ ᎢᎳᏯᎩᎻ ᎤᏕᏁᎴᎢ; ᎢᎳᏯᎩᎻᏃ ᎡᏐ ᎤᏕᏁᎴᎢ;\nᏍᏈᏯ ᎣᎩᎾᏗᏔᎲ ᎤᎩᏓᏟᏅᏯ ᎤᏤᎵ ᎠᏓᏴᏍᏔᎩᏍᎩ.\nᏕᎭᎷᏱ ᎠᏅᏂᏍᎩ ᏑᎦᏔ ᎢᏥᏤᎢ ᎢᏳᏍᏗ ᏩᎩᎷᏨ.\nᏄᏓᎴ ᎣᎩᎾᎵᏱ Nick ᏧᏙᎢᏓ ᎤᎷᏨᎢ, ᎡᏧᎳ ᎤᎾᎴᏅᎲ ᎠᎾᏝᏃᎮᏍᎬᎢ. ᏂᎦᏓ ᏙᏊᎧᏔᏅ ᎣᎩᎾᎵ Michael ᎤᎾᎵ ᎠᎨᏳᏣ Jenny ᏧᏙᎢᏓ ᎤᏴᏍᏗ ᎣᎨᏅᏍᏗᏱ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎠᏨᏍᏛᎦ ᎠᏨᏍᏙᏗ ᎠᏖᎵᏙ ᏱᎫᏢᏗᏍᎪᎢ, ᎠᎴ ᎦᏂᏢᏩ ᏱᎦᎧᎲᏍᎪᎢ; ᎦᎪᏗᏱᏍᎩᏂ ᎦᎧᎲᏍᎪᎢ, ᎾᏍᎩ ᎠᏂᏴᎯᎯ ᎤᏂᎪᏩᏛᏗᏱ ᎢᎦᎦᏛᎢ.\nᎬᏂᏳᏉ ᏞᎩᏳ ᏓᏥᎷᏥ; ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᏆᏂᎪᏗᏍᎩ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎠᏂ ᎪᏪᎵᎯ ᎪᏪᎸᎢ.\nᎤᏒᎯ ᎤᏰᏤ, ᎤᎪᏅ ᎨᏎ ᎪᏛ.\nᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎤᎵᏰᎢᎶᎸ ᏥᏌ ᎠᏍᏓᏯ ᎤᏪᎷᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᎶᎢ, ᎢᎶᎢ, ᎳᎹ ᏌᏆᏓᏂ? ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎯᎠ ᏄᏍᏗ ᎦᏛᎦ, ᎠᏆᏁᎳᏅᎯ, ᎠᏆᏁᎳᏅᎯ, ᎦᏙᏃ ᎥᏍᏋᏕᎩ?\nᎯᎠ ᎠᏂᏣᎳᎩ ᎭᏫᏂᏳ ᏧᎾᏍᎪᏎ ᏗᎦᎾᏗᏫᏒᎢ ᎯᎠ ᎤᏍᏗ ᎦᏅᏅ ᏃᎴ ᏧᏅᏒᏁᎢ ᏧᏩᏂᎦᏢ ᎬᏗ. \nᎤᏍᏗ ᎧᏅᏂᏍᎩ ᎤᏅᎪᏤ ᎦᏅᏙᏗ.\n“ᏰᎵᏉᏍᎪ ᏱᏍᏆᏑᏯᎩᎢ ᏗᏆᏙᏍᏗ - “ᎦᏅᎯᏓ ᏱᎨᏒᎾ, ᎪᏚᎢᏍᏔᏅ ᏱᎨᏒᎾ, ᏃᎴ ᎤᏩᎨᏫᏓ ᏱᎨᏒᎾ?” \nᎠᏂᏐᎢᏃ ᎨᏥᎾᏰᏍᎩ ᏕᏥᏍᏕᎵᏍᎨᏍᏗ, ᏕᏨᏕᎨᏍᏗ ᎠᏥᎸᏱ; ᎢᏥᏂᏆᏘᎮᏍᏗ ᎠᏄᏬ ᎤᏇᏓᎸ ᎠᏚᏯᏍᏙᏔᏅᎯ.\nᏅᏩᏓᎴ ᏓᏟᎶᏍᏛ ᎢᏣᏛᎬᎦ; ᎡᎮ ᎩᎶ ᎠᏍᎦᏯ ᎦᏁᎳ, ᎾᏍᎩ ᏖᎸᎳᏗ ᏚᏫᏎᎢ, ᎠᎴ ᎤᏐᏲᎴ ᎬᏩᏚᏫᏛ, ᎠᎴ ᎤᏍᎪᏎ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎪᏢᏗᏱ, ᎠᎴ ᎤᏁᏍᎨᎮ ᎢᏅ ᎢᎦᏘ, ᎠᎴ ᏚᏙᎳᏍᏔᏁ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎢᏅᏃ ᏭᎶᏎᎢ.\nᏫᎬᏩᏯᏅᎲᏃ ᎡᎵᎣᏈᎦ ᎬᏩᏘᏃᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᎦᏲᎦᏛᎪᏗᏉ ᏄᏍᏛ ᎾᏍᎩ ᎯᎠ ᎢᏤ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᏥᏃᎮᎭ?\nᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ ᏂᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎤᏓᏁᏗ ᎨᏒ ᎦᏃᎮᎰᎲᏍᏗ ᏂᎨᏒᎾ ᏥᎩ.\nᏆᎴᏗᏃ ᎤᏚᎵᏍᎬ ᏥᏌ ᎤᏪᎪᏗᏱ ᏅᏧᎵᏍᏙᏔᏁ ᏔᎵᏁ ᏚᏁᏤᎴᎢ.\nᎤᎭᎨᏛ ᎤᎶᎩᎸ ᎦᎸᎶᎢ ᎡᎳᏗ ᏂᏚᏍᏛ ᏚᎶᎩᎸ, ᎨᏍᏗ ᏳᏓᏴᎳᏖ ᏅᏙ, ᏃᎴ ᎬᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᏂᎦᎵᏍᏗᏍᎬ ᎢᎦ.\nᎤᏙᎰᏎ ᏫᎵᎻ.\nᎭᎾᏉ ᏩᎴᏫᏍᏗ.\nᏂᎯ ᎾᏍᏉ ᎢᏥᏍᎦᏯ ᎢᏣᏁᎳᏛᎭ ᏗᏣᏓᎵᎢ ᎾᏍᎩᏯ ᎢᏯᏛᏁᏗ ᎨᏒ ᎢᏥᎦᏔᎲᎢ, ᎠᎴ ᏕᏥᎸᏉᏕᏍᏗ ᎾᏍᎩᏯ ᏗᎦᎸᏉᏙᏗ ᏥᎩ ᏗᏂᏩᎾᎦᎳᎢ, ᎠᎴ ᏗᎦᎸᏉᏙᏗ ᏥᎩ ᎠᏖᏆᎶᎯ ᎣᏤᎵ ᎨᏒ ᎬᏩᎦᏗᏯ ᎬᏂᏛ ᎡᏥᏁᎸᎢ; ᎾᏍᎩᏃ ᏞᏍᏗ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎪᎱᏍᏗ ᎠᏲᏍᏙᏗᏍᎩ ᏱᎨᏎᏍᏗ.\n“ᎠᏎ ᏍᎩᎾᏆᏍᏗ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎾᎧᎿᏂᏙᎸ, ᎥᏝ ᎿᏉ ᎩᎶ ᏳᏂᎪᎮᎢ, ᏥᏌ ᎤᏩᏒ, ᎠᎴ ᎤᏅᏒ.\nᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᏓᏥᏴᏁᎵ ᏥᏌ, ᎦᎶᏁᏛ ᏣᏃᏎᎰᎢ? ᏩᎦᏛᎥᎦ, ᎬᏬᏎᎴ ᏂᎦᏛ.\nᎾᏍᎩᏰᏃ ᏄᏍᏛ ᎢᏣᏚᎵᏍᎬ ᎢᎨᏣᏛᏁᏗᏱ ᏴᏫ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᏕᏣᏛᏁᎮᏍᏗ.\nᎢᏨᏲᏪᎳᏁᎭ ᏗᏥᏲᎵ ᎢᏥᏍᎦᏅᏨᏰᏃ ᎡᏥᏙᎵᏨ ᏅᏧᎵᏍᏙᏔᏅ ᏥᏌ ᏕᎤᏙᎥᎢ.\nᎠᏎᏃ ᎥᏝᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎢᏳᎢᎦ ᎨᏒᎢ, ᏯᎾᎵᏕᎸᎲᎦᏰᏃ ᏴᏫ, ᎤᎾᏛᏁᎢ.\nᎩᎶᏰᏃ ᎤᎮᏍᏗ, ᎾᏍᎩ ᎠᏥᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃᏄᎲᎾ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏥᎩᏒᏗ ᎨᏎᏍᏗ ᎾᏍᏉ ᎤᎲᎢ.\nᏂᎦᏓ ᎠᎪᏨ, ᎤᏛᏅ Irish ᎠᏧᏣ.\nᎾᏍᎩᏍᎩᏂ ᏄᏍᏕᏍᏗ ᎡᎶᎯ ᎠᎵᏍᏆᏛᎭ; ᏗᏂᎧᎿᏩᏗᏙᎯ ᏛᏂᎷᏥ, ᏙᏛᎾᎦᎴᏅᏔᏂ ᎤᏂᏁᎫᏥᏛ ᎠᎴ ᎤᎾᏓᏅᏘ;\nᎤᎬᏫᏳᎯᏃ ᏅᏩᏙᎯᏯᏛ ᎤᏪᎯ ᎤᏩᏒ ᎠᏎ ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᏅᏩᏙᎯᏯᏛ ᏂᎪᎯᎸᎢ. ᎤᎬᏫᏳᎯ ᏂᏥᎥ ᏕᏥᎧᎿᏗᏙᎮᏍᏗ.\nᎦᎪ ᎠᏩᎾᎦᎶᎢ, ᎠᏴᏃ ᏂᏥᏩᏂᎦᎸᎾ ᎨᏐᎢ? ᎦᎪ ᏚᏬᏕᎯᎰᎢ, ᎠᏴᏃ ᏂᏥᎴᏴᏍᎬᎾ ᎨᏐᎢ?\nᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎠᎾᏛᎵᏍᎬ.\nᎠᎴ ᎦᏙᏃ ᎢᏨᏒ ᎨᏒ ᏗᎨᏧᎪᏙᏗ ᏂᎨᏒᎾ ᎢᎩ ᏚᏳᎪᏛ ᎨᏒᎢ?\nᏧᎾᏛᎯᏍᏙᏗ ᏗᏂᎳᏫᎩ, ᏩᎦ ᎢᏳᎾᎵᏦᎯᏓ, ᏧᎾᏤᎵ ᏓᏆᎴᎳ ᏫᏕᎦᎷᎬ ᏅᏙ ᏥᏭᏕᎵᎪ, ᏎᎦᏉ ᏃᏉᏃ ᎭᏁᎬ ᏧᏁᏅᏒ ᏧᎾᎾᏏᏗ.\nᎢᎦᏓ ᎤᏄᎵᏍᏙᏗ.\nᎬᏂ ᏂᏗᎥ ᏫᏗᏱᎶᎸᎭ ᏌᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎡᏙᎯᏳᏒᎢ ᎠᎴ ᎡᏗᎦᏔᎲᎢ-ᏗᎦᏛᎾᏯ ᎢᏗᏍᎦᏯ ᎢᎦᎵᏍᏙᏗᏱ-ᎠᎧᎵᎢ ᎠᏟᎶᎥ ᎦᎶᏁᏛ ᏂᎦᏛ ᎢᎦᎵᏍᏙᏗᏱ;\nᏃᎴ ᏙᎢᏳᏍᏗ ᎬᏲᎵᎭ?” \nᎠᎴ ᏱᏥᏅᎵ ᎾᏍᎩ ᎠᏁᎩ Ꮎ ᎢᏓᎵᏅᏟ, ᏂᎬᎾᏛ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏁᎶᏗ ᎬᏩᎸᏉᏗᏳ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ;\nᎬᏂ ᏅᏩᏓᎴ ᎤᎬᏫᏳᎯ ᎤᎾᏄᎪᏨ ᎾᏍᎩ ᏄᎦᏔᎲᎾ ᏦᏩ.\nᎠᏎᏃ ᎢᏣᏚᎵ ᏍᎩᎢᏍᏗᏱ ᎠᏴ ᏚᏳᎪᏛ ᎢᏨᏃᏁᎸᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏯᏛᎦᏁᎸᎯ ᎨᏒᎢ; ᎥᏝ ᎾᏍᎩ ᏱᎾᏛᏁᎮ ᎡᏆᎭᎻ.\nᎠᎴ ᎾᏍᎩ ᎢᏤ ᏴᏫ ᎢᏣᏄᏬᏍᏗᏱ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ ᎪᏢᏅᎯ ᏥᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏙᎯᏳᏒ ᎠᏍᎦᏅᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\n”ᏌᏌ ᎤᏪᏥ ᎤᎪᏏᏓ ᎤᏍᏆᏂᎪᏔᏅ ᎬᏅᎢ ᏌᎳᏓ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎯᎠᏃ ᏄᏪᏒᎩ; ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ ᏣᏑᏰᏒ, ᏣᎦᏙᎥᎯᏍᏗᏱ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎯᎪᏩᏛᏗᏱ ᎾᏍᎩ Ꮎ ᎾᏍᎦᏅᎾ, ᎠᎴ ᎠᎰᎵ ᎦᎾᏄᎪᎬ ᎧᏁᎬ ᏣᏛᎪᏗᏱ.\nᏚᏔᎷᎩᏍᎨ ᏧᏍᏆᏴᏍᏗ ᏗᎦᏙᎵ.\nᎾᏍᎩ ᎾᏍᏉ ᎢᏳᏩᏂᏌᏛ ᎪᎯᏳᏗ ᎢᏛᏗᏍᎬ ᎨᎩᎷᎯᏍᏗ ᏥᏄᎵᏍᏔᏅ ᎯᎠ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᎿ ᏥᏕᏗᏙᎦ, ᎠᎴ ᏥᏓᎵᎮᎵᎦ ᎤᏚᎩ ᎢᎬᏒ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎡᎩᏁᏗᏱ.\nᎾᎯᏳᏃ ᎢᏳᏓᎴᏅᏛ Ꭰ-ᏂᏍᎦᎢᎮ ᎪᎱᏍᏗ ᎬᏩᏛᏛᏗᏱ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏰᎵᏉ ᏂᏫ; ᎾᏍᎩ ᎯᎠ ᎿᏛᏁᎮᏍᏗ, ᎲᏁᏍᏗᏃ.\nᎠᏥᎸ-ᎤᎦᏔ ᏓᏤᎸ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏧᎩᏎ ᎠᎴ ᎤᏫᏒᏗᏱ ᏥᏭᏗᏅᏎᎢ; ᎠᎴ ᎤᏛᏎᎢ, ᎠᎴ ᎡᏉᎯᏳ ᏄᎵᏍᏔᏁ ᏡᎬᎢ; ᎠᎴ ᏥᏍᏆ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᏚᏩᏂᎦᎸ ᎤᎾᎭᏓᏕᎢ.\nᏨᏒ ᎭᎵᏍᏕᏄ, ᎠᎴ ᎡᎭᏠᎠᎯ ᏓᏓᎿᏩᏍᏛᎢ.\nᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎥᎩᏙᎵᏨᎩ; ᎾᏍᎩ ᎠᏴ ᎨᏒ ᎾᎩᎬᏫᏳᏒ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᏩᏍᏛ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᏧᎾᏟᎶᏍᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎣᏂ ᎬᏬᎯᏳᏅᎯ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏫᏚᎷᎩ.\nᎤᏂᎩᏍᏔᏁ ᎦᏅᏫᏍᏗᏍᎩ.\nᎤᏒᎯ ᎢᏴ, ᎠᏂᏐᎢ ᎠᏂᏟᏅ, ᏚᏏᎳᏛ ᏚᎷᏫᏍᏔᏁᎮ ᏌᎳᏓ.\nᎰᎵᎦᏧ?”\nᎤᎵᏍᎪᏳᏁ ᏥᏍᏕᏥ.\nᎰᏩᏃ ᎾᏍᎩ ᏧᏅᏏᏓᏍᏗ ᏕᎦᏅᎿᏩᏗᏒ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎤᏂᏟᏌᏁ ᎾᏂᎥ ᏚᏂᏩᏛᎲ ᎤᏂᏲ ᎠᎴ ᎠᏃᏍᏛ; ᎿᏉᏃ ᏙᏗᎨᎦᏨᏍᏔᏂᏒ ᏰᎵ ᏄᎵᏍᏔᏂᎴ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ.\nᎠᎴ ᎢᏣᏓᎦᏌᏯᏍᏕᏍᏗ ᎢᏨᏒ ᎨᏒᎢ, ᏞᏍᏗ ᎢᎸᎯᏳ ᏕᏣᏓᏅᏛ ᎦᎨᏛ ᏱᏂᏣᎵᏍᏓᏁᎮᏍᏗ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎢᏥᎶᏒᏍᏗᏍᎬ ᎢᏣᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᏕᏥᏴᏍᏕᏍᎬᎢ, ᎠᎴ ᎡᎶᎯ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎾᏍᎩᏃ ᎾᎯᏳ ᎢᎦ ᏂᏤᎵᏍᎬᎾ ᎢᏥᎷᏤᏗᏱ.\nᎠᎬᏱ ᏚᏕᏯᏍᏛᎢ ᏚᏲᏍᏔᏁ ᎠᏰᎵ ᎾᎥᏂ.\n[ᎬᏩᏍᏓᏩᏗᏙᎯᏃ] ᎤᏅᎨᏫᏒᎯ ᎨᏎ ᎦᏚ ᏧᎾᏕᏅᏗᏱ, ᎥᏝ ᎠᎴ ᏳᎶᏒᏍᏕ ᏌᏉ ᎦᏚ ᎤᏂᎸ ᏥᏳᎯ.\n”ᏰᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ.”\nᎾᏍᏉ ᎢᎸᎯᏢ ᎯᎠ ᏂᎦᏪᎭ, ᎠᏥᎸ-ᎮᎶᎯ ᏂᎯ ᏂᎪᎯᎸᎢ ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ.\nᏂᎨᎵᏍᎪᏗ ᏴᎬᏍᏆᏓᎩᏄᎦ ᎠᎦᏛ ᎬᏂᎬᎬᎢ.”\nᎠᎳᏂ ᎤᏍᎦᏤ ᏣᏄᏏ.\nᎠᏂᎦᏗ ᏴᏫ, ᎤᏍᏗᎩ ᎤᏂᏴᏍᏗ.\nᎾᏍᎩᏃ ᏗᏯᎥ ᏴᏓᎧᏁᎩ ᎯᎠ ᏱᏅᏓᎦᏫ, ᏞᏍᏗ ᏍᏆᏕᏯᏙᏔᏅᎩ; ᎦᎶᎯᏍᏗᏱ ᎦᏳᎳ ᎠᏍᏚᎭ, ᏗᏂᏲᎵᏃ ᏗᏇᏥ ᎣᏥᏂᏝᎠ, ᎥᏝ ᏰᎵ ᏴᎦᎦᏗᏛ ᏱᏙᎦᎬᎥᏏ.\n“Ꮘ-Ꮘ-Ꮘ!”\nᎠᏂᏐᎢᏍᎩᏂ ᎨᏥᏅᏏᏛ ᎥᏝ ᎩᎶ ᏱᏥᎪᎡ ᏥᎻ ᎤᏩᏒ ᎤᎬᏫᏳᎯ ᎠᎾᎵᏅᏟ.\nᏓᎧᏁ ᏲᎾ ᎤᏤᏍᏙ ᎤᏓᏅᏖᏗᏍᎩ ᏗᎧᏃᏗ ᎤᎧᏛ.\nᎠᏆᏎᎪᏔᏅ, ᏅᎩ ᎢᏯᏂ ᏕᏥᏲᎸ ᏇᎯ ᎦᏄᎸ ᏎᎷ ᏓᏫᏒ.\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏧᏓᎴᏅᏛ ᎨᏒ ᎢᎬᏁᎯ ᏱᎩ, ᏅᏩᏙᎯᏯᏛᏍᎩᏂ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏥᏄᏍᏗ ᏂᎦᏛ ᏚᎾᏓᏡᏩᏗᏒ ᎤᎾᏓᏅᏘ.\nᎨᏍᏗ ᏳᏓᏅᏖᎳ.\nᎦᏙ ᎤᏲᎢᏴ ᏃᎴ ᏚᏑᎬ ᎯᏍᎩᏍᏆ ᎢᏯᏂ ᎠᏂᏍᎦᏯ ᏧᎾᏗᏍᎦᎳᏁᏗ ᏐᏉ ᎢᏯᎦᏴᎵ ᎢᏯᏂ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᏲᎩᏩᏔᎲ.\nᎤᏟᏰᏃ ᎤᏂᏰᎸᏒᎩ ᏴᏫ ᎤᎾᏓᎸᏉᏙᏗ ᎨᏒ ᎡᏍᎦᏉ ᎤᏁᎳᏅᎯ ᎤᏓᎸᏉᏙᏗ ᎨᏒᎢ.\nᎠᏏᏴᏫ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏅᏏᏓᏍᏗ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᎬᎪᎡ ᏥᏍᏕᏙᎲᎩ ᎠᏫᏒᏗᏱ?\nᎤᏛᎦᏅᏃ ᎾᏍᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᎨᏒᎢ, ᎤᎴᏅᎮ ᎤᏪᎷᏁ, ᎯᎠ ᏄᏪᏎᎢ, ᏕᏫ ᎤᏪᏥ, ᏥᏌ, ᏍᎩᏙᎵᎩ.\nᎥᎥ, ᎾᏍᎩ ᏂᎦᏪᏍᎬ ᎡᏙᏓ, Ꮭ ᏍᎩᏂ ᏣᏓᏅᏖᎢ.\nᎭᏕᏬ! ᎭᏕᏬ! ᎨᏍᏗ ᎠᏯ ᎬᏍᏆᎵᏍᎦᏍᏙᏗ ᏱᎩ .”\nᎾᏍᎩᏰᏃ ᎯᎠ Ꮀ ᎤᎬᏩᎸᎩ ᏥᏫᏨᏲᏪᎳᏁᎸᎩ, ᎾᏍᎩ ᎢᏨᎪᎵᏰᏍᎬᎩ, ᎾᏍᎩ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᏂᏨᏪᏎᎲ ᏂᏣᏛᏁᎲ ᎠᎴ ᏂᏣᏛᏁᎲᎾ ᎨᏒᎢ.\nXVIII. ᎤᏁᏌᎯᏴᏓ ᎤᎵᏏᏂᏕᎾ  \nᎣᏍᏓ ᏯᎩᏰᎸ ᏣᎵᏍᏙᏂ ᏱᎨᏙᎮ, Dock Street ᏱᎦᎢᏎ, ᎤᏛᏅ ᏣᎵᏍᏙᏂ ᏓᏳᎶᏒ ᎠᏧᏣ.\n”ᎨᏍᏗ ᏱᏘᎵᏬᏥ,” ᎤᏛᏁ ᏌᎳᏓ ᎬᏣᏗ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᎤᏓᎨᏳᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᏓᏚᏓᏙᏗ ᎨᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᎢᎨᏙᎸᎯ ᏥᎩ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᏥᏌ ᎢᎨᎳᏗᏙᎸᎢ,\nᏔᎵᏁᏃ ᎤᏁᎷᏁᎢ ᎯᏯᏛᎥᎦ ᎤᎾᏛᏁᎢ.\nᏃᏗ ᎦᏓᎥ ᎱᎾᎦᏙᏍᏔᏁᎢ.\nᏔᎳᏚ ᏓᏂᏃᎩᏍᎬ ᎨᏍᏗ ᎤᎯᏐᏗ ᏱᏄᏩᏁᎮ ᏫᎵᎻ.\nᎢᎦᏓ ᎠᏔᎴᏒ ᎤᏂᏁᎩᏍᏗ ᎠᎹ ᎤᏴᏣ ᎦᏩᏙᎤᏍᎬ, ᎤᎸᏂᏗᏍᎩ ᎠᏑᎳᎩᏍᎨ, ᏫᏓᏗᎩᏍᎨ ᎠᏔᎴᏒ, ᎠᏎ ᎤᏬᏨᏛ.\nᎠᏰᎵ ᎦᎵ ᏚᏂᎨᎯᏙᏅ ᏴᏫ ᏍᎩᏴ ᎪᎩ.\nᎯᎠ ᏥᏄᏪᏎᎢ; ᎯᎠ ᏴᏫ ᏘᏩᏛᎱᎦ, ᎠᎴ ᎯᎠ ᏫᏂᏫ; ᎢᏣᏛᎩᏍᎬᎢ ᎢᏣᏛᎩᏍᎨᏍᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏦᎵᎨᏍᏗ, ᎠᎴ ᎢᏥᎪᏩᏘᏍᎬᎢ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎠᏎᏃ ᎥᏝ ᏱᏣᏙᎴᎰᏍᎨᏍᏗ.\nᎤᏙᏩᏗᏍᎬ ᏚᏃᏞ ᏗᏂᏲᏟ, ᏧᏍᏆᏅᎾ ᎢᎦ ᎱᎾᎵᏍᏔᏴᏃᎾ, ᏚᎾᎾᏏᏁᎢ ᏃᎴ ᏚᏂᏢᏁᎢ.\nᏫᎦᎷᎩᏃ ᎠᏩᏘᏍᎪ ᎬᏃᏌᎲᎯ ᎠᎴ ᎪᏚᎢᏍᏔᏅᎯ ᎨᏐᎢ.\nᎤᏂᏁᏨᏃ ᎯᎠ ᏄᏂᏪᏎᎴ ᏥᏌ, ᎥᏝ ᏲᏥᎦᏔᎭ. ᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ ᎾᏍᏉ ᏴᏫ ᏴᏓᏨᏃᏁᎵ ᎢᏳᏍᏗ ᎠᏆᎵᏍᎦᏍᏙᏛ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏛᏁᎭ.\nᏨᏓᏥ ᎠᏥᎸᏍᎩ ᎤᎵᏍᎬᏓᎨ ᎧᎵ ᎨᏐ ᎤᏅᏗ, ᏦᎢ ᎤᏆᏅᏕᎾ ᎦᏄᎸ ᎧᎵ ᎤᏓᏁᎲ, ᎠᏴᏣᏗᏍᏗᏍᎩ ᎧᎵ ᏕᎦᎶᏙ ᏧᏴᏣ ᏗᏗᏔᏍᏗ.\nᎦᎵᎡᎵᎦ ᎬᎩᎷᏤᎸ ᏍᏗᏇᎾ ᎠᎴ ᏉᏚᏁᏓ ᎠᎴ ᎠᎦᏱᎦ; ᏂᎯᏰᏃ ᏥᏥᎷᎶᏤᎲᎩ ᎠᏂᎧᎵᏏᏌ ᎾᏍᎩ.\nᎠᏂᏐ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎠᏃᎦᏍᎬ ᎪᏛ ᎤᎾᎦᏙᏍᏛ.\nᎾᏍᏉᏍᎩᏂ ᎢᏨᏲᏎᎭ ᎠᎾᎵᎮᎵᎪ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏌᏉ ᎠᏍᎦᎾ ᎦᏁᏟᏴᎾ ᎤᏓᏅᏛᎢ.\nᎨᏍᏗ ᏳᎾᎦᏎᏍᏔᏅ ᏓᏒᎭᏂᎲ ᏗᏂᏐᎯ, ᎦᏣᏃᏍᏓ ᏓᎾᎴᎲᏍᎨ ᎾᏍᎩᏯ ᎦᎾᏌᎢ ᏪᏌ.\nᎤᎷᏨᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᏭᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏗᏍᏇᏲᎲᏍᎩ, ᏗᏍᏇᏲᎲᏍᎩ; ᎠᎴ ᎤᏚᏣᎳᏁᎢ.\nᎬᏩᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ.\nᎤᎾᏕᎰᏔᏃᏅᏃ ᎤᏂᏄᏪᏎ ᎦᏌᎴᎾ, ᎠᎴ ᎤᏩᏒ ᏧᏄᏪ ᏚᏂᏄᏬᎡᎢ; ᎠᎴ ᎤᎾᏛᏗᏱ ᏭᎾᏘᏅᏍᏔᏁᎢ.\nᏂᎦᏛ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎸ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᏕᏥᎸᏫᏍᏓᏁᎲ ᏗᏥᏍᏕᎸᏗᏱ ᏗᏂᏩᎾᎦᎳᎢ, ᎠᎴ ᎢᏣᏅᏓᏗᏍᏗᏱ ᏧᏁᏤ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎯᎠ ᏥᏄᏪᏎᎢ, ᎤᏟ ᎣᏏᏳ ᎠᏓᏅᏓᏗᏍᏗ ᏴᏓᏁᎭ, ᎡᏍᎦᏉ ᏴᏓᏗᏁᎭ.\nᎦᎪᏰᏃ ᎤᎦᏙᎥᏐ ᏄᏍᏛ ᎤᏓᏅᏛ ᏱᎰᏩ? ᎠᎴ ᎦᎪ ᎤᎾᏖᏉᎶᏃ ᎤᎾᏓᏅᏖᎶᎢ?\nᏗᏨᏂᏗᏳ ᎢᏣᎵᏍᏙᏗᏱ ᎤᏚᎸᏗᏳ ᏂᏣᎵᏍᏓᏁᎭ; ᎾᏍᎩ ᎿᏉ ᎤᏁᎳᏅᎯ ᎤᏏᏳ ᎤᏴᎸᏗ ᎨᏒ ᎢᏣᏛᏁᎸᎯ ᎨᏎᏍᏗ, ᎢᏣᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᏄᏍᏛ ᎠᏚᎢᏍᏛᎢ.\nᎠᏆᎵᏍᏇᏔᏬ ᎡᎳᏗ ᎾᏆᏅ ᏃᏊᎴ ᎤᎭᎨᏓ ᎦᏌᎴᏂᏍᏊ.\nᎠᏓᏍᏓᏴᏗ ᏚᎷᏫᏍᏔᏁᎲ ᎤᏛᎦᏁᎢ ᎠᎳᏂ ᏃᎴ ᎤᎯᏐᏗ ᎤᎷᏤᎴᎢ ᏍᏉ.\nᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᏴ ᏫᏥᏙᎬ ᎠᏲᏓᏌᎵᎥ, ᎣᎭᏁ ᎠᏦᎭᏴ ᏫᏓᏊᏓᎸᏅ ᏐᏈᎵ ᏧᏔᎾᎶ.\nᏚᏑᎬ ᎭᏫᏂᏨ ᏚᏥᏡᏅ, ᏧᏍᏆᏅᎾ ᎬᏘ ᎤᏚᏒᏅ ᎤᎦᏘᏛ.\nᎤᏍᏆᏙᎾ ᎠᎳᏂ ᏃᎴ ᎤᎧᎭᏲᏔᏃᎾ, ᏭᎬᏫᏳᏒ ᎤᏓᏅᎦᎸᏓ ᏃᎴ ᎤᏬᏚ ᏏᏆ ᏄᎵᏍᏔᏁᎢ.\nᏣᏁᎳ ᎢᎦ ᏥᎨᏒ ᏧᏪᏥ.\n”ᎣᏏᏉᏍᎪ ᎠᎵᏍᏓᏴᏗ ᎠᎩᎶᏙᏗ ᏱᏩᏇᏙᎳ ᏛᎩᎦᏛᏂ ᎦᏲᏟ ᏯᏆᏘᏰᎳ ᎤᏒᎮᎯ ᎠᎵᏍᏓᏴᏗ?\nᎠᎴ ᎥᎬᏩᏛᏛᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᎪᎨ? ᎢᎳᏯᏯᎪ ᏂᎯ? ᎯᎠᏃ ᏄᏪᏒᎩ; ᎥᏝ. ᏥᎪᎨ ᎾᎠᏙᎴᎰᏍᎩ ᏂᎯ? ᎥᏝ, ᎤᏛᏅᎩ.\nᎠᏆᏛᏅ.\nᏂᎦᏗᎹᏏ,-ᏥᏌ ᏒᏃᏱ ᎤᎷᏤᎸᎯ, ᎾᏍᎩ ᎨᎸᎩ,-ᎾᏍᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ;\nᏙᎢᏳᏍᏗ ᏚᏙᎠ ᏍᎩᎾᎾ ᏏᏆ?”\nᎠᏂᏆᎵᏏᏰᏃ, ᎠᎴ ᎾᏂᎥᏉ ᎠᏂᏧᏏ, ᎢᏳᏃ ᎣᏍᏛ ᏂᏚᎾᏑᎴᎲᎾ ᏱᎩ, ᎥᏝ ᏱᎾᎵᏍᏓᏴᎲᏍᎪᎢ, ᏓᏂᎧᎿᏩᏕᎪ ᏄᏂᏪᏒ ᎡᏘ ᎤᎾᏕᏅᎯ.\nᎠᏎᎩ ᎢᎪᎯᏓ ᎮᎮᏍᏗ---ᎧᎪ ᏯᎧᏔᎭ? \nᎣᏍᏓ ᎯᎩᏍᏙᏍᎨᏍᏗ ᏣᎵᏍᏓᏴᏗ ᏃᎴ ᎦᏲᏟ ᎯᎯᏱᏍᎨᏍᏗ ᏧᏍᏆᏴᏍᏗ ᎤᎩᏍᏗ.\nᎿᏉᏃ ᎾᎯᏳ ᎢᎦ ᎤᏒᎢ, ᎠᎴᏂᏍᎬ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎦᎶᎯᏍᏗᏱ ᏓᏍᏚᎲᎩ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᏓᏂᎳᏫᎥᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᏓᏂᏍᎦᎢᎲ ᎠᏂᏧᏏ, ᎤᎷᏨᎩ ᏥᏌ, ᎠᏰᎵ ᎤᎴᏅᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ.\nᏰᎵᏉ ᏕᎭᏁᎶᏓ ᏃᎴ ᎭᏛᎯᏍᏔᎾ ᏏᏆ ᎤᏍᏗ, ᏃᎴ ᎨᏍᏗ ᎤᏍᏗ ᏱᎩ ᏫᎵᎻ, ᎠᏎ ᎦᎾᏗᏅᏗ.” \nᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᏣᏓᎨᏳᏒᎢ, ᎠᎴ ᏕᎭᏓᏁᎳᏁᎲᎢ, ᎠᎴ ᏦᎯᏳᏒᎢ, ᎠᎴ ᎲᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ; ᎤᎵᏍᏆᎸᏗᏁ ᎤᏟ ᎢᎦᎢ ᎨᏒ ᎡᏍᎦᏉ ᎢᎬᏱᏱ.\nᎩᎶ ᎠᏂᏴᎩ ᏓᏘᎾᏫᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏴᎩ ᎠᎦᏘᏁᏫᏛᏗ ᎨᏎᏍᏗ; ᎩᎶ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎠᏓᎯᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏎ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎬᏗ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ. ᎠᏂ ᎾᏍᎩ ᏗᏅᏂᏗᏳ ᎨᏒ ᎠᎴ ᏃᎯᏳᏒ ᎤᎾᏓᏅᏘ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ.\nᎿᏉᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎢᏴᏛ ᏫᏚᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᏥᎷᏏᎵᎻ ᏫᏗᎦᏘ, ᎠᎴ ᏂᎦᎥ ᏚᏃᏪᎸ ᎠᎾᏙᎴᎰᏍᎩ ᏴᏫ ᎤᏪᏥ ᎠᏥᏃᎮᏍᎬ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ.\nᎤᏒᎯ ᎤᎶᎩᎸᎰᏅ ᏱᎩ ᏃᎴ ᎨᏴ ᎤᏃᏴᎬ ᏃᎴ ᎠᏙ ᏓᏳᏓᎴᏅ ᎤᏃᏴᎬ, ᎠᏓᎯ ᏱᏂᎦᎩ, ᎨᏍᏗ ᎣᏍᏓ ᏯᏂᏟᏅᎨ.\nᏣᎵᏓᏍᏓ, ᎨᏍᏗ ᎠᏣᏗ ᏱᎩ ᎠᏯ...ᎠᎩᏯᏍᎦᏟ.\nᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᎨᏎᏍᏗ ᎠᎦᏔᎲ ᎾᏍᎩ ᎤᎬᏩᎴᎢ ᏧᎵᏁᏃᏗ ᏧᏭᎪᏓᏁᏗᏱ ᏗᏅᏃᏛ ᎠᎴ ᏧᏂᏲᎱᏒᎯ.\nᎤᎯᏐᏗ ᏄᏛᏅ ᎤᎵᏏᎩ ᎠᏙᎯ.\nᎭᎾᏓᏬᏍᎬ ᏃᎴ ᎠᏏ ᏓᎾᏓᏍᏚᏥᏍᎬ ᏗᏂᏲᏟ, ᏌᏬᏚ ᏓᏁᎶᎲᏍᎨ ᏫᎵᎻ. ᎤᎦᏃᏩ ᏃᎴ ᏧᎦᏣᎳᎩᏍᏗ ᎨᏎ ᏌᏬᏚ.\nᎠᎴ ᎢᎸᏍᎩ ᏧᎾᏍᏗ ᎠᏣᏗ ᏓᏂᏁᎮᎢ, ᎤᎵᎮᎵᏨᏃ ᎤᏁᏤ ᎾᏍᎩ ᎾᏍᏉ ᎢᎬᏱᏗᏢ ᏧᏂᏅᏗᏱ.\nᎤᏗᏍᎦᏝᏩᏕᎨ ᏧᏍᏆᏴᏍᏗ.\n[ᏥᏌᏃ] ᎾᏍᎩ ᏄᏪᏒ, ᎢᎬᏱ ᎤᏪᏅᎭ ᎤᎿᎷᏎ ᏥᎷᏏᎵᎻ ᏩᎦᏖᎢ.\n“Ꭵ,” ᏧᏛᏁ.\nᏥᎪ ᎩᎶ ᏳᏅᏍᏙᎯ ᎠᎹ ᎯᎠ ᎾᏍᎩ ᏗᎨᎦᏬᏍᏗᏱ ᎾᏍᎩ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏥᎨᏥᏁᎸ ᎾᏍᎩᏯ ᎠᏴ ᎡᎨᏁᎸᎢ?\nᎤᏲᎰᏒ ᎦᎾᎡ ᎦᏙ. ᎤᏬᏚᏨ ᎤᏬᏒᏅ ᎤᏁᏝᏅ.\nᎢᎸᎯᏢᏃ ᎠᏓᏁᎸ ᎢᏥᏴᎯᎮᏍᏗ ᎾᎭᏉ ᎢᏥᏁᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏣᏂᎩᏍᎨᏍᏗ.\n“ᎨᏍᏗ ᎨᎩᏲᎰᏎᏗ ᏱᎩ ᏗᎩᎷᏫᏍᏓᏁᏗ!” ᎤᏪᎷᏁ ᎰᎻ.\n”ᎠᏎᏱᎩ ᎭᏩ ᏯᏂᏬᏂ,” ᎤᏛᏁ.\nᏃᏉᏗ ᎤᏕᏯᎵᏙᎴᎢ ᎠᏓᏏᏙᎮᎢ, ᏗᎩᏏ ᎦᎸᎳᏗ ᎢᏣ ᎠᎶᏕᏍᏗᏍᎨᎢ.\nᎧᎪᏃ ᏛᎩᏍᏕᎸᎯᎢ\nᎯᎠᏃ ᏂᏥᏪᏍᎪᎢ; ᎢᏳᏃ ᎠᏴ ᏲᏤᎮ ᎾᎯᏳ ᏦᎩᏙᏓ ᏣᏁᎮᎢ, ᎥᏝ ᏱᏙᎦᏲᏣᎵᎪᏁᎴ ᎩᎬ ᏚᎾᏤᏪᎸ ᎠᎾᏙᎴᎰᏍᎩ.\nᎠᏏᏴᏫᏰᏃ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐ ᎠᏓᏅᏙ ᎠᏏᎾᏍᏛ ᎤᏬᏂᎯᏍᏗᏱ; ᏅᏩᏓᎴᏃ ᎠᎦᏔᎾᎢ ᎢᎦᎦᏛ ᎤᏬᏂᎯᏍᏗᏱ ᎾᏍᎩᏉ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐᎢ;\n”ᎭᏩ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎢᏳᏍᎩᏂᏃ ᎾᏍᎩ Ꮎ ᎤᏁᎫᏥᏛ ᎠᏥᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎦᏪᏍᎨᏍᏗ ᏧᏓᏅᏛᎢ; ᎠᎩᏅᏏᏙᎯ ᎪᎯᏗᎭ ᎤᎷᎯᏍᏗᏱ;\nᎤᏓᎸᏉᏗ ᏚᎧᎾᏁᎢ ᏚᎾᎧᏛᎢ ᎢᏴ ᏫᎵᎻ.\nᎿᏉᏃ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ ᎤᏣᏘ ᏦᎯᏳᎭ; ᏄᏍᏛᏣᏚᎵᏍᎬ ᏫᏂᏣᎵᏍᏓᏏ. ᎾᎯᏳᏉᏃ ᎤᏪᏥ ᎤᏗᏩᏎᎢ.\nᎰᏩᏃ ᏫᏚᏯᏅᎮ ᏂᎦᏛ ᎤᏅᏏᏙᎯ ᏧᏚᎩ, ᎢᎬᏱᏱᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᎳᎪ ᎢᎦᎢ ᏣᏚᎦ ᎠᎩᏅᏏᏙᎯ.\nᎠᎴ ᎦᏙ ᎤᏍᏗ ᎤᏠᏱ ᏄᏅᏅ ᎦᎶᏁᏛ ᎠᎴ ᏈᎵᏱᎵ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎢᏧᎳᏉ ᎤᎾᏤᎵᎦ ᎨᏐ ᎪᎯᏳᎲᏍᎩ ᎠᎴ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ?\nᏄᏟᏂᎬᎬ ᏭᏓᏓᎩᏅᏎ, ᎠᏍᎪᎵ ᎢᏣ ᎠᎬᏱ.\nᎠᎴ ᎢᏨᏔᏲᏎᎭ, ᎢᏓᎵᏅᏟ, ᏕᏤᏯᏔᎲᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏄᎾᏁᎸᎾ, ᏕᏥᎦᎵᏍᏓᏗᏍᎨᏍᏗ ᏗᏩᎾᎦᎳ ᏧᎾᏓᏅᏘ, ᏕᏥᏂᏴᏎᏍᏗ ᏗᏂᏩᎾᎦᎳᎢ, ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ ᎾᏂᎥ [ᎤᏣᏘᏂ ᏂᎨᏣᏛᏁᎲᎢ.]\nᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏣᏛᏁᎮᏍᏗ ᎠᏗᏒᏍᏗ ᎨᏒ ᎠᎴ ᎠᏎᏉ ᎠᏢᏈᏍᏗ ᎨᏒ ᎬᏗ; ᎡᎳᏗᏉᏍᎩᏂ ᏂᏕᏨᏅ ᏕᏣᏓᏅᏛ ᎢᏥᏏᏴᏫᎭ ᎤᏟ ᏂᏕᏥᎸᏉᏕᏍᏗ ᎠᏂᏐᎢ ᎡᏍᎦᏉ ᎢᏨᏒ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎣᎬᏒ ᎣᏣᏢᏈᏍᎦ ᎢᏨᏁᎢᏍᏗᏍᎬ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏍᏗᏒ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎾᏍᎩ ᏗᏨᏂᏗᏳ ᎨᏒ ᎠᎴ ᎢᏦᎯᏳ ᎨᏒ ᏂᎦᎥ ᎤᏕᏯᏙᏗ ᎠᎴ ᎠᎩᎵᏯ ᎢᏥᎷᏤᎲᎢ;\nᎬᎨᏳᎢ, ᏚᏳᎪᏛ ᎿᏛᏁᎭ ᏂᎦᎥ ᏂᏕᎭᏛᏁᎲ ᎤᎾᎵᎪᎯ ᎠᎴ ᎠᏁᏙᎯ.\nᎾᏍᎩᏰᏃ ᎠᏍᎦᏂ ᎾᎦᏔᎲᎾ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎠᏍᎦᎾ ᎤᏰᎸᏅ ᎠᏴ ᎨᏒ ᏅᏧᎵᏍᏙᏔᏅ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎠᏴ ᏂᏗᏍᎦᏅᎾ ᎢᎩᏰᎸᏗᏱ ᎤᏁᎳᏅᎯ ᏕᎦᎧᏂᏍᎬᎢ.\nᎠᎴ ᎨᏍᏗ ᏗᎾᏟᎯ ᏃᎴ ᏗᎾᏓᎾᏒᎲᏍᏗ ᎢᎫᏩᎾᎵᏍᏙᏗ ᏱᎩ.\nᏲᏎᎢ ᎣᏍᏓ ᎬᎪᏩᏛᏗ ᏱᎨᏎ ᏫᎵᎻ. ᏂᎯ ᏍᎩᎪᏩᏘᏍᎬ ᎢᏲᏍᏓ.\nᎠᎴ ᏨᏍᎩᏃᎢ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ ᎠᎩᎵᏲᎨᎢ, ᎠᎴ ᎾᎿ ᎢᏅ ᏭᎪᎮ ᎡᏆᎭᎻ, ᎠᎴ ᎳᏏᎳ ᎡᏆᎭᎻ ᎦᏁᏥᎢ.\nᎠᎴ Ꭴ'ᏃᏅᎩ, ᎠᎴ ᎥᏝ ᏳᏓᏱᎴᎢ, Ꭴ'ᏃᏅᏉᏍᎩᏂ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎠᏴ ᎦᎶᏁᏛ ᏱᎩ.\nᎦᏰᎵᏍᏗ ᏳᏫᎦᏢᎾ, ᎾᏍᎩᏯ ᎣᏍᏓ ᏅᎩ ᏗᎦᏅᏌᏗ.\nᏦᎨᏏ, ᎦᎵᏦᏕ ᎾᎥᏂ, ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎠᏙᎯ, ᎦᏓᏁᏍᏙ---ᏂᎬᎾᏛ ᎠᏓᎨᏳᏗ ᏃᎴ ᏗᎧᏃᎩᏓ ᏃᎴ ᏚᎾᏁᏍᎩᎸ ᏃᎴ ᏧᏪᏥ.\nᎡᎳᏗᏃ ᎠᎩᏅᏨᎩ, ᎧᏁᎬᏃ ᎠᏆᏛᎦᏅᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏐᎳ, ᏐᎳ, ᎪᏙᏃ ᎤᏲ ᏂᏍᏋᏁᎭ?\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎾᏍᎩ ᎤᎪᏗ ᎤᏭᏖᏛ ᎥᏝ ᏳᏘᏰᎮᎢ; ᎾᏃ ᎦᏲᎵ ᎤᏭᏖᏛ ᎥᏝ ᏳᎷᎶᏤᎮᎢ.\nᏈᏓᏃ ᏥᎷᏏᎵᎻ ᏭᎷᏨ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏕᎬᏩᎦᏘᎸᏎᎢ,\nᏂᎦᏓ ᏥᎦᏔᎲ ᏄᎾᏍᏛ, ᏂᎦᏗᏳ ᏗᏃᎵᎩ.\nᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᎤᏠᏱᏉ ᎠᎵᏍᏓᏴᏗ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎠᎾᎵᏍᏓᏴᏗᏍᎬᎢ,\nᎾᏂᎥᏰᏃ ᎤᏅᏒ ᏚᎾᎵᏅᏫᏍᏗᏕᎬ ᎠᏂᏰᎮᏍᏗ.\nᏥᏍᏆᏯ ᏗᎧᏃᎩᏍᎩ ᏛᎦᎷᏥ ᏃᎴ ᏓᎧᏃᎩᏏ, ᏩᎶᏏ ᏛᎠᏂᏰᏥ, ᎤᎦᏃᏩ ᏛᎦᏃᎸᏂ.\nᎤᏩᏓᎴ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᎣᏍᏛ ᎤᎦᏔ ᎤᎶᎨᏒ ᏧᏫᏎᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᏔᎵᏁ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ;\nᎤᏔᏂᏓ ᎢᎾᏓ\nᎾᏍᎩ ᎠᏁᏙᎮ ᎾᎿ ᎦᏓ ᎠᎲ ᎠᏥᎦᏘᏗᏍᏗ ᏌᏥᏯ ᏉᎳ ᏧᏙᎢᏛ ᎠᎦᏔᎿᎢ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏫᏚᏯᏅᎮ ᏆᏂᏆ ᎠᎴ ᏐᎳ ᎤᏔᏲᎴ ᎤᏛᎪᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎤᏁᏍᏔᎵ ᎢᏧᏴᏣ ᎨᏎ ᏅᏯ, ᏂᎪᎯᎸᎾ ᎩᎦ ᏓᏔᏍᎩᏍᎨ ᏕᎦᏰᏌᏛ ᏅᏯ ᏚᏰᏝᎸ.\nᎤᎵᏍᏆᎸᏗ ᎤᏍᏗ ᎧᏅᏂᏍᎩ ᎤᎴᏫᏍᏔᏁ ᎤᏟᏃᎮᏔᏁ ᏫᎵᎻ Ꮟ ᏱᎪᏒᏍᎬᎾ ᎤᏃᎴ ᎠᏲᏙᏗ.\n”ᎭᏩ, ᏏᏲ!” ᏂᎬᎾᏛ ᎤᏰᏥᏍᎨ.\nᎩᎦᎨ ᎠᏯᏦ ᎤᎭᏯᏨ, ᏌᎪᏂᎨ ᎤᏅᏣᏘ ᎤᎭᏄᏮ, ᎤᏬᏗᎨ ᎤᏑᎸ, ᏃᎴ ᏗᎪᎢᎭ ᏧᏣᏬᏓ ᏚᎳᏑᏢ ᏱᏗᎪᏚᎢᏍᏛᎾ.\nᏌᏌ ᎤᏅᏫᏍᏔᏁ ᏫᎵᎻ, ᏣᏄᏏ ᏗᎦᏅᏍᎨᏂ ᎠᏰᎵ ᏭᏓᏒᏍᏔᏁᎢ.\nᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏧᏏ ᎤᎾᎵᎪᏁᎢ, ᎤᎾᏎᎵᏔᏁ ᏚᎾᏓᏁᏤᎴ ᎨᏥᏍᎩᏅᏗᏍᏗᏱ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᎪᎱᏍᏗ ᏴᎨᏗᎦ ᎠᎴ ᏴᎨᏓᏗᏔ, ᎬᏂ ᏉᎳ ᎡᏗᎸᎯ ᎨᏎᏍᏗ.\nᎿᏉᏃ ᏚᏍᏆᎸᏔᏅᎩ, ᏌᏩᏂ ᏈᏓ ᏭᎷᏤᎸᎩ, ᎠᎴ ᎾᏍᏉ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᏥᏌ ᎤᎨᏳᎯ, ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎤᏂᏁᏒ ᎤᏂᏄᎪᏫᏒ ᎤᎬᏫᏳᎯ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᎥᏝ ᏲᏥᎦᏔᎭᏭᏂᏅᏅᎢ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᎡᏍᎦ ᏱᏓᏣᎵᏍᏓᏁᎵ ᏃᏉ.\nᎯᎠ ᏄᏂᏪᏎᎴ ᎡᎳᏂ; ᏗᏍᎩᏲᏢᎾᏏ ᏦᎦᏁᎳᏅᎯ ᏗᎪᎦᏘᏂᏙᎯ, ᎯᎠᏰᏃ ᎼᏏ ᎢᏥᏈᏱ ᏂᏙᏓᏲᎦᏘᏅᏍᏔᏅᎯ ᎥᏝ ᏲᏥᎦᏔᎭ ᏄᎵᏍᏓᏁᎸᎢ.\nᎡᎵ ᏎᎦ ᏓᏆᎧᎾᏅ ᏗᎪᏪᎵᏍᎩ, ᎭᏩ ᏣᏣᏅᏓᏕᎸ ᎤᏛᏅ.\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎤᏂᏲᎴ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ; ᏓᏂᏍᎦᎢᎮᏰᏃ ᏴᏫ.\n“ᏗᏍᏉᏏᏌᏏ, ᎨᏍᏗ ᏱᏓᏘᎪᎭ ᏗᏣᏤᎵ ᏗᏂᏲᏟ! \nᎣᎩᏁᎫ ᎠᏴ ᎦᎶᏁᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᏂᎯᏍᎩᏂ ᎢᏥᎦᏔᎿᎢ ᎦᎶᏁᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᏦᏥᏩᎾᎦᎳ ᎠᏴ, ᏂᎯᏍᎩᏂ ᏗᏣᎵᏂᎩᏗᏳ; ᎡᏥᎸᏉᏗᏳ ᏂᎯ, ᎠᏴᏍᎩᏂ ᎣᎩᏂᏆᏘᎯ.\nᎢᎬᏱᏱ ᎨᏒᎢ, ᏥᏯᎵᎡᎵᏤᎭ ᎠᏆᏁᎳᏅᎯ ᎬᏗᎭ ᏚᏙᎥ ᏥᏌ ᎦᎶᏁᏛ, ᏂᏥᎥ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏦᎯᏳᏒ ᏂᎬᎾᏛ ᎡᎶᎯ ᎠᏂᏃᎮ ᏍᎬᎢ.\nᎯᎠ ᎾᏍᎩ ᎢᎦᏪᏛ ᏥᎩ ᎤᎪᎯᏳᎭ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᏓᏯ ᏕᎯᎬᏍ\\ᎸᏅᎭ, ᎾᏍᎩ ᎤᎪᎸ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏃᎯᏳᏒᎢ;\n“ᎡᎳᏆᏗ ᎭᎴᏫᏍᏔ!” ᎤᏛᏁ ᎤᏥ.\nᎾᏍᎩ ᎠᎦᏘᏗᏍᏙᏗ ᏥᎩ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ, ᎬᏂ ᎢᎦᏤᎵᎦ ᏂᏛᏁᎸᎭ ᎠᎫᏴᏛ ᎠᏩᏒᎯ ᎢᎦᏤᎵᎦ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ.\nᎾᏥᏙᎵᎬᎾᏰᏃ ᏣᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ ᏄᏓᏙᎵᏨᎯ; ᎠᏓᏙᎵᏍᏗᏃ ᎨᏒ ᎠᏓᎵᏁᏗᏕᎭ ᏗᎫᎪᏙᏗ ᎨᏒᎢ.\nᏫᏥᎢᎦ ᎢᎦ ᏓᏲᎾᏍᏓᏢᎥ ᎠᏂᏟᏅ ᎠᎴ ᎠᏥᎸᏳᎵ ᎾᎥ ᎠᏂᏅ ᏯᏂᏬᏂᏍᎬᎾ.\nᏔᎵᏚ ᎢᏳᏩᎬᏘ ᎤᏰᏤ ᏫᎵᎻ, ᎬᏂᎨᏍᏙ ᏫᏓᎧᏁᎢ, ᎤᏛᎦᏍᏕᎢ ᎤᏃᏴᎬ ᏃᎴ ᎠᏓᏅᏖᏍᎨ ᎢᏳᏩᏂᎸ ᎨᏒ.\nᏗᏣᎧᎾᎦ, ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ! \nᎠᏂᏧᏏᏃ ᎤᏂᏔᏲᏎᎸᎩ ᏆᎴᏗ ᏗᏂᏅᏍᎨᏂ ᏗᎨᏥᏍᏆᎵᏎᏗᏱ ᎠᎴ ᏗᎨᏥᏁᏍᏗᏱ, ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎨᏒᎢ, ᏞᏍᏗ ᎤᎾᏙᏓᏆᏍᎬ ᏱᏗᎦᏕᏍᏗ ᎠᏁᎵᏍᎬᎩ, ᎾᏍᎩᏰᏃ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎦᎸᏉᏗᏳ ᎨᏒᎩ.\nᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏧᏏ, ᎾᏍᎩ ᎭᏫᏂᏗᏢ ᎠᏧᏏ ᏥᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎤᎾᏫᏱ ᎡᎯ ᏥᎩ, ᎤᏓᏅᏙᎩᎯ ᎡᎯ, ᎥᏝᏃ ᎪᏪᎵᏉ ᏂᎦᏪᏍᎬ ᏗᎧᎿᏩᏕᎩ; ᎾᏍᎩ ᎥᏝ ᏴᏫᏉ ᎬᏩᎸᏉᏙᏗ ᏱᎩ, ᎤᏁᎳᏅᎯᏍᎩᏂ.\nᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎤᏁᎳᎩ ᎮᎳ ᎪᎯ ᎨᏒᎢ, ᎣᏏᏳᏰᏃ ᎾᏍᎩ ᎢᎩᎾᏛᏁᏗᏱ ᎩᏂᏍᏆᏗᏍᏗᏱ ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒᎢ. ᎩᎳ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎴᎢ.\nᎾᏍᎩ ᎠᏴ ᎬᏅ ᎠᏂᏍᏕᎵᏍᎬᎢ,ᎤᏅᏒ ᏗᏂᏴᏤᏂ ᎡᎳᏗ ᏚᏂᏅᏅ; ᎾᏍᎩ, ᎥᏝ ᎠᏋᏒᏉ ᏱᎦᏥᏯᎵᎡᎵᏤᎭ, ᎾᏍᏉᏍᎩᏂ ᏂᎦᏛ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ;\nᎤᏇᏓᎵᏰᏃ ᎤᏚᎵᏍᎬ ᏓᎦᏘᎴᎪ ᎠᏓᏅᏙ, ᎠᎴ ᎠᏓᏅᏙ ᎤᏚᎵᏍᎬ ᏓᎦᏘᎴᎪ ᎤᏇᏓᎵ; ᎾᏍᎩᏃ ᎯᎠ ᏗᎾᏓᏡᏗᏍᎩ ᏂᎦᎵᏍᏗᎭ; ᎾᏍᎩᏃ ᏂᎦᎵᏍᏙᏗᎭ ᏄᏍᏛ ᎢᏣᏚᎵᏍᎬ ᎥᏝ ᏱᏅᎨᏣᏛᎦ.\nᏦᎢ ᎢᏳᏩᎬᏘ ᎡᏆ ᎠᎵᏍᏓᏴᎲᏍᎨᎢ.\nᎢᎯ ᎤᏣᎴᏓ ᎭᏫᏩᏔ, ᏕᎭᏘᏃᎸ ᏧᏤᎵ ᏴᏫ ᎢᎩᏍᏕᎵᏍᎩ.\n ᏃᏗ ᎤᎵᏏᎩ ᎤᎧᎲᏛ ᎤᎶᏎ ᏅᏙ ᎠᎬᏱᏣ.\nᎠᏂᏐᎢᏍᎩᏂ ᎠᏴᏉ ᏕᏥᏁᏤᎭ ᎥᏝᏃ ᎤᎬᏫᏳᎯ; ᎢᏳᏃ ᎩᎶ ᎢᏓᎵᏅᏟ ᎤᏓᎵᎢ ᏴᏪᎧᎭ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ, ᎣᏏᏳᏃ ᏯᏪᎸᏍᎦ ᎠᏏᏉ ᎤᎾᏁᎳᏗᏍᏗᏱ, ᏞᏍᏗ ᎢᏴᏛ ᏱᎦᎧᎲᏍᎨᏍᏗ.\n“ᎭᎳᏑᏢᎩ! ᎭᎳᏑᏢᎩ!” ᎤᏛᏁ ᏥᏍᏚ.\nᎥᏝ ᎾᏍᎩᏯ ᎧᏃᎮᏛ ᏕᎦᏥᏯᏠᎢᏍᏓᏁᎸ ᏧᏂᎦᏴᎵᎨᎢ, ᎾᎯᏳ ᎦᏂᏲᏯᏁᏒ ᎦᏥᏄᎪᏫᏍᏗᏱ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲᎢ; ᎥᏝᏰᏃ ᏳᏂᏍᏆᏂᎪᏔᏁ ᎧᏃᎮᏛ ᏕᎦᏥᏯᏠᎢᏍᏓᏁᎸᎢ, ᎠᎴ ᎠᏴ ᎥᏝ ᏱᎦᏥᏯ-ᎦᏎᏯᏍᏔᏁᎢ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ.\nᏚᏑᎬ ᎭᏫᏂᏣ ᎠᎭᎾᏬ ᎤᎭᎨᏛ ᎦᎵᏦᏩᏛ ᎾᏍᎩᏯ, ᎧᏂᎩᏓ ᎨᏎᏍᏗ ᎪᎰᏍᏗ ᎠᎩᏍᏘ, ᏧᏩᏌ ᏔᎵ ᎢᎦ ᏘᎵ ᏃᎴ ᏐᎯ ᏚᏦᏩᏁ, ᏔᎵ ᏄᏒ ᏧᏭᏔᎩᏛ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎡᏙᎢᏳᏒᎢ, ᎾᏍᎩ ᎢᏳᏃ ᏂᎦᎥ ᎪᎱᏍᏗ ᎡᏗᏔᏲᏏ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒᎢ, ᎢᎦᏛᎦᏁᎲᎢ.\nᎤᏁᎳᏅᎯ ᎤᏬᏢᏅᎯ ᏥᎩ ᎡᎳᏂᎬᎢ ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᏁᎯ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ ᎤᎾᏤᎵᎦ, ᎥᏝ ᏱᎦᏁᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎩᎶ ᏧᏬᏱ ᏧᏮᏔᏅᎯ ᏧᏁᏍᎨᎲᎯ.\nᎦᏛᏅᎥᏍᏗᏍᎬ, ᎠᎩᏩᏒ Sketches and Eccentricities of Col. David Crockett, ᎧᏫ ᏧᎾᏗᏔᏍᏗ ᏩᎩᎷᏨ ᎠᎩᎪᎵᏰᎥ.\nᏣᏔᏲᏎᎯ ᎯᏁᎮᏍᏗ, ᏣᏙᎸᎡᏗᏱᏃ ᎤᏚᎵᏍᎩ ᏞᏍᏗ ᎢᏴᏛ ᎢᎯᏯᏛᏁᎸᎩ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᎪ ᎠᏆᏒᏂᎦ? ᏂᎦᏛᏃ ᎤᎾᏓᏱᎸ, ᏈᏓ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏔᏕᏲᎬᏍᎩ, ᎤᏂᏣᏘ ᎨᏣᏓᏡᏫᏍᏗᏕᎦ ᎠᎴ ᎨᏣᏁᏄᎳᏍᏗᎭ, ᏥᎪᏃ ᎦᎪ ᎠᏆᏒᏂᎦ ᎢᎭᏗᎭ?\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏳᏃ ᎯᎠ ᎡᎳᏪᏱ ᏳᏅᏅ, ᏅᏯ ᎩᎳᏉ ᎢᏴᏛ ᏯᏁᎷᎲᎦ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎠᏥᎸ-ᎤᎦᏔ ᏥᏂᎬ ᎢᎩᏛ ᎪᎯᏛ ᎪᎯᏳᏗ ᎨᏒ ᏱᏥᎭ, ᎯᎠ ᏱᏂᏥᏪᏏ ᎯᎠ ᎫᏩ-ᏧᏁᎬ ᏥᏡᎦ, ᏫᏕᏣᎾᏍᏕᏢᏓ, ᎠᎴ ᎠᎺᏉᎯ ᏪᏣᎧᎲᎦ, ᎠᎴ ᏱᏦᎯᏳᎲᎦ.\nᏕᏏᎶᏂᎦᏰᏃ ᏫᎨᏙᎲ ᏌᏉ ᏂᏣᏓᏅᏒᎩ ᎠᎩᏂᎬᏎᎲ ᎠᏆᎵᏍᏕᎸᏙᏗ, ᎠᎴ ᎾᏍᏉ ᏔᎵᏁᎢ.\nᎠᎦᏛ ᎤᏂᏐᏱ ᎡᏍᎦᏉ ᎠᏴ ᎾᏍᎩ ᎠᏂᎫᏌ ᎠᎴ ᎢᏳᏍᏗᏉ ᏱᏗᎪᎠ.\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎪᎯᏍᎩᏂ ᏥᎩ, ᎩᎶ ᎠᏕᎸ-ᏗᎦᎶᏗ ᎤᎾᎡᏍᏗ, ᎦᏁᎨᏍᏗ, ᎠᎴ ᎾᏍᏉ ᏕᎦᎶᏗ; ᎩᎶᏃ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏄᏩᏴᎾ ᎨᏎᏍᏗ, ᏫᎦᎾᏚᎦ ᎤᏄᏬ ᎠᎴ ᏭᏩᎯ.\nᏙᎢᏳᏍᏗ ᎯᏂᏃᎮᏍᎨ, ᏫᎵᎻ, ᏥᎩᏂᏲᏍᏓᏏ?”\nᎠᏂᎶᏏᏙ ᎠᎾᎴᏫᏍᏗᏍᎨ ᎤᎾᎦᏎᏍᏕᎢ.\nᎦᏙᏃ ᎮᎵ ᏓᏳᏬᏪᎳᏅ?\nᎭᎸᎢᏳ ᎤᏤᎵᏛ ᎦᏃᏟᏙᎯ ᏣᎪᏘᏍᎨᎢ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏛᎢ ᏍᎩᎾ ᎤᏩᏏ ᏚᏓᏥᎶᏍᏓᏅᎢ ᎢᎾᎨᎢ ᎢᏣ ᏫᎦᎶᏍᎬᎢ ᏃᎴ ᏕᎧᏃᎩᏍᎨ, ᎤᏪᎳ ᏥᎩᎠ ᏧᏪᎳ ᏕᏥᎩᏍᎪᎢ Ꮡ, Ꮜ, ᏌᎢ\nᏔᎧᏔᏍᏓ ᏃᎴ ᏫᏢᎾ!”\nᎢᏓᎵᏅᏟ, ᏥᎪ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏰᎵᏉ ᏯᎾᏓᏛᎦ ᎣᎵᏩ ᏡᎬ ᎠᎾᏓᏛᏍᎩ, ᎠᎴ ᏥᎪ ᏖᎸᎳᏗᎯ ᏒᎦᎳ-ᎢᏳᏍᏗ ᏯᎾᏓᏛᎦ? ᎾᏍᏉᏍᎩᏂ ᎥᏝ ᏰᎵ ᏌᏉ ᎦᏄᎪᎬ ᏴᏛᎦᏄᎪᎢ ᎠᎹ ᎤᎶᏥᏛ ᎠᎴ ᎠᎹ ᎤᎶᏥᏛ ᏂᎨᏒᎾ.\nᎢᏥᎦᏔᎭᏰᏃ ᏄᏍᏛ ᏕᏨᏲᎯᏎᎸ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᎣᏏᏳ ᎤᏰᎸᏅᎯ ᎨᏒᎢ.\nᎨᏍᏗ ᏄᎶᏒᏍᏛᎾ ᏱᎩ.\nᏥᏌᏃ ᎾᏍᎩ ᎤᏛᎦᏅ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᎩ ᏂᏚᏂᏢᎬᎾ Ꮭ ᎤᏚᎸᏗ ᏱᏄᎾᎵᏍᏓᏁᎰ ᏗᏓᏅᏫᏍᎩ, ᏧᏂᏢᎩᏍᎩᏂ; ᎢᏝ ᎤᎾᏓᏅᏘ ᏱᏗᏥᏯᏅᎯᎸ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᏚᎾᏓᏅᏛ ᏧᏂᏁᏟᏴᏍᏗᏱ.\nᎠᏂᎫᏌ ᏃᎴ ᏤᎩᏏᏂ ᎤᎾᏟᎸ ᎠᏰᎵ ᎢᏴ ᏚᏂᏲᎰᏎᎴ ᎠᏂᏴᏫ.\n“ᎡᎳᏗ ᏱᏂᎦᏛᎦ ᎾᎥᏂᎨ ᏳᏩᎩᎦᏛᎲᎦ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᎴ ᎾᏍᎩ ᏄᏩᏂᏌᏅᎩ ᏂᎦᏗᏳ ᏧᎾᏍᏗᏱ ᎠᎴ ᏧᎾᏛᎾ, ᏧᏁᎿᎢ ᎠᎴ ᎤᏲᎢᏳᎾᏛᎿᏕᎩ, ᏂᏗᎨᏥᎾᏝᎥᎾ ᎠᎴ ᏗᎨᏥᎾᏝᎢ, ᏗᎨᎪᏪᎶᏗᏱ ᏗᏂᎦᏘᏏᏗᏢ ᏧᏃᏰᏂ, ᎠᎴ ᏗᏂᎬᏓᎨᏂ;\nᎦᎸᎳᏗ ᏫᏚᎧᎾᏅ, ᎨᏍᏗ ᏣᎵᎮᎵᎪ ᎠᎩᎪᏩᏘᏍᎬ ᏱᏅᏩᏍᏖ.\nᎤᏍᎦᏍᏓᏁᎴ ᎤᏛᎦᎾ ᏓᏬᏂᏍᎬ.\nᎤᎯᎨᏛ ᏧᏍᏆᎸᏓ ᏎᎷ ᏅᏙ ᏚᏅᏓᏒ ᎦᎸᎳᏗᏨ ᎤᏓᏴᎳᏛ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᏄᏓᎵᏓᏍᏛᎾ ᏥᎩ, ᎾᏍᎩ [ᏄᏙᎯᏳᎭ] ᎠᏴ ᎢᏨᏁᏤᎲ ᎥᎥ ᎠᎴ ᎥᏝ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏏᏗ ᎪᎯ ᎨᏒ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎩᎶ ᏲᏥᎦᏔᎭ ᎾᏍᎩᏯ ᎤᏇᏓᎵ ᎠᎦᏔᎲᎢ. ᎠᎴ ᎾᏍᏉ ᎢᏳ ᎦᎶᏁᏛ ᎣᏥᎦᏙᎥᏒᎯ ᏱᎩ ᎤᏇᏓᎵ ᎠᎦᏔᎲ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎿᏉ ᏲᏥᎦᏔᎭ.\nᎱᏚᎯᏁᎾ ᏲᎾ ᎤᏤᏍᏙ ᏍᏉ ᎤᏚᎯᏅᏎ ᏫᎵᎻ, ᎠᏎᏃ ᎤᏴᏥ ᎠᎹ ᎤᏪᎵᏎ.\nᎾᏍᎩᏃ ᏂᎯ ᏈᎵᎩᏱ ᎢᏤᎯ, ᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᏉ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎬᏱᏱ ᎢᏨᏯᎵᏥᏙᏁᎸ ᎾᎯᏳ ᎹᏏᏙᏂ ᎠᏆᏂᎩᏒ, ᎥᏝ ᎢᎸᎯᏢ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎪᎱᏍᏗ ᏱᎬᏆᏛᏁᎴ ᎾᏍᎩ ᎠᏓᏁᏗ ᎠᎴ ᎥᏓᏘᏁᏗ ᎨᏒ ᎤᎬᏩᎵ, ᏂᎯ ᎢᏨᏒ.\nᎤᏂᏴᎬ ᏚᏐᏨ ᎠᎹᏱ, ᎦᏚᏏ ᏭᎾᎷᏒ, ᎤᏃᎴ ᎦᏣᏄᎳ ᎢᏳᏍᏗ, ᎠᏎᏃ ᎦᏳᎸ ᎤᎾᏕᎶᎰᏒ ᎨᏒ ᎤᏂᏃᎮᎸ.\nᎤᎦᏃᏩ ᎨᏎ ᎤᏅᏗ ᎤᏍᏉᏟ ᎭᏫᏂ.\nᎩᎶᏰᏃ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏓᎧᎿᏩᏕᎦ, ᏑᏓᎴᎩᏉᏃ ᎪᎱᏍᏗ ᏯᏲᏍᏗᎭ, ᏂᎦᏛ ᏚᏲᏍᏔᏃᎢ.\n“ᎡᏚᏥ ᏍᏉᏎᎮᏍᏗ.”\nᏂᎪᎯᎸᎾ ᎤᎭᏲᎴ ᏑᎾᎴ ᎤᎵᏍᏓᏴᏗ ᏣᏄᏏ.\nᎤᎧᏲᏓ ᎠᏏᎳᏛᏙᏗ ᎠᏍᏓ ᎤᏮᏙᏗ ᎤᏪᎵᏎ ᎠᏤ ᎧᏃᎮᏓ ᎤᏬᏪᎶᏗ.\nᎦᎵ ᏚᎸᏔᏁ ᏗᎩᏣᏗ ᏦᎯᏍᏙᏗ ᏧᎭᎾᏬ ᏃᎴ ᏗᎵᏰᏑᎶ ᎣᏍᏓ ᏗᏒᎢᏍᏔᏅ, ᏥᏳ ᏧᎾᏗᏔᏍᏗ ᎡᏙᎲ, ᏃᎴ ᎠᎦᏗᏓ ᎠᏕᎳ, ᏧᏙᏗ ᎠᏤ ᎠᎴᏂᏍᎬ.\n“ᎬᏚᎢᏍᏔᏁᎭ ᏕᏥᎾᏫᏍᏗ ᎠᏆᏓᏅᏙᎩ.”\nᏂᎦᏛᏃ ᎤᏠᏱ ᏧᎾᏢᏫᏍᏙᏗ ᎤᎾᎴᏅᎮ ᎤᏂᏲᎴᎢ. ᎢᎬᏱᏱ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏠᎨᏏ ᎠᎩᏩᏒ, ᎠᎴ ᎠᏎ ᎠᏇᏅᏍᏗ ᎠᎴ ᎠᏆᎦᏔᏅᏍᏗ ᏂᎦᎵᏍᏗᎭ; ᎬᏔᏲᏎ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎡᏣᏅᏟ ᎤᎷᏨ, ᏣᏙᏓᏃ ᎦᎵᏦ ᏔᏅᎯ ᏩᎦ ᎠᎩᎾ ᎤᎸ,ᏙᎯᏱ ᎤᎾᏄᎪᏥᎸ ᎢᏳᏍᏗ.\nᎾᏍᎩᏯᏰᏃ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨ ᎤᏣᏘ ᏦᏥᎩᎵᏲᎦ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎤᏣᏔ ᎣᎩᏁᎭ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ ᎦᎶᏁᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ.\nᏂᎦᎥ ᎠᎦᏴᎵᎨ ᎤᎲ ᎠᏆᏤᎵᎦ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏥᏂᏥᏫ, ᎠᏆᏤᎵᎦ ᎨᏒ ᏛᎩᏏ ᎠᎴ ᏓᏥᎾᏄᎪᏫᏎᎵ.\nᎡᎵᏏᏃ ᏃᏊ ᎪᎯ ᎢᏴ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎢ ᎪᎱᏍᏗᏛ ᏗᏓᏛᎦᏂᏒ ᎢᎩᏃᎯᏎᎭ.\nᎩᎶ ᎠᏴ ᎠᎩᎷᏤᎮᏍᏗ ᏂᏗᎦᏂᏆᏘᎲᎾᏃ ᎢᎨᏎᏍᏗ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏧᏙ, ᎥᎥ, ᎠᎴ ᎤᏩᏒ ᎾᏍᏉ ᎬᏅᎢ, ᎥᏝ ᏰᎵ ᎠᎩᏍᏓᏩᏗᏙᎯ ᏱᏅᎦᎵᏍᏓ.\nᎢᏧᎳ ᎤᏁᏅᏎ ᏏᏆ ᎠᏍᏚᏗ.\nᎾᏃ ᏧᏂᏲᎱᏒᎯ ᏧᎾᎴᎯᏐᏗ ᎨᏒ, ᏱᏏ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎤᏪᏲᏓᏛᎢ, ᎾᎯᏳ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ, ᏧᏬᏎᎴᎢ.\nᎠᎾᎢᏒᏃ ᏅᏃᎯ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᏓᎬᏍᏓᏩᏗᏙᎵ ᏂᎦᎥ ᎮᏙᎲᎢ.\nᎠᏤ ᎤᏍᎪᏍᏗ ᎠᏔᎴᎦᏒ ᎤᏪᎵᏒ ᎨᏎ.\n“ᏱᎬᏆᏚᎵ ᏍᎩᎾᎾ ᎢᏳᎵᏍᏙᏗ.\nᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᏚᏪᏎᎴ ᏴᏫ, ᎤᎶᎩᎸ ᎢᏥᎪᏩᏛ ᏅᏙ ᏭᏕᎵᎬ ᏓᎦᎶᎯ, ᎩᎳᏉ ᎢᏴᏛ ᎯᎠ ᏂᏥᏪᏍᎪᎢ, ᎠᎹ ᏛᏰᎢᎵ; ᎾᏍᎩᏃ ᏂᎦᎵᏍᏗᏍᎪᎢ.\nᎢᏳᏃ ᎢᏥᎧᎵᎢᎮᏍᏗ ᎦᎸᏉᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸᎢ, ᏨᏒ ᏥᏂᏣᏓᎨᏳᎭ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ, ᏣᏗᎭ, ᎣᏏᏳ ᏱᏂᏣᏛᎦ.\nᎤᏂᏍᏆᏛᏃ ᏂᎦᏛ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᎤᏤᎵᎦ, ᎢᎤᎾᏨᏎ ᎨᎵᎵ ᏭᏂᎶᏎ, ᎤᏅᏒ ᏧᏂᏚᎲ ᎾᏎᎵᏗ ᏭᏂᎷᏤᎢ.\nᎤᏙᎯᏳᎯ ᎩᎶ ᎯᎠ ᏱᏅᎦᏫ, ᏂᎯ ᏦᎯᏳᎭ, ᎠᏴᏃ ᏓᎩᎸᏫᏍᏓᏁᎭ; ᎬᏂᎨᏒ ᏂᏍᏋᏂᏏ ᏦᎯᏳᏒ ᏕᏣᎸᏫᏍᏓᏁᎲ ᏅᏗᏍᎬᎾ ᎨᏒᎢ, ᎠᏴᏃ ᎬᏂᎨᏒ ᏅᏓᎬᏴᏁᎵ ᎠᏉᎯᏳᏒ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎬᏗᏍᎬᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎩᎶ ᏥᏥᎶᏄᎮᎵ;\nᎡᎳᏗ ᎢᏣ ᎤᏬᎰᏎᎢ ᎾᏍᎩᏯ ᎪᏪᎵ ᎠᎦᎷᏴ, ᏲᎾ ᎤᏤᏍᏙ ᎤᏍᏘᏰᎬ ᎤᏒᏥᎴᎢ.\n“Ꭾ-Ꭰ-Ꭰ!” ᎤᎾᏛᏁ ᎤᏂᏃᏕᎾ ᎠᏂᏓ.\nᎢᏣᎵᏍᏗᏴᎲᏍᎬᏰᏃ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎢᎬᏱ ᎢᏥᎩᏍᎪ ᎢᏨᏒ ᎢᏣᏤᎵᎦ; ᎠᏏᏴᏫᏃ ᎠᎪᏄ ᎤᏲᏏᏍᎪᎢ, ᏅᏩᏓᎴᏃ ᎤᏴᏍᏕᏍᎪᎢ.\nᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᏗᏍᎬ, ᎾᏍᎩ ᎥᎩᏁᎸᎯ ᏥᎩ, ᎯᎠ ᏂᎦᏥᏪᏎᎭ ᎾᏂᎥᏉ ᏥᎨᏣᏓᏑᏯ; ᏞᏍᏗᏉ ᏯᏂᎶᏒᏍᏗᏍᎨᏍᏗ ᎠᎾᏓᏅᏖᏍᎬ ᎾᏍᎩ ᏥᏚᏳᎪᏗ ᎤᎾᏓᏅᏖᏗᏱ, ᎤᎾᎵᏏᎾᎯᏍᏗᏍᎩᏂ ᎨᏎᏍᏗ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎪᎯᏳᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏚᏟᎶᎡᎸ ᎠᏂᏏᏴᏫᎭᎢ.\nᎤᏣᏘᏰᏃ ᎠᎩᎵᏯ ᎨᏒ, ᎠᎴ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎬ ᏫᏨᏲᏪᎳᏁᎸᎩ ᎤᏣᏘ ᏗᎦᏥᎦᏌᏬᎢᎯ ᎨᏒᎢ; ᎥᏝ ᎠᏗᎾ ᎤᏲ ᎤᎾᏓᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᏯᏇᎵᏎᎢ, ᎢᏥᎦᏙᎥᎯᏍᏗᏱᏉᏍᎩᏂ ᎾᏍᎩ ᎤᏣᏔᏅᎯ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ.\nᎠᏎᏃ ᏛᏍᏆᎸᎯ, ᎠᎴ ᎿᏉ ᎤᏍᏆᎸᎲ, ᎾᏍᎩ ᎤᏙᎯᏳᏒ ᎠᎾᏓᏙᎵᏍᏗᏍᎩ ᏛᎾᏓᏙᎵᏍᏓᏁᎵ ᎠᎦᏴᎵᎨ ᏙᏛᏅᏔᏂ ᏧᎾᏓᏅᏙ ᎠᎴ ᏚᏳᎪᏛᎢ; ᎠᎦᏴᎵᎨᏰᏃ ᏚᏲᎰ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᎬᏩᏓᏙᎵᏍᏓᏁᎯ.\nᎢᏳᏃ ᎡᏙᏓ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏂᏓᎩᎸᏫᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᏞᏍᏗ ᏍᎩᏲᎢᏳᏅᎩ\nᎤᎾᏙᎴᎰᏒᏰᏃ ᎢᎸᎯᏳ ᏥᎨᏎᎢ ᎥᏝ ᏴᏫᏉ ᎠᏓᏅᏖᏍᎬ ᏴᏗᏓᎴᏁᎢ; ᎠᏃᏍᏛᏍᎩᏂ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᏂᏁᎨ ᎢᏳᏂᏪᏍᏗᏱ ᏄᏅᏁᎲ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\nᏃᎴ ᏭᎳᎩᏒ, ᎱᏗᏔᎲ, ᎠᎭᏰᏊ.\nᎠᏃᎯᏳᎲᏍᎩᏃ ᎤᏟ ᏂᎦᎡ ᎬᏩᏁᏉᏤᎴ ᎤᎬᏫᏳᎯ, ᎤᏂᏣᏔᏅᎯ ᎨᏎ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ.\nᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏥᏔᏲᎭ, ᎠᏎ ᏓᏰᏥᏁᎵ; ᎢᏥᏲᎦ, ᎠᏎ ᏓᏥᏩᏛᎯ; ᎢᏨᏂᎦ, ᎠᏎ ᏓᏰᏥᏍᏚᎢᎡᎵ;\nᎠᎴ ᎤᏓᏁᏟᏴᏎ ᏓᏂᎧᏅᎢ, ᎠᎴ ᎤᎧᏛ ᏗᎬᏩᎸᏌᏓ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏄᏩᎥ ᎢᎦ-ᎦᏛ ᏥᏄᏁᎩᏴ ᏄᏁᎩᏰᎢ.\nᏥᎪ ᎠᏴ ᎾᏍᏉ ᏣᏚᎵ ᏍᏗᎯᏍᏗᏱ ᎾᏍᎩᏯ ᎤᏒᎯ ᏥᎸᎩ ᎢᏥᏈᏱ ᎡᎯ?\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎴᎭᏫ ᎤᏁᎫᏥᏛ ᎥᏝ ᏯᏥᏛᏔᏁ ᎨᏥᏛᏔᏅ ᎾᏍᎩ Ꮎ ᏄᏃᎯᏳᏒᎾ ᏥᎨ-ᏎᎢ, ᎾᏍᎩ ᏙᎯᏱ ᏥᏚᏓᏂᎸᏤ ᎢᏳᏍᏗ ᎤᏂᎦᏛᏂᏙᎯ.\nᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎨᏒ ᎢᏣᏓᏤᎵᏛ ᏂᎨᏒᎾ ᎨᏎᎢ, ᎪᎯᏍᎩᏂ ᏥᎩ ᎢᏣᏓᏤᎵᏛ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏂᏣᎵᏍᏔᏅ; ᎾᏍᎩ ᎥᏝ ᎡᏥᏙᎵᏨᎯ ᏱᎨᏎᎢ, ᎪᎯᏍᎩᏂ ᏥᎩ ᎡᏥᏙᎵᏨᎯ.\nᎾᏍᎩ ᎯᎠ Ꮎ ᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ; ᎥᏝ ᎾᏍᎩᏯ ᏗᏥᎦᏴᎵᎨᎢ ᎹᎾ ᏣᏂᎩᏍᎨᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏂᏲᎱᏒᎯ ᏥᎩ; ᎯᎠ ᎦᏚ ᎠᎩᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏁᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏛᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏍᎩ ᎯᎠ ᎠᏍᏓᏱᏳ ᎧᏃᎮᏛ; ᎦᎪ ᏰᎵ ᏯᏛᎬᎦ?\nᏥᏌᏃ ᏚᏁᏤᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉ ᎤᏍᏆᎸᎲ ᏴᏫ ᎤᏪᏥ ᎠᏥᎸᏉᏙᏗᏱ.\nᎤᏣᏘᏰᏃ ᎤᏚᎵᏍᎬᎩ ᎢᏥᎪᏩᏛᏗᏱ ᏂᏥᎥᎢ, ᎠᎴ ᎤᏣᏘ ᎦᎨᏛ ᎤᏓᏅᏔᏩᏕᎬᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎢᏣᏛᎦᏅ ᎤᏢᏨᎢ.\nᏉᎳᏃ ᏫᏚᏬᏕᏒ ᏏᏄᎩᏝᏅᎯ ᎠᏓ, ᎠᎴ ᏚᎲᏔᏅ, ᎢᎾᏛ ᎤᏗᎴᎬ ᏓᏳᎾᏄᎪᏨᎩ ᎤᏬᏰᏂ ᎤᏪᏖᎳᏛᏨᎩ.\nᎾᎠ ᏭᎷᏤ ᎠᏒᏛ ᏗᏥᏯ.\nᎠᎢᏒ ᏕᎦᏃᏴᎵᏍᏗᏍᎨ ᏧᏆᎶᎬ, ᏚᏃᏴᎬ ᎤᎾᎵᎪᏗ.\nᏄᏍᏛ ᎤᏓᏍᏔᏴᏅ ᎬᏣᏝᏅ ᏑᎾᎴ ᎠᎩᏍᏗ, ᎠᏍᏔᏱ ᎠᎩᏍᏗ ᏅᏙ ᎧᎸᎬ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏇᏥ, ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ; ᏅᏩᏙᎯᏯᏛ ᏥᎮᎾ, ᎠᎴ ᏣᏗᏩᏒᎯ ᎨᏎᏍᏗ ᏣᏢᎬᎢ.\nᏫᏚᏯᏅᎮᏃ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏕᎤᏲᎯᏎᎴ ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᎠᏕᎸ,] ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎪᎱᏍᏗ ᏕᏨᏗᏍᎨᏍᏗ ᎬᏂ ᎢᏥᎷᏨᎭ.\nᏤᎦᏈᏃ ᎢᏥᏈᏱ ᏭᎶᏎᎢ, ᎤᏲᎱᏎᏃ, ᎠᎴ ᎾᏍᏉ ᏗᎩᎦᏴᎵᎨᎢ.\n“ᎭᏂ ᏅᎩᏍᎪ ᎠᏂᏎᏂᏏ.\nᎤᏁᎦ ᎠᏓᏁᎸ ᎠᏇᏅᏒ, ᎪᏪᎵ ᎠᎩᏃᎮᏍᎩ ᎦᎳᎱᏂ ᎠᎩᏅᏁᎸ ᏥᏁᎲ, ᎠᎩᏯᏖᏅ ᏯᏆᏧᏓᏉ, ᏚᏂᏓᎭᎾᏫᏲᏤ ᏣᎾᎵᏙᎩᏯᏍᎨ ᏔᎵᏍᎪᏣᏁᎳ ᎤᏕᏘᏴᏌᏗᏒ, ᏤᎩᏏᏂ ᎤᎬᏫᏳ ᏄᎵᏍᏔᏁ ᎦᎳᎱᏂ ᏔᎵᏁ ᎠᎴᎲᏍᎩ ᎤᎬᏫᏳ, ᏍᎩᏴ ᎤᏲᎯᏍᏔᏁ ᎦᎳᎱᏂ, ᏓᏳᏓᎴᏅᏓ ᎤᎾᏔᏲᎴ, ᏚᏳᎪᏛ ᏚᏂᎲ ᏕᎦᏚᎲ.\nᎪᎯ ᎢᏴ ᏃᏊ ᎠᏊ ᎢᏴ ᏙᏱ ᏗᏢ ᏄᏪᏏᏢ ᏃᏊ ᎤᏕᏲᎸ ᎦᎵᏦᏕ ᏃᏊ ᏧᎶᏒ ᎢᏗᏜ ᏭᎶᏒ ᏏᏊ ᏂᎦᏪᏏᏐᎢᏊ ᏫᎬᏩᏕᎵᏦᎲᏍᎩ ᏂᎦᏪᏏᏒᎢ.\nᎤᏍᎩᏗᏎᎢ ᏍᎪᎯᏍᏆ ᏓᎳᏚ ᎢᏯᎳᏏᏔᏅ ᎢᎦᏅᎯᏓ ᎨᏒ ᏃᎴ ᏐᏁᎵᏍᎪ ᏔᎵ ᎢᏯᎳᏏᏔᏅ ᎢᎦᏘ ᎨᏒ ᏃᎴ ᏂᎦᏓ ᏗᏓᏖᎶᎯᏍᏗ ᏚᏓᏔᎶᏒ ᏃᎴ ᏂᎬᎾᏛ ᎠᏰᎸᎢ ᏕᎦᏓᎥ ᏗᏌᎪᏂᎨ ᏗᏇᏡᏍᏗ, ᎦᏂᏓᏛ ᏍᏉ ᎤᏓᎡ ᏌᎪᏂᎨ ᎠᏇᏡᏍᏗ.\nᎤᏒᎯ, ᏚᏑᎬ ᎤᏗᏍᎦᏞ, ᎤᏍᏘ ᎤᏬᏔᏅ ᏃᎴ ᎤᎦᏃᏫ ᎤᏢᏁ.\n“ᏓᎴᎲᎦ! \nᎾᏍᎩᏃ ᏓᎨᏳᏗᏱ ᎬᏙᏗᏱ ᏂᎬ ᎣᎾᏫᏱ, ᎠᎴ ᏂᎬ ᎠᏓᏅᏖᏗᏱ, ᎠᎴ ᏂᎬ ᎠᏓᏅᏙ, ᎠᎴ ᏂᎦᎥ ᏃᎵᏂᎬᎬᎢ, ᎠᎴ ᎾᎥ ᎢᏳᎾᏓᎳ ᎤᏩᏒ ᎤᏓᎨᏳᏒ ᎾᏍᎩᏯ ᎤᎨᏳᏗᏱ, ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏂᎦᏛ ᏗᎬᏩᏃᏍᏛ ᎠᏥᎸ ᏗᎨᎳᏍᏙᏗ, ᎠᎴ ᎠᎵᏍᎪᎸᏙᏗ.\nᎾᏍᎩᏃ ᎠᏴ ᎠᎴ ᏂᎯ ᎢᏧᎳᎭ ᏗᎦᎵᏂᎪᎯᏍᏗᏍᎩ ᎦᎶᏁᏛ ᎡᏓᏤᎵᎦ ᎨᏒᎢ, ᎠᎴ ᎢᎩᎶᏁᎥᎯ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ;\nᎤᏃᎯᎸᏍᏔᏁᎢ ᎤᏏᎳᏛ ᎦᏓᎢ, ᎦᏙ ᏫᏚᏬᏥᎴᎢ.\nᏦᎯᏍᏙᏗ ᏧᏃᏩ ᏃᎴ ᏦᎯᏍᏙᏗ ᏧᏁᏍᏔᎳ ᎧᏁᏍᎦ ᏗᎦᏇᏅᏔᏅ.\n“Ꭳ, ᎤᏙᏳᎯ ᎤᏛᏁ ᎧᏅᏂᏍᎩ.\nᏃᏗ ᏫᎵᏂ ᎤᏬᏂᏎ: “ᎦᏙᏃ ᎭᏛᏁ ᎭᎾᏂ, ᏌᎳᏓ?”\nᎠᏆᏟᏂᎬᏁᎸ, ᎤᏒ ᏂᎦᎵᏍᏘᏍᎬ ᎦᏓᏁᏝᏁᎲ Macallan's ᎠᏥᏍᏛ, ᎠᏎᏃ ᏐᏉ ᎢᏳᏩᎬᏘ ᏑᎾᏙᏓᏆᏍᏗ, ᏯᎦᏕ, ᏳᏲᏍᏔᏁ ᎠᏕᎳ ᏗᎩᎶᏙᏗ.\nᎠᎴ ᎤᎴᏁ ᏚᏜᏌᏛ ᎣᏂᏗᏢ ᏓᏠᏱᎮᎢ, ᎠᎴ ᎤᎴᏅᎮ ᏧᎳᏏᏕᏂ ᏚᏬᏑᎴᏔᏁ ᏧᎦᏌᏬᎸᎯ, ᎠᎴ ᏚᎧᏲᏙᏔᏁ ᎤᏍᏗᏰᎬᎢ, ᎠᎴ ᏚᏚᏣᎳᏁ ᏧᎳᏏᏕᏂ, ᎠᎴ ᏚᎶᏁᏔᏁ ᎠᏠᏁᏗ.\nᏂᎦᏓ ᏚᏳᎪᏛ ᎢᏳᎾᎵᏍᏔᏁᏗ.\nᏣᎵ ᎤᏩᏓᏍᎬ ᏓᏲᎾᏍᏓᏝᎥ ᎤᏂᎭᏴᏒ ᎤᏂᎩᏍᏗ, ᎠᎵᏍᏔᏴᏗ ᏓᏳᏓᎴᏅᏓᏱᎩ, ᏰᎵ ᎠᎾᎵᎮᎵᎩ ᎨᏒ.\nᏕᎤᏲᎵᎸᏃ ᎣᏍᏛ ᎤᏱᎸᏒᎩ ᎤᏃᎮᎸᎩ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᏕᎤᎸᏫᏍᏓᏁᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᎾᏍᎩ ᏉᎳ ᎠᎬᏗᏍᎬᎢ.\nᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎠ ᎢᎦᏪᏛ ᎢᎩ; ᏞᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎯᎪᎵᏰᎥᎩ.\nᎰ ᎤᎬᏫᏳᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎦᏔᎯᏳ ᏥᎩ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎧᏃᎮᏗ ᎨᏒ ᎠᏂᏧᏏ ᏥᏚᏁᎭ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎬᏔᏲᏎᎭ ᏂᏗᏣᏯᏪᎬᎾ ᏍᏆᏛᎦᏁᏗᏱ.\nᎤᏩᏒᎯᏴᏓ ᎨᏎᎢ.\nᏭᏩᏌᏙᏰ ᏗᎦᏂᎩᎸᎢᏣ ᏏᏆ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ.\nᎠᎴᏬ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏙᏓᎦᏟᎶᏍᏔᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ?\nᎠᎴ ᏧᏂᏲᎱᏒᎯ ᎥᎦᏥᎪᎥᎩ, ᏧᎾᏍᏗ ᎠᎴ ᏧᎾᏛᎾ, ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᏚᎾᎴᏅᎩ; ᎪᏪᎵᏃ ᏚᏂᏍᏚᎢᏒᎩ; ᎠᎴ ᏅᏩᏓᎴ ᎪᏪᎵ ᎤᏂᏍᏚᎢᏒᎩ, ᎾᏍᎩ ᎬᏂᏛ ᎠᏓᏁᎯ ᏥᎩ; ᏧᏂᏲᎱᏒᎯᏃ ᏙᎨᎫᎪᏓᏁᎸᎩ ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎪᏪᎵᎯ, ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ.\nᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏗᏒᏌᏘ ᏱᏅᏩᏍᏗ; -ᎠᏴ ᎥᏝ ᎾᏍᎩ ᎢᏲᎦᏛᏁᏗ ᏲᎩᎭ, ᎥᏝ ᎠᎴ ᎾᏍᏉ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ.\n“ᎭᏂ,” ᎤᏛᏁ ᏏᏆ.\nᎭᏗ ᏔᎵᏓᏍᏗᏍᎭ.\nᎠᎴ ᎾᏍᏉ ᏙᏣᎧᎭ ᎾᏍᎩ ᎾᏧᏂᏂᏴᎯ ᏓᎾᏕᏲᎲᏍᎬ ᎠᏂᏂᎦᎴᏓᏂ, ᎾᏍᎩ ᎠᏴ ᏥᏥᏂᏆᏘᎭ.\nᏈᎵᎩᏃ ᏗᎦᏚᎲ ᏌᎺᎵᏱ ᏭᎶᏎᎢ, ᎠᎴ ᏚᎵᏥᏙᏁᎴ ᏚᏃᎮᎮᎴ ᎦᎶᏁᏛ.\n“ᎤᏙᎯᏳ ᎪᎯᏗ ᏪᏙᎰ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᏍᏆᏒᏂᎸᎩ, ᏝᏰᏃ ᎠᏏ ᎡᏙᏙᏱ ᏫᏯᏆᎵᏌᎳᏓᏅ; ᎮᎾᏉᏍᎩᏂ ᎣᏣᎵᏅᏟ ᏗᏂᏅᎢ, ᎯᎠᏃ ᏫᏂᎩᏪᏏ; ᎡᏙᏙᏱ ᎠᏆᎵᏌᎳᏓᏂᏗ ᎠᎴ ᏂᎯ ᎢᏥᏙᏙᏱ; ᎠᏆᏤᎵᎦ ᎤᏁᎳᏅᎯᏱ, ᎠᎴ ᎢᏣᏤᎵᎦ ᎤᏁᎳᏅᎯᏱ.\nᎠᏎᏃ ᎤᏣᏘᏂ ᎢᏳᏛᏁᎸᎯ ᎾᎥ ᎢᏧᎾᏓᎳ ᏗᎤᏪᏌᏙᏰᏉ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᎪ ᏂᏣᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏗᏍᎩᏳᎪᏓᏁᎯ ᎢᏣᎧᏅ ᏂᎯ?\nᏞᏍᏗ ᎩᎶ ᏱᏥᏚᎨᏍᏗ ᎪᎱᏍᏗ, ᏗᏣᏓᎨᏳᏗᏱ ᎤᏩᏒ; ᎩᎶᏰᏃ ᏅᏩᏓᎴ ᏳᎨᏳᎭ ᎤᎧᎵᎸ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬᎢ.\nᎢᏧᎳᎭ ᎠᏂᏅᎩ ᏌᏩᏂ ᏈᏓ, ᎠᎴ ᏓᎻ ᏗᏗᎹ ᏧᏙᎢᏛ, ᎠᎴ ᏁᏓᏂᎵ ᎨᎵᎵ ᎡᎯ ᎨᏂ ᎦᏚᎲᎢ, ᎠᎴ ᏤᏈᏗ ᏧᏪᏥ, ᎠᎴ ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ.\nᎤᏍᏆᏂᎩᏗ ᏂᎦᎵᏍᏔ ᏃᎴ ᎧᏃᎮᏓ ᎯᎩᎷᏥᏏ ᎭᏂ ᎡᎶᎯ, ᎭᏂ ᎢᎦᏤᎵ ᏕᎦᎶᎨᏒ, ᏃᎴ ᎨᏍᏗ ᏏᏆᏉ ᏱᎩ.”\nᎢᏳᎾᏃ ᏰᏥᎪᎥ ᏴᏫ ᎤᏪᏥ ᏳᎵᏌᎳᏓᏅ ᎾᎿ ᏧᏌᎴᏅ ᏱᏬᎶᏒ?\nᎢᏥᏍᎦᏯ, ᏕᏥᎨᏳᏎᏍᏗ ᏗᏣᏓᎵᎢ, ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎾᏍᏉ ᏧᎨᏳᏎ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏓᏍᏕᎵᏍᎬ ᎤᏩᏒ ᏥᏚᏓᏲᏎᎢ,\nᏱᏥᏯᏙᎵᏣ ᎠᏌᎻᏓ ᎠᏍᎦᎢᎲ, ᎯᎪ ᎢᎦ ᏱᎦᏓᏍᏔᏴᎾ, ᏱᎦᎵᏍᏔᏴᎾ ᏃᎴ ᏱᎦᏣᏪᏐᎸᏍᏔᎾ, ᎣᏍᏓ ᏱᏂᎦᎵᏍᏔ ᎠᏆᏛᏅ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎨᏆᏂ ᏭᎶᏒᎩ, ᎤᏩᏒ, ᎠᎴ ᎤᏥ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎠᎴ ᎾᎿ ᎢᎸᏍᎩᏉ ᏄᏂᏒᎸᎩ.\nᎦᏙᎴᎣᏍᎦᏰᏃ ᏣᏚᎲ ᎤᏴᏍᏗ ᎠᏓᎪᎯ, ᎠᎴ ᎠᏍᎦᏂ ᏣᏓᎸᏍᏛᎢ.\n”ᏄᏍᏆᏂᎩᏗ ᎠᏂᏯᎠ!” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ.\nᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ ᏱᏍᏗᎦᏔᎭ ᏄᏍᏛ ᎢᏍᏗᏔᏲᎯᎲᎢ. ᏥᏌ ᏰᎵᏉ ᎨᏍᏓᏗᏔᏍᏗ ᎤᎵᏍᏈᏗ ᎾᏍᎩ ᎠᏆᏗᏔᏍᏗ ᏥᎩ? ᎠᎴ ᏗᎦᏰᏍᏓᏬᏍᏗ ᎾᏍᎩ ᏗᏓᏬᏍᏗ ᎨᏒ ᎾᏍᎩ ᎥᏆᏬᏍᏙᏗ ᏥᎩ?\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎠᎾᎢᏒᎢ, ᎾᏍᎩ ᎢᎸᎯᏢ ᎦᏚᎲ ᎤᎷᏤᎢ; ᎩᎶᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᎹᏗ ᏧᏙᎢᏛ ᏚᏓᏂᎸᏤ ᎦᏁᎸᎢ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎢᏨᏒ ᎨᏒ ᎤᏙᎯᏳᎯ ᏗᏥᏲᎱᏒᎯ ᎨᏒ ᎢᏣᏓᏓᏅᏖᏍᎨᏍᏗ ᎠᏍᎦᏂ ᎤᎬᏩᎵ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎤᎬᏩᎵ ᏗᏨᏃᏛ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏌᏛ.\n”ᎤᏬᏍᎩᎵ.\nᎠᎴ ᏚᏗᏅ ᎠᏕᎸ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎢᏴᏛ ᏭᎶᏒ, ᎤᏩᏒ ᏭᏓᏛᏁᎢ.\nᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎾᏍᎩ ᎢᏳᎵᏍᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ ᎦᏛᎬᎩ.\nᎿᏉᏃ ᎤᏂᏍᏆᏛ ᎾᏍᎩ ᎤᏂᏃᎮᏗ ᎨᏒᎢ, ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒ ᏨᏗᎦᎾᏄᎪᎦ ᏓᎿᏩ ᏅᏓᎬᏁᎵ ᏓᏳᎾᏡᏔᏂ, ᎠᎴ ᏓᏳᏂᏎᎪᎩᏏ, ᎠᎴ ᏓᏓᏳᏂᎵ.\nᎾᏍᎩᏍᎩᏂ Ꮎ ᎣᏒ ᎦᏙᎯ ᏣᏫᏎᎢ; ᎾᏍᎩ ᏣᏛᎩᏍᎪ ᎧᏃᎮᏛ ᎠᎴ ᏥᎪᎵᎪᎢ, ᎠᎴ ᎾᏍᏉ ᏣᎦᏔᏛᏍᎪᎢ, ᎠᎴ ᏥᎦᎾᏄᎪᏫᏍᎪᎢ, ᎢᎦᏛ ᎠᏍᎪᎯᏧᏈ ᎤᏁᏉᏨ Ꭿ, ᎢᎦᏛᏃ ᏑᏓᎳᏍᎪᎯ, ᎢᎦᏛᏃ ᏦᎠᏍᎪᎯ.\nᎠᏎᏃ ᏈᏓ ᎥᏗᎣᎩ ᏭᎷᏨ ᎬᏂᎨᏒ ᏕᏥᎦᏘᎸᏒᎩ, ᎦᏰᎫᎢᏍᏙᏗᏰᏃ ᎨᏒᎩ.\nᏥᏳᎯᏃ ᎤᏣᎢᏒ ᎩᎳᏉ ᎢᏴᏛ ᏚᏠᏎ ᎠᏍᎦᏯ ᏓᏓᏂᏌᎲ ᏅᏓᏳᎶᏒᎯ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎢ,\nᎦᏙ ᎤᏍᏗ ᎾᏍᎩ Ꮎ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏒ ᏗᏥᎦᏴᎵᎨ ᎥᏝ ᎤᏲ ᎢᏳᏅᏁᎸᎯ ᏱᎩ? ᎠᎴ ᏕᎤᏂᎸ ᎤᎾᏙᎴᎰᏛᎯ ᎬᏂᎨᏒ ᎢᏳᏅᏁᎸᎯ ᎤᎷᎯᏍᏗᏱ ᎾᏍᎦᏅᎾ ᎾᏍᎩ ᏂᎯ ᎡᏥᎶᏄᎡᎸᎯ ᎠᎴ ᎡᏥᎸᎯ ᏥᏄᎵᏍᏔᏅ;\nᏫᎵᎻ ᎤᏓᎾᏫᏛᎮ ᎤᎵᏗᏍᎩᏎᎢ.\nᎠᎩᏫᏯᏰᏃ ᎤᏙᎯᏳᏒ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎠᎩᎩᎬ ᎤᏙᎯᏳᏒ ᎠᏗᏔᏍᏗ.\nᏍᎪᏯ ᎦᏥᎶᏅᎮᏗ ᏱᎩ,” ᏰᎵᏉ ᏱᏥᎶᏅᎥᎳ ᎠᏍᎦᏯ ᎤᏪᎵᏎ ᏌᎳᏓ, ᏴᏫ ᎨᏍᏗ ᏍᎪᏯ ᎾᏂᏌᎹᏗᏴ ᏱᎾᏂᏌᎹᏗᏯ ᏴᏫ.” \nᏂᎯ ᎢᏣᏓᏙᎵᏍᏓᏁᎭ ᎪᎱᏍᏗ ᎾᏍᎩ ᏂᏥᎦᏔᎲᎾ; ᎠᏴᏍᎩᏂ ᎣᏥᎦᏔᎭ ᎢᏳᏍᏗ ᎣᏣᏓᏙᎵᏍᏓᏁᎲᎢ; ᎠᏂᏧᏏᏰᏃ ᎠᏁᎲ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏅᏓᏳᎾᏄᎪᎢᏍᏗ.\n(ᎠᏓᏅᏙᏰᏃ ᎦᎾᏄᎪᏫᏍᎪ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ,)\nᎢᎸᎯᏳᏃ ᎢᏴᏛ ᎤᎷᏤ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ ᎤᏂᎾᏝᎢ, ᎣᏍᏛᏃ ᏄᏅᏁᎴᎢ.\nᎠᎹ ᎤᎷᎯᏍᏗ ᎤᎾᏓᏍᏓᏴᏗ ᎦᏙᎨ ᏲᎾ ᎤᏤᏍᏙ ᏧᏃᏩ ᏓᎧᏲᏗᏍᎨ ᏑᎾᎴᎢ ᎤᎾᎵᏍᏓᏴᏅᎢ, ᎤᏥᎯ ᏕᎬᏗᏰᏍᎨᎢ ᏧᏃᏩ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏪᎿᎢ ᏴᏫ ᎠᏍᏓᏱᏳ ᏭᏴᏍᏗᏱ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎠᎱᏍᏕᏍᏗᏰᏃ ᎨᏒ ᎤᏙᎯᏳᎯ ᏣᏍᏕᎵᎭ ᎢᏳᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏱᎿᏛᏁᎭ; ᎢᏳᏍᎩᏂ ᎯᏲᏍᏗᏍᎩ ᏱᎩ ᏗᎧᎿᏩᏛᏍᏗ, ᎡᏣᎱᏍᏕᏎᎸᎯ ᎨᏒ ᎡᏣᎱᏍᏕᏎᎸᎯᏉ ᏂᎨᏒᎾ ᏂᎦᎵᏍᏗᎭ.\nᎾᏍᎩ ᎦᎸᎳᏗ ᏭᏕᏗ ᏥᎩ ᎬᏂ ᎾᎯᏳ ᎠᎵᏱᎶᎸᎭ ᎤᏓᏁᏟᏴᏍᏗ ᎨᏒ ᏂᎦᎥᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ ᏥᎩ ᏧᏤᎵ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎵᎰᏍᎩ ᏗᏂᎰᎵ ᏧᏩᏔᏅᎯ ᏥᎩ, ᎡᎶᎯ ᏧᏙᏢᏅᎢ ᏅᏓᎬᏩᏓᎴᏅᏛ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎪᎴᏏᏂ, ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏇᏣᏱᏗ; ᎢᏳᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸ ᏂᎯ ᎢᏤᎲ ᏱᏙᎦᎸᏫᏍᏓᏁᎴ ᏔᏯ ᎠᎴ ᏌᏙᏂ, ᎪᎯᎩ ᏗᎬᏩᏂᏁᏟᏴᏛ ᏱᎨᏎ ᏚᎾᏓᏅᏛᎢ, ᏧᏏᏕᎾ ᏱᏚᎾᏄᏬᎡ ᎠᎴ ᎪᏍᏚ ᏳᎾᏓᏅᎵᏰᎡᎢ.\nᎠᎴ ᎾᏍᎩ ᎤᎵᏁᏨ ᎬᏂᏛ ᎠᏓᏁᎯ ᎨᏒ ᎠᏓᎯᎯᏉ ᎾᏆᎵᏍᏓᏁᎸᎩ ᎠᏴ.\nᎤᏬᎯᏳᏁ ᏫᎵᎻ.\nᎤᏠᏱᎭᏉ ᎨᏎᏍᏗ ᏕᏣᏓᏓᏅᏖᏍᎬᎢ. ᏞᏍᏗ ᏱᏣᎦᏌᏯᏍᏕᏍᏗ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎨᏒᎢ, ᏕᏤᎳᏗᏙᎮᏍᏗᏍᎩᏂ ᎤᎾᏓᏙᎵᏍᏗ. ᏞᏍᏗ ᎢᏥᎦᏔᎾᎢ ᏱᏣᏓᏰᎸᏎᏍᏗ.\nᏕᏧᎬ ᎾᎥᏂ ᏧᏏᏩ.\nᎭᏫᏂ ᎤᏛᎸᎮᎢ ᏫᎵᎻ.\nᎢᏣᏛᎦᏅᏰᏃ ᏄᏍᏛ ᏧᏩᎫᏔᏅᏒ ᎠᏆᎴᏂᏙᎸ ᎠᏂᏧᏏ ᏧᎾᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏕᏥᎦᎿᏩᏗᏒᎢ, ᎾᏍᎩ ᎤᎶᏒᏍᏔᏅᎯ ᎦᏥᏯᏕᏯᏙᏔᏅ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎠᎴ ᏕᏥᏛᏔᏅᎢ.\nᎢᎬᏱᏃ ᏩᎦᏊ ᎠᎴᏱᎩ ᎪᎱᏍᏗᏊ ᏄᏓᎴ ᎦᎾᏝᎢ ᏱᎡᏙᎭ ᎣᎨᎵᏒᎢ.\nᏍᎩ.”\nᎯᎠ ᏄᏂᏪᏒᎩ, ᎢᏨᏯᎵᏒᎵᏤᎭ, ᏂᎯ ᏣᎬᏫᏳᎯ ᏣᏁᎳᏅᎯ, ᏫᎾᏍᏛᎾ ᏣᎵᏂᎩᏛ, ᏂᎯ ᎾᏍᎩ ᏤᎭ, ᎠᎴ ᎾᏍᎩ ᏤᎲᎩ, ᎠᎴ ᎾᏍᎩ ᏤᎮᏍᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏣᎩᏒ ᎤᏣᏘ ᏣᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏣᎬᏫᏳᎯ ᏥᏂᏣᎵᏍᏔᏅ.\nᎢᏨᎨᏳᎢ, ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ, ᎢᏥᎳᏅᏓᏕᎮᏍᏗᏍᎩᏂ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ, ᎠᏞᎢᏍᏗ ᎨᏒ ᎠᏴ ᎠᏆᏤᎵᎦ; ᎠᏴ ᏓᎦᎫᏴᎯ, ᎠᏗᎭ ᏱᎰᏩ.\nᎤᏂᏃᏕᎾ ᏚᏩᎧ ᎰᎻ, ᏣᎨ?”\n“ᎢᏨᏯᎵᎡᎵᏤᎭ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎤᏟᏍᏔ ᎤᏂᏯᎦᎵᏴᎲ ᎦᏙ ᎠᏂᏲᏍᎩ.\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᏴᏫ ᏗᏂᏩᎾᎦᎳ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏄᏅᏁᎰᎢ; ᎧᏁᏨᎯᏍᎩᏂ ᎠᏎᎵᏔᏅᎯ ᎠᏍᏓᏱᏗᏍᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎵᏁᏨ ᎣᏂ ᏧᎵᏁᏤᎢ, ᎤᏪᏥ [ᎠᏥᎸᎨᎶᎯ] ᏄᏩᏁᎴ ᎾᏍᎩ ᏂᎪᎯᎸ ᎦᎷᎶᎩ ᏂᎨᏒᎾ ᏥᎩ.\nᎾᏁᏳ ᎡᎶᏛ ᏅᎩ ᎢᎦᏚᎩ ᎨᏒ ᏍᏓᏚᎩ ᎠᏥᏕᏘᏗᏍᏗ ᎤᏛᎦᏁ ᏕᎦᏃᏣᎸ ᏥᏌ.\nᏣᎵ ᏚᎭᏄᏮ ᏃᎴ ᏧᏍᏆᏅᎾ ᎦᏓᏁ ᏃᎴ ᏗᎦᎨᏛ ᏂᏚᎵᏍᎦᏅ.\nᎥᏝ ᎠᎴ ᏴᏫ ᏗᏂᎭᏄᎸᎯ ᎠᎴ ᏩᎦ ᎠᏂᎩᎾ ᎤᏂᎩᎬ ᎬᏗᏍᎬᎢ, ᎤᏩᏒᏍᎩᏂ ᎤᎩᎬ ᎬᏗᏍᎬᎢ, ᏌᏉ ᏄᏴᎴ ᎦᎸᏉᏗᏳ ᏗᎨᏒᎢ, ᎿᏉ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᎫᏴᏙᏗ ᎢᎩᏩᏛᎡᎸ.\nᎾᏍᎩ ᎩᎶ ᎠᏥᏖᎸᏗᏱ ᏂᎨᏒᎾ ᎯᎠ ᎾᏍᎩ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏛ; ᎢᏨᏒᏰᏃ ᎢᏥᎦᎳᎭ ᎾᏍᎩ ᎢᎦᎵᏍᏓᏁᏗᏱ ᎡᎩᏁᏤᎸᎯ ᎨᏒᎢ.\nᏍᎩᎾᎾ ᏍᏉ ᎤᏩᏎ ᎪᏪᎵ ᎤᏙᏗ, ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᏚᎵᎬᏩᎳᏁᎳ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎩᎶ ᏱᏗᏧᎪᏓᏁᎮᏍᏗ ᎠᎵᏍᏓᏴᏗ ᎤᎬᏩᎵ, ᎠᎴ ᎠᏗᏔᏍᏗ, ᎠᎴ ᎦᎸᏉᏗ ᎢᎦ, ᎠᎴ ᎢᏤ ᏅᏙ ᎠᏢᏁᎬᎢ, ᎠᎴ ᏚᎾᏙᏓᏆᏍᎬ ᎢᎦ;\nᎪᎯᏳᏗᏃ ᎨᏒ ᎯᎠ ᏄᏍᏗ ᎦᏛᎬᎢ, ᎤᎵᏂᎩᏛ ᎪᎯᏳᏗᏱ ᎠᎪᏩᏛᏗᏱ ᎨᏒ ᏄᏍᏛ ᎤᏚᎩ ᎣᏩᏒᎢ, ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎢᏳᏓᎵᏍᏓᏁᏗᏱ ᎡᎲ ᎾᏍᎩ Ꮎ ᎠᏏ ᎠᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎠᏴ ᎠᏆᏓᏅᏘ ᎠᏫ-ᏗᏥᎦᏘᏯ. ᎤᏓᏅᏘ ᎠᏫ-ᏗᎦᏘᏯ ᎬᏅᎢ ᎡᎳᏗ ᏓᏁᎰ ᎠᏫ.\nᏃᏗ ᎡᎳᏗ ᏭᏅᏍᏔᏁᎢ, ᏔᎵ ᏚᏏᎳᏛᏁ.\nᎤᏂᏲᎴᏃ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎯᎠ ᏓᎦᏟᎶᏍᏗ, ᎠᎴ ᎦᎪ ᎠᏥᏃᎮᏎ ᎯᎠ ᏥᎦᏪᎳ? ᏏᏌ, ᎢᎬᏬᏎᎴᎢ.\nᏂᎦᏓ ᏗᎩᎷᏂᏗᏍᎬ ᏔᎵᏍᎪ ᎢᎦᏕᏘᏴᏓ.\nᎠᎴ ᎤᏣᏘ ᎤᏗᎴᎩ ᎨᏒ ᏕᎨᏥᎴᏴᏙᏔᏅᎩ ᏴᏫ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏙᎥ ᎤᏂᏐᏢᎢᏍᏔᏅᎩ, ᎾᏍᎩ ᎠᏓᏅᏖᏍᎬᏉ ᎢᎬᏩᏁᎵᏓᏍᏗ ᏥᎩ ᎯᎠ ᎾᏍᎩ ᎤᏕᏯᏙᏗ ᎨᏒᎢ; ᎠᎴ ᎥᏝ ᏱᏚᏂᏁᏟᏴᏎ ᏚᏁᏓᏅᏛ ᎾᏍᎩ ᎬᏩᎸᏉᏙᏗᏱ.\nᎠᏒᏛᏛ ᎨᏎ.\nᎾᏍᎩᏃ ᎾᏂᏪᏍᎬᎢ ᎦᏂᎳ ᏚᏂᏲᏍᏙᏓᏁᎴ ᎤᏂᏣᏘ ᎠᏥᎸ-ᎬᏩᏁᎴᏗᏱ ᎠᎾᏓᏅᏖᏍᎬᎢ.\nᎦᏙᎭᏃ ᏱᎩ?\nᎤᏂᏣᏛᎩᏃ ᎤᏃᎯᏳᏅᎯ ᎤᏂᎷᏨᎩ, ᎠᏂᏃᎲᏍᎬ ᎠᎴ ᎬᏂᎨᏒ ᎾᏅᏁᎲᏚᏂᎸᏫᏍᏓᏁᎸᎢ.\nᎠᏟᏰᎵᏒ, ᏏᏅᏓ ᏃᎴ ᏚᏕᏘᏴᏌᏗᏒ ᏕᎦᎷᎬ ᏃᎴ ᏕᎦᎶᏐᎲᏍᎬ ᎨᏍᏗ ᎧᏂᎩᏓ ᏱᎨᏎ ᏧᎵᎢ.\nᎠᏴᏰᏃ ᎤᏙᎯᏳᎯ ᎠᎩᎪᏁᎳ ᏥᏰᎸ ᎨᏒᎢ, ᏥᎦᏔᏩᏕᎦᏍᎩᏂ ᎠᏆᏓᏅᏙᎩᎯ, ᎦᏳᎳ ᏥᏥᎦᏔᏩᏕᎪ ᎾᏍᎩᏯᎢ ᏕᏥᏳᎪᏓᏁᎸ ᎾᏍᎩ ᎯᎠ ᎢᏳᏛᏁᎸᎯ,\nᎤᏍᏗ ᎠᏣᏗ, ᎭᏓᏬᏣ.\nᎤᏍᏆᏂᎩᏗ ᏏᏆ.”\n“ᏰᎵ ᎤᏓᏂᎳ ᏌᎳᏓ.\nᎦᏲᏟ ᎠᏍᎦᎢᎮ ᎤᏍᏗ ᎠᏣᏗ, ᎠᏎᏃ ᎾᎥᏂ ᏭᎷᏤ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥ ᏱᎩ ᎠᏣᏗ ᏂᎯ ᎢᏳᏍᏗ.\nᎠᎴ ᏯᏃᎩᏳ ᎤᏲ ᏂᎦᏥᏴᏁᎲ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎨᏌᏗᏒᎢ,ᎠᎴ ᎤᏂᏐᏢᎢᏍᏙᏗᏱ ᏂᎦᏥᏴᏁᎲᎩ; ᎤᏣᏔᏅᎯᏃ ᎦᏥᏂᏆᏘᎲ ᎾᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏲ ᏂᎦᏥᏴᏁᎲ ᏅᏩᏓᎴ ᏙᏗᎦᏚᎲ ᏫᎦᏥᎨᎰᎢᎲᎩ.\nᎤᏲᏰᏃ ᎢᏳᎾᏛᎿᏕᎩ ᏂᎪᎯᎸ ᎨᏤᎳᏗᏙᎭ, ᎠᎴ ᎢᏳᏉ ᎢᏤᎴᏍᎬᎢ ᎣᏍᏛ ᏱᏂᏕᏣᏛᏂᏏ; ᎠᏴᏍᎩᏂ ᎥᏝ ᏂᎪᎯᎸ ᏱᏨᏰᎳᏗᏙᎭ.\nᎢᏳ ᎠᎴ ᏚᏳᎪᏕᏍᏗ ᎾᏍᏉ ᎠᏴ ᎠᏇᏅᏍᏗᏱ, ᎾᏍᎩ ᏓᏲᏤᏅᏍᏔᏂ.\nᎣᎭᏁ, ᎠᏫ, ᎦᎾᏌ ᏃᎴ ᎠᏫ ᎢᏳᏍᏗ ᏛᎠᏂᎷᏥ ᏃᎴ ᎡᏘᏴ ᏄᎾᏛᏁᎵᏙᎸ ᏛᎤᏂᎷᏤᎵ.\nᎢᏨᏔᏲᏎᎭ ᏂᎯ ᏗᏦᎯᏳᏗᏱ ᎾᏍᎩ ᎢᏳᎾᏍᏗ, ᎠᎴ ᎾᏂᎥ ᎢᏧᎳᎭ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎠᎾᎵᏂᎬᏁᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏤᏣᏓᏂᎸᎩ ᎤᎬᏫᏳᎯ ᏗᎧᎿᏩᏕᎩ ᎨᏒ ᎢᏳᏍᏗ ᎤᏣᏘ ᎣᏏᏳ ᎠᏰᎸᏗ ᎢᏨᏓ; ᎠᎴ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏕᏥᎸᏉᏕᏍᏗ;\nᏴᏫ ᏂᏂᏫ ᏣᏁᎲᎩ ᏙᏛᎾᎴᏂ ᏓᎬᏩᎾᏡᏔᏂ ᎪᎯ ᏣᏁᎭ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏒᎢ, ᎠᎴ ᎤᏂᏍᎦᏅᏨ ᎬᏂᎨᏒ ᎤᏛᏅᏁᎵ; ᎾᏍᎩᏰᏃ ᏚᎾᏓᏅᏃ ᏚᎾᏓᏅᏛ ᏚᏂᏁᏟᏴᏒᎩ ᏦᎾ ᎠᎵᏥᏙᎲᏍᎬ ᏄᏩᏂᏌᏅᎩ, ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎨᏉ ᏦᎾ.\n”ᎲᎦ ᎢᏯᏂ?” ᎤᏛᏛᏁ ᎡᎶᏗ.\nᎠᏁᎷᏁᏃ ᏌᏉ ᎢᎦᎦᏛ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎷᎦ ᎯᎠ ᎠᏍᎦᏯ, ᏆᎳᏆᏃ ᏗᏍᎩᏲᎯᏏ.\nᏃᏗ ᏧᏁᎸᏗ ᏕᎦᏅᏙᎬᎢ ᏗᎬᏗ ᎤᎴᏅᎮ ᏓᎦᎵᏍᎬ ᏓᏏᎳᏛᎢ, ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏚᏂᏴᏙᏛ ᎧᏅᏑᎸᎢ.\nᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎤᏛᏛᏅᎩ ᏥᏌ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᎴ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬ ᎤᎬᏩᎵ.\nᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᏓᏓᏂᎸᎨᏍᏗ ᏥᏅᏏᏛ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎩᎶᏃ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎤᏛᎩᏅᏏᏛ ᏓᏓᏂᎸᎨᏍᏗ.\nᏆᎴᏗᏱ ᎤᏪᏅᏎᎢ, ᏥᏌ ᎠᏰᎸᎢ ᏭᏔᏲᎴᎢ, ᎿᏉᏃ ᏆᎴᏗ ᎤᏁᏤ ᎠᏰᎸᎢ ᏧᏂᏲᎯᏎᏗᏱ.\nᎢᏗᎦᏔᎭᏰᏃ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏓᏅᏙ ᎤᏠᏱ ᎨᏒᎢ; ᎠᏴᏍᎩᏂ ᎤᏇᏓᎵ ᎠᏆᏘᏂ-ᏙᎯ, ᎥᎩᎾᏗᏅᏛ ᎠᏍᎦᏂ ᎠᎩᎾᏢᏗᏱ.\nᏫᏤᎾᏉ ᏚᏬᏎᎸ ᏁᏂᏏ ᎠᏂᏍᎦᏯ, ᏣᎵ, ᎶᏩᏂ, ᏣᏥ ᏃᎴ ᏤᎩ.\nᎾᏍᎩ ᎯᎠ ᏣᎾᏕᎦᏪᏎᎮᎢ, ᎨᎾ, ᎤᏍᏗ ᎠᎨᏳᏣ, ᎨᎾ ᏣᎵᏏ ᏩᏣᏔᏬᎢᏏ ᏍᏔᏰᎬᎢ.\nᏭ-ᏣᎢᏒᏃ, ᏚᏠᏎ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎦᏚᎲ ᏅᏓᏳᏄᎪᏨᎯ, ᎪᎯᏗᏳ ᎠᏂᏍᎩᎾ ᎬᏩᏯᎢ ᏂᎨᏎᎢ, ᎠᎴ ᎥᏝ ᏱᏓᏄᏬᏍᎨᎢ, ᎥᏝ ᎠᎴ, ᎠᏓᏁᎸ ᏯᏕᎲᏍᎨᎢ, ᏓᏤᎵᏍᏛᏉᏍᎩᏂ.\nᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᎤᏙᏢᏁ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏁᏉᎢᏍᏗᏱ. ᎠᏎᏃ ᎾᎿ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏁᏉᏥᏕᎬ ᎾᎿ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏟᎯᏳ ᎤᏁᏉᏥᏕᎬᎩ;\nᎧᏅᏩᏅ ᏏᏆ ᎭᏫᏯ, ᎪᎢ, ᎠᎹ ᎠᏑᏱ ᎪᏒᏅ, ᎤᏁᎦ ᏎᎷ ᎢᏣ, ᎤᏂᎧᎭᏲᏓ ᏚᏯ, ᏁᏩᏓ, ᎤᏂᎧᏲᎭᏓ ᏒᎧᏔ ᏃᎴ ᏆᎾ, ᎠᎪᏗ ᎤᎧᏔ, ᎤᎵᏏᎩ ᎧᎵᏎᏥ, ᎠᏑᏴᏗ, ᎬᏂᎨ ᎫᎵᏙᏗ, ᎠᏂᏤ ᎧᏫ ᏚᏯ ᏃᎴ ᎤᏍᏗ ᏗᏍᏙᏍᏙᏗ.\nᎥᏝ ᎡᎶᎯ ᎠᏁᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎠᏴ ᎡᎶᎯ ᎨᎢ ᏂᎨᏒᎾ ᏥᎩ.\nᎿᏉᏃ ᏂᎯ ᏫᏙᏓᎨᏥᏲᏏ ᎢᏥᎩᎵᏲᎢᏍᏗᏱ, ᎠᎴ ᏙᏓᎨᏥᎵ; ᎠᎴ ᏂᎦᏗᏳ ᏄᎾᏓᎴᏒ ᏴᏫ ᎨᏥᏍᎦᎨᏍᏗ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᏂᎯ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎭᏢ ᏣᏓᏨᏯᏍᏗᎨᏒᎢ? ᏂᎯ ᏗᏓᏂᏐᏗᏱ ᎨᏒᎢ, ᎭᏢ ᏣᏓᏎᎪᎩᏍᏗ ᎨᏒᎢ?\nᎯᎠᏰᏃ ᎠᏲᎩ ᎨᏒ ᎠᏲᎩ ᏂᎨᏒᎾ ᏛᏄᏬᏍᏔᏂ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎠᏲᎱᏍᏗ ᎨᏒ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᏛᏄᏬᏍᏔᏂ.\nᎤᏂᏣᏘᏃ ᎤᏂᎪᎲ ᏄᏛᏁᎸ ᏉᎳ ᎤᏂᏌᎳᏓᏁ ᎠᏂᏁᎬᎢ, ᎵᎨᎣᏂᏯ ᎠᏁᎯ ᎤᏂᏬᏂᎯᏍᏗ ᎤᏅᏔᏁ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎸᎳᏗ ᎠᏁᎯ ᎠᎾᏠᎠᏏᎦ ᏴᏫ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᎢᏳᎾᏍᏗ.\nᎠᏆᏛᎦᏅ Canada.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏕᎩᎪᏩᏗᎭ ᎤᏂᏣᏘ ᎨᏣᏁᏄᎳᏍᏗᏍᎬ, ᏥᎪᏃ ᎦᎪ ᎠᏆᏒᏂᎦ ᎢᎭᏗᎭ?\nᎠᏎᏃ ᎨᏍᏗ ᎯᎸᎯᏳ ᎠᏆᏛᎦᏅ ᏱᎩ ᎩᎶ ᎤᎵᏬᏨ ᎤᏓᏅᏙᎩ ᎤᏲᏤᎸ ᎠᏯ ᎤᏰᎸᏗ.\nᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏁᎳᏗᏍᏗᏱ ᏗᏥᎾᏫᏱ ᎪᎯᏳᏗ ᎬᏙᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏂᎯ ᎠᏓᎨᏳᏗ ᎨᏒ ᏗᏣᎵᎾᏍᏕᏝᏗᏍᏔᏅᎯ ᎠᎴ ᏗᏣᎵᏍᏓᏱᏗᏍᏔᏅᎯ ᎨᏒᎢ,\nᎤᏂᏣᏘᏃ ᏚᏂᏁᏤᎸᎩ ᎡᎳᏪᏱ ᎤᏅᏗᏱ. ᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᏍᎩᏂᏙᎵᎩ, ᏣᎬᏫᏳᎯ ᏕᏫ ᎤᏪᏥ.\nᎤᏪᏴ ᎾᎥ ᏥᏍᏚ ᎠᎴ ᏌᎶᎵ ᏓᎾᏟᏃᎮᏍᎬ.\nᏂᎦᏛᏃ ᎤᎾᏛᎦᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᏱᎩ ᏥᏓᎩᎵᏲᎢᏍᏙᏗᏍᎬ ᏥᎷᏏᎵᎻ ᎯᎠ ᏕᏅᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎩ? ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂ ᎤᎷᏨᎩ, ᎾᏍᎩ ᏧᎸᏍᏗ ᏫᏚᏘᏃᎮᏗᏱ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ.\nᎠᎴ [ᏥᎾᏰᏍᎦ.] ᏔᎵᏁ ᏫᏥᎷᏨᎭ, ᎠᏆᏁᎳᏅᎯ ᎠᏆᏕᎰᎯᏍᏙᏗᏱ ᎢᏥᎦᏔᎲᎢ, ᎠᎴ ᎦᏥᏍᎪᏂᏍᏗᏱ ᎤᏂᏣᏘ ᎦᏳᎳ ᎤᏂᏍᎦᏅᏨᎯ ᏥᎩ, ᎠᎴ ᎤᏲ ᏄᏂᏰᎸᏅᎾ ᏥᎩ ᎦᏓᎭ ᏄᎾᏛᏁᎸᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏚᎾᏂᏏᏅᎢ, ᎠᎴ ᎤᎾᎵᏐᏢᎢᏍᏔᏅᎢ.\nᎠᎪᏙᏗ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎠᎨᏴ ᏧᎩᏎ ᎠᎴ ᏧᏑᏴᏁ ᏦᎢ ᎢᏳᏠᎶᏛ ᎢᏒ ᎦᎸᎢ, ᎬᏂ ᏂᎦᏛ ᎤᏬᏘᏐᏅ.\nᏣᏄᏏ ᎤᏅᏕ ᏫᎵᎻ, ᎩᏟ ᏭᏂᏴᎮ.\nᎤᏂᏍᏆᏛᏃ ᎢᎪᎯᏛ ᏚᎵᏒᏍᏛᎢ, ᎥᎤᎾᏨᏏᏗᏒ ᎠᏲᎵ ᏥᏌ ᏥᎷᏏᎵᎻ ᏗᎤᏗᎩᏰᎢ, ᏦᏩᏃ ᎠᎴ ᎤᏥ ᎥᏝ ᏱᏁᎵᏍᎨᎢ.\nᎢᎦ ᎢᏴ ᎤᏲᎯᏍᏔᏅ, ᎤᏍᏘ ᎤᏬᏔᏅ ᏃᏥ ᏧᏍᏙᏰᏛ ᏃᎴ ᎠᏓᏯ ᎠᏓ ᏚᏮᏔᏅ.\nᎾᎯᏳᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎤᏂᏣᏘ; ᏥᎪ ᎦᏃᏍᎩᏍᎩ ᏥᏥᏲᎰ ᎾᏍᎩᏯ ᎢᏥᎷᎩ ᏍᎩᏂᏴᎯᎦ, ᎠᏰᎳᏍᏗᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏗᏥᏁᎯ? ᏂᏚᎩᏨᏂᏒ ᎢᏧᎳᎭ ᎢᏗᏅᎩ ᏕᎦᏕᏲᎲᏍᎬᎩ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎥᏝᏃ ᏱᏍᎩᏂᏱᏍᎨᎢ.\nᎠᏂᏩᏥᏂ ᏛᎾᏈᏴ ᎤᏂᏲᎰᏎᎸ ᏭᏕᎵᎬ ᏩᏂᎷᏨ.\nᏧᏳᎪᏘ ᎨᏒ ᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ ᏕᎨᏥᎴ ᎣᎬᏌ ᎣᎦᏤᎵᎪ.\nᏥᎷᏏᎵᎻᏃ ᎡᏙᎲ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎢᏳ ᎨᏒᎢ, ᎤᏂᏣᏛᎩ ᎤᏃᎯᏳᏅ ᏚᏙᎥᎢ, ᎤᏂᎪᎲ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎢ.\nᎠᏎᏃ ᎪᎯ ᎨᏒ ᏂᎯ ᎾᏍᏉ ᎯᎠ ᏂᎦᏛ ᎢᏴᏛ ᏂᏕᏨᏁᎭ; ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎧᎾᎸᎢᏍᏗ ᎨᏒᎢ, ᎠᏓᏂᏆᏗᏍᏗ ᎨᏒᎢ, ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ, ᎤᏁᎢᎸᏗ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏗᏥᎰᎵ ᏅᏓᏳᏄᎪᏨᎯ.\nᎾᏍᎩᏃ ᏄᎾᏛᏁᎴᎢ, ᏫᏚᏂᏁᎴ ᏗᎨᎦᏁᎶᏗ ᏆᏂᏆ ᎠᎴ ᏐᎳ ᏚᎾᎨᏅᏕᎢ.\nᏂᎯᏃ ᎨᏆᏂ ᎦᎸᎳᏗ ᎢᏴᏛ ᏤᏣᏌᎳᏓ, ᏨᏍᎩᏃᎢ ᏴᏓᏰᎶᎥᏔᏂ; ᎢᏳᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸ ᏂᎯ ᎢᏤᎲ ᏱᏙᎦᎸᏫᏍᏓᏁᎴ ᏐᏓᎻᏱ, ᎠᏏ ᎪᎯ ᎨᏒ ᏱᏂᎬᏩᏍᏕᏉ.\nᏎᎦ ᎤᎦᏘᏛ ᎠᏓᏅᏖᎵᏙ, ᎤᎦᏙᏍᏛ ᏧᎦᏒᏍᏗ ᏓᎴᎲᏍᎬ ᎦᏅᏃᏩ.\nᏚᎴᏅ ᏣᎵ, ᎠᏓ ᏗᏍᏆᎸᎦᏒ ᎢᏳᏍᏗ ᏚᏃᏴᎵᏒ ᏗᎦᏁᎨᏂ.\n“ᎠᎾᏔᏍᎩ ᏗᏗᏧᎬ ᏫᎶᎯ, ᎦᏙ ᎭᏍᎪᎳ! \nIII. ᎤᏓᎵᏗᎩᎡᎸ  \nᎤᏙᎯᏳᎯᏯ ᏥᏁᎦ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ, ᎥᏝ ᏱᎦᏥᎪᎥᏍᎦ, ᎠᏆᏓᏅᏛ ᎾᏍᏉ ᎠᏉᎯᏳᏓᏁᎯ ᏂᎦᎵᏍᏗᎭ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ,\nᏧᎦᏴᎵᎨᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎠᏎᏃ ᏚᏁᏤᎴ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ Ꮔ-ᎵᏍᏔᏅᎢ.\nᎠᏂᏐ ᎨᏥᎾᏌᎢ ᏚᎾᎧᎾᏁᎢ.\nᎠᏂᎦᏔᎾᎢ ᎠᎾᏤᎸᏍᎬᎢ, ᎤᏂᏁᎫ ᏄᎾᎵᏍᏔᏁᎢ;\nᎠᏏᏉᏃ ᎤᏂᎯᏍᏗᏱ ᎠᎾᏓᏅᏖᏍᎬᎩ, ᏑᎾᏓᏡᎩ ᎨᏒ ᎠᏂᏯᏫᏍᏗ ᏗᏘᏂᏙᎯ ᎤᏛᎦᏅᎩ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᎾᎵᏖᎸᎲᏍᎬᎢ;\nᎾᏍᎩᏯᏉ.\nᎠᎴ ᎤᏚᎵᏍᎨ ᎠᎨᎳᏍᏙᏗᏱ ᎤᏅᎪᎣᏒᎯ ᎤᏪᎿᎢ ᎤᏪᏍᎩᎸᎢ; ᎠᎴ ᎾᏍᏉ ᎩᎵ ᎤᏂᎷᏤ ᏚᏂᎦᎾᏕ ᏚᏂᎦᎾᏕ ᏚᏥᏓᎸᎢ.\nᎦᎪᏃ ᏂᎯ ᏥᏂᏣᏛᏅ ᎤᏓᏑᏯ ᎤᏪᎵᎯᏍᎬᏉ ᏰᎵ ᏌᏉ ᎢᏳᏟᎶᏛ ᏱᎧᏁᏉᏣ ᎬᏅᎢ?\nᎾᏍᎩᏃ ᏫᏚᏯᏅᎲ, ᎯᎠ ᏂᏚᏪᏎᎴ ᏚᏟᎶᏍᏓᏁᎴᎢ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏎᏓᏂ ᏱᎦᏄᎪᏩ ᏎᏓᏂ?\nᏥᏌᏃ ᎤᏩᏛᎦ ᎠᎩᎾ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ, ᎤᎩᎸᏅᎩ, ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅᏥᎪᏪᎳ;\nᎠᏁᎷᎩᏍᎪ ᎠᎨ ᎢᏳᏓᏅᎯᏓ ᏃᏊᎴ ᏗᎠᏨᏍᎪ ᏃᏊᎴ ᎢᎠᏁᎷᎩᏍᎪ ᎤᏠᏱᏊ ᏳᏚᎵᎭ ᎩᎶ ᎤᏍᏓᏩᏛᏍᏗᎢ.\nᎠᎼ ᎠᏁᎰ.\nᎠᎨᏰᏃ ᎤᏙᎴᎰᏒ ᏄᏗᏍᎦᎸᎾ ᎨᏒᎢ, ᎤᎷᏤ ᎤᏪᎾᏫᏍᎨᎢ, ᎠᎴ ᎢᎬᏱᏢ ᎤᏓᏅᏁᎴᎢ, ᏂᎦᏛᏃ ᏴᏫ ᎠᏂᎦᏔᎲ ᎤᏃᏁᎴ ᎤᏧᎵᏍᏙᏔᏅ ᎤᏒᏂᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎩᎳᏉ ᎢᏴᏛ ᎤᏗᏩᏒᎢ.\nᎢᏥᎪᎵᏰᏍᎨᏍᏗ ᎾᏍᎩ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᎤᎬᏫᏳᎯ.\nᎢᏳᏍᎩᏃᏂ ᎾᏍᎩ ᎤᏤᎵ ᏱᏓᎩᎸᏫᏍᏓᏁᎭ, ᎾᏍᏉ ᎠᏴ ᏂᏍᎩᏲᎢᏳᎲᏍᎬᎾ ᏱᎩ, ᎠᏎ ᎢᏦᎯᏳᎲᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏰᎵ ᎨᏣᏙᎴᎰᎯᏍᏗ ᎠᎴ ᎨᏦᎯᏳᏗ ᏱᎩ ᎠᎦᏴᎵᎨᎢ, ᎠᎩᏯᎥᎢ ᎠᎴ ᎾᏍᎩ ᎠᏴᏥᏯᎥᎢ\nᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ ᎠᏓᎵᏅᏟ, ᏂᎦᎥ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏂᎦᎥ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏂᎦᎥ ᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏏᏳ ᎬᏰᎸᏗ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏏᏳ ᎠᏂᏃᎮᏍᎨᏍᏗ; ᎢᏳᏃ ᎣᏏᏳ ᎢᏯᏛᏁᏗ ᏰᎭ, ᎢᏳᏃ ᎪᎱᏍᏗ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏕᏣᏓᏅᏖᏍᎨᏍᏗ.\nᏞᏍᏗ ᏱᏥᎵᏓᏍᏔᏁᏍᏗ; ᎥᏝ ᎦᏰᏥᎶᏄᎡᏗ ᏱᎩ ᎤᏁᎳᏅᎯ; ᏄᏍᏛᏰᏃ ᎩᎶ ᎠᏫᏍᎬᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎦᏟᏏᏍᎨᏍᏗ.\nᎪᎯᏳᏗᏰᏃ ᎨᏒ ᎣᏨᏗᎭ ᎣᏤᏙᎲᎢ, ᎥᏝᏃ ᎠᎪᏩᏛᏗ ᎨᏒᎢ.\nᎬᏂᎨᏒᎢᏳᏰᏃ ᏂᎦᎵᏍᏗᎭ ᎾᏍᎩ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏧᏓ ᎠᏂᎳᏍᏓᎸ ᏧᏓᎴᏅᎲᎢ; ᎾᏍᎩ ᎠᏂᎳᏍᏓᎸ ᎼᏏ ᎥᏝ ᏱᏚᏁᎢᏍᏔᏁ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎨᏒ ᎤᎬᏩᎵ.\nᎦᎷᏯᏍᏗ ᎦᏅᏬᎢ ᏭᏒᎭᏂᎸ ᏣᎵ, ᎤᏏᏅᏒ.\nᎤᏰᏤ ᏦᎢ-ᏅᎩᏁ ᎦᏃᎯᎵᏓᏍᏗ ᏅᏙ, ᎤᏯᏛᎮ ᎤᏔᎷᎩᏍᎩ ᎦᏄᎸ, ᏕᎨᏴ ᏚᏅᏓᏒ ᏫᏗᎦᎶᏍᎩ, ᏌᎪᏂᎨ ᎠᏨᏍᏛ ᏚᏓᏴᎳᏖ.\nᏚᏏᏔᏛᏃ ᎾᎿ ᎤᏓᏅᏒᎩ.\nᎩᎦᎨ ᏧᏍᎪᎸ ᏧᏂᏥᎸᏍᎩ ᎤᏄᏝᎡᎢ ᎢᏈᎬᎢ.\nᏙᎩᎾᏙᎨᎲ, ᎣᏍᏓ ᏙᎩᎾᎴᏅ, ᎦᎶᎯᏍᏗ ᎾᎥᏂ ᏫᏙᎩᎾᎴᏅ.\nᎠᏆᏙᎴᎰᏒᏃ ᎾᏍᎩ ᏧᏂᎧᎿᏩᏛᏍᏗᏉ ᎧᏃᎮᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎫᎢᏍᏗᏍᎬᎢ ᎬᏩᏲᎱᎯᏍᏗᏃ ᎠᎴ ᎦᏰᎦᎸᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎾᎫᎢᏍᏛᎾ ᎨᏒᎢ.\nᎠᏂᏧᏏᏃ ᎤᏂᏄᎪᏨ ᏗᎦᎳᏫᎢᏍᏗ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᏲᎴ ᎾᏍᎩ ᎯᎠ ᎨᏥᏃᎮᎮᏗᏱ ᏔᎵᏁ ᎤᎾᏙᏓᏆᏍᎬᎢ.\nᎤᏔᏂᏗᎨ ᎢᏳᏅᏁᎸ ᏓᏥᎶᏍᏛ ᎣᎯᏍᏙᏗ ᏗᏣᎪᏩᏛᏗ ᎤᏳᎦ ᏗᏂᏱᏙᎢ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᏉᎳ ᎡᏗᏂᏱ ᎤᏓᏅᏒᎩ ᎪᎵᏂᏗᏱ ᏭᎷᏨᎩ.\nᏐᏉ ᎢᏳᏪᏅᏍᏗ ᏓᎾᎵᏍᏕᏓᎵᏴᏍᎨᎢ.\nᎠᏆᏁᎳᏅᎯ ᏥᏯᎵᎡᎵᏤᎰ ᎢᏳᏍᏗᎭ ᎢᏨᏯᏅᏓᏗᎬᎢ,\nᎤᏓᏅᏖᎸᏃ ᏭᎷᏤ ᏗᎦᏁᎸ ᎺᎵ, ᏣᏂ ᎹᎦ ᏧᏙᎢᏛ ᎤᏥ, ᎾᎿ ᎤᏂᏣᏖ ᏓᏂᎳᏫᎡ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᎢ.\nᎠᏎᏃ ᎡᎳᏪᏉ ᎤᏩᏎᎢ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏳᏛᏁ ᏨᏁᏤᎢ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏔᎵᏁ ᎤᏛᏛᏁ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯᏍᎪ ᎦᎶᏁᏛ, ᎠᏥᎸᏉᏗ ᎤᏪᏥ?\nᎠᎴ ᎦᏙᏃ ᎢᎯᎪᏩᏘᏍᎪ ᎤᏢᏓᎸᏛ ᎤᎦᏑᎲᎢ ᏗᏍᏓᏓᏅᏟ, ᏁᎵᏍᎬᎾᏃ ᎢᎨᏐ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ.\nᎤᏍᏚᏁᏃ ᎪᏪᎵ ᎠᎴ ᏫᎤᏅᏁᎴ ᎠᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᏪᏁᎢ. ᏂᎦᏛᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏯᎢ ᎤᏯᏅᏒᎯ ᏕᎬᏩᎧᎿᏁᎢ.\nᎴᎣᏗᏏᏰᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ ᎡᎺᏅ ᏥᏚᏙᎥ, ᎾᏍᎩ Ꮎ ᏄᏓᎵᏓᏍᏛᎾ ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎧᏃᎮᏍᎩ ᏥᎩ, ᏗᏓᎴᏅᏗᏍᎩ ᎤᏬᏢᏅᏅ ᎤᏁᎳᏅᎯ.\n“ᏁᎵᎾ? ᎤᏛᏁ.\nᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎷᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᎪᎱᏍᏗ ᏗᎦᏓᏛᏙᏗ ᏱᎩ ᏂᎯ, ᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᏥᎪ ᎠᏂ ᏣᎷᏥᎸ ᏍᎩᏂᎩᎵᏲᎢᏍᏙᏗᏱᏉ ᎠᏏᏉ ᎾᏍᏆᎵᏍᎬᎾ?\nᎯᎠᏃ ᎾᎩᏪᏒᎩ, ᎦᏙ ᏓᎦᏛᏁᎵ, ᏣᎬᏫᏳᎯ? ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏔᎴᎲᎦ, ᏕᎹᏍᎦ ᎮᎾ, ᎾᎿᏃ ᏓᏰᏣᏆᏁᎵ ᏂᎦᎥ ᏚᏚᎪᏔᏅ ᎢᏣᏛᏁᏗᏱ.\n“ᎤᏰᎸᏛᏃ ᏥᏍᎦᏃᎸᏍᎦ, ᎦᏕᎶᎣᏍᎦ ᏂᏥᎦᏴᎸ.\nᏔᎵ ᏧᏙᏓᏆᏓ ᎫᏩᏂᎩᏛ.\nᏎᎦᏨ ᎦᎷᎨ ᏲᎾ ᎤᏤᏍᏙ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᎠᎴ ᎬᏩᏎᎪᎩᏍᏔᏅᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎩᎬ, ᎠᎴ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᎤᏃᎯᏳᏒᎢ, ᎾᏍᎩ ᏓᏅᏅ ᏂᏚᏂᎸᏉᏛᎾ ᎨᏒᎢ.\nᎠᎴ ᏛᎡᏙᎵ ᏧᎶᏄᎮᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᎩ ᏅᎩ ᏂᏚᏓᎠᏗᏒ ᏓᏁᏩᏗᏒᎢ ᎡᎶᎯ ᏣᏁᎭ ᎾᏍᎩ ᎪᎦ ᎠᎴ ᎺᎪᎦ, ᎾᏍᎩ ᏧᏪᏟᏐᏗᏱ ᏧᎾᎵᏍᏗᏱ; ᎾᏂᎥᏃ ᏃᏳ ᎠᎺᏉᎯ ᎠᎲ ᎾᏂᎥ.\n ᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᏛᎦᎾ\nᎠᎾᏓᎪᎾᏗᏍᎬ ᎤᏂᎬᏫᏳᎯ, ᎬᎩᏁᏥᏏ ᏔᎵᏍᎪᎯᏍᎩ ᎠᏕᎸ ᏦᏥᏁᏗ ᎰᎻ ᎠᎪᏕᏍᎩ, ᎤᎾᎵᎪᎯ ᎤᏍᏆᏓ ᎠᏯᏨᏗ ᏗᎪᏪᎵ, ᎢᏨᏯᎵᎮᎵᏤᎭ ᏄᏍᏛ ᏄᏛᏁᎸ ᏏᏆ---ᎯᎠ ᎤᏔᎷᎩᏍᎩ, ᎯᎠ ᎤᏣᏔ ᎣᏍᏓ, ᎯᎠ ᏳᏨᏉᏛᎾ-“ᏄᏂᏣᏛ ᏚᏘᏃᎸ ᎠᏂᎦᏖᏃᎵᏙᎯ ᎭᏂ ᏍᎦᏚᎩ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.” \n“ᎭᏂᏉ ᎨᏙᎮᏍᏗ,” ᎤᎵᏍᎦᏎᏔᏁᎢ ᏥᏍᏕᏥ.\n“ᎦᏲᏟ ᎤᏬᏨᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏥᏔᏲᎭ ᎢᏣᏓᏙᎵᏍᏓ, ᎢᏦᎯᏳᎲᏍᎨᏍᏗ ᎡᏥᏁᎢ ᎨᏒᎢ, ᎠᎴ ᎠᏎ ᎢᏥᎮᏍᏗ.\nᎠᏎᏃ ᎥᏝ ᏰᏥᎦᏔᎭ, ᎠᏴᏍᎩᏂ ᏥᎦᏔᎭ; ᎢᏳᏃ ᎥᏝ ᏱᏥᎦᏔᎭ ᏱᏚᏗᎭ ᏥᏰᎪᎩᏉ ᏱᎩ, ᏂᎯ ᏥᏂᏣᏍᏗ ᎾᏍᎩᏯᎢ; ᎠᏎᏃ ᏥᎦᏔᎭ, ᎠᎴ ᎤᏁᏨ ᎠᎩᏍᏆᏂᎪᏗ.\nᏂᎦᏓ ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎨᏯ ᎤᏐᏱ ᎤᎾᏅᏕ ᎧᏃᎮᏗ.\nᏗᎾᏙᏱᏁ ᎠᎾᎵᏍᎩᏍᏔᏁᎩ ᏐᏈᎵ ᏗᏥᎶᏍᏔᏅ ᏗᎩᎸᏙᏗ ᎠᎾᏕᏲ ᎢᏣ ᏃᎴ ᎧᏃᎩᏍᏗ ᏧᏃᏴᎬ ᎢᏣ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᏗᎾᏛᏁᎵᏍᎬ ᎢᏣ, ᎧᏂᎩᏓ ᏧᏂᎦᏴᎵ ᎫᏩᎾᎦᏎᏍᏙᏗ ᏱᎨᏒᎾ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᎢᏳᏍᏗᏉ ᎢᏳᎾᏛᏁᏗ ᎠᏁᎵᏍᎬᎢ.\nᎾᏍᎩᏰᏃ ᏚᏙᎥ ᏅᏧᎵᏍᏙᏔᏅ ᎠᏁᏙᎭ ᎪᎱᏍᏗ ᏂᏓᏂᏂᏟᏍᎬᎾ ᏧᎾᏓᎴᏅᏛ ᏴᏫ.\nᎢᏣᏉᏗ, ᎡᎵᏍᏗ.\nᎨᏍᏗ ᏳᎾᏟᎸ.\nᎢᏳᏃ ᎠᏋᏒ ᏱᎦᏓᏃᎮᎭ, ᏥᏃᎮᏍᎬ ᎥᏝ ᏱᎬᏙᎯᏳᎭ.\nᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎠᏂᎦᏔᎮᎢ ᎣᏍᏓ ᏴᏫ ᎨᏒᎢ, ᎡᏝᏪᎯ ᎨᏎᎢ ᏃᎴ ᎤᏓᏅᏘ.\nᎠᏉᏰᏅ ᎦᎵ ᏏᎦᏫ ᏓᎩᏓᏍᎩᏌᏅ ᏃᎴ ᎠᏥᏍᏛ ᏫᏍᎩ ᎠᎩᎳᎩᏒ ᎠᎩᏇᏅᏛ, ᏣᎵ ᎤᏬᏛ ᎠᏇᏅᏒ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏚᎵᏍᎪᎸᏓᏁᎴᎢ. ᏗᎦᏓᎭᏃ ᏗᏓᏅᏙ ᎤᏂᏄᎪᏨ, ᏏᏆ ᏫᏚᏂᏴᏎᎴᎢ; ᏑᎾᏓᏡᎩᏃ ᎤᎾᏁᎷᎩᏎ ᎤᏂᎦᏐᎠᏎ ᎦᏁᏡᎩ ᎨᏒ ᎥᏓᎵ ᏭᎾᎵᏔᏗᏅᏎᎢ, (ᏔᎵ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡᎢ,) ᎠᎴ ᎥᏓᎵ ᏚᏂᎬᏤᎢ.\nᎡᎶᏓᏂ ᎪᎱᏍᏗ ᎠᏋᏅ ᎡᏥᏲᎵᎸᎭ. ᎾᏏᏌ ᏚᏓᏘᎾᎥ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎠᏃᎯᏳᎲᏍᎩ ᎨᏒ ᏕᏥᏲᎵᎸᎭ.\nᎠᎴ ᏛᏂᏩᏛᎯ ᎨᎦᎫᏴᏓᏁᏗ ᏂᏚᏳᎪᏛᎾ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩᏯ [ᎨᎦᎫᏴᏓᏁᏗ ᏥᎩ] ᎣᏏᏳ ᎤᏥᏰᎸᎯ ᎢᎦ ᎨᏒ ᎣᏍᏛ ᏧᎾᎵᏍᏓᏴᏗᏱ. ᏥᏚᏓᏓᎶᎢ ᎠᎴ ᎪᎱᏍᏗ ᏧᏍᏙᎢ ᎾᏍᎩᏯᎢ, ᎣᏏᏳ ᎤᏂᏰᎸᎭ ᎤᏅᏒ ᎠᎾᏓᎵᏓᏍᏗᏍᎬᎢ, ᎾᎯᏳ ᎢᏧᎳᎭ ᎢᏣᎵᏍᏓᏴᎲᏍᎬᎢ.\nᎠᏓᏁᎸᏃ ᎤᏴᎸ, ᎥᏝ ᎩᎶ ᏳᎵᏍᎪᎸᏓᏁᎴ ᎤᏴᏍᏗᏱ, ᏈᏓ ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ ᎤᏅᏒ, ᎠᎴ ᎠᎨᏳᏣ ᎤᏙᏓ ᎠᎴ ᎤᏥ.\n“ᎧᎪᏃ ᎤᏚᎵ ᎢᎪᎯᏓ ᎤᏕᏘ?” ᎤᎵᏍᎦᏎᏔᏁ ᏥᏍᏕᏥ.\n“ᎭᏩ, ᎨᏍᏗᏗ ᎦᏣᏬᏂᎯᏍᏗ ᏱᎩ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᎴ ᎥᏝ ᎿᏉ ᎤᏁᎳᎩ ᎪᎱᏍᏗ ᏫᏓᏛᏂᏏ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᏰᏤᎵᏎᎰᎢ;\nᏗᏂᏲᏟ ᏧᏂᏥ ᏑᏥᎶᏓ ᎢᎬᎾᏕᎾ ᎤᎾᏓᏅᏖᏗᏍᎨ ᏍᎩᎾᎾ ᎠᎵᏖᎸᏂᏍᏗ.\nᎤᎯᏐᏗ ᏄᏪᏒ, ᎡᎶ ᎣᏍᏓ ᎢᎦᎬᏁᏗ ᏱᎨᏒᎾ ᏣᎵᏛᏗᏍᎪ.\nᎠᏂᎸᏉᏗᏍᎨ ᎤᏂᎳᏅᎯ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᎬᏫᏂᎨᏳᎯᏳ ᎨᏎᎢ. ᎤᎬᏫᏳᎯᏃ ᏂᏚᎩᏨᏂᏒ ᎤᎾᎵᎪᏒ ᏕᎠᎵᎪᏗᏍᎨ ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗ ᎨᏒᎢ.\nᏂᎯ ᎾᏍᏉ ᏗᏨᏃᏛ ᏅᏯ ᎡᏣᏁᏍᎨᎲᎯ ᎠᏓᏅᏙ ᎠᏓᏁᎸ ᎢᏰᏨᏁᎸᎯ, ᎡᏥᎸᏉᏔᏅᎯ ᎠᏥᎸᎢᏤᎶᎯ, ᎡᏣᎵᏍᎪᎸᏓᏁᏗᏱ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᏰᎵᏉ ᏗᎬᎠᏓᏂᎸᎢᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ.\nᏐᏉ ᎠᎪᏪᎵ ᎠᏫᎾ, Irishman, ᏄᏪᏒ, ᏱᏚᏓᎴᏨᎾ ᏱᎨᏎ ᏚᏂᏁᎦᎸ, ᎾᎥᏂᎨ ᏗᎧᏃᏗ ᎠᎦᏴᎵᎨ ᎤᏩᏌ ᎤᎵᏏ, ᎤᎵᏍᏆᎸᏗ ᎤᎪᎲ.\nᏓᎻ ᎤᏁᏨᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎠᎴ ᏣᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ!\nᏂᎯᏰᏃ ᎦᎸᏉᏗᏳ ᎢᏍᎩᏴᏁᎯ ᎠᎴ ᏍᎩᏯᎵᎮᎵᏍᏗᏍᎩ.\nᎾᏍᎩ ᎠᏫᏍᎩ ᎧᏃᎮᏛ ᎠᏫᏍᎪᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᏨᏓᏣᏂᎪᎯᏍᏔᏂ ᎤᎵᏍᏆᏗᏍᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎾᏍᎩ ᎦᏰᏧᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ.\nᏂᎯᏍᎩᏂ ᏞᏍᏗ ᏔᏕᏲᎲᏍᎩ, ᏰᏦᏎᎮᏍᏗ; ᎠᏏᏴᏫᏰᏃ ᏗᏤᏲᎲᏍᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ; ᏂᎦᏛᏃ ᏂᎯ ᎢᏣᎵᏅᏟᏉ.\n”ᎦᏕᎶᎣᏍᎦᏗ ᎤᏛᏁ ᏫᎵᎻ.\nᎤᎵᏍᏓᏴᏅᎢ ᏕᏅᎴᏅᎩ ᎠᎴ ᎤᏄᏪᏒᎩ, ᎠᎴ ᎤᏁᏒᎩ ᎠᏄᏬ-ᏗᏑᎴᏗ, ᎤᏓᏠᏍᏔᏅᎩ;\nᎯᎠ ᏂᎨᏥᏪᏎᎸᎩ, ᏞᏍᏗ ᎪᎱᏍᏗ ᎢᏨᏁᎸᎩ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᏕᏡᎬᎢ, ᎬᏂ ᏗᏗᏰᎸᏔᏅᎯ ᎨᏎᏍᏗ ᏗᏂᎬᏓᎨᏂ ᎢᎦᏁᎳᏅᎯ ᏧᏤᎵ ᏧᏅᏏᏓᏍᏗ.\nᎠᏂᎪᏕᏍᎩ ᎢᎪᎯᏓ ᏓᏂᏍᎦᎨᎢ, ᏃᎴ ᏓᏳᏂᏴᏍᏗ ᏱᎨᏒᎾ ᏓᏂᏏᎳᏛᎥᏍᎨ.\nᏥᏌᏃ ᎠᎢᏒ ᎨᎵᎵ ᎥᏓᎷᎶᏗ ᏚᎪᎮ ᎠᏂᏔᎵ ᎠᎾᎵᏅᏟ, ᏌᏩᏂ ᏈᏓ ᏣᏃᏎᎰᎢ ᎤᏅᏟᏃ ᎡᏂᏗ, ᎥᏓᎵ ᎠᏂᎦᏯᎷᎥᏍᎨᎢ-ᎠᏂᎦᏯᎷᎥᏍᎩᏰᏃ ᎨᏎᎢ.\nᏐᏉ ᎢᏳᏩᎬᏘ ᏚᏂᏯᎬ ᏥᏍᏆ ᎧᏃᏍᎦ ᎦᏚᎢᏣ ᏧᏂᏒᎾᏔᏅ.\nᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᎭᎵᎮᎵᎩ ᏔᎷᎸᎥᏍᎩ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏂᏔᏓᎾᏄᎪᏫᏍᎬᎾ; ᎭᎴᏅ ᎮᎷᎲᎦ, ᏂᎯ ᏂᏘᎾᏄᎪᏫᏍᎬᎾ; ᎾᏰᏃ, ᎾᏥᏰᎲᎾ ᎤᏟ ᎾᏂᎥ ᏚᏪᎧᎭ ᏧᏪᏥ ᎡᏍᎦᏉ Ꮎ ᎠᏥᏰᎯ.\nᏂᎯᏍᎩᏂ ᎥᏝ ᏰᏥᎦᏌᏯᏍᏔᏅ ᎤᏲ ᎢᏳᏛᎲᏕᎩ. ᏝᏍᎪ ᏧᏁᎿᎢ ᎤᏲ ᏱᏂᎨᏨᎿᏕᎪᎢ, ᎠᎴ ᏱᏗᎨᏣᏘᏃᎯᎰ ᏗᎫᎪᏙᏗᏱ?\nᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎠᏁᎳᏅᎯ ᎨᏒ ᎠᎬᏍᎦᎳᏁᎸᎯ ᏱᎩ; ᏂᎦᏗᏳᏉᏍᎩᏂ ᎤᏰᎸᎭᎢ, ᎠᎴ ᏧᏞᏛ ᎾᏍᎩ ᏙᏗᎧᏅ ᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᎢᏰᏛᏁᏗ ᏥᎩ ᏂᎦᏛᏁᎸᎢ.\nᎯᏍᎩ ᏍᎪᎯ ᎠᏂᏎᏂᏏ ᏃᎴ ᏅᎩ ᎯᏍᎩ ᎠᏂᏎᏂᏏ ᏚᏁᎴ ᎡᎳᏆᏗ.\nᎠᎴ ᎼᏏ ᎢᎾᏛ ᏧᏌᎳᏓᏁ ᎢᎾᎨᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᏓᏰᏥᏌᎳᏗᏂ,\nᎢᏨᏲᏎᎭᏰᏃ, ᎯᎠ ᎾᏍᎩ ᏥᎪᏪᎳ ᎠᏎ ᎠᏏ ᏛᏙᎯᏳᏂ ᎠᏴ ᏅᏓᎬᏂᏌᏂ; ᎠᎴ ᎠᏂᏍᎦᎾ ᎨᎦᏎᎸᎢ ᎾᏍᎩ ᎠᎦᏠᏯᏍᏔᏅᎩ; ᎠᏴᏰᏃ ᎠᎩᏃᎮᏍᎬ ᎠᏎ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏔᏂ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ; ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᎦᏁᎳ, ᎤᏒᎢ, ᎠᎴ ᏒᏃᏱ ᎠᏰᎵ, ᎠᎴ ᏣᏔᎦ ᎠᏂᏴᎬᎢ, ᎠᎴ ᏑᎾᎴᎢ;\nᏃᏗ ᎩᎳ ᏫᎦᏟᎮ ᏫᎵᎻ, ᎱᏛᎦᏁ ᎡᏝᏪᎯ ᎤᏟᏃᎮᏛ, ᎤᏐᏱ ᏧᏟᏃᎮᏗᏍᎨ ᎤᎩᏨᏓ ᎤᏒᎯ.\nᏚᏣᏯᎩᏎ ᏃᎴ ᎤᎵᏣᎬᏔᏁᎢ ᏫᎵᎻ ᏃᎴ ᎤᎵᏰᏔᏁᎢ.\n”Ꭳ, ᎣᏏᏉᏗ ᎠᏟᏰᎵ,” ᎤᏛᏁ.\nᎠᏎᏃ ᎾᎯᏳ ᎢᎦ ᎨᏒ ᎠᎴ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ, Ꮭ ᎾᏍᏉ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᎠᏁᎯ, ᎡᏙᏓᏍᎩᏂ ᎤᏩᏒᎯᏳ.\nᎤᏍᎦᎣᏅ ᎤᏓᎦᏙᏍᏕ ᏫᎵᎻ.\nᎧ, ᎼᏏ ᎣᎩᏁᏨᎸᎩ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏅᏯ ᏗᎨᎬᏂᏍᏙᏗᏱ; ᎠᏎᏃ ᏂᎯ ᎦᏙ ᎭᏗᎭ?\nᏆᎴᏗᏃ ᎤᏍᏆᏏᎪᏎ ᎤᏜᏏᏛᎡᎮ ᎾᏞᎬ ᎤᏲᎱᏒᎢ; ᏭᏯᏅᎲᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᎤᏛᏛᏁ, ᏰᎵᏍᎪ ᎪᎯᎩ ᎬᏩᏲᎱᏒᎯ, ᎤᏛᏁᎢ.\n”ᏙᎢᏳᏍᏗ ᏓᏓᎪᏪᎳᏂ? ᎤᏛᏛᏁ ᏣᏄᏏ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏓᏰᏥᎩᏒᎵ, ᏅᏩᎾᏓᎴᏃ ᏓᎨᏥᏁᎵ, ᎾᏍᎩ ᏰᎵ ᎬᏩᏂᎾᏄᎪᏫᏍᏗ ᎤᏓᏔᏅᎯ.\nᎾᏍᎩ ᏧᏪᎫᏔᏅᏒ ᎥᏝ ᎬᏂᎨᏒ ᎢᎨᎬᏁᎸᎯ ᏱᎨᏎ ᏴᏫ ᏧᏁᏥ, ᎾᏍᎩᏯ ᎪᎯ ᎬᏂᎨᏒ ᏥᏂᎨᎬᏁᎭ ᏧᏤᎵ ᎨᏥᎸᏉᏗ ᎨᏥᏅᏏᏛ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎠᏓᏅᏙ ᎬᏗ;\n“ᎤᏙᎯᏳᎭᏍᎪ ᏥᏂᏪᎠ?” ᎤᏛᏁ- \nᎨᎵᏍᎬ ᏯᎵᎮᎵᎦ.”\nᎾᏍᎩ ᎣᏏᏳ ᎤᏰᎸᏗ ᏥᎩ ᎾᏂᎥ ᏴᏫ ᎨᏥᏍᏕᎸᏗᏱ, ᎠᎴ ᎤᏂᎷᎯᏍᏗᏱ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏚᏳᎪᏛ ᎨᏒᎢ.\nᎠᎩᏫᏯ ᎠᎩᏍᎩ, ᎠᎴ ᎠᎩᎩᎬ ᎠᏗᏔᏍᎩ, ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏙᏓᏥᏯᎴᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ.\nᎠᎴ ᎠᏂ ᏔᎵᏁ ᎯᎠ ᏂᎦᏪᎭ, ᎥᏝ ᏴᎬᏂᏴᎭ ᎠᏆᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ.\nᎦᏙᎨ ᎤᎬᏫᏳᎭ? ᎤᏟᏍᎪ ᏂᏙᎯ? ᎥᏝ ᎤᏍᏗᎩᏛ ᎤᏅ; ᎦᏳᎳᏰᏃ ᏕᎫᎪᏔᏅ ᎾᏍᎩ ᎢᏧᎳ ᎠᏂᏧᏏ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᏂᎦᏗᏳ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᎾᏓᏄᏴᏛᎢ.\nᏔᎵᎭ ᎢᏳᎾᏙᏓᏆᏍᏗ ᏥᏓᎠᏂᎷᏥᏐ ᎦᏰᎵᏍᏗ.\nᏗᏂᏆᎵ ᏫᏓᎴᏐᏍᎬ ᏗᏂᏅᏍᎨᏂ ᎢᏣ ᎾᏍᎩᏯ ᏗᏟ ᎦᏃᎯᎢᏙ ᏗᎦᏅᏍᎨᏂ.\nᎨᏍᏗ ᎠᏂᏬᏂᏍᎩ ᏱᎩ ᎧᏅᏂᏍᎩ.\nᎠᏎᏃ ᎤᎦᏛᎴᏎ ᎠᏰᎵ ᎠᏂᏙᎾᎥ ᎢᎬᏪᏅᏍᏔᏁᏉ;\nᎠᏎᏃ ᏂᎯ ᎯᎠ ᏂᏥᏪᏍᎪᎢ; ᎢᏳᏃ ᎩᎶ ᎯᎠ ᏂᎦᏪᏎᎮᏍᏗ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, ᎠᏆᎵᏍᎪᎸᏔᏅᎲ ᏰᎵ ᎨᏣᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ ᏂᏣᏛᏁᎲ,\nᏗᎾᏓᏂᏱᏍᎩ ᎤᏂᏁᏨ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝ ᎢᎸᎯᏳ ᎩᎶ ᏱᎬᏩᏬᏂᏐ ᎾᏍᎩᏯ ᎯᎠ ᏂᎦᏪᏍᎬ ᎦᏬᏂᏍᎬᎢ.\n“ᎩᏙᏓ, ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎠᏌᏆᎴᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎾᏍᎩᏰᏃ Ꮎ ᎤᏴᎸᎯ ᏥᎨᏐ ᎤᏣᏪᏐᎸᏍᏙᏗᏱ, ᎾᏍᏉ ᎤᏲᎯᏍᏔᏅᎯ ᎨᏐ ᏚᎸᏫᏍᏓᏁᎲ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏄᏛᏁᎸ ᎤᏲᎯᏍᏔᏅᎢ.\nᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᏥᎷᏏᎵᎻ ᎤᏂᎩᏎ ᏤᎵᎪ ᎤᏪᏅᏎᎢ, ᏗᎾᏓᎾᏌᎲᏍᎩᏃ ᏚᎾᏓᏩᏛᏔᏁᎢ, ᎾᏍᎩ ᏕᎬᏩᏄᏪᏎ ᏚᏄᏩᎥᎢ, ᎠᎴ ᎬᏩᎵᎥᏂᎴᎢ, ᎠᎴ ᎤᎾᏓᏅᏎ ᎬᏩᏕᏤ ᎠᏰᎵ ᎢᏴᏛ ᎤᏲᎱᏒᎯ ᎨᏎᎢ.\nᎠᎺᏉᎯᏃ ᎤᎶᏗ ᏃᏳᎯ ᎨᏒ ᎥᏉᎴᏔᏅᎩ, ᎠᎴ ᏅᎩ ᏗᎦᏅᏌᏗ ᏥᎪᎥᎩ ᎠᎺᏉᎯ ᏓᏳᏚᎩᏒᎩ, ᎦᎵᏉᎩ, ᏓᏍᎫᏓᏛᎩ ᎠᎴ ᎠᏍᎪᎯ ᏚᎷᎬᎩ, ᏚᎷᎬᏃ ᎠᏍᎪᎯ ᏚᎵᏍᏚᎸᎩ, ᏓᏍᎫᏓᏛᏃ ᎤᏁᎳᏅᎯ ᏚᏙᎥ ᎠᎺᏢᎢᏍᏙᏗ ᎨᏒ ᎪᏪᎸᎩ.\nᎤᏏᏩ ᏂᏕᎦᎵᏍᏗᏍᎬ ᏓᏓᏁᎸ, ᏩᏂᏴᎯᎮ ᎤᏂᏃᏴᎵᏓ, ᎠᏂᏗᏍᎩᏏᏍᎨ ᎦᎾᏌᎢ ᏃᎴ ᎤᏂᎯᏴᏓ.\nᎢᎪᎯᏓ ᎠᏅᏓᏗᏍᏗ ᎯᎪ ᎤᏒᎯ, ᎬᏅᎢ ᎢᎪᎯᏓ ᏥᏍᏕᏥ.” \nᎡᎶᏛᏰᏃ ᎤᎸᏉᏗᏳ ᎨᏎ ᏣᏂ, ᎠᎦᏔᎮᏰᏃ ᎤᏓᏅᏘᏳ ᎠᎴ ᎾᏍᎦᏅᎾ ᎨᏒ ᎠᏍᎦᏯ, ᎠᎴ ᎤᎦᏌᏯᏍᏗᏳ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎤᏛᎦᏅ [ᎠᏓᏥᏙᎲᏍᎬ,] ᎤᏣᏖ ᏚᎸᏫᏍᏓᏁᎴᎢ, ᎠᎴ ᎤᎵᎮᎵᏨᎯ ᎠᏛᏓᏍᏓᏁᎮᎢ.\nᎨᎵᏍᎬᏃ ᏯᏇᏅᏎᏉ ᏩᏏᏓᏂ, ᏗᏆᎵ ᏥᎬᎩᏍᏕᎸᎮ ᎠᎩᏩᏛᏗ ᏗᎩᎷᏫᏍᏔᏁᏗ.\nᎾᎯᏳᏉᏃ ᎤᎴᏅᎲᎩ ᎤᏲᎸ ᎢᏳᏛᏁᏗᏱ ᎤᎶᏄᎮᏗᏱ.\nᎠᏎᏃ ᎠᏂᏧᏏ ᏕᏏᎶᏂᎦ ᎠᏁᎯ, ᎤᎾᏛᎦᏅ ᏉᎳ ᎾᏍᏉ ᏈᎵᏯ ᎠᎵᏥᏙᎲᏍᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎧᏃᎮᏛ, ᎾᎿ ᎾᏍᏉ ᏭᏂᎷᏨᎩ, ᏴᏫ ᏚᏂᏖᎸᏅᎩ.\nᎾᏍᎩᏃ ᎾᏥᏪᏎᎸ ᎠᏥᏁᏤᎸ, ᏫᏚᏔᏅᎩ ᏗᏓᏍᏚᏗᏱ ᎪᏢᏒ ᎦᎵᏦᎦ ᎭᏫᏂ, ᎠᎴ ᎠᏍᏓᏯ ᏚᏅᏎᏙᏅ ᎠᏙᎯ.\n“ᎮᎵᏍᎨᎢᎨ ᎪᎨᏱ ᏥᏔᎦ ᎨᏒ ᎠᏯ?” \nᏩᏐᎾ ᎤᏰᏓᏬᏨᎯ ᎥᏝ ᏧᏍᏆᎵᏍᏗ ᏱᎨᏎᏍᏗ, ᎠᎴ ᏙᎴᏛ ᏧᎦᏒᏍᏗ ᎥᏝ ᎤᏩᏜᏗᏍᏗ ᏱᎨᏎᏍᏗ, ᎬᏂ ᎠᏓᎵᏁᎯᏙᏅᎭ ᏚᏳᎪᏛ ᎨᏒ ᏓᏰᎵᎯᏍᏗᏍᎬᎢ.\n ᎨᏍᏗ ᎭᏂᏉ ᎬᏯᏓᏍᏗ ᏱᎩ ᏃᎴ ᏱᏥᎾᏬᎩ.\nᎾᏍᎩ ᏞᎩᏉ ᏤᏥᏖᎸᎾᏗᏱ ᏂᎨᏒᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᏣᏕᏯᏔᏁᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᏉ ᎠᏓᏅᏙ ᎬᏗ, ᎠᎴ ᎦᏬᏂᏒᎯ, ᎠᎴ ᎪᏪᎵ ᎪᏪᎳᏅᎯ ᎬᏗ ᎠᏴ ᎣᎦᏓᏅᏏᏛ ᏥᎨᏐ ᎢᏳᏍᏗ; ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎤᏍᏆᎸᎯᏕᏅ ᏥᎨᏐ ᎾᏍᎩᏯᎢ.\nᎯᎠᏃ ᏄᏪᏒᎩ; ᎢᏤᎾ ᏗᎦᏚᎲᎢ, ᎾᎿ ᏤᎲ ᎠᏍᎦᏯ, ᎯᎠᏃ ᎾᏥᏪᏎᎸᎭ; ᏗᏕᏲᎲᏍᎩ ᎯᎠ ᏂᎦᏪᎭ; ᎿᏉ ᎠᎩᏍᏆᎸᎡᎵᏗ, ᎬᎩᏍᏓᏩᏗᏙᎯ ᎯᏁᎸ ᏓᏲᏥᏍᏆᏂᎪᏔᏂ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ.\nᎡᏃᏱᏃ ᎠᏰᎵ ᏉᎳ ᎠᎴ ᏌᏱᎳ ᎤᎾᏓᏙᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏂᏃᎩᏍᏔᏁᎢ; ᏗᎨᏥᏍᏚᎯᏃ ᎾᏍᎩ ᎤᎾᏛᎦᏁᎢ.\nᏞᏍᏗ ᎠᎴ ᎤᏕᎵᏛ ᏱᏗᏓᏂᏏᎲᏍᎨᏍᏗ ᎾᏍᎩᏯ ᎢᎦᏛ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎢ, ᎠᎴ ᏏᎦᏉ ᏦᎢᏦᏁ ᎢᏯᎦᏴᎵ ᏥᏚᏂᏲᏎᎢ.\nᎬᏩᏛᏓᏍᏓᏁᎲᎩᏃ ᎬᏂ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒ, ᎿᏉᏃ ᎤᏂᏌᎳᏓᏅᎩ ᎠᏂᏁᎬ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎡᎶᎯ ᏩᎦᏘᎿᏫᏛ ᎾᏍᎩᏉ ᎢᏳᏍᏗ ᏴᏫ; ᎥᏝᏰᏃ ᏰᎵ ᎬᏁᏍᏗ ᎦᏰᎵᏍᏗ ᏱᎩ.\nᎠᎵᏍᏕᎸᏙᏗᏃ ᎠᎵᏍᏚᎶ ᎢᏥᎾᎩ, ᎠᎴ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎠᏓᏅᏙ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏥᎩ;\nᎾᏍᎩᏯ ᎾᏍᏉ ᏅᏓᏨᏴᏁᎵ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ, ᎢᏳᏃ ᏗᏣᏓᏅᏛ ᎢᏴᏛ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᏂᏗᏥᏙᎵᎬᎾ ᎢᎨᏎᏍᏗ ᎢᏣᏓᏅᏟ ᎤᏂᏍᎦᏅᏨᎢ.\nᎤᏂᏣᏘᏃ ᏕᎤᏅᏩᏁ ᏧᏂᏢᎩ ᏧᏓᎴᏅᏛ ᎥᏳᎩ ᎤᏁᎯ; ᎠᎴ ᎤᏂᏣᏘ ᎠᏂᏍᎩᎾ ᏚᏄᎪᏫᏎᎢ; ᎠᎴ ᎥᏝ ᏩᏂᏁᎩ ᏱᏕᎵᏎᎮ ᎠᏂᏍᎩᎾ, ᎤᏗᎦᎵᏍᏙᏗᏍᎨ ᎬᏬᎵᎬᎢ.\nᎾᏍᎩᏃ ᎠᏴ ᎣᎩᏅᏏᏛ ᎦᎶᏁᏛ ᎣᏣᏓᏁᏟᏴᏍᏔᏁᎸᎯ; ᎾᏍᎩᏯᏉ ᎤᏁᎳᏅᎯ ᏥᏥᏍᏗᏰᏗᏍᎪ ᎠᏴ ᏦᎬᏗᏍᎪᎢ, ᎦᎶᏁᏛ ᎣᏣᏓᏁᏟᏴᏍᏓᏁᎭ, ᎢᏨᏔᏲᏎᎭ ᎤᏁᎳᏅᎯ ᏙᎯ ᎢᏨᏁᏗᏱ.\nᏅᏙ ᎠᎧᎸᎬ ᏓᎶᏂᎨ ᏫᏚᎸᏌᏛ ᎤᎭᎨᏛ ᎤᎧᎭᏛ ᎠᎼ ᎦᏚᎢᏣ, ᏎᎦᏨ ᏫᏥᎪᏩᏘᏍᎬ ᎢᏤᎯ ᎢᎾᎨ ᎣᏥᎶᏍᎬ.\nᏒᎦᏔ ᏃᎴ ᏒᎩ ᎠᎦᎷᏴᏓ ᏓᎩᏝᏅ ᎭᏫᏂ ᏥᏍᏆ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᎠᎦᎷᏴ ᏫᏓᎩᎸᏅ ᎤᏂᏁᎦᎸ ᎭᏫᏂᏨ ᏃᎴ ᏗᏂᏁᏥ.\n“ᏗᏂᏲᏟᎵ” ᎤᎵᏍᎦᏎᏔᏁᎢ ᏌᏌ.\nᎠᏎᏃ ᎤᏓᏅᏖᏗᏍᎨ ᎠᏎ ᎤᏛᏛᏗ ᎨᏎᎢ.\nᎿᏉᏃ ᏅᏯ ᏚᏂᎩᏒᎩ, ᏗᎬᏩᏂᏍᏙᏗ, ᎠᏎᏃ ᏥᏌ ᎤᏗᏍᎦᎳᏅᎩ, ᎠᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏄᎪᏨᎩ, ᎠᏰᎵ ᎠᏂᏙᎾᎥ ᎤᎦᏛᎴᏒᏍᏔᏅᎩ, ᎠᎴ ᎤᎶᏐᏅᎩ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎤᏛᎾ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᏱᏣᏣᏪᏐᎸᏍᏔᎾᏉ - “ᎨᏍᏗ ᎩᎶ ᏔᎷᎩᏍᎩ ᎤᏍᏆᏓ ᏱᏓᏣᏓᏁᎵ,”\nᏌᏩᏂ ᏈᏓ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎦᏯᎷᏂ. ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᏉ ᏓᏕᏏ. ᎤᏁᏅᏒᎩ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏳᎯ ᎤᎾᏣᏅᎩ; ᎾᎯᏳᏃ ᏒᏃᏱ ᎥᏝ ᎪᎱᏍᏗ ᏳᏂᏂᏴᎮᎢ.\nᎤᏔᏲᎴᏃ ᏗᎪᏪᎶᏗᏱ ᎠᎴ ᎤᏬᏪᎳᏁ ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏣᏂ ᏚᏙᎥ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ.\nᎡᎵᏍᎨ ᏧᏳᎪᏘ ᏂᎦᏪᏍᎨ ᏁᏂᏏ, ᎠᎾᏓᎭᏲᎯ ᏃᎴ ᎠᏂᏲᏍᎩ ᏱᏕᎬᏂᎷᎦ ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ, ᎠᏎᏃ ᎧᎪ ᏯᎦᏔᎭ?\n“ᏣᎨ ᏯᏕᎶᎰᏍᎦ ᏂᎦᏗ ᏙᎩᎷᏫᏍᏔᏁᎲ? \nᎪᎯᏳᎲᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎤᏪᎭ ᎪᎯᏳᏗᏍᎩ; ᎤᏁᎳᏅᎯ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏰᎪᏅ, ᏅᏗᎦᎵ ᏍᏙᏗᎭ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏃᎮᎸᎢ ᎤᏪᏥ ᎤᏁᎢᏍᏔᏅᎢ.\nᎡᏝᏪᎢᏊᏃ ᏓᏆᎧᎿᏅ ᏞᎦ.\nᏈᎵᏕᎵᏈᏃ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎠᏍᎦᎾ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎦᏰᎪᎩ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎠᏍᏚᎢᏍᏗ ᏕᏫ ᎤᏤᎵᎦ ᎦᏁᎯ, ᎾᏍᎩ ᎠᏍᏚᎢᏍᎩ ᏥᎩ, ᎩᎶᏃ ᎠᏍᏚᎲᏍᎩ ᏂᎨᏒᎾ ᏥᎩ; ᎠᎴ ᎠᏍᏚᎲᏍᎩ, ᎩᎶᏃ ᎠᏍᏚᎢᏍᎩ ᏂᎨᏒᎾ ᏥᎩ.\n ᎤᎵᏍᏆᎵᏓ ᏥᎨᏐ ᎪᏯᏛᎢ ᏄᎵᏍᏔᏁᎮ.\nᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏴ ᎥᎩᏁᎸᎢ, ᎾᏍᎩᏯ ᎠᏏᎾᏌᏂ ᏄᎬᏫᏳᏒ ᏗᏁᏍᎨᏍᏗ ᎢᏳᏛᏁᏗ ᎾᏆᏛᏁᎸ ᎦᎫᏍᏛᏗ ᎠᎩᏅ, ᏅᏩᏓᎴᏃ ᎾᎿ ᎤᏁᏍᎨᎲ. ᎠᏎᏃ ᎾᏂᎥ ᎩᎶ ᎠᏁᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎠᎾᏁᏍᎨᏍᎬ ᎾᎿᏂ.\nᎤᏐᏅ ᏂᏨᏁᎮᏍᏗ ᎩᎶ ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ ᎤᏐᏅ ᏱᏁᏨᏁᎮᏍᏗ. ᎢᎬᏱ ᏂᏣᏓᏅᏖᏍᎨᏍᏗ ᎣᏍᏛ ᎢᏣᏛᏁᎵᏓᏍᏗ ᎨᏒ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ.\nᎢᏳᏃ ᎿᏉ ᎠᏍᎦᏯ ᎦᏁᎳ ᏓᎴᏅᎭ ᎠᎴ ᎠᏍᏚᏅᎭ ᎦᎶᎯᏍᏗᏱ, ᏂᎯᏃ ᎢᏣᎴᏅᎲ ᏙᏱᏗᏢ ᎢᏥᏙᎾᎥᎢ, ᎠᎴ ᎢᏨᏂᎮᏍᏗ ᎦᎶᎯᏍᏗᏱ ᎯᎠ ᏂᏤᏪᏍᎨᏍᏗ, ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎡᏍᎩᏍᏚᎢᏏ; ᎠᎴ ᏗᎧᏁᏨ ᎯᎠ ᏅᏗᏥᏪᏎᎸᎭ, ᎥᏝ ᏱᏥᎦᏔᎭ ᏗᏣᏓᎴᏅᎢ;\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏫᏄᏣ ᏳᏘᎦ ᏧᏙᎢᏛ ᎠᏦᎳᏅ ᎤᏪᎸᎩ, ᎠᏍᏓᏯ ᎦᎵᎲᎩ; ᏉᎳᏃ ᎪᎯᏗᏳ ᎠᎵᏥᏙᎲᏍᎬ ᎢᏳᏍᏗ, ᎦᎵᎲ ᎤᏪᏇᏴᏒᎩ ᎠᎴ ᏦᎢᏁ ᏗᏲᏓᏞᎲ ᏓᏳᏙᎣᏒᎩ, ᎠᎴ ᎠᏥᏁᏒᎩ ᎤᏲᎱᏒᎯ ᎨᏒᎩ.\nᎾᏍᎩ Ꮎ ᎠᎾᎵᎮᎵᎩ ᎢᏧᎳᎭ ᎢᏣᎵᎮᎵᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏗᎾᏠᏱᎯ ᎢᏧᎳᎭ ᏕᏣᏠᏱᎮᏍᏗ.\nᏦᎩᎦᏴᎵᎨ ᎠᎾᏓᏙᎵᏍᏗᏍᎬᎩ ᎠᏂ ᎣᏓᎸᎢ, ᎠᏎᏃ ᏂᎯ ᎯᎠ ᏂᏥᏪᏍᎪᎢ; ᏥᎷᏏᎵᎻᏍᎩᏂ ᎾᎿ ᎤᎬᏫᏳᎭ ᎠᏓᏙᎵᏍᏙᏗᏱ.\nᎤᏲᏍᏛᏉ ᎾᏆᏍᏗ ᎠᏴ! ᎦᎪ ᏛᏇᏓᎴᏏ ᎯᎠ ᎾᏍᎩ ᏥᏰᎸ ᎠᏓᎯᎯ ᎠᏆᏚᏓᎸᏛᎢ.\nᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ.\nᏑᎾᏙᏓᏆᏍᏗ ᎾᏋᏁᎰᏁᏍᏗ, ᎤᏛᏅ ᏗᎵᏍᏇᏔᏬ ᏗᎪᏒᏍᎩ.\nᏩᎾᎢᏒᏃ ᏐᎢ ᎠᏒᏛᏗ ᎤᏩᏛᎮ ᏙᏯ.\nᏌᏉᎯᏳᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᏥᏕᎫᏓᎴᏍᏗᎭ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ, ᎠᎴ ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᎪᎯᏳᏗ ᎨᏒ ᏥᏕᎫᏓᎴᏍᏗᎭ.\nᎬᏂᏳᏉ ᏓᎦᎷᏥ ᎤᎶᎩᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏓᎬᏩᎪᎯ ᎠᎴ ᎾᏍᏉ ᏗᎬᏪᏘᎸᎯ; ᏂᎦᏗᏳᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎡᎶᎯ ᎠᏁᎯ ᏙᏛᎾᏠᏱᎵ ᎾᏍᎩ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎰᏩᏉ. ᎡᎺᏅ.\nᎾᏍᎩ ᎾᎿ ᏣᎮ ᎪᎱᏍᏗ ᎬᏙᏗ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎦᏩᏒᎩ ᎠᏥᎸᎨᎳᏍᏗ ᎦᎶᏗ, ᎠᎴ ᎾᎿ ᏥᏥᏰ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎫᏢᏔᏃᏅᎯ ᏥᎨᏎᎢ, ᎾᎿᏂ ᏥᎦᎴ ᎠᏕᎸᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏖᎵᏙ ᎹᎾ ᏥᎦᎶᏕᎢ, ᎠᎴ ᎡᎳᏂ ᎤᏙᎳᏅᏍᏙᏗ ᏣᏥᎸᏍᎨᎢ, ᎠᎴ ᏅᏯ ᏗᏯᏖᏅ ᎾᎿ ᏥᎪᏪᎴ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ.\nᎢᎦ ᏒᎮᏱᏣ ᎯᏍᎩᏃᎯᏎᎸ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎡᏚᏥ ᎰᎻ ᎤᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᎾᏍᎩᏃ ᎡᎶᏗᏏ ᎤᏪᏥ ᎠᏛ ᎤᏴᎵᎸ, ᎠᎴ ᎤᎵᏍᎩᏒ, ᎠᎴ ᎡᎶᏛ ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᎠᏂᏂᏜᎢ ᎣᏏᏳ ᎤᏂᏰᎸᏅ, ᎤᎬᏫᏳᎯ ᎯᎠ ᏄᏪᏎᎴ ᎠᏛ, ᏍᎩᏔᏲᏏ ᎢᏳᏍᏗᏉ ᎮᎵᏍᎬᎢ, ᏓᎬᏁᎵᏃ.\nᎿᏉᏃ ᎦᎬᏩᏂᏐᏢᏔᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏂᎯ ᎾᏍᎩ ᎯᏍᏓᏩᏗᏙᎯ, ᎠᏴᏍᎩᏂ ᎼᏏ ᎣᏥᏍᏓᏩᏗᏙᎯ.\nᏞᏍᏗ ᏂᏗᏣᏙᎵᎬᎾ ᎢᏧᎳᎭ ᏱᏕᏥᎩᎳᎾᎳᏗᏍᎨᏍᏗ ᎾᏃᎯᏳᎲᏍᎬᎾ; ᎦᏙᏰᏃ ᎤᏍᏗ ᏚᎾᏚᏓᏛ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎨᏒᎢ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᏌᏉ ᏄᏅᏅ ᎢᎦ-ᎦᏘ ᎠᎴ ᎤᎵᏏᎩ?\nᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᏛᎦᏅᎯ, ᏄᏛᏁᎸᎾᏃ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏓᏤᎸ ᏂᏚᎫᏍᏓᎥᎾ ᎦᏙᎯᏉ ᎠᏓᏁᎸ ᏧᏁᏍᎨᎮᎢ; ᎡᏉᏂᏃ ᎾᎿ ᎤᎵᏂᎩᏗᏳ ᎡᏂᎵᎯᎮᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏪᏇᏴᏎᎢ; ᎤᏍᎦᏎᏗᏳᏃ ᏄᎵᏍᏔᏁ ᎤᏲᏨ ᎾᏍᎩ ᎠᏓᏁᎸᎢ.\nᎤᎵᏂᎩᏛᏰᏃ ᎤᏚᎩ ᎤᏩᏒ ᎠᎦᏁᎳᏅᎯ ᎨᏒ ᎠᎦᏘᏯ ᎨᏥᎾᏄᎪᏫᏒ ᎤᏁᎳᏅᎯ ᏧᏪᏥ.\nᎠᏎᏃ ᏴᏫ ᎤᏂᎵᏅᏨ, ᎤᏍᎦᏯ ᎤᎷᏤ ᎤᏲ ᎤᎦᏔ ᎤᏫᏎ ᎤᏣᎴᏍᏗ ᎠᏫᏒ ᎤᏑᏴᏁᎢ; ᎠᎴ ᎢᎤᏪᏅᏎ.\nᎠᎴ ᏓᏥᎦᏙᎥᏏ ᏚᏳᎪᏛᎢ, ᏚᏳᎪᏛᏃ ᏂᏕᏥᎾᏝᎥᎾ ᏅᏓᏨᏁᎵ.\nᎠᎴ ᏥᎷᏏᎵᎻ ᎤᏘᏃᎴᎢ, ᎠᎴ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏍᎪᎵ ᎤᎩᎸᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᏨᏒ ᎭᏓᎶᎥᏓ ᎠᏂ;\n”ᎨᎾ ᏩᎶᏏ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ.\nᎤᏓᏅᏖᎴ ᎤᎧᏛᏅᏍᏗ.\nᎢᏧᎳ ᏗᎪᏍᏔᏱ, ᏰᎵᏉ ᎧᏃᎨᏂ ᎤᏍᏙᏴᏗ, ᎠᏎᏃ ᏧᏬᏰᏂ ᏱᏓᏲᏍᏔ ᏣᏉ ᏧᏔᏂᏓᏍᏗ.\n“ᏣᏛᎦᏍᏕᏍᏗᏛ !\nᎩᎶᏰᏃ ᎠᏆᏕᎰᏍᎨᏍᏗ ᎠᏴ ᎠᎴ ᎠᎩᏁᏨᎢ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎤᏕᎰᎯᏍᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎦᎷᏨᎭ ᎤᏄᏬᏍᏕᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏩᏒ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏙᏓ ᎤᏤᎵᎦ, ᎠᎴ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᎾᏤᎵᎦ.\nᏧᏁᎳᏃ ᎢᏴᏛ ᏫᏄᏒᎸ ᎾᏍᎩ ᎯᎠ ᏄᏪᏐᎢ, ᎯᎠ Ꮔ-ᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏈᏓ ᎠᎴ ᏣᏂ ᎠᎴ ᏥᎻ ᏚᏘᏅᏎ ᎠᎴ ᎤᎿᎷᏎ ᎣᏓᎸ ᎤᏓᏙᎵᏍᏔᏅᏎᎢ.\nᏴᏫᏰᏃ ᎤᏔᎳᏬᏍᎬᎢ ᎥᏝ ᏱᎦᎾᏄᎪᏫᏍᎪ ᏚᏳᎪᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎠᎴ ᎣᏦᎯᏳᎲᏍᎦ, ᎠᎴ ᎣᏥᎦᏔᎭ ᏂᎯ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ.\nᎾᏃ ᎠᏄᎦᎸᎯ ᏧᎳᎨᏯᏛᏤᎢ ᎨᏥᏛᎦ ᎾᏍᎩ ᎠᎾᏛᎬᎦ. ᎢᎸᎯᏢ ᏥᏩᏂᎶᏍᎪᎢ, ᎡᎶᎯᏃ ᎡᎯ ᎤᏪᎵᎯᏍᏗ ᎠᎴ ᎨᏅᎢᏍᏗ ᎨᏒ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎨᏒ ᎠᏂᏁᏄᎳᏍᏗᏍᎪᎢ, ᎠᎴ ᎥᏝ ᏯᏂᎾᏄᎪᏫᏍᎪ ᎤᎦᏛᎾᏨᎯ.\n”ᏙᎢᏳᏍᏗ, ᏫᎵᎻ?”\nᏤᏥᏲᎯᏎᎸᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎣᏍᏛ ᏄᏅᎿᏕᎬᎢ ᎠᏎᏃ ᎥᏝ ᎢᏥᏍᏆᏂᎪᏔᏅᎯ ᏱᎩ.\nᎠᏎᏃ ᎾᏍᏉ ᎾᏍᎩ ᎤᏂᏃᎮᎸᎯ ᎥᏝ ᎤᏠᏱ ᏱᎨᏎᎢ.\nᎠᏎᏃ ᎩᎳᏉ ᎢᏴᏛ ᏥᏌ ᏚᏁᏤᎸᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᎦᎵᏍᏗᏉ ᎢᏣᏓᏅᏓᏓ, ᎠᏴᏉᏰᏃ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ.\nᎠᎦᏴᎵᎨ ᎤᎮᏳᎯᏳ ᎤᏪᏥ, ᎠᎴ ᏂᎦᏗᏳ ᎪᎱᏍᏗ ᏚᏲᎯᏎᎸ.\nᏍᏈᏍᏗ ᎠᎵᏍᏓᏴᏗ ᎠᏂᏰᎮ, ᏙᎯ ᎢᏳᏅᏁ ᏃᎴ ᎤᎾᎵᏍᏓᏴᏗ.\nᏃᏗ ᎦᏙ ᏩᏓᏑᏴᎥᏍᎦ.\nᎠᎴ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎤᏬᎯᏳᏅᎯ; ᎾᏍᎩᏰᏃ Ꮕ-ᏧᏪᏎᎸ ᎣᎱᏩ ᎾᏍᎩ ᎠᏎ ᏅᏓᎦᎵᏍᏔᏂ.\nᎪᎯᏍᎩᏂ ᎨᏒ ᎠᏍᎦᏂ ᏂᏗᏥᎾᏝᎥᎾ ᏥᎩ, ᎠᎴ ᎤᎾᎳᏅᎯ ᏗᏥᎾᏝᎢ ᏥᏄᎵᏍᏔᏅ, ᎢᏥᏁᏉᎥᎯ ᎢᏥᎭ ᏂᏥᏍᎦᏅᎾ ᎢᏨᏁᎯ, ᏩᎵᏍᏆᏗᎯᎲᏃ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ.\nᏑᏓᎴᎩᏍᎩᏂᏃᏅ [ᎤᎾᏚᎵᏍᎬᎩ,] ᎾᏍᎩ ᏦᏍᏓᏅᏓᏗᏍᏗᏱ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏆᎵᎦᎵᏴᏒᎩ ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗᏱ.\nᎾᏍᎩᏰᏃ ᏴᏫ ᎢᏳᏩᏂᏌᏛ ᏥᎩ ᎠᎰᎱᎯᏍᏗ ᎨᏒ ᏤᎭ, ᏴᏫ ᎾᏍᏉ ᎢᏳᏩᏂᏌᏛ ᎠᏳᎱᏒ ᏗᎴᎯᏐᏗ ᏥᎩ.\nᎠᎴ ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎾᎿ ᎤᎾᏓᏡᎬ ᎤᏪᎷᏁᎢ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏍᏗᏰᏗᎭ ᏘᏯᎦᏃᏗᏱ ᎠᏇᏥ; ᎤᏩᏒᎯᏳᏰᏃ ᎠᏇᏥ ᎾᏍᎩ;\nᎯᎠ ᏅᏓᏳᏪᏎᎸᎩ; ᏂᎯᏍᎪ Ꮎ ᎤᎷᎯᏍᏗ ᏥᎩ, ᏥᎪᎨ ᏅᏩᏓᎴ ᎣᏥᎦᏖᏃᎮᏍᏗ?\nᎤᏟᏂᎩᏓ ᏃᎴ ᎪᎱᏍᏗ ᏯᏍᎦᎢᎲᎾ ᎨᏎ, ᏭᏳᎪᏛᎢ, ᎢᏧᎳ ᏌᏌ ᎤᏪᎵᎯᏍᏗ ᏄᎾᎵᏍᏔᏁᎮᎢ ᏄᏁᎵᏛ ᎤᏓᏅᏖᏗ ᏧᏍᏆᏴᏍᏗ.\nᏑᎾᎴ ᎢᏣ ᎨᏒ ᎡᏝᏪᎯ ᎦᏟᎮ ᏧᏍᏆᏴᏍᏗ ᎧᏁᏍᎬ ᎭᏫᏂᏣ.\nᏣᎵᏍᏙᏂ ᏧᏛᏒ, Fanny Kemble ᎤᏲᎯᏍᏔᎾ ᎠᎬᏱ ᎠᎨᏯ ᎠᏛᏁᎵᏍᎬ High, Low, Jack ... Game, ᏭᎴᏅᎮ, ᏂᎦᏓ ᎠᏂᏃᎮᏍᎨ.\nᎦᏅᏅ ᎠᎾᎢᏒ ᎤᏅᏌ ᎠᎾᏓᏍᎦᏍᏔᏁ ᎠᏂᏍᎦᏯ, ᎪᎰᏍᏗ ᎤᏍᎦᏎᏗ ᏤᏙᎰ ᎤᎵᏏᎬ ᎢᎾᎨᎢ ᎠᏁᎵᏍᎬ.\nᎠᎨᏴᏃ ᏔᎵ ᏓᏥᏕᎸᎩ ᎠᏬᏎᎵ ᎤᏔᏅ ᏗᎧᏃᎨ, ᎾᏍᎩ ᎢᎾᎨ ᏭᏃᎯᎸᏍᏙᏗᏱ ᎠᏥᏰᎸᎾᏁᎸᎩ, ᎾᎿ ᎤᏤᎵᎪᎯ ᏗᎨᏒᎢ, ᎾᎿ ᎠᎨᎳᏍᏗᏱ ᏑᏕᏘᏴᏛ, ᎠᎴ ᏔᎵ ᏧᏕᏘᏴᏛ, ᎠᎴ ᎠᏰᎵ ᎢᏳᏕᏘᏴᏛ, ᎾᏍᎩ ᎠᏥᎧᎲᏍᏗᏱ ᎢᎾᏛ ᎠᎦᏔᎲᎢ.\nᎣᏏᏰᏃ ᎯᎠ ᎾᏥᏪᏎᎭ, ᏥᏯᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᏥᏯᏙᎵᎩ ᎨᎵᏍᎨᏍᏗ, ᎠᎴ ᎤᏪᏙᎵᏍᏗ ᏥᏯᏓᏅᏓᏗᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏪᏙᎵᏍᏗ ᏥᏯᏓᏅᏓᏓ ᎨᎵᏍᎨᏍᏗ.\nᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏙᎴᎰᏍᎩᏍᎪ? ᎥᎥ, ᎢᏨᏲᏎᎭ. ᎠᎴ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏙᎴᎰᏍᎩ.\n”ᎤᏙᏳᎯ.\nᏲᏎᎢ ᏐᏉᎯᎭ ᎤᏂᏯᎩᏍᏗ ᏱᏕᏥᏲᎴ ᏥᏍᏆ, ᎠᏎᏃ ᎾᎥᏂᏉ ᏄᎵᏍᏔᏅ.\nᏂᎦᏛᏃ ᎡᎳᏗ ᏙᎩᏅᏨ, ᎾᏁᎬ ᎠᏆᏛᎦᏅᎩ ᎠᎩᏁᏤᎲᎩ, ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎬᏗᏍᎬᎩ; ᎯᎠ ᏂᎦᏪᏍᎬᎩ ᏐᎳ, ᏐᎳ, ᎦᏙᏃ ᎤᏲ ᏂᏍᏋᏁᎭ? ᎤᏕᏯᏙᏗᏳ ᏗᏣᎲᏖᏍᏗᏱ ᏗᎪᏍᏓᏯ.\nᎠᏴ ᏠᏗᏯ-ᎵᏏᏯ ᏫᎬᏲᎵᎦ ᎤᏣᏘ ᎰᏍᏛ ᏣᎬᏫᏳᎯ ᏈᎵᏏ.\nᏄᎾᏟᏂᎬᎬ ᎤᏅᏔᏁᎢ ᎠᏂᏍᎦᏯ ᎤᏄᏔᎩᏎ ᎧᏁᏌᎢ ᏃᎴ ᏭᏂᏌᏕᎢ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ.\nᏂᎬᎾᏛᏃ ᎢᏥᏈᏱ ᎠᎴ ᎨᎾᏂ ᏚᎪᏄᎶᏎᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎩᎵᏯ ᏄᎵᏍᏔᏁᎢ, ᏗᎩᎦᏴᎵᎨᏃ ᎤᎾᏠᎨ ᎤᎾᎵᏍᏓᏴᏗ.\nᏥᏌᏃ ᎠᏍᏓᏯ ᎤᏪᎷᏅ, ᎤᎵᏍᏆᏕᎴᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏘ ᎨᏒ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᏚᏂᎪᎲ ᏧᏅᎨᏫ ᎠᏂᏬᏂᏍᎪᎢ, ᎠᎴ ᎠᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᏧᏂᏲᎱᏎᎸᎯ ᎤᏂᏃᏍᏛ ᏄᎾᎵᏍᏔᏅᎢ, ᎠᎴ ᏗᏗᏲᏅᎵ, ᎬᏩᏁᏓᏍᏗ ᏄᎵᏍᏔᏅᎢ ᎠᎴ ᏗᏂᎨᏫ ᎬᏩᏂᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎢ; ᎤᏂᎸᏉᏔᏅᎩᏃ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ.\nᏫᏥᎢᎦ ᎠᎵᎮᎵᎨ ᏃᎴ ᎤᏬᎯᏳᎮ.\nᎢᏥᏙᏓ ᎡᏆᎭᎻ ᎠᎵᎮᎵᏍᏗ ᎤᏚᎩ ᎡᏩᏒ ᎤᎪᏩᏛᏍᏗᏱ ᎪᎯ ᎨᏒ ᎠᏴ ᎨᎥᎢ, ᎠᎴ ᎤᎪᎲᎩ ᎠᎴ ᎣᏏᏳ ᎤᏓᏅᏓᏛᎩ.\n ᎤᏩᏃᏪᎢ ᎤᏃᎴ ᎤᎶᏎ.\nᎤᏣᏘᎾ ᏚᏏᎳᏛ ᏗᏓᎴᎲᏍᎨ ᎦᏬᏂᏍᎬ.\nᏫᎵᎻ ᎤᏓᏍᏓᏩᏛᏎ.\nᎠᎴ ᎠᎩᏆ ᎯᎠ ᏁᏥᏪᏎᎸᎭ, ᏣᎦᏌᏯᏍᏕᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎤᎬᏩᎵ ᏤᏣᏲᎯᏎᎸᎯ, ᎾᏍᎩ ᏣᎧᎵᎢᏍᏗᏱ.\nᎠᎩᏙᏓ.\nᏥᏌᏃ ᎤᏄᎪᏨᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏓᏅᏒᎩ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸ ᎬᏩᏃᏁᎸᎩ ᏂᏚᏍᏛ ᏓᏓᏁᎸ ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ.\nᏅᏙᎠᏰᎵ ᏬᎩᎶᏒ, ᎭᎾ ᎣᎦᏂᎩᏛ ᏬᏙᏥᎭᏯᎸ ᏚᏗᏱ, ᎩᏟᏗᎦᏓᎥ, ᏙᏱ ᏗᏦᎭᏴ, ᏧᏙᏓᏆᏓ ᎣᎦᏂᎩᏒ, ᎤᏲᎢᏴ ᎤᏂᎶᎯᏍᏗ ᎨᏒ ᏐᏈᎵ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏲᎩᏩᏛᎭ, ᎠᎴᏃ ᎠᏂᏃᎯᎵᏙ ᏚᏂᎾᏦᏩᏛ, ᏃᎴ ᏐᏉ ᏗᎨᏫ ᎠᏍᎦᏯ, ᎤᏄᎸᏅ ᎤᏂᎩᏍᏗ, ᏃᎴ ᏍᎩᏴ ᎠᎦᏗᏓ ᎤᎦᎭᎾᏅ, ᏕᏧᎬ ᏕᎦᏓᎥ ᏧᏆᎶᎦ ᎠᏂᏓᎶᏁᎨ ᏃᎴ ᎠᏂᎩᎦᎨ ᎨᏒ ᏃᎴ ᎦᏙ ᎤᏓᏫᏍᎩᎨ ᎨᏒ.\nᏄᏍᏛ ᎠᎩᎪᎲ ᎡᏙᏙᏱ ᎾᏍᎩ ᏥᏁᎪᎢ; ᏂᎠᏃ ᏄᏍᏛ ᎢᏥᎪᎲ ᎢᏥᏙᏙᏱ ᎾᏍᎩ ᏂᏣᏛᏁᎰᎢ.\nᎯᏳᏩᏁᎦ, ᎤᏛᏅ ᏗᎪᏪᎵᏍᎩ, ᎨᏍᏗ ᏳᏛᏛᎾ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎡᏦᎢᏳᎲᏍᎩ ᏥᎩ ᎦᎸᏉᏗᏳ ᎡᏂᏰᎸᎠ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ, ᎾᏍᎩ Ꮎ ᏅᏯ ᏗᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎾᎵᏍᏓᏁᎸ;\nᎿᏉᏃ ᎩᎶ ᎤᎷᏤ ᎤᏂᏃᏁᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏗᏓᏍᏚᏗᏱ ᏥᏕᏥᏴᏔᏅᎩ ᎠᏂᏯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏂᏙᎾᎠ, ᎠᎴ ᏓᏁᏲᎲᏍᎦ ᏴᏫ.\nᎿᏉᏃ ᏉᎳ ᏛᏍᏚᎢᏏᏒᎩ ᎠᎰᎵ, ᎨᎵᏲ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏂᏧᏏ; ᎢᏳᏃ ᎤᏲ ᎢᏳᏛᏁᎸᎯ ᏱᎩ, ᎠᎴ ᎤᏍᎦᏅᏨᎯ ᏱᎩ, ᎢᏥᏧᏏ, ᏚᏳᎪᏛ ᏱᎩ ᎢᏨᏯᏛᏓᏍᏓᏁᏗᏱ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏤ-Ꮎ, ᎠᎴ ᎯᎠ ᏫᏁᏥᏪᏏ Ꮎ ᎫᎳ, ᎬᏂᏳᏉ ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎦ, ᎠᎴ ᏕᎦᏓᏅᏫᎭ ᎪᎯ ᎢᎦ ᎠᎴ ᎤᎩᏨᏅᎢ, ᏦᎢᏁᏃ ᎢᎦ ᎠᎩᏍᏆᏛᎯ ᎨᏎᏍᏗ.\nᏞᏍᏗ ᎾᏍᎩ ᎯᎠ ᎢᏥᏍᏆᏂᎪᏒᎩ, ᏛᏍᏆᎸᎯᏰᏃ ᎾᎯᏳ ᏓᏤᎵᏍᏛ ᎠᏂᏯᎢ ᏂᎦᏛ ᏛᎾᏛᎦᏂ ᎧᏁᎬᎢ,\nᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎢᏥᏔᏲᎯᎮᏍᏗ ᎪᎳ ᎠᎴ ᎤᎾᏙᏓᏆᏍᎬ ᎢᏣᎵᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎬᏆᏚᎸᏗ ᏂᎦᎵᏍᏗ ᎪᎯ ᎨᏒ ᎢᏨᏰᎳᏗᏓᏍᏗᏱ, ᎠᎴ ᎠᎩᏁᏟᏴᏍᏗᏱ ᏥᏁᎬᎢ; ᎤᏯᏰᏃ ᎢᏨᏴᏍᎦ.\nᎿᏉᏃ ᎠᎨᏴ ᎤᎯᏴᎩ ᎠᎹ ᎤᏢᏗ, ᎠᎴ ᏗᎦᏚᎲ ᏭᎶᏒᎩ, ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ ᏴᏫ;\nᎠᎴ ᏚᏂᏃᎩᏒᎩ ᎼᏏ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏅᏏᏓᏍᏗ ᏧᏃᎩᏛ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏤᎵ ᏗᎧᏃᎩᏍᏗ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎦᎸᏉᏗᏳ ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏣᎬᏫᏳᎯ ᎠᎴ ᏣᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᏣᎵᏂᎩᏛ; ᎣᏍᏛ ᎠᎴ ᏚᏳᎪᏛ ᎢᎭᏛᏁᎵᏙᎯ ᏂᎯ ᏣᎬᏫᏳᎯ ᎤᎾᏓᏅᏘ ᎤᎾᏤᎵᎦ.\nᏔᎷᎩᏍᎩ ᎦᏅᎦᏩᎶᏍᎩ ᎨᏎ ᏗᎦᏁᎦᎳᏫᏍᏙᏗ ᎠᎴ ᏗᏔᎴᏍᏙᏗ ᎦᎪᏢᏍᎬ. Georgia ᎠᏕᎳ ᎤᏁᎦ ᏗᏗᏙᏗ ᎠᎴ ᏴᎩ ᏕᎪᏢᏗᏍᎬ.\nᎣᎦᏓᏅᏘᏳᏍᎩᏂ ᎨᏒᎩ ᎢᏨᏰᎳᏗᏙᎲᎢ, ᎾᏍᎩᏯ ᏧᏓᏍᏓᎢ ᏥᏓᏍᏆᏂᎪᏗᏍᎪ ᏧᏪᏥ;\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏲ ᎢᎨᎬᎾᏕᎩ ᏚᏳᎪᏛ ᎨᏒ ᎤᏂᏍᏛᏗᏍᎩ, ᎤᎾᏤᎵᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\n“Ꮎ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᎤᏴᏈᏓᎩᏎ ᎪᏪᎵ.\nᎾᎥᏂ ᎠᎵᏍᎩᏍᏔᏂᏙᎮ ᎰᎻ, ᎤᎵᏍᏇᏔᏬ ᎬᏗ ᎦᏃᎸᎥᏗᏍᎨ.\nᎫᎭᏢ ᏭᎾᏌᎾᎩᏎ ᏣᏥ ᎠᏎᏃ ᎤᏄᎸᏁ.\nᎭᏫᏂ ᎤᏁᎳᏕ ᏧᏍᏆᏴᏍᏗ ᎪᎳ ᎤᎷᏣ.\nᎠᏂᏧᏣ ᏥᎨᏎ ᏗᎬ ᏩᏂᏙᎵᏨ ᎨᏎ.\n“ᏙᎢᏳᏍᏗ ᎪᏟᏍᏗ?”\nᎤᎾᏏᏅᏎ, ᎤᎾᎪᏙᏍᏓᏁ ᎢᎾᏓ.\nᎠᏎᏃ ᎤᏂᏣᏔ ᎢᎬᏱ ᎣᏂᏱ ᎨᏎᏍᏗ; ᎣᏂᏱᏃ ᏥᎩ ᎢᎬᏱ ᎢᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏥᎧᎵᏨᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏳᎪᏛ ᎨᏒ ᎤᏓᎴᏅᎯ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏐᏗᏱ, ᎾᏍᎩ ᎤᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎠᎴ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎯᎠ ᏥᏂᎦᏪᏍᎬᎩ, ᏴᏫ ᎤᏪᏥ ᎠᏎ ᏴᏫ ᎠᏂᏍᎦᎾ ᏗᎨᏥᏲᎯᏎᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᎦᏛᏗ ᏓᏓᎾᏩᏍᏛᎢ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏧᎴᎯᏐᏗ.\nᎤᏁᏨᏃ ᎯᎠ ᏂᏑᏪᏎᎴᎢ, ᎦᏙ ᎤᏍᏕ ᎢᏥᏁᏤᎴ ᎼᏏ?\nᎠᎾᎵᏅᏟᏃ ᏚᏲᏍᎨᏍᏗ ᎠᎾᎵᏅᏟ ᎤᏲᏞᎯᎯᏍᏗᏱ; ᎠᏍᎦᏯᏃ ᎤᏪᏥ ᏚᏲᏍᎨᏍᏗ; ᎠᎴ ᏗᎨᎦᏅᎩ ᏓᎾᎴᎲᏍᎨᏍᏗ ᏧᏂᎦᏴᎵᎨ ᏓᎾᏡᏗᏍᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎾᏅᏂᏏᏍᎨᏍᏗ ᏕᎨᏥᎢᎮᏍᏗ.\nᎬᏂᏳᏉ ᎢᏥᏁᎸ ᏅᏔ ᏁᏨᏁᎸ; ᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᏴᎨᏍᎩᎪᏩᏛ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎬᏂ ᎯᎠ ᎢᏥᏪᏍᏗᏱ ᎠᏍᏆᎸᎲᎭ, ᎠᏥᎸᏉᏗᏳ ᎾᏍᎩ Ꮎ ᏱᎰᏩ ᏕᏅᏙᎥ ᏥᎦᎷᎯᏍᏗᎭ.\nᎠᎴ ᏞᏍᏗ ᏱᏗᎩᏯᏪᎨᏍᏗ ᎣᏍᏛ ᏕᎩᎸᏫᏍᏓᏁᎲᎢ; ᎾᎯᏳᏰᏃ ᎠᏍᏆᎸᎲᎭ ᎢᎩᏟᏐᏗ ᎨᏎᏍᏗ, ᎢᏳᏃ ᏂᏗᏗᏩᎾᎦᎶᎬᎾ ᎢᎨᏎᏍᏗ.\nᎠᎴ ᎠᎵᏥᏙᎲᏍᎨ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏓᏁᎸ ᎨᎵᎵ.\nᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎭᏢ ᎡᏙᎭ? ᎥᏝ ᏱᏥᎦᏔᎭ, ᎡᏛᏅᎩ.\n”ᎾᎥᏂᎨᏃ,” ᎤᏛᏁ ᏌᎳᏓ.\n“ᎭᏩ!” ᎤᏁᎷᏁ ᏂᎦᏓ.\nᎤᎬᏫᏳᎯᏃ ᎤᏬᏰᏂ ᏔᎵ ᎤᏛᏗᏕᎨᎢ, ᎤᏂᏤᏖᏃ ᎤᏃᎯᏳᏁᎢ, ᎤᎬᏫᏳᎯᏃ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏔᏁᎢ.\n”ᎤᏍᏆᏂᎩᏘ ᏏᏆ.” ᎤᏛᏁ.\nᏩᏆᏅᏓᏛ ᏰᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎣᎦᏂᎩᏒ ᏃᎴ ᏙᎩᎵᏦᏩᏔᏅ, ᎨᏍᏗ ᎣᏍᏓ ᏱᎦᏟᎮ ᎠᏌᎻᏓ ᏚᎾᏓᏒᎢ, ᏳᏃᏴᎳᏌ ᎤᏆᎶᎦ ᎦᏙᎥᏍᎬ ᏃᎴ ᎠᏑᏰᎯᏙᎲ ᎤᏤᏥᏍᏗ, ᎠᏓᎾᏩᏍᎬ.\nᎠᏂᏐᏃ ᏅᎦ ᏗᏂᏅᏌᏓ ᏂᏚᏅᏔᏁᎴ.\nᎤᏏᏩ ᏱᎩ ᎠᎫᏍᏉᏟᎢ ᏃᎴ ᎧᎵᎢ ᏱᎩ ᏣᏓᏅᏖᏗ, ᏍᏓᏱ ᎨᏐ ᏫᎦᏢᏗ.\nV. ᏌᎳᏓ  \n“ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᏴᏳ!” \nᎠᏍᎦᏂᏰᏃ ᎤᏓᎫᏴᎡᏗ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᎩ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏁᏗ ᎨᏒ ᎬᏂᏛ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ, ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎢᏳᏩᏂᏌᏛ.\nᏉᎳᏃ ᎤᏃᏍᏛ ᏔᎵ ᏧᏕᏘᏴᏛ ᎤᏁᎳᏛᎩ ᎤᏤᎵᎦ ᎤᏙᎳᏒᎯ ᎠᏓᏁᎸᎢ, ᎠᎴ ᏓᏓᏂᎸᎬᎩ ᏂᎦᏛ ᎬᏩᏩᏘᏍᎩ,\nᎨᎦᏓᏴᎡᎸᏃ, ᎤᏂᎪᏁᎶᎯᏎᎴᏉ ᎠᏍᎦᏯ ᎦᏁᎳ,\nᏴᏫ ᏂᏂᏫ ᏣᏁᎮ ᏙᏛᎾᎴᏂ ᎪᎯ ᏣᏁᎭ ᏗᎫᎪᏗᏱ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏚᎪᎵᏁᏗᏱ ᏅᏛᏅᏁᎵ; ᏚᏂᏁᏟᏴᏎᏰᏃ ᏚᎾᏓᏅᏛ ᏦᎾ ᏚᎵᏥᏙᏁᎸ; ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᏍᎦᏉ ᏦᎾ.\nᏚᏂᏴᎲᎩ ᏧᏪᏲᏔ ᏧᎦᏄᏓᏅᎯᏛ ᎠᎴ ᎤᏂᏄᎪᏨᎩ ᏚᎾᏠᏒᏒᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒ ᎤᏁᎷᏅᎩ, ᎰᏌᎾ! ᎠᏥᎸᏉᏗᏳ ᏫᏂᎦᎵᏍᏓ ᏱᎰᏩ ᏚᏙᏍᏛ ᏨᏓᏯᎢ, ᎤᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ.\nᎢᏳᏰᏃ ᏴᏫ ᎨᏥᏍᎦᏅᏤᎲ ᏱᏗᎨᏥᏁᎭ, ᎾᏍᏉ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎢᏥᏙᎵᏍᏗ ᎨᏎᏍᏗ.\nᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᏃᎴ ᎤᏂᏁᏌᏟ ᎠᏂᏳᏩᏁᎦ ᏚᏂᏍᏔᏩᏗᏎ, ᏑᎵ ᏣᏂᏌᏩᏄᎪ ᎪᎰᏍᏗ ᎤᎵᏬᏨ ᎢᎦᎦᏓ.\nᎤᏓᏅᏙᎩ ᎤᏓᎾᏫᏍᏔᏁᎢ.\nᎤᎾᎵᏍᎨᏛ ᎠᏂᏴᏫᏯ ᏗᎨᎦᏥᎶᏍᏔᏅ ᏓᏍᏆᏂᎪᏛ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏧᏂᎷᏫᏍᏔᏁᏗ ᏥᏯᏘᏅᏒ.\nᏥᏌᏃ ᎾᏍᎩ ᎯᎠ ᎤᏛᎦᏅ, ᎤᏍᏆᏂᎪᏎᎴᎢ, ᎠᎴ ᎤᎦᏔᎲᏎᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎵ ᏴᏫ ᎾᏍᎩ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ; ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᎾᏍᏉ ᎢᏏᎵ ᎠᏁᎲ ᎾᏍᎩ ᎢᎦᎢ ᎪᎯᏳᏗ ᎨᏒ ᏯᎩᏩᏛᎲ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᏗᎨᎪᏪᎵ ᎠᏂᏲᏍᎩ, ᏎᎦᏨ ᏕᎨᏥᏲᏍᎬ, ᏥᏳ ᎬᏘ ᏓᏂᏐᏍᎬ ᎨᏴ, ᏭᏂᏩᏍᎬ ᎠᏓᏴᏍᏓᎩᏍᎩ ᏍᎪᏂᏴ ᏓᏳᎶᏒ ᎠᎴ ᏔᎾᏏ ᏫᏍᎩ.\nᎦᏍᎩᎸᏃ ᏓᏓᎴᎲᏍᎬᎩ ᎠᎾᎦᎵᏍᎩ, ᎠᎴ ᎠᏴᏓᏆᎶᏍᎩ ᎠᎴ ᎤᏃᏴᎬᎢ; ᎠᎴ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏧᏥᏍᏟ ᏓᏓᏪᎵᎩᏍᎬᎩ ᎢᎬᏱᏗᏢ ᎦᏍᎩᎸᎢ, ᎯᎠ ᎾᏍᎩ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏕᎦᏥᏯᏟᎶᏍᏓᏁᎭ, ᎠᏂᎪᏩᏘᏍᎬᏰᏃ ᎥᏝ ᏱᎾᏛᎩᎭ ᎠᎴ ᎥᏝ ᏱᏃᎵᎦ.\nᎤᏴᏥ ᏄᎵᏍᏔᏁ ᎡᎶᎯ.\nᎡᏝᏪ ᏄᎵᏍᏔᏁ ᏎᎦ.\nᎭᏂ ᏱᏓᏅᎥᎦ ᎯᎪ ᎢᎦ, ᏑᎾᎴ ᏱᏕᏗᏰᎷᎦ.\nᏩᏥᏯᏅᎲᏃ ᏔᏓᎳ ᎤᎴᏅᎲᎩ ᎤᏬᎯᏍᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏂᎯ ᎢᏣᏂᏌᏅᎯ ᎤᏣᏘ ᏅᏩᏙᎯᏯᏛ ᏦᏤᎭ, ᎠᎴ ᎣᏍᏛ ᏥᏄᎾᎵᏍᏓᏁᎭ ᏴᏫ ᎣᎦᏤᎵᎪᎯ ᏣᎦᏌᏯᏍᏗᏳ ᎨᏒ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ,\nᎣᏂᏃ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎴ ᏌᏚ ᎢᏯᏂᏛ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᏚᎬᏍᎪᎸᏁ ᏂᎦᎵᏍᏙᏗᏍᎨ ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᎠᎴ ᏗᏍᏓᏱᏳ ᎨᏒ ᏧᏂᎾᏫ, ᏂᏚᏃᎯᏳᏅᎾ ᎨᏎ ᎢᏳᏍᏗ ᎾᏍᎩ ᎬᏩᎪᎲᎯ ᏧᎴᎯᏌᏅᎯ ᏂᎨᏎᎢ.\nᏗᏨᏍᏗ ᎨᏒ ᎾᏂᎥᏉ ᎠᏁᎲ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᎴ ᏓᎾᏤᎲ ᎦᎳᏫᏎᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ; ᎤᏕᎵᏛᏍᎩᏂ ᏗᎾᏂᏏᎲᏍᎩ ᎠᎴ ᏗᎾᏓᏲᏁᎯ ᎤᏁᎳᏅᎯ ᏙᏓᎱᎪᏓᏁᎵ.\nᎣᏂᏃ ᎢᏴᏛ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏕᎦᏚᏩᏗᏒ ᏧᏛᎾ ᎠᎴ ᏧᏍᏗ ᎤᏪᏙᏁᎢ, ᎠᎵᏥᏙᎲᏍᎨ ᎠᎴ ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎧᏃᎮᏍᎩ, ᏔᎳᏚᏃ ᎢᏯᏂᏛ ᎤᎾᎵᎪᏩᏕᎨᎢ;\nᎿᏉᏃ ᏗᎤᎷᏨ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏂᏅᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎿᏉ ᎢᏥᎵᏅᎩ ᎠᎴ ᎢᏥᏯᏪᏐᎸᎦ; ᎬᏂᏳᏉ ᎢᏳ ᎨᏒ ᎤᏍᏆᎸᎯᏗ, ᏴᏫᏃ ᎤᏪᏥ ᎠᎦᏡᏔᏅ ᎤᏂᏁᎫᏥᏛ ᏴᏫ ᏕᎨᏥᏲᎯᏎᎸ.\nᎠᎴ ᏂᎯ ᎨᏆᏂ ᎦᎸᎳᏗ ᎢᏴᏛ ᏤᏣᏌᎳᏓ, ᏨᏍᎩᏃ ᎢᏴᏛ ᏮᏓᏰᏣᎶᎥᏔᏂ.\nᏥᏯᏛᏛᏅ ᎡᏍᎦ ᏱᏄᏩᏁ.\nᎾᏍᎩᏯ ᎢᏴᏛ ᎤᎶᏒᏍᏗ ᏔᎵ ᎠᏛᏗᏍᎩ ᏫᎬᏁᎴ ᏥᏌ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ.\n“ᏐᏉ ᎢᏳᏩᎧᏘ Chapel Hill ᎨᏒᎢ…”\nᎾᎿ ᏥᏌ ᎢᎬᏱ ᎡᎩ ᏫᎩᏴᏎᎸᎯ ᏥᎩ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏂᎪᎯᎸ ᎠᏥᎧᏅᎯ ᏥᎩ, ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ.\nᎤᏂᎧᎵᏤᏃ ᎤᏂᏔᎳᏬᏍᎬᎢ; ᏚᎾᎵᏃᎮᎴᏃ ᎤᏅᏒ ᎢᏳᏅᏁᏗᏱ ᏥᏌ.\nᎠᎩᏍᏛᏛ ᏩᏏᏓᏂ ᎠᏁᎯ ᎣᎦᎵᎪᏅ.\nᎥᏝᏰᏃ ᏂᎯ ᏍᎩᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᏲᏥᏂᎳᏗᎭ; ᎢᏨᏁᎭᏎᏍᏗᏂ ᏍᎩᎸᏉᏙᏗᏱ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏳᏂᎭ ᏧᎾᏬᎯᎵᏴᏍᏓᏁᏗ, ᎢᏨᏰᎵᏎᎭ, ᎾᏍᎩ ᎦᏚᏉ ᎡᎯ ᎠᎾᏢᏉᏙᏗᏍᎩ ᏥᎩ, ᏙᏧᎾᏓᏅᏛᏃ ᎠᎾᏢᏉᏙᏗᏍᎩ ᏂᎨᏒᎾ.\nᏍᏈᏯ ᎠᏂᏬᏂᏍᎪ ᏴᏫ - “ᏥᏚᎢᏍᏗ ᏂᏥᏪᏍᎬ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ, ᏉᎳ ᎤᏓᏅᏖᎸᎩ ᎤᏓᏅᏛᎢ, ᎿᏉ ᎹᏏᏙᏂ ᎠᎴ ᎡᎧᏯ ᎤᎶᏐᏅᎯ, ᏥᎷᏏᎵᎻ ᏭᎶᎯᏍᏗᏱ , ᎯᎠ ᏄᏪᏒᎩ; ᎾᎿ ᎬᏇᏙᏅᎯ ᎨᏎᏍᏗ ᎶᎻ ᎾᏍᏉ ᎠᏎ ᏛᏥᎪᎢ.\nᎠᏎᏃ, ᏕᎫᎪᏗ ᎯᎸᎢᏳ ᎪᎱᏍᏗ ᏛᏛᏂ ᎮᏂᎵ ᏛᏛᎦᏍᏔᏂ ᏲᎾ ᎤᏤᏍᏙ.\nᏎᎦᎾᎨᏍᏗᏉ ᎤᎪᎮ ᎪᏍᏔᏱ ᎧᏴᏐᎵ ᎠᏓ ᎪᏒᏔᏅᎯ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ.\nᎠᎴ ᎦᎸᎶᎢ ᎤᏓᏅᏒᎩ ᎾᏍᎩᏯ ᎪᏪᎵ ᏣᎦᏇᏅᏍᎪᎢ; ᎠᎴ ᏂᎦᏛ ᏕᎣᏓᎸ ᎠᎴ ᎠᎹᏰᎵ ᏚᏪᎧᎲᎢ ᏚᏓᏅᏒᎩ ᎾᎿ ᏄᎾᏛᏅᎢ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᎠᎩᎩᎬ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏂᏨᏘ ᏥᎨᎦᏤᏪᎸ, ᎦᎨᏥᏁᏗᏱ ᎤᏂᏍᎦᏅᏨᎢ.\nᏏᏌᎵᏱᏃ ᎤᏚᎩᏒ, ᎠᎴ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏫᏚᏲᎵᎸ, ᎥᏘᎣᎩ ᏭᎶᏒᎩ.\nᎭᎵᏥᏙᎲᏍᎨᏍᏗ ᎧᏃᎮᏛ, ᏣᎵᏁᏅᏕᏍᏗᏉ ᏰᎵ ᎨᏎᏍᏗ ᎠᎴ ᏰᎵ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᏕᎯᎬᏍᎦᎸᎥᏍᎨᏍᏗ, ᏕᎯᏍᎦᎨᏍᏗ, ᏕᎯᏍᏗᏰᏗᏍᎨᏍᏗ ᎲᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎬᏂᏛ ᎨᏒ ᎠᎴ ᏗᏕᏲᏗ ᎨᏒᎢ.\n”ᏌᎳᏓ?” ᎤᏛᏁ.\n”ᎧᏁᏍᎦ ᎦᏝ ᎠᏆᏏᏃᎲᎢ! \nᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᏤᎦᏈ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎤᎸᏉᏔᏅ ᎤᏪᏥ ᏥᏌ, ᎾᏍᎩ ᏂᎯ ᏥᏕᏥᏲᏒᎩ ᎠᎴ ᏤᏣᏓᏱᎸᎩ ᎠᎦᏔᎲ ᏆᎴᏗ, ᎾᏍᎩ ᎤᏪᎪᏗᏱ ᏧᏰᎸᏒᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎠᏍᎦᏂ ᏳᎬᏫᏳᏌᏕᎨᏍᏗ ᏗᏲᎩ ᏗᏥᏰᎸᎢ, ᎾᏍᎩ [ᎠᏍᎦᏂ] ᎢᏦᎯᏳᏗᏱ ᎾᎿ [ᏗᏥᏰᎸ] ᎤᏚᎸᏅᎥᏍᎬᎢ.\nᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏛᏍᏆᎸᎯ ᎠᎴ ᎿᏉ ᎤᏍᏆᎸᎲ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏛᎪᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎧᏁᎬᎢ, ᎠᎴ ᎤᎾᏛᎦᏅᎯ ᎤᎾᏛᏂᏗᏍᏗ ᎨᏎᏍᏗ.\nᏚᏑᎬ ᏧᏍᎩᏃ ᎦᏰᎩ ᏚᏬᎪᏔᏁ ᏚᎵᏘᎾᎥ ᏣᎵ, ᎾᎥᏂ ᎤᏓᏄᏖᏴᏓ ᎤᏍᏔᎦᎸ, ᎠᏎᏃ ᎤᏓᏅᎯᏓ ᎨᏎ.\n ᎱᎵᏍᎦᏴᏍᏔᏁᎢ ᏧᏩᎩ.\nᎠᏎᏃ ᎤᏓᏱᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏥᎦᏔᎭ, ᎥᏝ ᎠᎴ ᏱᎪᎵᎦ ᏂᏪᏍᎬᎢ. ᎤᏄᎪᏤᏃ ᏙᏱᏗᏢ ᏩᏲᏓᏝᎲ ᏭᎶᏎᎢ; ᏣᏔᎦᏃ ᎤᏴᎵᏎᎢ.\nᎥᏣ ᏂᎦᏓ, ᎠᏂᎩᎶᎯ, ᎠᏂᏬᏗ, ᎠᏂᏩᏯ ᏃᎴ ᎠᏂᎧᏫ.\nᎿᏉᏃ ᎥᎠᎢᏒᎩ, ᏧᏅᏏᏓᏍᏗ ᏕᎬᏩᏠᏒᎩ ᎠᎴ ᎬᏩᏃᏁᎸᎩ, ᏤᏥ ᎬᏅ, ᎥᎬᏬᏎᎸᎩ.\nᎤᎵᏍᏗᏃ ᎤᏂᏄᎪᏨ ᏚᎾᎵᏖᏎ ᎠᏤᎵᏍᏛᎢ; ᏚᏂᎾᏫᏍᎨᏃ ᎠᎴ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ; ᎥᏝ ᎠᎴ ᎩᎶ ᎠᎱᏍᏗ ᏳᏃᏎᎴᎢ; ᎠᏂᏍᎦᎢᎮᏰᏃ.\nᏅᏃᎱᎶᏗ-Ꮓ ᏧᎳᎨᏯᏛᏤᎢ ᎾᏍᎩ ᎠᎾᏛᎩᏍᎩ ᎨᏥᏛᎦ; ᎿᏉᏃ ᎠᏍᎩᎾ ᎦᎷᎪᎢ, ᎠᎴ ᎠᎩᏍᎪ ᎦᏄᎪᏫᏍᎪ ᎧᏃᎮᏛ ᏧᏂᎾᏫᏱ, ᎦᎬᏩᏃᎯᏳᏗ ᎠᎴ ᎦᎨᏥᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᏧᎾᏄᎪᏨ, ᎥᏝ ᎿᏉ ᏗᏕᏲᎲᏍᎩ ᏗᎦᏘᏂᏙᎯ ᏱᎩ.\nXI. ᎤᏍᏆᏂᎩᏗ  \n“ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ ᎯᏍᏚᏣ,” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎠᏍᎩᏗᏍᎨᎢ ᏗᎪᏍᏛᏂᏍᏗ ᏗᎳᏍᎦᎶᏗ ᏕᎦᏅᏗᏍᏗᏍᎬᎢ ᎠᎿᏬ ᎪᏒᏔᏅ ᏪᏌ ᏃᎴ ᎤᏂᏃᏕᎾ ᏗᏂᏯᎩᏍᎩ ᎠᏂᏴᏫᏯᎯ ᎤᏩᎾ ᏧᏍᏆᏅᎾ ᎠᏓᏒᎲᏍᎬ.\nᏫᏥᎢᎦ ᏳᏓᏁᏖᎸᎾ, ᏔᎵᏉ ᏚᎴᏍᎨᎮ ᏭᏗᏅᏎ ᎦᎷᏯᏍᏗ.\nᎤᏁᎳᏅᎯᏃ ᎤᏩᏒ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏂᎦᎷᎶᎬᎾ ᎢᏥᏅᎦᎸᏗ ᎨᏎᏍᏗ; ᎠᎴ ᏂᎬ ᎢᏣᏓᏅᏖᏗᏱ ᎠᎴ ᏗᏣᏓᏅᏙ ᎠᎴ ᏗᏥᏰᎸᎢ ᏤᏤᏍᏆᏂᎪᏓᏁᏗ ᎨᏎᏍᏗ, ᏂᏚᏚᎯᏍᏛᎾ ᎢᏣᎵᏍᏙᏗᏱ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎦᎷᏨ ᎢᏳᎢ.\nᎾᏍᎩ ᏗᎦᎸᏌᏓᏗᏍᎩ ᏥᎨᏒᎩ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩᏯ ᏗᏟᎶᏍᏔᏅᎯ ᏥᎨᏒᎩ ᎾᏍᎩ ᏄᏍᏛᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏥᏚᏍᏆᏂᎪᏗᏕᎬᎩ ᏥᎬᏗᏍᎬᎩ ᎤᎵᏂᎩᏗᏳ ᎧᏁᎬᎢ, ᎾᎯᏳ ᎤᏩᏒ ᎤᏓᏛᏔᏅ ᎤᏅ ᎦᎸᎭ ᎢᎩᏍᎦᏅᏨᎢ, ᎤᏪᏁᎢ ᎠᎦᏘᏏᏗᏢ ᎦᎸᏉᏗᏳ ᎨᏒ ᎦᎸᎳᏗ.\nᏂᎯ ᎲᏤᏅᏍᏗ ᏱᎨᏒᎾ ᎯᎨᏎᏍᏗ, ᎠᏯ ᏍᏉ ᎨᏙᎮᏍᏗᏉ.\nᏂᎯᏍᎩᏂ ᏕᏣᏂᏴᏎᏍᏗ ᏄᏍᏛ ᏣᏕᎶᏆᎥᎢ ᎠᎴ ᏦᎯᏳᏅᎢ; ᎯᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎯᏯᏕᎶᏆᎡᎸᎯ ᎨᏒᎢ,\nᎤᏗᏍᏚᏅ, ᎤᏍᏘᏰᎬ ᎤᏭᏒᏅ ᎤᎧᏛ, ᎭᎾᏉ ᎤᎵᏍᏆᏙᏅ.\nᎤᎵᎮᎵᏍᏗ ᎠᏁᎮ ᏂᎦᏓ ᎠᏣᏗ ... ᏣᏉᏲᎪ ᎤᏍᏗ ᎠᏣᏗ.\n”Ꭳ, Ꭵ, ᏫᎵᎻ ᎤᎸᏉᏗ ᏌᎳᏓ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᏥᏃᎯᏎᎴ ᏗᎧᏃᎮᎸᎥᏍᎩ ᏗᏉᏪᎳᏅ ᎨᏒ, ᎠᏎᏃ ᎨᏍᏗ ᏧᎪᎵᏰᏓ ᏱᎨᏎ.\nII. ᏫᎵᎻ  \nᎦᏙᏃ ᎤᏪᎵᏎ.\nᎠᎴ ᏅᏩᏓᎴ ᎤᏍᏆᏂᎪᎩ ᎤᎾᏄᎪ ᏨᎩ ᎦᎸᎳᏗ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏣᏅ ᎩᎦᎨ ᎢᎾᏛ [ᏫᏥᎪᎥᎩ,] ᎦᎸᏉᎩ ᏓᏍᎫᏓᏛᎩ, ᎠᎴ ᎠᏍᎪᎯ ᏕᎤᎷ-ᎬᎩ, ᎠᎴ ᎦᎸᏈᎩ ᏚᎵᏍᏚᎸᎩ ᏓᏍᎫᏓᏛᎢ.\nᏍᏓᏯ ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎿᏉᏃ ᎠᏂᏯᏫᏍᎩ, ᏥᏌ ᎬᏩᏛᏅ, ᏚᏂᏁᏒᎩ ᏧᏄᏬ, ᏅᎩ ᏂᏚᏂᏛᎩ, ᏌᏉ ᎢᎦᏛᎯ ᎠᏏᏴᏫ ᎠᏯᏫᏍᎩ ᎤᏤᎵᎦ ᏄᏅᏁᎸᎩ; ᎠᎴ ᎾᏍᏉ ᎭᏫᏂ ᎤᏄᏬᎥᎯ. ᎾᏍᎩ ᎭᏫᏂ ᎠᏄᏬ ᎥᏝ ᎦᏰᏫᏛ ᏱᎨᏎᎢ, ᏂᎬ ᎬᏅᎯ ᎨᏒᎩ.\nᎠᏓ ᎪᏍᏔᏱ ᎦᎦᏓᎢ ᎦᏯᎩᏍᎬ ᏌᎶᎵ, ᎠᏍᎪᎵ ᏓᏳᎴᏅᏓ ᎡᎳᏗ ᎠᏰᎸᎢ, ᏕᎦᏄᎳᏥᏴ ᎠᎩᏍᎬ ᎭᏫᏯ ᎾᏍᎩᏯ ᏎᎷ ᏣᏍᏗᎩᏍᎪ.\nᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏁᎯ ᎠᏂᏬᏂᏍᎩ ᏯᏗᎭ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏆᏛᏅᎢᏍᏗ ᎠᏉᎯᏳᏗ ᏂᎦᏪᏍᎬᎢ.\nᎥᏝᏃ ᎩᎶ ᎠᏂᏅᏜᎢ ᏳᏬᎵᏤ ᏄᏍᏛ ᎦᏛᎬ ᎾᏍᎩ ᏄᏪᏎᎸᎢ.\nᏱᏣᏕᎶᎰᏌ ᏄᏍᏛ ᎢᏯᏋᏁᏗ ᏩᎦ ᎭᏫᏯ ᏕᎦᏄᎳᏥᏴ ᎭᏫᏂᏨ ᏓᏳᎣᏒ.\n“ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᎪᏱᏁ.\nᏥᎪᏩᏛ ᎠᎩᏏ ᏧᎬᏩᎶᏗ. ᎦᎪ ᏓᎦᏟᎶᏍᏗ, ᎠᎴ ᎦᎪ ᎠᏥᏃᎮᏎ ᎯᎠ ᏥᎪᏪᎳ? ᎤᏂᏁᏤᏃ, ᏏᏌ, ᎤᎾᏛᏁᎢ.\nᎦᏍᎩᎸ ᏗᏒᏗ ᎠᏍᏓ ᎬᏗ ᏕᎬᏍᎪ ᏃᎴ ᎠᎵᏲ ᎠᏋᏗ ᏥᏏᎾ.”\nᏚᏅᏓᏒᏰᏃ ᎤᏪᏅᏒ, ᏍᎩᎾᎾ ᏄᏍᏕᏍᏗ.\nᎦᎸᏉᏗᏳᏍᎩᏂ ᎩᎬ ᎡᏣᎫᏴᏔᏅᎯ ᎨᏒᎢ, ᎤᎩᎬ ᎦᎶᏁᏛ ᎾᏍᎩᏯ ᎠᏫ-ᎠᎩᎾ ᎪᎱᏍᏗ ᏄᎪᎸᏫ ᎠᎴ ᏄᏓᏓᎸᎾ;\nᏐᏉ ᎤᏒᎯ ᎤᏂᎵᏦᏩᏛ ᎾᎥᏂ ᎤᏗᎧᎸᏎ ᏣᎵ, ᏗᎠᎢᏒ ᏚᎪᎮ ᎭᏫᏯ ᏕᎦᏓᎥ, ᏗᎩᎦᎭ ᏓᏯᏙᎳᏛ ᎾᏍᎩᏯ ᏂᏚᏍᏖ.\nᎤᎵᏗᏨ, ᎧᏅᏑᎸᎢ ᎦᏯᎴᎢ. ᎪᎱᏍᏗ ᎤᏍᏆᏂᎩᏗ ᎤᎪᎮ ᏫᎵᎻ.\nᎠᎴ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᏙᎯ ᏥᏄᏩᏁᎸ ᎡᏗᏍᎦᎩ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ, ᎠᎴ ᎠᏴ ᎣᎦᏒ-ᎦᎶᏔᏅ ᏙᎯ ᎢᎬᏁᎯ ᏗᎦᎸᏫᏍᏓᏁᏗ;\nᎤᏄᎸᏁᎢ ᏧᏭᎪᏙᏗ ᎢᏳᏍᏗ ᎤᏍᎦᏅᏨ.\nᎣᏍᏛ ᏕᏥᏁᏤᎮᏍᏗ ᎨᏥᏍᎩᏅᏗᏍᎩ, ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎨᏥᏙᎵᏍᏗᏱ ᎦᎨᏥᏐᏢᏗᏍᎩ.\nᎤᏓᏲᎵᏍᏗ ᎤᏩᏌ ᎠᎨᏲᏅ ᎨᏎ ᎠᏌᎻᏓ ᎠᏂᏐᎢ ᏦᎢ ᎢᏯᏂ ᏤᏆ ᎦᎶᏇ ᏧᏂᏅᎦᎶᏗ.\nᎢᎬᏩᏙᏢᏔᏁᏃ, ᎠᏂᎦᏔᎮᏰᏃ ᎤᏲᎱᏒᎯ ᎨᏒᎢ.\nᏍᎦᏃᎳ ᏚᎷᏫᏍᏔᏁᎮ ᎠᏂᏐᎢ ᎤᏁᏝᏅ ᏧᏬᏒᏅ ᎠᏂᏟᏁ.\nᎠᎴ ᎢᏳ ᏧᏪᏥ ᏱᎩ, ᎿᏉ ᎢᎦᏘᏰᎯ ᏧᎬᏩᎶᏗ; ᎢᎦᏘᏰᏗ ᏧᎬᏩᎶᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᎢᎦᏘᏰᏗ; ᎢᏳᏃ ᎰᏩ ᏱᎦᏠᏯᏍᏗᎭ ᎠᎩᎵᏲᎬᎢ, ᎾᏍᏉ ᎢᎦᏠᏯᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸᏉᏗᏍᎬᎢ.\nᎢᎦᏛᏃ ᎾᎥ ᎠᏂᏙᎾᎢ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎬᏂᏳᏉ, ᎢᏔᏯ ᎠᏯᏂᎭ.\nᎣᎭᏁ ᎢᏣ ᏚᎶᏔᎴ, ᎦᏲᏟ ᏚᏲᏎ ᏗᏔᎾᎶ, ᏗᏴᎩᏍᏙᏗ ᏚᏰᏝᎴ ᎩᎦ ᎬᏔᏍᎩᏍᎩ.\nᎤᏂᏣᏖᏍᏗᏰᏃ ᎠᏴ ᏓᏆᏙᎥ ᎠᏂᎷᎯᏍᏗᏍᎨᏍᏗ, ᎠᏴ ᎦᎶᏁᏛ, ᎠᎾᏗᏍᎨᏍᏗ; ᎠᎴ ᎤᏂᏣᏓᏍᏗ ᏓᏂᎶᏄᎮᏍᎨᏍᏗ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎩᎶ ᎣᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᎨᏐᎢᎬᏪᏅᏛ; ᎩᎶᏃ ᎾᏍᎩ Ꮎ ᎯᎠ ᏄᏍᏛᎾ ᏱᎩ, ᎠᏎ Ꮭ ᎦᎬᏍᎦᎶᏗ ᏱᎨᏐᎢ.\nᏚᎾᎴᏁᏃ ᎠᎴ ᎬᏩᏄᎪᏫᏎ ᎦᏚᎲᎢ, ᎠᎴ ᏭᏩᏝᎥ ᎤᏌᎯᎸ ᏫᎬᏩᏘᏅᏍᏔ ᎾᎿ ᎤᏂᏚᎲ ᎦᎧᎲᎢ, ᏗᎬᏩᎶᎥᏔᏂᏎ\nᏫᎵᎻ ᎤᏍᎦᏃᎳ ᎤᎵᏍᏔᏴᏁᎢ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ.\nᏗᏯᏙᎵ ᏕᎦᏆᏛ, ᏣᏍᏆᏄᏍᎪ ᎢᏳᏍᏗ ᎤᏃᏴᎵᏒ ᏌᏬᏚ.\nᏩᎾᎢᏒᏛ ᏥᏍᏚ, “ᎠᎭᏂ ᏐᎢ! ᎠᎭᏂ ᏐᎢ!” ᎤᏛᎮ\n”ᎣᏍᏓ ᎠᎩᏰᎸᎭ,” ᎤᏛᏁ ᏫᎵᎻ.\nᏔᎵᏍᎪᏔᎵ ᎦᎶᏇ ᎦᏁ ᎦᎷᎪ ᎡᎶᏗ, ᎠᏲᎯᎰ...”\nᎭᎾ ᎠᏰᎵ ᎤᏩᏛᎮᎢ ᎩᎳ ᎤᏑᎸᏓ ᎢᎦ ᎤᎵᏍᏔᏴᏅ ᎩᎶ: ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅᎯ ᎨᎵᏍᎩ,  ᎠᎦᎸᏓ ᎤᏅᏗ ᎤᏍᏔᏲᏒ, ᎤᏪᏥ ᎫᏅ ᎤᏘᏴ ᏃᎴ ᎠᏰᎵ ᎤᏕᏅ ᎤᏥᏴᎭ ᏒᎧᏔ.\nᎤᏟᏍᎩᏂ ᎢᏳᎵᏂᎩᏛ ᏳᏃᎵᎸ ᎠᎴ ᏳᏎᎪᎩᏒ, ᎤᎩᎡᎰ ᏂᎦᏛ ᎤᎵᏍᎦᏍᏙᏗ ᎤᎵᏍᎦᏍᏙᏔᏅᎢ, ᎠᎴ ᎠᏯᏙᎯᎰ ᏧᎬᏩᎶᏗ ᎤᏓᏬᏅᎲᎢ.\nᏣᏂᏰᏃ ᏗᏓᏬᏍᎩ ᎤᎷᏨᎩ ᎥᏝ ᎦᏚ ᏯᎩᏍᎨᎢ, ᎥᏝ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏯᏗᏔᏍᎨᎢ; ᎯᎠᏃ ᏂᏥᏪᏎ; ᎠᏍᎩᎾ ᎤᏯᎠ.\nᎤᎵᎮᎵᏍᏗ ᎤᏓᏅᏔᏕᎢ.\nᎾᏍᎩ ᎡᏍᎦᏂᏦᎭᏍᎬᎾ ᎨᏒ ᏑᏓᎴᎩ ᎤᏅ ᎬᏩᎦᏘᏯ ᎤᏓᎵᏍᎪᎸᏓᏁᏗ ᎨᏒᎢ; ᎢᏥᎦᏖᏃᎲ ᎤᎷᎯᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ;\n”ᎨᎾ ᏏᏆ!” ᏧᏛᏁ ᏣᏄᏏ.\nᎠᎴ ᎡᏥᎧᎵᎸᎯ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏅᎯ ᎾᏍᎩ ᏄᎬᏫᏳᏌᏕᎩ ᏥᎩ ᎾᏂᎥ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ;\nᎠᎴ ᎤᏓᏅᎯᏗᎢ ᎠᏆᏂᎩᏍᏗ ᎠᏏ ᎾᎩᏢᏅᎾ,\nᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᎤᏠᏱᏉ ᎠᏗᏔᏍᏗ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎠᎾᏗᏔᏍᎬᎢ; ᎾᏍᎩᏰᏃ ᏅᏯ ᎠᏓᏅᏙ ᎤᏍᏚᎢᏛ, ᎾᏍᎩ ᏧᏂᏍᏓᏩᏗᏙᎮᎢ, ᎾᎿ ᎤᏄᎪᏨᎯ ᎠᎾᏗᏔᏍᎨᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᏅᏯ ᎦᎶᏁᏛ ᎨᏒᎩ.\n”ᎤᏣᏔ ᎣᏍᏓ ᏍᎩᎾᎾᏂ,” ᎤᏛᏁ ᏣᏄᏏ.\nᎤᎾᏜᎢᏃ ᎤᎸᏉᏔᏁ ᏂᏚᏳᎪᏛᎾ ᎢᏯᏛᎾᎯ ᎤᎦᏌᏯᏍᏗᏕᎩ, ᎤᏗᎦᎵᏍᏙᏍᎨ ᎤᏏᎾᏌᏅᏨᎢ; ᎡᎶᎯᏰᏃ ᏧᏪᏥ ᎤᏅᏒ ᎠᏁᎲᎢ, ᎤᏟ ᎾᏂᏏᎾᏌᏅ ᎡᏍᎦᏉ ᎢᎦᎦᏘ ᏧᏪᏥ.\nᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏓᏅᏙ ᎨᏒᎢ, ᎠᏓᏓᏈᏍᏗ ᎨᏒᎢ, ᏗᏗᏲᏍᏗ ᎨᏒᎢ, ᏗᏓᏛᏳᏤᏗ ᎨᏒᎢ, ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᏓᏓᏐᎮᏗ ᎨᏒᎢ, ᏔᎵ ᎢᏯᏓᏗᏍᏗ ᎨᏒᎢ, ᎤᎾᏓᏤᎵᏛ ᎨᏒᎢ,\nᎿᏉᏃ ᎯᎠ ᏅᏓᎦᏥᏪᏎᎵ; ᎥᏝ ᎢᎸᎯᏳ ᏱᏨᎦᏔᎮᎢ; ᎤᏟ ᏫᏥᎶᎯ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᎯ.\nᎤᏓᎸᏉᏗ ᏂᎨᏒᎾ ᏃᎴ ᎠᎵᎮᎵᎩ ᏗᎧᏃᏗ ᎨᏎᎢ.\nᎠᎩᏍᏆᏙᏅ ᎦᏗᏲᎯᎲ ᎯᎠ ᎾᎩᏪᏒ: ᏍᎩᏍᏕᎳ ᏙᏥᏩᏘᏍᎬ ᎤᎾᏓᎸ ᏃᎴ ᏕᏨᏯᏓᏂᎸᎦ ᎢᏣᎵᎪᏗ ᏲᎾ ᏧᏤᎵ ᏴᏫ.\nᏑᏁᏎᏃ, ᎠᎴ ᎤᎵᏍᏓᏴᏁ ᎠᏂᎦᏔᎲᎢ.\nᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤ ᎾᏍᎩ ᏂᏚᏪᏎᎸᎢ, ᎠᎴ ᎨᎬᏍᎦᎳᏁᎴᎢ, ᎾᏍᎩ Ꮔ-ᏂᎪᎲᎾ ᎨᏎᎢ; ᎠᎴ ᎠᏂᏍᎦᎢᎮ ᎬᏩᏛᏛᏗᏱ ᎾᏍᎩ Ꮔ-ᏪᏒᎢ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᎾᏉᏃ; ᏦᎯᏳᏒ ᏣᏍᏕᎸ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏍᏓᏩᏛᏎ ᏥᏌ ᎠᎢᏒᎢ.\nᏧᏓᎴᏅᏓ ᎤᎾᏓᏍᏔᏴᏗ ᎨᏒ ᏕᎦᏚᎲ."
  },
  {
    "path": "a4/chr_en_data/dev.en",
    "content": "Paul, and Silvanus, and Timothy, unto the church of the Thessalonians in God our Father and the Lord Jesus Christ;\nAnd when the multitudes heard it, they were astonished at his teaching.\nAfter these things I saw another angel coming down out of heaven, having great authority; and the earth was lightened with his glory.\nAnd this is the sign unto you: Ye shall find a babe wrapped in swaddling clothes, and lying in a manger.\nHe could hardly believe what he was seeing, and although he detested flies, he was sorry for this one.\nAnd he entered into Jerusalem, into the temple; and when he had looked round about upon all things, it being now eventide, he went out unto Bethany with the twelve.\nAnd for our relentless searching, two weeks of it, all we found was one old man, nearly blind and living alone, who said his name was Hog Meat and that he was nearly a hundred years old.\nAnd no clear way through, at least none that I could see.\nMrs. Zuckerman began to cry.\nAnd Jesus went forth, and his disciples, into the villages of Cæsarea Philippi: and on the way he asked his disciples, saying unto them, Who do men say that I am?\nfor so shall it come upon all them that dwell on the face of all the earth.\nAnd he commandeth the multitude to sit down on the ground: and he took the seven loaves, and having given thanks, he brake, and gave to his disciples, to set before them; and they set them before the multitude.\nShe brought threat and disorder down on the people.\nLurvy and John Arable and Mr. Zuckerman came along at that moment, followed by Mrs. Arable and Mrs. Zuckerman and Avery and Fern.\nSimon Peter therefore also cometh, following him, and entered into the tomb; and he beholdeth the linen cloths lying,\nTell ye the daughter of Zion, Behold, thy King cometh unto thee, Meek, and riding upon an ass, And upon a colt the foal of an ass.\nBehold, I tell you a mystery: We all shall not sleep, but we shall all be changed,\nChief Ross, the head man for the whole Nation, was as white as any congressman.\nOther organisms make them into soil.\nThey said therefore unto him, What did he to thee? how opened he thine eyes?\nAnd he said unto them, An enemy hath done this. And the servants say unto him, Wilt thou then that we go and gather them up?\nThey shall perish; but thou continuest: And they all shall wax old as doth a garment;\nBut he that received the one went away and digged in the earth, and hid his lord’s money.\nThe Philadelphia boy broke the blowgun into three pieces and threw them into the fire.\nThis is what they do when they put on shoes, said Wolf, nearly crying\nthat we may be no longer children, tossed to and fro and carried about with every wind of doctrine, by the sleight of men, in craftiness, after the wiles of error;\nCharlotte’s Web\nJesus saith, Take ye away the stone. Martha, the sister of him that was dead, saith unto him, Lord, by this time the body decayeth; for he hath been dead four days.\nFor the kingdom of heaven is like unto a man that was a householder, who went out early in the morning to hire laborers into his vineyard.\nYe have heard that it was said, An eye for an eye, and a tooth for a tooth:\nAnd Jesus said unto the chief priests, and captains of the temple, and elders, that were come against him, Are ye come out, as against a robber, with swords and staves?\nin whom are all the treasures of wisdom and knowledge hidden.\nFinally I opened a door and found the old murderer himself in his office, holding forth to a small gang of cronies, most of them young men about my age.\nand he was seen for many days of them that came up with him from Galilee to Jerusalem, who are now his witnesses unto the people.\nNobody, of the hundreds of people that had visited the Fair, knew that a grey spider had played the most important part of all.\nWhich is easier, to say, Thy sins are forgiven thee; or to say, Arise and walk?\nAfter a while she bestirred herself.\nFar behind them, trackers rose up the slopes of the coves and drew nearer by the day.\nand they shall scourge and kill him: and the third day he shall rise again.\nhe was going ::huff:: ::puff:: ::huff:: because it was so afraid!\nAnd when ye shall hear of wars and tumults, be not terrified: for these things must needs come to pass first; but the end is not immediately.\nThen she’d lay out pieces of rough wool or linen she had loomed herself and scissor two pieces to match the pattern on the ground and stitch them together.\nYou’ve rousted out thousands of them without incident.\nOkay, said Wolf.\nAnd I heard a great voice out of the throne saying, Behold, the tabernacle of God is with men, and he shall dwell with them, and they shall be his peoples, and God himself shall be with them, and be their God:\nwho are Israelites; whose is the adoption, and the glory, and the covenants, and the giving of the law, and the service of God, and the promises;\nVerily I say unto you, It shall be more tolerable for the land of Sodom and Gomorrah in the day of judgment, than for that city.\nWon’t it be wonderful to be back home in the barn cellar again with the sheep and the geese?\n“Dude,” I assured him, “I will absolutely NOT make any moves on your girlfriend.”\n“I love everything about this place.”\nand he sent and beheaded John in the prison.\n“That's just what we need,” said Avery.\nSmith, still mounted, tried to loose the flap of his holster to get at the pistol, but his fingers just twitched at the simple device of button and eyelet.\nThat worried Smith.\nShe let herself down on a dragline until she hung in the air just in front of the big pig’s snout.\nBut she came and worshipped him, saying, Lord, help me.\nBut it held and grew.\nWhen he had enough letters -- about eighty-four or so -- he began writing.\nHe that is not with me is against me; and he that gathereth not with me scattereth.\nI am no more worthy to be called thy son: make me as one of thy hired servants.\nBut not Wasseton.\nWhy should I bother?\n“I’m less than two months old and I’m tired of living,” he said.\nI am become foolish: ye compelled me; for I ought to have been commended of you: for in nothing was I behind the very chiefest apostles, though I am nothing.\nThen saith he unto them, My soul is exceeding sorrowful, even unto death: abide ye here, and watch with me.\nThere was a long silence, and then the hunters spread out and moved forward and began circling around him.\nI realized soon, I passed close by this one nearby building.\nBut Thomas, one of the twelve, called Didymus, was not with them when Jesus came.\nVerily, verily, I say unto you, that ye shall weep and lament, but the world shall rejoice: ye shall be sorrowful, but your sorrow shall be turned into joy.\nOnce you were just a seed, now you are an apple tree.\n“What did I do wrong?” asked the pig, when he recovered from his bump.\nLet him that stole steal no more: but rather let him labor, working with his hands the thing that is good, that he may have whereof to give to him that hath need.\nI'm expecting goslings.”\nBut I kept working, tirelessly and without hope.\nAnd the husbandmen took his servants, and beat one, and killed another, and stoned another.\nAnd she had a sister called Mary, who also sat at the Lord’s feet, and heard his word.\nWherefore when we could no longer forbear, we thought it good to be left behind at Athens alone;\nthat he might present the church to himself a glorious church, not having spot or wrinkle or any such thing; but that it should be holy and without blemish.\n“Salutations are greetings,” said the voice.\nFor in many things we all stumble. If any stumbleth not in word, the same is a perfect man, able to bridle the whole body also.\nThe blow glanced off the key.\nOverhead, on the main floor, nothing stirred: the cows were resting, the horses dozed.\nIf after the manner of men I fought with beasts at Ephesus, what doth it profit me? If the dead are not raised, let us eat and drink, for to-morrow we die.\nfor she said within herself, If I do but touch his garment, I shall be made whole.\nThe goose was sitting on nine eggs.\n“Bee-bee-bee!” said the goslings.\nThen just Charley talked and tried to make gestures with his bound hands.\n“Maybe,” said Charlotte quietly.\nUnderneath her rather bold and cruel exterior, she had a kind heart, and she was to prove loyal and true to the very end.\nIt’s made out of the toughest material I have.\nAnd he said, A certain man had two sons:\nAll spiders do, I guess.”\nCharlotte and Wilbur were alone.\n“Oh, hurry!” said Wilbur.\nWhen morning came, everybody got up at daylight.\nThey have bows and arrows and an implement called the blowgun, which they use for the purpose of killing small game, at which they are expert.\nWhite people wipe their ass on the notion of peace every day.\nWilbur watched from below.\nAt which season Moses was born, and was exceeding fair; and he was nourished three months in his father’s house:\nFor yet a very little while, He that cometh shall come, and shall not tarry.\n“What does it mean? asked Charlotte, who had never used any soap flakes in her life.\nFor I am persuaded, that neither death, nor life, nor angels, nor principalities, nor things present, nor things to come, nor powers,\nAnd what did it matter about burned houses and slaughtered animals?\nBut it never did.\nBehold, I have told you beforehand.\nGranddad always tries the hottests kinds, even some from South America.\nEven so then at this present time also there is a remnant according to the election of grace.\nWhen therefore ye see the abomination of desolation, which was spoken of through Daniel the prophet, standing in the holy place (let him that readeth understand),\nBy which will we have been sanctified through the offering of the body of Jesus Christ once for all.\nOn my feet, beaded buckskin moccasins, laced to the knees and fringed along the outer seams.\nBut I have promises to keep,\n“I didn’t mean to be objectionable.”\n“Tell me another story!” begged Wilbur.\nI walked and walked.\nA woman came in bearing a tray of pork loin and roasted new potatoes and little lettuces killed with bacon grease.\nBut be thou sober in all things, suffer hardship, do the work of an evangelist, fulfil thy ministry.\n“What feasting and carousing!\nPatiently he awaited the end of winter and the coming of the little spiders.\nHe climbed out of the coves where colored leaves still hung on the trees, through a region where ferns and vines had grown fountainous through the summer and were now melancholy and dying as far as the eye could see, and then along the dry ridges, and by dusk he was rising through a forest of bare trees grey as winter toward the ominous balsam forests draped black across the highest ridges, a world of shadow and hush, where every step fell muffled by the soft foot-bed of old brown needles.\nI made the rounds, office to office.\n“Keep qui-ut! ”\nI'll go and get a bucket of slops.”\nFern nodded. “I had the best time I have ever had anywhere or any time in all of my whole life.”\ngiving thanks always for all things in the name of our Lord Jesus Christ to God, even the Father;\n“A rat never knows when something is going to come in handy.\nAs it was, he played as if the outcome were as random as casting dice or flipping a coin.\nIn the meantime, the colonel had lost interest in the letter and had begun lighting a pipe.\nMrs. Arable was tucking Fern into bed.\nWhen he spoke, he said, There was no one with me.\nAnd when they opposed themselves and blasphemed, he shook out his raiment and said unto them, Your blood be upon your own heads; I am clean: from henceforth I will go unto the Gentiles.\nAnd they understood none of these things; and this saying was hid from them, and they perceived not the things that were said.\nBut he said unto them, Give ye them to eat. And they said, We have no more than five loaves and two fishes; except we should go and buy food for all this people.\nbut now that ye have come to know God, or rather to be known by God, how turn ye back again to the weak and beggarly rudiments, whereunto ye desire to be in bondage over again?\nthere came unto him a woman having an alabaster cruse of exceeding precious ointment, and she poured it upon his head, as he sat at meat.\nEverybody spills food at a fair.\n“I’m very young, I have no real friend here in the barn, it’s going to rain all morning and all afternoon, and Fern won’t come in such bad weather.\nAnd when it was day, he called his disciples; and he chose from them twelve, whom also he named apostles:\n“Sing something!” begged Wilbur, closing his eyes.\nAfter these things I heard as it were a great voice of a great multitude in heaven, saying, Hallelujah; Salvation, and glory, and power, belong to our God:\nbut I hope shortly to see thee, and we shall speak face to face. Peace be unto thee. The friends salute thee. Salute the friends by name.\nBehold, I have given you authority to tread upon serpents and scorpions, and over all the power of the enemy: and nothing shall in any wise hurt you.\nAnd when they had been long without food, then Paul stood forth in the midst of them, and said, Sirs, ye should have hearkened unto me, and not have set sail from Crete, and have gotten this injury and loss.\nBut let a man prove himself, and so let him eat of the bread, and drink of the cup.\nTo effect this object it would be necessary to secure the vallies in which their farms are situated and seize at once the grain, cattle & swine they may have on hand, on the slightest exhibition on their part of a hostile intention and the immediate occupation of these vallies could place us in the attitude to carry this plan into effective operation.\nSo we also, when we were children, were held in bondage under the rudiments of the world:\nWe have sent therefore Judas and Silas, who themselves also shall tell you the same things by word of mouth.\nThe city was ripe with brothels.\n“If nothing happens, yes,” she said.\nGuards stood over the prisoners, who sat under a birch tree with their bound hands between their thighs and did not talk, even to one another.\nAnd he gave order to the centurion that he should be kept in charge, and should have indulgence; and not to forbid any of his friends to minister unto him.\nForthwith therefore I sent to thee; and thou hast well done that thou art come. Now therefore we are all here present in the sight of God, to hear all things that have been commanded thee of the Lord.\nA lobbyist for rice growers, a wealthy plump middle-aged lawyer from Savannah, was said to live a complicated life.\nAnd another angel came out from the temple which is in heaven, he also having a sharp sickle.\nAs it came toward us, we all took notice and listened quietly.\nand Adam was not beguiled, but the woman being beguiled hath fallen into transgression:\nFor every high priest is appointed to offer both gifts and sacrifices: wherefore it is necessary that this high priest also have somewhat to offer.\nThe multitude therefore, that stood by, and heard it, said that it had thundered: others said, An angel hath spoken to him.\n“You smell just the way you are,” remarked a lamb who had just walked in.\n“What kind of monkeyshine is this?” he growled.\n“Well, I hope you're satisfied,” sneered the rat.\nWhoa, girl! \nBut the woman fearing and trembling, knowing what had been done to her, came and fell down before him, and told him all the truth.\nand said unto him, Hearest thou what these are saying? And Jesus saith unto them, Yea: did ye never read, Out of the mouth of babes and sucklings thou hast perfected praise?\nAnd Jesus said unto them, Can the sons of the bridechamber fast, while the bridegroom is with them? as long as they have the bridegroom with them, they cannot fast.\nas it is written in the book of the words of Isaiah the prophet, The voice of one crying in the wilderness, Make ye ready the way of the Lord, Make his paths straight.\nwhich is a figure for the time present; according to which are offered both gifts and sacrifices that cannot, as touching the conscience, make the worshipper perfect,\nIn the resurrection whose wife shall she be of them? for the seven had her to wife.\nThe treaty, as drafted, contained a provision to allow the richest Indians to stay, keep all their holdings—land and houses and slaves—and become American citizens.\nAnd he saith unto me, Seal not up the words of the prophecy of this book; for the time is at hand.\nFear not, daughter of Zion: behold, thy King cometh, sitting on an ass’s colt.\nThe people of the North are very open-minded and so much more advanced than we are.\nWilbur loved his milk, and he was never happier than when Fern was warming up a bottle for him.\nAnd they say unto her, Woman, why weepest thou? She saith unto them, Because they have taken away my Lord, and I know not where they have laid him.\nBut let’s agree to make a special pact of it.\nBut evil men and impostors shall wax worse and worse, deceiving and being deceived.\nWilbur adores her.”\nA few blocks later, it was my pleasure to introduce the clerk to an entire roomful of exquisites, both young and not.\n“So do I,” said another man.\nThat good thing which was committed unto thee guard through the Holy Spirit which dwelleth in us.\nOr do we provoke the Lord to jealousy? are we stronger than he?\nThere can be no doubt that you have a most unusual pig.\nMrs. Arable fidgeted.\n“Deganiyitsv?”\nAnd if a house be divided against itself, that house will not be able to stand.\nDeath seemed to have diminished the boy.\nWhen Fern told her mother that Avery had tried to hit the Zuckermans’ spider with a stick, Mrs. Arable was so shocked that she sent Avery to bed without any supper, as punishment.\nBy the time the Arables and the Zuckermans and Lurvy returned from the grandstand, Charlotte had finished her web.\n“I'm not going to spend all my time chasing down to the dump after advertising material.”\nHe was pure white, pink around the ears and snout, and smooth as silk.\nBut what I do, that I will do, that I may cut off occasion from them that desire an occasion; that wherein they glory, they may be found even as we.\nAnd after a little while another saw him, and said, Thou also art one of them. But Peter said, Man, I am not.\nJesus said, Verily I say unto you, There is no man that hath left house, or brethren, or sisters, or mother, or father, or children, or lands, for my sake, and for the gospel’s sake,\nbut to go shod with sandals: and, said he, put not on two coats.\nAnd the second angel sounded, and as it were a great mountain burning with fire was cast into the sea: and the third part of the sea became blood;\nFor, I think, God hath set forth us the apostles last of all, as men doomed to death: for we are made a spectacle unto the world, both to angels and men.\nBut I have sent the brethren, that our glorying on your behalf may not be made void in this respect; that, even as I said, ye may be prepared:\nand saying, Thou that destroyest the temple, and buildest it in three days, save thyself: if thou art the Son of God, come down from the cross.\nAnd I think Templeton better come, too — I might need somebody to run errands and do general work.”\nHe began carrying rocks and stacking them over the boy, working first with the largest ones he could heft, making an effort to think only about their shapes and how their angles best fit together and not about their weight.\nJude, a servant of Jesus Christ, and brother of James, to them that are called, beloved in God the Father, and kept for Jesus Christ:\nAnd Joseph also went up from Galilee, out of the city of Nazareth, into Judæa, to the city of David, which is called Bethlehem, because he was of the house and family of David;\nFor though ye have ten thousand tutors in Christ, yet have ye not many fathers; for in Christ Jesus I begat you through the gospel.\nAnd he strictly charged him, and straightway sent him out,\nBy dusk, they’d have thirty or forty people walking ahead of them, carrying bundles of blankets and pots and precious worthless little objects, portable things to remind them of their former lives.\nLook for corn!\nOr know ye not that he that is joined to a harlot is one body? for, The twain, saith he, shall become one flesh.\nand Zerubbabel begat Abiud; and Abiud begat Eliakim; and Eliakim begat Azor;\nWe drank too much of Featherstone’s best wine.\nI arrived green as a barrel of June apples.\nThen my friend Nick comes up and they start talking, and we all decide we’re going to go up to Michael’s girlfriend’s room.\nAnd no man, when he hath lighted a lamp, covereth it with a vessel, or putteth it under a bed; but putteth it on a stand, that they that enter in may see the light.\nAnd behold, I come quickly. Blessed is he that keepeth the words of the prophecy of this book.\nWhen he woke up in the night, the fire was dead.\nAnd at the ninth hour Jesus cried with a loud voice, Eloi, Eloi, lama sabachthani? which is, being interpreted, My God, my God, why hast thou forsaken me?\nThe Cherokees dug a deep pit across the trail and covered it with branches.\nA tiny spider crawled from the sac.\n“Will you just pick out a nice sensible name for me — something not too long, not too fancy, and not too dumb?”\nand some save, snatching them out of the fire; and on some have mercy with fear; hating even the garment spotted by the flesh.\nHear another parable: There was a man that was a householder, who planted a vineyard, and set a hedge about it, and digged a winepress in it, and built a tower, and let it out to husbandmen, and went into another country.\nAnd they took hold of him, and brought him unto the Areopagus, saying, May we know what this new teaching is, which is spoken by thee?\nThanks be to God for his unspeakable gift. \nAnd Pilate spake unto them again, desiring to release Jesus;\nThe sky was overcast with such thick low clouds that the sun did not even make a bright spot through them, and there was no way to gauge the progress of the day.\nWilbur blushed.\nNothing is absolutely the limit of nothingness. It’s the lowest you can go. It’s the end of the line.\nYe husbands, in like manner, dwell with your wives according to knowledge, giving honor unto the woman, as unto the weaker vessel, as being also joint-heirs of the grace of life; to the end that your prayers be not hindered.\n“It’s my idio-idio-idiosyncrasy, replied the gander.\nAnd suddenly looking round about, they saw no one any more, save Jesus only with themselves.\nPilate saith unto them, What then shall I do unto Jesus who is called Christ? They all say, Let him be crucified.\nAnd as ye would that men should do to you, do ye also to them likewise.\nI write unto you, my little children, because your sins are forgiven you for his name’s sake.\nfor they said, Not during the feast, lest haply there shall be a tumult of the people.\nFor he that hath, to him shall be given: and he that hath not, from him shall be taken away even that which he hath.\nWell, fuck all, the Irish boy said.\nSo shall it be in the end of the world: the angels shall come forth, and sever the wicked from among the righteous,\nNow the Lord of peace himself give you peace at all times in all ways. The Lord be with you all.\nWho is weak, and I am not weak? who is caused to stumble, and I burn not?\nIt allowed a fine appreciation of their breathing.\nAnd why even of yourselves judge ye not what is right?\nThe old senators, most of them fat as beeves, rolled up in their carriages just as soon as the sun went down, and then in very short order they rolled home to bed.\nSome for making tea.\ntill we all attain unto the unity of the faith, and of the knowledge of the Son of God, unto a fullgrown man, unto the measure of the stature of the fulness of Christ:\nAnd what are salutations?”\nAnd we have sent together with him the brother whose praise in the gospel is spread through all the churches;\ntill there arose another king over Egypt, who knew not Joseph.\nBut now ye seek to kill me, a man that hath told you the truth, which I heard from God: this did not Abraham.\nand put on the new man, that after God hath been created in righteousness and holiness of truth.\n“It was that rotten goose egg that saved Charlotte’s life,” said Wilbur.\nAnd he said, The God of our fathers hath appointed thee to know his will, and to see the Righteous One, and to hear a voice from his mouth.\nTempleton’s eyes were blazing.\nthrough whom also we have had our access by faith into this grace wherein we stand; and we rejoice in hope of the glory of God.\nFor they durst not any more ask him any question.\nAnd he said unto him, Thou hast answered right: this do, and thou shalt live.\nIt is like unto a grain of mustard seed, which a man took, and cast into his own garden; and it grew, and became a tree; and the birds of the heaven lodged in the branches thereof.\nsave thyself, and come down from the cross.\nhowbeit for this cause I obtained mercy, that in me as chief might Jesus Christ show forth all his longsuffering, for an ensample of them that should thereafter believe on him unto eternal life.\nHe started the motor.\nFar into the night, while the other creatures slept, Charlotte worked on her web.\nUnderstand?”\nThe rat looked disgusted.\nAnd those servants went out into the highways, and gathered together all as many as they found, both bad and good: and the wedding was filled with guests.\nBut take heed to yourselves, lest haply your hearts be overcharged with surfeiting, and drunkenness, and cares of this life, and that day come on you suddenly as a snare:\nFirst she ripped out a few of the orb lines near the center.\nAnd they forgot to take bread; and they had not in the boat with them more than one loaf.\n“Our pig is completely out of the ordinary.”\nas he saith also in another place, Thou art a priest for ever After the order of Melchizedek.\n“I knew you wouldn’t forsake me just when I need you most.”\nMrs. Zuckerman screamed at Lurvy.\nToo many people in too little space.\nand he from within shall answer and say, Trouble me not: the door is now shut, and my children are with me in bed; I cannot rise and give thee?\n“Bee-bee-bee!”\nBut other of the apostles saw I none, save James the Lord’s brother.\nShe was staring at Fern with a worried expression on her face.\nI’d been lucky enough to shoot four that flushed up out of an old weedy cornfield.\nfor God is not a God of confusion, but of peace. As in all the churches of the saints,\nIt was not as if he thought about it.\nThe land is unimaginably rough, and in the laurel thickets five hundred men could hide from a thousand in an area of exceedingly small scope and we have found nothing.\nfor they loved the glory that is of men more than the glory that is of God.\nOne of the servants of the high priest, being a kinsman of him whose ear Peter cut off, saith, Did not I see thee in the garden with him?\nAnd when he heard that it was Jesus the Nazarene, he began to cry out, and say, Jesus, thou son of David, have mercy on me.\nYes, my father says, but not as you might think.\nNo! No! You cannot stay with me.\nFor to this end also did I write, that I might know the proof of you, whether ye are obedient in all things.\nXVIII: The Cool of the Evening  \nWhere I’d like to be right now is Charleston, walking down Dock Street, the Charleston boy said.\n“You shall not die,” said Charlotte, briskly.\nThe grace of the Lord Jesus Christ, and the love of God, and the communion of the Holy Spirit, be with you all.\nOf the men therefore that have companied with us all the time that the Lord Jesus went in and went out among us,\nAnd they cried out again, Crucify him.\nThen they stared at the tag again.\nEven the song of the crickets did not make Wilbur too sad.\nAnd at the few places that had wells rather than springs, some wag among them would drop his trousers around his ankles and take a shit down the hole to spark general hilarity.\nA whole country shed of its people in the course of a summer.\nsaying, Go thou unto this people, and say, By hearing ye shall hear, and shall in no wise understand; And seeing ye shall see, and shall in no wise perceive:\nThe children sat in the shade, under the blanket, and felt better. After lunch, they stretched out and fell asleep.\nAnd when he is come, he findeth it swept and garnished.\nAnd they answered Jesus and say, We know not. And Jesus saith unto them, Neither tell I you by what authority I do these things. \nDandelion stems are full of milk, clover heads are loaded with nectar, the Frigidaire is full of ice-cold drinks.\nAnd I rejoice at the coming of Stephanas and Fortunatus and Achaicus: for that which was lacking on your part they supplied.\nThe other two men were smoking with great concentration and looking at the fire.\nEven so, I say unto you, there is joy in the presence of the angels of God over one sinner that repenteth.\nThey paid him little attention as he stroked their backs, only arching slightly against his palm like house cats.\nAnd when he was come, straightway he came to him, and saith, Rabbi; and kissed him.\nThe grace of the Lord Jesus Christ be with you.\nAnd when they had mocked him, they took off from him the robe, and put on him his garments, and led him away to crucify him.\nIn all things I gave you an example, that so laboring ye ought to help the weak, and to remember the words of the Lord Jesus, that he himself said, It is more blessed to give than to receive.\nFor who hath known the mind of the Lord? or who hath been his counsellor?\nFor ye have need of patience, that, having done the will of God, ye may receive the promise.\nI pulled my hat low, and I had a thick coat.\nMrs. Zuckerman, at work in the kitchen, heard the crickets, and a sadness came over her, too.\nAn hour later I stood on the gallery, Waverley with reins looped over a rail behind me.\nAll he could do was squat under a stand of rhododendron with his blanket over his head and wait.\nWhen Mrs. Zuckerman got through and rubbed him dry, he was the cleanest, prettiest pig you ever saw.\nThere were eight eggs.\n“May I go out to my trough and see if I left any of my supper?\nAnd they asked him, What then? Art thou Elijah? And he saith, I am not. Art thou the prophet? And he answered, No.\nI said.\nNicodemus saith unto them (he that came to him before, being one of them),\nBy the way, does the pig have a name?”\n(For the Pharisees, and all the Jews, except they wash their hands diligently, eat not, holding the tradition of the elders;\nMaybe you’ll live forever—who knows?\nChew your food thoroughly and eat every bit of it, except you must leave just enough for Templeton.\nWhen therefore it was evening, on that day, the first day of the week, and when the doors were shut where the disciples were, for fear of the Jews, Jesus came and stood in the midst, and saith unto them, Peace be unto you.\n“You have had your fun raising a baby pig, but Wilbur is not a baby any longer and he has got to be sold.”\nI know thy works, and thy love and faith and ministry and patience, and that thy last works are more than the first.\nIf any man is for captivity, into captivity he goeth: if any man shall kill with the sword, with the sword must he be killed. Here is the patience and the faith of the saints.\nAnd he took unto him the twelve, and said unto them, Behold, we go up to Jerusalem, and all the things that are written through the prophets shall be accomplished unto the Son of man.\nAt night when the sky was blanked with clouds and there were voices coming from the creek noise and every odd sound out in the woods could mean death, they slept poorly.\nYou are mistaken, I am not a fish .. I am a crustacean.\nwho shall give account to him that is ready to judge the living and the dead.\nHe looked forlorn out there in the woods in the dark.\nSo while the children swam and played and splashed water at each other, Wilbur amused himself in the mud along the edge of the brook, where it was warm and moist and delightfully sticky and oozy.\nAnd they had a few small fishes: and having blessed them, he commanded to set these also before them.\nTempleton kept out of sight.\nAnd when he had thus spoken, he went on before, going up to Jerusalem.\n“Yes,” came the answer.\nCan any man forbid the water, that these should not be baptized, who have received the Holy Spirit as well as we?\nDead in the dirt, the most beautiful being ever created.\nAnd into whatsoever house ye enter, there abide, and thence depart.\n“We have no time to lose!” shouted Mr. Zuckerman.\n“Maybe they do talk,” he said.\nThen he raced in circles, kicking manure into the air.\n“Who’s going to save me?”\nand say, If we had been in the days of our fathers, we should not have been partakers with them in the blood of the prophets.\nFor to one is given through the Spirit the word of wisdom; and to another the word of knowledge, according to the same Spirit:\n“All right,” said Wilbur.\nBut if that evil servant shall say in his heart, My lord tarrieth;\nWilbur gazed up lovingly into their faces.\nThen Jesus answered and said unto her, O woman, great is thy faith: be it done unto thee even as thou wilt. And her daughter was healed from that hour.\nAnd calling to him each one of his lord’s debtors, he said to the first, How much owest thou unto my lord?\nAnd what concord hath Christ with Belial? or what portion hath a believer with an unbeliever?\nAnd summoning all his strength, he threw himself into the air, headfirst.\nAnd we exhort you, brethren, admonish the disorderly, encourage the fainthearted, support the weak, be longsuffering toward all.\ndoing nothing through faction or through vainglory, but in lowliness of mind each counting other better than himself;\nso that we ourselves glory in you in the churches of God for your patience and faith in all your persecutions and in the afflictions which ye endure;\nBeloved, thou doest a faithful work in whatsoever thou doest toward them that are brethren and strangers withal;\nHim who knew no sin he made to be sin on our behalf; that we might become the righteousness of God in him.\nNor can such a group turn themselves into bush fighters and bandits.\nI wish I could see you, Wilbur, as clearly as you can see me.”\nAnd in Hades he lifted up his eyes, being in torments, and seeth Abraham afar off, and Lazarus in his bosom.\nAnd he confessed, and denied not; and he confessed, I am not the Christ.\nWhy can’t he go to sleep, like any decent animal?”\nIn the fields, around the house, in the barn, in the woods, in the swamp — everywhere love and songs and nests and eggs.\nAnd I fell unto the ground, and heard a voice saying unto me, Saul, Saul, why persecutest thou me?\nas it is written, He that gathered much had nothing over; and he that gathered little had no lack.\nAnd when Peter was come up to Jerusalem, they that were of the circumcision contended with him,\nI knew all about them, though, for they were somewhat famous.\nand did all eat the same spiritual food;\nFor each man shall bear his own burden.\nThe song sparrow will return and sing, the frogs will awake, the warm wind will blow again.\nAnother parable set he before them, saying, The kingdom of heaven is likened unto a man that sowed good seed in his field:\nAnd Jesus answered and spake again in parables unto them, saying,\nThe Beast\nwho was with the proconsul, Sergius Paulus, a man of understanding. The same called unto him Barnabas and Saul, and sought to hear the word of God.\nThe stones were cold as blocks of ice, and his hands were soon numb and his fingertips were bleeding from small cuts.\nAt last one little spider took time enough to stop and talk to Wilbur before making its balloon.\n“Well, hello there!” he said, smiling all over.\nHe wore a red bandana, blue calico shirt, brown linen britches, and greasy deerhide moccasins without beading or other ornament.\nThe goose cheered for Wilbur. Wilbur dodged between Lurvy’s legs.\nAnd when it was day, the Jews banded together, and bound themselves under a curse, saying that they would neither eat nor drink till they had killed Paul.\nShe runneth therefore, and cometh to Simon Peter, and to the other disciple whom Jesus loved, and saith unto them, They have taken away the Lord out of the tomb, and we know not where they have laid him.\nNothing can harm you now.\nsaying unto Aaron, Make us gods that shall go before us: for as for this Moses, who led us forth out of the land of Egypt, we know not what is become of him.\nCass again looked at me silently for a long uncomfortable span of seconds. He finally said, Let me be clear, then.\nAnd the chief priests and the scribes sought how they might put him to death; for they feared the people.\n“What do you mean you won't see your children!\nWe are fools for Christ’s sake, but ye are wise in Christ; we are weak, but ye are strong; ye have glory, but we have dishonor.\nFirst, I thank my God through Jesus Christ for you all, that your faith is proclaimed throughout the whole world.\nThis testimony is true. For which cause reprove them sharply, that they may be sound in the faith,\n“Avery, stop it!” cried his mother.\nwhich is an earnest of our inheritance, unto the redemption of God’s own possession, unto the praise of his glory.\nFor judgment is without mercy to him that hath showed no mercy: mercy glorieth against judgment.\nThey spent most of the days sleeping under the brush arbors or sitting wordless by the fire.\nA dozen times during the night Wilbur woke and stared into the blackness, listening to the sounds and trying to figure out what time it was.\nLook at him, ladies and gentlemen!\nThe Jews therefore, because it was the Preparation, that the bodies should not remain on the cross upon the sabbath (for the day of that sabbath was a high day), asked of Pilate that their legs might be broken, and that they might be taken away.\nbut he is a Jew who is one inwardly; and circumcision is that of the heart, in the spirit not in the letter; whose praise is not of men, but of God. \nBut Jesus answering said unto him, Suffer it now: for thus it becometh us to fulfil all righteousness. Then he suffereth him.\nwho for my life laid down their own necks; unto whom not only I give thanks, but also all the churches of the Gentiles:\nFor the flesh lusteth against the Spirit, and the Spirit against the flesh; for these are contrary the one to the other; that ye may not do the things that ye would.\nHe ate three big meals a day.\nYou go up and find Lichen and get his people down with us to help.\n Then, a dark cloud passed over the moon.\nBut to the rest say I, not the Lord: If any brother hath an unbelieving wife, and she is content to dwell with him, let him not leave her.\nPut it on! Put it on! said Rabbit.\nNot according to the covenant that I made with their fathers In the day that I took them by the hand to lead them forth out of the land of Egypt; For they continued not in my covenant, And I regarded them not, saith the Lord.\nUnder the canopy, as dense as a canvas tent, there would be nothing to eat whatsoever other than two lumpy pocketfuls of chestnuts and hickory nuts he had picked up the day before.\nAnd this is the boldness which we have toward him, that, if we ask anything according to his will, he heareth us:\nThe God that made the world and all things therein, he, being Lord of heaven and earth, dwelleth not in temples made with hands;\nIn preparation, I bought Sketches and Eccentricities of Col. David Crockett and went to a coffeehouse and settled in to read.\nGive to him that asketh thee, and from him that would borrow of thee turn not thou away.\nAnd Jesus said, Who is it that touched me? And when all denied, Peter said, and they that were with him, Master, the multitudes press thee and crush thee.\nAnd he answered and said, I tell you that, if these shall hold their peace, the stones will cry out.\nAnd the Lord said, If ye had faith as a grain of mustard seed, ye would say unto this sycamine tree, Be thou rooted up, and be thou planted in the sea; and it would obey you.\nfor even in Thessalonica ye sent once and again unto my need.\nThey looked much more alike that we did in regard to the Creeks or anybody else you could name.\nAnd he said unto them, But now, he that hath a purse, let him take it, and likewise a wallet; and he that hath none, let him sell his cloak, and buy a sword.\nWhat were we talking about, Wilbur, when we were so rudely interrupted?”\nPassersby stopped to watch.\nAny speculation as to the correspondent?\nSometimes a solitary hunter would see  Spearfinger in her proper form going through the woods singing to herself... “liver I eat su sa sai”\nClose your eyes and go to sleep!”\ncan a fig tree, my brethren, yield olives, or a vine figs? neither can salt water yield sweet.\nFor ye know what charge we gave you through the Lord Jesus.\nI don’t think it’s normal.\nAnd when Jesus heard it, he saith unto them, They that are whole have no need of a physician, but they that are sick: I came not to call the righteous, but sinners.\nThe Creeks had fought with Jackson and lost half their people.\n“I’ll drop down and have a closer look,” Charlotte said.\nAnd he causeth all, the small and the great, and the rich and the poor, and the free and the bond, that there be given them a mark on their right hand, or upon their forehead;\nHe looked up, and he did not seem happy to see me.\nHe was startled by the voice.\nA thick slice of the Ripe Corn Moon stood framed above the western horizon.\nBut as God is faithful, our word toward you is not yea and nay.\nWherefore we henceforth know no man after the flesh: even though we have known Christ after the flesh, yet now we know him so no more.\nWhen she waded into the brook, Wilbur waded in with her. He found the water quite cold — too cold for his liking.\nAnd ye yourselves also know, ye Philippians, that in the beginning of the gospel, when I departed from Macedonia, no church had fellowship with me in the matter of giving and receiving but ye only;\nThe sound had crossed the water and climbed up the ridge like a rushing wind, but still in arrears of what sight had already told.\nHe felt the warm milk inside his stomach.\nFor whosoever shall keep the whole law, and yet stumble in one point, he is become guilty of all.\n“Just call me Uncle.”\nSoon Lurvy appeared with slops for breakfast.\nCharlotte decided to use her dry thread for writing the new message.\nHis only baggage was a pair of bulging saddlebags filled with dress clothing, all the way down to gloves scented with frangipani for the riverboat salons and a great deal of cash with which he planned to begin life anew.\n“I promise. I cross my heart.”\nAnd they all with one consent began to make excuse. The first said unto him, I have bought a field, and I must needs go out and see it; I pray thee have me excused.\nAnd he said unto him, Thy brother is come; and thy father hath killed the fatted calf, because he hath received him safe and sound.\nFor as the sufferings of Christ abound unto us, even so our comfort also aboundeth through Christ.\nAll things whatsoever the Father hath are mine: therefore said I, that he taketh of mine, and shall declare it unto you.\nAfter a while my grandmother spoke up and said, It's telling us that we will hear some news.\nIf any man cometh unto me, and hateth not his own father, and mother, and wife, and children, and brethren, and sisters, yea, and his own life also, he cannot be my disciple.\nTogether they walked to the pigpen.\nBut that the dead are raised, even Moses showed, in the place concerning the Bush, when he calleth the Lord the God of Abraham, and the God of Isaac, and the God of Jacob.\nAnd as they went on the way, a certain man said unto him, I will follow thee whithersoever thou goest.\nWilbur had planned to go out, this day, and dig a new hole in his yard.\n“I wouldn’t want that to happen.\nAnd he said to the multitudes also, When ye see a cloud rising in the west, straightway ye say, There cometh a shower; and so it cometh to pass.\nHowbeit if ye fulfil the royal law, according to the scripture, Thou shalt love thy neighbor as thyself, ye do well:\nAnd when they had accomplished all things that were according to the law of the Lord, they returned into Galilee, to their own city Nazareth.\nYea, a man will say, Thou hast faith, and I have works: show me thy faith apart from thy works, and I by my works will show thee my faith.\nAnd Jesus answered and said unto them, Take heed that no man lead you astray.\nThe straw ﬂuttered down like confetti into Fern’s hair.\n“He-aa-aa!” answered the lambs all together.\nfor in your eating each one taketh before other his own supper; and one is hungry, and another is drunken.\nFor I say, through the grace that was given me, to every man that is among you, not to think of himself more highly than he ought to think; but so to think as to think soberly, according as God hath dealt to each man a measure of faith.\nFor out of much affliction and anguish of heart I wrote unto you with many tears; not that ye should be made sorry, but that ye might know the love which I have more abundantly unto you.\nBut the hour cometh, and now is, when the true worshippers shall worship the Father in spirit and truth: for such doth the Father seek to be his worshippers.\nIf I do not the works of my Father, believe me not.\nFor no prophecy ever came by the will of man: but men spake from God, being moved by the Holy Spirit. \nThen he took it out and pulled again at it and just kept it in his hand.\nand believers were the more added to the Lord, multitudes both of men and women:\nAnd I say unto you, Ask, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you.\nand he was transfigured before them; and his face did shine as the sun, and his garments became white as the light.\nWouldest thou kill me, as thou killedst the Egyptian yesterday?\nBy faith Rahab the harlot perished not with them that were disobedient, having received the spies with peace.\nwho in time past were no people, but now are the people of God: who had not obtained mercy, but now have obtained mercy.\nThis is the bread which came down out of heaven: not as the fathers ate, and died; he that eateth this bread shall live for ever.\nMany therefore of his disciples, when they heard this, said, This is a hard saying; who can hear it?\nAnd Jesus answereth them, saying, The hour is come, that the Son of man should be glorified.\nsince he longed after you all, and was sore troubled, because ye had heard that he was sick:\nBut when Paul had gathered a bundle of sticks and laid them on the fire, a viper came out by reason of the heat, and fastened on his hand.\nHe arrived near where the trap lay.\nAs he walked, he scuffed his feet in the deep leaves just for the companionship of the rustling sound.\nThe way the cook fries breakfast, it’s hard enough to take sunrise as it is.\nAnd he said unto her, Daughter, thy faith hath made thee whole; go in peace, and be whole of thy plague.\nAnd he called ten servants of his, and gave them ten pounds, and said unto them, Trade ye herewith till I come.\nAnd Jacob went down into Egypt; and he died, himself and our fathers;\n“Here is forty cents.\nI went to the White House with a letter of introduction from Calhoun, who warned that it might have more the opposite effect since a rift had developed between him and Jackson after they won the election of ’28 and Calhoun had become Jackson’s vice president and then resigned in a quarrel over the issue of nullification, there being no stronger supporter of states’ rights than Calhoun.\nIn a little while we heard it right outside, and as it went around the house it was meowing. It circled the house and then went back the way it came, still meowing as it went, until the meows faded in the distance.\nHe dreamt that Wilbur had grown until he was one hundred and sixteen feet long and ninety-two feet high and that he had won all the prizes at the Fair and was covered with blue ribbons and even had a blue ribbon tied to the end of his tail.\nAt night, sheltered deep in a thicket, Charley built a small fire and slept warm.\n“He’s up!\nand to love him with all the heart, and with all the understanding, and with all the strength, and to love his neighbor as himself, is much more than all whole burnt-offerings and sacrifices.\nNow he that establisheth us with you in Christ, and anointed us, is God;\nShe sailed into the air, let out a dragline, and dropped gently to the ground.\nWedgwood dinnerware and Murano crystal cocooned in yellow straw.\n“Oh, sure,” said the spider.\nThen Wilbur’s voice:  “What are you doing up there, Charlotte?”\nSo I did my best, which meant showing up to listen night after night and providing a bottle of Macallan’s no more than once a week, for to do so more often would look needy and also wreak entire havoc on my wallet.\nand standing behind at his feet, weeping, she began to wet his feet with her tears, and wiped them with the hair of her head, and kissed his feet, and anointed them with the ointment.\nEvery one of them delivered to justice.\nCharley’s bunch mostly took their food to the brush arbors to eat, and maybe it was just the food but they seemed unaccountably happy.\nAnd when he had saluted them, he rehearsed one by one the things which God had wrought among the Gentiles through his ministry.\nAnd Jesus answering said unto him, It is said, Thou shalt not make trial of the Lord thy God.\nespecially because thou art expert in all customs and questions which are among the Jews: wherefore I beseech thee to hear me patiently.\nShe was in a class by herself.\nHe pushed and nudged till he succeeded in rolling it to his lair under the trough.\nAnd again he said, Whereunto shall I liken the kingdom of God?\nAnd I saw the dead, the great and the small, standing before the throne; and books were opened: and another book was opened, which is the book of life: and the dead were judged out of the things which were written in the books, according to their works.\nBut if any man seemeth to be contentious, we have no such custom, neither the churches of God.\n“Here!” said the pig.\nNo, you are mistaken.\nSo hast thou also some that hold the teaching of the Nicolaitans in like manner.\nAnd Philip went down to the city of Samaria, and proclaimed unto them the Christ.\n“Fern spends entirely too much time in the Zuckermans’ barn.\nJesus saith to her, Touch me not; for I am not yet ascended unto the Father: but go unto my brethren, and say to them, I ascend unto my Father and your Father, and my God and your God.\nBut he that did his neighbor wrong thrust him away, saying, Who made thee a ruler and a judge over us?\nOwe no man anything, save to love one another: for he that loveth his neighbor hath fulfilled the law.\nThere were together Simon Peter, and Thomas called Didymus, and Nathanael of Cana in Galilee, and the sons of Zebedee, and two other of his disciples.\nA miracle has happened and a sign has occurred here on earth, right on our farm, and we have no ordinary pig.”\nWhat then if ye should behold the Son of man ascending where he was before?\nHusbands, love your wives, even as Christ also loved the church, and gave himself up for it;\nI decided to exercise a certain amount of sympathy for Smith’s nervousness and said, A day of cooking and eating and resting by the fire wouldn’t hurt any of us.\nAfter this he went down to Capernaum, he, and his mother, and his brethren, and his disciples; and there they abode not many days.\nFor I see that thou art in the gall of bitterness and in the bond of iniquity.\n“What a cargo!” she said.\nBut Jesus said unto them, Ye know not what ye ask. Are ye able to drink the cup that I drink? or to be baptized with the baptism that I am baptized with?\nNow as they went on their way, he entered into a certain village: and a certain woman named Martha received him into her house.\nEven so reckon ye also yourselves to be dead unto sin, but alive unto God in Christ Jesus.\n“He's as smooth as they come.\nAnd he cast down the pieces of silver into the sanctuary, and departed; and he went away and hanged himself.\nBut this he said, signifying by what manner of death he should die.\nAnd when they shall have finished their testimony, the beast that cometh up out of the abyss shall make war with them, and overcome them, and kill them.\nAnd he that was sown upon the good ground, this is he that heareth the word, and understandeth it; who verily beareth fruit, and bringeth forth, some a hundredfold, some sixty, some thirty.\nBut when Cephas came to Antioch, I resisted him to the face, because he stood condemned.\nAnd when he was come out of the boat, straightway there met him out of the tombs a man with an unclean spirit,\nWhich of the prophets did not your fathers persecute? and they killed them that showed before of the coming of the Righteous One; of whom ye have now become betrayers and murderers;\nWilbur jumped and ran.\nFor my flesh is meat indeed, and my blood is drink indeed.\nIf I can fool a bug,” thought Charlotte, “I can surely fool a man. People are not as smart as bugs.”\nYe worship that which ye know not: we worship that which we know; for salvation is from the Jews.\n(for the fruit of the light is in all goodness and righteousness and truth),\nNow after a long time the lord of those servants cometh, and maketh a reckoning with them.\nFern stood at the kitchen sink drying the breakfast dishes as her mother washed them.\nAnd Jesus said unto his disciples, Verily I say unto you, It is hard for a rich man to enter into the kingdom of heaven.\nFor circumcision indeed profiteth, if thou be a doer of the law: but if thou be a transgressor of the law, thy circumcision is become uncircumcision.\nwhom the heaven must receive until the times of restoration of all things, whereof God spake by the mouth of his holy prophets that have been from of old.\nWoe unto thee, Chorazin! woe unto thee, Bethsaida! for if the mighty works had been done in Tyre and Sidon which were done in you, they would have repented long ago in sackcloth and ashes.\nand the commandment, which was unto life, this I found to be unto death:\nWilbur obeyed.\nBe of the same mind one toward another. Set not your mind on high things, but condescend to things that are lowly. Be not wise in your own conceits.\nThe trees were nearly empty.\nWilbur sighed.\nFor ye have heard of my manner of life in time past in the Jews’ religion, how that beyond measure I persecuted the church of God, and made havoc of it:\nAt first we thought it was just a cow or some other animal.\nThank you.”\nsaying, We give thee thanks, O Lord God, the Almighty, who art and who wast; because thou hast taken thy great power, and didst reign.\nAvenge not yourselves, beloved, but give place unto the wrath of God: for it is written, Vengeance belongeth unto me; I will recompense, saith the Lord.\nHomer has some sheep, hasn’t he?”\n“Thank you very much,” said Charlotte.\nThe soldiers fell on the land like calamity.\nFor the law appointeth men high priests, having infirmity; but the word of the oath, which was after the law, appointeth a Son, perfected for evermore. \nAt that season Herod the tetrarch heard the report concerning Jesus,\nCharley’s blanket and clothes became heavy and sodden.\nnor yet through the blood of goats and calves, but through his own blood, entered in once for all into the holy place, having obtained eternal redemption.\nthat no man be moved by these afflictions; for yourselves know that hereunto we are appointed.\nHe even bought a ticket for her, so it didn’t cost her anything.\nLet no man therefore judge you in meat, or in drink, or in respect of a feast day or a new moon or a sabbath day:\nNow faith is assurance of things hoped for, a conviction of things not seen.\nI am the good shepherd: the good shepherd layeth down his life for the sheep.\nThen she carried the line down, so that she had a double line instead of a single line.\nAnd they brought it. And he saith unto them, Whose is this image and superscription? And they said unto him, Cæsar’s.\nWe are all mad when we are twenty.\nAnd men were scorched with great heat: and they blasphemed the name of God who hath the power over these plagues; and they repented not to give him glory.\nIt was a trap.\nAnd with these sayings scarce restrained they the multitudes from doing sacrifice unto them.\nAnd why not?\nMany also of them that had believed came, confessing, and declaring their deeds.\nAs time went on, and the months and years came and went, he was never without friends.\nFor I verily, being absent in body but present in spirit, have already as though I were present judged him that hath so wrought this thing,\nLittlefish, swim on.\nHe's some pig.”\n“Charlotte is very ill.\nLittlefish was kind of afraid, but swam up to it and said, Hello, I'm called Littlefish and I've never seen a fish like you.\nAnd punishing them oftentimes in all the synagogues, I strove to make them blaspheme; and being exceedingly mad against them, I persecuted them even unto foreign cities.\nFor ye have the poor always with you, and whensoever ye will ye can do them good: but me ye have not always.\nand if it be meet for me to go also, they shall go with me.\nAfterward, the disappeared deer and elk and buffalo would return from wherever they had gone, and the people could go back to living like they used to, all the beauty and blood of the old ways restored to them.\nthat ye also be in subjection unto such, and to every one that helpeth in the work and laboreth.\nReceive him therefore in the Lord with all joy; and hold such in honor:\nThe men of Nineveh shall stand up in the judgment with this generation, and shall condemn it: for they repented at the preaching of Jonah; and behold, a greater than Jonah is here.\n“How many?” asked Mr. Arable.\nBut they cried out all together, saying, Away with this man, and release unto us Barabbas:—\nThen Templeton bared his long ugly teeth and began snipping the threads that fastened the sac to the ceiling.\nThe high priest therefore asked Jesus of his disciples, and of his teaching.\nVerily, verily, I say unto you, He that receiveth whomsoever I send receiveth me; and he that receiveth me receiveth him that sent me.\nthis man went to Pilate, and asked for the body of Jesus. Then Pilate commanded it to be given up.\nFor we know that the law is spiritual: but I am carnal, sold under sin.\nNancy told the men to go on, Charley and Lowan and George and Jake.\nShe would say to them, “Come, little girl, come to your granny and let me comb your hair.”\nAnd when he was come forth upon the land, there met him a certain man out of the city, who had demons; and for a long time he had worn no clothes, and abode not in any house, but in the tombs.\nAnd the law came in besides, that the trespass might abound; but where sin abounded, grace did abound more exceedingly:\nCured ham, lard, salted butter, white cornmeal, dried beans, grits, dried apples and peaches, porridge oats, dark sugar, cinnamon, black tea, green coffee beans, and a small hand mill to grind them.\nThey are not of the world, even as I am not of the world.\nThen shall they deliver you up unto tribulation, and shall kill you: and ye shall be hated of all the nations for my name’s sake.\nO death, where is thy victory? O death, where is thy sting?\nFor this corruptible must put on incorruption, and this mortal must put on immortality.\nAnd when the multitude saw what Paul had done, they lifted up their voice, saying in the speech of Lycaonia, The gods are come down to us in the likeness of men.\nI heard Canada.\nAnd his disciples said unto him, Thou seest the multitude thronging thee, and sayest thou, Who touched me?\nBut I've never heard of anyone’s heart breaking on my account.\nthat Christ may dwell in your hearts through faith; to the end that ye, being rooted and grounded in love,\nAnd the multitude rebuked them, that they should hold their peace: but they cried out the more, saying, Lord, have mercy on us, thou son of David.\nNear a river, Rabbit and Squirrel were talkng.\nAnd all that heard him were amazed, and said, Is not this he that in Jerusalem made havoc of them that called on this name? and he had come hither for this intent, that he might bring them bound before the chief priests.\nlest again when I come my God should humble me before you, and I should mourn for many of them that have sinned heretofore, and repented not of the uncleanness and fornication and lasciviousness which they committed. \nIt is like unto leaven, which a woman took and hid in three measures of meal, till it was all leavened.\nLurvy missed Wilbur and grabbed the spaniel instead.\nand when they had fulfilled the days, as they were returning, the boy Jesus tarried behind in Jerusalem; and his parents knew it not;\nHe stopped at midday and struck up a small fire from pine shavings and oak sticks.\nIn that hour said Jesus to the multitudes, Are ye come out as against a robber with swords and staves to seize me? I sat daily in the temple teaching, and ye took me not.\nThe American Government would pay them for what they lost after they reached the West.\nAs was the fact that the killings took place outside the Nation and on our territory.\nNow when he was in Jerusalem at the passover, during the feast, many believed on his name, beholding his signs which he did.\nbut now do ye also put them all away: anger, wrath, malice, railing, shameful speaking out of your mouth:\nwhich also they did, sending it to the elders by the hand of Barnabas and Saul. \nAnd thou, Capernaum, shalt thou be exalted unto heaven? thou shalt go down unto Hades: for if the mighty works had been done in Sodom which were done in thee, it would have remained until this day.\nThe colonel waited awhile, entranced by the smoke rising from his pipe.\nCharley stood up, and his knees made the firewood sound again.\n“Go down through the orchard, root up the sod!\nIII: Escape \nI say the truth in Christ, I lie not, my conscience bearing witness with me in the Holy Spirit,\nAnd her parents were amazed: but he charged them to tell no man what had been done. \nAll the other animals lifted their heads and stared at him.\nProfessing themselves to be wise, they became fools,\nAnd as they were seeking to kill him, tidings came up to the chief captain of the band, that all Jerusalem was in confusion.\nHis timing was impeccable.\nand desiring to be fed with the crumbs that fell from the rich man’s table; yea, even the dogs came and licked his sores.\nAnd which of you by being anxious can add one cubit unto the measure of his life?\nAnd he called them unto him, and said unto them in parables, How can Satan cast out Satan?\nAnd Jesus, having found a young ass, sat thereon; as it is written,\nHe would bark, run after whatever it was, and then run back as if he wanted someone to follow him.\nThey live in the water.\nAnd when the woman saw that she was not hid, she came trembling, and falling down before him declared in the presence of all the people for what cause she touched him, and how she was healed immediately.\nproving what is well-pleasing unto the Lord;\nBut if I do them, though ye believe not me, believe the works: that ye may know and understand that the Father is in me, and I in the Father.\nFinally, brethren, whatsoever things are true, whatsoever things are honorable, whatsoever things are just, whatsoever things are pure, whatsoever things are lovely, whatsoever things are of good report; if there be any virtue, and if there be any praise, think on these things.\nBe not deceived; God is not mocked: for whatsoever a man soweth, that shall he also reap.\n(for we walk by faith, not by sight);\nFor it is evident that our Lord hath sprung out of Judah; as to which tribe Moses spake nothing concerning priests.\nCharley touched Axe on the shoulder with two fingers and then stepped back.\nHe woke up under three quarters of the Hunting Moon with frost silvering the grass and the cuts of the creek drainages through the mountains etched out below him in blue light.\nAnd he laid his hands on them, and departed thence.\nPink blossoms covered it from tip to top.\nWe jostled and regained balance and went to stand together by the door.\nwhom I found to be accused about questions of their law, but to have nothing laid to his charge worthy of death or of bonds.\nAnd as they went out, they besought that these words might be spoken to them the next sabbath.\nThis picture has been made much bigger so you can see the bacteria.\nAfter these things he departed from Athens, and came to Corinth.\nThey took turns for an hour.\nI thank my God upon all my remembrance of you,\nAnd when he had considered the thing, he came to the house of Mary the mother of John whose surname was Mark; where many were gathered together and were praying.\nBut he held his peace, and answered nothing. Again the high priest asked him, and saith unto him, Art thou the Christ, the Son of the Blessed?\nAnd why beholdest thou the mote that is in thy brother’s eye, but considerest not the beam that is in thine own eye?\nAnd he closed the book, and gave it back to the attendant, and sat down: and the eyes of all in the synagogue were fastened on him.\nAnd to the angel of the church in Laodicea write: These things saith the Amen, the faithful and true witness, the beginning of the creation of God:\n“Nellie?” he suggested.\nAnd behold, they cried out, saying, What have we to do with thee, thou Son of God? art thou come hither to torment us before the time?\nAnd I said, What shall I do, Lord? And the Lord said unto me, Arise, and go into Damascus; and there it shall be told thee of all things which are appointed for thee to do.\n“It means I’m slowing up, feeling my age.\nGone two days.\nFern did not come regularly to the barn any more.\nAnd they overcame him because of the blood of the Lamb, and because of the word of their testimony; and they loved not their life even unto death.\nand shall come forth to deceive the nations which are in the four corners of the earth, Gog and Magog, to gather them together to the war: the number of whom is as the sand of the sea.\n But no one was there to hear him\nOn behalf of the governors of the Fair, I have the honor of awarding a special prize of twenty-five dollars to Mr. Zuckerman, together with a handsome bronze medal suitably engraved, in token of our appreciation of the part played by this pig—this radiant, this terrific, this humble pig—in attracting so many visitors to our great County Fair.”\n“I’m staying right here,” grumbled the rat.\n“Mildly funny,” said Charlotte.\nTherefore I say unto you, All things whatsoever ye pray and ask for, believe that ye receive them, and ye shall have them.\nand ye have not known him: but I know him; and if I should say, I know him not, I shall be like unto you, a liar: but I know him, and keep his word.\nEvery man and woman with him had a similar story.\nThe children grabbed each other by the hand and danced off in the direction of the merry-go-round, toward the wonderful music and the wonderful adventure and the wonderful excitement, into the wonderful midway where there would be no parents to guard them and guide them, and where they could be happy and free and do as they pleased.\nbecause that for the sake of the Name they went forth, taking nothing of the Gentiles.\nOne or the other, I guess.\nThey put up no fight at all.\nIf I bear witness of myself, my witness is not true.\nAll the animals trusted her, she was so quiet and friendly.\nI left him and gathered a fist of cigars and the bottle of whiskey from my packs and went to Charley’s fire.\nAnd he gave them leave. And the unclean spirits came out, and entered into the swine: and the herd rushed down the steep into the sea, in number about two thousand; and they were drowned in the sea.\nSalute Herodion my kinsman. Salute them of the household of Narcissus, that are in the Lord.\nsuffering wrong as the hire of wrong-doing; men that count it pleasure to revel in the day-time, spots and blemishes, revelling in their deceivings while they feast with you;\nAnd when he came to the house, he suffered not any man to enter in with him, save Peter, and John, and James, and the father of the maiden and her mother.\n“Who wants to live forever?” sneered the rat.\n“Well, you can’t talk  said Charlotte.\nye no longer suffer him to do aught for his father or his mother;\nMothers for miles around worried about Zuckerman’s swing.\nHe said it sadly, like the world had been unalterably diminished.\npraising God, and having favor with all the people. And the Lord added to them day by day those that were saved. \nye also, as living stones, are built up a spiritual house, to be a holy priesthood, to offer up spiritual sacrifices, acceptable to God through Jesus Christ.\nOne of the enlisted boys, an Irishman, said that other than for the hue of her skin the old woman looked much like his last sight of his grandmother when he was a boy.\nThomas answered and said unto him, My Lord and my God.\nFor ye are our glory and our joy. \nThe sower soweth the word.\nwho shall also confirm you unto the end, that ye be unreproveable in the day of our Lord Jesus Christ.\nBut be not ye called Rabbi: for one is your teacher, and all ye are brethren.\n“I can see that,” replied Wilbur.\nriseth from supper, and layeth aside his garments; and he took a towel, and girded himself.\nsaying, Hurt not the earth, neither the sea, nor the trees, till we shall have sealed the servants of our God on their foreheads.\nMr. and Mrs. Zuckerman were always complaining about them, and putting up screens.\nAnd walking by the sea of Galilee, he saw two brethren, Simon who is called Peter, and Andrew his brother, casting a net into the sea; for they were fishers.\nAll Wasseton could provide for the group was one feast of birds roasted over coals.\nFor it is written, Rejoice, thou barren that bearest not; Break forth and cry, thou that travailest not: For more are the children of the desolate than of her that hath the husband.\nBut ye have dishonored the poor man. Do not the rich oppress you, and themselves drag you before the judgment-seats?\nAnd there is no creature that is not manifest in his sight: but all things are naked and laid open before the eyes of him with whom we have to do.\nHe gave Avery five dimes and four nickels.\nAnd as Moses lifted up the serpent in the wilderness, even so must the Son of man be lifted up;\nFor I say unto you, that this which is written must be fulfilled in me, And he was reckoned with transgressors: for that which concerneth me hath fulfilment.\nWatch therefore: for ye know not when the lord of the house cometh, whether at even, or at midnight, or at cockcrowing, or in the morning;\nAnd then, just as Wilbur was settling down for his morning nap, he heard again the thin voice that had addressed him the night before.\nWilbur kicked and thrashed and grunted.\n“Oh, it’s coming all right,” she said, lightly.\nBut of that day and hour knoweth no one, not even the angels of heaven, neither the Son, but the Father only.\nWilbur watched in horror.\nNow in the law Moses commanded us to stone such: what then sayest thou of her?\nAnd Pilate marvelled if he were already dead: and calling unto him the centurion, he asked him whether he had been any while dead.\n“What will the letters say?” asked Lurvy.\nTherefore say I unto you, The kingdom of God shall be taken away from you, and shall be given to a nation bringing forth the fruits thereof.\nwhich in other generations was not made known unto the sons of men, as it hath now been revealed unto his holy apostles and prophets in the Spirit;\n“You mean that?” he said.\nI should think you’d be terribly happy about this.”\nwho would have all men to be saved, and come to the knowledge of the truth.\nHe that eateth my flesh and drinketh my blood hath eternal life; and I will raise him up at the last day.\nand in this place again, They shall not enter into my rest.\nWhat then? are we better than they? No, in no wise: for we before laid to the charge both of Jews and Greeks, that they are all under sin;\nSaid it in a tone as if they would be back in a week or two.\nTheir hams thinned off as lean and long as the hind legs of a Plott hound.\nSpiders can’t talk.”\nBut he passing through the midst of them went his way.\nBut ye say, Whosoever shall say to his father or his mother, That wherewith thou mightest have been profited by me is given to God;\nThe officers answered, Never man so spake.\n“The truck is rolling away, Papa,” said Fern.\nFor he that is entered into his rest hath himself also rested from his works, as God did from his.\nBut into whatsoever city ye shall enter, and they receive you not, go out into the streets thereof and say,\nand he stood upon the sand of the sea. And I saw a beast coming up out of the sea, having ten horns and seven heads, and on his horns ten diadems, and upon his heads names of blasphemy.\nThen, as each farmstead was vacated, they would rush in behind the soldiers to collect livestock and possessions left behind.\nThis will be a night to remember in a rat’s life.”\nfor Herod feared John, knowing that he was a righteous and holy man, and kept him safe. And when he heard him, he was much perplexed; and he heard him gladly.\nMaybe I should have packed up and gone to Washington for good, used my friends there to find a position.\nAnd from that time he sought opportunity to deliver him unto them.\nBut when the Jews of Thessalonica had knowledge that the word of God was proclaimed of Paul at Beroea also, they came thither likewise, stirring up and troubling the multitudes.\nwho, having received such a charge, cast them into the inner prison, and made their feet fast in the stocks.\n“What did you think I was, a spring chicken?\nA bruised reed shall he not break, And smoking flax shall he not quench, Till he send forth judgment unto victory.\nI cannot stay here and freeze\nto the end that ye be not quickly shaken from your mind, nor yet be troubled, either by spirit, or by word, or by epistle as from us, as that the day of the Lord is just at hand;\nAnd he said, Go into the city to such a man, and say unto him, The Teacher saith, My time is at hand; I keep the passover at thy house with my disciples.\nBut about midnight Paul and Silas were praying and singing hymns unto God, and the prisoners were listening to them;\nNeither let us commit fornication, as some of them committed, and fell in one day three and twenty thousand.\nAnd they gave him audience unto this word; and they lifted up their voice, and said, Away with such a fellow from the earth: for it is not fit that he should live.\nAnd take the helmet of salvation, and the sword of the Spirit, which is the word of God:\nSo shall also my heavenly Father do unto you, if ye forgive not every one his brother from your hearts. \nAnd he healed many that were sick with divers diseases, and cast out many demons; and he suffered not the demons to speak, because they knew him.\nWe are ambassadors therefore on behalf of Christ, as though God were entreating by us: we beseech you on behalf of Christ, be ye reconciled to God.\nSun rising yellow through fog hanging so thick across the water I could hardly see the green jungle we passed through.\nI put pieces of apple and onion inside the birds and cut bacon in little slivers and shoved them between the skin and the breast.\n“Children!” snapped the goose.\nBut he was so worried he felt he had to ask.\nThey took up stones therefore to cast at him: but Jesus hid himself, and went out of the temple. \nBut I say unto you, that one greater than the temple is here.\nYou might as well relax -  nobody is going to hang any medal on you.\nSimon Peter saith unto them, I go a fishing. They say unto him, We also come with thee. They went forth, and entered into the boat; and that night they took nothing.\nAnd he asked for a writing tablet, and wrote, saying, His name is John. And they marvelled all.\nHe liked to think that Nancy was right, that neither the trackers nor the soldiers would kill women and children, but who could know?\n“Can't you see everybody is busy?”\nHe that believeth on the Son of God hath the witness in him: he that believeth not God hath made him a liar; because he hath not believed in the witness that God hath borne concerning his Son.\nHe looked at me puzzled.\nAnd to the angel of the church in Philadelphia write: These things saith he that is holy, he that is true, he that hath the key of David, he that openeth and none shall shut, and that shutteth and none openeth:\n His wing felt like it was broken.\nAccording to the grace of God which was given unto me, as a wise masterbuilder I laid a foundation; and another buildeth thereon. But let each man take heed how he buildeth thereon.\nRender to no man evil for evil. Take thought for things honorable in the sight of all men.\nWhen once the master of the house is risen up, and hath shut to the door, and ye begin to stand without, and to knock at the door, saying, Lord, open to us; and he shall answer and say to you, I know you not whence ye are;\nAnd there sat in the window a certain young man named Eutychus, borne down with deep sleep; and as Paul discoursed yet longer, being borne down by his sleep he fell down from the third story, and was taken up dead.\nRejoice with them that rejoice; weep with them that weep.\nOur fathers worshipped in this mountain; and ye say, that in Jerusalem is the place where men ought to worship.\nWretched man that I am! who shall deliver me out of the body of this death?\nHe that hath an ear, let him hear what the Spirit saith to the churches. \nI can have it done in a week, the hatter said.\nAs they walked along, Beaver found another trap.\nif so be that God is one, and he shall justify the circumcision by faith, and the uncircumcision through faith.\nBehold, he cometh with the clouds; and every eye shall see him, and they that pierced him; and all the tribes of the earth shall mourn over him. Even so, Amen.\nhaving a golden altar of incense, and the ark of the covenant overlaid round about with gold, wherein was a golden pot holding the manna, and Aaron’s rod that budded, and the tables of the covenant;\nAnd this afternoon you can tell me more about what goes on in Uncle Homer's barn.\nand when the daughter of Herodias herself came in and danced, she pleased Herod and them that sat at meat with him; and the king said unto the damsel, Ask of me whatsoever thou wilt, and I will give it thee.\nAnd they reviled him, and said, Thou art his disciple; but we are disciples of Moses.\nBe not unequally yoked with unbelievers: for what fellowship have righteousness and iniquity? or what communion hath light with darkness?\nBut he that heareth, and doeth not, is like a man that built a house upon the earth without a foundation; against which the stream brake, and straightway it fell in; and the ruin of that house was great. \nFor the earnest expectation of the creation waiteth for the revealing of the sons of God.\nbut while men slept, his enemy came and sowed tares also among the wheat, and went away.\nand ye shall know the truth, and the truth shall make you free.\nAnd he led him to Jerusalem, and set him on the pinnacle of the temple, and said unto him, If thou art the Son of God, cast thyself down from hence:\n“Come on, frog!” cried Avery.\nHe decided to go exploring.\nThey were each sharpened keen enough to shave his forearm bare, but he would rather damage his hands than his tools.\n“Pay attention!”\nFor whosoever shall be ashamed of me and of my words, of him shall the Son of man be ashamed, when he cometh in his own glory, and the glory of the Father, and of the holy angels.\nAnd it came to pass about eight days after these sayings, that he took with him Peter and John and James, and went up into the mountain to pray.\nfor the wrath of man worketh not the righteousness of God.\nAnd we have believed and know that thou art the Holy One of God.\nAnd that which fell among the thorns, these are they that have heard, and as they go on their way they are choked with cares and riches and pleasures of this life, and bring no fruit to perfection.\n“Yes, Wilbur?”\nye who received the law as it was ordained by angels, and kept it not.\nAnd not even so did their witness agree together.\nBut straightway Jesus spake unto them, saying, Be of good cheer; it is I; be not afraid.\nThe Father loveth the Son, and hath given all things into his hand.\nPlenty of food they had, to keep them well and fed.\nThen they become part of the soil.\nAnd blessed is she that believed; for there shall be a fulfilment of the things which have been spoken to her from the Lord.\nBut now being made free from sin and become servants to God, ye have your fruit unto sanctification, and the end eternal life.\nonly they would that we should remember the poor; which very thing I was also zealous to do.\nFor since by man came death, by man came also the resurrection of the dead.\nAnd behold, a man from the multitude cried, saying, Teacher, I beseech thee to look upon my son; for he is mine only child:\nand said unto him, Art thou he that cometh, or look we for another?\nHe was strong and brave, but the truth is, both the goose and the gander were worried about Templeton. And with good reason.\nAll morning Templeton slept quietly under the straw.\nShe had grown up in Charleston, had succeeded Fanny Kemble as the principal female lead of High, Low, Jack…Game, and was the talk of the town.\nOn the trail the men frighten themselves with phantom dangers that they imagine lurk in the forest.\nAnd there were given to the woman the two wings of the great eagle, that she might fly into the wilderness unto her place, where she is nourished for a time, and times, and half a time, from the face of the serpent.\nFor he saith to Moses, I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.\nBut what went ye out to see? a prophet? Yea, I say unto you, and much more than a prophet.\n“Certainly.\nI wished I’d been able to shoot a bird apiece, but it came out close enough.\nAnd when we were all fallen to the earth, I heard a voice saying unto me in the Hebrew language, Saul, Saul, why persecutest thou me? it is hard for thee to kick against the goad.\nClaudius Lysias unto the most excellent governor Felix, greeting.\nThen, using all their strength, the men picked up the crate and heaved it aboard the truck.\nNow there came a famine over all Egypt and Canaan, and great affliction: and our fathers found no sustenance.\nAnd Jesus uttered a loud voice, and gave up the ghost.\ninsomuch that the multitude wondered, when they saw the dumb speaking, the maimed whole, and the lame walking, and the blind seeing: and they glorified the God of Israel.\nIn the daytime, Wilbur usually felt happy and confident.\nYour father Abraham rejoiced to see my day; and he saw it, and was glad.\nHe shook as the wind blew by.\nHer voice didn't seem to come from her web.\nWilbur tagged along at Fern’s heels.\nAnd say to Archippus, Take heed to the ministry which thou hast received in the Lord, that thou fulfil it.\nMy father.\nAnd Jesus went out from the temple, and was going on his way; and his disciples came to him to show him the buildings of the temple.\nWe went up the Nantahala and from there we searched Snowbird, Buffalo, Hanging Dog, and Beaver-dam, days and days of travel in terrain whereupon our horses could not find secure footing and we often had to walk them, and all with the result that we found but some old thatched hunting camps and one Indian man so blind he could not travel, and during the whole time of which heavy rain was falling from a dark sky and the autumn leaves yellow and red in the trees and slick on the ground.\nI speak the things which I have seen with my Father: and ye also do the things which ye heard from your father.\nYou’re white, the secretary said, not inflecting a question at all.\nFor you therefore that believe is the preciousness: but for such as disbelieve, The stone which the builders rejected, The same was made the head of the corner;\nAnd there came one and told them, Behold, the men whom ye put in the prison are in the temple standing and teaching the people.\nBut when Paul was about to open his mouth, Gallio said unto the Jews, If indeed it were a matter of wrong or of wicked villany, O ye Jews, reason would that I should bear with you:\nAnd he said unto them, Go and say to that fox, Behold, I cast out demons and perform cures to-day and to-morrow, and the third day I am perfected.\nMarvel not at this: for the hour cometh, in which all that are in the tombs shall hear his voice,\nAnd pray ye that your flight be not in the winter, neither on a sabbath:\nbut I could wish to be present with you now, and to change my tone; for I am perplexed about you.\nSo the woman left her waterpot, and went away into the city, and saith to the people,\nAnd they sing the song of Moses the servant of God, and the song of the Lamb, saying, Great and marvellous are thy works, O Lord God, the Almighty; righteous and true are thy ways, thou King of the ages.\nHe was a metalworker who could turn iron into chisels and drills and Georgia silver into forks and spoons.\nBut we were gentle in the midst of you, as when a nurse cherisheth her own children:\nBlessed are they that have been persecuted for righteousness’ sake: for theirs is the kingdom of heaven.\n“Here,” said Templeton, unrolling the paper.\nMr. Zuckerman was dancing about, fanning him with his cap.\nGeorge would have yanked at the handle but could not make it come loose.\nTempleton moved indoors when winter came.\nThey had known each other since boyhood.\n“Understand what?”\nThey backed up, observing the beast.\nBut many shall be last that are first; and first that are last.\nbeing filled with the fruits of righteousness, which are through Jesus Christ, unto the glory and praise of God.\nsaying that the Son of man must be delivered up into the hands of sinful men, and be crucified, and the third day rise again.\nAnd he answered and said unto them, What did Moses command you?\nAnd brother shall deliver up brother to death, and the father his child; and children shall rise up against parents, and cause them to be put to death.\nBehold, your house is left unto you desolate: and I say unto you, Ye shall not see me, until ye shall say, Blessed is he that cometh in the name of the Lord. \nAnd let us not be weary in well-doing: for in due season we shall reap, if we faint not.\nAnd he was preaching in the synagogues of Galilee. \nAnd they said unto him, Where is he? He saith, I know not.\n“Sort of, replied Charlotte.\n“Hurray! cried everybody.\nAnd the hand of the Lord was with them: and a great number that believed turned unto the Lord.\nThen he murmured the words “Some Pig.”\nI thought about the previous weeks of travel and camping, how Smith didn’t sleep well in the mountains, jumping at every sound of falling leaf and foraging possum.\nThe other four-footeds removed them.\nAnd when your stomach is empty and your mind is full, it’s always hard to sleep.\nV. Charlotte  \n“Good-bye, good-bye!”\nFor the wages of sin is death; but the free gift of God is eternal life in Christ Jesus our Lord. \nAnd he abode two whole years in his own hired dwelling, and received all that went in unto him,\nAnd when they received it, they murmured against the householder,\nThe men of Nineveh shall stand up in the judgment with this generation, and shall condemn it: for they repented at the preaching of Jonah; and behold, a greater than Jonah is here.\ntook the branches of the palm trees, and went forth to meet him, and cried out, Hosanna: Blessed is he that cometh in the name of the Lord, even the King of Israel.\nFor if ye forgive men their trespasses, your heavenly Father will also forgive you.\nTagrags and offscourings and white trash followed behind the little column with the attentiveness of buzzards circling a kill.\nWilbur’s heart pounded.\nI took her to see the portraits of significant Indians from the various peoples displayed in a chamber of the Department of War.\nAnd when Jesus heard these things, he marvelled at him, and turned and said unto the multitude that followed him, I say unto you, I have not found so great faith, no, not in Israel.\nGrace to you and peace from God our Father and the Lord Jesus Christ.\nThe enlisted men were let out only on rare occasions, and then they would cross the river in rowing boats and climb the hill and pay whatever price was asked for any kind of brownish popskull liquor whatsoever, as long as it was vaguely reputed to be Barbados rum or Tennessee whiskey.\nAnd out of the throne proceed lightnings and voices and thunders. And there were seven lamps of fire burning before the throne, which are the seven Spirits of God;\nTherefore speak I to them in parables; because seeing they see not, and hearing they hear not, neither do they understand.\nCold settled on the world.\nThere was a pause.\nWe’ll sit here today and start walking them out in the morning.\nAnd when he was called, Tertullus began to accuse him, saying, Seeing that by thee we enjoy much peace, and that by thy providence evils are corrected for this nation,\nAnd afterward he was manifested unto the eleven themselves as they sat at meat; and he upbraided them with their unbelief and hardness of heart, because they believed not them that had seen him after he was risen.\nLet marriage be had in honor among all, and let the bed be undefiled: for fornicators and adulterers God will judge.\nAnd it came to pass soon afterwards, that he went about through cities and villages, preaching and bringing the good tidings of the kingdom of God, and with him the twelve,\nThen cometh he to the disciples, and saith unto them, Sleep on now, and take your rest: behold, the hour is at hand, and the Son of man is betrayed into the hands of sinners.\nAnd thou, Capernaum, shalt thou be exalted unto heaven? thou shalt be brought down unto Hades.\nI asked if that sort of thing bothered him, for back then it would have bothered me a great deal.\nby so much also hath Jesus become the surety of a better covenant.\nOne Time in Chapel Hill…\nwhither as a forerunner Jesus entered for us, having become a high priest for ever after the order of Melchizedek. \nBut they were filled with madness; and communed one with another what they might do to Jesus.\nPunishment for my time among the Washingtonians.\nWe are not again commending ourselves unto you, but speak as giving you occasion of glorying on our behalf, that ye may have wherewith to answer them that glory in appearance, and not in heart.\nPeople are incessant talkers — I can give you my word on that.”\nNow after these things were ended, Paul purposed in the spirit, when he had passed through Macedonia and Achaia, to go to Jerusalem, saying, After I have been there, I must also see Rome.\nYet I predict that the day will come when even Henry will drop some chance remark that catches Fern’s attention.\nIn a moment he saw the rat’s sharp nose poke out from underneath the wooden trough.\nAnd the heaven was removed as a scroll when it is rolled up; and every mountain and island were moved out of their places.\nfor this is my blood of the covenant, which is poured out for many unto remission of sins.\nAnd when he had landed at Cæsarea, he went up and saluted the church, and went down to Antioch.\npreach the word; be urgent in season, out of season; reprove, rebuke, exhort, with all longsuffering and teaching.\n“Charlotte?” he said.\n“I have hay inside my dress!\nThe God of Abraham, and of Isaac, and of Jacob, the God of our fathers, hath glorified his Servant Jesus; whom ye delivered up, and denied before the face of Pilate, when he had determined to release him.\nLet not sin therefore reign in your mortal body, that ye should obey the lusts thereof:\nVerily, verily, I say unto you, The hour cometh, and now is, when the dead shall hear the voice of the Son of God; and they that hear shall live.\nCharley was aiming his family toward a laurel hell that went on and on, close and convoluted like a vast cavern. But it was a long way there.\n As the Maple snubbed her nose.\nBut he denied, saying, I neither know, nor understand what thou sayest: and he went out into the porch; and the cock crew.\nAnd not even all of them, only Long Hair, Paint, Wolf, and Deer.\nAnd as he was now going down, his servants met him, saying, that his son lived.\nAnd they went out, and fled from the tomb; for trembling and astonishment had come upon them: and they said nothing to any one; for they were afraid.\nAnd those by the way side are they that have heard; then cometh the devil, and taketh away the word from their heart, that they may not believe and be saved.\nBut now that faith is come, we are no longer under a tutor.\nXI. The Miracle\n“Throw buttermilk!” suggested Avery.\nHe lay dreaming that he was throwing baseballs at a cloth cat and winning a genuine Navajo blanket.\nWithout thinking much about it, he took two running steps forward and let fly the hatchet.\nAnd the God of peace himself sanctify you wholly; and may your spirit and soul and body be preserved entire, without blame at the coming of our Lord Jesus Christ.\nwho being the effulgence of his glory, and the very image of his substance, and upholding all things by the word of his power, when he had made purification of sins, sat down on the right hand of the Majesty on high;\nIf you’re going to stay here I shall stay, too.”\nBut abide thou in the things which thou hast learned and hast been assured of, knowing of whom thou hast learned them;\nBut she lowered her head and her hair covered her face, and that was the end.\nThe fish all lived happily in the small pond … except for Littlefish.\n“Oh, yes, Wilbur adores Charlotte,” said Fern.\nShe had been told I published poetry, though regrettably she had read none of it.\nII: Wilbur\nHe wondered why.\nAnd there was seen another sign in heaven: and behold, a great red dragon, having seven heads and ten horns, and upon his heads seven diadems.\nFern screamed.\nThe soldiers therefore, when they had crucified Jesus, took his garments and made four parts, to every soldier a part; and also the coat: now the coat was without seam, woven from the top throughout.\nHe kept it on its skewer and worked back to front, eating the little hams first, each by each, and then he went at the body meat, eating it off the ribs as if it lay in rows like corn kernels.\nIf Fern says that the animals in Zuckerman’s barn talk, I’m quite ready to believe her.\nNow no man at the table knew for what intent he spake this unto him.\nI said, You ought to see what I can do with a beef tenderloin.\n“I suppose so,” said Mrs. Arable.\nShow me a denarius. Whose image and superscription hath it? And they said, Cæsar’s.\n“But I can crochet a doily and I can knit a sock.”\nMountains were home, and that was that.\nbut with precious blood, as of a lamb without blemish and without spot, even the blood of Christ:\nCharley had gone out of camp to piss one night, and as he came back the hanging meat with the firelight coming through looked like bloody curtains.\nNext to her, attached to the ceiling, Wilbur saw a curious object.\nBut all things are of God, who reconciled us to himself through Christ, and gave unto us the ministry of reconciliation;\nHe couldn’t piece together who committed what act of violence.\nbless them that curse you, pray for them that despitefully use you.\nAbout all Smith had previously been trained to do was salute, and the three enlisted men had been taught the additional skill of sponging out cannon barrels after they had been fired.\nAnd they laughed him to scorn, knowing that she was dead.\nShe worked slowly but steadily while the other creatures drowsed.\nand if children, then heirs; heirs of God, and joint-heirs with Christ; if so be that we suffer with him, that we may be also glorified with him.\nAnd some of them that stood by, when they heard it, said, Behold, he calleth Elijah.\nHis heels jerked back into a kick and his hands loosed the reins and the rowels of his spurs cut and drew blood.\nFor many shall come in my name, saying, I am the Christ; and shall lead many astray.\nIn like manner also there are good works that are evident; and such as are otherwise cannot be hid. \nand they rose up, and cast him forth out of the city, and led him unto the brow of the hill whereon their city was built, that they might throw him down headlong.\nWilbur ate his breakfast slowly.\nThe rig creaked into motion, the narrow wheels broke free of the mud with a sucking sound.\nAs they walked on, Rabbit said, Here's another! Here's another!\n“I like it,” said Wilbur.\nArable arrives with his .22, shoots the ...”\nInside it were leftovers from somebody’s lunch: a deviled ham sandwich, a piece of Swiss cheese, part of a hard-boiled egg, and the core of a wormy apple.\nbut when a stronger than he shall come upon him, and overcome him, he taketh from him his whole armor wherein he trusted, and divideth his spoils.\nFor John the Baptist is come eating no bread nor drinking wine; and ye say, He hath a demon.\nShe felt greatly relieved.\nso that ye come behind in no gift; waiting for the revelation of our Lord Jesus Christ;\n“C’mon, pig!” said Lurvy.\nand in him ye are made full, who is the head of all principality and power:\nAnd miles to go before I sleep,\nand did all drink the same spiritual drink: for they drank of a spiritual rock that followed them: and the rock was Christ.\n“He's terrific,” said Lurvy.\nAnd his lord commended the unrighteous steward because he had done wisely: for the sons of this world are for their own generation wiser than the sons of the light.\nidolatry, sorcery, enmities, strife, jealousies, wraths, factions, divisions, parties,\nAnd then will I profess unto them, I never knew you: depart from me, ye that work iniquity.\nHe looked very humble and very grateful.\nThe concluding sentence to the first stage of my argument was this: Come down and help us track the killers and be welcome to join Bear’s people.\nAnd he took it, and ate before them.\nBut they understood not this saying, and it was concealed from them, that they should not perceive it; and they were afraid to ask him about this saying.\nAnd Jesus said unto him, Go thy way; thy faith hath made thee whole. And straightway he received his sight, and followed him in the way. \nCookery in each town was somewhat different from the next."
  },
  {
    "path": "a4/chr_en_data/test.chr",
    "content": "ᎡᏆᎭᎻ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎼᏏ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏁᎭ; ᎾᏍᎩ ᏫᏓᎾᏛᏓᏍᏓᏏ.\n“ᎭᏩ ᏍᎩᏉᏗ ᏄᏍᏕᏍᏗ, ᎡᏚᏥ.” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎢᏣᏓᏄᎸᏗᏉ ᏱᎨᏎᏍᏗ, ᏗᏥᏍᏓᏩᏕᎩᏍᎩᏂ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏃᎯᏳᏒ ᎠᎴ ᏗᏅᏂᏗᏳ ᎨᏒ ᎠᏅᏗᏍᎬ ᎤᎾᏤᎵ ᏄᏅᏁᎸ ᎠᏚᎢᏍᏔᏅᎢ.\nᎭᎾᎾ ᎦᏙᎬ, ᎪᎱᏍᏗ ᎠᎵᏖᎸᎮᏍᎬ ᎤᎪᎮᎢ.\nᎯᎠᏃ ᎾᏍᏉ ᏂᏙᏓᎦᏪᏎᎵ ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᎠᏂᏙᎾᎢ; ᏍᎩᏯᏓᏅᏏ, ᎡᏥᏍᎦᏨᎯ, ᏫᎾᏍᏛᎾ ᎠᏥᎸᏱ ᏗᎨᏒ ᏫᏥᎶᎯ, ᎾᏍᎩ ᎠᏍᎩᎾ ᎠᎴ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᎪᏢᎾᏁᎸᎯ.\nᎥᏝ ᏯᎵᎮᎵᎪ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᏚᏳᎪᏛᏍᎩᏂ ᎨᏒ ᎾᎿ ᎠᎵᎮᎵᎪᎢ;\nᎾᏍᎩ ᎥᏝ ᏳᏍᎦᏅᏤᎢ, ᎥᏝ ᎠᎴ ᎦᎶᏄᎮᏛ ᏯᏥᏪᏛᎡᎴ ᎠᎰᎵ;\nᎠᎴ ᎥᏝ ᏗᎦᏓᎴᎿᎢ ᏱᏂᎬᏁᎴ ᎾᏍᎩ, ᎪᎯᏳᏗ ᎨᏒ ᏕᎦᏅᎦᎸᏓᏁᎲ ᏧᏂᎾᏫ.\nᎠᎴ ᏂᎦᏛ ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; Ᏺ! ᏝᏍᎪ ᏂᎦᏛ ᎯᎠ ᏣᏂᏬᏂᎭ ᎨᎵᎵ ᎠᏁᎯ ᏱᎩ?\nᎠᏁᎸᏗᏍᎨ ᎤᏍᏓᏩᏛᏍᏗ ᎠᏂᏁᎬ ᏧᎵᎢ, ᎠᏎᏃ ᎨᏍᏗ ᎨᏓᎵ ᎠᎴ ᎦᏚᏏ ᎫᏩᏓᏒᏍᏗ ᏱᎨᏎ ᎢᏧ ᎴᎭ, ᎨᏍᏗ ᎫᏩᏓᏄᏖᏲᏗ ᏱᎨᏎ ᎠᏓᎾᏫᏛᏍᎬ ᏃᎴ ᎠᎵᏍᎩᏍᎬ, ᏃᎴ ᏍᏓᏯ ᎠᏦᏱᎮ. ᎨᏍᏗ ᎣᏍᏓ ᎫᏩᎪᏩᏛᏗ ᏱᎨᏎ ᏂᎦᎵᏍᏔᏂᏙᎲ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏄᎾᏛᏅ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏩᏛᏁᎭ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎢᎦ ᎠᎴ ᎡᏃᏱ ᏗᎬᏩᏜᏍᏗ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏬᎵ ᎠᏁᎲ ᎡᎮᏍᏗ.\nᎠᏂ ᎯᎠ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅᎩ ᎤᏁᎳᏅᎯ ᎢᎩᎨᏳᏒᎢ, ᎤᏁᎳᏅᎯᏰᏃ ᏧᏅᏎ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ ᎤᏪᏥ ᎡᎶᎯ ᎤᎷᎯᏍᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎬᏂᏛ ᎢᎩᏩᏛᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎬᏂᏛ ᎢᎩᏩᏛᏗᏱ.\nᎢᏳᏍᎩᏂ ᎠᏴ ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎬ ᎤᏁᎳᏅᎯ ᎦᏰᏌᏛ ᏱᎬᏗᎭ, ᎥᏝ ᏳᏜᏏᏛᎭ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏥᎷᏤᎸᎢ.\nᏧᎬᎢ ᎠᏆᏁᎳᏗᏍᏗ ᎠᏆᏚᎵ, ᎠᏯ ᏃᎴ ᏩᎶᏏ.”\nᎾᏍᎩ ᎢᏳᏃ ᏌᏉ ᎤᏫᏢ ᏯᎩ-ᎵᏲᎦ, ᏂᎦᏛ ᏑᏫᏢ ᎤᎾᏠᏯᏍᏗᎭ ᎠᏂᎩᎵᏲᎦ; ᎠᎴ ᎢᏳ ᏌᏉ ᎤᏫᏢ ᎦᎸᏉᏔᏅᎯ ᏱᎩ, ᏂᎦᏛ ᏚᏫᏢ ᎤᎾᏠᏯᏍᏗᎭ ᎠᎾᎵᎮᎵᎦ.\nᏦᎨᏏ ᎤᎾᏛᏁᎸᏗ ᏍᏈᏍᏓ ᎦᎳᎨᏰ ᏧᏏᏩ ᎫᎦ ᏃᎴ ᎤᎾᏗᏅᏓ.\nᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎼᎰᏩ ᏣᏥᏲᎯᏎᎸᎯ ᎨᎪᏎᎮᏍᏗ;\nᏚᏯᏪᏤᎢ ᏄᏍᏛᎢᏉ ᏄᎵᏍᏔᏁᎲ ᎯᎪ ᎢᎦ ᎤᎯᏐᏗ ᎢᎦ, ᎠᎦᏍᎩ, ᎤᎦᏎᏍᏕ ᎩᎶ ᎠᎩᏍᎬ ᏑᎾᎴ ᎤᎵᏍᏔᏴᏗ.\nᏯᎵᏖᎸᎮᏍᎬᎾ ᎦᏙᎨ ᏫᎵᎻ ᎤᏛᎦᏍᏕᎢ.\nᏃᏣᏢᏈᏍᏗᏍᎬᎾ ᎠᏟᎶᎥ ᏙᏱᏗᏢ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏂᏐᎢ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ; ᎤᏚᎩᏍᎩᏂ ᎣᎬᏒᎢ, ᎾᏍᎩ ᎢᏦᎯᏳᏒ ᎿᏉ ᎤᏁᏉᏨᎯ ᎨᏎᏍᏗ, ᏂᎯ ᏍᎩᏁᏉᎡᏗᏱ ᏍᎩᏍᏕᎸᏗᏱ ᏩᏍᏛ ᎢᏴᏛ ᎣᎦᏟᎶᎡᎸ ᏬᎩᎶᏒᏍᏙᏗᏱ,\nᎠᏎ ᏍᎩ ᎾᏆᏍᏗ.\nᎢᎾ ᎢᎦᏘ ᎦᏙᎬ ᏕᎧᏃᎯᏎᎲ, ᎦᎸᎳᏗ ᏫᏓᏂᎧᏅ ᎤᎾᏛᎦᏍᏛ ᎠᏂᏍᏆᏂᎪᏍᎬ.\nᏕᏥᏯᏥᎶᏍᏛ ᎤᏛᏐᏅ ᎤᏬᏢ ᏧᏬᏪᎶᏗ ᎦᏣᏄᎳ ᏕᎪᏪᎵᏍᎬ, ᎾᎥᏂᎨ ᏗᎦᎶᎩᏍᎩ ᏥᎦᏓᎷᎩᏍᎪ ᎤᏣᎴᏛ ᎠᏫᏒ ᏣᏓᏪᎳᎩᏍᎪ ᏙᎴᏛ ᎦᏓᏁᎯ ᎬᏗ, ᎤᏁᎦ ᎤᏍᏘᏰᏅ ᏃᎴ ᎠᏄᎴᎲ ᎦᏃᎯᎵᏙᎲ, ᏗᎬᏂᎨ ᎢᏧᎵᏍᏔᏅ ᏓᏴᏈᏛ ᏫᏚᏓᎨᎬ ᎦᏐᎯ ᎣᎭᏁ, ᎧᏁᏍᎦ ᎦᏗᏍᎬ ᎢᎬᏓ.\nᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏗᎦᎾᎥ ᏫᏚᎧᎾᏁ.\nᎠᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᏥᏌ ᎦᏚ ᎤᎩᏒ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᏚᏁᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎩ, ᎢᏥᎦ; ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ.\nPerry ᏚᏴᎡᎸ ᎦᏟᏣᏗ ᏃᎴ ᏗᎦᏟᏓ ᎠᏍᎦᏯ ᏗᎦᏁᎯ, ᎦᏓᏁ ᏥᏔᎦ ᏧᎩᏓᏟ ᎾᏍᎩᏯ ᏂᏚᏍᏛ ᏗᎦᏟᏓ ᏂᏕᎬᏅ ᏧᎩᏓᏟ.\nᎨᏍᏗ ᎬᏆᏙᏗ ᏱᎩ.\nᎾᏍᎩᏃ ᎾᎢᏧᎳᎭ ᎠᏂᏂᏜᎢ ᎠᎾᎵᏍᏓᏴᎲᏍᎬ ᎤᎾᎴᏅᎮ ᏙᏧᎾᏓᏅᏛ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎪ ᎾᏍᎩ ᎯᎠ, ᎠᏍᎦᏅᏨ ᎾᏍᏉ ᏥᏕᎦᏙᎵᎦ?\nᎾᏍᎩ ᎯᎠ ᏦᎢ ᏄᎵᏍᏔᏁᎢ, ᎿᏉᏃ ᎠᏖᎵᏙ ᏔᎵᏁ ᎦᎸᎳᏗ ᏫᎤᎵᏌᎳᏓᏁᎢ.\nᎢᏳᏃ ᏦᏰᏂ ᎯᎦᏘᏏ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ, ᎠᎴ ᏣᏕᎨᏍᏗ; ᎣᏏᏳᏰᏃ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉᏉ ᏣᎵᎬᎭᎸᏛ ᏱᏣᏲᎱᏎᎭ, ᎠᏃ ᎤᏃᏍᏛ ᎯᏰᎸ ᏨᏍᎩᏃ ᏫᏰᏣᏓᎢᏁᎭ.\nᎨᏍᏗ ᎬᏅᎢ ᎢᎪᎯᏓ ᏱᏪᏙᎮᏍᏗ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᎠᏎᏃ ᏥᎾᏰᏍᎦ, ᎾᏍᎩᏯ Ꮎ ᎢᎾᏛ ᏧᎶᏄᎮᎴ ᎢᏫ ᎠᏏᎾᏌᏅ ᏥᎬᏗᏍᎨᎢ, ᎾᏍᎩᏯ ᏕᏣᏓᏅᏛ ᏱᏓᎪᎸᎾ ᏗᏥᏲᎯᏍᏗᏱ ᏱᏂᎬᎦ ᏄᏠᎾᏍᏛᎾ ᎨᏒ ᎦᎶᏁᏛ ᎤᏤᎵᎦ..\nᏝᏍᎪᏃ ᏱᏥᎪᎵᏰᎣ ᎯᎠ ᎾᏍᎩ ᏥᏂᎬᏅ ᏥᎪᏪᎳ? ᎾᏍᎩ ᏅᏯ, ᏗᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎵᏍᏔᏅ;\n“Ꭳ ᏌᎳᏓ,” ᎤᏛᏁ.\n“ᎠᎩᏯᏂᏍᎬ ᎮᏂᎵ ᎣᎩᎾᎩᎸᏙᏗ ᎠᏗᏆᎸᏕᏲ ᎦᏆᏘ, ᎠᏎᏃ ᎡᎵᏍᏗ ᎨᏍᏗ ᏱᏚᎭ ᎠᏕᎳ.\nᎢᏥᏔᏲᎭ, ᎠᏎ ᏓᏰᏥᏁᎵ; ᎢᏥᏲᎦ, ᎠᏎ ᏓᏥᏩᏛᎯ; ᎢᏨᏂᎦ, ᎠᏎ ᏓᏰᏥᏍᏚᎢᎡᎵ.\nᎾᏍᎩ Ꮎ ᎡᏙᏓ ᏗᎩᎧᏁᎸᎯ ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥᎢ, ᎥᏝᏃ ᏰᎵ ᎩᎶ ᎡᏙᏓ ᏗᎬᏩᏛᎦᎸᏙᏗ ᏱᎩ.\nᏄᏩᏁᎰᎾ ᏕᎪᏣᎳᎩᏍᎬ, ᎯᎠ ᏄᏍᏕ ᏚᏏᎳᏛ: ᏧᏓᎴᏅᏓ ᏕᎪᏒᏍᎦ ᏧᏏᎳᏛᏙᏗ ᎠᏍᏓ ᎧᏅᏂᏍᎩ.\nᏱᎪᎯᎸᎾ ᏍᏈᏍᏓ ᎨᏎᎢ ᎤᏃᎴ ᏗᏲᏙᏗ ᏗᎦᏁᎯ ᎧᏅᏂᏍᎩ.\nᎯᎠ ᎾᏍᏉ ᏯᎦᏔᎭ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏓᏅᏘ ᏴᏫ ᎠᎪᏢᎾᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᏂᏚᎾᏁᎶᏛᎾ, ᎠᎴ ᏄᏃᎯᏳᏒᎾ, ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ, ᎠᎴ ᎠᏂᏍᎦᎾᎢ, ᎠᏂᎦᏓᎭᎢ, ᎠᎴ ᎣᏍᏛ ᎨᏒ ᎠᏂᏂᏆᏘᎯ, ᏧᏂᏙᏓ ᏗᏂᎯᎯ ᎠᎴ ᏧᏂᏥ ᏗᏂᎯᎯ, ᏴᏫ ᏗᏂᎯᎯ,\nᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎩᎾᎵᎢ, ᎦᏙᏃ ᎠᏂ ᎥᎯᏴᎵᎦ ᏂᏣᏄᏩᎥᎾ ᎢᎩ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏄᏬᏍᏗ? ᎡᎳᏪᏱᏉᏃ ᎨᏎᎢ.\nᏕᏣᏓᏲᎵᎸᎭ ᎢᏨᏔᏅᎭ ᎠᏓᎨᏳᏗ ᏗᏓᏙᏪᏙᎥᏍᏗ ᎨᏒᎢ. ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥ ᏥᏌ ᎦᎶᏁᏛ ᎡᏥᏯᎢ. ᎡᎺᏅ\nXIII. ᎣᏍᏓ ᎠᏰᎵᏒ  \nᏂᎦᎥᏰᏃ ᏓᏓᏁᎸ ᎩᎶ ᏧᏬᏢᏅᎯ ᎨᏐᎢ; ᎾᏍᎩ Ꮎ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎤᏬᏢᏅᎯ ᎨᏒ ᎤᏁᎳᏅᎯ.\n“ᎦᏙᏃ ᏍᎩᎦᎢ ᏂᏍᏆᏛᏁᎴ?” ᎤᏛᏛᏁ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏝᏱᏥ ᎦᏔᎭ ᏄᏍᏛ ᎢᏥᎳᏲᎯᎲᎢ. ᏥᎪᏰᎵᏉ ᎨᏣᏗᏔᏍᏗ ᎤᎵᏍᏈᏗ ᎠᏟᏍᏛ ᎠᏴ ᏨᏓᎦᏗᏔᎯ, ᎠᎴᏍᎪ ᏰᎵᏉ ᏱᏕᏣᏬᏍᏓ ᎠᏴ ᎾᏍᎩ ᏨᏓᏴᏆᏬᏍᏔᏂ? ᏰᎵᏉ, ᎤᎾᏛᏅᎩ.\nᎤᎾᏚᎩᏒᏃ ᎤᏂᎪᎲᎩ ᎠᏥᎸᎭ ᎪᏛᎩ, ᎠᏣᏗᏃ ᎥᎬᏓᎥᎩ, ᎠᎴ ᎦᏚ ᏓᎲᎩ.\nᎤᏍᏓᎸᏍᎩᏂᏃᏅ ᎠᏆᎴᏂᏓᏍᏗᏱ ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ.\n“ᏚᎦᏯᎷᏛ ᏫᎦᏓᎡᎢ, ᏃᎴ ᎦᏂᏓᏛ ᎦᎵᏣᎬᏗᏍᎨᎢ ᏃᎴ ᎤᏔᎷᎩᏍᎨ ᏅᏙ ᎠᎦᎵᏍᎬᎢ.\nᎿᏉᏃ ᎣᎩᎪᎲ ᏌᏈ, ᎠᎴ ᎠᎦᏘᏏᏗᏢ ᎣᎩᎶᏒ, ᏏᎵᏱ ᏬᎩᏅᏍᏔᏅᎩ, ᏓᏯᏃ ᎣᎦᏣᎢᏒᎩ; ᎾᎿ ᏰᏃ ᏥᏳ ᎤᎵᏁᏌᎸ ᎤᎵᏁᏌᎴᏍᏗ ᎨᏒᎩ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᎠᎴ ᎢᏨᏁᏤᎭ ᎤᎬᏫᏳᎯ ᏚᏙᎥ ᎬᏗᎭ, ᎾᏍᎩ ᏂᎯ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎢᏤᎲ ᏞᏍᏗ ᎠᏂᏐᎢ ᏧᎾᏓᎴᏅᏛ ᎠᏁᎲ ᎾᏍᎩᏯ ᏱᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᎤᏁᎫᎯᏳ ᎨᏒ ᏚᎾᏓᏅᏛ ᎠᏂᏍᏓᏩᏗᏒᎢ,\nᏝᏍᎪ ᎾᏍᏉ ᏱᏥᎪᎵᏰᎣ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎤᏛᎾ ᏗᎦᏔᏫᎢᏍᏗᏱ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᎾᏙᏓᏆᏍᎬ ᎠᏂᏲᏍᏗᏍᎬ, ᎠᎴ ᎤᏂᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᎨᏒᎢ\nᎯᏔᎷᎩᏍᎩ ᏤᏣᎧᏃᏗ ᎨᏎᏍᏗ ᏫᎵᎻ! \nᏕᎯᎦᏔᎭ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ, ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ, ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ, ᏞᏍᏗ ᏣᏓᎶᏄᎮᎸᎩ, ᏣᏙᏓ ᎠᎴ ᏣᏥ ᏕᎯᎸᏉᏕᏍᏗ.\nᎿᏉᏃ ᎾᏍᎩ ᎠᏛ, ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ, ᎯᎠ ᏄᏪᏎᎸ ᏈᏓ; ᏂᎯᎧ ᎾᏍᏉ ᎯᎠ ᎠᏍᎦᏯ ᎯᏍᏓᏩᏗᏙᎯ? ᎥᏝ, ᎤᏛᏅᎩ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᏄᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎩᏍᏆᏂᎪᏙᏗᏱ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ; ᎤᏤᎵᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎥᏝ ᎦᎨᏗᏳ ᏱᎩ.\nᎨᏍᏗ ᎯᎸ ᏍᎩᎾᎾ ᎢᏲᏍᏓ ᏱᎩ ᎠᎫᏪᏅᏒ, ᎤᏪᎵᏎ ᏫᎵᎻ, ᎤᏅᏏᏴ ᎤᏩᏙᎯᏴᏓ ᎨᏒ ᏫᏚᏍᏆᏂᎪᏔᏁᎢ ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᎢᏯᏂ ᎤᎾᏕᏅ ᏱᎨᏒᎾ ᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ.\nᎦᎸᏙᏟ, ᏓᎶᏂᎨ ᎤᏍᏘᏰᎩ, ᏗᎨᏯᏔᎯ ᏤᏆ ᏧᏬᏰᏂ ᏃᎴ ᏗᎦᏅᎯᏛ ᏧᎳᏏᏕᏅ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏤᏪᏎᎭ, ᎪᎯ ᏣᏁᎭ ᎥᏝ ᏴᏛᏂᎶᏐᏂ ᎬᏂ ᎾᏍᎩ ᎯᎠ ᏂᎦᏗᏳ ᏂᎦᎵᏍᏔᏅᎭ.\nᏑᎾᎴ ᏍᎩᎪᏩᏛᎲ.”  \nᎾᎿᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎠᏁᎲ ᎪᎯᏗᏳ ᎤᎾᏕᏁᎢ.\nᎿᏉᏃ ᎬᏔᏲᏎᎭ ᎯᎨᏴ, ᏗᎦᎵᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ; ᎥᏝ ᎠᏗᎾ ᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᏥᎬᏲᏪᎳᏁᎰ ᎢᏳᏍᏗ ᏱᎩ, ᎾᏍᎩᏉᏍᎩᏂ ᏥᏁᎩᎰᎢ, ᏗᎦᏓᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ.\nᏚᎧᏁᎩᏎ ᎠᏍᏓ ᏧᏆᏴᏍᏗ, ᏧᏪᏅᏒ ᎱᏪᏅᏎᎢ.\nᎠᎴ ᎬᏂᏳᏉ ᎯᎠ ᏅᏧᏪᏎ ᎦᎸᎳᏗ; ᎯᎠ ᏥᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎣᏏᏳ ᏥᏥᏰᎸᎠ.\nᏡᎬ ᎣᏍᏛ ᏂᏨᎦ ᎤᏛᏃ ᎣᏍᏛ, ᎠᎴ ᏡᎬ ᎤᏐᏅ ᏂᏨᎦ ᎤᏛᏃ ᎤᏐᏅᎢ; ᏡᎬᏰᏃ ᎪᎵᏍᏙᏗ ᎨᏐ ᏄᏍᏛ ᎤᏛᎢ.\nᏐᏉ ᏑᎾᎴᎢ ᎤᎾᏓᎪᎾᏙᏗ ᎤᏛᏛᏁᎢ ᏫᎵᎻ.\nᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ ᎬᏗ ᎦᏬᏍᎬ ᎤᏤᎵ ᏏᏆ ᎦᏓᎭ ᏱᏄᎵᏍᏔᎾ-- ᎩᎳ ᎦᏅᏓᏓ.”\nᎤᎴᏨᏃ ᎠᎴ ᎤᏪᏯᏁᏒ, ᏚᎴᏔᏁᎢ; ᎤᏗᎴᎲᏍᎬᏃ ᎩᎳᏉ ᎢᏴᏛ ᎤᏗᏩᏎᎢ, ᎠᎴ ᏚᏍᏕᎸᎯᏙᎴᎢ.\nᎠᏗᎾ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ ᎠᏍᎦᏅᏨ ᎬᏩᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏂ ᎡᎶᎯ, ᎿᏉ ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ; ᏔᎴᎲᎦ, ᏣᏤᏍᏙ ᎯᎾᎩ, ᎠᎴ ᏗᏤᏅᏒ ᎮᎾ.\nᏲᎾ, ᎦᏚᏏ ᏫᎦᏂᎩᎴ ᎢᎪᎯᏓ ᏃᎴ ᎡᏘᏴ ᏄᎾᏛᏁᎵᏙᎸ ᏚᏍᏆᏂᎪᏕ, ᎨᏍᏗ ᎠᏂᏐ ᎤᎾᏂᎩᏌ ᏱᏚᏍᏓᏩᏕᏅ, ᎤᏲ ᎤᏓᏅᏘ ᏚᎦᏎᏍᏔᏁ.\nᎦᏥᏯᏙᎵᎦ ᎤᏂᏣᏘ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗ ᎿᏉ ᏦᎢ ᎢᎦ ᎢᏧᎳᎭ ᎣᎨᏙᎸᎢ ᎠᎴ ᏄᏂᎲᎾ ᎨᏒ ᎤᎾᎵᏍᏓᏴᏗ;\nᎾᏍᎩᏃ ᎤᏂᎪᎲᎯ, ᎬᏩᏂᏃᏁᎴ ᏄᎵᏍᏓᏁᎸ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ, ᎠᎴ ᎾᏍᏉ ᏏᏆ ᏄᎾᎵᏍᏓᏁᎸᎢ.\nᎢᏴᏛᏰᏃ ᏂᏨᏁ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ, ᏴᏫ ᎤᏂᏁᏨ ᏗᎧᎿᏩᏛᏍᏗ ᏂᏨᏁᎭ, ᎾᏍᎩ ᏗᏖᎵᏙ ᎠᎴ ᏧᎵᏍᏈᏗ ᏗᎫᎯᎶᎥᎢ; ᎠᎴ ᎤᏣᏔ ᏄᏓᎴᎭ ᎾᏍᎩᏯ ᎤᏠᏱ ᏕᏥᎸᏫᏍᏓᏁᎰᎢ.\nᎢᏦᎯᏳᏒᏰᏃ ᏚᏃᏣᎶᏨ ᎾᏂᎥ ᏴᏫ ᎠᏁᎲᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᎮᎵᎦ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎠᏎᏍᎩᏂᏃᏅ ᎠᏆᏚᎵᎭ ᎢᏥᎦᏔᎾᎢ ᎢᏣᎵᏍᏙᏗᏱ ᎣᏍᏛ ᎨᏒ ᎤᎬᏩᎵ, ᎠᏃ ᎤᏲ ᎨᏒ ᎤᎬᏩᎵ ᏂᏥᎦᏔᎾᎥᎾ.\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎬᏅᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎪᎲᎢ, ᎥᏝ ᏳᏃᎯᏳᏁᎢ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎡᎮ ᏏᏌᎵᏱ, ᎧᏂᎵᏯ ᏧᏙᎢᏛ, ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᎨᎳ ᎢᏓᎵ ᏧᎾᏙᎢᏛ ᎤᎾᏓᏡᎬ.\nᎦᎸᎳᏗᏣ ᏪᏙᎮ ᏲᎾ ᎤᏤᏍᏙ ᏓᏍᏕᏓᎵᏴᏍᎨ ᏧᎳᏑᎶ.\nᎯᎠ ᎾᏍᏉ ᏄᏪᏎ ᏚᏟᎶᏍᏓᏁᎴᎢ; ᎩᎶ ᎢᏳᏍᏗ, ᎡᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᎤᏫᏎ ᏖᎸᎳᏗ ᏚᏫᏒᎢ; ᎤᎷᏤᏃ ᎤᏲᎴ ᎤᏓᏔᏅᎯ, ᎠᎴ ᎥᏝ ᏳᏩᏛᎮᎢ.\nᏂᎦᏛᏃ ᎠᏆᏤᎵᎦ ᏂᎯ ᏣᏤᎵᎦ, ᏂᎯᏃ ᏣᏤᎵᎦ ᎠᏴ ᎠᏆᏤᎵᎦ; ᎠᎴ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᎩᎸᏉᏗᎭ.\nᏈᎵᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏔᎵᏧᏈ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᏧᎬᏩᎶᏗ ᎦᏚ ᎥᏝ ᏰᎵ ᏱᎦᎩ, ᎾᏍᎩ ᎠᏂᏏᏴᏫᎭ ᎤᏍᏗ ᎤᏂᎩᏒᏍᏗᏱ.\nᏙᏱᏢᏃ ᏭᎶᏒ ᏅᏩᏓᎴ ᎤᎪᎮᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴ ᎾᎿ ᎠᏁᏙᎯ; ᎾᏍᏉ ᎯᎠ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᏓᏁᏙᎲᎩ.\nᎡᎳᏗ ᎠᎩᎶᏫᏍᏗ ᎤᎾᏅᏗ ᏫᎦᎷᎩ.\nᏃᎴ ᏄᏓᎴᎯ ᎧᏅᏂᏍᎩ.\nᎿᏉᏃ ᏣᏂ ᏂᏙᏓᏳᏅᏏᏛ ᎢᎤᏁᏅ, ᎤᎴᏅᎮ ᏣᏂ ᏚᏁᎢᏍᏓᏁᎴ ᏴᏫ; ᎦᏙ ᎢᏣᎦᏔᏅᏎ ᎢᎾᎨᎢ? ᏩᏐᎾᏍᎪ ᎤᏃᎴ ᎤᏖᎸᎮᏍᎬᎢ?\nᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤ ᎾᏍᎩ ᏂᏚᏪᏎᎸᎢ.\nᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎤᏲ ᎢᏨᏯᏓᏅᏓᏗᏍᏔᏅᎩ ᎪᏪᎵ ᏫᏨᏅᏁᎸᎢ, ᎥᏝ ᎤᏲ ᏯᎩᏰᎸᎭ, ᎤᏲᏍᎩᏂᏃᏅ ᎠᎩᏰᎸᏒᎩ; ᎢᏥᎪᏩᏘᏰᏃ ᎾᏍᎩ ᎤᏲ ᎢᏣᏓᏅᏓᏗᏍᏯᏅᎢ, ᎠᏎᏃ ᏞᎦᏉ.\nᎠᏎᏃ ᏲᏥᎦᏔ ᎤᏙᎯᏳᎭ ᎠᏂᏃᎮᏍᎬ, ᎨᎵᏍᎬᏃ ᎠᏎᏉ ᎠᏂᏃᎮ.\nᎤᏩᏅᏓᏕᎢ ᏰᎵ ᏎᎦ ᏳᎦᎾᏅᎾ ᏱᎩ, ᎡᎳᏗ ᏂᎦᎵᏍᏗᏍᎨ ᎠᎹ.\nᎾᏍᏉ ᎠᎴ Ꮎ ᏔᎵ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎾᏍᏉ ᏔᎵ ᎢᏯᎦᏴᎵ ᎤᏁᏉᏤᎴᎢ.\nᎿᏉᏃ ᏌᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᎵᎵ ᎤᏁᏅᏒᎩ ᏦᏓᎸ ᏥᏌ ᎤᎾᏎᎮᎸᎢ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏥᎪ ᎤᏩᏒ ᏛᏓᎵ? ᎯᎠ ᏥᏂᎦᏪᎭ; ᏫᏥᎦᏛ ᎥᏝ ᏫᏴᎨᏥᎷᎩ.\nᏃᏉ, ᎤᏁᎦᎸ ᏩᏍᏘ ᎦᏓᏁ ᏄᎵᏍᏔᎾ, ᎤᎴᏫᏍᏔᏅ ᎠᎦᏍᎬ, ᎤᎧᎭᏙᏅ.\nᎬᏩᎵᎥᏂᏍᏗᏱᏃ ᎬᏩᏘᏃᎸ, ᏉᎳ ᎯᎠ ᏄᏪᏎᎸᎩ ᎾᎥ ᎦᏙᎩ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ; ᏰᎵᏉᏍᎪ ᏗᎧᎾᏩᏛᏍᏗ ᏂᎬᏅ ᎦᏰᏥᎵᎥᏂᏍᏗ ᎠᏍᎦᏯ ᎠᎶᎻ, ᎤᏍᎦᏅᏨ ᏧᏚᎪᏔᏅᎯ ᏂᎨᏒᎾ ᏱᎩ?\n”ᏕᎷᎨ ᎤᎵᏑᏫᏓ ᎯᏅᎪᎢ!” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏣᏄᏏ ᎤᏩᏌ ᎤᏪᏅᏎ, ᏚᎦ ᎤᏪ ᏧᎵᎢ ᎤᎾᏛᏁᎸᏗ.\nᎤᏒᏙᏂ ᎠᏓ ᎤᏂᏴᏩᏛᎮ.\nᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎤᎩᏎ ᎢᏗᏍᎦᎾᎯᏳ ᎨᏒ ᎤᏩᏒ ᎠᏰᎸ ᏞᎬ ᏧᎩᎵᏲᏤᎢ, ᎾᏍᎩ ᎠᏴ ᏗᎩᏲᎱᏒᎯ ᎨᏒ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎢᏗᏢ, ᏗᏛᏃᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏳᎪᏛ ᎢᏗᏢ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏥᎵᎥᏂᎸᎢ ᎢᏣᏗᏫᏍᏗᎭ.\nᎢᎪᎯᏓ ᏓᏥᏍᏆᏂᎪᏔᏂ ᏥᏯᏅᏓᏗᏍᎬ.\nᎤᎵᏒᏅ ᎤᏩᏇᏅᏛ ᎤᏤᏍᏛᏙᏗ, ᎤᏪᏅᏒ ᎠᏥᎨᎯᏙᎸ.\nᎭᎾᎾ, ᎠᏰᎵ ᏚᏏᎳᏛ ᎧᏃᎮᏓ ᎪᏪᎴ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎼᏏ ᎤᎵᏍᎪᎸᏔᏁ ᎪᏪᎶᏗᏱ ᏙᎦᎴᏅᎲᎢ, ᎠᎴ ᎠᏓᎢᏅᏗᏱ.\nᎪᎱᏍᏗᏃ ᏄᏂᎲᎾ ᎨᏒ ᎤᎾᎫᏴᏙᏗ, ᏚᏲᏎᏉ ᎢᏧᎳ. ᎾᏍᎩᏃ ᏍᎩᏃᎲᏏ, ᎦᎪ ᎾᏍᎩ ᎤᏟ ᏄᏓᎨᏳᏎᏍᏗ?\nᎤᏍᎦᏃᎳ ᎤᏍᏚᏤ ᏫᎵᎻ ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ ᎠᏍᎪᎵ ᏃᎴ ᎦᏐᎯ, ᎢᏧᎳ ᎢᏣ ᎠᏰᎸᎢ ᏃᎴ ᎤᎧᏛ ᏫᎦᏩᏙᎣᏍᎨ ᎠᎾᏍᎪᎵᏰᏍᎨ ᎤᏳᏩᏅ ᏃᎴ ᎤᏁᎦᎸ ᎠᎳᏂ ᏃᎴ ᎰᎻ.\nᎤᏩᏙᎯᏴᏓ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᏃᎴ ᎦᏢᏍᎩ ᎨᏎᎢ.\n”ᎭᎴᏫᏍᏓ ᎪᎱᏍᏗ ᏄᏰᎸᏛᎾ, ᏫᎵᎻ!” ᎤᏛᏁ ᎤᏔᎾᏱᎨ ᎤᏃᏕᎾ.\nᎪᎯᏳᏗ ᎨᏒ ᎾᏍᏉ ᎬᏗᏍᎬ ᏎᎵ ᎤᏩᏒ ᏧᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎠᏲᎵ ᏧᎾᏄᎪᏫᏎ ᎿᏉ ᏧᏓᎾᏄᎪᏫᏍᏗᏱ ᎤᎶᏐᏁᎸᎯ ᏥᎨᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏄᏓᎵᏓᏍᏛᎾ ᎤᏰᎸᏅ ᎾᏍᎩ Ꮎ ᎤᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ.\nᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏥᏪᎭ, ᏝᏍᎪ ᏳᎾᏛᎦᏅ? ᎥᎥ, ᎤᏙᎯᏳᎯ, ᎤᎾᏓᏃᏴᎵᏍᏛ ᏚᏰᎵᏒ ᎡᎳᏂᎬᎢ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎡᎶᎯ ᏩᏍᏛ ᎢᏴᏛ ᏚᏰᎵᏒ.\n“ᏤᏍᏗ ᏯᎵᏖᎸᎮᏍᎨᏍᏗ ᏧᏍᏆᏴᏍᏗ!” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᏥᏅᏍᏓᏕᎳ ᎤᎾᏕᎬ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏲᎯᏍᏔᎾ, ᎤᎵᏍᎦᏎᏓᏁ ᎠᏥᏅᏍᏔᏕᎲ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎨᏒ ᎬᏂᎨᏒ ᎢᏰᏛᏁᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏂᎦᏛᏁᎵᏙᎸᎢ.\nᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ; ᎥᏝ ᏴᎨᏍᎩᎪᏩᏛ ᎪᎯ ᎢᏳᏓᎴᏅᏛ, ᎬᏂ ᎯᎠ ᏂᏥᏪᏒᎭ; ᎠᏥᎸᏉᏗᏳ ᎾᏍᎩ ᏱᎰᏩ ᏕᎤᏙᎥ ᏥᎦᎷᎯᏍᏗᎭ.\nᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎩᎶ ᏗᏥᏩᏛᏗᏱ ᏴᎩᏁᏤᎸ, ᎠᏫ ᎤᏂᏃᏕᎾ ᎤᎾᎴᎾᎸᎯ ᎤᏅᏒ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎬᏒᎢ.\nᎢᏨᎨᏳᎢ, ᏕᎦᏓᎨᏳᏎᏍᏗ; ᎠᏓᎨᏳᏗᏰᏃᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏓᏳᏓᎴᏅᎯ, ᎩᎶᏃ ᏧᏓᎨᏳᏐ ᎤᏁᎳᏅᎯ ᎤᎾᏄᎪᏫᏒᎯ ᎨᏐᎢ, ᎠᎴ ᎠᎦᏔᎰ ᎤᏁᎳᏅᎯ.\nᎠᎴ ᎾᏍᎩ ᎾᏍᏉ ᎡᏆᎭᎻ ᏂᎦᏛ ᏧᎬᏩᎶᏗ ᎠᏰᎲ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏧᏁᎸᏁᎢ; ᎢᎬᏱᏱ ᎨᏒ [ᏚᏙᎥ] ᎠᏁᏢᏔᏅᎯ ᎨᏒ ᎤᎬᏫᏳᎯ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎦᏛᎦ, ᎣᏂᏃ ᎾᏍᏉ ᏎᎳᏂ ᎤᎬᏫᏳᎯ ᎠᎪᏎᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏅᏩᏙᎯᏯᏛ ᎤᏚᎵᏍᎩ ᏥᎦᏛᎦ.\nᏣᎵ ᎤᏌᎵᏓᏁ ᎤᏔᏂᏓ ᏅᏯ, ᏔᎷᎩᏍᎩ ᎠᏍᏚᎩᏍᏗ ᎬᏗ ᏍᏗᏫ ᎤᏪᏍᎯᏔᏁ ᎤᏔᏂᏓ ᎢᎾᏓ ᎠᏍᎪᎵ.\nᏚᎾᏦᏝ ᎧᏅᏑᎸ ᎠᏂᏯᎥ, Amy ᏃᎴ Ginger, ᏃᎴ Amy ᎤᎾᎵᎪᏒ ᎠᏫᎾ ᎬᏆᎧᏙᏍᏛᎢ.\n“Ꭵ, ᎤᏙᎯᏳ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎡᏝᏪ ᎨᏎᏍᏗ!\nᎣᏂᏱᏃ ᎤᏪᏥ ᎤᏅᏎᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏎ ᏛᏂᎸᏉᏔᏂ ᎠᏇᏥ.\nᎤᎪᎵᏰᎡ ᏚᏙᎥ ᎦᏯᎸᏅ ᏌᎳᏓ.\n“ᎠᎬᏱ, ᏫᎦᏓᎾᏫᏗᏍᎪ ᏛᎦ ᏧᎩᎸ ᎢᏣ.\n“Ꭷ!” ᎤᏛᏁ ᏌᎳᏓ.\nᏥᏅᏁᎸ ᎪᏪᎵ ᏃᎴ ᏥᏃᎯᏎᎸ ᎢᏳᏍᏗ ᎢᏯᏛᏁᎵᏓᏍᏗ - ᎤᏟᏍᏔ ᎠᎩᏁᎢᏍᏔᏅ ᎠᏁᎯᏯ ᏃᎴ ᎤᏅᏌ ᎤᎾᏤᎵ ᎨᏒ ᎦᏙ - ᏂᏚᏍᏛ ᏤᎩᏏᏂ ᏗᎦᏙᎵ ᏰᎵᏉ ᎠᏂᏔᎵ ᎢᏯᏂ ᏧᎯᏍᏗ.\nᎾᎦᏛᏰᏃ ᎤᏚᎢᏍᏔᏅᎢ ᎤᏁᎳᏅᎯ ᎾᏍᎩ Ꮎ ᎢᏳᏩᏂᏌᏛ, ᎥᎥ ᎬᏛᏗ, ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎨᏐ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, Ꮎ-ᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏙᏗᏱ ᎠᏴ ᎢᏲᎬᏁᏗᏱ.\nᏫᎦᎢᏒ ᎠᎩᏒᏍᏗ ᎠᏆᏂᎩᏛ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏧᏂᎸᏫᏍᏔᏁᏗ, ᏴᏫ ᎨᏍᏗ ᏳᎾᏕᎶᎰᏌ ᏄᏓᎴ ᎾᏆᏍᏛᎢ, ᎤᏂᏣᏘ ᎨᏒ ᏧᎾᏓᎴᏅᏓ ᎠᏂᏴᏫ, ᎠᏂᎫᏌ ᏃᎴ Turks.\nᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏛ ᎠᏂᏃᏔᏅᎥᏍᎩ, ᎾᏍᎩ ᏧᏪᏅᎢᏍᏔᏅᎯ, ᎢᏅ ᏗᏂᏙᎾᎡᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᎩᎵᏲᎬ ᎠᏂᏍᎦᎢᎲᎢ, ᏓᎾᏠᏱᎮᏍᏗ ᎠᎴ ᏓᏂᏴᎨᏍᏗ,\nᏂ, ᎦᏐᎸᏓᎩᎠ!”  \nᎯᎠ ᏄᏪᏒ: “ᏂᎦᏗ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏕᎯ ᎯᏓᎵᎮᎵᎦ ᏅᎩ ᏧᎾᏙᏓᏆᏍᏗ ᎤᎧᏘᏛ ᏌᏌ, ᏃᏉ ᎪᎱᏍᏗ ᎬᏂᎨᏒ ᏄᎵᏍᏓᏏ.\nᎤᏬᏗᎨ ᏃᎴ ᎤᎾᏉᏓᏘ ᎢᏳᏍᏗ ᎠᏗᏔᏍᏗ ᎡᏘᏴ ᏥᎨᏎ ᏭᏩᏅᏔᏗᏍᏔᏅ, ᏔᎵ ᏧᏥᏍᏔᏅ, ᎡᏘᏴ ᏧᎶᏒ ᎤᎴᏅᎲ ᎧᏃᎮᏍᎬ ᎠᏌᎻᏓ. ᎠᏧᏣ ᏥᎨᏎ ᏃᎴ ᎠᏫᎾ ᏫᏄᎵᏍᏔᏅ, ᏍᎩᏉ ᏂᎦᎥ ᎤᏃᎮᏗ.\nᎢᏳᏍᏗᎭᏰᏃ ᎯᎠ ᎾᏍᎩ ᎦᏚ ᎢᏥᎩᏍᎨᏍᏗ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎤᎵᏍᏈᏗ ᎢᏣᏗᏔᏍᎨᏍᏗ, ᎬᏂᎨᏒ ᏂᏨᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏲᎱᏒᎢ, ᎬᏂ ᎦᎷᏨᎭ.\nᏯᏃᎩᏳᏃ ᎠᏥᎸᏱ ᎠᎴ ᎠᏑᏱ ᎤᏓᎡᎪᎢ, ᎾᏍᎩ ᎤᎯᏍᏗᏱ; ᎢᏳᏍᎩᏂᏃᏅ ᎪᎱᏍᏗ ᎨᏣᏛᏁᏗ ᎨᏎᏍᏗ, ᏍᎩᏍᏙᎵᎩ, ᎠᎴ ᏍᎩᏍᏕᎸ.\nᎤᏁᎳᎩ ᏕᏣᏓᏕᎵᏎᎮᏍᏗ, ᎠᎴ ᏗᎨᏣᏓᏁᎮᏍᏗ ᏕᏣᏓᏍᎦᏅᏤᎲᎢ, ᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᏱᏓᎾᏓᏕᎵᏎᎭ; ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎦᎨᏥᏁᎸ ᎢᏥᏍᎦᏅᏨᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ.\nᏂᎯᏍᎩᏂ ᏞᏍᏗ ᎾᏍᎩ ᏄᎾᏍᏛ ᏱᏂᏣᏍᏕᏍᏗ, ᎢᏥᏙᏓᏰᏃ ᎠᎦᏔᎰ ᎢᏳᏍᏗ ᎢᏥᏂᎬᎬ ᎠᏏᏉ ᏁᏥᏔᏲᏎᎸᎾ ᏥᎨᏐᎢ.\nᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏂᎯ ᏕᎬᏲᎯᏏ, ᎠᏇᏥ ᏗᎹᏗ, ᎾᏍᎩᏯ ᏄᏂᏪᏒ ᏂᎯ ᎾᏍᎩᎾ ᏕᎲᏗᏍᎬ ᏯᎵᎦ ᎣᏍᏛ ᎠᎵᏍᏗ ᎨᏒᎢ;\nᎠᎴ ᎤᏁᎳᎩ ᏤᎵᏎᏅ, ᎠᎴ ᎲᏂᏗᏳ ᎨᏒᎩ, ᎠᎴ ᏓᏆᏙᎥ ᏅᏧᎵᏍᏙᏔᏅ ᎯᎩᎵᏲᎬᎩ, ᎠᎴ ᎥᏝ ᏱᏗᏣᏯᏪᏤᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᏂᎯ ᎢᏨᎨᏳᎢ, ᎢᏣᎵᏘ ᎢᏣᏓᏅᏏ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ.\nᎤᎩᏓᏍᏕ ᎢᎪᎯᏛ ᎠᏂᏃᎩᏍᏗᏍᎬ ᏃᎴ ᎠᎾᎵᏍᎩᏍᎬ ᏃᎴ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ ᏙᏍᏔᏦᏍᎬ.\nᏗᏃᏪᎵᏍᎩᏃ ᎨᏒ ᎠᏏᏴᏫ ᎤᎷᏤᎸ, ᎤᏛᎦᏅ ᎠᎾᎵᏃᎮᏍᎬᎢ, ᎠᎴ ᎤᏙᎴᎰᏒ ᎣᏏᏳ ᏄᏪᏒ ᏚᏁᏤ ᎸᎢ, ᎤᏛᏛᏁᎢ, ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒᎢ? ᎤᏛᏁᎢ.\nᎠᏴ ᏣᏂ ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎦᎵᏉᎩ ᏂᏣᏓᏡᎬ ᎡᏏᏱ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎾᏍᎩ ᎾᏤᎭ, ᎠᎴ ᏤᎲᎩ, ᎠᎴ ᏤᎮᏍᏗ; ᎠᎴ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎾᏍᎩ ᎤᏪᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏣᏁᎭ;\nᎣᏍᏓ ᎾᏛᎦ ᎰᎻ! \nᎠᎴ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏦᎦᏤᎵ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏥᏕᎬᏩᏲᏎ ᏣᎫᎪᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ, ᎠᎴ ᏥᎬᏩᏛᏅᎩ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᎨᏒ ᏗᏅᏃᏛ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᏁᎸᎩ ᎦᎵᏉᎩ ᎫᎫ ᎠᏕᎸᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᏗᎧᎵᎢ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᏤᎭ.\nᎠᏎᏃ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ ᎤᎲᎢ ᎬᏩᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏍᎦᏅᏨᎢ ᎠᏂ ᎡᎶᎯ (ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ,)\nᎠᎴ ᎬᏂᏳᏉ ᏞᎩᏳ ᏓᏥᎷᏥ; ᎠᎴ ᎠᏆᎫᏴᏗ ᏥᏰᎮᏍᏗ, ᎦᏥᏁᏗᏱ ᏋᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ.\nᏄᏍᏛ ᎠᏆᎴᏂᏙᎸ ᏥᏫᏄᏣ ᏅᏧᎵᏍᏔᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎦᏥᏰᎳᏗᏙᎸᎩ ᏗᏆᏤᎵ ᏴᏫ ᏥᎷᏏᎻ, ᏂᎦᏛ ᎠᏂᏧᏏ ᎠᏂᎦᏔᎭ,\nᏈᏓᏍᎩᏂ ᏙᏱᏗᏢᏉ ᎦᎶᎯᏍᏗᏱ ᎤᎴᏅᎩ. ᎿᏉᏃ ᎾᏍᎩ Ꮎ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎦᏔᎯ, ᎤᏄᎪᏨᎩ, ᏭᎵᏃᎮᏔᏅᎩ ᎠᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ, ᎠᎴ ᎤᏴᏔᏅᎩ ᏈᏓ.\nᏐᏈᎵ ᏚᏂᏌᎵᏓᏁ ᏗᏂᎴᏂ ᎤᎾᏛᎦᎾ ᏌᏌ ᎤᏪᎷᎬ; ᏂᎪᎯᎸᎾ ᏂᎦᏓ ᎠᏂᎦᏔᎮᎢ.\nᎤᏙᎯᏳ ᎣᏍᏓ ᎡᎶᎯ ᎯᏓᎯ ᏱᎩ.\nᎬᏩᏁᏤᎸ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎠᏴ ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ, ᎠᎴ ᎥᏝ ᎢᎸᎯᏳᎩᎶ ᏱᏙᎩᎾᏢᏃᎢ, ᎦᏙᏃ ᏂᏕᏥᎾᏝᎥᎾ ᏅᏓᏰᏨᏁᎵ, ᏣᏗᎭ?\nᏗᏓᏘᏂᏙᎯ ᎾᏍᎩ ᏚᏪᏲᏁ ᎢᏳᎾᏛᏁᏗ ᎤᏂᎦᏛᎴᎯᏍᏗ ᎾᎦᎥᎢ. ᎢᎾ ᎢᎭᏘ ᏣᎴᏗ ᎯᎠ ᏧᏟᏂᎩᏓ ᏕᏈᎬᎢ ᎾᏍᎩᏯᎢ. ᏣᏟᏂᎩᏓ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎠᏍᎦᏯ ᎤᏪᏰᏂ ᎤᏩᎢᏎᎸᎯ; ᎠᏰᎵ ᎭᎴᎲᎦ.\nᎢᏳᏍᎩᏂ ᏕᎭᏕᎳᏍᏗᏍᎨᏍᏗ, ᏫᏘᏯᏂᏍᎨᏍᏗ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎪᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᎤᏂᏲᎱᏎᎸᎯ, ᏗᏂᏲᏅᎵ, ᎠᎴ ᏗᏂᎨᏫ;\nᏧᎬᏩᎶᏗ ᎡᏥᏩᎯᏍᏔᏅᎯ; ᏞᏍᏗ ᏴᏫᏉ ᏗᎨᏥᎾᏝᎢ ᏱᎨᏎᏍᏗ.\nᎿᏉᏃ ᎠᏚᎸᏗ ᎨᏒ ᎠᏙᏢᎾ ᎠᏍᎦᏂ ᎦᎾᏄᎪᏫᏍᎪᎢ; ᎠᏍᎦᏂᏃ ᎠᏍᏆᏓ ᎿᏉ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎪᎢ.\nᏐᏉ ᎠᏓᏁᎸ ᎠᏦᎭᏱᏍᏙᏗ ᎠᏓ ᎬᏘ ᎠᏲᏓᏌᎲ, ᎠᏓ ᏃᎴ ᎦᏓᏆᏟ ᎬᏘ ᎠᎱᏣᏬᎳᏛ, ᏗᏒᏆᎶᏍᏗ ᎪᏒᏔᏅ ᏎᎷ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎦᏂᏏ ᎠᎴ ᏔᎵ, ᏐᏉ ᎦᏍᎩᎸ, ᏗᎬᏅ ᏗᎦᏍᎩᎶ.\n”ᏫᎵᎻ ᏓᏥᏩᏛᎮᏏ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\n ᎨᏍᏗ ᏱᏥᎦᏔ ᎤᏰᎸᏛ ᏍᎩᎾᎾ ᎢᎦᏪᏍᏗ.”\n“Ꭷ,” ᎤᏛᏁ.\nᎠᏆᏚᎸᎲᏃ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎬᏬᎯᏍᏗᏍᎬᎢ, ᏥᏯᏘᏃᎸᎩ ᏓᏂᎳᏫᎥᎢ.\nᏃᏗ ᏭᎩᏎ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ.\nᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᎤᎾᏞᏒ, ᎯᎠ ᏥᎾᏂᏪᎠ, ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᎦᏳᎳ ᎤᎶ ᏐᏅ; ᎠᎴ ᏓᏂᎷᏆᏗᏁᎭ ᎢᎦᏛ ᎤᏃᎯᏳᏒᎢ.\nᏙᏌ ᎤᏍᎦᎸᏨ ᏓᏳᏓᎴᏅᏓ ᎠᏳᎩ ᎤᏨᎬ ᎾᏍᎩᏴ.\nPerry ᎨᏍᏗ ᎣᏍᏓ ᏯᏏᎾᏎ ᎤᏆᏂᏲᏍᏘ, ᎠᏎᎩ ᏱᏚᎾᏓᏍᏕᏓᎵᏴᎾ ᏱᎨᏎ ᎠᏕᎳ.\n“ᎲᎦ ᎢᏳᏕᏘᏴᏓ ᏲᎾ ᎤᏤᏍᏙ?”\nᏱᏗᏣᏓᏟᏴᎾ ᏳᏫᏣᏴᎳ, ᎡᏣᏙᏁᏓ ᏰᎳ ᎰᎻ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏭᏙᏯᏅᎯᏛ ᏭᏂᏴᎲᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏍᏗ ᏦᎯᏳᎯ, ᎦᏙᎯ ᎥᏣᏜᏏᏛᏏ?\nᏐᏓᎻᏃ ᎠᎴ ᎪᎹᎵ ᏕᎦᏚᎲ ᎪᏍᏚᏥᏂᏚᏩᏁᎴᎢ, ᎠᎴ ᏥᏚᏭᎪᏓᏁᎴ ᏧᎷᏆᏗᏅᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏯᏔᎲᏍᎩ ᏥᏂᏚᏩᏁᎸ ᎣᏂ ᎤᎾᏕᏗ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᎨᏒᎢ,\nᎤᎴᏅᎮᏃ ᏚᏬᏁᏔᏁ ᏓᏟᎶᏍᏗᏍᎬᎢ. ᎩᎶ ᎢᏳᏍᏗ ᏖᎸᎳᏗ ᏚᏫᏎᎢ, ᎠᎴ ᎤᏐᏱᎴ ᎬᏩᏚᏫᏛ, ᎠᎴ ᎤᏍᎪᏎ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎪᏢᏗᏱ, ᎠᎴ ᎤᏁᏍᎨᎮ ᎢᏅ ᎢᎦᏘ, ᎠᎴ ᏚᏙᎳᏍᏔᏁ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎢᏅ ᏭᎶᏎᎢ.\nᎢᏯᏔᏬᏍᏔᏅ ᎣᏁ ᎢᏴ, ᎤᏅᏏᏴ ᎡᏓᏍᏗ ᎤᏬᏞ ᏲᎾ ᎤᏤᏍᏙ ᎤᏄᏞ ᎤᏤᎵ ᎤᏍᏗ, ᎨᏲᎲᏍᎨ ᎫᎫ ᎤᏍᏛᎢᏍᏗ.\nᎯᎠ ᎾᏍᎩ ᎼᏏ ᎾᏍᎩ ᎯᎠ ᏥᏂᏚᏪᏎᎴ ᎢᏏᎵ ᏧᏪᏥ; ᎤᎬᏫᏳᎯ ᎢᏣᏁᎳᏅᎯ ᏓᏥᎾᏄᎪᏫᏎᎵ ᎠᏙᎴᎰᏍᎩ ᎢᏣᎵᏅᏟ ᎨᏒ ᏓᎦᎾᏄᎪᏥ ᎠᏴ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᏓᏰᏣᏛᎦᏁᎵ.\n“ᏌᏌ ᎠᏂᏓ, ᏐᏉ ᎦᎵᏉᎩ ᏩᏍᏗ?”\nᎤᏔᎳᏭᏎᏃ ᎤᎾᏝᎢ, ᎠᎴ ᏫᏚᏲᎯᏎᎴ ᏗᎾᏓᏍᏚᎲᏍᎩ ᎤᎫᏴᎰᎲᏍᏗᏱ ᏂᎦᏛ ᎠᏥᏚᎬ ᎢᎪᎯᏛ.\n“ᎬᏲᎵᎭᏛ ᎱᏛᏁᎢ.\nᎡᏝᏪᎯ ᏄᎵᏍᏔᏃᏁ.\nᎾᎿᏃ ᏚᎴᏅ, ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎠᏍᏛ ᏭᎷᏤᎢ, ᎠᎴ ᎠᏣᏁᎸ ᏭᏴᎸ, ᎥᏝ ᏳᏚᎵᏍᎨ ᎩᎶ ᎤᏙᎴᎰᎯᏍᏗᏱ; ᎠᏎᏃ ᎥᏝ ᎬᏩᏗᏍᎦᎶᏗ ᏱᎨᏎᎢ.\nᏌᏌ ᎤᎷᏤ ᎾᏍᎩᏴ, ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ ᎫᏩᏍᏓᏩᏗᏎ.\nᎾᏍᎩ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎾᏍᎩ ᎯᎠ ᎡᎶᎯ ᎤᏁᎳᏅᎯ ᎤᏰᎸᎯ ᏚᎵᏏᎲᏍᏓᏁᎸ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᏧᏂᎸᏌᏓᏕᏗᏱ ᏂᎨᏒᎾ ᎢᎦ-ᎦᏛ ᎤᏘᏍᏛ ᎦᎸᏉᏗᏳ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏥᎩ.\nᎠᏎᏃ ᎠᎦᏔᎮ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎦᏯ ᎤᏩᎢᏎᎸᎯ ᎤᏬᏰᏂ; ᏔᎴᎲᎦ, ᎠᎴ ᎠᏰᎵ ᎭᎴᏂᎦ. ᏚᎴᏅᏃ ᎤᎴᏂᎴᎢ.\nᎠᏎᏃ ᎤᎾᎦᏙᏍᏔᏅᎩ, ᏓᎪᏘᏏ ᎠᎴ ᎤᏲᎱᏒᎯ ᏓᎦᏅᏥ ᏛᏰᎶᎢᏍᏔᏂ, ᎠᏁᎵᏍᎬᎩ; ᎠᏎᏃ ᎤᏬᎯᏨ ᎤᎾᎦᏙᏍᏔᏅ, ᎠᎴ ᎤᎾᏙᎴᎰᏒ ᎪᎱᏍᏗ ᏄᎵᏍᏓᏁᎸᎾ ᎨᏒᎢ, ᎤᏂᏁᏟᏴᏒᎩ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎦᎸᎳᏗ ᎡᎯ, ᎤᎾᏛᏅᎩ.\nᏍᎩᏴ ᎠᏓᎴᏂᏍᎩ ᎤᏓᏍᏕᏓᎵᏴᏒ ᎦᏚᎲ.\nᎠᏂᏐᎢᏃ ᎢᎦᏛ ᏧᏯᏕᎾ ᏧᎾᎩᎸᏙᏗᏱ, ᎢᎦᏛᏃ ᏥᏳ ᏧᎵᏢᎸᏛ. ᎠᎴ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎩ, ᏂᎦᏛ ᎤᎾᏛᏂᏛᎩ ᎤᎾᏚᎩᏒᎩ.\nᎠᏓᏰᏍᎩᏃ ᎤᏢᎩ ᎤᎷᏤᎴᎢ, ᎤᏓᏙᎵᏍᏓᏁᎴ ᏚᎵᏂᏆᏅᏁᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ, ᏰᎵᏉ ᏱᏍᎩᏅᎦᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᏔᏲᏏ ᎤᎶᎨᏛ ᏧᏅᏍᏗᏱ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᎦᏛᎾᏤᎸᎢ.\nᏫᏥ ᎢᏯᏂ ᎤᏐᏱ ᏗᎨᎦᏃᏗ ᎨᏎ, ᏐᏉ ᎤᏩᏌ ᎤᏍᏗ ᎠᏣᏗ Ꮳ.\nᎠᎴ ᎾᏍᏉ ᎢᎦ ᎠᏑᏰᎭ, ᎯᎠ ᏂᎦᏪᎭ ᎤᏬᎯᏨᎯ ᎣᏂ ᏕᏫ ᎠᎬᏗᏍᎬᎢ, ᎪᎯ ᎢᎦ, ᎾᏍᎩᏯ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ, ᎪᎯ ᎢᎦ, ᎢᏳᏃ ᎧᏁᎬ ᎢᏣᏛᎪᏗᏱ ᎢᏣᏑᎵᏍᎨᏍᏗ, ᏞᏍᏗ ᏱᏗᏥᏍᏓᏲᏔᏁᏍᏗ ᏗᏥᎾᏫ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎯᎠ ᏅᏓᎦᏛᏁᎵ; ᏙᏓᏥᏲᏍᏔᏂ ᎠᎩᏅᏗᏱ ᏓᏓᏁᎸᎢ, ᏧᏛᏂᏗᏃ ᏓᏓᎦᏁᏍᎨᎯ; ᎾᎿᏃ ᏓᏥᏂ ᏂᎦᏛ ᎠᏆᏛᎯᏎᎸᎯ ᎠᎴ ᎠᎩᎾᎥᎢ.\nᏃᎴᏍᏉ ᏎᎦᎾᎨᏍᏗ ᏫᎯᎷᏨ ᏗᎦᏦᎯᏍᏗ ᏏᏆ ᎠᏍᏚᏗᎯ!” \nᎾᏄᏍᏗ ᏂᎦᏪ ᏃᏉ!” \nᎯᎠ ᏄᏪᏒ Crockett, ᏩᎾᏗ ᎤᏉᏅᏗ, ᏃᎴ ᎤᏋᏂᏍᏗ, ᎨᏍᏗ ᎠᏓᎸᏉᏙᏗ ᏱᎩ.\nᏙᏱᏨ ᎤᏪᏅᏎ.\nᏑᏒᎯᏓ ᎠᎬᏱ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᎤᎴᏅᏗ, ᏂᎦᏓ ᎠᎯᏗᎨᏍᏗ ᎤᏂᏟᏅᏤ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏲᏪᎳᏏ ᎦᏥᏁᎢᏍᏗᏍᎬ ᎾᏍᎩ Ꮎ ᎨᏥᎵᏓᏍᏗᏍᎩ.\nᎢᏳᏰᏃ ᏰᎵᏉ ᏱᎨᏎᎢ, Ꮭ ᏱᎬᏩᏂᎦᎯᏍᏔᏁ ᏧᎾᎵᏍᎪᎸᏗᏍᎬᎢ; ᎠᎾᎵᏍᎪᎸᏗᏍᎩᏰᏃ ᎨᏒ ᏌᏉ ᏱᏄᎾᏓᏅᎦᎸᎮ ᎥᏝ ᎿᏉ ᎠᏂᏍᎦᎾ ᏱᎬᏩᏂᏰᎸᏎᎢ.\nᏂᎦᏗᏃ ᎬᏩᏰᏍᏔᏁ.\nᎾᎯᏳᏃ ᎾᏍᎩ ᎯᎠ ᎾᏂᎦᏔᎲᎾ ᏥᎨᏎᎢ ᎤᏁᎳᏅᎯ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎢ; ᎠᏎᏃ ᎿᏉ ᏕᎧᏁᏤᎭ ᎾᏂᎥ ᏴᏫ ᏂᎬᎾᏛᎢ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾ ᏓᏅᏛᎢ;\nᏚᏔᏲᎡᎸᏃ ᎤᏂᏴᏍᏗᏱ, ᎠᎴ ᏚᏍᏆᏂᎪᏔᏁᎢ. ᎤᎩᏨᏛᏃ ᏈᏓ ᏕᎤᏍᏓᏩᏛᏎᎢ, ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎾᎵᏅᏟ ᏦᏈ ᎠᏁᎯ ᎬᏩᎵᎪᏁᎴᎢ.\nᏈᏓᏃ ᎠᎴ ᏣᏂ ᎢᏧᎳᎭ ᎤᏁᏅᎭ ᎤᏛᏅ-ᏗᎦᎳᏫᎢ-ᏍᏗᏱ, ᎠᏓᏙᎵᏍᏙᏗᏱ ᎨᏒ ᎢᏳᎢ, ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒᎢ.\nᎢᎦᏛᏃ ᎤᎾᏓᏑᏴ ᎤᏃᎯᏳᏅᎩ, ᎠᎴ ᏚᎾᎵᎪᏁᎸᎩ ᏉᎳ ᎠᎴ ᏌᏱᎳ, ᎠᎴ ᎤᏂᏣᏔᏅᎯ ᎠᏂᎪᎢ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᎠᏂᎦᏲᎵᏉ ᏂᎨᏒᎾ ᏄᏂᎬᏫᏳᏒ ᎠᏂᎨᏴ.\n(ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏙᏓ ᏂᎬᏴᎦ,) ᎠᎦᏔᎲ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏥᎪᎯᏳᎲᏍᎨᎢ, ᎾᏍᎩ ᏗᎬᏂᏗᏍᎩ ᏥᎩ ᏧᏂᏲᎱᏒᎯ, ᎠᎴ ᏗᏯᏂᏍᎩ ᏥᎩ ᏧᎾᏓᎴᏅᏛ ᎾᏍᎩ ᎾᏁᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏣᏁᎰ ᎾᏍᎩᏯᎢ;\nᎾᏍᎩ ᎤᏂᏃᎮᎸᎯ ᏥᎩ ᏣᏓᎨᏳᎯᏳ ᎨᏒ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏂᎦᏔᎲᎢ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏘᏍᏕᎸᎲ ᎠᎾᎢᏒᎢ, ᎤᏁᎳᏅᎯ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎢᏳᎾᏛᏁᏗ, ᎣᏏᏳ ᏅᏔᏛᏁᎵ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏣᏂ ᏗᏓᏬᏍᎩ; ᎢᎦᏛᏍᎩᏂ ᎢᎳᏯ [ᎠᎾᏗᎭ;] ᎢᎦᏛᏃ, ᎩᎶ ᎢᏳᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ.\nᎢᏥᎦᏔᎭᏰᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏪᎾᎢᏳ ᏥᎨᏎᎢ, ᎠᏎᏃ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏄᎵᏍᏔᏅᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎨᏒ ᎢᏳᏩᏂᏐᏗᏱ ᏂᎯ ᏗᏤᎿᎢ ᎢᏣᎵᏍᏙᏗᏱ.\nᎨᏍᏗᏗ ᏳᏓᎴᏣ.\nᏦᎢ ᎢᏳᏩᎫᏗ ᎦᎾᏍᏓ ᏕᎬᎩᎵᎥᏂᏍᏔᏅᎩ; ᏌᏉ ᏅᏯ ᏂᏕᎬᏋᏂᏍᏔᏅᎩ; ᏦᎢ ᎢᏳᏩᎫᏗ ᏥᏳ ᎠᏆᏦᏛ ᎤᏲᏨᎩ; ᎤᎵᏨᏓᏆᏛ ᎠᎴ ᎤᏙᏓᏆᏛ ᎠᏍᏛᎬ ᎾᏆᏛᏅᎩ;\n[ᏥᏌᏃ ᏚᏅᏎ ᏈᏓ ᎠᎴ ᏣᏂ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏍᏕᎾ ᏫᏍᏓᏛᏅᎢᏍᏓ ᎧᏃᎯᏰᎩ, ᎾᏍᎩ ᎢᎦᎵᏍᏓᏗᏱ.\nᎠᎴ ᎾᏍᎩ ᎠᏥᏅᏩᏅᎯ ᎥᏝ ᏯᎦᏔᎮ ᎾᏍᎩ ᎨᏒᎢ; ᏥᏌᏰᏃ ᎤᏕᎵᏛ ᎤᏓᏅᏒᎩ; ᎤᏂᏣᏛᏰᏃ ᎾᎿ ᎠᏁᏙᎲᎩ.\nᎢᏣᏛᏓᏍᏓ; ᎬᏂᏳᏉ, ᎠᏫᏍᎩ ᎤᏫᏒᏎᎢ;\nᎤᏰᏤ ᏧᏍᏆᏴᏍᏗ ᎦᏅᎨᎢᏉ.\nᎠᎴ ᏂᎦᏗᏳ ᏴᏫ ᎨᏥᏍᎦᎩ ᎨᏎᏍᏗ ᏴᏫ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎠᎴ ᎥᏝ ᏳᎾᏓᏎᎪᎩᏎᎢ; ᎥᏝ ᎠᎴ ᎿᏉ ᎢᎸᎯᏳ ᏳᏂᏩᏛᎮ ᎦᎸᎳᏗ ᎤᎾᏕᏗᏱ.\nᏂᏥᎪᎸᎾ ᎢᏨᏁᏗ ᎨᏎᏍᏗ, ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᏗᎨᏥᎸᏫᏍᏓᏁᏗ ᎣᏏᏳ ᎤᏰᎸᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᎢᏣᏛᏁᏗᏱ ᏂᏨᏁᎲ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ; ᎾᏍᎩ ᎠᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎠᎺᏅ.\nᎠᏴ ᎢᎦᎦᏘ ᎡᎶᎯ ᎠᎩᎷᏥᎸ, ᎾᏍᎩ ᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎿᏉ ᎤᎵᏏᎬ ᎤᏕᏗ ᏱᎨᏎᏍᏗ.\nᏥᏌᏃ ᎤᏙᎴᎰᏒ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᎵᏃᎮᎭ ᎦᏚ ᏂᏗᏥᏰᎲᎾ ᎨᏒ ᎢᏳᏍᏗ? ᎠᏏᏉᏍᎪ ᏂᏣᏙᎴᎰᏍᎬᎾ ᎢᎩ, ᎠᎴ ᏂᏦᎵᎬᎾ ᎢᎩ? ᎠᏏᏉᏍᎪ ᎠᏍᏓᏯ ᏂᏕᏨᏅ ᏗᏥᎾᏫ?\nᎤᎩᏨᏛᏃ ᏇᏗᏂᏱ ᏧᏂᎶᏒ ᎠᎪᏄ ᎤᏲᏏᏍᎨᎢ;\nᎠᏆᏅᏛ, ᏰᎵ ᎪᎯᏛ ᎣᎩᎵᏦᏩᏔᏅ ᎠᏙᎯ ᎠᏂᏲᏍᎩ, ᏓᎩᏯᏪᏨ ᎠᏂᏲᏍᎩ ᎤᏩᏌ ᎣᎦᎵᎪᏅ. ᎠᏂᎨᏯ ᎣᎦᎵᎪᏘ ᎠᏆᏚᎵᏍᎬ.\nᎤᏓᎴᏨᏉ ᎨᏒ.\nᎠᏎᏃ ᎤᎦᏔᎲᏒ ᏚᎬᏍᎪᎸᏁ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏍᏗᎦᏔᎭ ᏄᏍᏛ ᎠᏓᏅᏙ ᎢᏍᏗᎲᎢ.\nᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎠᏥᏃᎮᏍᎬ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪ-ᏪᎳ; ᎬᏂᏳᏉ ᏥᏅᎵ ᏥᏅᏏᏓᏍᏗ ᏣᎧᏛ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᏓᏣᏛᏅᎢᏍᏓᏁᎵ ᏣᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ.\n“Ꮒ! Ꮒ!” ᎠᏗᎮ ᏙᏯ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏌᏓᏠᎦ, ᎠᎴ ᏔᎳᏑᎸᎦ. ᎾᏍᎩᏃ ᏄᏛᏁᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎭᏄᏬᏣ ᎠᎴ ᏍᎩᏍᏓᏩᏚᎦ.\nᎠᎾᎦᏴᎵᎨᏃ ᎠᏂᎨᏴ ᏗᏣᏥ ᎾᏍᎩᏯᎢ, ᎠᏂᏫᏅᎨᏃ ᎠᏂᎨᏴ ᏤᏣᏙ ᎾᏍᎩᏯᎢ, ᎤᏐᏅ ᏄᏓᏑᏴᎾ.\nᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᎪᎵ ᏫᎵᎻ.\nᏃᎦᏓᏅᎦᎸᎾ ᎨᏒᎢ, ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎪᎯᏙᏳ ᎤᏁᎳᎩ ᎣᏤᎵᏎᎬᎢ, ᎣᎦᏓᏅᏘᏳ ᎨᏒᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎣᎨᎲᎢ, ᏄᏠᎾᏍᏛᎾ ᎠᏓᎨᏳᏗ ᎣᎨᎲᎢ.\nᏍᏗ ᎪᎰᏍᏗ ᎤᏰᎸᏗ ᏱᎨᏎ ᏩᏏᏓᏂ ᎦᏚᎲᎢ.\nᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᏓᎾᏛᏓᏍᏓᏁᎲᎾ ᏱᎩ ᎼᏏ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ, ᎥᏝ ᎾᏍᏉ ᏴᎬᏃᎯᏳᎲᎦ, ᎾᏍᏉ ᎩᎶ ᎤᏲᎱᏒᎯ ᏱᏚᎴᏅ.\nᎭᏢ ᎠᏏᎾᏌᏂ? ᎭᏢ ᏗᎪᏪᎵᏍᎩ? ᎭᏢ ᎦᏬᏂᏍᎬ ᎠᏗᏒᎯᎯ ᎠᏂ ᎡᎶᎯ ᎡᎯ? ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᎠᎵᏍᎦᏁᏛᏉ ᏱᏄᏩᏁᎸ ᎠᏏᎾᏌᏅ ᎡᎶᎯ?\nᏂᎦᏓ ᎤᏃᏴᎬ ᎤᏩᏙᎯᏴᏓ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᎤᏓᏅᏖ, ᎣᏍᏓ ᎤᏰᎸᎮ ᎬᏅᎢ ᏃᎴ ᎡᎶ ᎡᎲᎢ ᎯᎪ ᎪᎨ ᎤᏓᏏᏂᏕᎾ.\nᎠᏯ ᎾᏆᏔᏅ ᏂᏣᏛᎾ.\nᏥᏌ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎩᎶ ᏳᏗᏔᎲ ᎯᎠ ᎠᎹ ᏔᎵᏁᏉ ᎤᏔᏕᎪᏗ;\nᎪᎯᏓ ᎤᎪᎵᏰᎥ ᎤᏬᏩ ᏃᎴ ᎦᏰᏌᏛ ᏭᏭᏍᏔᏅ, ᎬᏨᎢᏍᏗᏍᎩ ᏭᏩᏌᏙᎭᏴ ᎭᏂᏨ ᎦᏍᎩᎸ.\nᏏᏊᏃ Ꮎ ᎠᏧᏣ ᎯᎠ ᎢᏄᏪᏎᎴᎢ ᎢᏈᎬᎢ, ᏂᎯᎾᎲ!\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏗᏥᏄᎦ ᎢᎦᏛ ᎠᏣᏗ ᎩᎳᏉ ᏥᏕᏥᏂᏴ.\nᎠᏤᎯ ᎡᎾᎢ ᏚᏂᏂᎬᎪ ᏧᎾᏛᎯᏍᏗᏍᎩ.\nᎠᏍᎦᏯ ᎤᎨᏳᏎᏍᏗ ᎤᏓᎵᎢ ᎾᏍᎩᏯ ᎤᎨᏳᏗ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᎨᏴ ᎤᎨᏳᏎᏍᏗ ᎤᏰᎯ.\nᎨᏍᏗ ᏄᎶᏐᏍᏛᎾ ᏱᎩ.\nᎦᎵᏦᏕ ᏭᏴᎴ ᎠᏌᏃ ᎱᎿᏬᎡ, ᎬᎩᏍᏗ ᎢᏳᏍᏗ ᏗᎧᏃᏗ ᏃᎴ ᎠᎵᏍᏇᏔᏬ ᎠᎾᎵᎪᎲᏍᎩ.\nᎤᏲᎱᏒᎯᏃ ᏓᏳᏄᎪᏨᎩ, ᏧᏬᏰᏂ ᎠᎴ ᏧᎳᏎᏕᏂ ᏚᏓᎸᏍᏛᎩ ᏗᎦᎸᏓᎸᏛ ᏗᏄᏬ, ᎤᎧᏛᏃ ᎠᏯᏠ ᎤᏓᎸᏍᏛᎩ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏣᎸᏒ ᎠᎴ ᏤᏥᏲᎯ.\nᎿᏉᏃ ᎺᎵ ᎤᎩᏒᎩ ᏑᏓᎨᏛ ᎠᏠᏁᏗ ᎾᏓ ᏧᏙᎢᏛ ᎪᎱᏍᏗ ᎾᏑᏴᎾ, ᎤᏣᏘ ᏧᎬᏩᎶᏗ, ᎠᎴ ᏚᏅᎵᏰᎥᎩ ᏥᏌ ᏧᎳᏏᏕᏂ, ᎠᎴ ᎤᏍᏘᏰᎬ ᎤᏩᏔᏅᎩ ᏚᏅᎦᎸᎲᎩ ᏧᎳᏏᏕᏂ. ᎠᎴ ᎦᎵᏦᏕ ᎤᎧᎵᏨᎩ ᎦᏩᏒᎬ ᎠᏠᏁᏗ.\nᎠᏎᏉ ᎥᎩᏅᏏᏓ ᎨᏎᏍᏗ ᎠᎴ ᎧᏂᎩᏓᏉ.\nᎾᎯᏳ ᎢᎦ ᏓᏆᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ; ᎥᏝᏃ ᎠᎦᏴᎵᎨ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ ᏂᎯ ᎢᏥᏍᏕᎸᏗᏱ ᏱᏨᏲᏎᎭ;\nᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎢᏨᏗᏍᎬ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎬᏗ ᏤᏥᏍᏆᏂᎪᏗ ᎡᏥᏍᏕᎸᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎾᏍᎩ ᎡᏥᏍᏕᎸᏗ ᎨᏒ ᏣᏛᏅᎢᏍᏗ ᎬᏂᎨᏒ ᎢᎬᏁᏗᏱ ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ.\nᎯᎸᎢᏴ ᏱᏚᏯᏪᏣ ᏫᎵᎻ ᎠᏁᎵᏗ ᎦᏅᎬ ᎤᎵᏗᏨ ᎠᏥᎸᎥᏍᎨ.\nᎾᏍᎩᏃ ᏄᏪᏒ ᎤᏓᏅᏒᎩ, ᎠᎴ ᎤᏕᎵᏛ ᏭᏯᏅᎲᎩ ᎤᎸᎢ ᎺᎵ, ᎯᎠ ᏄᏪᏒᎩ; ᏗᏕᏲᎲᏍᎩ ᎦᎷᎩ ᎠᎴ ᏗᏣᏯᏂᎭ.\nᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩ ᏂᏣᏴᏢᎾ ᎠᎴ ᏂᏣᏗᎴᎬᎾ ᎨᏒᎢ; ᎤᏟ ᏱᏥᏰᎸᎾ ᏱᏣᏴᏜ ᎠᎴ ᏱᏣᏗᎴᎦᏉ.\nᎡᏘᏴ ᏥᎨᏒ ᎠᏂᏣᎳᎩ ᎠᏂᏴᏫ ᏙᎯᏯᎾᏊ ᏣᏁᎮᎢ ᎢᎾᎨᎢ ᎦᏚᏏ.\nᏰᎵᏉ ᏯᏓᏅᏛᎳ ᎤᏍᏓᎦᏴᎯᏓ ᏗᎦᏒᏍᏔᏅ ᏏᏆ ᎭᏫᏯ ᏃᎴ ᎣᏍᏓ ᎠᎩᏍᏗ ᎨᏒᎢ.\nᎣᎩᎵᏦᏫᏛ ᎤᏟᏂᎩᏛ ᎨᏴ ᎾᎥᏂ, ᏲᎾ ᎤᏤᏍᏙ ᏗᎦᏯᎵ ᏕᎫᎲ ᏤᏆ ᏅᏯ.\nᎤᏚᎸᎲᏃ ᎡᎧᏯ ᎤᏪᏅᏍᏗᏱ, ᎠᎾᏓᏅᏟ ᎤᏃᏪᎳᏅᎩ ᏗᏂᏔᏲᏎᎸᎩ ᎠᏃᎯᏳᎲᏍᎩ ᏗᎬᏩᏓᏂᎸᎢᏍᏗᏱ; ᎾᏍᎩᏃ ᏭᎷᏨ, ᎤᏣᏘ ᏚᏍᏕᎸᎲᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏣᏛ ᎢᏳᏩᏂᏌᏛ ᎤᏃᎯᏳᏅᎯ.\nᎧᏁᏌ ᎦᎵᏗᏓᏅ ᏕᎦᏒᏛ ᏧᏏᏩ ᏓᏍᏆᏚᎸ, ᏓᏦᎭᏴ ᎤᏏᏩ ᎨᏒ ᏗᏥᎶᏍᏔᏅ.\nᎥᏝ ᎠᎴ ᏰᎵ ᎬᏩᏃᎯᏳᏙᏗ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᎿᏉ ᏥᎬᏇᎯᏍᏗᎭ.\n“ᎣᏏᏉᏗ ᎤᏪᎷᏁ ᎰᎻ.\nᎠᏎᏃ ᎨᏍᏗ ᏱᏓᎪᎢᏳᏂ ᎡᏣᏈᏳᎡᏗ ᏕᏣᏒᏅ ᎠᏕᎳ, ᏥᏄᎦᏌᏍᏗᏉ ᏥᏔᏲᎯ.\nᎠᎴ ᎤᏂᏣᏘ ᏑᏰᎵᎯᏍᏔᏅᎩ, ᎠᎴ ᏥᏳᎯ ᏭᏣᏅᎩ, ᎠᎴ ᎹᎩᏕᎵ ᏭᎾᏄᎪᏨᎩ.\n“ᎣᏏᏉᏍᎪ ᏗᎧᏃᏗ?” ᎤᏛᏛᏁ ᎦᏂᎦᏔ.\nᎢᏥᎾᏄᎪᏩᏲᎪ ᎠᏙᎴᎰᎯᏍᏙᏗ ᏕᏥᏁᏟᏴᏒ ᏕᏣᏓᏅᏛᎢ;\nᎪᎯᎢᏴ, ᎤᎪᎮᎢ ᎤᏓᎴᏨ ᏗᎧᏃᏗ ᎠᏣᏗ, ᏍᏈᏍᏓ ᏚᏣᎡᎢ ᎠᏍᎪᎵ.\nᎤᏅᎪᏨ ᏚᏑᎬ ᎭᏫᏂᏨ, ᎤᏩᏨᏩᏍᏔᏅ ᏧᏍᏆᏅᎾ, ᎨᏓᎵ ᎤᏪᏅᏒ ᎤᎧᎭᏛ ᎦᏓᏁᏍᏙ ᎠᏙᎯ.\nᎠᏂᏍᎦᏰᎬᏍᏔ ᎠᏂᏍᎦᏯ ᏕᎦᏘᏁᎬ ᏧᎾᎵᏍᏔᏴᏗ ᏃᎴ ᏧᎾᏗᏔᏍᏗ, ᎭᎾᏉ ᎢᏴ ᏩᎩᏍᏛᏗ ᎨᏒ ᎦᏥᏯᏓᏁᏥᏴᏍᎬ.\nᏂᏗᎦᎵᏂᎬᎬᎾᏰᏃ ᎠᏎ ᏥᎨᏎᎢ, ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎦᎶᏁᏛ ᎢᎩᏲᎱᎯᏎᎴ ᎢᏗᏍᎦᎾᎢ.\nᎾᏍᎩ ᎬᏩᎾᏙᎴᎰᎯᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎨᏒᎢ ᏚᎾᏓᏲᏒ ᎤᎾᎵᏐᏢᎢᏍᏙᏗᏱ, ᏄᏓᎴᏒ ᎦᏓᏒ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏧᎬᏩᎶᏗ ᎤᏂᎬᎥᏍᎬ ᏅᏧᎵᏍᏙᏔᏅ.\nᎢᏨᏒᏰᏃ ᎢᏥᎦᏔᎭ, ᎢᏓᎵᏅᏟ, ᏄᏍᏛ ᏫᏨᎷᏤᎸᎢ, ᎾᏍᎩ ᎠᏎᏉᏉ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎾᎿ ᎢᎩᏙᎵᏨᎯ ᏥᎩ ᎾᏍᎩ ᎠᏥᎨᏳᎢ ᎢᏳᏩᏂᏌᏛ;\nᎾᏂᏚᏍᏗ ᏕᎩᎾᏓᏴᎳᏛ ᎠᎼ ᎭᏫᏂ.\nᎾᎥᏃ ᏭᎷᏨ, ᎾᎿ ᎠᎦᏐᎠᏍᎬ ᎢᏴᏛ ᎣᎵᏩᏲ ᎤᏌᎯᎸᎢ, ᏂᎦᏛ ᎤᏂᏥᏘ ᎨᏒ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎾᎴᏅᎮ ᎠᎾᎵᎮᎵᎨ ᎠᎴ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ ᎠᏍᏓᏯ ᎠᏂᏁᎨᎢ. ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸ ᎤᏂᎪᎲᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪᎭ, ᎯᏰᎩ ᏂᎯ ᎯᎵᎯ, ᎠᎴ ᏔᎴᎲᎦ ᎩᏯᏓᏅᏏ ᏧᏂᏲᎱᏒᎯ ᎩᏯᏓᏑᏴᎢ, ᎦᎶᏁᏛᏃ ᏓᏣᏁᎵ ᎢᎦ-ᎦᏘ.\nᎤᏂᎦᎸᏍᏓᏅ, ᎢᎾᏓ ᎠᏦᏫᏎᏍᎨ ᎠᏥᏂᏴᎲ.\nᎧ, ᎤᎬᏫᏳᎯ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎨᏒ ᎡᎯ, ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ, ᎠᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎤᏩᏒᎯ ᎠᎦᏔᎿᎢ ᎤᏁᎳᏅᎯ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᎴ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ; ᎡᎺᏅ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎠᎩᏅᏏᏛ ᎢᏯᏆᏛᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᎩᏍᏆᏗᏍᏗᏱ, ᎾᏍᎩ ᎠᏴ ᎠᏆᎵᏍᏓᏴᏗ.\nᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎾᏂᎥ ᎾᏍᎩ ᏗᎨᏥᏰᎸᎳᏅᎯ ᎨᏒᎢ; ᎠᎴ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎩ ᏕᎨᏥᏰᎸᏔᏅᎩ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏗᏥᏍᎦᎢᎮᏍᏗ. ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎳ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎤᏕᎵᏛ ᏱᎩ ᎾᏍᎩ ᎠᏙᎴᎰᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏥᏌᏃ ᏚᏌᎳᏓᏅ ᏗᎦᏙᎵ, ᎠᎴ ᏚᎪᎲ ᎤᏂᏣᏘ ᏗᎬᏩᎷᏤᎵᏒᎢ, ᎯᎠ ᏄᏪᏎᎸᎩ ᏈᎵᎩ; ᎭᏢ ᏓᎩᏩᏏ ᎦᏚ ᎯᎠ ᎤᏂᎩᏍᏗ.\nᏝᏍᎪ ᎯᎠ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗ ᏱᎨᏎ ᎦᎶᏁᏛ, ᎠᎴ ᏬᏴᏍᏗ ᏱᎨᏎ ᎦᎸᏉᏗᏳ ᎤᏤᎵ ᏗᎨᏒᎢ.\nᎾᏍᎩᏃ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎢᎤᎷᏨ ᎤᎾᏄᎪᏫᏎᎴ ᎤᏅᏏᏙᎯ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸᎢ. ᎦᏁᎳᏃ ᎤᎾᎸᎯᏳ ᎨᏒ ᎯᎠ ᏄᏪᏎᎴ ᎤᏅᏏᏓᏍᏗ, ᎮᎾ ᏄᎳ ᏫᏴᎲ ᎡᎾᎢᏓᏍᏗᏱ ᎠᎴ ᏧᏍᏗ ᏕᎦᎳᏅᏛᎢ ᎦᏚᎲᎢ, ᎠᎴ ᏕᎭᏘᏃᎸᎭ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎠᎴ ᎪᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᎤᏂᏲᎱᏎᎸᎯ, ᎠᎴ ᏗᏂᏲᎤᎵ, ᎠᎴ ᏗᏂᎨᏫ.\nᎾᎩᎾᏃ ᎪᏍᏓᏱ ᏥᎦᏰᏌᏕ ᏃᎴ ᎦᏅᎯᏓ ᏗᏓᏰᎳᏍᏙᏗ ᎢᏳᏍᏗ ᏥᎨᏎᎢ ᏃᎴ ᎦᏁᎦᏗᏓᎸᎦᏍᏙᏗ ᎢᏳᏍᏗ ᏣᏄᏍᏕ.\nᏰᏥᎸᏉᏔᏅᏃ ᏧᏬᏚᎯ ᏧᏄᏩᎢ, ᎠᎴ ᎯᎠ ᏱᏁᏥᏪᏎᎸ, ᎠᏂ ᎣᏍᏛ ᎨᏒ ᎯᎲᎦ, ᎤᏲᏃ ᎢᏳᏛᎿᏕᎩ ᎯᎠ ᏱᏁᏥᏪᏎᎸ, ᎾᎿ Ꮎ ᎯᏙᎨᏍᏗ, ᎠᎴ ᎠᏂ ᎯᎲᎦ ᎯᏆᎳᏏᏗᏱ ᎠᎩᏍᎩᎸ ᎭᏫᏂᏗᏢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ, ᎡᎩᏚᎦ, ᎥᏝ ᎤᏇᏓᎵ ᏱᎩᏚᎦ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎢᎩᏍᏓᏩᏗᏓᏍᏗᏱ ᎢᏕᎲᎢ.\nᎤᏔᎷᎩᏍᎩ ᎤᏬᏪᎳᏁ ᏌᎳᏓ, ᏃᎴ ᎤᏔᎷᎩᏍᎨ ᏫᎵᎻ ᎠᎦᎵᏍᎬᎢ.\nᏃᎴᏍᏉ, ᏫᏥᎢᏲᏍᏓ ᎨᏒ, ᏔᎵᏍᎪᏔᎵ ᎢᏳᏕᏘᏴᏓ Mrs. Chapman.\nᎤᏁᏤᎸᏃ, ᎯᎠ ᏄᏪᏎᎢ, Ᏺ! ᏂᏦᎯᏳᏒᎾ ᎪᎯ ᏥᏤᎭ! ᎢᎳᎪ ᎢᎪᎯᏛ ᎢᏨᏰᎳᏗᏙᎮᏍᏗ? ᎢᎳᎪ ᎢᎪᎯᏛ ᎤᏁᎳᎩ ᎢᏨᏰᎵᏎᎮᏍᏗ? ᎠᏂ ᎯᏯᏘᏃᎦ.\nᎢᎠᏓᎵᏅᏟ, ᎡᏦᏳᏒ ᎦᎸᏉᏗᏳ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᏞᏍᏗ ᏔᎵ ᏳᏛᏕᏍᏗ ᏗᏓᎸᏉᏙᏗ ᎨᏒᎢ.\nᏂᎦᏛᏃ ᎵᏓ ᎠᎴ ᏎᎶᏂ ᎠᏁᎯ ᎬᏩᎪᎮᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏔᏁᎢ.\nᎤᏬᏘᏒ ᏄᏍᏕ ᏗᎧᏃᏗ ᏃᎴ ᏧᏯᏪᎩ ᏅᏩᏍᏕᎢ.\nᎠᎾᏘᏲᏍᎬ ᎨᏍᏗ ᏳᎾᎵᏍᏖᎸᏔᎾ ᎠᏂᏣᎳᎩ.\nᏥᏁᎦ ᎠᏂᎦᏔᎾᎢ ᏥᎦᏥᏁᏤᎰ ᎾᏍᎩᏯᎢ; ᎢᏥᎪᎵᏯ ᏂᏥᏪᏍᎬᎢ.\nᎤᏍᏗ ᎦᏚᎲ ᎨᏒ.\nᎩᎶᏍᎩᏂ ᎠᏆᏓᏱᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎠᎦᏓᏱᏍᏗ ᎨᏎᏍᏗ ᎠᏂᎦᏔᎲ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ.\nᎤᎩᏨᏓ ᎢᎦ ᎠᎦᏍᎩ ᎣᎩᎳᏦᏩᏔᏅ.\nᏧᏄᏬᏃ ᏚᏔᎷᎩᏍᎨᎢ, ᎤᏣᏘ ᏧᏁᎩᏳ ᎨᏎᎢ ᎥᏃᏥ ᏥᏄᏁᎩᏴ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᎥᏝ ᎩᎶ ᏗᎬᎩᎶᏍᎩ ᎠᏂ ᎡᎶᎯ ᎡᎯ ᎾᏍᎩ ᎢᏧᏁᎬ ᏱᏂᏙᎦᎬᎦ.\nᏃᏗ ᎤᏔᎷᎩᏍᎩ ᏥᎪᏪᎴ ᏓᏏᎳᏛ, ᎢᏳᏍᏗᏉ ᎨᏒ ᎾᏛᏁᎮ ᎤᏔᎷᎪᏗ.\nᎤᏣᏘ ᎢᏨᏲᎢᏳᎭ; ᎤᏣᏘ ᎢᏨᎸᏉᏗᏍᎪᎢ; ᎠᎩᎧᎵᏨᎯ ᎤᎦᎵᏍᏗ ᎨᏒᎢ; ᎤᏣᏔᏅᎯ ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎪ ᏂᎦᎥ ᎣᏥᎩᎵᏲᏥᏙᎲᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᎢᏨᏯᏓᏅᏖᎸ ᎤᎧᎵᏍᏗ ᎣᎦᏓᏅᏓᏛᎩ ᏂᎦᎥ ᎣᏥᎩᎵᏲᎬ ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎬᎢ, ᏂᎯ ᎢᏦᎯᏳᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ.\nᎭᏕᏬ Mr. Cass, ᏃᏉ ᎠᏆᏣᏅᏓᏕ.\nᏃᎴ ᎯᎸᎢᏴ ᎠᏣᏗ ᎤᏍᎦ ᏳᏂᏁᎳ ᏪᏌ, ᎠᏣᏗ ᎢᏳᏍᏗ ᎠᏒᎨ.\nᎠᏎᏃ ᏍᏏᏉᏯ ᎤᏕᎶᏆᎡ ᏄᏓᎴ ᎢᏳᏛᏁᏗᎢ.\nᏥᏌᏃᎤᎪᎲ ᎾᏍᎩ ᎤᏂᏣᏘ ᎠᎾᏁᎷᎩᏍᎬ ᎠᎾᏓᏟᏏᏍᎬᎢ, ᎤᏍᎦᏤ ᎦᏓᎭ ᎠᏓᏅᏙ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏨᎨᏩᎠᎴ ᏗᏣᎵᎡᎾ ᎠᏓᏅᏙ, ᎬᏁᏤᎭ, ᎡᎯᏄᎪᎢ, ᎠᎴ ᏞᏍᏗ ᎿᏉ ᎢᎸᎯᏳ ᏥᎯᏴᎵ.\nᎯᎠᏍᎩᏂᏃᏅ ᏂᎤᏍᏗ ᎢᏣᎭ, ᎾᏍᎩ ᎢᎯᏂᏆᏘᎭ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏂᏂᎦᎴᏓᏂ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏴ ᏥᏥᏂᏆᏘᎭ.\nᏃᎴ ᎭᏫᏂ ᎡᏆ ᎠᏓᏁᎸ, ᏧᏁᎦ ᎦᏍᎩᎸ ᏗᏰᏍᏛᏗ ᏃᎴ ᎠᏕᎳ ᎤᏁᎦ ᏗᎪᏒᏍᏔᏅ ᏴᎩ ᏃᎴ ᏗᏗᏙᏗ ᏃᎴ ᏦᎯᏍᏙᏗ ᏧᏃᏩ.\nᎠᎴ ᏗᎧᏃᎩᏍᏙᏗ ᏗᏂᏃᎩᏍᏗᏍᎩ, ᎠᎴ ᏗᏂᏃᎩᏍᎩ, ᎠᎴ ᎠᏦᏔᏍᏗ ᏗᏂᏃᎩᏍᏗᏍᎩ, ᎠᎴ ᏗᏂᏤᎷᎯᏍᎩ ᎤᎾᏓᏃᏴᎵᏍᏛ ᎥᏝ ᎠᎴ ᎪᏢᏅᎥᏍᎩ ᏄᏓᎴᏒᏉ ᎪᎱᏍᏗ ᎪᏢᏍᎩ ᎿᏉ ᏰᏣᏩᏛᎡᎴᏍᏗ; ᎠᎴ ᏅᏯ ᎠᏍᏙᏍᎩ ᎤᏃᏴᎬ ᎥᏝ ᎿᏉ ᎡᏣᏛᎦᏁᏗ ᏱᎨᏎᏍᏗ;\nᎯᎸᎢᏴ ᏓᏲᎪ ᏓᏏᎳᏛ ᏍᎪᏯ ᏓᎾᏣᏯᎩᏍᎬᎢ, ᎣᏍᏓ ᎢᏳᏩᏁᏗ ᎨᏐ ᎧᏅᏂᏍᎩ ᎧᎵ ᏧᏔᎸᎩᏓ ᏱᎩ.\nᎠᎴ ᎠᏣᏗ ᏯᏔᏲᎯᎭ, ᏥᎪ ᎢᎾᏛᏉ ᏴᎦᏅᎥᏏ?\nᎢᎸᎯᏢᏃ ᎤᏱᎶᎯᏏ ᎤᎩᎸᏍᎪᎢ; ᎠᎴ ᏓᎭᏬᎢᎰᎢ, ᎠᎴ ᏕᎦᎸᏓᎩᏍᎪ ᏕᎦᏄᏙᎬᎢ, ᎠᎴ ᎤᎸᏕᎯᎰᎢ; ᎨᏣᏍᏓᏩᏗᏙᎯᏃ ᎦᏥᏔᏲᏎᎸ ᎤᏂᏄᎪᏫᏍᏗᏱ; ᎠᏎᏃ ᎤᏂᏄᎸᏅᏉ.\nᎠᏰᎴᎩ ᎤᏏᏩᎸ ᎣᎭᏁ ᏥᏥᏯᎧᎯᏯᏍᎬ ᎠᎨᏯ. ᏅᏃ ᎠᏕᎭᏲᎲ ᏭᏂᎷᏣ, ᏕᎦᏆᏛ ᏫᏚᎶᏒ ᏌᏬᏚ ᏕᏥᎪᏩᏘᏍᎬ, ᎠᎬᏱᏣ ᏩᎦᏘᏗᏒ ᏂᎦᏓ ᎣᎬᎭᏂᎸ.\nᏥᏳᎯᏃ ᎤᎾᏣᎢᏒ ᎩᎳᏉ ᎢᏴᏛ ᎬᏬᎵᏤᎢ.\nᏎᎦ ᎤᎾᎴᏫᏍᏔᏁ ᎤᏛᏐᏅ ᎤᏤᏥᏍᏗ ᏗᎦᏂᎩᎸ, ᎠᏆᏛᎦᎾ, ᎠᏇᎵᏒ ᎨᏍᏗ ᏍᎩᎾᎾ ᎢᏳᎾᏛᏁᏗ ᏱᎨᏎ.\nᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᏱᏥᎦᏔᎭ, ᎣᏏᏳ ᏱᏣᏓᏅᏔ ᎾᏍᎩ ᏱᏂᏣᏛᏁᎭ.\nᎡᏆ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏓ ᎦᎶᎯᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏗᏍᏆᏂᎪᏙᏗ, ᏏᏆ ᎤᏴᏍᏗ ᎦᎸᎳᏗᏣ. ᎯᎪ ᏑᎾᎴ ᎤᏪᏝᎴᎾ ᏏᏆ ᏣᏄᏏ, ᎤᏕᎶᎰᏎ ᏓᏏᎳᏛ ᎾᏍᎩᏃ ᎤᎧᎭᏕ, ᎣᏍᏓ ᎠᎪᏩᏛᏗ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎤᎧᎭᏗ ᏱᎩ.\n”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ!” ᏍᏓᏯ ᏄᏪᏎ ᏫᎵᎻ, ᎦᏙ ᏭᏓᏓᎩᏅᏎ.\nᏁᎳᏚ ᎢᏍᎪᎯᏧᏈ ᏔᎵᏍᎪᎯ ᏅᎩ ᏧᏕᏘᏴᏌᏗᏒ ᎠᏥᏁᎴ ᏍᏏᏉᏯ ᎠᏕᎳ ᎤᏁᎦ ᎠᎧᏁᏍᏗ.\nᏫᏥ ᏩᏓᏬᎢᎡ, ᎾᎨᎢᏴ ᎣᏁ ᎢᏣ ᏅᏲ ᎭᏫᏂᏣ ᎤᏛᎦᏁ ᏂᏗᎦᏪᏍᎬ.\nᏥᎻ, ᎤᏁᎳᏅᎯ ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᏅᏏᏛ, ᏫᏥᏲᎵᎦ ᏔᎳᏚ ᏂᏥᎳᏍᏓᎸ ᎢᏣᏗᎦᎴᏲᏨᎯ ᏥᎩ.\nᏥᏲᏎᎸ ᎨᏍᏗᏗ ᏣᏓᏅᏖᏙᏗᏱᎩ ᏱᎬᎾᏦᏎᏛ ᏣᎵ ᏧᏤᎵ ᏴᏫ, ᎠᏆᏑᏯᎩᏍᏗ ᏱᎩ ᎶᏩᏂ ᎠᎴ ᏣᏥ ᎬᎩᏴᏣᎦᏍᏗ ᎠᎴ ᎤᎵᏨᏓᏆᏓ ᎠᏆᏗ ᎠᎩᏰᏨ, ᎬᎩᏯᏣᎦᏍᏗ ᏱᎦᏑᏯᎩ.\nᎥᏝᏰᏃ ᏯᏆᏚᎵ ᎪᎯ ᎨᏒ ᎦᎢᏒ ᎢᏨᎪᏩᏛᏗᏱ; ᎠᏎᏃ ᎤᏚᎩ ᎠᏋᎭ ᎢᎸᏍᎩ ᎢᎪᎯᏛ ᎢᏨᏯᏕᏁᏗᏱ, ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎣᏏᏳ ᏳᏰᎸᏅ.\nᎾᏍᎩ ᎯᎠ ᎢᎬᏱᏱ ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᏗᎧᎿᏩᏛᏍᏗ.\nᎤᏣᏘᏂᏍᎩᏂ ᏂᏣᏛᏁᎭ, ᎠᎴ ᏧᎬᏩᎶᏗ ᏕᏥᎩᎡᎭ, ᎠᎴ ᎾᏍᎩ ᎢᏣᎵᏅᏟ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᎳᏗᏍᏗᏱ ᏥᎯᎳᏓ ᏣᏤᎵ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ, ᏂᎦᏛᏰᏃ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎠᏂᏱᏍᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏧᏂᏲᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ.\nᎠᏍᎪᎵᏃ ᏕᎬᏩᏂᎮ ᎦᎾᏍᏓ ᎬᏗ, ᎠᎴ ᏕᎬᏩᎵᏥᏍᏆᏍᎨᎢ, ᎠᎴ ᏓᎾᎵᏂᏆᏅᎥᏍᎨ ᎬᏩᏓᏙᎵᏍᏓᏁᎮᎢ.\nᎦᎶᏁᏛᏰᏃ ᎾᏍᏉ ᏌᏉ ᏄᎩᎵᏲᏤ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏍᏛᏕᎢ, ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎠᏂᏍᎦᎾ ᏚᎩᎵᏲᏤᎴᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯᏱ ᏫᏗᎦᏘᏃᎯᏍᏗᏱ; ᎠᏥᎴᎢ ᎤᏇᏓᎵ ᎨᏒᎢ, ᎠᏎᏃ ᎠᏓᏅᏙ ᎤᏩᏂᏕᎢ.\nᏃᏉ ᎧᏂᎩᏛ ᏄᎵᏍᏔᏅ, ᏚᎴᏅ ᎦᏚᏏ ᎢᏣ ᎤᎵᏗᎩᏒ.\nᎾᏍᎩᏃ ᎤᏁᏅ ᏫᏚᏂᏃᏁᎴ ᎠᏂᏐᎢ; ᎾᏍᏉ ᎥᏝ ᏱᏚᏃᎯᏳᏁ ᎾᏍᎩ..\n“ᏔᎵᏁ, ᏥᏇᏅᏍᎪ.”\nᎨᏍᏗ ᏱᏥᎦᏔ ᏍᎩᎾᎩᏪᏒ.\nᏗᎾᏓᏂᏱᏍᎩᏃ ᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒ ᏚᏂᏃᏁᎴ ᏗᏄᎪᏗᏍᎩ. ᎤᏂᏍᎦᎴᏃ ᎤᎾᏛᎦᏅ ᎠᏂᎶᎻ ᎨᏒᎢ.\n“ᎦᏙ ᎠᏗᎭ?” ᎤᏛᏁ ᏌᎳᏓ.\nᎤᏍᏗ ᎢᏈᎬᎢ, ᎦᏙᏊᎢ? ᎤᏓᏛᏛᏁᎢ ᎤᏍᏗ ᎠᏧᏣ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ, ᎤᏂᏅᏏᏙᎯ ᎦᎷᏨᎭ ᏓᏩᏛᎲᎭ ᎠᏂᏯᏫᏍᎬᎢ; ᎤᏙᎯᏳᎯᏯ ᎢᏣᏲᏎᎭ ᏛᏓᏠᎵ ᎤᏩᏒ, ᎠᎴ ᏙᏓᎧᏁᏤᎵ ᎤᎾᏂᏢᏗᏱ [ᎤᎾᎵᏍᏓᏴᏗᏱ,] ᎠᎴ ᏓᎦᎷᏥ ᏙᏛᏍᏕᎸᎯ.\n“ᏍᎩᏙᎵᎩ ᏂᎦᏓ,” ᎡᏝᏪᎯ ᏄᏪᏎ ᏫᎵᎻ.\nᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎬᏩᎪᎲ, ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᏯᏛᎥᎦ! ᎯᏯᏛᎥᎦ! ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᎯ ᎡᏣᏗᎿᏫᏛ, ᎠᎴ ᎡᏣᏛᎥᎦ; ᎠᏴᏰᏃ ᎥᏝ ᏱᏥᏩᏘᎭ ᎤᏍᎦᏅᏨᎢ.\nᏗᏓᏁᎸ ᏭᎷᏣ ᎰᎻ, ᏚᎿᏩᎩᏎ ᏚᎷᏫᏍᏔᏁᎲ ᏧᎿᏬ ᏃᎴ ᏦᎯᏍᏙᏗ ᏚᎿᏬᎡ.\nᎠᎴ ᏕᏓᏓᏓᏅᏖᏍᎨᏍᏗ, ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎴ ᏱᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏗᎦᏓᏂᎳᏕᏗᏱ ᏗᎩᏄᏫᏍᏓᏁᏗᏱ;\nᎠᏎᏃ ᏉᎳ ᎠᏍᏓᏯ ᎤᎵᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ ᏨᏒ ᎪᎱᏍᏗ ᎤᏲ ᎢᏣᏓᏛᏁᎸᎩ, ᎠᏂᏰᏃ ᏂᎦᏛ ᎣᏥᏯᎠ.\nᎯᎸᎢᏴ ᏍᎩᎾᎾ ᏄᎵᏍᏔᏁ ᎨᎵᏍᎪ, ᎤᏛᏅ.\nᎠᏍᎩᎾᏃ ᎤᏘᏅᏎ ᎤᎿᎷᏔᏁ ᎢᏅᎢᎦᏘ ᎣᏓᎸᎢ, ᎠᎴ ᏚᏎᎮᎴ ᎩᎳᏉ ᎢᏴᏛ ᎢᎪᎯᏛ ᏂᎦᎥ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎡᎶᎯ.\nᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎡᏥᏍᏕᎸᏙᏔᏅᎯ ᎪᎯᏳᏗ ᎨᏒ ᎬᏔᏅᎯ; ᎠᎴ ᎾᏍᎩ ᎥᏝ ᎢᏨᏒ ᎨᏒ ᏅᏗᏳᏓᎴᏅᎯ; ᎤᏁᎳᏅᎯ ᎤᎵᏍᎪᎸᏔᏅᎯ;\nᏕᎦᏃᏣᎸᏃ ᏂᎬᎾᏛ ᏏᎵᏱ ᎤᏰᎵᏎᎢ; ᏕᎬᏩᏘᏃᎮᎴᏃ ᏂᎦᏛ ᏧᏂᏢᎩ, ᏧᏓᎴᏅᏛ ᎥᏳᎩ ᎠᎴ ᎡᎯᏍᏗ ᎤᏂᏱᎵᏙᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ, ᎠᎴ ᎾᏍᏉ ᏧᏂᎸᏃᏘᏍᎩ, ᎠᎴ ᎾᏍᏉ ᏧᏂᎾᏫᏍᎩ; ᏚᏅᏩᏁᏃ.\nᎿᏃ ᏅᎩ ᏗᎦᏅᏌᏗ ᏥᎪᎥᎯ ᏢᏓᏥᏧᎶᎸᏗ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᎰᎵᏃ ᏢᏓᏥ ᎤᏃᏕᏅ ᎠᎰᎵ ᏥᏄᏍᏙ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎢᎾᏛᏃ ᎤᏁᎸᎩ ᎤᏤᎵ ᎤᎵᏂᎬᎬᎢ ᎠᎴ ᎤᏤᎵ ᎤᏪᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎤᏣᏗ ᎢᏳᏛᏁᎵᏓᏍᏗᏱ ᎤᎵᏍᎪᎸᏓᏁᎸᎩ.\nᏃᏗᏍ ᎠᎦᏍᎬ ᎤᏴᏨ ᎠᎦᏍᎬ ᏃᎴᏍᏊ, ᎪᎯᏴ ᎠᏫᏴ ᎠᏆᏂᎩᏓ ᏃᏊ ᎤᎴᎾᎲ ᎫᏘᏍᎬ.\n“ᏃᎴ ᏄᏓᎴ ᎠᎾᏓᏤᎵ ᏌᎳᏓ ᎤᏃᎴ ᎠᏲᏙᏗ ᎠᎩᎸᏗᏍᎩ.\nᏓᏱᏓᎵᏃ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎾᏍᎩ Ꮎ ᏗᎦᏙᎵ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎾᏍᎩᏯ ᏥᎩ, ᏧᎳᏏᏕᏂᏃ ᎥᏣᏱ ᎬᏩᏔᎷᎩᏍᎩ ᎾᏍᎩᏯ ᏥᎩ;\nᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎦᎴᏂ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎦᏃᎪ ᎤᎸᏍᏓᏁᎸᎯ ᏚᎵᎧᏁᏴᎮ, ᎠᎴ ᎣᏍᏛ ᎤᏬᏂᏎᎢ.\nᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏕᏥᎨᏳᏎᏍᏗ ᎨᏥᏍᎦᎩ; ᎣᏍᏛ ᏕᏥᏁᏤᎮᏍᏗ ᎨᏥᏍᎩᏅᏗᏍᎩ, ᎣᏍᏛ ᏂᏕᏣᏛᏁᎮᏍᏗ ᎨᏥᏂᏆᏘᎯ, ᎠᎴ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎦᏰᎪᎩ ᎨᏥᏃᎮᏍᎩ ᎠᎴ ᎤᏲ ᎢᎨᏨᏁᎯ.\nᎤᎾᏛᎦᏅᏃ ᎾᏍᎩ, ᎤᏂᎸᏉᏔᏅᎩ ᎤᎬᏫᏳᎯ. ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎢᏓᎵᏅᏟ, ᎭᏙᎴᎰᏍᎦ ᏄᏂᏧᏈᏍᏛ ᎠᏂᏧᏏ ᎤᏃᎯᏳᏅᎯ; ᏂᎦᏛᏃ ᎤᏣᏘ ᎤᏂᎸᏉᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ.\nᎪᎯᏍᎩᏂ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎡᏓᏚᏓᎳᎡᎸ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏲᎱᏒᎯ ᎨᏒ ᏗᎩᎾᏢᏅᎯ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏤ ᎠᏓᏅᏙ ᎢᎬᏙᏗᏱ ᎪᎱᏍᏗ ᎡᏓᏛᏁᏗᏱ, ᎥᏝᏃ ᎪᏪᎸᏉ ᎢᎬᏙᏗᏱ ᎾᏍᎩᏯ ᏂᎦᏛᏁᎸ ᏧᏩᎫᏔᏅᏒᎢ.\nᎣᏏᏉᏧ?\nᏲᎾ ᎤᏤᏍᏙ ᎤᏍᏘᏰᎬ ᎠᏂᏥᎸᏍᎩ ᏗᎬᏔᏅ ᎤᏬᏚᎢᏍᏕᎢ.\nᏥᎪ ᎢᏨᎶᏄᎡᏍᎨ ᎦᏥᏴᏗᏍᎨ ᎩᎶ ᎦᏥᏅᏏᏛ ᏫᎨ-ᏥᎷᏤᎸᎯ?\nᎡᏥᏅᏏᏓᏍᏗ, ᏕᏦᎯᏳᏎᏍᏗ ᏂᎦᎥ ᏂᎨᏥᏪᏎᎲ ᎨᏥᏅᏏᏙᎯ ᎠᏂ ᎤᏇᏓᎵ ᎨᏒᎢ; ᎥᏝ ᏥᏛᏓᏗᎧᏃ ᎾᏍᎩᏯᎢ, ᏴᏫᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏗ, ᎣᏏᏳᏍᎩᏂ ᎢᏥᏰᎸᎯ ᎨᏎᏍᏗ ᏗᏥᎾᏫᏱ, ᎡᏥᎾᏰᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ:\nIX. ᏫᎵᎻ ᎤᏨᏉᏙᏗ  \nᎠᏯᏙᎵ ᎦᎶᎯᏍᏗᏱ ᎢᏥᏴᏍᏓ ᎠᏯᏖᏂᏰᏃ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎠᏯᏖᏂ ᏅᏃᎯ ᎠᏲᎱᎯᏍᏗᏱ ᏫᎦᎾᏄᎪᎬᎢ, ᎤᏂ ᏣᏔᏃ ᎾᎿ ᎠᏂᎶᏍᎦ.\nᏗᏂᎧᎿᏩᏗᏙᎯᏰᏃ ᎥᏝ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏱᏂᏚᏩᏁᎸ ᎾᏍᎩ ᎾᎿ ᎡᎶᎯ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎨᏒᎩ, ᎾᏍᎩ ᏥᏗᏁᎢᏍᏗᎭ.\nᏚᏂᏃᎩᏒᏃ ᏗᎧᏃᎩᏍᏗ ᎤᏂᏄᎪᏨᎩ, ᎣᎵᏩᏲᎢ ᎤᏌᎯᎸ ᏭᏂᎶᏒᎩ.\n”ᏐᏉ ᎢᏳᏪᏅᏍᏗ, ᏒᏙᏂ ᎦᎵ ᏣᎵᏍᏓᏴᏗ ᏚᎵᎬᏩᏝ.” \nᎨᏍᏗ ᎩᎶ ᏳᎪᎭ ᎤᎵᏏᎬᎢ.\nᎠᎴ ᏣᏃᎮᏍᎩ ᏍᏗᏫ ᎤᎩᎬ ᎤᏤᏬᏨ ᎠᏴ ᎾᏍᏉ ᎾᎥ ᏥᏙᎬᎩ ᎠᎴ ᎣᏏᏳ ᎠᎩᏰᎸᏒᎩ ᎤᏲᎱᏒᎢ, ᎠᎴ ᏕᏥᎦᏘᏴᎩ ᏧᎾᏄᏬ ᎾᏍᎩ ᎬᏩᎯᎯ.\nᎠᏌᎩᏛᎤᏙᏓᏆ ᏗᏆᏂᎩᏒ ᎤᎨᏓᎵᏴ ᎨᏴ.\nᎠᏙᎴᏆᏍᏗ, ᏗᏂᏲᏟ ᏗᏛᎯᏍᏙᏗ, ᎠᏂᏩᏥᏂ, ᏗᎪᎵᏰᏗ, ᏗᎪᏪᎳᏅ, ᎠᎵᏍᏔᏴᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᎾᏫ ᎣᏏᏳ ᎤᏓᏅᏓᏛᎩ, ᏥᏃᎦᏃ ᎠᎵᎮᎵᎬᎩ, ᎾᏍᏉᏃ ᎠᎩᏇᏓᎸ ᏓᏳᏯᏪᏐᎵ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ;\nᎨᏍᏗ ᎤᏍᏆᏂᎩᏘ ᏱᎨᏎ.\nᎠᎴ ᎾᏍᏉ ᏕᏥᏲᎵᎸᎭ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎾᎿ ᎠᏂᏁᎸᎢ. ᎡᏥᏲᎵᎸᎭ ᎤᏣᏘ ᏥᎨᏳᎢ ᎢᏈᏂᏓ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᎬᏛᎾᏨᎯ ᏥᏂᎦᎵᏍᏗᎭ ᎡᎦᏯ ᎦᎶᏁᏛ ᎠᎵᏍᎪᎸᏓᏁᏗ.\nᎯᎠ ᏴᏫ ᎾᎥ ᎬᎩᎷᏤᎭ ᎠᏂᎰᎵ ᎠᏅᏗᎭ, ᎠᎴ ᏚᏂᎭᏁᎦᎸ ᏓᏅᏗ ᎬᎩᎸᏉᏗᎭ, ᎠᏎᏃ ᎤᏂᎾᏫ ᎢᏅᎯᏳ ᏄᏅᏅ.\nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏪᎿᎢᏳ ᏥᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏣᏘ ᎤᏓᎨᏳᏗ ᎨᏒ ᏧᏩᏔᏁ ᎠᏴ ᎢᎩᎨᏳᎯᏳ ᏥᏄᎵᏍᏔᏁᎢ,\nᎤᏗᎴᎩ ᎨᏎ.\nᎩᎶᏰᏃ ᎤᎮᏍᏗ ᎠᏥᏁᏗ ᎨᏎᏍᏗ, ᎤᏣᏘᏃ ᎤᏍᏆᏂᎪᏕᏍᏗ; ᎩᎶᏍᎩᏂ ᏄᎲᎾ ᎨᏎᏍᏗ ᎠᏥᎩᎡᏗᏉ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᏍᏉ ᎤᎲᎢ.\nᎠᏓᏍᏓᏴᏗ ᏦᎳᏂ ᏭᎪᎮ, ᏃᎴ ᎩᎳᏈᏴ ᎠᏂᏍᎦᏯ ᏫᏚᏃᎯᏎᎴ.\nᏥᏌᏃ ᏩᏥᏯᏅᎲᎩ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎤᏂᎷᎯᏍᏗᏱ.\nᎠᏂᏴᏫᏃ ᎤᏂᏑᎵᎪᏤ ᎠᏅᏙᎵᏗᏍᎬ Ꮎ ᎠᏂᏔᎵ ᏗᎾᏟᎭ ᎤᎾᎴᏅᏎ ᏓᎾᏓᏙᏪᎳᏁᎲ ᎠᎴ ᎠᏂᎪᎵᏰᏍᎬ ᏣᎳᎩ.\nᎦᏩᏍᏛᏂᏍᏗᏃ ᎤᏪᏢᏅ, ᏂᎦᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏚᏄᎪᏫᏒᎩ, ᎠᎴ ᎾᏍᏉ ᎠᏫ, ᎠᎴ ᏩᎩ; ᏚᏤᏮᎩᏃ ᎠᏕᎸ ᏚᏂᎲ ᎠᏕᎸ ᏗᏂᏁᏟᏴᏍᎩ, ᎠᎴ ᏚᎷᏆᏗᏅᏒᎩ ᏕᎦᏍᎩᎸᎢ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎿᏉ ᎾᏍᎩ ᎯᎠ ᏥᏍᏆᏛᎭ, ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᏂᎦᏥᏴᏁᎸ ᎤᏂᎪᏩᏛᏗᏱ, ᎯᎠ ᎾᏍᎩ ᎤᏓᏔᏅᎯ, ᏫᏨᎶᎢᏍᏓᏅᏗ ᎨᏎᏍᏗ ᏍᏆᏂᏱ ᏫᏥᎦᏖᏍᏗ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏝᏍᎪ ᎯᎠ ᏱᏂᎬᏪᏎᎴᎢ; ᎢᏳᏃ ᎰᎯᏳᎲᏍᎨᏍᏗ, ᏣᎪᏩᏛᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎠᎴ ᎾᏍᎩ ᎠᏴ ᎣᏏᏳ ᎤᏰᎸᏅᎯ ᎤᏁᎳᏅᎯ, ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓᏅᏛ ᏫᏨᎷᏤᏗᏱ, ᎠᎴ ᎢᏧᎳᎭ ᏂᎯ ᏗᎩᎦᎵᏍᏙᎯᏍᏗᏱ.\nᎿᏉᏃ ᏥᏌ ᎠᎦᏔᎯᏳ ᎨᏒ ᏂᎦᎥ ᎿᏉ ᎤᎵᏍᏆᏛᎢ, ᎪᏪᎸ ᎤᏙᎯᏳᏗᏱ, ᎠᎩᏔᏕᎩᎭ, ᎤᏛᏅᎩ.\nᎾᏂᎥ ᎩᎶ ᎪᎦᏓᏅᏖᏍᎬ ᎦᎶᏁᏛ ᎣᎩᏅᏏᏓᏍᏗ ᎾᏍᎩᏯ ᎪᎦᏓᏅᏖᏍᎨᏍᏗ, ᎠᎴ ᎣᎦᎦᏌᏯᏍᏗᎨᎩ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᏐᏉ ᎤᎵᏏᏂᏕᏅ ᎣᏣᎵᏍᏔᏴᎲᏍᎬ, ᏌᎪᏂᎨ ᏗᏑᏫᏍᏙᏗ ᏗᏫᏍᎩ ᎤᏓᎵ ᎤᏛᎦᏍᏔᏅ ᏥᏃᎮᏍᎬ ᏗᏆᏛᏒ, ᎢᏰᎵᏍᏗᎢᎦᏃ ᎤᏛᏅ.\nᏤᏍᏗ ᎭᎾ ᏱᏣᏓᏬᎡᏍᏗ ᎤᏍᏗ ᎠᏣᏗ!\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᎳᏯ ᎦᏳᎳ ᎤᎷᏨ, ᎠᎴ ᎥᏝ ᏱᎬᏬᎵᏦᎢ, ᎠᏎᏃ ᏂᎦᎥ ᎤᎾᏚᎵᏍᎬᎢ ᏂᎬᏩᏁᎸ. ᎾᏍᏉᏍᎩᏂ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩᏯ ᏅᏓᎬᏩᏁᎵ.\nᎠᏁᎵᏗ ᏍᏉ ᏓᎧᏔᏍᏗᏍᎨ. ᎤᎵᏏᏂᏗ ᎠᏌᏙᏱᏍᎨ ᎠᏁᎵᏗ ᎦᎸᏙᏗ. ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᏧᏰᏍᏙᏗ ᏧᏤᎵ ᏧᏂᏍᏗ.\nᏰᎵ ᏎᎦ ᎦᏚᏏ ᎤᎾᏁᎳᏗᏍᏗ ᎢᎦ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎯᎠ ᎾᏍᎩ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎤᏟ ᎢᎦᎢ ᎠᎲᎦ ᎡᏍᏚᏉ ᏂᎦᏛ ᎠᏂᏐᎢ.\nᎩᎶ ᎠᏏᏴᏫ ᎯᎠ ᎢᏳᎾᏍᏗ ᏗᏂᏲᎵ ᏓᏓᏂᎸᎨᏍᏗ ᎠᏴ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ; ᎩᎶᏃ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎥᏝ ᎠᏴ ᏱᏓᏆᏓᏂᎸᎨᏍᏗ, ᏅᏛᎩᏅᏏᏛᏍᎩᏂ ᏓᏓᏂᎸᎨᏍᏗ.\nᏔᎵᏚ ᎢᏯᏂ ᎠᏂᏍᎦᏯ, ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ - ᏩᎢ ᎤᎾᏁᎶᏔᏅ ᏣᎵ ᏚᏓᏘᎿᎥ.\nᎠᏗᏍᎪ ᎠᎵᏰᎾ, ᎪᎱᏍᏗ ᏧᏂᎵᏬᏨ ᏓᏂᏯᎩᏍᎪ ᎤᏂᏥᏯ ᏃᏗ ᎦᏙ ᏫᏓᎾᏗᎩᏍᎪ.\nᏥᏳᎯᏃ ᎣᏂᏗᏢ ᎤᏣᎡ ᎦᎵᎮᎢ, ᎠᎫᏍᏙ ᎤᎫᏍᏓᎡᎢ; ᎬᏩᏰᏍᏔᏁᏃ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᏝᏍᎪ ᎪᎱᏍᏗ ᏰᎵᎭ ᏨᏓᏲᏣᏗᏒᏂ?\nᎥᏝ ᎠᎴ ᎩᎶ ᎠᏨᏍᏛᎦ ᎠᏨᏍᏙᏗ ᎤᏕᎵᏒ ᏱᎦᎧᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ ᎠᏟᎶᏍᏗ ᏱᎫᏢᏗᏍᎪᎢ, ᎦᎪᏗᏱᏍᎩᏂ ᎦᎪᏗᏍᎪᎢ, ᎾᏍᎩ ᏅᏛᏂᏴᎯᎯ ᎤᏂᎪᏩᏛᏗᏱ ᎢᎦ ᎦᏛᎢ.\nᎤᏁᎷᏁ ᏌᏌ.\nᎢᏳᏃ ᎪᎱᏍᏗ ᏓᏆᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏎ ᎢᏯᏆᏛᏁᏗ.\nᎾᏍᎩ ᏭᎷᏨ ᎠᎴ ᎤᎪᎲ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᏚᏔᏲᏎᎴ ᏂᎦᏛ ᎤᎵᏂᎩᏛ ᎤᎾᏓᏅᏓᏗᏍᏗᏱ ᏧᏂᏂᏴᏗᏱ ᎤᎬᏫᏳᎯ.\nᎾᎯᏳ ᎢᎦ ᏥᏌ ᎤᏄᎪᏨᎩ ᎠᏓᏁᎸᎢ, ᎠᎴ ᎥᏓᎷᎶᏗ ᎤᏪᏅᎩ.\nᎠᏃ ᎠᏉᎳ ᎢᎩᏅᏟ, ᎤᏣᏘ ᏥᏍᏗᏰᏓ ᏫᏥᎷᏤᏗᏱ ᎤᏁᏅᏍᏙᏗᏱ ᎠᎾᎵᏅᏟ; ᎠᏎᏃ ᎥᏝ ᏳᏚᎸ ᎠᏎ ᎪᎯ ᎨᏒ ᎤᏪᏅᏍᏗᏱ; ᏮᏓᎦᎷᏥ ᎠᏗᎾ ᎤᏜᏅᏓᏕᎸᎭ.\nᎤᏐᏅᏤᎯᏃ ᏕᎤᎧᎿᏅ ᎾᏍᎩ ᎬᏩᏚᏫᏛ ᏄᎾᏛᏅ, ᎤᏕᏯᏔᏁᎲ ᏗᏍᏓᏱᏳ ᎨᏒ ᏧᏂᎾᏫ, ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎦᏯ; ᎭᏙᏯᏅᎯᏛ. ᎤᏙᏯᏅᎯᏕᏃ, ᎤᏪᏰᏂᏃ ᎬᏩᏃᏍᏛ ᏄᎵᏍᏔᏁ ᎾᏍᎩᏯ ᏐᎢ ᏄᏍᏛᎢ.\nᎥᏝ ᎠᎴ ᎾᏍᎩᏉ ᏱᏂᎦᎥ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎾᏍᏉ ᎡᏓᎵᎡᎵᎦ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎪᎯ ᎨᏒ ᎢᎩᏁᎸᎯ ᏥᎩ ᎪᎯᏍᏙᏗ ᎨᏒᎢ.\nᎢᏣ ᎠᏟᏰᎵᏒ ᎠᏤᎯ ᎡᎶ, ᎠᏍᎦᎩ ᎤᏩᏙᎯᏴᏓ.\nᎤᏁᎳᏅᎯᏰᏃ ᎠᏆᏤᎵ ᎠᎦᏔᎯ ᏂᎦᎥ ᎢᏨᎨᏒᎵ ᏥᏌ ᎦᎶᏁᏛ ᎤᏓᎨᏳᏗ ᎬᏗᏍᎬᎢ.\nᏈᎵᎩᏃ, ᏩᏓᎳᎻᏃ, ᏓᎻᏃ, ᎹᏚᏃ ᎠᏕᎸ ᎠᎩᏏᏙᎯ, ᏥᎻᏃ ᎡᎵᏈ ᎤᏪᏥ, ᎴᏈᏯᏃ ᏓᏗᏯ ᏣᏃᏎᎰᎢ,\nᏧᏂᎳᏫᎢᏍᏗᏱᏃ ᎠᏯᎡ ᎠᏍᎦᏯ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎢ, ᎠᎴ ᎤᏪᎷᏁ,\nᎤᎩᏨᏓᏃ, ᎠᏧᏣᏃ ᏩᎦᎦᏛᏁ ᎤᎵᎢ.\nᏔᎷᏣ ᎦᎵ ᎠᎩᎳᏗᏓᏅ ᎠᎵᏍᏔᏴᏗ, ᎨᏍᏗ ᎣᏍᏓ ᏯᎩᏰᎸᎮ ᎠᏂᏲᏍᎩ ᎤᎾᎵᏍᏔᏴᏗ.\nᏙᎯ ᎦᎢᏒ; ᏍᏈᏍᏓ ᎫᏘᏍᎬ.\nᎾᏍᎩ ᎤᎾᏫᏱ ᏫᎾᏴᎯᎲᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎤᏍᏉᎵᏱᏉᏍᎩᏂ, ᎠᎴ ᏫᎦᎶᎯᏍᏗᏍᎬᏉ, ᎾᏍᎩᏃ ᎦᏅᎦᎵᏍᎬ ᏂᎦᎥ ᎠᎵᏍᏓᏴᏗ?\n“ᎨᏍᏗ ᎭᏂᏣ ᏣᏯᎠ ᏁᏆᎸ ᎢᎧᏛ ᏱᎩ,” ᎤᏛᏁ ᏐᏉ ᎾᎥ ᎦᏙᎩ, “ᎠᏎᏃ ᎭᎦᏓ ᎤᏓᏅᎦᎸᏓ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎦᏙ ᎤᏍᏗ ᏗᏓᏬᏍᏙᏗ ᎨᏒ ᏕᏣᏬᏍᏔᏁᎢ? ᏣᏂ ᏧᏓᏬᏍᏙᏗ ᎨᏒ, ᎤᎾᏛᏅᎩ.\nᎠᎦᏘᏏᏃ ᎤᏬᏯᏁᏒ ᏕᎤᎴᏔᏁᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏧᎳᏏᏕᏂ ᎠᎴ ᏗᏓᏆᎵᎢ ᏧᎵᏂᎩᏗᏳ ᏂᏚᎵᏍᏔᏁᎢ.\nᎤᎦᏔᎲᏍᏔᏅ ᎦᏍᎩᎶ ᎠᏯ ᎠᏉᏢ ᎢᏣ, ᎢᏧᎳ ᏧᏬᏰᏂ ᎬᏘ ᎠᎭᏰᎲ ᎤᏁᏍᏔᎳ ᎠᏥᏍᏛ ᏫᏍᎩ, ᏗᎧᏂᎨᏂ ᎠᏰᎵ.\nᎤᏛᏅ ᎠᏧᏣ, ᎯᎸᏄᏒ ᏙᏥᏂᏴᎲ ᎠᏂᏐᎢ.\nᎤᏙᎯᏳ ᎤᎵᏍᎨᏗ ᎭᎩᏴᏍᏗ ᏧᏪᏥ ᏗᎦᏅᏙᏗ.\nᎠᏎᎩ ᎣᏍᏓ ᎨᏎ ᏕᏣᏏᎳᏛ.\nᎠᏓᏅᏙᎩ ᎨᏒ ᎦᏗᎭ, ᎥᏝ ᎠᏗᎾ ᏨᏒ ᏣᏓᏅᏙᎩ, ᏐᎢᏍᎩᏂ ᎤᏓᏅᏙᎩ; ᎦᏙᏰᏃ ᎦᎵᏍᏙᏗ ᎠᏴ ᎢᏯᏆᏛᏁᏗ ᎠᎩᎲ ᏅᏩᏓᎴ ᎤᏓᏅᏙ ᏧᏭᎪᏙᏗ ᏱᏂᎦᎵᏍᏗᎭ?\nᎢᏳᏰᏃ ᏯᏆᏚᎵ ᎠᏆᏢᏈᏍᏗᏱ, ᎥᏝ ᎠᎩᏁ-Ꭻ ᏱᎦᎨᏎᏍᏗ; ᎤᏙᎯᏳᎯᏰᏃ ᎨᏒ ᏱᏥᏃᎲᎵ; ᎠᏎᏃ ᎤᏁᎳᎩ ᎥᎨᎳ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎩᎶ ᎠᏆᏓᏅᏖᏍᎬ ᎤᏟ ᏱᏂᎠᎩᎸᏉᏗ ᎠᏃ ᎾᏆᏍᏛ ᎠᎩᎪᏩᏘᏍᎬᎢ, ᎠᎴ ᏄᏍᏛ ᎠᏆᏛᎩᏍᎬᎢ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᎢᏯᏂᏪᏍᎩ, ᎬᏂᎨᏒᎢᏳ ᎾᏅᏁᎰ ᎤᎾᏤᎵᎪᎯ ᎤᏂᏲᎲᎢ.\nᎡᎶᏛᏃ ᎤᏲᎸ ᎠᎴ ᎤᏠᏨ ᏚᎪᎵᏰᎡ ᎬᏩᎦᏘᏛᎯ ᎠᎴ ᎤᏁᏤ ᏧᏂᏲᎱᎯᏍᏗᏱ. ᏧᏗᏱᏃ ᎤᏓᏅᏒ, ᏏᏌᎵᏱ ᏭᏕᏁᎢ.\nᏂᎪᎯᎸ ᏦᏥᏰᎸ ᎣᏥᏱᏙᎰ ᎤᏲᎱᏒ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᏍᎩ ᎾᏍᏉ ᎬᏅ ᏥᏌ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏴ ᏦᏥᏰᎸᎢ.\nᎠᎴ ᏚᏁᏤᎸᎩ ᎬᏭᎯᏍᏗᏍᎩ ᎨᏣᎷᏤᏗᏱ; ᎾᏍᎩᏃ ᎪᎯᎵᏰᏍᎬᎢ ᏨᏒ ᎨᏣᎦᏙᎥᎯᏍᏗ ᏱᏂᎦᎵᏍᏓ ᎯᎠ ᏂᎦᏛ ᏦᏧᎢᏍᏗᎭ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵ ᎨᏎᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᎤᎬᏫᏳᎯ ᏥᏯᎵᏍᎦᏍᏙᏗ, ᏂᎯ ᎢᏤᎲ ᎤᎬᏩᎵ ᎾᏍᎩ ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᏅᏛᎢ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎢᏣᏕᏯᏙᏗᏍᎩ ᎤᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ, ᎤᏁᎳᎩ ᎩᎶ ᎦᎨᏎᏍᏗ.\nᎭᏂᏉ ᎠᏆᏗ. ᎨᏍᏗᏰᏃ ᎠᎩᎸᏂ-ᎠᎩᎸᏂ--ᎠᎩᎸᏂᏗᏍᎩ ᏱᎩ.\nᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᎪᎵ, ᏚᎦᏔᏍᏔᏁᎢ, ᏭᏩᏌᏙᏰᎢ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏙᎯᏉ ᎢᏳᏍᏗ ᎤᏪᏙᎴ ᎾᎿ ᎠᏥᏚᎢᏍᏓᏁᎸ ᎦᏙᎯ, ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ ᎾᏍᎩᏯ, ᏕᎦᎵᏦᏛᏉ ᎠᏁᎮ ᎢᏧᎳᎭ ᎡᏏᎩ ᎠᎴ ᏤᎦᏈ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ.\nᎦᏙᏃ ᎢᏣᏚᎵᎭ? ᏥᎪ ᎦᎾᏍᏓ ᏥᏁᎢ ᏮᏌᏨᎷᏤᎵ? ᏥᎪᎨ ᎠᏓᎨᏳᏗᏳ ᎨᏒ, ᎠᎴ ᎤᏓᏅᏘ ᎠᏓᏅᏙ ᎬᏗ ᏮᏓᏨᎷᏤᎵ?\nᏚᎾᏔᎶᎬ ᎬᏂᎨᏒ ᎨᏒ ᏓᎶᏂᎨ ᏓᏂᏅᏙᎬ.\nᏃᎴ ᎯᏲᎮᎸ ᎡᎳᏆᏗ ᏍᏉ ᎤᏛᏅᎢᏍᏙᏗ.\nᎾᏍᏉᏍᎩᏂᏃᏅ ᎠᏴ ᎠᎩᎭ ᎤᏇᏓᎵ ᎨᏒ ᎬᏆᎵᏍᎦᏍᏙᏙᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎩᎶ ᏰᎵ ᏳᎭ ᏳᏰᎸ ᎤᏇᏓᎵ ᎨᏒ ᎬᏩᎵᏍᎦᏍᏙᏙᏗ ᎨᏒᎢ, ᎠᏴ ᎤᏟ ᎢᎦᎢ [ᎠᎩᎭ;]\nᎪᎯᏰᏃ ᎨᏒ ᏥᎪ ᏴᏫ ᏗᏆᎵᎢ ᏂᏕᎬᏁᎭ? ᎤᏁᎳᏅᎯᎨ? ᏥᎪᎨ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏴᏫ ᎠᎩᏲᎭ? ᎢᏳᏰᏃ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏴᏫ ᎠᏏ ᏯᎩᏲᎭ, ᎥᏝ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏙᎯ ᏱᎦᎩ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ ᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ ᎤᏟᎯᏳ ᎾᏍᎩ ᎦᏚᎲᎢ.\nᎾᏍᎩᏃ ᎠᏂᎪᏗᏳ ᏧᎾᏁᎶᏔᏅ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗᏱ ᎧᏃᎲᏍᎩ ᏧᏓᎴᏅᏛ ᏄᎵᏍᏔᏂᏙᎸ ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᏦᎪᎯᏳᎭ,\nᏃᎴ ᎬᏯᎵᎮᎵᏤ ᏂᏣᏓᎾᏘᏴ.\nᎾᎯᏳᏉᏃ ᏚᏅᏩᏁ ᎤᏂᏣᏘ ᏚᏂᏢᎬ ᎠᎴ ᎥᏳᎩ ᏚᏂᏱᎵᏙᎲ, ᎠᎴ ᎤᏂᏲᏗᏓᏅᏙ ᎬᏩᏂᏱᎵᏙᎲᎢ; ᎠᎴ ᎤᏂᏣᏘ ᏗᏂᎨᏫ ᎬᏩᏂᎪᏩᏛᏗ ᏄᏩᏁᎴᎢ.\nᏌᎩᏯᏃ ᎤᎴᏁ ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ, ᎬᏂᏳᏉ, ᏣᎬᏫᏳᎯ, ᎠᏰᎵ ᎢᎦᎢ ᏧᎬᏩᎶᏗ ᎠᎩᎲ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏕᏥᎥᏏ; ᎢᏳ ᎠᎴ ᎦᏰᎪᎩ ᎠᏋᏔᏅᎯ ᏱᎩ ᎩᎶ ᎪᎱᏍᏗ ᏱᏥᎬᎡᎸ, ᏅᎩ ᎢᏳᏩᎫᏗ ᎢᎦᎢ ᏥᎥᏏ.\nᎤᏪᎿᎢᏍᎩᏂ ᎡᎳᏗ ᎾᎬᏁᎸᎢ; ᎧᏃᏍᎦᏰᏃ ᎤᏥᎸᏒ ᏥᎦᎶᏍᎪ ᎾᏍᎩᏯ ᏓᎦᎶᏐᏂ.\nᎤᎩᏨᏓ ᎠᎦᏍᎩ ᏃᎴ ᎤᎵᏏᎩ ᎨᏎ.\n[ᎠᏓᏅᏙᏃ] ᎤᏪᎷᏅ, ᎠᎴ ᎤᏣᏘ ᎤᎩᎸᏅ, ᎤᏄᎪᏤᎢ; ᎠᎴ ᎤᏲᎱᏒᎯᏉ ᎾᏍᎩᏯ ᎨᏎᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏖ, ᎠᏲᎱᎯ, ᎠᎾᏗᏍᎨᎢ.\nᎦᎷᏯᏍᏗ ᎤᏓᎵ ᏓᎶᏂᎨ ᏩᎩᎦ ᏚᏩᎭᏂᏍᏔᏅ ᎠᏥᎸᏳᎸᏗ.\nᎨᎫᏓᎴᏛ ᏂᏗᎨᏥᎬᏩᎶᏓᏁᎸᎾ ᎬᏔᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎠᎫᏴᏙᎢ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎤᏪᎲᎢ;\n“ᎪᎱᏍᏗ ᏥᏩᏔ ᎤᏪᏯ ᎾᎥ,” ᎤᏛᏁ ᏙᏯ.\nᎡᎳᏗᏨ ᏫᏥᎦᏙ. \nᏫᏥᏲᎯᏍᏓ ᎠᏂᏳᏩᏁᎦ ᎾᎾᏛᏁᎲ ᎢᏥᏍᏓᏩᏗᏒ , ᎢᏥᏍᏙᏍᎨᏍᏗ ᏎᎷ, ᏁᎳᎩ ᎨᏎᏍᏗ ᏔᎷᎩᏍᎩ ᏃᎴ ᏗᎬᏔᏂᏓᏍᏗ, ᎢᎾᎨ ᎡᎯ ᎦᏁᎦ ᏗᏥᎾᏬᏣ, ᏤᏍᏗ ᎠᎾᏬ, ᏗᎦᏆᏘ ᏕᏥᎾᏰᏍᎨᏍᏗ, ᎦᏓᎷᎪᏗ ᎠᏓᏍᎦᎩ ᎢᏥᏰᎸᎮᏍᏗ, ᎤᏪᏘ ᎠᎵᏍᎩᏍᏗ ᎢᏣᎵᏍᎩᏍᎨᏍᏗ.\nᎾᏍᎩᏰᏃ ᏥᏄᏍᏕ ᎾᎯᏳ ᏃᏯ ᏤᎮᎢ, ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ.\n”ᎨᏍᏗ ᎪᎱᏍᏗ ᏯᏂᏂᏱ.\nᎣᏂᏃ ᎢᏴᏛ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏗᏱ ᎦᎵᏦᏛ ᎤᎵᏍᏚᎢᏛ ᎨᏒᎩ ᎦᎸᎳᏗ;\nᎤᏍᏆᏙᏅ ᎠᏓᏅᏖᏍᎬ ᏲᎾ, ᏣᎵ ᎢᎦᏑᏯᎩᎡᎴ, ᎨᏍᏗ ᏳᏬᎯᏳᎮ ᏲᎾ, ᎨᏍᏗ ᎤᎫᏍᏛᏅ ᏱᎨᏎᎢ.\nᎠᏋᏌ ᎠᏇᏅᏒ ᎤᎵᎪᎲᏍᏗ, ᎡᎳᏗ ᎦᎢᏒ ᏰᎵ ᏧᏙᏓᏆᏓ ᎤᏲᎢᏴ, ᏕᏥᏲᎲ ᏚᎨᏓᎵᏴ ᏃᎴ ᎠᎹᏳᎸᏓ, ᎦᏚᏏᏴ ᎠᏍᏔᎦᏢ ᏕᏥᏩᏛᎲ ᎤᏩᏓᏍᎬ ᎤᏣᎴᏓ.\nᏃᎴ ᎱᏃᎮᎸ ᎱᏲᎰᏎᎸ ᏧᎶᎨᏍᏗ ᎤᏪᏘ ᎦᏓ ᎦᏓᏍᎬᎢ ᎦᏚᎲ ᎪᏫ, ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ ᏥᎨᏥᎨᎯᏙᎮ ᏭᏕᎵᎬ ᎢᏣ ᏅᏙ ᎠᏰᎵ.\nᎦᎵᎡᎵᎩ ᏥᏕᎾᏦᎯ, ᎠᏎᏃ ᏫᏥ ᏩᏆᏓᏬᏍᏗ.\nᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏁᏙᎸᎩ, ᎠᎴ ᏚᎾᏚᏫᏍᏔᏅᎩ ᎠᏂᏅ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎦᏚᎲᎢ; ᎠᏥᎸᏃ ᎤᎯᎳᏅᎯᏱ ᎦᎸᎳᏗ ᏛᎤᎶᏒᎩ ᎠᎴ ᏚᏂᎰᏅᎩ.\nᏂᎯᏍᎩᏂ ᎠᎹᏟ ᎲᏍᎨᏍᏗ, ᎭᏠᏁᏍᎨᏍᏗ, ᎠᎴ ᎭᎬᏍᏉᏍᎨᏍᏗ,\nᎠᎴ ᎤᏁᎳᏅᎯ ᏯᏃ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎲᎩ ᏉᎳ ᎠᎬᏗᏍᎬᎩ;\nᏔᎵᏁ ᎢᎣᎦᏛᎦᎾ ᏂᎤᏪᏌ ᏃᏊ ᏍᏗᎩᏓ ᎾᎥᏂᎨ ᏂᎬᏩᏍᏛ.\nᎠᏂᎪᏗᏳᏃ ᏴᏫ ᏚᏂᎳᏫᏦᎸ ᎾᏍᎩ ᎬᏩᎷᏤᎸ ᏕᎦᏚᏩᏗᏒ ᏂᏙᏓᏳᏂᏄᎪᏨᎯ, ᎤᏁᏤ ᏚᏟᎶᏍᏓᏁᎴᎢ;\nᎠᎴ ᎤᏣᏘ ᎤᏍᏗᏰᏔᏁ ᎾᎿ ᎨᏒ ᏧᏄᎪᏫᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏓᏆᎴᎳ ᎦᎵ ᎠᏌᎾᎢ ᏚᏓᏅᎭᏅ ᎾᏍᎩᏯ ᎠᏥᎳ ᏓᏆᎴᎳ Cranshaw ᏙᏰ ᎤᎾᏛᏅᎢᏍᏔᏅ ᎤᏁᏅᏍᏗ ᏭᏕᎵᎬ.\nᎾᏍᎩ ᏄᏪᏒ ᎦᏙᎯ ᎤᎵᏥᏍᏋᎩ, ᎠᎴ ᎾᏍᎩ ᏝᏬᏔ ᎤᏬᏢᏔᏅᎩ ᎤᎵᏥᏍᏋᎯ, ᎠᎴ ᎾᏍᎩ ᏞᏬᏔ ᏚᏅᎵᏰᏓᏁᎸᎩ ᏗᎨᏫ ᏗᎦᏙᎵ,\nᏌᎳᏓ ᏍᏉ ᎠᏍᏆᏂᎪᏍᎬᎢ ᎤᏏᎳᏛ ᎬᏗ ᎡᎳᏗ ᏄᏛᏁᎴᎢ ᎣᎯᏍᏗᎨ ᎤᎪᏩᏛᏗ.\nᎠᏂᏍᎦᎢᎮ ᎠᏲᏟ ᎤᎶᎣᎯᏍᏗ.\nᎦᎶᏁᏛᏰᏃ ᎥᏝ ᏱᎩᏅᏎ ᏗᏆᏓᏬᏍᏗᏱ, ᎠᏆᎵᏥᏙᏗᏱᏍᎩᏂ ᎣᏍᏛ ᎧᏃᎮᏛ; ᎥᏝ ᎠᎵᏏᎾᎯᏍᏗ ᎨᏒ ᎦᏬᏂᎯᏍᏗᏱ ᎠᏋ ᏙᏗᏱ, ᎦᎶᏁᏛᏰᏃ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎠᏎᏉᏉ ᏱᏅᎦᎵᏍᏓ.\nᎿᏉᏃ ᎤᏒ ᏄᎵᏍᏔᏅ, ᎾᏍᎩ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎤᎾᏙᏓᏈᏕᎾ ᎢᎦ ᎨᏒᎢ.\nᎨᏥᏄᎪᏫᏒᏃ ᏴᏫ, ᎤᏴᎸᎩ ᎤᏬᏰᏂ ᎤᏂᏴᎲᎩ, ᎠᎨᏳᏣᏃ ᏚᎴᏅᎩ.\nᎢᏳ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎢᏥᎩᎵᏲᎨᏍᏗ, ᏅᏩᏙᎯᏯᏛᏉ ᎨᏎᏍᏗ. ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏞᏍᏗ ᏱᏣᏕᏯᏔᏁᎮᏍᏗ;\nᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᎢᎦᏪᏛ ᎨᏒᎢ; ᎯᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ, ᎯᏍᎦᎨᏍᏗᏃ ᏣᏍᎦᎩ.\nᎭᏕᏬ,” ᎤᏛᏁ. ᎤᎨᏳᎯ ᏚᎧᎾᏁ ᎤᏪᏥ ᎠᎨᏳᏣ.\nᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏓ ᏥᏫᏨᏯᏅ ᎢᏨᎪᏩᏛᏗᏱ ᎠᎴ ᎢᎦᎵᏃᎮᏗᏱ, ᎢᏏᎵᏰᏃ ᎤᏚᎩ ᎤᏅᏒᎢ ᏅᏧᎵᏍᏙᏔᏅ ᎯᎠ ᏧᏓᏕᏒᏛ ᏨᏆᎸᏍᏗ.\nᎤᎦᎾᏍᏓ ᎢᏳᏍᏗ ᎠᏙᎯ ᏓᏳᏓᎴᏅ.\nᎢᏧᎳ ᎤᏂᎦᎾᏍᏓ ᏃᎴ ᎤᏂᏴᏍᏗ ᎢᏳᎾᏍᏗ.\nᎢᏳᏍᎩᏂ ᏙᏣᏓᏍᎦᎶᎨᏍᏗ ᎠᎴ ᏙᏣᏓᏯᎣᎲᏍᎨᏍᏗ, ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏥᏙᏣᏓᏛᏔᏂ.\nᏗᏣᎧᏅᎦ ᎢᎾ ᎢᏗᎦᏔ ᏕᏈᎬᎢ, ᎠᏗᎭ ᎡᏙᏓ.\nᎾᏍᎩᏯ ᎠᏗᏒᏍᏗ ᎨᏒ ᎢᏤᎲ ᎾᏍᎩ ᎠᏴ ᏥᏍᎩᎪᎡᎸᎩ, ᎠᎴ ᎪᎯ ᏥᏣᏛᎩᎭ ᎠᏇᎲᎢ.\nᎤᎩᏨᏓ ᏩᎩᎷᏣ ᎠᏦᎭᏴ, ᏥᏩᏛᎲ ᎠᏌᎻᏓ ᏦᎢ ᏧᏅᏏᏱ ᎤᎵᏦᏩᏛ ᎤᏩᏌ.\n(ᎢᏳᏍᏗᏉ ᎨᏒ ᎫᏔᎩᏏᏙᎮ ᏦᎨᏏ.\nᏥᎸᏉᏗ ᎩᎦ,” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏓᏅᏘ ᎤᏬᏂᎯᏍᏗ ᏄᏪᏎ.\nᏧᏁᎵᏁᏃ ᎢᎦ ᏔᎵᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏂᏯᎥᎩ ᎦᎵᏦᏕ, ᎠᎴ ᏓᎻ ᎨᎸᎩ. ᏥᏌ ᎤᎷᏨᎩ, ᏗᎦᎶᎯᏍᏗᏱ ᏓᏍᏚᎲᎩ, ᎠᏰᎵ ᎤᎴᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ.\nᎿᏉᏃ ᏂᎦᏗᏳ ᎤᏂᏣᏘ ᎠᏂᎨᏕᎳ ᎤᎾᏤᎵᎪᎯ ᏂᎬᎾᏛ ᏗᏁᎯ ᎬᏩᏔᏲᏎᎴ ᏧᏓᏅᎡᏗᏱ; ᎤᏣᏘᏰᏃ ᎠᏂᏍᎦᎢᎮᎢ; ᏥᏳᎯᏃ ᎤᏣᏅ ᎢᎤᏨᏎᎢ.\nᎰᎻ ᏍᏉ ᎤᏛᎦᏁ, ᏧᏅᎪᏤ ᎬᏔᏂᏓᏍᏗ ᎠᏍᏆᏂᎪᏙᏗ, ᎬᏔᏂᏓᏍᏗ ᎣᏍᏓ ᏂᎬᏁᎮ.\n“ᏏᏆ ᏗᏍᏚᏗ” ᎤᏛᏁ ᎪᏱᏁᎢ.\n“ᎦᏲᏟ ᏓᎩᏯᏪᎦ, ᎡᎵᏍᏗ.\nᏂᏥᎥᏃ ᎡᏥᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᏕᏣᏓᏁᎮᏍᏗ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎠᏃᏍᏛ ᎨᏥᎦᏘᏗᏍᏗ ᏧᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏗᏯ ᎤᏓᏁᏗ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎤᏪᏅ ᎤᏁᏙᎸᎯ ᏫᏚᏃᏁᎴ ᎤᏲ ᏚᎾᏓᏅᏛᎢ ᎠᎴ ᏓᎾᏠᏱᎲᎢ.\nᎠᏂᏂᏒᏃ ᏥᏳ ᎤᎸᏁᎢ; ᎤᏃᎴᏃ ᎤᏱᎶᎴ ᎥᏓᎸᎢ; ᎤᏂᎧᎵᏤᎴᏃ ᎠᎹ, ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᏄᎾᎵᏍᏓᏁᎴᎢ.\nᎿᏉᏃ ᎠᏍᎦᏯ ᎦᏁᎳ ᏧᏅᏏᏓᏍᏗ ᎬᏩᎷᏤᎴᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏍᎩᏅᏏᏓᏍᏗ, ᏝᏍᎪ ᎣᏍᏛ ᎤᎦᏔ ᏱᏣᏫᏎ ᏣᎶᎨᏒᎢ? ᎦᏙ ᏗᎦᎵᏍᏙᏓᎭ ᎤᏲ ᏧᏰᎦ?\n“ᎦᏙᏃ ᏕᏣᏏᎳᏛ ᏱᏣᎩᎳ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᎠᎴ ᎾᏍᎩ ᎩᎶ ᎬᏩᏩᎯᏍᏗ ᏂᎨᏒᎾ ᎠᎴ ᎬᏩᎾᏗᏅᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎠᎪᏪᎵ, ᎠᎴ ᏚᏙᎥᏉ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎪᏪᎶᏔᏅᎯ, ᎠᎴ ᏚᏙᎥ ᎢᎦᎢ ᎠᏎᏍᏗᏱ ᎨᏒ ᎠᎪᏪᎶᏔᏅᎯ.\nᎤᎧᏘᏛ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏃᎴ ᎠᏆᎧᏙᏍᏛ.\nᎾᏍᎩᏃ ᎯᎠ ᎬᏂᎨᏒ ᏄᏪᏎᎢ. ᏈᏓᏃ ᎤᏯᏅᎲ ᎤᎴᏅᎮ ᎤᎬᏍᎪᎸᏁᎢ.\nᎦᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎢᎾᎩ ᎠᎦᏘᎾᏫᏛᎮ ᎾᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ; ᎠᎴ ᎥᏝ ᏯᏥᏩᏛᎮᎢ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏘᎾᏫᏛᎮᎢ; ᎠᏏᏉᏰᏃ ᎾᎦᏘᎾᏫᏗᏍᎬᎾ ᎨᏎ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᎾᎬᏁᎴᎢ.\nᏍᏈᏯ ᏪᏙᎰ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ --- ᎨᏍᏗ ᎣᏍᏓ ᏱᎩ ᏨᏌ ᏥᎨᏐ.”\nᎨᏍᏗᏗ ᎦᎸᎳᏗ ᎤᎬᏫᏳ ᎢᏳᏍᏗᏱᎩ, ᎦᏚᎲ ᎤᎬᏫᏳ ᎾᎥᏂᎨ.\nᎨᏍᏗ ᏳᏪᎵᏌ, ᎠᏓᏬᏍᎬ ᎡᏉᎯᎨ ᏃᎴ ᎦᏣᏄᎵᎨ ᏂᎦᎵᏍᏗᏍᎨᎢ ᎨᏴᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏏᏴᏫ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᏭᏁᏎ ᏚᏬᎵ, ᎠᎴ ᏧᏂᏣᏯᏍᏗ ᎤᎧᎵᎢᏍᏔᏁᎢ, ᎦᎾᏍᏙᎯᏃ ᎤᏪᏆᏙᏔᏅ ᏭᏅᏁᎴ ᎾᏍᎩ ᎤᏗᏔᏍᏗ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏴ ᏗᎴᎯᏐᏗ ᎨᏒ ᎠᎴ ᎬᏂᏛ. ᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ, ᎢᏳ ᎾᏍᏉ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎬᏁᏍᏗ.\nᎤᎩᏨᏓ ᏑᎾᎴ, ᏕᎦᎦᏙᏍᏔᏅ ᎨᏥᏅᎪᏫᏍᎬ ᎠᏦᎭᏴ ᎤᎯᏐᏗ ᎤᎾᏓᏅᏅ.\nᏔᎷᎩᏍᎩ ᎢᏣ ᎠᎢᏎᎢ\nᎠᏎᏃ ᎤᎦᏔᎲᏒ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᎧᎿᏅ, ᏈᏓ ᎤᎬᏍᎪᎸᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏐᎭᏛ ᎭᎴᎲᎦ ᏎᏓᏂ; ᎥᏝᏰᏃ ᎤᏁᏪᏅᎯ ᎤᏤᎵ ᎨᏒ ᎣᏏᏳ ᏱᏣᏰᎸᎭ, ᏴᏫᏍᎩᏂ ᎤᎾᏤᎵ ᎨᏒᎢ.\nᏞᏍᏗᏉ ᏱᏗᏑ-ᎵᎪᎨᏍᏗ ᎢᏓᏓᏟᏌᏂᏙᎲᎢ, ᎢᎦᏛ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᏥᎩ; ᏕᏣᏓᏬᏁᏗᏍᎨᏍᏗᏍᎩᏂ; ᎠᎴ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ, ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ ᏥᏥᎪᏩᏗ ᎤᏍᏆᎸᎯᏗᏒ ᎾᎯᏳ ᎢᎦ.\nᏂᎦᏗᏳᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎤᎾᏗᏔᎲ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏓᏑᏱ ᎾᏍᎩ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎾᏍᎩ ᎤᏕᎵᏛ ᏚᎾᏂᏏᏂᏙᎸ, ᎠᎴ ᎠᏂᏃᏗᏍᎩ ᎡᎶᎯ ᎠᏁᎯ ᏚᏁᏅᎢᏍᏔᏅ ᎾᏍᎩ ᎤᏣᏘ ᎤᏢᏉᏗ ᎡᎲᎢ.\nᎦᏃᏍᎩᏛ ᎨᏒᎢ, ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏲ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎦᎶᏄᎮᏛ ᎨᏒᎢ, ᎠᎵᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ, ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᏓᏐᏢᎢᏍᏙᏗᏱ, ᎠᏢᏉᏙᏗᏱ, ᎠᎵᏍᎦᎿᏫᏍᏗ ᎨᏒᎢ.\nᎠᎴ ᎤᏭᏓᎴᏍᎨ ᏂᎦᏛ ᎤᏲ ᏄᎵᏍᏓᏁᎵᏕᎬᎢ, ᎠᎴ ᎤᏁᎴ ᎣᏏᏳ ᎠᎦᏓᏅᏖᏗᏱ ᎠᎴ ᎠᎦᏔᎿᎢᏳ ᎨᏒ ᎠᎦᏔᎲ ᏇᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏈᏱ, ᎠᎴ ᏄᎬᏫᏳᏌᏕᎩ ᏄᏩᏁᎴ ᎢᏥᏈᏱ, ᎠᎴ ᏂᎦᏛ ᎦᏁᎸᎢ.\nᎠᎴ ᏂᏚᏂᏴᏒᎾ ᎨᏒ ᎠᏍᎪᎵ, ᎾᎿ ᏨᏗᏓᎴᎲᏍᎦ ᏂᎬ ᎠᏰᎸᎢ ᏚᎯᏞᏫᏒᎢ ᎠᎴ ᏧᏩᏚᎾ ᏚᏪᏙᎸᎢ ᎤᎵᏍᏕᎸᏙᏙᎢ, ᎠᎴ ᏚᏚᏓᏕᏫᏐᎢ ᎠᏛᏍᎪᎢ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎩ ᎤᏁᏉᏍᎬᎢ.\nᏂᎦᏛᏃ ᎤᎾᏛᎦᏅᎯ ᎤᏂᏍᏆᏂᎪᏎ ᏄᏍᏛ ᎬᏩᏂᏃ ᎮᎮᎸ ᎠᏫ-ᏗᏂᎦᏘᏯ.\nᏥᏄᏍᏗᏛᎾ ᎢᏳᏉ ᎤᏲᏣᏃᎲᏍᏗ.\nᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᏲᏍᏓ ᎯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏦᎢᏉᏃ ᎢᎦ ᏓᏥᏱᎵᏙᎵ ᎿᏉ ᏛᎦᏁᏍᎨᎰᏂ.\nᏂᎦᏗᏳ ᎤᎾᎦᎡᏍᏛ Crockett.\nᏯᏆᎩᎸᏅᎾ ᏱᎩ ᏓᏆᎴᎸ, ᎠᏆᏓᏲᎰᏎᎸ ᏱᎩ.\nᎥᏝᏍᎩᏂᏃᏅ ᏩᎩᏂᎪᎯ ᎬᏂᎨᏒ ᎢᏯᏋᏁᎯ ᏳᏪᎵᏎᎢ, ᎾᏍᎩ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎢᎩᎦᏃᏓᏁᎲᎢ ᎦᎸᎳᏗ ᏗᎦᎶᏍᎬᎢ, ᎠᎴ ᎢᎦᎵᏍᎪᎸᏓᏁᎲ ᎤᏣᏘ ᎪᎱᏍᏗ ᎤᏛᎯᏍᏗᏱ ᏂᏓᏕᏘᏴᎯᏒᎢ, ᏗᎩᎾᏫ ᏓᎧᎵᎢᏍᏗᏍᎬ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᎤᎵᎮᎵᏍᏗ.\nᏕᎨᏥᎧᏅᏃ ᎤᎾᎵᎪᏅᎯ ᏗᏂᏅ ᏭᏂᎶᏎᎢ, ᎠᎴ ᏭᏂᏃᎮᎴ ᏂᎦᎥ ᏂᎬᏩᏂᏪᏎᎸ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ.\nᎢᎦ ᎤᎵᏍᏔᏴᏗ ᏄᎵᏍᏔᏅ.\nᎢᏓᎵᏅᏟ ᏞᏍᏗ ᎢᏥᏣᏘ ᏗᏣᏕᏲᎲᏍᎩ ᏱᎨᏎᏍᏗ, ᎢᏥᎦᏔᎭᏰᏃ ᎤᏟ ᎢᎦᎢ ᎢᎩᏍᏛᏗᏍᏗ ᎨᏒᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎡᏥᏍᏓᏩᏕᎩ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᏧᎨᏳᎯ ᏧᏪᏥ;\nᎤᏰᏤ ᏧᏍᏆᏴᏍᏗ.\nᏫᏨᏲᏪᎳᏏ ᎢᏣᏓᏅᏘ ᎪᎶᏏ ᎢᏤᎯ ᎠᎴ ᎢᏣᎵᏅᏟ ᎦᎶᏁᏛ ᎡᏦᎯᏳᎲᏍᎩ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᏗᏟᏰᎵᏓᏍᏗ, ᏱᏓᏂᏅᏙᎬᎾ ᎤᏂᏲ ᏧᎾᏛᏐᏅ ᎤᎾᏓᏓᏍᎬ, ᎤᎾᏏᏅᏒ.\nᎤᏍᏗᎩᎨ ᎨᏒ ᏓᏳᎴᏅᏓ?” \nᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᏣᏤᎵᎪᎯ ᎯᏄᎪᎢ ᎠᎴ ᎪᎱᏍᏗ ᏗᏨᎩ, ᎠᎴ ᎾᎿ ᎦᏙᎯ ᎬᏯᏎᎮᏗ ᎨᏒ ᏫᎷᎩ.\nᎠᏰᎵ ᏚᏏᎳᏛᎢ ᎤᏣᏅᏕᎢ.\nᏩᎾᎯᎨ ᎢᎬᏛᏁᏗᏱᎩ, ᎠᏆᏛᏅᎢᏍᏘ ᎠᏆᏛᎪᏗ.\nᏗᎨᏃ ᎡᎳᏗ ᏓᎦᏂᎩᏏ.\nᎿᏉᏃ ᏂᎦᏛ ᏔᎵᏁ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝᏍᏗ ᎯᎠ ᎠᏍᎦᏯ, ᏆᎳᏆᏍᎩᏂ. ᎾᏍᎩ ᏆᎳᏆ ᎠᏓᎾᏌᎲᏍᎩ ᎨᏒᎩ.\nᏚᏃᏓᎳᎲ ᏚᏔᎷᎩᏍᎬ ᎠᎦᎵᏍᎬ.\nᎯᎠᎧᏂ ᏗᏁᏍᎨᏍᎩ ᎤᏪᏥ, ᎺᎵᎧᏂ ᎤᏥ, ᎠᎴᎧᏂ ᎠᎾᎵᏅᏟ ᏥᎻ, ᎠᎴ ᏦᏏ ᎠᎴ ᏌᏩᏂ ᎠᎴ ᏧᏓᏏ?\nᏏᏉ ᏂᏛᏥᏪᏏ ᎧᏃᎮᏓ.\nᏱᎰᏩᏰᏃ ᏗᎦᏙᎵ ᏓᎧᎿᏩᏗᏙ ᎤᎾᏓᏅᏘ, ᎠᎴ ᏗᎦᎴᏂ ᏚᏛᏓᏍᏗ ᎠᎾᏓᏙᎵᏍᏗᏍᎬᎢ, ᎤᎧᏛᏍᎩᏂ ᏱᎰᏩ ᏕᏡᏔᏅ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏦᏰᏂ ᎠᎴ ᏣᎳᏏᏕᏂ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ ᎠᎴ ᏫᏣᏕᎨᏍᏗ; ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏦᏰᏂ ᎠᎴ ᏣᎳᏏᏕᏂ ᏣᏲᎱᎮᎸᎯ ᏱᎩ ᎬᏂᏛ ᏗᎨᏒ ᏫᏱᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏱᏘᏰᏌᏓ ᎠᎴ ᎢᏧᎳ ᏗᏣᎳᏏᏕᏂ ᏫᏰᏣᏓᏅ ᏂᎬᏠᏍᎬᎾ ᎨᏒ ᎠᏥᎸᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏓᏏ ᎣᏥᏔᏲᏎᎸᎩ, ᎾᏍᎩ ᏄᏍᏛ ᎤᎴᏅᎲᎢ, ᎾᏍᎩᏯ ᎢᏳᏛᏁᏗᏱ ᎤᏍᏆᏗᏍᏗᏱᎢᏤᎲ ᎤᏠᏱ ᎢᏣᏓᏁᏗᏱ ᏂᏨᏁᎲᎢ.\nᏰᎵ ᎪᎯᏛ ᎤᏬᏢ ᎨᎵ ᏓᏆᎴᎳ ᎠᏍᏚᏗ ᎣᎭᏂ ᎡᎩ, ᎡᎳᏗ ᏄᏩᏅ ᎠᏍᎪᎵ, ᎤᏍᏘᏰᎬ ᎤᏭᏌᏁᎲ ᎤᎦᏛ.\nᎡᏐᏃ ᏎᏙᎩ ᎤᏕᏁᎴᎢ; ᏎᏙᎩᏃ ᎡᎩᎻ ᎤᏕᏁᎴᎢ; ᎡᎩᎻᏃ ᎢᎳᏯᏗ ᎤᏕᏁᎴᎢ;\nᎠᎾᎢᏒᏃ ᏓᏂᏃᏁᎵᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏂᏳᏉ ᏥᏌ ᏚᎾᏠᏎᎢ; ᏙᎯᏱ ᏕᏓᏓᎪᏩᏛ, ᎤᏛᏁᎢ. ᎤᏂᎷᏨᏃ ᏧᎳᏏᏕᏂ ᏚᏂᏂᏴᎮᎢ, ᎡᎳᏗ ᏂᎬᏩᏛᏁᎴᎢ.\nᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᎩᎭ ᎠᏆᎵᏍᏓᏴᏗ ᏂᎯ ᏂᏥᎦᏔᎲᎾ.\nᎿᏉ ᎢᏥᎧᎵᏨᎯ, ᎿᏉ ᎢᏤᎿᎢᏳ, ᎢᏥᎬᏫᏳᎯ ᎨᏒᎢ ᎠᏴ ᏂᏨᏯᎵᎪᏁᎸᎾ, ᎠᎴ ᏲᎯ ᎤᏙᎯᏳᎯ ᎢᏥᎬᏫᏳᎯ ᏱᎩ, ᎠᏴ ᎾᏍᏉ ᎢᏧᎳᎭ ᎢᎩᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎯᎠ ᏱᏂᏥᏪᏍᎨᏍᏗ; ᎦᏙ ᏓᏲᏥᎩ, ᎠᎴ ᎦᏙ ᏓᏲᏣᏗᏔᎯ, ᎠᎴ ᎦᏙ ᏓᏲᏣᏄᏬᎢ?\nᎨᏍᏗ ᎤᎾᏓᏅᏖᎸ ᏱᎨᏎ ᏧᏂᎯᏍᏗ.\nᏂᎦᏛᏃ ᏙᏧᏁᏅᏒ ᏫᏙᎤᏂᎶᏒᎩ.\nᎤᎾᏑᎵᏍᎬᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎠᏎᏃ ᎾᏃᎵᎬᎾ ᏄᏍᏛ ᎠᏂᏬᏂᏍᎬ, ᎠᎴ ᏄᏍᏛ ᎠᏂᏍᏓᏱᏗᏍᎬᎢ.\nᎾᏍᎩ ᎾᎿ ᎩᎶ ᎤᎾᎪᎸᏛ ᏥᎩ, ᏄᎵᏌᎶᏛᎾ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏭᎾᎦᏔᎲᏍᏔᏅ;\nᎠᎩᏙᏓ ᏲᎾ ᎤᏙᎯᏳ ᎤᎬᏫᏳ.\nᎠᎴ ᎢᏨᏍᏗᏰᏗᎭ, ᎢᏓᎵᏅᏟ, ᎤᏓᏅᏘ ᏗᏣᏓᏂᎸᎢᏍᏗᏱ ᎢᏨᏬᏁᏗᏍᎬᎢ; ᎢᎸᏍᎩᏉᏰᏃ ᎢᎧᏁᏨᎯ ᎢᏨᏬᏁᏓ ᎠᏂ ᎪᏪᎵᎯ.\nᎢᎪᎯᏓ ᎠᏛᏛᎮᏍᎪ ᎠᎵᏰᎾ.\nᎿᏉᏃ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎬᏍᎦᎢᏍᏓᎩ ᏂᏚᏅᏁᎸᎾ ᏫᏚᏂᏯᏅᎮᎢ; ᏓᏂᏍᎦᎢᎮᏰᏃ ᎤᏂᏣᏘ, ᏅᏯ ᏱᏕᎪᎬᏂᏍᏓ ᎠᏁᎵᏍᎨᎢ.\nᎠᎴ ᎾᏍᏉ ᎦᏳᎳ ᎦᎷᏯᏍᏗ ᎠᏅᎯ ᏚᎿᏍᏕᏢ ᏕᏡᎬᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏗᏳ ᏕᏡᎬ ᎣᏍᏛ ᎾᏓᏛᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏗᎦᎴᏴᏍᏙᏗ ᎠᎴ ᎠᏥᎸᏱ ᏫᏓᏗᏅᏗ ᎨᏎᏍᏗ.\nᎤᏍᏗᎩᏛᏃ ᎢᏴᏛ ᎢᎤᏪᏅ, ᎡᎳᏗ ᎤᏓᏅᏁᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁ, ᎤᏔᏲᎴᎢ. ᎾᏍᎩ ᏴᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ, ᎾᎯᏳ ᎨᏒ ᎤᎶᎯᏎᏗᏱᏉ.\nᎪᎳ ᏓᎦᎷᏥ ᏂᎪᎯᎸᎾ.\nᏦᎢ ᏧᏙᏓᏆᏓ ᎠᏇᏙᎸ Cranshaw, ᎾᏍᎩᏯ ᎪᎩ ᏦᏍᏔᏛᏍᎩ ᏥᎨᏒ. ᎧᏂᎩᏓ ᎨᏒ ᎤᎩᏓᏟᏅᏯ ᏃᎴ ᎠᎾᎥ ᎠᏂᎲᏍᎬ.\nᎠᏍᏆᏙᏅ, ᎬᏂᎨᏒ ᏂᏥᏴᏁᎸ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎠᎩᏅᏁᎸ ᎪᏪᎵ ᏃᎴ ᏥᏯᏁᏓᏍᏔᏁᎸ, ᏂᎦᏓ ᏥᏃᎯᏎᎸ ᎤᏚᏓᎸᏅ ᏂᎦᏓ ᎤᏂᏍᎦᏅᏨ ᏱᎨᏒᎾ ᏁᎳᎩᏉ ᏱᎩ ᏲᏥᏂᏴ ᏣᎵ ᏏᏅᏓᏉ ᎢᏴ.\nᎾᏍᎩ ᎹᏗᏓᏯ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᎼᏏ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᎠᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏏᎳ, ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎾᎩ ᎤᏪᏥ ᎨᏎᎢ,\nᏞᏍᏗ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎤᎬᏫᏳᎯ ᎪᎱᏍᏗ ᏛᎩᏁᎵ, ᏰᎵᏍᎨᏍᏗ.\nᎣᏏᏉᏗ ᏃᏣᏛᏁᎰ.\nᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎠ ᏥᏂᏪᎭ, ᎠᏇᎿᎠ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏯᎩᏂᎬᏎᎭ; ᏂᎦᏔᎲᎾᏃ ᎢᎩ ᎤᏲ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᎤᏪᏙᎵᏍᏗ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏂᏣᎲᎾ ᎨᏒᎢ, ᎠᎴ ᏘᎨᏫ ᎨᏒᎢ, ᎠᎴ ᏣᏰᎸᎭ ᎨᏒᎢ,\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ ᏑᏓᎴᎩ ᏓᏨᏯᏛᏛᏂ, ᎢᏳᏃ ᎾᏍᎩ ᎢᏍᎩᏃᏁᎸ ᎾᏍᎩ ᎠᏴ ᏓᏨᏃᏁᎵ ᎢᏳᏍᏗ ᎠᏆᎵᏍᎦᏍᏙᏛᎢ, ᎯᎠ ᎾᏍᎩ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ.\nᎿᏉᏃ ᎾᏍᎩ, ᎠᎬᎭᎸᏛ ᎤᎩᏒ, ᎩᎳᏉ ᎢᏴᏛ ᎤᏄᎪᏨᎩ, ᎠᎴ ᏒᏃᏱ ᎨᏒᎩ.\nᎤᏣᏘᏍᎩᏂ ᏕᎤᏫᏞᏫᏒ, ᎠᏎᏃ ᏌᏉᏉ ᎠᏰᎸᎢ.\nᏍᎩᏴ ᎤᏓᏏᏂᏕᏅ ᏴᏫ ᏗᎦᎦᏥᎶᏍᏔᏅ ᏙᎩᎾᏑᏯᎩᏒ ᏦᎩᏂᎪᎵᏰᏗ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ ᏟᎣᏆ ᏧᏙᎢᏛ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏥᎪ ᎮᏙᎯᏉ ᏂᎯ ᏥᎷᏏᎵᎻ, ᎠᎴ ᏂᎦᏔᎲᎾᏉ ᎾᏍᎩ ᎾᎿ ᏄᎵᏍᏔᏂᏙᎸ ᎪᎯ ᏥᎩ?\nᎢᏳᏍᎩᏂ ᏂᎦᏛ ᏯᎾᏙᎴᎰᏍᎦ, ᏳᏴᎵᎸᏃ ᎩᎶ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎩᎶ ᎾᎦᏔᎾᎥᎾ, ᎾᏂᎥ ᎬᏬᎯᏳᏓᏁᎰᎢ, ᎠᎴ ᎾᏂᎥ ᏕᎬᏭᎪᏓᏁᎰᎢ;\n“ᎣᏏᏉᏍᎪ ᎦᏟᎰ ᎤᏒᎯ?”\nᎤᎨᏳᎯᏳᏰᏃ ᎢᎩᏠᏱ ᎨᏒ ᏴᏫ, ᎠᎴ ᎢᎦᏁᏍᎨᎸ ᏗᎩᎳᏫᎢᏍᏗᏱ.\nᏂᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏣᏢᏆᏙᏗᎭ, ᎯᏲᏍᏗᏍᎬᏍᎪ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏐᏢᎯ ᏂᏴᏁ ᎤᏁᎳᏅᎯ?\nᏴᎩ ᎦᎵ ᎠᏤ ᎧᏁᏍᎦ ᎤᏁᎴ ᏫᎵᎻ ᏣᏄᏏ.\nᎩᎶᏰᏃ ᎠᎹ ᎤᎵᏍᏈᏗ ᎠᎧᎵᎢ ᎢᏣᏗᏔᏍᏗ ᎢᏥᏁᏁᎯ ᎠᏴ ᏓᏆᏙᎥᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎦᎶᏁᏛ ᎡᏣᏤᎵ ᎨᏒ ᎢᏳᏍᏗ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎥᏝ ᎤᏲᎱᏎᏗ ᏱᎨᏎᏍᏗ ᎠᎦᎫᏴᎡᏗ ᎨᏒᎢ.\n“ᎲᎦ ᎢᏴ ᏓᏛᏄᎪᏔᏂ ᏫᎵᎻ?” ᎤᏛᏛᏁ ᎠᎳᏂ.\nᎤᏁᎳᎩ ᎢᎫᎳᎭ ᏫᏓᏛᎯ ᎬᏂ ᎠᎦᏛᎾᏨᎭ; ᎿᏉᏃ ᎠᎦᏛᎾᏨ ᎯᎠ ᏅᏓᎦᏥᏪᏎᎵ ᎠᏂᏍᎫᏕᏍᎩ; ᎢᎬᏱ ᎢᏥᏟᏌ ᎤᏲ, ᎠᎴ ᏗᏦᏛᏣ ᏗᎪᎲᏍᏙᏗ, ᎤᏣᎴᏍᏗᏍᎩᏂ ᎢᏥᏟᏌ ᎠᎩᏍᏆᏂᎪᏙᏗᏱ.\nᎥᏝᏰᏃ ᎩᎶ ᎠᏥᎦᏔᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏚᎵᏍᎪᎢ ᎤᏕᎵᏛ ᏱᏚᎸᏫᏍᏓᏁᎰᎢ. ᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᎿᏛᏁᎮᏍᏗ, ᎡᎶᎯ ᎬᏂᎨᏒ ᏂᏯᏛᏂᏏ.\n”ᎤᏙᎯᏳ ᎤᏲᎢ,” ᎤᏪᎵᏎ ᏫᎵᎻ.\nᎠᏂᏣᎳᎩ ᏩᏂᎦᏛ, ᎠᏆᏛᏅ, ᏣᎳᎩᏱ ᎠᏰᎵ ᎮᎰ.\nᏧᎾᏓᎸ ᎤᏩᏌ ᏕᎦᏓᏁᏖ.\nᏕᏤᏯᏙᏤᎮᏍᏗ ᎩᎵ, ᏕᏤᏯᏙᏤᎮᏍᏗ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ; ᏕᏤᏯᏙᏤᎮᏍᏗ ᏗᏂᎱᏍᏕᏍᎩ.\nᎢᏥᎪᏩᏖᏍᎨᏍᏗᏍᎩᏂ ᎤᏍᎦᎢᏍᏗ ᎠᏛᏗᏍᎩ ᏕᏂᎵ ᎠᏙᎴᎰᏍᎩ ᎤᏁᎢᏍᏔᏅᎯ, ᎦᏙᎨᏍᏗ ᎾᎿ ᎬᏩᎴᏗ ᏂᎨᏒᎾ, (ᎩᎶ ᎠᎪᎵᏰᏍᎨᏍᏗ ᎪᎵᎨᏍᏗ,) ᎿᏉ ᏧᏗᏱ ᎠᏂᏂ ᎠᎾᎵᏒᎭ ᏙᏦᏓᎸ ᏩᏂᎶᏒᎭ.\nᎩᎶ ᎤᎨᏳᏎᏍᏗ ᎬᏅᎢ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎠᏍᎦᎨᏍᏗ ᎬᏅᎢ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎬᏂᏛ ᏫᎾᏍᏛᎾ ᏗᎨᏒ ᎬᏗᏍᎩ.\nᏚᏛᏅᎢᏍᏔᏁ ᏧᏏᎳᏛᏙᏗ, ᏭᏭᏓᎸᏁᎢ ᎠᏍᏓ, ᏃᏗ ᎡᎳᏗ ᏄᏛᏁᎴ.\nᎠᎴ Ꮎ ᏁᏔᏚ ᎢᏯᏂᏛ Ꮜ-ᎶᎻ ᎢᏅᎢᎦᏘ ᎠᏓᏁᎸ ᏧᎾᏐᏁᎢ, ᎠᎴ ᏥᏚᏂᎴᎢ, ᏥᎪ ᎢᏣᏓᏅᏖᏍᎬ ᏧᏂᎪᎾᏛᏔᏅᎯ ᎨᏎ ᎠᏂᏍᎦᎾᎯᏳ ᎬᏒ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ?\nᎤᎬᏫᏳᎯᏍᎩᏂᏃᏅ ᎾᎥ ᎦᏙᎬᎩ ᎠᎴ ᎠᏆᎵᏂᎪᎯᏍᏔᏅᎩ; ᎾᏍᎩ ᎠᏴ ᎨᏒ ᎠᎩᏍᏆᏗᏍᏗᏱ ᎠᏰᎸᏒᎩ ᎠᎵᏥᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏛᎯᏗᏱ; ᎠᎴ ᎥᎩᎴᏒᎩ ᏢᏓᏥ ᎠᎰᎵ ᏥᎳᎥᎢ.\nᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏤᎵᎪ ᎾᎥ ᎤᎷᏨ, ᎩᎶ ᎢᏳᏍᏗ ᏗᎨᏫ ᏅᏙᎱᎶᏗ ᎤᏬᎴ ᎠᏚᎳᏗᏍᎨᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎢᏴᏛ ᎢᏨᏁᏔᏅᎩ ᎢᏦᎯᏳᏒᎢ, ᎾᏍᎩ ᎤᏤᏘ ᎤᏓᎫᏴᎡᏗ ᏥᎩ.\nᏑᏒᎯᏓ ᏯᏂᎩᏍᎬᎾ ᎤᎩᏓᏟᏅᏯ ᏚᎪᎰᏍᏔᎾ ᏚᏍᏆᏂᎪᏛ ᏧᏂᎧᎭᏲᏔᏅ ᎢᎾᎨ ᎠᏁᎯ ᏧᎸ ᏙᏱᏨ.\nᏴᏫᏃ ᎬᏩᏂᎪᎮ ᎠᎾᏂᎩᏍᎬᎢ, ᎠᎴ ᎤᏂᏣᏖ ᎬᏬᎵᎨᎢ, ᎠᎴ ᎡᎳᏗᏉ ᏚᏂᏍᏆᎸᏔᏁ ᎾᎿ ᎢᏗᏢ ᏭᏂᎶᏎ ᏕᎦᏚᏩᏗᏒ ᏂᏙᏓᏳᏂᎶᏒᎯ, ᏕᎬᏩᏂᎩᏰᏃ, ᎠᎴ ᏫᎬᏩᏓᏟᏌᏁᎴᎢ.\n“ᏏᏲ!” ᎤᏛᏁ.\nᎤᏐᏱᎭ ᎾᏛᏁᎲ ᏣᎵ ᏌᎶᎵ ᏳᏩᏯᎦ.\nᎤᎾᏙᏓᏆᏍᎬ ᎦᎵ ᎨᏎ ᏧᏂᎳᏫᎢᏍᏗ.\nᎤᏨᏉᏗ ᏱᎨᏒᎾ ᎤᏬᏪᎴ ᏚᏏᎳᏛ ᎠᏰᎵ.\n“ᎤᏲ ᎠᎩᏰᎸᎭ,” ᎤᏪᎷᏁᎢ ᏫᎵᎻ.\nᎠᏎᏍᎩᏂ, ᎦᎸᎾᏗᏣ ᏓᏋᎿ ᎥᏍᎩᏳᏍᏗ, ᎪᎶᏇᏍᏊ ᏥᏁᎲ.\nᎠᏎᏃ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ ᏰᎵᏉ ᎠᏂ ᎡᎶᎯ ᎬᏩᏓᏙᎵᏍᏗ ᎨᏒ ᎣᏍᎦᏅᏨᎢ, (ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ;) ᎯᎠ ᏂᎬᏪᏎᎭ; ᏔᎴᎲᎦ, ᏣᏤᏍᏙ ᎯᎾᎩ, ᎠᎴ ᏗᏤᏅᏒ ᎮᎾ.\nᏅᏯ ᎤᏍᏔᎦᏢ ᏭᏍᏆᎵᏒ ᎤᏁᏍᏔᎵ, ᎤᏅᏍᎦᎳᏛ ᎤᏩᎾᏬᎯᏍᏗ.\n“ᏌᎳᏓ, ᏙᎢᏳᏍᏗ ᎯᏃᎮᎭ?”\nᎤᏖᏗ!\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏞᏍᏗ ᎡᏥᏅᏍᏓᏕᎸᎩ; ᎩᎶᏰᏃ ᏂᎦᏡᏗᏍᎬᎾ ᏱᎩ ᎾᏍᎩ ᎢᎦᎵᎪᏁᎯ.\nᎠᎴ ᎾᏍᏉ ᏕᎬᏩᏘᏃᎮᎴ ᏧᎾᏍᏗ ᏗᏂᏲᎵ, ᎾᏍᎩ ᏧᏏᏔᏗᏍᏗᏱ; ᎠᏎᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏙᎴᎰᏒ ᏚᏂᎬᏍᎪᎸᏁᎢ.\nᎡᎳᏆᏗ ᏍᏉ ᏚᎾᏓᏲᎵᎴ ᏗᎫᎪᏗᏍᎩ.\nᎬᏂᎨᏒᏃ ᏂᎬᏩᎾᏛᏁᎴ ᎢᎳᏯ ᎠᎴ ᎼᏏ; ᏥᏌᏃ ᎬᏩᎵᏃᎮᏗᏍᎨᎢ.\nᎤᏬᏯᏁᏒᏃ ᏕᎤᎴᏔᏁᎢ; ᏫᏚᏯᏅᎲᏃ ᎤᎾᏓᏅᏘ ᎠᎴ ᏧᏃᏑᎶᏨᎯ, ᏕᎤᎾᏄᎪᏎᎴ ᎬᏃᏛ.\nᎤᎾᎵᏃᎯᏴᎯᏃ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏐᏈᎵᎯ ᎤᎩᎵ ᎤᏤᎵᎦ ᏕᎨᏥᎢᏍᏔᏅᎩ, ᎾᏍᎩ ᎠᎰᎵ ᏨᏓᎦᏄᎪᎬᎩ; ᏂᎦᏛᏃ ᏥᏍᏆ ᎾᏍᎩ ᎤᏂᏇᏓᎸ ᏚᏃᎸᎯᏍᏔᏅᎩ.\n“ᎭᏂ, ᎭᏂ, ᎭᏂ!” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ.\nᎯᎠ ᏄᏪᏒᎩ; ᎦᏙ ᎢᏤᎵ ᎡᏣᏓᏅᏖᏍᎬ ᎦᎶᏁᏛ, ᎦᎪ ᎤᏪᏥ? ᏕᏫ, ᎥᎬᏬᏎᎸᎩ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᎠᏆᏕᎩ ᏱᎩ.”\nᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᎪ ᏓᎩᎲᎡᎵ ᏅᏯ ᎠᏤᎵᏍᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎲᎢ?\nᎦᎵᏉᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ; ᎠᎴ ᎦᎸᎳᏗ ᎢᏴᏛ ᎠᏍᏓᏯ ᏗᎧᏁᎬᎩ ᎩᎶᎢ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎠᏂ ᎡᎶᎯ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᏤᎵ ᎦᎶᏁᏛ ᏧᎾᏤᎵ ᏂᏕᎦᎵᏍᏓ; ᎠᎴ ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ.\nᎤᏲᏰᏃ ᎢᏳᎾᏛᎿᏕᎩ ᏂᎪᎯᎸ ᎨᏤᎳᏗᏙᎭ; ᎠᏴᏍᎩᏂ ᎥᏝ ᏂᎪᎯᎸ ᏱᏨᏰᎳᏗᏙᎭ.\nᏥᏌᏃ ᎤᏛᎦᏅ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᏚᏂᏢᎬᎾ ᎥᏝ ᎤᏚᎸᏗ ᏱᏄᎾᎵᏍᏓᏁᎰ ᏗᏓᏅᏫᏍᎩ, ᏧᏂᏢᎩᏍᎩᏂ.\nᎠᏯᏙᎯᎯ ᏌᏉᎭ ᎠᏓᏰᎮᏍᏗ, ᎣᏍᏛ ᏗᎧᎿᏩᏗᏙᎯ ᏧᏪᏥ ᎠᎴ ᎤᏩᏒ ᏚᏓᏘᎿᎥᎢ.\nᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ ᎢᏥᎦᏲᎵ ᎠᏫ; ᎢᏥᏙᏓᏰᏃ ᎣᏏᏳ ᎤᏰᎸᎭ ᎢᏥᏁᏗᏱ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏣᏕᏲᎰᏰᏃ ᎠᎺᏉᎯ ᎠᎴ ᎦᏙᎯ ᎡᏥᏲᎰ ᎠᏏᏴᏫ ᏄᏍᏛ ᎢᏦᎯᏳᏒ ᎪᎯᏳᎲᏍᎩ ᎢᏰᏨᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏁᏨᎦ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏟ ᏨᏍᎩᏃᎢ ᎤᏪᏥ ᏁᏨᏁᎰ ᎡᏍᎦᏉ ᎢᏨᏒ.\nᎬᏩᏔᏲᏎᎸᏃ ᎤᏬᎯᎢᏍᏗᏱ ᏧᏪᎳᏗᏓᏍᏗᏱ ᎥᏝ ᏳᏬᎯᏳᏁᎢ;\nᎠᏎᏗ ᎠᏒᎩ ᎨᏐ, ᎾᏰᏃ ᏄᏍᏗ ᎡᎲᎢ.\nᎢᏥᎾᏕᎨᏍᏗ ᎢᏥᎿᎥᎢ ᎠᎴ ᎢᏣᏓᏁᎸᎥᏍᎨᏍᏗ; ᎢᏣᏓᏁᎴᏍᏗ ᏕᎦᎶᏗ ᏂᏚᏪᏔᎬᎾ, ᏧᎬᏩᎶᏗ ᎦᎸᎳᏗ ᏫᏥᏟᏏᏍᎨᏍᏗ ᎠᏗᏒᎲᏍᎩ ᏂᎨᏒᎾ, ᎾᎿ ᏫᎬᏩᎷᎯᏍᏗ ᏂᎨᏒᎾ ᎦᏃᏍᎩᏍᎩ, ᎠᎴ ᏥᏍᎪᏯ ᏫᎬᏩᏲᏍᏙᏗ ᏂᎨᏒᎾ.\nᎤᏂᎷᏥᎸᏃ ᎠᎴ ᏚᏂᎳᏫᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏂᏃᎮᎴ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏄᎾᏛᏁᎸᎢ, ᎠᎴ ᏚᏍᏚᎢᎡᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎪᎯᏳᏗ ᎨᏒ ᎦᎶᎯᏍᏗᏱ.\nᏥᏌᏃ ᎠᏍᎩᎾ ᎤᏍᎦᏨᎩ; ᎠᏍᎩᎾᏃ ᎤᏄᎪᏨᎩ ᎠᏧᏣ, ᎠᎴ ᎾᎯᏳᏉ ᎤᏗᏩᏒᎩ.\nᎠᏯ ᎩᎾᎵᎪᎮᏍᏗ.\nᎾᏍᎩᏃ ᎾᎯᏳ ᏥᎨᏎᎢ, Ꮎ-Ꭹ ᎤᏇᏓᎵ ᎤᏕᏔᏅᎯ ᏣᏕᏯᏙᏗᏍᎨ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ ᎤᏕᏔᏅᎯ, ᎾᏍᎩᏯ ᏄᏍᏗ ᎪᎯ ᎨᏒᎢ.\nᎬᏂᎨ ᎤᏍᎪᎸ ᎨᏎᎢ ᎠᏰᎸᎢ, ᎬᏂᎨ ᎤᏍᏓᏅᏁ ᎭᏫᏂᏣ.\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏴᎵᎴ---ᎤᎵᏏᏂᏗ ᎠᏍᎦᏂᎵᏎ ᎠᏦᏴ ᎾᎥᏂ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏥᏄᎾᎵᏍᏓᏁᎴ ᏗᏟᎶᏍᏙᏗ ᎠᏰᎸᏎᎢ; ᎠᎴ ᎦᎪᏪᎳ ᎠᏴ ᎢᎦᏅᏓᏗᏍᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᏴ ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎨᏒ ᎡᎶᎯ ᏥᎩᎷᏤᎸ.\nᎠᏍᏛᎢ ᎠᏙᎯ ᎠᏂᏙᎾᎥ ᎤᏂᏃᏴᎵᏓ ᎠᏂᎦᏘᏴ ᎤᏂᏁᏙᎸᏗ ᎦᎵᏦᏕ.\nᎯᎸᎯᏨ ᎤᎴᏫᏍᏔᏁ ᏣᎵ ᎠᏛᎵᏍᎨ, ᏚᎦᏙᏍᏖ ᏁᏂᏏ ᏃᎴ ᏗᎾᏓᏍᏔᎢ ᏃᎴ ᏧᏂᏍᏗ ᏗᏂᏲᏟ ᏃᎴ ᎠᏂᏫᎾᎨ ᎠᏂᏍᎦᏯ ᎠᎾᏟᏂᎬ ᏁᎲ ᎠᎬᏱᏣ ᎠᏂᎾᎷᏍᎬ ᎦᏚ ᎤᏅᏓᏒ.\nᏥᏌᏃ ᎤᎪᎲ ᎤᏣᏘ ᎤᏲ ᎤᏰᎸᏒᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎦᎥ ᎠᏍᏓᏱᏳ ᏧᏁᎿᎢ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᏗᎨᏒ ᏭᏂᏴᏍᏗᏱ!\nᎠᎴ ᎾᏍᏉ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏂᏙᏓ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏩᏒ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᏉᏍᎩᏂ ᎠᏂᏍᏓᏪᏕᎩ ᏥᎩ ᏚᎳᏏᏅᏒ ᎢᎩᏙᏓ ᎡᏆᎭᎻ, ᎾᏍᎩ ᏧᏬᎯᏳᏎ ᎠᏥᎤᏍᏕᏎᎸᎯ ᎠᏏ ᏂᎨᏒᎾ ᏥᎨᏎᎢ.\nᎯᎠ ᎤᏁᏍᏓᎳ ᎫᎦ ᎨᏍᏗ ᎦᏓ ᏱᏂᏓᎦᎵᏍᏔᎾ ᏰᎵ ᎢᏯᎦᏴᎵ ᏧᏕᏘᏴᏓ.\n“ᏣᏑᎶᎩ ᎭᏫᏂ ᎯᎸᎥᎦ ᏣᎿᏬ ᎡᎳᏆᏗ!” ᎤᏪᎷᏁ ᎠᎳᏂ.\nᎭᏫᏂ ᏕᎦᎶᏛ ᏧᏪᏥ ᎤᎦᏃᏩ ᏃᎴ ᎤᎧᎭᏲᏓ ᎨᏎᏍᏗ.\nᏍᎩᏃᎯᏏ ᎭᎾ ᎮᏙᎲᎢ.\nᏚᏁᏤᎸᏃ ᎤᏂᏣᏘ ᎧᏁᏍᎪᎯ ᎨᏒ ᎤᎾᏅᏗᏱ, ᏚᎩᏒᏃ ᎯᏍᎩ ᎦᏚ ᎠᎴ ᏔᎵ ᎠᏣᏗ ᏚᏁᏒ, ᎦᎸᎳᏗᏃ ᏫᏚᎧᎾᏅ ᎤᎵᎮᎵᏨᎩ, ᎠᎴ ᏚᎬᎭᎷᏴ ᏚᏁᎸᎩ ᎦᏚ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᏣᏘ ᏫᏚᏂᏁᎸᎩ.\nᏃᏗ ᏌᎳᏓ ᏚᎾᎧᎾᏁᎢ ᎪᎯᏓ.\nᎢᏥᏁᏉᎨᏍᏗᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏩᎵ ᎠᎴ ᎡᏥᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ; ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎪᎯ ᎨᏒ, ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪᏃ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎠᎴ ᎠᎦᏔᎾᎢ ᎠᏓᏁᎸ ᎠᏥᎦᏘᏗᏍᏗ, ᎾᏍᎩ ᎤᏅᏏᏙᎯ ᏄᎬᏫᏳᏌᏕᎩ ᏅᏓᏳᏩᏁᎵ ᎦᏁᎸᎢ, ᎾᏍᎩ ᏧᏁᏗᏱ ᎤᎾᎵᏍᏓᏴᏗ ᏂᏓᏍᏆᎸᎯᏒᎢ?\nᎠᏋᎦᏎᎠᏍᏙᏗᎢ ᎤᏤᎵᎢ ᎢᎾᎨᎢ ᎥᏃᏥ ᎠᎧᎵᎢᎲᎢ\nᎤᏮᏔᏅ ᎠᏰᎸ ᎤᏇᏓᎵ ᎨᏒ ᎠᏲᎱᏍᎬᎢ, ᏧᎬᏩᎴ ᎬᏂᎨᏒ ᎢᏨᏁᏗᏱ ᏂᏥᏍᎦᏅᎾ ᎠᎴ ᎪᎱᏍᏗ ᏁᏧᎢᏍᏛᎾ ᎠᎴ ᎦᏰᏥᎳᏫᏎᏗ ᏂᎨᏒᎾ ᎾᏍᎩ ᎠᎦᏔᎲᎢ;\nᎾᏍᎩᏃ ᏔᎵ ᏫᏄᏒᎸ ᎾᎿ ᎤᏂᎩᏒᎩ, ᎠᎴ ᎨᎵᎵ ᏭᎶᏒᎩ.\nᏥᏌᏃ ᎾᎿ ᎤᏂᎩᏒ ᏔᏲᎢ ᎠᎴ ᏌᏙᏂᏱ ᏭᎶᏒᎩ.\nᏗᏂᏲᏟ ᏍᏉ ᏧᏁᎷᏁᎢ, ᏃᏗ ᏂᎦᏓ ᎤᏁᏅᏎ ᏗᎾᏓᎪᎾᏗᏍᎬ.\nᎾᏍᎩᏃ ᏚᎵᏔᏗᏅᏎᎢ, ᎤᎴᏁᎢ, ᎠᎴ ᎤᏪᏙᎴᎢ, ᎠᎴ ᎢᏧᎳᎭ ᏭᏂᏴᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎡᏙᎮᎢ, ᎠᎴ ᏓᎵᏔᏕᎨᎢ, ᎠᎴ ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ.\nᎠᎴ ᎬᏂᏳᏉ ᎤᎷᏤ ᎩᎶ ᎢᏳᏍᏗ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏤᎳ ᏧᏙᎢᏛ; ᎤᎪᎲᏃ [ᏥᏌ] ᏚᎳᏍᎬ ᎤᏓᏅᏁᎢ,\nᎾᎯᏳᏰᏃ ᏅᏩᏙᎯᏯᏛ ᎠᎴ ᏄᎾᏰᎯᏍᏛᎾ ᎠᎾᏗᏍᎨᏍᏗ, ᎿᏉ ᏄᏰᎶᎢᏍᏔᏅᏛ ᎠᏓᏛᏗᏍᎩ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᎩᎵᏯ ᏧᎷᏤᎰ ᎠᎨᏴ ᎦᏁᎵᏛ; ᎠᎴ ᎥᏝ ᎤᎾᏗᏫᏎᏗ ᏱᎨᏎᏍᏗ.\n”ᎣᏍᏓ ᎤᏒᎯ, ᏌᎳᏓ!”\nᎤᏙᎯᏳᎯᏯᏰᏃ ᎠᎾᏡᏗᏍᎬ ᎾᏍᎦᏅᎾ ᏤᏥ ᏥᏌ ᎾᏍᎩ ᎯᎶᏁᏛ ᎢᏧᎳ ᎡᎶᏛ ᎠᎴ ᏆᏂᏗ ᏆᎴᏗ ᎠᎴ ᏴᏫ ᏧᎾᏓᎴᏅᏛ ᎠᎴ ᎢᏏᎵ ᏴᏫ ᏚᏂᎳᏫᏨᎩ,\nᎠᎴ ᏞᏍᏗ ᎤᏲ ᏰᏣᏓᏅᏓᏗᏍᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎢᏥᏰᎸᏔᏅᎯ ᏥᎩ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎡᏧᏓᎴᏍᏗ ᎨᏒ ᎠᏍᏆᎸᎲᎭ.\nᎠᏦᏴ ᏭᏂᏬᎯᎶᏎ, ᎠᏦᏴ ᎠᏰᎵ ᎤᎾᏓᏄᎸ ᎤᏁᏅᏎ ᏏᏆ ᎠᏍᏚᏗ ᎢᏣ.\nᎤᎵᎮᎵᏍᏗ ᏂᎦᎵᏍᏓ.\n“ᎭᏂᏉ ᏥᏙᎦ.”\nᎠᎴ ᏫᏨᎶᎢᏍᏓᏁᏗᏱ ᎹᏏᏙᏂ ᏩᎩᎷᎯᏍᏗᏱ, ᎠᎴ ᎹᏏᏙᏂ ᏗᎦᏂᎩᏒ ᏔᎵᏁ ᏅᏓᏨᎷᏤᏗᏱ, ᎠᎴ ᏧᏗᏱ ᏫᏥᎦᏛ ᏍᎩᏯᏘᏅᏍᏗᏱ.\nᎿᏉᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎯ ᏚᏄᎪᏔᏅ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᏧᏓᏴᎡᏗᏱ ᏏᎦ, ᏖᎸᎳᏗ ᏙᏧᏫᏒ ᏚᏅᏎᎢ.\nᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅ ᏓᏟᎶᏍᏗᏍᎬᎢ, ᎤᎾᏙᎴᎰᏒᎩ ᎤᏅᏒ ᎨᏥᏛᎬᎢ.\nᏂᎯ ᎢᏥᎦᏔᎯ ᏂᏣᎵᏍᏗᎭ, ᎠᎴ ᎾᏍᏉ ᎤᏁᎳᏅᎯ, ᏂᎦᎥ ᎾᏍᎦᏅᎾ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ, ᎠᎴ ᎦᎫᎯᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎣᎨᏙᎸ ᎢᏨᏰᎳᏗᏙᎸ ᏂᎯ ᎢᏦᎯᏳᎯ;\nᏰᎵᏉᏰᏃ ᏱᎩᏰᎸᎭ ᎦᏳᎳ ᎢᎦᎴᏂᏙᎸ ᏕᎩᎸᏫᏍᏓᏁᎸ ᎣᏏᏳ ᎤᏂᏰᎸᏗ ᎨᏒ ᎾᏂᎦᏔᎾᎥᎾ, ᎾᎯᏳ ᏥᏕᏙᎲ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏚᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎬᏓᏴᏍᏕᏍᏗᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏍᎦᎾᏩᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏓᎾᏗᏔᏍᎬ ᎨᎳᏗᏓᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ;\n“ᎯᏥᎦᏘᏰᏍᏗ ᏕᎦᏃᏣᏢᎢ!” \nᎠᎴ ᎤᏣᏖ ᏧᏓᎴᏅᏛ ᏚᏪᏲᏁ ᏚᏟᎶᏍᏓᏁᎴᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴ ᏓᏕᏲᎲᏍᎬᎢ,\nᏫᎵᎻ ᎣᏍᏓ ᎤᏰᎴᎮ ᎠᎦᎦᏙᏍᏗᏍᎬ.\nᏩᏏᏓᏂ ᏚᎦᏘᎸᏒ ᎠᏲᏟ ᎨᏒ, ᎠᏂᏍᎦᏯ ᏧᏍᏔᏩᏛᏍᏗ ᎤᏚᎸᎲ.\nᏉᎳᏃ ᎤᏁᎳᏫᏎᎸᎩ ᏒᏃᏱ; ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎼᏗᏙᏂ ᎡᎯ ᎦᏙᎨᎢ, ᎤᏔᏲᏎᎮᎢ, ᎯᎠ ᏄᏪᏎᎮᎢ; ᎹᏏᏙᏂ ᏫᎷᎩ, ᎠᎴ ᏫᏍᎩᏍᎨᎸ.\nᏍᏈᏍᏓ ᎤᏓᏑᏲ ᎪᎱᏍᏗ ᎦᏙᎯ ᎠᏓᏍᎨ.\nᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎸᎳᏗ ᎡᎯ ᎤᏂᏐᏢᎢᏍᏔᏅᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏚᏁᎯᏍᏓᏁᎲᎢ ᎠᎴ ᏚᏂᏥ-ᏍᏓᎸᎢ, ᎠᎴ ᎥᏝ ᎤᏲ ᏳᏂᏰᎸᏁ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ.\nᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏗᏔᏲᎭ ᎢᎩᏁᎰᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎢᎩᏍᏆᏂᎪᏛ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏕᎩᎸᏫᏓᏁᎲ ᎾᏍᎩ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᏕᎩᎧᏅᎢ.\nᎾᏍᎩᏃ Ꮎ ᎤᏤᎵ ᎠᏛ ᏧᏲᏍᎩ ᏧᏨᏍᏗᏱ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏧᏲᏍᎩ ᏂᎨᏒᎾ ᏧᏨᏍᏗᏱ ᎤᏟ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ.\nᏚᏳᎪᏛᏍᎩᏂ ᏧᎸᏫᏍᏓᏁᎯ ᎢᎦᎦᏛ ᎦᎷᎪᎢ, ᎤᏚᎵᏍᎪ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᏔᎵ ᎩᏄᏗᏘ ᏃᎴ ᏔᎵ ᏍᎪᎯ ᎠᏂᏎᏂᏏ ᏚᏁᎴ ᏲᎾ ᎤᏤᏍᏙ.\nᎣᏍᏓ ᎠᎩᏬᏂᏍᏗ ᏥᏏᎹᏛ ᏓᎬᏔᏂᏒ ᎠᏆᎵᏍᏙᏗ.\nᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏌ ᎬᏩᎷᏤᎸᎩ ᎤᏅᏒ ᎨᏒᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙᏃ ᏦᎩᏄᎸᏅᎩ ᎣᏥᏄᎪᏫᏍᏗᏱ?\nᎤᏍᎦᏨ ᏥᏔᏲᏎᎲ.\nᎨᏍᏗ ᏳᏓᏅᏌ ᏫᎵᎻ.\nᎣᏍᏓ ᏗᎧᏃᏗ ᏥᎨᏐ ᎤᏪᎵᏍᏗ ᎰᎻ.\nᎬᏂᎨᏒ ᏄᏍᏛᎢ ᎦᏙᎯ, ᎤᏂᏂᎬᎬ ᏓᏳᏓᎴᏅᏓ ᏯᏂᎷᎩ.\nᎠᎴᏬ ᎢᏓᎵᏅᏟ, ᏕᏥᎦᏔᎭ ᏍᏗᏇᎾ ᏚᏓᏘᎾᎥᎢ, ᎾᏍᎩ ᎢᎬᏱ ᎤᏓᏔᏅᎯ ᎨᏒ ᎠᎦᏯ, ᎠᎴ ᎾᏍᎩ ᏚᎾᏓᏲᏒ ᏧᏂᏍᏕᎸᎯᏓᏍᏗᏱ ᎤᎾᏓᏅᏘ;\nᏑᎾᎴᏉᏃ ᏔᎵᏁ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎷᏨᎩ; ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎥᎬᏩᎷᏤᎸᎩ; ᎤᏪᏅᏃ ᏑᏪᏲᏅᎩ.\nᏧᎵᏨᏯᏍᏗ ᎨᏎ Ꮭ ᏱᏓᏓᏲᏍᎨᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏯᏅᏓᏗᏍᏗᎭ ᏣᏖᎸᏗᏱ ᎤᏁᎳᏅᎩ ᏣᏁᎸᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏥᏣᏯᎠ, ᎾᏍᎩ ᏕᎬᏯᏏᏔᏛ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎾᎿᏃ ᎢᎬᏱᏗᏢ ᏗᏓᏂᏐᏗᏱ ᏚᏃᎴ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᎠᎴ ᏐᎢ ᎺᎵ.\nᏂᎬᎾᏛ ᎦᎳᎨᏲ ᏥᏍᏕᏥ ᎤᎩᏍᏗ---ᏕᎦᎵᏦᏩᏛ, ᎠᏌᏅᏗ, ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ---Ꭽ ᏰᎵᏉ ᏂᎦᎣ ᎤᏁᎸᏗ ᎤᏂᏑᎸᏓ ᎠᎵᏍᏓᏴᏗ, ᏰᎵᏉ ᏍᏈᏍᏓ ᎤᎾᏓᏓᏍᎬ ᏥᏍᏕᏥ ᎤᎾᎵᏍᏓᏴᏗ.”\nᏥᏌᏃ ᏚᏪᏙᎵᏨ ᏗᏂᎦᏙᎵ ᏚᏒᏁᎸᎩ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᏂᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎩ; ᎠᎴ ᎬᏩᏍᏓᏩᏛᏒᎩ.\nᎠᎴ ᏂᎦᏛ ᎤᏁᏅᏎ ᎨᎦᏎᏍᏗᏱ ᎠᏂᏏᏴᏫᎭ ᎨᏒ ᏙᏓᏂᏚᎲᎢ.\n”ᎠᏯᏖᎾ ᎢᏳᏛᏅᏓᎩᏓᎩ ᎭᏗ?” \nᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏏᏌ ᎣᎦᏍᏓ ᎤᏁᏨᎯ ᎤᎾᏄᎪᏤ ᏂᎬᎾᏛ ᎡᎶᎯ ᎨᎦᏎᏍᏗᏱ.\nᏗᏘᏲᏍᏗ ᏃᎴ ᎠᏓᎾᏅᏗ ᎤᏩᏌ ᏥᎬᏫᏳ.\nᎠᏎᏃ ᎢᏥᎪᏩᏘᎭ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏥᏰᎸ ᎠᏆᏚᏓᏕᏫᏒᎢ, ᎾᏍᎩ ᏗᎦᏘᎴᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏓᏅᏙᎩᎯ ᎠᎲᎢ, ᎠᎴ ᏥᏴᎩ ᎢᏯᏋᏁᎯ ᎠᏇᏓᎸᎥᏍᎩ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎠᏍᎦᏂ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏥᏰᎸ ᎠᏆᏚᏓᏕᏫᏒ ᎠᎲᎢ.\nᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎡᎲᎩ ᏣᏂ ᏧᏙᎢᏛ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏅᏏᏛ ᎨᏒᎩ.\nᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏬᏑᎶᏨᎯ ᏧᏪᏥ ᎠᎴ ᏧᎵᏏ ᏯᏁᎭ, ᎾᏍᎩ ᎠᎾᏕᎶᏆᏍᎨᏍᏗ ᏧᏂᎸᏉᏙᏗᏱ ᏙᏧᏁᏅᏒ ᎠᏁᎯ, ᎠᎴ ᏧᎾᎫᏴᎡᏗᏱ ᏧᏂᎦᏴᎵᎨᎢ; ᎾᏍᎩᏰᏃ ᎣᏏᏳ, ᎠᎴ ᏧᏓᏂᎸᎢᏍᏗᏳ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᎤᎬᏩᎵ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ, ᏥᎦᏟᏂᎬᏁᎭ ᎾᏍᎩᏯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎵᏂᎩᏗᏳ ᏥᏚᎸᏫᏍᏓᏁᎭ ᏗᏆᏓᏅᏛᎢ.\nᎾᏍᎩᏃ ᎠᏄᎮᎵᏤᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏂᎪᎯᎸ ᎢᎦᎵᎮᎵᏍᏗᏱ ᏥᏂᎬᏁᎭ ᎢᎦᏓᎵᏁᎯᏛ ᎤᎬᏩᎵ ᎦᎶᏁᏛ ᎡᏓᎵᏍᎦᏍᏙᏛᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏥᏂᎬᏁᎭ ᎦᏩᏒᎬ ᎤᏩᏒ ᎠᏥᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏴ ᎢᎬᏗᏍᎬ ᏂᎦᎥ ᏕᎨᏌᏗᏒᎢ.\nᎢᏳᏓᎵᎭ, ᎡᏘᏴ ᏥᎨᏎ ᎤᏂᏍᎦᏎᏗ ᎨᏎ, ᎠᏎᏃ ᎨᏥᏁᏘᏍᏔᏅ ᎨᏥᏔᎶᏍᎬ.\nᎠᏎᏃ, ᎠᏎᏉᏉ ᎬᎩᎸᏉᏗᎭ ᏥᏓᎾᏕᏲᎲᏍᎦ ᏓᎾᏕᏲᎲᏍᎬ ᏴᏫᏉ ᎤᏂᏁᏨᎯ.\nᎤᏭᏔᎩᏒ ᎧᏫ ᎠᏥᏍᏙᏗ, ᎤᎾᏤᎸ ᎠᏥᏍᏛ, ᏍᎩᏴ ᎤᏣᏅᏓᏕᎸ ᏗᎪᏪᎵᏍᎩ ᎣᏍᏓ ᎢᏳᏩᏁᏗ ᎤᎵᏓᏍᏔᏅ.\nᎠᏏᏃ ᎤᏃᏒᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ, ᏥᏌ ᎠᎦᏔᎯᏳ ᎨᏒᎩ ᎤᏍᏆᎸᎡᏱ ᎠᏂ ᎡᎶᎯ ᎤᏓᏅᏍᏗᏱ, ᎠᎦᏴᎵᎨᏍᏛᏱ ᏭᎶᎯᏍᏗᏱ, ᏧᎨᏳᎯᏳ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏒᎩ ᏧᏤᎵᎦ ᎡᎶᎯ ᎠᏁᎯ, ᎬᎵᏍᏆᏗᏍᎩ ᏧᎨᏳᎯᏳ ᎨᏒᎩ.\nᎭᏂ ᎤᏍᏆᎸᎲ ᎬᏂᎨᏒ ᎢᏯᏋᏁᏗ ᏂᏥᎨᏳᎥ.\nᏚᏩᏩᏍᏛᏂᎸ ᏗᏂᏐᎯ ᏗᏂᎳᏴᏅᎯᏛ ᏧᏔᎾᎶ ᎬᏘ, ᏚᏂᎾᏌᎾᎩᏒ.\nᎤᏪᎷᎦ ᎩᎶ ᎢᎾᎨᎢ, ᎯᎠ ᏂᎦᏪᎭ; ᎡᏣᏛᏅᎢᏍᏓᏏ ᏱᎰᏩ ᎤᎶᎯᏍᏗᏱ, ᏚᏅᏅ ᏗᏥᏥᏃᎯᏍᏓ.\nᎤᎵᏗᏨ ᏭᏩᏌᏙᏰᎢ ᎧᏁᏍᎦ, ᏗᎩᏏ ᏭᎾᏏᏁᎢ.\nᏍᎩᎾᎾ ᏱᏄᏛᏁᎳ, ᎾᏍᏉ ᏗᎨᏫ ᏳᏫᎦᎷᎩ ᎨᏴ ᎯᎸᎢᏴ.\nᎠᏗᎾ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎠᏍᎦᏂ ᏗᏥᎾᏝᎢ ᏥᎨᏒᎩ, ᎠᏎᏃ ᏗᏥᎾᏫ ᎬᏗ ᎢᏦᎯᏳᏅ ᎾᏍᎩ ᏄᏍᏛ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᏤᏥᏲᎯᏎᎸᎯ ᎨᏒᎢ.\nᏩᎦ ᏃᎴ ᏐᏈᎵ ᎤᏂᎩᏍᏗ ᏧᎾᏕᎨ ᎡᎳᏗᏣ.\nᏐᏉ ᏑᏒᎯᏓ ᎠᎩᏒᎸ ᎦᏚᎲ ᎭᎾ ᎾᎥᏂ ᎤᏂᎷᏨ ᎢᎾᎨ ᎠᏁᎯ ᏏᏆ, ᏌᏬᏚ ᎠᏁᎯ ᏥᏍᏛᎾ ᎢᏳᏂᏍᏗ ᏓᏂᏯᎩᏍᎬ, ᏏᏆ ᏧᎵᎩᏏ ᏗᎬᏣᏝᏅ ᎢᏳᏍᏗ ᏓᏂᎩᏍᏙᏍᎬ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎦᏙ ᏓᏓᏛᏂ? ᏥᎪ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎤᏪᎭ ᎤᏁᎳᏅᎯ? ᎬᏩᏟᏍᏗ.\nᎠᎴ ᎡᎶᎯ ᎠᏁᎯ ᏕᎦᎶᏄᎮᎭ ᎬᏗᏍᎬ ᎤᏍᏆᏂᎪᏗ ᏗᎬᏩᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᎦᏔᎲ ᏅᎩ-ᏗᎦᏅᏌᏗ; ᎯᎠ ᏏᏕᎦᏪᏎᎭ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏁᎯ, ᎾᏍᎩ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏗᏟᎶᏍᏔᏅᎯ ᎢᏦᏢᎾ, ᎾᏍᎩ ᎭᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎬᏗ ᎠᏥᏐᏅᏅᎯ ᎠᎴ ᏧᏛᏂᏛᎩ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏓᎨᏏ ᏓᏥᏅᏩᏁᏏ.\nᎥᏝᏰᏃ ᎣᎬᏒ ᏲᏣᏓᏃᎮᎭ ᎣᏣᎵᏥᏙᎲᏍᎬᎢ, ᎦᎶᏁᏛᏍᎩᏂ ᏥᏌ ᎤᎬᏫᏳᎯ; ᎠᏴᏃ ᏂᎯ ᎣᎩᏅᏏᏓᏍᏗ ᎨᏒ ᎾᏍᎩ ᏥᏌ ᏅᏗ-ᎦᎵᏍᏙᏗᏍᎬᎢ.\nᏅᏩᎾᏓᎴᏃ ᏴᏫ ᎾᎿ ᎠᏁᎯ ᎤᏤᏘ ᎣᏏᏳ ᎪᎩᏍᏆᏂᎪᏔᏅᎩ; ᎤᏃᏔᏅᏰᏃ ᏕᎪᎦᏓᏂᎸᏨᎩ ᏂᎦᏛ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᎦᏍᎬᎢ ᎠᎴ ᎤᏴᏢᎢ.\nᎠᎴ ᏂᎦᏛ ᎤᎾᎵᏍᏓᏴᏅᎩ, ᎠᎴ ᏚᏃᎸᏒᎩ. ᎠᎴ ᎤᏄᏖᏒᎩ ᎤᎵᎬᎭᎷᏴᎯ ᎦᎵᏉᎩ ᎢᏯᎧᎵᎢ ᏔᎷᏣ.\nᎤᏙᎯᏳ, ᎨᏍᏗᏗ ᏱᏗᏥᏯᎩ, ᏕᎦᏗᏔᏍᎪ--- ᎩᎦ ᎤᏂᏁᎲ.\n”ᏗᎦᏅᏏᏙ ᎠᏧᏣ ᏍᏇᎵᏎ ᎠᏯ?” ᎤᎵᏍᎦᏎᏔᏁ ᏥᏍᏕᏥ.\nᎿᏉᏃ ᎤᎴᏅᎲᎩ ᏚᎬᏍᎪᎸᏅᎩ ᏚᏂᏚᎲᎢ ᎾᎿ ᎤᏟ ᎢᎦᎢ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏚᎾᏓᏅᏛ ᏂᏚᏂᏁᏟᏴᏒᎾ ᎨᏒᎢ.\nᏥᎪ ᏂᎯ ᎤᏟ ᎡᏣᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎡᏆᎭᎻ ᎣᎩᏙᏓ, ᏧᏲᎱᏒ? ᎠᎴ ᎾᏍᏉ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏂᏲᎱᏒ. ᎦᎪ ᏂᎯ ᎭᏤᎸᏍᎦ?\nᎺᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎦᎸᏉᏗᎭ ᎣᎱᏩ,\nᏅᏙ ᏥᏗᎧᎸᎦ ᎩᎳ ᎡᎨ ᎤᏂᏏᏗ, ᎢᎦ ᎠᏗᏗᏍᎨ, ᎩᎦᎨ ᏃᎴ ᎤᏬᏘᏓ ᎦᏳᏐᎵ, ᎠᎦᏗᏓ ᎠᎩᏍᎨ ᏩᎦ ᎭᏫᏯ, ᎩᎳ ᎠᎴᏂᏍᎨ ᎤᏕᎳᏓ ᏚᎷᏫᏍᏔᏁᎲ.\nᎾᏍᎩ ᎤᏣᏘ ᎢᎩᏁᎸᎯ ᏥᎩ ᎬᏗᏍᎬ ᏂᎦᎥ ᎠᎦᏙᎮᎯᏍᏗ ᎨᏒ ᎠᎴ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ;\nᎠᎴ ᎠᎰᎵ ᏗᎦᏄᎪᎦ ᎪᏍᏓᏯ ᎭᏰᎳᏍᏗᎦᏅᎯᏛ, ᎾᏍᎩ ᏧᏩᏂᏍᏙᏗᏱ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ; ᎠᎴ ᏔᎷᎩᏍᎩ ᎬᏗ ᏗᎬᏩᏁᎶᏙᏗᏱ ᏅᏓᎬᏁᎵ; ᎠᎴ ᏖᎸᎳᏗ ᎦᏨᏩᏍᏙᏗᏱ ᎠᎳᏍᏓᎡᎭ ᎾᏍᎩ ᎤᏓᏑᏱ ᎤᏍᎦᏎᏗ ᎠᎴ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\n”ᎮᏙ ᎯᎸᎯ ᏧᏍᏆᏴᏍᏗ?,” ᏭᏛᏁ ᏫᎵᎻ.\nᎤᎬᏫᏳᎯᏰᏃ ᏓᎩᏲᎯᏎᎸᎩ ᎾᏍᎩ ᎾᏍᏉ ᏥᏕᏨᏲᎯᏎᎸᎩ, ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᎯᏳ ᏒᏃᏱ ᎠᏥᎶᏄᎡᎸ, ᎦᏚ ᎤᎩᏎᎢ;\nᎢᏳᏃ ᏱᎦᏥᏯᏂᎩᏍᏗᎭ ᏙᏧᏁᏅᏒ ᏯᏁᎦ ᏄᎾᎵᏍᏓᏴᏅᎾ, ᏩᎾᎢᏒᏉ ᏱᏓᏂᏩᎾᎦᎶᎩ; ᎢᎦᏛᏰᏃ ᎢᏅᎯᏳ ᏙᏧᏁᏅ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏔᎵᏁ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎬᏱᏱ ᏄᎵᏐᏃᎢ, ᎾᏍᎩ ᏠᎨᏏ ᎤᏣᎴᏍᏗ ᏓᏫᏒ ᎤᎶᏎᎢ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᏍᎫᏕᏎ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎤᏂᏍᏗᎨ ᎠᎾᏍᎪᎵᏰᏍᎨ ᏧᏃᏰᏂ.\nᎦᏙ ᎠᎪᎵᏰᏍᎩ ᎠᎵᏰᎾ.\n“ᎤᎶᏒᏍᏗ ᎦᏓᎭ ᏗᎦᎴᏂ ᎣᏁᎯ,” ᎤᏛᏁ ᎠᎳᏂ.\nᎤᎾᏅᏓᏕᏃ ᎤᏁᏨᎢ,\nᏗᎬᏩᎩᏨᏗ ᎤᏣᏘ ᎣᏣᏓᏙᎵᏍᏗᏍᎬ ᎣᏥᏔᏲᎯᎲ, ᎾᏍᎩ ᏗᎦᏲᎩᎪᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᎧᏛᎢ, ᎠᎴ ᎣᎩᎧᎵᏏᏐᏗᏱ ᎾᏍᎩ ᎦᎷᎶᏥᏙᎲ ᎢᏦᎯᏳᏒᎢ.\n“ᎤᏙᎯᏳᎯ,” ᎤᎾᏛᏁ ᎧᏅᏂᏍᎩ.\nᏈᏓᏃ ᎠᎴ ᎨᏥᏅᏏᏛ ᎤᏂᏁᏨ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᏁᎳᏅᎯ ᎣᏦᎯᏳᏗ, ᎥᏝᏃ ᏴᏫ.\nᎠᏍᎩᎾᏃ ᎦᏄᎪᏫᏍᎨᎢ, ᎠᎴ ᎤᏩᎨᏫ ᎨᏎᎢ. ᎯᎠ Ꮓ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏍᎩᎾ ᎤᏄᎪᏨ ᎤᏩᎨᏫ ᎤᏬᏂᏎᎢ; ᏴᏫᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ.\n”ᏓᎩᏏᎳᏛ ᏥᏥᏓᎣᎢ ᎡᎳᏗ ᏧᏫᏄᏍᏙ ᏥᏍᎪᎵ.\nᏃᏗ ᏔᎵᏁ ᏫᏚᎧᎾᏁ ᏃᎴ ᎤᎪᎮ ᎪᎱᏍᏗ, ᎡᎳᏗ ᏭᏁ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ.\nᎣᎦᏣᏅᏃ ᏥᏳᎯ ᎡᏟᎻᏗ ᎡᎯ ᎣᎩᎧᏙᏴᎩ, ᎡᏏᏱ ᎤᎶᏗᏢ ᎣᎩᏅᏍᏙᏗᏱ ᎣᎩᏰᎸᏒᎩ, ᎩᎶ ᎢᏳᏍᏗ, ᎡᎵᏍᏓᎦ ᏧᏙᎢᏛ, ᎹᏏᏙᏂ ᏕᏌᎶᏂᎦ ᎦᏚᎲ ᎡᎯ, ᎣᏤᎲᎩ.\nᎣᎯᏍᏙᏓ ᎡᏓᏍᏗ ᎨᏎᎢ,  ᎡᎵᏍᎨ ᏫᎵᎻ, ᎤᎦᏃᏩ ᎡᎳᏗ, ᏧᎵᎪ ᎤᏂᏃᏴᎵᏓ ᏌᏌ, ᏓᏓᏍᏕᏓᎵᏴᏍᎬ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏗᎴᎬ ᎢᎦ ᎡᎯ ᏅᏙ, ᎠᏂᎶᏍᎬ ᏥᏍᏆᏯ, ᎾᎥᏂ ᏄᎾᏛᏅ ᏥᏍᏕᏥ, ᎤᏐᏱ ᏄᎾᏍᏛ ᎤᏂᏃᏕᎾ, ᏚᎸᏉᏛ ᎧᏅᏂᏍᎩ, ᎠᏒᎬ ᏗᎩᏏ, ᏃᎴ ᏄᏬᏚᎲ ᏂᎦᏓ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎤᎬᏫᏳᎯ ᎤᏅᏎ ᎠᏯᏫᏍᎩ, ᎠᎴ ᎤᏁᏤ ᎤᏍᎪ ᎤᏂᏲᎯᏍᏗᏱ; ᎤᏪᏅᏎᏃ, ᎠᎴ ᏭᏍᎫᏕᏎ ᏗᏓᏍᏚᏗᏱ ᎠᏯᎥᎢ,\nᏐᎢ ᎠᎧᏘᏏ ᎢᏣ ᎤᏬᏰᏂ ᎤᏩᏂᎦᎸ ᎤᏎᎵᏙᎸ, ᎠᎧᏍᎩᏂ ᎢᏣ ᎤᏬᏰᏂ ᎦᏌᎴᏅ ᎤᏦᏩᏛ ᏭᎸ.\nᏃᏉ ᎤᏍᏆᎸ ᎣᎦᏂᎩᏍᏗ.\nᎾᏍᎩᏃ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎤᎾᏛᎦᏅᎩ, ᎾᏍᎩᏰᏃ ᏠᎨᏏ ᎤᎾᏤᎵᎦᏯ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎠᏎᎵᏓᎹ ᏕᎤᏙᎥ, ᎾᏍᎩ ᎩᎬᏱ ᎦᏛᎦ.\nᎠᎴ [ᏥᎩᎧᎭ] ᏄᎬᏫᏳᏌᏕᎩ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᎤᎦᏌᏯᏍᏗᏕᎩ;\nᎩᎶ ᏳᏢᏣ ᏴᏫ ᎾᎥ ᏂᏚᎾᏓᎸ ᏓᎾᏓᏩᏛᎯᏙᎲ ᎠᎴᏱᎩ ᏓᏂᏨᏓᏆᏍᎬ ᎤᏢᎩ ᎠᏂᎦᏘᏗᎯᎲ.\nᎠᏎᏃ ... ᎨᏍᏗ ᎫᏩᎩᎸᏙᏗ ᏱᎨᏎ ᏔᎵ ᎩᎦᏆᏘ, ᏃᎴ ᎪᎯᎢᏴ ᎦᎴᏴᏍᎨ ᏚᏄᏮ.\nᎾᏍᎩᏰᏃ ᎢᏳᏩᏂᏌᏛ ᎠᏴ ᎢᏧᎳ, ᏌᏉ ᎠᏓᏅᏙ ᎬᏗ, ᎠᎦᏴᎵᎨ ᏫᎦᏰᏗᎷᏤᏗ ᏄᎵᏍᏔᏅ.\nᎠᏎᎩ ᏗᏥᎶᏍᏗᏍᎩ ᎤᏘᏃᎯᏍᏗ ᏓᏳᏚᎸ.\nᏌᎩᎻᏃ ᏫᏗᎨᏥᏅᏍᏔᏁᎢ ᎠᎴ ᏕᎨᏥᏂᏌᏁ ᎠᏤᎵᏍᏛ ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᏕᎸ ᏧᎫᏴᏔᏁ ᏥᏚᏩᏎᎴ ᎡᎹ ᏧᏪᏥ, ᎾᏍᎩ ᏌᎩᎻ ᎤᏙᏓ.\nᏥᏌᏃ ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴ ᏗᎧᎿᎦᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ; ᏚᏳᎪᏗᏍᎪ ᏗᏓᏅᏬᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ?\nᏚᎵᏂᏆᏅᏅᏃ ᎠᏍᏓᏯ ᎤᏪᎷᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏞᏍᏗ ᎯᎠ ᎤᏂᏍᎦᏅᏨ ᏱᎦᎯᏍᏔᏁᏍᏗ. ᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎸᏁᎢ.\nᎠᎾᏍᎪᏏᏙᎲ ᏗᏂᏴᏐᎵ ᏃᎴ ᏙᏰ ᏓᏂᏅᏙᎬ ᏗᎬᏘ, ᎤᏂᎭᏲᎲ ᎣᏍᏓ ᎤᏂᎩᏍᏗ ᏍᎪᏯ ᎠᎴ ᏧᏂᏍᏗ ᏥᏍᏕᏥ.\nᎾᏍᎩᏰᏃ ᏄᏩᏂᏌᏅᎩ ᎤᏂᏣᏛᎩ ᎠᏂᏧᏏ ᎤᎾᏓᏅᏒᎩ, ᎠᎴ ᏥᏌ ᏫᎬᏬᎯᏳᏅᎩ.\nᏳᏂᎾᏗᏅᏎᏰᏃ ᎾᏍᎩ ᎯᎠ ᎠᏠᏁᏗ ᏦᎢᏧᏈ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᎤᎶᏒᏍᏗ ᏱᏚᎵᎬᏩᎳᏁᎢ, ᎠᎴ ᎤᏲᎢᏳᎾᏛᎿᏕᎩ ᏗᎬᏁᏗ ᏱᎨᏎᎢ. ᎠᎴ ᎬᏩᎪᏁᎶᎯᏎᎴᎢ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᎦᏙᏃ Ꮭ ᏱᏦᎵᎦ ᏥᏬᏂᏍᎬᎢ? ᏅᏗᎦᎵᏍᏙᏗᏍᎩᏂ ᏥᏁᎬ ᏰᎵ ᎨᏣᏛᎪᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎾᏍᎩ Ꮎ ᏧᏃᎮᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎤᏃᎮᎸᎯ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᎪᎲᎢ.\nᏂᎯᏍᎩᏂ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏗ ᏰᏣᏕᎶᏆᎡᎸ ᎦᎶᏁᏛ,\nᎢᏣᎵᎮᎵᎨᏍᏗ ᎠᎴ ᎤᏣᏔᏅᎯ ᎣᏍᏛ ᎢᏣᏓᏅᏖᏍᏗ, ᎤᏣᏘᏰᏃ ᎡᏣᎫᏴᎡᏗ ᎦᎸᎳᏗ; ᎾᏍᎩᏯᏰᏃ ᎤᏥ ᏂᏚᏅᏁᎸᎩ ᎠᎾᏙᎴᎰᏍᎩ ᎢᎬᏱ ᏥᏂᎨᏤᏅᎡᎸ.\nᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂ ᎨᏴ ᏗᎨᏥᏅᏩᏅᎯ ᎤᏂᏲ ᏗᏓᏅᏙ ᎬᏩᎾᏕᏯᏙᏗᏍᎬ ᎠᎴ ᏚᏂᏢᎬᎢ, ᎾᏍᎩ ᎺᎵ ᎹᎦᏕᎵ ᎡᎯ ᏣᏃᏎᎰᎢ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎠᏂᏍᎩᎾ ᎬᏩᏄᎪᏤᎸᎯ,\nᎭᏙᏯᎯᏗᏍᎬ ᏕᎯᏅᏫᏍᎬᎢ ᎠᎴ ᎤᏰᎸᏛᎢ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏅᏗᏍᎬ ᏕᎤᏙᎥ ᏥᏌ ᎾᏍᎦᏅᎾ ᏤᏥ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᎡᎵᎦ, ᎨᏨᏲᎢᏳᏗ ᎨᏒ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎤᎬᏩᎵ.\nᏰᎵᏃ ᎤᏬᎯᏨ ᎠᏂᏧᏏ ᎤᏂᏃᎮᎴ ᎤᏂᎯᏍᏗᏱ.\nᎬᏂᏳᏉᏃ ᎬᏩᏘᏃᎮᎴ ᎠᏍᎦᏯ ᎤᏢᎩ ᎤᎸᏓᎸᎥᏍᎩ ᎦᏅᎨ ᎠᏤᏍᏙᎩᎯ; ᏥᏌᏃ ᎤᏙᎴᎰᏒ ᎠᏃᎯᏳᎲᏍᎬᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ; ᎠᏇᏥ, ᎤᎦᎵᏍᏘᏳᏉ ᎭᏓᏅᏓᏓ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ.\nᏍᎪᎯ ᎢᏳᏕᏘᏴᏓ.\nᎠᎴ ᏥᏌ ᎧᏁᏉᏥᏎ ᎠᎦᏔᎿᎢᏳ ᎨᏒ ᎠᎴ ᎠᏛᏍᎬᎢ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎴ ᏴᏫ ᎬᏩᎨᏳᎯᏳ ᎨᏒᎢ.\nᎠᎴ ᎯᎠ ᏄᏪᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᎴ ᎠᏜᏫᏍᏗᏍᎨᏍᏗ ᎤᏓᎵᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏂᏔᎵ ᏌᏉᏉ ᎤᏂᏇᏓᎸᎢ?\n“ᏃᏉᏗ ᏫᎵᎻ ᎧᏃᎮᎭ!” \nᎪᎯᎩ ᏂᎫᏩᏪᏓ ᎨᏎᎢ ᏤᎩᏏᏂ, ᏭᏕᎵᎬ ᏫᏚᏩᎪᏗ ᏂᎦᏓ ᎠᏂᏴᏫᏯ.\nᎢᏧᎳ ᏙᏍᏔᎧᎾᏅ ᎦᏚ ᏗᎦᏌᏆᎸ ᎭᏫᏯ ᏗᎨᎵᏍᎩ, ᎦᏚ ᏧᎦᎾᏍᏓ ᎠᏓᏴᏍᏕᏍᎩ ᏗᏑᏱ, ᏒᎦᏔ ᏃᎴ ᏆᎷᏌ ᏗᎦᏓᏫᏔᏅ ᏗᏑᏰᏛ.\nᎠᏦᏴ ᏭᎷᏤ ᏫᎵᎻ ᎤᏕᎶᎰᏎ ᏧᏳᎪᏗ ᏄᏪᏒ ᏌᏌ-- ᏐᏉ ᎠᏯᏖᎾ ᎢᏳᏛᏅᏓᎩᏓ ᎨᏎ.\nᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏞᏍᏗ ᎩᎶ ᏯᏆᏕᏍᏙᏔᏁᏍᏗ; ᏥᏰᎸᏰᏃ ᏓᎩᏁᎸᎭ ᎠᏐᎴᎰᎯᏍᏙᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᏥᏯᏤᎵ ᎨᏒᎢ.\nᎠᎴ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ, ᎾᏍᎩᏃ ᏥᏌ ᏕᎯᏲᎥᎭ, ᏧᏤᎵᏰᏃ ᏴᏫ ᏙᏛᏍᏕᎸᎯ ᏙᏓᎫᏓᎴᏏ ᎤᏂᏍᎦᏅᏨᎢ.\nᎤᏁᎫᏥᏓ, ᏧᎦᎸᏓ ᏃᎴ ᎩᎦ ᎠᏗᏔᏍᎩ ᏌᎳᏓ---ᏄᏓᎴᏒ ᎣᏍᏓ ᏯᎩᏰᎸᎲᎾ.\nᎤᏒᏙᏂ, ᎠᏎᏍᎩᏂ ᎠᏆᏍᎦᏱᏓᏃ ᎨᏒ.\nᎠᏆᏍᎦᏰᎾ ᏥᎨᎲ ᎠᏎᏍᎩᏂ, Ꮓ, ᏲᎵᎪ, ᎩᎶ… \nᎠᏍᎩᎾᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᎯᏁᎩ ᎯᎠ ᏅᏯ ᎦᏚ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏂᏆᎵᏏᏃ ᎤᎾᏙᎴᎰᏒ, ᎯᎠ ᏂᏚ ᏂᏪᏎᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎦᏙᏃ ᏗᏤᏲᎲᏍᎩ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎢᏧᎳᎭ ᎢᎠᎾᎵᏍᏓᏴᎲᏍᎦ?\nᎡᎳᏆᏗ ᏫᎵᎻ ᎤᏔᏪᏙᏁ.\nᎠᏏᏉᏃ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎨᏎ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎾᎵᎮᎵᎬᎢ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᎵᏍᏓᏴᏗᏍᎪ ᎠᏂ ᎢᏥᎭ?\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏚᏂᏘᎴ ᏧᏂᎾᏫᏱ, ᎠᎴ ᏧᏂᎯᏍᏗᏱ ᎤᏂᏱᎵᏙᎴᎢ.\nᎾᏍᎩᏃ ᎠᏏᏴᏫ ᎨᏒ ᏧᎾᏓᎴᏁᎢ ᎠᎴ ᎾᏍᎩ ᎤᏲᎱᏒᎯᏉ ᎾᏍᎩᏯ ᎨᏒᎢ, ᏃᏈᏏ ᎦᎸᎶ ᏣᏂᎧᎳ ᏥᏄᏂᏧᏈᏍᏗ ᎢᏳᏂᏧᏈᏍᏗ, ᎠᎴ ᏃᏳ ᎠᎺᏉᎯ ᎤᏣᏘ ᏥᎦᎳᎨᏴ ᎬᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ ᏥᎩ ᎢᏳᏂᏧᏈᏍᏗ.\nᎠᎦᏍᎦᏃᎶᏍᎦ, ᏧᏳᎪᏗ ᏯᎩᏃᎮᎳ.\nᎠᏎᏃ ᏆᎾᎥᎢ ᏄᏍᏛᎢ ᎤᏬᏰᏂ ᏍᎩᏴᏃ ᎯᎠ ᎠᏂᏃᏟᏙᎯ ᏰᎵ ᎤᏂᏲᏍᏙᏗ ᎨᏒ ᎯᎠ ᎤᏐᏅᎢ ᏍᎩᎵ.\nᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏨᎪᎥᎩ ᏗᎧᎸᎬ ᎢᏗᏢ ᏧᏳᎵᎾᎳᏓᏩᏗᏒᎩ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏓᏰᎸᏙᏗ ᎨᏒ ᎦᏁᎲᎩ; ᎠᎴ ᎠᏍᏓᏯ ᏚᎵᏍᏓᏁᎸᎩ ᏅᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᎨᏥᏁᎸᎯ ᏥᎨᏎ ᎪᎱᏍᏗ ᎤᏅᏁᏗᏱ ᎡᎶᎯ ᎠᎴ ᎠᎺᏉᎯ,\nᎢᎦᏛᏃ ᎤᎾᎴᏅᎮ ᏕᎬᏩᎵᏥᏍᏆᏍᎨᎢ, ᎠᎴ ᎤᎧᏛ ᎬᏭᏢᏁᎮᎢ, ᎠᎴ ᎠᏍᏈᏅ ᎨᎬᏩᏂᏗᏍᎨᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎮᎢ, ᎭᏙᎴᎰᎯ; ᎠᎴ ᎨᏥᏅᏏᏓᏍᏗ ᏕᎬᏩᏂᎮᎢ.\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎤᏅᏏᏙᎯ ᎦᎷᏨᎭ ᎤᏩᏛᎲ ᎾᏍᎩ ᎾᏛᏁᎲᎢ.\n“ᎠᏯᏛ ᎡᎵᏊ ᏯᏆᎾᏔ,” ᎤᏛᏁ ᏩᎭᏯ. “ᏗᎨᏏ.”\nᎾᎪᏔᏅ-ᎾᏃ ᎦᏚ ᎠᎩᏍᏗᏱ ᎤᏍᏆᎸᎯᏗᏎᎢ, ᎾᏍᎩ ᎧᏃᎯᏰᏃ ᏗᎵᏍᏓᏴᏗᏱ ᏥᏚᏙᎠ.\nᏒᏃᏱ ᎠᏍᏆᎶᎦ, ᎿᏉ ᎤᎩᏨᏂᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏛᎦ ᎤᎵᏏᎬ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎢᏓᏄᏬᏍᏓ ᎠᎵᏍᎦᏍᏙᏙ ᎢᎦ-ᎦᏛ ᎡᎯ.\nᎢᎸᎯᏳᏰᏃ ᏧᎾᏄᎪᏤ ᏚᏓᏏ ᎩᎶ ᏧᏤᎸᏎᎢ, ᎠᏂᏍᎦᏯ ᏅᎩᏧᏈ ᎢᏴᏛ ᎢᏯᏂᏛ ᏥᎬᏩᎵᎪᏁᎴᎢ, ᎾᏍᎩ ᏣᏥᎴᎢ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎬᏬᎯᏳᏅᎯ ᏧᎾᏗᎦᎴᏲᏤ ᎠᎴ ᏥᏫᎬᏩᏂᏲᏙᎴᏉ.\nᎦᏚᏏᎢᏰᏛ ᎠᏓᎾᏅ, ᏍᎪᏁ ᎨᏴ, ᎠᏍᎩᏗᏨ ᏗᏥᎶᏓ ᎢᏳᏍᏗ ᏄᏍᏛ.\nᎤᏙᎰᎯᏍᏗ ᎨᏎ ᏍᎩᎾᎾ ᏱᏄᎾᏛᏁᎸᎾ ᎨᏒ, ᎡᏍᎦᏉ ᏄᎾᏛᏁᎸ Burr ᏃᎴ Hamilton ᎤᏪᏘ ᎤᏂᏃᎮᎸ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏦᏏᏏᏍᎩ! ᎢᏥᏴᏫᏛᎲᏰᏃ ᎠᏍᏚᎢᏍᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎥᏝᏰᏃ ᎢᏨᏒ ᏱᏥᏴᎸ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏂᏴᎯᎯ ᏕᏥᏲᏍᏙᏓᏁᎸ.\nᎣᏍᏛ ᏴᏫ ᎣᏍᏛ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ ᎣᏍᏛ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎪᎢ; ᎤᏲᏃ ᏴᏫ ᎤᏲ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ ᎤᏲᎨᏒ ᎦᎾᏄᎪᏫᏍᎪᎢ; ᎤᏣᏛᏰᏃ ᎤᎾᏫ ᎤᏪᎲ ᎠᎰᎵ ᎧᏁᎪᎢ.\nᏥᏯᏦᏨ ᎨᎵ.\nᎬᏂᏳᏉᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎴᏂᎴ ᎦᏅᎬᎢ, ᎢᎦᏃ ᎤᏙᏤ ᏗᏓᏍᏚᏗᏱ; ᎤᏩᏂᎸᏃ ᏈᏓ ᎠᏍᏆᎨᏂ, ᏕᎤᎴᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏔᎴᎲᎦ ᏞᎩᏳ. ᏧᏓᏕᏒᏛᏃ ᏚᏓᏕᏛᏃ ᏚᏙᎠᏎ ᏧᏬᏰᏂ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎵᏏ ᎤᏛᎦᏅ ᎺᎵ ᎤᏲᎵᎲᎢ, ᎠᏲᎵ ᎦᏁᎵᏒ ᎤᎵᏖᎸᏁᎢ; ᎠᎴ ᎵᏏ ᎤᎧᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ,\n“Ꭷ ᎯᏍᏕᎾᏃ,” ᎤᏛᏁ.\nᏗᏂᏅᎪᎢ ᏕᎷᎨ ᏧᎵᏑᏫᏓ ᏂᏚᎵᏍᏔᏁ ᏃᎴ ᎩᎦᎨ ᏧᎵᏑᏫᏓ ᏂᏚᎵᏍᏔᏁᎢ.\nᎪᎯᏳᏙᏗ ᎦᏓ ᎾᏅᏁᎲ ᏃᏉ.\nᎾᏍᎩ ᎯᎠ ᏂᎦᏗᏳ ᏥᏌ ᏚᏬᏁᏔᏅᎩ ᎤᏂᏣᏘ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᏂᏓᏟᎶᏍᏓᏁᎲᎾᏃ ᎨᏒ ᎥᏝ ᏱᏚᏬᏁᏔᏁᎢ.\nᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎦᏪᎳ, ᏓᏥᏛᏔᏂ ᎠᏂᏏᎾᏒ ᎠᏂᏏᎾᏌᏂ, ᎠᎴ ᎠᏎᏉ ᏅᏓᎦᏥᏴᏁᎵ ᎠᏁᏯᏔᎯ ᎠᏁᏯᏔᎲᎢ.\nᎤᏁᏨᏃ ᎯᎠ ᏄᏪᎴᎢ, ᏣᎬᏫᏳᎯ, ᎤᏁᎳᎩ ᎮᎳ ᎪᎯ ᎾᏍᏉ ᏧᏕᏘᏴᏌᏗ, ᎬᏂ ᎦᏍᎪᏏᏙᎸᎭ, ᎠᎴ ᎣᏍᏛ ᎦᏓ ᏥᏅᎭ.\nᎠᏎᏃ ᎠᏂᏧᏏ ᎠᏂᏁᎬ ᎾᏍᎩ ᎤᏂᏐᏅᏤᎸ, ᎠᏎ ᏏᏐᎢ ᏩᎩᎲᏍᏙᏗ ᎾᏆᎵᏍᏓᏁᎸᎩ; ᎥᏝᏍᎩᏂᏃᏅ ᎪᎱᏍᏗ ᏯᎩᎮᎢ ᎦᏥᏳᎢᏍᏙᏗ ᏗᏆᏤᎵᎦ ᏴᏫ.\nᎨᏍᏗ ᎩᎳᏈᏴ ᏱᏚᏭᏔᎩᏌ, ᎤᎵᏍᏔᏴᏃᎾ ᎩᎳ.\nᎠᏇᎵᏒ ᏐᏉ ᎢᎧᏁᏨ ᏳᏁᏤ, ᏯᏋᎨᏫᏎ ᏂᎦᏓ ᏃᎴ ᎬᎩᏍᏆᏂᎪᏔᏅ ᏥᏧᏣ ᏥᎨᏒ, ᎤᏆᏓᎩᏅᏓ ᎨᏎ, ᎢᏣᏉ ᏱᏥᏍᏔᏩᏛᏎ.\nᎾᏍᎩᏃ ᏄᏪᏒ ᏚᏰᎵᎯᏍᏔᏅᎩ ᏓᏂᎳᏫᎥᎢ.\nᎭᏂ, ᎤᏂᎦᎵᏴᎲᎢ ᎠᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎠᏓᏒᎩ ᎢᏳᏂᏍᏗ ᏃᎴ ᏒᏗᏩᏟ ᎤᎾᏓᏓᏍᎬ ᎣᏁᎯ,ᎠᎦᏗᏓ ᎦᎳᎨᏰ ᏧᏪᏘ ᎫᎦ, ᏔᎷᎩᏍᎩ ᏧᏏᏩ, ᏗᎦᏓᎭ ᏗᎿᏬ, ᏔᎷᎩᏍᎩ ᏧᏲᏨ, ᎤᏁᏍᏔᎳ ᏧᏲᏨ, ᏗᎦᎯᏓᏍᏙᏗ ᏧᏲᏨ, ᎦᏂᏏ ᏗᏒᏗ ᏧᏲᏨ, ᏧᎵᏬᏨ ᎠᎾᎦᎵᏍᎩ, ᏧᏪᏘ ᎪᏪᎵ ᏗᎪᎵᏰᏗ, ᎡᏓᏍᏗ ᏗᎦᏅᎦᎶᏙᏗ, ᏧᏤᏌᏗ ᏗᏑᎶ, ᏧᎦᏣᏅᎪᏥᏓ ᏴᎩ, ᏧᏔᎸᎩᏓ ᏔᎷᎩᏍᎩ ᏗᎪᏱᏂᏓᏍᏗ, ᏧᏅᎨᏫᏒ ᏗᏍᏚᏙᏗ ᏃᎴ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏂᎨᏒᎾ ᏧᏓᎴᏅᏓ, ᎤᏓᏐᏯᏍᏕᎢ ᎤᏅᏗ ᎤᏁᏍᏔᎵ ᎪᏒᏙᏗ ᎦᏗᏆᎸᏕᏴᏍᏙᏗ.\nᎤᏲ ᎢᏴᏉ ᏚᏅᏓᏒ, ᏚᎨᏓᎵᏴ ᏃᎴ ᎭᏫᏂ ᏫᎦᎶᎯᏍᏗ, ᏃᎴ ᎦᎸᎳᏗ ᏚᏍᏔᎦᏢ ᏫᏗᎦᎶᎣᏍᎩ ᏅᏲᎯ ᎠᎹ ᏕᎨᏴ.\nᎦᏙ ᎤᏍᏗ ᎤᏟ ᎠᎯᏗᏳ? ᏥᎪ ᎯᎠ ᏱᎾᎦᏪᏎ ᎤᎸᏓᎸᎥᏍᎩ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ; ᎯᎠᎨ ᏱᎾᎦᏪᎠ, ᏔᎴᎲᎦ, ᎠᎴ ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᎮᏓ?\nᏩᎩᏠᏩ ᎦᎸᎳᏗ!” \nᎡᎳᏗ ᏭᏭᏓᎸᏁ ᎠᏍᏓ.\nᎿᏉᏃ ᎤᎾᎵᏍᏓᏴᏃᏅ, ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ ᏌᏩᏂ ᏈᏓ; ᏌᏩᏂ, ᏦᎾ ᎤᏪᏥ, ᏂᎯ ᎤᏟ ᏂᏍᎩᎨᏳᎭ ᎡᏍᎦᏉ ᎯᎠ? ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᎥ, ᏣᎬᏫᏳᎯ, ᎯᎦᏔᎭ ᎬᎨᏳᎢᏳ ᎨᏒᎢ. ᎯᎠ ᏄᏪᏎᎸᎩ; ᎨᎮᎶᎮᏍᏗ ᏗᏆᏤᎵᎦ ᎤᏂᏃᏕᎾ ᎠᏂᎩᎾ.\nᎣᏏᏳ ᎢᏥᏰᎸᎯ ᎪᎱᏍᏗ ᎢᏣᏛᏁᎲ, ᎤᎬᏫᏳᎯ ᏥᏁᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ, ᎥᏝᏃ ᏴᏫᏉ ᏥᏂᏕᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ;\nᎠᎦᏙᎥᎯᏍᏗᏰᏃ ᎨᏒ ᎠᏂ ᎡᎶᎯ ᎡᎯ ᎠᎵᏍᎦᏁᏛᏉ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᏕᎦᏂᏱᎭ ᎠᏂᎦᏔᎿᎢ ᎬᏗᎭ ᎤᏅᏒ ᎠᏂᏏᎾᏌᏅᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᏚᏃᏣᎶᏥᏙᎸᎢ ᎾᎿ ᏂᎬᎾᏛ ᏚᏰᎵᏏᏙᎸᎩ.\nᎯᎠᏃ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎦᏅᏏᏓᏍᏗ ᏙᏱᏗᏢ ᏧᎵᏏᎬ ᏪᏣᏓᎤᎦ; ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ.\nᎢᏳᏃ ᎠᎾᎵᏅᏟ ᎯᎠ ᎾᏍᎩ ᏱᎩᏯᏅᏓᏗᏍᏔᏅ, ᎰᏍᏛ ᎨᏎᏍᏗ ᎡᏣᏅᏏᏓᏍᏗ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎡᏤᎳᏍᏔᏅᎯ ᎨᏎᏍᏗ ᎧᏃᎮᏛ ᎪᎯᏳᏗ ᎨᏒ ᏥᎧᏃᎮᎭ, ᎠᎴ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎦᏳᎳ ᏗᏣᏂᏴᏛ ᏥᎩ.\nᏰᎵ ᎠᏓᏅᏖᏍᎬ ᏲᎾ ᎣᏍᏓ ᎦᏯᎩᏍᏗ ᏱᎩ ᏃᏉ.\nᎠᏆᎧᏛ ᎠᏆᏒᏂᎸ, ᏄᏍᏛ ᏤᏣᎧᏃᏗ ᎠᏆᏚᎵ ᎬᏯᏅᏓᏗᏍᏘ, ᎠᏎ ᏎᎦᏉ ᏱᎩ ᎤᏛᏅ.\nᏃᏉ ᎤᏍᏆᎸ ᏧᏪᏥ ᏗᎦᎶᏙᏗ ᎠᏋᏗ ᏃᎴ ᎧᎵ ᏗᎩᎶᏙᏗ ᏧᏪᏥ.”\nᎠᎴ ᎾᏍᎩ ᎬᏩᎷᏤᎸᎩ ᏈᎵᎩ, ᏇᏣᏱᏗ ᎦᏚᎲ ᎨᎵᎵ ᎡᎯ, ᎠᎴ ᎬᏩᏔᏲᏎᎸᎩ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎣᎦᏚᎵᎭ ᎣᏥᎪᏩᏛᏗᏱ ᏥᏌ.\nᎥᏝᏰᏃ ᏩᎦ ᏧᎾᎪᏅᏍᏓᎵ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᎩᎬ ᏰᎵ ᎬᏩᏂᎲᏍᏗ ᏱᎨᏎ ᎠᏍᎦᏂ ᎨᏒᎢ.\nᏂᎯ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏁᏥ, ᎠᎴ ᎾᏍᏉ ᏧᏪᏥ ᎠᏚᎢᏍᏛᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᏚᏚᎢᏓᏁᎸᎢ, ᎯᎠ ᏥᏄᏪᏎᎴ ᎡᏆᎭᎻ; ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏄᎾᏓᎴᏒ ᏴᏫ ᎡᎶᎯ ᎠᏁᎯ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ.\n“ᎤᏙᎯᏳᎭᏧ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ.\nᎤᎵᏍᎫᏪ.\nᏍᏓᏯ ᎤᏩᏇᏅᏔᏁᎢ ᎣᏍᏓᏓᏤᎵ, ᎫᏩᎵᏖᎸᎮᏗ ᏱᎨᏒᎾ.\nᎦᎶᎾᏍᏗᎭ ᎤᏙᎴᏋ ᏓᎩᏁᎵ: ᎠᏲᏟ ᏥᏕᎧᏃᎮᏍᎪ ᎤᏕᎳᏗ ᏂᏚᎬᏅ ᎢᏳᏍᏗ ᏱᎩᏬᏂᏌ, ᎣᏏᏉ ᏱᏂᏗᏫ.\nᎤᎴᏫᏍᏔᏅ, ᏥᏔᎦ ᏚᏪᏝᎸ ᎠᎬᏱ ᏯᎦᏘᎾᏫᏗᏍᎬᎾ.\nᎠᏓᏅᏙ ᏱᎰᏩ ᎤᏤᎵ ᏔᎵ ᎠᏆᏛᏓᏁᎵᏕᎦ ᏅᏗᎦᎵᏍᏙᏗ ᏣᎩᎶᏁᎥ ᎦᏥᏯᎵᏥᎣᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ; ᏗᎩᏅᏒ ᏗᎦᏥᏅᏬᏗᏱ ᎤᏲ ᎤᎾᏓᏅᏔᏩᏕᎩ, ᎦᏥᏃᏁᏗᏱ ᎠᏂᏴᎩ ᎬᏩᎾᏚᏓᎴᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏂᎨᏫ ᎬᏩᏂᎪᏩᏛᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎦᏥᏯᎪᏗᏱ ᏗᎨᏥᏂᏆᎶᏔᏅᎯ,\nᎿᏉᏃ ᎦᎸᎶᎢ ᏓᎦᎾᏄᎪᏥ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵ ᎤᏰᎸᏛᎢ, ᎠᎴ ᎿᏉ ᏂᎦᏛ ᏓᏂᎳᏍᏓᎸ ᎡᎶᎯ ᏙᏛᏂᏴᎳᏏ, ᎠᎴ ᏛᏂᎪᎯ ᏴᏫ ᎤᏪᏥ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸ ᎦᎸᎶᎢ, ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏕᏍᏗ.\nᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᎠᎴ ᏗᎩᏙᏓ, ᎢᏣᏛᏓᏍᏓ ᎯᎠ ᎠᏆᎵᏍᏕᎸᏙᏗ ᎿᏉ ᏨᏓᏥᏬᏂᏏ.\nᎠᎴᏬ, ᏱᎰᏩ ᎠᎦᏔᎭ ᎠᎾᏓᏅᏖᏍᎬ ᎠᏂᎦᏔᎿᎢ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎨᏒᎢ.\nᏚᏳᎪᏛ ᎨᏒᎢ, ᎡᏙᏙᏱ ᏫᏥᎦᏛᎢ, ᎠᎴ ᎿᏉ ᏂᏍᎩᎪᏩᏘᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ;\nᎠᎴ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᏙᏗᎧᏅᎢ, ᎥᏝ ᎠᎴ ᎤᏗᏔᏍᏗ ᏱᎨᏎᏍᏗ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᎴ ᎠᏓᏴᏍᏕᏍᏗᏍᎩ; ᎠᎴ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎤᏥ ᎤᎾᏅᎪᏫᏒ ᎤᏓᎬᏩᏓᎴᏅᏛ.\nᎠᏎᏃ ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎠᎧᎵᎢ ᎤᏍᏆᎸᎲᎢ, ᎤᏁᎳᏅᎯ ᏧᏅᏎ ᎤᏪᏥ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏎᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎤᏓᏄᏴᏕᎢ,\nᎬᏂᏳᏉ ᎾᏍᏉ ᏥᏳᏧᏛᎾ ᏤᏉᎯᏳᏍᎩᏂᏃᏅ ᎠᎴ ᎤᏍᎦᏎᏗ ᎤᏃᎴ ᏕᎦᏂᏙᎰᎢ, ᎠᏎᏃ ᏓᏂᎦᏔᎲᏏᏙᎰ ᎠᏅᏘᏍᎪ ᎤᏍᏗᎩᏳ ᎦᏌᏛᏍᏗ ᎾᎿᏉ ᎢᏗᏢ ᎤᏚᎸ ᎦᏌᏛᏍᎩ.\nᎣᏍᏓ ᏂᎦᎵᏍᏗᏍᎨ ᎠᏓ ᎬᏗ ᎠᏥᏲᏓᎩᏍᎬ ᎦᏐᎯᎢ.\nᎧᏃᎮᏓ ᎠᏉᏪᎳᏅ ᏓᎩᏏᎳᏛ, ᏥᎸᏉᏗᏍᎬ ᏫᎵᎻ, ᎠᏂᎩ.\nᎠᏎ ᏒᏃᏱ ᎠᏰᎵ ᏱᎩ ᎠᏎ ᎪᎱᏍᏗ ᎠᎵᏖᎸᎮᏍᎪ.\nᏓᎻ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎥᏝ ᏲᏥᎦᏔᎭ ᏫᎦᏛᎢ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏲᏥᎦᏔᎭ ᏫᎦᏅᏅᎢ.\nᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎢᏣᏖᏆᎶᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᏕᏥᎧᎿᏩᏗᏒᎢ, ᎢᎬᏱᏱ ᎢᎦ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ;\nᎤᏣᏘᏃ ᎤᏲᎢᏳ ᎤᏂᏰᎸᏅᎩ, ᎠᎴ ᎤᎾᎴᏅᎲᎩ ᎠᏂᏏᏴᏫᎭ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏥᎪ ᎠᏴ?\nᎾᏍᎩᏃ ᎤᎪᎲ ᏈᏓ ᎤᎦᎾᏬᏍᎬᎢ, ᏚᎧᎿᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᎾᏍᏉ ᏥᏍᏕᏙᎲᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ.\nᏕᏣᏓᏲᎵᎮᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏗᏓᏔᏪᏙᎥᏍᏗ ᎨᏒᎢ.\nᏔᎵᏁᏃ ᏅᏩᏓᎴ ᎤᏅᏎᎢ; ᎠᎴ ᎾᏍᎩ ᎤᏂᎴᎢ; ᎠᎴ ᎤᏂᏣᏖ ᏅᏩᎾᏓᎴᎢ; ᎢᎦᏛ ᏓᏂᎵᎥᏂᎮᎢ, ᎢᎦᏛᏃ ᏓᏂᎯᎮᎢ.\nᏚᏁᏤᎴᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎯᎠ ᏥᏂᏣᏛᏅ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎠᎴ ᏩᎦ ᏳᎸᏤ-Ꮈ ᎠᏔᎴᏒ ᎥᏝ ᎩᎳᏉ ᎢᏴᏛ ᏱᏮᎦᎳᎩ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ?\nᎾᏍᎩ ᎤᏪᏥ ᎠᎩᎾᏄᎪᏫᏎᏗᏱ, ᎾᏍᎩ ᎠᏴ ᎦᎵᏥᏙᎲᏍᎬ ᎬᏂᎨᏒ ᎢᏥᏴᏁᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ; ᎩᎳᏉ ᎢᏴᏛ, ᎥᏝ ᎤᏂᏇᏓᎵ ᎠᎴ ᎩᎬ ᎤᏂᏁᎯ ᏱᏗᎦᏥᏯᏁᎶᏔᏁᎢ;\nᎠᏲᎵᏃ ᎠᏛᏍᎨᎢ ᎠᎴ ᎧᏁᏉᎨ ᎤᎵᏂᎪᏍᎬ ᎤᏓᏅᏛᎢ, ᎠᎴ ᎢᎾᎨᏉ ᎡᎮᎢ ᎬᏂ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎸ ᎢᏏᎵ.\nᎩᎶ ᏕᎦᎵᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ.\n”ᎦᎴᏴᏍᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏓᏆᎴᎳ ᏭᎾᎩᎸᏁᎢ ᎤᏟᏍᏓ ᎤᏁᏅᏎ.\nᎯᎦᏔᎭᎨ ᎠᎬᏱ ᎠᏰᎩ ᎨᏒ ᏍᏔᎵᎢ?”\nᏥᏌᏃ ᎤᏙᎴᎰᏒ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᎢᎡᏣᏕᏯᏙᏗ ᎠᎨᏴ? ᎣᏏᏳᏰᏃ ᏚᎸᏫᏍᏓᏏ ᏥᎾᏋᎦ.\nᎾᏂᎥᏰᏃ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎾᏙᎴᎰᏍᎬᎩ ᏣᏂ ᎤᎾᏄᎪᏥᎸ ᎢᏯᏍᏘ.\nᏣᏂᏰᏃ ᏚᏳᎪᏛ ᏚᎸᏫᏍᏓᏁᎲ ᎢᏥᎷᏤᎸᎩ, ᎠᎴ ᎥᏝ ᏰᏦᎢᏳᏁᎢ, ᎠᏕᎸᏍᎩᏂ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᎨᏴ ᏧᎾᏤᏌᏘ ᏥᎬᏪᎯᏳᏅᎩ; ᏂᎯᏃ ᎢᏣᏙᎴᎰᏒ ᎥᏝ ᎣᏂ ᏱᏗᏥᏁᏟᏴᏎ ᏕᏣᏓᏅᏛ ᎡᏦᎢᏳᏗᏱ.\nᎢᎸᏍᎩᏃ ᏫᏄᏒᎸ ᏈᎵᏏ ᎤᎷᏨᎩ, ᎤᏘᏃᎸᎩ ᎤᏓᎵᎢ ᏚᏏᎵ, ᎾᏍᎩ ᎠᏧᏏ ᎨᏒᎩ, ᎤᏓᏅᏒᎩ ᏩᏥᏯᏅᏗᏱ ᏉᎳ; ᎤᏛᎦᏁᎸᎩᏃ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᎨᏒ ᎤᎬᏩᎵ.\nᏚᏓᏲᏎ ᏗᎧᏂᎨᏂ ᏣᎵᏍᏙᏂ, ᎠᎭᎾᏬ ᏗᏴᏉᎴᏴᏓ ᎾᏍᎩᏯ ᏭᏅᏤ ᎦᏙ, ᎨᏍᏗ ᏔᎵᏁ ᏳᏓᏅᏌ.\nᏯᎦᏔᎲᎾ ᎢᏳᎵᏍᏔᏁᏗ ᎤᎾᏕᏘᏱᏍᎬ ᎠᏍᏆᎸᎲ; ᏯᎦᏔᎲᎾ ᎰᎻ ᏃᎴ ᏣᏄᏏ ᎠᎾᏓᏅᏖᏍᎬ ᎤᏂᎯᏍᏗ.” \nᎦᏲᏟᏉ ᎤᎵᎪᎲᏍᏗ ᏄᎵᏍᏔᏅ ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ.\nᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎦᏰᏥᏐᏢᏛᎢ, ᎠᎴ ᏤᏥᎩᎵᏲᎢᏍᏗᏍᎬᎢ; ᎢᎸᎯᏳᏃ ᏕᏣᎵᎪᏁᎸ ᎾᏍᎩ ᎢᎨᎬᏁᎸᎯ.\nᏌᎪᏂᎨ ᏥᏍᏆ ᏧᏓᏏ ᏧᏙᎢᏓ ᎡᎭᎢ, ᎣᏍᏓ ᎤᏓᏅᏘ ᎨᏎᎢ - ᎠᏍᏕᎵᏍᎨᎢ ᎤᏥ ᎠᏛᏅᎢᏍᏗᏍᎬ\nᎢᏳᏰᏃ ᏱᏙᎩᎸᏃᏗᎭ, ᎤᏁᎳᏅᎯᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎢᏳ ᎠᎴ ᏙᎯ ᏱᏙᎦᏓᏅᏔ, ᏂᎯᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎠᏥᏅᏁᎴᏃ ᎪᏪᎵ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᎤᏬᏪᎳᏅᎯ. ᎤᏍᏚᎢᏒᏃ ᎪᏪᎵ ᎤᏩᏛᎮ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎢ;\nᎾᎿᏂ ᏧᏩᎫᏔᏅᏒ ᎢᏤᏙᎸᎢ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎡᎶᎲ ᎠᏁᎯ, ᎾᏍᎩᏯ [ᎤᏚᎵᏍᎬ] ᎦᏃᎴᏍᎬ ᎡᎯ ᎡᎬᏫᏳᏌᏕᎩ, ᎾᏍᎩ ᎠᏓᏅᏙ ᎪᎯ ᎨᏒ ᏥᏚᎸᏫᏍᏓᏁ ᏚᎾᏓᏅᏛ ᎪᎯᏳᏗ ᏂᎨᏒᎾ ᎨᏒ ᏧᏪᏥ;\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏂᏥᎥ ᏂᎯ ᏙᏓᏦᏕᎵ ᎪᎯ ᏒᏃᏱ ᏥᎩ, ᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎯᎠᏰᏃ ᏂᎬᏅᎢᎪᏪᎳ, ᎠᏫ ᏗᎦᏘᏯ ᏓᏥᏴᏂᎵ, ᎤᏂᏃᏕᎾᏃ ᏛᎾᏗᎦᎴᏲᏥ.\nᎾᎿᏃ ᏫᏱᎦᏣᏅ ᎤᎩᏨᏛ ᎦᏲᏏ ᏧᏳᎪᏗ ᎣᏥᏂᏒᎩ. ᎤᎩᏨᏛᏃ ᏎᎼᏏ ᏬᎩᎷᏨᎩ; ᏠᏥᎵᏯᏃ ᎣᎩᏒᎸ ᎤᎩᏨᏛ ᎹᎵᏔ ᏬᎩᎷᏨᎩ.\nᏂᏚᎩᏨᏂᏒᏃ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏓᏓᏁᎳᏗᏒ ᎾᏂᏑᎵᎪᎬᎾ ᎨᏎ ᏓᎾᏕᏲᎲᏍᎨ ᎠᎴ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏩᎵ.\nᎠᎴ ᎤᏣᏛ ᏄᏒᎸᎩ ᎾᏍᎩ ᎾᏛᏁᎲᎩ; ᎠᏎᏃ ᏉᎳ ᎤᏕᏯᏔᏁᎸ ᎤᎦᏔᎲᏒᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ ᎾᏍᎩ ᎠᏓᏅᏙ; ᎬᏁᏥ ᏥᏌ ᎦᎶᏁᏛ ᏕᎤᏙᎥ ᎬᏗᎭ, ᎾᏍᎩ ᎪᎱᎪᏤᏗᏱ. ᎾᎯᏳᏉᏃ ᎤᏄᎪᏨᎩ.\nᎾᎥ ᎢᏗᎷᎨᏍᏗ ᎢᏛᏗᏍᎨᏍᏗ ᏄᏠᎾᏍᏛᏅ ᏗᎩᎾᏫ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎩᎾᏫ ᏤᎩᏍᏚᏞᎸᎯ ᏤᎩᏅᎦᎸᎯ ᎤᏲ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏗᏰᎸ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎹ ᏤᎪᏑᎴᏓᏁᎸᎯ.\nᏗᎫᎪᏙᏗ ᎨᏒᎢ, ᎤᎬᏫᏳᎯ ᎯᎠ ᎡᎶᎯ ᎤᏤᎵᎦ ᏣᎫᎪᏓᏁᏗ ᎨᏒ ᎢᏳᏍᏗ.\nᎢᏳᏃ ᏚᏩᏂᎦᎸ ᎢᎦᏛ ᏱᏗᎬᏂᎦᎴᏒ, ᏂᎯᏃ ᎢᎾᎨ-ᎮᎯ ᎣᎵᏩ ᏡᎬ ᎾᎿ ᏱᏫᏰᏣᏱᏢᏔᏅ, ᎠᎴ ᎾᏍᎩᏯ ᎤᎾᎵᏍᏕᎶᏛ ᏱᏤᎳᏗᏍᏗ ᏱᏣᎵᏍᏕᎸᏗ ᏚᎿᏍᏕᏢ ᎠᎴ ᎦᎵᏦᏅ ᎣᎵᏩ ᏡᎬᎢ;\nᏤᏍᏗ ᏫᎨᏣᎸᏅ ᏱᏗᏣᏓᏟᏴᎲᎾ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏏᏉ ᎦᏪᏂᏍᎨᎢ, ᏧᎾᎸᎪᏤ, ᏧᏓᏏ, ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ, ᏓᏘᏁᎮ ᎤᏂᏣᏘ, ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏗᏂᏁᎯ, ᏅᏓᎬᏩᏂᏅᏏᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᏗᏂᎳᏫᎩ.\nᎾᏍᎩᏃ ᎤᏇᏓᎵ ᏧᎾᏘᏂᏙᎯ ᎨᏒ ᎥᏝ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏱᏅᎬᎾᏛᎦ.\nᎥᏝᏰᏃ ᏰᎵ ᏴᎦᏲᏣᏡᏓ ᎤᏙᎯᏳᎯ ᎨᏒᎢ, ᏲᏥᏍᏕᎸᏍᎩᏂ ᎤᏙᎯᏳᎯ ᎨᏒᎢ.\n“ᎤᏙᏳᎾᏏ ᏰᎵ ᏓᏓᏁᎸ ᏱᏓᏥᏍᏓᎵᎩ,” ᎤᏛᏁ.\n“ᏅᏓ ᏣᎧᎸᎬ ᎫᏩᏗᏛᏓ ᏲᎾ ᎤᏤᏍᏙ, ᏍᎩᏃ ᎢᏳᏍᏗ ᏏᏆ ᏧᎾᏌ ᏃᏉ.\nᎣᏂᏃ ᏅᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎥᎦᏥᎪᎥᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᎡᎶᎯ ᏓᏂᏙᎬᎩ, ᏚᏂᏂᏴᏒᎩ ᎤᏃᎴ ᏅᎩ ᏂᏙᏗᎦᎶᏍᎬ ᎡᎶᎯ, ᎾᏍᎩ ᎤᏃᎸᏗᏱ ᏂᎨᏒᎾ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᏕᏡᎬᏉ.\nᎾᏍᎩ ᎧᏃᎮᏛ ᎢᏥᎦᏔᎭ, ᎬᏂᎨᏒ ᏥᏄᎵᏍᏔᏅ ᏂᎬᎾᏛ ᏧᏗᏱ, ᎨᎵᎵ ᏨᏓᏳᏓᎴᏅᎲ ᏗᏓᏬᏍᏗ ᎨᏒ ᎤᎬᏩᎵᏄᎵᏥᏙᏃ ᏣᏂ--\n“ᎭᏕᏬ,” ᎤᏛᏁ ᏌᎳᏓ, “ᎨᎵᎠ ᎠᏇᏅᏒ ᏱᎨᏙᎭ ᏯᏆᏁᎸᏔᎾ ᏗᎩᎷᏫᏍᏔᏁᏗ ᎦᏲᏟ.”\nᏥᏌᏃ ᏚᎦᏔᎲᎡᎸ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎨᏴ ᏥᎷᏏᎵᎻ ᏧᏪᏥ, ᏞᏍᏗ ᎠᏴ ᏍᎩᏍᎪᏂᎸᎩ, ᎢᏨᏒᏍᎩᏂ ᏗᏣᏓᏍᎪᏂᎦ, ᎠᎴ ᏗᏤᏥ ᏗᏥᏍᎪᏂᎦ.\nᎭᎾᎾ ᎦᏙᎨᎢ, ᎠᏓᏅᏖᏍᎨᎢ, ᎪᎱᏍᏗ ᏂᎦᏪᏍᎬ ᎤᏛᎦᏁᎢ.\nᏭᏂᎷᏤᏃ, “ᎠᎭᏂ,” ᎤᏛᏁ ᏙᏯ, “ᏙᎤᏍᏗ?”\nᎥᏝ ᏱᏥᏑᎵᎪᎪ [ᎤᏁᎳᏅᎯ] ᏥᏯᎵᎡᎵᏤᎲ ᏂᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ, ᏂᎯ ᎢᏨᏁᎢᏍᏗᏍᎬ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ;\nᏐᏉᎯᎭ ᏕᎬᏔᎶᏍᎨ ᏃᏈᏏ.\nᏚᏂᏏᏩᏍᎦ ᏃᎴ ᏚᏂᏳᏍᎩᎷᏙᎦ ᏃᎴ ᏧᎾᎭᏬᏍᏙᏗ ᏗᎦᏓᏁ ᏚᎾᎵᏍᏔᏁ, ᎠᏥᎷᏳᎸᏗ ᏓᎾᏛᎥᏍᎦ ᏓᏂᎧᎭᏲᏗ, ᎠᏎᏃ ᎤᎭᏰᏌᏛ ᏃᎴ ᏓᎦᏍᎬ ᏗᎦᏓᏁ ᏂᏕᎬᏁ, ᏃᎴ ᎤᏐᏱ ᎭᎴᏂ.\nᎠᏎᏃ ᎥᏝ ᎩᎶ ᎬᏂᎨᏒ ᏳᏃᎮᏍᎨᎢ, ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᏂᎾᏰᏍᎬ ᎠᏂᏧᏏ.\nᎠᏂ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎢᏛᏓ. ᎩᎶ ᎤᏬᎵᏣᏘ ᎨᏎᏍᏗ ᏩᏎᎦ ᎢᎦᎢ ᎨᏒ ᎠᎦᏎᏍᏗᏱ ᏅᎩ-ᏗᎦᏅᏎᏗ; ᏴᏫᏰᏃ ᎤᏎᏍᏗ ᎨᏒ ᎤᎬᏩᎳ; ᎠᎴ ᎾᏍᎩ ᎠᎦᏎᏍᏗ ᎨᏒ ᎯᎠ ᏂᎦᎥ, ᏑᏓᎵᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏑᏓᎵᎦᎵ.\nᎠᏂ ᎯᎠ ᎢᎦᏓᎨᏳᏗ ᎨᏒ ᎤᎧᎵᏨᎯ, ᏄᎵᏍᏔᏅ Ꮎ-Ꭹ ᏂᏗᎾᏰᏍᎬᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᎾᏍᏉ ᎾᏍᎩ ᏂᎦᏍᏗ ᎠᏴ ᎠᏂ ᎡᎶᎯ.\nᎾᏍᎩ ᏄᏍᏛ ᎢᎬᏱᏱ ᎢᏣᎴᏂᏙᎸ ᎤᎬᏩᎵ ᎢᏴᏛ ᎢᏨᏁᏗᏱ ᎤᏪᏘ ᏴᏫ ᎾᏍᎩ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏓᎵᏓᏍᏗ ᎠᏚᎸᏅᏗ ᎨᏒᎢ;\nᎠᏂᏐᎢᏃ ᏚᏂᏂᏴᎮ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏗᎬᏩᏂᏐᏢᏔᏁᎢ, ᎠᎴ ᏚᏂᎴᎢ.\nᎤᎾᏛᎦᏅᏃ ᎾᏍᎩ ᎡᎳᏪ ᎤᏅᏁᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ: ᎾᏍᏉᎧᏂ ᎤᏁᎳᏅᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏕᎤᏁᎸ ᏚᎾᏓᏅᏛ ᏧᏂᏁᏟᏴᏍᏗᏱ ᎬᏂᏛ ᏩᎵᏱᎶᎯᎯ.\nᎦᎪ ᎦᏰᎪᎩ, ᎢᏳᏃ ᎾᏍᎩ ᏂᎨᏒᎾ ᏱᎩ Ꮎ ᎠᏓᏱᎯ ᏥᏌ ᎦᎶᏁᏛ ᎨᏒᎢ. ᎾᏍᎩ Ꮎ ᎦᎶᏁᏛᎠᏡᏗᏍᎩ, ᎠᏓᏱᎯ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᏪᏥ.\nᎠᏎᏃ ᎦᏙ ᎠᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏬᎯᎵᏴᏍᏓᏁᎲᎢ? ᎬᏆᎵᏃᎯᏰᏗᏱ ᎾᏋᏁᎸ ᎦᎵᏉᎩ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏂᏚᎾᎵᏂᏆᏅᏁᎸᎾ ᏇᎠᎵ.\nᎿᏉᏃ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᎦᏚᎲ ᎾᎥ ᎤᎷᏨ, ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎤᏲᎱᏒᎯ ᎠᏂᏄᎪᏫᏍᎨ ᎠᏂᏂᏎᎢ, ᎤᏩᏒᎯᏳ ᎤᏪᏥ ᎨᏎ ᎤᏥ, ᎠᎴ ᎾᏍᎩ ᎤᏬᏑᎶᏨᎯ ᎨᏎᎢ; ᎤᏂᏣᏖᏃ ᏴᏫ ᎦᏚᎲ ᎠᏁᎯ ᎬᏩᏍᏓᏩᏗᏎᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎣᏍᏛ ᎢᎬᏁᎰᏅᎯ ᎨᏎᎢ, ᎠᏥᎸ-ᎠᏁᎶᎯ ᏂᎪᎯᎸ ᏩᏂᏴᎯᎮ ᎢᎬᏱᏱ ᏓᏓᎯᏢ ᎦᎵᏦᏛᎢ, ᏫᏚᏂᎸᏫᏍᏓᏁᎮ [ᎤᏁᎳᏅᎯ] ᎤᏤᎵ ᎤᎬᏩᎵ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏱᏗᏓᏓᏚᎪᏓᏁᎮᏍᏗ; ᎯᎠᏍᎩᏂ ᎤᎬᏫᏳᏎᏍᏗ ᏕᏧᎪᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏓᏙᏕᏍᏗᏍᎩ ᎠᎴ ᎤᏍᏢᏂᏍᏗᏍᎩ ᎢᏥᏗᏱ ᏂᎨᏒᎾ ᎢᏣᎵᏅᏟ ᎤᎶᎯᏍᏗᏱ.\nᎠᏍᏆᏗᏍᎬ, ᏙᏉ ᏓᏛᏁᎵ?\n”Ꮎ ᏄᏍᏗ ᎠᏆᏤᎵ ᏩᎶᏏ!” ᎤᏛᏁ ᎡᎳᏆᏗ, ᎠᎹ ᎤᏩᏩᏙᎣᎢᏍᏗ ᎠᏯᏔᎾᎸᎢ ᏭᏩᎧᏁᎢ, ᏫᏄᏩᏁᎴ ᎤᏬᏰᏂ ᎤᎩᏍᏗ ᎨᎵᏍᎩ.\nᎠᎴ ᎯᎠ ᎢᏯᏂᏪᏍᎩ, ᎦᏙ ᎤᎵᏍᏔᏅ ᎤᎷᎯᏍᏗᏱ ᎤᏚᎢᏍᏔᏅᎢ? ᎠᏂᎦᏴᎵᎨᏰᏃ ᎬᏩᏂᎵᏅᏨᎯ ᏅᏓᎬᏩᎴᏅᏛ, ᏅᏩᏍᏗᏉ ᏂᎦᎥ ᎪᎱᏍᏗ ᏥᏄᏍᏛᏉ ᏧᏓᎴᏅᎲ ᎤᏬᏢᏅᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ.\nᏃᎴ ᎢᎦᏉ ᎯᏍᏗᎷᏤᏍᏗ ᎭᏂ ᏓᏆᎴᎳ, ᏂᎦᏓ ᎯᏓᎵᏍᏓᏴᏅ ᎢᎦ.\nᎣᏣᎵᎡᎵᏤᎰ ᎤᏁᎳᏅᎯ ᏂᎪᎯᎸ ᏂᎯ ᏂᏥᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ, ᎢᏨᏁᎢᏍᏗᏍᎪ ᎣᏣᏓᏙᎵᏍᏗᏍᎬᎢ;\nᎩᎶ ᏣᏆᏟᏃᎮᏗᏍᎬ ᎦᏢᏗ ᎠᏍᏆᎵᏍᎬ ᏫᎧᏁᎩ.\nᎤᏂᏣᏘᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᏥᏌ ᎠᏙᎴᎰᏍᎩ, ᎾᏎᎵᏗ ᎡᎯ ᎨᎵᎵ ᎦᏚᎲᎢ.\nᏓᏔᎴᏒ ᏚᎵᏍᏚᎩᏍᏔᏁ, ᎠᎹ ᎤᏲ ᏚᎧᎵᏤ.\nᎤᏤᎵᎪᎯ ᎤᎷᏨᎩ, ᎠᏎᏃ ᏧᏤᎵ ᎥᏝ ᏱᏗᎬᏩᏓᏂᎸᏤᎢ.\nᎤᎶᎩᎸᏃ ᏧᎶᏎ ᎧᏁᎬ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏥᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎡᏣᏛᏓᏍᏓᏁᎮᏍᏗ.\n”ᏌᎳᏓ?” ᎤᏛᏁ ᎡᏝᏪᎯ.\nᎠᎾᏓᏩᏛᎯᏙ ᏓᎾᏟᏃᎮᏗᏍᎬ, ᏭᏅᎨᏫᏎ ᏧᏂᎷᏫᏍᏓᏁᏗ ᏦᎨᏏ.\n”ᎡᎵᏍᏗ ᎦᏂᎦᏔ ᎡᎹᏂᏓ ᏓᏥᏯᎵᏃᎮᏔᏂ ᏔᎵᏁ ᎯᏥᎪᎥ.\nᏕᏤᎶᎮᏍᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏥᎨᏣᏓᏑᏯ, ᏕᏥᎦᏘᏰᏍᏗ, ᎥᏞᏍᏗ ᎣᏏᏳ ᏂᏥᏰᎸᏒᎾ ᎣᏏᏳᏍᎩᏂ ᎢᏥᏰᎸᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎥᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎢᏥᎬᎥᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏍᎨᏍᏗ, ᎣᏏᏳᏍᎩᏂ ᎢᏥᏰᎸᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ;\nᎤᎾᏚᏓᎴ ᏧᏂᏓᏍᎩᏐᏗ ᏂᎦᏓ ᎠᏂᏴᏫᏯ ᎦᏚᏏ, ᎨᏴ ᏃᎴ ᏚᎨᏓᎵᏴ.\nᏄᏍᏛ ᎠᏗᏔᏍᏗ ᎦᏳᎸ ᎤᎪᏏᏓ ᎠᎧᎭᏲᏔᏅ, ᏌᏬᏛ ᏌᎷᏱ ᏓᏳᎶᏒ ᎠᎾᎪᎲᏍᏗᏍᎪ ᎠᏂᏍᎦᏥ ᏃᎴ Irish ᎾᏍᎩᏯ ᏯᎾᏌ ᏧᎾᏗᎩᏛ ᏣᎾᎪᎲᏍᏗᏍᎪ ᎢᎪᏗ ᎢᏣ.\nᏳᏍᏆᎶᏤᎸ ᎠᏛᎵᏍᎬ, ᎤᏍᎧᏃᎳ ᎠᎢᏎ, ᏂᎪᎯᎸᎾ ᎾᎨᎢᏴ ᎠᎬᏱᏣ ᏄᏛᎾᏗᏎ ᏲᎾ.\nᎪᎨᏱᏨ ᎦᏙ ᏩᎾᎯ ᏱᏄᎵᏍᏔᎾ ᎦᏓᎷᎪᏗ, ᎠᏆᏤᎵ ᏏᏓᏁᎸ ᎣᏣᎴᏂᏍᎪ ᎣᏥᏫᏒᎥᏍᎬᎢ.\n“ᎤᏓᎸᏉᏗ ᏂᎨᏒᎾ,” ᎤᏛᏁ ᎰᎻ.\nᎦᎶᏁᏛᏰᏃ ᎥᏝ ᏱᏭᏴᎸ ᎦᎸᏉᏗᏳ ᏕᎨᏒᎢ ᎩᎶ ᏧᏬᏰᏂ ᏧᏮᏔᏅᎯ ᏧᏬᏢᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏙᎯᏳᎯ (ᎦᎸᏉᏗᏳ ᎨᏒ) ᏗᏟᎶᏍᏔᏅᎯ ᎨᏒᎢ; ᎦᎸᎳᏗᏍᎩᏂ ᏂᎨᏒ ᏭᏴᎸ, ᎪᎯ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎬᏂᎨᏒ ᎢᎦᏛᏁᏗᏱ;\nᎠᎴ ᎬᏂᎨᏒ ᎾᏅᏁᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏰᎵ ᏗᎨᎩᏂᏴᏗ ᎠᎴ ᏗᎨᎩᎧᎿᏩᏛᏍᏗ ᏂᎨᏒᎾ, ᎢᏗᎶᎻ ᎨᏒ ᎢᏳᏍᏗ.\nᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏅᏓᏳᏩᏁᎵ ᏂᎦᎥ ᎤᎿᎥᎢ.\n“ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎯ ᏓᎦᎶᏏ ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ.” \nᏚᎧᏔᏍᏔᏁᎢ ᏫᎵᎻ.\nᎾᏍᎩ ᎾᎤᏇᏓᎵ ᎤᎾᏄᎪᏫᏒᎯ ᎤᏇᏓᎵᏉ ᎨᏐᎢ; ᎾᏍᎩ ᎾᎠᏓᏅᏙ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏓᏅᏙ ᎨᏐᎢ.\nᎠᎴ ᎤᏣᏛᎩ ᏓᏨᏍᏛᎩ ᎦᎸᎳᏗ ᎾᎿ ᏓᏂᎳᏫᎥᎢ.\nᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎠᏥᏃᎮᎸ ᎦᎪᎯᏳᏗ ᏁᏨᏁᎸᎢ;\nᏆᎴᏗᏃ ᎤᏛᎦᏅ ᎨᎵᎵ ᎠᏂᏁᎢᏍᏗᏍᎬ ᎤᏛᏛᏁ, ᎨᎵᎵᏍᎪ ᎡᎯ ᎯᎠ ᎠᏍᎦᏯ, ᎤᏛᏁᎢ.\nᏃᏉ ᎤᏍᏆᎸ ᏩᎶᏏ ᏃᎴ ᏥᏍᏆ ᏗᏂᏃᎩᏍᎩ ᎠᎾᎵᎮᎵᏍᏗ ᎡᎶᎯ ᏓᏳᏓᎴᏅ ᎠᏙᎯ ᏃᎴ ᏚᏑᎬ ᎠᏏ ᎡᎯ.\nᎠᏎᏃ ᎦᎪ ᎯᎠ ᏥᏂᏣᏛᏅ, ᎡᏥᏅᏏᏓᏍᏗ ᏱᎦᏓᎷᎩᎭ, ᎠᎴ ᏱᎨᎶᎸᎥᏍᎦ, ᏠᎨᏏ ᏅᏓᏳᎶᏐᏅᎯ, ᎩᎳᏉ ᎢᏴᏛ ᎯᎠ ᏱᏁᏥᏪᏏ, ᎮᎾ ᏩᎵᏍᏓᏴᎲᎦ?\nᎨᏍᏗ ᎠᏂᏲᏍᎩ ᏧᎾᏕᎶᏆᏍᏗ ᎤᏙᎴᏋ ᏱᎨᏎ ᏍᎩᎾᎾ ᎢᏳᏪᏍᏗ, ᎤᏩᏌ ᎤᏓᏅᏖᎸ ᏂᎦᏪᏍᎨ ᏱᏚᏁᏤᎸ, ᎣᎯᏍᏙᏓ ᏱᎬᎩᏰᎸᎾ ᎠᏂᏧᏣ ᎡᎵᏍᎨ, ᎤᏅᏌ ᎤᎾᏓᏅᏖᎸ ᎢᏳᎾᏛᏁᏗ ᎨᏥᏁᏤᎲ.\nᎢᎸᎯᏢᏃ ᎦᏚᎲ ᏩᏴᎯᎲᎢ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏕᎬᏩᏠᏎᎢ, ᎢᏅ ᏧᎾᎴᏅᏁᎢ;\nᎩᎳᏊ ᎢᏴᏃ, Ꮎ ᎤᎦᏔ ᏚᏩᏅᎦᏢᏅᎢ ᎠᎴ ᎤᎪᏗ ᏧᎦᎶᎦ ᏚᏛᏎᎢ.\n”ᎠᎴᏃ ᎨᏍᏗ ᏲᎾ ᎤᏤᏍᏙ ᏥᏂᏕᎪᏍᏓᏯ ᏗᎦᎴᏂ ᏱᏂᏗᎪᏍᏓᏯ ᏗᏂᎴᏂ,” ᎤᏛᏁ.\nᏑᎾᎴ ᏱᏄᎵᏍᏔᎾ ᎠᏂᎦᏓᏁ ᏃᎴ ᎤᎾᏣᏪᏐᎸᏍᏔᏅ ᏱᎨᏒᎾ ᎨᏐ.\n“ᎡᏣᏲᎮᎰ ᏣᎵᏍᏓᏴᏗ ᏔᎷᎩᏍᎩ ᎪᏱᏂᏓᏍᏗ ᎦᎶᏛ.\nᎤᎵᏂᎩᏛᏯᏰᏃ ᎦᏬᏂᏍᎬ ᎬᏗᏍᎬ ᎤᏃᎯᏳᏗᏱ ᏄᏩᏁᎸᎩ ᎠᏂᏧᏏ ᏕᎦᎳᏫᎥᎢ, ᏗᎦᎸᏉᏗ ᎪᏪᎵ ᏕᎬᏗᏍᎬᎢ ᎬᏂᎨᏒ ᏂᎬᏁᎲ ᏥᏌ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ.\nᎠᏂᏣᎳᎩ ᏗᎾᏘᏂᏙᎯ ᎤᎬᏫᏳ Ross ᏃᎴ ᎦᏄᎾᏓᎴᎩ, ᏱᏭᏂᎷᏣ ᏩᏏᏓᏂ ᎦᏚᎲ, ᎤᏂᏃᎮᏗ ᎠᏂᎦᏘᎴᎬ ᎨᎬᏬᎣᏙᏗ, ᎤᏂᏐᏱᏉ ᎨᏎ ᏄᏍᏛ ᏄᎾᏍᏛ ᎤᎾᏟᏂᎩᏓ.\nᎠᎴ ᎬᏂᏳᏉ ᏨᎨᏫ ᎨᏎᏍᏗ, ᎠᎴ ᎨᏣᏁᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎾᏍᎩ ᎯᎠ ᏂᎦᎵᏍᏔᏅᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᏦᎯᏳᏅᎾ ᎨᏒ ᏥᏁᎬᎢ, ᎾᏍᎩ ᎠᏎ ᎢᏳᎵᏍᏙᏗ ᏥᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏍᏆᎸᎲᎭ.\nᏗᏣᎳᏏᏕᏂᏃ ᏕᏣᎳᏑᎶᏕᏍᏗ ᎠᏛᏅᎢᏍᏔᏅᎯ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ;\nᎯᎪ ᎢᎦ ᏓᏥᏩᏛ ᎣᎩᎾᎵᎢ.” \nᎾᏍᎩᏯᏍᎩᏂ ᎾᏍᏉ ᏂᎯ, ᎢᏳᏃ ᎿᏉ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎢᏥᎪᎲᎭ, ᎢᏥᎦᏔᎮᏍᏗ ᎡᏍᎦᏂᏳ ᎨᏒᎢ, ᎦᎶᎯᏍᏗᏱᏉ ᎨᏒᎢ.\nᎪᎱᏍᏗ ᏧᏂᎵᏬᏨ ᎦᏓ ᎾᏅᏁᎰᎢ.\nᏧᏍᏗ ᏕᎨᏴ ᏃᎴ ᏕᎨᎵᏍᎦᎸᎲ ᏓᏆᎷᏌᏗᏍᎨ ᎠᎹ ᎦᏣᏄᎳ ᎨᏴᎢ.\nᏐᎵᎹᏅᏃ ᎶᏉᎹ ᎤᏕᏁᎴᎢ; ᎶᏉᎹᏃ ᎡᏆᏯ ᎤᏕᏁᎴᎢ; ᎡᏆᏯᏃ ᎡᏏ ᎤᏕᏁᎴᎢ;\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏙᏛᎾᎴᏂ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᎠᏰᎵ ᏚᏙᏢ-ᏩᏗᏒ ᏙᏛᎾᏓᏡᏔᏂ;\nᎬᏂᏳᏉ ᎠᏛ ᎾᏥᏰᎲᎾ ᎦᏁᎵᏛ ᎨᏎᏍᏗ, ᎠᎴ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ, ᎾᏍᎩᏃ ᎢᎹᏄᎡᎵ ᎠᏃᏎᎮᏍᏗ, ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎨᏒ ᎯᎠ ᏄᏍᏗ ᎦᏛᎦ, ᎤᏁᎳᏅᎯ ᎢᎨᎳᏗᏙᎭ.\nᎾᏍᎩᏃ ᏥᏁᎦ ᎢᎬᏱᏱᏉ ᎨᏒᎢ, ᎠᏯᏲᏍᏗ ᎨᏒᎢ, ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒᎢ, ᏗᏅᏓᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ, ᎾᏍᎩ ᎾᏂᎥ ᏴᏫ ᎤᎬᏩᎵ,\nᎣᏏᏉᏃ ᎠᏁᎵᏍᎨ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎠᏎᏃ ᎨᏍᏗ ᎤᏓᏁᏥᏴᏓ ᏱᎨᏎ ᎤᏤᏍᏗ.\n”ᎨᎵᎠ ᎤᏕᏯᏙᏗ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏥᎵᎾᎠ? ᏗᏣᎴᎲᎦ ᎢᏣᏓᏙᎵᏍᏗ, ᎾᏍᎩ ᎤᏓᎴᎾᏍᏗᏱ ᎨᏒ ᏫᏥᏴᏍᏗᏱ ᏂᎨᏒᎾ.\n“ᏍᎩᎪᏩᏘᎭᏧ ᏃᏉ?”\nᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏧᏄᏬᏉ ᎾᏍᏉ ᏱᏓᏆᏒᏂᎸ, ᏯᏆᏗᏫ.\nᎠᏂᎨᏴᏃ ᎾᏍᏉ ᎨᎵᎵ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ, ᎣᏂ ᎠᎾᎵᏍᏓᏩᏗᏎᎢ, ᎠᎴ ᎤᏂᎪᎮ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᏂᎬᏅ ᎤᏂᏅᏅ ᎠᏰᎸᎢ.\nᎠᏦᏴ ᏙᏰ ᏫᏚᎧᎾᏁ ᏫᎵᎻ, ᏌᏌ ᏗᎦᏙᎨ.\nᎦᏙᏃ ᏱᏟᎲᎾ ᏥᎩ, ᏫᎵᎻ?”\nᏃᎴ ᎠᎧᏔᎮᎢ ᎤᏩᏙᎯᏴᏓ ᎨᏒ ᏧᏤᎵ ᏗᏂᏲᏟ.\nᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴᏉ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ.\nᎠᎴ ᎿᏉ ᎤᎩᏨᏅ ᎤᏂᎨᏎ ᎠᎴ ᎢᎾᎨ ᏭᎶᏎᎢ; ᎤᏂᏣᏘᏃ ᎬᏩᏲᎴᎢ, ᎠᎴ ᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎬᏩᏗᎩᏯᏍᎨᎢ, ᏞᏍᏗ ᏍᎩᏯᏓᏅᎡᎸᎩ ᎬᏬᏎᎮᎢ.\nᎯᎠᏰᏃ ᏂᎦᏛᎭ ᎦᎸᏉᏗ ᎪᏪᎵ; ᏞᏍᏗ ᏱᏲᏴᏑᎳᏁᏍᏗ ᏩᎦ ᎠᎦᏔᏙᎥᏗᏍᎩ; ᎠᎴ, ᎪᎱᏍᏗ ᎠᏛᏁᎯ ᎠᎦᎫᏴᎡᏗ ᎨᏐ ᏚᎸᏫᏍᏓᏁᎸᎢ.\nᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎥᏝ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᎤᏚᎵᏍᎬ ᏱᏅᏧᎵᏍᏙᏔᏁᎢ, ᎦᏃᏍᎩᏍᎩᏍᎩᏂ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎠᎴ ᏕᎦᎶᏗ ᎦᏁᎲᎢ ᎠᎴ ᎾᎿ ᎦᎳᏅᎯ ᎦᏃᏍᎩᏍᎬᎢ.\nᎾᏃ ᏨᏓᏍᎩᏲᏪᎳᏁᎸ ᎤᎬᏩᎵ; ᎣᏏᏳ ᎠᏍᎦᏯ ᏄᏃᏟᏍᏔᏅᎾ ᏱᎩ ᎠᎨᏴ.\n“ᏃᏗ ᏙᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎢ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᏦᎯᏍᏙᏗ ᏚᏂᎾᎥ ᏧᎾᎿᏬ ᏚᎾᎿᏬᎥᏎ.\nᎾᏂᏃᏍᎩᏍᎬᎾ, ᎬᏂᎨᏒᏍᎩᏂ ᎾᏅᏁᎮᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏒᎢ; ᎾᏍᎩ ᎤᏃᏚᎢᏍᏙᏗᏱ ᏂᎦᎥᏉ ᎾᎾᏛᏁᎲ ᎾᏍᎩ ᏗᏕᏲᏅᎯ ᎨᏒ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ ᎤᏤᎵᎦ.\n“ᏲᎾ ᎤᏤᏍᏙ!” ᎤᏍᎦᎢᏍᏔᏁ ᎤᏥ.\nᎠᎧᏔᎮᎢ ᎠᏥᏲᎵᎲ.\nᏧᏗᏱ ᎤᏂᎩᏒᎩ ᎠᎴ ᏔᎵᏁ ᎨᎵᎵ ᏮᎤᎶᏒᎩ.\nᎠᎬᏱᏣ ᎦᏙᎨᎢ, ᎠᏫᏒᏗ ᎢᏣ ᏱᏭᎶᏌ, ᏃᎴ ᎰᎻ ᏣᎢᏎ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᎪᏱᏁ.\nᎠᏎᏃ ᏥᏤᎾ, ᎠᎴ ᏫᏥᏃᎲᏏ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᎴ ᏈᏓ ᎾᏍᎩ ᎢᎬᏱ ᏫᏚᎶᎯᏎᏗᏱ ᎨᎵᎵ; ᎾᎿ ᏓᏰᏥᎪᎢ, ᎾᏍᎩᏯ ᏂᏥᏪᏎᎸᎢ.\nᎢᎳᎩᏳ ᎢᏨᎪᎡ ᏁᏣᎦᏔᎲᎾ, ᎢᏨᏴᏔᏁᏃ; ᎠᎴ ᏣᏰᎸᎭ ᎨᏎᎢ, ᎢᏨᏄᏬᎡᏃ;\nᏞᏍᏗ ᎢᏂᎵᏓᏍᏓᏅᎩ, ᎢᏨᎨᏳᎢ ᎢᏓᏓᏅᏟ;\nᏂᎯ ᏨᏌ ᏫᎦᏣᎩᏍᏗ.\nᎾᏉᏃ ᏫᎬᏩᎷᏤᎴ ᏥᎷᏏᎵᎻ ᎠᎴ ᏂᎦᏛ ᏧᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᏅᎾᏛ ᏦᏓᏂ,\nᎤᏰᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᏓᏃᏴᎵᏍᏗᎭ, ᎠᎴ ᏙᏣᏠᏱᎭ? ᎥᏝ ᏳᏲᎱᏒ ᎠᎨᏳᏣ, ᎦᎵᎭᏉᏍᎩᏂ.\nᎢᏨᏲᏪᎳᏁᎸᎩ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏤᏓᏍᏗᏱ ᏂᎨᏒᎾ ᎤᏕᏒᎾ ᏗᎾᏂᏏᎲᏍᎩ;\nᎤᏂᏄᎸᏅᏃ ᎦᏙᎬ ᎾᎥ ᎤᏂᎷᎯᏍᏗᏱ ᎠᏂᏁᏄᎸ ᎢᏳᏍᏗ, ᎤᏅᏁᏎ ᎾᎿ ᎠᏯᎥᎢ; ᎤᏅᏁᏒᏃ, ᎡᎳᏗ ᏄᏅᏁᎴ ᎠᏤᏍᏙ ᎾᎿ ᎤᎵᏓᎸᎥᏍᎩ ᎦᏅᎬᎢ.\nᎠᏆᏅᏔ ᎠᎩᏒᎸ ᏧᎾᏗᏔᏍᏗ ᎦᏚᏏᎢᏰᏛ, ᎤᏂᎯᏐᏓᏁ ᏍᎪᏂᏯ ᏓᏳᏂᎶᏒ ᎤᏂᏃᎩᏍᏙᏗ ᏄᏙ ᏥᎧᎸᎪ ᎢᎪᎯᏓ.\nᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏱᏚᏳᎪᏗ ᏗᎩᏒᏗᏱ ᏗᏂᏲᎵ ᎤᎾᏤᎵ ᎦᏚ, ᎩᎵᏃ ᏫᏓᏗᏁᏘᏱ.\nᏥᎷᏏᎵᎻᏃ ᎠᏁᏙᎮ ᎠᏂᏧᏏ ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎩ ᏅᏓᏳᏂᎶᏒᎯ ᏄᎾᏓᎴᏒ ᎠᏁᎲ ᏴᏫ ᎦᎸᎶ ᎭᏫᏂᏗᏢ.\nᎠᎴ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎾᏍᎩ ᏂᏌᎵᏍᏓ. ᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᎢᎬᏱᏱ ᎨᏒ ᎠᎴ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ. ᎤᏔᏕᎩᏍᎩ ᎠᎹ ᎬᏂᏛ ᎠᏓᏁᎯ ᎦᏄᎪᎬ ᏓᏥᏁᏁᎵ ᏧᎬᏩᎶᏗ ᏂᎨᏒᎾ.\nᎤᎩᏨᏓᏃ ᏃᏊ ᎯᎠᏴ ᎧᎸ ᏅᏙ ᏃᏊ ᎤᎷᏨ ᎾᎥ ᎢᏦᎦᏓᎵ ᎠᎴ ᎣᎩᏃᎯᏎᎸ ᎾᎯᏳ ᏒᏃᏱ ᎠᏟᎢᎵᏒ ᎤᏲᎱᏎ Ꮎ ᎤᏛᏐᏅ ᏧᏢᎬᎢ.\nᎾᏍᎩ ᎤᎷᏨᎩ ᎧᏃᎮᏍᎩ ᎨᏒᎩ, ᎾᏍᎩ ᎢᎦ-ᎦᏘ ᎤᏃᎮᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎾᏂᎥ ᎤᏃᎯᏳᏗᏱ.\nᎠᏎᏃ ᏂᎯ ᎢᏨᏃᎮᎮᎭ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᏥᎨᏥᏚᎢᏍᏓᏁᎴ ᏗᎩᎦᏴᎵᎨᎢ,\nᎠᎴ ᎾᏍᎩ ᎤᎷᏤ ᎤᏪᏙᎴ ᏦᏓᏂ ᎾᎥᏂᎨ ᎨᏒᎢ, ᎠᎵᏥᏙᎲᏍᎨ ᎧᏃᎮᏍᎨ ᏗᏓᏬᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏛ ᎨᏒ ᎣᏓᏅᏛᎢ, ᎾᏍᎩ ᎦᏴᏓᏘᏁᏗᏱ ᎣᏍᎦᏅᏨᎢ;\n“ᏯᏓᏅᏖᎳ ᎠᎬᏱ ᏥᏕᎾᏙᎵᎬ ᏣᏇᎵᏒ ᏣᏁᎫᏥᏓ ᏃᎴ ᎩᎦ ᏣᏔᏕᎩᏍᎩ ᎨᏒ!” \nᏂᎯᏍᎩᏂ ᎢᏳᏃ ᏔᏓᏙᎵᏍᏔᏂᏎᏍᏗ ᏫᏴᎯᎮᏍᏗ ᎧᏅᏑᎸᎢ, ᎿᏉᏃ ᏣᏍᏚᏁᏍᏗ ᎦᎶᎯᏍᏗᏱ, ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᏣᏙᏓ ᎤᏕᎵᏒ ᎡᎯ, ᏣᏙᎵᏃ ᎤᏕᎵᏒ ᎠᎪᏩᏘᏍᎩ ᎠᏎ ᏣᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎬᏂᎨᏒᎢ.\nᎤᎩᏨᏓ ᏳᏂᎳᎩᏒ ᏏᏆ, ᎭᏂᏓᏫᏗᏍᎬ ᎭᏫᏯ ᎠᎴ ᎠᏂᎾᏌᎾᎩᏍᎬ ᎭᏫᏯ ᏃᎴ ᏧᎾᏦᏍᏗ ᎭᏂᏍᏚᏥᏍᎬ ᏃᎴ ᎤᎾᏗᎴᎩ ᎤᏂᏥᎸ ᎠᏂᏅᎵᏰᏍᎬ, ᎠᎹ ᎤᏓᏑᏱ ᏎᎷ ᎦᏚ ᎪᎢ ᏗᎬᏣᏝᏅ ᎠᏂᎩᏍᎬ.\n”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ.”\nᎿᏉᏃ ᏅᏛᎩᏅᏏᏛ ᏧᏬᎸ ᏫᏥᎦᏘ, ᎥᏝᏃ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᏳᏓᏑᏯ ᏯᏆᏛᏛᎲᏍᎦ, ᎯᎠ ᏱᏂᎦᏪ; ᎭᏢ ᏫᎦᏘ?\nᎠᏴᏰᏃ ᎠᏓᏅᏛ ᎢᏳᏩᏂᏌᏛ ᎢᏗᎦᏘᏴ ᎤᏚᎩ ᎢᎬᏒ ᎢᎦᏚᏓᎴᏍᏙᏗᏱ ᎪᎯᏳᏗ ᎨᏒᎢ.\nᎿᏉᏃ ᎠᏴ ᎥᏝ ᎡᎶᎯ ᏱᎨᎠ, ᎯᎠᏍᎩᏂ ᎡᎶᎯ ᎠᏁᎭ, ᎠᏴᏃ ᏗᏦᎸ ᏫᏥᎦᏘ. ᎡᏣᎸᏉᏗᏳ ᎡᏙᏓ, ᏨᏒ ᏕᏣᏗᎥ ᎲᏗᏍᎨᏍᏗ ᏕᎯᏍᏆᏂᎪᏕᏍᏗ ᏗᏍᎩᎧᏁᎸᎯ, ᏌᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᎯ ᎠᏴᏃ ᏌᏉᏉ ᏥᎩ.\nᎢᎦ ᏣᏓᏴᎳᏔᏍᎦ ᎦᎸᎶᎢ ᏃᎴ ᏥᏍᏆᏯ ᏣᎾᎵᏖᎸᎮᎭ, ᏩᎦ ᏥᏓᏂᏖᎸᎮ ᎤᎾᏓᏕᏒᏓ, ᏥᏔᎦ ᎠᏨᏯᎢ ᏣᏙᎯᎠ, ᏃᏈᏏ ᏣᏂᏍᎪᎸᎦ, ᎠᎬᏱ ᏥᏓᏓᏏᏙᎭ ᏓᏆᎴᎳ ᏅᏃᎯ, ᎭᏂ ᏱᏗᏣᎧᎾᎾ ᎬᏂᎨᏒ ᏱᏂᎬᏴᏂᏏ ᎪᎱᏍᏗ, ᎬᏂᎨᏒ ᏱᏂᎬᏴᏂᏏ ᎠᏉᏒᏅ.” \nᏚᎧᎿᏙᎸᏃ ᎬᏩᏚᏫᏛ ᏂᎦᏛ ᏄᎾᏛᏅᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎦᏯ; ᎭᏙᏯᏅᎯᏛ. ᎾᏍᎩᏃ ᏄᏛᏁᎴᎢ; ᎤᏬᏰᏂᏃ ᎤᏗᏩᏎ ᎾᏍᎩᏯ ᏐᎢ ᏄᏍᏛ ᏄᎵᏍᏔᏁᎢ.\nᎦᏣᏄᎳ ᏓᎾᏛᏍᎨᎢ.\nᎠᏎᏃ, ᎢᏧᎳ ᏐᎦᎳᏂ ᏚᏳᏂᎶᏒ ᏃᎴ ᏄᏓᎴᏨ ᎤᎾᏓᏅᏖᏗ.\nᎡᎳᏗ ᎤᎨᏓᎵᏴ ᎤᏂᎾᏅᎪᏤ, ᎭᎾ ᏚᏂᎪᎮ ᏚᏅᏓᏒ ᏗᎦᏙᎩ ᏌᎪᏂᎨ ᏧᏴᏨ ᎢᏣ, ᎾᎥᏂᎨ ᎠᏦᎭᏴ ᎬᏂᎨᏒ ᎢᎬᏁ ᎠᎵᏍᏆᏗᏍᎬ ᎡᎶ.\nᎪᏪᎵ ᎦᎸᏉᏗ ᎤᏁᎦ ᏓᏴᏈᏛ ᎢᏳᏁᎦ ᎨᏎ ᎤᏁᎦᎸ ᎠᎵᏥᏙᎲᏍᎩ.\nᎤᏂᏁᎫᎯᏍᏗ ᎤᎦᏔ ᏍᏉ ᎢᎬᏱᏊ ᏙᏥᏫᏍᎪ, ᏙᏣᎪᏎᏍᏗᏍᎪ ᎠᎦᎾᏬᎲᏍᎬ ᎢᎪᎯᏓ ᎩᎳᏃ ᎦᏙ ᏫᏙᏥᏰᎲᏍᏗᏍᎪᎢ.\nᎠᎴ ᎾᏍᏉ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎾᎥ ᏥᏕᎦᏚᎮᎢ, ᎾᏍᎩᏯ ᎾᎾᏛᏁᎮ ᏓᎾᏓᏲᏍᎨ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᎠᏂᏍᏓᏩᏗᏙᎮ ᎤᏪᏓᎵ ᎠᏍᏓᏳᏛᏍᏗ ᎤᏇᏓᎵ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᏓᏕᏯᏔᎲᏍᎩ ᏂᎨᎬᏁᎴᎢ ᎠᏂᎩᎵᏲᎨ ᎤᏂᏍᏛᏗᏍᏗ ᎨᏒ ᎬᏠᏍᎩ ᏂᎨᏒᎾ ᎠᏥᎸᏱ.\nᏌᏉᏰᏃ ᎢᏳᎵᏍᎪᎸᏔᏅᎯ ᎨᏒ ᎤᏮᏔᏅ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏄᏂᎪᎸᎾ ᏂᏚᏩᏁᎸ Ꮎ ᎾᏂᏍᎦᏅᎾ ᎢᎨᎬᏁᎸᎯ.\nᏯᏓᏅᏍᎬᎾ ᎦᎾᎡ ᎠᎹ ᎠᎡᎭᏲᎮ ᎠᎹ ᎠᏰᎸ.\nᎤᎷᏤᎴ ᎠᏛ ᎾᏍᎩ ᏦᏩ ᏧᏙᎢᏛ ᎠᏍᎦᏯ ᎤᏓᏴᏍᏗ, ᎾᏍᎩ ᏕᏫ ᎤᏁᏢᏔᏅᏛ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎠᏛ ᎺᎵ ᏧᏙᎢᏛ ᎨᏎᎢ.\nᎾᏍᎩ ᏕᎭᏓᏅᏖᏍᎨᏍᏗ, ᎾᏍᎩᏉ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ, ᎾᏍᎩᏃ ᏣᏁᏉᏤᎲ ᎬᏂᎨᏒ ᏄᎾᎵᏍᏓᏁᎮᏍᏗ ᏂᎦᏛ.\nᏥᏙᎬ ᎤᏓᏐᎸ.\n”ᎭᏓᎾᏫᏓ ᏃᎴ ᎭᎵᏍᎩ!” ᎤᏛᏁ ᏥᏔᎦ ᎠᏨᏯ.\nᎢᎦᏃ ᎤᏬᏚᎯ ᎨᏎᎢ Ꮎ ᏒᎦᏔ ᎢᏈᎬᎢ ...\nᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏙᎯᏳᎯ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒ ᏓᏤᎸ, ᎾᏍᎩ ᎾᎿ ᎣᏩᏒ ᎣᏓᏅᏖᏛ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏃᎦᏌᏯᏍᏛᎾ ᎨᏒ ᎥᏰᎸᎢ, ᎥᏝᏃ ᎾᏍᎩ ᎠᎦᎸᏉᏗᏍᎬᎢ, ᎤᏇᏓᎵ ᎤᏂᎬᏎᎲ ᎥᏩᏛᎡᎲᎢ.\nᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏥᎾᏝᎢ ᎥᏝ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐᎢ, ᎡᏍᎦᏉ ᎤᎾᏝᎢ; ᎠᎴ ᎥᏝ ᎠᏥᏅᏏᏛ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐᎢ, ᎡᏍᎦᏉ ᏅᏓᏳᏅᏏᏛ.\nᎾᎿᏰᏃ ᏧᎬᏩᎶᏗ ᏫᏥᎲᎢ ᎠᏎ ᎾᏍᏉ ᏫᏓᎮᏍᏗ ᏗᏣᏓᏅᏙ.\nᏰᎵ ᎢᏳᏥᎶᏓ ᏓᏳᏂᎶᏒ ᎠᏂᎷᎨᎢ ᏴᏫ ᎠᎾᎧᏔᏂᏙᎢ ᏫᎵᎻ ᏃᎴ ᎠᏂᎪᎵᏰᏍᎩ ᏚᏬᏪᎸ ᏌᎳᏓ ᏚᏏᎳᏛᎢ.\nᎤᎧᎭᏛ ᎤᎾᏓᏴᎳᏔᏅ ᎠᎾᏓᎭᏲᎯ, ᎠᎬᏱᏣ ᎤᎾᏓᏌᎬᏍᏔᏅ ᏯᎾᎴᏫᏍᏘᏍᎬᎾ.\nᏥᏌᏃ ᎾᎿ ᎤᏓᏅᏒ, ᎤᎪᎲᎩ ᎠᏍᎦᏯ ᎹᏚ ᏧᏙᎢᏛ, ᎤᏬᎸᎩ ᎠᏰᎵ ᎠᎫᏴᏗᏱ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᏍᎩᏍᏓᏩᏚᎦ. ᏚᎴᏅᏃ ᎤᏍᏓᏩᏛᏒᎩ.\nᏃᎴ ᎠᏂᏫᎾ ᎠᏂᎦᎸᏥ ᏗᏂᏍᏕᎵᏙ ᎠᏂᎦᎸᏥ ᏗᏂᎳᏫᎩ ᎨᏍᏗ ᏯᏃᎵᎨ ᎦᏁᎸᏗᏍᎬ ᎠᎩᏬᏂᏍᏗ.\nᎠᏐᏴᏃ ᎦᏚᎲ ᏔᎳᏚ ᏕᎦᎫᏍᏓᎥᎩ, ᏕᎦᎫᏍᏓᎥᏃ ᏔᎳᏚ ᏚᎾᏙᎥᎢ [ᏕᎪᏪᎸᎩ,] ᎾᏍᎩ ᏔᎳᏚ ᎢᏯᏂᏛ ᎤᏃᏕᎾ ᎠᎩᎾ ᏧᏅᏏᏛ ᏚᎾᏙᎥᎢ.\nᎠᏏᏴᏫᏃ ᎤᏓᏑᏴᎩ, ᎧᏱᏆ ᏧᏙᎢᏛ, ᎾᎯᏳ ᎤᏕᏘᏴᏌᏗᏒ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎪᎱᏍᏗ ᏱᏥᎦᏔᎭ,\nᎤᎬᏫᏳᎯᏃ ᎾᏍᎩ ᎯᎠ ᎠᎦᏔᎭ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏛᏓᏍᏛ ᏂᏥᏍᎦᎢᎲᎾ ᏥᏥᏁᎦ; ᏥᎦᏔᎭᏰᏃ ᎯᎠ ᎾᏍᎩ ᎪᎱᏍᏗ ᎠᎬᏍᎦᎳᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏞᏰᏃ ᎤᏅᏏᏴ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏱᎩ.\n“ᏤᏍᏗᏉ, ᏤᏍᏗ ᏯᏛᏁᎵᏍᎨᏍᏗ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ.\nᎢᏳᏃ ᎾᏍᎩ ᎠᏛᎦᏅ ᎤᎬᏫᏳᎯ, ᏓᏲᏥᏍᏗᏰᏔᏂ, ᎠᎴ ᏓᏨᏍᏕᎸᎯ.\nᏔᎵᏁᏃ ᎠᏰᏙᎳᏛ ᎤᏗᏗᏢ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᎤᏟ ᎢᎦᎸᏉᏗ ᏣᏃᏎᎮᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂ ᎤᏂᎷᏥᎸ, ᏄᎵᏍᏛᏉ ᎤᎩᏨᏛ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸ ᎠᎩᏅᎩ, ᎠᎴ ᎠᎩᏁᏨᎩ ᎾᏍᎩ ᎠᏍᎦᏯ ᏩᏥᏯᏅᏗᏱ.\nᏗᎧᎿᏩᏛᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎤᎬᏩᎳ ᎾᏍᎩ ᎦᏓᎭ ᏂᎨᏒᎾ ᎣᎾᏫ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎣᏍᏛ ᏗᎫᎪᏙᏗ ᎨᏒ ᎠᎴ ᏄᏠᎾᏍᏛᎾ ᎪᎯᏳᏗ ᎨᏒᎢ;\nᏅᏩᏓᎴᏃ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᎠᎩᎪᎲᎩ, ᎦᎸᏉᏗ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏓᏂᏰᎲᎩ ᎦᎵᏉᎩ ᎢᏳᏓᎴᎩ ᎤᎵᏍᏆᎸᏗ ᎤᏕᏔᏙᏗ; ᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎠᏂᎧᎵᏏᏏᎭ.\nᏗᏂᎾᏌᎲᏍᎩ ᏧᎾᏓᏍᏔᏴᏙᏗ ᎦᏯᎱᎶ ᎣᎭᏁ ᏚᎾᏛ, ᎠᎭᎸᏂ ᎢᏳᏍᏗ ᏚᏃᏴᎬ ᎠᏁᎬ ᏅᏃ.\nᏗᏓᏴᎳᏛᏍᎩ ᎤᏂᎲ ᎠᎴ ᏧᎵᏏᏅᏓᏊ ᎢᏳᏍᏗ.\nᎩᏟᏃ ᏃᏊ ᎤᏕᎶᎰᏌ ᎣᏥᏍᏓᏩᏕᎬ ᏫᏂᎦᏯᎢᏒ Ꮭ ᏃᏊ ᏱᏗᎤᏨᏎ.\nᏩᎩᎷᏨ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏗᎪᏪᎵᏍᎩ ᏧᎷᏫᏍᏓᏅᏗ, ᎤᏙᎰᎯᏍᏗ ᏩᎩᏰᎸ ᎠᏙᎩᏯᏍᏗ ᎣᏍᏓ ᎾᏋᏁᎳ.\nᎤᎵᎮᎵᏤ ᎠᎪᏩᏘᏍᎬ ᎪᏱᏁᎢ ᏃᎴ ᎤᏬᏍᎩᎵ ᎦᏍᎩᎶ ᎤᏕᎴ ᎤᏩᏘ.\nᏍᎩᎾᏃ ᎢᏳᏍᏗ ᎠᏲᏟᎨ ᏓᏲᎪ.\nᎠᎫᏩᏌ ᎠᎫᏤᎵ ᎦᏙ ᎤᎵᏍᎨᏛ ᎠᏰᎸᏗ ᎭᏂ ᎢᏕᎲ.\nᎤᎴᏫᏍᏔᏁ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ.\nᎡᏂᎾᏯᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏂᏤᎸᎩ ᎬᏙᎬ ᎾᎥ ᎠᏂᏙᎾᎢ ᎠᎰᎵ ᎬᏩᏂᏍᏗᏱ."
  },
  {
    "path": "a4/chr_en_data/test.en",
    "content": "But Abraham saith, They have Moses and the prophets; let them hear them.\n“Very well, Uncle,»” replied Charlotte.\nthat ye be not sluggish, but imitators of them who through faith and patience inherit the promises.\nAs he stood there, he noticed something move.\nThen shall he say also unto them on the left hand, Depart from me, ye cursed, into the eternal fire which is prepared for the devil and his angels:\nrejoiceth not in unrighteousness, but rejoiceth with the truth;\nwho did no sin, neither was guile found in his mouth:\nand he made no distinction between us and them, cleansing their hearts by faith.\nAnd they were all amazed and marvelled, saying, Behold, are not all these that speak Galilæans?\nHe tried to follow the instructions his friends were giving him, but he couldn't run downhill and uphill at the same time, and he couldn't turn and twist when he was jumping and dancing, and he was crying so hard he could barely see anything that was happening.\nTherefore are they before the throne of God; and they serve him day and night in his temple: and he that sitteth on the throne shall spread his tabernacle over them.\nHerein was the love of God manifested in us, that God hath sent his only begotten Son into the world that we might live through him.\nBut if I by the finger of God cast out demons, then is the kingdom of God come upon you.\n“I want to live in a tree, with my frog.”\nAnd whether one member suffereth, all the members suffer with it; or one member is honored, all the members rejoice with it.\nThe infield was littered with bottles and trash.\n(as it is written in the law of the Lord, Every male that openeth the womb shall be called holy to the Lord),\nThis was almost more than Wilbur could stand: on this dreary, rainy day to see his breakfast being eaten by somebody else.\nWilbur stood still and cocked his ears.\nnot glorying beyond our measure, that is, in other men’s labors; but having hope that, as your faith groweth, we shall be magnified in you according to our province unto further abundance,\n“I’ve always been dreadfully near-sighted.\nBear loomed over them at his lean excessive height and told the story, and the children looked up and listened in amazement.\nI pictured the old grey man sitting at his desk scribbling as frantic as a farmer beating out a wheat-field fire with a wet tow sack, shedding strands of white hair in a momentous backlit explosion from his nimbus of beard and coiffure, tossing the dense blackened pages over his shoulder into a pile of paper as great and conical as a haystack.\nHe looked at the egg sac.\nAnd as they were eating, he took bread, and when he had blessed, he brake it, and gave to them, and said, Take ye: this is my body.\nThe Irish boy took the bow and arrows from the man who held them, and the fletching of the arrows was rumpled and gapped like the feathers of a wet chicken.\nI can’t say.\nAnd they that sat at meat with him began to say within themselves, Who is this that even forgiveth sins?\nAnd this was done thrice: and straightway the vessel was received up into heaven.\nAnd if thy right hand causeth thee to stumble, cut it off, and cast it from thee: for it is profitable for thee that one of thy members should perish, and not thy whole body go into hell.\nBut I doubt that she spends her entire life in Homer Zuckerman’s barn cellar.\nBut I fear, lest by any means, as the serpent beguiled Eve in his craftiness, your minds should be corrupted from the simplicity and the purity that is toward Christ.\nHave ye not read even this scripture: The stone which the builders rejected, The same was made the head of the corner;\n“Oh, Charlotte,” he said.\n“Henry invited me to go on the Ferris wheel again, only I don’t think he has any money left.\nAsk, and it shall be given you; seek, and ye shall find; knock, and it shall be opened unto you:\nMy Father, who hath given them unto me, is greater than all; and no one is able to snatch them out of the Father’s hand.\nWhen she was finished ripping things out, her web looked something like this:  A spider can produce several kinds of thread.\nThe air was soon filled with tiny balloons, each balloon carrying a spider.\nas knowing this, that law is not made for a righteous man, but for the lawless and unruly, for the ungodly and sinners, for the unholy and profane, for murderers of fathers and murderers of mothers, for manslayers,\nand he saith unto him, Friend, how camest thou in hither not having a wedding-garment? And he was speechless.\nSalute one another with a kiss of love. Peace be unto you all that are in Christ.\nXIII. Good Progress  \nFor every house is builded by some one; but he that built all things is God.\n“Why did you do all this for me?” he asked.\nBut Jesus answered and said, Ye know not what ye ask. Are ye able to drink the cup that I am about to drink? They say unto him, We are able.\nSo when they got out upon the land, they see a fire of coals there, and fish laid thereon, and bread.\nyet to abide in the flesh is more needful for your sake.\n“There was the fish, caught only by one fin, and its tail wildly thrashing and shining in the sun.\nAnd when we had come in sight of Cyprus, leaving it on the left hand, we sailed unto Syria, and landed at Tyre; for there the ship was to unlade her burden.\nThis I say therefore, and testify in the Lord, that ye no longer walk as the Gentiles also walk, in the vanity of their mind,\nOr have ye not read in the law, that on the sabbath day the priests in the temple profane the sabbath, and are guiltless?\nLook radiant, Wilbur!\nThou knowest the commandments, Do not kill, Do not commit adultery, Do not steal, Do not bear false witness, Do not defraud, Honor thy father and mother.\nThe maid therefore that kept the door saith unto Peter, Art thou also one of this man’s disciples? He saith, I am not.\nFor this is the love of God, that we keep his commandments: and his commandments are not grievous.\nThere is no place like home, Wilbur thought, as he placed Charlotte's five hundred and fourteen unborn children carefully in a safe corner.\nHe was a slim blond-headed fellow, gangly and not yet in complete control of his big hands and long feet.\nVerily I say unto you, This generation shall not pass away, till all things be accomplished.\nYou'll see me in the morning.”\nAnd they tarried no little time with the disciples. \nAnd now I beseech thee, lady, not as though I wrote to thee a new commandment, but that which we had from the beginning, that we love one another.\nTempleton untied his string and took it back to his home.\nand lo, a voice out of the heavens, saying, This is my beloved Son, in whom I am well pleased. \nEither make the tree good, and its fruit good; or make the tree corrupt, and its fruit corrupt: for the tree is known by its fruit.\nOne morning Wilbur asked her about the Fair.\nMy grandmother used to bathe her pig with buttermilk when it got dirty — I just remembered.”\nand he came and took her by the hand, and raised her up; and the fever left her, and she ministered unto them.\nBut that ye may know that the Son of man hath authority on earth to forgive sins (then saith he to the sick of the palsy), Arise, and take up thy bed, and go unto thy house.\nBear, who then as now lived in the mountains and kept mostly by the old ways already, had not followed the pilgrims but watched all of it with despair.\nI have compassion on the multitude, because they continue with me now three days, and have nothing to eat:\nAnd they that saw it declared unto them how it befell him that was possessed with demons, and concerning the swine.\nYe leave the commandment of God, and hold fast the tradition of men.\nFor your obedience is come abroad unto all men. I rejoice therefore over you: but I would have you wise unto that which is good, and simple unto that which is evil.\nAnd they, when they heard that he was alive, and had been seen of her, disbelieved.\nNow there was a certain man in Cæsarea, Cornelius by name, a centurion of the band called the Italian band,\nFern was upstairs changing her sneakers.\nAnd he spake this parable; A certain man had a fig tree planted in his vineyard; and he came seeking fruit thereon, and found none.\nand all things that are mine are thine, and thine are mine: and I am glorified in them.\nPhilip answered him, Two hundred shillings’ worth of bread is not sufficient for them, that every one may take a little.\nAnd when he was gone out into the porch, another maid saw him, and saith unto them that were there, This man also was with Jesus of Nazareth.\nThen down wide steps to the parlor.\nThen another spider.\nAnd when the messengers of John were departed, he began to say unto the multitudes concerning John, What went ye out into the wilderness to behold? a reed shaken with the wind?\nAnd they understood not the saying which he spake unto them.\nFor though I made you sorry with my epistle, I do not regret it: though I did regret it (for I see that that epistle made you sorry, though but for a season),\nBut we cannot verify their tales, and tales are all I believe them to be.\nHe remembered that when the rain didn't come for a few days, the water level would drop.\nIn like manner he also that received the two gained other two.\nBut the eleven disciples went into Galilee, unto the mountain where Jesus had appointed them.\nThe Jews therefore said, Will he kill himself, that he saith, Whither I go, ye cannot come?\nThen, at the point when he became wet to the skin, the rain tapered away to nothing but dense fog.\nAnd when they had tied him up with the thongs, Paul said unto the centurion that stood by, Is it lawful for you to scourge a man that is a Roman, and uncondemned?\n“Your tongue is purple!” screamed Fern.\nLurvy wandered off by himself, hoping to meet friends and have some fun on the midway.\nThey found a tube of wood.\nwho his own self bare our sins in his body upon the tree, that we, having died unto sins, might live unto righteousness; by whose stripes ye were healed.\nI shall always treasure her memory.\nAnd then she shouldered her bedroll and walked off into exile.\nThere, in the center of the web, neatly woven in block letters, was a message.\nAnd they said, Moses suffered to write a bill of divorcement, and to put her away.\nWhen they had not wherewith to pay, he forgave them both. Which of them therefore will love him most?\nAvery slowly poured buttermilk on Wilbur’s head and back, and as it trickled down his sides and cheeks, Mr. and Mrs. Zuckerman rubbed it into his hair and skin.\nHe felt peaceful and happy and sleepy.\n“Stop your nonsense, Wilbur!” said the oldest sheep.\nBy faith even Sarah herself received power to conceive seed when she was past age, since she counted him faithful who had promised:\nBut I say, Did they not hear? Yea, verily, Their sound went out into all the earth, And their words unto the ends of the world.\n“Be still, Templeton!” said Charlotte.\nHe was ordered again to quit selling, and he not only continued to do so but raised Cain about our authority to set conditions on him.\nSo then each one of us shall give account of himself to God.\nFor I say unto you, Ye shall not see me henceforth, till ye shall say, Blessed is he that cometh in the name of the Lord. \nBut he answered and said, I was not sent but unto the lost sheep of the house of Israel.\nBeloved, let us love one another: for love is of God; and every one that loveth is begotten of God, and knoweth God.\nto whom also Abraham divided a tenth part of all (being first, by interpretation, King of righteousness, and then also King of Salem, which is, King of peace;\nStephen snared the head of the great serpent with the iron key as Charlie hefted the boulder.\nAmy and Ginger, who lived next door, and Amy's boyfriend, were all peering down at me as I lay on top of this huge bear-pillow.\n“Why, yes, of course,” said Wilbur.\nNo more talking!\nBut afterward he sent unto them his son, saying, They will reverence my son.\nCharlotte examined the label.\n“First,” said Charlotte, “I dive at him.” She plunged headfirst toward the ﬂy.\n“There!” said Charlotte.\nWhen I presented the letter and brought up my business—launching quickly into the details of citizenship and ownership of land—the look in Jackson’s eyes suggested he might have a killing or two left in him.\nFor how many soever be the promises of God, in him is the yea: wherefore also through him is the Amen, unto the glory of God through us.\nAs I walked from my hotel to the War Department, people on the street took little note of my odd display, for the town was full of various kinds of outlanders, everything from Creeks to Turks.\nThe merchants of these things, who were made rich by her, shall stand afar off for the fear of her torment, weeping and mourning;\nLook up here in the corner of the doorway! Here I am. Look, I’m waving!”\nShe said: ‘I am sure that every one of us here in the barn cellar will be gratified to learn that after four weeks of unremitting effort and patience on the part of the goose, she now has something to show for it.’   \nSomething about its brown and musty taste carried a tinge of retrospection, and after two pours, Smith began recounting his life—at least his boyhood and youth, for that is all he had to tell.\nFor as often as ye eat this bread, and drink the cup, ye proclaim the Lord’s death till he come.\nAnd oft-times it hath cast him both into the fire and into the waters, to destroy him: but if thou canst do anything, have compassion on us, and help us.\nforbearing one another, and forgiving each other, if any man have a complaint against any; even as the Lord forgave you, so also do ye:\nBe not therefore like unto them: for your Father knoweth what things ye have need of, before ye ask him.\nThis charge I commit unto thee, my child Timothy, according to the prophecies which led the way to thee, that by them thou mayest war the good warfare;\nand thou hast patience and didst bear for my name’s sake, and hast not grown weary.\nWherefore, my beloved, flee from idolatry.\nWe met at the sorts of parties where the music and dancing went on until past midnight, and then supper was served.\nAnd one of the scribes came, and heard them questioning together, and knowing that he had answered them well, asked him, What commandment is the first of all?\nJohn to the seven churches that are in Asia: Grace to you and peace, from him who is and who was and who is to come; and from the seven Spirits that are before his throne;\nGood work, Zuckerman!\nand how the chief priests and our rulers delivered him up to be condemned to death, and crucified him.\nAnd one of the four living creatures gave unto the seven angels seven golden bowls full of the wrath of God, who liveth for ever and ever.\nBut that ye may know that the Son of man hath authority on earth to forgive sins (he saith to the sick of the palsy),\nBehold, I come quickly; and my reward is with me, to render to each man according as his work is.\nMy manner of life then from my youth up, which was from the beginning among mine own nation and at Jerusalem, know all the Jews;\nbut Peter was standing at the door without. So the other disciple, who was known unto the high priest, went out and spake unto her that kept the door, and brought in Peter.\nThe horses, in their stalls in the barn, pricked up their ears when they heard the goose hollering; and soon the horses had caught on to what was happening.\nThe world is a wonderful place when you're young.”\nThey answered unto him, We are Abraham’s seed, and have never yet been in bondage to any man: how sayest thou, Ye shall be made free?\nHe was a leader because he showed his people how to survive -- how to stand tall and proud like these trees.\nAnd he saith unto the man that had his hand withered, Stand forth.\nBut when thou makest a feast, bid the poor, the maimed, the lame, the blind:\nYe were bought with a price; become not bondservants of men.\nThen the lust, when it hath conceived, beareth sin: and the sin, when it is fullgrown, bringeth forth death.\nOne cabin with puncheon floors and stick-and-clay chimney, one hewed-log corncrib, a bed or two, one table, a few rush-bottomed straight chairs.\n“I’m going to visit Wilbur,” Fern announced.\nI hardly know the meaning of the word.”\n“There,” he said.\nAnd desiring to know the cause wherefore they accused him, I brought him down unto their council:\nThen he picked up the pail.\nmen who concerning the truth have erred, saying that the resurrection is past already, and overthrow the faith of some.\nHe was going through a spell of malaria about then.\nPerry did not have a firm grasp on the logic of the game; otherwise no money would have changed hands as every game would end in a draw.\n“How old is Fern?”\nStruggle! If you were to walk into the crate without resisting, Zuckerman might think you were bewitched.\nAnd immediately Jesus stretched forth his hand, and took hold of him, and saith unto him, O thou of little faith, wherefore didst thou doubt?\nand turning the cities of Sodom and Gomorrah into ashes condemned them with an overthrow, having made them an example unto those that should live ungodly;\nAnd he began to speak unto them in parables. A man planted a vineyard, and set a hedge about it, and digged a pit for the winepress, and built a tower, and let it out to husbandmen, and went into another country.\nA minute later, Fern was seated on the floor in the comer of the kitchen with her infant between her knees, teaching it to suck from the bottle.\nThis is that Moses, who said unto the children of Israel, A prophet shall God raise up unto you from among your brethren, like unto me.\n“Goslings, one through seven?”\nAnd his lord was wroth, and delivered him to the tormentors, till he should pay all that was due.\n“Salutations!” repeated the voice.\nAt last things calmed down.\nAnd from thence he arose, and went away into the borders of Tyre and Sidon. And he entered into a house, and would have no man know it; and he could not be hid.\nThe goose appeared, followed by her seven goslings.\nin whom the god of this world hath blinded the minds of the unbelieving, that the light of the gospel of the glory of Christ, who is the image of God, should not dawn upon them.\nBut he knew their thoughts; and he said to the man that had his hand withered, Rise up, and stand forth in the midst. And he arose and stood forth.\nBut they expected that he would have swollen, or fallen down dead suddenly: but when they were long in expectation and beheld nothing amiss came to him, they changed their minds, and said that he was a god.\nFrom that point forward, everything changed entirely in the village.\nand the rest, some on planks, and some on other things from the ship. And so it came to pass, that they all escaped safe to the land. \nAnd there cometh to him a leper, beseeching him, and kneeling down to him, and saying unto him, If thou wilt, thou canst make me clean.\nPray ye therefore the Lord of the harvest, that he send forth laborers into his harvest. \nMost of them looked the same, except for one small fish.\nhe again defineth a certain day, To-day, saying in David so long a time afterward (even as hath been said before), To-day if ye shall hear his voice, Harden not your hearts.\nAnd he said, This will I do: I will pull down my barns, and build greater; and there will I bestow all my grain and my goods.\nAnd be back at our regular meeting place by the pigpen very soon!”\nLook what it says!”\nCrockett said, Oh, I’m a big target and easy to hit, so there’s no honor in it.\nHe walked out to the yard again.\n The night before the County Fair, everybody went to bed early.\nThese things have I written unto you concerning them that would lead you astray.\nElse would they not have ceased to be offered? because the worshippers, having been once cleansed, would have had no more consciousness of sins.\nEveryone laughed.\nThe times of ignorance therefore God overlooked; but now he commandeth men that they should all everywhere repent:\nSo he called them in and lodged them. And on the morrow he arose and went forth with them, and certain of the brethren from Joppa accompanied him.\nNow Peter and John were going up into the temple at the hour of prayer, being the ninth hour.\nAnd some of them were persuaded, and consorted with Paul and Silas; and of the devout Greeks a great multitude, and of the chief women not a few.\n(as it is written, A father of many nations have I made thee) before him whom he believed, even God, who giveth life to the dead, and calleth the things that are not, as though they were.\nwho bare witness to thy love before the church: whom thou wilt do well to set forward on their journey worthily of God:\nAnd they told him, saying, John the Baptist; and others, Elijah; but others, One of the prophets.\nFor ye know the grace of our Lord Jesus Christ, that, though he was rich, yet for your sakes he became poor, that ye through his poverty might become rich.\n“It doesn’t make any difference.\nThrice was I beaten with rods, once was I stoned, thrice I suffered shipwreck, a night and a day have I been in the deep;\nAnd he sent Peter and John, saying, Go and make ready for us the passover, that we may eat.\nBut he that was healed knew not who it was; for Jesus had conveyed himself away, a multitude being in the place.\nHearken: Behold, the sower went forth to sow:\nTempleton grinned and lay still.\nAnd ye shall be hated of all men for my name’s sake.\nand they prevailed not, neither was their place found any more in heaven.\nmake you perfect in every good thing to do his will, working in us that which is well-pleasing in his sight, through Jesus Christ; to whom be the glory for ever and ever. Amen.\nI am come a light into the world, that whosoever believeth on me may not abide in the darkness.\nAnd Jesus perceiving it saith unto them, Why reason ye, because ye have no bread? do ye not yet perceive, neither understand? have ye your heart hardened?\nAnd on the morrow, when they were come out from Bethany, he hungered.\nMy recollection is that after a long stretch of camping in the woods with soldiers, I had enjoyed about all the male companionship I could stand and began wishing for the company of women.\nComplicated.\nBut he turned, and rebuked them.\nThis is he of whom it is written, Behold, I send my messenger before thy face, Who shall prepare thy way before thee.\nLook! Look! Beaver was saying\nAnd the angel said unto him, Gird thyself, and bind on thy sandals. And he did so. And he saith unto him, Cast thy garment about thee, and follow me.\nthe elder women as mothers; the younger as sisters, in all purity.\nWilbur hung his head.\nin pureness, in knowledge, in longsuffering, in kindness, in the Holy Spirit, in love unfeigned,\nAnd in Washington City that did not amount to anything.\nAnd he said unto him, If they hear not Moses and the prophets, neither will they be persuaded, if one rise from the dead. \nWhere is the wise? where is the scribe? where is the disputer of this world? hath not God made foolish the wisdom of the world?\nAll these sounds made him feel comfortable and happy,  for he loved life and loved to be a part of the world on a summer evening.\nYou are just as big as me\nJesus answered and said unto her, Every one that drinketh of this water shall thirst again:\nThe colonel took the time to look at his plate and thumb it, sloshing, to the far side of the table.\nOnce again the boy said to the tree, Look at you!\nJesus saith unto them, Bring of the fish which ye have now taken.\nPlants need nutrients to grow.\nLet the husband render unto the wife her due: and likewise also the wife unto the husband.\nIt doesn’t seem normal.\nShe went back into the house and put on her dress that looked like a watermelon and the hat that matched.\nHe that was dead came forth, bound hand and foot with grave-clothes; and his face was bound about with a napkin. Jesus saith unto them, Loose him, and let him go.\nMary therefore took a pound of ointment of pure nard, very precious, and anointed the feet of Jesus, and wiped his feet with her hair: and the house was filled with the odor of the ointment.\nIt would be as a free agent or nothing at all.\nIn that day ye shall ask in my name: and I say not unto you, that I will pray the Father for you;\nwho by the power of God are guarded through faith unto a salvation ready to be revealed in the last time.\nSometimes, on these journeys, Wilbur would get tired, and Fern would pick him up and put him in the carriage alongside the doll.\nAnd when she had said this, she went away, and called Mary her sister secretly, saying, The Teacher is here, and calleth thee.\nI know thy works, that thou art neither cold nor hot: I would thou wert cold or hot.\nLong ago the Cherokee people lived in peace and harmony in the mountain forests.  \nHe might start thinking about crisp, crunchy bacon and tasty ham.\nWe were camped beside a strong-running creek filled with mossy boulders.\nAnd when he was minded to pass over into Achaia, the brethren encouraged him, and wrote to the disciples to receive him: and when he was come, he helped them much that had believed through grace;\nPacking crates stood in stacks in the emptied rooms, their walls bare of paintings.\nNeither can they prove to thee the things whereof they now accuse me.\n“He’s all right,” cried Mr. Zuckerman.\nAnd under no circumstances would he consent to my outrageous claims for reimbursement of expenses.\nAnd he sent away the multitudes, and entered into the boat, and came into the borders of Magadan. \n“Does she look well?” asked the doctor.\nBring forth therefore fruit worthy of repentance:\nAfter a while, Littlefish found himself in a pool of water where he saw a strange looking fish with many bumps on his head.\nCharley rose from under the rhododendron and twisted the water out of his blanket and set out again downhill through the foggy dripping woods.\nI took men of influence out for suppers and drinks, but I could not offer any more in the way of inducement.\nFor while we were yet weak, in due season Christ died for the ungodly.\nwho being past feeling gave themselves up to lasciviousness, to work all uncleanness with greediness.\nFor yourselves, brethren, know our entering in unto you, that it hath not been found vain:\nto the praise of the glory of his grace, which he freely bestowed on us in the Beloved:\nLook at our shadows on the bottom of the creek.\nAnd as he was now drawing nigh, even at the descent of the mount of Olives, the whole multitude of the disciples began to rejoice and praise God with a loud voice for all the mighty works which they had seen;\nWherefore he saith, Awake, thou that sleepest, and arise from the dead, and Christ shall shine upon thee.\nAngered, the beast writhed in its prison.\nNow unto the King eternal, immortal, invisible, the only God, be honor and glory for ever and ever. Amen.\nJesus saith unto them, My meat is to do the will of him that sent me, and to accomplish his work.\nAnd I heard the number of them that were sealed, a hundred and forty and four thousand, sealed out of every tribe of the children of Israel:\nFear them not therefore: for there is nothing covered, that shall not be revealed; and hid, that shall not be known.\nJesus therefore lifting up his eyes, and seeing that a great multitude cometh unto him, saith unto Philip, Whence are we to buy bread, that these may eat?\nBehooved it not the Christ to suffer these things, and to enter into his glory?\nAnd the servant came, and told his lord these things. Then the master of the house being angry said to his servant, Go out quickly into the streets and lanes of the city, and bring in hither the poor and maimed and blind and lame.\nShe had a sharp finger as long as a dagger and shaped like an awl.\nand ye have regard to him that weareth the fine clothing, and say, Sit thou here in a good place; and ye say to the poor man, Stand thou there, or sit under my footstool;\nSo then, brethren, we are debtors, not to the flesh, to live after the flesh:\nCharlotte had written the word RADIANT, and Wilbur really looked radiant as he stood in the golden sunlight.\nAnd also, stunningly, that Mrs. Chapman was twenty-two.\nAnd he answereth them and saith, O faithless generation, how long shall I be with you? how long shall I bear with you? bring him unto me.\nMy brethren, hold not the faith of our Lord Jesus Christ, the Lord of glory, with respect of persons.\nAnd all that dwelt at Lydda and in Sharon saw him, and they turned to the Lord.\nShe looked rather swollen and she seemed listless.\nNo argument had helped the Nation.\nI speak as to wise men; judge ye what I say.\nIt was a small town.\nbut he that denieth me in the presence of men shall be denied in the presence of the angels of God.\nThe next afternoon we made camp in the rain.\nand his garments became glistering, exceeding white, so as no fuller on earth can whiten them.\nWhen Charlotte's web said TERRIFIC, Wilbur had tried to look terrific. And now that the web said RADIANT, he did everything possible to make himself glow.\nGreat is my boldness of speech toward you, great is my glorying on your behalf: I am filled with comfort, I overflow with joy in all our affliction.\nfor this cause, brethren, we were comforted over you in all our distress and affliction through your faith:\nI said, No, Mr. Cass. I have plenty of time right now.\nAnd whenever the cat was given a fish-head to eat, the barn would smell of fish.\nBut Sequoyah learned a different lesson.\nAnd when Jesus saw that a multitude came running together, he rebuked the unclean spirit, saying unto him, Thou dumb and deaf spirit, I command thee, come out of him, and enter no more into him.\nBut this thou hast, that thou hatest the works of the Nicolaitans, which I also hate.\nAnd inside the big house, white tablecloths and silver and china in the dining room.\nAnd the voice of harpers and minstrels and flute-players and trumpeters shall be heard no more at all in thee; and no craftsman, of whatsoever craft, shall be found any more at all in thee; and the voice of a mill shall be heard no more at all in thee;\nHowever, a web gets torn every day by the insects that kick around in it, and a spider must rebuild it when it gets full of holes.\nor if he shall ask for a fish, will give him a serpent?\nand wheresoever it taketh him, it dasheth him down: and he foameth, and grindeth his teeth, and pineth away: and I spake to thy disciples that they should cast it out; and they were not able.\nThe driver began whistling “The Girl I Left Behind Me.” They turned the bend in the road, and all I had left to look at were the parallel tracks in the mud leading off into a future that had sideswiped us all.\nAnd when they were come out of the boat, straightway the people knew him,\nThey even took time from their journey to visit the Old Possum at his Hermitage, which, when I heard about the visit, struck me as being not entirely required by the etiquette of the situation.\nIf ye know these things, blessed are ye if ye do them.\nThere is a large spider’s web in the doorway of the barn cellar, right over the pigpen, and when Lurvy went to feed the pig this morning, he noticed the web because it was foggy, and you know how a spider's web looks very distinct in a fog.\n“I don’t want to die!” screamed Wilbur, throwing himself to the ground.\nAnd in 1824, they gave Sequoyah a silver medal.\nAs Littlefish swam on, he heard a distant voice coming from behind him out of the opening beside the large rock.\nJames, a servant of God and of the Lord Jesus Christ, to the twelve tribes which are of the Dispersion, greeting.\nBut I told him that he had not the least worry that any of Charley’s people would make trouble, and besides, I’d about rather have Lowan or George cut my throat in mid-dream than sit awake in the long hours between midnight and dawn.\nFor I do not wish to see you now by the way; for I hope to tarry a while with you, if the Lord permit.\nThis is the great and first commandment.\nNay, but ye yourselves do wrong, and defraud, and that your brethren.\nThen saith Jesus unto him, Put up again thy sword into its place: for all they that take the sword shall perish with the sword.\nAnd they smote his head with a reed, and spat upon him, and bowing their knees worshipped him.\nBecause Christ also suffered for sins once, the righteous for the unrighteous, that he might bring us to God; being put to death in the flesh, but made alive in the spirit;\nThen they were gone, and he rose and fled upward.\nAnd they went away and told it unto the rest: neither believed they them.\n“Next, I wrap him up.”\nActually, it’s a silly expression, and I am surprised that I used it at all.\nAnd the serjeants reported these words unto the magistrates: and they feared when they heard that they were Romans;\n“What does it say?” asked Charlotte.\nWhat's wrong little tree? the boy asked.\nBlessed are those servants, whom the lord when he cometh shall find watching: verily I say unto you, that he shall gird himself, and make them sit down to meat, and shall come and serve them.\n“I beg everyone’s pardon,” whispered Wilbur.\nWhen therefore the chief priests and the officers saw him, they cried out, saying, Crucify him, crucify him! Pilate saith unto them, Take him yourselves, and crucify him: for I find no crime in him.\nWhen Mr. Zuckerman got back to the house, he took off his work clothes and put on his best suit.\nand let us consider one another to provoke unto love and good works;\nBut Paul cried with a loud voice, saying, Do thyself no harm: for we are all here.\nAt least sometimes that’s the way I think it was, he said.\nAnd he led him up, and showed him all the kingdoms of the world in a moment of time.\nfor by grace have ye been saved through faith; and that not of yourselves, it is the gift of God;\nAnd the report of him went forth into all Syria: and they brought unto him all that were sick, holden with divers diseases and torments, possessed with demons, and epileptic, and palsied; and he healed them.\nAnd the beast which I saw was like unto a leopard, and his feet were as the feet of a bear, and his mouth as the mouth of a lion: and the dragon gave him his power, and his throne, and great authority.\nIt was cold and rainy, and after I had walked for a bit, it started it snowing.\n“Charlotte has another cousin who is a balloonist.\nAnd to the angel of the church in Thyatira write: These things saith the Son of God, who hath his eyes like a flame of fire, and his feet are like unto burnished brass:\nAnd his ears were opened, and the bond of his tongue was loosed, and he spake plain.\nbut I say unto you, Love your enemies, and pray for them that persecute you;\nAnd they, when they heard it, glorified God; and they said unto him, Thou seest, brother, how many thousands there are among the Jews of them that have believed; and they are all zealous for the law:\nBut now we have been discharged from the law, having died to that wherein we were held; so that we serve in newness of the spirit, and not in oldness of the letter.\nHow are you?\nFern had a crown of daisies in her hair.\nDid I take advantage of you by any one of them whom I have sent unto you?\nServants, obey in all things them that are your masters according to the flesh; not with eye-service, as men-pleasers, but in singleness of heart, fearing the Lord:\nIX. Wilbur’s Boast \nEnter ye in by the narrow gate: for wide is the gate, and broad is the way, that leadeth to destruction, and many are they that enter in thereby.\nFor not unto angels did he subject the world to come, whereof we speak.\nAnd when they had sung a hymn, they went out into the mount of Olives.\n“An hour of freedom is worth a barrel of slops.”\nNobody noticed it in the darkness.\nand when the blood of Stephen thy witness was shed, I also was standing by, and consenting, and keeping the garments of them that slew him.\nMinus my day of travel from Valley River.\nEducation, child-rearing, government, literature, journalism, cuisine.\nTherefore my heart was glad, and my tongue rejoiced; Moreover my flesh also shall dwell in hope:\nBut there was nothing unique about that.\nand salute the church that is in their house. Salute Epænetus my beloved, who is the firstfruits of Asia unto Christ.\nThis people honoreth me with their lips; But their heart is far from me.\nbut God, being rich in mercy, for his great love wherewith he loved us,\nThe sun beat down on everything.\nFor unto every one that hath shall be given, and he shall have abundance: but from him that hath not, even that which he hath shall be taken away.\nShe saw him from the kitchen window, and she immediately shouted for the men.\nand Jesus also was bidden, and his disciples, to the marriage.\nThe people stopped jeering when two warriors wrote to each other.\nand he made a scourge of cords, and cast all out of the temple, both the sheep and the oxen; and he poured out the changers’ money, and overthrew their tables;\nWhen therefore I have accomplished this, and have sealed to them this fruit, I will go on by you unto Spain.\nJesus saith unto her, Said I not unto thee, that, if thou believedst, thou shouldest see the glory of God?\nthat I may come unto you in joy through the will of God, and together with you find rest.\nAfter this Jesus, knowing that all things are now finished, that the scripture might be accomplished, saith, I thirst.\nLet a man so account of us, as of ministers of Christ, and stewards of the mysteries of God.\nAt the supper table one evening, the tall and thirtyish wife of a somewhat younger little indigo factor listened to my very brief and reluctant accounting of my life and then said, Imagine that.\nDon't swim there Littlefish!\nbut I say unto you, that Elijah is come already, and they knew him not, but did unto him whatsoever they would. Even so shall the Son of man also suffer of them.\nThe doll would close her eyes, too, and Fern would wheel the carriage very slowly and smoothly so as not to wake her infants.\nEquipage for living out in the high mountains for some time to come.\nAnd he said, Of a truth I say unto you, This poor widow cast in more than they all:\nWhosoever shall receive one of such little children in my name, receiveth me: and whosoever receiveth me, receiveth not me, but him that sent me.\nThere were about a dozen of them, men, women, and children—three generations of Charley’s family.\nAsmeret says earthworms eat dead things and then leave droppings in the soil.\nAnd he himself was in the stern, asleep on the cushion: and they awake him, and say unto him, Teacher, carest thou not that we perish?\nNo man, when he hath lighted a lamp, putteth it in a cellar, neither under the bushel, but on the stand, that they which enter in may see the light.\nThe geese cheered.\nIf ye shall ask anything in my name, that will I do.\nwho, when he was come, and had seen the grace of God, was glad; and he exhorted them all, that with purpose of heart they would cleave unto the Lord:\nOn that day went Jesus out of the house, and sat by the sea side.\nBut as touching Apollos the brother, I besought him much to come unto you with the brethren: and it was not at all his will to come now; but he will come when he shall have opportunity.\nAnd when he had looked round about on them with anger, being grieved at the hardening of their heart, he saith unto the man, Stretch forth thy hand. And he stretched it forth; and his hand was restored.\nand not only so, but we also rejoice in God through our Lord Jesus Christ, through whom we have now received the reconciliation.\nThe entire direction of the new world, though, was against peace.\nFor God is my witness, how I long after you all in the tender mercies of Christ Jesus.\nPhilip, and Bartholomew; Thomas, and Matthew the publican; James the son of Alphæus, and Thaddæus;\nAnd straightway there was in their synagogue a man with an unclean spirit; and he cried out,\nThe next morning, the boy went to check on his friend.\nI had a pannier full of my own stores, not caring much for army victuals.\nI was walking calmly; it was snowing a lot.\nbecause it goeth not into his heart, but into his belly, and goeth out into the draught? This he said, making all meats clean.\n“He isn’t as big as that pig next door,” remarked one bystander, “but he's cleaner.\nAnd he said, Into what then were ye baptized? And they said, Into John’s baptism.\nAnd he took him by the right hand, and raised him up: and immediately his feet and his ankle-bones received strength.\nHe turned his chair my way and sat leaned forward, holding his whiskey glass two-handed between his knees.\nThe boy said, We caught the others some time ago.\nShe cannot accompany us home, because of her condition. Therefore, it is absolutely necessary that I take her egg sac with me.\nPerhaps your web is a good thing after all.”\nconscience, I say, not thine own, but the other’s; for why is my liberty judged by another conscience?\nFor if I should desire to glory, I shall not be foolish; for I shall speak the truth: but I forbear, lest any man should account of me above that which he seeth me to be, or heareth from me.\nFor they that say such things make it manifest that they are seeking after a country of their own.\nAnd when Herod had sought for him, and found him not, he examined the guards, and commanded that they should be put to death. And he went down from Judæa to Cæsarea, and tarried there.\nalways bearing about in the body the dying of Jesus, that the life also of Jesus may be manifested in our body.\nfrom whom thou wilt be able, by examining him thyself, to take knowledge of all these things whereof we accuse him.\nGrace to you and peace from God our Father and the Lord Jesus Christ.\nI have confidence to you-ward in the Lord, that ye will be none otherwise minded: but he that troubleth you shall bear his judgment, whosoever he be.\nI have to stay right here, I’m no flibberty-ibberty-gibbet.\nHe put his head down, shut his eyes, and pushed.\nBy faith he became a sojourner in the land of promise, as in a land not his own, dwelling in tents, with Isaac and Jacob, the heirs with him of the same promise:\nWhat will ye? shall I come unto you with a rod, or in love and a spirit of gentleness?\nTheir grimacing mouths shone full of long yellow teeth.\nAnd tell Avery to get ready.\nthough I myself might have confidence even in the flesh: if any other man thinketh to have confidence in the flesh, I yet more:\nFor am I now seeking the favor of men, or of God? or am I striving to please men? if I were still pleasing men, I should not be a servant of Christ.\nI say unto you, It shall be more tolerable in that day for Sodom, than for that city.\nForasmuch as many have taken in hand to draw up a narrative concerning those matters which have been fulfilled among us,\nAnd I thank you for your generous sentiments.”\nIn that hour he cured many of diseases and plagues and evil spirits; and on many that were blind he bestowed sight.\nAnd Zacchæus stood, and said unto the Lord, Behold, Lord, the half of my goods I give to the poor; and if I have wrongfully exacted aught of any man, I restore fourfold.\nand the rich, in that he is made low: because as the flower of the grass he shall pass away.\nThe next day was rainy and dark.\nAnd having cried out, and torn him much, he came out: and the boy became as one dead; insomuch that the more part said, He is dead.\nAxe’s wife brought out some chunks of yellow squash and cooked them at the edge of the fire until they softened up.\nbeing justified freely by his grace through the redemption that is in Christ Jesus:\nI found something near the river, said Beaver.\nI was looking downward.\nStop following white ways, don’t break the bones of corn in hideous and violent machines, forswear all metal, wear hides not cloth, be wary of the wheel in all its forms, see the plow as an enemy, dance the old dances.\nAnd as were the days of Noah, so shall be the coming of the Son of man.\n“They don't catch anything.\nAnd after these things I saw, and the temple of the tabernacle of the testimony in heaven was opened:\nThe end of Bear’s thinking was that Charley had made a choice for all of us, and Bear did not agree with that choice and was not bound by it.\nI went alone through that unsettling autumn weather, on foot through rough and ragged country for many days scouring the coves and creek banks until I tracked Lichen’s band to a cave up under the peaks of the highest mountains.\nHe then told about his lost farmstead at the old mound village of Cowee, before one of many disastrous treaties had driven him and his family west to Nantayale.\nIt's very nice to meet you, but I must swim on.\nAnd they went up over the breadth of the earth, and compassed the camp of the saints about, and the beloved city: and fire came down out of heaven, and devoured them.\nBut thou, when thou fastest, anoint thy head, and wash thy face;\nAnd God wrought special miracles by the hands of Paul:\nWhen we heard it the second time, it seemed a little closer.\nAnd when a great multitude came together, and they of every city resorted unto him, he spake by a parable:\nAnd he besought him much that he would not send them away out of the country.\nThe loaded wagons stood lined in a train outside Cranshaw, ready for the journey west.\nWhen he had thus spoken, he spat on the ground, and made clay of the spittle, and anointed his eyes with the clay,\nCharlotte got so interested, she lowered herself on a dragline so she could see better.\nThey feared some child would fall off.\nFor Christ sent me not to baptize, but to preach the gospel: not in wisdom of words, lest the cross of Christ should be made void.\nAnd when even was now come, because it was the Preparation, that is, the day before the sabbath,\nBut when the crowd was put forth, he entered in, and took her by the hand; and the damsel arose.\nBut even if ye should suffer for righteousness’ sake, blessed are ye: and fear not their fear, neither be troubled;\nYe have heard that it was said, Thou shalt love thy neighbor, and hate thine enemy:\n“Certainly not,” he said, looking down at his daughter with love.\nFor this cause therefore did I entreat you to see and to speak with me: for because of the hope of Israel I am bound with this chain.\nTasting sweet and dark like a rendering of the forest.\nThey are sweet and tart at the same time.\nBut if ye bite and devour one another, take heed that ye be not consumed one of another.\nLook at the tall trees, says my father.\nhaving the same conflict which ye saw in me, and now hear to be in me. \nWhen I reached the fort a hard day’s ride later, I found Smith alone in his pale pyramidal tent.\n(Templeton had a habit of picking up unusual objects around the farm and storing them in his home.\nI love blood,” said Charlotte, and her pleasant, thin voice grew even thinner and more pleasant.\nAnd after eight days again his disciples were within, and Thomas with them. Jesus cometh, the doors being shut, and stood in the midst, and said, Peace be unto you.\nAnd all the people of the country of the Gerasenes round about asked him to depart from them; for they were holden with great fear: and he entered into a boat, and returned.\nMr. Zuckerman heard, and he came out of the machine shed where he was mending a tool.\n“Out to the hoghouse,” replied Mrs. Arable.\n“A little tired, perhaps.\naccording as each hath received a gift, ministering it among yourselves, as good stewards of the manifold grace of God;\nShe went and told them that had been with him, as they mourned and wept.\nBut as they sailed he fell asleep: and there came down a storm of wind on the lake; and they were filling with water, and were in jeopardy.\nAnd the servants of the householder came and said unto him, Sir, didst thou not sow good seed in thy field? whence then hath it tares?\n“Why aren’t you on your web?” asked Wilbur.\nand that no man should be able to buy or to sell, save he that hath the mark, even the name of the beast or the number of his name.\nThe colonel waited and watched.\nAnd he spake the saying openly. And Peter took him, and began to rebuke him.\nBy faith Enoch was translated that he should not see death; and he was not found, because God translated him: for he hath had witness borne to him that before his translation he had been well-pleasing unto God:\nYou're spending too much time in that barn —it isn’t good for you to be alone so much.”\nIt’s not like being president. More like mayor.\nHe did not notice that as he swam  on the stream grew larger and faster.\nAnd straightway one of them ran, and took a sponge, and filled it with vinegar, and put it on a reed, and gave him to drink.\nJesus said unto her, I am the resurrection, and the life: he that believeth on me, though he die, yet shall he live;\nNext morning, I watched from up the hill as the fort emptied out in a sad parade.\nHe kept walking toward the pail of slops.\nBut he turning about, and seeing his disciples, rebuked Peter, and saith, Get thee behind me, Satan; for thou mindest not the things of God, but the things of men.\nnot forsaking our own assembling together, as the custom of some is, but exhorting one another; and so much the more, as ye see the day drawing nigh.\nFor by the wine of the wrath of her fornication all the nations are fallen; and the kings of the earth committed fornication with her, and the merchants of the earth waxed rich by the power of her wantonness.\ncovetings, wickednesses, deceit, lasciviousness, an evil eye, railing, pride, foolishness:\nand delivered him out of all his afflictions, and gave him favor and wisdom before Pharaoh king of Egypt; and he made him governor over Egypt and all his house.\nand not holding fast the Head, from whom all the body, being supplied and knit together through the joints and bands, increaseth with the increase of God.\nAnd all that heard it wondered at the things which were spoken unto them by the shepherds.\nThings are at such a state they could fall apart in a moment.\nJesus answered and said unto them, Destroy this temple, and in three days I will raise it up.\nCrockett had the attention of everyone.\nHesitate to get in the cart, and you are lost.\nAnd yet he left not himself without witness, in that he did good and gave you from heaven rains and fruitful seasons, filling your hearts with food and gladness.\nAnd being let go, they came to their own company, and reported all that the chief priests and the elders had said unto them.\nThat was his dinner.\nBe not many of you teachers, my brethren, knowing that we shall receive heavier judgment.\nBe ye therefore imitators of God, as beloved children;\nTempleton grinned.\nTo the saints and faithful brethren in Christ that are at Colossæ: Grace to you and peace from God our Father.\nThe Court, a toothless and ultimately corrupt bunch of old men, backed down.\nJust because it's smaller than the others?”\nand said unto him, Get thee out of thy land, and from thy kindred, and come into the land which I shall show thee.\nShe had left a space in the middle of the web.\nThen he said, If there were an easier way, I’d be willing to entertain offers.\nI will have to try to walk there\nThey cried out therefore again, saying, Not this man, but Barabbas. Now Barabbas was a robber. \nHoned edges flashed in the sun.\nIs not this the carpenter’s son? is not his mother called Mary? and his brethren, James, and Joseph, and Simon, and Judas?\n“I will repeat the message.\nFor the eyes of the Lord are upon the righteous, And his ears unto their supplication: But the face of the Lord is upon them that do evil.\nAnd if thy hand or thy foot causeth thee to stumble, cut it off, and cast it from thee: it is good for thee to enter into life maimed or halt, rather than having two hands or two feet to be cast into the eternal fire.\nInsomuch that we exhorted Titus, that as he had made a beginning before, so he would also complete in you this grace also.\nClaire sat for a long time on the tailboard of the last wagon, leaning forward with her hair covering her face.\nand Azor begat Sadoc; and Sadoc begat Achim; and Achim begat Eliud;\nAnd behold, Jesus met them, saying, All hail. And they came and took hold of his feet, and worshipped him.\nBut he said unto them, I have meat to eat that ye know not.\nAlready are ye filled, already ye are become rich, ye have come to reign without us: yea and I would that ye did reign, that we also might reign with you.\nBe not therefore anxious, saying, What shall we eat? or, What shall we drink? or, Wherewithal shall we be clothed?\nThere had not been a plan to the killings.\nAnd they went every man unto his own house:\ndesiring to be teachers of the law, though they understand neither what they say, nor whereof they confidently affirm.\nfrom which things some having swerved have turned aside unto vain talking;\nMy father Bear’s the real chief.\nBut I exhort you, brethren, bear with the word of exhortation: for I have written unto you in few words.\nAsmeret is always asking questions.\nThen went the captain with the officers, and brought them, but without violence; for they feared the people, lest they should be stoned.\nAnd even now the axe also lieth at the root of the trees: every tree therefore that bringeth not forth good fruit is hewn down, and cast into the fire.\nAnd he went forward a little, and fell on the ground, and prayed that, if it were possible, the hour might pass away from him.\n For winter will be here soon\nI stayed at Cranshaw three days that were like a compression of our two summers back in green youth, except that Featherstone was absent and the place was being taken apart.\nI concluded by showing him the colonel’s letter and translating it for him, explaining in detail its guarantee that we and any innocent fugitives now on our land would be left alone if we caught Charley and his people within a month.\nthe son of Mattathias, the son of Amos, the son of Nahum, the son of Esli, the son of Naggai,\nFor let not that man think that he shall receive anything of the Lord;\nIt's not a bad pitch, on the whole.”\nBecause thou sayest, I am rich, and have gotten riches, and have need of nothing; and knowest not that thou art the wretched one and miserable and poor and blind and naked:\nAnd Jesus answered and said unto them, I also will ask you one question, which if ye tell me, I likewise will tell you by what authority I do these things.\nHe then having received the sop went out straightway: and it was night.\nBut now they are many members, but one body.\nWe chose to examine only portraits that evening.\nAnd one of them, named Cleopas, answering said unto him, Dost thou alone sojourn in Jerusalem and not know the things which are come to pass there in these days?\nBut if all prophesy, and there come in one unbelieving or unlearned, he is reproved by all, he is judged by all;\n“Sleep well at night?”\nfor he loveth our nation, and himself built us our synagogue.\nthou who gloriest in the law, through thy transgression of the law dishonorest thou God?\nLurvy gave Wilbur a forkful of fresh straw.\nFor whosoever shall give you a cup of water to drink, because ye are Christ’s, verily I say unto you, he shall in no wise lose his reward.\n“When are the judges going to decide about Wilbur?” asked Mrs. Zuckerman.\nLet both grow together until the harvest: and in the time of the harvest I will say to the reapers, Gather up first the tares, and bind them in bundles to burn them; but gather the wheat into my barn.\nFor no man doeth anything in secret, and himself seeketh to be known openly. If thou doest these things, manifest thyself to the world.\n“This is really awful,” thought Wilbur.\nWhere the Nation is going, I said. You live on the Nation.\nAll I’m interested in is the killers.\nBeware of the dogs, beware of the evil workers, beware of the concision:\nBut when ye see the abomination of desolation standing where he ought not (let him that readeth understand), then let them that are in Judæa flee unto the mountains:\nHe that loveth his life loseth it; and he that hateth his life in this world shall keep it unto life eternal.\nSwinging her spinnerets into position, she attached her thread and then dropped down.\nOr those eighteen, upon whom the tower in Siloam fell, and killed them, think ye that they were offenders above all the men that dwell in Jerusalem?\nBut the Lord stood by me, and strengthened me; that through me the message might be fully proclaimed, and that all the Gentiles might hear: and I was delivered out of the mouth of the lion.\nAnd it came to pass, as he drew nigh unto Jericho, a certain blind man sat by the way side begging:\nCast not away therefore your boldness, which hath great recompense of reward.\nThe night before his departure, Featherstone built a midnight blaze of his collected works of taxidermy, a nightmare bonfire on the lawn.\nAnd the people saw them going, and many knew them, and they ran together there on foot from all the cities, and outwent them.\n“Hello!” she said.\nCharley had a pattern to eating a squirrel.\nOn Sunday the church was full.\nThe word HUMBLE was woven neatly in the center.\n“But I can’t stand it,” shouted Wilbur.\nBut I had my collar turned up like that, and I was carrying a gun.\nBut that ye may know that the Son of man hath authority on earth to forgive sins (he said unto him that was palsied), I say unto thee, Arise, and take up thy couch, and go unto thy house.\nHe went to the rock face and broke off the end of an icicle and put it in his mouth to melt.\n“Charlotte, what are you talking about?”\nDelicious!\nBut Jesus said unto him, Forbid him not: for he that is not against you is for you.\nAnd they were bringing unto him also their babes, that he should touch them: but when the disciples saw it, they rebuked them.\nAvery put out his hand and the judge shook hands with him, too.\nAnd there appeared unto them Elijah with Moses: and they were talking with Jesus.\nAnd he gave her his hand, and raised her up; and calling the saints and widows, he presented her alive.\nand the rest were killed with the sword of him that sat upon the horse, even the sword which came forth out of his mouth: and all the birds were filled with their flesh. \n“Here, here, here!” said the gander.\nsaying, What think ye of the Christ? whose son is he? They say unto him, The son of David.\nI never throw anything away.”\nAnd they were saying among themselves, Who shall roll us away the stone from the door of the tomb?\nAnd the seventh angel sounded; and there followed great voices in heaven, and they said, The kingdom of the world is become the kingdom of our Lord, and of his Christ: and he shall reign for ever and ever.\nFor the poor ye have always with you; but me ye have not always.\nBut when he heard it, he said, They that are whole have no need of a physician, but they that are sick.\nLet deacons be husbands of one wife, ruling their children and their own houses well.\nFear not, little flock; for it is your Father’s good pleasure to give you the kingdom.\nWoe unto you, scribes and Pharisees, hypocrites! for ye compass sea and land to make one proselyte; and when he is become so, ye make him twofold more a son of hell than yourselves.\nAnd when they asked him to abide a longer time, he consented not;\n“He has a perfect right to smell, considering his surroundings.\nSell that which ye have, and give alms; make for yourselves purses which wax not old, a treasure in the heavens that faileth not, where no thief draweth near, neither moth destroyeth.\nAnd when they were come, and had gathered the church together, they rehearsed all things that God had done with them, and that he had opened a door of faith unto the Gentiles.\nAnd Jesus rebuked him; and the demon went out of him: and the boy was cured from that hour.\nStay with me.\nBut as then he that was born after the flesh persecuted him that was born after the Spirit, so also it is now.\nIts body was grey with a black stripe underneath.\nThe rat entered the barn the way he always did — creeping along close to the wall.\nNow these things happened unto them by way of example; and they were written for our admonition, upon whom the ends of the ages are come.\nThe rabble that followed the soldiers to loot the farmsteads stood off at the edge of woods and waited.\nAt some point in their flight, Charley stood drawing breath, watching old Nancy and the nursing mothers and the little children and the younger men struggle up ahead of him toward the ridgetop.\nAnd Jesus seeing him said, How hardly shall they that have riches enter into the kingdom of God!\nand the father of circumcision to them who not only are of the circumcision, but who also walk in the steps of that faith of our father Abraham which he had in uncircumcision.\nThis glass bottle will not become soil for thousands of years.\n“Tuck your shirt in, Avery!” cried Mrs. Zuckerman.\nThe eggs are inside and will be warm and dry.”\n“Please, please, tell me where you are.\nAnd he commanded the multitudes to sit down on the grass; and he took the five loaves, and the two fishes, and looking up to heaven, he blessed, and brake and gave the loaves to the disciples, and the disciples to the multitudes.\nThen they stared at Charlotte.\nBut grow in the grace and knowledge of our Lord and Saviour Jesus Christ. To him be the glory both now and for ever. Amen.\nAnd the Lord said, Who then is the faithful and wise steward, whom his lord shall set over his household, to give them their portion of food in due season?\nTo watch his woods ﬁll up with snow.\nyet now hath he reconciled in the body of his flesh through death, to present you holy and without blemish and unreproveable before him:\nAnd after the two days he went forth from thence into Galilee.\nAnd Jesus went out thence, and withdrew into the parts of Tyre and Sidon.\nThe children answered their cheer, and away went everybody to the Fair.\nAnd leaping up, he stood, and began to walk; and he entered with them into the temple, walking, and leaping, and praising God.\nAnd there cometh one of the rulers of the synagogue, Jairus by name; and seeing him, he falleth at his feet,\nWhen they are saying, Peace and safety, then sudden destruction cometh upon them, as travail upon a woman with child; and they shall in no wise escape.\n“Good night, Charlotte!”\nfor of a truth in this city against thy holy Servant Jesus, whom thou didst anoint, both Herod and Pontius Pilate, with the Gentiles and the peoples of Israel, were gathered together,\nAnd grieve not the Holy Spirit of God, in whom ye were sealed unto the day of redemption.\nThey climbed the fence into the lane and walked lazily toward the pigpen.\nShe is very excited.\n“I’m right here.”\nand by you to pass into Macedonia, and again from Macedonia to come unto you, and of you to be set forward on my journey unto Judæa.\nAnd when he had agreed with the laborers for a shilling a day, he sent them into his vineyard.\nAnd when the chief priests and the Pharisees heard his parables, they perceived that he spake of them.\nYe are witnesses, and God also, how holily and righteously and unblamably we behaved ourselves toward you that believe:\nFor the time past may suffice to have wrought the desire of the Gentiles, and to have walked in lasciviousness, lusts, winebibbings, revellings, carousings, and abominable idolatries:\n“Stand by for an announcement!”\nAnd he taught them many things in parables, and said unto them in his teaching,\nWilbur was pleased to receive so much attention.\nWasseton began to object that he was not a child and should go with the men.\nAnd a vision appeared to Paul in the night: There was a man of Macedonia standing, beseeching him, and saying, Come over into Macedonia, and help us.\nShe says lots of things go into the soil.\nand they blasphemed the God of heaven because of their pains and their sores; and they repented not of their works.\nand whatsoever we ask we receive of him, because we keep his commandments and do the things that are pleasing in his sight.\nSo then both he that giveth his own virgin daughter in marriage doeth well; and he that giveth her not in marriage shall do better.\nBut he that doeth the truth cometh to the light, that his works may be made manifest, that they have been wrought in God.\nMr. Arable gave Fern two quarters and two dimes.\nGrammar and vocabulary as a weapon.\nThen came the disciples to Jesus apart, and said, Why could not we cast it out?\nAnd so he scorned my proposition.\nWilbur did not budge.\nWe want Zuckerman to think Wilbur is nicely filled out, not all shrunk up.\nIt would appear obvious from the nature of the ground, that the most effectual mode of reducing Indians would be by compelling them to come in by the pressure of want and privation.\nNow I beseech you, brethren (ye know the house of Stephanas, that it is the firstfruits of Achaia, and that they have set themselves to minister unto the saints),\nAnd early in the morning he came again into the temple, and all the people came unto him; and he sat down, and taught them.\nHe was a brave man because he never gave up.\nFor which cause I put thee in remembrance that thou stir up the gift of God, which is in thee through the laying on of my hands.\nAnd Mary Magdalene was there, and the other Mary, sitting over against the sepulchre.\nEverywhere is loot for a rat—in tents, in booths, in hay lofts —  why, a fair has enough disgusting leftover food to satisfy a whole army of rats.”\nAnd Jesus, being moved with compassion, touched their eyes; and straightway they received their sight, and followed him. \nAnd all went to enrol themselves, every one to his own city.\n“Did you say a board was loose?”\nNow it came to pass in those days, there went out a decree from Cæsar Augustus, that all the world should be enrolled.\nAnd I’m just the chief when it comes to business and law.\nbut I see a different law in my members, warring against the law of my mind, and bringing me into captivity under the law of sin which is in my members.\nThere came a man, sent from God, whose name was John.\nBut if any widow hath children or grandchildren, let them learn first to show piety towards their own family, and to requite their parents: for this is acceptable in the sight of God.\nwhereunto I labor also, striving according to his working, which worketh in me mightily. \nBut thanks be unto God, who always leadeth us in triumph in Christ, and maketh manifest through us the savor of his knowledge in every place.\nNow and again, they were. They were once a fierce people, but they’re long since worn down from losing.\nBut in vain do they worship me, Teaching as their doctrines the precepts of men.\nHe picked up the coffee cup and rotated the contents and set it back down. The scribe used the pause to correct an error in his transcription near the top of the page.\nNow before the feast of the passover, Jesus knowing that his hour was come that he should depart out of this world unto the Father, having loved his own that were in the world, he loved them unto the end.\nIt was my Lancelot moment.\nHe popped the reins on the mules’ backs, and they pulled.\nThe voice of one crying in the wilderness, Make ye ready the way of the Lord, Make his paths straight;\nSo he pushed the straw to one side and stretched out in the manure.\nBy doing so, even a blind man would strike the river eventually.\nBut thanks be to God, that, whereas ye were servants of sin, ye became obedient from the heart to that form of teaching whereunto ye were delivered;\nAnd there was always hay being pitched down to the cows and the horses and the sheep.\nI spent a night in a town where the wild hogs came down onto exposed mudflats at low tide and ate little pale crabs, crunching them like chitlins.\nWhat shall we say then? Is there unrighteousness with God? God forbid.\nAnd he deceiveth them that dwell on the earth by reason of the signs which it was given him to do in the sight of the beast; saying to them that dwell on the earth, that they should make an image to the beast who hath the stroke of the sword and lived.\nAnd he saith unto him, I will come and heal him.\nFor we preach not ourselves, but Christ Jesus as Lord, and ourselves as your servants for Jesus’ sake.\nAnd the barbarians showed us no common kindness: for they kindled a fire, and received us all, because of the present rain, and because of the cold.\nAnd they all ate, and were filled: and they took up that which remained over of the broken pieces, seven baskets full.\nOf course, I don’t really eat them. I drink them—drink their blood.\n“What do you think I am, a messenger boy? grumbled the rat.\nThen began he to upbraid the cities wherein most of his mighty works were done, because they repented not.\nArt thou greater than our father Abraham, who died? and the prophets died: whom makest thou thyself?\nAnd Mary said, My soul doth magnify the Lord,\nHe only went to his bed when daylight began rising, and then at midday he arose all red-nosed and puffy and ate a vast dinner of beef and began conspiring.\nwhich he made to abound toward us in all wisdom and prudence,\nAnd out of his mouth proceedeth a sharp sword, that with it he should smite the nations: and he shall rule them with a rod of iron: and he treadeth the winepress of the fierceness of the wrath of God, the Almighty.\n“Are you out there, Templeton?” called Wilbur.\nFor I received of the Lord that which also I delivered unto you, that the Lord Jesus in the night in which he was betrayed took bread;\nand if I send them away fasting to their home, they will faint on the way; and some of them are come from far.\nNow it came to pass on a sabbath, that he was going through the grainfields; and his disciples plucked the ears, and did eat, rubbing them in their hands.\nAsmeret is a soil scientist.\n“He’s filthy behind the ears,” said Mrs. Zuckerman.\nAnd they remembered his words,\nnight and day praying exceedingly that we may see your face, and may perfect that which is lacking in your faith?\n“You can indeed,” said the spiders.\nBut Peter and the apostles answered and said, We must obey God rather than men.\nAnd he was casting out a demon that was dumb. And it came to pass, when the demon was gone out, the dumb man spake; and the multitudes marvelled.\n“When I’m hanging head—down at the top of my web.\nHe noted how clearly it showed up and he noted how big and carefully built it was. And then he took another look and he saw something that made him set his pail down.\nAnd embarking in a ship of Adramyttium, which was about to sail unto the places on the coast of Asia, we put to sea, Aristarchus, a Macedonian of Thessalonica, being with us.\nIt was the best place to be, thought Wilbur, this warm delicious cellar, with the garrulous geese, the changing seasons, the heat of the sun, the passage of swallows, the nearness of rats, the sameness of sheep, the love of spiders, the smell of manure, and the glory of everything.\nAnd straightway the king sent forth a soldier of his guard, and commanded to bring his head: and he went and beheaded him in the prison,\nThe other made little jerky emphatic gestures with just his fisted right hand and kept his left in his coat pocket.\nThis is our moment for setting forth.\nAnd it became known to all the dwellers at Jerusalem; insomuch that in their language that field was called Akeldama, that is, The field of blood.)\nand having a great priest over the house of God;\nWhen someone was sick, the people in the neighboring area would come and sit up with the sick.\nBut … she could not ride her bicycle, and after a while she was too hot in the suit.\nfor through him we both have our access in one Spirit unto the Father.\nHe may want to bring a photographer.\nand they were carried over unto Shechem, and laid in the tomb that Abraham bought for a price in silver of the sons of Hamor in Shechem.\nAnd Jesus answering spake unto the lawyers and Pharisees, saying, Is it lawful to heal on the sabbath, or not?\nAnd he kneeled down, and cried with a loud voice, Lord, lay not this sin to their charge. And when he had said this, he fell asleep.\nThey rooted with their flanged snouts and long tusks for something in the ground that they savored, some grub or minuscule rodent.\nbecause that by reason of him many of the Jews went away, and believed on Jesus.\nFor this ointment might have been sold for above three hundred shillings, and given to the poor. And they murmured against her.\nGrace to you and peace from God our Father and the Lord Jesus Christ.\nWhy do ye not understand my speech? Even because ye cannot hear my word.\nwho bare witness of the word of God, and of the testimony of Jesus Christ, even of all things that he saw.\nBut ye did not so learn Christ;\nRejoice, and be exceeding glad: for great is your reward in heaven: for so persecuted they the prophets that were before you.\nand certain women who had been healed of evil spirits and infirmities: Mary that was called Magdalene, from whom seven demons had gone out,\nwhile thou stretchest forth thy hand to heal; and that signs and wonders may be done through the name of thy holy Servant Jesus.\nI rejoice that in everything I am of good courage concerning you. \nAnd when many days were fulfilled, the Jews took counsel together to kill him:\nAnd behold, they brought to him a man sick of the palsy, lying on a bed: and Jesus seeing their faith said unto the sick of the palsy, Son, be of good cheer; thy sins are forgiven.\nAvery was ten.\nAnd Jesus advanced in wisdom and stature, and in favor with God and men. \nand said, For this cause shall a man leave his father and mother, and shall cleave to his wife; and the two shall become one flesh?\n“Now isn’t that just the word for Wilbur!”\nJackson had long since announced his intention to remove all Indians to the West.\nBoth of us eyed the little special doughballs filled with meat, the dense rum cakes and dark mincemeats.\nWilbur walked up to the fence and saw that the goose was right—one board was loose.\nHenceforth let no man trouble me; for I bear branded on my body the marks of Jesus.\nAnd she shall bring forth a son; and thou shalt call his name JESUS; for it is he that shall save his people from their sins.\nCharlotte is fierce, brutal, scheming, bloodthirsty—every - thing I don't like.\nIt was a shotgun, but I was still scared.\nI was scared, but when you’re dating someone…\nAnd the devil said unto him, If thou art the Son of God, command this stone that it become bread.\nAnd when the Pharisees saw it, they said unto his disciples, Why eateth your Teacher with the publicans and sinners?\nAvery kissed Wilbur.\nAnd while they still disbelieved for joy, and wondered, he said unto them, Have ye here anything to eat?\nBut they, when they heard this, were cut to the heart, and were minded to slay them.\nwherefore also there sprang of one, and him as good as dead, so many as the stars of heaven in multitude, and as the sand, which is by the sea-shore, innumerable.\nI think I’m languishing, to tell you the truth.”\nIt was in the soft palm of her hand.  At last the hunters could destroy the evil witch.  \nAnd I saw another angel ascend from the sunrising, having the seal of the living God: and he cried with a great voice to the four angels to whom it was given to hurt the earth and the sea,\nAnd some began to spit on him, and to cover his face, and to buffet him, and to say unto him, Prophesy: and the officers received him with blows of their hands.\nBlessed is that servant, whom his lord when he cometh shall find so doing.\nI will very likely know what it is, said Wolf. I will go too.\nNow the feast of unleavened bread drew nigh, which is called the Passover.\nThe night is far spent, and the day is at hand: let us therefore cast off the works of darkness, and let us put on the armor of light.\nFor before these days rose up Theudas, giving himself out to be somebody; to whom a number of men, about four hundred, joined themselves: who was slain; and all, as many as obeyed him, were dispersed, and came to nought.\nFrom up the hill at the trading post, looking down across the river, there was a dream geometry to the place.\nAnd it is a shame they didn’t, for they would have put Burr and Hamilton in the shade as a piece of history.\nWoe unto you lawyers! for ye took away the key of knowledge: ye entered not in yourselves, and them that were entering in ye hindered.\nThe good man out of the good treasure of his heart bringeth forth that which is good; and the evil man out of the evil treasure bringeth forth that which is evil: for out of the abundance of the heart his mouth speaketh.\nClaire was gone.\nAnd behold, an angel of the Lord stood by him, and a light shined in the cell: and he smote Peter on the side, and awoke him, saying, Rise up quickly. And his chains fell off from his hands.\nAnd it came to pass, when Elisabeth heard the salutation of Mary, the babe leaped in her womb; and Elisabeth was filled with the Holy Spirit;\n“Now run along!” he said.\nTheir tongues turned from purple to red.\nThere is evidence of soil being made right now.\nAll these things spake Jesus in parables unto the multitudes; and without a parable spake he nothing unto them:\nFor it is written, I will destroy the wisdom of the wise, And the discernment of the discerning will I bring to nought.\nAnd he answering saith unto him, Lord, let it alone this year also, till I shall dig about it, and dung it:\nBut when the Jews spake against it, I was constrained to appeal unto Cæsar; not that I had aught whereof to accuse my nation.\nThe boy did not do it immediately but waited until he finished eating his dinner.\nI thought then that if she would look up and say one more word, I would turn my back on the life and the place I had made, on the people who had taken me in as an exiled bound boy when no one else in the world wanted me, and I would follow her anywhere.\nAnd when he had thus spoken, he dismissed the assembly. \nHere, in a small clearing hidden by young alders and wild raspberry bushes, was an astonishing pile of old bottles and empty tin cans and dirty rags and bits of metal and broken bottles and broken hinges and broken springs and dead batteries and last month’s magazines and old discarded dishmops and tattered overalls and rusty spikes and leaky pails and forgotten stoppers and useless junk of all kinds, including a wrong-size crank for a broken ice-cream freezer.\nThe country is no better than a jungle of unpracticable mountains cut through with narrow coves and deep gorges, being generally precipitous cliffs falling directly to unnavigable rocky rivers.\nWhich is easier, to say to the sick of the palsy, Thy sins are forgiven; or to say, Arise, and take up thy bed, and walk?\nPlease climb up!”\nAt the bottom, she attached the thread.\nSo when they had broken their fast, Jesus saith to Simon Peter, Simon, son of John, lovest thou me more than these? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Feed my lambs.\nwith good will doing service, as unto the Lord, and not unto men:\nFor the wisdom of this world is foolishness with God. For it is written, He that taketh the wise in their craftiness:\nAnd the fame hereof went forth into all that land.\nAnd cast ye out the unprofitable servant into the outer darkness: there shall be the weeping and the gnashing of teeth.\nIf thou put the brethren in mind of these things, thou shalt be a good minister of Christ Jesus, nourished in the words of the faith, and of the good doctrine which thou hast followed until now:\nBut the thought kept weighing on him that a bear would be awfully good eating about now.\nShe touched my face and said, I want to remember how you look, at least for a while.\nIt’s time I made an egg sac and filled it with eggs.”\nthese therefore came to Philip, who was of Bethsaida of Galilee, and asked him, saying, Sir, we would see Jesus.\nFor it is impossible that the blood of bulls and goats should take away sins.\nYe are the sons of the prophets, and of the covenant which God made with your fathers, saying unto Abraham, And in thy seed shall all the families of the earth be blessed.\n“Is that true?” asked Wilbur.\nIt made a bouncing motion with its front end.\nMy cousin wrapped it up so tight it couldn’t budge.”\nBut he would pass along a trick he had learned, which was this: you couldn’t go far wrong if you pronounced every single word of the language as if it were a child’s euphemism for the private parts.\nThen she stopped and insisted on feeding her chickens before she was taken away.\nThe Spirit of the Lord is upon me, Because he anointed me to preach good tidings to the poor: He hath sent me to proclaim release to the captives, And recovering of sight to the blind, To set at liberty them that are bruised,\nand then shall appear the sign of the Son of man in heaven: and then shall all the tribes of the earth mourn, and they shall see the Son of man coming on the clouds of heaven with power and great glory.\nBrethren and fathers, hear ye the defence which I now make unto you.\nand again, The Lord knoweth the reasonings of the wise, that they are vain.\nof righteousness, because I go to the Father, and ye behold me no more;\nFor he shall be great in the sight of the Lord, and he shall drink no wine nor strong drink; and he shall be filled with the Holy Spirit, even from his mother’s womb.\nbut when the fulness of the time came, God sent forth his Son, born of a woman, born under the law,\nBehold, the ships also, though they are so great and are driven by rough winds, are yet turned about by a very small rudder, whither the impulse of the steersman willeth.\nHe felt the pleasant rubbing of the stick along his itchy back.\nThe message I wrote in my web, praising Wilbur, has been received.\nEven at midnight there is usually something stirring.\nThomas saith unto him, Lord, we know not whither thou goest; how know we the way?\nfor your fellowship in furtherance of the gospel from the first day until now;\nAnd they were exceeding sorrowful, and began to say unto him every one, Is it I, Lord?\nand seeing Peter warming himself, she looked upon him, and saith, Thou also wast with the Nazarene, even Jesus.\nSalute one another with a holy kiss.\nAnd he sent another; and him they killed: and many others; beating some, and killing some.\nAnd he said unto them, Which of you shall have an ass or an ox fallen into a well, and will not straightway draw him up on a sabbath day?\nto reveal his Son in me, that I might preach him among the Gentiles; straightway I conferred not with flesh and blood:\nAnd the child grew, and waxed strong in spirit, and was in the deserts till the day of his showing unto Israel. \nHe that hath an ear, let him hear what the Spirit saith to the churches.\n“He’s hot,” said Fern.\nThe Arables climbed into their truck and hurried over.\nHow can you be sure your friend is an early riser?”\nBut Jesus perceiving it said unto them, Why trouble ye the woman? for she hath wrought a good work upon me.\nFor all the prophets and the law prophesied until John.\nFor John came unto you in the way of righteousness, and ye believed him not; but the publicans and the harlots believed him: and ye, when ye saw it, did not even repent yourselves afterward, that ye might believe him.\nBut after certain days, Felix came with Drusilla, his wife, who was a Jewess, and sent for Paul, and heard him concerning the faith in Christ Jesus.\nThe joints of Charleston’s knees let go and he collapsed like pleated cloth straight to the ground and did not move further.\nHe doesn’t even know what’s going to happen to him around Christmastime; he has no idea that Mr. Zuckerman and Lurvy are plotting to kill him.”\nThere was hardly any autumn that year.\npartly, being made a gazingstock both by reproaches and afflictions; and partly, becoming partakers with them that were so used.\nThere was a blue bird named Buddy, as happy as he could be - he was helping his mom get ready.\nFor whether we are beside ourselves, it is unto God; or whether we are of sober mind, it is unto you.\nAnd there was delivered unto him the book of the prophet Isaiah. And he opened the book, and found the place where it was written,\nwherein ye once walked according to the course of this world, according to the prince of the powers of the air, of the spirit that now worketh in the sons of disobedience;\nAnd Jesus saith unto them, All ye shall be offended: for it is written, I will smite the shepherd, and the sheep shall be scattered abroad.\nAnd sailing from thence, we came the following day over against Chios; and the next day we touched at Samos; and the day after we came to Miletus.\nAnd every day, in the temple and at home, they ceased not to teach and to preach Jesus as the Christ. \nAnd this she did for many days. But Paul, being sore troubled, turned and said to the spirit, I charge thee in the name of Jesus Christ to come out of her. And it came out that very hour.\nlet us draw near with a true heart in fulness of faith, having our hearts sprinkled from an evil conscience: and having our body washed with pure water,\nof judgment, because the prince of this world hath been judged.\nBut if some of the branches were broken off, and thou, being a wild olive, wast grafted in among them, and didst become partaker with them of the root of the fatness of the olive tree;\nDon't go without a tussle.\nAnd straightway, while he yet spake, cometh Judas, one of the twelve, and with him a multitude with swords and staves, from the chief priests and the scribes and the elders.\nand they that are in the flesh cannot please God.\nFor we can do nothing against the truth, but for the truth.\n“It would surely set the houses ablaze as well,” said he.\n“Fern was up at daylight, trying to rid the world of injustice. As a result, she now has a pig. As a result, she now has a pig. A small one, to be sure, but nevertheless a pig.\nAfter this I saw four angels standing at the four corners of the earth, holding the four winds of the earth, that no wind should blow on the earth, or on the sea, or upon any tree.\nthat saying ye yourselves know, which was published throughout all Judæa, beginning from Galilee, after the baptism which John preached;\n“No,” said Charlotte, “I believe I’d better stay home and see if I can’t get some work done.”\nBut Jesus turning unto them said, Daughters of Jerusalem, weep not for me, but weep for yourselves, and for your children.\nHe was standing there, thinking of her, when he heard a small voice.\nWhen they arrived, the beaver said, here; what is it?\ncease not to give thanks for you, making mention of you in my prayers;\nOne by one the stars went out.\nThey cough and their clothes and bedding are wet constantly and in camp they hang them on stick frames to scorch by the fire, but the dews and mists and rains of morning wet them again.\nYet no man spake openly of him for fear of the Jews.\nHere is wisdom. He that hath understanding, let him count the number of the beast; for it is the number of a man: and his number is Six hundred and sixty and six. \nHerein is love made perfect with us, that we may have boldness in the day of judgment; because as he is, even so are we in this world.\nthat ye put away, as concerning your former manner of life, the old man, that waxeth corrupt after the lusts of deceit;\nand the rest laid hold on his servants, and treated them shamefully, and killed them.\nAnd when they heard these things, they held their peace, and glorified God, saying, Then to the Gentiles also hath God granted repentance unto life.\nWho is the liar but he that denieth that Jesus is the Christ? This is the antichrist, even he that denieth the Father and the Son.\nBut what saith the answer of God unto him? I have left for myself seven thousand men, who have not bowed the knee to Baal.\nNow when he drew near to the gate of the city, behold, there was carried out one that was dead, the only son of his mother, and she was a widow: and much people of the city was with her.\nNow these things having been thus prepared, the priests go in continually into the first tabernacle, accomplishing the services;\nLet us not therefore judge one another any more: but judge ye this rather, that no man put a stumblingblock in his brother’s way, or an occasion of falling.\nIn conclusion, what are we to do with him?\n“Look at my frog!” said Avery, placing the frog on the drainboard and holding out his hand for pie.\nand saying, Where is the promise of his coming? for, from the day that the fathers fell asleep, all things continue as they were from the beginning of the creation.\nAnd be back here at the truck at noontime so we can all have lunch together.\nWe give thanks to God always for you all, making mention of you in our prayers;\nWill the party who addressed me at bedtime last night kindly speak up.\nAnd the multitudes said, This is the prophet, Jesus, from Nazareth of Galilee.\nHoles opened in the ground and filled with bad water.\nHe came unto his own, and they that were his own received him not.\nAnd a voice came out of the cloud, saying, This is my Son, my chosen: hear ye him.\n“Charlotte?” he said, softly.\nThe Zuckermans were so busy with visitors they forgot about other things on the farm.\n“I think I shall ask Dr. Dorian about her the next time I see him.\nTend the flock of God which is among you, exercising the oversight, not of constraint, but willingly, according to the will of God; nor yet for filthy lucre, but of a ready mind;\nTheir job was to work their way upriver and clean the Indians out of the mountains cove by cove.\nA taste of peat, which as I understand is a sort of swampy mossy kind of plant that the Scots and Irish collect and dry and make fires from, as settlers on the prairie burn buffalo dung.\nBut when Charley grew short of breath and slowed to a walk, the bear soon outdistanced him.\nIn the spring when the ground gets soft enough to turn, our family start putting in our garden.\n“ ‘Humble,’ ” said Mr. Zuckerman.\nFor Christ entered not into a holy place made with hands, like in pattern to the true; but into heaven itself, now to appear before the face of God for us:\nand set forth customs which it is not lawful for us to receive, or to observe, being Romans.\nOf a truth I say unto you, that he will set him over all that he hath.\n“The school bus will be along in half an hour.”\nWilbur shut his eyes.\nThat which is born of the flesh is flesh; and that which is born of the Spirit is spirit.\nAnd there were many lights in the upper chamber where we were gathered together.\neven as the testimony of Christ was confirmed in you:\nBut when Pilate heard it, he asked whether the man were a Galilæan.\nThis is the hour when frogs and thrushes Praise the world from the woods and the rushes.\nBut who is there of you, having a servant plowing or keeping sheep, that will say unto him, when he is come in from the field, Come straightway and sit down to meat;\nIt was an affectation he had not picked up at the Military Academy but had acquired all on his own, either in an attempt to be elegant or else to blunt the edge of command and make himself more likable to the boys under him by suggesting that the action he was requesting might be entirely optional.\nAnd as he entered into a certain village, there met him ten men that were lepers, who stood afar off:\nIn no time at all, the seedling grew branches and more leaves.\n“Maybe our ears aren’t as sharp as Fern’s,” he said.\nMost mornings they arose at dawn, wet and unrested.\n“You have your meals brought to you in a pail.\nfor he powerfully confuted the Jews, and that publicly, showing by the scriptures that Jesus was the Christ. \nWhen the leaders of the Cherokee, Chief Ross and Major Ridge, came up to Washington City to lobby against removal, they were a source of deep racial confusion to those in power.\nAnd behold, thou shalt be silent and not able to speak, until the day that these things shall come to pass, because thou believedst not my words, which shall be fulfilled in their season.\nand having shod your feet with the preparation of the gospel of peace;\nToday I shall find my friend.”\neven so ye also, when ye see all these things, know ye that he is nigh, even at the doors.\nThey break dead things down into soil.\nThe streams and ditches bubbled and chattered with rushing water.\nand Solomon begat Rehoboam; and Rehoboam begat Abijah; and Abijah begat Asa;\nThen said he unto them, Nation shall rise against nation, and kingdom against kingdom;\nBehold, the virgin shall be with child, and shall bring forth a son, And they shall call his name Immanuel; which is, being interpreted, God with us.\nI exhort therefore, first of all, that supplications, prayers, intercessions, thanksgivings, be made for all men;\nAnd that was all fine for those people out on the Nation, but it hadn’t changed the Possum’s mind a bit.\n“I suppose it is uncomfortable.\nand said unto them, Why sleep ye? rise and pray, that ye enter not into temptation.\n“See me now?” she asked.\nFor she said, If I touch but his garments, I shall be made whole.\nAnd the women, who had come with him out of Galilee, followed after, and beheld the tomb, and how his body was laid.\nWilbur looked through the fence and saw the goose standing there.\n“Why aren't you asleep, Wilbur?”\nAnd she knew her children were safe.\nBut he saith unto them, It is I; be not afraid.\nAnd when it was day, he came out and went into a desert place: and the multitudes sought after him, and came unto him, and would have stayed him, that he should not go from them.\nFor the scripture saith, Thou shalt not muzzle the ox when he treadeth out the corn. And, The laborer is worthy of his hire.\nNow this he said, not because he cared for the poor; but because he was a thief, and having the bag took away what was put therein.\nNow concerning the things whereof ye wrote: It is good for a man not to touch a woman.\n“Then what happened?” asked Wilbur.\nThe Zuckermans went up to change into their best clothes.\nnot purloining, but showing all good fidelity; that they may adorn the doctrine of God our Saviour in all things.\n“Fern!” snapped her mother.\nShe knew he was saying good-bye in the only way he could.\nhe left Judæa, and departed again into Galilee.\nMrs. Zuckerman stood ready to head him off if he started for the garden, and now Mr. Zuckerman was coming down toward him carrying a pail.\nBut go, tell his disciples and Peter, He goeth before you into Galilee: there shall ye see him, as he said unto you.\nAnd when saw we thee a stranger, and took thee in? or naked, and clothed thee?\nBe not deceived, my beloved brethren.\nYou are the only one that can get it.\nThen went out unto him Jerusalem, and all Judæa, and all the region round about the Jordan;\nAnd when he was entered in, he saith unto them, Why make ye a tumult, and weep? the child is not dead, but sleepeth.\nI wrote unto you in my epistle to have no company with fornicators;\nAnd when they could not come nigh unto him for the crowd, they uncovered the roof where he was: and when they had broken it up, they let down the bed whereon the sick of the palsy lay.\nI remember overnighting at a tavern in the hill country, where homesick Irish fiddlers and pipers and drummers played their music until almost sunrise.\nAnd he answered and said, It is not meet to take the children’s bread and cast it to the dogs.\nNow there were dwelling at Jerusalem Jews, devout men, from every nation under heaven.\nAnd he said unto me, They are come to pass. I am the Alpha and the Omega, the beginning and the end. I will give unto him that is athirst of the fountain of the water of life freely.\nThe next day when the sun was up high, a neighbor came over and told us that the old man who had been sick had died last night.\nThe same came for witness, that he might bear witness of the light, that all might believe through him.\nAnd we bring you good tidings of the promise made unto the fathers,\nAnd he came into all the region round about the Jordan, preaching the baptism of repentance unto remission of sins;\n“To think that when I first met you I thought you were cruel and bloodthirsty! ” \nBut thou, when thou prayest, enter into thine inner chamber, and having shut thy door, pray to thy Father who is in secret, and thy Father who seeth in secret shall recompense thee.\nWhen the pig was disinterred the next day, it would be chopped or hand-pulled to shreds and dressed with vinegar and hot peppers and served with salty dollops of cornmeal fried in lard.\n“I don’t want to die.”\nBut now I go unto him that sent me; and none of you asketh me, Whither goest thou?\nFor we through the Spirit by faith wait for the hope of righteousness.\nAnd I am no more in the world, and these are in the world, and I come to thee. Holy Father, keep them in thy name which thou hast given me, that they may be one, even as we are.\n“When the first light comes into the sky and the sparrows stir and the cows rattle their chains, when the rooster crows and the stars fade, when early cars whisper along the highway, you look up here and I’ll show you something. I will show you my masterpiece.”\nAnd he looked round about on them all, and said unto him, Stretch forth thy hand. And he did so: and his hand was restored.\nThey grew quite rapidly.\nOf course, they were both from South Carolina and thus given to strange enthusiasms.\nThey came out the lower end of the gorge into the open valley, where they could see the big mountains standing blue to the north like a wall marking the ultimate limits of the world.\nThe minister’s skin was as white as the thin pages of the Bible open on his lap.\nWe start tomatoes early, helping them along until it gets warm enough to put them in the ground.\nEven as Sodom and Gomorrah, and the cities about them, having in like manner with these given themselves over to fornication and gone after strange flesh, are set forth as an example, suffering the punishment of eternal fire.\nFor by one offering he hath perfected for ever them that are sanctified.\nIt went still and lay with the water flowing around the bulk of it in a pair of smooth curves.\nto a virgin betrothed to a man whose name was Joseph, of the house of David; and the virgin’s name was Mary.\nBe diligent in these things; give thyself wholly to them; that thy progress may be manifest unto all.\nBut Claire ran to me.\n“Jump and dance!” said the rooster.\nThe apple tree was beautiful …\nWhich things have indeed a show of wisdom in will-worship, and humility, and severity to the body; but are not of any value against the indulgence of the flesh. \nVerily, verily, I say unto you, A servant is not greater than his lord; neither one that is sent greater than he that sent him.\nfor where thy treasure is, there will thy heart be also.\nPeople came from miles around to look at Wilbur and to read the words on Charlotte’s web.\nHunters bloomed out of the fog and ran past him without letup.\nAnd as Jesus passed by from thence, he saw a man, called Matthew, sitting at the place of toll: and he saith unto him, Follow me. And he arose, and followed him.\nNor could any of the young aides to French diplomats understand me when I tried to speak.\nAnd the wall of the city had twelve foundations, and on them twelve names of the twelve apostles of the Lamb.\nBut a certain one of them, Caiaphas, being high priest that year, said unto them, Ye know nothing at all,\nFor the king knoweth of these things, unto whom also I speak freely: for I am persuaded that none of these things is hidden from him; for this hath not been done in a corner.\n“Come now, let’s not make a scene,” said the spider.\nAnd if this come to the governor’s ears, we will persuade him, and rid you of care.\nAnd after the second veil, the tabernacle which is called the Holy of holies;\nWhen therefore they were come together here, I made no delay, but on the next day sat on the judgment-seat, and commanded the man to be brought.\nBut the end of the charge is love out of a pure heart and a good conscience and faith unfeigned:\nAnd I saw another sign in heaven, great and marvellous, seven angels having seven plagues, which are the last, for in them is finished the wrath of God.\nThe bandits’ cook pots hung behind their saddles, clashing like unpleasant bells as they coursed along the roadways.\nThey had a television, and we would go just about every evening.\nWhen the dog noticed that we were willing to follow him, he kept going and did not run back.\nI returned to the office of the secretary of war as soon as my embarrassing entrance into politics could be corrected.\nHe was glad to see Mrs. Arable and gave her a comfortable chair.\nThat means they break down into smaller and smaller pieces.\nPrivate ownership of land was intended to mean something in this country.\nThe truck stopped.\nAnd the high priest Ananias commanded them that stood by him to smite him on the mouth."
  },
  {
    "path": "a4/chr_en_data/train.chr",
    "content": "ᎠᎴ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏛ ᎠᏃᎯᏳᎲᏍᎩ ᎠᎾᏚᏓᎴᎭ ᏂᎦᎥ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᎨᏣᏚᏓᎳᎡᏗ ᏂᎨᏒᎾ ᏥᎨᏒ ᎼᏏ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏕᏥᎧᎿᏩᏗᏒ ᎢᏳᏍᏗ.\nᎤᏯᎪᏅ ᎠᏰᎸᎢ, ᎠᏍᎪᎵ ᎤᏍᏆᏄᏤ ᎫᏕᎶᎰᎯᏍᏗ ᏄᏍᏛ ᎢᎪᎯᏛ, ᏩᏥᎳᏉ ᎢᏳᏍᏗ.\nᎠᏎᏃ ᎾᏂᎥ ᎤᎾᏤᎵᏛᎭ; ᎦᎶᏁᏛ ᏧᏓᎴᏅᏔᏅᎯ; ᎣᏂᏃ ᎾᏍᎩ ᎾᎦᎶᏁᏛ ᏧᏤᎵ ᎨᏒ ᎾᎯᏳ ᎦᎷᏨᎭ.\nᎤᏓᎴᏨ ᎨᏎ ᎱᎷᏨᎢ.\nᎾᏍᎩᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᏪᎧᏅᎩ ᎠᏫᏅ ᎠᎴ ᎠᏁᏤᎸᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᎩᎶ ᎯᏃᏁᎸ ᎾᏍᎩ ᎯᎠ ᎬᏂᎨᏒ ᏂᏍᏋᏁᎸᎢ.\nᏭᏌᎩᏒ ᎪᏪᎵ ᎣᏍᏓ ᎤᎪᎵᏰᎥ ᎠᏍᏓᏱᏛ, ᏔᎵᏁ ᏄᏪᏒ, ᎦᎸᎳᏗ ᎠᏓᏅᏖᎵᏙ ᎤᏥᎸ.\nᎠᎴ ᏞᏍᏗ ᏂᎯ ᏱᏥᏲᎮᏍᏗ ᎢᏳᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᎢᏳᏍᏗ ᎢᏣᏗᏔᏍᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏧᏢᏫᏛ ᏱᏂᏚᏍᏕᏍᏗ ᏕᏣᏓᏅᏛᎢ.\nᎤᏩᏃᏪ ᏫᎵᎻ ᎤᎪᎭ.\nᎾᎿᏃ ᏚᎴᏅ, ᏧᏗᏱ ᎦᏓ ᎠᎲᎢ ᎤᎷᏤᎢ, ᏦᏓᏂ ᎠᏍᎪᏂᏗᏢ ᏧᎶᎯᏍᏔᏁᎢ; ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᏔᎵᏁ ᎢᎬᏩᏓᏟᏌᏁᎴᎢ; ᎠᎴ ᎢᏳᏛᏁᏗ ᎨᏒ ᏄᏛᏁᎴᎢ, ᏔᎵᏁ ᏚᏪᏲᏁᎢ.\nᏣᏍᎪᏃ ᎢᎦᏓ ᏦᎯᏍᏙᏗ ᏱᎩ.\nᎤᏏᏩ ᎨᏎᎢ ᎤᎾᏓᎪᎾᏙᏗ.\nᎠᎴ ᎣᏍᏛ ᎾᎾᏛᏁᎮᏍᏗ, ᎠᎴ ᎤᏁᎿᎢᏳ ᎨᏎᏍᏗ ᎣᏍᏛ ᎾᎾᏛᏁᎲᎢ, ᎠᎴ ᎠᏂᎦᎵᏰᏍᏗ ᎤᎾᏓᏁᏗᏱ, ᎠᏂᏯᏙᎯᎯ ᎨᏎᏍᏗ ᎤᏂᎲᎢ,\nᎠᎦᏗᏓ ᏚᎾᏓᏚᎯᏍᏕᎢ ᎤᏲ ᎠᏒᎬ, ᏃᎴ ᎤᏩᎬᏘᎶᏓ ᎤᏃᎮᎴ ᏫᎵᎻ ᏄᎵᏍᏔᏁᎸ ᎡᎳᏆᏗ ᏃᎴ ᎤᏁᎸᏔᏅ ᎤᏂᏴᏗ ᏌᎳᏓ ᏃᎴ ᎤᏪᏥ ᎤᎪᏏᏓ ᎤᏲᏨ ᎤᎨᎯᏙᎸ ᎡᎳᏆᏗ.\nᎢᎸᏍᎩᏍᎪ ᎢᏯᏥᏛᎯ ᎦᎶᏁᏛ? ᏉᎳᏍᎪ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏁ ᎢᏥᏍᏕᎸᏗᏱ? ᎠᎴᏍᎪ ᏉᎳ ᏚᏙᎥ ᏕᏣᏬᏍᏔᏁᎢ?\nᎤᎦᏙᏍᏛᎢ ᏫᎵᎻ ᏚᏲᏎ ᎠᏦᏴᎢ ᏃᎴ ᎤᎵᏌᎵᏓᏁᎢ.\nᎤᏁᎷᏁᎢ ᎤᎾᏓᏓᏍᎩ.\nᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎥᏝ ᏱᎨᎦᏛᎦᏃ ᎩᎶ ᏚᏍᏚᎢᎡᎸ ᏗᎦᏙᎵ ᏗᎨᏫ ᎤᏕᏅᎯ.\n”ᎪᎱᏍᏗ ᏕᏥᎪᏩᏘᎭ,” ᎤᏛᏁ ᎠᏝᏪᎯ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ; ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ.\nᏃᏉᏗ ᎯᏢᎾ.” \nᏍᎩᏴᏃ ᎠᏥᎳ ᎠᎪᎲᏍᎬ ᎯᎠ ᎠᏂᏴᏫ ᏣᎾᏴᎩᏍᎨ ᏗᎧᏃᎩᏓ ᎠᏥᎸ ᎢᏣ ᏗᏓᏅᏫᏍᎩ ᏗᎧᏃᎩᏓ.\nᎤᏍᏆᏙᏅ ᎤᎦᏔᎲᏍᎬ ᏄᏍᏛ, ᎤᏅᎦᎸᎲ ᎪᎢᎭ ᎦᏰᏌᏛ.\nᎠᎴ ᎾᏍᎩ ᏥᏫᏍᎪᎢ, ᎥᏝ ᎾᏍᎩ ᎠᏰᎸ ᎤᏙᏢᏗ ᎨᏒ ᏱᏫᏍᎪᎢ, ᎤᎦᏔᎭᏉᏍᎩᏂ, ᎤᏣᎴᏍᏗᏉ ᏱᎩ, ᎠᎴ ᎪᎱᏍᏗᏉ ᎤᏍᏗ ᏅᏩᏓᎴ ᏱᎩ;\nᎤᏲ ᎤᎾᏗᏅᏗ ᏪᏙᎰ ᎢᎪᎯᏓ ᏃᎴ ᏓᎪᏩᏘᏍᎪ ᏧᏪᏘ ᏗᎪᏪᎵ ᏗᎪᎵᏰᏗ.\nᎾᎯᏳᏃ ᎤᏒᎯ ᎢᏈᎬᎢ ᏂᎦᏟᎮ, ᎠᏧᏣᏃ ᏒᎦᏔ ᏚᎧᏁᏞᎢ ᎥᎿ ᎤᏩᏅᎦᏢᎢ ᏒᎦᏔ ᎢᏈᎬᎢ.\nᏍᎩᏃ ᎣᏍᏓ ᎠᏆᏅᏛ, ᎢᏳᏍᏘ ᎤᎾᎩᎵ ᎠᏂᏲᏍᎨ ᏃᎴ ᎠᏁᎩ ᎤᏂᏍᎦᏅᏨ ᏑᎾᎴ ᏥᏂᎦᎵᏍᏗ ᏣᎾᏂᎩᏍᎨ, ᎠᏌᎻᏓ ᎤᏍᎦᎢᏓ ᎤᏔᏁ ᎤᏍᏗ ᎪᏪᎵ ᏗᏆᏥᎶᏍᏔᏅ ᎠᏥᎶᏛ.\nᏤᏍᏗᏗ ᏱᏙᎨᏍᏗᏉ, ᏫᎵᎻ! \nᎬᏂᎨᏒᎢᏳ ᎢᏰᏨᏁᎸᎯ ᏂᎯ ᎦᎶᏁᏛ ᎤᏤᎵ ᎪᏪᎵ ᎨᏒᎢ, ᎠᏴ ᏦᎩᎸᏫᏍᏓᏁᎸᎯ, ᎪᏪᎳᏅᎯ ᎪᏪᎶᏗ ᎬᏔᏅᎯ ᏂᎨᏒᎾ, ᎠᏓᏅᏙᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎬᏂᏛ ᎤᏤᎵ ᎬᏔᏅᎯ; ᎥᏝ ᏅᏲᎯ ᏗᎪᏪᎶᏗᏱ ᏗᎪᏪᎳᏅᎯ ᏱᎩ, ᎤᏇᏓᎵᏍᎩᏂ ᎨᏒ ᏗᎪᏪᎶᏗᏱ ᎣᎾᏫᏱ.\nᎯᎠᏃ ᏅᏥᏪᏎᎸᎩ, ᏣᎬᏫᏳᎯ ᏂᎯ ᎯᎦᏔᎭ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎠᏍᎩᏂ Ꮎ ᎤᏣᏘ ᎠᎩᎵᏯ ᎨᏒ ᏅᏓᏳᏂᎶᏒᎯ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎩᎬᏱ ᏧᏅᎩᎶᎥᎯ ᏧᎾᏁᏬ ᎠᎴ ᏧᏁᎬ ᎢᏧᏅᏁᎸᎯ.\nᎠᏎᏴᏫᏃ ᏚᏍᏆᎸᏔᏅ, ᎠᎴ ᏚᏬᎵ ᏧᏂᏦᏯᏍᏗ ᏭᎧᎵᎢᏍᏔᏅ, ᎠᎴ ᎦᎾᏍᏙᎯ ᎤᏪᏆᏔᏅ, ᎤᏁᏁᎸ ᎤᏗᏔᏍᏗ; ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᎩ, ᎢᏓᏙᎴᎰᎯ, ᏥᎪᏃ ᎢᏔᏯ ᏓᎦᎷᏥ ᏓᏳᏠᎥᏔᏂᎵ.\nᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏫᎦᎷᎬ ᎢᎦ ᏒᎯᏰᏣ ᎠᏗᏔᎯᏙ ᏃᎴ ᎠᏓᏩᏛᎯᏙ.\nᎿᏉᏃ ᎠᏂᏯᏫᏍᎩ ᏚᏂᎦᎵᏒᎩ ᎠᏍᏕᏱᏛ ᎤᏍᏗ ᏥᏳ ᎦᏙᏌᏗᏍᏛᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏬᎰᏒᎩ.\nᎠᏎᏃ ᎾᏍᎩ ᏂᏣᏛᎦ ᏕᏥᏍᎦᏅᏥ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎤᏲ ᏂᏕᏨᎦ ᏗᏩᎾᎦᎳ ᏚᎾᏓᏅᏛᎢ, ᎦᎶᏁᏛ ᎡᏥᏍᎦᏅᏤᎰᎢ.\n“ᎨᏍᏗᏗ ᏍᏆᏬᏣ ᏱᎬᏲᏎᎳ,” ᎤᏛᏁ ᎰᎻ.\nᎤᏍᏗ ᏚᏄᏌᏛ, ᎠᏎ ᎤᏍᎪᏍᏛ ᎠᎦᎵᏍᎬ ᎦᏲᏟᏉ ᎠᎪᏩᏛᏗ, ᎠᏥᎸ ᎠᏨᏍᏛ ᎨᏍᏗ ᎠᎪᏩᏛᏗ ᏱᎨᏎ.\nᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᎠᏏ ᏂᎦᎾᏄᎪᎬᎾ ᏥᎨᏎᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎭᏫᏂᏗᏢ ᏂᎦᏛ ᏅᎩ, ᎡᎩᏍᏚᎲᎩ ᎪᎯᏳᏗ ᎨᏒ ᎣᏂ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎨᏒ ᎢᏯᏍᏗ.\nᎤᎾᏓᏅᏘᏃ ᎪᎯᏳᏗ ᎨᏒ ᎤᎾᏛᏂᏗᏍᏕᏍᏗ; ᎩᎶᏍᎩᏂ ᎢᏳᏍᏗ ᎢᎠᏨᏍᎨᏍᏗ ᎠᏆᏓᏅᏙ ᎥᏝ ᎣᏏᏳ ᏳᏰᎸᏎᏍᏗ ᎾᏍᎩ.\nᎾᏍᎩᏃ ᎾᏂᎥ ᏚᏲᎱᎯᏎᎴᎢ, ᎾᏍᎩ Ꮎ ᏗᏅᏃᏛ ᏥᎩ ᎪᎯ ᎨᏒ ᎢᏳᏓᎴᏅᏛ ᎤᏅᏒᏉ ᎤᎾᏤᎵ ᎤᎬᏩᎵ ᎤᎾᎴᏂᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᏤᎵ ᎤᎬᏩᎵ ᏧᏲᎱᎯᏎᎸᎯ ᎠᎴ ᏧᎴᎯᏌᏅᎯ ᏥᎩ.\nᏂᎯ ᎾᏍᏉ ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ; ᏗᏣᎵᏂᎪᎯᏍᏓ ᏗᏥᎾᏫ, ᎤᎬᏫᏳᎯᏰᏃ ᎤᎷᎯᏍᏗᏱ ᎤᏍᏆᎸᎯᏗ.\nᎢᏥᏁᎬᏍᎩᏂ ᎯᎠ ᏄᏍᏕᏍᏗ, ᎥᎥ, ᎥᎥ; ᎥᏝ, ᎥᏝ; ᎤᏟᏰᏃ ᏥᏂᎦᎣ ᎤᏲᏉ ᎨᏒ ᏗᏓᎴᏂᏍᎪᎢ.\nᎠᎴ ᎾᏍᏉ ᏗᎦᏤᎵᎦ ᏩᎾᏕᎶᏆ ᏂᎪᎯᎸ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎾᏍᎩ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎾᏍᎩ ᎠᏂᏁᏉᏍᎩ ᎢᏳᎾᎵᏍᏙᏗᏱ.\nᎢᏤᏯᏔᎮᏍᏗ, ᎢᏥᏯᏫᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ; ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎢᏳ ᎨᏒᎢ.\nᎣᏲᎢᏳᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ, ᎠᎴ ᎢᏥᏆᎵᏏ, ᎢᏣᏠᎾᏍᏗ! ᏂᎯᏰᏃ ᏓᏓᏂᏌᎲ ᏕᏣᏤᎸ ᏄᏪᎵᏍᏛᎾ ᏥᎨᏐᎢ, ᎠᎴ ᏴᏫ ᎦᏚᎢ ᎠᏂᎶᏍᎩ ᎥᏝ ᏱᎾᏙᎴᎰᏍᎪᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᏥᏂᏨᏪᏎᎸᎩ, ᎠᏏᏉ ᏥᏨᏰᎳᏗᏙᎲᎩ, ᎾᏍᎩ ᏂᎦᎥ ᎾᏍᎩ ᎠᏎ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ ᎪᏪᎳᏅᎯ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎼᏏ ᎤᏤᎵᎦ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏃᏪᎸᎢ, ᎠᎴ ᏗᎧᏃᎩᏍᏗᏱ, ᎠᏴ ᎬᎩᏃᎮᏍᎬᎢ.\nᎦᎶᏇ ᏭᏴᎮ ᏃᎴ ᏄᏓᎴ ᎦᏚ ᎤᎦᎾᏍᏓ ᎠᏔᎸᎩᏓ ᎡᎳᏆᏗ.\nᎾᏍᎩᏯ ᎠᏗᎾ ᎦᎶᏁᏛ ᎣᏍᏛ ᎧᏃᎮᏛ ᏧᎵᎶᎲᏍᎦ ᏂᏣᏛᏁᎴᏙᎮᏍᏗ; ᎾᏍᎩ ᎢᏳᏃ ᏱᏫᏨᎷᏤᎸ ᎠᎴ ᏱᏫᏨᎪᎥ, ᎠᎴ ᏯᎩᎪᏁᎸᏉ, ᏱᎦᏛᎬᎦ ᏂᏣᏛᎿᏕᎬᎢ, ᎤᎵᏂᎩᏛ ᏕᏥᏙᎬ ᏌᏉ ᎠᏓᏅᏙᎩᎯ, ᏌᏉ ᎠᏓᏅᏖᏗ ᎬᏗ, ᎠᏤᏉᎶᎯ ᎢᏣᏟᏂᎬᏁᏗᏱ ᎢᏥᏍᏕᎸᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ.\nᎾᏍᎩᏃ ᎤᏕᏘᏴᏌᏗᏒᎢ ᏭᎵᏏᎩᏴᎢ ᎤᏒᎯᏰᏱ\nᎾᏍᎩ ᎯᎠ ᏥᏌ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏂᎦᏛ ᎣᏥᏃᎮᏍᎩ.\nᎯᏅᏏᏓᏍᏗ ᏕᏫ ᎠᎰᎵ ᏨᏔᏅᎯ ᎯᎠ ᎢᏣᏪᏛ ᏥᎩ; ᎦᏙᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᎳᏬᏎᎢ, ᎠᎴ ᏴᏫ ᎤᎾᏓᏅᏖᎴ ᎢᏳᎾᏛᏁᏗᏱ ᎾᏍᎩ ᎢᎬᏩᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎰᎵᎦᏧ?”\nᏓᏨᏃᎯᏎᎵ ᏥᎸᏉᏗ ᎨᏒ ᎯᏥᏥ.\n”ᏂᎬᎾᏛ ᎠᏓᏅᎵᏰᎠ,” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎢᏣᏛᎩᏍᎨᏍᏗᏃ ᏓᏅᏩ, ᎠᎴ ᎠᏂᏃᎮᎵᏙᎲ ᏓᏅᏩ, ᏞᏍᏗ ᏱᏣᏕᏯᏔᏁᎮᏍᏗ; ᎾᏍᎩᏰᏃ ᎠᏎ ᎢᏳᎵᏍᏙᏗ; ᎤᎵᏍᏆᏗᏍᏗᏱᏍᏗᏂ ᎨᏒ ᎠᏏ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎨᏥᏅᏏᏛ ᎠᏂᏅ ᎢᎬᏱᏗᏢ ᏚᏂᎧᏁᎢ; [ᎨᏥᏅᏛᏃ] ᎤᎾᏓᏙᎵᏍᏔᏅ ᏚᎾᏏᏔᏕᎢ.\nᎠᎴ ᏅᎩᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏆᏛᎦᏅᎩ ᎧᏁᎬ ᏅᎩᎬ ᎾᏍᎩ Ꮎ ᎬᏃᏛ ᎯᎠ ᏂᎦᏪᏍᎬᎢ, ᎡᎭᎦᏔᏄᎦ.\nᏲᎾ ᎤᏤᏍᏙ ᏭᎧᏔᏁᎢ ᎧᏁᏌᎢ, ᎧᏴᏐᎵ ᎬᏗ ᎠᎲᏏᏙᎮ ᎧᏁᏍᎦ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎢᏣᏛᏟᎶᏒᎲ, ᎾᏍᎩᏯ ᎡᏣᎵᎾᎶᏒᏗ ᎨᏎᏍᏗ; ᏂᎯᏃ ᎢᏣᏛᎩᏍᎩ ᎡᏥᏁᏉᎡᏗ ᎡᏥᏁᏗ ᎨᏎᏍᏗ.\nᏫᎬᏲᏪᎳᏏ ᏗᎹᏗ ᎬᎨᏳᎢ ᎠᏇᏥ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎤᏓᏙᎵᏣᏛ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎦᎶᏁᏛ ᏥᏌ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ.\nᎠᏗᎾ ᎢᏨᏂᏗᏳ ᎨᏒ ᎤᎧᎵᏨᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ; ᎾᏍᎩᏃ ᏂᎯ ᎢᏥᎧᎵᏨᎯ ᎠᎴ ᎢᏥᏃᏍᏛ ᎨᏎᏍᏗ, ᎪᎱᏍᏗ ᏂᏥᎪᎸᎾ.\nᏌᏩᏂᏃ ᏈᏓ ᎤᏍᏓᏩᏛᏒᎩ ᏥᏌ, ᎠᎴ ᎾᏍᏉ ᏅᏩᏓᎴ ᎠᏓᏍᏓᏩᏗᏙᎯ. ᎾᏍᎩ ᎠᏓᏍᏓᏩᏗᏙᎯ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎦᏔᎯ ᎨᏒᎩ; ᎢᏧᎳᎭᏃ ᏥᏌ ᎤᏂᏴᎸᎩ ᎤᏜᏅᏛᎢ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎦᏁᎸᎢ.\nᏝᏍᎪ ᏚᏳᎪᏛ ᏱᎩ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎨ ᎢᏯᏋᏁᏗᏱ ᎠᏆᏤᎵ ᎨᏒᎢ? ᏥᏌ ᎯᎦᏙᎵ ᎤᏲᎢᏳ ᎢᎩ ᏅᏗᎦᎵᏍᏙᏗ ᎠᏴ ᎠᏆᏓᏅᏘᏳ ᎨᏒᎢ?\nᎾᏍᎩᏃ ᎿᏉ ᎤᏂᏣᏘ ᎤᎾᏙᎴᎰᏒ ᏥᏌ ᎾᎿ ᏄᏙᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᎰᎯ, ᎾᏍᎩ ᎾᏍᏉ ᏥᏳᎯ ᏚᎾᏣᏅᎩ, ᎠᎴ ᎨᏆᏂ ᎤᏂᎷᏨᎩ, ᎠᏂᏲᎲᎩ ᏥᏌ.\n“ᎠᏯᏍᎪ ᎠᏆᏓᏅᏖᏙᏗ.”\nᎠᏎᏃ ᎤᏛᎦᏅ ᎠᏥᎳ ᎤᎬᏫᏳᎯ ᎨᏒ ᏧᏗᏱ ᎤᏙᏓ ᎡᎶᏛ ᎤᏓᏁᏟᏴᏍᏓᏁᎸᎢ, ᎤᏍᎦᎴ ᎾᎿ ᏭᎶᎯᏍᏗᏱ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏯᏔᏅᎯ ᎨᏒ ᎠᏍᎩᏓᏍᎬᎢ, ᎨᎵᎵ ᏭᎪᎸᏍᏔᏁᎢ;\nᎬᏩᏛᏛᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎢᎳᎪᏃ ᎢᏳ ᎯᎠ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏔᏂ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᎾᎯᏳ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎠᎵᏰᎢᎶᎸᎭ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏔᏲᏎᎭ ᏗᏥᏩᎾᎦᎶᎢᏍᏗᏱᏉ ᏂᎨᏒᎾ ᎠᏴ ᎢᏨᎩᎵᏲᏤᎲ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᏨᏁᎯ ᏥᎩ.\nᎠᏎᏃ ᏗᏘᏲᎯ ᏃᎴ ᎤᏓᎾᏂ, ᏃᏉᏃ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎤᏩᏌ.\nᏃᎴ ᎠᏏᎾᏌᏂ, ᏄᎾᏓᎴᎲ ᎠᏂᏴᏫᏯ ᎤᏂᎶᏒ ᏧᎷᏫᏍᏓᏁᏗ.\nᎾᏍᎩᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯ ᎾᏍᏉ ᎯᏍᎩ ᎢᎦᏚᎩ ᏣᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ.\nᏃᏊᏃ ᏅᎩᏁ ᏒᏃᏱ Ꮭ ᏲᎨᏅᏎ ᎡᎵᏏᏍᎩᏂ ᏧᏪᏅᏒ ᎣᎨᏅᏒ.\nᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᎨᏥᏁᎢᏍᏗᏍᎨᏍᏗ, ᎤᏣᏘ ᎨᏥᎨᏳᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏣᏘ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎢᏥᏁᎸᎢ.\nᏂᎦᏓ ᎦᎸᏅ ᎤᏂᏰ, ᏣᏉ ᎠᏰᎵᏉ.\nᎦᏅᏙᏗ ᎢᏳᏍᏗ ᎨᏎᎢ, ᎠᎴ ᏒᏚᎵ.\nᏴᏫ ᏚᎾᏓᏅᏛ ᏚᎸᏕᎯᎮᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᏂᎾᏰᏍᎬ ᎠᎴ ᎠᏂᎦᏖᏃᎲ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎡᎳᏂᎬ ᎤᎾᏄᎪᎢᏍᏗ ᎨᏒᎢ; ᎤᏂᏣᏘᏰᏃ ᎦᎸᎶ ᏣᏂᎧᎳ ᏛᎾᎵᏖᎸᏂ.\nᎤᏟᏍᏓ ᏥᏚᏝᏗᏗᏅᏎ!\nᏂᎪᎯᎸᎾ ᏚᏓᏴᎳᏛ ᎤᏩᏌ ᏗᎪᏩᏛᏗ ᎨᏎ ᏃᎴ ᎠᏂᎾᏁᏍᎬ ᎤᏂᏃᏕᎾ ᎠᏂᎩᏍᏙᏍᎬ, ᏃᎴ ᎢᏳᏓᎵ ᎠᏛᎪᏗ ᎨᏎ ᏩᎦ ᎤᏕᎵᏌᏛᏗ ᎦᎸᎳᏗᏣ.\nᎣᏂᏉ ᎠᏓᏏᏎᎢ ᎡᎳᏆᏗ, ᎤᏂᏴ ᎧᏴᏐᎵ.\nᏥᏌᏃ ᏔᎵᏁ ᎠᏍᏓᏯ ᎤᏁᏨ ᏕᎤᏲᏎ ᎤᏓᏅᏙ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᏳᎾᎵᏱᎶᎮᎵ ᎯᎠ ᎪᎯ ᏣᏁᎭ.\nᏦᎳᏂᎾ?\n”ᎭᏩ,” ᎤᏰᎸᏗᏗ ᏗᏁᎶᏗ, ᎠᏓᏏᏓᏍᏗ ᏃᎴ ᎠᏓᎾᏫᏗ ᏃᎵ ᎤᎵᎮᎵᏍᏗ ᎢᏯᏛᏁᏗ.\nᎥᏝ ᎠᏂ ᏘᎦᎾ, ᏚᎴᏅᏰᏃ ᎾᏍᎩᏯ ᏄᏪᏒᎢ; ᎡᏍᏕᎾ ᎡᏍᏓᎦᏔ ᎤᎬᏫᏳᎯ ᎠᏥᏅᏅᎢ.\nᏒᏃᏱ ᏱᏄᎵᏍᏔᏅ ᏃᏊ, ᎢᎾᎨ ᎠᏇᏓᏍᏗ ᎠᎴ - ᎠᏋᏌ ᎠᏇᏓᏍᏗ.\nᎠᏥᎸᏳᎵ ᏩᏆᏅ, ᎠᏉᏢ ᎾᎥᏂ ᏓᎩᏛ ᎦᎶᏇ.\nᎢᏤᏃ ᏗᎧᏃᎩᏍᏗ ᏚᏂᏃᎩᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏚᏳᎪᏗ ᏂᎯ ᏣᏁᏍᏗᏱ ᎪᏪᎵ ᎠᎴ ᏗᏣᏲᏍᏙᏗᏱ ᏓᏍᏚᎲᎢ; ᎡᏣᎸᎩᏰᏃ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏂᏍᎩᏴᏁᎸ ᏣᎩᎬ ᏍᎩᏩᎯᏍᏔᏅ, ᏫᏗᏍᎩᏯᏅᎲ ᏂᎦᏛ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏓᏁᏩᏗᏒᎢ.\nᎤᏁᎳᏅᎯᏃ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏂᏥᎥ ᎢᏤᎳᏗᏙᎮᏍᏗ. ᎡᎺᏅ\nᎾᏍᎩᏃ ᎯᎠ ᏥᏄᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎠᏛᎪᏗᏱ ᏗᏓᎴᎲᏍᎦ, ᎠᏛᎪᏗᏱᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᏗᏓᎴᎲᏍᎦ.\nᎠᏎᏃ ᎡᏆᎭᎻ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏇᏥ, ᎭᏅᏓᏓ,. ᏂᎯ ᎠᏏ ᏣᎴᏂᏙᎲᎩ ᎯᏩᏘᏍᎬ ᏣᏤᎵᎦ ᎣᏍᏛ, ᎠᎴ ᎳᏏᎳ ᎾᏍᏉ ᎠᏩᏘᏍᎬᎩ ᎤᏤᎵᎦ ᎤᏲᎢ. ᎠᏎᏃ ᎿᏉ ᎠᏥᏄᏬᎯᏍᏔᏅ, ᏂᎯᏃ ᎢᎯᎩᎵᏲᎦ.\nᎦᏂ ᏕᎦᎸ ᏃᎴ ᏗᏛᏅᎢᏍᏔᏅ ᏧᏂᏍᏔᏲᏍᏗ.\nᎧ, ᏦᏈ ᏘᏅᎵ ᎠᏂᏫᏅ, ᏫᏯᏅ ᏌᏩᏂ ᏈᏓ ᏧᏙᎢᏛ,\nᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏤᎮᎢ, ᎠᏴ ᎣᎦᏛᎦᏅᎯ, ᏦᏥᎦᏙᎵ ᏦᎬᏔᏅᎯ ᎣᎩᎪᎲᎯ, ᎾᏍᎩ ᏦᎦᎧᎿᏅᎯ, ᎠᎴ ᏦᎪᏰᏂ ᏦᎬᏔᏅᎯ ᎣᎦᏒᏂᎵᏙᎸᎯ, ᎧᏃᎮᏛ ᎬᏂᏛ--\n“ᏣᏛᎦᏁ ᎢᏗᎦᏪᏍᏗ ᎤᏓᏴᎳᏔᏅ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ ᏰᎵ ᎤᏩᏃᏫᏍᎩ.\nᏗᏂᎨᏫᏃ ᎠᎴ ᏗᏂᏲᎤᎵ ᎬᏩᎷᏤᎸᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᏅᏩᏅᎩ.\nᏥᎦᏔᎭᏰᏃ ᎯᎠ ᎾᏍᎩ ᎥᎩᏍᏕᎸᏗᏱ ᏭᎵᏰᎢᎶᎯᏍᏗ ᎨᏒᎢ ᏂᎯ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᏅᏓᎦᎵᏍᏙᏔᏂ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎤᏓᏅᏙ ᎥᎩᏁᎲᎢ;\nᎢᏨᏲᏎᏰᏃ ᎥᏝ ᎿᏉ ᎯᎠ ᎾᏍᎩ ᏴᎦᎦᎵᏍᏓᏴᏓ ᎬᏂ ᎤᎵᏍᏆᏛᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\n”ᎭᏦᎣᏍ”\nᎠᏎᏃ ᎢᏓᎵᏅᏟ ᎠᏆᏚᎵᎭ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᎩ ᎫᏓᎴᏅᏛ ᎾᏆᎵᏍᏓᏁᎸᎢ ᎤᏁᏉᎢᏍᏗᏱᏉ ᏄᏩᏁᎸ ᎣᏍᏛ ᎧᏃᎮᏛ;\nᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᏂᏓᎨᏨᏁᎵ,” ᎠᎦᏛ ᎠᏂᏗᎨ ᏏᏆ ᏓᏂᎯᎰ ᎤᏴᏣ ᏱᏄᎵᏍᏔᎾ.\nᎠᏂᏯᏫᏍᎩᏃ, ᏂᎨᏥᏪᏎᎸ ᎨᏥᏁᏤᎸ ᏄᎾᏛᏁᎸ, ᎤᏂᏯᏅᎲᎩ ᏉᎳ, ᎠᎴ ᏒᏃᏱ ᏭᏂᎶᏒ, ᎥᏗᏇᏗ ᏭᎾᏘᏃᎸᎩ.\nᎢᏳᏰᏃ ᎦᎫᏍᏛᏗ ᏧᏛᎯ ᏱᎩ, ᎠᎴ ᎬᏩᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏱᎩ, ᏂᎦᏛ ᎠᏂᎪᏩᏘᏍᎩ ᏯᎾᎴᏅ ᏱᎬᏩᏕᎰᏛ,\n”ᎯᎾᏓᏖᎸᏂᎦ ᎠᏓᏖᎸᏂᏍᏗ!” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎦᏙᏰᏃ ᏗᎦᎵᏍᏙᏗᎭ ᎢᎯᎦᏔᎭ, ᎯᎨᏴ, ᎦᎯᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᏣᏰᎯ? ᎠᎴ ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᎢᎯᎦᏔᎭ ᎯᏍᎦᏯ ᎦᎯᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᏣᏌᎵᎢ?\nᎢᎬᏩᏘᏃᎮᎴᏃ ᎩᎶ ᏧᎵᎡᎾ, ᎠᎴ ᎦᏂᎳ ᎦᏬᏂᏍᎩ; ᎠᎴ ᎢᎬᏩᏍᏗᏰᏔᏁ ᎾᏍᎩ ᎤᏏᏔᏗᏍᏗᏱ.\nᎡᎶ ᏦᎩᏲᎰᏎᎸ ᎬᎦᏔ ᎣᎩᏲᎰᏎᎳ.\nᏃᏗ ᎤᎴᏅᎮ ᎬᏍᎬ ᎭᎾ ᏚᎦᎵᎴ ᏚᏏᎳᏛ.\nᎯᎯᎷᏣ ᎣᎩᏱᏂᏣᏍᏛᎾ ᎨᏎᏍᏗ, ᏍᎩᏴ ᏱᎦᏛᎦᏍᏓ ᎢᏳᏍᏗ ᏣᏚᎵᏍᎬ.\n“ᏤᏍᏗ ᎤᏗᎴᎩ ᏱᏂᏍᏔᎵᏍᏔᏁᏍᏗ!” ᎤᏛᏁ ᎤᏂᏥ.\nᎠᏆᎴᏅᏔᏅ ᏥᏍᎦᎬ ᎠᏤᎯ ᎡᎶ ᎤᏂᏦᎣᏍᏙᏗ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏍᎩᎾᎵᏍᎪᎸᏓᏏ, ᎾᏍᎩ ᏦᎩᏂᏗᏱ, ᎠᏏᏴᏫ ᎯᎦᏘᏏᏗᏢ, ᏐᎢᏃ ᎯᎦᏍᎦᏂᏗᏢ, ᏣᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎾᏃ ᏩᎩᎸᏴᏨ ᎠᏯ ᎭᎾ ᏥᎩ, ᎡᏧᎳ ᎣᎩᏂᏓᏂᏴ.\n“ᎲᎦ ᎢᏴ ᏣᏕᏘᏱᎭ? \nᎾᏍᎩ Ꮎ ᎣᎩᎪᎲᎯ ᎠᎴ ᎣᎦᏛᎦᏅᎯ ᎨᏒ ᎢᏨᎾᏄᏫᏎᎭ, ᎾᏍᏉ ᏂᎯ ᎢᏣᏖᎳᏗᏍᏗᏱ ᎣᎦᏚᏓᏕᏫᏒᎢ; ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎣᎦᏚᏓᏕᏫᏒ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ.\nᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᎤᎴᏨᎩ ᎠᎴ ᏚᏃᏁᎸᎩ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎪᎲ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ ᏄᏪᏒ ᎤᎵᏃᎮᏔᏅᎢ.\nᏣᏄᏏ, ᎨᏍᏗ ᎠᏍᏆᏂᎪᎯ ᏱᎨᏎ ᎤᏬᏚᏨ, ᎤᏕᎶᎰᏎ ᏄᏬᏚᎲ ᏓᏏᎳᏛ, ᎤᎭᏲᎳ ᏏᏆ ᎤᎩᏍᏗ ᏃᎴ ᎤᏕᎶᎰᏎ ᏁᏆᎸ ᏃᎴ ᏃᏒ ᎢᏳᏩᏁᎸ ᎨᏒ.\nᎥᏝᏰᏃ ᏰᎵ ᏴᎦᏥᏁᎢᏍᏓ ᎾᏍᎩ ᎦᎶᏁᏛ ᏄᏛᏁᎸᎾ ᎨᏒ ᎠᏴ ᎠᏋᏗᏍᎬᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎬᏩᏃᎯᏳᏗ ᏂᏕᎬᏁᎲᎢ, ᎧᏃᎮᏛ ᎠᎴ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᏗᏍᎬᎢ,\nᏓᏥᏁᎢᏍᏔᏂ ᎦᎵᏥᏙᏅ, ᏰᎵ ᎤᎵᏍᎨᏓ ᏅᎩ ᏗᎦᏅᏌᏗ ᎢᎩᏩᏔᎰᎦ ᎭᏂ ᏍᎦᏚᎩ.\n“ᏔᏟᏂᏆᏅᎥᎦ!” ᎡᏝᏪᎯ ᏄᏪᏎᎢ ᎠᎦᏴᎵ ᎤᏃᏕᎾ.\nᎠᏓᏅᏛᎳ ᏣᏙᏓ ᎤᏛᏙᏗ.\nᎩᎳᏃ ᎠᏍᎩᎾ ᎤᏓᏅᎡᎴᎢ, ᎬᏂᏳᏉᏃ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎬᏩᏍᏕᎸᎯᏙᎴᎢ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᎨᏒ ᎦᏥᏬᏁᏗᏍᎬᎩ ᎡᎶᎯ; ᏯᏃᎩᏳ ᏕᎦᏕᏲᎲᏍᎬ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎪᏢᏩᏗᏒᎢ. ᎠᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᎿ ᎠᏂᏧᏏ ᏂᎪᎯᎸ ᏧᏂᎳᏫᏦᎯᏍᏗᏱ ᏥᎩ, ᎤᏕᎵᏛᏃ ᎥᏝ ᎪᎱᏍᏗ ᎠᏆᏛᏅᎯ ᏱᎩ.\nᎠᏂᏍᏔᏩᏗᏒ ᏕᏥᏅᏫᏍᏔᏅ, ᎨᏍᏗ ᎠᏕᎶᎰᎯᏍᏗ ᏱᎩ ᎾᏂᎥ ᎠᏂᏴᏫᏯ ᎭᏂ ᏍᎦᏚᎩ, ᏃᎴ ᎤᏂᏍᏔᏩᏛᏍᏗ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ ᎨᎬᏬᎣᏗ.\nᏣᏄᏏ ᎠᏥᎾᏌᎢ ᏍᏉ ᎤᏛᎦᏁ ᎠᏂᎾᏁᏍᎬᎢ. ᎤᏲᎯᏍᏔᏁ ᎬᏄᏯᎩᏍᎬ ᎪᏍᏔᏱ ᎠᏂᎴᎩ ᏓᏫᏒ, ᎤᏓᏍᏕᎸᎲᏎ.\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᎦᏔᎿᎢ ᎠᏂᏈᎫᎳ ᎠᎴ ᎠᏂᏍᏙᎢᎦ ᎬᏩᎵᏃᎮᏔᏅᎩ; ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙ ᎤᏚᎵ ᎤᏛᏗᏱ ᎯᎠ ᏄᏪᎸᏛᎾ ᎦᏬᏂᏍᎩ; ᎠᏂᏐᎢᏃ ᎯᎠ; ᏅᏩᎾᏓᎴ ᏴᏫ ᏧᎾᏤᎵ ᎦᎸᎳᏗ ᎠᏁᎯ ᏗᎦᎾᏄᎪᏫᏍᎩ ᏅᏩᏍᏗ; ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᎵᏥᏙᏁᎲᎢ ᏥᏌ ᎠᎴ ᏗᎴᎯᏐᏗ ᎨᏒ ᎤᎬᏩᎵ.\nᎠᏴᏰᏃ ᏕᎬᎦᎿᏩᏗᏙᎭ, ᎠᎴ ᎥᏝ ᎩᎶ ᏱᏙᎨᏣᏘᎷᎦ ᎤᏐᏅ ᎪᎱᏍᏗ ᏨᏁᏗᏱ, ᎤᏂᏣᏔᏰᏃ ᏴᏫ ᎠᏂ ᎦᏚᎲ ᏓᎩᎧᎭ.\nᎤᎾᏙᏓᏆᏍᎬᏃ ᎦᏚᎲ ᎣᎩᏄᎪᏨᎩ, ᎡᏉᏄᎶᏗ ᏬᎩᎶᏒᎩ ᏙᏥᏬᏁᏔᏅ ᎠᏂᎨᏴ ᎾᎿ ᎤᎾᏓᏟᏌᏅᎯ.\nᏥᏌᏃ ᎾᎿ ᎤᏂᎩᏒ ᎨᎵᎵ ᎥᏓᎷᎶᏗ ᎤᎷᏨᎩ, ᎤᎿᎷᏒᏃ ᎤᏌᎯᎸ ᎾᎿᎤᏪᏅᎩ.\nᎡᎳᏆᏗ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᎤᎾᏛᎦᏁ ᎪᏍᏚᎭ ᏅᏃ ᎠᎾᎢᏒ.\n“ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏫᎵᎻ, “ᏥᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏗ.”\nᎠᎴᏬ, ᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏨᏲᏪᎳᏁᎭ, ᎾᏍᎩ ᎤᏙᎯᏳᎭ [ᎦᎶᏁᏛ] ᎨᏒᎢ ᎠᎴ ᏂᎯ ᎨᏒᎢ; ᎤᎵᏏᎬᏰᏃ ᎤᎶᏐᏅ, ᎿᏉᏃ ᏚᏳᎪᏛ ᎢᎦᎦᏘ ᏚᎸᏌᏛ.\nᎨᏍᏗ ᏱᏚᏔᎾ ᎠᏯᏖᏅ ᎫᎭᏟ ᎠᏰᎳᏍᏗ ᎠᎴ ᎦᎷᏯᏍᏘ, ᎦᏁᎦ ᏗᎪᏒᏔᏅ ᏚᎳᏗᏍᏛ ᎤᏓᏦᎲ ᏚᏓᎥ, ᏩᏀᎢᎨ ᎤᏍᎪᏍᏗ ᏱᎨᏎ ᏍᎩᎾᎾ ᏱᏚᏔᏁ.\nᎠᏁᎵᏗ ᎦᎸᏙᏗ ᎦᏌᏙᏱᏓᏍᏗ ᏳᏌᏙᏰᎾ, ᏫᎵᎻ ᎠᏓᏍᏓᏩᏕᎨ.\nᎠᎴ ᎤᏕᏒ ᏙᎴᏛ ᎠᏄᏬ ᎤᏪᏣᏄᎶᏔᏁᎢ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏅᏁ ᎾᏍᎩ ᏅᏲᎯ ᎠᏔᎴᏛ, ᎾᏍᎩ ᎾᎿ ᎢᎸᎯᏳ ᎩᎶ ᎾᏥᏅᏅᎾ ᎨᏒᎢ.\nᎤᎬᏫᏳᎯᏃ ᎤᏤᎵ ᎧᏃᎮᏒ ᎤᏂᏃᎮᎮᎴ ᎾᏍᎩ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎦᏁᎸᎢ ᎠᏂᏯᎢ.\nᏫᎵᎻ ᏍᏉ ᎤᏚᎵᏍᎬ ᎢᏴ ᎤᎪᏩᏛᏗ.\nᎢᏳᏰᏃ ᎠᏤᎷᎯᏍᏗ ᎦᎪᎵᏍᏗ ᏂᎨᏒᎾ ᏳᏃᏴᎦ, ᎦᎪ ᏯᏛᏅᎢᏍᏓ ᏓᎿᏩ ᎤᏪᏅᏍᏗᏱ?\nᎡᎮᎾ, ᎤᏛᏅᎩ. ᎿᏉᏃ ᏈᏓᏥᏳᎯ ᎤᏣᎢᏒ ᎠᎹᏱ ᎦᏚᎢ ᎠᎢᏒᎩ ᏥᏌ ᏤᏙᎲ ᏩᎦᏛᎩ.\nᎠᎴ ᎡᏣᎵᏍᎪᎸᏓᏁᎭ ᎢᏦᎯᏳᏒ ᏄᏍᏛ ᎤᎬᏩᎸᎢ, ᎾᏍᎩ ᏗᏣᏓᏅᏙ ᏗᏍᏕᎸᏗ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎠᏂᏔᎵ ᏌᏉᏉ ᎨᏎᏍᏗ ᎤᏂᏇᏓᎸᎢ; ᎾᏍᎩᏃ ᎥᏝ ᎿᏉ ᎠᏂᏔᎵ ᏱᎩ, ᏌᏉᏉᏍᎩᏂ ᎤᏂᏇᏏᎸᎢ.\nᏂᎪᎯᎸᎾ ᎤᎾᏓᏅᏖᎴ.\nᎦᎵᏉᎩ ᏣᏁᎳ ᏩᏍᏗ ᏧᏍᏆᏴᏍᏗ ᏧᏙᎢᏓ ᏥᏍᏕᏥ, ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ ᎦᏂᎩᎵ ᎤᎾᏟᏃᎮᏗ ᎤᏓᏅᏖᎴ.\nᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏥᎦᏔᎭ ᎤᎷᎯᏍᏗ ᎨᏒ ᎺᏌᏯ-ᎾᏍᎩ ᎦᎶᏁᏛ ᏣᏃᏎᎰᎢ-ᎾᏍᎩ ᎦᎷᏨᎭ, ᏓᎩᏃᏁᎵ ᏂᎦᎥ ᎦᎱᏍᏗ.\n“ᎨᏍᏗ ᎯᎸᎯᏳ ᏱᏛᏋᎨᏫ ᎬᏅᎢ ᎢᎪᎯᏓ.”\nᏧᏓᎴᏅᎲ ᎤᎵᎪᎲᏍᏗ, ᏍᏈᏍᏔ ᎠᏓᏣᏁᎯ ᏬᏯ ᎠᏂᎷᎪ, ᎠᏂᎦᏗᏛ ᎾᏍᎩᏯ ᎤᎵᏏᎩ ᎨᏴ ᏧᎦᏃᏮ ᎢᏣ ᎦᎸᎶᎢ, ᎤᏍᎪᏍᏓ ᎤᎵᏑᏫᏛ ᎠᏙᎯ ᏩᏂᎷᎪ, ᎦᏲᏟ ᏧᏙᏓᏆᏓ, ᎾᏍᎩᏯ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᎧᎭᏛ ᏥᏍᏆ ᎭᏫᏯ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᎤᏍᏆᎸᎲᎩ ᎠᏂᏧᏏ ᏧᎾᎵᏍᏓᏴᏗᏱ; ᎠᎴ ᏥᏌ ᏥᎷᏏᎵᎻ ᎤᏪᏅᏒᎩ.\nᎾᏍᎩ ᎤᏛᎦᏅ ᏥᏌ ᎠᏥᏃᎮᏍᎬᎢ, ᎣᏂᏗᏢ ᎤᏅᏘᏛ ᏄᎾᏛᏅ ᎤᎷᎯᏍᏔᏁ, ᎠᎴ ᎤᏒᏂᎴ ᎤᏄᏮᎢ.\nᎠᏴᏫᏯᎯ ᏧᏍᏆᏅᎾ ᏚᎾᎾᏬᏍᏔᏁᎢ.\nᎰᎻ ᎤᏄᎩᏣᏁᎢ ᎠᎳᏂ.\nᎠᏤᎯ ᎤᎩᏓᏟ ᎤᏬᏛᎸᎲ ᎠᏰᎳᏍᏘ ᎬᏘ, ᎦᏁᎯ ᏗᎪᏪᎶᏙᏗ ᏭᎳᏛ, ᎦᏲᏟ ᏧᏬᏪᎳᏅ ᏃᏉ ᏭᏩᏂᎦᎸᏅ ᎪᏪᎵ, ᎡᎳᏗ ᏭᏓᎩᏅᏒ, ᎾᏍᎩᏯ ᏕᏧᎬ ᏣᏛᏍᎪ ᎪᏪᎵ.\nᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎩᏲᎴ ᎠᏂ ᎡᎶᎯ, ᎠᎴ ᎬᏂᎨᏳᎢᏳ Ꮭ ᎪᎱᏍᏗ ᏴᎨᏗᏄᎪᏩ.\nᎾᏍᎩ ᎤᏚᎩ ᎦᎬᏗ ᏂᎨᏒᎾ ᏥᎨᏎᎢ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏧᏬᎯᏳᏁᎢ, ᎾᏍᎩ ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏙᏓ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏂᏧᏈᏍᏕᏍᏗ ᏣᏁᏢᏔᏅᎯ;\nᎤᏦᎢᏎᏗ ᎤᎵᏖᎸᏁᎢ ᎦᏍᎩᎶᏘ ᎪᏱᏁ.\nᎠᏎ ᏱᏄᎾᎵᏍᏔᏏ ᎤᏂᎭᏲᏗ ᎤᏂᎩᏍᏗ, ᏧᎾᏦᎯᏍᏗ ᎤᏍᏗ ᎤᎾᏓᏓᏍᎩ ᎤᏂᎭᏲᎲ ᎤᎾᎵᏍᏖᎸᏙᏗ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᏥᏔᏲᏎᎭ ᎾᏍᎩ ᏂᎯ ᎪᎱᏍᏗ ᎤᏐᏅ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ ᏂᎨᏒᎾ; ᎥᏝ ᎠᏴ ᎣᏏᏳ ᎣᎩᏰᎸᏒ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏆᏚᎵᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᏂᎯᏍᎩᏂ ᎾᏍᎩ Ꮎ ᏚᏳᎪᏛ ᎨᏒ ᎢᏣᏛᏁᏗᏱ, ᎤᏁᎳᎩ ᎣᎩᏐᏅᎢᏍᏔᏅᎯ ᏱᏅᏩᏍᏗ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎠᏎᏉ ᏂᏨᏁᎰ ᎢᏨᏗᏍᎪ ᏂᎯ ᎢᏥᏁᏨᎢ; ᎠᎴ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎾᏍᎩ ᎢᏳᏍᏗᏓᏂ ᏂᏣᏛᏁᎰᎢ.\nᎿᏉᏃ ᏚᏲᎯᏎᎸᎩ ᎤᎾᏛᏗᏱ. ᎤᏂᏂᏴᏛᎩᏃ ᏥᏌ ᎠᎴ ᎤᎾᏘᎾᏫᏛᎲᎩ.\n”ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᎠᎳᏂ.\nᏂᎦᏓᎮᎾ ᎤᏩᎾᏕ ᎡᎵᏍᎨ ᏩᎭᏯ.\nᎿᏉᏃ ᏚᏰᎵᎯᏍᏔᏅ ᎤᏂᏣᏘ ᎣᏓᎸ ᎤᎿᎷᏒᎩ ᎤᏩᏒ ᎨᏒᎢ, ᎤᏓᏙᎵᏍᏔᏅᏒᎩ. ᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎾᎿ ᎤᏩᏒᏉ ᎨᏒᎩ.\nᎰᏩᏃ ᎦᏚᎲ ᎤᏂᏄᎯᏨᎩ, ᎠᎴ ᎥᎬᏩᎷᏤᎸᎩ.\nᎥ, ᎠᏆᏛᏅ.\nᎠᏂᏲᎵᎮᏉ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ.\nᎢᎦᏛᏃ ᎨᏥᎪᎵᏰᏍᎨ ᎦᎨᏥᏐᏢᏗᏍᎬ ᎠᎴ ᏕᎨᏥᎵᎥᏂᎲᎢ, ᎠᎴ ᎾᏍᏉ ᏕᎨᎦᎸᎢᎲ ᎠᎴ ᏕᎨᏥᏍᏚᎲᏍᎬᎢ;\nᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᏥᎪ ᎤᏁᎳᏅᎯ ᎢᏴᏛ ᏂᏚᏩᏁᎸ ᏧᏤᎵ ᏴᏫ? ᎬᏩᏟᏍᏗ. ᎠᏴᏰᏃ ᎾᏍᏉ ᏥᎢᏏᎵ, ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ ᏅᏛᏆᏓᎴᏅᎯ, ᏇᏂ ᎠᏂᎳᏍᏓᎸ ᎨᎳ.\nᎤᏁᎳᏅᎯᏰᏃ ᎠᏉᎯᏳᏓᏁᎯ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏥᏥᏯᏛᏁᎭ ᎠᏆᏓᏅᏙ ᏥᎬᏗᎭ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏪᏥ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏂᎬᏁᎲᎢ, ᎾᏍᎩ ᏂᏥᏲᎯᏍᏗᏍᎬᎾ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ, ᏂᎪᎯᎸ ᎦᏓᏙᎵᏍᏗᏍᎬ.\nᏚᏙᏓᏈᏒ ᎣᏁᎯ, ᎠᎾᏓᏩᏛᎯᏙ ᎠᎦᏕ ᏓᏟᏃᎮᏗᏍᎨ ᎰᎻ, ᎤᏩᎨᏫᏎ ᏦᎨᏏ ᏧᎷᏫᏍᏔᏁᏗ.\nᎤᏓᏓᎩᏅᏎ ᏃᎴ ᎤᎵᏰᏔᏁᎢ ᎠᏑᎵᎪᎬ.\nᎠᎴ ᏧᏓᎴᏅᏛ ᏗᎬᏩᏂᎸᏫᏍᏓᏁᏗ ᎢᎨᎬᏁᏗ ᎨᏒᎢ, ᎠᏎᏃ ᎾᏍᎩᏉ ᏌᏉ ᎤᏁᎳᏅᎯ ᏂᎦᏛ ᎾᏍᎩ ᏗᎬᏩᏂᎸᏫᏍᏓᏁᏗ ᎢᎨᎲᏁᎯ ᎾᏂᎥᎢ.\n“ᎭᏩ, ᏕᏂᎬᏩᏝᎦ,” ᎤᏛᏁ ᏥᏍᏕᏥ.\nᏥᎪ ᏌᏉ ᎦᏄᎪᎬ ᏗᎦᏄᎪᎪ ᎤᎦᎾᏍᏛ ᎠᎹ ᎠᎴ ᎤᏴᏍᏗ?\nᎾ-ᏍᎩᏂ ᎤᏓᎵ ᎠᏓᏅᏖᏍᎪ ᏧᏓᎴᏅᏛ ᎡᎶᎯ ᎡᎯ, ᎢᏳᏛᏁᏗᏱ ᎤᏓᎵᎢ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ.\nᎠᏆᏛᏅ.\nᎤᏥᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎨᏥᏅᏏᏓᏍᏗ; ᏂᎦᎥ ᏂᏥᏪᏎᎲ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎭ.\nᎦᎦᏛᏃ ᏓᎾᏠᏱᎮ ᎠᎴ ᎠᏂᏍᎪᏂᎮᎢ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ ᏗᏣᏠᏱᎸᎩ; ᎥᏝ ᏳᏲᎱᏒ, ᎦᎵᎭᏉᏍᎩᏂ.\n“ᏍᎩᏃᎯᏏ ᎢᏳᏍᏗ ᏅᏁᎲᎢ ᎭᏩᏧ,” ᎤᏍᏗᏰᏔᏁ ᏫᎵᎻ.\nᎩᎶ [ᎤᏁᎳᏅᎯ] ᎤᏪᏥ ᎠᏓᏱᎯ, ᎾᏍᎩ ᎥᏝ ᏳᏪᎭ ᎠᎦᏴᎵᎨᎢ; [ᎾᏍᎩᏍᎩᏂ Ꮎ ᎪᎯᏳᎲᏍᎩ ᎤᏪᏥ ᎾᏍᎩ ᎤᏪᎭ ᎾᏍᏉ ᎠᎦᏴᎵᎨᎢ.]\nᎾᏂᎥ ᎨᏣᏔᏲᏎᎯ ᏕᎯᏁᎮᏍᏗ; ᎪᎱᏍᏗᏃ ᏣᎾᎥ ᏣᎩᎡᎯ ᏞᏍᏗ ᎯᎳᏲᏎᎸᎩ.\nᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏳᎳ ᎢᏨᏃᏁᎸ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏛᏓᏍᏔᏁᎢ; ᎦᏙᏃ ᎢᏣᏚᎵ ᏔᎵᏁ ᎢᏣᏛᎪᏗᏱ? ᎾᏍᏉᏍᎪ ᏂᎯ ᎢᏣᏚᎵᎭ ᎡᏥᏍᏓᏩᏗᏙᎯ ᎢᏣᎵᏍᏙᏗᏱ.\n“ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ,” ᎤᏛᏁ ᏌᏌ.\nᏂᎦᏓᏃ ᏣᏂᎧᏔᎮᎢ ᎠᏓᏪᎯ ᎨᏒ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎨᏒ ᏃᎴ ᎢᏳᏊ ᏗᏁᎳᏔᏂᏒᎢ ᎤᏅᎪᎢᏍᏗ ᎭᎾ ᎠᏔᎸᎧᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏨᏁᎲ ᎠᏥᎪᏗ ᎨᏒᎢ, ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎢᏨᏗᏍᎨᏍᏗ ᏕᏣᏓᏁᏤᎲ ᎾᎥ ᎢᏣᏓᎳ; ᏕᎦᏚᏓᏕᏫᏒᏰᏃ.\nᏩᎾᎢ ᎤᏂᏏᏗ ᎦᏟᎮ ᏫᎵᎻ.\nᎯᎪ ᏑᎾᎴ ᏣᏍᏆᏙᏅ, ᎠᏯ ᏍᏉ ᎠᎦᏍᏆᏙᏅ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ.\nᎯᎠᏃ ᎪᏪᎵ ᎦᏅᏙᏗ ᎣᏂᏴ ᎩᎶ ᎠᏙᎯ.\n“ᏓᏆᎴᎳ ᏫᎲᎦ ᎤᏁᏍᏔᎳ ᎤᏅᏗ ᏧᎾᏦᏯᏍᏗ ᎠᏥᏍᏔᏅᎯ!” ᎤᏓᏅᏫᏍᏔᏁ ᎡᎶᏗ.\nᏥᏌᏃ ᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎬᏩᎪᎮ ᎾᏍᎩ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ, ᎾᏍᎩ ᏑᎾᏓᏡᎩ ᎬᏩᏴᎸᎯ, ᎤᏬᎴᎢ, ᎠᎴ ᏚᏄᏪᎢ, ᎠᎴ ᏙᎯ ᎤᏓᏅᏖᎢ; ᎠᎴ ᎠᏂᏍᎦᎢᎮᎢ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᎮᎦ ᏌᎾᏱ ᎣᏓᎸ ᏓᏟᎶᏍᏗ, ᎡᎴᏈᎠ ᏦᏓᎸ, ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎾᏍᎩᏯ ᏥᎩ, ᎾᏍᎩ ᎪᎯ ᏄᏍᏛᎢ, ᎾᏍᎩᏰᏃ ᏕᎨᏥᎾᏝᎠ ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ.\nᏏᏲ ᎤᏛᏁ ᎠᎬᏱ ᎤᏅᎪᏨ ᎧᏅᏂᏍᎩ, ᎠᏎᏃ ᎡᏝᏪᎯ ᏄᏪᏎ. ᎨᏍᏗ ᏳᏛᎦᎾ ᏫᎵᎻ.\nᎤᏕᎰᏌᏘᏰᏃ.\nᎤᏂᎩᏍᏗᏱ ᏗᏓᏂᏐᏗᏱ ᎤᎵᏍᏚᎢᏛ ᏥᎨᏐ ᎾᏍᎩᏯᎢ; ᏗᏂᏃᎪᎢ ᎠᎾᏓᎶᏄᎮᏗᏍᎪᎢ, ᎢᎾᏛ ᏚᏂᏁᎲ ᎠᏓᎯᎯ ᏚᏂᎭᏁᎦᎸ ᎭᏫᏂᏗᏢ ᏚᏂᏁᎭ.\n”ᎤᏙᏳᎯ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎦᏢᏍᎩ ᏌᎳᏓ ᎤᏒᎯ ᏚᎷᏫᏍᏔᏁᎸ, ᎤᏰᏤ ᏚᎦᏙᏍᏕᎢ.\nᎠᎴ ᎠᏆᏚᎵ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ, ᎾᏍᎩ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎨᏒ ᎦᎶᏁᏛ ᎠᏍᎪᎵ ᎨᏒᎢ; ᎠᎨᏴᏃ ᎨᏒ ᎠᏍᎪᎵ ᎠᏍᎦᏯ ᎨᏒᎢ; ᎦᎶᏁᏛᏃ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏍᎪᎵ ᎨᏒᎢ.\nᎠᏎᏃ ᏞᏍᏗ ᏙᎯᏳᏅᎩ; ᏅᎦᏍᎪᎯᏰᏃ ᎤᏗᏢᏍᏙᏗ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎬᏩᎭᎷᎦ, ᎾᏍᎩ ᎤᎾᏎᎵᏔᏅᎯ ᏚᎾᏓᏁᏤᎸ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎤᎾᏗᏔᏍᏗᏱ ᏂᎨᏒᎾ, ᎬᏂ ᎤᏂᎸᎯ ᎨᏎᏍᏗ; ᎿᏉᏃ ᎤᎾᏛᏅᎢᏍᏗ ᎠᏂᎦᏘᏴ ᎤᎾᏛᎪᏗᏱ ᏣᏚᎢᏍᏔᏅᎢ.\nᎹᏏᏙᏂᏰᏃ ᏬᎩᎷᏨ, ᎥᏝ ᎣᎩᏇᏓᎸ ᎬᏩᏣᏪᏐᎸᏍᏙᏗ ᏱᎨᏎᎢ, ᎬᏩᏚᎾᏛᏍᎩᏂ ᎣᎦᏕᏯᏙᏗᎬᎩ; ᏙᏱᏗᏢ ᎠᎵᏛ ᎨᏒᎢ, ᎭᏫᏂᏃ ᎢᏗᏢ ᎣᏥᎾᏰᏍᎬᎢ.\nᎢᏨᏬᏁᏔᏅᏰᏃ ᎥᏝ ᎠᏓᎴᎾᏍᏗᏍᎩ ᏱᎨᏎᎢ, ᎥᏝ ᎠᎴ ᎦᏓᎭᎢ, ᎥᏝ ᎠᎴ ᎠᏠᏄᎮᏛ;\nᎠᏦᎭᏴ ᎠᏂᏓᎪᏎᎬ ᎤᏂᏍᎦᏅᏨ, ᎢᏂᎦᏗᏛ ᏥᏧᏥᏉ ᏥᎨᏒ ᏦᎦᏓᏙᎵᏨ, ᎦᏙ ᎠᏂᏅ ᎠᏓᏴᏍᏔᎩᏍᎩ ᏓᎾᏗᏔᏍᎬ, ᎧᏁᏌ ᎦᏂᏏᏅᏍᏗ ᏕᎦᎶᏛ ᎤᏂᏩᏒ, ᏗᏥᎾᏌ ᎠᏂᎦᏘᏴ ᏩᏳᏍᏙᏗ ᎭᏫᏂ.\nᎩᎶ ᎤᏩᏒ ᎬᏅ ᎤᏍᏕᎸᏗᏱ ᎤᏲᎮᏍᏗ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏲᎱᏎᎮᏍᏗ, ᎾᏍᎩ ᎤᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎤᏂᏌᏁ ᎤᏪᏥ ᏃᎴ ᎣᎭᏁ ᎤᏂᏌᏁ ᎤᏓᎵ.\nᎤᏓᏑᏰᏛᏃ ᎠᎾᎵᏖᎸᎲᏍᎬ ᎤᎵᏙᎯᏍᏔᏅ, ᏉᎳ ᏫᏚᏯᏅᎲᎩ ᎠᏃᎯᏳᎲᏍᎩ, ᏚᏲᎵᎸᏃ, ᎤᏂᎩᏒᎩ ᏑᏏᏙᏂ ᎤᏪᏅᏍᏗᏱ ᎤᏰᎸᏅᎩ.\nᎯᏍᎩᏃ ᎢᏯᏂᏛ ᎠᏂᎦᏔᎿᎢ ᎨᏎᎢ, ᎯᏍᎩᏃ ᎤᏂᏁᎫ.\nᏂᎪᎯᎸᎾ ᎤᎪᎮ ᏥᏍᏕᏥ ᎠᏯᏖᏅ ᎤᏦᎣᏏᏗᏒ.\nᎾᏍᎩ Ꮎ ᎤᏛᎦᏅ ᏥᏌ ᏧᏗᏱ ᏧᎶᏒ ᎨᎵᎵ ᎤᎷᏥᎸᎢ, ᎤᏩᏛᎲᏒᎩ, ᎠᎴ ᎤᏔᏲᏎᎸᎩ ᎤᏪᏅᏍᏗᏱ ᏭᏅᏬᏗᏱ ᎤᏪᏥ, ᎤᏲᎱᏏᏕᎾᏰᏃ ᎨᏒᎩ.\nᎤᏃᎴ ᏗᏲᏙᏗ ᎧᏂᎩᏓ ᎨᏎᎢ.\n”ᏙᎢᏳᏍᏗ ᏓᏂᏂᏱᏍᎪ ᏴᏫ ᎭᎾ Queensborough ᎠᏒᏨ---ᏍᎪᏯᎨ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᏩᎩᎷᏣ ᏧᏂᎷᏫᏍᏔᏁᏗ, ᎨᏍᏗ ᎭᎲᎦ ᏯᏉᏎᎳ ᏗᎪᏪᎵᏍᎩ, ᏰᎵ ᎪᎯᏓ ᏓᏆᎧᎾᏅ, ᎨᏍᏗ ᎪᎯᏛ ᏱᏓᎬᏲᏍᏓᏁᎸ, ᎦᏕᎶᎣᏍᎦ ᏗᎵᏍᏇᏔᏬ ᎢᏗᏅᏁ ᏃᎴ ᏗᎳᏑᎶ ᎢᏗᏅᏁ ᏗᏣᏦᎯᏍᏗ ᎨᏒ.\nᎠᎴ ᎦᎵᏦᏔᏅᎯ ᏩᎦ ᎠᎩᎾ ᏫᏘᏯᏅ, ᎠᎴ ᎡᏥᎷᎦ; ᎠᎴ ᎢᏓᎵᏍᏓᏴᎲᎦ, Ꭳ-Ꮫ ᎢᏓᏓᏅᏓᏓ.\nᎠᎴ ᎢᏤ ᏥᏓᏂᏃᎩᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ ᎢᎬᏱᏗᏢ ᎦᏍᎩᎸᎢ, ᎠᎴ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅ ᎢᎬᏱᏗᏢ, ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᏄᎾᏛᏅᎢ; ᎥᏝ ᎠᎴ ᎩᎶ ᎬᏩᏕᎶᏆᏍᏗ ᏱᎨᏎ ᎾᏍᎩ Ꮎ ᏗᎧᏃᎩᏍᏗ Ꮎ ᎤᏅᏒ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ, ᎾᏍᎩ ᎡᎶᎯ ᎨᎪᏣᎴᏛ ᎨᎦᎫᏴᏛ ᎨᏒᎢ.\nᎭᏢᎨᏃ ᎠᏢᏆᏍᏗ ᎨᏒᎢ? ᎢᏴᏛ ᎢᎬᏁᎸᎯ. ᎦᏙ ᎤᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎦᏔᏅᎯ? ᏗᎦᎸᏫᏍᏓᏁᏗᏱᏍᎪ ᎠᏓᏁᏤᎯ? ᎥᏝ; ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᎬᏔᏅᎯ ᎪᎯᏳᏗ ᎨᏒ ᎠᏓᏁᏤᎯ.\nᎩᎶᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᏣᏥ ᎠᎴ ᎢᏣᎵᏅᏟ ᏙᏱ ᎠᏂᏙᎾᎠ, ᎨᏣᎵᏃᎮᏙᏗᏱ ᎤᎾᏚᎵᎭ.\nᏔᎵᏁ ᎢᎦ ᎢᏅᏪᏅᏎ ᎠᎴ ᎾᏍᏉ ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎤᏒᎯᏴ Ᏹ, ᎾᏍᎩᏯ ᏂᎤᏛᏁᎴᎢ.\nᎥᏝ ᎿᏉ ᏠᎨᏏ ᎦᎳᎨᏯᏛᏗ ᎠᎴ ᎣᏍᏛ ᎦᏓ ᎦᏡᎬ ᎬᏗ ᏱᎨᏐᎢ; ᏭᎾᏕᎪᏉ. ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ.\n“ᏄᏓᎴ ᎪᎨ ᎠᎵᏛᏓ,” ᎭᏫᏂ ᎤᏛᎴᎮ.\nᎾᏍᎩ ᎯᎠ ᏔᎳᏚ ᎢᏯᏂᏛ ᏥᏌ ᏚᏅᏒᎩ ᏑᏁᏤᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᎢᏗᏢ ᏞᏍᏗ ᏫᏥᎶᏒᎩ, ᎠᎴ ᏌᎺᎵ ᎠᏁᎯ ᏚᏂᏚᎲ ᏞᏍᏗ ᎢᏥᏴᎸᎩ\nᏕᏣᏙᎥ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎸ ᎠᏂᏍᎦᏯ ᎡᎶᎯ ᏔᏑᏰᏛ ᏗᏍᎩᎧᏁᎸᎯ ᏥᎩ. ᏗᏣᏤᎵᎦ ᎨᏒᎩ, ᎠᎴ ᏕᏍᎩᎧᏁᎸᎩ; ᎠᎴ ᎤᏂᏍᏆᏂᎪᏔᏅ ᎧᏃᎮᏛ ᏣᏤᎵᎦ.\nᎿᏉᏃ ᎠᏏᏉ ᎾᏍᏆᎵᏍᎬᎾ ᎨᏒ ᎢᏨᏃᎲᏏ, ᎾᏍᎩ ᎠᏍᏆᎸᎲᎭ ᎢᏦᎯᏳᏗᏱ.\nᎤᎬᏫᏳᎯᏃ ᎿᏉ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᏠᎾᏍᏗ! ᏝᏍᎪ ᏂᎯ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎤᎾᏙᏓᏆ-ᏍᎬ ᏰᏤᎵᏌᏕᏍᎪ ᏗᎨᎳᏍᏗᏱ ᎢᏣᏤᎵ ᏩᎪ ᎠᎴ ᏐᏈᎵᏗᎦᎵᎠᏅ-ᎯᏛ, ᎠᎴ ᏰᏣᏘᏁᎪ ᎠᎹ ᏰᏣᏗᏔᏍᏔᏁᎪᎢ?\nᎤᏂᏲᎲᎩ ᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒ ᎦᏛᎬᎢ ᎠᏓᏅᏙ ᎦᎶᏁᏛ ᎤᏤᎵᎦ ᎾᏍᎩ ᎤᏂᏯᎥᎢ, ᎢᎬᏱ ᎦᏰᎯ ᎬᏂᎨᏒ ᏥᏂ-ᎬᏁᎮ ᎤᎩᎵᏲᎢᏍᏗᏱ ᎦᎶᏁᏛ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎣᏂ ᎤᎾᏄᎪᎢᏍᏗᏱ.\nᎠᎴᎾ ᎠᏂᏐᎢ.\n ᎭᏩ ᏧᏍᏆᏴᏍᏗ, ᎣᏏᏉᏗ ᎨᏎᏍᏗ ᎣᎳ ᏗᎦᏃᏣᏟ, ᎡᎵᏍᏗ.\nᎠᏂᏍᎦᎢᎲ ᎦᏓᏁᏍᏙ ᎤᎵᏏᎩ ᎠᏙ ᏃᎴ ᏚᏅᏓᏒ, ᎾᏍᎩᏯ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏂᏍᎦᏎᏗ ᎠᏂᏍᎦᏯ. ᏗᏂᏰᎸ ᏩᎦ ᏧᎧᏅᏍᏔᏟ ᏗᏂᏍᎪᎵ.\nᏰᎵ ᎢᎫᏩᎾᏕᏁᏗ ᎨᏒ, ᎠᎾᏕᏒᏂᏙᎲ, ᏚᏂᏴᏍᏔᎩᏍᎬ, ᎤᏒᎯ ᏔᎵᎭ ᎢᏳᎦᏘ ᏑᎾᏙᏓᏆᏍᏗ.\nᎠᎴ ᏄᏍᏛ ᏭᏓᎪᎾᏛᏛ ᎡᏉᎯᏳ ᎨᏒ ᎤᎷᏂᎬᎬ ᎬᏂᎨᏒ ᏂᎬᏁᎸ ᎢᎪᎯᏳᏅᎯ ᏥᎩ, ᎾᏍᎩᏯ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏣᏔᏅᎯ ᎤᎵᏂᎩᏛ ᎨᏒᎢ,\nᎠᏏᏴᏫᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᏥᏌ ᎦᏁᏥᏱ ᎦᏍᏛᎦᎸᎩ, ᎾᏍᎩ ᏥᏌ ᎤᎨᏳᎯ.\nᎠᏎᏃ ᏗᎵᏰᎢᎶᎵ ᎢᎦ ᏓᎨᏥᏯᏅᎡᎵ ᎤᏕᏒᏂᎸᎯ, ᎾᎯᏳᏃ ᎿᏉ ᎠᎹᏟ ᎠᏅᏍᎨᏍᏗ.\nᎠᎴ ᎾᏍᎩ ᎠᏥᏩᏛᎡᎸᎩ ᎤᏂᎩᎬ ᎠᎾᏙᎴᎰᏍᏗ, ᎠᎴ ᎤᎾᏓᏅᏘ, ᎠᎴ ᏂᎦᏛ ᎡᎶᎯ ᏗᎨᏥᎸᎯ ᎨᏒᎢ.\nᎨᏥᏅᏏᏛᏃ ᎢᎤᏂᎷᏨ, ᎬᏩᏃᏁᎴ ᏂᎦᏛ ᏄᎾᏛᏁᎸᎢ. ᏚᏘᏅᏎᏃ ᎠᎴ ᎤᏅᏒ ᎨᏒ ᎢᎾᎨ ᏭᎶᏎ ᎦᏚᎲ ᎾᎥ ᏇᏣᏰᏗ ᏣᏃᏎᎰᎢ.\nᎤᏂᏣᏛᎩᏃ ᎤᎾᏓᏑᏴᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏍᎩᎾ ᎤᏯᎠ, ᎠᎴ ᎤᎸᏃᏘᎭ; ᎦᏙᏃ ᎢᎡᏣᏛᏓᏍᏓᏁᎭ?\nᏥᏌᏃ ᎯᎠ ᏄᏪᎭᎴᎢ; ᏍᎩᏍᏓᏩᏚᎦ, ᎤᎾᏁᎳᎩᏃ ᏧᏂᏲᎱᏒᎯ ᏓᏂᏂᏏᏍᎨᏍᏗ ᏧᎾᏤᎵ ᏧᏂᏲᎱᏒᎯ.\nᎭᎴᏫᏍᏓ!\nᎠᎴ ᎾᏍᏉ ᎤᎪᎮ ᎩᎶ ᎢᏳᏍᏗ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎾᎿ ᎠᎲᏍᎨ ᏔᎵ ᎠᎩᏄᏛᏗ ᎢᏯᏓᏅᏖᏗ.\nᎢᏳᏍᎩᏂ, ᎢᎩᏲᎲ ᎦᎶᏁᏛ ᎢᎫᏓᎴᏍᏗᏱ, ᎬᏂᎨᏒ ᏱᏄᎵᏍᏔᏅ ᎢᎬᏒ ᎾᏍᏉ ᎢᏗᏍᎦᎾᎯᏳ ᎨᏒᎢ, ᎦᎶᏁᏛᏍᎪ ᎠᏍᎦᎾ ᎠᏍᏕᎵᏍᎩ ᏂᎦᎵᏍᏗᎭ? ᎬᏩᏟᏍᏗ.\nᎠᏓᎴᏴᏗᏍᎩ.\nᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎥᏝ ᎾᏍᎩ ᏣᏃᎵᏤ ᎢᎬᏱᏱ, ᏥᏌᏍᎩᏂ ᎠᏥᎸᏉᏔᏅ ᎿᏉ ᎤᎾᏅᏓᏛᎩ ᎾᏍᎩ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸ ᎠᏥᏃᎮᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏂᎬᏩᏁᎸᎢ.\nᎠᏎᏃ ᏍᎩᎾᎾ ᏄᏛᏁᎴ.\nᏯᎵᏖᎸᎮᏍᎬᎾ ᎦᏙᎨ ᏫᎵᎻ ᎠᏕᎶᎰᏍᎨᎢ ᎢᏧᎳ ᎢᏣ ᏫᎦᏩᏙᎥᏍᎬ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ.\nᎾᏍᎩ ᏧᏂᎾᏫ ᎤᎦᎵᏍᏗ ᏗᎬᏩᏓᏅᏓᏗᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏚᎾᏚᏓᏕᏫᏍᏛ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏭᏂᏱᎶᎯᏍᏗᏱ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎨᏒ ᏄᏜᏏᏛᏒᎾ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎪᎵᏍᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, ᎤᏂᎦᏙᎥᎯᏍᏗᏯ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎤᏤᎵᎦ, ᎠᎴ ᎦᎶᏁᏛ ᎤᏤᎵᎦ;\nᎠᏗᎾ ᏞᏍᏗ ᎡᏥᏍᎦᎩ ᎢᏳᏍᏗ ᏰᏣᏓᏅᏖᏍᎨᏍᏗ, ᎡᏥᎬᏍᎪᎸᎥᏍᎨᏍᏗᏍᎩᏂ ᎢᏣᏓᏅᏟ ᎾᏍᎩᏯᎢ.\nᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎣᏍᏛ ᎧᏃᎮᏛ ᏧᏂᏲᎱᏒᎯ ᎾᏍᏉ ᎨᎦᎵᏥᏙᏁᎴᎢ, ᏗᎨᎫᎪᏓᏁᏗᏱ ᎤᏇᏓᎵ ᎨᏒ ᎾᏍᎩᏯ ᏴᏫ ᏧᏄᎪᏙᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏧᏭᎪᏙᏗ ᎨᏒ ᏗᏅᏃᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏧᎾᏓᏛᏙᎩᎯ ᎨᏒᎢ.\nᎠᏎᏃ ᎢᏅᎯᎨᏍᏗ ᎢᏴ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎠ ᎾᏍᏉ ᏂᎬᏅ ᎢᎪᏪᎳ; ᏞᏍᏗ ᎯᎪᎵᏰᎥᎩ ᏱᎰᏩ ᏣᏁᎳᏅᎯ.\nᎤᎸᏂᏗᏍᎩ ᎢᏳᏍᏗ ᎨᏎ ᏗᎦᏙᎵ.\n“ᎯᎠᏛ ᎾᏅᏛᏁᎰ ᏱᎾᏚᎳᏑᏝᎾ,” ᎤᏛᏁ ᏩᎭᏯ - ᏙᏳ ᎠᎩᏟᏲᎦ ᏃᏊ.  \nᎦᎦᎨ ᎤᎦᏙᎥᏐ ᏱᎰᏩ ᎤᏓᏅᏛᎢ, ᎾᏍᎩ ᏰᎵ ᎬᏪᏲᏗ ᎢᎬᏩᎵᏍᏙᏗ? ᎠᏴᏍᎩᏂ ᎦᎶᏁᏛ ᎤᏓᏅᏛ ᎢᎨᎭ.\nᎤᏂᏣᏛᎩᏍᎩᏂᏃᏅ ᎾᏍᏉ ᎤᏂᎬᏫᏳᎯ ᎬᏬᎯᏳᏅᎩ; ᎠᏎᏃ ᎠᏂᏆᎵᏏ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎥᏝ ᎬᏂᎨᏒ ᏱᏄᏅᏁᎴᎢ, ᏗᎦᎳᏫᎢᏍᏗᏱ ᏱᏙᎩᏄᎪᏩ ᎠᏁᎵᏍᎬᎩ.\nᎾᏍᎩᏃ ᏄᏪᏒ, ᏚᎾᏄᎪᏫᏎᎸᎩ ᏧᏬᏰᏂ ᎠᎴ ᎠᏍᏆᎨᏂ. ᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎣᏍᏛ ᎤᎾᏓᏅᏓᏛᎩ ᎤᏂᎪᎲ ᎤᎬᏫᏳᎯ.\nᎿᏉᏃ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; [ᎤᏁᎳᏅᎯ] ᎤᏪᏥ ᎥᏝ ᏰᎵᎦ ᎪᎱᏍᏗ ᎤᏩᏒ ᎨᏒ ᏱᏙᎬᏩᎸᏫᏍᏓᏏ, ᎠᎪᏩᏘᏍᎬᏍᎩᏂ ᎤᏙᏓ ᏚᎸᏫᏍᏓᏁᎲᎢ; ᎾᏍᎩᏰᏃ ᏄᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ ᎾᏍᎩ ᎾᏍᏉ ᎤᏪᏥ ᏚᎸᏫᏍᏓᏁᎰᎢ.\nᎬᏩᏛᏛᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᏗᏃᏪᎵᏍᎩ ᎢᎳᏯ ᎢᎬᏱ ᏓᎦᎷᏥ ᏣᎾᏗᏍᎪᎢ?\nᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᏫᎬᏲᏪᎳᏏ, ᎠᎴ ᎤᏚᎩ ᎠᏋᎭ ᏂᎪᎯᎸᎾᏉ ᏫᎬᎷᏤᏗᏱ;\nᎤᏍᎪᏒ ᏭᏕᎵᏨ ᎤᎦᏙᏍᏕ ᏫᎵᎻ.\n”ᎯᎦᏔᎭᏍᎪ ᎢᎪᎯᏓ ᏚᏟᏰᎵᏙᎸ ᎤᏂᏒᏣᏗᏍᏗ?\nᎾᏍᎩᏯ ᎾᏍᏉ ᏰᎵᎦᎾᎨ ᏗᏍᎩᏯᏓᏂᎸᏨᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏴ ᎨᏒ ᎢᏨᏯᎵᎡᎵᏍᏗᏍᎬᎢ, ᎾᏍᎩᏯ ᏍᎩᏯᎵᎡᎵᏍᏙᏗ ᏥᎩ, ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏤᎵ ᎢᎦ ᎨᏎᏍᏗ.\nᎢᎤᏍᏗᏯᏛᎾ ᏳᎳᏍᏕᎵᏴᏌ ᏗᎧᎾᏗ ᎠᏎᏃ ᏅᏱ ᎠᏍᏓᏱ ᏥᎨᏎᎢ ᎱᏁᎦᎸᎢ ᏃᎴ ᎨᏍᏓᏗ ᎦᏟᏓ ᎬᏔᎸᎦᏍᏙᏗ ᏱᎨᏎᎢ.\nᎠᏎᏃ ᎤᏓᏱᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎨᏴ, ᎥᏝ ᏱᏥᎦᏔᎭ ᎾᏍᎩ.\nᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ; ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏙᏓᎧᏁᏤᎵ ᏗᎨᏣᎧᎾᏩᏗᏓᏍᏗᏱ ᎨᏣᏍᏆᏂᎪᏙᏗᏱ;\nᏕᎫᎪᏓᏁᎸ ᎠᎴ ᎡᏥᎸ ᎾᏍᎩᏅᎾ, ᎥᏝ Ꮓ ᏱᏣᏞᏤᎭ.\nᎠᎦᎸᏓ ᏱᎬᏃᎢᏏ.\nᎯᎠᏃ ᏂᎦᏪᏍᎨ: ᎤᏍᏆᏂᎩᏗ ᏏᏆ!\nᎾᏍᎩᏯ ᏂᏚᏪᏎᎸ ᏗᎩᎦᏴᎵᎨᎢ, ᎡᏆᎭᎻ, ᎠᎴ ᎾᏍᎩ ᏧᏁᏢᏔᏅᏛ ᎨᏒ ᏂᎪᎯᎸᎢ.\nᎪᎯ ᎾᏍᎩ ᏦᎢᏁ ᎿᏉ ᏥᏮᏓᏨᎷᏤᎵ. ᎠᏂᏔᎵ ᎠᎴ ᏦᎢ ᎠᏂᎦᏔᎯ ᏗᎬᏙᏗ ᎨᏎᏍᏗ ᎠᏍᏓᏱᏗᏍᏗ ᏂᎦᎥ ᎧᏃᎮᏗ ᎨᏒᎢ.\nᎤᏩᏌ ᎦᏂᎩᎸ Mrs. Chapman, ᏔᎵ ᎠᎴ ᏦᎢ ᎢᏯᏂ ᏗᎨᏥᎾᏌᎢ, ᎤᏂᏲᎯᏍᏔᎾ ᎪᎰᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ, ᏥᏯᎵᎪᏁᎸ ᏧᏪᏅᏒ.\nᎤᏁᎦ ᏃᎴ ᎤᏬᏍᎩᎵ ᎤᏬᏚᏨ ᏄᎵᏍᏔᏁᎢ ᏫᎵᎻ.\n“ᎯᏣᎦᏎᏍᏓ ᏄᏔᎷᎩᏍᎬ ᎯᎠ ᏅᎩ ᏗᎦᏅᏌᏗ! \n“ᏂᎦᏉ ᎾᎾᏛᎦ ᎪᎱᏍᏗ ᏳᏰᎵᏛᎾ!”  ᎤᎵᏍᎦᏎᏔᏁᎢ ᏥᏍᏕᏥ.\nᏭᎵᎪᎾᏛ ᎤᏍᏘᏰᎩ ᏳᎾᎵᏙᎩᏯ ᏤᎩᏏᏂ ᏃᎴ ᎦᎳᎱᏂ, ᏯᏂᏲᏔᎲᎦ ᎠᏓᏒᎲᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎦᏬᏂᏍᎨᏍᏗ, ᎠᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏔᏲᎯᎮᏍᏗ ᎠᏥᏍᏕᎸᏗᏱ ᎤᏁᏢᏙᏗᏱ.\nᏳᏴᎵᎳ ᎠᏍᏆᏚᎸ, ᏕᎦᏔᎶᎬ ᏓᏧᏍᏛ ᎠᎾᎦᏔᎲᏍᎬ ᏗᏂᏍᎪᎵ ᎤᎾᎦᏙᏍᏛ.\n“ᎡᎵᏍᏗ, “ᎤᏛᏁ ᏌᏌ ᎠᏨᏯ, “Ꭴ ᏔᎵ ᏣᏣ ᏔᎵ ᏔᏔ ᏔᏔ ᏔᏔ.”\nᎯᎸ ᎢᏴ ᎤᏒᎯ ᎤᏲ ᎠᏍᎩᏗᏍᎨᎢ.\nᏰᎵ ᎢᏯᏂ ᎠᏂᏍᎦᏯ ᎤᎾᏛᏅᎢᏍᏔᏁ ᎤᎾᎵᏍᏕᎸᏗ.\nᎤᏴᏍᏗ ᏭᏓᏒᏍᏙᏗ ᎤᏛᏅᎢᏍᏔᏁ ᏫᎵᎻ.\nᎾᏍᎩ ᏥᏥᎦᏔᎭ ᎢᏥᏏᏴᏫᎭ ᏂᏨᏪᏎᎸ ᎢᏨᏬᏁᏔᏅ, ᎠᎴ ᎢᏨᎦᎵᏍᏓᏛ, ᎠᎴ ᎢᏨᏰᏯᏔᏅᎢ, ᎾᏍᎩᏯ ᎠᎦᏴᎵᎨ ᏥᏂᏕᎦᏪᏎᎰ ᏧᏪᏥ,\nᏂᎦᏛᏰᏃ ᎤᏣᏘ ᎤᏂᎲ ᎤᏃᏣᎴᏛ ᎠᏂᎲᎦ; ᎾᏍᎩᏍᎩᏂ-ᎤᏂᎩᏛ ᎨᏒ ᎠᎲᎦ ᏂᎦᏛ ᎤᎲᎢ, ᏂᎦᏛ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎲᎢ.\nᎯᎠᏃ ᏂᏑᏪᏎᎴᎢ, ᎦᏙ ᎢᏍᏗᏃᎮᎭ ᎯᎠ ᎾᏍᎩ ᏥᏍᏓᎵᏃᎮᎭ ᎢᏍᏓᎢᏒᎢ ᎠᎴ ᎤᏲᏉ ᏥᏅᏩᏍᏗ ᏥᏍᏓᏓᏅᏔ?\nᎩᎳᏉᏃ ᎢᏴᏛ ᏧᎳᏏᏕᏄᎶᏗ ᎤᏅᏤᎢ, ᎠᎴ ᎤᎵᏍᏆᏕᎴᎢ. ᎠᏂᏫᏅᏃ ᎤᏂᏴᎸ ᎤᏂᏩᏛᎮ ᎤᏲᎱᏒᎯ ᎢᎨᏎᎢ, ᎤᏂᎾᏫᏛᎲᏃ ᏭᏂᏂᏌᏁ ᎤᏰᎯ ᏫᎦᏅᎢ.\nᎠᎴᏬ ᎤᏙᎯᏳᎯ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎪᏢᏒᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᎬᏩᎵ, ᎠᎴ ᎡᎶᎯ ᎡᎯ ᎦᎸᏉᏗᏳ ᎦᎵᏦᏛᎢ.\nᎫᏓᎸᏗ!\nᏅᏩᏓᎴ ᎡᎭ ᎠᏴ ᎠᎩᏃᎮᏍᎩ, ᎠᎴ ᏥᎦᏔᎭ ᎤᏙᎯᏳᎯ ᎨᏒ ᎾᏍᎩ ᎧᏃᎮᏍᎬᎢ, ᎠᏴ ᎠᎩᏃᎮᏍᎬᎢ.\nᎠᎩᏄᎸᎲᎦ ᏩᎦᏌᎩᏍᏗ, ᏃᎴ ᎨᏍᏗ ᎬᎩᏠᏫᏍᏗ ᏱᎩ.\nᏃᎬᎨᏫᏍᎬᎾ ᎣᏣᏅᏓᏗᏍᎪ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎢᏦᎯᏳᏒ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎢᏣᎵᏂᎬᏁᎲ ᎠᏓᎨᏳᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᏗᏨᏂᏗᏳ ᎨᏒ ᎤᏚᎩ ᎡᏨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎾᏍᎩ ᎢᎩᏙᏓ;\nᎭᏩ, ᎠᏆᏛᏅ.\nᎤᏣᏘᏃ ᎤᏃᎸᏅ, ᎥᏓᎵ ᏓᎵᏍᏗᎳᏁᎬᎩ.\nᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎠᎴ ᎠᎦᏬᏍᎨᏍᏗ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ; ᏂᎪᎯᏳᎲᏍᎬᎾᏍᎩᏂ ᏣᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎤᎬᏫᏳᎯ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ; ᎢᎸᎯᏢᏃ ᏄᏛᎿᏕᎬ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎠᏓᏅᏙ, ᎾᎿ ᎡᎭ ᎣᏩᏒ ᎣᏤᎵ ᎠᏓᏅᏙ, ᎾᎿ ᎡᎭ ᎣᏩᏒ ᎣᏓᏤᎵᎦᏯ ᎨᏒᎢ.\nᎣᏍᏓ ᏙᎩᎾᎦᏎᏍᏔᏅ ᏐᏉᎯᎭ ᏃᎴ ᎣᎩᎾᏁᎸᏔᏅ ᎣᎩᏃᎵᏍᏗ ᎠᎵᏥᏙᎲᏍᎩᏱᎩ ᎠᎴ ᎤᏴᏍᏓᎩᏍᎩᏱᎩ.\nᎾᏍᎩᏃ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏤᎲᎩ, ᎠᎴ ᎾᏍᎩ ᏁᎲᎾ ᏥᎩ, ᎾᏍᎩ ᏧᏁᎵᏁᎢ, ᎠᎴ ᎾᏍᎩ ᏚᎵᏉᎩ ᎢᏯᏂᏛ ᎨᏒ ᎨᎳ, ᎠᎴ ᎠᏥᏛᏙᏗᏱ ᏮᏓᎦᎶᏏ.\nᎾᏍᎩ ᎯᎠ ᎤᎾᏎᎵᏙᎴ ᎠᏏ ᏌᎵᏂ ᏏᏓᏱ ᎤᎬᏫᏳᎯ ᏂᎨᏒᎾ ᏥᎨᏎᎢ.\nᎢᏣᏛᎬᎦ ᎠᏐᏢᎢᏍᏗᏍᎬᎢ; ᎦᏙ ᎢᏤᎵᎭ? ᏂᎦᏛᏃ ᏕᎬᏭᎪᎵᏁᎴ ᏰᎵᏉ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒᎢ.\nᎤᏚᎩᏉᏰᏃ ᎢᎬᎭ ᎡᎩᏍᏕᎸᏗᏱ; ᎤᏚᎩᏍᎩᏂ ᎣᏩᏒ ᎠᎪᎲᎯ ᏥᎨᏐᎢ ᎥᏝ ᎤᏚᎩ ᏲᏩᏐᎢ; ᎪᎱᏍᏗᏰᏃ ᏨᎪᏩᏘᏍᎪᎢ, ᎦᏙᏃ ᎠᏏ ᎤᏚᎩ ᏱᎦᏲᏩᎭ?\nᎠᏎᏃ ᎤᏅᏌ ᎤᎾᏤᎵ, ᏐᏉ ᎢᏯᎦᏴᎵ ᎢᏰᏆ, ᎨᏍᏗᎭ ᎠᎦᏗᏓ ᏱᎩ ᎤᏪᎵᏎ ᏲᎾ.\nᏍᎩᏃᎲᏏ, ᏂᎯ ᎢᏣᏚᎵᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎢᏣᏓᏄᏴᏙᏗᏱ, ᏝᏍᎪ ᏱᏣᏛᎩᎭ ᏗᎧᎿᏩᏛᏍᏗ?\nᎤᏂᏃᏕᎾ ᏧᎳᏏᏕᎾ ᎾᎥᏂ ᎠᏂᎾᏣᎡᎢ.\nᎢᏳ ᎠᎴ ᏛᎪᎩᏁᎵ ᏗᏤᎵᏎᎯ ᏱᏗᏣᏙᎳᏍᏗᎭ; ᎦᏙ ᎢᏥᎭ ᎦᏰᏣᎵᎡᎵᏤᏗ ᎨᏒᎢ? ᎠᏂᏍᎦᎾᏰᏃ ᎾᏍᏉ ᎠᏂᏍᎦᎾ ᏓᎾᏙᎳᏍᏗᏍᎪᎢ, ᎾᏍᎩ ᎢᎦᎢ ᏔᎵᏁ ᎥᎨᏥᏁᏗᏱ.\nᏂᎯᏰᏃ ᎠᏫ ᎤᎾᎴᏲᎥᎯ ᎾᏍᎩᏯ ᎨᏎᎢ; ᎪᎯᏍᎩᏂ ᎨᏒ ᎢᏣᏨᏒ ᎡᏥᎷᏤᎸ ᎠᏫ-ᏗᎦᏘᏯ ᎠᎴ ᏗᏣᏓᏅᏙ ᏗᎦᏘᏯ.\nᏅᎩ ᎤᎩᏨᏓ ᏄᎵᏍᏔᏂᏙᎸ ᏧᏓᎴᏅᏓ ᎤᏂᏃᎮᎸ ᏃᎴ ᎤᏃᏪᎳᏅ ᎣᎭᏁ ᏚᏕᏘᏴᏌᏗᏒ.\nᎣᎦᎵᏍᏔᏴᏃᎾ ᏍᎦᏚᎩ ᏧᎳᏍᎩ ᏲᏣᎴᏫᏍᏗᏍᎬᎾ ᏔᎵ ᎠᎴ ᏦᎢ ᏧᏙᏓᏆ, ᎤᏣᎴᏓ ᏧᏤᎵ ᎠᏂᏍᎦᏯ ᎣᎦᎵᎪᏅ ᎣᏥᎭᏯᎸᏒ ᏣᎵ.\nᏌᏌ ᏍᏉ, ᎤᏂᏃᏕᎾ ᎢᏧᎳᎭ ᎠᏁᎮᎢ.\nᎠᏴᏍᎩᏂ ᎨᏒ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎾᏍᎩ [ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ] ᎡᎩᏰᎸᎾᏁᏗ ᏥᎩ, ᎡᏙᎯᏳᎲᏍᎩ ᎾᏍᎩ ᏧᎴᏔᏅᎯ ᎤᏲᎱᏒ ᏥᏌ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ;\nᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᎾᏍᎩ; ᎢᏂᏯ, ᏥᏌ ᎦᎶᏁᏛ ᏣᏅᏮᎦ; ᏔᎴᎲᎦ, ᎠᎴ ᎯᏰᏍᏛᎢᏌ ᏣᏂᏏᏗᏱ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎴᏁᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎨᏲᎲᏍᎩ ᎨᏒᎩ, ᎦᎶᏁᏛᏱ ᏗᎦᏘᏁᎩ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎢᎦᏚᏓᎴᏍᏙᏗᏱ.\nᎠᏓᏪᎯ ᎪᏍᏗᏳᎵ ᎦᎶᎪᏗ ᎤᏃᎮᎴ ᎤᏕᎶᎰᏒ.\nᎣᏍᏓ ᎠᏒᎩ ᎪᎢ ᎬᏗᏍᎬ, ᎤᎵᏔᏬᎥ ᏫᏚᏍᏔᏅᏅ, ᏚᏯ ᏓᏫᏒ ᏚᏍᏔᏅᏅ ᎢᎦᎦᏓ ᏄᏍᏛ ᎤᏍᎫᏓᏁᎦᎸ.\nᎠᏎᏃ ᎤᎾᎵᎪᎯ ᏕᎬᏩᏚᏫᏍᏕᎢ ᏚᎴᏁᎢ, ᎠᎴ ᏗᎦᎦᎲ ᏭᏴᎴᎢ. ᎤᎩᏨᏛᏃ ᏆᏂᏆ ᎤᎾᏂᎩᏎᎢ, ᏓᏈ ᏭᏂᎶᏎᎢ.\nᎡᏗᎨᏳᎠ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎢᎬᏱ ᎢᎩᎨᏳᎯᏳ ᏄᎵᏍᏔᏅᎢ.\n”ᎨᏍᏗᏃ ᎤᏙᎯᏳ ᏱᏥᎦᏔ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎢᏳᏃ ᎩᎶ ᎢᏍᏓᏛᏛᏅ ᎦᏙᏃ ᎢᎡᏍᏕᎵᏌᏕ-Ꭽ? ᎢᏍᏙᏎᎸᎭ, ᎯᎠ ᏁᏍᏗᏪᏎᎸᎭ; ᎤᎬᏫᏳᎯᏰᎾ ᎤᏚᎵᎭ.\nᎠᏧᏣ Crockett ᏚᏓᏁᏄᎸᏁ - ᎤᎵᏍᎦᏰᎬᏍᏔ ᎠᎴ ᎤᏙᏔ - ᎤᏂᏌᏙᏴᏗ ᏚᎾᏓᏁᏤᎸ.\nᏧᏂᏲᎱᎯᏍᎩᏂᏃᏅ ᎤᎾᎴᎯᏐᏗ ᎨᏒ ᏥᏥᏁᎢᏍᏗᎭ, ᏝᏍᎪ ᏱᏥᎪᎵᏰᏱ ᎤᏁᎳᏅᎯ ᎢᏥᏁᏤᎸᎯ, ᎯᎠ ᏥᏂᎦᏪᎭ?\nᎠᏴ ᏈᏓ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᏫᏨᏲᏪᎳᏏ ᎢᏣᏗᎦᎴᏲᏨᎯ ᏋᏗᏱ ᎢᏤᏙᎯ ᎠᎴ ᎨᎴᏏᏱ ᎠᎴ ᎨᏆᏙᏏ ᎠᎴ ᎡᏏᏱ ᎠᎴ ᏈᏗᏂᏱ;\nᎤᏣᏘ ᎪᎩᏍᏗᏰᏗᏍᎬ ᎪᎩᏔᏲᏎᎲᎩ ᎾᏍᎩ ᎤᏂᏅᎯ ᏦᎦᏓᏂᎸᎢᏍᏗᏱ, ᎠᎴ ᎣᎦᏖᏆᎶᏗᏱ ᏦᏥᏍᏕᎸᏗᏱ ᏧᎾᏁᎶᏗ.\nᎠᏎᏗ, ᎠᏆᏚᏓᎸᏅ ᎤᏟᏂᎩᏓ.\nᎠᎴ ᏓᏆᎧᎿᏅᎩ, ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎠᏂᏁᎬ ᎠᏂᏁᎬ ᎤᏂᏣᏘ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᎾᏚᏫᏍᏛ ᎦᏍᎩᎸᎢ, ᎠᎴ ᎠᏂᏁᎬ ᏗᏅᏃᏛ ᎠᎴ ᏧᎾᏛᏐᏅᎯ; ᎯᎠᏃ ᎾᏂᎥᎩ, ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎤᎶᏏᎶᏛ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ, ᎠᎴ ᎠᎦᏴᎵ ᎤᎦᏴᎳᏥᎶᏛ.\nᎠᏓᏬᏍᏗ ᏥᎨᏐ ᎪᎨ ᎤᏗᎴᎩ ᏥᏓᏙᏓᏇᎪ!\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴ ᎾᏍᎩ; ᎠᎴ ᏓᏰᏥᎪᎢ ᏴᏫ ᎤᏪᏥ ᎤᏬᎴᏍᏗ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎠᎴ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸ ᎦᎸᎶᎢ.\nᏆᎴᏗᏃ ᎯᎠ ᏂᎦᏪᏎᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏴᏫ, ᎥᏝ ᏱᏥᏣᏘ ᎤᏍᎦᏅᏨ ᎯᎠ ᎠᏍᎦᏯ.\nᎠᏂᏧᏏᏃ ᎤᎾᏤᎵᎦ ᎧᏃᎯᏰᎩ ᏗᎵ ᏍᏓᏴᏗᏱ ᎤᏍᏆᎸᎯᏗᏒᎩ; ᎤᏂᏣᏛᎩᏃ ᎾᎿ ᎤᎾᏂᎩᏒᎩ ᏥᎷᏏᎵᎻ ᏭᏂᎶᏒᎩ ᎠᏏᏉ ᎾᏍᏆᎵᏍᎬᎾ ᏫᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ, ᎤᎾᏓᏅᎦᎸᏗᏱ ᎤᏂᏰᎸᏒᎩ.\nᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᏕᏲᎲᏍᎩ, ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᎩᏍᏆᏂᎪᏔᏅ ᏥᏧᏣ ᎨᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ.\nᎠᎴ ᎠᏆᏓᏅᏙ ᎤᎵᎮᎵᏤᎸ ᎤᏁᎳᏅᎯ ᎠᎩᏍᏕᎵᏍᎩ.\nᏫᏥ ᎢᏣ ᎤᏂᎾᎷᏒ ᏍᎩᎾᎾ ᏃᎴ ᎠᏂᏫᎾᎨ ᎠᏂᏍᎦᏯ.\nᎩᎶᏍᎩᏂ ᏕᎪᏕᏍᏗᏍᎨᏍᏗ ᏌᏉ ᎯᎠ ᏧᎾᏍᏗᎦ ᎨᏒ ᎾᏍᎩ ᎬᏉᎯᏳᎲᏍᎩ, ᎤᏟ ᎣᏏᏳ ᎠᏍᏙᏍᎩ ᏅᏯ ᏯᏥᏯᏝᏅ, ᎠᎴ ᎠᏍᏛᎬ ᎠᎺᏉᎯ ᏯᏥᎬᏴ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏚᎾᏓᏅᏛᎢ; ᎤᎾᏤᎵᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᏌᏊᏃ ᎩᎳᏊ ᎢᏴᏓ ᏥᏲᎵᏨ ᎾᎥ ᎢᏦᎦᏓᎵ ᎨᏒᎢ.\nᎿᏉᏃ ᎢᎦ ᎤᏓᎴᏅᏛ ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎢᏯᏍᏘ ᎤᏒᎯᏰᏱ ᎢᏗᏢ ᎤᎵᏏᎲᏒᎩ ᏂᎬ ᎾᏍᎩ ᎦᏙᎯ.\nᏣᏄᏏ ᏚᎷᏫᏍᏔᏁᎮ ᎪᏒᏍᎬ ᏫᎵᎻ ᎤᏦᏙᏗ, ᎤᏛᎦᏁᎢ ᎦᏃᎩᏍᏗ ᏃᎴ ᎠᎧᏔᎮᎢ ᏃᏉ ᎤᏍᏆᎸᎲ ᏄᎾ ᏧᎳᎩᏍᏗ.\nᎥᏝ ᎾᏍᎩ ᎨᎾ ᏄᏛᏁᎸᎢ, ᎾᏍᎩ ᎤᏁᎫᏥᏛ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎨᏎᎢ, ᎠᎴ ᎤᏅᏟ ᏧᎴ. ᎦᏙᏃ ᎢᎤᎴᎢ? ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᎩᏂ ᎤᏩᏒ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏲᎢᏳ ᎨᏒᎢ, ᎤᏅᏟᏃ ᏚᎸᏫᏍᏓᏁᎲ ᎣᏏᏳ ᎨᏒᎢ.\nᎦᏣᏅᎵ ᎤᎵᎪᏚᏅ, ᎨᏍᏗ ᏱᏥᎦᏔ ᏥᏳᏳᎪᏘ ᎢᏳᏍᏘ ᏂᎵᏍᏔᏅ, ᎢᏳᏍᏘ ᏄᏛᏁᎸ.\nᎠᏥᎸ-ᎤᎦᏔ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎦᏙᎯ ᏣᏫᏐᎢ, ᏥᏭᏓᎪᎾᏛᏗ ᎤᏍᏗᎩᏳ ᎡᏍᎦᏉ ᏂᎦᎥ ᎤᎦᏔ ᎦᏙᎯ ᏓᎭᏛᎢ.\nᏚᎳᏍᎨᏅ ᎦᏙ ᎤᏍᎪᎸᎢᎨ ᏂᎦᎵᏍᏗᏍᎨ, ᎾᏍᎩᏯ ᎦᎸᎶ ᎢᏣ ᏣᎵᏌᎳᏗᏍᎪ.\nᎤᏁᎸᏔᏁ ᎤᏩᏗ, ᏯᎪᏩᏘᏍᎬᎾ ᏂᏚᏍᏖ ᏗᎦᏙᎵ ᏚᎦᏙᏍᏖ ᏚᏑᎬ ᏧᏆᎶᎦ ᎢᏤᎯ ᎢᏳᏍᏘ ᏚᏨᏍᏛ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᏂᎯ ᎾᏍᏉ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏦᏏᏏᏍᎩ ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ! ᏕᏥᏐᏈᎸᏍᎪᏰᏃ ᏴᏫ ᏗᎵᏒᏍᏗ ᎤᏕᏯᏙᏗ ᏗᎵᏒᏍᏗᏱ, ᎢᏨᏒᏍᎩᏂ ᎥᏝ ᏴᎨᏥᏃᏟᏍᏓ ᏗᎵᏒᏍᏗ ᏴᎨᏨᏓ ᏌᏉ ᎢᏥᏰᏌᏛᎢ.\nᎠᏇᏂ ᎡᏥᏲᎵᎸᎭ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎴ ᏍᏕᎩ ᏥᎨᏳᎢ.\nᎩᎳᏉ ᎤᏂᏅᎪᏦᏅ ᎠᏂᎾᎩᎵ ᏩᏂᏴᎯᎮ ᎤᏂᏃᏴᎵᏓ, ᏳᎾᎦᏔᎲᏌ ᎤᎾᏁᎳᏛ ᏓᏂᎪᏩᏘᏍᎨ ᏓᎾᎩᎸᏗᏍᎬ ᏗᏂᎳᏴᏅᎯᏓ ᎠᎴ ᎠᏂᎾᏏᏂᏒ ᎠᏍᏕᏴᏓ ᎬᏘ ᎨᏯᏔ ᏏᏆ, ᎤᏁᎷᎩ ᏥᏔᎦ ᏓᏂᎨᎯᏙᎲ ᎯᎸᎢᏴ ᎠᎾᎵᎮᎵᎬ, ᏓᎾᎪᎲᏍᏗᏍᎨ ᏓᏓᏁᎸ ᎤᏏᏩ ᏱᏄᏅᏁᎳ.\nᎾᏍᎩᏰᏃ ᏂᎦᏛ ᎯᎠ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎡᎶᎯ ᏓᏁᏩᏗᏒ ᎤᏂᏲᎰᎢ; ᎢᏥᏙᏓᏃ ᎠᎦᏔᎰ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎢᏥᏂᎬᎬᎢ.\nᏧᏅᏏᏴ ᎤᎵᏏᎬ ᏭᎷᏨ, ᎭᎾᎾ ᎣᎯᏍᏙᏗ ᎤᎾᏛᎪᏗ ᎦᏬᏂᏍᎬ.\nᎤᏕᎳᏓ ᎤᎵᏗᏨ ᎤᎭᎷᎨ ᎩᏟ, ᏣᏄᏏ ᎭᏂᏣ.\nᎾᏍᎩ Ꮎ ᎤᎾᏓᏅᎦᎸᏛ ᎨᏒᎢ, ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᎾᏓᎥᎦᎸᎡᎸᎯ ᎨᏐᎢ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎦᏓᎭ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎠᎴ ᏄᏃᎯᏳᏒᎾ, ᎥᏝ ᎪᎱᏍᏗ ᎤᎾᏓᏅᎦᎸᎡᎸᎯ ᏱᎨᏐᎢ; ᎾᏍᏉᏍᎩᏂ ᏚᎾᏓᏅᏛ ᎠᎴ ᏧᏄᎪᏙᏗᏱ ᎦᏓᎭ ᎢᏗᎬᏁᎸᎯ.\nᎠᏂᏐᎢᏍᎩᏂ ᏧᏂᏲᎱᏒᎯ ᎥᏝ ᏯᏁᎮ ᎬᏂ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᏚᎶᏐᏅ. ᎯᎠ ᎾᏍᎩ ᎢᎬᏱᏱ ᏗᎴᎯᏐᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎣᏍᏛ ᎾᎦᏛᏁᎸ ᎡᏆᎭᎻ ᎾᏍᎩ ᎤᏂᎷᏤᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏥᏌ ᎦᎶᏁᏛ ᏅᏓᏳᏓᎴᏅᎯ; ᎾᏍᎩ ᎡᏥᏁᏗᏱ ᎠᏓᏅᏙ ᎠᏚᎢᏍᏛ ᎪᎯᏳᏗ ᎬᏙᏗ ᎨᏒᎢ.\nᎧ, ᏗᏥᏲᎵ, ᏥᏌ ᎡᏥᏯᎡᏍᏗ, ᎾᏍᎩᏃ ᎾᎯᏳ ᎦᎾᏄᎪᏥᎸᎭ ᏂᏗᎾᏰᏍᎬᎾ ᎨᏎᏍᏗ ᎠᎴ ᏂᏓᏕᎰᏍᎬᎾ ᎨᏎᏍᏗ ᎠᎦᏔᎲᎢ ᎾᎯᏳ ᎦᎷᏥᎸᎭ.\nᎥᏝ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᏳᏓᏑᏯ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎤᎧᎵᏨᎯᏍᎩᏂ ᎨᏒ ᎠᏓᎨᏳᏗ ᎦᏄᎪᏫᏍᎦ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ; ᎦᎾᏰᎯᏍᏗᏰᏃ ᎨᏒ ᎠᎩᎵᏯ ᎤᏪᎭ; ᎩᎶ ᏥᎦᎾᏰᏍᎪᎢ ᎥᏝ ᎤᎧᎵᏨᎯ ᏱᎨᏐ ᎠᏓᎨᏳᏗ ᎨᏒᎢ.\n“ᎠᏯᏗ ᎨᎵᏍᎬ ᎤᏣᏔ ᎣᏍᏓ ᏂᎯ,” ᎤᏛᏁ ᏌᎳᏓ, ᏍᎩᏰᏃ ᎠᏎᏍᏗ.\nᎨᏣᎦᏙᎥᎯᏍᏗᏰᏃ ᏂᎦᎵᏍᏗᎭ ᎾᏍᎩ ᎠᏏᏉ ᏔᎳᏚᏉ ᏄᏒᎭ ᏥᎷᏏᎵᎻ ᎬᏆᏓᏙᎵᏍᏔᏅᏒᎯ.\nᎦᎸᎳᏗᏢᏃ ᎪᏪᎴ ᏄᏍᏛ ᎠᏓᎢᏍᏛᎢ, ᎯᎠ ᏂᎬᏁᎢ, ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ.\nᎾᏍᎩ ᎯᎠ ᏄᏪᏒ, ᎤᏪᏛᏨᎩ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎬᏬᎯᏳᎲᏍᎩ ᎨᏥᏁᏗ ᎨᏒᎢ; ᏝᏰᏃ ᎠᏏ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏱᎦᎾᏄᎪᎨᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏥᏌ ᎠᏏ ᎾᏥᎸᏉᏗᏍᎬᎾ ᎨᏒᎢ.\nᎠᏎᎩ ᎤᏲ ᏱᏂᎬᎦ ᏤᏣᎧᏃᏗ \n“ᎭᏂᏉ ᎮᏙᎮᏍᏗ!” ᎤᏛᏁ ᎤᏥ.\nᎤᎾᎴᏃ ᏄᎵᏍᏔᏅ, ᏂᎦᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏁᎲ ᎠᏫ ᎤᏂᏃᎮᎴ ᎢᏳᎾᏛᏁᏗᏱ ᏥᏌ ᎤᏂᎯᏍᏗᏱ.\nᎾᏍᎩᏃ ᏌᏉ ᎢᏤ ᏥᎪᏎᎭ, ᏐᎢ ᎤᏪᏘ ᏂᎬᏁᎭ. ᎪᎱᏍᏗᏰᏃ ᎤᏪᏘ ᎢᎬᏁᎸᎯ ᎠᎴ ᎤᏪᏔᏨᎯ ᏥᎨᏐ, ᎤᏲᏥᏕᏅ ᎨᏐᎢ.\nᎠᎴ ᎾᏍᏉ ᎩᎬ ᏚᏍᏚᏟᏍᏔᏁ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ.\nᏣᎬᏫᏳᎯ, ᎦᎢᏒ ᎢᎦ ᎠᏰᎵ ᎠᎩᎪᎲᎩ ᎢᎦᎦᏛᎢ, ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩ ᎤᏍᎪᏒᎢ ᎤᏟ ᎨᏒᎩ ᎡᏍᎦᏉ ᏅᏙ, ᏓᏆᏚᏫᏍᏔᏅᎩ ᎠᏴ ᎠᎴ ᎾᏍᏉ ᎣᏤᎯ.\nᎠᏎᏃ ᎠᎩᎪᎲ ᏂᏚᏳᎪᏛᎾ ᎾᎾᏛᏁᎲᎢ, ᎾᏍᎩᏯ ᏚᏳᎪᏛ ᏓᏕᏲᎲᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ, ᏂᎦᏛ ᎠᏂᎦᏔᎲ ᎯᎠ ᏅᏥᏪᏎᎸᎩ ᏈᏓ, ᎢᏳᏃ ᏂᎯ, ᎯᏧᏏ ᏥᎩ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏱᏄᏍᏗ ᏰᎭ, ᎠᏂᏧᏏᏃ ᏄᏍᏛ ᎠᏁᎲ ᎾᏍᎩᏯ ᏄᏍᏛᎾ ᏱᎩ ᎮᎲᎢ, ᎦᏙᏃ ᎠᏂᏧᏏ ᏄᏍᏛ ᎠᏁᎲ ᎾᏍᎩᏯ ᎤᎾᏕᏗᏱ ᏥᏂᏕᎲᏁᎭ ᏧᎾᏓᎴᏅᏛ ᏴᏫ?\nᎢᎦ ᎾᎥᏂ ᎨᏒ, ᎦᏍᎩᎸ ᎣᎭᏁ ᎤᏬᏢ, ᏑᎾᎴ ᎤᎾᎵᏍᏔᏴᏅ ᎦᎳᎨᏴ ᏧᏃᏩ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏌᎳᏓᏅ ᎠᎦᏘᏏ ᎤᏪᏰᏂ ᎤᏩᏔᏅ, ᎤᎬᏫᏳᎯ ᎠᎴ ᎠᏓᏍᏕᎵᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ, ᎢᏏᎵ ᏧᏁᏗᏱ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᎦᎨᏥᏁᏗᏱ ᎤᏂᏍᎦᏅᏨᎢ.\nᎠᎪᏄᏰᏃ ᎠᎩᏲᏏᏍᎬᎩ, ᎥᏝᏃ ᏱᏍᎩᏰᎳᏍᏔᏁᎢ; ᎠᎩᏔᏕᎩᏍᎬᎩ, ᎥᏝᏃ ᏱᏍᎩᎤᏁᎢ;\nᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎤᏍᏆᏂᎪᏗᏳ ᎤᏕᎵᏛ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏗ ᎨᏒᎢ; ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎾᎬᏁᎴ ᎤᏬᏓᎵ ᎨᏒᎢ, ᏄᏠᎾᏍᏛᎾ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎠᏓᏅᏙ, ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᎪᎮᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎨᎦᎵᏥᏙᏁᎴ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎨᎢ, ᎠᏂ ᎡᎶᎯ ᎠᎪᎢᏳᏁᎢ, ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏫᏓᎦᏓᏂᎸᏤᎢ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎥᏝ ᎿᏉ ᎠᏴ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎭ, ᎠᏍᎦᏂᏍᎩᏂ ᎾᏍᎩ ᏣᎩᏯᎠ.\nᎤᏓᏏᏂᏕᏅ ᏭᏂᎷᏤ ᎦᎷᏯᏍᏗ, ᏚᎾᎭᏄᏮ, ᏚᏂᏍᏘᏰᎬ, ᎤᏂᏁᎦᎸ ᎠᏒᎨ ᏧᏂᎶᏒ - ᎠᏂᏒᎨ ᎤᎭᏰᏌᏛ ᏧᏆᎶᎬ, ᎪᏍᏔ, ᎢᎾᎨ ᎠᏁᎯ ᏧᎾᏗᎩᏓ, ᎠᎵ ᏃᎴ ᎠᏓ ᏧᎦᏒᏍᏗ.\nᏣᏂ ᏥᏓᏓᏬᏍᎬᎢ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᏣᏥᏌᎳᏓᏅ ᏤᎩᏯᏅᎡᎸᎩ, ᎾᏍᎩ ᎯᎠ ᎠᏂᏍᎦᏯ ᎠᏎ ᏌᏉ ᎠᏑᏰᏍᏍᏗ, ᎾᏍᎩ ᎢᎨᎳᏗᏓᏍᏗᏱ ᎤᏃᎮᏗᏱ ᏥᏌ ᏕᎤᎴᎯᏌᏅ ᎢᏗᏃᎮᏍᎬᎢ.\nᎠᏒᎨ ᏍᏉ ᎤᎧᏔ, ᏧᏂᏯᏨᏗ ᏃᎴ ᏗᎦᏆᏙᏗ ᎪᎢ ᏃᎴ ᎠᏣ ᏗᎪᏒᏔᏅ ᏗᎳᏑᎶ ᏃᎴ ᎠᏤ ᎠᏍᏕᏯᏓ.\nᏗᎦᏅᏍᎨᏂ ᏚᏩᏒᏙᎣᏎ, ᎫᏩᏓᏅᏖᏗ ᏱᎨᏒᎾ ᏄᎵᏍᏔᏁ, ᎭᎾᏉ ᎱᏅᏤᎢ, ᎤᎸᏖᎴ.\nᏆᎴᏗᏃ ᎤᏁᏤ ᏄᏍᏛ ᎤᎦᏚᎵᏍᎬ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᏗᏓᎯᏍᏗ ᎨᏒᎢ, ᎤᏓᏴᏍᏕᏍᏗ ᎨᏒᎢ, ᏧᏂᏴᏍᏕᏍᎩ ᏧᏂᎳᏫᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗᏓᏂ; ᎯᎠ ᎾᏍᎩ ᎦᏳᎳ ᏂᏨᏃᏁᎭ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏨᏃᏁᎸᎯ ᏥᎩ ᏧᏩᏓᏔᏅᏒᎢ, Ꮎ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ ᎥᏝ ᎤᎾᏤᎵ ᏱᏅᎦᎵᏍᏓ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏏ ᏯᎩᏍᏆᎸᎡᎭ; ᏂᎯᏍᎩᏂ ᏂᎪᎯᎸᏉ ᎢᏥᏍᏆᎸᎡᎰᎢ.\nᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏍᏗ ᎨᏎᏍᏗ ᎤᏂᎷᏤᏗᏱ ᎤᎵᏂᎩᏛ ᎤᏂᎶᏄᎮᏍᎩ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗ ᎤᏃᎯᏳᏗᏱ ᎦᏰᎪᎩ ᎨᏒᎢ;\nBoudinot ᏃᎴ ᎠᏫᎾ Ridge ᏃᎴ ᏧᎾᏓᎵ ᎤᎵᎮᎵᏍᏗ ᏄᏅᏁᎴ ᎠᏁᎬ.\nᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎾᏍᏉ ᏴᏫ ᏕᎬᏩᏠᏒᎩ, ᎤᎾᏛᎦᏅᎩᏰᏃ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎢ.\nᎠᏴᏃ ᎣᏥᏃᎮᏍᎩ ᎾᏍᎩ ᏂᎦᏛ ᏄᏛᏁᎵᏙᎸ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎪᎯ ᎠᎴ ᏥᎷᏏᎵᎻ; ᎾᏍᎩ ᏧᏂᎸᎩ ᎨᏛ ᏧᎾᏛᏅᎩ.\nᎤᎵᏇᏅᎮ ᎦᏂᏓᏛ.\nᎤᏂᏣᏖᏃ ᎬᏩᎬᏍᎪᎸᏁ ᎬᏩᏁᏤᎴ ᎡᎳᏪᏱ ᎤᏮᏗᏱ; ᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᎤᏪᎷᏁᎢ, ᏕᏫ ᎤᏪᏥ ᏍᎩᏙᎵᎩ, ᎠᏗᏍᎨᎢ.\nᎠᏯᏠᏃ ᎤᏂᏍᏚᎶᏔᏅᎯ ᎥᏝ ᏙᎴᏛ ᏗᏄᏬ ᏕᎦᏅ ᏱᎦᏁᎢ, ᎤᏁᎳᎩ ᎦᏇᏅᎯ ᎢᏴᏛ ᏫᎦᏅᎩ.\nᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᏪᎯ, ᎾᏍᎩ ᎬᏂᏛ ᎤᏪᎭ; ᎤᏁᎳᏅᎯᏃ ᎤᏪᏥ ᏄᏪᎲᎾ ᎥᏝ ᏳᏪᎭ ᎬᏂᏛ.\nᏂᎦᏓ ᎢᏥᎷᏨᎯ.\nᏃᏊᏛ ᎤᎴᏅᎮ ᎠᏒᎬ ᏩᎭᏯ.\nᏥᏌᏃ ᎩᎳᏉ ᎢᏴᏛ ᎤᏙᎴᎰᏒ ᎤᏩᏒ ᎨᏒ ᎤᏓᏅᏬᏗ ᎨᏒ ᎤᏄᎪᏨᎢ, ᎤᎦᏔᎲᏎ ᎾᎿ ᎤᏅᏘᏛ ᎠᏂᏙᎾᎥᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᏓᏒᏂᎦ ᏗᏆᏄᏬ?\nᎼᏏ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎢᏥᏁᎸᎩ; ᎥᏝᏍᎩᏂᏃᏅ ᎼᏏ ᎤᎾᏄᎪᏫᏒᎯ ᏱᎩ, ᎠᏂᎦᏴᎵᎨᏍᎩᏂ ᎤᏂᎾᏄᎪᏫᏒᎯ; ᏂᎯᏃ ᎤᎾᏙᏓᏆᏍᎬᏃ ᎢᎡᏥᎤᏍᏕᏎᎰ ᎠᏍᎦᏯ.\nᏨᏅᎦᏍᎪᏃ ᏫᏣᎷᎯᏍᏗ ᏗᎨᏅᏒ?” \nᏚᎾᎴᏁᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎴ ᎦᏰᎪᎩ ᎤᏂᏃᎮᎴ ᎬᏩᏡᏗᏍᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ;\nᎠᎬᏱ ᎤᏂᏲᎸᎢᏍᏔᏅ’ ᎪᏪᎴ.\nᎢᏗᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏣᎦᎴᏔᏅᎯ ᎨᏒᎢ, ᎥᏝ ᏔᎵᏁ ᎤᏲᎱᎯᏍᏗ ᏱᎩ; ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎥᏝ ᎿᏉ ᎤᏓᎵᏁᎯᏕᎯ ᏱᎩ.\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏳᏩᏴᎳ, ᏥᏍᏆᏯ ᏗᏂᏅᎪᎪ ᏚᎾᏁᏍᎩᎸ ᎠᏂᏃᎯᎸᏍᏗᏍᎪ ᏃᎴ ᎤᎾᎵᏍᎦᏎᏙ. ”ᏥᎩ,ᏥᎩ!” ᎠᎾᏗᏍᎪ.\nᎠᎴ ᎾᏍᎩ ᎠᏥᏂᏌᏅᎢ, ᎠᎴ ᎾᏍᎩ ᏦᎢᏁ ᎢᎦ ᏙᎤᎴᎯᏌᏅ ᎾᏍᎩᏯ ᏂᎬᏅᎪᏪᎵᎯ;\nᏂᎦᏓ ᎠᏂᏳᏩᏁᎦ ᏚᏂᏚᎭ, ᎯᏍᎩ ᎢᏯᏂ ᏗᎾᎵᏔᏕᎩ ᎩᏟ ᏗᏒᏓᏆᎶᏍᏗ ᏗᎪᏒᏔᏅ ᏓᏓᏁᎸ ᏃᎴ ᏗᏦᎭᏱ ᏧᏂᎳᏫᎢᏍᏗ, ᎤᏂᏣᏘ ᎠᏂᎾᏰᏍᎩ ᎠᏂᏃᎮ ᎠᏂᏍᏈᏍᏔ ᎠᏂᏴᏫᏯ ᎤᎾᏗᏍᎦᏢ ᏚᏅᏓᏒᎢ.\nᎦᎸᏉᏗᏳᏍᎩᏂ ᎤᏓᏅᏙ ᎨᏒ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎬᏂᎨᏒ ᏥᎾᎬᏁᎴ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ, ᎾᏍᎩ ᎾᎿ ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅᎢ; ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ,\nᎨᏍᏗ ᏳᏛᎦᏍᏔᎾ ᏫᎵᎻ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏉᎳ ᏒᏃᏱ ᎤᏁᎳᏫᏎᎲᎢ; ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᎯᏂᎨᏍᏗᏉᏍᎩᏂ ᎠᎴ ᏞᏍᏗ ᎡᎳᏪ ᏨᏅᎩ,\nᏥᏯᎵᎡᎵᏤ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏥᏕᏥᏯᏁᎶᏗ, ᎾᏍᎩᏯ ᏗᎩᎦᏴᎵᎨ ᏄᎾᏛᏁᎸᎢ, ᏥᎬᏗᎭ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏆᏓᏅᏙ, ᏂᏥᏲᎯᏍᏗᏍᎬᎾ, ᎢᎦ ᎠᎴ ᏒᏃᏱ ᎬᏯᏅᏓᏗᏍᎬ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ,\nᎣᎩᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏃᎩᎸᏉᏛᎾ ᎨᏒᎢ, ᎤᏲ ᎣᎩᏃᎮᏍᎬ ᎠᎴ ᎣᏍᏛ ᎣᎩᏃᎮᏍᎬᎢ; ᎣᎦᏠᎾᏍᏗ ᏥᎨᏐ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᏃᎦᏠᎾᏍᏛᎾ ᎨᏒᎢ,\nᎤᎵᏍᏆᏙᏅ ᎤᎧᎭᏲᏛ ᎪᎨ, ᎤᏍᎦᏎᏗ ᏚᎦᎭᎾᏅ ᏚᏅᏓᏒ ᏚᎵᎢᏍᏗ ᎧᎸ ᎤᎵᏍᏆᏙᏅ ᏚᏧᎬ ᎧᏂᎩᏛ ᎨᏒ ᏧᏆᎶᎦ ᏃᎴ ᎩᎦᎨ ᏕᎦᎾᎱᎩᏍᎬ.\nᎿᏉᏃ ᏓᎧᏁᏥ ᎯᎠ ᏂᏙᏓᎦᏪᏎᎵ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩᏰᏃ ᏁᏣᏛᏁᎸᎾ ᎨᏒ ᎤᏍᏗᎧᏂ ᎯᎠ ᎾᏍᎩ, ᎠᏴ ᎥᏝ ᏱᏂᏍᎩᏯᏛᏁᎴᎢ.\nᎪᏍᏗᎭ ᎬᏂᎨ ᎦᏌᎴᏅ ᎤᎭᏄᏪ ᏃᎴ ᎤᏁᎦ ᎠᎭᎾᏬ, ᎠᎾᎵᎮᎵᏍᏗᏍᎩ ᎨᏎ ᎦᎸᎳᏗ ᏧᏙᎴᏋ ᎠᏁᎸᏙᏗ Princeton ᎦᎸᎳᏗ ᏗᏙᎴᏆᏍᏗ.\nᏯᏂᎷᎬᎾ ᏥᎨᏎ ᎠᏂᏳᏩᏁᎦ, ᎠᏂᏴᏫᏯ ᏓᎾᏟᎲ ᎩᎦᎭ ᎨᏎ, ᎯᎸᎢᏴ ᏴᏫ ᎫᏩᏓᏁᏖᏗ ᏱᎨᏒᎾ, ᎾᎥᏂᎨ ᎠᏁᏦ.\nᎠᎩᎪᎲ ᎤᏧᏍᏓᎷᎩᏍᎬ ᏚᏂᏍᏔᏲᎳ ᎦᎶᏇ, ᎤᎵᏌᎴᏓᏨ ᏚᎦᏒᏍᏛ ᏕᏧᎬ ᎣᎭᏁ ᎢᏣ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏦᎢᏁ ᎢᎦ ᎤᏂᏩᏛᎮ ᎤᏛᏃᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᏬᎴ ᎠᏰᎵ ᎠᏂᏅ ᏗᎾᏕᏲᎲᏍᎩ ᏓᏛᏓᏍᏓᏁᎮ ᎠᎴ ᏓᏛᏛᎮᎸᎥᏍᎨᎢ.\nᎠᏎᏃ ᎾᏍᏉ ᎪᎯᏳᏗ ᎨᏒ ᎢᏣᎵᎬᏑᎶᏓ, ᎾᏍᎩ ᎢᏨᏗᏍᎬ ᏰᎵᏉ ᏗᎨᏨᏜᏕᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏥᏍᏟ ᎦᏂ ᎠᏍᎩᎾ ᏧᏤᎵᎦ.\nᎬᏩᏚᏫᏛᏃ ᎤᎦᏖᏃᎴ ᎤᎪᏩᏛᏗᏱ ᎾᏍᎩ ᎯᎠ ᎢᏳᏛᏁᎸᎯ.\nᎡᎳᏗ ᏄᏛᏁᎳ ᎠᏍᏓ ᎤᏬᏒᏁ.\nᎤᏎᎦᏨᎯᏃ ᎾᎿ ᎣᎩᎶᏐᏅ, ᏬᎩᎷᏨᎩ ᎣᏍᏛ ᏗᏔᎳᏗᏍᏗᏱ ᏚᏙᎥᎢ, ᎾᎥ ᎦᏚᎲ ᎴᏏᏱ ᏧᏙᎢᏛ.\nᎤᏭᏯᏔ ᎨᏒ ᎪᎱᏍᏗ.\nᏰᎵ ᏧᏙᏓᏆᏓ ᎤᏓᏬᎢᏙᎴ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗᏳ ᏱᎩ ᎾᏍᏉ ᎾᏍᎩ ᏧᏅᏏᏓᏍᏗ ᏚᏳᎪᏛ ᎨᏒ ᎨᏥᏅᏏᏓᏍᏗ ᏯᎾᏤᎸᏍᎦ; ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎨᏎᏍᏗ.\nᎠᏎᏃ ᎾᏍᎩ ᏚᏄᎪᏔᏅᎢ ᎤᏛᎦᏁ ᏐᎳ. ᏂᎪᎯᎸᏃ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᏗᎦᎶᎯᏍᏗᏱ ᏚᏂᎭᎷᏁ ᎤᏂᎯᏍᏗᏱ.\nᎩᎶ ᏗᎦᎴᏅᏗᏍᎩ ᏌᏉ ᎠᎴ ᏔᎵ ᎢᏯᎨᏯᏔᏅᎯ ᎨᏎᏍᏗ ᎡᏥᏲᎢᏎᎸᎭ;\nᎠᎬᏱ ᎤᎾᏅᎪᏣ ᎬᏂᎨ ᎤᏍᎪᎸ-ᎢᏤᎯ ᎠᏍᎪᎵ ᏌᏌ ᎠᏓᎯ ᏧᎩᏓᏟ ᎠᏰᎵ, ᎤᎧᏖᏃᎴ, ᎤᎪᎮᎢ ᏌᎳᏓ ᏃᎴ ᏚᏃᏣᏝᏁ.\nᎡᏆᏃ ᎤᏁᏐᎠᏒᎩ ᏴᏫ ᎠᏁᎲ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᏌᏉᎭ ᎨᏒ ᏔᎸᏗ ᏄᏓᎨᏒ ᏄᏓᎨᏒᎩ; ᏴᏫᏃ ᎤᏁᎳᏅᎯ ᎤᏂᏐᏢᎢᏍᏔᏅᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏁᏍᏓᎳ ᎤᎾᏕᏯᏙᏗᏍᎬᎢ; ᎤᏣᏘᏰᏃ ᎤᎾᏕᏯᏙᏗᏍᎬᎩ ᎾᏍᎩ.\nᎾᏍᎩᏃ ᎤᏂᏃᎮᎸ ᎠᎴ ᎤᎾᎵᏥᏙᏅ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎤᎾᏨᏎ ᏥᎷᏏᎵᎻ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎤᏣᏖ ᏌᎺᎵᏱ ᎠᏁᎯ ᏚᏂᏚᎲ ᎤᎾᎵᏥᏙᏁ Ꭳ-Ꮫ ᎧᏃᎮᏛ.\nᏍᎩᏴᏃ ᏥᎨᏒ ᎠᏂᏍᎦᏯ ᎠᏂᏪᏏᏍᎬ ᏳᏂᏃᎮᎸ ᎤᏂᏥᏍᏔᏢ ᎾᎥᏂᎨ ᎤᏂᏴᏍᎩᎷᏓ.\nᎠᏕᎭᏲᎯ ᎨᏴ ᎾᎥᏂ ᎨᏓᎵ ᏭᎶᏒ, ᎾᎥᏂ ᎤᏁᎦ ᎦᏩᏐᎥᏍᎬ ᏃᎴ ᎭᏫᏂ ᎬᏂᎨ ᎦᏁᎲ.\nᏲᎾ ᎠᏇᏲᏅ ᎠᏍᎦᎢᏍᏗ ᏱᎨᏒᎾ ᏃᎴ ᎤᏒᎯ ᎨᏙᎲ ᏄᏓᎴ ᎾᏆᎵᏍᏔᏁ.\nᎨᎦᏙᎳᎡᎸᎩ, ᎠᏎᏃ ᎥᏝ ᎾᎿ ᎠᏁᎳ ᏱᎨᏎᎢ, ᎢᏳᏰᏃ ᎾᎿ ᎠᏁᏔ ᏱᎨᏎᎢ, ᎠᏎ ᏱᏂᎬᏩᎾᏛᏁᎢ, ᎠᏎᏃ [ᎤᎾᏙᏣᏒᎩ] ᎬᏂᎨᏒ ᎢᏳᎾᎵᏍᏙᏗᏱ ᎾᎿ ᏂᎦᏛ ᎠᏁᎳ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏧᏏᏅᏓ ᎠᎬᏱ ᎨᎬᏬᎣᏙᏗ, ᏗᎪᏪᎳᏅ ᏚᏂᎭᏂᏙᎸ ᏩᏏᏓᏂ ᏃᎴ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᎵᏙ ᏧᏂᎷᏫᏍᏔᏁᏗ.\nᎯᎠ ᎠᏍᎦᏯ ᎠᏂᏧᏏ ᎬᏩᏂᏴᎲᎩ, ᎠᎴ ᏓᎬᏩᎵᏒᎩ, ᎿᏉ ᎠᏂᏯᏫᏍᎩ ᏕᎦᏘᏅᏒᎩ, ᎠᎴ ᏥᏍᏕᎸᎲᎩ, ᎠᏆᏛᎦᏅᎯ ᎨᏒ ᎠᎶᎻ ᎨᏒᎢ.\nᏗᏛᎯᏍᏗᏍᎩ ᏓᎾᏑᏴᎥᏍᎪ ᎦᏙᎯ.\nᎠᏂᎦᏲᏟᎨ ᏴᏫ ᏕᏗᎭᏲᎲ ᎣᎯᏍᏙᏗ.\nᎤᏩᏒᏃ ᎠᎵᏍᏕᎵᏍᎬ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎤᏍᏗᎤᏅ ᎠᎩᏍᎦᏅᏨᎯ ᏱᎩ ᎠᏂᏧᏏ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎤᏂᎲᎢ, ᎥᏝ ᎠᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᏏᏌ ᎪᎱᏍᏗ ᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ.\nᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᎪᏪᎵ ᎢᏥᎪᎵᏰᎥᎭ, ᎴᎣᏗᏏᏯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎾᏍᏉ ᎤᏂᎪᎵᏰᏗᏱ ᏂᏨᏁᎸᎭ; ᎠᎴ ᎾᏍᏉ ᏂᎯ ᎢᏥᎪᎵᏰᎥᎭ ᎴᎣᏗᏏᏯ ᏅᏓᏳᎶᎯᏍᏗ ᏥᎩ.\nᏲᎾ ᎤᏤᏍᏙ ᎤᏄᎩᏣᏁ ᎤᏥ.\nᎤᏁᏍᏔᎶᏨ ᎠᎹᏳᎸᏓ, ᎤᏯᏛᏅ ᏬᏯ ᎤᏤᏍᏙ, ᎤᏴᏣ ᎢᎦ ᏅᏙ ᏭᏕᎵᎬ ᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎦᎸᎶᎢ.\nᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎤᏂᏄᎪᏨ ᎤᏂᏃᎮᎸ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎯᎠ ᏳᎬᏫᏳᎭ ᏱᏂᏥᏪᎭ; ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎣᏏ ᏳᏰᎸᏅ, ᏙᏨᏁᏍᏗ ᎠᎴ ᎯᎠ ᏃᏣᏛᏁᎮᏍᏗ ᎠᎴ ᎯᎠᏉ.\nᎠᎴ ᏍᎩᎾᎾ ᎾᏛᏁᎰᏅ ᏱᏣᎷᏣ.\nᎬᏂᏳᏉᏃ ᎠᎨᏴ ᎤᏢᎩ ᎩᎬ ᎤᏪᏅᎡᎯ ᏔᎳᏚ ᏧᏕᏘᏴᏓ ᎢᎬᏩᎵᏍᏔᏅᎯ, ᎣᏂᏗᏢ ᎤᎷᎯᏍᏓᏁᎸᎩ, ᎦᏓᎷᏯᏛ ᎤᏄᏩᎥ ᎤᏒᏁᎸᎩ.\nᏍᏏᏉᏯᏃ ᎤᎴᏅᎮ ᏓᏟᎶᏍᏗᏍᎬ ᏗᎬᏟᎶᏍᏙᏗ ᏗᎧᏁᎢᏍᏗ ᏣᎳᎩ ᎦᏬᏂᏍᏗ, ᏌᏊ ᏗᏟᏍᏙᏗ ᏌᏊ ᎢᎧᏁᎢᏍᏗ.\nᎢᏨᏲᏪᎳᏁᎭ ᎢᏥᎦᏴᎵᎨᎢ, ᎡᏥᎦᏙᎥᏒᏰᏃ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏤᎭ. ᎢᏨᏲᏪᎳᏁᎭ ᎢᏥᏫᏅ, ᎡᏥᏎᎪᎩᏒᏰᏃ ᎤᏁᎫᏥᏛ. ᎢᏨᏲᏪᎳᏁᎭ ᏗᏥᏲᎵ, ᎡᏥᎦᏙᎥᏒᏰᏃ ᎠᎦᏴᎵᎨᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ, ᏩᏛᎬᎦ.\n“ᎠᎩᏲᏏᎭ,” ᎤᏛᏁ ᎡᎳᏆᏗ, \nᏂᎯᏍᎩᏂ ᎣᏏᏳ ᏣᎦᏙᎥᏒ ᏄᏍᏛ ᏓᏆᏕᏲᏅᎢ, ᏄᏍᏛ ᎠᏆᎴᏂᏙᎸᎢ, ᏄᏍᏛ ᏓᏇᎪᏔᏅ ᏗᏆᏓᏅᏛᎢ, ᎠᏉᎯᏳᏒᎢ, ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᏆᏓᎨᏳᎯᏳ ᎨᏒᎢ, ᎤᏁᎳᎩ ᎨᎵᏍᎬ ᏥᎩᎵᏲᎬᎢ,\n“ᎭᏩ, ᏂᎦᏓ ᎯᏕᏙ, ᏥᏍᏕᏥ ᎤᏩᏌ ᎧᏂᎩᏓ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎦᎸᏉᏗ ᎠᏧᏙᏗ ᎡᎶ.\nᏗᏂᏁᎵᏛᏍᎩᏂ ᎠᎴ ᏧᏂᏍᏓᎢ ᎤᏲᎢᏳ ᎢᏳ-ᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎨᏒᎢ! ᎤᏣᏘᏰᏃ ᎠᎩᎵᏯ ᎡᎮᏍᏗ ᎠᏂ ᎦᏙᎯ, ᎠᎴ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎯᎠ ᏴᏫ.\nᎦᏙᏃ ᎢᏳ ᎢᎦᏛ ᏄᏃᎯᏳᏅᎾ ᏱᎩ? ᏥᎪ ᏄᏃᎯᏳᏅᎾ ᎨᏒ ᎠᏎᏉᏉ ᏱᏂᎬᎦ ᎤᏁᎳᏅᎯ ᎦᎪᎯᏳᏗ ᎨᏒᎢ?\nᎠᏂᎨᏴ ᏗᎬᏩᏂᏲᎱᎯᏎᎸᎯ ᏗᏅᏃᏛ ᏔᎵᏁ ᏂᏙᎨᏥᏲᎯᏎᎮᎢ; ᎢᎦᏛᏃ ᏥᎨᏥᎩᎸᏍᎨᎢ, ᏂᏓᎾᏓᏂᎸᎬᎾ ᎨᎫᏓᎴᏍᎬᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏟ ᎢᏲᏍᏛ ᎤᏂᏩᏛᏗᏱ ᎤᎾᏚᎵᏍᎬ ᏗᎴᎯᏐᏗ ᎨᏒᎢ;\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎣᏍᏛ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎤᏓᏩᏗᏍᏙᏛ ᏧᏪᎲᎩ, ᎠᎴ ᎠᎧᎵᎢ ᏗᏟᎶᏍᏔᏅᎯ ᏂᎨᏒᎾ ᏥᎨᏒᎩ, ᎥᏝ ᏰᎵᎦ, ᎾᏍᎩ ᏗᏓᏍᎪᎸᏙᏗ ᏓᏅᏗᏍᎬ, ᏂᏓᏕᏘᏴᎯᏒ ᏂᎪᎯᎸ ᏥᏓᎾᎵᏍᎪᎸᏗᏍᎨᎢ ᎾᎿ ᎠᏂᎷᎩ ᏄᏂᎪᎸ-Ꮎ ᎢᎬᏩᏅᏁᏗ ᏱᎨᏎᎢ.\nᎧᎪ ᏣᏍᎦᎳᏤᎢ ᎯᏂᏓᏛ ᎯᎪ ᏑᎾᎴᎢ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ ᎠᎬᏱᏣ? ᏧᏍᏆᏴᏍᏗᏗ.\nᏧᎴᏐᎣᏅ ᎨᏎ ᏗᎧᏃᎨᎾ ᏃᎴ ᏗᎦᏅᏍᎨᎾ ᎠᏧᏣ, ᏧᏔᏂᏓ ᏂᏚᏍᏕ ᏧᎪᎳ ᏗᎧᏂᎨᏅ ᏃᎴ ᏗᎧᏃᎨᏅ.\nᎾᏗᏍᏊ, ᏒᎯᏰ ᏱᏄᎵᏍᏓᏅ ᏃᏉ ᎨᎪ, ᏧᎾᏕᎶᏆᏍᏗ ᏚᏂᏰᎵᏒ, ᎨᎪᏗ ᏒᏃᏱ ᎢᎪᎯᏓ ᏫᎨᏙᎰ.\nᎠᎩᎸᏉᏗ ᎨᏒ ᏗᏓᎾᏅ ᎾᎩᎶᎯᏍᏗ ᎣᏏ ᎠᎩᏰᎸᏒ ᏓᏆᎴᎳ ᎬᎩᎯᎵᏓᏍᏗ ᎨᏒᎢ.\nᎠᏎᏃ ᎤᏂᏍᏓᏱᏕ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏓᏖᎸᎲᏍᎦ ᎯᎠ ᏴᏫ, ᏓᏕᏲᏂᏙᎭ ᏧᏗᏱ ᏂᎬᎾᏛᎢ, ᎨᎵᎵ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏂ ᎢᏯᏍᏘ.\nᎾᏍᎩ ᏄᏪᏒᎩ ᎤᏪᏛᏨᎩ ᎢᏳᎵᏍᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ ᎨᏍᎥᎢ, ᎾᏍᎩᏃ ᎤᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ. ᎾᏍᎩᏃ ᏁᏪᏒ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏍᏓᏩᏚᎦ.\n“ᎧᎪ ᎤᏩᎬᏗᎶᏓ ᏭᏪᏙᎴᎢ ᎤᏲ ᏩᏗᏅᏗ?” ᎤᏛᏛᏁ.\n“ᏛᏛᏓᏂᎩ? ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏍᏏᏉᏯ Ꮭ ᎤᎬᏫᏳᎯ ᏰᎨᏎ ᎠᏎᏍᎩᏂ ᏚᎨᏳᏒ ᏧᏤᎵ ᎠᏂᏴᏫ ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎪᎯᏰᏃ ᏥᎩ ᏦᏨᏃᏛ, ᎢᏳᏃ ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏕᏣᏁᎶᏛᎢ.\nᎤᎵᏍᎫᎭᏴ ᏃᎴ ᎤᏓᏅᏖᎯᎶᎥ, ᎨᏍᏗ ᎠᏌᎹᏗᏴ-ᎤᎦᏎᏂ ᏱᎩ, ᏍᎩᎾ ᎢᏳᏍᏗ ᏫᏥᎢᏴ ᎤᏬᏚ ᎠᏇᎵᏒ.\nᎠᏯ ᏍᏉ ᏍᎩᎾᏆᏍᏛ.\nᏃᏈᏏ ᏗᏴᏈᎴᏴᏓ ᎠᎾᏕᎭᏲᎲ.\nᎨᏍᏗ ᏍᏓᏯ ᎦᏬᏂᏍᎩ ᏱᎩ, ᎠᏎᏃ ᎦᏬᏂ.”\nᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏓᏥᏯᎵᎪᎸᏓᏁᎵ ᎤᏪᏗᏱ ᎠᏉᎸᎢ ᎠᏆᏤᎵ ᎦᏍᎩᎸᎢ, ᎾᏍᎩᏯ ᏣᏆᏓᏎᎪᎩᏒ ᎠᎴ ᏣᎩᏅ ᎡᏙᏓ ᎤᏬᎸ ᎾᏍᎩ ᎤᏪᏍᎩᎸᎢ.\nᎠᏂᏍᎦᏯ ᎨᏥᎸ ᎤᎵᏍᎨᏓ ᏱᎨᏒᎾ ᎠᎾᏟᎲ, ᎾᏍᎩᏯ ᏅᏯ ᎢᏳᏍᏗ ᏧᏂᎵᏬᏨ, Hastings ᎠᎴ Culloden ᎠᎴ Sharpsburg ᎠᎾᏟᎲ ᏱᎨᏥᎴ.\nᎠᎦᏔᎮᎢ ᎢᏧᏍᏗ ᏧᎿᏬᏍᏗ.\nᎦᏕᎶᎥᏍᎬ ᎠᎾᏟᏃᎮᏍᎬ.\nᎤᏩᏌᏆᏝᎴᎢ, ᏫᎵᎻ ᎤᏴᏍᏗ ᎢᏣ ᎤᏪᏅᏎ. ᎢᏳᏩᏁᎰᏂᏕᎾ ᏚᏏᎳᏛ ᏌᎳᏓ ᎱᎷᏣ ᏧᏍᏆᏴᏍᏗ, ᎦᏁᎮᎢ ᎪᏪᎵ ᏗᎦᏃᏣᏝᏍᎩ ᎤᏩᏥᎦᎸᏓ.\nᎠᏒᎬ ᎤᎶᏒᏍᏗ, ᎧᎪ ᏳᏚᎵ ᎤᏕᏘ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏥ ᎤᎪᏏᏓ ᎠᏦᏅᏔᏅ?”\nᏂᎦᏓ ᎠᏂᎸᏉᏗᏍᎨ ᏓᏏᎳᏛ.\nᏂᎯᏍᎩᏂ ᎥᏝ ᏱᏦᎯᏳᎲᏍᎦ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎯ ᎠᏫ ᏗᏆᏤᎵᎦ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏥᏂᏨᏪᏎᎸᎩ.\nᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ.\nᎢᏣᏓᏅᏘᏳ ᎨᏒ ᎾᏅᎢ ᏴᏫ ᎠᏂᎦᏔᎮᏍᏗ; ᎤᎬᏫᏳᎯ ᎾᎥᏂᏳ ᏓᏯᎢ.\nᎤᏅᏒᏃ ᎨᏒ ᎤᎾᎵᏃᎮᎴ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎦᏚ ᏂᏗᏗᏰᎲᎾ ᎨᏒᎢ.\nᎤᎩᏒᏃ ᎤᎵᏍᏈᏗ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎢᏥᎩ ᎠᎴ ᎢᏥᏯᏙᎦ ᎢᏨᏒ ᎨᏒᎢ.\nᎿᏉ ᎠᏆᏓᏅᏙ ᎡᏕᏯᏔᏁᎭ; ᎦᏙᏃ ᏓᎦᏛᏂ? [ᎯᎠᏍᎪ ᏅᏓᏥᏪᏏ,] ᎡᏙᏓ, ᏍᏊᏓᎳᎩ ᎪᎯ ᎨᏒᎢ? ᎠᏎᏃ ᎾᏍᎩ ᎢᏳᏍᏗ ᏣᎩᏍᏆᎸᎡ ᎪᎯ ᎠᎩᏍᏆᎸᎡᏗᏱ ᎠᎩᎷᏥᎸ.\nᎪᎯᎢᏴ ᎤᎵᏌᎵᏓᏁ ᎤᎧᎭᏛ.\nᎾᏍᎩᏃ ᎯᎠ ᏣᏂ ᎤᏄᏪ ᎨᎻᎵ ᎤᏍᏘᏰᏅᎯ, ᎦᏃᏥᏃ ᎤᏓᏠᏍᏕᎢ, ᎤᎵᏍᏓᏴᏗᏃ ᎥᎴ ᎨᏎ ᎢᎾᎨᏃ ᎡᎯ ᏩᏚᎵᏏ.\nᎪᎯᏍᎩᏂ ᎨᏒ ᎢᏣᎵᎮᎵᎦ ᎢᏣᏢᏆᏍᎬᎢ; ᏂᎦᏛ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎤᏲᏉ ᎨᏐᎢ.\nᏕᏤᏲᎲᏍᎨᏍᏗ ᏧᏂᎧᎿᏩᏛᏍᏗᏱ ᏂᎦᎥ ᎢᏨᏁᏤᎸᎢ; ᎬᏂᏳᏉᏃ ᏂᎪᎯᎸ ᎢᏨᏰᎳᏗᏙᎭ ᏫᎬᎵᏍᏆᏗᏍᎩ ᎡᎶᎯ. ᎡᎺᏅ.\nᏥᏓᏥᎶᎢ ᎭᏂᏣ ᎠᏍᏚᎲᎢ ᏏᏆ---ᎡᏚᏥ ᏣᏓᏙᏎᎰᎢ ---ᏌᎪᏂᎨ ᎠᏇᏡᏍᏗ ᎦᏓ ᎠᏦᏴᎢ.\nCranshaw ᎠᏇᏅᏒ, ᏯᏆᏓᏅᏛᎾ ᎢᏳᏍᏗ ᏃᎴ ᎠᏆᏢᏲᎵᎸ ᎠᏆᏟᏃᎮᏙᏗ.\nᎿᏉᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᎾᏓᏅᎡᎸ, ᎦᎸᎳᏗ ᎾᎤᏂᎶᏒ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴ ᎠᏫ-ᏗᏂᎦᏘᏯ; Ꭷ, ᎿᏉ ᎦᏚᏱ ᎢᏕᎾ, ᎠᎴ ᏫᏓᏙᎴᎰᎯ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏅᎢ, ᎾᏍᎩ ᎣᎰᏩ ᎬᏂᎨᏒ ᏥᏂᎬᏂᏏ.\nᏄᏃᎵᏣᏛᎾ, ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏛ ᎠᏂᏲᏍᏗᏍᎩ, ᎪᎱᏍᏗ ᏧᏅᎾ ᏂᏚᏂᎨᏳᏒᎾ, ᎬᏩᏃᎯᏍᏗ ᏂᎨᏒᎾ, ᏄᎾᏓᏙᎵᏣᏛᎾ;\nᎢᎳᎪ ᎢᏴᏛ ᎢᎦᎢ ᎤᏟᎯᏳ ᎦᎶᏁᏛ ᎤᎩᎬ, ᏗᏣᏓᏅᏙ ᏙᏓᏥᏅᎦᎸᎡᎵ ᏙᏓᏥᎧᎲᏏ ᎠᏓᎯᎯ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ, ᎬᏂᏛᏃ ᎤᏁᎳᏅᎯ ᏤᏣᏁᎶᏙᏗᏱ ᏅᏓᏨᏁᎵ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎡᎯ ᎠᏓᏅᏙ ᎬᏗᏍᎬ ᏄᏓᏅᎦᎸᎾ [ᎠᏍᎦᎾ,] ᎦᎶᏁᏛ ᎤᏩᏒ ᎤᏓᎵᏍᎪᎸᏔᏅᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎤᏓᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎩ?\n“ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ, “ᎭᏂᏗ ᎰᎻ ᎠᎪᏕᏍᎩ ᎤᏤᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ.\nᎠᎴ ᎣᏥᏅᏒᎩ ᏗᎹᏗ, ᎣᏣᎵᏅᏟ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎪᎱᏍᏗ ᎠᏛᏁᎯ, ᎠᎴ ᎠᏴ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ, ᎠᎴ ᏗᏥᎧᎵᏍᏓᏗᏍᏗᏱ ᎢᏦᎯᏳᏒ ᎤᎬᏩᎵ;\nᏴᏫ ᎢᏳᏂᏪᏍᏗ ᏂᏥᏪᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏥᏇᏓᎸ ᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ; ᏗᏥᏰᎸᏰᏃ ᎢᏣᏚᏓᏕᏫᏒ ᏥᏕᏥᏲᏒᎩ ᎦᏓᎭ ᎠᎴ ᎤᏲ ᎨᏒ ᎤᏂᎾᏝᎢ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎪᎯ ᎨᏒᎢ, ᏗᏥᏰᎸ ᎢᏣᏚᏓᏕᏫᏒ ᏗᏥᏲᎯ ᎤᏂᎾᏝᎢ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎤᏥᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎥᏞᏍᏗ; ᏣᏂᏍᎩᏂ ᎠᎪᏎᎮᏍᏗ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎢᏗᏢ ᏭᎦᏔᎲᏍᏔᏅ ᎯᎠ ᏂᏚᏪᏎᎵ ᎤᏅᏒ ᎨᏒᎢ, ᏗᎦᎸᏉᏔᏅᎯ ᏗᎦᏙᎵ ᎾᏍᎩ ᏥᏓᎪᏩᏘᎭ ᏂᎯ ᏥᏥᎪᏩᏘᎭ;\nᏍᏔᏲ ᎤᏃᎯᎸᏎ Ꮎ ᎠᏒᏛᏓ.\nᏍᏈᏍᏓ ᎤᏃᎴ ᏗᏲᏙᏗ ᏓᏓᏌᎳᏗᏍᎨᎢ, ᏓᏕᏲᎮᎢ ᏃᎴ ᎦᎶᎯᏍᏗ ᏫᏗᎦᏅᎪᎨ, ᎦᏲᏟ ᎦᏃᎸᎥᏍᎬ ᏓᏘᏁᎨ.\nᎠᏂᏦᏕᏆᏠᏥ ᎡᏝᏪᎯ ᎠᏂᎶᏏᏙᎮ ᎦᎶᎯᏍᏗ, ᏓᏂᏲᎮᎲ ᎤᎾᎵᏍᏓᏴᏗ ᎠᏂᏓ.\nᎯᎠ ᎾᏍᎩ Ꮎ ᏥᎨᎳᏗᏙᎮ ᎤᎾᏓᏡᏩᏕᎬ ᎢᎾᎨᎢ, ᏔᎵ ᏧᏛᏗᏕᎨ ᏗᎧᎿᏩᏗᏙᎯ ᎾᏍᎩ ᏧᏁᏤᎴ ᎣᏓᎸ ᏌᎾᏱ, ᏥᎨᎳᏗᏙᎮ ᎠᏁᏙᎲ ᏗᎩᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏥᏓᏥᏲᎯᏎᎴ ᎠᏛᏂᏗᏍᏙᏗ ᎧᏃᎮᏛ ᎠᏴ ᎢᎩᏁᏗ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᎦᎸᏉᏗᏳ, ᎢᏳᏃ ᎩᎶ ᎤᏁᎳᏅᎯ ᏧᏓᏅᏛ ᎤᎸᏉᏗᏳ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎬᏂᏗᏳ ᏱᎩ ᎠᎩᎵᏲᎬᎢ, ᏂᏚᏳᎪᏛᎾ ᎠᏥᎩᎵᏲᎢᏍᏗᏍᎬᎢ.\nᎠᎴ ᎬᏂᏳᏉ ᏘᏁᎵᏥ, ᎠᎴ ᏘᎾᏄᎪᏫᏏ ᎠᎫᏣ, ᎠᎴ ᏥᏌ ᏙᏘᏲᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᏥᏄᏍᏗ ᏣᏉᎯᏳᎭ, ᏥᎦᏔᎭ ᎠᏆᎴᏂᏓᏍᏗᏱ ᎠᎴ ᏂᏥᎥ ᎢᏨᏰᎳᏗᏓᏍᏗᏱ, ᎾᏍᎩ ᎢᏥᏁᏉᏤᏗᏱ ᎠᎴ ᎢᏣᎵᎮᎵᏍᏗᏱ ᎢᏦᎯᏳᏒᎢ.\nᎰᎻ ᎤᏟᏍᏓ ᏭᏴᏅᎮ ᎠᎳᏂ.\nᎢᎦᏓᏃ ᎠᏂᏃᎮᏍᎬ, ᏯᏆᎵᎪᏅᎾ ᎠᏂᏲᏍᎩ ᏃᎴ ᎠᏂᏴᏫᏯ ᎤᎾᏂᎩᏒ ᏅᏃ, ᎨᏇᏲᏔᏅ ᎪᎰᏍᏘ ᏱᏅᎦᎵᏍᏔ.\n“ᎤᏨᏉᏗ ᏱᎨᏒᎾᎩ?” ᎤᏛᏁ ᏌᎳᏓ.\n“ᏏᏲ,” ᎤᏛᏁ.\nᎾᏍᎩᏂ: ᎤᏩᏅᏛ ᏣᎳᎩᏱ ᎠᏰᎵ ᏃᎴ ᎾᎥᏂ ᏓᏥᎶᎥ ᏧᏴᏨ ᎢᏣ ᎦᏯᎴᏅ: ᎦᏛᏅᎥᏍᏗᏍᎬ ᎧᏃᎮᏍᎩ ᎠᏥᎶᏛ, ᎣᏍᏓ ᏣᏰᎸᏗ ᎭᏕᎶᎰᏒ ᏄᏍᏗᏓᏅ ᎠᏰᎵ ᏙᎩᎷᏫᏍᏔᏅᎭ, ᏕᏥᎾᏌᎥ ᏧᏃᏪᎳᏅ ᏗᎩᎷᏤᎸ ᏃᎴ ᎠᏋᏌ ᎠᏆᏕᎶᎰᏒ.\nᎾᏗᏍ, ᏍᏓᏲᏒ ᏩᏌ ᎠᏇᎷᏅ ᎦᎶᏪ ᏩᏆᏗᏅᏒ ᎾᏱᏄᎳ ᎠᏆᏢᏍᏛᏅ… ᎯᎠ ᎢᏊᏛ ᏴᏩᏒ ᏂᎦᏛᏁᎲ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏤᎾ ᏫᏗᏤᏲᎲᎦ ᎾᎦᏛ ᏄᎾᏓᎴᏒ ᏴᏫ, ᏕᏣᏬᏍᎨᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᏚᏙᎥ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᏪᏥ ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ,\nᎤᏩᏙᎯᏴᏓ, ᎤᏛᏅ ᎤᏣᎴᏓ.\nᎯᏍᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎠᎩᎪᎲᎩᏃ ᏃᏈᏏ ᎦᎸᎶᎢ ᏓᏳᏓᎴᏅᎩ ᎡᎶᎯᏃ ᎤᏬᏥᎸᎩ; ᎠᎴ ᎾᏍᎩ [ᏃᏈᏏ] ᎠᏥᏕᎸᎩ ᎠᏍᏚᎢᏍᏗ ᎾᏍᎩ ᏫᎾᏍᏛᎾᎠᏔᎴᏒ ᎠᏍᏚᎢᏍᏙᏗ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎫᎾᏛᏐᏅᎯ ᎨᏒ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᏞᏍᏗ ᏗᏣᏠᏱᎸᎩ; ᎬᏂᏳᏉ ᏢᏓᏥ ᎤᏃᏕᎾ ᏧᏓ ᎠᏂᏔᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ, ᏕᏫ ᎤᏱᏝᏅᎯ, ᎤᏓᏎᎪᎩᏒ ᎤᏍᏚᎢᏍᏗᏱ ᎪᏪᎵ, ᎠᎴ ᏧᏲᏍᏙᏗᏱ ᎦᎵᏉᎩ ᏂᏓᏍᏚᎲᎢ.\nᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ, ᏫᏨᏲᏪᎳᏏ ᎢᏣᏓᏅᏘ ᎡᏈᏌ ᎢᏤᎯ, ᎠᎴ ᎡᏦᎯᏳᎲᏍᎩ ᎦᎶᏁᏛ ᏥᏌ,\nᎤᏐᏱᏉ ᏄᏅᎾᏕᎨ ᏗᎨᏥᎾᏌᎢ.\nᏣᏂᏃ ᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎪᎲᎩ ᎠᏏᏴᏫ ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎬᎩ ᏕᏣᏙᎥ ᎬᏗᏍᎬᎩ; ᎥᏝᏃ ᏱᎩᏍᏓᏩᏗᏙᎭ; ᎣᏥᏅᏍᏓᏕᎸᎩᏃ ᏂᎩᏍᏓᏩᏕᎬᎾ ᎨᏒ ᎢᏳᏍᏗ.\nᎠᎴ ᏃᏈᏏ ᎠᏂᎧᎸ ᎦᎸᎶᎢ ᎠᏂᏅᎪᎠᏍᎨᏍᏗ, ᎠᎴ ᎤᏂᏣᏖ ᎦᎸᎶ ᏣᏂᎧᎳ ᏛᎾᎵᏖᎸᏂ.\nᏑᎾᎴ ᏓᎨᏏ ᎤᏲ ᎤᎾᏗᏅᏗ.\nᏃᎴ ᏕᎦᏅᏅ ᏗᏂᏅᎦᎴᎯᏙ, ᎠᏂᏃᏍᎩᏍᎩ, ᎠᎾᏓᏅᏕᎵᏙ ᎠᏯ ᎢᏳᎾᏍᏗ, ᎤᏂᎾᏒᎾᎩᏍᎩ ᎠᏒᎬ ᎩᎦ ᎠᎴ ᎠᏕᎳ, ᎢᏳᏍᏗᏉ ᏭᏗᏅᏓ ᎦᏚᎲ.\nᎾᏍᎩᏃ ᎤᎵᏂᎩᏗᏳ ᏚᏂᎸᏫᏍᏓᏁᎮ ᎨᏥᏅᏏᏛ ᏓᎾᏕᏲᎲᏍᎬᎢ, ᎠᎴ ᎤᎾᎵᎪᏒᎢ, ᎠᎴ ᎦᏚ ᎠᏂᎬᎭᎷᏯᏍᎬᎢ, ᎠᎴ ᎠᎾᏓᏙᎵᏍᏗᏍᎬᎢ.\nᏥᏌᏃ ᏚᎪᎲ ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏜᏫᏍᏗᏍᎬᎢ, ᎤᏁᏤ ᎢᏍᎪᏅ ᏭᏂᎶᎯᏍᏗᏱ.\n“ᏑᎾᎴ ᎤᎵᏍᏔᏴᏗ ᎯᎲᏏ!” ᎤᏛᏁ.\nᎾᏍᎩ ᎤᏛᎦᏅ ᏱᎳᏉ ᎢᏴᏛ ᏚᎴᏅᎩ, ᎠᎴ ᏭᎷᏤᎸᎩ.\nᎠᏆᏕᎶᎰᏒ ᎠᏂᏧᏣ ᎠᏅᏗᏍᎬ ᏍᎩᎾᎾ ᎢᎦᏪᏍᏗ ᏳᏂᏬᏂᏌ, ᎠᏎᏃ ᏄᏓᎴ ᎤᏰᎸᏛ ᏱᏄᏂᏪᏌ, ᎠᏎᏃ ᎫᏩᏛᎪᏗ ᏱᎨᏒᎾ ᏍᎦᏰᎬᏍᏔ.\nᎦᏣᏄᎳ ᏚᎴᏁ ᎡᎳᏆᏗ.\nᎾᏍᏓᏴ ᎤᏦᏱᎴᎢ.\nᏫᏥᏤᎢ ᏕᎨᏴ, ᏚᏑᎬ ᎦᎵ, ᎠᏫ ᏃᎴ ᎠᏴᏫᏯ ᎤᏅᏌ ᏫᎫᏩᏂᎶᎯᏍᏗ ᎠᎾᏓᏅᏏᏁᎩ.\nᎬᏩᎦᏗᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎢᏤᎳᏗᏙᎮᏍᏗ ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒᎢ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎠᎦᏴᎵᎨ ᎤᏪᏥ, ᏚᏳᎪᏛ ᎨᏒᎢ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ.\nᎣᎦᏑᏰᎸ ᎣᏣᎵᏎᎲ, ᎣᏥᏁᎸ ᎠᎵᏍᏔᏴᏗ ᎤᏛᏐᏅ ᏁᎳᎩᏉ ᎨᏒ ᏏᏆ ᎭᏫᏯ.\nᎠᎦᏓ ᎤᏂᎸᏉᏗ ᎠᏁᎲ ᎠᏂᏴᏫᏯ, ᎨᏍᏗ ᏯᏂᎦᏔ ᏄᏍᏗᏓᏅ ᎠᏁᎲ ᏙᏰ, ᏳᎾᏚᎵᏍᎬᎾ ᏁᎳᎩ ᎤᏁᎵᏍᏗ ᏕᎦᏂᏌᎲ ᏧᏂᎦᏴᎵ, ᎾᏍᎩᎤᏃᎯᏳᎲ.\nᎤᏟᏰᏃ ᎬᎩᏰᎸᎩ ᎾᏂᎥᏉ ᏴᏫ ᎠᏴ ᎾᏆᏍᏛ ᎾᏍᎩᏯ ᏱᏄᎾᏍᏗ. ᎠᏎᏃ ᎠᏂᏏᏴᏫᎭ ᎤᎾᏤᎵᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏂᏁᎸ ᎤᏂᎰᎢ, ᎠᏏᏴᏫ ᎯᎠ ᎾᏍᎩ ᏂᎤᏍᏙᎢ, ᏅᏩᏓᎴᏃ ᏅᏩᏓᎴ ᏄᏍᏙᎢ.\nᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ, ᎠᏎᏃ ᏚᎪᎭ ᎠᏂᏔᎵ ᏩᏂᏌᏙᏱᏍᎬᎢ ᏫᎵᎻ ᎧᏁᏌᎢ ᎤᏓᏅᏖᎴ ᏍᏉ ᎤᏪᏅᏍᏗ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᏱᏦᎵᎦᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏛᎢ? ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏱᏕᏦᎵᎩ ᏂᎦᏛ ᏓᏟᎶᏍᏛᎢ?\nᏆᎴᏗᏃ ᏔᎵᏁ ᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᏚᎵ ᏥᏴᏁᏗᏱ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᏤᏦᏎᎭ?\nᎦᎵᎡᎵᎪ ᎠᎦᏗᏓ ᎦᎥᏍᎩ ᎧᏅᏂᏍᎩ ᏥᎩ ᎠᏯ.”\nᎠᎴ ᎢᎬᏱ ᎤᎾᏄᎪᏨᎯ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᏍᎩᏯ ᏄᎵᏂᎬᎬ ᏄᎵᏂᎬᎬᎩ, ᎠᎴ ᎡᎶᎯ ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎠᏁᎯ ᎤᎾᏓᏙᎵᏍᏓᏁᏗᏱ ᏂᏕᎬᏁᎲᎩ ᎢᎬᏱ ᎤᎾᏄᎪᏨᎯ ᏅᎩ-ᏗᎦᏅᏌᏗ, ᎾᏍᎩ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏴᏛ ᎠᏥᏐᏅᏅ ᎤᏗᏩᏒᎯ.\nᎾ-ᏍᎩᏂᏃ ᏰᎵ ᏗᏂᏃᏨᎵ ᎨᏒᎢ, ᎾᏍᎩ ᏄᎾᏍᏛᎢ ᎥᏝ ᎪᎱᏍᏗ ᎠᏋᏁᎯ ᏱᎩ, ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎦᎸᏉᏗᎭ ᎩᎶ ᏄᏍᏛᎢ; ᎾᏍᎩᏰᏃ ᏗᏂᏃᏣᎵ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᏱᎬᎩᏁᏉᎡᎴᎢ;\nᎤᏑᎶᏛ ᏄᎵᏍᏔᏅ ᏥᏑᎵᎪᎬ, ᎠᏆᏟᏂᎪᎲᏍᏔᏅ ᎠᏆᏓᏅᏖᎵᏓᏍᏗ ᏗᏂᎳᏫᎩ ᎠᏁᏙᎲ Boston ᏃᎴ ᏄᏯᎩ ᎦᏚᎲ ᏓᏳᏂᎶᏒ, ᎤᏂᎩᏌᏓ ᎨᏎ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᎪᎲ.\nᏍᎩᏄᏍᏕ ᎠᎾᏛᏛᎲᏍᎨ.\nᎪᎳᏅ ᏗᏣᏓᏅᏛᎵ; ᎥᏝᏰᏃ ᏯᏂᏫᏍᎪᎢ, ᎥᏝ ᎠᎴ ᏯᏂᏍᎫᏕᏍᎪᎢ; ᎥᏝ ᎠᎴ ᏧᎾᏓᎾᏅᏗᏱ ᎠᎴ ᎤᏂᏅᏗᏱ ᏱᏓᏓᏁᎸ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏕᎨᎶᎰᎢ. ᏂᎦᎥᎤᏟ ᏁᏥᎸᏉᏗ ᏂᎯ ᎡᏍᎦᏉ ᏥᏍᏆ.\nᏕᎤᏁᎶᏙᏍᎩᏂ ᏗᎬᏪᏲᎲᏍᎩ ᎠᎴ ᎤᎾᏕᏌᏯᏍᏗᏕᎩ ᎠᎦᏴᎵᎨᎢ ᏚᏒᏍᏛ ᎬᏗᏍᎩ.\nᎾᏍᎩ ᎬᏂᎨᏒ ᎾᏅᏁᎭ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏯᏛᏁᏗ ᎨᏒ ᏧᏂᎠᏫᏱ ᎪᏪᎸᎢ, ᏚᎾᏓᏅᏛ ᎾᏍᏉ ᎪᎯᏳᏙᏗᏍᎬᎢ, ᎠᎴ ᎠᎾᏓᏅᏖᏍᎬ ᏓᎾᏓᏚᎯᏍᏗᏍᎬ, ᎠᎴ ᏓᎾᏓᏚᏓᎴᏍᎬᎢ.\nᎠᏎᏃ ᎤᏚᎩ ᎬᏍᎦ ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᎩ ᎠᏴ ᎣᎩᏐᏅᎢᏍᏔᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏂᎦᏓ ᎣᏥᏴᏫᏯ.\nᎠᏎᎩ ᎠᏎᏉ ᏂᎦᏛᏁᎮ.\nᏗᏕᎶᏆᏍᎩ ᎥᏝ ᎤᏟ ᏱᎾᏥᎸᏉᏙᎢ ᎡᏍᎦᏉ ᏧᏪᏲᎲᏍᎩ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᎥᏝ ᎤᏟ ᏱᎾᏥᎸᏉᏙᎢ ᏒᏍᎦᏉ ᎤᏅᏏᏙᎯ.\nᏌᎳᏓ ᎫᏪᏂᏍᏗ ᏱᎨᏒᎾ ᏧᏁᏅᏒ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏰᎵᏉ ᎤᏩᏌ ᏧᏘᏅᏍᏗ ᏧᏤᎵ ᏗᏂᏲᏟ.\nᎹᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎦᏔᎭ ᏙᏗᎴᎯᏌᏂᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ.\nᎤᏰᏤᎢ ᎡᎶᏗ.\nᏕᏣᏘᏃᎦᏰᏃ ᎯᎠ Ꮎ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎦᎸᏉᏗ ᏕᎨᏒ ᎠᏂᏃᏍᎩᏍᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎢᏣᏤᎵ ᎦᎸᎳᏗ ᎡᎯ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ ᏂᎨᏒᎾ.\nXIV. ᎦᏂᎦᏔ ᎡᎹᏂᏓ  \nᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᎿᏂ ᎯᎠ ᏂᎨᏥᏪᏎᎸᎢ, ᏂᎯ ᎥᏝ ᎠᏴ ᏗᏆᏤᎵ ᏴᏫ ᏱᎩ; ᎾᎿᏂ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎨᎪᏎᎮᏍᏗ.\nᏂᏚᎩᏨᏂᏒᏃ ᏓᏕᏲᎲᏍᎨ ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ. ᎠᏎᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏫ ᎬᏩᏝᏫᏍᏗᏕᎨ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ.\nᏚᎷᏫᏍᏓᏁᎲ ᎠᏓᏅᏖᏍᎨᎢ ᏲᎾ ᎤᏤᏍᏙ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ, ᏂᎦᎥ ᏂᎦᏛᏁᎲ ᎾᏂᎥᏉ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏥᏂᎦᏥᏯᏛᏁᎰᎢ, ᎾᎩᏲᎲᎾ ᏥᎨᏐ ᎠᏋᏒᏉ ᎠᏆᎵᏍᏕᎩᏙᏗ,, ᎤᏂᏣᏘᏍᎩᏂ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎨᏥᏍᏕᎸᏗᏱ.\nᏔᎵᏃ ᎠᎺᏉᎯ ᏕᎨᏒ ᏭᎾᎵᏱᎶᎸ, ᏥᏳ ᎤᏂᏝᏗᏤᎸᎩ ᎦᏙᎯ; ᎢᎬᏱᏗᏢᏃ ᎠᏍᏓᏱᏳ ᏄᎵᏍᏔᏅ, ᎥᏝ ᏰᎵ ᎬᏩᎵᏖᎸᏗ ᏱᎨᏎᎢ, ᎣᏂᏗᏢᏍᎩᏂ ᎤᏲᏨᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎤᎵᏂᎩᏗᏳ ᏓᎵᏍᏗᎳᏁᎬ ᎠᎺᏉᎯ.\n“ᏣᏉᎩ ᏱᏛᎮᏏ? ᎤᏦᏱᎴᎢ.\nᎤᏍᎦᏃᎵ ᎤᏓᎾᏏᏅᏍᏔᏁᎢ ᎠᏦᏴᎢ ᏧᏍᏆᏴᏍᏗ, ᎤᏅᏏᏴ ᏭᏓᏓᎩᏅᏎᎢ.\nᎢᏳᏃ ᎩᎶ ᏥᏅᏏᏓᏍᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ; ᎨᎥᏃ ᎾᎿ ᎾᏍᏉ ᏥᏅᏏᏓᏍᏗ ᎡᎮᏍᏗ. ᎢᏳᏃ ᎩᎶ ᏥᏅᏏᏓᏍᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎡᏙᏓ ᎤᎸᏉᏙᏗ ᎨᏎᏍᏗ.\nᎠᏎᏃ, ᎢᏨᎨᏳᎢ, ᎢᏣᏅᏓᏓ ᎧᏃᎮᏛ ᎢᎸᎯᏳ ᎤᏂᏃᎮᏛ ᎨᏥᏅᏏᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᏧᏤᎵᎦ;\nᎾᏍᎩᏯ ᎠᏓᏅᏙ ᎠᎩᏍᎩ ᎤᏥᏯ ᏣᎫᏩᏯᎩᏍᎪ, ᎦᏁᎬᎭ ᎤᏩᏌ.\n“ᎣᏍᏓ ᎾᏛᎦ ᎠᎨᏳᏣ,” ᎤᏓᏙᏎᎴ.\nᎠᎴ ᎤᏓᏅᏁ ᎤᎵᏯᏍᏚᏁ ᏚᎳᏍᎬ ᎾᎥᎢ, ᎠᎵᎮᎵᏤᎮᎢ. ᎠᎴ ᏌᎺᎵᏱ ᎡᎯ ᎨᏎᎢ.\n“ᎯᏗᏍᏆᏙᎾ ᎯᎪ ᎢᎦ ᏕᏓᏦᏍᎬᎢ.\nᎠᏂᎦᏓᎭᏰᏃ ᏗᏓᏅᏙ ᎠᏍᏓᏯ ᎠᏁᎷᎲᏍᎨ ᏕᎬᏩᏂᏄ-ᎪᎨ ᎤᏂᏣᏖ ᎬᏩᏂᏯᎢ, ᎠᎴ ᎤᏂᏤᏖ ᏧᏂᎾᏫᏍᎩ ᎠᎴ ᏗᏂᏲᎤᎵ ᏚᎾᏗᏩᏍᎨᎢ.\nᎤᎬᏫᏳᎯ ᎠᎨᏴ ᏧᎦᎾᏴ ᏤᎮᎢ ᏙᏛᎴᏂ ᏓᏳᎾᏡᏔᏂ ᎪᎯ ᏣᏁᎭ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏒᎢ, ᎠᎴ ᎤᏂᏍᎦᏅᏨ Ꭼ Ꮒ ᎨᏒ ᎤᏓᎬᏁᎵ; ᎾᏍᎩᏰᏃ ᎦᏙᎯ ᏩᏍᏛ ᎢᏴᏛ ᏧᏪᏅᏎ ᎤᏛᎦᏂᎴ ᏐᎵᎼᏅ ᎠᎦᏔᎿᎢᏳ ᎨᏒᎢ, ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏐᎵᎼᏅ.\nᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎬᏩᏃᎯᏳᎯ ᏚᏂᏲᎱᏎᎢ, ᏂᏚᎾᏓᏂᎸᏨᎾ ᎾᏍᎩ Ꮎ ᎨᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒᎢ, ᎢᏅᏍᎩᏂ ᏫᏓᏂᎪᏩᏘᏍᎨᎢ ᎠᎴ ᏄᎾᏜᏏᏛᎡᎲᎾ ᎨᏎᎢ, ᎠᎴ ᏚᏂᏂᏴᎮᎢ, ᎠᎴ ᎠᏂᏃᎲᏍᎨ ᏅᏩᎾᏓᎴᏉ ᎠᎴ ᎠᏁᏙᎯᏉ ᎨᏒ ᎠᏂ ᎡᎶᎯ.\nᎤᎨᏓᎵᏴ ᎠᎾᏓᏑᏲᎰᏗᏍᎨ ᎠᎹ ᏗᎦᏁᎲ ᏩᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏁᏓᏍᏗ.\nᏍᎩᎾᎾ ᎤᎾᏓᏔᎶᏒ.\nᎠᎨᏴᏍᎩᏂ ᎦᏅᎯᏛ ᏳᏍᏘᏰᎦ ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎯ ᎨᏐᎢ; ᎤᏍᏘᏰᎬᏰᏃ ᎠᏥᏁᎸ ᎤᎦᏢᏙᏗ.\nᎾᏍᎩ ᏅᏧᎵᏍᏙᏔᏅ ᎣᏏᏳ ᎣᎩᏰᎸᏅ ᏂᎦᏛ ᏌᏉ ᎢᎦᎦᏛ, ᏗᏤᎲ ᏦᏥᏅᏍᏗᏱ ᏦᏣᏑᏰᏛ ᎠᏂᏍᎦᏯ ᏧᏂᏍᏓᏩᏛᏍᏗᏱ ᏦᏥᎨᏳᎯ ᏆᏂᏆ ᎠᎴ ᏉᎳ,\nᎢᏳᏃ ᎾᏍᎩ ᎤᏍᏗᎧᏂ ᎨᏒ ᏰᎵ ᎢᎨᏣᏛᏁᏗ ᏂᎨᏒᎾ ᏱᎩ, ᎦᏙᏃ ᎠᏏ ᏅᏩᏓᎴ ᏫᏤᎵᎯᏍᎪᎢ?\nᏓᏍᏆᏚᎸ ᏧᏂᎷᏫᏍᏔᏁᏗ ᎠᏇᏙᏅ, ᎠᏂᏍᎦᏯ ᎠᏂᏯᎢ ᎠᏂᏅ ᎠᎾᏛᎦᏍᏗᏍᎬ, ᎠᏎᏃ ᎦᏕᎶᎥᏍᎬ ᎤᎴᏫᏍᏔᏅ ᎤᎾᏓᏅᏖᏗ.\nᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏣᏂ ᎤᏙᎯᏳᎯ ᏓᏓᏬᏍᏗᏍᎬᎩ ᏗᏓᏬᏍᏙᏗ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᎤᎬᏩᎵ, ᏕᎧᏁᏤᎲ ᏴᏫ, ᎤᏃᎯᏳᏗᏱ ᎣᏂ ᏅᏓᏰᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᏕᎪᏎᎲᎩ.\nᏗᎦᏓᎷᎩᏍᎩ ᎤᏚᎵᏍᎨᎢ ᏧᎪᏩᏛᏗ ᎰᎻ.\n”Ꭵ, ᎤᏛᏁ ᎰᎻ.\nᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎨᎬᏁᎸᎯ ᏥᎨᏎᎢ ᎤᏅᏒᏉ ᎾᎾᎵᏍᏕᎵᏍᎬᎾ ᎨᏒᎢ, ᎠᏴᏍᎩᏂ ᎨᎩᏍᏕᎵᏍᎬᎢ ᎨᎩᏃᎮᎮᎸ ᎾᏍᎩ ᎪᎯ ᎬᏂᎨᏒ ᏥᏂᎨᏨᏁᎭ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᏣᎵᏥᏙᏁᎸᎯ ᏥᎩ, ᎠᏅᏗᏍᎬ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎦᎸᎳᏗ ᏅᏓᏰᏥᏅᏏᏛ; ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᎾᏚᎵᎭ ᎤᏂᎪᎵᏰᏗᏱ.\nᎿᏉᏃ ᎠᏰᎵ ᎢᏴᏛ ᎠᎵᏰᎢᎵᏒ ᏓᎾᎵᏍᏓᏴᏍᎬᎢ ᏥᏌ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏴᎸᎩ, ᎠᎴ ᏚᏕᏲᏅᎩ.\nᏂᎯ ᏣᏤᎵ ᎦᏙᎯ ᏍᏉ.\nᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗᏳ, ᎡᎶᎯᏃ ᏙᎯᎣ ᎨᏎᏍᏗ, ᎣᏍᏛ ᎨᎦᏓᏅᏖᏍᎨᏍᏗ ᏴᏫ.\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎪᎯ ᏣᏁᎭ ᎤᏂᏲ ᏗᎾᏓᏲᏁᎯ ᎤᏰᎸᏛ ᎤᏂᏲᎰᎢ; ᎠᏎᏃ ᎤᏰᎸᏛ ᎥᏝ ᎨᏥᏁᏗ ᏱᎨᏎᏍᏗ, ᏦᎾ ᎠᏙᎴᎰᏍᎩ ᎤᏤᎵᎦ ᎤᏰᎸᏛ ᎤᏩᏒ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎢᏨᎨᏳᎢ, ᎾᏍᎩ ᎦᏳᎳ ᏥᏥᎦᏔᎭ, ᎢᏤᏯᏔᎮᏍᏗ, ᏞᏍᏗ ᎠᏂᎾᎦᎾ ᎤᏂᎵᏓᏍᏔᏅ ᏕᏣᏘᏂᏒ ᏗᏥᏅᏨᎩ ᏗᏥᏲᏒᎩ ᎤᎵᏂᎩᏛ ᏂᏣᏛᏅᎢ.\nᎤᏓᏅᏎ ᏌᎳᏓ.\nᎤᏂᏁᏨᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏣᏂ ᏗᏓᏬᏍᎩ; ᎢᎦᏛᏍᎩᏂ ᎢᎳᏯ; ᎠᏂᏐᎢᏃ, ᎩᎶ ᎢᏳᏍᏗ ᎢᎸᎯᏳ ᎤᎾᏕᏅᎯ ᎠᎾᏙᎴᎰᏍᎩ ᏚᎴᎯᏌᏅ [ᎠᎾᏗᏍᎪᎢ.]\nᏞᏍᏗ ᏣᏍᎦᎸᎩ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᏣᎩᎵᏲᎢᏍᏗ ᏥᎩ; ᎬᏂᏳᏉ ᎠᏍᎩᎾ ᏂᎯ ᎢᏣᏓᏡᎬ ᎩᎶ ᏗᏓᏍᏚᏗᏱ ᏙᏓᏥᏴᏔᏂ ᎡᏥᎪᎵᏰᏗᏱ; ᎠᏍᎪᎯᏃ ᏧᏒᎯᏛ ᏓᏥᎩᎵᏲᏥ; ᎤᎵᏂᎩᏛ ᏘᎧᎿᏩᏚᎦ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎠᎵᏍᏚᎶᏃ ᎬᏂᏛ ᎠᏓᏁᎯ ᏓᎬᏅᏁᎵ.\nᎠᎴ ᎾᏍᏉ ᎤᏚᎩ ᎤᏩᏒᎩ ᏉᎳ ᎠᏕᎸ ᏧᏁᏗᏱ, ᎾᏍᎩᏃ ᏧᏲᎯᏍᏗᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᏯᏃᎩᏳ ᎠᏓᏅᏍᎬᎩ ᏩᏯᏂᏍᎬᎩ, ᎠᎴ ᎠᎵᏃᎮᏗᏍᎬᎩ.\nᏗᎪᏩᏛᏗ ᎤᎢᏒ ᏅᏃ, ᎤᎾᏓᏴᎳᏛ ᎤᏬᏚ ᎠᏎᏃ ᎤᎯᏐᏗ.\nᏄᏍᏛ ᎠᎾᏓᏛᏍᎬᎢ ᏙᏓᏦᎵᏍᏔᏂ. ᏥᎪ ᏴᏫ ᏖᎸᎳᏗ ᏓᎾᏕᏍᎪ ᏥᏍᏚᏂᎩᏍᏗᎯ? ᎠᎴ ᏒᎦᏔ-ᎢᏳᎾᏍᏗ ᏥᎪᏥᏥᎯ ᏓᎾᏕᏍᎪᎢ?\nᏂᎬᎾᏛ ᎠᎦᏕᏃᎰ ᎤᏙᎯᏳᎲ ᎦᏓ ᎪᏒᏅ.\nᎦᏥᏯᏘᏃᎮᎸᎩᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ, ᎠᏎᏃ ᎤᏂᏄᎸᏅᎩ ᎤᏂᏅᏬᏗᏱ.\n“ᎮᎵᎠᏍᎪ ᎣᏏᏉ ᎨᏎᏍᏗ?” ᎤᏛᏛᏁ.\nᏞᏍᏗ ᎤᏐᏅ ᏁᏨᏁᎸ ᏱᏣᏓᎵᏁᎯᏕᎴᏍᏗ, ᎤᏐᏅᏍᎩᏂ ᏁᏨᏁᎸ ᎯᏯᏓᎵᏁᎯᏕᎮᏍᏗ ᎣᏍᏛ ᎿᏛᏁᎲᎢ.\nᎢᎦᏛᏃ ᏕᏥᏙᏓᎨᏍᏗ, ᏧᏓᎴᏅᏛ ᏂᏕᏣᏛᏁᎮᏍᏗ;\nᎭᏟᏂᎬᏁᎸᎭ ᏂᎪᎯᎸᎾᏉ ᏣᎷᎯᏍᏗᏱ ᎠᏂ ᎨᏙᎲᎢ.\nᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎡᏏᏱ ᏫᎨᏥᏲᎵᎭ. ᎡᏈᎳ ᎠᎴ ᏈᏏᎳ ᎤᏣᏘ ᏫᎨᏥᏲᎵᎭ ᎤᎬᏫᏳᎯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏲᎵᏍᏗ ᎨᏒᎢ, ᎬᏩᎾᎵᎪᏁᎭ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎾᏍᎩ ᎠᏂᏁᎸᎢ.\nᎤᏂᏩᏛᎮᏃ ᏅᏯ ᎢᏴᏛ ᏫᎦᏌᏆᎴᎸᏍᏔᏅᎯ ᎨᏎ ᎠᏤᎵᏍᏛᎢ.\nᎠᏎᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏯᎩᎸᏃᏘᎭ, ᎰᏍᏛ ᏇᏍᏓ, ᏥᏁᎦᏉᏍᎩᏂ ᏚᏳᎪᏛ ᎨᏒᎢ ᎠᎴ ᏃᎸᏃᏘᏍᎬᎾ ᎧᏁᎢᏍᏗ ᎨᏒᎢ.\n“ᎦᏙᏃ ᏂᎦᏗ ᏥᏣᏦᏱᎭ? ᎤᏛᏛᏁᎢ ᎰᎻ.\nᎾᏂᎥᏍᎩᏂ ᏗᎬᏩᏓᏂᎸᏨᎯ ᏕᎤᎵᏍᎪᎸᏓᏁᎸᎩ ᎤᏁᎳᏅ Ꭿ ᏧᏪᏥ ᎢᏳᎾᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᏕᎤᏙᎥ ᎠᏃᎯᏳᎲᏍᎩ;\n”ᏙᎦᎵᏍᏗ ᎭᏓᏅᏖᏍᎬ, ᎲᎦᎢᏴ ᏫᏣᎷᏣ?\nᎩᎳᏈᏴ ᏃᎴ ᏗᎤᏁᏤ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎢᎤᎷᏥᎸ, ᎤᎬᏫᏳᎯ ᎢᏯᎬᏁᎸᎯ ᎨᏎᎢ, ᎤᏁᏤ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ ᏫᎨᏥᏯᏅᏗᏱ ᎬᏩᎷᏤᏗᏱ, ᎾᏍᎩ Ꮎ ᎠᏕᎸ ᏧᎨᏅᏛᎯ, ᎾᏍᎩ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎢᎦᎢ ᎠᏂᏏᏴᏫ ᎤᏂᏁᏉᏤᎸ ᎠᏂᏃᏗᏍᎬᎢ.\nᎯᎠᏍᎩᏂ ᏤᏥ ᎤᎤᏦᏅᎯᏉ, ᎾᏍᎩ ᏣᏒᏁᎸᎯ ᏧᎬᏩᎶᏗ ᎠᏂᎨᏴᎯ ᎤᏂᏁᎫᏥᏛ ᎤᏪᎳᏗᏙᎸᎢ, ᎢᎯᎡᎸ ᎦᎵᏦᏔᏅᎯ ᏩᎦ ᎠᎩᎾ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᎤᏐᏅ ᎠᎩᏁᏤᏍᏗ, ᎾᏍᎩ ᎯᎦᏔᎯ ᏫᏂᎦᎵᏍᏓ ᎤᏐᏅ ᎠᎩᏁᏨᎢ; ᎢᏳᏍᎩᏂ ᎣᏏᏳ ᎠᎩᏁᏤᏍᏗ, ᎦᏙᏃ ᏥᏍᏋᏂᎭ?\nᏧᏍᏗ ᏓᏂᏏᎳᏛᎥᏍᎨ ᎦᏅᏙᏗ ᎾᎥᏂ.\nᎤᏍᏉᏟ ᎤᏒᏂᎴ, ᎤᏰᏣᏍᏔᏁᎢ ᎤᏃᏕᎾ, ᎦᎸᎳᏗᏣ ᎤᏂᏏᏅᏎᎢ.\n“ᏁᎵᏍᎬᎢᏍᎪ ᏄᏛᏁᎴᎢ ᎤᏓᏛᏛᏁ ᏫᎵᎻ.\n“ᏙᏳᎩ?” ᎤᏛᏁ ᏌᎳᏓ, ᎤᎨᏳᎯ ᏚᎧᎾᏁ.\nᎤᏇᏓᎵᏰᏃ ᎠᎦᏌᏯᏍᏙᏗ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ; ᎠᏓᏅᏙ. ᏍᎩᏂ ᎠᏕᏌᏯᏍᏙᏗᏱ ᎬᏂᏛ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏗᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ.\nᎾᏍᎩᏃ ᎠᏁᎲᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎠᎾᎵᏅᏟ; ᎤᏓᏂᎵᎨᏃ ᎤᏕᏒᏅᎩ, ᎠᎴ ᎤᏲᎱ-Ꮢ ᏧᏪᏥ ᎾᏁᎲᎾ.\nᎢᏣᏓᏁᎮᏍᏗ, ᏂᎯᏃ ᎠᏎ ᎡᏥᏁᏗ ᎨᏎᏍᏗ; ᎣᏍᏛ ᎠᏟᎶᏛ, ᎠᏍᏓᏲᏔᏅᎯ, ᎠᎴ ᎠᏖᎸᏅᎯ, ᎠᎴ ᎬᏤᏪᎩ, ᎨᏥᏁᏗ ᎨᏎᏍᏗ ᏴᏫ ᏕᏣᏓᏠᎲᎢ. ᏄᏍᏛᏰᏃ ᎢᏣᏓᏟᎶᎡᎸ ᎾᏍᎩᏯ ᎾᏍᏉ ᎡᏣᏟᎶᎡᏗ ᎨᏎᏍᏗ;\nᎤᏂᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎡᎶᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᎾᏓᏙᏕᏍᏗᏍᎩ, ᎠᏎᏰᏃ ᏗᎾᏓᏙᏕᏍᏗᏍᎩ ᎤᏂᎾᏄᎪᎢᏍᏗ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᏗᏓᏙᏕᏍᏗᏍᎩ ᎤᎾᏄᎪᏫᏒᎯ.\nᏦᎢᏃ ᎢᎦ ᏅᎩᏁᏃ ᎠᏰᎵ ᎤᎶᏐᏅ ᎠᏓᏅᏙ ᎬᏂᏛ ᎠᏓᏁᎯ ᎤᏁᎳᏅᎯ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ ᎬᏩᏂᏴᎸᎩ, ᎠᎴ ᏚᎾᎴᏅᎩ, ᎾᏍᎩᏃ ᎬᏩᏂᎪᎲᎯ ᎤᏣᏘ ᎤᏂᎾᏰᏒᎩ.\n“ᏣᏉ ᎯᎪ ᎤᏒᎯ,” ᎤᏛᏁ ᎡᏝᏪ ᎢᏳᏍᏗ.\nᎢᏳ ᎠᎴ ᎭᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎠᎭ ᏞᏍᏗ ᏄᎾᏍᏛ ᎤᎾᏠᎾᏍᏗ ᏱᏂᏣᏍᏕᏍᏗ; ᎾᏍᎩᏰᏃ ᎣᏐ ᎤᏂᏰᎸᏐ ᎤᎾᏓᏙᎵᏍᏙᏗᏱ ᎤᎾᎴᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏚᏅᏏᏯᏅ ᏕᎦᎳᏅᏛ ᎡᎾᎢᏓᏍᏗᏱ, ᏴᏫᏉ ᎬᏩᏂᎪᏩᏛᏗᏱ ᎤᎾᏚᎵᏍᎪᎢ. ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎨᎦᎫᏴᎡᎸ.\nᏱᏥᎦᏙᎥᏎᏍᎩᏂ ᎦᏛᎬ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏪᎠ, ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏆᏚᎵᎭ, ᎥᏝᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎨᏒᎢ, ᎥᏝ ᎤᏂᏍᎦᏅᏨᎯ ᏱᏙᎨᏥᏰᎸᏁ ᏄᏂᏍᎦᏅᏨᎾ.\nᏩᏍᏛ ᎢᏯᎦᏴᎵ ᏧᏕᏘᏴᏓ ᏓᏂᎭᎷᎥᏍᎨ ᏍᎪᏯ ᏃᎴ ᏛᎦ ᎧᏅᏂᏍᎩ.\nᎠᏓᏖᎸᎮᏍᎩ ᎠᎵᏍᎩᏍᏗ ᏯᎩᏨᎦ ᏰᎵᏉ ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏱᎬᎦ ᎢᎦᏪᏍᏗ ᏓᎩᏏᎳᏛᎢ.”\nᎾᎯᏳ ᏥᏌ ᎤᎴᏅᎮ ᎠᎵᏥᏙᎲᏍᎨᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎿᏉᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ.\nᎠᏂᏧᏏᏰᏃ ᎤᏰᎸᏛ ᎠᏂᏔᏲᎯᎭ, ᎠᏂᎪᎢᏃ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎤᏂᏲᎭ;\nᎤᏣᏘᏅ ᎢᏣ, ᏕᎦᏚᎲ ᎤᎿᏕᎨᏒ, ᏧᎾᏗᏔᏍᏗ ᏃᎴ ᎤᏂᏲ ᎠᏂᎨᏯ ᏚᏂᏁᎸ ᏃᎴ ᎦᎶᏇ ᎬᏘ ᏗᎾᏟ ᏃᎴ ᎠᏰᎳᏍᏗ ᎬᏘ ᏗᎾᏟ.\nᎾᎥᏂ ᏱᏣᎪᎵᏰ, ᏱᎪᏩᏔ ᎦᏙ ᏭᎪᏍᎬ.\n”ᎭᏩ, ᎨᏍᏗᏗ ᏓᎳᎳ ᏕᎯᎦᏖᏃᎲ ᏱᎨᎵᏍᎨ,” ᎤᏛᏁ ᏫᎵᎻ, ᏰᎵ ᎤᏂᎦᎸᎯ.\nᎧᎵ ᎠᏂᏅ ᏗᎦᏅᎯᏓ ᏗᎦᏍᎩᎶᎩ, ᏗᏂᏲᏟ ᎡᏓᏍᏘ ᎠᏂᏅ ᎠᎴ ᎠᏂᏅᎬ.\nᎯᎸᎯᏨ ᏗᎨᏥᏂᏴᏓ, ᎪᎰᏍᏘ ᎫᏩᏛᏁᏗ ᏱᎨᏒᎾ ᏧᏍᏕᎸᏗ.\nᏦᎢ ᎢᏳᏩᎬᏘ ᎤᏙᏓᏈᏒ ᏩᏩᏛᎯᏙᎮ ᏫᎵᎻ, ᏧᏍᏆᎸᎰ ᎠᎵᏍᏓᏴᏗ, ᏃᎴ ᎤᏚᏓᎸᏁᎸ ᏫᎵᎻ ᏍᎩᎾᎾ ᏄᏛᏁᎴ.\nᎠᏲᎱᏍᏗ ᎤᏓᏨᏯᏍᏗ ᎨᏒ, ᎾᏍᎩ ᎠᏍᎦᏂ; ᎠᏍᎦᏂᏃ ᎤᎵᏂᎪᎯᏍᏗᏍᎩ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ.\nᏲᎾ ᎤᏤᏍᏙ ᏏᏆ ᎤᏴᏍᏗ ᏭᏴᎴᎢ ᏃᎴ ᏫᎵᎻ ᎦᎾᎥ ᎾᎥᏂ ᏚᏟᏂᏆᏅᏁ.\nᎠᎴ ᎾᏍᏉ ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎢᏧᎳᎭ ᏕᎨᎦᏘᏅᎭ ᏗᎨᏥᎢᏍᏗᏱ.\nᎬᏩᏔᏲᏎᎴᏃ ᏧᏁᏤᏗᏱ ᏂᎨᏒᎾ ᏗᏍᏛᎬ ᏭᏂᎶᎯᏍᏗᏱ.\nᎰᎻ ᎨᏍᏗ ᏳᎵᏍᎪᎵᏓᏁᎮ ᎤᏅᎪᎢᏍᏗ ᏫᎵᎻ ᎠᎴ ᏭᏴᏍᏗ ᏲᎾ ᎤᏤᏍᏙ ᏫᎵᎻ ᎤᏴᏍᏗ.\n”ᏓᏓᎾᏁᎶᏂᎨ ᏧᏍᏆᏴᏍᏗ?” ᎤᏛᏛ ᏫᎵᎻ.\nᎬᏁᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎠᎴ ᎨᎦᏑᏰᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᏂᎦᏔᎲᎢ, ᎯᎠ ᎾᏍᎩ ᏣᎦᏌᏯᏍᏙᏗᏱ ᎢᎬᏱ ᎦᏰᎯ ᏂᏚᎪᏗᏍᎬᎾ, ᎠᎴ ᏕᏣᎸᏫᏍᏓᏁᎲ ᎩᎶ ᏂᏯᎵᎪᏁᎲᎾ.\nᎠᎴ ᎾᏍᏉ ᎴᎭᏫ ᎤᏁᎫᏥᏛ ᏝᏍᎪ ᏕᎤᎸᏫᏍᏓᏁᎲ ᏳᏚᏓᎴᏍᏔᏁᎢ ᏚᏓᏂᎸᏨ ᎾᏍᎩ Ꮎ ᏅᏓᎨᏥᏅᏏᏛ ᎠᎴ ᏚᏅᏫᏍᏔᏅ ᎤᏣᏘᏂ ᎢᏗᏢ ᏭᏂᎶᎯᏍᏗᏱ?\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎠᏁᏙᎲ ᎤᎷᏨ, ᎤᏂᏣᏘ ᏚᎪᎮ ᎬᏩᎾᏓᏡᏫᏍᏕᎢ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎬᏩᎾᏛᏛᎮᎸᎢᏍᎨᎢ.\n”ᏍᏆᏛᎦᏍᏓ, ᏍᏆᏛᎦᏍᏓ!” ᎤᏪᎷᏁ ᏌᏌ.\nᎡᏘᏴᏓ ᏓᎫᏩᎴᏅᏓ ᏓᏍᏆᏂᎪᏗᏍᎬ ᏣᏁᏆ ᏃᎴ ᏧᏂᏍᏗ ᎢᎾᎨ ᎤᎾᏕᏅ, ᏃᏥ ᏧᎧᎭᏲᏓ ᏥᏓᏓᏪᎳᎩᏍᎪ ᎢᎦᎦᏓ, ᏚᎾᎧᏛ ᎬᏂᎨᏒ ᎠᏓᏪᎳᎩᏍᎬ, ᎤᏃᎴ ᎠᏒᎢᏍᏗᏍᎬ ᏏᏆ ᎤᏍᏘᏯᏅ ᎠᎪᎲᏍᎬ ᎠᏒᎬ.\nᎢᎬᏱᏱᏃ ᎠᎴ ᏔᎵᏁ, ᎠᏂᏯᏫᏍᎬ ᎤᏂᎶᏒ ᏭᏂᎷᏤ ᏔᎷᎩᏍᎩ ᏗᏍᏚᏛ ᏗᎦᏚᎲ ᏫᎦᎾᏄᎪᎢᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎤᏩᏒᏉ ᎤᎾᎵᏍᏚᎢᎡᎴᎢ. ᎤᏂᏄᎪᏨᏃ ᏌᏉ ᎦᎳᏅᏛ ᎤᏂᎶᏎᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏓᏓᎴᏔᏁᎢ.\nᏏᏲ ᎤᏍᏗ ᎠᏣᏗ. ᎤᏛᏁ ᎠᏤᎯ ᎠᏣᏗ, ᏗᎦᏌᏆᎸ ᏚᏁᎦᎸ ᏗᎬᏗ, ᎠᏯ ᏓᎶᎨ ᎬᏉᏎᎰ ᎠᏂᏣᎳᎩ. ᏅᏲ ᏥᏓᎣ ᏃᎴ ᏕᏥᏅᎦᎵᏍᎪ.\nᎦᏳᎳᏰᏃ ᎢᎦᏛ ᎤᎾᎪᎸᏒ ᏎᏓᏂ ᎤᎾᏍᏓᏩᏕᏅ.\nᎤᏔᏕᎩᏍᎨ ᏃᎴ ᎤᏲᏏᏍᎨᎢ ᏥᏍᏕᏥ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏔᏲᏎᎭ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᎾᏍᎩᏰᏃ ᎯᎠ ᎢᏣᎵᏍᏕᎸᏙᏗ; ᎯᎠ ᏰᏃ ᏥᏂᏣᏛᏅ ᎥᏝ ᎩᎶ ᏌᏉᎤᏅ ᎤᏍᏘᏰᏅᎯ ᎠᏓᎦᏙᎠᏏ.\nᏃᎴ ᏍᏉ, ᎤᏩᏌ ᎤᏓᏟᏃᎮᏕ, ᏰᎵ ᏚᎷᏫᏍᏔᏁᎴ ᏰᎵ ᎤᏦᏍᏗ ᏧᎷᏫᏍᏔᏁᏗ.\nᎾᎯᏳᏃ ᎢᎦ ᏆᎴᏗ ᎠᎴ ᎡᎶᏛ ᎤᎾᎵᎢᏕᎢ; ᏗᎾᏓᏍᎦᎩᏰᏃ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏎ ᎾᎯᏳ ᎢᏯᏍᏘ.\nᎤᏍᎦᏃᎵ ᎾᎥᏂ ᎤᎷᏤ ᎤᏔᏂᏗᎨ ᎠᏣᏗ, ᎡᎳᏗ ᎢᏳᏍᏗ ᎤᏬᏂᏎ, ᏏᏲ ᎤᏍᏗ ᎠᏣᏗ, ᎤᎬᏍᏕᎵ ᎬᏉᏎᎰ ᎠᏂᏣᎳᎩ.\nᎥᎥ, ᏚᏳᎪᏗ ᎨᎵᎭ ᎢᎪᎯᏛ ᎠᏂ ᎯᎠ ᎦᎵᏦᏛ ᏥᏯᎥᎢ, ᎢᏨᏰᏍᏛᏙᏗᏱ ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ;\nᎠᏍᎦᏯᏱ ᎠᏓᎾᏅᎥᏍᎩ ᏃᎴ ᎠᏙᎩᏯᏛ, ᎤᏍᏗ ᎠᏍᎦᏯ ᎤᏨᏉᏗ, ᎠᏍᎧᎾᎢ ᎢᏣ ᎦᎴᏂ ᎠᏯᏙᎯ ᎤᏍᏘᏰᎬ ᎤᏭᏌᎥ ᎤᎨᏬᏗ ᎨᏒ.\nᎦᎸᎳᏗ ᏭᏔᎷᎨᎢ ᎦᏓᎡᎢ, ᏎᎦ ᏓᎦᏢᏂᏎ, ᏁᎳᎩ ᎤᏓᏅᏖᏗᏍᎨᎢ ᏫᎵᎻ.\nᏃᏉᏗ ᏙᏳ ᏧᏂᎾᎸᏤ ᎭᎾᏉ ᏧᏂᏂᏴᎮ ᏍᎩᎾ ᏥᏍᏆ ᏃᎴ ᏧᎾᏣᎧᏎᎴ ᎦᎾᎪᎢ. \nᏅᏃᎯ ᎠᏂᎶᏏᏙᎲ ᏕᎦᎦᏙᏍᏙ ᎠᏂᎩᎶ, Claire ᏥᎦᏖᏃᎰ, ᎤᎩᏓᏟᏅᏯ ᏳᎾᎵᎪ ᏯᏂᏩᏛᎯᏙ ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ.\nᎢᎬᏱᏃ ᎤᎷᏨᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᎾᏝᎢ, ᏣᏤᎵ ᏑᏓᎨᏛ ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᎤᏁᏉᏨ.\nᎾᎦᎥ ᎣᏍᏛ ᎠᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᎥ ᎣᏌᏂ ᎠᏓᏁᏗ ᎨᏒ ᎦᎸᎳᏗ ᏗᏓᎴᎲᏍᎦ ᎠᎴ ᎠᏠᎠᏏᎯᎭ ᏗᏓᎴᎲᏍᎦ ᎠᎦᏴᎵᎨᏍᏛᏱ ᎢᎦᎦᏘ ᎤᏪᎯ, ᎾᏍᎩ ᎬᏩᏓᏁᏟᏴᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎬᏩᎦᏔᎲᏍᏗ ᎨᏒ ᏄᏓᏴᎳᏛᏫ ᎨᏒᎢ.\nᏄᏓᎴ ᎤᏚᎵᏍᎬ, ᎨᎵ ᎤᏓᏂᏰ ᎤᏛᏅᎢᏍᏙᏗ ᎤᎾᎥ.\nᎨᏍᏗ ᏗᎬᏩᏎᏍᏗ ᏱᎨᏎ ᏫᎵᎻ, ᎠᎧᏔᎮᎢ ᏰᎵ ᎾᏂᎡ ᏧᎵᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏭᎩᏨᏅ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏧᎾᏛᏐᏅᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᏂᎦᏛ ᏗᏂᎳᏫᎩ ᎤᎾᎵᏃᎮᎸ ᎤᎾᎸᎴ ᏥᏌ, ᎠᎴ ᎤᎾᏖᎾᏫᏛᎮᎢ, ᎠᎴ ᏆᎴᏗ ᏫᏚᏂᏲᎯᏎᎴᎢ.\nᎤᎳᏏᏕᎾ ᎬᏗ ᎤᏒᏂᎴ ᏧᏍᏆᏴᏍᏗ ᎧᏁᏍᎪ ᎭᏫᏂᏣ.\nᎠᎴ ᏏᏂᎹᏂ, ᎠᎴ ᏗᎦᏩᏒᎩ, ᎠᎴ ᎠᏠᏁᏗ, ᎠᎴ ᎠᏜ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ, ᎠᎴ ᎪᎢ, ᎠᎴ ᏩᎾᎨ ᎤᏣᎴᏍᏗ ᎢᏒ, ᎠᎴ ᎤᏣᎴᏍᏗᎤᎦᏛ, ᎠᎴ ᎦᎾᏝᎢ, ᎠᎴ ᎠᏫ-ᎤᏂᏃᏕᏅ, ᎠᎴ ᏐᏈᎵ, ᎠᎴ ᏧᏍᏗ-ᏓᏆᎴᎷ, ᎠᎴ ᏴᏫ-ᏗᎦᎾᏝᎢ, ᎠᎴ ᏴᏫ ᏧᎾᏓᏅᏙ.\nᏧᏓᏃᏣᏟ ᎠᏍᎦᏯ ᎨᏒ, ᎢᏓᏗᏍᎪ, ᎾᏗᎦᎵᏍᏙᏗᏃ ᎾᏍᎩ ᏧᏬᎷᏩᏛᏓ ᏗᎪᏪᎶᏙᏗ ᎠᏯ ᎢᏗᏣᎳᎩ ᎡᎵᏊ ᎨᎪᏪᎶᏗ ᎢᎬᏌ ᎢᎩᏬᏂᎯᏍᏗ.\nᎾᏍᎩ ᏗᏥᎦᎵᏍᏓᏕᏗ ᎨᏎᏍᏗ ᏗᏥᎾᏫ, ᎠᎴ ᏗᏣᎵᏂᎪᎯᏍᏙᏗ ᎨᏎᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎢᏥᏬᏂᎯᏍᏗᏱ ᎠᎴ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ.\nᎿᏉᏃ ᎡᎩᎵᏈ ᎯᎠ ᏄᏪᏎᎸᎩ ᏇᏍᏓ; ᎠᏴ ᎾᏍᏉ ᎠᏋᏒ ᎠᏆᏚᎵᎭ ᏥᏯᏛᎦᏁᏗᏱ ᎾᏍᎩ ᎠᏍᎦᏯ. ᎯᎠᏃ ᏄᏪᏒᎩ; ᎤᎩᏨᏅ ᏘᏯᏛᎦᏁᎵ.\nᎠᎬᏱ ᏓᎩᏯᎬ ᏓᎬᎾ, ᏕᎦᏕᎣᏍᏔᏅ ᎦᏍᎩᎸ ᎠᏂᏂ.\nᎠᏎᏃ ᎾᏂᎥ ᎠᏂᎪᎵᏰᏍᎨᏍᏗ ᎤᏅᏒ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎿᏉᏃ ᎤᏅᏒ ᎨᏒ ᎤᏂᎮᏍᏗ ᎤᎾᎵᎮᎵᏍᏙᏗ, ᎥᏝᏃ ᏅᏩᎾᏓᎴ ᎨᏒᎢ.\nᏂᎪᎯᎸ ᏂᎦᏓᏙᎵᏍᏗᏍᎬ ᏂᏥᏔᏲᎯᎲ ᏂᎯ ᏂᏥᎥ ᎡᏥᏙᎵᏍᏗᏱ, ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓᏅᏛ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ,\nᎯᎠ ᏂᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᎩᎬ, ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎠᏍᏓᏱᏗᏍᎩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏥᏁᏤ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ.\nᎾᎯᏳᏃ ᏥᎨᏒᎩ ᎦᏙ ᎤᏍᏗ ᎢᏥᏄᏉᏤᎮ ᎾᏍᎩ ᎪᎯ ᏥᏣᏕᎰᏍᎦ? ᎠᏲᎱᎯᏍᏗᏰᏃ ᎨᏒ ᏭᎵᏰᎢᎶᎯᏍᏗ ᎾᏍᎩ.\nᏑᎾᎴᏃ ᎠᎾᎢᏒᎢ, ᎤᏂᎪᎮ ᎡᎦᏔᎢᏳᏍᏗ ᎲᎬ ᎤᏩᏴᏒᎯ ᎨᏎ ᏚᎿᏍᏕᏢ ᏅᏓᎬᏩᏓᎴᏅᏛ.\nᎢᏣᏕᎶᏆᏗᏰᏃ ᎢᏨᎥᏏ, ᎾᏍᎩᏯ ᏂᏨᏯᏛᏁᎸ ᎢᏣᏛᏁᏗᏱ.\nᏂᎦᏓ ᎦᏚᎲᎢ ᏧᏂᎷᏗᏤᎢ ᎡᏆ ᏣᏚᏂᎳᏫᏤ ᎾᏍᏊ ᏣᏚᎧᏔᏁ ᎯᎳᎪ ᎾᏍᏊ ᏧᏂᏲᎯᏍᏗᏊ.\nᎣᏍᏓ ᎤᏰᎸᎮ ᏌᎳᏓ ᏚᎶᏅᎮᎸ.\nᎢᏣᎵᎮᎵᎩ ᎾᏍᎩ ᏄᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᏂᎯ ᎦᎸᎶᎢ ᎠᎴ ᏂᎯ ᎢᏣᏓᏅᏘ ᎠᎴ ᎡᏥᏅᏏᏛ, ᎠᎴ ᎢᏣᏙᎴᎰᏍᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᎦᏞᏥ.\nᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᏗᏄᎪᏗᏍᎩ ᏚᏂᏅᏎ ᏗᎾᏓᏂᏱᏍᎩ, ᎯᎠ ᏫᏄᏂᏪᏍᏗᏱ; ᏘᎧᎲᎦ Ꮎ ᎠᏂᏍᎦᏯ.\nᏎᎦ ᎨᏍᏗ ᎪᎱᏍᏗ ᏳᏛᎾ ᏌᎳᏓ.\nᎤᎴᏫᏍᏙᏗᎢ ᏗᎦᎶᎩᏍᎩ ᏧᏪᏅᏒᎢ ᎾᏓᏁᎸᎾ ᏱᎩ ᎡᏍᎦᏂ\nᎠᎴ ᎤᏙᎯᏳᎯ ᎵᏫ ᏧᏪᏥ ᎠᏥᎸᎨᎳᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎨᏥᏁᏗ ᎨᏒᎢ ᎨᎦᏒᎦᎸᏗᏍᎨ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏧᏂᏂᏢᏗᏱ ᏴᏫ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᎨᏒᎢ, ᎾᏍᏉ ᎡᏆᎭᎻ ᎠᏰᎵ ᏅᏓᏳᎾᏓᎴᏅᎯ ᎨᏒᎢ.\nᏎᎦᏨ ᎦᏬᏂᏍᎬᎢ ᏃᏊ.\nᎠᏎᏃ ᎢᏣᏓᏑᏯ ᏂᏦᎯᏳᎲᏍᎬᎾ. ᏥᏌᏰᏃ ᏗᏓᎴᏂᏍᎬ ᏂᏓᎦᏔᎰ ᎾᏍᎩ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ, ᎠᎴ ᎾᎦᏔᎰᎢ ᎾᏍᎩ ᎾᎤᏡᏗᏍᎩ ᎢᏳᎵᏍᏙᏗ.\nᎾᏍᎩ ᎠᏍᎩᎾ ᎢᎩᎶᏄᎮᏗᏱ ᏂᎨᏒᎾ; ᎥᏝ ᏰᏃ ᏱᎩᎪᏁᎸ ᎾᏍᎩ ᎠᏓᏅᏖᎵᏙᎲᎢ.\nᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᎠᏞᏍᎨᏍᏗ ᏚᏲᏍᎨᏍᏗ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎩᎶᏃ ᎢᎤᎦᏔᎲᏍᎨᏍᏗ,\n”ᎣᏍᏓ ᎠᎩᏰᎸᎰ ᏩᏇᏓᏍᏗ ᎭᎾ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏅᏩᏓᎴᏰᏃ ᎦᎫᏍᏛᏗ ᎥᏝ ᎩᎶ ᎬᏩᏗ ᏱᎩ ᎾᏍᎩ ᎤᏩᏒ ᎦᏳᎳ ᎠᏅᎯ ᏥᎩ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏥᎩ.\nᎾᎥᏃ ᏓᏓᎿᏩᏍᏛ ᏥᏌ ᎦᏛᎢ ᎠᏂᏙᎾᎥᎩ ᎤᏥ, ᎤᏂᏃ ᎤᎸᎢ ᎺᎵ ᏟᎣᏆ ᎤᏓᎵᎢ, ᎺᎵᏃ ᎹᎩᏕᎵ ᎡᎯ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᎿᏉ ᎢᏦᎯᏳᎲᏍᎦ?\n“ᎨᎵᎠ ᏰᎵᏉ ᏓᏓᎴᏅᎯᏉ ᏰᏙᎲᎾ ᏥᏍᏕᏥ.\nᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎩ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎤᏩᏒ ᎢᎩᎩᏍᏓᏁᎸᎩ ᏗᏗᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ, ᏕᎩᏢᎬᏃ ᏧᏤᎵ ᏂᏚᏩᏁᎸᎩ.\nᎪᎯᏰᏃ ᎨᏒ ᎤᏍᎪᎸ ᎢᏗᎪᏩᏗᎭ ᎠᏓᎨᏗᏱ; ᎾᎯᏳᏍᎩᏂ ᎨᏎᏍᏗ ᏕᎦᎧᏛ ᏙᏓᏓᏓᎪᎯ; ᎪᎯ ᎨᏒ ᎢᎦᏛᏉ ᏥᎦᏔᎭ; ᎾᎯᏳᏍᎩᏂ ᎨᏎᏍᏗ ᏥᎦᏔᎮᏍᏗ ᎾᏍᎩᏯ ᎾᏍᏉ ᎥᎩᎦᏔᎲᎢ.\nᎠᎴ ᎠᏏ ᎤᏣᏔ ᏥᏌ ᏧᎸᏫᏍᏓᏁᎸᎯ, ᎾᏍᎩ ᎢᏳᏃ ᏂᎦᏛ ᏱᎪᏪᏔᏅ, ᎦᏓᏅᏖᏍᎬ ᎡᎶᎯ ᎾᏍᏉ ᏯᎧᎵᎩᏉ ᎪᏪᎵ ᎾᏍᎩ ᏗᎪᏪᎳᏅᎯ. ᎡᎺᏅ.\n”ᎠᏯ ᎤᏙᎯᏳᎯ,” ᎤᎵᏍᏗ ᎢᏳᏍᏗ ᏂᏧᏪᏎ.\nᎤᏁᏅᏎᏃ, ᎠᎴ ᏭᏂᏩᏛᎮ ᎠᎩᎾ ᎨᎵᏌᏕ ᎦᎶᎯᏍᏗᏳᎶᏗ ᏙᏱᏗᏢ, ᎾᎿ ᏕᎦᏅᏅ ᏓᏠᏍᎬᎢ; ᎤᏁᎵᏌᏕᏎᏃ.\nᏎᎦ ᎠᎴᏫᏍᏘᏍᎬ ᎠᏛᎦᏍᏘᏍᎨ ᎢᏴ ᎠᎬᏱᏣ ᎠᎵᏖᎸᎮᏍᎬ ᏧᏆᎶᎬ.\nᏔᎷᏣ ᎫᏌᎢ ᎠᎵᏎᎮ, ᎦᏢᏍᏙᏗ ᎤᏐᏓᎴ, ᏭᎷᏣ ᎠᏯᏖᏅ ᏂᎦᎵᏍᏗᏍᎬ ᎤᎨᏓᎵᏴ, ᎤᏩᎾᏕᏍᎩ ᏄᏍᏛ, ᏧᎧᎭᏲᏛ ᏚᎦᏌᏛ ᎦᏄᎸ ᏃᎴ ᏧᏯᏛᏅ ᏧᏆᎶᎦ ᏃᎴ ᎡᎳᏗ ᎠᏛᏍᏗ.\n”Ꭳ, ᎤᏬᏚᏨ ᎢᎦ, ᏎᎦᏨ ᎦᎷᎩ! \nᎾᏍᎩᏃ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏩᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᎩᏙᏓ, ᎾᏍᎩ ᎢᎩᎨᏳᎯᏳ ᏥᎨᏒᎩ, ᎠᎴ ᏥᎩᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ, ᎠᎴ ᎣᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ,\nᏥᏌ ᎤᏁᏨᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᎩᎶ ᎠᎩᎨᏳᎯ ᏱᎩ, ᎾᏍᎩ ᏧᎧᎿᏩᏛᏍᏗ ᎠᎩᏁᏨᎢ; ᎡᏙᏓᏃ ᎤᎨᏳᎯ ᎢᏳᎵᏍᏙᏗ, ᎠᎴ ᏓᏲᏍᏗᎷᏤᎵ, ᎠᎴ ᎦᏁᎸᎢ ᏓᏲᏍᏓᏁᎳᏗ.\nᎤᏂᏩᏙᎯᏴᏓ ᏐᏈᎵ ᏧᏂᎾᏌᎾᎩᏛ ᏓᏆᎴᎳ ᏚᎾᏦᏔᏁ ᏭᏂᎷᏤ ᏭᏕᎵᎬ.\nᎥᏝ ᎩᎶ ᎤᏓᎨᏳᎯᏳ ᎨᏒ ᏴᎬᎪᎾᏛᏓ ᎤᎵᎢ ᏗᏲᎱᎯᏎᎯ.\nᏓᎦᎵᏍᎬ ᏃᎴ ᏓᎦᏍᎬ, ᏂᎪᎯᎸᎾ ᎦᏙᎯ ᏗᎾᎪᏘᏍᎪ ᎤᎾᏨᏓᎵ.\nᎠᏂᎯᎠ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎥᏝ ᎤᏁᎳᏅᎯ ᎡᏗᎨᏳᎢᏳ ᏄᎵᏍᏔᏅᎢ, ᎠᏴᏍᎩᏂ ᎢᎩᎨᏳᎯᏳ ᏄᎵᏍᏔᏅᎢ, ᎠᎴ ᏧᏅᏒ ᎤᏤᎵᎦ ᎤᏪᏥ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᎫᏴᏙᏗ ᎢᎩᏍᎦᏍᏨᎢ.\nᎤᎾᎳᏅᎯᏰᏃ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎦᎸᎶᎢ ᏨᏗᏓᎴᎲᏍᎦ ᏥᏓᎦᏘᎴᎦ ᏄᏓᎴᏒ ᎤᏁᎳᏅᎯ ᏄᏂᎸᏉᏛᎾ ᎨᏒ, ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᏴᏫ, ᎾᏍᎩ ᏚᏳᎪᏛ ᏣᏂᎾᎯᏍᏗᎭ ᎤᏲ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ;\nᎦᏓᏁᏍᏛ ᏃᎴ ᎤᎵᏏᎬ ᎠᏁᎰ ᎤᎪᏏᏓ ᎢᏗᏅᏁ.\nᎢᎦᏛᏃ ᎣᏒ ᎦᏙᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎠᎴ ᏧᏛᏎᎢ, ᎠᎴ ᎤᎦᏔᏔᏁᎢ ᎤᏁᏉᏤ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏩᎫᏗ. ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᎤᎵᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ\nᏃᎴ ᏄᏓᎴ ᏰᎵ ᎤᏒᎯ ᎢᏴ ᎠᏥᎸᏳᎸᏗ ᏙᎩᏃᏢ ᏣᎵ.\nᎪᎯᏃ ᏥᎩ ᎢᏗᎦᏔᎭ ᎢᏳᏍᏗ ᎠᏲᏍᏙᏗᏍᎬ ᎬᏂᎨᏒ ᎢᏔᎬᏁᏗᏱ ᎾᎯᏳ ᎬᏂᎨᏒ ᎢᏯᎬᏁᏗ ᎨᏒᎢ.\nᏐᏉ ᎢᏯᎦᏴᎵᏉ ᎾᏂᎭ?\nᎠᎾᏘᎨ ᎠᏂᎨᏯ, ᏗᏂᏲᏟ ᏃᎴ ᏁᏂᏏ ᏧᏆᎶᎬ ᎤᎾᏅᏁ ᎤᎾᏢᏲᎵᎸ ᎢᎾᎯᎨᏍᏗ ᎤᏁᏅᏍᏗ.\n“Ꮒ,” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ ᏩᏎᎯᎮᎢ.\nᎵᏏᏃ ᎿᏉ ᎤᏍᏆᎸᎡᎴ ᎤᏕᏗᏱ ᎠᏲᎵ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎠᏧᏣ.\nᎠᏙᎯ ᎮᏓ! \nᎠᎴ ᎢᎦᏛ ᎤᎾᏓᏑᏴᎩ ᎤᎾᏚᎵᏍᎬᎩ ᎬᏩᏂᏴᏗᏱ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏳᏏᎳᏕᎢ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᏧᏴᎴ ᎾᎯᏳ ᏤᎮ ᎡᏆᏱᏓ. ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᏧᎨ ᎠᎦᏙᏗ ᎦᏚ, ᎾᏍᎩ ᎬᎩᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏎ ᎠᏥᎸᎠᏁᎶᎯ ᎤᏅᏒ, ᎠᎴ ᎾᏍᏉ ᏥᏚᏁᎴ ᎾᏍᎩ ᎠᏁᎯ.\nᎿᏉᏃ ᎤᎾᏓᏅᏖᎸᎩ ᎬᏩᏂᏴᏗᏱ: ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏳᏏᏔᏕᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏏ ᏄᏍᏆᎸᎡᎸᎾ ᎨᏒᎢ.\nᎡᏝᏪᎯ ᏄᎵᏍᏔᎾ ᏗᎪᏪᎵᏍᎩ, ᎠᏓᏅᏖᎵᏙ ᎦᏅᏃᏩ ᎤᏬᎦᏒ.\nᎨᏍᏗ ᏗᏣᏏᎳᏛᏗ ᏱᎩ.\nᎣᏍᏓ ᎠᎦᏎᏍᏔᏅ ᏂᎦᎵᏍᏔᏁᎲ, ᎤᏬᎯᏳᏅ ᏁᎳᎩ ᎤᏪᎵᏍᏗ ᎢᏕᎲ, ᏚᏬᎯᏳᏅ ᎦᏙ ᏕᎩᏂᏲᎲ ᏃᎴ ᏳᏃᎯᏳᎲᎾ ᎨᏒ ᏕᎪᏪᎸ ᏕᎦᏙᎥ ᏁᎳᎩ ᎤᏪᎵᏍᏗ.\nᎥᏝ ᎠᎴ ᎩᎶ ᏳᏓᏑᏰ ᏳᏂᎬᎨᎢ, ᎾᏂᎥᏰᏃ ᎦᏓ ᎠᎴ ᏓᏓᏁᎸ ᏧᏂᎯ ᏚᏂᎾᏗᏅᏎᎢ, ᎾᏍᎩᏃ ᎤᏂᎾᏗᏅᏛ ᏧᎬᏩᎳᏅᎯ ᎤᏂᏲᎴᎢ,\nᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎤᏬᎸ ᎤᎷᏨᎩ. ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏥᏌ ᏂᎯ ᏙᏓᏍᏉᏑᎴᎵ ᏗᏆᎳᏏᏕᏂ?\nᏞᏍᏗ ᎾᏍᎩ Ꮎ ᎠᎵᏍᏓᏴᎲᏍᎩ ᏅᎵᏌᎵᏉ ᏳᏰᎸᏁᏍᏗ Ꮎ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ; ᎠᎴ ᏞᏍᏗ ᎾᏍᎩ Ꮎ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᏱᏚᏭᎪᏓᏁᎴᏍᏗ Ꮎ ᎠᎴᏍᏓᏴᎲᏍᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᏚᏓᏂᎸᏨ.\nᏍᏔᏯ ᎢᏳᎵᏍᏔᏅ ᎤᎾᎳᏍᏘᏰᎥ ᎦᏙ ᎤᎾᏛᏁᎸᏗ ᎠᏰᎵ, ᎠᏩᏛᏗ ᏎᎷ ᎠᎾᏔᏍᎩᏍᎩ, ᎤᏁᏍᏔᎶᏨ ᎤᎦᎾᏍᏓ ᎤᏪᏥ ᎠᎦᏅ ᎤᏩᎾᏬᏒ, ᎨᏂᏗ ᏗᎦᏅᎵᏰᏓ ᏒᎧᏔ ᏧᎾᏗᏅᏓ ᏧᏂᏯᏪᏨ ᏗᏂᏲᏟ, ᎧᎵᏎᏥ ᎤᎸᏌᏔᏅ, ᎠᎹ ᏧᏓᏅᎵᏰᏓ ᎤᎾᏔᏅ, ᎤᎦᎾᏍᏓ ᎤᏁᏍᏔᎳ, ᎦᏲᏟ ᎤᏂᎬ ᎤᏁᏍᏔᎶᏨ ᎤᏅᏗ ᏗᎦᎶᏔᏅ, ᏃᎴ ᎠᏓ ᏗᎦᏯᎸᏅ ᎨᏂᏗ.\nᎠᏓᏍᏓᏴᏗ ᎦᏍᎩᎸ ᎠᏌᎾᎡ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ, ᏃᎴ ᎠᏒᎨ ᎧᏫ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᎦᏓᏁ ᎦᏅᎵᏰᎥ ᎠᏦᏴ, ᏃᎴ ᎠᏓ ᏧᎦᏒᏍᏗ ᎠᏓᏍᏓᏴᏗ ᏓᏳᏓᎴᏅ.\nᎠᎵᏥᏙᎲᏍᎬᎩ ᎧᏃᎮᏍᎬᎩ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᏓᏕᏲᎲᏍᎬᎩ ᎧᏃᎮᏍᎬᎩ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎤᏍᏗᎤᏅ ᎾᏍᎦᎢᎲᎾ, ᎠᎴ ᎩᎶ ᏄᏅᏍᏓᏕᎲᎾ.\nᎦᎸᎶᎢ ᎢᎦᎯᎨ ᏄᎵᏍᏔᏁ.\nᎿᏛᎦ, ᏣᎵ ᎠᎬᏱ ᏱᏓᏩᏘᏍᎬᎾ.\nᏧᏩᏍᏉᎸ ᏚᏩᏩᏙᎣᏎ ᎤᎧᏛ ᏃᎴ ᏭᏂᏴᎮ ᎦᎷᏯᏍᏗ ᏃᎴ ᎤᏁᎸᏔᏁ ᎤᎩᎡᏗ ᎤᏙᏓ.\nᎡᏣᎵᎡᎵᏤᎲ ᎠᎦᏴᎵᎨᎢ ᎾᏍᎩ ᏰᎵᏉ ᎢᎦᏠᏯᏍᏙᏗ ᎢᎬᏩᎵᏍᏙᏗ ᎢᎬᏁᎸᎯ ᏥᎩ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎤᎾᏓᏅᏘ ᎢᎦ-ᎦᏛ ᎠᏁᎯ;\nᎨᎦᏅᏔᏗᏍᏔᏁ ᎠᏂᏴᏫ ᎡᏘᏯ ᎤᏛᎾ ᏃᏈᏏ ᎤᏃᎯᎸᏍᏔᏅ, ᎠᎦᏗᏓ ᏱᎫᏩᎾᏅᏔ.\nᏂᎯᎾᎲ!\n“ᏍᏈᏯ ᏗᎦᎷᏫᏍᏔᏁᏗ ᏂᎬᏁᎰ ᎤᎵᏍᏗ. \nᎣᏍᏓ ᎠᏓᏓᏍᎩᏐᏗ ᎭᎾᎾ.\nᎢᏳᏃ ᏁᏙᎢᏳᏅᎾ ᎢᎨᏎᏍᏗ ᎠᏎ ᏅᏩᏍᏗᏉ ᎦᎪᎯᏳᏗ ᎨᏒᎢ; ᎥᏝ ᎤᏩᏒ ᏴᎬᏓᏓᏱᎦ.\nᏔᎵᏁᎢ ᎨᏒ, ᎨᏍᏗ ᏏᏆ ᏱᏗᏥᏍᏆᏂᎪᏍᎦ.\nᎤᏲᏰᏃ ᎢᏳᎾᏛᎿᏕᎩ ᏂᎪᎯᎸ ᎨᏤᎳᏗᏙᎭ, ᎠᏴᏍᎩᏂ ᎥᏝ ᏂᎪᎯᎸ ᏱᏨᏰᎳᏗᏙᎭ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏑᏓᎴᎩ ᏓᏨᏯᏛᏛᏂ; ᎦᏙ ᏚᏳᎪᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ? ᎣᏍᏛᏍᎪ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ, ᎤᏲᎨ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ? ᎬᏅ ᎠᏍᏕᎸᏗᏱ, ᎠᏓᎯᏍᏗᏱᎨ?\nᎢᏳᏃ ᎠᏴ ᎠᎩᎬᏫᏳᎯ ᎢᏣᏤᎵᎦ ᎠᎴ ᏗᏨᏰᏲᎲᏍᎩ ᏗᏣᎳᏏᏕᏂ ᏱᏗᏨᏲᏑᎴᎭ, ᎾᏍᏉᏍᎩᏂ ᎢᏨᏒ ᎢᏣᎳᏏᏕᏂ ᏱᏗᏣᏓᏙᏑᎴᎭ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᎧᏍᏆᏂᎪᏎᎴ ᎾᏍᎩ ᏄᏪᏒᎢ. ᎠᏎᏃ ᏥᏌ ᏔᎵᏁ ᎢᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᏥᏲᎵ. ᎾᏍᏓᏯ ᎾᏍᎩ ᎨᏅᎢᏍᏗ ᎨᏒ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏭᏂᏴᏍᏗᏱ.\n”Ꭷ ᎾᎦᎸᎳᏗᏴ ᎭᎩᎶᏩ, ᎯᎠ ᎢᏳᏍᏗ.”\nᎾᏍᎩ ᏤᏣᏟᏴᏏ, ᎤᎵᏂᎩᏛ ᎨᏎᏍᏗ ᎢᏦᎯᏳᏒᎢ, ᎢᏥᎦᏔᎭᏰᏃ ᎤᏠᏱ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᏂᎧᎵᎢᎲ ᎢᏣᎵᏅᏟ ᎡᎶᎯ ᏣᏁᎭ.\nᏙᏓᏆᏓ ᏓᏂᎭᏲᎲ ᎤᎾᎵᏗᎩᏛ, ᎠᎹ ᏕᎨᏴ, ᏚᏙᎥ ᏍᏔᏯ ᎢᏗᎦᏪᏍᏗ ᏫᏥᎢᏍᏔᏯ ᏗᏍᏇᎵᏰᏗ, ᎤᏒᎯ ᏱᏄᎵᏍᏔᎾ ᎠᏧᏍᏛ ᎾᎥᏂ ᎤᏬᏠ ᏍᎦᏰᎬᏍᏔ ᏕᎪᏪᎵᏍᎪ ᎧᏃᎮᏍᎩ, ᏍᏓᏯ ᎠᏍᎩᎾᏗᏍᎪ ᎤᏄᎸᎲᏍᎬ ᏧᏍᏇᎵᏰᏗ ᏚᏙᎥ ᎠᎹ ᏕᎨᏴ.\nᎾᎯᏳᏰᏃ ᏥᏨᏰᎳᏗᏙᎲᎩ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏛᎩ ᎢᏨᏁᏤᎸᎩ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ ᏄᏚᎵᏍᎬᎾ ᏱᎩ, ᏧᎸᏫᏍᏓᏁᏗᏱ ᎾᏍᏉ ᎤᎵᏍᏓᏴᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᎪᎯ ᎨᏒ ᎠᏥᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏩᎫᏗ ᎤᎶᏒᏍᏗ ᏓᏓᏁᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏧᏙ, ᎠᎴ ᏧᏥ, ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏕᎦᎶᎨᏒᎢ, ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᏔᎵ ᎤᏛᏗ; ᏐᎢᏱᏃ ᏗᎨᏒ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ.\nᏓᎴᎲᎦ ᏏᏆ! \nᏧᏒᎯᏓ ᏧᏓᏄᎸ ᎢᎦ ᎢᏳ ᎠᏳᎢᏂᏒ ᎠᎼ ᎡᏙ ᏥᏳ, ᏃᎴ ᏄᏓᎴ ᎤᏍᏓᏩᏛᏓ ᏥᏳ, ᎠᎼ ᎡᏉ ᎤᎵᏗᏣ ᏕᎦᏚᎲ ᎣᎩᎶᏒ, ᏃᎴ ᏄᏓᎴ ᏥᏳ, ᏬᎩᎷᎯᏍᏗ ᎾᎥ.\nᎠᏎᏃ ᎢᏌᏯ ᏂᎦᎾᏰᏍᎬᎾ ᎯᎠ ᏂᎦᏪᎭ, ᎬᎩᏩᏛᎲᎩ ᎾᏍᎩ Ꮎ ᏂᎬᎩᏲᎸᎾ, ᎬᎩᏩᏛᎲᎩ ᎾᏍᎩ Ꮎ ᏂᎬᎩᏲᎸᎾ ᎨᏒᎢ; ᎬᏂᎨᏒ ᏂᎬᏋᏁᎸᎩ ᎠᏁᎲ ᎾᏍᎩ Ꮎ ᎾᎾᏛᏛᎲᏍᎬᎾ ᎨᏒ ᎨᎥᎢ.\nᎾᏍᎩ ᎤᏗᏔᏍᏗ ᎨᏎᏍᏗ ᎨᎦᎨᎠᏗᏔᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏓᏑᏱ, ᎾᏍᎩ ᎠᎹ ᎾᏑᏴᎾ ᎦᏐᏅᏴᎯ ᏥᎩ, ᎾᏍᎩ ᎤᎿᎸᏒ ᎠᏩᏘᏍᎩ ᎤᎵᏍᏈᏗᎯ ᎠᏢᎯ ᏥᎩ; ᎠᎴ ᎾᏍᎩ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᎠᏥᎩᎵᏲᎢᏍᏙᏗ ᎨᏎᏍᏗ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᏂᎦᏔᎲᎢ, ᎠᎴ ᎤᏃᏕᎾ-ᎠᎩᎾ ᎠᎦᏔᎲᎢ;\nᎣᏏᏳ ᏂᎨᏒᎾ.\n“ᎠᎵᎮᎵᎩ! \nᎤᏰᎸᏗ “ᎤᏨᏉᏗ ᏱᎨᏒᎾ’ ᏃᎴ “ᎦᏙᎯ ᎾᎥᏂ, ᏍᎩᏗ ᏄᏍᏗ ᏫᎵᎻ.” \nᏳᏂᏔᏕᎩᎠ ᎤᏂᏥ ᎠᏂᎩᏍᎨ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎪᎯ ᎨᏒ ᎤᏟ ᎢᎦᎸᏉᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏩᏛᎲ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏰᎵ ᎠᎴᎲᏍᎩ ᎨᏒ ᎤᏟ ᎢᏲᏍᏛ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎤᎬᏩᎸᎢ, ᎾᏍᎩ ᎤᏟ ᎢᏲᏍᏛ ᏓᏚᎢᏍᏛ ᏧᎵᏍᏓᏱᏍᏗ.\nᎤᏲᏰᏃ ᏧᎸᏫᏍᏓᏁᎯ ᎠᏍᎦᎪ ᎢᎦᎦᏘ, ᎠᎴ ᎥᏝ ᏱᎦᎷᎪ ᎢᎦᎦᏛᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᏄᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎩᎶ ᎢᎦᎦᏛ ᎨᎠ ᏯᏗᎭ, ᏗᎾᏓᏅᏟᏃ ᏯᏍᎦᎦ, ᎤᎵᏏᎬᏉ ᎡᎭ ᎩᎳᎯᏳ.\nᏦᎩᏗᏣ ᎠᏂᎴᏴᏍᎩ ᏗᏁᎲ, ᎪᏱᏅᏍᏗ ᏔᎷᎩᏍᎩ ᎠᎹ ᎤᏗᎴᎩ ᎠᏥᏍᏛ ᎤᏬᏱᏅᏍᏔᏁᎢ ᏲᎾ ᎤᏤᏍᏙ ᎤᏒᏍᏗ ᎢᏣ ᏃᎴ ᎤᏓᏬᎡ.\nᏥᏌᏃ ᏔᎵᏁ ᎡᎯᏍᏗ ᎤᏓᏅᏖᏛ ᎠᏤᎵᏍᏛ ᎤᎷᏨᎩ. ᎤᏍᏓᎦᎸ ᎨᏒᎩ, ᎠᎴ ᏅᏯ ᎠᏍᏚᏛᎩ.\nᏔᎳᏚᏃ ᎢᏳᏟᎶᏛ ᎤᎵᏰᎢᎶᎸ ᎤᎵᏏᎲᏎ ᏂᎬᎾᏛ ᎾᎿ ᎦᏙᎯ, ᏦᎢ ᎢᏳᏟᎶᏛ ᎢᏯᏍᏘ.\nᏂᎯᏍᎩᏂ ᎢᏤᏯᏔᎮᏍᏗ; ᎬᏂᏳᏉ ᏂᎦᏛ ᏂᏨᏃᏁᎸ.\nᏣᎵ ᏃᎴ ᏍᏗᏫ ᏚᏂᏁᏤᎴ ᎢᏴ ᏗᏗᏳᎾᎴᏗ.\nᎠᎴ ᎾᏍᎩ ᏚᏙᎥ ᎪᎯᏳᏗ ᎨᏒ ᎤᏧᎵᏍᏙᏔᏅ ᎾᏍᎩ ᏚᏙᎢ ᎤᎵᏂᎪᎯᏍᏔᏅ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏤᏥᎪᏩᏘᎭ ᎠᎴ ᏤᏥᎦᏔᎭ; ᎥᎥ, ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎤᏤᎵᎦ ᎯᎠ ᎤᏃᏍᏛᏯ ᏄᏩᏁᎸ ᎢᏥᎦᏔᎲ ᏂᎦᏛ.\nᎢᏳᏰᏃ ᎤᎾᏗᏫᏎᎸᎯ ᏱᎩ ᎦᏓᎭ ᎨᏒ ᎡᎶᎯ ᎡᎯ, ᎠᏅᏗᏍᎬ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ, ᏔᎵᏁᏃ ᏱᏅᏁᏒ ᎾᎿᏂ ᎠᎴ ᏱᎨᏥᏎᎪᎩᏒ, ᎤᎵᏍᏆᎸᏗ ᏄᎾᎵᏍᏓᏁᎸ ᎤᏟ ᎤᏲᎢᏳ ᎡᏍᎦᏉ ᎢᎬᏱᏱ.\nᏑᏓᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎩᎶᏃ ᎧᏁᎬ ᎠᏆᏛᎦᏅᎩ ᏛᏓᎴᎲᏍᎬᎩ ᏅᎩ ᏂᏕᎤᎷᎬ ᎠᏕᎸᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏥᎦᎧᎭ,\nᏃᎴ ᎣᏍᏓ ᎠᏗᏔᏍᏗ! \nᎠᎹ ᎤᏁᎩᏒᏎ ᏣᏄᏏ.\nᎠᏎᏃ ᎣᏍᏓ ᏄᏍᏗᏓᏅ ᏭᏂᎶᎯᏍᏗ, ᏏᏅᏓ ᎢᎪᎯᏓ ᏚᏟᏰᎵᏙᎴ ᏭᏂᎷᎯᏍᏗ, ᎩᎳ ᏗᎨᎦᏨᏍᏔᏅ ᎣᏍᏓ ᎤᏂᏰᎸᏁ ᏚᏂᏂᏗ ᎦᎸ ᏄᏍᏗᏓᏅ ᏃᎴ ᎤᎵᎪᎲᏍᏗ ᏧᏆᎶᎦ ᏚᎵᏑᏫᏒ ᏓᏓᏍᏕᏓᎵᏴᏍᎬ, ᏓᏂᏐᏍᎬ ᏔᎾᏏ ᏃᎴ Arkansas ᏚᏅᏓᏒ.\nᎾ ᎠᏰᏟ ᎦᏙᎬ.\nᎤᏔᎾᏃ ᎤᏓᏍᏕᏎᎢ.\nᎪᏙᏃ ᎬᏙᏗ ᏗᎧᎿᏩᏛᏍᏗ? ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏫᎫᏓᏔᏅᎯ ᎨᏎᎢ, ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎠᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗ ᎨᏒ ᎬᏗᏍᎩ; [ᎠᎴ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ] ᏗᏂᎧᎿᏩᏗᏙᎯ ᎣᏍᏛ ᏄᏅᎿᏕᎨ ᎾᏍᎩ ᏧᏒᎦᎴ ᎠᏰᎵ ᏁᎴᏁᎯ.\nᎩᏁᏤᎮᏍᏗ ᏧᏁᎿᎢ ᏥᎩ ᎠᏂ ᎡᎶᎯ ᎾᏍᎩ ᎤᎾᏢᏉᏗ ᏱᏉ ᏂᎨᏒᎾ, ᎠᎴ ᎤᎾᎵᏍᎦᏍᏙᏙᏗᏱ ᏂᎨᏒᎾ ᎤᏓᎵᏓᏍᏗ ᎨᏅᎢᏍᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏂᏛ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏣᏘ ᎢᎩᏁᎯ ᏥᎩ ᎾᎦᎥ ᏄᏓᎴᏒ ᎣᏍᏛ ᎢᎦᎵᏍᏓᏁᏗ.\nᎾᏍᎩ ᎤᏕᎵᏛ ᎬᏍᎦᎳᏅᎯ ᏥᎨᏒᎩ ᎡᏘ ᏥᎨᏒ ᎠᎴ ᎤᎾᏓᏁᏟᏴᏒᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎠᏎᏃ ᎪᎯ ᏥᎩ ᎬᏂᎨᏒ ᏥᏂᎨᎬᏁᎸ ᎤᎾᏓᏅᏘ ᏧᏤᎵᎦ;\nᏒᎧᏔ ᎤᏂᏥᎸᏍᏗ ᎤᏍᏆᎸᎮ, ᏓᎦᎾᏬᏍᎨ ᎢᎦ.\nᎢᏓᏕᎲᏍᎪᎢ, ᏎᎦ ᎢᏕᎰᎢ, ᏕᏗᎵᏬᎪ.\nᏇᏍᏓᏃ ᎯᎠ ᏄᏪᏒᎩ; Ꮳ-ᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎢᏥᏍᎦᏯ ᎠᏂ ᏥᏗᎾ; ᎡᏥᎪᏩᏗᎭ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᎩ; ᎡᏄᎯᏍᏗᏍᎬ ᏂᎦᏛ ᎤᏂᏣᏘ ᎠᏂᏧᏏ ᏥᎬᎩᎷᏤᎸᎩ ᏥᎷᏏᎵᎻ, ᎠᎴ ᎾᏍᏉ ᎠᏂ, ᎯᎠ ᏥᎾᏂᏪᏍᎬᎩ; ᎥᏝ ᎣᏏᏳ ᏱᎦᎩ ᎠᏏᏉ ᏱᎬᏅ.\nᏚᏃᏴᎨ ᎠᏓᏅᏍᎬ ᎾᏍᎩᏯ ᎦᏓᏆᏟ-ᎤᏲᏨ ᏓᏛᏂᏍᏗᏍᎬ.\nᎣᏍᏓ ᎠᏗᏍᎦᎶᏗ ᏂᏚᏍᏕ ᎭᎾᎾ -  ᎣᏍᏓ ᎤᏚᏒᏗ ᏥᏍᏕᏥ.\nᎠᏂᏆᎵᏏᏃ ᎠᎴ ᎠᏂᏌᏚᏏ ᎤᏂᎷᏨᎩ, ᎬᏩᎪᎵᏰᏍᎬᏃ ᎬᏩᏔᏲᏎᎸᎩ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ.\nᏥᏌᏃ ᎾᏍᎩ ᎯᎠ ᎤᏛᎦᏅ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏏ ᏑᏓᎴᎩ ᏣᎷᎳ; ᎯᎾᏚᎦ ᏂᎦᏛ ᏣᎾᎥᎢ, ᎠᎴ ᏘᏯᏙᎯᏏ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎦᎸᎳᏗᏃ ᏫᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᏖᏒᏃ ᏍᎩᏍᏓᏩᏕᏒᎭ.\nᎥᏝ ᎪᎱᏍᏗ ᎤᏟ ᎢᎦᎢ ᎠᏆᎵᎮᎵᏍᏗ ᏍᎩᏯ ᏱᎩ ᏂᎦᎥ ᎠᏆᎵᎮᎵᏍᏗᎬ ᎦᏛᎬᎦ ᏗᏇᏥ ᏚᏳᎪᏛ ᎨᏒ ᎠᏁᏙᎲᎢ.\nᏍᎩᏴ ᎠᏓᎴᏂᏍᎩ, ᎠᏥᎨᏳ ᎠᏃᏎᎮᎢ - ᎠᏍᎦᎡ ᏂᎨᏒ ᏗᎵᎯ ᎭᎾ ᎦᏚᎲ ᎡᎯ.\nᎭᏂ ᎬᎩᏂᎬᎦ.\nᏗᏂᎦᏙᎵ ᏫᏗᎨᎦᎵᏏᎲᏍᏓᏏ, ᎾᏍᎩ ᎤᏂᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᏂᎪᎯᎸ ᏚᎾᏗᏌᏓᏕᎨᏍᏗ.\nᎠᎴ ᎤᎬᏫᏳᎯ ᏧᏎᎮᏗ ᎨᏎᏍᏗ ᏗᏥᎾᏫ ᎡᏥᎨᏳᎢ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏗᏒᏂᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎦᎶᏁᏛ ᎾᏍᎩᏯᎢ.\nᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᏱᏏ ᏧᏁᏤ ᎪᏪᎵ ᎦᏅᏁᏗᏱ ᏗᎦᎴᏅᏙᏗ, ᎠᎴ ᎠᎨᎯᏓᏍᏗᏱ?\nᎤᏍᏗ ᎦᏚᎲ ᏩᏯ ᏧᏙᎢᏓ.\n”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᏚᏁᏤᎴᏃ ᎤᎾᏂᏢᏗᏱ ᏂᎦᏛᎢᏤᎧᏁᏍᎪᎯ ᎨᏒ ᏧᎾᏓᏡᏅᏛ.\nᎬᏩᏛᏛᏅᎩᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᏥᏕᎭᏓᏬᏍᎦ, ᎢᏳᏃ ᏂᎯ ᎾᏍᎩ ᎾᎦᎶᏁᏛ ᎠᎴ ᎢᎳᏯ ᎠᎴ ᎾᏍᎩ ᎾᎠᏙᎴᎰᏍᎩ ᏂᎨᏒᎾ ᏱᎩ?\nᎠᎾᏓᏁᎸᏍᎨᏍᏗ ᎤᏅᏒ ᎤᎾᏤᎵᎦ ᎣᏍᏛ ᎦᎫᏍᏛᏗ ᎠᏏ ᎾᏍᏆᎵᏍᎬᎾ ᎾᎯᏳ ᎤᏍᏆᎸᏗ ᏥᎩ, ᎾᏍᎩ ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᏗᎬᏩᏂᏂᏴᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎿᏉ ᎥᏝ ᎢᎸᎯᏳ ᎬᏂᎨᏒ ᏱᏚᏪᎳᏗᏙᎴ ᎠᏂᏧᏏ; ᎾᎿᏍᎩᏂ ᎤᏂᎩᏒᎩ, ᎢᎾᎨ ᎾᎥ ᏭᎶᏅᎩ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ.\nᎾᏍᎩ ᎤᏙᎯᏳᏒ ᎤᏁᎳᏅᎯ ᎤᏃᎮᏍᎩ ᎤᏂᏁᏟᏴᏍᏔᏁ ᎦᏰᎪᎩ ᎨᏒᎢ, ᎠᎴ ᎤᏟ ᎢᎦᎢ ᎤᎾᏓᏙᎵᏍᏓᏁᎴ ᎠᎴ ᎪᎱᏍᏗ ᎤᎾᏛᏁᎴ ᎠᎪᏢᏅᎯᏉ ᎨᏒ ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏬᏢᏅᎯ, ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᏥᎩ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ.\n“ᎰᎵᏍᎦᏍᎪᏃ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ.\nᎤᏒᎮᏱᏣ ᏄᎵᏍᏔᏁᎢ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏃᎴ ᎤᏩᏙᎯᏴᏓ ᏄᏍᏕ.\nᎾᏉᏃ ᏉᎳ ᎠᎴ ᏆᏂᏆ ᎧᏁᏉᎨ ᎾᏂᏍᎦᎢᎲᎾ ᎨᏒᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏂᎯ ᎢᎬᏱ ᎠᏎ ᎡᏥᏃᎮᎮᏗ ᎨᏒᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ; ᎠᏎᏃ ᎢᏢᏉ ᏥᏂᏨᏁᎭ ᎠᎴ ᎢᏨᏒ ᎢᏣᏓᏅᏖᏍᎬ ᏰᎵ ᎦᏰᏥᏁᏗ ᏂᎨᏒᎾ ᏥᏥᏰᎸ ᎬᏂᏛ, ᎬᏂᏳᏉ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᏬᏍᏓᎦᏔᎲᏍᏓ.\nᎠᏰᎵᏉ ᎢᏴ ᏗᎪᏩᏛᏗ ᏗᎦᏓᏁ ᏕᏧᎬ, ᎠᏍᎧᏅᎢ ᎢᏣ ᎦᎾᎱᎩᏍᎬ ᎨᏴ.\n“ᏥᏳ ᎦᏣᏄᎳ ᎦᏃᎯᎵᏙ ᏓᏥᏰᎴᏏ ᏃᎴ ᏄᏓᎴ ᏓᏥᏴᏂᎵ”\nᎠᏴᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏳᏩᏂᏌᏛ ᎠᎩᏲᎱᏒᎯᏉ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎠᏆᎴᏂᏓᏍᏗᏱ.\nᎢᏳᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏱᏂᎬᏁᎭ ᏱᎦᏄᏬᎭ ᎧᏁᏍᎦ ᏠᎨᏏ ᎡᎯ, ᎪᎯ ᎢᎦ ᏤᎭ, ᎤᎩᏨᏅᏃ ᏗᎦᏚᏗᏱ ᏭᎾᏗᏅᏗ ᏥᎩ, ᏝᏍᎪ ᎤᏟᎯᏳ ᏱᏂᏙᎨᏥᏄᏬᏣ, ᎤᏍᏗ ᎢᏦᎯᏳᎯ?\nᏤᏍᏗ ᏱᏣᎴᏃᎴᏍᏗ! \nᏍᏈᏍᏔ ᏗᏒᏅ ᎪᏪᎵ ᏃᎴ ᏍᏈᏍᏔ ᏗᎭᎾᏬ ᏗᏴᏈᏛᏅ ᏚᎸᏔᏁ ᎧᏁᏌᎢ.\nᎾᏍᎩᏰᏃ ᏄᏍᏛ ᏱᎩ, ᎿᏉ ᎭᎵᎮᎵᏨ ᏣᏓᏅᏙ ᎲᏔᏅᎭ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ Ꮎ ᎾᎦᏔᎾᎥᎾ ᎤᏪᏗᏱ ᏳᏬᎳ, ᏰᎵ ᎡᎺᏅ ᏯᏛ ᎭᎵᎮᎵᎩ? ᏂᎪᎵᎬᎾᏰᏃ ᏱᎩ ᏂᏪᏍᎬᎢ.\nᎩᎶᎨ ᎤᎾᎵᎪ?\nᎾᏍᎩᏃ ᎯᎠ ᏄᎾᏍᏛᎩ ᎥᎦᏥᎪᎥᎩ ᏐᏈᎵ ᎠᏆᏁᎳᏫᏎᎲᎢ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏧᎾᎩᎵ, ᏮᎾᏓᏁᏣᏍᏚᎸᎩ ᎠᏥᎸ ᎠᎴ ᏅᏯ ᏤᏏᏂ ᏧᏐᎢᏛ, ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᏗᎪᏢᏔᏅᎯ. ᏗᏂᏍᎪᎵᏃ ᏐᏈᎵ ᎠᏓᏥ ᎤᏂᏃᏕᏅ ᏥᏓᏂᏍᎫᏓᏛ ᎾᏍᎩᏯ ᎨᏒᎩ; ᏗᏂᎰᎵᏃ ᏓᎦᏄᎪᎬᎩ ᎠᏥᎸ ᎠᎴ ᏧᎦᏒᏍᏗ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ.\nᎾᏍᎩ ᎾᏍᏉ ᏥᏅᏗᎦᎵᏍᏙᏗ ᎡᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎩ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ, ᎡᎦᏑᏰᏛ ᏥᎩ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏓᏅᏖᎸᎢ, ᎾᏍᎩ Ꮎ ᏥᏑᎸᏫᏍᏓᏁᎭ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎾᏍᎩᏯ ᎤᏩᏒ ᎤᏓᏅᏛ ᏚᏭᎪᏔᏂᎸᎢ;\nᎤᏁᎳᏅᎯᏍᎩᏂᏃᏅ ᏗᎦᎵᏍᏓᏗᏍᎩ ᎤᏪᎵᎯᏍᏗ ᎤᎾᏓᏅᏔᏩᏕᎩ, ᎣᎩᎦᎵᏍᏓᏗᏍᏔᏅᎩ ᏓᏓᏏ ᎤᎷᏨᎢ;\nᎾᎯᏳᏍᎩᏂ ᎨᏎᏍᏗ, ᎤᎶᏐᏁᏍᏗ ᎾᏍᎩ ᎠᎩᎵᏯ, ᏅᏙ ᎢᎦ ᎡᎯ ᏛᎵᏏᎲᏏ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎥᏝ ᎢᎦ ᏳᏖᏍᏕᏗ;\nᎫᎾᏓᎴᎩ ᎤᏩᏌ ᎤᏕᎶᎰᏒ ᎠᏍᏆᏗᏍᏗ ᏱᎦᏌᏙᎭᏴ, ᎠᏎᏃ ᏚᎾᏓᏲᏎ ᎤᎾᏓᏓᏍᎬ.\nᎥᏝ ᎩᎶ ᏰᎵ ᏴᎬᎩᎷᏥᏏ, ᎬᏂ ᎠᎦᏴᎵᎨᎢ ᏅᏛᎩᏅᏏᏛ ᎤᏎᏒᏛ ᏱᎩ; ᎠᎴ ᎠᏴ ᎾᏍᎩ ᏙᏓᏥᏯᎴᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎥᏥᎪᎥᎩ ᎦᎸᎳᏗ ᏓᏳᏠᎠᏒᎩ, ᎦᏁᎲᎩ ᎠᏍᏚᎢᏍᏗ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒᎢ, ᎠᎴ ᎤᏣᏘ ᎡᏆ ᏧᏓᏕᏒᏛ ᎤᏒᎦᎸᎩ.\nᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᎠᏂᏴᏫᏯ ᏩᏂᎷᏨ, ᎠᎦᏘᏰᏍᏗ ᎤᏪᏅᎢᏍᏗ ᎠᏂᏐ ᎤᏁᎾᎢ ᎠᏂᏴᏫᏯ ᏄᎾᏍᏛ.\nᎯᎠ ᎾᏍᎩ ᎾᏆᏛᏁᎸ ᏱᎰᏩ ᎾᎯᏳ ᎢᎦ ᏕᎠᏆᎧᎿᏅ, ᎠᎩᎲᎡᏗᏱ ᎤᏕᎰᎯᏍᏗ ᎥᏆᏓᏅᏖᏗᏱ ᏴᏫ ᎠᏁᎲᎢ.\n”ᎨᏍᏗ ᏍᎩᎾᎾ ᎢᎦᏛᏁ ᏱᎩ, ᎬᎩᏅᏗᏍᏙᏗ ᏱᎩ,” ᎤᏛᏁ ᏥᏍᏕᏥ, ”ᎣᎯᏍᏙᏗ ᎠᎩᏰᎸᎰ ᎠᏆᎵᏍᏓᏴᏗ, ᎤᏕᎳᏓ ᏗᎦᎦᏙᏍᏙᏗ ᏃᎴ ᎠᏆᏗᏍᎦᎶᏗ.\nᎠᏎᏃ ᎥᏝ ᎢᎬᏱ ᏱᎨᏎ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ ᏥᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏇᏓᎵ ᏥᎩ; ᎣᏂᏃ ᎢᏴᏛ ᎾᏍᎩ Ꮎ ᎠᏓᏅᏙ ᏥᎩ.\nᏚᎴᏅᏃ ᎤᏄᎪᏤ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏌᏩᏂᏃ ᎦᏁᎸ ᏭᏴᎴᎢ ᏌᏩᏂᏃ ᎤᏓᎵᎢ ᎤᏥ ᎤᏣᏘ ᎤᏗᎴᎲᏍᎨᎢ; ᎬᏩᏔᏲᏎᎴᏃ ᎤᏍᏕᎸᏗᏱ.\nᏥᏌᏃ ᎤᎷᏤ ᏚᏒᏂᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏗᏣᎴᎲᎦ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎩᎶ ᎠᏍᎦᏯ ᎤᎦᏔ ᏳᏫᏒ ᎦᏙᎯ;\n”ᎡᏝᏪᎯ, ᏫᎵᎻ!” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏛᎦᏍᏕ ᎤᏲ ᎠᏂᏃᎮᏍᎬ.\nᎠᎬᏱ ᎪᎨ ᎤᎵᎮᎵᏍᏗ ᏄᎾᎵᏍᏔᏁᎰ ᏥᏍᏆ.\nᎤᏟᏍᏓ ᏚᎴᏁ ᏫᎵᎻ, ᎧᏁᏍᎬ ᏗᎦᏟᎮ.\nᎤᏅᏏᏙᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏅᏏᏓᏍᏗ, ᎯᏄᎪᎢ ᏕᎦᏅᎿᏩᏗᏒ ᎠᎴ ᏓᏐᏴᎢ ᏫᎶᎯ, ᎠᎴ ᎠᏎ ᎤᏂᏴᏍᏗᏱ ᏂᎩᏴᏁᎸᎭ ᎾᏍᎩ ᎤᎧᎵᎢᏍᏗᏱ ᏥᏁᎸᎢ.\nᎠᏂᎪᏩᏗᏍᎬᏰᏃ ᎢᏳᏍᏗ ᎾᏍᎩ ᎯᎠ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏛᏂᎸᏉᏔᏂ ᏂᎦᎵᏍᏙᏍᎨᏍᏗ ᎬᏂᎨᏒ ᏂᏨᏁᎲ ᎢᏦᎯᏳᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎠᎴ ᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏂᏥᎨᏳᎿᎥᎾ ᎨᏒ ᏕᏥᏁᎲ ᎾᏍᎩ, ᎠᎴ ᎾᏂᎥᏉ;\nᎪᎩ ᎨᏒ, ᎠᎦᏗᏛ ᏚᎭᏄᏮ ᏗᏴᎦᎴᏴᏓ, ᎾᏍᎩᏯ ᎤᏍᏗ ᎤᎵᏍᎨᏛ ᏱᎦᎳᎩᏒ ᎠᏍᏆᏂᎪᏛ, ᏧᏬᏚ ᎧᏁᏌ ᏃᎴ ᎭᎦᎶᏗ.\nᎠᏎᎩ ᏔᎵᏁ ᎯᏣᏚᎵᏍᎨᏍᏗ ᎠᏕᎳ ᎡᏣᏈᏴᎡᏗ ᏕᏣᏄᏫᏍᏔᏁᎸ? ᎤᏛᏅ.\nᏑᏓᎵ ᏧᏙᏓᏆᏓ ᏑᎾᏙᏓᏆᏍᏗ, ᏯᎦᎵᏍᎬᎾᏉ ᎠᏗᏛᏗ, ᏚᏑᎬ ᏗᎭᏯᎸᏍᏗ ᏴᏫ, ᏂᎦᎥ ᎤᏂᎾᎥ ᏗᎩᎡᏗ, ᏗᏗᏦᎭᏴ ᎢᏣ ᏗᏰᎸᏍᏗ.\nᏌᎳᏓ ᏓᏏᎳᏛᎥᏍᎨ.\nᎤᎾᏂᏢᏁᏃ ᎣᏍᏛ ᏚᎾᏓᏅᎿᏁᎢ ᎠᏍᎪᎯᏧᏈ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᎾᏓᏡᏅᏛ.\nᎾᏍᎩᏯ ᏅᏧᏓᎴᏅᎲᎾ ᎤᏓᏅᏖᎸᎢ, ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏣᎬᏗᏍᎨ ᏧᏓᏅᏖᎴᎢ;\nᏓᎩᏯᏪᏥᏙᎸ ᎠᎴ ᎡᎯᏍᏗ ᎾᎿᎵᏍᏓᏁᎸᎢ; ᏯᏃᎩᏳ ᏂᏥᎸᏍᎬᎾ ᎨᏒᎢ; ᎠᎪᏄ ᎠᎩᏲᏏᏍᎬᎢ ᎠᎴ ᎠᎩᏔᏕᎩᏍᎬᎢ; ᏯᏃᎩᏳ ᎠᎹᏟ ᎬᏍᎬᎢ; ᎤᏴᏢ ᎠᎴ ᎠᎩᏰᎸᎭ ᎨᏒᎢ.\n”ᏏᏆ ᎤᏅᎪᏨ! \nᏖᎸᎳᏗ-ᎦᏨᏩᏍᏙᏗᏱ ᎦᏚᎲ ᏙᏱᏗᏢ ᎤᎾᎳᏍᏓᎡᎸᎩ, ᎩᎬᏃ ᏓᏳᏨᏨᎩ ᏖᎸᎳᏗ-ᎦᏨᏩᏍᏙᏗᏱ, ᎠᎴ ᏐᏈᎵ ᏚᎾᏔᎾᎸ ᎢᏴᏛ ᏂᏚᏂᎶᏨᎩ, ᎾᏍᎩ ᏔᎵᏧᏈ ᎢᏳᏟᎶᏛ ᎢᎬᎾᏕᏅ.\nᎠᎴ ᏚᏂᏂᏴᎮ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏚᏂᏴᏔᏁᎢ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏂᏯᏙᎯᎯ ᎨᏥᎸᏉᏗ ᎨᏎᏍᏗ, ᎥᏞᏍᏗ ᏧᏓᎴᏅᏛ ᎢᏯᏂᏪᏍᎩ ᏱᎨᏎᏍᏗ, ᎠᎴ ᎥᏞᏍᏗ ᏱᎦᎨᎠᏗᏔᏍᏗ ᎤᏂᎦᎾᏏᏍᎩ ᏱᎨᏎᏍᏗ, ᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎤᏂᎬᎥᏍᎩ ᏱᎨᏎᏍᏗ;\nᎡᎳᏗᏣ!\nᏥᏛᏦᏱᎵᏐ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁ ᎤᎧᏛ.\nᎧᏃᎮᏛᏰᏃ ᏗᏠᎯᏍᏔᏅᎯ ᏥᎨᏐᎢ, ᎠᏎ ᎠᎯᏍᏗ ᎨᏐ ᎠᏍᏓᏱᏗᏍᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ.\nᎠᏎᏃ ᎿᏉ ᏗᎹᏗ ᎣᎩᎷᏤᎸᎯ ᏥᎩ, ᏗᏤᎲ ᏅᏓᏳᎶᏒᎯ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎣᎩᏃᎮᎮᎸᎯ ᏥᎩ, ᏗᏤᎲ ᏅᏓᏳᎶᏒᎩ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎣᎩᏃᎮᎮᎸᎯ ᏥᎩ, ᎢᏦᎯᏳᏒ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏤᎲ ᎤᎬᏩᎵ, ᎠᎴ ᏂᎪᎯᎸ ᎣᏏᏳ ᏍᎩᏯᏅᏛᎢ, ᎤᏣᏘ ᎢᏣᏚᎵᏍᎬ ᏍᎩᎪᏩᏛᏗᏱ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎣᎦᏚᎵᏍᎬ ᎢᏨᎪᏩᏛᏗᏱ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏙᎡᏥᎩᏏᏉ ᏌᏉ ᎢᏯᎦᏴᎵ ᎠᏕᎸ, ᎠᏍᎪᎯᏃ ᎢᏯᎦᏴᎵ ᏧᎯ ᏤᏥᎥᏏ.\nᏗᎨᏥᎢᏍᏗᏗ ᎤᏂᏍᎦᏅᏨ.\nᎠᎴ ᏚᏂᏍᏗᏰᎬᎩ ᎠᏂᎨᏴ ᏥᏚᏂᏍᏗᏰᎦ ᎾᏍᎩᏯᎢ, ᎠᎴ ᏓᏂᏄᏙᎬ ᏢᏓᏥ ᎤᏂᏃᏕᎾ ᏥᏓᏂᏄᏙᎦ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎤᏟᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥᎢ. ᎡᎶᎯ ᎤᎾᏄᎪᏨᎯ ᎡᎶᎯᏉ ᎡᎯ ᎨᏐᎢ, ᎠᎴ ᎦᏬᏂᏍᎬ ᎡᎶᎯᏉ ᎡᎯ ᎨᏐᎢ, ᎦᎸᎳᏗᏍᎩᏂ ᏅᏓᏳᎶᏒᎯ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥᎢ.\nᎩᎶᏰᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᎾᏍᎩ ᎤᏪᏥ ᎠᏛᏄᏣ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎢ, ᎤᏛᎦᏅ ᎠᏥᏃᎮᏍᎬᎢ, ᎤᎷᏤ ᎠᎴ ᏚᎳᏍᎬ ᎤᏓᏅᏁᎢ:\nᏂᎦᎥᏉᏍᎪ ᎢᏥᏁᎫ? ᎠᏓᏅᏙ ᎬᏗ ᏥᏣᎴᏅᎲ, ᎤᏇᏓᎵᏍᎪ ᎬᏗ ᎢᏥᏍᏆᏗᎭ?\nᎩᏲᎵᎸᎭ ᏈᏍᎦ ᎠᎴ ᎡᏈᎳ, ᎠᎴ ᎣᏁᏏᏉᎳ ᏚᏓᏘᏅᎥᎢ.\nᎤᏟ ᎣᏏᏳ ᎭᏫᏯ ᎠᎩᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏗᏔᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏛᏁᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏗᏍᏓᏓᏅᏟ ᏧᏬᏕᏍᏗᏍᎩ, ᎠᎴ ᎤᏍᏢᏂᏍᏗᏍᎩ, ᎠᎴ ᎠᏩᎾᎦᎳ ᎢᏳᏩᏁᎯ.\nᎢᎦ ᎠᎾᎢᏒ, ᎠᏧᏣ ᏩᏏᏓᏂ ᏚᏲᎸ ᏘᎵ ᏕᏧᎬ ᎤᎾᎩᎸ ᏌᎶᎵ ᏚᏇᏍᏘ ᎬᏘ, ᎦᎸᎳᏗᎨ ᎨᏒ ᏚᏇᏍᏘ ᎠᏍᎦᏉ ᎠᏧᏣ.\nᎧᏃᎮᏛᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏁᏉᎨᎢ, ᎾᏂᎥᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏣᏘ ᎠᏂᏁᏉᎨ ᏥᎷᏏᎵᎻ, ᎤᏂᏣᏘᏃ ᎠᏥᎸᎠᏁᎶᎯ ᎤᏃᎯᏳᏁ ᎪᎯᏳᏗ ᎨᏒᎢ.\nᎢᏳᏃ ᎾᎿ ᎠᏂᏁᎳ ᎤᏩᏙᎯᏯᏛ ᏗᎬᏩᎾᏓᏂᎸᎢᏍᏗ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏩᏙᎯᏯᏛ ᎢᏣᏤᎵ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏗᎬᏩᎾᏓᏂᎸᎢᏍᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏒᏉ ᎢᏥᎷᏤᏗ ᎢᎨᏎᏍᏗ.\nᎣᎯᏍᏙᏗ ᎦᏓᏅᏖᏍᎪ ᎠᏋᏌ ᏱᎩ.”\nᎠᏂᏯᏫᏍᎩᏃ ᏧᏂᎯᏍᏗᏱ ᎤᎾᏓᏅᏖᎸᎩ ᎠᏂᏴᎩ; ᎩᎶᏰᏃ ᏯᏴᎢᏄᎦ ᏯᏚᎩ ᎠᎴ ᏯᎵᏗ ᎠᏁᎵᏍᎬᎩ.\nᎤᏛᏛᏅ ᎠᏌᎻᏓ.\nᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏓᏅᏘ ᏱᏂᏥᏪᏎᎰ ᏥᏍᏕᏥ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏅᏓᏓᏛᏁᎵ ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᏱᎦᎵᏍᎪᎸᏓᏁᎸ.\nᎠᎴ ᎤᏚᎵᏍᎨ ᏧᏪᏰᏍᏗᏱ ᎧᎵᏎᏥ ᎤᎾᏓᏛᏅᎯ ᏏᏆ ᎤᎾᎵᏍᏓᏴᏗ, ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏱᏚᏅᏁᎮᎢ.\nᎦᏙᏃ ᎠᏴ ᎢᏍᏆᏛᏛᎲᏍᎦ? ᎾᏍᎩ Ꮎ ᏔᏛᏛᎲᎦ ᎤᎾᏛᎦᏅᎯ ᎾᏍᎩ ᏂᎦᏥᏪᏎᎸᎢ. ᎬᏂᏳᏉ ᎠᏂᎦᏔᎭ ᎾᎩᏪᏒᎢ.\nᎩᎶᏃ ᎬᏅ ᎢᎠᏩᏘᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎢᎤᏲᎱᏎᎮᏍᏗ ᎬᏅ ᎠᏴ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏩᏛᏗ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᎢᎾᏓ ᏧᎪᎳ, ᏰᎵ ᎢᏯᏅᏓ ᎤᎵᏬᏨ.\nᎠᎴ ᎾᎿ ᎬᏩᏚᏫᏛ ᎤᏁᏙᎴᎢ, ᎠᎴ ᏧᏂᏢᎩ ᏚᏂᏂᏙᎴ ᏗᏤᏍᏙᎩᎯ ᏚᏂᏢᏕ, ᏫᏓᏂᏃᎯᎮ ᎠᎾᏛᎬᎦ ᎾᎿ ᎡᏙᎲᎢ.\nᎤᏅᏍᎦᎸᏁ ᏫᎵᎻ ᎦᏂᏓᏛ ᏃᎴ ᎾᏍᏓᏴ ᏭᏍᎦᎳᏤ.\nᎠᏏᏃ ᏙᎤᏂᏍᎦᏨ, ᏚᏂᎧᏁᎢ, ᎤᎾᏠᏤ ᎪᎱᏍᏗ ᎬᏩᏂᏍᏛᏗᏍᏗ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᏣᏘ ᏴᏫ, ᏂᎦᏛᏰᏃ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ.\nᎤᏓᎴᏨ ᏄᎵᏍᏔᏁ ᎤᎧᏛ ᎡᎶᏗ.\nᎢᏝᏃ ᎼᏏ ᏥᏄᏛᏁᎴ [ᏱᏃᏣᏛᏁᎭ] ᏧᎵᎬᏚᎳᏁ ᎾᏍᎩ ᎢᏗᎵ ᏧᏪᏥ ᏫᏗᎬᏩᎾᎧᏃᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏩᏍᏛ ᎾᏍᎩ Ꮎ ᎠᎲᏛ ᏥᎩ.\nᎠᏃᎯᏍᏗᏍᎩᏂ ᎠᏃᎯᏍᏗᏍᎬᎢ ᎠᏂᏫᏍᎪ ᏚᏳᎪᏛ ᎤᎾᏄᎪᏫᏍᏗ ᎨᏒᎢ.\n“ᎦᏨ ᏧᏍᏆᏴᏍᏗ?” ᎤᏛᏁ ᎬᏣᏗ.\nᎠᏎᏃ ᎠᏂᏧᏏ, ᎤᏂᏣᏘ ᏚᏂᎪᎲ, ᎤᏂᎧᎵᏤ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎠᎾᏡᏗᏍᎨ ᏉᎳ ᏂᎦᏪᏍᎬ ᎦᏬᏂᏍᎬᎢ, ᎤᏂᎪᏁᎶᏍᎨᎢ ᎠᎴ ᎠᏂᏐᏢᎢᏍᏗᏍᎨᎢ.\nᎪᎵᎦᏓᏃ ᏚᏙᎥ ᏫᎬᏩᏘᏅᏔᏁᎢ, ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎨᏒ ᎤᏍᏆᎷᎪ ᎦᏛᎦ.\nᎤᏔᎾ ᎩᎦᎨ ᏒᎦᏔ ᏂᏨᏅᏓ, ᎤᏓᏙᏎᎴᎢ.\nᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎴ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᏖᎸᎳᏗ ᏚᏫᏒᎢ, ᎬᏂᏳᏉ, ᎿᏉ ᏦᎢ ᎾᏕᏘᏴ ᏥᎷᎬᎩ ᎠᎩᏲᎲᎩ ᎤᏓ-ᏔᏅᎯ ᎯᎠ ᎾᏍᎩ ᎡᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ, ᎠᎴ ᎥᏝ ᏱᏥᏩᏘᎭ; ᎯᎴᏴᏍᏓ; ᎦᏙᏃ ᎢᎤᎨᏗ ᎦᏙᎯ?\nᎪᎨᏱ ᏏᏆ ᎠᏃᏎᎮ ᏫᎵᎻ ᏗᏂᎶᎩᏍᎩ.  ᏂᎦᎵᏍᏙᏗ ᎪᎨᏱ ᎤᏕᏅ.\nᎦᏙᎯᏃ ᎤᏍᏕᎸᎲᎩ ᎠᎨᏴ, ᎠᎴ ᎦᏙᎯ ᎤᏍᏚᎢᏒᎩ ᎠᎰᎵ ᎠᎴ ᎤᎩᏐᏅᎩ ᎦᏃᎱᎩᏍᎬ ᎾᏍᎩ ᎢᎾᏛ ᎠᎰᎵ ᏅᏓᏳᏄᎪᏫᏒᎯ.\nᎣᏍᏓ ᏍᎦᏥ ᏫᏍᎩ ᎠᏥᏍᏛ ᏥᏰᎲ, ᎤᎵᎮᎵᏍᏛ, ᎢᎾᏗᏛ ᏥᏲᏎᎸ.\n“ᏣᏏ ᏯᏕᏠᏆᏍᎦ.”\nᎤᎵᎮᎵᏍᏗ ᎢᎦ ᏄᎵᏍᏔᏁᎴ ᏫᎵᎻ.\nᎠᎴ ᎾᏍᏉ ᎤᎾᎦᏌᏯᏍᏗᏕᎩ ᎤᏚᎩ ᎨᏒᏐ ᏚᏳᎪᏛ ᎢᏳᎾᏛᏁᏗᏱ.\nᎠᏥᎾᏝᎢᏃ ᎥᏝ ᎠᏓᏁᎸ ᏂᎪᎯᎸ ᎡᎯ ᏱᎨᏐᎢ; ᎠᎦᏅᎩᏍᎩᏂ ᏂᎪᎯᎸ ᎡᎰᎢ.\nᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ ᎿᏉ ᏩᏠᎠᎯ ᏓᏓᎿᏩᏍᏛᎢ, ᎾᏍᎩ ᎣᎩᎪᏩᏛᏗᏱ ᎠᎴ ᎣᎪᎯᏳᏗᏱ. ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᏗᎨᎦᏛᏅᎯ ᎦᎬᏩᏐᏢᏕᎢ.\nᎠᏏᏴᏫᏃ, ᎤᏙᎴᎰᏒ ᎠᏥᏅᏩᏅᎢ, ᏗᎤᏨᏎᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏁᏤ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ,\nᎤᎾᏠᏨᏃ ᎢᏳᎾᏛᏁᏗᏱ ᎤᏂᏴᏔᏂᎯᏍᏗᏱ ᎤᏂᏣᏘ ᎨᏒ ᎢᏳᏍᏗ, ᎦᏌᎾᎵ ᎤᎾᎩᎳᏫᏎᎢ, ᎾᎿᏃ ᏧᏂᎦᏛᎴᎯᏍᏔᏁ ᎤᎾᏠᎥᏔᏂᎴ ᎤᏤᏍᏙ ᎬᏩᏠᏯᏍᏗ ᎤᎾᏓᏡᎬ ᎠᏰᎵ, ᏥᏌ ᎢᎬᏱᏢ ᎤᏂᏅᏁᎴᎢ.\nᎬᏲᎵᎭ!\nᏕᏣᏂᏴᏒ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏍᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎩᎶ ᎢᏴᏛ ᎢᏳᏅᏁᏔᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎬᏩᏂᏲᏥᏙᎸ;\nᎾ-ᏍᎩᏂ ᎠᏓᏅᏙ ᎤᏪᎯ ᏂᎦᎥ ᎠᎪᏩᏘᏍᎪᎢ, ᎠᏎᏃ ᎤᏩᏒ ᏄᏍᏛ ᎥᏝ ᎩᎶ ᏳᎪᏩᏘᏍᎪᎢ.\nᏩᎭᏯᏃ, “ᎭᏩ,” ᎤᏛᏁ, ᏎᎦᏨ ᎦᏬᏂᏍᎦ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᎨᏙᏓᎦᏥᏟᎶᏍᏔᏂ ᏴᏫ ᎪᎯ ᏣᏁᎭ? ᎠᎴ ᎦᏙ ᏓᎾᏤᎸ?\nᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ ᏕᏫ ᏄᏛᏁᎸ ᎠᎪᏄ ᏧᏲᏏᏍᎨ, ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ,\nᏕᏣᏏᎳᏛ ᏣᎩᎳ?”\nᎤᏟᏂᎪᎲᏍᏗᏍᎨᎢ ᎾᏂᏪᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᏥᎸᎨᎳᏍᏗ ᎨᏒ ᎠᏂᎵᏫ ᏥᎨᎦᏒᎦᎶᏕ, ᏅᏍᎦᏅᎾ ᎢᎬᏩᏓᏛᏁᏗ ᏱᎨᏎᎢ, (ᎠᏥᎸ-ᎨᎳᏍᏗᏰᏃ ᎨᏒ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏚᎾᏚᏓᏖ ᏴᏫ ᎦᎾᏓᏂᎸᏨ) ᎦᏙᏃ ᎠᏏ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎨ ᏅᏩᏓᎴ ᎠᏥᎸᎨᎶᎯ ᎤᎾᏄᎪᎢᏍᏗᏱ ᎹᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ, ᎡᎳᏂᏃ ᎾᏍᎩᏯ ᎦᏰᎪᏎᏗ ᏂᎨᏒᎾ ᎨᏒᎢ?\nᎿᏉᏃ ᏥᏌ ᎤᎷᏨ ᎤᏙᎴᎱᏒᎩ ᎦᏳᎳ ᏅᎩ ᏧᏙᏓᏉᏛ ᎬᏩᏂᏅᏅᎯ ᎨᏒ ᎠᏤᎵᏍᏛᎢ.\nᏤᏍᏗ ᏣᎴᏫᏍᏔᏅ ᏃᏉ.\nᏴᏫ ᎤᏂᏁᏨᎯ ᎠᎴ ᏧᎾᏕᏲᏅᎯ? ᎾᏍᎩ ᏞᏍᏗ ᏣᏒᏂᎸᎩ; ᏞᏍᏗ ᎤᏍᏗᎤᏅ ᏣᎬᎩ; ᏞᏍᏗ ᏣᏱᏙᎸᎩ;\nᎦᏰᎪᎩᏃ ᎠᏂᏃᎮᏍᎩ ᏚᏂᎧᏁᎢ, ᎾᏍᎩ ᎯᎠ ᎢᏯᏂᏪᏍᎩ; ᎯᎠ ᎠᏍᎦᏯ Ꮭ ᏯᏑᎵᎪᎦ ᎧᏁᎬ ᎠᏐᏢᎢᏍᏗᏍᎬ ᎯᎠ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ.\nᎱᎷᏨ ᎠᏂᏔᎵ ᎠᏂᏧᏣ ᏚᏅᏫᏍᏔᏅ ᏫᏚᏂᏯᏂᏗ ᏐᏈᎵ.\nᎦᏙ ᎢᏤᎵᎭ; ᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᎠᏍᎪᎯᏧᏈ ᎠᏫ ᏱᏚᎾᏝᎠ, ᏌᏉᏃ ᏳᎴᏲᎡᎸ, ᏝᏍᎪ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏯᏂᏛ ᏱᏗᎬᏕᎪᎢ, ᎠᎴ ᏱᏗᎧᎾᎷᏏᏙᎰ ᎦᏚᏏ ᏳᏲᎰ ᎤᎴᏲᎡᎸᎯ?\nᎿᏉᏃ ᎾᏍᎩ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ ᎦᎷᏨᎭ, ᎦᏙ ᏙᏓᎬᏁᎵ ᎾᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ?\nᎤᎬᏫᏳᏌᏕᎩ ᎤᏚᎩᏒ ᎠᎹ ᎩᎦᎨᎠᏗᏔᏍᏗ ᎢᏳᎵᏍᏔᏅᎯ, ᎠᎴ ᎾᎦᏔᎲᎾ ᎨᏎ ᏧᎶᏒᎢ, ᎨᏥᏅᏏᏓᏍᏗᏍᎩᏂ ᎠᎹ ᎤᏂᏢᏛ ᎠᏂᎦᏔᎲᎩ, ᎤᎬᏫᏳᏌᏕᎩ ᏭᏯᏅᎲᎩ ᎠᏍᎦᏯ ᏣᎦᏨᏍᏗᏍᎩ,\nᎾᏍᎩ ᎢᏳᏍᏗ ᎦᏥᏂᏉᏘᎸᎩ ᎾᏍᎩ Ꮎ ᏴᏫ, ᎠᎴ ᎯᎠ ᎾᎩᏪᏒᎩ, ᏂᎪᎯᎸ ᏚᎴᎾᎯᎭ ᏧᏂᎾᏫ; ᎠᎴ ᎥᏝ ᎤᏂᎦᏙᎥᏒᎯ ᏱᎩ ᏓᎩᏅᏅᎢ.\nᎾᏍᏉᏃ ᎥᎪᎩᏍᏓᏩᏛᏒᎩ ᎢᎸᏍᎩ ᎢᏯᏂᏛ ᎠᏃᎯᏳᎲᏍᎩ ᏏᏌᎵᏱ ᎠᏁᎯ, ᎠᎴ ᎤᎾᏘᏅᏒᎩ ᎩᎶ ᎢᏳᏍᏗ ᏁᏌᏂ ᏧᏙᎢᏛ ᏌᏈ ᎡᎯ, ᎢᎸᎯᏳ ᎬᏬᎯᏳᏅᎯ, ᎾᏍᎩ ᎦᏁᎸ ᎣᎦᏅᏗᏱ ᎤᏂᏰᎸᏒᎩ.\nᏥᏌ ᏚᏁᏤᎸᎩ; ᏝᏍᎪ ᎯᎠ ᏘᏂ ᎬᏅ ᏱᎪᏪᎳ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ; ᏂᎯ ᎢᏨᏁᎳᏅᎯ, ᎠᏆᏛᏅᎩ?\nᎾᎿᏃ ᎢᎾᎨ ᎡᏙᎮ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ, ᏎᏓᏂ ᎤᎪᎵᏰᏍᎨᎢ; ᎠᎴ ᎢᎾᎨ ᎡᎿᎢ ᏕᎨᎳᏗᏙᎮᎢ; ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᏍᏕᎸᎯᏙᎮᎢ.\nᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎨᏒ, ᎢᏴᏛᎭᏉ ᎠᎴ ᏧᏓᎴᏅᏛ ᎬᏔ-ᏅᎯ ᏥᏕᎧᏁᏤᎮ ᏗᎩᎦᏴᎵᎨ ᎠᎾᏙᎴᎰᏍᎩ ᏕᎬᏗᏍᎬᎢ,\nᏥᏃᎯᏎᎸ ᎠᏌᎻᏓ ᏂᏪᏒ ᏣᎵ, ᏎᎦᏗ ᏱᎩᎦᏘᏛ ᎢᎦᏛ ᏯᏂᎷᎩ ᎤᏛᏅ.\nᎠᏴ ᎠᏆᏓᏅᏘ ᎠᏫ-ᏗᏥᎦᏘᏯ; ᎠᎴ ᏕᏥᎦᏔᎭ ᏗᏆᏤᎵᎦ, ᎠᎴ ᏗᏆᏤᎵᎦ ᎬᎩᎦᏔᎭ,\nᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎯᎠ ᏄᏍᏕ ᎬᏂᎨᏒ ᏂᎬᏁᎮᎢ, ᎾᏍᎩ Ꮎ ᎤᏟ ᎢᎦᎸᏉᏗ ᏗᎨᏒ ᏫᎦᏅᏅ ᎠᏏ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᏏᏉ ᏥᏂᎬᏩᏍᏕ ᎢᎬᏱᏱ ᎦᎵᏦᏛᎢ;\nᎠᎺ ᎣᏏᏳ; ᎠᏎᏃ ᎠᎹ ᏳᏥᏍᎪᎸ ᎦᏙ ᏱᏨᎦ ᏄᏥᏍᎪᎸᎾ ᏱᏂᏨᎦ? ᎠᎺ ᎢᏥᎶᏨᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏙᎯᏱ ᏂᏨᏁᏍᏗ ᎢᏤᎲᎢ.\nᏂᎯᏍᎩᏂ ᏗᏥᎦᏙᎵ ᏗᎦᎸᏉᏔᏅᎯ, ᎾᏍᎩᏃᏓᎪᏩᏘᎭ, ᎠᎴ ᏕᏥᎵᎷᎬᎢ, ᎾᏍᎩᏰᏃ ᏓᏛᎩᎭ;\n”ᏴᎦᏥᏲᏍᏓᏗ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ.\nᎤᏩᏛᎲᏃ ᎩᎶ ᎢᏳᏍᏗ ᎠᏧᏏ ᎡᏈᎳ ᏧᏙᎢᏛ, ᏋᏗᏱ ᎤᏕᏅᎯ, ᎩᎳᎢ ᎤᎷᏦᏅᎯ ᎢᏓᎵ ᏅᏓᏳᎶᏒᎯ, ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ ᏈᏏᎳ ᏧᏙᎢᏛ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᏠᏗᏯ ᎤᏁᏨ ᏂᎦᏛ ᎠᏂᏧᏏ ᎶᎻ ᎤᎾᏓᏅᏍᏗᏱ, ᎾᏍᎩ ᏚᏩᏛᎯᎸᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏥᏠᎦ ᏕᏥᏓᏅᏛᎢ, ᎢᏣᎵᏏᎾᎯᏍᏗᏳ ᎨᏎᏍᏗ, ᎠᎴ ᎬᎵᏍᏆᏗᏍᎩ ᎤᏚᎩ ᎢᏨᏎᏍᏗ ᎡᏥᏁᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏂᎯ ᎡᏥᏲᎮᏗ ᏥᎩ ᎾᎯᏳ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎭ.\nᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ, ᎠᎴ ᎤᏂᎬᎥᏍᎩ, ᎠᎴ ᏧᏂᏴᏍᏕᏍᎩ, ᎠᎴ ᎠᎾᏓᏐᎮᎯ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎠᎾᏓᎩᎡᎯ, ᎾᏍᎩ ᎥᏝ ᎤᎾᏤᎵ ᏱᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ.\nᎠᎪᎵᏰᏍᎬ ᏓᏏᎳᏛ ᏫᎵᎻ, ᏚᏄᏌᏛ ᏃᎴ ᎪᏍᏓᏱ ᎤᎧᏛ ᎤᏓᏴᎳᏔᏁᎢ.\nᏣᎦᏁᎶᏗ ᎪᎱᏍᏗ ᎠᏥᎳᏫᏎᎲᎢ ᏞᏍᏗ ᏱᏣᏛᏓᏍᏗᏍᎨᏍᏗ ᎬᏂ ᎠᏂᏔᎵ ᎠᎴ ᎠᏂᏦᎢ ᎤᏂᏃᎮᏛ ᎨᏎᏍᏗ.\nᎠᏰᎵᏒ ᏂᎦᏓ ᏍᎪᏯ ᏧᏒᎲᏍᏗ ᎣᏏᏉ ᏂᎦᎵᏍᏗᏍᎨ.\nᏃᏉ ᏑᎾᎴ ᏣᎵᏍᏓᏴᏗ ᏗᎦᎶᏛ ᏫᏥᎦᏘ, ᏱᏣᏓᏅᏛᎾ ᏥᎩ ᏨᏌ ᏣᎩᏍᏗ.” \nᎠᎴ ᎾᏍᏉ ᏥᎻ ᎠᎴ ᏣᏂ ᏤᏈᏗ ᏧᏪᏥ ᎾᏍᎩ ᎤᎾᎵᎪᎯ ᏥᎨᏎ ᏌᏩᏂ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴ ᏌᏩᏂ; ᏞᏍᏗ ᏣᏍᎦᎸᎩ; ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏴᏫ ᏘᏏᏱᏍᎩ ᎨᏎᏍᏗ.\nᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ. ᏧᏓᏏᏃ ᎾᏍᎩ ᎤᏡᏗᏍᎩ ᎾᏍᏉ ᎦᏙᎬᎩ ᎠᏂᏙᎾᎥᎢ.\n“ᎤᏍᏆᏂᎩᏗᏍᎪ ᎮᎵᎠ?”\nᎤᏎᎵᏓᏁᎴᏃ [ᎯᎠ ᏄᏪᏎᎢ,] ᎢᏳᏍᏗᏉ ᎮᎵᏍᎬ ᏍᎩᏔᏲᏏ, ᏓᎬᏁᎵᏃ, ᎾᏍᏉ ᎠᏰᎵ ᎢᏴᏛ ᏱᎩ ᎾᎿ ᎠᎩᎬᏫᏳᎯ ᎨᏒᎢ.\nᎥᎩᏃᏁᎸᎯᏰᏃ ᎢᎩ ᎢᏓᎵᏅᏟ ᏂᎯ ᎡᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᏠᎢ ᏚᏓᏘᎾᎥ ᎨᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᏗᏥᏲᏍᏗ ᎨᏒ ᎢᏤᎲᎢ.\nᏧᏩᎩ ᏃᎴ ᎠᏔᏒᎩ ᏧᏆᎶᎦ ᏧᏍᎪᏍᏓ ᏧᎵᏑᏫᏓ ᏂᏕᎦᎵᏍᏗᏍᎨ ᏃᎴ ᎦᏃᎸᎥᏍᎬ ᏕᎦᏙᎣᏗᏍᎨ ᏧᏆᎶᎦ ᏐᏉᎯᎭ ᎦᏙᎯ.\nᎾᏍᎩᏃ ᏕᎨᏥᏲᏒ ᎥᏘᎣᎩ ᏭᏂᎷᏤᎢ, ᏚᏂᎳᏫᏛᏃ ᎤᏂᏣᏘ ᏚᏂᏅᏁᎴ ᎾᏍᎩ ᎪᏪᎵ.\nᏂᎦᏓ ᎠᎾᏓᏩᏛᎯᏙᎢ ᏏᏆ ᎤᏴᏍᏗ ᎣᏍᏓ ᎾᏂᏪᏎᎮᎢ ᏫᎵᎻ.\nᎠᏂᏦᎢᏰᏃ ᎠᏂᏃᎮᏍᎩ ᎦᎸᎳᏗ; ᎠᎦᏴᎵᎨᎢ, ᎧᏃᎮᏛ, ᎦᎸᏉᏗᏳᏃ ᎠᏓᏅᏙ; ᎾᏍᎩᏃ ᎯᎠ ᎠᏂᏦᎢ ᎨᏒ ᏌᏉᏉ.\nᎤᏗᎴᎩ ᏄᎵᏍᏔᏏ.”\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎡᎶᎯ ᎤᎷᎯᏍᏗᏱ ᏴᏧᏅᏒ ᎤᏪᏥ ᏧᏭᏓᏁᏗᏱ ᎡᎶᎯ, ᎾᏍᎩᏍᎩᏂ ᎢᏳᏩᏂᏐᏗᏱ ᎡᎶᎯ ᎠᏥᏍᏕᎸᏗᏱ.\nᏕᏣᏓᏠᎮᏍᏗ, ᏕᏥᏨᏍᏛᏃ ᏓᏓᏪᎵᎩᏍᎨᏍᏗ.\nᏧᎾᏁᎶᏗᏃ ᎤᎾᏓᏡᎬ ᎢᏴᏛ ᏫᏗᎬᏩᏂᎧᏅ ᎤᏂᎶᏎ ᏈᏂᏏ ᎠᎴ ᏌᎺᎵᏱ ᎠᏂᏃᎮᏍᎨ ᎠᎾᎦᏔᎲᏍᎬ ᏧᎾᏓᎴᏅᏛ ᏴᏫ; ᎤᏩᏘᏃ ᏚᎾᎵᎨᎵᏍᏔᏁ ᏂᎦᏛ ᎠᎾᏓᏅᏟ.\n“ᎬᏲ--ᏙᎩᎢᏳᏍᏗ?” ᎤᏪᎷᏁ.\nᎿᏉᏃ ᏧᎦᎿᏁᎢ, ᎠᎴ ᏥᏚᏃᎱᎦᏁᎢ, ᎠᎴ ᏧᏃᎸᏁᎢ, ᎾᎿ ᎠᏓᏁᎸ ᏥᏚᏱᎶᎴᎢ; ᎠᏎᏃ ᎥᏝ ᏳᏲᏤᎢ, ᏅᏥᎯᏰᏃ ᎦᎧᎮᎢ.\nᎨᎵᏍᎬ ᎠᏆᏘᏲᏍᏛ ᎪᏟᏍᏗ ᎨᏒ ᏃᎴ ᎫᏩᎾᏛᏓᎮᎸᏗ ᏱᎨᏒᎾ.\nᏓᏨᏍᏕᎢ ᎤᎾᏛᏁᎸᏗ ᎠᏰᎵ, ᏃᎴ ᎠᏛᎪᏗ ᎨᏎ ᏚᏃᏴᎬ ᏧᏂᏆᏂᏲᏍᏗ ᏃᎴ ᎧᏃᎩᏍᏗ ᏐᏈᎵ ᏗᏥᎶᏍᏔᏅ ᏗᎩᎸᏙᏗ ᏓᏳᏓᎴᏅ ᏃᎴ ᎠᏍᎦᏯ ᏗᏗᏯᏂᏍᎬᎢ ᏗᏎᏍᏗ ᏧᏂᏆᏂᏲᏍᏙᏗ.\nᎩᎶ ᎦᎵᎷᎨᏍᏗ, ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎤᏩᏁᏗ ᏱᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎭᏅᏓᏓ ᏄᏍᏛ ᏕᏣᏓᏂᎸᏨ ᎠᎴ ᏣᏛᎦᏅᎢ, ᎠᎴ ᎠᏍᏓᏯ ᏘᏂᏴ ᎠᎴ ᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏂᏯᏫᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏓᎬᎷᏤᎵ ᎦᏃᏍᎩᏍᎩ ᏥᎦᎷᎪ ᎾᏍᎩᏯᎢ, ᎥᏝ ᎠᎴ ᏱᎦᏔᎮᏍᏗ ᎢᏳ ᎨᏒ ᏗᎬᎷᏤᎵᏒᎢ.\nᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᎾᏓᎢᏍᏛᎾ ᎨᏎᏍᏗ, ᏌᏉ ᎠᏓᏰᎮᏍᏗ, ᎠᏃᎯᏳᎲᏍᎩ ᏚᏪᎧᎮᏍᏗ ᏧᏪᏥ, ᏂᎨᏥᎳᏫᏎᎲᎾ ᏄᎾᏁᎸᎾ ᎤᎾᎴᏂᏙᎸᎢ, ᎠᎴ ᏂᏚᎾᏓᏁᎶᏛᎾ.\nᎿᏉᏃ ᎾᎥ ᎬᏩᎷᏤᎴ ᏂᎦᏛ ᎠᏕᎸ ᎠᏂᎩᏏᏛᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ.\nᏞᏍᏗ ᎠᎴ ᎦᎶᏁᏛ ᏰᏗᎪᎵᏰᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᎩ Ꮎ ᎢᎦᏛ ᎾᏍᏉ ᏥᎬᏩᎪᎵᏰᎡᎢ, ᎠᎴ ᎾᏍᎩ ᎢᎾᏛ ᏥᎬᏩᏂᏛᏔᏁᎢ.\nᏂᎬᎾᏛ ᎠᏁᎰ ᎥᏳᎩ ᎠᏂᏱᏙ.\nᎾᏍᎩᏍᎪᏃ ᎢᏳᏍᏗ ᎠᏎᏉᏉ ᏂᏛᏁᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎢᏛᏗᎭ? ᎬᏩᏟᏍᏗ; ᎢᏗᏍᏓᏱᏗᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏥᎪᎥᎯ ᎠᎺᏉᎯ ᎠᎴ ᎦᏙᎯ ᏧᏔᏏᏅᎯ, ᎦᎸᎳᏗ ᎢᏗᏢ ᎤᏌᎳᏓᏅᎩ ᎤᏬᏰᏂ,\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎦᏓᏅᎦᎵᎠ, ᎾᏍᏉ ᎤᏅᏒ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎤᎾᎿᏅᎦᎸᏙᏗᏱ.\nᎾᏍᎩ ᎢᏳᏏᏗ ᎥᏝ ᏰᎵ ᎬᏩᏃᎯᏳᏗ ᏱᎨᏎᎢ; ᏔᎵᏁᏰᏃ ᎢᏌᏯ ᎯᎠ ᏄᏪᏎᎢ.\nᎩᎶᏍᎩᏂᏃᏅ ᎢᏳᎾᏍᏗ ᎬᏩᎵᎪᏁᎸᎩ ᎠᎴ ᎤᏃᎯᏳᏅᎩ; ᎾᎿ ᎨᎸᎩ ᏓᏲᏂᏏᏯ ᎡᎵᎣᏈᎦ ᎦᎲᏍᎩ ᏗᎫᎪᏘᏍᎩ ᎠᎴ ᎠᎨᏴ ᏕᎺᎵ ᏧᏙᎢᏛ, ᎠᎴ ᏅᏩᎾᏓᎴ ᎾᏍᏉ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏁᎮᎢ; ᏚᏛᏛᏁᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᎪ ᎬᏉᏎᎰ ᏴᏫ?\nᎢᎸᎯᏢᏃ ᎦᏚᎲ ᏩᏴᎯᎲᎢ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏕᎬᏩᏠᏎᎢ,ᎢᏅ ᏓᎾᎴᏅᏁᎢ;\n”ᎯᎠᏃ ᏂᏕᎦᏪᏍᎨᏍᏗ, ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏗᎦᏃᏣᏟ ᏏᏆ ”\nᎢᏳᏰᏃ ᎩᎶ ᎢᏳᏍᏗ ᏱᏣᎪᎲ ᏂᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏤᎯ ᏱᏅᎦ ᏯᎵᏍᏓᏴᎲᏍᎦ ᎠᏓᏁᎸ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎤᏤᎵᎦ; ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎤᏓᏅᏛ, ᎠᏩᎾᎦᎳ ᎨᏒ, ᏂᎦᎾᏰᏍᎬᎾ ᏱᏅᎦᎵᏍᏓ ᎤᎵᏍᏓᏴᏙᏗᏱ ᏧᏓᎴᏅᏛ ᎾᏍᎩ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ;\nᎢᏓᎪᎲᏍᏗ ᎤᏓᏁᎸᎢ, ᎠᏎᎯᏅ.\nᎾᏍᎩᏃ ᏧᏪᏥ ᏥᏂᏣᎵᏍᏔᏅ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎤᏁᎳᏅᎯ ᏧᏅᏒ ᎤᏪᏥ ᎤᏓᏅᏙ ᏗᏣᏓᏅᏙᎩᎯ, ᎤᏪᎷᎦ ᎯᎠ ᏂᎦᏪᎭ, ᎠᏆ, ᎡᏙᏓ.\nᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᏂᏧᏏ ᏧᎾᏤᎦ ᎬᏩᏃᎮᎮᎸᎩ ᎠᏄᎯᏍᏗᏍᎬ ᏉᎳ ᎠᎴ ᎬᏩᏍᏗᏰᏔᏅᎩ,\nᎦᏣᏄᎸ ᏚᏯᎰᏎᎲ, ᎡᎵᏍᎬ ᎠᏂᏐ ᎠᏂᏔᎵ ᎣᏍᏓ ᎤᏂᎷᏤᎯ.\nᏂᎪᎯᎸᎾᏉᏃ ᎤᏛᏐᏅ ᎤᏃᎮᎴ ᎠᏥᎸᏳᎶᏗ ᎤᏬᏢ ᏙᏱᏨ, ᎦᎸᏙᎵ ᎠᏍᎦᏯ ᎤᎾᏅᎪᏤ ᎢᎾᎨ ᏓᏳᎶᏒ.\nᎤᏛᎦᏁ ᏗᎾᎢᏒ, ᎠᏂᏍᏔᏩᏗᏎ ᏧᎶᏒ ᏧᎵᏬᏨ ᏧᏆᎶᎬ, ᎬᏂᎨᏒ ᎾᏍᎩᏯ ᎦᏓᎷᎪᏗ ᎤᏂᏏᏅᏒ.\nᎠᎦᎵᎡᎵᏤᎰᏍᎪ ᎾᏍᎩ ᎠᏥᏅᏏᏓᏍᏗ ᎾᏥᏪᏎᎸ ᏄᏛᏁᎸᎢ? ᎥᏝ ᎠᎩᏰᎸᎭ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎭᏝ ᎢᏦᎯᏳᏒᎢ? ᎾᏍᎩᏃ ᎠᏂᏍᎦᎢᎲ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎠᏍᎦᏯ? ᏕᎧᏁᏤᏰᏃ ᎤᏃᎴ ᎠᎴ ᎠᎹ, ᎠᎴ ᎢᎬᏬᎯᏳᎲᏍᎦ.\nᎾᏃ ᎾᏍᎩ ᎯᎠ ᎡᎶᎯ ᎪᎱᏍᏗ ᎠᏅᏗᏍᎩ ᏞᏍᏗ ᎤᏣᏘᏂᏉ ᏱᎾᏅᏁᏗᏍᎨᏍᏗ; ᎯᎠᏰᏃ ᎡᎶᎯ ᏄᏍᏛ ᎦᎶᏐᎲᏍᎦᏉ.\nᎠᏴᏰᏃ ᎠᎩᎷᏥᎸ, ᏗᎾᏓᏍᎦᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏍᎦᏯ ᎤᏙᏓᏃ, ᎠᎴ ᎠᎦᏅᎩ ᎠᎨᏴ ᎤᏥᏃ, ᎠᎴ ᎤᏓᏦᎯᏯ ᎤᏦᎯᏃ;\nᎠᎵᏰᎾ! \nᏧᏓᎴᏅᏓ ᏓᏓᏳᎶᏒ ᏕᏥᎾᎩᏍᎬ ᏗᎪᏪᎳᏅ ᏗᏥᎶᏍᏔᏅ.\nᎠᏓᏅᏙ ᎠᏆᏘᏂᏙᎲᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎢᎦ ᎨᏒᎢ, ᎠᏆᏛᎦᏅᎩᏃ ᎠᏆᏐᎭᏛ ᎢᏗᏢ ᎠᏍᏓᏯ ᎧᏁᎬ ᎾᏍᎩᏯ ᎠᏤᎷᎩ ᏧᏃᏴᎪᎢ,\nᎯᎠᏃ ᎾᏍᎩ ᏥᏄᏍᏗ ᎡᎩᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎢᏨᎨᏳᎢ, ᎢᏓᏓᏅᎦᎸ ᎢᏗᎲᎾ ᏄᏓᎴᏒ ᎦᏓᎭ ᎨᏒ ᎢᎩᏇᏓᎸ, ᎠᎴ ᎢᎦᏓᏅᏙᎩᎯ, ᎢᏗᏍᏆᏗᏍᎨᏍᏗ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎤᏁᎳᏅᎯ ᎡᏗᎾᏰᏍᎬᎢ.\nᎠᏐᏴᏃ ᏣᏍᏆ ᏅᏯ ᎠᏁᏍᎨᏛᎩ; ᎦᏚᎲᏃ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏛᎩ, ᏧᎸᏌᏛ ᎠᏓᎨᏗ ᎾᏍᎩᏯᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎦᎶᏁᏛᏱ ᎤᎦᎵᏍᏗ ᏅᏓᎬᏩᏓᎴᏗ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᏓᏄᏬᎯᏍᏗᏍᎩ ᎬᏩᏓᏁᏗ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎬᏖᏉᎶᏗ ᎨᏎᏍᏗ ᎠᏓᏅᏙ ᎥᏓᏘᏁᏗ ᎨᏒᎢ, ᎢᏳᏃ ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎤᏓᏅᏘ ᎨᏒ ᎡᎮᏍᏗ,\nᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ, ᎢᏳᏰᏃ ᎢᏧᎳᎭ ᏗᎩᏲᎱᏒᎯ ᎨᏎᏍᏗ, ᎠᏎ ᎾᏍᏉ ᎢᏧᎳᎭ ᏕᏛᏁᏍᏗ;\nᎠᏎᏃ ᏥᏌ ᎤᏛᎦᏅ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ Ᏹ-ᏍᎦᎢᎮᏍᏗ; ᏦᎯᏳᏎᏍᏗᏉ, ᏓᏳᏗᏩᏏᏃ.\nᎤᏩᎦᏘᎶᏓ ᎠᏇᏙᎸ ᎢᏤ ᎢᏦᏛ, ᎠᏎᏃ ᎨᏍᏗ ᏱᏥᎦᏔᎮ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ.\n”ᏍᎩᏃᎯᏎᎸ ᎦᎬᏍᏕᎸᏗ ᎨᏎᏍᏗ.”\nᎢᏳᏃ ᏴᏫᏉ ᎠᏁᎲᎢ, ᏲᎦᏛᏅ, ᏂᎦᏛᏉ ᏴᏫ ᏅᏯ ᏱᏕᎪᎬᏂᏍᏓ; ᏣᏂᏰᏃ ᎠᏙᎴᎰᏍᎩ ᎨᏒᎩ, ᎠᏁᎵᎭ.\nᎠᎦᏍᎩ ᎤᏲᏍᏔᏁᎴ ᎤᏓᏅᏖᎸ ᏫᎵᎻ.\nᎢᏳᏍᎩᏂᏃ ᎩᎶ ᏂᏓᏛᏅᎢᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎤᏩᏒ ᏧᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᎭ ᎤᏩᏒ ᏚᏓᏘᎿᎥᎢ, ᎾᏍᎩ ᎤᏓᏱᎸ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏟ ᎤᏲᎢᏳ ᎡᏍᎦᏉ Ꮎ ᏄᏬᎯᏳᏒᎾ.\nᏔᏁᏃ ᎤᏄᎪᏤ ᎥᏓᎵ ᎤᎶᏗ ᎤᏪᏙᎴᎢ; ᎠᎴ ᏂᎦᏛ ᎤᏂᏣᏘ ᏫᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎾᏍᎩ ᏚᏪᏲᏁᎢ.\nᎩᎶ ᎾᏆᎵᎪᏁᎲᎾ ᏥᎨᏐ ᎠᏆᏡᏗᏍᎪᏉ; ᎩᎶᏃ ᏃᏍᏗᏟᏏᏍᎬᎾ ᏥᎨᏐ ᎠᏗ-ᎦᎴᏯᏍᎪᏉ.\nᎠᎬᏱ ᎠᏛᏛᏅ ᎾᏂᎥ, ᎤᎾᏟᏂᎬᎬ, ᎤᏂᏐᏯᏍᏗᏍᎩ ᎨᏒ ᎠᏁᎲ, ᎤᎾᎵᏍᏔᏴᏗ.\nᎿᏉᏃ ᏔᎵᏁ ᏔᎵ ᏄᎾᏓᏛᎩ ᎠᏂᏧᏏ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᏄᏪᏒᎢ.\nᎠᎫᏩᏌ ᏴᏙᎭ ᏚᏅᏓᏒ ᏰᎵ ᏧᏙᏓᏆᏓ, ᎠᎫᏍᏕᎵ ᏯᎾᎢᏳᎾ - ᎠᏲᎯᏍᏘ ᎠᎫᎾᏰᎯᎲ ᎢᎾᎨᎢ.\nᎯᏍᎩ ᎢᏳᎾᏓᎨᏛ ᎤᏂᎧᎭᏲᏒ ᏚᏯ ᏃᎴ ᎤᏁᎸᏗ ᎠᏓᏅᏖᏗ ᎤᏩᏌ ᎠᏆᎵᏍᎪᎸᏛ, ᏃᎴ ᎬᏍᏕᏓᎵᏴᏍᏗ ᏱᎨᏒᎾ.\nᎤᎸᏉᏗ ᎨᏎ ᎤᏍᎪᎵᏰᏗ, ᎤᏪᎵᏍᏗ, ᏃᎴ ᎦᏂᏏ ᏭᏂᏏᏗ.\nᏝᏍᎪᏃ ᏱᏗᏥᏁᎸ ᎾᎿ ᎢᏔᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎢᏔᏗᏔᏍᏗᏱ? ᏥᎪᎨ ᎢᏥᏐᏢᏗᎭ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏕᏣᏕᎰᎯᏍᏗᎭ ᏄᏂᎲᎾ? ᎦᏙ ᏓᏨᏲᏎᎵ? ᏓᏨᎸᏉᏔᏂᏧ? ᎯᎠ ᏂᏨᏛᏁᎲ ᎥᏝ ᏱᏨᎸᏉᏗᎭ.\nᏧᎾᏟᏍᏗ?\nᎦᎵᎡᎵᎩ ᏕᎩᎾᏦᏒᎢ ᎤᎬᏍᏕᎵ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ.\nᏏ ᎦᏲᏟ ᎤᏓᏅᏖᏗᏍᎨᎢ ᏭᏩᎦᏘᏗᏒᎢ, ᎨᏍᏗ ᏳᏬᎯᏳᎮ ᎧᏅᏂᏍᎩ ᎤᏍᏆᏂᎪᏙᏗ ᎬᏅᎢ.\nᎤᏰᏤ ᎡᎶᏗ.\nᎣᏂᏱᏃ ᎠᎨᏴ ᎾᏍᏉ ᎤᏲᎱᏒᎩ.\nᎾᏍᏉ ᎪᏍᏚᏉ ᎢᏥᏚᎲ ᎦᎳᎨᏴᎢ, ᎾᏍᎩ ᎣᎩᏯᎸᎬᎢ ᎣᏥᏅᎪᎥᏗ ᎢᏨᎢᏰᎭ; ᎠᏎᏃ ᎯᎠ ᏄᏍᏕᏍᏗ ᎢᏥᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎥᏂᏳ ᎢᏥᎷᏤᎸᎢ.\nᏂᎪᎯᎸᎾᏉ ᎤᏂᏲᎯᏍᏔᏅ ᎠᎾᏛᎦᏍᏗᏍᎬ, ᎤᎾᎴᏅᎲ ᎠᎾᏓᏅᏖᏍᎬ ᎢᏳᏍᏗ ᎤᎵᏍᏕᎸᏙᏗ, ᎾᏍᎩ ᎤᏅᏌ.\nᎠᏏᏉ ᎾᏍᎩ ᏂᏕᎦᏪᏎᎲᎩ, ᎬᏂᏳᏉ ᎩᎶ ᎢᏳᏍᏗ ᏄᎬᏫᏳᏌᏕᎩ ᎤᎷᏨ ᎤᏓᏙᎵᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎠᏇᏥ ᎠᎨᏳᏣ ᎦᏳᎳ ᎤᏲᎱᏏᏕᎾ. ᎠᏗᎾ ᎮᎾ, ᎯᏯᏒᏂᎸᎭ, ᎠᎭ ᏛᎠᏛᏂᏗᏉ.\nᎤᎾᏕᎳᎰᏌ ᏐᏉ ᎠᎨᏯ ᎠᏴᏫᏯ ᏧᎾᎭᏰᏍᏗ, ᏣᎦᏥᎶᏍᏔᏅ ᎤᎾᎪᎰᏍᏔᏁᎢ ᏅᏃ ᎠᏰᎵ ᏃᎴ ᏧᏂᎳᏫᎢᏍᏗ ᎭᎸᎾ ᏚᏂᏃᏴᎵᏍᏔᏁ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎤᎵᏨᏓᏆᏓ.\nᎢᏤᏍᎩᏃ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏎ ᏗᏤ ᏗᏑᏢᏛ ᏗᏟᏍᏙᏗ; ᎩᎳ ᎿᏉ ᎢᏧᎳ ᏂᏗᎬᏩᏍᏙᎢ\nᎾᏍᎩ ᎾᎿ ᎤᏣᏘ ᏥᏣᎵᎮᎵᎦ, ᎪᎯᏍᎩᏂᏃᏅ ᏞᎦ, ᎢᏳᏃ ᎨᏎᏍᏗ, ᎡᎯᏍᏗ ᎢᏣᏓᏅᏔᏩᏕᎦ ᎤᏗᎦᎵᏍᏙᏗᎭ ᏧᏓᎴᏅᏛ ᎢᏥᎪᎵᏰᏍᏗ ᎢᏣᎵᏩᏛᎡᎲᎢ,\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎢᏍᎩᏂᏲᎮᎢ? ᏝᏍᎪ ᏱᏍᏗᎦᏔᎮ ᎡᏙᏙᏱ ᎠᏎ ᎠᏇᏓᏍᏗ ᎨᏒᎢ?\nᎢᏨᏒᏰᏃ ᎢᏥᎦᏔᎭ ᎯᎠ ᎾᏍᎩ ᏗᏉᏰᏂ ᏓᏋᏔᏅᎯ ᎠᎩᏩᏛᎲ ᎠᎩᏂᎬᏎᎲ ᎠᏋᏒ ᎠᎴ ᎾᏍᏉ ᎣᏤᎯ.\nᎠᎴ ᎠᏴ ᎥᏝ ᏱᏥᎦᏔᎮᎢ; ᎠᏎᏃ ᎾᏍᎩ ᎢᏏᎵ ᎨᏥᎾᏄᎪᏫᏎᏗᏱ ᏅᏧᎵᏍᏙᏔᏅ ᎠᎩᎷᏨ ᎠᎹ ᏕᎦᏓᏬᏍᏗᎭ.\nᎾᏍᎩᏰᏃ ᏄᏩᏅ ᏥᏕᏛᏅ, ᎠᎴ ᏥᏓᎵᏖᎸᎲᏍᎦ, ᎠᎴ ᏥᏕᎭ; ᎾᏍᎩ ᎾᏍᏉ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᎧᏃᎩᏍᏗ ᏗᏃᏪᎵᏍᎩ ᏗᏣᏤᎵᎦ ᎯᎠ ᏄᏂᏪᏒ; ᎠᏴᏰᏃ ᎾᏍᏉ ᎾᏍᎩ ᏧᏪᏥ.\nᏥᏌ ᎤᎷᏨᎩ ᎤᎩᏒᎩ ᎦᏚ ᎠᎴ ᏚᏁᎸᎩ, ᎠᎴ ᎾᏍᏉ ᎠᏣᏗ ᏚᏅᏁᎸᎩ.\nᎾᏍᎩ ᏥᏅᎵ ᏫᏥᎷᏤᏗᏱ, ᎾᏍᎩ ᏂᏣᏛᎿᏕᎬ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎤᎬᏩᎵ, ᎠᎴ ᏗᏥᎦᎵᏍᏓᏕᏗᏱ ᏗᏥᎾᏫ ᎤᎬᏩᎵ;\nᎠᏎᏃ ᎠᎦᏔᎾᎢ ᏧᏪᏥ ᏂᎦᏛ ᎣᏏᏳ ᎢᎬᏩᏰᎸᎭ\nᏍᎪᎯ ᎢᏯᎳᏏᏔᏅ ᎢᏴ ᏫᏓᏲᎯᎲ ᏩᏁᎢ ᏗᏲᏍᏙᏗ ᎬᏘ, ᏐᏉ ᎢᏳᏦᏔᏅ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎾᏍᎩ ᎯᎠ ᎪᎯ ᎨᏒ ᎥᏝ ᏳᏃᎯᏳᏅ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏣᏤᎵ ᎢᏳᏩᏂᏐᏗᏱ ᎾᏍᎩ ᎾᏍᏉ ᎨᏥᏙᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᏣᎶᏅᎮᎭ ᏣᏂᏴᏗᎯ-ᏂᏴᏗᎯ.\nᏧᏓᏏᏃ ᎠᏓᏡᏗᏍᎩ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᏥᎪ ᎠᏴ? ᎯᎠ ᏄᏪᏎᎸᎩ; ᏰᎵ ᏂᏫ.\n“ᎦᏨ ᎮᏙᎭ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\n”ᏙᎢᏳᏍᏗ?”\nᎢᏳᏃ ᎰᏩ ᎦᎶᏁᏛ ᏚᎴᏅ ᏗᏣᎴᏅᎯ ᎨᏎᏍᏗ, ᎢᏥᏲᎮᏍᏗ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎨᏒᎢ, ᎾᎿ ᎦᎶᏁᏛ ᎤᏬᎸ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏᏗᏢ.\nᎤᎵᏍᎦᏂᏍᏛᏍᎩᏂ ᎧᏃᎮᎸᏗ ᎨᏒ ᎠᎴ ᎤᎾᏓᏁᏟᏴᏒᏒᎢ, ᎠᎴ ᏗᏘᏲᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎬᏩᎵ ᏕᎭᏓᏅᏒᎮᏍᏗ, ᎬᏩᎾᏓᏍᏕᎸᏗᏰᏃ ᏂᎨᏒᎾ ᎠᎴ ᎠᏎᏉᏉ ᎾᏍᎩ.\nᎠᏴ ᏍᎩᏍᏓᏩᏕᎩ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᏴ ᎾᏍᏉ ᎦᎶᏁᏛ ᏥᏍᏓᏩᏕᎩ ᏥᎩ.\nᎠᎼ ᎡᎳᏗ ᏄᏛᏁᎸ.\nᎠᏂᏧᏏ ᏕᎦᎵᏦᏛᎢ-ᏧᎾᎵᏍᏓᏴᏗᏱ ᎤᏍᏆᎸᎯᏗᏒᎩ.\nᎣᎭᏁ ᎢᏴ ᎩᎳ ᎤᎾᏓᏅᏖᏙᏗ.\nᎿᏃ ᎡᎶᎯ ᎠᏁᎯ ᏛᎾᎵᎮᎵᏥ ᎾᏍᎩ ᎨᏒ ᏅᏗᎦᏍᏙᏗᏍᎨᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎤᎾᏓᏅᏔᏩᏕᎨᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᏓᎾᏓᏁᎸᎥᏍᎨᏍᏗ; ᎯᎠᏰᏃ ᎠᏂᏔᎵ ᎠᎾᏙᎴᎰᏍᎩ ᎬᏩᏂᎩᎵᏲᎢᏍᏔᏅᎩ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏁᎯ.\nᏍᎩᎾᎾ ᎢᏳᏩᏂᏌᏓ ᏚᏂᏴᏍᏓᎩᏍᎨ, ᎠᏰᎵ ᎢᏴ ᎠᏦᎭᏴ ᎾᎥᏂ ᎠᏂᏁ ᎤᏂᏰᏥᏍᎨ ᎠᏂᏐ ᎠᏰᎵ ᎢᏴ ᎠᏂᏁ ᎠᏦᎭᏴ ᎾᎥᏂ ᏧᏍᏆᏅᏂ ᎬᏘ ᏚᎾᏚᏌᎡ ᎤᏂᏁᎬᏒ ᎠᎴ ᏓᎾᏦᎭᏱᎮ.\nᎢᏳᏍᎩᏂᏃᏅ ᎤᏇᏓᎸ ᏯᏆᎴᏂᏙᎸ, ᎯᎠ ᎾᏍᎩ ᎠᎩᎾᏄᎪᏫᏍᏗ ᏓᎩᎸᏫᏍᏓᎪᎲᎢ; ᎠᎴ ᎥᏝ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏑᏰᏍᏗᏱ.\nᎠᎴ ᎠᏴ ᎢᎩᎦᏙᎥᏒ ᎠᎴ ᎢᎪᎯᏳᏅ ᎤᏁᎳᏅᎯ ᎢᎩᎨᏳᎯᏳ ᎨᏒ-Ꭲ. ᎤᏁᎳᏅᎯ ᎠᏓᎨᏳᏗ ᎨᏒ ᏚᏙᎥ, ᎠᏓᎨᏳᏗᏃ ᎨᏒ ᎡᎯ ᎤᎾᎳᏅᎯ ᎠᏯᎣᎢ, ᎠᎴ ᎤᎾᎳᏅᎯ ᎾᏍᎩ ᎤᏯᎣᎢ.\nᎤᎵᏍᏗ ᏄᎵᏍᏔᏁᎮ ᏣᏄᏏ.\nᎠᏎᏃ ᎤᏕᎸᏛ ᏧᎾᏂᏏᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᏂᏏᏴᏫᎭ ᎠᏂᏍᎦᏯ ᏧᎾᏓᎵᎢ ᏚᏂᎧᎮᏍᏗ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᎠᏂᎨᏴ ᏗᎬᏩᏂᏰᎯ ᏚᏂᎧᎮᏍᏗ.\nᏰᎵᏉ ᎢᏳᏪᏍᏘ ᎯᎸᎯᏴ ᎤᎪᎲ ᏱᎨᏒᎾ ᎩᎳ ᎠᏲᎰᏍᎬ, ᎦᏳᎳ ᎤᏲᎰᏒ ᏂᎨᏎ Perry ᎦᏙ ᏭᏅᏥᎳ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎪᎲ ᎥᏓᎵ ᎦᏚᎩ; ᎠᎢᏒᎢ ᎤᎾᏓᏅᏖᏔᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏰᎯ ᎯᎠ. ᎠᏂᏍᎦᎢᎲᏃ ᎢᏳᏍᏗ ᏅᎾᎵᏍᏔᏅᎩ.\nᎾᏍᎩᏯᏉ ᎤᎬᏫᏳᎯ ᏚᏭᎪᏔᏅ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎾᎵᏥᏙᎲᏍᎩ ᏥᎩ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃ ᎮᏛ ᎤᎾᎵᏍᏕᎸᏙᏗᏱ.\nᎠᎴ ᏓᎬᏩᏐᏢᎢᏍᏔᏂ, ᎠᎴ ᏓᎬᏩᎵᎥᏂᎵ, ᎠᎴ ᏙᏓᎬᏩᎵᏥᏍᏈ, ᎠᎴ ᏓᎬᏩᎵ; ᏦᎢᏁᏃ ᎢᎦ ᏔᎵᏁ ᏙᏛᎠᎴᏂ.\nᏰᎵ ᏧᏕᏘᏴᏓ ᎠᏆᏕᏅ ᎨᏎ ᎭᏂ ᎦᏓᏁᏍᏛ ᎠᏙ, ᏥᎦᏔᎲ ᎢᏯᏆᏛᏁᏗ.\nᎢᎦᏓ ᏧᎾᏦᏍᏗ ᎠᎩᏍᏗ Ꮎ ᏍᎩᏅ ᎭᎴᏉ ᏂᏙᎩᏨᏍᎪ ᏦᏥᏅᎪᎢ.\nᎾᏂᎥᏰᏃ ᎤᏅᏒᏉ ᎤᎾᏤᎵ ᎨᏒ ᎤᏂᏲᎰᎢ, ᎥᏝᏃ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵ ᎨᏒᎢ.\nᎾᏍᎩ ᎯᎠ ᏥᏌ ᏄᏪᏒ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏘᏅᏒᎩ, ᎤᏄᎪᏨᎩ ᏚᏪᏐᏨᎩ ᎩᏠᏂ ᎤᏪᏴᎢ, ᎾᎿ ᎠᏫᏒᏗᏱ ᎪᏢᏒᎩ, ᎾᎿ ᎤᏴᎸᎩ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ.\nᏂᎯ ᏯᏑᏯᎩ ᎢᏳᏍᏗ ᏣᏚᎵᏍᎬ ᎠᎬᏱ, ᎩᎳ ᏱᎦᎵᏍᏓᏴᎲᎦ.\n“ᎠᏆᏓᏓᏏᎾᎲᏍᏙᏗᎩᏉ ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎤᏛᏅ ᎠᏓᎦᏘᏕᎯ.\nᎣᎭᏁ ᏚᎾᏦᏩᏛ ᏃᎴ ᎤᏍᏗ ᏗᎦᎶᏙᏗ ᏓᏂᎳᎩᏍᎨ ᎤᏂᎾᏕᎨ.\nᎠᏂᏆᎵᏏᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᎾᎴᏅᎮ ᎬᏩᏛᏛᎮᎸᏁᎢ, ᎬᏩᏔᏲᏎᎴ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎬᏩᎪᎵᏰᏍᎨᎢ.\nᎢᏳᏃ ᎢᏣᏁᎳᏅᎯ ᏧᏬᏎᎸᎯ ᏱᎩ, ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎨᏥᏁᏤᎸᎯ, ᎠᎴ ᎪᏪᎵ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᏱᎩ,\nᎤᏣᏘᏃ ᎤᏂᏬᏂᏒ ᏈᏓ ᏕᎤᎴᏁᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᏂᎯ ᎢᏥᎦᏔᎭ ᎿᏉ ᏰᎵ ᎪᎯᎩ ᎤᏁᎳᏅᎯ ᎠᏴ ᎠᏆᏑᏰᏒ ᎢᎦᏓᏡᎬ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏴ ᎬᏆᏛᎦᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩᏃ ᎤᏃᎯᏳᏗᏱ.\n“ᎭᏩᏃ,” ᎤᏛᏁ, ᎧᏃᎩᏍᎩ ᎢᏳᏍᏗ ᎦᏬᏂᏍᎩ.\nᎠᏥᎸᏳᎵ ᎾᎥᏂ ᎤᎴᏫᏍᏔᏅ ᏣᎵ.\nᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ; ᏚᏩᏛᎰᎸᏰᏃ ᎠᎴ ᏚᏓᏴᎲ ᏧᏤᎵᎦ ᏴᏫ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᏂᎪᎯᎸ ᎣᏣᏓᏙᎵᏍᏗᏍᎪ ᎢᏨᏯᏅᏓᏗᏍᎪ, ᎾᏍᎩ ᎣᎦᏁᎳᏅᎯ ᎤᏓᏯᏅᏗ ᎨᏒ ᎢᏥᏯᏅᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎤᏍᏆᏗᏍᏗᏱ ᏂᎦᏛ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏓᏅᏘᏳ ᎨᏒᎢ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᏧᎸᏫᏍᏓᏁᏗ ᎬᏔᏅᎯ ᎤᎵᏂᎩᏛ ᎨᏒᎢ;\nᏗᎦᏅᎯᏓ ᏔᎷᎩᏍᎩ ᏓᏆᏛᏅ, ᎩᎦᎨ ᎧᏃᏍᎦ ᎦᏚᎢᏣ ᏓᏋᏂᏍᏔᏅ.\n“ᎤᏙᎱᏳᎭᏍᎪ? ᎤᏛᏛᏁ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏛᏛᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᎦᎪ ᎤᏍᎦᏅᏤᎢ, ᎯᎠᏍᎪ, ᏧᎦᏴᎵᎨᎢᎨ, ᏗᎨᏫ ᏧᏕᏁᎢ?\nᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎸᎩ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ; ᏥᎦᏘᏏ ᎢᏗᏢ ᏦᎴᏍᏗ, ᎬᏂ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ;\nᏥᏰᏲᏅ ᎢᏳᏪᏍᏗ ᎠᎦᏘᏱ, ᏗᎨᏃ New Jersey ᏱᏤᎾᏉ.\nᎦᏄᎸ ᎯᎦ! \nᎢᏳᏃ ᏣᏱᎵᏙᎯ ᏗᏓᎪᏗᏍᎩᏱ ᏍᏓᎢᏎᏍᏗ, ᎠᏏᏉ ᏫᏍᏓᎢᏒᎢ, ᎭᏟᏂᎬᏁᎸᎭ ᎯᏯᏚᎵᏔᎡᏗᏱ; ᏗᏓᎪᏗᏍᎩᏱ ᎾᏏ ᏫᏱᏣᏘᏃᎦ, ᏗᏓᎪᏗᏍᎩᏃ ᏗᏓᏂᏱᏍᎩᏱ ᏫᏱᏕᏣᏲᎯ, ᏗᏓᏂᏱᏍᎩᏃ ᏗᏓᏍᏚᏗᏱ ᏫᏱᏣᏴᏓ.\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎥᏝ ᎩᎶ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᏱᎩ, ᎥᏝ, ᏌᏉ ᎤᏅ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᎢ, ᎾᏍᎩ ᎣᏓᎸ ᏭᎶᎭ ᎤᏓᏙᎵᏍᏔᏅᏎᎢ, ᎠᎴ ᎤᏨᏓᏇ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎲᎢ.\n“ᏰᎵ ᎤᎵᏍᎨᏓ ᏍᎩᎾᎾ ᏏᏆ ᎠᎾᏗᎭ.”\nᎧ ᎦᏙᎯ ᎨᏎ ᎯᎠ ᎠᏍᎦᏯ ᏍᏏᏉᏯ? ᎡᏙᏓ ᎠᏆᏛᏛᏅ.\nᎡᏣᎪᎾᏓ, ᏫᎵᎻ.\nᎭᏫᏂ ᏓᏳᏓᎴᏅ ᎤᏛᎸᎮᎢ ᏫᎵᎻ.\nᏍᎩᎾᎾ ᏂᎦᏪ ᏓᏏᎳᏛ ᎠᏰᎵ.”\n”ᏣᏂᏏᏗ ᎮᎾᏗᎾ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎧᏁᏌᎢ ᏭᏴᎴᎢ ᏧᏍᏆᏴᏍᏗ, ᎧᏁᏍᎦ ᎤᏚᏒᏓᏁᎢ.\nᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᏄᎬᏫᏳᏌᏕᎩ ᎤᎿᎸᎯ ᎤᏁᏤᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏥᏌ ᎤᏓᏅᏩᏅ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏚᏳᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏴᏫ; ᎾᎯᏳᏍᎩᏂ ᎢᏥᎷᎨᏍᏗ ᎠᎴ ᏕᏥᏅᏫᏍᎨᏍᏗ, ᏞᏍᏗᏃ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ.\nᎦᏙᏰᏃ ᎠᏗᎭ ᎦᎸᏉᏗ ᎪᏪᎵ? ᎡᏆᎭᎻ ᎤᏬᎯᏳᏁ ᎤᏁᎳᏅᎯ, ᎾᏍᎩᏃ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎴᎢ.\nᎿᏉᏃ ᎤᎾᎸᎸ ᎤᏁᎵᏌᎾᏫᏛᎮᎢ, ᏆᏂᏛ ᏆᎴᏗ ᎤᎬᏫᏳᎯ ᏫᏚᏂᏲᎯᏎᎴᎢ.\nᏃᎴ ᎤᏐᏱ, ᎨᎦᏑᏯᎩᏍᏗ ᏱᎨᏒᎾ.\n”Ꭳ, ᎨᏍᏗ ᏯᏆᏅᏔ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎠᎴ ᏄᎨᏳᏅᎾ ᏥᎨᏎ ᎡᏘ ᎡᎶᎯ ᏥᎨᏎᎢ, ᏃᏯᏍᎩᏂ ᏧᏁᎳ ᏧᏛᏕᎢ ᎨᏒ ᎾᏍᎩ ᎠᎵᏥᏙᎲᏍᎩ ᏚᏳᎪᏛ ᏗᎧᎾᏩᏗᏙᎯ ᏥᎨᏎᎢ, ᎠᎴ ᏥᏚᏃᎱᎪᏔᏁ ᎡᎶᎯ ᎠᏂᏍᎦᎾ ᎠᏁᎲᎢ,\nᎠᏎᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎡᏥᏅᏍᏓᏕᎸᎩ; ᎥᏝᏰᏃ ᏰᎭ ᎩᎶ ᏓᏆᏙᎥ ᎬᏗᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎯ, ᎾᏍᎩ ᎢᎬᏪᏅᏛ ᎤᏐᏅ ᎬᎩᏁᎢᏍᏙᏗ.\nᎠᎴᎾ ᎤᏩᏌ.\n“ᏙᏳ ᏥᏍᎦᎢᎭ,” ᎤᏛᏁ ᎠᎳᏂ.\nᎦᏅᏙᏗ ᎦᏚᎢ ᎤᏂᎳᎯᏙᎴ, ᎤᏂᎦᏛᎲᏍᎬ ᎤᎾᏤᎵ ᎠᏤᎯ ᎡᎶᎯ.\nᎢᏨᏲᏪᎳᏏ ᎦᏲᎵ ᏏᎷᏪᏂ ᎤᏅᏍᏗ ᎾᏍᎩ ᎦᎳᏏᏛᏗ ᏂᎨᏒᎾ ᎢᏣᎵᏅᏟ ᎦᏓᏅᏖᏍᎬᎢ, ᎢᏒᏔᏲᏎᎭ, ᎠᎴ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ ᎾᏍᎩ ᎯᎠ ᎾᎿ ᏥᏕᏥᏙᎦ ᎤᏙᎯᏳᏒ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎩᎶ ᏧᏮᏕᏨᎯ ᏱᎩ ᎦᏁᎸᎢ, ᎠᎴ ᏧᎦᏴᎵᎨᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ, ᏅᏓᏳᎵᏍᏙᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ,\nᎤᎵᏍᏆᏙᏅ, ᏂᎦᏓ ᎤᏣᎴᏓ ᏧᏤᎵ ᏴᏫ ᏬᎩᎷᏨ ᏩᏯ.\nᎢᏳᏍᎩ ᏉᏃ ᏫᏄᏒᎸ ᎤᏪᏥ ᎣᏂ ᎡᎯ ᏂᎦᏛ ᎤᏪᏟᏌᏁᎢ, ᎠᎴ ᎤᏂᎩᏎ ᎢᏅ ᏭᎶᏎᎢ, ᎾᎿᏃ ᏄᏁᎸᎾ ᎡᎲᎢ ᏭᏤᏫᏙᎴ ᏧᎬᏩᎶᏗ ᎤᎲᎢ.\nᏓᏂᏍᏔᏲᎯᎲ ᎤᏃᏴᎬ ᎤᎷᏨ ᏥᏙᎬ, ᏣᏁᎳ ᏧᎦᎭᏲᏛ ᎠᏓ ᎢᏓᎵᏍᏆᎵᏍᎪ ᎾᎥᏂᎨ, ᎤᎾᎵᎪᎲ ᏄᏍᏆᎸᏨ ᎢᏕᎲ, ᎠᏰᎵᏒ, ᎾᎥᏂᎨ ᏨᏍᎩᏃ ᏧᎵᏏᎬ ᏧᏫᏗᎸᎪ.\nᎤᏂᏣᏘᏃ ᎠᏂᏁ ᎬᏩᏓᏡᏫᏍᏕᎢ; ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᏣᏥ ᎠᎴ ᎢᏣᎵᏅᏟ ᏙᏱᏗᏢ ᏗᎨᏣᏲᎭ.\nᎤᏪᎵᏎ ᎦᏲᏟ ᎤᏬᏂᎯᏍᏗ ᎨᏎ ᎯᎠ ᎤᎵᏍᎨᏛ ᏂᎦᎵᏍᏗᏍᎬ.\nᏕᏣᏲᎢᏎᎮᏍᏗᏍᎩᏂ ᎦᏪᏢᏗ ᎨᏒ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎠᎴ ᎠᏂᎦᏴᎵᎨ ᎤᏂᏃᎮᎸᏗ ᏥᎩ; ᎠᎴ ᏣᎸᏫᏍᏓᏁᎮᏍᏗ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᎨᏒᎢ.\nᎯᏍᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏪᏗᏱ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ, ᎤᏥᎵᎪᎯᏃ ᎨᏒ ᎤᎧᎵᏦᏅᎩ ᎤᎵᏏᎩ; ᏓᏂᏃᏓᏛᏃ ᏚᏂᎩᏍᏙᎥᎩ ᏚᏁᎯᏍᏓᏁᎲ ᎢᏳᏍᏗ,\nᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏍᎦᏯᏍᎪ ᏗᏩᎾᎨ ᏧᏄᏩᎢ? ᎬᏂᏳᏉ ᏗᏩᎾᎨ ᏧᎾᏄᏩᎢ ᎤᏂᎬᏫᏳᎯ ᏓᏂᏁᎸ ᎠᏁᎰᎢ.\nᎤᎾᏰᎯᏍᏗ ᏕᎬᎦᏆᏂᏍᎨ Ross ᏃᎴ Ridge, ᏂᏛᏓᎴᏂᏍᎬ ᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ ᎠᏁᎯ ᎠᏂᏴᏫᏯ ᏕᏥᏍᏕᎵᏍᎬ, ᎠᏆᏁᎸᏓᎾ ᎣᎦᎵᎪᏗ ᎣᏥᏰᎵᏒ, ᎢᏧᎳ ᎠᏂᏍᎦᏯ ᎬᏇᏯᏔᏅ ᏤᏍᏗ ᏌᏬᏛᎭ ᎠᎹ ᏱᏂᏨᏁᎴᏍᏗ ᎤᏍᏗ ᎠᎦᏎᏍᏙᏗ ᎯᏰᎵᏒ.\nᎯᎠ ᏥᏄᏪᏎᎢ, ᏕᏣᏙᎥ ᎬᏂᎨᏒ ᏅᏓᎦᏥᏴᏁᎵ ᎣᏣᎵᏅᏟ; ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏰᎵ ᏙᏓᎬᏃᎩᏍᏔᏂ.\nᏦᏩ ᎠᎵᎹᏗᏱ ᎡᎯ ᎠᏥᎸᏉᏗ ᏗᎦᎳᏫᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎠᎦᏘᏰ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎷᎯᏍᏗᏱ, ᎾᏍᎩ ᎤᎷᏤᎢ, ᎠᎴ ᎾᏍᎦᎢᎲᎾ ᏭᏴᎴ ᏆᎴᏗᏱ, ᎠᎴ ᎤᏔᏲᎴ ᏥᏌ ᎠᏰᎸᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᏠᎨᏏ ᎩᎬ ᎤᎶᎨᏒ ᎠᏃᏎᎭ ᎪᎯ ᏥᎩ.\nᏗᏓᏬᏍᏗ ᎨᏒ ᏗᏕᏲᏅᎯ ᎤᎬᏩᎵ, ᎠᎴ ᏗᏓᏏᏔᏗᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏧᏂᏲᎱᏒᎯ ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏗᎫᎪᏙᏗ ᎨᏒ ᎤᎬᏩᎵ.\nᎠᎴ ᎤᏓᏔᏅᎯ ᎾᏍᎩ ᏣᏓᏅᏙ ᏧᎬᎥᏍᎬᎩ ᏣᏓᏅᎡᎸ, ᎠᎴ ᏂᎦᎥ ᎤᏢᏉᏗ ᎠᎴ ᏗᎦᎸᏉᏗ ᏥᎨᏒ ᎨᏣᏓᏅᎡᎸ, ᎠᎴ ᎥᏝ ᎿᏉ ᏫᏗᎨᏣᏩᏛᏗ ᏱᎨᏎᏍᏗ.\nᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎣᎦᏅᏔ ᎾᏍᎩ Ꮎ ᎠᏓᎶᏄᎮᏍᎩ, ᎠᏏᏉ ᏥᎬᏅᎩ, ᎯᎠ ᏥᏄᏪᏒᎩ; ᏦᎢᏁᏉ ᎢᎦ ᏙᏛᎦᎴᏂ.\nᎤᏬᏂᏌ ᎡᏝᏪᎯ ᏄᏪᏎᎢ, ᎨᏍᏗ ᎣᏍᏓ ᏳᏛᎦᎾ ᏂᎦᏪᏍᎬ ᏫᎵᎻ.\nᎦᏄᎸ ᏗᏗᏂᏃᎩᏍᎨᎢ ᏔᎳᏚ.\nᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏛᎩᏍᎩ ᏥᏁᎬᎢ, ᎠᎴ ᎪᎯᏳᎲᏍᎩ ᏅᏛᎩᏅᏏᏛ ᎾᏍᎩ ᎤᎭ ᎬᏂᏛ ᎾᎵᏍᏆᏗᏍᎬᎾ, ᎠᎴ ᎾᏍᎩ ᎥᏝ ᏧᏚᎪᏙᏗ ᏱᎩ ᎤᏍᎦᏅᏨᎢ, ᎠᏲᎱᎯᏍᏗᏍᎩᏂ ᎨᏒ ᎤᏓᏅᏒ, ᎬᏂᏛ ᏗᎨᏒ ᏬᎶᏒ.\nᎾᏍᎩ ᏧᏍᎩᏃ.\nᎾᎦᏛᏍᎪ ᏧᎾᏓᏅᏬᏗᏱ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ? ᏂᎦᏛᏍᎪ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏓᏂᏬᏂᎭ? ᏂᎦᏛᏍᎪ ᎠᎾᏁᏢᏗᎭ?\nᎾᏍᎩ ᎦᎸᎳᏗ ᏭᎶᏒ ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎠᎦᏘᏏᏗᏢ ᏭᏬᎳ, ᏗᏂᎧᎿᏩᏗᏙᎯᏂ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᏗᎬᏩᏁᎶᏗ ᏄᎵᏍᏔᏅ.\n“ᎭᏂ ᎦᎸᎳᏗᏣ.”\nᎾᏍᎩ ᏧᏴᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎠᎴ ᏧᎩᏎ ᎠᎴ ᏧᎨ ᎦᏚ ᎠᎦᎩᏗ, ᎠᎴ ᎾᏍᏉ ᏥᏚᏁᎴ ᎾᏍᎩ ᏣᏁᎮᎢ; ᎾᏍᎩ ᏂᎦᏳᎪᏛᎾ ᏥᎩ ᎩᎶ ᎤᎩᏍᏗᏱ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏅᏒ.\nᏙᎩᎵᏂᎲᎢ, ᎣᎩᏴᎩᏅᎢ, ᎤᏓᏓᏍᎨᏛ ᎤᎾᎵᏖᎸᏅᎢ, ᏙᎩᎸᏫᏍᏓᏁᎲᎢ, ᎣᏥᏯᏫᏍᎬᎢ, ᎠᎹᏟ ᎣᏨᏍᎬᎢ,\nᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎡᏆᎭᎻ ᎣᎩᏙᏓ. ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᏂᎯ ᎡᏆᎭᎻ ᏧᏪᏥ ᏱᎩ, ᎡᏆᎭᎻ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏱᏗᏥᎸᏫᏍᏓᏁᎭ.\nᏕᏥᎧᎿᏩᏛᎡᎲ ᎤᎬᏫᏳᎯ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏆᎵᏍᎦᏍᏛᎾ ᎨᏒᎢ, ᎠᎴ ᏕᏥᎦᏌᏬᎢᎲᎢ, ᎠᎴ ᎠᎩᎪᎵᏰᏍᎩ ᎠᏆᎵᏩᏛᎡᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏂᏧᏏ ᎪᎱᏍᏗ ᎬᏋᏁᏗᏱ ᏚᏄᎪᏔᏅᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᏉ ᏕᎤᏲᏎ ᎦᏓᎭ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎤᏅᏙᏗᏱ ᎤᏅᏒ ᏧᏂᏐᏢᎢᏍᏙᏗᏱ ᏗᏂᏰᎸ ᎤᏅᏒᏉ ᏂᏓᎾᏓᏛᏁᎲᎢ;\nᎾᎯᏳ ᎡᎶᏛ ᎤᎬᏫᏳᎯ ᎨᏎ ᏧᏗᏱ, ᎩᎶ ᎢᏳᏍᏗ ᎡᎮ ᎠᏥᎸ-ᎨᎶᎯ ᏤᎦᎳᏯ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎡᏆᏯ ᎠᎦᏘᏅᏔᏅ ᎨᎳ ᎨᏎᎢ, ᎤᏓᎵᎢᏃ ᎡᎳᏂ ᏧᏪᏥᏛᎯ ᎨᏒ ᎤᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ, ᎠᎴ ᎵᏏ ᏚᏙᎡᎢ.\nᎠᏎᏃ ᎤᏉᏌᏁ ᎢᎸᏍᎩ ᎢᎪᎯᏛ; ᎣᏂᏍᎩᏂ ᎯᎠ ᏂᎤᏪᏎ ᎤᏩᏒ ᏧᏓᏅᏛᎢ, ᏞᏍᎩᏂᏃᏅ ᏱᏥᎾᏰᏍᎦ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎥᏝ ᏱᏗᏥᏯᏁᎶᏗ ᏴᏫ;\nᎡᏙᏓ ᎠᎩᎨᏳᎯᏳ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏨᎨᏳᎢᏳ ᏂᎯ. ᏅᏩᏍᏗᏗᏎᏍᏗᏉ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎤᏬᎵᏨ ᏈᏓ ᎦᏬᏂᏍᎬᎢ ᎣᏒ ᎤᏰᎸᏒ ᏅᏓᎵᏍᏙᏔᏁ ᏄᏍᏚᎢᏒᎾᏉ ᎨᏎ ᎦᎶᎯᏍᏗᏱ, ᏚᏍᏆᎸᏔᏁᏉ ᏭᏴᎴᎢ ᎠᎴ ᏭᏃᏁ ᏈᏓ ᎦᏙᎬ ᎦᎶᎯᏍᏗᏳᎶᏗ.\nᏥᏌᏃ ᎤᏁᏟ ᎯᎠ ᏂᏑᏪᏎᎴᎢ, ᏏᏌ ᎡᏣᎫᏴᏏ ᏏᏌ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏃ ᎤᏄᎳᏅᎯ ᎤᏤᎵᎦ. ᎢᎬᏩᏍᏆᏂᎪᏎᎴᏃ.\nᎤᎵᎮᎵᏍᏗ ᎤᏓᏅᏖᎢ.\nᎠᎴ ᎤᎾᎴᏅᎮ ᎠᏂᏲᎵᎮᎢ, ᎢᏨᏲᎵᎦ, ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ, ᎠᎾᏗᏍᎨᎢ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏨᏃᎮᎮᎭ, ᎾᏍᎩ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏱᎬᏗ ᏱᎦᏬᏂᎭ, ᏥᏌ ᎠᏥᏍᎩᏅᏛᎯ ᎥᏝ ᏰᎵ ᏴᎬᏛ; ᎥᏝ ᎠᎴ ᎩᎶ ᏥᏌ ᎤᎬᏫᏳᎯ ᏴᎬᏛ, ᎬᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏱᎬᏗᎭ.\n“ᎯᎠ ᏭᎶᏒᏍᏛ ᏭᏲᎢᏴ ᎠᏆᏛᎦᏅᎯ.” \nᎠᏴ ᏉᎳ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎬᎩᏁᏤᎸᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎩ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎢᎦᏤᎵᎦ,\nᎾᎯᏳᎮᏃ ᏥᎨᏒ ᎤᏟ ᎢᎦ ᎡᎳᏗᏊ ᎣᏤᏙᎯ ᎨᏒ ᎢᎸᏢ ᏲᎨᎾ.\nᎠᏴᏃ ᏃᏊ ᎠᎩᏍᎦᏍᏓᏁᎲ ᎤᎴᏅᎲ.\nᎠᎩᎦᏛᏅᏒ ᏄᏛᎾᏕᎬ ᎠᏌᎻᏓ, ᎤᏩᏌ ᎤᏬᏛ.\nᎧᏅᏂᏍᎩ ᎡᎲᎢ ᎠᏎ ᎤᏦᏍᏗ ᎨᏐᎢ, ᏂᎦᎥ ᏗᏌᏛᏗ ᏃᎴ ᏛᎦ ᏗᎦᏯᎩᏍᏗ.\nᏃᏗ ᎤᎷᏤ ᎰᎻ ᎡᏝᏪᎯ ᎨᏒ ᏑᎾᎴᎢ, ᏧᏴᏨ ᎢᏣ ᎦᎶᎯᏍᏗ ᎤᏍᏚᎩᏎ.\nᎠᎬᏱ ᎤᏕᏃᏅ ᏫᎵᎻ, ᎧᏁᏌᎢ ᎡᎮ ᎠᏓᏍᏓᏴᏗ ᎾᎥᏂ.\nᏥᏌᏃ ᏧᏂᏦᏯᏍᏗ ᎤᏁᎩᏒ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉ ᎠᎵᏍᏆᏓ; ᎤᎵᏍᎫᏫᏒᏃ ᏕᎤᏲᏒᎩ ᎤᏓᏅᏙ.\nᎠᎴ ᎣᎦᏛᏅᎢᏍᏗ ᏦᏥᏍᏛᏗᏍᏙᏗᏱ ᎾᏂᎥ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ, ᎾᎯᏳ ᎢᏦᎯᏳᏒ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ.\n”ᎣᏍᏓᏗ ᎨᏎᎢ!”  \nᎠᏂᏫᎾ ᎠᏂᎳᎨᏴ ᏗᎫᏩᎭᏄᏫ ᏧᏐᏴᎭ ᏃᎴ ᎦᏌᎴᏅ, ᏗᎦᏓᏁ ᎢᏗᎦᎵᏍᏗᏍᎩ ᏱᎨᏒᎾ, ᏩᏚᎵᏏ ᎤᏃᏒᏅ ᏧᏂᏅᎵᏰᏛ.\nᎩᎶ ᎤᏓᏅᏖᏗ ᎨᏎᏍᏗ.\nᎬᏩᎾᏝᎢᏃ ᎤᎾᏙᎴᎰᏒ ᎤᏚᎩ ᎤᏅᏒ ᏧᎬᏩᎶᏗ ᎤᏂᏩᏛᏗᏱ ᎤᏲᏨᎢ, ᏗᏂᏂᏴᎲᎩ ᏉᎳ ᎠᎴ ᏌᏱᎳ, ᎠᎴ ᎾᏍᎩ ᎦᏃᏙᏗᏱ ᏫᏚᎾᏘᏃᎮᎸᎩ ᏗᎨᎦᏁᎶᏗ.\nᏣᏂᏃ ᎤᏂᎵᏤᎸᎩ, ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎾᏍᎩ ᎾᏥᏍᏕᏙᎲᎩ ᏦᏓᏂ ᏍᎪᏂᏗᏢ, ᎾᏍᎩ ᏥᏃᎮᏍᎬᎩ, ᎬᏂᏳᏉ ᎾᏍᎩ ᏓᏓᏬᎠ, ᎠᎴ ᏂᎦᏛᏉ ᎬᏩᎷᏤᎭ.\nᎠᏍᎪᎯᏃ ᏕᎤᎷᎬ ᏥᏕᏣᎪᎲᎩ, ᎾᏍᎩ ᎠᏍᎪᎯ ᎤᏂᎬᏫᏳᎯ ᎦᏛᎦ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎢᏳᎾᎵᏍᏙᏗᏱ ᎨᏒ ᎠᏏ ᎨᏥᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎨᎦᎵᏍᎪᎸᏓᏁᎭᏍᎩᏂᏃᏅ ᎤᏂᎬᏫᏳᎯ ᎤᏂᏁᎢᏍᏗ ᎨᏒ ᎤᏂᏁᎢᏍᏗᏱ ᏌᏉ ᎢᏳᏟᎶᏛ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏠᏱ ᎧᏁᎬᎢ.\n“ᎤᎸᏕᎦ.\nᎦᎪ ᏂᎯ ᏂᏣᏛᏅᎢ ᎤᏓᏑᏯ ᎠᏏᎾᏌᏂ ᎠᎴ ᎠᎦᏔᏂᎢ? ᎾᏍᎩ ᏫᎦᎾᏄᎪᏩ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ ᏫᎬᏙᏓ ᎣᏏᏳ ᎾᏛᏁᎲᎢ, ᎠᎴ ᏫᎬᏙᏓ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᏔᎵ ᎤᏛᏕᏍᏗ ᎤᏓᏅᏘ ᎨᏒᎢ.\nᎧ, ᏔᎴᎲᎦ, ᎭᏠᎠᎯ, ᎠᎴ ᏘᏍᏓᏩᏚᎦ ᎪᎱᏍᏗ ᏂᏗᏣᏢᏫᏎᎲᎾ, ᎠᏴᏰᏃ ᏗᏥᏅᏏᏛ.\nᎢᏥᎲᏒᏰᏃ ᎦᎵᏦᏙᏗ ᎼᎳᎩ ᎤᏤᎵᎦ ᎠᎴ ᎤᏁᎳᏅᎯ ᎢᏥᏰᎸᎯ ᎴᎻᏈᏂ ᎤᏤᎵᎦ ᏃᏈᏏ, ᏗᏟᎶᏍᏔᏅᎯ ᎾᏍᎩ ᏗᏦᏢᏅᎯ ᏗᏣᏓᏙᎵᏍᏓᏁᏗ; ᏓᏗᎶᏂᏃ ᎤᏗᏗᏢ ᏫᏙᏓᏨᏯᎧᏂ.\nᎾᎯᏳ ᎡᎶᏛ ᎤᎬᏫᏳᎯ ᎤᎴᏅᎮ ᏚᏕᏯᏙᏔᏁ ᎢᎦᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ.\nᎠᎹ ᎨᏴ ᏭᎶᏒ.\n“ᎾᏍᎩᎩ!” ᎤᏛᏁ, ᎤᏲ ᎤᏰᎸᎯ.\nᎧᏁᏍᎬ ᎤᎾᏏᏁ ᏧᏍᏆᏴᏍᏗ.\nᏣᏉᎩ ᎣᏍᏓ ᎠᎩᏰᎸᏍᎩ ᏱᎩ ᎠᏆᏛᏅ.\nᏗᎩᎦᏴᎵᎨᎢ ᎹᎾ ᎠᎾᎵᏍᏓᏴᏗᏍᎬᎩ ᎢᎾᎨᎢ, ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ; ᏕᎠᏁᎲᎩ ᎦᏚ ᎤᏂᎩᏍᏗ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ.\nᎿᏉᏃ ᎤᎾᏓᏅᏘ ᎬᏩᏂᏔᎷᎩᏍᎩ ᎨᏎᏍᏗ ᎤᏂᏙᏓ ᎤᏤᎵᎪᎯ, ᏅᏙ ᎾᏍᎩᏯᎢ. ᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ.\nᏥᏌᏃ ᏔᎵᏁ ᏥᏳᎯ ᏙᎤᏪᏐᏨ ᎢᏍᎪᎾ ᏫᎤᎷᏨ, ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏓᏡᏫᏍᏔᏁᎢ; ᎠᎴ ᎥᏓᎵ ᎤᎶᏗ ᎡᏙᎮᎢ.\nᏱᏗᏙᏪᎵ ᎤᏝᏂᎩᏓ ᏱᏂᎬᎦ.\nᎦᏙᏃ Ꮭ ᏗᏍᏆᏂᎪᏙᏗᏱ ᏱᏫᏙᏣᏁ ᏗᏆᏤᎵ ᎠᏕᏄ, ᎠᎩᎷᏥᎸᏃ ᏗᏆᏤᎵ ᎠᎴ ᎤᏂᏁᏉᏨᎯ ᏱᏓᎩᎩᏎᎢ.\nᏚᏟᎶᏍᏓᏁᎴᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎤᏪᎿᎢ ᎠᏍᎦᏯ ᎤᎶᎨᏒ ᎤᏣᏘ ᎤᏛᏒᏁᎴᎢ;\nᏞᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏱᏣᏲᏍᏔᏁᏍᏗ ᎠᎵᏍᏓᏴᏗᏉ ᏱᏅᏧᎵᏍᏙᏔᏁᏍᏗ. ᏄᏓᎴᏒᏰᏃ ᎪᎱᏍᏗ ᎤᏙᎯᏳᎯ ᎦᏓᎭ ᏂᎨᏒᎾ; ᎤᏲᏍᎩᏂ ᎾᏛᏁᎰ ᎾᏍᎩ Ꮎ ᏴᏫ ᎠᎵᏍᏓᏴᎲᏍᎬ ᎩᎶ ᏱᏗᎪᏕᏍᏗᎭ.\nᎠᎴ ᎯᎠᏉ ᎾᏍᏉ ᎤᏅᏒ ᏳᏂᏃᎮᎸ, ᎢᏳᏃ ᎤᏲ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎤᏂᏩᏛᏛ ᏱᎩ ᏕᎦᎳᏫᎥ ᏥᏙᎬᎢ,\nᎠᏥᎸᏳᎸᏗ ᎾᎥ ᏙᎩᎾᏅ ᎠᏆᏛᎦᏍᏔᏅ ᎧᏃᎮᏍᎬ.\nᎲᎦ ᎢᏳᏓᏅᎯᏓ ᏫᎦᎶᎯᏍᏗ?\nᎥᏝᏰᏃ ᏱᏚᎾᏓᎴᎾᎠ ᎠᏂᏧᏏ ᎠᏃ ᎠᏂᎪᎢ; ᎾᏍᎩᏉᏰᏃ ᎤᎬᏫᏳᎯ ᎾᏂᎥ ᎤᎾᏤᎵᎦ ᎤᏣᏘ ᎤᏪᎿᎢᏳ ᏧᏍᏕᎸᏗᏱ ᎾᏂᎥᎬᏩᏓᏙᎵᏍᏓᏁᎯ.\nᎠᏎᏃ ᏈᏓ ᎠᎴ ᏣᏂ ᎤᏂᏁᏨ ᎯᎠ ᏂᏚᏂᏪᏎᎴᎢ; ᎢᏳᏃ ᏚᏳᎪᏕᏍᏗ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏂᏍᎬᎢ ᏂᎯ ᎤᏟ ᎢᎦᎢ ᎢᏨᏯᏛᏓᏍᏓᏁᏗᏱ ᎡᏍᎦᏉ ᎤᏁᎳᏅᎯ, ᏗᏧᎪᏓ ᏂᎯ.\n“ᏌᎳᏓ, ᏙᎢᏳᏍᏗ ᏫᏣᏍᏕᎵᏛᎢ? ᎤᏛᏛᏁ ᏫᎵᎻ.\nᎿᏉᏃ ᎠᏏᏴᏫ ᏥᏌ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏧᏙᎢᏛ, ᏌᏩᏂ ᎤᏪᏥ, ᎾᏍᎩ ᎤᏡᏗᏍᏍᎩ ᎢᏳᎵᏍᏙᏗ, ᎯᎠ ᏄᏪᏒᎩ;\nᎦᏙᎨ ᎤᏍᏗ ᎤᏟ ᎠᎯᏗᏳ ᎧᏁᎢᏍᏗᏱ, ᏥᎪ ᎯᎠ ᏱᎾᎦᏪᎠ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ? ᎯᎠᎨ ᏱᎾᎦᏪᎠ, ᏔᎴᎲᎦ ᎠᎴ ᎨᏓ?\nᎩᎶᏃ ᏌᏉ ᎯᎠ ᏧᎾᏍᏗ ᎨᏒᎢ ᎤᎵᏍᏈᏗᏉ ᎠᎧᎵᎢ ᎤᏴᏜ ᎠᎹ ᎠᎱᎥᏍᎨᏍᏗ ᎠᎩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎤᏙᎯᏳᎯᏯ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎾᏍᎩ ᎤᏲᎱᏎᏗ ᏱᎨᏎᏍᏗ ᎠᎦᎫᏴᎡᏗ ᎨᏒᎢ.\nᏂᎦᎥᏍᎩᏂ ᏧᏓᎴᏅᏛ ᏗᎬᏍᎪᎸᏅᎯ ᏥᎨᏐ ᎢᎦ-ᎦᏘ ᎬᏗ ᎬᏂᎨᎡ ᎢᏗᎬᏁᎸᎯ ᎨᏐᎢ; ᎾᏍᎩᏰᏃ ᎬᏂᎨᏒ ᎢᏗᎬᏁᎯ ᎨᏒ ᎾᏍᎩ ᎢᎦ-ᎦᏘ.\nᏈᏓᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏂᏥᎥ ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᏫᏕᏣᏬᏣ, ᏥᏌ ᎦᎶᏁᏛ ᏕᎤᏙᏍᏛᎢ, ᎡᏥᏙᎵᏍᏗᏱ ᎢᏥᏍᎦᏅᏨᎢ;; ᎦᎸᏉᏗᏳᏃ ᎠᏓᏅᏙ ᏓᏰᏥᏁᎵ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏱᏍᏆᏓᏙᎵᏍᏓᏁᎸ, ᏂᎦᏗᏳ ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ.\nᎤᏂᎳᏅᎯ ᎤᏩᏒᎯᏳ ᎠᎦᏔᎾᎢ ᏥᎩ, ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ.\n“ᎮᎵᎠᏍᎪ ᏄᏓᎴ ᎠᏓᏅᏖᏍᎨᏍᏗ ᎤᎵᏗᏣ ᏏᏆ ᏃᎴ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᏃᎴ ᎧᏅᏂᏍᎩ?”\n“ᏛᎦ ᏕᎯᏯᎩᏍᎪ?” ᎭᏫᏂ ᏓᏳᏓᎴᏅ ᎤᏛᎴᎮ ᏫᎵᎻ.\nᏣᎵ ᏃᎴ ᎤᎵᏘᎾᎥ ᎤᎾᎵᏓᎩᏎ ᎾᏍᎩᏯ ᎨᏥᏌᎭᏙᎭᏴ ᎠᏫ ᎠᎴ ᏇᎯ ᎤᎾᏟᏫᏛᏗ ᎠᏂᏃᎯᎵᏙ ᎢᏣ.\nᎤᏁᏨᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᏓᏰᏍᎩ ᎤᏢᎬ ᎤᎵᏛᏔᏁᎢ, ᎠᎴ ᎤᏓᏅᎦᎸᏛ ᎨᏎᎢ.\nᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎵᏓᏍᏗᎭ ᏂᏥᎦᏔᎥᎾ ᎨᏒ ᎢᏳᏍᏗ ᏄᏍᏛ ᎪᏪᎸᎢ, ᎠᎴ ᏄᎵᏂᎬᎬ ᎤᏁᎳᏅᎯ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏂᏲᏎ ᏗᎦᏯᎷᏗ ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᏂᏚᎩᏨᏂᏒᏃ ᏌᏉ ᎢᎦᎦᏛ ᎠᏁᏙᎮ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎦᏚ ᎠᏂᎬᎭᎷᏯᏍᎨ ᏓᏓᏁᎳᏗᏒᎢ, ᏓᎾᎵᏍᏓᏴᎲᏍᎨ ᎠᎾᎵᎮᎵᎨ ᎠᎴ ᎤᏠᎾᏍᏗ ᏄᏓᏑᏴᎾ ᎨᏎ ᏧᏂᎾᏫᏱ,\nᏙᎩᎾᏦᏒ ᏂᎦᏓ ᎠᏃᎵᎩ ᎠᏛᏁᎵᏍᎩ Mrs. Chapman ᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᏧᏴᏨᏗᏣ ᏓᏳᎶᏒ ᏗᎦᎳᏫᎩ ᏧᏪᏅᏒ, ᎤᏍᏗ ᎤᎵᏏᎩ ᎠᏍᎦᏯ, ᎦᏲᏟ ᎤᏍᏘᏰᎩ ᏃᎴ ᎦᏲᏟ ᎤᏁᎷᎯ.\nᎾᏍᎩ ᎠᏆᏕᎶᎰᏌ, ᎠᎩᏁᎢᏍᏔᏅ ᎣᏍᏔᎵᏍᏔᏴᎲᏍᎬ.\nᎠᎴ ᎯᎦᏔᎭ ᏄᏍᏛ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎯᎪᏩᏘᎭ ᏧᏓᎴᏅᏛ ᏧᏓᎴᎿᎢ ᎨᏒᎢ, ᎠᎴ ᎯᎪᏩᏘᎭ ᏧᏓᎴᏅᏛ ᏧᏓᎴᎿᎢ ᎨᏒᎢ, ᎡᏤᏲᏅᎯ ᏗᎧᎿᏩᏛᏍᏗᏱ;\nᏝᏍᎪ ᏲᎯᏳᎲᏍᎦ ᎠᏴ ᎠᎦᏴᎵᎨᎢ ᏥᏯᎥᎢ, ᎠᎴ ᎠᎦᏴᎵᎨ ᎠᏴ ᎠᎩᏯᎥᎢ? ᎧᏃᎮᏛ ᏥᏨᏃᎮᎮᎰᎢ, ᎥᏝ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᏱᏥᏁᎪᎢ, ᎠᎦᏴᎵᎨᎢᏍᎩᏂ ᏣᎩᏯᎠ ᎾᏍᎩ ᏚᎸᏫᏍᏓᏁᎰᎢ.\n“ᎨᏍᏗᏃ ᎣᏍᏓ ᎠᎩᏰᎸᎯ ᏱᎩ ᎤᏲ ᎧᏃᎮᏓ ᎠᏆᏗᎦᎴᏲᏗ,” ᎤᏛᏁ ᎤᏃᏕᎾ, ”ᎠᏎᏃ ᎯᎳᏦᎯᏓ ᏂᎨᏨᏁ, ᏓᎨᏣᎵᏰᏃ, ᏍᎩᏃ ᎢᏳᏍᏗ.”\nᎠᎴ ᎦᎪ ᎠᏍᏛᎩ ᎨᏒ ᏮᏓᎦᎶᏏ? (ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏧᎴᏙᏗᏱ;)\nᎯᏬᏂᏍᎬ ᎣᏍᏛ ᏱᎩ ᎾᏍᎩ ᎬᎪᏁᎶᎯᏍᏗ ᏂᎨᏒᎾ; ᎾᏍᎩ Ꮎ ᏣᏡᏗᏍᎩ ᎬᏩᏕᎰᎯᏍᏗ ᏱᎩ ᏄᎲᏅ ᎨᏒ ᎢᏳᏍᏗ ᎪᎱᏍᏗ ᎤᏐᏅ ᎶᏃᎮᏗᏱ.\nᏙᎢᏳᏍᏗ ᎠᎵᏍᏆᏙᏗ ᎧᏃᎮ?\nᏂᎯ ᎾᏍᏉ ᏍᎩᏍᏕᎵᏍᎬ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎣᎩᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᎣᎩᏙᎵᏨ ᎤᏂᏣᏘ ᎢᏳᏅᏂᏌᏛ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎤᏂᏣᏘ ᎤᎾᎵᎮᎵᏤᏗᏱ [ᎤᏁᎳᏅᎯ] ᎠᏴ ᎨᏒ ᎢᏳᏍᏗ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᏃᏯ, ᎤᏁᎳᏅᎯ ᎤᏪᏯᏔᏅ ᎤᏁᎢᏍᏓᏁᎸ ᏧᏓᎴᏅᏛ ᎠᏏ ᎤᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎤᎾᏰᏎᎢ, ᎤᏛᏅᎢᏍᏔᏁ ᏥᏳ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏚᏓᏘᎾᎥᎢ; ᎾᏍᎩ ᏄᏛᏁᎸ ᎤᏮᏔᏁ ᏚᏭᎪᏓᏁᎴ ᎡᎶᎯ, ᎠᎴ ᎤᏤᎵ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᎪᎯᏳᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ.\nᏃᏗ ᎤᏍᏆᎸ ᎤᏓᏏᏂᏕᎾ ᎠᎵᏍᏓᏴᏗ ᎤᏪᎵᏎ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎯᎸ ᎤᏪᏅᏍᏗ.\nᎠᎴ ᎤᎩᏨᏛ, ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎤᎶᏐᏅᎯ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏆᎵᏏ ᏕᎬᏩᎳᏫᏤ ᏆᎴᏗ,\nᎠᎻᏟᏯ ᎡᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᏥᎨᏳᎢ ᎢᏧᎳᎭ ᎣᏍᏙᎯᏳᎲᏍᎩ ᎤᎬᏫᏳᎯ.\nᏍᏉᏰᏃ ᎤᎾᎵᏍᏔᏴᏗ ᎧᏅᏂᏍᎩ ᎤᏐᏱ ᏫᎬᎬᏛᎢ.”\nᎦᎸᎶ ᎠᎴ ᎡᎶᎯ ᏙᏓᎦᎶᏐᏂ, ᎠᏴᏍᎩᏂ ᎠᎩᏁᏨᎢ ᎥᏝ ᏴᏓᎦᎶᏐᏂ.\n“ᏍᎩᎾᎾ ᏥᏍᏕᏥ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏆᏏᏗᏱᏃ ᎤᏂᎶᏐᏅ ᏆᎻᏈᎵᏱ ᏭᏂᎷᏤᎢ.\nᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏥᎪᎥᎩ, ᎡᎲᎩ, ᎠᎴ ᎥᏝ ᏰᎭ; ᎠᎴ ᏙᏛᎴᏂ ᏫᎾᏍᏛᎾ ᏗᏔᎴᏒ ᏓᎦᏄᎪᏥ, ᎠᎴ ᎠᏥᏛᏙᏗᏱ ᏴᏓᎦᎶᏏ, ᎾᏍᎩᏃ Ꮎ ᎡᎶᎯ ᎠᏁᎯ ᎾᏍᎩ ᏚᎾᏙᎥ ᏂᏗᎪᏪᎳᏅ ᎾᎬᏂᏛ ᎪᏪᎵᎯ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᎴᏅᏛ ᏛᏂᏍᏆᏂᎪᏏ ᎠᏂᎪᎲᎭ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᏍᎩ ᏤᎲᎩ, ᎠᎴ ᏁᎲᎾ ᏥᎩ, ᎠᏎᏃ ᎾᏍᎩ ᏤᎭ.\nᎣᏏᏳᏃ ᎢᏣᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᎥᏝᏰᏃ ᏴᎦᎨᏣᎫᏴᏏ; ᎡᏣᎫᏴᎡᏗᏰᏃ ᎨᏎᏍᏗ ᏓᎾᎴᎯᏌᏅ ᎤᎾᏓᏅᏘ.\nᏃᎴ, ᎤᏓᏅᏖᏗᏍᎬ ᎤᎯᏐᏓᏁᎲ ᎣᏍᏓ ᏱᎨᏒᎾ ᎨᏒ ᎠᏂᏁᎸ ᏎᎳ ᏃᎴ ᎤᏲ ᎤᎾᏓᏅᏛ ᏧᎸᎢ, ᎢᏧᎳ ᏓᏰᎵᏒ, ᎠᎵᏙᎩᏯᏍᏗ ᏃᎴ ᎠᏓᎸᏉᏗ, ᏚᎾᎵᎪᎲ, ᎢᏧᎳ ᎠᏁᎸᏗᏍᎬ ᎣᏍᏓ ᎢᏳᏩᏁᏗ ᎡᎶ ᎤᏲ ᎢᏳᎵᏍᏔᏅ.\nᎢᏳᏃ ᎡᏥᎩᎵᏲᎢᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᏧᏪᏥ ᏂᏓᏛᏁᎲ ᏂᏣᏛᏁᎭ ᎤᏁᎳᏅᎯ; ᎦᎪᏰᏃ ᎡᎭ ᎠᏲᎵ ᎾᏍᎩ ᎤᏙᏓ ᏄᎩᎵᏲᎢᏍᏗᏍᎬᎾ?\nᎦᏅᏅᏃ ᎠᎾᎢᏎ ᏥᎷᏏᎵᎻ ᏣᏂᎦᏖᎢ; ᏥᏌᏃ ᎢᎬᏱ ᏚᏪᏅᎡᎴᎢ; ᎤᏂᏍᏆᏂᎪᏎᏃ; ᎾᏍᎩᏃ ᎠᎾᎵᏍᏓᏩᏗᏒ ᎠᏂᏍᎦᎢᎮᎢ. ᏔᎵᏁᏃ ᏚᏯᏅᎲ ᏔᎳᏚ ᎢᏯᏂᏛ, ᎤᎴᏅᎮ ᏚᏃᏁᎴ ᎾᏍᎩ ᎢᏳᎵᏍᏓᏁᎵᏓᏍᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᏧᎵᏂᎪᎯᏍᏙᏗᏱ ᏗᏥᎾᏫ, ᎾᏍᎩ ᎦᏰᏧᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎾᏍᎩ ᎢᎩᏙᏓ, ᎾᎯᏳ ᎦᎷᏨᎭ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎠᏁᎮᏍᏗ ᏂᎦᏗᏳ ᎤᎾᏓᏅᏘ ᏧᏤᎵᎦ.\nᎩᎳᏊᏃ ᎢᏴᏓ ᎦᏌᏆᎸ ᎠᏓᏪᎳᎩᏍᎩ ᎠᎳᏍᎦᎸᏗ ᎢᎩᏓ ᏭᎵᏌᎳᏓᏅ ᎦᎸᎶ ᎢᏗᏢ ᎠᎴ ᎢᎸᏍᎩᏊ ᎢᎳᏏᏗ ᎢᏴ ᏭᏍᎪᎸᏨ.\n ᏃᎴ ᎧᎪ ᏂᎯ?”\nᎠᎴ ᎠᏤᎵᏍᏛ ᏗᎤᎾᏨᏎᎢ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏄᎵᏍᏔᏂᏙᎸ ᏚᏂᏃᏁᎴ ᏌᏚ ᎢᏯᏂᏛ, ᎠᎴ ᏂᎦᏛ ᎠᏂᏐᎢ.\nᎠᎴ ᏥᎦᏔᎭ, ᎾᏍᎩ ᎿᏉ ᏫᏨᎷᏤᎸᎭ ᏂᎦᎥ ᎣᏍᏛ ᎤᏓᏁᏗ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ ᏥᏰᎮᏍᏗ ᏫᏨᎷᏤᏗ ᎨᏎᏍᏗ.\nᎩᎳᏈᏴ ᏄᏓᎴ ᏭᏃᎮᎸ ᏣᎵ, ᏂᏕᎬᏁᎲ ᎾᏂᏏ ᏱᏚᏩᏰᏫᏌ ᏧᏑᎶ.\n”ᏙᏱ ᏫᎧᎲᎦ ᏍᎩᎾᎾᏂ!” ᎤᏛᏁ ᎠᎳᏂ.\n“ᏙᏕᏣᏙᎠ? ᎤᏓᏅᏘ ᎤᏓᏛᏛᏁ.\nXXII. ᎤᎦᏃᏩ ᏚᏃᏄᎥᏍᎬ  \nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏥᎩᏁᎭ ᎢᎦᏓᏎᎪᎩᏍᏗᏱ, ᏨᏗᏓᎴᎲᏍᎦ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎦᎪ ᏂᎯ, ᏣᎬᏫᏳᎯ? ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏴ ᏥᏌ ᎤᏲ ᏥᏂᏴᏁᎭ: ᎤᏕᏯᏙᏗᏳ ᏗᏣᎲᏖᏍᏗᏱ ᏗᎪᏍᏓᏯ.\nᏉᎳᏃ, ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏒ ᏄᏛᏁᎸᎩ, ᏚᏴᏎᎸᎩ, ᎠᎴ ᏦᎢ ᏄᎾᏙᏓᏆᏍᎬ ᎪᏪᎵ ᎬᏗᏍᎬ ᏕᎦᏬᏁᏗᏍᎬᎩ,\nᎾᎯᏳᏰᏃ ᎨᏒ ᏓᏣᎵᏰᎢᎶᎮᎵ, ᎾᏍᎩ ᎨᏣᏍᎦᎩ ᎨᏒ ᏙᏛᏁᎵᏍᎦᎸᎯ ᎬᏩᏚᏫᏛ, ᎠᎴ ᏙᏓᎨᏣᏚᏫᏍᏔᏂ, ᎠᎴ ᏅᎦᏘᏓᏂ ᎨᏣᎵᏍᏚᏕᏍᏗ.\nᎢᏳᏰᏃ ᏱᏙᎯᏳᎲᏍᎦ ᏥᏌ ᎤᏲᎱᏒᎢ, ᎠᎴ ᏚᎴᎯᏌᏅᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎾᏍᎩ Ꮎ ᏥᏌ ᎤᎾᎵᏍᎦᏍᏙᏔᏅᎯ ᎤᏂᎵᏅᏨᎯ ᎤᏁᎳᏅᎯ ᏧᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᏥᏌ ᎦᎷᏨᎭ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏕᎯᎪᏩᏗᏍᎪ ᎯᎠ ᎾᏍᎩ ᏤᏆ ᏓᏓᏁᎸᎢ? ᎥᏝ ᏌᏉ ᏅᏯ ᎧᏃᎯᏴᎯ ᏱᎨᏎᏍᏗ ᏱᏚᏓᏌᏝᎮᏍᏗ, ᎾᏍᎩ ᏂᎪᎲᏔᏅᎾ ᏱᎨᏎᏍᏗ.\n”ᏃᏥᎥ ᎣᎩᎸᏉᏗ.”\nᎠᏆᏓᏅᏖᏗ ᎨᏐᎢ, ᎢᏳᏍᏗᏉ ᏛᎦ, ᏍᎪᏯ ᏃᎴ ᎠᏂᏃᎯᎵᏙ ᏍᎪᏯ ᏗᏥᏂᏴᏗ ᎨᏐᎢ.\nᏚᏏᏔᏕᏃ; ᎠᎴ ᎩᎳᏉ ᎢᏴ-Ꮫ ᎦᏥᏃᏍᏛ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ.\nᎾᏍᎩ ᏧᏩᎫᏔᏅᏒ ᏂᏣᏍᏕᎵᏍᎬᎾ ᏥᎨᏒᎩ, ᎪᎯᏍᎩᏂ ᏥᎩ ᏣᏍᏕᎵᏍᎩ, ᎠᎴ ᎠᏴ ᎠᎩᏍᏕᎵᏍᎩ;\nᎢᎦᏓ ᏅᏬᏘ.\nᏝᏃ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏱᎦᎩ ᎯᎠ ᏥᏚᏟᎶᏍᏗ ᎠᎴ ᏥᏚᏬᏪᎳ.\nᎤᏓᏏᏂᏕᏅ ᎠᎩᏩᏒᎬ ᏧᎦᏒᏍᏗ ᎤᎾᏓᏍᏔᏴᏗ ᏕᎪᏛ, ᏧᎵᏏᎦᏉ ᎠᏂᎾᎷᏍᎬ ᎠᏂᏍᎦᏰᎬᏍᏔ ᎠᏂᏁᎩᏏᏙ ᎤᎾᏗᏔᏍᏗ ᏃᎴ ᏧᎾᏟᏃᎮᏗ.\nᏉᎳᏃ ᎬᏩᏘᎿᏫᏛᏛ ᎡᏗᏂᏱ ᏫᎬᏩᏘᏃᎸᎩ; ᎠᎴ ᎾᏍᎩ ᎨᏥᏁᏤᎸ ᏌᏱᎳ ᏗᎹᏗᏃ ᎤᎾᏛᎪᏗ, ᏄᎵᏍᏛᏉ ᎬᏩᎷᏤᏗᏱ, ᎤᎾᏂᎩᏒᎩ.\nᎾᏍᎩ ᏄᏪᏒ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏌᏩᏂ ᎤᏪᏥ ᎠᏥᏛᎬᎩ; ᎾᏍᎩᏰᏃ ᎤᏡᏗᏍᎩ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎩ, ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ ᎾᎿ ᎨᎳ ᎨᏒᎩ.\nᎹᎵᏔᏃ ᎤᏓᏅᏒᎩ ᎡᏈᏌ ᏫᏚᏯᏅᎲᎩ ᏗᎨᎦᏁᎶᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ.\nᎬᏂᎨ ᎦᏌᎴᏅ ᎠᏆᎭᏄᏮ, ᎠᏆᏛᏍᏛ ᏓᎾᎵᎪᎲᏍᎬ ᎠᏆᏍᏚᎸ, ᎾᏍᎩᏯ ᎠᏆᏯᏨ ᎦᏚᎢᏣ ᎤᏁᎦ ᎠᏖᏍᏔᏅ ᎠᏆᎭᏄᏭ.\n“Ꭵ, ᎤᏙᎯᏳᎯ!\nᏔᎵᏁᏃ ᎤᎴᏅᎮ ᏚᏕᏲᏁ ᎥᏓᎷᎶᏗ; ᎤᏂᏣᏘᏃ ᎬᏩᏓᏡᏫᏍᏔᏁᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏳᎯ ᎤᏣᏁᎢ, ᎠᎴ ᎥᏓᎵ ᎠᏔᎸ ᎤᏪᏁᎢ; ᏂᎦᏛᏃ ᎤᏂᏣᏘ ᎨᏒ ᎥᏓᎷᎶᏗ ᏙᏱ ᎨᏒ ᎠᏂᏙᎾᎡᎢ.\n“ᎭᏩ,” ᎤᏛᏁ.\nᎤᎪᎲᏃ ᏥᏌ, ᎤᏪᎷᏁᎢ, ᎠᎴ ᎤᏓᏅᏁ ᎦᏙᎬ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎠᏍᏓᏯ ᎯᎠ ᏄᏪᏎᎢ; Ꭶ-Ꮩ Ꮧ-ᎩᎾᏓ-ᏛᏙᏗ, ᏥᏌ, ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏪᏥ? ᎬᏔᏲᏎᎭ ᏞᏍᏗ ᏍᎩᎩᎸᏅᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏭᏓᏔᏅᎯ ᏞᏍᏗ ᏴᏫ ᏧᎦᎴᏅᏔᏅᎩ.\nᏂᎯᏍᎩᏂ ᎾᏍᎩ ᏂᏥᏑᎵᎪᎬᎾ ᎢᎨᏙᎸᎯ ᎤᏲ ᎾᏆᎵᏍᏓᏁᎵᏙᎲᎢ;\nᎾᏃ ᎤᏍᏗ ᎠᏧᏣ ᎯᎠ ᎤᏥᏪᏎᎴᎢ, ᏂᎯᎾᎲ!\nᏃᎴ ᎡᎳᏆᏗ ᎣᏍᏓ ᎤᏰᎸᏁ ᎦᏓᏁ ᏄᎵᏍᏔᏅ, ᏃᎴ ᎤᏬᏨᏗ ᎠᏛᏁᎵᏍᎩ ᎢᏳᏍᏗ ᏄᏛᏁᎴ.\nᏣ ᎪᎰᏍᏗ, ᏥᏲᏎᎸ.\nᎩᎶ ᎢᏳᏍᏗ ᎤᏅᏒᏉ ᎠᏁᎲ ᎡᎯ, ᎠᏙᎴᎰᏍᎩ ᎤᏅᏒᏉ ᎤᎾᏤᎵᎦ, ᎯᎠ ᏄᏪᏎᎢ, ᏟᏗᏱ ᎠᏁᎯ ᎠᏂᏰᎪᎩ ᎨᏐ ᏂᎪᎯᎸᎢ, ᎤᏂᏲ ᎢᎾᎨ ᎠᏁᎯ, ᏧᏍᎦᏃᎸ ᏧᏂᏍᏉᎵᏱ.\nᏂᎯᏰᏃ, ᎢᏓᎵᏅᏟ, ᎡᏥᏯᏅᏛ ᎢᏣᏓᏤᎵ ᎢᏣᎵᏍᏙᏗᏱ; ᎠᏗᎾ ᏞᏍᏗ ᎾᏍᎩ ᎢᏣᏓᏤᎵ ᎨᏒ ᏱᏨᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏇᏓᎵ ᎤᏚᎸᎲᎥᏍᎬ ᎢᏣᏛᏁᏗᏱ ᏥᏥᎳᏅᏓᏕᎶ ᎾᏍᎩᏯᎢ; ᎠᏓᎨᏳᏗᏍᎩᏂ ᎢᏨᏗᏍᎬ ᎣᏍᏛ ᏂᏕᏣᏓᏛᏁᎮᏍᏗ.\nᏚᏟᎷᎬᏎ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ.\n“Ꮘ-Ꮘ-Ꮘ!”\nᎢᏧᎳ ᏧᏬᏰᏂ ᏗᎬᏗ ᎠᎩᎨᎯᏙᎸ.\nᏙᏣᏕᏋᎯᏍᏗᏉᏃ ᏂᎯ, ᎠᎴ ᎥᏝ ᎤᏲᏉ ᏱᏥᏰᎸᏅ, ᎾᏍᎩ ᎯᎠ ᎢᏳᏛᏁᎸᎯ ᎦᏰᏥᏄᎪᏫᏍᏗ ᎢᏣᏓᏡᎬ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎬᏩᎵ.\nᏗᏥᎦᎵᏰᏃ ᎬᏗ ᏥᎪᏩᏛ ᏣᏤᎵ ᎠᎵᏍᏕᎸᏙᏗ.\nᏐᏉᎯᎭ ᏓᏂᏏᎳᏛᎥᏍᎨ, ᏌᎳᏓ ᏧᏪᏥ ᎠᏂᎨᏳᏣ.\nᎠᎴ ᏮᏓᏨᎷᏤᎵ, ᎹᏏᏙᏂ ᎠᏰᎵ ᎠᎩᎶᏒᎯ ᎨᏎᏍᏗ; ᎹᏏᏙᏂᏰᏃ ᎠᏰᎵ ᎠᎩᎣᎯᏍᏗᏱ ᏂᎦᎵᏍᏗᎭ.\nᎤᏍᎦᏃᎵ ᎤᎵᏖᎸᏁ.\nᏭᏂᎷᏨᏃ ᎧᏫᎵ ᏚᏙᎥᎢ, ᎾᎿ ᏓᏓᎿᏩᏍᏛ ᎬᏩᏛᏁᎢ, ᎠᎴ ᏚᎾᏛᏁ ᎤᏲᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᏏᏴᏫ ᎠᎦᏘᏏᏗᏢ, ᏐᎢᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ.\nᎾᏍᎩ ᎠᏴ ᎢᎬᏱᏱ ᎣᏣᎵᏍᎦᏍᏙᏔᏅᎯ ᎦᎶᏁᏛ ᎢᏲᎬᏂᏐᏗᏱ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ;\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎤᏂᏍᏓᏲᏒ ᎠᎴ ᏄᏃᎯᏳᏅᎾ ᏄᎵᏍᏔᏅ, ᎠᎴ ᎣᏐᏅᏉ ᎤᏂᏃᎮᎸ ᎾᏍᎩ ᎦᏅᏅ ᎤᎬᏩᎵ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᏚᏓᏅᎡᎸᎩ, ᎠᎴ ᏚᏓᏓᎴᏔᏅᎩ ᎠᏃᎯᏳᎲᏍᎩ ᏕᎦᏬᏁᏗᏍᎬᎩ ᏂᏚᎩᏨᏂᏒ ᎩᎶ ᎢᏳᏍᏗ ᏓᎳᎾ ᏧᏙᎢᏛ ᏧᏕᏲᏗᏱ.\n”ᏩᎶᏏ ᏣᎧ---ᏣᏉᏍᎪ ᏰᎵᏉᏱᎩ?”\nᎩᎶᏃ ᏑᏟᎶᏛ ᎢᏍᏕᏅᏍᏗᏱ ᏂᏨᏁᎮᏍᏗ, ᏔᎵ ᎢᏳᏟᎶᏛ ᎢᏍᏕᎨᏍᏗ.\n“ᎯᏍᎪᎵ ᎦᏣᏄᎳ ᏫᎦᎷᎩ ᎩᎦ.” \nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᎠᏏᏉ ᎠᎾᎵᏃᎮᏍᎨ ᎠᎴ ᏓᎾᏓᏛᏛᎲᏍᎨᎢ, ᏥᏌ ᎤᏩᏒ ᎾᎥ ᎤᎷᏨ ᎾᏍᎩ ᎤᏁᏅᏍᏔᏁᎢ.\nᎦᏙ ᎢᏳᏍᏗ ᎤᏰᎸᏗ?\nᎯᎠ ᎠᏗᎾ ᏂᎦᏥᏪᏎᎭ ᏂᏓᎾᏤᎲᎾ ᎠᎴ ᏧᏃᏑᎶᏨᎯ, ᎣᏏᏳ ᎠᏴ ᎾᏆᏛᏅ ᎾᏍᎩᏉ ᏱᏅᏩᎾᏛᏅ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎧᏔᎭ ᏧᏪᏥ ᏗᏗ ᎤᏰᎸᏗ, ᏫᎵᎻ.\nᎬᏂᏳᏉ, ᎠᏴ ᏉᎳ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᎢᏳᏃ ᏱᏕᏥᎤᏍᏕᏎᎸ, ᎦᎶᏁᏛ ᎥᏝ ᎪᎱᏍᏗ ᏴᎦᏰᏣᎵᏍᏕᎸᏙᏓ.\nᎪᏃᎦᏍᎩᏂ ᎥᏝ ᎩᎶ ᏰᎵ ᏴᎬᏓᏅᏘᏐᏓ, ᎾᏍᎩ ᎤᏲᎢ ᎬᏎᎪᎩᏍᏗ ᏂᎨᏒᎾ, ᎠᎧᎵᎢ ᎠᏓᎯᎯ ᏅᏬᏘ.\nᎤᎬᏫᏳᏎᏍᏗᏍᎩᏂ ᎢᏣᏓᏁᎮᏍᏗ ᏄᏍᏛ ᎢᏥᎲᎢ; ᎬᏂᏳᏉᏃ ᏂᎦᏗᏳ ᎢᏣᏓᏅᎦᎡᎸᎯ ᎨᏎᏍᏗ.\nᎣᏥᏳᎢᏂᏒ ᎤᏬᏗᎨ ᎨᏴ ᎠᎹᏳᎸᏗ ᎢᏣ, ᎤᏒᎯ ᎯᎸᎯᏨ ᏌᎷᏱ ᎾᎥ ᎣᏣᎴᏫᏍᏗᏍᎬ, ᏓᎶᏂᎨ ᏚᏓᏴᎳᏛ ᏓᏨᏍᏛ, ᏃᏥ ᎢᏳᏍᏗ ᏓᏥᏍᏛ ᏒᏙᏂ ᏃᎴ ᎤᏥᎸ ᏗᎧᏁᎯᏓ ᎦᎸᎳᏗ ᏕᎦᏒᏛ ᎠᏲᏓᏒ. ᎠᏂᎱᏥ ᏚᏂᎸᏫᏍᏔᏁᎲ ᎦᏚᎢᏣ ᏱᏚᎾᏄᏮᎾ, ᎠᎵ ᏓᏂᎴᏴᏍᎬ ᏃᎴ ᏓᏂᏃᎩᏍᎬ ᏧᏟᏂᎩᏓ ᏗᎧᏃᎩᏍᏗ, ᎠᏂᏌᎲᏍᎬ ᏧᏓᎴᏅᏓ ᏥᏳ.\nᎠᎾᏓᏤᎵᏃ ᏫᏚᏐᏍᏔᏁᎢ ᏚᏏᎳᏛ ᎠᎹ ᎨᏴᎢ.\nᎿᏉᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎾᎥ ᎤᎷᏨ, ᎤᏂᏴᎲᎩ, ᎠᎴ ᎤᏁᏨᎩ ᏔᎵ ᏧᏓᏕᏒᏛ ᏣᎦᎸᏍᏙᏗᏱ, ᎠᎴ ᎤᏛᏛᏅᎩ ᎢᏳᏍᏗ ᎨᏒ, ᎠᏍᎦᏯ, ᎠᎴ ᏄᏛᏁᎸᎢ.\nᎢᏳᏃ ᎦᏓᎭ ᎠᏓᏅᏙ ᏴᏫᎯ ᎦᏄᎪᎢ, ᎤᎧᏲᏛᎯ ᎡᏙᎰᎢ ᎤᏯᏪᏐᎸᏍᏗᏱ ᎤᏲᎰᎢ, ᎠᏎᏃ ᎥᏝ ᏯᏩᏘᏍᎪᎢ.\nᎢᏳᏰᏃ ᎣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᏴᏗᏓᎴᎲᏍᎦ, ᎥᏝ ᎠᏚᎢᏍᏛ ᏴᏗᎬᏓᎴᎲᏍᎦ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎡᏆᎭᎻ ᎤᎵᏍᎪᎸᏓᏁᎴ ᎠᏚᎢᏍᏗᏍᎬ ᎤᏮᏔᏁᎢ.\nᎥᏝ ᎠᏗᎾ ᏅᏩᎾᏓᎴ ᏗᎨᏥᎪᏗᏱ ᏂᎯᏃ ᎠᏍᏓᏯ ᎢᏰᏨᏁᏗᏱ ᏱᎦᏗᎭ;\nᎣᏂᏃ ᏑᏪᎶᏁᎴ ᏗᏄᎯ-ᏗᏍᎩ ᏅᎩᏧᏈ ᎯᏍᎩᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎢᏴᏛ ᎢᎪᎯᏛ, ᏌᎻ ᎠᏙᎴᎰᏍᎩ ᏤᎮ ᎢᏯᏍᏗ.\nᎢᏳᏰᏃ ᏳᎾᏅᏖ ᎾᎿ ᏧᏂᏄᎪᏨᎢ ᏳᎾᏜᏅᏓᎴᏉ ᎥᎤᎾᏨᏍᏗᏱ;\nᎦᏓᏅᏖᏍᎬᏰᏃ ᎥᏝ ᎤᏍᏗ ᎤᏅ ᎡᏍᎦ ᏱᎦᏥᏲᎠᏍᎦ ᏄᏂᎬᏫᏳᏒ ᎨᏥᏅᏏᏛ ᎨᏒᎢ.\nᏥᏌᏃ ᏭᏴᎸᎩ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏚᏄᎪᏫᏒᎩ ᏂᎦᏛ ᎠᏂᎾᏕᎩ ᎠᎴ ᎤᏂᏩᏍᎩ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᎷᏆᏗᏅᏒᎩ ᏚᏂᏍᎩᎸ ᎠᏕᎸ ᏗᏂᏁᏟᏴᏍᎩ, ᎠᎴ ᎫᎴ ᏗᏂᏍᎪᏂᎯ ᏗᏂᎾᏕᎩ ᎤᎾᏅᏗᏱ.\n”ᎠᏂᎪᏕᏍᎩ ᏫᏗᏏᎸᏂᏏ,” ᎤᏬᏎᎴ ᏲᎾ ᎤᏤᏍᏙ ᎪᏱᏁᎢ.\nᏧᏳᎪᏗ ᏍᎩᎾᎾ?\nᎦᎵᏃᎡᏔᏅ ᎠᎾᎲᏍᎩ ᏧᏂᎷᏫᏍᏔᏁᏗ ᏃᎴ ᏗᎨᏥᏅᏏᏙ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏍᏓᏚᎵ ᎢᏍᏛᏯᏛᏁᏗᏱ?\nᏕᎤᏒᏍᏔᏅᏰᏃ ᎢᎦ ᎾᎯᏳ ᎡᎶᎯ ᏚᏳᎪᏛ ᏧᏭᏙᏓᏁᏗᏱ, ᎬᏗᏍᎬ ᎠᏍᎦᏯ ᎾᏍᎩ ᎤᏪᎧᏅᎯ, ᏄᏜᏏᏛᏒᎾ ᏂᏚᏩᏁᎸ ᎾᏂᎥ ᏴᏫ ᎾᏍᎩ ᏕᎤᎴᏔᏅᎢ ᎤᏲᎱᏒᎢ.\nᏒᎧᏔ ᏧᎬ ᎭᏫᏂᏣ ᎣᏍᏓ ᏄᏩᏁᎴ ᎡᎶᏗ ᎤᏕᏗ ᏫᎵᎻ. ᎡᏆ ᎧᏁᏌᎢ ᎠᏓ ᎪᏒᏔᏅ ᎧᏁᏍᎦ ᎧᎵ ᎦᎶᏛ, ᎦᎶᎯᏍᏗ ᎠᎦᎸᏓ ᎤᏴᎯᏍᏗ ᏃᎴ ᎤᏅᎪᎢᏍᏗ ᎡᎵᏍᎬᎢ.\nᎦᎪ ᏧᏄᎪᏓᏁᎯ? ᎦᎶᏁᏛᏍᎪ, ᎾᏍᎩ ᏧᏂᎱᏎᎢ, ᎥᎥ, ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᏥᏚᎴᎯᏅ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏁᎳᏅᎯ ᎠᎦᏗᏏᏗᏢ ᏧᏬᎳ, ᎾᏍᎩ ᎾᏍᏉ ᏥᎦᎵᏍᏗᏰᏓᏁᎭ?\nᎩᎳ - ᏅᎩ ᎢᏯᏂ ᎠᏂᏍᎦᏯ ᏚᏂᏅᏣ ᏗᏂᏂᎨᎾ ᏚᎵᏍᏆᏙᎾ, ᎠᏆᏛᎦᏅ ᏓᏂᏍᏔᏲᎯᎲ ᏍᎪᏂᏴᏣ ᏥᏙᎬ ᎠᏆᎬᏎᏍᏛ.\nᎪᎰᏍᏗ ᎠᏆᏚᎴᎲᎡᎲ, ᏥᏍᎦᎢᎲ ᏁᎳᎩᏉ ᎠᏇᎵᏍᏗ ᏄᏛᏁᎸ ᎨᎵᏍᎬ.\nᏃᎴ ᏂᎬᎾᏛ ᎣᏍᏓ ᎠᏗᏍᎦᎶᏗ ᏃᎴ ᎣᏍᏓ ᎦᏃᎯᎵᏓᏍᏗ.\nᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ ᎤᏂᏣᏘᏍᏗ ᎯᎠ ᏅᏓᎬᎩᏪᎭᎵ; ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᏝᏍᎪ ᏕᏣᏙᎥ ᏲᏨᏗᏍᎨ ᏲᏣᏙᎴᎰᏍᎨᎢ? ᎠᎴ ᏝᏍᎪ ᏕᏣᏙᎥ ᏲᏨᏗᏍᎨ ᎠᏂᏍᎩᎾ ᏱᏙᏥᏄᎪᏫᏍᎨᎢ? ᎠᎴ ᏝᏍᎪ ᏕᏣᏙᎥ ᏲᏨᏗᏍᎨ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗ ᏱᏙᎩᎸᏫᏍᏓᏁᎮᎢ?\nᏥᏍᏛᎾ ᎢᏳᏍᏘ ᎠᎵᏖᎸᎮᏍᎨ ᏣᎵ.\nᎠᎴ ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ, ᎾᏍᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎦᎶᏁᏛ ᎤᎬᏩᎵ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᏳᎳ ᎬᏩᏍᏓᏱᏛᎯ ᏥᎨᏎᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯ ᏫᏄᏕᏘᏴᎲ ᎣᏂ ᎦᎾᏄᎪᏫᏒᎯ ᏥᎩ, ᎥᏝ ᎬᏩᏲᏍᏙᏗ ᏱᎩ, ᎾᏍᎩ ᏰᎵ ᎠᏎᏉ ᎢᏳᏩᏁᏗᏱ ᎠᏚᎢᏍᏛᎢ.\nᎢᏳ ᎠᎴ ᎦᎵᏉᎩ ᏂᏣᏍᎦᏅᏤᎮᏍᏗ ᏏᎦ ᎨᏒ, ᎠᎴ ᎦᎵᏉᎩ ᏂᏣᎷᏤᎮᏍᏗ ᏏᎦ ᎨᏒ, ᎯᎠ ᏂᏣᏪᏎᎮᏍᏗ, ᎤᏲ ᎠᎩᏰᎸᎭ, ᎠᏎ ᎯᏯᏙᎵᎨᏍᏗᏉ.\nᏑᏓᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎡᏆ ᎡᏉᏂ ᎤᏪᏴ ᏳᏇᏗ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎠᎹᏃ ᎾᎿ ᎡᎬ ᎤᎶᏐᏅᎩ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏗᎧᎸᎬ ᎢᏗᏢ ᎠᏁᎯ ᎤᏂᏅᏅ ᎨᎦᏛᎢᏍᏓᏁᏗᏱ ᎠᏰᎸᏒᎩ.\nᎠᎴ ᎡᎾ ᏧᏬᎸᎢ ᎢᎬᏱ ᏫᎬᏩᏘᏅᏍᏔᏅᎩ, ᎾᏍᎩᏰᏃ ᎧᏱᏆ ᎤᎿᏥᏴᎩ, ᎠᎴ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎩ ᎾᎯᏳ ᎤᏕᏘᏴᏌᏗᏒᎢ.\nᏂᎦᏓ ᏓᏍᏔᏅᏅ, ᏦᎩᏂᎸᏂᏗᏍᎩ ᎢᎦᎦᏓ ᎣᎩᏂᏰᏨ, ᎾᏍᎩ ᎨᏒᎢ ᏚᎭᏁᎦᎸ ᎾᎥᏂᎨ ᎩᎦᎨ ᎤᏔᎷᎩᏍᎩ ᏅᏯ ᏂᏚᏍᏛ.\nᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎤᏍᎦᎩ ᎠᏥᏛᏙᏗ ᎨᏒᎢ.\nᏚᎪᎲᏃ ᎤᏂᏣᏘ ᏴᏫ, ᏚᏪᏙᎵᏨᎩ, ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏩᎾᏉ ᏓᏂᎶᎬᎢ, ᎠᎴ ᎤᎾᏗᎦᎴᏲᏨᎯ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎠᏫ ᎤᏂᏃᏕᎾ ᏁᎲᎾ ᏥᎨᏐ ᎤᏂᎦᏘᏯ.\nᏍᏓᏯ ᎦᏬᏂᏍᎩ ᏂᏧᏪᏎ: ᎯᏣᏛᎦᏍᏓ! \nᏂᎦᏗᏳᏍᎩᏂ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏴᏫᏉ ᎬᏩᏂᎪᏩᏛᏗᏱ ᎤᏂᏰᎸᏐᎢ. ᏗᏯᏖᎾ ᏂᏓᏅᏁᎰ ᏧᎾᎬᏓᏃᏍᏗ, ᎠᎴ ᏓᏂᏯᏛᎥᏍᏗᏍᎪ ᏕᎦᏓᎷᏯᏛ ᏧᎾᏄᏬ;\nᎾᏍᎩ ᏥᏌ ᎤᎷᏤᎸᎩ ᏒᏃᏱ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏗᏍᏇᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᏔᏕᏲᎲᏍᎩ ᎨᏒ ᎤᏁᎳᏅᎯ ᏅᏓᏣᏅᏏᏛ ᎨᏒᎢ: ᎥᏝᏰᏃ ᎩᎶ ᎾᏍᎩ ᎯᎠ ᎤᏍᏆᏂᎪᏗ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ ᏱᏙᎬᏩᎸᏫᏍᏓᏏ, ᎤᏁᎳᏅᎯ ᏂᏚᎧᎿᏩᏗᏙᎲᎾᏱᎩ.\nᎠᎴ ᎩᎶ ᎦᏬᏂᏍᎬ ᎠᏡ-ᏗᏍᎨᏍᏗ ᏴᏫ ᎤᏪᏥ, ᎦᏰᏥᏙ-ᎵᏍᏗᏉ ᎨᏎᏍᏗ; ᎩᎶᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ ᎥᏝ ᎦᏰᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᏓᏁᎸᏃ ᎢᏥᏴᎭ ᎢᏥᏲᎵᎮᏍᏗ.\nᏓᏂᏐᏥᏙᎰ ᎪᎱᏍᏗ ᎣᎯᏍᏙᏗ ᏯᏂᏩᏔ ᏍᎪᏂᏯ ᎠᏁᎵᏍᎪ.\nᎠᏎᏃ ᏥᏌ ᏚᏁᏤᎸᎩ [ᎯᎠ ᏂᏚᏪᏎᎸᎩ,] ᎡᏙᏓ ᎪᎯ ᎢᏯᏍᏘ ᏚᎸᏫᏍᏓᏁᎰᎢ, ᎠᏴᏃ ᎾᏍᏉ ᏓᎩᎸᏫᏍᏓᏁᎰᎢ.\n”ᎾᎥᏂ ᎢᎦ,” ᎤᏪᎵᏎ.\n”ᏙᎩᎢᏳᏍᏗ?” ᎤᏛᏁ ᏫᎵᎻ.\nᎦᏚᏏᏨ ᏚᎨᏓᎵᏴ ᎤᎾᏗᎦᎵᏴᎡ, ᎠᎬᏱᏣ ᏓᏂᏰᎵᏎ ᏣᎵ ᏧᏤᎵ ᏴᏫ.\nᎢᏤᏲᏎᎭ, ᎾᎯᏳ ᏒᏃᏱ ᎨᏎᏍᏗ ᎠᏂᏔᎵ ᏌᏉ ᎠᏤᏍᏙᎩᎯ ᏓᏂᏅᎨᏍᏗ; ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎿᏉ ᎠᏂᏔᎵ ᏱᎩ; ᏌᏉᏉᏍᎩᏂ ᎤᏂᏇᏓᎸᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏭᏓᏔᏅᎯ ᎨᏒ ᏞᏍᏗ ᏴᏫ ᏱᏚᎦᎴᏅᏔᏁᏍᏗ.\nᎤᏲ ᏄᏛᎿᏕᎬᎢ ᎠᏥᎩᎡᎸᎩ ᎤᏤᎵ ᎨᏒ ᏚᏳᎪᏛᎢ; ᎠᎴ ᎦᎪ ᏙᏓᎧᏃᎮᎵ ᏴᏫ ᎾᎯᏳ ᏤᎮ ᎠᏁᎯ? ᎬᏅᏰᏃ ᎤᏂᎩᏒᎩ ᎡᎶᎯ.\nᎾᏍᎩ ᏂᎯ ᎠᎴ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᏰᎵᏉ ᎨᏦᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎾᏯᏛᎥᎢ ᎠᎴ ᏂᎦᏅᎯᏒᎢ, ᎠᎴ ᎾᎯᏫᏂᏴᎢ, ᎠᎴ ᏂᎦᏛᎢ;\nᎠᏕᎸᏃ-ᎠᎩᏏᏙᎯ ᎢᏅ ᏧᎴᏁᎢ, ᎥᏝ ᏰᎵ ᎦᎸᎳᏗ ᏫᏗᎬᏩᎧᏃᏗ ᏱᎨᏎᎢ, ᎦᏁᏥᏉᏍᎩᏂ ᎤᏩᏂᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᏁᎳᏅᎯ, ᏍᎩᏙᎵᎩ ᏥᏍᎦᎾᎢ.\nᎠᏂᎨᏕᎳᏃ ᎤᎾᏤᎵᎪᎯ ᏭᏂᎷᏤ, ᎾᏍᎩ ᎨᎵᎵ ᏧᏳᎪᏗ ᏍᎪᏂᏗᏢ ᏥᎩ.\nᎣᏂᏱᏃ ᎾᏍᏉ ᎠᏴ ᎥᏥᎪᎥᎩ, ᎾᏍᎩᏯ ᎩᎶ ᎤᏕᏗᏱ ᏄᏍᏆᎸᎲᎾᏉ ᏣᏕᎲᏍᎪ ᏣᏓᎪᏩᏘᏍᎪᎢ.\nᎠᏂᏧᏏ ᎯᏍᎩ ᏂᎬᎩᎵᎥᏂᎸᎩ ᎢᏳᏍᏗᎭ ᏌᏉ ᎦᎷᎶᎩ ᏅᎦᏍᎪᎯ ᎢᎬᏋᏂᏍᏗᏱ;\nᏃᎴ ᏧᏳᎪᏗ ᏂᏚᏩᏁᎴ ᏚᏄᏌᏛ.\nᏐᎳᏃ ᎾᏍᎩ ᎾᏍᏉ ᏉᎳ ᏥᏚᏙᎥ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᎧᎵᏨᎯ ᎨᏎ ᎾᏍᎩ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏁᎢ,\nᎠᏂᏐ ᏦᎢ ᎢᏯᏂ ᎠᏂᏧᏣ ᎢᏅᎯᎨ ᎢᏴ ᎠᏙᎯ ᎠᏂᏅ, ᎦᎶᏇ ᏚᏅᏴ ᎾᎥᏂ.\nᎧᎪ ᎤᏓᏅᏖᏗᏍᎪ ᏄᏛᎾᏕᎬ ᏧᏍᏆᏴᏍᏗ?”\nᎠᏎᏃ ᎤᎬᏫᏳᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎮᎾ, ᎾᏍᎩᏰᏃ ᏥᏯᏑᏰᏛ ᎠᏖᎵᏙ ᎠᏆᏤᎵᎦ ᏓᏆᏙᎥ ᎠᏱᏙᎯ ᎠᏂᎦᏔᎲ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ.\nᏰᎵᏉᏰᏃ ᏗᏕᎶᏆᏍᎩ ᏧᏪᏲᎲᏍᎩ ᎢᏧᎳᎭᏉ ᏱᎩ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᎢᏧᎳᎭᏉ ᏱᎩ. ᎢᏳᏰᏃ ᏧᏓᏘᎿᎢ ᎠᏓᏁᎸ ᏇᎵᏥᏆ ᏳᏃᏎᎸ, ᎤᏟ ᎠᎯᏗᏳ ᎾᏍᎩ ᎢᏧᏂᏪᏎᏗᏱ ᏚᏓᏘᎿᎥᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩᏯ ᏤᏣᏓᏂᎸᏨᎯ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ, ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ ᎡᏥᏍᏓᏩᏗᏒᎢ;\nᎠᎴ ᏅᏩᏓᎴ ᎩᎶ ᏗᎧᏁᎬ ᎦᎸᎳᏗ ᎠᏆᏛᎦᏅᎩ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᏂᎯ ᏗᏆᏤᎵᎦ ᏴᏫ ᎡᏥᏄᎪᎢ, ᎾᏍᎩ ᎢᏣᏠᏯᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᎤᏍᎦᏅᏥᏙᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᎤᏕᏯᏙᏗ ᎨᏒ ᎢᏣᏠᏯᏍᏙᏗᏱ ᏂᎨᏒᎾ.\nᎤᏍᏗᏃ ᎢᏈᎬᎢ ᏄᏓᏪᏎᎴᎢ, ᏍᏆᎦᏎᏔᏁᎢᏃ ᎠᎴ ᏍᎩᎨᏳᏒᎢ.\nᎾᏍᎩ ᎡᎶᎯ ᎡᎲᎩ, ᎠᎴ ᎾᏍᎩ ᎡᎶᎯ ᎤᏬᏢᏅᎯ ᎨᏒᎩ, ᎠᎴ ᎡᎶᎯ ᎥᏝ ᏳᏬᎵᏤᎢ.\nᏂᎦᎾᏰᏍᎬᎾ ᏫᎨᏴ ᏕᎦᎶᎨᏒ ᎠᏰᎵ, ᏲᎾ ᎤᏤᏍᏙ ᏗᎦᏯᎵ ᏅᏯ ᎦᏚᎢᏣ ᏫᎦᎶᏍᎬ ᎠᎹ.\nᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᎵᏁᏨ ᏥᎩ ᏧᎵᏠᏯᏍᏗ ᎠᏚᎢᏍᏛᎢ,\nᎠᏎ ᏗᏓᏴᎳᏔᏍᎩ ᏄᎾ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᎠᏍᏗᎩᏛ ᎦᏅᏛ ᎤᏣᎴᏍᏔ, ᏩᏐᏝ ᎢᏯᏂᎵᏍᏗᏍᎩ ᎠᏂᏓᎶᏂᎨ ᎤᏂᏥᏯ ᏚᏂᏧᏫᏍᏔᏁᎲ ᎭᏫᏂ, ᏃᎴ ᎦᏲᏟ ᎤᏂᏪᏘᎨᏒ ᏍᎨᏫ.\nᎦᏲᏟᎨᏉ ᏱᏃᏥᎠ.\nᎾᏍᎩ ᎠᎦᏁᎳᏅᎯ ᎤᏩᏒ ᎾᏍᏉ ᎤᏚᏓᎴᏍᏗᏱ ᎠᏲᎩ ᎨᏒ ᎤᎾᏝᎥᎢ, ᎦᎸᏉᏗᏳ ᏂᏗᎨᏥᎾᏝᎥᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎤᎾᏤᏕ ᏫᏗᎨᏥᎪᎩᏱ.\nᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏳᏃ ᎩᎶ ᎠᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᏥᏁᎬᎢ, ᎾᏍᎩ ᎥᏝ ᎢᎸᎯᏳ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ.\nᎣᏍᏛᏰᏃ ᎧᏃᎮᏛ ᎣᎦᏤᎵᎦ ᎥᏝ ᎧᏁᏨᎯᏉ ᎨᏒ ᏱᏥᎷᎯᏍᏓᏁᎴᎢ, ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎨᏒ ᎾᏍᏉ ᏔᎵ ᎤᏛᏛᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏥᏥᎦᏔᎭ ᏃᎦᏍᏛ ᎢᏨᏰᎳᏗᏙᎸ ᏂᎯ ᏥᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ.\nᏃᏉᏗ ᏥᎦᏔ ᎢᏴ ᎬᏩᏛᏗ, ᏛᏥᎷᏥᏗ ᏛᎬᏩᏔᎰᎵ.\nᎢᎸᎯᏳᏰᏃ ᏥᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᏂᏓᏆᏁᎶᏛᎾ ᎨᏒ ᎢᏳᎢ ᎬᏃᏛ ᎨᏒᎩ; ᎤᎵᏁᏨᏍᎩᏂ ᎤᎷᏨ, ᎠᏍᎦᏂ ᎤᏛᏂᏛᎩ, ᎠᏴᏃ ᎠᎩᏲᎱᏒᎩ.\nᎭᏟᏂᎬᏁᎮᏍᏗ ᎬᏂᎨᏒ ᎢᏨᏁᏗᏱ ᎣᏏᏳ ᏣᏰᎸᏒ ᎤᏁᎳᏅᎯ, ᏗᏣᎸᏫᏍᏓᏁᎯ ᎨᏎᏍᏗ ᎨᏣᏕᎰᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎣᏍᏛ ᏘᏯᏙᎮᎯ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ.\nᎲᎦ ᎢᎪᎯᏓ ᏓᏟᏰᎵᏙ ᎤᏣᎩᏍᏗ ᏌᏌ?” \nᎾᏍᎩᏰᏃ Ꮎ ᎠᏲᎵᎯ ᎤᏪᎳᏗᏍᏗᎭ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎤᎵᏍᏆᏙᏂᏓ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.\nᎠᏎᏃ ᏥᎠ ᎥᏝ ᎤᏩᏒ ᏱᏚᏓᏲᏎᎢ, ᎾᏂᎥᏰᏃ ᏓᎦᏔᎲᎩ,\nᏂᎦᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏨᏗᏍᎨᏍᏗ.\nᎾᏍᎩᏯ ᎠᎦᏴᎵᎨ ᏣᎩᎦᏔᎭ, ᎠᎴ ᎠᏴ ᎠᎦᏴᎵᎨ ᏥᏥᎦᏔᎭ. ᎠᎴ ᎬᏅ ᎡᎳᏗ ᏕᏥᏁᎭ ᎠᏫ.\nᎬᏃᏓ ᏩᎶᏏ ᎦᏁᎮᎢ ᎡᎳᏆᏗ.\nᏫᎵᎻ ᏯᏥᎳ, ᎤᏏᏩ ᏱᎩ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᏚᏙᏓᏈᏒ, ᏣᎵᏐᏓ ᏂᏓᏣᎵᏍᏔᏂ, ᏰᎵᏉ ᎭᏂᏣ ᏣᏍᏉᏟ ᏩᎪᏩᏛᏗ ᎨᏎᏍᏗ.”\nᎠᎴ ᎬᏂᏳᏉ, ᎦᏓᏅᎵ ᎢᏥᎷᏤᏗᏱ ᎡᏙᏓ ᎤᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ; ᎠᏎᏃ ᏥᎷᏏᎵᎻ ᎦᏚᎲ ᎢᏥᏁᏍᏗ ᎬᏂ ᎢᏣᏄᏬᏍᏕᏍᏗ ᎤᎵᏂᎩᏛ ᎨᏒ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ.\nᏂᎦᏛᏰᏃ ᎡᏗᏂᏱ ᎠᏁᎯ ᎠᎴ ᎢᎸᎯᏢ ᏗᏁᎯ ᎾᎿ ᎠᏁᏙᎯ ᎥᏝ ᎪᎱᏍᏗ ᏱᏚᏂᎸᏫᏍᏓᏁᎮᎢ, ᎠᏂᏃᎮᏍᎬ ᎤᏩᏒ ᎠᎴ ᎠᎾᏛᎩᏍᎬ ᎪᎱᏍᏗ ᎢᏤᎢ.\n“ᎬᏲᎵᎭ!” ᎤᏛᏁ.\nᎤᏪᏥᏍᎩᏂᏃᏅ ᎨᏎᎢ ᎠᏎᏃ ᎤᏬᎯᏳᎯᏍᏓ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏕᎶᏆᎡ ᎤᎩᎵᏲᏨ ᎤᎦᏙᎥᎯᏍᏔᏁᎢ;\nᎾᏍᎩᏃ Ꮎ ᏅᏓᎨᏥᏅᏏᏛ, ᏫᎤᏂᎷᏨ ᏗᏓᏁᎸ, ᎠᏥᏅᏏᏓᏍᏗ ᎤᏢᏨᎯ ᎤᏂᏩᏛᎮ ᎤᏗᏩᏒᎯ ᎢᎨᏎᎢ.\nᎠᏴ ᎾᏍᎩ ᎾᎦᏚ ᎠᏛᏂᏗᏍᏙᏗ.\nᏕᏣᏂᏴᏎᏍᏗ ᎾᏍᎩ ᏗᏣᏟᎶᏍᏔᏅᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᏍᏆᏛᎦᏁᎸᎯ ᏥᎩ, ᎲᏗᏍᎨᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᏅᏓᏳᏓᎴᏅᎯ.\nᏱᏚᏂᏯᏪᏣ ᎠᎾᏓᏩᏛᎯᏙᎢ ᎠᏰᎵ ᎢᏴ ᎠᏓᏄᏖᏲᎮᎢ.\nᎠᏴ ᏥᏌ ᏗᏥᏅᏒ ᎠᏆᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏨᏁᏗᏱ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ. ᎠᏴ ᏕᏫ ᎤᏪᏥ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒᎢ, ᎠᎴ ᏃᏈᏏ ᏧᎦᏙᏴᎢᏍᏗ ᎠᎴ ᏑᎾᎴ ᎡᎯ.\nᏓᏘᎪᎯᏗ.\nᎢᎦ ᎨᏒ ᎦᏟᎮᎢ ᎤᏒᎯ ᎡᏙᎵᏙᎮ.\nᏂᎯᏰᏃ ᎡᏥᏚᎢᏍᏓᏁᎸᎯ ᎠᎴ ᏗᏤᏥ ᎠᎴ ᎾᏂᎥ ᎢᏅ ᏗᏁᎯ, ᎾᏍᎩ ᎾᏂᎥ ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ ᎢᎦᏤᎵ ᏧᏯᏅᏗ ᎨᏒᎢ.\nᎰᏩᏃ ᎤᏂᎤᎪᏫᏒ ᏖᎸᎳᏗ ᏓᏫᏒᎢ, ᎤᏂᎴᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ Ꮎ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ ᎦᏙ ᏙᏓᎬᏁᎵ ᎾᏍᎩ?\nᎤᏁᎳᏅᎯ ᎠᏓᏅᏙ; ᎾᏍᎩᏃ Ꮎ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᏧᎾᏓᏅᏙ ᎠᎴ ᏚᏳᎪᏛ ᏧᏅᏙᏗ ᎤᎾᏓᏙᎵᏍᏓᏁᏗ.\nᎧᏃᎨᏂ ᎤᏮᏔᏅ ᎤᎾᏄᎪᏫᏒ ᎤᎵᏂᎩᏛ ᎨᏒᎢ; ᎤᎾᏢᏉᏗ ᏙᏧᎾᏓᏅᏛ ᏚᏗᎦᎴᏯᏍᏔᏅ.\nᏘᏍᏚᎢᎡᏗᏱ ᏗᏂᎦᏙᎵ, ᎠᎴ ᎤᎵᏏᎬ ᏄᎾᏛᏅ ᏘᎪᎸᏍᏗᏱ ᎢᎦᎦᏛ ᎢᏗᏢ ᏫᏘᎦᏔᎲᏍᏗᏱ, ᎠᎴ ᏎᏓᏂ ᎤᏤᎵᎪᎯ ᏄᎾᏛᏅ ᏘᎪᎸᏍᏗᏱ ᏙᏘᎦᏔᎲᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᏫᏘᎦᏔᎲᏍᏙᏗᏱ; ᎾᏍᎩ ᏗᎦᎨᏥᏁᏗᏱ ᎤᏁᏍᎦᏅᏨᎢ, ᎠᎴ ᎬᏩᏂᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎨᏥᏅᎦᎸᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎥᏉᎯᏳᏗ ᎨᏒᎢ.\nᎤᏩᏓᎷᏯᏛ ᎬᏗ ᏚᏲᎵᎴ ᏃᏗ ᏭᏓᏬᎡ ᏫᏥ.\nᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᏓᏡᏫᏍᏔᏅᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏳᎯ ᎤᏣᏅᎩ, ᎠᎴ ᎤᏪᏅᎩ. ᏂᎦᏗᏳᏃ ᎾᏍᎩ ᎤᏂᏣᏘ ᎠᎹᏳᎶᏗ ᎠᏂᏙᎾᎥᎩ.\nᏧᏓᏏᏰᏃ ᏕᎦᎶᏗ ᎦᏁᎲ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎢᎦᏛ, ᎯᎠ ᏥᏌ ᏂᎦᏪᏏ ᎤᏁᎵᏒᎩ; ᎪᎱᏍᏗ ᏣᏩᎯ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒ ᎢᏳ ᎪᎱᏍᏗ ᎢᎬᏙᏗ; ᎠᎴ ᎯᎠ ᏱᎩ; ᎪᎱᏍᏗ ᏘᎲᏏ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ.\nᎠᏓᎾᏏᏁᎩ ᏧᏅᎪᏤ ᎡᎳᏆᏗ, ᎤᏟᏴᏍᎪᏳᏁᎴ ᏫᎵᎻ.\nᎯᎠ ᏂᎬᏅ ᎪᏪᎳ ᎠᎾᏙᎴᎰᏍᎩᏱ; ᎠᎴ ᏂᎦᏛ ᎤᏁᎳᏅᎯ ᏧᏪᏲᏅᎯ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏛ ᎤᎾᏛᎦᏁᎸᎯ ᎠᎴ ᎤᎾᏕᎶᏆᎡᎸᎯ ᎠᎦᏴᎵᎨᎢ, ᎬᎩᎷᏤᎰᎢ.\nᎦᏙ ᎬᏙᏗ, ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎩᎶ ᎠᏉᎯᏳᎭ ᏯᏗᎭ, ᏂᏚᎸᏫᏍᏓᏁᎲᎾᏃ ᏱᎩ? ᎤᏬᎯᏳᏒᏍᎪ ᏰᎵᏉ ᏳᏍᏕᎸ?\nᎠᎴ ᎩᎶ ᎦᏬᏂᏍᎬ ᎠᏡᏗᏍᎨᏍᏗ ᏴᏫ ᎤᏪᏥ, ᎠᏥᏙᎵᏍᏗᏉ ᎨᏎᏍᏗ; ᎩᎶᏍᎩᏂ ᎦᏬᏂᏍᎬ ᎠᏡᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎥᏝ ᎠᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ ᎪᎯ ᎨᏒ ᎠᎴ ᎾᏍᏉ ᏐᎢᏱ ᏗᎨᏒᎢ.\nᎤᏲ ᎤᏓᏅᏖᏗ ᏱᏗᎲᏏ.\nᎧᏁᏍᎦ ᏃᎴ ᏗᎩᏏ ᎢᏳᏍᏗ ᎠᏒᎨ.\nᎢᏳᏃ ᏴᏫᏉ ᎠᏁᎲ ᏱᎦᏛᏅ, - ᎾᏍᎩ ᏓᏂᏍᎦᎢᎮ ᏴᏫ; ᏂᎦᏛᏰᏃ ᏴᏫ ᎠᏙᎴᎰᏍᎩ ᎤᏙᎯᏳᎯ ᎬᏩᏰᎸᎭ ᏣᏂ.\nᎢᏳᏃ ᏱᏅᏩᏍᏗᏗᏉ ᎢᏦᎯᏳᏒᎢ, ᎦᎫᏍᏛᏅᎯ ᎠᎴ ᎠᏍᏓᏱᏛᎯ ᎨᏒᎢ, ᎠᎴ ᎢᏴᏛ ᎢᎦᏰᏨᏁᏗ ᏂᎨᏒᎾ ᏱᎩ ᎤᏚᎩ ᎢᏨᏒ ᎣᏍᏛ ᎧᏃᎮᏛᏱ, ᎾᏍᎩ ᎢᏣᏛᎦᏅᎯ ᏥᎩ, ᎾᏂᎥ ᎨᎦᏁᎳᏅᎯ ᎨᏒ ᎨᎦᎵᏥᏙᏁᎸᎯ ᏥᎩ ᎦᎸᎶ ᎭᏫᏂᏗᏢ ᏄᎾᏛᏅᎢ; ᎾᏍᎩ ᎾᎿ ᎠᏴ ᏉᎳ ᎪᎱᏍᏗ ᎦᏛᏁᎯ ᏥᏅᏋᏁᎸ;\nᎿᏉᏃ ᏔᎵᏁ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏴ ᎦᎶᎯᏍᏗᏱ ᎠᏫ ᎤᎾᏤᎵᎦ.\nᎦᏲᏟ ᎠᎩᎶᏔᏅ ᏔᎷᎩᏍᎩ ᎤᎸᏫᏒ, ᏫᏥ ᎢᎦ ᎨᏒ ᎧᏫ ᎦᏗᏔᏍᎬ ᎠᏉᏢ ᏕᎦᎦᏙᏍᏛ ᏴᏫ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ.\nᎠᎴ ᎤᎬᏫᏳᎯ ᎠᏎ ᏛᏇᏓᎴᏏ ᏂᎦᎥ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎴ ᏛᎩᏍᏆᏂᎪᏔᏂ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᏗᎨᏒ ᏫᎦᎷᎩ. ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ, ᎡᎺᏅ.\nᎾᏍᎩ ᎾᏍᏉ ᏧᏂᎸᎩ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏅᏒ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎠᏴ ᎠᎦᏕᏯᏙᏔᏅᎩ; ᎠᎴ ᎥᏝ ᎣᏏᏳ ᎤᏰᎸᏗ ᎤᏁᎳᏅᎯ ᏱᎾᎾᏛᏁᎭ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᏓᏂᎦᏘᎴᎦ;\nᎿᏉᏃ ᎤᎾᏓᏅᏘ ᏛᏂᏁᏥ ᎯᎠ ᏅᏓᎬᏩᏪᏎᎵ; ᏣᎬᏫᏳᎯ, ᎢᎳᎩᏳ ᎢᏨᎪᏒ ᏣᏲᏏᏍᎨᎢ, ᎢᏨᏰᎳᏍᏔᏁᏃ; ᎠᎴ ᏣᏔᏕᎩᏍᎨᎢ, ᎢᏨᎤᏁᏃ;\nᎾᏍᎩᏃ ᏄᏪᏒ, ᎠᏂᏧᏏ ᎤᎾᏓᏅᏒᎩ, ᎤᏅᏒ ᎤᏣᏛᎩ ᏭᎾᎵᏃᎮᎸᎩ.\nᎢᏳ ᎠᎴ ᏎᏓᏂ ᏎᏓᏂ ᏱᎦᏄᎪᏫᏍᎦ, ᏔᎵ ᎾᏓᏗᏍᎪᎢ ᎤᏩᏒᏉ ᎠᏓᏡᏗᏍᎪᎢ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏱᏂᎬᏩ ᏍᏗᏉ ᎤᏤᎵᎪᎯ?\nᎠᏛᎩᏍᎨ ᏍᏔᏯ ᎠᎾᏛᎵᏍᎬ ᎤᏂᎾᎷᏏᏗᏒ.\nᎠᎹ ᎤᎵᏗᏍᏔᏅ, ᎠᏥᎸᏳᎵ ᎤᏅ ᎠᏥᏍᏛ ᎠᎵᏥᏍᎩ ᎠᎹ, ᎣᏓᎵᎦᎵ ᎤᎦᎷᎭᏴ ᏫᏚᏝᏅ.\nᏎᎦᏨ ᎤᏂᎷᏤ ᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ.\nᎠᎴ ᎤᏂᏩᎯᏍᏔᏅᎩ ᎥᏘ ᏗᎪᏢᏍᎩ ᎤᎶᎨᏒᎢ, ᎾᏍᎩᏯ ᏱᎰᏩ ᎠᏇᏲᏅᎢ.\nᏧᏍᏆᏴᏍᏗ ᎨᏍᏗ ᎯᎸ ᎠᎪᏩᏛᏗ ᏱᎨᏎᎢ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏆ-ᏚᎵᎭ ᎠᏂᏫᏅᎨᏌᏂ ᏧᎾᏨᏍᏗᏱ, ᏗᏂᏲᎵ ᏧᏂᎾᏄᎪᏫᏍᏗᏱ, ᏧᏂᏍᏆᏂᎪᏙᏗᏱ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎬᏩᎾᏡᏗᏍᎩ ᏧᏂᎳᏅᏓᏕᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎤᏐᏅ ᎬᏩᏂᏃᎮᏗᏱ.\nᏦᎢᎭᏃ ᎠᎴ ᏅᎩᎭ ᎢᏳᏟᎶᏛ ᎤᏂᎦᏪᎸ, ᎤᏂᎪᎲᎩ ᏥᏌ ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏒᎩ, ᎠᎴ ᏥᏳᎯ ᎾᎥ ᎤᎷᏥᏗᏒᎩ. ᎠᎴ ᎠᏂᏍᎦᎢᎲᎩ.\n ᏃᎴ ᎤᏦᏱᎴ ᏫᎵᎻ, ᏃᏉ ᏔᎵᏁᎢ ᏔᎵ ᏧᏙᏓᏆᏓ.\nᎠᏗᏆᎸᏕᏲᎮ ᎦᎸᎶᎢ ᏃᎴ ᎠᎦᏕ ᎠᎦᎸᎳᏗᎨ ᏄᏍᏕᎢ ᎤᏒᎯ.\nᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᎯᎠ ᎣᏍᏛ ᎨᏥᏃᎮᏍᎩ ᏥᎨᏎ ᎤᏃᎯᏳᏒ ᎢᏳᏩᏂᏌᏛ, ᎥᏝ ᏄᏍᏛ ᎨᏥᏚᎢᏍᏓᏁᎸ ᏱᏚᏁᏓᏂᎸᏤᎢ;\nᎠᎴ ᎩᎶ ᏗᎦᏬᏁ-ᏗᏍᎩ ᎨᏎᏍᏗ, ᏗᎦᏬᏁᏙᏗᏉ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ; ᎠᎴ ᎩᎶ ᏓᏯᏙᎮᎮᏍᏗ, ᏄᎨᏳᎲᏍᎬᎾ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ; ᎩᎶ ᏣᎦᏁᎶᏗ ᎨᏎᏍᏗ, ᎣᏍᏛ ᎤᎦᏌᏯᏍᏗ ᎨᏎᏍᏗ; ᎩᎶ ᎠᏓᏙᎵᎨᏍᏗ, ᎤᎧᎵᏍᏗ ᎤᏓᏅᏛ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ.\nᏌᏯᏂᏍᎩᏂ ᎣᏓᎸ ᎢᏥᎷᏨ, ᎠᎴ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏚᎲᎢ, ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎦᎸᎳᏗ ᎡᎯ, ᎠᎴ ᏗᎬᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ ᎨᏥᏅᏏᏓᏍᏗ ᏧᎾᏓᏡᎬᎢ,\nᎧᏂᎨᏂ ᏭᏂᏴᎲ ᏣᎵ, ᏎᎦᏨ ᏚᎴᏅ.\nᏧᏂᏲᎱᏒᎯᏃ ᎾᏍᎩ ᏧᎾᎴᎯᏐᏗ ᎨᏒᎢ; ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ ᎼᏏ ᎤᏤᎵ ᎪᏪᎵᎯ, ᎾᏍᎩ ᎤᏪᏲᏓᏛ ᎤᏁᎳᏅᎯ ᎤᎵᏃᎮᏔᏅᎢ, ᎯᎠ ᏄᏪᏎᎸᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏆᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏆᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ.\nᎾᏍᎩᏃ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎠᎦᏔᎯ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎤᏅᏏᏙᎯ, ᎠᎴ ᏄᏛᏅᎢᏍᏔᏅᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᏄᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᎤᏣᏘ ᎢᏯᎬᏂᏍᏗ ᎨᏎᏍᏗ.\n“ᏗᎨᏥᎾᏌᎢ ᎠᎾᏟᏃᎮᏍᎪ ᎠᏗᏍᎬ.\nᎠᎴ ᎾᏍᏉ ᎠᎾᏗᏒᎯᎮ ᎾᏍᎩ Ꮎ ᎤᏅᏒ ᎨᏒ ᎤᏟ ᎠᏥᎸᏉ-ᏗᏳ Ꭲ-ᏳᎵᏍᏙᏗ ᎨᏒᎠᎴ ᎾᏍᏉ ᎠᎾᏗᏒᎯᎮ ᎾᏍᎩ Ꮎ ᎤᏅᏒ ᎨᏒ ᎤᏟ ᎠᏥᎸᏉ-ᏗᏳ Ꭲ-ᏳᎵᏍᏙᏗ ᎨᏒᎢ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᏓᏓᏂᎸᎨᏍᏗ ᎯᎠ ᎠᏲᎵ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ; ᎩᎶᏃ ᎠᏴ ᏓᏆᏓ-ᏂᎸᎨᏍᏗ, ᏓᏓᎸᎨᏍᏗ ᏅᏛᎩᏅᎢ, ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎤᏕᎵᏛ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏓ; ᎾᏍᎩᏃ ᏯᎵᏰᏍᏕᎲᎦ ᎤᏁᎳᏅᎯ ᏯᏓᏙᎵᏍᏓᏏ, ᎠᎴ ᏱᏕᎦᏃᏣᎸᎦ ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯᏯ ᎢᏣᏓᏑᏴᎢ.\nᎪᎯᏃ ᏥᎩ ᎦᎵᎡᎵᎦ, ᎥᏝ ᎠᏗᎾ ᎤᏲ ᎢᏣᏓᏅᏓᏛ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭᏍᎩᏂ ᏗᎨᏥᏁᏟᏴᏍᏗ ᏕᏣᏓ ᏅᏛ ᎢᏴᏛ ᎤᏲ ᎢᏣᏓᏅᏓᏛᎢ; ᎤᏲᏰᏃ ᎢᏣᏓᏅᏓᏛᎩ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᏥᎩ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎪᎱᏍᏗ ᎡᏍᎦ ᎢᏨᏴᏁᏗᏱ ᏂᎨᏒᎾ.\nᎿᏉᏃ ᎤᏥ ᎤᏪᏲᏅᎯ ᏂᎨᏎᎢ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏂ ᏍᎩᏲᎮᎸᎭ ᏣᏂ ᏗᏓᏬᏍᎩ ᎤᏍᎪ ᎠᏖᎵᏙ ᎦᎶᏕᏍᏗ.\n“ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ, “ᏱᎬᏚᎢᏍᏓᏏ ᏳᏫᏍᎩᎩᎡᎳ ᏌᎳᏓ ᎤᏤᎵ ᏧᏪᏥ ᏗᎦᏅᏙᏗ, ᎯᎪ ᎠᎴᏂᏍᎩ ᏂᎯ ᎠᎬᏱ ᏯᎵᏍᏓᏴᎲᎦ ᎠᎩᏲᎮᎲ ᎠᎵᏍᏓᏴᏗ ᏣᏄᏏ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᏚᎵᏂᏆᏅᏅᎩ ᎠᎴ ᎾᎦᏛ ᎠᏂᎦᏔᎲ ᎤᏓᏙᎵᏍᏔᏅᎩ.\nᎤᏂᏣᏘᏃ ᏚᏂᏄᎪᏫᏎ ᎠᏂᏍᎩᎾ, ᎠᎴ ᎪᎢ ᏚᏂᏣᏁᏔᏁ ᎤᏂᏣᏘ ᏧᏂᏢᎩ, ᎠᎴ ᏚᏂᏅᏩᏁᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᏏᏴᏫ ᎤᏍᎦᏅᏨ ᎢᏳᏩᏂᏌᏛ ᎠᏍᎦᏅᏨ ᏗᎫᎪᏙᏗ ᎨᏒ ᏂᎦᏗᏳ ᏴᏫ ᏧᏂᎷᏤᎸ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏏᏴᏫ ᏚᏳᎪᏛ ᏄᏛᏁᎸ ᎢᏳᏩᏂᏌᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏁᏗ ᎨᏒ ᎤᏂᎷᏤᎸ ᏂᎦᏗᏳ ᏴᏫ ᎨᎫᏓᎴᏍᏗᏱ ᎬᏂᏛ ᎤᏂᏩᏛᏗᏱ ᎤᎬᏩᎳ.\nᎤᏍᎦᎣᏅ ᎨᏎ ᏫᎵᎻ.\n”ᏍᏈᏯ ᎦᏓᏅᏖᎭ,” ᎤᏛᏁ ᏫᎵᎻ.\n“ᏁᎳᎩ ᏫᎦᎵᏬᎩ,” ᎤᏛᏁ ᏥᏍᏕᏥ.\n“ᏣᏥ ᎣᎩᎾᎵ ᎨᏒᎩ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎭᎾᎾ ᏱᏩᏔ ᏄᏍᏗᏓᏅ ᏭᎶᏒᏍᏗ ᏣᏍᎩᏗᏒᎯ.\nᎾᏃ ᎠᏧᏣ ᎢᎦᎢ ᎠᎵᎮᎵᎬᎢ.\nᎧᏁᏍᎦ ᎫᏔᎩᏍᏙᏗ ᏭᏴᎮ ᏣᏄᏏ ᏃᎴ ᎤᎩᏒᏎ ᎦᏓᎭ ᏂᎨᏒᎾ ᎧᏁᏍᎦ.\nᎧᏃᎯᏰᎩᏃ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎨᏒᎩ, ᎠᎴ ᏔᎳᏚ ᎢᏳᏟᎶᏛ ᎢᏴᏛ ᎧᎳᏩᏗᏒ ᎨᏒᎩ, ᏆᎴᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏂᏧᏏ; ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᎢᏣᏤᎵᎦ!\nᎪᎯᏳᏗ ᎨᏒ ᎲᏗᏍᎨᏍᏗ ᎣᏍᏛ ᎠᎵᏍᏗ ᎨᏒ ᎭᎵᎮᏍᏗ. ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎨᏒ ᏘᏂᏴ, ᎾᎿ ᎾᏍᏉ ᎡᏣᏯᏅᏛ ᏥᎩ, ᎠᎴ ᏣᏃᏅᎯ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏗ ᎨᏒ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎯ ᎠᏂᏚᏔᎲᎢ.\nᏗᏧᎧᎬᎢ ᏧᎩᎴ ᏃᎴ ᏣᏚᏃᎩᏎᎢ, ᎤᏂ, ᎤᏂ, ᎤᏂ, ᏥᏍᏆ ᏔᏯᎪᎦ.\nᎱᎷᏣ, ᎠᏣ ᏗᎪᏒᏔᏅ ᏚᎳᏑᏞᎢ ᏃᎴ ᎤᏪᏘ ᎠᏣ ᎦᏌᎴᎾ ᎤᏄᏪᎢ, ᏃᎴ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ ᎠᏥᏍᏛ ᎪᏱᏁᎮᎢ ᏃᎴ ᎤᏍᏗ ᎦᎾᏧ Ꮎ ᎦᏁᎮᎢ.\nᎠᎴ ᎢᏣᏛᎩᏍᎨᏍᏗ ᏓᎿᏩ ᎠᎴ ᎠᏂᏃᎮᎵᏙᎲ ᏓᎿᏯ; ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎤᏪᎵᎯᏍᏗ ᏱᏂᏣᎵᏍᏓᏁᎴᏍᏗ; ᎾᏍᎩᏰᏃ ᏂᎦᏗᏳ ᎠᏎ ᎢᏳᎵᏍᏙᏗ, ᎠᏎᏃ ᎤᎵᏍᏆᏗᏍᏗᏱ ᎨᏒ ᎠᏏ ᎨᏎᏍᏗ.\nᎢᏤᏯᏔᎮᏍᏗ ᏥᎦᏰᏥᏐᏢᏔᏂ ᏌᏉ ᎯᎠ ᏧᎾᏍᏗᎦ; ᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ; ᎦᎸᎳᏗ ᏦᏒ ᏧᎾᏤᎵᎦ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏂᎪᎯᎸ ᎠᏂᎪᏩᏘᏍᎪ ᎤᎧᏛ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ.\nᏭᏴᎸᏃ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᎴᏅᎮ ᏚᏄᎪᏫᏎ ᎾᎿ ᎠᏂᏃᏗᏍᎩ, ᎠᎴ ᎤᏂᏩᏒᎥᏍᎩ;\n“Ꮘ-Ꮘ-Ꮘ!”\nᎤᏃᏴᎵᏙᎮ ᎠᏕᎳ ᎤᏁᎦ ᏗᎪᏒᏔᏅ ᏗᎬᏙᏗ, ᏗᏌᏅᏙᏗ, ᏧᏍᏗ ᎠᎹ ᏗᎦᎵᏙᏗ ᏃᎴ ᏍᏈᏍᏓ ᏗᎬᏔᏂᏓᏍᏗ.\nᎿᏉᏰᏃ ᎦᏓᎵᏍᎪᎸᏗᎭ, ᎠᎴ ᎾᎯᏳ ᎠᏇᏅᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎯᏗ.\nᎠᎴ ᎠᏓᏅᏙ ᎤᏓᏅᏖᎮᎸᎯ ᏭᎷᏤ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᏧᎦᏴᎵᎨᏃ ᎤᏂᏴᏔᏂᎸ ᎠᏲᎵ ᏥᏌ ᎾᏍᎩ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏳᎾᏛᏁᏗᏱ,\nᏣᎳᎩ ᎠᏰᎵ ᎤᎵᎮᎵᏤ ᏍᏏᏉᏯ ᏚᏬᎷᏩᏛᎲ ᏗᎪᏪᎶᏗ ᏣᎳᎩ.\nᎤᏍᏗ ᏃᎴ ᎤᎵᏍᏗ.\nᏓᏂᎳᏫᎥᏃ ᏚᏂᏰᎵᏒ ᎤᏂᏣᏖ ᎠᏂᏧᏏ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᎠᏂᏧᏏ ᏓᎾᎵᎪᏁᎸᎯ ᏚᏂᏍᏓᏩᏛᏎ ᏉᎳ ᎠᎴ ᏆᏂᏆ, ᎾᏍᎩᏃ ᏚᏂᏬᏁᏔᏁ ᏚᏂᏔᏲᏎᎴ ᏧᏂᏲᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ.\n”ᏥᎭᏓᏅᏛᎳ, ᏥᎭᏓᏅᏛᎳ!” ᎤᏪᎷᏁᎢ ᏌᏌ.\nᎢᏳᏰᏃ ᎼᏏ ᏱᎡᏦᎢᏳᎲᏍᎨᎢ ᎠᏴ ᏱᏍᎩᏲᎢᏳᏁᎢ, ᎾᏍᎩᏰᏃ ᎠᏴ ᎠᎩᏃᎮᏍᎬᎢ ᎤᏬᏪᎳᏅᎩ.\nᎾᏍᎩᎾ ᎾᏍᏉ ᏂᎯ, ᎿᏉ ᏂᎦᏛ ᏄᏤᏪᏎᎸ ᏂᏣᏛᏁᎰᏅᎭ, ᎯᎠ ᏂᏥᏪᏒᎭ, ᎪᏞᏍᏗ ᎣᎬᏙᏗ ᏂᎨᏒᎾ ᎣᎩᏅᏏᏓᏍᏗ; ᎢᏲᎦᏛᏁᏗᏉ ᎨᏒ ᏃᎦᏛᏁᎸ.\nᎩᎶ [ᏥᏌ] ᏥᏯᎠ ᏯᏗᎭ, [ᏥᏌ] ᎤᏪᏙᎸ ᎾᏍᎩᏯ ᎾᏍᏉ ᏰᏙᎭ.\n“ᏲᎾ ᎤᏤᏍᏙ ᎤᏰᎸᏗ,” ᏚᏬᏏᏌᏁ.\n“ᏓᎩᏯᏪᎪ, ᏃᎴ ᎤᎯᏐᏗ ᎠᏆᏓᏅᏘ ᏂᏗᎦᎵᏍᏙᏗ ᎨᏍᏗ ᏱᏗᏓᏥᎪᏩᏛ ᏗᏆᏤᎵ ᏗᏂᏲᏟ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᏱᎦᏥᏁᏤᎸ ᎠᎾᎵᏅᏟ ᎠᏇᎵᏒᎩ ᎢᎬᏱ ᏫᎨᏥᎷᏤᏗᏱ, ᎠᎴ ᎢᎬᏱ ᏭᎾᏛᏅᎢᏍᏙᏗᏱ ᎢᏥᏗ ᎨᏒ, ᎾᏍᎩ ᎦᏳᎳ ᎧᏁᎢᏍᏔᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏛᏅᎢᏍᏔᏃᏅᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎣᏏᏳ ᎢᏥᏰᎸᎯ ᎢᏥᏅᎯ ᎨᏒᎢ, ᎥᏝᏃ ᎢᏥᎨᏳᏅᎯ ᎾᏍᎩᏯᎢ.\n”ᎠᏎᏃ, ᏗᎦᎵᎢ, ᏳᏲᏣ ᏍᎩᎾᎾ ᎤᏪᏘ ᎤᏪᏥ, ᏍᎩᏉ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏔᎵᏁᏍᎩᏂ ᏫᎦᎵᏦᏛ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏩᏒ ᏌᏉ ᏫᎾᏴᎯᎮ ᏂᏓᏕᏘᏴᎯᏒᎢ, ᎥᏝ ᎠᎴ ᎩᎬ ᏂᎦᏁᏤᎲᎾ ᏱᎨᏎᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎤᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᎤᏂᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ.\nᎾᏍᎩᏃ ᏚᏙᎥ ᎤᏅᏙᏗᏱ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᎠᎴ ᎠᏍᎦᏅᏨ ᎥᏓᏗᏙᎵᏍᏗ ᎨᏒ ᎨᎦᎵᏥᏙᏁᏗᏱ ᏂᎦᏛ ᏧᎾᏓᎴᏅᏛ ᏓᏁᏩᏗᏒᎢ, ᏥᎷᏏᎵᎻ ᎤᎾᎴᏅᏗᏱ.\nᏥᏌᏃ ᎤᎦᏔᎲᏒ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏒ ᏚᎪᎲ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙ ᎢᏍᏗᏲᎭ? ᎯᎠᏃ ᏂᎬᏩᏪᏎᎸᎩ; ᏔᏈ--ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎦᏛᎦ ᏔᏕᏲᎲᏍᎩ--ᎭᏢ ᏗᏤᏅ.\n”ᎭᏩ,” ᎤᏛᏁ ᏌᎳᏓ, ”ᏨᏌ ᎭᏓᏌᎳᏗᏍᎨᏍᏗ.\nᏔᎵᏁᏃ ᎤᏗᏌᏓᏛ, ᎦᏙᎯ ᎤᏬᏪᎳᏅᎩ.\n“ᎠᏯᏗ ᏍᏉ,” ᏃᎴ ᏦᎢᏁ ᏄᏪᏎᎢ.\n“ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ, “ᏤᏍᏗ ᏱᏨᏳᏓᏕᎮᏍᏗ.\nᎢᏥᎦᏔᎮᏍᏗ ᏂᎦᏛ, ᎠᎴ ᏂᎦᏛ ᎢᏏᎵ ᎠᏁᎯ ᎠᏂᎦᏔᎮᏍᏗ ᎾᏍᎩ ᏕᎤᏙᎥ ᏥᏌ ᎦᎶᏁᏛ ᎾᏎᎵᏗ ᏤᎲᎩ, ᎾᏍᎩ ᏓᏓᎿᏩᏍᏛ ᏤᏣᏛᏅᎩ, ᎤᏁᎳᏅᎯ ᏥᏕᎤᎴᏔᏅ ᎤᏲᎱᏒᎢ, ᎾᏍᎩ ᏄᏩᏂᏌᏅ ᎯᎠ ᎠᏍᎦᏯ ᎤᏗᏩᏒᎯ ᏥᎦᏙᎦ ᏕᏥᎧᏅᎢ.\nᎯᎠᏍᎩᏂᏃᏅ ᎢᏣᏛᏁᏗᏱ ᎤᏟ ᎢᎦᎢ ᎢᏨᏍᏗᏰᏗᎭ, ᎾᏍᎩ ᏞᎦᎾᎨ ᏗᏤᎲ ᏔᎵᏁ ᏮᏆᏘᏃᎯᏍᏗᏱ.\nᎤᎪᎮᎢ ᎦᎸᎳᏗᏣ ᎤᏅᏏᏴ ᎤᏴᏍᏗ.\nᏰᎵ ᎾᏂᎥ ᏗᏂᏲᏟ, ᎠᏂᏰᎬ ᏚᏂᏲᏏᏍᎬ ᏃᎴ ᏓᎾᏦᎭᏱᎲ.\nᏐᏈᎵ ᎤᏂᏴᏍᏗ ᎠᏩᏛᏗ ᎤᎧᏔ ᎠᎾᎵᏙᎩᏯᏍᎩ ᏐᏈᎵ ᎤᎾᏤᏮ.\nᎨᏍᏗ ᎩᎶ ᏰᎵᏍᎨᎢ ᎦᏳᎳ ᎠᏂᏯᎥ ᏥᏍᏕᏥ ᏃᎴ ᎧᏅᏂᏍᎩ.\nᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏄᏩᎥ ᏚᏪᏣᎦᎸᎮᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎠᏏ ᏱᏗᎦᏚᎵ ᎠᏂᏃᎮᏍᎩ?\nᏏᏓᏁᎸᎯ ᎠᎾᏑᏯᎩᏍᎬ ᏧᏂᏰᏍᏛᏗ ᏧᏍᏆᏅᎾ ᎦᏙᎯ.\nᏂᎯᏰᏃ ᎢᏤᎲ ᎤᏓᎴᏅᎩ ᎤᏃᏴᎵᏒᎩ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎥᏝ ᎹᏏᏙᏂᏉ ᎠᎴ ᎡᎦᏯ ᎤᏩᏒ ᏱᏭᎷᏤᎢ, ᎾᏍᏉᏍᎩᏂ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᎤᏁᎳᏅᎯ ᎡᏦᎢᏳᏒ ᏚᏰᎵᏒ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎠᏎ ᎪᎱᏍᏗ ᎣᎦᏛᏗ ᏱᎩ.\nᎦᎵᏉᎩᏃ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏳᏂᏄᎪᏨᎩ, ᏓᏂᏰᎲᎩ ᎦᎵᏉᎩ ᎤᏕᏯᏙᏗ, ᏚᎾᏄᏮᎩ ᏂᏚᏓᏅᎦᎸᎾ ᎠᎴ ᏧᏁᎬ ᏙᎴᏛ ᏗᏄᏬ, ᎠᎴ ᏗᏂᏁᏥᏱ ᏚᎾᏓᏠᎲᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᏗᎪᏢᏅᎯ ᏗᏓᏠᏍᏗ.\nᎢᏳᏲᏎᏰᏃ ᎤᏂᏣᏛᎩ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎤᎾᏚᎸᎲᎩ ᏂᎯ ᏥᏥᎪᏩᏘ ᎤᏂᎪᏩᏛᏗᏱ, ᎠᏎᏃ ᎥᏝ ᏳᏂᎪᎮᎢ; ᎠᎴ ᎤᎾᏛᎪᏗᏱ ᎾᏍᎩ ᏂᎯ ᏥᏣᏛᎩᎭ, ᎠᏎᏃ ᎥᏝ ᏳᎾᏛᎦᏁᎢ\nᎭᏕᏬ.\nᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᏥᏁᎸ ᎠᏓᏙᎵᏍᏙᏗᏱ ᎠᏓᏁᎸ ᏚᏙᎠ, ᎠᏎᏃ ᏂᎯ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎤᏍᏓᎦᎸ ᏂᏨᏁᎸ.\nᏕᏥᏁᎸᏰᏃ ᎧᏃᎮᏛ ᎾᏍᎩ ᏍᎩᏁᎸᎯ ᏥᎩ; ᎠᎴ ᎾᏍᎩ ᏚᎾᏓᏂᎸᏨ, ᎠᎴ ᎤᏂᎦᏙᎥᏒ ᎤᏙᎯᏳᏒ ᏂᎯ ᏖᎲ ᏅᏛᏆᏓᎴᏅᎯ ᎨᏒᎯ; ᎠᎴ ᎤᏃᎯᏳᏅ ᏂᎯ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ.\nᎬᏂᏳᏉᏃ ᎨᎾᏂ ᎡᎯ ᎠᎨᏴ ᎾᎿ ᎾᎥ ᏅᏓᏳᎶᏒᎯ ᎤᏪᎷᏅᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏙᎵᎩ, ᏣᎬᏫᏳᎯ ᏕᏫ ᎤᏪᏥ, ᎠᏇᏥ ᎠᎨᏴ ᎤᏣᏔᏅᎯ ᎤᏕᏯᏙᏗᎭ ᎠᏍᎩᎾ.\nᎠᏎᎩ ᎤᏐᏱ ᎠᏁᎵᏍᎪ ᎠᏕᏒᎲᏍᎩ ᎦᏣᏄᎳ ᏳᎴᏫᏍᏔᎾ ᏏᏱᎾᏍᏆᏗᏍᎬᎾ, ᏱᎬᎾᎵᎮᎵᎦ ᏧᏙᏓᏋᏓ ᎫᏩᎾᏓᏏᏀᎥᏍᏙᏗ ᏱᎩ ᎠᏂᏏᏀᎥ.\nᎠᏎᏃ ᏂᎦᎥᏉ ᎠᎩᎭ ᎠᎴ ᎤᏣᏔᏅᎯ; ᎠᎩᎧᎵᏬᎯ, ᏗᏆᏓᏂᎸᏨᎯ ᎨᏒ ᎢᏆ'ᎶᏓᏓ ᎤᏲᎸᎯ ᎾᏍᎩ ᏅᏓᏣᏓᏅᏒᎯ, ᎤᏣᏘ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎠᏥᎸ ᎨᎳᏍᏗ ᏗᎬᏓᏂᎸᎢᏍᏗ, ᎣᏏᏳ ᎤᏰᎸᏗ ᎤᏁᎳᏅᎯ.\nᎥᏝᏰᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏱᎩᎧᎭ ᎾᏍᎩ ᎨᎩᏙᎵᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏕᎩᏩᏂᎦᎸᎢ, ᏂᎦᎥᏉᏍᎩᏂ ᎠᏥᎪᎵᏰᎲᎩ ᎠᏴ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᎾᏍᎦᏅᎾ ᎨᏒᎩ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎣᏂ ᏦᏩ ᎠᎵᎹᏗᏱ ᎡᎯ, ᏥᏌ ᎠᏍᏓᏩᏗᏙᎯ ᎨᏒᎩ, ᎠᏎᏃ ᎤᏕᎵᏛᏉ ᎠᏂᏧᏏ ᏓᏍᎦᎢᎲᎢ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ, ᎾᏍᎩ ᏦᏩ ᎤᏔᏲᏎᎸᎩ ᏆᎴᏗ ᎤᏁᏍᏗᏱ ᏥᏌ ᎠᏰᎸᎢ. ᏆᎴᏗᏃ ᎤᎵᏍᎪᎸᏓᏁᎸᎩ. ᎰᏩᏃ ᎤᎷᏨᎩ ᎤᏁᏒᎩ ᏥᏌ ᎠᏰᎸᎢ.\nᏄᏓᎴ ᎧᏃᎮᏗ ᎱᏃᎯᏎᎴ ᏌᎳᏓ, ᏄᏓᎴ ᎠᎾᏓᏤᎵ ᎱᏃᎮᎴ, ᎤᏃᎴ ᎠᏲᏙᏗ ᏗᎩᎸᏗᏍᎩ.\nᎤᎧᎵᏤ ᎤᏓᏅᏙᎩ ᎠᎵᎮᎵᎬ ᏫᎵᎻ.\nᎪᎯᏍᎩᏂ ᎤᏟ ᎢᏲᏍᏛ ᎤᎾᏤᎵᎪᎯ ᎤᏂᏲᎭ, ᎾᏍᎩ ᎦᎸᎶᎢ ᏗᏍᏆᏂᎪᏛᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎥᏝ ᏯᏕᎰᏍᎦ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᎪᏎᏗᏱ; ᏚᏛᏅᎢᏍᏓᏁᎸᏰᏃ ᎦᏚᎲᎢ.\nᎤᎩᏨᏛᏃ ᏉᎳ ᎣᎦᎵᎪᎯ ᎣᎦᏂᎩᏒᎩ ᏏᏌᎵᏱ ᏬᎩᎷᏨᎩ. ᏬᎩᏴᎸᏃ ᎦᏁᎸ ᏈᎵᎩ ᎠᎵ ᏥᏙᏂᏙᎯ, ᎾᏍᎩ ᎦᎸᏉᎩ ᎢᏯᏂᏛ ᎠᎦᎵᎪᏔᏅᎯ, ᎾᎿ ᎣᎦᏅᏅᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎵᎮᎵᎩ ᏂᎦ ᎦᎸᎶᎢ ᎨᏒᎢ, ᎠᎴ ᏂᎯ ᎾᎿ ᏥᏤᎭ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎡᎶᎯ ᎢᏤᎯ, ᎠᎴ ᎠᎺᏉᎯ ᎢᏤᎯ! ᎠᏍᎩᎾᏰᏃ ᎢᏣᏠᎠᏎᎵᎦ, ᎤᏣᏘ ᎤᏔᎳᏬᏍᎬᎢ ᎠᎦᏔᎭᏰᏃ ᎤᏍᏆᎳᎯᏳ ᎨᏒ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎢ.\nᎾᏍᎩ ᎠᏥᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᏣᏘ ᎢᏳᏩᏓᏗ ᎪᎯ ᎨᏒᎢ, ᏐᎢᏱᏃ ᏗᎨᏒ ᎬᏂᏛ ᏫᎾᏍᏛᎾ.\nᎯᎠᏰᏃ ᏄᏍᏗ ᎤᎵᏁᏨ ᎠᏚᎢᏍᏛᎢ. ᎯᎠᏉ ᎢᏳ ᏓᏥᎷᏥ, ᎠᎴ ᏎᎵ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ.\nᎠᎴ ᎠᏍᎫᏕᏍᎩ ᎠᎦᎫᏴᎡᎰᎢ, ᎠᎴ ᎤᏍᎫᏕᏒᎯ ᏫᎦᏟᏏᏍᎪ ᎬᏂᏛ ᏗᎨᏒᎢ, ᎾᏍᎩ ᎢᏧᎳ ᎤᎾᎵᎮᎵᏍᏗᏱ ᏂᎦᎵᏍᏗᏍᎪ ᎠᏫᏍᎩ ᎾᏃ ᎠᏍᎫᏕᏍᎩ.\nᎢᏳᏍᎩᏂ ᎯᎦᏙᎵ ᎤᏲ ᎢᎨᏎᏍᏗ, ᏂᎬ ᎯᏰᎸᎢ ᎤᎧᎵᏦᏅᎯ ᎨᏎᏍᏗ ᎤᎵᏏᎩ. ᎢᏳᏍᎩᏂᏃ ᎢᎦᎦᏘ ᎭᏫᏂ ᏤᎲ ᎤᎵᏏᎩᏉ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᎵᏏᎩ ᏂᎦ ᎡᏉᎯᏳ!\nᏭᏯᏅᎮᏃ ᎠᏏᏴᏫ ᎠᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᏛᏛᏁ ᎤᏰᎸᎥ ᎾᏍᎩ ᎾᎾᏛᏁᎲᎢ.\nᏃᏉᏃ ᏣᏁᎳ, ᏃᏉᏃ ᏐᏁᎳ.\nᎤᎵᏍᏛᏧᏁ ᏣᎵ ᎭᏫᏂ ᎤᏛᎴᎮ.\nᎾᏍᎩ ᏄᎵᏓᏍᏔᏅᎾ ᎨᏒ ᎾᏍᎩ Ꮎ ᎤᏁᏤᎸᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎼᏏ ᏄᏓᎵᏓᏍᏛᎾ ᏥᎨᏎ ᏂᎦᎥ ᏚᏓᏘᎾᎥᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᏱᎦᎵᎭ ᏓᏳᏗᏩᏏᏉ.\nᏥᏌᏃ ᎿᏉ ᎠᏎ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᎤᏂᏰᎸᏎᎢ, ᎾᏍᎩ ᎯᎳᏱ ᎤᏪᏥ ᎨᏎᎢ,\nᎢᏳᏃ ᎩᎶ ᏳᏲᏍᏔᏅ ᎤᏁᎳᏅᎯ ᎦᏁᎸᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏓᏳᏲᏍᏔᏂ; ᎤᏁᎳᏅᎯᏰᏃ ᎦᏁᎸ ᎦᎸᏉᏗᏳ, ᎾᏍᎩᎾ ᏂᎯ ᏥᎩ.\nᏣᏚᎳᏛ ᏃᎴ ᏣᏁᏨ ᎣᎩᏌᏙᏴᏗ ᎠᏴᏫᏯᏍᏛ ᏫᏗᎦᎪᏗ ᎤᎾᎵᎩᏛ ᎭᏂ ᎢᏣ ᎤᎾᏗᏍᎦᏟ ᎣᎩᎷᏤᎸ, ᎾᏆᏛᏁᎳ ᏄᏍᏛ ᏣᏚᎵᏍᎬ.\nᎦᏯ ᎠᎩᏍᏆᏂᎪᏗᏍᎩ ᎠᎴ ᎾᏂᎥᏉ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᏍᏆᏂᎪᏗᏍᎩ, ᏫᏥᏲᎵᎦ. ᎢᎳᏍᏓ, ᎠᏰᎵ ᎡᎯ ᎦᏚᎲ ᎠᎲ ᎠᎦᏘᏯ, ᏫᏥᏲᎵᎦ, ᎠᎴ ᏉᏓ, ᎢᏓᎵᏅᏟ.\nᎠᏆᏚᏓᎳ.\nᎤᏩᏌ ᎭᏫᏂ ᎬᏅᎢ ᎠᎴᏂᏍᎪ ᏃᎴ ᎢᎦᎵᏍᎪᎸᏓᏁᎰ ᎢᎩᎪᏩᏛᏘ.\nᎥᏝ ᎠᎴ ᎡᏃᏱ ᏱᎨᏎᏍᏗ ᎾᎿᏂ, ᎥᏝ ᎠᎴ ᏳᎾᏚᎵ ᎠᏨᏍᏙᏗ, ᎠᎴ ᏅᏙ ᎢᎦᎡᎯ ᎢᎦ ᎤᏘᏍᏛᎢ; ᎤᎬᏫᏳᎯᏰᏃ ᎤᏁᎳᏅᎯ ᎢᎦ ᏓᏘᏍᏓᏁᎭ, ᎤᏂᎬᏫᏳᎯᏃ ᎨᏎᏍᏗ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ.\nᎯᎠᏃᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏛᏍᏆᎸᎯ ᎾᎯᏳ ᎨᏒ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎢᏥᎪᏩᏛᏗᏱ ᏌᏉ ᎢᎦ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵᎦ, ᎠᎴ ᎥᏝ ᏴᎨᏥᎪᏩᏛ.\nᎤᏅᏕᏨ ᏚᏳᎪᏛ ᎦᏅᏅᎢ, ᎠᎴ ᎤᎾᎴᏲᎥ, ᎤᏂᏍᏓᏩᏕᏅ ᎤᎶᏒ ᏇᎳᎻ ᏉᏌ ᎤᏪᏥ, ᎣᏏᏳ ᏧᏰᎸᏎ ᏂᏚᏳᎪᏛᎾ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᎫᏴᏗ,\nᎦᎵᎡᎵᎦ ᏕᎩᎾᏙᎵᏨ, ᏃᏗ ᎭᏇᏅᏍᏗ.” \nᎠᎾᎦᎱᎥᏍᎬ ᏅᏙ, ᎠᏰᎵᏒ ᏅᏙ ᏧᏟᎷᏆᏛᏍᏗ, ᎣᏍᏓ ᎠᎩᏰᎸᎲ ᏍᎩᏴ.\nᎠᎦᏴᎵ ᏗᎧᏃᏗ ᏲᎾ, ᏂᎦᏓ ᎠᏰᎸᎢ ᎠᏲᏟᎨ ᏄᏍᏛ, ᏣᏉ ᏧᎪᎳ ᏧᎦᏌᏘ ᏕᎦᏰᏌᏛ.\nᏕᎬᏩᎦᏚᏢᏅᏃ ᎤᎧᏛ ᏕᎬᏩᏂᎮᎢ, ᎬᏩᏛᏛᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎭᏙᎴᎰᎯ, ᎦᎪ ᏥᏨᏂᎦ?\nᎤᏍᏆᏂᎩᏗ ᏄᎵᏍᏔᏅ ᎤᏃᎮᎴ ᎠᎵᏥᏙᎲᏍᎩ.\n“ᎧᎹ! ᏏᏛ ᏔᎵ ᏕᎯᏂᏅᏌᏓ,” ᎤᏛᏁ ᏥᏍᏚ.\nᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎸᎩ; ᏍᎩᎪᏩᏛᎲ ᎠᏎᏃ ᎥᏝ ᏱᏦᎯᏳᎲᏍᎦ.\nᎣᏏᏳᏍᎩᏂ ᏂᎪᎯᎸ ᎤᏣᏘ ᎢᏥᎨᏳᏗᏱ ᎣᏍᏛ ᎨᏒᎢ, ᎥᏝᏃ ᎾᎯᏳᏉ ᎢᏨᏰᎳᏗᏙᎲ ᎤᏩᏒ.\n“ᏎᎦᏨ ᏕᎯᏕᏦ ᏕᏣᏏᎳᏛ.”\nᎠᎴ ᎤᎬᏫᏳᎯ ᎬᏂᏛ ᎠᏓᏁᎯ ᎡᏥᎸᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ ᎤᏓᎸᎯ ᎡᏥᎧᏁᏗᏱ;\nᎨᏴ ᏫᏥ ᎢᏣ ᎤᎾᎷᏒ ᏭᏬᎯᎶᎯᏍᏗ ᎭᏂᏨ ᎤᎨᏓᎵᏴ, ᎨᏴ ᏭᏩᏐᎯᏍᏗ ᏄᏓᎴ ᎨᏴ ᏃᎴ ᎤᏂᎵᏦᏩᏛ ᎢᏣ.\nᏧᏒᎯᏓ ᏥᏯᎥ ᏴᏫ ᏗᏘᏂᏙᎯ ᏥᏯᎥ ᎠᏥᎳ ᏓᏆᎴᎳ ᏧᎷᎯᏍᏗ.\nᏥᏌᏃ ᎬᏩᎷᏤᎸ, ᎤᏣᏘ ᎬᏩᏍᏗ ᏰᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏓᏅᏖᏳ ᎾᏍᎩ ᎯᎠ ᏥᏅᏘᏍᏛᏁᎵ;\nᏏᎮᎾ ᏂᎦᏓ ᎤᏩᎾᏙ ᎤᏤᎸᏍᎰ ᏩᎭᏯ\nᎤᏂᏃᏕᎾ ᏓᏂᎾᏆᏗᏍᎨᎢ.\nᎠᎴ ᎩᎶ ᏓᏓᏂᎸᎨᏍᏗ ᏌᏉ ᎾᏍᎩ ᎯᎠ ᎢᏳᏍᏗ ᎠᏲᎵ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ.\nᎪᎨᏱ ᏏᏆ ᏂᎯ?”\nᎿᏉᏃ ᏂᎦᏛ ᎠᎾᏛ ᎤᎾᏗᏓᏁᏎᎢ, ᎠᎴ ᏚᏂᏥᏃᏍᎦᎸᎮ ᏚᏂᏨᏍᏛᎢ.\nᏃᏗ ᎤᏃᎴ ᏗᏲᏙᏗ ᏧᎾᎩᎸᏗ ᎦᎵ ᏄᎵᏍᏔᏁ ᎦᎸᎳᏗᏣ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎾᎥᏂᎨ ᎤᏬᏍᎩᎵ ᏣᎦᏍᎪ.\nᎩᎳᏈᏴ ᏫᎩᏂᏴᏍᏗ ᎧᏁᏌᎢ ᏧᏍᏆᏴᏍᏗ ᏃᎴ ᎣᎩᎾᏗᏍᎦᎶᏗ.”\nᎠᏎᏃ ᎥᏝ ᎠᎾᏨᏍᎩ ᏥᎩ [ᎤᎾᏓᏡᎬ] ᎢᏖᎳ ᏱᎩ, ᎾᏍᎩ ᎨᏥᏛᏙᏗ ᎨᏒ ᎢᏴᏛ ᏥᏩᏂᎷᎦ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᎾᏓᏡᎬ ᎢᏖᎳ, ᎾᏍᎩ ᎤᏃᎯᏳᏒ ᏥᏓᏂᏍᏕᎸᏗ ᏧᎾᏓᏅᏙ.\nᎯᎠ ᎾᏍᎩ ᏥᏂᏥᏪᎠ, ᏥᎪ ᏴᏫᏉ ᎤᏓᏅᏖᏛ ᏂᏥᏪᎠ? ᎾᏍᏉᎨ ᎾᏍᎩᏯ ᏂᎦᏪᎭ ᏗᎧᎿᏩᏛᏍᏗ?\nᏃᏗ ᎭᎾᏓᏅᏍᎨ ᏐᎢ ᎤᏔᏂᏗᎨᏍᏗ ᎠᏍᏚᎲ ᏏᏆ ᏗᎦᏅᎬ.\nᎾᏍᎩᏯ ᎤᏣᏘ ᎠᏆᏚᎵᏍᎬ ᎠᎴ ᎤᏚᎩ ᎠᏋᏒᎢ, ᎾᏍᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎠᏆᏕᎰᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᏂᎦᎥᏉᏍᎩᏂ ᏂᏥᏍᎦᎢᎲᎾ ᎨᏒᎢ, ᏥᏄᏍᏙᏉ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎪᎯ, ᎦᎶᏁᏛ ᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏥᏰᎸ ᎬᏗ, ᎾᏍᏉ ᎬᏃᏛ ᎨᏒ ᎠᎴ ᎠᎩᏲᎱᎯᏍᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎩᎶ ᎤᏇᏓᎵ ᎨᏒ ᎤᏢᏈᏍᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᎠᎦᏔᎲᎢ.\nᏥᏌᏃ ᎤᏓᏅᏎ ᏚᏘᏅᏎ ᎬᏩᏍᏓᏩᏗᏐᎯ ᎥᏓᎵ ᏭᏂᎶᏎᎢ; ᎤᏂᏣᏘᏃ ᎬᏩᏍᏓᏩᏛᏎᎢ, ᎤᏓᏳᏂᎶᏒᎯ ᎨᎵᎵ, ᎠᎴ ᏧᏗᏱ,\nᎤᎵᏍᎨᏛ ᎠᎩᏰᎸᎲ, ᎯᏍᎩ ᎢᏧᏓᎴᎦ ᎠᏆᏛᎦᏅ ᏄᎵᏍᏔᏂᏙᎸ, ᎨᏍᏗ ᏧᏐᏴᎭ ᏱᎨᏎ, ᎠᏉᎵᏨ ᏥᏳᎪᏗ ᏄᎵᏍᏔᏅ.\nᎤᏟᏍᏔ ᎠᏇᏅᏒ Cranshaw, ᎠᏆᏛᎦᎾ ᎤᏂᎩᏒ ᎤᎩᏓᏟᏅᏯ, ᏥᏩᏛᎲ ᎨᎵ ᎤᏂᎦᎸ ᎧᏁᏌᎢ ᎦᏟᏅᎥᏍᎬ ᎤᏂᎾᎥ, ᎠᏂᎱᏣ ᎠᎾᏨᏏᏰᏍᎬ, ᎠᏫᏌᏅ ᎨᏍᏗ ᎣᏍᏓ ᏯᏛᏍᎨ, ᎤᏂᏅᎫᎯᏍᏗ, ᏩᎩᎦ, ᎢᏯ, ᎬᎩᏍᏗ, ᎤᏍᏗ ᎤᏬᏰᏅ ᏂᎬᎸ, ᎦᏄᎸ ᎠᏓᏔᏍᎩ ᏥᏆ ᎤᎾᎵᏍᏔᏴᏗ ᎠᏙᏩᏗᏍᏗᏍᎬ ᎠᏫᏌᏅ.\nᎾ-ᏍᎩᏂ ᎨᏥᏯᏅᏛ ᏥᎩ, ᎢᏧᎳᏉ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ, ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎴ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎤᏂᏰᎸᎯ.\nᎭᎾ ᎢᏣ ᏖᏏᏒ.\nᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ ᏦᎯᏍᏙᏗ ᏗᎾᎿᏬᏍᎩ ᎠᎾᏘᎨ ᎠᏂᎨᏯ ᏃᎴ ᎦᏲᏟ ᎤᎾᏓᏂᎵᎨᎢ - ᎬᏂᎨᏒ ᏂᏓᏅᏁᎲ ᏗᏂᏅᏗ.\nᎤᏓᏅᏖᎸ ᏍᎦᏰᎬᏍᏓ ᏧᏗᎦᎴᏲᏗ ᎠᏂᏍᎦᏯ, ᎢᎦᏓ ᏗᎭᏦᏴ ᏚᎾᏘᏅᏒ ᎤᏂᏍᎦᏅᏨ, ᎯᏍᎩᏉ ᏃᏥᎥ ᏦᏥᏩᏘᏍᎩ ᏣᎵ ᏧᏤᎵ ᏴᏫ.\nᎿᏉᏃ ᎦᏃᎸᎥᏍᎬ ᎤᏂᏴᎲ ᏥᏳ, ᎠᎴ ᎾᏍᎩ ᎤᏄᎸᏅ ᎤᏃᎴ ᏧᎦᏛ ᏭᎶᎯᏍᏗᏱ ᎤᏁᎳᎩ ᎧᏄᎯᏎᏍᏗ ᎣᎨᎵᏒᎩ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎤᎪᎮ ᎠᏕᎸ ᎠᎩᏏᏙᎯ ᎵᏫ ᏧᏙᎢᏛ, ᎤᏪᎴ ᎠᏰᎵ ᎡᎯ ᎠᏕᎸ ᎠᎫᏴᏗᏱ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏍᎩᏍᏓᏩᏚᎦ.\nᎤᏍᎦᏃᎵ ᎤᏏᏃᎴ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᏏᏆ ᎤᏴᏍᏗ ᎾᎥ ᏃᎴ ᎤᎴᏫᏍᏔᏁ.\nᎾᎿᏃ ᎤᏂᏅᏅᎩ ᏥᏌ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏂᏧᏏ ᎤᎾᏧᏏ ᎤᎾᏤᎵᎦ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎢᎦ ᎨᏒᎢ; ᏗᏓᏂᏐᏗᏱᏰᏃ ᎾᎥᏉ ᎨᏒᎩ.\n“ᎨᏍᏗ ᏥᎾᏆᏟᏂᎬᎬ ᏯᏆᏟᏂᎬᎦ ᎯᎪᎢᏳᎳ.\nᎤᏌᎨ ᎢᏳᏍᏗ ᎤᏬᏂᏎ ᎠᏎᏃ ᎤᏓᏅᏘ.\nᎨᏍᏗᏰᏃ ᏚᏳᏂᏍᏗ ᎤᏂᎦᎾᏍᏓ ᎢᏳᏍᏗ ᏱᎩ ᎢᎯ.\nᏂᎯ ᎡᎶᎯ ᎠᎩᎷᎯᏍᏗᏱ ᏍᎩᏅᏏᏛ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎡᎶᎯ ᎦᏥᏅᎵ ᎾᏍᎩ.\nᎩᎳ ᏧᎾᏙᎣᏒ ᏧᏆᎶᎦ ᎦᎳᎨᏴ ᎠᎾᏓᏏᏎ ᎤᎾᎵᏍᎩᏛ, ᎣᎭᏂ ᎤᎾᏕᏅ ᏗᏂᏂᎨᏅ ᎢᎦᏘ ᎦᎳᎨᏴ.\nᎠᏴᏰᏃ ᎢᎪᎯᏳᏅᎯ ᎨᏒ ᎢᏗᏴᎯᎭ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏄᏪᏒᎢ, ᎾᏍᎩᏯ ᎠᏆᏎᎵᏔᏅ ᎠᎩᏔᎳᏬᏍᎬᎢ, ᎾᏍᎩ ᎤᏂᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎠᏆᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ; ᎠᏍᏆᏛᎯᏍᎩᏂᏃᏅ ᎨᏒᎩ ᏕᎦᎸᏫᏍᏓᏁᎸ ᎡᎶᎯ ᏧᏙᏢᎤ ᎤᏓᎬᏩᏓᎴᎤᏛ.\nᎾᏍᎩ ᏂᎦᏑᏰᏐᎢ ᏧᏪᏥ ᎢᎬᏁᏗᏱ ᎠᎬᏗᏍᎬ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ.\nᏆᎴᏗᏃ ᏔᎵᏁ ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎪᎱᏍᏗ ᏯᏗᎭ? ᎬᏂᏳᏉ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎠᏂᏃᎮᎭ ᎨᏣᏡᏗᎭ.\nᎢᎪᎯᏍᏓᏁᎯᏰᏃ ᎾᏍᎩ, ᎢᏧᎳ ᏌᏉᏉ ᎢᎬᏁᎸᎯ, ᎠᎴ ᎤᏲᏍᏔᏅᎯ ᎢᎦᏓᏓᎴᏗᏍᎩ ᎠᏐᏴᎢ;\nᎧ ᏤᏍᏗ ᏱᏍᏆᏘᏲᏍᏗᏍᎨᏍᏗ ᏃᎴ ᏫᏢᎾ!”   \nᏒᎦᏔ ᎢᏈᎬᎢ ᎯᎠ ᎢᏄᏪᏎᎴᎢ, ᎥᎥ, ᏃᏊᏃ ᎠᏇᏆᏨᎢ ᏒᎦᏔ ᎢᏈᎬᎢ ᎯᎠᏃ ᏓᎶᏂᎨ ᏒᎦᏔ ᎠᏃᏍᏓ ᎠᏎᏃ Ꮭ ᎢᎸᎯᏳ ᏱᎦᏥᏴᎨᏳ Ꮎ ᎢᎬᏱᎢ ᏒᎦᏔ, ᎾᏍᎩ ᎤᏁᏝᏅᎯ ᎩᎦᎨᎢ ᎢᏳᏩᏁᎸᎢ ...\nᎤᏳᏩᏅ ᏗᏂᏲᏟ ᎤᎾᎭᎾᏬᏍᏙᏗ ᎫᏔᏅ.\nᏐᏁᎳ ᎢᏳᏩᏂᎸ, ᎤᎷᏤ ᎡᎶᏗ ᎤᏤᎵ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᏃᎴ ᏫᎵᎻ ᎤᏴᏍᏗ ᎾᎥᏂ ᎤᎴᏫᏍᏔᏁᎢ.\nᎢᏳᏃ ᎩᎶ ᏳᎪᎲ ᏗᎾᏓᏅᏟ ᏳᏍᎦᏅᏨ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏔᏲᎯᎮᏍᏗ ᎠᎴ ᎠᏎ ᎬᏂᏛ ᏓᏰᏥᏁᎵ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎤᏂᏍᎦᏅᏨᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᎡᎭ ᎠᏍᎦᏅᎢᏍᏗ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᏔᏲᎯᎮᏍᏗ ᎾᏍᎩ ᎠᏥᏙᎵᏍᏗᏱ ᏱᎦᏗᎭ.\nJenny ᎣᏍᏓᏟᏃᎮᏍᎬ ᏫᏚᏯᏪᏣ Michael.\nᎤᏍᎦᎢᏓᏉ ᏄᏍᏛ ᎤᎧᏛ, ᏯᎦᏔᎲᎾ ᏧᏓᎴᏅᎲ ᎠᏥᏍᏛᏅ.\n[ᏍᏗᏫᏃ] ᎯᎠ ᏄᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᎠᎴ ᏗᎩᏙᏓ, ᎢᏣᏛᏓᏍᏓ. ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏗ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎢᎩᏙᏓ ᎡᏆᎭᎻ ᎾᏍᎩ ᎾᎯᏳ ᎺᏌᏆᏕᎻ ᏤᎮᎢ, ᎠᏏᏉ ᎨᎳᏂ ᎾᏁᎳᏗᏍᎬᎾ ᏥᎨᏎᎢ;\n”ᎯᎦᏔᎭᏗ,” ᎤᏛᏁ ᎤᎵᏍᎨᏓ ᎦᏬᏂᏍᎩ, ”ᎢᎪᎯᏓ ᏂᎨᎵᏍᎪ ᎣᎯᏍᏙᏗ ᎢᏗᎾᏌᎥ ᏍᎩᎾᎾ ᏏᏆ.\nᏥᎪᏃ ᎭᏓᏅᏖᏍᎬ ᏂᎯ ᏴᏫ, ᎾᏍᎩ ᏚᎪᏓᏁᎯ ᏥᎩ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ, ᎠᎴ ᎾᏍᎩᏯ ᎢᎭᏛᏁᎯ ᏥᎩ, ᏔᏚᏓᎳᎡᎵ ᎤᏁᎳᏅᎯ ᏧᏭᎪᏙᏗ ᎨᏒᎢ?\nᎾᏍᎩᏃ ᎿᏉ ᎯᎠ ᎠᏲᎩ ᎨᏒ ᎠᏲᎩ ᏂᎨᏒᎾ ᎨᏒ ᎤᏄᏬᏍᏔᏁᏍᏗ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎠᏲᎱᏍᎩ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᎨᏒ ᎤᏄᏬᏍᏔᏁᏍᏗ, ᎿᏉ ᏄᎵᏍᏔᏁᏍᏗ ᎯᎠ ᎢᎦᏪᏛ ᎨᏒ ᏥᎪᏪᎳ, ᎠᏓᎵᏁᎯᏗᏍᎩ ᎨᏒ ᎤᎩᏐᏅ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ.\nᎢᏳᏍᎩᏂ ᎦᎶᏁᏛ ᎢᏥᏯᎡᏍᏗ, ᎠᏰᎸ ᎤᏙᎯᏳᎯ ᎤᏲᎱᏒᎯ ᎠᏍᎦᏂ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎠᏓᏅᏙᏍᎩᏂ ᎬᏃᏛ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎯᎠ ᏄᏂᏪᏎᎢ; ᏗᏓᏍᏚᏗᏱ ᎤᏙᎯᏳᎯ ᎣᎩᏩᏛᎲ ᎤᎵᏂᎩᏗᏳ ᎠᏍᏚᎲᎩ, ᎠᎴ ᎠᏂᎦᏘᏯ ᎠᏂᏙᎾᎥ ᏙᏱᏗᏢ ᎦᎶᎯᏍᏗᏳᎶᏗ, ᎠᏎᏃ ᎣᎩᏍᏚᎢᏒ ᎥᏝ ᎩᎶ ᏲᏥᏩᏛᎮ ᏱᏯᎡᎢ.\nᎦᎪᏰᏃ ᎤᏟ ᎠᏥᎸᏉᏗᏳ, ᎠᎵᏍᏓᏴᎲᏍᎩ ᎠᏃ ᎠᏓᏍᏕᎸᎯᏙᎯ? ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎠᎵᏍᏓᏴᎲᏍᎩ? ᎠᏴᏍᎩᏂ ᎢᏨᏰᎳᏗᏙᎭ ᎠᏓᏍᏕᎸᎯᏙᎯ ᎾᏍᎩᏯᎢ.\nᏙᏳ ᎠᏉᏚᎯ ᎯᎧᏔᎭ.”\nᏉᎳᏃ ᎠᎩᎳᏫᏍᏗᏱ ᎤᎷᏨ ᎠᏂᏯᏫᏍᎩ ᎬᏩᏅᏒᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎬᏍᎦᎢᏍᏓᎩ ᎾᎾᏛᏁᎲ ᎤᏂᏣᏘ.\nᎾᏉᏗ ᏓᏯᎢ.\nᏇᏣᏱᏗᏃ ᏭᎷᏤᎢ; ᏗᎨᏫᏃ ᎠᏍᎦᏯ ᎬᏩᏘᎣᎮᎴᎢ, ᎠᎴ ᎤᏂᏔᏲᏎᎴ ᎾᏍᎩ ᎤᏒᏂᏍᏗᏱ.\nᏂᎪᎯᎸ ᏑᎾᎴ ᏳᏗᏛᎭᏉ, ᎠᏙᎥᏗᏍᎨ ᎤᏅᏗ, ᎤᏯᏤᏗ ᎠᎧᏁᏍᎨ ᏴᏤᏂ.\nᏩᏏᏓᏂ ᎦᏚᎲ ᎠᎾᏁᏍᎨᏍᎬ, ᏌᏬᏚ ᎠᎼᏱ ᎨᏴ ᎾᎥ, ᎦᏲᏟᏉ ᎠᎹ ᎡᏉ ᎦᎸᎳᏗᏣ, ᎠᏰᎵᏋ ᎢᎬᏓ ᎦᏚᎲ ᏓᏓᏌᎳᏗᏍ, ᎦᏲᏟ ᏧᏗᎦᎴᏱᏛ ᏧᏔᏂᏛ ᏧᏂᎳᏫᎢᏍᏗ, ᎨᏍᏗ ᎠᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᎢᏧᏅᏃᎰᏅᏱ ᎠᎴ ᏧᏲᏨ.\nᎣᏏᏳᏰᏃ ᎤᏰᎸᏅ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎠᏴ ᎣᏏᏳ ᏍᎩᏰᎸᏅ, ᎪᎱᏍᏗ ᏗᏨᏯᏰᏅᏙᏗᏱ ᏂᎨᏒᎾ, ᎯᎠ ᎤᏩᏒ ᎾᏍᎩ ᎠᏎ ᎢᏯᏛᏁᏗ ᏥᎩ;\nᎾᏂᎥ ᎤᎾᏓᏅᏘ ᏫᎨᏥᏲᎵᎭ, Ꮀ ᎤᎬᏫᏳᎭ ᎾᏍᎩ Ꮎ ᏏᏌ ᏚᏓᏘᎾᎥᎢ.\n ᎤᏟᏂᎩᏓ ᎠᏟᏰᎵ ᎠᎹ, ᏓᏣᎾᏌᎾᎩᏏ ᎠᏔᎴᎦᏒᎢ!\nᎤᏪᏥᏍᎩᏂ ᎯᎠ ᏂᎦᏪᏎᎭ, ᏣᏤᎵ ᎦᏍᎩᎸ, ᏣᏁᎳᏅᎯ, ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᏂᎬᏩᏍᏗᏉ; ᎠᏙᎳᏅᏍᏗ ᏚᏳᎪᏛ ᎠᏛᏁᏙᏗ ᎾᏍᎩ ᎠᏙᎳᏅᏍᏗ ᎪᎱᏍᏗ ᏨᏗᎭ ᎾᎿ ᏣᎬᏫᏳᎯ ᎨᏒᎢ.\nᎠᏏᏉ ᎾᏍᎩ ᏂᎦᏪᏍᎨᎢ ᎤᎶᎩᎳᏕᎢ ᎠᎴ ᎤᏄᏢᏔᏁᎢ; ᎠᎴ ᎤᏂᏍᎦᎴ ᎤᏂᏄᏴᎸ ᎤᎶᎩᎸᎢ.\nᎤᎵᎪᎲᏍᏗ ᏅᏙ ᎤᎷᏨ.\nᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᎦᎶᏁᏛ. ᎠᏎᏃ ᎢᎦᏛ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᎦᎶᏁᏛ ᎨᎵᎵ ᏅᏏᏳᎾᏄᎪᎢᏍᏗ?\nᎿᏉᏃ ᎤᏂᏁᏒᎩ ᏥᏌ ᎠᏰᎸᎢ ᎠᎴ ᏙᎴᏛ ᎠᏄᏬ ᎤᏂᏣᏄᎶᏔᏅᎩ, ᎠᎴ ᎾᏍᏉ ᏗᎦᏩᏒᎩ ᏚᏂᏣᏄᎳᏅᎩ, ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎠᏂᏧᏏ ᏓᎾᏓᏂᏌ.\nᏓᏆᎴᎳ ᏭᎩᎸᏁ ᏃᎴ ᎠᎵᏥᏙᎲᏍᎩ ᏧᏪᏅᏒ ᏭᎷᏤ.\nᏙᎠᏆᏛᏁᏗ ᎠᏆᎴᏅᏗ?”\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏣᎸᏃᏘᏉ. ᎠᏎᏃ ᎤᏍᏓᏱᏕᏉ ᎧᏁᎬᎢ, ᎤᏙᎯᏳᎯ ᎾᏍᎩ ᏄᏍᏗ, ᎤᏛᏁᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᏓᎧᎿᏩᏗᏙᎯᏉ.\nᎩᎦᎨ ᎩᎦ ᎤᏁᎲ.\nᎦᎪ Ꮎ ᎡᎶᎯ ᎠᏎᎪᎩᏍᎩ ᎢᏳᏃ ᎾᏍᎩ ᏂᎨᏒᎾ ᏱᎩ ᎾᏍᎩ Ꮎ ᎪᎯᏳᎲᏍᎩᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ?\nᎠᏥᏅᏏᏓᏍᏗᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᏅᏏᏙᎯ, ᏂᏣᏪᏒ ᎾᏍᎩᏯ ᏂᎦᏛᎦ, ᎠᏏᏉᏃ ᎤᏜᏅᏛ.\nᏣᏁᎳ ᏕᎦᏅᏌᏛ ᏚᎷᏫᏍᏔᏁᎮ ᏚᏍᏕᎵᏍᎬ.\nᎦᏙᏃ ᏥᏄᏍᏗ ᏥᏂᎦᏛᎦ?”  \n“Ꭵ, ᎤᏙᏳᎯ, ᎢᎪᎯᏓ ᎤᏲᏏᏍᎪᎢ.”\nᏍᏈᏍᏔ ᎩᎦ ᏄᏍᏖ ᏧᏬᏗᎨ ᏧᏆᎶᎬ, ᎠᏌᎻᏓ ᎤᎩᎸ ᎢᏣ ᎤᎾᎦᏯᎲᏎ ᎠᏂᏍᎦᏯ ᎦᎷᏯᏍᏘ ᏗᏂᏁ.\nᏧᎬᏩᎶᏗᏰᏃ ᎡᏥᏩᎯᏍᏔᏅᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᎸᏉᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎢᏥᏰᎸ ᎢᏨᏗᏍᎨᏍᏗ, ᎠᎴ ᏗᏣᏓᏅᏙ ᏕᏨᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏥᎩ.\nᏗᎤᎷᏨᏃ ᏚᏩᏛᎮ ᏔᎵᏁ ᎠᏂᎵᎾᎡᎢ, ᏗᏂᎦᏙᎵᏰᏃ ᏗᎦᎨᏗᏳ ᎨᏎᎢ.\nᎾᏍᎩᏃ ᏄᎾᏛᏁᎴᎢ, ᎠᎴ ᏂᎦᏛ ᎤᎾᏅᏗᏱ ᏂᏚᏅᎴᎢ.\n”ᎦᏓᏅᏖᏍᎬ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ, ”ᎢᏳᏍᏗᏉ ᎤᏃᎯᏳᏗ ᏴᏫ.”\nᎢᏳᏃ ᏯᏆᏛᏅᎢᏍᏔᏁᏅ ᎢᏥᏴᏍᏗᏱ, ᏔᎵᏁ ᏛᏥᎷᏥ ᎠᎴ ᎠᏋᏒ ᎠᏉᎸ ᏙᏓᏨᏯᏓᏂᎸᏥ, ᎾᏍᎩ ᎠᏴ ᎨᎥ ᎾᏍᏉ ᎾᎿ ᎢᏣᏕᏗᏱ.\nᎩᎶ ᏗᎾᏓᏅᏟ ᎠᏍᎦᎩ ᏱᎩ ᎾᏍᎩ ᏴᏫ ᎠᎯᎯ; ᎢᏥᎦᏔᎭᏃ ᏴᏫ ᎠᎯᎯ ᎬᏂᏛ ᏄᏪᎲᎾ ᎨᏒᎢ.\nᎤᏅᏗ ᎠᎧᏓᏢᎩᏓ, ᏣᏄᏏ ᎤᏑᎸᏓ ᎨᎵᏍᎩ, ᏄᎾ ᏗᎬᏣᏝᏅ, ᎠᎦᏅ ᎦᏅᎵᏰᏗ, ᏒᎧᏔ ᎨᎵᏍᎩ, ᎦᏚ ᎤᎦᎾᏍᏓ ᏃᎴ ᏧᏓᎴᏅᏓ ᎤᏂᏑᎸᏓ.\nᎲᎦ ᏧᏒᎯᏓ ᎩᎳ ᏛᏯᏛᏂ?” ᏚᏂᏃᎩᏎ ᏔᎳᏚ.\nᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏧᎦᏴᎵᎨ ᎯᎠ ᏄᏂᏪᏒ; ᎿᏉ ᎤᏛᎾ, ᎤᏩᏒ ᎡᏣᏛᏛᎲᎦ.\n“ᏕᎦᏂᏱᏣ, ᏓᏂᏏᎾᏔᏅ Ꭿ -“\nᎢᎦᏛᏃ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᎳᏯ ᎯᎠ. ᎢᎦᏛᏃ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎠᏙᎴᎰᏍᎩ ᎯᎠ, ᎠᎴ ᎩᎶ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏒ ᎾᏍᎩᏯᎢ.\nᏥᎦᏔᎭ, ᎠᎴ ᎠᏉᎯᏳᏗ ᎾᏋᏁᎸ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᏩᏒᏉ ᎨᏒ ᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎩᎶᏍᎩᏂ ᎪᎱᏍᏗ ᎦᏓᎭ ᎠᏰᎸᏍᎩ, ᎾᏍᎩ ᎦᏓᎭ ᏄᎵᏍᏓᏁᎰᎢ.\nᎦᎵᏬᎨ, ᎠᏎᏃ ᎦᏲᏟ ᏄᏟᏂᎬᎨ ᏰᎵ ᎤᏓᏅᏍᏗ.\nᎠᎦᏛ ᎧᏂᎬᎬ ᏍᎩᎾᎾ ᎤᏰᎸᏗ.\nᎠᎴ ᎦᎵᏉᎩ ᎾᏂᎥ ᎤᏂᎬᏫᏳᎯ; ᎯᏍᎩ ᎢᏯᏂᏛ ᎤᎾᎵᏛᏔᏅ, ᎠᎴ ᎠᏏᏴᏫ ᎡᎭ, ᏐᎢᏃ ᎥᏝ ᎠᏏ ᏱᎦᎾᏄᎪᎦ; ᎠᎴ ᎦᎷᏨᎭ ᏝᎦ ᎤᏕᏗ ᎨᏎᏍᏗ.\n”ᏙᏱᏨ ᏱᎨᏙ, ᎭᏫᏂ ᎤᏩᏌ ᎬᏇᏅᏍᏗ,” ᎤᏛᏁ.\nᎠᏂᏫᏅᎨᏌᏂᏍᎩᏂ ᏧᏃᏑᎶᏨᎯ ᎩᏲᎢᏎᎮᏍᏗ; ᎢᏳᏰᏃ ᏄᎾᏁᎸᎾ ᏂᎦᎵᏍᏓ ᎠᏁᎲ, ᎦᎶᏁᏛᏃ ᎤᏁᎳᎩ ᎠᏁᎳ, ᎿᏉ ᎤᎾᏚᎵᏍᎪ ᏧᎾᏨᏍᏗᏱ,\nᏧᏙᏓᏋᏓ ᎡᎳᏗ ᏄᏩᏁ ᎠᏍᎪᎵ ᎧᏅᏂᏍᎩ, ᎠᎦᏘᏰᎢ ᎤᎷᏤᏗ ᎠᏓᏅᏖᎸ.\nᎤᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎾᎯᏳᏉ ᎤᎾᏁᎶᏔᏁ ᎤᏂᏂᏴᏗᏱ, ᎠᏎᏃ ᏚᏂᏍᎦᎴ ᏴᏫ; ᎤᎾᏙᎴᎨᏎᏰᏃ ᎾᏍᎩ ᎯᎠ ᏚᏟᎶᏍᏔᏅ ᎤᏅᏒ ᎨᏥᏛᎬᎢ.\nᎡᎵᏍᏗ ᏯᎾᏓᏅᏖ ᎨᏥᏍᏗ ᏯᏗᎭ, ᎨᎵᎠ ᎤᏙᎯᏳᎭ.\nᎠᎦᏔᎯᏳᏰᏃ ᎨᏒᎩ ᎾᏍᎩ Ꮎ ᎤᎶᏄᎮᏍᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ, ᎥᏝ ᏂᏥᎥ ᎢᏣᏓᏅᎦᎸᏛ ᏱᎩ, ᎤᏛᏅᎩ.\nᎤᎴᏐᏛ ᎤᏬᏗᎨ ᎩᏟ ᏚᎴᏅ ᏃᎴ ᎤᏕᎭᏯᎸ ᎾᎥᏂᎨ ᏭᎷᏨ ᎠᏓᏪᎳᎩᏍᎬ.\nᎯᎠᏗ ᏱᏂᏥᏫ, ᎤᏐᏱ ᏄᏂᏍᏆᏂᎩᏗ ᎧᏅᏂᏍᎩ ᏃᎴ ᏏᏆ ᏄᏍᏛᎢ ᎮᏂᎵ ᎤᎵᏲᏗ.\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎬᏩᎦᏘᏯ ᎠᏆᏓᏙᎵᏍᏗ ᎨᏒ ᏰᎵᏉ ᎨᏣᎵᏍᏕᎸᏙᏗ; ᎠᏆᎵᏂᎬᎬᏰᏃ ᎤᎧᎵᏨᎯ ᎢᎬᏁᎸᎯ ᎾᎿ ᏩᎾᎦᎳ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏣᏘ ᎠᏆᎵᎮᎵᏨᎯ ᎤᏟ ᎠᎩᏰᎸᎭ ᎠᏆᏢᏈᏍᏗᏱ ᏥᏩᎾᎦᎵᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎦᎶᏁᏛ ᎠᏊᏢᏙᏗᏱ.\nᎭᏂ ᎣᏍᏓ ᎣᎩᏰᎸᎭ, ᏃᎴ ᏂᎯ ᏍᏉ ᎣᏍᏓ ᎢᏨᏰᎸ.\nᎠᏎᏴᏃ ᎤᏟᎶᎥᎩ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎤᏟᎶᎥᎩ, ᎾᏍᎩ ᏴᏫ ᎤᏟᎶᏍᏗ ᎢᎦᏅᎯᏛ, ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏟᎶᏍᏗ.\nᎾᎿᏰᏃ ᏫᏥᎲ ᏧᎬᏩᎶᏗ, ᎾᎿ ᎾᏍᏉ ᏫᏓᎮᏍᏗ ᏗᏥᎾᏫ.\nᎠᏏᏉᏃ ᏂᎦᎷᎬᎾ ᏥᎨᏎᎢ, ᏣᏂ ᏧᎵᏥᏙᏁᎸᎯ ᎨᏎ ᎾᏂᎥ ᏴᏫ ᎢᏏᎵ, ᏧᏃᎮᎮᎸᎯ ᎨᏎ ᏗᏓᏬᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏍᏗ ᎣᏓᏅᏛ ᎤᎬᏩᎵ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᎢᏦᎯᏳᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎤᏓᏍᏛᏗᏍᏗᏉ ᎨᏒ ᎢᏳᏍᏗ, ᏦᏓᏅᏛᏍᎩᏂ ᎾᏍᏉ ᎣᏎᎮᎲ ᎢᏳᏍᏗ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏠᎨᏏ ᎤᏣᎴᏍᏗ ᏓᏫᏒ ᎤᎶᏎ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᎴᏅᎮ ᎠᎾᎢᏒ ᎤᏂᏍᎫᏕᏍᏔᏅᏎ ᎤᏣᎴᏍᏗ.\nᏍᏓᏯ ᏚᎧᏔᏍᏔᏁᎢ, ᏭᏓᎾᏫᏛᎮ.\nᎾᏍᎩᏃ ᎢᏳᎩᎶ ᎠᎪᎾ ᎤᏲᏏᏍᎨᏍᏗ, ᏧᏪᏅᏒ ᎠᎵᏍᏓᏴᎲᏍᎨᏍᏗ; ᎾᏍᎩ ᏕᏥᎳᏫᎩ ᎢᏥᏍᎦᏅᏨ ᏗᏧᎪᏓᏁᎯᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ. ᏭᏃᏒᏃ ᎣᏍᏛ ᏂᎬᏁᎸᎭ ᏫᏥᎷᏨᎭ.\nᏂᎪᎯᎸ ᏥᏯᎵᎡᎵᏤᎰ ᎤᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ, ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎡᏥᏁᎸᎯ ᏥᎩ.\nᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎷᏨᎩ ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᎴᏅᎩ, ᎠᏰᎲᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏜ ᎦᏩᏒᎩ ᎠᎪᎲᏍᏙᏗᏱ; ᎤᏣᏘᏃ ᎠᏥᏁᎸᎩ ᎠᏜ ᎦᏩᏒᎩ ᎾᏍᎩ ᎤᎵᏍᎪᎸᏙᏗᏱ ᎤᏠᏯᏍᏙᏗᏱ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᏂᎦᏛ ᎤᎾᏓᏅᏘ, ᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎦᏍᏗᎸ ᎢᎬᏱᏗᏢ ᏥᎦᎧᎭ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏛ ᎤᎪᎲ ᎠᏥᎸᏳᎶᏗ ᎤᏬᎸᎢ, ᎠᎴ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎠᏍᎦᏯ ᎾᏍᏉ ᏓᏁᏙᎲᎩ ᎾᏍᎩ.\nᏞᏍᏗ ᏱᏗᏣᏓᏥᎪᏁᎮᏍᏗ, ᎢᏴᏛᏰᏃ ᎢᏰᏨᏁᎸᎯ ᎤᏪᏘ ᏴᏫ ᏚᎸᏫᏍᏓᏁᎲ ᎬᏩᎵᏠᏯᏍᏗ;\nᎤᏂᏣᏘᏰᏃ ᎨᏥᏯᏅᏛ, ᎠᏎᏃ ᎠᏂᎩᏲᎵᏳ ᎨᎦᏑᏰᏛ.\nᏚᏳᎪᏛ ᏱᎧᏃᎮᎸ, ᎠᏋᏌ ᎠᏆᏤᎵ ᎨᏒ.\nᎠᏂᏬᏗᎨ ᏥᏔᎦ ᏃᎴ ᎫᎴ ᏗᏂᏍᎪᏂᎯ ᎤᎾᏓᏓᏍᎩᏌᎲ.\nᏂᎬᎾᏛ ᏓᏔᎴᎦᏎ ᏚᏍᎪᏒ ᏃᎴ ᎤᎶᎯᏍᏗ ᏂᏚᏩᏁ ᎰᎻ ᏚᎶᎨᏒ, ᎩᎶ ᎫᏩᎪᏩᏛᏗ ᏱᎨᏒᎾ.\nᎢᏳᏃ ᎾᏍᎩ ᏄᏍᏛᎾ ᏱᎩ, ᎦᏙ ᏛᎾᏛᏁᎵ ᏧᏂᏲᎱᏒᎯ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏥᏕᎨᎦᏬᏍᎪᎢ? ᎢᏳᏃ ᏧᏂᏲᎱᏒᎯ ᎠᏎ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎦᏙᏃ ᏧᏂᏲᎱᏒᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏙᎨᎦᏬᏍᎪᎢ?\nᏒᎧᏔ ᎠᏂᏥᎸᏍᎪ ᏍᏉ. ᏩᏚᎵᏏ ᎠᏂᏃᎯᎵᏙᎰ ᏒᎧᏔ ᏕᏧᎬ ᎾᎥᏂ.\nᏍᏓᏯ ᏚᏓᏟᏴᎮ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏗᎯᏯᏍᎬ ᎠᎴᏅᏙᏗ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᏕᏲᏗ ᎨᏒᎢ, ᏂᎦᎷᎶᎬᎾ ᎨᏒ ᎢᏴᏛ ᏫᏗᏰᎢᎶᎦ; ᏔᎵᏁ ᎦᎫᏍᏛᏗ ᏂᏗᎲᏍᎬᎾ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᎤᎬᏩᎵ, ᎠᏓᎯᎯᏉ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏥᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎪᎯᏳᏗ ᎨᏒᎢ,\nᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏣᏘᎿᏫᏛ, ᎢᏨᏒ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎢᏨᏓ ᎡᏥᏱᎵᏓ. ᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᎤᎵᏁᏨᎯ ᏱᎩ ᏴᏫ ᎣᏥᎯᏍᏗᏱ.\nᎠᎴᏬ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏟ ᎠᎯᏗᏳ ᎨᎻᎵ ᎤᎦᏛᎴᎯᏍᏗᏱ ᏴᎩ ᎦᏏᏁᎾᏛᏗᏱ ᎡᏍᎦᏉ ᎤᏪᎿᎢ ᏴᏫ ᏭᏴᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎿᏉᏃ ᎯᏍᎦᏍᎪᎯᏁ ᎢᎦ ᎤᏍᏆᎸᎲ, ᏂᎦᏛ ᏌᏉ ᎢᎦᎦᏛ ᎤᎾᏓᏡᎨᎢ.\nᎿᏉᏃ ᎹᏗ ᎠᎴ ᏄᏪᏎᎸᎩ ᏥᏌ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᎠᏂ ᏱᎮᏙᎮᎢ, ᎥᏝ ᏱᎬᏩᏲᎱᏎ ᎥᎩᏙ.\nᏂᎦᏛᏃ ᎠᏂᏍᎩᎾ ᎬᏩᏍᏗᏰᏔᏁ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᏁᎳᎩ ᏏᏆ ᏗᏁᏙᎲ ᏬᏥᎶᎯ, ᎾᏍᎩ ᏫᏙᏥᏴᏏ.\nᏝᏍᎪ ᏲᎩᎭ ᎣᎦᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᎣᎦᏗᏔᏍᏗᏱ?\nᏗᏙᏪᎳᏁᏗᏱᏉᏍᎩᏂ ᏧᏂᏲᎯᏍᏗᏱ ᎦᏓᎭ ᎢᏧᎵᏍᏔᏅᎯ ᎾᏍᎩ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏬᏍᏔᏅᎯ, ᎠᎴ ᎩᎬ.\nᎠᎴ ᎾᏂᎥ ᏴᏫ ᎬᏂᎨᏒ ᎢᎦᏥᏴᏁᏗᏱ ᏄᏍᏛ ᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᎡᎶᎯ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎬᏍᎦᎳᏅᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎡᎲᎢ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏬᏢᏅᏅᎯ ᏥᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ;\nᏝᏛᏏ ᏯᏕᏠᎦᏩᏍᎦ ᎤᏪᎵᏎ ᏥᏍᏚ.\nᎢᏧᎳ ᎢᏣ ᎤᏍᏗ ᎨᏴ ᏔᎾᏏ ᏃᎴ ᏓᎦᏏᏱ ᎢᏣ ᏙᏥᏲᎦ, ᏰᎵ ᏧᏙᏓᏆᏓ ᎣᏣᎢᏒ, ᎦᏲᏟᏉ ᎢᏳᏥᎶᏓ, ᏂᎦᏓ ᎣᎩᎦᏛᎲᏍᎬ ᎤᏂᏃᎮᏛ.\nᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎮ ᏗᎦᏅᏏᏙ ᎠᏧᏣ ᎠᏥᏰᎸᎲ.\nᏚᏙᏓᏈᏒ ᎠᏂᏃᎯᎴᎬ ᏤᎩ ᏃᎴ ᏣᏥ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏂᎸ ᎠᏫ ᏏᏅᏓ ᎤᎶᏐᏅ.\nᎦᏍᎩᎸᏃ ᎢᎬᏱᏗᏢ ᎥᏓᎸᎩ ᎠᏓᎰᏗ ᎢᏗᎬᏤᎵᏛ, ᏅᏯ ᏗᎬᎸᏌᏛ ᎾᏍᎩᏯ ᎨᏒᎩ; ᎦᏍᎩᎸᏃ ᎠᏰᎵ, ᎠᎴ ᎬᏩᏚᏫᏛ ᎾᎿ ᎦᏍᎩᎸ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎥᎦᏥᎪᎥᎩ, ᎠᎧᎵᏬᎯ ᏓᏂᎧᏅᎩ ᎢᎬᏱᏗᏢ ᎠᎴ ᎣᏂᏗᏢ.\nᎭᏓᎾᏫᏗᏍᎩ ᎭᎵᏍᎩ! \nᏣᏂᏰᏃ ᎤᏙᎯᏳᎯ ᎠᎹ ᏓᏓᏬᏍᏗᏍᎬᎩ; ᏂᎯᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏙᏓᏰᏣᏬᏍᏔᏂ ᎢᎸᏍᎩᏉ ᎢᏳᏒᎯ.\nᎬᏩᏟᏍᏗ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏍᏗ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎤᏁᎳᏅᎯ ᎡᎶᎯ ᏱᏕᎫᎪᏓᏏ?\nᏄᏓᎵᏓᏍᏛᎾ ᎾᏍᎩ Ꮎ ᎢᏣᏯᏅᏛ, ᎾᏍᏉ ᎾᏍᎩ ᎠᏎ ᏥᏅᏛᏛᏁᎵ.\nᏧᏳᎪᏗ ᏄᏪᏎᎢ ᎠᎦᏴᎵ ᎤᏃᏕᎾ---Ꮟ ᎦᏟᎮ ᎤᎾᎵᎢ.\nᎾᏍᎩ ᏂᎪᎯᎸ ᎠᎾᏕᎶᏆᏍᎪᎢ, ᎠᏎᏃ ᎥᏝ ᎢᎸᎯᏳ ᏱᏩᏂᏰᎢᎶᎯᎰ ᏚᏳᎪᏛ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ.\nᎧ, ᎦᏙᏃ ᎢᎭᏙᎯᏗᎭ? ᏔᎴᎲᎦ, ᎠᎴ ᏪᏣᏬᏣ, ᎠᎴ ᎰᏑᎵ ᏣᏍᎦᏅᏨᎢ, ᎯᏔᏲᎯᎮᏍᏗ ᎲᏗᏍᎨᏍᏗ ᏕᎤᏙᎥ ᎤᎬᏫᏳᎯ.\nᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏣᏛᏁᎲᎢ, ᏗᏥᎾᏫᏱ ᎣᏏᏳ ᎢᏥᏰᎸᎯ ᏕᏥᎸᏫᏍᏓᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏁᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ, ᎥᏝᏃ ᏴᏫ ᏥᏂᏕᏣᏛᏁᎰᎢ;\n“ᏔᏑᎳ ᏃᎴ ᎭᎬᏍᏉᏣ ᎡᎳᏆᏗ!” \nᎠᎧᏘᏌ ᎢᏣ ᎤᏬᏰᏂ ᎦᏁᎭ ᎦᎷᏯᏍᏘ ᎠᎧᏍᎩᏂ ᎢᏣ ᎠᏰᎳᏍᏘ, ᎪᏍᏔᏴ ᎢᏣ ᎤᏍᏉᏟ ᎤᏰᎵᏍᏙᏗ.\nᎢᎸᎯᏢᏰᏃ ᎦᎵᏉᎩᏁ ᎢᎦ ᎤᏁᎢᏍᏔᏅ ᎯᎠ ᏄᏪᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎵᏉᎩᏁ ᎢᎦ ᎤᏯᏪᏐᎴ ᎤᏲᎯᏍᏔᏁ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎣᏍᏛ ᏡᎬ ᎥᏝ ᏰᎵ ᎤᏲ ᏴᎬᏓᏛᎦ, ᎠᎴ ᎤᏲ ᏡᎬ ᎥᏝ ᏰᎵ ᎣᏍᏛ ᏴᎬᏓᏛᎦ.\nᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ, ᎢᏓᎵᏅᏟ, ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎤᏰᎵᎯᏍᏗᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏥᏄᏍᏗ ᏂᎯ ᎢᏤᎲᎢ;\nᏝᏰᎾ ᎩᎶ ᏲᎩᏅᏒ, ᎤᎾᏛᏁᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏂᎯ ᎾᏍᏉ ᎢᏤᎾ ᏖᎸᎳᏗ ᏙᏗᏫᏒᎢ; ᏚᏳᎪᏛᏃ ᎨᏒ ᏓᏨᏯᎫᏴᎡᎵ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᎴ ᎤᏓᎵᎢ ᎠᏜᏩᏍᏗᏍᎨᏍᏗ;\nᎠᏴ ᏌᏩᏂ ᏈᏓ, ᎠᎸᎾᏝᎢ ᎠᎴ ᎠᎩᏅᏏᏛ ᏥᏌ ᎦᎶᏁᏛ, ᎦᏥᏲᏪᎳᏏ ᎾᏍᎩ Ꮎ ᎨᏥᏁᎸᎯ ᏥᎩ ᎣᎩᏁᎸ ᎾᏍᎩᏯᎢ, ᎦᎸᏉᏗᏳ ᎪᎯᏳᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᏁ ᎤᏓᏅᏘᏳ ᎨᏒ ᎢᎦᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ.\nᎢᏳᏍᎩᏂ ᎧᏁᏨᎯ ᎠᎴ ᎪᎱᏍᏗ ᏚᏙᎥ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏣᏤᎵᎦ ᎧᏃᎮᏗ ᏱᎩ, ᎢᏨᏒ ᏗᏥᎸᏫᏍᏓᏏ, ᎥᏝᏰᏃ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᏱᏙᎦᎫᎪᏓ.\nᎤᎵᏍᎦᏰᎬᏍᏔᏁᎢ ᏌᏌ. ᏚᏅᏫᏍᏔᏁᎢ ᎢᏳᎾᏛᏁᏗ. ᏌᏌ ᎤᎵᏍᎦᏰᎬᏍᏔᏁᎢ.\nᎿᏉᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᏂᏁᏨ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᎤᏰᎸᏛ ᎣᎦᏚᎵ ᎢᏨᎪᏩᏛᏒᏗᏱ.\nᏃᏗ ᎤᎵᎪᎲᏍᏗ ᏱᎩ ᏧᎧᏎᏍᏕ ᏧᎦᏒᏍᏗ ᎤᎳᏌᎳᏙᏗ ᏕᏍᎬᎢ ᎦᎸᎾᏗᏣ.\n”ᏣᎵᎢᎨ ᏣᏚᎵᎭ, ᏫᎵᎻ?” ᎤᏛᏁ ᎪᎱᏍᏗ.\nᏕᏥᏯᎦᎿᏅ ᎠᏓᎦᏘᏕᎯ, ᎤᎵᎮᎵᏍᏗ ᏂᏚᏍᏛ ᏗᎦᏙᎵ ᏃᎴ ᎤᎦᏛ.\nᎠᏎᏃ ᎤᏚᎵᏍᎬ ᎤᏚᏓᎴᏍᏗᏱ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ, ᎦᎪᏃ ᎾᎥ ᎢᏦᎩᎾᏓᎳ?\nᎠᏎᏃ ᏌᎳᏓ ᏍᏉᏎᎮᏍᏗ.”\nᎤᏅᏌ ᎠᏁᎲ.\nᎢᏣᏅᏔᏉᏰᏃ, ᎢᏓᎵᏅᏟ, ᏙᎩᎸᏫᏍᏓᏁᎸ ᎠᎴ ᏙᎩᏯᏪᏥᏙᎸᎢ; ᏗᎬᏩᎩᏨᏗᏰᏃ ᏙᎩᎸᏫᏍᏓᏁᎲ ᏃᎦᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᏏᏴᏫ ᏂᏣᏛᏅ ᎦᎨᏛ ᎢᏲᏨᏴᏁᏗᏱ, ᎢᏨᏯᎵᏥᏙᏁᎸᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᏅᏩᏙᎯᏯᏛᏃ ᎦᏅᏅ ᎥᏝ ᎤᏂᎦᏙᎥᏒᎯ ᏱᎩ.\nᏭᏕᎭᏲᎸ ᏅᏯ ᎦᏓᏍᎬ ᎦᎸᎳᏗ ᏭᎾᎷᏒ, ᏃᏉ ᎡᎳᏗ ᏭᎶᏒ ᏗᎨᏴ ᎢᏣ.\nᎠᎾᎵᏅᏟᏃ ᎩᎳᏉ ᎢᏴᏛ ᏚᎾᏘᎾᏫᏛᎲᎩ ᏉᎳ ᎠᎴ ᏌᏱᎳ, ᏈᎵᏯ ᏒᏃᏱ ᏫᏚᎾᏘᏅᏍᏔᏅᎩ. ᎾᏍᎩᏃ ᎾᎿ ᏭᏂᎷᏨ, ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏭᏂᏴᎸᎩ.\nᏥᏌᏃ ᎤᏕᏅ ᎦᏚᏱ ᎦᏚᎲ ᏧᏗᏱ, ᎾᎯᏳ ᏤᎮ ᎡᎶᏛ ᎤᎬᏫᏳᎯ, ᎬᏂᏳᏉ ᎤᏂᎷᏤ ᏥᎷᏏᎵᎻ ᎠᏂᎦᏔᎿᎢ ᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ ᏧᏂᎶᏎᎢ,\nᎠᏎᏃ ᏂᎯ ᎣᏏᏳ ᏂᏣᏰᎸᏅᎾ ᎥᏝ ᏯᏆᏚᎸᎮ ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱ; ᎾᏍᎩ ᎣᏍᏛ ᏂᏍᏆᏛᏁᎲ ᎣᏏᏳ ᏣᏰᎸᏅ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝᏃ ᎾᏍᎩ ᎠᏎ ᎢᏣᏛᏁᏗᏱ ᏂᏣᎵᏍᏓᏁᎲᎢ.\nᎯᎠᏃ ᏧᎬ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏏᏉ ᎡᏆᎭᎻ ᏁᎲᎾ ᏥᎨᏒᎩ, ᎠᏴ ᏂᎨᎣᎢ.\nᏗᎦᏓᎭ ᏗᎪᏪᎵ ᏃᎴ ᏗᎿᏬ ᏧᏲ ᎤᏰᎦᎸᏔᏁᎢ, ᏃᎴ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎩᏗ ᏳᏩᏛᎭ ᎭᎾᎾ ᎠᏍᏆᏂᎪᏗᏍᎨᎢ.\nᎠᏂᏲᏍᎩ ᎠᎹᏳᎸᏓ ᎾᎥᏂ ᏫᏚᏂᎧᏅ ᏣᎵ ᏃᎴ ᎠᏂᏧᏣ, ᎭᎾ ᎠᏂᏙᎾᎥ ᏱᏂᎦᏔᎲᎾ ᎢᏳᎾᎵᏍᏔᎡᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎭᏅᏓᏓ ᎾᎿ ᏗᏣᎶᎠᏒᎢ, ᎠᎴ ᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᎬᏱᏱ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏗᏣᎸᏫᏍᏓᏏ; ᎢᏳᏃ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᏞᎩᏳ ᏓᎬᎷᏤᎵ, ᎠᎴ ᏓᏥᎧᎲᏏ ᎠᏨᏍᏙᏗ ᎦᎪᏙᏗ ᏣᏤᎵᎦ, ᎢᏳᏃ ᏂᏣᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ ᏣᏓᏅᏛᎢ.\nᎡᏤᎾ, ᎠᏴ ᏍᎩᎷᏥ, ᏂᎦᏗᏳ ᎠᎩᎵᏯ ᏗᏥᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎦᎨᏛ ᏗᏣᎵᏎᎯ, ᎠᏴᏃ ᏓᏨᏯᏪᏐᎸᏍᏔᏂ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏥᏍᎦᎢᎭ? ᎤᏍᏗ ᎢᏦᎯᏳᎯ! ᎿᏉᏃ ᏚᎴᏅ ᏚᏍᎦᏤ ᎤᏃᎴ ᎠᎴ ᎥᏓᎵ, ᎤᏣᏘᏃ ᎤᏓᏥᎾᏍᏛᎯ ᏄᎵᏍᏔᏁᎢ.\nᎤᎵᏍᏆᎸᏗᏃ, ᎢᏓᎵᏅᏟ, ᏅᏩᏙᎯᏯᏛᏉ ᏂᏣᏛᎿᏕᎨᏍᏗ. ᎪᎱᏍᏗ ᏂᏥᎪᎸᎾ ᎨᏎᏍᏗ, ᎤᎦᎵᏍᏗᏉ ᏕᏣᏓᏅᏖᏍᏗ, ᎤᏠᏱᏉ ᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ, ᏅᏩᏙᎯᏯᏛᏉ ᎢᏤᎮᏍᏗ; ᎤᏁᎳᏅᎯᏃ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏥᎩ, ᎢᏤᎳᏗᏙᎮᏍᏗ.\nᏙᎴᏛᏃ ᎠᏄᏬ ᎤᏂᏰᎢ, ᎠᎴ ᎤᏰᎸᎭ ᏚᎵᏘᎡᎴᎢ.\nᎤᏕᎶᎰᏍᏌ Ꮟ ᎦᏲᏟ ᎠᏥᏍᏛ ᎠᎹ, ᎤᏌᎳᏓᏁ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᎤᏓᏍᏚᏤ, ᏃᏗ ᎱᎵᏴᏍᎪᏳᏁ.\nᎠᏍᎦᏂ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᏍᎩᎾ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏐᎢ, ᏗᏓᎴᏁᏍᎬᏰᏃ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏍᎩᎾ ᎠᏍᎦᏅᎪᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎩ, ᎤᏲᏍᏙᏗᏱ ᎠᏍᎩᎾ ᏚᎸᏫᏍᏓᏁᎸᎢ.\nᎠᏂᏐᎢ ᎠᎾᏗᏍᎨ ᎤᏲ ᎠᏆᏓᏅᏛ, ᎠᏆᏓᏂᏴ ᎠᎹᏱ ᏕᎦᏐᏍᎬ ᏃᏥ ᏧᎬ ᎭᏫᏂᏨ, ᎠᏋᏌ ᎦᏓᏅᏖᏍᎬ ᏄᏍᏛ ᎾᏆᏛᏁᎸ.\nᎠᎩᏄᎸᏅᏃ ᎠᎩᎪᏩᏛᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏗᎬᏩᎸᏌᏓ ᎾᏍᎩ ᎢᎦ ᎦᏛᎢ, ᎣᏤᎯ ᎬᏉᏱᏁᏅ, ᏕᎹᏍᎦ ᏩᎩᏴᎸᎩ.\nᎠᏌᎻᏓ ᎤᏚᎵᏍᎬ ᎠᎾᎦᏎᏍᏗᏍᎩ ᏧᏩᎪᏗ ᎤᎵᏨᏓᏆᏓ.\nᎠᎴ ᏧᏭᏓᎴᏍᏗᏱ ᎾᏍᎩ Ꮎ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎠᏂᎾᏰᏍᎬ ᏥᏅᏗᎦᎵᏍᏗᏍᎨ ᏓᏅᏅ ᎢᎪᎯᏛ ᏧᎾᏓᏲᏒᎯ ᏥᎨᏒ ᏕᎨᏥᎾᏝᎥᎢ.\nᎯᎠ ᏄᏪᏎᎢ; ᏥᏍᎦᏅᎩ ᏄᏍᎦᏅᏨᎾ ᎩᎬ ᏥᎦᏡᏓ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎦᏙ ᎾᏍᎩ ᎠᏴ ᎣᎬᏙᏗ? ᏨᏒ ᎾᏍᎩ ᏗᏣᎸᏫᏍᏓᏏ.\nᎠᏎᏃ ᎧᏃᎮᏛ ᏂᎦᏪᏍᎬ ᎢᏣᏛᏁᎯ ᎨᏎᏍᏗ, ᏞᏍᏗᏃ ᎢᏣᏛᎩᏍᎩᏉ ᎤᏩᏒ ᏱᎨᏎᏍᏗ, ᎢᏨᏒ ᏱᏣᏓᎵᏓᏍᏗᏍᎨᏍᏗ.\nᎠᏎᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏂᏃᎮᎸᎩ ᎳᏏᎳ ᎾᏍᏉ ᎤᏂᎯᏍᏗᏱ,\nᏕᎬᏩᏏᏔᏕᏃ, ᎠᎴ ᎬᏩᏂᏴᎮᎢ.\nᏑᎾᎴ ᎫᏩᎴᏅᏓ ᎠᎦᏍᎬ.\nᏚᏃᎸᏒᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎢᏥᏟᏌ ᎤᎵᎬᎭᎷᏴᎯ ᎤᏘᏴᎯ, ᏞᏍᏗ ᎪᎱᏍᏗ ᏳᏤᏬᏤᏍᏗ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏌᏩᏂ, ᏌᏩᏂ ᎬᏂᏳᏉ, ᏎᏓᏂ ᎤᏔᏲᎸ ᎠᎦᎵᏍᎪᎸᏓᏁᏗᏱ ᎢᏨᎫᏍᏙᏗᏱ ᎤᏣᎴᏍᏗ ᏣᏅᏧᏍᏗᏍᎪ ᎾᏍᎩᏯᎢ.\nᎾᏍᎩ ᎪᎱᏍᏗ ᏅᏓᏳᎵᏱᎸᏍᏙᏗᏱ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᏩᏆᎵᏰᎢᎶᎯᏍᏗᏱ.\nᏣᏂᏃ ᎿᏉ ᎠᎧᎵᎢᎮ ᏧᎳᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᎪ ᏍᎩᏰᎵᏎᎭ? ᎥᏝ ᎠᏴ ᎾᏍᎩ ᏱᎩ, ᎠᏎᏃ ᎬᏂᏳᏉ ᎣᏂ ᏓᏯᎢ ᎾᏍᎩ ᏚᎳᏑᎸ ᎥᏝ ᎠᏴ ᏰᎵ ᏗᎬᎩᎧᏁᏴᏗ ᏱᎩ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ. ᎤᎬᏫᏳᎯ ᎤᏚᎵᎭ.\nᏦᎯᏳᏒ ᎠᏆᎵᏍᎦᏍᏙᏛ ᏫᎬᏲᏪᎳᏁᎸᎩ, ᏥᎦᏔᎲᎩ ᎾᏍᏉ ᏣᎶᏒᏍᏙᏗᏱ ᎨᏒ ᎿᏛᏁᎲ ᏄᏍᏛ ᎬᏁᏤᎲᎢ.\nᎠᏝᏅᏓᏗᏍᎬ ᎨᏍᏗ ᎤᏂᏣᏘ ᎠᎴ ᎠᏂᏳᏩᏁᎦ ᎤᎾᏤᎵ ᏱᎨᏎ ᎪᏪᎵ ᎠᏌᎥ ᏚᏙᎥ ᎪᏪᎴ.\nᏥᏌ ᏚᏁᏤᎸ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏍᎩᏲᎭ ᎥᏝ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎢᏥᎪᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏉᏍᎩᏂ ᎦᏚ ᏕᏥᎬᎢ, ᎠᎴ ᏕᏦᎸᏒᎢ.\nXVII. ᎡᏚᏥ  \nᎩᎶ ᏣᏯᎣ [ᎦᎶᏁᏛᏱ] ᎥᏝ ᏯᏍᎦᏅᎪᎢ; ᎩᎶ ᏣᏍᎦᏅᎪᎢ ᎥᏝ ᎤᎪᎲᎯ ᏱᎨᏐᎢ, ᎥᏝ ᎠᎴ ᎤᎦᏙᎥᏒᎯ ᏱᎨᏐᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎿᏉ ᏩᎭ ᏗᎬᏩᎾᏚᎪᏓᏁᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᏯᎢ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒ ᎾᏂᏍᏓᏩᏕᎬᎾ ᏥᎩ, ᎠᏓᏅᏙᏍᎩᏂ ᏣᏂᏍᏓᏩᏕᎦ.\nᎢᏳᏃ ᎾᏍᎩ ᎤᏁᎳᎩ ᏰᏕᎵᏎᎭ, ᏂᎦᏗᏳ ᏓᎬᏬᎯᏳᏂ, ᎠᏂᎶᎻᏃ ᏛᏂᎷᏥ ᎠᎴ ᏓᎨᎩᎩᎡᎵ ᎢᎦᏤᎵᎪᎯ ᎠᎴ ᏗᎦᏤᎵ ᏴᏫ ᏙᏓᎨᎩᏯᏅᎡᎵ.\nᏚᏍᎪᎵᏰᎡ ᏗᎦᏙᎵ ᏃᎴ ᎣᏍᏓ ᎤᎦᏙᏍᏔᏁᎢ ᏚᏏᎳᏛ ᏌᎳᏓ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏣᏔ ᎨᏣᏓᏑᏯ ᏗᏂᏩᎾᎦᎳ ᎠᎴ ᏧᏂᏢᏥᏰᏍᎩ, ᎠᎴ ᏰᎵ ᎤᏂᏣᏔ ᎠᏂᎵᎾᎠ.\nᎠᎴ ᎦᎾᏍᏓ ᎥᎩᏕᎸᎩ ᎠᏙᎳᏅᏍᏗ ᎾᏍᎩᏯᎢ; ᏗᎧᎿᎦᏗᏙᎯᏃ ᎤᎴᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᏔᎴᎲᎦ, ᎠᎴ ᎭᏢᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᏔᎴᎲᎦ, ᎠᎴ ᎭᏟᎶᏣ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎾᏓᏙᎵᏍᏗᏍᎩ ᏥᎩ ᎾᎿᏂ.\nᎠᎩᏃᎮᎸ ᏗᎦᏘᏍᏗ ᎦᏰᏌᏗ ᎣᎬᏌ ᎣᎦᏤᎵ ᎨᏎ, ᎠᏥᎸᏉᏗ ᎠᎦᏴᎵᎨ ᎨᏎ, ᏀᎢᏳ ᎤᏲ ᏄᎵᏍᏔᏁ ᎤᎴᏅᎮ ᎠᏤᎸᏍᎬ ᏃᎴ ᎦᎵ ᎠᏰᎸ ᏚᏩᏥᏍᎦᎸᏤ ᏅᏯ ᎢᏗᏍᏔᏱ, ᎠᏰᎳᏍᏘ ᎠᎴ ᎦᏝᏗ ᏗᎬᏩᏲᏍᏙᏗ ᏱᎨᏒᎾ.\nᏣᎨ ᏱᎪᏩᏘᎭ ᎡᎳᏗ ᏫᏄᏍᏛ ᏚᏏᎳᏛ ᎦᎨᏒ ᎠᏣᏗ?\nᎾᏍᎩ ᎣᏏᏳ ᎬᏩᏃᎮᏍᎩ ᎨᏒᎩ ᎠᎾᏓᏅᏟ ᎵᏍᏗ ᎠᎴ ᎢᎪᏂᏯ ᎠᏁᎯ.\n“ᎠᏋᏌᎩ?” \nᏍᏈᏍᏓ ᏧᎪᎲ ᏏᏆ ᎤᏂᎷᏨ ᏃᎴ ᎤᎾᎵᏛᏔᏅ.\nᎠᏙᎯ ᏳᏬᏙᎳ ᎠᎵᏰᎾ, ᏍᎩᎾᎾ ᏂᎦᏓ ᏓᎪᎵᏰᏍᎪ.\nᎮᏏᎦᏯᏃ ᎹᎾᏏ ᎤᏕᏁᎴᎢ; ᎹᎾᏏᏃ ᎠᎼᏂ ᎤᏕᏁᎴᎢ; ᎠᎼᏂᏃ ᏦᏌᏯ ᎤᏕᏁᎴᎢ;\nᎩᎶᏍᎩᏂ ᎠᏢᏈᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᎠᏢᏈᏍᏗᏍᎨᏍᏗ.\nᏫᏥᎢᎦ ᎨᏒ ᎠᏁᎵᏍᎬ ᎤᏒᎮᎯ ᎤᎾᎵᏍᏔᏴᏗ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᎠᏂᏇᏅᏗᏍᎬ ᎠᏤᎯ ᎦᎾᏍᏓ, ᎠᏓᏪᎳᎩᏍᎬ ᎦᏚᎢᏣ ᎠᎾᏁᎸᏗᏍᎬ ᎤᏬᏗᎨ ᎢᏳᎵᏍᏙᏗ ᏯᏓᏪᎳᎩᏍᎬᎾ.\nᎠᏯᏙᎵᏳᏰᏃ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎠᏯᏙᎵᏳ ᏅᏃᎯ ᎬᏂᏛ ᏫᎦᎾᏄᎪᎬᎢ, ᎠᎴ ᎠᏂᎦᏲᎵᏳ ᎠᏂᏩᏘᎭ.\nᎯᎠ ᎾᏍᎩ ᎤᏩᏒ ᏍᎩᏃᏁᏗᏱ ᎠᏆᏚᎵᎭ; ᎠᏓᏅᏙᏍᎪ ᏕᏥᏲᎯᏎᎴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏂᏣᏛᏁᎲᎢ, ᏥᎪᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎢᏦᎯᏳᎯ ᎢᏣᏛᎩᏍᎬᎢ?\nᎪᎳ ᏓᎦᎶᏐᏂ, ᏓᏛᏍᏆᎶᏥ ᎢᎦ, ᎤᏁᏍᏓᎳ ᏓᎬᎾᏬᏏ ᎠᎹ ᏗᎦᏁᎲ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏚᏗ.\nᎤᎵᏏᏂᏗ ᏄᏪᏎ, “ᏲᎾ ᎤᏤᏍᏙ, ᏣᏕᎶᏆᏍᏗ ᎨᏎᏍᏗ ᏣᏓᏓᏏᎾᎲᏍᏙᏗ.” \nᏴᏫᏰᏃ ᎤᏪᏥ ᏓᎦᎷᏥ ᎤᏙᏓ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏕᏍᏗ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏓᏘᏁᎮᏍᏗ; ᎿᏉᏃ ᏙᏛᎫᏴᎡᎵ ᎾᏂᎥ ᏴᏫ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ.\nᎢᎾ ᏓᏕᏏ, ᎠᏆᏛᏅ, ᏭᏕᎵᎬ ᏓᏕᏏ.\nᎯᎠᏃ ᎸᎵᏍᏔᏁ ᎾᎥ ᎤᎷᏨ ᏒᎦᏙᎯ ᎠᎴ ᏇᏗᏂᏱ, ᎾᎿ ᎣᎵᏩᏲᎯ ᎤᏌᎯᎸ ᏥᏚᏙᎠ, ᎾᏍᎩ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏅᏎᎢ,\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎤᎦᏔ ᏧᏫᏎᎢ ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ;\nᏩᏥᎳ ᎤᏍᏔᏲᏎᎴ, ᎦᏅᏓᏛ ᎤᏩᏯᎸᏤ ᎠᎰᎴ ᎦᏚᎢᏣ.\nᏥᏌᏃ ᎠᎦᏔᎯᏳ ᎨᏒ ᏂᎦᎥ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏪᏅᏒᎩ ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎦᎪ ᎡᏥᏲᎭ?\nᎨᏍᏗ ᎣᏍᏓ ᎢᎦ ᏱᎨᏎᏍᏗ ᎤᏪᎵᏎ ᎤᏃᎴ.\nᎢᏥᎪᏩᏘᎭ ᏂᎦᏅᎯᏒ ᎪᏪᎵ ᎢᏨᏲᏪᎳᏁᎸᎢ, ᎠᏋᏒ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ.\nᎤᏩᏒᏃ ᎤᏏᏙᎵ ᏙᎴᏛ ᎠᏄᏬ, ᎠᎴ ᎤᏕᏒ ᎠᏰᎸᎢ, ᎠᎴ ᎠᏄᏬᎩᎯ ᏙᎴᏛ ᎤᏪᏣᎸᎳᏅ, ᎠᏤᎵᏍᏛ ᎤᏅᏁ ᎾᏍᎩ ᏅᏲᎯ ᎠᏍᎪᏒᎢ, ᎠᎴ ᏅᏲᎯ ᎠᏍᎪᏒᎢ, ᎠᎴ ᏅᏯ ᎤᏪᏌᏉᎴᎴᎢ ᎠᏤᎵᏍᏛ ᎦᎶᎯᏍᏗᏱ ᎤᏁᎢ.\nᏗᎤᎷᏨᏃ ᏚᏩᏛᎮ ᏔᎵᏁ ᎠᏂᎵᎾᎡᎢ, ᏗᏂᎦᏙᎵᏰᏃ ᏗᎦᎨᏗᏳ ᎨᏎᎢ, ᎥᏝ ᎠᎴ ᏱᏂᎦᏔᎮ ᎢᏳᏂᏪᏍᏗᏱ ᎤᏂᏁᏤᏗᏱ.\nᎠᎴ ᎬᏩᏚᏫᏛ ᎾᎿ ᎦᏍᎩᎸ ᏅᎩᏦᏁ ᏕᎦᎧᎲ ᏗᏍᎩᎳᏗᏍᏗ; ᏗᏍᎩᎳᏗᏍᏗᏱᏃ ᎥᎦᏥᎪᎥᎩ ᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏣᎾᎵᏍᏚᎸᏃ ᏗᎵᏍᏚᎶ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ.\nᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᏭᏎᎴ ᏣᏄᏏ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏓᏁᎸ ᎢᎸᎯᏢ ᎢᏥᏴᎯᎮᏍᏗ, ᎾᎿᏉ ᎢᏣᏅᎥᏍᎨᏍᏗ ᎬᏂ ᎥᏣᏂᎩ ᎾᎿᏂ.\nᎿᏉᏃ ᏗᎾᏓᏂᏱᏍᎩ ᎬᏩᏂᎷᏤᎸᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏆᎵᏏ. ᎯᎠᏃ ᏂᏚᏂᏪᏎᎸᎩ; ᎦᏙᏃ Ꮭ ᏴᎡᏣᏘᏃᎦ?\nᎯᎠ ᎾᏍᎩ ᎡᏥᏍᏗᏰᏔᏅᎯ ᏥᎩ ᎥᏝ ᎢᏥᏯᏅᏛ ᎤᏓᏅᏖᎸᎯ ᏱᎩ.\n”ᎭᎦᏎᏍᏕᏍᏗ ᎩᏟ!” ᎤᏛᏁ ᎤᏃᏕᎾ.\nᎠᎬᏱ ᎤᏂᏩᏛᎯᏙᎸ ᏫᎵᎻ ”ᎤᏍᏆᏂᎩᏗ ᏏᏆ” ᏥᎨᏎᎢ ᎱᏂᎷᏤ ᏃᏉ ”ᎤᏣᏓ ᎣᏍᏓ” ᎨᏒ.\nᎠᏎᏃ ᎾᎯᏳᎢ, ᎤᏁᎳᏅᎯ ᏁᏥᎦᏔᎲᎾ ᏥᎨᏒᎩ, ᎪᎱᏍᏗ ᏕᏥᎧᎿᏩᏗᏙᎲᎩ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎤᎾᏁᎳᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎩᎶᏍᎩᏂ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏂᎯ ᎢᏤᎲᎢ, ᎾᏍᎩ ᎡᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ.\nᎠᏎᏃ ᎬᏂᏳᏉ ᎾᏍᎩ ᎤᏬᏰᏂ ᎠᏆᏡᏗᏍᎩ ᎣᎩᎾᏖᏆᎶᎭ ᎠᏂ ᎦᏍᎩᎸᎢ.\nᏐᏉ ᎤᏩᏌ ᏗᎦᏅᎥᏍᎩᎭ?\nᏗᏣᎴᎲᎦ! ᎢᏓᎢᏎᏍᏗ! ᎬᏂᏳᏉ ᎠᏉ ᏓᏯᎢ ᎠᏆᏡᏗᏍᎩ.\nᎠᎦᏙᎥᎯᏍᏗᏍᎩᏂᏃᏅ ᎨᏒ ᎣᏨᏗᏍᎪ ᎣᏥᏬᏂᎯ ᎪᎱᏍᏗ ᏄᏂᎷᎶᏤᎲᎾ; ᎥᏝ ᎠᏗᎾ ᎡᎶᎯ ᎤᏤᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎢᎦᎵᏍᏗᏍᎩ ᏥᎩ.\nᎤᏠᎩ ᎠᎳᏂ ᏭᏏᎳᏛᏁᎴ, ᎤᏚᏥ ᎰᎻ ᏭᏴᏅᎮ ᎤᏠᎩ ᎠᎳᏂ. ᏩᎦ ᏃᎴ ᏐᏈᎵ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏙᎸ ᎤᏴᎵᎴ ᎤᎾᏟᏃᎮᎴ ᏲᎾ ᎤᏤᏍᏙ.\n“ᎤᏲᏨ ᎠᏆᏛᏅᏙᎩ ᏓᏥᎵᏬᏥ,” ᎠᏓᏰᎵᏍᎨ.\nᎩᎶᏰᏃ ᎤᏚᎵᏍᎨᏍᏗ ᎤᏍᏕᎸᏗᏱ ᎬᏅᎢ, ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏲᎱᏎᎮᏍᏗ ᎬᏅᎢ, ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎤᏩᏛᏗ ᎨᏎᏍᏗ.\nᎠᏎᏃ ᎭᏫᏂ ᎠᏰᎸᎢ ᏭᏭᏍᏔᏁ ᎠᏰᎳᏍᏘ.\nᎥᏝ ᎿᏉ ᎠᏥᏅᏴᏓᏍᏗ ᎾᏍᎩᏯᎢ, ᎤᏟᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏥᏅᏏᏓᏍᏗ, ᎣᏅᏟ ᎠᎨᏳᎯ ᎾᏍᎩᏯᎢ, ᎠᏴ Ꮀ ᎤᎬᏫᏳᎭ ᏥᎨᏳᎢ, ᏂᎯᏍᎩᏂ ᏂᎦᎥ ᎤᏟᎯᏳ ᎯᎨᏳᎢ, ᎾᏍᎩ Ꮎ ᎤᏇᏓᎵ ᎨᏒ ᎠᎴ ᎤᎬᏫᏳᎯ ᏕᏍᏓᏁᎶᏛᎢ?\nᎾᏍᎩᏃ ᎡᎳᏪ ᎤᏅᏅ, ᏥᎻ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᎠᏴ ᏍᎩᏯᏛᏓᏍᏓᏏ.\nᎨᎵᎠ ᎠᏍᏓ ᎠᎩᏂᎬᎦ ᎠᎩᏂᏱᏍᎩ.\nᎠᏓᏁᎸ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏂᏴᏍᏗ ᏃᎴ ᏦᎨᏏ ᏃᎴ ᎠᏙᎯ ᏚᎾᏬᏍᏔᏁᎢ.\n“ᎠᏁᎵᏗ ᏓᎦᏓᏒᏂ ᎠᏗᏆᎸᏕᏲ ᎦᏆᏗ ᏓᏥᏆᎸᏕᏱ ᏃᎴ ᏧᏳᎪᏗ ᎠᏎᏍᏗ ᏛᎴᏫᏍᏔᏂ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏚᎧᏔᏍᏔᏁᎢ ᏫᎵᎻ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎬᏩᎪᏁᎶᎯᏎᎸᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎯᎠ ᏄᏪᏒᎢ, ᎠᏴ ᎾᏍᎩ ᎾᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏛᎶᏒᎯ.\nᏂᎯᏍᎩᏂ ᏂᏥᏍᎦᏅᎾ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎾᏍᎦᏅᎾ ᏥᎩ.\nᎡᏕᏲᎲᎦ ᎯᎠ ᎤᏓᏅᏕᏙᏗ, ᎠᎾᏗᏍᎨ ᎾᎥ ᎢᏳᎾᏓᎵ.\n“ᏥᎦᏔ, ᎠᏎᏃ ᎾᎥᏂ ᎤᏩᏌ ᏥᎪᏩᏘ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏏᏆ ᎤᏅᎪᏨ! \nᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎤᎾᎵᎮᎵᏤ ᏐᏉ ᎤᎾᎵ ᎤᏓᎵᏗᎩᎡᎸ.\nᎢᏳᎾᏛᏁᏗᏱ ᏂᎦᎥ ᏦᏰᏂ ᎠᎴ ᎭᏓᏅᏖᏍᎬ ᎦᏳᎳ ᏗᏧᎪᏔᏅᎯ ᏥᎨᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ.\nᎢᎦᏓ ᎠᏈᏴᏗ ᏧᏂ ᏃᎴ ᎢᎦᏓ ᎧᏂᎩᏓ.\nᏰᎵ ᏩᎩᏍᏘᏅ ᎤᏐᏱ ᏦᎩᏂᎶᏒ Crockett, ᎢᏧᎳ ᎣᎩᏂᎾᎩᏗᏅᏓ ᎨᏒ. ᎠᏎᏃ Crockett ᏄᎵᏍᏔᏂᏙᎸ ᎤᏲᏍᏔᏁ ᏚᏓᏁᏤᎸ ᎤᏙᏓ, ᎤᎵᏗᎩᎡᎸ ᎤᎵᏍᎩᏰᏗᏍᏔᏁ ᏏᏆ ᏗᏰᎵᏙ, ᎠᎬᏱ ᏣᎾᏂᎩᏍᎨ.\nᎭᎵᏍᎪᎥᏍᎦ.”\nᏥᏌᏃ ᎤᎷᏨ ᏚᏬᏁᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᎩᏁᎸ ᏂᎦᎥ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ.\nᎠᏧᏣᏃ ᏏᏊ ᎢᏈᎬᎢ ᏩᏥᎷᏤᎸᎢ.\nᎾᎿᏃ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᎬᏬᎵᏨ, ᎬᏩᏚᏫᏛ ᏚᎾᏓᏅᏏᏙᎸᎩ, ᏕᎬᏩᏘᏃᎮᎸᎩ ᏂᎦᏛ ᏧᏂᏢᎩ.\nᎠᏎᏃ ᏂᎦᎥ ᎾᏍᎩ ᎬᏆᎵᏍᏕᎸᏙᏗ ᎠᎩᏰᎸᏅᎢ, ᎾᏍᎩ ᎡᏍᎦᏉ ᎢᏯᏋᏁᎯ ᎠᎩᏰᎸᎭ ᎦᎶᏁᏛ ᏅᏓᎦᎵᏍᏙᏓ.\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ; ᎭᏓᏅᎾ, ᏓᎬᏅᏏᏰᏃ ᎢᏅ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲᎢ.\nᎾᎨ ᎢᏴ ᎠᏓᏪᎳᎩᏍᎬ ᎠᏂᏅ ᏴᏫ, ᎤᎵᏏᎩ ᎤᎾᏓᏴᎳᏛ.\nᎠᏂᏃᎯᎵᏙ ᏚᏂᏌᎴᏓᏅ ᎦᎶᏇ.\nᎧᏄᎦᏟ ᎤᏅᏂᏎᎢ, ᎤᏩᎨᏫᏎᎢ ᎧᏄᎦᏟ ᎠᎦᏅ ᎤᏍᏆᏂᎪᏙᏗ ᎠᎳᏂ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏛ ᏥᎪᏩᏘᎭ, ᎠᎴ ᏴᏫ ᎤᏪᏥ ᎦᏙᎦ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏᏗᏢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ ᏕᏫ ᏄᏛᏁᎸ ᏧᏂᎬᏎᎮ ᎢᏳ, ᎠᎴ ᎠᎪᏄ ᏧᏲᏏᏍᎨᎢ, ᎤᏩᏒ, ᎠᎴ ᎾᏍᎩ ᏣᏁᎮᎢ?\n”ᎨᏍᏗ ᎤᎵᏬᏥᏕᎾ ᏱᎩ,” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎠᏂᏆᎵᏏᏃ ᎬᏩᎷᏤᎸ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏚᏳᎪᏗᏍᎪ ᎠᏍᎦᏯ ᎤᏓᎢᏅᏗᏱ ᎤᏓᎵᎢ? ᎬᏩᎪᎵᏰᏍᎨᎢ.\nᎦᏳᎸ ᎤᏂᎶᎯᏎᎸ ᎤᏍᎦᏎᏗ ᎤᏟᏲᎵᏍᏗ ᏭᏂᎷᏨ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ ᎦᏙ ᎠᏴ ᏗᎩᎾᏓᏛᏙᏗ? ᎥᏝ ᎠᏏ ᎠᏴ ᏯᎩᏍᏆᎸᎡᎸ.\nᎠᎴ ᎠᏤᎷᎩ ᎤᏃᏴᎬᎢ, ᎠᎴ ᎧᏁᎬ ᎤᏃᏴᎬᎢ; ᎾᏍᎩᏃ ᎤᎾᏛᎦᏅᎯ ᎤᏂᏔᏲᎴ ᏔᎵᏁ ᎾᏍᎩ ᎢᎨᏂᏪᏎᏗᏱ ᏂᎨᏒᎾ.\nᎠᏎᏍᎩᏂᏃᏅ ᎯᎠ ᎾᏍᎩ ᎥᏝᏍᏗ ᏱᏣᎵᎮᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏗᏓᏅᏙ ᎨᏦᎯᏳᏒᎢ; ᎢᏣᎵᎮᎵᎨᏍᏗᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏕᏣᏙᎥ ᎦᎸᎳᏗ ᏦᏒ ᏫᏗᎪᏪᎸᎢ.\nᎦᎳᎱᏂ ᏧᎷᏫᏍᏔᏁᏗ ᏙᎩᎾᏦᏒ Crockett, ᎦᎸᎳᏗ ᎨᏒ ᏕᎦᏃᏣᏢ.\nᏑᏓᎵᏃ ᏫᏄᏒᎸ ᏥᏌ ᏚᏘᏅᏒᎩ ᏈᏓ, ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ ᏥᎻ ᏗᎾᏓᏅᏟ, ᎠᎴ ᏚᎿᎷᏔᏅᎩ ᎢᏅ ᎢᎦᏘ ᏱᏓᎸ ᎤᏅᏒ ᎨᏒᎢ,\nᏭᎾᎩᏎ ᏩᎶᏏ.\n”ᎤᏍᎦᏃᎵᎨᏍᏗ ᏂᏫ!”\nᏃᏉ ᏥᏩᏘᏍᎪ ᎠᏓᏟᏔᏗᏍᎬ ᎠᏙ.\nᎠᎦᏴᎵᎨᏰᏃ ᎾᏍᏉ ᎥᏝ ᎩᎶ ᏱᏗᎫᎪᏓᏁᎰᎢ, ᏚᏲᎯᏎᎸᏍᎩᏂ ᎤᏪᏥ ᎾᎦᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ,\nᎢᏣᏛᎬᎦ ᎢᏨᎨᏳᎢ ᎢᏓᎵᏅᏟ, ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᏱᏚᏑᏰᏒ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎡᎶᎯ ᎠᏁᎯ, ᎤᏁᎿᎢᏳ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏙᎵᎦ ᎤᏤᎵᎪᎯ ᎾᏍᎩ ᏧᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ ᎬᏩᎨᏳᎯ?\nᎬᏂᏳᏉᏃ ᎠᏄᏬ ᎠᏰᏙᎳᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏚᎵᏍᏡᏰᎢ, ᎦᎸᎳᏗ ᏧᎴᏅᎮ ᎡᎳᏗ ᏭᏍᏆᏗᏍᏔᏁᎢ; ᎠᎴ ᎦᏙᎯ ᎤᎵᏖᎸᏁᎢ, ᎠᎴ ᏅᏯ ᏚᎾᎵᏍᏡᏰᎢ.\nᏙᏳᏗᏍ ᎠᏎᏛᏎ ᏑᏟᎶᏓ ᎾᎥ, ᏃᏊ ᎤᏔᏅ ᏦᎨᏏ ᏄᏍᏛ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎩᎶ ᎤᎬᏫᏳᎯ ᏧᏓᏅᏖᎴ ᎣᏍᏛ ᎢᏳᏅᏁᏗᏱ ᏚᏚᎬ ᏧᏅᏏᏓᏍᏗ.\nᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏪᏢᏅᎯ ᎨᏒ ᎣᏏᏳ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᎠᏲᎢᏎᏗ ᏱᎩ, ᎢᏳᏃ ᎤᎵᎮᎵᏍᏗ ᎣᏓᏅᏛ ᏱᏛᏓᏂᎸᎦ;\nᎢᏳᏃ ᏗᎹᏗ ᏫᎦᎷᏨᎭ, ᎢᏣᎦᏌᏯᏍᏕᏍᏗ ᏂᎦᎾᏰᏍᎬᎾᏉ ᎢᏤᎳᏗᏓᏍᏗᏱ; ᏚᎸᏫᏍᏓᏁᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎤᏠᏱᏉ ᎠᏴ.\nᎤᏪᎳ ᏥᎩᎠ, ᏧᏪᎳ ᏕᏥᎩᏍᎪᎢ Ꮡ, Ꮜ, ᏌᎢ\nᏃᏉᏗᏍᏉ ᏣᏂᎧᏔᎮ ᎢᏳᏊ ᏓᎦᎷᏥᏒ ᏍᎩᎾ. ᎭᎪᏘᏍᎬᎢ ᏧᎧᏒᏍᏗ.\n“ᏧᏍᏆᏴᏍᏗ?” \nᎠᏎᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎾᏍᏉ ᏂᎦᏛ ᏱᏚᏃᏕᏍᏔᏅ, ᎠᏴ ᎠᏎᎥᏝ.\nᎠᎬᏱ ᎢᏣ ᎤᏍᏔᏩᏛᏎ ᎤᏢᏲᎵᎲ ᎢᎪᎯᏓ, ᏃᏉ ᎤᎵᏍᏆᏛ ᎤᎪᎲ ᎤᏩᏍᏉᎸ ᎩᎦ ᏃᎴ ᎤᏕᎭᏯᎵᏙᎴ, ᎪᎰᏍᏘ ᏯᏩᏘᏍᎬᎾ.\nᎠᏃᎯᏳᎲᏍᎩᏃ ᎠᏂᏏᏴᏫᎭ ᏰᎵ ᎢᎬᏩᎾᏛᏁᏗ ᎨᏒ ᏚᏄᎪᏔᏁ ᎤᎾᏓᏅᏍᏗᏱ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎠᎾᎵᏅᏟ ᏧᏗᏱ ᎠᏁᎯ.\nᏫᎨᏣᏲᎵᎦ ᎡᎦᏉ, ᏗᏧᎳᎭ ᎣᏍᏗᏴᎩ ᎦᎶᏁᏛ ᏥᏌ ᎣᎩᏂᏍᏛᏗᏍᎬᎢ;\nᎠᏏᏉ ᎧᏁᎨᎢ, ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᏁᎸ ᏅᏓᏳᎾᏓᎴᏅᎯ ᎤᏂᎷᏤ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎤᏲᎱᏒ ᏤᏥ; ᎦᏙᏃ ᎠᏏᏉ ᎢᎯᏯᏕᏯᏙᏗᎭ ᏗᏕᏲᎲᏍᎩ?\nᎠᏎᏃ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏞᏍᏗ ᎠᏎᏉ ᏱᏨᎫᏘᎶᏍᎨᏍᏗ ᎾᏍᎩ ᏥᎾᎾᏛᏁᎰ ᏧᎾᏓᎴᏅᏛ ᏴᏫ; ᎤᏣᏘᏰᏃ ᎣᏥᏁᎬ ᎤᏓᎦᎵᏍᏙᏔᏂ ᏓᏲᎦᏛᎦᏁᎵ ᎠᏁᎵᏍᎪᎢ.\nᏰᎵ ᎪᎯᏓ ᎤᏬᏢ ᏱᎧᏁᎬᎾ ᏃᎴ ᎪᎦᏍᎬ ᎦᏅᏃᏩ ᎦᏅᎯᏓ ᎫᎭᏟ, ᎪᏍᏔᎭ ᏂᎦᎵᏍᏗᏍᎬ ᎢᎪᎯᏛ.\nᏧᎾᏄᎪᏫᏎᏗᏱ ᎪᎯ ᎨᏒ ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎨᏒᎢ; ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎫᏓᎴᏍᎩ ᎾᏍᎩ Ꮎ ᎪᎯᏳᎲᏍᎩ ᏥᏌ.\n“ᏦᎢ ᎢᏯᏂ ᏌᏌ ᎠᏂᏨᏯ ᎢᏳᏍᏗ ᏂᎦᎵᏍᏗᎭ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᏗᎾ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎰᏩ ᏕᏥᎨᏳᏎᏍᏗ ᏗᏣᏓᎵᎢ ᎾᏍᎩᏯ ᎢᏨᏒ ᏂᏣᏓᎨᏳᏒᎢ; ᎠᎨᏴᏃ ᎤᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎤᏰᎯ.\nᎤᏍᏆᎸᎲ ᎢᏴ, ᎡᎳᏗ ᏄᏛᏁᎸ ᏲᎾ ᎤᏏᎳᏓᏅ ᎤᎭᏄᏮ, ᎤᏁᎦᎸ ᎤᏓᏁᎪᏴᏓ ᏂᎦᎵᏍᏗᏍᎬ ᏃᎴ ᎦᏓᎥ ᏧᎪᎸ ᎦᏚᎢᏣ, ᏚᏔᎷᎩᏍᎬ ᏚᏁᎷᎲ, ᎾᏍᎩᏯ ᎠᏕᎳ ᎤᏁᎦ ᏗᏍᎪᎵᏰᎥ, ᎤᏍᏆᏙᏅ ᎠᏥᏂᏐᏗ ᎤᎭᏴᏍᏗ.\nᏐᏉ ᎢᏳᏩᏂᎸ ᎢᏴ ᎤᎵᏍᏔᏴᏃᏁᏍᏗ.\nᎠᏎᏃ ᎤᏄᎪᏨ, ᎤᎴᏅᎮ ᎤᏣᏘ ᏚᏰᎵᎯᏍᏔᏁᎢ, ᎠᎴ ᏚᏃᏣᎳᏁ ᎾᏍᎩ, ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏥᏌ ᎥᏝ ᎿᏉ ᎬᏂᎨᏒ ᏫᎬᏩᏴᏍᏗ ᏱᎨᏎ ᎦᏚᎲᎢ, ᏙᏱᏗᏢᏉᏍᎩᏂ ᎢᎾᎨ ᏕᎨᏌᏗᏒ ᎡᏙᎮᎢ; ᏂᎬᎾᏛᏉᏃ ᏂᏙᏓᏳᏂᎶᏒᎯ ᎬᏩᎷᏤᎮᎢ.\nᏴᏫᏰᏃ ᎤᏪᏥ ᎤᎬᏫᏳᎯ ᎾᏍᏉ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ.\nᎧᏂᎩᏓ ᏌᎳᏓ ᎨᏎᏍᏗ ᏳᏂᏴᎲ ᎠᏧᏣ.\nᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᏓᏁᎯ ᎢᏥᎧᎵᎢᏍᏗ ᎨᏎᏍᏗ ᏄᏓᎴᏒ ᎤᎵᎮᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᎢᏦᎯᏳᏒ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎤᏣᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎩ ᎢᏨᏒᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᎵᏂᎬᎬ ᎢᏳᏩᏂᏌᏛ.\nᎠᎴ ᎤᎬᏫᏳᎯ ᎤᏂᎧᎲᎩ ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᏥᎩ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒᎢ, ᎾᏍᎩᏃ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎠᏆᏙᎾ ᏚᏙᎥ, ᎠᏂᎪᎢᏍᎩᏂ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏉᎵᏯᏂ ᏚᏙᎥ.\n“ᏕᏍᏔᎦᏎᏍᏕᏍᏗ ᏚᎾᏦᏩᏛ ᏗᏂᏓᎾᏌᎲᏍᎩ!” ᏚᏪᏯᏙᏔᏁᎢ ᎤᏂᏙᏓ.\nᎤᏰᎸᏛᏃ ᎠᎪ-ᏩᏛᏗ ᎨᏎᏍᏗ ᏅᏙ ᎢᎦ ᎡᎯ ᎧᎸᎢ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎧᎸᎢ, ᎠᎴ ᏃᏈᏏ ᎠᏂᎧᎸᎢ; ᎠᎴ ᎡᎶᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲ ᎤᏪᎵᎯᏍᏗ, ᎠᎴ ᎤᏕᏯᏙᏗ ᏅᏓᏳᎾᎵᏍᏓᏁᎵ; ᎠᎺᏉᎯ ᎠᎴ ᎠᎹ ᏓᎵᏍᏗᎳᏁᎬ ᎤᏍᏆᏃᏴᎨᏍᏗ;\nᎦᎪᎨ ᎠᏍᎦᏯ ᎯᎠ ᏥᏂᏣᏛᏅ, ᎢᏳᏃ ᎤᏪᏥ ᎦᏚ ᏳᏔᏲᏎᎭ, ᏅᏯᏉ ᏯᎲᏏ?\nᎤᏍᎦᏃᎵ ᎠᏓᏏᏎᎢ ᏓᏆᎴᎳ.\nᏕᎾᏓᎪᎲᎤᎢ ᎩᏥ, ᎬᎨᏳ.\nᎤᏲ ᎢᏳᎵᏍᏔᏁᎸᎯ, ᎠᏍᎦᏯᏯ ᏗᏘᏲᎯ Cooper ᏰᎵ ᎪᎯᏛ ᎤᏩᏙᏁᎲ ᎨᏎ ᎤᏛᏐᏅ ᎤᎬᏫᏳᎯ, ᎠᏂᎦᏗᏛ ᎠᏂᏴᏫᏯ ᏧᏂᎶᎯᏎᎸ ᎨᏎ ᏰᎵ ᎪᎯᏛ.\nᎦᎸᎳᏗ ᎤᏤᎵᎪᎯ ᎾᏍᎩᏯᏉ ᎩᎶ ᎤᎬᏫᏳᎯ ᏧᏛᏅᎢᏍᏔᏁ ᏣᎦᏨᏍᏙᏗᏱ ᎤᏪᏥ ᎠᏫᏅ,\nᎢᏳᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨ ᎤᎾᏤᎵ ᏱᏂᎨᎬᏁᎭ, ᎿᏉ ᎠᏎᏉ ᏂᎦᎵᏍᏗᎭ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏚᎢᏍᏛ ᎪᎱᏍᏗ ᎬᎪᏗ ᏂᎨᏒᎾ ᏂᎦᎵᏍᏗᎭ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎤᏪᏘ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏚᎩᏛ ᎢᎬᏪᏅᏛ ᎢᏤ ᏳᏚᎵᏍᎪᎢ; ᎯᎠᏰᏃ ᏂᎦᏪᏍᎪᎢ, ᎤᏪᏘ ᎤᏟ ᏃᎯ.\nᎠᏣᎳᎩᏃ ᎠᏍᎦᏯ ᎠᎴ ᏁᏙᎮ ᎠᎹ ᏰᏟ ᎢᏤ ᏂᎨᏎ ᎾᎾᏃ ᏧᏓᎴᏁ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎠᏴ ᎠᏆᏛᎦᏅ ᎡᏦᎢᏳᏒ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᏕᏥᎨᏳᏒ ᎾᏂᎥ ᎤᎾᏓᏅᏘ,\nᎾᏍᎩ ᎦᎳᏐᏫᏍᏗ ᎤᏤᎵᎦ ᎠᏰᎭ, ᎠᎴ ᏂᎦᏛ ᏓᎦᎳᏐᏫᏏ, ᎤᏤᎵᏃ ᎤᎦᏔᏔᏅᎯ ᏓᎦᏟᏌᏂ ᏛᏂ ᎠᏓᎾᏅᏗᏱ ᎤᏘᏴᎯᏍᎩᏂ ᏛᎪᎲᏍᏔᏂ ᏂᎬᏠᏍᎬᎾ ᎠᏥᎸᏱ.\n“ᎭᏗ, ᏣᏉ, ᏓᏆᏎᎸ.\nᎢᎬᏱᏃ ᏭᏗᏢᏍᏔᏅ ᎤᎸᏎ ᎫᏩᏧᏁᎬ ᏡᎬ ᎤᎪᏩᏛᏗᏱ ᎤᏚᎵᏍᎨᎢ; ᎾᎿᏰᏃ ᎢᏗᏢ ᏭᎶᎯᏍᏗ ᎨᏎᎢ.\nᎠᎴ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒ ᎬᏂ ᏱᎰᏩ ᎤᏤᎵ ᎦᏣᏁᏛ ᎤᎪᎲᎯ ᏱᎩ\n“ᎨᏍᏗᏗ ᎤᎵᏬᏨ ᏱᎩ,” ᏧᏪᎷᏁ ᎰᎻ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᎢᎠᏎᎵᏛᏍᎨᏍᏗ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᏥᎸᎨᎳᏍᏗᏱ, ᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᎿ ᎠᎲᎢ.\n”ᎭᏩ,” ᎤᏛᏁ ᎠᎳᏂ, ”ᎠᏯ ᎨᎵᏍᎬ ᎦᏲᏟ ᏣᎵᏓᏍᏔᏅ, ᎨᏍᏗ ᎧᏅᏂᏍᎩᏉ ᏱᎩ.”\nᏥᏌᏃ ᎯᎠ ᏂᏑᏪᏎᎸᎩ; ᏝᏍᎪ ᎢᎸᎯᏳ ᏱᏥᎪᎵᏰᎣ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ? ᎠᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏅᏯ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎵᏍᏔᏅ; ᎾᏍᎩ ᎯᎠ ᏱᎰᏩ ᏄᏛᏁᎸ, ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏕᏓᎧᏂᏍᎬᎢ.\nᎬᏃᎯᏎᎲ ᎢᏴ ᏕᎯᏍᏔᏅᏂᏍᎨᏍᏗ ᏥᏲᏎᎸ.\nᏓᎿᏩᏃ ᏄᎵᏍᏔᏅᎩ ᎦᎸᎳᏗ; ᎹᏱᎩᎵ ᎠᎴ ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏑᎾᎵᎸᎩ ᏚᏂᎦᏘᎸᏒᎩ ᎢᎾᏛ; ᎢᎾᏛᏃ ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᎾᏟᏴᎲᎩ,\nᎿᏉᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙᏃ ᏥᏍᏓᎵᎪᏅ ᎡᏍᏗᎪᎵᏰᏗᏱ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎠᏓᏅᏙ? ᎬᏂᏳᏉ ᎠᏉ ᎦᎶᎯᏍᏗᏱ ᏧᎾᎳᏏᏕᏂ ᏣᏰᎯ ᎬᏩᏂᏌᏅᎯ, ᎾᏍᎩᏃ ᏂᎯ ᏛᎨᏣᎾᏫᏛᎯ.\nᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᏥᎨᏐ ᎥᏝ ᎠᏍᎦᏂ ᏱᏚᎸᏫᏍᏓᏁᎰᎢ; ᎾᏍᎩᏰᏃ ᎤᏤᎵᎦ ᎤᎦᏔ ᎤᏪᎰᎢ, ᎥᏝ ᎠᎴ ᏰᎵ ᎬᏩᏍᎦᏅᎢᏍᏗ ᏱᎨᏐᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᎨᏒᎢ.\nᏅᎩᏉ ᎢᏳᏩᏂᎸ ᎨᏎ ᎠᏎᏃ ᎦᏳᎳ ᎤᏛᏅᎢᏍᏕ ᎤᏂᏏᏗ ᎤᏪᏅᏍᏗ ᏫᎵᎻ.\nᎠᏎᏃ ᏅᏙ ᎢᎦ-ᎡᎯ ᏧᎧᎸᏨ ᎤᎴᏴᏎᎢ; ᎠᎴ ᏂᏚᎿᏍᏕᏢᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎤᎿᏍᎬᏤᏉ.\nᎯᎸ ᏳᏪᏅ ᏓᏆᎴᎳ ᏃᎴ ᎠᏁᏙᎯ ᏓᎴᏫᏍᏗᏍᎨ, ᎠᎾᎦᏙᏍᏗᏍᎨ ᎦᎶᏍᎬ.\nᏂᎦᏓ ᎤᎵᏍᏕᏓᎵᏴᏓ.\nᎾᏍᏓᏴ ᎤᏰᏤ ᏌᎳᏓ, ᎤᎵᏖᎸᏂᎴ ᏚᏏᎳᏛ.\nᎤᏬᏚᎯᏳᏍᎩᏂ ᏂᎦᏛᏅᎢ ᎥᏝ ᏳᏂᎬᎪᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᏚᏭᏓᏔᏂᏙᎸ ᎠᏰᎸᎢ, ᎤᏟ ᎢᎦᎢ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎸ ᎾᏍᎩ ᎾᎿ ᎡᏍᎦ ᎨᏒᎢ;\nᎾᎯᏳᏉᏃ ᏒᏃᏱ ᏚᏯᏅᎮᎢ, ᎠᎴ ᏚᏬᏑᎴᎴ ᏕᎨᏥᎵᎥᏂᎸᎢ; ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎠᎦᏬᎡ ᎤᏩᏒ ᎠᎴ ᏂᎦᏛ ᏧᏤᎵᎦ.\nᏧᏓᏋᏓ ᎠᎦᏕ ᎣᏍᏓ ᎤᏰᎸᎮ ᏌᎳᏓ ᏫᎵᎻ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎯᎠ ᏂᎨᏥᏪᏎᎸᎭ; ᎢᎾᎨ ᎡᏙᎭ; ᏞᏍᏗ ᎾᎿ ᏫᏥᎶᏒᎩ; ᎬᏂᏳᏉ ᎤᏕᎵᏒ ᎧᏅᏑᎸ ᎠᏯᎠ; ᏞᏍᏗ ᏥᏦᎯᏳᏂ.\n”ᏣᏚᏥ ᎰᎻ ᎯᎸᎢᏴ ᎠᏛᎯᏍᏗᏍᎪ ᏏᏆ.\n“ᎠᎦᏛ ᎣᏍᏓ ᎠᏰᎸᏗ ᎠᏓᏑᏲᎲᏙᏗ,” ᎤᏛᏁ ᎡᎳᏆᏘ.\nᎤᎵᏏᎬ ᎢᏨᏁᏤᎸᎢ ᎢᎦᎦᏛ ᎢᏥ ᏁᎨᏍᏗ; ᎡᏣᏙᏅᎡᎸᏃ ᎨᏒ ᎦᏌᎾᎵ ᎢᏣᎵᏥᏙᎲᏍᎨᏍᏗ.\nᏒᎧᏔ ᏗᏧᎬ ᎭᏫᏂᏣ ᏤᏙᎭ.\nᏰᎵᏉ ᏚᏋᏙᏗ ᏥᎢᏍᏙᏗ ᏲᎾ ᎤᏪᎵᏎ.\nᏚᎾᎵᏥᏇᏃ ᎠᎴ ᎤᏂᏴᎡᎴ ᎦᎾᏍᏓ ᎠᎴ ᎤᏂᏍᏆᎸᏂᏍᏔᏁᎢ.\nᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᏣᏁᎳ ᎢᏳᏩᏂᎸ ᏫᏓᏂᏅᎨᎢ ᎦᏂᏏ.\nᎦᎦᏍ ᎡᏍᏛ ᏒᎦᏔ ᎢᏳᎾᏍᏗ ᏗᎨᎵᏍᎩ ᏕᎦᎶᏛ, ᎠᏰᎳ ᏓᎶᏂᎨ ᎠᏕᎳ ᎢᏗᎬᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎦᏙᎩᏯᏍᎬ ᎥᏝ ᎬᏁᎳᎩᏉ ᎾᏍᎩᏯ ᏱᎦᏙᎩᏯᏍᎦ; ᎦᎵᎲ ᎥᏝ ᎩᎶ ᎤᏃᎴᏉ ᏥᎦᎵᎥᏂᎰ ᎾᏍᎩᏯ ᏱᎦᎵᎭ.\nᎤᏙᎯᏳᎩ?” ᎤᏦᏱᎴ ᏫᎵᎻ.\nᏝ ᎿᏉ ᏰᎵ ᎩᎶ ᏍᎦᏁᏨᎯ ᎬᏩᏁᏤᏗ ᏱᎨᏎᎢ; Ꮭ ᎠᎴ ᎩᎶ ᎾᎯᏳ ᎢᏳᏓᎴᏅᏛ ᏰᎵ ᎦᎬᏩᏛᏛᏗ ᏱᎨᏎᎢ.\nᏍᏔᏯ ᎠᏂᏬᏂᏍᎪ ᏃᎴ ᎡᏝᏪᎯ, ᎨᏍᏗ ᏱᎪᎵᎨ ᎢᏳᏍᏗ ᎾᏂᏪᏍᎬ ᎡᎳᏗᏨ ᏥᏙᎬ.\nᏏᏌ, ᎤᎾᏛᏅᎩ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏏᏌ ᎠᏗᎾ ᎡᏥᎲᏏ ᏏᏌ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᏓᏗᎶᏂᏃ ᏫᏗᎨᎦᏘᏃᎸ ᏤᎪᎾᏯ ᏌᎳᏓᏱᎵ ᎤᏕᏁᎴᎢ; ᏌᎳᏓᏱᎵᏃ ᏥᎳᏇᎵ ᎤᏕᏁᎴᎢ;\nᎠᎴ ᎠᎰᎵ ᎤᏍᏚᎢᏒᎩ ᎤᏁᎳᏅᎯ ᎠᏐᏢᎢᏍᏗᏍᎬᎢ, ᏚᏙᎥ ᎦᎬᏩᏐᏢᏙᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎾᏍᎩ ᎾᎦᎸᎳᏗ ᎠᏁᎯ.\nᎾᏍᎩᏃ Ꮎ ᎤᎪᎲᎯ ᎤᏃᎮᎸᎩ, ᎧᏃᎮᏍᎬᏃ ᎤᏙᎯᏳᎭ, ᎠᎴ ᎠᎦᏔᎭ ᎤᏙᎯᏳᎯ ᎧᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᎨᏦᎯᏳᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᎴ ᎾᏍᎩ ᏓᎬᏩᎵ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏙᏛᎠᎴᏂ. ᎤᏣᏔᏅᎯᏃ ᎤᏲ ᎤᏂᏰᎸᏅᎩ.\nᎭᏁᎵᏍᎬ ᏱᏄᏍᏛᎾ ᏱᎩ.\nᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎨᏒ ᎾᎥ ᎢᎦᏓᎳ ᎣᏍᏛ ᎤᏰᎸᏗ ᎨᏒ ᏂᏓᏛᏁᎮᏍᏗ ᎾᏍᎩ ᎣᏍᏛ ᎨᏒ ᎤᎵᏂᎪᎯᏍᏗᏱ ᎤᎬᏩᎵ.\nᎠᎦᏙᎥᎯᏍᏗᏃ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ; ᎠᎵᏏᎾᎯᏍᏙᏗᏃ ᎨᏒ ᏔᎵᎢᏨᏗᏍᎨᏍᏗ ᏗᏨᏂᏗᏳ ᎨᏒᎢ; ᏗᏣᏂᏗᏳᏃ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ;\nᎾᏍᎩᏰᏃ ᎾᏍᏉ ᎾᎾᏛᏁᎮ ᎡᏘ ᎠᏃᏍᏛ ᎠᏂᎨᏴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏍᎦᏍᏙᏗᏍᎩ ᏓᎾᏣᏅᏍᎨᎢ, ᏚᏃᎯᏳᎭ ᏗᎬᏩᏂᏰᎯ,\nᎤᏍᎪᏒ ᏭᎶᏒ ᏂᎬᎾᏛ ᎡᏙᎮ, ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᎴᏂᏍᎩ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏩᏍᏗ, ᎩᎶ ᏳᎪᎲᎾ.\nᎤᎬᏫᏳᎯᏃ ᏓᎧᏁᏥ ᎯᎠ ᏂᏙᏓᎦᏪᏎᎵ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩᏰᏃ ᏥᏁᏣᏛᏁᎸ ᎤᏍᏗᎧᏂ ᎯᎠ ᎾᏍᎩ ᎣᏣᎵᏅᏟ, ᎠᏴ ᏂᏍᎩᏯᏛᏁᎸᎩ.\nᏫᏥ ᎢᏣ ᏭᎶᏎ, ᎩᎳ ᎤᏕᏅ ᎤᏃᏕᎾ ᎠᏓᎯ ᎤᏍᏓᏩᏗᏒ ᎤᎪᎮ ᏫᎵᎻ.\n“ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᏥᏍᏕᏥ ᎤᏤᎵ ᏦᏒᎢ.\nᎶᎻᏍᎩᏂ ᎤᏪᏙᎸ ᎤᎵᏂᎩᏛ ᎠᎩᏲᎸᎩ, ᎠᎴ ᎠᎩᏩᏛᎲᎩ.\nᎤᏰᏤ ᏧᏍᏆᏴᏍᏗ.\nᏓᏔᎴᎦᏒ ᎦᎸᎳᏗ ᎠᏦᎭᏴ, ᏃᎴ ᎤᎾᎴᏗ ᏙᎪᏒᎲ ᎤᎾᎴᏗ ᏗᏂᏍᏔᏲᎯ.\nᎤᎵᏏᎩ ᏂᎦᎵᏍᏗᏍᎬ, ᎤᏍᏗ ᎪᏔᏍᎨ ᏔᎷᎩᏍᎩ ᎪᎭᏱᏅᏍᏘ ᎠᎰᎵ ᎢᎬᏓ.\nᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᎪᎯᏓ ᎤᏰᎵᏙᎴ ᎧᏃᎯᏎᎲ ᎠᎵᏥᏙᎲᏍᎩ ᎤᏍᏆᏂᎩᏗ ᏄᎵᏍᏔᏅ ᏕᎦᎶᎨᏒ.\nᎠᏰᎵᏃ ᎤᏜᏅᏛ ᎾᎿ ᎡᏓᏍᏗᏱ, ᎠᎴ ᎢᏧᎳᏗᏢ ᎤᏪᏴᎢ, ᏡᎬᎩ ᎬᏂᏛ ᎠᏓᏁᎯ ᏡᎬᎢ, ᎾᏍᎩ ᏔᎳᏚ ᎢᏳᏓᎴᎩ ᎠᏓᏛᏍᎬᎩ ᎠᎴ ᏂᏓᏦᎳᏂᏒ ᎬᎾᏍᎬᎩ ᎤᏓᏔᏅᎯ; ᎤᎳᏍᏚᏒᏃ ᎤᎾᏅᏬᏗ ᎨᏒᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏓᏅᏖᏍᎩ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏔᏲᎴ ᎤᏩᏛᏗᏱ ᎤᏁᎳᏗᏍᏗᏱ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ.\nᏁᏂᏏ ᎢᏣ ᎤᎵᏍᎫᏩ ᏣᎵ.\nᎿᏉᏃ ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒᎢ, ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏧᏙᎢᏛ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏫᏚᎷᏤᎴᎢ,\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᏜᏩᏍᏗᏍᎨᏍᏗᏃ ᎤᏓᎵᎢ, ᎾᏍᎩᏃ ᎠᏂᏔᎵ ᏌᏉᏉ ᎨᏎᏍᏗ ᎤᏂᏇᏓᎸᎢ.\nᏙᎢᏳᏍᏗ ᎭᏗ ᎣᎯᏍᏙᏗ?, ᎤᏛᏅ ᎠᏂᏴᏫ ᏧᎦᏎᏍᏗᏕᎩ\n“ᏏᏆ ᎤᎾᏕᏁ ᎤᏒᎯ.” \nᎨᏍᏗ ᏔᎵᏁᎢ ᏳᏓᏅᏌ.\nᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎡᏆᎭᎻ ᏅᏓᏳᏁᏢᏔᏅᏛ, ᎠᎴ ᎩᎶ ᎢᏣᏓᏑᏰᏍᏗ ᎡᏥᎾᏰᏍᎩ ᎤᏁᎳᏅᎯ, ᏂᎯ ᎢᏣᏛᎪᏗ ᎡᏥᏰᎸᎾᏁᎸ ᎧᏃᎮᏛ ᎾᏍᎩ ᎯᎠ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎧᏃᎮᏍᎩ.\nᏰᎵᏉᎴ ᏱᎩ ᎠᏆᏛᏅ.\nᏚᏖᎸᏅ ᏧᎳᏏᏕᏅ, ᎣᏍᏓ ᏧᏂᎪᏩᏛᏗ.\nᎺᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏗᎧᎿᏩᏗᏙᎯ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏱᏂᎦᎵᏍᏓ, ᏂᏥᎦᏔᎲᎾᏃ ᏥᎩ ᎠᏍᎦᏯ?\nᎤᎬᏓᎴᏃ ᎤᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᎢᎬᏱ ᎨᎾ ᏥᏂᏌᏄᎦ ᎡᏙᏓ.\nᎦᏓ ᎦᏓᏁ ᎢᏳᏍᏗ ᎠᏒᎨ ᎤᏃᎴ, ᏃᏥ ᎢᏳᏍᏗ, ᎤᎦᎾᏍᏓ ᎪᎨᏱ.\nᎤᏣᏗᏍᎩᏂᏃᏅ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎩ ᎠᏂᎦᏔᎲᎢ, ᎠᏎᏃ ᎥᏝ ᏱᎬᏬᎯᏳᏁᎢ.\n”ᏐᏉ ᎠᏯᏖᎾ ᎢᏳᏛᏅᏓᎩᏓ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏆᎭᎻ, ᎾᎯᏳ ᎠᏥᎪᎵᏰᎥ ᎡᏏᎩ ᎤᎵᏍᎪᎸᏔᏁᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎤᏩᏒᎯᏳ ᎤᏪᏥ ᎤᎵᏍᎪᎸᏔᏁᎢ.\nᎠᎴ ᎤᎵᏍᏈᏗ ᎤᎩᏒ, ᎠᎴ ᎤᎵᎮᎵᏨ, ᎾᏍᎩ ᏚᏁᎴᎢ; ᏂᎦᏛᏃ ᎾᏍᎩ ᎤᎾᏗᏔᎮᎢ.\nᎠᎳᏂ ᏃᎴ ᎪᏱᏁᎢ ᏓᏆᎴᎳ ᏩᎩᏠᏫᏍᏗ ᎦᎾᎸᎢ ᏓᏂᏙᎨᎢ.\nᎪᎯᏳᎯᏃ ᎠᏓᏃᎵᏍᏙᏗ ᎨᏒ ᏓᏳᏍᏕᎸᎯ ᎤᏢᎩ, ᎤᎬᏫᏳᎯᏃ ᏙᏓᏳᎴᏔᏂ; ᎢᏳ ᎠᎴ ᎤᏍᏚᏅᏨᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᏣᏥᏂᎯᏎᏗ ᎨᏎᏍᏗ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ.\nᏫᏚᏯᏅᎲᏃ ᏴᏫ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎠᎩᏍᏓᏩᏛᏍᏗᏱ, ᎤᏩᏒ ᎠᏓᏓᏱᎮᏍᏗ, ᎠᎴ ᎤᏩᏒ ᎤᏤᎵ ᏧᏓᎾᏩᏛ ᎠᏱᏍᎨᏍᏗ, ᎠᎴ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ.\nᎯᎠᏍᎩᏂ ᎪᏪᎳ ᎢᏦᎯᏳᏗᏱ ᏥᏌ ᎪᎶᏁᏛ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ, ᎢᏦᎯᏳᎲᏍᎬᏃ ᎬᏂᏛ ᎢᏣᏥᎵ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏚᏙᎥ ᏅᏓᏳᎵᏰᎢᎸᏍᏙᏗᏱ.\nᏓᏍᏚᎩᏍᎨ ᏗᏂᏰᎸᎢ ᏃᎴ ᏓᎩᏍᎨ ᏧᏪᎵᏏᏯ.\nᎢᎬᏩᏙᏢᏔᏁᏉᏃ. ᏂᎦᏛᏃ ᏚᏄᎪᏫᏐᏅ, ᎯᎠ ᎾᏍᎩ ᎠᎨᏳᏣ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ ᏚᏘᏅᏎ, ᎠᎴ ᏭᏴᎴ ᎾᎿ ᎠᎨᏳᏣ ᏗᏐᏅᎢ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎯᏁᎨᏍᏗ ᎠᎴ ᏕᎭᏕᏲᎲᏍᎨᏍᏗ.\nᏤᏍᏗ ᏱᏦᎯᏳᏁᏍᏗ, ᏤᏍᏗ ᏱᏦᎯᏳᏁᏍᏗ.\nᎼᏏᏃ ᎤᎪᎲ ᎤᏍᏆᏂᎪᏎ ᏄᏍᏛ ᎠᎪᏩᏘᏍᎬᎢ. ᎤᎪᎵᏰᏗᏱᏃ ᎤᏰᎸᏅ ᎾᎥ ᏭᎷᏨ ᏗᎪᎵ-ᏰᏎᎢ, ᎤᎬᏫᏳᎯ ᎧᏁᎬ ᎤᏛᎦᏁ [ᎯᎠ ᏂᎦᏪᏍᎨᎢ;]\nᎠᏎᏃ ᎤᏁᏨ, ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᏴᏫ ᎥᏝ ᎦᏚᏉ ᎤᏩᏒ ᏱᎬᎿᏗᏍᏗ, ᏂᎦᎥᏍᎩᏂ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎠᎰᎵ ᏅᏓᏳᎾᏄᎪᏨᎯ.\nᏅᎩ ᏗᏂᏅᏌᏗ ᏃᎴ ᎠᏤ ᎠᎾᎢ ᎠᏁᎰᎢ.\nᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎠᏥᎸ-ᎨᎶᎯ ᎢᎩᎵᎶᎲᏍᎩ ᎨᏒᎩ, ᎾᏍᎩ ᎾᏍᎦᏅᎾ, ᎤᏲ ᎢᎬᏩᏓᏛᏁᏗ ᏂᎨᏒᎾ, ᎠᏍᎦᎾ ᏄᏓᏅᎦᎸᎾ, ᎠᏂᏍᎦᎾ ᎠᏁᎲ ᎠᎦᏓᏓᎴᏔᏅᎯ, ᎠᎴ ᎦᎸᎶ ᎤᏗᏗᏢ ᎢᏴᏛ ᎠᏥᏌᎳᏓᏅᎯ;\nᎠᏎᏃ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᎪᎱᏍᏗ ᎡᏍᎦ ᎬᏰᎸᎾᏁᎲ ᎢᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᎩ ᏥᏰᎵᏎᎭ Ꮎ ᎠᎨᏴ ᏤᏏᏈᎵ, ᎦᏙᎴᎣᏍᎩ ᎠᏴ ᏣᏗᎭ, ᏧᏪᏲᏗᏱ ᎠᎴ ᏧᎶᏄᎮᏗᏱ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏕᎴᏛ ᏧᎾᏂᏏᏗᏱ ᏗᏆᏤᎵ ᎦᏥᏅᏏᏛ, ᎠᎴ ᎤᏂᎩᏍᏗᏱ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ.\nᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎥᏝ ᎪᎱᏍᏗ ᏯᎩᏖᎸᎲᏍᎦ, ᎠᎴ ᎾᏍᏉ ᎬᏅ ᎥᏝ ᎤᏣᏘ ᏯᎩᎸᏉᏗ, ᎢᏳᏃ ᎤᎵᎮᎵᏍᏗ ᏯᏆᏓᏅᏔ ᏯᎩᏍᏆᏛ ᎦᎴᏂᏙᎲᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎠᎩᏁᎸᎯ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎬᏂᎨᏒ ᏂᎬᏁᎲ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎧᏃᎮᏍᎩ.\nᎰᏩᏃ ᎾᏍᎩ ᎾᏆᏛᏁᎸᎩ ᏥᎷᏏᎵᎻ; ᎠᎴ ᎤᏂᏣᏛᎩ ᎤᎾᏓᏅᏘ ᏕᏥᏍᏚᏅᎩ ᏗᏓᏍᏚᏗᏱ, ᎬᎩᏁᏤᎸᎯ ᎨᏒᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ; ᏕᎨᏥᎷᎦᏃ ᏥᏁᎬᎩ ᎦᏥᏯᏡᏗᏍᎬᎢ.\nᏂᎦᏛᏃ ᎤᏂᎾᏰᏎᎢ; ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎠᏥᎸᏉᏗ ᎠᏙᎴᎰᏍᎩ ᎦᎾᏄᎪᎩ ᎢᏕᎲᎢ; ᎠᎴ ᎯᎠ; ᎤᏁᎳᏅᎯ ᏓᏩᏛᎯᎦ ᏧᏤᎵ ᏴᏫ.\nᎾᏍᎩᏰᏃ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎨᏒ ᎠᏂᏯᏙᎯᎲᎢ, ᎠᏂᏩᏛᏗᎭ ᎣᏍᏛ ᎨᎦᏓᏅᏖᏗᏱ, ᎠᎴ ᎤᏣᏘ ᏄᎾᏰᎯᏍᏛᎾ ᎠᏓᏅᏓᏗᏍᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ.\nᎥᏍᏈᏯ ᎾᏆᎵᏍᏔᏁᎸ ᏐᏊ ᎢᏳᏩᎦᏘ.\nᎧᏁᎬᏃ ᎥᏝ ᏰᎵ ᎦᎬᏩᏂᎪᏁᎶᎯᏎᏗ ᏱᎨᏎ ᏴᏫ ᎠᏂᎦᏔᎲᎢ; ᎤᏂᏍᏆᏂᎪᏎᏃ ᏄᏪᏒ ᎤᏁᏨᎢ, ᎠᎴ ᎡᎳᏪᏱ ᎤᏅᏁᎢ.\nᎤᏓᏅᎣᏃ ᎤᎷᏥᏌᏁᎴᎢ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎤᏗᏛᎮᎢ; ᎤᏁᏤᏃ ᎤᎵᏍᏓᏴᏗ ᎤᏂᏁᏗᏱ.\nᏙᏴᏛᏃ ᏚᏪᏍᏔᏁᎮ ᏧᎳᏏᏕᎾ ᏩᎭᏯ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎠᏫᏍᎬᎢ, ᎾᏍᎩ ᎢᎦᏛ ᏅᏃ ᎱᎶᏗ ᎤᎳᎨᏯᏛᏤᎢ, ᏥᏍᏆᏃ ᎠᎸᎶᎢ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᎷᏤ ᎠᎴ ᎤᏂᎪᏁᎢ.\nᎠᎩᎷᏤᎸ ᎤᎴᏂᎸᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏗᎾᏓᏅᏟ ᏐᎳ, ᏥᎯᎪᏩᏛ. ᎾᎯᏳᏉᏃ ᏙᏥᏯᎦᎿᏅᎩ.\n”ᏫᎵᎻ ᎤᎾᎵ.\nᏥᏌᎤᏁᏨᎩ; ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎩᎶ ᎠᎹ ᎠᎴ ᎠᏓᏅᏙ ᎬᏩᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᎥᏝ ᏴᎬᏴᎭ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏁᏅᏎ ᎠᎴ ᏗᎦᏚᎲ ᏭᏂᏩᏛᎮ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸᎢ; ᎤᎾᏛᏅᎢᏍᏔᏁᏃ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ.\nᎦᏌᏆᎸ ᎤᏬᏗᎨ ᎠᎨᏯ, ᎦᏙᏗ ᎢᏳᏍᏗ ᏴᏫ ᎤᏍᏚᎩᏒ ᎠᏍᏚᏗ.\nᏭᏂᏍᏆᏓᏃ ᎤᎳᏍᏛᏟᏁ ᏩᎭᏯ.\nᏫᎵᎻ ᎦᏅᎬ ᎤᎵᏗᏨ ᏚᏟᏂᏆᏅᏁ ᎡᎳᏆᏗ, ᎠᏍᎪᎵᏰᏍᎨ ᏃᎴ ᎤᏨᏉᏗ ᎠᏛᏁᎵᏍᎨ.\nᏍᏈᏍᏓ ᏴᏫ ᎫᏩᏩᏛᎯᏙᎴ ᎾᎯᏳ ᎢᎦ ᏒᎮᏱᏣ, ᏃᎴ ᎠᎴᏂᏙᎮ ᎤᏣᏓ ᎣᏍᏓ ᏗᎧᏃᏗ ᎮᎵᏍᎬ.\nᎢᏥᏯᏫᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏓᎪᎵᏰᏗᏱ ᎨᏒ ᏫᏥᎾᏄᎪᎢᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎠᏓᏅᏙ ᎤᏙᎯᏳᎯ ᎤᏛᏅᎢᏍᏗ, ᎤᏇᏓᎸᏍᎩᏂ ᏩᎾᎦᎳᎯᏳ.\nᎤᏲᎢᏴ ᎢᎦᏪᏍᏗ, ᎤᏙᎯᏳ ᎧᏃᎮᏍᎬ ᎠᎵᏏᏕᏅ ᎦᏂᏏᏅᏒ ᏰᎵ ᎢᎦ.\nᏤᏍᏗ ᏎᎾ ᏯᏓᏬᏍᎨᏍᏗ ᎤᏍᏗ ᎠᏣᏗ; ᎨᏍᏗ ᎣᏍᏓ ᏱᏨᎪᏩᏘ ᏣᏍᏗᎩ. ᏴᏨᏯᏤᏍᏛᏓ.\n“ᎭᏂᏉ ᎢᎨᏅᏒ ᎢᏕᏙᎮᏍᏗ ᎡᏝᏪᎯ-ᏝᏪᎯ-ᏝᏪᎯ.\nᏧᎾᎵᏗᎩᏓᎾ ᎤᎾᏗᏍᎦᏟ ᏚᏅᏓᏒ?\nᏫᎵᎻ ᎠᏍᎪᎵ ᎾᎥᏂ ᏚᏟᏂᏆᏁ ᎡᎳᏆᏗ, ᎠᏍᎪᎵᏰᏍᎨ.\nᎠᎴ ᎥᏝ ᏱᎬᎩᏩᏛᎮ ᎩᎶ ᏲᏍᏓᏗᏒᎯᎮ ᎣᏍᏗᏬᏂᏍᎬᎢ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎥᏝ ᏱᏗᏥᏖᎸᎲᏍᎨ ᏚᎾᏓᏅᏛ ᏴᏫ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎨᏌᏗᏒᎢ ᎠᎴ ᎢᎸᎯᏢ ᎦᏚᎲᎢ.\nᎠᏴ ᏃᏊ ᏦᎢ ᎢᏲᏦᎢ ᎣᏥᏍᏓᏩᏛᏒ ᎠᎴ ᎢᎸᏢ ᎩᏄᏛᏗ ᎢᏳᏟᎶᏓ ᎢᏳᏓᏅᎯᏓ ᎤᏂᎩᏒ ᎪᎱᏍᏗ ᏣᎨᎯᏐ ᎢᏳᏍᏗ ᎤᏔᎾ ᏧᏍᎦ ᏡᎬ ᎤᏕᏲᎸ ᎠᎴ ᎦᎸᎳᏗ ᎢᏗᏜ ᏫᏓᏑᏫᏍᎪ.\nᎢᎬᏱᏱᏰᏃ ᎨᏒ ᏕᏥᎳᏫᎩ ᎢᏣᏓᏡᎬ ᎢᎸᏍᎩ ᏂᏣᏓᏗᏍᎬ ᎦᏛᎩᎭ; ᎠᎴ ᎪᎢᏳᎲᏍᎦᏉ ᎢᎦᏛ.\n”ᎤᏍᏓᎦᏴᎯᏓ ᎭᏗ.”\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏍᏉ, ᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎠᎯᏗᎨ ᎤᏂᏟᏅᏤ, ᏌᎳᏓ ᎤᏩᏌ.\nᏂᎦᏓ ᏩᏂᏙᎾᎡ ᏏᏆ ᎠᏍᏚᏗ, ᎤᎾᎦᏙᏍᏕᎢ ᏓᏏᎳᏛ ᏃᎴ ᎤᏩᎦᏘᎶᏓ ᎾᏂᏪᏍᎨ ᎪᏪᎸ, ᎾᎥ ᎦᏙᎨ ᏫᎵᎻ, ᎤᏣᏓ ᎣᏍᏓ ᎤᏓᏅᏖ, ᎡᏆ ᎤᏤᎸᎯ ᎠᎧᏖᏃᎮ.\nᎯᎸᏍᎩᏃ ᏫᏄᏒᏢ, ᎤᏍᏗᏃ ᎠᏧᏣ ᎤᏩᏛᎮᎢ ᎢᏈᎬᎢ ᎤᏲ ᎤᏓᏅᏖ ᎠᎴ ᏚᏩᏅᎦᏢ ᏚᏁᏃᏛᎢ.\n”ᎩᎶ ᏣᏆᏟᏃᎮᏗᏍᎬ ᎤᏒᎯ ᎦᏢᏗ ᎤᏍᏆᎸᎲ, ᎬᏂᎨᏒ ᏫᎾᏛᎦ!” \nᎠᎴ ᎢᎩᎬᏫᏳᎯ ᎠᎴ ᎠᏥᎸ-ᎢᏕᎶᎯ ᎢᎬᏁᎸᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏙᏓ ᏧᏤᎵᎦ; ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎠᎪᏎᎮᏍᏗ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ.\nᎠᎴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏂᏣᏘ ᏗᎧᎸᎬ ᎠᎴ ᏭᏕᎵᎬ ᎢᏗᏢ ᏗᏂᎶᏍᎨᏍᏗ, ᎠᎴ ᎢᏧᎳᎭ ᎠᎾᏅᎥᏍᎨᏍᏗ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ, ᎦᎸᎳᏗ ᎡᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ,\n”ᎧᏁᎢᏍᏗ ᎯᏍᎩᏲᎮᎸ!” ᏭᏬᏎᎵᎡ ᏌᎳᏓ.\nᎣᏍᏛᏍᎩᏂ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏓᎾᏣᏅᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎠᏂᎨᏴ ᏧᏂᎵᎶᎲᏍᎦ.\nᎢᏳᏉ ᎠᏆᏕᎶᎰᏒ ᎤᏂᏣᏘ ᎬᏂᎨᏒ ᏂᏚᏅᏅ ᏧᎾᏥᎶᏍᏔᏅ ᏗᏂᎳᏫᎩ ᏚᏂᏍᏆᏚᎸ, ᎭᎾᎾ ᏗᏦᎯᏍᏗ ᎠᎾᏔ ᏃᎴ ᎠᎾᏘᎨ ᎠᏂᎨᏯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏚᎩ ᎠᏋᎭ ᎾᏍᎩ ᏥᏅᏍᏗᏱ ᎢᎬᏪᏅᏛ ᎦᏙᎴᎣᏒᏉ ᎢᏯᏉᎵᏍᏓᏁᏗ ᎨᏒᎢ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᏣᏍᏆᏗᏍᏗᏱ ᏣᏚᎵᏍᎨᏍᏗ, ᎮᎾ, ᏫᎾᏚᎦ ᏣᎿᎥᎢ, ᎠᎴ ᏘᎲᏏ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ, ᎦᎸᎳᏗᏃ ᏫᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᎠᎴ ᏖᏒ ᏍᎩᏍᏓᏩᏕᏒᎭ.\nᎥᏝ ᎢᏨᏲᏎᎭ; ᏂᎯᏍᎩᏂ ᏂᏗᏥᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ, ᏂᎦᏛ ᎾᏍᎩᏯ ᏓᏩᏗᏒᏂ.\nᎧᏂᎩᏛ ᎦᏣᏃᏍᏓ ᎢᏰᏆ ᎡᎳᏗ ᎢᎦᏘ ᎠᏍᎦᏯ ᎤᏢᏗ, ᎦᏓᏁ ᎤᏍᏗ ᏅᏯ ᎦᎳᎨᏴ ᎠᎫᏬᏰᏅ ᎢᏯᏖᏅ ᎠᎹᏳᎸᏓ ᎾᎥᏂ.\nᎣᏍᏓ ᎤᎧᏙᏍᏔᏁᎢ ᏫᎵᎻ ᎡᎶᏗ, ᎤᏙᎯᏳᎯ, ᎣᏍᏓ ᏏᏆ, ”ᎤᏍᏆᏂᎩᏗ ᏏᏆ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎥᏝᏰᏃ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᎠᎩᏁᏨᎯ ᏱᎩ, ᎠᎦᏴᎵᎨᎢᏍᎩᏂ ᏅᏛᎩᏅᏏᏛ, ᎾᏍᎩ ᎠᎩᏁᏨᎸ ᎢᏯᎩᏪᏍᏗᏱ ᎠᎩᏬᏂᎯᏍᏗᏱ.\n”ᏓᏓᎾᏁᎶᏂᎨ?” ᎤᏛᏛᏁ.\n“ᎡᏝᏪ ᎨᏎᏍᏗ, ᏫᎵᎻ.\nᎠᏎᏃ ᎢᏥᎦᏔᎭ ᎠᏩᎾᎦᎳᎯᏳ ᎨᏒ ᎠᎩᏇᏓᎸᎢ ᎢᏨᏯᎵᏥᏙᏁᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎬᏱᏱ;\nᎩᎳᏈᏴ ᎦᏣᏃᏍᏓ ᎤᏩᏁ ᏫᎵᎻ.\n“ᎤᏙᎯᏳᎭᏧ?” ᎤᏛᏛᏁ ᏥᏍᏕᏥ, ᎤᎾᏰᎯᏍᏗ ᎤᎦᏙᏍᏕᎢ ᎦᏅᏙᏗ.\nᎠᏂᏃᏔᏅᎲᏍᎩᏃ ᎡᎶᎯ ᎠᏁᎯ ᏙᏛᎾᏠᏱᎵ ᎠᎴ ᏙᏛᏂᏴᎳᏏ ᏓᎬᏩᏍᎪᏂᎵ ᎾᏍᎩ; ᎥᏝᏰᏃ ᎿᏉ ᎩᎶ ᏱᎬᏩᏂᏩᎯᏎᎭ ᎦᏃᏙᏗ;\nᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᎤᏂᏲᎴ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ; ᎬᏩᎾᏰᏍᎨᏰᏃ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏍᎬ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ.\n“ᎤᏍᏆᏂᎩᏗ.\n“ᎢᎪᎯᏓ ᎦᏓᏅᏖᏍᎪᎢ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎤᏂᏥ ᎦᎳᎩᏍᎨ ᎦᎴᏂ.\nᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᏚᎾᎴᏅᎩ, ᎠᎴ ᎠᏰᎵᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏂᎳᏫᏨᎩ ᎠᎾᏡᏗᏍᎬ ᎤᎬᏫᏳᎯ ᎠᎴ ᎠᎾᏡᏗᏍᎬ ᎤᏤᎵ ᎦᎶᏁᏛ.\nᎤᏁᎳᏅᎯᏰᏃ ᏚᎳᏁᎸ ᎫᏂᎾᏫᏱ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎤᏂᏍᏆᏗᏍᏗᏱ, ᎠᎴ ᏌᏉᎢᏳᏅᏁᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏧᏂᏲᎯᏎᏗᏱ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎾᎿ ᎤᏂᎬᏫᏳᎯ ᎨᏒᎢ, ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᏁᏨ ᎾᏍᎩ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏎᏍᏗ.\nᎢᏳ ᎠᎴ ᎠᎦᎴᏂ ᎯᎠ ᏱᏄᏪᏒ, ᎠᏴ ᎠᎦᏔ ᏂᎨᏒᎾ ᏥᎩ ᎥᏝ ᎠᏰᎸ ᏯᏆᏘᏝ; ᎾᏍᎩᏍᎪ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᎠᏰᎸ ᏳᏘᏝ?\nᎦᏕᎶᎣᏍᎦ ᎪᎱᏍᏗ ᎤᏲ ᏱᏣᎵᏍᏔᏁᎳ ᎠᏎ ᎠᏯ ᏍᎩᎷᏤᎰᎢ.\nᎡᎶᏛᏃ ᎤᎬᏫᏳᎯ ᎤᏛᎦᏅ ᎾᏍᎩ, ᎤᏪᎵᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ, ᎠᎴ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ.\nᎠᏏᏉ ᏓᏂᎳᏫᎥ ᎠᏂᏆᎵᏏ, ᏥᏌᏚᏛᏛᏅᎩ,\nRoss ᎤᏓᏅᏖᏗᏍᎬ, ᏂᏛᏓᎴᏂᏍᎬ ᎠᎦᏛ ᏥᏬᏂᏍᎬ ᏣᎳᎩ, ᎨᏍᏗ ᏙᏰ ᏂᎦᎵᏍᏗᏍᎬ ᎫᏩᏁᎢᏍᏙᏗ ᏱᎨᏎ, ᎦᏲᏟᏉ ᎪᎵᎬ ᏧᏤᎵ ᎠᏂᏴᏫ ᎠᏂᏬᏂᏍᎬ.\nᏂᎯᏃ ᎢᎸᎯᏳ ᏁᏣᏓᎴᏉ ᏥᎨᏎᎢ, ᎠᎴ ᎡᏥᏍᎦᎩ ᏥᎨᏎ ᏙᏗᏣᏓᏅᏛᎢ ᎾᏍᎩ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ ᎠᏎᏃ ᎪᎯ ᎿᏉ ᎢᏦᎯᏍᏓᏁᎸ,\n“ᎠᏯᎨ ᎪᎱᏍᏗ ᏂᏍᏋᏁᎭ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎾᏍᏉ ᎢᏣᏛᏅᎢᏍᏕᏍᏗ; ᏴᏫᏰᏃ ᎤᏪᏥ ᏓᎦᎷᏥ ᎢᏳᏉ ᎠᎵᏰᎢᎵᏒ ᏂᏤᎵᏍᎬᎾ ᎨᏒᎢ.\nᏂᎯᏃ ᏗᏥᏲᎱᏒᎯ ᏂᎨᏒ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸ ᎢᏣᏚᏓᎸᎢ ᎠᎴ ᏂᏕᏥᎤᏍᏕᏎᎸᎾ ᎨᏒ ᎢᏥᏇᏓᎸᎢ, ᏗᏨᏃᏛ ᏂᏨᏁᎸ ᎾᏍᎩ ᎬᏃᏛ ᎾᎬᏁᎸᎢ, ᎦᏰᏥᏁᎸ ᏂᎦᏗᏳ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸᎢ,\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏗᎻᏟᏯ ᎠᎴ ᎾᏍᎩ ᏣᏁᎭ ᎠᏃᏢᏅᎥᏍᎩ ᎠᏄᎯᏍᏗᏍᎨᏍᏗ ᎩᎶᎢ, ᎤᏜᏅᏛ ᏗᏓᏱᎵᏓᏍᏗᏱ, ᎠᎴ ᎨᏥᎦᏘᏗᏍᏗ ᎠᏁᎭ; ᏫᏓᎾᏓᏱᎵᏓ.\nᎠᎬᎭᎸᏛᏃ ᎠᏥᏁᎸ ᏎᏓᏂ ᎤᏴᏎᎸᎩ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏍᎩ ᎢᏣᏛᏁᏗ ᎨᏒ ᏄᎳᏉ ᎿᏛᎦ.\nᎠᏍᎪᎯᏧᏈᏃ ᏗᏘᏂᏙᎯ, ᎾᏍᎩ ᎤᏛᎦᏅ, ᏭᏃᏁᎸᎩ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ, ᎯᎠ ᏫᏄᏪᏒᎩ; ᎮᏯᏔᎮᏍᏗ ᎯᎠ ᏥᏅᏔᏛᏁᎵ; ᎯᎠᏰᏃ ᎠᏍᎦᏯ ᎠᎶᎻ.\nᎢᏥᏁᎬᎢ ᎠᎴ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᏄᏍᏛ ᎤᏂᏁᎢᏍᏗ ᎨᏒ ᎠᎴ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᏗᎨᎫᎪᏓᏁᏗ ᏥᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎬᏓᎧᎲᏍᎩ ᎨᎬᏓᏁᏗ ᏥᎩ.\nᎠᏓᏫᏰᏃ ᎢᎬᏱ ᎠᎪᏢᏁᎢ, ᎩᎳᏃ ᎢᏫ.\nᎠᏎᏃ ᎠᏨᏉᏗᏍᎨ.\nᎠᎴ ᎠᏂᎪᏩᏗᏍᎬ ᎤᏲ ᏄᏓᏑᏴᎾ ᎢᏣᎴᏂᏙᎲ ᎤᎵᏠᏯᏍᏛ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ.\nᎠᏎᏃ ᏂᎦᏛ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏅᎩ ᎤᏙᎯᏳᏗᏱ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏃᏪᎳᏅᎯ. ᎿᏉᏃ ᏂᎦᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏕᏨᎩ ᎠᎴ ᎤᎾᎵᏒᎩ.\nᏞᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏲᏍᏔᏂᎸ ᏱᏍᎩᏰᎵᏎᎮᏍᏗ; ᎥᏝᏍᎩᏂ ᏱᏓᎩᏲᏍᏔᏂᎸ, ᏓᎩᎧᎵᎵᎸᏍᎩᏂ.\nᎤᏁᎳᏅᏗᏃ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ, ᎾᏍᎩ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏲᎱᏒ ᏔᎵᏁ ᏧᎴᏔᏅᎯ ᏥᎩ, ᎾᏍᎩ Ꮎ ᎠᏥᎸᏉᏗ ᎠᏫ-ᏗᎦᏘᏯ ᎢᏯᎬᏁᎸᎯ, ᎬᏔᏅᎯ ᎩᎬ, ᎠᏲᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎠᏍᏓᏱᏗᏍᎩ,\n“ᏃᏗ ᏥᏍᏆᏙᎾ,” ᎤᏛᏁ.\nᎿᏉᏃ Ꭴ ᏂᏣᏘ ᎠᏁᏙᎲ ᎤᏂᎷᏨ, ᎤᎷᏤᎸᎩ ᎠᏍᎦᏯ ᏚᎵᏂᏆᏅᏁᎸᎩ ᎯᎠ ᏄᏪᏒᎩ;\nᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎩᎶ ᎧᏁᎬ ᎦᎸᎳᏗ ᏛᏓᎴᎲᏍᎬᎩ ᎯᎠ ᏅᏛᎩᏪᏎᎲᎩ, ᎰᏪᎸᎩ, [ᎯᎠ ᏅᎦ,] ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏧᏂᏲᎱᏒᎯ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏚᎾᏁᎶᏛ ᏗᏂᏲᎱᏍᎩ ᎪᎯ ᎢᏳᏓᎴᏅᏛ; ᎤᏙᎯᏳᎯ ᎠᏗᎭ ᎠᏓᏅᏙ ᎾᏍᎩ ᎬᏩᎾᏣᏪᏐᎸᏍᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ; ᎠᎴ ᏚᏂᎸᏫᏍᏓᏁᎸ ᏓᏳᏂᏍᏓᏩᏕᏏ.\n”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ,” ᎤᎵᏰᏔᏁ.\nᎣᏍᏓ ᎤᏰᎸᎮ ᏕᎬᏍᎬ ᏃᎴ ᎠᏍᎦᏯᏯ ᎨᏎᎢ.\nᏗᏂᏍᎪᎵᏃ ᎪᏍᏚ ᏚᏂᏝᏅᎩ, ᎠᎴ ᎤᏁᎷᏅᎩ ᏓᎾᏠᏱᎲᎢ, ᎠᎴ ᏓᏂᏴᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎤᏲᏍᏛᏉ, ᎤᏲᏍᏛᏉ, ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲᎢ, ᎾᎿ ᏧᏁᎿᎢ ᏥᏄᎾᎵᏍᏔᏅᎩ ᏂᎦᏛ ᎠᎺᏉᎯ ᏥᏳ ᏗᏂᏂᏙᎯ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏣᏘ ᎤᏪᎿᎢᏳ ᎨᏒᎢ, ᏑᏟᎶᏛᏉᏰᏃ ᎢᎪᎯᏛ ᏅᏔ ᎾᎬᏁᎸ.\nᏎᎦᎾᎨᏍᏗᏉ ᎤᏂᎸᏉᏗ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏧᏙᎢᏓ ᏧᏂᏒᏍᏗ ᏩᎩᎷᏨ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎯᏓ ᎬᏆᏁᎳᏗᏍᏗ ᏱᎨᏎ ᎭᎾᏂ, ᎦᎸᎳᏗ ᏧᎵᎬᏩᎶᏗ ᎨᏒ ᎭᎾᏂ.\nᎠᎦᏗᏛ ᏚᏬᏪᎳᏅ ᏗᏘᏲᎯ ᎪᏪᎵ ᏫᏚᏅᏁᎴ ᏩᏏᏓᏂ ᎦᏚᎲ ᎠᏁᎯ ᏧᎵ ᎠᎵᏍᎦᏃᏍᎬᎢ ᎨᏍᏗ ᎫᏩᏂᎨᏳᏓᏁᏗ ᏱᎩ ᎤᏓᏅᏖᎵᏓᏍᏗ ᏃᎴ ᎠᎦᏗᏛ ᎠᏥᏚᎨ ᎠᏕᎳ, ᏧᏓᎴᏅᏓ ᏃᎴ ᎠᎵᏍᏔᏴᏗ ᏚᏩᎯᏎᎸ ᎠᏂᏴᏫᏯ, ᎤᏂᏄᎸᏅ ᏧᏂᏁᏗ ᎤᏂᏂᎬᎬ.\nᎾᏂᎥᏰᏃ ᎩᎶ ᎤᏂᏍᎦᏅᏨᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏄᏂᎲᎾ ᎾᏍᏉ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏔᏅᎾ ᎤᏂᎩᎵᏲᎢᏍᏗ; ᎠᎴ ᎾᏂᎥ ᎩᎶ ᎤᏂᏍᎦᏅᏨᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏂᎯ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎨᎬᏓᏁᏗ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ,\nᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ Ꭰ ᎠᏰᎸ ᎨᏒᎢ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ; ᎾᏍᎩ ᏗᏓᎴᏅᏗᏍᎩ, ᏧᏓᎴᏅᏔᏅᎯ ᎤᏲᎱᏒ ᏧᎴᎯᏌᏅᎯ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏄᎾᏓᎴᏒ ᎢᎬᏱ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᎩ ᏯᏛᏛᎲᏍᎦ ᎪᎱᏍᏗ ᎦᎵᏓᏍᏔᏅᎢ ᏱᎩ.\nᎥᏝ ᎠᎴ ᎿᏉ ᏰᎮᏍᏗ ᎤᏐᏅᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏤᎵ ᎦᏍᎩᎶ ᎾᎿ ᎦᏍᎩᎴᏍᏗ; ᏧᏤᎵᏃ ᏧᏅᏏᏓᏍᏗ ᎬᏩᏓᏙᎵᏍᏓᏁᎮᏍᏗ;\nᎠᎹᏳᎸᏓ ᎾᎥ ᏂᎦᏓ ᎠᏣᏗ ᏃᎴ ᎠᎹ ᎤᏓᏑᏱ ᎠᎹ ᎢᏳᏍᏗ ᎠᏒᎬ.\nᎠᏎ ᎢᎦᏉ ᎠᎾᏘᏲᎯᎲ ᎠᏂᏴᏫᏯ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎣᏍᏓ ᏱᏄᎾᎵᏍᏔᏁᎳ, ᏣᏍᏉ ᎤᏂᎾᎦ, ᏃᎴ ᎨᎵᏍᎬ ᏲᎾ ᏧᏤᎵ ᎠᏂᏬᏗᎨ ᎠᏂᏴᏫ ᎪᎰᏍᏗ ᎣᏍᏓ ᏱᏂᏚᏓᎵᏍᏔᏁᎵ.\nᎤᏐᏱ ᎠᏂᏃᎮᏍᎬ ᎾᏍᎩᏯ ᎢᎦ ᎨᏥᏰᎵᏒ, ᏚᏯᏪᏤ ᏁᏂᏏ, ᎣᎭᏁ ᏓᏍᏔᏩᏗᏎ, ᏐᏉ ᎠᏧᏣ ᎠᏲᏍᎩ ᎤᏩᏌᏙᎭᏰ ᎦᎶᏇ ᎬᏘ ᎠᎴ ᎪᏍᏔᏱ ᏂᎬᏅ ᎦᎶᏇ.\nᎢᏧᎳᏰᏃ ᎾᏍᎩ Ꮎ ᏗᎦᏅᎦᎵᏍᎩ ᎨᏒ ᎠᎴ ᎾᏍᎩ ᎨᏥᏅᎦᎵᏍᎩ ᎨᏒ ᎤᏂᏠᏱᏉ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏳᏰᎸᎭ ᎣᏣᎵᏅᏟ ᏧᏬᏎᏗᏱ;\nᎠᏰᎸᏰᏃ ᏧᏓᎴᏅᎯ ᏗᏯᏠ ᎠᎴ ᏗᏞᏌᏙ ᏓᏂᏃᎮᎲᎩ ᏧᏂᏢᎩ, ᎥᏳᎩᏃ ᎠᎵᏛᏗᏍᎬᎩ, ᎤᏂᏲᏃ ᏗᏓᏅᏙ ᎬᏩᏂᏄᎪᎬᎩ.\nᎠᎴ ᎾᏍᎩ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎤᏏᏙᎵ ᏙᎴᏛ ᏧᏄᏪᏍᏗᏱ, ᏗᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎴ ᏧᏁᎬ; ᎤᏏᏙᎵᏰᏃ ᏙᎴᏛ ᏚᏳᎪᏛ ᏄᎾᏛᏁᎵᏙᎸ ᎤᎾᏓᏅᏘ ᎦᏛᎦ.\nᎤᏂᎪᎲᏃ ᎤᏂᏃᎮᎵᏙᎴ ᏄᏍᏛ ᎨᏥᏃᎮᎮᎸ ᎾᏍᎩ ᎠᏲᎵ ᎠᏥᏁᎢᏍᏗᏍᎬᎢ.\nᎩᎶᏃ ᎤᏩᏒᏉ ᏚᏓᏘᎿᎥ ᎬᏩᏍᎦᎩ ᎨᏎᏍᏗ.\nᏧᏴᏨ ᎢᏣ ᏓᏳᏓᎴᏅ ᎦᏃᎸᎥᏍᎬ ᏃᎴ ᎠᎬᏱ ᎤᎭᏲᎸ ᎤᏂᏥ.\nᏧᎦᏌᏬᎸ ᏚᏓᏁᏁᎢ ᏗᎦᏙᎵ ᏲᎾ ᎤᏤᏍᏙ.\nᏗᏂᎴᏂᏃ ᏓᏂᎦᏔᎲᏍᎨᏍᏗ ᎠᎾᏛᎩᏍᎬ ᏚᏳᎪᏛᎢ, ᎠᏎᏉᏃ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎢᏗᏢ ᏩᎾᎦᏔᎲᏍᏗᏍᎨᏍᏗ.\nᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏣᏤᎵᎦ ᏖᏅᎦᎸᏓ; ᎧᏃᎮᏛ ᏣᏤᎵᎦ ᎾᏍᎩ ᎦᏰᎪᎩ ᎦᏰᎪᎩ ᏂᎨᏒᎾ.\nᎠᎴ ᎥᏝ ᎾᏍᎩᏯ ᎠᏏᏴᏫᏉ ᎤᏍᎦᏅᏨᎯ ᎢᏳᏩᏂᏌᏛ [ᏗᎨᎫᎪᏓᏁᏗ ᏥᏄᎵᏍᏔᏁ] ᎾᏍᎩᏯ ᏱᏄᏍᏗ ᎤᏓᏁᏗ ᎨᏒᎢ; ᎠᏍᎦᏅᏨᏰᏃ ᏗᎫᎪᏙᏗ ᎨᏒ ᏌᏉᏉ ᎢᏯᏍᎦᏅᏨᎯ ᏅᏓᏳᏓᎴᏅᎯ; ᎬᏩᎦᏘᏯᏍᎩᏂ ᎤᏓᏁᏗ ᎨᏒ ᎤᏣᏘ ᎢᏯᏍᎦᏅᏨᎯ ᎠᏚᏓᎴᏍᏙᏗ ᎤᎬᏩᎳ.\nᎠᎴ ᎾᎯᏳ ᎢᏳᏓᎴᏅᏛ ᎤᏂᏣᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏨᏒᎩ, ᎠᎴ ᎥᏝ ᎿᏉ ᎢᎸᎯᏳ ᏳᏁᏙᎴᎢ.\nᎾᏍᎩ ᎢᎸᎯᏳ ᏥᎨᏒᎩ ᎤᎾᏁᎳᎩ ᎤᏅᏒ ᏚᏂᏅᏅ ᏩᏂᎶᎯ ᏚᏪᎵᏎᎴ ᏂᎦᏛ ᏄᎾᏓᎴᏒ ᏴᏫ;\nᏗᏓᏍᏚᏗᏱᏃ ᎠᎦᏘᏯ, ᎤᏰᏨ ᎠᎴ ᎤᏙᎴᎰᏒ ᎦᎶᎯᏍᏗᏱ ᏗᏓᏍᏚᏗᏱ ᏧᎵᏍᏚᎢᏛ ᎨᏒᎢ, ᎤᎸᎮ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ, ᎠᎴ ᎤᏩᏒ ᏗᏓᎵᏎᎢ, ᏗᎨᏥᏍᏚᎯ ᎤᎾᎵᏒ ᎡᎵᏍᎨᎢ.\nᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᎬᏫᏳᎯ ᏚᎴᏅ ᎤᏙᎯᏳᎯ, ᎠᎴ ᏌᏩᏂ ᎬᏂᎨᏒ ᏄᏛᏁᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎣᎦᏚᎵᏍᎬᎩ ᏫᏨᎷᏤᏗᏱ, ᎠᎴ ᎠᏴ, ᏉᎳ, Ꮀ ᎤᎬᏫᏳᏒᎩ, ᏌᏉ ᎠᎴ ᏔᎵᏁ ᎠᏆᏚᎸᎲᎩ; ᎠᏎᏃ ᏎᏓᏂ ᎣᎩᏲᏍᏙᏓᏁᎲᎩ.\nᏂᎯ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ ᏣᏗᎭ, ᏥᎪ ᎢᎭᏓᏲᏂᏆᏘᎭ, ᏥᎪ ᏂᎯ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎯᏐᏢᏗᎭ?\nᎠᎾᎵᏃᎮᏍᎬᏃ ᎠᏂᏃᎮᏍᎨ ᏂᎦᏛ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸᎢ.\nᏣᎦᏎᏍᏕᏍᏗ ᏓᏥᏇᏅᏂ ᏛᎦ.”\nᎦᏚᏃ ᎤᎩᏎᎢ, ᎠᎴ ᎤᎵᎮᏟᏨ, ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᏚᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ, ᎾᏍᎩ ᏂᎯ ᎡᏣᎫᏴᏔᏅᎯ ᏥᎩ, ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ.\nᎤᏂᏃᏕᎾ ᏍᏉ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎾᎥᏂ ᎠᏁᏙᎮ ᎤᎾᎵᏍᎦᏍᏛᎢ.\nᎠᏴᏰᏃ ᎯᎠ ᎠᏂ ᎦᎵᏦᏛ ᏦᏥᏯᎠ ᎣᎩᎵᏰᏗᎭ, ᏂᎦᎵᏍᏙᏗᎭ ᎦᎨᏛ ᏃᎦᏛᎿᏕᎬᎢ; ᎥᏝ ᏦᎩᏄᏪᏍᏗᏱ ᎣᎦᏚᎵᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ; ᏦᎩᏄᏬᏍᏗᏱᏍᎩᏂ; ᎾᏍᎩ ᎠᏲᎱᏍᎩ ᎨᏒ ᎠᏥᎩᏍᏗᏱ ᎬᏂᏛ ᎤᎩᏐᎲᏍᏗᏱ.\nᏏᏍᏉᏯᏃ ᏚᏓᏲᏎ ᏕᎪᏪᎵᏍᎨ ᏗᎧᏁᎢᏍᏗ ᎤᏍᏈᏯᏃ ᎨᏎ ᏗᎧᏁᎢᏍᏗ ᎠᎴ ᎤᏍᏈᏯ ᏗᏅᏓᏗᏍᏗ ᎨᏎᎢ.\nᎤᏩᏌ ᎤᏬᏢ ᎠᏌᎻᏓ Moets ᎧᏃᎩᏍᏗᏍᎬ ᎠᏤᎷᎯᏍᏗ.\nᏌᏉᎯᏳᏰᏃ ᎡᎮ ᎤᏪᏥ ᎠᎨᏳᏣ ᏔᎳᏚ ᎢᏴᏛ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎾᏍᎩ ᎠᏲᎱᏍᎨᎢ. ᎠᎢᏒᏃ ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏓᏡᏩᏍᏗᏕᎨᎢ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎾᏍᎩ ᏂᏗᎥ ᏤᎦᏬᎥᎯ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᏕᏓᏓᏲᎯᏎᎲᎢ, ᎾᏍᎩ ᎤᏲᎱᏒ ᎤᎬᏩᎵ ᏕᎦᏬᎥᎢ?\nᏚᏅᏓᏒ ᏓᏳᏓᎴᏅ, ᎤᏓᏂᏴᏓ ᏴᏫᏯ ᎤᎬᏫᏳ ᎤᏛᎯᏍᏔᏅ.\n”ᏙᏔᏛᏁᎵ?” ᎤᏛᏁ ᏫᎵᎻ.\nᎤᏔᎷᎩᏍᎩ ᎤᏓᏅᏅ ᎦᏍᎩᎸ ᎾᏍᎩᏯ ᎡᎳᏆ ᎤᎶᏒ.\n“ᎠᏃᏍᏓ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏦᎢᏁ ᎢᎦ ᏕᎤᎴᏔᏅᎩ ᎠᎴ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ,\nᎢᏳᏃ ᎩᎶ ᎦᏙᏃ ᎾᏍᎩ ᏂᏍᏓᏛᏁᎭ ᎢᏍᏙᏎᎸᎭ? ᎤᎬᏫᏳᎯ ᎤᏚᎵᎭ, ᎢᏍᏓᏛᏅᎭ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏙᏓᏳᏲᏏ ᎠᏂ ᎡᏍᏓᏘᏃᎯᏍᏗᏱ.\nᏎᎦᏃ ᏗᎦᏅᎯᏛ ᏧᏆᎶᎦ ᎭᏂᏨ ᏩᎨᎯᏙᎲ ᎠᎦᏍᎬ, ᏃᎴ ᎩᎳᏈᏴ Ꮳ.\nᎾᎦᏛ ᎢᏓᎵᏅᏟ ᏫᎨᏥᏲᎵᎭ. ᏕᏣᏓᏲᎵᏍᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏗᏓᏙᏪᏙᎥᏍᏗ ᎨᏒᎢ.\n“ᎭᏩᏃ, ᎤᏙᎯᏳ ᎤᏗᎴᎦ,” ᎤᏛᏁ ᎪᏱᏁᎢ, ᎠᏓᏃᏰᎮ ᎭᏫᏂ ᎦᏁᏍᏓᎳᏗᏍᏗᏍᎩ ᏗᎦᏃᏣᏝᏍᎩ ᎬᏗ.\nᎢᎦᏓ ᏓᎾᏦᎭᏱᎮ, ᎢᎦᏓ ᎤᏬᏨᏗ ᎾᏅᏁᎭ ᏄᎾᎵᏍᏔᏁᎲ, ᏫᏥᎢᎦ ᎨᏒ ᎡᏝᏪᎯ ᎠᎾᏓᏅᏖᏍᎨ ᏄᏍᏛ ᏄᎾᎵᏍᏔᏁᎲ.\nᏚᏓᏅᎡᎴᏃ ᏅᏯ ᏫᎬᏗᏅᏗ ᎢᏴᏛ ᎠᎴ ᏚᎵᏂᏆᏁ ᎤᏓᏙᎵᏍᏔᏁᎢ,\nᎥᎥ, ᎤᏛᏁᎢ. ᎠᏓᏁᎸᏃ ᎤᎷᏨ ᏥᏌ ᎤᏲᏍᏙᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙ ᎮᎵᎭ, ᏌᏩᏂ; ᎦᎪ ᎠᏰᎵ ᎬᏩᎾᏓᏴᎡᎰ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ; ᏧᏁᏥᏍᎪ, ᏅᏩᎾᏓᎴᎨ?\nᎠᏥᎸᏳᎵ ᎠᏆᏅ ᎠᎩᏃᎮᎸ ᎧᏃᎮᏗ ᏂᎦᏓ ᎦᏳᎸ ᎾᏂᎦᏔᎰ.\nᏃᏗ ᏓᎪᏩᏘᏍᎨᎢ ᎤᏂᏃᏕᎾ ᏃᎴ ᎠᏂᏓ.\n“ᎠᏯᎨ ᏍᏉ ᏱᏕᏍᎬᏏ?” ᎤᏛᏛᏁ ᎡᎳᏆᏗ.\nᎧᏃᎮᏛᏰᏃ ᏓᏠᎯᏍᏛ ᎠᏍᏓᏱᏳ ᎨᏐ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎠᎸᎯ ᏥᎨᏐᎢ; ᎥᏝ ᎠᎴ ᎠᏍᏓᏱᏛᎯ ᏱᎨᏐ ᎠᎵᏍᎪᎸᏙᏗ ᎠᏏᏉ ᏥᎬᏃᎢ.\nᎠᎴ ᎾᏍᎩ ᎤᏁᏨᎢ ᎥᏝ ᏱᏥᏯᎠ, ᎾᏍᎩᏰᏃ Ꮎ ᏅᏓᏳᏅᏏᏛ ᎥᏝ ᏰᏦᎢᏳᎲᏍᎦ.\nᎡᎳᏗ ᏄᏩᏁᎸ ᎠᏍᎪᎵ ᎨᎵ ᏃᎴ ᎤᏍᏘᏰᎬ ᎦᏓᎥ ᎤᎧᏛ ᎠᎬᏱᏣ ᎾᏍᎩᏯ ᎤᏔᎷᎩᏍᎩ ᏦᎳᏂ ᎠᏯᏙᎳᏛ ᏯᏍᏚᏅ.\nᎤᎪᎮᏃ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏛ ᎨᏎᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎢᏳᏍᏗ ᎠᏖᎵᏙ ᎡᎳᏗ ᏅᏧᏍᏗᏗᏎ, ᎾᏍᎩᏯ ᎡᏆ ᎠᏄᏬ, ᏅᎩ ᏚᏅᏏᏴ ᏥᏕᎦᎸᎣᎢ, ᎾᏍᎩᏃ ᎡᎳᏗ ᎢᎬᏁᎸᎯ ᏥᎨᏐ ᎡᎶᎯ ᎢᏴᏛ.\nᎤᏪᏅᏃ, ᏔᎳᏚ ᎢᏯᏂᏛ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏳᏃ ᎩᎶ ᎢᎬᏱ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎣᏂᏱ ᎠᎦᎴᏙᏗ ᎨᏎᏍᏗ ᎾᏂᎥᎢ, ᎠᎴ ᎾᏂᎥ ᎬᏩᏅᏏᏙᎯ ᎨᏎᏍᏗ.\nᏂᎬᎾᏛ ᎬᏃᏓ, ᎾᏍᎩᏍᏉ ᎦᏄᎸ ᎤᏍᎬᏓᎨ ᏩᏥᎳ ᎤᏓᏅᎵᏰᎥ. ᏯᏲᏍᏔᎾ, ᎢᏤᎯ ᎤᎵᏑᏫᏓ ᏍᎪᏯ ᎠᏯᎣ ᎭᏫᏂ.\nᎠᏎᏃ ᏐᎳ ᎧᏁᏉᎨᏉ ᎤᎵᏂᎪᏍᎬᎢ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᏚᎪᎾᏛᏔᏁ ᎠᏂᏧᏏ ᏕᎹᏍᎦ ᎠᏁᎯ, ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎾᏍᎩ ᎯᎠ ᎦᎶᏁᏛ ᎨᏒᎢ.\nᎣᏍᏓ ᎠᏁᎮᎢ ᏩᎦ ᏃᎴ ᏐᏈᎵ ᏧᏂᏍᏆᏂᎪᏙᏗ - “ᎤᏒᎯ ᏃᎴ ᎢᎦ, ᎪᎳ ᏃᎴ ᎪᎩ, ᎪᎨᏱ ᏃᎴ ᎤᎵᎪᎲᏍᏗ, ᏧᏍᎪᎸ ᎢᎦ ᏃᎴ ᏧᏍᎪᏍᏓ ᎢᎦ.\nᎠᏲᏟ ᎢᏳᏍᏗ ᏂᏪᎠ.\nᎡᎳᏆᏗ ᎤᏃᎴ ᎠᏲᏙᏗ ᎤᏓᎡᎢ ᎦᎴᏂ ᏃᎴ ᎠᎩᏍᏙᏍᎨᎢ ᎨᏂᏗ ᎦᏅᎵᏰᏓ ᏑᎧᏔ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᎸᎯᏢ ᎯᎠ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎵᏥᏙᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎯᎠ ᎾᏍᎩ ᏥᎾᏛᎦ ᎾᏍᏉ ᎤᏂᏃᎮᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᎦᏅᏓᏗᏍᏙᏗ.\nᏂᎦᏗ ᎠᏂᎧᏔᎮᎢ ᎤᎵᏍᎨᏓ ᏏᏆ ᎤᏂᎧᎲ ᎠᏂᎪᏕᏍᎩ.\nᏥᏌᏃ ᎾᎿ ᎤᏓᏅᏒ, ᎠᏂᏔᎵ ᏗᏂᎨᏫ ᎠᏂᏍᎦᏯ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎤᏁᎷᎬᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᏍᎩᏂᏙᎵᎩ ᏂᎯ ᏕᏫ ᎤᏪᏥ.\nᎠᎴ ᎬᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎤᏓᎵᏓᏍᏗ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎠᏁᎲ ᎾᏍᎩ ᎨᏥᏛᏙᏗ ᎨᏒᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᏚᎾᏓᏂᎸᏨᎾ ᎨᏒ ᏚᏳᎪᏛ ᎠᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎨᏥᏍᏕᎸᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᎴ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎢᏣᏄᏬᏍᏕᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎫᏓᏛᏍᎩ ᏥᎩ ᏂᎦᎷᎶᎬᎾ.\nᏅᏯᏃ ᏚᏅᏂᏍᏔᏁ ᏍᏗᏫ ᎠᏓᏙᎵᏍᏗᏍᎨᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏣᎬᏫᏳᎯ, ᏥᏌ, ᏔᏓᏂᎸᎩ ᎠᏆᏓᏅᏙᎩ.\nᏐᏉ ᎤᏩᏌ ᏥᎪᏩᏘ.”\nᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎢᏨᏃᏁᎭ, ᎩᎶ ᎠᏂ ᏓᏂᏙᎦ ᎥᏝ ᏴᏛᎾᏙᎴᎰᏏ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᏂᎪᎲᎭ.\nᎢᎸᎯᏢᏰᏃ ᎠᏂᏔᎵ ᎠᎴ ᎠᏂᏦᎢ ᏥᏓᏂᎳᏫᎣ ᎠᏴ ᏓᏆᏙᎥ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ, ᎾᎿ ᎠᏰᎵ ᎠᏆᏓᏑᏲᎢ.\nᎿᏉᏃ ᏂᎦᏛ ᏴᏫ ᎤᎾᏛᏓᏍᏛ, ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ,\nᏧᎾᎳᏏᏕᏂ ᏗᏯᏄᎵᏳ ᎩᎬ ᎤᎾᏓᏤᏪᏗᏱ.\nᎠᏎᎩ ᎠᎦᏗ ᏗᎦᎷᏫᏍᏔᏁᏗ ᎡᎵᏍᎨ ᏗᏟᏃᎮᏙᏗ ᎠᎾᎵᏙᎩᏯᏍᎩ, ᏰᎵᏉ ᏥᏳᎪᏗ ᏱᏥᏃᎯᏎᎴ ᏍᎩᎾᎾ ᏯᏍᎦᎢ.\nᎠᎴ ᎥᏝ ᎯᎠᏉ ᏗᎩᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏩᏒ ᎤᏁᎳᎩ ᏫᎬᏩᏲᏥᏓᏍᏗ ᏱᎩ; ᎾᏍᏉᏍᎩᏂ ᎠᏓᏁᎸ ᎦᎸᏉᏗᏳ ᎦᎸᎳᏗ ᎡᎯ ᏓᏰᏂ ᎤᏤᎵᎦ ᎠᏎᏉᏉ ᎢᎬᏩᎵᏍᏔᏂᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏒ ᏫᎬᏩᏲᏥᏓᏍᏗ, ᎾᏍᎩ ᏂᎦᏛ ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᏥᎬᏩᎸᏉᏗᎭ.\nᎾᏍᎩ (ᎧᏃᎮᏍᎩ) ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏠᏱᏉ ᎤᎾᏤᎵ ᏂᎨᎬᏁᎲᎢ, ᎠᎴ ᎾᏍᎩᏉ ᎠᏰᎵ ᎠᏁᎯ ᎨᏒᎢ, ᎠᎴ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬ ᎤᏚᎢᏍᏔᏅ ᎤᏁᎳᏗᏍᏗᏍᎬᎢ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏔᏅᎯ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎦᏌᏯᏍᏕᏍᏗ ᏂᎦᎥ ᏚᏳᎪᏛ ᎢᏣᎴᏂᏓᏍᏗᏱ, ᏞᏍᏗ ᎤᏂᏁᎫ ᎢᏳᎾᏛᏁᏗ, ᎠᏂᎦᏔᎾᎢᏍᎩᏂ ᎢᏳᎾᏛᏁᏗ,\nᎨᏍᏗ ᎬᎩᏢᏗ ᏱᎨᏎ, ᎪᎰᏍᏗ ᏴᏥᏅᏓ ᎨᎵᏍᎬ.\nᎦᏳᎳᏰᏃ ᎤᏂᎪᎲᎯ ᎨᏒᎩ ᏠᏆᎹ ᎡᏈᏌ ᎡᎯ, ᎾᏍᎩ ᏉᎳ ᎠᏁᏙᎲ ᎦᏚᎲᎢ, ᎾᏍᎩ ᏉᎳ ᎤᏴᏔᏂᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎵᏍᎬᎩ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏃ ᎰᏍᏛ ᎢᏍᏉᏎᎭ ᎠᏴ? ᎥᏝ ᎩᎶ ᎣᏍᏛ ᏱᎩ, ᏌᏉ ᎤᏩᏒᎯᏳ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ.\nᎡᎳᏆᏗ ᎦᏳᎳ ᏄᏑᎸᎮ, ᎦᎸᎳᏗ ᏪᏙᎮ ᏭᏲᎮᎢ ᏗᏓᎾᎩᏍᎩ.\n ᎤᏙᎯᏳᏃ ᏱᎾᏛᎦ ᎠᏇᎵᏒᏱ.\n”ᏤᏍᏗ ᏄᏓᎴ ᎩᎶ ᎯᏃᎯᏎᎸ,” ᎤᏛᏁ ᎠᎵᏥᏙᎲᏍᎩ.\nᎠᏎᏃ ᏉᎳ ᎤᏁᏨ ᎠᏥᎦᏘᏗᏍᏗᏱ, ᎠᎴ ᎣᎦᏍᏓ ᏧᏭᎪᏓᏁᏗᏱ, ᎠᎩᏁᏨᎩ ᎠᏥᎦᏘᏗᏍᏗᏱ, ᎬᏂ ᎬᏆᏓᏅᏍᏗ ᏱᏄᎵᏍᏔᏅ, ᏏᏐᎢ.\nᎿᏉᏃ ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎷᏨᎩ ᎨᏏᎻᏂ ᏚᏙᎥᎢ, ᎯᎠᏃ ᏂᏚᏪᏎᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎠᏂ ᎢᏥᏁᏍᏗ ᎬᏂ ᎢᏢ ᏫᎦᏓᏙᎵᏍᏔᏅᎭ.\nᏫᎵᎻ, ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᎠᎩᏌ ᏃᎴ ᏌᏌ ᎠᏨᏯᎢ ᏃᎴ ᏌᏌ ᎠᏂᏓ ᏃᎴ ᏌᎳᏓ ᏃᎴ ᎠᏯ.”\nᎤᎭᎶᎨᎢ ᏥᏍᏕᏥ.\nᎾᎯᏳᏉᏃ ᎧᎳᏩᏗᏒ ᎤᏣᏘ ᎤᎵᏖᎸᏅᎩ ᎦᏙᎯ, ᎠᏍᎪᎯᏃ ᎢᎦᏛᎯ ᎨᏒ ᎦᏚᎲ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎤᏲᏨᎩ, ᎦᏙᎯᏃ ᎠᎵᏖᎸᎲᏍᎬ ᎢᏳᎢ ᎦᎸᏉᎩ ᎢᏯᎦᏴᎵ ᏴᏫ ᏙᎨᏥᎸᎩ; ᎤᎾᎵᏃᎯᏴᎯᏃ ᎤᏂᏍᎦᎸᎩ, ᎠᎴ ᎦᎸᎳᏗ ᎡᎯ ᎤᏁᎳᏅᎯ ᎤᏂᎸᏉᏔᏅᎩ.\nᎠᎪᎾ ᏧᏂᏲᏏᏍᎩ ᏃᎴ ᎧᏂᎩᏓ ᎤᎾᎵᏍᏕᎸᏙᏗ, ᎤᎦᏨᏅ ᎪᏥᏓ ᏒᏕᎾ ᎠᏎᏃ ᎧᏂᎩᏛ ᎦᎾ, ᎦᏟᏣᏗ ᎠᏎᏃ ᏦᎢᏉ ᏗᎦᏟᏓ, ᎠᏚᏇᏍᏗ, ᎠᎫᏬᏰᏂ ᎦᎵ ᏗᏲᏍᏙᏗ ᎤᏍᏆᏓ ᎠᏓ ᏗᎪᏒᏔᏅ.\nᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᏓᏐᏴ ᏤᎵᎪ ᏚᏪᏒᏙᎠᏎᎢ, ᎿᏉ ᎦᎵᏉᎩ ᏧᏒᎯᏛ ᏂᏚᎾᏚᏫᏍᏔᏁᎢ.\n“ᎡᎳᏆᏗ, ᎩᎳᏈᏴ ᎯᏅᎪᎢ ᎧᏁᏌᎢ!” ᏧᏍᎦᏤᎢ ᎤᏥ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎸ ᏱᎩ.”\nᎦᎸᎳᏗ, ᎡᎳᏗ, ᎾᎥᏂ, ᎾᎨ ᎢᏴ.\nᎾᏍᎩ ᎢᏥᎪᎵᏰᎥᎭ ᏓᏦᎵᏍᏙᏔᏂ ᎪᎵᎬ ᎤᏕᎵᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ;\n“ᎭᏩ, ᎯᏥᏲᎯᏍᏓ!” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ.\nᎢᏧᎳᎭᏃ ᎠᏁᎵᏍᎨ ᎯᎸᎢᏴ ᎡᏆ ᏍᎦᏚᎩ ᏂᏗᎦᎵᏍᏔᏂ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎠᏤ ᏃᏈᏏ ᏛᏂᏯᎸᏂ ᎦᏓᏘ.\nᏥᏌᏃ ᎤᏁᏤ ᎠᎴ ᎯᎠ ᏁᏪᏎᎴᎢ; ᎠᏆᏐᎭᏛ ᎭᎴᏓ ᏎᏓᏂ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ; ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᏕᎯᏯᏁᎶᏕᏍᏗ.\nᎠᏎᏃ ᎨᏍᏗ ᎢᎦᎵᏍᏗ ᏱᎩ, ᎢᎩᏂᏴᏗ ᏕᎩᎸᏅᏗᏍᎬ ᏃᎴ ᎣᏍᏓ ᎢᎬᏁᏗ.\nᎠᎴᏬ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᎠᏂᏔᎵ ᏂᎯ ᏥᏤᏙᎭ ᎠᎾᎵᎪᎲᏍᎨᏍᏗ ᎠᏂ ᎡᎶᎯ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎠᏂᏔᏲᎯᎮᏍᏗ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏎᏍᏗ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ.\nᎤᎬᏫᏳᎯᏃ ᎤᏛᎦᏅ ᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅ ᏥᏌ ᎤᏟ ᎢᏯᏂᎢ ᎬᏩᏍᏓᏩᏕᎩ ᏂᏕᎬᏁᎲ ᎠᎴ ᏕᎦᏬᏍᎬᎢ, ᎡᏍᎦᏉ ᏣᏂ,\nᎠᎴ ᏙᏓᎸ ᎠᎴ ᏅᏯ ᎯᎠ ᏂᏚᏂᏪᏎᎸᎩ, ᏍᎩᏯᏐᎥᎦ, ᎠᎴ ᏍᎩᏴᏍᎦᎸᎥᎦ ᎾᏍᎩ ᎣᎩᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏪᎵ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎣᎦᏢᏔᏍᏗᏱ ᏂᎨᏒᎾ;\nᎾᏍᎩ ᏄᏪᏎ ᎢᏌᏯ, ᎾᎯᏳ ᏧᎪᎮ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏧᏃᎮᎴᎢ.\nᏕᏣᎵᏅᏫᏍᏗᏕᎬ ᏕᏣᏓᏴᎡᎮᏍᏗ, ᎾᏍᎩᏃ ᏂᏣᏛᏁᎲ ᎢᏥᎧᎵᎢᎮᏍᏗ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ.\nᎾᎩᏪᏐᎾᏉ, ᎤᏲ ᎠᎩᏰᎸᏅ.\n“ᏃᎴ ᎠᎾᏓᎪᎾᏗᏍᎩ ᎣᏍᏓ ᎤᎾᎴᏅᏗ ᎡᎵᏍᏗ.” \nᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏃᎴ ᏧᏬᏪᎳᏁ ᎡᏝᏪᎯ ᎤᎾᏟᏃᎮᎸ, ᎦᏍᎩᎸ ᏭᎵᏍᏛᏧᏅ ᏗᎪᏪᎵᏍᎩ ᏗᎪᏪᎶᏙᏗ ᎦᏁᎯ ᏭᎳᏛ ᎤᎩᏓᏟ ᎤᎴᏅᎲ ᏕᎪᏪᎵᏍᎬ.\nᏂᎦᏓ ᎤᎾᏓᏅᎾᏁᎢ ᎠᏦᏴ, ᏎᎦ ᎤᎾᎦᏙᏍᏕᎢ ᏫᎵᎻ ᏃᎴ ᎤᏬᏚᏟ: ᎢᏤᎯ ᎤᎵᏑᏫᏓ ᎧᏁᏌᎢ.\nᎿᏉᏃ ᎤᏂᏣᏖᏍᏗ ᏚᏃᏕᎯᎮᏍᏗ, ᎠᎴ ᏓᎾᏓᏡᏗᏍᎨᏍᏗ ᎠᎴ ᏓᎾᏓᏍᎦᎨᏍᏗ.\nᎪᎳ ᎢᎪᎯᏓ ᎤᎦᏎᏍᏕᎢ ᏌᎳᏓ ᎤᏤᎵ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᎾᏍᎩᏯ ᎤᏩᏌ ᏧᏤᎵ ᏗᏂᏲᏟ.\nᎠᎴ ᎥᏝ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎢᏳᏍᏗ ᎢᏴᏛᎭᏉ ᎤᏓᎵᏍᎪᎸᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᏓᏕᏘᏴᎮᎬ, ᎪᎱᏍᏗ ᎤᏂᎩᎬ ᎬᏗ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏥᎾᏛᏁᎮ ᎦᎸᏉᏗᏳ ᎨᏒ ᏥᏩᏴᎯᎮᎢ;\nᏂᎦᏛᏃ ᏴᏫ ᏑᎾᎴᎢᏳ ᎬᏩᎷᏤᎮ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ.\nᏦᎢᏃ ᏧᏒᎯᏛ ᎾᎪᏩᏗᏍᎬᎾ ᎨᏎᎢ, ᎠᎴ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᎠᎴ ᎾᏗᏔᏍᎬᎾ ᎨᏎᎢ.\nᎤᏪᎵᏍᏗ ᏂᎦᏓ ᎠᏂᎨᎯᏎ.\nᏙᏱᏨ ᎤᏪᏅᏎ ᏏᏆ.\nᎿᏉᏃ ᏚᏛᏛᏅᎩ ᎢᏳᎢ ᎤᎴᏅᎲ ᏏᏲᏍᏛ ᏄᎵᏍᏓᏁᎸᎢ. ᎤᏒᎯ ᏌᏉ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᏄᏗᎴᎲᏍᎬᎾ ᏄᎵᏍᏔᏅᎩ, ᎥᎬᏬᏎᎸᎩ.\nᎦᎢᏒᏰᏃ ᎠᎴ ᏓᎩᎪᎲ ᏓᎩᎪᎲ ᎦᎸᏉᏗᏳ ᏗᏥᏰᎸᎯ, ᎠᎩᏩᏛᎲᎩ ᎾᏍᏉ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᎠ ᏅᎬᏅ ᎥᎪᏪᎸᎩ; ᎾᏥᎦᏔᎲᎾ ᎦᎸᎳᏗ ᎡᎯ ᎤᏤᎵᎦ. ᎾᏍᎩᏃ ᎰᏩ ᏁᏥᎦᏔᎲᎾ ᏤᏣᏓᏙᎵᏍᏓᏁᎭ ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ.\nᎠᏎᏃ ᎠᏴ ᏂᏥᏪᎭ, ᏝᏍᎪ ᏯᏂᎦᏔᎮ ᎢᏏᎵ? ᎢᎬᏱ ᎨᏒ ᎼᏏ ᎯᎠ ᏂᎦᏪᎭ, ᎢᏣᏛᏳᎨᏗᏱ ᏅᏓᏨᏴᏁᎵ ᏓᎦᏥᏴᏔᏂ ᎾᏍᎩ Ꮎ ᎠᏰᎵ ᎤᏃᏢᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏄᎾᏓᏅᏛᎾ ᏴᏫ ᎦᏥᏴᏗᏍᎬ ᏓᏨᎾᎸᏍᏔᏂ.\nᎠᏒᏆᎶᏍᏗ ᎤᎴᏴᏒ ᏥᏳ ᎤᏬᏢ, ᏧᎾᏛᏐᏅ ᎤᎾᎵᎪᎲ ᏓᏗᏔᏍᎬ.\nᎦᏨᏗ ᏓᏕᏏ?\nᎠᏧᎬ ᎾᎥᏂ ᎠᎦᏘᏰ ᎤᏕᎶᎰᎯᏍᏗ ᎤᏓᏙᎵᏍᏔᏅ.\nᏚᎷᏫᏍᏔᏁᎸ ᏓᏳᏓᎴᏅᏓ, ᎠᎵ ᎤᎴᏴᏒ ᏗᎦᏓᏁ ᏂᏚᎵᏍᏔᏁ ᏚᏄᏮ, ᎪᎰᏍᏗ ᎤᎵᏍᏔᏁ ᎦᏙᎯ, ᎤᏄᎸᏁ ᏧᎴᏗ.\nᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏘᏃᎮᎸᎩ ᎠᎨᏴ ᎠᏓᏲᏁᎲ ᎠᏥᏂᏴᏛ; ᎠᏰᎵᏃ ᎤᏂᎧᏅ,\nᎾᏂᎥᏉᏍᎩᏂ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ ᎩᎶ ᎾᏍᎩ ᏳᎾᏰᏍᎦ ᎠᎴ ᏚᏳᏙᏛ ᏱᏚᎸᏫᏍᏓᏁᎭ ᎾᏍᎩ ᏓᎦᏓᏂᎸᎪᎢ.\nᎨᏍᏗ ᏅᏲ ᎭᏫᏂᏣ ᎬᏗᏍᎦᎶᏗ ᏱᎩ.\nᎧ, ᎢᏣᏕᎶᏆ ᏓᏟᎶᏍᏛ ᏒᎦᏔᎢᏳᏍᏗ ᏡᎬᎢ; ᎢᏳᏰᏃ ᏚᏩᏂᎦᎸ ᏗᏓᎨ ᏂᏕᎦᎵᏍᏓ, ᎠᎴ ᎩᎳᎢ ᏥᎦᎳᏍᏚᎲᏍᎪᎢ, ᎢᏥᎦᏔᎰ ᎪᎩ ᎾᎥᏂᏳ ᎨᏒᎢ.\nᎠᏎᏃ ᎯᎠ ᏅᏓᎦᏪᏏ, ᎢᏨᏲᏎᎭ, ᎥᏝ ᏱᏥᎦᏔᎭ ᏗᏣᏓᎴᏅᎢ; ᏍᎩᏯᏓᏅᏏ, ᏂᏥᎥ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᎯ.\nᏥᎷᏏᎵᎻᏃ ᎾᎥ ᏭᏂᎷᏨ ᎾᏍᎩ ᏒᎦᏙᎯ ᎠᏯ ᏇᏗᏂᏱ ᎢᏴᏛ, ᎣᎵᏩᏲᎯ ᎤᏌᎯᎸᎢ, ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏅᏎᎢ,\nᎤᎾᏅᏁᏃ ᎠᎴ ᎤᏂᏯᏫᏎ.\nᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏄᏂᏍᏆᏂᎪᏔᏅᎾ ᏥᎨᏎ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏂᎨᎬᏁᎸ ᏧᏅᏕᏤᏉᏍᎩᏂ ᎤᎾᏤᎵᎪᎯ ᎠᏁᎲᎢ, ᏧᏓᏕᏒᏛ ᏗᎬᏩᏲᎢᏍᏗ ᏂᎨᏒᎾ ᏕᎨᎦᎸᏍᏗ ᎤᎵᏏᎬᎢ, ᎦᎸᏉᏗᏳ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎠᏍᏆᎸᎲ ᎬᏗᏍᎩ.\nᎠᏎᏃ ᎢᏗᎦᏔᎭ ᎯᎠ ᎠᏍᎦᏯ ᏧᏓᎴᏅᎢ, ᎦᎶᏁᏛᏍᎩᏂ ᎦᎷᏨᎭ ᎥᏝ ᎩᎶ ᏱᎬᎦᏔᎮᏍᏗ ᏧᏓᎴᏅᎢ.\nᏫᏥᏤᎢ ᎢᏴ ᏱᏓᏌᏙᎭᏯ ᏴᏫ, ᎤᎾᏓᏅᏖᏗ ᎤᏂᏲᎰᏎ.\nᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏗᎦᏚᏓᎴᏍᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏍᎩᏯ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎤᏚᎩ ᎢᎬᏒᎢ.\nᎬᏩᏟᏍᏗᏰᏃ ᎾᏍᎩ Ꮎ ᎢᎸᎯᏳ ᎢᎦᎨᎦᏗᏍᏓᏁᎸᎯ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏁᎶᏔᏅᎯ ᎨᏒ ᎦᎸᎶᎢ ᏅᏓᏳᏓᎴᏅᎯ ᎠᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎨᎦᏠᏯᏍᏔᏅ ᎨᏥᏁᎸᎯ.\nᎾᏃ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅ ᎤᎬᏩᎵ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎾᏂᎦᏔᎲᎾ ᎨᏎᏍᏗ, ᏱᏨᏰᎵᏎᎭ.\nᏂᎬᎾᏛ ᎠᏒᎨ ᏓᏳᏓᎴᏅ ᎤᎪᏏᏓ ᎤᏪᏥ.\nᏰᎵ ᏱᏚᏂᏲᏏ ᏃᏉ ᏚᏙᎣᏐᏅ ᏧᏆᎶᎦ, ᏙᏉ ᏄᏍᏕᏍᏗ ᏧᎪᎳ ᏅᏙ ᎦᎷᏨ?\n”ᎡᎭ!” ᏩᏓᏅᏛᎳ!” \nᏔᎵᏁᏃ ᎯᎠ ᏅᏗᎠᏥᏪᏎᎵᎢ; ᎤᏁᎳᏅᎯ ᎤᏅᎦᎸᏛ ᎾᏍᎩ Ꮮ-Ꮧ ᎦᏓᎭ ᏲᏎᎮᏍᏗ.\nᎯᎠᏃ ᎾᏍᎩ ᎣᏒ ᎦᏙᎯ ᏥᎨᏥᏫᏎᎴᎢ; ᎾᏍᎩ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ, ᎠᎴ ᏗᎾᏓᏂᎸᎩ, ᎠᎴ ᎠᏂᎦᏔᏛᏍᎩ, ᎢᎦᏛ ᏦᎠᏍᎪᎯ ᎢᏳᏩᏓᏗ, ᎢᎦᏛᏃ ᏑᏓᎳᏍᎪᎯ, ᎢᎦᏛᏃ ᎠᏍᎪᎯᏧᏈ.\nᏐᏉ ᎢᎦ ᏍᎪᎯᏍᏆ ᎤᎶᏒᏍᏗ ᎤᏂᎷᏤᎢ ᎠᎾᎧᏔᏂᏙ ᏃᎴ ᎠᏂᎸᏉᏗᏍᎨᎢ.\nᏈᎵᎩᏍᎩᏂ ᎠᏥᏩᏛᎮ ᎠᏦᏓ; ᎠᎢᏒᏃ ᎠᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᎦᏛ ᏕᎦᏚᎲ ᎬᏂ ᏏᏌᎵᏱ ᏭᎷᏨ.\nᎢᏳᏰᏃ ᎣᏏᏳ ᎠᎩᏰᎸᏅᎯ ᎾᏍᎩ ᎯᎠ ᏱᏂᎦᏛᏁᎭ ᎥᏆᎫᏴᎡᎭ; ᎢᏳᏍᎩᏂ ᎣᏏᏳ ᎠᎩᏰᎸᏅᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᎿᏉ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎥᏆᏒᎦᎶᏔᏅ.\n“ᎨᏍᏗ ᎪᎱᏍᏗ ᎤᏕᏯᏙᏗᏍᎩ ᏱᎩ ᎠᎦᏍᏆᏟ.\nᎿᏉᏃ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᎤᎷᏨ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏚᏪᏲᏅᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎠᎴ ᎯᎠᏄᏂᏪᏒᎩ; ᎦᏙ ᎤᎵᏍᏙᏔᏅ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᏣᎦᎳ ᎿᎠ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏥᏚᎸᏫᏍᏓᏁᎭ?\nᎩᎶ ᎤᏩᏒ ᎤᏓᏅᏖᏛ ᏥᎦᏬᏂᏍᎪᎢ, ᎤᏩᏒᏉ ᎠᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏲᎰᎢ; ᎩᎶᏍᎩᏂ ᏅᏓᏳᏅᏏᏛ ᎠᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏲᎰᎢ, ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏐᎢ, ᎠᎴ ᎥᏝ ᎠᏠᎾᏍᏗ ᎨᏒ ᏳᏓᏑᏲᎢ.\nᎠᏙᎯ ᎠᏍᏛᎢ, ᏥᏍᏆᏯ ᎤᏁᎦ ᎦᏁᏥᎢ (ᎺᏌᏧᏎᏗ ᎢᏴ ᏓᏳᎶᏒ) ᏂᎦᏪᏍᎪᎢ,” Ꭳ, ᎫᏫᏍᎫᏫ, ᎫᏫᏍᎫᏫ, ᎫᏫᏍᎫᏫ!” \nᎠᏎᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏕᎸ ᏗᏣᏤᎵ ᏫᏓᎵᏗᏛᏓ ᏨᏒ ᎭᎵᏛᏗᏍᎬᎢ, ᏅᏓᎦᎵᏍᏙᏓ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒ ᏰᎵᏉ ᎠᏕᎸ ᎬᏩᎯᏍᏙᏗ ᏤᎳ.\nᎡᏈᎵ ᎤᎩᎬ ᏅᏛᎴᏅᏛ, ᏤᎩᎳᏯ ᎤᎬᎬ ᏩᏍᏗ, ᎾᏍᎩ ᏧᎵᏍᏆᏕᎴ ᎠᏰᎵ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᏛᏅᏃ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎨᏥᏔᏲᏎᏗ ᎨᏎᏍᏗ ᎪᎯ ᏣᏁᎭ.\nᎬᏅᎢ ᏥᏚᎢᏍᏓᏁ.\nᎯᎸᎢᏴ ᎤᏩᏙᎯᏴᏓ ᎢᏳᏍᏗ ᎠᏒᎨ, Ꮳ ᎪᎱᏍᏗ ᎤᏲ ᎢᏳᎵᏍᏙᏗ ᏱᎨᏒᎾ ᎢᏳᏍᏗ ᏄᏍᏕ.\nᎠᎨᏴᏃ Ꮎ ᏥᎪᏩᏘᏍᎬᎩ ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲ ᎦᏛᎦ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎡᏁᎲ ᎤᎬᏫᏳᏌᏕᎩ ᏥᎩ.\nᎬᏩᏃᏁᎴᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᏥ ᎠᎴ ᎢᏣᎵᏅᏟ ᏙᏱᏗᏢ ᏓᏂᏙᎦ ᎤᎾᏚᎵ ᎨᏣᎪᏩᏛᏗᏱ.\nᎠᏎᏃ, ᎠᏴ ᎦᏓᏅᏖᏍᎬ, ᎤᏟ ᎢᎦᎢ ᏅᏩᏙᎯᏯᏛ ᏳᏓᏅᏔ, ᏱᏅᏩᏍᏗᏉ ᎡᎲᎢ; ᎠᎴ ᎦᏓᏅᏖᏍᎬ ᎠᏴ ᎾᏍᏉ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎠᏇᎭ.\n“ᏌᏌ?” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᏍᎩᏃ ᏆᎩ ᏫᎤᎾᏂᎩᏒ ᏭᏂᎷᏤ ᎥᏘᎣᎩ ᎦᏚᎲ ᏆᏏᏗᏱ; ᎤᎾᏙᏓᏆᏍᎬᏃ ᎢᎦ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏂᏴᎸ ᎤᎾᏅᏁᎢ.\n“ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ ᏫᎵᎻ, “ᏱᏣᎸᏂᏗᏍᎬᎾ ᏱᎨᏎᎢ, ᏱᏣᏕᎶᎰᏎᎢ ᏧᏪᏥ ᏧᏩᏅᏙᏗ ᏄᏩᏁᎸ ᏌᎳᏓ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎡᏥᏁᏉᎡᏗ ᎨᏎᏍᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎴ ᏥᏌ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ.\nᎾᏍᎩᏰᏃ Ꮎ ᎯᎠ ᎾᏍᎩ ᎤᎬᏩᎵ ᎠᏥᏁᎢᏍᏔᏅᎯ ᎨᏒ ᎤᏣᏘᏂ ᎠᏂᎳᏍᏓᎸ ᎨᎳ ᎨᏒᎩ, ᎾᏍᎩ [ᎠᏂᎳᏍᏓᎸ] ᎤᏓᎴᏅᎯ ᎥᏝ ᎩᎶ ᎠᏥᎸᎨᎳᏍᏗᏱ ᏱᏚᎸᏫᏍᏓᏁᎮᎢ.\nᎠᏎᏍᎩᏂᏍᏊ, ᏍᏈᏍᏓᎾᏍᏊ ᎫᏘᏍᎬᏃ.\nᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏱᎩᏲᎱᏎᎴᏍᏗ ᏕᎩᎸᏫᏍᏓᏁᎸᎢ, ᎢᏗᏩᏛᎲᏉᏍᎩᏂ ᎤᎧᎵᏨᎯ ᎡᎦᎫᏴᏓᏁᏗ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᏗᎪᏪᎵᏍᎩ ᎤᎷᏤᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᏕᏲᎲᏍᎩ ᏓᎬᏍᏓᏩᏗᏙᎵ ᏂᎦᎥ ᎮᏙᎲᎢ.\nᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎠᎴ ᎤᏅᏒ ᎨᏒ ᏚᎾᏓᏛᏛᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎦᏙ ᎤᏰᎸᏗ ᎯᎠ? ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎢᏤ ᏗᏕᏲᏗ ᎨᏒᎢ? ᎤᎵᏂᎩᏛᏰᏃ ᎤᎲ ᎬᏗ ᏕᎧᏁᏤᎰ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ, ᎠᎴ ᎬᏬᎯᏳᎲᏍᎪᎢ.\nᏚᏌᎳᏓᏁᏃ ᏗᎦᏙᎵ ᏚᎧᎾᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏄᏪᏎᎢ; ᎣᏏᏳ ᎢᏣᎵᏍᎠᏁᏗ ᎤᏲ ᎢᏣᏛᎿᏕᎩ; ᎢᏣᏤᎵᏰᏃ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎦᎪᏰᏃ ᎯᎠ ᏥᏂᏣᏛᏅ, ᏯᏓᏅᏖ ᎢᏅ ᎢᎦᏘ ᎤᏁᏍᎨᏗᏱ, ᎥᏝ ᎢᎬᏱ ᏱᎦᎲᏍᎪ ᏯᏎᎯᎰ ᎢᎦᎢ ᏧᎬᏩᏔᏂᎯᏍᏗ ᎨᏒᎢ, ᎤᏙᎴᎰᎯᏍᏗᏱ ᏰᎵ ᎬᏩᏍᏆᏗᏍᏙᏗ ᎢᎦᎢ ᎤᎲᎢ.\nᎾᏍᎩ ᏗᎵᏍᏓᏴᏗᏱᏉ ᎨᏒ ᎠᎴ ᎠᏗᏔᏍᏗᏱᏉ ᎨᏒ ᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎨᏒᎢ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏇᏓᎵᏉ ᎨᏒ ᏧᎬᏩᎴᎢ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᏥᏂᎨᎬᏁᎴ ᎤᏓᏁᏟᏴᏍᏗ ᎨᏒ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎢᎪᎯᏛ.\nᎠᏎᏃ ᎤᏙᏓ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ; ᎣᏌᏂ ᎠᏄᏬ ᏫᏥᎾᎩ, ᎡᏥᏄᏬᏣ, ᎠᎴ ᎡᏥᏰᏑᏍᏙᎦ, ᎠᎴ ᏤᏣᎳᏑᎸᎦ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏛ ᏴᏫ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᎾᏍᎩ Ꮎ ᎠᏙᎴᎰᏍᎩ.\nᎾᎦᏛᏃ ᎤᏣᏘ ᏚᎾᏠᏱᎸᎩ, ᎠᎴ ᏉᎳ ᎠᎩᎵᎨᏂ ᎤᏂᏯᎸᏨ ᎬᏩᏔᏪᏙᏅᎩ.\n”ᎨᏍᏗ ᎤᏦᎠᏎᏗ ᏱᎩ.\nᎤᎧᏲᏓ, ᎦᏁᏔᏱ ᏕᎬᏗᏍᎪ ᏕᎦᎫᏍᏛᎥ, ᏃᎴ ᏧᎦᏣᎳᎩᏍᏗ ᎠᏍᏓ ᏕᎬᏗᏍᎪ ᏧᏌᏛᏙᏗ --- ᏍᎪᏯ ᏧᏂᏴᏙᏗ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎬᏩᏓᏅᎡᎮᎢ, ᏈᏓ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ, ᏔᏕᏲᎲᏍᎩ, ᎣᏏᏳ ᎠᏂ ᏥᏕᏙᎭ; ᎠᎴ ᏦᎢ ᏫᏙᏥᎵᏦᏛᎦ; ᏌᏉ ᏂᎯ ᏣᏤᎵᎦ, ᏌᏉᏃ ᎼᏏ ᎤᏤᎵᎦ, ᏌᏉᏃ ᎢᎳᏯ ᎤᏤᎵᎦ, ᎥᏝ ᏯᎦᏔᎮ ᏂᎦᏪᏍᎬᎢ.\nᎾᏆᏕᏘᏴᎲ ᎣᏍᏓ ᏱᎧᏁᏉᎦ ᎾᏆᏓᎨᏒ.”\nᎠᏰᎵ ᎢᏴ ᎠᎬᏱᏉ ᎤᏂᏯᎨ, ᏭᏩᎬᏛ ᏧᏌᎨᎢ ᎤᏂᎦᎭᎷᏰ, ᎠᏥᎷᏳᎵ ᎾᎥᏂ ᎤᏂᎧᎭᏲᏔᏁ.\n”ᎠᏯᏗ ᎩᎾᎵᎢ ᏱᎩ.\nᎤᎦᏔ ᏚᏩᏇᏅᏛ ᎤᏤᏌᏙᎩ ᏚᏪᏝᎸ ᏥᏔᎦ.\nᎠᎴ ᎤᏁᎳᏅᎯ ᏥᏔᏲᏎᎭ ᎠᎦᏔᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏆᏓᏅᏙ ᎤᏬᎯᏳᏓᏂᏗᏱ, ᎾᏍᎩ ᎢᏨᎨᏳᎥᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏏ ᎪᎵᏂᏗᏱ ᏫᏂᏥᎷᎬᎾ ᏥᎩ;\nᏭᏕᎵᎬ.\nᎢᏳᏰᏃ ᏚᏳᎪᏛ ᎧᏁᎩ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏟ ᎢᎦᎢ ᎤᏁᏉᏨᎯ ᏱᎩ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎲᎢ ᎠᏴ ᎦᏥᎪᎲᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎦᏙᏃ ᎠᏴ ᎾᏍᏉ ᎠᏏᏉ ᏛᏊᎪᏓᏁᎭ ᏥᏍᎦᎾ ᎾᏍᎩᏯᎢ?\nᏫᏥᎢᎦ ᎨᏒ ᎧᏁᏍᎦ ᎢᏳᏍᏗ ᎠᏒᎨ. ᏍᏈᏍᏓᏰᏃ ᎤᏂᏍᏆᏂᎪᏕ ᎧᏁᏍᎦ ᎦᎸᎳᏗᏣ.\nᎿᏉᏃ ᏚᏂᏐᏨ ᎨᏂᏏᎳᏗ ᎤᏂᎷᏨᎩ.\nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏂᎬᏁᎸ ᎤᏓᏅᏙ ᎤᏮᏔᏅ; ᎠᏓᏅᏙᏰᏃ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎠᎪᎵᏰᏍᎪᎢ, ᎾᏍᏉ ᎬᏍᎦᎵ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎯᎠ ᎾᏍᎩ ᏥᏂᏥᏪᎭ ᏩᏴᎭ ᏗᏥᎴᏂ; ᏴᏫᏰᏃ ᎤᏪᏥ ᏴᏫ ᏗᎨᏥᏲᎮᏎᏗ ᎨᏎᏍᏗ.\nᎠᏎᏃ ᏧᎾᏁᎶᏗ ᎤᏂᏯᏅᎮ ᏒᏃᏱ ᎠᎴ ᏔᎷᏣ ᎤᏂᏲᏔᏁ ᎤᎾᏠᎥᏔᏁ ᎠᏐᏴᎢ.\nᎠᏓᏪᎳᎩᏍᎬ ᎤᏁᎳᏛ, ᎬᏂᎨ ᏧᎦᏒᏍᏗ ᏓᏦᎯᏍᏗᏍᎬ ᎤᎶᎩᎸ, ᏫᎦᎷᎬᎾᏉ ᎠᏕᎭᏲᎲ ᏅᏃ.\nᎠᏎᏃ ᏅᏧᎵᏍᏙᏔᏅᎢ ᎪᎯ ᏣᎪᏩᏘᎭ ᎥᏝ ᏲᏍᏗᎦᏔᎭ; ᎠᎴ ᎠᏴ ᎥᏝ ᏲᏍᏗᎦᏔᎭ ᎾᏍᎩ Ꮎ ᏧᏍᏚᎢᎡᎸᎯ ᎨᏒ ᏗᎦᏙᎵ. ᎿᏉ ᎠᏗᏃᎾ ᎤᏛᎾ, ᎡᏣᏛᏛᎲᎦ, ᎤᏩᏒ ᏓᎧᏃᎮᎵ.\nᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏙᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎾᏍᎩᏯ ᎾᏍᎩᏯ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎰᎲᏍᏗᏱ, ᎠᏴ ᎤᏇᏓᎵ ᎨᏒ ᎢᏗᏍᏓᏩᏕᎩ ᏂᎨᏒᎾ ᏏᎩ, ᎠᏓᏅᏙᏍᎩᏂ ᎢᏗᏍᏓᏩᏕᎩ.\nᎠᎴ ᎾᏍᏉ ᎦᎸᎳᏗ ᎠᏁᎭ ᏗᎪᏢᏅᎯ, ᎠᎴ ᎡᎶᎯ ᎠᏁᎭ ᏗᎪᏢᏅᎯ; ᎠᏎᏃ ᏧᏬᏚᎯᏳ ᎨᏒ ᎦᎸᎳᏗ ᎠᏁᎯ ᏅᏩᏓᎴᎢ, ᎠᎴ ᏧᏬᏚᎯᏳ ᎨᏒ ᎡᎶᎯ ᎠᏁᎯ ᏅᏩᏓᎴᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᎩᏨᏛ, ᎾᏍᎩ ᏗᎦᏚᎲ ᎾᏱᏂ ᏧᏙᎢᏛ ᏭᏴᎴᎢ; ᏰᎵᏃ ᎠᏂᎪᏗᏳ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏍᏓᏩᏛᏎᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ.\nᎾᏍᎩᏃ ᎯᎠ ᎤᏛᎦᏅ ᎤᏣᏘ ᎤᏲ ᎤᏰᎸᏁᎢ; ᎤᏣᏘᏰᏃ ᎤᏪᎿᎢᏳ ᎨᏎᎢ.\nᎦᏁᏍᏓᎳᏗᏍᏗᏍᎩ ᎠᏍᎩᏗᏍᎨᎢ ᎠᎳᏂ.\nᎤᏩᏌ ᎡᏙᎮ ᎤᎨᏓᎵᏴ ᏧᏴᏨ ᎢᏣ, ᎤᏲᎢᏴ, ᎯᎸᎢᏴ ᏅᏃᎯ ᎢᏯᏖᏅ ᎨᏴ, ᎠᏯᏙᎵ ᎨᏎ ᎦᎶᎯᏍᏗ, ᎦᏣᏃᏍᏓ ᏓᎴᎲᏍᎬ ᎠᎹ ᎨᏴ ᎠᏍᏛᎢ.\nᏂᎪᎯᎸ ᎡᎶᎯ ᎨᏙᎲᎢ, ᎠᏴ ᎡᎶᎯ ᎢᎦ ᎦᏥᏯᏘᏍᏓᏁᎯ.\nᎾᏃ ᏗᎾᏠᏱᎯ ᏥᎩ, ᏂᏓᎾᏠᏱᎲᎾᏉ ᎢᏳᏍᏗ ᎨᏎᏍᏗ; ᎾᎿ ᎠᎾᎵᎮᎵᎩ ᏥᎩ, ᎾᎾᎵᎮᎵᎬᎾᏉ ᎢᏳᏍᏗ ᎨᏎᏍᏗ; ᎾᏃ ᎤᏂᏩᏍᎩ ᏥᎩ, ᏄᏂᎲᎾᏉ ᎢᏳᏍᏗ ᎨᏎᏍᏗ;\nᎠᎴᏍᏊ ᎥᏳᎩ ᎬᏗ ᎠᏰᏟᏴ ᎤᎾᏗᏨᏁ ᎦᏚᎲ ᏂᎬᏫᏍᏕ ᏚᏂᎾᎡ ᏗᎪᏪᎳᏅ ᏗᏣᎳᎩ ᏗᎪᏪᎵ.\nᎢᏓᎵᏅᏟ, ᎠᎩᎾᏫᏱ ᎢᏴᏛ ᎠᏆᏚᎵᎭ, ᎠᎴ ᏥᏯᏓᏙᎵᏍᏓᏁᎭ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗᏱ.\nᎾᏍᎩ Ꮎ ᎣᏥᏃᎮᏍᎬ ᎤᏣᏘ ᎪᎱᏍᏗ ᎦᏲᎦᏛᏗ, ᎠᎴ ᎤᏦᏍᏗᏳ ᏗᎪᏏᏐᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏗᏥᏍᎦᏃᎵᏳ ᎨᏒ ᎢᏣᏛᎪᏗᏱ.\nᏤᏍᏗ ᏤᏅᏒ.\nᏗᏂᏲᏟ ᎣᏍᏓ ᎤᏂᏰᎸᎮ ᏧᎾᏁᎶᏗ.\nᏛᏂᎾᏄᎪᏥᏰᏃ ᎤᎾᏠᎾᏍᏗ ᎦᎶᏁᏛ ᎠᎴ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎠᏂᎾᏄᎪᏫᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏰᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᏱᏓᏂᎶᏄᎲᎵ ᎾᏍᏉ ᎨᎦᏑᏰᏛ.\nᎠᏎᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᏚᏂᏍᏗᏰᏔᏁ ᎤᏂᏣᏘ ᎨᏒ ᏆᎳᏆ ᎤᏂᏔᏲᏎᏗᏱ, ᏥᏌᏃ ᎤᏂᎯᏍᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏥᏅᏏᏓᏍᏗ ᎡᎳᏗ ᎤᏓᏅᏁᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᏍᎩᏙᎵᎩ ᏍᎩᎦᏘᏓ, ᏂᎦᏛᏃ ᏓᎬᏯᎫᏴᎡᎵ.\nᎢᎬᏱ ᎤᏩᏛᎲᎩ ᎤᏤᎵ ᎤᏂᎵ ᏌᏩᏂ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎣᏥᏩᏛᎲ ᎺᏌᏯ; (ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎦᎶᏁᏛ ᎦᏛᎦ.)\nᎠᎴ ᏚᏔᏲᏎᎴ ᎪᏪᎵ ᏧᏅᏍᏗ ᏕᎹᏍᎦ ᏗᎦᏚᎲ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᏍᎩᏃ ᎢᏳ ᏱᏚᏩᏛᎲ ᎩᎶ ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏂᎧᎿᏩᏕᎩ, ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎾᏍᎩ ᏗᎨᎦᎸᎢᏛ ᏧᏘᏃᎯᏍᏗᏱ ᏥᎷᏏᎵᎻ.\nᎾᏍᏉ ᏉᎳ ᏱᎩ, ᎠᎴ ᎠᏉᎳ, ᎠᎴ ᏏᏆᏏ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎬᏂᏛ, ᎠᎴ ᎠᏲᎱᎯᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎪᎯ ᎨᏒ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏏ ᏥᎨᏎᏍᏗ; ᏂᎦᏗᏳ ᎢᏣᏤᎵᎦ;\nᎥᏝᏰᏃ ᏱᎦᏕᎣᏍᎦ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎯ, ᎾᏍᎩ ᎾᎿ ᎠᎾᎵᏍᏕᎸᏙᏗᏍᎬ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ; ᎠᏂᏧᏏ ᎢᎬᏱ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ.\nᎢᎬᏱᏱ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎢᏥᏏᏴᏫᎭ ᎢᏣᏓᏁᎸᏍᎨᏍᏗ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎢᏥᏁᏉᎡᎸᎢ, ᎾᏍᎩᏃ ᏞᏍᏗ ᏫᏥᎷᏨᎭ ᎩᎳ ᏫᎦᏟᏐᏗ ᏱᎨᏎᏍᏗ.\nᎠᏆᏗᎳᎾᎶᏰᏃ ᏄᎯᏐᏛᎾ, ᎦᎵᏎᎲᏃ ᎤᏓᏌᎧᎯᏳ.\nᎧ, ᎡᎵᏍᏗ ᎯᏣᏕᎶᎰᏌ ᏂᎦᎵᏍᏔᏂᏙᎲ ᏔᎵᎭ ᏧᏙᏓᏆᏓ.\nᎨᏍᏗ ᏱᏥᎦᏔᎮ ᏂᎦᏓ ᏚᎾᏙᎥ.\nᎠᎴ ᎾᏂᎥᏉ ᏴᏫ ᎨᏥᏍᎦᎩ ᎨᏎᏍᏗ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎠᏎᏃ ᎾᏍᎩ ᎬᎵᏍᏆᏗᏍᎩ ᎠᏟᏂᎬᏁᎯ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎠᏍᎦᏂᏍᎩᏂ ᎤᎵᏁᏨ ᎬᏗᏍᎬᎢ ᏄᏓᎴᏒ ᎤᏲ ᎠᏆᏚᎸᏅᏗᏱ ᎾᏋᏁᎸᎩ. ᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᎦᏂ ᎤᏲᎱᏒᎯ ᏱᎩ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᎠᏁᎰ ᎠᏰᎸ ᎾᏍᎩᏯ ᎣᏏ ᎤᏰᎸᏅᎢ, ᎠᎴ ᏄᏓᎴᏒ ᎤᎦᏔ ᎤᏤᎵᎦᏯ ᎠᏰᎸᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏍᎩᏃᎲᏏ, ᎦᏙ ᎮᎵᎭ? ᏥᏌ ᏚᏳᎪᏗ ᏏᏌ ᎠᎫᏴᎡᏗᏱ ᎠᏰᎵ ᎠᎫᏴᏗ ᎨᏒᎢ; ᏝᎨ?\nᎤᏂᏅᏍᏙᏍᎨᏍᏗ ᏗᏨᏍᏗᏱ, ᎠᏂᏁᎨᏍᏗ ᎪᎱᏍᏗ ᎢᏳᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏗᏲᎯᏍᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏬᏢᏅᎯ ᏥᎩ ᎤᎵᎮᎵᏨᎯᏉ ᏧᎾᏓᏂᎸᎢᏍᏗᏱ ᎠᏃᎯᏳᎲᏍᎩ ᎠᎴ ᎤᏂᎦᏙᎥᏒᎯ ᏥᎩ ᏚᏳᎪᏛᎢ.\nᏂᎪᎯᎸᎾ, ᎱᏃᎯᏳᎲ ᏃᎴ ᎤᎾᏅᎪᎢᏍᏗ ᎤᏓᎵᎨᏲᏤᎢ, ᏕᎦᏅᏅ ᏚᎧᎵᏤ ᎠᏂᎷᎬ ᏴᏫ ᎦᏚᏏ ᏓᏳᏂᎶᏒ.\nᎤᎪᎲᏃ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏅᏃᎱᎶᏗ, ᎾᎿ ᏭᎷᏨᎩ; ᎠᏎᏃ ᎥᏝ ᎪᎱᏍᏗ ᏳᏩᏛᎮᎢ, ᎤᎳᏍᏚᏒ ᎤᏩᏒ; ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᏞᏍᏗ ᎢᎸᎯᏳ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᏱᏣᏓᏔᏁᏍᏗ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᎤᏩᏴᏒᎩ.\nᎾᏍᎩᏰᏃ ᎠᏴ ᎡᎦᎵᎪᏔᏅᎯ ᏥᎨᏒᎩ, ᎠᎴ ᎠᎨᎳᏗᏍᏔᏅᎯ ᏥᎨᏒ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎾᏓᏙᎵᎩ ᎬᎭᏃᏓ ᎾᏅᏁ ᎠᏂᏔᏲᎯᎲ ᎨᎬᏬᎣᏗ ᏱᎨᏒᎾ, ᏃᎴ ᏱᏓᏂᏃᎯᏎᎲᎾ ᎨᏒ ᎤᎯᏍᏙᏗ ᎨᏒ ᎤᎾᏓᏅᏖᎸ.\nConnecticut ᏫᏚᏩᎧᏁ ᏧᎾᏙᎴᏆᏍᏗ ᎦᏄᏓᎴᎩ. ᎤᎾᏙᎴᏆ Latin ᎤᏂᎪᎵᏰᏗ ᏃᎴ ᎦᎵ ᏧᏃᏪᎶᏗ, ᎱᏂᎷᏤ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎠᏂᏍᎦᏰᎬᏍᏓ ᏚᎾᎭᏄᏮ, ᏧᏐᏱ ᏐᏈᎵ ᏗᏂᏂᏏᏁᎩ ᏓᏆᎴᎳ ᏧᎾᎩᎸᏗ, ᎤᏂᏐᏱ ᏗᏂᏁᎵ, ᎠᏂᏳᏩᏁᎦ ᎠᏂᎨᏯ. ᏂᎦᏓ ᏅᎩ ᎢᏯᏂ ᎠᏂᏓᏉ, ᏄᏍᏗᏓᏅ ᎣᎯᏍᏙᏗ ᎢᏳᏅᏂᏗ.\nᎾᏍᎩᏃ Ꮎ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏛᎦᏅᎩ ᎤᏁᏨ; ᎠᎴ ᎾᏍᎩ ᎤᏂᏍᏓᏩᏛᏒᎩ ᏥᏌ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎡᎩᏩ ᏧᏙᎢᏛ ᏕᎤᎶᏁᎢ, ᎠᏓᏅᏙ ᎤᏩᏔᏁ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎤᏣᏘ ᎤᎪᏄᎶᎯᏍᏗᏱ ᏂᎬᎾᏛᎢ; ᎾᏍᎩᏃ ᏄᎵᏍᏔᏅᎩ ᎾᎯᏳ ᎦᎶᏗ ᏏᏌ ᎤᎬᏫᏳᎯ ᏥᎨᏒᎩ.\n”ᎦᏚᏏ ᎢᏣ ᏩᏓᏒᏍᏓ!” ᎤᏛᏁ ᎤᏃᏕᎾ.\n”Ꭾ, ᎾᏄᏍᏗ ᎡᏆ ᎧᏅᏂᏍᎩ!” ᎤᏛᏁ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎠᏓᏅᏖᏍᎬ ᎠᎦᏴᎵᎨ ᏅᏛᎩᏅᏏᏛ, ᎾᏍᎩ ᎩᎶ ᎠᎪᏩᏘᏍᎩ, ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎤᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ; ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏙᏓᏥᏯᎴᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ.\nᎤᏰᎶᏒ ᎨᏒ ᎢᎦᏪᏍᏗ perhaps ᎠᏗᏍᎬ ᏱᏚᏅᏫᏍᏔᎾ.\nᎤᎧᏎᏍᏔᏁᎢ ᎤᏕᎶᎰᏌ ᎩᎶ ᏱᏚᎧᏅᎾ ᎨᏒ ᏭᏴᎴ ᎧᏁᏌᎢ ᏃᎴ ᎧᏁᏍᎦ ᎬᏗ ᎱᏚᏒᏁ ᎡᎳᏗᏣ.\nᎦᏚᎢᏣ ᏳᏂᎶᏌ ᎠᎾᏓᎭᏲᎯ ᎩᎳ ᎫᏩᏂᎪᏩᏛᏗ ᏚᏑᎬ.\nᎾᏍᎩᏍᎩᏂ ᎢᏥᏯᏅᏛ ᎠᏍᎦᎾᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎢᏥᏍᎦᎾᎯ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᏂᎦᎥ ᏂᏣᏛᎿᏕᎬᎢ.\nᏕᏥᏲᎵᎸᎭ ᎠᏏᏂᏟᏓ, ᏈᎵᎦᏂ, ᎭᎹᏏ, ᏆᏠᏆᏏ, ᎭᎷᏏ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᏁᎭ.\nᎾᏍᎩᏃ ᏧᏂᏣᏔ ᏣᎾᏢᏈᏍᎦ ᎤᏇᏓᎵ ᎬᏙᏗ ᎨᏒᎢ, ᎠᏴ ᎾᏍᏉ ᏓᎦᏢᏆᏏ.\nᎤᏢᏉᏗ ᎢᏤᎲᎩ ᎡᎶᎯ ᎠᎴ ᏂᏣᏁᎸᎾ; ᏕᏤᎶᎸ ᏗᏥᎾᏫ, ᎾᏍᎩᏯ ᏥᎾᎾᏛᏁᎰ ᏗᎯᏍᏗᏱ ᎨᏒ ᎢᎦ ᎠᏍᏆᎸ.\nᎣᏂᏃ ᎾᏍᏉ ᎠᏂᏐᎢ ᎠᎾᏛ ᎤᏂᎷᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎡᏍᎩᏍᏚᎩ.\nᎠᏂᎨᏴ ᏗᏣᏤᎵ ᎡᎳᏪᏉ ᎤᏅᏎᏍᏗ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎥᏝᏰᏃ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎩ ᎾᏍᎩ ᎤᏂᏬᏂᎯᏍᏗᏱ; ᎤᏃᎯᏳᏗᏱᏉᏍᎩᏂ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏥᏂᎦᏪ ᏗᎧᎿᏩᏛᏍᏗ.\nᎤᏣᏘ ᏂᎦᎥ ᏄᏓᎴᏒᎢ; ᏄᎬᏫᏳᏒ ᎠᏗᎾ ᏅᏗᎦᎵᏍᏙᏗ ᎾᏍᎩ ᎨᎦᎨᏅᏴ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎢ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ ᏂᎯ ᏥᏍᎩᏯᎦᏁᎭ; ᏕᏥᎨᏳᏎᏍᏗ ᎨᏥᏍᎦᎩ, ᎣᏍᏛ ᏂᏕᏣᏛᏁᎮᏍᏗ ᎨᏥᏂᏆᏘᎯ,\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏂᎦᏛ ᏧᏂᎳᏫᎥ ᎤᏂᏲᎮ ᎤᏂᏃᎮᎸᎯ ᏥᏌ ᎤᏡᏗᏍᎩ, ᎾᏍᎩ ᎤᏂᎯᏍᏗᏱ, ᎤᎾᏠᏤᏃ.\nᎤᎦᏯᎷᏛ ᎤᏭᏓᎸᏤ ᎠᏣᏗ, ᎩᏥ; ᏰᎵ ᎠᎵᏣᎬᏗᏍᎨᎢ ᎦᏂᏓᏛ ᏃᎴ ᎤᏔᎷᎩᏍᎨ ᏅᏓ ᎠᎦᎵᏍᎬ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᏂᏥᏍᎦᏒᎾ? ᎦᏙ ᏗᎦᎵᏍᏙᏗ ᏂᏦᎯᏳᏒᎾ ᎢᎩ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎪᎯᎸ ᎤᎦᎵᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎪᎢ, ᎠᎴ ᎣᏥᎦᏔᎭ ᎾᏍᎩ ᏂᎪᎯᎸ ᎣᏥᏁᎸ ᎠᏂ ᏦᏥᏰᎸᎢ, ᎤᎬᏫᏳᎯ ᎡᎲ ᎣᎩᎪᏁᎸᎢ;\nᏣᏂᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᎠᏅᏍᎩ ᎨᏎᎢ; ᎤᏂᎷᏤᏃ ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎦᏙᏃ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᏣᏅᏍᎪᎢ, ᏂᎯᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᎾᏅᏍᎬᎾ ᏥᎨᏐᎢ?\nᎤᎴᏅᎭ ᏣᎵ ᎤᏓᎵ ᏁᏂᏏ ᏚᏯᏪᏨ.\nᎾᎿᏃ ᎥᎦᎧᎲᎩ ᎠᏖᎵᏙ ᏧᏂᏦᏯᏍᏗ ᎠᎧᎵᏬᎯ; ᏚᏬᎢᎵᏃ ᏧᏂᏦᏯᏍᏗ ᎤᏂᎧᎵᎢᏍᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᎯᏏᏈ ᎤᏂᏆᏙᏔᏅᎩ, ᎠᎰᎵ ᎾᎥ ᎤᏂᏩᏌᏔᏅᎩ.\nᎠᏓ ᎬᏘ ᏓᏥᎶᏍᏗᏍᎨ ᎡᎳᏗᏨ ᎠᏰᎸᎢ ᎾᏍᎩᏯ ᏥᏓᎾᏥᎶᏍᏗᏍᎪ ᏧᏃᏰᏅ ᏗᏂᏲᏟ.\nᏗᏥᏲᎵ ᏞᏍᏗ ᎩᎶ ᏱᏥᎶᏄᎮᎴᏍᏗ; ᏚᏳᎪᏛ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᎾᏍᎦᏅᎾ, ᎾᏍᎩᏯ [ᎦᎶᏁᏛ] ᎾᏍᎦᏅᎾ ᏥᎩ.\nᎾᎯᏳ ᏥᏌ ᎬᏩᎷᏤᎸ ᎬᏩᏍᏓᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᎪ ᎤᏟᎠᏥᎸᏉᏗᏳ ᎾᎿ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎠᎴ ᎤᎩᏨᏛ ᏣᏂ ᏭᎪᎲᎩ ᏥᏌ ᎦᏙᎬ ᎢᏗᏢ ᏛᎦᏛᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ; ᏤᏣᎦᏅᎦ ᎠᏫ-ᎠᎩᎾ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎠᎲᏍᎩ ᎡᎶᎯ ᎤᏂᏍᎦᏅᏨᎢ.\nᎧᏴᏐᎵ ᎤᏂᏴᎮ ᏗᏓᏁᎸ ᎢᏣ ᏭᏓᏒᏍᏔᏁᎢ.\nᎤᎩᏨᏓ ᏑᎾᎴᎢ, ᎠᏥᎸᏳᎶᏗ ᎾᎥᏂ, ᎧᏫ ᎠᎵᏥᏍᎬ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᎤᏛᏣᏢ, ᎠᏌᎻᏓ ᎠᎦᏔᎾᎢ ᎤᏤᎸᏅ, ᎠᏋᏌ ᎾᏋᏂᏌᏅ ᎠᎦᏗ ᎠᎩᏬᏂᏒ ᎤᏒᎯ ᎤᏛᏅ.\nᏗᎩᏏ ᎦᏓᏍᎬᎢ ᎣᏍᏓ ᏄᏩᏁᎴ ᎤᏍᏆᏂᎪᏙᏗ, ᎠᏯᏖᎾ ᎦᎾᎸ ᎾᎥᏂ.\nᎿᏉᏃ ᏑᎾᏓᏡᎩ, ᎠᎴ ᎠᏂᏯᏫᏍᎩ ᏗᏘᏂᏙᎯ, ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎠᏂᏧᏏ ᏧᏂᏁᏤᎸᎯ, ᎬᏩᏂᏴᎲᎩ ᏥᏌ, ᎠᎴ ᎬᏩᎸᎸᎩ.\nᎤᏙᎯᏳᎯ; ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏕᎨᏥᏂᎦᎸᎲᎩ; ᎠᎴ ᏂᎯ ᏥᏙᎦ ᏦᎯᏳᏒ ᏂᎬᏂᏏᎭ. ᏞᏍᏗᏉ ᎤᏟ ᏱᏣᏤᎸᏎᏍᏗ, ᎯᎾᏰᏍᎨᏍᏗᏍᎩᏂ;\nᎠᏎᏃ ᎥᏝ ᏳᎵᏍᎪᎸᏓᏁᎴᎢ ᏥᏌ, ᎯᎠᏉᏍᎩᏂ ᏄᏪᏎᎴᎢ, ᏥᎮᎾ ᏗᏤᏅᏒ ᎪᎱᏍᏗ ᏗᏨᎾ ᏗᏁᎲᎢ, ᎠᎴ ᏫᏗᏃᎲᏏ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᎤᎬᏫᏳᎯ ᏂᏣᏛᏁᎸᎢ, ᎠᎴ ᏣᏙᎵᏨᎢ.\nᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᏗᎾᏓᏅᏟ ᎠᏍᎦᎨᏍᏗ ᎪᎱᏍᏗ ᏄᏍᏛᏗᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ ᏗᏄᎪᏗᏍᎩᏱ; ᎩᎶᏃ ᏗᎾᏓᏅᏟ ᏂᏣᏓᏅᏛᎾ ᎢᎪᏎᎮᏍᏗ, ᏕᎦᎳᏫᎥ ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᏣᏁᎫ ᎢᎪᏎᎮᏍᏗ, ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ ᏨᏍᎩᏃ ᎠᏥᎸᏱ.\nᎤᎷᏨᏃ, ᎠᏂᏧᏏ ᏥᎷᏏᎵᎻ ᏅᏓᏳᎶᏒᎯ ᎬᏩᏚᏫᏛ ᎤᎾᎴᏅᏅᎩ, ᎠᎴ ᎤᏣᏛᎩ ᎠᎴ ᎦᎨᏛ ᎠᏄᎯᏍᏗᏍᎬᎩ ᏉᎳ, ᎾᏍᎩ ᎤᏙᎯᏳᏒ ᎬᏂᎨᏒ ᎢᎬᏩᏅᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎩ.\nᎠᏴᏍᎩᏂ ᎦᏓᏅᏖᏍᎬ ᏅᎵᏌᎵᏉ ᏂᎯ ᏗᏍᎩᏳᎪᏓᏁᏗᏱ, ᎠᎴ ᎠᏫᏉ ᏧᏭᎪᏙᏗ ᎨᏒᎢ; ᎥᎥ, ᎥᏝ ᎠᏋᏒ ᏱᏗᎦᏓᏚᎪᏓᏁᎭ;\nᎠᏎᏃ ᏓᎬᏍᏕᎸ, ᎩᎳᏈᏴ ᎡᏝᏪ ᎨᏎᏍᏗ.\nᎠᎴ ᎾᏍᏉ ᎤᏚᎩ ᏥᏴᎠ ᎤᏁᎳᏅᎯ, ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏓᏅᏘ ᎠᎴ ᎤᏂᏁᎫᏥᏛ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏅᏒ ᏧᏃᎯᏳᎭ.\nᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎣᎦᏁᎳᎩ; ᎦᏙ ᏗᎦᏓᏛᏙᏗ ᏂᎯ ᏥᏌ ᎾᏎᎵᏗ ᎮᎯ? ᏍᎩᏛᏔᏂᏄᎴ? ᎬᎦᏔᎭ ᏂᎯ ᎾᏍᎩ ᎨᏒᎢ-ᎦᎸᏉᏗᏳ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎨᏒᎢ\nᎯᎠᏃ ᏂᎦᏪᏎᎴᎢ, ᎦᎪ ᎯᎠ ᏥᏂᏣᏛᏅ ᎤᎵᎢ ᏰᎭ, ᎠᎴ ᎡᏃᏱ ᎠᏰᎵ ᏱᏭᎷᏤᎸ, ᎠᎴ ᎯᎠ ᏱᏄᏪᏎᎸ, ᎩᎾᎵᎢ, ᏦᎢ ᎦᏚ ᏗᏍᏆᏙᎳᏍᏓ;\nᏚᏟᏂᏆᏅᏁ ᏫᎵᎻ, ᏂᎦᏓ ᎤᏔᎷᎩᏍᎬ ᎤᎵᏛᏔᏁᎢ.\nᏂᎯᏍᎩᏂ ᏗᏤᎾᎢ ᏥᎩ, ᎤᏲ ᎢᏣᎵᏍᏓᏁᏗ! ᎦᏳᎳᏰᏃ ᎢᏥᎭ ᎢᏥᎦᎵᏍᏓᏗᏍᎩ.\nᎿᏉ ᎢᏨᏃᏁᎭ, ᎠᏏᏉ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎾ, ᎾᏍᎩ ᎿᏉ ᏂᎦᎵᏍᏔᏅᎭ ᎢᏦᎯᏳᏗᏱ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ.\nᎪᏯᏛ ᎭᏫᏂᏣ ᏫᏄᏩᏁᎢ ᎠᏍᎪᎵ.\nᏓᏕᏲᎱᏍᎨᏃ ᎢᎸᎯᏢ ᎠᏓᏁᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎾᏙᎴᏆᏍᎬᎢ;\nᎠᎴ ᎾᏍᎩ Ꮎ ᎾᏍᏉ, ᎢᏳᏃ ᎢᎬᏩᏍᏗᎭᏉ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ, ᎨᏥᏱᏢᏗ ᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᏰᎵᏉ ᏔᎵᏁ ᏗᎬᏩᏱᏢᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᏞᏍᏗ ᎢᎩᏣᎦᎸᎢᏒᎩ, ᎢᏓᏎᎯᏉᏍᎩᏂ ᎢᏓᏙᎴᎰᎯ ᎤᏤᎵᎦ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ; ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸ ᎯᎠ ᏥᏂᎬᏅ; ᏚᏂᏯᏙᎸᎩ ᏗᏆᏄᏬ, ᎠᎴ ᎠᏆᏄᏬᏍᏗ ᎤᎾᏌᏍᏔᏅᎩ. ᎯᎠ ᎾᏍᎩ ᎠᏂᏯᏫᏍᎩ ᏄᎾᏛᏁᎸᎩ.\nᏗᏥᎦᏴᎵᎨᎢ ᎹᎾ ᎠᎾᎵᏍᏓᏴᏗᏍᎬᎩ ᎢᎾᎨᎢ, ᎠᎴ ᏚᏂᏲᎱᏒ;\n”ᎦᎵᏉᎩ ᎠᏎᏍᏗ ᎣᏍᏓ ᎠᎫᎷᏤᏗ.”\nᏌᏉ ᎤᎬᏫᏳᎯ, ᏌᏉ ᎪᎯᏳᏗ ᎨᏒᎢ, ᏌᏉ ᏗᏓᏬᏍᏗ ᎨᏒᎢ;\nᎨᏍᏗ ᏩᎾᎢᏱᎩ ᎤᏔᎷᎩᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏫᎵᎻ ᎠᏎᏃ ᏍᏔᏯ ᎠᏁᎸᏗᏍᎨᎢ.\nᎠᏎᏃ ᎤᏩᏒ ᎠᏰᎸ ᎠᏓᏁᎸ ᎧᏁᎢᏍᏗᏍᎬᎩ ᎾᏍᎩ ᏄᏪᏒ.\nᏥᏳᎯᏃ ᎤᏣᏅ, ᏚᏪᏐᏤᎢ, ᎤᏩᏒᏃ ᎤᏪᏚᎲ ᏭᎷᏤᎢ.\nᎾᎯᏳᏰᏃ ᏰᎵᏉ ᏗᎨᏣᏕᏲᏗ ᎡᏤᎵᏎᎸᎢ, ᎤᏚᎸᏗᏉ ᏂᏣᎵᏍᏓᏁᎭ ᎩᎶ ᏔᎵᏁ ᎢᏤᏲᏗᏱ ᏄᏍᏛ ᎢᎬᏱᏱ ᏗᏕᎶᏆᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ; ᎠᎴ ᎤᏅᏗ ᎤᎾᏚᎵᏍᎩ ᎾᏍᎩᏯ ᏂᏣᎵᏍᏔᏅ, ᎥᏝᏃ ᎤᏴᏍᏗ ᎠᎵᏍᏓᏴᏗ.\n“ᏕᏨᏯᏓᏂᎸᎦ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\n“ᎠᏥᎪᏅᏔᏁᎢ ᎠᏣᏗ.\n “ᎡᏝᏪᎯ, ᏧᏍᏆᏴᏍᏗ!” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ.\nᎠᏎᏃ ᎤᏁᎷᏅᏉ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎷᎦ! ᎯᎷᎦ! ᎯᏯᏛᎥᎦ! ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏓᏥᏯᏛᏂᏍᎪ ᎢᏣᏤᎵᎦ ᎤᎬᏫᏳᎯ? ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᎥᏝ ᏲᎩᎧᎭ ᎤᎬᏫᏳᎯ, ᏏᏌ ᎤᏩᏒ!\nᎯᎠᏃ ᎾᏍᎩ ᏅᏃᎱᎶᏗ ᎾᎿ ᎧᏃᎮᏛ ᏥᎨᏥᏫᏎᎴᎢ; ᎿᏉᏃ ᎠᎾᏛᎬᎦ, ᎠᏍᎩᎾ ᎦᎷᎪ ᎩᎳᏉ ᎢᏴᏛ, ᎠᎴ ᎠᎩᏍᎪ ᎧᏃᎮᏛ ᏧᏂᎾᏫᏱ ᎠᏫᏒᎯ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯ ᎢᏥᏆᎵᏏ ᎤᎵᏍᏈᏗ ᎠᎴ ᎠᏖᎵᏙ ᎦᏚᎢᏗᏢ ᏕᏥᏅᎦᎵᏍᎪᎢ; ᎭᏫᏂᏍᎩᏂ ᎨᏒ ᎢᏥᎧᎵᏨᎯ ᎨᏐ ᎠᏎᏉ ᎠᏓᎩᎡᏗ ᎨᏒ ᎠᎴ ᎠᏍᎦᎾᎢ.\nᎡᏏᏱᏃ ᎬᏗᏍᎩ ᎬᏩᏍᏓᏩᏛᏒᎩ ᏐᏇᏓ ᏈᎵᏱ ᎡᎯ, ᏕᏏᎶᏂᎦᏃ ᎠᏁᎯ ᎡᎵᏍᏓᎦ ᎠᎴ ᏏᎬᏓ, ᎦᏯᏃ ᏓᏈ ᎡᎯ, ᏗᎹᏗᏃ, ᎡᏏᏱᏃ ᎠᏁᎯ ᏗᎩᎦ ᎠᎴ ᏠᏆᎹ.\nᏗᎬᏩᎸᏌᏛᏍᎩᏂ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎨᏒ ᎣᏍᏛ ᎢᏯᎾᏛᏁᎯ, ᎠᏂᏧᏏ ᎢᎬᏱ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ;\nᏧᏓᏏᏃ ᎤᏡᏗᏍᎩ ᎾᏍᏉ ᎠᎦᏔᎯᏳ ᎨᏒᎩ ᎾᎿᏂ, ᏥᏌᏰᏃ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏯᏃᎩᏳ ᎾᎿ ᏓᏂᎳᏫᎬᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᏟᏂᎬᏁᎮᏍᏗ ᎾᎩᏴᏍᏗᏱ, ᏱᏅᏎᎦᎩᏰᏃ ᎩᎶ ᎾᏍᎩ ᏧᏕᎶᏆᎡᎸᎯ ᎨᏒ ᎾᏍᎩᏯ ᏄᏬᎯᏳᏒᎾ ᎨᏒ ᏴᎦᏅᎢᏍᏓ.\nᏥᎪ ᎦᎶᏁᏛ ᏧᏅᏏᏓᏍᏗ ᎾᏍᎩ? (ᎤᏁᎫ ᎤᏁᎢᏍᏗ ᏥᏁᎦ,) ᎠᏴ ᎤᏟᎢ; ᏓᎩᎸᏫᏍᏓᏁᎲ ᎤᏟ ᎢᎦᎢ; ᎥᎩᎵᎥᏂᎸ ᎤᏟᎯᏳ ᎢᎦᎢ; ᏗᎦᏍᏚᏗᏱ ᎥᎩᏴᏔᏅᎢ ᎤᏟ ᎢᎦᎢ; ᎠᎩᏲᎱᏏᏕᎾ ᎨᏒ ᏯᏃᏉ;\n“ᎣᏏᏉᏗ ᏫᎵᎻ ᏃᏉ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎾᏍᎩᏃ ᎤᏂᎪᎵᏰᎥ, ᎤᎾᎵᎮᎵᏤ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᏍᎩ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ ᎨᏒᎢ\nᎠᏎᏃ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎨᏒ ᎢᏓᏓᏎᎪᎩᏍᎩ ᎠᎴ ᎤᏟ ᎢᎦᎢ, ᎾᏍᎩ Ꮎ ᎢᎩᎨᏳᎯᏳ ᎢᏳᎵᏍᏔᏅᎯ ᏥᎩ ᎢᏳᏩᏂᏌᏛ.\n“ᎠᏎᏃ ᎨᏍᏗ ᏚᏳᎪᏛᎢ ᏱᎩ,” ᎤᏦᏱᎴ ᏲᎾ ᎤᏤᏍᏙ.\nᏚᎨᎯᏙᎸᎩᏃ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ.\nᎠᏦᏴ ᏭᏴᎴ.\nᏦ ᎢᏳᏟᎶᏓ ᎾᎥ, ᏧᏪᏅᏒ ᎨᎲ.\nᎻᏏᏱ ᏭᏂᎷᏨ, ᎤᎾᏓᏅᏖᎸᎩ ᏈᏗᏂᏱ ᏭᏂᎶᎯᏍᏗᏱ, ᎠᏎᏃ ᎥᏝ ᎤᎾᏁᎳᎩ ᏱᏚᏪᎵᏎᎴ ᎠᏓᏅᏙ.\nᏕᎦᏄᎪᏩᏃ ᏧᏤᎵᎦ ᎠᏫ, ᎢᎬᏱ ᏓᎴᏁᎰᎢ, ᎠᎴ ᎠᏫ ᎬᏩᏍᏓᏩᏕᎪᎢ; ᎠᏃᎵᎪᏰᏃ ᎧᏁᎬᎢ;\n”ᏗᏁᎸᏙᏗᎨ?”\nᏐᏉ ᎢᏳᏩᎦᏘ, ᏥᏫᎾ ᏥᎨᎲ, ᎣᎩᎾᎵᎪᏓ ᎡᎲ ᎠᎨᏳᏣ.\nᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; Ꮀ ᎤᏍᏆᏂᎪᏗᏳ ᎾᏍᎩ, ᏂᏥᎦᏔᎲᎾ ᏥᎩ ᏧᏓᎴᏅᎢ, ᎠᏃ ᏥᏓᎩᏍᏚᎢᎡᎸ ᏗᏥᎦᏙᎵ.\n ᎾᏍᎩᏃ, ᎪᎱᏍᏗ ᎤᎵᏍᏔᏅ.\nᎾᏂᎥᏰᏃ ᎠᏥᎸ ᎬᏗ ᎠᎹ ᎨᏥᏅᏝᏰᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏂᎦᎥ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎠᎹ ᎦᏅᎵᏰᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎠᏆᏚᎵᎭ ᎠᏂᏍᎦᏯ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᎤᎾᏓᏙᎵᏍᏙᏱ, ᏧᏂᏌᎳᏙᏗᏱ ᏗᎦᏓᎭ ᏂᎨᏒᎾ ᏧᏃᏰᏂ ᏄᏂᏔᎳᏬᏍᎬᎾ ᎠᎴ ᏄᎾᏜᏏᏛᎡᎲᎾ.\nᎢᏳᏍᎩᏂᏃ ᏙᏣᏓᎸᏉᏗᏍᎨᏍᏗᏉ, ᎢᏥᏍᎦᏅᎨᏍᏗ, ᎠᎴ ᏗᎧᎾᏩᏛᏍᏗ ᏕᏧᎪᏓᏁᎮᏍᏗ ᎢᏥᏍᎦᏅᏨᎯ ᎨᏒᎢ.\nᎠᎦᏗ ᏚᏯᏪᎬ ᏣᎵ ᎤᏚᎬ ᎤᎯᏍᏗ ᏏᏆ ᎦᎷᏯᏍᏗᏉ ᎬᏘ.\nᎠᎴ ᏔᎵᏁ ᏅᏩᏓᎴ ᎤᏅᏎ ᎤᏅᏏᏓᏍᏗ ᎦᎬᏩᏂᏐᏢᏔᏅ, ᎠᏒᎭ ᎤᏂᎨᎯᏙᎴᎢ.\nᎨᏍᏗ ᏄᏍᏛ ᎤᏃᏴᎬ ᎠᏇᎵᏒ ᏳᏃᏴᎨ ᎠᎦᎸᏥ.\nᏚᏓᏅᎡᎸᏃ, ᎠᎴ ᏔᎵᏁ ᏥᏳᎯ ᎤᏣᏅ, ᎠᏍᎪᎾ ᏭᎶᏎᎢ.\n“ᏫᎵᎻ ᏚᏙᎡᏍᏗ,” ᎤᏩᏌ ᏄᏓᏪᏎᎴ.\n”ᎯᏯᎦᏎᏍᏕᏍᏗ ᎰᎻ!” ᎤᏪᎷᏁ ᏌᏌ ᎠᏨᏯ.\nᎤᎵᏍᎨᏛ ᎤᏰᎸᎯ ᎠᎩᏃᎯᏎᎸ ᎫᏩᏖᎰᎸ ᎤᎾᎵᏗᎩᏛ.\nᎾᏃ ᎠᎩᏍᏗᏱ ᎤᎬᏩᎵ ᎪᎱᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᎢᏗᎦᏔᎭ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎱᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᎠᏂ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᏅᏩᏓᎴ ᎤᏁᎳᏅᎯ ᏁᎲᎾ ᎨᏒ, ᏌᏉ ᎤᏩᏒ.\nᎾᎥᏃ ᎢᏳᎾᏓᎵ ᎤᏂᏑᎵᎪᏤ ᎤᏂᏰᏣᏍᎬ ᎾᏗᎦᎵᏍᏙᏗᏍᎨ ᏍᏏᏉᏯ ᎤᏪᏥ ᏑᏓᎵ ᎢᏳᏕᏘᏴᏓ ᎠᎨᏳᏣ ᎤᏕᎶᏆᎡ ᏧᎪᎵᏰᏗ ᏣᎳᎩ ᎠᎴ ᏧᏬᏪᎶᏗ.\nᎤᎾᎵᏓᎩᏍᏗ ᎤᎾᏗᏍᎦᎶᏗ ᎠᎴ ᏧᎾᏓᏲᎯᏍᏗ?\nᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏓᏅᏅ ᏧᎾᎵᏍᎪᎸᏔᏅᎯ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏅᏙᎥ ᏅᏗᎦᎵᏍᏗᏙᏗᏍᎬᎢ.\nᎬᏂᎨᏒᏍᎩᏂ ᏂᎬᏁᎲ ᎠᏓᏅᏙ ᎠᏂᏏᏴᏫᎭ ᎨᏥᏁᎭ ᎪᎱᏍᏗ ᎣᏍᏛ ᎤᏅᏙᏗᏱ.\nᏧᏂᏐᎯᏍᏗ ᎤᏛᏅ Philadelphia ᏓᏳᎶᏒ ᎠᏧᏣ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏰᎵ ᏂᏫ. ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᎸᎯᏳ ᏓᏰᏥᎪᎢ ᏴᏫ ᎤᏪᏥ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᎵᏂᎬᎬ ᎤᏬᎴᏍᏗ, ᎠᎴ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸ ᎦᎸᎶᎢ.\n“ᏥᏟᏔᏓ, ᎤᏩᏙᎯᏴᏓ ᎨᏎᏍᏗ,” ᎤᏍᎦᎳᏤ ᏛᎦ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏅᏖᏍᏗ ᎾᏍᎩ ᏂᎯ ᏧᏩᎫᏔᏅᏒ ᏗᏣᏓᎴᏅᏛ ᏴᏫ ᎤᏇᏓᎵ ᎨᏒᎢ, ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᎨᏦᏎᎸᎯ ᎾᏍᎩ Ꮎ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎨᎪᏎᎯ ᏥᎩ, ᎾᏍᎩ ᎤᏇᏓᎸ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏗᎪᏱ ᏗᎬᏔᏅᎯ;\nᎤᏃᎯᏳᏅ ᏂᎦᏪᏍᎬ ᏍᎩᎾᎾ ᎢᏳᏕᏘᏴ ᏄᏍᏛ ᏗᎧᏃᏗ, ᏃᎴ ᎠᏉᎯᏳᏔᏅ ᏣᏉ ᎡᏍᎦ ᏱᏂᎬᏛᎦ ᏃᎴ ᎤᎵᏍᏗ.\nᎤᏟᏍᏓ ᎤᏅᎪᏤ ᏫᎵᎻ, ᎤᏟᏍᏓ ᎤᎪᏁ ᏂᎦᏓ, ᏃᎴ ᎤᎦᎾᏕ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ.\nᎢᏓᎵᏅᏟ ᎾᏂᎥ ᎩᎶ ᏄᏛᏅᏉ ᎠᏥᏯᏅᎲ, ᎾᎿ ᏅᏩᏛᏁᏍᏗ ᎤᏁᎳᏅᎯ ᏓᎧᎿᏩᏗᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᎨᏳᎢ, ᏂᎪᎯᎸᏉ ᏥᏦᎯᏳᎲᏍᎪᎢ, ᎥᏝ ᎠᏴ ᏥᎦᏔᎲᏉ ᎢᏳᏍᏗ, ᎪᎯᏍᎩᏂ ᎨᏒ ᎠᎩᎪᏁᎸᎢ ᎤᏟ ᎢᎦᎢ ᏗᏥᎸᏫᏍᏓᏏ ᎡᏥᏍᏕᎸᏗᏱ ᎨᏒᎢ, ᎢᏥᎾᏰᏍᎬ ᎠᎴ ᏕᏥᎾᏫᏍᎬᎢ;\nᎪᎯᏓ ᏚᎾᎧᎾᏁᎢ ᏫᎵᎻ.\nᏰᎵ ᏥᏍᎦᏰᎬᏍᏓ ᏨᏆᎧᏃᏗ ᎨᏒ.\nᏒᎧᏔ ᎤᏩᏂᎦᏢ, ᎤᎩᎶ ᏛᎦ ᏗᎦᏂᏱᏍᎩ ᎦᏂᏓᏛ ᎠᏓᏂᏛᏂᏍᎪ ᏃᎴ ᏗᎦᏒᎳᏍᎪ. ᏗᎧᏃᎩᏍᎩ ᏥᏍᏆᏯ, ᎠᎧᏔᎭ ᎤᏍᏆᎳ ᏃᎴ ᎤᏬᏚᏨ ᎨᏒ ᎬᏅᎢ, ”ᎤᎦᎾᏍᏓ, ᎤᎦᎾᏍᏓ, ᎤᎦᎾᏍᏓ.” \nᎾᏍᎩ ᏣᏍᏆᏂᎪᏙᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ, ᏄᏓᏓᎸᎾ ᎠᎴ ᎪᎱᏍᏗ ᎦᏰᏤᎵᏎᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎦᎾᏄᎪᏥᎸ ᎬᏗᏍᎩ,\nᎡᏍᎦᏰᏃ ᎤᏰᎸᏅ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᏛᏍᏆᎸᎯ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎢᏤ ᎧᏃᎮᏛ ᏗᎦᏥᏯᏠᎢᏍᏓᏁᏗᏱ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒ ᎠᎴ ᏧᏓ ᏏᏓᏁᎸᎯ ᎨᏒᎢ.\nᎢᏳᏰᏃ ᏂᎯ ᎢᎾᎨ ᎡᎯᏯ ᎣᎵᏩ ᏡᎬᏨᏱᏢᏅᎯ ᏱᎩ, ᎠᎴ ᎾᎿ ᎮᎯᏯ ᏂᎨᏒᎾ ᎨᏒ ᎣᏍᏛ ᎣᏍᏛ ᎣᎵᏩ ᏡᎬ ᏰᏨᏱᏢᏅ, ᎤᏟᎯᏳᏍᎩᏂ ᎠᎯᏘᏳ ᎾᏍᎩ Ꮎ ᎾᎿ ᎠᏁᎯᏯ ᏥᎩ, ᎨᏥᏱᏢᏗ ᎾᎿ ᎤᏅᏒ ᎤᎾᏤᎵᎦᏯ ᎣᎵᏩ ᏡᎬᎢ.\nᎤᏍᏆᎸᎲ ᏧᏪᏥ ᏗᎩᏗ, ᎠᏎ ᏗᎩᏗ ᏧᏪᏥ, ᏯᎾᏓᎪᎾᏗ ᎠᎴ ᏣᏉ.\nᎾᏍᎩ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎾᏍᎩᏯ ᎠᏓᏅᏙ ᎦᎾᎯᏍᏙᏗ ᏥᎩ, ᎡᏍᎦ ᏂᎦᎵᏍᏗᏍᎬᎾ ᎠᎴ ᎬᏗᏏᏴᏍᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎾᏍᎩ ᏥᏩᏴᎯᎭ ᎾᏍᎩ ᎠᏰᏙᎳᏛ ᎤᏗᏗᏢ;\nᏅᏙ ᎢᎦ ᎡᎯ ᎤᏤᎵᏛ ᎤᏬᏚᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᏅᏩᏓᎴᎢ, ᎠᎴ ᏧᏃᏚᎯᏳ ᎨᏒ ᏃᏈᏏ ᏅᏩᏓᎴᎢ; ᎠᎴ ᏃᏈᏏ ᎧᎸ ᎤᏬᏚᎯᏳ ᎨᏒ ᏅᏩᏓᎴ ᏄᏍᏙ ᏃᏈᏏ ᏄᏍᏛ ᎤᏬᏚᎯᏳ ᎨᏒᎢ.\nᎿᏉᏃ ᏌᎺᎵᏱ ᎦᏚᎲ ᎤᎷᏨᎩ ᏌᎦ ᏧᏙᎢᏛ ᎾᏍᎩ ᎾᎥ ᏥᎦᏚᎭ ᎦᏓ ᎠᎲ ᏤᎦᏈ ᏧᏁᎴ ᎤᏪᏥ ᏦᏩ.\nᏩᎩᎷᏨ, ᎯᏥᏧᏣ, ᎨᏍᏗ ᏂᎯ ᎢᏤᏅᏒ ᏱᎩ ᎭᏂ ᎠᏆᏛᏅ, ᎠᏎᎩ ᎤᎯᏐᏗ ᎢᏣᏓᏅᏙ.\nᏃᏗ ᎠᎵᎦᏲᏙᏗ ᎤᏰᎸ ᏣᎵᎧᏲᏗᏍᎪ ᎱᏰᎸᏁᎢ.\nᎾᏆᏕᏘᏴᎲ ᏂᎬᏂᏏ ᎡᎵᏍᏗ.” \nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏏ ᏞᎦ ᎢᏨᏰᎳᏗᏙᎭ, ᎿᏉᏃ ᏅᏛᎩᏅᏏᏛ ᏧᏬᎸ ᏮᏛᏥᎶᏏ.\nᎬᏂᏳᏉ ᎢᏣᏤᎵ ᎦᎵᏦᏕ ᏅᏔ ᏁᏨᏁᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏓᏍᏓᏩᏗᏙᎯ ᏥᏌ ᎤᎨᏳᎯ ᎯᎠ ᏄᏪᏎᎸᎩ ᏈᏓ; ᎤᎬᏫᏳᎯ ᎾᏍᎩ. ᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎤᏛᎦᏅ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎦᏚᎢ ᎤᏄᏬᏍᏗ ᎤᏓᏠᏍᏔᏅᎩ ᎨᏒᎢ, ᎦᏚᎢ ᎤᏄᏬᏍᏗ ᎤᏓᏠᏍᏔᏅᎩ, ᏂᏚᏄᏩᎥᎾᏰᏃ ᎨᏒᎩ, ᎠᎴ ᎥᏓᎵ ᏭᎵᏔᏗᏅᏒᎩ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏂᏲᏏᏍᎩ ᎠᎴ ᎤᏂᏔᏕᎩᏍᎩ ᎤᎾᏓᏅᏘ ᎢᏳᎾᎵᏍᏙᏗᏱ; ᏛᎨᏥᎧᎵᎵᏰᏃ.\nᏛᎦ, ᏍᎪᏯ, ᏙᎵᏓᏍᏆ, ᏩᏐᏝ, ᏧᏂᏌ, ᏙᏌ, ᎡᏙᏓ ᏗᎦᏅᎯᏓ ᏗᎦᏅᏌᏗ, ᏧᏂᎦᏃᏥ, ᏔᎳᏚ--- ᎢᏳᏍᏗᏉ ᎫᏓᎸᎬ ᏓᎩᏏᎳᏛ, ᏍᏉᏰᏃ ᎠᏆᏕᏗ, ᏣᎨ?”\nᏰᎵᏉᏍᎪ ᏂᎦᏗ ᎤᏂᎸᏉᏗ ᏏᏆ ᏯᏘᏃᎦ ᎰᎻ ᎠᎪᏕᏍᎩ ᎤᎾᏛᏁᎸᏗ ᎠᎬᏱᏣ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ ᎠᎬᏱᏣ.\nᎯᎠᏰᏃ ᏴᏫ ᏧᏂᎾᏫ ᏚᎵᏦᎲᏒ, ᎠᎴ ᏓᏂᎵᎷᎬ [ᎦᏲᎵᏳ ᏓᏛᎩᎭ, ᎠᎴ ᏗᏂᎦᏙᎵ ᏚᏂᏍᏚᏅ; ᎾᏍᎩ ᏗᏂᎦᏙᎵ ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏓᏂᎵᎷᎬ ᏗᎬᏩᎾᏛᎪᏙᏗᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏧᏂᎾᏫ ᏗᎬᏩᏃᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏗᎬᏩᎾᏓᏁᏟᏴᎡᏗ] ᏂᎨᏒᎾ ᏚᎾᏓᏅᏛ, ᎠᎴ ᏗᎦᎦᏥᏅᏬᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏴ ᏣᏂ, ᎢᏓᎵᏅᏟ ᎾᏍᏉ ᏥᎩ, ᎠᎴ ᎢᎦᎵᎪ ᏩᏕᎩ ᎢᏗᎩᎵᏲᏥᏙᎲᎢ, ᎠᎴ ᎬᏂᏗᏳ ᎨᏒ ᎾᏍᎩ ᎤᏤᎵᎦ, ᎠᏴ ᎨᏙᎲᎩ ᎠᎹᏰᎵ ᏆᏗᎹ ᏥᏚᏙᎥ, ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎠᎩᏍᏛᏗᏍᎬᎩ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᏥᏃᎮᏍᎬ ᎢᏳᏍᏗ.\nᏣᏁᎳ ᎠᏰᎵ ᏫᎦᏅᎨᎢ ᏣᏄᏏ.\nᎤᎩᏨᏓ ᏑᎾᎴ, ᎤᎾᏛᏅᎢᏍᏔᎾ ᏧᏂᏰᎸᏍᏗ, ᏚᏅᏍᎦᏝᏁ ᎦᎷᏯᏍᏘ ᏚᎾᎭᏄᏮ ᎭᏫᏂᏣ, ᎣᎭᏁ ᎢᏴ ᏧᏅᏙᏗ ᏗᎪᏍᏔᏱ ᏗᎬᏙᏗ ᎤᏁᎵᏎ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᎼᏏ ᏱᏥᏁᎴ ᎾᏍᎩ Ꮎ ᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ; ᎡᏙᏓᏍᎩᏂ ᎢᏥᏁᎭ ᎦᏚ ᎤᏙᎯᏳᎯᏯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ\nᏭᎷᏣ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎪᏪᎵ ᎤᏅᏍᎦᎴ ᏗᎦᏃᏣᏝᏍᎩ ᎤᏩᏣᎦᎸᏓ ᎠᎪᎵᏰᏗ ᎪᏪᎵ.\nᎤᏄᎪᏨᏃ ᎤᏍᏓᏩᏛᏎᎢ; ᎠᎴ ᎥᏝ ᏯᎦᏔᎮ ᎤᏙᎯᏳᎯ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᏄᏛᏁᎸᎢ, ᎠᏆᏁᎳᏫᏎᏉ ᎡᎵᏍᎨᎢ.\nᎬᏂᏳᏉ ᎠᏠᏱᎭ ᎨᎦᎫᏴᏓᏁᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᏍᎫᏕᏒᎯ ᏕᏥᎶᎨᏒᎢ, ᎾᏍᎩ ᏗᏥᎾᎯᏍᏓᏁᎸᎯ ᏥᎩ, ᎤᎾᎵᏍᏛᏃ ᎾᏍᎩ ᎤᏂᏍᎫᏕᏒᎯ ᏚᎵᎠᏴᎸ ᎤᎬᏫᏳᎯ ᏓᎿᏩ ᎠᏁᎩ ᎤᎾᏤᎵᎦ.\nᎠᏎᏃ, ᏐᏉ ᎢᏳᏩᎦᏘ, ᏒᏃᏱ, ᏍᏊ ᎤᏴᏣ ᏥᎨᏒ ᎠᏎᏍᎩᏂ, ᏛᏆᏂᎩᏒ, ᏕᎦᏁᎸ ᏒᏃᏱ, ᏔᎵᏚ ᎾᏎ ᎾᎥ ᎨᏒ.\nᏙᏓᏆᏓ ᎠᎬᏱ ᎾᎧᏔᎮᎢ ᏌᏌ ᎤᏂᎷᏥᏗᏒ---ᎠᏛᎩᏍᎨ ᎤᎵᏍᏗ ᎾᏂᏪᏍᎬ ᎤᏪᏥ ᎭᏫᏂ.\nᎠᎴ ᏅᏩᏓᎴ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎥᏥᎪᎥᎩ ᎦᏙᎯ ᏓᏳᏄᎪᏥᏗᏒᎩ; ᎠᎴ ᏔᎵ ᏚᎷᎬᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᏥᏚᎷᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎢᎾᏛ ᎦᏬᏂᏍᎬ ᎾᏍᎩᏯ ᎦᏬᏂᏍᎬᎩ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᎪᎱᏍᏗ ᎢᏣᏓᏁᎳᏅᎩ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎢᏣᎢᏒᎢ, ᏞᏍᏗ ᏗᏙᎳᏅᏍᏗ, ᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᎦᏚ, ᎠᎴ ᎠᏕᎸ; ᎠᎴ ᎢᏥᏏᏴᏫᎭ ᏞᏍᏗ ᏔᎵ ᏗᏣᏄᏬ ᏱᏗᏥᏁᎮᏍᏗ.\nᎠᏎᏃ ᎥᏝ ᎾᏍᏉ ᏓᏓᏏ, ᎾᏍᎩ ᎣᏍᏕᎯ, ᎠᎪᎢ ᏂᎨᏒ, ᎠᏎ ᎠᏥᎤᏍᏕᏎᏗ ᏱᎨᏎᎢ;\nᎡᎯᏍᏛ ᎤᏰᏍᏔᏁᎢ ᏫᎵᎻ.\nᏝᏍᎪ ᏲᎩᎭ ᏦᏘᏂᏓᏍᏗᏱ ᎤᏃᎯᏳᎯ ᏦᎦᏓᎵᎢ, ᎾᏍᎩᏯ, ᎾᎾᏛᏁᎲ ᎠᏂᏐᎢ ᎨᏥᏅᏏᏛ, ᎠᎴ ᎾᎾᏛᏁᎲ ᎤᎬᏫᏳᎯ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏏᏆᏏ?\nᎠᏎᏃ ᎤᏟ ᎢᎦᎢ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏓᏁᎰᎢ--ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪᎭ; ᎤᏁᎳᏅᎯ ᎤᎾᏢᏉᏗ ᏓᏡᏗᏍᎪᎢ, ᎤᎾᏓᏙᎵᏍᏗᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏓᏁᎰᎢ.\nᏗᏣᎧᏅᎦ, ᎢᏥᏂᏆᏘᎯ, ᎠᎴ ᎢᏥᏍᏆᏂᎪᎯ ᎠᎴ ᎢᏣᏗᏒᏅ; ᎠᏴᏰᏃ ᎪᎯ ᎢᏤᎲ ᏓᎩᎸᏫᏍᏓᏁ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎥᏝ ᏴᎨᏦᎯᏳᎲᎦ ᎾᏍᏉ ᎠᏎ ᎩᎶ ᏱᏥᏁᎮᎮᎸ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏫᏅ ᎤᏍᏓᏩᏛᏎᎢ, ᏙᎴᏛ ᎠᏄᏬ ᎤᏓᏇᏅᏕ ᎤᏰᎸᎭ ᎨᏒᎢ; ᎠᏂᏫᏅᏃ ᎬᏩᏂᏴᎮᎢ.\nᎾᏃ ᏅᏲᎯ ᏧᎳᎨᏯᏛᏤᎢ, ᎨᏥᏛᎦ ᎾᏍᎩ ᎠᎾᏛᎬᎦ ᎤᎵᎮᎵᏍᏗᏳ ᏥᏓᎾᏓᏂᎸᎪ ᎧᏃᎮᏛ; ᎠᎴ ᎥᏝ ᏱᏚᏂᎿᏍᏕᏠᎢ; ᏞᎦ ᎠᏃᎯᏳᎲᏍᎪᎢ; ᎠᎴ ᎨᏥᎪᎵᏯ ᎠᏂᏑᎵᎪᎪᎢ.\nᎠᎦᏗᏓ ᏅᏩᏍᏛ.\nᎿᏉᏃ ᏉᎳ ᏕᎤᎴᏅ ᎠᏰᎵ ᎡᎵᎣᏈᎦ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎡᏗᏂᏱ ᎢᏤᎯ, ᎦᏙᎴᎣᏍᎦ ᎢᏥᎧᎵᏨᎯ ᎨᏒ ᏕᏥᎾᏰᏍᎬ ᎦᎸᎳᏗ ᎠᏁᎯ.\nᎰᎻ, ᎡᎶᏗ ᏃᎴ ᏣᏄᏏ ᏃᎴ ᎡᎳᏆᏗ ᏭᏂᏴᎮ ᎧᏁᏌᎢ ᏭᏂᏌᏕ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ.\nᏅᏯ ᏓᎷᎬᏍᎨ ᏥᏍᏛᎾ ᏚᎭᏲᎲ, ᏐᏉᎯᎭ ᏓᏩᏘᏍᎬ ᏧᏂᏄᏌᏘ ᏓᏍᎫᏆᏓᎩᏍᎨ ᏃᎴ ᏂᏕᎬᎾᏓᎩᏍᎨ ᏧᎾᏓᏇᏅᎩᏍᏙᏗ, ᏕᎦᏯᎩᏍᎨ ᏓᏂᏂᏓᏛ ᏃᎴ ᎣᎭᏁ ᏗᏂᏅᏍᎨᏂ, ᎠᎾᏁᎸᏗᏍᎬᏉ ᎤᎾᎵᏗᎩᏍᏗ.\nᏅᎩᏨᏓ ᏑᎾᎴᎢ ᎢᎦ ᏣᏓᏴᎳᏔᏍᎦ ᎦᎸᎶᎢ ᏃᎴ ᏥᏍᏆᏯ ᏣᎾᎵᏖᎸᎮᎭ ᏕᏧᎬᎢ, ᏩᎦ ᏥᏓᏂᏃᏴᎵᏍᏗᎭ ᏧᎾᏓᏕᏒᏓ ᏃᎴ ᏥᏔᎦ ᎠᏨᏯᎢ ᏣᏙᎯᎠ ᏃᎴ ᎠᎬᏱ ᏥᏓᏓᏏᏙᎭ ᏓᏆᎴᎳ ᏅᏃᎯ. ᎤᏰᏤ ᏫᎵᎻ ᏃᎴ ᎤᏯᎴᎢ ᏌᎳᏓ.\nᎠᏂᏍᎩᎾᏰᏃ ᏧᎾᏓᏅᏙ ᎾᏍᎩ, ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸᏫᏍᏓᏁᎭ, ᎡᎶᎯ ᎠᏁᎯ ᎤᏂᎬᏫᏳᎯ ᎠᎴ ᎡᎳᏂᎬ ᏓᏂᏩᏛᎮᎦ, ᎾᏍᎩ ᏧᏂᏟᏐᏗᏱ ᏧᎾᎵᏍᏗᏱ ᎤᏂᏰᎸᎭ ᎦᎸᏉᏗ ᎢᎦ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏥᎩ.\nᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᏙᏍᏓᏦᏍᎬ Mrs. Chapman, ᎠᏆᎵᏏᏀᎥᏍᏗ ᎨᏒ, Mrs. ᏭᏓᏂᏴᎡᎲ.\nᎦᎶᎯᏍᏗᏳᎳ ᎤᎴᏅ ᏐᏉ ᎤᏬᏰᏂ ᎬᏘ ᎤᏍᏗᎩᏛ ᎨᏒ ᎪᎢᎭ ᎠᏫ ᎦᏁᎬ ᎤᏓᎥ ᎦᎶᎯᏍᏗ, ᏐᎢ ᎤᏬᏰᏅ ᎠᎬᏓᎨᏂ ᏫᏄᏩᏅ ᏙᎩᎧᏅ ᏐᏈᎵ ᎣᏥᏅ ᎠᎦᏍᎩ.\nᎥᏝᏰᏃ ᏯᏆᏚᎵ, ᎢᏓᎵᏅᏟ, ᏂᏥᎦᏔᎲᎾᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒᎢ, (ᎢᏥᎦᏔᎾᎢᏉᏰᏃ ᏱᏅᏣᎵᏍᏓ ᎢᏨᏒ ᎢᏣᏓᏅᏖᏍᎬᎢ,) ᎾᏍᎩ ᎠᎫᏏᏲᎢᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎸ ᎢᎦᏛ ᎢᏏᎵ, ᎬᏂ ᎤᏂᏣᏘ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏴᎸᎯ ᎨᏎᏍᏗ,\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏚᏗᎦᎴᏯᏍᏔᏅ; ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏚᏁᎸ; ᎤᏓᏅᏘᏳ ᎨᏒ ᏅᏩᏍᏗᏉ ᏂᎪᎯᎸᎢ.\n”ᎬᏯᎵᎮᎵᏤᎭ!” ᏍᏓᏯ ᏄᏪᏎ ᏫᎵᎻ.\nᏒᎦᎾᏲᎪ! \nᏔᎵᏚ ᎢᏯᏂ ᏧᏁᏠᏍᏗ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏯᎾᏛᏁᎯ, ᎾᏍᎩ ᎬᏂᏛ ᏡᎬ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏫᎬᏩᏂᏴᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᎦᏚᎲᎢ.\nᎠᎦᏴᎵᎨᏰᏃ ᎬᏂᏛ ᎤᏤᎵᎦ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎤᏁᎸ ᎤᏪᏥ ᎬᏂᏛ ᎤᏣᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ.\nᏤᏍᏗ ᎠᎦᏗᏓ ᏱᏍᏗᎨᏍᏗ ᎪᎱᏍᏗ ᏍᏗᏨᎢᏍᏙᏗ.”\nᎠᏆᏅᏛ ᏔᏘᏲᎯ.\n“ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ ᏄᏍᏛ ᎠᎦᏍᏉᏟᎢ,” ᎤᎵᏍᎦᏎᏔᏁᎢ ᏧᏍᏆᏴᏍᏗ.\nᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎬᏂ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎠᏂᎶᏐᏅᎭ ᏌᏉ ᎤᏍᏗ ᎠᎴ ᏌᏉ ᏭᏍᏗᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎥᏝ ᏴᎦᎶᎯ ᎬᏂ ᏂᎦᏗᏳ ᎠᎧᎵᏨᎭ.\nᎤᎬᏫᏳᎯᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᎪ ᎯᎠ ᎠᏂᏔᎵ ᎨᏒ ᎢᏣᏚᎵ ᏗᏨᏲᎯᏎᏗᏱ? ᏆᎳᏆ, ᎤᎾᏛᏁᎢ.\nᎨ ᏩᎩᎷᏨ ᏃᎴ ᎠᏆᎴᏫᏍᏔᏅ ᎠᏆᏔᎲᏒᏃ, \nᎩᎶ ᏄᏓᎴ ᏯᎧᏔᎭ ᎢᎦᏪᏍᏗ ᎠᎴ ᎧᏃᎮᏓ, ᏱᎦᎵᎡᎵᎩ ᎠᏋᏗ ᏓᎩᏏᎳᏛᎢ.\nᎤᏬᎯᏨᏃ, ᎠᎴ ᎤᎾᏰᎯᏍᏗᏳ ᏄᎵᏍᏔᏅ ᏥᏳ ᎦᏂᏓᏍᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎹᏟ ᎬᏗ ᎨᏒ ᎤᎶᏐᏅᎢ, ᏉᎳ ᏚᏪᏯᏔᏅᎩ,\nᎬᏃᏌᏍᏗᏍᎬᎢ ᎤᏩᏂᎨᎢ ᎥᏃᏥ\n“Ꮘ-Ꮘ-Ꮘ!”\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎢᏥᎷᏤᎸᎩ ᎯᎠ ᏥᎾᏂᏪ ᎠᎾᏙᎴᎰᏍᎩ;\nᎾᏍᎩ ᎤᏣᏘ ᎠᏆᏚᎵᏍᎬ ᎬᎪᏩᏛᏗᏱ, ᎠᎴ ᎦᏅᏓᏗᏍᎬ ᏕᏣᏠᏱᎸᎢ ᎾᏍᎩᏃ ᎠᎩᎧᎵᎢᏍᏗᏱ ᎤᎵᎮᎵᏍᏗ ᎨᏒᎢ,\nᎢᎬᏪᏅᏛᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎪᏢᏩᏗᏒ ᎤᎵᏥᏙᏁᎢ, ᎤᏃᎮᎴ ᎦᎶᏁᏛ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ.\nᎤᏔᎷᎩᏍᎩ ᎤᎵᎪᎲᏍᏗ, ᎤᎧᎭᏲᏛ ᏏᏅᏓ ᎨᏐ ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏲ ᏄᏍᏗᏓᏅ ᏍᎩᏴ, ᏕᏧᎬ ᎧᏂᎩᏛ ᏧᏆᎶᎦ, ᎾᏍᎩᏯ ᎤᏁᏍᏔᎳ ᎤᏲᏨ ᎦᎸᎶ ᏧᏓᏴᎳᏙ ᏂᏚᏍᏛ ᏕᏧᎬ, ᏃᎴ ᏅᏬᏘ ᎪᏒᏙᏗ ᎠᎾᎢ, ᎤᏬᏗᎨ ᎧᏁᏌᏟ ᎦᎳᎨᏴ ᎦᏙ.\nᎠᏋᏌ ᎠᏆᏓᏍᏕᎸᏗ, ᏥᏌᎹᏗᏴ ᎬᏗᏍᎪ, ᎠᎴ ᏯᎩᏲᏏᎭ.\n“ᏥᎦᏔ ᎭᎾ ᏥᏴ ᎧᏁᏌᎢ ᎣᎳ ᏗᎬᎩᎶᏍᏙᏗ ᎦᎶᏔᏅ ᎠᏍᏆᏂᎪᏛ, ᎠᏓ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏍᎩ ᎯᎠ ᏥᏂᎦᏪ ᏥᎧᏁᎦ ᎥᏝ ᎠᏍᎩᎾ ᎤᏯᎢ ᎤᏁᎢᏍᏗ ᏱᎩ; ᏥᎪ ᎠᏍᎩᎾ ᏰᎵ ᏱᏓᏍᏚᎢᏏ ᏗᎨᏫ ᏗᎦᏙᎵ.\n“ᎮᎾᏗᎾ, ᎯᏣᏚᎵᏍᎨᏍᏗ ᏣᎪᏩᏛᏗ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.” \nᏚᏯᏪᏣ ᏍᎩᎾᏛᏁᎲ, ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏍᎪᏍᏗ, ᏚᏯᏪᎨ ᎦᏙᏩᏕᎬ, ᏚᏯᏪᎨ ᎦᏅᎬ.\nᎯᎠᏰᏃ ᏄᏪᏎᎴᎢ, ᎡᎯᏄᎪᎢ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ, ᏂᎯ ᎯᎦᏓᎭ ᎠᏓᏅᏙ.\nᎤᏍᎪᏃ ᎤᏂᏲᎴ ᎠᏖᎵᏙᎩᎯ, ᎠᎴ ᎤᏂᏁᎴ ᎠᏛ, ᎾᏍᎩᏃ ᎤᏥ ᏭᏁᎴᎢ.\nᏥᏌᏃ ᎤᎪᎲ ᏭᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᎨᏴ, ᏣᏢᎬ ᎡᏧᏓᎳᎩ.\nᎠᎴ ᎾᏍᎩ ᎧᏃᎮᏍᎩ ᎢᏣᎵᏍᏕ ᎸᏙ-Ꮧ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ.\nᎤᏂᏣᏘᏃ ᎤᏂᎪᎲ, ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏧᎵᏍᎪᎸᏓᏁᎸᎯ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏴᏫ.\nᏌᏊ ᎢᏳᏩᎪᏗ ᏒᏃᏱ ᏫᎣᎩᎷᏣ ᏦᎨᏅᏒ ᎩᏟ ᎤᏍᎦᏎᏗᏊ ᏂᎦᏪᏍᎬ ᏓᏑᏫᏍᎬ ᎤᏠᏱᏊ ᎪᎱᏍᏗ ᎠᏊᎢᏴ ᏣᎪᏩᏘᏍᎪᎢ.\nᏰᎵᏉ ᎦᏅᏍᏔ ᎬᏘ ᏚᏩᎭᏂᏍᏗ.\nᎿᏉᏃ ᏕᎦᎳᏫᎥᎢ ᎩᎶ ᎢᏳᏍᏗ ᏚᎴᏁ ᎠᏆᎵᏏ ᎨᎺᎵ ᏧᏙᎢᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᎾᏂᎥ ᏴᏫ ᎬᏩᎸᏉᏗ, ᎠᎴ ᎤᏁᏤ ᎨᏥᏅᏏᏛ ᏞᎦ ᏧᏂᎧᎲᏍᏗᏱ.\nᎢᏤᏯᏔᎯᏳ ᎨᏎᏍᏗ ᎾᏍᎩᏃ ᏞᏍᏗ ᎩᎶ ᎡᏍᎦ ᎤᏬᎭᏒᎩ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ; ᏞᏍᏗ ᎤᏴᏍᏗ ᎤᎿᏍᏕᏢ ᎦᎾᏄᎪᎬ ᎢᏣᏕᏯᏙᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎤᏂᏣᏘ ᎦᏓᎭ ᎢᏳᎾᎵᏍᏔᏅᎩ;\nᏮᎩᏙᎵᎩ, ᏧᏍᏆᏴᏍᏗ ᎨᎵᎠ.\nᎠᎴ ᎬᏂᏳᏉ ᎾᎿ ᎬᏂᎨᏒ ᏂᎬᏩᎾᏛᏁᎴ ᎼᏏ ᎠᎴ ᎢᎳᏯ ᎬᏩᎵᏃᎮᏗᏍᎨᎢ.\nᏄᏨᏉᏛᎾ ᏃᎴ ᎨᏍᏗ ᎣᏍᏓ ᎤᏰᎸᎯ ᏱᎩ ᏯᏂᎸᏉᏗᎭ.\nᎠᏎᏃ ᎤᎾᏟᏂᎬᏁᎴ ᎠᏍᏓᏯ ᎠᏂᏁᎬᎢ, ᎠᏂᏔᏲᎯᎮ ᎠᎦᏛᏗᏱ. ᎾᏍᎩᏃ Ꮎ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏂᏁᎬ ᎤᎬᏫᏳᏤᎢ.\nᎠᏁᏓᎶᏄᎮᏍᎩ, ᎤᏂᎫᏏᏯ, ᎤᎾᏓᎵᏌᎳᏗ, ᎤᏂᎨᏳᎯ ᏱᏍᏛ ᎤᎾᏓᏅᏓᏗᏍᏗᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏂᎨᏳᏒᎾ,\nᎠᏎᏃ ᏐᏊ ᎪᎱᏍᏗ ᏧᎾᏓᏕᏙᏗᏍᎨᎢ ᎤᎵᎮᎵᏍᏗ ᎠᏁᎲᎢ... ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ!\nᎨᏍᏗ ᏳᏓᏍᏕᏓᎵᏴᏌ ᎤᎧᏛ ᏲᎾ.\nᎠᏧᎬ ᎾᎥᏂ ᎤᎵᏍᏛᏧᏁ, ᏫᏓᎧᏁᎢ ᎠᏙᎯ ᎦᎸᎳᏗᎨ ᏚᏅᏓᏒ, ᎤᏓᏙᎵᏍᏔᏁᎴ ᏲᎾ ᏃᎴ ᎢᎾᎨ ᎠᏁᎯ ᎠᏟᏅᏨ, ᏍᏔᏯ ᏄᏪᏎ ᎤᏚᎩ ᏱᎨᏒᎾ.\nᎿᏉᏃ ᏆᎴᏗ ᎤᏂᏴᎲᎩ ᏥᏌ ᎠᎴ ᎤᎵᎥᏂᎸᎩ.\nᎢᎦ-ᎦᏘ ᏧᏂᎸᏌᏓᏕᏗ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᏗᏣᏤᎵ ᏴᏫ ᎢᏏᎵ ᎤᎾᏤᎵᎦ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᎯᎾᏃ ᎦᎪ ᏍᎩᏲᏎᎭ? ᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏁᏪᏎᎴᎢ, ᎦᎶᏁᏛ ᏂᎯ.\nᎠᎦᏑᏴᏛ ᎡᏣᎸᎢ ᏧᏪᏥ ᏫᎨᏣᏲᎵᎭ. ᎡᎺᏅ.\nᎾᏍᎩ Ꮎ ᎧᏁᎬ ᎾᎯᏳ ᎡᎶᎯ ᎤᏖᎸᏁᎢ; ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎤᏚᎢᏍᏔᏅ, ᎯᎠ ᏄᏪᏒ, ᎠᏏ ᏌᏉ ᏅᏓᏥᏖᎸᏂ ᎥᏝ ᎡᎶᎯᏉ ᎤᏩᏒ, ᎦᎸᎶᎢᏍᎩᏂ ᎾᏍᏉ.\n“ᏙᎢᏳᏍᏗ ᏂᎦᎵᏍᏗᎭ?” ᎤᏛᏛᏁ, ᏚᎪᎭ ᎨᏥᎾᏌᎢ ᎤᎾᏓᏓᏍᎬ.\nᎭᏢ ᏗᏓᎴᎲᏍᎦ ᏓᎿᏩ ᎠᎴ ᏗᎵᏍᏗ ᎨᏒ ᏂᎯ ᎢᏤᎲᎴ? ᏝᏍᎪ ᎾᏍᎩ ᎠᏚᎸᏗ ᎨᏒ ᏗᏥᏰᎸ ᎭᏫᏂ ᏥᏓᎵᎭ ᎾᎿ ᏴᏗᏓᎴᎲᏍᎦ?\nᎤᎾᎵᏘᏔᏅ ᏐᏈᎵ - ᏚᎾᏓᏍᏕᏓᎵᏴ ᎦᎷᏯᏍᏗ, ᎠᎬᏱ ᏐᏉ ᏃᎴ ᎠᏂᏐᎢ - ᎦᎨ ᎠᎵᏍᏆᏍᏗᎬ ᏃᎴ ᎤᎵᎪᎲᏍᏗ ᎠᎴᏂᏍᎬ.\nᎠᎴ ᎾᏍᏉ ᎪᏪᎳ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎠᏂᏔᎵ ᎤᏂᏃᎮᎸᎯ ᎨᏒ ᎤᏙᎯᏳᎯᏯ ᎨᏒᎢ.\nᏐᏉ ᎢᎦ ᎦᏓᏩᏕᎬ ᏚᏏᎳᏛ, ᎤᏍᏗ ᎠᏣᏗ ᎤᏭᏓᎸᏤ ᎠᏓᎾᏫᏗᏍᎬ.\nᎦᏙ ᎰᏩ ᎤᏍᏗ? ᎠᏆᏓᏅᏙ ᎬᏗᏍᎨᏍᏗ ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎠᎴ ᎦᎪᎵᏍᏗ ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ; ᎠᎴ ᎠᏆᏓᏅᏙ ᎬᏗᏍᎨᏍᏗ ᏕᏥᏃᎩᏍᎨᏍᏗ ᎠᎴ ᎦᎪᎵᏍᏗ ᏕᏥᏃᎩᏍᎨᏍᏗ.\n“ᎠᎵᏍᏆᏙᎾ ᏃᎴ ᎠᎵᏛᏓ, ᎠᎵᏍᏆᏙᎾ ᏃᎴ ᎠᎵᏛᏓ.\nᏦᏩᏃ ᎤᏰᏨ ᎤᎸᏅᎢ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᏅᏓᏳᏅᏏᏛ ᏄᏪᏎᎸ ᏄᏛᏁᎴᎢ, ᎤᏯᏅᎨᏉ ᎤᏓᏴᏍᏗ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᎾᏍᎩ ᎤᏘᏰᏗ ᎨᏒᎢ, ᎠᏲᎵ ᎨᏒ ᎢᎪᎯᏛ, ᎥᏝ ᏱᏚᎾᏓᎴᎿᎣ ᎠᏥᎾᏝᎢ, ᏄᎬᏫᏳᏌᏕᎩ ᎡᎦᏃ ᏄᏓᎴᏒ ᎪᎱᏍᏗ.\n“ᎦᏙᏃ ᏍᎩᎪᏩᏘᏍᎬᎾ? ᎤᏛᏛᏁ ᏏᏆ.\nᏫᎵᎻ-ᎢᎵᎻ-ᎢᎵᎻ ᎤᏩᏌ ᏓᏰᏏ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ.”\nᎦᏓᏁ ᏂᏚᎵᏍᏔᏁ ᏗᎦᏙᎵ ᏚᏌᏬᎴ.\nᎢᏳ ᎠᎴ ᎩᎶ ᎤᏓᏎᎪᎩᏍᏗᏱ ᏣᏟᏂᎬᏁᎰᎢ, ᎥᏝ ᏯᏘᏍᏚᎸᏍᎪᎢ ᎬᏂ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᎢᏳᏛᏁᎸᎯ ᏥᎨᏐᎢ.\nᎤᏛᏅᎢᏍᏕ ᏧᎴᏗ ᏲᎾ ᎤᏤᏍᏙ ᎩᎶ ᎦᏬᏂᏍᎬ ᎤᏛᎦᏁ.\nᏰᎵ ᎢᏯᏂ ᏙᎦᏦᏒ ᏗᏂᎳᏫᎩ, ᏃᎴ ᏔᎵᎭ ᎤᎾᏛᏐᏅ ᏗᏂᎳᏫᎩ, ᏐᏉ ᏂᎦᏓ ᎠᏃᎵᎩ ᎠᏘᏲᎯ ᏣᏂ ᎦᎳᎱᏂ.\n“Ꭾ, ᏍᏆᎦᏎᏍᏕᏍᏗ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ, ᎠᏓᎾᏏᏂᏙᎮ ᏏᏆ ᎤᏴᏍᏗ ᎧᏁᏌᎢ.\n“ᎠᏇᏍᏔᏁᎯ! ᎠᏇᏍᏔᏁᎯ!”\nᎢᏴᏛᏃ ᏭᏂᎶᏒ, ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏃᎮᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎠᏍᎦᏯ ᎥᏝ ᎪᎱᏍᏗ ᏱᏚᎸᏫᏍᏓᏁᎭ ᎬᏩᏲᎱᏍᏗ ᎠᎴ ᎦᏰᎦᎸᏍᏗ ᎨᏒᎢ.\nᏚᎨᏩᏗᏍᏗᏍᎬ.\nᎤᏪᏅᏎᏃ ᏐᎣᏁᎵᏁ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒᎢ, ᎠᎴ ᏚᎦᎮ ᏅᏩᎾᏓᎴ ᎦᏃᏙᏗᏱ ᎠᏂᏙᎾᎡ ᎪᎱᏍᏗ ᎾᎾᏛᎲᎾ,\nᎠᏂᏐᎢᏍᎩᏂ ᎬᎩᎨᏳᎯᏳ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᏂᎦᏔᎭᏰᏃ ᎥᎩᏁᏤᎸᎯ ᎨᏒ ᎠᎩᏍᏕᎸᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ.\nᏥᏙᎬ ᏥᎦᏘᏴ, ᎩᎳᏈᏴ ᎤᏩᎩᏰᏫᏒ ᎠᏓᏅᏖᏍᎬ, ᎡᏝᏪᎯ ᏄᎵᏍᏔᏅ.\nᎠᎴ ᎠᎩᎪᎲᎩ ᎡᏆ ᎤᏁᎬ ᎦᏍᎩᎶ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎤᏪᎵ, ᎾᏍᎩ ᎤᎧᏛᎢ ᎡᎶᎯ ᎠᎴ ᎦᎸᎶᎢ ᎬᏩᎵᎡᎸᎩ, ᎥᏝ ᎠᎴ ᎢᎸᎯᏢ ᎬᏩᎵᎡᎸᎩ, ᎥᏝ ᎠᎴ ᎢᎸᎯᏢ ᎬᏩᏛᏗ ᏱᎨᏎ ᏭᏂᎶᎯᏍᏗᏱ.\n“ᎤᏨᏉᏗ ᏱᎨᏒᎾ ᏔᎵ ᏂᏚᏓᎴ ᏗᎪᏏᏐᏗ.\nᎤᎩᏨᏓ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᎦᎹ, ᏧᎾᎳᏏᏕᏅ, ᏗᎧᏴᏤ ᏃᎴ ᏧᏳᏘ ᏗᏑᏱ.\nᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎠᏥᎸᎠᏁᎶᎯ, ᎾᏍᎩ ᎤᏩᏙᏗ ᏂᎦᎵᏍᏗᏍᎨ ᎠᏜ ᎦᏩᏒᎩ ᎾᎯᏳ ᏩᏴᎭ ᏱᎰᏩ ᎤᏤᎵ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᏂᎦᏛ ᎾᏆᏛᎿᏕᎬ ᏗᎩᎦ ᎬᏂᎨᏒ ᏅᏓᏨᏁᎵ, ᎾᏍᎩ ᎣᏥᎨᏳᎢ ᎣᏣᎵᏅᏟ, ᎠᎴ ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎤᏠᏱ ᎠᏥᏅᏏᏓᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ;\nᎯᎠ ᏧᏕᏘᏴᏌᏓ ᏐᏉ ᏃᎴ ᏔᎵᏉ ᎠᏂᎶᏍᎨ. ᎣᎭᏁ ᏂᎦᏓ ᎤᎾᎵᏛᏔᏃᏅ.\nᏓᏟᎶᏍᏛᏃ ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ; ᎤᎦᏔ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏛᎦ.\nᎩᎶᏍᎩᏂ ᎣᏍᏛ ᎠᎪᎵᏰᏍᎨᏍᏗ ᎠᎧᎵᎸᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎬᎧᎲᏍᎩ ᏥᎩ, ᎠᎴ ᎦᏯᎢᏎᏍᏗ, ᎾᏍᎩ ᎠᏍᎦᏯ ᎣᏍᏛ ᎤᏓᏅᏓᏗᏍᏗ ᎨᏎᏍᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩᏰᏃ ᎤᏩᎨᏫᏌᏘ ᏂᎨᏒᎾ ᎠᏛᎩᏍᎩ, ᏧᎸᏫᏍᏓᏁᎯᏍᎩᏂ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᏕᎳ ᎤᏁᎦ ᏗᎪᏒᏍᏔᏅ ᏃᎴ ᎠᏂᏃᎮᏍᎬ ᎡᏆ ᎤᏁᎦ ᎡᏙᏓ ᎨᏍᏗ ᎯᎸ ᏱᏭᏂᎷᎨᎢ.\nᏦᎢᏁ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏌᏩᏂ, ᏦᎾ ᎤᏪᏥ, ᏍᎩᎨᏳᎭᏧ? ᏈᏓ ᎤᏲᎢᏳ ᎤᏓᏅᏓᏛᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏦᎢᏁ ᏍᎩᎨᏳᎭᏧ ᎤᏬᏎᎸᎢ. ᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ ᏂᎦᎥ ᎪᎱᏍᏗ ᎯᎦᏔᎭ, ᎯᎦᏔᎭ ᎬᎨᏳᎢᏳ ᎨᏒᎢ. ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏕᎮᎶᎮᏍᏗ ᏗᏆᏤᎵᎦ ᎤᏂᏃᏕᎾ.\nᎥᏝ ᎢᎸᎯᏳ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᎪᎲᎯ ᏱᎩ. ᎢᏳᏃ ᏗᎦᏓᎨᏳᎯᏳ ᏱᎩ, ᎤᏁᎳᏅᎯ ᎢᎩᏯᎠ, ᎠᎴ ᎠᏴ ᎡᏗᎨᏳᏒ ᎤᎧᎵᏨᎯ ᎨᏐᎢ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎩᎶ ᎠᏆᏒᏂᎦ; ᎦᏙᎴᎰᏍᎦᏰᏃ ᎠᏆᏓᏅᏬᏗ ᎨᏒ ᎠᎩᏄᎪᏤᎸᎢ.\nᎤᏂᏩᏒᎨ ᎦᏓ ᎤᎧᎭᏲᏓ ᏐᏈᎵ ᎤᎾᎵᏙᎩᏯᏍᏗ ᏓᏳᏓᎴᏅ ᎦᏓᏁ ᏄᏩᏁᎸ ᎠᎹᏗᏍᏚᏥᏍᎩ ᏃᎴ ᏚᏂᏩᏒᎨᎢ ᏩᎦ ᎭᏫᏯ ᎠᏍᏙᏓ ᏚᏅᏣᏢ ᏃᎴ ᏓᏂᎪᏩᏗᏍᎨ ᎤᏃᎴ ᏗᏲᏙᏗ ᏚᎧᏌᏛᎢ.\nᏓᏍᏆᎶᎨ ᎢᎦ ᎤᎵᎪᎲᏍᏗ, ᏣᏄᏏ ᏓᏲᎯᎮ ᏩᎩᎦ ᏃᎴ ᎢᏯ ᎠᏫᏌᏅ ᏫᏚᎩᏓ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏓᎲᏍᎨᎢ, ᎤᏂᏯᏛᏗ ᏱᎨᏒᎾ ᎤᏒᎯ.\n“ᎠᏆᏟᏂᎩᏓ ᏨᏆᎧᏃᏗ ᎢᎪᎯᏓ\nᏔᎵᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᏗᎨᏫ; ᎦᏙ ᏂᎯ ᏎᏗᎭ ᎾᏍᎩ ᎯᏃᎮᏍᎬᎢ ᏥᏕᏣᏍᏚᎢᎡᎸ ᏘᎦᏙᎵ? ᎠᏙᎴᎰᏍᎩ, ᎤᏅᏛᏅᎩ.\nᏏ ᏛᎬᏔᏲᏎᎵ ᏫᏤᏓᏍᏗ.”\nᎪᎱᏍᏗᏃ ᏧᏩᏅ ᎤᎾᏛᎦᏅ, ᎤᏁᏅᏎ ᎬᏩᏂᏴᎲᏎᎢ; ᎯᎠᏰᏃ ᎾᏂᏪᏍᎨᎢ, ᎤᎸᏃᏘᎭ.\nᎠᎴ ᏦᎢ ᎢᎨᏥᏛᎯ ᎨᏒ ᎾᏍᎩ ᎨᏒᏁᎳᏅᎯ ᎨᏒ ᎠᎺᏉᎯ ᎠᏁᎲᎢ ᎠᎴ ᏗᏅᏃᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏂᏨᎯ ᏚᏂᎵᏬᏨᎩ; ᎠᎴ ᏥᏳ ᏧᏛᎾ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᏲᏨᎩ.\nᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ, ᎠᎴ ᏩᏍᏛ ᏧᏓᏂᎸᎢᏍᏗᏳ;\nᏥᏌᏃ ᏄᎬᏫᏳᏌᏕᎩ ᎦᏁᎸ ᎤᎷᏨ, ᎠᎴ ᏚᎪᎲ ᏗᏂᏤᎷᎯᏍᎩ, ᎠᎴ ᏴᏫ ᏓᏂᏴᎬᎢ,\nᏂᎦᏓ ᎤᎾᎵᎮᎵᏤ ᎤᏂᏩᏛ ᏔᎵᏁ ᎤᏍᏆᏂᎩᏗ ᏄᎵᏍᏔᏅ ᏓᏏᎳᏛᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎨᎶ ᏣᎦᏔᎰᎢ ᎣᏍᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎾᏍᎩᏃ ᎾᏛᏁᎲᎾ ᏥᎨᏐᎢ, ᎾᏍᎩ ᎾᎿ ᎠᏍᎦᏅᎪᎢ.\n”ᎤᏬᏚᏨ ᏣᏓᏃᏴᎵᏍᏗ,” ᎬᏣᏓᏗ ᏄᏪᏎ ᎠᎦᏴᎵ ᎤᏃᏕᎾ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᏳᎯ ᎠᎦᏘᏏᏗᏢ ᎢᏥᎦᏯᎷᎥᎦ, ᏙᏓᏥᏩᏛᎯᏃ. ᎰᏩᏃ ᎤᏂᎦᏯᎷᏅᎩ, ᎿᏉᏃ ᎥᏝ ᏰᎵ ᎬᏩᎾᏎᎯᏍᏗ ᏱᎨᏎᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᏣᏛ ᎠᏣᏗ.\nᎤᏛᏅ ᏲᎾ.\n“ᏙᎢᏳᏍᏗ ᎦᎵᏍᏗᎭ ᎠᎪᏕᏍᎩ? \nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏎᏓᏂ ᏥᎪᎥᎩ ᎠᎾᎦᎵᏍᎩ ᎦᎸᎳᏗ ᏨᏗᎦᏙᎠᏍᎪ ᎾᏍᎩᏯ ᏓᏳᏙᎠᏒᎩ.\nᎾᎯᏳᏃ ᎤᏃᏢᏁ ᏩᎦ ᎠᎩᎾ, ᎾᏍᎩᏃ ᏗᏟᎶᏍᏔᏅᎯ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎤᏂᏲᎮᎴᎢ, ᎠᎴ ᎤᎾᎵᎮᎵᏤᎴ ᎤᏅᏒ ᏧᏃᏰᏂ ᏧᏅᏔᏅᎯ ᎤᏃᏢᏅᎯ.\nᎤᎾᏁᎳᎩ, ᏗᏂᎨᏫᏉ ᏗᏂᎨᏫ ᏗᎾᏘᏂᏙᎯ; ᎢᏳᏃ ᏗᎨᏫ ᏯᏘᏂ ᏗᎨᏫ ᎢᏧᎳ ᎠᏔᎴᏒ ᏧᏂᎸᎢᏍᏗ.\nᎠᏂᏲᏍᎩ ᎣᎦᎵᎪᏅ, ᎤᏂᏂᏴᏗ ᏣᎵ, ᏚᎾᏓᎸ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᎯ ᏥᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᏂᎦᏛᏉ ᏂᎦᏥᏪᏎᎭ-ᎢᏥᏯᏫᏍᎨᏍᏗ.\nᏗᏣᎧᏅᎦ ᏗᏉᏰᏂ ᎠᎴ ᏗᏆᎳᏏᏕᏂ, ᎠᏋᏒᏉ ᎯᎠ ᏥᎾᏆᏛᏅ; ᏍᎩᏯᏒᏂᎦ ᎠᎴ ᎢᏣᏙᎴᎰᎯ; ᎠᏓᏅᏙᏰᏃ ᎥᏝ ᏳᏇᏓᎳ, ᎠᎴ ᎥᏝ ᏧᎪᎳ ᏱᏚᎸ ᎾᏍᎩᏯ ᏥᏥᎪᏩᏘᎭ ᎠᏴ ᏂᏓᏋᏅᎢ.\nᎨᏍᏗ ᎠᏓᏅᏖᏗ ᏱᎨᏎ ᎾᏍᎩᏴ.\nᏂᏑᎩᏨᏂᏒ ᎢᏨᏰᎳᏗᏙᎲ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎥᏝ ᏱᏣᏁᎶᏔᏁ ᏍᎩᏂᏴᏗᏱ; ᎠᏎᏃ ᎢᏣᏤᎵᎦ ᎪᎯ ᏥᎩ, ᎠᎴ ᎤᎵᏏᎩ ᎤᎵᏂᎬᎬᎢ.\nᏥᏌᏃ ᎤᏓᏥᏃᎯᏍᏔᏅ, ᎠᎴ ᎠᎨᏴᏉ ᎤᏩᏒ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ, ᎭᏢ Ꮎ ᎨᏧᎯᏍᏗᏍᎩ? ᏝᏍᎪ ᎩᎶ ᏣᏍᏕᏅᏨᎢ ᏱᏕᎫᎪᏓ?\nᏎᎦᏨ ᎤᎪᎮ ᎩᎶ ᎤᏟᏃᎮᏔᏅ ᎤᏓᏅᏘ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏨᏁᎮᏍᏗ ᏂᎦᎥ ᎦᏓᎭ ᎨᏒᎢ ᎠᎴ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏲ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎢᏨᏔᏅᎭ ᏕᏣᏓᏂᎸᏨᎭ ᎧᏃᎮᏛ ᎬᏱᏝᏅᎯ, ᎾᏍᎩ ᏰᎵᏉ ᏗᎬᏩᏍᏕᎸᏗ ᏥᎩ ᏗᏣᏓᏅᏙᎩ.\nᎾᏗᏍ, ᎦᎢᏒ ᎪᎱᏍᏗ ᎠᏰᏟ ᏅᏃ ᎦᏙᎬ ᎩᎳᏊᏯ ᎪᎯᏓ.\nᏥᎪ ᎦᏚ-ᎢᏗᏢ ᏄᏍᏛ ᏗᎧᏃᏗᏱ ᎪᎱᏍᏗ ᏕᏣᎧᏂᏍᎪᎢ? ᎢᏳᏃ ᎩᎶ ᎤᏩᏒᏉ ᎠᏓᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ ᎦᎶᏁᏛ ᏥᏯᏤᎵ ᎠᏴ ᎢᎡᎵᏍᎨᏍᏗ, ᎤᏩᏒ ᎨᏒ ᏔᎵᏁ ᎯᎠ ᎾᏍᎩ ᏥᎠᏓᏅᏛᎵ, ᎾᏍᎩ ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎤᏤᎵ ᎨᏒ ᎾᏍᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎦᎶᏁᏛ ᎣᏣᏤᎵᎦ.\nᏍᎩᎾᎾ ᎢᏴ ᏓᏳᏓᎴᏅᏓ ᎨᏍᏗ ᏯᏆᎵᏍᏇᏚᏁ ᏓᏆᎭᏄᏮ ᏗᎵᎪᎲᏍᎩ ᏱᎨᏒᎾ.\nᎾᏍᎩᏃ ᏥᏣᎦᎾᏩᏉ, ᏂᏣᏴᏢᎾ ᎠᎴ ᏂᏣᏗᎴᎬᎾ ᏥᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᎬᏯᎵᎦᏍᏔᏂ ᏥᎣᎵ ᏓᎬᏄᎪᏫᏏ.\nᏚᏜᏅᏛᏰᏃ ᏓᏂᏃᎯᎮ ᏧᏂᏢᎩ, ᏗᏤᏍᏙ ᎠᎴ ᏗᎦᏂᏟ ᏓᏂᏢᏗᏍᎨᎢ ᎾᏍᎩ ᎤᏓᏩᏗᏍᏛᏉ ᎾᏍᏉ ᏈᏓ ᎠᎢᏒᎢ ᎢᎦᏛ ᎤᏄᏢᏙᏗᏱ.\nᏐᎳᏃ ᎠᏏᏉ ᎬᏬᎳᏕᏍᎨ ᏕᎦᎾᏰᏓᏁᎮ ᎠᎡ ᏧᎯᏍᏗᏱ ᎧᏁᎨ ᎤᎬᏫᏳᎯ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏬᎸ ᏭᎶᏎᎢ,\nᎤᏓᏅᏖᎴ ᎤᏍᏕᏓᎵᏴᏍᏗ ᎢᏳᏍᏗ ᎭᏂᏃᎮᏍᎬᎢ.\nᎢᏳ ᎠᎴ ᎢᏣᏓᏅᏟᏉ ᎤᏅᏒ ᏱᏗᏥᏲᎵᎭ, ᎦᏙ ᎢᏣᏛᏁᎲ ᏕᏥᎪᎾᏛᏗ ᎠᏂᏐᎢ? ᏝᏍᎪ ᎾᏍᎩ ᏱᎾᎾᏛᏁᎰ ᎠᏰᎵ-ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ?\nᎨᏍᏗᏗ ᏱᏓᏲᎩᏍᏆᏂᎪᏔᏂ ᎠᏤ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎠᏍᎦᏯ ᏃᎴ ᎤᏁᏝᏅᎯ ᎤᏪᎵᏎ ᏍᎩᏴ.\nᎩᎶ ᎤᏐᏅ ᎤᏂᏃᎮᏗᏱ ᏂᎨᏒᎾ, ᏧᎾᏘᏲᏌᏘ ᏂᎨᏒᎾ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎤᎾᏓᏅᏘᏍᎩᏂ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗᏱ ᎾᏂᎥᏉ ᎠᏂᎦᏔᎲ ᎤᏣᏘ ᎤᎾᏓᏅᏘᏳ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎦᏙ ᏓᏓᏛᏂ ᎡᏆᎭᎻ ᎢᎩᏙᏓ ᎤᏩᏛᎲ ᎤᏇᏓᎵ ᎨᏒ ᏅᏓᏳᏓᎴᏅᏛ?\n“ᎡᏝᏪᎯ,” ᏧᏬᏎᎴ ᏲᎾ ᎤᏤᏍᏙ.\nᎵᏓᏃ ᎠᎴ ᏦᏈ ᎾᎥ ᏂᏚᏓᎴᎢ, ᎠᏃᎯᏳᎲᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏈᏓ ᎡᏙᎲ ᎵᏓ, ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏚᏂᏅᏎ ᏭᏂᏔᏲᏎᏗᏱ ᎤᏙᎯᏗᏍᏗᏱ ᏂᎨᏒᎾ ᏂᏙᏓᏳᏩᏛᎲᏍᏗᏱ.\nᎥᏝ ᏳᏜᏏᏛᎡᎮ ᎤᏁᎳᏅᎯ ᎤᏚᎢᏍᏔᏅᎢ ᏄᏬᎯᏳᏒᎾ ᎨᏒ ᎢᏳᏍᏗ; ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎨᏎ ᎤᏬᎯᏳᏒᎢ, ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ,\n“ᎨᏍᏗ ᎯᎸᎯᏳ ᏍᎩᎾᎾ ᎢᏳᎵᏍᏔᏅ ᏱᎩ.”\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᏂᎯ ᏂᏣᏛᏁᎭ ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ.\nᏥᏌᏃ ᎤᏛᎦᏅ, ᏥᏳ ᎤᏦᏔᏅᎩ ᎾᎿ ᎤᏂᎩᏒᎩ ᎤᏓᏰᎵᎸ ᎢᎾᎨ ᏭᎶᏒᎩ ᎿᏉᏃ ᏴᏫ ᎤᎾᏛᎦᏅ, ᎡᎳᏗ ᎨᏩᏍᏓᏩᏛᎡᎩ ᏕᎦᏚᎲ ᏙᏓᏳᏁᏅᏒᎩ.\nᏥᎷᏏᎵᎻᏃ ᏔᎵᏁ ᎤᏂᎷᏤᎢ; ᎤᏛᏅᏃ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎡᏙᎮᎢ, ᎬᏩᎷᏤᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᏗᏂᎳᏫᎩ,\nᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᏗᎧᎿᏩᏗᏍᏗ ᏄᏂᎲᎾ ᏥᎩ, ᎤᏅᏒ ᎤᎾᏓᏅᏖᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏱᎾᎾᏛᏁᎭ, ᎾᏍᎩ ᎯᎠ, ᏗᎧᎿᏩᏛᏍᏗ ᏄᏂᎲᎾ ᏥᎩ, ᎤᏅᏒᏉ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎾᎾᎵᏍᏗᎭ;\nᎤᏁᎵᏒᏃ ᎤᎩᎸᏉᏔᏅ ᏩᎩᎷᎯᏍᏗ ᏗᏇᏅᏒ.\nᏚᎧᎾᏁ ᏏᏆ.\nᏑᎾᎴ ᏱᏄᎵᏍᏔᎾ, ᏫᏕᎦᎾᏬᏍᎬ ᎣᏣᏂᎩᏍᎬ ᏗᏆᎭᎾᏬ, ᏗᎦᏓᏁ ᏃᎴ ᏧᏴᏣ, ᏥᏰᎸ ᏓᎦᎾᏬᏗᏍᎬ, ᎨᏍᏗ ᎢᎪᎯᏛ ᎤᏲ ᏯᏆᏓᏅᏖᎢ.\n”ᏂᎦᏓ ᎢᏣᎦᏎᏍᏓ!” ᎤᏪᎷᏁ.\n“ᏥᎪᏩᏔ! ᎤᏛᏁ ᎡᎳᏆᏗ, ᎡᎳᏗ ᏭᏕ ᎦᎶᏇ.\nᎡᏂᎾᏯᏃ ᎤᏪᏅᏎᎢ, ᎠᎴ ᎠᏓᏁᎸ ᎤᏴᎴᎢ, ᏚᏏᏔᏛᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏐᎳ ᎥᎩᏅᏟ, ᎤᎬᏫᏳᎯ ᏥᏌ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏂᏣᏛᏁᎴ ᏔᎢᏒᎢ ᏗᎩᏅᏒ ᎥᏣᎪᏩᏛᏗᏱ ᎠᎴ ᏣᎧᎵᎢᏍᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\nᎾᏍᎩᏰᏃ ᎢᏣᎵᏍᏓᏁᏗᏱ ᎡᏥᏯᏅᏛ; ᎦᎶᏁᏛᏰᏃ ᎾᏍᏉ ᎢᎩᎩᎵᏲᏤᎴᎢ, ᎠᎴ ᎢᎩᎯᏰᎴ ᏗᎩᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎤᏪᏙᎸ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ.\nᎱᏙᎯᏳᎭᏰᏃ, ᎢᏳᏍᏗᏉ ᏂᏥᏪᏍᎬ ᏧᏳᎪᏗ ᎢᏯᎩᏪᏍᏗ.\nᏫᏚᏓᏴᎳᏛᎢ ᏭᎵᏛᏓᏁᎢ.\nᎥᏝᏍᎩᏂᏃᏅ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᏱᎦᏁᎸ ᏓᏓᏁᎸ ᎩᎶ ᏧᏃᏰᏂ ᏧᏅᏔᏅᎯ ᏧᎾᏁᏍᎨᎲᎩ, ᎾᏍᎩᏯ ᎠᏙᎴᎰᏍᎩ ᎯᎠ ᏥᏂᎦᏪᎠ;\nᎬᏩᎷᏤᎴᏃ ᎩᎶ ᎢᏳᏍᏗ ᎤᎸᏓᎸᎥᏍᎩ ᎠᏂᏁᎮᎢ, ᎾᏍᎩ ᏅᎩ ᎢᏯᏂᏛ ᎬᏩᏃᎴᎢ.\nᎠᎴ ᎢᏨᏍᏗᏰᏗᎭ ᎢᏓᎵᏅᏟ, ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎨᏒᎢ, Ꮎ-ᏍᎩ ᏍᎩᏯᎵᎪᏁᏗᏱ ᎤᏁᎳᏅᎯ ᎡᏓᏓᏙᎵᏍᏓᏁᎲ ᎠᏴ ᎨᏒ ᎤᎬᏩᎵ,\n“ᎤᏰᎸᏗᏍᎪ,” ᎤᏛᏛᏁ ᏫᎵᎻ, ᎭᏂᏉ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏗᏍᏆᏂᎪᏙᏗ ᎯᏤᎮᏍᏗ, ᏃᎴ ᏦᎢ ᎢᏯᏂ ᏗᏆᎵ ᎨᏎᏍᏗ?”\nᎦᏚᏏ ᏭᎾᎵᏒᏍᏔᏁ.\n“ᏓᏣᏓᏅᏖᏔᏂᏗ ᎤᏴᏥ ᏑᎾᎴ ᎤᏃᎸᏔᏂ ᎦᎸ ᎤᎵᏬᏨ ᎯᎨᏎᏍᏗ ᏫᎵᎻ, ᎩᎶ ᏳᏲᎸᎾ ᎨᏎᏍᏗ ᎤᎦᏃᏩ ᎤᏂᏑᎸᏓ ᎤᏂᏥᏍᏗ ᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ.\nᎯᎠᏍᎩᏂ ᎤᏐᏅ ᎠᏂᏃᎮᎭ ᎾᏍᎩ ᎾᏂᎦᏔᎲᎾ; ᎾᏍᎩᏍᎩᏂ ᎤᏅᏒ ᎨᏒ ᏥᎾᎦᏔᎭ, ᎾᏍᎩᏯ ᎦᎪᎵᏍᏗᏉ ᏣᏁᎿᎠ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᎾᎿ ᎤᏲ ᎾᎾᏓᏛᏁᎭ.\nᎤᏂᏲᎯᏍᏔᏅ ᏓᎾᏦᎭᏱᎲ ᏗᏂᏲᏟ, ᏍᏔᏯ ᎠᎾᏛᎵᏍᎬ ᎤᏩᏌ ᎠᏛᎪᏗ ᎨᏒ.\nᏧᏁᎦ ᏧᎪᎳ ᎣᎦᎾ ᏧᏣᏲᏍᏘ ᏧᏂᎪᏍᏙᏓ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᎹᏓᎩᏏᏕᎩ, ᎤᎬᏫᏳᎯ ᏎᏓᎽ, ᎠᏥᎸ-ᎨᎶᎯ ᎨᏎᎢ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏥᏚᏠᏎ ᏧᏨᏏᏗᏒ ᏫᏚᎰᏅᎯ ᎤᏂᎬᏫᏳᎯ, ᎠᎴ ᎣᏍᏛ ᏧᏁᏤᎴᎢ;\nᏍᎩᏃ ᏄᏍᏗᏓᏅ ᎤᏩᎦᏗᏗᏒᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏍᎩᏂᏍᏓᏩᏚᎦ, ᏴᏫᏃ ᎢᏍᏗᎦᏯᎷᎥᏍᎩ ᏅᏓᏍᏛᏴᏁᎵ.\nᎾᏍᎩ ᏥᏏ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎣᏆᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏌᎵᎹ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎾᏐᏂ ᎤᏪᏥ ᎨᏎᎢ,\nᎾᏂᎥᏉ ᏤᎩᎤᎦᏎᏅ ᏗᎪᏪᎶᏗ ᎦᏁ ᏃᎴ ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᎪᎰᏍᏗ ᏱᎾᏛᏁᎲᎾ ᎤᏁᎸᏙᏗ ᎠᏋᏂᏍᏗ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎥᏝ ᎩᎶ ᎤᏚᎸᎲ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎥᏝ ᎠᎴ ᏚᏍᏆᎸᏔᏅ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎤᎾᎳᏅᎯᏍᎩᏂ ᎤᏓᏅᏖᎸᎢ ᎾᏍᎩ ᏗᎦᏙᎵᎩ ᏥᎩ.\nᏥᏌ ᎤᏁᏨᎩ; ᏝᏍᎪ ᏔᎳᏚ ᎢᏳ-ᏟᎶᏛ ᏱᎩ? ᎢᏳᏃ ᎩᎶ ᎢᎦ ᏤᏙᎰᎢ, ᎥᏝ ᏱᏚᏬᏕᎯᎰᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᎪᏩᏘᏍᎬ ᎢᎦ ᎠᏂ ᎡᎶᎯ ᏚᎸᏌᏛᎢ.\nᏔᎵᏁᏃ ᎢᎤᎩᎳᏫᏒ, ᎠᎴ ᎤᎬᎭᎷᏴ ᎦᏚ, ᎠᎴ ᎤᎬ, ᎠᎴ ᎪᎯᏛ ᎤᏬᏂᏒ, ᎤᎩᏨᏕᏱ ᎬᏗᏍᎩ, ᎿᏉ ᎤᏂᎩᏒᎩ.\nᎾᏍᎩ ᎾᎿ ᎠᏰᎸ ᎢᎸᎯᏢ ᏧᎦᎴᏅᏛ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᏚᏫᏞᏫᏒ ᏧᎾᏓᏍᏆᏂᎪᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ.\nᏝᏍᎪ ᎪᏪᎵ ᎯᎠ ᏱᏂᎦᏪᎭ? ᎦᎶᏁᏛ ᏕᏫ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗ, ᎠᎴ ᎦᏚᏱ ᎦᏚᎲᎢ ᏕᏫ ᎤᏕᏅᎢ?\nᏥᏌᏃ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏦᏓᏂ ᏗᎤᏨᏎᎢ, ᎠᎴ ᎠᏓᏅᏙ ᎢᎾᎨ ᏭᏘᏅᏍᏔᏁᎢ,\nᏓᎾᏓᎵᏢᏍᎪᏰᏃ ᏗᎦᎨᏛ ᏗᎵᏒᏍᏗ ᎠᎴ ᎤᏕᏯᏙᏗ ᏗᎵᏒᏍᏗᏱ, ᎾᏍᎩᏃ ᏴᏫ ᏓᏂᏃᎭᏝᎲᏍᎪᎢ; ᎠᏎᏃ ᎤᏅᏒ ᎥᏝ ᏌᏉ ᎠᏂᏰᏌᏛ ᏴᎬᏅᏓ ᏱᏙᎬᏂᏖᎸᎲᎦ.\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎤᏂᏔᎳᏬᏍᎬᎢ ᎤᏂᎧᎵᏨᎩ, ᎠᎴ ᎤᏁᎳᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᎸᏉᏗᏳ ᏓᏰᏂ ᎡᏈᏌ ᎠᏁᎯ ᎤᎾᏤᎵᎦ.\nᎠᎴ ᏌᏊ ᏯᎦᏴᎵ ᎾᏕᏘᏯ ᏂᏗᏈᎪᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏕᎾ ᏪᏗᎷᏥ ᎦᎵᏦᏛ ᏙᏱᏗᏢ, ᎢᎦᏠᏯᏍᏗᏍᎨᏍᏗ ᎦᏰᏥᏐᏢᏗᏍᎬᎢ;\nᎤᏒᎢᏴ ᎦᏬᏂᏍᎬ, ᎠᏆᏛᎦᏍᏙ, ᎠᎩᏃᎯᏎᎲ ᏄᏛᏁᎸ ᏍᎩᏴ ᎢᎦ ᏃᎴ ᎢᏳᏍᏗᏉ ᎠᏓᏅᏖᏍᎬ.\nᏃᏉ ᏨᏌ ᏔᏕᎶᎰᏏ ᏄᏳᏛ ᏏᏆ.” \nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎩᎶ ᎠᏂ ᏓᏂᏙᎦ ᎥᏝ ᏴᏛᎾᏙᎴᎰᏏ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎬᏂ ᎠᏂᎪᎲᎭ ᏴᏫ ᎤᏪᏥ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒ ᎦᎾᏄᎪᏥᎸᎭ.\nᎾᏍᎩ ᎥᏝ ᏑᏟᎶᏛ ᎤᏅ ᎢᎪᎯᏛ ᎤᎾᏁᎳᎩ ᏱᏙᏤᎵᏎᎴᎢ ᎡᎳᏗ ᏂᏙᏣᏛᏁᎲᎢ; ᎾᏍᎩ ᎣᏍᏛ ᎧᏁᎮᏛ ᎤᏙᎯᏳᎯ ᎨᏒ ᎢᎬᏩᏍᏗᎭ ᎢᏤᏩᏍᏗᎭ ᎢᏤᎳᏗᏓᏍᏗᏱ.\nᎬᏂᏳᏉ ᎢᏨᏅᎵ ᎠᏫ ᎤᏂᏃᏕᎾ ᏣᏁᎳᏗᏙᎰ ᏩᏲᎯ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎾᏛ ᎢᎨᏥᏏᎾᏌᏂ ᎨᏌᏍᏗ, ᎠᎴ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ ᎢᎨᏣᏓᏅᏘ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᏗᏅᏃᏛ ᎠᏂᎸᏉᏓ ᎠᎴ ᎠᎾᎵᎮᎵᏥ ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎾᏍᎩ ᏂᎪᎯᎸ ᎾᎵᏍᏆᏗᏍᎬᎾ ᏤᎭ,\nᏥᏌᏃ ᎠᏓᏅᏙ ᎤᏘᏂᏙᎲ ᎨᎵᎵ ᎢᎤᎷᏤᎢ; ᏕᎦᏃᏣᎸᏃ ᎾᎿ ᎬᏩᏚᏫᏛ ᏚᏰᎵᏏᏙᎴᎢ.\n“ᏃᏉ---ᎢᎫᏩᏟᏍᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏯᏕᎰᏍᎨᏍᏗ ᎯᏃᎮᏍᎬ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ, ᎠᎴ ᏞᏍᏗ ᏱᏍᏆᏕᎰᏍᎨᏍᏗ ᎠᏴ ᏥᏴᎩ ᎾᏍᎩ ᎤᏤᎵᎦ, ᏤᎳᏗᏍᏗᏍᎨᏍᏗᏍᎩᏂ ᎠᎩᎵᏲᎬ ᎣᏍᏛ ᎧᏃᎮᏛ, ᏣᏍᏕᎵᏍᎨᏍᏗ ᎤᎵᏂᎩᏗ ᎨᏒ ᎤᏁᎳᏅᎯ,\nᎤᎾᏓᏓᏍᎬ ᎤᏂᏍᏓᏱᏙᎾ ᎪᏪᎵ, ᏐᏉ ᏄᏪᏎ, ᎨᎵᏍᎬᏃ ᎢᎬᏌ ᎢᎦᏓᎯᏍᏙᏗ ᎢᏗᏍᏓᏱᏛ.\nᎯᏣᎵᏍᎪᎸᏓᏏ ᎤᎶᎯᏍᏗ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ.\nᎣᎦᏕᎶᎰᏒ ᎠᏂᏍᎦᎦ ᎤᎾᏓᏅᏍᏗ ᎠᏂᏴᏫᏯ, ᏃᎴ ᎤᏲ ᎤᎾᏓᏅᏔ, ᎤᏂᏚᎬ ᎬᎭᏃᏓ ᏂᎦᎵ ᏍᏗ ᏱᎨᎦᎵᏍᎪᏁᎸ, ᏰᎵ ᎠᏍᏆᏂᎪᎯᏍᏗ.\nᎯᏗᏍᏓᏩᏚᎦ ᎠᎵᏰᎾ ᎠᏙᎯ ᎡᏙᎲᎢ.\n“ᎠᎾᏓᎪᎾᏗᏍᎬ ᎠᏂᏍᎦᏰᎬᏍᏓ ᎠᎾᎵᎮᎵᎦ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᎰᎻ ᎠᎪᏕᏍᎩ ᏃᎴ ᏂᎦᏗ ᎠᏃᎵᎩ ᏏᏆ.\nᎩᎶ ᏓᎿᏩ ᏤᎪᎢ ᎥᏝ ᎬᏅ ᎤᎵᏍᏕᎸᏙᏗ ᏕᎤᎸᏫᏍᏓᏁᎲ ᏯᏚᏓᎸᏗᏍᎪᎢ, ᎤᏚᎵᏍᎪ ᎠᏍᎦᏰᎬᏍᏓ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ.\nᎿᏉᏃ ᏓᏓᎿᏩᏍᏛ ᎬᏩᏛᏅ ᎤᏂᏯᏙᎴ ᏧᏁᏬᎢ, ᎤᎾᏎᎸᎮ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎾᏍᎩ ᎠᏂᏏᏴᏫᎭ ᏧᏂᏁᏒᏍᏗ ᎨᏒᎢ.\nᏝᏍᎪ ᎤᏟ ᎢᎦᎢ ᏱᏂᏙᎬᏩᏳᎪᏗ ᎠᏥᏍᏛᏗᏍᏙᏗᏱ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᎳᏍᏓᎡᎸᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎩᎬᎧᏃᎮᏛ ᏗᏠᎯᏍᏙᏔᏅᎯ ᎾᏍᎩ ᎤᏓᏅᎦᎶᏔᏅᎯ ᎨᏒ ᎦᏓᎭ ᎤᏰᎸᏅᎯ, ᎠᎴ ᎦᎬᏩᏐᏢᏔᏅᎯ ᎬᏩᎦᏘᏯ ᎠᏓᏙᎵᎩ ᎠᏓᏅᏙ.\nᎢᏣᏠᎾᏍᏗ! ᏰᎵᏉ ᎢᏣᏙᎴᎰᏍᎪ ᏄᏍᏛ ᎦᎸᎳᏗ, ᎠᎴ ᎡᎶᎯ; ᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ ᏂᏣᏙᎴᎰᏍᎬᎾ ᏥᎩ ᎪᎯ ᎨᏒᎢ?\nᎠᏎᏃ ᎥᏝ ᎢᎳᏯ ᏯᏥᏅᏎ ᎩᎶ ᏭᎷᏤᏏᏱ, ᎠᎨᎥ ᎤᏬᏑᎶᏨᎯ ᎤᏩᏒ, ᏌᎴᏓ ᎾᏍᎩ ᏌᏙᏂ ᎦᏚᎲ ᎦᏁᎳ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏓᏅᏒ ᎾᏍᎩ ᎧᏂᎵᏯ ᎤᏬᏁᏔᏅᎯ, ᎠᏂᏔᎵ ᏫᏚᏯᏅᎮ ᎠᏓᏁᎸ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᏌᏉ ᎠᏯᏫᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ ᏂᎪᎯᎸ ᎬᏩᎦᏘᏗᏍᎩ ᎨᏒ ᎨᎳ.\nᎠᏆᏦᎩ ᎠᏆᏣᏪᏐᎸᏍᏗ ᏃᎴ ᎠᎩᎦᏘᏗᏍᏗ, ᎪᎳ ᎠᏂᎩᏍᎬ ᎢᎪᎯᏓ.\nᎢᏳᏍᎩᏂ ᎾᏍᏉ ᎠᏴ, ᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏱᏨᏯᎵᏥᏙᏁᎸ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏨᏯᎵᏥᏙᏁᎸᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎠᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ.\nᎠᏎᏃ ᎥᏝ ᎤᏟ ᎢᏴᏛ ᎬᏩᏁᏅᏍᏗ ᏱᎩ, ᎾᏂᎦᏔᎿᎥᎾᏰᏃ ᎨᏒ ᎬᏂᎨᏒ ᏅᏓᏳᎾᎵᏍᏓᏁᎵ ᎾᏂᎥᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏥᏄᏍᏕ ᎾᏍᎩ.\nᎣᏍᏓ ᎠᎵᏍᏓᏴᏗ! \nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏅᏖᏍᏗ, ᎯᎠ ᎾᏍᎩ ᎠᎵᏍᏕᎸᏙᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎨᏥᏁᎸᎯ, ᎠᎴ ᎾᏍᎩ ᏛᎾᏛᏓᏍᏔᏂ.\nᏱᏥᏃᎦ ᎪᏪᎵ ᎠᎪᎵᏰᏗ ᎠᎦᎸᏓ ᎬᎩᏩᏛᏗ ᎨᏎᏍᏗ”.\nᎤᏅᏒᏃ ᎨᏒ ᎤᎾᎵᏃᎮᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎢᏳᏃ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎦᏛᏅ, ᎯᎠ ᏱᏂᎦᏫ, ᎦᏙᏃ Ꮭ ᏱᎡᏦᎢᏳᏁᎢ?\nᏁᎳᎩᏉ ᎨᏎᏍᏗ ᎠᏟᎸ.\nᎨᏍᏗ ᏱᏓᎬᏯᏧᏔᏅ ᎤᏛᏅ.\nᏂᎦᏛᏃ ᏴᏫ ᎬᏩᎪᎮ ᎡᏙᎲᎢ ᎠᎴ ᎦᎸᏉᏗᏍᎬ ᎤᏁᎳᏅᎯ.\nᎤᏛᎦᏅᏃ ᎤᏂᏣᏘ ᎠᏂᎶᏍᎬ ᎤᏛᏛᏁ ᎾᏍᎩ ᎤᏰᎸᏛᎢ.\nᎠᎴ ᏔᎵᏁ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎠᏍᏛ ᎤᏂᎩᏒ ᎨᎵᎵ ᎥᏓᎸ ᏭᎷᏤᎢ, ᎠᏰᎵ ᎤᎶᏎ ᎠᏍᎪᎯ-ᏗᎦᏚᎩᏱ ᏍᎦᏚᎩ ᎨᏒᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎥᏥᎪᎥᎩ ᏅᏙ ᎢᎦᎡᎯ ᎧᎸ ᎬᏙᎬᎩ; ᎠᎴ ᎤᏪᎷᏅᎩ ᎠᏍᏓᏯ ᎤᏁᏨᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎾᎯᎥ ᏥᏍᏆ ᎦᎸᎶ ᎠᏰᎵ ᎠᏂᏃᎯᎵᏙᎯ, ᎡᏤᎾ ᎢᏣᏓᏟᏌ ᎠᏥᎸᏉᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ;\nᏂᎯᏍᎩᏂ ᎥᏝ ᎤᏇᏓᎵ ᏗᏣᏘᏂᏙᎯ ᏱᎩ, ᎠᏓᏅᏙᏍᎩᏂ ᏗᏣᏘᏂᏙᎯ, ᎢᏳᏃ ᎰᏩ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏱᏥᏯᎠ. ᎠᎴ ᎢᏳ ᎩᎶ ᎦᎶᏁᏛ ᎤᏓᏅᏙ ᏄᏪᎲᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎾᎥᏝ [ᎦᎶᏁᏛ] ᎤᏤᎵ ᏱᎦᎩ.\nᎤᏪᏘ ᏧᎬ ᏃᏥ ᎦᎸᎳᏗᎨᏍᏗ ᎭᎾ ᎦᏙ.\nᎤᏪᎵᎯᏍᏗᏃ ᎡᎶᎯ ᎡᎯ, ᎠᎴ ᎨᏅᎢᏍᏗ ᎨᏒ ᎤᏓᎵᏓᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᎪᎱᏍᏗ ᎠᏚᎸᏗ ᎨᏒ, ᎠᏂᏴᎯᎲ ᎠᏂᏁᏄᎳᏍᏗᏍᎪ ᎧᏃᎮᏛ, ᎠᎴ ᎾᏍᎩ ᎾᎦᏔᏛᏍᎬᎾᏉ ᎨᏐᎢ.\nᎿᏉᏃ ᎡᎶᏛ ᎤᏲᎱᏒ, ᎬᏂᏳᏉ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᏦᏩ ᎠᏍᎩᏓᏍᎬ ᎢᏥᏈᏱ,\nᎬᏂᏳᏉᏃ ᎠᎨᏴ ᎾᎿ ᎦᏚᎲ ᎡᎯ, ᎠᏍᎦᎾᎢ, ᎤᏙᎴᎰᏒ ᏥᏌ ᎠᏆᎵᏏ ᎦᏁᎸ ᎦᏅᎬ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ, ᎤᏲᎴ ᎫᎫ ᏅᏯ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎠᏟᏍᏕ ᎠᏠᏁᏗ,\n”ᎠᏎᏃ ᎨᏍᏗ ᎤᏣᏘ ᎣᏍᏓ ᏱᎩ ᎠᏯ ᏌᎳᏓ.” \nᎠᏐᏩᏘᏍᎪ ᎦᏓ ᏃᎴ ᎤᎪᏏᏓ ᎢᏯᏅᏁ ᏂᎬᎾᏛᎢ.\nᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏥᎦᏔᎲ ᏂᎪᎯᎸᎾᏉ ᎢᏴᏛ ᎠᎩᏗᏱ ᎨᏒ ᎠᏆᏤᎵ ᎦᎵᏦᏛᎢ, ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎾᏋᏁᎸᎢ.\nᎾᏍᎩᏃ ᏧᏓᎴᎿᎢ ᎡᎩᏁᎸᏅᎯ ᏥᎩ ᎾᏍᎩᏯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎩᏁᎸᎢ, ᎢᏳᏃ ᎠᏙᎴᎰᎯᏍᏗ ᏱᎩ, ᎾᏍᎩᏯ ᎪᎯᏳᏗ ᎨᏒ ᎡᎦᏟᎶᎡᎸ ᎢᏛᏗᏍᎨᏍᏗ [ᎢᏓᏙᎴᎰᏍᎨᏍᏗ;]\nᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᎣᏁ ᎱᎷᏣ ᎡᎶᏗ, ᎧᏁᏌ ᎦᏁᎮ.\nᎠᏂᏴᏫ ᎨᎵ ᏱᎩ, ᎠᏴᏫᏯᎯ.\nᎠᎴ ᏔᎵᏁ ᏪᎯ ᎾᏍᎩ ᎤᏓᏴᏒᎩ, ᎠᎴ ᎤᏲᎱᏒ ᏧᏪᏥ ᎾᏁᎲᎾ.\nᏐᏉ ᎢᎦ ᏒᎮᏱᏣ ᎤᏍᏆᏂᎩᏗ ᎠᏂᏃᎮᏍᎬ ᎤᏛᎦᏍᏔᏁᎢ ᏃᎴ ᎾᎾᏛᏁᎲ.\nᎠᎦᎵᎭ ᎪᎯ ᎢᎦ.\nᎠᎴ ᎦᏙᎯ ᏓᎨᏣᏡᏂ, ᎠᎴ ᏗᏤᏥ ᎬᏂᏯᎢ ᎨᏎᏍᏗ; ᎠᎴ ᎥᏝ ᎨᏣᎯᏰᏗ ᏱᎨᏎᏍᏗ ᏌᏉ ᏅᏯ ᏱᏚᏓᏌᏝᎮᏍᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏔᎲᎾ ᏥᎨᏒ ᎢᏳ ᎡᏣᏩᏛᎯᎯᏍᏗ ᎨᏒᎢ.\nᏧᏍᏆᏴᏍᏗ ᏳᏚᎵᏍᎬᎾ ᎤᏅᎪᎢᏍᏗ ᎢᎦ ᎨᏒᎢ ᎡᏝᏪᎯ ᎤᏗᏍᎦᏞᎢ ᎧᏁᏍᎬ ᎭᏫᏂᏣ ᎧᏁᏌᎢ ᎡᎳᏗ.\nᎢᏍᎪᏂᏗᏢᏃ ᏭᎷᏨ ᎦᎩᏏᏂ ᎤᎾᏤᎵᎪᎯ, ᎠᏂᏔᎵ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ ᏕᎬᏩᏠᏎᎢ, ᏓᏓᏂᏌᎲ ᏧᏂᏄᎪᏤᎢ, ᎤᏣᏔᏅᎯ ᎤᏂᎿᎸᎯᏳ ᎨᏎᎢ, ᎾᏍᎩ ᎥᏝ ᎩᎶ ᎾᎿ ᎬᏩᎶᎯᏍᏗ ᏱᎨᏎᎢ.\nᎣᎦᏚᏓᎳ ᏂᎪᎯᎸ ᎣᏣᎵᎡᎵᏤᏗᏱ ᎤᏁᎳᏅᎯ ᏂᎯ ᎢᏓᎵᏅᏟ ᎤᎬᏩᎵ, ᏥᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏲᎦᏛᏁᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏦᎯᏳᏒ ᎤᏣᏘ ᏣᏛᏍᎦ, ᎠᎴ ᏕᏣᏓᎨᏳᏒ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎤᏣᏘ ᏥᎧᏁᏉᎦ;\nᎠᏏᏴᏫ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎬᏩᎵᏍᏓᏴᏙᏗ ᎨᏒ ᎤᏬᎯᏳᏐᎢ; ᎩᎶᏃ ᎠᏩᎾᎦᎳ ᎠᏛᏒᎥᏍᎩᏉ ᎠᎵᏍᏓᏴᏗᏍᎪᎢ.\nᏈᏓᏍᎩᏂ ᎠᎴ ᎾᏍᎩ ᎾᎠᏁᎯ ᎤᏣᏘ ᏓᏂᎸᏍᎨᎢ; ᎤᏂᏰᏨᏃ ᎤᏂᎪᎮ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎦᏙᎬ ᏗᏂᏙᎩ.\nᎤᏞᎩᏰᏃ ᎾᎯᏳ ᎨᏒ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏂᎦᏗᏳ ᎪᏪᎳᏅᎯ ᎨᏒ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎤᏁᏤ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ, ᎠᎴ ᎩᎬ ᎤᏂᏍᏚᏟᏍᏗᏱ [ᎦᎶᎯᏍᏗᏱ,] ᎾᏍᎩ ᎢᎬᏱ ᎤᎾᏕᏅᎯ ᏗᏛᏗᏍᎩ ᎪᎱᏍᏗ ᎤᏅᏁᏗᏱ ᏂᎨᏒᎾ.\nᏅᏩᏓᎴᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᏓᎬᏍᏓᏩᏗᏙᎵ; ᎠᏎᏃ ᎢᎬᏱ ᎨᎾ ᏫᎦᏥᏲᎵᎦ ᏅᏛᏂᏂ ᏗᏇᏅᏒᎢ.\nᎣᏏᏳᏰᏃ ᎤᏂᏰᎸᏅ ᎹᏏᏙᏂ ᎠᎴ ᎡᎦᏯ ᎠᏁᎯ ᎪᎱᏍᏗ ᎤᏂᏗᏱ ᏅᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎤᎾᏓᏅᏘ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎤᎾᎵᏍᏕᎸᏙᏗ.\nᎠᎴ ᎿᏉ ᎤᏲ ᏂᎨᏨᎿᏕᎨᏍᏗ ᎢᎸᎯᏢ ᎦᏚᎲᎢ, ᎢᎶᎵᏍᎨᏍᏗ ᏅᏩᎵᎴ ᏗᎦᏚᎲ ᏫᏥᎶᏍᎨᏍᏗ. ᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎢᏏᎵᏱ ᏕᎦᏚᎲᎢ ᏱᎨᏤᏙᏁᏍᏗ ᎿᏉ ᏴᏫ ᎤᏪᏥ ᏓᎦᎷᏥ.\nᎡᎳᏗ ᏄᏛᏁᎸ ᏐᏈᎵ ᎨᏓᎵ ᏭᏓᏒᏍᏔᏅ, ᎠᏌᎻᏓ ᎤᎩᎸᏗ, ᎾᎨ ᎢᏴ ᏂᏚᏩᏅ ᏗᎫᏍᎨᏂ, ᎤᏟᏫᏛᏍᏗ ᏧᏚᎵᏍᎪ ᎾᏍᎩᏯ.\nᎾᎥ ᎡᏥᎷᏥᏏ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏃ ᏂᎯ ᎾᎥ ᏓᏥᎷᏤᎵ. ᏗᏦᏑᎵ ᏗᏦᏰᏂ ᎢᏥᏍᎦᎾᎢ, ᎠᎴ ᏗᏥᏅᎦᎸ ᏗᏥᎾᏫ ᏔᎵ ᎢᏧᏓᎢ ᏗᏣᏓᏅᏘ.\n“ᏤᏍᏗ ᎯᎸᎯ!” ᎤᏦᏱᎴ.\nᏗᏂᎧᎿᏩᏙᎯᏰᏃ ᎨᏒ ᎦᎪ ᎢᎸᎯᏳ ᎯᎠ ᏄᏪᏎᎶᎢ, ᎠᏇᏥ ᏂᎯ ᎪᎯ ᎢᎦ ᏍᏆᏕᎲᏏ? ᎠᎴ ᎾᏍᏉ ᎯᎠ; ᎠᏴ ᏥᎦᏴᎵᎨ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ Ꮎ ᎠᏯᏥ ᎨᏎᏍᏗ?\nᎣᏍᏓ ᎠᎩᏍᏗ ᎨᏎ---ᎤᏅᏗ, ᎤᎧᏔ ᎠᏰᎵ, ᎦᏚᎢ ᏗᎬᏂᏍᏔᏅ ᎦᏚ, ᏩᎩᎦ ᎦᏁᎦ, ᏔᎵ ᎢᎦ ᎦᏚ ᏧᏍᏔᎦᏴᎯᏓ, ᎦᏚ ᎤᎦᎾᏍᏓ, ᎠᏣᏗ ᎦᏙᎦ, ᏐᏉ ᎠᏓᎶᏂᎨ ᎠᏯᎨᏨ, ᏰᎵ ᎢᎦ ᎤᎦᎢ) ᏗᎦᎸᏅ, ᎤᏬᏗᎨ ᎤᏅᏗ ᎤᏍᏔᏲᏒ, ᎦᏚ ᎤᎦᎾᏍᏓ ᎦᏌᏆᏞᎸ, ᎪᏪᎵ ᏔᎷᎩᏍᎩ ᎦᏯᎸᏅ ᏃᎴ ᎠᏗᏙᏗ ᎦᎵ ᏒᏗᏩᏟ ᎦᏁᎯ ᎤᏍᏓᏲᏒ.\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ ᏱᏦᏞ ᏍᎩᏴ ᎤᎵᏏᏂᏕᎾ, ᎯᎠ ᎢᏳᏍᏗ ᏱᏣᏛᎦᏁᎢ: “Ꭷ, ᏃᏗ ᏄᏓᎴ ᎢᎦᏪᏍᎩ!\nᎿᏉᏃ ᎢᎦ ᏄᎵᏍᏔᏅ ᎥᏝ ᏳᏃᎵᏤ ᎾᎿ ᎦᏙᎯ; ᎠᏎᏃ ᎤᏂᎪᎲ ᎠᎺᏉᎯ ᏭᏩᏂᎦᎸᎢ, ᏰᎵ ᎬᏚᎩᏍᏗ ᎨᏒᎢ, ᎾᎿ ᏭᏂᏅᏍᏙᏗᏱ ᏥᏳ ᎤᏂᏰᎸᏅᎩ, ᎢᏳᏃ ᏰᎵ ᏱᎩ.\nᎠᎴᏬ ᏅᎩ ᏗᏂᏅᏌᏗ ᎤᏂᎩᎬ ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏥᏫᎦᏁᏨᏍᏗᏍᎨ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ, ᎾᏍᎩ ᏗᏂᏰᎸ ᎦᎵᏦᏛ ᏙᏱᏗᏢ ᏓᎾᎪᎲᏍᏗᏍᎨᎢ.\nᎾᏍᎩ ᎠᏆᏚᎵᏍᎬᎩ ᏥᏯᎧᎯᏯᏍᏗᏱ ᎠᏂ ᎨᏙᎲᎢ, ᎾᏍᎩ ᏂᎯ ᏍᎩᏍᏕᎸᎯᏓᏍᏗ ᎨᏒ ᎠᎩᏍᏕᎸᎯᏓᏍᏗᏱ ᎥᏆᎸᎢᏛ ᎨᏒ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎩᏍᏛᏗᏍᎬᎢ;\nᎢᎦ ᏏᏆ ᎠᏍᏚᎲ ᎱᏂᎷᏤ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ.\nᎤᏲ ᏦᎦᏓᏅᏔᏩᏕᎪ ᎾᏍᎩᏯ, ᎠᏎᏃ ᏯᏃ ᎣᏣᎵᎮᎵᎪᎢ; ᎤᏲ ᏥᏃᎦᏛᎿᏕᎪ ᎾᏍᎩᏯ, ᎠᏎᏃ ᎤᏂᏣᏘ ᏙᏤᏅᎢᏍᏗᏍᎪᎢ; ᎪᎱᏍᏗ ᏃᎩᎲᎾ ᏥᎨᏐ ᎾᏍᎩᏯ, ᎠᏎᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎣᎦᏤᎵᎦ.\nᎠᎹ ᏃᎴ ᎤᏃᎴ ᏩᏓᏑᏴᎥᏍᎬ ᏍᏉ.\nᎭᏩ ᎯᎠ ᏃᏉ ᏱᎩ, ᎠᏆᏚᎵ ᏣᏛᎦᏍᏙᏗ ᎪᎰᏍᏗ, ᎣᎭᏁ ᎠᏆᏚᎵ ᎠᏆᏛᎦᏍᏙᏗ ᎢᏳᏍᏗ ᏁᎵᏍᎬ.\nᎠᏥᎳ ᏓᏆᎴᎳ ᏧᏟᎷᏆᏗᏅᏓ ᎤᎵᎨᏯᏛᏅ ᎾᎥᏂᎨᎢ ᏄᏍᏛ.\nᏥᏌᏃ ᏚᎧᎿᏅ, ᎤᎨᏳᎯᏳ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏑᏓᎵᎩ ᏣᎷᎳ; ᏫᎾᏚᎦ ᏂᎦᎥ ᎪᎱᏍᏗ ᏣᎾᎥᎢ, ᎠᎴ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎩᏁᎸᎭ, ᏦᏒᏃ ᏫᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᎠᎴ ᏖᏒᎭ, ᏧᏓᎿᏩᏛ ᎪᏣᎮᏍᏗ ᏧᎬᏩᎶᏗ; ᎠᎴ ᏖᏒᎭ, ᏧᏓᎿᏩᏛ ᎯᏴᎲᎭ, ᎠᎴ ᏍᎩᏍᏓᏩᏕᏒᎭ.\nᏥᏌᏃ ᎤᏍᎦᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎡᎳᏪ ᎲᎾ, ᎠᎴ ᎯᏄᎪᎢ.\n“ᎡᎭ, Ꮟ ᎩᎳᎯ ᎭᏓᏅᏖ ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᎩᎸᏙᏗ?” ᎤᏛᏁ ᎡᎳᏆᏗ ᎤᏲ ᎤᏰᎸᎯ.\nᎯᎠ ᏄᏪᏎᎢ, ᎢᏍᏕᎾ ᎢᏢ ᎾᏨᏗᎦᏚᎭ, ᎾᎿᏃ ᏫᏍᏗᎷᏨᎭ ᏓᏰᏍᏗᏩᏛᎯ ᎠᎩᎾ ᎨᎵᏌᏕᏍᏗ, ᎾᏍᎩ ᎥᏝ ᎠᏏ ᎩᎶ ᎤᎩᎸᏔᏅᎯ ᏱᎩ; ᎡᏍᏕᎵᏌᏕᏒᎭ ᎠᎴ ᏣᏍᏓᏘᏁᏒᎭ.\nᎠᎴ ᎠᏏ ᎤᏟ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ, ᎢᏳᏃ ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯ ᏅᏩᏓᎴ ᎠᏥᎸ-ᎨᎶᎯ ᏱᎦᎾᏄᎪᎦ,\nᎢᏳᏃ ᏰᎵ ᎤᏚᎩ ᏂᎨᏒᎾ.\nᎠᎵᏥᏙᏂᏙᎮᏃ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏂᎬᎾᏛ ᎨᎵᎵ, ᎠᎴ ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎨᎢ.\nᎠᏎᏃ, ᎨᎵᎠ ᎨᏍᏗ ᏱᏓᎦᏕᎶᎣᏏ ᎤᏒᎯ ᏓᎩᎷᏫᏍᏔᏁᎸ.\nᏦᎢᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎤᏣᏘᏃ ᎡᏆ ᏃᏈᏏ ᎤᏬᎭᏒᎩ ᎦᎸᎳᏗ ᏗᏳᏓᏅᎩ, ᎠᏨᏍᏙᏗ ᏣᏓᏪᎵᎩᏍᎪ ᎾᏍᎩᏯᎢ, ᎡᏉᏂᏃ ᏚᏪᏴ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᏥᏍᏠᏨᎩ, ᎠᎴ ᎠᎺ ᏕᎦᏄᎪᎬ ᏚᏥᏍᏠᏨᎩ.\nᎨᏍᏗ ᏴᎦᏔᎭ ᎢᏳᎵᏍᏙᏗ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ.\nᎢᎦᏛᏃ ᏓᎾᏕᎰᏗᏍᎬ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏤ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏚᏂᎧᎵᏨ.\nᏐᏉ ᎤᏬᏰᏂ ᎤᏌᎵᏓᏅ ᏥᏣᎩᎨᎯᏙᎰ ᎢᎦᎦᏓ, ᏃᏉ ᎱᎴᏅᎲ ᏕᎧᏃᎮᏍᎬ ᏗᏤ ᏧᎳᏑᎶ, ᎨᏂᏗ ᎨᏂᏗ ᏅᏬᏘ ᎤᏓᏑᏱ ᎤᏅᏍᎦᎸ.\nᎬᏂ ᎾᎯᏳ ᎢᎦ ᎠᏥᏌᎳᏓᏅ, ᎦᏳᎳ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏩᏔᏅᎯ ᏧᏁᏤᎸᎯ ᏂᎨᏎ ᎨᏥᏅᏏᏛ ᎾᏍᎩ ᏧᏑᏰᏛ.\nᏃᏗ ᎠᎵᏍᏛᏧᏍᏗ ᎠᎧᏁᎲ.\nᎢᏣᏉᎨᏒ, ᏚᏅᏓᏒ ᏓᏯᏙᎳᏛᎥᏍᎬ ᎦᎸᎶᎢ.\nᏗᎦᏙᎵ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᏍᎪᎵᏃ ᎤᏣᏘ ᏚᎵᏍᏚᎸᎩ; ᎠᎴ ᏚᏙᎥ ᎪᏪᎸᎩ ᎾᏍᎩ ᎩᎶ ᎬᏬᎵᏍᏗ ᏂᎨᏒᎾ ᎤᏩᏒᏍᎩᏂᏃᏅ ᎪᎵᎬᎩ.\nᏧᏓᎴᏅᏛᏍᎩᏂᏃᏅ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎵᏍᎪᎸᏔᏅᎯ, ᎠᏎᏃ ᎾᏍᎩᏉ ᏌᏉ ᎠᏓᏅᏙ.\nᎨᏍᏗ ᎡᏝᏪᎯ ᏱᎨᏐ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏭᏕᎵᏤ ᎤᏔᎴᎦᏒ, ᎦᏌᏙᏱᏎ ᏌᏌ ᎤᏪᏥ ᎠᎬᏱᏣ.\nᎢᏳᏃ ᎦᏰᏥᏐᏢᏕᏍᏗ ᎦᎶᏁᏛ ᏚᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ, ᎠᏓᏅᏙᏰᏃ ᎦᎸᏉᏗᏳ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎢᏤᎳᏗᏙᎭ; ᎾᏍᎩ Ꮎ ᎨᏒ ᎦᎬᏩᏐᏢᏗ, ᏂᎯᏍᎩᏂ ᎨᏒ ᎠᏥᎸᏉᏗᎭ.\n”ᏥᏂᏕᎯᏫ ᏚᏙᏍᏛᎢ, ᎨᏍᏗ ᎣᏍᏓ ᏱᏓᎩᏂᏴ ᎠᎬᏱᎯᎩ \nᎾᏄᏍᏗ ᏓᎩᏏᎳᏛᎢ-“ᎣᏍᏓᎦ ᎠᎪᏩᏛᏗ ᎤᏰᏌᏛᎢ ᏄᏍᏛᎢ?” \n“ᎭᏓᏏᏓ!” ᎤᏓᏅᏫᏍᏔᏁ ᏌᎳᏓ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏃᎮᎮᎸ ᎤᏦᏍᏗ ᎪᎵᏍᏗᏱ ᎠᏋᏔᏅ; ᎠᏎᏃ ᏛᏍᏆᎸᎯ ᎿᏉ ᎥᏝ ᏱᏨᏯᎵᏃᎮᏗᏍᎨᏍᏗ ᎤᏦᏍᏗ ᎪᎵᏍᏗᏱ ᎬᏗ, ᎬᏂᎨᏒᎢᏳᏍᎩᏂ ᏓᏨᎾᏄᎪᏫᏎᎵ ᎠᎦᏴᎵᎨᎢ.\nᎢᏳᏃ ᏅᏩᏙᎯᏯᏛ ᎤᏪᏥ ᎾᎿ ᎡᎮᏍᏗ, ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎤᎷᏤᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᎾᎿ ᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎢᏨᏒᏉ ᎢᏥᎷᏥᏌᏁᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎾᏍᎩ ᎥᎩᎸᏉᏙᏗ ᎨᏒ ᏂᎯ ᏍᎩᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎦᏥᏁᎸ, ᏌᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᎯ ᎠᏴᏃ ᏌᏉᏉ ᏥᎩ;\nᏤᏍᏗ Ꮟ ᎪᎱᏍᏗ ᏱᏍᎩᏃᎯᏎᎴᏍᏗ.\nᎨᏍᏗ ᏱᎦᏚᎵ ᎰᎻ ᎤᏓᏅᏖᏗ ᎤᏍᏓᎦᏴᎯᏓ ᎨᏒ ᏫᎵᎻ.\nᎾᏍᎩᏃ ᎢᏥᎪᏩᏘᎭ ᏴᏫ ᏕᎤᎸᏫᏍᏓᏁᎲ ᎠᏚᏓᎴᏍᏗᏍᎬᎢ, ᎥᏝᏃ ᎪᎯᏳᏗᏉ ᎨᏒ ᎤᏩᏒ.\nᎤᎩᏓᏟᏅᏯ ᎢᎾ?\nᎠᏂᏴᏫᏃ ᎾᏍᎩ Ꮎ ᏧᎾᏛᏐᏅᎯ ᎨᏒ ᎤᏁᏨᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎦᎪ ᎯᎠ ᎾᏧᏁᎬ ᏧᎾᏄᏩᎢ ᏥᎩ? ᎠᎴ ᎭᏢ ᏧᎾᏓᎴᏁᎢ?\nᎿᏉᏃ ᎠᏂᏧᏏ ᎤᏅᏒᏉ ᏚᎾᏘᏲᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎯᎠ ᎠᏍᎦᏯ ᏱᎩᎲᏏ ᎤᏩᏒ ᎤᏫᏯ ᎢᎦᎵᏍᏓᏴᏙᏗ?\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏗᎦᎵᏍᏙᏗᏍᎩᏂ ᏂᎯ ᎡᏥᏁᎸᎯ ᎨᏒ ᎢᏦᎵᏍᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬ ᏫᏳᎯ ᎨᏒᎢ, Ꮎ-ᏍᎩᏂ ᎥᏝ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎩ.\nᎿᏉᏃ ᎠᏂᏔᎵ ᏠᎨᏏ ᎠᏁᏙᎮᏍᏗ, ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ;\nᎤᏐᏅᎢᏴ.\n”ᏔᎷᎩᏍᎩ ᎬᏗ ᏣᎶᏅᎮᎭ.\nᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᎾᏍᎩ ᎠᏛᎩᏍᎨᏍᏗ.\n“ᎣᏍᏓ ᏱᏂᏣᎵᏍᏓ ᏍᏉᏟᎢ ᏱᏤᎯᏍᏔᏁᎳ.”\nᎾᏍᎩᏃ ᏧᎾᏟᎶᏍᏙᏗ ᏂᏣᎵᏍᏔᏅᎩ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ ᎹᏏᏙᏂ ᎠᏁᎯ ᎠᎴ ᎡᎦᏯ ᎠᏁᎯ.\nᏌᎳᏓ ᎤᏕᎶᎰᏎ ᎤᏙᎰᏒ. ᎬᏣᏙᏗ ᏄᏪᏎᎴ ᎤᏃᏕᎾ ᎠᏓᎯ.\nᎠᏎᏃ ᏄᏪᎯᏨᎾᏉ ᎣᏂ, ᎤᏱᎶᎸᎩ ᎤᏃᎴ ᏳᎶᏟᏛ ᏧᏙᎢᏛ.\nᎦᎸᎳᏗ ᎨᏒ ᎨᏴ ᏃᎴ ᎤᎭᎨᏛ ᎡᎳᏬᏗ ᎠᎭᏱᏒ.\nᎿᏉᏃ ᎠᏂᏄᎪᎬᎢ ᎬᏂᏳᏉ ᎩᎶ ᎬᏩᏘᏃᎮᎸᎩ ᎠᏍᎦᏯ ᎤᏩᎨᏫ, ᎠᏍᎩᎾ ᎤᏯᎢ.\nᎾᎿᏃ ᎠᏁᏙᎮ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ.\nᏥᏌᏃ ᎤᏴᎴ ᎠᎴ ᎤᎶᏎ ᏤᎵᎪ.\nᎤᏓᏬᎡ, ᎤᏩᏛ ᏧᎶᏒ ᎢᎪᎯᏓ.\nᎡᏂᎾᏯᏃ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏅᏤ ᎠᎴ ᎤᎵᏍᏆᏕᎴᎢ. ᎾᏂᎥᏃ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ ᎤᎾᏛᎦᏅᎯ ᎤᏣᏔᏅᎯ ᎤᏂᎾᏰᏎᎢ.\nᎦᎵᏉᎩᏃ ᎦᏚ ᏚᎩᏒᎩ ᎠᎴ ᏚᏁᏒ ᎠᏣᏗ, ᎤᎵᎮᎵᏨᏃ, ᏚᎬᎭᎷᏴᎩ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏫᏚᏁᎸᎩ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏂᏣᏘ ᏫᏚᏂᏁᎸᎩ.\nᎠᏎᏃ ᎤᏟ ᎤᎵᏂᎩᏛ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎾᏍᏉ ᎢᏧᎳᎭ ᏗᎩᏂᏲᏞᎯᏍᏗ ᏱᎩ, ᎠᏎ ᎥᏝ ᏴᎦᎬᏯᏓᏱᎦ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏂᏪᏎ ᏂᎦᏛ.\nᏂᎯᏍᎩᏂ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎯᎠ ᏄᏍᏕᏍᏗ; ᎣᎩᏙᏓ ᎦᎸᎳᏗ ᎨᎯ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏕᏣᏙᎥᎢ.\nᎢᎦᏛᏃ ᎨᏥᏅᏏᏛ ᏚᏪᎧᏁᎢ; ᎢᎦᏛᏃ, ᎠᎾᏙᎴᎰᏍᎩ; ᎢᎦᏛᏃ, ᎠᎾᎵᏥᏙᏂᏙᎯ; ᎢᎦᏛᏃ, ᏗᏂᎦᏘᏯ ᎠᎴ ᏗᎾᏕᏲᎲᏍᎩ;\nᎠᎴ ᎾᎿ ᏪᎮ ᎬᏂ ᎡᎶᏛ ᎤᏲᎱᏒ; ᎤᏙᎯᏳᏁ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎢ, ᎠᏙᎴᎰᏍᎩ ᏧᏮᏔᏁᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎢᏥᏈᏱ ᏫᏥᏯᏅᎲ ᎠᏇᏥ.\nᎤᎩᏨᏛᏃ ᏌᏙᏂ ᎣᎩᏃᏠᏨᎩ. ᏧᎵᏯᏏᏃ ᎣᏍᏛ ᏄᏛᏁᎸᎩ ᏉᎳ, ᎤᎵᏍᎪᎸᏓᏁᎸᎩᏰᏃ ᏧᎵᎢ ᏧᏩᏛᎲᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎬᏩᏍᏆᏂᎪᏙᏗᏱ.\nᎣᏏᏳ ᏱᏥᏰᎸᎾ ᎢᏳᏃ ᏂᏥᎥ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏱᏗᏥᏬᏂᎭ; ᎠᏎᏃ ᎰᎤᎬᏫᏳᎭ ᏱᏣᏙᎴᎰᏍᎦ; ᎤᏟᏰᏃ ᎠᏥᎸᏉᏗᏳ ᎾᏍᎩ Ꮎ ᎠᏙᎴᎰᏍᎩ, ᎡᏍᎦᏉ ᎾᏍᎩ Ꮎ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏗᎦᏬᏂᏍᎩ, ᎢᏳᏍᎩᏂᏃᏅ ᏯᏁᏢᏗᎭ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏧᎾᎵᏂ ᎪᎯᏍᏗᏱ.\nᏕᏤᏯᏙᏤᎮᏍᏗ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᏫ ᎤᏂᏃᏕᎾ ᎦᏁᎦ ᏧᎾᏄᏩᎢ ᏥᎨᏥᎷᏤᎰᎢ; ᎠᏎᏃ ᎭᏫᏂ ᎨᏒ ᏩᏯ ᎤᏂᎬᎥᏍᎩ ᎨᏐᎢ.\nᎾᏍᎩ ᎠᏂᎦᏔᎲ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏄᎾᏓᏄᏴᏛᎾ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏆᏓᏄᏴᏛᎾ ᏥᎨᏐ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎬᎩᏁᏉᏤᏗᏱ ᎾᏍᎩ Ꮎ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏄᎾᏓᏄᏴᏛᎾ, ᎠᏎᏃ ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏆᏓᏄᏴᏛᎾ ᏱᎩ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎠᏆᏓᏄᏴᏗᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ.\nᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏁᎮᎢ, ᎠᏏᏴᏫ ᎠᏥᏅᏝᎢ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ, ᏐᎢᏃ ᎾᏥᎾᏝᎥᎾ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ.\n”ᏄᏦᏍᏛᎾ ᎨᏎᎢ,” ᎤᏓᏙᏎᎴ ᎤᏩᏌ.\nᎠᎴ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ ᎢᎾᏛ ᎾᏍᎩ ᏅᎩ-ᏓᎦᏅᏌᏗ ᎤᎵᏂᎬᎬ ᎤᏁᎸᎯ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ, ᎯᎠ ᎾᏁᏪᏍᎬᎩ, ᎦᎪ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏄᏍᏛ ᎾᏍᎩᏯ ᏄᏍᏗ? ᎦᎪ ᏰᎵ ᎾᏍᎩ ᏓᎿᏩ ᏱᎾᏅᎦ?\nᎯᎠᏃ ᏂᏓᎬᏪᏎᎵ, ᏧᏍᏆᏴᏍᏗ, ᎯᎬᏩᏛᏔᏅᎯ ᎱᏍᏔᏂᏙᎲ-ᎯᏙᎲ-ᎯᏙᎲ ᎤᏁᎸᏗ ᎯᏴᏐᎵ ᎾᎥᏂ ᏌᏌ ᎠᏂᏓ, ᎤᏁᏘᏍᏗ ᏓᎬᎵᎥᏂᎵ.” \nᎾᏍᎩᏃ ᎯᎠ ᎠᏥᏃᎮᏍᎬ ᏧᏗᏱ ᏂᎬᎾᏛ ᏚᏰᎵᏏᏙᎴᎢ, ᎠᎴ ᎾᎿ ᎬᏩᏚᏫᏛ ᎨᏒᎢ.\nᎬᏩᏍᏓᏩᏗᎯ ᎯᎠ ᏅᎩᏩᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎿᏉ ᎬᏂᎨᏒᎢᏳ ᎯᏁᎦ, ᎥᏝᏃ ᎤᏦᏍᏗ ᎪᎵᏍᏗᏱ ᏱᏁᎦ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᏄᏍᏗ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ, ᏗᏣᏓᏅᎦᎸᏛ ᎢᏣᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏗᏥᏲᎯᏍᏗᏱ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ;\nᏌᏌ ᎠᏨᏯᎢ ᎤᏩᏛᎮᎢ ᎤᏂᏲᏍᏔᏅ, ᏏᏓᏁᎸ ᏫᏚᏘᏅᏍᏔᏁᎢ ᏒᎧᏔ ᏗᏗᏧᎬᎢ ᎢᏣ. ᏒᎧᏔ ᎡᎳᏗ ᎦᎳᎨᏴ ᏚᏂᎨ.\nᎤᏍᏗ ᏍᎪᏯ ᎤᏍᏆᏂᎪᏛ ᎤᏩᏯᎨᎢ.\nᎦᎵᏉᎩᏁᏃ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ ᎡᎳᏪ ᎤᏅᏅᎩ ᎦᎸᎳᏗ ᎠᏰᎵ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ.\nᎠᏆᏚᎵ ᎠᏤ ᎧᏁᏍᎦ ᎯᏁᏗ ᎤᏂᏏᏗ ᏧᏙᏓᏋᏓ.\nᏂᎦᏗᏳᏃ ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᎧᎵᏨᎯ ᎤᎾᏰᎯᏍᏗ ᎤᎾᏓᏅᏓᏕᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏍᏆᏂᎪᏗᏳ ᎢᏗᎪᏩᏛ ᎪᎯ ᎢᎦ.\nᎤᏙᎯᏳᎭᏍᎪᏃ ᎠᏚᎸᏗ ᎠᎵᏍᏔᏴᏗ ᏥᏃᎮᎭ? \nᎠᎴ ᎯᎠ ᏅᏧᏪᏎ ᎦᎸᎳᏗ, ᏂᎯ ᎬᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎣᏏᏳ ᎬᏰᎸᎢ ᏥᎩ.\nᎾᎯᏳᏃ ᎤᏅᏂᏍᏗᏱ ᎨᏒ ᎤᏅᏏᏓᏍᏗ ᎤᏅᏎ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏗᎡᎲᎢ, ᎾᏍᎩ ᏂᏙᏓᎬᏩᏅᏁᏗᏱ ᎤᎾᏓᏛᏅᎯ ᏖᎸᎳᏗ ᏓᏫᏒᎢ; ᎠᏎᏃ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᎵᎥᏂᎸ ᎠᏒᎭ ᎤᏂᎨᎯᏙᎴᎢ.\n”ᏣᏁᎳ ᎢᎦ ᎨᏎ ᏧᏪᏥ, ᎠᏎᏃ ᏐᏉ ᎤᏪᏥ ᎨᏍᏗ ᏳᏣᎩᏌ. ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᏌᏌ, ᏧᏍᏆᏴᏍᏗ ᎤᏁᎴ. ᏫᏥ ᏭᏴᏍᏔᏁᎢ.\nᏧᎵᏠᏯᏍᏗ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎠᏩᏛᏗᏱ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏞᏩᏥᎪᏗ ᏂᎨᏒᎾ ᏧᏚᎢᏍᏔᏁ ᎠᏏ ᎾᏓᎴᏂᏍᎬᎾ ᏥᎨᏎ ᎡᎶᎯ;\nᏍᎦᏚᎩ ᎤᎬᏫᏳ Ross ᎠᎴ ᏍᎦᏚᎩ ᎤᎬᏫᏳ ᎦᏄᏓᎴᎩ, ᎠᏤ ᎤᏔᏂᏓ ᎦᎵᏦᏕ ᎠᏂᏂᎩᎸ.\nᏍᎩᏃᏳᏍᏗ Ꮎ ᏥᏓᏇᏍᏓᏁᎮ ᏗᎳᏑᎶ, ᏧᎾᏍᏗᎩᏃ ᎨᏎ.”\n“ᎨᏍᏗᏗ ᏱᏓᏓᎴᎦ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏣᏁᎳ ᏕᎦᏅᏌᏕ, ᏃᎴ ᏐᏉ ᎬᏗ ᎤᏲᎵᎮ ᎤᏓᏅᏘ.\n”ᎭᏩ,” ᎤᏛᏁ ᎤᏙᏓ, ”ᎤᏍᏗᎩᎨ ᏍᎩᎾᎾ.” \n ᎠᎢᏒ ᎠᏁᎸᏗᏍᎨᎢ ᎤᏍᎦᏍᏗ ᏱᎨᏒᎾ.\nᎠᏂᎨᏯ ᎤᏂᏗᏍᎩᏌᏁ ᎦᏲᏟ ᎤᏅᏔᏂᏓᏍᏗ ᎠᎾᎵᏗᎩᏍᎬ.\nᏎᎦᏨ ᎤᎵᏛᏔᏁᎢ.\nᏃᎩᎦᏔᎲᎾ ᎾᏍᎩᏯᎢ, ᎠᏎᏃ ᎣᏏᏳ ᎣᎩᎦᏔᎯ ᎨᏒᎢ; ᏥᏙᏥᏲᎱᏍᎪ ᎾᏍᎩᏯᎢ, ᎬᏂᏳᏉᏃ ᏦᏨᏃᏛ; ᎣᎩᏍᏛᏗᏍᏔᏅᎯ, ᎣᎩᎸᎯᏃ ᏂᎨᏒᎾ;\nᎦᏚᎲᏃ ᎥᏝ ᏯᎾᏚᎵ ᏅᏙ-ᎢᎦ-ᎡᎯ ᎠᎴ ᏅᏙ-ᎡᏃᏱ-ᎡᎯ ᎤᎦᎵᎯᏍᏗᏱ ᎾᎿᏂ; ᎦᎸᏉᏗᏳᏰᏃ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎢᎦᎤᏘᏍᏛ ᎾᎿᏂ, ᎠᎴ ᎤᏃᏕᎾ-ᎠᎩᎾ ᎢᎦ ᎠᏘᏍᏗᏍᎩ ᎢᎩ ᎾᎿᏂ.\nᎤᎵᏂᎩᏛᏃ ᏚᏅᏍᏓᏕᎴ ᏚᏁᏤᎴ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ,\nᎠᎴ ᎢᎸᎯᏢ ᎦᏚ-Ꮂ ᎢᏥᎷᎨᏍᏗ, ᎠᎴ ᏕᎨᏣᏓᏂᎸᎨᏍᏗ, ᏄᏍᏛ ᎨᏤᎳᏍᏗᏍᎬ ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ.\nᎿᏉᏃ ᎬᏂᎨᏒ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎳᏏᎳ ᎤᏲᎱᏒ;\nᎤᏙᎯᏳᎯᏰᏃ ᎾᏍᎩ ᏂᏣᏛᏁᎭ ᎾᏂᎥ ᏕᏥᎨᏳᎭ ᎠᎾᎵᏅᏟ ᎹᏏᏙᏂ ᎠᏁᎯ; ᎠᏎᏃ ᎢᏨᏍᏗᏰᏗᎭ, ᎢᏓᎵᏅᏟ, ᎢᏥᏁᏉᎢᏍᏗᏱ ᎤᏟᎯᏳ ᎢᎦᎢ;\n”ᏔᏣᎪᎳᏗᎾ!” ᎤᏪᎷᏁᎢ ᎡᎳᏆᏗ, ᎭᏫᏂᏗᏣ ᏭᎵᏖᎸᏂᎴᎢ.\nᏫᏥᎪᏩᏛᏗ ᎨᏒ, ᎢᏳᏓᎵᎭ ᏧᏪᏅᏒ.\nᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎪᎱᏍᏗ ᏂᏗᏣᏓᏕᎵᏎᎲᎾ ᎠᎴ ᏥᏣᏗᏒᎯᎲᎾ ᎨᏎᏍᏗ;\nᎠᏎᏃ ᏅᎵᏌᎵᏉ ᏗᏅᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏣᏘᏂᏉ ᏭᏂᎶᏎᎢ, ᎠᏏᏴᏫ ᏧᎶᎨᏒᎢ, ᏐᎢᏃ ᎤᏃᏙᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᏕᏨᏅᎢ, ᎢᏳᏍᏗ ᎢᏥᎩᏍᏗᏱ ᎠᎴ ᎢᏳᏍᏗ ᎢᏣᏗᏔᏍᏗᏱ, ᏞᏍᏗ ᎠᎴ ᏗᏥᏰᎸᎢ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎢᏳᏍᏗ ᏗᏣᏄᏬᏍᏗᏱ. ᏝᏍᎪ ᎠᎬᏅ ᎤᏟᎯᏳ ᏱᎩ ᎡᏍᎦᏉ ᎠᎵᏍᏓᏴᏗ? ᎠᎴ ᏝᏍᎪ ᎠᏰᎸᎢ ᎡᏍᎦᏉ ᏗᏄᏬ?\nᏦᎢᏁᏃ ᎢᏳᏟᎶᏛ ᎢᏴ ᎧᏔᏩᏗᏒ ᎤᏒᎯᏰᏱ ᎢᏗᏢ ᏥᏌ ᎤᏁᏤ ᎠᏍᏓᏯ, ᎯᎠ ᏄᏪᏎᎢ; ᎢᎳ, ᎢᎳ, ᎳᎹ ᏌᏆᏓᏂ? ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎦᏛᎬᎢ, ᎤᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎠᏆᏤᎵᎦ, ᎦᏙᏃ ᎢᏍᏮᏕᏨᏉ?\nᏍᏔᏱ ᎨᏒ ᎢᏧᎴᎭ ᎣᎩᎾᎵᎪᏗ ᏑᏙᏓᏆᏓ ᎠᎴ ᏔᎵ, ᎠᏎᏃ ᎣᏍᏓ ᏥᏰᎸᎥ, ᎨᏍᏗ ᏯᏆᏚᎵᏍᎨ ᎠᎩᏅᏗᏍᏗ ᎠᎵᎮᎵᏍᏙᏗ.\nᎠᎬᏱᏣ ᏓᏂᏅᏌᏛᎢ ᏗᎬᏗ ᎤᏂᏲᎵᎴ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ.\nᏥᏌᏃ ᏫᏚᏯᏅᎲ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᎦᏔᎭ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᏁᎪ ᎢᏳᎾᏛᏁᎵᏓᏍᏗᏱ ᏴᏫ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎠᏂᏁᏥᏙᎲ ᎾᎾᏛᏁᎰᎢ.\n”ᎨᎾ ᏏᏆ!” ᎤᏛᏁ ᎰᎻ, ᎦᎵᎥᏂᎮ ᏔᎷᎩᏍᎩ ᎪᏱᏂᏓᏍᏗ \nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎩᏁᎸ ᎠᏓᏅᏙ ᎤᏓᏍᎦᏍᏗ, ᎤᎵᏂᎩᏛᏍᎩᏂ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎴ ᎣᏍᏛ ᎠᏓᏅᏖᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏏᏗ, ᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎥᏝ ᎾᏉᎯᏳᏅᎾ ᏱᎨᏎ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎠᎩᎪᎲᎢ.\nᎠᎴ ᎾᏍᎩᏯ ᏤᏂ ᎠᎴ ᏨᏈ ᏣᎾᏡᏗᏍᎨ ᎼᏏ ᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᎠᎾᏡᏗ ᏚᏳᎪᏛ ᎨᏒᎢ; ᎠᏂᏍᎦᏯ ᎤᏲᏨᎯ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᎨᏥᏲᎢᏎᏛ ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎤᎬᏩᎵ.\nᏗᎩᏏ ᎦᏓᏍᎬ ᏭᎩᎶᏫᏎ ᏫᎵᎻ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏣᏚᎵᏍᎬ ᏴᏫ ᎢᎨᏣᏛᏁᏗᏱ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᏕᏣᏛᏁᎮᏍᏗ; ᎾᏍᎩᏰᏃ ᎯᎠ ᏄᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ, ᎠᎴ ᏧᎾᏓᏅᏙ ᎬᏩᏄᎯᏍᏔᏅ, ᎤᏂᏄᎪᏨᎩ ᏌᏉ ᎤᏛᏂᏛ ᎤᏓᏂᎵᎨ ᏚᏓᎴᏅᏔᏅᎩ, ᎣᏂᏱ ᏫᎬᏩᏛᏅᎩ; ᏥᏌᏃ ᎤᏩᏒ ᏄᎵᏍᏔᏅᎩ, ᎠᎨᏴᏃ ᎠᏰᎵ ᎦᏙᎬᎩ.\nᎠᏏᏴᏫ ᎡᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏢᏍᎩ ᏰᎵᏉ ᎬᏩᏓᏍᏕᎸᏗ ᎠᎴ ᎬᏩᏓᎯᏍᏗ; ᎦᎪ ᏂᎯ ᏅᏩᏓᎴ ᏥᏕᎯᏳᎪᏓᏁᎭ?\n“ᎠᎩᏲᏏ,” ᎤᏛᏁ ᏍᏗᏫ.\nᏃᏗ ᎡᎳᏗ, ᎡᎳᏗ, ᎡᎳᏗ, ᎦᎸᎶ ᏓᎦᏅᎪᎢᏍᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎭᏫᏂ, ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎦᎸᎳᏗ ᎾᎥᏂᎨ, ᏃᏗ ᏙᏱ ᎢᏣ, ᎠᏎᏃ ᎾᎥᏂᎨᏉ ᏃᎴ ᎡᎳᏗᎨᎢ ᎤᏩᎬᏘᎶᏓ. ᏃᏗ ᎩᎶ ᏄᏓᎴ ᎤᏁᎸᏙᏗ.\nᎢᎬᏱᏱᏰᏃ ᎨᏒ ᏕᏣᏲᎯᏎᎸᎩ ᎾᏍᎩ ᎾᏍᏉ ᎠᏴ ᏨᎩᏲᎯᏎᎸᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎠᏴ ᎢᎩᏍᎦᏅᏨ ᎢᎩᏲᎱᎯᏎᎸᎢ, ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎵᎯ;\nᏦᏈᏃ ᎡᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᎨᏴ ᏧᏁᎶᏗ, ᏓᏈᏗ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᏓᎩ ᎦᏛᎦ, ᎾᏍᎩ ᎯᎠ ᎤᎧᎵᏨᎯ ᎨᏎ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ ᎠᎴ ᎠᏓᏁᎸᎥᏍᎬᎢ.\nᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ.\nᎣᎦᏢᏲᎳᏃ ᎪᎱᏍᏗ ᎣᏥᎪᏩᏛᏗ ᎡᏙᏓ ᏥᎨᏒ ᏃᏊ ᏗᏡᎬ ᎦᎸᎳᏗ ᎢᏗᏢ ᏫᏚᎵᏐᏍᏔᏅ ᎤᏒᏕᎾ ᎦᎶᏇ ᎠᎴ ᏫᏚᏍᏓᏲᎸ.\nᎡᎶᏛᏃ ᎤᎬᏫᏳᎯ ᎤᏛᎦᏁ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎬᎢ; ᏚᏃᏣᎶᏤᏰᏃ ᎾᏍᎩ ᏚᏙᎥᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎ ᎡᎶᏛ, ᏣᏂ ᏗᏓᏬᏍᎩ ᏓᎴᎯᏌ ᎤᏲᎱᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏍᏆᏂᎪᏗ ᏥᏕᎤᎸᏫᏍᏓᏁᎭ.\n“Ꮎ,” ᎤᏛᏁ.\nᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ, ᎢᏓᎵᏅᏟ, ᏗᏣᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᎡᏣᎵᏍᎦᏍᏙᏛᎢ, ᎠᎴ ᎢᏣᎵᏍᎦᏍᏙᏛ ᎤᏣᏔᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᎾᏆᎵᏍᏓᏁᎸᎩ ᎦᎢᏒᎢ, ᏕᎹᏍᎦ ᎾᎥ ᏩᏗᎷᏨ, 'ᎢᎦ ᎠᏰᎵ ᎢᏴᏛ, ᎤᏰᎶᎢᏍᏔᏅᎩ ᎤᏣᏘ ᏚᎸᏌᏓᏛᎩ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᏓᏆᏚᏫᏍᏔᏅᎩ.\n“Ꭵ, ᎠᏎᏃ ᎭᎦᏓ ᎡᏝᏪᎯ ᎯᎪ ᎢᎦ.\nᎠᏎᏃ ᎠᏓᏅᏬᎯᏍᏗᏍᎩ ᎦᎷᏨᎭ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏅᏓᏥᏅᏍᏗ ᏥᎩ ᏂᎯ ᎢᏥᎷᏤᏗᏱ, ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎠᏓᏅᏙ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏅᏛᏓᎴᎲᏍᎩ, ᎾᏍᎩ ᏛᎩᏃᎮᎵ ᎬᏂᎨᏒ ᏅᏛᏋᏁᎵ.\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎤᎬᏩᎴ ᎦᎶᏁᏛ ᎤᎾᏚᏓᎴᏍᏙᏗᏱ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏧᏏ ᎤᏟ ᎢᎦᎢ ᎤᎾᏚ-ᎸᎲᎩ ᎤᏂᎯᏍᏗᏱ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎥᏝ ᎤᎾᏙᏓᏆᏍᎬᏉ ᎤᏩᏒ ᎤᏲᏍᏔᏅᎢ, ᎾᏍᏉᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᏙᏓ ᎤᏛᏅᎢ, ᎢᏧᎳᎭ ᎤᏁᎳᏅᎯ ᎾᏓᏛᏁᎲᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏂᏚᏎᎸᎩ; ᏞᏍᏗ ᏱᏥᎪᏁᎶᏍᎨᏍᏗ.\nᎨᏍᏗ ᏱᏄᎵᏍᏔᎾ ᏄᏪᎵᏒ ᏤᎩᏏᏂ.\nᎡᏣᎫᏴᏏ ᎾᏍᎩᏯ ᎢᏣᎫᏴᎡᎸᎢ, ᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎡᏣᎫᏴᏏ ᎾᏍᎩᏯ ᏚᎸᏫᏍᏓᏁᎸᎢ; ᎤᎵᏍᏈᏗ ᎤᎧᎵᎸᎯ ᎾᏍᎩ ᏔᎵ ᎢᏳᏩᎫᏗ ᎡᏥᎧᎵᎢᏏ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎩᎶ ᎠᏫᏉ ᏱᏓᏢᏆᏍᏙᏗᏍᎨᏍᏗ; ᏂᎦᏗᏳᏰᏃ ᏧᏓᎴᏅᏛ ᎢᏣᏤᎵᎦ;\nᏯᏍᎦᎳ ᎤᏪᏅᏍᏗ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ.” \nᏴᏧᏓᏍᎪᏃ ᎤᏩᏙᎯᏴᏓ?\nᎿᏉᏃ ᎡᎶᏛ ᎤᏕᎵᏛ ᏫᏚᏯᏅᎲ ᎾᏍᎩ ᎠᏂᎦᏔᎿᎢ, ᎣᏍᏛ ᏚᏛᏘᏌᏁ ᎢᏳᏉ ᎾᏍᎩ ᏃᏈᏏ ᎤᎾᏄᎪᏨᎢ.\nᏩᏍᏛ ᎤᏂᎯᏐᏗ ᎠᏂᏴᏫᏯ.\nᎤᏁᎳᏅᎯ ᏥᏯᎵᎡᎵᏤᎭ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎢᏳᏩᏂᏌᏛ. ᎾᏍᎩᏃ ᎠᏆᏓᏅᏖᏗᏱ ᎬᏗᎭ, ᎠᏴᏉ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏕᏥᎦᎾᏩᏕᎦ, ᎠᎩᏇᏓᎸᏍᎩᏂ ᎨᏒ ᎬᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᎦᏂ ᎤᏤᎵ ᏕᏥᎦᎿᏩᏕᎦ.\n“ᏙᏳ ᏦᏚᎯ ᎨᎵᎠ,” ᎤᏛᏁ ᏫᎵᎻ.\nᏰᎵ ᎣᏍᏓ ᏥᏰᎸᎥ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏚᎵᏍᎨ Davy Crockett ᏔᎵᏁ ᏥᏯᎴᏁᏗ, ᎠᎴ ᎣᎩᎾᎵᎪᏗ ᎠᎴ ᎣᎩᎾᎵ ᎢᏳᎵᏍᏙᏗ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙᏃ ᏗᏃᏪᎵᏍᎩ, ᎢᎳᏯ ᎢᎬᏱ ᏓᎦᎷᏥ, ᏣᎾᏗᏍᎪᎢ?\nᎠᏴ ᎾᏍᎩ Ꮎ ᎦᏚ ᎬᏂᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ. ᎢᏳᏃ ᎩᎶ ᎠᎩᏍᎨᏍᏗ ᎾᏍᎩ ᎯᎠ ᎦᏚ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏁᏍᏗ. ᎠᎴ ᎾᏍᎩ Ꮎ ᎦᏚ ᏨᏓᏥᏁᎵ ᎾᏍᎩ ᎠᏴ ᎠᎩᏫᏯ, ᎾᏍᎩ ᏥᏙᏛᎩᏲᏏ ᎡᎶᎯ ᎤᏛᏂᏗᏍᏙᏗ.\nᏕᎦᎫᏍᏓᎥᏃ ᎠᏐᏴ ᎦᏚᎲᎢ ᏕᎪᏑᎢᏍᏛᎩ ᏄᏓᎴᏒ ᏗᎦᎸᏉᏗ ᏅᏯ; ᎢᎬᏱᏱ ᎦᎫᏍᏓᎥ ᏣᏍᏆ ᎨᏒᎩ, ᏔᎵᏁᏃ ᏌᏆᏯ, ᏦᎢᏁᏃ ᎦᎵᏏᏙᏂ, ᏅᎩᏁᏃ ᎡᎻᎳ,\nᏃᏆᎴ ᎠᏂᏌᏚᏏ ᎢᎬᏩᎷᏤᎴᎢ, ᎾᏍᎩ ᎠᏲᎱᏒ ᎥᏝ ᏗᎴᎯᏐᏗ ᏱᎩ ᎠᎾᏗᏍᎩ; ᎠᎴ ᎢᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᎬᏂᏳᏉᏰᏃ ᎢᏨᏲᎯᏏ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏣᏘ ᎠᎵᎮᎵᏍᏗ, ᎾᏂᎥ ᏴᏫ ᎤᎾᏛᎪᏗ.\nᏃᏊᏃ ᎤᎴᏅᎮ ᏚᏃᏴᎬ ᏗᎧᏁᎢᏍᏗ ᏕᎪᏪᎵᏍᎬ ᎠᏴ ᎢᎩᏬᏂᎯᏍᏗ ᏣᎳᎩ.\nᎢᏣᎵᏏᎾᎯᏍᏗ ᎢᏤᏙᎮᏍᏗ ᎠᏂᎦᏔᎲ ᎾᏍᎩ Ꮎ ᎠᏁᎸ ᏂᎨᏒᎾ, ᎢᏧᏓᎴᏍᎨᏍᏗ ᎪᎯ ᎨᏒ ᎠᎵᏱᎵᏒᎢ.\nᏙᎢᏳᏍᏗ ᏓᏗᏩᏛᎯ.\nᎠᎬᏱ ᎪᎨ ᎤᎾᏣᎩᏎ ᏧᏪᏥ ᏌᏌ.\nᎪᎯᏱᏃ ᎢᏴᏛ ᎬᏩᎷᏤᎴ ᎾᎥ ᎠᏂᏙᎾᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴ ᏈᏓ; ᎤᏙᎯᏳᎯ ᎾᏍᏉ ᏂᎯ ᎢᏤᏙᎸᎯ, ᎯᏬᏂᏍᎬᏰᏃ ᎬᏂᎨᏒ ᏂᏨᏁᎭ.\nᏔᎵᏁᏃ ᎨᏒᎢ, ᎾᏍᎩᏯᏉ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ, ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᎾᏍᎩᏯ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ. ᎥᏝ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏛᏍᏗ. ᏯᎭ ᎤᏟ ᎢᎦᎸᏉᏗ ᎡᏍᎦᏉ ᎾᏍᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎢᎦᏚᏓᎴᏍᏔᏅᎯ ᏥᎩ, ᏅᏩᏙᎯᏯᏛ ᏂᎬᏅ ᎤᏁᎳᎥᎯ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ;\nᏓᏆᎴᎳ ᏭᎩᎸᏁᎢ ᎤᏪᏅᏎ ᏧᎷᏫᏍᏔᏁᏗ ᎦᏂᎦᏔ ᏗᎦᏚᎲᎢ.\nᎾᏍᎩᏃ Ꮎ ᎦᎶᏁᏛ ᏧᏤᎵᎦ ᏥᎩ ᏓᏓᎿᏩᏍᏛ ᎤᎾᏛᏅ ᎤᏇᏓᎵ ᎨᏒ ᎬᏩᏠᏯᏍᏗ ᎤᏚᎸᎲᏗ ᎨᏒ ᎠᎴ ᎤᎬᎥᎯᏍᏗ ᎨᏒᎢ.\n“ᏣᏓᏬᏍᏗ ᎤᏍᏆᎸᎭ!” ᎤᏛᏁ ᎰᎻ ᎤᎵᎮᎵᏍᏗ.\nᎤᏂᏁᎫᏥᏛ, ᎠᏂᏍᎦᏯ ᏗᎾᏂᏏᎲᏍᎩ, ᏴᏫ ᏗᏂᏃᏍᎩᏍᎩ, ᎠᏂᏰᎪᎩ, ᎦᏰᏙᎩ ᎠᎾᏎᎵᏛᏍᎩ, ᎠᎴ ᎾᏍᏉ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏍᎩ ᏗᎦᏘᎴᎩ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒᎢ;\nᎤᏛᎦᎾ ᎤᏁᎷᎬ ᏃᎴ ᏓᎾᏏᏛᏂᎲ ᏔᎵᏁᎢ, ᎩᎳᏈᏴ ᎤᎸᏖᎴᎢ.\n”ᏍᎩ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ.\nᏥᎪᏩᏘᏍᎬᏭ ᎤᎿ ᎢᎪᎯᏓ ᎪᎱᏍᏗ ᎾᏆᎵᏍᏓᏁᎸ ᎢᎦ ᎢᏯ.\nᎢᏤᎾᏍᎩᏂ, ᏫᏣᏕᎶᏆ ᎦᏛᎬ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏪᎭ; ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏆᏚᎵᎭ, ᎥᏝᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎨᏒᎢ. ᎥᏝᏰᏃ ᎾᏂᏍᎦᏅᎾ ᏱᏗᏥᏯᏅᎯᎸ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ.\nᎬᎸᏉᏔᏅ ᎡᎶᎯ; ᎠᎩᏍᏆᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏍᎩᏁᎸᎯ ᏥᎩ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ.\nᏂᎦᎥᏉ ᎢᎬᏆᏛᏁᏗ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩ ᏣᏆᎵᏂᎪᎯᏍᏗᎭ.\nᎣᏂᏃ ᏑᏟᎶᏛ ᎢᏴᏛ ᎢᎪᎯᏛ, ᏅᏩᏓᎴ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎨᏒ ᎤᏍᏓᏱᏕᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯ ᎯᎠ ᎾᏍᏉ ᏓᏁᏙᎲᎩ; ᎨᎵᎵᏰᏃ ᏕᎯ ᎢᎩ.\nᎠᎴ ᎾᏍᏉ ᏍᏗᏇᎾ ᏚᏓᏘᎾᎥ ᏕᎦᏥᏯᏬᎥᎩ; ᏅᏩᏓᎴᏃ ᎥᏝ ᏱᏆᏅᏔ ᏥᏯᏬᎥᎢ.\nᏗᎦᏘᎭᏁᎩ ᏃᎴ ᎦᏁᏗᏍᏗᏍᎩ, ᎠᏯ ᎠᏋᏌ ᎢᎬᏆᏛᏁᏗ.\nᏐᏁᎳ ᎢᏳᏕᏘᏴᏓ ᏥᎨᏎ ᎦᏳᎪᎲ Galway Bay, Ꮳ ᏰᎵᏍᎨ ᎤᎪᏩᏛᏗ ᎯᎠ ᎢᏣ ᎠᏥᏂᏌᎲ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙ ᏙᏓᏓᏤᎳᏍᏔᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ? ᎦᏙᎨ ᏓᏟᎶᏍᏛ ᏙᏓᏓᏟᎶᏍᏔᏂ?\nᏥᎦᏔᎭ ᏁᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ; ᎬᏂᏳᏉ ᎢᎬᏱᏢ ᏂᎬᏴᏂᏏ ᎠᏍᏚᎢᏛ ᎦᎶᎯᏍᏗᏱ, ᎥᏝᏃ ᎩᎶ ᎬᏩᏍᏚᏗ ᏱᎩ; ᎠᏏᏰᏃ ᎤᏍᏗᏱᏛ ᏣᎵᏂᎬᎦ, ᎠᎴ ᏣᏍᏆᏂᎪᏔᏅ ᎧᏃᎮᏛ ᎠᏆᏤᎵᎦ, ᎠᎴ ᎥᏝ ᏱᏣᏓᏱᎸ ᏓᏆᏙᎥᎢ.\nᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᏧᏴᎴᎢ, ᎠᎴ ᎠᎦᏙᏗ ᎦᏚ ᏧᎨᎢ, ᏰᎵ ᎬᏩᎩᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏎᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ, ᎠᏥᎸᏍᎩᏂ-ᎠᏁᎶᎯ ᎤᏅᏒ?\nᏧᏩᏍᏉᎸ ᏧᏍᏗ ᎩᎦᎨ ᏅᏯ ᎢᏳᏍᏗ ᏚᏓᏁᎮ ᏧᏆᎶᎬ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏕᎾ ᏭᏗᎷᏥ ᎦᎵᏦᏛ ᏙᏱᏗᏢ, ᎢᎦᏠᏯᏍᏗᏍᎨᏍᏗ ᎦᏰᏥᏐᏢᏗᏍᎬᎢ;\nᎤᎦᏃᏩ ᎤᏅᏗ ᎤᏥᏍᏔᏁ, ᏲᎾ ᎤᏤᏍᏙ ᎤᏁᎴ.\nᎾᏍᏉᏍᎩᏂ ᎢᏥᏍᏗᏰᎬ ᎢᏥᏍᎪᎵ ᏂᎦ-ᏗᏳ ᏗᏎᎸᎯ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᏂᎯ ᎤᏟ ᎢᎦᎢ ᏗᏣᎬᏩᎶᏗ ᎡᏍᎦᏉ ᎤᏂᏣᏘ ᏥᏍᏆᏯ.\nᏫᏓᏥᏅᏂ ᏗᏥᎶᏍᏔᏅ ᏄᏍᏛ ᎠᏰᎵ ᎦᎸᎳᏗᏣ ᏥᏥᏃᎮᎭ ᏓᏎᎯᎲ ᏥᏳᎪᏗ ᏄᏓᎴ ᏓᏎᎯ ᎠᎬᏱ ᏗᏥᎶᏓ ᏦᎩᎾᎩᏛ.\nᏚᎾᏌᏅᏃ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎬᏂᎨᏒ ᏚᎾᏄᎪᏫᏎᎢ, ᏓᏓᎵᏁᎯᏕᎨᎢ ᎾᏍᎩ [ᏓᏓᎿᏩᏍᏛ] ᎬᏗᏍᎬᎢ.\nᎿᏉᏃ ᎠᏂᏯᏫᏍᎩ ᎤᎬᏫᏳᎯ ᏧᏤᎵᎦ ᎤᎬᏫᏳᎯ ᎦᏁᎸ ᎤᏂᏴᏔᏁ ᏥᏌ, ᎠᎴ ᎾᎿ ᏕᎬᏩᏚᏫᏍᏔᏁ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎠᏂᏯᏫᏍᎩ.\nᎤᎵᏏᏂᏗ ᏧᎩᎶᏫᏎ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ.\nᎠᎴ ᏧᏓᎴᏅᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏎᏃ ᎾᏍᎩᏉ ᏌᏉ ᎤᎬᏫᏳᎯ.\nᎠᏎᏉᏍᎪ ᏂᎦᏪ ᎢᏥᏰᎸᎭ ᎯᎠ ᏥᏂᎦᏪ ᎪᏪᎵ; ᎠᏓᏅᏙ ᏥᎩᏯᎠ ᎤᏚᎵᏍᎬ ᎠᏛᏳᎨᏗ ᎨᏒ ᏩᎦᏘ.\nᎠᎴ ᎢᏥᎦᏔᎭ ᎾᏍᎩ ᎬᏂᎨᏒ ᎾᎥᏁᎸᎢᎩᎲᎡᏗᏱ ᎢᎩᏍᎦᏅᏨᎢ; ᎤᏩᏒᏍᎩᏂ ᎥᏝ ᏳᏪᎭ ᎠᏍᎦᏂ.\nᎧᏁᏌᎢ ᏩᏂᏌᏙᏯᏍᎬ ᏫᎵᎻ, ᎤᏓᏐᎴ ᏣᏄᏏ ᎦᎾᏤᎯ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ ᎠᏥᏍᏛ ᎠᎹ.\nᏞᏍᏗ ᎩᎶ ᏳᏐᏅᏤᎴᏏᏗ ᎯᏫᏂᏳ ᎨᏒᎢ; ᎦᎨᏣᏕᎶᏆᎡᏗᏍᎩᏂ ᎨᏎᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ, ᎯᏬᏂᏍᎬᎢ ᎠᎴ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᏣᏓᎨᏳᎡᎢ, ᎠᎴ ᏣᏓᏅᏖᏗᏱ, ᎠᎴ ᏦᎯᏳᏒᎢ, ᎠᎴ ᎦᏓᎭᏂᎨᏒᎾ ᎨᏒᎢ.\nᎪᎱᏍᏗᏰᏃ ᎤᎾᏓᏛᏁᏗᏱ ᏗᏂᎰᎵ ᎠᎴ ᏓᏂᏂᏓᏛ ᏛᏓᎴᎲᏍᎬᎩ; ᏓᏂᏂᏓᏛᏰᏃ ᎢᎾᏛ ᏥᏄᏍᏗ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᎴ ᏓᏂᏍᎫᏓᏛᎩ, ᎠᎴ ᎾᏍᎩ ᏓᏅᏗᏍᎬᎩ ᎪᎱᏍᏗ ᎠᎾᏓᏛᏁᎲᎩ.\nᏏᏓᏁᎸᎯ ᎬᏆᏕᎭᏯᏍᏛ ᎤᏂᏚᎩ ᏱᎨᏒᎾ ᎨᏥᏌᎭᏙᎭᏴ ᎠᏂᏴᏫ.\nᎾᏍᎩᏯ ᎦᎶᏁᏛ ᎤᏤᎵ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒ ᏣᎩᏯᎠ, ᎥᏝ ᎥᎩᏲᎯᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᎯᎠ ᎾᏍᎩ ᎦᏢᏈᏍᎬ ᎡᎧᏯ ᏂᎬᎾᏛᎢ.\nᏂᎦᏓᏍᎪᏃ ᎠᏂᏴᏫᏯᎭ?\nᏧᏪᏘ ᏗᎧᎾᏩᏛᏍᏗ ᏕᏥᏍᏔᏩᏕᎪ.\nᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ ᏂᏥᏍᎦᎢᎲᎾ ᎠᎦᏴᎵᎨ ᏕᏫ ᎢᏨᏃᎮᎯᏏ, ᎾᏍᎩ ᎤᏲᎱᏒᎢ ᎠᎴ ᎠᏥᏂᏌᏅᎢ, ᎤᏤᎵᏃ ᎠᏤᎵᏍᏛ ᎠᏏ ᎪᎯ ᏥᎩ ᎢᎦᏓᏑᏴᎢ.\nᎤᎾᏙᏓᏆᏍᎬᏃ ᎤᎶᏐᏅ, ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏥᏌ ᎤᏥ ᎠᎴ ᏌᎶᎻ ᎤᏂᏩᏒᎯ ᎨᏎ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎤᏂᎷᎯᏍᏗᏱ ᎤᏂᏰᎸᏎ ᎠᎴ ᎬᏩᎶᏁᏗᏱ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᎦᏛᏅᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎢᏳᏍᏗ ᎪᎱᏍᏗ ᎤᏟ ᎢᏲᏍᏛ, ᎾᏍᎩ ᏄᏂᎷᎶᏤᎲᎾ ᎢᎨᎬᏁᏗᏱ ᏂᎨᏒᎾ ᎠᏴ ᏂᎦᏠᏯᏍᏗᏍᎬᎾ.\nᎧᏃᎮᏛᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏛᏃᏍᎨᎢ ᎠᎴ ᎧᏁᏉᎨᎢ.\nᏥᎷᏏᎵᎻ! ᏥᎷᏏᎵᎻ! ᎠᎾᏙᎴᎰᏍᎩ ᏘᎯᎯ, ᎠᎴ ᎨᏣᎷᏤᏗᏱ ᎨᏥᏅᏒᎯ ᏅᏯ ᏛᏂᏍᏗᏍᎩ! ᏯᏃᎩᏳ ᎠᏆᏚᎵᏍᎬ ᎦᏥᏯᏟᏐᏗᏱ ᏗᏤᏥ, ᎾᏍᎩᏯ ᏣᏔᎦ ᏣᏕᎦᏟᏏᏍᎪ ᏧᏪᏥ ᎠᏂᏛ ᏗᎧᏃᎨᏂ ᎭᏫᏂᏗᏢ; ᎠᏎᏃ ᎥᏝ ᏱᏣᏚᎵᏍᎨᎢ.\nᎤᎾᎵᏥᏙᏁᎸᏃ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᎦᏚᎲᎢ, ᎠᎴ ᎠᏂᎪᏗᏳ ᏚᎾᎵᎪᏔᏅ, ᏔᎵᏁ ᎵᏍᏗ ᎠᎴ ᎢᎪᏂᏯ ᎠᎴ ᎥᏘᎣᎩ ᏫᎤᏂᎶᏎᎢ,\nᏰᎵᏗ ᎭᏫᏂ ᏥᏯᎠ ᏃᏉ -- ᏄᏓᏅᎯᏒ ᏫᏓᏥᎷᏥ.”\nᏃᎴ ᏍᏓᏯ ᏫᎾᎩᏪᏒ.\n“ᎨᏍᏗᎩ ᎪᎱᏍᏗ ᏱᎦᎵᏍᏗᏍᎨᎢ.”\n ᎧᎪᎩ?\nᎠᎩᏲᏍᏙᏗ ᏓᎩᏏᎳᏛᎢ. “ᎤᏣᏔ ᎣᏍᏓ,” ᎠᏉᏪᎶᏗ.\nᏚᏂᏅᎦᎴᎰᏅ.\nᏥᏲᎵᎩ.\nᎾᎯᏳ ᏥᏌ ᎠᎢᏒᎩ ᎠᏫᏒ ᎤᏣᎴᏍᏗ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎠᎪᏄ ᏚᏂᏲᏏᏍᎬᎩ, ᎠᎴ ᎤᎾᎴᏅᎲᎩ ᎤᏂᏍᎫᏕᏒᎩ ᎤᏣᎴᏍᏗ ᎠᎴ ᎤᏂᏍᏗᎬᎩ\nᎠᎧᏍᎨᏂ ᎢᏣ ᎤᏓᏏᏁᎢ.\nᏳᏩᏁᎦ ᎦᏬᏂᏍᎩ ᎨᏎ, ᏍᏔᏴ ᏄᏪᏒ, ᎦᎵᏥᏩ ᎤᎶᏐᏅ.\nᏓᏲᏥᏂᏧ, ᏝᎨ ᏴᏓᏲᏥᏂ? ᎠᏎᏃ ᎠᎦᏔᎮ ᎤᎾᏠᎾᏍᏛᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏍᎩᎪᎵᏰᎭ? ᎡᏍᎩᎥᏏ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᎾᏍᎩ ᎠᎩᎪᏩᏛᏗᏱ.\nᎾᏍᎩᏃ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎪᎯᏳᏗᏍᎩ ᎠᏰᎸᎭ, ᎥᏝ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏃᎯᏳᏓᏁᎯ ᏱᎩ, ᎠᏍᎩᏂ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ; ᎠᏙᎴᎰᎯᏍᏗ [ᎤᏃᎯᏳᏓᏁᎯ] ᏱᎩ, ᎠᏃᎯᏳᎲᏍᎩᏍᎩᏂ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᎯ ᎧᏂ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᏅᏩᏍᏙᎢ ᏴᏫ ᎠᏂᎦᏔᎲᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᏓᎦᏔᎭ ᏗᏥᎾᏫ; ᎾᏍᎩᏰᏃ ᎦᎸᏉᏗᏳ ᏧᏂᏰᎸᏐ ᏴᏫ, ᎤᏂᏆᏘᏍᏗᏳ ᎤᏁᎳᏅᎯ ᏓᎧᏂᏍᎬᎢ.\nᎦᏙᏃ ᎡᎵᏍᎨ ᏣᎵ, ᏂᎦᎥ ᎤᏲ ᎤᏂᎶᎯᏍᏗ ᎨᏒ ᎠᏂᏴᏫ.\nᎤᏟ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᏱᎨᏎ ᏅᏯ ᎠᏍᏙᏍᎩ ᏯᏥᏯᏝᏁᎢ, ᎠᎴ ᎠᎺᏉᎯ ᏱᏩᎦᏓᎢᏅᏎᎢ, ᎠᏃ ᎯᎠ ᎠᏏᏴᏫ ᏧᎾᏍᏗ ᎨᏒ ᏧᏬᏕᏍᏗᏱ.\nᎠᎬᏱ ᎪᎨ ᏍᏈᏍᏓ ᎨᏐ ᎠᏲᏟ ᎤᎩᏍᏗ, ᎤᏗᏔᏍᏗ, ᎤᏍᏆᏄᏨᏗ ᏃᎴ ᎤᎩᏍᏙᏍᏗ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎬᏩᏓᏡᏫᏍᏔᏅᎩ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎯᎳᎪ ᏅᏓᎪᎯᏥ ᏍᎩᏰᎵᎢᏍᏗᏍᎨᏍᏗ? ᎢᏳᏃ ᏂᎯ ᎦᎶᏁᏛ ᎨᏎᏍᏗ, ᏍᎩᏃᎲᏏ ᏚᏳᎪᏛᎢ.\nᎠᎴᏬ ᎣᏏᏳ ᎬᏩᏃᎮᏍᎩ ᏱᎩ ᎢᏴᏛ ᎤᏅᎫᏛᎢ, ᎤᏐᏅᏰᏃ ᎠᏥᏃᎮᏍᎩ ᏱᏅᎦᎵᏍᏓ, ᎠᎴ ᎠᏍᎩᎾ ᎤᏌᏛ ᏳᏪᎯ.\nᎨᏍᏗ ᎩᎶ ᏯᏇᏠᎰ.\nᎠᎴᏥᏌ ᎠᎦᏔᎲᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᎦᎥ ᎠᏰᎵ ᎪᏢᏒᎢ ᏔᎵ ᏥᎾᏓᏗᏍᎪ ᎤᏩᏒᏉ ᏣᏓᏡᏗᏍᎪ ᎠᏥᎪᏉ; ᎠᎴ ᏂᎦᎥ ᎦᏚᎲ ᎠᎴ ᎠᏓᏁᎸ ᏔᎵ ᏥᎾᏓᏗᏍᎪ ᎤᏩᏒᏉ ᏣᏓᏡᏗᏍᎪ ᎥᏝ ᏱᏂᎬᏩᏍᏙᏉ.\nᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᎾᏁᏢᏔᏅᏛ ᎨᏒ ᎵᏫ ᎠᏂᎳᏍᏓᎸ ᏅᏧᏓᎴᏅᎲᎾ ᏥᎩ, ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏚᏓᏂᎸᏤᎴ ᎡᏆᎭᎻ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒ ᏣᎦᎨᏅᏯ.\nᎠᎴ ᎦᏙᎯ ᎤᏣᏘ ᏓᎵᏖᎸᏂᏙᎮᏍᏗ, ᎠᎴ ᏓᎪᏄᎶᏏᏙᎮᏍᏗ; ᎠᎴ ᎥᏳᎩᎯᏳ ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ; ᎠᎴ ᎤᎾᏰᎯᏍᏗᏳ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎤᏰᎸᏛ ᎦᎾᏄᎪᎨᏍᏗ ᎦᎸᎶᎢ.\nᎤᏁᎳᏅᎯᏰᏃ ᎤᏤᎵᎦ ᎦᏚ ᎾᏍᎩ ᎯᎠ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᏥᎩ, ᎠᎴ ᎬᏂᏛ Ꭰ'ᏁᎯ ᏥᎩ ᎡᎶᎯ.\nᎢᏳᏍᎩᏂ ᏥᏌ ᎤᏲᎱᏒ ᏧᎴᏔᏅᎯ ᎤᏓᏅᏙ ᎢᏥᏯᎡᏍᏗ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏧᎴᏔᏅᎯ ᎾᏍᏉ ᏙᏓᎬᏃᎯᏍᏔᏂ ᏗᏲᎱᏍᎩ ᏗᏥᏰᎸᎢ ᏓᎬᏔᏂ ᎤᏓᏅᏙ ᎾᏍᎩ ᏥᏥᏯᎠ.\nᎠᏎᏃ ᎠᏫᏒᎯ ᏥᎨᏐᎢ, ᏗᏛᏍᎪᎢ, ᎠᎴ ᎤᏟ ᎡᏉᎯᏳ ᏂᎦᎵᏍᏗᏍᎪ ᎡᏍᎦᏉ ᏂᎦᎥ ᎤᏰᎿᎥᎢ, ᎠᎴ ᏤᏉᎯᏳ ᏓᏱᏢᏍᎪᎢ; ᎠᎴ ᏥᏍᏆ ᎤᏜᏅᏛ ᎠᏂᏃᎯᎵᏙᎯ ᏰᎵᏉ ᎤᏓᏩᏗᏍᏛ ᎭᏫᏂᏗᏢ ᎠᎾᎭᏗᏍᎪᎢ.\nᎤᎭᎨᏓ ᏚᏄᏌᏖᎢ ᎦᏂᎦᏔ ᎡᎹᏂᏓ.\nᎠᏎᏃ ᏧᏤᎵ ᏴᏫ ᎢᎬᏩᏂᏆ-ᏘᎴᎢ, ᎠᎴ ᏚᏂᏅᏎ ᎬᏩᎨᎮᎩ, ᎯᎠ ᏫᎾᏂᏪᏍᎨᎢ, ᎥᏝ ᏲᎦᏚᎵ ᎯᎠ ᎠᏍᎦᏯ ᎤᎬᏫᏳᎯ ᎣᎦᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ.\nᎢᏳ ᎠᎴ ᎡᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏂᏗᎦᎸᏉᏗᏍᎬᎾ ᏥᏕᎫᎪᏓᏁᎭ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᏂᎪᎯᎸ [ᎠᏂ] ᎢᏣᎴᏂᏙᎲᎢ ᎢᏤᏯᏔᎯ ᎨᏎᏍᏗ ᎢᏤᎲᎢ.\nᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᏗᏁᏍᎨᏍᎩ ᏱᎩ, ᎺᎵ ᎤᏪᏥ, ᏥᎻ, ᎠᎴ ᏦᏏ, ᎠᎴ ᏧᏓ, ᎠᎴ ᏌᏩᏂ ᎠᎾᎵᏅᏟ? ᎠᎴ ᏧᏙ ᏝᏍᎪ ᎠᏂ ᏱᎨᎦᏓᏑᏯ? ᎥᎬᏩᏐᏅᏤᎸᎩᏃ.\nᏰᎵᏉ ᎤᏍᏔᏩᏛᏍᏗ ᏚᏕᏲᏔᏅ ᏧᏆᎶᎦ ᏃᎴ ᏧᎵᏍᏆᎵᏓ ᏚᏩᏂᎦᏢ ᏃᎴ ᎩᎦ, ᎧᏂᎩᏓ ᏄᎵᏍᏔᏅ ᎤᎶᏒᎢ, ᎠᎬᏱᏣ ᎤᏪᏅᏎ ᎡᎵᏍᎬᏉ ᎢᏳᏛᏁᏘ ᏲᎾ ᏄᏍᏘᏓᏅ ᎢᎾᎨᎢ ᎤᏗᏍᎦᎶᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎾᏍᏉ, ᎾᏍᎩ, ᎾᏂᏍᎦᏅᎾ ᎢᏧᏩᏁᏗᏱ ᏴᏫ ᎤᏩᏒ ᎤᎩᎬ ᎬᏗᏍᎬᎢ, ᎦᎶᎯᏍᏗᏱ [ᏥᎷᏏᎵᎻ] ᏙᏱᏗᏢ ᎤᎩᎵᏲᏤᎢ.\nᎦᏲᏟ Ꮟ ᏕᎦᏓᎡ ᏧᏏᎳᏛᏅ ᎦᎶᎯᏍᏗᏳᎳ ᎦᎸᎳᏗᏣ.\nᎠᏍᏃ ᎯᎠ ᎤᏬᏑᎶᏨᎯ ᏣᏆᏕᏯᏙᏗᎭ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏚᏳᎪᏛ ᏅᏓᏥᏯᏛᏁᎵ, ᏂᎪᎯᎸᏰᏃ ᎦᎷᎬ ᏱᏓᎩᏯᏪᎢᏍᏓ.\n“ᎠᏆᏔᏃ ᏙᎤᏍᏗ ᎨᏒ ᎯᎠ,” ᎤᏛᏁ ᏩᎭᏯ.\nᎦᎶᏁᏛᏃ ᎤᏇᏓᎵ ᎨᏒ ᎢᎩᎩᎵᏲᏤᎸᎯ ᏥᎩ, ᏂᎯ ᎾᏍᏉ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏓᏅᏙ ᎢᏣᎵᏍᎦᏍᏙᏙᏗ ᏂᏨᎦ; ᎾᏍᎩᏰᏃ Ꮎ ᎤᏇᏓᎵ ᎨᏒ ᎤᎩᎵᏲᏨᎯ ᏥᎨᏐᎢ ᏚᏲᏐ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ,\nᎦᎪᎨᏃ ᎢᏳᏍᏗ ᏉᎳ, ᎠᎴ ᎠᏉᎳ ᎦᎪ? ᏝᏍᎪ ᎨᏥᏅᏏᏓᏍᏗᏉ ᏱᎩ, ᎾᏍᎩ ᎢᏳᏅᏂᏌᏛ ᏥᏦᎯᏳᏅᎩ, ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎠᏂᏏᏴᏫᎭ ᏚᏁᎸᎢ?\nᏕᏫᏰᏃ ᎤᏩᏒ ᎤᎬᏫᏳᎯ ᎢᎪᏎᎭ; ᎦᏙᏃ ᏗᎦᎴᏍᏙᏗᎭ ᎤᏪᏥ ᎢᎩ? ᎤᏂᏣᏘᏃ ᏴᏫ ᎤᎾᎵᎮᎵᏨᎯ ᎬᏩᏛᏓᏁᎴᎢ.\nᎦᏙᏃ ᎤᏍᏗ ᎾᏍᎩ ᎾᎿ ᎡᏍᎦ ᏕᏦᎭᏍᎦ ᏗᏐᎢ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᎯᎠ ᎤᏩᏒ, ᎾᏍᎩ ᎠᏴ ᎠᏋᏒ ᎦᎨᏛ ᏂᏨ ᏴᏁᎸᎾ ᎨᏒᎢ? ᎨᏍᎩᎥᏏᏉ ᎠᏗᎾ ᎯᎠ ᎾᏍᎩ ᎤᏣᏘᏂ ᏂᏨᏯᏛᏁᎸᎢ.\nᎤᏪᏅᏎᏃ ᏫᏚᎵᏃᎮᏔᏁ ᏄᏂᎬᏫᏳ-Ꮢ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ, ᎢᏳᏩᏁᏗᏱ.\nᎿᏉᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎤᏂᏁᏤ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᏰᎵᎦᏯ ᏂᏫ.\nᎾᏍᎩᏃ Ꮎ ᏥᏄᏍᏗ ᎤᏚᎩ ᏦᎬᎭ, ᎤᏣᏘ ᎠᎯᏗᏳ ᎦᎪᎵᏍᏗ ᎣᏥᏬᏂᎭ;\nᎣᏍᏛᏃ ᎧᏃᎮᏛ ᎢᎬᏱ ᏂᎬᎾᏛ ᏧᏁᏩᏗᏒ ᏴᏫ ᎠᎵᏥᏙᏗ ᎨᏎᏍᏗ.\nᎤᎵᏂᎩᏛᏃ ᏗᎧᎿᏩᏗᏙᎯ ᏅᏯ ᎤᎩᏒᎩ, ᎤᏔᏅ ᏗᏍᏙᏍᎩ ᏅᏯ ᎾᏍᎩᏯᎢ, ᎠᎺᏉᎯᏃ ᏭᏗᏅᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎾᏍᎩᏯ ᎬᏍᎦᎢᏍᏓᎩ ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲ ᏓᏓᎶᏂ ᎠᏥᏲᏍᏙᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎿᏉ ᎬᏩᏛᏗ ᏱᎨᏎᏍᏗ.\nᎠᏎᏃ ᏍᏉ ᏚᎸᏉᏕᎢ ᏧᏤᎵ ᏗᏂᏲᏟ ᏃᎴ ᏧᎵᏏ, ᎠᏎᏃ ᎨᏍᏗ ᏐᏉ ᎧᏅᏂᏍᎩ ᏳᎨᏛᏓ ᎤᏓᏅᏙᎩ.\nᎤᏲᏂᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᎪᎴᏏᏂ! ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᏇᏣᏱᏗ! ᎢᏳᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏱᏙᎦᎸᏫᏍᏓᏁᎴ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᏂᎯ ᎢᏤᎲ ᏕᎦᎸᏫᏍᏓᏁᎸᎢ, ᎪᎯᎩ ᏗᎬᏩᏂᏁᏟᏴᏛ ᏱᎨᏎ ᏚᎾᏓᏅ-ᏛᎢ, ᏧᏏᏕᎾ ᏱᏚᎾᏄᏩᎡ ᎠᎴ ᎪᏍᏚᎯ ᏳᎾᏅᏁᎢ.\nᎦᏚᏏ ᎢᏰᏛ ᎨᏴ ᏥᏙᎬ ᎾᎨ ᎢᏴ ᏕᎦᎦᏙᏍᏛ, ᏧᏂᏍᏗ ᏄᎾᏍᏛ ᎠᏂᏍᎦᏯ, ᎠᎾᏛᏁᎵᏍᎩ ᎠᏲᏓᏌᎲ ᎾᏍᎩᏯ, ᎬᏛᎪᏗ ᏱᎨᏒᎾ ᎠᏂᏬᏂᏍᎬ.\nᎨᏍᏗ ᎦᎵᏥᏙᎥᏍᎩᏱᎩ.\nᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎢᎬᏩᏛᏛᏁ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎥᏝ ᏱᏓᏂᎧᎿᏩᏕᎦ ᎡᏘ ᎤᎾᏕᏅᎯ ᎤᏂᏁᏨᎢ, ᎾᏍᎩ ᏂᏚᎾᏑᎴᎲᎾᏉ ᏣᎾᎵᏍᏓᏴᎲᏍᎦ?\nᎾᏍᎩᏰᏃ ᎦᏳᎳ ᏥᏂᏓᎦᏔᎰᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏂᏚᏑᏰᏐ ᎤᏪᏥ ᏄᏍᏛ ᎾᏍᎩᏯ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᎬᏱ ᎡᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏂᏣᏘ ᎠᎾᎵᏅᏟ ᎠᏁᎲᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏚᏳᎪᏗᏍᎪ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎤᏲᎨ ᏗᎦᎸᏫᏍᏓᏁᏗᏱ? ᎬᏅᎩᎶ ᎠᏍᏕᎸᎡᏗᏱ, ᎠᎯᏍᏗᏱᎨ? ᎡᎳᏪᏉᏃ ᎤᏅᏎᎢ.\nᎠᏴᏍᎩᏂ ᏂᏗᎥ ᏂᏗᎦᎵᎬᏚᎸᎾ ᎠᏓᎨᏗᏱ ᎾᏍᎩᏯ ᏕᏓᎧᏂᏍᎬ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎢᏓᏓᏁᏟᏴᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏂᏓᎵᏍᏗᎭ, ᎦᎸᏉᏗᏳ ᎨᏒ ᎢᎩᎲ ᎧᏁᏉᏤᎦ, ᎤᎬᏫᏳᎯ ᎤᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩᏯᎢ.\nᎨᏍᏗ ᎤᏩᏌ ᏱᎨᏎ.\nᎾᏍᎩ ᏄᏍᏗ ᎯᎠ ᎢᏨᏃᎮᎮᎸ ᎠᏴ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏯᏓᏅᏓᏗᏍᏙᏗᏱ. ᎡᎶᎯ ᎤᏕᏲᏙᏗ ᏓᏥᏩᏛᎯ; ᎠᏎᏃ ᎤᎦᎵᏍᏗᏉ ᎢᏣᏓᏅᏖᏍᏗ; ᎠᏴ ᏥᏎᎪᎬᏒ ᎡᎶᎯ.\n “ᎭᏕᏬ, ᎭᏕᏬ! ᎨᏍᏗ ᎬᏍᏆᎵᏍᎦᏍᏙᏗᏱᎩ.” ᎤᎦᏔᎲᏎ ᎡᏆ ᎠᏓᏯ.\nᎠᏎᏉᏍᎩᏂ ᎾᎾᏛᏁᎭ ᎬᏆᏓᏙᎵᏍᏓᏁᎭ, ᏥᏓᎾᏕᏲᎲᏍᎦ ᏓᎾᏕᏲᎲᏍᎬ ᏴᏫᏉ ᎤᏂᏁᏨᎯ.\nᏫᏍᏗᏯᏅᏛᏃ ᏱᎦᎷᎩ ᎯᎠ ᏱᏂᏣᏪᏏ, ᎯᏯᏜᏅᏓᏗᏏ ᎯᎠ; ᎿᏉᏃ ᏣᏕᎰᏒᎯ ᏯᎴᏅ ᎡᎳᏗ ᎨᏒ ᏗᏂᏢᏗᏱ ᏫᏱᎶᎯ.\n“ᏛᎵᎩ ᎭᏗ?” \nᏔᎵ ᏧᏒᎯᏓ ᎬᎩᏢᏅ ᎨᏒ .\n“ᎭᎾᏉ ᏙᎦᏘᏁᎬ ᎤᏃᎴ.\n ᎠᏎᏃ, ᎠᏙᎯ ᎤᎴᎿᎴᎢ.\nᏚᏕᏲᏁᏃ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᎯᎠ ᏱᏂᎬᏅ ᏱᎪᏪᎳ, ᎠᏆᏤᎵ ᎠᏓᏁᎸ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏓᏙᎵᏍᏙᏗᏱ ᏚᏙᎡᏍᏗ? ᏂᎪᏍᎩᏂ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎤᏍᏓᎦᎸ ᏂᏨᏁᎸ.\nᏥᏌ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏟ ᎦᎸᏉᏗ ᏁᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒ ᎯᎠ ᎾᏍᎩ; ᎭᏛᎬᎦ ᎢᏏᎵ; ᏱᎰᏩ ᎢᎦᏁᎳᏅᎯ ᏌᏉᎯᏳ ᏱᎰᏩ;\nᏃᎴᏍᏉ, ᏍᎩᏂᏲᏍᏓᏁ ᎣᏍᏓ ᎣᏍᏓᏟᏃᎮᏍᎬ.\nᎤᎾᏅᏗ ᏦᎳᏂ ᏗᎬᏂᎨ ᎤᏍᎪᎸ ᎨᏒ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏂᏦᎵᎬᎾ ᏱᎨᏎᏍᏗ, ᎢᏦᎵᎩᏍᎩᏂ ᎨᏎᏍᏗ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᏅᎬᏫᏳᎯ.\nᎣᏍᏓ ᎤᏰᎸᎮ ᎤᏬᏨᏗ ᎠᏛᏁᎵᏍᎬ, ᏂᎦᏗ ᎤᎾᎦᏎᏍᏛᎢ, ᎤᎾᏛᏁᎸᏗ ᎠᎬᏱᏣ.\nᎧᏂᎩᏛ ᏣᎳᎩᏱ ᎠᏰᎵ.\nᎩᎳᏈᏴ ᏭᏩᏅᏓᏕᎢ ᏄᎦᏌᎴᏍᎬ ᎠᎵᏍᏓᏴᏗ ᏧᏍᏆᏴᏍᏗ.\nᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅᎩ ᎤᏂᏣᏘ ᎾᏍᎩ ᎬᏩᏃᎮᏍᎬ ᎤᏕᎵᏛ ᏓᎾᎵᏃᎮᎵᏙᎲᎢ. ᎠᎴ ᎠᏂᏆᎵᏏ ᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏚᏂᏅᏒᎩ ᏗᎾᏓᏂᏱᏍᎩ ᎾᏍᎩ ᏭᏂᏂᏴᏗᏱ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎡᏣᏙ ᏙᏛᎠᎴᎯᏌᏂ.\nᎯᎠ ᏄᏪᏒᎩ; ᎠᏴ ᎾᏍᎩ Ꮎ ᎤᏪᎷᎩ ᎯᎠ ᏥᏂᎦᏪ ᎢᎾᎨᎢ; ᎢᏥᏥᏃᎯᏍᏓ ᏅᏃᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ; ᎾᏍᎩ ᏄᏪᏒ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ.\nᏌᏩᏂᏃ ᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᎦᎶᏁᏛ ᏂᎯ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ.\nᏓᎩᎳᎩᏒ ᎦᏂ ᎡᎳᏗ ᏂᏓᏋᏁᎸ ᏗᎦᏅᏆᎶᏍᏗ.\nᎢᏳᏰᏃ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎦᎫᎯᏍᏙᏗ ᏂᎨᏒᎾ ᏱᎨᏎᎢ, ᎥᏝ ᏅᏩᏓᎴ ᎧᏃᎮᏛ ᏗᏠᎯᏍᏙᏗᏱ ᏱᎬᏩᏂᏔᏲᎴᎢ.\nᎣᏏᏳᏰᏃ ᎠᎩᏰᎸᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎢᎦ ᎬᏗᎭ ᎭᏫᏂ ᎠᏇᎲ ᏴᏫ.\nᏗᏓᏁᎸ ᏥᎮᎾ, ᏫᎬᏃᎮᎸ ᎤᏍᏗᎩᎨ ᏏᏆ ᏫᏥᎷᏨ.\nᎾᏍᎩ ᎢᏥᎩᏍᏗᏱ ᎤᏂᎬᏫᏳᎯ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᎠᏂᏍᎦᏰᎬᏍᏓ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᎠᏂᏍᎦᏯ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᏐᏈᎵ ᎤᏂᏇᏓᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎾᏧᎾᎩᎸᏗ, ᏂᏗᎨᏥᎾᏝᎥᎾ ᎠᎴ ᏗᎨᏥᎾᏝᎢ, ᎾᏍᏉ ᏧᎾᏍᏗ ᎠᎴ ᏧᎾᏔᏅ.\nᏌᎳᏓ ᎤᎧᏨᏫᏍᏔᏁᎴ ᏲᎾ ᎤᏤᏍᏙ.\nᎢᎦᏃ ᎿᏉ ᎦᎶᏐᎲᏍᎨᎢ ᎬᏩᎷᏎᎴ ᏔᎳᏚ ᎢᏯᏂᏛ ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏤᎴᎢ, ᏘᏰᎵᎯᏍᏓ ᎤᏂᏣᏘ, ᎾᏍᎩ ᏩᏁᎾ ᏙᏗᎦᏚᎲ ᎠᎴ ᏙᏗᎦᎶᎨᏒ ᎠᏂ ᎬᏩᏚᏫᏛ Ꮻ-ᏚᏂᏒᏍᏗᏱ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏗ ᏭᏂᏩᏛᏗᏱ; ᎠᏂᏰᏃ ᎢᎾᎨᏉ ᎨᏒ ᎢᏕᏙᎭ.\nᎣᎦᎵᏥᏙᏗᏱ ᎣᏍᏛ ᎧᏃ-ᎮᏛ ᏗᏤᎲ ᎤᏗᏗᏢ, ᎥᏝᏃ ᎣᎦᏢᏈᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏅᏩᏓᏕ ᎩᎶ ᏩᏍᏛ ᎢᏴᏛ ᎠᎦᏟᎶᎡᎸᎢ, ᎦᏳᎳ ᎣᎦᏛᏅᎢᏍᏓᏁᎸᎯ ᎨᏒᎢ.\nᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎯᎠ ᏱᏂᏪᏏ ᏗᏍᏓᏓᏅᏟ; ᏗᎾᏓᏅᏟ ᎬᎸᏏ ᎤᏢᏓᎸᏛ ᏣᎦᏑᎲᎢ, ᏨᏒᏃ ᏂᎪᏩᏘᏍᎬᎾ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ? ᏣᏠᎾᏍᏗ! ᎢᎬᏱ ᎯᎸ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ, ᎿᏉᏃ ᎬᏂᎨᏒᎢᏳ ᏣᎪᏩᏛᏗᏱ ᎨᏎᏍᏗ ᎯᎸᎡᏗᏱ ᎤᏢᏓᎸᏛ ᏗᏍᏓᏓᏅᏟ ᎤᎦᏑᎲᎢ.\nᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎩᎶ ᎾᏍᎩ Ꮎ ᏫᎨᏥᏯᏅᏛ ᎨᏒ ᏴᏛᎾᎵᏍᏓᏴᏔᏂ ᏓᏆᏕᎳᏍᏔᏅᎢ.\nᎦᏲᏟ ᎦᎳᎨᏰ ᎤᏂᏥᏯ ᎠᏂᏯ ᏘᎵ ᏃᎴ ᏐᎯ ᎦᏙ, ᏧᏆᎶᎦ ᏱᏚᏓᎥᎾ ᏕᏧᎬ ᎭᏫᏂᏣ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏛᎩ ᎾᏍᎩ ᎤᏃᎯᏳᏅᎩ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎠᏂᎪᎢ ᎠᏂᎨᏴ, ᎠᎴ ᎠᏂᏍᎦᏯ ᎠᏂᎦᏲᎵᏉ ᏂᎨᏒᎾ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᎦᏳᏩᎾᏛᏁᏗ ᏱᎨᏎ.\nᎾᏍᎩᏃ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎣᎩᏱᎵᏙᎭ ᎠᏴ, ᏂᎯᏍᎩᏂ ᎬᏂᏛ.\nᏂᎯ ᏕᏧᎪᏗᏍᎪ ᎤᏇᏓᎵᏉ ᏧᏬᎪᏙᏗ ᎨᏒᎢ; ᎠᏴ ᎥᏝ ᎩᎶ ᏱᏗᏥᏳᎪᏓᏁᎰᎢ.\nᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎠᏂᏯᏫᏍᎩ ᏕᏥᎧᎭ, ᎢᏤᎾ ᎾᏍᏓᏴ ᎢᎨᏨᏁᏗ ᎨᎡ ᏫᏂᏨᎦ.\nᎤᏅᏗ ᎠᏉᎳᏔᏅ ᎤᏥᏍᏓᏁᎴ ᏫᎵᎻ ᎤᏤᎵ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ, ᎠᏤᎯ ᎧᏁᏍᎦ ᏭᏗᏅᏎ ᎤᏴᏍᏗ, ᏃᏗ ᎤᏁᏅᏎ ᏩᎦ ᏧᏂᏍᏚᏗ ᎰᎻ, ᎠᎳᏂ ᏃᎴ ᎠᏂᎴᏴᏍᎩ ᏚᎾᎦᏔᏅᏎᎢ ᎠᏂᎧᎵ ᏩᎦ ᏃᎴ ᎤᏂᎦᏖᏅᎸᏎ.\nᎣᏍᏓ ᏏᏆ ᏧᏬᏪᎳᏁ ᏚᏏᎳᏛ ᏌᎳᏓ, ᎤᏣᏓ ᎣᏍᏓ ᏗᎧᏃᏗ ᎠᏁᎸᏗᏍᎨᎢ ᏫᎵᎻ.\nᎢᎬᏱᏱ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᏢᏓᏥ ᎤᏃᏕᎾ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏔᎵᏁᏃ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᏩᎦ ᎠᎩᎾ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏦᎢᏁᏃ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᏴᏫ ᎤᎧᏛ ᎾᏍᎩᏯ ᎤᎧᏛᎩ, ᎤᎩᏁᏃ ᎾᏍᎩ ᎯᎠ ᎬᏃᏛ ᎦᏃᎯᎵᏙᎯ ᎠᏬᏎᎵ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᏍᎩᎾᎾ ᎢᏯᏆᏛᏁᏗ ᎨᏎᏍᏗ, ᎠᏂᏲᏍᎩ ᏓᎦᏥᏁᏤᎵ ᏂᎦᏓ ᎠᏂᏴᏫᏯ ᏧᏂᏅᎪᏫᏍᏘ, ᎢᏳᏍᏗᏉ ᎤᏤᎵᎪ ᎦᏙ ᎠᏁᎲ.\nᎤᏓᏅᏙᎩ ᎤᎵᏍᏗ ᏚᎷᏫᏍᏔᏁᎮ ᏃᎴ ᎤᎯᏐᏗ ᏃᎴ ᎤᎦᏴᎳᏨ ᎢᏳᏍᏗ ᏄᎵᏍᏗᏍᎨᎢ, ᎠᏎᏃ ᎭᎦᏔᎮᎢ ᎤᏍᏆᏂᎪᏔᏅᎢ ᏫᎵᎻ ᎬᏅᎢ, ᏃᎴ ᎤᏩᏙᎯᏴᏓ ᎤᏓᏅᏖᎢ.\nᎤᏍᏆᏙᎾ ᎧᏃᎮᏍᎬ ᎤᏃᎯᎸᏒ, ᎩᎳ ᎠᎬᏱ ᎠᏥᎸᏳᎵ ᎾᎥᏂ, ᏦᎳ ᏚᎦᏒᏍᏛ ᏃᎴ ᎤᏬᏗᎨ ᏫᏍᎩ, ᎨᏍᏗ ᏐᏉ ᎢᎧᏁᏨ ᏧᏃᎯᏎᎸ ᏱᎨᏎ ᏚᎵᏘᎾᎥ ᎤᏲᎰᏎᎸ ᏲᎾ, ᏍᎩᏴ ᎤᏒᎯ ᏥᎦᎷᎨ ᎤᏃᎯᎵᏙᎸ ᏁᏂᏏ ᏧᏃᎯᏎᎳ ᎡᏝᏪᎯ, ᎦᏂᏏ ᏓᏂᏅᎬ, ᏃᏥ ᏧᏩᏂᎦᏝᏅ ᎪᏒᏔᏅ, ᎤᏩᏄᎩᏣᏁ ᏃᎴ ᎤᎧᏛ ᎤᏍᎪᎵᏰᎡ ᏃᎴ ᏣᏁᎸᏔᏁᏗ ᎤᏬᏎᎴ, ᎯᎸᎢᏴ ᏍᎩᏉ ᎢᎦ ᎢᏓᏓᏔᎶᏍᎪ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ; ᏔᎴᎲᎦ, ᎮᎾ ᏗᎦᎳᏅᏛ ᎦᏥᏃᏍᏛ ᏥᏚᏙᎥ, ᏧᏓᏏᏃ ᎦᏁᎸ ᏫᏲᎦ ᏐᎳ ᏧᏙᎢᏛ ᏓᏌ ᎡᎯ. ᎬᏂᏳᏰᏃ ᎠᏓᏙᎵᏍᏗᎭ,\nᎠᏎᏃ ᎠᏂᏧᏏ ᏚᏂᏖᎸᏁ ᎨᏥᎸᏉᏗ ᎠᏂᎨᏴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᎾᎿ ᎦᏚᎲ ᏗᎨᎦᏁᎶᏗ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎾᏍᎩ ᏄᏅᏂᏌᏁ ᎦᎨᏥᏐᏢᏙᏗᏱ ᏉᎳ ᎠᎴ ᏆᏂᏆ, ᎠᎴ ᏚᏂᎨᎯᏙᎴ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ.\nᎠᏂᎦᏗᏓ ᎤᏂᏲ ᎨᏒ, ᎠᏎᎩ ᏥᏄᎾᏍᏗᏉ ᏴᏫ.\nᎠᏏᏉᏃ ᎦᏚᎲ ᏪᏙᎲᎩ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏍᏗᏰᏔᏅᎩ, ᏗᏍᎩᏰᏲᎲᏍᎩ, ᎭᎵᏍᏓᏴᎲᎦ, ᎠᎾᏗᏍᎬᎩ.\nᎢᏧᎳ ᏍᏉ ᏚᏂᏯᏪᎨ.\nᎤᎷᏣ ᏣᏄᏏ ᏔᎷᎩᏍᎩ ᎪᏱᏁ ᎢᎦ ᎤᎵᏍᏓᏴᏗ ᏫᎵᎻ ᎦᎶᏛ, ᎾᎨᎢᏴ ᏏᏆ ᎤᏴᏍᏗ ᎤᎴᏫᏍᏔᏁ.\nᎠᎦᏍᎩᏃ ᎾᏍᎩ ᏧᏫᏎᎢ, ᎾᏍᎩ ᎠᏍᎩᎾ; ᎤᎦᏛᎾᎢᏍᏗᏱᏃ ᎨᏒ ᎾᏍᎩ ᎠᎵᏍᏆᏛᎭ ᎡᎶᎯ; ᎠᏂᏍᎫᏕᏍᎩᏃ ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ.\nᎠᏆᎵᏏᏃ ᎾᏍᎩ ᏭᏯᏅᏛ ᎤᎪᎲ, ᎤᏁᏤ ᏧᏓᏅᏛ ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᎯᎠ ᎠᏍᎦᏯ ᎢᏳᏃ ᎠᏙᎴᎰᏍᎩ ᏱᎨᏎ ᏳᏙᎴᎰᏎ ᎾᏍᎩ ᎨᏒ ᎠᎴ ᎢᏳᏍᏗᏉ ᎨᏒ ᎯᎠ ᎠᎨᏴ ᏧᏃᏟᏍᏗᎭ, ᎠᏍᎦᎾᏰᏃ.\nᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎡᏍᎦ ᎢᏯᏥᎸᏉᏗ ᎨᏒ ᎣᏍᏛ ᎤᏁᏤᎰ ᎤᏟ ᎢᏯᏥᎸᏉᏗ.\nᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎾᏍᎩ ᎨᏥᏍᏕᎸᏛ ᎨᏒ ᎾᏍᎩ ᏚᎸᏌᏛ ᎠᏁᏙᎮᏍᏗ; ᎤᏂᎬᏫᏳᏃ ᎡᎶᎯ ᎠᏁᎯ ᎾᎿ ᎠᏂᏴᎯᎭ ᎨᏥᎸᏉᏛ ᎠᎴ ᏧᎾᏤᎵ ᏧᏓᎴᏅᏛ ᏗᎦᎸᏉᏗ.\nᎯᎠ ᎠᏗᎾ ᏂᏥᏪᎭ, ᏥᎪ ᏚᏃᏕᎸ ᏰᎵ ᏧᏂᏅᎢᏍᏗᏱ ᎠᏰᎸᏎᎢ? ᎬᏩᏟᏍᏗ; ᎾᏍᎩᏍᎩᏂ ᏚᏂᏅᏨ ᏄᏩᏂᏌᏅ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᏂᎷᏤᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎤᎾᏛᏳᎨᏗᏱ ᎢᏳᏅᏂᏐᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎤᎩᏨᏅ ᎢᏴᏛ ᏱᏫᏤᎵᎯᏍᎨᏍᏗ, ᎤᎩᏨᏅᏰᏃ ᎤᏩᏒ ᏧᏓᎴᏅᏛ ᏛᏕᎵᎯᏍᏔᏂ. ᏰᎵᏉ ᎤᏲ ᎢᎦ ᎤᏪᎲᎢ.\nᎯᎠᏍᎩᏂ ᏂᏥᏪᎭ, ᎾᏍᎩ Ꮎ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏥᎸ ᎨᎳᏍᏙᏗ ᏣᎾᎵᏍᎪᎸᏗᎪᎢ, ᎠᏂᏍᎩᎾ ᏓᎾᎵᏍᎪᎸᏔᏁᎰᎢ, ᎥᏝᏃ ᎤᏁᎳᏅᎯ; ᎥᏝᏃ ᏯᏆᏚᎵᎭ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵ ᎨᏒ ᎢᏤᎳᏗᏍᏙᏗᏱ.\nᎠᎴ ᎦᎪ ᎢᏳᏍᏗ ᎤᎬᏫᏳᎯ, ᏓᎿᏩ ᏱᏅᏛᏅᏁᎵ ᏅᏩᏓᎴ ᎤᎬᏫᏳᎯ, ᎥᏝ ᎢᎬᏱ ᏱᎦᎲᏍᎪ ᎠᎴ ᏯᏓᏅᏖᏍᎪ ᏰᎵᏉ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᏓᏘᏁᎲ ᏗᎬᏩᎾᏟᏴᏗ ᎨᏒ ᏧᎦᏘᎴᎩ ᏔᎳᏍᎪᎯ ᎢᏯᎦᏴᎵ ᏓᏘᏁᎲᎢ.\nᎡᎳᏆᏗ ᎤᏄᎩᏣᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎿᏉᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏓᏘᏂᏙᎯ ᎠᎴ ᎾᏍᎩ ᎾᎢᏧᎳᎭ ᏥᏌ ᎬᏩᏯᏫᏍᎩ, ᎤᎾᏙᎴᎰᏒ ᎦᏙᎯ ᎠᎵᏖᎸᎲᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸᎢ, ᎤᏣᏖ ᎤᏂᏍᎦᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎ ᎯᎠ.\nᎾᏍᎩ ᎤᏂᏣᏘ ᏁᏍᏛ ᏓᎾᏓᏅᏖᏍᎬ ᏧᏂᎾᏫᏱ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ: ᎥᎥ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎾᏍᏉ ᏨᏒ ᏣᏓᏅᏙ ᏓᏣᏘᎵ.\nᎦᏁᏥ ᎢᏴ ᎢᎦᏘ ᏚᏌᏁ ᏅᏯ, ᏩᏯ ᏃᎴ ᏲᎾ ᎤᎾᏕᏯᏙᏗ ᏱᎨᏒᎾ ᎦᏂᏌᎲ. ᎠᏂᎶᏏᏙᎢᏃ ᎤᏂᏐᏗᏉ ᏅᏯ ᎦᏚᎢ ᎤᏪᎵᏎ.\nᏅᎩᏁᏃ ᎨᏒ ᏗᎧᎿᎧᏩᏗᏙᎯ ᏅᏙ ᎢᎦ-ᎡᎯ ᎧᎸ ᎤᏪᏐᏴᏅᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎠᏥᎸ ᎬᏗ ᏧᎴᏴᏙᏗᏱ ᏴᏫ.\nᎿᏉᏃ ᏉᎳ ᏚᏯᏅᎲᎩ ᎠᏂᏍᎦᏯ, ᎤᎩᏨᏛᏃ ᎢᏧᎳᎭ ᎤᎾᏓᏅᎦᎸᎲᎩ, ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏂᏴᎸᎩ, ᎧᏃᎲᏍᎬᎩ ᎤᎵᏍᏆᏛ ᎢᎪᎯᏛ ᎠᏓᏅᎦᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎬᎢ ᎠᏓᏁᏗ ᎨᏒ ᎠᏂᏏᏴᏫᎭ ᎤᎾᎵᏍᎪᎸᏙᏗ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎸᎯᏢ ᎦᏚᎲ ᎡᏙᎲᎢ, ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᏂᎬ ᎠᏓᏰᏍᎩ ᎤᏢᎩ ᎾᎿ ᎡᏙᎮᎢ; ᎾᏍᎩ ᏥᏌᎤᎪᎲ ᎤᏯᏍᏚᏎᎢ, ᎠᎴ ᎤᏔᏲᏎᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ ᏰᎵᏉ ᏱᏍᎩᏅᎦᎸ.\nᏭᏩᏅᏓᏕᎢ ᏄᏪᏎᎸ ᎡᏆ ᎠᏣᏗ ᎾᏍᎩᏃ...\nᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᎸᏉᏗ ᎢᏓᎵᏅᏟ, ᎢᏣᏠᏯᏍᏗᏍᎩ ᎦᎸᎳᏗ ᎤᎬᏩᎵ ᎥᏓᏘᏯᏅᏗ ᎨᏒᎢ, ᎡᏣᏓᏅᏛᎵ ᎦᎶᏁᏛ ᏥᏌ ᎠᏥᏅᏏᏛ ᎠᎴ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎾᏍᎩ ᏤᏓᏁᎶᏗ ᏥᎩ.\nᎠᏎᏃ ᏚᎪᎲ ᎤᏂᏣᏘ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ ᎠᏂᎷᎬ ᏓᏓᏬᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᎭᎴᎢ; Ꮵ! ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᎦᎪ ᎢᏤᏯᏔᏅ ᎡᏣᎵᎡᏗᏱ ᎤᏔᎳᏬᎯᏍᏗ ᏨᏣᎢ?\nᎠᏂᏍᎩᎾᏃ ᎬᏩᏔᏲᏎᎴᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎢᏳᏃ ᏍᎩᏂᏄᎪᏫᏒᎭ, ᎤᎾᏁᎳᎩ ᏍᎩᏁᎵᏎᎸᎭ ᏏᏆ ᏑᎾᏓᏡᎩ ᏫᎪᏍᏗᏴᏍᏗᏱ.\nᎤᏬᎵᏃ ᏣᎦᎦᏃᏗᏱ ᏣᏍᏆ ᏅᏯ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᎴ ᏌᏗᏂ ᏅᏯ; ᎤᏅᎪᏔᏛᎩᏃ ᎬᏩᏚᏫᏛ ᎦᏍᎩᎸᎢ, ᏗᎧᏃᏗᏱ ᎡᎻᎳ ᏅᏯ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᎠᏎᏃ ᎠᏏ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏄᎵᏍᏔᏅᎾ ᎨᏎᏍᏗ ᏙᏓᎨᏥᏂᏴᎯ ᎠᎴ ᎤᏲᏅᏓᎨᏨᏁᎵ, ᏕᎨᏥᏲ-ᏍᎨᏍᏗ ᏧᏂᎳᏫᎢ-ᏍᏗᏱ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ, ᎠᎴ ᏕᏣᏗᏃᎯᎮᏍᏗ ᎤᏂᎬᏫᏳᎯ ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏚᏃᎸ ᎢᎬᏱᏗᏢ ᎠᏴ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎾᏍᎩᏃ ᎠᏰᎵ ᏗᎴᏁᎯ ᏥᎨᏐ ᎥᏝ ᎠᏏᏴᏫᏉ ᎠᏰᎵ ᎠᎴᏁᎯ ᏱᎨᏐᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎠᏏᏴᏫᏉ.\nᏧᏂᏴᏍᏓᎩᏍᎩ ᏄᎾᏍᏛ ᎾᏆᏍᏗ.\nᎠᏎ ᎠᏯ ᎤᎬᏫᏳᎲ ᎤᏊᎪᏓᏁᎸ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏧᏂᏲᎱᏒᎯ ᏓᏂᏂᏏᏍᎨᏍᏗ ᏗᎬᏩᏂᏲᎱᎯᏎᎸᎯ; ᏂᎯᏍᎩᏂ ᎮᎾ ᏩᎵᏥᏙᎲᎦ ᏫᏃᎲᎵ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎡᏂᎾᏯ, ᎦᏙᏃ ᏎᏓᏂ ᏣᎾᏫ ᎢᏣᎧᎵᎡᎸ, ᎯᏯᏥᎪᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᏣᎬᏩᎳᏅᎯ.\nᏂᎦᎥ ᎪᎱᏍᏗ ᏓᎩᏲᎯᏎᎸ ᎡᏙᏓ, ᎠᎴ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ ᎤᏪᏥ ᎤᏙᏓᏉ ᎤᏩᏒ; ᎥᏝ ᎠᎴ ᎩᎶ ᏯᎦᏔᎭ ᎠᎦᏴᎵᎨᎢ ᎤᏪᏥ ᎤᏩᏒ, ᎩᎶᏃ ᎾᏍᎩ ᏥᎾᏄᎪᏫᏏ ᎡᎳ ᎤᏪᏥ.\nᎠᏥᎾ ᏧᎬ ᏗᏧᏓᎴᏁ \nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᎯᎾᏃ ᎦᎪ ᏍᎩᏳᏎᎭ? ᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎡᎵᏍᏗ ᎣᏍᏓ ᎠᏰᎸᏗ ᏗᏏᎳᏛᏗ.\nᎡᎳᏗ ᏑᏓᎵ ᎢᏯᎳᏏᏔᏅ ᎢᎬᏓ, ᎭᏫᏂᏨ ᏩᎾ ᎦᏙ, ᏍᎪᎯᏍᏆ ᏧᏕᏘᏴᏓ ᏕᎪᎰᏍᎬ ᏴᎩ ᏃᎴ ᏩᎾ ᎦᏙ ᏚᎪᏒ ᏴᎩ.\nᎤᎾᏕᏘᏱᏍᎬ ᏓᎦᎷᏥ, ᏃᏗ ᏓᎫᏔᏂ.\nᎤᎴᏫᏍᏔᏁ ᏌᎳᏓ.\nᎢᏧᎳᎭᏃ ᎤᏁᏙᎸᎯ ᏴᏫ ᎾᎯᏳ ᎠᏤᎵᏍᏛ ᏭᏯᏅᎲ ᎳᏏᎳ, ᎠᎴ ᎤᏲᎱᏒ ᏕᎤᎴᏔᏅ, ᎤᏂᏃᎮᎸᎩ.\n”ᏁᎳᎩ!” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎢᏳᏰᏃ ᎡᏆᎭᎻ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏚᏓᎴᏍᏔᏅᎯ ᏱᎩ, ᎤᎭ ᎤᏢᏈᏍᏙᏗ; ᎠᏎᏃ ᎥᏝ [ᏳᎭ,] ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎭᏢᏃ ᏧᏓᎴᏁ ᎯᎠ ᏥᏚᏙᎠ?\nᎠᎴ ᎠᏍᏓᏯ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎣᎦᏁᎳᏅᎯ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᏍᎩᎸ ᏧᏬᎳ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩ ᎬᏭᎯᏍᏗᏍᎩ ᏚᎾᎴᏅ, ᎥᏝ ᎪᎱᏍᏗ ᏳᏂᎾᏄᎪᏫᏎ ᎾᏍᎩ ᏯᏂᎾᏄᎪᏩ ᎠᏇᎵᏒ ᎾᏍᎩ ᎠᏄᎯᏍᏗᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎰᏍᏛ ᏈᎵᏏ, ᏂᎪᎯᎸ ᎠᎴ ᏂᎬᎾᏛ ᏂᎦᎥ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎣᏣᏓᏂᎸᎪᎢ.\nᎾᏍᎩᏴ ᎦᏳᎳ ᎣᎭᏂᏱ ᎨᏎ ᎩᎶ ᎯᏍᏕᎸᏗ.\nᎡᎶᏛᏃ ᎠᎴ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ ᎦᎬᏩᏐᏢᏔᏁᎢ, ᎠᎴ ᎬᏩᏕᎰᏔᏁᎢ, ᎠᎴ ᏗᎬᏩᎸᏎᏛ ᎠᏄᏬ ᎤᏂᏄᏬᎥ ᏆᎴᏗ ᏔᎵᏁ ᏭᏂᎧᏁᎴᎢ.\nᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᏒ ᏥᎩ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᏧᏭᎪᏛᏗ ᏧᏭᎪᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏰᎵ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎢᏤᎯ ᎡᏤᎵᏎᏗᏱ, ᎾᏍᎩ ᎾᏍᏉ ᎤᎬᏩᎵ ᏥᏥᎩᎵᏲᎦ.\nᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏥᎪ ᎾᏍᏉ ᏂᎯ ᎨᎵᎵ ᎮᎯ? ᏣᏲᎦ ᎠᎴ ᎭᎦᏌᏯᏍᏓ, ᏝᏰᏃ ᎨᎵᎵ ᎤᎾᏄᎪᎢᏍᏗ ᏱᎩ ᎠᏙᎴᎰᏍᎩ.\nᎠᎴ ᎩᎶ ᏠᎨᏏ ᏪᏙᎯ ᏞᏍᏗ ᏴᏗᎤᏨᏎᏍᏗ ᏧᏄᏬ ᏱᏚᏁᏐᎴᏍᏗ.\nᎠᏍᎡᏃ ᎤᏟ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ ᎡᏍᎦᏉ ᏂᎯ.\nᏃᏗ ᏩᎧᏲᏍᎪᎢ ᎤᏍᏓᎦᏴᎯᏓ ᏂᎦᎵᏍᏗᏍᎪ.\nᏦᎢᏁᏃ ᏫᏚᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎨᏥᎵᏁᏍᏗᏉ ᎿᏉ, ᎠᎴ ᎢᏣᏣᏪᏐᎸᏍᏓ; ᎿᏉ ᎦᎶᏐᎾ-ᎿᏉ ᎠᏍᏆᎸ ᎾᎯᏳ ᎨᏒᎢ; ᎬᏂᏳᏉ ᏴᏫ ᎤᏪᏥ ᎠᏂᏍᎦᎾ ᏕᎨᏥᏲᎯᏏ.\nᏣᏛᎦᏅᎯᏍᎩ Queensborough ᎠᏒᏨ?” ᎤᎵᏍᏛᏂᎴᎢ ᏫᎵᎻ.\nᎿᏉᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏞᏍᏗ ᏗᏣᎵᏌᎳᏁᎸ ᎯᎠ ᎠᏂᏍᎦᏯ, ᎤᎾᏁᎳᎩ ᏗᏤᎵᏏ, ᎢᏳᏰᏃ ᎯᎠ ᎠᎾᏓᏅᏖᏍᎬ ᎠᎴ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏴᏫᏉ ᏅᏓᏳᏓᎴᏅᎯ ᎢᎨᏎᏍᏗ, ᎤᏲᏥᏓᏍᏗᏉ;\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏒᏂᎦᎵᏍᏓ ᎯᎠ ᏂᏥᏪᏍᎪᎢ; ᎤᎸᎦᎵᏱᏌᏛ ᎨᏎᏍᏗ, ᎦᎸᎶᏰᏃ ᎩᎦᎨᎢᏳ ᎢᎩ.\nᏧᏓᏏ, ᎾᎥᏂ ᎯᏃᎯᎵᏎᏍᏗ ᎤᎾᏰᎯᏍᏗ ᏫᏓᏗᎶᏏ.”\nᎤᏁᎳᎩ ᏅᏇᏲᏅᎾ ᏱᎩ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏗ ᏥᎦᏔᎾᎥᎢ; ᏂᎦᎥᏉᏍᎩᏂ ᏃᎦᏍᏛ ᎬᏂᎨᏒ ᏃᎦᎵᏍᏔᏅ ᎾᏂᎥ ᎠᏂᎦᏔᎲ ᏂᎯ ᎢᏤᎲᎢ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ; ᏧᏗᏱ ᎦᏚᏱ ᎦᏚᎲᎢ; ᎯᎠᏰᏃ ᏄᏩᏅ ᎤᏬᏪᎳ ᎠᏙᎴᎰᏍᎩ;\nᏕᎭᏘᏃᎸ ᏃᏉ ᏱᏂᏲᎯᏍᏔ ᎢᏳᏍᏘᏉ ᎢᏂᏰᎵᏒ.\nᎦᎵᏦᏕᏃ ᏭᏴᎸ ᏚᏓᏅᎡᎸ ᏴᏫ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏛᏛᏁ ᏓᏟᎶᏍᏛ ᎤᎬᏩᎵ.\nᎤᎵᎮᎵᏤ ᎠᏎᏃ ᎤᎸᏔᎵᏕᎾ ᏄᎵᏍᏔᏁᎮ.\nᏧᏍᏆᏴᏍᏗ ᎦᏟᎮ.\nᎨᏍᏗ ᏗᎫᏩᎦᏙᏍᏙᏗ ᏱᎨᏎ ᏃᏉ.\nᎠᎩᏚᏚ ᎤᏛᏅ.\nᏂᎦᏓ ᎣᏏᏉᏧ?” \nᎾᏍᎩᏯᏃ ᎯᎠ ᏂᎬᏅ ᎦᏪᎳ, ᎢᎬᏱᏱ ᏴᏫ ᎠᏓᏫ ᎬᏃᏛ ᏄᎵᏍᏔᏁᎢ; ᎣᏂᏱᏃ ᎠᏓᏫ ᎠᏓᏅᏙ ᎬᏂᏛ ᏗᏁᎯ ᏄᎵᏍᏔᏁᎢ.\n”ᎠᎳᏂ, ᏫᏏᎳᏗᎥᏏ ᏗᎦᏃᏣᏝᏍᎩ ᏐᏉ ᎤᎩᏓᏟ, ᏫᏃᎯᏏ ᏄᎵᏍᏔᏅᎢ.\nᎾᏍᎩᏃ ᎠᏆᎵᏃᎮᏔᏅᎯ ᎦᏁᎲᎩ ᎠᏕᎸᏓᎶᏂᎨ ᎠᏢᏔᏅᎯ ᎠᏟᎶᏍᏗ, ᎦᏚᎲ ᎠᏟᎶᏍᏗ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᏗᏟᎶᏍᏗ, ᎠᎴ ᎠᏐᏴ ᎠᏟᎶᏍᏗ.\nᏌᏊᏃ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ.\nᏑᎾᎴ ᏄᎵᏍᏔᎾ ᎠᎦᏕ ᎤᏬᏚᏨ ᎨᏎ ᏌᎳᏓ ᏚᏏᎳᏛ.\nᎠᎴ ᎤᎴᏅᎮ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎪᎯ ᎢᎦ ᏥᎩ ᎠᎴ ᎾᏍᎩ ᎪᏪᎸ ᎠᏙᎯᏳᎲᎦ ᎢᏣᏛᎩᏍᎬᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏂᏦᎯᏳᏒᎾ ᎠᎴ ᎢᏣᎦᏔᎲᏛ ᎪᎯ ᏥᏤᎭ, ᎢᎳᎪ ᏂᎪᎯᎴᏍᏗ ᎢᏨᏰᎳᏗᏙᎮᏍᏗ? ᎢᎳᎪ ᏂᎪᎯᎴᏍᏗ ᎤᎾᏁᎳᎩ ᎢᏨᏰᎵᏎᎮᏍᏗ? ᏍᎩᏯᏘᏃᎯᏏ\nᎾᎿ ᏙᏥᏩᏛᎲᎩ ᎣᏣᏓᏅᏟ, ᎠᎴ ᎪᎩᏔᏲᏎᎸᎩ ᎦᎸᏉᎩ ᏧᏒᎯᏛ ᏓᏂᏁᎸ ᎣᎦᏅᏗᏱ. ᎿᏉᏃ ᎶᎻ ᏫᏚᏳᎪᏛ ᏬᎩᎶᏒᎩ.\nᏃᏊ ᎤᎦᏛᏓᏁᎸ ᎡᏙᏓ ᏥᎨᏒ ᎠᎴ ᎦᎶᏇ ᎤᏒᏕᎾ ᏭᏴᎲ ᎦᎵᏦᏕ.\nᎢᏳᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ; ᎿᏉ ᎥᏝ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎥᏝ ᎿᏉ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏱᎦᎩ. ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ, ᎿᏉ ᎥᏝ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ ᏱᎩ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎥᏝ ᎿᏉ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏱᎦᎩ.\nᎿᏉᏃ ᎤᏂᏃᎮᎴ ᎤᏅᏒ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎤᎾᏓᏡᎬ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ.\nᎾᏍᎩ ᏆᎳᏆ ᎤᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅ ᎾᎿ ᎦᏚᎲ ᎠᎴ ᎤᏓᎸᎢ ᎠᏥᏍᏛᏗᏍᏔᏁ ᏗᏓᏍᏚᏗᏱ ᎠᏥᏴᏔᏅᎯ ᎨᏎᎢ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏂᏁᎮ ᎤᏂᎯᏍᏙᏗ.\nᎢᎦ ᎢᏣᏘᏍᏗᏍᎬ ᏚᏂᎸᏌᏓᏕᎮᏍᏗ ᏴᏫ, ᎾᏍᎩᏃ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏂᎪᏩᏘᏍᎨᏍᏗ, ᎠᎴ ᎠᏂᎸᏉᏗᏍᎨᏍᏗ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ.\nᎤᏛᎦᏍᏔᏅ ᏓᏊᎪᏔᏅ ᎤᏗᏔᎲ ᏫᏍᎩ ᎤᎵᏏᏅᏓ.\nᏧᏓᏏᏃ ᎠᎴ ᏌᏱᎳ, ᎤᏣᏖ ᎢᎧᏁᏨᎯ ᏚᏂᏬᏁᏔᏁ ᎠᎾᏓᏅᏟ ᎠᎴ ᏚᎾᎵᏂᎪᎯᏍᏔᏁᎢ, ᎾᏍᏉᏰᏃ ᎤᏅᏒ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏎᎢ.\nᎣᏁᎢᏴ ᏑᎾᎴᎢ, ᎱᏂᎷᏤ ᎨᏥᎾᏌᎢ ᏦᎨᏏ ᎤᏁᏙᎸ--- ᎤᏂᏃᏕᎾ, ᎤᏂᏃᏕᎾ ᎠᏂᏓ, ᏌᏌ ᎠᏨᏯᎢ, ᏌᏌ ᎠᎩᏌ ᏃᎴ ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ.\nᎣᏍᏓᎦ ᎡᏓᏍᏗ ᎭᎾ ᏃᎴ ᎡᏝᏪᎯ.\nᎯᎾᏘᏃᎦ, ᎤᏛᏅ ᏲᎾ.\nᎾᎯᏳᏃ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᏂᏲᎮᏍᏗ ᏴᏫ, ᎠᎴ ᎥᏝ ᎤᏂᏩᏛᏗ ᏱᎨᏎᏍᏗ; ᎠᎴ ᎤᎾᏚᎵᏍᎨᏍᏗ ᏧᏂᏲᎱᎯᏍᏗᏱ, ᎠᏎᏃ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎾᎵᏘᎡᏗ ᎨᏎᏍᏗ.\nᎠᏴᏰᏃ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏩᏒᎢᏍᏗ ᏃᏣᎵᏍᏗᎭ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᏧᏂᏲᎱᎯᏍᏗ ᏥᎩ.\nᏣᎵ ᏃᎴ ᎠᏂᏧᏣ ᏗᏂᏙᎬ ᎾᎥᏂ ᏭᎴᏅ ᎤᏣᎴᏛ.\nᏐᏈᎵ ᏍᏖᏴᏓ ᎬᏘ ᏗᎧᏁᎸ ᏗᏂᏅᏍᎨᏂ ᎤᎾᎵᏍᏔᏴᏃᎾ, ᎤᎵᏏᎬ ᎢᏴ ᎤᏂᏍᎦᎢᏛ ᏓᎾᎳᏍᎨᏍᎬ ᏃᎴ ᏂᏛᏂᏪᏍᎬ.\nᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎤᏂᎷᏤ, ᏗᏓᎾᏏᏁᎩ ᎠᏂᎾᏏᏂᏎᎢ.\nᎯᏍᎩ ᎢᏳᏩᎬᏘ ᎤᏩᎭᏂᎸ ᎠᏓᏅᏙ.\nᏍᏓᏯ ᏚᏃᏴᎨ ᏧᏍᏆᏴᏍᏗ ᏕᎦᏅᏙᎬ ᎠᏓ ᎠᏍᎪᎩᏍᎬ.\nᏂᎯ ᎢᏨᏒ ᎢᏥᎦᏔᎯ ᎯᎠ ᏥᏂᏥᏪᏍᎬᎩ; ᎠᏴ ᎥᏝ ᎦᎶᏁᏛ ᏱᎩ, ᎥᎩᏅᏏᏛᏉᏍᎩᏂ ᎢᎬᏱ ᏥᏰᏅᎡᎯ.\nᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏕᏫ ᎢᎩᏙᏓ ᎤᏤᎵ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏱᎰᏩ ᏚᏙᏍᏛ ᏥᎦᎷᎯᏍᏗᎭ; ᎰᏌᎾ ᏩᏍᏛᎦᎸᎳᏗᏳ.\nᎠᎪᏍᏗ ᎨᏒ ᏍᎩ ᏄᏍᏛ ᎠᏯᏖᏂ.\nᎡᎵᏍᏗ ᎦᏲᏟ ᏥᏁᎢᏯ ᎠᏆᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ.”\nᎤᎯᏐᏗ ᎤᏓᏅᏘ, ᎤᏓᏏᏁᎢ ᏃᎴ ᎠᎦᏍᎬ ᎤᏛᎦᏍᏔᏁᎢ ᏫᎵᎻ.\nᎾᏍᎩᏃ ᏅᏓᎦᎵᏍᏔᏂ ᏂᎦᏗᏳ ᎢᏏᎵ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏌᏯᏂ ᏅᏓᏳᏓᎴᏅᎯ ᏓᎦᎷᏥ ᏗᎫᏓᎴᏍᎩ, ᎠᎴ ᎢᏴᏛ ᏅᏓᎬᏁᎵ ᎤᏁᎳᏅᎯ ᏄᏂᎸᏉᏛᎾ ᎨᏒ ᎢᎦᏈ ᎤᏪᎲᎢ.\nᏗᎦᏙᎵ ᏃᎴ ᏗᎦᎴᏂ ᎤᏩᏩᏙᎣᏎ ᎤᎵᏍᏓᏴᏗ.\nᎤᏙᏓᏆᏓ ᎭᏫᏂ ᎠᏯᎡᎢ ᏫᎵᎻ, ᎤᏣᏪᏐᎸᏍᏕ ᎧᏁᏍᎪ.\nᎾᏍᎩ ᎠᏴ ᎥᎩᏁᏤᎸᎯ ᎦᎵᏥᏙᎲᏍᎩ ᎠᎴ ᎥᎩᏅᏏᏛ ᎠᎴ ᏗᎦᏥᏰᏲᎲᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ.\nᎠᎴ ᏫᎾᏍᏛᎾ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ ᏤᎦᏈ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎠᏁᎲᎢ; ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎨᏒ ᎴᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ.\nᎠᏎᏃ ᏩᏥᏰᏍᏗᏍᎬ ᎧᏁᏌᎢ ᎤᎦᏨᏩᏍᏔᏁᎴ ᏌᎳᏓ.\nᎬᏩᏛᏛᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᎯᏬᏂᏍᎬ ᎠᎴ ᏕᎭᏕᏲᎲᏍᎬ ᏚᏳᎪᏛ ᎨᏎᎢ, ᎠᎴ ᏂᏘᎸᏉᏙᏛᎾ ᎨᏒ ᏄᎾᏍᏛ ᏴᏫ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎦᏅᏅ ᎤᏙᎯᏳᎯᏯ ᏕᎭᏕᏲᎲᏍᎬᎢ;\nᏫᏚᏯᎲᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏚᏁᎴ ᎾᏂᎥ ᎠᏂᏍᎩᎾ ᎬᏩᏃᎯᏳᏏᏱ, ᎠᎴ ᏚᏂᏢᎬ ᏧᎾᏓᏅᏬᏗᏱ.\nᎤᏍᏚᎩᏎ ᎤᏬᏱᏂᏓᏍᏗ ᎪᏱᏁ.\nᎤᏂᏣᏖᏃ ᏧᎾᏄᏬ ᏅᏃᎯ ᏚᏄᏰᏍᏛᏁᎢ; ᎢᎦᏛᏃ ᏕᏡᎬ ᏚᏅᏂᎦᎸᎮᎢ, ᎠᎴ ᏅᏃᎯ ᏚᏂᎳᎨᏯᏛᏁᎢ.\nᎠᎴ ᏓᏆᎧᎿᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ, ᎠᏰᎵ ᎦᏍᎩᎸᎢ ᎠᎴ ᎠᏰᎵ ᏄᎾᏛᏅ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ, ᎠᎴ ᎠᏰᎵ ᎠᏂᏅ ᏧᎾᏛᏐᏅᎯ, ᎥᎦᏙᎬᎩ ᎤᏃᏕᎾ ᎠᎩᎾ, ᎠᎸᎯ ᎢᏳᏍᏗ ᎨᏒᎩ ᏓᎧᏅᎩ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᎦᏛᎦ, ᎾᏍᎩ ᏂᎬᎾᏛ ᎡᎶᎯ ᏗᎦᏅᏒᎯ ᏥᎩ.\n“’ᎠᏤ ᎤᏔᎷᎩᏍᎩ ᎠᎵᏖᎸᎮᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ ᎤᏍᎦᏃᎵ.\nᎨᏍᏗ ᏳᏁᎸᏔᏅ ᏧᎦᎴᏅᏗ ᎭᏫᏯ ᏃᎴ ᎤᏯᏍᎦ, ᎢᏧᎳ ᏚᎩᏍᏙᎡ ᏚᎩᏎ.\nᎠᎴ ᎾᎿ ᎦᏅᎬᎩ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ, ᏦᎠᏍᎪᎯ ᏁᎳᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎬᏩᏢᏨᎯ ᏄᏗᏩᏍᎬᎾ ᎨᏒᎩ.\nᎨᏍᏗ ᏫᏥᎢᎦ ᏳᏂᏬᏂᏌ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ.\nᎠᎴ ᎤᎦᎵᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎪᎢ, ᎠᎴ ᎤᏟ ᎦᏲᎩᏰᎸᏗ ᎠᏰᎸ ᎣᎩᎪᏁᎶᎢᏍᏗᏱ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎡᎲ ᏬᎦᏁᎳᏗᏍᏗᏱ.\nᎠᏓᏅᏙᏃ ᎠᎴ ᎠᏥᏰᎯ ᎡᎮᎾ ᎠᎾᏗᎭ. ᎠᎴ ᎠᏛᎩᏍᎩ ᎡᎮᎾ ᎠᏗᏍᎨᏍᏗ. ᎠᎴ ᎩᎶ ᎤᏔᏕᎩᏍᎩ ᏫᎦᎷᎩ; ᎠᎴ ᎪᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎦᏁᎩ ᏍᎨᏍᏗ ᎠᎹ ᎬᏂᏛ ᎠᏓᏁᎯ ᏧᎬᏩᎶᏗ ᏂᎨᏒᎾ.\nᎠᏎᏃ ᏚᎾᏦᎭᏱᎸᏉ.\nᎠᏆᏛᎦᏅ ᏂᏓᏛᏁᎰᏅ ᎭᏂ, Florida ᏓᏕᏏ ᎤᏛᏅ Perry.\nᎾᏍᎩ ᏦᏥᎦᏔᎭ, ᎢᏓᎵᏅᏟ ᎤᏁᎳᏅᎯ ᎢᏥᎨᏳᎯ, ᎡᏣᏑᏰᏛ ᎨᏒᎢ.\nᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎤᏂᏁᏨ ᎯᎠ ᏂᏚᏂᏪᏎᎸᎩ; ᏥᎪ ᏂᎯ ᎾᏍᏉ ᎡᏥᎶᏄᎡᎸ?\nᏉᎳᏃ ᏚᎴᏅ, ᎤᏬᏰᏂᏃ ᎤᏖᎸᏅ, ᎯᎠ ᏄᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎢᏏᎵ ᏧᏪᏥ ᎠᎴ ᎤᏁᎳᏅᎯ ᎢᏥᎾᏰᏍᎩ, ᎢᏣᏛᏓᏍᏓ.\nᎯᎠᏃ ᏧᏆᎶᎦ ᎦᏙ ᏫᏚᎾᎪᏒ.\nᏂᏥᎥᏰᏃ ᏰᎵ ᎨᏥᏙᎴᎰᎯᏍᏗ ᏌᏉ ᎤᏪᏒᏛ; ᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏕᎶᏆᏍᏗᏱ, ᎠᎴ ᎾᏂᎥ ᎤᏂᎦᎵᏍᏓᏗᏍᏗᏱ.\nᏍᎩᏄᏍᏕ ᏄᏂᏪᏎ ᏩᏏᏓᏂ ᏃᎴ ᏤᎩᏏᏂ, ᏍᎩᎾᎾ ᎤᏩᏌ ᏱᏂᏣᏛᏁᎳ ᏓᏣᏓᏂᏱ.\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏚᏂᎩᏒ ᎠᏕᎸ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᏚᏳᎪᏛ ᏱᎦᎩ ᎠᏕᎸ-ᏗᏗᏱ ᏱᏗᏗᎲᏍᎦ, ᎩᎬᏰᏃ ᏧᎬᏩᎳᏅᎯ.\nᎥᏈᎪᎵᏱᏃ ᎠᎴ ᎠᏆᎶᏂᏯ ᎤᏁᏙᏅ, ᏕᏏᎶᏂᎦ ᏭᏂᎷᏨᎩ, ᎾᎿ ᎠᏂᏧᏏ ᏓᏂᎳᏫᎢᏍᏗᏱ ᎠᏓᏁᎸᎩ.\nᎦᏓᏁᏍᏙ ᏃᎴ ᎤᎦᎭᏛ ᏃᎴ ᎤᏕᏘᏴᏌᏗᏒ ᎠᎦᏍᎪ.\nᏂᎯᏰᏃ ᎢᏨᏬᏁᏗᎭ ᏗᏣᏓᎴᏅᏛ ᏴᏫ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎥᎩᏅᏏᏛ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎦᏥᏯᎵᏥᏙᏁᏗᏱ, ᏥᎸᏉᏗᎭ ᏄᏍᏛ ᎥᏆᏒᎦᎶᏛᎢ;\nᎾᏍᎩᏰᏃ ᎯᎠ ᎣᏏᏳ ᎠᎴ ᏧᏓᏂᎸᎢᏍᏗᏳ ᏓᎧᏅ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ,\n”ᏓᏥᎶᎣᏔᏂ ᎧᏅᏂᏍᎩ, ᎧᏁᏌᎢ ᏫᏓᎦᎸᏥᎵ,” ᎤᏛᏁ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᏦᎯᏳᏒᎾ ᎨᏒᎢ. ᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏱᏦᎯᏳᎭ ᎾᏍᏉ ᎠᏥᎸᏉ ᎤᎦᏔ ᎢᎩᏛ, ᎯᎠ ᏱᏂᏥᏪᏏ ᎯᎠ ᏦᏓᎸ, ᎭᏓᏅᎾ ᎢᏢ ᏫᎶᎯ, ᎠᎭ ᎤᏓᏅᏍᏗ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏱᎨᏥᏄᎸᎲᏍᎦ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏧᏣᎷᏤᎵ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᏓᏣᏓᏩᏗᏍᏙᏔᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏨᏓᏣᏕᏁᎵ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎠᎪᏎᎮᏍᏗ.\nᎾᏍᎩ ᏁᏥᎳᏫᏎᎲᎾ ᎠᎴ ᏂᏣᏠᎾᏍᏛᎾ ᎨᏎᏍᏗ, ᎤᏁᎳᏅᎯ ᏧᏪᏥ, ᎦᏰᏧᎢᏍᏙᏗ ᏂᎨᏒᎾ, ᎢᏣᏓᏑᏴ ᎤᎾᏓᏥᏃᏍᏆᏰᏛ ᎠᎴ ᎤᎾᎪᎸᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎾᏍᎩ ᎾᎿ ᎠᏁᎲ ᏕᏥᎸᏌᏓᏗᎭ ᎡᎶᎯ ᎢᎦ ᏗᏣᏘᏍᏓᏁᎯ ᎾᏍᎩᏯᎢ;\nᎯᎧᏔᎭ ᎨᏍᏗ ᏗᎧᏃᎮᏗ ᏱᏓᏂᏃᎮᏍᎪᎢ ᎧᏅᏂᏍᎩ.\nᏂᏗᎦᎵᏍᏗᏍᎪᎢ ᎣᎭᏁ ᎢᏴ ᎡᎯᏍᏗ ᏂᏛᏁᎰ.\nᎾᏂᎥᏉ ᎤᎾᏞᏒ ᎦᏅᏅᎢ, ᎢᏳᎾᏍᏗᎭᏉ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏂᎨᏒᎾ ᏄᎾᎵᏍᏔᏅ; ᎥᏝ ᎩᎶ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᏱᎩ, ᎥᏝ ᏌᏉ ᎤᏅ.\nᎤᏲ ᎤᏂᏰᎸᏒᎩ Ꮀ ᎤᎬᏫᏳᏒ ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᎤᏁᏨ ᎾᏍᎩ ᎤᎧᏛ ᎿᏉ ᎤᏂᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ. ᏥᏳᏃ ᏗᏔᎸᎢ ᏫᎬᏪᎧᏅᎩ.\nᎤᏩᏓᎴᏃ ᎤᎷᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᎾᏝᎢ, ᎬᏂᏳᏉ ᎠᏂ ᏣᏤᎵ ᏑᏓᎨᏒ, ᎠᎩᏍᏆᏂᎪᏛᎩ ᎠᎩᏣᏄᎸᎩ ᎠᏯᏠᎩᎯ;\nᎦᎪᎨ ᏅᏩᏓᎴᏂᏨᏁᎸ? ᎠᎴ ᎦᏙ ᏣᎭ ᎾᏍᎩ ᏁᏣᏁᎸᎾ ᎨᏒᎢ? ᎢᏳᏃ ᎡᏣᏁᎸᎯ ᏱᎩ, ᎦᏙᏃ ᎢᎭᏢᏈᏍᎦ ᏁᏣᏁᎸᎾᏉ ᏥᎨᏐ ᎾᏍᎩᏯᎢ?\nᎢᏳᏰᏃ ᏱᎦᏓᏙᎵᏍᏗ ᏱᎬᏗᎭ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᏆᏓᏅᏙ ᎠᏓᏙᎵᏍᏗᏍᎪᎢ; ᎠᏆᏓᏅᏛᏍᎩᏂ ᎥᏝ ᏱᎦᎾᏄᎪᏫᏍᎪ ᎣᏍᏛ ᎨᏒᎢ.\nᏥᏌᏃ ᎤᎪᎲᎩ ᎾᏍᎩ ᎠᏍᎦᏯ ᎦᏅᎬᎢ, ᎠᎴ ᎤᏙᎴᎰᏒ ᎨᏒᎢ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᏚᎵᏍᎪ ᎡᏣᏅᏬᏗᏱ?\nᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎿᏉ ᎣᏣᏙᎴᎰᎯ ᎠᏍᎩᎾ ᏣᏯᎥᎢ. ᎡᏆᎭᎻ ᎤᏲᎱᏒ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ, ᏂᎯᏃ ᎯᎠ ᏂᎯᏪᎭ; ᎢᏳᏃ ᎩᎶ ᎠᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᏥᏁᎬᎢ, ᎾᏍᎩ ᎥᏝ ᎢᎸᎯᏳ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᏙᎴᎰᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᎴ ᏚᎾᏓᏁᏣᏍᏚᎸᎩ ᏔᎷᎩᏍᎩ ᏗᎪᏢᏔᏅᎯ ᏗᏓᏁᏣᏍᏚᎶ ᎾᏍᎩᏯᎢ; ᏗᏂᏃᎨᏂᏃ ᏚᏃᏴᎬ ᎤᏂᏣᏘ ᏐᏈᎵ ᏓᏆᎴᎷ ᏥᏓᏂᎾᏏᏂᏐ ᏓᎿᏩ ᏣᎾᎢᏐ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᏂᎦᎥᏰᏃ ᎤᏇᏓᎵ ᎨᏒ ᎧᏃᏍᎦᏉ ᎾᏍᎩᏯᎢ, ᎠᎴ ᏂᎦᎥ ᎤᏓᎸᏉᏙᏗ ᎨᏒ ᏴᏫ, ᎧᏁᏍᎦ ᎤᏥᎸᏒ ᎾᏍᎩᏯᎢ. ᎧᏁᏍᎦ ᎧᏴᏍᎪᎢ, ᎠᎴ ᎤᏥᎸᏒᎢ ᎦᏙᎠᏍᎪᎢ, ᎧᏃᎮᏛᏍᎩᏂ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᏂᎪᎯᎸ ᎡᎭ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎦᏔᏅᎯᎠᏎ ᎤᏩᏥᏍᎦᎸ ᎢᏳᏍᏗ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏁᎢ; ᏚᎴᏅᏃ ᎠᎦᏬᎡᎢ.\nᏂᎦᏓᏗ ᎧᏂᎩᏓ ᏦᎳᏂ.\nᎤᎵᏍᎫᏪ ᏲᎾ ᎤᏤᏍᏙ.\nᏑᏕᏘᏴᏓ ᎣᏁ, ᏂᎦᏓ ᎤᎪᏐᏅ ᎦᏅᏙᏗ.\nᎨᏎᎻᏂᏃ ᏚᏙᎥ ᎤᏂᎷᏤᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᏂ ᎢᏥᏁᏍᏗ, ᏫᎦᏓᏙᎵᏍᏗᏍᎬ ᎢᎪᎯᏛ.\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᏓᏂᏙᎨ ᎤᎵᏂᎩᏛ ᎬᏭᎯᏍᏗᏍᎨᎢ.\nᎠᎴ ᎠᏂᎪᏗᏳ ᎠᎾᎵᏅᏟ ᎤᎬᏫᏳᎯ ᏧᎾᏁᎶᏗ ᎥᏆᎸᎥ ᎢᏳᏩᏂᏌᏛ ᏚᎾᎵᎪᏛ ᏚᎾᏓᏅᏛᎢ, ᎤᏟ ᎢᎦᎢ ᎾᏂᎾᏰᏍᎬᎾ ᏄᎾᎵᏍᏔᏅ ᎧᏃᎮᏛ ᎾᏂᏍᎦᎢᎲᎾ ᎤᏂᏃᎮᏗᏱ.\n”ᎤᏓᏙᎵᏍᏗ ᏍᎩᎾᏂ,” ᎤᏛᏁ ᏫᎵᎻ, ᏃᏗ ᎤᏙᏩᏗᏍᎬ ᎤᏓᏏᏁᎢ ᎩᎳᏈᏴ ᏭᏢᏁ.\nᎾᏍᎩᏯ ᏂᎪᎩᏪᏎᎸ ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏓᎴᏅᏛ ᎤᏅᏒ ᎤᏂᎪᎯᏙᎸᎯ, ᎠᎴ ᎧᏃᎮᏛ ᎤᎾᎵᏥᏙᏅᎯ ᎨᏒᎢ--\nᎡᎳᏗ ᏄᏛᏁᎴ ᏌᎳᏓ ᏃᎴ ᎤᏍᏗ ᏄᎵᏍᏔᏁᎢ ᎤᏗᏍᎦᏢ ᎠᏔᎴᎦᏒᎢ, ᎤᎪᏩᏛᏗ ᏱᎨᏒᎾ ᎡᎳᏆᏗ.\nᏍᏈᏍᏓ ᏴᏫ ᎤᎾᏕᏯᏍᏕᎢ. ᎤᎵᏏᏂᏗ ᎠᏰᎴᎮᎢ ᎡᎶᏗ ᎩᎶ ᎤᏦᎣᏍᏙᏗ ᏱᎨᏒᎾ.\nᎨᏍᏗ ᏣᏍᏆᏂᎪᎯᏍᏗ ᏱᎩ ᏗᎧᎾᏩᏛᏍᏗ.\n(ᎣᎦᎵᏍᏕᎸᏙᏗᏰᏃ ᎨᏒ ᏓᏅᏩ ᎣᏣᎢᏒ ᎥᏝ ᎤᏇᏓᎵ ᏧᏩᏙᏗ ᏱᎩ, ᏧᎵᏂᎩᏗᏳᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎢᏳᏩᏂᏌᏛ, ᏓᏐᏲᎥᏗᏍᎬ ᎤᎵᏂᎩᏛ ᏓᏐᏴᎢ.)\nᎠᎩᏁᎵᏍᎪ ᎤᎵᏲᏗ.”  \nᎾᏉᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏓᏍᏗ ᎤᎾᏙᎴᎰᏒ ᏄᎵᏍᏔᏅᎢ ᎤᏣᏘ ᎤᏲ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏂᎷᏤ ᎤᏂᏃᏁᎴ ᏧᏂᎾᏝᎢ ᏂᎦᏛ ᏄᎵᏍᏔᏂᏙᎸᎢ.\nᏝᏍᎪ ᏗᏩᎵ ᏗᎪᏢᏍᎩ ᏳᎭ ᎠᏓᏅᏖᏍᎬ ᎢᏳᏩᏁᎵᏓᏍᏗᏱ ᎦᏓᏆᎳ, ᎾᏍᎩᏉ ᎦᎾᏆᎸᏒ ᎠᎬᎭᎸᏛ ᏌᏉ ᎠᏖᎵᏙ ᎤᏬᏢᏗᏱ ᎦᎸᏉᏙᏗ, ᏅᏩᏓᎴᏃ ᎦᎸᏉᏗᏗ ᏂᎨᏒᎾ?\nᎿᏉᏃ ᎤᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏙᏓ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ.\n”ᏫᎵᎻ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏍᎩᏥᏍᎩ.\nᏉᎳᏃ ᎠᏏ ᎤᏬᎯᏨᎩ ᎤᏪᏙᎸᎩ; ᎿᏉᏃ ᏚᏲᎵᎸ ᎠᎾᏓᏅᏟ, ᏥᏳᎯ ᏭᏣᏅᎩ ᏏᎵᏱ ᏭᎶᏒᎩ; ᎠᎴ ᎾᏍᏉ ᏈᏏᎳ ᎠᎴ ᎡᏈᎳ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎤᎵᏍᏙᏰᎲᎯ ᎨᏒᎩ ᏒᏟᏯ ᎢᏴᏛ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏚᎢᏍᏓᏁᎸᎯ ᎨᏒᎩ.\nᎠᎴ ᎾᏍᎩ ᎠᏥᏁᎸᎩ ᎤᎾᏓᏅᏘ ᏓᎿᏩ ᎢᏳᏅᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏧᏎᎪᎩᏍᏗᏱ; ᎠᎴ ᎠᏥᏁᎸᎩ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏗᎬᏩᏁᎶᏙᏗᏱ ᎾᏂᎥ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ.\nᏍᎩᎾᎾ ᏄᎵᏍᏗᏍᎪ ᎯᎸᎢᏴ.\nᎠᎴ ᎨᏍᏗ ᎾᎥᏂ ᏱᎩ.\nᎤᎾᏕᎰᏔᏁᏅᏃ, ᎬᏩᏄᏪᏎ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏩᏒ ᏧᏄᏬ ᏕᎬᏩᏄᏬᎡᎢ, ᎠᎴ ᏫᎬᏩᏘᏅᏍᏔᏁ ᎬᏩᏛᏗᏱ.\n“Ꭾ-Ꭰ-Ꭰ!” ᎤᎾᏛᏁᎢ ᎤᏂᏃᏕᎾ.\nᏍᏈᏍᏔ.\nᎬᏂᏳᏉᏃ ᎾᏍᎦᎢᎲᎾ ᎦᏬᏂᎭ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏯᏃᏎᎭ. ᏥᏌ ᎤᏂᎬᏫᏳᎯ ᎤᏙᎯᏳᎯ ᎠᏂᎦᏔᎭ ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᎦᎶᏁᏛ ᎨᏒᎢ?\nᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎩᎶ ᏥᏥᎾᏌᏂ, ᎠᏏᎾᏍᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎬᏗ, ᎾᏍᎩᏯ ᏴᏫ ᏓᎾᏕᏲᎲᏍᎬᎢ, ᎾᏍᎩᏯ ᎡᎶᎯ ᏗᎴᏅᏙᏗ ᏓᏕᏲᎲᏍᎬᎢ, ᎥᏝᏃ ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᏓᏕᏲᎲᏍᎬᎢ;\nᏔᎵ ᎢᎦ ᏕᏣᏂᎬᎦ ᏗᏣᏏᎳᏛᏗ.”\nᎯᎠ ᎾᏥᏪᏎᎲᎩ ᏑᏓᎵᏁ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏤᎷᎩ ᎦᏁᎯ, ᏔᎸᏒ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏔᏅ ᎡᏉᏂ ᎤᏪᏴ ᎷᏇ Ꮧ ᏥᏕᎨᎦᎸᎥ.\nᏦᏌᏯᏃ ᏤᎪᎾᏯ ᎠᎴ ᎠᎾᏓᏅᏟ ᎬᏩᏕᏁᎴᎢ; ᎾᎯᏳ ᏓᏗᎶᏂ ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁᎢ;\n“Ꭵ, ᎤᏙᏳᎯ,” ᎤᏛᏁ\nᏥᎷᏏᎵᎻᏃ ᎤᏂᎷᏨ ᎦᎬᏩᎾᏓᏂᎸᏤ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᎴ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ; ᎤᏂᏃᎮᎴᏃ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏄᏛᏁᎸ ᎤᏂᏍᏕᎸᎯᏙᎸᎢ.\nᏑᎾᎴ ᏯᎩᏰᏨ ᎠᏓᎾᏅ ᎠᏲᏓᏒ ᏫᎦᏗᏔᏍᎬ ᎧᏫ, ᏳᎧᎭᏛᎾᏱᎩ ᎠᎴ ᏯᎦᏍᎬᎾᏱᎩ, ᏍᎪᏁ ᎨᏴ ᏫᏕᎦᎦᏂᏍᎬ ᏗᏦᎭᏴ, ᏕᎦᎦᎡᏍᏗᏍᎬ ᏑᎾᎴᎢ ᏓᏂᏐᏍᎬ ᎠᏂᏲᏍᎩ, ᎦᏚᏏ ᏗᏂᏯᎴᎩ ᎠᏂᏴᏫᏯ ᏓᏓᏁᎸ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏏᎵ ᏧᏪᏥ ᎢᏤᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎢᏣᏓᏅᏖᏍᎬ ᎢᏗᏳᏁᏗᏱ ᎯᎠ ᎠᏂᏍᎦᏯ.\nᎾᏍᎩᏴ ᎶᏩᏂ ᏄᏛᏁᎳ, ᏄᏓᎴ ᎠᏍᎦᏯ, ᏣᏥ ᎡᎵᏍᏗ, ᎢᏧᎳ ᏧᏬᏰᏂ ᎬᏘ ᎤᏩᎭᏂᎴ Philadelphia ᏓᏳᎶᏒ ᎠᏧᏣ ᎠᏴᏤᏂ ᏃᎴ ᎦᏅᏬᎢ ᎠᏰᎵ.\nᎠᎬᏱ ᎠᏆᎩᎸᏅ ᎠᎹᏱ ᎡᏙ ᏥᏳ - ᎤᏲ ᎢᏳᏍᏗ ᎦᏆᏘ ᎠᏰᎸᏍᏗ, ᎠᏍᏛᎪᏒ ᏃᎴ ᎠᏑᏫᏍᏗ ᎤᏂᎬᎬ, ᎨᏍᏗ ᎣᏍᏓ ᏂᎨᎵᏍᎬ ᏱᏄᏍᏕ, ᏩᎦᎸᎳᏗᏴ ᎠᏳᎢᏁᎩ ᏥᎦᏖᏃᎲ - ᏥᏍᎦᏰᎬᏍᏔ ᎤᏁᎵᏍᏗ ᎠᏆᏚᎵᏍᎬ.\nᏔᎵᏁᏃ ᏭᏴᎴ ᏗᎦᎳ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎾᎿᏃ ᎡᏙᎮ ᎠᏍᎦᏯ ᎤᏬᏰᏂ ᎤᏩᎢᏎᎸᎯ.\nᎠᎴ ᎾᏍᏉ ᎦᏳᎳ ᎦᎷᏯᏍᏗ ᎠᎭ ᏚᎿᏍᏕᏢ ᏕᏡᎬᎢ; ᎾᏍᎩᏃ ᏂᎦᏛ ᏕᏡᎬ ᎠᏃᏍᏛ ᎾᎾᏓᏛᏍᎬᎾ ᏗᎦᎴᏴᏍᏙᏗ ᎠᎴ ᎠᏥᎸᏱ ᏫᏓᏗᏅᏗ ᎨᏎᏍᏗ.\nᏣᎳᎩᏱ ᎠᏰᎵ ᎨᎵ ᎨᏎ ᎠᎵᏥᏙᎲᏍᎩ Ꮳ ᎠᎹᏰᎵ, ᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏎ ᎤᏪᏅᏍᏗ ᎨᏎ.\n“ᎤᏂᏍᏆᏂᎩᏗ ᎣᏣᏓᏤᎵ.\nᎾᏍᎩᏃ Ꮎ ᏅᏓᎨᏥᏅᏏᏛ ᎠᏂᏆᎵᏏᏱ ᎤᎾᎵᎪᎯ ᎨᏒᎩ.\n“ᎨᏍᏗ ᎬᏕᎶᎰᎯᏍᏗ ᏱᎩ ᎠᏲᏟᎨᎢ ᎤᏕᏅ ᏥᎨᏒ.\n“ᏃᏉ ᎦᏙ ᏓᎦᏛᏁᎵ?”\n“ᏕᎾᏓᎪᎲᏳᏛ ᎤᏛᏁ, ᏭᎶᏌ ᎦᎶᎯᏍᏗ.\nᏂᎦᏓ ᏚᏒᎭᏂᎶᎾ, ᎣᏍᏓ ᎤᏒᎯ ᏚᏬᏎᎴ, ᏭᎾᏏᏁ ᏧᏍᏆᏅᎾ ᎭᏫᏂᏨ, ᎤᏢᏁ.\nᎤᏂᏃᎮᎸᎩᏃ ᎨᏒ ᎤᏅᏒ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏂᎦᏕᏅᎾ ᏥᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎤᏲᏃ ᎠᏓᏅᏙ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏥᏌ ᏥᎦᏔᎭ, ᎠᎴ ᏉᎳ ᏥᎦᏔᎭ, ᏂᎯᏍᎩᏂ ᎦᎪ ᎢᏣᏍᏗ?\nᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏗᏳ ᏄᎵᏍᏔᏂᏙᎴ ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎢ ᎯᎠ ᏥᏄᏪᏎ ᏱᎰᏩ ᎠᏙᎴᎰᏍᎩ ᎠᎬᏗᏍᎬᎢ;\nᎾᏍᎩᏃ ᎤᎷᏨ ᎣᏤᏙᎲ, ᎠᎴ ᎤᏁᏒ ᏉᎳ ᎤᏓᏠᏍᏗ, ᎠᎴ ᏚᎸᎸ ᎤᏩᏒ ᏧᏬᏰᏂ, ᎠᎴ ᏧᎳᏏᏕᏂ, ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᏂᎦᏪᎠ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ; ᎾᏍᎩ ᎯᎠ ᏅᏛᏅᏁᎵ ᎠᏂᏧᏏ ᏥᎷᏏᎵᎻ ᏛᎾᎸᎵ ᎠᏍᎦᏯ ᎯᎠ ᎠᏓᏠᏍᏗ ᎤᏤᎵᎦ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏫᏙᏛᏂᏲᎯᏎᎵ.\nᎨᏍᏗ ᎩᎶ ᏳᏁᎸᏔᏅ ᏧᎴᏫᏍᏙᏗ.\nᎼᏏᏰᏃ ᎡᏘ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏕᎦᏚᏩᏗᏒ ᏕᎤᏪᎭ ᎬᏩᎵᏥᏙᎲᏍᎩ, ᏓᏥᎪᎵᏰᏍᎬᎢ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏄᎾᏙᏓᏈᏒᎢ.\nᎠᎴ ᎤᏲᎴ ᎤᏍᎪ ᎠᏖᎵᏙᎩᎯ ᏕᎶᏕᎢ, ᎠᎴ ᎠᏛ ᎤᏁᎴᎢ; ᎠᏛᏃ ᎤᏥ ᎤᏁᎴᎢ.\nᎡᏈᏌ ᏧᎾᏁᎶᏗ ᎤᎾᏓᎲᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏃᏈᏏ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᏥᏚᏒᎦᎳ, ᎾᏍᎩ Ꮎ ᏤᏙᎭ ᎠᏰᎵ ᏕᎦᎧᎲ ᎦᎵᏉᎩ ᏗᏨᏙᏍᏗ ᏗᎦᎪᏙᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ.\nᎠᎴ ᎨᏣᏛᎦᏁᎸ ᏕᎮᏲᎲᏍᎬᎢ ᏂᎦᏛ ᎠᏂᏧᏏ, ᎾᏍᎩ ᏧᎾᏓᏑᏯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᏧᏂᏲᎯᏍᏗᏱ ᎼᏏ, ᎯᎠ ᏂᏪᏍᎬᎢ; ᏞᏍᏗ ᏱᏗᏥᎱᏍᏕᏎᎮᏍᏗ ᏗᏂᏲᎵ, ᎠᎴ ᏞᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏥᏍᏓᏩᏕᎨᏍᏗ.\nᎠᏍᎩᎾᏃ ᎠᏥᏄᎪᏫᏒ ᎤᏩᎨᏫ ᎤᏬᏂᏒᎩ. ᎤᏂᏣᏘᏃ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝ ᎢᎸᎯᏳ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎪᎲᎯ ᏱᎩ ᎢᏏᎵᏱ.\nᎾᏍᎩ ᎤᏪᏥ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏕᏫ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏧᏕᏁᎢ ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒᎢ;\nᎿᏉᏃ ᏇᏍᏓ ᎾᎿ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏛ ᎤᎷᏨ, ᏦᎢ ᏫᏄᏒᎸ, ᏏᏌᎵᏱ ᎤᏂᎩᏒᎩ ᏥᎷᏏᎵᎻ ᏭᎶᏒᎩ.\nᎩᎶ ᎢᏤᎲ ᎤᏓᏑᏰᏍᏗ ᎤᏢᎨᏍᏗ, ᏫᏓᏯᏂᏍᎨᏍᏗ ᏗᎨᎦᏗᎶᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩᏃ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏂᏔᏲᎯᎮᏍᏗ ᎠᏥᏍᏕᎸᏗᏱ, ᎬᏩᎶᏁᏗᏍᎨᏍᏗ ᎠᏠᏁᏗ ᎠᏅᏗᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏚᏙᎥᎢ;\nᎢᏣᏤᎵ ᎨᏎᏍᏗ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏣᎵᏍᎪᎸᏔᏁᎸᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᎤᎾᏙᏓᏉᏅᎯᏃ, ᎩᎳ ᎢᎦ ᏂᎦᎵᏍᏗᏍᎨᎢ ᎠᎴᏂᏍᎬ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᎠᎴ ᏐᎢ ᎺᎵ ᎤᎾᎦᏔᏂᎴ ᎠᏤᎵᏍᏛᎢ.\nᎠᏥᎸᏱᏃ ᏭᏙᎥᏔᏅᎩ ᎢᎾᏛ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏳᎵᏍᏔᏁᎢ.\nᎦᏓ ᎠᎪᎵᏰᏍᎪ ᏃᎴ ᎢᏳᏍᏗ ᏂᎬᏁᎲ ᎦᏓ.\n”Ꭵ, ᎣᏍᏓ ᏏᏆ ᏂᏗᎦᎵᏍᏔᏂ,” ᎤᏛᏁ ᎰᎻ.\nᎤᎷᏣ ᎦᏍᎩᎶᎩ ᎤᏩᏗ, ᎤᎵᏖᎸᏁ ᎧᏁᏌᎢ, ᏃᎴ ᎤᏃᏴᎨ ᎭᏫᏂ.\nᎦᎵᏦᏕ ᏧᏅᎪᏤ ᎦᎸᎳᏗ ᎢᏗᎦᏘ ᏗᎳᏑᎶ ᏧᎳᏑᎵ, ᎪᎢ ᎦᏂᏤᎮ ᏃᎴ ᎦᏅᎯᏓ ᎠᏰᎳᏍᏗ ᎦᏁᎮ.\nᎠᎫᎵᏦᏩᏛ ᎤᏒᎯ, ᎪᏟᏍᏗ ᎨᏐ ᎧᏁᎢᏍᏗ ᎠᎹ ᎨᏴ ᏓᏳᏓᎴᏅ, ᎯᎸᎢᏴ ᏂᎦᏓ ᏗᏒᏍᏙᏗ ᎤᎵᏍᎨᏛ.\nᎠᎴ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ ᎦᏥᏁᎰᎢ, ᎥᏝᏃ ᎢᎸᎯᏳ ᏧᏂᏲᎱᎯᏍᏗ ᏱᎩ, ᎠᎴ ᎥᏝ ᎩᎶ ᏗᏆᏑᎦᎸᏙᏗ ᏱᎩ.\nᏂᎦᎥ ᏓᏋᏂᎦᎸᎢ ᎾᎾᏓᏛᎥᏍᎬᎾ ᏥᎨᏐ ᏕᎬᏂᎦᎵᏍᎪᎢ; ᏂᎦᏛᏃ ᎠᎾᏓᏛᎥᏍᎩ ᏕᎬᏂᎦᎷᏬᏍᎪᎢ ᎤᏟ ᎢᎦᎢ ᎤᎾᏓᏛᏗᏱ ᎤᏰᎸᏐᎢ.\nᎢᏏᎵ ᎤᏅᏏᏓᏍᏗ ᎤᏍᏕᎸᎲ ᎠᏅᏓᏗᏍᎬ ᎤᏓᏙᎵᏣᏛᎢ,\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᏗᎨᎦᏁᎶᏗ ᎡᏏᏱ ᎠᏁᎯ, ᏉᎳ ᏧᎵᎢ, ᎤᎾᏓᏅᏒᎩ ᏫᎬᏩᏔᏲᏎᎸᎩ, ᏭᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎤᎾᏛᏁᎸᏗᏱ.\nᎤᏄᏖᏎᏃ ᎤᎵᎬᎭᎷᏴᎯ ᏔᎳᏚ ᏗᎧᎵᎢ ᏔᎷᏣ, ᎠᎴ ᎾᏍᏉ ᎠᏣᏗ.\n“ᎭᏛᎦᏍᏓ! \nᎠᎾᎵᏅᏟ ᏗᎨᏳᏗ ᎨᏒ ᏅᏩᏍᏗᏗᏎᏍᏗᏉ.\nᎢᏳ ᎠᎴ ᏎᏓᏂ ᏔᎵ ᏱᏄᏓᎠ ᎤᏩᏒ ᏯᏓᏡᏗᎭ, ᎦᏙ ᏘᎦᎵᏍᏙᏗ ᏱᏂᎬᏩᏍᏗᏉ ᎤᏤᎵᎪᎯ? ᏅᏗᎦᎵᏍᏙᏗᎭ ᏇᎵᏥᏆ ᎤᏍᏕᎵᎭ ᎠᏂᏍᎩᎾ ᏥᏕᎦᏄᎪᏫᏍᎦ ᏥᏍᎩᏲᏎᎭ.\nᏯᏋᎨᏫᏐᏉ ᏩᏯ ᎦᏚᎲ.\nᎤᏁᏅᏎᏃ ᎠᎴ ᏭᏂᏩᏛᎮ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸᎢ; ᎤᎾᏛᏅᎢᏍᏔᏁᏃ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ.\n“ᏓᏁᏏᎨ ᏗᎾᏓᎪᎾᏗᏍᎬ? ᎭᎾ ᏳᏫᏗᏣᎾ ᏧᏪᏥ,” ᎤᏍᏗᏰᏔᏁ ᏫᎵᎻ.\nᎤᏁᎦ ᎨᏎ.\nᎾᏍᎩ Ꮎ ᎤᎷᎯᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᏎᏓᏂ ᏧᎸᏫᏍᏓᏁᏗ ᏚᎸᏫᏍᏓᏁᎮ-ᏍᏗ ᎬᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎦᏰᎪᎩ ᎤᏰᎸᏛᎢ,\nᎤᎵᎪᎲᏍᏗ, ᎠᎵᏍᏆᏗᏍᎬ ᎦᏃᎯᎵᏓᏍᏗ ᏅᏙ, ᎠᏉᏌᎯᏌᏅ ᏄᎵᏍᏔᏁᎸ ᏣᎵ, ᎬᎩᏃᎯᏎᎸ ᏁᏂᏏ, ᎶᏩᏂ, ᏣᏥ ᏃᎴ ᏤᎩ.\nᎤᎿᏛ ᎠᏒᏛ ᏗᎦᎾᎥ ᏭᎳᏏᏔᏁ…\nᏥᏌᏃ ᎤᎪᎲ ᎤᏥ, ᎠᎴ ᎤᎪᎲ ᎾᎥ ᎦᏙᎬ ᎤᏍᏓᏩᏗᏙᎯ ᎤᎨᏳᎯ, ᎯᎠ ᏄᏪᏎᎸᎩ ᎤᏥ; ᎯᎨᏴ, ᎬᏂᏳᏉ ᏤᏥ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙ ᎦᎵᏍᏙᏗᎭ ᏂᏦᎵᎬᎾ ᏥᎩ?\nᏃᎪᎱᏍᏗ ᎤᎦᎾᏍᏓ ᎠᎩᏍᏗ ᎢᏳᏍᏗ ᎤᏃᏴᎦ.”\nᎠᏎᏃ ᎠᏂᎦᏔᎿᎢ ᎤᏂᏁᏨ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏝᎨ ᏰᎵ ᏱᏙᎨᎩᏰᎵᎦ ᏂᎦᏛ, ᎢᏤᎾᏉᏍᎩᏂ ᏗᏂᏃᏗᏍᎬ, ᎢᏨᏒ ᏫᏥᏩᎯ.\nᎤᎩᏨᏛᏃ ᎿᏉ ᎤᏂᎩᏒ, ᏔᎵ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᏑᎴᏎᎢ, ᎠᎴ ᏚᏁᎴ ᎦᏁᎳ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᏍᏆᏂᎪᏕᏍᏗ, ᎢᎦᎢᏃ ᏫᎦᎶᏒᏍᏗᏍᎬ ᏣᎫᏴᎯᏙᎸᎢ, ᎢᏥᎷᏨᎭ ᎢᎬᏯᎫᏴᎡᎸᎭ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏁᏤᎭ ᏗᏣᏓᎨᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏒ ᎾᏍᎩ ᎠᏛᎩᏍᎪ ᎤᏁᎳᏅᎯ ᎧᏁᎬᎢ; ᏂᎯ ᏂᏣᏛᎩᏍᎬᎾ ᏥᎩ ᏁᏗᎦᎵᏍᏙᏗ ᎤᏁᎳᏅᎯ ᏅᏓᏣᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎭᏂ ᎢᏣ ᏗᏘᏅ ᎭᏓᏅᏖᏍᎬ, ᎠᎧᎵᏨ ᎤᏏᏩ ᎨᏒ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏴ ᎠᎩᎩᎬ ᎢᏨ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏂᏣᏘ ᏥᎨᎦᏤᏪᎸ.\nᏫᎵᎻᏃ ᎪᏎᎰ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ, ᎾᏍᎩ ᎠᏴ ᎢᏧᎳᎭ ᎢᎩᎧᎵᏍᏙᎯᏍᏗᏱ ᎬᏔᏅᎯ ᎠᏴ ᏂᎯᏃ ᎤᏠᏱ ᎢᎪᎯᏳᏒᎢ.\nᎢᏧᎴᎭ ᎢᎩᎾᏕᏘᏴᏓ.\nᎾᏍᎩ ᏚᏘᎿᏫᏛᎮᎢ ᏂᏚᎸᏫᏍᏓᏁᎶ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᎢᏥᏈᏱ ᎠᎴ ᎠᎹ-ᎩᎦᎨᏍᏛᏱ ᎠᎴ ᎢᎾᎨ ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ.\nᎣᎯᏍᏙᏗ ᎤᏰᎸᎮ ᎤᏅᏌ ᏥᎨᏎ ᎤᏩᏌ ᏃᎴ ᏗᎨᏥᎾᏌᎢ.\nᎠᏂ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ ᏗᏅᏂᏗᏳ ᎨᏒ ᎤᎾᏓᏅᏘ; ᎠᏁ ᎠᏁᎭ ᏗᏂᏍᏆᏂᎪᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᏥᏌ ᎤᏤᎵᎦ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ ᎬᏂ ᎤᎬᏫᏳᎯ ᎦᎷᏨᎭ. ᎬᏂᏳᏉ ᎤᎶᎨᏛ ᎠᎦᏘᏲ ᎦᎸᏉᏗ ᎡᎶᎯ ᎤᎾᏄᎪᏫᏒᎯ, ᎠᎴ ᎬᏂᏗᏳ ᎨᏐ ᎠᎦᏘᏲᎢ, ᎬᏂ ᎤᎦᎾᏏ ᎢᎬᏱᏱ ᎠᎴ ᎣᏂᏱ ᎤᎦᏃᏗ ᎨᏒᎢ.\n”ᎦᎵᏉᎩ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏈᎵᎩᏃ ᎤᏍᏚᎢᏒ ᎠᎰᎵ, ᎾᏍᎩ ᎾᎿ ᎪᏪᎸ ᎤᎴᏅᎡᎢ ᎤᏃᎮᎮᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏌ ᎤᎬᏩᎵ.\nᎭᎾ ᎢᏴ ᏭᎷᏤ ᏣᎵ ᎤᏢᎾ ᏧᏍᏆᏅᎾ ᎭᏫᏂᏨ ᎦᏚᏏ.\nᎦᏙᏃ ᏓᏓᏛᏂ ᎯᎠ ᎾᏍᎩ ᏥᏄᏍᏗ? ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᏱᎩᏍᏕᎵᎭ ᎦᎪ ᏱᎦᏡᏓ?\nᎤᎾᏝᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎣᏏᏳ! ᎰᏍᏛ ᎠᎴ ᎯᎦᎵᏯ ᎡᏣᏅᏏᏓᏍᏗ! ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ ᎤᏍᏗ ᏧᏓᎴᏅᏛ ᏕᏣᎸᏫᏍᏓᏁᎸᎢ; ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏣᎬᏫᏳᏌᏕᎩ ᏅᏓᎬᏴᏁᎵ; ᎯᏴᎭ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗᏱ ᏣᎾᏝᎢ ᎤᏤᎵᎪᎯ.\nᏂᎯᏰᏃ ᏧᏩᎫᏔᏅᏒ ᏁᏦᎢᏳᏒᎾ ᏥᎨᏒᎩ ᎤᏁᎳᏅᎯ, ᎠᏎᏃ ᎪᎯ ᎡᏥᏙᎵᏨᎯ ᎢᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ;\nᎨᏍᏗ ᏥᏍᏆ ᎬᏆᏕᏯᏙᏗ ᏱᎩ\nᎥᏝ Ꮓ ᎢᏤᎳᏲᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎾᎾᏛᏁᎲ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏁᎳᏅᎯ ᎾᏂᎦᏔᎲᎾ ᏥᎩ;\nᎠᏍᏚᎩᏍᏗ ᎤᏂᏴᏩᏛᎮ - ᎦᏅᎯᏓ, ᏔᎷᎩᏍᎩ ᎪᏒᏓᏅ.\nᏗᎹᏰᏃ ᎠᏋᏕᏨ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏟ ᎤᏰᎸᏅ ᎪᎯ ᎨᏒᎢ, ᎠᎴ ᏕᏏᎶᏂᎦ ᏭᎶᏒ; ᏞᏏᏂ ᎨᎴᏏᏱ ᏭᎶᏒ, ᏓᏓᏏ ᏕᎵᎺᏏᏱ ᏭᎶᏒ;\nᎾᏍᎩᏃ ᏗᏥᏅᎦᎸᏛ ᏥᎩ ᏗᏣᏓᏅᏙ ᏕᏥᎧᎾᏩᏛᏒ ᏚᏳᎪᏛ ᏥᏅᏧᎵᏍᏙᏔᏅ, [ᎦᎸᏉᏗᏳ] ᎠᏓᏅᏙ ᏥᏨᏔᏅ, ᏄᏠᎾᏍᏛᎾ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏨᏙᏗᏱ ᏗᏥᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎢᏣᎵᏅᏟ, ᎤᎵᏂᎩᏛ ᏕᏣᏓᎨᏳᏎᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᎦᏓᎭ ᏂᎨᏒᎾ ᎢᏥᎾᏫ.\nXII. ᏧᎾᏦᎯᏍᏗ  \nᎯᎠ ᎠᎴ ᎾᏍᎩ ᎢᏨᏲᏪᎳᏁᎭ ᎢᏣᎵᎮᎵᎬ ᎤᎧᎵᎢᏍᏗᏱ.\nᎦᏥᏲᎢᏳᏓᏁᎯᏰᏃ ᎾᏍᎩ ᎤᏣᏘ ᎤᎾᏚᎵᏍᎬ ᎤᏁᎳᏅᎯ ᎪᎱᏍᏗ ᎤᎾᏛᏁᏗᏱ; ᎠᏎᏃ ᎥᏝ ᎠᎦᏙᎮᎯᏍᏗ ᎨᏒ ᏯᏅᏗᎭ.\nᎨᏍᏗ ᎤᏩᏙᎯᏴᏓ ᎢᎫᏩᎵᏍᏔᏁᏗ ᏱᎩ, ᏂᏓᎦᎵᏍᏙᏗ ᎠᏂᏲᏍᎩ ᏚᏂᎭᏲᎮ ᎾᏍᎩᏯ ᎢᎾᎨ ᎡᎯ ᎠᏫ.\nᎾᏍᎩᏃ ᏧᏂᏲᎱᏒᎯ ᏗᏂᏰᎸᎢ ᏕᎦᏁᏍᏗ ᏕᎦᎳᏅᏛ ᎡᏓᏍᏗᏱ ᎡᏆ ᎦᏚᎲᎢ, ᎾᏍᎩ ᏓᏟᎶᏍᏛ ᏐᏓᎻ ᏣᏃᏎᎭ ᎠᎴ ᎢᏥᏈ, ᎾᎿ ᎾᏍᏉ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᎠᏥᎸᎢ.\nᎾᎯᏳ ᎢᎦ ᎤᏁᎳᏅᎯ ᎤᏕᎵᏛ ᎨᏒ ᏴᏫ ᎤᎾᏤᎵᎦ ᏕᎫᎪᏓᏁᎸᎭ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ, ᎾᏍᎩᏯ ᏂᎦᏪᏍᎬ ᎠᏆᏤᎵ ᎣᏍᏛ ᎧᏃᎮᏛ.\nᎠᏎᏃ ᎪᏪᎵ ᎦᎸᏉᏗ ᎬᏂᎨᏒ ᏂᎬᏁᎭ ᏂᎦᏗᏳ ᎤᏂᏍᎦᏅᏨᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏚᎢᏍᏛ ᏥᏌ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᎨᏒ ᏅᏛ-ᏓᎴᎲᏍᎩ, ᎾᏍᎩ ᎨᏥᏁᏗᏱ ᎠᏃᎯᏳᎲᏍᎩ.\nᎾᎯᏳᎡᏃ ᎠᏏ ᏂᎦᏃᎱᎩᏍᎬᎾ ᏥᎨᏎᎢ, ᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ, ᎠᎴ ᏓᎾᏗᏔᏍᎨᎢ, ᎠᎴ ᏓᎾᏕᏒᎲᏍᎨᎢ ᎠᎴ ᏕᎨᏥᏰᎨᎢ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᏃᏯ ᎤᏣᏅ ᏥᏳᎯ,\nᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎩ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ;\nᎪᎯᏰᏃ ᎢᎦ ᎢᏣᏕᏁᎸ ᏕᏫ ᎤᏪᏚᎲᎢ, ᎢᏥᏍᏕᎵᏍᎩ ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ.\nᎭᏩ ᎠᏆᏛᏅ.\nᏂᎦᏓ ᎨᏦᎵᎩ ᏃᎴ ᎣᏍᏓ ᏏᏆ ᏂᎯ.\nᎥᏣᏰᏃ ᏧᏂᏣᏔᏉ ᏥᏄᎾᏍᏗ ᏱᏃᎦᏍᏗ, ᎾᏍᎩ ᎠᏂᏲᏍᏗᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᏃᎦᏠᎾᏍᏛᎾᏍᎩᏂ ᎨᏒ ᏦᏨᏗᏍᎪᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏥᏂᎬᏂᏏᏍᎩ ᎾᏍᎩᏯᎢ, ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎣᏥᏁᎢᏍᏗ ᎦᎶᏁᏛ.\n“ᎠᏎᏃ ᎨᏍᏗ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗ ᏱᎩ.\nᎾᏍᎩ Ꮎ ᎾᎯᏳ ᎤᏇᏓᎵ ᎨᏒ ᎤᎴᏂᏙᎸ, ᎤᏓᏙᎵᏍᏓᏁᎸ ᎠᎴ ᎤᏔᏲᏎᎸ, ᎠᏍᏓᏴ ᏓᏠᏱᎲ, ᎠᎴ ᏓᎦᏌᏬᎢᎲ ᎬᏩᏠᏯᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏔᏲᏎᎸ ᎾᏍᎩ ᏰᎵᏉ ᎬᏩᏍᏕᎸᏗ ᎬᏭᏓᎴᏍᏘ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏛᎦᏁᎴ ᎦᎾᏰᏍᎬ ᎤᎬᏩᎵ;\nᎡᎳᏆ ᏳᏯᏍᎬᎾ.\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᎧᏃᎮᏛ ᎬᏜᏏᏛᎡᏗ ᏂᎨᏒᎾ ᎠᎴ ᎤᏙᎯᏳᎯᏯ. ᎤᎬᏫᏳᎯᏃ ᎤᏁᎳᏅᎯ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎤᎾᏤᎵᎦ ᏧᏅᏎ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏧᏤᎵ ᏧᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏂᎪᎯᎸᎾᏉ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ.\nᏞᏍᏗ ᎩᎶ ᏥᏥᎷᏄᎮᎵ ᏥᏥᏲᏍᏙᏓᏁᎵ ᎠᏌᏍᏛ ᎡᏥᏁᏗᏱ ᎤᏚᎵᏍᎬ ᎤᏓᏙᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᎾᏓᏙᎵᏍᏓᏁᏗᏱ, ᎾᏍᎩ ᎤᎵᏌᎳᏁᎲ ᎤᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᏎᏉᏉ ᎠᏕᏋᎯᏍᏗᏍᎬ ᎬᏗᏍᎬ ᎤᏇᏓᎵ ᎤᏓᏅᏖᏗ ᎨᏒᎢ;\nᎦᎵᏉᎩᏃ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎥᎦᏥᎪᎥᎩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏣᏂᏙᎾᎠ; ᎦᎵᏉᎩᏃ ᏗᏤᎷᎩ ᏕᎨᏥᏕᎸᎩ ᎾᏍᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏓᎦᏘᎴᎨᏍᏗ ᎠᏰᎵ ᎪᏢᏒᎢ, ᏓᎦᏘᎴᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᎪᏢᏅᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏗᏂᎦᏘᎴᎩ ᏧᎾᏚᎪᏓᏁᏗᏱ ᎠᏂᏩᏛᏗᏍᎨᏍᏗ.\nᎢᏳᏃ ᏂᎬ ᎯᏰᎸ ᎧᎵᏬᎯ ᎨᏎᏍᏗ ᎢᎦ ᎦᏘ, ᎢᎸᎯᏢ ᏄᏓᏓᎸᎾ ᎤᎵᏏᎩ, ᏂᎬ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ ᎢᎦ ᎦᏘ, ᎾᏍᎩᏯ ᎠᏨᏍᏙᏗ ᎣᏍᏛ ᎠᏓᏪᎵᎩᏍᎬ ᎢᎦ ᏥᏣᏘᏍᏓᏁᎰᎢ.\nᎠᎧᎵᎢᏍᎩᏂ ᎨᏒ ᎠᎵᏰᎢᎶᎸᎭ, ᎿᏉ ᎾᏍᎩ ᎢᎦᏛᏉ ᎨᏒ ᏛᎵᏛᏔᏂ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᎾᏂᏢᏅᎩ [ᏥᏌ] ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ\nᎥᏝ ᏱᏥᏁᎦ ᎾᏍᎩ ᎯᎠ ᎠᏎ ᎢᏣᏛᏁᏗᏱ, ᎠᏂᏐᎢᏍᎩᏂ ᎤᎾᎵᎦᎵᏴᏅ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᎴ ᎠᎩᎪᎵᏰᏗᏱ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏥᎲ ᏄᏠᎾᏍᏛᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏣᏓᎦᎵᏍᏓᏗᏍᏗᏍᎨᏍᏗ ᎯᎠ ᎾᏍᎩ ᏥᏕᏣᏓᏪᏎᎲᎢ.\nᎠᎴ ᏫᏚᎪᎲᎩ ᎤᏁᎬ ᏚᎾᏣᏅᏛᎩ ᎠᏂᏔᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏚᏃᎸᎩ, ᏌᏉ ᎤᎵᏍᏘᏅᎢ, ᏐᎢᏃ ᏚᏜᏌᏔᏅᎢ.\nᎢᏗᏫᏍᎪ ᎤᏇᏓᎵ ᎠᏰᎸ ᎠᏫᏒᎯ ᎨᏐᎢ, ᎠᏓᏅᏙ ᎤᏙᏢᏒ ᏗᎴᏙᏗ ᎨᏎᏍᏗ. ᎤᏇᏓᎵ ᎠᏰᎸ ᎡᎭ, ᎠᎴ ᎠᏓᏅᏙ ᎤᏙᏢᏒ ᎡᎭ.\nᎠᏂᏫᏅᏃ ᏚᎾᎴᏁ ᎠᎴ ᎤᏂᏣᏄᎳᏁᎢ, ᎤᏂᎾᏫᏛᎲᏃ ᏭᏂᏂᏌᏁᎢ.\nᎡᎾᎢ ᎤᎵᏬᏨ ᎠᎪᏍᎪᎢ.\nᎾᏍᎩ ᏗᎬᏩᎾᏚᎪᏓᏁᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏂᎥ ᎾᏍᎩ Ꮎ ᎾᏃᎯᏳᎲᏍᎬᎾ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏂᏚᏳᎯᏛᎾᏍᎩᏂ ᎨᏒ ᎠᏃᎯᏳᎲᏍᎩ.\nᏝ ᏳᏚᎵᏍᎨ ᎤᎾᎵᏛᏙᏗ ᎾᏍᎩᏯ ᎠᏂᏲᏁᎦ ᎢᏳᎾᎵᏍᏙᏗ.\nᎾᏍᎩ ᎤᏣᏘ ᎠᏓᎪᎵᏰᏍᎩ ᎠᏂᎩᎵᏲᎬ, ᎤᏣᏘ ᎠᎾᎵᎮᎵᎬ ᎠᎴ ᎤᏣᏘ ᎤᏲ ᏄᎾᏛᎿ ᏕᎬ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎸ ᏄᏂᎨ-ᏳᎿᎥᎾ ᎨᏒᎢ.\nᏥᏌᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏬᎸ ᏭᎾᏘᏅᏍᏔᏁᎢ; ᎾᏍᎩᏃ ᏕᎬᏩᎳᏫᎡ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ, ᎠᎴ ᏗᏂᎳᏫᎩ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ.\nᎦᏲᏟ ᏓᏥᏃᎮᎵ ᏄᎾᏛᎾᏕᎬ ᎠᏂᏴᏫᏯ ᏍᎩᎾᎾ ᎤᏰᎸᏗ.\nᎿᏉᏃ ᏴᏫ ᎦᏁᏄᎵ ᎤᎾᏓᏟᏌᏅ, ᎤᎴᏅᎮ ᎯᎠ ᏄᏪᏎᎢ; ᎤᏂᏲ ᎪᎯ ᏣᏁᎭ; ᎤᏂᏲᎭ ᎤᏰᎸᏛᎢ; ᎠᏎᏃ ᎥᏝ ᎨᏥᎾᏄᎪᏫᏎᏗ ᏱᎨᏎᏍᏗ ᎤᏰᎸᏛᎢ, ᏦᎾ ᎠᏙᎴᎰᏍᎩ ᎤᏤᎵ ᎤᏰᎸᏛ ᎤᏩᏒ.\n“ᎨᏍᏗ ᏱᏥᎦᏔᎮ ᏧᏪᏥ ᏘᎲᏍᎩ ᎨᏒ,” ᎤᏛᏁ ᏫᎵᎻ ᎠᏍᏆᏂᎪᏍᎩ.\nᎿᏉᏃ ᏉᎳ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ ᎨᏆ ᏫᎤᎾᏣᏅ ᏭᏂᎷᏤ ᏆᎩ ᎦᏚᎲ ᏆᎻᏈᎵᏱ. ᏣᏂᏃ ᎤᎾᏓᏓᎴᏓᏁᎸ ᏥᎷᏏᎵᎻ ᏫᎤᎶᏎᎢ.\nᎤᏕᏘᏴᏌᏗᏒ ᏯᏂᎷᎬᎾ ᎠᏂᏲᏍᎩ, ᎠᏂRidge ᎤᎾᏓᏓᏍᎬ ᎤᎾᎴᏅᎮ ᏓᏂᎯᏯᏍᎬ ᏧᎾᏁᏍᎨᏛ ᏗᏍᏙᏍᏗ, ᏗᎦᏐᏍᏙᏗ ᏥᏳ, ᏚᎾᏓᎾᏅ ᏃᎴ ᏗᏦᎣᏍᏙᏗ, ᏭᏕᎵᎬ ᎢᏣ ᎠᏁᎨ, ᎦᏲᏟ ᏚᎾᏘᏅᏎ ᎠᏂᎱᏣ ᏚᏂᎾᏌᎥ, ᏭᏅᎬᏛ ᎣᎭᏂ ᎤᏁᏅᏍᏗ.\nᎾᏍᎩᏃ ᏙᎦᎦᎴᏅᎲ ᎠᎴ ᏥᏳᎯ ᎣᎦᏣᏅ, ᏧᏳᎪᏗ ᏬᎩᏅᏍᏔᏅᎩ ᎪᎣᏏ ᏬᎩᎷᏨᎩ, ᎤᎩᏨᏛᏃ ᎶᏗᏱ, ᎾᎿ Ꮓ ᏫᎣᎨᏅ ᏆᏖᎵ ᏬᎩᎷᏨᎩ.\nᏭᏃᏯᏁᏒᎩᏃ ᎡᎵᎩ ᎤᏂᏣᏘ ᎠᏂᏙᎾᎥᎢ, ᎾᏍᎩ ᎠᏂᏧᏏ ᎠᏂᏅᏫᏍᏗᏍᎬᎩ; ᎡᎵᎩᏃ ᎤᏕᎸᏅ ᎤᏬᏰᏂ ᎤᏚᎵᏍᎬᎩ ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬᎢ ᏧᏬᏁᏙᏗᏱ ᏴᏫ.\n“ᎠᏎᏃ ᏗᎦᏃᏣᏟ ᎢᎩᎷᏥᏏ, ᎠᎳᏂ---ᎤᏍᏆᏂᎩᏗ ᏗᎦᏃᏣᏟ.\nᎾᏍᎩ [ᏥᏌ ᎦᎶᏁᏛ] ᎡᏥᎪᎥᎯ ᏂᎨᏒᎾ ᎢᎡᏥᎨᏳᎭ; ᎠᎴ ᎾᏍᎩ ᎪᎯ ᎨᏒ ᏁᏥᎪᏩᏘᏍᎬᎾ, ᎠᏎᏃ ᎡᏦᎯᏳᎲᏍᎬᎢ ᎡᏣᎵᎮᎵᎦ ᎢᏨᏗᎭ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎦᏃᎮᏗ ᏂᎨᏒᎾ ᎠᎴ ᎦᎸᏉᏔᏅᎯ;\nᎾᏍᎩᏃ ᎤᏩᏒᎯ ᏄᏩᏓᎴᎢ ᎤᏃᏴᎬᎢ ᎦᏃᎸᏍᎬᎢ\nᎾᎿᏃ ᎤᏪᏙᏅ ᎠᎴ ᎤᏣᏘ ᏚᏪᏁᏔᏅ, ᎠᏂᎪᎢ ᎤᎾᏤᎵᎪᎯ ᏭᎷᏨᎩ.\nᎢᏳᏰᏃ ᎾᏍᎩ ᎤᏲᎱᏒ ᏗᏓᏤᎵᏛ ᎢᏰᎬᏁᎸᎯ ᎨᏎᏍᏗ, ᎾᏍᏉᏍᎩᏂ ᏚᎴᎯᏌᏅ ᏗᏓᏤᎵᏛ ᎢᏰᎬᏁᏗ ᎨᏎᏍᏗ.\n”ᏙᎢᏳᏍᏗ ᏍᎩᎾᏂ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ, ᎤᏲ ᎤᏓᏅᏘ.\nᏚᎵᏖᎸᏁ ᏚᏄᏌᏛ ᏧᏍᏆᏴᏍᏗ.\nᎠᏴᏰᏃ ᏦᏤᎭ ᏂᎪᎯᎸᏉ ᏦᎩᏲᎱᏏᏕᎾ ᏥᏌ ᎣᎩᏍᏛᏗᏍᎬᎢ, ᎾᏍᎩ ᎬᏅ ᎾᏍᏉ ᏥᏌ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏴ ᎠᏲᎱᏍᎩ ᎣᎩᏇᏓᎸᎢ.\nᏙᏱᏨ ᎤᏪᏓᏍᏗ ᎤᏴᏣ ᏃᎴ ᎦᏓᏁ ᎨᏎᎢ.\nᎤᏣᏘᏃ ᏓᏆᏠᏱᎸᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎩᎶ ᎬᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒ ᏰᎵ ᎬᏩᏍᏚᎢᏍᏗ ᎠᎴ ᎬᏩᎪᎵᏰᏗ ᎨᏒ ᎪᏪᎵ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏗᎬᏩᎧᏃᏗ.,\nᏙᎢᏳᏍᏗ ᏲᎩᏂᏃᎯᏎᎴ ᎦᏲᏟ ᏧᎾᏓᏟᏴᏗ.\nᎠᏴᏍᎩᏂ ᏂᎦᎯᎸ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒ ᎠᎴ ᎧᏃᎮᏛ ᏙᏓᏲᎩᎸᏫᏍᏓᏁᏗ.\n“ᎡᎵᏍᏗᏗ,” ᎤᏛᏁ ᎤᎯᏐᏓᏁᎯ.\nᎤᏬᎯᏨᏃ ᎾᎿ ᎣᎦᏅᏅ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎤᎷᏨᎩ, ᎡᎩᏩ ᏧᏙᎢᏛ, ᏧᏗᏱ ᏅᏓᏳᎶᏒᎯ.\nᎠᎦᏴᎵᎨᏰᏃ ᏥᏓᎴᏗᏍᎪ ᏧᏂᏲᎱᏒᎯ, ᎠᎴ ᏗᏅᏃᏛ ᏥᏂᏕᎬᏁᎰᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᎤᏪᏥ ᏗᏅᏃᏛ ᏂᏕᎬᏁᎰ ᎾᏂᎥ ᎾᏍᎩᏉ ᎡᎳ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎾᏓᏅᏟ ᎠᏁᎲ ᎤᏰᎵᏒᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎾᏍᎩ ᎠᏓᏍᏓᏩᏗᏙᎯ ᎥᏝ ᎠᏛᏲᎱᏏ. ᎠᏎᏃ ᏥᏌ ᎥᏝ ᎠᏛᏲᎱᏏ ᎥᏝ ᏳᏬᏎᎴᎢ, ᎯᎠᏉᏍᎩᏂ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᏥᎷᏨᎭ ᎬᏗᏍᎩ ᎡᎮᏍᏗ ᏯᏇᎵᏒ, ᎦᏙ ᎾᏍᎩ ᏨᏙᏗ.\nᎠᏓᏁᎸᏃ ᎤᏂᏴᎸ ᎤᏂᎪᎮ ᎠᏲᏝ ᎠᎴ ᎤᏥ ᎺᎵ, ᎠᎴ ᎡᎳᏗ ᏚᎾᏓᏅᏁᎢ, ᎤᎾᏓᏙᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᎳᏅᏛ ᏚᏂᏍᏚᎢᏒ ᎤᏂᏁᎸᏁ ᏅᎾᎵᏍᎪᎸᏔᏅᎯ, ᎠᏕᎸ-ᏓᎶᏂᏛ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎠᏜ, ᎠᎴ ᎻᎳ.\nᎾᎯᏳ ᎤᏑᎵᎪᏨ ᎩᏟ ᎤᏍᎦᏎᏗ ᏂᎦᏪᏍᎬ ᏓᏑᏫᏍᎬᎢ.\n“ᏫᏗᏯᎷᎦ ᏐᎢ ᎠᎳᏑᎶ.\n“ᎪᎱᏍᏗ ᏂᎬᏁ, ᎠᏎ ᏍᎩᏥᏄᏍᏙ.\nᎤᏂᏁᎫᏰᏃ ᎤᎾᏁᎳᎩ ᏙᏤᎵᏎᎭ ᎣᏏᏳ ᎢᏥᏰᎸᎭ, ᏂᎯ ᎢᏥᎦᏔᎾᎢ ᎨᏒ ᎢᏳᏍᏗ.\nᎤᏕᎸ ᎦᎷᏯᏍᏘ ᏣᎵ.\nᎾᏃ ᎣᏒ ᎦᏙᎯ ᏧᎳᎨᏯᏛᏤᎢ ᎨᏥᏛᎦ ᎾᏍᎩ ᏄᏠᎾᏍᏛᎾ ᎠᎴ ᎣᏍᏛ ᎨᏒ ᎤᏂᎾᏫ ᎬᏗ ᎠᎾᏛᎬᎦ ᎧᏃᎮᏛ, ᎠᏂᏍᏆᏂᎪᏗᏍᎪᎢ, ᎠᎴ ᎠᏂᎾᏄᎪᏫᏍᎪ ᎤᎦᏔᏔᏅᎯ ᎠᏅᏂᏗᏳ ᎨᏐᎢ.\nᎯᎠ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏟᏗᏱ ᏨᏓᎬᏯᎧᎯᏴᎩ, ᎾᏍᎩ ᎣᏍᏛ ᎢᏨᏁᎵᏓᏍᏗᏱ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏃᏒᏅᎢ, ᎠᎴ ᏘᎪᏗᏱ ᏗᎨᎦᏁᎶᏗ ᏕᎦᏚᏩᏗᏒᎢ, ᎾᏍᎩᏯ ᎢᏣᏛᏁᏗᏱ ᎬᏁᏤᎸᎢ;\nᎣᎩᏒᎸ.\nᎦᏙᏃ ᏓᎦᎵᏍᏙᏓ ᎠᏴ ᎾᏍᎩ ᏥᎾᏆᎵᏍᏓᏏ, ᎾᏍᎩ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᎤᏥ ᏣᎩᎷᏥᏏ?\nᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎳ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏂᎨᏒᎾ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎤᏕᎵᏛ ᏱᏂᎬᏃ, ᎾᏍᎩ ᎠᏎ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ.\nᏙᏉ ᏣᎵᏍᏔᏁᎭ ᏣᏄᏏ? \nᏥᏯᎸᏒ.\nᏣᏂᏃ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏫᏚᏯᏅᎮ ᏥᏌ ᏤᏙᎲ ᏚᏅᏎ ᎯᎠ ᎾᏄᏪᏎᎢ; ᏂᎯᏍᎪ ᎤᎷᎯᏍᏗ ᏥᎩ? ᏥᎪᎨ ᏅᏩᏓᎴ ᎣᏥᎦᏕᏃᎮᏍᏗ?\nᎤᏏᏩ ᎨᏎᎢ.\nᎠᎾᏗᏍᎪ ᎠᏂᏳᏩᏁᎦ ᎤᏅᏌ ᎭᎾᏂ.\nᏚᏂᎪᎵᏰᎥᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ, ᏗᎦᎳᏫᎢᏍᏗᏱ ᎨᏥᎦᏘᏗᏍᏗ ᎤᎾᏓᏅᏎ ᎯᎠ ᏫᏂᏚᏂᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎢᏳᏃ ᏗᎨᏥᏬᏁᏙᏗ ᎨᏎᏍᏗ ᏴᏫ, ᎢᏥᏁᎩ.\n”ᎣᎯᏍᏙᏗ ᎠᎪᏩᏛᏗ ᏔᎵ ᎢᏳᏩᎦᏘ ᏗᏏᎳᏛᏅ ᏱᎩ ᏂᎦᏓ.\nᏌᏩᏂ ᏈᏓᏭᏣᏅᎩ, ᎠᎴ ᎪᏱ ᏭᎾᏏᏃᎸᎩ ᎠᎦᏯᎷᏗ ᎠᎧᎵᏬᎯ ᏣᏁᏆ ᎠᏣᏗ, ᏍᎪᎯᏧᏈ ᎯᏍᎩᏍᎪᎯ ᏦᎢᎦᎵ ᎤᏂᎥᎩ. ᎾᏍᎩᏒᎦᏃ ᎾᏂᎥᎩ ᎠᏎᏃ ᎠᎦᏯᎷᏗ ᎥᏝ ᏳᏲᏤᎢ.\nᎩᎶ ᏄᏓᎴ ᏱᏥᏔᏲᏏ ᎠᎩᏍᏕᎸᏗ”\nᎠᎴ ᏓᏤᎵᏍᏛ ᏚᏂᏄᎪᏤ ᏧᎴᏅᎯ ᏂᎨᏎᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎦᏚᎲ ᎤᏂᏴᎴᎢ, ᎠᎴ ᎤᏂᏣᏖ ᎬᏂᎨᏒ ᏂᏚᎾᏛᏁᎴᎢ.\nᎾᎿᏂ ᎥᏝ ᎩᎶ ᎠᎪᎢ ᏱᎩ, ᎠᎴ ᎠᏧᏏ, ᎠᏥᎤᏍᏕᏎᎸᎯ ᎠᎴ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ, ᏅᏩᏓᎴ ᏴᏫ, ᏏᏗᏱ ᎡᎯ, ᎠᏥᎾᏝᎢ ᎠᎴ ᎾᏥᎾᏝᎥᎾ; ᎦᎶᏁᏛᏍᎩᏂ ᏂᎦᎥ ᎪᎱᏍᏗ ᏂᎦᎵᏍᏓ, ᎠᎴ ᏂᎦᏗᏳ ᏗᏯᎢ.\n“ᎦᎵᎡᎵᎩ ᏥᎬᎪᏩᏔ.\nᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᏁᏨᎩ ᏗᏐᏴ ᏩᏥᏴᏙᏗᏱ, ᎠᎴ ᎠᏥᎵᎥᏂᎲ ᎠᏥᎪᎵᏰᏗᏱ, ᎤᏚᎵᏍᎬᎩ ᎤᏙᎴᎰᎯᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᎦᎥ ᎠᏁᎷᎲᏍᎬ ᎬᏩᏡᏗᏍᎬᎢ.\nᎯᎠ ᎠᏂᏣᎳᎩ ᏧᎾᏛᏓᏍᏓᏁᎢ ᏃᎴ ᏧᎾᎾᎾᏖᎢ ᏍᎩᎾ ᏗᎧᏃᎩᏓ ᎯᎪᎢᎦ.\nᏭᏢᏁᎢ ᏫᎵᎻ ᎠᏓᏅᏖᏍᎨ ᎢᏳᏛᏁᏗ.\nᎤᏓᏅᏪᎥ ᎠᎩᏍᏙᎯ ᎤᏩᏌ, ᏓᏴᏈᏛ ᏗᎬᎯᏓ.\nᏧᎦᏌᏬᎸ ᏚᎧᎵᏤ ᏗᎦᏙᎵ.\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᎦᎷᏨᎭ ᎤᏩᏛᎲᎭ ᎾᏍᎩ ᎾᏛᏁᎲᎢ.\nᎠᏂᏧᏏᏃ ᎾᏍᏉ ᎤᏂᏍᏓᏱᏛᎩ, ᎤᏙᎯᏳᎯ ᎾᏍᎩ ᏄᏍᏗ, ᎤᎾᏛᏅᎩ.\nᎭᏟᏂᎬᏁᎸᎭ ᎠᏂ ᏣᎷᎯᏍᏗᏱ ᎠᏏᏉ ᎪᎳ ᏂᎨᏒᎾ. ᏳᏇᎳ ᏫᏣᏲᎵᎦ, ᎠᎴ ᎾᏍᏉ ᏇᏗᏂ, ᎠᎴ ᎳᎾᏏ, ᎠᎴ ᏠᏗᏯ, ᎠᎴ ᎾᏂᎥ ᎠᎾᎵᏅᏟ.\nᎠᏫᏃ ᎤᏂᏃᏕᎾ ᎠᎦᏘᏏ ᎢᏗᏢ ᏙᏓᎦᎪᏔᏂ, ᎠᏫᏃ ᏗᏂᎭᏄᎸᎯ ᎠᎦᏍᎦᏂ ᎢᏗᏢ;\nᏂᎦᏓ ᏃᏉ ᎯᏥᏧᏣ! \nᏂᎯᏍᎪ ᎦᎶᏁᏛ? ᏍᎩᏃᎲᏏ. ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏳᏃ ᏱᏨᏃᏁᎸ ᎥᏝ ᏴᎨᏦᎯᏳᎲᎦ;\nᎩᎶ ᎤᏍᎦᏅᏨ ᏕᏥᏲᏍᎨᏍᏗ ᏗᏲᏒᎯ ᎨᏎᏍᏗ, ᎩᎶᏃ ᎤᏍᎦᏅᏨ ᏕᏥᏂᏱᏍᎨᏍᏗ ᏗᎦᏂᏴᏗ ᎨᏎᏍᏗ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᏰᎯ ᏫᏯᏅ, ᎠᏂᏃ ᎢᏍᏗᎷᏨᎭ.\nᎠᎴ ᎾᏍᎩ ᎠᏰᎸ ᏤᎯ ᎾᏍᎩ ᎡᏍᎦ ᎢᏴᏛ ᎢᏗᎦᎸᏉᏗ ᎢᎩᏰᎸᏒ, ᎾᏍᎩ ᎤᏟ ᎢᏗᎦᎸᏉᏗ ᏂᏕᏛᏁᎰᎢ; ᎠᎴ ᏄᏬᏚᏒᎾ ᎨᏒ ᏂᎦᏛᏅᎢ ᎾᏍᎩ ᎤᏟ ᎤᏬᏚᎯᏳ ᏂᎦᎵᏍᏗᏍᎪᎢ;\nᎯᎠᏃ ᎾᏍᎩ ᎢᏥᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᎢᏳ ᎦᏁᎳ ᏯᎦᏔᎮ ᎢᏳᏟᎶᏛ ᎠᎵᏰᎢᎵᏒ ᏗᎦᎷᏥᏒ ᎦᏃᏍᎩᏍᎩ, ᏳᏯᏫᏎᎢ, ᎠᎴ ᎥᏝ ᏩᎩᏴᏏ ᎠᏓᏁᎸ ᏱᎬᏪᎵᏎᎢ.\nᏣᏂ ᏥᏓᏓᏬᏍᎬᎩ, ᎦᎸᎳᏍᎪ ᏧᏓᎴᏁᎢ, ᏴᏫᏉᎨ ᎠᏁᎲᎢ? ᏍᎩᏃᎲᏏ.\nᎢᏳᏃ ᎠᏩᏛ ᎠᏃᎭᏢᎥᏍᎪᎢ ᎠᎵᎮᎵᎪᎢ.\nᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ.\nᏥᎪᏃ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎨᏒ ᎠᎩᎯᎯᏉ ᏄᎵᏍᏔᏁᎢ? ᎬᏩᏟᏍᏗ. ᎠᏍᎦᏂᏍᎩᏂ, ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᏄᏍᏛ ᎠᏍᎦᏂ, ᏚᎸᏫᏍᏓᏁᎲᎩ ᎠᎩᎯᏍᏗᏱ ᎬᏗᏍᎬᎩ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏍᎦᏂ ᎤᎵᏁᏨ ᎢᏳᏩᏂᏌᏛ ᎤᏣᏘ ᎠᏍᎦᎾᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎤᎪᎵᏰᏍᎨ ᎠᏍᎩᎾ. ᎾᏍᎩᏃ ᎢᎪᎯᏛ ᎥᏝ ᎪᎱᏍᏗ ᏳᏎᎢ ᎾᏍᎩᏃ ᎤᎵᏍᏆᏛ ᎩᎳ ᎤᏲᏏᏌᏁᎢ.\nᎯᎠ ᎪᏪᎵ ᎧᏃᎮᎭ ᏧᏁᏢᏔᏅᏒ ᏥᏌ ᎦᎶᏁᏛ, ᏕᏫ ᎤᏪᏥ, ᎡᏆᎭᎻ ᎤᏪᏥ.\nᎠᎴ ᎠᎨᏴ ᎡᎳᏩᏱ ᎠᏕᎶᏆᏍᎨᏍᏗ ᎤᏣᏘ ᎤᏬᎯᏳᎯᏳ ᎨᏎᏍᏗ.\nᏭᎾᎵᏍᏔᏅᏃ ᎤᎾᏓᏛᏛᏁᎢ; ᎠᏂᏍᎪ ᎤᏬᎳ ᏌᏩᏂ ᏈᏓ ᏑᏙᎢᏛ, ᎤᎾᏛᏁᎢ.\nᎠᏰᎵ ᎢᏳᏥᎶᏛ ᎨᏰ ᎢᏴ ᎨᏴ ᏙᏥᎧᎯᏴ ᏐᏈᎵ, ᎡᏝᏪᎯ ᏬᎩᎾᎷᏒ ᎤᎭᎨᏛ ᎦᎳᎨᏴ ᏧᏯᏛᎯ ᏧᏆᎶᎦ.\nᏂᎦᏓ ᏓᏋᏔᏅ ᏄᏓᎴᏒ ᎢᎦᏪᏍᏗ ᏲᎾ ᏥᏯᏙᎴᏇᎸ ᏃᎴ ᎦᏥᏯᏙᎴᏇᎸ ᏧᏂᏲᎰᏒ ᏳᏩᏁᎦ ᏗᏃᏪᎵᏍᎩ ᏗᏥᎸᏉᏔᏅ ᏃᎴ ᏰᎵ ᏧᏙᏓᏆᏓ ᎦᏥᏯᏕᏙᏛ ᏗᏟᏰᎵᏓᏍᏘ ᎦᏙ ᏚᏂᏂᏴᏛ ᎠᎾᏓᏒᎯᎲ ᏃᎴ ᎤᎾᏤᎵᎪ ᎠᏥᎶᎥ ᏃᎴ ᎢᏳᏍᏘ ᎤᏤᎵ ᏩᎦ ᎤᏲᏍᏔᏅ ᎠᏐᎭᏴᎢ.\nᎡᎳᏆᏗ ᎤᏬᏰᏂ ᎦᎵ ᏭᎩᏎ ᎧᏁᏍᎦ ᎦᎸᎳᏗ ᎢᏣ ᏭᏗᏅᏎ ᏃᎴ ᏍᏓᏯ ᎤᏪᎷᏁᎢ.\nᏂᏓᏂᎵ ᎤᏅᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ; ᏂᎯ ᏣᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ.\nᎦᏅᎬᏃ ᎾᎥ ᎤᎴᏁ, ᎠᎴ ᎤᏍᎦᏤ ᎤᏗᎴᎲᏍᎬᎢ, ᎤᏙᎣᎴᏃ ᎤᏗᎴᎲᏍᎬᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏗᏛᎮ, ᎠᎴ ᏚᏍᏕᎸᎪᏙᎴᎢ.\nᎤᏣᏘᏰᏃ ᏥᏕᎦᎯᏞᏫᏒ ᏌᏉ ᎠᏰᎸ ᎨᏒᎢ, ᎠᎴ ᎾᎦᏛ ᏕᎦᎯᏞᏫᏒ ᎤᏠᏱ ᏂᎨᏒᎾ ᏥᎩ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎨᏒᎢ;\n“ᎭᎳᏑᏢᎩ! ᎭᎳᏑᏢᎩ!” ᎤᏃᏎᎴ ᏩᎭᏯ.\n”ᎦᎵᎡᎵᎦ ᏳᏣᎩᏒᎾ ᏥᎨᏎ ᎠᏓᎯ,” ᎤᏛᏁ.\nᎠᏂᎨᏯ ᎤᎵᏗᏨ ᏚᎾᏁᎢ.\nᎿᏉᏃ ᎤᎬᏫᏳᎯ ᎯᎠ ᏂᏚᏪᏎᎴ ᎨᏥᏅᏏᏓᏍᏗ; ᎡᏣᎸᏣ ᏧᏪᏰᏂ ᎠᎴ ᏧᎳᏏᏕᏂ; ᎠᎴ ᎡᏥᎾᏫᏛ, ᎠᎴ ᎥᏙᏱᏗᏢ ᏧᎵᏏᎬ ᏪᏣᏓᎤᎦ. ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᎡᏥᏲᎭ, ᎾᏍᎩ ᏣᎦᏛᎥᏍᎬᎩ; ᏚᎴᎯᏌᏅ; ᎥᏝ ᎠᏂ ᏱᎦᏅ; ᏗᏣᎧᏅᎦ Ꭰ ᎤᏂᏅᏅᎢ.\n“ᎤᏙᎯᏳᎩ?” ᎤᏛᏁ ᏫᎵᎻ.\n“ᎭᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\n”ᏙᎢᏳᏍᏗ ᎤᏦᎢᏎᏗ?” ᎤᏛᏛᏁ ᎰᎻ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏕᏥᏯᎵᏂᏆᏅᏁᎭ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᏥᏌ ᎦᎶᏁᏛ ᎤᏙᏓ,\nᎠᏆᎵᏍᏗ ᎠᏆᏦᎣᎯᏍᏗ ᎧᏁᏌᎢ.\nᎢᏳᏉ ᏫᏛᏂᎸᏂ ᏫᎵᎻ ᎧᏁᏌᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒ ᎠᎴ ᎩᎬ ᎥᏝ ᎤᎾᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ; ᎥᏝ ᎠᎴ ᎠᏲᎩ ᎨᏒ ᎤᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᎠᏲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏚᏂᏖᎸᏁᏃ ᎤᏂᏣᏘ ᏴᏫ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎤᏂᏃᎴᏃ ᎠᎴ ᎤᏂᏂᏴᎮ ᎠᎴ ᏕᎦᎳᏫᎥ ᎤᎾᏘᏃᎴᎢ.\nᏛᎦ ᎠᏓᎾᏏᏂᏎᎢ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ, ᏭᏟᏫᏛ, ᏌᎳᏓ ᏚᏏᎳᏛ ᏭᏩᏯᎸᏥᎴ.\nᏗᏍᎩᏯᏓᏂᎸᎩ; ᎥᏝ ᎩᎶ ᎤᏣᏘᏂ ᏱᏃᏨᏁᎸ, ᎥᏝ ᎩᎶ ᎠᏍᎦᎾ ᏱᏃᏨᏁᎸ, ᎥᏝ ᎩᎶ ᏲᏥᎶᏄᎡᎸ.\nᏴᏫ ᎢᏳᏍᏗ ᎠᎩᏃᎮᎸ, ᎣᎯᏍᏙᏗ ᎧᏁᎢᏍᏗ ᎠᏋᏔᏅ, ᎩᎳ ᏣᎾᏛᎩᏍᎪ ᎠᎩᏃᎮᎸ.\nᎩᎳ ᎤᏕᎶᎰᏎ ᎤᏂᎩᏏᏗᏒ, ᎡᏆ ᎠᏣᏗ ᏄᎵᏍᏔᏁ ᏃᎴ ᎨᏍᏗ ᏯᏍᎦᎢᎮ.\nᎧᏁᎬ ᎤᎶᏐᏅ ᎤᏩᏒᏉ ᎠᏥᏩᏛᎮ ᏥᏌ. ᎡᎳᏪᏱᏉᏃ ᎤᏅᏎᎢ, ᎠᎴ ᎥᏝ ᎩᎶ ᏳᏂᏃᏁᎴ ᎾᎯᏳ ᎨᏒ ᏄᏍᏛ ᎤᏂᎪᎲᎢ.\nᎤᏂᏁᎦᎳᎩᏍᏗ ᎤᏂᏁᎦᎸ, ᎤᏅᎨᏫᏍᏗ ᎤᎾᏅᏛ, ᎤᎾᏓᏅᏍᏗ.\nᎠᎴ ᎤᏂᏣᏛᎩ ᎬᏬᎯᏳᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᎶᏁᏛ ᎦᎷᏨᎭ, ᏥᎪᎤᏟ ᎢᎦᎢ ᎤᏍᏆᏂᎪᏗ ᏙᏓᏳᎸᏫᏍᏓᏁᎵ, ᎡᏍᎦᏉ ᎯᎠ ᎾᏍᎩ ᏥᏚᎸᏫᏍᏓᏁᎸ?\n”ᏰᎵ ᎤᎵᏍᎨᏓ ᎪᎱᏍᏗ,” ᎤᏛᏁ.\nᎠᎴ ᎯᎠ ᏥᏂᏓᏂᏪᏎᎰᎢ; ᎠᏤᎷᎩ ᎣᎬᏔᏅ ᏕᏨᏃᎩᎡᎸ, ᎠᏎᏃ ᎥᏝ ᏱᏣᎵᏍᎩᏒ; ᏙᏥᏴᎬᎩ ᎢᏣᏛᎪᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏗᏣᏠᏱᎸ.\n“ᎨᏍᏗ ᎤᏩᏌ ᎤᏓᏅᏖᎸ ᏱᎩ ᎤᏍᏗᎩ ᎤᏕᏅ ᏣᎨ? \nᏧᎦᏴᎵᎨᏃ ᎬᏩᎪᎲ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎤᏥᏃ ᎯᎠ ᏄᏪᏎᎴᎢ ᎠᏇᏥ, ᎦᏙᏃ ᏅᏍᎩᎾᏛᏂᏏᏉ? ᏣᏙᏓ ᎢᏍᏛᏲᎲᎩ ᎤᏪᎵᎯᏍᏗ ᎣᎩᎾᏓᏅᏔᏩᏕᎬᎩ.\nᏂᎯᏍᎩᏂ ᎥᏞᏍᏗ ᎾᏍᎩ ᏱᏂᏨᏁᏍᏗ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏂᎯ ᏂᏣᏛᏅ ᎤᏟ ᎢᏯᏥᎸᏉᏗ; ᎾᏍᎩ ᎠᏫᎾᎨ ᎾᏍᎩᏯ ᎨᏎᏍᏗ; ᎾᏍᎩᏯ Ꮎ ᏄᎬᏫᏳᏌᏕᎩ ᏗᏍᏕᎸᎯᏙᎯ ᎾᏍᎩᏯ ᎨᏎᏍᏗ.\n”ᏱᎦᎵᎡᎵᎩ ᎬᏍᏕᎸᏗ.”\nᎠᎬᏱ ᏑᎾᎴ ᎤᏰᏤ ᎤᏃᎴ.\nᏌᏊ ᏥᏗᏩᏗ ᎠᎳᏑᎶᎢ.\nᎪᎩᏅᏍᏓᏕᎰᎢ ᏦᏥᏬᏁᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎦᎨᏥᏍᏕᎸᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎤᏂᎧᎵᎢᏍᏗᏱ ᏂᎪᎯᎸ ᎤᏂᏍᎦᏅᏨᎢ; ᎤᏔᎳᏬᎯᏍᏗᏍᎩᏂ ᎨᏒ ᏩᏍᏛ ᎢᏴᏛ ᎤᏂᎷᏤᎸ.\nᎿᏉᏃ ᏚᏒᏁᎸ ᏗᏂᎦᏙᎵ, ᎯᎠ ᏄᏪᏒᎩ; ᏄᏍᏛ ᎢᏍᏙᎯᏳᎲᏍᎬ ᎾᏍᎩᏯ ᏂᏍᏓᎵᏍᏓᏏ.\nᎠᏂᏫᏅ ᎾᏍᏉ ᏕᎯᏁᏤᎮᏍᏗ ᎤᎾᎵᏏᎾᎯᏍᏗ ᎢᏳᎾᎵᏍᏙᏗᏱ.\nᎤᏛᎦᏅᏃ ᎤᏢᎬᎢ, ᎾᎿ ᎡᏙᎲᎢ ᎠᏏᏔᎵ ᏅᎤᏙᏓᏋᎩ.\nᏔᎵᏁ ᏗᎦᏁᎲ ᎠᎹ ᏭᎷᏤ ᎤᏍᏗ ᎠᏣᏗ, ᏃᏗ ᎤᏛᎦᏁ ᏏᏲ ᎠᏗᏍᎬ.\n“ᏭᏲᎢᏴ ᏫᏣᎩᏍᏔᏁ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎢᏴᏛᎭᏰᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎷᏥᎯᎲᎩ ᎠᏓᏬᏍᏗᏱ, ᎠᎴ ᎠᏖᎸᎲᏍᎬᎩ ᎠᎹ, ᎩᎶᏃ ᎾᏍᎩ ᏧᏌᎴᏅᏔᏅᎯ ᎤᏚᏅᎯ ᎿᏉ ᎠᏖᎸᏅᎯ ᏥᎨᏐ ᎠᎹ, ᎤᏗᏩᏍᎬᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎥᏳᎩ ᎤᏱᎵᏙᎲᎢ.\nᎠᎴ ᎿᏉ ᏂᎪᎯᎸ ᎠᎦᏘᏯ ᎬᏂ ᎬᏩᏍᎦᎩ ᏧᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎨᎬᏁᎸᎭ.\nᎣᏂᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᏔᎵᏁ ᏧᏗᏱ ᏫᏗᎶᎯ.\nᎠᎴᏫᏍᏘᏍᎨ ᎠᏔᏍᎩᏍᎬ ᎠᎴ ᎠᏓᏅᏫᏍᎨ.\nᏗᎨᏥᎾᏌᎢ ᎨᏥᏅᏙᏔᏁᎢ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏥᏌᏃ ᎾᏍᎩ ᏚᎧᎿᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᎨᏒ ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎨᏒ ᎥᏝ; ᎤᏁᎳᏅᎯᏰᏃ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᎬᏛᏁᏗ.\nᎪᏫ ᎤᏓᏅᏒ ᏗᎦᎳᏫᎩ ᏬᎩᏂᏲᎯᏍᏔᏅ ᎣᏍᏗᏃᎮᏍᎬ ᎢᏯᏛᏁᎵᏓᏍᏗ, ᏧᏓᎴᏅᏓᏉ ᏬᎩᏂᏃᎮᎸ, ᎤᏛᏐᏅ ᎠᎾ ᎠᏫᎾᎨᏍᏗ.\nVan Buren ᎤᏍᏓᏩᏛᏎ ᏤᎩᏏᏂ ᎠᏰᎵᏒ ᎠᏂᏴᏫᏯ ᏧᎾᎳᏏᏙᏗ, ᎾᏍᎩᏯ ᎠᏓᏬᏍᎩ ᏧᏂᏱᏍᎪ ᎦᎾᎱᎩᏍᎬ.\nᎠᏓᎨᏳᏗ ᎨᏒ ᎥᏝ ᎤᏲ ᏱᏄᏩᏁᎰ ᎾᎥ ᎢᏳᎾᏓᎳ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎧᎵᎢᎭ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬᎢ.\nᎩᎶᏍᎩᏂ ᎤᏣᏘᏂ ᎢᏯᏛᏁᎯ ᎠᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᏣᏘᏂ ᏄᏛᏁᎸᎢ; ᎥᏝᏃ ᎩᎶ ᎠᏥᎸᏉᏙᏗ ᏱᎨᏎᏍᏗ.\nᎠᏲᎵᎮᎢ, ᎭᎾᏉ ᎦᏙᎨ ᎤᎦᏙᏍᏕ ᏭᏕᎵᎬ ᏩᏕᏲᎲᎢ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎢ.\nᎢᏳᏃ ᎠᏍᎦᏯ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏯᏥᏅᏍᏕᏎᎭ, ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎼᏏ ᎤᏤᎵ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏥᎪ ᎢᏍᎩᏍᎦᎦ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏍᎦᏯ ᏂᎬ ᎠᏰᎸ ᏥᏥᏅᏩᏅ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ?\nᏂᎦᏛ ᎠᏂ ᏃᎦᏛᏅᎢ ᏫᎨᏣᏲᎵᎦ. ᏕᎯᏲᎵᎸᎭ ᎾᏍᎩ Ꮎ ᎨᎩᎨᏳᎯ ᎪᎯᏳᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ.\nᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᏍᎦᏯ, ᎯᎠ ᎾᏍᎩ ᎠᎹ ᏍᎩᏁᎲᏏ, ᏞᏍᏗᏃ ᎠᎩᏔᏕᎦᏅᎩ, ᎠᎴ ᏞᏍᏗ ᎠᏂ ᎠᎩᏢᎯᎸᎩ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᎵᏗ ᏧᏙ-Ꮫ, ᎩᎦᎨ ᏗᏄᏬ ᎦᏃᏗᏍᎩ, ᏓᏱᏓᎵ ᎦᏚᎲ ᎡᎯ, ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏔᏁᎯ, ᎤᏛᏓᏍᏔᏅᎩ. ᎾᏍᎩ ᎤᎾᏫᏱ ᎤᎬᏫᏳᎯ ᎤᏍᏚᎢᏒᎩ, ᎤᏛᏓᏍᏙᏗᏱ ᏉᎳ ᎧᏁᎬᎢ.\nᎠᏎᏃ ᏂᎯ ᎡᏣᏓᏱᎸᎩ ᎾᏍᎩ ᎾᏯᎦᏅᎾ ᎠᎴ ᎤᏓᏅᏘ, ᎢᏥᏔᏲᎸᎩᏃ ᎤᏓᎸᎯ ᎡᏥᎧᏁᏗᏱ\nᏯᎩᏂᎬᎦᏰᏃ.\nᎠᎴ ᎤᏲᎴ ᏥᏌ ᎤᎪᏩᏛᏗᏱ, ᎾᏍᎩ ᏄᏍᏛᎢ; ᎠᏎᏃ ᎤᏄᎸᏁ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᏣᏘ ᎨᏒᎢ, ᎤᏍᏗᎩᏳᏰᏃ ᎨᏎᎢ.\nᏰᎵ ᏧᏙᏓᏆᏓ ᏃᎴ ᏧᏒᎯᏓ ᏧᎶᏐᏅ ᏰᎵ ᎢᏯᏂ ᎠᏂᏤ ᏧᎵᎢ ᏚᎾᏦᏎᎢ ᎠᏂᎩᏍᎬ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏂᎪᎯᎸ ᎤᏁᎳᏅᎯ ᎦᎸᏉᏙᏗ ᎨᏒ ᎢᏓᎵᏍᎪᎸᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏕᎩᎭᎦᎸ ᏧᎾᏄᎪᏫᏒᎯ ᎢᏓᎵᏍᎪᎸᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏕᏅᏙᎥ ᎬᏂᎨᏒ ᏂᏛᏁᎲ ᎡᏓᎵᎡᎵᏤᎲᎢ.\nᏗᏄᎪᏗᏍᎩ ᏗᏂᏅ ᏧᏓᎾᏫᏛᎮ ᏣᏄᏏ ᏃᎴ ᎱᎵᏛᏓᏁᎢ.\nᏴᏫ ᎤᏪᏥ ᎠᎢ ᏄᏍᏛ ᎪᏪᎵ ᎠᏥᏃᎮᏍᎬᎢ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏫ ᎤᏪᏥ ᎠᏡᏗᏍᎩ. ᎣᏏᏳ ᏱᎨᏎ ᎾᏍᎩ ᎠᏍᎦᏯ ᏄᏕᏅᎾᏉ ᏱᎨᏎᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏲᎵ ᎤᏙᏓ ᎤᏪᎷᏁᎢ, ᎠᎴ ᏗᎬᎦᏌᏬᎢᎯ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎪᎢᏳᎲᏍᎦ; ᏍᎩᏍᏕᎸᏏ ᎾᏉᎯᏳᏒᎾ ᎨᏒᎢ.\nᎣᏂᏃ ᏥᏌ ᎾᏍᎩ ᎤᏩᏓᎲᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎡᏣᏅᏩᏅ; ᏞᏍᏗ ᎿᏉ ᎢᎸᎯᏳ ᏱᏣᏍᎦᏅᏤᏍᏗ, ᎤᏟᏰᏃ ᎢᏳᏲ ᏱᏣᎷᏥᏏ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎤᏂᏁᏨᎩ, ᎯᎠ ᏄᏂᏪᏎᎸᎩ; ᏝᏍᎪ ᏚᏳᎪᏛ ᏲᏥᏁᎦ, ᏌᎺᎵᏱ ᎮᎯ ᎠᎴ ᎠᏍᎩᎾ ᏣᏯᎢ, ᏥᏨᏲᏎᎭ?\nᏐᏉ ᏔᎵ ᏩᏍᏗ, ᎤᏢᏗ ᎤᏓᏅᏖᎴᎢ.\nᎾᎯᏳ ᏥᏌᎤᎵᎮᎵᏤ ᎤᏓᏅᏙᎩᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏯᎵᎡᎵᏤᎭ ᎡᏙᏓ ᏣᎬᏫᏳᎯ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ, ᎾᏍᎩ ᎯᎠ ᏥᏕᎲᏍᎦᎳᏁᎸ ᎠᏂᏏᎾᏌᏂ ᎠᎴ ᎠᏁᏯᏔᎯ, ᏗᏂᏲᎵᏃ ᏥᏕᎯᎾᏄᎪᏫᏎᎸ; ᎥᎥ, ᎡᏙᏓ; ᎾᏍᎩᏰᏃ ᎤᏏᏳ ᏣᏰᎸᏅᎯ.\nᏧᎦᏃᏮ ᎢᏣ ᏫᏚᎧᎾᏅ ᏣᎵ, ᏧᏟᏴᎦᏕᏩᏓ ᎬᏂᎨ ᎤᏍᎪᎸ ᏚᏅᏓᏎ ᎡᎶᎯ ᎢᏳᏓᏅᎯᏓ.\n“ᎠᏯ ᏍᏉ,” ᎤᏛᏁ ᎠᎵᏰᎾ.\nᎠᎴ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎩᎶᏂᏗᏥᏲᏕᏍᏗᏍᎬᎾ ᎢᎨᏎᏍᏗ.\nᎥᏝ ᎠᎴ ᎤᏚᎸᏗ ᏱᏄᎵᏍᏓᏁᎮ ᎩᎶ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᏄᏍᏛ ᏴᏫ, ᎠᎦᏔᎲᎩᏰᏃ ᏄᏍᏛ ᎭᏫᏂ ᎤᏪᎲ ᏴᏫ.\nᎢᎦᏛᏃ ᎠᏄᎦᎸᎯ ᎤᎳᎨᏯᏛᏤᎢ; ᎠᏄᎦᎸᏃ ᎢᏧᎳᎭ ᏗᎤᏛᏎᎢ, ᎠᎴ ᎤᏁᏄᎳᏍᏔᏁᎢ.\nᏣᏉ.\nᏣᎵ ᎨᏍᏗ ᏗᏟ ᏱᎩ.\nᎠᏎᏉ, ᎤᎸᏛ ᎡᏙᎰ ᏃᎴ ᎧᎾᏥᏍᏕᏥ ᏃᎴ ᏩᏚᎵᏏ ᎫᏩᏨᏯᏍᎪ ᏃᎴ ᏩᎶᏏ ᏃᎴ ᎢᎾᏓ ᏕᎦᏃᎯᎰ ᏗᏓᏁᎸ ᏃᎴ ᎢᏳᏍᏗᏉ ᎠᎡᏂᎲ ᎠᏲᏍᏗᏍᎪ.\nᏙᏰ ᏕᎦᏅᏙᎬ ᎠᏰᎳᏍᏗ ᏗᎦᏅᎯᏓ ᎾᎥᏂᎨ ᏂᏚᏍᏛ, ᎠᏯᏖᏅ ᎠᎫᏰᎸᏍᏗ.\nᏂᎦᏓ ᎾᏂᏪᏍᎨᎢ, ᎨᏍᏗ ᎯᎸᎢᏴ ᎤᏂᎪᎲ ᏱᎨᏎ ᏍᎩᎾᎾ ᎢᏳᏍᏆᏂᎩᏗ ᏏᏆ.\nᎠᏎᏃ ᎤᎵᏏᏂᏗ ᎤᏪᏅᏎ ᎤᏲ ᎤᎾᏗᏅᏗ. ᎪᎯᎢᏴ ᎱᎷᏤ ᎠᎦᎸᏓ ᎤᏥᎸ ᎠᎿᏬ ᎤᏃᎴ.\nᎠᎩᏁᎢᏍᏔᏅ ᎠᎦᎸᏥ ᎠᏆᏙᎴᏋ, ᎦᏬᏂᏍᏗ ᎠᏙᎴᏆᏍᏙᏗ ᏃᎴ ᎢᏗᎦᏪᏍᏗ ᎧᏃᎮᏍᎩ ᏗᎬᏗ. ᏍᎦᏫᏍᏗ ᎠᎦᎸᏥ ᎪᏪᎵ ᎠᏆᏚᎵᏍᎬ ᏗᎩᎪᎵᏰᏗ, ᎾᏍᎩᏂ Rousseau's Meditations of a Solitary Walker ᏃᎴ Abbé Prévost's Manon Lescaut, ᎢᏧᎳ ᎠᏆᏟᏂᎬᏁᎸ ᏚᎵᎬᏩᏢ, ᎭᏉ ᎠᎩᎾᎩᏛ ᎠᎩᏰᎸᏅ Voltaire.\nᎾᏍᎩᏃ ᎤᏇᏓᎵ ᏄᏍᏛ ᏕᎤᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒᎢᏳ; ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ-ᎠᏓᏲᏁᏗ ᎨᏒᎢ, ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎦᏓᎭ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏁᎫᏥᏛ ᎨᏒᎢ,\nᎢᏳᏃ ᏰᎵ ᏂᎨᏒᎾ ᏱᎩ, ᎠᏏ ᏐᎢ ᎢᏅᎯᏳ ᏨᎢᏐᎢ, ᏕᎦᏅᏍᎪ ᏧᏅᏏᏛ ᎠᏔᏲᎯᎰ ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ.\n”Ꭾ ᏧᏍᏆᏴᏍᏗ?” ᏭᏛᏁ.\nᏣᏉᎩ ᎪᎰᏍᏗ ᏱᏂᏓᎦᎵᏍᏔᏂ.\nᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᎦᎾᏏᏍᎩ ᏂᎨᏒᎾ, ᏗᏓᏛᏂᎯ ᏂᎨᏒᎾ, ᏧᎬᏩᎶᏗ ᎤᎬᎥᏍᎩ ᏂᎨᏒᎾ, ᎤᏓᏅᏘᏍᎩᏂ, ᏧᏘᏲᏌᏘ ᏂᎨᏒᎾ, ᎠᏕᎸ ᏧᎨᏳᎯ ᏂᎨᏒᎾ.\nᎨᏍᏗ ᎣᏍᏓ ᎦᏰᎵᏍᏗ ᏱᎨᏎᎢ ᎤᏍᏗ ᎠᎨᏳᏣ ᏓᏍᏆᏂᎪᏍᎬ ᏗᎦᎾᏌᎢ.\nᎿᏉᏃ ᎢᏨᏁᏤᎭ, ᎢᏓᎵᏅᏟ, ᎣᏨᏗᎭ ᏚᏙᎥ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᏗᏣᏓᏓᎴᏓᏁᏗᏱ ᎾᏂᎥ ᎠᎾᎵᏅᏟ ᎤᏣᏘᏂ ᎢᏯᎾᏛᏁᎵᏙᎯ, ᎠᎴ ᏂᏓᏂᎧᎿᏩᏕᎬᎾ ᏗᏕᏲᏗ ᎨᏒ ᎠᏴ ᏗᎪᎦᏓᏂᎸᏤᎸᎯ,\nᎠᏰᎸᏰᏃ ᎥᏝ ᏌᏉᏉ ᎤᏫᏞᏫᏒ ᏱᎩ, ᎤᏣᏘᏍᎩᏂ ᏚᏫᏞᏫᏒᎢ.\nᏥᏁᎢᏍᏗᎭ ᎾᏍᎩ Ꮎ ᎤᎵᎮᎵᏍᏗ ᏣᎩᎭ ᏂᎯ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎣᎦᏤᎵ ᏨᏗᏓᎴᎲᏍᎦ, ᏥᏲᎱᏍᎪ ᏂᏚᎩᏨᏂᏒᎢ.\nᏌᏉᏃ ᎠᏔᎸ ᏥᏳ ᎤᏣᏁᎢ ᎾᏍᎩ ᏌᏩᏂ ᎤᏤᎵᎦ ᎨᏎᎢ, ᎠᎴ ᎤᏔᏲᏎᎴ ᎤᏍᏗᎩᏛ ᎢᏴᏛ ᏭᎧᏙᏯᏍᏗᏱ. ᎤᏪᏁᏃ ᎠᎴ ᏚᏪᏲᏁ ᎤᏂᏣᏘ ᏥᏳᎯ ᎬᏩᏣᎢ.\nᎠᏍᎪᎯᏧᏈᏃ ᏗᏘᏂᏙᎯ ᎠᎢᏗᏢ ᏧᏳᎪᏗ ᎦᏙᎩ, ᎤᏙᎴᎰᏒ ᎾᏍᎩ ᎤᏪᎷᏅᎢ, ᎠᎴ ᎤᎵᏍᏆᏕᎸᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯ ᎯᎠ ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᎢ.\nᏕᏗᎶᏅᎲᎳ ᎠᏂᎪᏕᏍᎩ, ᏃᎴ ᏍᏉ ᏂᎦᏓ ᎠᏂᏐᎢ.\nᎠᏏᏉᏃ ᏈᏓ ᎠᏓᏅᏖᏍᎨ ᎤᏁᎳᏫᏎᎸᎢ, ᎠᏓᏅᏙ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎠᏂᏦᎢ ᎠᏂᏫᏅ ᎨᏣᏲᎭ.\nᎠᏓᏅᏙ ᎠᏓᏪᎵᎩᏍᎬ ᏞᏍᏗ ᏴᎠᏗᏍᎨᏍᏗ.\n”ᎡᏆ ᎬᏂᎨ ᎤᏍᎪᎸ.\nᏞᏍᏗ ᎢᏣᏓᏅᏙ ᏳᏕᏍᏔᏁᎮᏍᏗ; ᎡᏦᎢᏳᎲᎦ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᏍᎩᏲᎢᏳᎲᎦ.\n“ᎯᎦᏔᎭᏍᎪᏃ ᎤᏰᎸᏛ ᎭᎵᏦᎯᏓ ᏥᏂᎨᏨᏁ?\nᎠᎴᏬ ᏠᎠᏏ ᏗᎩᎷᏨ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎠᏆᎵᏥᏙᏂᎸ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎠᎩᏍᏚᎩᎡᎸ ᎤᎬᏫᏳᎯ,\nᏐᏉ ᎢᎦ ᎤᏍᏗ ᎠᏣᏗ ᎠᏓᎾᏫᏗᏍᎬ ᎤᏭᏓᎸᏤᎢ ᏚᏏᎳᏛ.\nᏂᏥᏪᏎᎸ ᎠᏉᏪᎳᏅ To C - ,  ᏥᏃᎯᏎᎸ ᎤᏃᏪᎳᏅ Arcadian ᎪᏪᎵ.\nᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎸ ᎤᏃᏁᎸᎯ; ᎦᎪ ᎡᏥ? ᎠᎴ ᎦᎪ ᎣᏣᎵᏅᏟ?\nᎤᏅᏓᏒ ᎾᎥᏂ ᎤᏍᏗ ᎠᎹ ᎦᏁᎮᎢ.\nᎤᏍᎩ ᎾᎿ ᏭᏓᎪᎾᏛᏔᏅᎯ ᎡᏉᎯᏳ ᎠᎴ ᎦᎸᏉᏗᏳ ᎡᎩᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎯᎠ ᏕᏨᏗᏍᎬ ᎨᏣᏠᏯ ᏍᏙᏗ ᏱᏂᎦᎵᏍᏓ ᎤᏁᎳᏅᎯ ᏄᏍᏛᎢ, ᎡᏣᏗᏫᏎᎸᎯ ᎨᏒ ᎤᏲᎢ ᎡᎶᎯ ᏤᎭ ᎠᏚᎸᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ.\nᏍᏈᏍᏓ ᏂᎦᎵᏍᏗᏍᎬ ᎨᏍᏗ ᏯᎦᏔᎭ ᏫᎵᎻ ᎡᎵᏍᎨ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ, ᏕᎤᎦᎵᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᎯᏍᏗ ᎤᏪᎲᎢ, ᎥᏝᏰᏃ ᏴᎵ ᏂᎪᎯᎸ ᎾᏍᎩ ᎬᏩᏂᏴᏗ ᏱᎨᏎᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ, ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᏕᏨᏅᎢ, ᎢᏳᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ; ᎠᎴ ᏗᏥᏰᎸᎢ, ᎢᏳᏍᏗ ᏗᏣᏄᏬᏍᏗᏱ.\nᎠᏎᏃ ᎤᏒ ᎢᎪᎯᏓ ᏫᎨᏙᎲ ᏧᎾᏦᎯᏍᏗ, ᎬᎩᎸᏉᏗᏍᎬ ᎠᏂᎨᏯ ᎠᏂᏯᎢ.\n“ᎤᎵᏬᏨᏉ ᏱᎩ,” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎤᏛᏅ.\nᎾᎥᏗ ᏧᏩᏓᎾᏏᏂᎴ ᎠᏂᏃᏟᏙ ᎦᏙ ᏗᏔᎳᎧᏒᎢ ᏃᎴ ᏗᎦᏟᏓ ᎫᎾᏗ ᏣᏚᏂᏲᎴ ᏍᎩᎾ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎠᏎᏃ ᏣᏓᎳᏍᏆᎵᏍᏗᏍᎨ ᏗᎦᏟᏓ ᏃᎴ ᎡᎳᏗ ᏣᏗᏥᏤᎮ ᏍᎩᏴ ᏯᏚᏅᏂᎵ ᏅᏱ ᎦᏁᎦ.\nᏍᏈᏍᏓ ᎠᎾᎴᏫᏍᏗᏍᎨ ᎤᎾᎧᏙᏍᏕ ᏃᎴ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎦ ᎤᏁᎦᎸ, ᎤᏓᏅᏘ ᏃᎴ ᎤᏔᎷᎩᏍᎩ ᏗᎧᏃᏗ.\nᏣᏂᏰᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏎ ᎡᎶᏛ, ᎥᏝ ᏱᏚᏳᎪᏗ ᎡᏣᏅᏟ ᎤᏓᎵᎢ ᏣᏓᏰᎭ.\nᎾᏍᎩᏰᏃ ᏄᏍᏛ ᎢᏣᏓᎳᏫᏎᎸ ᎠᏎ ᎾᏍᏉ ᏛᎡᏥᎳᏫᏎᎵ, ᎠᎴ ᏄᏍᏛ ᎢᏣᏓᏟᎶᏒᎸ ᎾᏍᏉ ᏛᎡᏣᏟᎶᎡᎵ.\nᎨᏍᏗ ᎤᏂᎪᎲ ᏱᎨᏎ ᎢᎾᎨ ᎡᎯ ᎤᏛᏂᏗᎨᏍᏗ ᎣᎦᎾ, ᏩᏌᏅ ᎤᎾᏓᏅᏖᏗᏍᎬ.\nᎠᏆᏚᎵ ᎠᏆᏛᎵᏗ ᎤᏃᎴ ᏃᎴ ᎠᏆᎾᏏᏗ ᎤᏬᏚᏨ ᎠᎦᎵᏍᎬ.”\nᏂᎯᏍᎩᏂ ᎡᏣᏑᏰᏛ ᎢᏥᏠᏱ ᎨᏒᎢ, ᎢᏥᎬᏫᏳᎯ ᎠᏥᎸ-ᎢᏤᎶᎯ, ᎡᏥᎸᏉᏔᏅᎯ ᎢᏣᏓᏤᎵᏛ ᎨᏒᎢ, ᎤᏣᏘ ᏗᏣᎬᏩᎳᏅᎯ ᏴᏫ, ᎾᏍᎩ ᏧᎵᏏᎬᏫᏥᏯᏅᏛ, ᎤᏍᏆᏂᎪᏗᏳᏃ ᎢᎦ ᎦᎸᏌᏛ ᏫᏥᎧᏅᎯ;\nᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏂᎦᏛ, ᎢᏳᏃ ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎠᎩᏍᏓᏩᏛᏍᏗᏱ ᎤᏩᏒ ᎠᏓᏓᏱᎮᏍᏗ, ᎠᎴ ᎠᏱᏍᎨᏍᏗ ᏂᏚᎩᏨᏂᏒ ᎤᏤᎵ ᏧᏓᎿᏩᏛ, ᎠᎴ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ.\nᎩᎶ ᎠᏂᏍᎦᏅᎬ ᎬᏂᎨᏒ ᎨᏐ ᎢᎬᏪᏅᏛ, ᎢᎬᏱ ᏫᎦᎷᎪ ᏗᎫᎪᏙᏗᏱ ᎨᏒᎢ, ᎩᎶᏃ ᎤᎨᏍᏓᏩᏕᎪᎢ.\n“ᎭᏗᏓ!” ᎤᏪᎷᏁ ᏫᎵᎻ.\n“ᎨᏍᏗ ᎪᎱᏍᏗ ᏯᏕᎶᎰᏍᎦ ᏃᏉ,” ᎤᏛᏁ.\nᎥᏝᏍᎩᏂ ᎤᏁᎳᎩ ᏱᏥᏰᎵᏎ ᎠᎨᏴ ᏧᏕᏲᏗᏱ ᎠᎴ ᎤᏓᎵᏁᎯᏕᏗᏱ ᎠᏍᎦᏯ, ᎡᎳᏪᏱᏉᏍᎩᏂ ᎤᏩᏗᏱ.\nᎮ ᏣᎵ, ᎤᎦᏃᏮ ᎭᎲᎦ ᏥᏲᏎᎸ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏔᎵᏁᎢ, ᎠᎴ ᏦᎢᏁᎢ, ᎦᎵᏉᎩᏁ ᏫᎬᏗᏍᎩ.\nᏎᎦᏨ, ᏐᏉ ᏑᎾᎴᎢ ᎫᏰᏉᏂ ᎠᏰᎵ ᎠᏰᎵᏒ,” ᎤᏓᏅᏖᎴ.\nᎠᏔᎴᎦᏒ ᎤᏩᏌ ᎤᏍᎪᏒ ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎠᏍᎦᏯᏯ ᎨᏒ.\nᎠᏓᏫᏰᏃ ᎢᏳᏩᏂᏌᏛ ᏂᎦᏗᏳ ᏥᏓᏂᏲᎱᏍᎦ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᏂᎦᏗᏳ ᏗᏅᏃᏛ ᏅᏛᎨᎬᏁᎵ.\nᎤᏬᏗᎨ ᏓᏥᏍᏛ ᏓᏓᎾᏇᏍᎬ ᏕᎪᏪᎵᏍᎬ.\n“ᎯᎠ ᏏᏆ ᎠᎬᏱ ᎠᏓᏔᎶᎯ ᎦᏳᎳ.” \nᎤᎾᎦᏙᏍᏕᎢ ᏗᎦᏃᏣᏢ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ.\nᎤᏥᏯ.\n“ᏃᎴ ᏤᏍᏗ ᎦᏓᎭ ᏱᏂᏍᏔᎵᏍᏔᏁᏍᏗ!”\nᎠᎬᏂᏗᏳᏃ ᎨᏒ ᎣᏩᏒ ᎣᏓᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎾᏓᏛᏁᎲᎢ; ᎣᏩᏒᏃ ᎣᏓᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᏓᏩᏛᎡᎲᎢ;\nᎤᏘᏲᎸ ᎦᎷᏯᏍᏗ, ᏂᎦᏓ ᏚᏅᏓᏒ, ᏧᏍᏗ ᏕᎨᏴ ᏧᏔᏂᏛ ᏕᎨᏴ ᏫᏗᎦᎷᎩ, ᏂᎦᏓ ᎤᏲᎢᏴ.\nᏂᎬᎾᏛ ᎤᎧᏖᏃᎴ ᏫᎵᎻ.\nᎦᎵᏦᏕ ᏭᏴᎴ ᏃᎴ ᏭᎦᏛᏁ ᏧᎿᏬ ᏧᏍᏆᏂᎪᏙᏗ.\nᏙᎮᎵᎠ?”\nᎥᏝᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎠᎰᎵ ᏭᏴᎸᎯ ᎦᏓᎭ ᏱᏄᏩᏁᎰ ᏴᏫ, ᎠᎰᎵᏍᎩᏂ ᏅᏓᏳᏄᎪᏨᎯ ᎾᏍᎩ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ.\n“ᎤᏙᎯᏳᎭᏗ” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ.\nᎠᎴ ᎾᏍᏉ ᎾᏂᎥ ᎤᎾᏚᎵᏍᎩ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᎨᏒ ᎤᏂᏍᏓᏩᏛᏍᏗᏱ ᎦᎶᏁᏛ ᏥᏌ ᎠᏃᎯᏳᎲᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎾᏍᎩ ᎠᏎ ᎤᏲ ᎢᎨᎬᏁᏗ.\nᏣᏁᎳ ᏧᏕᏘᏴᏓ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏥᎸᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮ ᎤᎯᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎾᎯᏳ ᎤᎵᏱᎶᎸ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎾᎿ ᎨᎸᎢ,\nᎠᎴ ᎤᏂᏌᎳᏓᏁ ᎠᏂᏁᎬ ᎯᎠ ᏄᏂᏪᏎᎢ, ᏥᏌ ᏔᏕᏲᎲᏍᎩ, ᏍᎩᏯᏙᎵᎩ.\nᎣᏍᏓ ᎠᏆᏅᏛ ᏓᏥᏃᎡᎵ.\nᏅᏯ, ᏧᏆᎶᎦ, ᏃᎴ ᏅᎩ ᏗᏂᏅᏌᏗ ᏰᎵᏉ ᎦᏓ ᏫᎾᎵᏍᏗ.\nᎤᎦᎿᏩ ᏍᏊ ᎨᏒ.\nᎠᏎᏃ ᏰᎵ ᏎᎦ ᎣᎩᎾᎵᎪᏅ ᏍᎩᎾ ᎠᏍᎦᏯ, ᎠᏆᏕᎶᎰᏒ ᎤᎵᏗᏨ ᎡᏙᎲ ᎬᏂᎨ ᎠᏥᎾᏌᎢ ᎢᎪᎯᏛ ᏃᎴ ᎤᏓᎴᏨ ᏳᏩᏁᎦ ᎦᏬᏂᏍᎬ Bermuda ᏭᏙᎴᏋ.\nᏕᏥᏍᏆᏂᎪᏙ ᏓᏙᏓᏇᎬᎢ, ᎠᎴ ᏓᏦᎳᏁᎬᎢ, ᎠᎴ ᏓᏍᏆᎸᎮᎬᎢ, ᎠᎴ ᏓᏕᏘᏴᎮᎬᎢ.\nᎡᏙᏓ ᎦᏁᎸᎢ ᎤᏣᏔ ᏓᏓᏁᎸ. ᎢᏳᏃ ᎾᏍᎩ ᏄᏍᏛᎾ ᏱᎨᏎᎢ, ᏱᏨᏃᏁᎴᎢ. ᎦᏛᏅᎢᏍᏔᏂ ᎢᏥᏴᏍᏗᏱ.\n“ᎨᏍᏗ ᎠᏆᏛᎦᏅ ᏱᎩ ᏐᏉ ᎪᎱᏍᏗ ᎤᏛᏅ,” ᎤᏛᏁ.\nᎢᎦᏓ ᏧᏂᏯᎩᏍᏗ.\nᎪᎯᏃ ᎨᏒ ᎠᏁᎭ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩ ᏦᎢ; ᏭᏓᎪᎾᏛᏛᏍᎩᏂ ᎦᎸᏉᏗ ᎬᏒ ᎠᏓᎨᏳᏗ ᎨᏒᎢ.\nᎣᏏᏉᏍᎪ ᎯᏰᎵ?”\nᏗᏃᏪᎵᏍᎩᏂ ᏧᎾᏤᎵ ᎠᎴ ᎠᏂᏆᎵᏏ ᏚᏂᏔᎳᏬᎯᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙᏃ ᎢᏧᎳᎭ ᎢᏣᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎢᏣᏗᏔᏍᎦ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾᎢ?\nᎾᏍᎩᏃ ᎤᏄᎪᏨ, ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉ ᏴᏫ ᎤᏪᏥ ᎠᏥᎸᏉᏓ, ᎾᏍᎩᏃ ᏂᎬᏂᏌ ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏓ.\n”ᎨᏍᏗ ᏯᏆᏚᎵ ᎥᎩᏍᏗ.\nᏥᎾᏝᎥᎢ ᎤᏍᏗ ᏐᏈᎵ ᎤᎵᏎᎩᏳ ᏯᏰᎸᎭ\nᎨᏍᏗ ᎠᎾᏓᏍᏔᏴᎲᏍᎩ ᏱᎨᏎ ᎠᏂᏧᏣ.\nᎡᎶᏛᏍᎩᏂ ᎤᏛᎦᏅ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᏂ ᎯᎠ, ᎾᏍᎩ ᎠᏴ ᏥᏥᏍᎫᏕᏒᎩ; ᎾᏍᎩ ᏚᎴᎯᏌᏅ ᎤᏲᎱᏒᎢ.\nᏚᎾᏘᏃᎸᏃ ᏕᎦᎳᏫᎥ ᎢᎬᏱᏗᏢ ᏑᏂᎧᏁᎢ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏛᏛᏁᎢ,\nᎤᎵᎦᎵᏴᎮᎢ ᎠᏴᏤᏂ ᏫᎵᎻ.\n“ᎩᎶ ᏰᎵᎠ ᏦᎢ ᎾᏂᎥ ᎠᏂᏨᏯ ᏌᏌ, ᏦᎢ ᏌᏌ ᏃᎴ ᏔᎵᏍᎪᏐᏉ ᏌᏌ ᎠᏂᏓ.\nᏌᏩᏂ, ᎾᏍᎩ ᎾᏍᏉ ᏈᏓ ᏚᏬᎡᎢ, ᎡᏂᏗᏃ ᎾᏍᎩᏉ ᎤᏅᏟ. ᏥᎻ ᎠᎴ ᏣᏂ, ᏈᎵᎩ ᎠᎴ ᏆᏙᎳᎻ,\nᎠᎴ ᎤᏁᎳᏅᎯ ᏙᏓᎦᏅᎦᎸᎯ ᏂᎦᏛ ᏓᏂᎦᏌᏬᎢᎲᎢ; ᎥᏝ ᎠᎴ ᎿᏉ ᏰᎮᏍᏗ ᎠᏲᎱᎯᏍᏗ, ᎠᎴ ᎤᏲ ᎠᏰᎸᏗ ᎨᏒ, ᎠᎴ ᏗᏠᏯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎿᏉ ᏰᎮᏍᏗ ᎡᎯᏍᏗ ᎨᏒᎢ; ᎢᎬᏱᏱᏰᏃ ᏧᏓᎴᏛ ᏤᎲ ᎤᎶᏐᏅ.\nᎦᎶᏁᏛᏍᎩᏂ ᎤᎷᏨᎯ ᏥᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎢᏳᎵᏍᏔᏅᎯ ᏧᎸᏫᏍᏓᏁᏗᏱ ᎣᏍᏛ ᎨᏒ ᎤᎬᏩᎵ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎨᏒᎩ, ᎾᏍᎩ ᏴᏗᏍᎬ ᎢᏟ ᎢᎦᎸᏉᏗ ᎠᎴ ᏂᎦᎷᎶᏥᏙᎲᎾ ᎦᎵᏦᏛᎢ, ᎩᎶ ᏧᏬᏰᏂ ᏧᏮᏔᏅᎯ ᏂᎨᏒᎾ ᎤᏬᏢᏅᎯ, ᎾᏍᎩ ᏯᏛᏅ, ᎠᏁᎳᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ,\nᏂᎦᏓ ᎭᏂᎧᏔᎮᎢ.\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎥᏝ ᎦᎷᎶᎩ ᏂᎨᏒᎾ ᎢᎬᏁᎯ ᏱᎨᏎ ᎪᎱᏍᏗ; ᎤᏟᏍᎩᏂ ᎢᏝᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᏴᏔᏂᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎢᏛᏗᏍᎬ ᎾᎥ ᎦᏰᏗᎷᏤᏗ ᏥᏂᎦᎵᏍᏗᎭ ᎤᏁᎳᏅᎯ ᎦᎷᎶᎩ ᏂᎨᏒᎾ ᏂᎬᏁᎭ.\nᎠᏎᏃ ᏥᏌ ᎤᏙᎴᎰᏒ ᎾᎿᎤᏓᏅᏒᎩ; ᎤᏂᏣᏘᏃ ᎬᏩᏍᏓᏩᏛᏒᎩ; ᎠᎴ ᏂᎦᏛ ᏚᏅᏩᏅᎩ,\nᎾᏍᎩ ᏧᏂᏲᏒᎯ ᎨᏒᎢ, ᎬᏩᏟᏍᏗ ᏔᎵᏁ ᎢᏤ ᎢᎨᎬᏁᏗᏱ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᏚᎾᏓᏅᏛ ᏭᏂᎷᎯᏍᏗᏱ; ᎤᏅᏒᏰᏃ ᏔᎵᏁ ᎤᎾᏓᏛᏁᎸᎯ ᎢᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎠᎴ ᎬᏂᎨᏒ ᎬᏩᏕᎰᎯᏍᏔᏅᎯ ᎢᎩ.\nᎤᏁᎳᏅᎯᏰᏃ ᏰᎵᏉ ᎨᏥᏁᏗ ᎤᏣᏘ ᏄᏓᎴᏒ ᎪᎱᏍᏗ, ᎾᏍᎩ ᏂᎯ ᏂᎪᎯᎸ ᏂᏥᏂᎬᏎᎲᎾ ᎨᏒ ᏂᎦᎥ ᏧᏓᎴᏅᏛ, ᎣᏍᏛ ᎨᏒ ᎤᏣᏘ ᏗᎨᏥᎸᏫᏍᏓᏁᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏂᎥᏃ ᏴᏫ ᎤᎾᏰᎯᏍᏗᏳ ᎤᎾᏓᏅᏓᏕᎢ, ᎤᏣᏖᏃ ᏧᏓᎴᏅᏛ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᏚᏂᎸᏫᏍᏓᏁᎮ ᎨᏥᏅᏏᏛ.\nᎨᏍᏗ ᎡᎳᏗ ᎭᏫᏂ ᎾᎥᏂ ᏳᏓᏬᎠ.\nᎾᏍᎩ ᎢᏳᏃ ᏰᎵ ᎢᎬᏆᏛᏁᏗ ᏱᎩ, ᎾᏍᎩ ᎢᏯᏋᏂᏐᏗᏱ ᎤᎾᏟᏂᎬᏁᏗᏱ ᎣᎩᏠᏱ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎢᎦᏛ ᎦᏥᏍᏕᎸᏗᏱ.\nᎦᎸᏉᏗᏳᏍᎩᏂᏃᏅ ᎠᏓᏅᏙ ᎬᏂᎨᏒ ᏂᎬᏁᎭ ᏕᎦᏚᏩᏗᏒᎢ, ᎾᏍᎩ ᎬᎩᎦᏘᏴ ᎥᏆᎸᏍᏗ ᎨᏒ ᎠᎴ ᎤᏲ ᎢᏯᏆᎵᏍᏓᏁᏗ ᎨᏒᎢ.\nᏥᎩᏁᎸ ᎢᎦᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏧᎬᏩᎶᏗ ᎠᏲᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎦᏓᎭ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏍᎪᎸᎩ ᏂᎨᏒᎾ, ᏦᏒ ᎡᏥᏍᏆᏂᎪᏓᏁᎸᎯ ᏂᎯ,\nᏧᏙᏓᏋᏓ ᎦᏙᎨ ᏫᎵᎻ ᎾᎥᏂ ᏚᎧᏙᏍᏕ ᏧᏓᏣᎦᎸᏓ ᏧᏏᏩ ᏓᏏᎳᏛ ᏃᎴ ᎭᎴᏉ ᎾᏦᏱᎮᎢ.\nᎤᏕᎶᎰᏎᎢ ᏄᏍᏛ ᎤᏃᏴᎬ ᎠᏛᎵᏍᎬ, ᎤᏩᏙᎯᏴᏓ ᎦᏟᎮ ᎭᏫᏂ ᎧᏁᏍᎪ.\nᏑᏕᏘᏴᏓ ᏥᎨᏎ ᎤᏩᎧᎮ ᎤᏓᎵ ᏃᎴ ᎤᏪᏥ. ᎠᎨᏯ ᎤᎨᏳᎯ ᏃᎴ ᎤᏍᎦᎡᏅ ᏂᎨᏒᎾ ᏧᏔᎷᎩᏍᎩ ᏗᎦᏙᎵ ᎠᏧᏣ.\nᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᏁᎢᏍᏔᎾ ᎤᏍᏆᏂᎩᏗ ᎨᏒ ᏓᏏᎳᏛ.\nᎢᏳᏰᏃ ᏥᏍᎦᎾ ᏱᎩ, ᎠᎴ ᎬᎩᏲᎱᎯᏍᏗ ᎢᎦᎢ ᎠᎩᏍᎦᏅᏨᎯ ᏱᎩ, ᎥᏝ ᏱᏙᎬᏆᎵᏢᏫᏏ ᎠᎩᏲᎱᎯᏍᏗᏱ; ᎢᏳᏍᎩᏂ ᏄᏙᎯᏳᏒᎾ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᏥᎬᏇᎯᏍᏗᎭ, ᎥᏝ ᎩᎶ ᏰᎵ ᏗᎬᏩᏂᏲᎯᏎᏗ ᏱᎩ ᎠᏴ. ᏏᏐᎢ ᏫᏥᎥᏍᏓ.\nᎤᏁᎳᏅᎯᏰᏃ ᏂᏚᎨᏳᏅᎾ ᏥᎨᏎ ᏗᏂᎧᎾᏩᏗᏙᎯ ᎤᏂᏍᎦᏅᏨᎯ, ᏨᏍᎩᏃᏉᏍᎩᏂ ᏥᏫᏚᏓᎢᏅᏎᎢ, ᎠᎴ ᏥᏚᏲᏎ ᏧᏓᏕᏒᏛ ᏗᎨᎦᎸᏍᏙᏗᏱ ᎤᎵᏏᎬ ᎨᏥᏍᏆᏂᎪᏙᏗᏱ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏒ ᎢᏳᎢ,\nᎠᏴᏰᏃ ᏥᏲᎢᏳᏓᏁᎭ ᎾᏍᎩ ᎤᏣᏘᎢᏣᏕᎵᎯᏍᏓᏁᎲ ᏂᎯ ᎠᎴ ᎴᎣᏗᏏᏯ ᎠᏁᎯ, ᎠᎴ ᎭᏱᎳᏆᎵ ᎠᏁᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎦᎶᏁᏛ ᎬᏬᎯᏳᏗ ᏥᎩ, ᎾᏍᎩᏯ ᎠᏂᎨᏴ ᏗᎬᏩᏂᏰᎯ ᏧᏃᎯᏳᏗ ᏂᎦᎥ [ᏂᎬᏩᏂᏪᏎᎲᎢ.]\nᎠᏴᏍᎩᏂ ᏥᎦᏔᎭ, ᎾᎿᏰᏃ ᏅᏛᏆᏓᎴᏅᎯ, ᎠᎴ ᎾᏍᎩ ᏗᎩᏅᏒ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏍᏗᏰᏗᎭ ᎠᏴ ᏍᎩᏯᏕᎶᏆᎡᎯ ᎢᏣᎵᏍᏙᏗᏱ.\nᎬᏂᎬᎦ, ᏌᎳᏓ.\nᎠᏴ ᏉᎳ ᎠᎩᏅᏏᏛ ᏥᏌ ᎦᎶᏁᏛ ᏅᏧᎵᏍᏙᏔᏅ ᎤᏁᎳᏅᎯ ᎣᏏ ᎤᏰᎸᏅᎢ, ᎾᏍᎩᏯ ᎠᏚᎢᏍᏛ ᎬᏂᏛ ᎡᎩᏁᏗᏱ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᏨᏗᏓᎴᎲᏍᎦ;\nᏗᎩᎦᏴᎵᎨ ᎢᎾᎨ ᎤᏂᎮ ᎦᎵᏦᏛ ᎠᏙᎴᎰᎮᏍᏙᏗ, ᎾᏍᎩᏯ ᎤᏁᏨᎢ ᎼᏏ ᏧᏁᏤᎴ ᎤᏬᏢᏗᏱ ᏧᏟᎶᏍᏙᏗᏱ ᏄᏍᏛ ᎤᎪᎲᎢ.\nᎤᏇᏓᎵᏰᏃ ᎠᎦᏌᏯᏍᏙᏗᏱ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᎦᏘᎴᎩ; ᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᎧᎿᏩᏕᎩ ᏱᎩ, ᎥᏝ ᎠᎴ ᎤᏙᎩᏳᎯ ᎾᏍᎩ ᏰᎵ ᏱᏅᎬᏛᎦ;\nᎬᏩᎪᎲᏃ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎸᎩ. ᎠᏎᏃ ᎢᎦᏛ ᎤᎾᏜᏏᏛᎡᎸᏉ.\nᎠᏂᎨᏴ ᎾᏍᏉ ᎠᏂᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎤᎵᎶᎲᏍᎩ ᏱᎩ, ᎤᏐᏅ ᎠᎾᏓᏃᎮᏍᎩ ᏂᎨᏒᎾ, ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏂᎦᎾᏏᏍᎩ ᏂᎨᏒᎾ, ᎣᏍᏛ ᎨᏒ ᏗᎾᏕᏲᎲᏍᎩ;\nᎠᏓᏅᏙᏃ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎪᎱᏍᏗ ᏂᏗᏣᏢᏫᏎᎲᎾ ᏘᏍᏓᏩᏚᎦ. ᎾᏍᏉᏃ ᎯᎠ ᎾᏍᎩ ᏑᏓᎵ ᎢᏯᏂᏛ ᎢᏓᏓᏅᏟ ᎬᏆᎵᎪᏁᎸᎩ, ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᏗᎦᏁᎸ ᏬᎩᏴᎸᎩ.\nᎤᏰᏨ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎾᏍᎩᏯ ᎤᏬᏨᏗ ᏣᎩᏃᎮᎶ ᎠᎦᏴᎵ ᏌᎪᏂᎨ ᎬᎵ ᏗᎨᎮᎩ ᎩᏟ.\nᎥᏝ ᏥᏛᏓᏗᎧᏃ ᎢᏳᏍᏗ, ᏴᏫᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏗ; ᎦᎶᏁᏛᏍᎩᏂ ᏧᏅᏏᏓᏍᏗ ᎢᏳᎾᏛᏁᏗ, ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᏂᏣᏛᏁᎲᎢ, ᏗᏥᎾᏫᏱ ᏨᏗᏓᎴᎲᏍᎪᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏥᏙᎦ ᎡᎵᏍᎨᏍᏗ ᎨᏯᏔᎮᏍᏗ ᏱᎦᏅᎩᏰᏃ.\nᎤᎬᏩᎸᎩ ᎾᏍᎩ ᎪᎯ ᎨᏥᎸᏉᏗ ᎨᏒ ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᎨᏒ ᎦᎸᎳᏗᏳ ᏕᎨᏌᏗᏒᎢ, ᎤᏂᎦᏙᎥᎯᏍᏗᏱ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎠᎦᏙᎥᎯᏍᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎨᎬᏗᏍᎬ ᏧᎾᏁᏟᏗ ᎤᎾᏓᏡᎬᎢ;\nᎿᏉ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᏥᎷᎩ ᏄᏍᏛ ᏣᏚᎵᏍᎬ ᎢᏯᏆᏛᏁᏗᏱ ᏣᏁᎳᏅᎯ. ᎢᎬᏱᏱ [ᎤᏁᎢᏍᏔᏅ] ᎠᏲᏍᏗᎭ, ᎾᏍᎩ ᏔᎵᏁ [ᎤᏁᎢᏍᏔᏅ] ᎤᏍᏓᏱᏗᏍᏗᏱ.\nᏧᏓᎴᏅᏓ ᎤᏂᏑᎸᏓ, ᎠᎹ ᎤᎦᏃᏩ, ᏒᎧᏔ ᎦᏁᎦ, ᎠᏓᎶᏂᎨ ᏧᎾᏍᏕᏥ ᎦᏁᎦ, ᎭᏫᏯ ᎤᏂᏑᎸᏓ, ᏎᎷ ᏗᎦᏄᎳᎩᏓ ᏧᏂᎾᏦᏴᏍᏗ ᏃᎴ ᎤᏅᏗ ᎤᏍᏔᏲᏒ ᎦᏇᏅᏔᏅ.\nᏂᏥᎥᏰᏃ ᏤᏣᏬᎥᎯ ᏥᎩ ᎦᎶᏁᏛ ᎡᏣᎵᎪᏁᎲᎢ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎡᏣᏄᏬᎥ.\nᎪᎱᏍᏗ ᏕᎪᏪᎳ ᎧᏁᏌᎢ.\nᎾᏍᎩᏴᏃ, ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎧᏴᏐᎴ ᏧᏍᏆᏴᏍᏗ ᎤᏗᏍᎦᎶᏗ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ.\nᎠᏎᏃ ᎥᏝ ᏧᏃᎵᏤ ᎾᏍᎩ ᏄᏪᏒ ᎠᎴ ᎠᏂᏍᎦᎢᎮ ᎤᎾᏛᏛᏗᏱ.\nᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ ᏥᏕᏓᏛᎩᎠ ᏗᏗᏏᏴᏫᎭ ᏕᎦᏛᏒ ᏗᎩᏬᏂᎯᏍᏗ?\n“ᎠᏯᏗ ᏱᎬᏃᎯᏏ ᏓᏆᏙᎥ,” ᎤᏛᏁ ᎠᎬᏱ ᎧᏅᏂᏍᎩ, ᏱᏍᎩᏃᎯᏎᎳ ᎤᏰᎸᏛ ᏥᏣᏃᏫᎠ.”\n“ᎢᎦᏛ ᎠᏂᏴᏫᏯ ᏧᎾᏍᏗᎩᏓ ᏚᎾᎳᏑᏠᏓᎾᏗᏍᎪ ᎠᎴ ᏚᏂᏪᏍᏔᏁᎰ.\nᎾᏍᎩᏃ ᎾᏉ ᏥᏩᏘᎭ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎣᏍᏛ ᎢᏯᏆᏛᏁᏗᏱ ᎠᏆᏚᎸ, ᎤᏲ ᎨᏒ ᏓᎩᎧᎿᏩᏗᏙᎰᎢ.\nᎤᎵᏏᎩ ᎨᏎ ᏃᏉ, ᏭᎴᏅᎮ ᏚᎷᏫᏍᏔᏁᎲ ᏌᎳᏓ.\nᎤᏁᎳᏅᎯᏰᏃ ᏚᏙᎥ ᎬᏩᏂᏐᏢᏗ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ ᏂᎯ ᎢᏨᏂᏌᏛ, ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸᎢ.\nᎢᏳᏃ ᎩᎶ ᏄᎨᏳᏒᎾ ᎢᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎠᏥᏍᎩᏅᏛᎯ ᎨᏎᏍᏗ. ᎤᎬᏫᏳᎯ ᏓᎦᎷᏥ.\nᏳᎵᏍᏆᏙᎾ ᎢᎦ, ᎠᏗᏍᎬ ᎠᏌᎻᏓ, ᏧᎾᏦᏴᏍᏗ ᎪᏍᏔ ᏧᏅᏍᎦᏠ ᎢᏳᏍᏗ ᎤᏰᎸᎮ.\nᎥᏝ ᎠᎴ ᎿᏉ ᏗᎬᏩᏂᏲᎱᎯᏍᏗ ᏱᎨᏎᏍᏗ; ᏗᏂᎧᎿᏩᏗᏙᎯᏍᎩᏂ ᎦᎸᎳᏗ ᎠᏁᎯ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏄᎾᏍᏕᏍᏗ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎾᏍᎩ, ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᏧᏪᏥ ᎨᏒ ᎢᏳᏍᏗ.\nᎤᏂᎷᏤᏃ ᎠᎴ ᏚᏂᏍᏗᏰᏔᏁᎢ; ᏚᏂᏄ-ᎪᏫᏒᏃ ᏚᏂᏔᏲᏎᎴ ᎾᎿ ᎦᏚᎲ ᎤᎾᏓᏅᏍᏗᏱ.\n”ᏕᎭᏓᏟᏴᎲ ᏍᎩᎾᎾ ᎢᏣᏛᏁᏗ ᎨᏎᏍᏗ,” ᎤᏛᏁ, ”ᎠᏎᏃ ᏣᏓᏅᏘ ᎭᏅᏓᏛ ᎭᏂ ᎧᏁᏌᎢ ᎠᏆᏗᏍᎦᏢᎢ, ᎨᏍᏗ ᏯᏆᏚᎵ ᎥᏆᎳᏍᏛᏗ, ᎠᏆᎧᏛ ᎥᏆᎶᏕᏍᏗ, ᎠᎴ ᏍᏇᏅ ᎬᏗ ᎥᎩᎵᎥᏂᏍᏗ, ᎠᎴ ᎥᏆᏦᎥᏍᏙᏗ, ᎠᎴ ᎥᎩᎾᏑᎩᏍᏗ, ᎠᎴ ᎥᎩᏰᎵᏍᏗ.\nᎾᏍᎩ ᏥᏄᏍᏗ ᎬᏂᎨᏒᎢᏳ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏨᏒᏉ ᏕᏣᏓᏰᎢᎵᏙᎲᎢ. ᎦᏙᏃ ᎤᏟ ᎣᏏᏳ ᏂᏥᏰᎸᏍᎬᎾ ᏥᎩ ᎤᏲ ᎢᏰᏨᏁᏗᏱ? ᎦᏙᏃ ᎤᏟ ᎣᏏᏳ ᏂᏥᏰᎸᏍᎬᎾ ᏥᎩ ᏧᎬᏩᎶᏗ ᎡᏥᎩᎡᏗᏱ?\nᏞᏍᏗ ᎠᏎᏉ ᏱᏥᏰᎸᏍᎨᏍᏗ ᎠᏙᎴᎰᎯᏍᏗ ᎨᏒᎢ.\nᏌᏌ ᏍᏉ ᎾᎥᏂ ᎠᏁᏙᎮ ᎾᏍᎩᏯ ᎠᏂᏧᏣ ᏅᏬᏘ ᎤᏂᎾᏗᏅᏗ ᏣᏁᏙᎰ, ᏃᎴ ᏎᎷ ᏃᎴ ᏙᏈᏌᏂ ᏕᎨᏠᎮᎢ ᎰᎻ ᎤᎵᎮᎵᏍᏗ ᎤᎾᏓᏅᏖᏗ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᏂᎯ ᎡᏥᏁᎸᎯ ᎢᏦᎵᏍᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎠᏂᏐᎢᏍᎩᏂ ᏗᎨᎦᏟᎶᏍᏓᏁᏗ; ᎾᏍᎩ ᎠᏂᎪᏩᏘᏍᎬ ᎬᏩᏂᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎠᎾᏛᎩᏍᎬ ᎬᏩᏃᎵᏍᏗ ᏂᎨᏒᎾ.\nᏔᎵᎾ ᎯᎠ ᏅᎤᏪᏎᎸᎩ; ᏌᏩᏂ, ᏦᎾ ᎤᏪᏥ, ᏍᎩᎨᏳᎭᏧ? ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᎥ ᏣᎬᏫᏳᎯ, ᎯᎦᏔᎭ ᎬᎨᏳᎢᏳ ᎨᏒᎢ. ᎯᎠ ᏄᏪᏎᎸᎩ; ᏕᎮᎶᎮᏍᏗ ᏗᏆᏤᎵᎦ ᎤᏂᏃᏕᎾ.\nᎾᏍᎩ ᎬᏩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ, ᏂᎪᎯᎸ ᏕᎨᏌᏗᏒᎢ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎡᎺᏅ.\nᏓᏂᏃᎩᎢᏍᏗᏍᎨᎢ ᎠᎵᏍᏆᏗᏍᎬ ᎪᎩ, ᎤᎯᏐᏗ ᎧᏃᎩᏍᏗ.\nᎤᏚᎵᏍᎨᏍᏗ ᎤᏛᎪᏗ.\n“ᏣᏁᎸᏔᏅᎯᏍᎪᏃ ᏣᏏᎳᏛᏗ?” ᎤᏛᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ.\nᎢᏨᎨᏳᎢ, ᎢᏳᏃ ᎠᏆᏟᏂᎬᏁᎸ ᏫᏨᏲᏪᎳᏁᏗᏱ ᏂᎦᏗᏳᏉ ᎢᎦᏤᎵ ᎢᎦᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ, ᎤᏚᎸᏗ ᎾᏆᎵᏍᏓᏁᎸᎩ ᏫᏨᏲᏪᏔᏁᎲ ᎢᏨᏍᏗᏰᏙᏗᏱ, ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎢᏣᏗᏒᏎᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎦᏳᎳ ᏗᎨᏥᏲᎯᏎᎸᎯ ᏥᎩ ᎤᎾᏓᏅᏘ.\nᏖᎾᎾᏏᎾᎩ ᎯᏍᎪᎵ, ᏃᏉ ᏛᎾᎢ.\nᎭᏫᏂᏰᏃ ᏅᏓᏳᏓᎴᏅᎯ, ᏴᏫ ᎤᎾᏫᏱ, ᏗᏓᎴᎲᏍᎦ ᎤᏲ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎠᏓᏲᏁᏗ ᎨᏒᎢ, ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᏓᎯᏍᏗ ᎨᏒᎢ,\n”ᏙᎢᏳᏍᏗ ᎤᏍᏆᏂᎩᏗ ᏏᏆ.” ᎤᏛᏛᏁ ᎠᎳᏂ, ᎩᎳ ᎣᏍᏓ ᏄᎵᏍᏗᏍᎨᎢ ᎤᏍᎦᏍᏓᏁᎸ.\nᎰᏩᏃ ᎤᏂᏟᏌᏅᎩ, ᎠᎴ ᏔᎳᏚ ᏔᎷᏣ ᏚᏂᎧᎵᏍᏔᏅᎩ ᎤᎵᎬᎭᎷᏴᎯ ᎯᏍᎩ ᎤᏣᎴᏍᏗ-ᎢᏳᏍᏗ ᎦᏚ ᎾᏍᎩ ᎤᎾᎵᏍᏓᏴᏅᎯ ᎤᎾᏘᏰᎸᎯ.\nᎠᏋᏌ ᏓᎦᏕᎶᎣᏏ.”\nᎡᏝᏪᎯ ᏚᎪᎵᏰᎥ ᏓᏴᏈᏛ ᎪᏪᎵ ᏗᎪᏪᎵᏍᎩ.\nᏰᎵᏉ ᏂᎯ ᏣᎬᏫᏳᎯ ᎦᏰᏣᏁᎢᏍᏓᏁᏗ ᎡᏣᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎡᏤᎸᏉᏙᏗ ᎨᏒ, ᎠᎴ ᏣᎵᏂᎩᏗᏳ ᎨᏒᎢ; ᏂᎦᏗᏳᏰᏃ ᎪᎱᏍᏗ ᏦᏢᏅᎯ, ᎠᎴ ᎭᏓᏅᏖᏍᎬ ᎢᏨᏁᎵᏓᏍᏗᏱ ᎡᎭ, ᎠᎴ ᎪᏢᏅᎯ.\nᎠᎨᏴᏃ ᎤᎵᏘᏒᎩ ᎢᎾᎨ ᏭᎶᏒᎩ, ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏛᎾᎢᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎠᎨᎳᏍᏗᏱ ᏌᏉ ᎢᏯᎦᏴᎵ ᏔᎵᏧᏈ ᏑᏓᎵᏍᎪᎯ ᏧᏒᎯᏛ.\nᎾᏍᏉᏃ ᎠᏕᎸ-ᎠᏂᎩᏏᏙᎯ ᎤᏂᎸᏐᎴ ᏗᎨᎦᏬᏍᏗᏱ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏓᏲᏣᏛᏁᎵ?\nᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏂᏣᏘ ᎦᎸᎳᏗ ᎠᏁᎯ ᎬᏩᎵᎪᏁᎴ ᏗᎧᎿᏩᏗᏙᎯ, ᎤᏁᎳᏅᎯ ᎠᏂᎸᏉᏗᏍᎨᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ;\nᎠᎴ ᏗᎩᎸᏙᏗ ᏗᏍᏓᏛᏅᎢᏍᏓ ᎾᏍᎩ ᏉᎳ ᎠᎾᎩᎸᏔᏅᎭ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏩᎾᏘᏃᎮᎸᎭ ᏈᎵᏏ ᎤᎬᏫᏳᎯ.\n“ᎡᏯ!” ᎤᏪᎷᏁ.\nᏁᏓᏂᎵᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏰᎵᏍᎪ ᎪᎱᏍᏗ ᎣᏍᏛ ᏅᏓᎬᏩᎾᏄᎪᎢᏍᏗ ᎾᏎᎵᏗ? ᏈᎵᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏁᎾ, ᏩᎦᏔ.\n”ᎲᎦ ᎢᏳᏩᏂᎸ?” ᎡᏝᏪᎯ ᎤᏛᏛᏁ ᏌᏌ.\nᎠᏓ ᎠᏍᏆᎸᎩᏓ ᎤᏬᏢ ᎠᏥᏲᎴ ᎠᏫᎾ, ᎤᏍᎦᎸ ᎨᏎ ᎤᎴᏗ.\nᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ ᎾᎯᏳ ᎢᎦ ᏴᏫ ᎤᏪᏥ ᎦᎾᏄᎪᏂᎸᎭ.\n”ᏃᏉ ᎱᎳᏛᎥᎦ ᏗᏣᏏᎳᏛᏙᏗ, ᎭᏓᎾᏫᏓ, ᎡᎳᏗ ᎾᏛᏁᎲ ᏩᏓᏏᎳᏛᎥᎦ!”\nᎤᎩᏨᏓᏍᎩᏂ ᎤᏒ ᎤᏠᏱ ᏄᏛᏁᎸ.\nᎤᎵᏗᏨ ᎤᏬᏟ ᎠᏍᎦᏯ ᎤᏕᎸ ᎦᏅᏃᏩ Perry. ᎫᎭᎳᎲ ᎤᏅᎦᎳᎲ, ᏔᎵ ᎢᏳᏩᎬᏘ ᎤᏬᎦᏒ ᏃᎴ ᏭᏓᏕᎸ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏗᎨᏚᎪᏓᏁᏗ ᎨᏒᎢ? ᎥᏝᏍᎪᏃ ᏰᎵ ᏱᏙᎨᏚᎪᏓ ᎪᎱᏍᏗ ᎪᎯᏉ ᎨᏒ ᎤᎬᏩᎵ?\nᏭᏩᎦᏘᏗᏒ ᎮᎲᎢ ᎣᏏᏉ ᎨᏎᏍᏗ.\n”ᏙᎢᏳᏍᏗ?” ᎤᏛᏁ ᎧᏅᏂᏍᎩ.\nᎤᏍᏆᏙᏅ ᎧᏃᎮᏍᎬ ᎤᏃᎮᏗ ᎦᎷᏯᏍᏗ, ᎠᏯᏍᏉ ᎠᏆᏓᏅᏖᏔᏅ ᎢᏳᏍᏗ ᎤᏲ ᎣᎩᎭᏲᎮᏗ ᏣᎵ, ᎠᏂᏲᏍᎩ ᎠᏂᎷᏨ.\nᎣᎭᏂ ᎤᎦᏎᏍᏙᏗ ᎠᏌᎻᏓ, ᏅᎩ ᎢᏳᏩᎭᏂᎸ ᎠᎴᏂᏍᎩ ᏅᏙ ᎧᎸᎬ ᎢᎪᎯᏛ, ᎠᏂᏐᎢ ᏦᎢ ᎠᏂᏧᏣ ᏭᏲᎢᏴ ᎤᎾᎦᏎᏍᏙᏗ, ᎠᏂᏔᎵᎭ ᎢᏯᏂ ᎤᏂᏰᏨ, ᎢᎪᎯᏛ ᏐᏉ ᏱᎦᏟ, ᏔᎵ ᎢᏳᏪᏅᏍᏘ ᏓᎾᏍᏕᏓᎵᏴᏍᎬ.\nᎾᏍᎩᏃ ᎦᎵᏉᎩ ᏧᏙᏓᏆᏛ ᎤᎶᏐᏅ, ᎣᎦᏂᎩᏒᎩ, ᏬᏥᎦᏛ ᎢᏗᏢ ᏬᎩᎶᏒᎩ; ᏂᎦᏛᏃ ᎾᏍᎩ, ᎠᎴ ᏧᎾᏓᎵᎢ ᎠᎴ ᏧᏁᏥ ᏗᎬᎾᏘᏁᎯ ᎦᏚᎲ ᏫᏚᎾᏄᎪᎬ ᏫᏕᎪᎩᎧᏅᎩ. ᎠᎹᏳᎶᏗᏃ ᏙᎦᎵᏂᏆᏅᏅ ᎣᎦᏓᏙᎵᏍᏔᏅᎩ.\nᎤᏲ ᏫᏄᎾᎵᏍᏓᏏ! ᎨᎾᏰᏃ ᎤᏅᏅ ᎤᏂᏍᏓᏩᏕᏅ, ᎠᎴ ᎨᎦᎫᏴᏓᏁᏗ ᎤᎾᏚᎵᏍᎬ ᎤᏂᎬᎥᏍᎬ ᎤᏂᎨᎮᎾ ᏇᎳᎻ ᎤᎵᏓᏍᏔᏅ, ᎠᎴ ᎨᏥᏛᏔᏅ, ᏚᏂᎦᏘᎸᏒ ᎪᎵ ᏧᎦᏘᎸᏛ ᎨᏒᎢ.\nᎠᎴ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎠᎹ ᏥᏕᏣᎪᎲᎩ, ᎾᎿ ᎤᏁᎫᏥᏛ ᎠᎨᏴ ᏧᏬᎳ, ᏴᏫ ᎦᏛᎦ, ᎠᎴ ᎤᏂᏣᏘ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏤᎵᏗ ᏴᏫ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ.\nᎠᏎᏃ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᎡᏍᎦ ᎬᏰᎸᎾᎲ ᎢᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᎿ ᏕᏣᎧᎲ ᏇᎳᎻ ᏓᏕᏲᎲᏍᎬ ᏧᏂᏂᏴᎯ, ᎾᏍᎩ Ꮎ ᏇᎳᎻ ᏇᎳᎻ ᏧᏪᏲᏁ ᎢᎬᏱᏗᏢ ᏧᏁᏗᏱ ᏧᏃᏕᎯᎯ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏂᎩᏍᏗᏱ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ, ᎠᎴ ᎤᏕᎵᏛ ᏧᎾᏂᏏᏗᏱ.\nᏅᎩᏍᎪ ᎢᏯᏂ ᏱᎾᏓ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸ ᏔᎳᏚ ᎢᏯᏂᏛ; ᏥᎪ ᎾᏍᏉ ᏂᎯ ᏛᏣᏓᏅᏏ?\nᎢᎦ ᎤᏗᎴᎩ ᏄᎵᏍᏔᏁ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎥᏝ ᏴᏛᎦᎯᏄᎪᎢ, ᎬᏂ ᎤᎵᏍᏆᎸᏗ ᎠᏰᎵᎢᏯᏓᏅᏖᏗ ᎭᎫᏴᎲᎭ.\nᎠᎴ ᏓᎦᏟᏂᎬᏁᎵ ᎠᎩᎶᏐᏅᎯ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎨᏨᎨᏫᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᏄᎪ ᎢᏣᏓᏑᏴ ᎠᏁᎲᎢ, ᎠᎴ ᎢᏣᏖᎴᏛ ᎨᏎᏍᏗ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏞᏍᏗ ᎢᏣᏒᏂᎸᎩ ᎪᎱᏍᏗ ᎦᏓᎲᎢ; ᎠᏴᏃ ᏙᏓᏨᏯᏓᏂᎸᏥ,\nᎬᏂᏳᏉ ᏄᏍᏆᏂᎪᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎦᏴᎵᎨ ᎢᎩᏁᎸ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎦᏰᎪᏎᏗ ᏥᎩ. ᎡᎶᎯ ᎠᏴ ᏂᎩᎦᏔᎲᎾ ᏥᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏄᎦᏔᎲᎾ ᏥᎨᏒᎩ.\nᏕᏥᏯᎦᎭᎾᏅ ᎠᏌᎻᏓ.\nᎦᏣᏄᎸ ᎤᏪᏅᏒ, ᏂᎪᎯᎸᎾ ᏭᎷᏤ ᎨᏴ, ᎨᏓᎵ ᎤᏍᏔᏩᏛᏎ ᎨᏴ.\nᎧᏅᏂᏍᎩ ᎠᏎ ᎪᎱᏍᏗ ᎤᏛᏁᏗ, ᎠᏯ ᏥᏌᏛᎥᏍᎩ.\nᎦᏥᏔᏲᏎᎲ ᎠᏓᏍᏕᎸᏓ, ᏕᎬᎦᏆᎾᏂᏍᎬ, ᏄᏓᎴ ᎠᏓᏅᏙ ᎠᎦᎾᏬᏗᏍᎩ ᏩᏂᏃᎮᏍᎪ, ᎤᏙᎯᎤ ᎪᎯᏳᏗ, ᎦᎵᏬᎩ ᎠᏍᎦᏯ ᎦᎶᏁᏛ ᏧᏟᏃᎮᏙ ᎾᎥᏂᎨ.\nᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ, ᎨᎥ ᏄᏙᎯᏳᏒᎢ, ᎠᏗᎭ ᏱᎰᏩ, ᏂᎦᏗᏳ ᏙᏓᎬᏆᎵᏂᏆᏅᏁᎵ ᎠᏴ, ᎠᎴ ᏂᎦᏗᏳ ᎬᏂᎨᏒ ᏅᏓᎬᏩᏁᎵ ᎤᏁᎳᏅᎯ.\nᏫᏥ ᎢᎦ ᎤᏃᎴ ᎠᏲᏙᏗ ᏗᎾᏓᎢ ᎠᎾᏂᎩᏍᎨᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏌᏩᏂ, ᎠᎩᎭ ᎪᎱᏍᏗ ᎬᏲᏎᏗ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᏔᏕᏲᎲᏍᎩ, ᏂᏫᎪᎦ.\nᎤᎵᏍᏆᎸᏗᏃ ᎢᎦ, ᎾᏍᎩ ᎦᎸᏉᏗ ᎢᎦ ᎨᏒ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᏥᏌ ᏚᎴᏅᎩ ᎠᎴ ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏳᏃ ᎩᎶ ᎤᏔᏕᎩᏍᎨᏍᏗ, ᎠᏴ ᏩᎩᎷᏥ, ᎠᎴ ᏩᏗᏔ.\nᎢᏳᏃ ᎩᎶ ᏕᎨᎦᏨᏍᏗᏍᎬ ᏤᏅ-ᏍᏗᏱ ᏣᏯᏅᎲᎭ, ᏞᏍᏗ ᏄᎬᏫᏳᏒ ᏗᏂᏢᏗᏱ ᏣᏂᏏᏅᎩ; ᎤᏟᏰᏃ ᎢᏯᏥᎸᏉ-Ꮧ ᎡᏍᎦᏉ ᏂᎯ ᏩᏥᏯᏅᏛ ᏱᏂᎦᎩ;\nᎬᏂᏳᏉ ᏕᏗᎭᎾᎳᏗᏍᎪ ᏐᏈᎵ ᎨᎪᎯᏳᏗᏱ, ᎠᎴ ᏂᎬ ᏗᏂᏰᎸ ᏕᏗᎪᎸᏏᏙᎰᎢ.\nᎯᎠᏍᎩᏂ ᎾᏍᎩᏯ ᎪᎱᏍᏗᏉ ᏤᎿᎠ ᎨᎪᏢᏅᎯ ᎨᎨᎢᏍᏗᏱ ᎠᎴ ᎨᏥᏛᏙᏗᏱ, ᎾᏍᎩ ᎠᏂᏐᎢᏍᏗᏱ ᎠᎴ ᎨᏥᏛᏙᏗᏱ, ᎾᏍᎩ ᎠᏂᏐᏢᎢᏍᏗᏍᎪ ᏧᏓᎴᏅᏛ ᎾᏃᎵᎬᎾ ᎨᏒᎢ, ᎠᎴ ᏛᎾᎵᏛᏔᏂ ᎤᏅᏒ ᎤᏂᏲᎢᏳ ᎨᏒᎢ.\nᎤᏟ ᎠᎯᏗᏳ ᎨᎻᎵ ᏴᎩ ᎦᏌᏁᎾᏛᏗᏱ ᎤᎦᏛᎴᎯᏍᏗᏱ, ᎠᏃ ᎤᏪᎿᎢ ᏴᏫ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏭᏴᏍᏗᏱ.\nᏓᎩᎪᎲᎩᏃ ᎢᏤ ᎦᎸᎶᎢ ᎠᎴ ᎢᏤ ᎦᏙᎯ; ᎢᎬᏱᏱᏰᏃ ᎦᎸᎶᎢ ᎠᎴ ᎢᎬᏱᏱ ᎦᏙᎯ ᏥᎨᏒᎩ ᎤᏂᎶᏐᏅᎩ; ᎠᎴ ᎥᏝ ᎿᏉ ᎠᎺᏉᎯ ᏱᎨᏎᎢ.\nᎦᏥᏔᏲᏎᎸᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎤᏂᏄᎪᏫᏍᏗᏱ; ᎠᏎᏃ ᎤᏂᏄᎸᏍᎩ.\nᎤᏍᎦᏃᎵ ᎡᎳᏗ ᏄᏛᏁᎴ ᏫᎵᎻ ᎤᏴᏍᏗ ᎢᏣ.\nᏥᏌᏃ ᎤᏍᎦᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎡᎳᏪ ᎲᎾ, ᎠᎴ ᎯᏄᎪᎢ ᎠᏍᎩᎾᏃ ᎠᏂᏅ ᎠᏰᎵ ᎤᏍᏢᏂᏍᏔᏅ ᎤᏄᎪᏤ ᎠᏍᎦᏲᎯ, ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏳᏩᏁᎴᎢ.\nᎦᏄᎸ ᎤᏰᎨ ᎤᏴᏍᏗ ᏃᎴ ᎤᏙᏩᏗᏍᎨ ᎦᏌᎾᎳ ᎤᏂᎵᏦᏩᏕ.\nᎠᏂᎵᎯᏰᏃ, ᏒᏃᏱ ᏓᏂᎵᎰᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᏧᏂᏴᏍᏕᏍᎩ, ᏒᏃᏱ ᏚᏂᏴᏍᏕᏍᎪᎢ.\n“ᏑᎾᎴ ᎬᏃᎯᏎᎸ,” ᎤᏛᏁ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏔᎴᎲᎦ, ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᎮᏓ.\nᏥᏰᎸᏍᎩᏂ ᎡᎳᏗ ᏂᏥᏴᏫᏕᎪᎢ, ᎠᎴ ᏥᎾᏝᎢ ᏂᏥᏴᏁᎰᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᎦᏥᏯᎵᏥᏙᏁᎸᎯ ᎨᏒ ᏭᏅᎫᏛᎢ, ᎠᏴ ᎠᏋᏒ ᎥᎩᏐᏅᎢᏍᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ.\nᎧ ᏃᏉ ᎤᏍᏆᎸ ᏣᏢᏗ ᏫᎵᎻ.”\nᎯᎠᏃ ᏄᏪᏒ ᏣᎵ, ᎤᏏᏩ ᎢᏳᏍᏗ ᎨᏒ ᎦᏇᏅᏛ ᎠᏧᏣ, ᏎᎷ ᏗᎦᏄᎶᏔᏅ ᏥᏕᎦᏇᏅᏙ ᎢᏳᏍᏗ ᏄᏍᏕ.\nᎤᏥᏯ ᎠᏩᏔ ᏃᎴ ᏧᏗᎩᏏ!\n”ᎠᎩᎸᏉᏗ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ,” ᎤᏛᏁ ᏫᎵᎻ.\nᏞᏍᏗ ᏕᏣᎧᏂᏍᎬᏉ ᏱᏗᏧᎪᏗᏍᎨᏍᏗ, ᏚᏳᎪᏛᏍᎩᏂ ᏕᏧᎪᏗᏍᎨᏍᏗ.\nᎿᏉᏃ ᏥᏌ ᎨᎵᎵ ᏧᎶᏎᎢ, ᏦᏓᏂ ᎤᎷᏤ ᏣᏂ ᎡᏙᎲᎢ ᎠᎦᏬᏍᏗᏱ ᎤᏰᎸᏎᎢ.\nᏍᎩᏄᏍᏛ, ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎦᏎᎾᏔ Mont Blanc ᎢᎦᎸᎳᏗ ᏳᏓᎸᎳᏓ, ᎠᎹᏳᎸᏓ ᏌᏬᏚ ᏓᏳᏓᎴᏅᏓ, ᏃᎴ ᎠᏂᏍᎦᏯ ᎭᎾᎾ ᏓᏳᎾᏓᎴᏅ ᏧᎵᎦᏔ ᏯᎾᏓᏕᎵᏎᎮ.\nᏚᏯᏪᎨ ᏩᎶᏏ ᏑᎾᎴ ᎤᎵᏖᎸᏂᎸᎢ.\nᎠᏍᎪᎯᏃ ᎢᏯᏂᏛ ᎤᎾᏛᎦᏅ, ᎤᎾᎴᏅᎮ ᎤᏣᏘ ᎡᏍᎦ ᏚᏂᏰᎸᎾᏁᎴ ᏥᎻ ᎠᎴ ᏣᏂ.\nᎤᏂᏥ ᎤᏩᏇᏔᏅ ᎤᏐᏓᎸᏅ, ᎨᏓᎵ ᏫᎦᏅᏅ ᏭᎶᏒ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏗᏍᏓᏩᏗᏎᏍᏗ ᎾᏍᎩ ᏙᎯ ᎢᎬᏁᎯ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏗᎨᎦᏓᎵᏂᎪᎯᏍᏙᏗ ᎨᏒᎢ.\nᎡᏥᏅᏏᏓᏍᏗ, ᏕᏦᎯᏳᏎᏍᏗ ᎾᏍᎩ ᎨᏥᏅᏏᏙᎯ ᎠᏂ ᎤᏇᏓᎵ, ᎨᏒᎢ, ᎢᏥᎾᏰᏍᎨᏍᏗ ᎠᎴ ᏕᏥᎾᏫᏍᎨᏍᏗ, ᎣᏏᏳ ᎢᏥᏰᎸᎯ ᎨᏎᏍᏗ ᏗᏥᎾᏫᏱ, ᎦᎶᏁᏛ ᏥᏁᏣᏛᏁᎰ ᎾᏍᎩᏯᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᏚᏂᎳᏫᏨ ᏆᎴᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᎪ ᎢᏣᏚᎵ ᏗᏨᏲᎯᏎᏗᏱ? ᏆᎳᏆᏍᎪ? ᏥᏌᎨᎦᎶᏁᏛ ᏣᏃᏎᎰᎢ?\n”ᏣᎦᏎᏍᏕᏍᏗ ᏔᏕᎶᎰᏏ ᎾᏛᏁᎲ.” \nᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏒᏁᎴ ᎤᎾᎵᏍᏓᏴᏃᏅ, ᎤᎵᏍᏈᏗ ᎤᎩᏎᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎾᏍᎩ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᏴ ᎠᎩᎩᎬ ᏨᏛᏍᏓᏱᏗ; ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ, ᎢᏳᏍᏗᎭ ᎾᏍᎩ ᎢᏣᏗᏔᏍᎨᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎬᎢ.\nᎨᏍᏗ ᎩᎶ ᏳᎪᏩᏛᎭ.\nᎢᏳᏍᎩᏂᏃᏅ ᎩᎶ ᎤᏣᏘᏂ ᎠᏰᎸᏗ ᏂᏥᏯᏛᏁᎭ ᎠᏆᏤᎵ ᎠᏛ ᎢᎡᎵᏍᎨᏍᏗ, ᎢᎦᎶᏍᎨᏍᏗ ᏰᎵᎦᏯ ᎢᏳᏕᏘᏴᏛ ᎨᏒᎢ, ᎠᎴ ᎠᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᎢᎨᏎᏍᏗ, ᎤᏚᎵᏍᎬᏉ ᎾᏛᏁᎮᏍᏗ, ᎥᏝ ᏱᎬᏍᎦᏅᎨᏍᏗ; ᏓᎾᏤᎨᏍᏗᏉ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎯᎠ ᏂᎦᏪᎠ ᏅᏩᏓᎴ ᎪᏪᎸᎢ; ᎾᏍᎦᏅᎾ ᏣᏤᎵ ᎥᏝ ᎤᏁᎳᎩ ᏭᎪᎯ ᎦᎯᏰᎵᏎᏗ ᏱᎩ.\nᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎾᏛᏁᎰᎢ; ᎥᏝ ᎤᏩᏒᏉ ᎤᏤᎵ ᏳᏲᎰᎢ; ᎥᏝ ᏳᏔᎳᏬᎯᏌᏙᎢ; ᎥᏝ ᎤᏲ ᏯᏓᎳᏫᏎᎰᎢ;\nᎭᎾᎢᏣ, ᏄᏓᎴ ᎠᏂᏬᏂᏍᎬ ᎠᏂᏍᎦᏯ, ᏚᎦᏌᏛ ᏚᏂᎭᎦᎸ ᎠᎬᏱᏣ, ᏥᏔᎦ ᎠᏂᎦᏌ ᎩᎳ ᎤᏪᏥ ᎤᏂᏅ ᏕᎬᏆᏅᏔᏗᏘᏍᎬ.\nᎤᎾᏛᏂᏛᏃ ᎩᎳ ᎤᎾᏙᎴᎰᏒᎩ ᎾᏍᎩ ᎠᎹᏰᎵ ᎻᎳᏗ ᏚᏙᎥᎢ,\nᎩᎳᏈᏴ ᏭᏅᎪᏤ, ᎢᎾ ᎢᎦᏘ ᎦᏄᎸ ᏗᎦᏙᎨ.\nᎠᎵᎮᎵᎨ ᏲᎾ ᎤᏤᏍᏙ ᎠᎧᏔᎲ ᎤᎦᏃᏫ ᎨᏒ ᎤᏢᏗ ᎤᏤᎵ ᎤᏍᏗ.\nᎾᏍᎩᏃ Ꮎ ᎤᏔᏅ ᎢᎾᏛ ᎠᏥᏄᎪᏫᏒᎩ, ᎾᏍᎩ ᎾᎠᎦᏴᎵ ᎢᎾᏛ, ᎠᏍᎩᎾ ᏣᎪᏎᎭ, ᎠᎴ ᏎᏓᏂ, ᎾᏍᎩ ᏥᏕᎦᎶᏄᎮᎭ ᏂᎬᎾᏛ ᎡᎶᎯ [ᎠᏁᎯ;] ᎾᏍᎩ ᏓᏰᏥᏄᎪᏫᏒᎩ ᎡᎶᎯ ᏓᏰᎦᏓᎢᏅᏒᎩ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎢᏧᎳᎭ ᏓᎨᏥᏄᎪᏫᏒᎩ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᏕᏣᏓᏅᏖᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏧᏓᏅᏖ ᎦᎶᏁᏛ ᏥᏌ;\nᏰᎵ ᏧᏕᏘᏴᏓ ᎣᎬᏌ ᎣᏣᏓᏍᏕᎵᏍᎩ ᏃᏤᎰ ᎠᏰᎵ ᏙᏰ.\nᏫᏥᎢᎦ ᎨᏒ ᎨᏍᏗ ᏗᎬᎪᏩᏛᏗᏱᎩ ᎤᎪᏏᏓ ᎢᏯᏅᏁ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏱᏍᏗᏍᎨᎢᎮᏍᏗ; ᎢᏍᏕᎾ ᏫᏗᏍᏗᏃᎲᏏ ᎣᏣᎵᏅᏟ ᎨᎵᎵ ᏭᏂᎶᎯᏍᏗᏱ, ᎾᎿᏃ ᏓᎬᎩᎪᎯ.\nᎾᏍᎩᏃ ᏄᏪᏒ, ᎦᏚ ᎤᎩᏒᎩ ᎠᎴ ᎤᎵᎮᎵᏤᎸᎩ ᎤᏁᎳᏅᎯ ᏂᎦᏛ ᎠᏂᎦ-ᏔᎲᎢ, ᎤᎬᎭᎷᏴᏃ ᎤᎴᏅᎲᎩ ᎤᎵᏍᏓᏴᏅᎩ.\nᎣᏍᏓ ᎠᏛᏅ ᏏᏆ---ᎤᏁᎦ ᏥᏍᏕᏥ ᏂᎬᎸ ᎢᎬᏓ.”\nᎠᏎᏃ, ᎢᏧᎴᎭ ᏙᎩᎾᏗᏔᎲ Ridge ᎤᎬᏫᏳ ᎠᏂᏁᎵ, ᎣᏍᏓ ᎣᎩᎾᏟᏃᎮᎸ, ᎢᏯᏛᏁᎵᏓᏍᏗ ᏲᏍᏗᏃᎮᏍᎬᎾ ᏱᎩ.\nᏧᏃᏍᏛ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ ᎠᎴ ᏗᎵᏍᎪᎸᏙᏗ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ ᎥᏝ ᎣᏏᏳ ᏱᏗᏣᏰᎸᏁᎢ;\nᎯᎠᏃ ᏅᏓᏥᏪᏎᎵ ᎠᏆᏓᏅᏙ; ᎠᏆᏓᏅᏙᎩ, ᎤᏣᏔ ᏣᏍᏆᏂᎪᏗ ᏧᎬᏩᎶᏗ ᎤᏣᏘ ᎢᏧᏕᏘᏴᏗ ᏣᎵᏍᏕᎸᏙᏗ; ᎭᏣᏪᏐᎸᏍᏓ, ᎭᎵᏍᏓᏴᎲᏍᎨᏍᏗ, ᎭᏗᏔᏍᏏᏍᏗ, ᎭᎵᎮᎵᎨᏍᏗ.\nᎯᎳᏳᎢ ᏳᏢᏂ ᎠᏲᏟ, ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏛ ᏥᏕᎦᏘᏍᏗᏍᎨ ᏍᎩᎾ ᎦᏂᎯᏓ ᎦᏁᎦᏗᏓᎸᎦᏍᏙᏗ ᎦᏰᏌᏛᎢ ᏃᎴ ᏧᏪᎳ ᏣᏕᎦᎵᎩᎡᎮᎢ.\nᎠᏎᏃ ᏄᏃᎯᏳᏒᎾ ᎠᏂᏧᏏ ᏚᏂᏖᎸᏁ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩᏃ ᏄᏅᏂᏌᏁ ᏗᏂᏍᎦᎩ ᏄᎵᏍᏔᏁ ᎠᎾᎵᏅᏟ.\nᏗᏓᎴᏂᏍᎬᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏧᎳᎭ ᎠᏁᎮᎢ.\nᎣᏁᏉ ᎢᏴ ᎤᎧᏌᏬᎸ ᎤᏓᏁᏁ ᎠᎦᏙᎵ ᏫᎵᎻ.\nᏴᏫ ᎤᏪᏥ ᎤᎷᏨ ᎠᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎠᏗᏔᏍᎦ, ᎯᎠᏃ ᏂᎠᏂᏪᎭ; ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎤᎬᎥᏍᎩ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ, ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᏕᎾ ᎤᎾᎵᎢ. ᎠᏎᏃ ᎠᎦᏔᎿᎢ ᏧᏪᏥ ᎣᏏᏳ ᎢᎬᏩᏰᎸᎭ.\nᎡᎶᏛᏃ ᎤᎪᎲ ᏥᏌ, ᎤᏣᏘ ᎣᏎ ᎤᏰᎸᏁᎢ; ᎪᎯᏗᏳᏰᏃ ᏅᏩᏚᎵᏍᎨ ᎤᎪᏩᏛᏗᏱ, ᏅᏗᎦᎵᏍᏗᏙᏗᏍᎨ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎠᏥᏃᎮᏍᎬ ᎤᏛᎦᏅᎢ, ᎠᎴ ᎤᏚᎩ ᎤᏩᏎ ᎤᎪᏩᏛᏗᏱ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎭᎴᏫᏍᏓ ᎭᏦᏱᎲ!\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏤᎾ ᎾᏍᏉ ᏂᎯ ᏖᎸᎳᏗ ᏙᏗᎳᏗ ᏙᏗᏫᏒᎢ, ᏚᏳᎪᏛᏃ ᎨᏒ ᏓᏨᏯᏓᏴᎡᎵ. ᎤᏁᏅᏎᏃ.\nᎤᎦᏃᏩ ᎤᎵᏍᏓᏴᏗ ᏭᏤᎢ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏃᎴ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ ᎠᎩᏍᎬ ᏫᎵᎻ, ᎦᎾᏍᏗ ᎬᏗ ᏓᏣᎪᏍᎨ ᏣᏄᏏ.\nᎢᏥᎦᏔᎭ ᎾᏍᎩ ᏂᏥᎦᏔᎾᎥᎾ ᏥᎨᏒᎩ, ᏥᏕᏥᏍᏓᏩᏗᏒᎩ ᎯᎠ ᎾᏍᎩ ᏧᏅᎨᏫ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎾᏍᎩᏯ ᏥᏕᏣᏘᏂᏙᎲᎩ.\nᎠᏓᏅᏖᏍᎪ ᎢᏳᏍᏗ ᎠᎪᎵᏰᏍᎬ ᎦᏙᎯ.\n“ᏂᎦᏓ ᏗᎩᎷᏫᏍᏔᏏ, ᎠᎳᏂ, ᎩᏂᏧᎦ ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ!” \nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎠᏓᏙᎵᏍᏙᏗᏱ ᎣᎨᏅ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏛ, ᎠᏓᏅᏙ ᎠᏙᏂᏍᎩ ᎤᏯᎢ, ᏙᎦᏠᏒᎩ, ᎾᏍᎩ ᎤᏣᏛ ᏧᎬᏩᎶᏗ ᏓᏩᏛᎡᎲᎩ ᎬᏩᎾᏝᎢ ᎠᏙᏂᏍᎬ ᎬᏗᏍᎩ.\nᎠᎴ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎺᎵᎩᏏᏕᎩ ᎾᏍᎩᏯ ᎤᏬᏎᎭ ᎤᏁᎳᏅᎯ.\nᎡᏣᏅᏓᏓ ᎶᏛ ᎤᏓᎵᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏅ ᏚᏂᏅᏤ ᏚᏂᏯᏍᏚᏎᎢ, ᎤᏣᏘ ᎤᏂᏍᏕᎴᎢ.\nᏍᎩᏴ ᎣᎯᏍᏙᏗ ᎦᏓᏅᏖᏍᎪᎢ, ᏍᎩᏴᎯ ᏂᎦᏓ ᎩᎦ ᏥᏍᎪᎵ ᏫᎦᏁᎰᎢ.\nᎠᏥᏯᏙᏅ ᎨᏎ ᏤᎩᏏᏂ ᏄᎵᏍᎦᏂᏒ ᎦᎳᎱᏂ, ᏔᎵᏁ ᎤᎴᏁ, ᎤᏐᏱ ᏄᏛᏁᎴ ᏍᎦᏬᏂᏏ ᎠᏙᏫ ᎤᎬᏫᏳ ᏥᎨᏎ.\nᏫᎦᏃᎯᎵᏙ ᏣᏥ ᎤᏛᏅ.\nᎠᎴ ᎠᎦᏔ ᎥᏝ ᎯᎠ ᎢᎬᏩᏪᏎᏗ ᏱᎩ ᎤᏬᏰᏂ, ᎥᏝ ᏱᎬᏯᏚᎵᎭ; ᎠᎴᏬ ᎠᏍᎪᎵ ᎥᏝ ᎯᎠ ᎢᏗᎬᏩᏪᏎᏗ ᏱᎩ ᏧᎳᏏᏕᏂ, ᎥᏝ ᏱᏗᏍᏛᏯᏑᎵᎭ.\nᎢᏳᏰᏃ ᎨᏥᎨᏳᎯᏉ [ᎤᏅᏒ] ᏱᏗᏥᎨᏳᎭ, ᎦᏙ ᎢᏥᎭ ᎦᏰᏣᎵᎡᎵᏤᏗ ᎨᏒᎢ? ᎠᏂᏍᎦᎾᏰᏃ ᎾᏍᏉ ᏚᏂᎨᏳᏐ ᎬᏩᏂᎨᏳᎯ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᎳᎪ ᎦᏚ ᏕᏥᏰᎭ? ᎦᎵᏉᎩ, ᎢᎸᏍᎩᏃ ᏧᎾᏍᏗ ᎠᏣᏗ, ᎤᎾᏛᏅᎩ.\nᎢᎦᏛᏃ ᎤᎾᏓᏑᏴᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᏗᎨᏫ ᏗᎦᏙᎵ ᏧᏍᏚᎢᎡᎸᎯ, ᎾᏍᏉ ᎾᏍᎩ ᏱᏂᎬᏩᏂᏌᏁ ᏄᏲᎱᏒᎾ ᏱᎦᎨᏎ ᎯᎠ ᎠᏍᎦᏯ?\nᎿᏉᏃ ᎠᏴ ᏗᏛᏃᏛ ᎠᎴ ᎢᏓᎴᏂᏙᎯ ᎾᏍᎩ ᎢᏧᎳᎭ ᎡᎦᏘᎾᏫᏛᏗ ᎨᏎᏍᏗ ᎤᎶᎩᎸᎢ, ᏫᏕᏓᏠᎢᏍᏗᏱ ᎤᎬᏫᏳᎯ ᎦᎸᎶᎢ; ᎾᏍᎩᏃ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᎢᏧᎳᎭ ᏫᏕᎮᏍᏗ.\nᎠᏴ ᎡᏙᏓᏃ ᏌᏉᏉ.\nᎢᏳᏃ ᎩᎶ ᏱᏥᎷᏤᎸ ᎠᎴ ᏄᏲᎸᎾ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᏗᏕᏲᏗ ᎨᏒᎢ, ᏞᏍᏗ ᏕᏥᏁᎸ ᏱᏕᏣᎵᏂᎸᏤᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏰᏥᏲᎵᎴᏍᏗ;\nᎾᏍᎩᏯ ᏂᏗᎨᏥᎾᏝᎥᎾ ᎢᏳᏍᏛᏁᏗ ᏂᏣᏛᏁᎮᏍᏗ, ᎥᏝᏍᏗ ᎠᏗᎾ ᏂᏕᏥᎾᏝᎥᎾ ᎨᏒ ᏱᏨᏗᏍᎨᏍᏗ ᏱᏧᏢᎥᏍᎨᏍᏗ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏧᏅᏏᏓᏍᏗ ᎢᏳᎾᏛᏁᏗ ᏂᏣᏛᏁᎮᏍᏗ.\nᎤᏙᎯᏳᎯᏰᏃ ᏚᏓᏂᎸᏨᎩ ᏥᏬᏁᏔᏅᎢ; ᎠᏎᏃ ᎤᏟᎯᏳ ᏄᎵᎦᎵᏴᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎤᏩᏒᏉ ᎤᏓᏅᏖᏛ ᎢᏥᏩᏛᎲᏒᎩ.\nᏓᏆᏒᎭᏂᎸ ᏕᎦᏰᏌᏛ ᏚᎦᏌᏛ ᏧᎪᎳ .\nᏧᏍᏆᏴᏍᏗ, ᎤᏪᏅᏒ ᎤᏣᏪᏐᎸᏍᏕ, ᎩᎳᏈᏴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ ᏭᏓᏒᏍᏔᏁᎢ.\nᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸᎩ ᏗᎦᏐᎯᏍᏗᏱ ᏦᏓᏂ ᏍᎪᏂᏗᏢ ᎾᎿ ᏣᏂ ᏓᏓᏪᏍᎬᎢ.\nᏧᎬᏩᎶᏗ ᎢᏥᎲᎢ ᎤᎪᏒ; ᏗᏣᏄᏬᏃ ᏥᏍᎪᏴ ᎦᏂᏯᎥ;\nᎤᏓᏅᏘ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᏍᎩ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎦᏁᎸ ᎠᏂᎮ, ᎤᏣᏘ ᏗᏁᎸᎥᏍᎩ ᏴᏫ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏂᎪᎯᎸ ᎠᏓᏙᎵᏍᏓᏁᎯ.\nᎾᎿ ᎤᎾᏤᎵ ᏥᏍᎪᏴ ᏂᎦᎵᏬᎬᎾ ᏗᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᏂᎬᏠᏍᎬᎾ ᏗᎨᏒᎢ.\nᎠᎳᏂ ᎤᏓᏍᏓᏴᏗ ᏦᎳᏂ ᏫᏗᎨᏰᎢ.\nᏄᏬᎯᏳᏒᎾᏰᏃ ᎠᏍᎦᏯ ᎤᏓᏅᎦᎸᏛ ᎢᎩ ᎤᏓᎵᎢ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᏄᏬᎯᏳᏒᎾ ᎠᎨᏴ ᎤᏓᏅᎦᎸᏛ ᎢᎩ ᎤᏰᎯ ᎢᏳᏩᏂᏌᏛ; ᎥᏝᏰᏃ ᎾᏍᎩ, ᎿᏉ ᏗᏤᏥ ᎠᏂᎦᏓᎭ ᏱᎩ; ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎤᎾᏓᏅᎦᎸᏛ ᎢᎩ.\nᎠᎴ ᎬᏂᏳᏉ ᎡᎮ ᎠᏍᎦᏯ ᏌᎩᏯ ᏧᏙᎢᏛ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎨᏎ ᎠᏕᎸᎠᎩᏏᏙᎯ, ᎠᎴ ᎤᏪᎿᎢᏳ ᎨᏎᎢ.\nᎪᎯᎢᏴ ᎤᎵᏛᏓᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎨᎢ ᎦᏅᏅ ᏭᎶᏎᎢ ᎠᏂᎪᏕᏍᎩ ᏗᏁᎲ ᎢᏣ.\nᏯᎾᎵᎪᎲᏍᎬ?\nᎨᏍᏗ ᏯᏆᎵᏍᎪᎢ.\nᎾᎦᎥ ᎪᎱᏍᏗ ᎠᏂᏃᏗᏍᎬ ᎦᏃᏙᏗᏱ, ᎢᏥᎩᏍᎨᏍᏗ, ᎠᎴ ᏝᏍᏗ ᎪᎱᏍᏗ ᏱᏣᏛᏛᎲᏍᎨᏍᏗ ᎠᏓᏅᏙᎩ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎧᏂᎩᏛ ᏚᏳᎪᏛ ᎡᎶ.\nᎢᏳᏰᏃ ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᏗᎩᏲᎱᏒᎯ ᎨᏎᏍᏗ, ᎢᏙᎯᏳᎲᏍᎦ ᎢᏧᎳᎭ ᏗᏛᏃᏛ ᎢᏳᎵᏍᏙᏗᏱ;\nᏔᎵ ᎢᏳᏩᎬᏘ ᏚᏏᏛᏂᎸ ᎠᎦᏴᎵᎨ.\nᎠᎴ ᎤᏂᏣᏛᎩ ᎠᏂᏌᎺᎵ ᎾᎿ ᎦᏚᎲ ᎠᏁᎯ ᎬᏬᎯᏳᏅᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏃᎮᎸ ᎠᎨᏴ ᎯᎠ ᏥᏄᏪᏎᎢ; ᎠᎩᏃᏁᎸᎩ ᏂᎦᎥ ᎾᏆᏛᏁᎵᏙᎸᎢ.\nᏞᏍᏗ ᏗᏣᏓᎨᏳᏔᏅᎩ ᎢᏗᏣᏓᏛᏁᏗ ᎨᏒᎢ, ᏂᎬ ᎣᏏᏳ ᏗᏣᏓᏰᎸᎾᏁᎸᎯ ᏱᎩ ᏞᎦ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ, ᎾᏍᎩ ᎢᏣᏜᏅᏓᏕᏗᏱ ᎠᎹᏟ ᎢᏨᏗᏱ ᎠᎴ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᏔᎵᏁᏉ ᏙᏣᏓᏩᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᏎᏓᏂ ᎢᏥᎪᎵᏰᏗᏱ ᏂᎨᏒᎾ ᎨᏣᎵᏍᏆᏂᎪᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᏍᏗ.\n “ᎢᎩᏅᏅᎢᏍᏗ ᏃᏉ\nᎠᎵᏉ ᎾᏍᎩ ᎢᏳᏍᏗ [ᎠᏍᎦᏯ] ᏅᏍᏛᏛᎢ ᎾᏍᎩ ᎤᏂᏣᏘ ᏥᎬᏩᏍᏛᏗᏍᏔᏅ.\nᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᏥᏂᎨᏥᏪᏎᎴ ᎡᏘ ᏣᏁᎮᎢ; ᏞᏍᏗ ᏣᏓᎸᎩ; ᎠᎴ ᎩᎶ ᎠᏓᎯᎮᏍᏗ ᎬᏩᏍᏛᏗᏍᏗ ᎨᏎᏍᏗ ᏗᏄᎪᏗᏍᎩᏱ.\nᏕᏥᏲᎵᎸᎭ ᏆᎶᎳᎦ, ᎠᎴ ᏧᎵᎠ, ᏂᎵᎠ, ᎠᎴ ᎾᏍᎩ ᎤᏙ, ᎠᎴ ᎣᎵᎻᏆ, ᎠᎴ ᎾᏂᎥᏉ ᎤᎾᏓᏅᏘ ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᏁᎭ.\nᎬᏂᎨᏒ ᎬᎭᏂᎲ ᎠᏉᏰᏅ ᏃᎴ ᏥᎴᏂ ᎦᎸᎳᏗᏨ.\nᎿᏉᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᏳᎯ ᎠᎦᏘᏏᏗᏢ ᎢᏥᎦᏯᎷᎥᎦ, ᏙᏓᏥᏩᏛᎯᏃ. ᎰᏩᏃ ᎤᏂᎦᏯᎷᏅᎩ, ᎿᏉᏃ ᎥᏝ ᏰᎵ ᎬᏩᎾᏎᎯᏍᏗ ᏱᎨᏎᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᏣᏛ ᎠᏣᏗ.\nᎦᏨ ᎮᎵ ᎠᏆᏚᎵ ᎠᏇᏓᏍᏗ ᎯᎪ ᎤᏓᏏᏂᏕᎾ?”\nᎩᎶ ᎼᏏ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏴᏛ ᎢᏳᏩᏁᏔᏅᎯ ᏥᎨᏎ ᎠᏲᎱᏍᎨ ᎦᏰᏥᏙᎵᏍᏗ ᏂᎨᏒᎾ ᎠᏂᏔᎵᎭ ᎠᏂᎦᏔᎯ ᎤᏂᏃᎮᎸᎯ ᎬᏔᏅᎯ;\nᎢᏳᏃ ᎩᎶ ᎤᏓᏅᎦᎸᏛ ᏱᎩ ᎯᎠ ᎾᏍᎩ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎠᏖᎵᏙ ᎦᎸᏉᏗ ᎨᏎᏍᏗ, ᎦᎸᏉᏔᏅᎯ, ᎠᎴ ᏱᏍᏛ ᎢᎬᏁᎸᎯ ᎪᎱᏍᏗ ᎤᏩᏙᏗᏱ ᎦᏁᎳ; ᎠᎴ ᎠᏛᏅᎢᏍᏔᏅᎯ ᎾᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᎬᏩᎵ.\nᎠᏎᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏞᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ, ᎾᎯᏳᏰᏃ ᏱᎩ ᎤᏣᏘ ᏯᎾᎵᏖᎸᎲᎦ ᏴᏫ.\nᏣᎢ ᎢᏳᏩᎬᏘ ᏩᏇᏙᎸ ᏩᏏᏓᏂ ᏍᎩᏴ ᏚᏕᏘᏴᏌᏗᏒ, ᎠᏆᏟᏂᎬᏁᎸ ᎨᏍᏗ ᏲᎦᎵᏍᏕᎸᏔᎾ.\nᎬᏩᏟᏍᏗ. ᎠᏴ ᏗᎩᏲᎱᏒᎯ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᎦᏙ ᏱᏚᎵᏍᏙᏓ ᏰᎵ ᎠᏏ ᎾᎿ ᎠᏓᎴᏂᏓ?\nᎠᎴ ᏓᎩᎪᎲ ᏕᎦᏍᎩᎸᎢ, ᎾᎿᏃ ᎤᎾᏅᏅᎩ ᎠᎴ ᏧᏄᎪᏙᏗᏱ ᎥᎨᎦᎵᏍᎪᎸᏓᏁᎸᎩ; ᎠᎴ ᏙᏥᎪᎥᎩ ᏧᎾᏓᏅᏙ ᏗᎨ ᏥᏍᎫᏕᏒᎯ ᎾᏍᎩ ᏥᏌ ᎠᏂᏃᎮᏍᎬ ᎤᏂᏍᏛᏛᎯ ᎠᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏂᏃᎮᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᏅᎩ-ᏗᎦᏅᏌᏗ, ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᏗᎨᎪᏪᎳᏅᎯ ᏂᎨᏒᎾ ᏗᏂᎬᏓᎨᏂ, ᎠᎴ ᏧᏃᏰᏂ; ᎠᎴ ᎾᏍᎩ ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᎠᏁᎲᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎥᎨᏒᎩ ᏌᏉ ᎢᏯᎦᏴᎵᎢᏧᏕᏘᏴᏛ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏏ ᏔᎵ ᎤᏛᏕᎨᏍᏗ ᏕᏣᏓᏅᏛᎢ ᎡᎺᏅ\nᎠᏏᎳᏛᏗ!\nᎤᎦᏅᎾ ᏄᏪᏂᏌᏁ ᎤᎵᏌᎵᏓᏁ ᎨᏴ, ᏰᎵᏉ ᎠᏍᏛᎩ ᎨᏎ ᏦᎩ ᎢᏣ ᏭᏓᏬᎥᏍᏗ.\nᎾᏍᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎦᏃᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏕᎸ-ᎤᏁᎬ, ᎠᎴ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏅᏯ, ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ, ᎠᎴ ᎤᏏᏙᎵ ᏙᎴᏛ, ᎠᎴ ᏗᏕᎭᎷᎨᎢ, ᎠᎴ ᏗᏩᎾᎨᎢ, ᎠᎴ ᏗᎩᎦᎨᎢ, ᎠᎴ ᎾᎦᎥ ᏗᎦᎸᏉᏗ ᎠᏓ, ᎠᎴ ᏂᎦᎥ ᏗᏖᎵᏙ ᎧᎹᎹ ᏧᏓᏄᏙᏅᎯ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏂᎦᎥ ᏗᏖᎵᏙ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᏓ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎥᏣᏱ, ᎠᎴ ᏔᎷᎩᏍᎩ, ᎠᎴ ᎠᏂᏓᏫᏍᎦᎨ ᏅᏯ,\nᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏓᏍᏗ, ᎥᎩᏅᏏᏛ ᎢᏴᏋᏁᎸᎯ, ᎥᏆᏓᏓᎴᏔᏅᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏆᎵᏥᏙᏗᏱ,\nᎠᏗᎾ ᎤᏁᎳᏅᎯ ᎤᏣᏔᏅᎯ ᎤᏓᏙᎵᏣᏘ ᎾᏍᎩ ᎢᎩᏯᏅᏛ ᏥᎩ ᎤᏤᎵ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎦᎸᏉᏗᏳ ᎨᏒ ᏫᎩᎷᎯᏍᏗᏱ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎬᏗᏍᎬᎢ, ᎾᏍᎩ ᏞᎦ ᎢᏥᎩᎵᏲᏨᎯ ᎨᏎᏍᏗ, ᏂᏥᎪᎸᎾ ᏫᏂᏨᎦ, ᎠᎴ ᏫᏣᎵᏂᎪᎯᏍᏓ, ᎠᎴ ᎢᏣᎵᏂᎩᏛ ᏫᏂᏨᎦ, ᎠᎴ ᎦᏰᏥᏖᎸᏗ ᏂᎨᏒᎾ ᏫᏂᏨᎦ.\nᎦᎶᏁᏛ ᎢᎦᎫᏴᎲ ᎢᎫᏓᎴᏒ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏓᏍᎦᎢᏍᏙᏗ ᎨᏒᎢ, ᎠᏥᏍᎦᏨᎯ ᏄᎵᏍᏔᏅ ᎠᏴ ᎢᎩᏍᏕᎵᏍᎬᎢ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᎠᏥᏍᎦᏨᎯ ᎩᎶ ᏡᎬ ᎠᎦᏛᏅᎯ.\nᏓᎪᏩᏘᏍᎬ ᎤᏅᏌ ᏧᏂᎵᏏ ᎬᏂᎨᏒ ᏂᏓᏅᎭᏁᎲ ᏃᎴ ᎠᏂᏃᎮᏍᎬ ᏍᎩᏴ ᎢᎦ ᏧᎷᏤ ᎤᏂᎵᏦᏩᏛ ᎩᎦᎭ ᏗᎫᏍᎨᏂ ᎢᏴ, ᎤᏣᏍᏈᏗ ᎦᏐᎯ ᎦᎨᏒ ᎠᎵᏎᎲ, ᎡᏆ ᏲᎾ, ᎬᏂᎨ ᎦᏁᎦ ᎤᏩᏇᏅᏛ ᎭᏫᏯ.\nᏂᎦᏗᏳᏃ ᎬᏩᏕᏦᏁᎢ, ᎠᎴ ᎤᎾᎵᏎᎢ.\nᏥᏯᎵᎡᎵᏤᎭ ᎠᏆᏁᎳᏅᎯ, ᎾᏍᎩ ᎤᏟ ᎢᎦᎢ ᏗᎬᎩᏬᏂᎯᏍᏗ ᎨᏒ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎡᏍᎦᏉ ᏂᎯ ᏂᏥᎥᎢ;\nᏣᎬᏫᏳᎯ, ᎯᏯᏙᎵᎩ ᎠᏧᏣ ᎠᏇᏥ, ᎬᎵᏰᏃ ᎬᏩᎯᎭ, ᎠᎴ ᎤᏣᏘ ᎠᎩᎵᏲᎦ, ᏯᏃᎩᏳᏰᏃ ᎠᏥᎸᏱ ᎬᏛᎪᎢ ᎠᎴ ᎠᎹᏱ ᎠᎬᎪᎢ.\n“ᏙᎯᏤᎵᎠ ᏍᎩᎾᎾ ᏏᏆ?” ᎠᏛᏛᎲᏍᎨᎢ ᎰᎻ, ᎡᏆ ᎤᏤᎸ.\nᎣᏂᏃ ᏅᏩᏓᎴ ᏄᏍᏕ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎴ ᎠᏂᏔᎵ ᎾᎿ ᎠᏁᎳ ᎠᎾᎢᏎᎢ, ᏙᏗᎦᎶᎨᏒ ᏩᏂᎦᏖᎢ.\nᎠᎴ ᎾᏍᎩ ᎢᎦ-ᎦᏘᏍᏗᏍᎩ ᎤᎵᏏᎬ ᏚᎸᏌᏕᎢ, ᎤᎵᏏᎩᏃ ᎥᏝ ᏱᏑᏓᏂᎸᏤᎢ.\nᏅᏩᏍᏗ ᎠᏁᏉᎦ ᏂᏣᏓᎨᏒ.”\n“Ꭽ!” ᎤᏪᎵᏎ ᏥᏍᏚ. \nᏅᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯᎾ ᎢᎳᎪ ᎡᏣᏚᎦ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏍᎪᎯᏧᏈ ᎢᏳᏟᎶᏛ ᎤᏣᎴᏍᏗ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎯᎾᎩ ᎪᏪᎵ ᎡᏣᏚᎬᎢ, ᎠᎴ ᏁᎳᏍᎪᎯ ᎰᏪᎸᎦ.\nᎠᏴᏰᏃ ᏓᏨᏁᎵ ᎢᏥᏪᏍᏗᏱ ᎠᎴ ᎠᎦ-ᏙᎥᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᏂᎦᏛ ᎨᏣᏈᏗ-ᏍᎩ ᏰᎵ ᏗᎬᏩᏂ-ᏘᎸᏍᏗ ᎠᎴ Ꭼ-ᏩᏂᏎᎷᎩᏍᏗ Ꮒ-ᎨᏒᎾ ᎨᏎᏍᏗ.\nᏂᎯ ᎡᎵᏊ ᏱᏣᎾᏔ Ꮩ ᎤᏍᏗ ᎨᏒ.”\nᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎢᏨᏃ ᎾᏍᎩ ᎢᏣᏓᏅᏘ ᎨᏒ ᏂᏗᏥᎪᎾᏛᏔᏅᎾ ᎢᎨᏎᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ, ᎥᏝ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏴᎨᏥᏴᎭ.\nᎿᏉᏃ ᏚᏚᎪᏔᏅ ᎢᏓᎵ ᏭᎩᏅᏍᏙᏗᏱ ᏥᏳ, ᏚᏂᏲᏒᎩ ᏉᎳ ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᏅᏩᎾᏓᎴ ᎠᏂᏴᎩ, ᎾᏍᎩ ᏚᏂᏲᎯᏎᎸ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᏧᎵᏯᏏ ᏧᏐᎢᏛ, ᎨᎳ ᏑᎾᏓᏡᎩ ᎨᏒ ᎣᎦᏍᏓ ᏧᏤᎵᎦ.\nᎯᎠᏃ ᎾᏍᏉ ᎠᏄᎦᎸᎯ ᏣᏫᏎᎢ, ᎾᏯᎩ ᏣᏛᎩᏯᎪ ᎧᏃᎮᏛ, ᎡᎶᎯᏃ ᎤᏪᎵᎯᏍᏗ ᎨᏒ ᎠᎴ ᎨᏅᎢᏍᏗ ᎨᏒ ᎤᏓᎵᏓᏍᏛ ᎠᏂᏁᏄᎳᏍᏗᏍᎪ ᎧᏃᎮᏛ, ᎾᏍᎩᏃ ᎾᎦᏔᏛᎬᎾᏉ ᎨᏐᎢ.\nᎯᎸᎢᏴ ᎣᏏᏉ ᎨᏐᎢ. ᎯᎸᎢᏴ Ꮳ.\nᏕᏤᏯᏙᏤᎮᏍᏗ ᎠᏗᎾ ᏴᏫ, ᏕᎦᎳᏫᎥᏰᏃ ᏙᏓᎨᏣᏘᏃᎵ, ᏧᏂᎳᏫᎢᏍᏗᏱᏃ ᏙᏓᎨᏥᎵᎥᏂᎵ.\nᏌᎳᎻᏃ ᎠᏁᏙᎲᎢ ᎤᏂᏃᎮᎴ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎾᏘᏁᎮᏃ ᎾᏍᏉ ᏣᏂ ᎤᏂᏍᏕᎸᎯᏙᎯ.\nᎢᏳ ᎠᎴ ᎦᎶᏁᏛ ᏧᎴᎯᏌᏅᎯ ᏂᎬᏒᎾ ᏱᎩ, ᎢᏦᎯᏳᏒ ᎠᏎᏉᏉ ᏂᎦᎵᏍᏗᎭ; ᎠᏏᏉ ᎢᏥᏍᎦᏅᏨ ᎢᏣᏚᏓᎳ.\nᎾᏍᎩ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᏱᏥᎦᏔᎭ ᎢᏣᏛᏁᏗᏱ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ ᎢᏥᏰᎸᎢ ᎤᏓᏅᎦᎸᏛ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ;\nᎤᎵᏂᏛᏃ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᏕᏥᎩᎵᏲᎢᏍᏗᏍᎬᎩ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᎬᎢ; ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎤᎬᏩᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏕᏥᎧᎿᏩᏗᏒᎢ, ᎦᏴᎩᎳᏫᏎᏗ ᏂᎨᏒᎾ ᎨᏒᎩ.\nᎿᏉᏃ ᏧᏓᏏ ᏚᏘᏁᏅ ᏑᎾᏓᏡᎩ ᎠᏂᏯᏫᏍᎩ, ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏉᎵᏏ ᏅᏓᏳᎾᏓᎴᏅᎯ, ᎾᎿ ᎤᎷᏨᎩ, ᏓᏂᏁᎲᎩ ᏗᏨᏍᏙᏗ ᎠᎴ ᏗᎵᏍᎦᏍᏙᏙᎢ.\nᏗᏆᏤᎵᏃ ᎠᏂᏔᎵ ᎠᏂᎦᏔᎯ ᏓᎦᏥᏁᎵ [ᎤᎾᏙᎴᎰᎯᏍᏗᏱ] ᎠᎴ ᎠᎾᏙᎴᎰᏍᎨᏍᏗ ᏌᏉ ᎢᏯᎦᏴᎵ ᏔᎵᏧᏈ ᏑᏓᎵᏍᎪᎯᏃ ᏧᏒᎯᏛ, ᏧᏏᏕᏅ ᏚᎾᏄᏩᎡᏍᏗ.\nᎾᎿ ᎠᏂᏂᏜᎥᎩ ᎤᏂᏣᏘ ᏧᏂᏢᎩ, ᎠᎴ ᏗᏂᎨᏫ, ᎠᎴ ᏗᏂᏲᎤᎵ, ᎠᎴ ᎤᏅᎢᏒᎯ, ᎠᏂᎦᏘᏴᎩ ᎤᎵᏖᎸᏗᏱ ᎠᎹ.\nᏣᏥᏚᎢᏍᏓᏁᎴᏰᏃ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎡᎶᎯ, ᎥᏝ ᎡᏆᎭᎻ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎨᏎᎢ, ᎪᎯᏳᏗᏍᎩᏂ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᎢ.\nᎠᎴ ᎩᎶ ᎤᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ ᎾᏍᎩ ᎡᏥᎾᏝᎢ ᎨᏎᏍᏗ.\nᎢᎦ ᏧᏘᏍᏓᏁᏗᏱ ᎤᎵᏏᎬ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᏓᏩᏗᏍᏙᏛ ᏣᏂᎾ, ᎠᎴ ᏗᎦᏖᏅᏍᏗᏱ ᏅᏩᏙᎯᏯᏛ ᎦᏅᏅᎢ.\nᎯᎠ ᏄᏂᏪᏎᎢ; ᎯᎠ ᎣᏂᏱ ᎤᏂᎷᏨᎯ ᏌᏉᏉ ᎢᏳᏟᎶᏛ ᏚᏂᎸᏫᏍᏓᏏ, ᎢᏧᎳᎭᏉᏃ ᏅᏍᎩᏴᎦ ᎠᏴ ᎾᏍᎩ ᎦᎨᏒ ᎠᎴ ᎤᏗᎴᎬ ᎢᎦ ᏦᎩᎸᏫᏍᏓᏁᎸᎯ.\nᎾᏂᎥ ᏗᎨᏥᎾᏝᎢ ᎾᏍᎩ ᏗᎨᏥᎩᎳᎾᎳ ᏥᎩ ᎤᏣᏘ ᏧᏂᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏗᎬᏩᏂᎾᏝᎢ, ᎾᏍᎩ ᏚᏙᎥ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏤᎵ ᏗᏕᏲᏗ ᎨᏒ ᎠᏐᏢᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ.\nᎠᏂᏔᎵ ᎠᏂᎨᏴ ᎠᏂᏍᏙᏍᎨᏍᏗ ᎠᏍᏙᏍᎩᏱ, ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ.\n“Ꭳ, ᎪᎱᏍᏗ ᏂᎬᏁ,” ᎤᏛᏁ.\nᎤᏛᏅ ᎠᏌᎻᏓ, ᏑᎾᎴᎢᏉ ᎤᎾᏂᎩᏎ ᎠᏦᎭᏴ, ᏚᏂᎭᏯᎸᏎ ᏴᏫ ᏧᎾᏘᏃᎯᏍᏗ ᎠᏦᎭᏴ.\nᎢᏳᏍᎩᏂ ᏗᏍᏓᏓᏅᏟ ᎠᎵᏍᏓᏴᏗ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎡᎯᏍᏗ ᏱᏯᏓᏅᏓᏗᏍᏔᏅ, ᎿᏉ ᎥᏝ ᎠᏓᎨᏳᏗ ᎨᏒ ᏴᏗᎭ ᎾᏍᎩ ᎿᏛᏁᎲᎢ. ᏞᏍᏗ ᎭᎵᏍᏓᏴᎲᏍᎬ ᎯᏛᏙᏔᏅᎩ ᎾᏍᎩ Ꮎ ᎦᎶᏁᏛ ᎤᏲᎱᎯᏎᎸᎯ.\nᎠᎴ ᎩᎶ ᏠᎨᏏ ᎡᏙᎯ ᏞᏍᏗ ᏴᏗᎤᏨᏎᏍᏗ ᎤᏄᏬ ᏳᏁᏐᎴᏍᏗ.\nᎿᏉᏃ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏥᏍᏕᎾ ᎠᎴ ᏣᏂ ᏪᏍᏗᏃᎲᏏ ᏄᏍᏛ ᎢᏍᏗᎪᎲ ᎠᎴ ᏄᏍᏛ ᎢᏍᏓᏛᎦᏅᎢ; ᎾᏍᎩ ᏗᏂᎨᏫ ᎠᏂᎪᏩᏘᏍᎬᎢ, ᏗᏂᏲᎤᎵ ᎠᏁᏙᎲᎢ, ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᎨᏥᏅᎦᎵᏍᎬᎢ, ᏧᏂᎵᎡᏅ ᎠᎾᏛᎩᏍᎬᎢ, ᏧᏂᏲᎱᏒᎯ ᏕᎨᎦᎴᏗᏍᎬᎢ, ᎤᏲᏃ ᎢᏳᎾᏛᎿᏕᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᎦᎵᏥᏙᏁᎲᎢ.\nᎪᎯᏍᎩᏂ ᎿᏉ ᎢᎸᎯᏢ ᏄᏜᏅᏛᎾ ᏥᎩ ᎠᏂ ᎤᏚᏫᏛ, ᎠᎴ ᎢᎸᏍᎩ ᎾᏕᏘᏴ ᎤᏣᏘ ᏥᏅᏆᏚᎵᏍᎪ ᏫᏨᎷᏤᏗᏱ;\nᎩᎶᏍᎩᏂ ᎠᏥᎪᎵᏰᏍᎪᎢ ᎢᏳᏃ ᎤᏩᏒ ᎤᏚᎵᏍᎬ ᏧᏘᏁᎯ ᎠᎴ ᏧᏌᏛᎥᏍᎪᎢ.\nᎾᎿᏃ ᏦᎢ ᎢᏯᏅᏙ ᎤᏪᏙᎸ, ᎠᎴ ᎠᏂᏧᏏ ᏧᏄᎪᏔᏅ ᎪᎱᏍᏗ ᎬᏩᏁᏗᏱ, ᏏᎵᏱ ᏓᏰᏏᏒᎩ ᏥᏳᎯ ᏛᏣᏂᏒᎩ, ᎤᏓᏅᏖᎸᎩ ᏛᎤᏨᏍᏗᏱ ᎼᏏᏙᏂ ᏭᎶᎯᏍᏗᏱ.\nᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎲ ᎠᏂᏧᏏ ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ ᎾᏍᎩ ᎤᏁᎴᏅᎯ ᎦᏁᏟᏴᎡᏗ ᎨᏒ ᎣᏓᏅᏛᎢ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᏍᏗ ᏛᏥᎷᏥ ᎠᎴ ᏛᏥᎵᏦᏘᏌᏂ ᏕᏫ ᎤᏤᎵ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎡᎳᏗ ᎤᏪᏡᏒᎯ ᏥᎩ, ᎠᎴ ᏛᏥᎵᏦᏘᏌᏂ ᎤᎵᏦᏙᎠᏒᎢ, ᎠᎴ ᏛᏥᎧᎯᏌᏂ.\nᎤᏂᎸᏉᏗ ᎨᏒ ᎠᏂᏫᎾ ᎤᏂᏚᎩ ᏃᎴ ᎠᏂᎫᏌ ᏃᎴ ᎠᏂᏣᎳᎩ ᏃᎴ Seminole ᏗᏂᎳᏫᎩ ᏩᏏᏓᏂ ᎦᏚᎲ, ᏓᏂᏃᎮᏍᎬ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ.\nᏯᎾᎵᏖᎸᎲᏍᎬᎾ ᎤᏂᏃᏕᎾ.\nᎩᎶᏰᏃ ᎾᏍᎩ ᏂᎦᏡᏗᏍᎬᎾ ᏥᎨᏐ, ᎾᏍᎩ ᎢᎦᎵᎪᏁᎯ ᎨᏐᎢ.\nᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᏓᏍᏗᏰᏗᎭ ᏴᏫ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎲ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏂᏲᏍᏙᏗᏱ.\n“ᎯᏃᏉ ᎨᏒ,” ᎤᏛᏁ ᎰᎻ, ”ᎭᏂ ᎡᎶᎯ ᏅᎩᏉ ᎾᏂᎠ ᏴᏫ ᎠᏂᎦᏔ ᎤᏍᏆᏂᎩᏘ ᏄᎵᏍᏔᏅᎢ---ᎠᏋᏌ, ᎠᏆᏓᎵ ᎠᎳᏂ, ᏥᎾᏌᎢ ᏣᏄᏏ, ᏃᎴ ᏂᎯ.”\nᎢᎦᏛᏃ ᎠᏄᎦᎸᎯ ᎤᎳᎨᏯᏛᏤᎢ; ᎠᏄᎦᎸᏃ ᏧᏛᏎᎢ, ᎠᎴ ᎤᏁᏄᎳᏍᏔᏁᎢ, ᎠᎴ ᏄᎾᏄᎪᏫᏒᎾ ᎨᏎ ᎤᎦᏔ.\nᎨᏍᏗ ᏱᏥᎪᎠ ᎡᏂᏏ ᎠᏂᏁᎵ ᏦᏲᏎᎸ ᏣᎵ.\nᎯᎢᏃ ᏍᏏᏉᏯ ᎠᏍᎦᏯ ᎤᎵᏍᎨᏓ ᎨᏎ, ᎢᏓᏗᎰ.\nᎠᏎᏃ ᏥᏌ ᏫᏚᏯᏅᎲ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᎦᏔᎭ ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎨᏥᏰᎸᎢ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᏗᎬᏩᎾᏁᎶᏙᏗᏱ ᎾᏅᏁᎰᎢ; ᏧᏂᎸᏉᏗᏃ ᎨᏒ ᎬᏩᎾᏓᎵᏁᎯᏕᎰᎢ.\nᎯᎠᏍᎩᏂ [ᎠᏍᎦᏯ] ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏤᎭ ᎤᎶᏏᎲᏍᏗ ᏂᎨᏒᎾ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎢ.\nᏁᎵᏍᎬᏃ, ᏗᏤ ᏗᎳᏑᎶ ᏦᎯᏍᏙᏗ ᏧᎳᏑᏝᏅ.\nᎣᏍᏓ ᎠᏓᎾᏫᏛᏗ ᏃᎴ ᎠᏗᏍᎦᎶᏗ.\nᎩᎶᏰᏃ ᏱᎦᏬᏂᎭ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᏴᏫ ᏱᏗᎦᏬᏁᏗᏍᎪᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ; ᎥᏝᏰᏃ ᎩᎶ ᏳᏬᎵᏤᎰᎢ; ᎠᏓᏅᏙᏍᎩᏂᏃᏅ ᎬᏗ ᎦᏬᏂᏍᎬ ᎤᏕᎵᏛ ᎦᎾᎸᎪᏫᏍᎪᎢ.\nᎠᏎᏃ ᎢᏙᎯᏳᎲᏍᎦ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏴ ᎡᎩᏍᏕᎸᏗ ᎨᏒᎢ, ᎾᏍᎢᏯ ᎾᏍᎩ ᎨᏥᏍᏕᎸᏗ ᏥᎩ.\nᏃᎴ ᏍᏈᏍᏙᏒ ᎤᎵᎮᎵᏍᏗ ᎤᏩᏙᎯᏴᏓ ᎢᎦ ᏭᏩᎦᏘᏗᏒ.\nᎢᏓᎵᏅᏟ, ᎢᏣᏖᏆᎶᎯ ᏍᎩᏍᏓᏩᏕᎩ ᎨᏎᏍᏗ, ᎠᎴ ᏕᏣᎦᏌᏯᏍᏕᏍᏗ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ ᎠᏁᏙᎲᎢ, ᎾᏍᎩ ᎠᏴ ᏍᎩᏯᏕᎶᏆᎡᎯ ᏥᏕᏍᎩᏯᎧᎭ.\nᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᎪᎲ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎬ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ, ᎯᎠ ᏂᏚᏂᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎦᏙᏃ ᎢᏧᎳᎭ ᏣᎾᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎢᏧᎳᎭ ᏣᎾᏗᏔᏍᎦ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾᎢ.\nᎿᏉᏃ ᏅᎩᏁ ᎢᏳᎾᏓᏁᏟᏴᏛ ᎨᏒ ᎠᏂᏯᏫᏍᎩ ᏒᏃᏱ ᏥᏌ ᏫᏚᎷᏤᎸᎩ ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏒᎩ.\nᏕᎤᎧᎿᏅᏰᏃ ᎤᏲ ᏄᏛᎿᏕᎬ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ; ᎬᏂᏳᏉᏰᏃ ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎾᎾᏓᏁᏟᏴᏏᏒ ᏴᏫ ᎦᎸᏉᏗᏳ ᎬᏉᏎᎮᏍᏗ.\nᏅᏩᏙᎯᏯᏛᏃ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒ, ᎾᏍᎩ ᏥᎦᎶᏒᏍᏗᎭ ᏂᎦᎥ ᎬᏓᏅᏖᏗ ᎨᏒᎢ, ᏧᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏗᏥᎾᏫ ᎠᎴ ᏗᏣᏓᏅᏙ, ᎦᎶᏁᏛ ᏥᏌ ᏂᎬᏂᏏᏍᎨᏍᏗ.\nᎠᎴ ᎾᏍᏉ ᎦᎸᏉᏗ ᎠᏓᏅᏙ ᎣᎪᎯᏳᏓᏁᎯ; ᎦᏳᎳᏰᏃ ᎯᎠ ᎾᏍᎩ ᎢᏳᏪᏛ ᏂᎨᏐᎢ,\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏎᎵᏔᏁ ᎤᏚᎢᏍᏓᏁᎴ ᎤᏁᏗᏱ ᏄᏍᏛᏉ ᎤᏔᏲᎸᎢ.\nᎾᏍᏉᏃ ᎤᏂᏣᏖ ᏕᎦᏚᏩᏗᏒ ᏅᏓᏳᏂᎶᏒᎯ ᏥᎷᏏᎵᎻ ᎠᏂᎷᎨᎢ, ᏓᎾᏖᏃᎯᎮ ᏧᏂᏢᎩ ᎠᎴ ᎠᏂᏍᎩᎾ ᎬᏩᏂᏱᎵᏙᎯ; ᏂᎦᏛᏃ ᏕᎨᏥᏅᏩᏁᎢ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎢᏳᏃ ᏔᎵ ᏄᏛᏛᎾ ᎢᎨᏎᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᎵᏬᏨᎯ, ᎤᏩᏒᏉ ᎨᏒ ᎢᏳᏍᏗ.\nᎩᎶ ᎾᏱᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎠᎴ ᎾᎩᏍᏓᏩᏕᎬᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎠᏴ ᎠᏆᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ.\n”ᏩᎾᎢ ᏗᎦᎶᏅᎮᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎡᎵᏍᏗ ᎯᏃᎯᏳᎲᎦ, ᎤᏛᏅ.\nᎢᏳ ᎠᎴ ᎩᎶ ᎢᎪᏣᎴᏍᎨᏍᏗ ᎢᎦᏛ ᎧᏃᎮᏛ ᎪᏪᎵᎯ ᎯᎠ ᎾᏍᎩ ᎠᏙᎴᎰᏒᎯ ᎨᏒᎢ, ᎤᏁᎳᏅᎯ ᎠᏎ ᏓᏳᏬᏣᎳᎡᎵ ᎤᏤᎵ ᎨᏒ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎦᏚᎲᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᎪᏪᎸ ᎠᏂ ᎪᏪᎵᎯ.\n“ᎨᏍᏗ ᏳᏩᎾᏔ ᏙᎤᏍᏗ ᎨᏒ,” ᎤᏛᏁ ᏌᎶᎵ.\nᎬᎾᏰᏍᎬᏰᏃ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎯᏍᏓᏱᏳ ᎨᏒ ᎯᏍᎦᏯ; ᎯᎩᏍᎪᏰᏃ ᎾᏍᎩ ᏂᏣᏅᎾ ᎨᏒᎢ, ᎠᎴ ᎯᏍᎫᏕᏍᎪ ᎾᏍᎩ ᏂᏣᏫᏒᎾ ᎨᏒᎢ.\nᎿᏉᏃ ᏔᎵᏁ ᏭᏂᏯᏅᎲᎩ ᎠᏍᎦᏯ ᏗᎨᏫ ᎢᏳᎵᏍᏔᏅᎯ; ᎯᎠᏃ ᏄᏂᏪᏎᎸᎩ; ᎯᎸᏉᏓ ᎤᏁᎳᏅᎯ, ᎠᏴ ᎣᏥᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᎠᏍᎦᏯ ᎠᏍᎦᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᎩᎶ ᎠᏂᏍᏓᏩᏗᏒ ᎤᎾᏞᏒ ᎪᎯᏳᏗ ᎨᏒᎢ. [ᎤᏁᎳᏅᎯ] ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏣᎧᏩᏗᏙᎮᏍᏗ. ᎡᎺᏅ.\nᎠᏎᏃ ᏥᏯᎵᏍᎦᏍᏙᏗᎭ ᎤᎬᏫᏳᎯ ᎤᎵᏍᎪᎸᏙᏗᏱ ᎠᏴ ᎾᏍᏉ ᎠᏋᏒ ᏂᎪᎯᎸᎾ ᏫᏨᎷᏤᏗᏱ.\nᎥᏃᏱᏃ ᎠᏰᎵ ᎩᎶ ᎠᏍᏓᏯ ᎤᏁᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏕᏒᎲᏍᎩ ᏓᏯᎢ! ᏫᏕᏣᏠᎢ!\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏌᏉ ᎢᎦ ᎾᎯᏳ ᎨᏒ, ᏕᎨᏲᎲᏍᎨ ᏴᏫ ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎵᏥᏙᎲᏍᎨᎢ, ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ, ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎬᏩᏃᎴᎢ, ᎤᎾᎵᎪᏎ ᏗᏂᎳᏫᎩ,\nᎢᎬᏱᏱᏃ ᎢᎦ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ, ᎾᎯᏳ ᎤᏂᎸ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏣᏚᎵ ᏬᎦᏛᏅᎢᏍᏙᏗᏱ, ᎧᏃᎯᏰᎩ ᏣᎵᏍᏓᏴᏗᏱ?\nᎠᎴ ᏂᎪᎯᎸᏉ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏯᎡᎢ, ᎠᎾᎵᎮᎵᏤᎮ ᎠᎴ ᎠᏂᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ. ᎡᎺᏅ.\nᏍᎩᏃ ᏄᎵᏍᏔᏃᏅ, ᏥᏔᎦ ᏧᎪᎳ ᏓᏳᏓᎴᏅᏓ, ᎨᏍᏗ ᎪᎱᏍᏗ ᎫᏩᏏ ᏱᎨᏎ ᏤᎩᏏᏂ.\nᏅᎩ ᎢᏳᏩᏂᎸ--ᎤᏒᎮᏱᏣ ᎠᎵᏍᏓᏴᏗ.\nᎨᎵᎠ ᎭᎦᏓ ᏄᏛᎾ ᏂᎯ ᎨᏒ.”\nᎣᏏᏉᏧ? \n“ᎣᏍᏓ ᎭᏓᏅᏛᎳ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎨᏍᏘᏃ ᏯᏆᏚᎵᏍᎨ ᏥᏣᏓᏅᏛᎾ ᏤᏣᎧᏃᏗ ᎬᏲᏎᏗ.\nᏅᏛᎩᏅᏏᏛ ᎣᎩᎾᎵᎪᎭ; ᎠᎦᏴᎵᎨ ᎥᏝ ᏯᏋᏕᏨ, ᏂᎪᎯᎸᏰᏃ ᏓᎩᎸᏫᏍᏓᏁᎰ ᎣᏍ-Ꮫ ᎤᏰᎸᏗ.\nᏞᏍᏗ ᎠᎴ ᎯᏍᎪᎵ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ, ᏝᏰᏃ ᏰᎵ ᏌᏉ ᎩᏢ ᎤᏁᎬ ᎠᎴ ᎬᎿᎨ ᏱᏅᎦᎲᎦ.\nᎾᏍᎩ ᎣᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏗᏅᏂᏗᏳ ᎬᎾᎢᏒ ᏧᏂᏯᏍᏗᎭ ᏗᎬᏩᎸᏌᏛ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ ᏧᎫᏴᏁᏗ ᏥᎩ;\nᏓᏆᎴᏅ ᏩᏁ ᏧᎬ ᎣᎭᏁ, ᎣᎩᎵᏦᏩᏛ ᎢᏣ ᎠᏇᏅᏒ, ᎡᏝᏪᎯ ᎪᎰᏍᏗ ᏣᎩᏁᏤᎰ ᏅᏩᏍᏛ ᎠᏌᎻᏓ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎨᏦᎯᏳᏗ ᎨᏎᏍᏗ, ᏂᎦᏗᏳ ᎪᎱᏍᏗ ᎢᎦᏰᎦᏛᏁᏗ ᎪᎯᏳᎲᏍᎩ.\nᎾᏍᎩ Ꮎ ᎩᎳᏉ ᎢᏴᏛ ᏫᏚᏯᏅᎲ ᎠᏂᏯᏫᏍᎩ ᎠᎴ ᎠᏍᎪᎯᏧᏈ ᏗᎾᏘᏂᏙᎯ, ᎠᎴ ᏗᏁᏙᎲ ᏭᏗᏢᏍᏔᏅᎩ. ᏚᏂᎪᎲᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎠᎴ ᎠᏂᏯᏫᏍᎩ, ᎤᏂᏑᎵᎪᏨᎩ ᎠᏂᎸᏂᎲ ᏉᎳ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎠᏏᏉ ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᎨᏴ ᎨᎳ ᎤᎾᏓᏡᎬ ᎤᏌᎳᏓᏁ ᎧᏁᎬ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᏂᎯ ᏣᎾᏄᎪᏫᏒᎯ ᎠᎴ ᎾᏍᎩ ᏣᏍᏛᏅᎯ.\n”ᎭᏕᏬ, ᎤᎧᏲᏓ ᏣᎵᏍᏓᏴᏗ ᏣᎶᏙᏗ, ᏣᏢᏗ ᎠᏆᏚᎵ.\nᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎢᏨᏃᏁᎭ; ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏨᏓᎨᏏ; ᎢᏳᏰᏃ ᎾᏇᏅᏒᎾ ᏱᎩ, ᎠᏓᏅᏬᎯᏍᏗᏍᎩ ᎥᏝ ᏴᎨᏥᎷᏥᏏ; ᏯᏇᏅᏍᎩᏂ ᏅᏓᏥᏅᏍᏗ ᎨᏎᏍᏗ ᎢᏥᎷᏤᏗᏱ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎢᏎ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏧᏪᏘ ᏗᏑᏢᏛ ᏱᏓᏟᏍᏗᏍᎪᎢ; ᎢᏤᏰᏃ ᎩᎦᎨ-ᎠᏕᏔᏍᏗ ᏱᏙᎦᏣᎦᎸ ᏗᏑᏢᏛ, ᎠᎴ ᏗᎦᎨ-ᎠᏗᏔᏍᏗ ᏯᏤᏬᎩ, ᎠᎴ ᏗᏑᏢᏛ ᏱᏓᏲᎩ; ᎢᏤᏍᎩᏂ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ, ᏗᏤ ᏗᏑᏢᏛ ᏗᏟᏍᏙᏗ ᎨᏐᎢ.\nᎠᎩᎾᏄᎪᏫᏎᎸᎩᏃ ᎤᏁᎬ ᎤᏪᏴ ᎠᎹ ᎬᏂᏛ ᎠᏓᏁᎯ, ᏗᎬᏩᎸᏌᏛ ᎨᏒᎩ, ᏓᎦᎾᏄᎪᎬᎩ ᎦᏍᎩᎸ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎾᏤᎵᎦ.\nᏭᎩᏎ ᎤᏁᏍᏔᎳ ᎡᎳᏆᏗ ᎤᏟᏍᏓ ᎤᏪᏅᏎ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ.\nᏂᎦᏓ ᏚᎭᏄᏩᎩᏐᏅ ᏧᎭᎾᏬ Perry ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏩᏂ ᏧᏍᏆᏅᎾ ᎤᏚᏒᏛ, ᏧᏁᎦ ᏗᏍᎬᏓᎨᏂ ᎢᏴ ᏫᎦᏓᎥ.\nᎧᏂᎩᏛ ᎠᏕᎳ? ᎤᏛᏅ.\nᎭᏂ ᏯᏛᏁᎵᏍᎬᎾ ᏱᎩ, ᎦᎵ ᏴᏫᏯ ᎦᏬᏂᏍᎩ ᏃᎴ ᎢᏯᏛᏁᏗ ᏩᏍᏛ ᎠᏓᏂ ᎠᏁᏦ, ᏩᏏᏓᏂ ᎦᏚᎲ ᏩᎵᏍᎩᏍᎪ ᏃᎴ ᏗᎳᏑᎶ ᏓᎦᎾᏕᎰ ᎠᏂᏍᎦᏰᏛᏍᏔ ᎠᏂᏩᏥᏂ, ᏍᎩᏃ ᎢᏳᏍᏗ ᎤᎾᏓᏓᏍᎬ ᏧᏤᎵ ᎠᏂᏴᏫᏯ ᏱᏚᎾᏕᏯᏙᏓᏅᎾ, ᎨᎦᎵᏍᎪᎳᏓᏁᎴ ᎤᎾᏕᏗ ᏚᏁᏅᏒ, ᏭᏅᎬᏛ ᎨᏥᏅᎪᏫᏎ ᎠᏙ, ᎾᏍᎩᏯ ᏏᏆ ᎤᎵᎪᎲᏍᏗ.\nᏂᎦᏓ ᏓᏥᏩᏛᏓ ᎨᏒ ᎦᏚᎲ ᏦᎯᏍᏙᏗ ᏗᎭᏄᏬ ᏃᎴ ᏗᎳᏑᎶ ᎢᏗᏅᏁ, ᏰᎵ ᏗᎬᎩᏩᎯᏍᏗ ᎨᏒ.\nᏲ ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᏥᏂᏥᏲᎢᏴ ᎦᎴ ᏡᎬ ᎤᏐᏅ ᏂᏨᎦ ᎤᏛᏃ ᎤᏐᏅᎢ; ᏡᎬᏰᏃ ᎪᎵᏍᏙᏗ ᎨᏐ ᏄᏍᏛ ᎤᏛᎢ.\n[ᎯᎠ ᏂᎦᏪᏍᎨᎢ;] ᎬᏂᏳᏉ ᏥᎷᏏᎵᎻ ᏫᏗᎦᏘ; ᎠᎴ ᏴᏫ ᎤᏪᏥ ᏙᏓᏰᏥᏲᏏ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᏙᏓᎨᏥᏲᎯᏎᎵ; ᎠᎴ ᏙᏓᎬᏭᎪᏓᏁᎵ ᎤᏲᎱᎯᏍᏗᏱ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏫᏙᏛᏂᏲᎯᏎᎵ;\nᏥᏌᏍᎩᏂ ᎡᏗᎪᏩᏘᎭ ᎾᏍᎩ ᎤᏍᏗᎩᏛ ᎡᏍᎦ ᎢᏯᎬᏁᎸᎯ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᏒ ᏂᎨᎬᏁᎸᎢ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗᏱ, ᏗᎬᏩᎸᏌᏛ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᏥᏍᏕᎶᏔᏅ; ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᏗᏍᎬ ᎾᏂᎥ ᏴᏫ ᏧᏲᎱᏎᏗᏱ.\nᏙᏤᏝᎶᏅ ᏚᏯ ᏃᎴ ᎤᏴᏣ ᏎᎷ ᎦᏚ, ᎤᏂᏃᎮᎸ ᏔᎵᏚ ᎢᏯᏂ ᎤᎾᏗᏍᎦᏢ ᎤᎾᎵᏓᎩᏛ ᎠᎹᏱ ᏚᏦᏒ ᎾᎥᏂ, ᏔᎵ ᎠᎴ ᏦᎢ ᏧᏙᏓᏆᏓ ᎡᏅᏓ.\nᏂᎯ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏤᏦᎯᏳᎲᏍᎦ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏲᎱᏒ ᏥᏚᎴᏔᏁᎢ ᎠᎴ ᏧᏁᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏦᎯᏳᏒ ᎠᎴ ᎤᏚᎩ ᎢᏨᏒ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᎢᏳᎵᏍᏙᏗᏱ.\nᎤᏍᎦᏃᎳ ᏚᎴᏁᎢ, ᎤᏁᎷᏁᎢ ᏌᏌ.\nᏗᏂᎦᏘᏯᏃ ᎤᎾᎵᏎᎢ, ᎠᎴ ᎦᏚᎲ ᏭᏂᏃᏁᎢ, ᎠᎴ ᎢᏴᏛ ᏓᏁᏩᏗᏒᎢ. ᎤᏂᏄᎪᏤᏃ ᎤᎾᎦᏔᏅᏎ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ.\nᎢᏳᏃ ᏴᏫᏉ ᎠᏁᎲ ᏧᏓᎴᏁᎢ ᏲᎦᏛᏅ, ᏙᏥᏍᎦᎢᎭᏉ ᏴᏫ; ᏂᎦᏛᏰᏃ ᎠᏙᎴᎰᏍᎩ ᎤᏂᏰᎸᎭ ᏣᏂ.\nᎠᏍᎦᏯᏃ ᎤᏲ ᎠᏓᏅᏙ ᎤᏯᎢ ᏚᏁᎷᎩᎡᎴᎢ, ᎠᎴ ᎡᏍᎦ ᏂᏚᏩᏁᎴᎢ, ᎠᎴ ᏚᏎᎪᎩᏎᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎾᎵᏎ ᎾᎿ ᎠᏓᏁᎸ ᎤᏂᏄᎪᏤ ᏧᏂᏰᎸᎢᎭ ᎠᎴ ᏗᎨᏥᏐᏅᏅᎯ.\nᎤᏩᏒᏃ ᎨᏎᎢ, ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏕᎩ ᎠᎴ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏛᏛᏁ ᎦᏛᎬ ᎾᏍᎩ ᏓᏟᎶᏍᏛᎢ.\nᎢᎦᏛᏍᎩᏂ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎦ ᎤᏍᏕᎵᎭ ᏇᎵᏥᏆ ᎤᎬᏫᏳᎯ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵᎦ.\nᏒᏆᎶᏍᏗ ᎭᏫᏂᏣ ᏓᏩᏔ ᎤᎪᏏᏓ ᎢᏗᏅᏁ ᎠᎵᏰᎾ!\nᎨᏍᏗ ᎦᎵᏓᏍᏔᏅ ᏱᎩ.\nᎢᏳᏃ ᎠᏴ ᏇᎵᏥᏆ ᏯᎩᏍᏕᎵ ᎠᏂᏍᎩᎾ ᏱᏗᏥᏄᎪᏫᏍᎦ, ᎦᎪ ᎤᏂᏍᏕᎵᏍᎪ ᏗᏤᏥ ᏥᏓᏂᏄᎪᏫᏍᎪᎢ? ᎾᏍᎩ ᏍᎩᏂ ᏗᎨᏧᎪᏓᏁᎯ ᎨᏎᏍᏗ.\nᎨᏍᏗ ᏯᎦᏔᎮᎢ ᏏᏉ ᎫᏩᎶᎯᏍᏗ ᏱᎩ.\nᏑᎾᎴᏃ ᏥᎨᏐᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᏛᎦᎿᏂ, ᎦᎸᎶᏰᏃ ᎩᎦᎨᎢᏳ ᎢᎩ, ᎠᎴ\n“ᏲᎾ ᎤᏤᏍᏙ,” ᎤᏛᏁ ᎤᏥ ᏰᎵ ᎬᏣᏓᏘ, ᏤᏍᏗ ᏯᎵᏍᎪᎥᏍᎨᏍᏗ.\nᏚᎾᏓᏲᎵᎴ ᎠᎵᏥᏙᎲᏍᎩ, ᎱᏂᎩᏎᎢ.\nᏙᎢᏳᏍᏗ ᎤᎵᏍᏔᏁᎢ?\nᎠᏂᏯᏫᏍᎩᏃ ᎾᏍᏉ ᎢᎬᏩᏛᏛᏁ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎠᏴ ᎾᏃ ᎦᏙ ᏓᏲᏣᏛᏁᎵ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᎩᎶ ᎬᏍᎦᎢᏍᏓᎩ ᎢᏰᏨᏁᎸᎩ, ᎠᎴ ᏞᏍᏗ ᎦᏰᎪᎩ ᏱᏣᏓᎳᏫᏎᎮᏍᏗ; ᎠᎴ ᏰᎵᏉ ᎢᏥᏰᎸᏎᏍᏗ ᎡᏣᎫᏴᎡᎲᎢ.\nᎢᏳᏰᏃ ᏥᏯᏢᏈᏎᎸᎯ ᎨᏎᏍᏗ, ᏂᎯ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ, ᎥᏝ ᏱᎦᏕᎣᏍᎦ; ᏂᎦᏗᏳᏍᎩᏂ ᏧᏓᎴᏅᏛ ᎢᏨᏬᏁᏔᏅᎢ ᎤᏙᎯᏳᎯᏯ ᏥᎩ, ᎾᏍᎩᏯᏉ ᎣᎦᏢᏆᏒᎢ, ᎾᏍᎩ ᏓᏓᏏ ᎣᏣᏢᏆᏎᎸᎢ, ᎤᏙᎯᏳᎯᏯ ᏄᎵᏍᏔᏅ.\nᎦᏙᏗ ᎢᏳᏍᏗ ᏚᏂᏩᏛ ᎠᏁᎵᏍᎨ ᎠᏂᎨᏯ ᏩᏂᎷᏨ ᎠᏂᏫᎾ ᏧᎾᏛᏒ.\nᎠᏎᏃ ᏗᏂᎦᏙᎵ ᏕᎨᏥᏂᏴᎡᎴ ᎾᏍᎩ ᎬᏬᎵᏍᏗᏱ ᏂᎨᏒᎾ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎯᏃᎮᏍᎨᏍᏗ, ᎠᎴ ᏕᎯᏬᏁᏗᏍᎨᏍᏗ, ᎠᎴ ᏕᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ ᎲᏗᏍᎨᏍᏗ ᏂᎦᎥ ᏣᏒᎦᎸᎢ. ᎲᏗᏍᎨᏍᏗ ᏞᏍᏗ ᎩᎶ ᎡᏍᎦ ᏱᏣᏰᎸᏎᏍᏗ.\nᎤᎾᎩᎡᎸ ᏗᎪᏪᎵᏍᎩ ᎪᏪᎵ, ᎤᏩᏓᏍᎬ ᏭᏓᎩᏅᏒ.\n”ᎣᏍᏓ ᏂᏣᏛᎦ, ᎣᏍᏓ ᏂᏣᏛᎦ!” ᎤᏛᏁ ᏌᏌ.\nᎯᎠᏃ ᏂᏚ-ᏪᏎᎴᎢ, ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᎦᎶᏁᏛ ᏕᏫ ᎤᏪᏥ ᏣᎾᏗᎭ?\nᎨᏆᏂᏃ ᎤᎷᏥᎴᎢ; ᎦᎵᏦᎦᏃ ᎠᏯᎥ ᏚᏛᏛᏁ, ᎦᏙ ᎾᏍᎩ ᏥᏥᏃᎮᏍᎬ ᎢᏨᏒ ᎨᏒ Ꭰ ᏗᏓᎢᏒᎢ.\nᎡᏣᏑᏰᏛ ᎾᏍᎩᏯ ᎾᎦᏔᎰ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎬᏔᏅᎯ ᎤᏓᏅᎦᎸᏗ ᎨᏒ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎾᎿ ᏨᏗᏓᎴᎲᏍᎦ ᎪᎯᏳᏗ ᎨᏒ ᎠᎴ ᎠᏍᏚᏟᏍᏗ ᎨᏒ ᎤᎩᎬ ᏥᏌ ᎦᎶᏁᏛ; ᎦᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎤᏣᏘ ᎢᏣᏤᎵ ᎨᏎᏍᏗ.\nᎾᏍᎩᏰᏃ ᏄᏍᏗ ᎤᎬᏫᏳᎯ ᎣᎩᏂᏁᏤᎸ, [ᎯᎠ ᏂᎦᏪᎭ;] ᎬᏯᎧᏅ ᎢᎦ ᏔᏘᏍᏓᏁᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎤᎵᏍᏕᎸᏙᏗ ᎢᏣᎵᏍᏙᏗᏱ ᎡᎶᎯ ᏂᎬᎾᏛᎢ.\nᎨᎵ ᎨᏍᏗ ᏳᏌᎩᏒ ᎤᎦᏛ ᏥᏴᏤᏂ ᏃᎴ ᏥᏅᏬᎢ.\nᏔᎵᏁᏃ ᏦᏩ ᎠᎾᎵᏅᏟ ᎬᏬᎵᏤᎢ, ᎠᎴ ᏇᎵᏲ ᏕᎤᎦᏙᎥᏎ ᏦᏩ ᎪᎱᏍᏗ ᏧᏩᎿ.\nᎾᏳᏍᏗᏉ ᎤᎾᎵᏍᎪᏗ ᏗᏃᏪᎵᏍᎩ ᎤᏂᎷᏤᎲ ᏗᏂᏍᎪᎵ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏥᏨᏅᏒᎩ ᏂᏗᏥᏁᎲᎾ ᎠᏕᎸ-ᏗᎦᎶᏗ, ᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᏗᎳᏑᎶ, ᎪᎱᏍᏗᏍᎪ ᎪᎱᏍᏗᏍᎪ ᎢᏥᏂᎬᏎᎮᎢ? ᎥᏝ ᎪᎱᏍᏗ, ᎤᎾᏛᏁᎢ.\nᎨᏥᏅᏏᏛᏃ ᎯᎠ ᏄᏂᏪᏎᎴ ᎤᎬᏫᏳᎯ, ᏍᎩᏁᏉᏏ ᎣᎪᎯᏳᏒᎢ.\nᎨᏍᏗ ᎣᏍᏓ ᏯᏆᏓᏅᏔ.\nᎾᏍᎩᏯ ᎤᏤᎵ ᎤᎵᏂᎩᏗ ᎨᏒ ᎤᏩᏔᏅᎢ ᎢᎩᏁᎸᎯ ᏥᎩ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏕᏛᏅ ᎤᎬᏩᎵ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎤᎬᏩᎵ, ᏅᏓᏳᏓᎴᏅᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎢᎩᏯᏅᏛ ᏥᎩ ᎬᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎢᏍᏛᏁᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎬᏆᏛᏁᏗ ᎨᏒ ᎢᎦᎢ, ᎠᏆᏛᏅᎢᏍᏗᏉ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᏨᏯᎵᏥᏙᏁᏗᏱ ᎶᎻ ᎾᏍᏉ ᎢᏤᎯ ᏂᎯ.\nᏦᏩᏃ ᎤᏓᏅᏎ ᏭᏯᏅᎮ ᎤᏙᏓ ᏤᎦᏈ ᎠᎴ ᏂᎦᏛ ᎤᏩᏒ ᎪᎱᏍᏗ ᏧᏩᎿ, ᎾᏍᎩ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏯᏂᎢ.\nᎾᎯᏳ ᏗᏥᎦᏴᎵᎨ ᏥᎬᎩᎪᎵᏰᏍᎬᎩ, ᎠᎴ ᏥᎬᏆᎦᏘᏍᎬᎩ, ᎠᏂᎪᏩᏘᏍᎬᎩᏍᎩᎢᏃᏅ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎥᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ.\nᎦᎪ ᎤᏓᏑᏯ ᎯᎠ ᏥᏂᏣᏛᏅᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᎠᎩᏍᎦᏅᏨᎯ ᎨᏒᎢ? ᎢᏳᏃ ᏚᏳᎪᏛ ᏱᏥᏁᎦ, ᎦᏙᏃ Ꮭ ᏱᏍᎩᏲᎢᏳᎲᏍᎦ?\nᏡᎬᏰᏃ ᎪᎵᏍᏙᏗ ᎨᏐ ᏄᏍᏛ ᎤᏩᏒ ᎠᏓᏛᏍᎬᎢ; ᏥᏍᏚᏂᎩᏍᏗᎯᏰᏃ ᎥᏝ ᏎᎦᏔ-ᎢᏳᎾᏍᏗ ᏱᏓᎾᏕᏍᎪ ᏴᏫ, ᎠᎴ ᎠᏄᎦᎸᎯ ᎥᏝ ᏖᎸᎳᏗ ᏱᏓᎾᏕᏍᎪᎢ.\nᎠᎴ ᏫᎾᏍᏛᎾ ᎠᏔᎴᏒ ᎤᏍᏚᎢᏒᎩ, ᏧᎦᏒᏍᏗᏃ ᎾᎿ ᎠᏔᎴᏒ ᏓᏳᎵᏌᎳᏓᏅᎩ, ᎾᏍᎩᏯ ᎡᏆ ᏔᎷᎩᏍᎩ ᎬᎾᏬᏙᏗᏱ ᏥᏚᎦᏒᏍᏙᎢ; ᏅᏙᏃ ᎢᎦ ᎡᎯ ᎠᎴ ᎦᏃᎴᏍᎬ ᎤᏜᏅᏛ ᏚᎵᏏᎲᏒᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏧᎦᏒᏍᏗ ᎠᏔᎴᏒ ᏙᏗᎴᎲᏍᎬᎢ.\nᎤᏙᎯᏳᎯᏰᏃ ᏥᏨᏰᎳᏗᏙᎲᎩ, ᏂᏨᏃᏁᎶ ᎢᎩᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏥᏄᎵᏍᏔᏅ, ᎠᎴ ᎾᏍᎩ ᏥᏥᎦᏔᎭ.\nᎢᎸᎯᏳ ᏥᎨᏒ ᏂᎦᏓ ᎢᎾᎨ ᎠᏁᎯ ᏣᎳᎩ ᏣᏂᏬᏂᏍᎬ.\nᏤᏏᏃ ᏕᏫ ᎤᎬᏫᏳᎯ ᎤᏕᏁᎴᎢ; ᏕᏫᏃ ᎤᎬᏫᏳᎯ ᏐᎵᎹᏅ ᎤᏕᏁᎴᎢ ᏳᎳᏯ ᎤᏓᏴᏛ ᎤᎾᏄᎪᏫᏎᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᎠᎵᏍᎦᏍᏙᏗᎭ, ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏗᏱ; ᎾᏍᎩ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒ ᎤᎵᏂᎩᏗᏳ ᎢᏳᎾᎵᏓᏁᏗᏱ ᎾᏂᎥ ᎤᏁᏢᏔᏅᏛ ᎨᏒᎢ; ᎥᏝ ᎾᏍᎩ ᎤᏅᏒ ᏧᏁᏢᏔᏅᏛ ᎨᏒ ᎾᏍᎩᏯ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅᎢ, ᎾᏍᏉᏍᎩᏂ ᎾᏍᎩ ᏧᏁᏢᏔᏅᏛ ᎨᏒ ᎡᏆᎭᎻ ᎤᏬᎯᏳᏒ ᎾᏍᎩᏯ ᎤᏃᎯᏳᏅᎯ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏂᏗᎥ ᎢᎩᏙᏓ ᏥᎩ,\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᎴᏔᏅᎯ ᎨᏒ ᎥᏝ ᏳᎪᏎᎢ.\nᎥᎥ, ᎤᏙᎯᏳᎯ, ᎠᎴ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎡᏍᎦ ᎢᏯᏋᏁᎯ ᎠᎩᏰᎸᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏓᎪᎾᏛᏔᏅᎯ ᎨᏒ ᏥᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ; ᎾᏍᎩ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎠᎩᏲᎱᏎᎸᎯ ᏥᎩ, ᎠᎴ ᎤᏁᎢᎸᏗᏉ ᎠᎩᏰᎸᎭ ᎾᏍᎩ, ᎦᎶᏁᏛ ᎾᏍᎩ ᎠᏆᏤᎵ ᎢᏣᏴᏁᏗᏱ,\nᎣᎩᏨᏛᏃ ᏉᎳ ᏥᎻ ᏧᏬᎸ ᎢᏧᎳᎭ ᎣᎨᏅᏒᎩ, ᏂᎦᏛᏃ ᏗᎨᎦᏁᎶᏗ ᎠᏂᎦᏔᎲᎩ.\nᎠᎬᏱ ᎠᏍᎦᏯ ᏭᎷᏨ ᎦᏲᏟᏉ ᎠᎦᏴᎵᎨ ᎨᏎ ᏩᏏᏓᏂ ᏄᏕᏘᏴᎲ, ᎤᏓᎾᏏᏃᎴ ᎠᏰᎵ-ᎢᎦᎯ ᎨᏒ ᎠᏰᎳᏍᏗ ᎤᏅᏍᎦᎴ ᏃᎴ ᎦᏅᎯᏓ ᎦᎶᏇ ᎠᎵᏎᎮ, ᏕᎬᏂᏍᏗᏍᎨ ᏚᏩᏂᎦᏢ ᏃᎴ ᏚᏂᎩᏨ.\nᎰᎻ, ᎡᎶᏗ ᏃᎴ ᏣᏄᏏ ᎤᏂᏂᏴᎮ ᏏᏆ, ᎠᏍᎪᎵ ᎢᏣ ᏭᏂᏌᏙᏰᎢ ᎧᏁᏌᎢ.\nᏐᏉ ᎢᎦ ᏚᎾᏦᏒ ᎤᏍᏗ ᎨᏴᎢ ᏃᎴ ᎤᏔᏂᏗᎨ ᎨᏴᎢ, ᎤᏍᏗ ᎠᏣᏗ ᏭᏴᎴᎢ ᏫᏥᎢᎦ ᏯᏍᎦᎢᎲᎾ.\nᎠᎴ ᎤᎾᎴᏅᎮ ᎬᏩᏔᏲᏎᎴ ᎤᏓᏅᏍᏗᏱ ᎤᎾᏤᎵᎪᎯ.\nᏗᎧᎿᏩᏛᏍᏗᏱ ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᏅᏩᏓᎴ ᏗᏂᏬᏂᏍᎩ ᎠᎴ ᏅᏩᏓᎴ ᏧᏂᎭᏁᎦᎵ ᏓᎦᏥᏴᏔᏂ ᎦᏓᏥᏬᏁᏔᏂ ᎯᎠ ᎾᏍᎩ ᏴᏫ; ᎠᏎᏃ ᎠᏏ ᎥᏝ ᏱᎬᏆᏛᎦᏁᎮᏍᏗ, ᎠᏗᎭ ᏱᎰᏩ.\nIV. ᎤᎯᏐᏗ  \nᎢᏨᏲᏎᎭ ᏞᎩᏳ ᏙᏓᎫᎴᏏ. ᎠᏎᏃ, ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ, ᎪᎯᏳᏗᏍᎪ ᎨᏒ ᏛᏩᏛᎯ ᎡᎶᎯ?\nᎠᎵ ᏍᏓᏴᏗᏍᎩᏂ ᎥᏝ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎢᎩᏰᎸᏗᏱ ᏱᏂᎬᏁᎭ; ᎥᏝᏰᏃ ᏱᏓᎵᏍᏓᏴᎲᏍᎦ ᎤᏟ ᎣᏏᏳ ᏱᏂᎬᏁᎰᎢ, ᎥᏝ ᎠᎴ ᏂᏓᎵᏍᏓᏴᏍᎬᎾ ᏱᎩ, ᎡᏍᎦ ᏱᏂᎬᏁᎰᎢ.\nᎢᎨᏲᎲᏍᎦ, ᎾᏍᎩ ᎢᏓᏓᏱᎲ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ ᎠᎴ ᎡᎶᎯ ᎡᎯ ᎠᏚᎸᏅᏗ ᎨᏒᎢ, ᎢᎦᎵᏏᎾᎯᏍᏗ ᎠᎴ ᏚᏳᎪᏛᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎸᏉᏙᏗ ᎨᏒ ᏱᏓᎴᏂᏙᎭ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ;\nᎠᏥᎸᏳᎵ ᎾᎥᏂ ᏰᎵ ᎪᎯᏛ ᎤᏬᏢ ᎠᏓᏅᏖᏍᎬ ᎠᎵᏍᏔᏴᏗ ᏣᎵ.\nᏣᏄᏏ ᎤᎷᏤ ᏴᏫᏯᎯ ᎤᏩᏅ ᏧᏍᏆᏅᏂ ᎦᏁᎮᎢ ᎤᏓᏒᏅ.\nᎾᏍᎩ ᎤᏤᏓ ᎠᎴ ᎤᏥ ᎾᏁᎲᎾ ᏥᎨᏎ, ᎤᎾᏁᏢᏔᏅᎯ ᎠᏂᏂᎩᏛ ᏥᎨᏎ, ᏚᎩᏨᏁᎬ ᏅᎫᏓᎴᏅᎲᎾ ᏥᎨᏎ, ᎠᎴ ᎡᎲ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏎᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎾᏪᏥ ᎾᏍᎩᏯ ᏥᎾᎬᏁᎴᎢ, ᎠᏥᎸ-ᎨᎶᎯ ᏤᎭ ᏂᎪᎯᎸᎢ.\nᏕᏥᏁᎸ ᎧᏃᎮᏛ ᏤᏤᎵᎦ; ᎡᎶᎯᏃ ᏗᏍᎦᎩᏳ ᏄᎵᏍᏔᏅ, ᎡᎶᎯ ᎠᏁᎯ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩᏯ ᎠᏴ ᎡᎶᎯ ᎨᎢ ᏂᎨᏒᎾ ᏥᎩ.\nᎠᎴ ᎠᏴ ᎣᎩᎪᎲ ᎠᎴ ᎣᏥᏃᎮᎭ ᎠᎦᏴᎵᎨ ᏧᏅᏒ ᎤᏪᏥ ᎡᎶᎯ ᎠᏍᏕᎵᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ.\nᎥᏝᏰᎭ ᎠᏧᏏ, ᎠᎴ ᎠᎪᎢ, ᎥᏝ ᎠᏥᎾᏝᎢ, ᎠᎴ ᎾᏥᎾᏝᎥᎾ, ᎥᏝ ᎠᏍᎦᏯ, ᎠᎴ ᎠᎨᏴ, ᏂᏥᎥᏰᏃ ᎢᎨᏣᏍᏗᎭ ᎦᎶᏁᏛ ᏥᏌ ᎡᏥᏯᎥᎢ.\nᎯᏍᎩᏰᏃ ᎾᏂᎥᎩ ᎨᏣᏰᎯ, ᎪᎯᏃ ᏥᏣᎧᎭ ᎥᏝ ᏣᏰᎯ ᏱᎩ; ᎾᏍᎩ ᏥᏂᏫ ᏚᏳᎪᏛ ᏂᏫ.\nᏞᏍᏗ ᎩᎶ ᎢᏥᎶᏄᎮᏔᏅᎩ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩᏰᏃ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎭ ᎪᎯᏳᏗ ᏂᎨᏒᎾ ᎨᏒ ᏧᏪᏥ.\n“ᎨᏍᏗ ᎦᏓᎭ ᏱᎩ ᏫᎵᎻ,” ᎤᏛᏁ ᎰᎻ ᎤᏨᏉᏗ.\nᎩᎶᏃ ᎬᏁᏍᏗ ᎠᎴ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ, ᎥᏝ ᎢᎸᎯᏳ ᎤᏲᎱᎯᏍᏗ ᏱᎨᏎᏍᏗ. ᎰᎯᏳᎲᏍᎦᏍᎪ ᎾᏍᎩ ᎯᎠ?\nᎣᏍᏛᏃ ᎧᏃᎮᏛ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎨᏥᏍᎦᎩ ᏄᎾᎵᏍᏔᏅ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᏓᏑᏰᏍᎬᏍᎩᏂ ᎤᎬᏩᎵ, ᎨᏥᎨᏳᎭ ᎠᏂᎦᏴᎵᎨ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎩᎾᎵᎢ, ᎦᏙᏃ ᎥᎯᎷᎩ. ᎿᏉᏃ ᎤᏂᎷᏨᎩ ᎠᎴ ᏕᎬᏩᏏᏔᏛᎩ ᏥᏌ, ᎬᏩᏂᏴᎲᎩ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎪᎥᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏥᏣᎵᏃᎮᏗᎭ.\nᏁᏓᏂᎵᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏗᎦᎵᏍᏙᏗ ᎢᏍᎩᎦᏔᎭ? ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏏᏉ ᏈᎵᎩ ᏫᏂᏣᏯᏂᏍᎬᎾ ᏥᎨᏒᎩ, ᎡᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ ᎭᏫᏂᏗᏢ ᏥᏦᎸᎩ, ᏫᎬᎪᎥᎩ.\nᎠᏓᏍᏕᏓᎵᏴᏍᎩ.\nᏲᎾ ᎣᏍᏓ ᎤᎦᏎᏍᏗᏕᎬ ᏂᎦᎵᏍᏔᏂᏙᎲ, ᎠᏆᏛᏛᏅ ᎢᏳᏍᏗ ᏙᏍᏓᏓᎴᎬ.\nᎾᏍᎩᏃ ᎠᏆᎦᏙᏍᏔᏅ ᎠᏆᏓᏅᏖᎸᎩ ᎠᎴ ᏕᏥᎪᎥᎩ ᏅᎩ ᏗᏂᏅᏌᏗ ᎡᎶᎯ ᎠᏁᎯ ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ.\nᏃᎴ ᎭᎾ ᏳᏪᎾ ᏫᎵᎻ, ᏰᎵᏉ ᎡᎳᏗ ᏫᏣᎶᎯᏍᏗ ᎯᏩᏛᎲᏍᏗ ᎢᏳᏉ ᎮᎵᏍᎬ.\nᎤᏁᎳᏅᎯᏃ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎠᎾᎵᏅᏢ ᏗᎨᏳᏗ ᎨᏒᎢ; ᎠᎾᎵᏅᏢᏃ ᏗᎨᏳᏗ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎢᎬᏂᎢᏛᏉ ᏗᎨᏳᏗ ᎨᏒᎢ.\nᎢᎬᏩᏍᏗᎭᏍᎩᏂ [ᎢᏥᏗᏱ;] ᎾᏍᎩ ᎪᎯ ᎨᏒ ᎤᏣᏘ ᎢᏥᎲ ᏱᏗᏥᏍᏕᎸᏗᎭ ᎤᏂᏂᎬᏎᎲᎢ, ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᏣᏘ ᎤᏂᎲ ᎨᏥᏍᏕᎸᏗᏱ ᎢᏥᏂᎬᏎᎲᎢ, ᎾᏍᎩ ᎢᎬᏩᏍᏗᎭ ᎢᏥᏗᏱ.\n“ᏓᏆᏙᎥ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ, “ᏌᎳᏓ”\nᎢᏳᏃ ᎩᎶ ᎦᏬᎢᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏄᏪᏒ ᎦᏬᏂᏍᎨᏍᏗ. ᎢᏳᏃ ᎩᎶ ᏓᏯᏙᎮᎮᏍᏗ, ᎾᏍᎩ ᏰᎵ ᎢᎬᏩᏛᏁᏗ ᎨᏒ ᎤᎵᏍᎪᎸᏓᏁᎲ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ; ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᏂᎦᎥ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏥᎸᏉᏗᏳ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ ᏥᏌ ᎦᎶᏁᏛ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ; ᎾᏍᎩ ᎤᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᎪᎯᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ.\nᎤᏰᎶᎢᏍᏔᏁᏃ ᎦᏙᎯ ᎤᎵᏖᎸᏁᎢ; ᎠᎴ ᏗᏓᏍᏚᏘᏱ ᏚᎵᏍᏓᏱᏗᏍᏛ ᏚᎵᏖᎸᏁᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏂᎦᏛ ᏓᏍᏚᎲ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎾᏂᎥ ᏚᎾᏓᎸᏍᏛ ᏚᏢᏒᎮᎢ.\nᎠᎦᏴᎵ ᎤᏃᏕᎾ ᎤᎵᏍᎫᏪ.\nᎨᏍᏗ ᏍᎩᎦᎢ ᎠᎩᎷᏤᏗ ᏱᎨᏎᎢ.\nᎠᎴ ᏕᎬᏩᏂᏂᏴᎨ ᎠᎴ ᏕᎬᏩᏂᏍᏚᏁ ᎤᎩᏨᏛ ᎢᎪᎯᏛ, ᎿᏉᏰᏃ ᎤᏒᎢ ᎨᏎᎢ.\n“Ꮘ-Ꮘ-Ꮘ!”\nᏥᏌᏍᎩᏂ ᎦᏛ ᏭᏂᎷᏨ, ᎠᎴ ᎤᎾᏙᎴᎰᏒ ᎦᏳᎳ ᎤᏲᎱᏒᎯ ᎨᏒᎢ, ᎥᏝ ᏱᏚᏂᏍᏆᎵᏎ ᏗᎦᏅᏍᎨᏂ;\nᎾᏍᎩᏯ ᎾᏍᏉ ᏥᏄᏍᏕ ᎾᎯᏳ ᎶᏛ ᏤᎮᎢ; ᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ ᏓᎾᏗᏔᏍᎨᎢ, ᎤᏂᏩᎡᎥᏍᎨᎢ, ᎠᏂᏃᏔᏅᎥ ᏍᎨᎢ, ᏓᏂᏫᏒᎥᏍᎨᎢ, ᏓᎾᏁᏍᎨᏍᎨᎢ;\nᎥᏝ ᏧᏘᏲᏍᏗ ᎠᎴ ᎤᏪᎷᏗ ᏱᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏛᎦᏁᏗ ᏱᎨᏎᏍᏗ ᎧᏁᎬ ᏕᎦᎳᏅᏛᎢ.\nᎤᎾᏛᎦᏅᏃ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎠᎴ ᎤᎾᏓᏅᎡᎸᎩ.\nᎾᏍᎩ ᏄᏪᏒᎩ, ᎥᏝ ᎤᏩᏒ ᎤᏓᏅᏖᏛ ᏱᎨᏎᎢ; ᎾᎯᏳ ᎠᏥᎸ-ᎨᎶᎯᏍᎩᏂ ᎨᏒ ᎢᏳᏍᏗ ᎤᏕᏘᏴᏌᏗᏒ ᎤᏙᎴᎰᏒᎩ ᏥᏌ ᏧᏲᎱᎯᏎᏗᏱ ᎾᏍᎩ ᏑᎾᏓᎴᎩ ᎨᏒ ᏴᏫ,\nPerry ᎤᏍᏆᎸᏤᎸ ᎤᏁᎢᏍᏗ Galway ᎤᏛᏅ, Quay Street ᏳᎦᎢᏎ ᎦᎦᏙᏍᏓᏁᎩ ᏅᏙ ᏥᏗᎧᎸᎪ, ᏃᎴ ᏥᏗᏍᎪᎸᎪ ᎠᏨᏍᏛ Irishmore ᎠᎼ ᏍᎪᏁ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏂᎯ ᎡᎳᏗ ᎢᏣᏓᎴᏅᎯ; ᎠᏴ ᎦᎸᎳᏗ ᏅᏛᏆᏓᎴᏅᎯ. ᏂᎯ ᎠᏂ ᎡᎶᎯ ᎢᏣᏓᎴᏅᎯ; ᎠᏴ ᎥᏝ ᎠᏂ ᎡᎶᎯ ᎠᏆᏓᎴᏅᎯ ᏱᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏦᎩᎭ, ᎾᏍᎩᏯ ᎣᎩᏙᎵᏨᎢ, ᎥᏝ ᏱᏙᎩᏯᏪᎦ;\nᏥᏌ ᏚᏁᏤᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏥᏕᎦᏕᏲᏍᎦ, ᎥᏝ ᎠᏆᏤᎵᎦ ᏱᎩ, ᎤᏤᎵᎦᏍᎩᏂ ᏅᏛᎩᏅᏏᏛ.\n“ᏌᎳᏓ ᏓᎦᎶᏏ.\nᏥᏌᏃ ᎤᏁᏟ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏞᏍᏗ ᎩᎶ ᎢᎸᎯᏳ ᏥᎠᎩ ᏂᎯ ᏣᏓᏔᏅᎯ ᎪᎯ ᎢᏳᏓᎴᏅᏛ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏁᎢ.\nᏫᏥᎷᏨᎭ ᎢᏯᏍᏘ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ ᎪᏪᎵ ᏕᎯᎪᎵᏰᏍᎬᎢ, ᎠᎴ ᏕᎯᏬᏁᏗᏍᎬᎢ, ᎠᎴ ᏕᎭᏕᏲᎲᏍᎬᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᏕᎯᏬᏁᏗᏍᎬ ᏥᏕᎭᏟᎶᏍᏓᏁᎭ?\nᎠᎵᏍᎦᏁᏛᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏟ ᎾᏏᎾᎯ ᎡᏍᎦᏉ ᏴᏫ; ᎠᎴ ᎠᏩᎾᎦᎳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏟ ᏄᎵᏂᎬᎦ ᎡᏍᎦᏉ ᏴᏫ.\nᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎠ ᏂᎦᏛ ᏱᏕᎬᏲᎯᏏ, ᎢᏳᏃ ᏱᏣᏓᏅᏅ, ᎠᎴ ᏱᏍᏆᏓᏙᎵᏍᏓᏁᎸ.\nᎣᎩᎶᏐᏅᏃ ᎠᎺᏉᎯ, ᏏᎵᏏᏱ ᎠᎴ ᏆᎻᏈᎵᏱ ᏧᏳᎪᏗ, ᎵᏏᏱ ᏬᎩᎷᏨᎩ, ᎹᎵ ᏕᎤᏙᎥ ᎦᏚᎲᎢ.\n“ᏭᏲᎢᏴ ᎪᎱᏍᏗ ᏏᏆ ᎰᏎᎭ?” \nᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎤᎵᏂᎩᏛᏯ ᏱᏨᏅᏍᏓᏕᎴ ᏗᏣᏕᏲᏗᏱ ᎯᎠ ᎾᏍᎩ ᏕᎤᏙᎥ ᎢᏨᏙᏗᏱ? ᎬᏂᏳᏉᏃ ᏕᏣᏕᏲᎲᏍᎬ ᏥᎷᏏᎵᎻ ᎢᏥᎧᎵᎢᏍᏔᏅ, ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᎩᎬ ᎣᎩᏍᏛᏗᏍᏗᏱ, ᎢᏥᏰᎸᎭ.\nᎣᏍᏓ ᏂᏚᏩᏁᎸ ᏚᎭᏄᏮ, ᎤᏰᏨ ᏃᎴ ᎠᏆᏔᏬᏙᏅ ᏥᎦᏆᎵ.\nᎥᏝᏰᏃ ᎾᏍᎩ Ꮎ ᎠᏧᏏ ᏱᎩ, ᎦᏚᏉ ᎢᏗᏢ ᎠᏧᏏ ᏱᎩ; ᎥᏝ ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᏱᎩ, ᎦᏚᏉ ᎢᏗᏢ ᎤᏇᏓᎸᏉ ᏱᎩ;\nᎨᏍᏗ ᏱᏥᎦᏔᎮ ᎢᏴ ᎠᏆᎴᏅᏗ ᏕᎦᏘᏲᏍᏗᏍᎬ ᎯᎠ ᎠᏂᏴᏫ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᎳᏯ ᎤᏙᎯᏳᎯ ᎤᎷᏨ, ᎠᎴ ᏄᏍᏛ ᎤᎾᏚᎵᏍᎬ ᏂᎬᏩᏁᎸ, ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎬᎢ.\nᎼᏏᏰᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ; ᎠᎴ, ᎩᎶ ᎠᏍᎩ ᏅᏗᏍᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩ Ꮎ ᎯᎠ ᎢᏯᏥᏪᏎᎸᎯ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎡᏏᎩ ᏚᏙᎥ ᎨᏥᏯᏅᏗᏍᎨᏍᏗ ᏣᏁᏢᏔᏅᎯ ᎨᏒᎢ;\nᎤᏍᏗᏱᏛᏃ ᎤᏗᏗᏢᏍᏙᏗ ᎢᏴᏛ ᏭᎷᏤᎢ, ᎠᎴ ᎤᎵᏯᏍᏚᏁᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎡᏙᏓ, ᎢᏳᏃ ᏰᎵ ᎢᎬᏩᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏩᎩᎶᎯᏏᏉ ᎯᎠ ᎤᎵᏍᏈᏗ; ᎢᏝᏍᎩᏂᏃᏅ ᎠᏴ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ, ᏂᎯᏍᎩᏂ.\nᎣᏍᏓ ᎤᎵᏍᏛᏧᏁᎢ ᏚᏂᏌᎾᎩᏎ ᏗᎦᏅᎯᏓ ᏚᏄᏌᏛ, ᏃᏗ ᎤᏲ ᎤᎾᏗᏅᏗ ᎤᏪᏅᏎ.\nᏅᏯ ᏚᏂᏅᏗᏍᏓᏁ.\nᎩᎶᏍᎩᏂ ᎡᏃᏱ ᏥᏙᎰᎢ, ᏚᏬᏕᎯᎰᎢ, ᎤᏗᎦᎵᏍᏙᏗᏍᎪ ᎢᎦ ᏂᏚᎸᏌᏓᏕᎲᎾ ᎨᏒᎢ.\nᎯᎠ ᏥᏨᏲᏪᎳᏏ ᎥᏝ ᏱᏅᏓᎦᎵᏍᏙᏓ ᏂᏥᎦᏔᏅᎾ ᎨᏒ ᏚᏳᎪᏛᎢ, ᎢᏥᎦᏔᎯᏳᏍᎩᏂ ᎨᏒᎢ, ᎠᎴ ᎢᏥᎦᏔᎯᏳ ᎨᏒ ᏂᎦᎥ ᎦᏰᎪᎩ ᎧᏃᎮᏛ ᏚᏳᎪᏛ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nXXI. ᎤᎵᏍᏆᎸᏗ ᎢᎦ  \nᎯᎠᏰᏃ ᎾᏍᎩ ᎢᏥᎦᏔᎭ, ᎾᏍᎩ ᎩᎶ ᎤᏕᎵᏛ ᏗᏂᏏᎲᏍᎩ, ᎠᎴ ᎠᎦᏓᎭᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᎬᎥᏍᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ ᎨᏒᎢ, ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎦᎶᏁᏛ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ.\nᎢᏳᏍᎩᏂ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᏙᏗᏣᏓᏅᏛᎢ ᎠᏛᏳᎨᏗ ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᏞᏍᏗ ᏱᏣᏢᏆᏍᎨᏍᏗ ᎠᎴ ᏞᏍᏗ ᏱᏣᏤᎪᎥᏍᎨᏍᏗ ᎤᏙᎯᏳᏒ ᏱᏥᏲᏍᎨᏍᏗ.\nᎪᏪᎵᏃ ᎤᏍᏗ ᎤᏒᎦᎸᎩ ᎠᏍᏚᎢᏛ; ᎠᎦᏘᏏᏃ ᎤᎳᏏᏕᏂ ᎠᎺᏉᎯ ᎤᎳᏏᏅᎩ, ᎠᎦᏍᎦᏂᏃ [ᎤᎳᏏᏕᏂ] ᎦᏙᎯ ᎤᎳᏏᏅᎩ,\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏅ, ᏅᏩᎾᏓᎴ ᎾᏍᏉ ᏧᏂᏢᎩ ᎾᎿ ᎠᎹᏰᎵ ᎠᏁᎯ ᎤᏂᎷᏨᎩ, ᎠᎴ ᏕᎨᏥᏅᏩᏅᎩ;\nᎿᏉᏃ ᏙᏓᎦᏅᏏ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏍᏓᏱᏳ ᏛᏂᏤᎷᎯᏏ, ᎠᎴ ᏙᏛᏂᏟᏌᏂ ᎨᎦᏑᏰᏛ ᏅᎩ ᏂᏙᏗᎦᎶᏍᎬ ᎤᏃᎴ, ᎦᎸᎶ ᎢᏴᏛ ᏫᏚᎵᏍᏘᏂᎸ.\n“ᎨᏍᏗ ᏱᏗᎪᏒᏍᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏕᏥᎸᏫᏍᏓᏁᎲ ᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒ ᏳᎵᏠᏯᏍᏕᏍᏗ; ᎠᎴ ᏰᎵᏉ ᎢᏥᏰᎵᏎᏍᏗ ᏄᏍᏛ ᎪᎱᏍᏗ ᎢᏥᎲᎢ; ᎯᎠᏰᏃ ᎢᏳᏪᏛ ᎢᎩ, ᎥᏝ ᎢᎸᎯᏳ ᎤᏁᎳᎩ ᏴᎦᎬᏰᎵᏏ, ᎥᏝ ᎠᎴ ᏴᎦᎬᏴᏕᎩ.\nᏦᎢ ᏅᎩ ᏩᏍᏗ, ᏯᎵᏖᎸᎲᏍᎬᎾ ᎤᎴᏗ ᎤᏓᏅᏖᏗ, ᎤᏓᏅᏖᏗ ᏄᏍᏛ ᎬᏅᎢ, ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᎤᎦᏘᏗᏍᏗ ᎨᏎᎢ.\nᎠᏗᎾ ᎤᏁᎳᎩ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᎦᎨᏛ ᏂᏨᏴᏁᎸᎾ ᎨᏒᎢ; ᎠᏎᏃ ᏥᏏᎾᏌᏂᏳ ᎨᏒ, ᎦᎶᏄᎮᏛ ᎠᏆᏔᏅᎩ ᏕᏨᏂᏴᎲᎩ.\nᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎷᏨᎩ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏒᎩ ᎠᎨᏴ ᎠᎵᏃᎮᏗᏍᎬᎢ. ᎠᏎᏃ ᎥᏝ ᎩᎶᎢ, ᎦᏙ ᏣᏲᎭ? ᎠᎴ ᎦᏙᏃ ᎢᎯᏯᎵᏃᎮᏍᏗ? ᏳᏬᏎᎴᎢ.\nᎠᏏᏉᏰᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᏥᎻᏱ ᏅᏗᏂᎶᏍᎬᎾ ᎨᏒᎢ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎩ; ᎠᏎᏃ ᎾᏍᎩ ᎤᏂᎷᏨ, ᎤᏓᏅᏒᎩ ᏚᏓᏓᎴᏓᏁᎸᎩ, ᏕᎦᎾᏰᏍᎬᎩ ᎾᏍᎩ ᏗᎨᏥᏅᏍᏕᏎᎸᎯ.\nᎠᏎᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᎾᏍᏉ ᏂᎯ ᎡᏘ ᎠᏁᎯ ᎤᏂᏃᎮᎸᎯ ᎢᏨᏗᏍᎪ ᎢᏥᏲᏍᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ?\nᎪᎵᎬᏃ, ᎨᏍᏗ ᏳᎾᏓᏂᎸᏣ, ᎠᏎᏃ ᎨᏍᏗ ᏳᎾᏧᏔᏅ.\nᎠᎴ ᎠᏍᏓᏯ ᎤᏁᎷᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᏣᎬᏫᏳᎯ, ᏂᎯ ᏂᏍᎦᏅᎾ ᎠᎴ ᏚᏳᎪᏛ ᎢᎭᏛᏁᎯ, ᎩᎳ ᏙᏓᎩᏳᎪᏓᏁᎸ ᏓᎩᏍᏛᏗᏍᏔᏂ ᎠᎴ ᏓᎩᏯᏞᏤᎢ ᎣᎩᎩᎬ ᎤᏂᏨᏅ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᏁᎭ.\nᏥᏌ ᎠᎦᏔᎯᏳ ᎨᏒᎩ ᎠᎦᏴᎵᎨᎢ ᏂᎦᎥ ᎪᎱᏍᏗ ᏕᎤᏲᎯᏎᎸᎢ; ᎠᎴ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯᏱ ᏭᎶᎯᏍᏗ ᎨᏒᎢ,\nᏗᏃᏪᎵᏍᎩᏃ ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏇᎵᏥᏆ ᎤᏪᎭ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵᎦ ᎬᏗᎭ ᏕᎦᏄᎪᏫᏍᎦ ᎠᏂᏍᎩᎾ.\nᏣᏁᎳ ᏗᎦᏅᏍᎨᏂ ᏚᏣᏱᎵᎯᏍᏕ.\nᎾᏂᎥᏉᏰᏃ ᎩᎶ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏚᏙᎥ ᎤᎬᏫᏳᎯ ᎠᏂᎡᎢᏍᏗᏍᎨᏍᏗ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎢᎦᏛᏉᏰᏃ ᎨᏒ ᎢᏗᎦᏔᎭ, ᎠᎴ ᎢᎦᏛᏉ ᎨᏒ ᎢᏓᏙᎴᎰᏍᎦ;\nᏄᏍᏛ ᎠᏓᏍᏕᏓᎵᏴᏍᎪ.\nᎠᏙᎯ ᎢᏣ ᏫᎶᎯ! \nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎤᎾᏁᎳᎩ, ᎾᏍᎩᏉ ᎢᎦᎢ ᎤᏒᏁᎴᏃ ᎦᎴᏂ ᎠᎴ ᎤᏅᏩᏁᎢ\nᎠᏎᏃ ᏄᏁᏤᎸᎾᏉ ᎥᎨᏒᎩ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸᎩ, ᎬᏩᏔᏲᏎᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏫᎡᎾ, ᎢᎩᏍᎪᏂᎭᏰᏃ.\nᏚᏏᎳᏛ ᏰᎵ ᏫᎦᏓᎡᎢ ᎦᎨᏒ ᎠᏣᏗ.”\nᎨᏍᏗ ᎪᎰᏍᏗ ᎬᎪᏩᏛᏗ ᏱᎩ ᏍᎪᎯ ᎢᏯᎳᏏᏔᏅ ᎠᎫᏱᏣ, ᎩᎶ ᏧᏂᎭᎷᎪ ᎠᏁᎵᎠ ᏳᎾᏛᎦᎾ ᎤᏩᏂᎦᏢ ᏳᏬᎰᏌ ᎠᎴ ᏥᏍᏆ ᏱᏄᏪᏌ, ᎦᏥᏍᏛᏗᏍᏙᏗ ᎦᏥᏲᏎᎸ ᏎᏉ ᏱᏚᏂᏍᏔᏲᎳ.\nᎠᏴᏃ ᏗᎦᎵᏂᎩᏛ ᏥᎩ ᎤᏁᎳᎩ ᏱᏗᏕᎵᏎᎭ ᏓᏂᏩᎾᎦᎸ ᏗᏂᏩᎾᎦᎳᎢ, ᎠᎴ ᎥᏝ ᎢᎬᏒᏉ ᎣᏍᏛ ᎢᎩᏰᎸᏗ ᏱᏂᎨᏓᏛᏁᎵᏙᎭ.\nᏃᎴ ᏰᎵᏉ ᏄᏟᏂᎬᎨ ᏧᏚᏓᎸᏁᏗ ᎠᎬᏱᏣ ᎠᏂᎾᎷᏍᎩ ᏴᏫ, ᎧᏂᎩᏛ ᏱᎫᏩᎾᏓᏓᏍᎨᎢ ᎠᎪᎾ ᏧᏂᏲᏏᏍᎩ ᏃᎴ ᎤᎾᎵᏗᎩᏏᏗᏒ, ᏁᏂᏏ ᎠᏰᎸ ᎤᏂᎳᏗᏍᎬ ᎢᏳᏍᏗ.\nᏭᏯᏅᎮᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᏥᏄᏍᏗ ᏥᎬᏯᏛᎩᎭ? ᎬᏂᎨᏒ ᏅᎦ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎸ ᏣᎦᏌᏯᏍᏗᏕᎩ ᎨᏒᎢ; ᎪᎯᏰᏃ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎿᏉ ᏣᎦᏌᏯᏍᏗᏕᎩ ᏱᎨᏎᏍᏗ.\nᎾᏍᎩᏍᎩᏂ ᎯᎠ Ꮎ ᎨᎪᏪᎸ ᎯᎠ ᎠᏥᏃᎮᎸᏍᎬ ᏥᏂᎬᏅ; ᎬᏂᏳᏉ, ᏥᏅᎵ ᏥᏅᏏᏓᏍᏗ ᏣᎧᏛ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᏓᏣᏛᏅᎢᏍᏓᏁᎵ ᏣᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ.\nᎥᎥ, ᎠᎴ ᎾᏍᏉ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᎨᏴ ᎣᎦᏓᏡᎬ ᎠᏁᎳ ᎤᏍᏆᏂᎪᏗ ᎪᎦᏓᏅᏓᏗᏍᏔᏅᎩ, ᎾᏍᎩ ᎩᎳ ᏧᎩᏥᏍᎪ ᎠᏤᎵᏍᏛ ᏭᏁᏙᎸᎯ;\nᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎿᏉ ᎤᏟ ᎢᎪᎯᏛ ᎬᏆᏛᏂᏗᏍᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ, ᎠᏆᏓᏅᏒᎩ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ ᏄᏍᏛ ᎢᏦᎯᏳᏒᎢ, ᎪᎱᏍᏗ ᏴᏗᎤᎵᏍᏙᏔᏅ ᎠᏓᎪᎵᏰᏍᎩ ᏳᏂᎪᎵᏰᎥ, ᏙᎩᎸᏫᏍᏓᏁᎸᏃ ᎠᏎᏉ ᏱᏄᎵᏍᏔᏂᏙᎸ, ᎠᏇᎵᏒᎩ.\nᎠᏂᏃᎮᏍᎬ ᎠᏍᎦᏯ, ᏰᎵᏉ ᎤᏥᏥᏙᏗ ᎾᏍᎩᏴ ᎤᏦᏩᏛ ᏳᏫᏓᎩᎳᎩ ᎠᏕᎳ ᎤᏍᏕᏓᎵᏴᏍᏙᏗ ᎫᎦ, ᎾᏍᎩᏯ ᏯᏍᎦᏅᎬᎾ ᎾᏛᏁᎲ.\nᎦᏄᎸ ᎤᎾᎴᏍᏗᏯᎥ ᏗᏩᏛᏗ ᎧᏁᏌᎢ ᏗᎦᎶᏔᏅ ᎠᏂᎳᏗᏍᎩ ᏚᏯ ᎪᏒᏅ ᏗᎨᎵᏍᎩ, ᏧᏪᏥ ᏗᎫᏅ, ᎦᏚ ᏧᏍᏓᎦᏴᎯᏓ ᏧᎵᎦᎸᏓ, ᎦᏚ ᏧᎦᎾᏍᏓ ᏗᏔᎸᎩᏓ ᏧᎵᎦᎸᏓ  ᏃᎴ ᎤᏅᏗ ᎤᏍᏔᏲᏒ ᏧᎵᎦᎸᏓ .\nᎩᎳᏉᏃ ᎢᏴᏛ ᎾᏍᎩ ᏫᏚᏯᏅᎮᎢ; ᎤᏅᏕᏨᏃ ᎤᏂᏙᏓ ᏤᏈᏗ ᎨᎦᎫᏴᎡᎯ ᏧᏂᏅᏏᏓᏍᏗ ᎢᏧᎳᎭ ᏥᏳᎯ ᎤᎾᏣᎥᎢ, ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᎠᏏᎳᏛᏗ!\n“ᏃᏗ ᎠᎾᏦᎥᏗ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏏᏆ,” ᏧᏛᏁ ᏍᏓᏯ ᎦᏬᏂᏍᎩ.\nᎿᏉ ᎯᎠ ᏂᏚᏪᎭᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎡᏉᎯᏳ ᏠᎨᏏ ᎤᎦᏛᎾᏨᎯ, ᎠᏎᏃ ᎠᏂᎦᏲᎵᏳ ᏧᏂᎸᏫᏍᏓᏁᎯ.\n“ᎭᏩ, ᏫᎵᎻ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏔᎵᏁᏃ ᏚᏮᏕᏤ ᎠᎴ ᎤᏓᏅᏎᎢ, ᎠᎴ ᏦᎢᏁ ᏭᏓᏙᎵᏍᏔᏁᎢ, ᎾᏍᎩᏯ ᏫᏄᏪᏎᎢ.\nᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎼᏏ ᎣᎪᏪᏁᎸ-Ꭹ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎩᎶ ᏗᎾᏓᏅᏟ ᎠᏲᎱᏍᎨᏍᏗ ᎤᏓᎵᎢ ᎤᏪᎧᎮᏍᏗ, ᎠᎴ ᏧᏪᏥ ᎾᏁ-ᎲᎾ ᎠᏲᎱᏍᎨᏍᏗ, ᎾᏍᎩ ᏗᎾᏓᏅᏟ ᎠᏓᏰᎨᏍᏗ ᎤᏓᏴᏛ, ᎠᎴ ᏓᏛᎯᏍᏓᏁᎮᏍᏗ ᏧᏪᏥᏗᎾᏓ-ᏅᏟ.\nᎢᏣᎵᏏᎾᎯᏍᏗ ᎨᏎᏍᏗ, ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎢᏣᏡᏗᏍᎩᏰᏃ ᎠᏍᎩᎾ, ᏢᏓᏥ ᎤᏃᏕᎾ ᎤᏪᎷᎩ ᎾᏍᎩᏯ ᎡᏙᎭ ᏚᏲᎭ ᏧᏪᏰᏍᏗ.\nᏐᏉ ᎢᏳᏩᎧᏘ ᏧᎾᎩᎶᏍᏗ ᎤᏒᏱ Chapel Hill ᎨᏙᎲᎢ.\n“ᎲᎦᎢᏴ ᏓᏘᏏᎳᏛᏂ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ.\nᎤᎵᏍᏗᏳᏃ ᏭᏂᎷᏤᎢ, ᎠᎴ ᏚᏂᏩᏛᎮ ᎺᎵ ᎠᎴ ᏦᏩ, ᎠᎴ ᎠᏲᎵ ᏐᏈᎵ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎦᏅᎨᎢ.\nᏂᎦᏓ ᎠᎪᏩᏛᏗ, ᏃᎴ ᎠᏛᎪᏗ ᏃᎴ ᎠᎵᏒᏍᏙᏗ ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ ᎣᏍᏓ ᏣᏰᎸᏗ, ᏫᎵᎻ-“ᎯᎠ ᎤᏬᏚ ᎡᎶᎯ, ᏗᎦᎸᏉᏗ ᎢᎦ...” \nᎠᎴ ᎠᏂᏍᎩᎾ ᎾᏍᏉ ᎬᏩᏂᏄᎪᎨ ᎤᏂᏣᏖᎢ, ᎠᏁᎷᎲᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᏂᎯ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ. ᏚᏍᎦᏤᏃ ᏚᏅᏍᏓᏕᎴ ᎤᏂᏁᎢᏍᏗᏱ; ᎠᏂᎦᏔᎮᏰᏃ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ.\nᎬᏂᏳᏉ ᏞᎩᏳ ᏓᏥᎷᏥ; ᎠᏍᏓᏱᏳ ᏕᏣᏂᏴᏎᏍᏗ ᎾᏍᎩ ᏣᎲᎢ, ᎾᏍᎩ ᎩᎶ ᎨᏣᎾᎡᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎠᎵᏍᏚᎶ ᏣᏤᎵᎦ.\nᎠᎴ ᎿᏉ ᏭᏕᎵᎨ ᏅᏙ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏧᏂᏢᎩ ᏧᏁᎯ ᏕᎬᏩᏘᏃᎮᎴᎢ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏚᏏᏔᏕ ᏚᏅᏩᏁᎢ\nᎠᎩᏰᏥᏍᏔᏅ ᏄᎬᏫᏳᏒ. ᎦᏰᎬᏍᏔ ᏱᏥᏏᎾᏒᎾ ᎨᏒ ᏗᏓᏁᏤᏘ.\n”Ꭳ, ᏂᎦᏓ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏁᎯ.\nᎤᎾᎵ ᎤᏁᏝᏅ ᎤᏬᏒᏅ.\nᎤᎵᏏᎩ ᎠᎩᏰᏨ.\nᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᎾᏍᏓᏁᎲᎢ, ᎠᎴ ᎤᏕᏯᏙᏗ ᏂᏣᎵᏍᏓᏁᎲᎢ, ᎠᎴ ᎤᏲ ᏂᏣᏛᎿᏕᎬᎢ, - ᎠᏎᏃ ᏤᎿᎢᏳ. ᎠᎴ ᏥᎦᏔᎭ ᎾᏍᎩ ᎤᏂᏐᏢᎢᏍᏙᏗ ᎨᏒ ᎣᏥᏧᏏ ᎠᎾᏗᏍᎩ, ᎾᏍᎩᏃ ᏄᏍᏛᎾ ᏥᎩ, ᏎᏓᏂᏉᏍᎩᏂ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎳ ᏥᎩ.\n“ᎦᏓᏍᏕᏓᎵᏴᏍᎩᏓ ᎤᏰᎸᏛᏃ, ᎩᎳᏈᏴ ᎠᏆᏍᏕᏓᎵᏴᏍᏗ ᏂᎦᏛᏁᎲ ᏯᎩᏄᎸᏅᎾ.\nᏰᎵ ᎪᎯᏛ ᏭᏭᏍᏓᏍᎪ ᎧᏴᏐᎵ ᏤᎩᏏᏂ ᎤᎦᏎᏂ, ᎨᏍᏗ ᎫᏩᏒᎢᏍᏗ ᏱᎩ ᎬᎾᎩᎳ, ᎠᏎ ᏗᎧᏃᎨ ᎦᎵ ᎤᏂᏥᎸᏅ ᏱᏗᎦᏅᏁᎳ.\nᏌᏌ ᏍᏉ ᎡᏝᏪᎯ ᎨᏎ.\nᎢᏳᏰᏃ ᎢᏤ ᏡᎬ ᎾᏍᎩ ᏱᏅᏛᏅᏁᎵ, ᎦᏙ ᎨᏎᏍᏗ ᎤᎧᏲᏛ ᏡᎬᎢ?\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏂᎯ ᏂᏥᎥ ᏙᏓᏦᏕᎵ ᎪᎯ ᏒᏃᏱ ᏥᎩ, ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ, ᏓᏥᏴᏂᎵ ᎠᏫ-ᏗᎦᏘᏯ, ᎠᏫᏃ ᎤᎾᏓᏡᎬ ᏛᎾᏗᎦᎴᏲᏥ.\nᏗᎻᏟᏯ ᎾᏂᎥᏉ ᎣᏏᏳ ᎬᏩᏃᎮᎭ, ᎠᎴ ᎾᏍᏉ ᏚᏳᎪᏛ ᎨᏒ ᎣᏏᏳ ᎤᏃᎮᎭ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᎣᏥᏃᎮᎭ, ᎠᎴ ᎢᏥᎦᏔᎭ ᎣᏥᏃᎮᏍᎬ ᏚᏳᎪᏛ ᎨᏒᎢ.\nᎢᎾᎨᎢ ᎠᎴ ᎤᏁᏍᏓᎳᏛᎢ ᎥᏓᎵ ᎠᏰᎵ ᏚᏙᏢᏒᎢ\nᎢᏳᏃ ᏱᎩᎭ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᏗᎦᏄᏬ ᏱᏗᎩᎾᎠ, ᎾᏍᎩ ᏰᎵᏉ ᎢᎩᏰᎸᏎᏍᏗ.\nᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎤᏍᏆᏛ ᎠᏎᎸᎯ ᎨᏒ ᎢᎪᎯᏛ ᏧᎸᏫᏍᏓᏁᏗᏱ, ᎤᏪᏅᏎ ᏧᏪᏅᏒᎢ.\nᏧᎾᏛᏐᏅ, ᎠᏂᎨᏴ ᏃᎴ ᏗᏂᏲᏟ.\nᎯᏍᎩᏍᎪ ᎾᎥᏂᎨ.\nᏗᏣᎴᎲᎦ, ᎢᏕᎾ; ᎬᏂᏳᏉ ᎠᏆᏡᏗᏍᎩ ᎡᏍᎦᏂᏳ ᏓᏯᎢ.\nᎠᏎᏃ ᎤᎬᏫᏳᎯ ᎤᏣᏘ ᏥᏯᎵᎡᎵᏨᎩ, ᎾᏍᎩ ᎿᏉ ᎤᏬᎯᏨᎯ ᏍᎩᏯᏅᏛ ᏔᎵᏁ ᎠᏤᎯᏲᎩ, ᎾᏍᎩ ᎾᎿ ᎤᎬᏩᎵ ᎾᏍᏉ ᏍᎩᏯᏅᏛᎩ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏜᏅᏓᏕᎮᎢ.\nᎢᏳᏃ ᏔᎵᏁ ᎠᏯᏫᏍᏗᏱ ᎨᏒ ᏳᎷᏨ, ᎠᎴ ᏦᎢᏁ ᎠᏯᏫᏍᏗᏱ ᎨᏒ ᏳᎷᏨ, ᎠᎴ ᏱᏚᏩᏛᎲ ᎾᏍᎩ ᎾᎾᏛᏁᎲᎢ, ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎨᏥᏅᏏᏓᏍᏗ.\n”ᏂᎦᏓ ᎠᏆᏓᏅᏖᎸ ᎨᏒ ᎢᏯᏆᏛᏁᏗ, ᎠᏎᏃ ᏩᎦᎾ” ᎤᏛᏁ.\nᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᎥ, ᎤᏟᎯᏳᏍᎩᏂ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦᎠᎴ ᎾᏍᎩ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ.\n“ᏗᎨᏅᏒ ᏛᏕᏏ ᎯᎪ ᎢᎦ.\nᏗᎨᏫᏃ ᎤᏬᏯᏁᏒ, ᎦᏚᎲ ᎤᏄᎪᏫᏎᎢ; ᏗᎦᏙᎵᏃ ᏚᎵᏥᏍᏋ, ᎠᎴ ᏚᏏᏔᏛ, ᎪᎱᏍᏗᏍᎪ ᎯᎪᏩᏛᏗᎭ? ᎤᏬᏎᎴᎢ.\nᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩᏉ.”\n“ᎨᏍᏗ ᏱᏥᎦᏔ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᎥᏃ ᎤᏂᎷᏤ ᎦᏚᎲ ᎾᎿ ᏩᏂᎦᏛᎢ; ᎤᏟᏃ ᎢᏴᏛ ᏥᏮᏗᎦᎶᏏᏐ ᎢᏳᏍᏗ ᏄᏛᏁᎴᎢ.\nᎠᎩᎷᏥᎸ ᎾᏍᎩ ᎢᏯᏋᏂᎢᏗᏱ ᎠᏥᎸ ᎦᏙᎯ ᎤᎷᎯᏍᏗᏱ; ᎠᎴ ᎦᏙ ᏯᏆᏚᎳ ᎢᏳᏃ ᎦᏳᎳ ᏳᏥᏍᏝ?\nᎯᎠ ᎾᏍᎩ ᏄᏍᏗᎦᏚ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩ ᎩᎶ ᏳᎬ ᎥᏝ ᏴᎬᏲᎱᎯ.\nᎠᎴ ᏚᏁᏤᎴ ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᏂᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎠᏁᏙᎲᎢ, ᎠᏙᎳᏅᏍᏗ ᎤᏩᏒ; ᎥᏝ ᏕᎦᎶᏗ, ᎠᎴ ᎦᏚ, ᎠᎴ ᎥᏣᏱ ᏚᎾᏓᏠᎲᎢ;\nᏂᎦᏓ ᎤᎾᏦᎣᏎᎢ.\nᎠᎴ ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ ᎢᏨᏒ ᎣᏍᏛ ᎢᏣᎵᏍᏓᏁᏗ ᎠᏆᏑᎵᏍᎬᎢ; ᎥᏝ ᎢᏨᏌᏛᎥᏍᎬᏉ ᏱᎩ, ᎣᏏᏳᏍᎩᏂ ᎠᏰᎸᏗ ᎨᏒ [ᎢᏣᏛᏁᏗᏱ, ] ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏤᏥᎧᎿᏩᏗᏓᏍᏗᏱ ᎪᎱᏍᏗ ᏂᏥᏲᏍᏙᏓᏁᎲᎾ.\nᎠᏎ ᎦᏲᏟᏉ ᎨᏒ ᎢᏰᏆ ᎢᏳᎵᏍᏙᏗ ᏍᎪᎯ ᎾᏕᏘᏴᎲ, ᎠᏎᏃ ᏰᎵᏉ ᎤᏦᏍᏔᏅ ᎦᏚᎲ ᎢᏳᎵᏍᏙᏗ, ᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᎨᏳᎢ ᎢᏓᎵᏅᏟ, ᎾᏂᎥ ᎣᏏᏄᎵᏳ ᎨᏎᏍᏗ Ꮎ ᎤᏛᎪᏗᏱ, ᎤᏍᎦᏃᎵᏳ ᎨᏎᏍᏗ ᎤᏂᏁᎢᏍᏗᏱ, ᎤᏍᎦᏃᎵᏳ ᎤᏂᏔᎳᏬᎯᏍᏗᏱ.\nᏴᏫᏃ ᎤᏁᎳᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎸᎳᏗ ᎡᎯ ᎧᏁᎦ, ᎥᏝᏃ ᏴᏫ.\nᎤᎾᎳᏅᎯᏃ ᎤᏩᏒ ᎾᏍᎩ ᎢᎩᏙᏓ, ᎠᎴ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎣᎦᏘᏅᏍᏗ ᎨᏎᏍᏗ ᏗᏤᎲᎢ.\nᏗᎪᏪᎵᏍᎩᏃ ᏚᏲᏍᏙᏓᏁᎸ ᏴᏫ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎡᏈᏌ ᎢᏤᎯ, ᎦᎪ ᎡᎭ ᎾᎦᏔᎲᎾ ᎦᏚᎲ ᎡᏈᏌ ᎾᏍᎩ ᎡᏓᏓᏙᎵᏍᏓᏁᎯ ᎨᏒ ᎦᎸᏉᏗᏳ ᎦᎸᎳᏗ ᎡᎯ ᏓᏰᏂ, ᎠᎴ ᏧᏉᏙ ᏅᏓᏳᎶᎣᏒᎯ ᏗᏟᎶᏍᏔᏅᎯ?\nᎾᏍᎩᏃ ᎾᏍᏉ ᎾᎯᏳᏉ ᎤᎷᏤ ᎤᎵᎮᎵᏤᎴ ᏱᎰᏩ, ᎾᏍᎩ ᏕᎧᏁᎢᏍᏓᏁᎮ ᎾᏂᎥᏉ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎠᏂᎦᏖᏃᎯ ᎠᎫᏴᏙᏗ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗᏱ.\nᏄᏓᎴ ᏂᎦᏛᏁᎲ ᎠᎩᎸᏂᏗᏍᎩ ᎠᏁᎵᏍᎬ ᏴᏫ, ᎠᏙᏩᏗᏍᏗ ᏥᏁᎬ ᎠᏙᎯ ᎦᏓᏁ ᎢᎦ ᏱᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᏣᏍᎦᎩ ᎠᎪᏄ ᎤᏲᏏᏍᎨᏍᏗ, ᎯᏰᎶᎮᏍᏗ; ᎢᏳᏃ ᎤᏔᏕᎩᏍᎨᏍᏗ, ᎯᎤᎥᏍᎨᏍᏗ; ᎾᏍᎩᏰᏃ ᎿᏛᏁᎲ ᏥᏃᏍᎦ ᏧᏥᏍᏟ ᏕᎯᏡᏍᎨᏍᏗ ᎠᏍᎪᎵ.\nᎯᎸᎢᏴ ᎤᏬᏒᏅ ᎢᎩᏁᎰ, ᏗᎦᏗᎩᏍᏗ ᎠᎴ ᏗᎩᎨᏬᏗ.\nᎠᎴ ᎾᎿ ᎥᏝ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏗᎬᏩᎸᏫᏍᏓᏁᏗ ᏱᎨᏎᎢ, ᎤᏩᏒᏍᎩᏂᏃᏅ ᎢᎸᏍᎩ ᎢᏯᏂᏛ ᏧᏂᏢᎩ ᏚᏏᏔᏛ ᎠᎴ ᏚᏅᏩᏅᎢ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᎦᏓᎴᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᏨᏗᏓᎴᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏂᎷᏤᏗ ᎠᎴ ᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏥᎩ; ᎥᏝᏰᏃ ᏧᎾᏓᎴᎿᎢ ᏱᎩ;\nᎣᎭᏁᎯ ᎦᏲᏟ ᎤᏆᏂᏲᎸ ᏥᏃᎯᏎᎲ ᎢᏴ ᏭᏍᏔᏅᏂ, ᎦᏚᎢᏣ ᎠᎦᏍᎦᏂ, ᎡᎳᏗᏣ ᎠᏰᎵ, ᎤᏕᎶᎰᏒ ᎢᏳᏍᏗ ᎦᏅᏗᏍᎬ Perry.\n~ᎠᎹ ᎣᏏᏳ; ᎢᏳᏍᎩᏂ ~ᎠᎹ ᏳᏥᏍᎪᎸ, ᎦᏙ ᏘᎦᎵᏍᏙᏓ ~ᎠᎹ ᏯᏙᏢᎾ.\nᎾᏍᎩ ᏥᏄᏍᏗ ᎢᏗᎪᏩᏘᎭ ᎾᏍᎩ ᎾᎬᏩᏂᎬᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏄᏃᎯᏅᎾ ᎨᏒᎢ.\n“ᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎡᎵᏍᏗᏉ ᎾᎴᎩᏉᏱᎩ ᏃᎴ ᏎᎷ ᎢᏣ ᏱᏥᏁᎸ.\nᎠᎴ ᎾᏍᎩ ᎠᎬᏗᏍᎬ ᎤᏩᏒ ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ, ᎤᎩᎬ ᏓᏓᎿᏩᏍᏛ ᎤᏨᏅᎯ ᎤᏬᎯᏳᏍᏔᏅ; ᎾᏍᎩ ᎠᎬᏗᏍᎬᎢ, ᎢᏳᏃ ᎡᎶᎯ ᎠᏁᎯ ᏱᎩ, ᎠᎴ ᎦᎸᎳᏗ ᎠᏁᎯ ᏱᎩ.\nᎢᏨᎨᏳᎢ, ᎢᏳᏃ ᏗᎩᎾᏫ ᏂᏗᎫᎰᏓᏁᎲᎾ ᏱᎩ, ᎤᎦᎵᏍᏗᏳ ᎢᎦᏓᏅᏔ ᎤᏁᎳᏅᎯ ᎡᏓᏓᏅᏖᏍᎬᎢ;\nᎢᏍᏔᏯᏊᏛ ᎤᏃᏴᏍᏕ ᎠᏒᏛᏗ.\n”ᎭᏂ ᎢᏴ ᎬᏯᏫᏒᎦ.\nᏥᏌᏃ ᎤᏬᎴ ᎠᏕᎸ-ᏗᏗᏱ ᏧᏳᎪᏗ, ᎠᎴ ᎤᎪᎮ ᎾᎾᏛᏁᎲ ᏴᏫ ᎠᏕᎸ ᏓᏂᎲᏍᎬ ᎠᏕᎸ-ᏗᏗᏱ; ᎤᏂᏣᏘᏃ ᏧᏁᎿᎢ ᎤᏣᏘ ᏓᏂᎲᏍᎨᎢ.\nᎿᏉᏃ ᏆᎴᏗ ᏔᎵᏁ ᏗᎫᎪᏗᏱ ᎤᏴᎸᎩ, ᎠᎴ ᏥᏌ ᏭᏯᏅᎲᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ, ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ?\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏣᏕᏯᏔᏁᎭ? ᎠᎴ ᎦᏙᏃ ᏧᏢᏫᏛ ᏂᏣᎵᏍᏓᏁ ᏙᏗᏣᏓᏅᏛᎢ?\nᎤᏁᎳᏅᎯ ᎡᏗᎨᏳᎢ ᏥᎨᏐᎢ, ᎠᎴ ᏥᎩᏍᏆᏂᎪᏙ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᏍᎪ ᎨᏗᎨᏳᎢᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᏧᏪᏥ.\nᎨᎦᎵᏱᎵᏕᏗᏰᏃ ᎪᎯ ᎢᎦ ᎤᏓᏑᏰᏛ ᏥᏓᎵᏖᎸᎲᎦ, ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏯᎭ ᎨᎩᏃᎮᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎯᎠ ᎪᎯ ᏥᏓᏓᎶᏌ.\nᎤᎩᏨᏓ ᏭᎷᏣ ᎤᏂᎵᏦᏩᏛ ᏣᎵ, ᎨᏍᏗ ᏯᎵᏎᎭ ᎩᎦᎭ ᎤᏍᎪ ᎡᎳᏗᏣ ᏲᎾ ᎠᎴ ᎤᏍᏆᏂᎦᏔ ᎧᏃᎮᏗ.\nᎯᎠ ᏄᏍᏕᏍᏗ ᎢᎬᏱ ᎢᏣᏅᏖᏍᏗ, ᎾᏍᎩ ᎤᎵᏍᏆᏅᏗ ᎨᏎᏍᏗ ᎤᏂᎷᎯᏍᏗ ᎨᏒ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ ᎤᏅᏒ ᎤᎾᏚᎸᏅᎥᏍᎬ ᎠᏂᏍᏓᏩᏕᎩ,\nᏝᏍᎪ ᎯᎠ ᎢᏤᏥᏪᏍᏗ ᏱᎩ; ᎠᏏ ᏅᎩ ᎢᏯᏅᏙ ᎩᎳ ᏛᎦᏛᎾᏥ? ᎬᏂᏳᏉ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏗᏥᎦᏙᎵ ᏗᏥᏌᎳᏛᎦ, ᎠᎴ ᏕᎦᎶᎨᏒ ᏗᏣᎧᏅᎦ, ᎿᏉᏰᏃ ᏧᏁᎩᏳ, ᎠᎴ ᎤᏍᏆᎸᎲ ᎠᏍᎫᏕᏍᏗᏱ.\nᎾᏍᎩᏃ ᎬᏬᎯᏳᏁᎢ; ᏫᏚᏂᏯᏅᎲᏃ ᎨᏥᏅᏏᏛ ᎠᎴ ᏚᏂᎵᎥᏂᎸ, ᏚᏂᏅᏍᏓᏕᎴ ᏥᏌ ᏚᏙᎥ ᎤᏂᏁᎢᏍᏙᏗᏱ, ᎠᎴ ᏚᏂᎧᏁᎢ.\nᎤᎾᎵᏍᏙᏗ, ᎦᏁᎦ ᎠᎧᎭᏲᏔᏅ ᎬᏔᏂᏓᏍᏗ, ᏗᎩᏣᏗ, ᏔᎷᎩᏍᎩ ᏗᏓᏍᏔᏴᏙᏗ ᏃᎴ ᏗᎦᏓᎭ ᏗᎭᎾᏬ.\nᎡᏙᏓ, ᎠᏆᏚᎵ ᎾᏍᏉ ᏗᏍᎩᎧᏁᎸᎯ ᎠᏴ ᎨᎥᎢ ᎾᏍᎩ ᎢᏧᎳᎭ ᎣᎦᏕᏗᏱ, -ᎾᏍᎩᏃ ᎤᏂᎪᏩᏛᏗᏱ ᎥᎩᎸᏉᏛᎢ, ᎾᏍᎩ ᏍᎩᏁᎸᎯ ᏥᎩ; ᏍᎩᎨᏳᎯᏳᏰᏃ ᎨᏒᎩ ᎠᏏ ᎡᎶᎯ ᎾᏓᎴᏂᏍᎬᎾ ᏥᎨᏒᎩ.\nᎠᏰᎵ ᎢᏴ ᏫᎦᎢᏒ ᏫᏥᎪᎥ ᎤᎵᏏᎩ ᏩᎢᏒ ᎠᏍᏆᏚᎸ.\n“ᏂᎦᎵᏍᏙᏗ ᎨᏍᏗ ᎯᎸᎯᏳ ᏫᏤᏙᎸᎯ ᏱᎩ,” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ.\nᏦᎢᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏂᏍᏓᏩᏛᏒᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ ᎠᏍᏓᏯ ᎧᏁᎬᎩ, ᎢᏳᏃ ᎩᎶ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᏓᏙᎵᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎠᎬᏓᎨᏂ ᎠᎴ ᎤᏬᏰᏂᏉ ᎠᎪᏪᎵᏍᎨᏍᏗ,\nᏣᏂ ᏓᏓᏬᏍᎨ ᎢᎾᎨᎢ, ᎠᎴ ᎠᎵᏥᏙᎲᏍᎨ ᎧᏃᎮᏍᎨ ᏗᏓᏪᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏍᏗᏱ ᎣᏓᏅᏛ ᎤᎬᏩᎵ ᎾᏍᎩ ᎦᏴᏓᏘᏁᏗᏱ ᎠᏍᎦᏅᏨᎢ.\nᎢᏗᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎾᏂᎥ ᎨᎦᏁᎳᏅᎯ ᎨᏒ ᎢᏧᎳᎭ ᎤᏂᎵᏰᏗᏍᎬ ᎠᎴ ᎠᏂᎩᎵᏲᎬ ᎪᎯ ᎢᏯᏍᏗ.\nᎩᎶ ᏣᏍᎦᏅᎪᎢ ᎠᎴ ᏂᏓᎧᎿᏩᏕᎬᎾ ᏥᎨᏐ ᎦᎶᏁᏛ ᏧᏕᏲᏅᎯ, ᎾᏍᎩ ᎥᏝ ᎤᏁᎳᏅᎢ ᏳᏪᎰᎢ. ᎾᏑᎵᎪᎬᎾᏍᎩᏂ Ꮎ ᏓᎧᎾᏩᏗᏒ ᏗᎧᎿᏩᏕᎩ ᎦᎶᏁᏛ ᏧᏕᏲᏅᎯ, ᎾᏍᎩ ᏚᏪᎭ ᎢᏧᎳ ᎠᎦᏴᎵᎨ ᎠᎴ ᎤᏪᏥ.\nᎥᏝ ᎠᎴ ᎯᎠ ᏱᏂᎬᏂᏪᏍᎨᏍᏗ, ᎬᏂᏳᏉ ᎠᏂ! ᎠᎴ, ᎬᏂᏳᏉ ᎾᎿᏂ! ᎬᏂᏳᏉᏰᏃ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏤᎳᏗᏙᎭ.\nᎠᎴ ᎾᏍᎩ ᏥᏄᏍᏛ ᏥᏫᏨᏲᏪᎳᏁᎸᎩ, ᏞᏍᏗᏉ ᎾᎿ ᏫᏥᎷᏨᎭ, ᎤᏲ ᏱᎬᏆᏓᏅᏓᏗᏍᏔᏁᏍᏗ ᎾᏍᎦ Ꮎ ᎤᎵᎮᎵᏍᏗ ᎬᏆᏓᏅᏓᏗᏍᏙᏗ ᏥᎩ, ᎠᏇᎵᏒᎩ; ᏂᏥᎥᏉ ᎢᏨᏲᎢᏳᎭ ᎾᏍᎩ ᏄᏍᏛ ᎠᏆᎵᎮᎵᏍᏗᏍᎬ ᎾᏍᏉ ᎾᏍᎩ ᏂᎯ ᏂᏥᎥ ᎢᏣᎵᎮᎵᏍᏗᏍᎬᎢ.\nᎤᏗᎴᎩ ᏱᎩ ᎯᎠ ᏥᏄᏍᏗ, ᏧᏆᎶᎦ ᏃᎴ ᏗᏒᏆᎶᎩ ᎭᏫᏂᏣ ᏚᏲᎰ ᎤᎪᏏᏓ ᎢᏗᏅᏁ.\nᏉᎳᏃ ᏫᏚᏴᏎᏗᏱ ᏴᏫ ᎤᏓᏅᏖᎸ, ᎠᏃᎯᏳᎲᏍᎩ ᎬᏩᏅᏍᏓᏕᎸᎩ.\nᎧᎪ ᎤᏓᏅᏖᎸ?\nᏐᏉ ᎢᎦ ᎣᎭᏁ, ᏂᎦᏓ ᏓᏨᏅᎦᎸ ᏀᎾ ᎨᏒ.\nᏧᏆᎶᎬ ᎤᏩᏩᏙᎣᏒ ᎦᏁᎲ ᏚᎳᏍᎬ ᎾᎥᏂ, ᏚᏑᎬ ᎤᏗᏍᎦᏢ.\nᏣᎵ ᏭᏩᏅᏔᏛ ᎤᎵᏍᏆᏓ ᎤᎸ ᎤᎵᏦᎯᏓ ᎦᎳᎩᏅ.\nᏥᏌᏃ ᏚᏁᏤᎸ, ᎤᎴᏅᎮ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏤᏯᏔᎮᏍᏗ, ᏞᏍᏗ ᎩᎶ ᏥᏥᎶᏄᎮᎵ.\nᏭᏴᎴ ᏗᏯᎥ ᏫᎵᎻ ᏃᎴ ᎤᎴᏅᎮ ᏚᎷᏫᏍᏔᏁᎲ.\nᎢᏧᏓ-ᎴᏍᎨᏍᏗ ᎪᎯ ᎨᏒ ᎠᎵᏱᎵᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎤᏲᎢᏳ ᎨᏒ ᎪᎯ ᎨᏒᎢ.\nᎠᎢᏒᏃ ᏕᎹᏍᎦ ᎾᎥ ᏭᎷᏤᎢ, ᎤᏰᎶᎢᏍᏔᏁᏃ ᎢᎦᎦᏘ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᏚᏚᏫᏍᏔᏁᎢ.\nᎨᏥᏒᏃᏁᎸ ᎦᏳᎳ ᎤᎾᏓᏟᏴᏍᏙᏗ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᎾᏙᏓᏆᏍᎬ ᎤᏙᏢᏁ ᏴᏫ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᎢ; ᎥᏝᏃ ᎤᎾᏙᏓᏆᏍᎬ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏴᏫ ᏱᎨᎪᏢᏁᎢ.\nᏙᏧᎾᏓᏅᏛᏃ ᎤᎾᏓᏅᏖᎴ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᏳᏃ ᎦᎸᎳᏗ, ᏲᎦᏛᏅ, ᎯᎠ ᏱᏃᎩᏪᏏ, ᎦᏙᏃ Ꮭ ᏱᎡᏦᎢᏳᏁᎢ?\nᎦᏓ ᎤᎮᎢ, ᎤᎾᏗᏅᏎᎢ, ᎠᎴ ᎠᏕᎸ ᏚᏲᎴᎢ, ᎠᎴ ᎾᏍᎩ ᏕᎤᏁ ᎨᏥᏅᏏᏛ ᏧᎾᎳᏏᏕᏄᎶᏗ.\n”ᎭᏩ,” ᎤᏛᏁ ᏣᏄᏏ.\nᎤᏂᏄᎪᏨᏃ ᏗᏓᏍᏚᏗᏱ ᎵᏗ ᎦᏁᎸ ᏭᏂᏴᎸᎩ; ᏚᏂᎪᎲᏃ ᎠᎾᏓᏅᏟ, ᏚᏂᎦᎵᏍᏓᏛᎩ, ᎠᎴ ᎤᎾᏂᎩᏒᎩ.\nᎠᎴ ᏅᏩᏙᎯᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏫᏳᏌᏕᎨᏍᏗ ᏗᏥᎾᏫᏱ, ᎾᎿ ᎢᏗᏢ ᎾᏍᏉ ᎡᏥᏯᏅᏛ ᏥᎩ ᎾᏍᎩ ᏌᏉ ᎠᏰᎵ ᎢᏣᎵᏍᏙᏗᏱ; ᎠᎴ ᎤᎵᎮᎵᏍᏗᏳ ᎢᏣᏓᏅᏖᏍᏗ.\nᎠᎴ ᎠᏂᏯᏫᏍᎩ ᎿᏍᏉ ᎦᎬᏩᏐᏢᏕᎢ, ᎬᏩᎷᏤᎮ ᎠᎴ ᎬᏩᏁᏁᎮ ᏧᏂᏦᏯᏍᏗ,\nᎤᏔᎷᎩᏍᎨ ᏚᏏᎳᏛ, ᎤᏬᏚᏨ ᏃᎴ ᎠᏍᏆᏂᎪᎯᏍᏗ ᏄᏍᏕ, ᎾᎥᏂᎨ ᎤᏌᎨᎢ ᎠᏍᏚᎶᏙᏗ.\nᎦᏳᎸ ᎤᎨᏫᏒ ᎠᏍᎦᏍᏗ. ᎦᏳᎸ ᏚᏓᏂᎸᏨᎢ.\nᏥᏌᏃ ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙ ᏕᏣᏙᎥ? ᎯᎠᏃ ᏅᏗᎤᏪᏎᎢ; ᏑᎾᏓᏡᎩ; ᎤᏂᏣᏖᏰᏃ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ ᎨᏎᎢ.\nᏥᎮᎾ ᏗᏤᏅᏒᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏫᏅᎦ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏂᏣᏛᏁᎸ ᎤᏁᎳᏅᎯ. ᎤᏪᏅᎴᏃ, ᎠᎴ ᏭᏃᎮᎵᏙᎴ ᏂᎬᎢ ᎦᏚᎲ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏄᏛᏁᎸ ᏥᏌ.\n ᏃᏗ ᎠᎩᏩᏛᏗ ᎨᏎᏍᏗ ᎤᏓᏅᏗ ᏧᎬ ᏥᏯᎵᏍᎦᏍᏙᏗ.\nᏳᏃᏴᎬᎾ ᎨᏒ ᎨᏴ.\nᎿᏉᏃ ᏥᏳᎯ ᏕᎬᏩᏓᏂᎸᏨᎩ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏳ ᏭᏔᎳᏗᏨᎩ ᎾᎿ ᎤᎾᏅᏔᏩᏗᏒᎢ.\nᎨᏍᏗ ᏳᎾᏓᏅᏖᎳ ᏧᎾᏓᎯᏍᏗ.\nᏈᏗᏃ ᏭᏩᏂᎸ ᎠᏍᏚᎲ ᎦᎶᎯᏍᏗᏱ, ᎠᏛ ᎶᏗ ᏧᏙᎢᏛ ᏧᏛᏓᏍᏔᏅᏎᎢ;\nᏂᎦᏓ ᎠᏂᏴᏫᏯ ᎤᏁᏅᏍᏗ ᎤᏚᎵᏍᎨ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏰᎵᏍᎨ ᎢᏳᏁᎾ ᎨᏒ ᎠᎴ ᎢᏳᏂᏁᎦ ᎨᏒ, ᎤᏬᏪᎳᎩᏎ ᏍᎩᎾᎾ ᎠᏓᏁᏢ .\nᎯᏣᏕᎶᎰᏍᎨᏍᏗ ᏄᏬᏍᎩᎸ ᏃᎴ ᏄᏁᎩᏴ ᎤᏁᎦᎸᎢ, ᎤᏩᏙᎯᏴᏓ ᎩᎦᎨ ᎤᏍᎪᎸ ᏚᏔᎷᎩ ᏗᎦᎴᏂ ᏃᎴ ᎧᏴᏐᎵ.”\nᎢᏕᏅ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎡᏙᏓ ᎡᏆᎭᎻ, ᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏲᎱᏒᎯ ᏱᏭᏂᎷᏤᎸ ᎠᏎ ᏱᏓᏂᏁᏟᏴᎾ ᏓᎾᏓᏅᏛᎢ.\nᎢᎬᏱᏱᏃ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ ᎦᏚ ᎠᎬᎭᎷᏯᏍᏗᏱ ᎤᎬᏩᎵ ᎠᏃᎯᏳᎲᏍᎩ ᎤᎾᏓᏟᏌᏅ, ᏉᎳ ᏚᎵᏥᏙᏁᎸᎩ, ᎤᎩᏨᏛᏉ ᎤᏪᏅᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎡᏃᏱ ᎠᏰᎵ ᏫᎬᏩᏛᏅᎩ ᎦᏬᏂᏍᎬᎩ.\nᎤᏙᎯᏳᎮ ᏥᏂᎦᏪᏍᎬ ᎠᎦᏴᎵ ᎤᏃᏕᎾ, ᏦᏒᎢ ᎢᏳᏍᏗ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.\nᎠᎴ ᎬᏂᏳᏉ ᎠᏓᏰᏍᎩ ᎤᏢᎩ ᎤᎷᏤ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᏱᏣᏓᏅᏖᎸ ᏰᎵᏉ ᏱᏍᎩᏅᎦᎸ.\nᎠᏎᏃ ᏚᏳᎪᏛ ᏥᏁᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᏱᏍᎩᏲᎢᏳᎲᏍᎦ.\nᎠᏂᏲᏍᎩ ᎤᏣᏅᏗ ᎠᏂᏙᎾᎥ.\nᏢᏃ ᏔᎵ ᎢᏳᏟᎶᏓ ᎢᏳᏓᏅᎯᏓ ᎨᏒ ᏦᎨᏅᏒ ᏂᏛᎯᎩᏓ.\nᎠᏴᏃ ᏕᏣᏙᎥ ᎦᏥᎾᏄᎪᏫᏎᎸ, ᎠᎴ ᎠᏎ ᏓᎦᏥᎾᏄᎪᏫᏎᎵ, ᎤᏁᎳᏗᏍᏙᏗᏱ ᎠᏴ ᏍᎩᎨᏳᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎦᏥᏯᎢ ᎢᏳᎵᏍᏙᏗᏱ.\nᎥᏝᏃ ᏰᎵ ᏅᏓᎬᏪᏬᎯᎵᏴᏍᏓᏁᏗ ᏱᎨᏎ ᎾᏍᎩ ᎯᎠ.\nᏗᏓᏍᏚᏗᏱᏃ ᎠᎦᏘᏯ ᎾᏍᎩ ᏅᏧᏂᏪᏒ ᎤᏃᏁᎴ ᏉᎳ; ᏗᏄᎪᏗᏍᎩ ᏛᎾᏓᏅᎵ ᏗᏍᏛᏯᎪᏗᏱ; Ꭷ, ᏍᏗᏄᎪᎢ ᎠᎴ ᏅᏩᏙᎯᏩᏛ ᎢᏍᏕᎾ.\nᎠᏎᏃ ᏍᏏᏉᏯ, ᎠᎾᏗᏍᎪ, Ꮭ ᎠᏲᏩᏁᎦ ᎪᎵᎦ ᎠᎴ ᎠᎪᎵᏰᏍᎩ ᏱᎨᏎ ᏝᏍᏊ ᎠᎴ ᎠᏓᎴᏂᏍᎬ ᎠᏲᏩᏁᎦ ᎤᎪᎵᏰᏗ.\nᎩᎦ ᎤᏓᏅᏅ ᎠᏆᎧᏛ.\nᎯᏍᎩᏰᏃ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡ ᎠᏂᏍᎦᏯ. ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏩᎾᏅᎥᎦ ᎯᏍᎦᏍᎪᎯ ᎢᎫᏂᏨᏛ ᎨᏎᏍᏗ.\nᎾᏍᎩ ᏚᏪᏟᏌᏅ ᎠᎴ ᏅᏩᎾᏓᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏪᏟᏌᏅ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ, ᎢᏥᎦᏔᎭ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏧᎬᏩᎶᏗ ᎢᏗᏩᏛᏗᏍᎬᎢ.\n“ᎤᏟᏂᎩᏓ ᎠᏓᏯ ᏧᎬ ᏓᏥᏯᏛᏛᏂ ᎨᎵᎠ ᏳᏣᏅᏓ,” ᎤᏛᏁ\n“ᎠᏯ ᏏᏆ! \nᏘᏰᎵᎯᏍᏓ, ᎾᏍᎩ ᏓᏓᏁᎳᏗᏒ ᎬᏩᏚᏫᏛ ᏩᏂᎶᎯ, ᎠᎴ ᏕᎦᏚᏩᏗᏒᎢ, ᎠᎴ ᏭᏂᏩᎯ ᎦᏚ, ᎥᏞᏰᏃ ᎪᎱᏍᏗ ᏯᏂᏰ ᎤᎾᎵᏍᏓᏴᏗ.\nᎠᏎᏃ ᎢᏅᎯᏳ ᏭᎪᎲ ᏥᏌ, ᏚᏍᏆᎸᏔᏁ ᎠᎴ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ,\nᎩᎶᏰᏃ ᎢᏥᎷᏤᎯ ᏅᏩᏓᎴ ᏥᏌ ᎠᎵᏥᏙᎲᏍᎨᏍᏗ, ᎾᏍᎩ Ꮎ ᎠᏴ ᎣᏣᎵᏥᏙᏅᎯ ᏂᎨᏒᎾ, ᎢᏳ ᎠᎴ ᏅᏩᏓᎴ ᎠᏓᏅᏙ ᏙᏣᏓᏂᎸᏨᎭ, ᎾᏍᎩ Ꮎ ᏗᏣᏓᏂᎸᏨᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩ Ꮎ ᏗᏣᏓᏂᎸᏨᎯ ᏂᎨᏒᎾ, ᎣᏏᏳᏉ ᎤᏁᎳᎩ ᏱᏤᎵᏒ.\nᎤᏦᏍᏓᏁᎯ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎢ ᎤᎧᏛ ᎠᎳᏂ.\nᏐᎳᏃ ᏕᎤᎴᏅ ᎡᎳᏗ ᎦᏅᎢ, ᎠᎴ ᏗᎦᏙᎵ ᏚᎵᏍᏚᎢᏒ ᎥᏝ ᎩᎶ ᏳᎪᎮᎢ, ᎬᏬᏱᏅᏎᏃ ᏕᎹᏍᎦ ᏫᎬᏩᏴᏔᏁᎢ.\nᏗᏂᎦᏙᎵᏃ ᏚᎵᏍᏚᎩᏒᎩ. ᏥᏌᏃ ᏚᏅᏍᏓᏕᎸᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏞᏍᏗ ᎩᎶ ᎤᏙᎴᎰᏒᎩ.\n“ᎠᏯ ᏥᎦᏔ ᏰᎵᏉ ᏱᎪᎯᏳᎲᎦ,” ᎤᏛᏁ ᎤᏔᎾᏯ ᎤᏃᏕᎾ.\nᏝᏍᎪ ᎠᏂᏔᎵ ᏥᏍᏆᏯ ᏌᏉ ᎢᏯᏓᏅᏖᏗ ᏧᎾᎬᏩᎶᏗ ᏱᎩ, ᎠᏎᏃ ᎥᏝᏌᏉ ᎡᎳᏗ ᎤᏅᎢᏍᏗ ᏱᎩ ᎢᏥᏙᏓ ᎤᏓᏅᏖᎸᎯ ᏂᎨᏒᎾ.\nᎠᏎᏃ ᏈᏓ ᏕᎤᎴᏔᏁ ᎯᎠ ᏄᏪᏎᎢ; ᏔᎴᎲᎦ, ᎠᏴ ᎾᏍᏉ ᏴᏫᏉ.\nᎠᎴ ᏌᎺᎵᏱ ᎠᏎ ᎤᎶᎯᏍᏗ ᎨᏒᎩ.\nᎤᏏᏩ ᎨᏎ ᏫᎵᎻ ᎤᏍᏉᏟ ᏃᎴ ᎧᎵ ᎨᏎ ᎤᏓᏅᏖᏗ.\n“ᎦᏨ ᏛᏰᏏ ᎦᎷᏯᏍᏗ?” ᎤᏛᏛᏁ ᎤᏥ ᏲᎾ ᎤᏤᏍᏙ, ᏧᏃᏩ ᏓᏂᏌᎲᏍᎨ ᎦᏍᎩᎸ ᏑᎾᎴ ᎤᎾᎵᏍᏓᏴᏗ.\nᏔᎳᎪᏰᏃ ᎢᎦᎢ ᎠᎵᎮᎵᏍᏗ ᏲᏣᎫᏴᏓᏏ ᎤᏁᎳᏅᎯ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᎦᎥ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎬᏒ ᎾᏍᎩ ᎣᏣᏓᏅᏓᏗᏍᎬ ᏂᎯ ᎨᏒ ᎤᎬᏩᎵ ᎣᎦᏤᎵ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ;\nᎤᏓᏁᏙᏔᏁ ᎤᏃᎴ.\nᎤᎴᏅᎮ ᏓᎧᏌᏬᎢᎲ.\nᎠᎴ Ꮼ ᎤᏓᏙᎵᏍᏔᏅᎩ, ᎦᎸᎶᎢᏃ ᎤᎦᏃᏓᏁᎸᎩ, ᎪᏙᎯᏃ ᎤᎾᏄᎪᏫᏒᎩ ᎤᎾᏄᎪᏫᏍᏗ ᎨᏒᎢ.\nᎢᏳ ᎠᎴ ᎦᎶᏁᏛ ᏧᎴᎯᏌᏅᎯ ᏂᎨᏒᎾ ᏱᎩ, ᎿᏉ ᎣᏣᎵᏥᏙᎲᏍᎬ ᎠᏎᏉᏉ ᏂᎦᎵᏍᏗᎭ, ᎠᎴ ᎢᏦᎯᏳᏒ ᎾᏍᏉ ᎠᏎᏉᏉ ᏂᎦᎵᏍᏗᎭ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎿᏉ ᏗᏥᏢ ᎠᎴ ᎠᎾᎵᏍᏓᏴᎲᏍᎬ ᎤᎬᏫᏳᏌᏕᎩ ᏪᏥᏁᎥᏏ. ᏭᏂᏁᎸᎩᏃ.\nᎠᎼ ᎡᎳᏗ ᎦᎵᏍᏓᏯᎲᏍᎩ ᏃᎴ ᏧᎾᏓᎴᏅᏓ ᎠᏣᏗ ᏗᏥᎪᎥ.\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎤᏂᏣᏘ ᎾᏍᎩ ᏗᎨᎦᏪᏍᏗᏱ ᎤᏂᎸᏐᎸᎯ; Ᏺ ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᎦᎪ ᎢᏤᏯᏔᏅ ᎡᏣᎵᎡᏗᏱ ᎤᏔᎳᏬᎯᏍᏗ ᎤᎷᎯᏍᏗ ᎨᏒᎢ?\nᏅᎩ ᎢᏴ ᏧᏥᏍᏔᏅ, ᎤᏃᎮᎸ ᏧᏙᏓᏋᏓ ᎡᏙᎲ ᏌᎷᏱ ᏃᎴ ᏚᏅᏓᏒ ᎤᏍᎦᎣᏅ ᎨᏐ.\n“Ꮟ ᎠᏍᎪᎵ ᏫᎯᏳᏓᎸᎥᎦ,” ᎤᏛᏁ ᏣᎵ.\nᎾᏍᎩᏃ ᎦᏓᏅᏖᏍᎬ ᎤᏟ ᎣᏏᏳ ᎾᏍᎩ ᎯᎠ ᎪᎯ ᎨᏒ ᎠᎩᎵᏯ ᏤᎭ; ᎾᏍᎩ ᎤᏟ ᎣᏏᏳ ᎯᎠ ᎾᏍᎩ ᏱᏄᏍᏗ ᏴᏫ ᎡᎲᎢ.\nᎠᏂᎷᎩ ᏌᏌ ᎠᏂᏓ.\n“ᎯᎠᏃ ᎤᏍᏆᏂᎩᏗ ᏅᎩ ᏗᎦᏅᏌᏗ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ, “ᎤᏙᎯᏳ ᎣᏍᏓ.” \nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎬᏂᏳᏉ, ᎠᏂ ᏔᎵ ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ; ᎯᎠᏃ ᏂᏑᏪᏎᎴᎢ, ᏰᎵᏉ ᎾᏍᎩ.\nᎦᏚᏏ ᎤᏓᏩᎫᎾᏔ ᎦᏄᎸᎯ ᎤᏂᎦᏘᏕᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏚᏅᏫᏍᏔᏅᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏳᎯ ᎤᎾᏦᏗᏱ, ᎠᎴ ᎢᎬᏱ ᏂᏚᏂᏐᎯᏍᏗᏱ ᎠᏏ ᏓᏰᎵᎯᏍᏗᏍᎬ ᎤᏂᏣᏘ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎾᏍᎩ ᎪᎯ ᎢᎦ, ᎠᎴ ᎪᎯᏉ ᏒᏃᏱ, ᎠᏏ ᏔᎵᏁ ᎾᏂᏴᎬᎾ ᏣᏔᎦ, ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ.\nᎤᏄᎪᏨᏃ ᎯᎠ ᏫᏄᏪᏎᎴ ᎤᏥ, ᎦᏙ ᏓᏥᏔᏲᎵ? ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏣᏂ ᏗᏓᏬᏍᎩ ᎠᏍᎪᎵ.\nᎾᏍᎩᏃ ᎢᎾᎨᎢ ᎤᏬᏚᎯ, ᎤᎵᎢᎩ, ᎠᎴ ᎭᏫᏂᏨ,\n”ᎭᎾᏗ ᏣᎵᏓᏍᏗᎭ ᎩᎾᎵ, ᎩᎾᎵ,” ᎤᏛᏁ ᎩᎶ.\nᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᎠᎩᎬᏫᏳᎯ ᎨᏒ ᎥᏝ ᎠᏂ ᎡᎶᎯ ᎡᎯᏱᎩ. ᎢᏳᏃ ᎠᎩᎬᏫᏳᎯ ᎨᏒ ᎠᏂ ᎡᎶᎯ ᎡᎯ ᏱᎨᏎᎢ, ᏗᏆᏤᎵᎦ ᏱᏚᎾᏟᏴᎨᎢ, ᏞᏍᏗ ᎠᏂᏧᏏ ᏗᎨᏥᏲᎯᏎᎸᎩ, ᏳᏁᎵᏎᎢ. ᎠᏎᏃ ᎥᏝ ᎠᏂ ᎤᏓᎴᏅᎯ ᏱᎩ ᎠᎩᎬᏫᏳᎯ ᎨᏒᎢ.\nᎤᎾᏓᏤᎵᏛᏃ ᏴᏫ ᏓᎾᏩᏗᏒ ᎤᏂᎿᎸᏨᎩ, ᎠᎴ ᏂᎯ ᎾᎯᏳ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎲ, ᎠᎴ ᎾᎯᏳ ᏧᏂᏲᎱᏒᎯ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏔᎫᏴᎡᏗ ᎨᏒ ᏘᏅᏏᏓᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏕᏣᏙᎥ ᎠᏂᎾᏰᏍᎩ, ᏧᎾᏍᏗ ᎠᎴ ᎾᏍᏉ ᏧᎾᏛᎾ; ᎠᎴ ᏗᏛᏙᏗᏱ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏂᏛ ᏗᏍᎩ ᎨᏒᎢ.\nᏈᎵᏃ ᎤᏩᏛᎲᎩ ᏁᏓᏂᎵ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏥᏩᏛᎲ ᎾᏍᎩ ᎼᏏ ᎫᏬᏪᎳ ᏥᎧᏃᎮᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎵᎯ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏣᏂᏃᎮᎭ, ᎾᏍᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᏦᏩ ᎤᏪᏥ.\nᎦᎶᎯᏍᏘᏳᎸ ᎤᏨᏏᏰᏍᎬ, ᏎᎷ ᎦᏚ ᎤᏑᎸᏓ ᎤᏩᏓᏫᏔᏅ ᎤᎳᎨᏯᏛᏅ ᎾᏍᎩᏴ ᏧᏅᏏᏯ ᎠᏆᏂᏲᏍᏗ ᏱᏓᏗᏅ.\n“ᏙᎢᏳᏍᏗ ᏣᎶᏗ ᎭᏫᏂ?” ᎤᏛᏛᏁ ᏫᎵᎻ, \nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ ᎾᏍᎩ ᎠᏴ ᏴᎨᏨᏃᎲᏏ ᎢᏳᏍᏗ ᎨᏒ ᎠᏆᎵᏍᎦᏍᏙᏛ ᎯᎠ ᎾᏍᎩ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ.\nᎩᎶᏍᎩᏂ ᎡᎶᎯ ᎡᎯ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏧᏪᎰᎢ, ᎠᎴ ᏣᎪᏩᏘᏍᎪ ᏗᎾᏓᏅᏟ ᎤᏂᎬᎬᎢ, ᎠᏎᏃ ᎾᏍᎩ ᏣᏍᏚᏁᎰᏉ ᎤᎾᏫ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏳᏪᎭ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒᎢ?\nᎯᎦᏔᎭ ᎨᏍᏗ ᎠᏂᏬᏂᏍᎩ ᏱᎩ ᏗᎦᎾᏌᎢ.\n“ᎣᏍᏓᏗ ᎯᏃᎦ ᎨᎵᎠ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᎴ ᎾᏍᎩ ᎤᎧᎵᏨᎯ ᎨᏒ ᏂᏗᎥ ᎡᎩᏁᎸᎯ, ᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎶᏏᎶᏛ ᎡᎩᏁᎸ.\nᏂᎦᏛᏃ ᎤᏂᏣᏘ ᎨᏒ ᎤᏃᎯᏳᏅᎯ ᏌᏉᏉ ᏄᏅᏁ ᏧᏂᎾᏫ ᎠᎴ ᏧᎾᏓᏅᏙ; ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏋᏒ ᎠᏆᏤᎵ ᏯᏗᏍᎨ ᎪᎱᏍᏗ ᎤᎲᎢ, ᎠᏰᎵᏉᏰᏃ ᏄᏅᏁᎢ ᏂᎦᎥ ᎪᎱᏍᏗ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎧᏃᎮᏛ ᏙᏓᎦᏥᏯᏠᎢᏍᏓᏁᎵ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒ ᎾᎯᏳ ᎦᎶᏐᏅᎭ ᎠᏗᎭ ᎤᎬᏫᏳᎯ; ᏚᎾᏓᏅᏛ ᏓᏓᏥᎳᏂ ᏗᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏧᏂᎾᏫᏱ ᏙᏓᎪᏪᎳᏂ; ᎠᎴ ᎠᏴ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ, ᎤᏅᏒᏃ ᏗᏆᏤᎵ ᏴᏫ ᎨᏎᏍᏗ;\nᏃᎴ ᏔᎵᏁᎢ ᎤᏐᏱ ᏄᏛᏁᎴ.\nᎭᏂ ᎦᏲᏟ ᎤᎪᏏᏓ ᎢᏯᏅᏁ.\nᎤᎧᎭᏗ ᏱᎩ ᏑᎾᎴᎢ, ᏧᏬᏚᏨ ᎨᏐ ᏚᏏᎳᏛ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏴᏫ ᎤᏪᏥ ᎡᏥᏌᎳᏓᏅᎭ, ᎿᏉ ᏓᏣᏙᎴᎰᏏ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᎪᎱᏍᏗ ᏂᏓᎩᎸᏫᏍᏓᏁᎲᎾ ᎨᏒᎢ, ᎡᏙᏓᏉᏍᎩᏂ ᎠᏇᏲᏅ ᎾᏍᎩ ᏥᏃᎮᏍᎬᎢ.\nᎠᏎᎩ ᎠᏆᎧᏛ ᎡᎶ ᏓᏥᎶᏍᏔᏅ ᎤᏍᎪᎸᏦᏅ ᎢᏳᏍᏗ ᏄᏍᏕ.\nᎠᏏ ᏭᏓᎪᎾᏛ ᎯᎠ ᎾᏍᎩ ᏄᎥᏁᎴᎢ, ᏣᏂ ᏗᏓᏍᏚᏗᏱ ᎤᏍᏚᏁᎢ.\nᎠᏎᏃ ᎦᏓᏅᏖᎭ.”\nᎭᎾ ᎨᏙᎲ, ᎦᎶᎯᏍᏗ ᎤᏅᏏᏴ ᏗᎧᎧᎾᎦ!\nᎭᏫᏯ ᎨᏒ ᎠᏫ ᎭᏫᏯ ᎠᎧᎭᏲᏔᏅ ᏭᏘᏴ ᎤᏩᏌ ᎤᏂᎲ, ᏎᎷ ᎢᏣ ᎤᎦᎹ ᎠᏑᏴᏗ ᎤᏩᏌ.\nᎤᏙᎯᏳ ᎠᎫᏯᎶᏘᏍᏙᏗ! \nᏆᏗᏱ ᎢᎦᎯ ᎠᎴ ᎻᏗᏱ ᎢᏕᎯ ᎠᎴ ᎢᎳᎻᏱ ᎢᏕᎯ ᎠᎴ ᎺᏌᏆᏕᎻ ᎢᏕᎯ, ᏧᏗᏱ ᎠᎴ ᎨᏆᏙᏏ ᎢᏕᎯ, ᏋᏗᏱᏃ ᎠᎴ ᎡᏏᏱ ᎢᏕᎯ,\nᎠᏎᏃ ᏂᏚᎿᏍᏕᏢᎾᏉ ᎨᏐᎢ, ᎠᎴ ᏞᎦᏉ ᏥᏓᎧᎿᏩᏕᎪᎢ; ᎠᎩᎵᏴᏰᏃ ᎦᎾᏄᎪᎢ ᎠᎴ ᎧᏃᎮᏛ ᏛᎵᏰᎢᎸᏍᏓ ᎠᎦᏕᏯᏙᏓ, ᎩᎳᏉ ᎢᏴᏛ ᏚᏬᏕᎯᎰᎢ.\nᎠᎴ ᏦᎢᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏆᏛᎦᏅᎩ ᏦᎢᏁ ᎾᏍᎩ Ꮎ ᎬᏃᏛ ᎯᎠ ᏄᏪᏒᎩ, ᎡᎭᎦᏔᏄᎦ. ᎠᎴ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎬᎿᎨ ᏐᏈᎵ; ᎠᎴ ᎾᎿ ᎤᎩᎵ ᏗᎦᏛᏗ ᏕᎦᏁᎲᎩ.\n“ᎭᏩ, ᏩᎭᏯ!” ᎤᏛᏁ ᏥᏍᏚ. \nᎯᎠ ᎾᏍᎩ Ꮎ ᎠᏂᎨᏴ ᎦᏓᎭ ᎢᎬᏩᏅᏁᎸᎯ ᏂᎨᏒᎾ; ᎤᎾᏓᏅᎦᎸᏛᏰᏃ ᎨᏒᎩ ᎾᏍᎩ. ᎯᎠ ᎾᏍᎩ Ꮎ ᎤᏃᏕᎾ ᎠᎩᎾ ᏥᎬᏩᏍᏓᏩᏗᏙᎭ ᏂᎦᎥ ᎡᏙᎲᎢ. ᎯᎠ ᎾᏍᎩ ᏴᏫ ᎠᏁᎲ ᎨᎪᏣᎴᏛ ᎨᎦᎫᏴᏛ, ᎢᎬᏱ ᎬᏩᎾᏓᏓᏁᎸᎯ ᎢᏳᎾᎵᏍᏔᏅᎯ ᏥᎩ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ.\n“ᎢᎾᎵᏍᏓᏴᎯ.”\nᏕᏣᎵᏃᎮᏍᎨᏍᏗ ᏕᏨᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᏗᎧᏃᎩᏍᏙᏗ, ᎠᎴ ᎦᎸᏉᏙᏗ ᏗᎧᏃᎩᏍᏗ, ᎠᎴ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᏗᎧᏃᎩᏍᏗ, ᏕᏥᏃᎩᏍᎨᏍᏗ ᏙᏗᏣᏓᏅᏛ ᏗᏓᎴᎲᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏕᏥᏃᎩᏍᏗᏍᎨᏍᏗ.\nᏂᏥᎥ ᎶᎻ, ᎤᏁᎳᏅᎯ ᎢᏥᎨᏳᎯ, ᎡᏥᏯᏅᏛ ᎢᏣᏓᏅᏘ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏍᏛ ᎨᏤᎳᏗᏙᎮᏍᏗ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᎢᏳᏃ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎴᏍᏗ, ᎠᎴ ᎯᏚᎨᏍᏕ, ᎠᏴᏉ ᎠᏆᎫᏴᏗ ᏅᏁᎸᎭ;\nᎠᏎᏃ ᎥᏝ ᏯᎩᏲᎭ ᎠᏋᏒ ᎥᎩᎸᏉᏗᏱ; ᎡᎭ ᎤᏲᎯ ᎠᎴ ᏗᎫᎪᏗᏍᎩ.\nᎢᏨᎨᏳᎢ, ᎿᏉ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎠᏴ, ᎠᏎᏃ ᎥᏝ ᎠᏏ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏗᎭ ᎢᎦᎵᏍᏙᏗ ᎨᏒᎢ; ᎠᏎᏃ ᎢᏗᎦᏔᎭ ᎾᎯᏳ ᎦᎾᏄᎪᏨᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏂᎦᏍᏕᏍᏗ, ᎾᏍᎩᏰᏃ ᏄᏍᏛ ᎾᏍᎩ ᏓᏰᏗᎪᎢ.\nᎦᏲᏟ ᎤᏓᏅᏓ ᎤᏃᎴ ᎨᏴ ᏓᏳᏓᎴᏅ, ᎠᎭᏰᎲ ᎠᏒᎬ ᎾᏍᎩᏯ ᎩᏟ ᎦᏓᏁᎯ ᎤᎵᏏᎩ ᏧᏓᏴᎳᏛ ᎢᏣ ᎤᏪᏅᏒ ᏣᎵ.\nᏧᏂᏍᏗ ᎤᏂᏃᏕᎾ ᏧᏂᏥ ᎤᎾᏙᎴᏇᎴ.\nᏍᎩᎾ ᎤᏐᏯᏊ ᏗᎧᎾᏗ ᏥᎨᏎ ᏂᎦᏓ ᎠᏃᎳᎩ ᎭᎾ.\nᎠᎴ ᎾᏍᏉ ᏱᏨᏯᏛᏛᏅ ᎥᏝ ᏴᎨᏍᎩᏁᏥ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏍᎩᏲᎯ.\nᏙᏓᎦᎴᏂ, ᎡᏙᏓ ᏮᏓᏥᏤᎢ, ᎯᎠ ᏫᏅᏓᏥᏪᏎᎵ; ᎡᏙᏓ, ᎦᎸᎳᏗ ᏥᏍᎦᏅᏤᎸ, ᎠᎴ ᏂᎯ ᎯᎦᏔᎲᎢ.\nᏐᏉ ᎤᎵᏏᏂᏕᎾ, ᎤᎾᏕᏘᏱᏍᎬ ᎤᏓᎷᎸ, ᎤᏭᏔᏁᎢ.\n“ᏧᏍᏆᏴᏍᏗ?” \nᏂᎯ ᎰᎯᏳᎲᏍᎦ ᎠᏏᏴᏫ ᎡᎲ ᎤᏁᎳᏅᎯ. ᎣᏏᏳ ᎿᏛᏁᎭ. ᎠᏂᏍᎩᎾ ᎾᏍᏉ ᎠᏃᎯᏳᎲᏍᎦ, ᎠᎴ ᏚᏂᎾᏫᎭ.\nᎯᏍᎩ ᎢᏳᎾᏙᏓᏆᏍᏗ ᎢᏳᏕᏘᏴᏓ ᏄᎵᏍᏔᎾ, ᏃᏗ ᏰᎵᏉ ᎦᎾᏗᏅᏗ ᎢᎬᏓ ᎤᏛᏁ ᎡᎶᏗ.\nᎾᏍᏉᏍᎩᏂ ᎢᎬᏱ ᏃᎩᎩᎵᏲᏦᎢ ᎠᎴ ᏂᎪᎩᏐᏢᏃᎢ ᏈᎵᎩᏱ, ᎾᏍᎩ ᏥᏥᎦᏔᎭ, ᏃᏥᏍᎦᎢᎲᎾ ᎣᎦᏁᎳᏅᎯ ᎣᏣᎵᏍᎦᏍᏙᏛ ᎢᏨᏃᎮᎮᎸᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᏔᎵ ᎤᏛᏛᎩ ᎤᏣᏘ ᎠᏟᏂᎬᏁᏗ ᎨᏒᎢ.\nᎯᎠᏰᏃ ᎢᎦᏪᏛ ᎢᎩ, ᎪᎯ ᎢᎦ ᎢᏳᏃ ᎢᏔᏚᎵᏍᎨᏍᏗ ᎧᏁᎬ ᎢᏣᏛᎪᏗᏱ, ᏞᏍᏗ ᏱᏗᏥᏍᏓᏲᏗᏍᎨᏍᏗ ᏗᏥᎾᏫ, ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸ ᎾᎯᏳ ᏥᎬᎩᎾᎸᏍᏔᏅᎩ.\nᎢᏗᎦᏔᎭ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᎩᎶᏒᎢ ᎬᏂᏛᏃ ᏫᎩᎾᏄᏨᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᏗᎨᏳᎯᏳ ᎨᏒ ᎢᏓᏓᏅᏟ. ᎩᎶ ᎤᎨᏳᎯᏳ ᏂᎨᏒᎾ ᏱᎩ ᏗᎾᏓᏅᏟ, ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᎭ.\nᎤᏒᎮᎯ ᏃᎴ ᎯᎨᏠᎮ, ᏃᎴ Ꮟ ᏱᎦᏢᏁᎬᏁ ᎤᏒᎯ.\n“ᎤᏙᎯᏳᎯ ᎪᎨᏱ ᏏᏆ ᎠᏯ,” ᎤᏛᏁ ᎡᏚᏥ.\nᎦᏙ ᎰᏩ ᎤᏍᏗ, ᎢᏓᎵᏅᏟ? ᎢᏳᏃ ᏕᏥᎳᏫᎩ, ᎢᏥᏏᏴᏫᎭ ᏗᎧᏃᎩᏛ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᏗᏕᏲᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ, ᎠᏁᏢᏙᏗ ᎢᏣᏛᏅᎢᏍᏙᎢ. ᏂᎦᏛ ᎠᏗᎾ ᏕᏥᎸᏫᏍᏓᏁᎲ ᏗᏣᏓᎵᏂᎪᎯᏍᏙᏗᏱ ᎤᎬᏩᎴᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎡᎶᏗᏏ ᎠᏍᎦᎨ ᏣᏂ ᎠᎴ ᏳᎴᎢ; ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᎢᎬᏩᏛᏁᏗ ᏱᎨᏎᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏴᏛ ᏂᏨᎦ ᏄᏓᎴᏒ ᎤᏲ ᎨᏒᎢ ᎠᎴ ᏄᏓᎴᏒ ᎦᎶᏄᎮᏛ ᎠᎴ ᎤᏠᎾᏍᏗ ᎨᏒ ᎠᏛᏳᎨᏗ ᎠᎴ ᏄᏓᎴᏒ ᎤᏲ ᏗᏓᏃᎮᏗ ᎨᏒᎢ,\nᎠᏂᏐᎢ ᏗᏂᏲᏟ ᏚᏂᏂᎬᎬ ᏧᎾᏬᎥ.\nᎠᎴ ᎠᎨᏴ ᎥᏥᎪᎥᎩ ᎤᎾᏓᏅᏘ ᎤᏂᎩᎬ, ᎠᎴ ᏥᏌ ᎬᏩᏃᎮᏍᎩ ᎤᏂᎩᎬ ᎤᏴᎪᎯᏍᏗ ᎨᏒ ᎬᏗ ᎠᎩᏍᏆᏂᎪᏒᎩ.\nᏈᏓᏃ ᎤᏅᏓᏛ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏂᏳᏉ, ᎡᎦᏔ--ᎢᏳᏍᏗ ᏡᎬ ᏥᏍᎦᏨᎩ ᎤᏩᏴᏐᏅ.\nᏰᎵ ᏂᏥᎠ ᎯᏣᏅᏔ ᎨᏨᎨᏫᏍᏗ ᏱᎨᏒᎾ ᎡᏘ ᎪᎨ ᏣᏓᏴᎳᏔᏍᎬ ᏕᎪᏪᎸ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏓ ᎰᎻ ᎤᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᎢᏣᏛᎦᏁ ᎤᎵᏍᎨᏓ ᎨᏒᎢ ᎤᏍᏆᏂᎩᏗ ᏏᏆ.\nᎡᎳᏗ ᎠᏇᏅᏓ ᏩᎩᎷᏨ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᎤᏓᎷᎸᏉ ᏅᏙ ᏗᎧᎸᎬ, ᎢᎾᎨ ᎠᏁᎯ ᎩᏟ ᏅᏃ ᎠᏁᏙᎯ ᎣᎦᎵᎪᎲ, ᏎᎷ ᎤᏥᏣᏘ ᏅᏙ ᎾᎥ ᎦᎵ ᎨᏒ.\nᎣᎩᏴᏩᏛᎲᏃ ᏥᏳ ᏈᏂᏏ ᎠᏂᏂᏒᎢ, ᎣᎦᏣᏅᎩ ᎣᎩᏴᏫᏛᎲᎩ.\nᎫᎵᏍᏔᏅ ᏄᎵᏍᏔᎾ ᏔᎷᎩᏍᎩ ᎤᎸᏫᏒ ᎤᏓᏦᎲ ᎤᏛ ᎤᏥᏍᏔᏅ ᎤᏗᏔᎲ.\nᎨᏍᏗ ᎬᏕᏘᏱᎩ ᎠᏙᎯ.\nᎠᏎᏃ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏕᎫᎪᏗᏍᎬ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏕᎫᎪᏓᏁᎲ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ.\nᎠᎴ ᎤᎧᎵᏨᎯ ᎤᏬᎯᏳᏎᎢ ᎾᏍᎩ ᏄᏍᏛ ᎤᏚᎢᏍᏔᏅ ᏰᎵᏉ ᎾᏍᏉ ᎢᎬᏩᏛᏁᏗ ᎨᏒᎢ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᏫᏥᎢᎦ ᏯᏓᏅᏖᏍᎨᎢ.\nᏔᎳᏚᏃ ᎢᏯᏂᏛ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᏚᏅᏏᏙᎴ ᏔᎵᎭ ᏧᎵᎪᏅᏛ, ᎠᎴ ᏚᎵᏍᎪᎸᏓᏁᎴ ᏧᏂᏄᎪᏫᏍᏗᏱ ᏗᎦᏓᎭ ᏗᏓᏅᏙ;\nᎢᎬᏪᏅᏛᏃ ᏥᏳᎯ ᎤᏣᏁ ᎠᏁᎮ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᏓᎵᎻᏄᏓ ᎠᏍᏛ ᏭᎷᏤᎢ.\n“ᎦᎸᎳᏗ ᏭᏔᎷᎪ ᏃᎴ ᏰᎵᏉ ᎦᏅᎪᏫᏍᎪ ᏧᏏᎳᏛᏙᏗ ᎤᏃᎴ ᎤᏲᏙᏗ.\nᏧᏭᎪᏓᏁᏗᏱ ᎾᏂᎥᎢ, ᎠᎴ ᏧᎬᏍᎪᎸᏗᏱ ᎾᏂᎥ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏂᎦᎥ ᎤᏣᏘᏂ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ, ᎠᎴ ᏂᎦᎥ ᏂᏚᏳᎪᏛᎾ ᏄᏂᏪᏒ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᎾᏍᎩ ᎬᏩᏡᏗᏍᎬᎢ.\nᏌᎳᏓ ᎠᎦᏘᏰᎢ ᎤᏣᏅᏓᏕᏗ, ᎤᏅᎪᏤ ᎧᏁᏌᎢ ᏃᎴ ᎤᎩᏠᏫᏎᎢ ᎠᏓ ᎨᏛᎢ ᎦᏌᎾᎳ ᎭᏫᏂᏣ.\nᏞᏍᏗ ᏕᏣᏓᏠᎲ ᏱᏣᏓᏁᎴᏍᏗ ᏓᎶᏂᎨ ᎠᏕᎸ ᎠᎴ ᎤᏁᎬ ᎠᏕᎸ ᎠᎴ ᎥᏣᏱ,\nᎤᏒᎯ ᎣᎦᎵᏍᏔᏴᏗ, ᏚᏯ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ ᏃᎴ ᏑᎷ ᎢᏣ ᎠᎦᏅᎪᎢ ᏫᎬᏣᏝᏅ.\nᎠᎪᏄ ᏧᏂᏲᏏᏍᎩ ᎣᏍᏛ ᎨᏒ ᏚᎧᎵᎢᏍᏔᏅ, ᏧᏁᎿᎢᏃ ᎠᏒᎭ ᏙᎤᏁᏅᏍᏗᏱ ᏂᏚᏩᏁᎸᎩ.\nᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏧᏁᎿᎢ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᏗᎾᏓᏘᏂᏙᎯ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎾᏂᎥ ᏗᎨᏥᎾᏝᎢ, ᎠᎴ ᎾᏂᎥ ᏂᏗᎨᏥᎾᏝᎥᎾ, ᎤᎾᏗᏍᎦᎳᏅᎩ ᏚᏍᏓᎦᎸᎢ, ᎠᎴ ᏅᏲᎯ ᏕᎨᏒ ᏙᏓᎸᎢ;\nᎤᎴᏅᎮᏃ ᏚᏪᏲᏁᎢ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎤᎩ ᎵᏲᎢᏍᏗᏱ; ᎠᎴ ᎬᏩᏲᎢᏎᏗ ᎨᏒ ᏗᏂᎳᏫᎩ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᎠᏥᎢᏍᏗᏱ ᎨᏒᎢ, ᏦᎢᏁᏃ ᎢᎦ ᏧᎴᎯᏐᏗ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏂᎯ ᏅᏩᏓᎴ ᎯᏰᏲᎲᏍᎩ ᏥᎩ, ᏝᏍᎪ ᏨᏒ ᏯᏓᏕᏲᎲᏍᎦ? ᏂᎯ ᎭᎵᏥᏙᎲᏍᎬ ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ ᏣᏗᎭ, ᏥᎪ ᎢᎯᏃᏍᎩᎭ?\nᎾᏍᎩᏃ Ꮎ ᎠᏓᏅᏙ ᎢᏥᏁᎯ ᏥᎩ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎯ ᏥᎩ ᎢᏤᎲᎢ, ᏥᎪ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎾᏛᏁᎲ ᏅᏗᎦᎵᏍᏙᏗᎭ? ᏥᎪᎨ ᎤᏬᎯᏳᎯ ᎠᏛᎩᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ?\nᏚᎧᎾᏁ ᎠᏧᏣ, Ꭾ ᎤᏛᏁ.\nᎠᎴ ᎦᏙᏃ ᏗᏄᏬ ᏙᏤᎵᎯᏍᎪᎢ? ᏗᏣᏓᏅᏛᎵ ᏧᏥᎸᎯ ᏠᎨᏏ ᏤᎯ ᏓᏛᏍᎬᎢ. ᎥᏝ ᏱᏚᏂᎸᏫᏍᏓᏁᎰᎢ, ᎠᎴ ᎥᏝ ᏯᏂᏍᏙᎰᎢ.\nᎪᎯ ᎢᎪᎯᏓ ᏚᎦᏙᏍᏔᏁ ᎤᎾᏓᏓᏍᎩᏌᎲ, ᎤᏂᎾᏰᎯᏍᏗ ᎢᎪᎯᏓ.\nᎠᎬᏱ ᎤᏩᎬᏘᏗᏒ ᎧᏂᎩᏛ ᎤᏚᎩ.\nᎠᎴ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᏣᏘᏃᎯᎮᏍᏗ, ᎠᎴ ᏄᏂᎬᏫᏳᏌ-ᏕᎩᏱ, ᎠᎴ ᎤᏂᎬᏫᏳᎯᏱ, ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᏄᏍᏛ ᎠᎴ ᎢᏳᏍᏗ ᎨᏒ ᎢᏣᏓᏁᏤᏗᏱ, ᎠᎴ ᎢᏥᏪᏍᏗᏱ;\nᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎠᏩᎾᎦᎳᎯᏳ ᎨᏒ ᏓᏓᎾᏩᏍᏛ ᎠᎦᏛᏅᎩ, ᎠᏎᏃ ᎬᏃᏛ ᎢᏯᎬᏁᎸᎯ ᎬᏔᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ. ᎠᏴ ᎾᏍᏉ ᎾᏍᎩ ᎣᏥᏯᎥ ᏦᏥᏩᎾᎦᎳᎯᏳ, ᎠᏎᏃ ᎢᏧᎳᎭ ᏙᏨᏁᏍᏗ ᎾᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᏨᏴᏓᏁᎲ ᏂᎯ.\nWashington Irving ᎤᏬᏪᎳᏅ ᏥᎪᎵᏰᏍᎬ ᎧᏃᎮᏍᎩ ᏭᏕᎵᎬ ᎢᎪᏗ ᎤᏍᎪᎸ ᎠᏨᏍᏛ.\nᎠᏧᏣ ᏱᎩ; ᎠᏫᎾ ᎠᎴ ᏱᎩ; ᏲᎵᎪ ᎠᎨᏳᏣ, ᎤᏬᏟᏗ ᎨᏐ Ꮓ, ᏣᎳᏣᏯᏍᏗ ᎣᏤᎸᏍᎪ ᏂᎪᎯᎸᏫᏳᏍᏗ.\nᏦᎢ ᏧᏙᏓᏆᏓ ᏑᎾᎴ ᎢᏣ ᎤᏤᏥᏍᏗ ᎦᏁᎳᏓ ᎤᎴ ᎶᏩᎤᏂᎱᏁ ᎤᏛᎾ ᏧᏂᏍᏗ ᏚᏂᏒᎾᏔᏁ ᎪᏛ ᎦᏚᎢᏣ, ᏧᏂᏍᏗ ᏐᏉ ᎠᎵᏍᏔᎩᏛ.\nᏣᏂᏃ ᎤᏄᏪ ᎨᎻᎵ ᎤᏍᏗᏰᏅᎯ, ᎦᏃᏥᏃ ᎤᏓᏠᏍᏕᎢ; ᎥᎴᏃ ᎠᎴ ᏩᏚᎵᏏ ᎢᎾᎨ ᎡᎯ ᎠᎵᏍᏓᏴᏗᏍᎨᎢ.\nᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ ᏭᎩᎶᏫᏎ ᏌᎳᏓ.\nᎠᎴ ᏥᏍᎦᎢᎲᎢ ᎠᏇᏅᏒᎩ, ᏫᏓᎬᏍᎦᎳᏅᎩ ᎦᏙᎯ ᎠᏕᎸ ᏗᏣᏤᎵᎦ; ᎬᏂᏳᏉ ᎠᏂ ᎾᏍᎩ ᏗᏣᏤᎵᎦ.\nᎠᏎᏛ ᎢᎾᎯᎨᏍᏗ ᎠᎵᏦᏩᏛ ᏳᏫᏣᎷᏣ ᏕᎭᏗᎩᏒ.\nᎤᏍᎩᎾᏛ, ᎨᏍᏗᎦ ᎪᎰᏍᏗ ᏱᎨᏎ ᎤᏛᏅ.\nᎤᏰᎸᎭ ᎨᏒ, ᎦᏳᎳ ᎣᏍᏓ ᎢᏳᏅᏁᎸ ᎠᏂᎨᏯ.\nᏌᏊ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ.\nᎠᎵᏰᎾ ᏩᏎᎯ ᎪᎯᏳᏙᏗ ᏕᏧᎬ ᏚᎪᏍᎬ ᎦᏙᎯ.\nᏧᏅᎪᏣ ᎧᏁᏌᎢ ᏫᎵᎻ, ᏚᎾᏏᏛᏂᎴ ᏃᎴ ᎤᏁᎷᏁᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏍᏗ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ, ᎢᎪᎯᏳᏗᏱ ᏕᎤᏙᎥ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᏗᎦᏓᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎢᎩᏁᏤᎸᎢ.\nᏥᏌᏃ ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ, ᎩᎶ ᎠᏉᎯᏳᎲᏍᎩ ᎥᏝ ᎠᏴ ᏯᏉᎯᏳᎲᏍᎦ, ᏅᏛᎩᏅᏏᏛᏍᎩᏂ ᎪᎯᏳᎲᏍᎪᎢ.\nᏌᏌ ᎤᏁᎢᏍᏔᏁᎴ, ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗ ᎤᏅᏏᏴ ᎤᏬᏞ.\nᏥᏍᎦᏍᏓᏁᏗ ᎦᏁᎸᏗᏍᎬ ᎡᎵᏍᎬ.\nᏭᏲᎢᏴ ᎠᎦᏴᎵ ᏏᏆ ᏍᎩᎾᎾ Haden.\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᎤᎪᎵᏰᏍᎩ ᏧᏱᎵᏙᎰ ᎬᏂᏗᏳ ᏥᎨᏐᎢ, ᎠᏥᎪᎵᏰᎥᎯᏰᏃ ᎨᏎᏍᏗ ᎬᏂᏛ ᎠᎵᏍᏚᎶ ᎠᏥᏅᏁᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏧᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ ᎬᏩᎨᏳᎯ.\nᎤᏕᎰᎯᏍᏗᏳᏰᏃ ᎧᏁᎢᏍᏙᏗᏱᏉ ᎾᏍᏉ ᎾᏍᎩ Ꮎ ᎾᎾᏛᏁᎲ ᎤᏕᎵᏒᎢ.\nᎠᎴ ᎯᎠ ᏁᏪᏎᎢ, ᎠᏆ, ᎡᏙᏓ, ᏂᎯ, ᎨᏒ ᏰᎵᎦᏍᏉ ᎢᎨᏣᏛᏁᏗ ᏂᎦᎥᎢ; ᏍᎩᎲᏏᏉ ᎯᎠ ᎾᏍᎩ ᎤᎵᏍᏈᏗ; ᎥᏝᏍᎩᏂᏃᏅ ᎠᏴ ᎠᏆᏚᎵᏍᎬᎢ, ᏂᎯᏍᎩᏂ ᏣᏚᎵᏍᎬᎢ.\nᎩᎶᏍᎩᏂ ᎤᎬᏫᏳᎯ ᏥᏚᎾᏚᏓᏙᎢ ᏌᏉᏉ ᎠᏓᏅᏙ ᎾᎾᎵᏍᏗᏍᎪᎢ.\nᏚᏒᏁᎢ ᎠᏕᎳ.” \nᎣᏁ ᎢᏴ ᎤᏕᎶᎰᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏙᎯᏳ ᏄᏍᏛ ᏌᎳᏓ.\nᎢᏣᏠᎾᏍᏗ, ᏰᎵᏉ ᎢᏌᏯ ᏧᏙᎴᎰᏎ ᏥᏥᏛᎨᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ;\nᎠᏎᏃ ᎾᎯᏳᏉ ᎢᎦ ᎶᏛ ᏐᏓᎻ ᎤᏄᎪᏨ, ᎦᎸᎳᏗ ᏧᎦᎿᏁ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ, ᏂᎦᏗᏳᏃ ᏚᏂᎰᏁᎢ.\nᎦᏙᎳᏗ ᎨᏒ ᎦᎦᏪᏍᏗ ᏥᏳ, ᎠᏎᏃ ᎣᏍᏓ ᎠᎩᏰᎸᎲ ᎧᎸᎬ ᎢᏣ ᏬᏥᎦᏛ.\nᎠᎴ ᏗᏣᏓᎨᏳᎯᏳ ᎨᏎᏍᏗ, ᎢᏣᏓᏙᎵᏍᏗ ᏗᏥᎾᏫᏱ, ᏕᏣᏓᏁᎮᏍᏗ ᏕᏣᏓᏍᎦᏅᏤᎲᎢ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏥᎨᏥᏁᎸ ᎢᏥᏍᎦᏅᏨ ᎦᎶᏁᏛ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎤᏂᎧᎵᏨᎯ ᎨᏒ ᏄᏓᎴᏒ ᏂᏚᏳᎪᏛᎾ ᎨᏒᎢ, ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎤᏲ ᎢᏯᏓᏛᏁᏗ ᎨᏒᎢ, ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏂᏲ ᎨᏒᎢ; ᎤᏂᎧᎵᏨᎯ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᏗᏓᎯᏍᏗ ᎨᏒᎢ, ᏗᏘᏲᏍᏗ ᎨᏒᎢ, ᎠᏠᏄᎮᏛ, ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎾᏙᏅᎢᎯ,\nᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᏛᏂᏣᏐᏂ; ᎠᎩᏁᏨᏍᎩᏂ ᎥᏝ ᏴᏓᎦᎶᏐᏂ.\nᎠᏎᏃ ᎨᏍᏗ ᎠᏎ ᏍᎩᎾᎾ ᏱᏄᎵᏍᏔᏃ, ᎠᏎ ᎤᎵᏍᏚᎩᏛ ᏱᎩ ᎠᏍᎪᎵ, ᎭᎾᏉ ᏓᏥᏍᏆᏗ.\nᏂᎯᏍᎩᏂ ᎯᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎾᏍᎩ ᎯᎠ ᏕᎭᏓᏅᎡᎮᏍᏗ, ᎠᎴ ᏕᎯᏍᏓᏩᏗᏎᏍᏗ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏅᏘᏳ ᎨᏒᎢ.\nᎤᏩᏙᎵᎢᏍᏗ ᎤᎾᏓᏔᎶᏎ ᏴᏫ, ᎯᎸᎯᏳ ᏥᎨᏎ ᎤᏐᏱ ᎨᏎ.\nᎦᎸᎶᎢ ᏃᏈᏏ ᎤᎾᏓᏴᎳᏛ ᏫᏚᎧᎾᎾ ᎪᏱᏁᎢ ᎤᎪᎮᎢ ᎤᏤᎵ ᎠᎨᏳᏣ ᎮᏂᎵ ᎤᎵᏲᏗ  ᎤᎾᎵᎪᎮ ᎤᎾᎩᎴᎢ, ᎦᎸᎳᏗᎨ ᎠᎾᏓᏌᎳᏗᏍᎨᎢ, ᏃᎴ ᎤᏕᎶᎰᏎ ᎤᎵᎮᎵᏍᏗ ᏗᎧᏃᏗ ᎨᏒᎢ, ᎤᎵᏍᏛᏂᎴᎢ.\nᎠᏎᏃ ᎢᏳᏃ ᏰᎵ ᎾᏍᎩ ᏂᏓᏅᏂᎥᎾ ᏱᎩ, ᏓᎾᏤᎨᏍᏗᏉ; ᎤᏟᏰᏃ ᎣᏏᏳ ᏗᏨᏍᏗᏱ ᎠᏃ ᎦᎴᏴᎯᏍᏗᏱ.\nᎧᏃᎮᏛᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎬᏃᏛ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎠᎴ ᎤᏟᎯᏳ ᏂᎪᏍᏓᏴ ᎡᏍᎦᏉ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎢᏧᎳᏗᏢ ᏗᎬᎦᏘ ᏗᎪᏍᏓᏴ, ᏕᎦᏘᎭ ᏔᎵ ᏂᎦᏗᎭ ᎠᏓᏖᏗᏱ ᎠᎴ ᎠᏓᏅᏙ, ᎠᎴ ᏚᏫᏢᎢ ᎠᎴ ᏚᏍᏛᏪᏙᎬᎢ, ᎠᎴ ᏗᎬᏭᎪᏙᏗ ᎢᎩ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎠᎴ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎤᎾᏫ.\nᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎤᏂᏣᏖ ᏧᏃᏑᎶᏨᎯ ᎢᏏᎵᏱ ᎾᎯᏳ ᎢᎳᏯ ᏤᎮᎢ, ᎦᎸᎶᎢ ᏧᎵᏍᏚᎯ ᏦᎢ ᏧᏕᏘᏴᏛ ᏑᏓᎵᏃ ᎢᏯᏅᏙ, ᎾᎯᏳ ᎤᏣᏘ ᏥᏚᎪᏄᎶᎭ ᏂᎬᎾᏛᎢ.\nᏚᏍᏚᏁᎸ ᏗᏂᎦᏙᎵ, ᎠᎴ ᏚᏍᏓᏱᏕᎸ ᏧᏂᎾᏫ; ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ ᏗᏂᎦᏙᎵ, ᎠᎴ ᎬᏩᏃᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎤᏂᎾᏫ, ᎠᎴ ᎾᏍᎩ ᏗᎬᏩᎾᏓᏁᏟᏴᎡᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏗᎦᎦᏥᏅᏬᏗ ᏂᎨᏒᎾ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᏉᏍᎪ ᏂᎯ ᎾᏍᎩ ᎢᎦᎢ ᏂᏦᎵᎬᎾ ᎢᎩ? ᏝᏍᎪ ᏱᏥᎪᏩᏘᎭ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏙᏱᏗᏢ ᎡᎯ ᎾᏍᎩ ᏳᏴᎯᎭ ᏴᏫ ᎦᏓᎭ ᎢᎬᏩᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ;\nᏩᎭᏯ ᏥᏚᎳᏑᏝᏅ: ᏏᏉᏯ ᎤᏃᎮᏢᏅ\nᎢᎦᏃ ᏅᏓᎦᎵᏍᏔᏂᏒᎩ, ᏉᎳ ᏚᏔᏲᏎᎸᎩ ᏂᎦᏛ ᎤᎾᎵᏍᏓᏴᏗᏱ, ᎯᎠ ᏄᏪᏒᎩ; ᎪᎯ ᎿᏉ ᏂᎦᏚᏏᏁ ᎢᎦ ᏥᏥᎦᏘᏴ ᎠᎴ ᏂᏣᎵᏍᏓᏴᏍᎬᎾ ᎪᎱᏍᏗ ᏂᏥᎩ-ᏍᎬᎾ ᏥᎩ.\nᏑᎾᎴ ᏅᏓ ᎤᎸᏌᏖ ᏗᎦᎴᏂ, ᎩᎦᎨ ᏧᏍᎪᎸ ᏂᏕᎦᎵᏍᏗᏍᎨ.\nᎬᏩᏅᏁᎴᏃ ᎠᎬᎭᎸᏛ ᎠᏣᏗ ᎠᏒᎾᏘᎶᏛ, ᎠᎴ ᎠᎬᎭᎸᏛ ᏩᏚᎵᏏ.\nᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᎢᎸᎯᏳᎯ ᏱᏙᏓᏍᏉᏑᎴᎵ ᏗᏆᎳᏏᏕᏂ. ᏥᏌ ᎤᏁᏤᎸᎩ; ᎢᏳᏃ ᏂᎬᏲᏑᎴᎥᎾ ᏱᎩ ᎥᏝ ᏣᏤᎵᎦ ᏳᏓᏑᏯ ᎠᏆᏤᎵᎦ ᎨᏒᎢ.\nᎨᏍᏗ ᏳᏦᎣᏌ ᏐᏈᎵ ᏍᎦᏰᎬᏍᏓ, ᏱᎦᎬᎭᏁᏍᏗ ᎪᎳ ᎦᎶᏐᏅ ᎤᏛᏅ.\nᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎥᏝ ᏴᎦᎦᏗᏔ ᏖᎸᎳᏗ ᎤᏁᏅᎯ ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎵᏰᎢᎶᎸᎭ.\nᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᏥᏅᏏᏓᏍᏗ ᎦᏅᎦ ᏗᏇᏅᏒ ᎤᏢᎦ ᎤᎸᏓᎸᎥᏍᎦ ᎤᏣᏔᏅᎯ ᎠᎩᎵᏲᎦ.\nᎠᏎᏃ ᎿᏉ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ ᎤᏓᏅᏘᏳ ᎨᏒ ᎠᎴ ᏴᏫ ᏚᎨᏳᏒ ᎤᎦᏄᎪᏨ,\nᎠᎨᏴ ᏗᏤᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏙ ᎤᏰᎯ ᎠᎴᏂᏙᎲ ᎢᎪᎯᏛ; ᎤᏰᎯᏍᎩᏂ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎿᏉ ᎤᏚᏓᎴᏛ, ᎾᏍᎩᏃ ᏗᎬᏩᏨᏍᏗᏉ ᎩᎶᏉ ᎤᏚᎵᏍᎬᎢ; ᎤᎬᏫᏳᎯ ᎪᎩᏳᎲᏍᎩ ᎤᏩᏒ.\nᎿᏉᏃ ᎤᏍᏆᎸᎲ ᎤᎾᏓᏅᎦᎸᏗᏱ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎼᏏ ᎤᏬᏪᎳᏅᎯ, ᏥᎷᏏᎵᎻ ᎤᏂᏃᎴ ᏱᎰᏩ ᎤᏂᎧᏁᏗᏱ;\nᏃᎴ ᎨᏍᏗ ᏐᏉ ᎪᏪᎵ ᏧᏍᏗ ᎦᏅᎥᏍᎩᏱᎩ.\nᏏᏲ ᏧᏩ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ.\nᎦᏙᎯᏰᏃ ᎤᏩᏒᏉ ᎦᎾᏄᎪᏫᏍᎪ ᎤᎦᏔᏔᏅᎯ; ᎢᎬᏱᏱ ᎨᏒ ᎤᎦᎶᎬ, ᎿᏉᏃ ᎤᏍᎫᏓᏛᎢ, ᎣᏂᏃ ᎤᎧᎵᏨᎯ ᎤᎦᏔᏛ ᎤᏍᎫᏓᏛᎢ.\nᎿᏉᏃ ᏔᎵᏁ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ. ᎡᏙᏓ ᎠᎩᏅᏒᎢ ᎾᏍᎩᏯ ᎢᏨᏅᎵ.\nᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ ᏍᎩᎲᏏᏉ ᎯᎠ ᎤᎵᏍᏈᏗ; ᎠᏎᏃ ᎥᏞᏍᏗ ᎠᏴ ᎦᏓᏅᏖᏍᎬᎢ, ᏂᎯᏍᎩᏂ ᎭᏓᏅᏖᏍᎬ ᏫᏂᎦᎵᏍᏓ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏏᏞᎦ ᎢᎦ ᏚᎸᏌᏛ ᎢᏤᏙᎲᎢ; ᎢᏤᏙᎮᏍᏗ ᏂᎪᎯᎸ ᎢᎦ ᏕᏥᎸᏌᏓᏕᎲᎢ; ᎤᎵᏏᎩᎾᏏ ᏱᏧᏢᏓ; ᎩᎶᏰᏃ ᎤᎵᏏᎬ ᏤᏙᎰᎢ, ᎥᏝ ᏯᎦᏔᎰ ᏩᎦᏛᎢ.\nᏚᏑᎬ ᏧᏍᎩᏃᎢ ᎠᏍᏛᎢ ᎤᎴᏅ, ᏍᏔᏯ ᎤᏴᏨ ᎨᏓᎵ ᏓᎦᎶᏍᎬ, ᎤᏓᏅᏘ ᎢᏳᏍᏗ, ᎨᏍᏗ ᏱᏓᏖᎸᎮᏍᎨ ᏧᏆᎶᎦ ᏧᏟᏴᎦᏕᏩᏓ ᏕᎦᏓᎥ ᎠᏦᎭᏴ ᎠᎬᏱᏣ.\nᎢᏳᏰᏃ ᎢᎬᏒ ᎢᎦᏚᎸᏛ ᏱᏗᏍᎦᏅᎬ ᏚᏳᎳ ᎨᎩᎦᏁᎥᏒᎯ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎥᏝ ᏅᏩᏓᎴ ᏯᎵᏃᎯᏯ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ,\nᏐᏉ ᎤᏓᏏᏂᏕᎾ ᏱᏕᏥᏏᎳᏛᎥᎦ.”\nᎠᏆᏍᎦᏍᏓᏁᎭ, ᎠᏍᎦᏯ ᎾᏍᎩ ᎦᎸᎳᏗ ᎠᏓᏅᏖᎵᏙ ᎨᏍᏗ ᏥᏳᎪᏗ ᎠᏥᏃᎯᏎᎸ ᏱᎩ, ᎠᏆᏛᏅ.\nᎠᏎᏃ ᎤᏚᎨ ᏲᎾ ᎦᏲᏟ ᏚᎾᎥ ᎦᏙ ᏚᏂᏴᎲ, ᏃᎴ ᎨᏍᏗ ᏳᏲᎰᏎᎸ ᎤᏬᎯᏳᎲ.\nVI. ᎪᎦ ᏚᏙᏓᏈᏒ  \nᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎤᏇᏓᎸ ᎤᏤᏙᎭ, ᎠᏎᏃ ᎥᏝ ᎤᏇᏓᎵ ᏧᏟᏴᏙᏗ ᎨᏒ ᏱᏙᏣᏟᏴᏗᎭ;\nᎾᏍᎩᏯ ᎩᎳᎢ ᎤᎾᏕᏃᏅᎯ ᏗᏂᏲᎵ ᎤᏅᏗ ᏧᎾᏚᎵᏍᎪᎢ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎦᎶᏄᎮᏛ ᏄᏓᏑᏴᏫ ᎧᏃᎮᏛ, ᎾᏍᎩ ᏗᏣᏛᎯᏍᏙᏗᏱ;\nᏝᏰᏃ ᎠᏏ ᏯᏃᎵᎨ ᎦᏛᎬ ᎪᏪᎸᎢ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏧᎴᎯᏐᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᏗᎩᏁᏟᏴᎡᏗ ᏥᎩ ᏂᏗᎦᎸᏉᏛᎾ ᏗᏗᏰᎸᎢ, ᎾᏍᎩᏯ ᎢᏧᏩᏁᏗᏱ ᎤᏩᏒ ᎦᎸᏉᏗᏳ ᎠᏰᎸ ᏄᏍᏛᎢ, ᎾᏍᎩᏯ ᎤᎵᏂᎬᎬ ᎬᏗᏍᎬ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏩᏒ ᏗᎬᏩᏁᎶᏙᏗᏱ ᎢᏳᏩᏁᏗᏱ.\nᏍᎩᏄᏍᏛ ᏓᏊᎪᏔᏅ, ᏥᏧᏣ ᏥᎨᏒ ᏗᎪᎵᎩ ᎨᏎ ᏧᎾᏛᏐᏅ ᎠᏂᏲᏍᎩ ᎤᏐᏱ ᏂᏚᏅᏅ ᏚᏂᏍᏘᏰᎬ ᏗᎾᏛᏍᎩ ᏥᎨᏎ ᏓᏳᏓᎴᏅᏓ, ᏍᎪᎯᏍᏆ ᏧᏕᏘᏴᏓ. ᏂᏚᏅᏅ ᏓᏂᏍᏚᏯᎩᏍᎬ ᎠᏰᎵ ᎢᏴ ᏗᏂᏍᎪᎵ ᏓᎫᎾ ᏧᏯᏍᎦ ᎬᏗ, ᏭᏩᎦᏛ ᏓᏂᏍᏕᏲᏍᎬ ᏗᏑᏫᏓ ᎠᏕᎳ ᏃᎴ ᎠᏕᎳ ᎤᏁᎦ ᎬᏗ ᎠᏃᏚᎢᏍᏗᏍᎬ, ᎦᏚᎢᏣ ᎤᏂᏍᏘᏰᎬ ᏲᎾ ᎪᎢ ᎬᏗ ᎠᏃᏚᎢᏍᏗᏍᎬ.\n“ᎠᏎᏃ ᎩᎶ ᏤᏲᏁ, ᏣᎨ?”\nᎣᎭᏁ ᎢᎦ ᏒᎮᏱᏣ, ᎠᏂᏲᏍᎩ ᎠᏂᏧᏣ ᏐᏉ ᏎᏂᏏ ᏧᎬᏩᏟ ᎠᏂᏆᏃᏲᎯᎲ, ᎦᏙ ᏓᏂᏍᏔᏅᎾᏍᎬ ᎠᏰᎳᏍᏘ ᎬᏘ ᎤᏂᏆᏂᏲᏍᏘ.\nᎨᎢᏗᏣ ᏫᎨᏴ ᏭᎧᏔᏁᎢ, ᏚᎧᏔᏍᏔᏁᎢ, ᏭᏅᎪᏤᎢ ᎠᎹ ᎦᏁᎲ.\nᎢᏳᏍᎩᏂ ᎣᏍᏛ ᎧᏃᎮᏛ ᎣᎦᏤᎵ ᎾᏍᏉ ᎬᏍᎦᎵ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ Ꮎ ᎨᏥᏛᏙᏗ ᎨᏒ ᎨᎬᏍᎦᎳᏁᎸ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎤᏟ ᏫᎶᎯ, ᏎᏓᏂ, ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ; ᎠᏎ ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᎩᏉ ᎤᏩᏒᎯᏳ ᏕᎯᏯᏁᎶᏕᏍᏗ.\nᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎤᏂᏣᏘ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎤᎾᏓᏅᏘ ᎤᎾᏚᎸᏛ ᎤᏥᎪᏩᏛᏗᏱ ᎯᎠ ᎾᏍᎩ ᏥᏥᎪᏩᏘᎭ, ᎠᏎᏃ ᎥᏝ ᎤᏂᎪᎲᎯ ᏱᎩ; ᎠᎴ ᎤᎾᏛ ᎪᏗᏱ ᎯᎠ ᎾᏍᎩ ᏥᏣᏛᎩᎭ, ᎠᏎᏃ ᎥᏝ ᎤᎾᏛᎦᏅᎯ ᏱᎩ.\nᎠᏎᏃ ᎭᎵᎮᎵᎩ, ᎨᏍᏗ ᎠᏎ ᏱᏗᏣᏂᎬᎦ ᏗᏏᎳᏛᏗ.\nᎠᎦᏓᎢᏅᏃ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ ᎤᏁᏎᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏔᏁᎢ ᎤᏩᏒ ᎤᏪᏥ ᎤᏰᎸᏁᎢ.\nᏴᏫᏰᏃ ᎤᏪᏥ ᏚᏲᎵᎸ ᎠᎴ ᏚᏍᏕᎸᎯᎸ ᎤᎾᎴᎾᎸᎯ ᏥᎨᏒᎩ.\nᏦᎢᏃ ᎢᏯᏅᏙ ᎤᎶᏐᏅ ᎣᎦᏂᎩᏒᎩ, ᎣᎦᏣᏅᎩ ᏥᏳᎯ ᎡᎵᎩᏱ ᎡᎯ, ᎾᎿ ᎠᎹᏰᎵ ᏏᎪᎳᏗᏱᏍᎩ ᎤᏂᏔᎳᏛᎯ, ᎾᏍᎩ ᎪᎵᏍᏙᏗ ᎧᏍᏓ ᎠᎴ ᏉᎳᏥ ᎪᏪᎸᎩ.\nᎥᏝ ᎩᎶ ᏥᏯᏚᎸᎡᎸᎯ ᏱᎩ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎴ ᏗᏄᏬ.\nᎠᏎᏃ ᎠᏓᏅᏙ ᎧᏁᎬ ᎬᏂᎨᏒᎢᏳ ᏂᎬᏁᎭ ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ ᎩᎶ ᏧᏂᏲᎯᏍᏗᏱ ᎪᎯᏳᏗ ᎨᏒᎢ, ᏓᎾᏛᏓᏍᏓᏁᎮᏍᏗ ᎤᎾᏠᎾᏍᏗ ᏗᏓᏅᏙ, ᎠᎴ ᏓᎾᏕᏲᎲᏍᎩ ᎠᏂᏍᎩᎾ,\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎠᏎ ᏓᏍᎩᏁᎢᏍᏓᏁᎵ ᎯᎠ ᎢᎦᏪᏍᏗ ᏥᎩ; ᏔᏓᏅᏫᏍᎩ, ᏨᏒ ᎭᏓᏅᏮᎦ; ᏂᎦᎥ ᏄᏍᏛ ᎣᎦᏛᎦᏅ ᏕᏣᎸᏫᏍᏓᏁᎸ ᎨᏆᏂ, ᎾᏍᎩ ᎾᏍᏉ ᎿᏛᎦ ᎠᏂ ᏣᏤᎵᎪᎯ.\nᏓᏆᎴᎳ ᎠᏌᏅᏗ ᏓᏦᏴ ᏭᏒᏁ, ᎤᏍᏗ ᎦᎵᏦᏩᏛ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁ.\nᎠᎴᏬ ᎢᏓᎵᏅᏟ, ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ, ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᏚᏁᎸ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎹᏏᏙᏂ ᎠᏁᎯ;\nᎢᏳᏃ ᎠᏘᎹ ᏥᏅᏒᎭ ᏫᏣᎷᏤᏗᏱ, ᎠᎴ ᏗᎩᎦ, ᎭᏟᏂᎬᏁᎸᎭ ᎾᎪᏆᎵ ᏍᎩᎷᏤᏗᏱ; ᎾᎿᏰᏃ ᏓᏇᎪᏔᏅ ᎠᏆᎪᎳᏗᏴᏗᏱ.\nᎤᏓᎾᏫᏛᎮ ᏩᎶᏏ ᏃᎴ ᎣᎵᎭ ᎠᎹ ᎤᏥᏍᏛ ᎠᎳᏂ ᏭᎸᏥᎴ.\nᎢᎦᏛᏍᎩᏂ ᎣᏒ ᎦᏙᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎾᏍᎩᏃ ᎤᎦᏔᏔᏁᎢ, ᎢᎦᏛ ᎠᏍᎪᎯᏧᏈ ᎤᏁᏉᏤᎢ, ᎢᎦᏛᏃ ᏑᏓᎳᏍᎪᎯ ᎤᏁᏉᏤᎢ, ᎢᎦᏛᏃ ᏦᎠᏍᎪᎯ ᎤᏁᏉᏤᎢ.\nᎬᏂᏳᏉᏃ ᎠᏍᎦᏯ ᏦᏩ ᏧᏙᎢᏛ, ᏗᎦᎳᏫᎩ, ᎤᏓᏅᏘ ᎠᏍᎦᏯ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ,\nᏂᎦᎥᏃ ᎪᎱᏍᏗ ᏓᏉᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗ ᎨᏎᏍᏗ, ᎠᎦᏴᎵᎨᎢ ᎠᏥᎸᏉᏙᏗᏱ ᎤᏪᏥ ᎢᏳᏩᏂᏌᏅᎯ ᎨᏒᎢ.\nᎧᏂᎩᏓ ᎤᏦᎠᏎᏗ.\nᎿᏉᏃ ᎬᏂᏳᏉ ᎠᏆᏓᏅᏛ ᎦᎸᎢᏛ ᏥᎷᏏᎵᎻ ᏫᏥᎦᏘ, ᏂᏥᎦᏔᎲᎾ ᏅᏗᏆᎵᏍᏓᏁᎵᏒ ᎾᎿᏂ,\n“Ꭳ, ᏣᏉᎩ? ᎤᏂᎦᎸ ᏄᏓᏪᏎᎴ ᏌᎳᏓ.\nᎠᏎᏃ ᏰᎵᏉ ᏱᏂᎾᏛᎦ ᎭᏂᏉ ᎮᎮᏍᏗ ᎪᎳ ᎦᎶᏐᏅ ᎢᎪᎯᏓ.\nᏃᎴ ᏧᏓᎴᏅᏓ ᎢᏳᏛᏁᏗ ᎤᏪᎵᏒ ᎨᏎ.\nᎢᏳ ᎠᎴ ᎠᏰᎵ ᎪᏢᏒ ᏔᎵ ᏱᏄᏓᎠ, ᎤᏩᏒᏉ ᏯᏓᏡᏗᎭ, ᎥᏝ ᏰᎵ ᏱᏂᎬᏩᏍᏗᏉ ᎾᏍᎩ ᎠᏰᎵ ᎪᏢᏒᎢ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎢᏳᏃ ᏗᏥᏃᎪ ᏗᎬᏗ ᎦᎪᎵᏍᏗ ᏂᏥᏬᏂᏍᎬᎾ ᏱᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎬᏙᎴᎰᎯᏍᏗ ᏱᎩ, ᏂᏥᏪᏒ ᎢᏥᏬᏂᏒᎢ? ᎦᏃᎴᏍᎬᏰᏃ ᎢᏥᏬᏁᏗᏍᎩ ᎨᏎᏍᏗ.\n“ᎭᏩ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎢᏣᎵᏃᎮᏍᎬ ᏂᎪᎯᎸ ᎤᏓᏅᏘ ᎨᏒ ᎤᎵᏠᏯᏍᏕᏍᏗ, ᎠᎹ ᎤᎶᏥᏛ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎢᏥᏪᏍᏗᏱ ᏕᏥᏁᏤᎲ ᎾᏂᎥ ᏴᏫ.\nᎤᏣᏘᏰᏃ ᎤᎵᎮᎵᏍᏗ ᎣᎨᎭ ᎠᎴ ᎤᎦᎵᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏣᏓᎨᏳᏒ ᎢᏳᏍᏗ, ᏛᏗᎦᎵᏍᏙᏗᎭ ᎤᎾᏓᏅᏘ ᏧᏂᎾᏫ ᏕᎯᎦᎵᏍᏓᏕᎲᎢ, ᎥᎩᏅᏟ.\nᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᏭᏴᎸ ᎾᏍᎦᎢᎲᎾ ᎦᏬᏂᏍᎬᎩ, ᏦᎢ ᎢᏯᏅᏙ ᎢᎦᎯᏛ ᏕᎦᏬᏁᏗᏍᎬᎩ ᎠᎴ ᏓᏍᏗᏰᏗᏍᎬᎩ ᎤᏃᎯᏳᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎤᎬᏩᎵ.\nᎥᎥ… ᎨᏙᎩ ᎠᎾᏗᎰ: ‘ᎤᏥᏯ ᎠᎩᎸᏨ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ.’\nᎠᏗᏍ ᎦᎢᏒ ᎠᏰᏟ Ꮓ ᎢᏴ ᎠᏴ ᏗᏥᏁᎸ ᏃᎴ ᎤᎿ ᏗᎦᎴᏅ Ꮎ ᎠᎨᏳᏣ ᎠᏰᏟ ᎢᏴ ᎪᏢᏒ ᎭᎸ ᎢᎳᎯ ᎢᎸᎯᏳ ᏥᎨᏒ ᎤᎾᏁᎵᏛ ᎩᎶ.\nᎿᏉ ᏛᎵᏍᏆᏗ, ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᎨᏒ ᏧᏲᎯᏎᎸᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ; ᎾᎯᏳ ᎠᏛᏔᏃᏅᎭ ᏂᎦᏗᏳ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎨᏒ ᎠᎴ ᏂᎦᏗᏳ ᏗᎨᎦᏁᎶᏗ ᎨᏒ, ᎠᎴ ᏚᎾᎵᏂᎬᎬᎢ.\nᏥᏌᏃ ᏂᎦᎥ ᏧᏛᎾ ᏕᎦᏚᎲ ᎠᎴ ᏧᏍᏗ ᏕᎦᏚᎲ ᎤᏪᏙᎸᎩ, ᏓᏕᏲᎲᏍᎬᎩ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎵᏥᏙᎲᏍᎬᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎧᏃᎮᏍᎬᎩ, ᎠᎴ ᏕᎧᏅᏫᏍᎬ ᏂᎦᎥ ᏚᏂᏢᎬ ᎠᎴ ᏂᎦᎥ ᎥᏳᎩ ᏴᏫ ᎤᏂᏱᎵᏕᎲᎢ.\nᎠᎴ ᎥᏝ ᎠᏎᎾᎿ ᎤᏴᏍᏗ ᏱᎨᏎᏍᏗ ᎪᎱᏍᏗ ᎦᏓᎭ, ᎠᎴ ᎤᏂᏆᏘᏍᏗ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎦᏰᎪᎩ; ᎤᏅᏒᏍᎩᏂ [ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ ᏚᎾᏙᎥ] ᏗᎪᏪᎵ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ ᎤᏃᏕᎾᎠᎩᎾ ᎤᏤᎵᎦ.\nᎿᏉᏃ ᎤᎾᎴᏅᎲ ᎣᏍᏛ ᏄᏅᏁᎸ, ᏌᏉ ᎠᎦᏘᏃᎮᎴ ᎠᏍᎪᎯ ᎢᏳᏆᏗᏅᏛ ᎠᏕᎸ ᎤᏚᎩ.\nᏳᏟᏂᎬᎬᎾ ᎤᎾᏏᏁᎢ ᏗᎩᏏ, ᎦᎶᎯᏍᏗ ᎢᏣ ᏭᎧᏖᎢ.\nᎣᎾᏫᏱᏰᏃ ᏗᏓᎴᎲᏍᎪ ᎤᏐᏅ ᎠᏓᏅᏖᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᎯᏍᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏲ ᏁᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗᏱ ᎬᏒᎢ, ᎠᎴ ᎦᏃᏍᎩᏍᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎠᏥᎪᏗᏱ ᏓᎾᏓᏱᎵᏙᎲᎢ, ᎠᎴ ᎠᏐᏢᎢᏍᏙᏗᏱ ᎨᏒᎢ.\nᎧᎪ ᎤᏍᏕᎸᎮ ᏌᎳᏓ ᏌᏌ ᎤᏪᏥ ᎤᎪᏏᏓ ᎬᏗ ᎤᎨᎯᏙᎸ ᎠᎴᏴᏍᎩ ᎠᏧᏣ?” \nᎩᎶᏰᏃ ᎠᏆᏕᎰᏍᎨᏍᏗ ᎠᏴ, ᎠᎴ ᎠᏴ ᏥᏁᎬᎢ, ᎤᏓᏑᏴ ᎠᏂ ᏗᎾᏓᏲᏁᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎠᏁᎲᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᎤᏕᎰᎯᏍᏗ ᎨᏎᏍᏗ, ᎦᎷᏨᎭ ᎤᏄᏬᏍᏕᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏙᏓ ᎤᏤᎵᎦ, ᎠᏁᎮᏍᏗ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ.\n“Ꭵ,” ᎤᏛᏁ ᎦᏂᎦᏔ.\nᎢᎦᎥᏃ ᎤᏂᏁᎢᏍᏔᏅ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏂᎦᎥ ᎪᏚᎢᏍᏛ ᎬᏔᏅᏅᏯ ᏧᏬᏚᎯ ᎠᎴ ᏗᎵᏍᎪᎸᏔᏅᎯ, ᎯᎠ ᏄᏪᏎᎢ;\nᏃᏊᏛ ᏌᎶᎵ ᎤᎪᎮ ᏐᎢ ᎠᎳᏑᎶ.\nᏚᎧᏔᏍᏔᏁᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏣᏛᎩᎭ ᎾᏍᎩ ᏂᎯ ᎢᏥᏯᎡᏍᏗ. ᎢᏳᏃ ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏣᏛᎩᎭ ᎢᏥᏯᎡᏍᏗ, ᏂᎯ ᎾᏍᏉ ᎡᏥᏯᎡᏍᏗ ᎤᏪᏥ ᎠᎴ ᎠᎦᏴᎵᎨᎢ.\nᏣᏓᏅᏘ ᎡᏙᏓ, ᎡᎶᎯ ᎥᏝ ᏣᎦᏔᎯ ᏱᎩ, ᎠᏴᏍᎩᏂ ᎬᏩᏔᎯᏳ, ᎠᎴ ᎯᎠ ᎠᏂᎦᏔᎯᏳ ᏍᎩᏅᏏᏛ ᎨᏒᎢ.\nᎿᏉᏃ ᏈᏓ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᎬᏫᏳᎯ ᏴᏫ ᏧᎾᏤᎵᎦ ᎠᎴ ᎢᏏᎵ ᏗᏥᎳᏫᏤᎯ,\nᎯᎠᏃ ᏥᎩᎵᎵ ᏣᎧᏔᎮᎢ ᏍᎩᎾ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎤᏕᎵᏍᏛᎢ ᏍᎩᎾ ᎤᏓᎾᏛᎢ ᎨᏍᏓᏗ ᎦᏁᏥ ᏯᏄᏍᏕᎢ.\nᎾᏍᎩᏃ Ꮎ ᎤᎦᏔ ᎠᏫᏍᎩ ᎤᏁᎯ ᏥᎩ, ᎠᎴ ᎦᏚ ᎠᎵᏍᏓᏴᏙᏗ ᎠᏓᏁᎯ ᏥᎩ, ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᎠᎴ ᎤᎪᏓᏗᏍᏗ ᎨᏎᏍᏗ ᎢᏥᏫᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏁᏉᏍᏗ ᎨᏎᏍᏗ ᎢᏣᏓᏅᏘᏳ ᎨᏒ ᎤᎦᏔᏔᏅᎯ;\nᎦᏌᎾᎵ ᏓᏳᏓᎴᏅ ᎦᏩᏙᎣᏍᎨ ᎤᎦᎾᏅ, ᏗᎦᎾᏌᎢ ᎤᏁᏓᏍᏗ ᏕᎨᏰᎢ ᏥᏥ ᏃᎴ ᎩᎦᎨ ᎤᎾᏍᏕᏥ ᏧᏰᎬ ᎢᏳᏓᏅᎯᏓ.\nᏣᏉᎩ?\nᎪᎯᏍᎩᏂ ᏥᎩ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ, ᏂᎯ, ᎢᏅᎯᏳ ᏥᏂᏣᏛᎿᏕᎬᎩ, ᎾᎥ ᏕᏣᏘᏃᎸ ᎬᏔᏅᎯ ᎤᎩᎬ ᎦᎶᏁᏛ.\n”ᏲᎾ ᎤᏤᏍᏙ ᎤᏙᏓ ᏍᏉ?”\nᎨᏴ ᎠᏂᏍᏔᏩᏕᎦ ᎠᏂᏲᏍᎩ ᏓᏂᎭᏲᎲ ᎤᎾᎵᏗᎩᏛ.\nᏃᏗ ᏳᏫᏚᏲᏌ, ᎤᎦᏃᏩ ᎤᏃᎴ ᎤᏌᎳᏗᏍᎪᎢ ᎦᎸᎳᏗ.”\n“ᎭᏩ,” ᎤᏪᎵᏎ, “ᎠᏤ ᎣᎩᎾᎵ ᏥᏩᏔ.\nᎥᏝ ᎾᏍᎩ Ꮎ ᎢᎦ-ᎦᏘ ᏱᎨᏎᎢ, ᎧᏃᎮᏍᎩᏉᏍᎩᏂ ᎨᏒᎩ ᎾᏍᎩ ᎢᎦ-ᎦᏘ.\nᎬᏬᎵᏤᏃ ᎾᏍᎩ ᎨᏒ ᎤᏚᎳᏗᏍᏗᏱ ᏧᏰᎸᏎ ᏥᎦᎲᏍᎨ ᎤᏬᏚᎯ ᎦᎶᎯᏍᏗᏱ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎤᏣᏔᏅᎯᏃ ᎤᏂᏍᏆᏂᎪᏎ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᏍᎩ ᏄᎵᏍᏓᏁᎸᎢ.\nᎦᏂᎦᏔ ᏦᎯᏳᎭᏧ ᎠᏂᏬᏂᏍᎬ ᏗᎨᏥᎾᏌᎢ?”\nᎢᏥᏯᏫᏍᎨᏍᏗ, ᎤᎵᏂᎩᏛ ᏕᏥᏂᏴᏎᏍᏗ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎢᏥᏍᎦᏯ ᎨᏎᏍᏗ, ᏗᏣᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ.\nᎤᏥᏐᏅᏤ-Ꭾ ᏅᏗᏕᎵᏍᏙᏗᏍᎨ ᏧᏁᏲᎲᏍᎬ ᏴᏫ, ᎠᎴ ᏥᏌ ᎠᏅᏗᏍᎬ ᎠᎾᎵᏥᏙᎲᏍᎬ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ.\nᎠᏎᏃ ᎡᎶᎯ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎠᎦᏴᎵᎨᎢ ᏥᎨᏳᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏴᎵᎨᎢ ᎠᎩᏁᏤᎸᎢ ᎾᏍᎩ ᏂᎦᏛᏁᎲᎢ. ᏗᏣᎴᎲᎦ, ᎢᏕᎾ.\nᏓᎾᏏᏛᏂᎲ ᎤᏩᏌ ᎤᏛᎦᏁ ᎡᎳᏆᏗ.\nᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᏉᎵᏏ ᏚᏂᎳᏫᏛᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎪᏙ ᎢᏓᏛᏁᎭ? ᎯᎠᏰᏃ ᎠᏍᎦᏯ ᎤᏣᏔ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎭ.\nᎦᏥᏲᎢᏳᏓᏁᎭᏰᏃ ᎾᏍᎩ ᏂᏚᎾᎵᏂᎬᎬ ᎢᏴᏛ, ᎥᎥ, ᎠᎴ ᎠᏂᎶᏒᏍᏗᏍᎬ ᏂᏚᎾᎢᏂᎬᎬᎢ, ᎤᎾᎵᎦᏟᏴᎯᏉ ᎤᏅᏒ ᎤᎾᏓᏅᏖᏛ;\nᎠᏴᏰᏃ ᏂᏗᎥ ᎢᎬᏱᏗᏢ ᏫᎩᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎦᎶᏁᏛ ᏧᏭᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ; ᎾᏍᎩ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎡᎩᏁᏗᏱ ᏄᏍᏛ ᏕᎩᎸᏫᏍᏓᏁᎸ ᏗᏗᏰᎸ ᎬᏗ, ᎾᏍᎩᏯ ᏂᎦᏛᏁᎵᏙᎸᎢ, ᎣᏏᏳ ᏱᎾᎩ, ᎠᎴ ᎤᏲ ᏱᎾᎩ.\nᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᎤᏍᏗ? ᏥᏌ ᎯᎠ ᏄᏪᎡᎩ; ᎯᎠ, ᏞᏍᏗ ᏣᏓᎸᎩ; ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ; ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ; ᏓᎾᏓᏱᎵᏙᎲ ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ;\nᎨᏆᏂᏃ ᎤᏂᎷᏨ ᎠᏰᎵ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎬᏩᎷᏤᎴ ᏈᏓ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏝᏍᎪ ᏗᏤᏲᎲᏍᎩ ᎠᏰᎵ ᏯᏓᏱᏍᎪᎢ?\nᏕᎤᏬᏁᏔᏅᏃ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏚᏟᎶᏍᏓᏁᎸᎩ; ᎯᎠ ᏄᏪᏒᎩ; ᎬᏂᏳᏉ, ᎠᏫᏍᎩ ᎤᏫᏒᏎᎢ.\nᎠᏎᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎥᏝ ᏱᏨᎦᏔᎭ.\nᏥᎦᏔ, ᎠᏋᏌ ᎦᏕᎶᎣ, ᏫᎨᏓ ᎭᎾᏂ.\nᏫᏑᏯᏅᎲᏃ ᎠᏂᏔᎵ ᎠᏍᎪᎯᏧᏈ ᏗᎾᏓᏘᏂᏙᎯ, ᎯᎠ ᏄᏪᏒᎩ; ᏗᏍᏓᏛᏅᎢᏍᏓ ᏔᎵᏧᏈ ᎠᏂᏯᏫᏍᎩ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏗᏓᏘᏍᏗ ᏗᏂᏂᏙᎯ ᏔᎵᏧᏈ, ᏏᏌᎵᏱ ᎠᏁᏒᎭ ᏐᎣᏁᎵᏁ ᎢᏳᏟᎶᏛ ᏒᏃᏱ;\nᎿᏉ ᎩᎳ ᏥᎦᎳᏍᏚᎲᏍᎪᎢ, ᎾᏍᎩ ᎢᏥᎪᏩᏛ ᎢᏨᏒᏉ ᎨᏒ ᎢᏥᎦᏔᎰᎪᎩ ᎿᏉ ᎾᎥᏂᏳ ᎨᏒᎢ.\nᎨᎵᏍᎬᏃ ᎠᏂᏴᏫᏯ ᏗᏍᏕᎵᏍᎩ, ᎠᏂᏴᏫ ᎨᎵ, ᎠᏓᏅᏖᏏᏙ ᎤᎬᏫᏳ, ᏍᎩᎾᎾ ᎢᏧᏍᏗ ᏧᎭᏃᏍᏗ ᎠᏇᎵᏒ ᏫᏥᏂ ᏓᎾᏦᏍᎬ. ᏍᎩᏄᏍᏛ ᏓᏆᎭᏄᏬᎥ ᎠᎬᏱ ᏧᏥᏩᏛᎯᏙᎲ ᏓᎭᏃᏫ ᏗᏄᎪᏗᏍᏗ ᏗᎪᏪᎵᏍᎩ ᏧᎷᏫᏍᏔᏁᏗ, ᎭᎾᎾ. ᎠᏓᎴᏂᏍᎬ ᎠᏴᏫ ᎤᏓᏅᏖᏗ, ᎭᎾᎾ ᏍᏉ ᎠᏲᎯᏍᏗᏍᎬ.\nᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏁᏍᏗ ᎢᏨᏃᎲᏏ, ᎠᏍᏆᎸᎲ ᎢᏣᏅᏓᏗᏍᏗᏱ ᎾᏍᎩ ᎢᏨᏃᏁᎸᎢ. ᎠᎴ ᎥᏝ ᎾᏍᎩ ᎢᎬᏱᏱᏉ ᏱᏨᏃᏁᎴᎢ, ᎢᏧᎳᎭ ᎢᏕᏙᎲ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ.\nᎾᏍᎩᏯ ᏎᎵ ᎢᎪᎯᏳᎲᏍᎨ ᎡᏆᎭᎻ, ᏍᎩᎾᏝᎢ ᏥᎪᏎᎮᎢ, ᎾᏍᎩ ᏧᏪᏥ ᏥᏂᏣᎵᏍᏗᎭ, ᎢᏳᏃ ᎣᏍᏛ ᏱᏗᏥᎸᏫᏍᏓᏁᎭ, ᎠᎴ ᎪᎱᏍᏗ ᏂᏥᏍᎦᎢᎲᎾ ᏱᎩ.\nᏄᏓᎴᏒᏍᎩᏂ ᎪᎱᏍᏗ ᎤᎵᏍᏆᏗᏗ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎵᏏᎾᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏥᏯᏫᏍᎬ ᎢᏣᏓᏙᏓᏍᏗᏍᎨᏍᏗ.\nᏍᎩᏃ ᎢᏳᏍᏗ ᎤᏲᎰᏎ ᎦᎸᏓᏱ ᏍᎪᎯᏍᏆ ᏧᏕᏘᏴᏓ ᎠᏕᎭᏲᎲ.\nᎦᎸᎳᏗᏍᎩᏂ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎢᎬᏱᏱ ᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏐᎢ, ᎿᏉᏃ ᎪᎯᏍᏗᏍᎩ, ᎠᎴ ᎤᏓᏅᏘ, ᎠᎴ ᎤᏬᎯᏳᎯᏍᏛ, ᎠᎴ ᎠᎧᎵᏬᎯ ᎠᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎠᎴ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎸᏉᏛᎾ, ᎠᎴ ᎤᏠᎾᏍᏗ ᏂᎨᏒᎾ.\nᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎿᏉᏰᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ.\nᎠᏎᏃ ᎢᏓᎵᏅᏟ, ᎤᏟ ᎢᎦᎢ ᏂᏥᎾᏰᏍᎬᎾ ᏫᏨᏲᏪᎳᏏ ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎠᎩᏁᎸ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ,\nᎠᎾᏓᏤᎵ ᎢᎦᏪᏍᏗ ᎦᏣᏄᎸ ᎠᎵᏍᎩᏓ.\nᎦᎶᏁᏛᏍᎩᏂ ᎠᎦᏅᎩ ᎾᏍᎩᏯ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏒᎩ ᎤᏩᏒ ᏚᏓᏘᎾᎥᎢ; ᎾᏍᎩ Ꮎ ᏚᏓᏘᎾᎥ ᎢᏖᎳ ᏥᎩ, ᎢᏳᏃ ᎤᎵᏂᎩᏛ ᏱᏗᎩᏂᏴᎭ ᎬᎵᏍᏆᏗᏍᎩ ᎾᏍᎩ Ꮎ ᎢᎦᎵᏍᎦᏍᏙᏛ ᎠᎴ ᎢᏓᏢᏈᏍᏙᏗᏍᎬ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ.\nᎯᎠᏃ ᎢᏣᏅᏖᏍᏗ, ᎢᏳᏃ ᎠᏍᎦᏯ ᎦᏁᎳ ᏱᎠᎦᏔᎮ ᎢᏳᏉ ᎦᏃᏍᎩᏍᎩ ᎤᎷᎯᏍᏗᏱ, ᏳᏯᏫᏎᎢ, ᎠᎴ ᎥᏝ ᎤᏁᎳᎩ ᏩᎩᏴᏏ ᎦᎵᏦᏕ ᏱᎬᏪᎵᏎᎢ.\nᎠᎬᏱ ᎠᎵᏍᏔᏴᎲᏍᎨᎢ ᏥᏍᏕᏥ.\nᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ. ᎡᎺᏅ.\n”ᎡᎭ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ.\nᏃᏗ, ᎤᏩᎨᏫᏎ ᏫᎵᎻ ᏑᎾᎴ ᎤᎵᏍᏓᏴᏗ, ᏗᏓᏁᎸ ᎢᏣ ᎤᏪᏅᏎ, ᎰᎻ ᏭᏯᏅᎮ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏣᏘ ᎢᎶᏟᏂᎬᏁᎲ ᎢᏦᎯᏳᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ; ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᏔᎵ ᎢᏨᏗᏍᎨᏍᏗ ᎠᎪᏙᎥᎯᏍᏗ ᎨᏒᎢ;\nᎠᏥᏁᏤᎴᏃ ᎯᎠ ᏅᏗᎠᏥᏪᏎᎴᎢ; ᏈᏓ, ᏔᎴᎲᎦ, ᎯᎷᎦ ᎠᎴ ᎭᎵᏍᏓᏴᎲᎦ, ᎠᎪᏎᎴᎢ.\nᎥᏝᏰᏃ ᏅᏩᏓᎴ ᎪᎱᏍᏗ ᏱᏨᏲᏪᎳᏁᎭ, ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᏥᏥᎦᏔᎭ ᎠᎴ ᎾᏍᏉ ᏥᏕᏣᏓᏂᎸᏨ; ᎠᎴ ᎤᏚᎩ ᎠᏋᎭ ᎬᎵᏍᏆᏗᏍᎩ ᏗᏣᏓᏂᎸᎢᏍᏗᏱ ᎨᏒᎢ;\nᏒᎦᎾᏲᎪ, ᎠᎪᎾ ᎠᎩᏲᏏᏍᎬ ᏯᎩᎵᏬᏤ ᏍᎩᎾᎾ ᎢᎪᎯᏓ ᏯᎩᎦᏘᏓ.\nᎤᎾᏙᏓᏆᏍᎬ ᏑᎾᎴ ᎪᏱᏁᎢ, ᎡᎶᏗ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᎠᎾᎵᏍᏓᏴᎲᏍᎨ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ.\nᎠᏎᏃ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᎪᎲ ᎤᏪᏥ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; ᎾᏍᎩ ᎯᎠ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ; Ꭷ ᎡᏗᎷᎦ, ᎠᎴ ᎡᏗᏬᏅ ᎤᏤᎵ ᏳᎵᏍᏙᏗ ᏥᎩ.\nᎠᏥᏍᏛᏗᏍᏔᏁ ᏳᏬᎯᏳᏅᎾ ᎨᏒ ᏥᏔᎦ ᏧᎪᎳ ᏧᏭᏔᎩᏍᏗ.\nᏃᏉᏗ ᏚᏯᏪᎨ.\nᎠᏎᏉ ᏱᎾᎩᏪᏌ, ᎠᎬᏱᏣ ᎢᏣ ᎨᏒ ᎣᎯᏍᏙᏗ ᎡᏍᎦᏉ ᎣᎭᏁ ᎢᏣ.\nᏃᏗ ᏄᏟᏂᎬᎬ ᎤᏐᎸᏓᎩᏎ ᎠᎬᏱᏣ ᎦᏅᏌᏛ ᎬᏗ.\nᏥᏌᏰᏃ ᎤᏩᏒ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐ ᎤᏩᏒ ᎤᏤᎵᎪᎯ.\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏥᏁᎫᏥ, ᎠᎴ ᎢᏣᏓᏅᏛ ᎢᏥᏍᎦᏃᎵᏳ ᎢᏦᎯᏳᏗᏱ ᏂᎦᎥ ᏄᏂᏪᏒ ᎠᎾᏙᎴᎰᏍᎩ!\nᏃᎴ ᏍᎩᎾᎾ ᎢᏴ ᏓᎫᏩᏓᎴᏅᏓ ᎤᏐᏱ ᎾᎾᏛᏁᎰ ᎧᏅᏂᏍᎩ.\nᎩᎶᏰᏃ ᎤᏚᎵᏍᎨᏍᏗ ᎤᏍᏕᎸᏗᏱ ᎬᏅᎢ ᎤᏲᎱᏎᏗ ᎨᏎᏍᏗ; ᎩᎶᏍᎩᏂ ᎬᏅ ᎤᏲᎱᏎᎮᏍᏗ ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎤᏓᏅᏘ ᎨᏒᎢ, ᎠᎵᏏᎾᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗᏓᏂ ᏗᎦᏘᎴᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎥᏝ ᏯᎭ.\nᏑᎾᎴ ᏱᏄᎵᏍᏔᎾ ᏄᏓᎴ ᎠᏕᎲᏍᎨ ᎤᏃᏕᎾ ᎠᏓᎯ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎦᏙ ᏓᏓᏛᏂ? ᎾᏍᎩ Ꮎ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᏄᏂᏍᏓᏩᏛᏒᎾ ᎨᏒ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᎤᏂᏩᏛᎲ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎠᏚᏓᎴᏍᏙᏗ ᏥᎩ.\nᎤᎬᏫᏳᎯᏃ ᎤᏲᎢᏳ ᎤᏰᎸᏁᎢ, ᎠᏎᏃ ᎤᏎᎵᏔᏅᎢ, ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ ᏅᏧᎵᏍᏙᏔᏁᎢ, ᎤᏁᏤ ᎠᏥᏁᏗᏱ.\n”ᏂᎯᏗ ᏍᏉ!” ᎤᏛᏁ ᎡᎳᏆᏗ, ᎤᎾᎵᎪ ᏩᎶᏏ ᎠᎵᏖᎸᏂᎮᎢ.\nᎠᏎᏃ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎡᎩᏁᎸ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᎠᏟᎶᎥ ᎦᎶᏁᏛ ᎤᏓᏁᏗ ᎨᏒᎢ.\nᎾᎿ ᎠᏴ ᏗᎩᎸᏫᏍᏓᏁᎯ ᏅᏋᏁᎸ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏤᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏴ ᏨᎩᏁᎸ ᏂᎯ ᎢᏣᎵᏍᏕᎸᏙᏗ, ᎾᏍᎩ ᎠᎧᎵᎢ ᎠᏆᎵᏥᏙᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ;\nᎾᏒᎦ!\nᎠᏑᏫᏓ ᏔᏯ ᎠᏓ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎨᏒ ᏣᎵ ᎤᏁᎦᎸ, ᎤᎧᏛ ᏃᎴ ᎠᏴᏤᏂ ᎤᏓᏁᎪᏴᏓ, ᏰᎵᏉ ᎠᎫᏬᏰᏂ ᎦᎵ ᏣᎫᏲᎰᏎᏗ ᏓᎬᎾ ᎤᏓᏁᎪᏳᎲ.\nᎠᎴ ᏫᎬᏩᎷᏤᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏚᎾᏬᎡ ᏦᏓᏂ ᎤᏪᏴᎢ, ᎤᏂᏍᎦᏅᏨ ᎠᏂᏃᎲᏍᎨᎢ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎦᏳᎳ ᎢᏨᏃᏁᎸ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ. ᎢᏳᏃ ᎠᏴ ᏍᎩᏲᎮᏍᏗ, ᎯᎠ ᎤᎾᏁᎳᎩ ᏩᎾᏓᏅᎾ;\nᎠᏣ ᎤᏃᎴ ᎠᏲᏙᏗ ᎤᏗᎴᎩ ᎠᏛᎴᏛ ᎠᎧᎵᏔᏅ.\nᎭᎴᏉ ᏄᎴᏫᏍᏔᏁ ᎤᏓᏅ ᏙᎩ ᏫᎵᎻ ᎤᏕᎶᎰᏌ ᏂᎦᎵᏍᏗᏍᎬ.\nᎤᏬᏪᎳᏅᎩᏃ ᎯᎠ ᏫᏄᏪᏎᎸᎩ;\nᎤᏣᏘᏃ ᎡᎯᏍᏗ ᎤᏓᏅᏖ ᎤᏟ ᎢᏳᎵᏂᎩᏛ ᎤᏓᏙᎵᏍᏔᏁᎢ; ᎠᎴ ᎠᎵ ᎤᎯᎲ ᎾᏍᎩᏯ ᎨᏎ ᎩᎬ ᎡᏉᎯᏳ ᎦᏙᎯ ᏥᏫᏗᎦᏬᎪᎢ.\nᎡᎵᏍᎨᎢᏃ ᏄᏩᏁᎰᏁᏍᏗ ᏃᎴ ᎦᏳᎳ ᎤᏪᏅᏒ ᎨᏎᏍᏗ ᏯᏂᎷᎬᎾᏉ ᎠᏂᏲᏍᎩ.\nᎠᎴ [ᏥᏌ] ᎯᎠ ᏄᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏣᏘ ᏚᏕᎳᏍᏔᏁᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏫᏚᏯᏅᎮᎢ;\nᎠᏎᏃ ᎤᏙᎴᎰᏎ ᎠᏂᏏᎾᏌᏅᎬᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᏍᎩᏌᏛᎥᏍᎦ?\nᎥᏝ ᏱᏗᏣᏍᏗᎬᏎᎸ ᎠᏴ ᏦᎩᎾᏫ; ᎢᏨᏒᏍᎩᏂ ᏗᏥᎾᏫ ᏚᏍᏗᎬᏒ.\nᎾᏃ ᎠᏂᏍᎦᏅᎩ ᏕᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᎠᏂᏐᎢ ᎾᏍᏉ ᎤᏂᎾᏰᏍᏗᏱ.\nᎾᎯᏳ ᏓᏣᏙᎴᎰᏏ ᎠᏴ ᎡᏙᏓ ᏥᏯᎥᎢ, ᎠᎴ ᏂᎯ ᏍᎩᏯᎥᎢ, ᎠᎴ ᎠᏴ ᎢᏨᏯᎥᎢ.\nᏂᎬᎾᏛ ᎡᎶᎯ ᏛᎾᏛᎦᏂ ᏂᏣᏛᏁᎸᎢ.\nᏕᏥᏲᎵᎸᎭ ᏈᏏᎳ ᎠᎴ ᎡᏈᎳ, ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎦᎶᏁᏛ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎴᎲᎦ ᎠᎴ ᎭᏘᏄᎦ ᎠᏲᎵ ᎠᎴ ᎤᏥ, ᎠᎴ ᎮᎾ ᎢᏏᎵᏱ, ᎿᏉᏰᏃ ᏚᏂᏲᎱᏒ ᎠᏲᎵ ᎬᏅ ᏧᏂᏲᎲᎩ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏣᏁᏢᏔᏅᏛ ᎠᏁᏙᎯ ᎨᏎᏍᏗ ᎾᎿ ᎤᎾᏤ-ᎵᎪᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎾᎿ ᎠᏁᎯ ᏙᏓᎬᏩᏂᎾᏢᏂ ᎠᎴ ᎤᏲ ᏅᏓᎬᏅᏁᎵ ᏅᎩᏧᏈ ᏧᏕᏘᏴᏛ.\nᏗᎪᏍᏔᏱ ᏚᏂᏑᎦᏢ ᎫᏩᎾᎳᏍᏛᏅ ᎾᏍᎩᏯ ᏓᎭᏃᏫ ᏗᎦᎵᎥᏂᏍᏙᏗ ᎠᏥᎵᎥᎭᏂᎸ ᏄᏍᏕ.\nᎿᏉᏃ ᏈᏓ ᎯᎠ ᏂᎤᏪᏎᎢ, ᎬᏂᏳᏉ Ꭰ-Ᏼ ᏂᎦᏗᏳ ᏙᎩᏲᏐᏅ, ᎠᎴ ᎢᏨᏍᏓᏩᏕᏅ.\nᎠᎴ ᎩᎶ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎾᏱᏍᎬᎾ ᎠᎴ ᎾᎩᏍᏓᏩᏕᎬᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎠᎩᏍᏓᏩᏗᏙᎯ ᏱᏅᎦᎵᏍᏓ.\nᎬᏂᏳᏉᏃ ᏂᎦᏗᏳ ᏍᎦᏚᎩ ᏧᏂᏄᎪᏤᎢ, ᏥᏌ ᏕᎬᏩᏠᏏᎴᎢ; ᎬᏩᎪᎲᏃ ᎬᏩᏔᏲᏎᎴ ᎤᏓᏅᏍᏗᏱᏉ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ.\nᎨᏍᏗ ᏱᏥᎦᏔᎮ ᎢᏳᏍᏗ ᎠᏂᏃᎮᏍᎬ, ᎠᎴᏃ ᎠᎨᏯ ᏣᎦᏨᏍᏔᏅ ᎠᏗᏍᎩ ᎠᏎᏃ Ꮳ.\nᏥᏌ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏱᎯᎦᏔᎮ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᏥᎩ, ᎠᎴ ᏱᎯᎦᏔᎮ ᎯᎠ ᎾᏍᎩ ᏥᏂᏣᏪᏎᎭ, ᎠᏆᏗᏔᏍᏗ ᏍᎩᏁᎲᏏ; ᏨᏒ ᏱᏔᏲᏎᎴᎢ, ᎠᎴ ᏱᏣᏁᏁᎴ ᎬᏂᏛ ᎠᎹ.\nᎡᎳᏗᏃ ᎤᏅᏨ ᎤᏛᎦᏁ ᎩᎶ ᎧᏁᎬᎢ ᎯᎠ ᏄᏪᏎᎲᎢ; ᏐᎳ, ᏐᎳ, ᎦᏙᏃ ᎤᏲ ᏂᏍᏋᏁᎭ?\nᏙᏱᏗᏢᏍᎩᏂ ᎠᏁᎯ ᎤᏁᎳᏅᎯ ᏕᎫᎪᏓᏁᎰᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏥᏄᎪᏩ ᎢᏤᎲ ᎾᏍᎩ Ꮎ ᎠᏍᎦᎾᎢ.\nᏑᎾᎴ ᏚᎸᏌᏛ ᎦᎶᏍᎨᎢ ᎩᎦᎨ ᎤᏍᎪᎢ ᏗᎦᎴᏂ.\nᎠᏴᏣᏗᏍᏗ ᎠᎩᏠᏫᏍᏗ ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎦᎸᎳᏗ.\nᎠᎴ ᏥᏌ, ᎾᏍᎩ ᏣᏍᏓ ᏣᎪᏎᎰᎢ; ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏥᎩ. ᎾᏍᎩ ᎤᏅᏒ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎬᎩᎦᎵᏍᏓᏗᏍᎬᎩ.\nᏚᏏᎳᏓ ᏫᎵᎻ ᎤᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ.\n“ᎤᏔᎷᎩᏍᎩ ᏍᎩᎾᎾᏂ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᏭᏩᏅᏓᏕ ᏣᏕᎲᏍᎨᎢ.\nᏚᎧᎿᏅᏃ ᎠᎴ ᎤᏍᎦᎸ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᎢ, ᏣᎬᏫᏳᎯ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎭᏓᏙᎵᏍᏗᏍᎬ ᎠᎴ ᎭᏓᏁᎸᎥᏍᎬ ᏚᎵᏌᎳᏓᏅ ᎠᏅᏓᏗᏍᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎠᎴ ᏚᏅᏍᏓᏕᎸ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗᏱ.\nᎠᏰᎳᏍᏗᏃ-ᎦᏅᎯᏛ ᏧᏂᏅᎢᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎨᏥᏴᎩᏅᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᏫᏗᎨᎦᏘᏅᏍᏛᏗ ᎨᏎᏍᏗ; ᏥᎷᏏᎵᎻᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᎳᏍᏓᎡᏗ ᎨᏎᏍᏗ, ᎬᏂ ᎠᏍᏆᏛᎭ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎨᎦᏓᏁᎳᏁᎸᎯ ᎨᏒᎢ.\nᎠᎴ ᎾᏍᏉ ᎪᏪᎴ ᎤᎵᏍᏓᏛ ᎦᎸᎳᏗᏢ ᎠᏂᎪᎢ ᎤᏂᏬᏂᎯᏍᏗ, ᎠᎴ ᎠᏂᎶᎻ ᎤᏂᏬᏂᎯᏍᏗ, ᎠᎴ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎪᏪᎴ ᎯᎠ ᏂᎬᏁᎢ; ᎯᎠ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ.\nᏂᎦᏛᏃ ᏥᏳᎯ ᎣᎦᏣᎢ ᏔᎵᏧᏈ ᎦᎵᏆᏍᎪᎯ ᏑᏓᎵᎦᎵ ᏃᏥᎥᎩ ᏴᏫ.\n“ᎠᏆᏓᏅᏙᎩ ᎢᏴ ᎠᏆᏒᏂᎦ!” \nᎤᏁᎷᏅᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎢᏥᏍᎦᏯ, ᎢᏏᎵ ᏧᏪᏥ, ᏍᎩᏍᏕᎸ! ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎾᏍᎩ ᏥᏕᎨᏲᎲᏍᎦ ᎾᏂᎥ ᏴᏫ ᏂᎬᎾᏛᎢ, ᏥᏓᏡᏗᎭ ᎯᎠ ᏴᏫ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᏂ ᎨᏒᎢ, ᎠᎴ ᎾᏍᏉ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏥᏚᏴᏔᏂᎸ ᎠᏂᎪᎢ, ᎠᎴ ᎦᏓᎭ ᏥᏄᏩᏁᎸ ᎠᏂ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎬᏂᏳᏉᏃ, ᎩᎶ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᏚᎴᏁᎢ, ᎠᎴ ᎤᎪᎵᏰᏍᎬ ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏯᏆᏛᏁᎸ ᎠᏆᏤᎵ ᏱᏂᎦᎵᏍᏓ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ?\nᎩᎶᏍᎩᏂᏃᏅ ᎠᎩᎾᏝᎢ ᏂᎨᏒᎾ, ᎠᏎᏃ ᎾᏂᎥ ᎬᎩᎾᏝᎢ ᎾᏆᏓᏛᏁᎸ, ᎾᏍᎩ ᎤᏟ ᎢᏯᏂᎢ ᎬᎩᏁᏉᏤᏗᏱ.\nᎠᏓᎴᏴᏗᏍᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎾᏍᏉ, ᎣᎦᏛᎦᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎥᏝ ᏲᏥᏲᎯᏍᏗᏍᎪ ᎣᏣᏓᏙᎵᏍᏗᏍᎬ ᎠᎴ ᎣᏥᏔᏲᎯᎲ ᎾᏍᎩ ᎠᏓᏅᏖᏍᎬ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎢᏥᎧᎵᎢᏍᏗᏱ, ᎾᏍᎩ ᏂᎦᎥ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᎪᎵᏥᏓᏍᏗ ᎨᏒᎢ;\nᎢᎦ ᏒᎮᏱᏣ ᎡᎳᏗ ᎢᎦᏘ ᎦᏍᎩᎶᎩ ᎤᏬᏞ ᏲᎾ ᎤᏤᏍᏙ, ᎤᏓᏂᎵᎨᎢ ᎤᏃᏕᎾ ᎤᏴᎵᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏫᎵᎻ ᎠᏩᏛᎯᏙ.\nᎾᎯᏳ ᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᎬᏯᎵᎡᎵᏤᎭ ᎡᏙᏓ, ᏣᎬᏫᏳᎯ ᎦᎸᎳᏗ ᎠᎴ ᎡᎶᎯ, ᎾᏍᎩ ᎯᎠ ᏥᏕᎲᏍᎦᎳᏁᎸ ᎠᏂᏏᎾᏌᏂ ᎠᎴ ᎠᏁᏯᏔᎯ, ᏗᏂᏲᎵᏃ ᏥᏕᎯᎾᏄᎪᏫᏎᎸ.\n“ᎬᏲᎵᎭᏛ ᎤᏛᏁ ᎩᎶᎢ.\nᏂᎦᏓ ᏏᏓᏁᎸ ᎠᏂᏌᏛᎥᏍᎩ ᎨᏎ.\nᎣᏏᏉᎨ ᎾᎾᏛᏁᎮ?\nᏐᎳᏍᎩᏂ ᎤᏣᏘ ᎤᏲ ᏂᏕᎬᏁᎮ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏈᎬᎢ, ᏓᏴᎵᏙᎮ ᏓᏓᏁᎳᏗᏒᎢ, ᏕᎦᎾᏌᏁᏏᏙᎮ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎠᏴᏗᏍᎨᎢ.\nᎦᎸᎳᏗᏍᎩᏂ ᎡᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᎡ ᎠᏁᎯ ᏓᎨᏥᏄᎪᏫᏏ ᏫᏙᏓᎨᎦᏓᎡᏏ ᏧᎵᏏᎬ ᏙᏱᏗᏢ, ᎾᎿ ᏓᏂᏴᎨᏍᏗ, ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ.\nᎠᎴ ᎦᎪ ᎢᏳᏍᏗ ᎠᎨᏴ ᎠᏍᎪᎯ ᏱᏚᎭ ᎠᎩᏏ ᏧᎾᎬᏩᎶᏗ, ᎢᏳᏃ ᏌᏉ ᏳᏲᎱᏎᎸ, ᎥᏝ ᏯᏨᏍᏛᏍᎪ ᎠᏨᏍᏙᏗ ᎠᎴ ᏱᎬᏃᏌᏍᎪ ᎦᎵᏦᏕ, ᎠᎴ ᎤᎵᏏᎾᎯᏍᏗ ᏳᏲᎰ ᎬᏂ ᎠᏩᏛ?\nᏕᏥᎧᏅᏍᎪ, ᏂᏥᎪᏩᏘᏍᎬᎾᏃ ᎢᎩ? ᏕᏥᎵᎷᎦᏍᎪ, ᏂᏣᏛᎩᏍᎬᎾᏃ ᎢᎩ? ᎠᎴ ᏂᏣᏅᏓᏗᏍᎬᎾᏍᎪ ᎢᎩ?\nᎬᏂᎨ ᏧᎳᏍᎩ ᎠᎹ ᏗᎵᏥᏍᎬ ᏚᏩᎭᏂᏍᏔᏅ.\nᎤᏫᏒᏃ ᎢᎦᏛ ᏅᏃᎱᎶᏗ ᎤᎳᎨᏯᏛᏤᎢ, ᏥᏍᏆᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᏄᏘᏐᏁᎢ.\nᏐᏈᎵ ᏃᎴ ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗ ᏂᏕᎬᏁ ᏃᎴ ᏩᎦ ᏗᎨᎵᏌᏛᏗ ᎡᎳᏗᏣ ᏃᎴ ᏫᎵᎻ ᎤᏴᏍᏗ. ᏍᏈᏍᏓ ᎠᎾᎡ, ᏗᏴᏣᏗᏍᏗ, ᏗᏍᏙᏍᏙᏗ ᏅᏯ, ᎦᏄᎸ ᏗᏣᎦᏍᏙᏗ, ᎤᏅᏗ ᏗᏥᏍᏙᏗ, ᎠᎹ ᏗᏥᏍᏙᏗ, ᎤᏂᏥ ᏗᎪᏓᎩᏍᏙᏗ, ᏧᎦᏣᏅᎪᏥᏓ ᏥᏍᏕᏥ ᏗᏌᏛᏙᏗ, ᏧᏏᏩ ᎤᎧᏔ ᏗᎦᏅᏙᏗ, ᏗᏍᏓᏱᏗᏍᏙᏗ ᏃᎴ ᎧᏁᏍᎦ ᎫᏔᎩᏍᏙᏗ ᏴᎩ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᎢᎸᎯᏳ ᎪᎩ ᎢᏳᏓᎴᏅᏛ ᏴᎦᎦᏗᏔ ᎯᎠ ᏖᎸᎳᏗ ᎤᎾᏄᎪᏫᏒᎯ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎢᏧᎳᎭ ᎢᏤ ᎢᏓᏗᏔᎲᎭ ᎡᏙᏓ ᎤᏤᎵᎪᎯ.\nᎿᏉᏃ ᎤᎬᏫᏳᎯ ᎤᏛᎦᏅ ᎤᏔᎳᏬᏎᎢ, ᎠᎴ ᏚᏅᏎ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ, ᎠᎴ ᏫᏚᏂᎴ ᎾᏍᎩ ᏧᎾᏓᎸᎯ, ᎠᎴ ᏭᎾᎪᎲᏍᏔᏁ ᎤᏂᏚᎲᎢ.\nᎿᏉ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏂᏧᏏ ᎬᏬᎯᏳᎲᏍᎩ; ᎢᏳᏃ ᏕᏥᎧᎿᏩᏗᏎᏍᏗ ᎠᎩᏁᏨᎢ, ᎤᏙᎯᏳᎯᏯ ᏍᎩᏍᏓᏩᏗᏙᎯ ᎨᏎᏍᏗ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᎩ; ᎦᏙᏃ ᎢᎡᏣᏕᏯᏙᏗᎭ? ᎣᏏᏳ ᏕᎤᎸᏫᏍᏓᏏ ᏥᎾᏋᎦ.\nᎤᏓᏅᎯᏓ ᎢᎦ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏔᏁ.” \nᎡᏆ ᎧᏁᏌᎢ ᏃᎴ ᎢᏤᎯ ᎯᏑᏫᏒ ᏃᎴ ᎠᏕᎳ ᏓᎶᏂᎨ ᎠᏑᏫᏍᏗ ᎲᏔᏅ ᏕᎰᏪᎳᏅ!”\nᏥᏲᎲ ᎩᎶ ᎦᏥᏅᏁᏗ ᎪᏪᎵ.\nᎾᏍᎩ ᎾᏍᎦᏅᎾ ᎢᏳᏩᏁᏗᏱ ᎦᏅᎦᎵᏍᎬᎢ ᎧᏃᎮᏛ ᎬᏗᏍᎬᎢ ᎠᎹ ᏥᎪᏑᎴᏗᏍᎪ ᎾᏍᎩᏯᎢ.\nᎠᏰᎳᏍᏘ ᎬᏘ ᎤᏍᏛᎪᏒ ᎤᎵᏓᏍᏔᏅ, ᎠᏣᏗ ᎤᎪᎳ ᎦᏓᏫᏔᏅ ᎤᎵᎨᏯᏛᏅ ᎤᏲᏍᏔᏅ ᎪᏪᎵ, ᏥᏳᎪᏘ ᏭᏬᏪᎳᏅ ᏄᏪᏒ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ.\nᏂᎦᎥ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸ, ᎠᏎᏃ ᎥᏝ ᏂᎦᏗᏳ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸ, ᎠᏎᏃ ᎥᏝ ᎠᎩᎾᏝᎢ ᏱᎨᏎᏍᏗ ᎪᎱᏍᏗ.\nᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏓᏅᏒᎩ, ᎠᎴ ᏫᏚᏃᏁᎸᎩ ᎠᏂᏧᏏ, ᏥᏌ ᎤᏅᏩᏅᎯ ᎨᏒᎢ.\nᏙᏱ ᏗᏣ ᎦᎶᎯᏍᏗ ᏭᏅᎪᏤ ᎦᎸᎶᎢ ᎢᏣ, ᏩᎶᏏ ᎤᎾᎵᎪ.\n”ᏌᎳᏓ?” ᎤᏛᏁ ᎡᏝᏪᎯ.\nᎠᏴᏫᏯ ᏱᎩ, ᎠᏰᎵ ᎠᏴᏫᏯ ᎨᏎ ᎤᎵᏏ. ᎠᏎᏃ ᏰᎵᏉ ᎨᏎ.\nᎤᎾᏚᏓᎸ ᎠᏁᎵᏍᎨ ᏂᎦᏓ ᏧᏂᏃᎯᏎᏗ ᎨᏍᏗ ᎢᎪᎯᏓ ᎪᎩ ᏱᎨᏎᏍᏗ.\nᎯᎠᏃ ᏄᏪᏎ ᏚᏟᎶᏍᏓᏁᎴᎢ; ᏥᎪᏗᎨᏫ ᏰᎵᏉ ᏯᏘᏄᎦ ᏗᎨᏫ? ᏝᏍᎪ ᎢᏧᎳ ᎠᏔᎴᏒ ᏱᏙᎬᏂᎸᎩ?\nᎣᎦᏙᎴᎰᏒᏰᏃ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏣᏔᏅᎯ ᎤᏕᏯᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎦᏂᎳᏗᏍᎩ ᏧᏓᎴᏅᏛ ᏂᎦᏛ ᎠᏂᏧᏏ ᎠᏁᎲ ᏂᎬᎾᏛ ᎡᎶᎯ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᎾᎵᎪᏒ ᎾᏎᎵᏂ ᏧᎾᏙᎢᏛ.\nᎧᏂᎩᏓ ᎤᏚᎩ, ᎠᏂᎦᏔᎮ ᎾᎦᎸᎳᏗᏴ ᎫᏩᎾᏗᏍᎦᎶᏗ ᏱᎨᏒᎾ.\nᏂᏥᏲᎯᏍᏗᏍᎬᎾ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ;\nᎤᏥ ᎦᏅᎦᎸᎯᏙᎮ ᎤᎾᏅᏗ ᎠᏍᏆᏚᎸ.\nᎥᏝ ᏱᏍᏆᏔᏪᏙᏁᎢ; ᎯᎠᏍᎩᏂ ᎠᎨᏴ, ᎠᎩᏴᎵᎸ ᏅᏓᎬᏩᏓᎴᏅᎥ, ᎥᏝ ᏳᏑᎵᎪᏨ ᏓᏆᏚᏣᎳᏁᎲ ᏗᏆᎳᏏᏕᏂ.\nᏅᏩᏍᏛ ᏂᎦᏓ ᎠᏂᎾᏣᎥ ᏧᎾᎾᏏᏗ, ᎠᏎᏃ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᏴ ᎾᎦᎵᏍᎪ.\nᎯᎠ ᏄᏪᏎᎢ, ᎣᎦᏁᎳᎩ; ᎦᏙ ᏗᎦᏓᏛᏙᏗ ᏂᎯ, ᏥᏌ, ᎾᏎᎵᏗ ᎮᎯ? ᏥᏌ ᏍᎩᏛᏔᏂᎸ? ᎬᎦᏔᎭ, ᏂᎯ ᎾᏍᎩ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏥᎸᏉᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎠᎴ ᎼᏏ ᎤᏙᎯᏳᎯ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏒᎩ ᏂᎦᎥ ᏚᏓᏘᎾᎥᎢ ᎠᏥᏅᏏᏓᏍᏗ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏥᎨᏎᎢ.\nᏣᎬᏫᏳᎯ, ᎿᏉ ᎯᏅᏏᏓᏍᏗ ᏅᏩᏙᎯᏯᏛ ᏕᎯᏲᏍᎦ, ᎾᏍᎩᏯ ᏂᏣᏪᏒ ᏣᏁᏨᎢ;\nᎿᏉᏃ ᎾᏍᎩ ᎠᎨᏴ ᏌᎺᎵᏱ ᎡᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙ ᏗᎦᎵᏍᏙᏗᎭ ᏂᎯ ᎯᏧᏏ ᎠᏗᏔᏍᏗ ᎢᏍᎩᏔᏲᏎᎭ ᏥᎨᏴ ᏌᎺᎵᏱ ᎨᎢ. (ᎠᏂᏧᏏᏰᏃ ᎠᎴ ᏌᎺᎵᏱ ᎠᏁᎯ ᎥᏝ ᏱᏚᎾᏓᎦᏌᏯᏍᏙᎢ.)\nᎿᏉᏃ ᏈᏓ ᏌᏚ ᎢᏯᏂᏛ ᎠᏂᏙᎾᎥ ᎦᏙᎬᎢ, ᎠᏍᏓᏯ ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏍᎦᏯ ᎢᏥᏧᏏ, ᎠᎴ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎢᏤᎯ, ᎯᎠ ᎾᏍᎩ ᎢᏣᏅᏖᏍᏗ, ᎠᎴ ᎢᏣᏛᏓᏍᏓ ᏥᏁᎬᎢ.\nᎠᎴ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎶᎢ ᎠᏰᎵ ᎦᏃᎯᎵᏒᎩ ᎠᏍᏓᏯ ᎤᏪᎷᎬᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎤᏲᎢᏳ, ᎤᏲᎢᏳ ᎤᏲᎢᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎡᎶᎯ ᏓᏁᏩᏗᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏗᏐᎢ ᎠᏤᎷᎩ ᏗᏤᎷᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏦᎢ ᎢᏯᏂᏛ ᏓᏂᏁᎲᎢ, ᎠᏏ ᏧᏂᏤᎷᎯᏍᏗ ᏥᎩ.\nᎠᏂᏔᎵ ᏗᏂᏍᏔᏲᎯ ᏚᏂᎧᎲ, ᏏᏴᏫᎭ ᎠᏂᏍᎦᏯ, ᎤᎾᏛᏁᎢᏍᏔᏃᏅ ᎨᏎ ᏐᏉ ᏗᏅᏍᎪᎵ ᏧᏂᏐᏗ, ᏐᏉ ᏚᎾᏓᏅᏛ ᏧᏂᏲᏍᏗ.\nᎤᏓᏄᎸᎯ ᎢᏳᏍᏗ ᎠᏍᎪᎵ ᎣᏁ ᏫᏂᏚᏩᏁᎴ ᏧᏬᏰᏂ ᏃᎴ ᏗᎧᏂᎨᏂ ᏚᏩᏐᏍᏔᏁᎢ, ᏧᏣᏪᏐᎸᏍᏙ ᎢᏳᏍᏗ.\nᎢᏳ ᎠᎴ ᎯᎦᏙᎵ ᏙᏦᏕᏍᏗᏍᎨᏍᏗ, ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ; ᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉᏉ ᏱᎧᏅ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏱᏫᏣᏴᎸ ᎠᏃ ᎢᏧᎳ ᏱᏘᎧᏅ ᏨᏍᎩᏃ ᎠᏥᎸᏱ ᏱᏪᏣᏓᎢᏅ;\nᏍᎩᏲᎮᏍᏗ, ᎠᏎᏃ ᏓᏍᎩᏯᏠᏥ; ᎠᎴ ᏫᎨᎥ ᎥᏝ ᏰᎵ ᏫᏴᎨᏥᎷᎩ.\nᎠᏏᏉᏃ ᏣᎢᏎᎢ ᎠᏍᎩᎾ ᎤᏍᏢᏂᏍᏔᏁᎢ, ᎠᎴ ᎤᎸᏕᏍᏔᏁᎢ, ᏥᏌᏃ ᎤᏍᎦᏤ ᎦᏓᎭ ᎠᏓᏅᏙ ᎠᎴ ᎤᏅᏩᏁ ᎠᏲᎵ, ᎠᎴ ᏔᎵᏁ ᎢᎤᏪᎧᏁᎴ ᎤᏙᏓ.\nᎯᎠ ᎠᏂᏃᏟᏙᎯ ᏧᏂᎪᎮᎢ ᏃᎴ ᏣᏂᎧᏔᎮᎢ ᎢᏳᏃ ᎢᏣ ᎤᎾᎳᏐᏍᏙᏗ.\nᎬᏩᎦᏌᏯᏍᏕᏃ, ᎠᎴ ᏙᏧᏂᏅᏎ ᎠᎾᏓᎦᏌᏯᏍᏗᏍᎩ, ᎾᏍᎩ ᎤᎾᏓᏅᏘ ᎤᎾᏣᎸᏗᏱ ᎾᏍᎩ ᎬᏩᎪᏁᎶᎯᏎᏗᏱ ᎦᏬᏂᏍᎬᎢ, ᎾᏍᎩᏃ ᏫᏚᏂᏲᎯᏎᏗᏱ ᎤᏰᎢᎵᏍᏗᏱ ᎤᎬᏫᏳᎯ.\nᎠᏎᏃ ᎠᎩᎭ ᎠᏓᏬᏍᏗ ᎨᏒ ᎥᏆᏬᏍᏙᏗ; ᎠᎴ ᏂᎦᎥ ᎤᏪᎵᎯᏍᏗ ᎠᏆᏓᏅᏔ ᎬᏂ ᎠᎵᏍᏆᏛᎭ!\nᎿᏉᏃ ᏚᏂᏅᏎ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᎯᎠ ᎢᏯᏂᏪᏍᎩ; ᏱᏣᏛᎦᏁᎸ ᎾᏍᎩ ᎧᏁᎬᎢ ᎠᏐᏢᎢᏍᏗᏍᎬ ᎼᏏ ᎠᎴ ᎤᏁᎳᏅᎯ.\nᎠᏛᏃ ᏔᎵᏁ ᎤᎪᎮᎢ, ᎠᎴ ᎤᎴᏅᎮ ᎯᎠ ᏂᏚᏪᏎᎴ ᎾᎥ ᎠᏂᏙᎾᎢ, ᎯᎠ ᎾᏍᎩ ᎾᎿ ᎨᎳ.\nᎠᎦᏔ ᎠᏰᎸ ᎢᎦ ᎦᏘᏍᏗᏍᎩ, ᎢᏳᏍᎩᏂ ᎯᎦᏙᎵ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎨᏎᏍᏗ, ᏂᎬ ᎯᏰᎸᎢ ᎤᎧᎵᏦᏅᎯ ᎨᏎᏍᏗ ᎢᎦᎦᏘ.\nᎾᏍᎩ ᏎᏓᏂ ᏤᏥᏲᎯᏎᏗᏱ ᎾᏍᎩ ᎯᎠ, ᎾᏍᎩ ᎤᏲᎢᏍᏗᏱ ᎤᏇᏓᎸᎢ, ᎤᏓᏅᏙᏃ ᎠᏍᏕᎸᏗᏱ ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏤᎵ ᎢᎦ ᎨᏎᏍᏗ.\nᎧ ᏣᎬᏫᏳᎯ, ᎿᏉ, ᏔᎧᏅᎦ ᎪᎩᏍᎦᎬ ᏣᏂᏁᎦ, ᎠᎴ ᏔᎵᏍᎪᎸᏓᏏ ᏘᏅᏏᏓᏍᏗ ᎤᏍᏗᎤᏅ ᎾᏂᏍᎦᎢᎲᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏔᏁᏨ ᎠᏂᏃᎮᏍᎬᎢ,\nᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏗ; ᎯᎠᏰᏃ ᎾᏍᎩ ᏔᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᏓᏟᎶᏍᏗ; ᏌᏉ ᎨᏒ ᏌᎾᏱ ᎣᏓᎸ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᏥᏕᎦᎾᏄᎪᏫᏍᎦ ᏗᎨᏥᎾᏢᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎮᎦ ᏥᏓᏟᎶᏍᏗ.\n”ᎣᏍᏓ ᎭᏁᎸᏓ.”\nᏌᏌ ᎤᏂᎪᎭ ᎡᎳᏆᏗ ᎠᏯᎥ ᎧᏁᏌᎢ ᏃᎴ ᎤᏁᎷᏁᎢ.\n”ᎧᎩᏳᏍᏗ ᏧᏍᏆᏴᏍᏗ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏃᎮᎮᎸ, ᏗᏦᏕᏍᏗᏱ ᏂᎨᏒᎾ.\nᏍᎪᏯ ᏗᏂᏴᎯᎰ.\nᏃᏗ ᎩᎳ ᏫᏚᎧᎾᏁ ᏗᎦᏛᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ.\nᎾᎥᏃ ᎢᏳᎾᏓᎳ ᎠᎴ ᎪᎱᏍᏗ ᏧᏩᎿ ᎤᎾᏛᎦᏁ ᎤᏁᎳᏅᎯ ᎤᏣᏘ ᎤᏪᏙᎵᏨᎢ, ᎠᎴ ᎢᏧᎳᎭ ᎤᎾᎵᎮᎵᏤᎢ.\nᏫᏚᎧᎾᏅ ᏕᏥᏴ ᎦᎶᏇ, Ꭾ ᏫᎵ ᎤᏛᏅ.\nᎿᏉᏃ ᏉᎳ ᏗᏐᏴ ᏮᏓᏰᏥᏴᏔᏂᏒᎢ, ᎯᎠ ᏄᏪᏎᎸᎩ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ; ᏥᏌ ᏰᎵ ᎪᎱᏍᏗ ᎦᎬᏲᏎᏗ? ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏥᎪ ᎠᏂᎪᎢ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏰᎵ ᎨᏣᏬᏂᎯᏍᏗ??\nᎾᏍᎩ ᎾᎪᎯᏳᎲᏍᎩ [ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎾᏍᎩ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏁᎨᏒᎾ ᎤᏤᎵᎦ, ᎾᏍᎩᏍᎩᏂ ᎤᏪᏥ ᎪᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ ᎥᏝ ᎬᏂᏛ ᎤᎪᏩᏛᏗ ᏱᎩ; ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᎵᏃᎯᏰᎭ.\nᎠᎴ ᎥᏝ ᏱᏣᏜᏏᏛᎡᎭ ᏨᏒ ᏔᏘᏂᏙᎯ ᎨᏒ ᏗᏂᎨᏫ, ᎢᎦ ᏔᏘᏍᏓᏁᎯ ᎨᏒ ᎤᎵᏏᎬ ᎠᏂᏂ,\nᎾᏍᎩᏃ Ꮎ ᎠᏫᏍᎩ ᎠᎴ Ꮎ ᎠᎹ ᎠᏍᏚᏟᏍᎩ ᏌᏉᏉ ᎾᎾᎵᏍᏗᎭ; ᎠᎴ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎨᎦᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎤᎾᏤᎵᎦᏯ ᎨᎦᎫᏴᏓᏁᏗ ᎨᏒ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏅᏒ ᏕᎤᏂᎸᏫᏍᏓᏁᎸᎢ.\nᎠᏁᎷᎲᏍᎨᎢ ᎠᎾᏓᏩᏛᎯᏙᎢ.\nᎨᏍᏗ ᏳᏓᏅᏖᏗᏍᎨᎢ ᎠᏥᎢᏍᏗ, ᎠᎧᏔᎮᎢ ᏰᎵ ᎪᎯᏓ ᎤᏍᏆᏂᎪᏙᏗ ᎰᎻ.\nᎠᏥᎸ ᎾᎥᏂ ᎤᎴᏅ ᎾᏍᎩᏯ ᎭᏫᏯ ᏱᏓᎦᏒᏍᏔᎾ ᎤᎦᎾᏬᏍᎬ.\nᎢᏣᎵᎮᎵᎨᏍᏗ ᏂᎪᎯᎸ ᎤᎬᏫᏳᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎢᏣᎵᎮᎵᎨᏍᏗ, ᎦᏗᎭ ᏔᎵᏁ.\nᏓᏓᏁᏟᏴᏎᎬᏃ, ᎠᏧᏣᏃ ᎠᎴ ᏒᎦᏔ ᎢᏈᎬᎢ ᏓᎾᏛᏍᎨᎢ ...\nᏃᎴ ᎤᏟᏴᏍᎩᎸᎮ.\nᎠᏎᏰᏃ ᎢᎸᏍᎩ ᎢᏣᏓᏗᏍᏗ ᏂᎯ ᏂᏣᏛᏅᎢ, ᎾᏍᎩ ᎣᏏᏳ ᎨᏥᏰᎸᏅᎯ ᎬᏂᎨᏒ ᎢᏳᎾᎵᏍᏙᏗᏱ ᏂᎯ ᏂᏣᏛᏅᎢ.\nᎤᎾᏗᎦᎴᏲᏨᎯᏃ ᎾᎯᏳ ᎤᏲ ᏥᏄᎾᎵᏍᏓᏁᎴ, ᏨᏧᏓᎴᏅᎮ ᏍᏗᏫ, ᏈᏂᏏ ᎢᏴᏛ ᏭᏁᏙᎴᎢ, ᎠᎴ ᏌᏈ, ᎠᎴ ᎥᏘᎣᎩ, ᎠᏂᏧᏏᏉ ᎤᏅᏒ ᎧᏃᎮᏛ ᏓᏂᏃᎮᎮᎮᎢ.\nᏦᎢᏁᏃ ᎢᎦ ᏕᎨᎦᏨᏍᏗᏍᎬᎩ ᎨᎵᎵ ᎨᏂ ᎦᏚᎲᎢ; ᏥᏌ ᎤᏥ ᎾᎿ ᎡᏙᎲᎩ.\nᎠᏎᏉᏃ ᎠᎵᏃᎮᏗᏍᎨ, ᏭᏴᎴᎢ; ᎠᎴ ᏚᏩᏛᎮ ᎤᏂᏣᏖ ᏓᏂᎳᏫᎡᎢ.\nᎤᏃᎴ ᎤᏚᎵᏍᏛᏉ ᎢᏘᏢ ᏫᎦᏃᎸᏗᏍᎪᎢ, ᎠᎴ ᎤᏃᏴᎬ ᎭᏛᎩᏍᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᎦᏔᎰ ᏗᎦᏛᎢ ᎠᎴ ᏩᎦᏛᎢ; ᎾᏍᎩᏯᏍᎩᏂ ᏄᏍᏗ ᎾᏂᎥ ᎩᎶ ᎾᏍᎩ ᎠᏓᏅᏙ ᏧᎾᏄᎪᏫᏒᎯ.\nᎡᎵᏍᏗ ᎠᏯ ᏭᏍᏆᏂᎧᏛᎢ ᎪᎯᏓ ᎤᏂᎪᎲᎢ ᎨᏒᎢ.\nᎦᎵᏦᏙᏗᏰᏃ ᎤᏃᏢᏁᎢ, ᎦᎸᏉᏗᏳ ᎨᏒ ᏣᏃᏍᎮᎢ, ᎾᎿ ᎢᎬᏱᏱ ᏓᏓᎯᏛᎢ, ᏥᎦᎧᎮ ᎠᏨᏍᏙᏗ ᎦᎪᏗᏱ, ᎠᎴ ᎦᏍᎩᎶᎢ, ᎠᎴ ᎾᎿ ᏣᏝᎮ ᎠᎦᏙᏗ ᎦᏚ;\nᎿᏉᏃ ᏥᏌ ᏚᏰᎵᎯᏍᏔᏅ ᎤᏂᏣᏘ, ᎠᏓᏁᎸ ᏭᏴᎸᎩ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏗᏍᎩᏲᏏᏌᏏ ᏓᏟᎶᏍᏛ ᎤᏲ ᏧᎵᏰᏁ ᏠᎨᏏ.\nᎥᏝᏍᎩᏂᏃᏅ ᎩᎶ ᎠᎦᏴᎵᎨᎢ ᎤᎪᎲᎯ ᏱᎩ, Ꮎ ᎤᏩᏒ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ; ᎾᏍᎩ ᎤᎪᎲᎯ ᎠᎦᏴᎵᎨᎢ.\nᎾᏍᎩᏃ ᏄᏪᏒ, ᏚᏦᏔᎲᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏗᏣᏓᏂᎸᎩ.\nᏩᎩᎷᏣ ᏩᏏᏓᏂ ᎩᎳ ᎠᎬᏱ ᎠᏆᏛᎦᏅ ᎦᎸᏥ ᎠᏂᏬᏂᏍᎬ, ᎠᎩᎵᏓᏍᏔᏅ, ᎨᏍᏗ ᏱᎪᎵᎨᎢ.\nᏧᏩᎩ ᏧᎬ ᎤᏛᎦᏁ ᏗᏂᏃᎩᏍᎬ ᏔᎳᏚ ᏃᎴ ᎤᏍᎪᏍᏓ ᎩᎦᎨ ᏄᎵᏍᏔᏁᎢ ᎤᏪᎵᎯᏍᎬᎢ.\nᎤᏃᎴᏃ ᎤᏣᏘ ᎣᎩᏝᏗᏍᏔᏂᏙᎸ, ᎤᎩᏨᏛ ᎤᎾᎵᏁᏌᎴᏒᎩ.\n”ᏍᎩᏃᎯᏏ.”\nᏚᎧᎾᏅ ᎠᏰᎴᎩ.\nᎨᏥᏅᏏᏓᏍᏗ ᏕᎯᏁᏤᎮᏍᏗ ᏧᏃᎯᏳᏗᏱ ᎤᏅᏒ ᏗᎬᏩᏂᏅᏏᏙᎯ, ᏂᎦᎥᏉ ᎾᎾᏛᏁᎲ ᎣᏍᏛ ᎤᏂᏰᎸᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ; ᏔᎵᏁᏉ ᏅᏗᏂᏁᎬᏫ.\nᎠᏫ ᏗᏆᏤᎵᎦ ᎠᎾᏛᎩᏍᎪ ᏥᏁᎬᎢ, ᎠᎴ ᎠᏴ ᎦᏥᎦᏔᎭ, ᎠᎴ ᎬᏂᏍᏓᏩᏕᎪᎢ,\nᎠᎢᏒᏃ ᏧᎾᏄᏬ ᏚᏂᏰᏍᏛᏁ ᏅᏃᎯ.\nᎢᏳᏃ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ ᎤᎵᏍᎦᏍᏙᏗ ᎬᏰᎯ ᏯᎦᏘᏯ ᎦᏁᎸᎢ ᏅᏩᏙᎯᏯᏛ ᏄᏍᏛ ᎤᎿᎥᎢ.\nᎦᏅᏓᏗᏍᎪᎢᏃ ᏬᎩᏨᏓᏋ Ꮲ ᏔᎵᎭ ᎢᏳᏩᎪᏗ.\n”ᎦᏨ ᎮᏙᎭ?”\nᎤᏍᏚᎩᏒ ᏧᏍᏆᏅᎾ, ᏎᎦ ᎤᏓᏒᎾᏔᏅ.\nᏧᎾᏓᏥ, ᏚᎾᏓᏙᏗ, ᎠᎹᏟᏅᏢ ᎠᎴ ᏗᎾᏓᎸ ᎤᏁᎴᏅᎮ ᏓᎾᏓᏙᏪᎳᏁᎲ ᎪᏪᎵ ᎠᎴ ᎦᎵᏦᏕ ᎢᎸᏢ ᏓᏂᏢᏍᎨ ᏧᏂᎪᎵᏰᏗ ᎠᏰᎸᏎ ᎠᎴ ᏓᎾᏓᏕᏲᎲᏍᎨ ᏧᏂᎪᎵᏰᏗᎢ ᎠᏂᏴᏫᏃ ᎤᎾᎴᏅᎮ ᎢᎾ ᏓᏁᎨ ᎪᏪᎵ ᏧᎾᏓᏙᏪᎳᎾᏗ ᎤᏂᏰᎸᏎ.\n“ᎠᏯᏗ ᏏᏆ!” ᎤᏪᎷᏁ ᎡᎳᏆᏗ, ᏧᏬᏰᏂ ᎦᎵ ᎧᏁᏍᎦ ᎤᏗᏅᏎ.\nᎦᎶᎯᏍᏗᏱ ᎠᏴ; ᎢᏳᏃ ᏱᎶ ᎠᏴ ᎠᎩᏴᏍᏗᏍᎨᏍᏗ, ᎠᏎ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏴᏍᏗ ᎠᎴ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏩᏛᏗ ᎨᏎᏍᏗ ᎦᏄᎸᏒᎢ.\nᎤᏬᏚᏨ ᎨᏐ ᎦᏙ, ᎠᏎᏃ ᎦᏚᏏ ᎨᏒ, ᎨᏍᏗ ᎩᎶ ᏳᏚᎵᏍᎨ.\nᎢᏳᏍᎩᏂᏃᏅ ᎠᏉᎯᏤᎵᏙᎸᎭ ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏗᏱ ᎢᏣᏛᏁᏗᏱ ᏗᏣᎸᏫᏍᏓᏁᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏥᎩ, ᎦᎫᏍᏛᏗ ᎠᎴ ᎤᎵᏍᏓᏱᏙ ᏥᎩ ᏚᏳᎯᏛ ᎨᏒᎢ.\nᎤᎪᎮ ᏫᎵᎻ ᎦᏂᏓᏛ ᎾᎥᏂ.\nᎠᎴ ᏚᏅᏎ ᎦᏚᏱ, ᎯᎠ ᏄᏪᏎᎢ; ᎢᏤᎾ ᎣᏍᏛ ᏪᏥᏲᎦ ᎾᏍᎩ ᎤᏍᏗ ᎠᏲᎵ, ᎢᏳᏃ ᎡᏥᏩᏛᎲᎭ, ᎢᏍᎩᏃᏁᎵᎸᎭ, ᎠᏴᏃ ᎾᏍᏉ ᏫᏥᎷᏨᎭ, ᎠᎴ ᏥᏯᏓᏙᎵᏍᏓᏁᎸᎭ.\nᎾᎥ ᎾᎢ ᎠᎦᏳᎵᎨ ᎤᎷᏨᎩ ᏧᏓᏅᏠᎯᏗ ᎨᎸᏛᏍᏗ ᎯᎠ ᎤᏍᏗ ᎦᏅᏅ.\nᎠᎴ ᏫᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎬ ᏐᏈᎵ ᏫᏥᎪᎥᎩ ᎠᎴ ᎾᎿ ᎤᎩᎵ ᎦᎶᏣᏗ ᎦᏁᎲᎩ; ᎠᎴ ᎠᎵᏍᏚᎶ ᎠᏥᏅᏁᎸᎩ; ᎠᎴ ᎤᏪᏅᏒᎩ ᏫᏓᏎᎪᎩᏍᎬᎩ, ᎠᎴ ᏫᎬᏓᏎᎪᎩᏏᏒᎩ.\nᎤᏓᎴᏨ ᎩᎦᎨ ᎠᏣᏗ ᏚᏩᏓᎷᏯᏛ ᎢᏧᏩᏂ ᏄᏪᏎ, ᏏᏲ ᎤᏍᏗ ᎠᏣᏗ, ᏥᏍᏆᎸᎾ ᎬᏉᏎᎰ ᏚᏅᏓᏒ ᎠᏁᎯ.\nᎨᏍᏗ ᏂᎯ ᏥᏂᏕᎯᏏᎾ ᏗᎧᏁᎢᏍᏗ ᏱᏥᏏᎾ.\n”ᏂᎦᏓ ᎠᎾᏓᏅᏖ ᎨᏥᏍᏗ---ᏣᏄᏏ, ᎰᎻ, ᏃᎴ ᎡᎶᏗ.”\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵᎦ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ.\nᎨᏍᏗ ᎤᏩᏙᎯᏴᏓ ᏱᎨᏐ ᏴᎦᏘᏯ ᎪᎱᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎠᎴ ᎤᏣᎩᏍᏗ ᎤᏪᏥ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᏄᎵᏍᏔᏅᎩ ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸ ᎯᎠ ᏥᏂᎬᏅ; ᎥᏝ ᏌᏉ ᎤᎪᎳ ᏧᎵᏍᏆᎵᏍᏗ ᏱᎨᏎᏍᏗ.\nᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏕᎾᏓᏡᏩᏗᏒᎢ.\nᎢᏳᏃ ᎢᏣᏙᎴᎰᏎᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏓᏅᏘᏳ ᎨᏒᎢ.\nᎨᏍᏗ ᎩᎶ ᏳᎪᎭ ᏧᏍᏆᏴᏍᏗ.\nᎠᎴ ᎿᏉ ᏕᏣᏗᏁᎨᏍᏗ, ᎠᎴ ᏕᏥᏲᏍᎨᏍᏗ, ᏞᏍᏗ ᎢᎬᏱ ᎦᏰᎯ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎢᏥᏪᏍᏗᏱ ᎢᏥᏁᎢᏍᏗᏱ, ᎠᎴ ᏞᏍᏗ ᎢᎬᏱ ᎦᏰᎯ ᏱᏣᏓᏅᏖᏍᎨᏍᏗ; ᏄᏍᏛᏍᎩᏂ ᏫᎯᏳ ᎨᏒ ᎡᏥᏁᎸ ᎾᏍᎩ ᎢᏥᏁᎨᏍᏗ; ᎥᏝᏰᏃ ᏂᎯ ᏱᏣᏁᎪᎢ, ᎦᎸᏉᏗᏳᏍᎩᏂ ᎠᏓᏅᏙ.\nᎢᏳᏅᏁᎰᏅ ᏱᏄᏍᏗ, ᎣᎯᏍᏙᏗ ᎢᏳᏅᏁᏗ ᏱᎫᏩᏂᎷᎳ.\nᎤᏂᏁᏓᏃ ᎯᎠ ᏂᏚᏂᏪᏎᎴ ᎠᏂᎦᏔᎿᎢ; ᎢᎦᏛ ᎪᎢ ᎢᏣᏤᎵ ᏍᎩᏁᎥᏏ, ᏙᎬᏠᎯᏎᎭᏰᏃ ᏙᎩᏨᏍᏛᎢ.\nᎠᎴ ᎩᎶ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎦᎸᎳᏗ, ᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏪᏗᏱ ᎠᎴ ᎾᎿ ᎤᏬᎵ.\nᏚᏂᎪᎲᏃ ᎢᎦᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎦᏚ ᎠᏂᎩᏍᎬ ᏗᎦᏓᎭ ᏧᏃᏰᏂ ᎬᏗ, (ᎾᏍᎩ ᏂᏚᎾᏑᎴᎲᎾ ᎦᏛᎦ,) ᎤᏂᏐᏅᏤᎴᎢ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎯᎠ ᎾᏍᎩ ᎦᎸᏉᏗ [ᏗᎦᎸᏫᏍᏓᏁᏗ] ᎤᏩᏒᏉ ᎤᏓᏅᏖᏛ ᏯᎩᏍᎪᎢ, ᎬᏂ ᎤᏁᎳᏅᎯ ᎤᏯᏅᏛ ᏱᎩ ᎾᏍᎩᏯ ᎡᎵᏂ ᎠᏥᏯᏅᎲᎢ.\n“ᎠᎳᏂ, ᏣᎸᏂᏗᏍᎩ,” ᎤᏛᏁᎢ ᎰᎻ.\nᎤᎵᎮᎵᏍᏗ ᎨᏎᏍᏗ ᏔᎵᏁ ᎪᎨᏱ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ ᎯᏍᎩᏍᏆᏂᎦᏚ ᎢᏯᏂ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ ᎠᎾᏓᏌᎩᏙᎲ ᏂᎬᎾᏛ.\nᏣᏂᏰᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᎶᏛ; ᎥᏝ ᏚᏳᎪᏛ ᏱᎩ ᎾᏍᎩ ᏣᏓᏰᎭ.\nᎩᎶ ᎠᏍᎦᎾ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎠᏍᎦᎾ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎦᏓᎭ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎦᏓᎭ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎣᏏᏳ ᎢᏯᏛᏁᎯ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᎠᏏᏉ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏎᏍᏗ.\nᏃᏗ ᎤᏂᏄᎳᏒᏅ ᎤᏲᏨ ᎤᏪᏥ, ᎤᎵᎦᎵᏴᏓ ᎨᏎ ᎤᏃᎴ ᏃᎴ ᎣᏍᏓ ᎭᏒᎨ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᎬᏂᏳᏉ, ᎦᏃᏍᎩᏍᎩ ᏥᎦᎷᎪ ᎾᏍᎩᏯ ᏓᏥᎷᏥ. ᎣᏏᏳ ᎢᏳ ᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎠᏯᏫᏍᎩ, ᎠᎴ ᏧᏄᏬ ᏗᏍᏆᏂᎪᏗᏍᎩ, ᎾᏍᎩ ᎤᏰᎸᎭ ᎤᏪᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏕᎰᎯᏍᏗ ᎨᏒ ᎠᏥᎪᏩᏛᎡᏗᏱ ᏂᎨᏒᎾ.\nᎤᏟᏍᏓ, ᏴᏫ ᏛᏂᎷᏥ --- ᎢᏳᏉ ᎤᏂᎷᏤᏍᏗ.\nᎣᎦᎵᏍᏓᏴᏗ ᏍᎩᏁᎮᏍᏗ ᏂᏚᎩᏨᏂᏒᎢ.\nᎤᏩᏌ ᎤᏪᏅᏒ ᏣᎵ. ᎠᏙ ᎢᏣ ᎤᎾᎷᏒ, ᎠᎹ ᎢᏳᏍᏗ ᎦᎳᎨᏴ ᏃᏥ ᏧᏆᎶᎬ ᎦᏚᎢᏣ.\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏣᏖ ᏧᏓᎴᏅᏛ ᎬᏭᎯᏍᏗᎨᎢ.\nᏥᏌᏃ ᏈᏓ ᎦᏁᎸ ᎤᎷᏨ, ᎤᎪᎮ ᏈᏓ ᎤᏓᎵᎢ ᎤᏥ ᎦᏅᎨ ᎤᏗᎴᎲᏍᎨᎢ.\nᏉᎳ ᎠᎴ ᏗᎹᏗ, ᏥᏌ ᎦᎶᏁᏛ ᎬᏩᏂᏅᏏᏙᎯ, ᏫᏙᏍᏙᏪᎳᏏ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎦᎶᏁᏛ ᏥᏌ ᎬᏬᎯᏳᎯ ᎾᏍᎩ ᏈᎵᎩᏱ ᎠᏁᎯ, ᏙᏍᎦᏠᏯᏍᏗᎭ ᎩᏂᎦᏘᏯ ᎠᎴ ᎠᏂᏯᏙᎯᎯ;\nᎤᏙᎰᏎ ᏫᎵᎻ.\n“ᏕᎾᏓᎪᎲᏳᏛ ᎤᏛᏁ ᎡᏝᏪᎯ.\nᎠᏓᎴᏂᏍᎬ ᏱᏍᏛ ᎧᏃᎮᏛ, ᏥᏌᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᏤᎵᎦ.\nᎥᏝ ᎠᎴ ᏴᏫ ᎠᏂᏨᏍᏛᎦ ᎠᏨᏍᏙᏗ ᎠᏟᎶᏍᏗ ᏯᏄᏢᏗᏍᎪᎢ, ᎦᎪᏗᏱᏍᎩᏂ ᎠᏂᎧᎲᏍᎪᎢ, ᎢᎦᏃ ᎤᎾᏘᏍᏓᏁᎰ ᏂᎦᏛ ᎦᎵᏦᏕ ᎠᏂᏯᎢ.\n“ᎪᎨ ᎠᎵᏍᏆᏓ ᏃᎴ ᎠᎵᏛᏓ,” ᏄᏂᏪᏎᎢ ᏔᎳᏚ.\nᏥᎾᏰᏍᎦᏰᏃ ᎾᏍᎩ ᏫᏥᎷᏨᎭ ᎾᏍᎩ ᏂᏣᏍᏛᎾᏉ ᎨᏒ ᏄᏍᏛ ᎠᏆᏚᎵᏍᎬ ᎢᏨᏩᏛᏗᏱ, ᎠᎴ ᎠᏋᏒ ᎨᏒ ᏍᎩᎪᏩᏛᏗᏱ ᎾᏍᎩᏯ ᏂᏣᏚᎵᏍᎬᎾ ᎨᏒᎢ; ᎠᎴ ᎠᎩᏩᏛᏗᏱ ᏗᏘᏲᏍᏗ ᎨᏒᎢ, ᎠᏛᏰᎨᏗ ᎨᏒᎢ, ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎤᏲ ᏗᏓᏃᎮᎵᏓᏍᏗ ᎨᏒᎢ, ᎠᏙᏅᏗ ᎨᏒᎢ, ᎤᏟ ᎠᏤᎸᏗ ᎨᏒᎢ, ᏧᏓᎴᏅᏛ ᎢᎬᏁᏗ ᎨᏒᎢ;\nᎤᏂᏣᏘ ᎤᏂᏁᏨᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏍᎩᎾ ᏣᏯᎠ; ᎦᎪ ᎤᏚᎵ ᏣᎯᏍᏗᏱ?\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏬᏁᏔᏅ, ᏅᏩᏍᏗᏗᏎᏍᏗᏉ ᎦᏥᏯᎵᎡᎵᎬ ᎠᏇᎵᏒ, ᎠᎴ ᎠᎾᎵᎮᎵᎬ ᎤᎧᎵᏨᎯ ᎨᏎᏍᏗ ᎠᏇᎵᏒ.\nᏙᎤᏍᏗ ᎡᎶ ᏱᎩ ᎢᎦᏣᏅᏓᏕᎲ ᏱᏗᏓᎦᏘᎴᎩ ᎤᎾᎵᏍᏗ.\nᎠᏎᏃ ᎩᎶ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏚᏓᎴᏍᏗᏍᎬᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎬᏂᎨᏒᎢᏳ; ᎾᏍᎩᏰᏃ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎪᎯᏳᏗ ᎨᏒ ᎤᏛᏂᏗᏍᏕᏍᏗ.\nᎠᏎᏍᎩᏂᏃᏅ, ᎤᎬᏫᏳᎯᏱ ᏫᏓᎦᏔᎲᏍᏔᏅᎭ, ᎾᏍᎩ Ꮎ ᎠᎵᎬᏚᎶ ᎢᏴᏛ ᎢᎬᏁᏗ ᏅᏓᎦᎵᏍᏔᏂ.\nᎯᎠ ᎠᏗᎾ ᎨᎵ ᏅᏛᎯᏪᏏ, ᏚᏩᏂᎦᎸ ᏚᏅᏂᎦᎸᎲᎩ, ᎾᏍᎩ ᎠᏴ ᎥᏋᏱᏢᏗᏱ ᎾᎿᏂ.\nᎤᏂᎶᏐᏅᏃ ᏈᏥᏱ ᎠᎴ ᎨᎴᏏᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏂᏅᏍᏓᏕᎸ ᎤᎾᎵᏥᏙᏗᏱ ᎧᏃᎮᏛ ᎡᏏᏱ,\nᏥᎷᏏᎵᎻᏂ ᎠᏫ ᎤᏂᏴᏍᏗᏱ ᎾᎥ ᎠᏓᏬᏍᏗᏱ ᎪᏢᎭ ᎾᏍᎩ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏡᏕᏍᏗ ᏕᎤᏙᎥ; ᎾᎿᏂ ᎯᏍᎩ ᏓᏲᏓᏝᎭ.\nᎠᎦᏔᎮᏰᏃ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏅᏳᏤᎲᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏕᎬᏩᏲᏒᎢ.\nᎾᎥᏂᎨ ᏭᎷᏣ, ᏅᏛᎦᏁ ᎡᏆ ᎠᏣᏗ ᏧᏪᎷᏁ.\nᎤᎵᏍᏗ ᎢᏳᏍᏗ ᎤᎵᏍᏛᏧᏁᎢ ᎰᎻ ᏃᎴ ᎤᎦᎾᏍᏓ ᎦᏚ ᎠᏔᎸᎩᏗ ᎤᎨᎢ.\nᎾᎿᏰᏃ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᏄᏍᏛ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎪᎯᏳᏗ ᎨᏒ ᏩᏍᏆᏗᏍᏗᏍᎩ; ᎾᏍᎩᏯ ᏂᎬᏅᎪᏪᎸᎢ, ᏚᏳᎪᏛᏍᎩᏂ ᎢᏯᏛᏁᎯ ᎪᎯᏳᏗ ᎨᏒ ᎤᏛᏂᏗᏍᏕᏍᏗ.\nᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᏍᎦᏯ, ᎥᏝ ᎪᎱᏍᏗ ᏱᏰᎭ ᎠᏢᏗ, ᎭᏫᏂᏳᏃ ᎠᏔᎴᏒᎢ, ᎭᏢᏃ ᏣᏁᎩᏒ ᎾᏍᎩ ᎬᏂᏛ ᎠᎹ?\nᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏃᎵᏤ ᏣᏂ ᏗᏓᏬᏍᎩ ᎧᏁᎢᏍᏗᏍᎬᎢ.\nᎡᎵᏍᏗ ᏳᏩᎩᏌᎾ, ᏂᎦᏓ ᎠᎳᏍᎬᏓ ᏧᏍᎦᎢᎲ, ᏕᏥᏩᏛᎲ ᏓᎬᎩᎵ, ᎢᎾᎨ ᏓᎬᎩᏂᏱ ᏩᏯ ᎬᎩᏲᏍᏙᏗ.\nᎿᏉ ᏧᏗᏱ ᎠᏂᏂ ᎠᎾᎵᏒᎭ ᏙᏦᏓᎸ ᏩᏂᎶᏒᎭ.\nᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ, ᏕᏫ ᎠᏓᏅᏙ ᎤᏪᏲᎲᏍᎬᎢ, ᏣᎬᏫᏳᎯ, ᏥᎪᏎᎭ? ᎯᎠ ᏥᏂᎦᏪᎭ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᎦᏔᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᎬᏂᎨᏒ ᏂᏕᏨᏁᎸᎭ ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏤᎲᎢ, ᎠᎴ ᎣᎦᏢᏆᏒ ᏂᎯ ᎢᏨᏁᎢᏍᏗᏍᎬᎢ ᎠᏎᏉ ᏂᎨᏒᎾ ᎨᏒᎢ.\n“ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗᏗ,” ᎪᏱᏁᎢ ᎡᏝᏪᎯ ᏄᏪᏎᎴ ᎠᎳᏂ.\n“ᏙᏚᏙᎡ ᎠᎩᏥ ᎠᏰᎵ ᎠᎴᏅᏗᏍᎩ?” ᎤᏛᏛᏁ ᏔᎵᏁ ᎧᏅᏂᏍᎩ.\nᎠᎴ ᎠᏍᎩᎾ ᎯᎠ ᏁᏪᏎᎴᎢ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᏱᏕᎬᏲᎯᏏ, ᎠᎴ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎠᏴᏰᏃ ᏛᎩᏲᎯᏎᎸ, ᎠᎴ ᎩᎶ ᏥᎥᏏ ᎨᎳ ᏥᏁᎰᎢ.\nᎤᎾᏨᏓᎵ ᎠᏎ ᎢᎪᎯᏓ ᎠᎬᏱ ᏗᏫᏍᏗ ᎨᏐᎢ.\nᎢᏳᏰᏃ ᎾᏍᏉ ᎤᏟ ᎢᎦᎢ ᏯᏆᏢᏈᏍᏔᏅ ᏄᏍᏛ ᎣᎦᏒᎦᎸᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏦᎩᏁᎸ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎥᏝᏃ ᎡᎳᏗ ᎢᏰᏨᏁᏙᏗ ᎨᏒᎢ, ᎥᏝ ᏱᎦᎦᏕᎣᏍᎦ.\n“ᎮᏂᎵ ᎤᎵᏲᏗ,” ᎤᏛᏁᎢ ᎡᏝᏪᎯ.\nᎾᎯᏳᏉᏃ ᎢᎦ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎤᏂᎷᏤ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎯᏄᎪᎢ, ᎠᎴ ᎭᏓᏅᎾ ᎠᏂ; ᎡᎶᏛ ᎾᏏ ᎤᏚ-Ꮅ ᏣᎯᏍᏗᏱ.\nᎨᏍᏗ ᎤᏨᏉᏗ ᏱᎩ ᏃᎴ ᎦᏙ ᎾᎥᏂ ᏄᏛᏃ.” \nᏔᎵᎭᏉ ᎢᏳᏒᎯ ᏂᎦᎥᎢ ᏁᎳᎩ ᎤᏪᎵᏍᏗ ᎨᏎᏍᏗ ᏃᎴ ᎤᎴᏅᏗ ᎨᏎᏍᏗ ᎤᏬᏒᏗ ᏧᏪᏥ ᏧᎶᏙᏗ.\nᎯᎠ ᎢᏳᏪᏅᏍᏗ ᎤᏤᎵ ᎨᏎᎢ ᎤᏓᏔᎶᏒᎢ.\nᎯᎠᏃ ᏄᏪᏒᎩ; ᎪᎢᏳᎲᏍᎦ, ᏣᎬᏫᏳᎯ; ᎤᏓᏙᎵᏍᏓᏁᎸᎩᏃ.\nᎾᏍᎩ ᏗᎬᏩᏁᏲᏗ ᏱᎩ ᎠᏂᏫᎾᎨᏌᏂ ᎠᏂᎨᏴ ᎤᎾᎵᏏᎾᎯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᏧᏂᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏗᎬᏩᏂᏰᎯ, ᏧᏂᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏁᏥ,\nᎾᏍᎩ ᎣᏏ ᎬᏰᎸᏗ ᎨᏥᏓᏍᏗ ᏱᎩ ᎠᏂᎦᏔᎲ ᎾᏍᎩ ᎠᏁᎳ ᏂᎨᏒᎾ, ᎠᎴ ᎪᎱᏍᏗ ᏂᏥᏂᎬᏎᎲᎾ ᏱᎩ.\nᎧᏁᎬᏃ ᎠᏆᏛᎦᏅᎩ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᏔᎴᎲᎦ ᏈᏓ, ᎯᎷᎦ ᎠᎴ ᎭᎵᏍᏓᏴᎲᎦ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᏕᎦᏪᏎᎮᎢ, ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᎵᏂᎩᏛ ᎬᏩᏅᏫᏍᏗᏍᎨᎢ, ᎠᎴ ᎬᏩᏂᎳᏕᎮ ᎤᎪᏗᏗ ᏧᏓᎴᏅᏛ ᎤᏃᎮᏍᏗᏱ;\nᎤᏛᏛᏁᏃ ᎤᏙᏓ, ᎢᏔᎪ ᏂᎪᎯᎩ ᎾᏍᎩ ᎯᎠ ᎢᎬᏩᎵᏍᏓᏁᎸᎯ? ᎤᏬᏎᎴᎢ. ᎠᏲᎵᏉ ᎨᏒᎢ, ᎤᏛᏁᎢ;\nᎦᏲᏟᏉ ᎠᏓᏂᎴᎨ ᎨᏒ ᎠᏌᎻᏓ, ᏂᏄᎾᏕᏘᏴᎲ ᎠᏂᏧᏣ, ᎠᏎᏃ ᎠᏁᎸᏗᏍᎬ ᎤᏤᎸᏗ ᎤᏬᎯᏳᎲ ᎢᏳᏍᏗ ᎾᏛᏁᎲ.\nᎠᎴ ᎤᏂᏃᎮᎴ ᏄᎵᏍᏔᏂᏙᎸ ᎠᎾᎢᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏃᎵᏍᏔᏅ ᎦᏚ ᎠᎬᎭᎷᏯᏍᎬᎢ.\nᎥᏝ ᎠᏂ ᏱᎦᎾ, ᏚᎴᏅᏰᏃ; ᎢᏣᏅᏓᏓ ᏂᏥᏪᏎᎸᎢ ᎠᏏᏉ ᎨᎵᎵ ᏤᏙᎲᎩ,\nᎨᏍᏗ ᎯᎸ ᎤᏲᏨ ᏱᎨᏎᎢ ᎤᏩᏌ ᎤᏬᏒᏅ.\nᎤᏂᏣᏖᏰᏃ ᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᎬᏩᏡᏗᏍᎨᎢ, ᎠᏎᏃ ᎠᏂᏃᎮᏍᎬ ᎥᏝ ᎤᏠᏱ ᏱᎨᏎᎢ.\nᎦᏨ ᎢᏤᎦ?\n“ᎨᏍᏗ ᏥᎠᎴᏂ ᏱᎩ.”\nᎠᏎᏃ ᎠᏂᏧᏏ ᎥᏝ ᏯᏃᎯᏳᎲᏍᎨ ᏗᎨᏫ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏒ ᎠᎴ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎢ, ᎬᏂ ᏫᏚᏂᏯᏅᎲ ᏧᎦᏴᎵᎨ ᎾᏍᎩ Ꮎ ᎬᏩᎪᏩᏛᏗ ᎢᏳᎵᏍᏓᏁᎸᎯ.\nᏧᏁᎵᏁ ᎢᎦ ᎥᎩᎱᏍᏕᏎᎸᎩ, ᎢᏏᎵ ᎤᎾᏓᏤᎵᏛ ᎨᏒ ᏅᏛᏆᏓᎴᏅᎯ, ᏇᏂ ᎠᏂᎳᏍᏓᎸ ᎨᎳ, ᏥᏈᎷ ᎠᏂᏈᎷ ᏅᏛᏆᏓᎴᏅᎯ; ᏗᎧᎿᏩᏛᏍᏗᏃ ᏕᏥᎧᎿᏩᏗᏒ ᏥᏆᎵᏏ;\nᎾᎿᏃ ᎣᏓᎷᎶᏗ ᎤᏂᏣᏘ ᏑᎾᏓᏡᎩ ᏏᏆ ᎠᎾᎵᏍᏓᏴᏂᏙᎮᎢ.\nᎤᏄᎪᏤᏃ ᏈᏓ, ᎠᎴ ᎡᎯᏍᏗ ᏚᏠᏱᎴᎢ\n“ᏙᎤᏍᏗ ᎦᏛᏁᎵᏍᎩ ᎮᎵᎠ?” ᎤᏛᏁ ᏌᎳᏓ ᎤᏲ ᎤᏰᎸᎯ.\nᎬᏂᏳᏉᏃ ᎢᎦᏛ ᏗᏃᏪᎵᏍᎩ ᎯᎠ ᏄᏂᏪᏎ ᏚᎾᏓᏅᏛᎢ; ᎯᎠ ᎠᏍᎦᏯ ᎦᎸᎳᏗ ᎡᎯ ᎠᏐᏢᎢᏍᏗᎭ.\nᏔᎵᏁᏃ ᎤᏓᏱᎴᎢ, ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏔᏁᎢ; Ꮭ ᏱᏥᎦᏔᎭ Ꮎ ᎠᏍᎦᏯ, ᎤᏛᏁᎢ.\nᏅᏩᏙᎯᏯᏛ ᏕᏥᎧᎿᏩᏗᏎᏍᏗ ᎾᏂᎥᏉ ᎪᎱᏍᏗ ᏕᏣᏓᏛᏗᏍᎬᎢ, ᎠᎴ ᎾᏍᎦᏅᎾ ᎨᏒᎢ, ᎧᏂᎩᏛ ᏱᎩ ᎾᏍᎩ, ᎥᏝ ᎩᎶ ᏰᎵ ᎤᎬᏫᏳᎯ ᎬᏩᎪᏩᏛᏗ ᏱᎩ;\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎩᏯᏅᎲ ᎦᏓᎭ ᎢᎦᎵᏍᏙᏗᏱ ᎢᎦᏓᏅᎦᎸᏛᏍᎩᏂ ᎢᎦᎵᏍᏙᏗᏱ.\nᏲᎾ ᎤᏤᏍᏙ ᎠᏓᎴᏍᎩᏱᏍᎩ ᏗᏥᎶᏍᏔᏅ ᏗᏁᎶᏙᏗ ᎦᏁᎮ ᏃᎴ ᎤᎦᎾᏍᏓ ᏎᎷ ᎠᎾᏔᏍᎩᏍᎩ ᏓᎩᏍᎨ.\nᏝᏍᎪ ᎾᏍᏉ ᏂᎯ ᎦᎯᏯᏙᎵᏍᏗ ᏱᎨᏎ ᎢᏧᎳᎭ ᎡᏍᏗᏅᏏᏓᏍᏗ, ᎾᏍᎩᏯ ᎬᏯᏙᎵᏨᎢ?\nᎨᏍᏗ ᏳᏂᎬᎦ ᎤᏍᏓᎦᏴᎯᏓ ᎪᏪᎵ, ᏱᏥᏃᎯᏏ ᏣᎷᏨ.\nᎿᏉ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ, ᎭᏢ ᏣᏙᏓ? ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏴ ᏱᏍᎩᎦᏔᎭ, ᎠᎴ ᎥᏝ ᏰᏥᎦᏔᎭ ᎡᏙᏓ. ᎢᏳᏃ ᎠᏴ ᏱᏍᎩᎦᏔᎮᎢ, ᎾᏍᏉ ᏰᏥᎦᏔᎮ ᎡᏙᏓ.\nᎠᎩᏃᎮᎵᏍᏗᏱ ᎠᏕᏘᏱᏍᎬ ᏱᎰᏩ ᏧᏓᏂᎸᎢᏍᏗ ᎨᏒᎢ.\nᎠᏴᏰᏃ ᎾᏍᎩ ᎠᏰᎸ ᏕᎦᏚᏓᏔ, ᎾᏍᎩ ᎤᏇᏓᎸ ᎠᎴ ᎾᏍᎩ ᏧᎪᎳ.\nᎡᏆ ᎨᏎ ᏩᎦ ᏃᎴ ᏐᏈᎵ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏃᎴ ᎤᏪᏘ ᎨᏎ.\nᎤᏢᏗ ᏧᏚᎵᏍᎪ ᎠᎴ ᎤᏗᏔᏍᏗ.\n“ᎡᏙᏓ, ᎠᏯ ᏍᏉ ᎠᏆᏚᎵ ᏏᏆ?” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎠᎴ ᎾᎯᏳ ᎢᎦ ᏂᏓᏍᏆᎳᏅᎾ ᏱᎩ, ᎥᏝ ᎤᏇᏓᎵ ᎦᏰᏥᏍᏕᎸᏗ ᏱᎦᎩ; ᎠᏎᏃ ᎨᎦᏑᏰᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᎯᏳ ᎢᎦ ᏗᏍᏆᎶᏗ ᎨᏎᏍᏗ\nᎩᎶ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎦᏲᎵ ᎨᏒᎢ, ᎾᏍᏉ ᏚᏳᎪᏛ ᎾᏛᏁᎰ ᎤᎪᏗᏗ ᎨᏒᎢ; ᏂᏚᏳᎪᏛᎾᏃ ᎢᏯᏛᏁᎯ ᎤᏍᏗ ᎨᏒ, ᎾᏍᏉ ᏂᏚᏳᎪᏛᎾ ᎾᏛᏁᎰ ᎤᎪᏗᏗ ᎨᏒᎢ.\nᎿᏉᏃ ᎡᎪᎢ, ᎠᎴ ᏫᏓᏯᏂᏍᎪ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᏅᏩᎾᏓᎴ ᎤᏟ ᎢᏳᏂᏁᎫᏥᏛ ᎡᏍᎦᏉ ᎤᏩᏒ; ᎾᏍᎩᏃ ᎠᏂᏴᎯᎰ ᎠᎴ ᎾᎿ ᎠᎾᏁᎳᏗᏍᎪᎢ; ᎣᏂᏱᏃ ᏄᏍᏛ Ꮎ ᎠᏍᎦᏯ ᎤᏟ ᎤᏲᎢᏳ ᎨᏐᎢ ᎡᏍᎦᏉ ᎢᎬᏱᏱ.\n“ᏂᎦᏓ ᎨᏍᏗ ᎣᏍᏓ ᎣᏥᏰᎸᎯ ᏱᎩ.”\nᏥᏳᎪᏗ ᎨᏒ, ᎨᏍᏗ ᏱᎪᎵᎦ ᎢᏳᏍᏗ ᏄᎵᏍᎨᏗᏴ ᎯᎠ ᎦᏙ ᏃᎴ ᎠᏁᎯ, ᎤᏂᏁᎦ ᎠᎴ ᎠᏂᎩᎦᎨ.\nᏞᏍᏗ ᏣᏍᏆᏂᎪᏒᎩ ᎠᏎ ᏔᎵᏁ ᎢᏣᏕᏗ, ᏥᎬᏲᏏ.\nᎤᎸᏉᏗᏰᏃ, ᎾᏍᎩᏯ ᏥᏗᎸᏉᏗ. ᏓᏥᏃᎯᏎᎵ ᏄᏍᏛ ᏄᏩᎾᏕᎬᎢ ᏏᏆ ᏃᎴ ᏂᎦᏓ.\nᏗᏥᏲᎵ, ᏕᏤᏯᏙᎮᏍᏗ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ. ᎡᎺᏅ.\nᎢᏳᏃ ᏱᏗᎦᏔᎭ ᎢᎦᏛᏁᎲᎢ, ᏂᎦᎥ ᎪᎱᏍᏗ ᎡᏗᏔᏲᏏ ᎢᏗᎦᏔᎰ ᎢᎩᏁᎲ ᎢᏳᏍᏗ ᎡᏗᏔᏲᏎᎸᎢ.\nGranville Towers ᎢᏗᏣ ᎣᎨᏅᏒᎢ. ᏬᎩᎷᏨ ᎤᎾᎵᏱ ᏍᏚᏓ ᎾᎥ ᎦᏙᎬᎢ. \nᎣᎦᏤᎵ ᎦᏙ ᎨᏍᏗ ᎠᏰᎵ ᏱᎨᏎ, ᎠᎹᏰᎵᏰᏃ.\n“ᎤᎸᏓᎸᎥᎦ,” ᎤᏛᏁ ᎰᎻ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᎿᏉ ᎡᏣᎾᏝᎢ ᏱᎩ, ᎤᏪᏥᏉᏍᎩᏂ; ᎠᎴ ᎢᏳ ᎤᏪᏥ ᏱᎩ, ᎿᏉ ᏧᎬᏩᎶᏗ ᎤᏁᎳᏅᎯ ᎤᏓᏁᏗ ᎨᏒ ᏣᏘᏰᎯ, ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏅᎯ.\nᏗᏣᏓᏲᏁᎯ ᎢᏥᏍᎦᏯ ᎠᎴ ᎢᏥᎨᏴ, ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎡᎶᎯ ᎤᎾᎵᎢ ᎨᏒᎢ ᎤᏁᎳᏅᎯ ᎠᏍᎦᎩ ᎨᏒᎢ? ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏳᏃ ᎩᎶ ᎡᎶᎯ ᎤᎾᎵᎢ ᎢᏳᎵᏍᏙᏗᏱ ᏯᏓᏅᏖᎭ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏍᎦᎩ ᎨᏐᎢ.\nᏂᎦᏓ ᎢᏥᏳᏩᏁᎦ ᎯᏌᎵᏥᏆᏍᎪ ᎤᏩᏙᎯᏴᏓ.\nᎯᎠᏃ ᎡᏘᏴ ᎫᏩᎵᏬᏨ ᏧᎬ.\nᎤᏃᏚ ᏅᎩ ᏗᏂᏅᏌᏗ ᏂᏚᏩᏁᎸ ᏕᎧᏃᎮᏍᎬ, ᎠᎦᏴᎵ ᎣᎯᏍᏙᏗ ᎡᎶ ᎤᎾᏕᏅ, ᏔᎵᏁ ᎤᎷᎯᏍᏗ ᏱᎨᏒᎾ.\nᏝᏍᎪ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ ᎠᏉᏢᏅᎯ ᏱᎩ ᎯᎠ ᏂᎦᏛ ᏥᏄᏍᏗᏓᎾ?\nᎤᎧᏔ ᏗᏣᏲᎦ! \nᎰᏩᏃ ᎿᏉ ᎤᏲᎱᏒ ᏕᎤᎴᏅ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᎾᏅᏓᏛᎩ ᎾᏍᎩ ᏂᏚᏪᏎᎸᎢ; ᎠᎴ ᎤᏃᎯᏳᏅᎩ ᎪᏪᎵ ᎠᎴ ᎾᏍᎩ ᏥᏌ ᎤᏁᏨᎢ.\nᎿᏉ ᏓᏣᎴᏅᎯ ᎯᎠ ᏅᏓᏥᏪᏏ, ᎣᎦᎵᏍᏓᏴᏅᎩ ᎠᎴ ᎣᎦᏗᏔᎲᎩ ᎯᏚᏔᎲᎢ, ᎠᎴ ᏕᏣᏕᏲᏅᎩ ᎣᎩᏚᎲ ᎡᏓᏍᏗᏱ Ꮥ-ᎦᎳᏅᏛᎢ.\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᎪᎢ ᎠᏁᎸᎩ ᎤᎾᎵᏙᎵᏍᏔᏂᎸᎯ ᏗᎵᏍᏓᏴᏗᏱ.\nᎾᏍᎩ ᏇᏗᏂᏃ ᎦᏚᎲ ᏥᎷᏏᎵᎻ ᎾᎥ ᎨᏒᎩ, ᏔᎵᎭᏉ ᎢᏳᏟᎶᏛ.\n“ᎣᏏᏉᏗ ᏄᏍᏗ,” ᎤᏛᏁ ᎰᎻ ᎬᏣᏗ, ᎡᎳᏗ ᎭᏂᏗᏍᎨ ᎧᏁᏌᎢ ᏫᎵᎻ ᎦᏙᎬ ᎠᎬᏱᏣ.\nᎬᏂᏤᎭ ᏍᎩᏩᎯᏎᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᏥᎸᏱ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᏤᏅᎢᏍᏗᏱ; ᎠᎴ ᎤᏁᎬ ᎠᏄᏬ ᏣᏄᏬᏍᏗ, ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ; ᎠᎴ ᏘᎦᏙᎵ ᏗᏣᎶᏁᏙᏗᏱ ᏗᎦᏔ-ᏗᎦᎶᏁᏗ, ᎾᏍᎩ ᎨᏣᎪᏩᏛᏗ ᎢᏳ ᎵᏍᏙᏗᏱ.\nᎠᏂᏥᎸᏍᎩ?\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏏᎩ ᎣᏍᏛ ᏥᏚᏁᏤᎴ ᏤᎦᏈ ᎠᎴ ᎢᏐ ᎪᎱᏍᏗ ᎠᏏ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎤᎬᏩᎵ.\nᏂᎦᏛᏍᎪ ᎨᏥᏅᏏᏛ? ᏂᎦᏛᏍᎪ ᎠᎾᏙᎴᎰᏍᎩ? ᏂᎦᏛᏍᎪ ᏗᎾᏕᏲᎲᏍᎩ? ᏂᎦᏛᏍᎪ ᎤᏍᏆᏂᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ?\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏙᎩᎢᎭ ᏂᎪᎯᎸᎢ; ᎤᏂᏃᏕᎾᏉ ᏗᎯᏍᏗ ᎾᏍᎩᏯ ᎣᎩᏰᎸᎠ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎣᎬᎾᏖᏉᎶᎯ ᏍᏇᎵᏎᎮᏍᏗ, ᏕᎯᏯᏓᏂᎸᏨᎭ ᎠᏴ ᏥᏕᏍᏆᏓᏂᎸᎪ ᎾᏍᎩᏯᎢ.\nᎠᏂᎦᎵᏍᏓᏓᏰᏃ ᎠᏆᏓᏅᏙ, ᎠᎴ ᏂᎯ ᏗᏣᏓᏅᏙ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏥᎸᏉᏕᏍᏗᏉ ᎾᏍᎩ ᎢᏳᎾᏍᏗ.\nᎠᎴᏬ, ᏥᎪ ᎣᏣᎵᏍᏕᎵ ᎢᏤᎵᎭ ᎢᏥᎦᏔᎲᎢ? ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎣᏥᏁᎦ ᎦᎶᏁᏛ ᏧᏪᏲᏅᎯ ᎾᏍᎩᏯᎢ; ᎠᏎᏃ ᎢᏨᎨᏳᎢ, ᏂᎦᎥ ᏂᎯ ᎢᏣᎵᏂᎯᏍᏙᏗ ᎤᎬᏩᎵ [ᎣᏥᏁᎦ.]\nᎾᏍᎩ ᏓᏏᎾᏌᏅᏤᎮ ᎪᎱᏍᏗ ᏗᎬᎿ, ᎠᎴ ᎤᏲ ᏂᏚᏩᏁᎴ ᏗᎩᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏗᎨᎦᏓᎢᏅᏗᏱ ᏧᎾᏍᏗ ᏧᏁᏥ, ᏗᎬᏩᎾᏛᎯᏍᏗ ᏂᎨᏒᎾ ᎢᏳ ᎵᏍᏙᏗᏱ.\nᎠᎴ ᎤᎾᏛᏓᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎠᏎᏉ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎠᎴ ᏫᎾᏍᏛᎾ ᎧᏃᎮᏗ ᎨᏒ ᎤᎾᏓᏁᏟᏴᏒᏒᎢ, ᎾᏍᎩ ᎦᏬᏂᎯᏍᏗᏉ ᏥᏩᎵᏱᎶᎯᎭ ᎥᏲᏃ ᎤᏁᎳᏅᎯ ᏗᏁᎳᏙᏗ ᎨᏒ ᎤᏛᎯᏍᏗᏱ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, [ᎾᏍᎩ ᎿᏛᏁᎸᎭ.]\nᎪᎯᎢᏴ, ᏩᎩᎷᏨ, Ꮒ ᎠᏇᏥ ᎠᏧᏣ.\nᎠᏆᎴᏅ ᏕᎦᏎᎯᎲ, ᎨᏍᏗ ᏯᏆᎴᏫᏍᏔᎾ-ᏄᏓᎴ ᎠᏆᏓᏅᏖᏗ ᏱᎨᏒᎾ.”\nᎩᎶᏃ ᎢᎳᏯ ᎦᎾᏄᎪᎩ ᎠᎾᏗᏍᎬᎢ; ᎢᎦᏛᏃ ᎩᎶ ᎢᏳᏍᏗ ᎢᎸᎯᏳ ᏣᏁᎮ ᎠᎾᏙᎴᎰᏍᎩ ᏚᎴᎯᏌᏅ ᎠᎾᏗᏍᎬᎢ.\nᏝᏍᎪ ᎾᏍᎩ Ꮎ ᏂᎦᏛ ᏗᏓᏅᏙ ᎨᏥᏅᏏᏛ ᏧᏂᏍᏕᎸᎯᏓᏍᏗᏱ ᎾᏍᎩ Ꮎ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏥᎩ?\nᎤᎶᎩᎸᏃ ᎤᏄᏢᏔᏁᎢ; ᎧᏁᎬᏃ ᎤᎶᎩᎸ ᏧᎾᏄᎪᏤᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏥᎨᏳᎢ ᎠᏇᏥ; ᎾᏍᎩ ᎡᏣᏛᏓᏍᏓᏏ.\nᎿᏉᏃ ᏥᏌ ᎤᎴᏅᎲᎩ ᏚᏃᏁᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏎ ᎤᏪᏅᏍᏗᏱ ᎨᏒ ᏥᎷᏏᎵᎻ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏧᎩᎵᏲᏤᏗᏱ ᏗᏂᎳᏫᎩ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ; ᎠᎴ ᎠᏥᎢᏍᏗᏱ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏧᎴᏗᏱ.\nᏍᏓᏯ ᎦᏟᎲ ᎠᏥᏰᎢᏍᏔᏁ ᏥᏍᏕᏥ, ᎤᏯᏃᏒ ᏃᎴ ᎤᏂᎦᎸ ᎢᏳᏍᏗ ᎨᏎ ᏗᎧᏃᏗ.\nᏫᏥᎢᎦ ᎨᏒ ᎤᎾᏓᏕᏯᏙᏗ ᏛᎦ.\nᎣᏏᏳ ᎢᏣᏙᎩᏯᏍᎬᎩ; ᎦᎪ ᎢᏥᏲᏍᏙᏓᏁᎴ, ᎾᏍᎩ ᏗᎨᏥᎧᎿᏩᏛᏍᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ ᎤᏙᎯᏳᎯ ᎨᏒᎢ?\n”ᏤᏍᏗ ᏱᏣᎦᏎᏍᏔᏁᏍᏗ ᏍᎩᎾᎾᏂ---ᏂᏥᏪᏍᎬ ᎾᏛᏁᎸ! \nᎤᎵᏍᏔᏴᏗ ᎦᎵᏙᏗ ᏭᎷᏤᎢ, ᎤᏗᏔᎮ ᎦᏁᎲ, ᎤᏲᏏᏍᎩ ᎤᏗᏔᎮ ᎤᏅᏗ ᏃᎴ ᎤᎩᏍᏙᎡ ᏑᎾᎴ ᎠᎩᏍᏗ ᎤᏂᏑᎸᏓ.\nᏂᎦᏓ ᏧᏤᎵ ᏌᎳᏓ ᏧᏂᏍᏗ ᎠᎾᎵᏛᏗᏍᎨᎢ ᎦᏣᏄᎳ.\nᎠᎴ ᎾᏂᎥ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏓᏂᏙᎨ ᏚᏂᎸᏫᏍᏓᏁᎮ ᏂᏓᏙᏓᏈᏒᎢ, ᎠᎴ ᏂᎪᎯᎸ ᎤᏠᏱᏉ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ ᏧᎾᎵᏍᎪᎸᏗᏍᎨᎢ, ᎾᏍᎩ ᎠᏍᎦᏂ ᎨᏒ ᎢᎸᎯᏳ ᏰᎵ ᎬᏩᎲᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏣᏁᎳ ᏐᏁᎳ ᏩᏍᏗ, ᏙᏱᏨ ᎠᎦᎵᏍᎬ ᎤᏢᏅᏍᏗ ᎤᏪᎵᏎ.\nᎯᎠᏃ ᎾᏆᎵᏍᏓᏁᎸ ᏥᎷᏏᎵᎻ ᎢᎠᎩᎷᏨ, ᎾᏍᎩ ᎦᏓᏙᎵᏍᏗᏍᎬ ᎤᏛᏅ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏣᎦᎵᎰ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏓᏁᎸᎩ;\nᏚᎴᏫᏍᏔᏁᎴ.\nᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᎣᏂᎦᏔᎲ ᎣᏥᏁᎪᎢ, ᎠᎴ ᎣᎩᎪᎲᎯ ᎣᏥᏃᎮᏍᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏗᏣᏓᏂᎸᎪ ᎣᏥᏃᎮᏍᎬᎢ.\nᏅᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᏍᎩ ᎢᏳᎾᎩᎳᎾᎳ ᏩᎦ ᏓᎩᏩᏒ, ᎠᎴ ᏕᏚᏁᎶᏔᏂ; ᎬᏔᏲᏎ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ.\nᎾᏍᎩᏃ ᏂᎦᏛᏁᎲᎢ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏧᏏ ᎡᏏᏱ ᎠᏁᎯ ᎬᎩᏩᏛᎲᎩ ᎠᏆᏓᏅᎦᎵᏌᏛ ᎨᏒᎩ ᏥᏯᎥᎩ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ, ᎥᏝ ᏱᎨᎳᏗᏙᎮ ᎤᏂᏣᏘ ᎠᏁᏙᎲᎢ, ᎠᎴ ᎤᎾᏓᏑᏰᏛ ᎨᏒᎢ;\nᏄᏛᏅᏓᎩᏎ ᎠᏯᏖᎾ.\nᏦᎾᏰᏃ ᏦᎢ ᎢᎦ ᎠᎴ ᏦᎢ ᏒᏃᏱ ᎠᏣᏗ ᎡᏆ ᎤᏍᏉᎵᏱ ᏣᏯᏒᎢ, ᎾᏍᏉᏍᎩᏂ ᏴᏫ ᎤᏪᏥ ᏦᎢ ᎢᎦ ᎠᎴ ᏦᎢ ᏒᏃᏱ ᎦᏙᎯ ᎭᏫᏂ ᎠᏯᎡᏍᏗ.\nᏥᏧᏣ ᏥᎨᏒ ᎠᏋᏌ ᎭᏂ ᎡᎶ, ᎣᎯᏍᏙᏗ ᏥᎸᏍᎬ ᏅᏙ ᏥᏗᎧᎸᎪᎢ, ᏧᎨᎯᏙᏃ ᎤᏍᎦᏎᏗ ᎤᏓᏓᏍᎩᏌᏅ ᎤᎵᏏᎬ.\nᎤᎾᏓᏓᏍᎬ ᎤᎾᎵᏗᎩᏛ ᏍᏔᏯ ᎠᏁᎲ ᏃᎴ ᎤᏂᏂᎩᏛ, ᎠᎪᎾ ᏚᏂᏲᏏᏍᎬ ᏃᎴ ᏳᏂᏚᎬᎾ, ᎠᏎᏃ ᎤᎾᎵᎪᎲ ᎤᏰᎸᏛᎢ.\nᎤᎬᏫᏳᎯᏃ ᎤᎪᎲ ᎤᏪᏙᎵᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏞᏍᏗ ᏗᏣᏠᏱᎸᎩ.\nᏑᎹᏂᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ; ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎢᎬᏱᏱ ᎠᎴ ᎤᎵᏍᏆᎸᏗ, ᎾᏍᎩ Ꮎ ᎤᏲᎱᏒᎯ ᏥᎨᏒ ᎠᎴ ᎾᏍᎩ ᏤᎭ.\nᎣᏍᏓ ᎠᎩᏰᎸᎰ ᎦᎸᎳᏗ ᎨᎥᎢ, ᏃᎴ ᏂᏪᏍᎬ ᎠᎩᎪᎵᏰᎠ.”\nᏞᏍᏗ ᎩᎶ ᎤᏩᏒ ᏥᎠᏓᎵᏓᏍᏔᏂ. ᎢᏳᏃ ᎩᎶ ᏂᎯ ᎢᏤᎲᎢ ᎠᎦᏔᎿᎢ ᏱᏅᏩᏍᏗ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎫ ᏫᏂᎦᎵᏍᏓ, ᎾᏍᎩ ᎠᎦᏔᎿᎢ ᎢᏳᎵᏍᏙᏗᏱ.\nᎤᏙᎯᏳᏗᏱ ᎠᏙᎴᎰᏍᎩ ᎢᏌᏯ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ;\nᎯᎠ ᎾᏍᎩ ᎪᏪᎸ ᎠᎪᎵᏰᏍᎨᎢ; ᎠᎦᏘᏃᎸᎩ ᎠᏫ ᎤᏃᏕᎾ ᎾᏍᎩᏯ ᏗᎯᏍᏗᏱ, ᎠᎴ ᎾᏍᎩᏯ ᎠᎩᎾ ᎠᏫ ᎡᎳᏪ ᏥᎨᏐ ᎬᏩᏍᏰᏍᎩ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩᏯ ᎥᏝ ᏳᏍᏚᎢᏎ ᎠᎰᎵ.\nᏐᏉ ᎢᏳᏩᎫᏗ ᏣᎵ ᏃᎴ ᏍᏗᏫ ᎠᎵᏍᏓᏴᏗ ᎤᏂᏓᎾᏂᎩᏒᏎᎢ.\nᎥᏝ ᏃᎩᎲᎾ ᎨᏒ [ᏅᏩᏓᎴ ᎢᏲᎦᏛᏁᏗᏱ] ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᏗᏣᏟᎶᏍᏙᏗᏍᎩᏂ ᏃᏣᏓᏛᏁᎲ ᎠᏴ ᏍᎩᏍᏓᏩᏛᏍᏗᏱ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ.\nᎩᎶ ᎦᎵᎷᎨᏍᏗ ᎾᏍᎩ ᏩᏛᎬᎦ.\nᎾᏍᎩ ᎫᏓᎴᏅᏛ ᏍᎩᏯᏕᎶᏆᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏗᏍᎩᏯᏓᏂᎸᏤᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏍᎩᏯᏛᎦᏁᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏍᎩᎪᎡᎸᎯ ᎨᏒᎢ, ᏂᏣᏛᏁᎮᏍᏗ; ᎤᏁᎳᏅᎯᏃ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏗᏥᎧᎿᏩᏗᏓᏍᏗ ᎨᏎᏍᏗ.\nᏣᎬᏫᏳᎯ ᎡᎩᎵᏉ, ᎦᎵᎡᎵᎦ ᎪᎯ ᎢᎦ ᏥᎩ ᎯᎦᏔᎲ ᎦᎵᏍᏕᎵᏍᎬ ᏨᏓᏥᏁᎢᏍᏔᏂ ᏂᎦᎥ ᎬᏇᎯᏍᏗᏍᎬᎢ ᎠᏂᏧᏏ.\nᎠᎴ ᎤᏂᏣᏛ ᎠᏂᏧᏏ ᎬᏩᏂᎷᏤᎸᎩ ᎹᏗ ᎠᎴ ᎺᎵ ᎬᏩᏂᏄᏬᎯᏍᏔᏂᎸᎩ ᎤᏂᏙ ᎤᏲᎱᏒ ᎢᏳᏍᏗ.\n”ᎭᏩᏃ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎤᏂᎸᏉᏗ ᎨᏒ ᎤᏂᏆᏂᏲᏍᏗ, ᎤᎵᏨᏓᏆ ᎠᏂᏆᏂᏲᎯᎲ ᏧᎾᏦᎯᏍᏗ ᏃᎴ ᎠᏕᎳ ᏓᏂᏍᏕᏓᎵᏱᏙᎲ.\nᎠᏂᏩᏥᏂ ᎠᏁᎵᏍᎬ, ᎤᎬᏫᏳ Ross ᏃᎴ ᎠᏂRidges ᎤᏂᏲ ᎠᏂᏴᏫᏯ ᏃᎴ ᎨᏍᏗ ᏗᎬᏟᏃᎮᏙᏗᏱᎩ.\nᎨᏍᏗ ᏱᎪᎵᎦ, ᏃᎴ ᎨᏍᏗ ᎣᏍᏓ ᏯᎩᏰᎸᎰ ᏱᎪᎵᎬᎾ ᏱᎩ ᎪᎱᏍᏗ.”\nᎾᏍᎩ ᎿᏉ ᎤᏕᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎪᎯᎸ ᎤᏇᏓᎸ ᎢᎪᎯᏛ ᎤᎴᏂᏓᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏴᏫ ᎤᎾᏚᎸᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ.\nᎠᏂᎨᏯ ᏃᎴ ᏧᏂᏍᏗ ᏗᏂᏲᏟ ᎤᎾᎵᎪ ᎠᏂᏙᎾᎥ, ᎤᎵᏗᏨ ᎠᏂᏔᎵ ᎠᏂᏫᎾ ᎠᏂᏲᏍᎩ ᏚᎾᎦᏎᏍᏛ.\nᎦᏙᏃ? ᎢᏗᏍᎦᏅᎨᏍᏗᏍᎪ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏂᎦᏓᏄᏴᏛᎾ ᎨᏒᎢ, ᎬᏩᎦᏘᏯᏍᎩᏂ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏓᏄᏴᏛᎢ? ᎬᏩᏟᏍᏗ.\nᎤᏬᏗᎨ ᎤᎵᏏᎩ ᎨᏎᎢ ᏃᎴ ᏌᏬᏚ ᎤᏓᏅᎵᏰᏓ ᏄᏍᏕᎢ.\nᏌᏩᏂᏃ ᏈᏓ ᎾᏍᎩ ᎤᎵᏍᎫᏫᏎᎸᎩ ᎤᏛᏛᏗᏱ ᎾᏍᎩ ᎨᏒᎢ ᎦᏛᎬᎢ.\nᎤᏂᏣᏘᏃ ᏫᏚᎪᎲ ᎤᏌᎯᎸ ᎤᎿᎷᏎᎢ, ᎤᏪᏅᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᎷᏤᎴᎢ.\nᎥᏝ ᎠᎴ ᏴᏫ ᎪᎩᎸᏉᏙᏗᏱ ᏲᎩᏲᎮᎢ, ᎥᏝ ᏂᎯ ᏱᏨᏲᏎᎮᎢ, ᎥᏝ ᎠᎴ ᏅᏩᎾᏓᎴᎢ; ᏰᎵᏉ ᎡᎦᏃ ᎦᎨᏛ ᎢᏗᎦᏲᏨᏁᏗ ᎨᏒᎩ, ᎦᎶᏁᏛ ᎣᎩᏅᏏᏛ ᎨᏒ ᎢᏳᏍᏗ.\nᏚᎧᎾᎾ, ᏌᎪᏂᎨᎢ ᎦᎸᎶᎢ ᎤᎪᎮ ᏃᎴ ᎦᎶᎯᏍᏗ ᎭᏫᏂ ᏭᎵᏖᎸᏂᎴᎢ.\nᎢᎦᏓᏃ, ᎤᏙᎯᏳ ᎠᏂᏴᏫ ᏄᎾᏍᏛ ᏃᎴ ᎤᏲ ᎤᎾᏓᏅᏛ ᏄᏍᏛ ᎾᎾᏛᏁᎲ.\nᏚᎾᏓᏒ ᎤᏂᎨᎲᏎ, ᏃᏉ ᎤᎾᏍᎪᏎ ᎠᏔᎴᎦᏒ ᎤᏂᏌᏛᏗ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ, ᎾᏍᎩ ᎤᎩᎬ ᎢᎦᏚᏓᎴᏍᏔᏅᎯ ᏥᎩ, ᎤᏟᎯ ᎤᏙᎯᏳᎯᏯ ᎡᎩᏍᏕᎸᏗ ᎨᏎᏍᏗ ᎡᎫᏓᎴᏍᏗ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ.\n“ᎤᎦᏃᏩ ᎦᏃᎸᎥᏍᎬ ᏓᏲᏣᏂᎩᏏ.\nᎾᏍᎩᏰᏃ ᏗᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒ ᏧᏤᎵᎦ ᎬᏂᎨᏒᎢᏳ ᏗᎬᎪᏩᏛᏗ ᎢᎩ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᏗᎦᎪᎵᏍᏙᏗ ᎢᎩ ᏧᏓᎴᏅᏛ ᏗᎪᏢᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏧᏓᎴᏅᎲᎾ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏳᏂᎭ ᏧᎾᏢᏫᏍᏙᏗ;\nᎤᏂᏂᏴᏗᏱᏃ ᎤᎾᏓᏅᏖᎸ, ᎤᏂᏣᏘ ᏴᏫ ᏚᏂᏍᎦᎸᎩ, ᎾᏍᎩᏰᏃ ᎠᏙᎴᎰᏍᎩ ᎬᏩᏰᎸᏒᎩ.\nᎢᏳᏉ ᎤᎾᏛᏁ ᎠᏤ ᎢᏳᏍᏗ ᎠᏍᎦᏯ, ᎤᏁᏝᏅ ᏃᎴ ᎬᏂᎨ ᎤᎩᎸᏗ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᎤᎩᏨᏛ ᏧᏂᎦᏐᎠᏒ ᎣᏓᎸᎢ, ᎤᏂᏣᏘ ᏴᏫ ᏕᎬᏩᏠᏎᎢ.\nᎤᏣᏘᏃ ᎤᏂᏍᎦᎴᎢ, ᎠᎴ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᏉᏰᏃ ᎤᏃᎴ ᎠᎴ ᎥᏓᎵ ᎢᎬᏬᎯᏳᎲᏍᎦ.\nᏂᎦᏗᏳᏰᏃ ᎤᏂᏍᎦᏅᏨᎯ, ᎠᎴ ᎡᏍᎦ ᎤᏃᎭᏒ ᎤᏁᎳᏅᎯ ᎤᏓᎸᏉᏙᏗ ᎨᏒᎢ;\n“ᎦᏙᏃ ᏄᎵᏍᏔᏁᎢ?” ᎤᏛᏛᏁ ᎤᏥ, ᎤᏚᎵᏍᎬ ᎤᏕᎶᎰᎯᏍᏗ ᎤᎶᏒᏍᏓᏁᎴ.\nᎠᎴ ᎦᎵᏉᎩ ᎦᏚ ᏅᎩᏃ ᎢᏯᎦᏴᎵ ᏥᎾᏂᎥᎩ, ᎠᎴ ᎢᏯᎧᎵᎢ ᏔᎳᏣ ᎢᏧᏖᏒᎢ?\nᎢᎦᏛᏃ ᏅᏲᎯ ᎤᎳᎨᏯᏛᏤᎢ; ᏧᎵᏰᏅᏉᏃ ᎤᎿᏍᎬᏤ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏄᏬᏕᏫᏒᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᎯᎠ Ꮎ ᎠᏓᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏥᎧᏃᎮᎭ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᏬᏪᎳᏅᎯ ᏥᎩ, ᎠᎴ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᎧᏃᎮᏍᎬ ᎤᏙᎯᏳᎯᏯ ᎨᏒᎢ.\nᎠᏫᏄᏣ ᎠᏂᏴᏫ ᏧᎦᏎᏍᏗᏕᎩ ᏙᎩᎾᏦᏒ.\n”ᎠᏎᏃ ᏣᎾᏏᏗ ᏤᏅᏍᏗ ᎠᏆᏚᎵ ᎩᎳᏈᏴ.”\nᎰᎻ ᎠᎦᏕ ᎠᎵᎮᎵᎨ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎨᏒ ᏗᏂᎧᎿᏩᏗᏐᎯ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎫᎫ ᏥᏓᏂᏰᎲᎩ, ᎤᎷᏨᎩ ᎠᎴ ᎠᏆᎵᏃᎮᏔᏅᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎡᎮᎾ; ᏓᎬᎾᏄᎪᏫᏎᎵ ᏄᏍᏛ ᏣᎫᎪᏓᏁᏗ ᎨᏒ ᎤᏣᏘ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎤᏣᏘ ᎠᎹ ᏚᏪᏴ ᏧᏬᎳ;\nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏂᏣᏓᏅᏛᎾ, ᎪᎯᏉ ᎤᏒᎢ ᏣᏓᏅᏙ ᏓᏰᏣᏯᏅᏒᎵ; ᎦᎪᏃ ᎤᏤᎵ ᎨᏎᏍᏗ ᎾᏍᎩ ᏥᏣᏓᏁᎳᏅ.\nᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎾᎥᏂ ᏄᏛᏅ ᎤᎾᎵᎢ.\nᎾᏍᎩ ᏥᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏨᏰᎵᏎᏗᏱ ᏂᏥᎥᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎩᎾᏫᏱ ᎢᏨᏍᏆᏂᎪᏛᎢ; ᎾᏍᏉᏰᏃ ᎥᏆᎸᎢᏛ ᎨᏒᎢ, ᎠᎴ ᏥᏍᏕᎵᏍᎬ ᎠᎴ ᏥᏍᏓᏱᏗᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᎯ ᏂᏥᎥ ᎢᏤᎳᏗᏍᏗᎭ ᎬᏩᎦᏘᏯ ᎥᎩᏙᎵᎬᎢ.\nᎾᏍᎩ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᎦᎪ ᎾᏍᎩ, ᏣᎬᏫᏳᎯ, ᎾᏍᎩ ᏥᏲᎢᏳᏗᏱ?\nᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᏂᎦᏛ ᏔᎳᏚ ᎢᏴᏛ ᎾᏂᎥᎩ.\nᏧᎭᎾᏬᎩ ᏕᎬᏅ ᎦᎶᏍᎨ ᎤᏴᏨ ᏧᎪᎸ ᏚᏦᏒ ᎢᏴ.\nᎾᏍᎩᏃ ᎤᏪᎧᎲᏒ, ᏚᎾᏄᎪᏫᏎᎴ ᏕᏫ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᎾᏍᏉ ᏧᏁᎢᏍᏔᏁ ᎯᎠ ᏥᏁᏪᏎᎢ; ᏥᏩᏛᎲ ᏕᏫ ᏤᏏ ᎤᏪᏥ, ᎠᏍᎦᏯ ᎣᏍᏛ ᏥᏰᎸᎢ, ᎾᏍᎩ ᏅᏛᏛᏁᎵ ᏂᎦᎥ ᎦᏓᏅᏖᏍᎬᎢ.\nᎾᎨ ᎢᏴ ᏏᏆ ᎠᏍᏚᏗ, ᎡᏝᏪᎯ ᏃᎴ ᎤᏩᏌ ᏌᎳᏓ, ᏂᎦᏓ ᎾᏂᏪᏍᎬ ᎠᏛᎩᏍᎨ ᏍᏓᏯ ᎦᏬᏂᏍᎩ.\nᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎣᏁ ᎠᏌᏅᏗ ᏓᏂᏙᎨ, ᎠᏦᏴ ᏚᏂᏂᏴᎮᎢ.”\nᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎤᏂᏣᏘ ᎨᏒᎨᎳ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏯᏘᏃᎯᏏ ᎠᏇᏥ, ᎤᏩᎨᏫ ᎠᏓᏅᏙ ᎤᏪᎢ;\n”ᏃᎴ ᏍᏉ, ᎦᎵᏉᎩ ᏂᏚᏓᏓᏍᎦ ᏗᏥᏅᏍᎨᏂ, ᏥᎧᏍᎨᏂ, ᎤᏇᏓᏢ ᏚᏦᎯᏍᏛ ᏥᎧᏍᎨᏂ, ᏦᎢᏁ ᏚᏦᎯᏍᏛ, ᏥᏂᎨᏂ, ᏅᎩᏁ ᏚᏦᎯᏍᏛ, ᎠᏆᎳᏏᏕᎾ ᏃᎴ ᎯᏍᎩᏁᎢ ᏚᏦᎯᏍᏛ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᎠᎬᏱ ᏯᎴᎲᏍᏗᏍᎨ ᎠᎫᏩᏌ ᎠᎫᏤᎵ ᏴᏫ ᎾᏍᎩᏯ ᎢᎾᎨ ᎡᎯ.\nᏃᏗ ᏐᏉ ᎤᏃᏕᎾ ᏭᏃᎯᏎᎴ ᏩᎦ, ᏂᎪᎯᎸᎾ ᏂᎦᏓ ᎠᏂᎧᏔᎮᎢ ᎤᏂᏃᏕᎾ.\nᎤᏁᎷᏁᎢ ᏌᏌ.\nᏣᎵ ᏧᏤᎵ ᏴᏫ ᏭᏂᏴᎸ ᎤᎾᏗᏍᎦᎶᏗ, ᎤᏅᏌ ᎠᎾᏟᏃᎮᏍᎬ, ᏣᎵ, ᎶᏩᏂ ᏃᎴ ᏤᎩ ᏚᎾᎩᏝᏅ ᎠᏥᎸ ᎾᎥᏂ.\nᎾᏍᎩᏰᏃ ᏂᏣᏛᏁᎲ ᎤᏣᏔᏅᎯ ᎡᏥᏁᏗ ᎨᏎᏍᏗ ᎢᏥᏴᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎤᎬᏫᏳᎯ ᏗᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ.\nᏖᏲᎲᏍᎩ ᎨᏒ ᏄᎾᏓᏅᏛᎾ, ᏗᏂᏲᎵ ᏖᏲᎲᏍᎩ, ᎾᏍᎩ ᏣᏍᏆᏂᎪᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᏗᏟᎶᏍᏔᏅᎯ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎪᏪᎸᎢ.\nᎦᏥᏯᏬᎢᎵᏴᏍᏓᏁᎲ ᎩᎶ ᎬᎩᎪᎵᏰᏍᎩ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ.\n”ᏗᏣᏏᎳᏛᏙᏗ ᏕᏣᏂᎬᎦ, ᏃᎴ ᎨᏍᏗ ᏱᏏᏁᎭ.\nᏂᏙᏣᎧᏂᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᏗᎬᎪᏩᏛᏗ ᏥᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᏗᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᏥᎩ; ᎾᏍᎩᏰᏃ ᏗᎬᎪᏩᏛᏗ ᏥᎩ ᏗᎦᎶᏐᎲᏍᎩ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏗᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᏥᎩ ᏗᎦᎶᏐᎲᏍᎩ ᏂᎨᏒᎾ.\nᎨᏍᏗ ᏱᏓᏆᏁᎶᏃ ᏧᏪᏥ ᏱᏓᏆᏁᏍᎩᎳ.\nᎨᏍᏗ ᎩᎶ ᎪᎱᏍᏗ ᏳᏛᎾ.\nᎠᎴ ᎾᏍᏉ, ᎢᏓᎵᏅᏟ, ᎢᏨᏔᏲᏎᎭ, ᎠᎴ ᎢᏨᏍᏗᏰᏕᎭ, ᎤᎬᏫᏳᎯ ᏥᏌ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ Ꮎ ᏍᎩᏯᏛᎦᏁᎸᎯ ᏥᎩ ᎢᏣᏛᏁᏗᏱ ᎢᏤᏓᏍᏗᏱ ᎾᏍᎩ ᎣᏏᏳ ᎬᏩᏰᎸᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏂᏣᏛᏁᎲ ᎧᏁᏉᏥᏎᏍᏗᏉ.\nᏙᎤᏍᏗ ᎢᎦ ᎨᏎᏍᏗ? ᎤᏪᎵᏎ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏣᏑᎵᎭ ᎣᎩᎾᏛᏅᎢᏍᏙᏗᏱ?\nᏅᏩᏓᎴᏃ [ᏗᎧᎿᏩᏗᏙᎯ] ᎥᏥᏯᏛᎦᏁᎸᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᎠ ᏅᏓᏳᏪᏒᎩ, ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ, ᏣᎬᏫᏳᎯ ᏣᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᏣᎵᏂᎩᏛ, ᎣᏏᏳ ᎠᎴ ᏚᏳᎪᏛ ᏂᎯ ᏗᎫᎪᏙᏗ ᎨᏒᎢ.\nᏧᏂᏯᏪᏨ ᏐᏈᎵ ᎠᎵ ᎤᏂᎴᏴᏒ ᎠᏒᎨ ᏃᎴ ᎤᎦᎾᏍᏓ ᏩᎦ ᎤᎾᏛᎸᏓ.\nᎾᏍᎩ ᎢᏥᎪᏩᏛᏗᏱ ᏧᏓᎴᏅᏛ ᏓᏚᎴᎿᎥᎢ; ᎾᏍᎩ ᏂᏣᏠᎾᏍᏛᎾ ᎢᏣᎵᏍᏙᏗᏱ, ᎠᎴ ᏂᏣᏓᎿᏍᏆᎶᏍᏗᏍᎬᎾ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎠᎵᏱᎶᎸ ᎬᏗᏍᎩ;\nᏂᎦᏓ ᎠᏂᏴᏫ ᎦᏚᏨ.\n ᎦᏅᏥᏙᎮ ᏃᎴ ᏚᏙᎨᏍᎨ.\nᎬᏩᏁᏁᎴᏃ ᎤᏗᏔᏍᏗ ᎩᎦᎨᎠᏗᏔᏍᏗ ᎻᎳ ᎠᏑᎵ; ᎠᏎᏃ ᎥᏝ ᏳᏁᎩᏎᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ, ᎠᎴ ᏕᏥᏂᏴᏎᏍᏗ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᏄᏍᏛ ᎡᏤᏲᏅᎢ, ᎾᏍᏉ ᎦᏬᏂᏒᎯᏉ ᏱᎩ, ᎠᎴ ᏫᏨᏲᏪᎳᏁᎸᎯ ᏱᎩ.\nᏥᏌᏃ ᎠᏥᏃᎮᏍᎬ ᎤᏛᎦᏅ, ᏚᏅᏎ ᏤᏙᎲ ᏗᏂᎳᏫᎩ ᎠᏂᏧᏏ ᏧᎾᏤᎵᎦ, ᏭᏔᏲᏎᎮ ᏅᏓᏳᏪᏅᏍᏗᏱ ᎤᏅᏬᏗᏱ ᎤᏅᏏᏗᏍᏗ.\nᎯᎠᏍᎩᏂ ᏴᏫ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏂᎦᏔᎲᎾ ᏥᎩ ᎨᏥᏍᎩᏅᏛᎯ.\nᎢᎦ ᎪᏱᏁᎢ ᎨᏠᎮ ᏗᏙᎴᏆᏍᏗ ᏪᏙᎲ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᎴ ᎡᏍᎦ ᎤᏃᎭᏛ ᎠᏂ ᎡᎶᎯ, ᎠᎴ ᏅᎵᏌᎵ ᎨᏥᏰᎸᎯ ᎤᏁᎳᏅᎯ ᏚᏑᏰᏒ, ᎠᎴ ᎾᏍᎩ ᎾᏁᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏎᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ ᎾᏍᎩ ᏣᏁᎭ;\nᎢᎦᏘᎭ ᏏᏆ ᎠᏯ.\nᎾᏍᎩᏃ ᎢᎦᏛ ᏌᏈ ᎠᎴ ᏌᎵᏂ ᎠᏁᎯ ᎨᏎᎢ, ᎾᏍᎩ ᎥᏘᎣᎩ ᏭᏂᎷᏨ ᏚᏂᏬᏁᏔᏁ ᎠᏂᎪᎢ, ᎠᏂᏃᎮᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᎬᏩᎵ.\nᎨᏍᏗ ᏱᏧᏁᏣ.\nᎠᏂᎨᏴᏃ ᎾᏍᏉ Ꭸ ᎢᏴᏛ ᏙᏗᏂᎧᏁᎢ; ᎾᎿᏃ ᎠᏁᎴ ᎺᎵ ᏑᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏥᏌ ᎤᏍᏗ ᎠᎴ ᏦᏏ ᎤᏂᏥᎢ, ᎠᎴ ᏌᎶᎻ.\nᎾᏍᎩ ᎯᎠ ᏂᏥᏪᏍᎬ ᏥᏁᎬ ᎥᏝ ᎤᎬᏫᏳᎯ ᎢᏳᏪᏍᏗ ᏱᏥᏁᎦ, ᎠᎩᏁᎫᏍᎩᏂ ᎾᏍᎩᏯ ᏥᏁᎦ, ᎯᎠ ᎾᏍᎩ ᏂᏥᎾᏰᏍᎬᎾ ᎨᏒ ᏥᎬᏗᎭ ᏥᎦᏢᏆᏍᎦ.\nᎦᎳᎱᏂ ᎠᏗᏍᎬ ᎠᎳᏏᏓᏁᎸ ᏱᎨᏒᎾ ᎤᏁᎸᏗ ᎤᏃᏴᎩ ᎦᎸᏥ ᎠᏂᏬᏂᏍᎬ, ᎦᏬᏂᏍᏗ ᎨᏒ, ᎤᏩᏌ ᎦᏲᏟ ᎦᏬᏂ, ᎡᏘᏴ Yale ᏥᏓᏙᎴᏆᏍᎨ ᎢᏴ.\nᎠᏗᎾ ᎠᏎ ᏱᏥᏅᏒ ᎠᏇᎵᏒ ᎢᏆ'ᎶᏓᏔ ᏫᏥᎷᏤᏗᏱ, ᎾᏍᎩ ᎠᎩᏅᏟ ᎠᎴ ᎣᎩᎾᏖᏆᎶᎯ ᏙᎩᏂᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎣᎩᎾᎵᎪᎯ ᎣᏍᏗᏯᏫᏍᎩ, ᏂᎯᏍᎩᏂ ᎡᏥᏅᏏᏛ, ᎠᎴ ᎾᏍᎩ ᎠᎩᏍᏕᎸᏛ ᎠᎩᏩᏛᏗᏱ ᎠᎩᏂᎪᎯᏎᎲᎢ.\nᎡᏕᎵᏛᏍᎩᏂ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎴᏒᏉ ᎦᏓᎭ ᎨᏒᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᏞᏍᏗ ᎧᏁᎢᏍᏙᏗ ᎤᏅᏱᎨᏎᏍᏗ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏧᏂᎵᎶᎲᏍᎦ ᎤᎾᏓᏅᏘ;\n”Ꭵ, ᎤᏙᏳᎯ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᎠᏍᏆᏂᎪᏗᏍᎨ ᎠᏍᏓ.\nᎧ, ᎢᏓᏓᏅᏟ, ᎿᏉ ᏕᏨᏲᎯ ᎤᏁᎳᏅᎯ ᎢᏥᏙᎵᏍᏗᏱ, ᎤᏮᏙᏗᏱ, ᎧᏃᎮᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎧᏃᎮᏍᎩ, ᎾᏍᎩ ᏰᎵ ᎨᏣᏁᏍᎨᏗ ᏥᎩ, ᎠᎴ ᎢᏣᏤᎵ ᏰᎵ ᎢᎨᏨᏁᏗ ᏥᎩ ᎾᏍᎩ ᏂᎦᏛ ᎤᎾᏓᏅᏘ ᎢᎨᎬᏁᎸᎯ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ.\nᎠᏎᏍᎩᏂᏃᏅ ᎦᎫᏍᏛᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᎵᏂᎩᏗᏳ ᏂᎬᏅ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎤᎬᏫᏳᎯ ᏓᎦᏔᎭ ᎾᏍᎩ ᏧᏤᎵᎦ; ᎠᎴ ᎯᎠ, ᎩᎶ ᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎦᎶᏁᏛ ᏚᏙᎥ ᎾᏍᎩ ᎠᏓᏅᎡᎮᏍᏗ ᎠᏍᎦᏂ.\nᏥᏗᎦᏔᎭᏍᎩᏂ ᎾᏍᎩ ᏴᏫ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎾᏛᏁᎲ ᎾᏚᏓᎴᏍᏗᏍᎬᎾ ᎨᏒᎢ, ᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎠᏴ ᎡᏙᎢᏳᏅ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎢᎦᏚᏓᎴᏍᏙᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎦᎶᏁᏛ, ᎥᏝᏃ ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᏂᎦᏪᏍᎬ ᎾᏛᏁᎲ ᎥᏝ ᎩᎶ ᎤᏇᏓᎵ ᏴᎬᏚᏓᎴᏍᏓ.\nᎦᏓᏁᏍᏛ ᏱᎩ ᏰᎵᏉ ᏚᏩᏩᏒᎪ ᏌᎶᎵ ᎤᏛᏅ ᎠᏧᏣ.\n“ᎠᎦᏓ ᏧᏬᏨᏗ ᏗᏆᏛᎦᏅ ᎠᏎ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ, ᏘᏙᎵᎩ; ᎥᏝᏰᏃ ᏯᏂᎦᏔᎭ ᎾᎾᏛᏁᎲᎢ. ᎤᏂᏯᏙᎴᏃ ᎤᏄᏬ ᎠᎴ ᎠᎾᏎᏍᏗᏍᎨᎢ.\nᏣᎳᎩᏱ ᎠᏰᎵ ᎤᎬᏫᏳ ᎫᏫᏍᎫᏫ ᎤᏂᎦᎸᎮ ᏃᎴ ᎪᏪᎵ ᏚᏬᏒᏁ ᎠᎹᏰᎵ ᏭᎾᏓᎶᎩ, ᏃᎴ ᎤᏓᎭᏱᎴ ᏧᏳᎪᏗ ᎨᏒ ᎠᏂᎫᎾᏓᎴᎩ ᏚᎾᏓᏂᎸᏨ, ᎬᏂᎨᏒ ᏂᎬᏁᎮ ᎨᏍᏗ ᏱᏚᎾᎳᏏᏕ ᎤᏂᎾᏗᏅᏗ ᎠᏂᏣᎳᎩ ᎤᎾᏤᎵᎪ ᎦᏙ, ᎡᏆ ᎤᏂᏍᎦᏅᏨ ᏂᎦᎵᏍᏗᏍᎨ.\nᎬᎨᏳᎢ, ᏞᏍᏗ ᎤᏐᏅ ᎨᏒ ᏱᏣᏍᏓᏩᏛᏎᏍᏗ, ᎣᏍᏛᏍᎩᏂ ᎨᏒ ᎯᏍᏓᏩᏕᎨᏍᏗ. ᎣᏍᏛ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ; ᎤᏲᏍᎩᏂ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᎥᏝ ᎤᏁᎳᏅᎯ ᎤᎪᎲᎯ ᏱᎩ.\nᎠᎴ ᎾᏍᏉ ᏂᎦᎥ ᎠᎩᎾᎥ ᏱᎦᏓᏃᏁᎭ, ᎠᎴ ᎾᏍᏉ ᏥᏰᎸ ᏱᏓᎩᏲᏒ ᎤᎾᎪᎲᏍᏙᏗᏱ, ᎾᎩᎲᎾᏃ ᏱᎩ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎥᏝ ᎪᎱᏍᏗ ᎠᎩᏁᏉᏤᎯ ᏱᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏲ ᎯᏰᎸᎾ ᎯᎠ ᎾᏍᎩ ᏥᏍᎦᏅᎩ, ᎠᎴ ᎯᏍᏙᏓᎵᏍᏓᏏ ᎤᏁᎳᏅᎯ, ᎦᏰᏣᏙᎵᏍᏗᏉ ᏱᏂᎦᎩ ᏄᏍᏛ ᏣᎾᏫᏱ ᏣᏓᏅᏖᎸᎢ.\n“ᏯᏛᎾ ᏯᏕᎰᏍᎦ,” ᎤᏛᏁ ᏌᎳᏓ ᎣᏍᏓ ᏳᏰᎸᎲᎾ.\nᏉᎳ, ᎠᏆᏑᏰᏛ ᎠᎩᏅᏏᏛ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎢ, ᎠᎴ ᏐᏍᏗᏂ ᎢᎩᏅᏟ,\nᎡᎶᏗ ᎤᏔᏪᏙᏁ ᎪᏱᏁᎢ.\nᎤᏩᏒᏰᏃ ᎠᏓᎪᏩᏘᏍᎪᎢ, ᎠᎴ ᎠᏓᏅᏍᎪᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏩᎨᏫᏍᎪ ᏄᏍᏛᎢ.\n“ᏦᎢ ᎢᏲᏥ ᎣᏤᏙᎮᏍᏗᏉ.\nᎤᏩᏙᎯᏴᏓ ᎨᏎᏍᏗ.\nᎠᎬᏱᏣ ᏔᎵᏉ ᏧᏲᎢ ᎦᏲᎦᏑᏯᎩᏍᏗ.\nᎠᎴ ᎤᏲᎢᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏗᏂᏁᎵᏛ, ᎠᎴ ᏧᏂᏍᏓᎢ ᎾᎯᏳ ᎨᏎᏍᏗ.\nᎤᏍᎦᏅᏥᏙᎸᏰᏃ ᎦᎸᎳᏗ ᎢᏴᏛ ᏭᎷᏨ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏅᏓᏛᎤᏲᏚᎸᏫᏍᏓᏁᎵᏙᎸᎢ.\n[ᎠᎴ ᎢᏥᎦᏔᎭ] ᎪᎱᏍᏗ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎠᏋᏍᎦᎳᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎢᏨᎾᏄᎪᏫᏎᎸᏉᏍᎩᏂ ᎠᎴ ᏕᏨᏰᏲᏅ ᏕᎦᎳᏫᎥᎢ ᎠᎴ ᏓᏓᏁᎳᏗᏒᎢ,\nᎢᏳ ᎠᎴ ᎢᏗᏯᏙᎯᎮᏍᏗ, ᎢᏗᏯᏙᎯᎲᏉ ᏕᎩᎸᏫᏍᏓᏁᎮᏍᏗ; ᎠᎴ ᎩᎶ ᏓᏕᏲᎲᏍᎨᏍᏗ, ᏗᏕᏲᏗᏉ ᎨᏒ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ;\nᎠᏏᏴᏫᏃ ᎤᎷᏰ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᎵᏍᏕᏍᏔᏁ ᎠᎦᏘᏏ ᎦᎴᏂ.\n”ᎣᏍᏓ ᎧᏅᏂᏍᎩ ᏃᎴ ᏓᏥᏂᏴᎯ,” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎯᎠᏃ ᎾᏥᏪᏎᎴᎢ, ᎦᏙ ᎬᏅ ᎪᏪᎳ ᏗᎧᎿᏩᏛᏍᏗᏱ? ᎦᏙ ᎤᏍᏙ ᎯᎪᎵᏰᏍᎪᎢ?\nᏥᎷᏏᎵᎻᏃ ᎤᏂᎷᏤᎢ; ᏥᏌᏃ ᎤᏔᏅ-ᏗᎦᏔᏫᎢᏍᏗᏱ ᏭᏏᎸ, ᎤᎴᏅᎮ ᏚᏄᎪᏫᏎ ᎠᏂᎾᏕᎩ ᎠᎴ ᎤᏂᏩᏒᎥᏍᎩ ᎾᎿ ᎤᏔᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᎷᏆᏗᏅᏎ ᏚᏂᏍᎩᎸ ᎠᏕᎸ ᏗᏂᏟᏴᏍᎩ, ᎠᎴ ᎤᎾᏅᏗᏱ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ ᏗᏂᎾᏕᎩ;\nᎨᏍᏗᏗ ᏂᎦᏓ ᎯᏤᏅᏍᏗ ᏱᎩ.\nᎠᏎ ᏯᏆᏁᎸᏔᏅ ᏗᏋᏂᏍᏙᏗ ᏥᏔᎦ, ᏧᎾᎳᏏᏕᏅ ᏧᎪᏅ ᎨᏐ ᏃᎴ ᏗᎦᎦᎳ ᏗᎦ ᏗᏔᏍᎩᏍᎩ ᎠᎪᏍᏓ, ᎦᏲᏟᏉ ᎤᎾᏂᏒ ᎨᏐ.\nᎾᏍᎩᏃ ᎬᏬᎯᏳᎲᏍᎨ ᎾᏂᎥ ᎨᏥᎸᏉᏗ ᎠᎴ ᎨᏥᎸᏉᏗ ᏂᎨᏒᎾ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎤᏣᏘ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎯᎠ ᎠᏍᎦᏯ ᎤᏪᎭ.\nᎾᏍᎩ ᏧᎾᏛᏐᏅᎯ ᏧᏂᏴᏍᏕᏍᎩ ᏂᎬᏒᎾ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎨᏥᎸᏉᏗ, ᎤᎾᎵᏏᎾᎯᏍᏗ, ᏄᎪᎸᎾ ᎨᏒ ᎤᏃᎯᏳᏒᎢ, ᎠᎴ ᎤᎾᏓᎨᏳᏒᎢ, ᎠᎴ ᏗᏅᏂᏗᏳ ᎨᏒᎢ.\nᎡᎶᏛᏰᏃ ᎤᏩᏒ ᎤᏓᏅᏒᎯ ᎨᏎ ᏭᏂᏴᎲᎯ ᎨᏎ ᏣᏂ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎤᎸᎸᎯ ᎨᏎᎢ, ᎠᏍᏛᏗᏍᏗᏍᎨ ᎡᎶᏗᏏ, ᎤᏅᏟ ᏈᎵᎩ ᎤᏓᎵᎢ; ᎾᏍᎩᏰᏃ ᎠᏓᏰᎮᎢ.\nᎢᏤᎾ, ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏫᏣᎴᎲᎦ ᎠᎴ ᏫᏗᏥᏬᏁᏓ ᏴᏫ ᏫᏗᏥᏃᎲᏏ ᏂᎦᏛ ᎧᏃᎮᏛ ᎯᎠ ᎾᏍᎩ ᎬᏂᏛ ᎤᎬᏩᎵ.\nᎠᏏ ᎡᎶᎯ ᏥᎦᏥᏰᎳᏗᏙᎲᎩ, ᏕᏣᏙᎥ ᏕᏥᏍᏆᏂᎪᏙᏛᎩ; ᎾᏍᎩ ᏗᏍᎩᎧᏁᎸᎯ ᎦᏥᏍᏆᏂᎪᏔᏅ, ᎠᎴ ᎥᏝ ᎠᏏᏴᏫ ᏳᏲᎱᏒ Ꮎ ᎤᏩᏒ ᎠᏲᎱᎯᏍᏗ ᎤᏪᏥ, ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸᎢ.\nᎾᎥᏂᎨ ᎤᎧᏙᏍᏓᏁᎢ ᏫᎵᎻ.\nᎠᎴ Ꮎ-ᏍᎩ ᏏᏆᏏ ᎤᎪᎲᎢ, ᎿᏉᏃ ᏔᎳᏚ ᎢᏯᏂᏛ.\nᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎨᏒ ᎬᏂᎨᏒ ᏅᏁᎮᏍᏗ ᏗᎦᏰᏣᏟᎶᏍᏙᏗ ᎨᏒ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᏗᏕᏂᏗ ᎨᏒ ᎤᎬᏩᎵ ᎤᏲ ᏄᏓᏑᏴᎾ, ᎬᎸᏉᏗᏳ, ᏄᏠᎾᏍᏛᎾ,\n“ᎭᏩ!” ᎤᏁᎷᏁ ᎤᎾᏓᏓᏍᎩ.\nᏥᏌ ᎦᎶᏁᏛ ᎤᎾᏄᎪᏫᏒᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏲᎯᏎᎸᎯ, ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏧᏅᏏᏓᏍᏗ ᏧᏓᎴᏅᏛ ᏂᎪᎯᎸᏉ ᎢᏳ ᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ; ᎠᎴ ᏧᎨᏅᏛ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎤᏅᏏᏓᏍᏗ ᏣᏂ;\nᎨᏍᏗᏗ ᎠᏓᏅᏖᏙ ᏱᎩ ᏱᏗᏥᏂᏴ ᏧᎾᏓᎸ.\nᏅᏗᎦᎵᏍᏙᏗᎭ ᏚᏳᎪᏛᎢ ᎤᏁᎳᏅᎯ ᏧᎫᏴᏓᏁᏗᏱ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎨᏥᎩᎵᏲᎢᏍᏗᏍᎩ;\nᎠᏎᏃ ᎪᎱᏍᏗ ᎤᏓᏴᏙᏗ ᏄᎲᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎤᎾᏝᎢ ᎤᏁᏤ ᎠᏥᎾᏗᏅᏗᏱ ᎠᎴ ᎤᏓᎵᎢ ᎠᎴ ᏧᏪᏥ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎲᎢ, ᎠᏓᏴᏗᏱᏃ.\nᎦᎶᎪᏗ, ᎦᏓᎷᎪᏗ, ᏍᏆᎳ ᎦᏂᏴᏗ ᎦᎷᏯᏍᏗ.\nᏔᏕᏲᎲᏍᎩ, ᎠᎴ ᏣᎬᏫᏳᎯ, ᏍᎩᏲᏎᎰᎢ; ᎠᎴ ᏚᏳᎪᏛ ᏂᏥᏪᏍᎪᎢ, ᎾᏍᎩᏰᏃ ᏄᏍᏗ.\nᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏨᏒᏉ ᎭᏓᏃᎮᏎ, ᎯᏃᎮᏍᎬ ᎥᏝ ᏳᏙᎯᏳᎭ.\nᏍᎩᎾᎾ ᎢᏳᏍᏗ, ᎨᏍᏗ ᎫᎦᏓᏉ ᎠᏓᎩᏯᏍᏗ ᏱᎩ.\nᎠᎴ ᎢᏨᎨᏫᏒᎯ ᎢᎩ ᎡᏥᏬᏁᏗᏍᎬ ᏗᏂᏲᎵ ᏥᎨᏥᏬᏁᏗᏍᎪ ᎾᏍᎩᏯᎢ, ᎯᎠ ᏥᏂᎦᏪᎭ, ᎠᏇᏥ ᏞᏍᏗ ᏅᎵᏌᎵ ᏱᏣᏰᎸᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏣᎩᎵᏲᎢᏍᏗᏍᎬᎢ, ᎠᎴ ᏞᏍᏗ ᏩᎾ ᎯᏳᏏᎦᎶᎨᏍᏗ ᏣᎬᏍᎪᎸᎢᏍᎨᏍᏗ,\nᏞᏍᏗ ᎠᎴ ᏱᏥᎪᏁᎶᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᎩ Ꮎ ᎢᎦᏛ ᏥᏄᎾᏛᏁᎴ ᏧᏂᎪᏁᎶᏍᎨᎢ, ᎠᎴ ᏥᎬᏩᏂᏛᏔᏁ ᎠᎾᏓᏛᏗᏍᎩ.\n”ᎠᎳᏂ,” ᎤᏛᏁ, ᎤᎵᏏᏂᏗ ᎦᏬᏂᏍᎨᎢ. ”ᎨᎵᎠ ᏰᎵ ᎤᏍᏆᏂᎩᏗ ᎢᏗᎾᏌᎠ ᏏᏆ.”\nᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᏱᎩ ᏞᎦ ᏳᏓᏅᏒ ᎾᏍᎩ ᏘᏯᏓᏂᎸᎢᏍᏗ ᏂᎪᎯᎸ ᎤᏕᏗᏱ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᎢ, ᎾᏍᎩ ᎤᏢᏨ ᎤᏲᎱᏎᎢ, ᎾᏍᎩᏃ ᎤᎾᏬᎥ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᎤᏂᏅᏁᎢ.\nᎠᏴᏰᏃ ᏗᏆᏓᏁᎶᏗᏉ, ᎠᎴ ᏓᎩᎧᎭ ᎠᏂᏯᏫᏍᎩ ᎾᏍᎩ ᏕᎬᏆᏁᎶᏙᎢ, ᎩᎶᏃ ᎮᎾ ᏥᏲᏏ, ᎡᎪᎢ; ᏅᏩᏓᎴᏃ ᎡᎮᎾ ᏥᏲᏏ, ᏗᎡᎪᎢ; ᏥᏅᏏᏓᏍᏗᏃ, ᎯᎠ ᎿᏛᎦ ᏥᏲᏏ, ᎾᏍᎩ ᎾᏛᏁᎰᎢ.\nᎧᏂᎩᏛ ᏓᏥᎶᎥ.\nᎠᏎᏃ ᎨᏍᏗ ᏳᏩᏅᎨᎢ ᏥᏍᏕᏥ.\nᎾᏍᎩᏃ ᎢᏳ ᎩᎶ ᎾᏍᎩ ᎯᎠ ᎦᎫᏍᏛᏗᎯ ᏳᏝᏅ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏳᏁᏍᎨᏔᏅ, ᎠᏕᎸ ᎤᏁᎬ, ᏗᎦᎸᏉᏗ ᏅᏯ, ᎠᏓ, ᎧᏁᏍᎦ, ᎠᏍᎫᏕᏒᎯ ᎤᎵᏃᎯᏰᎯ,\nᎠᎴᏬ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᎩᏍᏚᎩᎡᏗᏱ ᎦᎶᎯᏍᏗᏱ ᎾᎿ ᎣᎦᎵᏥᏙᏗᏱ, ᎣᎩᏃᎮᏗᏱ ᎤᏕᎵᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎾᏍᏉ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏆᎸᎢᏛ ᏥᎩ;\nᎤᎪᎲᏃ ᎤᏕᏯᏔᏁᎴ ᎾᏍᎩ ᏄᏪᏎᎸᎢ, ᎠᎴ ᎤᏓᏅᏖᎴ ᏄᏍᏛ ᎤᏰᎸᏛ ᎯᎠ ᎾᏍᎩ ᎤᏲᎵᎸᎢ.\nᎠᎴ ᎤᏣᏘ ᏗᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏓᎨᏳᏗ ᎬᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ. ᎠᎴ ᏙᎯᏱ ᏂᏨᏁᏍᏗ ᎢᏨᏒ ᎢᏤᎲᎢ.\nᎠᎴ ᎤᎾᏫᏱ ᎢᏥᎨᏳᎯᏳ ᎨᏒ ᎤᏣᏘ ᎤᏁᏉᏨ, ᎤᏅᏓᏛ ᎢᏦᎯᏳᎯᏳ ᎨᏒ ᏂᏥᎥᎢ, ᎾᏍᎩ ᎢᏥᎾᏰᏍᎩ ᎠᎴ ᏗᏥᎾᏫᏍᎩ ᏕᏣᏓᏂᎸᏨᎢ.\nᏃᎴ ᎦᏙ ᏙᎩᏂᏴᎲ ᎪᏪᎵ ᏙᎩᏂᎾᎥ ᏲᎾ.\nᎾᏍᎩ ᏑᎾᏓᎴᎩ ᎨᏒ ᎠᏓᎯᎯ ᎦᏩᏒᎩ ᎾᏍᎩ ᎤᏂᎯᎯ ᏂᏙᏣᎵᏍᏓᏁᎭ; ᎠᏂᏐᎢᏃ ᎠᏓᏛᏂᏗᏍᎩ ᎦᏩᏒᎩ ᎾᏍᎩ ᎤᏅᏂᏗᏍᎩ ᏂᏙᏣᎵᏍᏓᏁᎭ. ᎦᎪᏃ ᏰᎵ ᎦᏰᎦᎨᏅᏗᏍᏗ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎦᏛ ᎠᏍᏔᏴ ᎠᏟᏃᎮᏙᏗ Crockett, ᎡᏍᎦᏉ ᎤᎬᏫᏳ.\nᏈᏓ ᎾᏍᎩ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏎᎸᎩ ᏥᏌ; ᏣᎬᏫᏳᎯ, ᎯᎠᎾᏃ ᎦᏙᎢ?\n“Ꮟ ᏐᏉ ᎢᏳᏩᎬᏗ ---- ᎭᏩᏧᏛ ᎤᏛᏁ ᏌᎳᏓ.\nᏚᏟᎶᏍᏓᏁᎴᏃ, ᎯᎠ ᏄᏍᏕ ᎤᎬᏩᎴᎢ, ᎾᏍᎩ ᏴᏫ ᏂᎪᎯᎸ ᎤᎾᏓᏙᎵᏍᏙᏗᏱ, ᎠᎴ ᏧᏂᏯᏪᎢᏍᏗ ᏂᎨᏒᎾ;\nᎢᏳᏰᏃ ᎢᎬᏱᏱ ᎤᎬᏛᎾᏨᎯ ᎦᎸᏉᏗᏳ ᏱᎩ, ᏂᎦᏛ ᎾᏍᏉ [ᎦᎸᏉᏗᏳ;] ᎢᏳ ᎠᎴ ᏚᎿᏍᏕᏢ ᎦᎸᏉᏗᏳ ᏱᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏚᏩᏂᎦᎸᎢ.\nᏗᏂᏲᏟ ᏐᏉ ᎦᎦᎳ, ᏭᏅᎬᏛ ᏧᎪᎸᎭ ᏗᎦᏐᎯ ᏃᎴ ᏗᎦᏁᏥ.\nᎾᏍᎩ ᎯᎠ ᎤᎬᏩᎵ ᏦᎢ ᏂᏥᏔᏲ-ᏎᎸᎩ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᎠᏆᏓᏅᎡᏗᏱ..\nᎤᏂᏣᏔᏍᎩᏂᏃᏅ ᎠᏁᎭ ᎤᎾᏁᎳᏅᎯ ᎨᎪᏎᎯ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ, (ᏧᏂᎶᏔᏉ ᎤᎾᏁᎳᏅᎯ, ᎠᎴ ᏧᏂᏣᏔᏉ ᎤᏂᎬᏫᏳᎯ,\nᏃᎴ ᏄᏓᎴᎯ ᎧᏅᏂᏍᎩ ᏭᎩᎸᏁ ᎠᏦᏴ, ᎤᏐᏱ ᏄᏛᏁᎴ.\nᎠᏲᎱᎯᏍᏗᏃ ᎨᏒ ᎠᎴ ᏨᏍᎩᏃ ᎠᏥᎸ ᏨᏓᎸ ᏫᏕᎨᎦᏓᎢᏅᏒᎩ. ᎯᎠ ᎾᏍᎩ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ.\nᏥᏌ ᏭᎪᎲᎩ ᏁᏓᏂᎵ, ᎦᏙᎬ ᎢᏗᏢ ᏛᎦᏛᎩ; ᎯᎠᏃ ᏄᏪᏒᎩ, ᎾᏍᎩ ᎤᏁᎢᏍᏔᏅᎩ; ᎬᏂᏳᏉ ᎤᏙᎯᏳᎯᏯ ᎢᏏᎵ ᎤᏪᏥ, ᎾᏍᎩ ᎦᎶᏄᎮᏛ ᏄᏓᏑᏴᎾ.\nᎠᏴᏰᏃ ᎤᏁᎳᏅᎯ ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ, ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᎶᎨᏒᎢ, ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏁᏍᎨᎲᎯ.\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏚᏂᏘᎴ ᏧᏂᎾᏫᏱ, ᎠᎴ ᏗᏂᏄᏙᎬ ᏕᎬᏩᏄᏓᎨᎴᎢ.\nᎤᏂᏣᏘ ᎠᏂᏏᎾ ᎠᏤ ᎢᏳᎾᎵᏍᏙᏗ ᎩᎳᏈᏴ.\nᏌᏩᏂᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᏕᏲᎲᏍᎩ ᎤᎵᏨᏓᏆᏛ ᏙᎩᎸᏫᏍᏓᏏ ᎥᏝᏃ ᎪᎱᏍᏗ ᏲᏥᏂᏴ; ᎠᏎᏃ ᏂᎯ ᏣᏁᏨ ᎢᏳᏍᏗ ᏓᎬᏂ ᎠᎦᏯᎷᏗ.\nᎤᎴᏴᏏᏙᎴ ᏃᎴ ᏭᎶᎣᏎ, ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏗᏥᏴ ᏭᏅᏥᎴ.\nᎨᏥᏲᎮ ᎤᏅᏌ ᎠᏁᎲ ᎾᏍᎩᏯ ᎢᎾᎨ ᎠᏁᎯ.\nᏂᎯᏍᎩᏂ, ᎢᏓᎵᏅᏟ, ᏞᏍᏗ ᏱᏗᏥᏯᏪᎨᏍᏗ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ.\nᏞᏍᏗ ᎠᎴ ᎪᎱᏍᏗ ᎤᏁᎢᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏍᎦᏁᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎦᏪᏢᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏃᏒᎾ ᏥᎩ; ᎠᎵᎮᎵᏤᏗᏱᏉᏍᎩᏂ [ᎤᏁᎳᏅᎯ] ᎤᎬᏫᏳᏎᏍᏗ.\nᎤᏃᎴ ᎠᎭᏰᎬ ᎠᏒᎬ ᎠᎹᏱ ᎨᏴ ᏃᎴ ᏌᏬᏛ.\nᎠᎴ ᎾᏍᎩ ᏕᏥᏯᏁᎶᏛ ᎥᎩᏩᏛᏗᏱ, ᎠᏆᏚᏓᎴᏍᏙᏗ ᎠᏋᏒ ᎠᏆᏤᎵ ᎾᎩᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎬᏩᏓᏁᏗ ᏥᎩ, Ꮎ-ᏍᎩᏂ ᎦᎶᏁᏛ ᎪᎯᏳᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎬᏙᏗ ᏥᎩ.\nᎠᎴ ᎾᏍᏉ Ꮎ ᎦᎶᏁᏛ ᎤᏃᎯᏳᎯ ᎤᏂᎵᏅᏨᎯ ᏥᎩ ᎬᏩᏂᏲᏥᏙᎸᏉ.\nᎩᎳᏈᏴ ᏚᎴᏁᎢ.\nᎤᎵᏍᏆᎸᏗ ᎤᎲ ᎤᏟᏂᎬᎬ ᏲᎾᎠᎬᏱᏍᎩ, ᎤᎵᏬᏤ ᏲᎾ.\nᏧᏂᏦᏯᏍᏗ ᎤᏗᏔᏍᏗ ᎠᏓᎦ ᎠᏑᏱ ᎤᏂᏁᏁᎴᎢ, ᎤᏁᎸᏔᏅᏃ ᎥᏝ ᏳᏚᎸᎮ ᎤᏗᏔᏍᏗᏱ.\nᎠᎴ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ ᎬᏩᎾᏕ ᏯᏙᏗᏕᎩ [ᎤᏂᎷᏤᎢ; ᎠᎴ ᏕᎨᏥᏅᏩᏁᎢ.\n”ᎣᏍᏓ!” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᎴ ᏗᎨᎦᏁᎶᏗ ᏥᎩ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏔᎵ ᎢᏳᏩᎫᏗ ᏕᏥᎸᏉᏕᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎧᏃᎮᏛ ᎠᎴ ᏗᏕᏲᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᎯ.\nᏫᏚᏯᏅᎲᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᎦᏗᏙᎯ, ᏕᏁᎸ ᎠᏂᏍᎩᎾ ᏧᏂᏄᎪᏫᏍᏗᏱ, ᎠᎴ ᏧᎾᏓᏅᏬᏗᏱ ᏂᎦᎥ ᏚᏂᏢᎬ, ᎠᎴ ᏂᎦᎥ ᎥᏳᎩ.\nᏚᏯᏪᎬ ᎠᏫᎾᎨ ᏄᏍᏛ ᏗᎧᏃᏗ ᎠᎴᏉ ᎠᏫᎾᎨ, ᏩᏆᏅᏓᏛ ᎩᎳ ᏓᏳᏅᎪᏨ ᎨᏒ ᏗᏙᎴᏆᏍᏗ, ᎦᏲᏟ ᎠᏏᏀᎥ ᎤᎪᎵᏰᏗ Greek.\nᏯᎵᏖᎸᎮᏍᎬᎾ ᎦᏙᎨ ᏃᎴ ᎣᏍᏓ ᏗᎧᏃᏗ ᎤᏁᎸᏔᏁᎢ.\nᎡᏝᏪ ᎤᏰᏤ ᏲᎾ ᎤᏤᏍᏙ, ᏃᎴ ᏤᏆ ᏂᏚᎵᏍᏔᏁ ᏗᎦᏙᎵ ᎤᎨᏳᎲ ᏏᏆ.\nᎤᏛᏛᏁᏃ, ᎦᏙ ᏕᏣᏙᎥ? ᎤᏬᏎᎴᎢ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏑᎾᏓᏡᎩ ᏓᏆᏙᎥ; ᎣᎩᏣᏔᏰᏃ.\nᎠᏫᏃ-ᏗᏂᎦᏖᏯ ᎢᎤᎾᏨᏎᎢ, ᎠᏂᎸᏉᏗᏍᎨ ᎠᎴ ᎠᎾᎵᎮᎵᏤᎮ ᎤᏁᎳᏅᎯ ᏅᏗᎦᎵᏍᏙᏏᏍᎨ ᏂᎦᎥ ᎤᎾᏛᎦᏅ ᎠᎴ ᎤᏂᎪᎲᎢ, ᎾᏍᎩ ᏄᏍᏛ ᎨᏥᏃᏁᎸᎢ.\nᎠᏂᎦᏔᎿᎢᏍᎩᏂ ᏚᏂᏅᏎ ᏧᏂᏨᏍᏙᏗ, ᎠᎴ ᎾᏍᏉ ᎪᎢ ᎤᏂᏁᏨᏎ ᏚᏂᏟᏍᏔᏁ ᏗᏖᎵᏙ.\nᎦᏓᏁ ᎢᎦ, ᎤᏛᏅ ᎠᏌᎻᏓ.\nᎣᏍᏛ ᏕᏥᏁᏤᎮᏍᏗ ᎤᏲ ᎢᎨᏨᎿᏕᎩ; ᎣᏍᏛᏉ ᏕᏥᏁᏤᎮᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏍᎩᏅᏗᏍᎨᏍᏗ.\nᎤᏒᎯ ᎢᏴ ᎣᏍᏓ ᎤᎵᏍᏓᏴᏗ ᏥᏍᏕᏥ.\nᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎯᎠ ᎾᏍᎩ Ꮎ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎡᏦᎢᏳᏗᏱ ᎾᏍᎩ Ꮎ ᏅᏓᏳᏅᏏᏛ.\nᎠᏎᎩᏳ ᏯᏇᎵᏎ ᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᎠᏂᏧᏣ ᎠᏰᎵ ᏗᎳᏍᏙᏗ ᎠᎾᏗᏍᎬ, ᎠᏎᏃ ᎣᎦᎵᎪᏅ ᎨᏒ ᎠᏂᏍᎦᏯ ᎤᎾᏓᏅᏖᎸ.\nᎠᏎᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏤᎦᎳᏯ ᏞᏍᏗ ᏣᏍᎦᎸᎩ; ᎭᏓᏙᎵᏍᏗᏍᎬᏰᏃ ᎡᏣᏛᎦᏁᎸ; ᎠᎴ ᏣᏓᎵᎢ ᎵᏏ ᏓᏣᎾᏄᎪᏫᏎᎵ ᏤᏥ ᎠᏧᏣ, ᏣᏂᏃ ᏕᎯᏲᎥᎭ.\nᎦᏙᏃ ᏱᏗᎦᏥᏳᎪᏓᏁᎭ ᎾᏍᎩ ᎾᏍᏉ ᏙᏱᏗᏢ ᎠᏁᎯ? ᏝᏍᎪ ᏂᎯ ᏱᏗᏧᎪᏓᏁᎰ ᎾᏍᎩ Ꮎ ᎠᏂᏯᎢ?\nᎾᏂᎥᏰᏃ ᎩᎶᎢ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏧᎾᏘᏂᏙᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏪᏥ.\nᎤᏂᏴᏍᏗ ᎭᏫᏂ ᎠᏂᏯᎡ ᎢᎪᎯᏓ ᏩᎦ, ᏑᎾᎴ ᏯᎦᎵᎭ ᎤᏩᏌ ᏙᏱᏨ ᎤᏃᎸᏗ ᏱᎨᏒᎾ ᎧᏁᏍᎦ ᎦᏓᏍᎬᎢ ᎾᎥᏂ ᎠᏂᏙᎾᎡ.\nᎠᎧᏔᎮᎢ ᎨᏍᏗ ᎪᎯᏓ ᏳᎮᎢ.\nᎤᏁᎳᏅᎯ ᎡᏥᎨᏳᎢᏳ ᎨᏒ ᏕᏥᏂᏴᏎᏍᏗ, ᎢᏥᎦᏖᏃᎮᏍᏗ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᏂᏛ ᎠᏓᏁᎯ ᏥᎩ.\nᏚᏅᏎᏃ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᎦᏚᎲ ᎢᏍᏕᎾ, ᏙᏓᏣᏠᏏᏃ ᎠᏍᎦᏯ ᎠᏰᎮᏍᏗ ᎠᏖᎵᏙ ᎠᎹ ᎠᏟᏍᏕᏍᏗ; ᎡᏍᏗᏍᏓᏩᏕᏒᎭ.\nᎩᎳᏈᏴ ᎤᎾᏛᎦᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎬᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎠᏗᎾ ᎡᏙᏓ, ᎬᏔᏲᏎᎭ, ᎯᏅᏍᏗᏱ ᎡᏙᏓ ᏗᎦᏁᎸᎢ;\nᎤᎵᏍᎨᏛ ᎠᏓᏁᏗ ᏂᏛᏅᏁᎵ ᏔᎵᏍᎪ ᎢᏯᏔᏬᏍᏔᏅ ᎢᏴᎯ.\nᎢᏳᏃ ᎡᎶᎯ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎢᏨᏃᎮᎮᎸ ᏂᏦᎯᏳᎲᏍᎬᎾ ᏱᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏦᎯᏳᎲᎦ, ᎦᎸᎳᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ ᏱᏨᏃᎮᎮᎸ?\nᎣᏂᏃ ᎢᏴᏛ ᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ, ᎤᏂᏧᏈᏍᏗ ᏴᏫ [ᏫᏕᏥᎪᎥᎩ] ᎾᏍᎩ ᎩᎶ ᏗᎬᏩᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏅᏓᏳᎾᏙᏣᎴᏛ ᎾᏂᎥ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏗᎾᏓᏛᎿ ᎨᏒᎢ, ᎠᎴ ᏴᏫ ᏓᏁᏩᏗᏒᎢ ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᏂᏙᎾᎥᎩ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᏄᏛᏅ ᎢᎬᏱᏗᏢ, ᏧᏁᎬ ᏚᎾᏄᏩᎥᎩ, ᎠᎴ ᏗᏂᏁᎲᎩ ᏧᏪᏲᏔ ᏧᎦᏄᏓᏅᎯᏛ;\nᎾᎨᎢᏴ ᎠᎪᏩᏘᏍᎨᎢ ᏌᏌ ᏧᏬᏢ ᏫᎵᎻ.\nᎿᏉᏃ ᏥᏌ ᏧᏓᏅᏛ ᎤᏙᎴᎰᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎪᏁᎶᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᎾᏍᎩ ᎯᎠ ᏕᏦᏕᏍᏗᎭ?\nᏃᎴ ᏩᎩᏙᎵᎩ ᎦᎶᏁᏓ ᏯᏆᏓᏅᏛᎾ ᎨᏒᎢ.\n”Ꭵ, ᎪᎵᎦ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏅᎲᎢ ᎠᏍᎦᏂ ᎨᏒ ᏣᏕᏅᎩ, ᏥᎦᏃ ᎠᏴ ᎢᏍᎩᏰᏲᎲᏍᎦ? ᎥᎬᏩᏄᎪᏫᏒᎩᏃ.\n”ᎨᏍᏗ ᏯᏆᏚᎵ ᎠᎩᎵᏬᎢᏍᏗ!”\nᏧᏂᎦᏐᎠᏏᏗᏒᏃ ᎣᏓᎸᎢ, ᏚᏁᏤᎴ ᎾᏍᎩ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ ᏄᏍᏛ ᎤᏂᎪᎲᎢ, ᎬᏂ ᏴᏫ ᎤᏪᏥ ᎤᏲᎱᏒ ᏧᎴᎯᏌᏅᎯ ᎨᏎᏍᏗ ᏚᏬᏎᎴᎢ.\nᎠᎫᏴᏍᏔᎩᏍᏗ ᏱᎨᏒᎾ ᏱᎩ ᎡᎶ ᏂᎦᏓ ᏳᏩᏒᏓᏂᎸ ᏣᎫᎳᏏᏕᏅ, ᎦᏙᎭᏃ ᎤᏬᏒᏁ ᎠᏓᏴᏍᏔᎩᏍᏙᏗ ᎤᎾᏝᏅ?\nᏧᏓᏃ ᏇᎵᏏ ᎠᎴ ᏎᎳ ᎬᏩᏕᏁᎴᎢ ᏖᎹ ᏚᎾᏄᎪᏫᏎᎢ; ᏇᎵᏏᏃ ᎢᏏᎳᎻ ᎤᏕᏁᎴᎢ; ᎢᏏᎳᎻᏃ ᎡᎵᎻ ᎤᏕᏁᎴᎢ;\nᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎾᏍᎩ ᏧᏬᏪᎳᏅᎯ ᎾᏍᎩ ᏂᏕᎬᏁᎰ ᎧᏁᎢᏍᏗᏍᎪ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ; ᎾᎿ ᎤᏓᏑᏯ ᎢᎦᏛ ᎠᏍᏓᏱᏳ ᎪᎵᏍᏗᏱ, ᎾᏍᎩ Ꮎ ᏂᏭᎾᏕᎶᏆᎥᎾ ᎠᎴ ᏗᏂᏩᎾᎦᎳ ᏓᏂᏁᏟᏴᎭ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏗᏐᎢ ᎪᏪᎵ ᏂᏓᏅᏁᎲᎢ, ᎤᏅᏒᏉ ᎤᏂᏛᏗᏍᎩ ᎨᏒᎢ.\nᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎤᏂᏣᏘ ᏣᏂᏁᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎹ ᏧᏍᏆᏃᏴᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎤᏣᏘ ᏓᏴᏓᏆᎶᏍᎬ ᏥᏚᏍᏆᏃᏴᎪ ᎾᏍᎩᏯᎢ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᏱᎰᏩ ᎡᏗᎸᏉᏓ; ᎤᎬᏫᏳᎯᏰᏃ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎤᎬᏫᏳᏌᏕᎦ.\nᏣᎵ ᎤᎴᏫᏍᏔᏅ ᎤᎦᏔᎲᏒ, ᎤᎪᎮ ᏯᏓᏅᏍᎬᎾ ᏅᎩ ᏧᎾᏏᏱ ᎤᎵᏏᎩ ᎠᏲᏍᏔᏁᎲ ᎤᎧᎭᏛ.\nᏗᏥᏲᎵ, ᏕᏦᎯᏳᏎᏍᏗ ᏗᏥᎦᏴᎵᎨᎢ ᎤᎬᏫᏳᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᏚᏳᎪᏗᏰᏃ ᎾᏍᎩ ᎯᎠ.\nᎤᎾᏓᏘᏰᏁ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᎩᎬ ᎤᏂᏨᏅ, ᎠᎴ ᎩᎬ ᏕᎯᏁᏁᎸ ᎤᎾᏘᏔᏍᏗ; ᏰᎵᎦᏯᏰᏃ ᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ.\nᎬᏂᎨᏒ ᏂᏕᏣᏓᏛᏁᎮᏍᏗ ᎢᏥᏍᎦᏅᏨᏗ, ᎠᎴ ᏕᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ, ᎢᏂᏔᏲᎯᎮᏍᏗ ᏗᏣᏗᏫᏍᏗᏱ. ᎤᏙᎯᏳᎯᏯ ᎤᏰᎸᎯ ᎤᏓᏙᎵᏍᏙᏗ ᎨᏒ ᎤᏓᏅᏘ ᎠᏓᏍᏕᎵᏍᎪᎢ.\nᎾᎿᏃ ᎤᏂᏔᏛ ᎬᏬᎯᏳᏅᎩ\nᎬᏩᎷᏤᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎦᏔᎭ ᎢᎬᏱᏱ ᎢᎦ ᎡᏏᏱ ᏣᎩᎾᏄᎪᏥᎸᎩ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᏄᏍᏛ ᎠᏆᎵᏂᏙᎸ ᎢᏤᎲ ᏂᎪᎯᎸᎢ.\n”ᎤᏰᎸᏘᏃ ᎨᏍᏗ ᎩᎶ ᎫᏩᏕᏗ ᏱᎨᏎᏍᏗ ᎭᏂ ᏂᎦᎵᏍᏙᏗ ᎠᏒᎨᏍᏗ.\n”ᏤᏍᏗ ᎤᏲ ᏱᏣᏓᏅᏖᏍᏗ, ᏫᎵᎻ,” ᎤᏛᏁ.\nᎠᏎᏃ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎪᎯ ᏥᎩ, ᎾᏍᎩᏉ ᎤᏁᏨ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏓᏍᏆᏂᎪᏗ, ᎠᏥᎸᏱ ᏭᎾᎵᏰᎢᎶᎯᏍᏗᏱ ᏓᏍᏆᏂᎪᏗ ᎬᏂ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ ᎠᎴ ᎨᏥᏛᏙᏗᏱ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ.\nᏂᎦᏛᏃ ᎤᏇᏓᎵ ᏛᎪᎯ ᎤᏁᎳᏅᎯ ᎤᏓᏍᏕᎸᏙᏗ ᎨᏒᎢ.\nᏴᏫᏰᏃ ᎤᏙᎯᏳᎯ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᎲ ᎨᎦᏎᎵᏙᏗᏍᎪᎢ; ᎠᎴ ᎠᏎᎵᏔᏅᎯ ᎨᏒ (ᎪᎱᏍᏗ) ᎠᏍᎦᏱᏗᏍᏙᏗ ᎠᏲᎯᏍᏗᏍᎩ ᎨᏐ ᎠᎾᏗᏒᎯᎲᎢ.\nᏏ ᎤᎵᏏᎩ ᎨᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏧᎦᏒᏍᏗ ᏃᎴ ᎤᏓᎴᏨ.\nᎥᏝᏰᏃ ᎠᎩᏍᎦᎸᎯ ᏱᎩ ᎬᏂᎨᏒ ᎢᏨᏴᏁᏗᏱ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎢ.\n”ᏰᎵ ᎤᏍᏆᎸᎲ ᏍᏗᎷᎩ, ᎧᏩᏯ ᎨᎵᏍᎩ ᎠᎦᎸᏓ ᏍᏗᎩᏍᏗ,” ᎤᏛᏁ ᎠᎳᏂ.\nᎿᏉᏃ Ꮎ ᎾᎥ ᏗᏂᏁᎳ, ᎠᎴ ᎤᏂᎪᎯᏙᎸᎯ ᏗᎨᏫ ᎨᏒᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᎾᏍᎩ ᏱᎩ Ꮎ ᏧᏬᎸ ᎠᎴ ᏣᏚᎳᏗᏍᎬᎩ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏓᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏛ ᎤᏬᏰᏂ ᎭᏫᏂᏗᏢ ᏂᏣᏛᎾᏕᎬᎢ, ᎾᏍᎩᏃ ᎨᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ ᎠᏎᎸᎯ ᎨᏒ ᎾᎯᏳᎢ.\nᎠᎴ ᎠᏴ ᎥᏝ ᎠᏓᏅᏙ ᎡᎶᎯ ᎡᎯ ᏱᏙᎦᏓᏂᎸᏨ, ᎠᏓᏅᏙᏍᎩᏂ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ, ᎾᏍᎩ ᎣᎩᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎣᎩᏁᎸᎯ ᎨᏒ ᎤᏁᎳᏅᎯ.\nᎦᎸᎶ ᎠᎴ ᎡᎶᎯ ᏛᏂᎶᏐᏂ; ᎠᏴᏍᎩᏂ ᎠᎩᏁᏨ ᎥᏝ ᏴᏓᎦᎶᏐᏂ.\nᏭᎬᏫᏳᏒ ᎣᏍᏓ ᎤᏓᏅᏔᏕᎢ ᎰᎻ.\nᎤᏍᎪᏍᏓ ᏃᎴ ᏌᎪᏂᎨ ᎢᎦ ᎨᏒ, ᏩᏍᏛ ᎠᏦᎭᏴ ᎠᏍᏆᏚᎸ ᏫᎬᎩᏴᏍᏔᏅ, ᏦᎳᏂ ᏚᏄᏌᎥ, ᎤᎵᏏᏂᏕᏅ ᎢᏳᎵᏏᎩ.\nᏗᏂᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏂᏕᎦᏪᏎᎭ, ᎾᏍᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᏤᎵ ᎤᏃᎴ ᏥᏂᏕᎬᏁᎭ, ᎠᎴ ᎠᏥᎸ ᎠᏓᏪᎳᎩᏍᎩ ᏧᏅᏏᏓᏍᏗ ᏥᏂᎬᏁᎭ.\nᏗᎦᎷᏫᏍᏔᏅᏗᏉᏗ ᎤᏛᏅ ᎠᏌᎻᏓ.\nᏕᎪᏏᏏᏍᎬᎩ ᎠᎴ ᎬᏂᎨᏒ ᏂᎬᏁᎲᎩ ᎦᎶᏁᏛ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏲᎱᏒ ᏧᎵᎯᏐᏗ ᎨᏒᎢ; ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏥᏌ ᎠᏴ ᏥᏨᏯᎵᏥᏙᏁᎭ ᎾᏍᎩ ᎪᎶᏁᏛ, ᎠᏗᏍᎬᎩ.\nᎤᏁᏒᎯᏴᏓ ᏥᏂᎦᎵᏍᏗ ᎤᏓᏏᏂᏕᎾ ᏣᏙᏩᏗᏍᎦ ᎤᎾᏓᎪᎾᏙᏗ, ᎤᏕᎵᏓ ᎤᏅᎪᏤ ᎧᏁᏌᎢ ᏧᏍᏆᏴᏍᏗ ᎤᎧᏖᏃᎴᎢ.\nᏧᎴᎯᏌᏅᎯ, ᏣᎳᎩ ᎬᏗ ᏗᎪᏪᎳᏅ ᏂᎦᏓ ᎾᎾᎨᏎ ᎠᏤᎯ ᎢᏦᏛ ᎠᏰᎵ, ᏂᎦᏓ ᎠᏥᎶᏓ ᎨᏎ ᎤᎾᏁᏍᎨᏗ.\nᎠᎴ ᏥᏯᎵᎡᎵᏤᎭ ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏣᏆᎵᏂᎪᎯᏍᏔᏅ, ᏰᎵᏉ ᎢᎬᏩᏛᏁᏗ ᏣᏇᎵᏎᎸ, ᏣᎩᏁᏤᎸ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ ᎠᎵᏥᏙᏗ ᎨᏒᎢ,\nᎥᏝ ᎠᎴ ᎤᏩᏒᏉ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎪᏪᎳᏅᎯ ᏥᎩ, ᎾᏍᎩ [ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ] ᏣᏥᏰᎸᎾᏁᎴᎢ;\nI. ᎤᏓᎷᎸ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ  \nᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏃᏥᏲᎯᏍᏗᏍᎬᎾ ᎣᏣᎵᎡᎵᏤᎭ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᏳᏃ ᏕᏣᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎠᏴ ᏍᎩᏯᏛᎦᏁᎸᎯ, ᎥᏝ ᏴᏫᏉ ᎤᎾᏤᎵ ᎧᏃᎮᏛ ᎢᏳᏍᏗ ᏱᏗᏣᏓᏂᎸᏤᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵ ᎧᏃᎮᏛ, ᎤᏙᎯᏳᎯᏯ ᏥᎩ, ᎾᏍᎩᏯ ᏕᏣᏓᏂᎸᏨᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏣᏘ ᏥᏚᎸᏫᏍᏓᏁᎭ ᏕᏣᏓᏅᏛ ᏂᎯ ᎾᏍᎩ ᎢᏦᎯᏳᏅᎯ.\nᎪᎩ ᎠᏰᎵ ᎤᎶᏐᏅ ᎨᏎᎢ.\nᎾᏃ ᏕᎤᎴᏔᏅᎢ ᎤᏲᏞᏒᎢ ᎿᏉ ᎤᎪᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎯᎠ ᏂᎤᏪᏎᎢ; ᏓᏨᏁᎵ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᎣᏍᏛ ᎢᏳᎵᏍᏓᏁᏗ ᏕᏫ.\nᎰᎻ, ᏣᏄᏏ, ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎣᏁ ᎤᎾᎩᎸᏁ, ᎠᏦᏴ ᏚᏂᏂᏴᎮ.\nᎨᏍᏗ ᏳᏛᎦᏍᏔᎾ ᏂᎦᏪᏍᎬᎢ.\nᎢᏣᎵᎮᎵᎨᏍᏗ ᎾᎯᏳ ᎢᎦ, ᎠᎴ ᏕᏣᎵᏔᏕᎨᏍᏗ ᎢᏣᎵᎮᎵᎬᎢ; ᎬᏂᏳᏉᏰᏃ ᎤᏣᏘ ᎡᏣᎫᏴᎡᏗ ᎦᎸᎳᏗ; ᎾᏍᎩᏯᏰᏃ ᏧᏂᏙᏓ ᏂᏚᏅᏁᎴ ᎠᎾᏙᎴᎰᏍᎩ.\nᎠᏎᏃ ᎨᏥᏅᏏᏛ ᏆᏂᏆ ᎠᎴ ᏉᎳ ᎤᎾᏛᎦᏅ ᏚᏂᏣᎦᎸᎮ ᏧᎾᏄᏬ, ᎤᏂᏣᏘᏃ ᏴᏫ ᏗᏁᏙᎲ ᏫᏚᎾᏗᏢᏍᏔᏁᎢ, ᎤᏁᎷᏁᎢ,\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏓᏙᎵᏣᏘᏳ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎢᏥᏙᏓ ᎾᏍᏉ ᎤᏓᏙᎵᏣᏗᏳ ᏥᎩ.\nᎾᏍᎩ ᏤᎦᏈ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏏᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏕᎳ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᎰ ᎤᏪᏥ ᎨᏎᎢ,\nᎾᏍᎩ ᎣᎩᏁᎸᎯ ᏥᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎣᎩᏅᏏᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏧᎾᏓᏂᎸᎢᏍᏗᏱ ᎪᎯᏳᏗ ᎨᏒ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏚᏙᎩ ᏚᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ;\nᏈᏓᏃ ᎠᏥᏍᏚᎮᎢ; ᎠᏎᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᎵᏂᎩᏗᏳ ᎤᎾᏓᏅᏖ ᎠᎾᏓᏙᎵᏍᏓᏁᎮ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗᏱ.\nᏧᎾᏁᎶᏗᏃ ᎤᎾᏓᏡᎬ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏁᎢ, ᎤᏂᏅᏎᏃ ᏆᏂᏆ ᎥᏖᎣᎩ ᎢᏴᏛ ᏭᏪᏓᏍᏗᏱ.\nᎾᏍᏉ ᏂᎯ ᎾᏍᎩ ᎯᏰᏯᏙᏤᎮᏍᏗ, ᎤᎵᏂᎩᏗᏳᏰᏃ ᎤᏡᏔᏅ ᎣᏥᏬᏂᏍᎬᎢ.\nᎠᏰᎵᏉ ᎦᎸᏅ ᎤᏂᏰᎴ ᏧᏍᏆᏴᏍᏗ ᎤᏪᎵᏎ ᏃᎴ ᎦᏲᏟ ᎤᏅᏗ.\nᎢᏓᎵᏅᏟ, ᏞᏍᏗ ᏗᏥᏲᎵ ᏱᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ; ᎠᏓᏍᎦᎢᏍᏗᏍᎩᏂᏃᏅ ᎨᏒ ᏗᏥᏲᎵ ᎨᏎᏍᏗ, ᏕᏣᏓᏅᏛᏍᎩᏂ ᏗᏣᏛᎾᏯ ᎨᏎᏍᏗ.\nᎠᎴ ᎾᏍᏉ ᎡᎮ ᎩᎶ ᎢᏳᏍᏗ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎳᏏᎳ ᏧᏙᎢᏛ, ᎾᏍᏍᎩ ᎠᏥᏂᏏᏁ ᎤᏪᎿᎢ ᎤᏤᎵ ᎦᎶᎯᏍᏗᏱ, ᏧᏥᏓᎳ ᎨᏎᎢ,\nᏍᏈᏍᏓ ᏓᏆᎴᎳ ᎤᎾᏦᏛ ᎠᏂᏴᏫᏯ ᏃᎴ ᎠᏂᎱᏣ ᏗᎨᏥᎾᏌᎢ, ᎤᎾᎵᎪᎯ ᎠᏂᏲᏍᎩ ᏃᎴ ᎧᏃᎮᏓ ᏗᏂᏅᏏᏙ, ᎤᏏᏩ ᎾᏅᏁᎲ ᏣᎳᎩᏱ ᎠᏰᎵ ᏃᎴ ᎠᏂᎦᎵᎢᎲ ᎠᏤᎯ.\nᎢᏳᏃ ᎠᏩᏛ ᏫᏓᏯᏂᏍᎪ ᏥᎵᎢ ᎠᎴ ᎾᎥ ᎢᏳᎾᏓᎳ, ᎯᎠ ᏂᎦᏪᏍᎪᎢ, ᎢᏧᎳᎭ ᎢᏓᎵᎮᎵᎩ; ᎠᎩᏩᏛᎲᏰᏃ ᎠᏕᎸ ᏣᎩᏲᎱᏎᎲᎩ.\nᎠᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᏥᏂᏣᏛᏅ ᏌᏉ ᎤᏓᏑᏯ ᏛᏆᏡᏔᏂ.\nᎤᏂᎩᏒ ᎨᎵ ᏧᏚᎪᏔᏅ ᏕᎨᎦᏛᏗ ᎢᏣ.\n“ᏧᏍᏆᏴᏍᏗ!” ᎤᏪᎷᏁ ᏫᎵᎻ.\nᎾᏍᎩᏯ ᎠᏂᏍᎦᏯ ᎤᏅᏒ ᏗᏂᏰᎸ ᏂᏚᏂᎨᏳᏒ ᎾᏍᎩᏯ ᏱᏂᏚᏂᎨᏳᎭ ᏧᎾᏓᎵᎢ. ᎩᎶ ᎤᏓᎵᎢ ᏧᎨᏳᏐ ᎤᏩᏒ ᎤᏓᎨᏳᏐᎢ.\nᏣᏂᏃ ᏗᏓᏍᏚᏗᏱ ᎾᏥᏴᏔᏁᎢ, ᏥᏌ ᎨᎵᎵ ᎤᎷᏤᎢ, ᎠᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ,\nᎠᎴ ᏔᎵᏁ ᏱᎰᏩ ᎡᏗᎸᏉᏓ ᎤᎾᏛᏅᎩ. ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏧᎦᏒᏍᏗ ᏓᎴᎲᏍᎬᎩ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᏙᎾ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎠᎴ ᏫᏗᏣᎵᏥᏙᎲᏏ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏂᎥ ᎨᎪᏢᏅᎯ.\n”ᎨᏍᏗ ᎪᎱᏍᏗ ᎠᏛᏁᏗ ᏱᎩ ᎭᏂ,” ᎤᏪᎵᏎ.\nᏃᎴ ᏍᏉ ᎣᏏ ᏱᎦᎩ ᎭᏂᏉ ᏰᏙᎭ.\nᎯᎠᏍᎩᏂ ᎠᏍᎦᏯ ᏌᏉ ᎢᏳᎵᏍᎪᎸᏔᏅᎯ ᎨᏎ ᎠᏥᎸ-ᎨᎳᏍᏙᏗ ᎠᏍᎦᏂ ᎠᎫᎪᏙᏗ, ᎤᏪᏁ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎠᎦᏗᏏᏗᏢ ᎤᏁᎳᏅᎯ ᎤᏬᎸᎢ;\nᎾᏍᎩ ᎢᏳ-ᏍᏗ ᏂᏗᏧᎪᏕᏍᏗ ᏕᏣᏓᏅᏛᎢ ᎠᏏᏉ Ꭴ-ᏓᎷᎴᏍᏗ, ᎢᏣᏓᏅᏖᎯᏐᏗᏱ ᏂᎨᏒᎾ ᎢᏥᏪᏍᏗᏱ ᎢᏣᎵᏍᏕᎵᏍᎬᎢ.\nᏚᎳᏍᎬᏃ ᎠᏆᏓᏅᏅᎩ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵᏒᎩ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎥᏞᏍᏗ. ᎠᏴᏰᏃ ᎤᏠᏱᏉ ᎡᎩᏂᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎢᏣᎵᏅᏟ ᏥᎨᏒ ᎾᏍᎩ ᏥᏌ ᎤᏤᎵ ᎪᎯᏳᏗᏍᎩ ᎤᏂᎯ; ᎤᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏏ; ᎠᏙᎴᎰᎯᏍᏙᏗᏰᏃ ᎨᏒ ᎠᏓᏅᏙ ᎠᎴ ᏥᏌ ᎪᎯᏳᏓᏁᏗᏱ ᎤᏠᏱᏉ.\nᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎡᏥᏁᏉᎡᏗ ᎨᏎᏍᏗ.\nᎠᎾᏙᎴᎰᏍᎩ ᎠᏂᏔᎵᎭ ᎠᏂᏬᏂᏍᎨᏍᎩ, ᎠᏂᏐᎢᏃ ᏓᏄᎪᏗᏍᎨᏍᏗ.\nᎦᎶᏁᏛᏰᏃ ᏥᏌ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ, ᎠᎴ ᎠᎱᏍᏕᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᎾᏍᎩ ᎠᏓᎨᏳᏗ ᎨᏒ ᏧᏮᏗᏗᏐ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎤᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏍᎩᏍᏓᏩᏚᎦ. ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᏍᏆᎵᏍᎪᎸᏓᏏ ᎢᎬᏱ ᎠᏇᏅᏍᏗᏱ ᏫᏥᏂᏐᏗᏱ ᎡᏙᏓ.\nᏂᎯᏃ ᎢᏥᏃᎮᏍᎩ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ.\n“ᏃᏗ ᎤᏍᏆᎸ ᎣᎨᏅᏍᏗ ᏦᎨᏅᏒᎢ,” ᎤᏬᏎᎴ ᏏᏆ.\nᏥᏌᏃ ᎤᏙᎴᎰᏒ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᏲᎵ ᏭᏯᏅᎮ ᎠᎴ ᎤᏬᎸ ᎾᎥ ᎤᏪᎧᏁᎢ,\nᎠᎧᏔᎮᎢ ᎦᏁᏄᎵ ᏄᎾᏛᏁ ᎤᏯᏍᎬ ᎭᏫᏂ ᏃᎴ ᎤᏅᏅᎨ ᎤᏂᏅᎪᎢᏍᏗ.\nᎠᏛᏗᏍᎩ ᎨᏒ ᎠᎴ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏔᎵ ᎤᏛᏗᏕᎪ ᎠᏁᏙᎲᎢ.\nᏍᎩᏲᎢᏳᎲᎦ ᎠᏴ ᎠᎦᏴᎵᎨᎢ ᏥᏯᎥᎢ, ᎠᎴ ᎠᎦᏴᎵᎨᎢ ᎠᏴ ᎠᎩᏯᎥᎢ, ᎢᏳᏃ ᏂᏍᎩᏲᎢᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᏓᎩᎸᏫᏍᏓᏁᎲᏉ ᏫᏂᎦᎵᏍᏙᏓ ᏍᎩᏲᎢᏳᎲᎦ.\nᏩᏆᏓᏅᏖᎸ ᎢᏳᏍᏗ ᎤᏂᏃᎮᎸ, ᏰᎵ ᎠᏓᏕᏴᏙᏗ ᎾᏆᎵᏍᏔᏅ.\nᎤᏲᎢᏳ.\nᎢᏓᎵᏅᏟ, ᎤᏣᏘ ᎤᎵᎮᎵᏍᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ, ᎢᏳᏃ ᏧᏓᎴᏅᏛ ᎢᏥᎪᎵᏰᏍᎩ ᎢᏣᎵᏩᏛᎡᎮᏍᏗ.\nᎤᎯᏐᏗ ᎡᏙᎲ ᎦᏚᏏ, ᏚᎪᎮ ᎠᏂᎬᏂᎨ ᏧᎾᎩᎸᏗ ᎤᏂᏃᎯᎸᏍᏔᏁ ᎦᎸᎶᎢ, ᏧᏩ ᎤᏂᏰᏨ ᎦᏚᏏ ᎤᎾᏣᏪᏐᎸᏍᏔᏁ.\nᏚᏅᏍᏓᏕᎴᏃ ᎩᎶ ᎤᏂᏃᏁᏗᏱ; ᎠᏎᏃ ᏕᎦᏅᏍᏓᏗᏏ ᎤᏟᏉ ᎢᎦᎢ ᏓᏂᏰᎵᎯᏍᏗᏍᎨᎢ;\nᏃᏗ ᎪᎱᏍᏗ ᏄᏛᏁᎴᎢ ᎤᏍᏆᏂᎩ ᎤᏃᎯᏎ ᏫᎵᎻ.\nᎤᏔᎷᎾ, ᎤᎾᏂᎩᏐᏅ ᎨᏎ.\nᎰᏩᏃ ᎣᏂᏱ ᏥᎩ ᎬᏱ ᎨᏎᏍᏗ, ᎢᎬᏱᏃ ᏥᎩ ᎣᏂᏱ ᎨᏎᏍᏗ. ᎤᏂᏣᎳᏰᏃ ᎨᏥᏯᏅᎲ, ᎠᏎᏃ ᎠᏂᎦᏲᎵᏳ ᎨᎦᏑᏴᏒ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᏍᎩ ᎾᏴᏫᎯ ᎤᏄᎪᏨᎯ ᎾᏍᎩ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ.\nᏄᎾᎦᏌᏯᏍᏛᎾᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏂᏧᏏ ᎤᏁᏃᎮᎸᏗ ᎨᏒᎢ, ᎠᎴ ᏴᏫᏉ ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᏗᏂᎪᎸᏍᎩ ᎤᏂᏁᏨᎯ.\nᎠᏛᎯᏍᏗᏍᎩ ᏧᏆᎶᎬ ᏧᏓᏑᏴ ᎦᏙ ᎤᏓᏑᏯ ᏃᏉ.\nᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎯᏍᎦᏯ, ᎥᏝ ᏱᎪᎵᎦ ᏂᏪᏍᎬᎢ. ᎩᎳᏉᏃ ᎢᏴᏛ, ᎠᏏᏉ ᎧᏁᎨᎢ, ᏣᏔᎦ ᎤᏴᎳᏎᎢ.\n”ᎤᏲ ᏘᏰᎸᏂ-ᎤᏲ ᏘᏰᎸᏂ-ᎤᏲ ᏘᏰᎸᏂ,” ᏂᏧᏪᏎ ᏌᏌ.\nᏐᏁᎳ ᏐᏚᎯ ᏩᏍᏗ ᎤᏍᎪᏍᏗ ᎤᏓᏅᏖᎴ, ᎪᎱᏍᏗ ᎣᏍᏓ ᎠᎩᏍᏗ ᎦᏄᎳᏌᎥ ᏯᏩᏔ ᎤᏪᎵᏎᎢ.\nᎠᏓᎯ ᎧᏅᏂᏍᎩ ᎠᏏᎾ ᏧᏏᎳᏛᏗ ᎩᎶ ᎤᏪᏲᏅ ᏱᎨᏒᎾ.\nᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏄᎵᏍᏔᏅᎩ, ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎢ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ;\n“ᏤᏍᏗ ᏱᏤᎷᎨᏍᏗ ᏲᎾ ᎤᏤᏍᏙ!” ᎤᏛᏁ.\n“ᎠᏎ ᏳᏪᏝᎳ ᏣᏄᏏ, ᏗᎦᎴᏂ ᎢᏣ ᏫᎦᏩᏙᎣᏍᎪᎢ.\nᎾᏂᎥᏉ ᏚᏃᎯᏳᏎᏍᏗ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒᎢ. ᎥᏝᏰᏃ ᎠᏰᎵ ᏳᏙᏢᎭ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ; ᎠᏰᎵ ᏥᏕᎪᏢᎭ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᏗᎪᏢᏅᎯ.\nᎠᏎᏃ ᎾᏍᎩ ᎤᏟ ᎢᏯᏂᎢ ᎥᏝ ᎣᏏᏳ ᏱᏚᏰᎸᏎ ᎤᏁᎳᏅᎯ, ᎢᎾᎨᏉᏰᏃ ᎨᏥᏛᏔᏁᎢ.\nᏗᎨᎦᏁᎶᏗ ᏥᎨᏣᏓᏑᏯ ᎦᏥᏔᏲᏎᎭ, ᎠᏴ ᎾᏍᏉ ᏨᏆᏁᎶᏗ ᎠᎴ ᏥᎦᏔᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏇᏔᏗᏍᏗᏍᎩ ᎦᎸᏉᏗᏳ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏥᎩ--\nᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ ᏌᏉ ᏂᏕᏨᏅ ᏕᏣᏓᏅᏛᎢ, ᏅᏩᏙᎯᏯᏛ ᏕᏣᏓᏂᏴᏛᎢ.\nᎠᏴᏍᎩᏂ ᎢᏙᎯᏳᎲᏍᎬ ᏌᏉᎯᏳ ᎡᎭ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᎾᎿ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏨᏗᏓᎴᎲᏍᎦ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎡᏓᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ ᏥᏕᎭ; ᎠᎴ ᏌᏉᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᏤᎭ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏥᏕᎭ.\nᏌᏉ ᎾᏂᎥ ᎤᎾᎳᏅᎯ ᎠᎴ ᎤᏂᏙᏓ, ᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᏥᏕᏰᎵᏏᏕᎦ, ᎠᎴ ᏂᎯ ᏂᏥᎥ ᏥᏥᏯᎠ.\nᎡᎶᎯ ᎥᏝ ᎢᏥᏍᎦᎩ ᏱᏅᎦᎵᏍᏓ; ᎠᏴᏍᎩᏂ ᎠᎩᏍᏕᎦ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏥᏃᎮᎭ ᎾᏍᎩ ᏚᎸᏫᏍᏓᏁᎲ ᎤᏲᎢᏳ ᎨᏒᎢ.\nᏞᏍᏗ ᎠᏗᎾ ᎢᏨᏲᏪᎳᏁᎲ ᎢᏨᏍᎦᏍᏓᏁᏗᏱᏉ ᏣᎩᏰᎸᏐ ᏱᏅᏩᏍᏕᏍᏗ.\nᎨᏍᏗ ᎤᏂᏔᏲᎸ ᏱᎨᏎ, ᎤᎭᏲᎴ.\nᏣᏄᏏ! \nᎾᏍᎩ ᎢᏳᏍᏗ ᎦᏙᎵᎪ ᎾᏍᎩ Ꮎ ᏥᏯᏙᎵᎩ ᎡᎳ, ᎠᎴ ᎩᎶ ᏥᏍᏓᏱᏓ ᎡᎳ ᎠᏍᏓᏱᏗᏍᎪᎢ.\nᎠᎴ ᎫᎾᏏᎴᏅᏛ ᏴᏫ ᏙᏛᏂᏲᎯᏎᎵ ᎤᏂᏪᏢᎾᏁᏗᏱ, ᎠᎴ ᎤᏂᎵᎥᏂᏍᏗᏱ, ᎠᎴ ᎤᎾᏛᏗᏱ ᏧᏓᎿᏩᏛ ᎨᏛᎢ; ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏙᏛᎠᎴᏂ.\nᎾᏍᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏂᏰᎵᏍᎬᎢ ᎯᎠ ᎾᏂᏪᏍᎨᎢ;\nᎠᎴ ᎾᎯᏳ ᎠᏆᏓᏅᏙ ᏓᎦᏥᏯᏐᏅᏰᎵ ᎦᏥᏅᏏᏓᏍᏗ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎠᎾᏙᎴᎰᏍᎨᏍᏗᏃ.\nᎣᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎢᏳᏃ ᎡᎶᎯ ᎡᎯ ᎣᏥᏁᎸ ᎣᎩᎵᏦᏛ ᏳᏲᏨ, ᎣᎩᎭ ᎠᏓᏁᎸ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᏓᏁᎸ ᏧᏬᏱ ᏗᎬᏔᏅᎯ ᏂᎨᏒᎾ ᎠᏁᏍᎨᎲᎯ, ᎠᏲᎩ ᏂᎨᏒᎾ ᎦᎸᎶᎢ ᏗᏓᏁᎸ.\nᎥᏝᏰᏃ ᎯᎠ ᏱᏚᏂᏴᏍᏕᎭ ᏚᏂᏴᏍᏕᎭ ᏥᏤᎵᎭ, ᎠᏏᏰᏃ ᏐᎣᏁᎳᏉ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒᎢ.\nᎢᎸᎯᏢᏃ ᏩᏴᎸᎭ, ᎯᎠ ᏁᏍᏗᏪᏎᎸᎭ ᎠᏍᎦᏯ ᎦᏁᎳ, ᏗᏕᏲᎲᏍᎩ ᎯᎠ ᏂᎦᏪᎭ, ᎭᏢ ᎠᏁᏙᎯ ᎤᏂᏴᏍᏗᏱ, ᎾᎿ ᎧᏃᎯᏰᎩ ᎢᏧᎳᎭ ᎣᎦᎵᏍᏓᏴᏗᏱ ᎬᎩᏍᏓᏩᏗᏙᎯ.\nᎦᎵᏣᏙᏗ ᎦᏙ, ᏍᏈᏍᏓ ᎤᏓᏑᏲ ᎠᏛᎯᏍᏗᏍᎩ.\nᎤᏍᏘᏰᎬ ᎬᏂᎨ ᎤᏍᎪᎸ ᏂᎦᎵᏍᏗᏍᎬ, ᏗᎦᎴᏂ ᎢᏴ ᎤᏍᏙᏰᏛ ᎨᏒ, ᏏᏅᏓ ᏂᎦᎵᏍᏗᏍᎬ ᎤᏍᏙᏰᏍᎬ ᎤᏓᎵ ᏁᏂᏏ, ᎠᏰᎳᏍᏗ ᎦᏁᎦ ᏗᎦᏁᎦᎸᏙᏗ ᎬᏗᏍᎨ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎠᏂᏅ ᏗᎤᎷᏨ ᏚᏩᏛᎮ ᎠᏂᎵᏁᎢ, ᎯᎠᏃ ᏄᏪᏎᎴ ᏈᏓ; ᎦᏙᏉ, ᏝᏍᎪ ᏥᏯᏫᏍᎬ ᏌᏉ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ ᎨᏥᏯᏫᏍᏗ ᏱᎩ?\nᎠᏫᏒᎥᏍᎩ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᎷᏤ ᏓᏖᏁᎮ ᏔᎳᏚ ᎢᏯᏂᏛ.\nᏰᎵ ᎢᏰᏆ ᎤᏩᏓᎷᎦᏅ ᎨᏎ ᎩᎳ ᎤᏕᎶᎰᏎ ᎠᎳᏂ.\nᎪᎰᏍᏗ ᎠᏍᏆᏂᎪᏙᏗ ᏭᏂᎶᏎ.\nᎾᏍᎩ ᎾᏍᏉ ᎤᏛᏅ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏐᏢᎢᏍᏙᏗᏱ ᎤᏰᎸᏅᎩ. ᎾᏍᎩ ᎣᏥᏂᏴᎲᎩ ᎠᎴ ᎣᎦᏚᎵᏍᎬᎩ ᏠᎩᎧᎿᏩᏛᏍᏗ ᎣᎬᏙᏗᏱ ᎣᏥᏱᎵᏓᏍᏗᏱ.\nᎠᎴ ᎠᏂᏐᎢ ᎠᏂᏧᏏ ᎤᎾᏠᎾᏍᏔᏅᎩ ᎾᏍᏉ ᎥᎬᏩᎵᎪᏁᎸᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏆᏂᏆ ᎾᏍᏉ ᎥᎬᏩᏘᎾᏫᏛᏔᏅᎩ ᎠᎾᏠᎾᏍᏗᏍᎬᎢ.\nᎤᎴᏫᏍᏔᏅ ᏚᏟᏂᏆᏛᏅ ᎤᏍᎪᏒ ᎬᏂᎨ ᎦᏙ ᎬᎾᏍᏔ ᎬᏘ ᏃᎴ ᏧᏬᏘᏓ ᏕᎦᏰᏌᏛ, ᏧᎪᎳ ᏚᎦᏌᏛ ᏧᏬᏘᏓ ᎾᏍᎩᏯ ᏄᎦᏟ ᎠᎭᏳᎩ ᎤᏂᏴᏓ.\nᏧᏓᏏᏃ ᎢᏯᎦᎳᏗ, ᎠᏏᏴᏫ ᎾᏍᎩ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒᎢ, ᎤᏪᏅᏎ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏗᏂᏅᎢ, ᎾᏍᎩ ᏧᏲᎯᏎᏗᏱ.\nᎠᏥᏅᏏᏛᏍᎩᏂ, ᎠᏫ-ᏗᎦᏘᏯ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏫ ᏧᏤᎵᎦ ᏂᎨᏒᎾ, ᏩᏯ ᏣᎢᏒᎢ ᏩᎪᏩᏛ, ᏕᎬᏕᎪ ᎠᏫ ᎠᎴ ᎠᎵᏘᏍᎪᎢ; ᏩᏯᏃ ᏕᎦᏂᏱᏍᎪ ᎠᎴ ᏓᏗᎦᎴᏯᏍᎪ ᎠᏫ.\nᏲᎾ ᎤᏤᏍᏙ ᏚᎧᎾᏁ, ᏃᏗ ᎤᏍᎦᏃᎵ ᎤᏓᎾᏏᏅᏍᏔᏁᎢ ᏌᏌ ᎤᏬᏢ ᎢᏣ, ᎠᏦᏴᎢ ᎾᎥᏂ.\nᎠᏯᏦᎯ ᎬᏗ ᏚᏅᎦᎸᎮᎢ ᏗᎦᏙᎵ ᎠᎳᏂ.\nᎾᏍᎩ ᏧᎵᏁᎬᎬᎩ ᎤᏛᏃᏒᎩ ᎠᎴ ᎤᏰᎵᏒᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎾᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᎠᎴ ᎦᏳᎳ ᎬᏩᎪᎲᎯ ᏥᏂᎨᏎᎢ ᏥᏚᏲᏎᎢ, ᏂᎯ ᎡᏥᏂᏴᎲ ᎠᎴ ᏗᏍᎦᎾ ᏗᏦᏰᏂ ᏕᏨᏔᏅ ᎡᏣᏛᏅ ᎠᎴ ᎡᏥᎸ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᏥᏌ ᏔᎵᏁ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏔᏈᎵᏯ ᎥᏓᎸᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏂᏙᎸᎩ ᎬᏂᎨᏒ ᏄᏛᏁᎸᎩ.\nᎨᏍᏗ ᎤᏒᏂᎸ ᏱᎩ ᎤᎵᏍᏔᏴᏗ.”\nᎡᏍᎦ ᎤᏰᎸᎲ ᎠᏂᏴᏫᏯ ᏚᎾᏟᎸ ᎠᏎ ᎠᏂᎫᏌᏩᎩ ᏱᎩ. ᎠᏂᏳᏩᏁᎦ ᏯᏂᎷᎬᎾ ᏥᎨᏒ ᏗᏂᏓᎭᎣᏫ ᏥᏂᎨᏐ ᎠᏂᎫᏌᏩᎩ.\nᏓᏳᏍᏚᎢᏒᏃ ᎦᎶᎯᏍᏗ ᎠᎴ ᏓᏳᏣᏅᎢ ᎤᏣᎾᏃ ᎤᏍᏚᏅ ᎦᎶᎯᏍᏗ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᏂᎦᏛ ᏗᎬᏩᎦᏗᎴᎩ ᎤᎾᏕᎰᏎᎢ; ᏂᎦᏛᏃ ᏴᏫ ᎠᎾᎵᎮᎵᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᎦᎸᏉᏗᏳ ᎾᏍᎩ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ.\nᎥᏍᎩᏕᎲ Ꮩ ᎠᏎ ᏄᎵᏍᏔᏁ ᏭᏲᎱᏒᎮᏃ ᎢᎸᏍᎩ ᏫᏄᏒᏝ.\nᏃᎴ Havana ᏏᎦᏫ ᎪᎢ ᎠᎭᎾᏬ ᏗᏇᏅᏔᏅ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎠᏎ ᎾᏍᏉ ᏗᏐᎢ ᏕᎦᏚᏩᏗᏒ ᎦᏥᏯᎵᏥᏙᏁᏗ ᎠᎩᏃᎮᏗ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎾᏍᎩᏰᏃ ᎢᏯᏆᏛᏁᏗᏱ ᏨᎩᏅᏒ.\nᏚᏄᎪᏫᏒᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏍᏗᏍᎦᏯ, ᎦᏙ ᏓᎦᏛᏁᎵ ᎥᎩᏍᏕᎸᏗᏱ?\n”ᎠᏯᏗᏍᏉ ᎠᏉᏟ ᏍᏉ ᎡᎵᏍᏗ,” ᎤᏛᏁ ᏏᏆ.\nᎤᏏᏙᎵ ᎠᏍᏔ ᎬᏔᏅ ᎬᏅᎯ ᎠᎵᏍᏚᎶ ᎠᏆᎵᏍᏚᎳᏅ, ᎧᎸᎬ ᎠᏂᏴᏫᏯ ᎤᏂᏐᏯᏍᏔᏅ, ᎤᎵᏍᎨᏛ ᎠᎾᏓᏅᏖᎵᏙᎲ.\nᎠᏂᏫᎾ ᎠᎾᏓᏍᏔᏴᎲᏍᎬ ᎤᎵᏏᏂᏕᏅ ᎤᏂᎩᏍᏗ, ᏄᎾ, ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᏃᎴ ᏍᎨᏫ. ᎤᏲ ᏗᎧᏃᏗ ᎩᎳ ᎠᎵᏥᏍᎬ ᏧᎳᏍᎩ ᏦᎢ ᏗᎦᏅᏌᏗ ᏔᎷᎩᏍᎩ ᎤᎾᏛ.\nᎢᏳᏰᏃ ᎾᏍᎩ Ꮎ ᎠᎲᏛ ᏥᎩ ᎦᎸᏉᏗᏳ ᏱᎨᏎᎢ, ᎤᏟᎯᏳ ᏭᏓᎪᎾᏛᏗ ᎦᎸᏉᏗᏳ ᎾᏍᎩ Ꮎ ᏥᏅᏩᏍᏗᏉ.\nᎯᎠᏃ ᏧᎬ ᎡᏘᏴ ᎬᏩᎵᏬᏨ.\nᏙᏳ ᎠᎩᏠᎨ ᏩᎢᏒ ᏩᎭᏯ ᎠᎴ ᎤᎵᏰᏗᎮ.\n”ᎤᏰᎸᏗᏃ ᎠᏉᏠ ᏫᏥᎢᎦ ᎨᏒ ᎨᏍᏗ ᏂᎬᎾᏛ ᎨᏙᎢ ᏱᎩ.\nᎠᏋᏌ ᎢᏗᏋᏁᎸ ᎤᏛᏅ Mrs. Chapman.\nᎠᎴ ᎤᏣᏘ ᎠᏏ ᎢᏳᏓᎴᎩ ᎪᎱᏍᏗ ᎬᏬᏎᎮ ᎬᏩᏐᏢᎢᏍᏗᏍᎬᎢ.\nᎨᏍᏗ ᎠᎳᏑᎶ ᏱᎨᏎ ᎯᎠ.\nᎬᏩᏩᏛᎲᏃ ᎥᏓᎵ ᎢᏍᎪᏂᏗᏢ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎯᎳᎪ ᎢᏳ ᎠᏂ ᏣᎷᏤᎢ?\nᎤᏁᎳᏅᎯᏰᏃ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᏕᎤᎸᏫᏍᏓᏁᎭ ᏕᏣᏓᏅᏛᎢ ᎾᏍᎩ ᎢᏣᏚᎸᏗᏱ ᎠᎴ ᎾᏍᏉ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ.\nᎤᎾᏂᎩᏒᏃ ᎾᎿᏂ, ᎨᎵᎵ ᎠᏰᎵ ᎤᏂᎶᏎᎢ; ᎥᏝᏃ ᏳᏚᎵᏍᎨ ᎩᎶ ᎤᏙᎴᎱᎯᏍᏗᏱ.\n“ᎠᏎᏃ ᏌᎳᏓ,” ᎨᏍᏗ ᎤᏣᏓ ᎣᏍᏓ ᏱᎩ ᎠᏯ.”\nᏚᏯᏪᎨ ᏚᎵᏔᏕᏏᏙᎸ, ᎤᏓᏅᎦᎸᏓ ᎧᏁᏍᎪ ᎤᏂᏏᏁᎢ.\n “ᏣᏲᎪ ᎤᏲᏨ ᏥᏍᏆ ᎠᏯ ᏗᏆᏤᎵ ᏚᏩᏂᎦᏢ.\nᎠᎴ ᏂᎯ ᎦᎶᏁᏛ ᏧᏤᎵᎦ; ᎦᎶᏁᏛᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᏃᏗ ᏔᎵᏁ ᎱᏍᏚᎩᏎ ᎧᏁᏌᎢ, ᎤᎳᎩᏎ ᏏᏆ, ᎤᎧᏛ ᏭᎾᏓᏝᏁ.\nᏔᎵᏍᎪᎯᏍᎩ ᏧᏕᏘᏴᏓ ᎣᎭᏁ ᎩᎦᎭ ᏚᏙᏪᎳᏅ ᎦᏙ, ᎠᏯ ᎠᏰᎵ ᎢᏯᏆᏕᏘᏴᏓ, ᎦᏲᏟ ᏗᏆᏟᎸ, ᎤᏍᎦᏎᏗ ᏃᎴ ᎤᏲ, ᏓᏂᏍᏔᏲᎯᎲ, ᎠᏂᏍᎦᏯ ᎠᏂᏍᎩᎾᏗᏍᎬ, ᏎᎦᏉ ᎡᏝᏪᎯ ᏂᎦᎵᏍᏘᏍᎬ.\nᎦᎸᎳᏗ ᏭᏔᎷᎪ, ᎠᎦᏗᏓ ᏧᏏᎳᏛᏙᏗ ᎦᏅᎪᎢᏍᏗᏍᎪ, ᏃᏗ ᎦᏃᎸᎥᏍᎬ ᎤᏘᏁᎪ.\nᎨᏍᏗ ᏂᎯ ᎠᎬᏱ ᎠᏫᏂ ᏍᎩᎾᎾ ᎢᏳᏛᏁᎸᏱᎩ.\nᏑᏓᎵ ᎢᏳᏩᏂᎸ ᎤᏰᏤ, ᎤᎪᎮ ᎠᎦᏍᎬ, ᎤᏕᏯᏔᏁᎴ.\n“ᎭᏩ, ᏂᎯᏗ ᎣᏍᏓ ᎤᏍᏗ ᏏᏆ, ᏃᎴ ᏣᏔᎷᎩᏍᎩ ᎨᏎᏍᏗ.\n”ᏙᎩᎢᏳᏍᏗ? \nᎩᎶ ᏰᏥᎥᎡᎸ ᎪᎱᏍᏗ ᎤᏍᎦᏅᏨ, ᎠᏴ ᎾᏍᏉ ᏥᎥᎡᎭ; ᎢᏳᏰᏃ ᎠᏴ ᎪᎱᏍᏗ ᎠᏍᎦᏅᏨᎢ ᏱᏥᎥᏍᎦ, ᎾᏍᎩ ᏥᎥᎡᎸᎯ ᏂᎯ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏥᎥᎡᎸᎩ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ;\nᎿᏉᏃ ᏚᏂᎳᏫᏤ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏁᎲ ᏴᏫ, ᎦᏁᎸ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎧᏯᏆ ᏧᏙᎢᏛ;\nᎦᏅᎯᏓ ᎠᏍᏕᏯᏓ ᏫᎦᏓᎡᎢ ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ.\nᏴᎩ ᏫᏚᏩᏘᏁᎢ ᏗᏯᏖᏃ ᏣᏄᏏ, ᏓᏳᏏᏅᏍᏗ ᏱᎨᏒᎾ ᏫᎵᎻ.\n“Ꭷ ᏃᏗ ᏔᎵᏁ ᎢᎦᏪᏍᏗ!”\n“ᏌᎳᏓ, ᎤᏛᏁ ᏫᎵᎻ.\nᎤᏴᏣ ᎧᏫ ᎤᏅᏗ ᎠᏑᏱ ᎤᏓᏅᎵᏰᎥ ᎠᏥᏍᏙᏗ.\nᏗᎨᏥᎤᏍᏕᏎᎸᎯᏃ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎦᏛ ᏈᏓ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎤᏣᏘ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᏉ ᎨᏥᏐᏅᏰᎸ ᎨᏥᏁᎸ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\nᎣᏂᏃ ᏏᎵᏱ ᎠᎴ ᏏᎵᏏᏱ ᏩᎩᎶᏒᎩ.\nᎠᎴ ᎨᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ, ᎠᎴ ᏔᏕᏲᎲᏍᎩ, ᏔᏕᏲᎲᏍᎩ, ᎬᏩᏃᏎᏗᏱ ᏴᏫ.\nᎠᎬᏱᏣ ᏂᏚᏩᏅ ᏧᏬᏰᏂ, ᏓᏒᎭᏂᎲ ᏚᏅᏏᏴ ᎦᏍᎩᎸ, ᏗᎦᏍᎩᎶ ᏗᎧᏃᎨ, ᎧᏁᏌ ᎦᎵᏗᏓᏅ ᏦᎯᏍᏙᏗ ᏧᏃᏩ, ᎧᏁᏌᎢ ᏗᎭᎾᏬ ᏕᎦᎸᏛ.\nᎤᎾᏛᎦ-ᏅᎯᏉᏍᎩᏂᏃᏅ ᎨᏎᎢ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎾᏍᎩ Ꮎ ᎤᏲ ᏥᏂᎬᎿᏕᎬ ᏧᏩᎫᏔᏅᏒ, ᎿᏉ ᎠᎵᏥᏙᎲᏍᎦ ᎢᎧᏃᎮᎭ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩ ᎢᎸᎯᏳ ᏣᏛᏗᏍᎬᎩ.\nᎠᏎᏃ ᎤᏟ ᎦᎸᏉᏗᏳ ᎠᎩᏃᎮᏍᎩ ᎠᏇᎭ ᎡᏍᎦᏉ ᏣᏂ; ᏗᎦᎸᏫᏍᏓᏁᏗᏰᏃ ᎠᎦᏴᎵᎨ ᎠᎩᏁᎸᎯ ᎠᎩᏍᏆᏗᏍᏗᏱ, ᎾᏍᎩ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ, ᎠᎩᏃᎮᏍᎪ ᎠᏴ ᎠᎦᏴᎵᎨᎢ ᏅᏛᎩᏅᏏᏛ ᎨᏒᎢ;\n”ᎠᏤ ᏍᏔᎵᎢ ᏱᎩ, ᎠᏎᎩ ᎯᏲᏍᏓᏁ ᎤᏣᏪᏐᎸᏍᏛ; ᏃᎴ ᎠᎯᏗᎨ ᎠᏲᏍᏙᏗ ᏍᏔᎵᎢ ᎨᏒ ᎠᎬᏱ ᏯᏰᏍᏔᎾ ᏑᎾᎴᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏥᎩᎵᏲᎦ; ᎠᏎᏃ ᎥᏝ ᏱᎦᏕᎣᏍᎦ; ᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᏥᏥᏯᎵᏍᎦᏍᏙᏔᏅ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎠᏉᎯᏳᎭ ᏰᎵᏉ ᎬᏩᏍᏆᏂᎪᏙᏗ ᎨᏒ ᎾᏍᎩ ᏥᏥᏯᎨᏅᏴ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎠᏍᏆᎲᎭ.\nᎨᏓᎵᏰ ᏭᏂᎶᏎ ᎤᏂᏃᏕᎾ, ᏌᏌ ᎠᏨᏯᎢ ᎣᏁ ᎠᎢᏎ, ᎬᏄᏯᎩᏍᎨ.\nᎤᏛᎦᎾ ᏑᏓᎵᏉ ᎠᏕᎸ ᏚᎵᎬᏩᏢ, ”ᏯᎩᏩᎯ,” ᎤᏛᏁ.\nᎢᏤ ᎤᎵᏑᏫᏓ ᎨᏎ ᎤᏴᏍᏗ.\nᎤᎾᏔᏂᏗᎨ ᎠᏂᏣᏗ ᎠᎾᎵᏍᎦᏰᎬᏍᏔᏁᎮ.\nᎾᏍᎩ ᎢᏣᎵᏍᎪᎸᏓᏁᏗᏱ, ᎾᏍᎩᏯ ᎤᏪᎿᎢᏳ ᎨᏒ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎲᎢ, ᎾᏍᎩ ᎤᏣᏘ ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ ᏕᏣᏓᏅᏛᎢ ᎤᏓᏅᏙ ᎤᏮᏙᏗᏱ;\nᎠᎴ ᏥᎻ ᏤᏈᏗ ᎤᏪᏥ, ᎠᎴ ᏣᏂ ᏥᎻ ᏗᎾᏓᏅᏟ; ᎠᎴ ᎾᏍᎩ ᏉᎠᎾᏥ ᏚᏬᎡᎢ, ᎾᏍᎩ ᎠᏴᏓᏆᎶᏍᎩ ᏧᏪᏥ ᎦᏛᎦ;\nᎢᏥᏁᎫ ᎨᎴᏏᏱ ᎢᏤᎯ, ᎦᎪ ᎢᏥᎶᎾᏍᎩᏔᏅ, ᎾᏍᎩ ᎢᏦᎯᏳᏗᏱ ᏂᎨᏒᎾ ᏂᏨᏁᎸ ᎤᏙᎯᏳᎯ ᎨᏒᎢ, ᏂᎯ ᏕᏥᎧᏅ ᏥᏌ ᎦᎶᏁᏛ ᎬᏂᎨᏒ ᎾᎬᏁᎸ ᏓᏓᎿᏩᏍᏛ ᎦᏛ ᎢᏤᎲᎢ.\nᎣᏍᏓ ᏘᏰᎸᏂ ᎤᏁᏍᏓᎶᏨ ᎡᎶᎯ, ᏣᎸᏉᏗ ᏰᏃ ᎰᎺ ᏃᎴ ᎨᏍᏗ ᎡᏍᎦ ᏱᏂᏓᏨᏁᎵ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏥᏍᎦᏯ ᎨᎵᎵ ᎢᏤᎯ, ᎦᏙᏃ ᎢᏥᏙᎾᎠ ᎦᎸᎳᏗ ᏫᏙᏥᎧᎿ? ᎾᏍᎩ ᎯᎠ ᏥᏌ ᏤᏥᏯᏅᏏ ᎦᎸᎳᏗ ᏥᏫᎦᎶᎯ ᎾᏍᎩᏯ ᏅᏛᏛᏁᎵ ᏓᎦᎷᏥ ᏤᏥᎪᏩᏛ ᎦᎸᎳᏗ ᏥᏫᎦᎶᎯ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᎩᏨᏛ, ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏧᎾᏤᎵ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᎴ ᏗᏃᏪᎵᏍᎩ,\nᎠᏎᏃ ᎭᏕᎶᎰᏍᎨᎢ ᎨᏍᏗ ᎣᏍᏓ ᏱᎨᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏃᏉ---ᏍᏈᏯ ᏴᏫ.\nᎢᎬᏱ ᎾᏍᎩ ᎯᎠ ᏂᏥᎦᏙᎥᏎᏍᏗ ᎾᏍᎩ ᏌᏉ ᎤᏅ ᎠᏙᎴᎰᏒᎯ ᎪᏪᎸᎢ ᎤᏩᏒ ᎨᏒ ᏗᎬᏁᏢᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎪᏍᏘᏳᎳ ᎦᎶᎪᏗ ᏧᏙᎢᏓ ᎯᎸᎢᏴ ᏣᏂ ᎠᏃᏎᎲ.\nᎾᏍᎩ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᎩᎬ ᎠᏨᏅᎯ ᎨᏒ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᏩᏓᎴᏅᏛ ᎨᏥᏔᏲᏎᏗᏱ ᎪᎯ ᏣᏁᎭ;\nᎢᏳᏰᏃ ᏕᏫ, ᏣᎬᏫᏳᎯ, ᏱᎪᏎᎭ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎤᏪᏥ ᏱᎩ?\nᎠᎴ ᎠᎦᏴᎵᎨ ᏅᏛᎩᏅᏏᏛ ᎾᏍᎩ ᎠᎩᏃᎮᎸ. ᎥᏝ ᎢᎸᎯᏳ ᏱᎨᏣᏛᎦᏃ ᎧᏁᎬᎢ, ᎠᎴ ᏱᎨᏥᎪᎰ ᏄᏍᏛᎢ.\nᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ.\nᏥᏌᏃ ᎤᏛᎦᏅ ᏣᏂ ᎠᏥᏍᏚᎲᎢ, ᎨᎵᎵ ᏭᎶᏎᎢ.\n”ᎣᏍᏓ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎾᏍᎩ ᏎᎳᎩ ᏎᎳᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎴᎪ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏇᎵᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎯᏆ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏎᎳ ᎤᏪᏥ ᎨᏎᎢ,\nᎤᎩᏨᏛᏃ ᎤᏚᎵᏍᎬ ᎢᏳᏍᏗ ᏚᏳᎪᏛ ᎤᏙᎴᎰᎯᏍᏗᏱ ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᎠᏂᏧᏏ ᎬᏭᎯᏍᏗᏍᎬᎢ, ᎤᎸᏒᎲᎩ, ᎠᎴ ᎤᏁᏨᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏂᎦᏛ ᏗᏂᎳᏫᎩ, ᎤᎾᏓᏟᏐᏗᏱ, ᎠᎴ ᎤᏘᏃᎸᎩ ᏉᎳ, ᎠᏂᏅᎢᎬᏱᏢ ᎤᏪᎧᏅᎩ.\nᎠᏌᎻᏓ ᏃᎴ ᎠᏂᏐᎢ ᎠᏂᏲᏍᎩ ᏚᎾᏥᎭᎷᏅ, ᎤᎧᎵᎸ ᎦᏅᏃᏫ ᎤᏬᎦᏒ.\nᎤᏲᎯᏍᏔᏅ ᎪᎩᏍᎬ ᏓᏆᎧᎾᏅ, ᏂᎯᏍᎪᏃ ᏗᏘᏲᎯ? ᎤᏛᏅ.\nᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᎤᏕᎵᏗᏳ; ᎠᏎᏃ ᎦᎶᏁᏛ ᎠᎴ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎦᏥᏁᎢᏍᏗᎭ.\nᎠᎴ ᎤᏣᏛᎩ ᎤᏟ ᎢᎦᎢ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸ ᏥᏌ ᎬᏩᏍᏓᏩᏗᏙᎭ ᎠᏂᎦᏔᎲᎢ, ᎠᏂ ᎪᏪᎵᎯ ᏂᎪᏪᎸᎾ;\nᏧᎾᏓᎴᏛᏰᏃ ᏴᏫ ᏙᏛᎾᎴᏂ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᏙᏛᎾᏓᏡᏔᏂ; ᎠᎴ ᎦᏙᎯ ᏓᎵᏖᎸᏂᏙᎮᏍᏗ, ᎠᎴ ᏓᎪᏄᎶᏏᏙᎮᏍᏗ ᎠᎴ ᎤᏕᏯᏙᏗ ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ; ᎯᎠ ᎾᏍᎩ ᎠᏓᎴᏂᏍᎬ ᎠᎩᎵᏯ.\nᎤᏏᏩ.\nᎯᎠ ᏄᏪᏎᎢ; ᎦᎶᏄᎮᏛ ᎠᎴ ᎤᏁᎫᏥᏛ ᏣᎧᎵᏨᎯ, ᎠᏍᎩᎾ ᎤᏪᏥ, ᎭᏡᏗᏍᎩ ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏝᏍᎪ ᏴᏘᏑᎵᎪᏥ ᎤᏣᏘᏂ ᏂᏕᎲᏁᎲ ᏚᏳᎪᏛ ᏅᏃᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ?\nᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎠᏂᏍᎩᎾ ᎬᏩᏄᎪᏤᎸᎯ, Ꭴ-ᏍᏗᏰᏔᏁ ᎤᎵᏍᎪᎸᏓᏁᏗᏱ ᎤᏍᏓᏩᏗᏓᏍᏗᏱ; ᎠᏎᏃ ᏥᏌ ᎤᏁᏤᎴ ᎤᏓᏅᏍᏗᏱ ᎯᎠ ᏄᏪᏎᎴᎢ,\nᎦᎶᎯᏍᏗ ᎱᎷᏨ ᎠᎨᏯ, ᎨᏍᏗᏗ ᎩᎶ ᏱᏓᎪᏩᏘ ᎨᎵ ᎤᏛᏅ.\nᎡᏝᏪᎯ ᎦᏙᎨ ᏌᎳᏓ, ᎭᏫᏂᏣ ᎦᎾᎡ ᏛᎦ, ᎠᏛᏅᎢᏍᏗᏍᎨ ᎤᏩᏯᎩᏍᏗ.\nᎢᏓᎵᏅᏟ, ᎢᏨ ᏔᏲᏎᎭ ᎠᏴ ᎾᏆᏍᏛ ᎾᏍᎩᏯ ᎢᏣᎵᏍᏙᏗᏱ; ᏂᏣᏍᏛᏰᏃ ᎾᏍᎩᏯ ᎾᏆᏍᏗ ᎠᏴ, ᎥᏝ ᎪᎱᏍᏗ ᎤᏐᏅ ᎢᏍᎩᏴᏁᎸᎯ ᏱᎩ;\nᎤᏁᎳᏅᎯᏰᏃ ᎾᏍᎩ Ꮎ ᏧᏁᏤ ᎢᎦᎦᏘ ᎤᎵᏏᎬ ᏧᎸᏌᏓᏗᏍᏗᏱ, ᏚᎸᏌᏓᏗᎸ ᏦᎩᎾᏫᏱ, ᎾᏍᎩ ᎣᎩᏁᏗᏱ ᎢᎦ-ᎦᏘ ᎠᎦᏙᎥᎯᏍᏙᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎧᏛ ᏨᏗᏓᎴᎲᏍᎦ.\nᎤᏩᏒ ᎤᏓᏅᏖᏛ ᎢᎩᎾᏄᎪᏫᏒ ᎤᏩᏔᏅ ᎧᏃᎮᏛ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎠᏴ ᎢᎬᏱ ᎡᎦᏁᎳᏅᎯ ᎾᏍᎩᏯ ᎢᎦᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎨᎦᏁᎳᏅᎯ ᎨᏒᎢ.\nᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏥᏌ ᎠᏕᎸ ᏗᏍᏆᏂᎪᏗᏱ, ᎾᎯᏳ ᏓᏕᏲᎲᏍᎬ ᎤᏛᎤ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎠᎴ ᎥᏝ ᎩᎶ ᏳᏂᏴᎮᎢ, ᎥᏝᏰᏃ ᎠᏏ ᏳᏍᏆᎸᎡᎮᎢ.\nᏞᏍᏗ ᎢᏣᏓᎳᏫᏎᎸᎩ, ᏂᎯᏃ ᎥᏝ ᏴᎦᏰᎳᏫᏏ; ᏞᏍᏗ ᏗᏣᏓᏚᎪᏓᏁᎸᎩ, ᏂᎯᏃ ᎥᏝ ᏱᏙᎦᏰᏧᎪᏓᏏ; ᏕᏥᏙᎵᎨᏍᏗ ᎨᏥᏍᎦᏅᏤᎯ, ᏂᎯᏃ ᎠᏎ ᎡᏥᏙᎵᏍᏗ ᎨᏎᏍᏗ;\nᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎩᎶ ᏳᏎᎦᏤᎸ ᏳᏍᎦᏅᏨ, ᏂᎯ ᎠᏓᏅᏙ ᏗᏣᏘᏂᏙᎯ ᎡᏥᏯᏂᏐᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏳᏛᏁᎸᎯ ᎤᏓᏙᎵᏍᏗ ᎢᏣᏓᏅᏛᎢ, ᎮᏯᏔᎮᏍᏗ ᏨᏒ ᎨᏒ ᏱᏅᏎᎦᎩ ᏂᎯ ᎾᏍᏉ ᏰᏣᎪᎵᏯ.\nᏃᏗ ᎦᎸᎶ ᎢᏣ ᏩᎵᏖᎸᏂᏍᏗ, ᏚᎧᎭᏛ ᏫᏓᎪᏩᏛᏗ, ᏃᎴ ᎠᏍᏕᏯᏓ ᎠᏓᏄᏖᏲᎰ.\nᎤᏬᎯᏨᏃ ᎾᏂᎾᏄᎪᎬᎾ ᏄᎵᏍᏔᏅ ᏅᏙ ᎠᎴ ᏃᏈᏏ, ᎠᎴ ᎦᏲᎵᏉ ᏂᎨᏒᎾ ᎣᎩᏃᎸᏅ, ᎿᏉ ᎦᏲᎦᏛᏂᏗᏍᏗ ᎨᏒ ᎤᏚᎩ ᎣᎬᏒ ᎤᎵᏛᏔᏅᎩ.\nᏣᏄᏏ ᎤᎵᏍᏙᏯᎲᏎ ᏃᎴ ᎤᎾᎶᎢᏓ ᎤᎿᏬᎥᏎ ᏃᎴ ᏕᎷᎨ ᎠᏯᏨᏗ.\n“ᎭᏕᏬ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᏰᎸᎢᏰᏃ ᎤᎬᏩᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏍᏗᎩᏳ ᎠᏓᏍᏕᎵᎭ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᏗᏁᎶᏙᏗ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎬᏩᎵ ᎬᏩᏓᏍᏕᎸᏗ, ᎾᏍᎩᏰᏃ ᎠᏚᎢᏍᏗ ᎠᏥᏁᏗᏱ ᎬᏅ ᎪᎯ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏒᎢ.\nᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᏂᏗᎬᏩᏓᎴ ᏥᏳ ᏓᏈᎵᏯ ᏂᏙᏓᏳᏂᏅᏍᏔᏅᎯ ᏚᏂᏃᎸᎩ ᎾᎥᎢ ᎾᎿ ᎤᎬᏫᏳᎯ ᎤᎵᎮᎵᏨᎢ ᎠᎴ ᎤᎾᎵᏍᏓᏴᏅᎢ--\nᎾᏍᎩ ᏥᏓᏥᏲᏎ ᎠᏴ ᎢᎩᏍᎦᏅᏨ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎠᎴ ᏥᏓᎦᎴᏔᏁ ᎠᏴ ᎢᎦᏚᏓᎴᏍᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏂᎥ ᎩᎶ ᎯᎠ ᏥᏂᏥᏪᎠ ᎠᎾᏛᎩᏍᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎾᎾᏛᏁᎮᏍᏗ, ᎠᎦᏔᎿᎢ ᎠᏍᎦᏯ ᏙᏓᎦᏥᏯᏟᎶᏍᏔᏂ, ᎾᏍᎩ ᏅᏲᎯ ᏧᏁᏍᎨᎮᎢ;\nᎾᏍᎩᏃ Ꮎ ᏰᎵᏉ ᎢᎬᏩᏛᏁᏗ ᏥᎩ, ᎤᏣᏘ ᎤᎶᏒᏍᏗ ᎢᎦᎢ ᎢᏗᏔᏲᎯᎲᎢ, ᎠᎴ ᎢᏓᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩᏯ ᎤᏠᏱ ᎤᎵᏂᎩᏛ ᎨᏒ ᏥᏚᎸᏫᏍᏓᏁᎭ ᎠᏴ ᏕᎦᏓᏅᏛᎢ,\nᎠᎳᏂ ᏃᎴ ᎰᎻ ᏐᏁᎳ ᎢᏳᏩᏂᎸ ᏫᏓᏂᏅᎨᎢ.\nᏧᏍᏆᏴᏍᏗ, ᎧᏁᏍᎪ ᎦᏟᎲ ᎤᏛᎦᎾ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎤᏰᎢᏍᏔᏁ.\nᎠᎴ ᎤᏣᏛ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎡᎲ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏂᏣᏖᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒ ᎤᏁᎲ ᏛᏴᏜᏗ.\nᎡᏈᏌᏍᎩᏂ ᎨᏙᎮᏍᏗ ᎯᏍᎦᏍᎪᎯᏁ ᎢᎦ ᎢᏯᏍᏗ.\nᎢᏤᎾ; ᎬᏂᏳᏉ ᎢᏨᏅᎵ ᎤᏂᏃᏕᎾ ᎠᏂᎩᎾ ᏩᏲᎯ ᏥᏩᏂᎶᏍᎪ ᎾᏍᎩᏯᎢ.\nᏂᎦᏗᏳᏃ ᎬᏩᎸᏉᏗᏍᎨᎢ ᎠᎴ ᎠᏂᏍᏆᏂᎪᏍᎨ ᎾᏍᎩ ᏃᏒ ᎤᏬᏂᏒᎢ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏝᏍᎪ ᎯᎠ ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᏱᎩ?\nᏥᏙᎬᏉ ᎠᏘᏲᏍᏙᏗ ᏄᎵᏍᎨᏗᏴ ᎠᎫᏩᏌ ᎠᎫᏤᎵᎪ ᎦᏙ.\nᎣᏍᏛ ᎢᏓᏓᏅᏓᏓ ᎠᎴ ᎢᏓᎵᎮᎵᎩ, ᎠᎴ ᎾᏍᎩ ᎡᏗᎸᏉᏓ; ᎤᏃᏕᎾᏰᏃ-ᎠᎩᎾ ᏣᎦᏨᏍᏙᏗᏱ ᎠᏍᏆᎸ, ᎤᏓᎵᎢᏃ ᎠᏛᏅᎢᏍᏔᏃᎾ.\n“ᎨᏍᏗ ᏳᏫᏗᏣᎧᎾᎾ ᎠᎩᏍᏘᏰᎬᎢ!” ᎤᏛᏁ ᎠᎳᏂ.\n”ᏍᏇᏲᎲᎦ, ᏱᏥᏏᎳᏛᎥᎦ.\nᏧᏪᏥ ᏗᎦᏅᏙᏗ, ᏭᎬᏫᏳᏒ ᎠᏉᏒᏅ.”\nᎠᏎᏃ ᏂᎦᏛ ᎠᏂᎦᏔᎲ ᎤᏓᏱᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ ᏱᏥᎦᏔᎭ ᏂᏪᏍᎬᎢ.\nᏙᏓᏓᏛᏁᎵ ᎢᏕᎲᎢ?\n“ᎨᏍᏗ ᏂᎦᏓ ᏳᏩᎾᏔ ᏩᎭᏯ!”\nᎬᏩᎷᏤᎴᏃ ᎠᎴ ᎬᏩᏰᏍᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᏔᏕᏲᎲᏍᎩ, ᏔᏕᏲᎲᏍᎩ, ᏓᏲᏩᏗᏒᏂ! ᎿᏉᏃ ᎤᏗᏛᎮ ᎠᎴ Ꮪ-ᏍᎦᏤ ᎦᏃᎸᎥᏍᎬ ᎠᎴ ᏓᎵᏍᏗᎳᏁᎬ ᎠᎹ; ᎤᏂᏑᎵᎪᏤᏃ ᎠᎴ ᎤᏓᏥᎾᏍᏛᎯ ᏄᎵᏍᏔᏁᎢ.\nᏲᎾ ᏓᎶᏂᎨ ᎤᎵᏦᎯᏓ ᏦᎢ ᏕᎦᏰᏌᏛ ᎢᏳᎭᎨᏛ ᎦᏚᎢᏣ ᎩᎦᎨ ᎤᏇᏓᏢ, ᎤᎵᎪᎲᏍᏗ ᎠᎦᏗᏛ ᏚᎬ ᏘᎵ, ᏩᏁ ᏎᏗ, ᎫᎴ ᏃᎴ ᎧᏩᏯ .\nᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎡᎺᏅ; ᎣᏍᏛ ᎡᏣᏁᎢᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎸᏉᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎯᎦᏔᎾᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎵᎮᎵᏤᏗ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎸᏉᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏣᎵᏂᎩ-ᏗᏳ ᎨᏒᎢ, ᎠᎴ ᏣᎵᏂᎪᎯᏍᏗ ᎨᏒᎢ, ᏣᏤᎵ ᎨᏎᏍᏗ ᏍᎩᏯᏁᎳᏅᎯ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ.\nᎩᎶ ᏕᎦᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ ᏩᏛᎬᎦ.\nᎲᎦ ᏄᏍᏗ...ᏐᏉ, ᏔᎵ, ᏦᎢ, ᏅᎩ, ᎯᏍᎩ, ᏑᏓᎵ, ᎦᎵᏉᎩ.\nᏧᏂᏍᏗ ᏍᎦᏃᎵ ᎠᏁᏙᎯ ᏧᎵᏏ ᏣᎵ, ᎡᎳᏗᎨ ᎢᎾᏘ ᎠᏂᏧᏣ ᏃᎴ ᎠᏂᎨᏳᏣ ᎠᏂᏏᏴᏫᎭ ᎤᏂᏰᎶᏒ ᏣᎵ, ᏧᏃᏰᎾ, ᎤᏂᏍᏘᏰᎬ ᎠᎴ ᎤᏙᏌᏘ ᏗᏂᎦᏙᎵ - ᎣᎭᏂ ᎤᏂᎾᎵᏏᏗᏒ ᎦᏚᏏ.\nᎤᎭᎨᏛ ᎠᏙᎯ ᎦᏚᏏ.\nᏚᏁᏤᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏌᏯ ᏰᎵᏉ ᏄᏪᏒ ᎤᏙᎴᎰᏒ ᏂᎯ ᎢᏣᏠᎾᏍᏗ ᎢᏥᏁᎢᏍᏗᏍᎬᎢ, ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎯᎠ ᎾᏍᎩ ᏴᏫ ᎬᎩᎸᏉᏗᎭ ᏚᏂᎭᏁᎦᎸ ᏓᏅᏗᎭ, ᏧᏂᎾᏫᏍᎩᏂ ᎢᏅᎯᏳ ᏂᏚᏅᎿᏕᎦ ᎠᏴ ᎾᏆᏛᏅᎢ.\nᎠᎴ ᎠᏴ ᎢᏓᎵᏅᏟ, ᏫᏨᎷᏤᎸ, ᎥᏝ ᎣᏌᏂ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎠᎴ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏱᏨᎷᎯᏍᏓᏁᎴᎢ, ᎢᏨᏃᏁᎲ ᎪᎯᏳᏗᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎤᎾᏙᎴᎰᏒ ᎤᏍᏆᏂᎪᏗᏳ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᏗᏂᏲᎵ ᎤᏁᎷᎬ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎰᏌᎾ ᏕᏫ ᎤᏪᏥ! ᎤᏣᏘ ᎤᏂᏐᏅᏤᎸᎩ;\nᎠᎴ ᎦᎵᏉᎩ ᎠᏂᏴᏓᏆᎶᏍᎩ ᎤᏂᏴᏓᏆᎶᎥ, ᏓᎪᏪᎳᏂᏒᎩ; ᎠᏆᏛᎦᏅᎩᏃ ᎧᏁᎬ ᎦᎸᎳᏗ ᏓᏳᎶᏒᎩ ᎯᎠ ᏅᏛᎩᏪᏎᎲᎩ, ᏘᏍᏚᎲᎦᏉ ᎾᏍᎩ ᎦᎵᏉᎩ ᎠᏂᏴᏓᏆᏍᎩ ᏄᏂᏪᏒᎢ, ᎠᎴ ᏞᏍᏗ ᏦᏪᎳᏅᎩ.\nᏫᏥ ᎢᎦ ᎨᏒ ᎤᏂᏇᏓᏢ ᏗᏂᏴᏤᏂ ᏃᎴ ᏗᏂᏅᏬ, ᎡᏉᎯᎨ ᏄᎾᎵᏍᏘᏍᎬ ᎩᎦᎨ ᏚᎦᏌᏛ ᎤᏂᏳᏩᏅ ᎾᏍᎩᏯ ᎣᎦᎾ ᎢᏳᏍᏗ ᏧᏣᏲᏍᏗ ᏗᏂᏍᎪᎵ ᎡᎳᏗᏣ ᏗᏂᏐᎯ ᏫᎦᎶᏍᎩ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎳᏑᎳᎩ, ᎾᎿᏰᏃ ᏥᏙᎦ ᎦᎸᏉᏗᏳ ᎦᏙᎯ.\nᎾᏍᎩ ᎯᎠ ᏓᏟᎶᏍᏛ ᏥᏌ ᏚᏬᏁᏔᏅᎩ; ᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤ ᎾᏍᎩ ᏄᏍᏛ ᏚᏬᏁᏔᏅᎢ.\nᎧ ᎬᏂᏳᏉ ᎤᎬᏫᏳᎯ ᏣᏏᏔᏓ, ᎠᎴ ᏙᏘᎨᏩᏥ ᎥᏝ ᏱᎪᏩᏘᏍᎨᏍᏗ ᏅᏙ ᎢᎸᏍᎩ ᎢᎪᎯᏛ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᎵᏏᎩ ᎤᏭᏢᏁᎢ, ᎠᎴ ᎡᏙᎮ ᏚᏲᎮ ᎩᎶ ᎬᏬᏱᏂᏙᎯ.\nᎠᎴ ᎠᏂᏐᎢ ᏴᏫ ᎾᏍᎩ ᎤᏕᏯᏙᏗ ᎨᏒ ᏧᏂᎸᎯ ᏂᎨᏒᎾ, ᎠᏏᏉ ᎥᏝ ᏱᏓᏂᏁᏟᏴᏍᎨ ᏚᎾᏓᏅᏛ ᎤᏲ ᏯᏂᏰᎸᏍᎨ ᏧᏃᏰᏂ ᎬᏗ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎠᏂᏍᎩᎾ ᏧᎾᏓᏙᎵᏍᏓᏁᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ, ᎠᎴ ᏅᏯ, ᎠᎴ ᎠᏓ ᏗᎪᏢᏔᏅᎯ; ᎾᏍᎩ ᎬᏩᏂᎪᏩᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎠᎴ ᎬᏩᎾᏛᎪᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎠᎴ ᎬᏩᏁᏓᏍᏗ ᏂᎨᏒᎾ ᏥᎩ.\nᏍᏓᏯ ᎤᏓᏅᏖᎴ ᏫᎵᎻ.\nᎠᏍᏆᏗᎠ\nᎣᏂ ᏄᏍᏗᏗᏎ ᎠᏍᏓ.\nᎢᏧᎳ ᎢᏁᏆ!\nᏍᏆᏛᎦᏍᏓᏏ,” ᎡᏝᏪ ᏄᏪᏎᎴ ᏫᎵᎻ ᎠᎦᏴᎴ ᎤᏃᏕᎾ.\nᏣᏂᏰᏃ ᎥᏝ ᎠᏏ ᏗᏓᏍᏚᏗᏱ ᏯᏥᏴᏗᏍᎨᎢ.\nᎤᏂᏃᏕᎾ ᏗᏂᏐᎯᎢ ᎤᏂᎦᏍᎨᎢ.\nᎦᏥᏯᏘᏂᏓᏍᏗ ᎠᏆᏍᏉᏟᏔᏅ. Granville Towers ᏧᏙᎢᏓ ᎠᏓᏁᎳ ᎠᏂᎯᏲᎲᎢ, ᎤᏰᏟᏛᏃ ᎤᎿ ᎦᏂᎩᎸ ᎤᎾᎵᎢ.\nᎾᏍᎩ ᏰᎵ ᏗᎬᏪᏙᎵᏍᏗ ᎾᏂᎦᏔᎾᎥᎾ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᎾᎴᎾᎸᎯ; ᎤᏩᏒᏰᏃ ᎾᏍᏉ ᏚᎵᏚᏫᏍᏛᎩ ᎠᏩᏂᎦᎳ ᎨᏒᎢ.\nᎾᏍᎩ [ᎧᏃᎮᏛ] ᎬᏂᏛ ᎤᏪᎮᎢ; ᎠᎴ ᎾᏍᎩ ᎬᏂᏛ ᏴᏫ ᎢᎦ ᎤᎾᏘᏍᏓᏁᎯ ᎨᏎᎢ.\nᎢᎦ ᏒᎮᏱᏣ, ᏣᏄᏏ ᏭᎷᏤᎴ ᎰᎻ.\nᎦᏙᏃ ᎤᏛᎾᏕᎦ ᎡᎳᏆᏗ?” ᎤᏛᏛᏁ, ᎡᏆ ᏚᏍᏚᎩᏎ ᏗᎦᏙᎵ.\nᎤᏢᏲᎵᎳ ᎫᏫᏍᎫᏫ, ᎤᎴᏅᎮ ᎠᏰᎵᏒ ᎠᎹᏰᎵ ᎤᏈᏴᎡᏗ ᏏᏴᏫᏯᎯ ᏭᏚᏩᎪᏗ ᏭᏕᎵᎬ ᎢᏣ, ᎦᏙ ᏕᎦᏅᏅ ᎢᏣ.\nᎿᏉᏃ ᎠᏂᎦᏔᎯᏳ ᏄᎵᏍᏔᏅ, ᏂᎦᎥ ᎪᎱᏍᏗ ᏍᎩᏁᎸᎯ ᏥᎩ, ᏂᎯ ᏅᏓᏳᏓᎴᎲᎯ ᎨᏒᎢ.\nᏩᎦ ᏓᏂᏁᎩᎡᎲ ᎤᎾᏘ ᎦᏍᎩᎶ ᎠᏗᏅᏓ ᎤᏴᏩᏛᎮ. ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗ ᏫᎵᎻ ᎤᏴᏍᏗ ᎾᎥᏂ ᎤᏩᏍᎩᎳᏕ.\n”ᎣᏍᏓ ᎤᏒᎯ, ᏌᎳᏓ!” ᎤᏛᏁ ᏫᎵᎻ.\nᎬᏩᏓᎴᏍᎨᏍᏗ ᎨᏣᏡᏗᏍᎬ ᎯᎠ ᏴᏫ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏗᏁᎲ ᎿᏉ ᎬᏅᎵ,\nᎤᏓᏌᎧᏰᏃ ᎣᏥᎩᎵᏲᎬ ᏞᎦᏉ ᏥᎩ ᎣᎩᏩᏛᎡᎭ ᎤᏣᏘ ᎤᎶᏒᏍᏔᏅᎯ ᎢᏳᏓᎨᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎦᎸᏉᏗᏳ ᎨᏒᎢ;\nᎡᎳᏗ ᎠᎧᏁᎮ ᎠᎵᏍᏛᏧᏍᏗ.\nᏚᎾᏛᏛᏅᎩᏃ, ᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠᏍᎪ ᏂᎯ ᎢᏍᏕᏥ, ᎾᏍᎩ ᏗᎨᏫ ᎤᏕᏅᎩ ᏥᏍᏓᏗᎭ? ᎦᏙᏃ ᎤᎵᏍᏙᏔᏅ ᎪᎯ ᏣᎪᏩᏘᎭ?\nᎤᏁᎳᏅᎯᏰᏃ ᎤᏓᏁᏗ ᎨᏒ ᎠᎴ ᎤᏓᏯᏅᏗ ᎨᏒ ᏝᏉ ᎤᏰᎸᏗ ᏂᎨᏒᎾ ᎨᏐᎢ.\nᎢᏥᏁᎫ ᎠᎴ ᏗᏥᎨᏫ! ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ, ᎠᏕᎸᏍᎪ ᏓᎶᏂᎨᎢ, ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱᎨ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏥᏂᎬᏁᎭ ᎠᏕᎸ ᏓᎶᏂᎨᎢ?\nᎾᏍᎩ ᎢᏥᎷᏤᎸᎯ ᏥᎩ, ᎾᏍᎩᏯ ᏂᎬᎾᏛ ᎡᎶᎯ ᏧᏂᎷᏤᎸ; ᎠᎴ ᏥᎦᎾᏄᎪᏫᏍᎦ ᎤᏓᏔᏅᎯ ᎾᏍᎩᏯ ᏥᏂᎦᎵᏍᏗ ᏂᎯ ᎢᏤᎲᎢ, ᏅᏓᎬᏩᏓᎴᏅᏛ ᎢᏣᏛᎦᏅ ᎾᏍᎩ, ᎠᎴ ᎤᏙᎯᏳᎯ ᎢᏥᎦᏙᎥᏒ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ;\nᎾᎿᏃ ᎠᎾᏓᏅᏟ ᏗᎪᎦᏛᎦᏅ, ᎡᏈᏲᎢ ᎢᏴᏛ ᎠᎴ ᏦᎢ-ᎢᏗᎵᏍᏓᏴᏗᏱ ᏕᎪᎦᏠᏏᎸᎩ; ᏉᎳ ᎾᏍᎩ ᏚᎪᎲ ᎤᎵᎮᎵᏤᎸᎩ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᎦᎵᏍᏗ ᎤᏓᏅᏓᏛᎩ.\nᏈᎵᎩᏃ ᎾᎿ ᏭᏗᏠᎸ ᎤᏛᎦᏁ ᎠᏙᎴᎰᏍᎩ ᎢᏌᏯ ᎠᎪᎵᏰᏍᎬᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ; ᎰᎵᎦᎨᎵ ᎾᏍᎩ ᏥᎪᎵᏰᎭ?\nᎠᏂᏆᎵᏏᏃ ᎠᎴ ᏗᏄᏪᎵᏍᎩ ᎤᏂᏐᏅᏤᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎠᏍᎦᏯ ᏓᏓᏂᎸᎪ ᎠᏂᏍᎦᎾᎢ, ᎠᎴ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎪᎢ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏣᎵᏍᏓᏴᏄᎦ. ᎥᏝᏃ ᎩᎶ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ, ᎦᎪ ᏂᎯ, ᎬᏬᏎᏗ ᏱᎨᏎᎢ, ᎠᏂᎦᏔᎲᎩᏰᏃ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏱᏓᎩ ᎩᎶ ᎾᏍᎩ ᎢᎦᎢ ᎦᏚ ᎠᏂ ᎢᎾᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏰᎵ ᎬᏩᏂᏛᏓᏁᏗ.\nᎠᎧᏘᏏ ᎢᏣ ᎦᎸᎳᏗ ᏚᏏᎳᏛ ᏭᎩᎶᏫᏎ ᏌᎳᏓ.\nᎦᏙᏓᎦᎵᏍᏔᏂ ᎠᏇᎵᏒ, ᎣᏍᏓ ᎠᏉᏪᎳᏅ ᎪᏪᎵ ᏩᎩᏅᏅ, ᎧᏃᎮᏍᎩ ᏲᎾ ᏧᏤᎵ ᏴᏫ ᎠᏁᎯ ᎨᏒ ᎡᏆ ᎦᏚᎲ, ᏂᎦᏓ ᏚᏓᏓᏍᎬ ᏫᏓᎩᏅᏅ ᎠᏰᎵ.\nᎾᎨᎢᏴ ᏫᏚᎪᎮ ᎠᏂᎴᏴᏍᎩ ᏃᎴ ᎠᏂᎪᏕᏍᎩ ᏗᎾᎢᏒ.\nᎠᏛᎪᏗ ᎨᏎ “ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᎲᏳ!”  ᎤᎵᏍᏗ ᎦᎷᎨ ᏫᎵᎻ ᏗᎦᎴᏂ.\nᎠᎴ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎦᎶᏁᏛ ᎤᏓᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏥᎦᎶᏒᏍᏗᎭ, ᎾᏍᎩ ᎡᏥᎧᎵᎢᏍᏙᏗᏱ ᎾᏍᎩ ᏂᎦᏛ ᎠᎧᎵᎢ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏝᏍᎪ ᏂᎦᏛ ᎯᎠ ᏱᏗᏥᎪᏩᏘᎭ? ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎥᏝ ᏌᏉᎤᏅ ᏅᏯ ᎠᏂ ᏱᏚᏓᏌᏝᎮᏍᏗ ᎾᏍᎩ ᏂᎪᎲᏔᏅᎾ ᏱᎨᏎᏍᏗ.\n“ᎭᏓᎾᏫᏓᏓ!” ᎤᏪᎷᏁ ᏌᎳᏓ.\nᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏎᎢ ᏅᏓᏳᏂᎶᏒᎯ ᎨᎵᎵ, ᎠᏍᎪᎯᏃ-ᎦᏚᎩᏱ, ᎠᎴ ᏥᎷᏏᎵᎻ, ᎠᎴ ᏧᏗᏱ, ᎠᎴ ᏦᏓᏂ ᏍᎪᏂᏗᏢ.\nᎪᎱᏍᏗ ᏧᏅᎾ ᏂᏚᏂᎨᏳᏒᎾ, ᏄᏃᎯᏍᏘᏒᎾ, ᎤᏐᏅ ᎠᎾᏓᏃᎮᎵᏙᎯ, ᏄᎾᎵᏏᎾᎯᏍᏛᎾ, ᎤᏂᎿᎸᎯ, ᎠᏂᏍᎦᎩ ᎣᏍᏛ,\nᏫᏥᎢᎦ ᎨᏒ ᎣᏍᏓ ᏥᏰᎸᎥ Crockett, ᏂᏛᏓᎴᏂᏍᎬ ᏴᏫ ᎤᏁᏓᏍᏗ, ᎤᎯᏐᏗ ᏄᏍᏛ ᎠᎰᎵ ᏃᎴ ᏧᎵᏬᏨ ᎢᏧᏍᏗ ᏗᎦᏙᎵ.\nᏂᎦᏛᏃ ᎬᏩᎦᏔᎯ ᎨᏒ ᎠᎴ ᎠᏂᎨᏴ ᎨᎵᎵ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎢᏅ ᏧᎾᎴᏅᏁᎢ ᎠᏂᎪᏩᏘᏍᎨ ᎾᏍᎩ ᎯᎠ.\nᎡᏙᏓ, ᎯᎸᏉᏓ ᏕᏣᏙᎥᎢ. ᎿᏉᏃ ᎦᎸᎳᏗ ᏓᏳᏁᏨᎩ, ᎯᎠ ᏅᏓᏳᏪᏒᎩ; ᎦᏳᎳ ᎠᎩᎸᏉᏔᏅ, ᎠᎴ ᏔᎵᏁ ᏛᏥᎸᏉᏔᏂ.\nᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ.\nᎾᏍᏉᏍᎩᏂ ᎢᏥᏍᏘᏰᎬ ᎢᏥᏍᎪᎵ ᏂᎦᏗᏳ ᏗᏎᎸᎯ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎯᎠ ᎾᏍᎩ ᏥᏄᏍᏗ ᏥᏨᏲᏪᎳᏁᎭ ᎠᎩᎪᏁᎸᎢ, ᎾᏍᎩ ᎾᎯᏳ ᏥᎦᏔᎮᏍᏗ ᎬᏍᎦᎢᏍᏓᎩ ᎠᏋᏔᏂᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏯ ᎢᎬᏆᏛᏁᏗ ᎠᏆᎵᏍᎪᎸᏓᏁᎸ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᏧᎾᎵᏂᎪᎯᏍᏗ ᎨᏒᎢ, ᎥᏝᏃ ᎤᏂᏛᏙᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ ᎾᏍᎩ ᎾᎿ ᏂᏕᎩᎾᏝᎥᎾ ᎨᏒ ᎦᎶᏁᏛ ᏂᎦᎩᎾᏝᎥᎾ ᏂᎬᏁᎸᎢ, ᎠᎴ ᏞᏍᏗ ᏔᎵᏁ ᏥᎡᏥᎩᎳᎾᎳᏗᏍᏔᏂ ᎠᏓᎾᏢᎥᏍᎩ ᎠᎩᎳᎾᎶ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎯᎠ ᏄᏪᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎾᎥᎢ, ᏓᎦᏥᏅᏏ ᏫᎬᏩᏂᎷᏤᏗᏱ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎨᏥᏅᏏᏛ, ᎾᏍᎩᏃ ᎢᎦᏛ ᏙᏛᏂᎵ ᎠᎴ ᏙᏛᏂᎨᎯᏙᎵ,\nᎠᏂᏔᎵ ᎠᏂᏴᏫᏯ ᏚᎾᏓᏂᏴᎲ ᏃᎴ ᎦᏙᎯ ᎤᎾᏟᎸ, ᎠᏂᏲᏍᎩ ᏗᏂᏃᎨᏂ ᏚᏂᏂᏴᎲ ᏚᎾᎦᎴᏅᏔᏅ.\n”ᎤᏙᎯᏳᎯᏍᎪᏃ ᏂᏪᏍᎨ ᏥᏍᎩᏚᎢᏍᏓᏁᎲ, ᏔᎴᏫᏍᏓᏁᏗ ᎬᎩᏍᏗ?”\nᎯᏍᎩᏰᏃ ᎾᏂᎥ ᎣᏣᎵᏅᏟ ᎠᏁᎭ; ᎾᏍᎩᏃ ᏱᏫᏕᎧᏃᎲᏏ ᎾᏍᏉᏰᏃ ᎠᏂ ᎠᎩᎵᏲᎢᏍᏗᏱ ᎨᏒ ᏯᏂᎷᎩ.\nᎤᏙᎯᏳᎭᏍᎪ ᏥᏂᎦᏪ ᎠᎦᏴᎵ ᎤᏃᏕᎾ ᏌᎳᏓ? ᎤᏙᎯᏳᎯᏧ ᏓᎬᎩᎵ ᎤᏴᏣ ᏂᎦᎵᏍᏔᏅ?”\nᏞᏍᏗ ᎠᎦᏴᎵᎨᎢ ᏓᎧᏃᏁᎵ ᏓᏲᎫᎯᏍᏔᏂ ᏱᏍᎩᏰᎵᏎᎮᏍᏗ; ᎠᏏᏴᏫ ᎡᎭ ᎢᏧᎯᏍᏗᏍᎩ, ᎼᏏ, ᎾᏍᎩ ᏤᏣᏁᎶᏗ ᏥᎩ.\nᎠᎴ ᎾᎯᏳ ᏥᏨᏰᎳᏗᏙᎲᎩ ᎠᎴ ᎠᏆᏚᎸᎲᎥᎦ, ᎥᏝ ᎩᎶ ᏯᏆᎫᏱᏍᎨᎢ; ᎾᏍᎩᏰᏃ ᎠᎩᏂᎬᏎᎲᎢ, ᎣᏣᎵᏅᏟ ᎹᏏᏙᏂ ᏅᏓᏳᏂᎶᏒᎯ ᎬᎩᏁᎲᎩ; ᎠᎴ ᏂᎦᎥᏉ ᎠᏆᏟᏂᎬᏁᎸ ᎢᏨᏐᏈᎸᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏏᏉ ᎾᏍᎩ ᏂᎦᏛᏁᎮᏍᏗ.\nᏚᎦᏗᏍᏛ ᎠᏌᎻᏛ, ᏗᎩᏣᏗ ᏭᎳᎩᏒ ᎠᏥᏍᏙᏗ, ᎦᏅᎯᏓ ᎤᏗᏔᎲ, ᏭᏍᏚᏅ ᏗᎩᏣᏗ.\nᏏᏆ ᎤᏂᎯᏍᏗ ᏱᎩ, ᏂᎦᏓ ᏓᎾᎵᏍᏕᎵᏍᎪ.\nᏗᏂᏁᏥ ᏃᎴ ᏗᏂᏅᏬ ᏚᎾᏐᏓᎸ ᏧᏂ ᏍᏔᏲᏍᏙᏗ.\nᎾᏍᎩᏃ ᎠᏓᏅᏙ ᎬᏗ ᎢᎾᎨ ᏩᏆᏘᏅᏍᏔᏅᎩ; ᎠᎨᏴᏃ ᎥᏥᎪᎲᎩ ᎩᎦᎨ ᏗᎧᏃᏗᏱ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᎩᎸᏛᎩ ᎾᏍᎩ ᎤᎧᎵᏨᎯ ᎨᏒᎩ ᎤᏁᎳᏅᎯ ᏚᏙᎥ ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ ᎦᎵᏉᎩ ᏓᏍᎫᏓᏛᎩ, ᎠᎴ ᎠᏍᎪᎯ ᏕᎤᎷᎬᎩ.\nᎠᏗᏍᎩᎳ ᎠᏁᎰ ᎭᎾᏛᏅ ᎤᎿᏯ ᎠᎾᏗᎲ ᎢᎸᎯᏳ ᏥᎨᎲ ᎾᎥ ᏩᎩᎶᎯᏍᏗ ᏥᎨᎲ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪᎭ, ᎾᎯᏳ ᏚᎴᏅᎦᎸᎳᏗ ᏭᎶᏒ, ᏚᏴᎩᏁ ᏗᎨᏥᏴᎩᏅᎯ, ᎠᎴ ᏚᏁᎴ ᏴᏫ ᎤᏓᏁᏗ ᎨᏒᎢ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᏗᏁᎶᏙᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ, ᎾᏍᎩ ᎤᏣᏘ ᎨᏅᎢᏍᏗ.\nᎡᏥᎸᏉᏗᏍᎨᏍᏗᏍᎩᏂ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏙᏗᏣᏓᏅᏛᎢ. ᎠᎴ ᏯᏃᏉ ᎢᏨᏛᏅᎢᏍᏕᏍᏗ ᎾᏂᎥ ᎩᎶ ᎨᏣᏛᏛᎲᏍᎩ ᎤᏚᎩ ᎢᏨᏒ ᎤᎬᏩᎵ, ᏗᏥᏃᏁᏗᏱ ᎤᏓᏅᏘ ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᎨᏒ ᎢᏨᏙᏗᏱ.\nᏰᎵᏉᎨ ᎠᏂᏧᏣ ᏱᏕᎯᏃᎯᏏ ᎤᏛᏅ ᎠᏌᎻᏓ.\nᎯᎠ ᎾᏍᎩ ᎤᏂᎪᏁᎶᎯᏌᏘ, ᎤᏁᎵᎯᏍᎩ, ᎤᏅᏒ ᎤᎾᏚᎸᏅᎥᏍᎬ ᎠᏂᏍᏓᏩᏕᎩ; ᏗᏂᎰᎵᏃ ᏓᏅᏗᏍᎪ ᎤᏣᏘ ᎠᏢᏈᏍᏗ ᎠᏂᏬᏂᏍᎪᎢ, ᏴᏫ ᏚᎾᎧᏛ ᏓᏂᎸᏉᏗᏍᎪ ᎣᏍᏛ ᎢᎬᏩᎾᎵᏍᏓᏁᏗ ᎤᏚᎩ ᎤᏅᏒ ᎢᏳᏍᏗ.\nᎤᏙᏳ ᏓᎩᏯᏪᎦ ᏃᎴ ᏥᎾᏬᎦ ᎨᏍᏗ ᎬᏆᏁᎸᏙᏗ ᏱᎩ ᎠᏇᏅᏍᏗ.\nᎾᏃ ᎤᎾᏓᏅᏘ ᏗᏍᏕᎸᏗᏱ ᎤᎬᏩᎵ, ᎠᏎᏉᏉ ᏱᏨᏲᏪᎳᏁᎭ.\nᎠᏎᏃ ᏚᏂᏅᎪᎥᏓᏁᎴᏉ ᎪᏍᏚ ᏧᎾᎳᏏᏕᏂ ᎤᏓᏅᎵᏰᎥᎢ, ᎢᎪᏂᏯᏃ ᏭᏂᎷᏤᎢ.\nᎠᏎᏃ Ꮳ ᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ.\nᎠᏂᏧᏏᏃ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎠᎴ ᏄᏂᏪᏒᎩ; ᎦᏙ ᎤᎵᏍᏙᏔᏅ ᎯᎠ ᎠᏍᎦᏯ ᎪᏪᎵ ᏗᏏᎾᏏᏳ ᏥᎩ, ᏧᏕᎶᏆᎥᎯᏃ ᏂᎨᏒᎾ?\nᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏌᏉ ᎢᎦᎦᏛ ᎾᏂᏲᎯᏍᏗᏍᎬᎾ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᎢ ᎠᎴ ᎠᏂᏔᏲᎯᎮᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎨᏒ, ᎠᎴ ᎺᎵ ᏥᏌ ᎤᏥ, ᎠᎴ ᏥᏌ ᎠᎾᎵᏅᏟ.\nᏫᏥᎢᎦ ᎨᏒ ᏕᎦᏅᏅ ᏅᏯ ᎬᏗ ᏓᏰᏍᏓᎡ, ᎢᎪᎯᏓ ᎠᏛᎪᏗ ᎨᏎ ᏓᏆᎴᎸ ᏕᎦᏆᏛ ᏔᎷᎩᏍᎩ ᏓᏢᏍᏛ, ᎤᏒᎯ ᏐᏈᎵ ᏚᎾᎳᏑᎸ ᎠᏥᎳ ᎦᎾᏅᎪᎨ.\n”ᏁᎳᎩ ᎨᏎᏍᏗ ᏫᎵᎻ!” ᎤᏛᏁ.\nᎠᏎᏃ ᏥᎦᏔᎭ ᎾᏍᏉ ᎪᎯ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᏱᏔᏲᏎᎸ ᎤᏁᎳᏅᎯ, ᏣᏁᏗᏉ ᎨᏒ ᎤᏁᎳᏅᎯ.\nᎠᎴ ᏂᎦᏛ ᎤᏤᏪᏅ ᎤᏣᏘ ᏚᎪᏄᎶᏎ ᎾᎿᏂ, ᎿᏉᏃ ᎤᎴᏅᎮ ᎤᏚᎸᎲᏁᎢ.\nᏈᏓᏃ ᏔᎵᏁ ᎤᏓᏱᎸᎩ. ᎩᎳᏉᏃ ᎢᏴᏛ ᏣᏔᎦ ᎤᏴᎳᏒᎩ.\nᏰᎵᏉ ᏱᏥᏍᏆᏂᎪᏓ ᎬᏅᎢ ᏫᎵᎻ,” ᎤᏪᎵᏎ.  ᏓᏥᎶᏅᎮᎵ ᎰᎻ.\nᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᏐᏉ ᎢᏯᏏᏔᏛ ᎠᎹ ᎠᏥᏍᏕ.\n”ᏥᏍᏕᏥ ᏱᎩ ᏥᏍᏕᏥ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎨᏍᏗ ᏏᏆ ᏦᏍᏓᏁᎶᎲᏍᎩ ᏱᎩ.”  \nᎤᏂᎪᎲᏃ ᎾᏍᎩ ᏃᏈᏏ, ᎤᎶᏔᏅᎯ ᎤᎾᎵᎮᎵᏤᎢ.\nᎢᏳᏰᏃ ᎢᎬᏒ ᏱᏗᏓᏓᏚᎪᏓᏁᎭ, ᎥᏝ ᏱᏙᎦᏰᎫᎪᏓᏏ.\n“ᎩᎳ ᎠᎬᏱ ᏓᎨᏏ ᏧᎦᏃᏮ ᏗᏣ ᎠᏮᏅᎦ ᎠᏆᏕᎶᎰᎯᏍᏗ Ꭳ!\nᎤᎬᏫᏳᎯᏍᎩᏂ ᏄᏓᎵᏓᏍᏛᎾ, ᎾᏍᎩ ᏨᏓᏣᎵᏂᎪᎯᏍᏔᏂ, ᎠᎴ ᏨᎵᏥᏲᏍᏙᏓᏁᎵ ᎤᏲ ᎢᏣᏛᏁᏗᏱ.\nᎦᏳᎳ ᏧᏭᎪᏔᏅ ᎨᏎ ᎧᏂᎩᏓ ᎢᏳᎵᏍᏙᏗ ᎠᏂᏴᏫᏯ.\n”ᏣᏉ ᎨᏎᏍᏗ,” ᎤᏛᏁ.\nᎠᏇᎵ ᎡᏥᏲᎵᎸᎭ, ᏣᎦᏓᏂᎸᏨᎯ ᎦᎶᏁᏛ ᎪᎯᏳᎲᏍᎩ ᎨᏒᎢ. ᎡᎵᏍᏓᏊᎳ ᏚᏓᏘᎾᎥ ᎠᏁᎳ ᏕᏥᏲᎵᎸᎭ.\nᎾᏍᎩ ᎾᏍᏉ ᏥᏣᎵᏍᏕᎸᏙᏗ, ᎢᏳᏃ ᎠᏍᏓᏯ ᏱᏗᏥᏂᏴ ᎾᏍᎩ ᏥᏨᏯᎵᏥᏙᏁᎸᎩ, ᎢᏳᏍᎩᏂᏃᏅ ᎠᏎᏉᏉ ᏱᎩ ᎢᏦᎯᏳᏒᎢ.\nᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎠᎴᏂᏍᎬ ᎨᏒ ᎠᎩᎵᏯ ᎨᏒᎢ.\nᎠᏎᏃ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏯᏅᏒᎯ ᎦᎸᎳᏗ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᏭᎪᎮ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᏥᏌ ᎦᏙᎨ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏᏗᏢ;\nᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᎭᏓᎶᎥᏓ ᏨᏒ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎪᏪᎳ; ᎠᏎ ᏙᏓᎧᏁᏤᎵ ᎫᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏂᏌ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏧᏃᏰᏂ ᎨᏣᏌᎳᏙᏕᏍᏗ ᎾᏍᎩ ᎢᎸᎯᏳ ᏅᏲᎯ ᏣᎾᏍᏆᎶᏍᏙᏗᏱ ᏂᎨᏒᎾ.\nᎠᎴ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᏳᏃ ᏂᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ, ᏨᏒ ᎭᎵᏍᏕᎸ.\nᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᏍᎩᏗᏍᎨᎢ ᎡᎳᏆᏗ ᏃᎴ ᎦᎸᎳᏗ ᎤᎴᏫᏍᏔᏅ ᏓᏆᎴᎳ ᎤᏦᏛ.\nᎥᎥ, ᎡᏙᏓ, ᎾᏍᎩᏰᏃ ᎣᏏᏳ ᏣᏰᎸᏅᎯ.\nᎤᏂᎩᏎᏃ, ᎠᎴ ᎤᎴᏅᎮ ᏚᏃᏣᎳᏁ ᎠᏍᎪᎯ-ᎢᎦᏚᎩᏱ, ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏥᏌ ᏄᏛᏁᎸᎢ; ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏎᎤᏂᎩᏎᏃ, ᎠᎴ ᎤᎴᏅᎮ ᏚᏃᏣᎳᏁ ᎠᏍᎪᎯ-ᎢᎦᏚᎩᏱ, ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏥᏌ ᏄᏛᏁᎸᎢ; ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏎᎢ\nᎠᎴ ᎥᏝ ᎾᏍᎩᏉ ᏱᏂᎦᎥ, ᎾᏍᏉᏍᎩᏂ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏁᎶᏗ ᎬᏩᏑᏰᏒᎩ ᎠᏴ ᎢᏧᎳᎭ ᎣᎨᏅᏍᏗᏱ ᎣᎩᏴᏍᏗᏱ ᎯᎠ ᎾᏍᎩ ᎠᏓᏁᏗ, ᎾᏍᎩ ᏥᏙᎩᎸᏫᏍᏓᏁᎭ, ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎬᏫᏳᎯ ᎤᏩᏒ, ᎠᎴ [ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗᏱ] ᎢᏣᎵᎦᎵᏴᏒ ᏙᏗᏣᏓᏅᏛᎢ;\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏕᎾ ᎢᏨᏒᏉ ᎢᏴᏛ ᏫᏗᎶᎯ ᎢᎾᎨ ᏗᎨᏒᎢ, ᎠᎴ ᏞᎦ ᎢᏣᏣᏪᏐᎸᏍᏓ; ᎤᏂᏣᏖᏰᏃ ᎠᏂᎷᎨ ᎠᎴ ᏓᏁᎨᎢ, ᎥᏞᏃ ᏯᏜᏅᏓᏗᏍᎨ ᎾᏍᏉ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎢᎪᎯᏛ.\nᎠᎵᏍᏙᏗ ᎠᏰᎾᎡ--- ᎦᎶᏇ ᏃᎴ ᎦᏅᎯᏓ ᎠᏰᎳᏍᏗ ᎠᏓ ᎪᏒᏔᏅ.\nᎭᏣᏪᏐᎸᏍᏓ ᎠᎦᏎᏍᏙᏗ, ᏐᏉ ᎠᏆᏤᎵ ᏃᎴ ᎤᏩᏌ, ᎭᏫᏂ ᏗᎩᏏ ᏃᎴ ᎤᎵᏏᎩ!”  \nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎲᏂᏗᏳ ᎨᏎᏍᏗ ᎯᎩᎵᏲᎬᎢ, ᎾᏍᎩᏯ ᎣᏍᏛ ᎠᏯᏫᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ.\nᎦᏘᏲᎯᎲ ᎠᎫᏤᎵᎪ ᎦᏙ, ᎨᏍᏗ ᎩᎦ.\nᏃᎴ ᏄᏓᎴ ᎱᏃᎮᎸ ᏣᎵ ᎠᏤᎯ ᎧᏃᎮᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎬᏪᏎᎭ ᎤᏍᎦᏅᏨ, ᎾᏍᎩ ᏧᏈᏯ ᏥᎩ, ᎠᏥᏙᎵᎩ, ᎤᏣᏘᏰᏃ ᎤᏓᎨᏳᏎᎢ; ᎩᎶᏍᎩᏂ ᎤᏍᏗ ᎠᏥᏙᎵᏨᎯ, ᎾᏍᎩ ᎤᏍᏗ ᎤᏓᎨᏳᏐᎢ.\nᎾᏃ ᏥᎬᏔᏲᏎᎸᎩ ᏣᏗᎩᏯᏍᏗᏱ ᎡᏈᏌ, ᎹᏏᏙᏁ ᏥᏩᎩᎶᏒᎩ, ᎾᏍᎩ ᏘᏅᏍᏓᏕᏗᏱ ᎩᎶ ᏓᎾᏕᏲᎲᏍᎬ ᎤᏣᏘᏂ ᎢᏳᏂᏪᏍᏗᏱ ᏂᎨᏒᎾ,\nᎾᏍᎩᏃ ᎭᏓᏁᎲ ᎤᏕᎵᏒ ᎨᏎᏍᏗ, ᏣᏙᏓᏃ ᎤᏕᎵᏒ ᎠᎪᏩᏘᏍᎩ ᎤᏩᏒ ᎠᏎ ᏣᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎬᏂᎨᏒᎢ.\nᎠᏎᏃ ᎤᎾᏠᏤᏉ; ᎤᏂᏣᏖᏍᎩᏂᏃᏅ ᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᎤᏂᎾᏄᎪᏤᎢ, ᎠᏎᏃ ᎤᎾᏠᏤᏉ. ᎣᏂᏱᏍᎩᏂᏃᏅ ᎠᏂᏔᎵ ᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᎤᏂᎷᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ;\n“ᏍᎩ, ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ.\nᎠᎴ ᎢᏤ ᎢᏤᏨᏁᏗᏱ ᏄᏍᏛ ᏕᏣᏓᏅᏛᎢ;\nᎠᏎᏃ ᎾᏍᎩ ᏂᏨᏪᏎᎸ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎤᎧᎵᎸ ᎢᏥᎾᏫ.\nᏲᏎᎢ ᎬᏇᏓᏍᏗ ᏱᎨᏎ, ᏲᏎᎢ ᎬᏆᏛᎦᏍᏙᏗ ᎢygᎡᏎ ᏄᎾᏓᎴᎲ ᎠᏣᏗ ᏕᏣᏙᎥ ᎠᏎᏃ ᎤᏍᏗᎩ ᎢᏧᎳ ᎩᏂᏴᏍᏗ ᎠᎹ ᎦᏁᎲ, ᏫᏥ ᏫᏓᎦᏓᏬᎢ. ᏕᎾᏓᎪᎲᏳ ᎤᎬᏍᏕᎵ.\nᎤᎬᏫᏳᎯ ᏧᏁᏗ ᎨᏎᏍᏗ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏚᏓᏘᎿᎥ ᎣᏁᏏᏉᎳ, ᏯᏃᏰᏃ ᎠᎩᎦᎵᏍᏓᏗᏍᎬᎩ, ᎠᎴ ᎥᏝ ᏯᏉᏕᎰᎯᏎᎮ ᎠᏆᏤᎵ ᏧᏓᏕᏒᏛ;\n”ᎯᏣᏛᎦᏍᏓ, ᎭᏩᏧᎱ ᏍᏓᏯ ᏄᏪᏎ.\nᎯᎠᏃ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎩᏁᎸᎯ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ ᎤᎨᏳᎯᏳ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᏉ ᎤᎨᏳᎯᏳ ᎨᏎᏍᏗ ᏗᎾᏓᏅᏟ.\nᏚᏬᏓᏢ ᎢᏴ ᏭᏗᎦᎴᏲᏤ ᎧᏃᎮᏓ ᏄᎵᏍᎨᏗᏴ ᏏᏆ, ᏃᎴ ᏗᏂᎶᎨᏍᎩ ᏧᎾᎩᎸᏗ ᏧᏪᏘ ᏓᏆᎴᎳ ᏃᎴ ᏗᎦᎾᏏᏅᏍᏗ ᏕᎦᎷᎨ, ᎢᏳᏪᏅᏍᏗ ᎠᏂᏙᎾᎡᎢ ᎤᎾᎧᏙᏍᏕᎢ ᏫᎵᎻ ᎤᏴᏍᏗ ᎠᏂᎸᏇᏍᎨ ᎤᏍᏆᏂᎩᏗ ᏅᎩ ᏗᎦᏅᏌᏗ.\nᎠᎴ ᏥᎳᏅᏓᏕᎸᎩ ᎤᏲ ᎤᏰᎸᏗᏱ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸᎢ; ᎠᏎᏃ ᎥᏝ ᎤᏲ ᏳᏰᎸᏁᎢ.\n“ᎠᏎ ᎤᏪᏅᏍᏗ,” ᎤᏛᏁ.\nᏴᏫᏃ ᎬᏩᎦᏘᏰ ᏤᎦᎳᏯ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏍᎨ ᎪᎯᏗᏳ ᏩᏯᎥ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ.\nᎠᏎᏃ ᎡᎳᏪᏱᏉ ᎤᏅᏎᎢ; ᏗᎾᎢᏒᏃ ᎠᏂᏃᎮᏍᎨ ᎤᏅᏒ ᎨᏒ ᎾᏍᎩ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ.\nᎣᏏ ᎢᏳᎵᏍᏓᏁᏗ ᏴᏫ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᎤᏍᏕᏅᏨ ᏄᏭᎪᏍᏗᏍᎬᎾ ᎨᏒᎢ.\nᏚᎪᎮᎢ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ, ᏃᎴ,ᎾᎥᏂᎨ ᏭᎷᏣ ᎤᎪᎮ ᏌᎳᏓ.\nᎠᎴ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᏄᎬᏫᏳᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᏂᎦᏛ ᎬᏩᏅᏏᏙᎯ ᎨᏎᏍᏗ.\nᏭᏓᏅᏖᎴ ᎤᎵᏬᎢᏍᏗ, ᎤᏩᏃᏪ ᏃᎴ ᎤᏍᎦᎴ.\n ᎤᏙᎳᏅ ᎤᏓᏔᏅ, ᎦᏙ ᎡᎯ ᎤᎦᎾᏍᏓ ᏃᎴ ᏧᎾᏍᏕᏥ, ᎤᏟᏂᎩᏓ ᏥᏴᏐᎵ ᎬᏗ ᏱᏗᏥᏌᏙᏱᏍᎦ ᏧᏆᎶᎦ, ᎠᎩᏯᎸᎥᏍᎬ ᏃᎴ ᎦᎵᏒᏍᏗᏍᎬ ᎦᏙ, ᎦᎵᏒᏍᏗᏍᎬ, ᎦᎵᏒᏍᏗᏍᎬ, ᎦᎵᏒᏍᏗᏍᎬ...”\nᎾᎯᏳᏃ ᎨᏒ ᎤᎶᏐᏅ, ᎣᎩᏟᏌᏅᎩ ᎣᎩᏱᏓᏍᏗ, ᎠᎴ ᏥᎷᏏᎵᎻ ᏬᎩᎶᏒᎩ.\nᎢᎤᏁᏅᏃ ᏥᏌ ᎤᎴᏅᎲᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎤᏂᏣᏘ ᏣᏂ ᏚᏃᎮᏓᏁᎸᎩ; ᎦᏙ ᎢᏣᎦᏔᏅᏎ ᎢᎾᎨᎢ? ᏩᏐᎾᏍᎪ ᎤᏃᎴ ᎤᏖᎸᎮᏍᎬᎢ?\nᏓᏂᎯᏯᏍᎨ ᏓᏂᏂᎩᎸ, ᏯᏂᎦᏔᎲᎾ ᎢᏳᎾᎵᏍᏔᏁᏗ.\nᏅᏯ ᏕᎨᎬᏂᏍᏗᏍᎨᎢ, ᏗᎦᏄᏙᎩ ᎬᏗ ᏕᎨᏥᎦᎵᏍᎨᎢ, ᏕᎨᏥᎪᎵᏰᏍᎨᎢ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏕᎨᏥᎢᏍᏗᏍᎨᎢ; ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᏧᏂᏁᎦᎸᏅᎯ ᏧᎾᏄᏩᎢ ᎠᏁᏙᎮᎢ; ᎤᏂᏂᎬᏎᎯ ᎨᏎᎢ, ᎠᏂᎩᎵᏲᏥᏙᎮᎢ.\nᎠᎴ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᏂᎦᎥ ᏂᎦᏪᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏂᏁᏤᎭ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏥᏁᏄᎯ; ᎾᏍᎩ ᎾᏂᎥ ᏗᏂᎰᎵ ᏗᎨᏥᏍᏚᏁᏗᏱ, ᎠᎴ ᎡᎳᏂᎬ ᎠᏁᎯ ᎤᏂᏍᎦᏅᏨᎯ ᏧᏚᎪᏔᏅᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎡᏝᏪ ᎢᎦ ᎨᏒ, ᎦᏛᎩᏍᎬ ᎠᏂᏬᏂᏍᎬ ᎭᏫᏂ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎥᏝ ᎩᎶᎢ, ᏧᏏᏔᏛᎯ ᎦᏓᎷᎪᏗ ᏱᎠᎦᏔᎲᏃ, ᏰᎵ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏫᎬᏩᏴᏍᏗ ᏱᎩ.\nᎤᎵᏒᏍᏔᏁᎢ ᎤᏃᎴ ᏃᎴ ᎤᎵᏴᏍᎪᏳᏁ.\nᎠᏎᏃ ᏔᎴᎲᎦ, ᎠᎴ ᎭᎴᎲᎦ, ᎯᎠᏰᏃ ᏅᏗᎦᎵᏍᏙᏖᎭ ᎬᏂᎨᏒ ᏥᏂᎬᏯᏛᏂᏏ, ᎭᎵᏥᏙᎲᏍᎩ ᎢᎬᏴᏁᏗᏱ ᎠᎴ ᎯᏃᎮᏍᎩᎯᎠ ᎾᏍᎩ ᏥᎪᏩᏛ, ᎠᎴ ᎠᏏ ᎬᎾᏄᎪᏫᏎᏗ ᏥᎩ.\nᎤᏂᎦᏙᎥᏒᏰᏃ ᎤᏁᎳᏅᎯ, ᎥᏝ ᎤᏁᎳᏅᎯ ᎦᎸᏉᏙᏗ ᎨᏒ ᏳᏂᎸᏉᏙᏔᏁᎢ, ᎥᏝ ᎠᎴ ᏯᎾᎵᎮᎵᎨᎢ, ᎠᎾᏓᏅᏖᏍᎬᏍᎩᏂ ᎠᏎᏉᏉ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᏧᏁᎫ ᏧᏂᎾᏫ ᏚᎵᏏᎲᏎᎢ;\nᎤᎾᏕᏘᏱᏍᎬ ᎤᎶᏐᏅ ᏍᎪᎯ ᎡᎳᏗᏣ ᏭᎷᏤᎢ ᎤᏴᏣ.\nᎬᏂᏳᏉᏃ ᎤᎷᏤᎴ ᎠᏍᎦᏯ ᏤᎳ ᏧᏙᎢᏛ ᏄᎬᏫ-ᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᏥᏌᏃ ᏚᎳᏍᎬ ᎤᏓᏅᏁᎢ, ᎠᎴ ᎤᏔᏲᏎᎴ ᎦᏁᎸ ᎤᏴᏍᏗᏱ;\nᎠᏥᏍᏚᏗ ᎠᎬᏱᏣ ᏭᏓᏐᎴᎢ ᏫᎵᎻ.\nᎤᏬᏚᏨ ᎤᏬᏚᏨ ᎨᏒ ᎨᎵ.\n“ᏤᏍᏗ ᏰᎷᎲᏍᎨᏍᏗ, ᏲᎾ ᎤᏤᏍᏙ!” ᎤᏛᏁ ᎤᏥ.\nᎦᏓᎭᏰᏃ ᏂᎨᏒᎾ ᎢᎬᏁᎸᎯ ᎬᏔᏅᎯ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒᎢ.\nᏥᏲᎵ ᏥᎨᏒᎩ ᎠᏲᎵ ᎤᏬᏂᎯᏍᏗ ᏥᏬᏂᏍᎬᎩ, ᎠᏲᎵ ᎤᏬᎵᏍᏗ ᎨᏒ ᎪᎵᎬᎩ, ᎠᏲᎵ ᎤᏓᏅᏖᏗ ᎨᏒ ᎦᏓᏅᏖᏍᎬᎩ; ᎠᏆᏛᏅᏍᎩᏂ ᎿᏉ ᎾᏆᎵᏍᏔᏅ, ᎠᏲᎵ ᏧᏤᎵ ᎨᏒ ᎢᏴᏛ ᏂᏓᏋᏁᎸᎩ.\nᎯᎠ ᎤᏐᏱ ᎦᏅᏙᏗ, ᏧᏅᏓ ᎣᏂᏴ.\nᎦᏙᏃ ᏱᎩ ᎡᏍᎦᏉ ᎪᎱᏍᏗ ᏱᎨᏒᎾ.\nᎣᏍᏓ ᎠᎩᏰᎸᎲ ᎦᏓᏅᏖᏍᎬ, ᎢᏳᏃ ᏣᎵᏍᏙᏂ ᏓᏳᏂᎶᏒ ᎠᏂᎨᏯ ᏧᎾᏦᏒᏱᎩ.\nᎾᏍᎩ ᎾᏍᏉ [ᎠᏓᏅᏙ] ᎤᏩᏔᏁ ᎤᏪᏅᏎ ᏫᏚᎵᏥᏙᏁᎴ ᏗᏓᏅᏙ ᏗᏓᏍᏚᏗᏱ ᏣᏂᏯᎠ,\nᎦᎵᏉᎩ ᎢᏳᏩᏂᎸ ᎤᎵᏍᏔᏴᏃᏁᏍᏗ ᏑᎾᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᎩᎧᎾᏩᏕᏅ ᏥᏧᏣ ᎨᏒ ᏅᏓᎬᏩᏓᎴ ᏅᏛ.\nᎠᎴ ᎦᏓ ᎠᎪᏢᏔᏅᎯ ᏄᏍᏛ ᎾᏍᎩᏯ ᏥᏂᎦᏍᏗ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎦᏍᏕᏍᏗ ᏄᏍᏛ ᎦᎸᎳᏗ ᎡᎯ.\nᎿᏉᏃ ᏂᎦᏛ ᎠᏂᎪᎢ ᎤᏂᏂᏴᎲ ᏐᏍᏗᏂ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᏄᎬᏫᏳᏒ ᎠᏥᎦᏘᏗᏍᏗ, ᎤᏂᎵᎥᏂᎸᎩ ᎢᎬᏱᏢ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ. ᎨᎵᏲᏃ ᎥᏝ ᏳᎦᏌᏯᏍᏔᏁ ᎾᏍᎩ ᏄᏍᏗᏕᎬᎢ.\nᏂᎯ ᎤᏍᏗ ᏗᎩᏏ ᎦᏗᎨᏂ, ᎤᏛᏅ.\nᎠᎴ ᏥᏔᏲᎯᎭ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏤᎲ ᎠᏏ ᎤᏟ ᎢᎦᎢ ᎤᏁᏉᏨᏍᏗᏱ ᎤᎵᏠᏯᏍᏙᏗᏱ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ, ᎠᎴ ᏂᎦᎥ ᏚᏳᎪᏛ ᎪᎵᏍᏗ ᎨᏒᎢ;\nᏃᎴ ᎦᏲᏟ ᎠᏛᏁᎸ ᎭᎾᏂ, ᎠᎼᎯ ᎡᏙᎵᏓᏍᏗ ᎢᏣ.\nᎤᎾᏄᎪᏫᏎᏃ ᎢᎬᏱ ᏂᎯ ᎤᏪᏥ ᎠᏧᏣ, ᎠᎴ ᎤᏪᏣᏄᎳᏁᎢ, ᎠᎴ ᏐᏈᎵ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎤᎸᏁᎢ; ᎥᏝᏰᏃ ᏳᏜᏅᏕ ᏧᏂᏒᏍᏗᏱ ᎠᏓᏁᎸᎢ.\nᏦᎢᏁᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ, ᎦᏙ ᎤᏍᏗ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸ? ᎥᏝ ᏱᏥᏩᏛᎡᎭ ᎪᎱᏍᏗ ᏰᎵ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏥᎵᎥᏂᎵ ᎠᎴ ᏙᏓᏥᏲᏏ.\nᎤᏛᎦᎾ, ᎡᎳᏗ ᏭᏓᏓᎩᏅᏎ ᏫᎵᎻ, ᎤᏲ ᎤᏓᏅᏔᏕᎢ.\nᎠᎦᏓᎩᏅᏓ ᎠᏧᏣ, ᎠᏇᎵᏒ.\nᎿᏉᏃ ᎤᏓᏅᏎ ᎠᏂᎦᎵᏗ ᎤᎾᏤᎵᎪᎯ, ᎨᎳᏂᏃ ᎤᏁᎳᏕᎢ, ᎾᎿᏃ ᏗᎤᏓᏅᏒ, ᎤᏙᏓ ᎤᏲᎱᏒ, ᎡᏍᎦᏂ ᎤᎷᏤᎴᎢ ᎾᏍᎩ ᎠᏂ ᎪᎯ ᏥᏤᎭ.\nᎾᏍᎩᏃ ᎤᎶᏒᏍᏔᏅᎯ ᎠᏆᎵᏌᎳᏙᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏣᏘ ᎥᎩᎾᏄᎪᏫᏎᎸᎩ, ᎠᎩᎶᏲᎯᎯ ᎥᎩᏁᎸᎩ ᎠᎩᏇᏓᎸᎢ, ᏎᏓᏂ ᎤᏅᏏᏛ ᎠᏋᏂᎯ, ᎾᏍᎩ ᎤᎶᏒᏍᏔᏅᎯ ᎠᏆᎵᏌᎳᏙᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎭᎾᏅᏂ, ᎦᎶᎯᏍᏗ, ᎦᏅᎨ ᎤᏔᏂᏓ ᎢᎾᏓ.\nᎤᏁᏨᎯᎠ ᏄᏪᏒᎩ; ᎠᏍᎦᏯ ᏥᏌ ᏥᏚᏙᎥ ᏝᏬᏔ ᎤᏬᏢᏅᎩ, ᎠᎴ ᏚᏅᎵᏰᎥ ᏗᏥᎦᏙᎵ; ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ; ᏌᎶᎻ ᏨᏓᎸᎢ ᎮᎾ ᎠᎴ ᏩᏙᏑᎵ; ᎠᏇᏅᏃ ᎠᎴ ᏩᏆᏙᏑᎴᎢ ᏰᎵ ᎬᎩᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎩ.\n“ᎭᏗ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎯᎩ ᏣᏤᎵᎦ ᎠᎴ ᏥᎮᎾ. ᎣᏏ ᎠᎩᏰᎸ ᏥᏯᎫᏴᎡᏗᏱ ᎯᎠ ᎣᏂᏱ ᎤᎷᏨᎯ ᏂᎯ ᎬᏯᎫᏴᎡᎸ ᎢᎦᎢ.\nᎢᏳᏰᏃ ᎩᎶ ᎾᎦᏔᎲᎾ ᏱᎩ ᎤᏩᏒ ᏚᏓᏘᎿᎥ ᎣᏍᏛ ᏧᎧᎿᏩᏗᏓᏍᏗᏱ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏓᎦᏌᏯᏍᏓ ᏧᎾᏁᎶᎯ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ?\nᎾᏍᎩᏃ ᎯᎠ ᏥᏂᎦᏪᎭ ᎠᏏ ᏌᏉᎢ, ᎾᏍᎩ ᎢᏴᏛ ᎢᏗᎬᏁᏗ ᎨᏒ ᎾᏍᎩ ᏗᏖᎸᏅᎯ ᎨᏒ ᎦᏛᎦ, ᎾᏍᎩ ᏗᎪᏢᏅᎯᏉ ᎾᏍᎩᏯᎢ, ᎾᏍᎩᏃ Ꮎ ᏧᏓᎴᏅᏛ ᏗᎬᏤᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᎾᎿ Ꮙ ᏗᏍᏆᏂᎪᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏯ ᎠᏆᏤᎵ ᏕᎷᎨ ᎤᎵᏏᎩ ᏃᎴ ᎦᎶᏂᎨ ᏃᏥ ᏑᎦᏔ ᏗᏥᎶᏍᏗ ᎨᏒ.\nᎿᏉᏃ ᎤᏁᎳᏅᎯ ᎤᎦᏔᎲᏎᎢ, ᎠᎴ ᎤᎾᏁᎳᎩ ᏫᏓᏂᎸᏉᏓ ᎤᏂᏣᏘ ᎦᎸᎶ ᎠᏁᎯ ᏚᏪᎵᏎᎴᎢ, ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏃᏪᎳᏅᎯ; ᏂᎯ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᏥᎪ ᏕᏍᎩᏃᎮᎸ ᏗᎸᎯ ᎦᎾᏝᎢ ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗ ᏅᎦᏍᎪᎯ ᏥᎾᏕᏘᏴ ᎢᎾᎨᎢ?\nᎭᎾᎾ, ᎭᏫᏂ ᏚᎧᏁ ᎩᎳ ᎤᏕᏅ ᏏᏆ.\nᏧᏣᏲᏍᏗ ᏘᎵ ᏧᏯᏍᎦ ᎦᎳᎨᏴ, ᏚᏂᎪᏅ ᏘᎵ.\nᎿᏉᏃ ᏥᏌ ᎨᏆᏂ ᏫᎤᎷᏨ, ᎤᎷᏤᎴ ᎠᏍᎪᎯᎫᏈ ᎠᏂᏯᏫᏍᎩ ᏗᏘᏂᏙᎯ, ᎤᏍᏗᏰᏔᏁᎢ,\nᎠᏏᏉᏰᏃ ᎤᏇᏓᎵ ᏕᏣᏘᏂᏙᎭ; ᎾᏍᎩᏰᏃ ᏥᏤᎭ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎢᎸᏍᏗ ᎢᏯᏓᏗᏍᏗ ᎨᏒᎢ, ᏝᏍᎪ ᎤᏇᏓᎵ ᎢᏣᏘᏂᏙᎯ ᏱᎩ, ᎠᎴ ᏴᏫᏉ ᎤᏁᏓᏍᏗ ᎾᏍᎩᏯ ᏱᏣᏙᎭ?\nᏄᏍᏗᏉ ᎭᏂᏫ.\nᎠᎾᎢᏒᏃ ᎬᏂᏳᏉ ᎢᎦᏛ ᎤᏂᏯᏫᏒᎯ ᎤᏂᎷᏤ ᎦᏚᎲᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏚᏂᏃᏁᎴ ᏂᎦᏛ ᏄᎵᏍᏔᏂᏙᎸᎢ.\nᎦᏲᏟᎨᏉᏱᎩ.\n“ᎭᏩ ᎠᎵᏰᎾ ᏓᏆᏙᎡᏍᏗ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ.\nᏑᏓᎵ ᎢᏯᏂ ᎤᏣᎴᏓ ᎤᏎᎵ ᎠᏂᏃᎯᎵᏙ, ᎣᏍᏓ ᏂᏓᏅᏁᎲ ᎦᎶᏇ.\nᎣᎩᏍᏆᏛᏃ ᎣᎦᏅᏔᏩᏗᏒ ᏓᏯ ᏦᎦᏂᎩᏒᎢ ᏙᎵᎹᏱ ᎣᎩᎷᏨᎩ, ᎠᎴ ᏙᏥᏲᎵᎸ ᎠᎾᏓᏅᏟ, ᎾᎿ ᏑᏙᏓᏆᏛ ᎣᎨᏙᎸᎩ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᎨᏴ, ᏍᏉᎯᏳᎲᎦ, ᏛᏍᏆᎸᎯ ᎾᎯᏳ ᎥᏝ ᎠᏂ ᎣᏓᎸᎢ, ᎠᎴ ᎾᏍᏉ ᏥᎷᏏᎵᎻ, ᏱᎦᏰᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᎠᎦᏴᎵᎨᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎾᏍᏉ ᏅᏲᎯ ᏥᎨᏥᏫᏎᎴᎢ; ᎾᏍᎩ ᎿᏉ ᎧᏃᎮᏛ ᎠᎾᏛᎬᎦ ᎩᎳᏉ ᎢᏴᏛ ᎤᎾᎵᎮᎵᏨᎯ ᏓᎾᏓᏂᎸᎪᎢ;\nᎤᏲ ᏃᎬᎾᏕᎪᎢ, ᎠᏎᏃ ᎥᏝ ᎣᎬᏕᏨᎯ ᏱᎩ; ᏙᎩᏍᏢᏂᏍᏔᏅ, ᎠᏎᏃ ᎥᏝ ᎣᎩᏛᏔᏅᎯ ᏱᎩ.\nᎢᏳ ᎠᎴ ᎣᏍᏛ ᏱᏂᏗᏣᏛᏁᎭ ᎣᏍᏛ ᎢᎨᏣᏛᏁᎯ, ᎪᏙ ᎢᏥᎭ ᎦᏰᏣᎵᎡᎵᏤᏗ ᎨᏒᎢ? ᎠᏂᏍᎦᎾᏰᏃ ᎾᏍᏉ ᎾᏍᎩᏯ ᎾᎾᏛᏁᎰᎢ.\nᎠᏎᏃ ᏰᎵᏉ ᏫᎦᎾᏅᎪᎢᏍᏗ ᎠᏕᎰᏏᏓ ᏃᎴ ᎤᎵᏓᏍᏔᏅ ᎬᎭᏅ ᎢᎪᎯᏓ, ᏗᎧᏃᎮᏗ ᏱᎨᏒᎾ ᏗᎧᏃᎮᏗ ᎠᏎ ᎠᎫᏴᏍᏕᏓ ᏱᎩ.\nᎠᏎᏃ ᏗᏆᎴᏅᎯ ᎨᏎᏍᏗ ᎢᎬᏱ ᏅᏓᏨᏰᏅᎡᎵ ᎨᎵᎵ.\nᏭᎬᏫᏳᏒ ᎣᏍᏓ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎬᏩᏕᎰᏗᏍᎬ, ᎯᎠ ᏂᏓᎾᏓᏪᏎᎮᎢ, ᏅᏩᎾᏓᎴ ᏓᏍᏕᎵᏍᎬᎩ; ᎤᏩᏒ ᎥᏝ ᏴᎬᎵᏍᏕᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏗᏥᏲᎱᏒᎯ ᎨᏎᏍᏗ ᎡᎶᎯ ᎡᎯ ᎠᎴᏅᏙᏗ ᏗᏕᎶᏆᏍᏗ ᎤᎬᏩᎵ, ᎦᏙᏃ ᎡᎶᎯ ᏥᏤᎰ ᎾᏍᎩᏯ ᏙᏣᏁᎶᏗ ᏗᎧᎿᏩᏛᏍᏗ,\nᏭᏙᎯᏳᎲ, ᎤᏓᎴᏟ: ᏄᎵᏍᏔᏁᎮ ᏙᏰ ᎠᏦᏴ ᎡᏙᎲ, ᎨᏍᏗ ᎪᎱᏍᏗ ᎠᎬᏱᏣ ᏱᏄᎵᏍᏔᏁᎮ ᎡᏆ ᎡᎶᎯ.\nᎦᏣᏄᎸ ᎤᏍᏗᏰᎵᏙᎲ ᏓᏆᎴᎳ ᎤᎨᏓᎵᏴ ᏕᎦᏅᏅ ᎢᏳᏉ ᎣᎩᎾᏚᎵᏍᎬ ᏑᎾᎴ ᎤᎩᏓᏍᏕᎯ ᏩᏍᏗ.\nᎩᎶᏰᏃ ᎬᏂᎨᏒ ᎾᏋᏁᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᏉ ᎠᏴ ᎾᏍᎩ ᎬᏂᎨᏒ ᎤᏓᏥᏴᏁᎵ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎠᎦᏔᎲᎢ.\nᎨᏍᏗ ᏱᎪᎵᎨᎢ ᏫᎵᎻ ᎢᏳᏍᏗ ᎤᏰᎸᏛᎢ “ᎠᎦᏍᎦᏃᎶᏍᎦ” ᏃᎴ ᎨᏍᏗ ᏳᏚᎵᏍᎨᎢ ᎤᏕᏯᏙᏙᏗ ᏌᎳᏓ.\nᏔᎵᏁᏃ ᎤᎷᏨᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᎾᏝᎢ, ᏣᏤᎵ ᏑᏓᎨᏛ ᎩᏍᎩ ᎢᏳᏓᎨᏛ ᎤᏁᏉᏨ.\nᎾᏎᎵᏗᏃ ᎤᏓᏅᏒ ᎨᏆᏂ ᎨᎷᏤ ᎾᎿ ᏭᏕᏁᎢ, ᎾᏍᎩ ᎥᏓᎵ ᎠᎹᏳᎶᏗ ᏥᎦᏚᎭ, ᏤᏆᎳᏂ ᎠᎴ ᏁᏩᏔᎵ ᎤᎾᏤᎵᎪᎯ,\n“ᏣᎨ ᏯᎦᏓ ᏳᏕᏘᏱ ᏃᎴ ᏯᎦᏓ ᏳᏣᏅᏓᏕᎮ ᎤᏛᎯᏍᏗ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎢᏳᏓᎵᎭ ᎠᏩᏘᏍᎨ ᎩᎦ ᎤᏓᏁᎭ ᎦᏙ, ᎠᏯᏖᏅ ᎤᏓᏅᎵᏰᎥ ᎤᏯᎷᎬ, ᏁᎵᏍᎬ ᏂᎦᎵᏍᏗᏍᎨ.\nᎿᏉᏃ ᎨᎵᎵ ᏭᎷᏨ, ᎨᎵᎵ ᎠᏁᎯ ᏕᎬᏩᏓᏂᎸᏨᎩ, ᎤᏂᎪᎲᎯᏰᏃ ᎨᏒᎩ ᎾᏍᎩ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎸ ᏥᎷᏏᎵᎻ ᎾᎯᏳ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ; ᎾᏍᏉᏰᏃ ᎤᏁᏅᏒᎩ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎦᏚᎲ ᎢᏍᏗᏴᎸᎭ, ᎠᏍᎦᏯ ᏙᏓᏣᏠᏏ, ᎠᏰᎮᏍᏗ ᎠᏖᎵᏙ ᎠᎹ ᎠᏟᏍᏕᏍᏗ; ᎡᏍᏗᏍᏓᏩᏕᏒᎭ ᎠᏓᏁᎸ ᏭᏴᎸᎢ ᏫᏍᏗᎷᏨᎭ.\nᎠᏎᏃ ᏭᏓᏅᏖᎳ ᏄᏍᏛᎢ ᎤᏃᎯᏎᎸ ᎤᏃᏕᎾ ᎠᎦᏴᎵ.\nᏄᏂᎬᏫᏳᏌᏕᏱᏰᏃ ᎥᏝ ᏗᎦᎾᏰᎯᏍᏗ ᏱᎩ ᎣᏍᏛ ᏱᏙᎸᏫᏍᏓᏁᎭ, ᎤᏲᏍᎩᏂ ᏱᏙᎸᏫᏍᏓᏁᎭ. ᏣᏚᎵᏍᎪᏃ ᏣᎾᏰᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏰᎵ ᎪᏢᏒᎢ? ᎣᏍᏛ ᎿᏛᏁᎮᏍᏗ, ᎾᏍᎩᏃ ᏣᎸᏉᏙᏗ ᎨᏎᏍᏗ.\nᏕᏫᏰᏃ ᎯᎠ ᏂᎦᏪ ᎾᏍᎩ ᎧᏃᎮᏍᎬᎢ; ᏂᎪᎯᎸ ᏥᎪᏩᏘᏍᎬᎩ ᏱᎰᏩ ᎢᎬᏱᏢ ᎠᏆᎧᏛᎢ, ᏥᎦᏘᏏᏗᏢᏰᏃ ᎦᏙᎦ, ᎾᏍᎩ ᎥᎩᏖᎸᏗᏱ ᏂᎨᏒᎾ.\nᏕᎤᏁᏤᎴᏃ ᏗᎨᎦᏬᏍᏗᏱ ᏕᎤᏙᏍᏛ ᎤᎬᏫᏳᎯ. ᎿᏉᏃ ᎬᏩᏔᏲᏎᎴ ᎢᎸᏍᎩ ᏧᏒᎯᏛ ᎤᏪᏗᏱ.\nᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᏙᏛᎾᎴᏂ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᎠᏰᎵ ᏚᏃᏢᏩᏗᏒ ᏙᏛᎾᏓᏡᏔᏂ, ᎠᎴ ᏓᎪᏄᎶᏏᏙᎮᏍᏗ, ᎠᎴ ᎥᏳᎩᎯᏳ ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ, ᎠᎴ ᎦᏙᎯ ᏓᎵᏖᎸᏂᏙᎮᏍᏗ.\nᎾᏍᎩᏃ ᎦᎷᏨᎭ ᎬᏂᎨᏒ ᏅᏓᎬᏁᎵ ᎡᎶᎯ ᎠᏍᎦᏂ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᏗᎫᎪᏙᏗ ᎨᏒᎢ.\nᎿᏉᏃ ᏧᎦᎿᏁᎢ, ᎠᎴ ᏥᏚᏃᎱᎦᏁᎢ, ᎠᎴ ᏧᏃᎸᏁᎢ, ᎾᎿ ᎠᏓᏁᎸ ᏥᏚᏱᎶᎴᎢ, ᎠᎴ ᏧᏲᏤᎢ, ᎠᎴ ᎤᏍᎦᏎᏗᏳ ᏥᏄᎵᏍᏔᏁ ᎤᏲᏨ.\nᏂᎯ ᎪᏪᎵ ᎣᎦᏤᎵᎦ, ᏥᎪᏪᎳ ᏦᎩᎾᏫᎯ, ᎾᏂᎥ ᏴᏫ ᏣᏂᎦᏔᎭ ᎠᎴ ᏣᏂᎪᎵᏰᎠ.\nᎠᏎᏃ ᎤᎾᏙᎴᎰᏒ ᎠᏧᏏ ᎨᏒᎢ, ᏌᏉ ᏥᎧᏁᎪ ᎾᏍᎩᏯ ᏂᎦᏛ ᎤᏁᎷᏅᎩ, ᏔᎵᎭ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎦᎸᏉᏗᏳ ᏓᏰᏂ ᎡᏈᏌ ᎠᏁᎯ ᎤᎾᏤᎵᎦ.\nᎠᎴ ᏂᎯ ᏗᏣᏓᏅᏏᏙᎯ, ᎾᏍᎩᏯ ᎤᏠᏱ ᎾᏍᎩ ᏂᏕᏣᏛᏁᎮᏍᏗ, ᎤᏁᎳᎩ ᎢᏤᎵᏎᏍᏗ ᏕᏥᏣᏛᏁᎮᏍᏗ, ᎤᏁᎳᎩ ᎢᏤᎵᏎᏍᏗ ᏕᏥᎾᏰᏓᏁᎲᎢ, ᏥᏥᎦᏔᎭ ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᎢᏥᏅᏏᏙᎯ ᎦᎸᏬᎢ ᎡᎲᎢ; ᎥᏝ ᎠᎴ ᏱᏚᏑᏰᏍᏗ ᏴᏫ ᏗᎬᏩᎸᏉᏙᏗ ᎨᏒᎢ.\nᎢᏨᎨᏳᎢ, ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎢᎦᎢ ᎢᎩᎨᏳᎯᏳ ᎢᏳᎵᏍᏔᏅᎯ ᏱᎩ, ᎠᏴ ᎾᏍᏉ ᏗᎦᏓᎨᏳᎯᏳ ᏱᎩ.\nᎡᎵᏍᏗ ᏐᏉ ᎢᏳᏩᎬᏘ ᏳᏩᎩᎸᎾ ᏓᏆᎴᎸ, ᏂᎦᏓ ᏄᏓᎴᎯ ᏱᏄᎵᏍᏔᏁ.\nᏖᎾᏍᎩᏍᏆ ᏂᎦᏚᎩ?” ᎤᏛᏁ ᏫᎵᎻ.\n“ᎣᏁ ᎢᏣ ᏔᏟᎷᏈᏚᎦ ᏃᎴ ᎠᏰᎵ ᎢᏴ ᎭᏓᏄᏖᏯ!” ᎤᏪᎷᏁ ᏌᎳᏓ.\nᎠᎴ ᎠᏂᏌᎺᎵ ᎬᏩᎷᏤᎸ ᎬᏩᏔᏲᏎᎸᎩ ᏧᏪᎳᏗᏓᏍᏗᏱ, ᎠᎴ ᎾᎿ ᏔᎵ ᏧᏒᎯᏛ ᎤᏪᏙᎸᎩ.\nᎯᎠᏃ ᎤᏆᎶᎦ ᏰᎵ ᏏᏅᏓ ᎬᏩᎵᏬᏨ.\nᎤᏲᏃ ᎤᏰᎸᏁ ᎾᏍᎩ ᎾᏥᏪᏎᎸ, ᎠᎴ ᎡᎯᏍᏗ ᎬᏩᏓᏅᏘ ᎤᏓᏅᏎᎢ; ᎤᏣᏘᏰᏃ ᎤᎿᎡᎢ.\nᏚᏔᏍᏆᎸᏛᎢ ᎢᏳᎯ, ᎤᎴᏫᏍᏔᏅ, ᏧᏙᎨᏍᎩ.\nᏂᎪᎯᎸ ᏑᎾᎴᎢ ᏳᎾᎵᏍᏓᏴᏃᎾ, ᎠᏁᎨ ᏫᎵᎻ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᏅᏃᎯ, ᎠᏂᎦᏘᏗᏍᎨᎢ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎢ.\nᏃᏗ ᏣᏄᏏ ᏚᎧᎾᏁ.\n“ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ. \nᏧᎾᏁᎶᏗᏃ ᎥᏘᎣᎩ ᏧᎾᏓᏡᎬ ᎠᏁᎲᎩ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩᎩ ᎠᎴ ᏗᎾᏕᏲᎲᏍᎩ, ᎾᏍᎩ ᏆᏂᏆ, ᎠᎴ ᏏᎻᏂ ᎾᎦ ᏧᏙᎢᏛ, ᎠᎴ ᎷᏏᏯ ᏌᎵᏂ ᎡᎯ, ᎠᎴ ᎹᏁᏂ ᎾᏍᎩ ᎢᏧᎳᎭ ᏧᎾᏛᏒᎯ ᎡᎶᏛ ᏅᎩ ᎢᎦᏚᎩ ᎨᏒ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏗ, ᎠᎴ ᏐᎳ.\nᏧᏓᎴᏅᎲ ᏓᎫᏩᎾᎴᏅᏓ, ᎢᎾᎨ ᎠᏁᎯ ᏚᎾᏓᏲᏌ ᎤᏂᏂᎬᎬ ᏴᏫ, ᏕᎩᏲᏎᎸ ᎡᎯᏍᏗ ᏃᎴ ᎩᎦ, ᏩᏌᏅ ᎤᎵᏦᎯᏓ ᏃᎴ ᎭᏫᏯ.\n”ᏍᎩᏙᎵᎩ, ᎡᏧᏣ, ᏍᎩᏙᎵᎩ,” ᎤᏛᏁ ᏌᏌ.\nᎠᏂᏬᏂᏍᎬ ᏃᎴ ᎤᏂᏰᏗᏍᎬ, ᎨᏍᏗ ᏧᎾᏓᏅᏖᏗᏍᎨ ᏄᎾᎵᏍᏔᏁᎲ ᏃᏉ ᎨᏒ.\nᎤᏛᏂᏗᏍᏗ, ᎣᎯᏍᏙᏗ, ᎤᏔᎷᎩᏍᎩ, ᏍᎩᎾᎾ ᎢᏳᏓᎴᎩ. ᎣᎯᏍᏙᏗ ᎨᏒ.\nᏥᏌᏃ ᏇᏗᏂᏱ ᎡᏙᎲᎢ, ᏌᏩᏂ ᎠᏓᏰᏍᎩ ᎤᏢᎩ ᎦᏁᎸᎢ,\nᏂᎦᏛᏃ ᎤᎾᎵᏍᏓᏴᏅᎩ ᎠᎴ ᏚᏃᎸᏒᎩ, ᎠᎴ ᎤᏄᏘᏒᎩ ᎤᎵᎬᎭᎷᏴᎯ ᎤᏘᏴᎯ ᏔᎳᏚ ᎢᏯᎧᎵᎢ ᏔᎷᏣ.\nᎤᏁᎳᏅᎯ ᎾᏍᏉ ᏕᎪᎯᏳᏓᏁᎲᎩ, ᏕᎬᏗᏍᎬᎩ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᎤᏩᏒ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ.\nᎤᏬᏂᏎ, ᎤᏃᎮᎴ ᏄᏍᏆᏂᎦᏛ ᏃᎴ ᏄᏍᎦᏎᏛ ᏗᏟᏰᎵᏓᏍᏗ, ᎠᏎᏃ ᏎᏉ ᏓᏥᏲᏎ, ᏲᎾ ᏃᎴ ᏗᏘᏲᎯ ᎤᎾᏓᎵᏁᎯᏕ.\nᏑᏱᎩᎵᏍᎩᏂ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏍᎩᎾ ᎤᎾᏗᏒᎸ, ᎤᎾᏗᏒᎸ ᎠᏂᏬᏂᏍᎬ ᎼᏏ ᎠᏰᎸᎢ, ᎹᏱᎩᎵ ᎥᏝ ᎪᎱᏍᏗ ᎤᏐᏅ ᏳᎳᏫᏎᎴᎢ, ᎯᎠᏉᏍᎩᏂ ᏄᏪᏎᎢ, ᎤᎬᏫᏳᎯ ᏫᏣᏍᎦᎩ.\nᏄᏂᎪᎸᎾ ᎢᎨᎬᏁᏗᏱ ᎤᎾᏓᏅᏘ, ᎠᎵᏥᏙᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎦᎶᏁᏛ ᎠᏰᎸ ᎤᎾᎵᏂᎪᎯᏍᏙᏗᏱ;\nᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏎ ᎥᎤᏁᏅᏍᏗ ᏱᎩ, ᏂᎯᏉ ᏗᏤᎳᏍᏓ.\nᎡᎶᏛᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᏂ ᏥᏍᎫᏕᏒᎩ; ᎯᎠᏍᎩᏂ ᎦᎪ, ᎾᏍᎩ ᎯᎠ ᏥᏄᏍᏗ ᏥᏥᏯᏛᎩᎭ? ᎤᏟᏂᎬᏁᎴᏃ ᎤᎪᏩᏛᏗᏱ.\nᎤᏣᏔᏅᎯ ᎠᏆᎵᎮᎵᏨᎩ ᎠᏆᏙᎴᎰᏒ ᎢᎦᏛ ᏗᏤᏥ ᏚᏳᎪᏛ ᎨᏒ ᎠᎾᎢᏒᎢ, ᎾᏍᎩᏯ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎩᏁᎸ ᎠᎦᏴᎵᎨᎢ.\nᏗᏂᎦᏙᎵ ᏧᎵᏬᏨ ᏃᎴ ᏳᏂᏚᎬᎾ ᏂᏚᏍᏛ ᎾᏍᎩᏯ ᎠᏍᎪᎵᏰᏛ ᎠᎹᏱ ᏓᏳᎶᏒ ᏅᏯ.\nᎤᏛᎾᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎷᏨ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᏴᏫ ᎠᏁᎲ ᎬᏩᎷᏤᎸᎩ ᏓᏕᏲᎲᏍᎬᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙ ᏣᎵᏍᎦᏍᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ? ᎠᎴ ᎦᎪ ᏣᏁᏤᎸᎯ?\nᎦᏙᎨᏃ ᎦᎸᏉᏙᏗ ᏂᎦᎵᏍᏗᎭ, ᎢᏳᏃ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸ ᎢᏥᏍᏛᏗᏍᎨᏍᏗ ᎡᏥᎵᎥᏂᎮᏍᏗ ᎢᏨᏂᏗᏳ ᎨᏎᏍᏗ; ᎢᏳᏍᎩᏂ ᎣᏍᏛ ᏂᏣᏛᏁᎮᏍᏗ ᎠᎴ ᎢᏥᎩᎵᏲᎨᏍᏗ ᎢᏨᏂᏗᏳ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎣᏍᏛ ᎠᏰᎵ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ.\nᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ; ᏄᏓᎴᏒᏍᎩᏂ ᎪᎱᏍᏗ ᎠᏓᏙᎵᏍᏙᏗ ᎠᎴ ᎠᏔᏲᏍᏗ ᎨᏒ ᎬᏗ ᎠᎵᎮᎵᏍᏗ ᎬᏩᎵᏠᏯᏍᏗ, ᎬᏂᎨᏒ ᏁᏨᏁᎮᏍᏗ ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎢᏣᏚᎵᏍᎬᎢ;\nᏙᏱᏨ ᏓᎪᎲᏍᎬ ᎩᎦᎨ ᎠᏥᎾ ᎤᏃᏛ, ᎣᏍᏓ ᎠᏒᎢᏍᏗᏍᎩ ᎢᏳᏍᏗ ᎠᏒᎬ.\nᎴᎹᏱ ᎧᏁᎬ ᎤᎾᏛᎦᏅᎩ, ᏓᏂᏴᎬᎢ, ᎠᎴ ᏓᎾᏠᏱᎲᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏁᎷᎬᎢ; ᎴᏥᎵ ᏓᏍᎪᏂᎲ ᏧᏪᏥ, ᎠᎴ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎤᏄᏬᎯᏍᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎾᏁᎲᎾᏉ ᎨᏒᎢ.\nᏃᎴ ᎠᏧᏣ ᏩᏏᏓᏂ, ᏣᎦᏨᏍᏔᏅ ᎡᏂᏏ, ᏃᎴ ᎠᏂᎦᏲᏟ ᎠᏂᎨᏯ.\nᎣᎩᎨᏳᎯ ᎡᏆ ᎪᎨ ᎣᎩᏫᏒᏅᎢ, ᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᎸᏉᏙᎢ ᎠᏂᏤ ᏚᏯ ᏧᏓᎩᏍᏗ ᎤᏗᎴᎩ ᎨᏒ ᎪᎨᎢ!\nᏃᏗ ᏍᏓᏯ ᎠᏍᎪᎵ ᏭᏩᏂᎴᎢ, ᏓᏚᏣᎾᎩᏍᎨ ᏃᎴ ᎠᎵᏖᎸᏂᎮᎢ ᏚᏏᎳᏛ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎠᏨᏍᏙᏗᏍᎪ ᎠᏂᏃᎯᎰ ᎠᏟᎶᏍᏗ ᎦᎧᎲ ᎭᏫᏂᏗᏢ ᎤᏂᎪᏗᏱ, ᎠᎴ ᎦᏂᏢᏫᏉ? ᎥᏝᏃ ᎤᏂᎪᏗᏱ ᎠᏨᏍᏙᏗ ᎦᎪᏗᏱ?\nᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎾᏍᎩ ᎩᎶ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏙᎴᎰᏍᎩ, ᎠᏥᏛᏙᏗ ᎠᎨᎳᏗᏍᏗ ᎨᏎᏍᏗ ᎤᏓᏑᏴ ᏴᏫ ᎠᏁᎲᎢ.\nᏗᏥᏲᎵ ᏗᏇᏥ, ᏞᏍᏗ ᎢᏗᏁᎬᏉ ᎠᎴ ᏗᏗᏃᎪᎢᏉ ᏱᏗᏛᏗᏍᎨᏍᏗ ᏱᎦᏓᎨᏳᏎᏍᏗ, ᏕᎩᎸᏫᏍᏓᏁᎲᏍᎩᏂ ᎠᎴ ᎤᏙᎯᏳᏒᎢ.\nᎾᏍᎩ Ꮎ ᏭᏩᎫᏗᏗᏒ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᏂᎦᎥ ᎤᏪᎿᎢᏳ ᎨᏒ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏍᏛ ᏂᎦᏛᏁᎲ ᎦᎶᏁᏛ ᏥᏌ ᏅᏓᏳᏓᎴᏅᎯ.\nᎠᎴ ᎩᎶ ᎧᏁᎬ ᎦᏍᎩᎸ ᏓᏳᏓᎴᏅᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎡᏥᎸᏉᏓ ᎣᎦᏁᎳᏅᎯ ᏂᎯ ᏂᏥᎥ ᎢᏥᏅᏏᏓᏍᏗ ᏥᎩ, ᎠᎴ ᏂᎯ ᎡᏥᎾᏰᏍᎩ ᏥᎩ, ᏗᏣᏍᏗᎦ ᎠᎴ ᏗᏣᏔᏅ.\nᏂᎯᏃ ᎾᏍᎩ ᎦᎶᏁᏛ ᎠᏰᎸᎢ, ᎠᎴ ᏚᏫᏞᏫᏒᎢ ᎾᏍᎩ ᎢᏥᏏᏴᏫᎭ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎢᏳ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎭ, ᏗᎧᎿᏩᏛᏍᏗ ᎣᏏᏳ ᎨᏒ ᎪᎢᏳᎲᏍᎦ.\nᎡᎳᏪᏱᏃ ᎤᏅᏁᎢ. ᎤᏂᏴᎲᏃ ᎤᏅᏩᏁᎢ, ᎠᎴ ᏚᏲᏎᎢ;\nᎥᏝ ᎨᏣᏗᏔᏍᏗ ᏱᎩ ᎠᏟᏍᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵ ᎠᏟᏍᏛᎢ. ᎥᏝ ᎨᏣᎵᏍᏓᏴᏗ ᏱᎩ ᎤᎬᏫᏳᎯ ᎤᏪᏍᎩᎸ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎩᎾ ᎤᏂᏍᎩᎸᎢ.\nᎢᎾ.\nᎠᏌᎹᏗ, ᎤᏬᏚᏨ, ᏃᎴ ᎤᏓᏅᏘ ᎨᏒ ᎢᎪᎯᏓ.\nᎠᎴ ᏕᎨᏥᏲᏍᎨᏍᏗ ᏗᏥᎦᏴᎵᎨᎢ, ᎠᎴ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎪᎱᏍᏗ ᏗᏣᏓᏛᎿ, ᎠᎴ ᏗᏣᎵᎢ; ᎠᎴ ᎾᏍᎩ ᏅᏛᏅᏂᏌᏂ ᎩᎶ ᏂᎯ ᏤᏥᎢᏍᏗ ᎨᏎᏍᏗ.\nᎨᎵᏍᎬ ᎠᏰᎵ ᎤᏙᏓᏆᏓ ᏫᎦᎶᎯᏍᏗ ᏪᎵᏏ ᏧᎾᏗᏔᏍᏕ, ᏕᏥᎦᏔᎲ ᏧᏍᏆᎳ ᏕᎦᏅᏅ ᏃᎴ ᎣᏍᏓ ᏐᏈᎵ ᎠᎩᎸᏔᏅ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏥᏌ ᏧᏓᏅᏛ ᎤᏙᎴᎰᏒ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬ ᏙᏧᎾᏓᏅᏛᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᎤᏍᏗ ᎢᏣᏓᏅᏖᎭ ᏙᏗᏣᏓᏅᏛᎢ?\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎪᎲ ᎤᏂᏔᎳᏬᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙᏃ ᎯᎠ ᏣᏤᏬᎩ?\nᏝᏍᎪ ᎠᏏ ᏱᏦᎵᎦ, ᎠᎴ ᏝᏍᎪ ᏱᏣᏅᏔ ᎯᏍᎩ ᎦᏚ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᏥᎾᏂᎥᎩ, ᎠᎴ ᎢᏯᎧᎵᎢ ᏔᎷᏣ ᎢᏧᏖᏒᎢ?\nᏂᎦᏓ ᎤᎦᏃᏮ ᏩᏁᏙᎮᏍᏗ ᎠᏂᏐᎢ.\nᎡᎵᏍᎨᎢᏃ ᎤᎸᏫᏒ ᎤᏴᏍᏗ ᎫᎵᏍᏔᏅ ᏩᏚᎵᏏ ᎠᏑᏱ ᏱᎨᏒᎾ ᎤᏩᏌ ᎤᏗᏔᎲ ᏰᎵᏉ ᎦᏃᎯᎵᏙ ᎢᎾᎯᏳ, ᎡᏘᏴ ᏄᎾᏛᏁᎸ.\nᎢᏧᎳ ᎤᏁᎾᎢ, ᎠᏫᏒᏗ ᏧᏂᎯ, ᎢᏧᎳᎭ ᎢᏳᎾᏟᏂᎩᏓ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎤᎾᏰᎯᏍᏗ ᎦᏚᎲ ᎠᎹᏰᎵ ᎠᏰᎵ, ᎠᏓᎨᏗ ᎤᏲᏨ ᏧᏓᏴᎳᏙ ᎾᎥᏂᎨ.\nᏐᏈᎵ ᎠᏂᎾᏁᏍᎬ ᎠᏆᏛᎦᏅ, ᏦᎢ ᎢᏯᏂ ᏕᏥᏂᏴᎲ, ᏕᏥᎧᏁᎸ ᎤᎾᏂᎩᏍᏗ.\nᏥᏚᏂᎴ ᎠᏂᏲᏍᎩ, ᎤᏐᏱ ᎠᏓᏁᏄᎸᏗᏍᎩ ᏂᎦᏓ ᏗᎨᏥᎢᏍᏗ ᏗᎩᏴᏫ.\nᏃᎴ ᏔᎷᎩᏍᎩ ᏕᎦᎶᏛ ᎨᏂᏗ ᏃᎴ ᎣᏍᏓ ᏔᎾᏏ ᏫᏍᎩ ᎠᏥᏍᏛ.\nᎯᎠᏍᎩᏂᏃᏅ ᎬᏃᎲᏏ, ᎾᏍᎩ ᎤᎾᏓᏤᎵᏛ ᎤᎾᎵᎪᎯ ᏥᏓᏃᏎᎭ, ᎾᏍᎩ ᎦᏥᏍᏓᏩᏗᏒ ᏥᏯᏓᏙᎵᏍᏓᏁᎲ ᎤᏁᎳᏅᎯ ᏗᎩᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎪᎢᏳᎲᏍᎬᎢ ᏂᎦᏛ ᎪᏪᎵ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏚᏃᏪᎸᎢ;\nᏥᏌᏃ ᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏁᎳᏅᎯ ᎡᏦᎢᏳᏎᏍᏗ.\nᎠᏎᏃ ᎤᏪᏰᏂ ᎤᏖᎸᏅ ᎡᎳᏪ ᎤᏅᏗᏱ, ᏚᏃᏁᎴ ᏄᎵᏍᏔᏅ ᎤᎬᏫᏳᎯ ᎤᏄᎪᏫᏒ ᏗᏓᏍᏚᏗᏱ. ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎾᏍᎩ ᏫᏗᏥᏃᎲᏏ ᏥᎻ ᎠᎴ ᏦᏣᏓᏅᏟ. ᎤᏄᎪᏤᏃ ᎢᎸᎯᏢ ᏭᎶᏎᎢ.\n“Ꮟ ᏎᎦ!” ᎤᏪᎷᏁ ᏫᎵᎻ.\n”Ꭳ, ᏰᎵᏉ ᏓᎦᏓᏅᏖᎵ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏏᏉ ᎤᏁᏘᏰᎭ ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏴᏫ.\nᎠᏂᏁᏉᎨ ᎠᎾᏓᎭᏲᎯ ᏧᏙᏓᏋᏓ.\n”ᎯᏣᎦᏎᏍᏕᏍᏗ, ᏴᏫ ᏛᎾᎢ-ᎾᎢ-ᎾᎢ,” ᎤᏪᎷᏁ ᏌᏌ ᎠᏨᏯᎢ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎯᎨᏳᏎᏍᏗ ᏂᎦᎥ ᏣᎾᏫ ᎲᏗᏍᎨᏍᏗ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏙ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏖᏗᏱ.\nᏂᎦᏛᏃ ᏴᏫ ᎤᎾᏛᎦᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ, ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᏗᎨᎦᎧᏍᏔᏅᎯᏰᏃ ᎨᏎ ᏣᏂ ᏧᏓᏬᏍᏙᏗ ᎨᏒᎢ.\nᎰᎻ ᎠᏥᏲᎵᎴ,ᏫᎵᎻ ᎱᏙᎰᏎ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᎾᏍᎩ ᎢᎦᏪᏛ, ᎠᎴ ᏩᏍᏛ ᏧᏓᏂᎸᎢᏍᏗᏳ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᎪ ᎡᎶᎯ ᎤᎷᏨᎢ, ᏚᏍᏕᎸᎯᎸ ᎠᏂᏍᎦᎾᎢ, ᎠᏴ ᎾᏍᎩ ᎾᎩᎬᏫᏳᏒ ᏥᏍᎦᎾᎢ.\nᎬᏂᎨᏒᏰᏃ ᏂᎦᏥᏴᏁᎭ ᎾᏂᎥᏉ ᎩᎶ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎠᏂ ᎪᏪᎵᎯ ᏥᎪᏪᎳ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ. ᎢᎧᏁᏉᏍᎨᏍᏗ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎠᏂ ᎪᏪᎵᎯ ᏥᎪᏪᎳ, ᎤᏁᎳᏅᎯ ᎠᏎ ᎤᏁᏉᎡᏗ ᎨᏎᏍᏗ ᎤᏕᏯᏙᏗ ᎨᏒ ᎠᏂ ᎪᏪᎵᎯ ᏥᎪᏪᎳ;\nᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ.\nᏂᎯ ᏰᏃ ᏣᏤᎵ ᎯᎪ ᎢᎦ.\nᏥᏌ ᎦᎶᏁᏛ ᏅᏩᏍᏗᏉ ᎤᏒᎯ ᏥᏄᏍᏛ, ᎠᎴ ᎪᎯ ᎢᎦ, ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ.\nᏂᏥᏲᎵᎪ ᏣᎵ ᎠᏧᏣᏉ ᏥᎨᏒ, ᎠᏆᏦᏍᏔᏁᎲ ᎦᏓᏅᏖᏍᎬ, ᎾᏍᎩ ᎠᏫᏒᎥᏍᎩ ᏃᎴ ᎤᎵᏘᎾᎥ ᎤᏂᏍᎦᏎᏗ ᎤᎾᎵᏓᎩᏛ ᎢᏳᎵᏍᏙᏗ.\nᎠᏎᏃ ᎿᏉ ᎣᏏᏳ ᎤᏰᎸᏅ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎾᎯᏳ ᎡᏥ ᎠᎩᎾᏄᎪᏫᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏆᏓᏓᎴᏔᏅᎯ ᏥᎩ, ᎠᎴ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎩᏯᏅᏔᏅᎯ ᏥᎩ,\nᎢᏥᏙᏓ ᎠᏍᎩᎾ ᏅᏓᏣᏓᎴᏅᎯ ᏂᎯ, ᎠᎴ ᎢᏥᏙᏓ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎲ ᎢᏣᏛᏁᏗᏱ ᎢᏣᏚᎵᎭ. ᎾᏍᎩ ᏴᏫ ᏗᎯᎯ ᏂᎨᏐ ᏗᏓᎴᏂᏍᎬᎢ, ᎠᎴ ᎤᏙᎯᏳᎯ ᎨᏒ ᎥᏝ ᏱᏚᎴᏂᏍᎬᎢ, ᎠᎴ ᎤᏙᎯᏳᎯ ᎨᏒ ᎥᏝ ᏱᏚᎧᎿᏩᏛᏎᎢ, ᎥᏝᏰᏃ ᎤᏙᎯᏳᎯ ᎨᏒ ᏳᏪᎭ. ᎦᏰᎪᎩ ᎧᏁᎩ ᎤᏤᎵᎦᏉ ᎧᏁᎪᎢ; ᎦᏰᎪᎩᏰᏃ ᎾᏍᎩ, ᎠᎴ ᎤᎦᏴᎵᎨ ᎦᏰᎪᎩ ᎨᏒᎢ.\nᏓᏲᏍᏕᏏ ᏫᎵᎻ.\nᎠᏍᎦᏂᏰᏃ ᎤᎵᏁᏨ ᎬᏗᏍᎬ ᎠᎩᎶᏄᎮᎸᎩ, ᎠᎴ ᎾᏍᎩ ᎠᎩᎯᏍᏔᏅᎩ.\nᏱᎰᏩ, ᏕᏅᏂᎸ ᏗᏣᏤᎵ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎠᏥᎸ ᏗᎨᎳᏍᏗᏱ ᏗᏣᏤᎵ ᏚᏂᏲᏍᏔᏅ; ᎠᎴ ᎠᏋᏒᎯᏳ ᎠᏆᎵᏃᎯᏴ, ᎠᎴ ᎠᏴ ᎬᎩᎯᏍᏗᏱ ᎤᏂᏲᎭ.\nᎯᏥᎳᏅᏓᏗᏏ ᎤᎶᎯᏍᏗ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ.\nᏚᏍᏓᏩᏛᏎᏃ, ᎠᎴ ᎾᏎᎵᏗ ᏭᎷᏤᎢ, ᎠᎴ ᏕᎤᏁᎶᏕᎢ. ᎤᏥᏍᎩᏂ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏔᏁ ᎤᎾᏫᏱ.\nᎾᏍᎩᏃ ᏞᏍᏗ ᎣᏏᏳ ᏂᏣᏛᏁᎲ ᎤᏐᏅ ᏳᏂᏃᎮᎴᏍᏗ.\nᎬᏅ ᎢᎪᎯᏛ ᎠᏆᏕᏯᏙᏓᏅ.\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎩᎶ ᎠᏢᏈᏍᎨᏍᏗ ᏱᎰᏩ ᎠᏢᏆᏍᏙᏗᏍᎨᏍᏗ.\nᎤᎩᏨᏓ ᎤᏂᎧᎲᏎ ᏫᎵᎻ, ᏑᎧᏔ ᏧᎬ ᎡᎲ, ᏗᎩᏏ ᏗᎦᏓᏍᎬ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗᏣ.\nᏧᎾᏍᏕᏥ ᏚᏍᎪᏎ ᏃᎴ ᎤᏅᎪᎥᏔᏁ ᎦᏓ, ᏚᏩᏯᎨ ᎾᏍᎩᏯ ᎠᎪᏍᏗ ᏒᎧᏔ.\nᎦᏅᏓᏗᏍᎪ ᏌᏊ ᎢᏳᏩᎪᏗ ᏥᏧᏔᏊ ᏥᎨᏒ ᎩᎶ ᎤᏛᏐᏅ ᎤᏢᎬ ᎢᎸᏍᎩ ᏧᏒᎯᏓ ᎤᏢᏨ ᎠᎴ ᏂᏚᎵᏏᏂᏒ ᎤᏣᏙᎬ ᏂᎬᏩᏍᏛ.\nᎩᎶ ᎾᏍᎩ Ꮎ ᏥᎪᎯᏳᎲᏍᎪᎢ, ᎥᏝ ᎤᏍᎦᏅᏨᎯ ᏧᏚᎪᏔᏅᎯ ᏱᎨᏐᎢ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎾᏍᎩ ᎦᏳᎳ ᎤᏍᎦᏅᏨᎯ ᏧᏚᎪᏔᏅᎯ ᎨᏐᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏄᏬᎯᏳᏅᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᏕᎤᏙᎥ ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ.\nᏧᏓᎴᏅᏓ ᎦᎵᎨᏴᏗ, ᎠᏥᏍᏙᏗ, ᏗᏗᏙᏗ ᏃᎴ ᏗᎫᎩᏍᏙᏗ.\n“ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ...” ᏰᎵ ᎤᎾᏓᏃᏴᎵᏍᏕᎢ.\nᏫᏥᎢᎦ ᎨᏒ ᎪᎰᏍᏗ ᏱᎾᏆᏛᏁᎸᎾ ᎨᏒ.\nᎦᎸᎳᏗᏣ ᎧᏅᏑᎸ ᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ ᏚᎩᏥᏞᎢ ᏌᎳᏓ, ᎠᎬᏱᏣ ᏕᎦᏅᏌᏛᎢ ᏗᎬᏗ ᎤᏄᎩᏤᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ.\nᎠᎴ ᏣᏥ ᏗᎦᏚᎲ ᎦᏚᏏᏣ, ᎠᎹᏱ ᎨᏴ ᏫᏙᏍᏓᎧᎾᏂᏍᎬ Alexandria ᎢᏣ, ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ ᎢᏣ, ᏓᏂᏂᎩᎸ ᏃᎴ ᎠᏂᏩᏥᏂ ᏓᏓᏁᎸ ᎾᎥᏂ ᎣᏍᏗᎶᏍᎬ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎦᏙ ᎤᏍᏗ? ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏥᏌ ᎾᏎᎵᏗ ᏤᎲᎩ ᏄᎵᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎠᏙᎴᎰᏍᎩ ᏥᎨᏒᎩ, ᎤᎵᏂᎩᏛ ᏚᎸᏫᏍᏓᏁᎸ ᎠᎴ ᏓᏕᏲᎲᏍᎬ ᏥᎨᏎ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎠᎴ ᏂᎦᏛ ᏴᏫ ᎠᏂᎦᏔᎲᎢ.\nᎣᎦᏛᎦᏅᎩ ᎯᎠ ᏂᎧᏪᏍᎬᎩ, ᏓᏥᏲᏍᏔᏂ ᎯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᏍᎩ ᏗᎪᏱ ᏗᎬᏔᏅᎯ ᎪᏢᏅᎯ, ᏦᎢᏉᏃ ᏧᏒᎯᏛ ᏛᏥᏱᎵᏙᎵ ᏛᎦᏁᏍᎨᎯ ᏅᏩᏓᎴ ᏗᎪᏱ ᏗᎬᏔᏅᎯ ᏂᎨᏒᎾ.\n”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ ᎠᎦᏗᏓ ᎭᎲᏍᎩ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᎾᏍᎩᏰᏃ ᏂᎦᎥ ᎪᎱᏍᏗ ᏧᏬᏢᏅᎯ, ᎾᏍᎩ ᎦᎸᎳᏗ ᏤᎭ, ᎠᎴ ᎡᎶᎯ ᏤᎭ, ᎬᎪᏩᏛᏗ ᎠᎴ ᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎢᏳ ᎤᏂᎬᏫᏳᎯ ᏧᏂᏗᏱ ᏱᎩ, ᎠᎴ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏘᎩ, ᎠᎴ ᎨᏥᎸᏉᏗ ᏱᎩ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ ᏱᎩ; ᏂᎦᏗᏳ ᏄᏓᎴᏒ ᎾᏍᎩ ᏚᏬᏢᏁᎢ, ᎠᎴ ᎤᏩᏒ ᏚᏓᏙᏢᎾᏁᎴᎢ;\nᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏁᎸᏙᏗ, ᎠᎫᏩᏌ ᏴᎦᏓᏲᎵᎦ ᏗᏆᏓᎴᏅᎢ ᎤᏪᎵᏎ.\nᎾᏍᎩ ᎯᎠ ᎤᏟ ᎠᏃᏏᏳ ᎨᏒᎩ ᎡᏍᎦᏉ ᏕᏏᎶᏂᎦ ᎠᏁᎯ, ᏚᎾᏓᏂᎸᏨᎩᏰᏃ ᎧᏃᎮᏛ ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᏓᏂᎪᎵᏰᏍᎬᎩ ᎪᏪᎵ, ᎾᏍᎩ ᏄᏍᏛ ᎠᎴ ᎾᏍᎩ ᏄᏍᏛᎾ ᎨᏒ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ.\nᎤᎾᏓᏙᎵᏍᏔᏅᏃ ᎤᎵᏖᎸᏁ ᎾᎿ ᏓᏂᎳᏫᎥᎢ, ᏂᎦᏛᏃ ᏚᏂᎧᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎾᏂᏍᎦᎢᎲᎾ ᎤᏂᏃᎮᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎠᎩᎪᎲᎩᏃ ᎦᎸᎶᎢ ᎤᎵᏍᏚᎢᏛ ᎨᏒᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎬ ᏐᏈᎵ (ᎥᏥᎪᎥᎩ;) ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎤᎩᎵ, ᏄᏓᎵᏓᏍᏛᎾ ᎠᎴ ᏚᏳᎪᏛ (ᎢᏯᏛᏁᎯ) ᎠᎪᏎᎲᎩ, ᎠᎴ ᏚᏳᎪᏛ ᎬᏗᏍᎬ ᏕᎫᎪᏗᎭ ᎠᎴ ᏓᎿᏩ ᎪᏢᏍᎦ.\nᏃᏉ ᎩᎳᏈᏴ, ᎾᎥᏂ ᏗᏁᎨ ᎠᎾᏓᎭᏲᎯ.\nᎠᏴ, ᏉᎳ, ᎤᏁᎳᏅᎯ ᎠᎩᏅᏏᏙᎯ, ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ, ᎾᏍᎩᏯ ᎤᏃᎯᏳᏒ ᎤᏁᎳᏅᎯ ᏧᏑᏰᏛ, ᎠᎴ [ᎾᏍᎩᏯ] ᏗᏓᏂᎸᎢᏍᏗ ᎨᏒ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᏥᎩ,\nᏫᏚᏯᎲᏃ ᎤᏂᏣᏘ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏣᏛᎬᎦ ᎠᎴ ᎢᏦᎵᎩ.\nᎢᎫᏩᏟᏍᏔ ᎤᎴᏅᎲ ᏕᎪᏪᎵᏍᎬ ᎠᏌᎻᏓ.\nᎩᏟ ᎤᏛᎦᏁ ᎠᏂᎾᏁᏍᎬ, ᏧᏅᎪᏤ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎭᏫᏂᏣ, ᏚᏍᏕᎸᎲᏎ ᎠᏂᎨᎯᏒ.\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏤᎦᏈ ᎣᏏᏳ ᏥᏰᎸᏅ, ᎢᏐᏍᎩᏂ ᏥᏂᏆᏘᎸ.\nᎾᎯᏳᏃ ᎢᎦ ᎠᏛᏅᎢᏍᏙᏗᏱ ᎨᏎᎢ, ᎤᎾᏙᏓᏆᏍᎬᏃ ᎿᏉ ᎤᎩᏥᏍᎨᎢ.\nᎤᏨᏉᏗ ᎨᏎᏍᏗ ᎰᎻ ᏃᎴ ᎠᎵᎮᎵᎨᏍᏗ ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᎤᎾᏌᎥ ᏏᏆ.\nᎿᏉᏃ ᎾᏍᎩ ᎠᏂᏔᎵ ᎢᏧᎳᎭ ᏚᏂᏍᏆᎸᏔᏅᎩ; ᏐᎢᏃ ᎠᏓᏍᏓᏩᏗᏙᎯ ᏚᏓᎩᏴᎩ, ᎢᎬᏱ ᎠᏤᎵᏍᏛ ᎤᎷᏨᎩ.\nᏣᏓᏬᏍᎪ ᎤᏤᎸᏁ, ᎠᎵᏴᏍᎪᏳᎲᏍᎨ ᏃᎴ ᎠᎵᏍᎩᏏᏙᎮ ᎣᎳ ᎤᏰᎸ ᎠᏓᏅᎵᏰᏍᎨᎢ ᏗᎧᏃᎨᏂ ᎭᏫᏂᏣ.\nᎿᏉᏃ ᏗᏦᎸ ᏫᏥᎦᏘ, ᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎠ ᎠᏂ ᎡᎶᎯ, ᎬᏉᎵᎮᎵᎬ ᎤᏂᎧᎵᎢᏍᏗᏱ ᎤᎾᏓᏅᏛᎢ.\nᏇᏗᏂᏱᏃ ᎡᏙᎮᎢ, ᏌᏩᏂ ᎠᏓᏰᏍᎩ ᎤᏢᏨᎯ ᎦᏁᎸᎢ, ᎦᏅᎨᏃ ᎠᎵᏍᏓᏴᎲᏍᎨᎢ, ᎠᎨᏴ ᎤᎷᏤ ᎠᏰᎮ ᎫᎫ ᏅᏯ ᎤᏁᎬ ᎠᏢᏔᏅᎯ ᎠᏟᏍᏕ ᎠᏠᏁᏗ ᎾᏓ ᏧᏙᎢᏛ, ᎤᏣᏘ ᏧᎬᏩᎶᏗ; ᎠᎴ ᎤᎶᏒ ᎫᎫ, ᎠᎴ ᎤᎶᏁᏔᏁ ᎠᏍᎪᎵ.\nᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎤᎾᏓᏅᏖᎴ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎪ ᎯᎠ ᎾᏍᎩ ᏣᏐᏢᎢᏍᏗᎭ? ᎦᎪ ᎬᏩᏓᏙᎵᏍᏗ ᎠᏍᎦᏅᏨᎢ? ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏩᏒ?\nᎤᏣᏘᏃ ᎤᏁᎷᏅᎩ; ᏗᏃᏪᎵᏍᎩᏃ ᎠᏂᏆᎵᏏ ᎤᎾᎵᎪᏒ ᎤᎾᎵᎪᎯ ᏚᎾᎴᏅᎤᎾᏗᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎥᏝ ᎪᎱᏍᏗ ᎤᏲ ᏲᏥᏩᏛᎡᎭ ᎯᎠ ᎠᏍᎦᏯ, ᎢᏳᏍᎩᏂ ᎠᏓᏅᏙ ᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏁᏤᎸᎯ ᎨᏎᏍᏗ, ᏞᏍᏗ ᎤᏁᎳᏅᎯ ᏤᏓᏟᏴᎡᎸᎩ.\n”ᏤᏍᏗ ᏩᎦ ᏧᎾᏗᎩᏓ ᏳᏫᏣᏗᏅᏎᏍᏗ ᏏᏆ ᎤᏴᏍᏗ.\nᏃᎴ ᎦᏄᎾᏓᎴᎩ, ᎤᎵᏏᎩ ᎤᎾᎦᎸ, ᏫᏥᎢᏴ ᎾᏍᎦᏰᎬᏍᏓ ᎨᏎ ᎡᏍᎦᏉ ᎤᏁᎾᎢ ᏗᏂᎳᏫᎩ ᏃᎴ ᎤᏨᏉᏗ, ᎠᎦᏔᏁᎢ ᎠᏁᎵᏍᎨ.\nᎠᏕᎳ ᏓᎶᏂᎨ ᏍᏉ ᎧᏂᎩᏓ.\nᏂᎦᏗ ᏱᎬᏆᏓᎰᏓ.”\nᎾᎿᏃ ᎠᏂᏙᎾᎡ ᎤᏂᏣᏖ ᎠᏂᎨᏴ Ꭸ ᎢᏴᏛ ᏙᏗᏂᎧᏁᎢ, ᎾᏍᎩ ᏥᏌ ᎨᎵᎵ ᏅᏓᎬᏩᏍᏓᏩᏛᏛ ᎬᏩᏍᏕᎸᎯᏙᎸᎯ,\nᎠᎴ ᏥᎦᏔᎭ ᏂᎪᎯᎸᎢ ᏍᏆᏛᎦᏁᎲᎢ; ᎠᏎᏃ ᏴᏫ ᎠᏂ ᏣᏂᏙᎾᎠ ᏅᏓᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏥᏂᏥᏫ, ᎤᏃᎯᏳᏗᏱ ᏂᎯ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ.\nᎢᏳᏃ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᏓᎯᎯ ᎨᏒ ᎤᎬᏩᎵ ᏥᎪᏪᎴ ᏣᏰᎶᎴ ᏅᏲᎯ ᎦᎸᏉᏗᏳ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᎪᎯᏛ ᏗᎬᏩᎾᎧᏃᏗ ᏂᎨᏒᎾ ᏥᎨᏎ ᎼᏏ ᎤᎧᏛᎢ, ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏗᎬᏩᎸᏌᏛ ᎨᏒ ᎤᎧᏛᎢ; ᎾᏍᎩ ᎠᎲᏍᏗᏉ ᏥᎨᏎᎢ;\nᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎿᏉ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎯᎠ ᎾᏍᎩ ᏂᎦᎵᏍᏔᏂᏙᎲᎢ, ᎢᏥᎦᏔᎮᏍᏗ ᎾᎥᏂᏳ ᎨᏒᎢ, ᎦᎶᎯᏍᏗᏱᏉ ᎨᏒᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎩᎶ ᎤᏓᎵᎢ ᎠᏓᎡᎨᏍᏗ, ᎠᎴ ᏅᏩᏓᎴ ᎠᏓᏰᎨᏍᏗ, ᎾᏍᎩ ᎠᏓᏲᏁᎮᏍᏗ ᎠᏍᎦᏅᏤᎮᏍᏗ ᎾᏍᎩ.\nᎯᎠ ᎾᏍᎩ ᎣᎵᏩ ᏔᎵ ᏕᏡᎬᎢ, ᎠᎴ ᏔᎵ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗᏱ ᏥᏕᎦᎧᎭ ᎤᏁᎳᏅᎯ ᎡᎶᎯ ᎤᏬᏢᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ.\nᎤᏙᏓ ᎤᏲᏏᏙᎸ ᎨᏎ ᏁᎳᏚᏔᎵᏚ ᎤᏕᏱᏴᏌᏗᏒ, ᎠᏘᎨ ᎤᏥ ᎠᏎ ᎤᏲᎰᏒ.\nᎠᏂᏰᏃ ᎣᏥᏯᎥ ᎣᎩᎵᏰᏗᎭ, ᎤᏣᏘ ᎣᎦᏚᎵᎭ ᎣᎦᏄᏬᏍᏙᏗᏱ ᎣᏥᏁᎸ ᎾᏍᎩ Ꮎ ᎦᎸᎶ ᏅᏓᏳᏓᎴᏅᎯ;\nᎤᎾᏙᏓᏆᏍᎬᏃ ᎢᎦ ᎨᏒᎩ ᏥᏌ ᏝᏬᏔ ᎤᏬᏢᏅ ᎠᎴ ᏗᎦᏙᎵ ᏚᏍᏚᎢᏒ.\n“ᎨᏍᏗ ᎭᏂ ᏣᏓᏂᏯᏍᏗ ᏱᎩ.\nᎠᎴ ᏁᎲᎾ ᎨᏎ ᎤᏁᏥ, ᎵᏏᏰᏃ ᎥᏝ ᏱᏓᎷᎸᎥᏍᎨᎢ, ᎠᎴ ᎢᏧᎳ ᎿᏉ ᎠᏂᎦᏴᎵᎨ ᎨᏎᎢ.\nᎠᎴ ᏩᎾᎦᎳ ᏂᎨᏒᎾ ᎨᏒ ᎤᏬᎯᏳᏒᎢ, ᎥᏝ ᏳᏓᏅᏖᎴ ᎤᏩᏒ ᎠᏰᎵ ᎤᎵᏬᏨᎯ ᎨᏒᎢ, ᎿᏉ ᎠᏍᎪᎯᏧᏈ ᎢᏴᏛ ᎢᏳᏕᏘᏴᏛ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏳᏓᏅᏖᎴ ᎤᎶᏒᏍᏓᏁᎸᎯ ᎨᏒ ᏎᎵ ᏧᏓᎾᏄᎪᏫᏍᏗᏱ;\nᏍᎩᎾᎾ ᎢᏴ ᎤᏓᏲᏍᏔᏁᎴ ᏌᎳᏓ.\n”ᎮᎵᎠᎨ ᎧᏅᏂᏍᎩ...” ᎤᎴᏅᎮ ᎰᎻ---ᎤᎵᏍᏛᏂᎴᎢ, ᎨᏍᏗ ᏳᏍᏆᏙᎾ ᎢᏳᏪᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎯᏲᎯᎮᏍᏗ ᏣᏓᏁᏗ, ᎾᎿᏃ ᎢᎭᏅᏓᏗᏍᎨᏍᏗ ᏗᏍᏓᏓᏅᏟ ᎪᎱᏍᏗ ᏤᎵᏎᎲᎢ,\nᎾᏍᎩᏯ ᎾᏍᏉ ᎦᏃᎦ ᎤᏍᏗᎩᏳ, ᎠᏎᏃ ᎠᏉᎯᏳ ᎦᏬᏂᏍᎪᎢ. ᎬᏂᏳᏉ ᎤᏍᏗ ᎠᏥᎸ ᏄᏣᏔ ᎠᏓ ᏓᏥᏍᏢᏍᎪᎢ.\nᏍᎩᏃᎲᏏ, ᎢᎳᎩᏳ ᎾᏍᎩ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ? ᎠᎴ ᎦᏙ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᎾᎯᏳ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒᎢ?\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᏥᏴᎩ ᎤᎬᏫᏳᎯ ᎠᎩᏍᏛᏗᏍᎬ ᎥᎩᏴᎩᏅᎯ, ᎢᏨᏔᏲᏎᎭ ᎢᏣᎴᏂᏓᏍᏗᏱ ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᏓᏯᏅᏙᏗ ᎨᏒ ᎾᏍᎩ ᏂᎯ ᎡᏥᏯᏅᏔᏅᎯ ᏥᎩ;\n“ᎭᏩ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎠᏆᏚᎵᏍᎬ ᏗᏆᏔᏪᏙᏍᏗ, ᎠᏎᏃ ᏫᏥᏂᏴ ᎤᏬᏰᏂ, ᏓᏳᎾᏌᎾᎩᏒ.\nᎦᏁᏌ ᎠᏓᏴᏍᏕᏍᎩ ᏗᎦᎶᏔᏅ, ᎣᏍᏓ ᎪᏪᎵ ᏗᏒᏗ, ᏱᏗᎦᏒᏓᏅ ᎠᏦᎭᏴ, ᎦᏢᏗ ᎠᏍᏆᏚᎸ ᎠᏓᎾᏅ.\nᏎᎩᏃ ᎤᏓᏍᏛᏝᏁ.\nᎾᏍᎩ ᏞᏍᏗ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᏱᏗᏥᏴᏍᏕᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎤᏣᏘ Ꭴ-ᏲᎢᏳ ᏥᎩ; ᎠᏓᏅᏙᏍᎩᏂ ᎢᏥᎧᎵᏬᎯ ᎨᏎᏍᏗ.\nᎢᏧᎳ ᎤᎾᏦᏍᏔᏁ, ᎫᏩᎾᎴᏗ ᏱᎨᏒᎾ ᏚᏓᏫᏍᎦᎨᎢᏴ ᏅᏯ.\nᏴᏫ ᎤᏪᏥ ᎤᏙᎯᏳᎯ ᎤᏪᏅᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᎪᏪᎸ ᎠᏥᏃᎮᏍᎬᎢ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎠᏍᎦᏯ ᏴᏫ ᎤᏪᏥ ᎠᏡᏗᏍᎩ! ᎣᏏᏳ ᏱᎨᏎ ᎢᏳᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᏄᏕᏅᎾᏉ ᏱᎨᏎᎢ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᏯᎦᏓ ᎡᏍᎦ.\nᎢᏳ ᎠᎴ ᎦᎶᏁᏛ ᏧᏤᎵ ᏱᎩ ᏂᎯ, ᎿᏉ ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ ᏂᏣᎵᏍᏗᎭ, ᎠᎴ ᎢᏣᏤᎵᎦ ᎤᏘᏴᎯ ᎾᏍᎩᏯ ᏂᎬᏅ ᎠᏚᎢᏍᏛᎢ.\nᏂᎦᏛᏃ ᎦᏚᎲ ᎤᎾᎵᏖᎸᏅᎩ, ᎠᎴ ᏴᏫ ᎤᎾᏓᏟᏌᏅᎩ, ᎠᎴ ᏉᎳ ᎤᏂᏂᏴᎲᎩ ᎤᏂᎾᏌᎾᏫᏛᎲᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏄᎪᏫᏒᎩ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎦᎶᎯᏍᏗᏱ ᏚᏂᏍᏚᏅᎩ.\nᏈᎵᎩᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏰᎵᏉ ᎢᏳᏃ ᏂᎦᎥ ᏣᎾᏫ ᏴᏗᎭ ᏲᎯᏳᎲ-Ꭶ. ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎪᎢᏳᎲᏍᎦ ᏥᏌ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ.\nᎬᏯᎵᎮᎵᏍᏓᏁᎭ!”\nᎦᏄᎪᎮᏃ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏏᏴᏫ ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎬᏂᏳᏉ ᎾᏂᏕᎤᏍᏗ ᏅᏯ ᎠᎴ ᏂᏕᎤᏍᏗ ᏓᏓᏁᎸᎢ?\nᏂᎦᏛ ᎠᎾᎵᏅᏟ ᎦᎸᏉᏗᏳ ᏗᏓᏙᏪᏙᎥᏍᏗ ᏕᏥᏲᎵᏍᏗᏍᎨᏍᏗ.\nᎯᎠ ᏄᏪᏒ, ᎠᏲᎰᏎᎸ ᏥᏃᎮ, ᏂᎯ ᏍᏉ ᏓᏣᏲᎰᏎᎵ .\nᎥᏝᏰᏃ ᏴᏫ ᏗᎬᎩᏲᎯᏎᎸᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏇᏲᏅᎯ ᏱᎩ, ᏥᏌ ᎦᎶᏁᏛᏍᎩᏂ ᎬᏂᎨᏒ ᎢᏯᏋᏁᎸᎯ.\nᎤᎪᎵᏰᎡ ᏫᎵᎻ.\nᎦᏣᏄᎳ ᏕᎦᎵᎥᏂᏍᏗᏍᎨ ᏕᎪᏯᏛ ᎠᏁᎸᏗᏍᎬ ᏎᏉ ᎤᏟᏫᏛᏗ.\nᎨᏍᏗᏃ ᏳᎯᏯ ᎤᎾᏑᏯᎩᏍᏗ.\nᎤᏁᏤᎸ ᎤᏥ ᎤᏬᎯᏳᏁ ᎡᎳᏆᏗ, ᏓᏆᎴᎳ ᎠᏌᏅᏗ ᏭᎩᎶᏫᏎᎢ, ᎣᎯᏍᏗᎨ ᎤᎪᏩᏛᏗ.\nᎤᎾᏚᎵᏍᎩᏍᎩᏂ ᏥᎩ ᎤᏁᏅᎢᏍᏗᏱ, ᎤᏓᎴᎾᏍᏗᏱ ᎠᎴ ᎠᏌᏛ ᏫᏓᏂᏅᎪᎢ, ᎠᎴ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎤᎵᏍᎦᏂᏍᏛ ᎠᎴ ᎤᏲ ᎢᏯᏓᏛᏁᎯ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏥᏚᏂᏃᏴᏘᏍᏗᎭ ᏴᏫ ᎾᎿ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ.\nᏣᏚᎵᏍᎪᏃ ᏣᎦᏙᎥᎯᏍᏗᏱ, ᏂᏣᏓᏅᏛᎾ ᎯᏍᎦᏯ, ᎪᎯᏳᏗ ᎨᏒ ᎤᎵᏬᏨᎯ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏔᎵ ᏄᏛᏛᎾ ᏱᎩ?\nᎩᎳᏈᏴ ᎤᏍᏗ ᎠᏣᏗ ᎱᎶᏎ ᏃᎴ ᎯᎠ ᏄᏪᏎ, ᏏᏲ ᎡᏆ ᎠᏣᏗ, ᏃᏗ ᏫᏥᎢᏣ ᏭᏓᏬᎡ.\nᎤᎦᏌᏯᏍᏗᏕᎩᏃ ᎯᎠ ᏄᏪᏎ ᎤᏩᏒ ᏧᏓᏅᏛᎢ, ᎦᏙ ᏓᎦᏛᏁᎵ, ᎠᎩᏅᏏᏙᎯᏰᏃ ᎠᎩᎩᎡᎭ ᎠᏆᎦᏌᏯᏍᏗᏕᎩ ᎨᏒᎢ? ᏝᏃ ᏰᎵ ᎬᏆᏍᎪᏍᏗ ᏱᎩ; ᎠᏆᏚᎳᏗᏓᏍᏗᏱᏃ ᎢᎦᏕᎣᏍᎦ.\nᎤᏪᎷᏁᎢ.\nᎤᏲᏰᏃ ᎠᏓᏅᏓᏗᏍᏗ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏒ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛ ᏩᎵᏰᎢᎶᎯᎭ ᎥᏓᏗᏍᏕᎸᏗᏱ ᏫᎦᎷᎩ, ᎾᏍᎩ ᎤᏲ ᎠᏰᎸᏗ ᏂᎨᏒᎾ; ᎡᎶᎯᏍᏗᏂ ᎡᎯ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ.\nᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ ᎤᎾᎧᏙᏍᏓᏁᎢ ᎦᏓᎥᎢ.\nᏣᏄᏏ Ꮟ ᎩᎳᎯ ᎦᏙᎨ, ᏃᎴ ᎠᏂᎪᏕᏍᎩ, ᏂᎦᏓ ᏦᎢ ᎢᏯᏂ ᏓᏂᏙᎨ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᎪᎯᏓ, ᎠᏂᎪᎵᏰᏍᎨ ᎢᏗᎦᏪᏍᏗ ᎤᏩᎬᏘᎶᏓ, ᏃᎴ ᎤᎾᎦᏙᏍᏕ ᏫᎵᎻ.\nᎠᎹᏳᎸᏓ ᎾᎥᏂ ᏚᏂᏣᎦᏒ ᎠᎯᏯ ᎤᏓᏓᏍᎬ, ᎤᎾᎦᎰᏍᏔᏅ, ᏎᎦ ᎡᎶ ᏣᎵᏍᏆᏗᏍᎪ ᏄᏍᏛ.\nᎠᎴ ᎵᏃ ᏚᏂᎧᏅ ᎯᎠ ᏄᏂᏪᏎ ᏚᎾᏛᏛᏁᎢ; ᎦᎪ ᎤᎵᏂᎬᎬᎢ ᎠᎴ ᎦᎪ ᎦᏙᎥ ᎢᏍᏛᏔᏅ, ᎯᎠ ᏂᏍᏓᏛᏁᎸ?\nᎦᏓᏁ ᎤᏑᎸ ᎡᎳᏆᏗ ᎦᏓᏁ ᏄᏩᏁᎴ ᎦᏗ.\nᎢᏅ ᏗᏂᏙᎾᎡᏍᏗ ᎠᏂᏍᎦᎢᎲ ᎠᎩᎵᏲᎬ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎤᏲᏍᏛᏉ, ᎤᏲᏍᏛᏉ, ᎾᏍᎩ ᎾᎡᏆ ᏓᏓᎶᏂ, ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎦᏚᎲᎢ! ᏑᏟᎶᏛᏉᏰᏃ ᎢᎪᎯᏛ ᏗᏣᏚᎪᏓᏁᏗ ᎨᏒ ᏣᎷᏥᏏ.\nᎣᎬᏛᎦᏅ ᎩᎶ ᎢᏳᎾᏍᏗ ᎪᎦᏓᏑᏰᏛ ᎠᏂᏬᏂᏍᎬ ᎨᏣᏕᏯᏙᏔᏅᎢ ᏕᎨᏥᎦᏔᎲᎡᎲ ᏗᏣᏓᏅᏙ, ᎯᎠ ᎾᏂᏪᏍᎬᎢ; ᎠᏎ ᏤᏥᎤᏍᏕᏎᏗ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏦᏥᏁᏤᎸᎯ ᏂᎨᏒᎾ;\nᎲᎦ ᎾᏂᎠᎭ?\nᎢᏳᏃ ᏕᏛᏂᎡᏍᏗ ᎠᏎ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᎩᎬᏫᏳᏌᏕᎨᏍᏗ; ᎢᏳᏃ ᎢᏒᏓᏓᏱᎸᎭ ᎾᏍᏉ ᎠᏎ ᏓᎦᏓᏱᎵ.\nᏕᏫᏰᏃ ᎪᎱᏍᏗ ᏚᏛᏁᎸ ᎾᎯᏳ ᎤᎾᏕᏅᎯ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬ ᎾᏍᎩᏯᎢ, ᎤᎸᏁᎢ, ᎠᎴ ᏧᎦᏴᎵᎨ ᏓᏂᎾᎥ ᎠᏥᏅᏁᎢ, ᎠᎴ ᎤᎪᏎᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᏕᎤᏲᏒᎩ ᎤᏕᎰᎯᏍᏗ ᎤᎾᏚᎸᏅᏗᏱ; ᎾᏍᏉᏰᏃ ᎠᏂᎨᏴ ᏧᎾᏤᎵᎦ ᎾᏍᎩ ᎠᎲ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎤᏂᏁᏟᏴᏍᏔᏁ ᎾᏍᎩ ᎠᎲ ᎢᏳᎾᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏚᏪᏲᏁᏰᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏴᏫ ᎤᏪᏥ ᏓᏥᏲᎯ ᏕᎨᏥᏲᎯᏏ ᏴᏫ. ᎠᎴ ᏓᎬᏩᎵ; ᎠᎴ ᎣᏂ ᎿᏉ ᎠᏥᎸᎯ ᎨᏎᏍᏗ, ᏙᏛᎠᎴᎯᏌᏂ ᏦᎢᏁ ᎢᎦ.\nᎤᏓᏅᏙᎩᎯᏃ ᎭᏫᏂ ᎤᎵᏰᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎪᎯ ᎯᎠ ᏣᏁᎭ ᎤᏰᎸᏛ ᎤᏂᏲᎭ? ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎬᏂᎨᏒ ᎢᎨᎬᏁᏗ ᏱᎨᏎᏍᏗ ᎤᏰᎸᏛ ᎯᎠ ᎪᎯ ᏣᏁᎭ.\nᎣᎩᎸᏉᏗ ᎨᏒ ᎾᎥ ᎢᏦᎦᏓᎵ ᏧᏁᏅᏒ ᏬᎨᏓᏍᏗ.\nᎠᏃᎯᏳᎲᏍᎩᏃ ᎤᏂᎧᎵᏨᎯ ᎨᏎ ᎠᎾᎵᎮᎵᎬᎢ ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\nᏰᎵ ᏧᏕᏘᏴᏓ ᏥᎨᏎ ᏣᎵ ᏧᏤᎵ ᏗᏂᏲᏟ ᏥᏚᏃᎯᏎᎴ ᏲᎾ.\nᏧᏍᏆᏴᏍᏗ, ᎤᏲ ᎤᏓᏅᏖᎢ ᎤᏲᎰᏎᎸ ᎤᎸᏉᏗ ᎤᏪᏥ.\nᏉᎳᏃ ᎤᏠᎣᏒ ᎤᎵᏢᏅᎩ, ᎠᎴ ᎤᏄᎶᎸ ᎯᎠ ᏄᏪᏒᎩ; ᏞᏍᏗ ᏱᏣᏕᏯᏔᏁᎴᏍᏗ, ᎬᏅᏰᏃ ᎠᏏᏉ ᎠᏯᎠ.\nᏃᏉ ᏚᏃᎩᏒ ᏲᎾ ᎠᏂᏃᎯᎵᏙ ᎤᏂᏃᎩᏍᏗ.\nᏱᎰᏩᏃ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎦᏙᎨ ᎠᎦᏘᏏᏗᏢ ᎦᏩᏒᎩ ᎬᏙᏗᏱ ᎪᏢᏒᎢ.\nᎠᎴ ᎾᏍᏉ ᎠᎹᏟ ᎢᏨᏍᎨᏍᏗ, ᏞᏍᏗ ᏅᎾᏠᎾᏍᏗ ᏄᎾᏍᏛ ᏱᏂᏣᏍᏕᏍᏗ, ᎤᎾᏓᏙᎵᏍᏗ ᏥᎨᏐ ᏗᎧᏃᏗᏱ, ᏂᏓᏤᎸᎾᏰᏃ ᏂᏓᏅᏁᎰ ᏚᎾᎧᏛᎢ, ᏴᏫᏉ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎤᎾᏚᎵᏍᎪ ᎠᎹᏟ ᎠᏅᏍᎬᎢ. ᎤᏙᎯᏳᎯᏯ ᏂᏨᏪᏎᎭ ᎨᎦᎫᏴᎡᎸ.\n”ᏣᏰᏨᎯᏧ ᏌᎳᏓ?” ᎡᏝᏪ ᏄᏪᏎ.\nᎤᏜᏅᏛᏍᎩᏂ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏙᏱᏗᏢ ᏥᎪᏢᎭ, ᎯᏃᎯᏴᎭ, ᎠᎴ ᏞᏍᏗ ᏣᏟᎶᎥᎩ, ᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᎨᏥᏁᎸᎯ ᎾᏍᎩ; ᎠᎴ ᎦᎸᏉᏗᏳ ᎦᏚᎲ ᎤᎾᎳᏍᏓᎡᏗ ᎨᏎᏍᏗ ᏅᎦᏍᎪᎯ ᏔᎵᎦᎵ ᎢᏯᏅᏙ.\nᏌᎪᏂᎨ ᎤᏌᏃᎲ ᎠᏌᎥ ᎤᏬᏢ, ᎫᏂᎨᏒ ᏂᏚᏍᏛᏗᎦᎦᎶ, ᎤᏙᏩᏗᏍᏛ ᎠᏰᎵ.\nSam Houston ᎢᏳᏓᎵᎭ ᎤᏪᏓᏍᏗ ᎨᏎ, ᏏᏛ Texas ᎢᏣ ᏳᏩᎵᏗᏍᎩᏍᎬᎾ ᏥᎨᏎ, ᎩᎳᎯ ᎤᎯᏐᏗ ᎠᏂᏃᎮᏍᎨ.\nᎢᏣᎦᏌᏯᏍᏕᏍᏗ ᎾᏍᎩ Ꮎ ᎦᎸᎳᏗ ᎡᎯ ᎨᏒᎢ, ᎥᏞᏍᏗᏃ ᎡᎶᎯ ᎡᎯ ᎨᏒᎢ.\nᎢᏳᏃ ᏱᏥᏍᏆᏂᎪᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵᎦ, ᏱᏅᏩᏍᏗᏗᏉ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ; ᎾᏍᎩᏯ ᏣᎩᏍᏆᏂᎪᏔᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎡᏙᏓ ᎤᏤᎵᎦ, ᎠᎴ ᏥᏅᏩᏍᏗᏗᏉ ᎠᎩᎨᏳᎯᏳ ᎨᏒᎢ.\nᎠᏎᏃ ᏓᏰᏣᎵᏂᎪᎯᏍᏔᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏥᎷᏤᎸᎭ, ᎠᎴ ᏍᎩᏃᎮᏍᎩ ᎨᏎᏍᏗ ᏥᎷᏏᎵᎻ ᎠᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏌᎺᎵᏱ ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ.\nᎢᎬᏱᏱᏃ ᎨᏥᏅᏒᎯ ᎤᏂᎷᏨ ᎤᏟ ᎢᎦᎢ ᏓᏲᎦᎫᏴᎡᎵ ᎤᏁᎵᏎᎢ. ᎠᏎᏃ ᎾᏍᏉ ᎠᎩᏏᏉ ᏧᎬᏩᎶᏗ ᎠᏂᏏᏴᏫᎭ ᎢᎨᎦᎫᏴᎡᎴᎢ.\nᏑᏟᎶᏛᏉᏰᏃ ᎢᎪᎯᏛ ᎾᏍᎩ ᎢᎦᎢ ᏧᎬᏩᎶᏗ ᎠᏎᏉ ᏂᎦᎵᏍᏔᏂᏛ. ᎠᎴ ᎾᏂᎥ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏥᏳ ᏧᏔᏅ ᏓᏂᏂᏙᎲᎢ, ᎠᎴ ᎾᏂᎥ ᏥᏳᎯ ᎤᎾᏣᎢ, ᎠᎴ ᏥᏳ ᏗᏂᏂᏙᎯ, ᎠᎴ ᎾᏂᎥᏉ ᎠᎺᏉᎯ ᎠᏂᏃᏔᏂᏙᎯ, ᎢᏅ ᏛᏂᏙᎾᎥᎩ,\nᎠᏎᏃ ᎤᏃᎯᏳᏅ ᏈᎵᎩ ᎠᎵᏥᏙᎲᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎴ ᏕᎤᏙᎥ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏩᎵ, ᏕᎨᎦᏬᏍᎨ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨ-Ᏼ.\nᏥᏌᏃ ᏫᏚᏯᏅᎲ ᎯᎠ ᏄᏪᏎᎢ, ᎤᎾᏁᎳᎩ ᏗᏤᎵᏏ ᏗᏂᏲᎵ ᎬᎩᎷᏤᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏗᏥᏅᏍᏓᏕᎸᎩ; ᎾᏍᎩᏰᏃ ᏄᎾᏍᏗ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᏕᏫᏰᏃ ᎤᏩᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏪᏲᎲᏍᎬ ᎯᎠ ᏄᏪᏎᎢ, Ᏹ-ᎰᏩ ᎯᎠ ᏁᏪᏎᎴ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ, ᏥᎦᏗᏏ ᎢᏗᏢ ᏦᎴᏍᏗ ᎬᏂ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ.\nᎢᏗᎦᏔᎭᏰᏃ ᎤᏁᎳᏅᎯ ᏂᏓᏛᎦᏁᎲᎾ ᎨᏒ ᎠᏂᏍᎦᎾᎢ, ᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ ᏱᎩ, ᎠᎴ ᎾᏍᎩ ᎠᏓᏅᏖᏍᎬ ᎢᏯᏛᏁᎯ ᏱᎩ, ᎾᏍᎩ ᎠᏛᎦᏁᎰᎢ.\nᏣᏄᏏ ᎤᏁᎸᏔᏁᎢ ᎤᏂᏴᏗ.\nᎬᏩᏍᏓᏩᏗᏙᎯ ᎨᏒ ᎠᏏᏴᏫ, ᎡᏂᏗ ᏧᏙᎢᏛ, ᏌᏩᏂ ᏈᏓ ᏗᎾᏓᏅᏟ, ᎯᎠ ᏄᏪᏎᎸᎩ;\nᎾᏍᎩ ᎢᎩᏍᏕᎸᏛ ᏥᎩ, ᎠᎴ ᎢᎩᏯᏅᏛ ᏥᎩ ᎤᏩᏔᏅᎯ ᎦᎸᏉᏗ ᎠᏓᏯᏅᏗ ᎨᏒᎢ, ᎥᏝ ᎠᏴ ᏕᎩᎸᏫᏍᏓᏁᎲ ᏱᏅᏧᎵᏍᏙᏔᏅ, ᎤᏩᏒᏍᎩᏂ ᎤᏓᏅᏖᎸᎢ ᎠᎴ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏧᎵᏍᏙᏔᏅ, ᎾᏍᎩ ᎢᎩᏁᎸᎯ ᏥᎩ ᏅᏧᏓᎴᏅᎲᎾ, ᏥᏌ ᎦᎶᏁᏛ ᎨᏒ ᎢᏳᏍᏗ,\nᎠᎴ ᎤᎷᏤᎢ ᎠᎴ ᎤᎵᏂᏥᏙᏁ ᎢᏥᏃᎯᎮᎴ ᎾᏍᎩ ᏙᎯ ᎢᏥᏩᏛᎡᎯ ᎨᏒᎢ, ᏂᎯ ᎢᏅ ᎢᏣᏛᎿᏕᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎾᎥ ᎢᏳᎾᏛᎿᏕᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎾᎥ ᎢᏳᎾᏛᎿᏕᎩ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏧᏂᏄᎪᏨ, ᏌᏩᏂ ᎠᎴ ᎡᏂᏗ ᎠᏂᏁᎸ ᏭᏂᏴᎴᎢ, ᎠᏁᎮ ᏥᎻ ᎠᎴ ᏣᏂ.\nᎤᏂᏩᏘᏃ ᏴᏫ ᏙᏱᏗᏢ ᎠᎾᏓᏙᎵᏍᏗᏍᎨ ᎾᎯᏳ ᎠᏜ ᎦᏩᏒᎩ ᎬᏙᏗᏱ ᎤᏍᏆᎸᎲ.\n“Ꭳ, ᏫᏔᎧᎾᎦ! \nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎿᏉ ᏥᏌ ᎤᏍᏆᏛ ᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏗᏍᎬᎢ, ᎤᏂᎩᏒᎩ.\n“ᎠᏎᏃ ᏲᎾ ᎤᏤᏍᏙ, ᎣᏍᏓ ᏱᏥᏰᎸᎾ ᏙᏱ ᏱᏗᏣᏁᎶᎾ ᎯᎪ ᎢᎦ ᏣᏉ ᏣᏚᏥ ᎰᎻ ᎤᏤᎵᎪ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏱᏘᏩᏛ ᏗᏣᎵᎢ, ᎪᎱᏍᏗ ᎣᏍᏓ ᏱᏂᏣᏛᏁᎳ ᏙᏱᏨ.\nᏌᏩᏂᏃ ᎤᏓᎵᎢ ᎤᏥ ᎦᏅᎨ ᎤᏢᎨ ᎤᏗᎴᎲᏍᎨᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᏃᏁᎴᎢ.\nᏂᏓᏙᏓᏈᏒ ᎣᎦᎵᏍᏓᏴᏗ ᏍᎩᎥᏏ ᎪᎯ ᎢᎦ.\nᎤᏦᎣᏌ, ᎤᏙᎯ ᏭᏓᎩᏁᎴ ᎠᏍᏕᏯᏓ.\nᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏗᏍᎩᏲᏏᏌᏏ ᎯᎠ ᎾᏍᎩ ᏓᏟᎶᏍᏛᎢ.\n”ᎠᎩᏂᎬᎦ ᎠᎩᏏᎳᏛᏙᏗ.”\n“ᏧᏍᏆᏴᏍᏗᏗ! \nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᎢᎦᎢ ᎢᎦᎦᏌᏯᏍᏙᏗ ᏱᏂᎦᎵᏍᏓ ᏄᏍᏛ ᎢᎦᏛᎦᏅᎢ, ᎾᏍᎩ ᎢᎸᎯᏳ ᏗᎬᏍᎦᎶᎢᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᏞᏍᏗ ᏱᏥᎨᏳᏎᏍᏗ ᎡᎶᎯ, ᎠᎴ ᎪᎱᏍᏗ ᎡᎶᎯ ᎡᎯ. ᎢᏳᏃ ᎩᎶ ᎡᎶᎯ ᏳᎨᏳᎭ, ᎥᏝ ᏱᎬᏩᎨᏳᎭ ᎠᎦᏴᎵᎨᎢ.\nᎤᏁᎳᏅᎯᏃ ᏧᏂᎾᏫ ᏗᎦᏔᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎩ ᏕᎨᎦᏓᏂᎸᏨᎢ, ᏕᎠᏁᎲ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᏴ ᎾᏍᎩᏯ ᏥᎩᏁᎸᎩ.\nᎠᎴ ᎢᎾᎩ, ᎠᏓᏫ ᎤᏕᏅ ᎦᎵᏉᎩᏁ ᏪᎯ, ᎾᏍᏉ ᎠᏙᎴᎰᏍᎬ ᎯᎠ ᎾᏍᎩ ᏚᏁᎢᏍᏔᏁ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎤᎬᏫᏳᎯ ᏓᎦᎷᏥ ᏓᏘᏁᎮᏍᏗ ᎠᏍᎪ ᎢᏯᎦᏴᎵ ᏧᏙᎵ ᎤᎾᏓᏅᏘ,\nᏗᎪᏪᎵᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; Ꭷ, ᏔᏕᏲᎲᏍᎩ, ᏚᏳᎪᏒ ᏂᏫ; ᏌᏉᏉᏰᏃ ᎡᎭ ᎤᏁᎳᏅᎯ; ᎥᏝ ᎠᎴ ᏅᏩᏓᎴ ᏰᎭ ᎾᏍᎩ ᎤᏩᏒᎯᏳ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏚᎸᏗ ᏂᎦᎵᏍᏗᏍᎬᎩ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏄᏍᏗᏓᏅ ᎦᎸᎳᏗ ᏤᎯ ᏗᏟᎶᏍᏔᏅᎯ ᎨᏒ ᏗᎦᏅᎦᎸᏙᏗᏱ ᎯᎠ ᎾᏍᎩ (ᏗᎵᏍᎪᎸᏙᏗ,) ᎦᎸᎳᏗᏍᎩᏂ ᏤᎯ ᎨᏒ ᎾᏲᎪ ᎤᏟ ᎢᏗᎦᎸᏉᏗ ᏗᎵᏍᎪᎸᏔᏅᎯ ᏗᎦᏅᎦᎸᏙᏗ.\nᎤᎶᏒᏍᏔᏅᎯᏃ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ, ᎯᎠ ᏂᏓᎾᏓᏪᏎᎮᎢ, ᎦᎪᎨ ᏰᎵ ᎦᏰᏥᏍᏕᎸᏗ?\nᎨᏍᏗ ᎤᎵᎮᎵᏍᏗ ᏯᎩᏰᎸᎰ ᏄᏍᏛ ᎠᏆᎵᏍᏓᏴᏗ, ᎠᏎᏃ ᏍᎩ ᏄᏍᏗ ᎥᏉᏒᏅ.\nᎦᎸᎳᏗᏍᎩᏂ ᏫᏥᏟᏏᏍᎨᏍᏗ ᏧᎬᏩᎶᏗ, ᎾᎿᏂ ᏥᏍᎪᏴ ᎠᏯᏍᏜᏗᏍᎩᏃ ᎤᏂᏲᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎠᎴ ᎤᏂᏃᏍᎩᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᎨᏴ ᏔᎳᏚ ᏧᏕᏘᏴᏛ ᎬᏩᏓᎴᏅᏛ ᎩᎬ ᎤᏪᏅᎡᎮᎢ,\nᏞᏍᏗ ᎤᏁᎳᎩ ᏤᎵᏒᎩ ᎡᏣᏁᎸᎯ ᎾᏍᎩ ᏥᏣᎭ, ᎾᏍᎩ ᎡᏣᏁᎸᎯ ᏥᎩ ᎠᏅᏗᏍᎬ ᎤᎾᏙᎴᎰᏒ ᎠᎴ ᏕᎨᏣᏏᏔᏛ ᏗᎨᎦᏁᎶᏗ.\nᏰᎵᏉ ᎠᎩᏂᏴᎲ ᏥᏅᏙᎬ, ᎠᏉᎯᏳᏅ ᏐᏉ ᎢᎧᏁᏨ ᎾᎩᏪᏎᎸ, ᏫᏓᎦᎩᎸᏂ ᏫᏥ ᏫᏓᏥᎶᏏ, ᎤᏅᏌ ᎠᏂᏩᏛᎲ ᏭᏂᎶᎯᏍᏗ ᎤᏂᏅᎪᎢᏍᏗ ᏚᏅᏓᏒ, ᏃᎴ ᎭᎾᏎᎵᏙᎲ ᏓᎾᏟᏃᎮᏔᏅ ᏧᏂᏂᏴᏓ.\nᏚᏲᎵᎸᏉᏍᎩᏂ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏎ ᎠᎩᏍᏆᏂᎪᏙᏗ ᏥᎷᏏᎵᎻ ᎯᎠ ᏗᎵᏍᏓᏴᏗᏱ ᏨᏛᏍᏆᎸᎯ. ᎠᏎᏃ ᏔᎵᏁ ᏛᏨᏩᏛᎯᎵ, ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎤᏏᏳ ᏳᏰᎸᏅ. ᎡᏈᏌᏃ ᏥᏳᎯ ᏭᏣᏅᎩ.\nᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ ᎠᏗᎭ ᎤᏁᎳᏅᎯ, ᎾᎦᎥ ᎤᏇᏓᎵ ᎨᏒ ᎠᏆᏓᏅᏙ ᏓᏥᏯᏐᏅᏰᎵ, ᏗᏤᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᏗᏤᏥ ᎠᏂᎨᏴ ᎠᎾᏙᎴᎰᏍᎨᏍᏗ, ᎠᏂᏫᏅᏃ ᏗᏣᏤᎵ ᎤᎾᏁᎳᏫᏎᎮᏍᏗ, ᏧᎾᏛᏐᏅᎯᏃ ᏗᏣᏤᎵ ᎠᎾᏍᎩᏓᏒᎥᏍᎨᏍᏗ;\nCass ᏓᎩᎧᏅ, ᏙᏰ ᏓᏆᎭᏄᏮ, ᎠᏆᎧᏛ ᏃᎴ ᏥᏴᏥᏂ ᏃᎴ ᏗᏉᏰᏂ ᎦᏚᎢᏣᏂ - ᏕᎫᎪᏗᏍᎨᎢ ᎠᏴᏫᏯ ᎩᎦ ᎠᎩᏁᎲᎢ.\nᎠᏆᎦᏔᎲᏒᎩᏃ ᏥᎪᏩᏛᏗᏱ ᎠᎩᏰᎸᏅᎩ ᎤᏪᎷᎩ, ᎾᏍᎩ ᎠᏆᎵᏃᎮᏗᏍᎩ. ᎠᏆᎦᏔᎲᏒᏃ ᏓᎩᎪᎲᎩ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ;\nᏑᎾᎴᎢ ᎠᏂᎶᏍᎨ ᏴᏫ ᏫᎵᎻ ᎠᏯᎥ.\nᏚᎾᏓᏅᏛᏍᎩᏂ ᏧᏍᎦᏃᎵᏳ ᎨᏎᎢ; ᎪᎯᏰᏃ ᎢᏯᏍᏗ ᏅᏩᏍᏗᏉ ᎾᏍᎩ Ꮎ ᎠᎵᎬᏚᎶ ᎠᎲᏛ ᏂᎨᏒᎾ ᎢᏳᏃ ᏓᏂᎪᎵᏯ ᎤᏪᏘ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎪᏪᎸᎢ; ᎦᎶᏁᏛᏰᏃ ᏂᎬᏂᏏᏍᎪ ᎠᎲᏛ ᏂᎨᏐᎢ.\nᎠᏍᏕᏴᏙ ᎠᎧᏁᎲ ᏭᏩᏁ ᎡᎳᏆᏗ ᏃᎴ ᏭᏓᎾᏫᏛᎮᎢ.\nᎠᏴ ᎠᎢᏛᏐᏅᎯ ᏫᏥᏲᎵᎦ ᎠᏥᎨᏳᎢ ᎦᏯ, ᎾᏍᎩ ᎠᏴ ᏥᎨᏳᎢ.\n”ᎠᏓᏅᏖᏗ, ᎧᎪ ᏳᏚᎵ ᎤᏪᏘ ᎤᎪᏏᏓ ᎤᏪᏥ!” ᎤᏛᏁ.\nᎾᏍᎩ Ꮎ ᏄᎨᏳᏅᎾ ᏥᎨᏎ ᎤᏩᏒ ᎤᏪᏥ, ᏥᏚᏲᏎᏉᏍᎩᏂ ᎠᏴ ᏂᏗᎥ ᎢᎩᏍᏕᎵᏍᎬᎢ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏕᎩᏲᎯᏎᎲ ᎠᏎᏉ ᏗᎨᎩᏲᎯᏎᏗ ᏂᎨᏒᎾ ᏱᏂᎦᎵᏍᏓ ᏂᎦᏗᏳ ᎪᎱᏍᏗ?\n”ᎨᏍᏗᏗ ᎭᎾᏉ ᏣᏴᏍᏗ ᏱᎩ, ᎦᏓᎭ ᎤᏍᏗ ᎦᏓᎭ ᎤᏍᏗ ᎦᏓᎭ ᎤᏍᏗ ᎠᏦᏴ, ᎤᏛᏁ ᏌᏌ, ᎦᏣᏄᎳ ᎦᏬᏂᏍᎩ.\nᎠᎴ ᏞᏍᏗ ᏱᏗᏣᎵᎪᏁᎮᏍᏗ ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎤᎵᏏᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᏕᏥᎬᏍᎪᎸᎥᏍᎨᏍᏗᏉᏍᎩᏂ.\nᎾᎥᏃ ᎠᏂᏙᎾᎢ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᎦᎯᏐᏢᏗᎭ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ?\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏓᏁᏟᏴᏒᎢ, ᏴᏫ ᎤᏪᏥ ᎦᏅᎭ ᎦᎸᏉᏗᏳ ᎤᏪᏍᎩᎸᎢ, ᏂᎯ ᏍᎩᏍᏓᏩᏛᏛ ᎾᏍᏉ ᎢᏥᏁᏍᏗ ᏔᎳᏚ ᏕᎦᏍᎩᎸᎢ, ᏕᏧᎪᏓᏁᎮᏍᏗ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ.\n“ᎤᏙᎯᏳ ᎤᏒᎯ!” \nᎥᏝᏰᏃ ᎾᏂᎥ, ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎬᏉᏎᎯ, ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏭᏂᎾᏄᎪᎢᏍᏗ ᏱᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎠᏓᏅᏖᏍᎬ ᏧᏂᎸᏫᏍᏓᏁᎯ.\nᏂᏓᏠᏯᏍᏛᎾ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᏂᏚᎩᏨᏂᏒ ᏣᎩᎷᏤᎭ, ᎾᏍᎩ Ꮎ ᏗᏆᎦᏌᏯᏍᏙᏗᏱ ᏂᎦᏛ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ.\n“Ꮒ!” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏫᎵᎻ ᏍᏉ ᏚᎧᏙᏍᏕᎢ ᏴᏫ ᏃᎴ ᎣᏍᏓ ᏗᎧᏃᏗ ᎠᏁᎸᏗᏍᎨᎢ.\nᎾᏍᏉᏰᏃ ᏴᏫ ᎤᏪᏥ ᎥᏝ ᏳᎷᏨ ᎪᎱᏍᏗ ᎠᎦᏛᏁᏗᏱ, ᎪᎱᏍᏗᏍᎩᏂ ᎤᏓᏛᏁᏗᏱ, ᎠᎴ ᎬᏅ ᏧᏲᎯᏍᏗᏱ ᏧᏓᏴᏙᏗᏱ ᎤᏂᏣᏘ.\nᎢᎦᏛᏃ ᏅᏲᎯ ᎨᏒ Ꭴ ᎳᎨᏯᏛᏤᎢ, ᎦᏲᎵ ᎦᏓ ᎦᎳᎨᏴᎢ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎤᎵᏰᏁᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏌᎨᎢᏳᎨᏒ ᎦᏓ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏰᏃ ᏗᎦᏚᎲ ᏩᏁᏙᎲᎩ ᎠᎵᏍᏓᏴᏗ ᎤᏂᏩᏒᏒᎩ.\nᎠᏐᏴᎩᏃ ᎡᏆ ᎢᏅ ᎢᎦᏘ, ᎦᎶᎯᏍᏗᏱᏃ ᏔᎳᏚ ᏕᎪᏢᏒᎩ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᏔᎳᏚ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᎩᎯ [ᏓᏂᏙᎬᎩ,] ᏚᎾᏙᎥᏃ ᏕᎪᏪᎸᎩ ᎦᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏙᎥᎢ.\nᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎩᎶ ᎪᎱᏍᏗ ᏥᎯᏃᏁᎵ; ᎮᎾᏉᏍᎩᏂ, ᎬᏂᎨᏒ ᏫᏂᏯᏛᏂᏏ ᎠᏥᎸᎨᎶᎯ, ᎠᎴ ᏩᎵᏍᎪᎸᏓ ᏣᏓᏅᎦᎸᎲ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏱᏏ ᎤᏁᏨ ᎠᎵᏍᎪᎸᏙᏗᏱ, ᎾᏍᎩ ᎤᎾᏙᎯᏳᎾᏁᏗᏱ.\nᎨᏍᏗ ᏱᏥᎦᏔ ᎨᎩᏍᏕᎸᏗ ᏱᎩ.\n“ᎯᏢᎾ.\nᎠᎴ ᎠᎴᏂᏍᎨᏍᏗ ᏙᎦᎸᏂᎮᏍᏗ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎢᏧᎳᎭ ᎠᎾᎵᏍᏓᏴᎲᏍᎨᏍᏗ ᎠᎴ ᏓᎾᏗᏔᏍᎨᏍᏗ ᏧᏂᏴᏍᏕᏍᎩ,\nᏧᎪᏅ ᏧᎪᎳ ᏃᎴ ᏧᏍᎧ ᏓᏑᏴ ᎤᏁᎦ ᎪᏍᏚ ᎤᏃᏔᏅ.\nᎾᏍᎩᏃ ᎠᏁᏙᎮ ᎩᎶ ᎬᏩᏃᏁᎸᎯ ᎬᏩᏁᎢᏍᏓᏁᎸᎯ ᎨᎵᎵ ᎠᏁᎯ, ᎾᏍᎩ ᎤᏂᎩᎬ ᏇᎴᏗ ᏚᏑᏰᏓᏁᎸ ᎠᏥᎸ-ᎠᏁᎶᎲᎢ.\n ᎠᏎᏃ ᎦᏳᎳ ᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ ᎨᏎᎢ ᎧᏅᏂᏍᎩ.\n“ᎢᎨᏅᏍᏗᏉᏗ ᎦᏆᏛ ᎠᏗᏆᎸᏕᏲ ᎠᏆᎩᎸᏗ ᎠᏆᏚᎵ.” \nᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᏱᏏ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏳᏃ ᎠᏍᎦᏯ ᎠᏲᎱᏍᎨᏍᏗ ᏧᏪᏥ ᎾᏁᎲᎾ ᎨᏎᏍᏗ, ᏗᎾᏓᏅᏟ ᎠᏓᏰᎨᏍᏗ ᎤᏓᏴᏛ, ᎾᏍᎩᏃ ᏓᏛᎯᏍᏓᏁᎮᏍᏗ ᏗᏂᏲᎵ ᏗᎾᏓᏅᏟ.\n... ᏓᎶᏂᎨᏃ ᏒᎦᏔ ᎤᎾᏓᏛᏁᎢ.\nᎬᏂᏳᏉ ᎠᏤᏍᏙᎩᎯ ᏮᏓᏥᏯᏓᎡᏏ, ᎠᎴ ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ ᎤᏣᏘ ᏓᎦᏥᏯᏕᏯᏙᏔᏂ ᎢᏳᏃ ᎤᏲ ᏄᏂᏁᏟᏴᏛ ᎢᎨᏎᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ.\nᏚᏒᏅᏃ ᎦᎵᏉᎩ ᎢᏳᎾᏓᎴᎩ ᏴᏫ ᎨᎾᏂ ᎠᏁᎯ, ᎾᏍᎩ ᎤᎾᏤᎵ ᎦᏙᎯ ᏚᏯᏙᎮᎴ ᏓᎾᏎᏍᎬᎢ.\nᏂᎯ ᎤᎶᏒᏍᏗ ᎯᏒᎩ.” \nᎾᏂᎥᏰᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎨᏒ ᏴᏫ ᎠᏁᎲ ᎨᎪᏣᎴᏛ, ᏴᏫ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏥᏁᏤᎰᎢ, ᎾᏍᎩ [ᏧᏂᎸᏫᏍᏓᏁᏗᏱ] ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏗᎬᏩᎾᎵᏍᎪᎸᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏓᏁᏗ ᎨᏒ ᎠᎴ ᎠᏥᎸᎨᎳᏍᏙᏗ ᎾᏍᎩ ᎠᏍᎦᏂ ᎤᎬᏩᎵ;\nᎤᏂᎩᏍᏔᏁ ᏓᏆᎴᎳ ᎤᏅᏫᏍᏗᏍᎩ ᎡᎶᏗ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎾᏍᎩ ᎤᏣᏘ ᏥᏣᏚᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎨᏒᎢ, ᎢᏥᏲᎮᏍᏗ ᏗᏣᏓᏓᎵᏁᎯᏕᏗᏱ ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ.\nᎩᎳᏈᏴ ᏭᎷᏤ ᎧᏁᏌᎢ ᏗᏥᏴ, ᏗᏯᏖᏃ ᎠᏰᎵ ᏭᏗᏍᎦᏝᏁ, ᎧᏁᏍᎦ ᎬᏗ ᎤᏚᏒᏁᎢ, ᎩᎶ ᎫᏩᎪᏩᏛᏗ ᏱᎨᏒᎾ.\nᎪᎳ ᎾᎥᏂ ᏃᏉ, ᎠᎦᏕᏍᏗ ᎤᏂᏂᎬᎨᏍᏗ ᎤᎾᏗᏍᎦᎶᏗ.\nᎾᏍᎩ ᎠᏴ, ᎢᎩᏯᏅᏛ ᏥᎩ, ᎥᏝ ᎠᏂᏧᏏᏉ ᎤᏅᏒ ᎠᏁᎲᎢ, ᎾᏍᏉᏍᎩᏂ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ;\nᎯᏲᏎᎸ ᏣᏚᏥ ᎰᎻ, ᏑᏓᎵ ᎠᏕᎸ ᏱᏕᎯᎬᏩᎶᏓ, ᎦᏙᏃ ᏛᏛᏂ.” \nᎡᎳᏗ ᎤᎨᏓᎵᏴ ᎤᎾᏟᎴ, ᎨᏴ ᎢᏳᏓᏅᎯᏓ, ᎤᏓᏦᏍᏗ ᎢᏴ ᎠᎼ.\nᎤᏪᏗᏱᏍᎩᏂ ᎠᏉᎸ ᏥᎦᏘᏏ ᎢᏗᏢ, ᎠᎴ ᏥᎦᏍᎦᏂ ᎢᏗᏢ, ᎥᏝ ᎠᏴ ᎠᏆᏓᏁᏗ ᏱᎩ; ᎤᏅᏒᏍᎩᏂ ᎾᏍᎩ ᎨᎦᏛᏅᎢᏍᏓᏁᎸᎯ ᏥᎩ\nᏈᏓᏃ ᎤᎦᏔᎲᏒ ᎤᎪᎲᎩ ᎠᏓᏍᏓᏩᏗᏒᎩ ᏥᏌ ᎤᎨᏳᎯ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᎤᏍᏛᎦᎸᏅᎯ ᏥᏌ ᎦᏁᏥᏱ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᎯᎠ ᎢᏳᏪᏛ ᏥᎩ; ᏣᎬᏫᏳᎯ, ᎦᎪ ᎾᏍᎩ ᏣᏡᏗᏍᎩ.\nᎠᏎᏃ ᎣᎩᎲᎩ ᏦᎩᏲᎱᎯᏍᏗᏱ ᏚᏚᎪᏔᏅᎢ, ᎾᏍᎩ ᏱᎬᏮᏉ ᎣᎦᏓᎵᏍᎦᏍᏙᏗᏱ ᏂᎨᏒᎾ, ᎤᎾᎳᏅᎯᏍᎩᏂ ᎣᏣᎵᏍᎦᏍᏙᏗᏱ, ᎾᏍᎩ Ꮎ ᏓᏂᏲᎱᏒᎯ ᏗᎷᎯᏐᏗᏍᎩ;\nᎾᏍᎩᏂ ᎾᎦᏔᎲᎾ ᎨᏒ ᎠᎴ ᏰᎵᏉ ᎦᏰᏥᎵᎥᏂᏍᏗ ᎢᏳᏛᏁᎸᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᏲᎵᏉ ᎢᏯᎬᏂᏍᏗ ᎨᏎᏍᏗ. ᏱᎶᏃ ᎤᏣᏘ ᎠᏥᏁᎸᎯ, ᎤᏣᏘ ᎠᏥᏔᏲᏎᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎩᎶ ᎤᏣᏘ ᏗᎬᏩᏲᎯᏎᎸᎯ ᏴᏫ, ᎾᏍᎩ ᎤᏟ ᎢᎦᎢ ᎬᏩᏔᏲᏎᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎤᏂᏍᎦᏅᏨ ᎠᎴ ᎤᏲ ᏄᎾᏛᏁᎵᏙᎸ ᎥᏝ ᎿᏉ ᎠᏆᏅᏓᏗᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᏓᏅᏙᏃ ᎯᎠ ᏄᏪᏎᎴ ᏈᎵᎩ; ᎾᎥ ᏫᎷᎩ ᏫᏯᎵᎪᎲᏏ ᎾᏍᎩ Ꮎ ᏓᏆᎴᎷ.\nᎤᏣᏔᏅᎯᏃ ᎠᎾᎵᎮᎵᎨ ᎾᎿ ᎦᏚᎲᎢ.\n”Ꮀ--Ꮋ!” ᎤᏪᎷᏁ.\nᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᏓᎦᎷᏥ ᎢᏳᏉ ᎢᎦ ᎾᏓᎦᏖᏃᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎢᏳᏉ ᎠᎵᏰᎵᏒ ᏁᎵᏍᎬᎾ ᎨᏒᎢ, ᎠᎴ ᏙᏓᏳᎦᎵᏏ, ᎠᎴ ᏮᏓᏳᏎᎮᎵ ᏄᏃᎯᏳᏒᎾ ᏗᏁᎲᎢ.\nᏫᎵᎻ ᏗᏯᎥ ᏗᏣ ᏭᏤᏪ ᎠᎹ, ᎠᏎᏃ ᎤᏅᏕ.\nᎤᏙᎯᏳᎯᏯ ᎬᏂᎨᏒ ᏂᏨᏁᎭ ᎾᏍᎩ ᎣᏏᏳ ᎢᏥᏰᎸᏒ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸ ᏗᏥᎦᏴᎵᎨᎢ; Ꮎ-ᏍᎩᏰᏃ ᎤᏙᎯᏳᎯ ᏚᏂᎸᎩ, ᏂᎯᏃ ᏕᏦᏢᎯᏏᎭ ᏕᎨᏥᏂᏎᎲᎢ.\nᎠᎴ ᏭᎷᏤ ᎠᎴ ᏚᎸᎡᎴ ᏓᏥᏐᏅᏅᎢ, ᎠᎴ ᎪᎢ ᎩᎦᎨᏃ-ᎠᏗᏔᏍᏗ ᏓᏍᏚᏞᎮᎢ, ᎠᎴ ᎤᏩᏒ ᎤᎩᎸᏙᏗ ᎤᎩᎸᎳᏁᎢ, ᏧᏂᏒᏍᏗᏱᏃ ᎠᏓᏁᎸ ᎤᏘᏃᎴᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏔᏁᎢ.\nᎩᎳᏈᏴ ᏚᎴᏁ ᏫᎵᎻ.\nᏔᎵᏁᏃ, ᎡᏥᎸᏉᏓ ᏱᎰᏩ, ᏂᎦᏗᏳ ᏗᏣᏓᎴᏅᏛ ᏴᏫ; ᎠᎴ ᎡᏥᎸᏉᏓ, ᏂᏥᎥᏉ ᏴᏫ.\nᎣᎩᎾᎵᎢᏰᏃ ᎠᎢᏒ ᎠᎩᎷᏥ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏯᎩᎭ ᏥᏰᎳᏍᏙᏗ;\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏥᏌ ᏫᎤᎷᏨ, ᎾᏍᎩ ᏴᏫ ᏕᎬᏩᏓᏂᎸᏤᎢ; ᏂᎦᏛᏰᏃ ᎬᏩᏕᏘᏰᎢ.\n”ᏙᎢᏳᏍᏗ ᎠᏴᏓᏆᎶᏍᎩ?” ᎤᏛᏁ.\nᎠᎳᏏᏗᏍᎨ ᏃᎴ ᎠᏍᎦᎢᎮ, ᎠᎾᎵᎪᎲᏍᎩ ᎠᏤ ᎤᏩᏛᎲ ᎤᎾᎵ.\nᎤᏛᎦᏁ ᎤᏥ ᎦᏬᏂᏍᎬ, ᎤᏍᏗ ᎠᏣᏗ, ᎤᏍᏗ ᎠᏣᏗ ᎣᏏᏉᏧ? ᎨᏍᏗ ᏫᎬᎩᎶᎯᏍᏗ ᏱᎩ ᏫᎬᎾᎩᏍᏗ, ᎠᏎᏃ ᏣᏟᏂᎩᏓ ᎤᏍᏗ ᎠᏣᏗ, ᏃᎴ ᏰᎵᏉ ᏘᏩᏛ ᏨᏌ ᏣᏁᎳᏗᏍᏗ ᎯᎸᎢᏴ.\nᏧᎾᏛᎾ ᏃᎴ ᏗᏂᏲᏟ ᏚᎾᏓᏂᏴᎮ ᏧᏃᏰᏂ ᏃᎴ ᎠᏂᏙᎾᎡᎢ ᎠᏂᎪᎵᏰᏍᎨ ᎠᏤᎯ ᏗᎦᏃᏣᏟ.\nᏰᎵ ᎠᏍᏆᏂᎪᏍᎨ ᏚᎷᏫᏍᏔᏁᎲ ᏌᎳᏓ; ᎤᏩᏌ ᎠᏓᏟᏃᎮᏗᏍᎨ, ᎦᏰᎵᏍᏗ ᎤᎵᎮᎵᏍᏗ ᎠᏓᏁᎮᎢ.\nᎾᏍᎩ Ꮎ ᎤᏢᏉᏗ, ᎪᎱᏍᏗ ᎾᎦᏔᎲᎾ, ᎤᎵᏰᏔᏁᎯ ᎦᏬᏂᎯᏍᏗ ᎨᏒ, ᎠᎴ ᏧᏘᏲᏌᏘ ᎠᎵᏃᎮᏍᎬᎢ, ᎾᎿ ᏨᏗᏓᎴᎲᏍᎦ ᎠᏛᏳᎨᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏗᏓᏕᎵᏎᏗ ᎨᏒᎢ,\nᏗᏰᎦᏟ ᏗᏆᏙᏃ ᏓᏂᏃᎯᎲ ᎤᏢᎩ ᏗᎦᏅᎬ ᏒᏃᏱᏃ ᏱᏄᎵᏍᏔᎾ ᎤᎿᏊ ᎠᏂᏟᏅᎬ ᎢᎦᏓ ᎦᏙᎯᏊ ᏓᏂᏰᏍᏛᎥᏍᎬ.\nᎾᏍᎩ ᎤᏚᎢᏍᏔᏅᎯ ᏥᏂᎨᏎ ᎠᎾᏙᎴᎰᏍᎩ ᏕᎬᏗᏍᎬ ᎾᎿ ᎦᎸᏉᏗᏳ ᎪᏪᎵᎯ,\nᏅᏩᏙᎯᏯᏛ ᎢᏨᎢᏯᏏ; ᏅᏩᏙᎯᏯᏛ ᎠᏆᏤᎵᎦ ᎢᏨᎥᏏ. ᎥᏝ ᎡᎶᎯ ᏣᏓᏁᎰ ᎾᏍᎩ ᎢᏳᏍᏗ ᏱᏨᎥᏏ; ᏞᏍᏗ ᎢᏣᏓᏅᏙ ᏳᏕᏯᏔᏁᎮᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏯᏍᎦᎢᎮᏍᏗ.\nᎾᏍᎩ ᏥᏓᏂᏒᏁᎰ ᏧᏃᏑᎶᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎤᎾᏠᎾᏍᏛ ᎪᎯᏗᏳ ᏣᎾᏓᏙᎵᏍᏗᏍᎪᎢ; ᎾᏍᎩ ᎤᏟᎯᏳ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ.\n“ᏑᎾᎴ ᎠᎴ ᏔᎵ ᎢᏳᏒᎯ ᎠᎩᎵᏬᏨ ᎨᏎᏍᏗ.\nᎬᏅ ᎢᎪᎯᏛ ᎢᏯᏆᏦᎥᏁᏘ ᏃᎴ ᎠᏆᏓᏏᎳᏙᏘ, ᎤᏛᏅ .\nᎾᏍᎩᏰᏃ Ꮎ ᎤᏙᎯᏳᎯ ᏞᎦ ᎨᎩᎩᎵᏲᎢᏍᏗᏍᎬᎩ ᎤᏅᏒ ᎠᎾᏓᏅᏖᏍᎬ ᎾᎾᏛᏁᎲᎩ; [ᎤᏁᎳᏅᎯᏍᎩᏂ] ᎣᏍᏛ ᎢᎦᎵᏍᏓᏁᏗ ᎤᎬᏩᎸ, ᎾᏍᎩ ᎢᏣᏠᏯᏍᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏩᏒ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎠᏓ ᎬᏗ ᏭᏂᏴᎮ ᎢᎾᏓ ᎠᏍᎪᎵ, Ꮓ ᏅᏲᎯ ᎦᏙ ᏫᏄᏩᏁᎴ.\nᎭᏫᏂᏗᏢᏃ ᎣᎩᏅᏍᏔᏅ ᎪᎱᏍᏗ ᎤᏍᏗ ᎠᎹᏰᎵ ᎤᏪᎧᎲ, ᏠᏗ ᏧᏙᎢᏛ, ᎤᏎᎦᏨᎯᏉ ᏗᎦᏲᎩᏂᏴᏗ ᏄᎵᏍᏔᏅᎩ ᎤᏍᏗ ᏥᏳ.\nᎤᎾᏝᎢᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᏁᎫᏥᏛ ᎠᎴ ᏣᏓᏄᎸᏗ ᎡᏣᏅᏏᏓᏍᏗ! ᎯᎦᏔᎲᎩ ᏥᏍᎫᏕᏍᎬ ᎾᎿ ᎾᎩᏫᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎫᏖᏍᎬ ᎾᎿ ᎾᎩᎴᎳᏛᏅᎾ ᎨᏒᎢ!\n”ᎩᎳᏰᏃ ᎦᎴᏂ ᎦᏓᏅᏖᏍᎦ, ᎠᏎᏃ ᏥᏰᎵ ᎦᏓᏅᏖᏍᎬ.\nᎦᎶᏁᏛᏰᏃ ᎾᏍᏉ ᎥᏝ ᎤᏩᏒᏉ ᎣᏍᏳ ᎤᏰᎸᏗ ᏱᎾᏛᏁᎮᎢ; ᎯᎠᏍᎩᏂ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᎾᏍᎩᏯ [ᏄᎵᏍᏓᏁᎴᎢ,] ᎦᎬᏩᎾᏓᏐᏢᏛ ᎾᏍᎩ Ꮎ ᎦᎨᏣᏐᏢᏔᏅᎢ ᎠᏴ ᎠᎩᎷᏤᎸᎩ.\nᎠᏴ ᎠᏋᏒ ᎦᏓᏃᎮᏍᎩ, ᎠᎦᏴᎵᎨᏃ ᏅᏛᎩᏅᏏᏛ ᎾᏍᏉ ᎠᏴ ᎠᎩᏃᎮᎭ.\nᏚᎧᎿᏅᏃ, ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᎦᏥᎪᏩᏘᎭ ᎠᏁᎩᎭ ᏕᏡᎬ ᎾᏍᎩᏯᎢ.\nᏍᏈᏯ ᏣᎵᏍᏔᏴᏅ ᏃᎴ ᏣᏯᎶᏘᏓ, ᎨᏍᏗ ᏱᎦᏔ ᎢᏳᏍᏗ ᏂᏪᏍᎬᎢ.\nᏙᏉ ᎦᎵᏍᏓ ᏐᎢ ᎤᏪᏥ? ᎦᏙᏃ ᏳᏣᎩᏒᎾ?”\nᏥᏍᏚᏛ ᏙᏳ ᎤᏩᎾᏖ Ꮩ ᎤᏍᏗ ᎨᏒ.\n”ᎤᏙᎯᏳ ᎤᏍᏆᏂᎩᏗ ᏏᏆ,” ᎤᏛᏁ ᏣᏄᏏ.\nᎾᏍᎩ ᎤᏩᏒᎯ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᎯ, ᎢᎦᎦᏛ ᎡᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎢᎦᎦᏛ ᎾᎿ ᎩᎶ ᎬᏩᎷᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎩᎶ ᎤᎪᎲᎩ ᏂᎨᏒᎾ, ᎠᎴ ᎬᏩᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᎴ ᎤᎵᏂᎩᏗ ᎨᏒ ᏫᎾᏍᏛᎾ ᎨᏎᏍᏗ. ᎡᎺᏅ.\nᎠᎴ ᏝᏍᎪ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎤᏕᏅᏉ ᏄᏍᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᏆᏂᎪᏗᏍᎩ ᏱᏙᎨᏧᎪᏓᏏ ᏂᎯ, ᎪᏪᎵ ᎠᎴ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᏗᎬᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎯᏲᏍᏗᏍᎩ?\nᏍᏈᏍᏓ ᏂᎦᎵᏍᏗᏍᎨ ᏍᎩᏴ ᎢᎦ --- ᎠᎬᏱ ᎢᎦ ᎤᏣᏓ ᎣᏍᏓ ᎨᏒ.\n“ᏃᏉ ᏂᎦᏓ, ᎯᏥᏧᏣ!” ᎤᏛᏁ ᎰᎻ.\n[ᎾᏍᎩ ᏄᎵᏍᏔᏅᎩ] ᎤᏙᎯᏳᏗᏱ ᏥᏌ ᎤᏁᏨᎢ, ᎦᏛᎬ ᎢᏳᎵᏍᏓᏁᏗᏱ ᎤᏲᎱᎯᏍᏗᏱ.\nᎤᎪᎲᏃ ᎠᏏᏴᏫ ᎦᏰᏥᏐᏢᏛᎢ, ᎤᏍᏕᎸᎮᎢ, ᎠᎴ ᎤᏞᏤᎴ ᎤᏲ ᎢᏯᎬᏁᎸᎯ, ᎠᎴ ᎤᎴ ᎢᏥᏈᏱ ᎡᎯ.\nᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎩᎶ ᎧᏁᎬ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎹ ᎤᏣᏘ ᏥᏚᏍᏆᏃᏴᎪ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎾᏍᎩᏯ ᎠᏴᏓᏆᎶᏍᎩ ᎤᏣᏘ ᏧᏍᏆᏃᏴᎪᎢ; ᎠᎴ ᏗᏂᏃᎩᏍᎩ ᏗᎧᏃᎩᏍᏙᏗ ᏗᏂᏃᎩᏍᏗᏍᎬ ᎤᏃᏴᎬ ᎠᏆᏛᎦᏅᎩ.\n”ᎨᏍᏗ ᏱᏗᎧᏔᎭ ᎢᏳᏍᏗ ᏄᏰᎵᏛᎢ, ᎠᏆᏓᏅᏖᏗ ᎨᏎᏍᏗ, ᏕᎪᏏᏌᏅ ᏔᎵᏁ ᎤᎾᏙᏓᏆᏍᎬ ᎦᎵᏥᏙᏅ.\n“ᎠᏋᏌᎩ? ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎤᏙᎯᏳ ᏲᏎ ᏲᎾ ᎤᏤᏍᏙ ᏰᏙᎮ, ᏳᏄᏝᎴ ᏃᎴ ᎤᏦᎠᏎᏗ ᏂᎨᏒᎾ ᏱᏄᏩᏁᎴ.\nᎾᏍᎩ ᏗᏂᎰᎵ ᏗᎧᎵᏬᎯ ᎠᏓᏍᎩᏅᏗᏍᏗ ᎨᏒ ᎠᎴ ᎤᏴᏍᏗ ᎨᏒᎢ.\nᎢᏳ ᎠᎴ ᎤᏪᏥ ᏳᏔᏲᏎᎸ, ᏥᎪ ᎦᏙᎬ-ᎠᏓᏨᏯᏍᏗᏍᎩ ᏱᎦᏅᎥᏏ.\nᏭᏓᏅᏖᎴ ᎤᏍᏗ ᎨᏴ ᏭᏘᏃᎸ ᎤᏔᏂᏗᎨ ᎨᏴᎢ.\nᎢᏨᏲᏎᎭ, ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏚᏓᎴᏛ ᏧᏪᏅᏒ ᏭᎶᏎᎢ, ᏐᎢᏃ ᎥᏝ. ᎩᎶᏰᏃ ᎤᏩᏒ ᎢᎠᏓᏌᎳᏗᏍᎨᏍᏗ ᎡᎳᏗ ᎢᏯᎬᏁᏗ ᎨᏎᏍᏗ, ᎩᎶᏃ ᎤᏩ-Ꮢ ᎡᎳᏗ ᏂᎠᏓᏛᏁᎮᏍᏗ ᎠᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ.\nᏰᎵ ᎣᏍᏓ, Wilmington ᎠᎩᏩᏛᎲ ᎠᎹᏳᎸᏗ ᎤᎾᏨᏉᏛ ᎬᏂᎨ ᎤᏂᏍᎪᎸ ᏓᎬᎾ, ᎩᎳ ᏧᏂᏂᏴᏓ ᎠᎼ ᎡᏉ, ᎠᎾᏖᎸᎮᏍᎬ ᏧᏂᏍᏚᎩᏛ ᏧᏯᏍᎦ, France ᏓᏳᎶᏒ ᏓᎶᏂᎨ ᎠᏗᏔᏍᏗ ᎤᎵᏗᏨ ᏓᏂᏯᎩᏍᎬ ᏓᎬᎾ.\nᏗᏥᎦᏍᎩᏂ ᎡᏈᏌ ᏥᏅᏒ\nᏕᏥᏲᎵᎭ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎦᎶᏁᏛ ᏥᏌ ᎠᏃᎯᏳᎲᏍᎩ. ᎣᏣᎵᏅᏟ ᎠᏂ ᏦᏤᏙᎭ ᏫᎨᏥᏲᎵᎭ.\n“ᏓᎴᎲᎦᏛ ᎤᏛᏁ ᎡᎶᏗ.\nᎠᏯᏦ?\n“ᎯᏢᎾ, ᎯᏢᎾ, ᎬᎨᏳᎯ, ᎠᏯ ᎠᏆᏤᎵ, ᎭᏫᏂ, ᎭᏫᏂ, ᏗᎩᏏ ᏃᎴ ᎤᎵᏏᎬᎢ; ᏤᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ ᎠᎴ ᏤᏍᏗ ᎤᎯᏐᏗ ᏱᎨᏎᏍᏗ!\nᏣᏂ ᏧᏓᏬᏍᏗ ᎨᏒᎢ, ᎦᎸᎳᏗᏍᎪ ᏧᏓᎴᏁᎢ, ᏴᏫᏉᎨ ᎠᏁᎲᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎭᏓᏁᎮᏍᏗ ᏞᏍᏗ ᎠᏤᎷᎩ ᎢᎬᏱ ᏫᏱᏃᏴᎵᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᏥᎾᎾᏛᏁᎰ ᎤᎾᏠᎾᏍᏗ ᏧᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎡᎾᎢᏓᏍᏗᏱ ᏕᎦᎳᏅᏛᎢ, ᏴᏫᏉ ᎬᏩᏂᎸᏉᏙᏗᏱ ᏧᏂᏰᎸᏐᎢ; ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎨᎦᎫᏴᎡᎸ.\nᎠᏯ ᎠᏆᏍᏗᎩ ᏱᎨᏎ ᏥᎦᏕᎥᏍᎬ ᏱᏍᎩᎴᎢᏍᎪ?\nᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᎤᏓᎵᎢ ᎢᎦᎧᎲᏍᎨᏍᏗ, ᏧᏂᏏᏅᎯᏍᎩᏂᏃᏅ ᎢᎨᏎᏍᏗ, ᎤᏓᏲᏁᏗᏱᏉ ᏂᎬᏂᏌᏁᎮᏍᏗ; ᎩᎶᏃ ᎠᏥᎧᏅᎯ ᎠᏓᏰᎨᏍᏗ ᎠᏓᏲᏁᎮᏍᏗ.\nᎠᎴ ᎬᏂᏳᏉ, ᎠᏓᏅᏙ ᎤᏂᏱᏍᎪᎢ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎨᎷᎲᏍᎪᎢ, ᎠᎴ ᎤᎸᏕᏍᏗᏍᎪᎢ ᎠᎴ ᏓᎭᏬᎢᎰᎢ, ᎤᏂᏆᎶᏛᏃ ᎦᏂᎳ ᎤᏓᏅᎡᎰᎢ.\nᏃᏥ ᏕᏧᎬ ᎾᎥ ᏭᎷᏨ, ᏅᏯ ᏚᏍᏓᎦᎸ ᏗᎦᏅᎯᏓ ᏧᏁᏍᏓᎳ ᏕᎦᏙᎥ ᏃᎴ ᏓᎶᏂᎨ ᎤᏣᎳ ᏄᏍᏛ.\nᎦᎳᎱᏂ ᎤᏬᏪᎳᏅ ᎪᏪᎵ ᎠᏆᏦᏩᎭᏂ, ᏩᎩᎷᏨ ᎤᏁᎦ ᎠᏓᏁᎸ, ᏩᎩᎶᏒ ᎠᏦᎭᏴ, ᏤᎩᏏᏂ ᎤᏤᎵ ᏐᏈᎵ ᎦᏙᎬ ᏕᎦᏫᏍᏛᏁᎲ ᏛᎦ ᏃᎴ ᎦᏟᎲ, ᎦᎶᎯᏍᏗ ᏩᎩᎶᏒ.\nᎤᎵᏏᎬ ᎨᏍᏗ ᎣᏍᏓ ᏗᎪᏩᏛᏗ ᏱᎨᏎ ᏚᎾᎧᏛ, ᎦᏲᏟ ᏗᎪᏩᏛᏗ ᎨᏒ ᎠᎾᏎᎵᏙᎲ ᏧᏃᏰᏂ.\nᎾᏍᎩ ᎾᏂᎥ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᏍᎩᏍᏓᏩᏗᏙᎯ ᎨᏒᎢ, ᎢᏳᏃ ᏗᏣᏓᎨᏳᎯᏳ ᏱᎩ.\nᎤᏩᏙᎯᏴᏓ ᎨᏎ ᎠᏰᎸᎢ ᏃᎴ ᎧᏁᏉᎨ ᏂᎦᎨᏒ.\nᎥᏝ ᎠᎴ ᎦᎸᎳᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎭᏫᏂᏳ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏅᏩᏓᎴ ᎠᏁᎳᏅᎯ ᎨᏒᎢ, ᏰᎵ ᎢᏴᏛ ᎢᎬᏩᏁᏗ ᏱᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎢᎩᎨᏳᏒᎢ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ.\nᏕᏥᎸᏫᏍᏓᏁᎲ ᏞᏍᏗ ᎢᏣᏓᏄᎸᏗ ᏱᎨᏎᏍᏗ; ᎤᎵᏂᎩᏛ ᏕᏣᏓᏅᏖᏍᏗ; ᎪᎱᏍᏗ ᎡᏣᏛᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ.\nᏱᏓᏂᎳᏫᎦ ᎦᎵ ᎨᏐ ᎤᎵᏏᏂᏕᏅ ᏑᎾᎴ ᎢᎪᎯᏛ.\nᏂᎦᏓ ᎠᏰᎸ.\nᎢᏳᏃ ᎾᏍᎩ ᏚᏂᏅᏨ ᎤᏁᏅᎢᏍᏗᏍᎩ ᏱᎩ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᎡᏍᎦ ᏄᎾᎵᏍᏓᏁᎲ ᎤᏁᏅᎢᏍᏗᏍᎩ ᏱᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᏂᎦᎥ ᎤᎶᏒᏍᏕᏍᏗ ᎠᏂᎧᎵᏨᎭ.\nᎿᏉᏃ ᏚᏍᏆᏃᏴᏔᏂᎩ, ᎠᎴ ᏚᏴᏓᏉᎶᎥᎩ, ᎠᎴ ᏚᎾᎦᎸᎲᎩ, ᎾᏍᎩ ᎢᎦᎢ ᎥᏝ ᎢᎸᎯᏳ ᏱᎬᏩᎵᏖᎸᏃ ᏴᏫ ᎡᎶᎯ ᎤᎾᏕᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎾᏍᎩ ᎢᏳᎵᏂᎩᏛ ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᎦᏎᏗ.\nᎠᎴ ᎾᏍᎩ Ꮎ ᏓᏥᏁᎵ ᏑᎾᎴ ᎡᎯᏃᏈᏏ.\nᎬᏂᏳᏉᏃ ᎠᏏᏴᏫ ᎤᎷᏤᎸᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎰᏍᏛ ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᎤᏍᏗ ᎣᏍᏛ ᎠᎱᏍᏗ ᏓᎦᏛᏁᎵ ᎠᎩᏩᏛᏙᏗ ᏫᎾᏍᏛᎾ ᎬᏂᏛ?\nᏥᎪ ᎾᏍᎩ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎠᏎᏉᏉ ᎢᏥᎩᎵᏲᏨ? ᎢᏳᏃ ᎰᏩ ᎠᏎᏉᏉ ᏱᎩ.\nᏓᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᎢᏳᎢ ᏓᏲᎯᏎᎮ ᎠᏏᏴᏫ ᎠᏴᎩ, ᎾᏍᎩᏉ ᎠᏂᏔᏲᎭ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎾᎯᏳ ᎢᎦ ᎨᏒ ᎠᎴ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎤᎷᎯᏍᏗᏱ ᏴᏫ ᎤᏪᏥ.\nᏏᏆ ᎤᏩᏌ ᎤᏂᎪᎮ.\nᏍᎩᏄᏍᏛ ᎣᏍᏓ ᎤᏂᏰᎸᎰ ᎠᏂᏣᎳᎩ.\nᎦᎵᏦᏕᏃ ᎠᏂᏯᎥ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏔᎵᏁ ᎢᎬᏩᏛᏛᏁ ᎾᏍᎩ ᎤᎬᏩᎵ.\n“ᏙᎤᏍᏗ ᏗᎧᏃᏗ?” ᎤᏛᏛᏁ ᎪᏱᏁᎢ.\n“ᏃᎴ ᎯᏍᏔᏖᎸᏂᎸ, ᏍᏔᏯ ᏕᏍᏗᏂᏴᎮᏍᏗ,” ᎤᏛᏁ ᎪᏱᏁᎢ, ᏍᏔᏯ ᏕᏍᏗᏂᏴᎮᏍᏗ.\n“ᎤᎵᏍᏆᎸᏗ ᏓᎪᏪᎳᏂ.” \nᎪᎯ ᎢᏯᏍᏗ ᎥᏝ ᎪᎱᏍᏗ ᏱᏥᎳᏲᏍᏔᏃ ᎠᏴ ᏓᏉᏙᎥᎢ. ᎢᏥᏔᏲᎭ ᏓᏰᏥᏁᎵᏃ, ᎢᏣᎵᎮᎵᎬ ᎤᎧᎵᎢᏍᏗᏱ.\n“ᎨᏍᏗ ᏱᏓᏓᎴᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, Ꮟ ᎩᎳᎯ ᎤᏂᏴᎮ ᎦᎷᏯᏍᏗ.\nᎢᏳᏃ ᎠᏁᎲ ᏂᏓᎩᎸᏫᏍᏓᏁᎲᎾ ᏱᎨᏎᎢ ᎩᎶ ᏧᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎥᏝ ᎠᏍᎦᏂ ᏱᎬᏩᏁᎮᎢ; ᎠᏎᏃ ᎿᏉ ᎢᏧᎳ ᎪᎩᏂᎪᎲ ᎠᎴ ᎪᎩᏂᏍᎦᎩᏳ ᏄᎵᏍᏔᏅ ᎢᏧᎳ ᎠᏴ ᎡᏙᏓᏃ.\nᎤᎧᏛ ᎤᏍᎪᎵᏰᎥ ᎠᏓᏰᏍᏗᏍᎬ ᎦᎷᏯᏍᏗ, ᏚᎧᎾᏅ ᏣᎵ.\nᎾᎥᏂᎨ ᏚᎧᎾᏁ, ᎯᎸᎯᏳ ᏥᏲᎵᎩ ᏥᎨᏎ ᎠᏍᎦᏯ ᎾᎥᏂᎨ ᏤᏣᎧᏃᏗ.\nᎢᎦ ᏗᎧᎸᎬ ᎢᏣ ᏓᏳᏓᎴᏅ ᎣᏍᏓ ᎠᎪᏩᏛᏗ ᏂᎦᎵᏍᏕᏍᎨᎢ.\n“ᎦᏙᏃ ᏛᏁᎵ?” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᏚᎧᎾᏁᎢ ᏌᏌ.\nᎤᏂᏣᏘᏰᏃ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎠᏁᎷᎲᏍᎬᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎯᎷᎦ.\nᎢᎬᏱᏱ ᎠᏍᎦᏯ ᎦᏙᎯ ᏅᏓᏳᏓᎴᏅᎯ, ᎦᏓᏉ ᎨᏎᎢ; ᏔᎵᏁ ᎠᏍᎦᏯ ᎤᎬᏫᏳᎯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ.\nᎾᏍᎩᏃ ᎢᎦᏛ ᏚᎾᏕᏋᎯᏍᏗ ᏥᏫᏅᏗᏨᎷᏤᎵᏒᎾᏉ ᏥᎨᏐ ᎾᏍᎩᏯᎢ.\nᎠᏂᏅ ᏧᏩᏂ ᏧᎾᎵᏲ ᎠᏥᎸ ᎾᎥᏂ ᏫᏂᏚᏅᏅ ᏧᎾᎳᏏᏕᏅ, ᎤᏔᏃᎸᏓ ᎠᎵᏌ ᎳᏗᏍᎬ ᏓᏂᎾᏌᏛ.\nᏴᏫ ᎤᏂᏁᏨ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ, ᎠᏴ ᎣᎦᏛᎦᏅ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎡᎲᎢ; ᎦᏙᏃ ᏴᏫ ᎤᏪᏥ ᎠᏎ ᏓᏰᏥᏌᎳᏓᏂ ᎢᎭᏗᎭ? ᎦᎪ ᎾᏍᎩ Ꮎ ᏴᏫ ᎤᏪᏥ?\n”ᎣᏍᏓ!” ᎤᏛᏁ ᏌᎳᏓ.\nᎤᏬᏂᏒ.\nᎤᎬᏫᏳᎯᏰᏃ ᎤᏩᏒ ᏛᏠᎠᏏᎵ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎤᎵᏠᏯᏍᏕᏍᏗ ᎤᏁᎷᎬᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎧᏁᎬᎢ, ᎠᎴ ᎠᏤᎷᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏃᏴᎬᎢ; ᏧᏂᏲᎱᏒᎯᏃ ᎦᎶᏁᏛ ᎤᎾᎵᏍᎦᏙᏔᏅᎯ ᎢᎬᏱ ᏙᏛᎾᎴᏂ;\nᎾᏍᎩ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᏚᎾᎵᏘᏎᎢ, ᎵᏍᏗ ᎠᎴ ᏓᏈ ᎵᎨᎣᏂᏯ ᏕᎦᏚᎲ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎾᎿ ᎬᏩᏚᏫᏛ ᎨᏒᎢ.\nᏕᏥᏲᎵᎸᎭ ᏂᎦᏛ ᎨᏣᎦᏌᏯᏍᏗᏕᎩ, ᎠᎴ ᏂᎦᏛ ᎤᎾᏓᏅᏘ. ᎢᏓᎵ ᎠᏁᎯ ᏫᎨᏥᏲᎵᎦ.\nᎡᎳᏗ ᏄᎾᏛᎾᏕᎬ ᏚᏂᎷᏫᏍᏔᏁᎲ.\nᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏣᏓᏅᎾ, ᎾᎪᏃ ᎤᏲᎱᏒᎯ ᏱᎩ ᎠᎨᏳᏣ; ᎦᎵᎭᏉᏍᎩᏂ. ᎥᎬᏩᏰᏣᏍᏔᏅᏉᏃ.\nᏌᏩᏂ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏎᎨᎵ ᎾᏍᎩ Ꮎ ᎤᏟ ᎢᎦᎢ ᏗᎬᏩᏲᎯᏎᎸᎯ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᏚᏳᎪᏛ ᏕᎱᎪᎵ.\nᎣᏏᏳᏰᏃ ᎠᏰᎸᏅᎯ ᎨᏎ ᎾᏍᎩ ᎤᏪᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎦᎥ ᎠᎧᎵᎢᎯ ᎨᏒᎢ;\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ ᏫᏚᎾᏓᏒᏍᏔᏁᎢ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎠᏃᎯᏍᏗᏍᎩ, ᎤᏁᎳᏅᎯᏰᏃ ᏧᏪᏥ ᏛᎨᎪᏎᎵ.\nᎠᎾᏍᎩᏓᏍᎬᏃ ᎤᏁᎳᏅᎯ ᏚᏁᏤᎸ ᎡᎶᏛᏱ ᏭᏂᎶᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᎤᎾᏂᎩᏒ ᎤᏣᏘᏂᏉ ᎢᏗᏢ ᏭᏂᎶᏎ ᎢᎤᏁᏅ ᎤᎾᏤᎵᎪᎯ.\nᏈᏓᏃ ᎤᏅᏓᏕ ᏥᏌ ᎤᏁᏨᎯ, ᎯᎠ ᏥᏄᏪᏎᎴᎢ; ᎠᏏ ᏣᏔᎦ ᎾᏂᏴᎬᎾᎨᏎᏍᏗ ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ. ᎤᏄᎪᏨᏃ ᎡᎯᏍᏗ ᏫᏚᏠᏱᎴᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏗᏛᎮ ᏓᏂᎧᏅᎢ, ᎠᎴ ᎤᏁᏎ ᎤᏤᏍᏙᎩ, ᎠᎴ ᏧᏪᏅᏒ ᏭᎶᏎᎢ, ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ.\n“Ꮘ-Ꮘ-Ꮘ!”\nᎥᏝᏍᎩᏂ ᏱᎬᎩᎪᏩᏔ ᎠᎭᏂ ᎦᎴᏫᏍᏗᎲᎢ\nᎠᎴ ᎾᏍᎩ ᏙᏛᏘᏂᏙᎵ ᎠᏙᎳᏅᏍᏗ ᏔᎷᎩᏍᎩ ᎪᏢᎳᏅᎯ ᏓᎬᏔᏂ; ᎠᎴ ᏗᏩᎵ ᏥᏕᎦᏓᏬᏗᏍᎪᎢ ᎾᏍᎩᏯ ᏙᏓᎦᏓᏬᏔᏂ; ᎾᏍᎩᏯ ᏓᎩᏲᎯᏎᎸ ᎡᏙᏓ.\nᏆᎩᏃ ᎧᏃᎮᏛ ᎤᎾᎵᏥᏙᏅ ᎠᏔᏓᏯ ᏭᏂᎷᏤᎢ.\nᏗᏣᏤᎵ ᏓᎶᏂᎨ ᎠᏕᎸ ᎠᎴ ᎤᏁᎬᎠᏕᎸ ᏚᏯᏍᏜᏛ, ᏚᏯᏍᏜᏛᏁ ᎢᏥᏃᎮᏍᎩ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏪᏰᏍᏗ ᎨᏎᏍᏗ ᎢᏥᏇᏓᎸ ᎠᏥᎸ ᏥᎦᏰᏍᎪ ᎾᏍᎩᏯᎢ. ᎢᏥᏟᏌᏅ ᏧᎬᏩᎶᏗ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏒ ᎤᎬᏩᎵ.\nᎠᏯᏖᎾ ᎧᏴᏌᏛᎢ ᎬᏗ ᏭᏩᏌᏙᏰᎢ ᎤᏪᏥ ᎤᏁᏍᎩᎸ ᏙᏰ, ᏂᎦᏓ ᎤᏂᏁᎵᏍᎩ ᎤᎾᎦᏙᏍᏕᎢ ᎤᏩᏌᏆᎸᏍᏔᎾ.\nᏉᎳ, ᎥᎩᏅᏏᏛ, ᏴᏫ ᎬᎩᏅᏏᏛ ᏂᎨᏒᎾ, ᎠᎴ ᏴᏫ ᎬᎩᏁᏤᎸᎯ ᏂᎨᏒᎾ, ᏥᏌᏍᎩᏂ ᎦᎶᏁᏛ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨ ᎾᏍᎩ ᏧᎴᏔᏅᎯ ᏥᎩ ᎤᏲᎱᏒᎢ ᎾᏍᎩ ᎬᎩᏁᏤᎸᎯ;\nᎥᏝ ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏧᏃᏰᏂ ᏱᏚᎵᏍᏕᎸᏗ, ᏧᏂᎬᎪ ᎪᎱᏍᏗ ᎾᏍᎩᏯᎢ, ᏕᎠᏁᎮᏰᏃ ᏂᎦᏛ ᏓᏅᏅᎢ ᎠᎴ ᏓᏅᏬᎳᏕᏍᎬ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ.\nᎾᎿᏃ ᎠᎾᎵᏍᏓᏴᏂᏙᎮ ᎦᏚᏏ ᎤᏂᏣᏘ ᏑᎾᏓᏡᏈᎩ ᏏᏆ; ᎾᏍᎩᏃ ᎬᏩᏔᏲᏎᎴ ᎤᏁᎳᎩ ᏧᏪᎵᏎᏗᏱ ᎾᏍᎩ ᏫᏚᏂᏴᏍᏗᏱ; ᎤᏁᎳᎩᏃ ᏎᏪᎵᏎᎴᎢ\nᎦᎸᎶ ᎠᏰᎵ ᎢᏴ ᎤᏓᏍᏔᏅᏁᎢ ᎦᏂᏓᏛ, ᏑᎾᏙᏓᏆᏍᏗ ᎢᎪᎯᏓ ᎦᏃᎯᎵᏎ ᎤᏒᎯ.\nᏥᏍᎦᎢ ᎠᏋᏌ ᎨᏒ ᎤᏪᎵᏎ.\nᎤᏅᏏᏴ ᏓᏂᏒᎳᏍᎨ ᏌᏌ ᎠᏂᏓ.\nᎠᎴ ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎤᏲᏍᏛᏉ, ᎤᏲᏍᏛᏉ, ᎾᏍᎩ Ꮎ ᎡᏆ ᎦᏚᎲ ᎾᏍᎩ ᎤᏏᏙᎵ ᏙᎴᏛ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ ᏥᏚᏣᏃᏛᎩ, ᎠᎴ ᎠᏕᎸᏓᎶᏂᎨᎢ, ᎠᎴ ᎤᏣᏘ ᏧᎾᎬᏩᎶᏗ ᏅᏯ, ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ, ᏥᏚᏣᏃᏛᎩ!\nᎠᏎᏃ ᎤᎾᏰᎯᏍᏗ ᎨᏎᏍᏗ ᎣᎩᎾᎵᎢᏴ! \nᎤᏕᎵᏍᏗ ᎤᏓᎾᏏᏅᏍᏔᏁᎢ ᎠᏦᏴ ᎾᎥᏂ, ᎤᏔᎴᎦᏒ ᏭᏕᎵᏤ ᎤᏩᏌ ᎤᏍᎪᏒ ᎠᏍᏚᏗ ᏃᎴ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎠᏰᎵ.\nᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒᎩ ᎠᏂᏌᏛᎥᏍᎬᎩ, ᎤᏄᎯᏍᏙᏗᏱᏉ ᎤᏂᏰᎸᏒᎩ. ᎠᏎᏃ ᏥᏌ ᎤᏗᏌᏓᏛᎩ, ᎦᏰᏌᏛᏃ ᎤᏩᏔᏅᎩ ᎤᏬᏪᎳᏅᎩ ᎦᏙᎯ.\nᏔᎵᏁᏃ ᎢᏴᏛ ᏭᎶᏒ, ᎤᏓᏙᎵᏍᏔᏁᎢ, ᏄᏪᏒ ᎾᏍᎩᏯ ᏫᏄᏪᏎᎢ.\nᎾᏍᎩ ᎬᎩᎪᎵᏰᎥ, ᏱᏗᎬᎩᏲᏎᎢ, ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᎠᏲᎱᎯᏍᏗ ᎬᎩᏍᏛᏗᏍᏗ ᏱᎬᎩᏩᏛᎡᎴᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏂᏲᏎ ᏥᏳ ᎠᎴ ᎤᏂᏙᏓ, ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᎠᏆᏛᎦᏅᎩᏃ ᎩᎶ ᎠᏍᏓᏯ ᏓᎧᏁᎬᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏛᏓᎴᎲᏍᎩ ᎯᎠ ᏂᏕᎦᏪᏎᎲᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎢᏤᎾ, ᎠᎴ ᎡᎶᎯ ᏫᏂᏐᏅᏯ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎫᎫ ᏓᏟᏍᏛᎢ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ.\nᎤᏲᎵᎴ ᎤᏍᏗ ᎧᏅᏂᏍᎩ.\nᎠᏂᏩᏥᏂ ᎤᏃᏟᏍᏗ ᎠᏉᏪᎳᏅ, ᏦᎢ ᎢᏳᏩᎬᏘ ᎠᎩᎪᎵᏰᎥ ᎩᎳ ᎠᏉᎵᏨ.\nᎾᏍᎩᏃ ᎩᎶ ᎠᏎ ᎾᎿ ᏭᏂᏴᏍᏗ ᏥᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎢᎬᏱ ᎨᎦᎵᏥᏙᏁᎸᎯ ᎨᏒ ᎾᏄᏂᏴᎸᎾ ᏥᎨᏎᎢ., ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ.\nᏐᏉ ᎠᏫᎾᎨᏍᏗ ᎠᏍᎦᏰᎬᏍᏔ ᎠᏌᎻᏓ ᏧᏙᎢᏓ.\n(ᎾᏍᎩ Ꮎ ᎠᎨᏴ ᎠᎪᎢ ᎨᏎᎢ, ᎠᏌᎶᏈᏂᏏ ᎨᏎᎢ;) ᎠᎴ ᎾᏍᎩ ᎤᏍᏗᏰᏔᏁ ᎾᏍᎩ ᎤᏪᏥ ᎠᏛᏄᏣ ᎠᏍᎩᎾ ᎤᏄᎪᏫᏎᏗᏱ.\nᎠᎴ ᎠᏴ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎠᏓᏅᏙ ᏧᎾᏘᏂᏙᎯ ᎾᏍᎩᏯ ᎨᏨᏬᏁᏙᏗ ᏱᎨᏎᎢ, ᎤᏇᏓᎵᏉᏍᎩᏂ ᏧᎾᏘᏂᏙᎯ ᎾᏍᎩᏯᎢ, ᎾᏍᎩᏯᏉ ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎦᎶᏁᏛ ᏚᎾᏚᏓᏛ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏘᏏ ᎤᏬᏰᏂ ᎤᏩᏔᏅᎯ ᎤᏌᎳᏓᏅᎯ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏴᎵᎨ ᎤᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᏧᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏪᏐᏅᏴ ᎯᎠ ᎪᎯ ᏥᏥᎪᏩᏘᎭ ᎠᎴ ᏥᏣᏛᎩᎭ.\nᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎧᏃᎮᏛ ᎨᏒ ᏓᏆᏢᏫᏎᎲᎢ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎯᎠ ᏅᏥᏪᏎᎸᎩ [ᏉᎳ]; ᏣᏚᎵᏍᎪ ᏥᎷᏏᎵᎻ ᏤᏅᏍᏗᏱ ᎾᎿᏃ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏤᏧᎪᏓᏁᏗᏱ.\nᎣᎭᏁ ᏃᏉ ᏩᏂᎷᎬ ᎠᏂᏫᎾᎨᏍᏗ ᏗᏂᎳᏫᎩ, ᏅᏙ ᏥᏗᎧᎸᎪ ᎢᎪᎯᏓ.\nᎦᏰᎵᏍᏗ ᎦᏲᏟ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏍᎩᎾᎾ ᎨᏒ.\nᎢᏓᏓᏅᏟ, ᎥᏝ ᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏨᏲᏪᎳᏁᎭ, ᎤᏪᏘᏉᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏥᏥᎲᎩ ᏗᏓᎴᏂᏍᎬᎢ; ᎤᏪᏘ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏉ ᎧᏃᎮᏛ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏁᏣᏛᎩᏍᎪᎢ.\nᎾᎿᏂ ᎬᏩᏛᏅᎩ, ᎠᎴ ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎢᏧᎳᎭ ᏕᎨᎦᏛᏅᎩ ᎢᏧᎳ ᎢᏗᏢ ᏥᏌᏃ ᎠᏰᎵ.\n”ᎨᏓᎵ ᎢᏣ ᏩᏓᏒᏍᏓ!” ᎤᎾᏛᏁ ᏩᎦ.\nᎠᎴ ᎥᏝ ᎾᏍᎩ Ꮎ ᏑᎾᏓᎴᎩ ᎨᏒ ᎤᏅᏒ, ᎾᏍᏉᏍᎩᏂ ᏌᏉ ᎢᏧᏩᏁᏗᏱ ᏧᏪᏟᏐᏗᏱ ᎤᎾᏗᎦᎴᏲᏨᎯ ᎤᏁᎳᏅᎯ ᏧᏪᏥ.\nᎾᏍᎩ ᏥᎦᏙᎥᎯᏍᏗᏱ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎾᏍᎩ ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅᎢ, ᎠᎴ ᎠᏇᎳᏗᏍᏗᏍᎬ ᎾᏍᎩ ᎤᎩᎵᏲᏥᏙᎸᎢ, ᎠᎴ ᎤᏲᎱᏒ ᎾᏍᎩᏯ ᎠᎩᏲᎱᎯᏍᏗᏱ;\nᎠᏎᏃ ᏥᏌ ᎠᏏ ᎠᎱᏍᏗ ᏯᏗᏯᎨᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏆᎴᏗ ᎤᏍᏆᏂᎪᎭᎢ.\nᏃᏊᏗ ᎠᏲᏟ ᎠᏍᎪᎵ ᎡᎳᏗ ᏥᏂᎬᏁᎮᎢ ᎠᏥᏒᏔᏁᎮ ᏃᎴ ᏍᎩᎾ ᎠᎦᏴᎵᎨ ᎠᏒᏂᎮ ᎠᎨᏳᏣ ᎤᏍᏘᏰᎬ ᏍᎩᎾ ᎦᏂᏰᎬ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏍᏛᎢ ᎬᏗ.\nᏭᏂᎷᏣ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ, ᎠᎾᏛᎩᏍᎨ ᎧᏃᎩᏍᏗ ᎦᏆᏛ ᎠᏗᏆᎸᏕᏲ ᏓᏳᏓᎴᏅ ᏃᎴ ᎠᏂᎪᏩᏘᏍᎨᎢ ᎠᏗᏆᎸᏕᏲᎲ ᎦᎸᎶᎢ.\nᎿᏉᏃ ᏚᏂᎦᎵᏒ ᏕᎦᏙᏌᏗᏍᏛ ᏔᎷᎩᏍᎩ ᏥᏳ ᏗᎦᎾᎯᏍᏙᏗ, ᎠᎺᏉ-Ꭿ ᏚᏂᏲᎯᏎᎸᎩ, ᎠᎴ ᏚᏂᎧᏁᏴᎲᎩ ᎦᏌᏛᏍᏗ ᏕᎦᎸᏍᏛᎢ, ᎠᎴ ᎦᏃᎸᎥᏍᎬᎢ ᎤᏂᏰᏙᎳᏛᏅᎩ ᎤᏍᏗ ᎠᏰᏙᎳᏛᏗ; ᏙᏱᏃ ᏫᏚᏄᎪᏔᏅᎩ.\nᎠᎴ ᎤᏦᏖ ᏧᏓᎴᏅᏛ ᏕᎦᏬᏁᏗᏍᎬ ᏚᎵᏥᏙᏁᎴ ᎠᏫ.\nᎢᏳᏃ ᎠᏩᏛ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᎤᏟ ᏂᎦᎣ ᎠᎵᎮᎵᎪ ᎾᏍᎩ ᎨᏒ ᎢᏳᏍᏗ, ᏒᏍᎦᏉ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏯᏂᏛ ᏄᎾᎴᏲᎥᎾ.\nᎯᎠ ᎾᏍᎩ ᏌᏉ ᏄᏅᏅ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏄᏍᏛ ᎤᎾᏒᎦᎸ ᎠᎴ ᏚᎾᎵᏂᎬᎬ ᏙᏛᏂᏲᎯᏎᎵ.\nᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ ᎠᎴ ᎤᎾᏓᏅᏖᏔᏁᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᏙ ᎯᎠ ᎦᏛᎦ?\nᎩᎶᏍᎩᏂ ᏳᏍᏆᏂᎪᏗ ᎾᏍᎩ ᎤᏁᏨᎯ, ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒ ᎤᎧᎵᏨᎯ ᎨᏐᎢ: ᎾᏍᎩ ᎯᎠ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎡᏗᏯᎥᎢ.\nᎠᎴ ᎠᏋᏒ ᎾᏍᏉ ᎠᏉᎯᏳᎭ ᏂᎯ ᎢᏨᏯᏓᏅᏖᏍᎬᎢ, ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᎣᏍᏛ ᎨᏒ ᎢᏥᎧᎵᎢ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎴᏒ ᎠᎦᏙᎥᎯᏍᏗᎨᏒ ᎢᏥᎧᎵᎥᎢ, ᏰᎵᏉ ᎾᏍᏉ ᏗᎨᏣᏓᎬᏍᎪᎸᏗ ᎨᏒᎢ.\nᎤᏲᎢᏴ ᎤᏕᏘᏴᏌᏗᏒ ᎦᏙᎯᏉ ᎠᏩᏛᏗ ᎪᎰᏍᏗ ᎠᎩᏍᏗ.\nᎤᎵᏍᏗᏳᏃ ᎠᏤᎵᏍᏛ ᎤᎾᏓᏅᏎᎢ, ᎠᏂᏍᎦᎢᎮ ᎠᎴ ᎤᏣᏘ ᎠᎾᎵᎮᎵᎨᎢ, ᎠᎴ ᏚᏂᏍᏆᎸᏔᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏂᏃᏁᎸᏎᎢ.\nᎤᏂᏣᏖᏰᏃ ᏚᏅᏩᏁᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏩᏁᏄᎳᏍᏗᏍᎨ ᎬᏩᏃᏟᏍᏙᏗᏱ ᎤᎾᏚᎵᏍᎨᎢ, ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎾᎵᏍᏗᏍᎩ.\nᏦᎢᏁᏃ ᎢᎦ ᎣᎬᏒ ᏦᎪᏰᏂ ᏙᎬᏔᏅᎩ, ᎣᎦᏘᏅᏒᎩ ᎤᏤᎵᎦᏯ ᎤᎵᏁᏌᎸ ᏥᏳ.\nᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏣᏚᎵᎭ? ᎯᎠ ᏅᏓᏳᏪᏎᎸᎩ; ᎭᎵᏍᎪᎸᏓ ᎯᎠ ᎠᏂᏔᎵ ᏗᏇᏥ ᏧᏂᏗᏱ ᏣᏤᎵᎪᎯ ᎨᏒᎢ, ᏌᏉ ᎯᎦᏘᏏ ᎢᏗᏢ, ᏐᎢᏃ ᎯᎦᏍᎦᏂ.\n“ᎠᏯᏍᏉ ᏥᏚᎢᏍᏗ,” ᎤᏛᏁ ᎠᎵᎮᎵᎩ.\nᏥᏳᎯᏃᎢᎤᎾᏣᏅ ᎦᏃᎸᎥᏍᎬ ᎤᏑᎵᎪᏨᎩ.\n“ᏓᏁᏏᏃᎨ, ᏣᎨ ᏌᎳᏓ?” ᎤᏛᏛᏁ.\nᎿᏉ ᎯᎠ ᎡᎶᎯ ᏙᏓᏰᎫᎪᏓᏁᎵ, ᎿᏉ ᎤᎬᏫᏳᎯ ᎯᎠ ᎡᎶᎯ ᎤᏤᎵᎦ ᏓᏰᏥᏄᎪᏫᏏ.\nᎿᏉᏃ ᏥᏌ ᏔᎵᏁ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏓᎦᏓᏅᏏ, ᏂᎯᏃ ᏍᎩᏲᎮᏍᏗ, ᎠᎴ ᎠᏎ ᎠᏍᎦᏂ ᎨᏒ ᏙᏓᏥᏲᎱᏏ, ᎠᎴ ᏫᏥᎦᏛ ᎥᏝ ᏫᏴᎨᏥᎷᎩ.\nᎾᎿᏃ ᏭᎷᏧ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏣᏓᏙᎵᏍᏓ ᎤᏓᎴᎾᏍᏗᏱ ᎨᏒ ᏫᏥᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎤᏔᏂᏓ ᎢᎾᏓ ᎤᏍᎦᏎᏗ ᎤᏦᏔᎮ ᏃᎴ ᎤᏩᏂᏍᏓᏂᏙᎴ, ᎤᏔᎶᎩᏍᎨ.\nᏍᎩᏴ ᎤᏒᎯ, ᏫᏥ ᏫᏣᏚᎦ ᎤᎪᏅ ᏍᎨᏫ ᎦᏥᏲᏎᎸ ᎠᏂᏧᏣ, ᎢᎦᏲᏍᏔ ᎠᏋᎭᏂᏍᏔᏅ ᏇᎯ.\nᏚᏙᏩᏗᏍᎬ ᏕᎦᏅᎯᏤᎨ.\nᎢᏕᎾ, ᏪᏥᎪᏩᏛ ᎠᏍᎦᏯ ᎠᎩᏃᏁᎸᎯ ᏂᎦᎥ ᎾᏆᏛᏁᎵᏙᎸᎢ. ᏝᏍᎪ ᎾᏍᎩ ᎦᎶᏁᏛ ᏱᎩ?\n”ᏔᏕᎶᎰᏏᏗ.\nᏗᏂᎦᏙᎵᏃ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎢᎬᏬᎵᏤᎢ, ᎠᎴ ᎤᎵᏛᏔᏁ ᏓᏂᎧᏅᎢ.\nᎬᏂᏳᏉᏃ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎢᎬᏱᏗᏢ ᏄᏛᏁ ᎤᏢᎩ ᎠᎹ ᎤᏓᏁᏁᎯ.\nᏧᎧᎭᏲᏓ ᏚᏑᎦ ᏧᏆᎶᎦ ᎭᏫᏂᏨ ᏧᏬᏰᏂ ᏃᎴ ᏗᎧᏂᎨᏂ ᏃᎴ ᏧᎳᏏᏕᏅ ᎤᎭᎨᏛ ᎾᏍᎩᏯ ᎤᏓᏔᏅ ᏧᏯᏍᎦ.\nᎠᏂᏃᏍᎩᏍᎩᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᏗᎨᎦᏛᏅᎯ ᎾᏍᏉ ᎦᎬᏩᏐᏢᏕᎢ.\nᎩᎶᏰᏃ ᎬᏅ ᎤᎨᏳᏎᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎢᎦ ᏧᎪᏩᏛᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᏩᏲᏍᏙᏓᏏ ᎦᏃᎪᎢ ᎤᏲ ᎨᏒᎢ, ᏚᎭᏁᎦᎸ ᎦᎶᏄᎮᏛ ᎤᏁᎢᏍᏗᏱ ᏂᎨᏒᎾ;\n“ᎯᎦᏘᏰᏍᏗ! ᎤᏛᏁ ᎪᏱᏁᎢ.\nᏂᎦᎥ ᎪᎱᏍᏗ ᏓᎩᏲᎯᏎᎸ ᎡᏙᏓ; ᎥᏝ ᎠᎴ ᎩᎶ ᏯᎦᏔᎭ ᎾᏍᎩ ᎨᏒ ᎤᏪᏥ, ᎠᎦᏴᎵᎨ ᎤᏩᏒ; ᎠᎴ ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎨᏒ ᎤᏪᏥ ᎤᏩᏒ, ᎠᎴ ᎩᎶ ᏥᎾᏄᎪᏫᏏ ᎡᎳ ᎤᏪᏥ.\nᏧᏓᎴᏅᎮ ᎠᏂᏳᏩᏁᎦ ᏚᎾᎵᎪᏁᎸ ᎠᏂᏴᏫᏯ, ᎠᏂᏳᏩᏁᎦ ᎨᏥᏔᎶᏎ.\nᎥᏝ ᎩᎶ ᎠᏥᏅᏏᏓᏍᏗ ᏰᎵ ᎠᏂᏔᎵ ᎬᏩᏅᏏᏙᎯ ᎪᎱᏍᏗ ᏱᏙᎬᏛᏂᏏ; ᏱᎠᏍᎦᎦᏰᏃ ᏌᏉ ᏱᎤᎨᏳᎭᏃ ᏐᎢ; ᏱᏃᎤᏂᏴᏆᎴ ᏌᏉ ᏱᎦᏂᏆᏘᎭᏃ ᏐᎢ. ᏝᏍᎩᏂ ᏰᎵ ᎤᏁᎳᏅᎯ ᎠᎴ ᎹᎹᏂ ᎪᎱᏍᏗ ᏱᏙᎨᏣᏛᏂᏏ.\nᎤᎵᏏᏅᏗ ᎤᏍᏚᏁ ᎧᏁᏌᎢ.\nᎠᏎᏃ ᎨᏍᏗ ᏳᏓᏁᏥᏴᏌ ᏁᎵᏍᎬ ᎤᏙᏓ.\nᎠᎴ ᎯᏍᎩᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏥᎸᎨᎳᏍᏗᏱ ᎭᏫᏂᏢ ᏓᎩᎪᎲᎩ ᏧᎾᏓᏅᏙ ᎾᏍᎩ Ꮎ ᏗᎨᏥᎸᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎤᏂᏍᏛᏛᎯ, ᎠᎴ ᏄᏍᏛ ᎤᏃᎯᏳᏔᏅ ᎤᏂᏍᏛᏛᎯ;\nᎾᏍᎩ ᎻᏚᏏᎳ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᏃᎩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏤᎳᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᎵᎵᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎧᏱᏅ ᎤᏪᏥ ᎨᏎᎢ,\nᎠᏂᏍᎦᏯᏃ ᏥᏌ ᏗᎬᏩᏂᏴᎯ ᎦᎬᏩᏐᏢᏕ ᎠᎴ ᏕᎬᏩᏂᎮᎢ.\nᎩᎶᏍᎩᏂ ᎢᎠᏆᏓᏱᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᏉ ᎠᏴ ᎾᏍᎩ ᏓᏥᏯᏓᏱᎵ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎠᎦᏔᎲᎢ.\nᎠᎴ ᏂᎦᏗᏳ ᏗᎦᏃᎦ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ.\nᎠᎴ ᎠᎹᏱ ᏗᎦᏘᏯ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᏯᏛᎦᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᏂᏍᎦᏅᎾ ᏣᎬᏫᏳᎯ, ᏂᎯ ᎾᏍᎩ ᏤᎭ, ᎠᎴ ᏤᎲᎩ, ᎠᎴ ᏤᎮᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏄᏍᏛ ᏕᏧᎪᏔᏅᎢ.\nᏣᎵ ᎤᎷᏤᎴᎢ ᏧᏭᎪᏓᏁᏗ ᏂᎦᏓ, ᎤᏓᎨᏛ ᎤᎷᏤᎴᎢ ᎤᏕᏘᏴᏒ ᎢᏳᏍᏘ, ᎨᏍᏗ ᎢᏳᏍᏗᏉ ᏳᏓᏂᏴᎡᎸ ᎠᎧᏔᎾᎥ.\nᎫᏰᏉᏂ ᎧᎸ ᎠᎬᏱ, ᏐᏈᎵ ᏧᏂᎷᏫᏍᏔᏁ ᏓᏄᏓᎸᎥᏍᎨ ᎦᏄᎸ ᎠᏣᎩᏍᎩ, ᏃᎴ ᎰᎻ ᎦᏅᏫᏍᏗᏍᎨ.\nᎬᏂᎨᏒᏃ ᏄᏩᏁᎸ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᏦᏩ ᏚᏲᎯᏎᎴ ᎠᏰᎸᎢ.\nᎢᏳᏰᏃ ᎩᎶ ᏰᎵ ᎩᎶ ᎤᏤᎸᏎᏍᏗ, ᎩᎶᏉᏃ ᏂᎨᏒᎾ ᎢᏳᏎᏍᏗ, ᎤᏩᏒᏉ ᏯᏓᎵᏓᏍᏗᎭ.\nᎠᏂᏃᎯᎵᏙ ᎤᏂᏃᎮᎴ, ᎤᏣᎴᏓ ᏧᏤᎵ ᏴᏫ ᎯᎸᎯᏨ ᎦᏚᏏ ᎤᎾᏗᏍᎦᏢ, ᎠᎪᎾ ᏧᏂᏲᏏᏍᎩ ᏃᎴ ᏗᏂᎾᏬᎩ ᏃᎴ ᏧᏂᏨᎩ.\nᏂᎪᎯᎸ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏄᏓᎴᏒ ᎠᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎠᏔᏲᏍᏗ ᎨᏒ ᎠᏓᏅᏙ ᎬᏗ, ᎠᎴ ᎢᏥᏯᏫᏍᎨᏍᏗ ᎾᎿᏂ ᎢᏨᏗᏍᎨᏍᏗ ᏗᏯᏪᎢᏍᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎠᏔᏲᏍᏗ ᎨᏒ ᎨᏥᏍᏕᎸᏗᏱ ᎤᎾᏓᏅᏘ ᎾᏂᎥᎢ.\nᏥᏌ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏱᏦᎯᏳᎭ, ᎠᎴ ᏂᏣᏜᏏᏛᎡᎲᎾ ᏱᎩ, ᎥᏝ ᎯᎠᏉ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏥᎾᎬᎦ ᏱᏅᎨᏣᏛᎦ, ᎾᏍᏉᏍᎩᏂ ᎯᎠ ᏱᏂᏥᏪᏎᎸ ᎯᎠ ᏦᏓᎸ, ᎭᏓᏅᎾ, ᎠᎴ ᎠᎺᏉᎯ ᏪᏣᏚᎦ, ᎠᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᏯᎦᏔᎮ ᏄᎾᏍᏛ ᏧᎦᏴᎵ, ᏃᎴ ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏕᎶᎰᎯᏍᏗ.\nᎠᏗᎾ ᎤᏬᎯᏳᎯᏳ ᎨᏎᏍᏗ ᎠᏔᏲᎯᎮᏍᏗ, ᎪᎱᏍᏗ ᏄᏜᏏᏛᎡᎲᎾ; ᎤᏜᏏᏛᎡᎯᏰᏃ ᎾᏍᎩᏉ ᎠᎺᏉᎯ ᏓᎵᏍᏗᎳᏁᎬ ᎤᏃᎴ ᏧᏃᎸᏔᏂᏙᎰ ᎠᎴ ᏧᎨᎯᏙᎰᎢ.\nᎠᏍᎪᎵ ᏭᏍᏘᏅ, ᎤᏍᎫᏈᏓᎩᏒ, ᎤᏅᏍᎦᏝᏅ, ᏦᎳ ᏣᎩᏍᏙᏍᎪ ᎢᎦᎦᏓ ᏄᏩᏁᎸ.\nᎠᏴ ᎤᏙᎯᏳᎯ ᎠᎹ ᏕᏨᏯᏬᏍᏗᎭ ᏗᏥᏁᏟᏴᏍᏗᏱ ᏕᏣᏓᏅᏛ ᎤᎬᏩᎵ; ᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎣᏂ ᏨᏓᏯᎢ ᎤᏟᎯᏳ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎠᏴ, ᏧᎳᏑᎶ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᏗᎩᏂᏓᏍᏗᏱ; ᎾᏍᎩᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎠᏥᎸ ᏙᏓᏣᏬᏍᏔᏂ.\n”ᏙᎢᏳᏍᏗ ᎤᏍᏗ ᎪᎱᏍᏗ ᏥᏄᏍᏆᏂᎩᏗ? \n“ᎾᏄᏍᏗ ᎯᎠ!” \nᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏂᎦᎵᏍᏗᏍᎬ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ, ᎢᏥᎦᏔᎮᏍᏗ ᎤᏁ-ᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎥᏂᏳ ᎨᏒᎢ.\nᎣᏍᏓ ᏱᎾᏛᎦ ᏱᏣᏍᏚᏅ ᏧᏍᏆᏅᎾ ᎠᎬᏱ ᎭᎾᎦᏔᎲᏍᎬᎾ, ᎤᏛᏅ ᏣᎵᏍᏙᏂ ᏓᏳᎶᏒ ᎠᏧᏣ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ, ᎢᏣᏚᎵᏍᎨᏍᏗ ᎢᏣᏙᎴᎰᎯᏍᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏅᏍᏙᏍᎨᏍᏗ ᎦᏬᏂᎯᏍᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎤᏣᏘ ᎤᎾᏕᏯᏔᏁᎮ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎡᏂᏳᏉ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎾᎥ ᏚᎾᎴᏂᎴ ᏗᎬᏩᏔᎷᎩᏍᎩ ᏧᎾᏄᏩᎢ;\nᏍᎩᏴ ᎢᎦ ᏒᎮᏱᏣ, ᎤᎴᏫᏍᏔᎾ ᎦᏃᎸᎥᏍᎬ ᎡᏝᏪᎯ ᏃᎴ ᎤᎦᏃᏩ ᏄᎵᏍᏔᎾ, ᎬᏂᎨ ᎤᏍᎪᎸ ᏌᏌ ᏙᏱ ᎡᎶᎯ ᏚᏘᏅᏎ ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ.\nᎾᏄᎾᏍᏗ ᎠᏂᏣᏗ ᏂᎬᎾᏛᎢ.\nᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏥᏲᏏᏍᎩ ᎪᎯ ᎨᏒᎢ; ᏙᏓᏦᎸᏏᏰᏃ. ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏣᏠᏱᎯ ᎪᎯ ᎨᏒᎢ; ᏛᏥᏰᏥᏰᏃ.\nᎢᏳᏃ ᎩᎶ ᏚᎸᏫᏍᏓᏁᎸ ᏱᏁᎬᏩᏍᏗᏉ ᎾᎿ ᎤᏁᏍᎨᎲᎢ, ᎾᏍᎩ ᎠᎦᎫᏴᎡᏗ ᎨᏎᏍᏗ.\nᎢᏗᎦᏔᎭᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎤᎷᏨᎢ, ᎠᎴ ᎢᎩᏁᎸ ᎢᎪᎵᏍᏗᏱ, ᎾᏍᎩ ᎡᏙᎵᏍᏗᏱ ᎾᏍᎩ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏥᎩ; ᎠᎴ ᎾᏍᎩ ᎡᏗᏯᎠ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ. ᎾᏍᎩ ᎯᎠ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏫᎾᏍᏛᎾ ᎬᏂᏛ.\nᎿᏉᏃ ᏧᏙ ᏓᏳᎾᏓᏅᏒᎩ ᎤᏛᎪᏗ, ᎯᎠ ᏅᏓᏳᏂᏪᏒᎩ, ᏣᎬᏫᏳᎯ, ᎬᏂᏳᏉ ᎯᎨᏳᎢ ᏥᎩ ᎤᏢᎦ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏗᏐᎢ ᏙᏗᎦᏚᎲ ᏫᏗᎶᎯ, ᎾᎿ ᎾᏍᏉ ᎦᎵᏥᏙᏂᏙᎸᎭ; ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎠᎩᎷᏥᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎦᏅᎾ; ᎠᎴ ᎾᏍᎩ ᎤᎵᏁᏨ ᎾᏍᎦᏅᎾ, ᎠᎴ ᏚᏳᎪᏛᎢ, ᎠᎴ ᎣᏏᏳ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᏦᏩ ᎿᏉ ᎠᏲᎱᏍᎨᎢ, ᎤᏁᎢᏍᏔᏁ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏓᏅᏍᏗᏱ; ᎠᎴ ᏧᏁᏤ ᏧᎪᎳ ᎤᎬᏩᎵ.\nᏔᎵ ᎢᏯᏅᏓ ᏚᎵᏰᎵᏙᎴ ᏭᏂᎷᎯᏍᏗ ᏣᎳᎩᏱ ᎠᏰᎵ, ᏂᏓᏓᎴᏂᏍᎨ ᏄᏯᎩ ᎤᎾᎴᏫᏍᏔᏁ ᏚᎾᎦᏙᏍᏔᏁ ᎠᎾᏛᏁᎵᏍᎩ, ᏩᏏᏓᏂ ᎦᏚᎲ.\nᏚᎨᏓᎵᏴᏅ ᏂᎦᏗᏳ ᏗᎧᎵᎢᏍᏗ ᎨᏎᏍᏗ, ᏙᏓᎸᏃ ᎠᎴ ᏚᏌᎯᎸ ᏂᎦᏗᏳ ᎡᎳᏗᎭ ᎢᏗᎬᏁᏗ ᎨᏎᏍᏗ, ᏧᏓᏥᏃᏍᏈᏗᏰᏛᏃ ᎨᏒ ᏗᎦᏥᏃᎯᏍᏙᏗ ᎨᏎᏍᏗ, ᎤᏲᏃ ᏕᎦᏅᏅ ᎬᎾᏕᏍᎩ ᎢᏗᎬᏁᏗ ᎨᏎᏍᏗ.\nᎠᏰᎵ ᎠᏴᏫᏯ, ᎣᎦᏤᎵᎪ ᏙᏰ ᎠᎯ.\nᎠᎬᏱᏗᏣ ᎠᏍᏆᏚᎸ ᏍᏉᏪᎳᏁᎸᎯ.\nᎠᏯ ᏃᎴ ᏫᎵ ᏓᏨᏍᏆᏂᎪᏔᏂ.\nᎢᎸᎯᏢᏃ ᎠᏓᏁᎸ ᎢᏥᏴᎯᎮᏍᏗ, ᎢᎬᏱ, ᏅᏩᏙᎯᏯᏛ ᎡᎮᏍᏗ ᎠᏂ ᎠᏓᏁᎸᎢ, ᎢᏣᏗᏍᎨᏍᏗ.\nᎢᎦᏛᏍᎩᏂ ᎠᏂᏆᎵᏏ ᏗᏂᏅ ᏭᏂᎶᏒᎩ, ᎠᎴ ᏫᏚᏂᏃᏁᎸᎩ ᏥᏌ ᏄᏛᏁᎸᎩ.\nᎠᎩᎨᏳᎯ ᏂᎨᏒᎾ ᎥᏝ ᏱᏓᎧᎿᏩᏕᎪ ᎠᎩᏁᏨᎢ. ᎧᏃᎮᏛᏃ ᏥᏣᏛᎩᎠ, ᎥᏝ ᎠᏴ ᎠᏆᏤᎵᎦ ᏱᎩ, ᎠᎦᏴᎵᎨᏍᎩᏂ ᏅᏛᎩᏅᏏᏛ ᎤᏤᎵᎦ.\nᎾᎯᏳᏰᏃ ᎤᏣᏖᏍᏗ ᎠᎩᎵᏯ, ᎾᏍᎩ ᎢᎦᎢ ᎥᏝ ᎢᎸᎯᏳ ᏱᏄᎵᏍᏔᏃ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ, ᎥᏝ ᎠᎴ ᎢᎸᎯᏳ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ.\nᎠᏂᏐᎢ ᎠᏂᏯᎢ ᏚᎪᎮ ᏲᎾ ᎤᏤᏍᏙ ᎠᏎᏃ ᏦᎳᏂ ᏫᏓᎧᏁ, ᎠᏓᏅᏖᏍᎨ ᏄᎵᎮᎵᏍᏛ ᎡᎶᎯ ᏃᎴ ᎣᏍᏓ ᏄᎵᏍᏔᏁᎸ ᏍᎩᎾᎾ ᎤᏓᏅᏘ ᎨᏒ ᎡᎲ ᏏᏆ.\nᎠᎬᏴᎵ ᎤᏃᏕᎾ ᎤᏁᎢᏍᏔᏁᎴ ᏁᏆᎸᎢ.\nᏥᎦᏔᎲᎩ ᎠᏍᎦᏯ ᎦᎶᏁᏛ ᎪᎯᏳᏍᎩ, ᎿᏉ ᏂᎦᏚ ᎾᏕᏘᏴ, (ᎠᏯᎥ ᎠᏰᎸ ᎥᏝ ᏱᏥᎦᏔᎭ, ᎠᎴ ᎠᏰᎸ ᎾᏯᎥᎾ ᎨᏒ ᎥᏝ ᏱᏥᎦᏔᎭ; ᎤᏁᎳᏅᎯ ᎠᎦᏔᎭ;) ᎾᏍᎩ ᎯᎠ ᎠᎦᏘᎾᏫᏛᎲᎩ ᏦᎢᏁ ᎦᎸᎶ ᏗᎨᏒ ᏩᎦᏘᏃᎸᎩ.\nᏳᎯᏐᏓᏁᎴ ᏌᎳᏓ ᏳᎾᎵᎪᎲᎾ ᏱᎨᏎ.\nᎨᏍᏗ ᎨᏙᎲ ᎢᎪᎯᏓ ᏳᏫᏓᏥᎩᏏᏙᎳ ᎠᎴ ᏱᏓᏥᏱᏙᎵ.\nᎾᏍᎩᏃ ᏄᏪᏒ, ᎤᎬᏫᏳᎯ ᏚᎴᏅᎩ, ᎠᎴ ᎠᏥᎦᏘᏗᏍᏗ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏆᏂᏏ, ᎠᎴ ᎾᏍᎩ ᎤᎾᏅᏅᎯ,\nᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎢᏦᎵᏍᏙᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏅᏙ; ᎾᏍᎩ ᎠᏓᏅᏙ ᎯᎠ ᎢᎦᏪᏍᎩ, ᏥᏌ ᎦᎶᏁᏛ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏥᎴᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ.\nᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯᏰᎧᏂ? ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᏰᎵ ᏂᏫ, ᎠᎩᎬᏫᏳᎯᏰᏃ ᎠᏴ. ᏥᏃᎮᏍᎩ ᎤᏙᎯᏳᏒ ᎢᏯᏆᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏕᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎡᎶᎯ ᎠᎩᎾᏄᎪᏥᎸᎩ. ᎾᏂᎥ ᎤᏙᎯᏳᏒ ᎤᏂᎨᏳᎯ ᎠᎾᏛᎩᏍᎪ ᏥᏁᎬᎢ.\nᎾᏍᎩ ᏄᏪᏎ ᎤᏣᏘ ᏚᏟᎶᏍᏓᏁᎴᎢ, ᎧᏃᎮᏛ ᏚᎵᏥᏙᏁᎴᎢ, ᎾᏍᎩ ᏰᎵ ᎬᏩᎾᏛᎪᏗ ᏂᎦᎵᏍᏗᏍᎬᎢ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏍᏕᎾ Ꮎ ᏕᏍᏗᏙᎬ ᏧᏳᎪᏗ ᏨᏗᎦᏚᎭ ᏫᏍᏗᏣᎯ; ᏫᏍᏗᏴᎸᏉᏃ ᎾᎿᏂ, ᏓᏰᏍᏗᏩᏛᎯ ᏗᎦᎵᎠᏅᎯᏛ ᎠᎩᎾ ᎨᎵᏌᏕᏍᏗ, ᎾᏍᎩ ᎥᏝ ᎩᎶ ᏴᏫ ᎤᎩᎸᏔᏅᎯ ᏱᎩ; ᎡᏍᏕᎵᏌᏕᏒᎭ ᎠᎴ ᏤᏍᏓᏘᏁᏒᎭ.\nᎿᏉᏃ ᎠᏖᎵᏙ ᎠᎹ ᎤᏟᏍᏔᏅᎩ, ᎠᎴ ᎤᎴᏅᎲᎩ ᏚᏬᏑᎴᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏧᎾᎳᏏᏕᏂ, ᎠᎴ ᏚᏅᎦᎸᎡᎸᎩ ᎠᏄᏬ-ᏗᏑᎴᏗ ᎾᏍᎩ ᎤᏓᏠᏍᏛ ᎤᏩᏔᏅᎩ.\nᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᏕᎩᎸᏫᏍᏓᏁᎭ ᎠᎴ ᎦᏰᎩᏐᏢᏗᎭ ᏅᏗᎦᎵᏍᏙᏗ ᎡᏓᎵᏍᎦᏍᏙᏛ ᎬᏂᏛ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏗᏍᏕᎵᏍᎩ ᏥᎩ ᎾᏂᎥ ᏴᏫ, ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᎭ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ.\nᎣᎯᏍᏙᏗ ᎠᎵᏖᎸᏂᏍᏗ ᎤᏓᎡ ᎰᎻ.\nᎤᏂᏯᎸᏁᏃ ᎦᎸᎳᏗᏢ ᎤᎵᏍᏓᏛᎢ ᎢᏳᏍᏗ ᎨᏒ ᎤᎵᏱᎵᏕᎲᎢ, ᎯᎠ ᏂᎬᏁ ᎪᏪᎴᎢ; ᎯᎠᏲ ᏥᏌ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ.\nᎯᎠᏃ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎸᎳᏗ ᎤᏤᎵᎪᎯ ᎡᎳᏂᎬ ᎤᎾᎵᏥᏙᏂᏂᏓᏍᏗ ᎨᏎᏍᏗ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎩᎳᏃ ᎿᏉ ᏛᎵᏍᏆᏗᎵ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᏴᎸ ᎩᎶ ᎢᏳᏍᏗ ᏣᎦᏁᎶᏗ ᎠᏆᎵᏏ ᎦᏁᎸ ᎤᎵᏍᏓᏴᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎾᏍᎩ ᎬᏩᎦᏌᏯᏍᏕᎢ.\nᎯᎠᏃ ᎾᏍᏉ ᏄᏪᏎᎴ ᏭᏯᏅᏛ, ᎢᏳᏃ ᏕᎭᏕᎳᏍᏗᏍᎨᏍᏗ ᎢᎦ ᎡᎯ ᎠᎴ ᎤᏒ ᎡᎯ, ᏞᏍᏗ ᏱᏫᏘᏯᏂᏍᎨᏍᏗ ᏗᏣᎵᎢ, ᎠᎴ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎪᎱᏍᏗ ᏗᏨᏅ, ᎠᎴ ᏧᏁᎾᎢ ᎾᎥ ᎢᏣᏓᎳ; ᎾᏍᏉᏰᏃ ᏂᎯ ᏱᏮᎨᏣᏯᏅ ᎠᎴ ᏴᎨᏣᏓᏴᏏ.\n“ᎯᎠᏛ ᎾᏅᏛᏁᎰ ᏱᎾᏚᎳᏑᏝᎾ,”  ᎤᏛᏁ ᏩᎭᏯ - ᎭᎴ ᎾᏦᎯᏍᎬ. \n“ᎨᏍᏗ ᎠᎵᏍᎪᎥᏍᎩᏱᎩ ᏌᎳᏓ.\nᎾᎥᏂᎨ ᎦᏙᎩ ᏩᎦ ᏭᏃᎯᏎᎴᎢ ᏌᏌ ᏫᎵᎻ ᎤᏓᎵᏗᎩᎡᎸ, ᏂᎪᎯᎸᎾ ᏂᎦᏓ ᎠᏂᎧᏔᎮᎢ ᏩᎦ.\nᎤᏁᏔᏅᎯ ᏰᎵᏉ ᏄᎵᏂᎬᎦ ᏧᎴᏙᏗᏱ ᎡᎵᏍᎨᎢ, ᎾᏍᏉ ᎤᏲᎱᏒᎯ ᏱᎩ; ᎾᎿ ᎾᏍᏉ ᏥᏚᏓᏂᎸᏤ ᏗᏟᎶᏍᏔᏅᎯ ᎾᏍᎩᏯᎢ.\nᏤᏈᎳᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᏦᏩ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᏇᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᎳᏅᎩ.\nᎠᏎᏛ, Private Perry, ᎦᎸᎳᏗᎨ ᏱᏣᏒᏓᏅ ᎠᏓ ᏏᏛ ᏳᎵᏏᎬᎾ.\n”ᏍᎩ, ᏍᎩ, ᏍᎩ!” ᎤᏛᏁ ᏌᏌ, ᎤᎷᏍᎫᏪᎢ ᏯᏕᎰᏍᎬᎾ.\nᎩᎶ ᏱᎪᎯᏳᎲᏍᎦ ᏥᏌ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ, ᎩᎶᏃ ᏳᎨᏳᎭ ᎤᏓᎾᏄᎪᏫᏒᎯ, ᎾᏍᏉ ᎠᏥᎾᏄᎪᏫᏒᎯ ᎤᎨᏳᎯᏳ ᎨᏐᎢ.\nᎠᎴᏉᏃ ᏐᏈᎵ ᎤᎵᏓᏍᎩᏎ ᎾᏍᎩᏴ ᎭᏁᎸᏗᏍᎨ ᏣᎵᏒᏗ ᎦᎶᏇ.\nᏗᎦᏅᎯᏛ ᏗᎬᏂᎨ ᏚᏑᎦᏢᎢ, ᏧᎵᏏ ᏧᏂᏔᎸᎩᏍᏗ ᏧᎾᏯᏨᏗ ᎢᏧᏅᏁᏗ, ᏣᎵ ᏧᎾᏅᏓᏗᏍᏙᏗ, ᎪᎯᏛ ᎫᏩᎶᏐᏅ ᎤᎾᏅᏓᏗᏍᏙᏗ.\n“ᎾᎾᎲ ᏐᎢ ᏣᎳᏏᏕᎾ?”\nᏎᎦ ᎤᎴᏫᏍᏔᏁ ᏫᎵᎻ, ᏃᏗ ᏭᏓᎾᏫᏛᎮ.\nᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏄᏛ'ᏁᎴᎢ ᎤᏲᎱᏒ ᏥᏚᎴᏔᏁᎢ, ᎠᎴ ᎤᏩᏒ ᎠᎦᏘᏏᏗᏢ ᏧᏪᎧᏁᎢ ᎦᎸᎳᏗ ᏗᎨᏒᎢ,\n”ᏣᏤᎵ ᎨᏎᏍᏗ ᎤᏪᏥ.\nᎠᏎᏃ ᎢᏨᏔᏲᏎᎭ ᎢᏨᏰᎳᏗᏙᎲ ᎾᏆᏓᎾᏰᏍᏛᎾ ᎢᏯᏆᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏯ ᎾᏆᏓᎾᏰᏍᏛᎾ ᎦᏥᏴᏓᏁᏗ ᏣᎩᏰᎸᎭ ᎢᎦᏛ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎠᏓᏅᏖᏍᎬ ᏓᏂᎧᎿᏩᏗ ᏥᎪᎨᎵᏎᎭ.\nᏣᏂᏃ ᏗᏓᏬᏍᎩ ᎤᎾᏄᎪᏨ ᏅᏓᎬᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎾᏁᎷᎩᎡᎭ, ᎠᎾᏁᎷᎩᏍᎩᏃ ᎬᏍᎦᎢᏍᏓᎩ ᏓᏂᏂᏱᎭ.\nᎾᏍᎩᏴ ᏚᏂᎦᏘᎸᏎ ᎠᏂᏍᎦᏯ, ᏚᏂᎵᏒᎮ ᏚᏅᏍᎦᎸ ᎦᎷᏯᏍᏘ.\nᎠᏂᏯᏫᏍᎩᏃ ᎬᏩᏘᎾᏫᏛᎮ ᏫᎬᏩᏴᏔᏁ ᎤᎬᏫᏳᎯᏱ ᎠᏓᏁᎸᎢ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏣᏥᎳᏫᏤᏗᏱ, ᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᏫᏚᏂᏯᏅᎮᎢ.\nᎤᏠᏱᏃ ᏧᎸᏫᏍᏓᏁᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏁᎸ ᎤᏪᏅᎩ, ᎠᎴ ᏚᎸᏫᏍᏓᏁᎸᎩ; ᏚᏂᎸᏫᏍᏓᏁᎲᏰᏃ ᏗᎦᎵᏦᏙᏗ ᏗᏃᏢᏍᎩ ᎨᏒᎢ.\nᎠᎴ ᎡᏂᏗ, ᎠᎴ ᏈᎵᎩ, ᎠᎴ ᏆᏙᎳᎻ, ᎠᎴ ᎹᏚ, ᎠᎴ ᏓᎻ, ᎠᎴ ᏥᎻ ᎡᎵᏈ ᎤᏪᏥ, ᎠᎴ ᏓᏗᏯ, ᎠᎴ ᏌᏩᏂ ᎠᎨᎾᏂᏗ,\nᎣᏍᏓ ᏑᎾᎴ!\n“ᏌᎳᏓ,” ᎤᎵᏰᏔᏁᎢ.\nᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᎾᏂᎥ ᎤᏂᎯ ᎨᏥᏁᏗ ᎨᏎᏍᏗ; ᏄᏂᎲᎾᏃ ᏥᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏂᎲ ᎨᏥᎩᎡᏗ ᎨᏎᏍᏗ.\nᏄᎬᏫᏳᏒᏃ ᎠᏫ-ᏗᎦᏘᏯ ᎦᎾᏄᎪᏥᎸᎭ ᎡᏥᏅᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗ ᎠᎵᏍᏚᎶ ᎠᏍᎪᎸᎩ ᏂᎨᏒᎾ.\nᏕᏨᏰᎷᎦᏰᏃ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓ Ꮒ-ᎸᎢᏍᏗ ᎠᏛ-ᏳᎨᏗ ᎨᏒ ᎬᏗᎭ; ᏌᏉᏰᏃ ᎠᏍᎦᏯ ᏗᏣᏨᏍᏗᏱ ᏂᏨᏴᏁᎸ, ᎾᏍᎩ ᎤᎵᏏᎾᎯᏍᏗ ᎠᏛ ᎢᎦᎦᏛ ᎦᎶᏁᏛ ᏫᏗᏨᏲᎯᏎᏗᏱ.\nᎾᏍᎩᏍᎩᏂ ᎢᏳᏍᏗ ᏞᏍᏗ ᏗᏧᎪᏔᏅᎩ ᎠᏏᏉ ᏄᏍᏆᎸᎲᎾ, ᎬᏂ ᎤᎬᏫᏳᎯ ᎦᎷᏨᎭ, ᎾᏍᎩ ᎢᎦ ᎦᏛ ᏥᏙᏓᎦᏁᏄᎪᏫᏏ ᎤᎵᏏᎬ ᏗᎬᏍᎦᎵ ᏥᎩ, ᎠᎴ ᎬᏂᎨᏒ ᏂᏙᏓᎬᏁᎵ ᏧᏂᎾᏫᏱ ᏄᏍᏛ ᏕᎾᏓᏅᏖᎸᎢ; ᎿᏉᏃ ᎾᏂᎥ ᎨᏥᎸᏉᏙᏗ ᎨᏒ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᏍᏗ.\nᎠᎴ ᎤᏂᏍᏕᏲᏅ ᎠᎵᏍᏚᎶ ᏧᏣᏲᏍᏗ ᎪᏢᏔᏅᎯ, ᎤᏂᏍᏚᎳᏁᎢ, ᎠᎴ ᎦᎾᏍᏓ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᎾᏒᎦᎳᏗᏍᏔᏁᎢ; ᎠᎴ ᏓᎾᎵᏂᏆᏅᏁᎮ ᎠᎴ ᎠᎾᏕᎰᏗᏍᎨᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎢᏨᏲᎵᎦ, ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ.\n”ᎠᏎ ᏍᎩ ᏂᎦᏥᏯᏛᏁᎰ.” \n”Ꮒ,” ᏧᎵᎢᏍᏙᏴᏗ ᏄᏪᏎ, ᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ ᎭᏗ.\nᎩᎶᏃ ᎠᏂ ᏅᏲᎯ ᎠᏢᏨᎭ ᏓᏳᏐᏅᏂ, ᎩᎶᏃ ᎤᏐᏅᎭ ᏓᏳᏪᏓᏪᏔᏂ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏲ ᎤᎾᏓᏅᏔᏩᏕᎩ, ᏛᎨᏥᏄᏬᎯᏍᏔᏂᏰᏃ.\nᏚᏟᏂᏆᏅᏁ ᏃᎴ ᎤᏓᏙᎵᏍᏔᏁᎢ.\nᎤᏛᎦᏁ ᎠᏥᎸᏉᏗᏍᎬ ᏫᎵᎻ.\nᏂᎯᎾᎲ!\nᎠᎬᏓᎨᏂᏃ ᏚᏙᎥ ᎪᏪᎸᎩ, [ᎯᎠ ᏂᎬᏅᎩ] ᎤᏕᎵᏛ ᎨᏒᎢ, ᏓᏓᎶᏂ ᎡᏆ, ᎤᏂᏁᎫᏥᏛ ᎠᏂᎨᏴ ᎤᏂᏥ ᎠᎴ ᎤᏂᏆᏘᏍᏗ ᎡᎶᎯ ᎡᎯ.\nᏌᏗᏏᏃ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ, ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏗᏓᏅᏙ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏧᏪᎯ ᏥᎩ, ᎠᎴ ᎦᎵᏉᎩ ᏃᏈᏏ ᏧᏪᎯ ᏥᎩ; ᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎬᏃᏛ ᏥᎨᏦᏎᎭ, ᎠᏎᏃ ᏣᏲᎱᏒᎯᏉ ᏥᎩ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏗᏬᎪᏙᏗᏱ ᎠᎩᏰᎸᎭ ᎡᎶᎯ ᎠᎩᎷᏥᎸ, ᎾᏍᎩ Ꮎ ᎾᏂᎪᏩᏘᏍᎬᎾ ᎤᏂᎪᏩᏛᏗᏱ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏂᎪᏩᏘᏍᎩ ᏗᏂᎨᏫ ᎢᏳᎾᎵᏍᏙᏗᏱ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏔᏯ ᎠᎴ ᏌᏙᏂ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏟᎯᏳ ᏂᎯ.\nᏅᎩᏦᏁᏃ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏕᎦᏍᎩᎸ ᏣᏂᏅᎩ, ᏚᎾᎵᏯᏍᏚᏅᎩ, ᎠᎴ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ ᎤᏁᎳᏅᎯ,\nᎤᎩᏨᏛᏃ ᎤᏂᏣᏘ ᎥᏓᎵ ᎢᏍᎪᎾ ᏅᏛᏂᏙᎾᎢ, ᎤᎾᏙᎴᎰᏒ ᏅᏩᏓᎵ ᏥᏳ ᎾᏔᎸᎾ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎬᏩᏍᏓᏗᏙᎯ ᎤᎾᏦᏔᏅᎯ, ᎠᎴ ᏥᏌ ᏂᏚᎵᎪᏁᎸᎾ ᎨᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏳᎯ ᎤᎾᏣᏅ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏅᏒ ᎤᎾᏂᎩᏒᎢ;--\nᎿᏉᏃ ᎢᏳ ᎩᎶ ᎯᎠ ᏂᏥᏪᏎᎸᎭ, ᎬᏂᏳᏉ ᎠᏂ ᎦᎶᏁᏛ; ᎠᎴ ᎬᏂᏳᏉ ᎾᎿᏂ; ᏞᏍᏗ ᎢᏦᎢᏳᏅᎩ;\nᎢᏥᏯᏫᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᏞᏍᏗ ᎤᏓᎴᎾᏍᏗᏱ ᏫᏥᎾᏄᎪᏨᎩ; ᎠᏓᏅᏙ ᎤᏙᎯᏳᎯ ᎤᏛᏅᎢᏍᏗ, ᎤᏇᏓᎸᏍᎩᏂ ᎠᏩᎾᎦᎳᎯᏳ.\nᎯᎠ ᎾᎩᏪᏒ, ᏕᎦᎳᏑᎳᏍᎪᎢᏃ ᏃᎴ ᏔᎵᏍᎪ ᎢᏴ ᏕᎦᏎᎯᎰ ᏗᎬᏆᎳᏑᎵ ᏃᎴ ᏍᎦᏫᏍᏓ ᎤᏂᎬᏫᏳ.\nᏗᏨᏂᏗᏳ ᎨᏒ ᏕᏥᏍᏕᎸᏙᏗᏍᎨᏍᏗ ᏗᏣᏓᏅᏙᎩ.\nᎿᏉᏃ ᎤᏴᎸ ᎤᎬᏫᏳᎯ ᏚᎦᏔᏂᎸ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ, ᎤᎪᎮ ᎾᎿ ᎠᏏᏴᏫ ᏄᏄᏩᎥᎾ ᎨᏎ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏄᏬᏍᏗ.\nᎦᎸᎳᏗᏣ ᏫᏚᎧᎾᏁ ᏫᎵᎻ.\nᏚᏖᏅᏎᏃ ᏈᏓ ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ, ᎠᎴ ᎤᎴᏅᎮ ᎤᏣᏘ ᎤᏕᏯᏔᏁᎴᎢ, ᎠᎴ ᎤᏣᏘ ᎡᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ;\nᎯᎪ ᏑᎾᎴ ᎠᎹ ᏚᏬᏚᎢᏍᏕ ᏂᎦᏓ ᏚᏏᎳᏛ.\nᏧᏍᏆᏴᏍᏗ ᎤᏲᎯᏍᏔᏅ ᎨᏎ ᏚᎷᏫᏍᏔᏁᎲ ᏃᎴ ᎯᎸᎯᏨ ᏪᏙᎮ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙᏃ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏯᏃᎩᏳ ᎠᎹᏟ ᎠᏅᏍᎪᎢ ᎠᎴ ᎠᎾᏓᏙᎵᏍᏗᏍᎪᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏆᎵᏏ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ; ᏂᎯᏍᎩᏂ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᎾᎵᏍᏓᏴᎲᏍᎪ ᎠᎴ ᎠᎾᏗᏔᏍᎪᎢ.\nᎡᎾᏰᏃ ᎤᏁᏨᎯ ᎨᏒᎩ ᎠᎦᎸᎢᏛ ᎠᎦᏘᏅᏍᏗᏱ ᎧᏱᏆ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᏧᏪᏅᏒᎢ.\nᎨᏍᏗ ᏳᏣᏅᏕ ᎪᎰᏍᏗ ᎠᏛᏗ.\nᎠᏎ ᏗᎩᎸᏫᏍᏓᏁᏗ ᏅᏛᎩᏅᏏᏛ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᏏᏉ ᎢᎦ ᏥᎩ; ᎡᏃᏱ ᏓᏯᎢ, ᎾᎯᏳ ᏰᎵ ᎩᎶ ᏗᎬᏩᎸᏫᏍᏓᏁᏗ ᏂᎨᏒᎾ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎥᏝᏰᏃ ᏱᏥᎦᏔᎭ ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᎢᏣᏤᎵ ᎤᎬᏫᏳᎯ.\nᎠᏆᎵᏏᏃ ᎤᎪᎲ ᎤᏍᏆᏂᎪᏎ ᏂᏚᏪᏑᎴᎥᎾ ᎨᏒ ᎠᏏᏉ ᏄᎵᏍᏓᏴᏅᎾ.\nᎾᎯᏳᏃ ᎢᎦ ᎥᏝ ᎪᎱᏍᏗ ᏱᏍᎩᏯᏛᏛᎲᏍᎨᏍᏗ. ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎠᎦᏴᎵᎨ ᎡᏥᏔᏲᏎᎮᏍᏗ, ᏓᏉᏙᎥ ᎢᏨᏗᏍᎨᏍᏗ, ᎠᏎ ᎡᏥᏁᏗ ᎨᏎᏍᏗ.\nᎤᎩᏨᏓ ᎤᎧᎭᏕ.\nᎨᏍᏗ ᎤᏩᏌ ᎤᏕᎶᎰᏒ ᏱᎨᏎ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎯᎠ ᏂᎬᏅᎪᏪᎳ; ᎠᏆᏤᎵ ᎦᎵᏦᏕ ᎠᏓᏙᎵᏍᏙᏗᏱ ᎦᎵᏦᏕ ᏚᏙᎡᏍᏗ; ᎠᏎᏃ ᎯᎠ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᏂᏨᏁᎸ.\nXX. ᎢᏳᏪᏅᏍᏗ ᎤᎵᎪᏅᏔᏅᎢ  \nᏤᎩ, ᏃᎴ ᎠᏧᏣ ᏩᏏᏓᏂ - ᏧᏬᏗᎨ ᏧᏬᏍᎩᎵ ᏚᎾᎵᏍ. ᏇᏚᎬ, ᎤᏛᏐᏅ ᏣᎵ ᎤᏁᎦ ᎠᎭᏄᏮ.\nᎠᎴ ᏧᏂᎦᎵᏴᏓ ᏌᎪᏂᎨ ᎠᏑᏫᏍᏙᏗ ᏃᎴ ᎤᏥᎸ ᏚᏂᏫᏒ, ᎠᏓᎸᏃᏗᏍᎩ ᏚᏍᏔᏅᏅ, ᎦᎸᎶ ᏃᎴ ᎡᎶᏚᏦᎯᏍᏛ ᎢᏳᏓᏅᎯᏓ, ᎯᎸᎯᏳ ᎠᎩᎪᎲ ᏱᎨᏒᎾ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏄᏍᏛ ᏥᏌ ᏚᏁᏤᎸ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ, ᎠᎴ ᎣᏍᏛ ᏄᏅᏁᎸᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ.\nᏚᏓᏅᎡᎸᎩᏃ, ᎠᎴ ᎦᏚᎲ ᎤᏄᎪᏨᎩ, ᏇᏗᏂᏱ ᏭᎷᏨᎩ, ᎠᎴ ᎾᎿ ᎤᏒᎸᎩ.\nᏂᎦᏗᎹᏏ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏱᏄᏍᏗ?\nᏦᏩᏃ ᎠᏰᎸ ᎤᏁᏒ ᎤᏪᏣᏄ ᎶᏔᏁ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏄᏬ ᎤᏁᎬ;\nᎨᏍᏗ ᏱᏚᏓᏟᏴ ᏲᎾ, ᏐᏉ ᎤᏦᏔᎮ.\nᎠᏎᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎢᏳᏩᏂᏌᏛ ᎠᏴ ᎾᏆᏍᏛ ᎾᏆᏍᏗ; ᎠᎴ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎥᎩᏁᎸᎯ ᏥᎩ, ᎥᏝ ᎠᏎᏉᏉ ᏱᏄᎵᏍᏔᏅ; ᎤᏟᏰᏃ ᎢᎦᎢ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎡᏍᎦᏉ ᎾᏍᎩ Ꮎ ᎾᏂᎥᎢ; ᎥᏝ ᏍᎩᏂᏃᏅ ᎠᏴ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏗᎩᎧᎿ ᏩᏗᏙᎸᎯ.\nᎿᏉᏃ ᎤᏍᏆᎸᎮ ᎾᎪᏔᏅᎾ ᎨᏒ ᎦᏚ ᎠᎩᏍᏗᏱ, ᎾᏍᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᎯᏍᏗ ᎨᏒᎢ.\nᎯᎪ ᎢᏳᎳ ᏳᏚᎵ ᏧᏨᏉᏓᏁᏘ ᏗᏂᏲᏟ, ᎬᏂᎨᏒ ᏂᏕᎬᏁᎮ ᏚᏁᎸᎲ ᎦᏐᎯ ᏃᎴ ᏕᎦᏄᎳᏥᏴ ᎦᏚᎢᏣ ᏚᏇᏄᎩᏒ ᎤᎪᎸ ᎢᏴ ᏲᎾ.\nᎾᎯᏳᏃ ᏗᎦᏃᏣᎵ ᎠᏴᎩ ᎤᏂᎧᎮ ᏆᎳᏆᏧᏙᎢᏛ.\nᎠᏚᏓᎴᏓ ᎠᏆᏓᎾᏛᎢ.\n“ᎯᏁᏒᎲᏛ ᎤᏓᏍᏗᏰᏕ ᏫᎵᎻ.\n”ᏍᎦᏃᎳ, ᏍᎦᏃᎳ!” ᎤᏛᏁ ᏌᎳᏓ.\nᏥᏌᏃ ᏧᏓᎿᏩᏛ ᎦᏁᎲᎩ ᎤᏄᎪᏨᎩ, ᎤᏍᏆᎷᎪ ᏚᏙᎥ ᎤᎷᏨᎩ, ᎾᏍᎩ ᎪᎵᎦᏓ ᏚᏙᎥ ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏅᏗᏍᎬᎢ;\nᏆᎴᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ, ᎦᏙ ᎤᏍᏗ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸ? ᎠᏎᏃ ᎤᏟᏉ ᎢᏯᏍᏓᏯ ᎤᏁᎷᏁᎢ, ᎯᏯᏛᎥᎦ, ᎤᎾᏛᏁᎢ.\nᎠᎴᏬ ᏥᏐ ᏚᏬᏁᏔᏅᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎡᎶᎯ ᎢᎦ ᏥᏯᏘᏍᏓᏁᎯ; ᎩᎶ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ ᎥᏝ ᎤᎵᏏᎬ ᏱᎦᏰᏙᎮᏍᏗ; ᎠᏛᏂᏗᏍᏙᏗᏍᎩᏂ ᎢᎦ ᎤᏤᎵᎦ ᎨᏎᏍᏗ.\nᎤᏩᏙᎯᏴᏓ ᎨᏎᏍᏗ ᎮᎲᎢ, ᏫᎵᎻ.\nᎢᏳᏰᏃ ᏦᏑᏩ ᏱᏚᏁᎴ ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ, ᎥᏝ [ᎤᏁᎳᏅᎯ] ᎣᏂ ᏱᎬᏩᏁᎢᏍᏔᏁ ᏅᏩᏓᎴ ᎢᎦ.\nᎩᏥ, ᏱᏣᏚᎵᎭᏍᎪ ᏍᎩᎾᎾ ᎢᏣᏛᏁᏗ?”\nᎦᏙᏃ ᎥᏆᎫᏴᎡᏗ ᎨᏎᏍᏗ? ᎯᎠ ᎾᏍᎩ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎵᏥᏙᎲᏍᎨᏍᏗ ᏧᎬᏩᎶᏗ ᏂᎨᏒᎾ ᎢᏯᏋᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ; ᎾᏍᎩ ᎤᏲ ᎢᏯᏆᏛᏁᏗᏱ ᏂᎨᏒᎾ ᏄᏍᏛ ᎠᏆᏒᎦᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᏒᎢ.\nᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏁ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙ ᏗᎩᎾᏓᏛᏙᏗ ᏂᎯ ᏥᏌ, ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ? ᎬᏁᏤᎭ, ᎤᏁᎳᏅᎯ ᎬᏁᎢᏍᏓᏁᎭ, ᎾᏍᎩ ᏍᎩᎩᎵᏲᎢᏍᏙᏗᏱ ᏂᎨᏒᎾ.\nᎾᏍᎩᏯ ᎡᏆᎭᎻ ᏧᏬᎯᏳᏁ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏚᏳᎪᏛ ᏥᏄᏛᏁᎶ ᏣᏥᏰᎸᎾᏁᎴᎢ.\nᎯᎠᏃ ᏂᏚᏪᎭᎸᎩ; ᎦᎪ ᎯᎠ ᏓᎦᏟᎶᏍᏗ, ᎠᎴ ᎦᎪ ᎠᏥᏃᎮᎭ ᎯᎠ ᏥᎪᏪᎳ?\nᎤᏴᏍᏗᏍᎩᏂ ᎠᎵᏍᏓᏴᏗ ᏧᎾᏛᎾᏯ ᎤᏁᎵᏍᏓᏴᏙᏗ ᎨᏐᎢ, ᎾᏍᎩ Ꮎ ᎤᏂᎩᏌᎲ ᎢᏳᏍᏗ ᎬᏩᎾᏙᎴᎰᎯᏍᏗ ᎨᏐ ᎣᏍᏛ ᎨᏒ ᏄᏍᏛᎢ, ᎠᎴ ᏄᏍᏛ ᎤᏲ ᎨᏒᎢ.\nᎠᏴᏰᏃ ᎠᏆᏍᏗᎧᏂ ᎣᎩᏅᏏᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎥᏝ ᏰᎵ ᎠᏥᏅᏏᏛ ᎦᏴᏉᏎᏗ ᏱᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏲ ᏂᎦᏥᏁᎸ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᏃᎴ ᏍᏉ ᏄᏓᎴ ᎠᎪᎵᏰᏍᎪ, ᏱᏣᏕᎶᎰᏒᎾ ᏱᎩ -- ᎦᏓ.\nᎥᏝ ᎩᎶ ᏰᎵ ᎠᏂᏔᎵ ᎬᏩᎾᏝᎢ ᎪᎱᏍᏗ ᏱᏙᎬᏛᏂᏏ, ᏱᎠᏍᎦᎦᏰᏃ ᏌᏉ ᏱᏅᎨᏳᎭᏃ ᏐᎢ, ᎠᎴ ᏱᏙᎤᏂᏴᎭ ᏌᏉ ᏱᎦᏂᏆᏘᎭᏃ ᏐᎢ. ᏝᏍᎩᏂ ᏰᎵ ᎤᏁᎳᏅᎯ ᎠᎴ ᎹᎹᏂ ᎪᎱᏍᏗᏱᏙᎨᏣᏛᏂᏏ.\nᎾᎨ ᎢᏴ ᎤᎨᏓᎵᏴ ᏥᏔᎦ ᏥᏂᎦᏪᏍᎪ ᎢᏳᏍᏗ ᏓᏳᏰᏨ.\nᎯᎧᏔᎮᎢᏧ, ᎯᎪ ᎢᎦ ᎠᎴᏂᏍᎩ -  ᎧᏃᎮᏓᏉ ᏱᎩ -  ᏐᏉ ᎢᎦ ᎤᏕᏘᏴᏌᏗᏒ ᎢᏓᎵᎮᎵᏍᏗᏍᎪ ᎢᎪᎯᏓ ᎢᏤᎯ ᏕᏧᎬ.\nᎾᏍᎩ ᎹᏓᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎵᏫ ᎤᏪᏥ ᎨᏎᎢ, ᎺᎵᎦᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏣᎾ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᎨᏎᎢ,\nᎠᎴ ᏞᏍᏗ ᎩᎶ ᎡᏙᏓ ᎡᏦᏎᎸᎩ ᎠᏂ ᎡᎶᎯ; ᎠᏏᏴᏫᏉᏰᏃ ᎢᏥᏙᏓ, ᎾᏍᎩ ᎦᎸᎳᏗ ᏨᏤᎭ.\nᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎢᏥᏔᏲᎯᎮᏍᏗ, ᎢᏣᏓᏙᎵᏍᏗᏍᎬᎢ, ᎢᏦᎯᏳᎲᏍᎨᏍᏗ, ᎢᏥᏩᏘᏍᎨᏍᏗ.\nᏂᎦᏗᏳᏰᏃ ᏧᏓᎴᏅᏛ ᏚᎳᏍᎬ ᎭᏫᏂᏗᏢ ᎢᎬᏁᎸᎯ. ᎠᏎᏃ, ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎭᏫᏂᏗᏢ ᎢᏯᎬᏁᎸᎯ ᏣᏗᎭ,, ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ ᎾᎦᏠᏯᏍᏛᎾ ᎨᏒ ᎾᏍᎩ Ꮎ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎭᏫᏂᏗᏢ ᎢᏳᏩᏁᎸᎯ.\nᎦᎸᎳᏗ ᎢᏣ!\nᎣᏂᏃ ᎯᏍᎩᏧᏈ ᎤᎶᏒᏍᏗ ᎢᏯᏂᏛ ᎠᎾᎵᏅᏟ ᎢᏧᎳᎭ ᎬᏩᎪᎮᎢ; ᎾᏍᎩᏃ [ᎬᏩᎪᎲᎯ] ᎤᏟ ᎢᏯᏂᏛ ᎠᎾᎴᏂᏙ ᎠᏏ ᎪᎯ ᎨᏒᎢ, ᎢᎦᏛᏍᎩᏂᏃᏅ ᏚᏂᎵᏅᏨ.\nᎤᏛᏐᏅᎯ ᏞᏍᏗ ᏱᎬᏍᎪᎸᏁᏍᏗ, ᎯᏍᏗᏰᏗᏍᎨᏍᏗᏍᎩᏂ ᎠᎦᏴᎵᎨ ᎾᏍᎩᏯᎢ, ᎠᏂᏫᏅᏃ ᎢᏣᏓᏅᏟ ᎾᏍᎩᏯᎢ,\nᏌᏩᏂᏃ ᏈᏓ ᏚᏬᎡᎢ.\nᏍᎩᏴ ᎤᏒᎯ ᎤᎾᎦᏐᏍᏔᏅᎯ ᎠᏂᏍᎦᏰᎬᏍᏔ.\nᎨᎵᎠ ᏰᎵᏉ ᏓᏗᏍᏆᏂᎪᏔᏂ ᎬᏅᎢ ᏫᎵᎻ.\nᏥᎷᏏᎵᎻᏃ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎠᏂᏯᏫᏍᎩ ᎿᏉ ᏚᎾᏚᏫᏍᏕᏍᏗ, ᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᎩ ᎤᏲᎢᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎯᏗᏒᎢ.\n“ᎭᏩ ᎠᎵᎮᎵᎩ ᏓᏆᏙᎠ, ᎤᏛᏁ ᎠᎬᏱ ᎧᏅᏂᏍᎩ.\nᏈᏓᏃ ᏚᎴᏅ, ᏚᏍᏆᎸᏔᏁ ᎠᏤᎵᏍᏛ ᏭᎶᏎᎢ; ᎤᏗᏍᏚᏅᏃ ᏚᎪᎮ ᏙᎴᏛ ᏗᏄᏬ ᎤᏁᎳᎩ ᎢᏴᏛ ᏙᎦᏁᎢ, ᎤᏓᏅᏎᏃ ᎠᏍᏆᏂᎪᏍᎨ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸᎢ.\nᎡᎾᏃ ᎠᎴ ᎦᏱᏆ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᎤᏬᏂᏒᎯ ᎢᎾᎨ ᎤᎷᏤᎴ ᏣᏂ ᏤᎦᎳᏯ ᎤᏪᏥ.\nᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᏥᏌ ᎾᏎᎵᏗ ᏧᎶᏎ ᎾᏍᎩ ᎨᎵᎵ ᏥᎦᏚᎭ, ᎠᎴ ᏣᏂ ᎤᏓᏬᎡ ᏦᏓᏂ.\nᏐᏉ ᏑᎾᎴ ᏙᏥᏩᏛᏓᏅ ᏓᎳᏚ ᎢᏯᏂ ᎤᎾᎵᏗᎩᏛ ᎬᏂᎨᏒ ᎠᎹᏳᎸᏓ ᎤᏂᎵᏦᏩᏛ, ᏯᏁᎵᏍᎬᎾ ᎤᎾᏗᏍᎦᎶᏗ.\nᎥᏝ ᎠᎴ ᎩᎶ ᏳᎵᏍᎪᎸᏓᏁᎴ ᎬᏩᏍᏓᏩᏛᏍᏗᏱ, ᏈᏓ, ᎠᎴ ᏥᎻ, ᎠᎴ ᏣᏂ ᏥᎻ ᏗᎾᏓᏅᏟ ᎤᏅᏒ.\nᏄᏛᏁᎰᎾ, ᎤᏍᎦ ᏭᎳᎩᏒ, ᎲᏲᎵᏛ ᏧᏄᏛᏁᎶ ᎢᎦᎦᏓ, ᏰᎵ ᎤᏂᏃᎮᏗ ᎤᏰᎸᏅ.\nᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎡᏥᏁᎸᏍᎪ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎨᏦᎯᏳᏅᎯ? ᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᎣᎦᏛᎦᏅᎯᎤᏅ ᏱᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎡᎲᎢ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ, ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᏕᏥᎳᏫᎨᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᏕᏣᏓᎦᏘᏗᏍᎨᏍᏗ.\nᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ; ᎠᎴ ᎾᎱᏍᏕᏒᎾ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ, ᏗᏍᏆᏂᎪᏙᏗᏱᏍᎩᏂ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ.\nᎠᏎᏰᏃ ᏅᏩᏍᏕᏍᏗᏉ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎬᏂ ᏂᎦᏛ ᎬᏩᏍᎦᎩ ᏚᎳᏍᎬ ᎭᏫᏂᏗᏢ ᏂᏕᎬᏁᎸᎭ.\nᎨᏂᏗ ᎤᏍᏗ ᎢᎬᏓ.\nᎢᎦᏛᏃ ᏅᏲᎯ ᎨᏒ ᎤᎳᎨᏯᏛᏤᎢ, ᎾᎿ ᎦᏲᎵᏳ ᎨᏒ ᎦᏓ; ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᏗᎤᎵᏰᏁᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏌᎨᎢᏳ ᎨᏒ ᎦᏓ;\nᏩᎶᏏ ᏧᎬ ᎦᎵᏙᎯ ᏂᎦᏪᏍᎬ ᎤᏛᎦᏁ ᏫᎵᎻ ᏃᎴ ᎢᏳᏓᎵᎭ ᎩᎶ ᎠᏍᏚᎲᏍᎬ ᎦᎶᎯᏍᏗ ᎠᏓᏍᏓᏴᏗ.\nᎤᏍᏗ ᏛᎦ ᏭᏩᏯᎸᏥᎴ ”ᏏᏆ,” ᎪᏪᎸ ᎾᎥᏂ, ᎩᎳᏈᏴ ᎡᎳᏗ ᏄᏛᏁᎴ, ᎤᏩᏇᏅᏔᏁᎢ ᏛᎦ, ᏫᏥ ᏭᏅᏍᏔᏁᎢ.\nᎾᏍᎩᏯᏉ ᏴᏫ ᎤᏪᏥ ᎤᏓᏅᏏᏓᏍᏗᏱ ᏄᏲᎵᎸᎾ ᏥᎩ, ᎠᏥᏅᏏᏓᏍᏗᏱᏉᏍᎩᏂ, ᎠᎴ ᎬᏅᎢ ᎤᎵᏍᎪᎸᏙᏗᏱ ᎤᏂᏣᏘ ᏗᏓᏴᏙᏗ.\nᎯᎠᏃ ᎢᏳᎵᏍᏙᏗ ᎤᏛᏁ ᎢᏤ ᎢᏳᏍᏗ ᎠᏍᎦᏯ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏳᏭᏌᎾ ᎤᏁᏝᏅ ᏁᎵᏍᎬᎢ ᏚᏣᏯᎩᏎ ᏃᎴ ᏧᏆᎶᎦ ᏓᏥᎶᏍᏛ ᎠᏍᎦᏯ ᎤᏄᏮᎢ ᏃᎴ ᎤᎦᏔᏃᎴ ᎠᎬᏱ ᏣᎪᏩᏘᏍᎪ ᎤᏬᏒᏅ, ᎤᏍᏆᏂᎪᏎ ᏃᎴ ᎤᎵᎮᎵᏤ.\n“ᏤᏍᏗ ᏣᏛᏁᎵᎭ!” \nᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᏤᎸ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ? ᎠᎴ ᎦᏙ ᏙᏓᎦᏟᎶᏍᏔᏂ?\nᎣᏍᏛᏰᏃ ᏡᎬ ᎥᏝ ᎤᏲ ᏯᏓᏛᏍᎪᎢ; ᎠᎴ ᎤᏲ ᏡᎬ ᎥᏝ ᎣᏍᏛ ᏯᏓᏛᏍᎪᎢ.\n”ᏏᏆ, ᏏᏆ!” ᎤᏛᏁ ᎰᎻ ᎤᏓᏅᏘ ᎦᏬᏂᏍᎩ, ᏃᎴ ᎤᏍᎦᏃᎵ ᎠᎢᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ, ᎠᎧᏖᏃᎮ, ᏰᎵᏍᎬᎾ ᎤᏤᎸᎮ ᏏᏆ ᎤᏍᏓᏩᏗᏒᎢ.\nᏂᎯᏍᎩᏂ ᎢᏨᎨᏳᎢ, ᎤᏣᏘ ᎦᎸᏉᏗᏳ ᎢᏦᎯᏳᏒ ᎢᏣᎵᎫᏍᏛᏗᏍᎬᎢ, ᏓᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎬᏗ ᎢᏣᏙᎵᏍᏗᏍᎬᎢ,\nᎠᏁᎵᏍᎬᏉ ᎤᎬᏫᏳ ᎠᏁᎵᏍᎨᏍᏗ, ᏤᏍᏗ ᏥᏳᎪᏗ ᏘᏃᎯᏎᎸ ᎤᏛᏅ.\nᎥᏝ ᎠᎴ ᎣᏥᏬᏂᏍᎬ ᎢᎸᎯᏳ ᎠᏎᏉ ᎠᏓᎸᏉᏙᏗ ᎨᏒ ᏲᏨᏗᏍᎨᎢ, ᎾᏍᎩ ᏥᏥᎦᏔᎭ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏲᏨᏗᏍᎨ ᏲᏧᏢᏗᏍᎨ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᎤᏁᎳᏅᎯ ᎠᎦᏔᎯ;\nᎾᎥᏂᎨ ᏭᎷᏤᎢ ᏃᎴ ᏚᎦᏙᏍᏔᏁᎢ ᏧᏆᎶᎦ ᏃᎴ ᏧᏍᏗ ᏧᏩᏂᎦᏝᏅ ᏫᏓᏳᎢᏅᏍᎨᎢ ᎠᏔᎴᎦᏒ.\nᏚᏯᎨᏤ ᏃᎴ ᏚᎦᎭᎷᏰ, ᎤᏴᏍᏘ ᎫᎵᏍᏔᏅ ᎠᏗᏔᏍᏘ ᏄᏩᏁᎴ, ᎤᏴᏍᏘ ᎠᏗᎧᏓ ᎤᎵᏑᏫᏓ ᎾᎥᏂᎨ.\nᎠᏛᎪᏗ ᎾᏂᏪᏍᎬ ᏃᏉ.” \nᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᏙᏃ ᎥᏝ ᏰᎵ ᎿᏉ ᎦᎬᏍᏓᏩᏛᏍᏗ ᏱᎩ? ᏂᎯ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎡᎳᏗ ᏓᏥᏂ ᎬᏅᎢ.\nᏦᎳᏂ ᏗᏦᎯᏍᏙᏗ ᏃᎴ ᏐᏈᎵ ᏧᏔᎾᎶ.\nᏧᏍᏆᏴᏍᏗ ᎱᎷᏣ ᎤᎩᏓᏍᏕᎯ ᎤᏲ ᎤᎾᏗᏅᏗ ᎤᏪᏙᎸ, Ꮟ ᎩᎳᎯ ᏚᎷᏫᏍᏔᏁᎮ ᎧᏅᏂᏍᎩ.\nᎾᏍᎩ ᏏᎻᏯᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎻᎾᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏓᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᏓᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏕᏫ ᎤᏪᏥ ᎨᏎᎢ,\nᎠᏫᏍᎩ ᎤᏫᏒᏎ ᎤᏤᎵ ᎤᎦᏔ; ᎤᏫᏒᏃ ᎢᎦᏛ ᏅᏃᎱᎶᏗ ᎤᎳᎨᏯᏛᏤᎢ; ᎤᎾᎳᏍᏓᎡᎴᏃ ᎠᎴ ᏥᏍᏆ ᎦᎳᏅᏛ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᎪᏁᎢ.\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏂᏚᏳᎪᏛᎾ ᎢᎬᏩᏛᏁᏗ ᏱᎩ ᎾᏍᎩ ᎤᏩᎨᏫᏍᏗᏱ ᏕᏥᎸᏫᏍᏓᏁᎸ ᎠᎴ ᎬᏂᎨᏒ ᏂᏨᏁᎸ ᎢᏥᎨᏳᏒ ᏕᎤᏙᎥᎢ. ᎾᏍᎩ ᏕᏥᏍᏕᎲᎯᏙᎸ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎠᏏᏉ ᏕᏥᏍᏕᎵᏍᎬᎢ.\nᎤᏛᎦᏁ ᏗᎾᎢᏒ ᏫᎵᎻ ᏚᎴᏁ.\nᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏅᏏᏛ, ᎤᏁᎳᏅᎯ ᎤᏪᏂᎯᏍᏗ ᎨᏒ ᎦᏬᏂᎭ; ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎤᏟᎶᏛᏉ ᎠᏓᏅᏙ ᏳᏁᎭ.\nᎠᏎᏃ ᏔᎵᎭ ᎠᎴ ᏦᎢᎭ ᎭᎾᏉ ᎠᎾᏁᎳᏗᏍᎨ ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏂᎦᏛ ᏴᏫ, ᎬᏩᎪᎲ, ᎤᏣᏘ ᎤᏂᏍᏆᏂᎪᏎᎢ; ᎬᏩᏗᏝᎣᎮᎸᏃ ᎬᏩᏲᎵᎴᎢ.\nᎾᏍᎩᏯᏃ ᎲᏂᏗᏳ ᎨᏒ ᏥᏣᏍᏆᏂᎪᏔᏅ ᎠᏆᏤᎵ ᎧᏃᎮᏛ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎠᏴ ᏓᎬᏍᏆᏂᎪᏔᏂ ᏓᎬᏳᏓᎴᏏ ᎾᎯᏳ ᎤᏓᎪᎵᏰᏗ ᎨᏒ ᎠᏍᏆᎸᎲᎭ, ᎡᎳᏂᎬ ᎤᏂᎷᏤᏗ ᏥᎩ, ᎤᏂᎪᎵᏰᏗᏱ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᏁᎭ.\nᎠᎦᏗᏓ ᎯᏢᏅ, ᏃᎴ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ.\nᎾᏍᎩᏯ ᎯᎢᎾ ᎢᏗᎦᏘ ᏕᏈᎬ ᏧᏔᏂᎩᏓ.\nᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᏴᏫ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎠᎵᏍᎪᎸᏗᏍᎬ ᎾᏍᏉ ᎤᏩᏒ ᎤᎵᏍᏕᎸᏙᏗ ᎠᏎ ᎤᎵᏍᎪᎸᏙᏗ ᎨᏐᎢ, ᎠᏍᎦᏂ ᎤᎬᏩᎵ ᎨᏒᎢ.\nᎥᎦᎷᎩᏃ ᎤᏪᏅᏒ ᏫᏓᏯᏂᏍᎪ ᏧᎵᎢ ᎠᎴ ᎾᎥ ᎢᏳᎾᏓᎳ, ᎯᎠ ᏂᏕᎦᏪᏎᎰᎢ, ᎢᏧᎳᎭ ᎢᏓᎵᎮᎵᎩ; ᎢᏥᏩᏛᎲᏰᏃ ᎤᏃᏕᎾ ᏣᎩᏲᎱᏎᎲᎩ.\nᎤᏬᏚᏨ ᎤᏓᏏᏂᏕᎾ.”\nᎬᏩᏟᏍᏗ; ᎥᎥ, ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᎧᏁᎩ ᎨᏎᏍᏗ, ᎾᏂᎥᏃ ᏴᏫ ᎠᏂᏰᎪᎩ ᎨᏎᏍᏗ; ᎾᏍᎩᏯ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎾᏍᎩ ᏂᏍᎦᏅᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎯᏁᎬᎢ, ᎠᎴ ᏣᏓᏎᎪᎩᏍᏗᏱ ᎿᏉ ᏕᎱᎪᏔᏅᎭ.\nᎠᎴ ᏫᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏬᏓᎸ ᏗᎧᏃᏗᏱ ᏐᏈᎵ ᏫᏥᎪᎥᎩ; ᎠᎴ ᎾᎿ ᎤᎩᎵ ᎠᏲᎱᎯᏍᏗ ᏚᏙᎥᎩ, ᎠᎴ ᏨᏍᎩᏃ ᎤᏍᏓᏩᏗᏒᎩ; ᎠᎴ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎾᏍᎩ ᏅᎩ ᎢᎦᏛᎯ ᎨᏒ ᎡᎶᎯ ᎾᏍᎩ ᏌᏉ ᏄᏓᎥ ᎾᎿ ᏧᏂᎯᏍᏗᏱ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎬᏗ, ᎠᎴ ᎠᎪᏄ ᎬᏗ, ᎠᎴ ᎥᎫᎩ ᎬᏗ, ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ ᎤᏂᏍᎦᏎᏗ ᏗᎬᏗ.\nᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎤᎾᎩᎶᏫᏎ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᏃᎴ ᏚᎾᎾᏏᏁᎢ.\nᏰᎵᏉ ᏱᎩ ᎠᏆᏟᏃᎮᏔᏁᎢ ᎦᎾᏌᎢ ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏛᎦᎾ, ᎨᏍᏗ ᏯᏆᏛᎦᏍᏕᎢ.\nᎢᏳᏍᎩᏂ ᎠᏴ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᏱᎬᏗ ᎠᏂᏍᎩᎾ ᏱᏗᏥᏄᎪᏫᏍᎦ, ᎿᏉᏍᎩᏂ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏥᎷᏤᎸ.\nᎤᎵᏍᏇᏚᏩᎩᏎ ᎰᎻ ᏃᎴ ᎡᎳᏗ ᏄᏩᏁᎴᎢ ᎠᏍᎪᎵ.\nᎠᎴ ᎦᏙ ᏯᏛᎶ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ ᎦᏁᎸ ᏯᏴᎭ ᎠᎴ ᎤᎿᎥ ᏯᏬᏅ, ᎢᏳᏃ ᎢᎬᏱ ᏄᎸᎸᎾ ᏱᎩ ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ? ᎩᎳ ᎿᏉ ᏯᏬᏅ ᎦᏁᎸᎢ ᎤᎿᎥᎢ.\nᏎᎦᏨ ᏚᏓᎩᏰᎢ.\nᎥᏝ ᏱᎨᏥᏩᏛ ᏅᏓᏳᎾᏨᏛ ᎤᏁᎳᏅᎯ ᎠᏂᎸᏉᏗᏍᎩ, ᎯᎠ ᏅᏩᏓᎴ ᏴᏫ ᎤᏩᏒ.\nᏯᏆᏚᎳᏃ ᏂᎯ ᏣᎩᏍᏗ ᎢᎬᏱᏃ ᏒᎦᏔ.\nᎢᏧᎳ ᎤᏂᎪᎵᏰᎡ ᎣᎳ ᏗᎦᏃᏣᏟ.\nᎥᏝᏃ ᏰᎵ ᎬᏩᏂᎭᎷᎩᏍᏗ ᏱᎨᏎ ᎠᏏᎾᏌᏅ ᎠᎴ ᎠᏓᏅᏙ ᏕᎬᏗᏍᎬ ᎦᏬᏂᏍᎬᎢ.\nᎤᏬᏑᎶᏨᎯ ᎠᎦᏎᏍᏗ ᎨᏎᏍᏗ ᎢᏳᏃ ᏑᏓᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎶᏒᏍᏕᏍᏗ, ᏌᏉᏉ ᎠᏍᎦᏯ ᎤᎾᏁᎳᏛᎯ ᎨᏎᏍᏗ.\nᎠᏃᏍᏓᏍᎪ ᏗᎦᏯᎩᏍᏗ?” \nᎠᎴ ᏣᏂ ᎤᏃᎮᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎠᎩᎪᎲᎩ ᎠᏓᏅᏙ ᏧᎴ-ᏗᏍᎪᏂᎯ ᎾᏍᎩᏯ ᏓᏳᏁᏡᏅᎩ ᎦᎸᎳᏗ, ᎠᎴ ᎾᏍᎩ ᏚᎩᎸᏨᎩ.\nᎠᏂᎶᏍᎩᏃ ᎦᎬᏩᏐᏢᏗᏍᎨᎢ, ᎠᎴ ᏓᎾᎵᏍᏛᏂᎮ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, Ᏺ, ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎯᏲᏍᏗᏍᎩ, ᎠᎴ ᏦᎢᏉᏉ ᎢᎦ ᎯᏱᎵᏙᎯ ᎭᏁᏍᎨᏍᎩ,\nᎠᎴ ᏦᎢ ᎢᏯᏂᏛ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ ᎦᏥᎪᎥᎩ ᏩᎶᏏ ᏗᎾᏤᎵᏛ, ᎢᎾᏛ ᎠᎰᎵ ᏓᏳᏂᏄᎪᏨᎩ, ᎠᎴ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎰᎵ, ᎠᎴ ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎠᎰᎵ.\nᎠᎴ ᏛᏂᎾᏄᎪᏥ, ᎾᏍᎩ ᎾᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎬᏂᏛ ᎨᏒ ᏫᏙᏛᎾᎴᏔᏂ, ᎤᏲᏃ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎤᏓᏍᏛᏗᏍᏗ ᎨᏒ ᏫᏙᏛᎾᎴᏔᏂ.\nᏐᏉ ᎢᎦ, ᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏧᎾᏗᏔᏍᏗ ᏙᏍᏔᏗᏔᏍᎬ, ᎤᏕᎶᎰᏒ Crockett ᎪᏪᎵ ᎪᏪᎸ ᏓᏂᎦᏘᎴᎬ.\nᎤᏍᎦᏃᎵ ᎠᏓᏏᏎ ᏣᎵ, ᎡᎳᏗ ᏄᏛᎾᏗᏎ ᎤᎭᏲᎲ ᎤᎶᏒ.\nᎠᏍᎦᎢᎮ ᎤᏍᏗ ᎠᏣᏗ ᎠᏎᏃ ᎾᎥᏂ ᏭᎷᏤ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥ ᎠᏣᏗ ᏂᎯ ᎢᏳᏍᏗ.\nᏫᏥᏌᏙᏯ!” \nᎾᏍᎩ ᏦᏏ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᎵᎡᏌ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏦᎵᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏓᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᎳᏱᎩᎻ ᎤᏪᏥ ᎨᏎᎢ,\nᎠᏤ ᎪᎨᏱ ᎠᎾᏕᎲᏍᎨᎢ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ ᎠᏂᏐ ᏱᏚᎾᏛᏌ.\nᎿᏉᏃ ᎬᏂᏳᏉ ᏥᎦᏔᎭ ᏂᎯ ᏂᏥᎥᎢ, ᎢᏨᏰᎳᏗᏙᎸᎯ ᎦᎵᏥᏙᎲᏍᎬ ᏥᏃᎮᏍᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ, ᎠᏆᎧᏛ ᎿᏉ ᎢᏥᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏣᎦᏟᎶᏍᏔᏅᎯ ᎨᏒᎢ, ᎥᏝ ᎦᏓᎾᏌᎲᏍᎦ ᏰᎵᏍᎨ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏄᏍᏛ ᏄᏛᏅᎢ.\n“ᎾᏍᎩ ᏧᏍᏆᏴᏍᏗ ᏛᏥᏍᏕᎸᎯ ᏔᎵᏁᎢ? \nᎡᎶᏛᏃ ᏚᏔᎳᏬᎯᏎᎴ ᏓᏯ ᎠᎴ ᏌᏙᏂ ᎠᏁᎯ; ᎠᏎᏃ ᏌᏉ ᎢᎦᎦᏛ ᎬᏩᎷᏤᎴᎢ, ᎤᎾᎵᎢᏛᏃ ᏆᎳᏍᏓ ᎤᎬᏫᏳᎯ ᎤᏂᏏᏗᏱ ᎠᏥᎦᏘᏗᏍᏗ, ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ ᎤᏂᏔᏲᏎᎴᎢ; ᎤᎾᏤᎵᎪᎯᏰᏃ ᎤᎵᏍᏕᎸᏙᏕ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎪᎯ.\nᎤᏚᎢᏍᏔᏁᎴ ᏫᎵᎻ ᎤᏍᏆᏂᎪᏙᏗ ᎬᏅᎢ, ᏚᏭᎪᏔᏁᎢ ᏄᏪᏒ ᎢᏳᏛᏁᏗ.\nᎠᏛᎯᏍᏗᏍᎩ ᎢᎾᏙ ᏓᏳᏓᎴᏅ ᎦᏓ ᏂᎦᎵᏍᏗᎭ.\nᎦᎶᏁᏛᏰᏃ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᎴᏉ ᏄᏲᎱᏒᎩ, ᎾᏍᏆᏂᎪᏗᏍᎬᎾ ᎬᏅᎢ, ᎾᏍᎩ ᎤᏍᏆᏗᏍᏗᏱ ᎦᎷᎶᎬ ᎠᏆᎵᏍᏕᎸᏙᏗ ᎢᏥᏅᎢ.\nᎠᎴ ᎤᎲᎩ ᎬᏃᏛ ᎢᏳᏩᏁᏗᏱ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎾᏍᎩ ᎬᏩᏬᏂᎯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏗᎨᏥᎢᏍᏗᏱ ᎾᏂᎥ ᎾᎾᏓᏙᎵᏍᏓᏁᎲᎾ ᎾᏍᎩ Ꮎ ᏅᎩᏗᎦᏅᏌᏗ ᏣᎦᏟᎶᏍᏔᏅᎯ.\nᎠᏦᎭᏴ ᎾᎥᏂ ᎤᏂᎾᏕᎨ ᏗᏂᎦᏘᏕᎯ ᎨᏥᎩᎡᎸ ᎦᎾᏏᏅᏍᏗ ᎧᏁᏌ ᎢᎪᎯᏛ.\nᏗᎨᏛ ᎢᏗᏢ ᏕᎦᎵᏍᏆᎵᎭ ᎠᏌᏍᏛ ᏗᎩᏂᏴᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎠᏓᏯᏅᏙᏗ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎠᎬᏗᏍᎬᎢ.\nᎤᏲᏨ ᏂᎦᏓ ᎠᎪᏨ, ᎤᏛᏅ.\nᏏ ᏯᎾᏂᎩᏍᎬᎾ ᏐᏉ ᎢᏳᏩᎬᏗ ᏚᎧᎾᏁ ᏫᎵᎻ ᎰᎻ.\nᎠᏥᎦᏘᏗᏍᏗ ᎠᏗᎾ ᎠᏎ ᎪᎱᏍᏗ ᎾᏍᎦᏅᎾ ᎨᏎᏍᏗ, ᏌᏉᏉ ᎠᏓᏰᎮᏍᏗ, ᎨᏯᏔᎯ, ᎤᎵᏏᎾᎯᏍᏗ, ᎣᏍᏛ ᏧᎸᏫᏍᏓᏁᎯ, ᏧᏓᏓᏂᎸᏣᏘ, ᏗᎬᏩᏕᏲᏗ;\nᎩᎶᏰᏃ ᎤᏩᏒ ᎠᏓᏌᎳᏗᏍᎨᏍᏗ ᎡᎳᏗ ᎢᏯᎬᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏩᏒ ᎡᎳᏗ ᎾᏓᏛᏁᎮᏍᏗ ᎾᏍᎩ ᎠᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ.\nᏥᎨᏳᎢ ᏍᎩᎾ ᎤᏛᏐᏅ ᏃᎴ ᏁᎵᏍᎬ ᎢᏥᏯᏛᎭᏁᏗ, ᏃᎴ ᎠᏉᎯᏳᎲ ᏲᎾ ᏧᏤᎵ ᎠᏂᏴᏫ ᎠᏁᎵᏍᎬᏉ ᎤᎾᏓᏘ, ᎾᏍᎩᏯ ᎠᏂᏐ ᎠᏂᏴᏫ.\nᎤᎾᎴᏅᎮᏃ ᏚᎾᏓᏛᏛᏁ ᎤᏅᏒ ᎨᏒ, ᎾᏍᎩ ᏅᏗᏛᏁᎵᏒ ᎯᎠ.\nᎢᎸᏍᎩᏃ ᏄᏬᎯᏨ ᎤᏁᏙᎸ, ᏅᏩᏙᎯᏯᏛ ᏕᎬᏩᏂᏲᏎ ᎠᎾᏓᏅᏟ ᎨᏥᏅᏏᏛ ᏗᏁᎲ ᏭᏂᎶᎯᏍᏗᏱ.\nᎢᏣᏓᏙᎵᏍᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᏙᏗᎧᏂᏍᎬᎢ, ᎾᏍᎩᏃ ᏓᏥᏌᎳᏓᏂ.\nᎤᏣᏘᏃ ᎢᏨᎨᏳᏒ ᎢᏳᏍᏗ, ᎣᎦᏝᏴᏉ ᏗᏨᏲᎯᏎᏗᏱ ᎥᏝ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏩᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᏉᏍᎩᏂ ᎣᎬᏒ ᏙᏨᏅᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎢᏨᎨᏳᎢᏳ ᎨᏒᎢ.\nᏦᎳᏂ ᏙᏱ ᏫᏓᎧᎭᏅ ᎠᏓᏅᏖᏍᎬ, ᎩᎳᏈᏴ ᎤᏬᏂᏒ. ᏥᎨᏥᏍᏚᎮ ᎠᏂᏴᏫᏯ, Cooper ᏚᎾᏗᏅᏎᎴ ᎤᏲ ᎠᏓᏴᏍᏔᎩᏍᎩ, ᎦᎸᎳᏗ ᏚᎬᏩᏝᏁ, ᎾᏍᎩᏯ ᏳᏩᏁᎦ ᏣᏈᏱᏍᎪ ᏗᎦᏓᎸᏅᎯ ᏔᎾᏏ ᏫᏍᎩ.\nᎢᏧᎳ ᎠᏂᎦᏓᎭ ᏃᎴ ᏗᏂᎴᏴᏍᎩ ᎨᏎᎢ.\nᎬᏩᎦᏘᏯᏰᏃ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏓᏍᏕᎵᏍᎩ ᎾᏂᎥ ᏴᏫ ᎤᏂᎾᏄᎪᏤᎸ,\nᎢᏯᎾᏛᏁ ᎤᏂᎬᏫᏳᎯ ᏃᎴ ᎢᎦᏓ ᎠᏂᏳᏩᏁᎦ ᎤᎾᏓᏑᏴ, ᏓᏂᏙᎵᎬ ᎠᎴ ᎤᎾᏤᎸᎲᏉ, ᎠᏂᏌᏙᏴᏍᎦ ᎠᏧᏔᏅ ᏄᏍᏛ ᎤᎾᏚᎵᏍᎬ ᎠᏂᏩᏥᏂ.\nᎦᏚᎲᏃ ᎾᏎᎵᏗ ᏧᏙᎢᏛ ᏭᎷᏨ ᎾᎿ ᎡᎮᎢ. ᎾᏍᎩᏃ ᎤᏙᎯᏳᏁ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏂᏁᏤᎢ, ᎾᏎᎵᏗ ᎡᎯ ᎠᎪᏎᎮᏍᏗ, ᏧᎾᏛᏁᎢ.\nᎤᏕᎶᎰᏎ ᎪᎱᏍᏗ ᎤᎵᏍᏔᏁᎲ ᏏᏆ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎾᏍᎩ, ᏔᎴᎲᎦ, ᎠᎴ ᏥᎮᎾ; ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ.\nᎠᏴ ᎠᏆᏓᎨᏳᏗ ᎨᏒ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ, ᏥᏌ ᎦᎶᏁᏛ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ. ᎡᎺᏅ.\nᎾᎿ ᎤᎷᏤ ᎠᎨᏴ ᏌᎺᎵᏱ ᎡᎯ ᎠᎹ ᎤᏢᎯᎴᎢ; ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏆᏗᏔᏍᏗ ᏍᎩᏁᎲᏏ.\nᎣᎦᏕᏯᏙᏗᎭ ᎬᏩᏚᏫᏛᏉ, ᎠᏎᏃ ᎥᏝ ᏲᎩᎩᎸᏍᎦ; ᎤᏪᎵᎯᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎦ, ᎠᏎᏃ ᎥᏝ ᎣᎦᎵᎲᏲᎵᎸᎯ ᏱᎩ;\nᎤᏍᏗ ᎠᏴᏈᏛᏗ ᎦᏍᎩᎸ ᏕᎪᏪᎵᏍᎬ ᎧᏃᎮᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ, ᏧᎳᏏᏕᏂ ᎾᎥᏂ ᎦᎳᎨᏴ ᏧᏩᏂᎦᎸᏅ ᎪᏪᎵ.\nᎾ-ᏍᎩᏂ [ᎤᏁᎳᏅᎯ] ᏗᏂᎦᏘᎴᎩ ᏥᎩ, ᎠᎴ ᎾᏃᎯᏳᎲᏍᎬᎾ ᏥᎩ ᏚᏳᎪᏛ ᎨᏒᎢ, ᏂᏚᏳᎪᏛᎾᏍᎩᏂ ᎨᏒ ᎠᏃᎯᏳᎲᏍᎩ ᏥᎩ; ᎤᏔᎳᏬᎯᏍᏗ ᎠᎴ ᎤᎿᎸᎯ ᎨᏒ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏥᏚᏅᏎ ᏧᏅᏏᏓᏍᏗ ᏧᏂᏯᏅᎲᏍᏗᏱ ᏫᎨᏥᏯᏅᏛ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎤᏂᎷᎯᏍᏗᏱ; ᎠᏎᏃ ᏗᎤᏂᏳᎸᏁᏉ ᏅᏓᏳᏁᏅᏍᏗᏱ.\nᏤᎦᏈ ᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬᎢ, ᎿᏉ ᎠᎰᎱᏍᎨᎢ ᎣᏍᏛ ᏚᏁᏤᎴ ᎢᏧᎳ ᏦᏩ ᏧᏪᏥ; ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁ ᎤᏙᎳᏅᏍᏗᏱ ᎤᏍᎪᎵ [ᎤᎵᏍᏕᎸᏕᎢ.]\nᏥᏳᏃ ᎿᏉ ᎠᏰᎵ ᎥᏓᎵ ᏩᏂᏂᏒᎩ ᎤᏝᏗᏍᏔᏂᏙᎲ ᎠᎹ ᏓᎵᏍᏗᎳᏁᎬᎢ, ᎤᏃᎴᏰᏃ ᎢᎬᏱᏢ ᏓᏳᎦᏛᎩ.\nᏏᏆ ᎠᏍᏚᏗ ᏭᎷᏣ ᎰᎻ, ᎠᏦᏴ ᎭᏫᏂ ᏭᏴᎴ, ᎠᏯᏖᎾ ᎤᏣᏅᏕᎢ ᏭᏴᏍᏗ ᏫᎵᎻ.\nᏗᎦᏘᏍᏗᎦᏰᏌᏗ ᎪᎰᏍᏘ ᎤᏍᎦᏎᏗ.\nᎢᏳᏃ ᎩᎶ ᏂᎯ ᎢᏤᎲ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏂᎬᎨᏍᏗ, ᎤᏁᎳᏅᎯ ᎠᏔᏲᏎᎮᏍᏗ, ᎾᏍᎩ ᎾᏂᎥ ᏄᎵᏏᏅᏛᎾ ᏗᏁᎯᏥᎩ, ᎠᎴ ᏂᏓᏍᎦᎬᎾ ᏥᎩ; ᎠᎴ ᎠᏎ ᎠᏥᏁᏗ ᎨᏎᏍᏗ.\nᎢᏳᏰᏃ ᎠᎨᏴ ᏄᎵᏍᏚᎸᎾ ᏱᎩ, ᎾᏍᏉ ᎠᏥᏍᏙᏰᏍᎨᏍᏗ; ᎢᏳᏍᎩᏂ ᎤᏕᎰᎯᏍᏗᏳ ᏱᎩ ᎠᎨᏴ ᏗᎵᏍᏙᏰᏗ ᎠᎴ ᎠᎵᏍᏙᏰᏗ ᎤᏮᏙᏗᏱ ᎤᎵᏍᏙᏰᏗᏱ, ᎬᏩᎵᏍᏚᎴᏍᏗᏉ.\n”ᏌᎳᏓ?” ᎤᏛᏁ.\nᏝᏍᎪ ᏂᎯ ᏱᎩ Ꮎ ᎢᏥᏈᏱ ᏤᎲᎩ, ᎢᎸᎯᏳ ᎤᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏗᏱ ᏥᏄᏩᏁᎸᎩ, ᎠᎴ ᏥᏚᏘᎿᏫᏛᎲᎩ ᎢᎾᎨ ᏥᏫᏚᏘᏅᏍᏔᏅᎩ ᏅᎩ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᏴᏫ ᏗᏂᎯᎯ?\nᎩᎶᏃ ᎤᏟ ᏄᎨᏳᏎᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᎡᏍᎦᏉ ᎠᏴ ᎾᎩᎨᏳᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎾᏍᎩ ᎠᏴ ᎠᏆᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ. ᎩᎶᏃ ᎤᏟ ᏄᎨᏳᏎᏍᏗ ᎤᏪᏥ ᎠᏍᎦᏯ ᎠᎴ ᎤᏪᏥ ᎠᎨᏴ ᎡᏍᎦᏉ ᎠᏴ ᎾᎩᎨᏳᏎᏍᏗ, ᎥᏝ ᏰᎵ ᎾᏍᎩ ᎠᏴ ᎠᏆᏤᎵ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏣᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎢᏣᏗᏔᏍᏗᏱ ᎠᎩᏍᎩᎸ ᎾᎿ ᎠᎩᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᎢᏣᏅᏗᏱ ᎤᏂᎬᏫᏳᎯ ᏧᏂᏗᏱ ᏕᎦᏍᎩᎸᎢ, ᏗᏧᎪᏓᏁᏗᏱ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ.\nᏰᎵ ᏧᏕᏘᏴᏓ ᎤᏒᎯ ᎢᎪᎯᏓ ᎣᏍᏓᏓᏅᏖᏍᎬ ᎠᎬᏱ ᎤᏩᎦᏘᏗᏒᎢ - ᎣᎩᏂᏚᎩ ᏃᎴ ᎣᎩᎾᏓᏅᏖᏗᏍᎬ, ᎣᎩᏃᎯᏳᏅ ᎣᎩᎾᏧᏙᏗᏂ ᎠᏂᏰᎵᏒ, ᎨᏍᏗ ᏯᏃᎵᎨ ᎠᏂᏴᏫ ᏱᏄᎵᏍᏔᎾ, ᎤᏂᏲᎰᏎᏗᏉ ᎠᏁᎲ.\nᎯᎠᏍᎩᏂ ᏂᏥᏪᎭ, ᎢᏓᎵᏅᏟ, ᎪᎯ ᎨᏒ ᎤᏍᏆᎳᎯᏳ; ᎯᎠᏉᏃ ᏄᏍᏗ ᎠᎵᏃᎯᏯᎭ, ᎾᏍᎩ ᏧᎾᏓᎵ ᏥᎩ, ᏧᎾᏓᎵᏉ ᏂᎨᏒᎾ ᏥᎨᏐ ᎢᏳᏍᏗ ᎨᏎᏍᏗ,\nᏚᏰᎵᎯᏍᏔᏅᏃ, ᎣᏓᎸ ᏭᎶᏎ ᎤᏓᏙᎵᏍᏔᏅᏎᎢ.\nᏌᎵᎹᏃ ᏉᏏ ᎤᏕᏁᎴᎢ ᎴᎭᏫ ᎤᎾᎸᎪᏫᏎᎢ; ᏉᏏᏃ ᎣᏇᏗ ᎤᏕᏁᎴᎢ ᎷᏏ ᎤᎾᏄᎪᏫᏎᎢ; ᎣᏇᏗᏃ ᏤᏏ ᎤᏕᏁᎴᎢ;\n”Ꭳ, ᎭᏕᏬ,” ᎤᏛᏁ ᎰᎻ.\nᎦᎵᏉᎩᏁᏍᎩᏂ ᏗᎧᎿᏩᏗᏙᎯ ᎧᏁᏨᎭ ᎢᏳᎢ, ᎿᏉ ᎠᎴᏅᎲᎭ ᎠᏤᎷᎯᏒᎭ, ᎤᏕᎵᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸ ᏧᏅᏏᏓᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ.\nᏞᏍᏗ ᏱᏗᏥᎸᏫᏍᏓᏁᎮᏍᏗ ᎢᏥᏩᏛᏗᏱ ᎠᎵᏍᏓᏴᏗ ᎠᏲᎵ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᎵᏍᏓᏴᏗ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏗᎨᏒᎢ ᎢᎬᏂᏛ ᏥᎩ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎢᏥᏁᏗ ᏥᎩ, ᎾᏍᎩᏰᏃ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨ ᎤᏍᏓᏱᏛ.\nᎤᏁᎳᏅᎯᏰᏃ ᎠᎦᏴᎵᎨ ᎤᎵᏍᎪᎸᏓᏁᎸᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎢᎦᏚᎸᏌᏛᎢ, ᎾᎯᏳ ᎧᏁᎬ ᏧᎷᏤᎸ ᎤᏣᏘ ᎦᎸᏉᏗᏳ ᎢᎦ-ᏚᎸᏌᏛ ᏅᏓᏳᏓᎴᎤᎯ, [ᎯᎠ ᏥᏂᎦᏪᏍᎬᎩ,] ᎯᎠ ᏥᎨᏳᎢ ᎠᏇᏥ, ᎾᏍᎩ ᎣᏏᏳ ᏥᏰᎸᎢ ᏥᎩ.\nᏕᎪᏯᏛ ᏚᎵᎥᏂᏍᏔᏁ ᎬᏂᎨᏒ ᏂᎬᏁᎲ ᏄᏟᏂᎬᎬ.\nᎿᏉᏃ ᏆᎳᏆ ᏕᎤᏲᎯᏎᎴᎢ; ᎤᎵᎥᏃᏅᏃ ᏥᏌ ᏚᏲᏎ ᎠᎦᏛᏗᏱ.\nᎩᏟᏃ ᏂᎬᏩᏍᏛ ᎤᏍᎦᏎᏗ ᏂᎦᏪᏍᎬ ᏓᏑᏫᏍᎬᎢ.\nᎠᎴ ᎢᏨᏲᏎᎭ, ᎢᏣᎵᎢᏓ ᎤᏓᎵᏓᏍᏗ ᎨᏅᎢᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎡᏍᎦ ᏂᏣᎵᏍᏓᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏩᏕᏗᏱ ᎨᏒ ᎦᎨᏣᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ.\nᎡᎳᏗ ᏂᎦᎵᏍᏗ ᏣᏑᎶ.”\n“ᏙᎢᏳᏍᏗ ᎤᏧᏗᎭ?” ᎤᏛᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎬ.\nᎠᎴ ᏚᏑᏰᏎ ᏔᎳᏚ ᎢᏯᏂᏛ, ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏓᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏧᏅᏍᏗᏱ ᎤᎾᎵᏥᎽᏂᏓᏍᏗᏱ,\nᏂᎯᏍᎩᏂ ᎢᏨᏲᏎᎭ, ᎠᎴ ᎠᏂᏐᎢ ᏓᏱᏓᎵ ᎠᏁᎯ, ᎾᏍᎩ ᎾᏂᎥ ᎯᎠ ᏗᏕᏲᏗ ᎨᏒ ᏄᏂᎲᎾ, ᎠᎴ ᎾᏍᎩ ᏄᏂᎦᏙᎥᏒᎾ ᎾᎭᏫᏂᏴ ᏎᏓᏂ ᎤᏤᎵᎦ, ᏣᎾᏗᎭ; ᎥᏝ ᏅᏩᏓᎴ ᎦᎨᏛ ᏴᎨᏨᏐᏈᎸᎦ;\nᏩᎭᏯᏃ, “ᎭᏩ,” ᎤᏛᎮ ᏎᎦᏨ.\nᎠᎹᏳᎸᏓ ᏅᏲ ᏙᏍᏗᎾᏩᏕᎬ ᎢᎦ, ᎠᎦᎵᏍᎬ ᏙᎩᏂᎴᏴᏗᏍᎬ ᏦᏍᏗᏆᎵ ᎾᏍᎩᏯ ᎡᏘ ᏥᎨᏒ.\nᎠ-ᏍᎩᏂ ᎢᏗᏢ, ᎤᏂᎪᎲ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ [ᎤᎾᏛᎪᏗᏱ] ᎠᏴ ᎥᏆᎨᏅᏛᎢ, ᎾᏍᎩᏯ ᏗᎨᏥᏅᏍᏕᏎᎸᎯ [ᎤᎾᏛᎪᏗᏱ] ᎣᏍᏛ ᎧᏃᎮᏛ ᏈᏓ ᏣᎦᎨᏅᏕᎢ;\n(ᎾᏍᎩᏂ ᏈᏓ ᎤᎵᏂᎩᏛ ᎢᏳᏩᏁᎯ ᎠᏥᏅᏏᏛ ᎨᏒ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏁᏤᎵᎦ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏴ ᎠᏆᎵᏂᎩᏛ ᎾᏋᏁᎲᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏕᏥᏯᎵᏥᏙᏁᎲᎢ;)\nᎠᏏᏴᏫᏰᏃ ᎯᎠ ᏥᏂᎦᏪᏍᎪᎢ, ᎠᏴ ᏉᎳ ᏥᏯᎵᎪᏁᎯ, ᏅᏩᏓᎴᏃ, ᎠᏴ ᎠᏉᎳ ᏥᏯᎵᎪᏁᎯ; ᏝᏍᎪ ᎤᏇᏓᎵ ᏗᏣᏘᏂᏙᎯ ᏱᎩ?\nᎾᏍᎩ ᎤᏁᎳᏅᎯ, ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᎵᎦ, ᎠᎦᏴᎵᎨ ᎦᎸᏉᏗᏳ ᏥᎩ, ᎾᏍᎩ ᎢᏥᏁᏗᏱ ᎠᏓᏅᏙ ᎠᎦᏙᎥᎯᏍᏙᏗ ᎠᎴ ᎠᏓᎾᏄᎪᏫᏎᎯ, ᎾᏍᎩ ᎤᏩᏒ ᎡᏥᎦᏙᎥᎯᏍᏗᏱ;\nᏧᏬᏰᏂ ᎢᎬᏓ ᎤᏬᏛ ᏣᎵ, ᎤᎴᏅ ᎬᏓᎶᏍᎬ ᎦᏓ ᎬᏘ ᎤᏭᏌᏅ, ᎦᏅᏍᏘ ᎠᎹ ᎬᏘ ᎬᏓᎳᏗᏍᏗ.\nᎦᏓᏅᏖᏍᎬᏰᏃ ᎯᎠ ᎾᏍᎩ ᎪᎯ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎥᏝ ᏗᎬᏟᎶᏍᏙᏗ ᏱᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎾᏍᎩ ᎡᎩᎾᏄᎪᏫᏎᏗ ᎨᏒᎢ.\nᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎸ ᎠᏍᎦᏯ; ᎭᏙᏯᏅᎯᏓ; ᎤᏙᏯᏅᎯᎩᏃ. ᎠᎴ ᎤᏗᏩᏒᎩ, ᎾᏍᎩᏯ ᏐᎢ ᏄᏍᏛ ᏄᎵᏍᏔᏅᎩ.\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎬᏩᏱᎵᏙᎸ ᎥᏝ ᏳᏁᏤᎢ.\nᎠᎴ ᎾᏍᏉ ᎠᎾᎵᏍᏕᎵᏍᎩᏉ ᎨᏎᏍᏗ ᎾᏍᎩ ᏂᏙᏓᏳᏅᏏᏛ ᎤᎬᏫᏳᎯ ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎨᏥᎸᏉᏙᏗᏱ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ.\nᏣᎦᏎᏍᏕᏍᏗ ᎾᏛᏁᎲᎢ, ᎯᏔᎷᎩᏍᎩ, ᏪᏣᏌᏙᏴᎵ\n“ᎭᏂ ᎣᏁᎯ,” ᏧᏁᏤᎢ.\nᎠᏂᏔᎵᏃ ᏚᏂᎧᏁᎢ, ᏦᏩ ᏆᏏᏆ ᏧᏙᎢᏛ, ᏣᏍᏓ ᏣᎪᏎᎰᎢ, ᎹᏓᏯᏃ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᎦᏅᎨᎢ ᏗᎾᎵᏍᏓᏴᏂᏎᎢ, ᎦᏚ ᎤᎩᏒ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᎤᎬᎭᎷᏴ ᏚᏁᎴᎢ.\nᎪᎱᏍᏗᏗᏍ ᎢᏳᏍᏗ ᎠᏆᏍᏓᏩᏗᏒ ᎠᏆᏕᎳᎰᏒ. \nᏥᎦᏂᎦᏔ.\nᎬᏂᏳᏉᏃ ᎠᏂᏔᎵ ᏗᏂᎨᏫ ᎤᏃᎱᎶᏗ ᏚᏃᎸᎩ, ᎤᎾᏛᎦᏅᏃ ᏥᏌ ᎤᎶᏒᎢ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏍᎩᏂᏙᎵᎩ, ᏣᎬᏫᏳᎯ ᏕᏫ ᎤᏪᏥ.\nᎤᏟᏍᏓ ᏧᏍᏆᏴᏍᏗ!” \nᎠᏳᎾᎦᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴ ᏈᎵᎩ; ᎦᎪ ᎧᏃᎮᎭ ᎠᏙᎴᎰᏍᎩ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏪᏎ? ᎤᏩᏒᏍᎪ, ᏅᏩᏓᎴᎨ ᎩᎶᎢ?\nᎡᏥᏂᏌᏅ ᎾᏍᎩ ᎠᏥᏂᏌᏅ ᏗᏓᏬᏍᏗ ᎨᏒ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎾᏍᏉ ᎬᏔᏅᎯ ᏕᏣᎴᏔᏅ ᎾᏍᎩ ᏓᎦᎴᏔᏅᎢ ᎬᏔᏅᎯ ᏕᏣᎴᏔᏅ ᎾᏍᎩ ᏓᎦᎴᏔᏅᎢ ᏅᏧᎵᏍᏙᏔᏅ ᎢᏦᎯᏳᏒ ᎤᏁᎳᏅᎯ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᏧᎴᏔᏅᎯ ᏥᎩ ᎤᏲᎱᏒᎢ.\nᎬᏂᏳᏰᏃ ᏛᎵᏰᎢᏣᎵ ᎢᎦ, ᎾᎯᏳ ᎯᎠ ᏅᏛᏂᏪᏏ, ᎣᏂᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏗᎾᎷᎸᎥᏍᎩ ᏂᎨᏒᎾ, ᎠᎴ ᏧᎾᏓᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏧᎾᏓᏍᏛᏅᎯ ᏂᎨᏒᎾ.\nᏌᎳᏓ ᎠᎬᏱ ᎠᎧᏔᎮᎢ ᎤᎾᏕᏅ ᏌᏌ ᎠᏂᏓ.\nᏚᎾᏓᎴᎿᎠ ᎾᏍᏉ ᎠᏥᏰᎯ ᎠᎨᏴ ᎠᏃ ᎾᏥᏰᎲᎾ. ᎾᏥᏰᎲᎾ ᎠᎨᏴ ᎠᏓᏅᏖᏍᎪ ᏧᏓᎴᏅᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎾᏍᎦᏅᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏰᎵ ᎨᏒ ᎠᎴ ᎤᏓᏅᏙᎩᎯ ᎨᏒᎢ; Ꮎ-ᏍᎩᏂ ᎠᏥᏰᎯ ᎠᏓᏅᏖᏍᎪ ᏧᏓᎴᏅᏛ ᎡᎶᎯ ᎡᎯ, ᎢᏳᏛᏁᏗᏱ ᎤᏰᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ.\nᏆᎴᏗᏃ ᎣᏏᏳ ᎤᏰᎸᏎ ᎣᏍᏛ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ ᎤᏂᏣᏘ, ᏚᏲᎯᏎᎴ ᏆᎳᏆ, ᏥᏌᏃ ᎤᎵᎥᏂᎸ ᏚᏲᏎ ᎠᎦᏛᏗᏱ.\nᏏᏗ ᎣᏣᏁᏦᎥᏍᎦᏉ ᏥᏲᏎᎸ.\nᏂᎯᏍᎩᏂ ᏕᏥᎨᏳᏎᏍᏗ ᎨᏥᏍᎦᎩ, ᎠᎴ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᎡᎮᏍᏗ, ᎠᎴ ᎢᏣᏓᏙᎳᏍᏗᏍᎨᏍᏗ ᎤᏚᎩ ᏂᏨᏒᎾ ᎥᎡᏥᏂᏗᏱ ᎪᎱᏍᏗ; ᎤᏣᏘᏃ ᎡᏣᎫᏴᎡᏗ ᎨᏎᏍᏗ, ᏩᏍᏛᏃ ᎦᎸᎳᏗᏳ ᎡᎯ ᏧᏪᏥ ᎨᏎᏍᏗ ᏂᎯ; ᎾᏍᎩᏰᏃ ᎣᏍᏛ ᏂᏓᏛᏁᎰ ᏄᎾᎵᎮᎵᏣᏛᎾ ᎠᎴ ᎤᏂᏲᎢ.\nᎿᏉᏃ ᏆᎴᏗ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏟ ᎢᎦᎢ ᎤᏍᎦᎸᎩ;\n”ᎭᏓᏅᎵᏰ ᎨᎵᏍᎩ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᎴ ᎡᏆᎭᎻ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏧᏓᎴᏅᏛ ᎨᏥᏚᎢᏍᏓᏁᎴᎢ. ᎥᏝ ᎯᎠ ᏱᏂᎦᏪᎭ, ᎠᎴ ᏂᎯ ᏗᏣᏁᏢᏔᏅᎯ, ᎢᎸᏍᎩ ᏥᎨᏐ ᎾᏍᎩᏯᎢ; ᏌᏉᏉᏍᎩᏂ ᏥᎨᏐ ᎾᏍᎩᏯ, ᎯᎠ ᏂᎦᏪᏎ,] ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ; ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᎩ.\nᏤᏍᏗ ᏯᎦᏎᏍᏗᏍᎨᏍᏗ ᏫᎵᎻ!” \nᎨᏍᏗ ᎠᏎ ᎩᎶ ᎠᎫᏩᏌᏙᏱᏍᏗ ᏱᎨᏎᎢ.\nᎥᏝᏰᏃ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᎠᏎᏉ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏲᎩᏍᏓᏩᏛᏎ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎸ ᎤᎵᏂᎩᏗ ᎨᏒ ᎠᎴ ᎤᎷᎯᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ; ᏱᎩᎪᎲᎯᏍᎩᏂ ᎨᏒᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏤᎵᎦ.\nᎠᎴ [ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ] ᎥᏝ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏚᎩ ᎣᎬᏅᎢ, ᎢᎬᏱᏍᎩᏂ ᎤᏅᏒ ᎤᎬᏫᏳᎯ ᏚᎾᏓᏲᎯᏎᎸᎩ, ᎠᎴ ᎠᏴ ᏕᎪᎦᏓᏲᎯᏎᎸᎩ, ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎠᏰᎸᏍᎬ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ.\nᎾᏍᎩ ᏂᎯ ᎢᏤᏙᎲ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎢᏤᎵᏍᏗᏱ, ᎾᏍᎩ ᎢᏥᏯᏅᏛ ᏥᎩ ᏫᏥᎷᎯᏍᏗᏱ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᏗᎨᏒᎢ.\nᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎴ ᎾᏍᎩ.\nᏧᏪᏥ ᏓᏆᏁᏍᎩᎳ.\nᏥᏌᏃ ᎤᏚᏫᏛ ᏚᎧᎿᏂᏙᎸ, ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᏓᏯ ᏧᎬᏩᎶᏗ ᎤᏂᎯ ᎤᏁᎳᎲᎯ ᎤᏤᎵᎪᎯ ᏭᏂᏴᏍᏗᏱ.\nᏭᎪᎮᏃ Ꭸ ᎢᏴᏛ ᏗᏡᎨ ᏒᎦᎳᎢᏳᏍᏗ, ᎤᎵᏍᏚᏎᎢ, ᏭᎷᏤᎢ, ᏯᏎᎦᎩ ᏱᏥᏩᏛ ᎪᏞᏍᏗ ᏳᏔ ᎤᏪᎵᏎᎢ; ᎾᎿᏃ ᏭᎷᏨ ᎥᏝ ᎪᏞᏍᏗ ᏳᏩᏛᎮ ᎤᎵᏍᏚᏒᏉ ᎤᏩᏒ; ᎥᏞᏰᏃ ᎠᏏ ᏳᏍᏆᎸᎮ ᏒᎦᏔᎢᏳᎾᏍᏗ ᎤᏅᏂᏍᏗᏱ.\nᎠᏂᏐᎢ ᏕᏧᎬ ᎾᎥᏂ ᎠᏂᏙᎾᎥ ᎠᏂᎦᏘᏴ.\nᏧᏚᏴᏗᏱ ᏧᏭᏓᎴᏍᏗᏱ ᎤᏰᎸᏎ ᎾᏍᎩ ᎤᎾᏓᏄᏴᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲᎢ, ᎾᏍᎩ ᎠᏴ ᏧᏪᏥ ᎢᏰᎬᏁᏗᏱ.\nᏧᎾᏍᏗᏃ ᏗᏂᏲᎵ ᏕᎬᏩᏘᏃᎮᎴᎢ, ᎾᏍᎩ ᏧᏒᏂᏍᏗᏱ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᎬᏍᎪᎸᏁ ᎾᏍᎩ ᏧᎾᏘᏃᎸᎯ.\nᏅᎦᏍᎪᎯᏃ ᎤᏗᏢᏍᏙᏗ ᎾᏂᎥᎩ ᎾᏍᎩ ᎢᏧᎾᏓᏪᏎᎸᎯ.\nᎦᎸᏉᏗᏳᏰᏃ ᎠᏓᏅᏙ ᏓᏤᏲᏂ ᎾᎯᏳ ᎨᏒ ᎢᏥᏪᏍᏗᏱ.\nᎣᎭᏂ ᎡᎯ ᎠᏧᏣ ᏩᏏᏓᏂ ᏚᏙᎥ, ᎠᎬᏱ ᎤᎬᏫᏳ ᏚᏙᎥ ᏭᏂᎩᏓ, ᏧᏍᏗ ᏧᎪᎸ ᎠᎵᏎᎩ ᏐᏈᎵ ᎠᏘᎭᏁᎲ, ᏓᎵᏎᎲ ᎠᎵᏍᏔᏴᏗ, ᏗᏓᏍᏔᏴᏗ, ᏃᎴ ᏧᏍᏆᏅᎾ.\nᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏣᏃᏛᎩ; ᎠᎴ ᎾᏍᎩ ᏚᎸᏌᏛ, ᏅᏯᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎾᏍᎩ ᏣᏍᏆ ᏅᏯ ᎾᏍᎩᏯᎢ ᏗᎬᏩᎸᏌᏛ ᎨᏒᎩ.\n“ᎭᏩ,” ᎤᏛᏁ ᏌᎳᏓ, ”ᏚᏓᎴᏣᏗ ᎢᏁᎲ.\nᎤᎪᏏᏓ ᎢᏗᏅᏁ ᎪᎱᏍᏗ ᎤᎵᏬᏨ ᎦᏓ ᎾᏅᏁᎰ.\nᎤᏚᎵᏍᎨ ᏒᏕᏅ ᏔᎵ ᎢᏳᏩᎬᏘ ᏗᏍᏔᏲᎯ ᏂᎬᏛ ᎠᎦᏅᎯᏓ, ᎢᏳᏍᏗᏉ ᏧᏲᏍᏙᏗ, ᎠᏥᎪᏅᏗᏍᎬ ᎢᎪᎯᏛ.\nᎾᏍᎩᏯ ᏄᏪᏒ ᏕᎬᏗᏍᎬ ᏧᏤᎵ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎤᎾᏕᏅᎯ ᏥᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ;\nᎠᏯ ᏗᏥᏲᎵᏨ ᏄᏛᏁᎵᏙᎸ ᎠᏂᏃᎮᏍᎬ, Alamo ᏄᎵᏍᏔᏅ ᎩᎳ ᎠᏥᏌᎴᏓᏅ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᏂᏁᏎ ᎠᏰᎸᎢ, ᎠᎴ ᎤᏂᏂᏌᏁᎢ, ᎠᎴ ᎤᏁᏅᏎ ᏭᏂᏃᏁᎴ ᏥᏌ.\nᎦᏙᏃ ᎦᏓ ᏥᎾᎾᎵᏍᏗ ᏅᎩ ᏗᏂᏅᏌᏓ ᏃᎴ ᎠᏤ ᎡᎾᎢ?\nᏧᏁᎬ ᎨᏒ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏗᎦᏙᎵ, ᎾᏍᎩᏯ ᏧᏓᎵ ᏓᏳᏓᎴᏅ ᎪᎢ ᏧᎵᏑᏫᏓ ᎨᏒ, ᎪᎯᏛ ᏓᏆᎧᎾᏅ, ᎩᎳ ᏄᏪᏒ, ᏙᏉ ᎠᏇᎵᏎ ᎢᏧᎳ ᏍᏔᎵᎪᎯ ᏫᏍᏛᏯᎧᏁ.\nᏍᏆᎴᏅᎲ ᏥᏯᏅᏓᏗᏍᏙᏗ ᎠᏌᎻᏓ ᎨᏍᏗ ᏍᎩᎾᎾ ᎧᏁᎬ ᏱᏓᎩᎷᏫᏍᏔᏁᎮ ᏃᎴ ᎨᏍᏗ ᏐᏉ ᏎᏂᏏ ᏱᎬᏆᏈᏴᎡ ᎠᏂᏩᏥᏂ, ᎠᏋᏌ ᎠᏆᏚᎵᏍᎬ ᏂᏓᎦᏛᏁᎵ.\nᏴᏫ ᎤᏪᏥ ᏙᏓᎦᏅᏏ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵᎪᎯ ᏙᏛᏃᏣᎴᏏ ᏂᎦᏛ ᏗᎾᏓᏙᏕᏍᏗᏍᎩ ᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏅᎩ,\nᏭᎾᏠᏨᏃ ᎠᏰᎸᎢ, ᎤᏂᎷᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏗᏂᎧᎿᏩᏗᏙᎯ ᎾᏍᏉ ᏙᏥᎪᏩᏛ ᎾᏍᎩ ᎬᏅ ᎪᎪᏏ, ᎤᎾᏛᏁᎢ.\nᎾᎿ ᎤᎾᏤᎵ ᏥᏍᎪᏴ ᏂᎦᎵᏬᎬᎾ ᏗᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᏂᎬᏠᏍᎬᎾ ᏗᎨᏒᎢ.\nᎠᎴ ᎤᏁᎷᏅᎩ ᎢᏳᏃ ᎤᏂᎪᎲ ᏚᎦᏒᏍᏛ ᎾᏍᎩ ᎠᎪᎲᏍᎬᎢ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎦᏙ ᎤᏍᏗ ᎾᏍᎩᏯ ᎨᏎ ᎾᏍᎩ ᎯᎠ ᎡᏆ ᎦᏚᎲ ᏄᏍᏛᎢ?\nᏣᏅᏖᏍᏗ ᏥᏌ ᎦᎶᏁᏛ, ᏕᏫ ᎤᏪᏥ, ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅᎢ, ᎾᏍᎩᏯ ᏂᎦᏪᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᏆᏤᎵᎦ,\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᏍᏕᎾ ᏣᏂ ᏫᎡᏍᏗᏃᎲᏏ ᏂᎦᎥ ᎢᏍᏓᏛᎩᏍᎬᎢ ᎠᎴ ᎢᏍᏗᎪᏩᏖᏍᎬᎢ:\nᏲᎾ ᎤᏤᏍᏙ ᎢᏳᏍᏗ ᏍᏉ ᎤᎨᏳ ᎨᏎ ᏫᎵᎻ, ᏍᎩᎾᎾ ᎤᏴᏍᏗ ᎠᏒᎩ ᏃᎴ ᎤᏪᏙᏨ ᎠᎵᏍᏓᏴᏗ ᏛᎦ ᎠᎾᏓᏓᏍᎩᏏᏍᎨᎢ ᏚᏂᎬᎬ ᏌᎳᏓ, ᏃᎴ ᎠᎵᎮᎵᏍᏓᏁᎮ ᎠᎴᏫᏍᏗᏍᎩ ᏱᎨᏒᎾ ᎨᏒ ᏃᎴ ᎱᏚᎵᏍᎨ ᎤᏁᎸᏙᏗ ᎤᏏᎳᏛᏗ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏆᏟᏯ ᎤᏙᏓ ᎦᏅᎬᎩ ᎤᏗᎴᎲᏍᎬᎩ ᎠᎴ ᎩᎬ ᏚᏩᎫᏍᎬᎩ, ᎾᏍᎩ ᏉᎳ ᎤᏴᎸᎩ ᎦᏅᎬᎢ, ᎤᏓᏙᎵᏍᏔᏅᏃ ᎠᎴ ᏚᏏᏔᏛ ᎤᏅᏩᏅᎩ.\nᎯᎠ ᎾᏍᎩ ᎠᏍᎩ ᎠᏯᎦᏯ ᏆᎴᏗ ᏭᎷᏤᎴ ᎠᎴ ᎤᏔᏲᏎᎴ ᏥᏌ ᎠᏰᎸᎢ.\nᎢᎬᏱᏱᏃ ᎨᏒ ᎤᏪᏅᏒᎩ, ᎠᎴ ᎪᏙᎯ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎤᏕᏯᏙᏗᏃ ᎠᎴ ᎡᎯᏍᏗ ᏚᏂᏣᏍᏓᎳᏛᎩ ᏴᏫ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏤᎵ ᏗᎨᎪᏪᎶᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ.\nᎾᏍᏉᏃ ᏔᎵ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᎷᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᏔᎵ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᏕᏍᎩᏲᎯᏎᎸᎩ; ᎬᏂᏳᏉ ᎤᏩᎾᏓᎴ ᏔᎵ ᎢᏯᎦᏴᎵ ᎬᎩᏁᏉᏤᎸ.\nᏂᎯ ᎠᏈᏴᏗ ᏕᏣ.\nᏔᎵᏁᏃ ᎾᏍᎩᏯᏉ ᎾᏍᏉ; ᏨᏒ ᏥᏂᏣᏓᎨᏳᏒ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ.\nᎢᏳᏃ ᎰᏩ ᎢᏣᏛᎦᏅᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏗᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᏴ ᎥᎩᏁᎸᎢ ᎾᎿ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ ᏂᎯ ᎣᏍᏛ ᎢᏨᏯᏛᏁᏗᏱ;\nᎠᏂᏍᎦᏰᎬᏍᏔ ᎤᎾᏗᏔᎰᏅ ᏍᎦᏥ ᏫᏍᎩ ᏓᏆᎴᎳ ᎦᎵ ᎦᎷᎬ ᏣᎵᏍᏙᏂ ᏓᏳᏓᎴᏅ.\nᏍᎩᏃ ᎢᏳᏍᏗ ᎤᎩᏨᏓ ᎩᎳ ᏩᎩᎷᏨ ᎨᏥᎸ ᎦᏙ, ᎦᏙ ᏄᏍᏛ ᎠᏆᏕᎶᎰᏒ ᏄᎵᏍᏔᏂᏙᎸ.\n “ᏑᎾᎴ ᏂᎦᎵᏍᏔᏅ ᏓᏥᎦᏘᏗ  ᎾᎯᏳ ᎨᏒ ᎤᏪᎵᏎ, ᎪᎱᏍᏗ ᏯᏍᎦᎢᎲᎾ.\nᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏱᎨᏎᎢ ᏄᏂᎦᏙᎥᏒᎾ ᏱᎨᏎ ᏚᏳᎪᏛ ᎦᏅᏅᎢ, ᎠᏃ ᎤᏂᎦᏙᎥᏒᎯ ᎨᏒ ᏯᎾᎦᏔᎲ ᏱᏚᏂᏲᏍᎦ ᎦᎸᏉᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏗᎨᏥᏲᎯᏎᎸᎯ.\nᎨᏍᏗ ᎤᎯᏐᏗ ᏱᎩ.”\nᎤᏛᏛᎮᎸᏁᏃ ᎤᏣᏘ ᏧᏓᎴᏅᏛ, ᎠᏎᏃ ᎥᏝ ᏳᏁᏤᎴᎢ.\nᎣᎾᏫᏰᏃ ᎬᏗ ᎠᎪᎯᏳᎲᏍᎪ ᎣᏚᏓᎴᏍᏗ ᏂᎦᎵᏍᏔᏂᎦ; ᎠᎴ ᎥᎰᎵ ᎬᏗ ᎬᏂᎨᏒ ᎾᎬᏁᎰ ᎥᏓᏗᏍᏕᎸᏗ ᏂᎦᎵᏍᏔᏂᎦ.\nᎯᎠᏃ ᏄᏪᏎᎢ ᎬᏲᏎᎭ ᏈᏓ, ᏣᏔᎦ ᎥᏝ ᎬᏛᏴᎳᏏ ᎪᎯ ᎢᎦ ᎬᏂ ᏦᎢ ᎢᏣᏓᏱᎸᎯ ᎨᏎᏍᏗ ᎠᏴ ᏍᎩᎦᏔᎲᎢ.\nᎠᎹ ᏱᏔᏑᏴᏂ, ᎢᏧᎴᎭ ᎠᏗᎬᏓ ᏱᏣᏗᏔ ᏪᎵᏏ ᏧᎾᏕᎪ ᏧᎾᏗᏔᏍᏗ.\nᏗᎧᎾᏩᏛᏍᏗ.\nᎠᎴ ᎾᏍᎩ [ᎤᏚᎵᏍᎬ] ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎤᏤᎵ ᎤᏣᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎨᏒ ᏕᎬᏗᏍᎬ ᏗᏖᎵᏙ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏗᏟᏍᏗ, ᎾᏍᎩ ᏧᏛᏅᎢᏍᏔᏅᎯ ᏥᏂᎨᏎ ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏭᎾᏕᏗᏱ,\nᏭᏂᎷᏣ ᎭᎾ ᏣᎵ ᏕᎨᏯᏔᎲᏍᎬ ᎠᏍᏓᏱ ᎤᏙᎯᏎ.\nᎢᎸᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᎯᏳ ᏓᏕᏲᎲᏍᎨᎢ, ᎾᎿ ᎠᏂᏁ ᎠᏂᏆᎵᏏ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᏕᎦᏚᏩᏗᏒ ᎨᎵᎵ ᏅᏓᏩᏂᎶᏒᎯ, ᎠᎴ ᏧᏗᏱ, ᎠᎴ ᏥᎷᏏᎵᎻ; ᎤᎬᏫᏳᎯᏃ ᎤᎵᏂᎬᎬ ᏚᎾᏗᏫᏍᏗᏍᎨᎢ.\nᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎠᏓᏰᏍᎨᏍᏗ ᎾᏍᎩᏯ ᎤᎪᏏᏛ ᏣᏓᏰᏍᎪᎢ; ᎾᏍᎩ ᏄᎾᏍᏗ ᎭᎻᏂᏯ ᎠᎴ ᏆᎵᏓ,\nᏱᎩᎾᎵᎪᏁᎢ, ᏰᎵᏉ ᎪᎰᏍᏗ ᏯᏆᏛᏁ ᎤᏓᏍᏖᏓᎵᏴᏍᏙᏗ.\nᏂᎯᏃ ᎯᏲᎵ, ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏤᎵ ᎠᏙᎴᎰᏍᎩ ᎡᏦᏎᎮᏍᏗ, ᏂᎯᏰᏃ ᎢᎬᏱ ᏘᏰᏅᎡᎵ ᏱᎰᏩ, ᎯᏯᏛᏅᎢᏍᏓᏁᏗᏱ ᎤᎶᎯᏍᏗᏱ;\nᎾᏍᎩᏃ ᏧᏪᏥ ᏅᎩ ᎢᏯᏂᏛ ᎠᏁᎲᎩ ᎠᎾᏛ ᎠᎾᏙᎴᎰᏍᎩ.\nᏲᎾ ᎤᏤᏍᏙ ᎤᎵᏍᏔᎩᏌ ᏒᏗᏩᏟ, ᎤᏲ ᎨᏎᎢ, ᏍᎪᏯ ᎤᏲ ᎭᏯᎡ ᎭᏫᏂ, ᎤᏲᎢᏍᏔᏁᎴᎢ.\nᎾᏍᎩ ᎤᏂᏍᏆᏗᏍᏙᏗ ᎨᏒ ᎠᏓᏛᏗᏍᎩ ᏥᎩ, ᎤᎾᏁᎳᏅᎯ ᎤᏂᏍᏉᎵᏱᏉ ᏥᎩ, ᎠᎴ ᎤᎾᏕᎰᎯᏍᏗᏍᎩᏉ ᎠᎾᏢᏈᏍᏗᏍᎩ ᏥᎩ, ᎾᏍᎩ ᎡᎶᎯᏉ ᎡᎯ ᎤᎾᎦᏌᏯᏍᏗ ᏥᎩ.\nᏲᎾ ᎤᏤᏍᏙ ᎠᎵᎮᎵᎨ, ᎡᎵᏍᎨᎢ ᏌᎳᏓ ᎠᏓᏪᎯᏴ ᎤᏔᏅ ᎨᏍᏗ ᏱᏛᏂᎵᏎ ᏫᎵᎻ.\nᏔᎵ ᏗᎦᎸᏓ ᎠᏫ ᎭᏫᏯ ᎠᎧᎭᏲᏔᏅ ᏚᎳᎩᏒ ᎦᏅᏙᏗ ᎠᏧᏣ, ᏚᏅᏁᎸ ᏣᎵ.\nᏂᎦᏓ ᎡᏝᏪ ᎨᏎᏍᏗ ᏓᏥᏯᎵᏃᎡᏔᏂ!”\nᎠᎵᏍᎦᏃᏍᏗᏍᎨ ᎪᏱᏁᎢ, ᎤᏔᏂᏗᎨ ᎧᏁᏌ ᎤᏂᏕᎴ, ᎠᏓ ᏗᏍᏆᏂᎪᏙᏗ ᏭᏂᎧᏁ.\nᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎾᏍᎩ Ꮎ ᎦᎶᎯᏍᏗᏱ ᎠᏴᏍᏗᏍᎩ ᏂᎨᏒᎾ ᎠᏫ ᎤᏂᏃᏕᎾ ᎤᏂᏴᏍᏗᏱ, ᎤᏣᏘᏂᏉᏍᎩᏂ ᎦᎸᏍᏗᏍᎩ, ᎾᏍᎩ ᎦᏃᏍᎩᏍᎩ ᎠᎴ ᎠᏓᎾᏌᎲᏍᎩ.\nᎠᎦᏗᏓ ᎯᏥᏬᏂᏍᎨᏍᏗ ᏌᏌ!” \nᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎠᏴ ᎤᏪᏥ ᏓᏰᏏ ᎾᏍᎩᏯ ᏚᏚᎪᏔᏅᎢ, ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᎾᎠᏍᎦᏯ ᎤᏡᏗᏍᎩ\nᏤᎦᎳᏯᏃ ᎤᎪᎲ, ᎤᏕᏯᏔᏁᎴ ᎠᎴ ᎤᏍᎦᎴᎢ.\nᏕᏅᏬᎯᏳᏁᏃ, ᎪᎱᏍᏗ ᏓᎬᎩᏁᎵ ᎡᎵᏍᎨᎢ.\nᎢᏳᏃ ᎩᎶ ᏂᎪᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎣᏥᏬᏂᏍᎬ ᎠᏂ ᎣᏦᏪᎵᏍᎬᎢ, ᎬᏂᎨᏒ ᏁᏨᏁᎸᎭ ᎾᏍᎩ, ᎠᎴ ᏞᏍᏗ ᎢᏧᎳᎭ ᎢᏤᏙᎸᎩ, ᎾᏍᎩ ᎬᏩᏕᎰᎯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᏣᎦᏔᎲᎾ, ᎤᏓᏅᎦᎸᏗᏱ ᎢᏥᏍᎦᏅᏨᎢ, ᎾᏍᎩ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎤᎾᏄᎪᎢᏍᏗᏱ ᎤᎬᏫᏳᎯᏱ ᏅᏓᏳᏓᎴᏅᎯ.\nᎾᎿ ᎤᎾᏤᎵ ᏥᏍᎪᏴ ᏂᎦᎵᏬᎬᎾ ᏗᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᏂᎬᏠᏍᎬᎾ.\nᎾᎯᏳᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎭᏫᏂᏗᏢ ᎢᏯᎬᏁᎸᎯ ᎨᏎᏍᏗ, ᎿᏉ ᎾᏍᏉ ᎤᏪᏥ ᎤᏩᏒ ᎭᏫᏂᏗᏢ ᏅᏛᏛᏁᎵ ᎾᏍᎩ Ꮎ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎯᏫᏂᏗᏢ ᎢᏳᏩᏁᎸᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏂᎦᎥ ᎢᎬᏂᏏᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏂᎥ ᎠᏁᎲᎢ.\nᎺᎵᏃ ᎤᎷᏨ ᏥᏌ ᎡᏙᎲᎢ, ᎠᎴ ᎤᎪᎲ, ᏚᎳᏍᎬ ᎡᎳᏗ ᎤᏓᏅᏅᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᎠᏂ ᏱᎮᏙᎮᎢ, ᎥᏝ ᎥᎩᏙ ᏱᎬᏩᏲᎱᏎᎢ.\nᎠᏎᏍᎩᏂᏃᏅ ᎠᏇᏓᏍᏗ ᏂᎦᎵᏍᏗᎭ ᎪᎯ ᎢᎦ, ᎠᎴ ᎤᎩᏨᏅᎢ, ᎠᎴ ᎤᎩᏨᏛ; ᎥᏝᏰᏃ ᎠᏙᎴᎰᏍᎩ ᏰᎵ ᎢᎸᎯᏢ ᎦᏰᏥᎢᏍᏗ ᏱᎩ, ᏥᎷᏏᎵᎻ ᎤᏩᏒ.\nᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᎠᏯᎡ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎦᏓᎭ ᎠᏓᏅᏙ ᎠᏍᎩᎾ ᎤᏯᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏁᎢ,\nᎤᏙᎯᏳᎯᏯᏰᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎩᎶ ᎯᎠ ᏂᎦᏪᏎᎮᏍᏗ ᎯᎠ ᏦᏓᎸ, ᏪᏣᎲᎾ, ᎠᎴ ᎠᎺᏉᎯ ᏪᏣᏚᎦ; ᎠᎴ ᏄᏜᏏᏛᎡᎲᎾ ᎢᎨᏎᏍᏗ ᎤᎾᏫᏱ, ᎪᎯᏳᎲᏍᎬᏍᏗᏉᏍᎩᏂ ᎾᏍᎩ ᏂᎦᏪᏍᎬ ᎠᏎ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎤᎨᏍᏗ ᏂᎦᎥ ᏄᏪᏒᎢ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᎨᏓᏍᏗᏱ ᎾᏍᎩᏯ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏤᎵᎦ ᏂᎦᏪᏍᎬᎢ. ᎾᏍᎩ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏥᏁᏣᏛᎩᏍᎪᎢ, ᎾᏍᎩ ᏗᏥᎧᎿᏩᏛᏍᏗᏱ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎬᏩᏍᏓᏩᏙᎯ ᎬᏩᎷᏤᎸᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏂ ᎢᎾᎨᏉ, ᎠᎴ ᎢᎦ ᎤᎶᏐᏂᏗ, ᏥᏤᎾᏉᏃ ᎩᏲᏏᎯᎠ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᏙᏗᎦᏚᎲ ᏫᎠᏂᎶᎯ, ᎾᎿ ᎤᏅᏒ ᎤᎾᎵᏍᏓᏴᏗ ᎤᏂᏩᏒᎭ.\nᏴᏫ ᎠᎩᏟᏲᏗ ᎤᏂᎶᎯᏍᏗ ᏃᎴ ᏓᏂᏲᎰᏍᎪ, ᏯᏂᎦᏔᎲᎾ ᎨᏒ ᏃᎴ ᎨᎦᏥᎪᏁᎸ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏕᎦᏬᏁᏗᏍᎬᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏧᏏ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᎦᏃᏗᏗᏱ ᏕᎦᏬᏁᏗᏍᎬᎩ ᎾᎿ ᏧᏩᏛᏔᏅᎯ.\nᎤᎬᏫᏳᎯᏃ ᎤᏣᏘ ᏞᏉ ᎤᏰᎸᏁᎢ; ᎠᏎᏃ ᎤᏎᎵᏔᏅᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏧᎴᎭ ᎤᎾᏂᏜᏅᎯ ᏅᏧᎵᏍᏙᏔᏁ, ᎥᏝ ᎬᏩᎨᏳᏙᏗ ᏱᎨᏎᎢ.\nᎠᎴ ᏄᎬᏫᏳᏒ ᏕᎦᏍᎩᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏧᎾᏂᏢᏗᏱ ᏓᎾᎵᏍᏓᏴᎲᎬᎢ;\nᎦᏙᏃ ᎤᏍᏗ ᎠᎬᏩᏟ ᏒᎦᏔ ᎢᏈᎬᎢ ᏒᎦᏔᏃ ᎾᎾᏓᏛᏍᎬᎾ? ᎤᏓᏛᏛᏁᎢ Ꮎ ᎤᏍᏗ ᎢᏈᎬᎢ.\nᎠᎦᏔᎮᏰᏃ ᎠᏅᏳᎬᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏚᏂᏲᏒᎢ.\nᎠᎴ ᎢᎾᏛ ᎤᎿᎸᏤᎸ-Ꭹ ᎠᎨᏴ, ᎠᎴ ᏓᎿᏩ ᎢᏧᏩᏁᏗᏱ ᎤᏰᎸᏅᎩ ᎤᎾᎵᏃᎯᏴᎯ ᎾᏍᎩ [ᎠᎨᏴ] ᎤᏁᏢᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ Ꮎ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎠᎴ ᎤᏂᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵ ᎪᎯᏳᏗᏍᎩ\nᎤᏰᏤ ᏥᏍᏕᏥ.\nᎠᎴ ᏚᏪᎧᏁᎴ ᎾᏍᎩ ᏧᏂᏔᏲᎴᎢ, ᏗᏓᏍᏚᏗᏱ ᎠᏥᏴᏔᏅᎯ ᏥᎨᏎᎢ ᏧᏍᏛᏗᏍᎨ ᎤᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅ ᎠᎴ ᎤᏓᎸᎢ; ᏥᏌᏍᎩᏂ ᏚᏲᎯᏎᎴ ᎤᎾᏚᎵᏍᎬ ᎢᏳᏅᏁᏗᏱ.\nᏞᏍᏗ ᎩᎶ ᎤᏩᏒᏉ ᎤᏤᎵ ᏳᏲᎮᏍᏗ, ᏅᏩᏓᎴᏍᎩᏂ ᎤᏤᎵ ᎤᏲᎮᏍᏗ.\nᏅᏩᏓᎴ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎠᏥᎸ ᎤᎦᏔ, ᎠᏍᎦᏯ ᏧᎩᏎ ᎠᎴ ᏧᏫᏎ ᎤᎶᎨᏒᎢ.\nᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ, ᎾᏍᎩ ᎤᏕᎵᏛ ᏧᎾᏂᏏᏂᏙᎸᎯ ᎨᏒᎢ, ᎠᎴ ᎤᏢᏉᏗ ᎢᏧᎳᎭ ᎤᎾᏕᏅᎯ, ᎾᏍᎩ ᏓᎬᏩᏍᎪᏂᎵ, ᎠᎴ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏙᏛᏂᏴᎳᏏ, ᎿᏉ ᎠᏂᎪᎲᎭ ᏚᎦᏒᏍᏛ ᎾᏍᎩ ᎠᎪᎲᏍᎬᎢ,\nᎠᎴ ᎣᎦᏁᎳᏅᎯ ᏧᏤᎵ ᎣᎩᎬᏫ-ᏳᎯ ᎠᎴ ᎠᏥᎸ ᎣᏤᎶᎯ ᏂᏍᎩᏴᏁᎸ; ᎠᎴ ᎣᎩᎬᎾᏳᎯ ᎨᏎᏍᏗ ᎡᎶᎯ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᏄᎬᏫᏳᏌᏕᎩ ᎤᏛᏛᏁ, ᎯᎠ ᏄᏪᏎᎢ, ᎰᏍᏛ ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏯᏆᏛᏁᎸ ᏫᎾᏍᏛᎾ ᎬᏂᏛ ᏱᏥᏩᏛ?\n“ᎤᏩᏛᎯᏙ ᎦᎷᎩ ᎯᎪ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎪᏪᎸᏃ ᎤᏙᎯᏳᏁᎢ, ᎯᎠ ᏥᏂᎦᏪᎭ, ᎤᏂᏍᎦᏅᏨᎯ ᎨᎦᏎᎸ ᎠᎦᏠᏯᏍᏔᏅᎩ.\nᎯᎸᎯᏨ ᎠᎴᏫᏍᏙᏗ.\nᎢᏳᏃ ᎩᎶ ᎤᏁᎳᏅᎯ ᏥᎨᏳᎠ ᏯᏗᎭ, ᏯᏍᎦᎦᏃ ᏗᎾᏓᏅᏟ, ᎦᏰᎪᎩ ᎾᏍᎩ, ᎤᎨᏳᎯᏰᏃ ᏂᎨᏒᎾ ᏱᎩ ᏗᎾᏓᏅᏟ ᎾᏍᎩ ᎤᎪᎲᎯ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎤᎨᏳᎯᏳ ᏱᎩ ᎤᏁᎳᏅᎯ ᎤᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎤᏙᎯᏳᎮ ᏄᏪᏒ.\nᎢᏓᎵᏅᏟ, ᎥᏝ ᎦᏳᎳ ᎠᎩᏂᏴᏛ ᏍᎩᏰᎸᎭ; ᏑᏓᎴᎩᏍᎩᏂ [ᏂᎦᏛᏁᎰᎢ;] ᎠᏋᎨᏫᏍᎪᎢ ᏧᏓᎴᏅᏛ ᎣᏂᏗᏢ ᏄᏍᏗᏕᎬᎢ, ᎢᎬᏱᏗᏢᏃ ᏧᏓᎴᏅᏛ ᏄᏍᏗᏕᎬ ᏫᏗᏥᏂᏱᏍᎪᎢ,\nᏗᏯᏖᏅ ᏃᎴ ᏗᎦᏌᏆᎸ ᎦᎸᎳᏗᏣ ᏓᎾᎵᏍᏇᏚᏍᎦ ᎯᎪᎢᏳᎳ.\n“ᎭᏕᏬ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᏤᎦᏬᎥᎯ ᏥᎩ, ᎦᎶᏁᏛ ᎢᏧᎳᎭ ᏕᎩᏂᏌᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏗᎩᏲᎱᏒᎯ ᏄᎵᏍᏔᏅᎩ; ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᏒ ᏥᏓᎦᎴᏔᏁᎢ ᎠᎦᏴᎵᎨ ᎦᎸᏉᏗᏳ ᎨᏒ ᎬᏔᏅᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᎢᏓᎴᏂᏙᎲ ᎢᏤ ᏱᏓᎴᏂᏙᎭ.\nᎦᎸᎳᏗᏃ ᏫᏚᎧᎿᏅ ᎤᎵᏰᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎡᏇᏓ, ᎾᏍᎩ ᎦᏛᎬ ᎭᎵᏍᏚᎢ.\nᎾᏍᎩ ᎠᏴ ᏥᏕᎦᏓᎵᏲᎯᏎᎴᎢ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎢᎦᎫᏴᏗᏱ ᎢᎫᏓᎴᏍᏗᏱ ᏂᎦᎥ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏧᏅᎦᎸᏗᏱ ᎤᏩᏒ ᏧᏤᎵ ᎢᏧᏩᏁᏗᏱ ᎤᎾᏓᏤᎵᏛ ᏴᏫ, ᎤᎵᏂᎩᏛ ᎤᎾᏓᏅᏘ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ.\nᎿᏉᏃ ᎾᏍᎩ ᎤᏂᏃᎮᎵᏙᎸ ᎤᏂᏣᏘ ᏚᏂᎳᏫᏤᎢ ᎠᎴ ᎤᎾᏕᏯᏔᏁᎴᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏓᎾᏛᎦᏁᎲ ᏓᏂᏬᏂᏍᎬ ᏗᏂᏏᏴᏫᎭ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒᎢ.\nᏞᏍᏗ ᎰᎱᏍᏗ ᎤᏲ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏅᏓᏳᏄᎪᏨᎩ ᏗᏥᎰᎵ, ᎣᏍᏛᏍᎩᏂ ᎨᏒ ᎤᏩᏒ ᎾᏍᎩ ᎬᏩᏓᎵᏂᎪᎯᏍᏙᏗ ᏥᎩ, ᎾᏍᎩ ᎤᏚᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎬᏩᎦᏘᎠ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏂᎷᏤᏗᏱ ᎠᎾᏛᎩᏍᎩ.\nᏔᎵᏁᏃ ᎤᏓᏱᎴᎢ. ᏂᎪᎯᎸᎾᏃ ᎣᏂ ᎾᏍᎩ ᎾᎥ ᎠᏂᏙᎾᎢ ᏔᎵᏁ ᎯᎠ ᏄᏂᏪᏎᎴ ᏈᏓ, ᎤᏙᎯᏳᎯ ᏂᎯ ᎾᎿ ᎮᎳ; ᎨᎵᎵᏰᏃ ᎮᎯ, ᎠᎴ ᎪᏬᏂᏍᎬ ᎤᏠᏱ ᎢᎩ.\n”ᎠᏯ ᎨᎵᏍᎬ ᎨᏍᏗ ᎪᎱᏍᏗ ᎡᎳᏗᎨ ᏱᎩ ᎪᎱᏍᏗ ᏧᎵᎬᏩᏟ ᏱᎨᏒᎾ.\n“ᎭᏗ,” ᎤᏛᏁ.\n”ᎠᏍᏓ ᎦᏲᏟ ᏣᎾ ᎬᏆᏙᎵᏍᏗ? ᎤᏛᏛᏁ ᏫᎵᎻ.\nᏄᏍᏛᏉ ᏓᎾᏓᎧᏂᏍᎬ, ᏧᏃᏰᏂ ᏓᎾᏓᏒᏂᎲ ᎤᎸᏫᏒ ᏯᏥᏁᎸ, ᎤᏃᏴᎬ ᏳᎾᏟᏃᎮᎸ.\nᎢᎬᏩᏂᏴᎮᏃ, ᎠᎴ ᎢᎬᏩᎵᎥᏂᎴᎢ, ᎠᎴ ᎠᏒᎭ ᎢᎬᏩᏂᎩᏍᏔᏁᎢ.\nᎥᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎾᎯᏳ ᎩᎳ ᎤᏒ ᏗᏓᎾᎾ ᎠᏇᏙᎸ ᎥᎦᎢᏒ ᏗᏇᏅᏒ ᎢᏗᏜ.\nᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᏗᏓᎴᏅᏗᏍᎩ ᎠᎴ ᎠᏍᏆᏗᏍᏗᏍᎩ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᏤᎭ, ᎠᎴ ᏤᎲᎩ, ᎠᎴ ᏤᎮᏍᏗ, ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏥᎩ.\nᎤᏔᎾᏃ ᏂᎦᏅᏅ 33 ᎪᏪᎵ Ꮲ ᎩᏄᏘᏗ ᎢᏳᏟᎶᏓ ᎠᏂᎩᏓ ᏦᎨᏅᏒ ᎠᏎᏃ ᎠᎨ ᎢᏴ ᏗᎦᏁᎶ ᎾᎥ ᎢᏦᎦᏓᎵ ᎥᏍᎩᏃ ᏂᎪᎯᎸ ᎠᎪᏩᏛᏗ ᎨᏐ ᎡᎳᏗ ᎠᎢᏒ.\nᎯᎠ ᏫᏂᏚᏪᏎᎴᎢ; ᎦᏙ ᏓᏍᎩᏁᎵ ᎠᏴᏃ ᏙᏓᏨᏲᎯᏎᎵ? ᏦᎠᏍᎪᎯᏃ ᎠᏰᎵ-ᎠᏕᎸ ᏕᎬᏩᏌᏍᏓᏁᎴᎢ.\nᎬᏩᏘᏂᏎᏃ ᎤᏂᏂᏴᎮ ᎩᎶ ᎢᏳᏍᏗ ᏌᏩᏂ ᏧᏙᎢᏛ, ᏌᎵᏂ ᎡᎯ, ᏙᏗᎦᎶᎨᏒ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩᏃ ᎤᎾᏃᏞᏗᏍᏔᏁ ᏧᏓᎿᏩᏛ, ᎾᏍᎩ ᏥᏌ ᎠᎢᏒ ᎣᏂᏗᏢ ᎤᏪᏅᏍᏗᏱ.\nᎬᏂᎨᏒ ᏂᎦᎵᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎠᎬᏱ ᏯᏗᏗ ᎩᎶᎢ, ᎯᏓᎵᏍᏓᏴᎲᎦ!” \nᎧ ᏗᎣᏈᎵ, ᎢᎬᏱᏱ ᏣᏉᏪᎳᏅᎩ ᎧᏃᎮᏍᎬᎩ ᏂᎦᏛ ᏥᏌ ᎤᎴᏅᎲ ᏚᎸᏫᏍᏓᏁᎸ ᎠᎴ ᏚᏕᏲᏅᎢ,\nᎤᎩᏠᏫᏎ, ᎢᏯᏏᏔᏛ ᎢᏴ ᎠᎧᏘᏏ ᎢᏣ, ᏧᏏᎳᏛᏙᏗ ᏗᎬᏗ ᏫᏚᏒᏂᎴ ᏚᏏᎳᏛ, ᏃᏗ ᎠᎧᏘᏏ ᎢᏣ ᏭᏏᎳᏛᏁ.\nᎧᏁᏍᎦ ᎦᏓᏍᎬ ᏧᎧᏌᏔᏁᎢ ᎠᏍᎪᎵ ᏧᏍᏆᏴᏍᏗ.\nᏒᎧᏔ ᏕᏧᎬ ᎡᎳᏗᏣ, ᏅᏃᎯ ᏩᏓᏍᏆᏗᏍᎬ, ᎭᎾᎾ ᎤᏗᏅᏗ ᎤᏲ ᎤᏬᏒᎮᎢ ᎰᎻ. ᎭᎾᎾ ᏭᏕᎨᎢ ᎩᎶ ᏳᏚᎵᏍᎬᎾ.\nᎠᎴ ᎾᏍᎩ ᎣᏏ ᏄᏂᏰᎸᏒᎾ ᏥᎨᏎ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏂᎦᏙᎥᏒ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ, ᎤᏁᎳᏅᎯ ᏕᎤᏲᏎ ᎨᏥᏐᏅᎢᏍᏔᏅᎯ ᎢᏳᎾᎵᏍᏙᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᎾᏛᏁᏗᏱ;\nᏗᏂᏲᏟ ᎤᏂᎬ ᎤᏂᏍᏆᏂᎪᏒ ᏄᏍᏛ ᎠᎩᏍᏗ, ᏃᎴ ᎠᏂᏲᏍᎩ ᎠᏂᏧᏣ, ᎤᎵᏐᏯᏍᏗ ᎠᏍᎦᏰᎬᏍᏔ, ᎣᎭᏂ ᎠᎾᎢᏒ ᎣᏍᏓ ᎤᏂᏰᎸᎲ.\n”ᏘᏅᏗ ᏙᎯ ᎡᏓᏍᏗ,” ᎤᏛᏁ ᏌᏌ.\nᏥᏌᏃ ᎤᎦᏔᎲᏒ ᎠᎴ ᎤᎪᎲ, ᎯᎠ ᏄᏪᏒᎩ; ᎠᏇᏥ, ᎤᎦᎵᏍᏗᏉ ᎭᏓᏅᏓᏓ. ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ. ᎠᎨᏴᏃ ᎾᎯᏳᏉ ᎤᏗᏩᏒᎩ.\nᎠᏯᏖᏂᎨ ᏄᏍᏕ ᎦᎸᎶᎢ ᏃᎴ ᎤᎦᏃᏩ ᎦᏃᎸᎥᏍᎨ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᎤᏕᎸᏓ ᎢᎦᎬᏁᏗ ᏱᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎤᎦᎵᏍᏗ ᎢᏣᏓᏅᏛ ᎠᏴ ᎣᎩᎦᎵᏍᏓᏛᎩ; ᎥᎥ, ᎠᎴ ᎤᏟ ᎢᎦᎢ ᎣᎦᎵᎮᎵᏍᏗ ᏄᎵᏍᏔᏅᎩ, ᏓᏓᏏ ᎠᎵᎮᎵᎬ ᎢᏳᏍᏗ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎤᏓᏅᏙ ᏂᏥᎥ ᎡᏥᎦᎵᏍᏓᏕᎸᎢ.\nᎠᏂᏐᎢᏃ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᏥᏳ ᎤᎾᏦᏛᎩ, ᎤᏂᎷᏨᎩ, ᎥᏝᏰᏃ ᎢᏅᎯᏳ ᏱᎨᏎ ᏙᏱ, ᏔᎵᏧᏈᏉ ᎢᏯᎵᎩᏳᏍᏈᏛ ᎢᏴᏛ ᏅᏩᏍᏛᎩ, ᎠᎦᏯᎷᏗ ᎠᏣᏗ ᎠᎧᎵᏬᎯ ᎠᏂᎾᏏᏁᎲᎩ.\nᎠᏴ ᏓᏏᏯ, ᎯᎠ ᎪᏪᎵ ᎠᏆᏪᎳᏅᎯ ᏫᏨᏲᎵᎦ ᎤᎬᏫᏳᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᏍᏉᏟ ᎠᏯᏂᎭ.”\nᎤᏩᏂᎦᏢ ᏭᏭᏓᎸᏤᎢ\nᎢᏳᏃ ᏗᏍᏓᏓᏅᏟ ᎢᏣᏍᎦᏅᏎᎮᏍᏗ, ᎮᎨᏍᏗ ᎯᏃᏁᎮᏍᏗ ᎤᏍᎦᏅᏨ ᎢᏍᏛᏒᏉ ᎨᏒᎢ; ᎢᏳᏃ ᎢᏣᏛᏓᏍᏓᏁᎮᏍᏗ, ᎯᏩᏛᎮᏍᏗ ᏗᏍᏓᏓᏅᏟ.\nᏐᏉ ᎢᎦ ᏒᎮᏱᏣ, ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎠᎾᏓᏬᏍᎬ ᏧᎾᎿᏬᏍᏗ ᏚᎾᎿᏬᎡ, ᎨᏴᎢ ᎤᎾᏓᏬᎥᏎ.\nᏧᏌᎨ ᏗᎦᏌᏆᎸ ᏓᎩᎦᎷᏴ ᏄᎾ, ᎦᏖᏌᏗ ᏫᏓᎩᏝᏅ, ᎦᏚᎢᏣ ᎪᏒᏅ ᏃᎴ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ, ᎠᏍᎦᏃᎵ ᏓᏋᎭᏂᏍᏔᏅ ᎦᏃᏍᎬ ᎦᏚᎢᏣ.\nᎺᎵᏃ ᎾᎯᏳ ᏚᎴᏁᎢ, ᎤᏩᏅᏤ ᎣᏓᎵ ᎨᏒ ᏭᎶᏎᎢ, ᏧᏗᏱ ᎦᏚᎲ ᏭᎷᏤᎢ.\nᎾᏍᎩ ᎤᏬᎳ ᎩᎶ ᎢᏳᏍᏗ ᎦᏁᎸ ᏌᏩᏂ ᏧᏙᎢᏛ, ᏗᏑᏫᏍᎩ, ᎾᏍᎩ ᎠᎹᏳᎶᏗ ᏥᎦᏁᎸ, ᎾᏍᎩ ᏓᏣᏃᏁᎵ ᎢᏣᏛᏁᏗᏱ.\nᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎥᏝ ᎢᎬᏱᏗᏢ ᏱᏄᏍᏗ ᏗᏂᎧᏅᎢ.\nᏆᎴᏗᏃ ᎤᏬᏪᎳᏅᎩ ᎠᎪᎵᏰᏗ, ᎠᎴ ᏓᏓᎿᏩᏍᏛ ᎤᏪᏯᎸᏅᎩ; ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎩ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ, ᎤᎬᏫᏩᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ.\nᎠᎴ ᎦᏃᏙᏗᏱ ᏛᏂᎶᎯ, ᎢᏳᏃ ᏂᏚᎾᏑᎴᎲᎾ ᏱᎩ, ᎥᏝ ᏴᎬᎾᎵᏍᏓᏴᎲᎦ. ᎠᎴ ᎤᏣᏔ ᏄᏓᎴ ᎪᎱᏍᏗ ᏧᏂᎧᎿᏩᏛᏍᏗ ᏄᏅᏁᎸ, ᎾᏍᎩ ᏧᎵᏍᏈᏗ ᏗᎫᎯᎶᎥᎢ ᎠᎴ ᏗᏖᎵᏙ, ᎠᎴ ᎥᏣᏱᏗᎪᏢᏔᏅᎯ ᏗᏖᎵᏙ, ᎠᎴ ᏗᏂᏢᏗᏱ.\nᎣᎯᏍᏙᏗ ᎠᎵᏍᏓᏴᏗ ᏂᎬᏁᎮᎢ ᏫᎵᎻ ᎠᎳᏂ.\nᏱᏥᏍᏆᏗᏍᎬᎾ ᎠᏓᏅᏖᏗ.\nᏃᏗ ᎤᏩᏃᏫᏍᎨ ᏫᎵᎻ, ᎠᏎᏃ ᎪᎱᏍᏗ ᏱᏁᎵᏍᎬᎾ ᎨᏎ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎢᏣᎵᏍᏓᏴᎲᏍᎨᏍᏗ, ᎠᎴ ᎢᏣᏗᏔᏍᎨᏍᏗ, ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᏂᏣᏛᏁᎮᏍᏗ, ᎤᏁᎳᏅᎯ ᏅᎸᏉᏗᏍᎩ ᎨᏎᏍᏗ ᏂᎦᎥ ᏂᏣᏛᏁᎲᎢ.\nᎾᏍᎩ ᎢᏣᏅᏓᏗᏍᏗᏱ ᎧᏃᎮᏛ ᎢᎸᎯᏳ ᎤᏂᏃᎮᏛ ᎨᏥᎸᏉᏗ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᎠᏴ ᏦᎦᏕᏲᏅᎯ ᎣᎩᏅᏏᏛ ᎤᎬᏫᏳᎯ ᎠᎴ ᏗᏍᏕᎵᏍᎩ.\nᏌᏩᏂ ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏣᎬᏫᏳᎯ, ᎭᏢ ᎭᎢ? ᏥᏌ ᎤᏁᏤᎸᎩ; ᏫᏥᎦᏛ ᎥᏝ ᎿᏉ ᏴᎨᏍᎩᏍᏓᏩᏚᎦ; ᎣᏂᏍᎩᏂ ᏓᏍᎩᏍᏓᏩᏕᏏ.\nᎠᏎᏃ ᏚᏭᎪᏔᏁᎢ ᎤᏩᏛᏗ ᏱᎪᎵᎬᎾ ᎤᎾᎵᎢ.\nᏧᏂᏲᎱᏒᎯᏰᏃ ᏓᎾᎴᎯᏌᏅᎭ, ᎥᏝ ᏱᏓᎾᏕᏒᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ ᏱᏗᎨᏥᏰᎪᎢ; ᏗᏂᎧᎿᏩᏗᏙᎯᏍᎩᏂ ᎦᎸᎳᏗ ᎠᏁᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᎾᏍᎩᏯ ᎨᏐᎢ.\nᎾᏍᎩ ᎬᏂᎨᏒ ᏄᏩᏁᎸ ᎠᎩᎾᏄᎪᏫᏎᎸᎩ ᎤᏕᎵᏛ ᎨᏒᎢ, ᎦᏳᎳ ᎢᎸᏍᎩ ᎢᎧᏁᏨᎯ ᎬᏗ ᏥᏨᏲᏪᎳᏁᎸ,\nᎾᎥᏂ ᎤᏬᏢ ᏍᎦᏰᎬᏍᏔ ᏕᎪᏪᎵᏍᎬ ᎠᏨᏍᏛ ᎧᏃᎮᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ ᎢᎦ ᎨᏒ.\nᎤᎵᏏᎩ ᏃᎴ ᎤᏃᏴᎵᏓ ᎣᎯᏍᏙᏗ.\n”ᏃᏗ ᎠᎴᎾ ᎤᏦᎠᏎᏗ,” ᎤᏪᎵᏎ ᏫᎵᎻ.\nᎩᎶ ᎤᏓᎵᎢ ᎢᎠᏓᎡᎨᏍᏗ, ᎠᎴ ᏅᏩᏓᎴ ᎠᏓᏰᎨᏍᏗ, ᎠᏓᏲᏁᎮᏍᏗ; ᎩᎶᏃ ᎠᎦᏓᎢᏅᏛ ᎠᏓᏰᎨᏍᏗ ᎠᏓᏲᏁᎮᏍᏗ.\nᎠᏎᏃ ᏥᏌ ᎤᏙᎴᎰᏒ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬᎢ, ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎦᏙ ᎢᏣᏓᏅᏖᎭ ᏙᏗᎶᏓᏅᏛᎢ?\nᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᏔᎵ ᏗᏣᏄᏬ, ᎠᎴ ᏗᎳᏑᎶ, ᎠᎴ ᏗᏙᎳᏅᏍᏗ; ᏧᎸᏫᏍᏓᏁᎯᏰᏃ ᎤᏩᏛᏗ ᎨᏐ ᎤᎵᏍᏓᏴᏗ.\nᎾᏍᎩᏯᏍᎩᏂ ᎯᏍᏓᏱᏳ ᎨᏒ ᎠᎴ ᏣᏁᏟᏴᏛ ᏂᎨᏒᎾ ᏣᎾᏫ ᎯᏟᏏᎭ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎾᎯᏳ ᎢᎦ ᎠᎵᏱᎶᎸᎭ ᎤᏓᎳᏬᎯᏍᏗ ᎨᏒ ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᏧᏭᎪᏙᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏒᎭ;\nᎠᏆᏛᏅ, ᏣᏃᎮᏗ ᎨᏒ, ᏣᏓᏅᏖᏗᏍᎨᎢᏧ ᏕᏣᎪᎲ ᏚᏂᏰᏝᎸ ᏚᎾᏥᎶᎥ ᏂᏓᎾᏛ ᏗᏂᏲᏟ ᏗᎦᎶᎯᏍᏗ ᏓᎭᏦᎲᏴ, ᏧᏂᏍᏗ ᏥᎨᏎ ᏓᏳᏓᎴᏅᏓ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏂᎯ ᏱᏣᏠᏯᏍᏗᏍᎨᏍᏗ ᎤᎾᎵᏩᏛᎡᎲᎢ.\nᏂᎦᏓ ᎤᎾᎩᎸᏁ ᏃᎴ ᎤᏁᏅᏎ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ ᎠᎬᏱᏣ.\nᏂᎦᏓ ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎦᏛ ᎠᏂᎨᏯ ᎣᏍᏓ ᎠᏓᏅᏓᏗᏍᎩ ᎠᏂᎪᏩᏘᏍᎬ.\nᎥᏝᏍᎩᏂᏃᏅ ᎦᏳᎳ ᏥᏓᎩᏂᏴᏐ ᎾᏍᎩᏯ ᏯᎩᏰᎸᎭ, ᎥᏝ ᎠᎴ ᎠᎩᏍᏆᏛᎯ ᎦᏳᎳ ᏯᎩᏰᎸᎭ; ᏥᏍᏓᏩᏕᎦᏍᎩᏂ, ᎢᏳ ᏰᎵ ᏱᎩ, ᎾᏍᎩ ᏗᎩᏂᏴᏗᏱ ᎾᏍᎩ ᎾᏍᏉ ᎤᎬᏩᎵ ᎦᎶᏁᏛ ᏥᏌ ᏥᏓᎩᏂᏴᎲᎩ.\nPerry ᏥᎾᏒᏅ ᎤᏍᏖᎸᏗ ᎠᏓᏍᏔᏴᎲᏍᎩ, ᎠᏂᏐ ᎠᏂᏔᎵ ᎣᎩᎵᏦᏩᏛ ᎾᎥᏂ ᎤᎾᎦᏎᏍᏛ.\nᏍᎩᏴᏃ ᏲᎾ ᎤᏤᎵᎪ ᏐᏉ ᎢᏯᎦᏴᎵ ᎢᏰᏆ, ᎤᏩᏌ ᎤᏤᎵᎪ, ᏃᎴ ᎠᏯ ᎠᏆᏤᎵᎪ ᏰᎵ ᎢᏰᏆ, ᎠᏎᏃ ᏓᏆᏓᏚᎬ, ᏧᏓᎸᏏᏴᏓ, ᎾᎥᏂᎨ ᎤᏁᏍᎩᎸ ᏥᏍᏆ ᎠᏣᏗ ᏗᎦᏯᎩᏍᎩ.\n“ᏕᏥᏰᏲᎾ,” ᎤᏪᎵᏎ ᏥᏍᏚ. \nᏄᎬᏫᏳᏒ ᎠᎦᏰᎬᏍᏔ ᎦᏰᏌᏛ ᏭᏭᏍᏘᏅ ᎤᏴᏣ ᎤᎦᎹ ᎠᏥᏍᏛ ᎤᏃᏮ, ᎤᏅᏍᎩᎳᏛ ᎦᏰᏌᏛ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᏯᏙᏤᎮᏍᏗ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᏴᏫᏰᏃ ᎬᏅ ᎥᏝ ᎤᏣᏘ ᎤᎿᎥ ᏳᎵᏍᏕᎸᏙᏗ.\nᎠᏂᏐ ᎠᏂᏣᏗ ᎤᏍᏗ ᎠᏣᏗ ᎠᏃᏎᎮ.\nᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎰ ᎤᏩᏛᏗ ᎠᏗᏅᏓ ᎠᏙᎯ.\nᎾᏍᎩ ᎯᎠ ᎠᏙᎴᎰᏍᎬᎢ ᏅᏧᎵᏍᏙᏔᏁᎢ, ᎦᎶᏁᏛ ᏧᎴᎯᏐᏗ ᎨᏒ ᎤᏃᎮᎴᎢ, ᎾᏍᎩ ᎤᏓᏅᏙ ᏫᏂᏓᏥᏲᎯᏎᎸᎾ ᎨᏒ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏇᏓᎵ ᏄᎪᏒᎾ ᎨᏒᎢ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᎪᎯ ᏣᏁᎭ ᎥᏝ ᏴᏛᏂᎶᏐᏂ, ᎬᏂ ᏂᎦᏛ ᎯᎠ ᏧᏓᎴᏅᏛ ᏂᎦᎵᏍᏔᏅᎭ.\nᏚᏁᏤᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᎡᏥ, ᎠᎴ ᎣᏣᎵᏅᏟ?\nᎤᏍᏗ ᎠᎪᏙᏗ ᏂᎦᏛ ᎦᎸ ᎠᎪᏗᏍᎪᎢ.\nᎠᎴ ᏑᏓᎵᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ ᏕᏥᎦᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎦᏙᎯ ᎤᏣᏘ ᎤᎵᏖᎸᏅᎩ; ᎠᎴ ᏅᏙ ᎢᎦ-ᎡᎯ ᎬᎿᎨ ᏄᎵᏖᎸᏅᎩ ᎾᏍᎩᏯ ᎤᏏᏕᏅ ᎠᏄᏬ ᎪᏢᏔᏅᎯ, ᏅᏙᏃ ᏒᏃᏱ ᎡᎯ ᎩᎬ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏅᎩ.\nᎠᎴ ᎯᎨᏳᏎᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎲᏗᏍᎨᏍᏗ ᏂᎬ ᏣᎾᏫ, ᎠᎴ ᏂᎬᏣᏓᏅᏙ, ᎠᎴ ᏂᎬ ᏣᏓᏅᏖᏗᏱ, ᎠᎴ ᏂᎦᎥ ᏣᎵᏂᎬᎬᎢ. ᎯᎠ ᎾᏍᎩ ᏭᏓᎪᎾᏛᏛ ᎦᎸᏉᏗ ᏗᎧᎿᏩᏛᏍᏗ.\nᎤᏃᏴᎵᏗ ᎤᏍᏆᏄᏤ ᏃᎴ ᎤᎨᎢ ᎤᎵᏍᏓᏴᏗ, ᎤᏩᏅᎬ ᏂᎦᏓ ᎤᎩᏍᏗ.\n”ᎦᏅᎯᏓ, ᏃᎴ ᎤᏬᏍᎩᎵ,” ᎤᏛᏁ ᎰᎻ.\nᎢᏓᎵᏅᏟ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏓᎧᎿᏩᏗᏙᎮᏍᏗ ᏗᏣᏓᏅᏙ. ᎡᎺᏅ.\nᎥᏳᎩ ᎠᏂᏱᏙᎯ ᏗᏥᎶᏍᏔᏅ ᎯᎠ.\nᎠᎴ ᎣᎩᏁᏤᎸᎩ ᏴᏫ ᏦᏣᎵᏥᏙᏁᏗᏱ, ᎠᎴ ᎣᎩᏃᎮᏗᏱ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᎧᏅ ᏗᎫᎪᏓᏁᎯ ᏄᏩᏁᎸ ᏗᏅᏃᏛ ᎠᎴ ᏧᏂᏲᎱᏒᎯ.\n”ᎡᎭ, ᎡᏝᏪᎯ!” ᎤᏛᏁ ᎤᏃᏕᎾ ᎠᏓᎯ.\nᎤᎵᏨᏓᏋ ᎤᏬᏂᏒ ᏃᎴ ᏙᎩᎾᏗᏔᎲ.\n“ᎯᎧᏔᎭ ᏍᎩᎾᎾ ᏱᏅᎬᎦᎵᏍᏓ.\nᎯᎠᏰᏃ ᏴᏫ ᎤᏂᎾᏫ ᎤᎵᏦᎲᏒ, ᎠᎴ ᏓᏂᎵᎷᎬ ᎦᏂᎵᏳ ᎠᎾᏛᎩᎠ, ᎠᎴ ᏗᏂᎦᏙᎵ ᏚᏂᏍᏚᎭ; ᎾᏍᎩ ᏗᏂᎦᏙᎵ ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏓᏂᎵᎷᎬ ᏗᎬᏩᎾᏛᎪᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏂᎾᏫ ᎬᏩᏃᎵᏍᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏚᎾᏓᏅᏛ ᏧᏏᏁᏟᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎠᎴ ᏗᎦᎦᏥᏅᏬᏗ ᏂᎨᏒᎾ.\nᎦᏃᏍᎩᏍᎩ ᎦᎷᎪᎢ, ᎤᏃᏍᎩᏍᏗᏱᏉ ᎠᎴ ᎤᏓᎯᏍᏗᏱᏉ ᎤᏰᎸᏐᎢ: ᎠᏴ ᎠᎩᎷᏥᎸ, ᎬᏂᏛ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᎾᏤᎵᎦ ᎢᏨᎵᏍᏙᏗᏱ.\nᏃᎴ ᏍᏉ, ᎤᏲ ᎧᏃᎮᏓ ᏥᏲᎦ.\nᎢᏳᏍᏗᏉ ᏧᎷᏫᏍᏔᏁᎯ ᏥᏍᏕᏥ ᎯᏤᎵᏍᎪᎢ?” \nᏛᎦ ᏕᎦᏂᏱᏍᎪ ᏃᎴ ᎩᎦ ᎤᏂᏁᎲ ᎭᏗᏔᏍᎪᎢ.\n”ᎭᏗ,” ᎤᏛᏁ ᎤᏙᏓ.\nᏗᏥᎪᎵᏯ ᎠᏪᎵ, ᎾᎿᏰᏃ ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎢᏥᎭ ᎢᏥᏰᎸᎭ, ᎠᎴ ᎾᏍᎩ ᎾᎪᏪᎵ ᎠᏴ ᎠᎩᏃᎮᏍᎩ.\nᎠᏆᏛᏅ.\nᎠᏎᎩ ᏔᎵᏁᎢ ᏗᎪᏏᏐᏗ ᏫᎬᎾᎩᎡᏗ ᏛᏣᏚᎸ.”\nᎨᏍᏗ ᎯᎸ ᎡᏆ ᏍᎦᏚᎩ ᏍᎩᏲᏍᏓ ᏰᎭ ᎾᏍᎩ ᎢᎦᏤᎵ ᏏᏆ.”\nᏚᏳᎪᏛᎩ ᎣᏍᏛ ᎢᎦᏓᏅᏓᏗᏍᏗᏱ, ᎠᎴ ᎢᎩᎵᎮᎵᏍᏗᏱ; ᎯᎠᏰᏃ ᎡᏣᏅᏟ ᎤᏲᎱᏒᎯ ᎨᏒᎩ, ᏔᎵᏁᏃ ᎢᎡᎭ, ᎠᎴ ᎡᏓᏠᏨᎯ ᎨᏒᎢ, ᎢᎠᏥᏩᏛᎲᏃ.\nᎠᏌᎹᏓᏗ.”\n“ᏍᎩ, ᏍᎩ, ᏍᎩ!” ᎠᎾᏗᏍᎨ, ᏳᏂᎪᎭ ᎠᎵᏍᏓᏴᏗ.\nᎢᏨᏅᏒᎩ ᏫᏥᏍᎫᏕᏍᏗᏱ ᎾᎿ ᏂᎯ ᏗᏥᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ; ᏅᏩᎾᏓᎴ ᏗᏂᎸᏫᏍᏓᏁᎸᎩ, ᏂᎯᏃ ᎢᏥᏴᎸ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ.\nᎥᏝ ᎠᎴ ᎾᏍᎩ ᏰᎵ ᏂᎪᎢ ᏱᏇᎵᏎ ᏫᎬᎷᏤᏗᏱ; ᎯᏁᎩᏉᏍᎩᏂ, ᏥᏅᏏᏓᏍᏗᏃ ᏧᏳᏗᏩᏏ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᎭ ᎠᏆᏢᏉᏙᏗ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎨᏒᎢ.\nᎤᏣᏓ ᎣᏍᏓ ᏥᎾᏌᎠ ᏏᏆ.\nᏚᏂᏄᏪᏒᏃ, ᎩᎦᎨ ᎦᏌᎴᎾ ᎤᏂᏄᏬᎡᎢ.\nᎾᏍᎩᏃ Ꮎ ᎠᏂᏍᎦᏯ, ᎤᏂᎪᎲ ᎤᏍᏆᏂᎪᏗ ᏥᏌ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎤᏙᎯᏳᎯᏯ ᎾᏍᎩ Ꮎ ᎠᏙᎴᎰᏍᎩ ᎡᎶᎯ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ.\nᎾᏍᏉᏃ ᏧᎾᏓᎵᎢ ᎨᏥᎸᏉᏗ ᎨᏎᏍᏗ, ᎤᏐᏅ ᎠᎾᏓᏃᎮᎵᏙᎯ ᏂᎨᏒᎾ, ᎠᏁᏯᏔᎯᏍᎩᏂ ᎨᏎᏍᏗ, ᏰᎵᎦᏯ ᎢᏯᎾᏛᏁᎯ ᏂᎦᎥ ᎪᎱᏍᏗ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎥᏓᎸ ᏭᏂᎶᏒᎩ;\nᎧ ᏂᎯ ᏗᏤᎿᎢ ᏗᏣᏠᏱᎦ ᎠᎴ ᏗᏥᏴᎳ ᏫᏂᎦᎵᏍᏙᏓ ᎢᏥᎩᎵᏲᎢᏍᏗ ᎢᏥᎷᏤᏗ ᏥᎩ.\nᎦᏁᎦ ᏗᎪᏒᏍᏔᏅ ᎠᏂᏁᎸ ᏃᎴ ᏧᎩᏓᏟ ᏗᎪᏒᏍᏔᏅ ᏚᎾᎵᏍᏚᎸ ᎠᏎᏱᎩ.\nᎿᏉᏃ ᎢᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎯᎠ ᏱᎩ ᏧᎾᏚᎵ ᎤᏂᎯᏍᏗᏱ?\nᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏙᎴᎰᏍᎩᏍᎪ? ᎥᎥ, ᎢᏨᏲᏎᎭ, ᎠᎴ ᎤᏟᎯᏳ ᎡᏍᎦᏉ ᎠᏙᎴᎰᏍᎩ.\nᎿᏉᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᏂᎦᏛ ᏴᏫ ᏕᎨᎦᏬᎥ ᏥᏌ ᎾᏍᏉ ᎠᎦᏬᎡᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏅ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏎᎢ,\nᏄᏓᎴ ᎤᎵᏍᎪᎵᏙᏛ.\nᎢᎦᏃ ᎨᏒ ᏓᏕᏲᎲᏍᎨ ᎤᏛᎾᏗᎦᏔᏫᎢᏍᏗᏱ; ᎤᏒᏃ ᎦᏄᎪᎨᎢ, ᎠᎴ ᎣᎵᏩᏲᎯ ᏣᏃᏎᎰ ᎣᏓᎸ ᎤᏒᎯᎮᎢ.\nᎾᏍᎩ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏅᏏᏙᎯ ᏓᎦᎷᏥ ᎾᎯᏳ ᎢᎦ ᎾᏓᎦᏖᏃᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎢᏳ ᏁᎵᏍᎬᎾ ᎨᏒᎢ,\nᎤᏂᎬᏫᏳᎯ ᎠᎴ ᎾᏂᎥ ᎠᏰᎵ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎠᎴ ᏄᎾᏰᎯᏍᏛᎾ ᎢᎦᎴᏂᏓᏍᏗᏱ, ᏕᏗᎧᎿᏩᏗᏒ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\n”ᎭᏂᏉ ᎤᏩᏌ ᎬᏇᏓᏍᏗ ᎠᏎ ᏯᏆᏚᎵᏍᎬᎾ ᏱᎩ.\nᎰᎻ! \nᎾᏍᎩ ᎢᏰᎵᏍᎩ ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᏓᏅᏖᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏴ ᎾᏍᎩᏯ ᏃᎦᏍᏛ ᎣᏥᏬᏂᏍᎬ ᏙᏦᏪᎵᏍᎬᎢ, ᎾᎿ ᏫᏃᏤᏙᎲᎾ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏃᎦᏍᏕᏍᏗ ᏙᎩᎸᏫᏍᏓᏁᎲ ᎿᏉ ᎾᎿ ᏬᏤᏙᎮᏍᏗ.\nᎤᎪᏏᏓ ᎤᏪᏥ ᏭᎶᏒᏍᏛ ᎠᏒᎩ.\n“ᎠᏕᎳᎨ ᏱᏕᏍᎬᏏ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏄᏪᎲᎾᏍᎩᏂ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎾᏍᎩ ᏗᎨᏫᏉ ᎠᎴ ᎢᏴᏛ ᎬᏩᎪᏩᏛᏗ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏩᎨᏫᏒᎯ ᎠᏥᏅᎦᎸᏛ ᎨᏒ ᎢᎸᎯᏳ ᎤᏍᎦᏅᏥᏙᎸᎢ.\n”ᎲᎦ ᎢᏴ ᎭᏓᏅᏖᏍᎪ?” ᎤᏓᏍᏗᏰᏕ ᏫᎵᎻ.\nᎠᎺᏉᎯ ᎤᎿᎸᎯ ᏗᎵᏍᏗᎳᏁᎩ, ᎤᏅᏒ ᎤᎾᏕᎰᎯᏍᏗᏍᎩ ᎠᏂᎾᏄᎪᏫᏍᎩ; ᏃᏈᏏ ᎤᏂᏅᏅ ᎤᎾᏞᏛ, ᎾᏍᎩ ᎤᏣᏘ ᎬᎿᎨ ᎤᎵᏏᎬ ᏥᎨᎦᏛᏅᎢᏍᏓᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ.\nᎣᏂᏃ ᏥᎻ ᎤᎪᎮᎢ; ᎿᏉᏃ ᏂᎦᏛ ᎨᏥᏅᏏᏛ [ᎢᎬᏩᎪᎮᎢ.]\n”ᎯᏯᎦᏎᏍᏕᏍᏗ ᏣᏄᏏ!” ᎤᏁᎷᏁ ᏩᎦ.\nᎯᎦᏓᏅᏖᏍᎪ ᎯᎸᎢᏴ.\nᏍᎩᏄᏍᏛᎢ ᎣᏍᏓ ᎨᏐ ᎤᎾᏗᏍᎦᎳᏁᏗ ᎠᎦᎵᎲ.\nᎾᏍᎩ ᎤᏧᏈᏍᏗ ᏥᎩᏐᏅᏰᎵ, ᏥᏌ ᎦᎶᏁᏛ ᎢᎩᏍᏕᎵᏍᎩ ᎢᏳᏩᏂᏌᏛ;\nᎤᏤᎵ Pontiac ᏓᏆᎴᎳ, ᎦᏓᎥᎢ ᏗᎪᏪᎵ “H-2439” ᎯᎲᎾ ᎤᏣᏗᎾ ᏗᏍᏔᏲᏍᏙᏗ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏓᏁᎸᎢ!”\nᎿᏉᏃ ᏛᎾᎴᏅᎯ ᎯᎠ ᏂᏙᏛᏂᏪᏎᎵ ᏙᏓᎸᎢ, ᏍᎩᏯᏐᎥᎦ; ᎠᎴ ᏚᏌᎯᎸᎢ, ᏍᎩᏳᏢᎥᎦ.\nᏗᎦᏃᏣᏢᏍᎩ ᎪᏪᎵ ᎤᏩᏕᏯᏍᏔᏁᎢ ᎢᏈᎬᎢ, ᎥᏍᎩᏃᎢᏳᏍᏗ ᎩᎶ ᎤᎳᏍᏓᏒᏗ ᏂᎨᏒᎾ.\nᎯᏆᎵᏏ ᏘᎨᏫ! ᎢᎬᏱ ᎯᏅᎦᎸ ᎠᏫᏂᏗᏢ ᎤᎵᏍᏈᏗ ᎠᎴ ᎠᏖᎵᏙ, ᎦᏚᎢᏗᏢᏃ ᎾᏍᏉ ᏧᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ.\nᏔᎵ ᎢᏳᎾᏙᏓᏆᏍᏗ ᎢᏳᏕᏘᏴᏓ ᏄᎵᏍᏔᎾ, ᏙᏱᏨ ᏭᏂᎧᏁ.\nᎯᏍᎩᎦᏏᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᏓᏈᎵᏯ ᏏᏌ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᏋᏗᏯ ᏆᎴᏗ ᏧᏗᏱ ᏣᎦᏁᎶᏗ ᎨᏎᎢ, ᎠᎴ ᎡᎶᏛ ᎨᎵᎵ ᏍᎦᏚᎩ ᎨᎡ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏎᎢ, ᎤᏅᏟᏃ ᏈᎵᎩ ᎢᏚᎵ ᎠᎴ ᏝᎪᏂᏗ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏎᎢ, ᎵᏌᏂᏯᏃ ᎠᏈᎵᏂ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏎᎢ;\nᎤᎵᏍᏆᎸᏗ ᎨᏒ.\nᎠᏎᏃ ᎥᏝ ᏌᏉᎤᏅ ᏱᏄᏁᏤᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏎᎢ.\nᎤᏪᏘᎨ ᎠᎵᏑᏫᏓ ᎠᏁᏟᏙᏘ ᏲᎾ ᎢᏳᏍᏗ ᎦᏚᎢ ᏥᏟᎲᎢ, ᏂᎦᏓ ᎬᏆᎧᏙᏍᏛᎢ.\nᏂᎯᏰᏃ, ᎢᏓᎵᏅᏟ, ᏗᏥᏍᏓᏩᏕᎩ ᏂᏣᎵᏍᏔᏅᎩ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏧᏗᏱ ᎠᏁᎯ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᏌ ᎬᏬᎯᏳᎲᏍᎩ ᏥᎩ; ᏂᎯᏰᏃ ᎾᏍᏉ ᎤᏠᏱ ᏕᏥᎩᎵᏲᏤᎸᎩ ᏗᏣᏤᎵᎦ ᏴᏫ, ᎾᏍᎩᏯ ᎾᏍᎩ ᏥᏚᏂᎩᎵᏲᏤᎴ ᎠᏂᏧᏏ;\nᎾᏍᎩᏃ ᎯᎠ ᎣᎦᏛᎦᏅ, ᎠᏴ ᎠᎴ ᎾᎿ ᎠᏂᎯ ᎣᏥᏍᏗᏰᏔᏅᎩ ᏥᎷᏏᎵᎻ ᎤᏪᏅᏍᏗᏱ ᏂᎨᏒᎾ.\n“ᎡᏘᏴ ᏥᎨᏎ,” ᎤᎴᏅᏔᏁᎢ, “ᎤᏬᏚᏨ ᎣᏍᏓᏓᏤᎵ ᎤᏍᏗ ᎠᎹ ᎨᏴᎢ ᏚᏏᎳᏛᏁ.\nᎢᎬᏱᏱᏃ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎩᎳ ᎢᎦ ᏥᏂᎦᎵᏍᏗᏍᎪᎢ, ᎤᏂᎷᏤ ᎠᏤᎵᏍᏛᎢ, ᏚᏂᏲᎴ ᏗᎦᏩᏒᎩ ᎾᏍᎩ ᏧᎾᏓᏁᎳᏅᎯ, ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏁᎮᎢ.\nᎾᏍᎩᏃ ᎦᏳᎳ ᏥᏂᏚᏑᏰᏐᎢ ᎾᏍᎩ ᎾᏍᏉ ᏚᏯᏅᎮᎢ; ᎠᎴ ᎾᏍᎩ ᏧᏯᏅᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏚᏭᏓᎴᏎᎢ; ᎠᎴ ᎾᏍᎩ ᏧᏭᏓᎴᏛ ᎨᏒ, ᎾᏍᎩ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᏂᏚᏩᏁᎴᎢ.\nᎾᏍᎩ ᎠᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᎠᏍᎦᎾ ᎠᎦᏔᎲᏍᎩ ᎾᎿ ᎤᎵᏓᏍᏔᏅᎯ ᎠᎢᏒᎢ, ᎾᏍᎩ ᎠᏍᏕᎵᏍᎬ ᎫᏓᎵᏍᎬ ᎠᏓᏅᏙ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᎠᏍᏚᏅᏨᎯ ᎨᏒ ᎬᏍᎦᎸᏍᎬᎢ.\nᎤᏁᎳᏅᎯ ᎯᎠ ᏴᏫ ᎢᏏᎵ ᎤᎾᏤᎵᎦ ᏚᏑᏰᏎ ᏗᎩᎦᏴᎵᎨᎢ, ᎠᎴ ᏚᏌᎳᏓᏁ ᎯᎠ ᏴᏫ ᎠᏁᏙᎯᏉ ᏥᎨᏎ ᎢᏥᏈᏱ, ᎠᎴ ᎧᏃᎨᏂ ᎤᏌᎳᏛ ᎤᏩᏔᏁ ᎾᎿ ᏙᏧᏄᎪᏫᏎᎢ.\nᎤᏕᎶᎰᏎ ᏫᎵᎻ ᎠᎾᎵᎮᎵᎬ ᎤᏂᎪᎲ.\nᏂᎯᏃ ᏗᏥᏲᎱᏒᎯ ᏥᎨᏒ ᎤᏣᏘᏂ ᏂᏣᏛᏁᎸ ᎠᎴ ᎢᏥᏍᎦᏅᏨᎢ;--\n“ᏣᏉᏍᎪ ᎠᎧᏔᏍᏔᏅ ᎫᏩᏢᏗ ᏱᎩ ᏥᏍᏕᏥ, ᎾᎨ ᎢᏴ ᏩᎦᏓᎩᏅᏓ ᏱᎨᏒᎾ?”\nᎤᏂᎦᎵᏴ ᏓᏰᏙᎲ ᏣᎵ, ᏧᏓᏍᏈᏗ ᏗᎦᏅᏍᎨᏂ, ᏐᏈᎵ ᏗᎧᎸᏗᏍᎩ ᎢᏳᏍᏗ, ᎠᏎᏃ ᏎᎦᏨ ᎠᎩᎸᏗᏍᎩ ᏐᏈᎵ.\nᎠᎴ ᏅᏓᏳᏅᏍᏗᏱ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎦᏳᎳ ᎡᏣᎵᏥᏙᏁᎸᎯ ᏥᎩ;\nᏫᏓᎩᏴᎲ ᏃᏥ ᏚᏂᎳᎦᎸᎲ ᏔᎵ ᎦᎶᏇ, ᏧᏪᏘ ᏧᎾᏓᏍᏕᏓᎵᏴᏓ.\nᎾᏍᎩᏯᎢ ᎬᏂᏛ ᎠᎦᏴᎵᎨᎢ ᎠᎩᏅᏏᏛ ᏥᎩ, ᎠᎴ ᎠᎦᏴᎵᎨ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᏥᎬᏅ, ᎾᏍᎩᏯᎢ ᎠᏴ ᎠᏆᎵᏍᏓᏴᏗᏍᎩ ᎾᏍᎩ ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎬᏁᏍᏗ.\nᎠᎴ ᎠᏍᏓᏯ ᏙᎩᎸᏫᏍᏓᏁᎰᎢ, ᎣᎬᏒ ᏦᎪᏰᏂ ᏙᏨᏗᏍᎪ ᎪᎱᏍᏗ ᎣᏣᏛᏁᎰᎢ. ᎦᏲᎩᏐᏢᏗᏍᎬ ᎣᏍᏛ ᏙᏥᏁᏤᎰᎢ; ᎤᏲ ᏃᎬᏁᎲ ᎤᏁᎳᎩ ᎣᏤᎵᏍᎪᎢ;\nᎢᏳᏰᏃ ᏱᏓᎴᏂᏙᎭ, ᎤᎬᏫᏳᎯ ᎡᏓᎴᏂᏕᎭ; ᎠᎴ ᎢᏳ ᏱᏗᏗᏲᎱᏍᎦ, ᎤᎬᏫᏳᎯ ᎡᏗᏲᎱᎯᏎᎭ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏳᏃ ᏱᏓᎴᏂᏙᎭ, ᎠᎴ ᏱᏗᏗᏲᎱᏍᎦ, ᎤᎬᏫᏳᎯ ᎡᏓᏤᎵᎦ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏂᎯ ᏌᏩᏂ ᏦᎾ ᎤᏪᏥ; ᎥᏝᏰᏃ ᎤᏇᏓᎵ ᎠᎴ ᎩᎬ ᎾᏍᎩ ᏱᏣᎾᏄᎪᏫᏎᎸ, ᎡᏙᏓᏍᎩᏂ ᎦᎸᎳᏗ ᎡᎯ.\nᎤᏂᏣᏔᏰᏃ ᏂᏚᎾᏓᏁᎶᏛᎾ, ᎠᏎᏉᏉ ᎠᏂᏬᏂᏍᎩ, ᎠᎴ ᎤᎾᏠᎾᏍᏗ, ᎨᎤᎬᏫᏳᎭ ᎾᏍᎩ Ꮎ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ;\n ᏣᏗᏲᎪ.\nᎠᎴ ᏌᏉ ᎩᎬ ᏚᏬᏢᏔᏅ ᎾᏂᎥ ᏄᎾᏓᎴᏒ ᏴᏫ ᎾᏍᎩ ᏧᎾᏁᎳᏗᏍᏗᏱ ᏂᎬᎾᏛ ᎦᏚᎢᏗᏢ ᎡᎶᎯ, ᎠᎴ ᏕᎤᏚᎪᏔᏅ ᎢᏳᎵᏍᏔᏂᏓᏍᏗᏱ, ᎠᎴ ᏫᏚᏍᏖᏅ ᎾᎿ ᏕᎨᏌᏗᏒ ᏧᎾᏁᎳᏗᏍᏗᏱ.\nᎠᏏᏉᏃ ᎠᏂᏱᎵᏒ ᎬᏩᏛᏛᏍᎬ ᎤᏓᏥᏃᎯᏍᏔᏅᎩ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎩᎶ ᎤᏓᏑᏰᏍᏗ ᎤᏍᏕᏅᏨᎯ ᏂᎨᏒᎾ ᎾᏍᎩ ᎢᎬᏱ ᏫᏓᏓᎴᏅᏓ ᏅᏯ ᏫᎬᏂᏍᏓ.\n”ᎫᏩᏣᎴ ᏲᎾ ᎤᏤᏍᏙ!” ᏚᏃᎩᏎ ᎡᎳᏆᏗ.\nᎿᏉᏃ ᏂᎦᏛ ᎤᎦᎵᏍᏗᏳ ᎤᎾᏓᏅᏓᏛᎩ, ᎠᎴ ᎾᏍᏉ ᎤᎾᎵᏍᏓᏴᏅᎩ.\nᎠᏂᏥᎸᏍᎩ ᎤᎦᎾᏍᏓ ᎾᏅᏁᎰ ᎤᏃᎴ, ᏃᎴ ᎠᏍᎪᎸᎪ.\nᎠᎴ ᎠᏴ ᎢᏓᎵᏅᏟ, ᎢᏳᏃ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎠᏏ ᏱᎦᎵᏥᏙᎲᏍᎦ, ᎦᏙᏃ ᎠᏏᏉ ᎤᏲ ᏂᎥᏋᎿᏕᎦ? ᎿᏉ ᎠᎲᏛ ᏂᎦᎵᏍᏗᎭ ᏗᏓᏙᏕᏍᏗᏍᎩ ᎨᏒ ᏓᏓᎿᏩᏍᏛᎢ.\n“ᎬᏯᎵᎮᎵᏤᎭᏛ ᎤᎵᎮᎵᏍᏗ ᏄᏪᏎ ᏧᏍᏆᏴᏍᏗ.\nᏕᎬᏩᎳᏫᏦᎴᏃ ᎠᏂᏆᎵᏏ, ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᎩ ᏗᏃᏪᎵᏍᎩ, ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ.\n“ᏍᎩᎾ ᎣᏏᏉᏧ?” \nᏓᎾᎵᏂᎪᎯᏍᏗᏍᎨ ᏚᎾᏓᏅᏛ ᎠᏃᎯᏳᎲᏍᎩ, ᏓᏂᏔᏲᏎᎮ ᏧᏂᏲᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏓᏂᏃᏁᎮ ᎤᏣᏘ ᎠᎩᎵᏴ ᎢᎩᎶᎯᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᏫᎩᏴᏍᏗᏱ.\nᏞᏍᏗ ᏗᏥᏅᏒᎩ ᎠᏕᏄ ᏗᎦᎶᏗ, ᎠᎴ ᏕᎦᎶᏗ, ᎠᎴ ᏗᎳᏑᎶ; ᎠᎴ ᏞᏍᏗ ᎩᎶ ᎡᏥᏲᎵᎸᎩ ᎢᏣᎢᏒᎢ.\nᎯᎠ ᎾᏍᎩ ᎢᏥᎦᏔᎮᏍᏗ, ᎢᏦᎯᏳᏒ ᎠᎪᎵᎡᏗ ᎨᏒ ᎢᏨᏂᏗᏳ ᏂᏨᏁᎲᎢ.\nᎠᏎᏃ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ; ᏂᎦᎥ ᏚᏰᎬ ᎡᏙᏓ ᏧᏫᏒᎯ ᏂᎨᏒᎾ ᏗᏰᎯᏍᏗ ᎨᏎᏍᏗ.\nᎠᎦᏔ ᎠᏰᎸ ᎢᎦ ᎠᏘᏍᏓᏁᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎨᏎᏍᏗ ᎯᎦᏙᎵ, ᏂᎬ ᎯᏰᎸ ᎾᏍᏉ ᎧᎵᏬᎯ ᎨᏎᏍᏗ ᎢᎦ ᎦᏘ; ᎢᏳᏍᎩᏂ ᎯᎦᏙᎵ ᎤᏲ ᎨᏎᏍᏗ ᏂᎬ ᎯᏰᎸ ᎾᏍᏉ ᎧᎵᏬᎯ ᎨᏎᏍᏗ ᎤᎵᏏᎩ.\nᎾᏍᎩ ᎨᏥᏚᎢᏍᏓᏁᎸ ᎤᎾᎵᏱᎶᎯᏍᏗᏱ ᎤᏚᎩ ᎤᏅᎭ ᏔᎳᏚ ᏃᏥᎳᏍᏓᎸᎢ, ᎤᎵᏂᎩᏗᏳ ᏥᏓᏂᎧᎿᏩᏗ ᎤᏁᎳᏅᎯ ᏗᎬᏩᎩᏨᏗ. ᎾᏍᎩ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎠᏂᏧᏏ ᎬᏇᎯᏍᏗᎭ.\n”ᎣᏍᏓᏗ ᎨᏐ ᏗᏍᏆᏂᎪᏙᏗ ᎪᎱᏍᏗ” ᎠᏗᏍᎨ.\nᎾᏍᎩ ᎤᎳᏐᏫᏍᏗ ᎠᏰᎭ, ᎠᎴ ᏂᎦᏛ ᏓᎦᎳᏐᏫᏏ ᎠᏲᏓᏝᎲᎢ, ᎤᏣᎴᏍᏗᏃ ᏓᎦᏟᏌᏂ ᏛᏂ ᎤᏗᏱ; ᎤᏬᎭᏄᎶᏔᏅᎯᏍᎩᏂ ᏛᎪᎲᏍᏔᏂ ᎠᏥᎸᏱ ᏂᎬᏠᏍᎬᎾ.\nᎤᏍᏆᎳᎯ ᎨᏒ, ᏣᎵ ᏧᏤᎵ ᏴᏫ ᎦᎾᏰᎯᏍᏗ ᏄᏅᏁᎸ.\nᎾᏍᎩ ᎤᎾᎳᏅᎯ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᏥᏚᎶᏁᏔᏁ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ, ᎾᏍᎩ ᏤᏙᎲ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᏕᎧᏅᏫ-Ꭼ ᏂᎦᏛ ᎤᏲ ᎢᏳᏅᎿᏕᎩ ᎠᏍᎩᎾ; ᎤᏁᎳᏅᎯᏰᏃ ᏚᎧᎿᏩᏗᏙᎲᎩ.\nᎾᏍᎩ ᎢᏤᏅᎢᏍᏔᏅᎯ ᏥᎩ ᏂᎦᎥ ᏄᏓᎴᏒᎢ-ᏂᎦᎥ ᏗᏕᏲᏗ ᎨᏒ ᎠᎴ ᏂᎦᎥ ᎠᏕᏙᎥᎯᏍᏗ ᎨᏒᎢ;\nᎢᏥᎾᏄᎪᏫᏍᎨᏍᏗ ᎧᏃᎮᏛ ᎬᏂᏛ ᎠᏓᏁᎯ; ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎠᏆᎵᎮᎵᏍᏗᏱ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏎᏉ ᏗᎩᏍᏆᎸᏔᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎠᏎᏉ ᏗᎩᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎯᎠᏍᎩᏂᏃ ᏂᏨᏪᏎᎲ ᎥᏝ ᏱᏨᎸᏉᏗᎭ, ᎾᏍᎩ ᏕᏥᎳᏫᏦᎯᎲ ᎥᏝ ᎣᏍᏛ ᎢᏳᎵᏍᏙᏗ ᏱᎨᏐᎢ, ᎤᏲᏉᏍᎩᏂ.\nᎩᎳᏈᏴ ᎤᎯᏍᏗ ᏌᏌ ᎠᏓᎯ, ᎫᏩᏓᎩᏯᏍᏗ ᏱᎩ. ᎠᎧᏔᎮᎢ ᏌᏌ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎨᏴ ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎯ ᏳᏭᏢᏗ ᎠᏍᎪᎵ ᎾᏍᎩ ᎨᏥᏅᏏᏛ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎾᏍᎩ ᏌᏉ ᎠᎰᎵ ᏗᎦᏄᎪᎪ ᎦᎸᏉᏙᏗ ᎨᏒ ᎠᎴ ᎠᏍᎩᏅᏗᏍᏗ ᎨᏒᎢ. ᎢᏓᎵᏅᏟ, ᎥᏝ ᎣᏏᏳ ᏱᎩ ᎾᏍᎩ ᏥᏄᏍᏗ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᎧᏃᎮᏛ ᏥᏣᏛᎩᎭ ᏗᏓᎴᏂᏍᎬ ᏂᎨᏣᏛᎩᏍᎪᎢ, ᎾᏍᎩ ᏗᎦᏓᎨᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ.\nᎥᏝ ᏚᏳᎪᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᏗ ᎠᏴ ᎾᏍᎩ ᏕᎩᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᎢᎩᏍᏕᎸᎲᎩ ᎤᏮᏔᏅᎩ ᏔᎵᏁ ᎠᏕᏗ ᎨᏒ ᎤᎬᏩᎵ ᎠᏙᏑᎴᏗᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏁᏟᏴᏍᏗ ᎨᏒᎢ;\nᏩᎩᎷᏣ ᏥᎪᎵᏰᏍᎬ: ᎭᏂ ᎠᏁᏙᎮ ᎢᎾᎨ ᎠᏁᎯ ᎠᏂᎩᎦᎨ ᎠᏂᏍᎦᏯ, ᎠᏎᏉ ᎠᏁᏙᎯ ᎬᏂᎨᎢ ᏚᏂᏍᏘᏰᎬ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏰᎵᏉ ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯ ᏓᏍᏓᏗᏔᎯ ᎤᎵᏍᏈᏗ ᎾᏍᎩ ᎠᏴ ᎠᏆᏗᏔᏍᏗ ᏥᎩ, ᎠᎴ ᏗᏓᏬᏍᏗ ᎨᏒ ᎠᏴ ᎥᏆᏬᏍᏙᏗ ᏥᎩ, ᎾᏍᎩ ᏙᏓᏰᏍᏓᏬᏍᏔᏂ;\nᎠᎬᏱᏣ ᎤᏩᏌ ᏫᎫᏩᏂᎶᎯᏍᏗ.\nᎠᎬᏅ ᎤᏟᎯᏳ ᎡᏍᎦᏉ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎠᏰᎸ ᎤᏟᎯᏳ ᎡᏍᎦᏉ ᏗᏄᏪ.\n”ᎤᎵᎮᎵᏍᏗ,” ᎤᏛᏁ ᏫᎵᎻ.\nᏓᏒᏍᏛᏃ ᎤᏍᏆᎸᎲ ᎡᎶᏛ ᎤᏄᏬᎥ ᎤᏂᎬᏫᏳᎯ ᎤᎾᏄᏬᏍᏗ, ᎤᏪᏁ ᎢᏅ ᎢᎦᏘ ᎦᏍᎩᎸᎢ, ᎠᎴ ᏚᎵᏥᏙᏁᎴᎢ.\n“ᎭᎳᏑᏢᎩ! ᎭᎳᏑᏢᎩ!” ᎤᏃᏎᎴ ᏩᎭᏯ.\nᏭᏩᏅᏓᏕᎢ ᎢᏳᏍᏗ ᎤᏃᎯᏎᎸ ᏌᎳᏓ --- ᎨᏍᏗ ᎦᏓᏁ ᎢᎦᎵᏍᏗᏍᎩ ᏱᎩ ᏃᎴ ᎤᏟᏂᎩᏓ.\nᎦᎪᎨᏃ ᎠᎦᎵᏯ ᎠᎴ ᎠᏏᎾᏌᏂ ᎠᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎤᏅᏏᏙᎯ ᏄᎬᏫᏳᏒ ᎢᏳᏩᏁᎸᎯ ᎦᏁᎸ ᏚᏓᏘᎿᎥᎢ, ᎾᏍᎩ ᎤᎾᎵᏍᏓᏴᏗ ᏧᏁᏗᏱ ᎤᎾᎵᏍᏓᏴᏗᏱ ᏂᎦᎵᏍᏔᏂᏒᎢ?\nᎦᎸᎳᏗᏣ, ᎦᏳᎳ ᎦᏂᏏ ᏫᎦᏅᎨ ᎡᎳᏆᏗ ᏃᎴ ᎦᏟᎮ.\nᎤᏒᎯ ᎢᏴ ᎤᏲᎶᏨ ᎢᏳᏍᏗ ᏄᏍᏕᎢ ᏗᎧᏃᏗ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎤᏣᏘ ᎠᏆᏚᎵᏍᎬᎩ ᎯᎠ ᎧᏃᎯᏰᎩ ᎢᏧᎳᎭ ᎢᎦᎵᏍᏓᏛᏗᏱ ᎠᏏᏉ ᎾᎩᎩᎵᏲᏨᎾ.\n“ᎨᏍᏗ ᎢᎸᎯᏳ ᎠᎩᎪᏛᎲ ᏍᎩᎾ ᏥᏥᏩᏔ.\n”ᎣᏏᏉᏍᎪ ᎤᏅᏗ ᏳᏩᏆᏗᏔ?\nᎠᏲᏍᏗᏍᎬ ᎪᏪᎸ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎦᏡᏗᏍᎩ, ᎾᏍᎩ ᎢᎩᏲᏍᏙᏓᏁᎯ ᏥᎨᏒᎩ, ᎠᎴ ᎤᎲᏒᎩ, ᎤᏤᎵ ᏓᏓᎿᏩᏍᏛ ᎤᏪᏯᎸᏅᎩ ᏴᏫ ᏚᏪᎭᏔᏅᎩ;\nᎡᏏᏃ ᏦᏏᏆ ᎤᏕᏁᎴᎢ. ᏦᏏᏆᏃ ᏦᎳᎻ ᎤᏕᏁᎴᎢ; ᏦᎳᎻᏃ ᎣᏌᏯ ᎤᏕᏁᎴᎢ;\nᎦᏅᏅ ᏍᎪᏁ ᏗᏗᎧᏃᎩᏍᎨ ”ᏩᎫᎵ, ᏩᎫᎵ!”\nᏫᎬᏲᏪᎳᏏ, ᏓᏓᏏ, ᎠᏇᏥᏯᎢ, ᎾᏍᎩᏯ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏃᎯᏳᏒᎢ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎤᏓᏙᎵᏣᏛᎢ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᎩᏍᏕᎵᏍᎩ, ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ.\nᎧᏃᎮᏛ ᏧᏓᏅᏎ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏛᎪᏗ ᏥᎧᏃᎮᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏩᏙᎯᏯᏛ ᎤᎬᏩᎵ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎾᏂᎥ ᎤᎾᏤᎵᎦ,\nᎤᎪᎵᏰᎥ ᎫᎭᎳᎲ ᏃᎴ ᎠᏓᏪᎳᎩᏍᎬ ᎬᏘ ᎤᏅᎦᎳᎲ.\nᏂᏓᏟᎶᏍᏓᏁᎲᎾᏍᎩ ᎥᏝ ᏱᏚᏬᏁᏔᏁᎢ; ᎤᏅᏒᏃ ᎨᏎᎢ, ᏂᎦᏛ ᎾᏍᎩ ᏚᏬᏏᏌᏁᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ.\nᏚᎧᎾᏁ ᎤᎾᎵᎢ.\nᏥᏌᏃ ᎦᏙᎨ ᎢᎬᏱᏗᏢ ᎤᎬᏫᏳᎯ ᎤᏬᎸᎢ. ᎤᎬᏫᏩ ᎯᏃ ᎤᏛᏛᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏰᎵᏂᏫ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪ ᏨᏒ ᏣᏓᏅᏖᏛ ᎾᏍᎩ ᏥᏂᏪᎠ, ᎩᎶᎨ ᎾᏍᎩ ᎨᏣᏃᎮᎮᎴᎢ?\nᎠᏍᎦᏯᏍᎩᏂ ᎤᏙᎯᏳᎯ ᎥᏝ ᏱᎬᎵᏍᏚᎸᏍᎦ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᏧᏄᏬᏍᏗ; ᎠᎨᏴᏍᎩᏂ ᎠᏍᎦᏯ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏗ.\nᎠᏎ ᎢᏰᎦᏉ ᎤᎾᏓᏓᏍᎬ, ᏂᎦᏓ ᎠᏂᎦᏔᎲ ᎢᏴ ᎡᏙᎲ Crockett.\nᎢᏳᏃ ᎥᏝ ᏲᎩᏍᎦᏅᏨ ᏱᏓᏗᎭ, ᎡᏗᏰᎪᎥᏍᎦᏉ, ᎠᎴ ᎧᏃᎮᏛ ᎤᏤᎵᎦ ᎥᏝ ᏱᎨᎨᎭ.\nᎪᏫ ᏂᎦᏓ ᎠᏂᎦᏔᎲ ᎠᏍᎦᏯᏱ ᎨᏎ ᏧᏛᎯᏍᏙᏗ ᏒᎧᏔ ᏕᏧᎬ, ᏂᏚᏕᏘᏴᏒ ᎤᎾᏨᏏᏓᏍᏗ ᏄᎵᏍᏔᏅ ᏕᎦᎧᎲᏍᎨ.\nᎠᏎᏍᎩᏂᏃᏅ ᎪᎱᏍᏗ ᎤᏍᏗᎠᎹᏰᎵ ᎤᏪᎧᎲ ᏓᎩᏝᏗᏣᎵ.\nᏃᎴ ᎠᏰᎵ ᏓᏏᎳᏛ ᎯᎪᏪᎴ ’ᎤᏍᏆᏂᎩᏗ ᏏᏆ’.\nᏦᏏᏃ ᎨᏥᏅᏏᏛ ᏆᏂᏆ ᏥᏚᏃᎡᎢ, ᎾᏍᎩ ᎦᏛᎬ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎤᏪᏥ, ᎠᎵᏫ ᏌᏈ ᎤᏕᏅᎯ,\nᎾᏍᎩᏃ, ᏌᏉ ᎠᏍᎦᏯ ᎢᏳᏩᏂᏌᏛ ᎠᏍᎦᏂ ᎡᎶᎯ ᏧᎾᏄᎪᏨ, ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ [ᏧᎾᏄᎪᏨ;] ᎠᏍᎦᏂ ᎢᏳᏩᏂᏌᏛ ᎠᎴ ᎾᏍᎩ ᏥᏂᎦᎵᏍᏙᏗᎭ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏂᎦᏗᏳ ᏴᏫ ᏧᏂᎷᏤᎸ, ᏂᎦᏗᏳᏰᏃ ᎤᏂᏍᎦᏅᏨ\nᎿᏉᏃ ᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎠᏴ ᏂᎦᏗᏳ ᏙᎩᏲᏐᏅ ᎠᎴ ᎢᏨᏍᏓᏩᏕᏅ; ᎦᏙᏃ ᎠᏴ ᏓᏲᏥᏩᏛᎯ?\n”ᎠᏯ ᏥᏙᎬ ᎢᏣ ᎧᏓᏒᏍᏓ!” ᎤᏪᎷᎾ ᏌᏌ ᎠᏨᏯ.\nᎯᎸᎢᏴ ᎦᏄᎸ ᎡᎯ ᎢᎾᏓ ᎠᏩᏘᏍᎪᎢ ᎧᏁᏍᎪ ᎡᎳᏆᏗ. ᎤᏦᏩᏛ ᏫᏓᎵᎪᏗᏍᎨᏍᏗ ᏚᏦᏩᏅ.\nᎤᏢᎩ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᏍᎦᏯ, ᎥᏝ ᎩᎶ ᏰᏙᎰ ᎠᎹ ᎠᎵᏖᎸᎲᎦ, ᎠᏓᏬᏍᏗᏱ ᏩᎩᎧᎲᏍᎩ; ᎠᏏᏉᏰᏃ ᏥᏫᎦᎢᏐᎢ, ᎩᎶ ᏓᎩᎪᏂᏍᎪᎢ ᎢᎬᏱ ᏩᏠᎠᏍᎪᎢ.\n“ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ.\nᎠᎫᏬᎵᎩ ᎮᎵᎠ, ᏚᎵᏍᏙᏴᏗ, ᏃᎴ ᎤᎵᏍᏗ ᏂᎦᏪᏏᏏ.\nᎢᏳᏃ ᎥᏝ ᎠᏍᎦᏂ ᏲᎨᎭ ᏱᏓᏗᎭ, ᎢᎬᏒ ᏱᏓᏓᎵᏓᏍᏗᎭ, ᎠᎴ ᎥᏝ ᏱᎨᎨᎭ ᎤᏙᎯᏳᎯ ᎨᏒᎢ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎣᏏᏉ ᏂᏣᏛᏁᎭ ᏥᏥᏲᎢᏎᎭ ᎤᏁᎳᏅᎯ ᎤᏁᏨ, ᎾᏍᎩ ᎢᏣᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ.\nᎠᎴ ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᎾᎧᎿᏩᏗᏙᎯ ᏕᎨᎦᎸᏒᎲᎩ, ᎾᏍᎩ ᎨᎦᏛᏅᎢᏍᏔᏅᎩ ᏌᏉ ᏅᏙ ᎢᏳᏟᎶᏛ ᎢᎪᎯᏛ ᎨᏒᎢ, ᎠᎴ ᏏᎦ ᎨᏒ, ᎠᎴ ᏏᏅᏙ ᎨᏒ, ᎠᎴ ᏑᏕᏘᏴᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏧᏂᎯᏍᏗᏱ ᏦᎢ ᎢᎨᏥᏛᎯ ᏴᏫ ᎾᏍᎩ ᏌᏉ ᎢᏳᏂᏨᎯ ᎨᏒᎢ.\nᎣᏏᏳ ᏱᏥᏰᎸᎾ ᎾᏍᏉ ᏱᏗᎨᏥᎧᎲᏒ ᎨᏣᏕᏯᏙᏗᏍᎩ ᏥᎩ.\nᏚᏏᎳᏛ ᎭᏫᏂᏣ ᎤᎴᏁ ᏫᎵᎻ.\nᎠᎴ ᎤᎬᏫᏳᎯ ᏂᏚᎪᎳᏛᎾ ᏱᎨᏎ ᎾᎯᏳ ᎢᎦ, ᎥᏝ ᎤᏇᏓᎵ ᏱᎦᏰᏥᏍᏕᎸᎮᎢ; ᎨᎦᏑᏰᏛᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᏧᏑᏰᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏚᎦᎳᏛ ᎾᎯᏳ ᎢᎦ.\n”ᎠᏏᎳᏛᎢᏍᎪ?”\nᎠᏫᎾ ᎦᏄᎾᏓᎴᎩ ᎤᏩᏌ ᎤᏤᎵ, ᏐᎢᏃ ᎤᏫᏂ Elias Boudinot, ᎦᎳᎩᎾ ᏧᏙᎢᏓ ᎨᏎ, ᎠᏎᏃ ᎤᏍᏕᏓᎵᏴᏎ ᎣᎯᏍᏙᏗ ᏄᎵᏍᏔᏁᎮ.\nᏞᏍᏗ ᏙᎯᏱ ᎤᎾᏄᎪᏫᏏᎸ ᎡᎶᎯ, ᏱᏍᎩᏰᎵᏎᎮᏍᏗ; ᎥᏝᏍᎩᏂ ᏙᎯᏱ ᏯᎩᎾᏄᎪᏫᎸ, ᎠᏰᎳᏍᏗᏍᎩᏂ ᎦᏅᎯᏛ.\nᎢᏨᏲᏪᎳᏏ ᎢᏥᎦᏴᎵᎨᎢ, ᎡᏥᎦᏙᎥᏒᏰᏃ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏤᎭ. ᎢᏨᏲᏪᎳᏏ ᎢᏥᏫᏅ, ᏗᏣᎵᏂᎩᏗᏳᏰᏃ, ᎠᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎢᏥᏯᎠ, ᎠᎴ ᎡᏥᏎᎪᎩᏒ ᎤᏁᏧᏥᏛ.\nᎿᏉᏃ ᏚᎴᏅ ᎤᏘᏅᏎ ᎠᏲᎵ ᎠᎴ ᏅᏥ ᏒᏃᏱ, ᎠᎴ ᎢᏥᏈᏱ ᏭᎶᏎᎢ.\nᎤᎾᏓᏂᏴᏍᏗ ᎠᎴ ᎤᏁᏅᏍᏗ.\nᎢᏨᎾᏰᎢᏎᎭᏉ, ᎠᏎᏉᏉ ᎪᎱᏍᏗ ᏱᏚᏥᏯᏛᏁᎸ ᎨᎵᏍᎬ ᎢᏳᏍᏗ.\nᎦᏚᎲ ᎤᎵᏗᏨ ᎠᎾᏓᏌᎩᏙᎲ ᏏᏆ.\nᎢᎪᎯᏓ ᎠᏋᏅ ᏥᏓ ᎦᏨᏏᏰᏍᎪ.\nᎠᎼ ᎦᏚᎢᏣ ᎬᏂᎨ ᎨᏒ, ᎭᏫᏂ.\nᎠᏌᎻᏓ ᎠᎴ Ireland, Philadelphia ᏃᎴ ᏣᎵᏍᏙᏂ ᏓᏳᏂᎶᏒ ᎠᏂᏫᎾ, ᎨᏍᏗ ᎤᏲ ᎢᏯᎾᏛᏁ ᏱᎨᏎᎢ.\nᏩᏓᏬᎢᎡ ᏚᎪᎮ ᏓᎶᎨ, ᏥᏍᎪᎩᎳ, ᏧᏩ ᏃᎴ ᎤᎬᏍᏕᎵ.\nᏥᏌ ᎤᏁᏨᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏑᏓᎴᎩ ᏓᎩᎸᏫᏍᏓᏁᎸ, ᏂᏥᎥᏃ ᎢᏥᏍᏆᏂᎪᏍᎦ.\nᎤᎦᏃᏮ ᎤᏂᏂᎬᎪ ᏏᏆ, ᎡᎳᏗᏣ ᎤᎦᏃᏩ ᏧᎦᏃᏮ ᏗᏣ.\nᎦᏥᏃᏁᎸᎩᏰᏃ ᎢᎬᏱ ᏕᎹᏍᎦ ᎠᏁᎯ, ᎠᎴ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎠᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᎾᏍᏉ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏙᏗᏱ, ᎠᎴ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎨᏒ ᏚᏂᏁᏟᏴᏒ ᏚᎾᏓᏅᏛᎢ.\nᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᏝᏍᎪ ᏗᎩᏂᎾᏫ ᏧᏗᎴᎩᏳ ᏱᎨᏎ ᎭᏫᏂ ᏥᎩᎾᎵᏃᎮᏗᏍᎬ ᏗᏓᎢᏒᎢ, ᎠᎴ ᏥᏕᎩᏃᏏᏌᏁᎲ ᎪᏪᎵ?\nᎿᏉ ᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎡᎳᏗ ᏓᎾᏓᏅᎥᏍᎪ ᎢᎬᏱᏗᏢ ᎤᏬᎸ ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎠᎴ ᎠᎾᏓᏙᎵᏍᏓᏁᎰ ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎾᎵᏍᏆᏗᏍᎬᎾ ᏤᎭ, ᎠᎴ ᏧᎾᎵᏍᏚᎶ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏚᎾᏓᎡᎯ, ᎯᎠ ᎾᏂᏪᏍᎪᎢ;\nᎠᏎᏃ ᎥᏝ ᏌᏉᎤᏅ ᎢᏥᏍᏗᏰᎬ ᎢᏥᏍᎪᎵ ᎤᏲᎱᎯᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᏎᏃ ᎨᏍᏗ ᎤᎶᎣᏒ ᏱᎨᏎ ᎠᏲᏟ.\nᎤᎵᏍᏓᏴᏅᏃ ᎤᎵᏂᎪᏎᎢ. ᏐᎳᏃ ᎢᎸᏍᎩ ᏧᏒᎯᏛ ᏚᏪᎳᏗᏙᎴ ᎠᏃᎯᏳᎲᏍᎩ ᏕᎹᏍᎦ ᎠᏁᎯ.\nᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎤᏕᎵᏛ ᏧᎾᏂᏏᏅᎯ ᏥᎩ, ᎠᎴ ᎡᎶᎯ ᏓᏁᏩᏗᏒ ᏧᏂᏴᏍᏕᏍᏔᏅᎯ ᏥᎩ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎤᏩᏛᏛ.\n[ᎠᎴ] ᎬᏗᏍᎬ ᎤᏰᎸᏛᎢ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎬᏗᏍᎬᎢ; ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎤᏓᎴᏅᏛ, ᎠᎴ ᎤᏚᏫᏛ ᎢᎵᎵᎦᎻ ᏩᏍᏗ, ᎤᎧᎵᏨᎯ ᎠᏆᎵᏥᏙᏅ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ;\nᏰᎵ ᎢᏯᏂ ᎠᏂᏴᏫ, ᎨᏍᏗ ᎯᎸ ᎢᏴ ᎤᏁᏙᎵᏱᎩ, ᎠᎴᏃ ᎠᏂᎪᏩᏘᏍᎬ ᎤᏅᏓᏒ.\nᎿᏉᏃ ᎤᎶᏐᏂᏕᎾ ᎨᏎ ᎢᎦ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᎷᏤᎴ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏂ ᎢᎾᎨᎢ, ᎠᎴ ᎿᏉ ᎤᎶᏐᏂᏗ ᎢᎦ.\nᎤᏂᏍᎦᎡᎾᏍᎩᏂ. ᎠᎴ ᏄᏃᎯᏳᏒᎾ, ᎠᎴ ᎤᏂᏍᎦᎢᏍᏗ, ᎠᎴ ᏗᎾᏓᎯᎯ, ᎠᎴ ᎤᏂᏁᎫᏥᏛ, ᎠᎴ ᏗᎾᏙᏂᏍᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎠᏂᏰᎪᎩ, ᎤᎾᏤᎵ ᎢᎨᎬᏁᏗ ᎨᏎᏍᏗ ᎥᏓᎸ ᎾᎿ ᎠᏓᏪᎵᎩᏍᎬ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎵᎩᏍᎩ; ᎾᏍᎩ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᏥᎩ.\nᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎠᏴ ᎨᏒᎢ, (ᎾᏍᎩ ᎠᎩᏇᏓᎸ ᏯᏛᏅ,) ᎪᎱᏍᏗ ᎣᏍᏛ ᏄᎵᏠᏯᏍᏛᎾ ᎨᏒᎢ; ᎠᏚᎸᏗᏱᏰᏃ ᎠᎩᎭ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎣᏍᏛ ᎨᏒ ᎢᏯᏛ-ᏁᏗᏱ ᎥᏝ ᏱᏥᏩᏘᎭ.\nᎢᏧᎳᏃ ᎠᎬᏯᏗᏣ ᏕᏣᎳᏍᎬ ᏱᏕᏣᎳᏑᎶᎯ.”\nᏃᎴ ᎠᏂᎨᏯ ᎤᎾᎴᏅᎲ ᎠᏅᏂᏍᏗᏍᎬ ᎭᏫᏯ ᏃᎴ ᎠᏂᏍᎦᏯ ᎤᏂᏍᏔᏩᏛᏒ ᏣᎵ ᎦᏚᏏ, ᎢᏳᏅᎰᏁᏗ ᎠᏂᎦᎭᎷᏯᏍᎬ ᏲᎾ, ᏃᎴ ᎤᎾᏓᏍᏔᏴᏗ ᎪᏛ ᎾᎥᏂ ᎠᏂᏅ ᎠᎾᎵᏍᏔᏴᎲᏍᎬ ᎬᎦᏰᎯᏍᏔᏅ ᏧᏂᏍᏉᏟ.\nᏫᏚᏯᏅᎲᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎯᎠ ᎾᏍᎩ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎤᏟ ᎢᎦᎢ ᎠᎲᎦ ᎡᏍᎦᏉ ᏂᎦᏛ ᎾᏍᎩ ᎠᏕᎸ-ᏗᏗᏱ ᏣᏂᎲᎦ.\nᎤᏬᏰᏂ ᎢᏯᏖᏅ ᎨᏴ ᎤᏍᏔᏩᏛᏎ ᏧᏓᎴᏅ, ᏂᎦᏓ ᎠᏂᎦᏔᎲ ᎢᎦᏓ ᏕᎦᏄᎪᎬ ᎠᎹ ᏩᏴᏍᏗ ᎭᏫᏂᏨ ᎡᎶ ᎠᏗᏍᎦᎶᏗ.\nᎦᎵᎡᎵᎩ ᏥᏕᎾᏦᎯ, ᏓᎶᎨ, ᎠᏎᏃ ᏰᎵ ᎪᎯᏓ ᎦᏓᏬᏍᎬ Ꮟ ᎤᏓᏅᎯᏓ ᎠᏇᏅᏍᏗ. ᏕᎾᏓᎪᎲᏳ ᏓᎶᎨ.\nᏆᎾ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎨᏎᎢ ᏃᎴ ᎧᎵᏎᏥ ᎨᏂᏗ ᎢᎬᏁᎸ.\nᏥᏌ ᎤᏁᏤᎸᎩ; ᏥᏌ ᎠᏴ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎡᎳᏗ ᏘᏂ ᎲᏅᎢ? ᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᏣᏔᎦᏨᏯᎢ ᎥᏝ ᏴᏛᏴᎳᏏ ᎬᏂ ᏦᎢ ᎢᏍᏆᏓᏱᎸᎯ ᎨᏎᏍᏗ.\nᏂᎦᏓ ᎤᎾᎦᏙᏍᏕᎢ, ᎨᏍᏗᏰᏃ ᎣᏍᏓ ᎠᏥᏰᎵᎢ ᏱᎨᏎᎢ.\nᏂᎯᏍᎩᏂ ᎢᏥᏆᎵᏏ ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ! ᎠᏍᎪᎯᏁᏰᏃ ᎪᏣᎴᏛ ᎢᏣᎫᏱᏍᎪ ᏒᏟ ᎠᏟ ᎷᏫ ᎠᎴ ᏂᎦᎥ ᎤᏰᎿᎥᎢ, ᎢᏥᏃᎯᏯᏍᎪᏃ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒᎢ; ᎾᏍᎩᏍᎩᏂ ᏱᏂᏣᏛᏁᎴᎢ, ᎠᎴ ᏐᎢ ᏂᏥᏃᎯᏴᎾᏉ ᏱᎨᏎᎢ.\n“ᎨᏂᏗ ᎦᏅᎵᏰᏓ ᏒᎧᏔ ᎠᏆᏚᎵᎭ.”\nᎠᎴ ᏓᏕᏲᎲᏍᎨ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎾᏂᎥᏃ ᎬᏩᎸᏉᏗᏳ ᎨᏎᎢ.\nᏕᎭᏅᏓᏗᏍᏗᏍᎨᏍᏗ ᏧᏃᎯᏳᏗ ᎨᏒ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎤᏃᎯᏳᎯᏍᏛ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ, ᏂᎪᎯᎸᏉ ᎤᎾᏛᏅᎢᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᏂᎦᎥᏉ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ.\nᎠᎨᏴ ᎥᏝ ᎠᏓᏅᏖᏍᎬᏉ ᎢᎬᏩᏁᏗ ᏱᎩ ᎤᏩᏒ ᎠᏰᎸᎢ, ᎤᏰᎯᏍᎩᏂ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏍᎦᏯ ᎥᏝ ᎠᏓᏅᏖᏍᎬᏉ ᎢᎬᏩᏁᏗ ᏱᎩ ᎤᏩᏒ ᎠᏰᎸᎢ, ᎤᏓᎵᎢᏍᎩᏂ.\nᎤᏕᏯᎵᏙᎴ ᎠᏥᏍᏚᏗ.\nᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎦᎶᏐᏅ, ᏎᏓᏂ ᏛᎠᏥᎧᏂ ᏛᎠᏥᏄᎪᏫᏏ ᎠᏥᏍᏚᎲᎢ;\n“ᏄᏓᎴᏗ ᎯᎠ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏆᎵᏏ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎢᏣᏙᎴᎰᏍᎦᏍᎪ ᏂᏣᎵᏰᎢᎴᎬᎾ ᏥᎩ? ᎬᏂᏳᏉ ᎡᎶᎯ ᎤᏍᏓᏩᏕᏅ.\nᎯᎠᏃ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏭᎬᏫᏳᏒ ᎣᏍᏓ ᎠᏉᏒᏅ.”\nᏖᎸᎳᏗᏯ ᎠᏴ, ᎡᏙᏓᏃ ᏗᎦᎶᎩᏍᎩ.\nᏙᎦᏓᏲᎵᎸᏃ, ᏥᏳᎯ ᎣᎦᏣᏅᎩ; ᎾᏍᎩᏃ ᏙᏧᏁᏅᏒ ᏮᎤᏂᎶᏒᎩ.\nᏚᎪᎮ ᏦᎢ ᎢᏯᏂ ᎠᏂᏧᏣ ᎨᏥᎢᎲ, ᎠᏁᎸᏗᏍᎩ ᎤᎵᏒᏗ ᎦᎶᏇ.\nᎤᏓᏁᏅ ᎦᎵᏔᏅ ᎤᏁᏍᏓᎳ ᎢᎬᏓ ᎨᏎᎢ \nᎣᎯᏍᏙᏗ ᏱᏂᏣᎵᏍᏔᏏ, ᎤᎵᏏᏅᏗ ᏭᏅᎪᏨ ᎦᎶᎯᏍᏗ.\nᏥᏍᏗᏰᏗᎭ ᏳᎣᏗᏯ, ᎠᎴ ᏥᏍᏗᏰᏗᎭ ᏏᏂᏗᎩ ᎾᏍᎩ ᎤᏠᏱᏉ ᎢᏧᏅᏁᏗᏱ ᏚᎾᏓᏅᏛ ᎤᎬᏫᏳᎯ ᏓᏂᎧᎿᏩᏗᏒᎢ.\nᏍᎩᎾᎾ ᎠᏣᏗ ᏚᏩᏓᎷᏯᏛᎢ ᏂᏚᏩᏁ ᎠᎬᏱᏣ, ᏥᏍᏆ ᎧᏴᏌᏛ ᎢᏳᏍᏗ ᏂᏚᏍᏕᎢ ᏃᎴ ᎭᏫᏂ ᎠᎹᏱ ᎠᏓᎾᏏᏂᏙᎮ ᏧᎦᏃᏣ ᏤᏕᎦᏅᏌᏙ ᎢᏳᏍᏗ.\nᏞᏍᏗ ᏱᏗᏥᏍᏓᏲᏗᏍᎨᏍᏗ ᏗᏥᎾᏫ, ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸ ᏥᎬᎩᎾᎸᏍᏔᏅᎩ, ᎾᎯᏳ ᎢᎦ ᏥᎬᎩᎪᎵᏰᎥᎩ ᎢᎾᎨᎢ;\nᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᎪ ᏧᏬᎸ ᏮᏓᏲᏥᎶᏏ? ᏂᎯ ᏣᏍᏆᏂᎪᏗ ᎧᏃᎮᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎠᏛᏂᏗᏍᏙᏗ.\nᎠᏎᏃ ᏂᎯ ᏴᏫᏉ ᎦᎪ ᎢᏣᏍᏗ ᏥᏁᏤᎭ ᏕᎯᎦᏘᎴᎬ ᎤᏁᎳᏅᎯ? ᏥᎪ ᎪᎱᏍᏗ ᎠᏢᏅᎯ ᎯᎠ ᏅᏓᎦᏪᏎᎵ ᎾᏍᎩ ᎤᏬᏢᏅᎯ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᏍᏋᏁᎸ ᎢᏍᏉᏢᏅ?\nᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᎦᏴᎵᎨ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ, ᎾᏍᎩ ᎤᏣᏘ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏥᏅᏗᎦᎵᏍᏙᏗ ᏔᎵᏁ ᏥᎩᎾᏄᎪᏫᏒ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏥᎩᏁᎸ ᎬᏂᏛ ᎢᎩᎪᏩᏛᏗᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏲᎱᏒ ᏚᎴᎯᏌᏅ ᏥᏌ ᎦᎶᏁᏛ;--\nᎠᏎᏃ ᎠᏴ ᎥᏝ ᏱᏗᎦᏓᏂᎸᎦ ᏴᏫ ᎠᎩᏃᎮᏍᎬᎢ, ᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏂᏥᏪᎠ ᎡᏥᏍᏕᎸᏗᏱ.\nᎭᏂᏣ ᏫᏛᏓᏬᎢᏎᎢ, ᎠᏎᏃ ᎣᏂᏱ ᎨᏎᎢ.\nᎠᎨᏴᏃ ᎤᏢᎨ ᎩᎬ ᎤᏪᏅᎡᎮ ᏔᎳᏚ ᎫᏕᏗᏴᏛ ᎬᏩᏓᎵᏅᎡᎸᎯ, ᎤᏒᏅᎯ ᎨᏎ ᏂᎦᏛ ᎤᎵᏍᏕᎸᏙᏗ ᏓᎫᏴᎡᎲ ᎠᏂᎦᎾᎦᏘ, Ꭰ-ᏎᏃ ᎥᏝ ᎩᎶ ᎬᏩᏅᏬᏗ ᏱᎨᏎᎢ,\nᏃᎴ, ᎪᎰᏍᏗ ᏂᎦᎵᏍᏗᏍᎬ ᎬᎩᏯᏂᏍᎬ ᎤᏁᏉᎥ.\n”ᎦᏨ?”\nᎢᏥᎨᏴ, ᏕᏦᎯᏳᏎᏍᏗ ᎢᏨᏒ ᏗᎨᏥᏰᎯ ᎾᏍᎩ ᎢᏨᏛᏁᏗᏱ ᏥᏚᏳᎪᏗ ᎤᎬᏫᏳᎯ ᏕᏥᎦᎿᏩᏗᏒᎢ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᏌᏩᏂ ᏧᏙᎢᏛ ᏌᎵᏂ ᎡᎯ ᎠᎢᏎᎢ, ᏙᏗᎦᎶᎨᏒ ᏅᏓᏳᎶᏒᎯ, ᎾᏍᎩ ᎡᎵᎩ ᎠᎴ ᎷᏆᏏ ᎤᏂᏙᏓ, ᎾᏍᎩ ᎤᏤᎵ ᏧᏓᎿᏩᏛ ᎤᏪᏅᏍᏗᏱ ᏄᏅᏁᎴᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᏧᏂᏲᎱᏒᎯ ᏓᎾᎴᎯᏌᏅᎭ, ᎦᎪ ᎤᏓᎵᎢ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎨᏒᎢ?\nᏂᎦᎸᏉᏗᏍᎬᎾᏃ ᎢᎨᏎᏍᏗ ᎤᏙᏓ, ᎠᎴ ᎤᏥ, [ᎥᏝ ᎤᏍᎦᏅᏨᎯ ᏱᎨᏎᏍᏗ,] ᎢᏣᏗᏍᎪᎢ. ᎾᏍᎩ ᎯᎠ ᎡᏘ ᎠᏁᎯ ᎤᏂᏃᎮᎸᎯ ᎢᏨᏔᏅ ᎠᏎᏉ ᏂᏨᏁᎸ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎯ.\nᎥᏝᏰᏃ ᎾᏍᏉ ᎤᏅᏒ ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏳᏂᏍᏆᏂᎪᏗ ᏗᎧᎿᏩᏛᏍᏗ; ᏂᎯᏍᎩᏂ ᏤᏥᎤᏍᏕᏎᏗᏱ ᎤᎾᏚᎵᎭ, ᎾᏍᎩ ᎢᏥᏇᏓᎸ ᎤᎾᏢᏈᏍᏗᏱ.\nᏫᎵᎻ ᎤᎸᏖᎴᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ, ᎠᎴ ᎾᏍᎩ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗ ᎨᏒᎩ ᎦᎶᏁᏛ, ᎠᎴ ᏧᎴᎯᏐᏗ ᎨᏒ ᎤᏲᎱᏒ ᏦᎢᏁ ᎢᎦ;\nᏄᏓᎴ ᏒᏆᎶᏍᏗ ᎭᏫᏂᏣ ᎱᎦᏓᎲᏍᎦ ᎠᎵᏰᎾ.\nᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ Ꮎ ᎦᏥᏲᏪᎳᏁᎸᎩ, ᎠᏎᏃ ᏓᏯᎶᏈ ᎢᎬᏱ ᎤᎴᏗᏱ ᎤᏚᎵᏍᎩ, ᎥᏝ ᏱᏙᎦᏓᏂᎸᎦ.\nᏂᎬᎾᏛ ᎤᎾᏛᎦᏅ ᏄᏍᏆᏂᎩᏛ ᎯᎠ ᏅᎩ ᏗᎦᏅᏌᏗ, ᏃᎴ ᏍᏈᏍᏓ ᎤᏂᎷᏣ ᎠᎾᏓᏩᏛᎯᏙᎢ ᎭᏂ ᏍᎦᏚᎩ.\nᎨᏍᏗ ᏱᏥᎦᏔ ᏧᏓᎴᏅᎲ ᎨᏍᏗ ᎣᏍᏓ ᏱᏙᎦᏙᎸᏣ ᎠᏂᏫᎾ.\nᏂᎦᎥᏍᎩᏂ ᏄᏓᎴᏒ ᏙᎩᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᏃᏨᏁᎰ ᎤᏁᎳᏅᎯ ᎪᎱᏍᏗ ᎣᏣᏛᏁᎯ ᎨᏒᎢ, ᎤᏣᏘ ᏦᏨᏂᏗᏳ ᎨᏒᎢ, ᎣᏥᎩᎵᏲᎬᎢ, ᎣᎩᏂᎬᏎᎲᎢ, ᎡᎯᏍᏗ ᎣᎦᏓᏅᏔᏩᏕᎬᎢ,\nᏆᏂᏆᏃ ᏧᏈᏓ ᏚᏃᎡᎢ, ᏉᎳᏃ ᏑᎫᎵ ᏚᏃᎡᎢ, ᎾᏍᎩᏰᏃ ᏄᎬᏫᏳᏒ ᎠᎵᏥᏙᎲᏍᎩ ᎨᏎᎢ.\nᎠᏎᏃ ᏍᎩᏴᏃ ᎤᏍᏗ ᏥᏍᏆ, ᏧᏃᎯᎵᏣᏁᎢ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎯᎠ ᏳᏍᎦᏅᏨ, ᎥᏝ ᎠᎴ ᏧᎦᏴᎵᎨᎢ; ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎠᎬᏗᏍᎬᎢ.\nᎢᏥᏙᏓ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏕᏥᎸᏫᏍᏓᏁᎰᎢ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᎤᏕᎵᏛ ᏗᏂᏏᏅᎯ ᎣᎩᎾᏄᎪᏨᎯ ᏱᎩ; ᏌᏉ ᎡᎭ ᎣᎩᏙᏓ-ᎾᏍᎩ ᎤᏁᎳᏅᎯ.\nᎯᎠ ᎾᏍᎩ ᏅᏲᎯ ᏚᏓᏓᎳ ᏗᏣᏁᎶᏗ ᏕᏣᎵᏍᏓᏴᎲᏍᎬᎢ, ᎾᎯᏳ ᎢᏧᎳᏕᏣᎵᏍᏓᏴᎲᎦ ᎾᏂᎾᏰᏍᎬᎾ ᎠᎾᎵᏍᏓᏴᎲᏍᎪᎢ; ᏚᎶᎩᎸ ᎠᎹ ᏂᏚᏁᎲᎾ, ᎤᏃᎴ ᏧᏱᎴᎪᎢ; ᏕᏡᎬ ᏧᎳᏍᏚᏬᎠᏔᎯ, ᎪᎱᏍᏗ ᏄᎾᏓᏓᏁᎲᎾ, ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏩᏴᏒᎯ ᏥᎨᏐᎢ, ᏗᏰᎯᏛ ᏗᎧᎾᏍᏕᏢᏔᏅᎯ ᏥᎨᏐᎢ.\n“ᎤᎸᏕᎦ ᏏᏆ,” ᎤᏛᏁ ᎠᎳᏂ.\nᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎵᏂᎩᏛ ᎥᏥᎪᎥᎩ ᎤᏪᎷᎬᎩ ᎠᏍᏓᏯ ᎧᏁᎬᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎦᎪ ᏰᎵ ᎬᏩᏍᏚᎢᏍᏗ ᎪᏪᎵ, ᎠᎴ ᏗᎬᏩᏲᏍᏙᏗ ᎾᏍᎩ ᏓᏍᏚᏛᎢ?\nᏥᏁᏥ ᎠᏆᏒᎭᏂᎸ.\nᏥᎪ ᏗᎩᎧᎿᏩᏛᏍᏗ ᏚᏭᎪᏓᏁᎰ ᎩᎶ ᎠᏏ ᎾᎦᏛᎦᏁᎸᎾ ᏥᎨᏐᎢ, ᎠᎴ ᏚᎸᏫᏍᏓᏁᎲ ᎠᏙᎴᎰᏒᎯ ᏂᎨᏒᎾ ᏥᎨᏐᎢ?\nᏍᎩᎾᎾ ᏱᎾᎾᏛᎦ ᎠᎴ ᏣᏉ.\nᎠᏎᎪᎩᏓ ᎨᏒ ᎢᎾᏓ, ᏣᎵ ᎤᎳᏏᏂᏗ ᎾᎥ ᏭᎷᏤ.\n“ᎪᎨᏱ,” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ, ᎠᏓᏅᏖᏍᎩ.\nᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎾᏍᎩ ᎤᎾᏛᎦᏅ ᎤᎾᎵᎮᎵᏤᎢ, ᎠᎴ ᎤᏂᎸᏉᏔᏁ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎧᏃᎮᏛ, ᎠᎴ ᎤᏃᎯᏳᏁ ᎾᏂᎥ ᎬᏂᏛ ᎤᏂᏩᏛᏗ ᎢᎨᎬᏁᎸᎯ.\n”ᎣᏍᏓ ᎠᏆᎦᏎᏍᏗᏕᎬ ᏃᎴ ᏍᏓᏯ ᏓᎩᎷᏫᏍᏔᏏ.” \nᎩᎶ ᎢᏤᎲ ᎤᏓᏑᏰᏍᏗ ᎠᎩᎵᏲᎨᏍᏗ, ᎠᏓᏙᎵᏍᏗᏍᎨᏍᏗ; ᎩᎶ ᎤᎦᎵᏍᏗ ᎤᏓᏅᏖᏍᏗ ᏕᎧᏃᎩᏍᎨᏍᏗ.\nᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᎤᏍᏗ ᎤᏰᎸᏛ ᎯᎾᏄᎪᏫᏍᎦ, ᎾᏍᎩ ᎣᎩᎪᏩᏛᏗᏱ ᎠᎴ ᎢᏨᏲᎢᏳᏗᏱ? ᎦᏙ ᎤᏍᏗ ᏕᏣᎸᏫᏍᏓᏁᎭ?\nᎭᎾ ᎦᏚᏏ ᏍᏈᏍᏔ ᎨᏒ ᎤᏂᏍᎦᏎᏗ ᎢᎾᎨ ᎠᏁᎯ ᏏᏆ.\nᎠᎴ ᎢᏤ ᏴᏫ ᎢᏣᏄᏬᏍᏔᏅᎯ, ᎾᏍᎩ ᎢᏤ ᎢᎬᏁᎸᎯ ᏥᎩ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗᎨᏒ ᎤᎬᏩᎵ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎾᏍᎩ ᎤᏬᏢᏅᎯ ᎨᏒᎢ;\nᎨᏍᏗ ᏯᎩᏍᏕᎵᏍᎨ.\n“ᎠᎩᎵᏓᏍᏓ, ᎠᎩᎵᏓᏍᏓ, ᎠᎩᎵᏓᏍᏓ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ.\nᎩᎳᏈᏴ ᎤᏂᏴᏍᏔᎩᏍᏗ ᏓᎾᏗᏔᏍᎬ.\n”ᎤᏍᏆᏂᎩᏘ ᏏᏆ!” ᎤᏛᏁᎢ ᎰᎻ ᎡᏝᏪᎯ.\n“ᎣᏏᏉᏍᎪ ᎤᎵᏍᏔᏴᏗ?”\nᏃᎴ ᏰᎵ ᏱᏚᏯᏪᎦ, ᏓᎧᏔᏍᏗᏍᎨᎢ ᏗᎦᏙᎵ, ᏫᎦᏢᏍᎨ ᎠᏁᎵᏗ ᎤᏤᎵ ᏧᏍᏆᏅᎾ ᎭᏫᏂᏣ.\nᏗᏓᏁᎸ ᏓᏳᏂᎩᏓ ᎤᎷᏤ ᎠᎳᏂ.\nᏥᏍᏕᏥ ᎣᏍᏓ ᏄᏛᏁᎴ.\nᎢᎦᏁᎳᏅᎯᏰᏃ ᎠᏥᎸ ᎠᏓᎪᎲᏍᏗᏍᎩ.\nᎨᏓᎵ ᎢᏣ ᎤᏪᏅᏒ ᏣᎵ, ᎠᎢᏒ ᎤᎭᎨᏛ ᏂᎦᎵᏍᏗᏍᎬ ᎤᎧᎭᏛ.\nᏓᏆᎴᎿ ᏂᎦᏓ ᎦᏥᏲᎵᎳ ᏃᎴ ᏓᏊᎧᏔᏅ ᎠᏆᏂᎩᏍᏗᏱ.\nᎠᎦᏗᏓ ᏗᎩᎷᏫᏍᏔᏁᏗ ᎯᎪ ᎤᎵᏏᏂᏕᎾ.\nᎿᏉᏃ ᏚᎾᏎᏒᎮᎢ; ᎹᏓᏯᏃ ᎠᎦᏑᏰᏎᎢ; ᎠᎴ ᎠᎨᎳᏕ ᏌᏚ ᎾᏂᎥ ᎨᏥᏅᏏᏛ ᎤᎾᏓᏡᎬᎢ.\nᏕᎹᏍᎦ ᏫᎨᏙᎲ ᏄᎬᏫᏳᏎᏕᎩ ᎡᎵᏓ ᎤᎬᏫᏳᎯ ᎤᏪᎧᏅᎯ, ᎠᏯᏫᏍᎬᎩ ᎠᏂᏕᎹᏍᎦ ᎤᏂᏚᎲᎢ ᎾᏍᎩ ᎤᏚᎵᏍᎬ ᎠᎩᏂᏴᏗᏱ;\nᏔᎵᏁᏃ ᏚᏅᏎ ᏅᏩᎾᏓᎴ ᏧᏅᏏᏓᏍᏗ ᎤᏟ ᎢᏯᏂᎢ; ᎾᏍᎩᏯᏉᏃ ᏂᏚᏅᏁᎴᎢ.\n“Ꮟ ᏎᎦ!” ᎤᏪᎷᏁ ᎡᎳᏆᏘ.\nᎨᏍᏗ ᎯᎸᎯᏳ ᏳᏩᎨᏫᏌ ᏌᎳᏓ.\nᎢᏣᏓᎪᎵᏯ ᎢᏨᏒ, ᎾᏍᎩ ᎢᏦᎯᏳᎯ ᏱᎩ, ᎠᎴ ᎢᏦᎯᏳᎯ ᏂᎨᏒᎾ ᏱᎩ; ᎢᏣᏙᎴᎰᎯ ᏂᏣᏍᏛᎢ. ᏝᏍᎪ ᎢᏨᏒ ᏱᏣᏓᎦᏔᎭ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎢᏥᏯᎥᎢ, ᎢᏳᏍᎩᏂᏃᏅ ᎡᏥᏐᏅᎢᏍᏔᏅᎯ ᏱᎩ.\nᎦᎸᎳᏘ ᎢᎦᏗ ᏃᎴ ᎤᏬᏚᏨ, ᎤᏍᎪᎸ ᎠᏨᏍᏗ ᏧᏍᏔᏩᏗᏙᎰ ᎢᏳᏍᏗ.\nᎠᏥᎶᎥ ᏓᏥᏍᏔᏩᏕᏏ.\nᎠᏏᏉᏃ ᏈᏓ ᎠᏓᏅᏖᏍᎨ ᏄᏍᏛ ᎦᏛᎬ ᎾᏍᎩ ᎤᏁᎳᏫᏎᎸᎢ, ᎬᏂᏳᏉ ᎠᏂᏫᏅ ᎾᏍᎩ ᎧᏂᎵᏯ ᏂᏙᏓᏳᏅᏒᎯ ᎤᎾᏓᏛᏛᏅᎯ ᎨᏎ ᏌᏩᏂ ᎦᏁᎸᎢ, ᎠᎴ ᎠᏂᏙᎾᎡ ᎦᎶᎯᏍᏗᏳᎶᏗ;\nᏙᏱ ᏄᏍᏛ ᎧᏃᎮᏍᎩ ᎠᏗᏆᎸᏕᏲᎲ ᎤᏩᏌ ᎠᏛᎪᏗ ᎨᏎ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎢᏳᏃ ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎠᎩᏍᏚᏩᏛᏍᏗᏱ, ᎠᏓᏓᏱᎮᏍᏗ ᎤᏩᏒ, ᎠᎴ ᏧᏓᎿᏩᏛ ᎠᏱᏍᎨᏍᏗ, ᎠᎴ ᎠᎩᏍᏓᏩᏕᎨᏍᏗ.\nᏥᎦᏔᎾᎥ ᏃᎴ ᎢᏗᎦᏪᏍᏘ ᎬᏘ ᎠᏆᏚᎵᏍᎬ ᏗᏥᎦᏆᎸᏂᏍᏙᏗ.\nᎢᏥᎦᏔᎭ ᏔᎵ ᎢᏳᏒᎯ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ, ᎠᎴ ᏴᏫ ᎤᏪᏥ ᏣᎦᏡᏔᏂᏒ ᎠᎦᏛᏗᏱ.\nᎠᏓᏥ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎾᎩᎷᏨᎾ ᎠᎴ ᏂᎦᏥᏬᏁᏔᏅᎾ ᏱᎨᏎᎢ, ᎥᏝ ᎠᏍᎦᏂ ᏱᎬᏩᏁᎮᎢ; ᎪᎯᏍᎩᏂ ᎥᏝ ᏳᏁᎭ ᎤᏄᏢᏙᏗ ᎤᎾᏍᎦᏅᏨᎢ.\nᏣ ᎤᏲ ᏱᎦᏣᏰᎸᎮᏍᏗ.\nᎡᎩᎵᏈᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏇᏍᏓ; ᎯᎠ ᎠᏍᎦᏯ ᏗᎦᏰᏏᏲᎯᏍᏗᏉ ᏱᎨᏎᎢ, ᎢᏳᏃ ᏏᏐᎢ ᏫᏄᎲᏍᏔᏅᎾ ᏱᎨᏎᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᎩ ᏂᎦᏛ ᎠᎵ ᏍᎦᏍᏙᏙ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏰᎵ ᏗᎨᏣᏟᏴᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᎯᏳ ᎤᏲᎢᏳ ᎢᎦ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᏂᎦᏛ ᎢᏣᏛᏁᎸᎯ ᎨᏎᏍᏗ, ᎨᏣᎴᏗ ᎢᏳᎵᏍᏙᏗᏱ.\n“ᏱᎦᏓᏅᏍᎬᎾ ᎠᏆᏗ ᎣᏍᏓ ᎠᎩᏰᎸᎰ,” ᎤᏛᏁ.\nᎠᎹ ᏗᎦᏁᎲ, ᏧᎾᎵᏍᏙᏗ ᏗᏗᏂᏃᎩᏍᎨᎢ, ᏰᎵ ᏍᎪᎯᏍᏆ ᏧᏂᏍᏗ ᏩᎶᏏ.\nᎤᏇᏄᎩᏎ ᎦᏲᏟ ᎤᎵᏦᏅ ᎤᏍᏉᏟ ᏃᎴ ᏚᏭᎪᏔᏁ ᏎᎦᏉ ᎬᏅ ᎤᏓᏔᏅ ᏓᎩᏍᎬ ᏃᎴ ᎠᎹ ᎠᏗᏔᏍᎬ.\n“ᎤᏲ ᎢᏯᏛᏁᏗ,” ᎤᏛᏁ ᏫᎵᎻ, ᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏔᏲᏍᏗ ᏄᏍᏛ ᏁᎵᏍᎬ.\nᎢᏨᏒ ᎢᏣᏓᏯᏫᏍᎨᏍᏗ. ᎢᏳᏃᏗᏍᏓᏓᏅᏟ ᎢᏣᏍᎦᏅᏤᎮᏍᏗ, ᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ; ᎢᏳᏃ ᎤᏲ ᎢᏯᏰᎸᏍᎨᏍᏗ, ᎯᏯᏙᎵᎨᏍᏗ.\nᏄᏓᎴᏒᏰᏃ ᎪᎱᏍᏗ ᎡᏘ ᎪᏪᎳᏅᎯ ᎨᏒ ᎠᏴ ᎢᎦᏕᎶᏆᏍᏗ ᎠᏰᎸᏎ ᎪᏪᎳᏁᎢ, ᎾᏍᎩ ᏗᏛᏂᏗᏳ ᏂᎬᏁᎲ ᎠᎴ ᎤᎦᎵᏍᏗ ᎢᎦᏓᏅᏓᏗᏍᏗᏍᎬ ᎪᏪᎵ ᎾᏍᎩ ᎤᏚᎩ ᎢᎬᎯ ᎢᏳᎵᏍᏙᏗᏱ.\nᎣᏁ ᎢᏴ, ᎠᎵᎮᎵᎨ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏧᏓᏏ, ᎯᏯᏔᏬᏙᎲᏍᎬᏍᎪ ᎯᎶᏄᎡᏗᎭ ᏴᏫ ᎤᏪᏥ?\nᎥᏝ ᏂᎦᏛ ᏴᏫ, ᎠᏂᏃᎮᏍᎩᏉᏍᎩᏂ ᎤᏅᏒ ᎤᏁᎳᏅᎯ ᎦᏳᎳ ᏗᎬᏩᏑᏰᏛ ᏥᎨᏒᎩ, ᎾᏍᎩ ᎠᏴ ᎢᏧᎳᎭ ᎣᎦᎵᏍᏓᏴᏅᎯ ᎠᎴ ᏦᎦᏗᏔᎲᎯ ᎾᏍᎩ ᎤᏲᎱᏒ ᏧᎴᎯᏌᏅᎯ ᏥᏂᎨᏎᎢ.\nᎤᏓᏩᏛᎮ ᎭᏫᏂᏨ ᎾᏂᏪᏍᎬ ᏃᎴ ᎤᏁᎷᎬ ᎤᎾᎵᎪᏚᏅ ᏏᏆ, ᏧᎴᎯᏌᏅ ᎢᎾᎨᎢ.\nᎠᏎᏃ ᎠᏂᏆᎵᏏ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎠᏂᏍᎩᎾ ᎤᎾᏤᎵ ᎤᎬᏫᏳᎯ ᎬᏗᎭ ᏥᏕᎦᏄᎪᏫᏍᎦ ᎠᏂᏍᎩᎾ.\nᎥᎾᏕᏍᎩ ᏂᏨᎦ ᏕᎦᏅᏅ ᎢᏥᎶᎯᏍᏗᏱ, ᎾᏍᎩᏃ ᎠᏲᏅᎵ ᎨᏒ ᏞᏍᏗ ᏳᏂᎪᎸᏍᏔᏁᏍᏗ; ᎧᏅᏬᏗᏉᏍᎩᏂ ᎨᏎᏍᏗ.\n ᎤᏩᏃᏪᎢ ᏫᎵᎻ ᎤᏛᎦᎾ ᏄᏪᏒ ᎦᏬᏂᏍᎩ.\nᎢᏧᎳᎭᏃ ᎨᏥᏅᏏᏓᏍᏗ ᏚᎳᏍᎬ ᎡᎳᏗ ᎤᏓᏅᏁ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᏙᎵᎩ ᏍᎩᎦᏘᏓ, ᏂᎦᏛᏃ ᏓᎬᏯᎫᏴᎡᎵ.\nᎤᎵᏍᏛᏧᏅ ᎠᏧᏣ ᎤᎵᏒᎯ ᎠᏰᎳᏍᏘ ᎠᎰᎵ, ᎤᏑᎸ ᎤᏅᎦᎶᏔᏅ ᏩᏥᎳ.\nᎩᎳᏉ ᎢᏴᏛ, ᏥᏛᎦᏔᎾᏫᏍᏗᏉ ᎢᎪᎯᏛ, ᎤᎵᏍᏆᎸᏗ ᎠᏤᎷᎩ ᏂᎦᎵᏍᏔᏅᎭ; ᎠᏤᎷᎩᏰᏃ ᏓᏳᏃᏴᎳᏏ, ᏧᏂᏲᎱᏒᎯᏃ ᏙᏓᎨᎦᎴᏔᏂ ᎠᏂᏲᎩ ᏁᎨᏒᎾ, ᎠᏴᏃ ᏓᏰᎩᏁᏟᏴᏏ.\nᏉᎳᏃ ᎤᏑᎡᏒ ᏌᏱᎳ, ᎤᏂᎩᏒᎩ, ᎠᏁᏓᏅᏟ ᏕᎬᏩᏲᏒ ᎤᏁᎳᏅᎯ ᎤᏪᏙᎵᏍᏗᏱ.\nᎯᎠ ᎾᏍᎩ ᎾᎿ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎬᏂᎨᏒ ᎾᎾᎵᏍᏗᎭ, ᎠᎴ ᎠᏍᎩᎾ ᏧᏪᏥ; ᎩᎶ ᏚᏳᎪᏛ ᏧᎸᏫᏍᏓᏁᎯ ᏂᎨᏒᎾ ᏥᎨᏐᎢ, ᎥᏝ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎨᏐᎢ; ᎠᎴ ᏗᎾᏓᏅᏟ ᎤᎨᏳᎯ ᏂᎨᏒᎾ ᏥᎨᏐᎢ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏅᏒᎩ ᏗᎹᏗ ᎢᏥᏩᏛᎲᏍᏗᏱ, ᎾᏍᎩ ᏥᎨᏳᎢ ᏥᎩ ᎠᏇᏥ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎤᎬᏫᏳᎯ ᏓᎧᎿᏩᏕᎬᎢ; ᎾᏍᎩ ᏓᏣᏅᏓᏗᏍᏔᏂ ᏄᏍᏛ ᎨᏙᎲ ᎦᎶᏁᏛ ᏕᏥᎦᎿᏩᏕᎬᎢ, ᎾᏍᎩᏯ ᏕᎦᏕᏲᎲᏍᎬ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᏚᎾᏓᏡᏩᏗᏒ ᏧᎾᏁᎶᏗ.\nᎤᏑᏰᎯᏙᎸ ᎪᏪᎵ ᏚᏌᎥ, ᎤᎾᏩᏛ, ᏎᎦ ᎤᎪᎢᏰᎥ, ᏗᎪᏪᎵᏍᎩ ᎤᏅᏁᎸ.\nᏧᎾᏕᎶᏆᏍᏗ ᏃᏊ ᏧᏓᎴᏅᎲ ᎠᏂᏲᏁᎦ ᎠᏂᏬᏂᏍᎩ ᏗᎾᏕᏲᎲᏍᎩ, ᎡᎵᏃ ᎪᎯᎩ ᏁᎲᎾ ᎢᎬᏩᎵᏍᏔᏅ ᎨᏎ ᏍᏏᏉᏯ ᏂᎬᏫᏍᏕᏃ ᏓᎾᏅᏓᏗᏍᎨ ᏣᎳᎩ ᏗᎪᏪᎳ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ, ᎢᏳᏃ ᎠᎵᏍᏓᏴᏗ ᏦᏍᏓᏓᏅᏟ ᏱᏚᏬᏕᏍᏗᎭ, ᎥᏝ ᏴᎦᏥᎦ ᎭᏫᏯ ᎡᎶᎯ ᎢᎪᎯᏛ ᎨᏒᎢ, ᏦᏍᏓᏓᏅᏟᏰᏃ ᏱᏙᏥᏲᏕᏍᏓ.\nᎿᏉᏃ ᎢᎦᏛ ᎠᏂᏆᎵᏏ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏍᎩ ᎯᎠ ᎠᏍᎦᏯ ᎥᏝ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ, ᏝᏰᏃ ᏯᏍᏆᏂᎪᏗᎭ ᎤᎾᏙᏓᏆᏍᎬᎢ. ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏴᏫ ᎠᏍᎦᎾᎢ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏱᏚᎸᏫᏍᏓᏏ? ᏔᎵᏃ ᏄᎾᏓᏛᎩ.\nᎰᎻ ᎠᎪᏕᏍᎩ, ᎧᏁᏌᎢ ᎯᏍᏚᎲᎦ ᏏᏆ ᏃᎴ ᎯᎷᏨ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ ᎩᎳᏈᏴᎯ!” \nᎪᎰᏍᏗ ᏯᏆᏛᏁᎸᏓ.\nᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏂᎯ ᏱᎯᎦᏔᎮᎢ, ᎥᎥ, ᏂᎯ, ᎪᎯ ᎾᏍᏉ ᎾᏍᎩ ᎯᎠ ᏣᏤᎵ ᎢᎦ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᏣᏁᎯ ᎨᏒᎢ! ᎠᏎᏃ ᎿᏉ ᎡᏨᏍᎦᎳᏁᎸ.\nᎢᏳᏍᎩᏂ ᎢᎩᎪᎲᎯ ᏂᎨᏒᎾ ᎨᏒ ᎤᏚᎩ ᏱᎬᎭ, ᎿᏉ ᏗᏛᏂᏗᏳ ᎢᏗᎦᏘᏲ ᎾᏍᎩ.\nᎾᏍᎩ ᎦᏰᏥᏐᏢᏔᏅ, ᎥᏝ ᏳᏞᏤ ᏱᎬᏩᏓᏐᏢᏔᏁᎢ; ᎤᎩᎵᏲᏨᏃ ᎥᏝ ᏳᏁᏤᎢ; ᏚᏓᏲᎯᏎᎴᏉᏍᎩᏂ ᎾᏍᎩ ᏚᏳᎪᏛ ᏗᎫᎪᏓᏁᎯ.\nᎤᏓᏅᏎᏃ ᎢᎾᎨ ᏬᎶᏎ ᎠᎴ ᎠᏓᏙᎵᏍᏗᏍᎨᎢ.\nᎤᎿᏛ ᎠᏒᏛ ᏗᎦᎾᎥ ᏗᏣ ᏭᎶᏎ ᏩᎭᏯ.\nᏥᏌ ᎤᏛᎦᏅᎩ ᎬᏩᏄᎪᏫᏒᎢ; ᎤᏩᏛᎲᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᏲᎢᏳᎲᏍᎦᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏪᏥ?\nᎥᏝᏍᎩᏂᏃᏅ ᎾᏂᎥ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏳᏁᎭ; ᎩᎶᏰᏃ ᏙᏧᎾᏓᏅᏛ ᎤᏂᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎯ ᎨᏒ ᎢᏯᏍᏗ ᎠᎾᎵᏍᏓᏴᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏣᏂᎩᏍᎪ ᎾᏍᎩᏯᎢ; ᏚᎾᏓᏅᏛᏃ ᏗᏩᎾᎦᎳᎯᏳ ᎨᏒ ᏗᎦᏓᎭ ᏂᏙᎦᎵᏍᏗᏍᎪᎢ.\nᎤᎩᏨᏛᏃ ᎠᎾᎢᏎ ᎠᎴ ᎿᏉ ᎾᎥᏂᎨ ᎤᏂᎷᎴ ᏗᎦᏚᎲᎢ, ᏈᏓ ᎤᎩᎳᏫᏎ ᎦᏌᎾᎵ ᎤᏓᏙᎵᏍᏔᏅᏎ ᏔᎳᏚ ᎢᏳᏟᎶᏛ ᎢᏴᏛ ᎧᎳᏩᏗᏒᎢ.\nᎠᏎᏃ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎤᏂᎪᎲ, ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏃᎮᎴ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎤᏘᏰᏗ ᏥᎩ ᏧᎬᏩᎶᏗ, Ꭷ, ᎡᏗᎷᎦ, ᎾᏍᎩᏃ ᏧᎬᏩᎶᏗ ᎤᏘᏯᏍᏓᏁᏗ ᎨᏒ ᎢᎦᏤᎵ ᏱᏂᎦᎵᏍᏓ.\nᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ, ᎾᏍᎩ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎯᎠ ᏂᏥᏪᏍᎬᎢ, ᎠᏴ ᏉᎳ ᏥᏯᎵᎪᏁᎯ; ᎠᏴᏃ ᎠᏉᎳ; ᎠᏴᏃ ᏏᏆᏏ; ᎠᏴᏃ ᎦᎶᏁᏛ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎢᏳᏃ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᏓᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎠᏲᎵ ᏥᏓᏓᏂᎸᎪᎢ, ᎥᏝ ᎾᎿ ᏱᏮᎬᏴᎭ.\nᏍᏈᏍᏓ ᏧᎪᎲ ᏏᏆ ᎤᏂᎷᏨ ᏃᎴ ᎤᎾᎵᏛᏔᏅ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏓᎨᏏ.”\nᎾᎯᏳ ᎨᏒ ᎢᏳᏃ ᎩᎶ ᎯᎠ ᏂᏥᏪᏎᎮᏍᏗ, ᎬᏂᏳᏉ ᎠᏂ ᎦᎶᏁᏛ ᎡᏙᎭ; ᎠᎴ ᎠᏂ; ᏞᏍᏗ ᏥᏦᎯᏳᏂ\nᎤᏍᏗ ᎠᎦᎸᏓ ᏄᎾ ᎦᏁᎦ ᎤᏩᏛᎮ, ᎤᏩᏯᎨᎢ.\nᎾᏍᎩᏃ ᎠᏍᎦᏂ ᏧᎬᏫᏳᏌᏕᎬᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎬᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᏌᏕᎩ ᎢᏳᎵᏍᏙᏗᏱ ᎬᏂᏛ ᎦᎾᏄᎪᏫᏍᎬ ᎬᏔᏅᎯ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᎢᏳᏩᏂᏌᏛ.\nᎣᏂᏄᎸᏅᏃ ᎣᏥᏍᏗᏰᏗᏍᎬᎢ, ᎣᎩᏑᎵᎪᏨᎩ, ᎯᎠ ᏃᎩᏪᏒᎩ; ᎤᎬᏫᏳᎯ ᎠᏓᏅᏖᏍᎬ ᏫᏂᎦᎵᏍᏓ.\nᎿᏉᏃ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᏪᏅᏎ ᏭᏃᏔᏁᎢ, ᎯᏍᎩᏃ ᎢᏯᎦᏴᎵ ᎤᏁᏉᏤᎴᎢ.\nᎢᏳᏃ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ ᏱᎩ, ᎥᏝ ᏰᎵ ᎪᎱᏍᏗ ᏱᏙᎬᏩᎸᏫᏍᏓᏏ.\nᎤᎬᏫᏳᎯ ᎤᏁᏗ ᎨᏎᏍᏗ ᎤᏩᏛᏗᏱ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎾᎯᏳ ᎢᎦ. ᎠᎴ ᏂᎦᎥ ᎠᎩᏍᏕᎸᎯᏙᎸ ᎡᏈᏌ ᎣᏏᏳ ᎯᎦᏔᎭ.\nᎠᎧᏔᎮᎢ ᎾᎥᏂ ᎨᏒ ᏍᎦᏚᎩ ᎤᎾᏓᎪᎾᏙᏗ, ᏃᎴ ᎤᏩᏅᎨ ᎤᏪᏅᏍᏗ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪ ᏎᎭ; ᎢᏳᏃ ᏂᏥᎬᎾ ᏴᏫ ᎤᏪᏥ ᎤᏫᏯ, ᎠᎴ ᎤᎩᎬ ᎢᏣᏗᏔᎲ ᏱᎩ, ᎥᏝ ᎬᏂᏛ ᏱᏥᏯᎠ.\nᎯᎠ ᏂᎦᏪᏍᎬᎩ ᎠᏍᏓᏯ ᎧᏁᎬᎩ, ᎤᏁᎳᏅᎯ ᎡᏥᎾᏰᏍᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎡᏥᎸᏉᏗᏍᎨᏍᏗ; ᎾᎯᏳᏰᏃ ᏧᏭᎪᏙᏗ ᎨᏒ ᎠᎵᏰᎢᎶᎦ; ᎠᎴ ᎡᏣᏓᏙᎵᏍᏓᏏ ᎾᏍᎩ Ꮎ ᎦᎸᎶᎢ ᎤᏬᏢᏅᎯ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᎠᎹ ᏕᎦᏄᎪᎬᎢ.\nᎾᏍᎩ ᎤᏛᎦᏁ ᎦᏬᏂᏍᎬ ᏉᎳ, ᎾᏍᎩ ᎤᏯᎾ ᏒᎯ ᏚᎧᎿᏅ ᎠᎴ ᎤᏙᎴᎰᏒ ᎤᎲ ᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏪᏗ,\nᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪᎯᎠ ᏥᏂᎬᏪᏏ, ᎬᎪᎥᎩ ᎭᏫᏂᏗᏢ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎰᎯᏳᎲᏍᎦ? ᎤᏟ ᎢᏳᏍᏆᏂᎪᏗ ᎯᎪᏩᏘᏍᎨᏍᏗ, ᎡᏍᎦᏉ ᎾᏍᎩ.\nᎾᏍᎩ [ᎤᏓᏅᏘ] ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎨ ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒ ᏧᎾᏓᎴᏅᏛ ᎠᏴ ᎠᏁᎲ [ᎬᏂᎨᏒ ᏥᏄᏩᏁᎸ;] ᎾᏍᎩ ᎦᎶᏁᏛ ᏥᎩ ᏂᎯ ᎢᏥᏯᎢ, ᎾᏍᎩ ᎤᏚᎩ ᎨᏨᏗ ᏥᏂᎬᏁ ᎦᎸᏉᏗᏳ ᏗᎨᏒ ᏫᏥᎾᏄᎪᎢᏍᏗᏱ.\nᏐᏉ ᎢᎦ, ᎤᏍᏗ ᏥᏍᏆ ᏭᏂᎸᏅ ᎤᎦᎹ ᎤᏂᎬ, ᎠᎹᏉ ᎢᏳᏍᏗ, ᏯᎦᏕ ᎪᎰᏍᏘ ᎠᏑᏱ ᏅᏯ ᏱᏭᏂᏝᏁ.\nᏂᎦᏛᏃ ᎤᏮᏕᏦᏁ ᎠᎴ ᏚᎴᏁ ᎤᏍᏓᏩᏛᏎᎢ.\nᎾᎨ ᎢᏴ ᎠᏂᎩᏍᎨ, ᎤᏗᏍᎩ ᎠᎢᏎ ᏰᎵ ᏄᎵᏍᏔᏅᎲ, ᏫᏥ ᎢᎦ ᎨᏎ ᎠᏓᏓᏏᏂᏎ ᏕᏧᎬ ᎡᎳᏗ ᏧᎧᏁᎸ ᏃᎴ ᏧᏩᏂᎦᏝᏅᎯ, ᏍᎩᏉ ᎢᏳᏛᏁᏘ ᎨᏎ.\nᎦᏙᏰᏃ ᏳᏁᏉᏥ ᏴᏫ ᎢᏳᏃ ᏂᎬ ᎡᎶᎯ ᎤᏤᎵ ᏱᏄᎵᏍᏔᏅ, ᎤᏩᏒᏃ ᏳᏲᎱᏒ ᎠᎴ ᏯᎦᏓᎢᏅ.\nᎬᏩᏔᏲᏎᎸᎩᏃ ᎦᏓᎷᏯᏛᏉ ᎾᏍᏉ ᎤᏄᏩᎥ ᎤᎾᏒᏁᏗᏱ, ᏂᎦᏛᏃ ᎤᎾᏒᏂᎸᎯ ᏚᎾᏗᏩᏒᎩ.\nᏂᎦᏓ ᎣᎪᎵᏍᏗ.\nᎠᏏᏉᏃ ᎦᏬᏂᏍᎨ ᎩᎶ ᎢᏳᏍᏗ ᎠᏆᎵᏏ ᎤᏔᏲᏎᎴ ᎤᎵᏍᏓᏴᎾᏁᏗᏱ; ᎤᏴᎴᏃ, ᎠᎴ ᎤᎵᎩᏳᏍᏓᏅᏁᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᏩᏂᎴᎢ, ᏅᏧᎵᏍᏙᏔᏁᎤᏁᎳᏅᎯ ᏄᎸᏉᏔᏅᎾ ᎨᏒᎢ. ᏥᏍᎪᏴᏃ ᎬᏩᏯᎥ ᎤᏲᎱᏎᎢ.\nᎾᏍᎩᏴ ᎠᏤᎯ ᏏᏆ ᎭᏫᏯ ᏃᎴ ᏗᎦᏒᏍᏔᏅ ᏏᏆ ᎭᏫᏯ ᎱᏚᎴᎲ! \nᎤᏁᎦ ᎦᎸᎶᎢ ᎧᏂᎩᏛ ᏥᏍᏆ.\nᎠᎵᏰᎾ ᎬᏂᎨᏒ ᏂᎬᏁ ᎫᎪᏗᏍᎩ ᏧᏆᎶᎦ ᏫᏚᎪᏍᎬ ᎦᏙᎯ.\nᏩᎦ ᏓᏂᏁᎩᎡᎲ ᎦᏍᎩᎶ ᎤᏬᏠ ᎤᏅᏏᏴ, ᏏᏆ ᎤᏴᏍᏗ ᎾᎥᏂ ᏃᎴ ᏚᎦᏙᏍᏙ ᏰᎵ ᎢᏳᏪᏅᏍᎥᏗᏏ ᎭᎾᏉ ᎤᏬᏠ ᎤᏛᎦᏍᏙ.”\nFlorida ᎢᎨᏅᏍᏗ ᎠᏆᏚᎵ, ᎤᏛᏅ Perry.\nᎯᎠᏃ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᎤᏲ ᎠᏂᏬᏂᏍᎬ ᏴᏫ, ᎤᏂᏃᎮᏗ ᎨᏎᏍᏗ ᏗᎫᎪᏗᏱ ᎢᎦ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᎤᏁᏨ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎣᎦᏛᎦᏅᎩ, ᎾᎯᏳ ᎦᎸᏉᏗ ᎣᏓᎸ ᎢᏧᎳᎭ ᎣᏤᏙᎲᎢ.\nᎦᎸᏓᏱ ᎤᏲᎰᏎ ᏱᎪᎵᎬᎾ ᎤᏂᏌᎭᏙᎭᏴ ᎠᎴ ᏳᏬᎯᏳᏔᏅᏓ.\nᎢᏳᏃ ᎣᏍᏛ ᏃᏍᏓᏛᏁᎸᎢ ᎯᎠ ᎠᏲᎤᎵ ᎠᏍᎦᏯ, ᎢᏳᏍᏗ ᎬᏔᏅᎯ ᎨᏒ ᎠᏥᏅᏩᏅᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎪᎯ ᎢᎦ ᎢᎣᎩᎾᎵᏱᎵᏕᎮᏍᏗ,\nᎠᏎ ᏓᎾᏓᏟᏱᏍᎪ ᏏᏆ ᏱᎨᏥᎸᎾ.”\nᎾᏍᏉᏃ ᎥᎤᎷᏨᎩ ᏂᎦᏗᎹᏏ, ᎾᏍᎩ ᎢᎬᏱᏱ ᏥᏌ ᎡᏃᏱ ᎤᎷᏤᎸᎯ, ᎤᏲᎸᎩ ᏗᏜᏍᏔᏅᎯ ᎻᎳ ᎡᎳᏫᏃ, ᎠᏍᎪᎯᏧᏈ ᎢᏴᏛ ᎢᏳᏓᎨᏛ.\nᏧᏁᎶᎸᎯᏃ ᎤᏂᎪᎲ ᏄᎵᏍᏔᏅᎢ ᏚᎾᎵᏘᏎᎢ, ᎠᎴ ᎤᏁᏅᏎ ᏭᏂᏃᏁ ᏗᎦᏚᎲ ᎠᎴ ᎢᏴᏛ ᏭᏩᎫᏛᎢ.\nᏧᎦᏴᎵᎨ ᏚᏂᏁᏤᎸ ᎯᎠ ᏂᏚᏂᏪᏎᎸᎩ; ᎣᏍᏗᎦᏔᎭ ᎯᎠ ᎣᎩᏁᏥ ᎨᏒᎢ, ᎠᎴ ᏗᎨᏫ ᎤᏕᏅᎢ;\nᏯᎵᏖᎸᎮᏍᎬᎾ ᎤᏬᏞ, ᎠᏓᏅᏖᏍᎨᎢ.\nᎠᏎᏍᎩᏂᏃᏅ ᎥᏝ ᎠᏍᎦᏯ ᏂᎨᏴ ᏔᎵ ᏄᏛᏛᎾ ᏰᎭ, ᎥᏝ ᎠᎴ ᎠᎨᏴ ᎠᏍᎦᏯ ᏔᎵ ᏄᏛᏛᎾ ᏰᎭ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏄᏩᎾᏅᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎦᏓᏅᏖᏍᎬ ᎯᎠ ᏄᏍᏗ, ᎾᏍᎩ ᏗᏓᏕᏯᏙᏙᏗᏱᏉ ᏂᎨᏒᎾ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲ ᎤᎾᏖᎴᏛ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᏭᎾᎦᏔᎲᏍᏔᏅᎯ ᏥᎩ;\nᏔᎵᏁ ᎤᏲ ᎨᏒ ᎤᎶᏐᏅ; ᎬᏂᏳᏉ ᏦᎢᏁ ᎤᏲ ᎬᏒ ᏞᎩᏳ ᏓᎦᎷᏥ.\nᎠᏎᏃ ᎯᎠ ᎾᏍᎩ ᏧᎬᏩᎶᏗ ᎦᏓᏉ ᏗᎪᏢᏔᏅᎯ ᏕᎩᎶᏗ, ᎾᏍᎩ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝᏃ ᎠᏴ.\nᎤᏂᏁᏨᏃ, ᎥᏝ ᏲᏥᎦᏔᎭ ᏧᏓᎴᏅᎢ, ᎤᎾᏛᏁᎢ.\nᏣᎵᏍᏙᏂ ᏓᏳᎶᏒ ᎠᏧᏣ ᏓᏆᎧᎾᏅ ᏃᎴ ᏭᏅᎦᎳᎲ ᏓᏍᏔᏅᏅ, ᏧᏍᎩᏃᎢ ᎤᏛᏅ, ᏰᎵᏉ ᏦᎳ ᎠᎩᏩᎯᏍᏙᏗ ᏱᏗᏥᏒᏁ ᏃᏉ ᎠᏓᎴᏂᏍᎩ, ᎠᏎᏃ ᎦᏳᎳ ᎭᏁᏌᎦ.\nᎠᏆᏍᎦᏱᏛ ᏄᎵᏍᏔᏅ.\nᎾᏍᎩᏃ ᏧᎾᎩᎸᏗ ᏏᏌᎵᏱ ᏭᏂᎷᏨ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎪᏪᎵ ᎤᏂᏅᏁᎸ, ᎾᏍᏉ ᏉᎳ ᏚᏂᏲᎯᏎᎸᎩ.\nᎬᏪ!! ᎢᏍᏓᏯᏊ ᎤᏃᎸᏎ.\nᎢᏳᏃ ᏅᏩᎾᏓᎴ ᎾᏍᎩ ᎯᎠ ᎢᎨᏨᏁᏗᏱ ᏳᏂᎭ; ᏝᏍᎪ ᎠᏴ ᎤᏟ ᎢᎦᎢ? ᎥᏝᏍᎩᏂᏃᏅ ᎾᏍᎩ ᎯᎠ ᎢᎦᏲᎦᏛᏁᏗ ᎣᎩᎲ ᏱᏃᎦᏛᏁᎸ; ᎤᏁᎳᎩᏉᏍᎩᏂ ᎣᎨᎵᏒ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎣᎩᏂᎬᏎᎲᎢ, ᎾᏍᎩ ᎣᎦᎵᏫᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎠᎢᏒᎢ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎾᏍᎩ ᎩᎶ ᏱᏕᏣᏓᏲᎯᏎᎸ ᎢᏥᏅᏏᏙᎲ ᎡᏦᎢᏳᏗᏱ, ᎾᏍᎩ ᎢᏥᎾᏝᎢ ᎨᏒ ᎡᏦᎢᏳᎲᏍᎩ; ᎾᏍᏉ ᎠᏍᎦᏂ ᏱᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎩ ᏱᎩ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ ᏱᎩ, ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᎬᏗᏍᎩ?\nᎠᏴ ᏥᏧᏏ ᏏᎵᏏᏱ ᎠᏆᏕᏅᎯ ᏓᏌ ᎦᏚᎲᎢ, ᎠᏎᏃ ᎠᏂ ᎦᏚᎲ ᎠᏆᏛᏒᎯ, ᎨᎺᎵ ᏚᎳᏍᎬᎢ ᎥᏇᏲᏅᎯ ᏭᏂᎫᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎨᏒ ᏗᎩᎦᏴᎵᎨ ᎨᏥᏁᎸᎯ, ᎤᎵᏂᎩᏗᏳᏃ ᎠᏆᏓᏅᏛᎩ ᏕᏥᎦᎿᏩᏗᏒ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏂᏥᎥ ᏂᎯ ᏥᏄᏍᏗ ᏥᏣᏓᏅᏔ ᎪᎯ ᎢᎦ ᏥᎩ.\nᏧᎾᎵᏂᎩᏛ ᏚᏪᎧᎲᏒ ᎤᎾᏅᏗᏱ, ᎠᎴ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏚᏌᎳᏓᏅ.\nᎿᏉᏃ ᎤᎾᏝᎢ ᏭᏯᏅᎲ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏣᏁᎫᏥᏛ ᎬᏅᏏᏓᏍᏗ, ᎤᏁᎳᎩ ᎬᏰᎵᏎᎸᎩ ᏂᎦᏛ ᏂᎯ ᏥᎬᏚᎬᎩ, ᏍᎩᏔᏲᏎᎸ ᎢᏳᏍᏗ.\nᎨᏍᏗ ᎩᎶ ᏲᏥᎸ, ᎣᏣᏍᎩᏗᏍᎬ ᎤᏩᏌ. ᎠᏎᏃ ᎣᎩᏍᏛᏗᏍᏗ ᎩᎦ ᎣᎩᏁᎲ ᏓᏳᏓᎴᏅᏓ.\nᎾᏍᏉ ᎤᏣᏘ ᎢᏳᏓᎴᎩ ᏱᏓᏂᏬᏂᎭ ᎡᎶᎯ, ᎠᏎᏃ ᎥᏝ ᏌᏉ ᎾᏍᎩ ᎪᎱᏍᏗ ᏂᎦᏛᎬᎾ ᏱᎩ.\nᎤᏛᏅᎢᏍᏛ ᏧᏓᏟᏴᏗ ᎤᏪᎵᏎ ᏣᎵ.\nᏥᏏᎾᏒ ᎣᏍᏓ ᎾᏆᎵᏍᏔᏁᎸ, ᎤᏃᎯᏳᏅ ᎬᎩᏍᏗ ᏱᎨᏒᎾ ᎤᏣᎴᏛ ᏃᎴ ᏧᏤᎵ ᏴᏫ.\nᎠᎴ ᎢᏨᏲᏎᎭ ᏂᎯ ᎢᎦᎵᎢ, ᏞᏍᏗ ᏱᏗᏥᏍᎦᎢᎮᏍᏗ ᎠᏰᎸ ᎠᏂᎯᎯ, ᎿᏉᏃ ᎪᎱᏏᏗ ᎤᏟ ᎢᏴᏛ ᏫᎬᏩᎾᏛᏁᏗ ᏂᎨᏒᎾ ᏥᎩ.\nᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ ᎡᏆ ᏓᏏᎳᏕ, ᏃᎴ ᎦᎸᎳᏗᏣ ᏓᏏᎳᏛ, ᎡᎳᏗ ᎢᏳᏩᏂ ᎠᏍᎪᎵ ᎯᎦᏓᎡ ᎡᏆ ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩ.\nᎮᎵᎠᏍᎪ ᎣᏍᏓ ᏄᏪᏎ?”\nᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏍᏗ ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ. ᎠᏲᎩ ᎠᏫᏒᎯ ᎨᏐᎢ; ᎠᏲᎩ ᏂᎨᏒᎾ ᏗᎴᏙᏗ ᎨᏎᏍᏗ.\nᎢᏓᏓᏅᏟ ᏞᏍᏗ ᏱᏗᏣᏓᏍᎦᎨᏍᏗ ᏱᏕᏧᎪᏓᏏᏰᏃ ᎢᏥᏍᎦᏅᏨᎢ. ᎬᏂᏳᏉ ᏗᎫᎪᏗᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎦᏙᎦ.\nᎾᏍᎩ ᎠᎺ ᎠᎴ ᎩᎬ ᎤᎷᎯᏍᏔᏅᎯ, ᎯᎠ ᏥᏌ ᎦᎶᏁᏛ; ᎥᏝ ᎠᎹᏉ ᎤᏩᏒ, ᎠᎹᏍᎩᏂ ᎠᎴ ᎩᎬ. ᎬᏩᏠᏯᏍᏗ ᎠᎴ ᎠᏓᏅᏙ ᎾᏍᎩ ᎧᏃᎮᏍᎩ, ᎠᏓᏅᏙᏰᏃ ᎦᏱᎪᎩ ᏂᎨᏒᎾ.\nᎪᎯᏃ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎾᏍᎩ ᎤᎾᏄᎪᏥᎸ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏲᏍᏔᏅᎯ ᏥᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ, ᎠᎴ ᎤᎾᏄᎪᏫᏒᎯ ᏥᎩ ᎬᏂᏛ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏔᏅᎯ,\nᎤᎾᏘᏃᎮᎴᏃ; ᎤᎪᎲᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᏓᏅᏙ ᎤᎩᎸᏁᎢ; ᎡᎳᏗᏃ ᎤᏅᏤᎢ, ᎠᎴ ᏓᎭᏬᎢᎲ ᎠᎵᏗᏒᏂᎮᎢ.\nᎤᎵᏍᏈᏗᏃ ᎤᎩᏒ ᎠᎴ ᎤᎵᎮᎵᏨ ᏚᏁᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏂᏥᎥ ᎢᏣᏗᏔ;\nᏥᏔᏲᎯᎲᎢ, ᎾᏍᎩ ᎢᏳᏃ ᏰᎵ ᎣᎩ ᎪᎯ ᎿᏉ ᎣᏍᏛ ᎢᏯᏆᎵᏍᏓᏁᎸᏍᏗᏱ ᎦᎢᏒ ᏫᏨᎷᏤᏗᏱ, ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎠᏰᎸᏍᎬ ᏅᏓᏳᎵᏍᏙᏗᏱ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏧᎿᎷᏒ ᎠᎹᏱ ᎫᏓᏅᏒ, ᎤᎪᎮ ᎦᎸᎶᎢ\nᎠᏂᏍᎦᏰᎬᏍᏓ, ᎢᏳᏉ ᎣᏁᏙᎵᏓᏍᏗ ᎨᏒ, ᏫᏥᎢᎦ ᎨᏒ, ᎠᏆᏓᎾᏅ ᎠᏁᏙᎲ.\nᎤᎾᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᏂᎦᏛ ᏚᏃᎸᏎᎢ; ᎠᎴ ᎤᏄᏖᏎ ᎤᎵᎬᎭᎷᏴᎯ ᎤᎾᏘᏰᎸᎯ ᏔᎳᏚ ᎢᏯᎧᎵᎢ ᏔᎷᏣ.\nᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏧᏠᎠᏎ ᎾᏍᎩ ᎤᏪᏯᎸᏤᎢ, ᎠᏰᎸ ᏧᎴ-ᏗᏍᎪᏂᎯ ᎾᏍᎩᏯ ᎨᏌ ᎤᏙᏢᏒᎢ; ᎧᏁᎬᏃ ᎦᎸᎳᏗ ᏧᎶᏎᎯᎠ ᏅᏧᏪᏎᎢ; ᏂᎯ ᎬᎨᏳᎢ ᎠᏇᏥ; ᎣᏏᏳ ᎬᏰᎸᎢ ᏂᎯ.\n”ᎦᏙᏃ ᏔᏛᏁᎵ ᏓᏍᎩᏍᏆᏂᎪᏔᏂ? ᎤᏛᏛᏁ ᏫᎵᎻ, ᎤᏟᏂᎩᏓ ᎤᏓᏅᏖᎸ ᏄᏪᏎ.\n”ᎠᎳᏂ, ᎪᎱᏍᏗ ᎬᏃᎯᏎᏗ,” ᎤᏛᏁ.\nᎾᏍᎩᏃ ᎠᏴ ᏉᎳ ᎠᏋᏒ ᎢᏨᏍᏗᏰᏗᎭ ᏥᏁᎢᏍᏗᎭ ᎤᏙᎵᏍᏙᏏᏳ ᎨᏒ ᎠᎴ ᎤᏓᏅᏘᏳ ᎨᏒ ᎦᎶᏁᏛ, ᎠᏴ ᎾᏍᎩ ᏥᏨᏰᎳᏗᏙᎰ ᎠᏆᏓᎾᏰᏍᏗ ᏥᎨᎰᎢ, ᎠᏎᏃ ᎠᎩᎪᏁᎸ ᏂᏨᎾᏰᏍᎬᎾ ᏥᎩ ᏂᎯ--\nᏣᏂᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎬᏩᏃᏁᎴᎢ.\nᎾᏍᎩᏰᏃ [ᎦᎶᏁᏛ] ᎠᏰᎸᎢ ᎠᏯᎠ ᏂᎦᏛ ᎠᎧᎵᎢ ᎤᏁᎳᏅᎯ.\nᏙᎢᏳᏍᏘ ᏣᏂᎬᎦ?\nᎨᏍᏗ ᎪᎱᏍᏗ ᏣᏓᏅᏖᏙᏗ ᏱᎩ.\nᏥᏌᏃ ᏚᎴᏅ ᎤᏍᏓᏩᏛᏒᎩ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ.\n”ᎭᏓᎾᏫᏗᏍᎨᏍᏗ, ᎠᏯ ᏥᏙᎬ ᎢᏣ ᎩᎶᎯ, ᏔᏓᏅᏗᏍᏓ, ᏔᏓᏅᏗᏍᏓ, ᏔᏓᏅᏗᏍᏓ! \nᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏅᏙ ᎠᏆᏘᏂᏙᎲᎩ; ᎠᎴ ᎬᏂᏳᏉ ᎦᏍᎩᎶ ᎦᎸᎶᎢ ᎤᏂᏍᎩᎳᏛᎩ, ᎩᎶᏃ ᎾᎿ ᎦᏍᎩᎸ ᎤᏪᏅᎩ.\nᏃᏗ ᏒᎾᎢ ᏃᎴ ᎠᎾᏓᎴᏴᏗᏍᎩ ᎢᏳᏂᏍᏗ ᎭᏁᎰᎢ ᎭᎾᏂ.\nᎠᎴ ᏥᎬᎵᏲᎬ ᎾᏍᎩ ᎠᎩᏇᏓᎸ ᏣᏇᎲᎩ, ᎥᏝ ᏅᎵᏌᎵ ᏱᏥᏰᎸᏁᎢ, ᎠᎴ ᎥᏝ ᏱᏥᏲᎢᏎᎴᎢ; ᏕᏍᎩᏯᏓᏂᎸᏨᎩᏍᎩᏂ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎦᎶᏁᏛ ᏥᏌ ᎾᏍᎩᏯᎢ.\nᎠᎴ ᏕᏥᏅᏫᏍᎨᏍᏗ ᏧᏂᏢᎩ ᎾᎿ ᎠᏁᎲᎢ, ᎠᎴ ᎯᎠ ᏂᏕᏥᏪᏎᎮᏍᏗ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎥᏂᏳ ᎢᏥᎷᏤᎸ.\nᎢᏳᏰᏃ ᏱᏅᏩᏎᎦᏨ ᎹᏏᏙᏂ ᎠᏁᎯ ᏱᎬᎩᏍᏓᏩᏕᏅ, ᏱᏨᏩᏛᏔᏅᏃ ᏂᏣᏛᏅᎢᏍᏔᏅᎾ, ᎠᏴ, (ᎥᏝᏰᏃ ᏂᎯ ᏱᎦᏗᎭ,) ᏲᏣᏕᎰᎯ ᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᎣᎪᎯᏳᎯ ᎣᎦᏢᏈᏒᎢ.\n”ᎦᏨ ᎮᎵ ᏯᏇᎾ?” \nᏥᏛᏍᎩᏗᏍᎪ ᏒᎧᏔ ᎢᏗᎬᏓ ᏓᏛᎯᏍᏗᏍᎨ ᏒᎧᏔ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅᎩ ᏂᎦᏛ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ ᎡᏈᏌ ᎠᏁᎯ; ᏂᎦᏛᏃ ᎤᏂᎾᏰᏒᎩ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᏚᏙᎥ ᎦᎸᏉᏗᏳ ᏄᎵᏍᏔᏅᎩ.\nᏥᏌᏃ ᎤᏁᏨ ᏓᏕᏲᎲᏍᎬ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᏃ ᏗᏃᏪᎵᏍᎩ ᎦᎶᏁᏛ ᏕᏫ ᎤᏪᏥ, ᏣᎾᏗᏍᎪᎢ?\nᎠᎴ ᎤᏂᏁᏟᏴᏎ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᎤᏤᎵᎦ, ᎠᏲᎱᏍᎩ ᏴᏫ ᏗᏟᎶᏍᏔᏅᎯ ᎾᏍᎩᏯ ᏄᏅᏁᎴᎢ, ᎠᎴ ᏥᏍᏆ, ᎠᎴ ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏗᏠᎯᏍᏔᏅᎯ ᎨᏒ ᎥᏝ ᎠᏍᏓᏱᏛᎯ ᏱᎨᏎ ᎩᎬ ᎬᏔᏅᎾ ᏂᎨᏒᎾ ᏱᎩ.\nᎤᏩᎾᏬᏐᏁ ᎤᏂᏥ.\nᏦᏚᎯ!\nᎥᏝᏰᏃ ᎠᏓᏅᏙ ᎠᏥᎾᏝᎢ ᏔᎵᏁ ᎡᏥᏁᎸᎯ ᏱᎩ, ᎾᏍᎩ ᎢᏥᎾᏰᎯᏍᏗᏱ; ᏧᏪᏥᏍᎩᏂ ᎢᎨᎬᏁᎸᎯ ᎤᎾᏓᏅᏙ ᎡᏥᏁᎸ, ᎾᏍᎩ ᎢᏛᏗᏍᎬ, ᎠᏆ! ᎡᏙᏓ! ᏥᏓᏗᏍᎪᎢ.\nᎠᏏᏉᏃ ᎠᏥᏅᏩᏅᎯ ᎠᏲᎤᎵ ᏕᎤᏂᏴᏎ ᏈᏓ ᎠᎴ ᏣᏂ, ᏂᎦᏛ ᏴᏫ ᏕᎬᏩᏂᏔᏫᏤ ᎠᏲᏓᏝᎲᎢ ᏐᎵᎹᏅ ᎤᏤᎵ ᏥᏕᎤᏙᎥ, ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏍᎨᎢ.\nᏧᏂᎩᏣᏅ ᏃᎴ ᏧᏩᏂᎦᏝᏅ ᎦᎳᎨᏰ ᎾᏍᎩᏯ ᏧᏪᏘ ᏧᎪᎳ.\nᎤᏬᎯᏤᏃ ᎾᎿ ᎤᏁᏙᎴᎢ, ᎾᏂᏍᎦᎢᎲᎾ ᎠᏂᏬᏂᏍᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᎾᎵᏍᎦᏍᏙᏛ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎠᏍᏓᏱᏗᏍᎨ ᎧᏃᎮᏛ ᎤᏩᏒ ᎤᏓᏙᎵᏣᏛ ᎧᏃᎮᏍᎩ, ᏓᏁᎮ ᏧᏃᏰᏂ ᏧᏅᏙᏗᏱ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ.\nᎨᏍᏗ ᏱᏓᎬᏯᎵᏍᎪᎸᏓᏁᎵ ᏣᎵᏬᎢᏍᏗ, ᏫᎵᎻ.”\nᏂᎦᏛ ᎤᎾᏓᏅᏘ ᏫᎨᏥᏲᎵᎭ.\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎭ; ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎾᎿ ᎾᎲᎾ ᎨᏒ, ᎾᎿ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏲᏍᏙᏗ ᎨᏒ ᎥᏝ ᏰᎭ.\nᎾᏍᎩ ᎢᏳᏏᏗ, ᎢᏳᏃ ᎩᎶ ᎦᎶᏁᏛᏱ ᎠᏯᎡᏍᏗ ᎾᏍᎩ ᎢᏤ ᎾᎬᏁᎸ; ᏧᏓᎴᏅᏛ ᎤᏪᏘ ᎨᏒ ᎤᎶᏐᏅ; ᎬᏂᏳᏉ, ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎢᏤ ᏄᎵᏍᏔᏅ.\nᏰᎵᏉ ᏗᎦᏔᏍᏔᏅ ᏗᏎᏍᏗ ᎨᏒ, ᏂᎦᎥ ᎤᏐᏱᎭ ᎨᏒ.\nᏛᏍᏆᎸᎯᏍᎩᏂ ᎾᎯᏳ ᎨᏥᏯᏅᎡᏗᏱ ᎠᏕᏒᎲᏍᎩ, ᎾᎯᏳᏃ ᎿᏉ ᎠᎹᏟ ᏛᏅᏂ.\nᏕᎾᏓᎪᎲᏳ ᏫᎵᎻ ᏳᏨᏉᏛᎾ! \n”ᎯᎠᎾ?” ᎤᏛᏛᏁ.\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏱᎦᏑᏰᏒ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎢᎩᎷᏤᏗᏱ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ;\nᎠᎦᏗᏓ ᎨᏒ ᎤᏓᏔᏅ, ᏫᏥᎢᎦ ᎨᏒ ᏘᎳ, ᎠᏎᏃ ᎦᏲᏟᏉ ᎢᎾᎨ ᎡᎯ ᏗᎪᏩᏛᏗ, ᎠᏂᏃᎯᎵᏙ ᏚᏂᏒᏅ ᏯᎾᏏ ᏃᎴ ᎠᏫ ᎢᏳᏂᏍᏗ ᏃᎴ ᎠᏫ ᎦᏣᏄᎳ ᎠᎾᏓᏒᎲᏍᎦ, ᏰᎵ ᏧᏒᎯᏓ ᎤᎧᎭᏲᏓ ᎠᏓᏁᏢ ᎣᏥᎩᏍᎪ.\nᎠᏂᎨᏯ ᏚᏂᏗᏍᎩᏌᎲ, ᎣᎭᏂ ᎠᏁᎯ ᏗᏂᏲᏟ ᎠᏂᎨᏯ ᏧᏪᏛᏨ ᏧᏅᏣᏘ ᏚᎾᏏᏃᎲ ᎣᎭᏁ ᏛᎾᎦᏘᏍᎬ.\nᎤᎵᏍᏔᏴᏗ ᎦᎶᏙᏗ ᏭᏝᏁ ᎠᎵᏍᏔᏴᏗ ᎤᏂᏑᎸᏓ, ᏫᏥ ᏭᎶᏎ.\nᎠᏯᏃ ᎨᏒ ᎣᏏᏉ ᎠᎩᏰᎸᎲ, ᎨᎵ ᏃᎴ ᎤᎩᏓᏟᏅᏯ ᏛᎾᏓᏂᏱ Cranshaw, ᏃᎴ ᎾᎥ ᎡᏙᎲ ᎨᎵ ᏚᎦ ᎠᎩᏁᎲ, ᏰᎵᏉ ᎪᎰᏍᏗ ᎤᎵᏍᏙᏗ, ᎤᏓᏅᏙ ᏛᏩᏅᎯᏌᏂ.\nᎤᏲᎱᏒᎯᏃ ᎤᏗᏛᎮ ᎤᏪᏁᎢ, ᎠᎴ ᎤᎴᏅᎮ ᎤᏬᏂᏎᎢ; ᎤᏥᏃ ᎤᏪᎧᏁᎴᎢ.\nᏣᏍᎪ ᎤᏍᏆᏂᎩᏗ ᏰᎵᎠ?”\n”ᏙᎩ ᎾᏛᎦ ᏌᏌ?” ᎤᏛᏛᏁ ᎪᏱᏁ, ᎤᎾᏰᎯᏍᏗ ᏚᎧᎾᏁᎢ ᎤᏪᏥ ᎠᎨᏳᏣ.\n“ᎭᏩ,” ᎤᏛᏁ ᎠᎳᏂ, “ᎤᏓᏅᎦᎸᏓᏗ ᎠᏌᎯ.\nᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᎬᎥᏍᎬ ᎢᏳᏍᏗ, ᎠᎴ ᎦᎶᏄᎮᏛ ᎠᏅᏗᏍᎬ ᎠᏂᏬᏂᏍᎬ ᎦᏃᏙᏗ ᏓᎨᏥᏰᎸᏥ; ᎾᏍᎩ ᏧᎾᏚᎪᏓᏁᏗ ᎨᏒ ᎡᏘ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎥᏝ ᏯᎵᎾᎯᏍᏗᎭ, ᎠᎴ ᎤᏂᏛᏗᏍᎩ ᎥᏝ ᏱᎦᎸᏍᎦ.\nᎠᏍᏓᏱᎨᏍᏗ ᏓᎾᏕᎣ ᏗᏂᏲᏟ ᎠᏁᎵᏍᎬ ᏧᏂᎦᏴᎵ.\nᎿᏉᏃ ᏥᏳᎯ ᏭᏣᏅ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᎡᎶᎯ ᏅᏓᏳᎾᏓᎴᏅᎯ ᎾᏍᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᎶᎯ ᎡᎯ ᎠᏂᏬᏂᎭ, ᎠᎴ ᎡᎶᎯ ᎤᎾᏛᎦᏁᎰᎢ.\nᎤᏍᏆᏓ ᎤᏯᏤᎢ; ᏗᎦᏅᏙᏗ ᎧᏅᏂᏍᎩ ᏧᏪᏥ ᎧᎵ ᎤᏅᏍᎦᏞᎢ.\nᏍᎩᏯᎡᏍᏗ, ᎠᏎᏃ ᎢᏨᏯᎡᏍᏗ. ᎾᏍᎩᏯ ᎤᏩᏂᎦᎸᎢ ᎡᏩᏒ ᏰᎵ ᎬᏩᏓᏛᏗ ᏂᎨᏒᎾ ᏥᎨᏐ ᎬᏂ ᎤᏖᎸᎳᏛ ᏧᏩᏂᎦᎶᎢ, ᎾᏍᏉᏍᎩᏂ ᏂᎯ ᎥᏝ ᏰᎵᎦ ᎬᏂ ᎠᏴ ᏱᏍᎩᏯᎠ.\nᎠᏂᏓᎶᏂᎨ ᎠᏂᎦᎾᎵ ᏓᏂᎾᏌᎾᎩᏍᎬ ᏧᎾᏍᏕᏥ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏰᎵ ᎠᎴᎲᏍᎩ ᏂᎦᎵᏍᏗᎭ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏲᎱᏒᎯ ᎨᏒ ᎬᏗᏍᎬ ᏗᎬᏬᏓᎴᏍᏗ ᎢᏳᏓᏍᏙᏗᏱ ᎢᎬᏱᏱ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎤᏂᏲᏍᏔᏅᎢ, ᎾᏍᎩ ᎨᏥᏯᏅᏛ ᏥᎩ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏚᎢᏍᏛ ᏫᎾᏍᏛᎾ ᎤᎾᏘᏯᏍᏓᏁᏗ ᎨᏒᎢ;\nᏁᎵ ᏍᏉᏎᎮᏍᏗ.” \nᎾᏍᎩᏯ ᎤᏕᏅ ᏱᎨᏒᎾ.\nᎤᏁᏤᏃ ᏚᏟᎶᏍᏓᏁᎴᎢ; ᏗᏣᎧᏅᎦ ᎡᎦᎳ-ᎢᏳᏍᏗ ᏡᎬᎢ, ᎠᎴ ᏂᎦᎥ ᏕᏡᎬᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏗᏣᏢᏫᏍᏙᏗ ᏱᏣᎭ, ᏂᎯ ᏴᏫ ᏂᏥᎥᏉ ᏗᏧᎪᏗᏍᎩ; ᎾᎿᏰᏃ ᏅᏩᏓᎴ ᏕᎯᏳᎪᏓᏁᎲ ᏨᏒ ᏕᎭᏓᏚᎪᏓᏁᎭ; ᏂᎯᏰᏃ ᏚᎪᏗᏍᎩ ᎾᏍᎩᏯ ᏂᎭᏛᏁᎭ.\nᎩᎶᏍᎩᏂ ᏳᏗᏔᎲ ᎾᏍᎩ ᎠᎹ ᎠᏴ ᏥᏁᏁᏗ ᏥᎩ ᎥᏝ ᎢᏳᎯᏳ ᎤᏔᏕᎪᏗ ᏱᎩ, ᎠᏴᏍᎩᏂ ᏥᏁᏁᏗ ᏥᎩ ᎠᎹ, ᎭᏫᏂ ᎠᏰᎸ ᎠᎹ ᎦᏄᎪᎬ ᎨᏎᏍᏗ, ᏫᎦᎾᏄᎪᎨᏍᏗ ᎬᏂᏛ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᏗᎨᏒᎢ.\nᎤᏂᏣᏔᏰᏃ ᎠᏁᏙᎭ, ᎾᏍᎩ ᎤᏩᎫᏘᎶᏛ ᎦᏥᏁᎢᏍᏔᏅᎯ ᎢᏨᏃᏁᎸᎯ, ᎠᎴ ᎪᎯ ᎨᏒ ᎾᏍᏉ ᏗᎦᎦᏠᏱᎯ ᎢᏨᏃᏁᎭ, ᎾᏍᎩ ᎠᏂᏍᎦᎩ ᎨᏒ ᏧᏓᎿᏩᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ;\nᏂᎦᏓ ᎤᎵᏛᏙᎾ.\nᎤᏬᎦᏐᏅ, ᎤᎳᏑᎶ ᎦᏗᎨᏂ ᎤᏩᏅᏍᏔᏅ ᎦᏅᏃᏩ.\nᏧᎶᏒ ᎧᏃᎮᏛ ᏂᎦᎵᏍᏗᏍᎬ, ᎠᏏᏴᏫ ᎨᏒ, ᎤᏩᏙᎵᎢᏍᏗ ᎤᏩᏌ.\nᎺᎵᏍᎩᏂ ᎠᏤᎵᏍᏛ ᏙᏱᏗᏢ ᎦᎶᎯᏍᏗᏱ ᎦᏙᎬᎩ, ᏓᏠᏱᎲᎩ; ᏓᏠᏱᎲᎩ ᎤᏗᏌᏓᏛᎩ, ᎠᏤᎵᏍᏛ ᎭᏫᏂ ᏫᏚᎧᎾᏅᎩ,\nᎩᎳᏈᏴ ᏄᎵᏍᏔᏅ.\nᎠᏎᏃ ᏂᎨᎵᏍᎬ ᎦᏲᏟᏉ ᎤᏁᏉᏨ ᏰᎵ ᎪᎯᏓ ᏫᎫᏩᏂᎷᏨ ᎦᏚᏏ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎤᏲᎢ ᏱᏂᏓᎦᎵᏍᏔᏂ ᎤᏁᎵᏎ, ᎱᏁᏅᏎ ᏱᏓᏚᎬᎾ ᎡᎶ ᏧᎾᎳᎩᏒ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᎤᎬᏩᎴ ᎦᎶᏁᏛ ᏧᏲᎱᏎᎢ, ᎠᎴ ᏥᏚᎴᎯᏌᏁᎢ, ᎠᎴ ᏧᏩᏃᏎᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏂᏲᎱᏒᎯ ᎠᎴ ᎾᏍᏉ ᏗᏅᏃᏛ ᎤᎾᏤᎵᎦ.\nᎠᏎᏃ ᏣᏂ ᏚᏢᏫᏎᎴᏉ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏴᏍᎩᏂ ᏱᏍᏆᏬᎥ; ᏥᎪᏃ ᎢᏍᎩᎷᏤᎭ?\nᎠᎾᏓᏙᎵᎩ ᏗᎧᎾᏩᏛᏍᏗ ᎢᏗᏅᏁ ᎤᏟᏂᎩᏓ ᎤᏂᏬᏂᏒ ᎠᎾᏧᏗᏍᎬ ᏤᎩᏏᏂ, ᏃᏉᎴ ᏄᏓᎴ ᏫᏥᎢᎦ ᎤᎵᏍᎨᏛ ᏩᎾᎴᏂᏍᎬ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏥᏅᏏᏛ. ᎢᎬᏱᏱ ᏌᏩᏂ ᏈᏓ ᏣᏃᏎᎰᎢ, ᎡᏂᏗᏃ ᎾᏍᎩᏉ ᎤᏅᏟ, ᏥᎻᏃ ᏤᏈᏗ ᎤᏪᏥ, ᏣᏂᏃ ᎾᏍᎩᏉ ᎤᏅᏟ.\nᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ; ᎢᏳᏃ ᎩᎶ ᎤᏚᏝᏍᎨᏍᏗ ᎠᏥᎦᏘᏗᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏚᎵᏍᎨᏍᏗ.\nᎯᎪᏩᏘᎭ ᎪᎯᏳᏗ ᎨᏒ ᎤᏍᏕᎸᎲ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩᏃ ᏚᎸᏫᏍᏓᏁᎸ ᎤᏩᏔᏅ ᎪᎯᏳᏗ ᎨᏒ ᎤᎧᎵᎸᎢ.\nXIX. ᏧᏪᏥ ᏗᎦᎶᏙᏗ  \nᏗᏔᎳᏗᏍᏗᏱᏃ ᏃᏒᎾ ᎨᏒ ᎾᎿ ᎤᎪᎳᏗᏴᏗᏱ, ᎤᏟ ᎢᏯᏂᎢ ᎤᏂᏁᏨᎩ ᎾᏍᏉ ᎾᎿ ᎤᏂᏴᏫᏛᏗᏱ, ᏰᎵ ᏈᏂᏏ ᏫᎦᏲᎩᏃᎯᏍᏗ ᎠᎴ ᏫᎦᏲᎦᎪᎳᏗᏴᏗ ᏱᎩ ᎠᏁᎵᏍᎬᎩ, ᎾᏍᎩ ᎾᎿ ᏟᏗ ᏗᏔᎳᏗᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏭᏕᎵᎬ ᎢᏗᏢ ᏭᎦᏘ.\nᎤᏁᎳᏅᎯ ᏥᏯᎵᎡᎵᏤᎭ ᏂᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎢᏤᎲ ᎩᎶ ᏂᏥᏯᏬᎥᎾ ᎨᏒ ᏟᏍᏆ ᎠᎴ ᎦᏯ ᎤᏅᏒ;\nᎤᎦᏖᏃᎸ Cranshaw ᎨᎵ, ᏂᎦᏓ ᏯᏆᎪᎲᏍᏔᏁ, ᏐᏉ ᎢᎦᏁᏨ ᏱᏣᏁᏤ ᎤᏛᏅ.\nᎠᎴ ᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᏥᏂᎨᏥᏪᏎᎴ ᎡᏘ ᏣᏁᎮᎢ; ᏞᏍᏗ ᏣᏲᏍᏔᏅ ᏣᏎᎵᏔᏅᎢ, ᏱᎰᏩᏍᎩᏂ ᏂᏯᏛᏁᎮᏍᏗ ᏄᏍᏛ ᏣᏁᏨᎢ.\nᏂᎦᏓ ᎤᎾᏛᎦᏁ ᏔᎳᏚ ᎤᏂᏃᎩᏓ.\nᎠᏴᏍᎩᏂ ᎣᏥᏬᏂᏍᎪ ᎣᏨᏗᏍᎪ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎤᏕᎵᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎬᏍᎦᎵ, ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ ᏥᏚᏭᎪᏔᏁ ᎤᏁᎳᏅᎯ ᎡᎶᎯ ᎠᏏ ᏂᎨᏒᎾ ᏥᎨᏎᎢ, ᏧᎬᏩᎴ ᎠᏴ ᎡᎩᎸᏉᏙᏗᏱ.\nᎤᎪᎵᏰᎥ ᎤᏍᏆᏂᎩᏗ ᏥᎨᏐ ᎢᏳᏍᏘ.\nᏑᏓᎵ ᎠᏰᎵ ᏔᎷᎩᏍᎩ ᎦᎵᎥᏂᎲ ᎤᏛᎦᏁ ᏫᎵᎻ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯ ᏂᎬᏁᎸ ᎠᏴ ᎾᏍᎩ ᏧᏁᏥ, ᎾᏍᎩ ᏥᏌ ᏕᎤᎴᏔᏅᎢ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᏗᎧᏃᎩᏍᏗᏱ ᏔᎵᏁᎢ; ᎠᏇᏥ ᏂᎯ, ᎪᎯ ᎢᎦ ᏍᏆᏕᏁᎸ.\nᏚᏄᎪᏔᏅᎢ, ᎯᏗᎦᏔᎭ ᎤᏍᏆᏂᎩᏗ ᎨᏒᎢ, ᏃᎴ ᎢᏓᎵᎮᎵᎨᏍᏗ ᏃᎴ  ᎢᎦᏨᏉᏕᏍᏗ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏍᎦᏅᏨ ᏥᏚᎾᏚᎦᏓᏁᎭ, ᎾᏍᎩ ᎢᎦᎦᏘ ᎡᎶᎯ ᎤᎾᏄᎪᏥᎸ, ᎠᎴ ᏴᏫ ᎤᏟ ᎤᏂᏰᎸᏅ ᎤᎵᏏᎩ ᎡᏍᎦᏉ ᎢᎦᎦᏘ, ᏚᏂᎸᏫᏍᏓᏁᎲᏰᏃ ᎤᏲᎢᏳ ᎨᏒᎦᎴ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏍᎦᏅᏨ ᏥᏚᎾᏚᎦᏓᏁᎭ, ᎾᏍᎩ ᎢᎦᎦᏘ ᎡᎶᎯ ᎤᎾᏄᎪᏥᎸ, ᎠᎴ ᏴᏫ ᎤᏟ ᎤᏂᏰᎸᏅ ᎤᎵᏏᎩ ᎡᏍᎦᏉ ᎢᎦᎦᏘ, ᏚᏂᎸᏫᏍᏓᏁᎲᏰᏃ ᎤᏲᎢᏳ ᎨᏒᎩ.\nᎤᎾᏛᎦᏃᏁᎸᏃ ᎤᎬᏫᏳᎯ ᎤᎾᏂᎩᏎᎢ, ᎬᏂᏳᏉᏃ ᏃᏈᏏ, ᎾᏍᎩ ᎤᏂᎪᎲᎯ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎢᎬᏱ ᎤᏁᏅᎡᎴᎢ, ᎬᏂ ᏭᎷᏥᎸ ᎠᎴ ᎤᎴᏫᏍᏔᏅ ᎦᎸᎳᏗᏢ ᎾᎿ ᎠᏥᎵ ᎡᎲᎢ.\nᎾᎾᏃ ᏩᎭᏯ ᎦᏂᏓᏛ ᏃᎴ ᏗᎦᎴᎾ ᏗᏍᏛᎦᏴᎮᏗ ᏄᎵᏍᏔᏁ.\nᎢᏳᏃ ᏱᏥᎦᏔᎭ ᎾᏍᎦᏅᎾ ᎨᏒ ᏥᏌ, ᎤᏥᎦᏔᎭ [ᎾᏍᏉ] ᎾᏂᎥ ᏚᏳᎪᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᏧᎾᏄᎪᏫᏒᎯ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏄᎪᏩ ᎤᏪᏘ ᎠᎪᏙᏗ, ᎾᏍᎩ ᎦᎸ ᎢᏤ ᎢᏣᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏁᏣᎪᎳᏅᎾ ᏥᎩ. ᎾᏍᏉᏰᏃ ᎦᎶᏁᏛ ᎧᏃᎯᏰᎩ ᎢᎦᏤᎵ ᎢᎩᏲᎱᎯᏎᎸ;\nᎾᏍᎩ ᎡᎶᎯ ᎾᎯᏳ ᏥᎨᏎ ᎠᎹᏱᎭ ᏥᏄᎵᏍᏔᏁᎢ, ᎤᏲᏤᎢ.\nᏥᎷᏏᎵᎻᏍᎩᏂ ᎦᎸᎳᏗ ᏨᏗᎦᏚᎭ ᎾᏍᎩ ᎾᏥᎾᏝᎥᎾ, ᎾᏍᎩ ᎠᏴ ᏂᏗᎥ ᎢᎩᏥ.\nᎡᎳᏗ ᎣᏣᏂᎩᏍᎬ ᏧᏪᏅᏒ ᎣᏤᎪ ᎤᎿ ᎩᏓᏅᎬ.\nᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎤᏲᎢ ᎭᏫᏂ ᏗᏓᎴᎲᏍᎪᎢ, ᎠᎴ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ.\nᎨᏍᏗ ᏱᏥᎦᏔ ᎠᎬᏱ ᎤᏓᏅᏖᎸ ᎧᏅᏂᏍᎩ ᏧᏏᎳᏛᏗ ᎭᏂ ᎡᎶᎯ, ᎠᏎᏃ ᏍᎩ ᏄᏛᏁᎴ, ᏃᎴ ᎠᏌᎹᏗ ᎨᏎᎢ.\nᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎬᏂᎨᏒ ᏂᏨᏁᎮᏍᏗ ᎢᏤᎲᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᎢᎩᎨᏳᎯᏳ ᏥᎨᏒᎩ, ᎠᎴ ᏥᏕᎦᏓᏲᎯᏎᎸᎩ, ᎠᎵᏍᎪᎸᏓᏁᏗ ᎠᎴ ᎠᏥᎸ ᎨᎴᏗ ᏥᏄᎵᏍᏔᏅ ᎤᏁᎳᏅᎯ ᎤᎦᎾᏍᏛ ᎤᏪᏩᏒᎢᏍᏗ.\nᎯᎠᏃ ᏄᏍᏕ ᎤᏓᏅᏖᎸ: ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ ᏑᏓᎵ ᎠᏰᎵ.\nᎨᏍᏗ ᏱᏓᎨᏏ ᎤᏛᏅ ᏣᎵ.\nᎢᏳᏃ ᎢᎠᏓᏔᏅᎭ, ᎤᏁᎳᎩᏉ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏄᏔᏅᎾ ᏱᎩ, ᎩᎳ ᎣᏂᎯᎴᏴᏍᏔᏅᎭ.\nᎠᏂᏍᎦᏯᏃ ᎬᏩᎷᏤᎸ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᏂ ᏗᏓᏬᏍᎩ ᏦᎩᏂᏅᏒ ᎢᏍᏛᎷᏤᏗᏱ, ᎯᎠ ᏅᏗᎦᏪᎭ; ᏂᎯᏍᎪ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ? ᏥᎪᎨ ᏅᏩᏓᎴ ᎣᏥᎦᏖᏃᎮᏍᏗ?\nᎠᎴ ᎤᏁᎳᏅᎯ ᏕᎤᏪᎧᏅ ᎠᏂᏏᏴᏫᎭ ᎾᎿ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ; ᎢᎬᏱ ᎨᏒ, ᎨᏥᏅᏏᏛ; ᏔᎵᏁᏃ ᎨᏒ, ᎠᎾᏙᎴᎰᏍᎩ; ᏦᎢᏁᏃ ᎨᏒ, ᏗᎾᏕᏲᎲᏍᎩ; ᎣᏂᏃ, ᎤᏍᏆᏂᎪᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ; ᎿᏉᏃ ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏧᎾᏓᏅᏬᏗᏱ, ᎠᎾᎵᏍᏕᎵᏍᎩ, ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏗᏂᏬᏂᏍᎩ.\nᎠᎨᏴ ᎤᎪᎵᏰᎥ ᎠᎬᏱᏣ ᎤᏍᏓᎦᏴᎯᏓ ᎪᏪᎵ, ᏚᏒᏂᎸ ᏕᎪᏪᎸ, ᏚᎷᎬᏒ ᎣᎭᏁ ᎢᏣ ᎤᎪᎵᏰᎥ.\nᏓᏳᎾᏂᎩᏛ ᏧᏁᏅᏒ ᏅᏙ ᎠᏰᎵ ᏗᎨᏴ, ᎨᏴ ᏧᏂᏍᏔᏩᏛᏎ ᎬᏂᎨᏍᏛ ᎤᎨᏓᎵᏴ ᏧᏂᎶᏎ, ᏤᏆ ᏅᏯ ᏚᎦᏌᏛ ᎠᎹ ᎨᏴ, ᎤᏁᎦ ᎠᎹ ᎦᎶᏍᎩ ᎠᏰᎵ ᏚᎦᏌᏛᎢ ᏅᏯ, ᏃᎴ ᎦᎸᎳᏗ ᎠᏦᎭᏴ, ᎢᎦ ᎢᏴ ᎩᎳ ᎠᎦᎵᎰ.\nᏕᎦᏁᎲ ᏧᏩᏍᏉᎸ ᏂᏕᎦᎵᏍᏗᏍᎨ.\n“ᎤᏐᏱᏉᏗ, ᎨᏍᏗ ᏱᎬᏳᏤᎭ,” ᎤᏛᏁ ᎠᏓᏂᎵᎨ ᎤᏃᏕᎾ.\nᎦᏙᎨᏃ? ᎤᏁᎳᎩ, ᎾᎾᏛᏁᎲᎢ, ᎾᏍᏉ ᎠᏎᏉᏉ ᏱᎾᎾᏛᏁᎭ, ᎠᎴ ᎤᏙᎯᏳᎯ ᏳᏂᏰᎸᎭ, ᎪᎶᏁᏛ ᎠᏥᏃᎮᎭ; ᎠᎴ ᎾᎿᏂ ᎦᎵᎡᎵᎦ, ᎥᎥ, ᎠᎴ ᎠᏎ ᎦᎵᎡᎵᎨᏍᏗ.\nᏦᎢ ᏓᏂᎾᏌᏛ ᏗᎬᏘ ᏚᎾᏣᏍᎪᎸ ᎦᏙᎯ, ᎤᏂᎬ ᏎᎷ ᎦᏚ ᎦᏓᏫᏔᏅ, ᎤᎾᏓᏌᎩᏙᎸ ᎤᏏᏩ ᎦᏙᎯ ᏥᏔᎦ, ᎫᎴ ᏗᏂᏍᎪᏂ ᎤᎾᏝᏫᏛᎲ, ᎤᏃᏴᎬ ᎾᎥᏂᎨ ᏧᎾᎵᏰᏑᎵ ᏥᏓᎾᏏᏛᏁᎰ ᏗᏂᏲᏟ.\nᎤᏃᏴᎵᏎ ᏭᏩᎭᏂᎸ, ᎨᏍᏗ ᏯᎪᏩᏘᏍᎨᎢ ᎢᏳᏍᏘ ᎤᏩᎭᏂᎸ.\nᎥᏝ ᎠᏗᎾ ᎠᏆᏚᎵᏍᎬ ᎠᏓᏁᏗ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ; ᎤᏓᏔᏅᎯᏍᎩᏂ ᎠᏆᏚᎵᎭ ᎤᏣᏘ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ.\n”ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ, ᏓᏣᎾᏲᏏ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ.\nᏃᏗ ᎭᏫᏂ ᎤᏛᎴᎮ.\nᏑᎾᎴ ᏄᎵᏍᏔᎾ ᎤᏩᏓᎷᎦᏁ ᎤᏂᏥ ᏕᎦᏓᏍᎬᎢ ᏙᏱ ᎤᏪᏓᏍᏗ, ᎤᏬᏨᏛᎢᏉ.\nᎪᎱᏍᏗ ᏳᏛᏅᎾ ᎤᏪᏅᏎ.\nᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᎤᏪᏎᎴᎢ, ᎢᎬᏱ ᏗᏂᏲᎵ ᏫᏓᏃᎸᎯ; ᎥᏝᏰᏃ ᎣᏏᏳ ᏱᎩ, ᏗᏂᏲᎵ ᏧᎾᏤᎵ ᎦᏚ ᏗᎩᎡᏗᏱ, ᎠᎴ ᎩᎵ ᏫᏓᏗᏁᏗᏱ.\nᏐᏉ ᏓᎩᏂᏴᎲ ᎤᏓᏄᏖᏴᏓ ᏓᎩᏂᏴᏛ, ᏔᎵᏁ ᏱᏓᏆᏙᎸᏌ ᎠᏕᎳ ᏯᏋᏓᎸᏔᏅ, ᏦᎨᏏ ᏧᎷᏫᏍᏔᏁ ᎤᎵᎪᎯ.\nᏓᎳᏚ ᎠᎴ ᎦᎵᏆᏚ ᎢᏳᏕᏘᏴ ᎨᏎ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᏧᎾᎵᎬᏩᏟ ᏱᎩ ᏏᏆ.” \nᎤᏁᎳᏅᎯ ᏄᏓᎵᏓᏍᏛᎾ, ᎾᏍᎩ ᎢᏥᏯᏅᏛ ᏥᎩ ᎢᏣᎵᎪᏗᏱ ᎾᏍᎩ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ.\n“ᎨᎵᎠ ᏏᏆ ᎤᏴᏍᏗ ᏤᏅᏍᏗ,” ᎤᏛᏁ.\nᏑᎾᎴ ᎠᎴᏂᏍᎨᏍᏗ ᎠᎾᏓᎪᎾᏗᏍᎬ.\nᎱᏂᎷᏣ ᏣᎳᎩᏱ ᎠᏰᎵ ᎤᏂᎷᏨᎯ ᎩᎳ ᏕᎨᎦᏨᏍᏔᏅ ᎠᏂᎨᏯ, ᎤᏂᏍᎪᎸ ᏃᎴ ᎤᏂᏍᎦᏍᏔᏁᎸ ᎢᏳᏍᏗ ᏗᎨᎦᎦᏅᏗ ᎨᏎ, ᎠᏎᏃ ᎤᎾᏛᏅᎢᏍᏕ ᎤᎾᎴᏅᏗ ᎠᎾᏁᎳᏗᏍᎬ ᎩᎳ ᏧᏂᏯᏅᏓ ᎠᏂᎦᏔᎾᎢ ᏧᏂᎭᏰᎯ.\nᏐᏉ ᎧᏅᏂᏍᎩ ᎠᏦᏴ ᎦᏚ ᏭᎩᎸᏁᎢ.\nᎾᏍᎩ ᎭᎳᏍᏕᎵᏴᏌ ᏍᎩᎵ ᏃᏗ ᎠᎦᏴᎵᎨᎢ ᏣᎦᎾᏅᎪᎨᎢ.\nᎤᏂᎷᏨᏃ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᏚᏳᎦᎲ ᎯᏬᏂᏍᎬ ᎨᏒᎢ, ᎠᎴ ᎩᎶ ᏂᏖᎾᏰᏍᎬᎾ ᎨᏒᎢ; ᎥᏝᏰᏃ ᏄᎾᏍᏛ ᏴᏫ ᏱᏖᎸᏉᏙᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏅᏅ ᎤᏙᎯᏳᏒ ᏕᎭᏕᏲᎲᏍᎪᎢ; ᏚᏳᎪᏗᏍᎪ ᎠᏰᎵ ᎠᎾᏓᏱᏍᎬ ᏏᏌ ᎠᎫᏴᎡᏗᏱ, ᏝᎨ?\nᎪᎩ ᏱᎩ ᏚᏂᎦᏒᏍᏙᎢ ᏱᎩ ᏙᏌ ᏚᏂᏖᏍᏛᎢ ᏃᏊᎴ ᏓᎾᏓᏁᏟᏴᏍᎬ ᎠᏂᎦᏘᏗᏍᎬ ᎤᏢᎩ.\nᏭᎳᎩᏒ ᎠᎹ ᎤᏥᏍᏛ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏚᎵᏍᎨ ᏍᎩᏳᏍᏗ ᎠᏆᏛᎪᏗ.\nᎠᏆᏦᏩᏛ ᏩᎩᎳᎩᏒ ᎪᏪᎵ ᎠᎩᏃᎮᏍᎩ, ᎦᎸᎳᏗ ᏧᎵᎬᏩᏟ ᏩᏏᏓᏂ ᏗᎾᏦᎥᏍᏗᏍᎩ ᎢᏧᏅᏁᎸ, ᎾᏍᏉ ᏓᎾᏦᎥᏍᏗ ᏗᏉᏪᎳᏅ.\nᎯᎠᏃ ᎾᏍᏉ ᎯᎦᏔᎮᏍᏗ, ᎤᎵᏍᏆ ᎸᏗ ᎨᏎᏍᏗ ᎠᏎ ᎤᏕᏯᏙᏗ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏎᏍᏗ.\n“ᏣᏉᏍᎪ ᏯᏕᎶᎰᏍᎦ ᏓᎩᎷᏫᏍᏔᏁᎲ? ᏰᎵ ᎤᏂᎦᎸᎯ ᏄᏪᏎ ᎡᎳᏆᏗ.\nᎠᎴ ᏫᎬᏆᏕᏗ ᏱᏂᎦᎩ, ᎠᎴ ᎾᏍᏉ ᏯᏆᎪᎳᏗᏴ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏍᎩᏯᏘᏅᏍᏗᏱ ᎦᎢᏒ ᎢᎸᎯᏢ ᏫᏥᎦᏛᎢ.\nᏰᎵ ᎣᏍᏓ ᏂᏓᏣᎵᏍᏔᏁᎵ ᎭᏫᏯ ᏗᎦᏒᏔᏂᎯ ᎰᎻ, ᎠᏍᏆᎸᎲ ᎯᎯᏍᏗ ᏍᎩᎾᎾ ᏏᏆ.” \nᏣᏂ ᎤᏁᏤ ᎯᎠ ᏂᏚᏪᏎᎴ ᏂᎦᏛ, ᎠᏴ ᎤᏙᎯᏳᎯ ᎠᎹ ᏕᏨᏯᏬᏍᏗᎭ; ᏓᏯᎢᏍᎩᏂ ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎠᏴ, ᎾᏍᎩ ᏓᎧᏁᏌᏛ ᏧᎳᏑᎶᎩ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᏗᎩᎧᏁᏴᏗᏱ; ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎠᏥᎸ ᏙᏓᏣᏪᏍᏔᏂ;\nᎡᎳᏗ ᏥᏥᎥᏍᎦ ᎬᏅᎢ ᎾᏍᎩ ᏔᎵᏁ ᎠᎩᎩᏏᏐᏗ ᏥᎩ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨ ᎠᎩᎨᏳᎭ.\nᏃᎴ ᏌᏌ ᏚᏂᎧᎮᏍᏗ ᏌᏌ ᎠᏂᏓ, ᏃᎴ ᎤᏂᏃᏕᎾ ᏍᏉ ᏚᏂᎧᎮᏍᏗ ᎠᏂᏓ...” \n“ᎲᏥᎷᎩ,” ᎤᏎᎦᎳᎯ ᏄᏪᏎ.\nᎦᏙ ᎦᏛᎦ ᎯᎠ ᏥᏄᏪᏒ; ᏍᎩᏲᎮᏍᏗ ᎠᏎᏃ ᏓᏍᎩᏯᏠᏥ, ᎠᎴ ᏫᎨᎥᎢ ᎥᏝ ᏫᏴᎨᏥᎷᎩ?\n“ᎭᏦᎣᏓ ᏏᏆ ᎭᏩᏧ!” ᎤᏛᏁ ᏍᏓᏯ ᎦᏬᏂᏍᎩ.\nᎯᎠᏃ ᎤᏍᏆᏂᎩᏗ ᎨᏍᏗ ᎩᎶ ᎧᎵ ᏧᏬᏏᏌᏅ ᏱᎩ, ᎠᏎᏃ ᏰᎵ ᎢᏯᏂ ᏧᎾᏙᎴᏋ ᎠᏂᏍᎦᏯ ᏭᏁᏙᎴ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏏᏆ ᎤᏴᏍᏗ, ᎤᎾᎦᏎᏍᏔᏁᎢ ᏏᏆ.\nᎠᏎᏃ ᎤᏂᏣᏖ ᎧᏃᎮᏛ ᎤᎾᏛᎦᏅᎯ ᎤᏃᎯᏳᏁᎢ, ᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᎯᏍᎩᎭ ᎢᏯᎦᏴᎵ ᎾᏂᎡᎢ.\nᎠᏍᎪᎯᏧᏈᏃ ᏗᏘᏂᏙᎯ ᏗᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏝᏰᎵ ᏱᏂᎪᎢ ᏥᏁᎸ ᏣᏴᏍᏗᏱ; ᎯᏁᎩᏉᏍᎩᏂ ᎤᏩᏒ, ᏥᏅᏏᏓᏍᏗᏃ ᏓᏳᏗᏩᏏ.\nᎠᏎᏃ ᏍᏉ ᏄᏍᏕ.\nᎢᏳ ᎠᎴ ᏣᎳᏏᏕᏂ ᏙᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ; ᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎯᏲᎤᎵ ᎬᏂᏛ ᏗᎨᏒ ᏱᏫᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏗᎨᏣᎳᏍᎩ ᏨᏍᎩᏃ ᏱᏪᏣᏓᎢᏅ, ᎾᎿ ᎠᏥᎸᏱ ᎦᎬ ᏜᏗᏍᏗ ᏂᎨᏒᎾ;\nᎠᎴ ᏂᎦᎥ ᏂᏣᏛᏁᎵᏙᎲᎢ, ᎢᏥᏬᏂᏍᎬ ᎠᎴ ᏕᏥᎸᏫᏍᏓᏁᎲ ᏱᎩ, ᏂᎦᎥ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᏙᎥ ᎢᏨᏗᏍᎨᏍᏗ, ᎡᏣᎵᎡᎵᏤᎮᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᏂᎦᏛᏃ ᏴᏫ ᎾᎿ ᎠᎪᏩᏛᏗ ᎨᏒ ᎤᎾᎦᏙᏍᏔᏂᎸᎯ, ᎤᏂᎪᎲ ᏄᎵᏍᏔᏂᏙᎸ ᏚᏅᏂᎴ ᏗᏂᏁᏥᏱ, ᎠᎴ ᎤᎾᏨᏎᎢ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᎹ ᏗᏥᎧᎵᎢᏍᏓ ᎠᎹ ᏗᏟᏍᏗ. ᎾᏍᎩᏃ ᎠᎧᎵᎢ ᏚᏂᎧᎵᎸᎩ.\nᎨᏍᏗ ᏰᎵ ᏱᎾᏆᎵᏍᏔᏁ ᎯᎸ ᎠᏇᏅᏍᏗ, ᎠᏎ ᏔᎵᎭ ᏧᏙᏓᏆᏓ.”\nᏧᏓᏅᏛ ᎢᏴ ᎡᏍᎦ ᎤᏰᎸᎲ ᏳᎸᎾ ᏥᎨᏎ ᏤᎩᏏᏂ ᏧᏣᏅᏓᏕᎮᎢ, ᎾᎥ ᏚᎾᏓᎴ ᏓᏂᏙᎨ. ᏂᎦᏓ ᎠᏂᎧᏔᎲ ᎩᎳᏊ ᎤᏙᏗ ᎠᏰᎳᏍᏗ.\nᏔᎵᏃ ᏫᏄᏒᎸ ᎧᏃᎯᏴᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᎤᏍᏆᎸᏗ ᎨᏎᎢ, ᏄᏂᎬᏫᏒᏃ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᎤᏂᏲᎴ ᎢᏳᎾᏛᏁᏗᏱ ᎦᎶᏄᎮᏛ ᎤᏅᏙᏗᏱ ᎤᏂᏂᏴᏗᏱ, ᎠᎴ ᎤᏂᎯᏍᏗᏱ.\nᎯᎠᏃ ᏂᏚᏪᏎᎵᎢ, ᏏᏌ ᎠᏗᎾ ᎡᏣᎫᏴᏏ ᏏᏌ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎨᏍᏗ ᏥᏓᎯ ᏱᎩ, ᏫᎵᎻ.\nᎤᏁᎷᏁ ᎠᏂᏍᎦᎡᎲᎢ, ᏓᏃᏱᏁᎲ ᏚᏃᎰᏎᎴ.\nᎾᏍᎩᏯ ᎢᎦᏑᏰᏒ ᎾᏍᎩ Ꮎ ᎠᎬᏗᏍᎬᎢ ᎠᏏ ᎡᎶᎯ ᎾᏙᏢᏍᎬᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏂᏗᏍᎦᏅᎾ ᎢᎦᎵᏍᏙᏗᏱ, ᎠᎴ ᎪᎱᏍᏗ ᏁᎫᎢᏍᏛᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎠᎦᏔᎲ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏛᏗᏍᎬᎢ;\nᏝ ᏳᏚᎵᏍᎨ ᏣᎳᎩ ᎢᏗᏁᎬ ᎤᏍᎪᎸᏍᏗ.\nᎾᏍᎩ ᎯᎠ ᎧᏱᏆ ᏥᏚᏁᏤᎴ ᎠᏂᏧᏏ, ᎯᎠ ᏥᏂᏚᏪᏎᎴᎢ; ᎤᏟ ᎣᏏᏳ ᎢᎦᎵᏍᏓᏁᏗ ᎠᏏᏴᏫ ᏱᏚᏲᎱᎯᎭᎸ ᏴᏫ.\nᎿᏉ ᏞᏍᏗ ᎠᎹᏉ ᏯᏗᏔᏍᎨᏍᏗ, ᎤᏍᏗᏍᎩᏂ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎭᏗᏍᎨᏍᏗ, ᎪᎱᏍᏗ ᎭᎵᏍᏗᏍᎬ ᎢᏳᏍᏗ ᏦᎸᎯᏍᏗᏱ ᎠᎴ ᏯᏃᏉ ᏣᏢᏥᏰᏍᎬᎢ.\nᎠᎴ ᎥᏝ ᏱᏣᏓᏅᏖᎭ ᎤᏟ ᎣᏏᏳ ᎢᎨᎦᎵᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏏᏴᏫ ᎩᎶ ᏱᏓᏲᎱᎯᏎᎭ ᏴᏫ, ᎠᏃ ᎤᏂᏣᏘ ᎤᏅᏒ ᏯᎾᏗᏒᎲᏍᎦ.\nᏓᏇᎪᏔᏅᎩᏰᏃ ᎾᏍᎩ ᎪᎱᏍᏗ ᎠᎩᎦᏙᎥᎯᏍᏗᏱ ᏂᎨᏒᎾ ᏂᎯ ᎢᏤᎲ, ᎤᏩᏒᎯᏳ ᏥᏌ ᎦᎶᏁᏛ ᎠᎴ ᎾᏍᎩ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅᎯ.\nᎦᎪ ᏂᏣᎾᏰᏍᎬᎾ ᎨᏎᏍᏗ ᏂᎯ ᏣᎬᏫᏳᎯ, ᎠᎴ ᏂᎦᎸᏉᏗᏍᎬᎾ ᎨᏎᏍᏗ ᏕᏣᏙᎥᎢ? ᏂᎯᏰᏃ ᏨᏒᎯᏳ ᏂᏍᎦᏅᎾ, ᏂᎦᏗᏳᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᏛᏂᎷᏥ ᎠᎴ ᏂᏣᏛᏅ ᎢᎬᏱᏢ ᏛᎾᏓᏙᎵᏍᏔᏂ; ᏂᎯᏰᏃ ᏗᏦᎪᏙᏗ ᎨᏒ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅ.\nᏧᏩᏗᏔᏯ ᏗᏥᎩᎵᎨᏂ, ᎠᎴ ᏂᏕᏥᎤᏍᏕᏎᎸᎾ ᏗᏥᎾᏫ ᎠᎴ ᏕᏥᎵᎷᎬᎢ, ᏂᎪᎯᎸ ᎡᏣᏡᏗᏍᎪ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ; ᏗᏥᎦᏴᎵᎨ ᏄᎾᏛᏁᎸ ᎾᏍᎩᏯ ᏂᎯ ᏂᏣᏛᏁᎰᎢ.\nᎤᎾᏓᏙᎵᏍᏓᏁᎸᏃ ᏥᎷᏏᎵᎻ ᏔᎵᏁ ᏫᎤᏂᎶᏎ ᎤᏣᏘ ᎠᎾᎵᎮᎵᎨᎢ;\nᎢᎸᎯᏢᏰᏃ ᎪᎱᏍᏗ ᎤᎵᏬᏨᎯ ᏥᎦᏃᎢ, ᎾᎿ ᎠᏬᎭᎵ ᎠᎾᏓᏟᏏᏍᎪᎢ.\nᏤᏍᏗ ᏯᎵᏗᏒᏂᎮᏍᏗ!”\nᎠᎦᏗᏛ ᏙᏍᏓᏓᎪᏩᏘᏍᎬ Mrs. Chapman.\nᎠᎴ ᎬᏂᏳᏉ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏍᎦᏯ ᎤᏂᏃᎴ ᎠᏤᏍᏙᎩᎯ ᎦᏅᎨ ᎠᏍᎦᏯ ᎤᎸᏓᎸᎥᏍᎩ; ᎤᎾᏁᎶᎳᏁᏃ ᎤᏂᏴᏔᏂᎯᏍᏗᏱ, ᎠᎴ [ᏥᏌ] ᎢᎬᏱᏢ ᎤᏂᏅᏁᏗᏱ.\nᏧᏳᎪᏘ ᏱᏥᏃᎲᎳ, ᎨᏍᏗᎭ ᎣᏍᏓ ᏱᎾᏆᎵᏍᏔᏁ.\nᎦᏨ ᎮᎵᎠ ᎮᎦ?”\nᎣᏍᏓ ᏳᏂᏰᎸᎲᎾ ᏚᎾᏓᎧᎾᏁᎢ ᎤᏂᏃᏕᎾ.\nᎠᏏᏉ ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎤᏂᏣᏛ ᎬᏬᎯᏳᏅᎩ.\nᏗᎧᎸᎬᏃ ᎢᏗᏢ ᏗᏂᎶᏍᎨᏍᏗ, ᎠᎴ ᏭᏕᎵᎬᎢ, ᎠᎴ ᏧᏴᏢᎢ, ᎠᎴ ᏧᎦᎾᏮᎢ, ᎠᎴ ᎠᎾᏅᎥᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᏚᏅᏓᏒ ᏳᏂᎷᏣ ᎠᏂᏲᏍᎩ, ᏳᏂᏗᏍᎩᏌᎾ ᏂᎦᏓ ᎠᏂᏣᎳᎩ, ᏭᏕᎵᎬ ᎢᏣ ᏳᏫᏚᏂᎧᎾ, ᎨᏍᏗ ᏯᏉᎯᏳᎮ ᎣᎩᏍᏕᎸᏗ ᏧᎵᏍᎨᏛ ᎪᏪᎵ ᏃᎴ ᎦᏙ ᏗᎦᏂᏴᏙᏗ, ᎨᏍᏗ ᏱᏓᏛᎴᏫᏍᏔᎾ ᎭᏂ ᏩᏯ ᏃᎴ ᏚᎨᏓᎵᏛ ᎤᏏᏩ ᎢᏧᏅᏂᏗ.\nᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎠᏂ ᎯᏍᎩᏉ ᎦᏚ ᏙᎩᎭ, ᏔᎵᏉᏃ ᎠᏣᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎬ ᎤᏟ ᎢᎦᎢ ᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᎨᏥᏚᎢᏍᏓᏁᎸᎯ ᎾᏍᎩ ᎬᏩᏓᏁᏟᏴᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬᎢ, ᎠᏎᎵᏛᏍᎬ ᎤᏍᏓᏱᏍᏔᏁᎢ.\nᎢᏥᏔᎳᏬᏍᎨᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᏅᎨᏍᏗ; ᏞᏍᏗ ᏅᏙ ᏭᏕᎵᏨᎩ ᎨᏥᏔᎳᏬᏍᎩ;\n”Ꭷ ᎲᎦ ᏄᏍᏗ, ᎠᎬᏱ ᎠᎴᏂᏍᎬ Ꭴ.”\nᎾᏍᎩ ᏥᏃᎮᏍᎬᎢ, ᎥᏝ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏯᎩᎭ ᎦᏥᏲᏪᎳᏁᏗ ᎤᎬᏫᏳᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏯᏘᏃᎯᏏ, ᎠᎴ ᏂᎯ Ꮀ ᎤᎬᏫᏳᎭ ᎬᏩᏘᏃᎯᏏ, ᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᎾᏍᎩᏃ ᎡᏗᎪᎵᏰᎥᎯ ᎨᏎᏍᏗ, ᎪᎱᏍᏗ ᏰᎵ ᎬᏉᏪᎶᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᏕᏣᏓᎦᎵᏍᏓᏗᏍᎨᏍᏗ, ᎠᎴ ᏕᏣᏓᎵᏂᎪᎯᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩᏯ ᏥᏂᏣᏛᏁᎭ.\nᎢᏳᏃ ᎠᏴ ᏱᏍᎩᎦᏔᎮᎢ ᎾᏍᏉ ᎡᏙᏓ ᏰᏥᎦᏔᎮᎢ; ᎪᎯᏃ ᎢᏳᏓᎴᏅᏛ ᎡᏥᎦᏔᏎ ᎠᎴ ᎡᏥᎪᏩᏛᎲ.\nᎰᏩᏃ ᎹᏏᏙᏂ ᏕᎤᏅᏒᎩ ᎠᏂᏔᎵ ᎬᏩᏍᏕᎸᎯᏙᎯ, ᏗᎹᏗ ᎠᎴ ᎢᎳᏍᏓ, ᎤᏩᏒᏍᎩᏂ ᎤᏗᎩᏴᎩ ᎡᏏᏱ ᎢᎸᏍᎩ ᎢᎪᎯᏛ.\nᎩᎶᏰᏃ ᎾᏍᎩ ᎯᎠ ᎤᏮᏗᏕᎬ ᎦᎶᏁᏛ ᎪᎱᏍᏗ ᎠᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎣᏏᏳ ᎦᎬᏩᏰᎸᏗ ᎨᏎᏍᏗ ᏴᏫ.\nᎩᎶᏃ ᎯᎪᏆᎵᎢ ᎢᏨᏂᎮᏍᏗ ᏐᎢᏱ ᎾᏍᏉ ᎯᏯᎵᏍᎪᎸᏓᏁᎮᏍᏗ; ᎩᎶᏃ ᎤᏛᏃᎯ ᏣᎾᎡᎮᏍᏗ, ᎾᏍᏉ ᎭᏫᏂ ᏣᏄᏬ ᏞᏍᏗ ᎯᎨᏳᏔᏅᎩ.\nᎾᏍᎩᏃ ᎤᎬᏫᏳᎯ ᏚᏬᏁᏔᏅ, ᎦᎸᎳᏗ ᏙᏣᏕᏓᏂᎸᏤᎢ, ᎠᎴ ᎠᎦᏘᏏ ᎢᏗᏢ ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎤᏪᏁᎢ.\n“ᎯᎠᎾ, “ᏭᏔᏅᎢ ᏏᏆ”? ᎤᏛᏛᏁ ᏐᏉ ᎤᏃᏕᎾ ᎠᏓᎯ.\n”ᏂᏪᏏᎭᏉᏗᎾ,” ᎤᏛᏁ.\nᎠᏴ ᎤᏙᎯᏳᎯ ᎠᎹ ᏕᏨᏯᏬᏍᏔᏅ, ᎾᏍᎩᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏙᏓᏣᏬᏍᏔᏂ.\nᎩᎦᎨᏃ ᎬᏩᏄᏪᎡᎢ, ᎠᎴ ᎠᎵᏍᏚᎶ ᏧᏣᏲᏍᏗ ᎪᏢᏔᏅᎯ ᎤᏂᏍᏕᏲᏅ, ᎾᏍᎩ ᎤᏂᏍᏚᎶᏔᏁᎢ.\n”Ꭵ, ᎤᏙᎯᏳ ᎤᏬᏚᎯ,” ᎤᏛᏁ ᏌᎳᏓ, ᎠᎬᏱᏣ ᏕᎦᏅᏌᏛ ᏚᏔᏁ ᎤᏒᏂᎴ ᏗᎦᏅᏙᏗ.\nᎠᎴ ᎾᏍᎩ ᎡᏆ ᎦᏚᎲ ᏦᎢ ᏄᏓᏛᎩ, ᎠᎴ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᏚᏂᏚᎲ ᏚᏲᏨᎩ; ᎠᎴ ᏓᏓᎶᏂ ᎦᎸᏉᏗ ᎦᏚᎲ ᎠᏅᏓᏗᏍᏗ ᏄᎵᏍᏔᏅᎩ ᎤᏁᎳᏅᎯ ᏄᏛᏅᎢ, ᎾᏍᎩ ᎠᏥᏁᏗᏱ [ᏓᏓᎶᏂ] ᎤᎵᏍᏈᏗ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏟᏍᏛ ᎤᏣᏘ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏩᏛᏗ.\nᎣᎦᏛᎦᏅᎯ ᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎡᏦᎢᏳᏒᎢ, ᎠᎴ ᏕᏥᎨᏳᏒ ᎾᏂᎥ ᎤᎾᏓᏅᏘ;\nᎠᎴ ᎤᏂᎸᏉᏙ ᏄᎬᏫᏳᏒ ᏧᎾᏂᏢᏗᏱ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏕᎦᏍᎩᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ,\nᏓᏓᎶᏂ ᎠᏁᎯ ᎨᎦᏑᏰᏛ ᏂᎯ ᎡᏣᏑᏰᏛ ᎨᏒ ᎾᏍᎩᏯᎢ ᏫᎨᏥᏲᎵᎭ, ᎠᎴ ᎾᏍᏉ ᎹᎦ ᎠᏇᏥ.\nᏑᎾᎴᎢᏳᏃ ᎢᎬᏱᏱ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎤᏂᎷᏤ ᎠᏤᎵᏍᏛ ᏨᏗᎧᎸᎪᏉ.\nᎢᏳᏃ ᏇᎵᏥᏆ ᏯᎩᏍᏕᎵᎭ ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎬᎢ, ᎦᎪ ᎤᏂᏍᏕᎵᎭ ᏗᏤᏥ ᎾᏍᎩ ᏓᏂᏄᎪᏫᏍᎬᎢ? ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᏗᎨᏧᎪᏓᏁᎯ ᎨᏎᏍᏗ.\nᎤᏩᏛᎮ ᏩᏴᏍᏗ ᏃᎴ ᏭᏪᎷᏁ, ᏏᏲ ᎩᏥ! ᎤᏍᏗ ᎠᏣᏗ ᎭᏂ.\nᎠᎴ ᎠᏴ ᏣᏂ ᎠᎩᎪᎲᎩ ᎦᎸᏉᏗᏳ ᎦᏚᎲ ᎾᏍᎩ ᎢᏤ ᏥᎷᏏᎵᎻ ᏓᏳᏠᎠᏒᎩ ᎤᏁᎳᏅᎯᏱ ᎦᎸᎶᎢ, ᎤᏛᏅᎢᏍᏛᎩ ᎾᏍᎩᏯ ᎠᏥᏰᎯ ᏣᏙᏚᎢᏍᏗᏍᎪ ᏣᏛᏅᎢᏍᏓᏁᎰ ᎤᏰᎯ.\nᎨᏍᏗ ᏯᏆᏓᏅᏖᎳ ᎢᏳᏍᏗ ᏄᏰᎸᎲ.\nᎿᏉᏃ ᏚᎾᎴᏁ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎳ ᎠᏂᎵᏆᏗᏂ ᏥᏂᎳᏫᎢᏍᏗᏱ ᏥᏚᏙᎥ, ᎠᎴ ᏌᎵᏂ ᎠᏂᎯ, ᎠᎴ ᎡᎵᏱᎩ ᎠᏁᎯ, ᎠᎴ ᏏᎵᏏᏱ ᎠᏁᎯ, ᎠᎴ ᎡᏗᏱ ᎠᏁᎯ, ᎤᎾᎵᏃᎮᏔᏁᏍᏗᏫ.\nᎾᏉᏃ ᎢᏨᏔᏲᏎᎭ ᎤᎦᎵᏍᏗ ᎢᏣᏓᏅᏓᏗᏍᏗᏱ; ᎯᎠᏰᏃ ᏥᏂᏣᏛᏅ ᎥᏝ ᎩᎶᎬᏅ ᏴᎬᏩᏲᎱᏏ, ᏥᏳ ᎤᏩᏒ ᏓᎩᏲᎱᏎᎵ.\nᎥᏝ ᎩᎶ ᎪᎵᎩ ᏱᎩ; ᎥᏝ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏲᎯ ᏱᎩ.\nᎯᎠᏃ ᎠᎨᏴ ᎡᏆᎭᎻ ᎤᏪᏥ ᏥᎩ, ᎾᏍᎩ ᏎᏓᏂ ᎿᏉ ᎬᏂᏳ ᏁᎳᏚ ᏧᏕᏗᏴᏛ ᎬᏩᎸᎸᎯ ᏥᎩ, ᏝᏍᎪ ᏱᏚᏳᎪᏕ ᎤᎾᏙᏓᏆᏍᎬ ᎠᎦᎸᏒᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏓᎸᏍᏛᎢ?\nᎿᏉᏃ ᏈᏓ ᎤᎷᏤᎸ ᎯᎠ ᏄᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᎢᎳᎪ ᎾᎩᏍᎦᏅᏤᎨᏍᏗ ᏦᏍᏓᏓᏅᏟ, ᎠᏏᏉ ᎢᏥᏯᏙᎵᎨᏍᏗ? ᎦᎵᏉᎩᏍᎪ?\nᎾᏂᎥ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎨᏎᏍᏗ; ᎾᎯᏳᏰᏃ ᎤᎾᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎠᏥᎸ ᎤᎪᎵᏰᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎢᏳᏍᏗ ᎾᏍᎩ ᎨᏒᎢ.\nᎾᏆᏓᏬᏅ ᏃᎴ ᏗᎧᏅᏩᏛᏍᏗ ᏂᎨᏒᎾ ᎢᏳᏍᏗ ᎤᏁᏌᏴᏥ ᎦᏃᎸᎥᏍᎦ ᏙᏱ ᎦᎢᏒᎩ. ᏃᏆᎴ Franklin Street ᎢᎦᎢᏒᎢ.\nᏌᏩᏂᏃ ᎾᏍᏉ ᎤᏬᎯᏳᏁᎢ, ᎠᎦᏬᎥᏃ ᎤᏍᏓᏩᏗᏙᎴ ᏈᎵᎩ; ᎠᎪᏩᏗᏍᎬᏃ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎠᏍᏆᏂᎪᏍᎨᎢ.\nᎤᎭᏳᎾᏚᎴ ᎠᏰᎳᏍᏗ ᏃᎴ ᏭᏴᎮ ᎩᎦᎭ ᎦᎷᏯᏍᏘ ᏥᏴ ᎦᏙ, ᎦᏣᏄᎸ ᎤᎨᎲᏎ.\nᎾᏍᎩᏰᏃ Ꮎ ᎤᏲᎱᏒᎯ ᎤᏚᏓᎳᎡᎸᎯ ᎨᏐ ᎠᏍᎦᏂ.\nᎠᏴᏰᏃ ᎾᏍᏉ ᏗᏆᏓᏁᎶᏗᏉ, ᎠᎴ ᏗᎩᎧᎭ ᎠᏂᏯᏫᏍᎩ ᎠᎴ ᎠᏴ ᏕᎬᏆᏁᎶᏙᎢ, ᎩᎶᏃ ᎮᎾ ᏥᏲᏏ, ᎡᎪᎢ; ᏅᏩᏓᎴᏃ ᎡᎮᎾ ᏥᏲᏏ, ᏗᎡᎪᎢ; ᏥᏅᏏᎠᏍᏗᏃ ᎯᎠ ᎿᏛᏏ ᏥᏲᏏ, ᎾᏍᎩ ᎾᏛᏁᎰᎢ.\nᎦᏂᏓᏛᏃ ᏃᏈᏏ ᎦᎸᎳᏗ ᎠᏂᎧᎸ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏕᎤ-ᏎᏒᏔᏅᎩ, ᎠᎴ ᎦᏙᎯ ᏫᏚᏗᏅᏒᎩ; ᎢᎾᏛᏃ ᎢᎬᏱᏗᏢ ᎤᎴᏅᎩ ᎠᎨᏴ ᏄᏛᏅᎢ, ᎾᏍᎩ ᎤᎾᏄᎪᏫᏏᏕᎾ [ᎠᏲᎵ] ᎾᏍᎩ ᎤᏕᏃᏅᎯᏉ ᎤᏪᏯᎣᎲᏍᏗᏱ ᎤᏰᎸᏒᎩ.\nᎭᎩᏅᏁᎸ ᎤᏍᏓᎦᏴᎯᏓ ᎪᏪᎵ, ᎤᏍᏚᏅ ᎠᏍᏚᏗ.\nᎠᏰᎵ ᎢᏳᏕᏘᏴᏓ ᎨᏎ, ᏑᏓᎵ ᎢᏯᏂ ᏗᏂᏲᏟ, ᏫᏥ ᎢᏯᏂ ᎤᎾᏛᏒ ᎨᏎ.\n“ᎠᎴ ᏨᏌᎨ ᎰᏒᏍᎦ?”\n“Ꭵ, ᎨᎵᎠ ᏍᎩᎾᎾ ᎢᏳᎾᏛᏁᏗ,” ᎤᏛᏁ ᎪᏱᏁᎢ, ᏎᎦᏨ.\nᎷᏆ ᎡᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᎠᎦᏑᏰᏛ ᎤᎬᏫᏳᎯ ᎪᎯᏳᎲᏍᎩ, ᎠᎴ ᎾᏍᎩ ᎣᎩᏂᏥ.\nᎡᏝᏪᎯ ᎤᎾᎵᏍᏔᏴᏅ ᎠᏂᏲᏍᎩ, ᏧᏏᏩ ᏂᏚᎵᏍᏔᏅ ᏧᏃᏩ, ᎦᏲᏟ ᎦᎳᎨᏴ ᏧᏂᏅᎦᎴᎰᏅ ᏧᎪᎳ ᏃᎴ ᏒᏕᏅ ᎦᏂ, ᎤᎭᏄᏮ ᎪᎭᏯᏛ ᎬᏘ ᎤᏅᎦᎳᎲ ᎠᎰᎵ Perry, ᎤᏛᎾ ᎤᏁᏝᏅᎯ ᎤᏛᏅ.\n“ᏃᏗ ᏙᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎢ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎢᏥᎪᎵᏰᏍᎨᏍᏗ; ᎠᏍᏓᏯ ᏕᏥᏂᏴᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎨᏒᎢ.\nᎢᏳᏰᏃ ᎢᎬᏱ ᎨᏒ ᎩᎶ ᏯᎦᎵᏴ ᏧᏓᏅᏛᎢ, ᏣᎦᏓᏂᎸᏤᏗ ᎨᏐ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᎲᎢ, ᎥᏝᏃ ᎾᏍᎩᏯ ᏄᎲᎾ ᎨᏒᎢ.\nᏏᏲ ᎤᏍᏗ ᎠᏣᏗ, ᏧᏩ ᎬᏉᏎᎰ ᎠᏂᏣᎳᎩ ᏃᎴ ᎨᏍᏗ ᎠᏣᏗ ᏱᎩ ᎠᏯ, ᎠᏯᏃ ᎤᏔᏂᏓ ᏚᏪᎦ.\nᏲᎾ ᎣᎦᎦᏙᏍᎬ ᏍᎩᏴ ᎢᎦ.\nᏂᎦᏓ ᎤᏂᎾᎥ ᏕᎯᎩᎣᎲᏏ.\nᎾᏍᎩᏃ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎠᏂᏏᏴᏫᎭ ᏑᏓᎵ ᏓᏃᏯᏛᎩ; ᎬᏩᏚᏫᏛᏃ ᎠᎴ ᎭᏫᏂ ᎧᎵᏬᎯ ᎨᏒ ᏗᏂᎧᏅᎢ; ᎠᎴ ᎾᎾᏣᏪᏐᎸᏍᏗᏍᎬᎾ ᎨᏐ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᎯᎠ ᎾᏂᏪᏍᎬᎢ; ᎦᎸᏉᏗᏳ, ᎦᎸᏉᏗᏳ, ᎦᎸᏉᏗᏳ, ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ, ᎾᏍᎩ ᏤᎲᎩ, ᎠᎴ ᏤᎭ, ᎠᎴ ᏤᎮᏍᏗ.\nᎾᎿᏃ ᏫᎣᎨᏅ ᎠᎪᎸᏛ ᏬᎩᏅᏍᏔᏅᎩ, ᎵᏥᏯ ᏬᎩᎷᏨᎩ. ᏑᏙᏓᏆᏛᏃ ᎤᎶᏐᏅ ᏧᎦᎾᏮ ᎢᏗᏢ ᏓᏳᏃᎸᏔᏅᎩ; ᎤᎩᏨᏛᏃ ᏇᏗᎣᎵ ᏬᎩᎷᏨᎩ.\nᎠᎴ ᎦᎪ ᏚᏓᎴᏅᏔᏅ ᎤᏁᎸ, ᎠᎴ ᏔᎵᏁ ᏛᎠᎦᎫᏴᎡᎵ?\nᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ ᏗᎧᏃᎩᏍᏗ ᎪᏪᎵᎯ, ᎦᏁᎸᎢ ᏅᏔ ᏫᏂᎦᎵᏍᏓ, ᎠᎴ ᏞᏍᏗ ᎩᎶ ᎾᎿ ᏳᏁᎳᏕᏍᏗ; ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᎬᏅ, ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏅᏩᏓᎴ ᏩᎩᏍᏓ.\nᎿᏉᏃ ᎯᎠ ᏅᎤᏪᏎᎸᎩ ᎤᏍᏓᏩᏗᏙᎯ; ᎬᏂᏳᏉ ᏣᏥᎢ. ᎾᎯᏳᏉᏃ ᎾᏍᎩ ᎤᏍᏓᏩᏗᏙᎯ ᏧᏪᏅᏒ ᏭᏘᏅᏍᏔᏅᎩ.\nᎦᏙᏃ? ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᏄᏅᏔᏅᎾ ᎨᏒᎢ, ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᏂᎦᏪᏍᎬ ᎢᏯᏛᏁᏗ ᎨᏒ ᎤᏅᏔᏅᎢ; ᏚᏃᏕᏍᏔᏁᏰᏃ ᎾᏍᎩ Ꮎ ᏅᏯ ᏗᏓᏙᏕᎯᎯ ᎨᏒᎢ;\nᎠᎴ ᎾᏍᎩ ᏔᎵ ᏄᎵᏁᏨ ᏕᏒᏗᏍᎬ ᎾᏍᎩ ᎬᏩᏓᏁᏟᏴᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᎿ ᎬᏩᏥᎪᏗ ᏂᎨᏒᎾ ᏥᎨᎭ ᎤᏁᎳᏅᎯ, ᎠᏴ ᎢᎩᏲᎸᎯ ᏥᎩ ᎢᎦᏗᏍᎦᎶᏗᏱ, ᎤᎵᏂᎩᏛ ᎢᎩᎦᎵᏍᏓᏗᏍᎩ ᎨᎩᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏗᎩᏂᏴᏗᏱ ᎤᏚᎩ ᎬᏗ ᎡᎩᏩᏌᏓᏁᎲᎢ;\nᏈᏓ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏍᏉ ᏂᎦᏛ ᏱᏚᏃᏕᎸ ᏂᎯ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᏎ ᎠᏴ ᎥᏝ ᏱᏙᎬᏉᏕᎦ.\nᎠᎴ ᎾᏍᎩ ᏯᎩᎭ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ, ᎠᎴ ᏱᎪᎵᎦ ᏂᎦᏗᏳ ᎤᏕᎵᏛ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏗᏳ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎠᎴ ᏂᎦᎥ ᎪᎯᏳᏗ ᎨᏒ ᏯᎩᎭ, ᎾᏍᎩ ᏰᎵᏉ ᏗᎬᎩᎲᏍᏗ ᏱᎩ ᏙᏓᎸᎢ; ᎠᏓᎨᏳᏗᏃ ᎨᏒ ᎾᎩᎲᎾ ᏱᎩ, ᎪᎱᏍᏗᏉ ᏂᎨᏒᎾ ᎠᏴ.\nᎠᏂᏧᏣᎾ---ᏗᎪᎵᎩᎨ ᎠᏂᏧᏣ?”\nᎤᏣᏘᏰᏃ ᎠᏆᏚᎵ ᎢᏨᎪᏩᏛᏗᏱ, ᎾᏍᎩ ᏗᏨᏲᎯᏎᏗᏱ ᎪᎱᏍᏗ ᎤᏍᏗ ᎠᏓᏅᏙ ᎤᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏗᏣᎵᏂᎪᎯᏍᏗᏱ ᏭᎵᏱᎶᎯᏍᏗᏱ;\nᏗᏣᏓᏅᏏᏙᎯ, ᏕᏥᏁᎮᏍᏗ ᏗᏥᏅᏏᏓᏍᏗ ᏚᏳᎪᏛ ᎠᎴ ᏰᎵᏉ ᎨᏒᎢ; ᎢᏣᏅᏖᏍᏗ ᏂᎯ ᎾᏍᏉ ᎢᏥᏅᏏᏙᎯ ᎦᎸᎳᏗ ᏤᎲᎢ.\nᎡᎶᎯᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᎧᎵᎢᎭ.\nᎡᎵᏍᎨ ᎠᎾᏛᎩᏍᎨ ᎦᎾᏁᏍᎬ.\nᎤᏂᏃᎮᎸᏃ, ᎤᏂᏩᎯᏍᏔᏁ ᎥᏘ ᏗᎪᏢᏍᎩ ᎤᎶᎨᏒᎢ ᎾᎿ ᎠᏁᏙᎯ ᏗᎨᏥᏂᏐᏗᏱ.\nᏤᎦᎳᏯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏗᎧᎿᏩᏗᏙᎯ, ᎦᏙᏃ ᎠᏆᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎯᎠ? ᎠᏆᏛᏐᏅᎯᏰᏃ, ᎠᎴ ᎠᏆᏓᎵᎢ ᎿᏉ ᎠᎦᏴᎵᎨᎢ\nᎠᎴ ᏞᏍᏗ ᎡᏥᎳᏅᏓᏕᎸᎩ ᎠᏍᎩᎾ.\nᏕᎯᎸᏉᏕᏍᏗ ᏧᏃᏑᎶᏨᎯ, ᎢᏳᏃ ᎤᏙᎯᏳᏒ ᏧᏃᏑᎶᏨᎯ ᏱᎩ.\nᎢᎦ ᎤᏟᏂᎪᏎ, ᎠᎯᏗᎨ ᎦᎷᎨ ᏑᎾᎴ.\nᏞᏍᏗ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎩᎵ ᏗᏥᏁᎸᎩ, ᏞᏍᏗ ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ ᏗᏣᏤᎵᎦ ᏏᏆ ᏫᏗᏣᏗᏁᎸᎩ, ᏱᏓᎾᎳᏍᏓᎥᎵᏉᏰᏃ, ᎠᎴ ᏯᎾᎦᏔᎲᎾ ᏴᎨᏥᏓᎦᎸᎥᎦ.\nᎠᎴ ᎠᏜ ᎦᏩᏒᎩ ᏚᎦᏒᏍᏛ ᎾᎯᏳ ᎠᎵᏌᎳᏗᏍᎬᎩ ᎤᎾᏓᏅᏘ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᏓᎵᏌᎳᏗᏍᎬ ᎤᏁᎳᏅᎯ ᏄᏛᏅ ᎢᎬᏱᏗᏢ ᏫᎦᎷᎬᎩ, ᏗᎧᎿᏩᏗᏙᎯ ᎤᏬᏰᏂ ᎠᏓᎴᎲᏍᎬᎩ.\nᏣᏂ ᏚᏁᏤᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎠᏴ ᎠᎹ ᏕᎦᏓᏬᏍᏗᎭ; ᎠᏎᏃ ᎦᏙᎦ ᎩᎶ ᎢᏥᏙᎾᎥ ᎤᏓᏑᏯ ᎾᏍᎩ ᏄᏥᎦᏔᎲᎾ;\nᏔᎵᏃ ᏫᏄᏕᎢᏴᎲ ᏈᎵᏏ ᎤᏪᏅᎢ ᏉᏏᏯ ᏇᏍᏓ ᎤᏪᏔᏅᎩ; ᏈᎵᏏᏃ ᎤᏚᎵᏍᎬᎢ ᎠᏂᏧᏏ ᎣᏍᏛ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ, ᎤᏪᎧᎯᏴᎩ ᏉᎳ ᎠᎦᎸᎢᏛ.\nᏚᏛᏛᏁᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎢᎳᎪ ᎦᏚ ᏕᏥᏰᎭ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎦᎵᏉᎩ.\n”ᎭᏩ, ᎠᎬᏱ ᎤᎧᏌᏔᎾ ᏌᏌ ᎠᏓᎯ ᎠᏍᎪᎵ ᏌᏌ ᎠᎩᏌ ᎭᏫᏂᏣ, ᎤᏍᏗ ᎦᏍᎩᎶᎩ ᎠᏉᏢ ᎤᏅᏏᏴᎢ, ᏌᎳᏓ ᎤᏏᎳᏛ ᎤᏬᏢ.\nᎤᏂᎪᎲᏃ ᎾᏍᎩ ᏂᎦᏛ ᎤᏂᏐᏅᏤᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏩᏴᏢ ᏮᏛᏒᏎᎵ ᎠᏍᎦᏯ ᎠᏍᎦᎾᎢ.\nᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏥᏍᏓᏩᏕᎨᏍᏗ; ᎠᎴ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏙᏗ; ᎠᏗᎾ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎾᏍᎩ ᎨᏣᏙᎴᎰᎯᏍᏗ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎠᏏᏉ ᎣᏍᏛ ᏕᎧᏁᏤᎮᎢ ᎠᎦᏓᏓᎴᏔᏁ ᎠᏂᏙᎾᎥᎢ, ᎦᎸᎳᏗᏃ ᏩᎦᏘᏅᏍᏔᏁᎢ.\nᏑᏓᎵᏍᎪᎯ ᎢᏳᏕᏘᏴᏓ, ᎠᏎᏃ ᏁᎵᏍᎪ ᎢᏳᏕᏘᏴᏓ ᏄᏍᏛ ᏗᎧᏃᏗ, ᏰᎵ ᎢᏳᏩᎦᏘ ᎠᏓᏚᏚ.\nᎡᏓᎴᏫᏍᏙᏙᏗ ᎠᎾᏗᏍᎨᎢ.\nᏳᏟᏴᏧᎩᏒᎾ ᎤᏴᎵᎸ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏗ ᏧᏬᏪᎳᏁᎯ ᎠᏌᎻᏓ ᎤᎵᏦᏩᏛ. ᎢᏧᎳ, ᏃᏉ ᎤᏛᏅ.\nᎼᏏᏰᏃ ᎯᎠ ᏂᏕᎤᏪᏎᎴ ᏗᎩᏙᏓ; ᏱᎰᏩ ᎢᏣᏁᎳᏅᎯ ᏓᏥᎾᏄᎪᏫᏎᎵ ᎠᏙᎴᎰᏍᎩ ᎢᏣᎵᏅᏟ ᎨᏒ ᏓᎦᎾᏄᎪᏥ, ᎠᏴ ᎾᏍᎩᏯᎢ; ᎾᏍᎩ ᏓᏰᏣᏛᏓᏍᏓᏁᎵ ᏂᎦᎥ ᎢᏥᏁᏤᏗ ᎨᏒᎢ.\nᎤᏩᏇᏅᏔᏁ ᎠᏣᏗ, ᏃᏗ ᎤᏩᏯᎨᎢ ᎣᏍᏓ ᎤᏛᏅᎢᏍᏔᎾ.\nᎠᏰᎵ ᎢᏴ ᎠᏥᏍᏛ ᎫᎦ ᏫᏍᎩ ᏃᎴ ᎠᏰᎵ ᎢᏴ ᎠᏥᏍᏛ ᎤᏁᏍᏔᎸ ᏚᏌᎲ ᎦᏍᎩᎸ.\n“ᎠᎩᏥ ᎠᏇᏲᏅ.”\nᎡᎶᏛᏃ ᏅᎩ ᎢᎦᏚᎩ ᎨᏒ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏗ ᎤᏛᎦᏁ ᏂᎦᏛ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ; ᎠᎴ ᎤᏕᏯᏔᏁᎴᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎩᎶ ᏣᏂ ᎤᏲᎱᏒ ᏕᎤᎴᎯᏌᏅ ᎠᎾᏗᏍᎬᎢ;\nᎣᎯᏍᏙᏗ ᎠᏒᏍᏗ ᎠᏆᏚᎵᎭ ᏥᏲᏎᎸ.\nᏐᎳᏃ ᎣᏏᏳᎠᏰᎸᏍᎨ ᎠᏥᎸᎢ. ᎾᎯᏳᏃ ᎤᎶᏘ ᎤᏲ ᏂᎨᎬᎾᏕᎨ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏈᎬ ᏘᎷᏏᎵᎻ; ᎠᎴ ᏂᎦᏛ ᎤᎾᏗᎦᎵᏲᏤ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏌᎺᎵᏱ, ᎨᏥᏅᏏᏛ ᎤᏅᏒ.\nᎠᎭᏲᎮᏉ ᏣᎵ ᎤᎵᏏᎩ ᎬᏕᎶᎰᎯᏍᏗ ᏱᎨᏒᎾ ᏂᏚᏓᎴᏒ ᏧᏆᎶᎦ.\nᎨᏱᏗᏣ ᏬᏥᎦᏛ ᎠᎹᏳᎸᏓ, ᏃᏥᏳ ᏃᎴ ᏌᏬᏚ ᏃᎴ ᏕᎮᏴ, ᎨᏍᏗᎭ ᏕᎨᏴ ᎢᏳᏍᏗ ᏱᎨᏎ ᏂᏚᏍᏛ ᎠᏯ ᏗᎩᎶᏒ, ᎬᏂᎨ ᏌᏬᏚ ᏃᎴ ᎠᏒᎩ ᎠᎹ ᎤᏓᏑᏱ ᎠᎹ ᎨᏒ. ᎤᏍᏆᏂᎩᏗ ᎠᎩᏰᎸᎲ, ᎾᏍᎩᏴ ᎠᏁᏙᎵᏙ ᏗᏃᏪᎵᏍᎩ ᏅᎩᏁᎢᎦ ᏓᎩᎸᏉᏛ.\nᎠᏚᎢᏍᏛᏃ ᎤᏍᏆᎸᎯᏗᏎᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏎᎵᏔᏅᎯ ᏧᏁᏤᎴ ᎡᏆᎭᎻ, ᎾᏍᎩ ᎤᏂᏁᏉᏤ ᏴᏫ ᎠᎴ ᎤᏂᏣᏔᏅᎯ ᏄᎾᎵᏍᏔᏁ ᎢᏥᏈᏱ.\nᎠᎴ ᎾᏍᎩ ᎾᏅᎩ-ᏗᎦᏅᏌᏗ ᎥᏥᎪᎥᎩ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᏓᏁᏩᏗᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏤᎵ ᎠᏂᏯᏫᏍᎩ, ᎤᎾᏓᏟᏌᏅᎩ ᏓᎿᏩ ᎢᏳᏅᏁᏗᏱ ᎤᏂᏰᎸᏒᎩ ᎾᏍᎩ Ꮎ ᏐᏈᎵᎯ ᎤᎩᎵ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ.\nᎤᏓᏂᎢᎨᏃ ᎤᏪᏥ ᏠᎨᏏ ᏪᏙᎮᎢ; ᏗᎤᏪᏅᏃ ᎠᎴ ᎠᏓᏁᎸ ᎾᎥ ᎤᎷᏨ, ᏓᏂᏃᎩᏍᎬ ᎠᎴ ᎠᎾᎵᏍᎩᏍᎬ ᎤᏛᎦᏁᎢ\nᎤᏂᏣᏘᏃ ᎤᏁᎷᏅᎩ ᏧᏓᎴᏅᏛᏉ ᏄᏂᏪᏒᎩ. ᎤᏄᎸᏅᏃ ᏚᏳᎪᏛ ᎤᏙᎴᎰᎯᏍᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏓᏑᏰᏛ ᎠᎾᎵᏖᎸᎲᏍᎬᎢ, ᎤᏁᏨᎩ ᏗᏐᏴ ᏩᎦᏘᏅᏍᏙᏗᏱ.\n“ᏙᎤᏍᏗ ᎧᏃᎮᏗ ᎤᏃᎮᎴ?” ᎤᏓᏛᏛᏁ ᎪᏱᏁᎢ.\nᎦᎪᏍᏂ ᎤᏤᎵᎠ ᎠᎭᏂ ᎢᎾᎨᎢ ᎠᏆᏂᏔ ᎨᎵᎠ.\nᎠᏏᎳᏛᎥᏍᎬ ᏭᏏᎳᏛᏁ ᎠᏏᎳᏛ.\nᎠᏆᏁᎸᏔᏅ ᎤᏕᎸᏓ ᎨᏥᎾᏌ ᎠᏂᎦᏔᎲ, ᎨᎵ ᎨᏍᏗ ᎪᎰᏍᏗ ᏰᎵᏍᎨ ᎢᏳᏍᏗ ᎤᏂᏃᎮᏗ ᏭᏕᎵᎬ ᎠᏁᏒ.\nᎣᏍᏓ ᎠᎵᏍᏓᏴᏗ ᎠᏥᏁᎮ ᏃᎴ ᎣᏍᏓ ᎤᎾᎦᏎᏍᏛᎢ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᏍᎨᎢ. ᎢᏳᏍᏗᏉ ᎠᏍᎦᏯ ᏯᏨᏇᏍᎨᎢ ᏳᎾᏌᎡᎢ ᏏᏆ ᏫᎵᎻ.\nᎠᏓᏙᎵᏍᏗᎨᏃ ᏄᏍᏛ ᎤᎧᏛ ᎤᏓᏁᏟᏴᏎᎢ, ᎠᎴ ᏚᏄᏩᎥ ᎤᏁᎩᏳ ᎠᎴ ᎬᏩᏥᏍᏓᎷᎩᏍᎩ ᏄᎵᏍᏔᏁᎢ.\nᎾᎨᎢᏴ ᎠᏛᎩᏍᎨ ᎧᏃᎩᏍᏗ ᏧᏃᏴᎬ ᏐᏈᎵ ᏗᏥᎶᏍᏔᏅ ᏗᎩᎸᏙᏗ ᏓᏳᏓᎴᏅ.\nᏓᎦᎷᏥ ᎠᎴ ᏙᏛᏛᏔᏂ ᎾᏍᎩ Ꮎ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᏅᏩᎾᏓᎴ ᏙᏛᏁᎵ ᏖᎸᎳᏗ ᏓᏫᏒᎢ. ᎾᏍᎩᏃ ᎤᎾᏛᎦᏁᎸ, ᎥᏞᏍᏗ, ᎤᎾᏛᏁᎢ.\nᎾᎯᏳᏃ ᎾᏍᎩ Ꮎ ᎠᏍᎦᎾ ᎬᏂᎨᏒ ᏅᏓᏰᎬᏁᎵ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏨᏛᏛᏔᏂ ᎠᏓᏅᏙ ᎠᎰᎵ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏗ, ᎠᎴ ᏨᏛᏛᏔᏂ ᏓᎬᏔᏂ ᎬᏂᎨᏒ ᎾᎬᏁᎲ ᎾᎯᏳ ᎦᎷᏨᎭ;\nᏝᏍᎪ ᏱᏏ ᏱᏥᏁᎴ ᏗᎧᎿᏩᏛᏍᏗ? ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏳᏓᏑᏯ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏱᎾᏛᏁᎭ. ᎦᏙᏃ ᎢᏣᏚᎵ ᏍᎩᎢᏍᏗᏱ?\nᎠᏍᎦᏯ ᎡᎲᎩ ᏂᎦᏗᎹᏏ ᏧᏙᎢᏛ, ᎠᏂᏆᎵᏏᏱ ᎤᏤᎵᎪᎯ, ᎠᏂᏥᏏ ᏗᎬᏩᏁᎶᏗ ᎨᏒᎩ.\nᎾᏍᎩ ᎾᏍᏉ ᎬᏃᏛ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎴᎢ, ᎤᎩᎵᏲᏨᎯ ᏂᎨᏎᎢ, ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎠᏙᎵᏲᏨᎯ ᏂᎨᏎᎢ, ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎬᏗᏍᎬᎢ, ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎬᏩᎪᎲᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎬᏩᎪᎲᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ ᎤᏃᎮᎸᎯ ᏂᎨᏎᎢ.\nᎱᏓᎾᏫᏛᎮ, ᎱᏗᏆᎸᏕᏰ, ᎾᎨ ᎢᏳᏛᏅᎯᏓ ᏭᏓᏒᏍᏔᏁ, ᎱᎴᏫᏍᏔᏁ, ᎤᎵᏒᏍᏔᏁ ᎤᏃᎴ, ᏃᏉ ᎠᎾᏔᏍᎩ ᏕᏧᎬ ᎠᏰᎵ ᏭᎶᏎ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎬᏲᏎᎭ, ᎪᎯ ᎢᎦ ᏥᎩ ᏫᏁᏙᎮᏍᏗ ᏅᏩᏙᎯᏯᏛ ᏗᎨᏒᎢ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎢᏥᏈᏱ ᎤᏓᏅᏎᎢ, ᎾᏍᎦᎢᎲᎾ ᎨᏎ ᎤᎬᏫᏳᎯ ᎤᏔᎳᏬᏍᎬᎢ; ᎬᏂᏗᏳᏍᎩᏂ ᎨᏒ ᎾᏍᎩᏯᏉ ᏣᎪᏩᏘᏍᎪ ᎾᏍᎩ Ꮎ ᎦᏰᏥᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎠᎴ ᎾᏍᏉ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎦᏃᏗᏍᎩ ᏥᏚᏲᎮ ᏧᏬᏚᎯ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ.\nᎥᏆᏒᏲᏍᏔᏅ.\nᎾᎿᏃ ᎬᏩᏚᏫᏛ ᏗᏂᏁᎸ ᏂᎦᏛ ᎤᏂᎾᏰᏎᎢ; ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᏚᏃᏣᎶᏤ ᏂᎬᎾᏛ ᎣᏓᎵ ᎨᏒ ᏧᏗᏱ.\nᎤᎾᏛᎦᏅᏃ ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎬ ᎤᏂᏬᏁᏗᏍᎬᎢ, ᎤᏟ ᎢᎦᎢ ᎡᎳᏪ ᎤᏅᏅᎩ; ᎯᎠᏃ ᏄᏪᏒᎩ;\nᎤᏂᎩᏌᏃ, ᎤᎪᎮᎢ ᎠᎴ ᎤᏲ ᎤᏓᏅᏖᎢ ᎢᏈᎬᎢ.\nᏂᎯᏰᏃ ᎤᏙᎯᏳᎯ ᎣᏏᏳ ᏂᏪᎭ ᎭᎵᎮᎵᎬᎢ, ᏐᎢᏍᎩᏂ ᎥᏝ ᏳᎵᏂᎪᎯᏍᏗᎭ.\nᎭᏗᏔ ᎠᎴ ᏣᏉ ᎠᏆᏛᏅ.\nᎠᏎᏃ ᎤᏂᎾᏰᏎᎢ, ᎠᎴ ᎤᏂᏍᎦᎴᎢ, ᎠᏓᏅᏙ ᎣᏥᎪᏩᏛ ᎠᏁᎵᏍᎨᎢ.\nᎤᏅᏌ ᎤᎾᏤᎵ ᎤᏁᏝᏅᎯ ᎦᏥᏯᏓᏙᎵᏍᏔᏁᎸ, ᎠᏇᏙᏅ ᎠᎩᎦᏔᎲᏍᎬ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ, ᏦᎯᏳᏒ ᏣᏍᏕᎸ; ᏅᏩᏙᎯᏯᏛ ᏥᎮᎾ.\nᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᏭᏂᏌᏕ ᎧᏁᏌᎢ ᎠᏯᎥ ᏫᎵᎻ.\nᎤᏪᎵᏎᏃ, ᏴᎦᎪᎵᎩ ᏳᏩᏁᎦ, ᎨᏍᏗ ᎢᎪᎯᏛ ᎡᎲ ᏯᏓᏅᏔᏗᏍᎨᎢ, ᎠᏎ ᎤᏚᏓᎴ ᏧᏪᎵᏍᏗ.\nᎠᎬᏱ ᏄᏛᏁᎸ ᎤᏐᏱ ᏄᏛᏁᎴ ᏓᏏᎳᏛᎥᏍᎬ ᏃᎴ ᏕᎪᏪᎵᏍᎬ.\nᎠᎴ ᎬᏂᏳᏉ ᎢᏍᏗᏠᏱ ᎵᏏ ᎾᏍᎩ ᎠᏧᏣ ᎤᏁᎵᏨ ᎿᏉ ᎠᎦᏴᎵᎨ ᎨᏒᎢ; ᎠᎴ ᎪᎯ ᏥᎩ ᎿᏉ ᏑᏓᎵᏁ ᎧᎳ ᎬᏩᏁᎵᏨᎯ ᎾᏍᎩ ᏗᎷᎸᎥᏍᎩ ᏂᎨᏒᎾ ᏣᎪᏎᎲᎩ.\nᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎢᏨᏅᏏᏓᏍᏗ ᏱᏨᏲᏎᎭ; ᎠᏥᏅᏏᏓᏍᏗᏰᏃ ᎥᏝ ᏯᎦᏔᎰ ᎤᎾᏞᎢ ᎾᏛᏁᎲᎢ. ᏂᎯᏍᎩᏂ ᎢᎦᎵᎢ ᎢᏨᏲᏎᎭ; ᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎡᏙᏓ ᏥᏯᏛᎦᏁᎸᎢ ᎾᏍᎩ ᎢᏨᎾᏄᎪᏫᏎᎸ.\nᏍᎩᏃ ᎢᎾᏓ ᎨᏍᏗ ᎯᎸᎯᏳ ᏔᎵᏁ ᏳᏂᎪᎮ ᎠᎴ ᏳᎾᏛᎪᏓᏁᎢ.\nᎦᏙᏃ ᎭᏂ ᎤᏩᏌ ᏱᎭᏗᎭ? ᎦᏙᏃ ᎠᏎ ᎤᏩᎦᏘᎶᏓ ᎢᏣᏪᏍᏗ ᏥᎨᏐᎢ?”\n“Ꭰ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎥᏆᎸᎢᏛᏰᏃ ᎨᏒ ᎢᏳᏍᏗ ᎥᏍᎩᏯ-ᏙᎵᏨᎩ, ᎠᎴ ᎤᎵᎮᎵᏍᏗᏉ ᎥᏣᏓᏅᏛᎩ ᎡᏥᏬᏅᎲ ᏧᎬᏩᎶᏗ ᎢᏥᎲᎢ, ᎢᏥᎦᏔᎲᎩᏰᏃ ᎦᎸᎳᏗ ᏫᏥᏍᏆᏂᎪᏛ ᎤᏟ ᎢᏲᏍᏛ ᎠᎴ ᎠᏲᎩ ᏂᎨᏒᎾ ᏧᎬᏩᎶᏗ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ, ᎭᏢ ᏮᏓᎦᎶᏏ, ᎦᏰᏗᏩᏛᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ? ᏧᎾᏓᎴᏅᏛᏍᎪ ᏴᏫ ᏓᏁᏩᏗᏒ ᎤᎾᏗᎦᎴᏲᏨᎯ ᏙᏛᏩᏛᎮᏏ, ᎠᎴ ᏫᏙᏓᎨᏲᏂ ᏧᎾᏓᎴᏅᏛ ᏴᏫ?\nᎪᏍᏓᏱ ᏗᎦᏥᏙᏗ ᎦᏰᏌᏗ ᎠᏓᏪᎯ ᏥᎨᏎᎢ ᏃᎴ ᏂᎪᎯᎸ ᏧᏲᏏᏍᎨᎢ.\nᏃᏗ ᎭᏕᎶᎰ ᎢᏳᏍᏗ ᎠᎪᎵᏰᏍᎬ ᎠᏙᎯ ᎦᏓ ᎠᎪᎵᏰᏍᎩ ᎾᏍᎩᏯ ᎠᎵᏰᎾ.\nᎠᎴ ᎦᏙ ᎠᏏ ᏓᎦᏛᏂ? ᎥᏝᏰᏃ ᎬᎩᏍᏆᏗᏍᏗ ᏱᎩ ᏱᎦᏥᏃᎮᎸ ᎩᏗᏯᏂ, ᎠᎴ ᏇᎴᎩ, ᎠᎴ ᏌᎻᏏᏂ, ᎠᎴ ᏤᏈᏓ; ᏕᏫ ᎾᏍᏉ, ᎠᎴ ᏌᎻ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ.\n“ᎠᏯᏗ ᏍᏉ ᏓᎨᏏ,” ᎡᏝᏪᎯ ᏄᏪᏎ.\nᏅᎦᏍᎪᎯᏃ ᏧᏙᏓᏆᏛ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎠᎹᏟ ᎤᏩᏅ ᎩᎳ ᎤᏲᏏᏌᏁᎢ\nᏅᏩᏓᎴᏍᎩᏂ ᎥᏝ ᏴᎬᏂᏍᏓᏩᏚᎦ, ᎠᎾᎵᎡᎰᏉ, ᎥᏝᏰᏃ ᏯᏃᎵᎪ ᏅᏩᎾᏓᎴ ᎠᏂᏁᎬᎢ.\nᎯᎠᏃ ᏄᏪᏎᎸᎩ; ᎦᏙᏃ ᎰᏍᏛ ᎢᏍᏉᏎᎭ? ᎥᏝ ᎩᎶ ᎣᏍᏛ ᏱᎩ ᏌᏉ ᎤᏩᏒᎯᏳ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ. ᎠᏎᏃ ᏣᏚᎵᏍᎨᏍᏗ ᎬᏂᏛ ᏗᎨᏒ ᏫᏣᎾᏄᎪᎢᏍᏗᏱ ᏘᏍᏆᏂᎪᏓ ᏗᎧᎿᏩᏛᏍᏗ.\n”ᏓᏓᎾᏁᎶᏂᎨ?” ᎤᏛᏛᏁ.\nᎠᎴ ᏧᎵᏍᎪᎸᏓᏁᏗᏱ ᏚᏂᏢᎬ ᏧᏂᏅᏬᏗᏱ, ᎠᎴ ᎠᏂᏍᎩᎾ ᏧᏂᏄᎪᏫᏍᏗᏱ;\nᎢᏣᏅᏖᏍᏗ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎢᏥᏁᏗ ᎨᏒ ᎡᏣᎫᏴᏓᏁᏗ ᎢᏣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ; ᎤᎬᏫᏳᎯᏰᏃ ᎦᎶᏁᏛ ᎪᎱᏍᏗ ᎡᏣᏛᏁᎭ.\nᎩᎶᎨ ᏯᏆᏙᎳᏍᏛ?\nᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᏚᎴᏁᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᏝᏍᎪ ᏱᏁᎦ? ᎦᏙ ᎯᎠ ᎠᏂᎦᏔᎲ ᏣᏂᏃᎮᎭ ᏥᎨᏣᏡᏗᎭ?\nᏃᏉ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏁᎬ ᏃᎴ ᎠᏂᏴᏫᏯ ᎠᏂᏁᎬ, ᎢᏧᎳ ᎫᏩᎭᏲᎲ.\nᎤᏲ ᏗᎾᏓᏃᎮᎵᏙᎯ, ᎤᏁᎳᏅᎯ ᎠᏂᏂᏆᏘᎯ, ᎬᏩᎾᏓᏐᏢᏗ; ᎤᎾᏢᏉᏗ, ᎤᎾᏢᏆᏌᏗ, ᎠᏃᎷᏩᏘᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏲᎢ, ᏂᏚᏃᎯᏳᏒᎾ ᏧᏂᎦᏴᎵᎨᎢ,\n“ᏲᎾ ᎤᏤᏍᏙ, ᏙᏉ ᏯᏛᎦ ᎠᏣᏗ ᏱᎫᏓᎸᎩ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎾᏍᎩᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏗᏒᎲᏍᏗ ᏥᎩ, ᏂᎦᎥ ᏂᏥᏍᎦᏅᎾ ᏱᎩ ᎢᏣᎴᏂᏙᎲᎢ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎢᏤᎲᎢ!\nᎠᏎᏃ ᎭᏕᏬ-“ᎠᏂᏍᎦᏯ ᎨᏒ ᎤᏟᏍᏓ, ᎤᏟᏍᏓ, ᎤᏟᏍᏓ, ᎢᎪᎯᏓ.\nᎠᎴ ᎡᏥᎦᏘᏗᏍᏗᏱ ᎾᏍᎩ ᎤᏪᏥ ᎦᎸᎳᏗ ᏅᏓᏳᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏥᏕᎤᎴᏔᏁᎢ, ᎾᏍᎩ ᏥᏌ, ᎾᏍᎩ ᏥᎫᏓᎴᏒ ᎤᏔᎳᏬᎯᏍᏗ ᎤᎷᎯᏍᏗ ᏥᎩ.\nᎦᏁᎸᏃ ᏚᏴᏔᏂᎸ ᏚᏪᎳᏍᏔᏁᎢ, ᎠᎴ ᎪᎯᏳᎲᏍᎬ ᎤᏁᎳᏅᎯ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎦᏁᎸᎢ.\nᎤᏩᏙᎯᏴᏓ ᎨᏒ, ᏰᎵ ᏧᏕᏘᏴᏓ ᎦᏁᎸᏗᏍᎬ ᎠᎩᏩᏛᏗ ᎦᏅᏅ ᎭᎾᎾ ᏫᎦᎷᎩ.\nᎦᎸᏉᏗ ᏂᎨᏒᎾ ᎠᏫᏒᎯ ᎨᏐᎢ, ᎦᎸᏉᏗᏳ ᏗᎴᏙᏗ ᎨᏎᏍᏗ; ᎠᏩᎾᎦᎳ ᎠᏫᏒᎯ ᎨᏐᎢ, ᎤᎵᏂᎩᏛ ᏗᎴᏙᏗ ᎨᏎᏍᏗ;\nᏏ ᏐᏉ ᏄᎳᏏᏁᎢ ᏔᎷᎩᏍᎩ ᎢᏣ.\nᎠᏎᏃ ᎠᎦᏔᎮ ᏄᏍᏛ ᏓᎾᏓᏅᏖᏍᎬ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏂᎦᎥ ᎠᏰᎵ ᏕᎪᏢᏒᎢ ᏔᎵ ᏥᎾᏓᏗᏍᎪ ᎤᏩᏒ ᏣᏓᏡᏗᏍᎪᎢ, ᎠᏲᎪᏉ; ᎠᎴ ᏏᏓᏁᎸ ᏔᎵ ᏥᏄᏓᎣ ᎤᏩᏒ ᏣᏓᏡᏗᏍᎪ ᎠᏲᎪᎢ.\nᎤᏩᏌ ᏚᎵᎬᏩᏢ ᎠᏂᏳᏩᏁᎦ ᎤᎾᎵᏍᏕᎸᏙᏗ, ᏩᎦ ᏃᎴ ᏏᏆ ᎤᏁᏓᏍᏗ, ᏃᎴ ᎠᏂᎦᏗᏓ ᏳᎾᏁᎳᏓ ᎩᎳ ᎣᏍᏓ ᎢᎫᏩᎵᏍᏙᏗ, ᎠᏂᎦᏲᏟ ᎤᎾᎵ ᏗᎩᏛ. ᎠᏂᏴᏫᏯ ᎠᏁᎯ, ᎪᎰᏍᏗ ᎤᏂᏲᏍᏔᏁᏗ ᏱᎩ ᎾᎥ ᎠᏁᎯ ᎠᏂᏳᏩᏁᎦ, ᎦᏲᏟ ᏧᏂᏲᎰᏎᏗ ᏏᏆ ᏃᎴ ᏎᎷ. ᎯᎠ ᏂᏥᏫ, ᏂᎦᎥ ᎤᏂᎾᎥ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏴᏫᏯ ᏧᏂᏩᎯᏎᎸ.\nᏝᏍᎪ ᏯᏓᏅᏖᎭ ᏰᎵ ᎦᏥᏯᏓᏙᎵᏍᏓᏁᏗ ᎨᏒ ᎡᏙᏓ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎥᏝ ᏔᎳᏚᏉ ᎢᏳᎾᏓᏡᎩ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏱᏙᎬᎩᎧᏏ?\nᏥᎪ ᎩᎶ ᏄᏂᎬᏫᏳᏒ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏬᎯᏳᏅ?\nᎦᏃᎸᎥᏍᎬ ᎤᎭᏲᎴ ᎠᏒᎬ ᏦᎢ ᏧᏆᎾᏕᎾ- ᎤᎦᎾᏍᏓ ᎠᏒᎬ ᎡᎶᎯ ᎠᏦᏴ ᏙᏰ.\nᏃᎴ ᏓᎭᏃᏫ ᎨᏍᏗ ᏱᏓᏲᎩᏍᏆᏂᎪᏔᏂ.\nᏦᎢᏁ ᎤᏒᎯ, ᏧᎩᎾᎭᏄᏫ ᏙᎩᏂᏢᏅ ᏦᎩᏂᏯᏪᏨ.\nᎠᏎᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᏒᏃᏱ ᏚᏍᏚᎢᏎ ᏗᏓᏍᏚᏗᏱ ᎦᎶᎯᏍᏗᏱ, ᏚᏄᎪᏫᏒᏃ ᎯᎠ ᏄᏪᏎᎢ;\nᎢᏣᏛᎦᏅᎯ, ᏛᎨᏏ ᎠᎴ ᏛᏨᎷᏤᎵ, ᏥᏨᏲᏎᎸᎩ. ᎢᏳᏃ ᏍᎩᎨᏳᎢᏳ ᏱᎩ, ᏳᏣᎵᎮᎵᎦ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏫᏥᎦᏘ ᏣᏆᏛᏅᎩ; ᎡᏙᏓᏰᏃ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏴ.\nᏚᏂᏐᏨᏃ, ᎨᏂᏏᎳᏗ ᏭᏂᎷᏤᎢ, ᎠᎴ ᎤᏂᏔᎳᏕᎢ.\nᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏦᎢᎵ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ;\nᎠᏎᏃ ᎨᏍᏗ ᎪᎱᏍᏗ ᎠᏤᎯ ᏯᎪᏩᏘᏍᎨᎢ.\nᎢᏌᏯ ᎾᏍᏉ ᎯᎠ ᏂᎦᏪᎭ ᎢᏏᎵ ᏕᎧᏁᎢᏍᏗᏍᎬᎢ; ᎢᏏᎵ ᏧᏪᏥ ᎾᏍᏉ ᏃᏳ ᎠᎺᏉᎯ ᎦᎳᎨᏴ ᎾᏍᎩᏯ ᏱᏄᎾᏧᏈᏍᏗ, ᎤᎾᎵᏃᎯᏰᎯ ᎠᏎ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᏄᏓᎴ ᎤᏍᏆᏂᎩᏗ.\n“ᏰᎵᏉᎨ ᎠᏕᎳ ᏱᏕᏍᎬᏏ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏔᎵᏁᏃ ᎤᏴᎵᏎ ᏣᏔᎦ. ᏈᏓᏃ ᎤᏅᏓᏕ ᏥᏌ ᏄᏪᏒᎢ, ᎯᎠ ᏥᏄᏪᏎᎴᎢ, ᎠᏏ ᏣᏔᎦ ᏔᎵ ᏄᏴᎳᏒᎾ ᎨᏎᏍᏗ, ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ. ᎾᏍᎩᏃ ᎤᏓᏅᏖᎸ ᏚᏠᏱᎴᎢ.\nᏅᎩᏃ-ᏗᎦᏅᏌᏗ ᎠᏥᏴᎩᏅᎩ, ᎠᎴ ᎠᎦᏠᏯᏍᏔᏅᎩ ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎾᏍᎩ ᎠᎦᏔᎲ ᎤᏍᏆᏂᎪᏗ ᏥᏚᎸᏫᏍᏓᏁᎲᎩ, ᎾᏍᎩ ᏥᏕᎦᎶᏄᎮᏗᏍᎬᎩ ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎤᏤᎵ ᎤᏓᏰᎸᏙᏗ ᏗᎨᏥᏰᎸᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏣᎦᏟᎶᏍᏔᏅᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ. ᎯᎠ ᎾᏍᎩ ᎢᏧᎳ ᏗᎬᏅᏃᏛ ᏫᎡᎨᎦᏓᎢᏅᏒᎩ ᎠᏥᎸ ᏨᏓᎸ ᎾᎿ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᏗᏓᏪᎳᎩᏍᎬᎢ.\nᎢᏨᏲᏎᎭ, ᎾᏍᏉᏍᎩᏂ ᎤᏟᎯᏳ ᎾᎾᎵᎮᎵᎨᏍᏗ ᎦᎸᎳᏗ ᏦᏒ ᏌᏉ ᎠᏍᎦᎾ ᎦᏁᏟᏴᏍᎨᏍᏗ ᎤᏓᏅᏛᎢ, ᎡᏍᎦᏉ ᎢᏴᏛ ᏐᏱᏁᎳᏍᎪᎯ ᏐᏱᏁᎳᎦᎵ ᎢᏯᏂᏛ ᎤᎾᏓᏅᏘ ᎠᏂᏍᎦᏯ ᏧᏂᏁᏟᏴᏍᏗ ᏄᎾᎵᏍᏓᏁᎲᎾ ᏚᎾᏓᏅᏛᎢ.\nᎠᎴ ᎤᏣᏘ ᎣᏏᏳ ᎠᎩᏰᎸᏎᏍᏗ ᎠᏆᎫᏴᎯᏓᏍᏗᏱ ᎠᎴ ᎠᏋᏒ ᎠᏆᏗᏒᎲᏍᏗᏱ ᏗᏣᏓᏅᏙ ᏕᏥᏍᏕᎵᏍᎬᎢ, ᎾᏍᏉ ᎧᏁᏉᎬ ᎢᏨᎨᏳᏒᎢ ᎤᎦᏲᎶᎯᏍᏗᏱ ᏱᏂᎬᏁᎭ ᏍᎩᎨᏳᏒᎢ.\nᏛᏍᏆᏗᏰᏃ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎬᏗ ᎤᎵᏍᏗᏳ ᎾᏍᎩ ᏅᏛᏛᏁᎵ; ᎤᎵᏍᏗᏰᏃ ᏅᏛᏛᏁᎵ ᏄᏍᏛ ᏚᏭᎪᏔᏅ ᎡᎶᎯ.\nᎠᏆᏙᎴᎰᏒᏃ ᏄᏍᎦᏅᏨᎾ ᎨᏒ ᏰᎵ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏩᏒ ᎣᎦᏍᏙᎢ ᏭᎲᏍᏔᏅ, ᏓᏇᎪᏔᏅ ᎠᎦᏘᏅᏍᏗᏱ.\nᎠᏲᏓᏌᎲ ᏚᏰᏍᏛᏅ ᏧᏍᏆᏅᎾ, ᏚᏩᏇᏅᏔᏅ ᏧᎾᏍᏕᏥ ᏃᎴ ᏧᎳᏍᎩ, ᏚᎧᏁᎸ ᎤᎵᏎᏗ.\nᎤᏁᏅᏎᏃ; ᎠᎴ ᎤᏂᏣᏖ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏎᎢ, ᎠᎴ ᎬᏩᏁᏄᎳᏍᏗᏍᎨᎢ.\nᎠᏎᏃ ᏑᎾᎴ ᏄᎵᏍᏔᎾ ᎠᎧᏔᎮᎢ ᎫᏩᏟᏫᏛᏗ ᏱᎨᏒᎾ.\nᏚᏂᏅᏒᎩᏃ ᏤᏙᎲ ᎬᏩᏂᏍᏓᏩᏗᏙᎯ ᎠᎴ ᎡᎶᏛ ᎨᏩᏍᏕᎵᏍᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎦᏔᎭ ᎤᏙᎯᏳᎩᏯ ᎨᏒ ᏂᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏚᏳᎪᏛ ᏕᎭᏕᏲᎲᏍᎬᎢ, ᎥᏝ ᎠᎴ ᏴᏫ ᏱᏘᎾᏰᏍᎦ, ᎥᏝᏰᏃ ᏄᎾᏍᏛᏉ ᏴᏫ ᏱᏘᎸᏉᏙᎢ.\nᎾᏃ ᏂᏓᎾᏤᎲᎾ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎥᏝ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎯ ᏯᎩᎭ; ᎠᏎᏃ ᎣᏏᏳ ᎬᏰᎸᏗ ᎨᏒ ᎬᏂᎨᏒ ᏂᎬᏁᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎠᎩᏙᎵᏨᎯ ᏥᎩ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎯ ᎢᏯᏆᎵᏍᏙᏗᏱ.\nᏎᎦ ᎤᎴᏫᏍᏔᏁ ᏒᎧᏔ ᏧᎬ ᎭᏫᏂᏣ. ᎧᏴᏐᎵ ᏭᏭᏍᏔᏁ ᎦᏙ, ᎱᏩᏌᏙᏰ ᏃᎴ ᎤᏍᎪᏎ.\nᏂᎦᏓᏃ ᎨᏒ, ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏏᏆ ᎠᏍᏚᏗ ᎤᎾᎦᏎᏍᏕᎢ.\nᎭᏟᏃᎮᏔᏁ ᎠᏓᏅᏖᎵᏙ?\nᎯᎠᏰᏃ ᎠᏇᏥ ᎤᏲᎱᏒᎯ ᎨᏒᎩ, ᏔᎵᏁᏃ ᎢᎡᎭ, ᎠᎴ ᎡᏓᏠᏨᎯ ᎨᏒᎩ, ᎢᎠᏥᏩᏛᎲᏃ; ᎤᎾᎴᏅᎮᏃ ᎣᏍᏛ ᎤᎾᏓᏅᏓᏕᎢ.\nᎢᏍᎪᏂᏗᏢᏃ ᎥᏓᎵ ᏭᏂᎷᏤ ᎠᏂᎨᏕᎵ ᎤᎾᏤᎵᎪᎯ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᏰᎵ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏂᎦᏔᎯ ᏱᏓᎾᏠᏱᎦ ᎠᏏᏉ ᎤᏕᏒᏂᎸᎯ ᎤᏁᎳᏗᏙᎲᎢ? ᎠᏎᏃ ᎢᎦ ᏛᎵᏱᎶᎵ ᏓᎨᏥᏯᏅᎡᎵ ᎤᏕᏒᏂᎸᎯ, ᎩᎳ ᎿᏉ ᎠᎹᏟ ᏛᏅᏂ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᎢᏨᎨᏳᎢ ᎠᎴ ᎤᏣᏘ ᎢᏨᏯᏅᏘ, ᏍᎩᏯᎵᎡᎵᏍᏗᏍᎩ ᎠᎴ ᎠᏆᎵᏍᏚᎶᏙᏗ, ᏅᏩᏍᏕᏍᏗ ᎤᎵᏂᎩᏛ ᏕᏥᏙᎨᏍᏗ ᎤᎬᏫᏳᎯ ᎡᏣᎵᏍᎦᏍᏙᏛᎢ, ᎢᏨᎨᏳᎢ.\nᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏍᎩᏯᏘᏃᎮᎸ ᎯᎠ ᎠᏍᎦᏯ ᏴᏫ ᏚᎾᏓᏅᏛ ᏗᎴᎾᏍᏗᏍᎩ ᎾᏍᎩᏯᎢ; ᎬᏂᏳᏉᏃ ᏥᎪᎵᏰᎥᎯ ᏥᎩ ᎢᏥᎦᏔᎲᎢ, ᎥᏝ ᎪᎱᏍᏗ ᏱᏥᏩᏘ ᎤᏍᎦᏅᏨ ᎯᎠ ᎠᏍᎦᏯ ᎾᏍᎩ ᏄᏍᏛ ᎡᏧᎢᏍᏗᏍᎬᎢ;\nᏗᎦᏅᏍᎨ ᎠᏎ ᏗᎬᏙᏗ.\nᎢᏣᏅᏖᏍᏗ ᎾᏍᎩ ᏗᎹᏗ ᎢᏓᎵᏅᏟ ᎤᏁᎳᏛᎢ; ᎢᏳᏃ ᏂᎪᎯᎸᎾ ᎢᎦᎷᏨᎭ ᎢᏨᎭ ᎢᏨᎪᏩᏛᏗ ᎢᎨᏎᏍᏗ ᎾᏍᎩ ᎣᏍᏕᎮᏍᏗ.\nᎾᏂᎦᏔᎲᎾᏰᏃ ᎨᏒ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎾᏟᏂᎬᏁᎲ ᎤᏂᏍᏓᏱᏗᏍᏗᏱ ᎤᏅᏒ ᎤᎾᏤᎵ ᎤᎾᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎥᏝ ᏧᎾᏓᏲᎯᏎᎸᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ.\nᎠᎴ ᎢᏣᏙᎴᎰᎯ ᏧᎦᎾᏮ ᏗᎦᏃᎸᏗᏍᎬᎢ, ᎯᎠ ᏂᏥᏪᏍᎪᎢ, ᎤᏗᎴᎩᏳ ᎨᏎᏍᏗ; ᎠᎴ ᎾᏍᎩ ᏂᎦᎵᏍᏗᏍᎪᎢ.\n“ᏂᎦᏓ ᎯᏥᏴᎭᎦ,” ᏧᏛᏁᎢ ᎡᎶᏗ.\nᏳᏕᎶᎰᏒᎾ ᎦᎸᎶ ᎤᏭᏌᎥᏍᎬ, ᎬᏂᎨ ᎤᏍᎪᎸ ᎦᏓᏁ ᏂᎦᎵᏍᏗᏍᎬ.\n“ᎦᏙᎲ ᎾᏅᏛᏁᎰ ᏱᏓᏚᎳᏑᏠᎾ ᎠᏂᏴᏫᏯ?” ᎤᏛᏁ ᏥᏍᏚ.\nᏃᎴ ᎦᏅᎯᏛ ᎦᏐᎯ ᏃᎴ ᏕᎦᏄᎳᏥᏴ ᎡᏆ ᎤᏣᎾᏔ, ᏩᏏᏓᏂ ᎤᎸ, ᎤᏛᏅᎢᏍᏔᎾ ᎤᏓᏛᏂᏍᏘ, ᎠᏍᎪᎵ ᎭᏫᏂᏨ ᎤᏩᎭᏂᎴ, ᏅᏯ ᎬᏘ ᎤᎯᏐᏁ, ᎠᏓᏄᏖᏲᎮ ᎠᏍᎪᎵ ᎤᏲᏣᏃᏅ, ᏧᏆᎶᎬ.\nᎬᏍᏗᏰᏗᎭ ᎠᏇᏥ ᎣᏂᏏᎹ ᎤᎬᏩᎵᎾᏍᎩ ᎥᏆᎸᎢᏛ ᎨᏒ ᎠᏆᏕᏁᎸᎯ ᏥᎩ.\nᏔᎵᏁ ᎤᏩᎭᏂᎴ ᏤᎩ ᎠᏯᏖᎥ ᎢᏣ ᎤᏣ ᎪᏍᏔᏴ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎨᏴ, ᎦᏙᏃ ᏙᎭᏠᏱᎭ? ᎦᎪ ᎯᏲᎭ? ᎠᏫᎡᏗᏱ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏪᎵᏒᎩ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᏍᎦᏯ, ᎢᏳᏃ ᏂᎯ ᎯᎾᏫᏛᎮᏍᏗ, ᏍᎩᏃᎲᏏ ᏫᏅᏅᎢ, ᎠᏴᏃ ᏓᏥᎾᏫᏛᎯ.\nᎾᎿᏃ ᏥᏳᎯ ᏭᎾᏣᏅ ᎥᏘᎣᎩ ᏭᏂᎷᏤᎢ, ᎾᎿ ᏗᎨᏥᏲᏒᎯ ᏥᎨᏎ ᎤᏁᎳᏅᎯ ᎤᏂᏙᎵᏍᏗᏱ, ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎾᏍᎩ ᎿᏉ ᎤᏂᏍᏆᏛᎯ ᏥᎨᏎᎢ.\nᎭᏓᏅᏗᏍᏗᏍᎨᏍᏗ, ᎭᏓᏅᏗᏍᏗᏍᎨᏍᏗ!” ᎤᏛᏁ ᏌᏌ.\nᎤᏍᎦᏃᎵ ᏭᎷᏤ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏛ ᏃᎴ ᎤᎵᏒᏍᏔᏁᎢ, ᎤᎦᏛᏁ ᎪᎱᏍᏗ ᏳᏅᏓ ᎢᎦ ᎤᎵᏍᏔᏴᏗ.\nᎢᏳᏃ ᎰᏩ ᎡᏣᏛᎦᏁᎸᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎢᏤᏲᏅᎯ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏳᎪᏛ ᎤᏪᎲ ᏥᏌ;\nᎢᏳᏍᏗᏉ ᎨᏒ ᎠᎾᏛᎩᏍᎪ ᏗᏂᏲᏟ.\nᎠᏎᏃ ᎠᎬᏱ ᎨᏒ, ᎨᏍᏗ ᏱᎪᎵᎦ ᎭᎾ ᎤᏙᎴᏋ ᏧᏏᎳᏛᏗ ᎧᏅᏂᏍᎩ.\nᎠᎫᏍᎨᏂ ᎢᏴ ᎤᏍᎪᏒ, ᏭᎳᎩᏒ ᎤᎾᏍᏕᏥ, ᎾᏍᎩᏯ ᎠᏧᎲᏍᎩ ᏱᏭᎾᎩᏒ ᏌᏬᏚᎭ ᎠᎼ ᎦᎨᏛ ᏧᎵᏍᏔᎾᎵ.\nᏣᎪᎨ ᎠᏴ ᎠᎴ ᏆᏂᏆ ᎣᎩᏅᏒ, ᎥᏝ ᏲᎩᏂᎭ ᎣᎩᏂᏲᎯᏍᏙᏗᏱ ᎪᎱᏍᏗ ᎣᏍᏓᏛᏁᎲᎢ?\nᎯᎠ ᎾᏍᎩ ᎤᏂᎭ ᎦᎸᎳᏗ ᎤᏂᏍᏚᏗᏱ, ᎾᏍᎩ ᎤᎦᏅᏗᏱ ᏂᎨᏒᎾ ᎠᎾᏙᎡᎰᏍᎬ ᎢᎪᎯᏛ; ᎠᎴ ᎤᏂᎭ ᎠᎹᏱ ᏚᏪᏯᏗᏒ ᎩᎬ ᎢᏧᏅᏁᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏅᏂᏐᏗᏱ ᏂᎦᎥᏉ ᎤᏕᏯᏙᏗ ᎨᏒ ᎡᎶᎯ ᎤᎷᏤᏗᏱ ᎢᎦᎢᏉ ᎠᏁᎵᏍᎬᎢ.\nᎾᏍᎩᏃ ᎦᏁᎵᏛ Ꭸ-Ꮢ ᎢᏳᏍᏗ, ᎤᏪᎷᏅᎩ ᎠᎴ ᎤᎾᏄᎪᏫᏏᏕᎾ ᎨᏒᎩ, ᎠᎴ ᎡᎯᏍᏗ ᎤᏓᏅᏛ ᎤᏚᎵᏍᎬᎩ ᎤᎾᏄᎪᏫᏍᏗᏱ [ᎠᏰᎵ.]\nᎾᏍᎩᏃ ᎦᎵᏉᎩ ᎠᎾᎵᏅᏟ ᎠᏁᎲᎩ; ᎢᎬᏱᏃ ᎡᎯ ᎤᏕᏒᏅᎩ, ᎠᎴ ᎤᏲᎱᏒᎩ ᏧᏪᏥ ᎾᏁᎲᎾ.\nᏰᎵᏉ ᎠᎪᏩᏛᏗ ᏓᏦᏍᎬ ᎦᎸᎶ ᏃᎴ ᏚᏅᏓᏒ, ᏃᎴ ᎠᏕᎶᎰᎯᏍᏗ ᎢᎪᎯᏓ ᏂᏚᏍᏛ ᏚᏅᏓᏒ.\nᎨᏍᏗ ᏱᎦᏕᎶᎣᏍᎦ ᎫᏩᎵᏍᏕᎶᏙᏗ ᎨᏒ ᎠᏍᎦᏯ ᎤᏩᏌ, ᏁᎳᎩ ᎤᏂᏍᏈᏍᏓ ᎤᎾᎵᏗᎩᏛ.\nᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎩᎶ, ᏣᎬᏫᏳᎯ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᎾᏍᏉ ᎠᏴ ᏣᏍᏕᏅᏨ ᏱᏗᏧᎪᏗᎭ. ᏥᎮᎾ, ᎠᎴ ᏞᏍᏗ ᎢᎸᎯᏳ ᎿᏉ ᏱᏣᏍᎦᏅᏤᏍᏗ.\nᎯᎸᎯᏨ ᎧᎸᎬ ᎢᏣ ᎠᎾᎢᏒ, ᏚᏂᏐᏤ ᎠᏥᎶᎥ, ᎭᎾ ᏧᏂᎯᏰ ᏣᎳᎩᏱ ᎠᏰᎵ ᎠᎹᏰᎵ ᎤᏂᏴᎴ, ᎤᎾᎵᏓᎩᏛ ᏄᎾᎵᏍᏔᏁ.\nᏐᏉ ᎢᎦ ᎡᏆ ᏅᏯ ᎤᎵᏗᏨ ᎠᏓᏬᏍᎬ ᎤᎪᎮᎢ ᎤᏍᏗ ᎠᏔᎴᎦᏒ ᎠᎹ ᎦᏁᎲᎢ ᏫᎦᎶᏍᎨᎢ.\n”ᎭᏛᎦᎦᏧ ᎤᏰᎸᎲ ᎠᏂᏬᏂᏍᎬ ᏗᎦᎾᏌᎢ?” ᎤᏰᏤ ᎡᎶᏗ.\nᎡᎳᏗ ᏭᏁ ᏔᎷᎩᏍᎩ ᎪᏱᏅᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᎩᎶ ᏳᏂᏆᏘᎮᏍᏗ; ᏅᏩᏙᎯᏯᏛᏉᏍᎩᏂ ᏤᏣᏂᎩᏍᏔᏅᎭ, ᎾᏍᎩ ᎠᏴ ᎠᎩᎷᏤᏗᏱ; ᏥᎦᏖᏃᎭᏰᏃ ᎤᎷᎯᏍᏗᏱ ᎠᎾᎵᏅᏟ ᎠᏂᎷᏨᎭ.\nᎠᎴ ᎤᎵᏍᏗᏳ ᎢᏍᏕᎾ ᏫᏗᏍᏗᏃᎲᏏ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏕᎤᎴᏅ ᎤᏲᎱᏒᎢ; ᎠᎴ ᎬᏂᏳᏉ ᎢᎬᏱ ᎨᎵᎵ ᏅᏓᏰᏏ, ᎾᎿ ᏓᏰᏥᎪᎢ. ᎬᏂᏳᏉ ᎢᏍᏛᏃᎲᏏ.\nᎠᏎᏃ ᎿᏉ ᏗᏆᎴᏅᎯ ᎨᏎᏍᏗ, ᎢᎬᏱ ᏓᏨᏰᏅᎡᎵ ᎨᎵᎵ ᎢᏴᏛ.\nᎥᏝ ᏱᏥᏲᏍᏗᏎ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎢᏳᏰᏃ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ ᏴᏗᏓᎴᎲᏍᎦ, ᎿᏉ ᎦᎶᏁᏛ ᎠᏎᏉᏉ ᏳᏲᏞᏒ.\nᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏱᏣᏓᏁᎮᏍᏗ ᎠᏂᎦᏔᎲ ᏴᏫ ᎨᏥᎪᏩᏛᏗᏱᏉ ᏱᏥᏰᎸᏍᎨᏍᏗ, ᎢᏳᏰᏃ ᎾᏍᎩᏉ ᏱᏄᏍᏗ ᎥᏝ ᏴᎨᏣᎫᏴᏏ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ.\nᏣᏁᎫ! ᎾᏍᎩ ᏥᏫᏍᎪᎢ ᎥᏝ ᏴᎬᎵᏰᎲᎦ ᎬᏂ ᎤᎪᎯ;\nᏗᏓᎴᏂᏍᎬᏍᎩᏂ ᎤᏪᏢᏅᏅᎢ, ᎤᏁᎳᏅᎯ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏪᏢᏁᎢ.\nᎤᏙᏓ ᏚᎧᎾᏁ.\nᏤᏥᎾᏝᎢ, ᏕᏦᎯᏳᏎᏍᏗ ᏗᎨᏥᎾᏝᎢ ᎤᎶᏘ ᎦᎾᏰᎯᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ; ᎥᏞᏍᏗ ᎠᏃᏍᏛ ᎠᎴ ᎤᎾᏓᏅᏘ ᎤᏅᏒ ᏱᏗᏦᎯᏳᏎᏍᏗ, ᎾᏍᏉᏍᎩᏂ ᎤᏂᎾᎸᏣᏘ.\nᎤᎾᎵᎪᏒᎢᏍᎩᏂ Ꮭ ᏱᏥᏲᎵᏤᎢ ᎠᏎᏃ ᏫᎦᏥᏯᏢᏔᎭ ᎠᏆᎴᏫᏍᏔᏅ ᎤᎾᏦᏗ ᎤᎬᏩᏟ.\nᏥᏍᏆᏯ ᏧᎶᎸᏗ ᎦᏁᏥᎢ ᎤᎷᏤ ᏚᏃᎩᏎ.\nᎾᏍᎩ ᏣᏓᏁᎳᏅᎯ ᏥᎩ ᎾᏂᎥ ᏴᏫ ᎠᏂᎦᏔᎲᎢ,\nᎠᏎᏃ ᎤᏕᎶᎰᏒ ᎦᎳᎱᏂ ᎦᏲᏟ ᏓᏆᎵᎬᏩᏢ, ᎠᎴ ᎪᎰᏍᏗ ᎤᎵᎮᎵᏍᏙᏗ.\nᎾᏍᎩ ᎤᏣᏘ ᎤᏁᏉᏨᏍᏗᏱ ᎢᏣᎵᎮᎵᎬ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎠᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ, ᎾᏍᎩ ᏔᎵᏁ ᏫᏨᎷᏤᏗ ᎨᏒ ᎢᏳᏍᏗ.\nᎾᏍᎩᏃ ᎠᏍᎦᏂ ᎨᏒ ᏂᏗᏥᎾᏝᎥᎾ ᏥᏄᎵᏍᏔᏅ, ᏚᏳᎪᏛ ᎨᏒ ᏗᏥᎾᏝᎢ ᏄᎵᏍᏔᏅᎩ.\n”ᏰᎵᏉ ᏱᏥᏏᎳᏛᎥᎦ ᏯᏆᏁᎸᏔᎾ,” ᎤᏛᏁ ᏫᎵᎻ, ᎠᏨᏇᏍᎨ.\nᎰᎻ ᎣᏍᏓ ᎤᎦᏎᏍᏗᏕᎨ ᏫᎵᎻ ᎬᏅᎢ ᎢᎪᎯᏓ, ᏃᎴ ᏧᎵᎢ ᏃᎴ ᎠᏂᎸᏉᏗᏍᎩ ᎠᏂᏩᏛᎯᏙᎮ ᎢᏳᏓᎵᎭ, ᎨᏍᏗ ᎩᎶ ᏳᏩᎨᏫᏍᎨ ᎾᏍᎩᏴ ᏣᎵᏓᎪᎾᏗᏍᎨᎢ ᏃᎴ ᎤᏍᏆᏂᎩᏗ ᏣᏓᏴᎳᏔᏍᎨᎢ ᏓᏏᎳᏛ.\nᎠᏎᏃ ᏚᎾᎴᏁ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎤᎾᎵᎪᏒ ᎠᏁᎳ ᎾᏍᎩ ᎤᏃᎯᏳᏅᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏎ ᏗᎨᏥᎤᏍᏕᏎᏗ, ᎠᎴ ᏗᎧᏁᏤᏗ ᏧᏂᎧᎿᏩᏛᏍᏗᏱ ᎼᏏ ᎤᏁᏨᎯ.\nᎢᏳᏃ ᎩᎶ ᎠᏥᎤᏍᏕᏎᎸᎯ ᎠᏥᏯᏂᏍᎨᏍᏗ, ᏞᏍᏗ ᎾᏥᎤᏍᏕᏎᎸᎾ ᏱᏄᎵᏍᏔᏁᏍᏗ. ᎢᏳᏃ ᎩᎶ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᎨᏒ ᎠᏥᏯᏂᏍᎨᏍᏗ, ᏞᏍᏗ ᏯᏥᎤᏍᏕᏎᎴᏍᏗ.\n Ꮒ! ᏗᏐᎢ ᏕᏧᎬ ᏚᏂᏲᎰᏎᎴ ᏧᏆᎶᎦ. ᎯᎠᏃ ᎢᎪᎯᏓ ᎢᏤᎯ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙ ᏣᏚᎷ ᎬᏯᏛᏁᏗᏱ? ᏗᎨᏫᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎥᎠᎩᎪᏩᏛᏗᏱ [ᎠᏆᏚᎵᎭ.]\nᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ, ᎢᎩᏣᏘ ᏥᎩ, ᏌᏉᏉ ᎠᏰᎸ ᏂᏓᎵᏍᏗᎭ ᎦᎶᏁᏛ ᏕᏓᏁᎶᏛᎢ, ᎠᎴ ᏂᏗᎥ ᎢᏗᏏᏴᏫᎭ ᎢᎦᏚᏓᏕᏫᏒ.\n“ᎤᏙᏳᎯ,” ᎤᏛᏁ ᎦᏂᎦᏔ.\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ ᎱᏁᏅᏎ ᏗᏂᏲᏟ.\nᎠᏎᏍᎩᏂᏃᏅ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᎲᎩ ᎠᏓᏫ ᏤᎮ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎼᏏᏃ ᏤᎮ ᏫᎬᏍᏘ, ᎾᏍᎩ ᎾᏍᏉ ᎠᏁᎲ ᏄᏂᏍᎦᏅᏨᎾ ᎨᏒ ᎾᏍᎩᏯ ᏄᏛᏁᎸ ᎤᏍᎦᏅᏨ ᎠᏓᏫ, ᎾᏍᎩ ᎤᎷᎯᏍᏗ ᏥᎨᏒ ᏣᎦᏟᎶᏍᏙᏗ ᏥᎨᏎᎢ.\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᎠᎴ ᏂᎦᏛ ᏗᏂᎳᏫᎩ ᎤᏂᏲᎴ ᎦᏰᎪᎩ ᎤᏂᏃᎮᎸᎯ ᏥᏌ ᎤᏡᏗᏍᎩ, ᎾᏍᎩ ᎤᏂᎯᏍᏗᏱ ᎤᎾᏚᎵᏍᎨᎢ;\nᎢᎦᏚᎵᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪᎢ; ᏕᏣᏓᎯᎰᎢ ᎠᎴ ᎢᏤᎵᎯᏍᎪ ᎢᏥᏩᏛᏗᏱ ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪᎢ; ᏕᏣᎵᎰᎢ ᎠᎴ ᏓᎿᏩ ᎢᏤᎪᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏂᏥᏔᏲᎯᎲᎾ ᎨᏒᎢ.\nᎢᎦᏓ ᎤᏁᎦ ᎤᏂᏁᎦᎵ ᎤᏁᎾᎢ ᎠᏂᏴᏫᏯ ᎤᎾᏓᏅᏖᎴ ᎤᎾᏖᎳᎩᏍᏗ ᎠᏂᏣᎳᎩ, ᎤᎾᏓᏑᏲᏗ ᎠᏂᏳᏩᏁᎦ, ᎠᏎᏃ ᏚᏓᏦᎯᏍᏛ ᏣᏥᏯ, ᏓᏂᏂᏱᏍᎨ ᏧᎾᎵᎩᏛ, ᎠᏎᏉ ᏂᎦᎥ ᏴᏫᏯ ᎩᎦ ᎤᏂᏁᎯ, ᏓᏂᎦᎯᏴᏍᎨ ᏭᏕᎵᎬ ᎢᏣ, ᏧᏚᎪᏓᏁᏗ ᎢᏳᏍᏗ ᏂᎨᎬᏁᎮ.\n(ᏂᎦᏛᏰᏃ ᎾᏍᎩ ᎤᎾᎵᏛᏙᏗ ᎪᎱᏍᏗ ᏕᎲᏗᏍᎬ ᎢᏳᎢ;)\nᏓᏆᎴᎳ ᎠᏍᏚᏗ ᎤᏬᏢ ᎠᏂᎩᏍᎬ, ᎠᏰᎴᎩ ᏕᎦᎾᏤᏍᏗᏍᎬ ᏧᏔᎾᎶ ᏃᎴ ᏗᏯᏖᏅ ᏚᏃᏴᎬ ᏌᏬᏚ ᏕᎦᎶᏍᎬ ᏕᎦᏆᏛ.\nᎠᎴ ᎢᏍᏛᎨᏳᎢ ᎠᏈᏯ, ᎠᎴ ᎠᎩᏆ, ᎢᏧᎳᎭ ᎢᏗᏩᏫᏍᎩ, ᎠᎴ ᏧᎾᏁᎶᏗᎤᎾᏓᏈᎬ ᎯᏁᎸᎢ;\nᎬᏩᏠᏨᏃ ᎢᎤᎾᏨᏎᎢ ᏥᎷᏏᎵᎻ ᏭᏂᎶᏎ ᎬᏩᏲᎮᎢ.\nᎠᎯᏓ ᏄᎳᏍᏓᏁᎮ ᎤᏗᏍᎦᎳᏗ ᎾᏍᎩ ᎤᏓᎾᎢᏍᏙᏗ ᏐᎢ ᎤᏐᏅᏅᏍᏙᏗ.\n“ᎡᎭ, ᏒᎦᎾᏲᎪ!” ᎤᏪᎷᏁ ᎰᎻ, ᏂᎦᏓ ᎦᏓᏁ ᎨᏎ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᏁᎩ ᎠᏍᏓᏯ ᎢᏳᏅᏁᏗᏱ ᎠᏤᎵᏍᏛᎢ ᏦᎢᏁ ᎢᎦ ᎢᎪᎯᏛ, ᎬᏩᏍᏓᏩᏗᏙᎯᏰᏃ ᏒᏃᏱ ᏯᏂᎷᎩ ᏱᎬᏩᏃᏍᎩ, ᎯᎠᏃ ᏱᏂᏓᏂᏪᏏ ᏴᏫ; ᏧᏲᎱᏒ ᏙᎤᎴᏅ; ᎣᏂᏱᏃ ᎤᎾᏠᏄᎮᎸᎢ ᎤᏟ ᎤᏲᎢᏳ ᏱᎩ ᎡᏍᎦᏉ ᎢᎬᏱᏱ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᎤᎾᎵᏍᏓᏴᏅᎯ ᎾᏍᎩ ᎤᏛᎦᏅ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎿ ᎬᏩᎵᏍᏓᏴᏗ ᏂᎦᎵᏍᏓᏅᎭ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎾᏍᏉ ᎤᎾᏙᏓᏆᏍᎬ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵᎦ.\nᏧᏙᏓᏋᏓ ᏕᎦᎶᏍᎬ, ᎠᏛᏍᎨᎢ ᏫᎵᎻ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎼᏏ ᎿᏉ ᎤᏔᏅ ᏄᎵᏍᏔᏅ ᎤᏲᎢᏎᎴᏉ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ, ᎤᏪᏥ ᎠᎪᏎᏗᏱ;\n“ᎠᏯᏗ ᏍᏉ,” ᎱᏛᏁᎢ ᏄᏓᎴ ᏂᎦᏪᏍᎬ.\nᎤᏛᏐᏅ.\nᎯᎠ ᎾᏍᎩ ᏥᏂᏥᏪᎭ ᎥᏝ ᏗᏨᏳᎪᏓᏁᏗᏱ ᏯᎩᏰᎸᎭ; ᎦᏳᎳᏰᏃ ᎯᎠ ᏥᏂᎠᎩᏪᏒ, ᏦᎩᎾᏫᏱ ᎢᏥᏯᎠ, ᎣᎦᏛᏅᎢᏍᏗᏉ ᎢᏧᎳᎭ ᏗᎩᏂᏲᎱᎯᏍᏗᏱ, ᎠᎴ ᎢᏧᎳᎭ ᎢᎦᏕᏗᏱ.\nᏐᏉ ᎢᎦ ᎤᏂᏴᎮ ᏧᎶᎸᏗ ᏩᏁ ᎦᏅᏍᏔ ᎪᏍᏔᏰ ᎬᏘ, ᎤᏍᏗ ᎤᏬᏔᏁ ᎤᏬᏰᏂ ᎢᎬᏓ, ᎦᏚᎢᏣ ᎤᎪᎲᏍᏔᏁ.\nᎾᏍᎩᏯᏉᏰᏃ ᎩᎶ ᎠᏍᎦᏯ ᎢᏅᏥᏮᏗᎦᎶᏏᏎᎢ, ᎠᎴ ᏥᏫᏚᏯᏅᎮ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏥᏚᏲᎯᏎᎴ ᎤᎿᎥᎢ.\n“ᏙᏕᏣᏙᎠ?” ᎤᏛᏛᏁ ᏫᎵᎻ, ᎤᏩᏃᏫᏍᎨ ᎠᎵᎮᎵᎬ.\n“ᎣᏍᏓ, ᎠᎦᏗᏓ ᎣᏍᏓ ᎠᎩᏰᎸᎭ,” ᎤᏛᏁ ᏦᎢᏁ ᎧᏅᏂᏍᎩ.\nᏂᎦᏓ ᎡᎾᎢ ᏓᎦᎵᏬᏥ ᎯᎸᎢᏴ.\nᎥᏝ, ᎾᏍᎩᏍᎩᏂ ᎠᏰᎸ ᏤᎯ ᎤᏟ ᎢᏗᏩᎾᎦᎳ ᏥᏅᏩᏍᏙᎢ, ᎾᏍᎩ ᎤᏟ ᎤᎵᏍᎨᏛ ᎨᏐᎢ.\n”ᏓᎨᏣᎵ.\nᏌᏉᏉᏰᏃ ᎡᎭ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏌᏉ ᏗᎪᎯᏍᏗᏍᎩ ᎠᏰᎵ ᏗᎴᏁᎯ ᎤᏁᎳᏅᎯ ᎠᎴ ᏴᏫ, ᎾᏍᎩ Ꮎ ᏴᏫ ᏥᏌ ᎦᎶᏁᏛ;\nᎣᏌᏯᏃ ᏦᏓᎻ ᎤᏕᏁᎴᎢ; ᏦᏓᎻᏃ ᎡᎭᏏ ᎤᏕᏁᎴᎢ; ᎡᎭᏏᏃ ᎮᏏᎦᏯ ᎤᏕᏁᎴᎢ;\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᏥᎪᎵᏰᎣ, ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᏧᏪᏢᏅᎯ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏬᏢᏅᎢ?\nᎦᎸᎳᏗᏰᏃ ᏗᏆᏠᎣᏒ, ᎥᏝ ᎠᏋᏒ ᎦᏓᏅᏖᏍᎬ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ, ᎠᏓᏅᏖᏍᎬᎢᏍᎩᏂ ᎾᏍᎩ Ꮎ ᏅᏛᎩᏅᏏᏛ.\nᎢᏥᏍᎦᏯ ᎢᏏᎵ ᏧᏪᏥ ᎢᏣᏛᏓᏍᏓ ᎯᎠ ᏥᏁᎬᎢ. ᏥᏍ ᎾᏎᎵᏗ ᎡᎯ ᏥᎨᏒᎩ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᎢᏤᎲᎢ, ᎾᏍᎩ ᎤᏩᏗᏍᎬ ᎤᏓᎴᎯ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛᎢ ᏥᏚᎸᏫᏍᏓᏁᎸᎩ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᏥᏥᎦᏔᎭ,\nᎿᏉᏃ ᏚᏬᏑᎴᎣᏁᎸ ᏧᎾᎳᏏᏕᏂ, ᎠᎴ ᎢᎤᏄᏬ; ᎠᎴ ᏔᎵᏁ ᎢᎤᏪᏅ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᎦᏔᎭᏍᎪ ᎯᎠ ᎾᏍᎩ ᏥᏂᏨᏯᏛᏂᏏ?\nᎡᏣᏯᏂᏍᎨᏍᏗᏍᎩᏂ, ᎮᎨᏍᏗ ᎠᎴ ᏣᏂᏏᎲᏍᎨᏍᏗ ᎡᎳᏗ ᎨᏒ ᏗᏂᏢᏗᏱ; ᎾᏍᎩᏃ ᏫᏣᏯᏅᏛ ᎦᎷᎨᏍᏗ, ᎯᎠ ᎢᏳᏣᏪᏎᏗ ᏱᎩ, ᎩᎾᎵᎢ, ᎦᎸᎳᏗᏢᏍᏙᏗ ᏫᎶᎯ; ᎿᏉ ᎡᏣᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᏂᎦᏔᎲ ᎢᏧᎳᎭ ᎢᏥᏂᏜᎢ [ᏗᎵᏍᏓᏴᏗᏱ.]\nᎤᏠᏱᏉ ᏦᎩᎭ ᎠᏓᏅᏙ ᎪᎯᏳᏙᏗ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩᏯ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎠᏉᎯᏳᏅ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᏁᏨ; ᎠᏴ ᎾᏍᏉ ᎣᏦᎯᏳᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎣᏥᏁᎦ.\nᎠᏍᏆᏓ\nᎠᎴ ᎠᏴᎥᏝ ᏱᏥᎦᏔᎮᎢ; ᎠᏎᏃ ᎾᏍᎩ ᎾᏅᏛᎩᏅᏏᏛ ᎠᎹ ᏗᏆᏓᏬᏍᏙᏗᏱ ᎾᏍᎩ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎩᎶ ᎯᎪᎥᎭ ᎠᏓᏅᏙ ᎠᏁᏡᎲᏍᎬᎢ ᏚᎩᎸᏨᎭ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏗᏓᏬᏍᏗᏍᎩ.\nᎧᏂᎩᏛ.\nᎯᎠᏰᏃ ᎾᏍᎩ Ꮎ ᎤᎾᏠᎾᏍᎩ ᎨᏥᏅᏏᏛ, ᎤᎾᏓᎵᏓᏍᏗ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎦᎶᏁᏛ ᏧᏤᎵ ᎨᏥᏅᏏᏛ ᎠᎾᏤᎸᏍᎩ.\nᎠᎳᏂ ᎤᏚᎵᏍᎨ ᎭᏫᏂ ᏗᎦᏁᏍᏔᎳᏗᏍᏗᏍᎩ ᎤᎪᏩᏛᏗ.\nᎣᏏᏳᏰᏃ ᎣᎩᏰᎸᎭ ᏦᏥᏩᎾᎦᎳ ᏥᎨᏐᎢ, ᏂᎯᏃ ᏥᏕᏣᎵᏂᎬᎪᎢ; ᎯᎠᏃ ᎾᏍᏉ ᎣᎦᏚᎵᎭ, ᎾᏍᎩ ᏂᏥᎪᎸᎾ ᎢᏣᎵᏍᏙᏗᏱ.\nᎿᏉᏃ ᎠᏂᏆᎵᏏ ᎤᏁᏅᏒᎩ ᏭᏂᏃᎮᎸᎩ ᎢᏳᎾᏛᏁᏗᏱ ᎤᏂᏌᏛᏗᏱ ᎦᏬᏂᏍᎬᎢ.\nᎠᎴ ᎾᎿ ᏂᎦᏗᏳ ᎤᎾᏓᏟᏌᎲᎢ, ᎠᎴ ᎢᎬᏱ ᎤᎾᏕᏅᎯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩ [ᏚᎾᏙᎥ] ᎦᎸᎳᏗ ᏥᏕᎪᏪᎳ, ᎠᎴ ᎾᎿ ᎤᏁᎳᏅᎯ ᏂᎦᏗᏳ ᏗᎫᎪᏓᏁᎯ [ᎡᎲᎢ,] ᎠᎴ ᎾᎿ ᏧᎾᏓᏅᏙ ᎤᎾᏓᏅᏘ ᏴᏫ ᎾᏂᏍᎦᏅᎾ ᎢᎨᎬᏁᎸᎯ [ᎠᏁᎲᎢ,]\nᏥᏌᏃ ᎯᎠ ᏂᏑᏪᏎᎸᎩ; ᎢᏦᎵᎩᏧ ᏂᎦᏛ ᎯᎠ? ᎥᎥ, ᏣᎬᏫᏳᎯ, ᎥᎬᏬᏎᎸᎩ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎠᏓᎵᏅᏟ, (ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎠᏂᎦᏔᎯ ᎦᏥᏬᏁᏗᎭ,) ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎾᏝᎥ ᏴᏫ ᏂᎪᎯᎸ ᎡᎲᎢ?\nᎯᎪᎢᎦ ᎯᎠ ᏥᏍᏆ ᎦᏯᎪᎦ ᏍᏆᎳ ᎦᎾᎪᎢ ᏃᎴ ᎯᎠ ᎠᏂᏣᎳᎩ ᎭᏂᎧᏔ ᎦᏯᎪᎦ ᎨᏒᎢ.\nᏣᏄᏏ ᎤᎷᏣ ᏑᎾᎴ ᎠᎵᏍᏓᏴᏗ ᎠᏰᎯ, ᎭᎾᎾ ᎯᎦᏙᎨ ᎤᏬᏚ ᏏᏆ, ᏃᎴ ᎦᎸᎳᏗᏣ ᎯᎪᏪᎴ ᎤᏣᏓ ᎣᏍᏓ.\nᏌᎳᏓ ᏚᏂᎬᎦ ᏗᏤ ᎠᏓᏅᏖᎸ ᎢᏳᏍᏗ ᎤᏬᏪᎶᏗ ᏚᏏᎳᏛᎢ ᎤᏍᏆᏂᎪᏙᏗ ᏫᎵᎻ ᎬᏅᎢ.”\n”ᏗᏁᎸᏙᏗᎩ?\nᎠᏴ ᎾᏍᎩ ᎪᎯ ᎨᏒ ᏥᎦᎵᎡᎵᎦ ᎢᏨᎩᎵᏲᏤᎲᎢ, ᎠᎴ ᏥᏥᎧᎵᏏᏏ ᎠᏏ ᎤᏃᏒᎢ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨ ᎾᏍᎩᏯ ᎠᎩᏇᏓᎸ ᏥᎩᎵᏲᎬᎢ, ᎾᏍᎩ ᎠᏰᎸ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏥᎩ;\nᎤᏅᏌ ᏣᎵ, ᏁᏂᏏ ᏃᎴ ᏧᎾᏛᎾ ᎠᏂᏧᏣ, ᏅᏙ ᎠᏰᎵ ᏤᎩ ᏃᎴ ᎶᏩᏂ.\nᎤᏂᏣᏘᏃ ᎠᏍᏓᏯ ᎤᎾᎵᏍᏕᎢ, ᎤᎾᎴᏅᎮ ᎤᏂᏔᏲᎴ ᎾᏍᎩᏯ ᏂᏚᏛᏁᎸ ᏧᏩᎫᏔᏅᏒ ᎢᏧᏛᏁᏗᏱ.\nᎠᎾᎵᏅᏟᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎨᏣᏍᏓᏩᏗᏙᎯ ᎾᏍᏉ ᎠᏂᎪᎲᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ.\nᏎᎦᏨ, ᏭᎷᏤ ᎤᏍᏗ ᎠᎹ ᎦᏁᎲ ᎡᏆ ᏅᏯ ᎤᎵᏗᏨ.\nᏗᎦᏓᏁ ᎢᏧ ᎵᏍᏔᏅ ᎨᏎ ᏧᎳᏑᎶ ᏭᏨᏔ ᎤᏙᏓ.\nᎾᏍᎩ Ꮎ ᏨᏧᏠᎠᏎᎢ ᎾᏍᎩᏉ ᎾᏍᏉ ᏥᏚᎴᏁᎢ ᎦᎸᎳᏗᏢ ᏂᎦᎥ ᎦᎸᎶᎢ ᏕᎨᏌᏗᏒ ᏥᏭᎷᏤᎢ, ᎾᏍᎩ ᏧᎧᎵᎢᏍᏗᏱ ᏂᎦᎥ ᏄᏓᎴᏒ ᎪᎱᏍᏗ.\nᎾᏍᎩᏃ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏣᏤᎵᎦ ᎢᏳᏩᏂᏌᏛ ᎠᏩᎾᎦᎳ ᏗᏍᏓᏓᏅᏟ ᏴᎬᏲᎱᎯ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᏲᎱᎯᏎᎸᎯ?\nᎤᏛᎦᏁᎢ ᏫᎵᎻ ᎣᏍᏓ ᎾᏂᏪᏍᎬ ᎠᏂᏃᎮᏍᎬ ᏁᏆᎸ ᎡᏚᏥ.\nᏉᎳᏃ ᎠᎴ ᏆᏂᏆ ᎾᏍᏉ ᎬᏁᏙᎮ ᎥᏘᏍᎩ ᏓᎾᏕᏲᎲᏍᎨᎢ, ᎠᎴ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᏉ ᎤᏂᏨᏖ ᏅᏩᎾᏓᎴᎢ.\nᎿᏉᏃ ᏛᏂᎪᎯ ᏴᏫ ᎤᏪᏥ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸᎢ ᎤᎵᏂᎩᏛ ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᏅᏧᏛᎿᏗᏎᏍᏗ.\nᎤᎵᏂᎩᏛᏃ ᏚᏁᏤᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗᏱ ᏂᎨᏒᎾ.\nᏏ ᏐᏉ ᎢᏳᏩᎫᏗ ᏭᏂᎷᏣ ᎠᏓᏁᎸ, ᏗᎦᎳᏛ ᏭᏂᎪᏩᏛᎮ ᎤᏔᏂᏓ ᏅᏯ.\nᎾᏍᎩ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ ᎬᏩᏃᎮᎭ, ᎯᎠ ᎾᏂᏪᎭ; ᎾᏍᎩ ᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎾᏍᎩ ᏕᎤᏙᎥᎢ, ᎠᏥᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎤᏍᎦᏅᏨᎢ.\nᏍᎩᏄᏍᏛ ᎧᏃᎮᏍᎬ ᎪᏪᎵ.\n“ᎭᎴᏫᏍᏔ ᏥᏕᎰᏒᏍᎦ ᏳᏙᎯᏳᎲᎾ!”\nᏥᏌᏃ ᎾᏍᎩ ᎤᏙᎴᎰᏒ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏍᏗ ᎢᏦᎯᏳᎯ, ᎦᏙᏃ ᎢᏨᏒ ᎨᏒ ᎢᏥᏃᎮᎭ ᎠᎵᏍᏓᏴᏗ ᏂᏥᏰᎲᎾ ᎨᏒᎢ?\nᎠᏴᏃ ᏧᏤᎵ ᎣᏥᏃᎮᏍᎩ ᎾᏍᎩ ᎯᎠ ᏄᏍᏛᎢ, ᎠᎴ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏁᎸᎯ ᏥᎩ ᎬᏬᎯᏳᎲᏍᎩ.\nᎠᎬᏱ ᎠᏥᎳ ᎦᏆᎴᎳ ᏥᎦᏂᎩᏍᎬ, ᎦᎵᎡᎵᎬ, ᎠᎬᏱ ᎯᏍᎩᏍᎪ ᎢᏳᏥᎶᏓ, ᎠᎬᏱᏣ ᏩᏉᏢ, ᏙᏣᏟᏃᎮᏍᎬ ᎠᏥᎳ ᏓᏆᎴᎳ ᎠᏂᏅᏫᏍᏗᏍᎩ, ᎦᏥᏍᏕᎵᏍᎬ ᎠᏓ ᏓᏂᎳᏗᏍᎬ ᎠᏓ ᏗᎦᎳᏗᏍᏗ.\nᎤᎾᎵᎮᎵᏤᏃ, ᎠᎴ ᎬᏩᏁᏤᎴ ᎠᏕᎸ ᏗᎬᏩᏁᏗᏱ.\nᎠᎴ ᎩᎶ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ,\n”ᏔᎵ ᎠᏗᏙᏗ ᎧᎵ ᎥᏳᎩ ᎠᎴᏫᏍᏗᎩ ᏃᎴ ᏩᏚᎵᏏ ᎦᏲᏟ ᎯᏁᎲᏏ,” ᎤᏛᏁ ᎰᎻ.\nᎢᏣᏕᎰᎯᏍᏗᏍᎩ ᎯᎠ ᏥᏂᏥᏪᎠ. ᎰᏩᏍᎪ ᎥᏝ ᏰᎭ ᏂᏣᏛᏅ ᏌᏉᎤᏅ ᎠᎦᏔᎿᎢ ᏰᎵ ᏗᎬᏭᎪᏓᏁᏗ ᎠᏁᎵᏅᏟ ᏓᎾᏓᏰᎢᎵᏙᎲᎢ?\nᎯᎠᏰᏃ ᎢᏳᏪᏛ ᏥᎩ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᎾᏍᏉ ᎯᎠ ᎢᏳᏪᏛ ᎢᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ; ᎾᏍᎩᏃ ᎢᏳᏃ ᏂᏣᏓᏲᏁᎸᎾ ᏱᎩ, ᎠᏎᏃ ᏱᏣᏓᎸ, ᎿᏉ ᏗᎧᎿᏩᏛᏍᏗ ᎯᏲᏍᏗᏍᎩ ᏄᎵᏍᏔᏅ.\nᎣᏍᏓ ᎱᎵᏍᏓᏴᏁ ᏫᎵᎻ.\nᎿᏉᏃ ᎤᏜᏅᏛ ᎠᏰᎵ ᎤᏃᏔᏅ, ᎠᎴ ᎢᏧᎳᎭ ᎤᎾᏅᏅ, ᏈᏓ ᎤᏪᏁ ᎠᏂᏅᎢ.\nᏏ ᎩᎳᎯ ᎭᏓᏅᏖᏍᎨ ᏏᏆ, ᏗᏕᏲᎲᏍᎩ ᎤᏛᏛᏁ, ”ᏲᎾ ᎤᏤᏍᏙ ᏙᏚᏙᎠ ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ ᏅᎩᏓᎵᏃ ᏍᎦᏚᎩ?” \nᎨᏍᏗ ᏳᏚᎵᏍᎨ ᎤᏪᎵᏍᏗ ᎡᎶᏗ.\nᏣᏚᎵᎭᎨ ᎪᏪᎵ ᏦᏪᎶᏗ ᎩᏃᎯᏳᏅ?\nᎠᏎᏃ ᎤᏩᎨᏫᏎ ᎭᏂᏣ ᎠᏍᏓ ᎯᎵᎯᏨ ᏭᎧᏁᏍᏗ, ᎨᏍᏗ ᏳᎵᏍᏕᎸᏙᏔᎾ. ᏭᏅᏥᎴ ᏃᎴ ᎤᏪᎯᏍᏔᏁᎴ ᏫᎵᎻ.\nᎠᏎᏃ ᎤᏟ ᎢᎦᎢ ᏧᏃᏣᎶᎢᏍᏗᏱ ᏂᎨᏒᎾ ᏴᏫ ᎠᏁᎲᎢ, ᎤᎵᏂᎩᏛᏯ ᏗᏗᏍᎦᎩ ᏗᏗᏁᏥ, ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎯᎠ ᎾᏍᎩ ᏚᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎬ ᎩᎶ ᎤᏂᏬᏁᏙᏗᏱ ᏂᎨᏒᎾ.\nᎠᏎᏃ ᎦᏙ ᎠᏗᎭ? ᎧᏃᎮᏛ ᎮᎲ ᎾᎥᏂᏳ ᏄᏍᏗᏕᎦ, ᎾᏍᎩ ᎯᎰᎵᏉ, ᎠᎴ ᏣᎾᏫᏱᏉ ᎡᎭ; ᎾᏍᎩ ᎯᎠ ᎧᏃᎮᏛ ᎪᎯᏳᏗ ᎨᏒ ᎧᏃᎮᏍᎩ, ᎾᏍᎩ ᎠᏴ ᏦᏣᎵᏥᏙᎲᏍᎦ;\nᎨᏍᏗ ᎫᏓᎸᏉᏙᏗ ᏱᎩ ᎭᏂ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᏦᎯᏍᏙᏗ ᏗᎿᏬ ᏓᎿᏬᏍᎨ ᎢᎪᎯᏓ ᏃᏉ - “ᏑᎾᎴ ᏳᏗᏛᎭ ᏓᎿᏬᏍᎨ.\nᎠᎴ Ꮼ ᎢᏓᎵᏅᏟ, ᎢᏨᏍᏗᏰᏗᎭ ᏗᏣᎦᏌᏯᏍᏙᏗᏱ ᏗᎦᎴᏅᏗᏱ ᎠᎴ ᎤᏓᎿᏍᏆᎶᏍᏗᏱ ᎢᏯᏅᏁᎯ, ᏗᎦᏘᎸᏍᏗᏱ ᏗᏕᏲᏅᎯ ᎨᏒ ᏄᏍᏛ ᏄᏍᏛ ᎢᏣᏕᎶᏆᎥᎢ; ᎠᎴ ᏕᏣᏓᏅᎡᎮᏍᏗ.\n”ᏨᏌ ᏫᎪᏩᏔ.”\nᎨᏍᏗ ᏐᏉ ᎢᏯᏔᏬᏍᏔᏅ ᏳᎦᏘᏓ ᏥᏍᏕᏥ.\nᏂᎦᏗᏳᏃ ᎪᏢᏅᎯ ᎨᏒ ᎦᎸᎳᏗ ᎡᎲ, ᎠᎴ ᎡᎶᎯ ᎡᎲ, ᎠᎴ ᎡᎶᎯ ᎭᏫᏂᏗᏢ ᎡᎲ, ᎠᎴ ᎾᏍᎩ ᎠᎺᏉᎯ ᎠᏁᎲ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᏂᏯᎥᎢ, ᎠᏆᏛᎦᏅᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᎣᏍᏛ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎠᎴ ᎾᏍᏉ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏂᎪᎯᎸᎢ.\nᎠᎴ ᎦᎪ ᏚᏁᏤᎴ ᎠᏎᎵᏛᏍᎬ ᎾᏍᎩ ᎤᏂᏴᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎤᏤᎵ ᎠᏣᏪᏴᏄᏍᏙᏗᏱ? ᏝᏍᎪ ᎾᏍᎩ ᏱᎨᏎ Ꮎ ᏄᏃᎯᏳᏒᎾ ᏥᎨᏎᎢ?\n“ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ,” ᎤᏛᏁ ᎦᏂᎦᏔ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎦᏅᎬ [ᎠᎵᏍᏓᏴᎲᏍᎬ] ᎦᎵᏦᏕ, ᎬᏂᏳᏉ ᎤᏂᏣᏛᎩ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎤᏂᎷᏨ ᎤᎾᏂᏢᏅᎩ ᎠᏂᏅᏜᎥ ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ.\nᎠᏎᏃ ᏚᎷᏫᏍᏔᏁᎮ ᏧᏍᏆᏴᏍᏗ, ᏃᎴ ᏰᎵ ᏄᏩᏅᏓᎩᏎ ᏗᎦᏅᏙᏗ ᏃᎴ ᎦᏙᎯ ᏭᏁᎢ, ᏫᎵᎻ ᎦᏙᎬ ᎠᎬᏱᏣ ᏭᏁᎢ.\nᎾᎿᏃ ᎾᎥᎢ ᎠᏫ-ᏗᏂᎦᏘᏯ ᎠᏁᏙᎮ ᎤᏜᏅᏛᎢ, ᎠᏫ ᏓᏂᎦᏘᏰ ᏒᏃᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ ᏂᎪᎯᎸᎢ, ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎾᏍ-ᎩᏃ ᏰᎵᏉ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎩ ᎬᏩᎾᏗᏫᏎᏗ, ᎠᎴ ᏴᏫ ᎤᏪᏤ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎬᏩᎾᎴᏗ ᎦᏰᏤᎵᏎᏗ ᏱᏂᎦᎵᏍᏓ\nᎢᏳᏰᏃ ᏩᎦ ᏧᎾᎪᏅᏍᏓᎵ ᎤᏂᎩᎬ, ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᎩᎬ, ᎠᎴ ᏩᎦ ᎠᎩᏏ ᎤᎪᏅᎯ ᎪᏍᏚ ᏕᎨᏩᏅᏁᏗ ᏱᎩ ᎾᏍᎩ ᎤᏂᏇᏓᎸ ᎤᎬᏩᎵ ᎨᏒᎢ.\nᎪᎯ ᎤᎵᏍᏆᎸᏗ ᏕᎨᏌᏗᏒ ᎢᎩᏁᏤᎸ ᎤᏪᏥ ᎤᏮᏔᏅ, ᎾᏍᎩ ᎤᏪᎧᏅ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᎾᏍᏉ ᎬᏗᏍᎬ ᎡᎶᎯ ᏚᏬᏢᏁᎢ;\nᎤᏁᎵᏎ ᎣᎯᏍᏙᏗ ᏳᎾᏛᏅᎢᏍᏗ ᎤᎾᎵᏍᏙᏗ.\nᎯᎠ ᏱᏂᎦᏪᏍᎨ ᏗᎦᏃᏣᏟ: ”ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᎤᏍᏆᏂᎩᏗ ᏏᏆ ᏃᎴ ᎠᏂᏔᎵ ᎤᎾᏗᏍᎦᏟ.”\nᏧᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎨᏳᏎᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ, ᎲᏗᏍᎨᏍᏗ ᏂᎦᎥ ᏣᎾᏫ ᏣᎸᎢ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏙᎩ, ᎠᎴ ᏂᎦᎥ ᏣᎵᏂᎬᎬᎢ, ᎠᎴ ᏂᎦᎥ ᏣᏓᏅᏖᏗ ᎨᏒᎢ; ᎾᎥᏃ ᎢᏗᏍᏓᏓᎳ ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᎾᏍᎩᏯ ᏂᎨᏳᏎᏍᏗ.\n(ᎾᏍᎩ ᎥᏝ ᎣᏏᏳ ᏳᏰᎸᏁ ᎾᏍᎩ ᏄᏍᏛ ᏚᏄᎪᏔᏅ ᎠᎴ ᏄᎾᏛᏁᎸᎢ,) ᎠᎵᎹᏗᏱ ᎡᎯ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏂᏧᏏ ᎤᏂᏚᎲᎢ, ᎾᏍᎩ ᎾᏍᏉ ᎠᎦᏘᏰ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ,--\nᎢᎪᎯᏓ ᎢᎦ ᏒᎮᏱᏣ ᏪᏙᎰ ᎭᎾᏂ, ᏣᎨ? \nᏍᎩᎾ ᎪᏍᏓᏱ ᎦᏰᏌᏗ ᏙᏳᏕᎦ ᎤᎶᏒᏍᏗ ᎤᏲᎢ ᏥᎨᏎᎢ ᏍᎩᎵ ᏤᎮᎢ ᎦᎸᎳᏗᏳ ᎦᏚᏏ.\nᎠᏦᎳᏅᏃ ᏓᎬᎩᏄᎪᏫᏒᎩ ᏔᎷᏣᎩᎯ ᎬᏆᏦᏗ ᎬᏆᏠᎥᏔᏅᎩ ᎠᏐᏳᎶᏗ, ᎠᎴ ᏥᏯᏗᏫᏎᎸᎩ.\nᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏓᏓᏅᏟ, ᎥᏝ ᏱᎨᎵᏍᎨ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎨᏒᎢ; ᎯᎠᏰᏃ ᏥᏂᎬᏅ ᏥᎪᏪᎳ; ᏞᏍᏗ ᎤᏐᏅ ᏱᏁᏤᎮᏍᏗ ᏣᎦᏁᎶᏗ ᏗᏣᏤᎵ ᏴᏫ ᎤᎾᏤᎵᎦ.\nᎾᏍᏉᏰᏃ ᎪᎱᏍᏗᏉ ᎬᏃᏛ ᏂᎨᏒᎾ, ᏳᏃᏴᎦ, ᎠᏤᎷᎯᏍᏗ ᎠᎴ ᏗᎧᏃᎩᏍᏙᏗ ᏱᎩ, ᎢᏳᏃ ᏧᏓᎴᎿᎢ ᏂᏚᏃᏴᎬᎾ ᏱᎩ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏴᏙᎴᎰᎯ ᎾᏍᎩ ᎠᏤᎷᎯᏛ ᎨᏒ ᎠᎴ ᎾᏍᎩ ᏗᎧᏃᎩᏛ ᎨᏒᎢ?\nᎤᏟᏍᏓ ᎤᏓᏅᏖᏗ ᎨᏎᎢ.\nᎿᏉᏃ ᏧᎦᏐᎠᏒ ᎤᏌᎯᎸᎢ, ᎤᏂᏣᏘ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ; ᏥᏌ ᎤᏍᏆᏛ ᏕᎧᏁᏤᎲ ᏔᎳᏚ ᎢᏯᏂᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎤᏂᎩᏒᎩ ᎾᎿᏂ, ᏚᏕᏲᏅᏛᎩ ᎠᎴ ᎤᎵᏥᏙᎾᏒᎩ ᏚᏂᏚᎿᎥᎢ.\nᏥᎦᏴᎵ ᎤᏃᏕᎾ. ᏚᏕᏘᏴᏌᏗᏒ ᎤᏐᏱᎭ ᏥᎪᏩᏘᏍᎪ.\nᎠᏓᏍᏓᏴᏗ, ᎩᎳᏈᏴ ᏚᏃᏣᏝᏁᎢ ᎠᎳᏂ.\n“ᎠᏂᏴᏫᏯᏃ ‘ᎠᎳᏑᎶ’ ᏓᏃᏎᎰ…”\nᎤᏂᎶᏌ ᎠᏗᏆᎸᏕᏲ ᎦᏆᏘ, ᎦᎸᎳᏗ ᏫᏚᎧᎾᏁ ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᏚᎦ ᎤᏪᎮᎢ ᎦᎸᎳᏗ ᏂᏗᎬᏅ ᎠᎩᎸᏙᏗ ᏳᎩᎴᎢ ᏃᎴ ᎮᏂᎵ ᎤᎵᏲᏗ ᎤᎵᏗᏨ ᏳᏬᏞᎢ.\nᏦᏣᎢᏒ, ᏙᏧᏔᎩᏍᏔᏅ ᎣᎭᏂ ᎠᏁᎩ ᎤᎾᎵᏓᎩᏛ.\nᎯᎠᏃ ᎤᎵᏬᏨ ᏧᎬ.\nᎤᏍᎦᏃᎵ ᎤᎧᏐᏔᏂᎴ ᎦᎸᎳᏗ ᏓᏳᎶᏒ ᏲᎾ ᎤᏤᏍᏙ.\nᏳᎾᎵᏍᏔᏴᎾ ᏍᏉ ᎬᏇᎸᏍᏗᏍᎬ, ᎦᏚ ᎠᏑᏴᏅ ᏃᎴ ᏩᎦ ᎭᏫᏯ ᎤᏌᎨ ᎠᎦᎷᏯᏓ ᎩᎦᎨ ᏃᎴ ᎬᏂᎨ ᏗᏆᏲᏓᏅ, ᎦᏣᏄᎳ ᏗᎬᏣᏝᏅ, ᎦᏖᏌᏗᏍᏗ ᎠᏓ ᏧᏂᎳᏗᏍᏗ ᎤᏂᏙᎥᏔᏅ, ᎩᎦᎨ ᎤᏗᎴᎩ ᎾᎥᏂ.\nᎢᏳᏃ ᎩᎶ ᏚᎸᏫᏍᏓᏁᎸ ᏯᎪᎲᏍᏔᏅ, ᎾᏍᎩ ᎤᏲᎱᏎᎮᏍᏗ; ᎤᏩᏒᏍᎩᏂ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ; ᎠᏎᏃ ᎠᏥᎸ ᏣᏥᏍᏕᎸᏔᏃ ᎾᏍᎩᏯᎢ.\nᎤᏁᎳᏫᏎᎸᏃ ᎩᎳᏉ ᎢᏴᏛ ᎣᎦᏁᎶᏔᏅᎩ ᎹᏏᏙᏂ ᏬᎩᎶᎯᏍᏗᏱ, ᎣᏣᏙᎴᎰᏍᎬᎩ ᎤᎬᏫᏳᎯ ᎣᎩᏯᏂᏍᎬᎢ ᎾᏍᎩ ᏦᏣᎵᏥᏙᏁᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ.\nᎣᏍᏓ ᎤᏰᎸᎯ ᏚᎧᏙᏍᏕᎢ ᏌᎳᏓ.\nᏐᏉ ᎦᏚᎲ, ᎦᎵ ᎨᏒ ᏧᏂᏍᏗ ᎤᎾᏟᏂᎩᏓ ᎠᏂᏓᏥ, ᎭᎾ ᏓᎩᎬ ᏦᎯᏍᏙᏗ ᏏᏆ ᎭᏫᏯ ᎠᏍᏙᏓ, ᏩᏁ ᎦᏃᏍᎦ ᎦᏚ ᏧᏅᏂᏍᏔᏅ, ᏍᎨᏫ ᏧᎾᏦᏍᏗ ᏗᎵᎪᏔᏅ ᏃᎴ ᎤᏬᏗᎨ ᎠᏓᏴᏍᏕᏍᎩ, ᎤᏬᏗᎨ ᎦᏓᎫᎩ ᎤᏂᎫᎩᏓ, ᎠᎼ ᎤᏪᏴᎢ ᎤᏂᏴᏣᏗᏍᏔᏅ.\nᎠᎴ ᎠᏨᏍᏙᏗ ᏚᎸᏌᏛ ᎥᏝ ᎿᏉ ᏗᏣᎸᏌᏓᏕᏗ ᏱᎨᏎᏍᏗ; ᎠᎴ ᎠᏕᏒᎲᏍᎩ ᎠᎴ ᎠᏥᏰᎯ ᎠᏂᏁᎬ ᎥᏝ ᎿᏉ ᎡᏣᏛᎦᏁᏗ ᏱᎨᏎᏍᏗ; ᏗᏣᏤᎵᏰᏃ ᎠᏂᏃᏗᏍᏍᎩ ᎨᏥᎸᏉᏗ ᎨᏒᎩ ᏴᏫ ᎡᎶᎯ ᏓᏁᏩᏗᏒᎢ; ᏂᎦᏗᏳᏰᏃ ᎤᎾᏓᏤᎵᏛ ᎨᏒ ᏴᏫ ᏓᏁᏩᏗᏒ ᎠᏙᏅᏗ ᏕᏣᎸᏫᏍᏓᏁᎲ ᏕᎯᎶᏄᎮᏔᏅᎩ.\n“ᎠᏗᎭᏃ ᎪᎨᏱ ᏏᏆ,” ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᏌᎳᏓ, ᎭᏩᏉᏗᏃ ᏱᎩ.\nᏂᎦᏛᏃ ᎤᎾᎵᏍᏓᏴᏁᎢ; ᎠᎴ ᏚᏃᎸᏎᎢ.\nᏤᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᏫᎵᎻ-“ᎨᏍᏗ ᎪᎱᏍᏗ ᏣᏓᏅᏕᏙᏗ ᏱᎩ.\nᎠᏎᏃ ᏰᎵᏉ ᏂᏗᎦᎵᏍᏔᏂ, ᏱᎬᏍᏕᎸᎭ.”\nᎢᏣᎵᎮᎵᎨᏍᏗ ᏂᎪᎯᎸᎢ;\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎠᏂᏧᏏ ᏅᏁᏙᎯ, ᎠᏂᏍᎩᎾ ᏗᏂᏄᎪᏫᏍᎩ, ᎤᎾᏓᏅᏖᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᏕᎤᏙᎥ ᏧᏂᏁᎢᏍᏓᏁᏗᏱ ᎤᏂᏲ ᏗᏓᏅᏙ ᏧᏂᏯᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏨᏁᎢᏍᏓᏏ ᏥᏌ, ᎾᏍᎩ ᏉᎳ ᎠᎵᏥᏙᎲᏍᎬ ᏥᎦᏃᎮᎭ.\nᎿᏉᏃ ᎠᎹᏟ ᎤᏅᏅ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅ ᎠᎴ ᏚᎾᏏᏔᏛ, ᏚᏂᏅᏎᎢ.\nᎯᎠ ᎾᏍᎩ ᏦᎢ ᎢᏳᏓᎴᎩ ᎨᏒ ᏓᏅᏗᏍᎬ, ᏴᏫ ᏦᎢ ᎢᎨᏥᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏂᏨᎯ ᏕᎨᏥᎸᎩ, ᎾᏍᎩ ᎠᏥᎸ ᎬᏗ, ᎠᎴ ᏧᎦᏒᏍᏗ ᎬᏗ, ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᎬᏗ, ᎾᏍᎩ ᏗᏂᎰᎵ ᏥᏙᏓᎦᏄᎪᎬᎢ.\nᎠᎦᏴᎵᎨᏰᏃ ᎤᎨᏳᎯᏳ ᎤᏪᏥ, ᎠᎴ ᎦᎾᏄᎪᏫᏎᎰ ᏂᎦᏛ ᎤᏩᏒ ᏚᎸᏫᏍᏓᏁᎲᎢ; ᎠᎴ ᎤᏟ ᎢᎦᎢ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏓᎦᎾᏄᎪᏫᏎᎵ ᎡᏍᎦᏉ ᎯᎠ; ᎾᏍᎩ ᎢᏥᏍᏆᏂᎪᎯᏍᏗᏱ.\nᏥᏌᏃ ᏚᏁᏤᎸ ᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎾᏍᏉ ᎯᎠ ᎾᏍᎩ ᏱᏥᎪᎵᏰᎣᎢ, ᎾᏍᎩ ᏕᏫ ᏄᏛᏁᎸᎢ, ᎠᎪᏄ ᏧᏲᏏᏍᎨ ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᏣᏁᎮᎢ?\nᎿᏉ ᎣᏥᎦᏔᎭ ᏂᎦᎥ ᎪᎱᏍᏗ ᎯᎦᏔᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎠᏎᏉᏉ ᎨᏒ ᎩᎶ ᏱᏨᏛᏛᎲᏍᎦ. ᎾᏍᎩ ᎤᏗᎦᎵᏍᏙᏗᎭ ᎣᏦᎯᏳᎲᏍᎦ ᎤᏁᎳᏅᎯᏱ ᏅᏓᏣᏓᎴᏅᎯ ᎨᏒᎢ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎢᏤ ᏱᎦᎳᏍᏢᏗᏍᎪ ᎤᏪᏘ ᎠᏄᏬᎩᎯ, ᎦᎳᏍᏢᏛᏰᏃ ᏴᎦᏣᎦᎸᏓ ᎠᏄᏬ, ᎤᏓᏣᎦᎸᎲᏃ ᎤᏟ ᎡᏉᎯᏳ ᏱᏂᎦᎵᏍᏓ.\nᎠᎴ ᎤᏪᏑᎶᏨᎯ ᎨᏎ ᏁᎳᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏴᏛ ᎢᏳᏕᏘᏴᏛ, ᎾᏍᎩ ᎥᏝ ᏱᏓᏅᏍᎨ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᏁᎳᏅᎯᏉ ᏓᎧᎿᏩᏗᏎᎢ ᎠᎹᏟ ᎬᏍᎬ ᎠᎴ ᎠᏓᏙᎵᏍᏗᏍᎬ ᏂᏚᎵᏏᏂᏒ ᎠᎴ ᏂᏚᎩᏨᏂᏒᎢ.\nᎤᏆᏙᏓ.\nᎤᎵᎪᎲᏍᏗᏃ ᎨᏒ ᎠᎴ ᏧᎵᏍᏚᏬᏐᏅ ᎨᏒ ᏕᏢᎬ ᎠᎴ ᏒᏃᏱ ᎡᎯ ᏅᏓ ᎥᏍᏊ ᎢᎦᎯ ᎤᏘᏍᏛᎢ.\nᏂᎦᏚᏏᏁᏃ ᎤᎵᏏᏅ, ᎠᎺᏉᎯ ᎡᏟᏯ ᏠᏙᎢᏛ ᎣᎩᏃᎸᏔᏂᏙᎲᎢ, ᏒᏃᏱ ᎠᏰᎵ ᏥᏳ ᎠᏂᏂᏙᎯ ᎢᎸᎯᏢ ᎦᏙᎯ ᎾᎥᏂᎨ ᎣᏥᏂ ᎤᏁᎵᏒᎩ.\nᏴᏫᏰᏃ ᎤᏪᏥ ᏧᎷᏥᎸ ᎥᏝ ᏴᏫ ᏓᏅᏅ Ᏹ-ᏚᏛᏔᏂᎸ, ᏚᏍᏕᎸᎯᎸᏉᏍᎩᏂ. ᏅᏩᏓᎴᏃ Ꮧ-ᎦᏚᎲ ᏭᏂᎶᏎᎢ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎤᏪᏘ ᎠᏄᏬ ᎢᏤ ᎠᎬᎭᎸᏛ ᏱᎦᎵᏍᏢᏗᏍᎪᎢ, ᎢᏤᏰᏃ ᎠᎬᎭᎸᏛ ᎦᎳᏍᏢᏔᏅᎯ ᏴᎦᏣᎦᎸᏙᏓ ᎤᏪᏘ, ᎾᏍᎩᏃ ᎤᏓᏣᏕᎸᎲ ᎤᏟ ᎡᏉᎯᏳ ᏱᏅᎦᎵᏍᏓ.\nᎯᏍᎩᏃ ᎦᏚ ᏚᎩᏒ ᎠᎴ ᏔᎵ ᎠᏣᏗ ᏚᏁᏒ, ᎦᎸᎳᏗ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᏚᎬᎭᎷᏰ ᎦᏚ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏁᎴ ᏧᏂᏁᏗᏱ; ᏔᎵᏃ ᎠᏣᏗ ᏂᎦᏛ ᏚᏯᏙᎮᎴᎢ.\nᎢᎾᏛᏃ ᎤᏙᎴᎰᏒ ᎦᏙᎯ ᏣᎦᏓᎢᏅᏒᎢ, ᎤᏕᏯᏙᏔᏅᎩ ᎠᎨᏴ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᎤᎾᏄᎪᏫᏒᎯ.\nᎤᎷᏨᏃ ᎤᏏᏔᏕ ᎠᏥᏢᏛᎢ, ᎬᏩᏁᎩᏃ ᎤᎾᎴᎾᏫᏍᏔᏁᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎯᏫᏅ, ᎭᏗᏛ, ᎬᏲᏎᎭ.\nᎣᎵᏩᏲᏃ ᎤᏌᎯᎸ ᎤᏬᎸᎢ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏅᏒ ᎨᏒ ᎬᏩᎷᏤᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏍᎩᏃᎲᏏ ᎯᎳᎪ ᎢᏳ ᎯᎠ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏔᏂ; ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᏣᎷᎯᏍᏗᏱ, ᎠᎴ ᎪᎯ ᎨᏒ ᎤᎵᏍᏆᏗᏍᏗᏱ?\n“ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ ᎬᏗ ᏓᏥᏯᏬᎢ.\nᏭᎳᏕ ᎦᏂᏧ Ꮎ ᎤᏥᏍᏛ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ, ᏂᎬᎾᏛ ᎠᏰᎸ ᎤᏅᎵᏰᎡ.\nᏍᎩᏃ ᏚᏂᏅᏎ ᎢᎾᏓ ᏗᎦᏅᎬ ᎢᏗᏣ, ᎠᏍᎪᎵᏃ ᎤᏁᎯᏍᏙᏗ ᎤᏁᎵᏎ.\nᎢᏳ ᎠᎴ ᎩᎶ ᎯᎠ ᏥᏂᏣᏛᏅ ᎢᏥᎦᏴᎵᎨ ᎨᏒ ᎤᏪᏥ ᎦᏚ ᏳᏔᏲᏎᎭ, ᏥᏌ ᏅᏯᏉ ᏯᎲᏏ? ᎢᏳ ᎠᎴ ᎠᏣᏗ ᏳᏔᏲᏎᎭ, ᏥᎪ ᎠᏣᏗ ᎤᏅᏁᏗ ᎨᏒ ᎢᎾᏛᏉ ᏱᎦᏅᎥᏏ?\nᏢ ᎠᏎ ᏓᎳᏚ ᎢᏯᏆᏕᏘᏴᏓ ᎨᏎ ᎩᎳᎢᏊ ᎢᏳᏍᏗ ᎠᎩᏁᏓ ᎨᏒ ᎠᏆᎵᏍᎪᎸᏓᏁᎯ ᏓᏆᎴᎳ ᎠᎩᎯᎵᏓᏍᏗ.\nᏴᏫᏃ ᎤᎾᎴᎾᏫᏍᏕ ᏚᎾᎦᏙᏍᏕᎢ. ᏄᏂᎬᏫᏳᏌᏕᎩᏃ ᎾᏍᏉ ᏚᎾᎵᎪᏁᎴ ᎢᎬᏩᏕᎨᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎠᏂᏐᎢ ᏓᏍᏕᎵᏍᎬᎩ; ᎤᏩᏒ ᏩᎵᏍᏕᎸ ᎢᏳᏃ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏑᏰᏛ ᎨᏎᏍᏗ.\nᎠᏎᏃ ᎦᏳᎳ ᏂᎫᏩᏕᎶᎰᏒ ᏂᎨᏎ ᏲᎾ ᏚᎷᏫᏍᏔᏁᎲ ᏤᎩᏏᏂ.\nᎾᏂᎥᎩᎶ ᏄᏛᏅᏉ ᎠᏥᏯᏅᎲ ᎾᎿᏉ ᏅᏩᏛᏁᏍᏗ.\nᎠᏎᏃ ᎢᏨᎨᏳᎢ, ᎯᎠ ᎾᏍᎩ ᏑᏓᎴᎩ ᏞᏍᏗ ᏂᏥᎦᏔᎲᎾᏉ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᏌᏉ ᎢᎦ ᎨᏒ ᎤᎬᏫᏳᎯ ᏙᏗᎧᏂᏍᎬ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎤᏠᏱ, ᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᏌᏉ ᎢᎦ ᎨᏒ ᎤᏠᏱ.\nᎾᏍᎩᏃ ᎠᏓᏅᏙ ᎯᎠ ᎢᎦᏪᏍᎩ ᏂᎨᏒᎾ, ᏥᏌ ᎦᎶᏁᏛ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏥᎴᎢ, ᎥᏝ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎦᎶᏁᏛ-ᎠᏡᏗᏍᎩ ᎤᏤᎵᎦ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎤᎷᎯᏍᏗᏱ ᎢᏣᏛᎦᏅᎯ ᏥᎩ, ᎠᎴ ᎿᏉ ᎦᏳᎳ ᎡᎶᎯ ᎡᎭ.\nᎩᎳ ᏭᏢᎾ ᎤᏍᎩᏗᏎ ᏥᎦᎶᎣᏍᎪᎢ, ᎤᏪᎷᏁ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᏗᎾᏰᏍᎬᎾ ᎯᎠ ᎢᎨᎩᏪᏍᏗ, ᎤᎬᏫᏳᎯ ᎠᎩᏍᏕᎵᏍᎩ, ᎠᎴ ᎥᏝ ᏴᎦᏥᏍᎦᏯ ᏴᏫ ᎢᎦᎬᏋᏁᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎣᏏᏳ ᎢᎨᏣᎵᏍᏓᏁᏗ ᏱᎩ, ᎠᎴ ᎪᎯᏗᏳ ᎨᏣᎴᏂᏓᏍᏗ ᏱᎩ ᎡᎶᎯ.\n“ᎭᏗ ᎪᎱᏍᏗ” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᏎᏃ, ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎪᎯᏳᏗ.\nᏥᏌᏃ ᎤᎪᎲ ᎤᏃᎯᏳᏒᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎤᎸᏓᎸᎥᏍᎩ, ᎠᏯᏥ, ᏣᏍᏕᏅᏨ ᎡᏣᏙᎵᎩ.\nᎥᎥ, ᏗᎾᏓᏅᏟ, ᎤᎵᎮᏍᏗ ᏍᏆᏓᏅᏓᏗᏍᏓ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏌᏛ; ᎪᎯᎵᏍᏓᏓᏉ ᎠᎩᎾᏫ ᎤᎬᏫᏳᎯ ᏕᎾᏁᎶᏛᎢ.\nᎠᏏᏉᏃ ᎧᏁᎨᎢ, ᎬᏂᏳᏉ ᎤᏂᏣᏘ, ᎾᏃ ᏧᏓᏏ ᏣᎪᏎᎮᎢ, ᎾᏍᎩ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ ᎨᎳ, ᎢᎬᏱ ᎠᎢᏎ, ᎠᎴ ᎾᎥ ᎤᎷᏤᎴ ᏥᏌ ᏧᏔᏪᏙᏂᏎᎢ,\nᎾᏍᎩ ᏄᏂᏪᏒᎩ ᏧᎦᏴᎵᎨᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᏂᏍᎦᎢᎲ ᎠᏂᏧᏏ; ᎦᏳᎳᏰᏃ ᎠᏂᏧᏏ ᏧᏄᎪᏔᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᎢᏳ ᎩᎶ ᏳᏁᏨ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒ ᎠᏥᏄᎪᏫᏍᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᎢᎸᏍᎩᏃ ᏄᏬᎯᏨ ᎾᎿ ᎤᏁᏙᎸ, ᏇᏍᏓ ᎤᏃᎮᎮᎸᎩ ᎤᎬᏫᏳᎯ ᏄᏍᏛ ᏉᎳ ᎤᎵᏱᎵᏕᎲᎢ, ᎯᎠ ᏄᏪᏒᎩ; ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏴᎩ ᎠᏥᎧᎭ ᏈᎵᏏ ᎤᏪᎧᎯᏴᎯ.\nᏕᎨᏴ ᏙᏥᎭᏯᎸ ᎾᏍᎩᏯ ᎩᏟ ᏥᏓᏂᎭᏲᎰ ᏧᎳ.\nᎡᏝᏪᎯ ᏯᎵᏖᎸᎮᏍᎬᎾ, ᏃᎴ ᎦᏲᏟᎨ ᎦᏬᏂᏍᎨ.\nᏙᎯᏉ ᎨᏎᏍᏗ.” \nᎠᎾᏗᏍᎪᏃ ᎠᏂᏴᏫ ᎤᏟᏍᏗ ᎤᎾᏕᎶᏆᎡ ᏣᎳᎩ ᎤᏃᏪᎶᏗ.\nᎾᏍᎩ ᎻᎵᎠ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎻᎾᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏓᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏁᏓᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏕᏫ ᎤᏪᏥ ᎨᏎᎢ,\nᎠᎴ ᎣᏣᎵᏍᎦᏍᏙᏗ ᎤᎬᏫᏳᎯ ᏂᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏂᏣᏛᏁᎲᎢ, ᎠᎴ ᎠᏎ ᎾᏍᎩ ᎢᏣᏛᏁᏗ ᎨᏒ ᏄᏍᏛ ᎢᏨᏁᏤᎲᎢ.\nᎤᏲᎯᏍᏔᎾ ᎦᎵᎤᏂᎲ ᎠᎱᎵ, ᎤᎴᏅᎮ ᎦᏬᏂᏍᎬ, ᎤᏐᏱ ᏄᏪᏎ ᎤᏂᏃᎮᏓ ᎠᏤᎯ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏃᎴ ᎤᏁᏝᏅᎯ.\nᏣᏆᏛᏏᏗᏒ ᎢᎸᏢ 57 ᏧᏕᏘᏴᏌᏗᏒ Ꮭ ᎠᏏ ᏗᎾᎦᎵᏍᎩ ᏱᏙᎩᏏᎳᏕ ᎣᎨᏅᏒ ᎦᎵᏦᏕ.\nᎾᎿᏃ ᎠᎦᏛᏅ ᎠᏫᎡᏗᏱ ᎪᏢᏒᎩ; ᎾᎿᏃ ᎠᏫᏒᏗᏱ ᎢᏤ ᏗᏓᏂᏐᏗᏱ ᎪᏢᏒᎩ ᎩᎶ ᎠᏥᏂᏌᏅ ᎠᏏ ᏂᎨᏒᎾ.\nᎾᏍᎩᏃ, ᎢᏓᎵᏅᏟ, ᎢᏨᏔᏲᏎᎭ ᎤᎷᎯᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᎾᏍᎩ ᏪᏓᏓᏟᏌᏁᏗ ᎨᏒ ᎤᎬᏩᎵ,\nᎠᎦᏴᎵᎨᏍᏛᏱ ᏗᏆᏓᎴᏅ, ᎡᎶᎯ ᎠᎩᎷᏥᎸ; ᏔᎵᏁ ᎡᎶᎯ ᏛᎦᏓᏅᏏ, ᎠᎦᏴᎵᎨᏍᏛᏱ ᏮᏛᏥᎶᏏ.\nᏔᎵ ᏦᎢ ᏩᏍᏗ, ᎠᏦᏴ ᏭᏓᏣᎪᏍᏗ ᏚᏲᏓᎩᏍᎬ ᎤᏓᏅᏖᎴ.\nᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏥᏄᎵᏍᏔᏅ ᎤᏁᎳᏅᎯ ᎤᎧᎵᎸ ᎾᏍᎩ ᎦᏳᎳ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᏥᎨᏎᎢ ᎦᎶᏁᏛ ᎤᎩᎵᏲᎢᏍᏗᏱ, ᏂᎦᏛ ᏧᏤᎵ ᎠᎾᏙᎴᎰᏍᎩ ᏗᏂᎰᎵ ᏥᏕᎬᏗᏍᎨᎢ.\nᏴᏫᏰᏃ ᎤᏪᏥ ᎤᎷᏨ ᎤᏍᏕᎸᏭᎸ ᎤᎴᎾᎸᎯ.\nᏲᎯᏉ ᎤᏍᏗᎩᏛ ᎤᏁᎳᎩ ᎨᏍᎩᏰᎵᏎᏗ ᏱᎩ ᎠᎩᏁᎫ ᎨᏒᎢ; ᎠᎴ ᎤᏙᎯᏳᎯ ᎤᏁᎳᎩ ᏍᎩᏰᎵᏏ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎾᏍᎩ ᎯᎠ ᏥᏂᏫ ᏫᏂᎦᎵᏍᏙᏓ, ᏥᎮᎾ; ᎠᏍᎩᎾ ᏤᏥᏱ ᎠᏯᎥ ᎤᏄᎪᎩ.\nᏓᏗᏍᏆᏂᎪᏔᏂᏍᎪ ᎤᏲᏦᏅ ᎡᎶᎯ?\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏅᎯᏳ ᏂᎯ.\n“ᎤᎾᏛᏁᎸᏗ ᎠᏆᏚᎵ ᎠᏇᏅᏍᏗ.”\nᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏧᎳᎭ ᏦᏍᏓᏑᏫᏍᎦ ᎠᏖᎵᏙᎩᎯ ᎾᏍᎩ ᏛᏆᏡᏔᏂ.\nᎾᏍᎩᏍᎩᏂ Ꮎ ᏥᏍᏚᏂᎩᏍᏗ ᎠᎴ ᎧᏄᎦᎸ ᎠᏛᏍᎬᎢ ᎠᏗᏅᏗᏉ, ᎠᎴ ᎠᏍᎦᎢᏍᏗᏱ ᎨᏒ ᎾᎥᏂᏳ ᏄᏍᏗᏕᎪᎢ, ᎾᏍᎩ ᎤᎵᏍᏆᎸᏗ ᎨᏒ ᎠᎪᎲᏍᏙᏗ ᏥᎩ.\nᎨᏍᏗ ᏂᎦᏓ ᏍᎩᎾᎾ ᏱᏃᏣᏛᏁᎰ, ᎠᏆᏛᏅ.\n”ᎠᏆᏓᏅᏖᏗ ᏄᏍᏛ ᏂᎦᏪᏍᎬ ᏲᎾ ᎤᏤᏍᏙ,” ᎤᏛᏁ.\n”ᎠᏯᏗ ᎠᏆᎵᏖᎸᏂᏍᏗ ᎤᏍᏆᎸᎭ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᎴ ᎣᎦᏚᎵᎭ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎬᎵᏍᏆᏗᏍᎩ ᎾᏍᎩᏯ ᎢᎦᎢ ᎢᏣᏟᏂᎬᏁᏗᏱ ᎬᏂ ᎤᏣᏘ ᏄᏜᏏᏛᏒᎾ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᏫᏥᏱᎶᎸᎭ;\nᏍᎩᎾᏃ ᏧᏪᎷᏁ ᏃᎴ ᏚᏩᏯᏑᎦᎸ ᎾᏍᎩᎾ ᎠᏔᎸᎦᏒ ᎪᏍᏓᏱ ᎦᏁᎦᏗᏓᎸᎦᏍᏙᏗ ᎦᏰᏌᏗ ᏍᎩᎾ ᏣᏚᏩᏘᎴ ᏂᎬᏛᎢ ᎠᏁᎳᏗᏍᎬ ᏧᏩᏘᏍᏗ ᎢᏳᏍᏓᏊ ᎩᎶ ᎾᎥ ᎾᎢ ᏳᎷᏥ ᎦᎸᏗᏣ ᎦᏙ ᎠᏔᎸᎦᏒᎢ.\nᎥᏝᏰᏃ ᎣᏓᎸ ᎬᏒᏂᏍᏗ ᎨᏒ ᎤᏥᎷᏨ, ᎠᎴ ᎾᏍᎩ ᏣᏓᏪᎵᎩᏍᎨᎢ, ᎥᏝ ᎠᎴ ᎬᎿᎨ ᎤᎶᎩᎸᎢ, ᎠᎴ ᎤᎵᏏᎩᏳ ᎰᏒ ᎠᎴ ᎦᏃᎸᎥᏍᎬᎢ,\nᎤᏂᏴᎲᎩᏃ ᎢᎾᏛ, ᎾᏍᎩ ᎠᎦᏴᎵ ᎢᎾᏛ, ᎾᏍᎩ ᎠᏍᎩᎾ ᎠᎴ ᏎᏓᏂ ᏣᎪᏎᎰᎢ, ᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎠᎦᎸᎸᎩ,\nᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎠᏴ ᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ, ᎤᏩᏒᏃ ᎠᏴ ᎠᏇᏥ ᎨᏎᏍᏗ.\nᎠᎴ ᎾᏍᎩ ᏍᏆᏛᎦᏁᎸᎯ ᏥᎩ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᏕᎭᎨᏅᏗᏍᎨᏍᏗ ᎠᏃᏍᏛ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏰᎵ ᏗᎬᏩᏁᏲᏗ ᎨᏒ ᎾᏍᏉ Ꮎ ᏭᏅᎫᏛᎢ.\nᎢᏧᎳ ᎨᏎᎢ ᏌᎳᏓ.\nᎡᏣᎵᏗᏏ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ. ᏂᎦᎥ ᏴᏫ ᎠᏍᎦᏅᎬ ᎪᎱᏍᏗ ᏂᎬᏁᎲᎾ ᎨᏐ ᎠᏰᎸᎢ; ᎩᎶᏍᎩᏂ ᎤᏕᎵᏛ ᏥᏓᏂᏏᎲᏍᎪ ᎤᏩᏒ ᎠᏰᎸ ᎠᏍᎦᏅᏤᎰᎢ.\nᎩᎶ ᏂᎯ ᎢᏣᏛᏓᏍᏓᏁᎮᏍᏗ ᎠᏴ ᎠᏆᏛᏓᏍᏓᏁᎮᏍᏗ; ᎩᎶᏃ ᎢᏥᏂᏆᏘᎮᏍᏗ, ᎠᏴ ᎠᎩᏂᏆᏘᎮᏍᏗ; ᎩᎶᏃ ᎠᏴ ᎠᎩᏂᏆᏘᎮᏍᏗ ᎦᏂᏆᏘᎮᏍᏗ ᏅᏛᎩᏅᏏᏛ.\nᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎ ᎤᏣᏘ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ. ᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏒ ᏂᎦᎥ ᏥᏌ ᏄᏛᏁᎸᎢ, ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ;\nᏔᎵ ᎢᏳᏩᎬᏗ ᏫᏚᎧᏁᎴ ᏏᏆ ᎦᏂᏓᏛ.\n”ᎠᏎᏗ, ᎠᏆᏓᏅᏖᏗᏍᎪ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎬᏩᏔᏲᏎᎸᎩ ᏧᏓᏅᏖᎮᏗᏱ ᎾᏍᎩ ᎠᏄᎯᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎤᏓᏅᏍᏗᏱ ᏥᎷᏏᎵᎻ ᎠᎦᏘᏃᎯᏍᏗᏱ; ᏭᏂᎭᎷᎨᏰᏃ ᏅᏃᎯ ᎤᏂᎯᏍᏗᏱ ᎤᏂᎸᏎᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᎢᏨᏍᏗᏰᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᏗᏥᏰᎸ ᏗᏣᎵᏍᎪᎸᏙᏗᏱ ᎬᏃᏛ ᎠᏥᎸ ᎨᎳᏍᏗ, ᎪᎱᏍᏗ ᏄᏍᏛᎾ, ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎤᏁᎳᏅᎯ, ᏕᏣᏓᏅᏛ ᎬᏗ ᎪᎱᏍᏗ ᎡᏣᏛᏁᎲᎢ.\nᎤᏂᏁᏨᎩ ᎯᎠ ᎤᎬᏩᏪᏎᎸᎩ; ᎢᏳᏃ ᎤᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᏱᎨᏎᎢ ᎥᏝ ᏱᏙᎨᏨᏲᎯᏎᎴᎢ.\n“ᏤᏍᏗ ᎤᏲ ᎠᏲᏟ ᎢᏳᏍᏗ ᏱᏣᏤᎸᎮᏍᏗ!” \nᎣᏤᎯᏃ ᎤᏙᎢᏳᎯ ᎠᏂᎪᏩᏘᏍᎬᎩ ᎢᎦ ᎦᏛᎢ, ᎠᎴ ᎠᏂᏍᎦᎢᎲᎩ, ᎠᏎᏃ ᎥᏝ ᏳᎾᏛᎦᏁ ᎧᏁᎬ ᎠᎩᏬᏁᏗᏍᎩ.\n“ᎨᏍᏗ ᎩᎶ ᏱᎪᎵᎦ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ, ᎤᏓᏅᏖᏙᏗ ᎤᏛᎸᎮ.\nᎾᏍᎩᏃ ᎿᏉ ᎤᎧᎵᏨ ᎠᎹᏳᎶᏗ ᎤᏂᎾᏏᏃᎴᎢ, ᎠᎴ ᎤᎾᏅᏁᎢ, ᎠᏃᏍᏛᏃ ᏗᏖᎵᏙ ᏚᏂᎸᏔᏁᎢ, ᎤᏂᏲᏃ ᏚᎾᏓᎢᏅᏎᎢ.\nᏃᎴ ᏍᏉ ᏕᎦᏅᏙᎬ.\nᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎤᏣᏘ ᎠᎩᎭ ᎦᎶᏁᏛ ᎠᎩᏁᎸᎢ, ᎾᏍᎩ ᎬᏁᏤᎲ ᏥᏚᏳᎪᏗ ᎢᏣᏛᏁᏗᏱ;\nᏔᎵ ᎢᏳᏩᎬᏘ ᏂᎬᎴᎢ ᎠᏰᎸᎢ ᎤᏬᏘᏒ ᏥᏍᏕᏥ.\nᎾᏍᎩᏃ ᎿᏉ ᏗᎴᎯᏐᏗ ᏂᎦᎵᏍᏔᏂᎸᎭ, ᎦᎪ ᎤᏓᎵᎢ ᎨᏎᏍᏗ ᎾᏍᎩ, ᎦᎵᏉ-ᎩᏰᏃ ᎢᏯᏂᏛ ᎤᎾᏓᏴᏛ ᎢᎩ.\nᏥᏌ ᎤᏁᏨᎩ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏋᏒᏉ ᎾᏍᏉ ᏱᎦᏓᏃᎮᎭ, ᎠᏎ ᏥᏃᎮᏍᎬ ᎤᏙᎯᏳᎭ; ᏥᎦᏔᎭᏰᏃ ᏗᏆᏓᎴᏅᎢ ᎠᎴ ᏫᏥᎦᏛᎢ. ᏂᎯᏍᎩᏂ ᎥᏝ ᏱᏥᎦᏔᎭ ᏗᏆᏓᎴᏅᎢ ᎠᎴ ᏫᏥᎦᏛᎢ.\nᎿᏉᏃ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ [ᏥᏌ] ᎬᏩᎷᏤᎸᎩ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎦᏙᏃ ᎠᏴ ᎠᏂᏆᎵᏏᏃ ᏯᏃ ᎠᎹᏟ ᏦᏨᏍᎦ, ᏂᎯᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᎹᏟ ᎾᏅᏍᎬᎾ ᏥᎩ?\nᏎᎦᏨ ᎤᏓᏅᏖᎴ ᎠᏎ ᎤᏬᏂᎯᏍᏗ ᎨᏎᏍᏗ.\nᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒᎩ ᎠᏙᎴᎰ ᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᏓᏥᏍᏚᎢᏏ ᏥᎣᎵ ᏕᎦᏟᎶᏍᏗᏍᎬᎢ, ᏓᏥᏁᎢᏍᏔᏂ ᎤᏕᎵᏛ ᎠᏍᏆᏂᎪᏛ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ.\nᎤᎾᏂᎩᏐᎾ ᏴᏫ, ᏫᎵᎻ ᎤᏟᏃᎮᏔᏁᎢ ᏌᎳᏓ.\nᎤᏗᎴᎩ ᎢᎦ ᎨᏎᎢ.\n“ᎤᏙᎯᏳᏛ,” ᎤᏛᏅ Michael, “ᎡᎵᏊ ᏱᏣᎷᎦ ᎥᏍᎩ ᏱᏣᏛᏁᎸ.”\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏦᏕᏆᏠᏥ ᎣᏍᏓ ᎤᏂᏰᎸᎮ ᏧᎾᏁᏍᎩᎸᏗ.\nᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏥᏌ, ᎠᎴ ᏚᏌᎳᏓᏅᎩ ᏗᎦᏙᎵ ᎦᎸᎳᏗ ᏫᏚᎧᎿᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎡᏙᏓ, ᎿᏉ ᎤᏍᏆᎸᎲ; ᎯᎸᏉᏓ ᏤᏥ, ᏤᏥ ᎾᏍᏉ ᏂᎯ ᏣᎸᏉᏙᏗᏱ.\nᎩᎳᏈᏴ ᎤᏓᏅᏖᎴ.\nᎤᏂᎩᏎ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ.\nᎣᏂᏃ ᎢᏴᏛ ᎤᏓᎵᎢ ᎵᏏ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᏗᏍᎦᎳᏁ ᎯᏍᎩ ᎢᏯᏅᏙ, ᎯᎠ ᏄᏪᏎᎢ,\nᎯᏃᎮᏍᎩᏰᏃ ᎨᏎᏍᏗ ᎾᏂᎥ ᏴᏫ ᎠᏁᎲᎢ ᏄᏍᏛ ᏣᏙᎲᎢ ᎠᎴ ᏣᏛᎦᏅᎢ.\nᎠᏲᎵᏃ ᏭᏯᏅᎲ, ᎠᏂᏅ ᎠᏰᎵ ᎤᏪᎧᏁᎢ; ᎤᏄᎶᎸᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ,\nᎦᏳᎳ ᎯᎠ ᎢᏳᏪᏛ ᏥᎩ, ᎠᏥᎸᎨᎳᏍᏙᏗ ᎠᎴ ᎠᎵᏍᎪᎸᏙᏗ, ᎠᎴ ᏧᏃᏍᏗ ᎠᏥᎸ-ᏗᎨᎳᏍᏙᏗ, ᎠᎴ ᏗᎵᏍᎪᎸᏙᏗ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ, ᎥᏝ ᏰᎵ ᏱᏗᏣᏰᎸᏁᎢ, ᎥᏝ ᎠᎴ ᎣᏏᏳ ᏱᏗᏣᏰᎸᏁᎢ; ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎵᏍᎪᎸᏔᏅᎯ ᏥᎨᏎᎢ;\nᎠᏁᎵᏍᎬ ᏅᎩᏍᏆ ᎢᎦ, ᏫᏥ ᎢᎦ ᎨᏒ ᏧᏲᏨ ᏃᎴ ᎣᏍᏓ ᎢᏧᏅᏁᏗ.\nᏥᏌᏃ ᎤᎴᏫᏍᏔᏅ ᎤᏁᏤ ᎠᎦᏘᏃᎮᏗᏱ; ᎿᏉᏃ ᎾᎥ ᎤᎷᏨ ᎤᏛᏛᏁᎢ,\nᏫᏚᎾᏠᏨᏃ ᏫᏚᏂᎾᏌᏁᏒᎩ ᏤᏌᏂ ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᎾᏓᏅᏟ, ᎦᏚᎲ ᎨᏥᎦᏘᏗᏍᏗ ᏫᏚᎾᏘᏃᎮᎸᎩ, ᎤᏁᎷᎬᎩ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎯᎠ ᎡᎶᎯ ᏧᏂᎷᏆᏗᏅᏛ, ᎾᏍᏉ ᎠᏂ ᎢᎤᏂᎷᏨ;\n“ᏄᎦᏌᏍᏛ ᏓᎬᏔᏂ, ᏍᎩᎾᎾ ᏰᏃ ᎤᎶᏒᏍᏗ ᎤᎦᏌᏍᏗ.\nᏌᏩᏂ ᏈᏓ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎥᏝ ᏗᏆᎳᏏᏕᏂᏉ ᏧᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᏗᏉᏰᏂ ᎠᎴ ᏥᏍᎪᎵ.\nᎦᏅᎯᏓ ᎦᏍᎩᎶᎩ ᎦᏅᎬ ᏤᎩᏏᏂ, ᎦᏬᏂᏍᎬ ᏃᎴ ᎨᏂᏗ ᏅᏬᏘ ᎤᏓᏑᏱ ᎠᏍᏆᏄᏛᏍᎬ ᎤᏓᏁᎪᏳᎲᏍᎬ ᎠᎰᎵ ᎠᏍᏚᎩᏍᎬ, ᎠᏦᎳᏍᏙᏗ ᎾᎥᏂᎨ.\nᎢᏳᏃ ᏍᎩᎨᏳᎢᏳ ᎨᏎᏍᏗ, ᎢᏥᏍᏆᏂᎪᏓ ᎠᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ;\nᎢᏳᏃ ᏂᎯ ᏍᎩᏯᎡᏍᏗ, ᎠᎴ ᎠᎩᏁᏨ ᎢᏥᏯᎡᏍᏗ, ᏂᎦᎥ ᎢᏣᏚᎵᏍᎬ ᎢᏥᏔᏲᎯᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᏎ ᎢᏰᏣᏛᏁᏗ ᎨᏎᏍᏗ.\nᎤᏁᎳᏅᎯ, ᎤᎾᏄᎪᏫᏒ ᎤᏪᏥ ᏥᏌ, ᏂᎯ ᎢᏤᎲ ᎢᎬᏱ ᎤᏅᏒᎩ ᎣᏍᏛ ᎢᏣᏛᏁᏗᏱ ᏕᏥᎦᏔᎲᏍᎬ ᏗᏥᏲᎯᏍᏗᏱ ᏂᏨᏁᎲ ᏂᏥᎥ ᎢᏥᏍᎦᏅᏨᎢ.\nᏍᎩᏃ ᏂᎨᎵᏍᎬ, ᎤᏛᏅ ᎠᏌᎻᏓ.\nᏂᎯᏃ ᎬᏍᏕᎵᏍᎬ, ᏰᎵᏉ ᎠᏋᏌ ᎨᎥᎢ ᏱᏥᏌᎴᏓᎦ ᎨᎵᏍᎬ.\nᎾᏍᎩ Ꮎ ᎠᎦᏘᎾᏫᏛᎲᎩ ᏅᏩᏙᎯᏯᏛ ᏗᎨᏒ ᏩᎦᏘᏃᎸᎩ, ᎠᎴ ᎤᏛᎦᏅᎩ ᎠᏂᏬᏂᏍᎬ ᎢᎦᏪᏍᏗ ᏂᎨᏒᎾ, ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᏴᏫ ᎾᏍᎩ ᎢᏳᏪᏍᏗᏱ.\n[ᏴᏫᏰᏃ ᎤᏪᏥ ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᏣᏂᎩᏍᎪ ᎢᎸᎯᏢ ᏤᎪᎢ, ᎾᏍᎩ ᏥᎬᏕᎪ ᎦᏁᎸᎢ, ᎠᎴ ᎠᏂᎦᏘᏯ ᏥᏂᏕᎬᏁᎰ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏧᏂᎸᏫᏍᏓᏁᏗ ᏥᏓᏁᎰᎢ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ ᏥᎧᏁᏤᎰ ᎤᏯᏫᏗᏱ.\nᎠᎴ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᎠᎦᏯᎷᏗ ᏥᏭᎾᏓᎢᏅᏎ ᎠᎺᏉᎯ, ᎠᎴ ᏥᏚᏂᏂᏴᎮ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ;\nᎠᏴ ᏉᎳ ᎠᏆᏓᏲᎵᏍᏗ ᎨᏒ ᎠᏋᏒ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ ᎠᏉᏪᎳᏅᎯ.\nᎤᎾᏓᏓᏍᎬ ᎠᏂᏩᏥᏂ ᎠᎳᏗ ᏚᎨᏓᎵᏴ ᎢᏗᎬᏓ, ᏧᏂᏲᎰᏎᎸ ᎠᏂᏴᏫ ᏧᎾᏙᎢᏓ.\nᏗᏓᎴᏂᏍᎬ ᎧᏃᎮᏛ ᎡᎮᎢ, ᎠᎴ ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎢᏧᎳᎭ ᎠᏁᎮᎢ, ᎠᎴ ᎾᏍᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎨᏎᎢ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᎠᎾᏍᎩᏓᏒᎥᏍᎩ ᎦᏓᎭ ᎾᏅᏁᎭ ᎤᏂᏇᏓᎸᎢ, ᏗᏂᏍᎦᎩ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᏗᎬᏩᏂᏐᏢᏗ ᎨᏥᎸᏉᏗ.\nᎬᏂᏳᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᏦᎢ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎠᏂᏙᎾᎥ ᎠᏓᏁᎸ ᎾᎿ ᎠᏉᎸᎢ, ᎬᎩᏯᏅᎰᎸᎯ ᏏᏌᎵᏱ ᏅᏓᎨᏥᏅᏒᎯ.\nᎤᎬᏫᏳᎯ ᎠᏍᏕᎵᏍᎩ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏣᎬᏫᏳᎯ, ᎮᎾ ᎠᏏᏉ ᎾᏲᎱᏍᎬᎾ ᎠᏇᏥ.\nᎾᏍᎩ ᏌᏉ ᏕᏣᏓᏅᏛᎢ ᎠᎴ ᏌᏉ ᎢᏥᎰᎵ ᎢᏨᏙᏗᏱ ᎡᏥᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎾᏍᎩ Ꮎ ᎤᏙᏓ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ.\nᏁᏆᎸ ᎡᎶ, ᎤᏐᏱᏉ ᎾᎥ ᎠᏁᎯ ᎠᏂᏳᏩᏁᎦ. ᎾᎥᏂ ᏚᎨᏓᎵᏴ, ᏚᏅᏓᏒ ᏃᎴ ᏕᎨᏴᎢ , ᏃᎴ ᎤᏅᏌ ᎱᏂᎪᎲ ᎠᏂᎦᏔ, ᏄᏍᏛ ᎡᎶ, ᎤᏅᏌ ᎠᏁᎵᏍᎬ.\nᎤᏁᏅᏎᏃ ᎤᎾᎦᏔᏅᏎ ᏄᎵᏍᏔᏅᎢ; ᏥᏌᏃ ᏭᏂᎷᏤᎴᎢ, ᎠᎴ ᎤᏂᏩᏛᎮ ᎠᏍᎦᏯ, ᎾᏍᎩ ᎬᏩᏄᎯᏨᎯ ᎠᏂᏍᎩᎾ, ᎤᏬᎴ ᏥᏌ ᏚᎳᏍᎬᎢ, ᏚᏄᏩᎡᎢ, ᎠᎴ ᎤᏓᏅᏘᏌᏅᎯ ᎨᏎᎢ; ᎤᏂᏍᎦᎴᏃ.\nᏥᏌᏃ ᎾᏍᎩ ᏚᎧᎿᏅ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏴᏫ ᎨᏒ ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᎵᏍᏓ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎨᏒ ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏳᎵᏍᏙᏗᏉ.\nᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏪᎿᎢ ᎡᎮᎢ, ᎩᎦᎨ ᎠᎴ ᎤᏏᏙᎵ ᏙᎴᏛ ᏗᏄᏬ ᏓᏄᏬᏍᎨᎢ, ᎠᎴ ᏂᏓᏙᏓᏈᏒ ᎣᏍᏛ ᏓᎵᏍᏓᏴᎲᏍᎨᎢ.\nᏲᎾ ᎤᏤᏍᏙ ᎤᏩᏗ ᏭᏌᏕ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏅᎬᏪᏎᎸᎩ; ᎥᏝ ᎠᏏ ᎯᏍᎩᏍᎪᎯ ᎢᏣᏕᏘᏴᏛ ᏱᎩ; ᏥᏌᏃ ᎯᎪᎥᎯ ᎢᎩ ᎡᏆᎭᎻ?\nᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏰᏥᏄᎪᏫᏏ; ᎥᎥ, ᏛᏍᏆᎸᎯ, ᎩᎶ ᎢᏥᎯᎮᏍᏗ, ᎤᏁᎳᏅᎯ ᏂᏥᏯᏛᏁᎭ, ᎡᎵᏍᎨᏍᏗ.\nᎠᏎᏃ, ᏍᎩᏴ ᏥᎨᏒ ᏰᎵ ᎣᎩᏂᎵᎪᏩᏕᎬ, ᎠᏴ Crockett ᏱᎨᏎ, ᎣᏏᏉ ᏱᎨᏎ.\nᏏᏊᎴ ᏦᎢᏁ ᏃᏊ ᎥᎣᎦᏛᎦᏅ ᏃᏊᏛ ᎤᏙᎯᏳ ᎬᏂ ᎨᏒ ᎡᏍᎦ ᏣᎢᏒ ᎠᎴ ᏂᎦᏪᏏᏒ ᎠᏍᏓᏲᏍᎬ.\nᎤᎾᏓᏓᏍᎩᏌᎲ ᎠᏂᎦᏲᏟ ᏴᏫ ᏓᎾᏟᏃᎮᏍᎬ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᏍᎩᎪᏩᏛ ᏅᏩᎦᏍᏙᏓ ᎰᎯᏳᎲᏍᎦ; ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎬᎩᎪᎲᎯ ᏂᎨᏒᎾ ᎠᏎᏃ ᏥᎬᏉᎯᏳᎲᏍᎪᎢ.\nᎠᎴ ᎢᏨᏯᎵᏍᎪᎸᏓᏁᎭ ᎢᏥᎬᏫᏳᎯ ᎢᏣᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᎡᏙᏓ ᎠᏴ ᏣᏆᎵᏍᎪᎸᏓᏁᎸ;\nᎾᏍᎩ ᎯᎠ ᏔᎵᏁ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸ ᏥᏌ ᎨᎵᎵ ᎤᎷᏦᏅᎯ, ᏧᏗᏱ ᏅᏓᏳᎶᏒᎯ.\nᎦᎵᏉᏗᏃ [ᎦᏚ] ᏅᎩ ᎢᏯᎦᏴᎵ ᏕᏥᏁᎸ, ᎢᎳᎪ ᎢᏯᎧᎵᎢ ᏔᎷᏣ ᎤᎵᎬᎭᎷᏴᎯ ᎢᏧᏖᏎᎢ? ᎦᎵᏉᎩ ᎤᎾᏛᏁᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏥᎯᎮᏍᏗ ᏗᏥᏰᎸ ᏕᏣᏚᏓᏕᏫᏒ ᎠᏂ ᎡᎶᎯ; ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎦᏓᎭ ᎨᏒᎢ, ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏲ ᎠᏚᎸᏅᏗ ᎨᏒᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎠᏓᏙᎵᏍᏓᏁᏗ ᏥᎩ;\nᎠᎴ ᏫᏓᏆᎧᎾᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏁᎬ ᎤᎶᎩᎸᎩ, ᎠᎴ ᎤᎶᎩᎸ ᎩᎶ ᎤᏬᎸᎩ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩᏯᎢ, ᎤᎵᏍᏚᎸᎩ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᎵᏍᏚᎶ, ᎠᎴ ᎪᏍᏓᏯ ᎠᏍᎫᏕᏍᏗ ᎦᏁᎲᎩ.\nᎾᏍᎩ ᎬᎩᏃᎮᎮᎸᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎠᏂᏧᏏ ᏧᎾᏤᎵᎦ, ᏥᎷᏏᎵᎻ ᏥᏫᎨᏙᎲᎩ, ᎠᏂᏔᏲᎯᎲᎩ ᎤᏍᎦᏅᏨ ᏧᏚᎪᏙᏗᏱ.\nᏣᎵ ᎧᏃᎮᏍᎬ, ᎠᏍᏆᏂᎪᎯᏍᏗ ᎦᎶᏍᎨ, ᏳᎵᏍᏆᏙᏅ ᎠᏤᎯ ᎤᎾᎡ ᎠᏑᎶ.\nᎾᏍᎩᏃ ᏄᏪᏒ ᏚᎾᏄᎪᏫᏎᎴ ᏧᏬᏰᏂ ᎠᎴ ᏧᎳᏏᏕᏂ.\nᎠᎺᏉᎯᏃ ᏚᏲᏒᎩ ᏧᏂᏲᎱᏒᎯ ᎾᎿ ᏄᎾᏛᏅᎢ; ᎠᏲᎱᎯᏍᏗᏃ ᎠᎴ ᏨᏍᎩᏃ ᏚᏂᏲᏒ ᏧᏂᏲᎱᏒᎯ ᎾᎿ ᎠᏁᎲᎢ; ᎠᎴ ᏕᎨᎫᎪᏓᏁᎸᎩ ᏂᎦᏗᏳ ᎠᏂᏏᏴᏫᎭ ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ.\nᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎢᏳᏄᎪᏨᎩ ᎠᏍᏓᏯ ᎤᏪᎷᎬᎩ ᎯᎠ ᏂᎦᏪᏎᎲᎩ ᎤᎶᎩᎸ ᎤᏬᎵ, ᎠᏍᎫᏕᏍᏗ ᎲᏓ ᎠᎴ ᎯᏍᎫᏛᎦ; ᏣᏍᎫᏕᏍᏗ ᎲᏓ ᎠᎴ ᎯᏍᎫᏛᎦ; ᏣᏍᎫᏕᏍᏗᏱᏰᏃ ᎨᏒ ᎿᏉ ᎠᏍᏆᎸᎯᎦ; ᎡᎶᎯᏰᏃ ᎠᏍᎫᏕᏍᏗᏱ ᎨᏒ ᎤᎦᏛᎾᏨ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᎦᏔᎭᏉ ᎤᏓᏅᏍᏙᏒᎯ ᎨᏒ ᎩᎶ ᎠᏧᏏ ᎤᏁᏓᏍᏗᏱ ᎠᎴ ᎤᏩᏛᏗᏱ ᎩᎶ ᏅᏩᏓᎴ ᏴᏫ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎾᏋᏁᎸ ᎠᏴᎩᎶ ᏴᏫ ᎦᏓᎭ ᎠᎴ ᎾᏥᏅᎦᎸᎥᎾ ᏥᏲᏎᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎤᏂᏲᎰᏎᎸ ᏓᏂᏕᎪ ᏧᏂᏲᎰᏒ ᎭᎾᏉ ᏚᏂᏅᏨ, ᏓᎾᎵᏓᏍᎩᏍᎪ ᏧᏂᎩᏍᏔᏂᏕᏅ ᎤᏂᏍᎦᎣᏅ.\nᏃᏈᏏᏃ ᎦᎸᎶᎢ ᎠᏂᎧᎸ ᎤᏂᏅᎪᎣᏒᎩ ᎠᎴ ᎡᎶᎯ ᎤᏂᎳᎨᏯᏛᏨᎩ, ᎾᏍᎩᏯ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏨᏂᏅᎪᎠᏍᎪ ᎤᎾᏓᏙᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᎤᎾᏓᏔᏅᎯ, ᎾᎯᏳ ᎤᏣᏘ ᎦᏃᎸᎥᏍᎬ ᏧᏖᎸᎲᏍᎪᎢ;\nᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᎠᎬᏱ ᏯᎧᎸᎬᎾ, ᎤᏰᏤ ᏫᎵᎻ ᏃᎴ ᎤᏛᎦᏍᏔᏁᎢ.\nᎤᏔᎷᎩᏍᎩ ᎢᏳᏍᏗ ᎨᏎᎢ ᎠᎵᏍᏓᏴᏗ ᏳᏫᎦᏠᏍᎬᎾ ᏗᎦᎴᏂ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏛᏁᎸᎩ ᏔᎵ ᏧᏕᏘᏴᏛ ᎢᎪᎯᏛ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᏂᎦᏛ ᎡᏏᏱ ᎠᏁᎯ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ ᎤᎾᏛᎦᏅᎩ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᏥᏌ ᎤᏤᎵᎦ.\nᎿᏉᏃ ᎤᏃᎵᏨᎩ ᏄᏂᏁᏤᎲᎾ ᎨᏒ ᎤᏁᏯᏙᎢᏍᏗᏱ ᎦᏚ ᎠᎪᏙᏗ, ᏓᎾᏕᏲᎲᏍᎬᏍᎩᏂ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ.\nᎤᏦᏱᎴ.\nᎠᎬᏱ ᎤᏓᏏᏁᏛ ᎣᏣᎵᏍᏔᏴᎲᏍᎬ, ᎠᏉᏢ ᎤᎩᎸᎭᏂᎸ, ᎤᏌᏃᎲ ᎤᏓᏓᏍᎬ ᎢᏧᎳ ᎢᏣ ᏙᎩᏃᏢ.\n(ᎾᏍᎩᏰᏃ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎠᏁᎲ ᏤᎮᎢ, ᎠᎪᏩᏘᏍᎬ ᎠᎴ ᎠᏛᎩᏍᎬ [ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ] ᎤᏓᏅᏘ ᎤᏓᏅᏙ ᏂᏚᎩᏨᏂᏒ ᎤᏕᏯᏙᏗ ᎤᏓᏅᏖ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᏚᏳᎪᏛᎾ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ,)\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏓᎦᏌᏯᏍᏕᏍᏗ ᎢᏨᏒ, ᎠᎴ ᏕᏥᎦᏌᏯᏍᏕᏍᏗ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎨᏒᎢ, ᎾᏍᎩ ᏗᏥᎦᏘᏯ ᎢᏨᏁᎸᎯ ᏥᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᏗᏤᎳᏍᏗᏱ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎤᏩᏒ ᎤᎩᎬ ᏧᎫᏴᏔᏅᎯ ᏥᎩ.\nᎢᏳᏍᏗᏉ ᎬᏍᏕᎸᏗ ᏱᎩ.\nᎢᏣᏛᎦᏅᎯ ᎢᎩ ᎯᎠ ᏥᏂᎨᏥᏪᏎᎴ ᎡᏘ ᏣᏁᎮᎢ; ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ.\nᎣᏍᏛᏍᎩᏂ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ ᎠᎴ ᎢᏣᏓᏁᏗᏱ ᏗᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎣᏏᏳ ᎤᏰᎸᎭ ᎤᏁᎳᏅᎯ.\nᏧᏓᎴᏅᎲᏃ ᏦᏣᎵᏍᎪᎸᏓᏁᎸ ᏲᎾ ᎤᏤᏍᏙ ᎫᎫ ᎬᏗ ᎤᏛᎯᏍᏙᏗ ᏏᏆ.\nᎩᎳ ᎠᎬᏱ ᎤᏂᎬ ᏍᎩᏲᏍᏓ.\n“ᎭᏩ,” ᎤᏛᏁ ᏩᎭᏯ\nᏥᏌᏃ ᎯᎠ ᏄᏪᎭᎴ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ; ᎮᎾ, ᎠᎴ ᏄᏍᏛ ᏦᎯᏳᏅ ᎾᏍᎩ ᏫᏂᏣᎵᏍᏓᏏ. ᎤᏅᏏᏓᏍᏗᏃ ᎾᎯᏳᏉ ᎤᏗᏩᏎᎢ.\nᎠᏎᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏥᎭ, ᏗᏨᏲᎯᏎᏗᏱ ᎠᏏᏴᏫ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᎵᏍᎬ ᎢᏳᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏚᎵᏍᎪ ᏗᏨᏲᏎᏗᏱ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ?\nᎤᏂᏴᎲᏃ ᏗᏓᏍᏚᏗᏱ ᎤᏴᏔᏁᎢ, ᎠᎴ ᏚᏲᎯᏎᎴ ᏅᎩ ᎢᏗᏂᎢᏛ ᏅᎩ ᏄᎾᏓᏡᎬ ᎠᏂᏯᏫᏍᎩ ᎬᏩᎦᏘᏗᏍᎩ, ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᎶᏐᏅᎯ ᏴᏫ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏎᎢ.\nᎢᏳᏃ ᎡᎶᎯ ᎢᏥᏍᎦᎩᏳ ᏱᎩ, ᎢᏥᎦᏔᎭ ᎠᏴ ᎢᎬᏱ ᎠᎩᏍᎦᎩᏳ ᏄᎵᏍᏔᏅ ᏂᎯ ᎣᏂ.\nᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏝᏍᎪ ᏯᏛᎩᎭ ᏂᎦᎥ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᎠᏂᎦᏔᎯ ᎨᏣᏡᏗᏍᎬᎢ\nᏂᎦᏓ ᎠᏲᏣᏃᎲᏍᎬ.\nᎤᏓᎴᏨ ᎠᏤᎯ ᎠᏣᏗ, ᏅᎩ ᏕᎦᏅᏌᏛ ᏕᎬᏗᏍᎨ ᎡᏙᎲ ᎠᎼ ᎡᎳᏗ.\nᎡᎳᏗ ᏄᏩᎾᏗᏒ ᎠᏍᎪᎵ ᎩᏟ, ᎭᎴᏉ ᎦᏙ ᏩᏒᏂᎲ, ᎯᎸᎢᏴ ᎠᏙᎯ ᎢᏣ ᏭᎾᏌᎾᎩᏍᎬ ᎧᏴᏐᎵ.\nᎾᎯᏳ ᏧᏤᎵ ᎤᎾᏓᏅᏘ ᎬᏩᎸᏉᏙᏗᏱ ᎤᎬᏩᎵ ᎦᎷᏨᎭ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ ᎾᏂᎥ ᎾᏍᎩ Ꮎ ᎬᏬᎯᏳᎲᏍᎩ ᎾᎯᏳ ᎢᎦ ᎨᏎᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎪᎯᏳᏅᎯ ᎨᏒ ᎣᎩᏃᎮᎸ ᎢᏤᎲᎢ.\n“ᎣᏏᏗ ᎦᏣᎪᏩᏛᏗ ᏱᎨᏒᎾ ᏥᎩ ᎠᏯ ᏥᎪᏩᏗᏍᎬ,” ᎤᏛᏁ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎥᏝ ᎾᏂᎥ ᎯᎠ ᏥᏂᏥ Ꮻ ᏱᏙᎬᎾᏓᏂᎸᎩ, ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏅᏒ.\n“ᏃᏉ ᎩᏅᎪᎢ!” ᎤᏪᎷᏁ ᎪᏱᏁᎢ.\nᎠᏎᏃ ᎦᏣᏄᎵ ᏫᎨᏰᎢ ᎠᎹ ᎤᏍᏗ ᎠᏣᏗ ᎭᏂᏣ ᏭᏓᏬᏍᏗ.\n“ᎣᏍᏓ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ.”\nᏎᎦ ᎠᏆᏓᏅᏖᎸ, ᏃᏉ ᏩᏇᎵᏒ, ᎨᏍᏗ ᏫᏥᎢᎦ ᎠᏆᏓᏅᏖᏗ ᏱᎩ.\nᏧᎵᏨᏯᏍᏗ ᎤᏟᎳ ᏓᏘᏁᎬ ᏧᏤᎵ ᎠᏂᏴᏫ.\nᎿᏉᏃ ᏚᏅᏍᏓᏕᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᎾᏍᎩ ᎤᏩᏒ ᎦᎶᏁᏛ ᎨᏒᎢ.\nᎥᏝ ᎠᎴ ᎤᏲ ᏳᏂᏰᎸᏅ ᏚᎾᏓᎸᎢ, ᎠᎴ ᏚᎾᏙᏅᎸᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏚᎾᏂᏏᏂᏙᎸᎢ, ᎠᎴ ᎤᏂᏃᏍᎩᏒᎢ.\nᏉᎳᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏁᎳᏅᎯ ᏓᏨᏂᎵ ᏂᎯ, ᎠᏐᏱ ᎤᏁᎬᎢᎬᏁᎸᎯ; ᏦᎳᏰᏃ ᎨᎵ ᏗᏍᏇᎪᏓᏁᏗᏱ ᎾᏍᎩᏬ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬᎢ? ᏥᎪᏃ ᎢᎯᏁᎦ ᎥᏋᏂᏍᏗᏱ ᏗᎧᎿᏩᏛᏍᏗ ᏙᎯᎦᏘᎴᎦ?\nᎤᏥᏍᏈᏍᏗ ᎤᏁᏡᎬ ᎠᏰᏟ ᎠᎩᏰᏨ ᏑᎾᎴᏱ. ᎤᏂᏍᏆᎾᎪᏒ ᏯᏖᏃᎢ ᏥᎬᎢ.\nᎬᏂᏳᏉ ᏥᎷᏏᎵᎻ ᏫᏗᎦᏘ, ᎠᎴ ᏴᏫ ᎤᏪᏥ ᏙᏓᏰᏥᏲᏏ ᏙᏓᎨᏦᏲᎯᏎᎵ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎾᏍᎩᏃ ᏙᏛᏄᎪᎳᏂ ᎤᏲᎱᎯᏍᏗᏱ,\nᎠᏰᎵᏃ ᏄᏮᏔᏁ ᎩᎶ ᎢᏳᏍᏗ ᎠᏥᎸ-ᎨᎶᎯ ᎾᎿ ᏂᎦᏅᏅ ᏗᎤᎶᏎᎢ; ᎤᎪᎲᏃ ᎠᏂᏗᏢᏉᏉ ᏄᎶᏎᎢ.\nᎤᎶᎩᎸᏃ ᎤᏬᎵ ᎠᏍᎫᏕᏍᏗ ᎤᏤᎵ ᎤᏮᏔᏅᎩ; ᎠᎴ ᎡᎶᎯ ᎤᏍᎫᏕᏐᏅᎩ.\nᎤᏓᎨᏳᎯᏃ ᏂᎨᏒᎾ, ᎥᏝ ᏯᎦᏔᎰ ᎤᏁᎳᏅᎯ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᏓᎨᏳᏗ ᎨᏒ ᏚᏙᎥ.\nᎤᏙᎯᏳ ᎣᏍᏓ ᏏᏆ!” \nᎡᎳᏗ ᎢᎦᏘ ᎠᏍᎦᏯ, ᎨᏍᏗ ᎣᏍᏓ ᎦᏬᏂᏍᎩᏱᎩ ᏣᎳᎩ, ᏴᎬᏁᎵᏓ ᎤᏬᏂᏍᏗ ᎤᏂᏣᏛ ᏃᎴ ᎨᏍᏗ ᎠᎪᎵᏰᏍᎩᏱᎩ ᏣᎳᎩ ᎪᏪᎳᏅ.\nᎠᎦᏔᎲ Crockett ᏄᏓᎴᏨ ᏓᎾᎧᎾᏂᏍᎬ ᎤᏂᏣᏘ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎦᏳᏩᏛᏁᏗ ᏱᎨᏎ ᎣᏍᏓ ᎢᏳᏩᏁᏗ, ᏙᏱ ᏰᏙᎭ ᎤᎵᏍᏇᏚᏮ ᎡᎳᏗ ᏱᏄᏩᏁᎸ, ᏳᎦᎵᎢᏍᏔᎾ ᎦᏴᏐᎵ.\nᎠᎴ ᎬᏂᏲᎱᏍᎩ ᎦᏥᏯᏕᏯᏙᏗᏍᎬᎩ ᎯᎠ ᎦᏅᏅ ᏗᏂᎧᎿᏩᏕᎩ, ᏕᎦᏥᏯᎸᎢᎲᎩ ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏕᎦᏥᏴᏗᏍᎬᎩ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ.\nᎠᎴ ᏅᏩᏓᎴ ᏐᏈᎵ ᎤᏄᎪᏨᎩ, ᎠᎩᎦᎨᎢ; ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᎾᎿ ᎤᎩᎵ ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᎤᏄᎪᏫᏍᏗᏱ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏅᏒᏉ ᏧᎾᏓᎯᏍᏗᏱ; ᎠᎴ ᎡᏆ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎠᏥᏕᎸᎩ.\nᎩᏓᏟᏅᏯ ᎤᏓᎵ ᎯᏅᏁᎸᎲ, ᎠᏆᏛᏅ.\nᏓᏏᎳᏛ ᏫᏗᎬᏅ ᎨᏎᎢ, ᎠᎳᏂ.\nᎿᏉᏃ ᎬᏩᎷᏤᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᏥ, ᎠᎴ ᏙᏱᏗᏢ ᏓᏂᏙᎨ, ᎤᎾᏓᏅᏎ ᏫᎬᏩᏯᏂᏍᎨᎢ.\nᎠᏂᏧᏏᏃ ᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎬᏂᎨᏒ ᏅᏓᏍᎩᏴᏁᎵ, ᎾᏍᎩ ᏥᏄᏍᏗ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ?\nᎦᏙᏃ ᎤᏰᎸᏗ ᎥᎬᏅᎢ, ᎠᏎᏃ? \nᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏂᎥ ᏴᏫ ᎠᎾᎴᏅᏗᏍᎪ ᎠᏂᏝᎲᏍᎪ ᎣᏌᏂ ᎩᎦᎨᎠᏗᏔᏍᏗ, ᎿᏉᏃ ᎤᏣᏘ ᎤᎾᏗᏔᎲᎯ ᏥᎨᏐᎢ ᎩᎳ ᎤᏐᏅ ᎠᏂᏝᎲᏍᎪᎢ; ᏂᎯᏍᎩᏂ ᏣᏍᏆᏂᎪᏕ ᎣᏍᏛ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎪᎯ ᎢᏯᏍᏗ.\n“ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ “ᎠᎦᏍᎦᏃᎸᏍᎦᏈ? \nᎬᏂᎨᏒ ᎾᏅᏁᎭ ᎠᏂᎦᏔᎯᏳ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎠᏎᏃ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎢᎬᏩᏓᏱᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏂᏂᏆᏘᏍᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏃᎯᏳᎯᏍᏛ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎠᎴ ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎨᏥᏐᏅᎢᏍᏔᏅᎯ.\nᎾᎯᏳᏉᏃ ᎠᎵᏰᎢᎵᏒ ᏚᎾᎴᏁᎢ, ᎠᎴ ᏥᎷᏏᎵᎻ ᏔᎵᏁ ᏫᎤᏂᎶᏎᎢ, ᎠᎴ ᏚᏂᏩᏛᎮ ᏓᏂᎳᏫᎡ ᏌᏚ ᎢᏯᏂᏛ, ᎠᎴ ᎾᏍᎩ ᎬᏩᎾᏓᏡᏩᏍᏗᏕᎩ,\nᎤᏃᎮᎸ ᎠᎹᏰᎵ ᎢᏣ ᏥᏓᏄᎪᏗᏍᎨ ᎤᎵᏘᎾᎥ, ᎤᎾᏓᏩᏛᎮ Spiddal, Galway ᏥᏤᎢ.\nᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ ᎤᎵᏁᏨ ᏗᎧᎿᏩᏛᏍᏗ?\nᏦᎳᏂ ᎡᎳᏗᏣ, ᎧᏅᏑᎸ ᎦᎸᎳᏗᏣ ᎪᎯᏓ ᏫᏓᎧᏁᎢ.\nᎤᎾᏰᎯᏍᏗᏳ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᏧᏬᏰᏂ ᏫᏗᎩᏅᎢᏍᏗᏱ.\nVII. ᎤᏲ ᎧᏃᎮᏓ  \nᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎬᏩᎫᏗᏗᏎᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏥᏯᏫᏍᎨᏍᏗ ᎤᎵᏠᏯᏍᏕᏍᏗ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ;\nᎯᎪᎯᏗ ᏙᏱᏨ ᏭᎷᏣ ... ᎠᎵᎬᏓᏃᏍᏙᏗ ᎤᏯᏤᎢ ᏃᎴ ᎢᎾ ᎢᏗᎦᏘ ᏚᎳᏑᏞ.\n”ᎡᎵᏍᏗ ᎣᏏ ᎠᎩᏰᎸ.” \nᎨᏍᏗ ᎣᏍᏓ ᎠᏓᏅᏘ ᎭᏂᏣ ᏫᎦᎦᎾᏅᎪᎥᏍᏗ ᏱᎨᏎ.\nᎠᏏᏴᏫ ᎾᏍᎩ Ꮎ ᎠᏂᏔᎵ ᏣᏂ ᎤᎾᏛᎦᏁᎸᎯ, ᎠᎴ [ᏥᏌ] ᎤᏂᏍᏓᏩᏛᏛ, ᎾᏍᎩ ᎡᏂᏗ ᎨᏒᎩ, ᏌᏩᏂ ᏈᏓ ᏗᎾᏓᏅᏟ.\nᏂᎯᏍᎩᏂ ᎯᏃᎮᏍᎨᏍᏗ ᎾᏍᎩ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒ ᎤᎵᎶᎲᏍᎩ;\nᏂᎦᎵᏍᏙᏗᏍᎨᎢ ᏭᎶᏒᏍᏛᎢ ᎤᏲ ᎤᏓᏅᏖᏗ ᏃᎴ ᎤᏓᏅᏘ ᏱᎨᏒᎾ ᏍᎩᎾᎾ ᏥᏍᏕᏥ.\nᎤᎾᏂᎩᏒᏃ ᏕᎦᏚᏩᏗᏒ ᎤᏁᏙᎴ ᎠᎾᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎠᎴ ᏓᎾᏓᏅᏫᏍᎨ ᏂᎦᎥ ᎠᏁᏙᎲᎢ.\nᏔᎵᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎠᎺᏉᎯ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎤᏲᎲᏒᎯᏃ ᏴᏫ ᎤᎩᎬ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏅᎩ; ᎠᎴ ᏂᎦᏗᏳ ᏗᏅᏃᏛ ᎨᏒ ᎠᎺᏉᎯ ᎠᏁᎲ ᏚᏂᎵᏬᏨᎩ.\nᎾᏍᎩᏴ ᏑᎾᎴ, ᎠᏌᎻᏛ ᏓᏘᎭᏁᎲ ᎤᎨᏓᎵᏴ ᏭᏂᎷᏤ, ᎠᎦᏴᎵᎨ ᎤᏬᏑᎶᏨ, ᎤᏩᏌ ᎦᏂᎩᎵ ᎤᏂᏅᎪᏫᏍᏗ ᎨᏎ, ᏎᏥ ᏒᎭᎵ ᏗᏇᏅ ᏚᎧᎭᏲᏕ ᎠᏲᏓᏌᎲ ᎦᏌᎾᎵ, ᎦᎵᏦᏕ ᏃᎴ ᎠᏫᏌᏅ ᎠᏦᎭᏴ, ᎠᏫᏌᏅ ᏎᎷ, ᏚᏯ ᏃᎴ ᏩᎩᎦ, ᏥᏔᎦ ᏓᎾᏣᎪᏍᎬ ᎣᏂ, ᏩᏚᎵᏏ ᎠᏂᏃᎯᎵᏙᎲ ᎦᏁᏍᎬ, ᎣᏍᏓ ᏧᏂᏍᏙᏰᏛ ᏒᎦᏔ ᏃᎴ ᏆᎾ ᏕᏧᎬ, ᏓᎾᏓᏔᏍᎬ.\nᎾᏍᎩᏰᏃ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎸᎯ ᏥᎨᏎ ᎥᏝ ᎰᏩ ᎦᎸᏉᏗᏳ ᏱᎨᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎬᏩᏓᎪᎾᏛᏛ ᎦᎸᏉᏗᏳ ᎨᏒ ᏐᎢ.\nᎤᏁᎳᏅᎯᏰᏃ ᎡᏆᎭᎻ ᎤᏚᎢᏍᏓᏁᎸ, ᎾᏍᎩ ᎩᎶ ᏅᏩᏓᎴ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᏒᎲ ᎬᏩᏎᎵᏙᏗ ᏂᎨᏒᎾ ᎨᏎᎢ, ᎤᏩᏒ ᎡᎲ ᎤᏎᎵᏙᏔᏁᎢ,\nᎣᏏᏳ ᎤᏂᏰᎸᏅ ᎤᏙᎯᏳᎯ; ᎠᎴ ᎾᏍᎩ ᎬᏩᏂᏚᎦ. ᎢᏳᏰᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏁᎳᏗᏍᏔᏅᎯ ᏱᎩ ᎾᏍᎩ ᎤᎾᏤᎵ ᏧᏓᎴᏅᏛ ᎠᏓᏅᏙ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ, ᎢᏳᎾᏛᏁᏗ ᎾᏍᏉ ᏄᎾᎵᏍᏓᏁᎲᎩ ᎾᏍᎩ ᏧᏂᏍᏕᎸᏗᏱ ᎤᏇᏓᎵ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ.\nᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᏙᎬᏁᎮᏍᏗ ᎾᏍᎩ, ᎠᏥᎸ ᏗᏂᎰᎵ ᏗᎦᏄᎪᎨᏍᏗ, ᎠᎴ ᎤᏂᏛᏗᏍᎨᏍᏗ ᎬᏩᏂᏍᎦᎩ; ᎢᏳ ᎠᎴ ᎪᎱᏍᏗ ᏧᏩᏁᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎢᏯᎬᏁᏗ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ.\nᏂᎯᏃ ᎡᏥᎩᎵᏲᎢᏍᏗᏍᎩ, ᎠᏣᏪᏐᎸᏍᏙᏗ ᎨᏒ ᎡᎦᎫᏴᏓᏁᏗᏱ, ᎾᎯᏳ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎸᎶ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎭ ᎠᏁᎮᏍᏗ ᏧᎾᎵᏂᎩᏛ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ,\n“ᎦᏍᎩᎶᎩ ᎤᏤᎵ ᏫᏌᏗᎦ!” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎢᎦᏛ, ᎾᏍᎩ, ᎤᎾᏛᏅᎩ; ᎢᎦᏛᏃ, ᏓᎾᏤᎸ ᎤᎾᏛᏅᎩ. ᎤᏩᏒᏍᎩᏂ, ᎠᏴ ᎾᏍᎩ, ᎤᏛᏅᎩ.\nᎢᏳᏃ ᏗᏓᏅᏙ ᎤᎬᏩᎵ ᏱᏨᏫᏎᎸ, ᏥᏌ ᎡᏉᎯᏳᏉ ᎢᎩ, ᎢᏳᏃ ᎤᏇᏓᎵ ᎤᎬᏩᎵ ᏱᏨᏍᎫᏕᏎᎭ?\nᎤᎾᏛᎦᏅᏃ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ, ᎢᎦᏛ ᎤᏂᏰᎵᎥᎩ, ᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏔᎵᏁ ᎯᎠ ᏛᏨᏯᏛᎦᏁᎵ.\nᎤᏂᎩᏒᏃ ᎦᏅᏅ ᏭᎷᏨ, ᎩᎶ ᎢᏳᏍᏗ ᎤᏗᏠᎡᎸᎩ, ᎠᎴ ᏚᎵᏂᏆᏅᏁᎸᎩ, ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎰᏍᏛ ᏔᏕᏲᎲᏍᎩ, ᎦᏙ ᏓᎦᏛᏁᎵ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎬᏂᏛ ᎠᏆᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ?\n“ᎤᏔᎷᎩᏍᎩ ᏍᎩᎾᎾ ᏏᏆ.”\nᏫᎵᎻ ᎦᏟᎮ ᎧᏁᏍᎬ.\n”ᏃᎴᏍᏉ,” ᎤᏛᏁ ᎰᎻ, ”ᎠᏆᏚᎵ ᏣᎴᏅᏗ ᎭᏁᏍᎨᏍᎬ ᎧᏁᏌᎢ ᎤᏴᏍᏗ ᏫᎵᎻ.\nᎠᏎᏃ ᎥᏝ ᏳᏬᎯᏳᏁᎢ, ᏗᏓᏍᏚᏗᏱᏉ ᏭᎶᏎᎢ, ᎠᎴ ᎾᎿ ᏭᏴᏔᏁ ᎤᎫᏴᏗᏱ ᎠᏥᏚᎬ ᎢᎪᎯᏛ.\nᏅᏯ ᏭᏗᏅᏓ ᎢᏳᏓᏅᎯᏓ ᎾᏍᎩᏯ ᎢᏳᏛᎾᎯᏓ ᏰᎵᏉ ᏭᏲᏍᏗ ᏬᏯ ᎠᏍᎪᎵ.\nᎢᏳᏃ ᎥᎩᏅᏏᏛ ᎬᎩᏰᎸᏗ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᏭᏅᏧᏛᎢ, ᏂᎯᏍᎩᏂ ᎠᏎ ᏄᏜᏏᏛᏒᎾ ᎥᎩᏅᏏᏛ ᏍᎩᏰᎸᏗ; ᏂᎯᏰᏃ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎠᏴ ᎥᎩᏅᏏᏛ ᎨᏒ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎡᏥᏍᏓᏩᏕᎩ ᎨᏒᎢ.\nᎠᏎᏃ ᎢᏣᏅᏓᏓ ᏧᏩᎫᏔᏅᏒᎢ, ᎾᏍᎩ ᎾᎯᏳ ᎢᎦ ᏂᏕᏣᏗᏍᏓᏁᎶᎢ, ᎤᏣᏘ ᎢᏣᏟᏂᎬᏁᎸ ᏕᏥᎦᏘᎸᏒ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ;\nᎥᏝ ᎠᎴ ᎩᎶ ᎠᏎᏉ ᏲᏣᎵᏍᏓᏴᎾᏁᎮᎢ; ᏙᎩᎸᏫᏍᏓᏁᎲᎩᏍᎩᏂ ᎠᎴ ᏙᎩᏯᏪᏥᏙᎲᎩ ᎬᏩᎩᏨᏗ, ᏃᎦᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᏴ ᎠᏏᏴᏫ ᏂᏣᏛᏅ ᎦᎨᏛ ᎢᏲᏨᏴᏁᏗᏱ;\nᎬᏆᏚᎸᏗᏉᏰᏃ ᎠᏋᏒ ᎨᏒ ᎥᎩᏍᎦᏨᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎥᏆᏓᏓᎴᏙᏗᏱ ᎦᎶᏁᏛ ᎡᎲᎢ ᎦᏥᏍᏕᎵᏍᎬ ᎣᏣᏓᏅᏟ, ᎪᎱᏍᏗ ᏗᏋᏅ Ꭰ ᎤᏇᏓᎵ ᎨᏒᎢ;\nᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᏄᎪᏤ ᎦᏚᎲᎢ.\nᏫᏥ ᏫᏘᏌᏆᏞᎵ, ᏫᏙᏣᏝᏂ ᎤᏁᎸᏗ ᏣᏍᏆᏂᎪᏛ.” \nᎨᎦᏎᏍᏗᏱ ᎤᏰᎸᏎ ᎤᏰᎸᏎ ᎤᏩᏒ ᎠᎴ ᎺᎵ ᎤᏓᏴᏍᏗ, ᎾᏍᎩ ᎦᏁᎵᏛ ᎨᏎᎢ.\nᏥᏌᏃ ᎡᏙᎲᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏐᎵᎹᏅ ᎤᏤᎵᎦ ᎠᏲᏓᏝᎲᎢ.\nᎤᏙᎯᏳ ᏭᎶᏒᏍᏛ ᎦᏓᎭ ᎤᏂᎶᏅᎮᎸ.\nᎠᏎ ᎤᏛᎪᏗ ᎨᏎ ᎾᏂᏪᏍᎬ, ᏃᎴ ᎠᏎ ᎤᏓᏅᏖᏗᏍᎨᎢ.\nᏗᏥᏲᎵ, ᏕᏦᎯᏳᏎᏍᏗ ᏗᏥᎦᏴᎵᎢ ᏂᎦᎥ ᏂᎨᏥᏪᏎᎲᎢ; ᎣᏏᏳᏰᏃ ᎤᏰᎸᏗ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᎯᎠ.\nᎾᏍᎩᏃ ᎪᎯ ᎨᏒ ᏰᏥᏙᎵᏨᏉ, ᎠᎴ ᏰᏥᎦᎵᏍᏓᏛ, ᏱᏅᏎᎦᎩ ᎾᏍᎩ ᎤᏣᏘ ᎤᏲ ᎤᏰᎸᏒ ᏳᏃᏴᏘᏍᏓ.\nᎦᏲᏟᎨ ᎠᎵᏒᎢᏍᏙᏗ ᏂᎦᏓ ᎤᎾᏨᏓ ᏓᏥᏍᏛ ᏑᎾᎴ.\nᎤᏁᎷᏅᎯ ᏧᏓᎴᏅᏛᏉ ᏂᏚᏂᏪᏒᎩ; ᏓᏂᎳᏫᎥᏰᏃ ᎤᎾᏓᏑᏰᏛᏉ ᎨᏒᎩ, ᎠᎴ ᎤᏟ ᎢᏯᏂᏛ ᎥᏝ ᏯᏂᎦᏔᎮ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᎾᏓᏟᏌᏅᎢ.\nᎧᏂᎩᏛ ᎤᎵᏑᏫᏓ, ᎠᎴᏃ ᎦᏲᏟ ᏧᏂᏍᏗ ᎢᏯ ᏓᎾᏛᏍᎬ ᎦᏝᏛ ᏃᎴ ᎦᏲᏟ ᎠᏂᎩᎦᎨ ᏒᎦᏔ ᎤᎾᏛ ᏕᏧᎬ.\nᎠᎦᏗᏓ ᎧᏃᎮᏗ ᎨᏐ ᏅᏙ ᏥᏭᏕᎵᎪ ᏃᎴ ᏥᏗᎠᎧᎸᎦ.\nᎤᎵᎪᎲᏍᏗ ᎢᎦ ᏓᏛᏍᏆᎶᏥ ᏃᎴ ᏛᏴᏣᏗ.\nᎤᏃᎴ ᎤᏍᎦᏎᏗ ᏓᎦᎷᏥ, ᏁᏩᏓ ᎢᎬᏓ ᏓᎦᏁᏐᎣᏏ ᎬᏁᎨ ᎦᎸᎶᎢ ᏓᏳᏓᎴᏅ, ᏂᎦᏓ ᎠᏂᏳᏩᏁᎦ ᏓᏛᎰᏂ ᏃᎴ ᎦᏚᏏ ᎤᎾᏗᏍᎦᏟ.\nᎠᏂᎦᏓᏁ ᏄᎾᎵᏍᏔᏁᎢ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᏂᎯ ᏗᏥᏰᎸ ᎦᎶᏁᏛ ᎤᏚᏓᏕᏫᏍᏛᎢ? ᏥᎪᏃ ᎦᎶᏁᏛ ᎤᏚᏓᏕᏫᏒ ᏙᏓᏥᏯᏅᎯ, ᎤᏁᎫᏥᏛᏃ ᎠᎨᏴ ᏧᎾᏚᏓᏕᏫᏍᏙᏗ ᏅᏓᎦᏥᏴᏁᎵ? ᎬᏩᏟᏍᏗ!\n“ᎨᏍᏗ ᏱᏗᎬᏕᏥ ᏨᏌ ᏣᎵᏬᎢᏍᏗ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᎥᏝ ᎤᏩᏒ ᎯᎠ ᎦᎸᏉᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏳᎩᏎ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎾᎬᏁᎸᎢ; ᎯᎠᏍᎩᏂ ᎢᏳᏪᏎᎸᎯ, ᎠᏇᏥ ᏂᎯ, ᎪᎯ ᎢᎦ ᏍᏆᏕᎲᏏ, [ᎾᏍᎩ ᎤᏯᏅᎮᎢ.]\nᎢᏥᎧᎵᏣᎪᎦ ᏗᏥᏙᏓ ᎤᎾᏟᎶᎥᎢ.\nᎾᏍᎩᏯᏰᏃ ᎠᎾᎦᎵᏍᎩ ᏌᏉ ᎢᏗᏢ ᎦᎸᎶᎢ ᏨᏗᎦᎵᏍᎪᎢ, ᎤᏣᏘᏂᏃ ᎢᏗᏢ ᎦᎸᎶᎢ ᏥᏫᏗᎦᎵᏍᎪᎢ, ᎤᏣᏘᏂᏃ ᎢᏗᏢ ᎦᎸᎶᎢ ᏥᏫᏗᎦᎸᏌᏓᏗᏍᎪᎢ; ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵ ᎢᎦ ᎠᎵᏱᎶᎸᎭ.\nᎢᎦᏪᏍᏗ ᏯᎫᏚᎵᏍᎬᎾ ᎠᏛᎪᏗ ᎠᎫᏩᏌ ᏴᏙ ᎦᏚᏏ.\nᎣᎭᏂ ᎠᏁᎬ ᎤᏓᏂᏴ ᏃᎴ ᎤᎴᏫᏍᏔᏅ.\nᎤᏂᏣᏛᏃ ᎬᏩᎷᏤᎸᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏣᏂ ᎥᏝ ᎤᏍᏆᏂᎪᏗ ᏱᏚᎸᏫᏍᏓᏁᎮᎢ, ᎠᏎᏃ ᏂᎦᎥ ᏣᏂ ᏄᏪᏒ ᎤᏃᎮᎸ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎤᏙᎯᏳᎯᏯ ᎨᏎᎢ.\nᎭᏓᏅᏖᏍᎪᎢᏧ ᎭᎾ ᏗᏓᎴᎲᏍᎬ ᎦᏓ?\nᎠᏎᏃ ᎥᏝ ᎾᏂᎥ ᎤᏃᎯᏳᏅᎯ ᏱᎩ ᎣᏍᏛ ᎧᏃᎮᏛ. ᎢᏌᏯᏰᏃ ᎯᎠ ᏂᎦᏪᎭ, ᏱᎰᏩ, ᎦᎪ ᎤᏬᎯᏳᏅ ᎣᏥᏃᎮᏍᎬᎢ?\nᎦᏙᏰᏃ ᎤᏚᎩ ᎣᎬᎭ, ᎠᎴ ᎦᏙ ᎣᏍᏛ ᏱᎦᏓᏅᏓᏗᎭ, ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎠᎵᏍᏚᎶ ᏯᎦᎵᎮᎵᏍᏙᏗ? ᏝᏍᎪ ᏂᎯ ᏱᎨᏎᏍᏗ ᎠᎦᏔᎲ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎾᎯᏳ ᎦᎷᏨᎭ?\nᎠᏎᏃ ᎠᏏᏴᏫ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎩᎾᎵᎢ, ᎥᏝ ᎤᏣᏘᏂ ᏱᏂᎬᏴᏁᎭ. ᏝᏍᎪ ᎣᏏ ᏱᏣᏰᎸᏁ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᎬᏯᎫᏴᎡᏗᏱ?\nᏚᎾᏁᎶᏥᏁᎴᏃ ᎤᎾᎵᎪᎯ ᏐᎢᏱ ᏥᏳᎯ ᎤᎾᏣᎢ ᏅᏓᎬᏩᏂᏍᏕᎸᎲᏍᏗᏱ. ᎤᏂᎷᏤᏃ, ᎠᎴ ᎢᏧᎳ ᏥᏳ ᏚᏂᎧᎵᎴᎢ, ᎾᏍᎩᏃ ᎿᏉ ᏕᎦᏃᏴᎨᎢ.\n“ᎨᏍᏗ ᎬᏕᏘᏱᎩ.\nᎠᏯᏦᎯ ᏭᎳᎩᏎ ᏣᏄᏏ ᏃᎴ ᎠᎵ ᎤᎴᏴᏒ ᎤᏅᎦᎸᎮᎢ ᎠᏴᏤᏂ ᎣᏁ ᎢᏣ.\nᎨᏍᏗ ᏯᏓᏁᏝᏍᎨ ᎠᎵᏍᏔᏴᏗ ᎠᏙ.\nᎤᏍᎦᏃᎵ ᎤᏰᎸᏎ ᏓᏆᎴᎳ ᎡᎶᏗ ᏏᏆ ᎠᏍᏚᏗ ᎢᏳᏓᏅᎯᏓ.\nᎠᏎᏃ ᎨᏍᏗ ᎭᏂ ᏍᎩᎾᎾ ᏱᏂᏓᎦᎵᏍᏔᏂ.\n“ᏎᎦᏃ ᎤᏍᏆᏂᎪᏔᏁᎢ, ᏃᏗ ᎤᏍᏆᎸᎭ, ᎤᏩᏯᎨᎢ.”\nᎠᏴ ᏉᎳ ᎠᏋᏒ ᎠᏉᏰᏂ ᎬᏗᎭ ᏫᏨᏲᎵᎭ. ᎢᏣᏅᏖᏍᏗ ᎥᏆᎸᎥᎢ. ᎬᏩᎦᏘᏯ ᎠᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏤᎳᏗᏙᎮᏍᏗ. ᎡᎺᏅ.\n”ᎨᎵᎠ ᎪᎱᏍᏗ ᎦᎵᏍᏗ ᎢᎯ ᏣᏤᎵ ᏏᏆ.\n“ᎭᏓᏅᎦᎳ ᏃᎴ ᎭᎵᏍᏔᏴᎲᎦ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ, ᎡᎳᏆᏗ!” ᎤᏛᏁ ᎤᏤ.\nᏚᏅᏎᏃ ᎢᎬᏱ ᎠᏁᎩ; ᎤᏁᏅᏎᏃ, ᎠᎴ ᏌᎺᎵ ᎠᏁᎯ ᎤᏂᏚᎲ ᏭᏂᏴᎴᎢ, ᎾᏍᎩ ᎬᏩᏛᏅᎢᏍᏓᏁᏗᏱ.\nᎬᏂᏳᏉ ᏥᏙᎦ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎬᏂᎭ; ᎩᎶ ᎠᏛᎩᏍᎨᏍᏗ ᏥᏁᎬ ᎠᎴ ᎠᏍᏚᎢᏍᎩᏍᏗ ᎦᎶᎯᏍᏗᏱ, ᏓᏥᏴᎵ ᎠᏯᎥᎢ, ᎠᎴ ᏓᎦᎵᏍᏓᏴᏂ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏛᎵᏍᏓᏴᏂ ᎦᎵᏍᏓᏴᎲᏍᎬᎢ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎤᎵᏍᏈᏗ ᏅᎩᏎ ᎤᎾᎵᏍᏓᏴᏃᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎤᎵᏍᏈᏗ ᎢᏤ ᎧᏃᎮᏛ ᏧᏠᎯᏍᏛᎢ ᎠᏴ ᎠᎩᎩᎬᎯ, ᎾᏍᎩ ᏂᎯ ᎢᏣᏤᏬᏤᎸᎯ ᏥᎩ\nᏥᏌᏃ ᏓᏳᎾᏄᎪᏨᎩ, ᎤᎵᏍᏚᎸᎩ ᎠᎵᏍᏚᎶ ᏧᏣᏲᏍᏗ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏄᏮᎩ ᎩᎦᎨ ᎠᏄᏬ. ᏆᎴᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ.\nᎦᏙ ᏗᎦᎵᏍᏙᏗ ᏂᏦᎵᎬᎾ ᏥᎩ, ᎾᏍᎩ ᎯᎠ ᏥᏂᏨᏪᏏ ᏝᏍᎩᏂ ᎦᏚ ᏱᏥᏛᎦ, ᎢᏤᏯᏔᎮᏍᏗ ᎠᎪᏙᏗ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ ᎤᎾᏤᎵᎦ, ᏥᏨᏲᏏ?\n“ᏏᏲ,” ᎤᏛᎮ ᏩᎭᏯ. \nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏥᎻ ᎠᎴ ᏣᏂ ᎾᏍᎩ ᎤᏂᎪᎲ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎣᏏᏉᏍᎪ ᏱᏰᎸᎾ ᏲᎩᏂᏁᏨ ᎠᏥᎸ ᎦᎸᎳᏗ ᏅᏓᏳᎶᎯᏍᏗᏱ ᎠᎴ ᎤᎾᎪᎲᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎢᎳᏯ ᏄᏛᏁᎸᎢ?\nᏧᎵᎢ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᎠᎾᎵᎮᎵᎨ ᎱᎷᏨᎢ.\nᎣᏍᏓ ᎤᏰᎸᎮ ᎠᏤ ᎤᏁᎳᏗᏍᏗ.\nᎤᎾᏓᏍᏕᏓᎵᏴᏓ ᎦᏲᏟᏉ ᎠᏂᎭᏰᎲ ᏚᏯ, ᏎᎷ ᎢᏣ, ᎦᏲᏟ ᎢᏯ ᏃᎴ ᏍᎨᏫ.\nᎠᏓᏅᏙᏰᏃ ᎤᏩᏒ ᏓᎵᎪᏁᎭ ᏗᎦᏓᏅᏙ ᎬᏂᎨᏒ ᎾᏅᏁᎲ, ᎾᏍᎩ ᎠᏴ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᎨᏒᎢ.\nᏉᎳᏃ ᏭᏯᏅᎲ ᎠᏏᏴᏫ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎠᏫᏅ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᏄᏬᎸ ᏫᏯᏘᏅᏍᏓ, ᎪᎱᏍᏗᏰᏃ ᎤᎭ ᎤᏃᏁᏗ.\nᎠᎪᏄᏰᏃ ᎠᎩᏲᏏᏍᎬᎩ, ᎥᏍᎩᏰᎳᏍᏔᏅᏃ; ᎠᎩᏔᏕᎩᏍᎬᎩ, ᎥᏍᎩᎤᏅᏃ; ᏅᎩᎦᏔᎲᎾ ᎨᏒᎩ, ᎥᏍᎩᏴᏔᏅᎩ;\nᎾᏍᎩ ᎠᏥᎩ-ᎨᎶᎯ ᎾᎬᏁᎸ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏇᏓᎵ ᎤᎬᏩᎵ ᎾᏍᎩᏯ ᎾᎬᏁᎸᎾ ᎨᏒᎢ, ᎬᏂᏛᏍᎩᏂ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎤᎵᏂᎬᎬ ᎾᏍᎩᏯᎢ.\nᎤᏩᏝᎥᏃ ᏚᏂᏔᎳᏗᎸ ᏥᏳ, ᏂᎦᏛ ᏚᏂᏲᏐᏁ ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᎾᏍᎩᏃ ᎢᏧᎳᎭ ᏧᏂᎦᏐᎠᏒ ᎤᏬᏓᎸ ᎤᎴᏁᎢ. ᎠᎴ ᎤᏂᏣᏘ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎤᏂᏧᏈᏍᏗ ᏴᏫ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ, ᎠᎴ ᏔᏯ ᎠᎴ ᏌᏙᏂ ᎠᎺᏉᎯ ᎤᏣᏗ ᏅᏓᏳᏂᎶᏒᎯ, ᎾᏍᎩ ᏧᏂᎷᏤ ᎬᏩᏛᎦᏁᏗᏱ, ᎠᎴ ᏗᎨᏥᏅᏬᏗᏱ ᏚᏂᏢᎬᎢ.\nᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎪᎵᏂᏗᏱ ᏥᏣᏓᏡᎦ, ᎾᏍᎩ ᎢᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎢᏰᏨᏁᎸᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎡᏥᏯᏅᏛ ᎢᏣᏓᏅᏘ, ᎠᎴ ᎾᏂᎥ ᏂᎦᎥ ᏕᎨᏌᏗᏒ ᏥᏌ ᎦᎶᏁᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏚᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎩ, ᎾᏍᎩ ᎢᏧᎳᏉ ᎾᏍᎩ ᎤᎾᏤᎵᎦ ᎠᎴ ᎠᏴ ᎢᎦᏤᎵᎦ;\nᎾᏍᎩᏃ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎾᏍᏉ ᎠᏴ ᎾᏆᎵᏍᏓᏁᎵᏕᎬ ᎠᎴ ᎾᏆᏛᎿᏕᎬᎢ, ᏗᎩᎦ, ᎣᏥᎨᏳᎢ ᎣᏣᎵᏅᏟ ᎠᎴ ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᏧᎸᏫᏍᏓᏁᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎬᏩᎵ, ᎬᏂᎨᏒ ᏅᏓᏨᏁᎵ ᏄᏓᎴᏒ ᎪᎱᏍᏗ;\nᎨᏍᏗ ᏳᏬᎯᏳᎮ ᏄᏍᏛᏉ ᏄᎵᏍᏔᏁᎲ ᎤᏂᏴ ᏣᏄᏏ ᏃᎴ ᎠᏎ ᎤᏗᏔᏍᏗ ᏅᏬᏘ ᏥᏄᏩᏁᎮ.\nᎥᏝ ᎪᎱᏍᏗ ᎠᏋᏒ ᏰᎵ ᏱᏙᎬᎩᎸᏫᏍᏓᏏ; ᎦᏛᎩᏍᎬ ᎾᏍᎩᏯ ᏕᎫᎪᏗᏍᎪᎢ, ᎠᎴ ᏓᏉᎪᏔᏅ ᏚᏳᎪᏛ ᎨᏐᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎾᎩᏲᎲᎾ ᎨᏒ ᎠᏋᏒ ᎦᏓᏅᏖᏍᎬᎢ, ᎠᎩᏲᎲᏍᎩᏂ ᎠᏓᏅᏖᏍᎬ ᎡᏙᏓ ᎾᏍᎩ ᏅᏛᎩᏅᏏᏛ.\nᎾᏂᎥ ᎩᎶ ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬ ᏧᏂᎾᏫᏱ [ᎠᏂᎲᏍᎨᏍᏗ;] ᎥᏝᏍᏗ ᏝᏉ ᎤᏂᏰᎸᎯ, ᎥᏝ ᎠᎴ ᎠᏎ ᎤᏂᏗᏱ ᏥᏂᎨᎬᏁᎰ ᎢᏳᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᎨᏳᎭ ᎤᎦᎵᏍᏗ ᎤᏓᏁᏘ ᎠᎲᏍᎩ.\nᏤᏪᏥᏃ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏙᏓᎦᏥᎢᏍᏔᏂ; ᏂᎦᏗᏳᏃ ᏓᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎠᏂᎦᏔᎮᏍᏗ ᎾᏍᎩ ᎠᏴ ᏗᏥᎪᎵᏰᏍᎩ ᎨᏒ ᎤᏕᎵᏛ ᎨᏒ ᎠᎴ ᏧᏂᎾᏫ; ᎠᎴ ᏓᏨᏁᎵ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎾᏍᎩᏯ ᏄᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎸᎢ.\n“ᎠᎳᏑᎶ ᎠᎩ?” ᎤᎾᏛᏁ ᎠᏂᏐ.\nᎠᎴ ᎤᏂᎪᎲ ᎤᏣᏘ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᎾᏍᎩ ᎢᏳᏍᏗ ᎼᏏ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏣᏘ ᏥᎾᏰᏍᎦ ᎠᎴ ᎠᎩᎾᏫᎭ.\nᏧᎾᏙᎴᏆᏍᏗ ᏭᏂᎷᏣ ᎦᏳᎳ ᏄᏬᎡ ᎤᏤᎵ ᎦᎾᏌᎢ. ᏍᎩᎾ ᎤᏬᏚᏨ ᎫᏩᏓᏅᏖᏗ ᎨᏒ ᏚᏬᎡ.\nᎢᏳᏃ ᎦᏅᏓᏓ ᎤᏠᎾᏍᏗ ᏂᎨᏒᎾ ᎪᎯᏳᏗ ᎨᏒ ᏥᏣᏯᎠ, ᎾᏍᎩ ᎢᎬᏱ ᏧᏯᎢ ᏣᎵᏏ ᎶᏏ ᎠᎴ ᏣᏂ ᏳᏂᏏ, ᎠᎴ ᏄᏜᏏᏛᏒᎾ ᎠᎩᏰᎸᎭ ᏂᎯ ᎾᏍᏉ ᏣᏯᎥᎢ.\nᎤᏕᏘᏴᏌᏗᏒ ᏱᎨᎬᏬᎥᏗᏍᎬᎾ ᏥᎨᏒ, ᎠᏯ ᏃᎴ ᏲᎾ ᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎢᏰᏆ ᏙᎩᏂᏂᏴᎲ.\nᏣᏄᏏ! \nᏣᎬᏫᏳᎯ ᎡᎩᎵᏈ, ᏕᎰᎯᏳᎲᏍᎦᏍᎪ ᎠᎾᏙᎴᎰᏍᎩ? ᏥᎦᏔᎭ ᏕᎰᎯᏳᎲᏍᎬᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎠᎱᎵ ᎤᎵᏍᏚᎢᏎᎢ, ᎦᏃᎪᏃ ᎤᏕᎵᏌᏕᏎᎢ, ᎠᎴ ᎤᏬᏂᏎ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ.\nᎠᎴ ᏴᏫ ᎾᏍᎩᏯ ᏄᏍᏛ ᎨᏎᎢ, ᎤᏩᏒ ᎾᏥᎸᏉᏛᎾ ᏄᏓᏛᏁᎴᎢ, ᎠᎴ ᎤᏬᎯᏳᎯᏍᏛ ᏄᎵᏍᏔᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎬᏗᏍᎩ, ᎾᏍᎩ ᏓᏓᎿᏩᏍᏛ ᎠᏲᎱᎯᏍᏙᏗ ᎨᏒᎢ.\nᎠᏎᏃ ᏉᎳ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᎨᏒ ᏕᎪᎩᏂᎵᎥᏂᎸ ᏧᏚᎪᏔᏅᎯ ᏂᎨᏒᎾ ᎣᎩᏂᏍᎦᏅᏨᎢ, ᎣᏍᏗᎶᎻ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏕᎪᎩᏂᏴᏔᏅ, ᏥᎪᏃ ᎿᏉ ᎤᏕᎵᏛ ᎢᎪᎩᏂᏄᎪᏫᏍᎦ? ᎤᏙᎯᏳᎯ ᎥᏝ, ᎤᏅᏒᏍᎩᏂ ᏩᏂᎷᎩ ᏫᎪᎩᏂᏄᎪᏩ.\n“ᎦᏙᏃ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᏂᎯᏍᎩᏂ ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏥᏍᏚᏁᎰᏰᏃ ᏴᏫ ᎦᎸᎳᏗ ᎤᏤᎵᎪᎯ; ᎥᏝᏰᏃ ᎢᏨᏒ ᏱᏥᏴᎯᎰᎢ, ᎠᎴ ᎥᏝ ᎤᎾᏁᎳᎩ ᏩᏂᏴᎭ ᏱᏗᏤᎵᏎᎰ ᏩᏂᏴᎯᎯ.\nᎾᎿᏃ ᏫᎤᏪᏅ ᎤᏍᏗᎩᏛ, ᏚᎪᎮ ᏥᎻ, ᏤᏈᏗ ᎤᏪᏥ, ᏣᏂᏃ ᎾᏍᎩ ᏗᎾᏓᏅᏟ, ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᎾᏣᎡ ᏥᏳᎯ ᏓᏃᏢᎯᏏᏍᎨ ᏧᏂᎦᏯᎷᏗ.\nᏍᏓᎵᎪᏒᎾᎲ Ꮭ ᏱᏛᏣᏂ? ᏥᏲᏎᎸ.\nᎠᏯ ᎠᏇᏅᏒ.\n”ᏱᏓᏆᏓᏟᏴᎭ, ᎦᏓᎭ ᏱᎾᏆᎵᏍᏔ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎠᎴ ᎾᎿ ᎠᏂᏲᎯᎮᏍᏗ ᏧᎾᏓᎴᏅᏛ ᎠᏴ ᎤᎾᏤᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏣᏓᎴᏅᏛ ᏗᎦᎸᏉᏗ.\n“ᎭᏩ, ᎦᏓᎭᏗ ᏃᎴ ᎠᏎ ᏛᏓᏅᎦᎸᎯ.”\nᎦᏙᏃ? ᏥᎪ ᏂᏨᎨᏳᏒᎾ ᎨᏒ ᎢᏳᏍᏗ? ᎤᏁᎳᏅᎯ ᎠᎠᏔᎭ.\nᏐᎣᏁᎳᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏎᎢ, ᎠᎴ ᎬᏩᏛᏁᎢ.\nᏂᎯ ᎠᎹ ᎡᎶᎯ ᎤᏤᎵᎦ; ᎢᏳᏍᎩᏂ ᎠᎹ ᏳᏥᏍᎪᎸ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎠᎹ ᏯᏙᏢᎾ; ᎥᏝ ᎿᏉ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎦᎩ, ᎠᏗᏅᏗᏉ ᎤᏩᏒ, ᎠᎴ ᏴᏫᏉ ᎤᎾᎳᏍᏓᎡᏗ.\nᏂᏥᎦᏔᎲᎾᏃ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᏑᎾᎴᎢ; ᏕᏨᏅᏰᏃ ᎦᏙ ᎤᏍᏗ? ᎤᎬᏎᏛᏉ ᎾᏍᎩᏯᎢ ᎾᏍᎩ ᏞᎦ ᏥᏚᎾᏄᎪᎪᎢ ᎿᏉᏃ ᏣᎵᏛᏗᏍᎪᎢ.\nᏦᎳ ᎠᏂᏝᏍᎬ ᎦᏅᏃᏩ, ᎾᏍᎩᏯ ᎨᏛᏍᏗ ᏧᎧᎵᎢᎰ.\nᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ, ᎦᏙ ᎤᎵᏍᏙᏔᏁ ᏘᎦᏙᎵ ᏚᎵᏍᏚᎢᏎᎢ?\nᎤᏤᎵᎦᏰᏃ ᏥᏓᏕᏲᎲᏍᎪ ᎢᏳᏍᏗ ᎨᏎᎢ, ᎥᏝᏃ ᏗᏃᏪᎵᏍᎩᏉ ᏥᏓᎾᏕᏲᎲᏍᎪ ᎢᏳᏍᏗ ᏱᎨᏎᎢ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏧᏓᏅᎦᎸᏛ ᏧᏂᎾᏫ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏂᎪᏩᏛᏗ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᎢᏗᎾᏰᏍᎨᏍᏗ ᎾᏍᎩ ᏒᎩᏚᎢᏍᏓᏁᎸ ᎾᎩᏴᏍᏗᏱ ᏥᎩ ᎤᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏱᏅᎦᎵᏍᏓ ᏂᎯ ᎩᎶ ᎡᏍᎦ ᎢᏦᎭᏒᎢ.\nᏦᏩᏃ ᎠᎴ ᎠᏲᎵ ᎤᏥ ᎠᏂᏍᏆᏂᎪᏍᎨ ᏄᏍᏛ ᎠᏥᏁᎢᏍᏗᏍᎬ ᎾᏍᎩ.\nᏲᎾ ᎤᏤᏍᏙ ᏭᎩᎶᏫᏎ ᎧᏁᏌᎢ ᎦᏚᎢᏣ ᎤᏩᏁᎢ.\nᎠᎴ ᎾᏍᎩ ᎨᏥᏁᎸᎩ ᎾᏍᎩ ᏧᏂᎯᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏧᏂᎩᎸᏗᏉᏍᎩᏂ ᎯᏍᎩ ᎢᏯᏅᏙ; ᎤᎾᏓᎩᎸᏗᏃ ᎨᏒ ᎦᏙᎬ ᎠᏓᏨᏯᏍᏗᏍᎩ ᎤᎾᏓᎩᎸᏗ ᎨᏒ ᎾᏍᎩᏯ ᎨᏒᎩ ᏴᎾ ᎿᏉ ᎤᏪᏨᏯ.\n”ᎧᎪᏃ ᏂᎦᏓ?” ᎤᏛᏛᏁ ᎡᎶᏗ.\nᎠᏎᏃ ᏫᎬᏩᎪᎲ ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏒᎢ, ᎤᏤᎸᏅᎯ ᎤᏁᎵᏎᎢ, ᎠᎴ ᎤᏁᎷᏁᎢ.\nᎢᏳᏍᎩᏂ ᎩᎶ ᎦᎶᏁᏛ ᎠᏍᏓᏩᏗᏙᎯ ᎨᏒ ᎤᏍᏛᏗᏍᎨᏍᏗ ᎠᎩᎵᏲᎨᏍᏗ, ᏞᏍᏗ ᏯᏕᎰᏍᎨᏍᏗ, ᏫᎦᎸᏉᏓᏉᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏫᏂᎦᎵᏍᏙᏓ.\nᎾᏍᎩ ᎯᎠ ᏥᏄᏂᏪᏒᎩ, ᎤᎵᏍᏆᎸᏗ ᎨᏎᏍᏗ ᎠᏁᎮᏍᏗ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ, ᎾᏍᎩ ᎤᏅᏒ ᎤᎾᏚᎸᏅᎥᏍᎬ ᏂᏚᏳᎪᏛᎾ ᎠᏂᏍᏓᏩᏕᎩ.\nᎾᏍᎩᏰᏃ Ꮎ ᎤᏩᏒ ᎤᏇᏓᎵ ᎠᏫᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏲᎩ ᎦᏟᏏᏍᎨᏍᏗ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏓᏅᏙᎩᎯ ᎠᏫᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᎦᏅᏙ ᎤᎾᏄᎪᏫᏒᎯ ᎬᏂᏛ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎦᏟᏏᏍᎨᏍᏗ.\nᏃᏉ ᏴᏫ ᏚᏂᏯᏪᎦ ᎠᏂᎪᎵᏰᏍᎬ “ᎤᏍᏆᏂᎩᏗ ᏏᏆ!’\nᎢᏳ ᎠᎴ ᎩᎶ ᏳᏬᎯᏳᎭ ᎪᎱᏍᏗ ᎠᎦᏔᎲᎢ, ᎥᏝ ᎪᎱᏍᏗᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏏ ᎤᎦᏙᎥᏒᎯ ᏱᎩ.\nᏒᎦᎾᏲᎪ!” \nᏆᎦᎹᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏗᎧᎿᏩᏗᏙᎯ ᏫᏲᏪᎳᏏ, ᎯᎠ ᎾᏍᎩ ᏫᏂᏪᏏ ᎠᏗᎭ ᎾᏍᎩ Ꮎ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎢᏧᎳᏗᏢ ᏗᎪᏍᏓᏯ ᏥᎦᏁᎭ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏂᎪᎲ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎾᏞᎬᏉ ᎬᏴᎯ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬᎢ!\nᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎠᎨᏴ ᎡᏂᏧᏙᎢᏛ ᎠᏙᎴᎰᏍᎩ ᎡᎮᎢ, ᎾᏍᎩ ᏆᏄᎡᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎡᏌ ᎠᏂᎳᏍᏓᎸ ᎤᏠᏱ, ᎾᏍᎩ ᎤᏣᏘ ᎠᎦᏴᎵᎨ ᎨᏎᎢ, ᎠᎴ ᎦᎵᏉᎩ ᎢᎫᏕᏘᏴᏛ ᎤᎾᏁᎳᏛᎯ ᎨᏎ ᎠᏍᎦᏯ ᎠᏛᏉ ᎨᏒ ᏧᎾᏨᏛ;\nᏗᏣᏓᏍᏆᏂᎪᏗᏳ ᎨᏎᏍᏗ ᎪᎱᏍᏗ ᏂᏗᏣᏓᏕᎵᏎᎲᎾ.\nᎢᏳᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎦᏪᏒ ᎤᎾᏫᏱ, ᎠᎩᏅᏏᏙᎯ ᎪᎯᏗᎭ ᎤᎷᎯᏍᏗᏱ; ᎠᎴ ᎠᎴᏅᎲᎭ ᏙᎦᎵᎥᏂᎮᏍᏗ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎨᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎵᏍᏓᏴᎲᏍᎨᏍᏗ ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ, ᎠᎴ ᎤᏴᏍᏕᏍᎨᏍᏗ;\nᎠᎴ ᎩᎶ ᎦᏌᎾᎵ ᎤᎩᎴᏍᏗ, ᏞᏍᏗ ᏴᏗᏠᎠᏍᎨᏍᏗ ᎠᏓᏁᎸ ᏫᏯᏴᎯᎮᏍᏗ, ᎠᎴ ᏞᏍᏗ ᎾᎿ ᏫᏯᏴᎯᎮᏍᏗ ᏭᎩᏍᏗᏱ ᎪᎱᏍᏗ ᎤᎿᎥ ᎦᏁᎸᎢ.\nᎠᏍᎩᏗᏍᎨ ᎠᏂᏍᎦᏯ ᎠᏂᎷᎬᎢ ᎠᏰᎳᏍᏗ ᏃᎴ ᎦᎶᏇ ᏗᏂᏁ.\nᎠᎴ ᏄᎪᎸᎾ ᎾᎬᏁᎸ, ᎾᏍᎩ ᎠᏩᏘᏍᎩ ᏄᎵᏍᏔᏁ ᏫᎾᏍᏛᎾ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎾᏂᎥ ᎬᏬᎯᏳᎲᏍᎩ;\nᎿᏉᏃ ᎡᎩᎵᏈ ᎯᎠ ᏄᏪᏎᎸᎩ ᏉᎳ; ᏨᏒ ᎭᎵᏍᏕᎵᏍᎬ ᎨᏣᏁᎢᏍᏗ ᏂᎦᎵᏍᏓ. ᎿᏉᏃ ᏉᎳ ᎤᏙᏯᏅᎯᏛ ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬ ᎤᏬᏂᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ;\nᎧᏃᎯᏰᏃ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᎤᏍᏆᎸᎯᏕᎾ ᎨᏒᎩ.\n“ᎤᏅᏌ ᏩᏁᎾ ᏗᏂᏲᏟ,” ᎤᏛᏁ ᎡᎶᏗ.\nᎤᏂᏁᏨᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ, ᏣᎬᏫᏳᎯ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᎸᎯᏢ ᎪᎱᏍᏗ ᎤᎵᏬᏨᎯ ᏥᎦᏃᎢ, ᎾᎿ ᎠᏬᎭᎵ ᎠᎾᏓᏟᏏᏍᎪᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯ ᎠᏆᏤᎵ ᎤᎵᏍᏈᏗ ᎠᏟᏍᏛ ᏓᏣᏗᏔᎯ, ᎠᎴ ᎠᏴ ᎥᏆᏬᏍᏙᏗ ᎨᏒ ᏙᏓᏰᏣᏬᏍᏔᏂ. ᏥᎦᏘᏏᏍᎩᏂ ᎠᎴ ᏥᎦᏍᎦᏂ ᎩᎶ ᎤᏪᏗᏱ ᎥᏝ ᎠᏴ ᎠᏆᏓᏁᏗ ᏱᎩ, ᎨᏥᏁᏗᏍᎩᏂᏃᏅ ᎨᏎᏍᏗ ᎾᏍᎩ ᎡᏙᏓ ᏧᏓᏁᎳᏁᎸᎯ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙᏃ, ᎦᏙ ᎤᏛᏁᎸ ᎤᏍᎦᏅᏨ? ᎠᏎᏃ ᎤᏟᏉ ᏂᎦᎡ ᎤᏁᎷᏁᎢ, ᏩᎦᏛᎥᎦ, ᎠᎾᏗᏍᎬᎢ.\nᎠᏎᏉ ᎫᏩᏲᎴ ᎠᎹᏰᎵ ᎤᎾᏕᏅ ᎠᏂᏳᏩᏁᎦ.\nᎠᎵᏣᏙᏂᎰ Worcester ᏧᏙᎩᏓ ᎤᏍᏕᎸᎮ ᏍᏏᏉᏯ ᏗᎦᏁᏟᏰᏍᏗ ᏕᎪᏪᎸ ᎢᎦᏓ ᎾᏍᎩ ᎪᏪᎵ ᏗᎦᎴᏴᏙᏗ ᎡᎵᏊ ᏗᎬᏩᏂᎴᏴᏙᏗ ᎢᎬᏩᎵᏍᏙᏗ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎢᏳᏃ ᏥᎷᏨᎭ ᎬᏗᏍᎩ ᎡᎮᏍᏗ ᏯᏇᎵᏒ, ᎦᏙ ᎾᏍᎩ ᏨᏙᏗ? ᏍᎩᏍᏓᏩᏚᎦᏉ.\nᏔᎵᏁᏃ ᎤᏪᏅᏎᎢ, ᏭᏓᏙᎵᏍᏔᏁᎢ, ᎯᎠ ᏫᏄᏪᏎᎢ; ᎡᏙᏓ,\nᎠᏎᏃ ᏐᎵᎹᏅ ᎤᏁᏍᎨᎴᎢ.\nᏄᏓᎴᏨ ᎤᏓᏅᏛ, ᎤᏍᎦᏃᎵ ᎤᏪᏙᎸ ᎠᏁᏙᎲ, ᏭᏓᏑᏴᏅ ᎤᏟᏂᎩᏛ ᏌᎪᏂᎨ ᏭᎾᏓᏴᎳᏛ ᎦᏚᏏ.\nᎠᎬᏱ ᏙᎩᎾᏦᏒ ᏧᎷᏫᏍᏔᏁᏗ ᎠᏰᎵ ᏧᏂᎳᏫᎢᏍᏗ, ᎢᎦᎦᏘᎭ ᏙᎩᎾᏙᎵᏨ, ᎠᏎᏃ ᎠᎩᏙᏓ ᏄᏕᏘᏴᎲ ᎾᎥᏂᎨ ᎨᏒ Crockett.\nᏃ ᏣᎵ ᎤᎩᏒᏎ ᎤᎵᏍᏙᏗ.\nᎾᏍᎩ ᎢᏦᎯᏳᏒ ᎠᎪᎵᏰᏗ ᎨᏒ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎪᎵᏰᏗ ᎨᏒ ᎾᏍᎩ ᎠᏲᎩ ᏥᎩ, ᎾᏍᏉ ᎠᏥᎸ ᎬᏔᏅᎯ ᎠᎪᎵᏰᎥᎯ ᏱᎩ, ᏱᏩᎵᏰᎢᎶᎦ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎣᏍᏛ ᎠᏰᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᏥᏌ ᎦᎶᏁᏛ ᎦᎾᏄᎪᏥᎸ ᎢᏳᎢ.\nᎢᏧᎳ ᏧᏬᏰᏂ ᏗᎬᏘ ᎤᏎᎸ ᏂᎬᎾᏛ ᎦᏙᎯ ᏄᏍᏗᏓᏅ.\nᎾᏋ ᏄᎾᏓᎸ ᎠᏂᏧᏣ, ᏃᎴ ᏚᏙᏪᎸ ᎦᏙ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏅ.\nᎠᏂᏆᎵᏏᏃ ᎤᏂᏄᎪᏨ, ᎩᎳᏉ ᎢᏴᏛ ᏭᎾᎵᏃᎮᎴ ᎡᎶᏛ ᎬᏩᏍᏕᎵᏍᎩ ᎬᏩᏡᏗᏍᎬ, ᎾᏍᎩ ᎢᏳᏅᏁᏗᏱ ᎤᏂᎯᏍᏗᏱ.\nᎤᏍᏗ ᎤᏔᏅ ᎫᎦ ᎤᏩᏛᎮ ᎪᏱᏁᎢ.\nᎩᏂᎨᏒᏃ ᏄᏛᏁᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ, ᎤᎵᏂᎪᎯᏍᏗᏍᎨᎢ.\nᎤᏍᏆᏂᎩᏓᏁᎴ ᎣᏍᏓᏓᏤᎵ.\nᎾᎯᏳ ᎤᎾᏨᏓᎵ ᎠᎾᏓᏛᎥᎦ, ᎤᏙᎯᏳ ᎤᏂᎦᎾᏍᏓ, ᏙᏣᏓᎩᏍᎪ ᏃᎴ ᎭᎾᏊ ᏙᏥᏯᎩᏍᎪ.\nᎠᏍᎪᎯᏃ ᎢᏯᏂᏛ ᎤᎾᏛᎦᏅ ᎤᏣᏘ ᎤᏂᏔᎳᏬᏒᎩ ᏚᏂᏂᏆᏘᎸ ᎠᏂᏔᎵ ᏗᎾᏓᏅᏟ.\nᎪᏍᏔᏱ ᎨᏒ ᎤᎧᏛ, ᏧᏍᏗ ᏗᎧᎵᏏᏐᏗ ᏓᎧᎭᏅ, ᏃᎴ ᏗᎪᏍᏔᏱ ᏕᎦᎾᏙᎬ ᎤᏤᏍᏗ ᎢᏳᏍᏗ.\nᎡᏣᏓᏅᏛᎵᎾᏗ ᏂᎦᎥ ᎠᏥᎸᏉᏗᏳ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎡᏆᎭᎻ ᎤᏩᏒ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎤᏓᏬᏅᏛ ᎠᏰᎲ ᎤᏁᎸᎢ.\nᎠᎩᏰᏗᏒ.\nᎠᎴ ᎤᏄᏪᎩᎯ ᎠᎴ ᎦᎦᎶᎢ ᏧᏙᏍᏙᏗ ᎪᏪᎸᎩ, (ᎯᎠ ᏂᎬᏅᎩ,) ᏄᏂᎬᏫᏳᏕᎩ ᎠᏁᎲ ᏄᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᏁᎲ ᎤᎬᏫᏳᎯ.\nᎪᏪᎵᏃ ᎤᏍᏗ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏒᎦᎸ ᏩᎩᏁᏒᎩ, ᎠᎴ ᎠᎩᏯᎣᏅᎩ; ᏥᎰᎵᏃ ᎠᏆᏅᏍᎦᎸ ᏩᏚᎵᏏ ᏥᏄᎦᎾᎯ ᏄᎦᎾᏒᎩ; ᎠᎩᏯᎥᏃ ᎠᎩᏍᏉᎵᏱ ᎡᎯᏍᏗᏳ ᏄᏩᏁᎸᎩ.\nᎠᎴ ᎩᎬᎯ ᎬᏅᎯ ᎠᏄᏬ ᎤᏄᏩᎥᎩ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎠᎪᏎᎭ ᎠᏥᏯᏂᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏂᏳᏉ ᏕᏥᏅᎵ ᎾᎿ ᏗᏤᎲ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎠᏂᎦᏔᎿᎢ ᎠᎴ ᏗᏃᏪᎵᏍᎩ; ᎢᎦᏛᏃ ᏙᏓᏥᎵ ᎠᎴ ᏙᏓᏣᏛᏂ ᏓᏓᎿᏩᏍᏛᎢ, ᎢᎦᏛᏃ ᏙᏓᏥᎵᎥᏂᎵ ᏗᏥᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎤᏲ ᏂᏙᏓᏨᏁᎵ ᏕᎦᏚᎿᎥᎢ;\n“ᏄᏂᏍᏆᏂᎩᏗ ᎠᏂᏧᏣ! \nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ, ᏗᏥᎨᏫ ᏗᏣᏓᏘᏂᏙᎯ! ᎯᎠ ᎢᏥᏪᏍᎩ; ᎩᎶ ᎢᎠᏎᎵᏛᏍᎨᏍᏗ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏎᏉᏉ ᎾᏍᎩ; ᎩᎶᏍᎩᏂ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎲᎢ, ᎾᏍᎩ ᎠᏍᏓᏱᏳ ᎤᏚᏓᎳ.\nᏂᏥᎥᎢ ᎢᎦ-ᎦᏘ ᏧᏪᏥ, ᎠᎴ ᎢᎦ ᏧᏪᏥ; ᎥᏝ ᏒᏃᏱ ᎠᎴ ᎤᎵᏏᎬ ᎢᏕᎯ ᏱᎩ.\nᎤᏁᏤᏃ ᏓᏆᎴᎷ ᎤᎴᏫᏍᏙᏗᏱ. ᎿᏉᏃ ᏭᏂᎦᏐᎠᏏᎴ ᎠᎹᏱ ᎢᏧᎳ ᏈᎵᎩ ᎠᎴ ᎠᏳᎾᎦ, ᎾᏍᎩᏃ ᎠᎦᏬᎡᎢ.\nᏕᎭᏓᏅᎡᎮᏍᏗᏍᎩᏂ ᏄᎵᏌᎶᏛᎾ ᎠᎴ ᏅᎦᏔᎲᎾ ᏚᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎯᎦᏔᎭᏰᏃ ᏗᏘᏲᏍᏗ ᎨᏒ ᏩᎵᏰᎢᎶᎯᎲᎢ.\nᏅᎩᎦᏔᎲᎾ ᎨᏒᎩ, ᎥᏝᏃ ᏱᏍᎩᏴᏔᏁᎢ; ᎠᎩᏰᎸᎭ ᎨᏒᎩ, ᎥᏝᏃ ᏱᏗᏍᎩᏄᏬᎡᎢ; ᎠᎩᏢᎬᎩ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎥᎩᏍᏚᎲᎩ, ᎥᏝᏃ ᏱᏍᎩᏩᏛᎯᎴᎢ.\nᏔᎷᏦ ᏭᎸᏅ ᏫᏚᎵᎪᏔᏅ ᏧᎾᏍᏗᏥ, ᏭᏭᏌᏅ ᏔᎷᏣ ᏣᎵ, ᎠᎴ ᏱᏚᏲᎰᏏ.\nᎬᎨᏳ ᎡᏆ ᎠᏣᏗ. ᏫᏥ ᏩᏓᏬᏣ, ᏫᏥ ᏩᏓᏬᏣ…\nᎠᎴ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ ᏥᏌ ᎦᎶᏁᏛ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏍᎩ, ᎠᎴ ᏗᏓᎴᏅᏗᏍᎩ ᎠᏲᏞᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᎤᏂᎬᏫᏳᎯ ᎤᎾᏤᎵᎦ. ᎾᏍᎩ ᎢᎩᎨᏳᎯ ᏥᎨᏒᎩ ᎠᎴ ᎤᏩᏒ ᎤᎩᎬ ᎢᎪᏑᎴᏔᏅᎯ ᏞᎩᏅᎦᎸᏛ ᎢᎩᏍᎦᏅᏨᎢ,\nᏦᏈ ᎦᏚᎲ ᎨᏙᎲᎩ ᎦᏓᏙᎵᏍᏗᏍᎬᎩ; ᏩᎦᎵᎰᏃ ᎾᏍᎩᏯ ᎾᏆᎵᏍᏓᏁᎸ ᎠᏆᏁᎳᏫᏎᎸᎩ, ᎠᏖᎵᏙ ᎠᎩᎪᎲᎩ ᎡᎳᏗ ᏅᏓᏳᏍᏗᏗᏒᎩ, ᎡᏆ ᎠᏄᏬ ᎾᏍᎩᏯᎢ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᏅᎩ ᏂᏚᏅᏏᏴ ᏥᏚᏂᏂᏴᏐᎢ; ᎠᎴ ᎠᏴ ᎠᎩᎷᏤᎸᎩ.\nᎤᏂᏁᏨᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸ ᏥᏌ; ᎥᏝ ᏲᏥᎦᏔᎭ. ᎯᎠᏃ\nᎤᎦᏃᏫ ᎨᏎ ᏩᎦ ᏃᎴ ᏐᏈᎵ ᎤᏂᏴᏍᏗ ᎭᏫᏂ ᏯᏂᏯᎠ ᏗᎦᎾᏌᎢ, ᏃᎴ ᎤᏁᏌᏴᏗ ᎨᏐ ᎪᎨ, ᏤᏆ ᏗᏍᏚᏗ ᏗᏍᏚᎩᏓ ᏱᎩ.\nᎤᏕᎵᏛᏰᏃ ᎠᏍᎦᎾ ᎦᏳᎳ ᏚᎸᏫᏍᏓᏁᎭ; ᎪᎯᏍᎩᏂ ᎨᏒ ᎠᏲᏍᏙᏗᏍᎩ ᏥᎩ ᎤᏲᏍᏙᏓᏁᎮᏍᏗ ᎬᏂ ᎠᏥᎧᎲᏒᎭ.\nᎠᎴ ᎾᏍᏉ ᎤᏁᎸ ᏧᏭᎪᏙᏗᏱ, ᏅᏧᎵᏍᏙᏔᏅ ᏴᏫ ᎤᏪᏥ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᏥᏌ ᏚᏪᏐᏨᎩ ᎨᎵᎵ ᎥᏓᎸᎢ, ᎾᏍᎩ ᏓᏈᎵᏯ ᎥᏓᎸ ᏥᏚᏙᎥ.\nᎩᎶᏃ ᏓᏓᏂᎸᎨᏍᏗ ᎠᏙᎴᎰᏍᎩ ᎠᏙᎴᎰᏍᎩ ᎨᏒ ᎤᏗᎦᎵᏍᏙᏗᎨᏍᏗ, ᎠᏙᎴᎰᏍᎩ ᎠᎦᎫᏴᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᎠᎦᎫᏴᏓᏁᎮᏍᏗ; ᎩᎶᏃ ᏓᏓᏂᎸᎨᏍᏗ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎤᏓᏅᏘ ᎨᏒ ᎤᏗᎦᎵᏍᏙ ᏗᏍᎨᏍᏗ, ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎠᎦᎫᏴᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᎠᎦᎫᏴᏓᏁᎮᏍᏗ.\nᎠᏎᏃ ᏉᎳ ᎥᏝ ᎣᏏᏳ ᏳᏰᎸᏁ ᎤᎾᏘᏅᏍᏗᏱ, ᎾᏍᎩᏰᏃ ᎤᎾᏓᏓᎴᏓᏁᎴ ᏆᎻᏈᎵᏱ, ᎠᎴ ᎥᏝ ᏳᎾᎵᎪᏁᎴ ᏚᏂᎸᏫᏍᏓᏁᎵᏙᎲᎢ.\nᏕᎹᏍᎦᏃ ᏫᏥᎦᏛᎢ, ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎬᎩᏁᏤᎸᎢ,\nᎠᎴ ᎾᏍᏉ ᎠᏍᎦᏯ ᎥᏝ ᎠᎨᏴ ᏯᎪᏢᎾᏁᎴᎢ, ᎠᎨᏴᏍᎩᏂ ᎠᏍᎦᏯ ᎠᎪᏢᎾᏁᎴᎢ.\nᎢᎾᏛ ᏂᎯ! ᎤᏂᏍᎦᏎᏗ ᎢᎾᏛ ᏧᏁᏥ ᏂᎯ! ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏰᏣᏗᏫᏏ ᎠᎩᎵᏲᎢᏍᏗ ᏗᎨᏒ ᏨᏍᎩᏃᎢ?\nᎾᏍᎩ ᎩᎶ ᎤᎶᏒᏍᏓᏁᏗᏱ ᎠᎴ ᎤᎶᏄᎮᏗᏱ ᏂᎨᏒᎾ ᎠᎾᎵᏅᏟ ᏥᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎤᎬᏩᎵ; ᎤᎬᏫᏳᎯᏰᏃ ᏗᏞᏤᎯ ᎯᎠ ᎾᏍᎩ ᎾᎦᎥ ᏧᏓᎴᏅᏛ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏨᏃᏁᎸᎯ ᎠᎴ ᎢᏨᏲᎢᏳᏓᏁᎸᎯ ᏥᎩ.\nᏫᏚᎾᎧᎿᏅᏃ ᎤᏂᎪᎮ ᏅᏯ ᎠᎲᏛ ᎨᏒᎢ, ᎤᏣᏘᏰᏃ ᎡᏉᎯᏳ ᎨᏎᎢ.\nᎬᏩᏂᏴᎲᏃ ᎬᏩᎴᎢ, ᎠᎴ ᏖᎸᎳᏗ ᏓᏫᏒ ᏙᏱᏗᏢ ᏫᎬᏩᏓᎢᏅᏎᎢ.\nᏉᎳᏃ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏅ ᏗᏂᎳᏫᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎪᎯ ᎢᎦ ᎢᏯᏍᏗ, ᎠᏆᏓᏅᏙ ᎠᏆᏎᎮᎲ ᏓᎩᎸᏫᏍᏓᏁᎲᎩ ᏂᎦᎥ ᏚᏳᎪᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᏣ ᎪᎯᎢᎪᎯᏛ ᏱᎬᏅᎭᏁᏍᏗ, ᏗᎨᏥᏴᏣᎬ ᎨᏎᏍᏗ, ᏗᏒᎾᏔᏅ ᏓᏂᏯᎩᏍᎨᏍᏗ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᎢᏥᏰᏍᏙᏗ ᏱᎩ.\nᎠᎴ ᏥᎻ, ᎠᎴ ᏏᏆᏏ, ᎠᎴ ᏣᏂ, ᎾᏍᎩ ᏗᎵᎫᏍᏙ ᎨᏥᏰᎸᎢ, ᎤᏂᎪᎲ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩ ᎥᎩᏁᎸᎢ, ᎠᏂᎦᏘᏏᏗᏢ ᏕᎪᎩᎾᏌᏕᏔᏅᎩ ᎠᏴ ᎠᎴ ᏆᏂᏆ ᎬᏂᎨᏒ ᎢᎬᏁᎯ ᏙᎦᏚᏓᏛᎢ; ᎠᏴᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᏁᎲ ᏬᎩᏂᎶᎯᏍᏗᏱ ᎤᎬᏩᎵ, ᎤᏅᏒᏃ ᏗᎨᏥᎤᏍᏕᏎᎴᎯ ᏗᏁᎲᎢ;\nᎠᏙᎴᎰᏍᎩᏍᎩᏂ ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᎠᎦᏔᎯᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏎᎵᏔᏅ ᎤᏁᏤᎸᎢ, ᎠᏰᎵ ᎤᏇᏓᎵ ᎨᏒ ᎤᎾᏄᎪᏫᏍᏗᏱ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏪᏅ ᎤᏪᏗᏱ,\nᏗᎬᎩᎶᏛ ᏧᎧᎭᏲᏛ ᏗᎭᎾᏬ ᏓᎩᎸᏙ ᎠᎶᏁᎥᎢ ᏕᎦᎶᏗ.\nᎥᏝᏰᏃ ᎩᎶ ᎠᏏ ᎢᎸᎯᏳ ᏳᏂᏆᏘᎶ ᎤᏩᏒ ᎤᏇᏓᎸᎢ; ᎨᎶᎰᏍᎩᏂ ᎠᎴ ᎠᏍᏆᏂᎪᏗᏍᎪᎢ, ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᏂᏓᏛᏁᎲ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ;\nᏗᏓᏥᎶᏍᏗᏍᎩ ᏚᏥᎶᏍᏔᏁ ᏫᎵᎻ.\nᎢᏓᏓᏅᏟ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᎴ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎾᏙᎴᎰᏍᎩ ᎤᎬᏫᏳᎯ ᏕᎤᏙᏍᏛ ᎤᏂᏁᎢᏍᏔᏅᎯ ᏥᎩ, ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ.\nᏂᎦᏛᏃ ᏴᏫ ᏫᏚᏯᏅᎲ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏍᎩᏯᏛᏓᏍᏓᏏ ᏂᏥᎥᎢ, ᎠᎴ ᎢᏦᎵᎩ;\nᎤᎧᏛ ᎠᎬᏱᏣ ᏄᏩᏁᎴ ᎤᏬᏯᏅ ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎬᎪᏩᏛᏗ ᏱᎨᏎ.\nᏣᏓᏏᏂᏕᏍᏗ-- -ᏤᏍᏗ ᎲᏅᏤᎸ! \nᎤᏍᎦᎣᏅ ᎨᏎᎢ ᏫᎵᎻ.\nᏅᏩᏓᎴ ᏚᏟᎶᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏬᏒᎩ; ᎦᎸᎳᏗᎡᎯ ᎤᎬᏫᏳᎯᎨᏒ ᎾᏍᎩᏯᏉ ᎠᎪᏙᏗ, ᎾᏍᎩ ᎠᎨᏴ ᏧᎩᏎ ᎠᎴ ᏧᏑᏴᏁ ᏦᎢ ᎢᏳᏟᎶᏛ ᎢᏒ ᎦᎸᎢ, ᎬᏂ ᏂᎦᏛ ᎤᎪᏐᏅ.\nᎠᎴ ᏝᏍᏗ ᎯᎠ ᏅᏓᏲᏥᏪᏏ ᎢᏤᎵᏒᎩ ᏙᏗᏣᏓᏅᏛᎢ; ᎡᏆᎭᎻ ᎣᎩᏙᏓ; ᎢᏨᏲᏎᏰᏃ ᎤᏁᎳᏅᎯ ᏰᎵᏉ ᎯᎠ ᏅᏯ ᏱᏕᎬᏓ ᏱᏕᎪᏢᎾ ᎡᏆᎭᎻ ᏧᏪᏥ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏥᏌᎳᏛᎦ ᏗᏦᏰᏂ ᎡᎳᏗ ᎢᏧᎵᏍᏔᏅᎯ ᏥᎩ, ᎠᎴ ᏗᏥᏂᎨᏂ ᏗᏩᎾᎦᎳᎢ;\nᏑᎾᎴ ᎣᏏᏉ ᏂᏓᎦᎵᏍᏔᏂ.\nᎠᎴ ᎦᏙᏃ ᎤᎾᏰᎯᏍᏗ ᏂᎦᏛᎿᏕᎦ ᏂᎪᎯᎸᎢ?\nᎠᏎᏃ ᎦᏲᏟ ᎤᏦᏍᏔᏁ, ᎠᏓᎾᏩᏍᏘ. ᏍᎩ ᎠᏧᏍᏛ, ᏃᎴ ᎠᏓᏅᏓᏍᏗᏍᎩ, ᎤᏩᏌ ᏣᏓᎵᏓᏍᏔᏁᎰ ᎢᏳᏍᏗ.\nᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ, ᎢᏥᏰᎯᏍᎬᏰᏃ ᎤᏲ, ᏱᏕᏥᎿᏍᏕᏢᏓ ᎾᏍᏉ ᎤᏣᎴᏍᏗ.\n“ᏰᎵ ᎤᏟᏂᎬᏁᎴ ᎣᏍᏓᏓᏤᎵ, ᏃᎴ ᎠᏍᎪᎵ ᎠᏥᎵᎥᏂᎴ ᎠᏣᏗ ᎦᏂᏓᏛ ᎬᏘ, ᏚᏓᎨᏏᏙᎴ ᏚᏏᎳᏛ ᎠᏟᏗ.” \nᏑᎾᎴ ᎤᏃᎴ ᎤᏛᎴᎮ ᎭᏫᏂ.\nᏧᎾᏚᎪᏓᏁᎸᎯ ᎨᏐᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏕᎤᏂᏲᏒ ᎢᎬᏱᏱ ᎤᏃᎯᏳᏅᎢ.\n“ᎠᏯ ᎠᏆᏤᎵ ᎨᏎᏍᏗ ᏂᎬᏁᎰᏅ.\nᏑᎾᏙᏓᏆᏍᏗ ᎢᎪᎯᏓ, ᎦᏲᏟ ᎪᏪᎵ ᎬᏂᎨᏒ ᎢᏗᎬᏁ, ᎠᏂᏖᎵᏙ ᏃᎴ ᎤᎬᏫᏳ ᏍᏉ ᏗᏟᏃᎮᏙᏗ.\n“Ꭳ, ᏤᏍᏗ ᏯᎦᏎᏍᏗᏍᎨᏍᏗ ᏂᎦᏛᏁᎲ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᎩᏚᏓ ᏂᎪᎯᎸ ᎠᏎ ᏓᏁᎶᏗᏍᎪ ᎤᎾᏗᎴᎩ ᎨᏒᎢ, ᎢᎦᏛ ᏍᏆᏂᏯ ᎠᎹᏰᎵ ᏧᎦᎾᏮ ᏗᏳᎾᏓᎴᏅᎯ.\nᎡᎳᏗ ᏩᎩᏅᏅ, ᎠᏆᏁᎸᏔᏅ ᎠᎩᏁᏥᏳᏍᏔᏁᏗ ᏥᎪᏩᏘᏍᎬ ᎠᏍᎦᏯ, ᎨᏍᏗᏰᏃ Crockett ᎤᏁᏨ ᏱᎨᏎ ᎤᏃᏪᎳᏅ.\n”ᏫᎵᎻ ᎪᏎᎰ ᏔᎵᏁ ᎠᏇᏥ.\nᎤᏩᏒ ᏚᏓᏘᎿᎥ ᎣᏍᏛ ᏗᎧᎿᏩᏗᏙᎯ, ᏧᏪᏥ ᎬᏬᎯᏳᎯᏳ ᎠᎴ ᎬᏩᎸᏉᏗᏳ ᎢᎬᏁᎯ.\n“ᎩᎳᏈᏴ ᎩᏅᎪᎢ ᏏᏆ ᎤᏴᏍᏗ,” ᎤᏪᎷᏁ ᎪᏱᏁ.\nᎢᏏᎵᏍᎩᏂ ᎤᏂᏍᏓᏩᏛᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎥᏝ ᏳᏂᏩᏛᎲ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ.\nᏰᎵ ᎠᎵᎮᎵᎬ ᎠᏴᏫᏯ ᎤᎬᏫᏳ ᎠᏂᏁᎵ ᏧᏂᏒᏍᏗ, ᏃᎴ ᎨᏍᏗ ᏯᎴᏫᏍᏗᏍᎨ ᎧᏃᎮᏍᎬ ᎣᏍᏓᎢᏒ.\nᎤᏂᏲᎯᏍᏔᎾ ᎠᎾᏓᏌᎩᏙᎲ, ᎩᎦ ᎠᏔᏍᎩᏍᎨ ᏃᎴ ᎤᎾᏑᎩᏍᏔᏅ ᎨᏎ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎤᎵᏍᏆᎵᏓ ᏱᎨᏎ.\n”ᎲᎦ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ?\nᎯᎠᏰᏃ ᎾᏍᎩ [ᏗᎧᎿᏩᏛᏍᏗ,] ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ, ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ, ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ, ᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏣᎬᎥᏍᎨᏍᏗ, ᎠᎴ ᏂᎦᎥ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏛᏍᏗ, ᎯᎠᏉ ᎢᎦᏪᏛ ᏥᎩ ᎾᎿ ᎠᏙᏣᎸᏍᎦ ᎤᏍᏆᎳ ᎧᏁᎢᏍᏗ ᎨᏒᎢ, ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᎾᏍᎩᏯ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ.\nᎯᏣᏅᏔ ᏍᎩᎾᎾ ᎢᏴ ᎢᎦ ᏣᏓᏴᎳᏔᏍᎬ “ᎤᏔᎷᎩᏍᎩ ᏓᏏᎳᏛ.\nᎯᎠᏃ ᏄᏪᎡᎴᎢ; ᎠᏇᏥ, ᏂᎪᎯᎸ Ꮙ ᎢᏧᎳᎭ ᎢᏂᏁᎸ , ᎠᎴ ᏣᏤᎵᏉ ᏂᎦᎥ ᎠᎩᎾᎥᎢ.\nᎠᏍᏆᏂᎪᎯᏍᏗ, ᏎᎦ ᎠᎪᎵᏰᏗ ᏃᏉ ᏩᏍᏆᏂᎪᏙᏗ.\n”ᎣᏍᏓ ᎤᏒᎯ, ᏫᎵᎻ!”\nᎥᎴᏃ ᎤᎾᏙᏢᏒ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏐᏈᎵ ᏓᏅᏩ ᎤᏁᏅᏍᏗᏱ ᏥᎨᎦᏛᏅᎢᏍᏙᎢ; ᏚᏄᎵᏍᏚᎸᎩᏃ ᏗᎵᏍᏚᎶ ᎠᏕᎸᏓᎶᏁᎨ ᏗᎪᏢᏔᏅᎯ ᎾᏍᎩᏯᎢ, ᏚᎾᎧᏛᏃ ᏴᏫ ᏚᎾᎧᏛ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᎤᏁᎷᏁᎢ ᏌᏌ.\nᏥᏌᏃ ᎤᏛᎦᏅ ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᏧᏢᎦᎥᏝ ᎤᏲᎱᎯᏍᏗ ᏱᎩ, ᎠᏥᎸᏉᏙᏗᏱᏉᏍᎩᏂ ᎤᏁᎳᏅᎯ, ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎠᏥᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ.\nᎤᏂᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᎢᏦᏑᎴᏍᎪᏰᏃ ᎦᏚᎢᏗᏢ ᎤᎵᏍᏈᏗ ᎠᎴ ᎠᏖᎵᏙ, ᎠᏎᏃ ᎠᏫᏂᏗᏢ ᎤᎧᎵᏨᎯ ᎨᏐ ᎠᏎᏉ ᎠᏓᎩᎡᏗ ᎨᏒᎢ ᎠᎴ ᏚᏳᎪᏛ ᏂᎨᏒᎾ.\nX. ᎠᎵᎪᏛᎾ  \nᎤᏓᎷᎸᎢ ᎤᎾᏙᏓᏆᏍᎬ, ᎦᏳᎳ ᏍᎦᏚᎩ ᎢᎬᎾᏕᎾ ᎤᏗᎦᎴᏲᏨ ᎨᏎ.\nᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᏧᎷᏫᏍᏔᏁᏗ ᎦᎶᎯᏍᏗ ᎾᎥᏂ ᏬᎩᏂᎷᏣ, ᎤᎵᏍᎩᏃᎳᏛ ᎠᏌᎻᏓ, ᏩᎩᏴᎳ ᎣᎭᏁ ᏭᏴᎸ.\nᎤᎵᎦᎵᏴᎭ ᎠᏙᎯ ᎤᎾᏛᏁᎸᏗ ᎠᏲᏓᏌᎲ ᎢᎬᎾᏕᏅ ᏕᏥᏩᏛᎲ ᎨᏥᎸ ᎠᏂᏧᏣ. ᎤᏍᏗ ᎦᏌᏆᎸ ᎠᏙᎯ.\nᎤᏎᎦᏨᎯᏰᏃ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎩᎶ ᏯᏲᎱᎯᏏ; ᏯᏎᎦᎩᏍᎩᏂᏃᏅ ᎣᏍᏛ ᎠᏍᎦᏯ ᎩᎶ ᎬᏩᏲᎱᎯᏎᏗ ᏱᏂᎦᎩ.\nᎤᎦᏔᎲᏎ ᎣᎭᏁ ᎢᏣ, ᎤᎪᎮ ᎬᏂᎨ ᎤᏓᏴᎳᏛ ᎡᎵᏍᏘ ᏲᎾ.\nᎠᏏ ᎢᎦ ᏥᏚᏥᎸᏌᏓᏕᎭ, ᎢᏦᎯᏳᎲᎦ ᎢᎦ ᏚᎸᏌᏛᎢ, ᎾᏍᎩᏃ ᏂᎯ ᎢᎦ ᏚᎸᏌᏛ ᏧᏪᏥ ᎨᏎᏍᏗ. ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏥᏌ, ᎠᎴ ᎤᏓᏅᏒᎩ ᏚᏗᏍᎦᎳᏁᎸᎩ.\nᏥᎦᎵᎰ ᎢᏳᏍᏗ ᏄᏛᏁ.\nᎠᎴ ᏙᏓᏳᎦᎵᏏ, ᎠᎴ ᎤᎾᏠᎾᏍᏗ ᏩᏁᎲ ᏮᏓᏳᏎᎮᎵ; ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᎾᏥᎸᏉᏛᎾ ᏱᎨᏐᎢ, ᎤᏤᎵᎪᎯᏍᎩᏂᏃᏅ ᎤᏩᏒ, ᎠᎴ ᏧᏴᏫ ᎠᏁᎲᎢ, ᎠᎴ ᎤᏩᏒ ᎦᏁᎸᎢ.\nᎿᏉᏃ ᎤᏍᏆᏛ ᏂᎦᏛ ᎦᏬᏂᏍᎬ ᎠᎾᏛᎩᏍᎬ ᏴᏫ, ᎨᏐᏂ ᏭᏴᎴᎢ.\nᎠᎴ ᎩᎶ ᎠᏴ ᎠᎩᎪᏩᏘᏍᎩ ᏅᏛᎩᏅᏏᏛ ᎠᎪᏩᏘᏍᎪᎢ.\nᎠᎹᎢᏒᏃ ᏅᏃᎯ, ᎠᎹᏱ ᎤᏂᎷᏤᎢ. ᎠᏳᎾᎦᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏂ ᎠᎹ, ᎦᏙ ᎠᎩᏲᏍᏙᏓᏁ ᎥᏆᏬᏍᏗᏱ?\nᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ--ᎤᏤᎵ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏙᏓ, ᎾᏍᎩ ᏂᎪᎯᎸ ᎦᎸᏉᏙᏗ ᏥᎩ, ᎠᎦᏔᎭ ᏂᎦᏥᎪᎥᏍᎬᎾ ᎨᏒᎢ.\nᎿᏉᏃ ᏇᏍᏓ ᏚᎵᏃᎮᏔᏅ ᏗᏂᎳᏫᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏏᏐᎢᏧ ᏫᎲᏍᏓ? ᏏᏐᎢ ᏖᏏ.\nᎠᎴ ᎶᏗ ᎤᏓᏅᏘ ᏧᏭᏓᎴᏎᎢ, ᎤᏕᏯᏔᏁᎸ ᏄᎾᎵᏏᎾᎯᏍᏛᎾ ᎠᏁᎲ ᎠᏂᏍᏚᎾᎢ.\nᎾᏍᎩ ᏗᎩᎦᏴᎵᎨ ᎥᏝ ᏳᏚᎵᏍᎨ ᎤᏃᎯᏳᏗᏱ, ᎢᏴᏛᏉᏍᎩᏂ ᏄᏅᏁᏔᏁᎢ, ᎠᎴ ᏚᎾᏓᏅᏛ ᎢᏥᏈᏱᏉ ᏫᏂᏚᏅᏁᎢ,\nᎯᎠᏃ ᏁᏍᏗᏪᏎᎸᎭ ᎠᏍᎦᏯ ᎦᏁᎳ, ᏗᏕᏲᎲᏍᎩ ᎯᎠ ᏅᏗᏣᏪᏎᎭ, ᎮᏢ ᎠᏁᏙᎯ ᎤᏂᏴᏍᏗᏱ ᎾᎿ ᎧᏃᎯᏰᎩ ᎢᏧᎳᎭ ᎣᎦᎵᏍᏓᏴᏗᏱ ᎬᏂᏍᏓᏩᏗᏙᎯ?\nᎨᏍᏗ ᎪᎰᏍᏗ ᎤᏐᏱ ᏱᎨᏎ Houston ᏱᎦᏁᎳ ᎤᎬᏫᏳ ᎠᏂᏁᎵ, ᎤᏒ ᎢᏴ ᏱᎦᏬᏂ ᎤᎾᏅᏗ, ᎯᎸᎢᏴ ᏅᏙ ᎧᎸᎬ ᎢᎪᎯᏛ, ᎨᏍᏗ ᎣᏍᏓ ᎦᏢᏍᎩ ᏱᎨᏎ ᎤᎵᏏᎬ, ᎤᎵᏨᏓᏆ ᎦᏬᏂᏍᎨ ᏃᎴ ᎠᏗᏔᏍᎨ ᏃᎴ ᎤᏛᎦᏍᏕ ᎠᏂᏃᎩᏍᏗᏍᎬ ᎧᏃᎩᏍᏗ.\nᎥᎥ, ᎪᎱᏍᏗ. \nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎮᎾ, ᏤᏥ ᎬᏅ. ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏬᎯᏳᏅᎩ ᏥᏌ ᏄᏪᏎᎸᎢ, ᎠᎴ ᎤᏪᏅᏒᎩ.\nᎢᎦᎦᏛᏍᎩᏂ ᏱᏕᏙᎭ, ᎾᏍᎩᏯ ᎾᏍᎩ ᎢᎦᎦᏛᎢ ᏤᎭ, ᏕᎦᏚᏓᏕᏫᏒ ᎢᎬᏒ ᎨᏒᎢ; ᎠᎴ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ ᎤᎩᎬ ᎢᎩᏅᎦᎵᎭ ᏂᎦᎥ ᎢᎩᏍᎦᏅᏨᎢ.\nᎠᎴ ᎤᎾᏓᏅᏘᏐᏗᏱ ᎤᏅᏒ ᎤᎾᏚᏓᎴᏍᏗᏱ ᎠᏍᎩᎾ ᎤᏌᏛᎢ, ᎾᏍᎩ ᎫᏴᎩᏅᎯ ᏥᎩ ᎤᏩᏒᏉ ᎠᏓᏅᏖᏍᎬ ᎢᏧᏩᏁᎸᎯ.\n”ᎤᏙᎯᏳᏗ,” ᎤᏛᏁ ᏣᏄᏏ.\nᏐᏉ ᎤᏒᎯ, ᏩᏏᏓᏂ ᎠᏁᎯ ᎢᏳᎾᏛᏁᏗ ᎾᏆᏛᏁᎸ, ᎠᏤᎯ ᏗᎦᎳᏫᎩ Alabama ᏗᎾᏓᏬᏍᎩ ᏗᏁᎲᎢ ᏓᏳᎶᏒᎯ ᎠᏓᎦᏘᏕᎯ ᏥᏯᏘᏅᏒ ᎤᎦᏖᏃᎵᏙᎸ.\nᏑᎾᎴᏃ ᏗᎦᏚᎲ ᏮᎠᎦᏛᎢ ᎠᎪᏄ ᎤᏲᏏᏌᏅᎩ.\n”ᎨᏍᏗᏗ ᎣᏍᏓ ᎠᎫᎷᏤᏗ ᏯᏆᎵᏍᏕᎸᏙᏔᎾ,” ᎤᏛᏁ ᏌᏌ.\nᎾᏍᎩ ᎠᏂᎦᏗᏓ ᎦᎵ ᎠᏂᏴᏫᏯ.\nᎿᏉᏃ ᏅᏯ ᎤᏂᎲᏍᎩ ᎤᏲᎱᏒᎯ ᎦᏅᎢ. ᏥᏌᏃ ᏚᏌᎳᏓᏅᎩ ᏗᎦᏙᎵ, ᎯᎠ ᏄᏪᏒᎩ; ᎡᏙᏓ, ᎬᏯᎵᎡᎵᏤᎭ ᏥᏍᏆᏛᎦᏁᎸ.\n“ᏣᏗᏍᏉ ᎠᏯ,” ᎤᏛᏁ ᏥᏍᏕᏥ, ᏕᎦᏅᏙᎬ ᏕᎦᏅᎦᎵᏍᎨᎢ.\n“ᎪᎱᏍᏗ ᏳᏰᎵᏛᎾ ᏂᎦ ᎾᎾᏛᎦ!”  \nᏫᏕᎦᎦᏂᏍᎬ ᎠᎬᏱ ᏙᎦᏦᏒ ᎤᎬᏫᏳ ᎠᏂᏁᎵ, ᏯᏛᎾ ᎣᏍᏓ, ᏱᏙᎦᏙᎵᏤ.\nᎠᎴ ᎦᏙ ᏯᎲᎦ ᏴᏫ ᏱᎦᏁᏟᏴᏍᏓ ᎤᏓᏅᏙ?\nᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏎᎢ; ᎤᎦᏔᎲᏒᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ,\nᎯᎠᏃ ᏄᏪᏎᎴ ᏥᏌ, ᏣᎬᏫᏳᎯ, ᏍᏆᏅᏓᏛᎭ ᏫᎷᏨᎭ ᏣᏤᎵᎪᎯ.\nᎯᏁᎢᏍᏗ ᎤᏂᏲ ᎠᏂᏴᏩᏁᎦ ᎠᏂᏍᎦᏯ ᏓᏂᏁᎲ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎤᎾᎵᎩᏛ ᏚᏅᏓᏒ ᎤᎾᏗᏍᎦᏟ, ᎠᏎᏃ ᎨᏍᏗ ᏱᏥᎪᏩᏘ ᏍᎩᎾᎾ.\nᏍᏓᏯ ᎢᏥᏟᏅᏨ ᏕᏣᏍᎩᏨ ᏗᏣᎵᎢ.\nᎾᏍᎩ ᏥᏌ ᏚᏙᎥ ᏂᎦᏗᏳ ᏧᎾᎵᏂᏆᏁᏗᏱ ᎾᏍᏉ ᎦᎸᎶᎢ ᎠᏁᎯ, ᎠᎴ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎡᎶᎯ ᎭᏫᏂᏗᏢ ᎠᏁᎯ;\nᎾᎯᏳ ᎢᎦ ᎩᎶ ᎦᏌᎾᎵ ᎤᎩᎴᏍᏗ, ᎤᎿᎥᏃ ᎦᎵᏦᏕ ᎠᎮᏍᏗ, ᏞᏍᏗ ᏅᏓᏳᏠᎠᏒᎩ ᎤᏫᏛᏗᏱ; ᎠᎴ ᎩᎶ ᏠᎨᏏᏫᎡᏙᎮᏍᏗ, ᏞᏍᏗ ᎾᏍᏉ ᏅᏓᏳᏨᏒᎩ.\nᎨᏍᏓᏗ ᏂᎦᎾ ᏰᎬᏁ ᎯᎠ ᎠᏂᏣᎳᎩ ᏃᎴ ᏣᎾᏁᎳᏗᏍᎨ ᎠᏂᏔᎵᎭ ᏧᎾᎵᎪᏗ ᎠᎴ ᎤᎵᎢᎦᎢ ᎱᎾᏓᏍᎬᎢ ᎤᏁᏓᏍᏗ.\nᎾᏍᎩ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᏗᎩᏲᎱᏒᎯ ᏥᎨᏒᎩ, ᎢᎬᏂᏛ ᎢᎦᏠᏯᏍᏔᏅ ᎦᎶᏁᏛ ᎠᎬᏂᏛᎢ, (ᎬᏩᎦᏘᏯ ᏅᏓᏙᎵᏍᏗ ᎨᏒ ᎡᏥᏍᏕᎸᏔᏅ;)\nᎿᏉᏃ, ᎠᏴ ᎾᏍᎩ, ᏚᏬᏎᎸ, ᎤᎾᏏᏅᏒᎩ, ᎡᎳᏗ ᏫᏚᏂᏅᏨᎩ.\nᎦᎪ ᎢᏴᏛ ᏅᏓᎬᏁᎵ ᎦᎶᏁᏛ ᎢᎩᎨᏒᎢ? ᏥᏌ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏲ ᎢᏴᏓᏛᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏓᎪᏄᎶᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎩᏰᎸᎭ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ?\nᎾᏍᎩᏃ ᎤᏂᏌᎳᏓᏅ, ᏗᎵᏍᏕᎸᏙᏗ ᏚᏅᏔᏅᎩ, ᎤᎾᎸᎸᎩ ᏥᏳ; ᎠᏂᏍᎦᎢᎲᏃ ᎤᏍᏓᎾᎸ ᎤᏂᏃᏠᎯᏍᏗᏱ ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎡᎳᏗ ᏂᏚᏅᏁᎸᎩ ᏓᏰᏙᎳᏛᎢ, ᎤᏂᏄᎯᏒᏉᏃ.\nᏍᎩᎾᎾ ᏄᎾᏛᏁᎴ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏴᏫᏯ ᏄᏍᏛ ᎠᏃᎵᎬ.\nᎾᏍᎩ [ᏥᏌ ᎦᎶᏁᏛ] ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏥᏄᏩᏁᎸ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎪᎯᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎪᎯᏳᏗᏱ ᎤᎩᎬ; ᏧᎾᏄᎪᏫᏎᏗᏱ ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎦᏳᎳ ᎠᏍᎦᏅᏨᎯ ᎨᏒ ᎦᎬᏩᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎬᏂᏗᏳ ᎨᏒ ᎢᏳᏩᏂᏌᏅᎯ;\nᏐᏉ ᎤᏒᎯ ᎣᎩᏃᏔᏅ ᏙᏱᏨ ᎤᏪᏘ ᎬᏂᎨ ᎦᏌᏆᎸ.\nᎠᎴ ᎾᏍᎩᏯᏉ ᏥᏌ ᏄᏪᏒ ᎤᏁᏨ ᏂᏚᏂᏪᏎᎴᎢ: ᏚᏂᏲᏎᏃ.\nᎠᏴ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᎥᏝ ᎤᏁᎳᏅᎯ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵ ᏘᎩ, ᏗᏅᏃᏛᏉᏍᎩᏂ ᎤᏅᏒ.\nᎠᏃ ᏍᎩᏄᏍᏛ ᎤᏤᏥᏍᏗ, ᏧᏓᏁᏥᏴᏍᏔᏁᏗ ᎤᎾᏓᏁᏛᏗ ᎠᏂᏴᏫ, ᎾᏍᎩᏯ ᎤᏃᎴ ᏥᏓᏌᏙᏱᏍᎪ ᎠᎴ ᎤᏃᎴ ᏥᏕᎦᏂᏏᏂᎩᏍᎪ ᎯᎸ ᎢᏣ.\nᎠᎩᏐᏅᎢᏍᏗᏍᎩ ᎠᎴ ᏗᏓᏂᎸᎩ ᏂᎨᏒᎾ ᏥᏁᎬᎢ ᏧᏬᎪᏓᏁᎯ ᎤᏪᎭ. ᎧᏃᎮᏛ ᎠᎩᏁᏨᎯ ᎾᏍᎩ ᏧᏬᎪᏓᏁᏗ ᎨᏎᏍᏗ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ.\nᏥᏌᏃ ᏧᎨᏳᎯᏳᎨᏒᎩ ᎹᏗ ᎠᎴ ᎤᎸᎢ ᎠᎴ ᎳᏏᎳ.\nᏓᎩᏯᏪᎢᏍᏗᏍᎪ ᏓᎾᏦᏍᎬ.”\nᎦᎸᎳᏗ ᎠᎩᏗᏱ ᎡᎶᎯᏃ ᏗᏆᎳᏏᏗᏱ. ᎦᏙ ᎤᏍᏕᏍᏗ ᎦᎵᏦᏕ ᏓᏍᎩᏯᏁᏍᎨᎵ? ᎠᏗᎭ ᎤᎬᏫᏳᎯ; ᎠᎴ ᎭᏢ ᎠᏆᎵᏙᎯᏍᏙᏗᏱ;\nᎿᏉᏃ, ᏂᎯ ᎡᏙᏓ, ᏍᎩᎸᏉᏓ ᏨᏒ ᏗᏦᎸᎢ, ᎾᏍᎩᏯ ᎥᎩᎸᏉᏗᏳ ᏥᎨᏒᎩ ᏗᏦᎸ ᎠᏏᏉ ᏂᎬᎾᏛ ᎾᏓᎴᏂᏍᎬᎾ ᏥᎨᏒᎩ.\nᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᏙ ᏓᏲᏣᏛᏁᎵ ᏙᏓᏲᎩᎸᏫᏍᏓᏁᎵ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ?\nᏕᏣᎵᏂᎪᏍᎬᎢ ᎬᏔᏅᎯ ᎤᏣᏘ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏄᎵᏂᎬᎬ ᎦᎸᏉᏗᏳᎤᏤᎵᎦ, ᎾᏍᎩ ᏂᎦᎥᏉ ᎤᎬᏩᎵ ᏗᏨᏂᏗᎦ, ᎾᏍᎩ ᏂᎦᎥᏉ ᎤᎬᏩᎵ ᏗᏨᏂᏗᏳ ᎢᏣᎴᏍᏙᏗᏱ, ᎠᎴ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᎢᏤᎵᏍᎬ ᎢᏥᎩᎵᏲᎬᎢ, ᎤᎵᏠᏯᏍᏙᏗᏱ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ;\nᎾᎿᏃ ᏫᎣᎩᎧᏙᏴ ᏌᏈ ᎭᏫᏂᏗᏢ ᎣᎩᏅᏍᏔᏅᎩ, ᎦᏃᎸᎥᏍᎬᏰᏃ ᎢᎬᏱᏗᏢ ᏓᏳᎦᏛᎩ.\n“Ꮎ!” ᎤᏛᏁ, ᎤᎵᎮᎵᏍᏗ.\nᏥᏌᏃ ᎤᎷᏨ ᏏᏌᎵᏱ ᏇᎵᎩᏱ, ᏚᏛᏛᏅᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᏴᏫ ᎤᏪᏥ ᏥᎩ ᎦᎪ ᎬᏉᏎᎰ ᏴᏫ?\nᎤᎵᎮᎵᏍᏗ ᏱᎩ.”\nᎠᏂᏆᎵᏏ ᏚᎾᏘᏃ ᎮᎸ ᎾᏍᎩ ᏗᎨᏫᎢᏳᎵᏍᏔᏅᎯ.\nᏣᏗ ᎧᏅᏂᏍᎩ, ᏍᎩᎾᎾ ᎯᏗᎦᏔᎭ.\nᏂᎦᏓ ᎠᏯ ᏕᎬᏆᎧᎾᏅ.\nᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎯᎩᎵᏲᎬᎢ, ᎠᎴ ᎲᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᎩ ᏗᎦᎮᎵᏎᏗ ᏂᎨᏒᎾ ᎨᏒ ᎾᏍᎩ Ꮎ ᎤᏂᏲ ᏥᎩ; ᎠᎴ ᏘᎪᎵᏰᎥᎯ ᎢᎩ ᎾᏍᎩ ᎣᎩᏅᏏᏛ ᏣᎾᏗᎭ ᎾᏍᎩᏃ ᏄᏍᏛᎾ ᎨᏒᎢ, ᎠᎴ ᏣᏙᎴᎰᏒ ᎠᏂᏰᎪᎩ ᎨᏒᎢ;\nᎾᏍᎩᏃ ᎯᎠ ᏧᏓᎴᏅᏛ ᎠᎴᏅᎲᎭ ᎾᏍᎩ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎿᏉ ᎦᎸᎳᏗ ᏫᏗᏣᎧᎾᏅᎭ, ᎠᎴ ᏕᏥᏌᎳᏓᏅᎭ ᏗᏥᏍᎪᎵ; ᎡᏧᏓᎴᏍᏗᏰᏃ ᎨᏒ ᎾᎥᏂᏳ ᏣᎢᏎᏍᏗ.\nᏗᎧᎿᏩᏛᏍᏗᎪᏃ ᏓᏡᏗᎭ ᎤᏁᎳᏅᎯ ᏚᏚᎢᏍᏔᏅᎢ? ᎬᏩᏟᏍᏗ, ᎢᏳᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏴᏫ ᎨᏥᏁᎸᎯ ᏱᎨᏎ, ᎾᏍᎩ ᏰᎵ ᎬᏂᏛ ᎬᏩᏓᏁᏗ ᎨᏒᎢ, ᎤᏙᎯᏳᎯᏯ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᎠᏚᏓᎴᏍᏗ ᎨᏒ ᏴᏗᏓᎴᎲᏍᎨᎢ.\nᏏ ᏯᏍᏈᏙᎲᏍᎬᎾᏉ ᎦᏬᏂᏍᎬ, ᎦᏟᎮ ᏫᎵᎻ.\nᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᏔᎵ ᎠᎹᏟ ᏂᎬᏍᎪᎢ;ᎠᎴ ᏂᎦᎥ ᎠᎩᎾᎥ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏥᎥᏍᎪᎢ.\n“Ꭵ, ᏍᎩ ᏄᏍᏗ,” ᎤᏬᎯᏳᏔᏁᎢ ᏌᎳᏓ.\nᎨᎵᎠ ᎦᏲᏟ ᎠᏆᏘᏰᎴ ᏄᎾ ᏗᎦᏓᏫᏔᏅ.”\nᎢᏤᏯᏔᎮᏍᏗ, ᎢᏓᎵᏅᏟ, ᏞᏍᏗᏉ ᏂᎯ ᎩᎶ ᎤᏬᎯᏳᎯᏍᏛ ᏂᎨᏒᎾ ᎤᎾᏫ ᏳᏯᎡᏍᏗ, ᎾᏍᎩ ᎠᏓᏅᏒᎯ ᎬᏂᏛ ᎤᏁᎳᏅᎯ.\nᏌᏩᏂᏃ ᏁᏨ ᎯᎠ ᏄᏪᎡᎢ; ᏂᎯ ᎡᏍᏗᏔᏲᏏ ᎤᎬᏫᏳᎯ ᎠᎩᏙᎵᏍᏗᏱ, ᎾᏍᎩᏃ ᏞᏍᏗ ᏌᏉᎤᏅ ᎯᎠ ᏥᏍᏗᏁᎩ ᏯᎩᎷᏤᎴᏍᏗ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ Ꮎ ᎠᏛᏂᏗᏍᏙᏗ ᎦᏚ. ᎩᎶ ᎠᎩᎷᏤᎮᏍᏗ ᎤᏲᏏᏐᏗ ᏱᎨᏎᏍᏗ, ᎠᎴ ᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎤᏔᏕᎪᏗ ᏱᎨᏎᏍᏗ.\nᏏᏅᏓ ᎢᎪᏓ ᏯᏓᏅᏖᎳ, ᎤᏐᏱᏉ ᏗᎫᎪᏙᏗ, ᏄᏦᏍᏛᎾ ᎠᏑᏯᎩᏍᏗ.\nᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᎩ Ꮎ ᏱᏄᏍᏗ ᎩᎶ ᎤᎪᎸᏛ ᎨᏒᎢ, ᎠᎴ ᎤᏍᎦᏅᏨᎢ, ᎤᏩᏒᏉ ᏓᏓᏚᎪᏓᏁᎲᎢ.\nᎠᏆᎦᏌᎴᏍᎩ ᏣᏉ ᎤᎵᎮᎵᏍᏗ ᎢᏯᏛᏁᏗ.\nᎾᏍᎩᏃ ᏂᎦᏛ ᏚᏃᎮᎮᎸ, ᏦᏈ ᏚᏅᏎᎢ.\nᎠᎧᏔᎮᎢ ᎰᎻ ᏗᎩᏏ ᎦᏓᏍᎬᎢ ᎣᏍᏓ ᎠᏛᎯᏍᏙᏗ ᏏᏆ.\n“ᎧᏂᎩᏓ ᏓᏆᏙᎥ,” ᎤᏛᏁ ᎤᏟᏂᎩᏓ ᎤᏬᏂᎯᏍᏗ.\nᏕᎫᎪᏓᏏᏍᎩᏂ ᎤᎬᏫᏳᎯ ᎢᎩᎩᎵᏲᎢᏍᏗᏍᎪ ᎾᏍᎩ ᎡᎶᎯ ᎤᏂᏍᎦᏅᏨ ᏕᎨᎫᎪᏓᏁᎲ ᎢᎦᏠᏯᏍᏙᏗᏱ ᏂᎨᏒᎾ.\nᎢᏥᏍᎦᏯ ᏗᏓᏓᏅᏟ, ᎯᎠ ᎪᏪᎸ ᎠᏎ ᎤᏙᎯᏳᏗ ᎨᏒᎩ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏕᏫ ᎠᎰᎵ ᏧᏩᏔᏁ ᏧᏁᏤ ᏧᏓᏏ ᎠᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᏧᏘᏂᏙᎸᎯ ᏥᏌ ᏥᎬᏩᏂᏱᏍᎬᎩ;\nᎼᏏᏰᏃ ᎧᏃᎮᎭ ᏄᏍᏛ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ, ᎯᎠ ᏥᏂᎦᏪᎭ, ᎩᎶ ᏴᏫ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ ᎬᏂᏛ ᎠᏩᏛᏗᏍᎨᏍᏗ.\nᎤᏃᏴᎬ ᎤᎭᎨᏛ ᏚᏑᎬ ᎭᏫᏂ ᏧᏍᏚᎲᏍᎪ ᏅᏩᏍᏛ, ᏚᏩᏂᎦᏢ ᏚᏓᏢᏍᏛ ᎪᎰᏍᏗ ᏄᏦᏍᏛᎾ ᏫᏂᎦᎵᏍᏗᏍᎬ, ᎾᏍᎩᏯ ᏔᎷᎩᏍᎩ ᏗᎬᏅ ᎠᏰᎵ ᎦᏆᏘ, ᎭᎾ ᎠᏰᎵ ᏄᏛᏁ.\nᎠᏎᏃ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᏙᏳ ᏣᏏᎾᏏᏁ ᏃᎴ ᎤᏕᎵᏍᏗ ᏣᏕᎦᏂᏱᏍᎨ ᎩᎶ ᎤᏩᏏᎧ ᎢᏴ ᏰᏙᎭ ᏍᎩᎾ ᏯᏓᎢᏗᏏ ᏓᏰᏠᎮᎢ ᏧᏪᎳ ᏕᎦᎵᎩᎡᎮᎢ ᏃᎴ ᎤᎬᎭᏓ ᎢᏣ ᏣᏗᏍᎦᎳᏍᎨᎢ.\n“ᎠᏤ ᎧᏁᏍᎪ ᎦᏅᎪᎢ,” ᎤᏬᏒᎯᏌᏁᎢ ᎰᎻ.\nᏥᏌᏃ, ᎦᏙᎵᎬ ᎤᏙᏯᏅᎯᏕᎢ, ᎠᎴ ᎤᏒᏂᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎣᏏᏳ ᏥᏰᎸᏅ; ᏣᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ.\nᎦᏙᎨᏃ ᏓᏓᏛᏂ? ᏥᎪ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᎦᏂᏉ? ᎬᏩᏟᏍᏗ. ᎥᏝᏍᎩᏂ ᎠᏍᎦᏂ ᏱᎬᎩᎦᏙᎥᏎ ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗ; ᎥᏝᏰᏃ ᏱᎦᏥᎦᏔᎮ ᎤᏲ ᎠᏚᎸᏅᏗ ᎨᏒᎢ, ᎢᏳᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎯᎠ ᏄᏪᏒᎾ ᏱᎨᏎᎢ, ᏞᏍᏗ ᏣᏓᏚᎸᎡᎸᎩ.\nᎾᏍᎦᎢᎲᎾᏃ ᎧᏁᎢᏍᏗᏍᎨ ᏕᎤᏙᎥ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᎠᏂᎪᎢ ᎤᏂᏬᏂᏍᏗ ᎠᏂᏬᏂᏍᎩ ᎠᎾᏗᏒᎯᎮ ᎠᏂᏭᏂᏍᎬᎢ. ᎠᏎᏃ ᎤᎾᏁᎶᏔᏁ ᎬᏩᎯᏍᏗᏱ.\nᎾᎯᏳᏃ ᏈᏓ ᎤᎴᏁ ᎠᏰᎵ ᎠᏂᏅ ᎠᏃᎯᏳᎲᏍᎩ, ᎾᏍᎩ ᎾᏂᎥ ᏚᎾᏙᎥ ᎠᏍᎪᎯᏧᏈ ᏔᎳᏍᎪᎯ ᎢᏴᏛ ᎨᏎᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ;\nᎾᏍᎩᏃ ᎣᎩᏃᏁᎸᎩ ᎤᎪᎲᎢ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏩᏒ ᎦᏁᎸᎢ ᎾᏍᎩ ᎦᏙᎨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏦᏈ ᏘᏅᎵ ᎠᏂᏫᏅ, ᎠᎴ ᏫᏯᏅ ᏌᏩᏂ ᏈᏓ ᏧᏙᎢᏛ;\nᏥᏌᏃ ᏔᎵᏁ ᎤᎷᏨᎩ ᎨᏂ ᎦᏚᎲᎢ ᎨᎵᎵᏱ, ᎾᎿ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᎹ ᎤᏬᏢᏔᏅᎢ. ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎤᎬᏫᏳᎯ ᎠᏍᏕᎵᏍᎩ ᎡᎲᎩ, ᎾᏍᎩ ᎤᏪᏥ ᎤᏢᎬᎩ ᎨᏆᏂ.\nᎾᏍᎩᏍᎩᏂ Ꮎ ᎦᏳᎳ ᏥᏥᎭ ᏕᏥᏂᏴᏎᏍᏗ ᎬᏂ ᎢᏥᎷᏨᎭ.\nᎢᏳᏃ ᎡᎶᎯ ᎢᏣᎵᎪᎯ ᏱᎨᏎᎢ, ᎡᎶᎯ ᏧᎨᏳᎯᏳ ᏱᎨᏎ ᏧᏤᎵᎦ. ᎠᏎᏃ ᎡᎶᎯ ᎢᏣᎵᎪᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎢᏨᏯᏑᏰᏛᏍᎩᏂ ᎡᎶᎯ ᏥᎩ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎡᎶᎯ ᎢᏥᏍᎦᎦ.\nᏅᎦᏍᎪᎯᏃ ᏄᏕᏘᏴᎲ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎢᎾᎨ ᏓᎾᏱ ᎣᏓᎸ ᎤᏪᏲᏓᏛ ᎠᏓᏪᎵᎩᏍᎬᎢ.\nᎾᎥ ᎦᏙᎨ ᎤᏓᎸᏉᏗ ᏓᏓᎧᏁᎢ.\nᎬᎨᏳ.\nᎠᎴ ᏅᏩᏓᎴ ᎤᎵᏂᎩᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᎪᎥᎩ ᎦᎸᎳᏗ ᏓᏳᏠᎠᏒᎩ, ᎤᎶᎩᎸ ᎤᏄᏬᏍᏛᎩ; ᎠᎴ ᎠᏍᎪᎵ ᎤᏅᎪᎳᏛᎩ, ᎠᎴ ᎤᎧᏛ ᏅᏙ ᎢᎦ ᎡᎯ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏧᎳᏏᏕᏂᏃ ᏗᎦᎫᏍᏗᏗ ᎠᏥᎸ ᏗᎪᏢᏔᏅᎯ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᏗᎾᏓᏅᏟᏍᎩᏂ ᎠᏍᎦᎩ ᎤᎵᏏᎬᏉ ᎡᎭ, ᎠᎴ ᎤᎵᏏᎬᏉ ᎡᏙᎭ, ᎥᏝ ᎠᎴ ᏯᎦᏔᎭ ᏩᎦᏛᎢ, ᎤᎵᏏᎬᏰᏃ ᏚᎨᏩᏛ.\nᏤᎵᎪᏃ ᎤᎾᏂᎩᏒ ᎤᏂᏣᏘ ᏴᏫ ᎬᏩᏍᏓᏩᏛᏒᎩ.\nᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵᎦ ᎯᎠ ᏄᏍᏗ, ᏗᏣᏓᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᎢᏨᎨᏳᎢᏳ ᏄᎵᏍᏔᏅᎢ.\nᎠᏏᏉᏃ ᎦᏬᏂᏍᎨᎢ, ᎬᏂᏳᏉ ᎤᏍᎪᏍᏛ ᎤᏣᎩᎳ\nᏂᎦᏓ ᏗᎦᏟᏃᎡᏔᏅ ᎤᏐᏱ ᏚᏄᎪᏔᏅ ᏓᎭᏃᏫ ᏗᏄᎪᏗᏍᎩ ᏗᎪᏪᎵᏍᎩ ᏚᏭᎪᏔᏅ.\nᎢᏣᏓᏅᏟ ᎨᏒ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏩᎵᎮᎵᎩ ᎠᏥᏌᎳᏓᏅᎢ,\nᎤᏓᏅᏖᎴ ᎤᏍᏗ ᎠᏣᏗ, ᎾᏍᎩᏃ ᏂᎬᏪᏎᎰ ᏂᎦᎵᏍᏙᏗ.\nᎯᎠᏰᏃ ᎤᏅᏒ ᎤᎾᏚᎸᏛ ᎾᏂᎦᏔᎲᎾ ᏥᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᏨ ᏅᏧᎵᏍᏙᏔᏅ ᎦᎸᎶ ᎢᎸᎯᏳ ᏥᎨᏎᎢ ᎠᎴ ᎡᎶᎯ ᎠᎹᏱ ᎦᏚ ᏧᎦᏚᏕᎢ, ᎠᎴ ᎠᏭᎯ ᏥᎦᏙᎨᎢ;\nᎢᏥᏔᏲᎯᎰᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏥᏩᏘᏍᎪᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎢᏥᏔᏲᎯᎲᎢ, ᎢᏣᏚᎵᏍᎬ ᎾᏍᎩ ᎢᏨᏙᏗᏱ ᎣᏍᏛ ᎢᏣᏓᏅᏓᏗᏍᏗᏍᎩ ᎢᏥᏩᏛᏗᏱ.\nᎠᎴ ᎯᎠ ᏁᎵᏍᎨᎢ, ᏛᏃᎵᏥ ᎣᏣᎵᏅᏟ ᎤᏁᎳᏅᎯ ᎠᏴ ᎠᏉᏰᏂ ᏗᎬᏔᏂᏒ ᏙᏗᏍᏕᎸᎯᏒᎢ; ᎠᏎᏃ ᎥᏝ ᏳᏃᎵᏤᎢ.\nᏂᎦᏛᏃ ᏚᏂᎧᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎤᎾᎴᏅᎮ ᏅᏩᎾᏓᎴ ᏧᏂᏬᏂᎯᏍᏗ ᏚᏂᏬᏂᏎᎢ, ᎾᏍᎩ ᎬᏩᏂᏁᎢᏍᏗ ᏄᏅᏁᎲ ᎠᏓᏅᏙ.\nᎠᎴ ᎤᏣᏘ ᎤᏂᏲᏠᎯᏎᎸᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏫᏕᎬᏩᎾᎦᏅᎲᎩ; ᏆᏂᏆᏃ ᎤᏘᏅᏒᎩ ᎹᎦ, ᎠᎴ ᏥᏳᎯ ᏭᏣᏅ ᏌᏈ ᏭᎶᏒᎩ.\nᎤᏰᏣ ᎢᎦ ᏒᎮᏱᏣ ᎨᏎᎢ.\nᎾᏍᏉ Ꭲ-ᏨᏲᏎᎭ, ᎩᎶ ᎬᏂᎨᏒ ᎾᏋᏁᎮᏍᏗ ᏴᏫ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᏴᏫ ᎤᏪᏥ ᎬᏂᎨᏒ ᎾᏍᏉ ᏅᏓᏳᏩᏁᎵ ᎠᏂᎦᏔᎲ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ.\nᎤᎴᏫᏍᏔᏁ ᎤᏛᎦᏍᏔᏁ, ᎡᏝᏪᎯ ᎨᏎ, ᎡᏆ ᎤᏔᎶᏁ ᎣᏍᏓ ᎤᏛᎪᏗ.\nᎤᏓᏅᏘᏰᏃ ᎨᏎ ᎠᏍᎦᏯ, ᎠᎴ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎪᎯᏳᏗ ᎨᏒᎢ. ᎤᏂᏣᏖᏃ ᏴᏫ ᎬᏩᏁᏉᏤᎴ ᎤᎬᏫᏳᎯ.\nᎠᏎᏃ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏚᎢᏍᏔᏅ ᎢᏗᎦᏖᏃᎭ ᎢᏤ ᎦᎸᎶᎢ ᎠᎴ ᎢᏤ ᎡᎶᎯ ᎾᎿ ᎡᎲ ᏚᏳᎪᏛ ᎨᏒᎢ.\n ᏃᏗ ᎦᏙ ᏭᏅᏥᎴᎢ\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏧᏗᏱ ᏭᏂᎶᏒᎩ, ᎾᎿᏃ ᎤᏁᏙᎸᎩ, ᎠᎴ ᏚᏓᏬᎥᎩ.\nᏕᎦᏚᏓᏕᏫᏒᏰᏃ ᎦᎶᏁᏛ, ᎢᏳᏃ ᏱᏅᏩᏍᏗᏉ ᏕᎩᏂᏴᏒ ᎤᎵᏂᎩᏛ ᎬᎵᏍᏆᏗᏍᎩ ᏕᎩᏂᏴᏒ ᎤᎵᏂᎩᏛ ᎬᎵᏍᏆᏗᏍᎩ ᎢᎬᏱᏱ ᎢᎦᎵᏍᎦᏍᏙᏔᏅᎢ;\nᏣᏲᎯᏍᏙᏗ ᏍᎩᏄᏍᏛ ᎭᏓᏅᏖᏍᎬ, ᏥᏲᏎᎸ.\nᎤᎬᏫᏳᎯᏰᏃ ᎤᏅᏏᏓᏍᏗ ᎥᏝ ᏧᏘᏲᏍᏗ ᏱᎩ, ᏧᎨᏳᎯᏍᎩᏂ ᏱᎩ ᎾᏂᎥᎢ, ᏗᎬᏩᏕᏲᏗ ᏱᎩ, ᎬᏂᏗᏳ ᏱᎩ,\nᎯᎠ ᎾᏍᎩ ᏑᏓᎴᎩ ᎨᏒ ᎾᏆᏜᏏᏛᎡᎲᎾ, ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᎴᏅᏛ ᏙᏗᏣᏓᏅᏛᎢ ᎾᏍᎩ ᎤᏰᎢᎸᏍᏗᏱ ᎬᎵᏍᏆᏗᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵ ᎢᎦ ᎠᎵᏰᎵᎢᎶᎸ ᎬᏗᏍᎩ;\nᎢᎳᏯᏗᏃ ᎢᎵᎡᏌ ᎤᏕᏁᎴᎢ; ᎢᎵᎡᏌᏃ ᎹᏓᏂ ᎤᏕᏁᎴᎢ; ᎹᏓᏂᏃ ᏤᎦᏈ ᎤᏕᏁᎴᎢ;\nᎿᏉᏃ ᏦᎢ ᏫᏄᏕᏘᏴᎲ ᏥᎷᏏᎵᎻ ᎠᏇᏅᏒᎩ ᏈᏓ ᎥᏥᏩᏛᎲᏒᎩ, ᎯᏍᎩᎦᏚᏃ ᏧᏒᎯᏛ ᎦᏁᎸ ᎠᎩᏅᎩ.\nᎠᏎᏃ, ᎨᏍᏗ ᏱᎪᎵᎦ ᎢᏗᎦᏪᏍᏗ ᏚᏓᏴᎳᏔᏅ ᏓᏏᎳᏛ.\nᎠᏍᎩᎾᏃ ᎤᏍᏆᏛ ᏂᎦᏛ ᎤᎪᎵᏰᏍᎬᎢ, ᎤᏓᏅᎡᎴ ᎢᎸᏍᎩ ᎢᎪᎯᏛ.\nᎰᎻ ᏃᎴ ᎡᎳᏆᏗ ᏚᏍᏚᏤ.\nᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎠᏰᎵ ᏕᎪᏢᏒ ᏥᏓᎾᏓᎵᏁᎯᏕᎮᎢ, ᏚᏳᎪᏛ ᏥᏚᏂᎸᏫᏍᏓᏁᎮᎢ, ᎤᎾᏤᎵ ᏥᎾᏅᏁᎮ ᏄᏍᏛ ᎨᏥᏚᎢᏍᏓᎸᎢ, ᏢᏓᏥ ᎤᏂᏃᏕᏅ ᏗᏂᎰᎵ ᏥᏓᏂᏍᏚᎲᏍᎨᎢ,\nᎠᏂᏌᎹᏗ ᎧᏅᏂᏍᎩ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏂᏏᎾ ᏧᏃᏪᎶᏗ.”\nᎾᏍᎩ ᎾᏍᏉ ᎢᏳᏩᏂᏌᏅᎯ ᏤᏥᎤᏍᏕᏎᎸᎯ ᏥᎩ, ᎠᎱᏍᏕᏍᏗ ᎬᏔᏅᎯ ᎾᏍᎩ ᎩᎶ ᏧᏬᏰᏂ ᏧᏩᏔᏅᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᎢᏴᏛ ᏂᏨᏁᎲ ᎠᏰᎵ ᎾᏍᎩ ᎤᏇᏓᎵ ᎨᏒ ᎤᏍᎦᏅᎢᏍᏔᏅᎢ ᎢᏨᏗᏍᎬ ᎦᎶᏁᏛ ᎤᏤᎵ ᎠᎱᏍᏕᏍᏗ ᎨᏒᎢ;\nᎠᏓᏅᏙᏍᎩᏂ ᎦᎾᏄᎪᏫᏍᎦ, ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎤᎵᎮᎵᏍᏗ, ᏅᏩᏙᎯᏯᏛ, ᎬᏂᏗᏳ ᎨᏒᎢ, ᎤᏓᏅᏘ ᎨᏒᎢ, ᎣᏍᏛ ᎨᏒᎢ, ᎪᎯᏳᏗ ᎨᏒᎢ.\nᎢᏳᏃ ᎩᎶ ᎠᏛᎩᏍᎨᏍᏗ ᏥᏁᎬᎢ, ᏂᎪᎯᏳᎲᏍᎬᎾᏃ ᎢᎨᏎᏍᏗ, ᎥᏝ ᎠᏴ ᏱᏗᏥᏳᎪᏓᏁᎭ; ᎥᏝᏰᏃ ᎡᎶᎯ ᏱᏗᏥᏳᎪᏓᏁᎵᎸ, ᏥᏍᏕᎸᎯᎸᏍᎩᏂ ᎡᎶᎯ.\nᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᏂᎯ ᏍᏉ ᏣᎵᏍᏓᏴᏗ; ᏫᎵᎻ ᎢᏳᎵᏍᏔᏁᏗ ᎨᏒ ᏂᎯ ᏍᏉ ᎢᏣᎵᏍᏔᏁᏗ.\nᏚᏯ ᏗᏑᏱ ᏂᏚᏩᏁᎸ ᏁᏂᏏ, ᏎᎷ ᏧᏆᎶᎦ ᎬᏘ ᏚᏩᏇᏅᏔᏅ.\nᎤᎵᏏᏂᏕᏅ, ᏧᏯᎷᎦ ᏚᎾᎧᏛ ᎠᏂᏲᎯᏍᏗᏍᎪ ᎤᎾᏗᏍᎦᏢ ᏃᎴ ᏕᎫᎧᏃ, ᏗᎾᏓᏂᎸᎩ ᏃᎴ ᎡᏍᎦ ᎢᏯᎾᏛᏁ, ᎤᏂᏁᏙᎸ.\nᎠᏎᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏟ ᎬᎩᏰᎸᏗ ᎾᎿ ᎯᏍᎩᏉ ᎢᎧᏁᏨᎯ ᎠᎩᏁᎢᏍᏗᏱ ᎠᏆᏓᏅᏛ ᎠᏆᏙᏗᏱ, ᎾᏍᎩ ᏅᏩᎾᏓᎴ ᎾᏍᏉ ᎦᏥᏰᏲᏗᏱ, ᎠᏃ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎢᎧᏁᏨᎯ ᎠᎩᏁᎢᏍᏗᏱ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏆᏙᏗᏱ.\nᏚᎴᏅ ᎠᏌᎻᏓ ᎧᏁᏌᎢ ᏭᎳᎩᏒ ᎤᏁᏍᏔᎵ ᎠᎩᏤᎸ ᎠᏆᏗᏔᏍᏗ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᏰᎵᏍᎨ ᏫᎵᎻ.\n”ᏙᎢᏳᏍᏗ ᎭᏓᏅᏖᎭ, ᏌᎳᏓ?” ᎤᏛᏛᏁ.\nᎠᏎᏃ ᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎮ ᏌᎳᏓ.\n“ᎨᏍᏗ ᎤᏨᏉᏗ ᏱᎩ, ᏍᏉ” ᎤᏛᏁ ᎠᎨᏯ, ᎠᎪᎵᏰᏍᎨ ᎪᏪᎸ ᏓᏏᎳᏛᎢ.\n“ᎡᎳᏆᏗᏗ ᎠᏎ ᎣᏍᏓ ᎨᏐ.\nᎤᎬᏫᏳᎯᏍᎩᏂ ᎤᏤᎵ ᎢᎦ ᎠᏎ ᏓᎦᎷᏥ ᎾᏍᎩᏯ ᎦᏃᏍᎩᏍᎩ ᏒᏃᏱ ᏥᎦᎷᎪᎢ, ᎾᎯᏳ ᎦᎸᎶᎢ ᏓᎦᎶᏐᏂ ᎤᏣᏘ ᎤᏃᏴᎨᏍᏗ, ᎪᏢᏔᏅᎯᏃ ᎠᏓᏪᎵᎩᏍᎬ ᏛᎪᏂ, ᎠᎴ ᎡᎶᎯ ᎾᎿᏃ ᎪᏢᏅᏅᎯ ᎨᏒ ᎠᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ.\nᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᏓᏨᏍᏕ ᏃᏉ.\nᎩᎶᏰᏃ ᎤᏩᏒᏉ ᏚᏙᎥ ᏓᏓᏬᏍᏗᎭ, ᏱᎬᏉᏎᎭ.\nᎾᏍᎩᏃ ᎠᎴ ᏗᏂᎳᏫᎩ ᏚᏂᎳᏫᏨ ᎠᎴ ᎤᏂᏃᎮᎸ, ᎤᏣᏘ ᎠᏕᎸ ᏚᏂᏁᎴ ᎠᏂᏯᏫᏍᎩ,\nᏍᏘᎬᏓ ᎣᏍᏓ ᎱᏓᏅᏖᎳ, ᏃᏉ ᎱᏬᏂᏎᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ ᎠᏍᎦᏯ ᎤᏓᎵᎢ ᏓᎾᏤᎲᎢ, ᎥᏝ ᎣᏏᏳ ᏱᎩ ᎠᏕᏒᎲᏍᏗᏱ.\nᎠᎵᎮᎵᏍᏗ ᎡᎳᏗ ᏫᎦᎶᎯᏍᏗ, ᎡᎶ ᏣᎫᎾᏌᎾᎩᏍᎪ ᎢᏧᎴᎭ ᎠᎵᏍᏕᎸᏙᏗ.\n“ᎾᎨ ᎤᏅᏏᏴ, ᎧᏁᏍᎪ ᎭᏫᏂᏣ ᎦᏟᎭ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏥᏌᏃ ᏂᎬᎾᏛ ᎨᎵᎵ ᎡᏙᎮᎢ ᏓᏕᏲᎲᏍᎨ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎵᏥᏙᎲᏍᎨ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎧᏃᎮᏍᎨᎢ, ᎠᎴ ᏕᎧᏅᏫᏍᎨ ᏧᎵᎴᏅᏛ ᏚᏂᏢᎬᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᎥᏳᎩ ᏴᏫ ᎤᏁᎲᎢ.\nᏍᎩᏴ ᏓᏳᏓᎴᏅᏓ, ᎠᎦᏗᏛ ᏫᏥᏃᎮᏍᎬ ᎾᏆᏛᏁᎵᏙᎸ ᎣᏣᎵᏍᏔᏴᎲᏍᎬ ᏃᎴ ᎤᎬᏫᏳ ᏱᎬᏉᏎ ᏕᎦᏥᏯᏓᏂᎸᎬ.\nᎾᏍᏉᏃ ᎢᏧᎳᎭ ᏕᎨᎦᏛᏁ ᎠᏂᏔᎵ ᎠᏂᏃᏍᎩᏍᎩ, ᏌᏉ ᎠᎦᏘᏏ ᎢᏗᏢ, ᏐᎢᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ.\nᎾᏃ ᏧᏓᎴᏅᏛ ᎾᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᎬᏩᎵ, ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᏂᏗᎥ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎢᎨᎲᎢ. ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏢᏆᏍᎪᎢ, ᎠᏓᎨᏳᏗᏍᎩᏂ ᎨᏒ ᎠᏓᏍᏕᎵᏍᎪᎢ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᎢᎬᏙᏗ ᎠᏏ ᎪᎯᏳᏗᏍᎩ? ᎢᎬᏒᏰᏃ ᎡᏓᏛᎦᏏ ᎤᏩᏒ ᎧᏁᎬᎢ.\nᎠᎴ ᎣᏏᏳ ᎠᎩᏰᎸᎭ ᎾᎿ ᏫᏂᎨᏙᎲᎾ ᏥᎨᏒᎩ, ᏂᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎢᏦᎯᏳᏗᏱ. ᎠᏎᏃ ᎡᏗᏩᏛᎱᎦ.\nᎠᏂᏧᏏ ᎤᏂᏁᏨ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎥᏝ ᏴᎨᏣᏍᏛᏓ ᏅᏯ ᏱᏙᎨᏨᏴᏂᏍᏓ, ᎯᏐᏢᎢᏍᏗᏍᎬᏍᎩᏂ, ᏂᎯ ᏴᏫᏉ ᏥᎩ ᎤᏁᎳᏅᎯ ᏣᏤᎸᏍᎦ.\nᏂᎦᏛ ᎤᏇᏓᎵ ᎨᏒ ᎥᏝ ᎤᏠᏱᎭ ᏱᎩ; ᏴᏫᏰᏃ ᎤᏂᏇᏓᎸ ᏑᏓᎴᎩ; ᏅᏩᏓᎴᏃ ᏅᎩ ᏗᏂᏅᏌᏗ ᎤᏂᏇᏓᎸᎢ, ᏅᏩᏓᎴᏃ ᎠᏣᏗ, ᏅᏩᏓᎴᏃ ᏥᏍᏆ.\nᎤᏅᏌ ᏧᎾᏤᎵ ᏗᎧᎾᏩᏛᏍᏗ ᏚᏂᎮ ᏃᎴ ᎠᎴᎲᏍᎩ ᎤᎬᏫᏳ ᏃᎴ ᏔᎵ ᎸᎾᏓᏓᏍᎬ ᏗᏂᎳᏫᎩ, ᎦᏚᎲᎢ ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ, ᏃᎴ ᏭᏯᏅᎢ ᏧᎾᏟᏰᎵᏓᏍᏗ ᏃᎴᏍᏉ ᎠᎬᏱ ᎤᏛᎾ ᏧᎾᏙᎴᏆᏍᏗ ᏃᎴ ᎤᏪᏘ ᎤᏃᏒᏅ ᏗᏍᏆᏂᎪᏙᏗ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᎡᏘᏴ ᏄᎾᏕᏁᎵᏙᎸ ᎠᏂᏴᏫ, ᏃᎴ ᎧᏃᎮᏛ ᎪᏪᎵ.\nᎯᏯᎵᏍᎪᎸᏓᏁᎸᏰᏃ ᏂᎦᎥ ᎤᏇᏓᎵ, ᏧᏁᏗᏱ ᎾᎵᏍᏆᏗᏍᎬᎾ ᎬᏂᏛ ᎾᏂᎥ ᏖᎧᏁᎸᎯ ᎨᏒᎢ.\nᏅᏙ ᎢᎦ ᎡᎯ ᎤᎵᏏᎩᏳ ᏅᏓᎦᎵᏍᏔᏂ, ᏅᏙᏃ ᏒᏃᏱ ᎡᎯ ᎩᎬ ᏅᏓᎦᎵᏍᏔᏂ, ᎤᏍᏆᎸᎯᏕᎾ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ ᎦᎸᏉᏗᏳ ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏱᎰᏩ ᎤᏤᎵᎦ.\nᎩᎳᏈᏴ ᏂᎬᎾᏛ ᎠᏓᏴᎳᏔᏍᎪ ᎢᎦ, ᏚᏓᏴᎳᏛ ᏓᏓᏅᏏᏙᎰ, ᏃᎴ ᎪᎰᏍᏘ ᎤᏃᏴᎬ ᎣᏍᏓ ᎠᏛᎪᏗ.\nᎠᏓᎨᏳᏗ ᎨᏒ ᎬᏂᏗᏳ, ᎠᎴ ᎤᏓᏅᏘᏳ; ᎠᏓᎨᏳᏗ ᎨᏒ ᎥᏝ ᏱᎬᏳᎪᎢ; ᎠᏓᎨᏳᏗ ᎨᏒ ᎥᏝ ᏯᏢᏆᏍᎪᎢ; ᎥᏝ ᎤᏟ ᏳᏕᏋᎯᏍᏙᎢ;\nᏂᎪᎯᎸᎾᏉ ᎿᏉ ᎥᏝ ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ; ᎠᎴ ᎿᏉ ᏔᎵᏁ ᏂᎪᎯᎸᎾᏉ ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏫᏥᎦᏛᎢ.\nᎤᏓᎴᏨᏗ ᏍᎩᎾᎾ ᎠᏲᏟ---ᏧᏓᎴᏅᏓ ᎠᏓᏅᏖᏍᎪ.\nᏙᎩᏲᏒᏍᎩᏂ ᏧᏓᎴᏅᏛ ᎬᏍᎦᎵ ᎤᏕᎰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎥᏝ ᏲᏤᏙᎭ ᎠᏏᎾᏌᏅᎢᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎣᎦᏠᎾᏍᏛ ᏱᏙᎩᎸᏫᏍᏓᏁᎭ ᎧᏃᎮᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎬᏂᎨᏒᏍᎩᏂ ᏃᏨᏁᎲ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎪᎩᎸᏉᏙᏗᏱ ᏃᏨᏁᎭ ᎾᏂᎥ ᏴᏫ ᏚᎾᏓᏅᏛ ᎬᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎠᏍᏕᏯᏓ ᎦᏓᎥ ᎠᏦᏴ ᎾᎥᏂ ᎤᎩᏠᏫᏎ ᏥᏍᏕᏥ.\nᎤᏍᏆᏘ ᎠᏯᏨᏗ ᎩᎳᎯ ᎦᏓᎡᎢ ᎠᏴᏤᏂ; ᎤᏅᏏᏴ ᎠᎦᏙᎵ ᏳᏫᏚᎧᎾᎾ ᎠᎪᏩᏘᏍᎨᎢ.\nᏚᎾᎴᏁᎢ, ᎢᏧᎳ ᎤᏁᏅᏎ ᏫᎵᎻ ᎤᏴᏍᏗ.\nᎾᎯᏳᏉᏃ ᎢᎦ, ᎤᏒ ᏄᎵᏍᏔᏅ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᏗᏐᎩ ᏍᎪᎾ ᏫᏗᎶᎯ.\nᏕᎬᏩᏒᏍᏓᏁᎸᏃ, ᎤᏂᏣᏛ ᎬᏩᎷᏤᎸᎩ ᎤᏪᏗᏱ; ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ, ᏚᏃᎮᎮᎸᎩ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᏑᎾᎴ ᎤᎴᏅᏛ ᎤᏒᎢ ᎬᏗᏍᎩ, ᏓᏍᏗᏰᏗᏍᎬ ᏥᏌ ᎧᏃᎮᏍᎬᎢ; ᏕᎬᏗᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎼᏏ ᎤᏤᎵᎦ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ.\nPerry ᏚᏙᎥ.\nᎠᎴ ᎤᏣᏖ ᎤᏟ ᎢᎦᎢ ᎢᎧᏁᏨᎯ ᏚᏬᏁᏔᏁᎢ ᎯᎠ ᏄᏪᏎᎢ; ᏗᏣᎵᏏ ᎯᎠ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ ᏣᏁᎭ.\nᎢᎦᏛ ᎤᏙᎯᏳᎯ ᎠᏛᏳᎨᏗ ᎨᏒ ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒ ᎤᎾᏚᎵᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎾᎵᏥᏙᎲᏍᎦ ᎦᎶᏁᏛ ᎠᏂᏃᎮᎭ, ᎢᎦᏛᏃ ᎾᏍᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏒᎢ.\nᎤᏄᎪᏤᏃ ᎾᎿᏂ, ᎠᎴ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᏬᎷᏤᎢ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᎠᏯᏖᏂ ᎦᏙ ᎩᎦᎨ ᏌᏬᏚ, ᎤᎾᏨᏏᏰᎥ ᎠᏂᏍᎦᏯ ᏃᎴ ᏐᏈᎵ, ᎤᏲᏨ ᏱᎨᏒᎾ ᎤᏬᏗᎨ ᎤᎦᏛ ᏫᎨᏴ ᎦᏣᏃᏍᏔ ᏃᎴ ᏩᏗᏍᏈᏛᎥᏍᎬ, ᎢᏤᎯ ᏚᏅᏓᏒ ᏅᎩ ᏚᏅᏏᏴ ᏫᏗᎦᎶᏍᎩ.\nᎤᎵᏏᏂᏗ ᎤᏅᏍᎦᏝᏁᎢ, ᎦᏅᎪᎢ ᎦᏚᎢᏣ ᎤᏌᏁᎢ.\nᎾ-ᏍᎩᏂ ᏂᏚᎸᏫᏍᏓᏁᎲᎾ, ᎪᎯᏳᎲᏍᎩᏉᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎫᏓᎴᏍᎩ ᎠᏍᎦᎾᎢ, ᎾᏍᎩ ᎤᏬᎯᏳᏒ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎰᎢ.\nᏍᏈᏯ ᎪᎱᏍᏗ ᏂᎦᎵᏍᏗ ᎭᏂ ᎾᎥᏂ.”\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏂᎯᎾᏃ ᎦᎪ ᏍᎩᏲᏎᎭ?\nᎠᎬᏱᏣ ᎤᎵᏍᎫᏮ.\nᏕᎯᎦᏔᎭᏉ ᏗᎧᎿᏩᏛᏍᏗ, ᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ, ᏞᏍᏗ ᏣᏓᎸᎩ, ᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ, ᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ, ᏕᎩᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ.\nᎠᏴᏃ ᎯᎠ ᏂᎬᏪᏎᎭ; ᏈᏓ ᏂᎯ ᎠᎴ ᎾᏍᎩ ᎠᏂ ᎯᎠ ᏅᏲᎯ ᏓᎦᏁᏍᎨᎯ ᎠᏆᏤᎵ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ, ᎠᎴ ᏨᏍᎩᏃᎢ ᏓᏍᏚᎲᎢ ᎡᏍᏕ ᎢᏳᏅᏁᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ.\nᎾᎥᏃ ᎤᎷᏨ, ᏚᎧᎿᏅ ᎦᏚᎲᎢ, ᎤᏍᎪᏂᎴᎢ,\nᎠᏛᎪᏗ ᏱᎨᏒᎾ ᎪᎱᏍᏗ ᎤᏛᏁ ᏥᏍᏕᏥ ᏭᏕᎵᏤ ᎤᎵᏏᎬᎢ.\nᎠᎴ ᎾᏂᎥ ᎡᎶᎯ ᏓᏁᏩᏗᏒ ᏓᎬᏩᏓᏙᎵᏍᏓᏁᎵ, ᎾᏍᎩ ᏚᎾᏙᎥ ᏂᏗᎪᏪᎸᎾ ᎬᏂᏛ ᎪᏪᎵᎯ ᎾᏍᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏤᎵᎦ, ᎾᏍᎩ [ᎤᏃᏕᎾ ᎠᎩᎾ] ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏥᎸᎯ ᏥᎨᏎᎢ.\nᏃᏗ ᎤᏍᏆᏔ ᎠᏯᏨᏗ ᎧᏴᏤᏂ ᎤᏩᏯᏨᏁ ᏫᎵᎻ.\nᏓᏓᏁᎸ ᎤᎾᏕᎭᏲᏍᏗ, ᎠᏰᎵ ᎢᏳᏪᏅᏍᏗ ᏧᏂᏓᏍᎩᏐᏗ ᎦᏲᏟ ᎤᏂᎭᏴᏍᏗ, ᏧᏂᏰᎸᏍᏗ ᏅᏃᎯ, ᏔᎵᏁ ᎠᏓᏁᎸ, ᏃᎴ ᎤᏐᏱ ᎢᏳᎾᏛᏁᏗ.\nᎾᎯᏳᏍᎩᏂ ᎢᎦ ᎨᏒ ᎠᎴ ᎢᏳ ᎧᎳᏩᏗᏒ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ, ᎥᏝ ᎾᏍᏉ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᎠᏁᎯ, Ꮭ ᎾᏉᏃ ᎤᏪᏥ, ᎠᎦᏴᎵᎨᏍᎩᏂ ᎤᏩᏒ.\nᎿᏉᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏂᏧᏏ ᏧᎾᏤᎵᎦ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᏆᎴᏗ; ᏞᏍᏗ ᎯᎠ ᎢᏨᏁᎸ ᏦᏪᎳᏅᎩ; ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ; ᎯᎠᏍᎩᏂ; ᎠᎩᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᎠᏗᏍᎬᎩ.\nᏏᏓᏁᎸᎯ ᏲᎾ ᎤᏤᏍᏙ ᎤᏂᏯᎸᏎ.\nᎾᏍᎩ ᏨᎦᎾᏄᎪᏫᏏ ᎾᎯᏳ ᏧᎾᏄᎪᏫᏎᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎤᏓᏅᏘ ᎠᎴ ᎤᏩᏒᎯ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎤᎬᏫᏳᎯ ᎤᏂᎬᏫᏳᎯ ᎠᏁᎲᎢ, ᎠᎴ ᎤᎬᏫᏳᏌᏕᎩ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏁᎲᎢ;\nᏚᎧᏔᏍᏔᏁᎢ, ᎧᏁᏍᎦ ᎤᎾᏬᏍᏔᏁᎢ, ᏃᏗ ᏍᏔᏯ ᏭᏢᏁᎢ.\nᎦᏅᏍᎨᏂ ᎤᏖᎸᏁ, “ᎠᏯ ᏱᏗᏥᏂᏱᏍᎬᎾ ᏱᎩ, ᏃᎴ ᏱᏗᏥᏯᎩᏍᎬᎾ ᏱᎩ, ᏍᏈᏍᏓ ᏱᎾᎾᎵᏍᏓ, ᎡᎶᎯ ᏯᏂᏲᏍᏔᏃᎾ.”\nᎠᎴ ᎤᏂᏣᏖᏍᏗ ᏛᏂᏍᏓᏩᏕᏏ ᎾᏍᎩ ᎤᎾᏤᎵ ᎠᏓᏛᏗᏍᎩ; ᎾᏍᎩ ᏅᏛᏅᏂᏌᏂ ᏚᏳᎪᏛ ᏅᏃᎯ ᎤᏂᏐᏢᎢᏍᏙᏗ ᎨᏎᏍᏗ.\nᎢᏣᏅᏖᏍᏗ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ; ᎠᏥᎾᏝᎢ ᎥᏝ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᏱᎨᏐ ᎡᏍᎦᏉ ᎤᎾᏝᎢ. ᎢᏳᏃ ᎠᏴ ᎬᎩᏐᏢᏔᏅᎯ ᏱᎩ, ᏂᎯ ᎾᏍᏉ ᏓᎨᏥᏐᏢᏔᏂ. ᎢᏳᏃ ᎠᏴ ᎠᎩᏁᏨ ᎤᏂᏍᏆᏂᎪᏔᏅᎯ ᏱᎩ, ᏂᎯ ᎾᏍᏉ ᎢᏥᏁᏨ ᏛᏂᏍᏆᏂᎪᏔᏂ.\nᎠᎦᏘᏏᏗᏢᏃ ᎤᏪᏰᏂ ᎦᎵᏉᎩ ᏃᏈᏏ ᏚᏒᎦᎸᎩ; ᎠᎰᎵᏃ ᏓᏳᎦᏌᏛᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎢᏧᎳᏗᏢ ᏗᎪᏍᏓᏯ; ᎤᎧᏛᏃ ᏅᏙ ᎢᎦ-ᎡᎯ ᎤᎵᏂᎩᏛ ᏣᎦᎵᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᎩᎶᏍᎩᏂ ᎤᎵᏂᎩᏛᏯ ᏚᏭᎪᏕᏍᏗ ᏧᏓᏅᏛᎢ, ᎠᏎ ᎾᏍᎩ ᎢᏳᏛᏁᏗᏱ ᏄᎵᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᏰᎵᏉ ᎠᏓᏅᏖᏍᎬ ᎢᎬᏩᏛᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏛᏁᏗᏱ ᏚᏭᎪᏔᏁᏍᏗ ᏧᏓᏅᏛᎢ, ᎾᏍᎩ ᎤᏍᏆᏂᎪᏙᏗᏱᏉ ᎤᏤᎵ ᎠᏛ, ᎾᏍᎩ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ.\nᏥᏳᏃ ᎠᏂᏂᏙᎯ ᎤᎾᎵᏍᏗᏱ ᎤᏂᏰᎸᏅ, ᎠᎴ ᎿᏉ ᎤᏍᏗ ᏥᏳ ᎠᏂᏔᎳᏗᏍᎬᎢ, ᎠᎾᏠᎾᏍᏗᏍᎬ ᏔᎷᎩᏍᎩ ᏥᏳ ᏗᎦᎾᎯᏍᏙᏗ ᎢᎬᏴᏗᏢ ᏥᏫᏙᏧᎾᏕᏏᏐ ᎤᏠᏱ ᎾᎾᏛᏁᎲᎢ.\nᎯᎠ ᏄᏂᏪᎡᎢ; ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᏕᎯᏴᏎᎴᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏣᎵᏍᏓᏴᏁᎢ.\nᎠᏎᏃ ᏓᏨᏰᏯᏔᏂ ᎾᏍᎩ ᎡᏥᎾᏰᏍᏗ ᎨᏒᎢ; ᎡᏥᎾᏰᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏳᏓᎸ, ᏰᎵᏉ ᏨᏍᎩᏃ ᏫᎬᏩᏓᏓᎢᏅᏗ ᎨᏒᎢ; ᎥᎥ ᎢᏨᏲᏎᎭ ᎡᏥᎾᏰᏍᎨᏍᏗ ᎾᏍᎩ.\nᏚᏁᏤᎴᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏂᎯ ᏗᏤᎳᏍᏓ. ᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏥᎪ ᏓᏲᏤᏏ ᏔᎵᏧᏈ ᎠᏂᎩᏏ ᏧᎬᏩᎶᏗ ᎦᏚ ᏴᏓᏲᎩᏩᏏ, ᎠᎴ ᏙᏓᏲᏤᎳᏍᏔᏂ?\nᎾᏍᎩ ᎯᎠ Ꮎ ᏥᎧᏁᎢᏍᏗᏍᎨ ᎠᏙᎴᎰᏍᎩ ᎢᏌᏯ, ᎯᎠ ᏥᏂᎦᏪᏍᎨᎢ; ᎤᏪᎷᎦ ᎩᎶ ᎢᎾᎨᎢ, ᎯᎠ ᏂᎦᏪᎭ; ᎣᏍᏛ ᏂᏨᎦ ᏱᎰᏩ ᎤᎶᎯᏍᏗᏱ, ᏚᏅᏅ ᏗᏥᏥᏃᎯᏍᏓ.\nᎤᎵᏍᎨᏛ ᏂᎦᎵᏍᏗᏍᎨ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗᏣ.\nᎠᏗᎾ ᎾᎿ ᎦᏳᎳ ᏫᎦᎵᏱᎶᎸᎢ, ᎤᏠᏱᏉ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᏁᎶᏗᏗᏎᏍᏗ, ᎤᏠᏱᏉ ᎢᏓᏓᏅᏖᏍᎨᏍᏗ.\nᎠᏎᏗ, ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ ᏂᎦᏪᏍᎬ ᏲᎾ ᎤᏤᏍᏙ-“ᎠᏛᏁᎸᏗ ᎠᏓᏅᏖᏍᎩ.\nᎢᏥᏴ ᎠᏆᎩᎳᎾᎶ ᎠᎴ ᏍᎩᏯᏕᎶᏆᏏ, ᎠᏆᏓᏅᏖᏳᏰᏃ ᎠᎴ ᎠᏆᏓᏙᎵᏍᏗᏳ ᎠᎩᎾᏫᏱ, ᏓᏥᏩᏛᎯᏃ ᏗᏣᏓᏅᏙ ᏧᏯᏪᏐᎸᏍᏗᏱ.\nᎯᎠᏰᏃ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏦᏣᎵᎮᎵᎦ, ᎾᏍᎩ ᏦᎦᏓᏅᏙᎩ ᎪᎯᏳᏗᏍᎬᎢ, ᏃᏅᏗᏍᎬᎾ ᎤᏇᏓᎵᏉ ᎤᎬᏩᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎣᎩᏍᏕᎵᏍᎬᎢ, ᏄᏠᎾᏍᏛᎾ ᎨᏒ ᎣᏨᏗᏍᎬ ᎣᎨᏙᎸ ᎠᏂ ᎡᎶᎯ ᎨᏒᎢ; ᎠᎴ Ꮀ ᎤᎬᏫᏳᎭ ᏂᎯ ᎢᏤᎲᎢ.\nᏔᎵᏰᏃ ᎢᏳᏓᎴᎩ ᎨᏒ ᎠᏍᏓᏱᏳ ᎾᏆᎵᏍᏓᏁᎭ, ᏅᏗᎦᎵᏍᏙᏗ ᎠᏆᏚᎵᏍᎬ ᎠᏆᏚᎵᏍᎬ ᎠᏆᏂᎩᏍᏗᏱ, ᎠᎴ ᎦᎶᏁᏛ ᏤᎲ ᏩᏆᏕᏗᏱ; ᎾᏍᎩ ᏭᏓᎪᎾᏛᏛ ᎤᏟ ᎣᏏᏳ ᏥᎩ;\nᏌᏃᏂᏃ ᏈᏓ ᎤᎪᎲ ᎤᏓᏅᏁ ᏥᏌ ᏗᎧᏂᎨᏂ ᎾᎥᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏣᎬᏫᏳᎯ ᏍᏆᏓᏅᏏ, ᏥᏍᎦᎾᎯᏳᏰᏃ ᎠᏴ.\nᎠᏎᏃ ᎦᏙ ᎢᏤᎵᎭ? ᎩᎶ ᎠᏍᎦᏯ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᏁᎮᎢ; ᎠᏏᏴᏫᏃ ᎢᎬᏱ ᏭᎷᏤᎸ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏇᏥ, ᎮᎾ ᎪᎯ ᏫᏗᏣᎸᏫᏍᏓᏏ ᏖᎸᎳᏗ ᏓᎩᏫᏒᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᎾᏍᎩ ᎠᏍᎦᏅᏨᎯ ᎨᏒ ᎦᏴᏓᏗᏁᎸᎯ ᏱᎩ, ᎥᏝ ᎿᏉ ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ ᎠᎵᏍᎪᎸᏙᏗ ᏱᏂᎦᎵᏍᏗᎭ.\nᎬᏂ ᎨᏣᏍᎦᎩ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ.\nᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎢᎪᏢᎭ, ᎾᎿ ᎥᏝ ᏱᏚᏳᎪᏗ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎦᎵᏦᏛᏉ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎯ ᏥᎩ.\nᎠᏰᎳᏍᏗᏃ ᎦᏅᎯᏛ ᎤᏩᏔᏁ ᎤᎴ ᏥᎻ ᏣᏂ ᏗᎾᏓᏅᏟ.\nᎠᏂᏃᎮᎸᎥᏍᎬ, ᎠᏆᎵᏍᎫᏮ ᎤᏂᏲᎯᏍᏙᏗ ᏱᎨᏒᎾ.\nᎠᎴ ᎾᏍᎩ ᎤᎪᎲᎢ ᎤᏛᎦᏅᎾᏍᎩ ᎧᏃᎮᎭ, ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏱᏓᏓᏂᎸᎦ ᎾᏍᎩ ᎤᏃᎮᎸᎢ.\nᎯᎠᏰᏃ ᎠᏠᏁᏗ ᏳᎾᏗᏅᏎ ᎤᏣᏘ ᏱᏚᎬᏩᎳᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏗᏁᏗ ᏱᎨᏎᎢ.\n“ᎯᏃᎯᏯ ᎠᎬᏱ ᎤᎵᏬᎢᏍᏗ.\nᎠᎴ ᎬᏩᎵᏃᎮᏔᏁ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏍᎩᏃᎲᏏ, ᎦᏙ ᏣᎵᏍᎦᏍᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᏄᏍᏗ ᏥᏕᏣᎸᏫᏍᏓᏁᎭ? ᎠᎴ ᎦᎪ ᎾᏍᎩ ᎾᏣᏁᎸᎯ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ?\nᎨᏍᏗ ᎪᎱᏍᏗ ᏰᎵᏍᎨ ᏫᎵᎻ.\nᎿᏉᏃ ᏧᏓᏏ ᎾᏍᎩ ᎤᎶᏄᎮᎸᎯ ᎤᏙᎴᎰᏒ ᏓᎫᎪᏓᏁᎸᎢ ᎤᏁᏟᏴᏎ ᎤᏓᏅᏛᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᏙᎤᏲᎮᎴ ᏦᎠᏍᎪᎯ ᎠᏰᎵ-ᎠᏕᎸ ᏧᎾᎬᏩᎶᏗ,\nᏂᎦᎥ ᏚᏳᎪᏛ ᏂᎨᏒᎾ ᎾᏍᎩ ᎠᏍᎦᏂ, ᎡᎭᏃ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᏲᎱᎯᏍᏗ ᏂᎨᏒᎾ.\nᎤᏁᎸᏔᏁ ᏫᏄᏪᏎᏗ, ᎠᏎᏃ ᎡᏝᏪᎯ ᎦᏬᏂᏍᎨ, ᎠᎹ ᎤᏃᏴᎬ ᏭᎵᏛᏓᏁᎢ.\nᏂᎦᏛᏃ ᎾᏍᎩ ᎤᏂᏣᏘ ᎨᏒ ᏚᎾᎴᏅ ᏆᎴᏗ ᏫᎬᏩᏘᏃᎮᎴᎢ.\n“ᏤᏍᏗ ᏍᎩ ᏱᏂᏪᏍᎨᏍᏗ!” ᎤᎵᏰᏔᏁᎢ ᏫᎵᎻ, ᏤᏍᏗ ᏍᎩᏱᏂᏪᏍᎨᏍᏗ, ᎭᏩᏧ!”\nᎠᏴᏃ ᎠᎩᏁᏨ ᎯᎠ ᎾᎩᏪᏒᎩ; ᎦᎪ ᏂᎯ, ᏣᎬᏫᏳᎯ? ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎠᏴ ᏥᏌ ᎾᏎᎵᏘ ᏤᏍᎩ, ᎾᏍᎩ ᎤᏲ ᏥᏂᏴᏁᎭ.\nᎠᎴ ᎾᎿᏉ ᎠᏓᏁᎸ ᎢᏥᏁᏍᏗ, ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ ᎠᎴ ᎢᏣᏗᏔᏍᎨᏍᏗ ᏄᏍᏛ ᎡᏥᏁᎲᎢ; ᏧᎸᏫᏍᏓᏁᎯᏰᏃ ᏚᏳᎪᏗ ᎠᎫᏴᎡᏗᏱ ᏚᎸᏫᏍᏓᏁᎸᎢ. ᏞᏍᏗ ᏓᏓᏁᎳᏗᏒ ᏱᏤᏙᎵᏙᎮᏍᏗ\nᎬᏂᏳᏉᏃ ᎾᎿ ᎡᏙᎮ ᎠᎨᏴ ᎠᏓᏅᏙ ᎥᏳᎩ ᎪᏢᏍᎩ ᎤᏯᎢ ᏁᎳᏚ ᎢᏳᏕᏘᏴᏛ ᎢᎬᏩᎵᏍ-ᏔᏅᎯ ᎨᏎᎢ, ᎠᎴ ᎤᏗᏌᏕᎢ, ᎠᎴ ᎬᏩᏟᏍᏛ ᎤᎵᏥᏃᎯᏍᏙᏗᏱ ᎨᏎᎢ.\nᎠᎴ ᏄᏓᎴᏛ ᎪᎱᏍᏗ ᏚᎳᏍᎬ ᎭᏫᏂᏗᏢ ᏥᏂᏚᏩᏁᎸ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏥᎾᎬᏁᎸ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏁᎲᎢ,\nᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎾᏓᏙᎵᏍᏔᏅᏎᎢ, ᎠᏏᏴᏫ ᎠᏆᎵᏏ ᎨᏎᎢ, ᏐᎢᏃ ᎠᏕᎸ-ᎠᎩᏏᏙᎯ.\nᎠᎴ ᎤᏬᏑᎶᏨᎯ ᎾᎿ ᎦᏚᎲ ᎡᎮᎢ; ᎾᏍᎩᏃ ᎤᎷᏤᎴᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏚᏳᎪᏛ ᏂᏍᎩᎾᏛᏂᏏ ᏦᏍᏓᏓᏱᎵᏙᎯ.\nᎠᎴ ᎾᏍᏉ ᎬᏂᎨᏒ ᏂᎦᎵᏍᏗᎭ ᎦᏰᎪᎩ ᎣᏥᏃᎮᏍᎩ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎣᏥᏃᎮᎸᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏲᎱᏒ ᏕᎤᎴᏔᏅ ᎦᎶᏁᏛ; ᏧᎴᎳᏅᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎢᏳᏃ ᎰᏩ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ ᏧᏂᏲᎱᏒᎯ.\nᎨᏍᏗ ᏳᏍᏕᎵᏍᎨᎢ ᏥᏍᏕᏥ.\nᎠᎴ ᎭᎵᎮᎵᎨᏍᏗ ᎠᎴ ᎣᏍᏛ ᏣᏰᎸᏎᏍᏗ; ᎠᎴ ᎤᏂᏣᏘ ᎠᎾᎵᎮᎵᎨᏍᏗ ᎤᏕᏅ ᎢᏳᏍᏗ.\n“ᎰᎵᎦᏍᎪᏃ ᎪᎱᏍᏗ  ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?”\n“ᎨᏍᏗ ᏱᎬᎪᏩᏘᎭ.\nᎠᏙᎯ ᏭᏂᎶᏎ, Ꮓ ᏗᏓᎾᏅ ᎢᏗᏣ.\nᎤᏁᎢᏍᏔᏅ ᎪᎵᎩ ᎨᏒ ᎠᎦᏴᎵ ᏗᎪᏪᎵᏍᎩ Boston ᏓᏳᏓᎴᏅ, ᎤᏃᎯᏎᎴ ᎨᏍᏗ ᏙᏓᏆᏓ ᎫᏩᎶᎯᏍᏗ ᏱᎩ, ᎠᏎ ᎠᎦᏗᏓ ᏚᏓᏍᏔᏅᏅ ᏧᏬᏪᎶᏗ.\nᎤᏅᏂᏍᏗᏱᏃ ᎨᏒ ᎢᏳᎢ, ᎤᏅᏎ ᎤᏅᏏᏓᏍᏗ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏗᏁᎲᎢ, ᎾᏍᎩ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏅᏓᎬᏩᏁᏗᏱ ᎤᏁᏉᏨᎯ ᏖᎸᎳᏗ ᏓᏫᏒᎢ.\nᎠᎴ ᎯᎠ ᎾᏍᏉ ᏄᏪᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ; ᎥᏝ ᎩᎶ ᏴᎬᎩᎷᏥ, ᎬᏂ ᎡᏙᏓ ᎤᏁᎸᎯ ᏱᎩ.\nᏧᏄᎪᏨᏃ ᎥᏝ ᏗᎬᏩᎵᏃᎮᏙᏗ ᏱᎨᏎᎢ; ᎤᎾᏙᎴᎰᏎᏃ ᎤᏁᎳᏫᏎᎸ ᏩᏯᎥ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ. ᏓᏁᎶᏓᏁᎮᏃ ᎠᎴ ᏅᏩᏍᏕᏉ ᎤᏩᎨᏫ ᎨᏎᎢ.\nᎠᏄᎯᏍᏗᏍᎬᏍᎩᏂ ᎪᎱᏍᏗᏉ ᎤᏍᏗ ᎾᏍᎩ ᎧᏃᎮᏗ ᎨᏒ ᎤᏅᏒᏉ ᎤᎾᏤᎵᏛ ᎤᏁᎳᏅᎯ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᏥᏌ, ᎤᏲᎱᏒᎯ, ᎾᏍᎩ ᎡᎭ ᎠᏗᏍᎨ ᎨᎵ ᏉᎳ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏣᏅᏖᏍᏗ ᎢᏥᏍᎦᏯ ᏗᏓᏓᏅᏟ, ᎾᏍᎩ ᎯᎠ [ᎠᏍᎦᏯ] ᎢᏳᏩᏂᏌᏛ ᎡᏥᏃᏁᎭ ᎦᏰᏥᏙᎵᏍᏗ ᎨᏒ ᎢᏥᏍᎦᏅᏨᎢ.\nᎣᎯᏍᏙᏗ ᏗᎧᏃᏗ ᏣᎦᏥᎶᏍᏔᏅ, ᎠᎦᏛ ᎤᎦᏴᎵᏴ ᏄᏍᏛ ᏗᎧᏃᏗ, ᎠᏎᎩ ᏑᏓᎵᏍᎪᎯᏍᎩ ᎢᏴ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᎡᎵᎦ ᏥᏩᎾᎦᎵᏳ ᎨᏒᎢ, ᎦᏴᎩᏐᏢᏛᎢ, ᎠᎩᏂᎩᏛ ᎨᏒᎢ, ᎤᏲ ᏅᏋᎿᏕᎬᎢ, ᎡᎯᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎬ ᎦᎶᏁᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ; ᏥᏩᏂᎦᎵᏳᏰᏃ ᏥᎨᏐ, ᎾᎯᏳ ᎠᏆᎵᏂᎩᏗᏳ ᎨᏐᎢ.\nᏄᏓᎴ ᎠᏍᏆᎵᏍᎬᎢ, ᎣᎩᎾᏚᎯᏍᏔᏅ, ᏂᎦᏓ ᎠᎵᏍᎩᏍᏗ ᎣᎩᎾᎵᏍᎩᏒ.\nᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏍᏕᎾ ᎢᏢ Ꮎ ᏨᏗᎦᏚᎭ, ᎩᎳᏉᏃ ᎢᏴᏛ ᏓᏰᏍᏗᏩᏛᎯ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎨᎵᏌᏕᏍᏗ, ᎠᎴ ᎠᎩᎾ ᎠᏘᏁᎮᏍᏗ, ᏕᏍᏕᎵᏌᏕᏒᎭ, ᎠᎴ ᏕᏍᎩᎾᏘᏃᎮᎸᎭ.\nᎤᏬᏯᏁᏒᏃ ᎠᎨᏳᏣ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᎵᏓ ᎫᎻ; ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎯᎠ ᏄᏍᏗ ᎦᏛᎦ; ᎯᎨᏳᏣ, ᎬᏲᏎᎭ, ᏔᎴᎲᎦ.\n”ᎠᏎᏉᏗ ᏂᏪᎠ.”\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ, ᎤᎬᏫᏳᎯ ᏅᏩᎾᏓᎴ ᎦᎵᏆᏍᎪᎯ ᎢᏯᏂᏛ ᎾᏍᏉ ᏚᏑᏰᏎᎢ ᎠᎴ ᏚᏅᏎ ᏔᎵ ᏧᎾᎵᎪᏅᏛ ᎢᎬᏱ ᏄᏁᏅᏍᏗᏱ ᏂᎦᏛ ᏕᎦᏚᏩᏗᏒ ᎠᎴ ᏂᎬᎾᏛ, ᎾᎿ ᎤᏩᏒ ᏭᎷᎯᏍᏗ ᎨᏒᎢ.\nᎤᎵᏏᏂᏕᏅ ᏲᎦᎴᏫᏍᏔᏅ, ᏕᎦᎾᏩᎩᏍᎬ ᏗᎦᏓᏁ ᏓᏆᎭᏄᏮ, ᎨᏴ ᎦᏓᏬᏍᎪ, ᏧᎧᎭᏲᏓ ᏓᎦᎾᏬᏍᎪ.\nᎤᏅᏒᏰᏃ ᎬᏂᎨᏒ ᏂᎪᎬᏁᎭ ᏄᏍᏛ ᏫᏨᎷᏖᎸᎢ, ᎠᎴ ᏂᏣᏛᏁᎸ ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᎢᏣᎦᏔᎲᏍᏔᏅ ᏕᏥᏲᏒ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᏗᏥᎧᎿᏩᏛᏍᏗᏱ ᎬᏃᏛ ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᏥᎩ;\nᏆᎴᏗ ᎯᎠ ᏄᏪᏒᎩ; ᏥᎾᏋᏁᎸ ᏣᏉᏪᎳᏅ, ᎿᏉ ᎠᏎ ᎠᏉᏪᎳᏅ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏨᎨᏳᎢ ᎢᏓᎵᏅᏟ, ᏗᏣᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ, ᎦᏰᏥᏖᎸᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᏂᎪᎯᎸ ᎤᏣᏘ ᏕᏥᎸᏫᏍᏓᏁᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎢᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎢᏣᎵᏂᎬᏁᎲ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏎᏉᏉ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎤᏙᎯᏳᏅᎩ ᎤᏁᏨ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᏣᎬᏫᏳᎰ, ᎦᎪ ᎤᏬᎯᏳᏅ ᎣᎩᏃᎮᎸᎢ? ᎠᎴ ᎦᎪ ᎠᏥᎾᏄᎪᏫᏎᎸ ᎤᎬᏫᏳᎯ ᎧᏃᎨᏂ?\nᎦᏙᏃ ᎾᏍᎩ ᏛᏛᏁᎵ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ? ᏓᎦᎷᏥ ᎠᎴ ᏙᏛᏛᏔᏂ ᎾᏍᎩ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᏅᏩᎾᏓᎴ ᏙᏛᏁᎵ ᏖᎸᎳᏗ ᏓᏫᏒᎢ.\nᏂᎦᏛᏃ ᏴᏫ ᎤᏂᏁᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᎩᎬ ᎠᏴ ᎠᎴ ᏦᎨᏥ ᎣᎩᏅᎦᎴᏍᏗ.\nᏌᎳᏓ ᎤᏣᏪᏐᎸᏍᏕᎢ ᏃᎴ ᏙᎵᏓᏍᏆ ᎤᏩᏯᎨᎢ.\nᏗᏂᏲᏟ ᏍᏓᏯ ᎤᏁᎷᏁ ᎠᏂᎸᏉᏗᏍᎬ.\nᎩᎶ ᏯᏕᎶᎰᏍᎬᎾ ᎱᎷᏤ ᏣᏥ, ᎤᏃᎮᏗ ᏄᎾᎵᏍᏔᏁᎸ ᎤᏓᎵ ᏃᎴ ᏗᏂᏲᏟ.\nᎤᏪᏅᏎᏃ ᎤᎵᎪᏁᎴ ᎾᎿ ᎡᎯ ᎠᏍᎦᏯ; ᏙᏧᎶᎨᏒᏃ ᏏᏆ ᏗᎨᎶᎸ ᎤᏅᏎᎢ.\nᏂᎦᏛᏃ ᎬᏩᏛᎦᏁᎸᎯ ᎤᏂᏍᏆᏂᎪᏎ ᏃᏒ ᎪᎵᎬᎢ, ᎠᎴ ᎬᏩᏛᏛᎲᏍᎬ ᏕᎦᏬᎯᎵᏴᏍᏓᏁᎲᎢ.\nᎿᏉᏃ ᏌᏩᏂ ᏈᏓ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎦᏁᎲᎢ, ᎤᎸᎲᎩ, ᎠᎴ ᎤᎷᏏᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᎦᏘᏏ ᎦᎴᏂ ᎤᎵᏍᏕᏍᏔᏅᎩ. ᎾᏍᎩ ᎠᏥᏅᏏᏓᏍᏗ ᎹᎵᎦ ᏧᏙᎢᏛ ᎨᏒᎩ.\n”ᎠᏯ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᏍᎩᏃ ᎤᎵᎮᎵᏨ, ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎩ, ᎢᏥᎦ; ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ, ᏂᎯ ᎾᏍᎩ ᎢᏣᎵᎬᎭᎷᏰᎸᎯ ᏥᎩ; ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ ᎠᏴ ᏍᎩᏯᏅᏓᏗᏍᎬᎢ.\nᎾᏍᎩ ᎣᎩᏍᏓᏩᏗᏒ ᏉᎳ ᎠᎴ ᎠᏴ, ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᏧᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏂᎨᎬᏁᎭ ᏅᏃᎯ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ.\nᎠᏏᏴᏫᏃ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᏚᏁᎴᎢ, ᏐᎢᏃ ᏔᎵ ᎢᏯᎦᏴᎵ, ᏐᎢᏃ ᏌᏉ ᎢᏯᎦᏴᎵ, ᎠᏂᏏᏴᏫᎭ ᎾᏍᎩ ᏰᎵ ᎢᎬᏩᎾᏛᏁᏗ ᎨᏒᎢ. ᎿᏉᏃ ᎤᏂᎩᏎᎢ.\nᎤᏁᎵᏎ ᎦᎷᏯᏍᏘ ᏃᎴ ᎠᏰᎳᏍᏘ, ᎢᏧᎳ ᎠᎵᏍᏙᏗ ᏃᎴ ᎬᏔᏂᏓᏍᏗ, ᎠᏁᎵᏍᎨ ᎤᎾᎵᏍᎪᎸᏛ ᎠᏂᏲᏍᎩ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏰᎳᏍᏘ ᏃᎴ ᎦᎷᏯᏍᏘ.\nᎨᏥᏅᏏᏓᏍᏗᏃ ᎠᎴ ᏗᎾᏓᏂᏱᏍᎩ ᎾᎿ ᎠᎾᏙᎾᎥᎩ, ᎧᏃᏍᎦ ᎤᏃᏙᏔᏅᎯ ᎨᏒᎩ, -ᎤᏴᏢᎩᏰᏃ, ᎠᎴ ᎤᏂᎦᎾᏬᏍᎬᎩ. ᏈᏓᏃ ᎨᎸᎩ ᎦᏙᎬᎩ ᎠᎴ ᎤᎦᎾᏬᏍᎬᎩ.\nᎢᏣᏓᏅᎡᎮᏍᏗ ᏂᎦᎥ ᏄᏓᎴᏒ ᎤᏲᎢ.\nᎠᏎᏍᎩᏂᏃᏅ ᎣᏏᏳ ᏂᏣᏛᏁᎸ ᏥᏍᎩᏁᎸ ᎠᏆᎵᏍᏕᎸᏙᏗ ᏥᎩᎵᏲᎬ ᎢᏳᎢ.\nᎨᏍᏗ ᏓᏆᎴᎳ ᎤᎶᎯᏍᏗ ᎦᎪᏒᏗ ᏱᎨᏎ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏧᎳ ᏚᏂᏔᎴᏐᎢ, ᏥᏍᏆᏃ ᎦᎸᎶ ᎠᏁᎯ ᏚᎾᏁᏍᏓᏝᎰᎢ, ᏴᏫᏍᎩᏂ ᎤᏪᏥ ᎥᏝ ᎢᎸᎯᏢ ᎠᏍᎪᎵ ᎤᏗᏱ ᏱᎩ.\nᎢᎦᏛᏃ ᎠᏄᎦᎸᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎠᏄᎦᎸᏃ ᏧᏛᏒ ᎤᏁᏄᎳᏍᏔᏁᎢ.\nᎤᏩᏎ ᎠᎹᏰᎵ ᏚᎬᏩᏝᏅ ᎫᏫᏍᎩᏫ.\nᎤᏙᎯᏳ ᏭᏲᎢᏴ ᏄᎵᏍᏔᏁᎮ.\nᎾᏍᎩᏃ ᏰᎵᏉ ᏗᏣᎵᏂᎪᎯᏍᏙᏗ ᏥᎩ ᎾᏍᎩᏯ ᏂᎦᏪᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᏆᏤᎵᎦ, ᎠᎴ ᎾᏍᎩᏯ ᏥᏌ ᎦᎶᏁᏛ ᎠᎦᎵᏥᏙᏅᎢ, ᎾᏍᎩᏯ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎨᏒ ᎤᏕᎵᏛ, ᎾᏍᎩ ᎡᎶᎯ ᏧᏓᎴᏅᎲ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎠᏕᎵᏍᏔᏅᎯ ᏥᎨᏎᎢ,\n“ᎦᏙᎢᏳᏍᏗ ᎮᎵᎠ ᏂᎯ?”\nᎠᎴ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎮᎾ ᏩᏙᏑᎵ ᏌᎶᎻ ᏨᏓᎸᎢ,--ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᎠᏥᏅᏏᏛ ᎦᏛᎦ. ᎤᏪᏅᏒᎩᏃ ᎠᎴ ᏭᏙᏑᎴᎥᎩ, ᎤᎷᏨᏃ ᎠᎪᏩᏘᏍᎬᎩ.\nᎠᎴ ᏂᎦᎥᏉ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᎩᎬ ᎦᏅᎦᎸᏙᏗ ᎨᏒᎩ; ᎠᎴ ᎩᎬ ᎠᏨᏅᎯ ᏂᎨᏒᎾ ᏱᎩ, ᎠᏍᎦᏅᏨ ᎥᏝ ᏴᎦᏴᏓᏗᏙᎵᎩ.\nᏧᏯᏪᎢᏍᏗ ᎢᎦ ᏒᎮᏱᏣ ᏄᎵᏍᏔᏁ.\nᎠᏁᎯ ᏯᏂᎦᏔᎲᎾ ᎭᎾ ᏧᎾᏓᎴᏅ, ᏃᎴ ᏧᏓᎴᏅᏓ ᎩᎦ ᎤᏂᏁᎯ, ᏃᎴ ᎾᎥᏂ ᏂᎨᏒᎾ ᎡᏆ ᎦᏚᎲ ᎠᏰᎵ, ᎠᏂᏩᏥᏂ ᎪᎰᏍᏗ ᏱᎬᏁᎵ ᎢᏳᏍᏗ ᎨᏒ ᎠᎴ ᎢᏳᏍᏗ ᏃᏣᏛᏁᎲ ᎭᏂ ᏚᎨᏓᎵᏴ.\nᏥᏔᎦ ᎠᏂᎩᏌ ᎤᎾᎩᎸ ᏚᏂᎶᎣᏎ ᏃᎴ ᏕᏧᎬ ᏓᏖᎸᎲᏍᎨ ᎠᏎᏃ ᎨᏍᏗ ᏱᎦᏃᎸᎤᏍᎨ.\nᏃᎴ ᏄᏪᏎ, ᏍᎩᎷᏥᏏ.\nᎠᏏᏉᏃ ᏉᎳ ᎾᏍᎩ ᏓᎦᏘᏴᎩ ᎡᏗᏂᏱ, ᏧᏓᏅᏛ ᎤᏣᏘ ᎤᏕᏯᏔᏁᎸᎩ, ᎤᏙᎴᎰᏒ ᎦᏚᎲ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏓᏙᎵᏍᏓᏁᎯ ᎨᏒᎢ.\nᎠ-ᏍᎩᏂ ᎠᎾᎵᏅᏟ ᏧᎾᏓᎨᏳᏗ ᎨᏒ ᎤᎬᏩᎵ ᎥᏝ ᎤᏚᎸᏗ ᏱᏂᏣᎵᏍᏓᏁᎭ ᏫᏨᏲᏪᎳᏁᏗᏱ; ᏨᏒᏰᏃ ᎤᏁᎳᏅᎯ ᎢᏤᏲᏅᎯ ᎢᎩ ᏗᏣᏓᎨᏳᏗᏱ.\nᎾᏍᎩᏃ ᎬᏂᏗᏳ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎠᎵᏍᏕᎸᏙᏗ ᎢᏥᏰᎸᏎᏍᏗ; ᎾᏍᎩᏯ ᎾᏍᏉ ᎡᏗᎨᏳᎢ ᎢᏓᎵᏅᏟ ᏉᎳ ᎬᏗᏍᎬ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᏥᏁᎸ ᏥᏦᏪᎳᏁᎸ;\nᎾᏍᎩ ᏔᎵᏁ ᎥᏥᏅᎵ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᏕᎯᏯᏓᏂᎸᏨᎭ, ᎾᏍᎩ ᎠᏋᏒ ᎠᎩᎾᏫ ᏥᎩ.\nᎤᏴᏣ ᎠᎹ ᏚᏍᏚᏣ, ᎤᏰᏤ ᏫᎵᎻ.\nᎪᎯᏍᎩᏂ ᎿᏉ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ, ᎠᎴ ᎠᎾᏙᎴᎰᏍᏗ ᏧᏃᏪᎳᏅᎯ ᏗᎬᏔᏅᎯ ᎾᏍᎩᏯ ᎠᏓᏅᏖᏍᎬ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎡᎯ ᎡᏁᎳᏅᎯ ᎬᏂᎨᏒ ᎢᎨᎬᎸᎯ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒ ᎤᏃᎯᏳᏏᏱ ᎤᎬᏩᎵ--\nᎢᎦ ᏒᎯᏰᏣ ᏚᎾᏦᏎ Boudinot ᎤᏕᎳᏓ ᏕᎨᎦᏨᏍᏔᏁ, ᎤᏂᏙᎵᏨ ᎠᎵᏥᏙᎲᏍᎩ, ᎣᎭᏁ ᎤᎾᏂᎩᏎ ᏧᎦᏃᏮ ᎢᏣ, Ridge ᏃᎴ ᎤᏍᎦᎢᏓ ᎤᏓᎵ, ᏂᎦᏓ ᎤᎾᏂᎩᏎ.\nᎾᎿ ᎾᏍᏉ ᎢᏣᏓᏑᏯ ᏂᎯ, ᏥᏌ ᎦᎶᏁᏛ ᎢᏥᏯᏅᏛ ᏥᎩ;\nᏱᏭᎪᏌ ᎡᎾᎢ, ᎦᎵᏣᏙᏗ ᏂᎦᎵᏍᏗ ᎦᏙᎯ.\nᎢᏳᏍᎩᏂ ᎩᎶ ᎤᏁᎳᏅᎯ ᏳᎨᏳᎭ, [ᎤᏁᎳᏅᎯ] ᎾᏍᎩ ᎤᎦᏔᎰᎢ.\nᎤᎵᏍᏆᎸᏗᏴ ᎤᎾᏰᎯᏍᏗᏳ ᎤᏛᏁ ᏲᎾ.\nᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏚᏳᎪᏛ ᎨᏒ ᏥᎩᏯᎠ, ᎠᎴ ᎾᏍᎩ ᎠᏎ ᏥᎨᎳᏗᏙᎮᏍᏗ ᏂᎪᎯᎸᎢ.\nᏚᏍᎩᎾᏛ ᏚᏅᏓᏒ.\nᎿᏉᏃ ᎧᏃᎮᏗ ᏄᎾᎵᏍᏓᏁᎸᎩ ᏣᏂ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎠᏂᏧᏏᏃ ᎠᏓᏅᎦᎸᏗᏱ ᎤᎬᏩᎵ.\nᏚᎦᎴᏅᏔᏁ ᏚᏑᎬ ᏚᏩᏂᎦᏢ, ᏕᎦᎾᏤᏍᎨ ᎠᏰᎸᎢ ᎦᎶᏍᎬ ᎦᎶᎯᏍᏗ ᎤᏗᏍᎩᎩ.\nᎠᏎ ᎠᎦᏗᏓ ᎦᏙ ᎤᏂᏂᎬᎨ.\nᎥᏝ ᎠᏗᎾ ᎤᏁᎳᏅᎯ ᎤᏁᏨ ᎠᏎᏉᏉ ᏥᏄᎵᏍᏔᏃ ᎾᏍᎩᏯ [ᏱᏥᏁᎦ,] ᎥᏝᏰᏃ ᏂᎦᏛ ᎢᏏᎵ ᏱᎩ ᎾᏍᎩ ᎢᏏᎵ ᏧᏁᏢᏔᏅᏛ ᏥᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏔᎵᏁ ᎤᎾᏁᎶᏔᏅᎩ ᎬᏩᏂᏴᏗᏱ; ᎠᏎᏃ ᏚᏗᏫᏎᎸᎩ,\nᎨᎵᎵᏃ ᎥᏓᎵ ᎤᎶᏗ ᎠᎢᏒᎢ, ᏚᎪᎮ ᏌᏩᏂ ᎠᎴ ᎡᏂᏗ ᎾᏍᎩ ᏗᎾᏓᏅᏟ, ᎥᏓᎵ ᎠᏂᎦᏯᎷᎥᏍᎨᎢ; ᎠᏂᎦᏯᎷᎥᏍᎩᏰᏃ ᎨᏎᎢ.\nᎨᏍᏗ ᎩᎶᎢ ᏍᎩᎾᎾ ᎢᏲᏍᏓ ᎤᎾᎵ ᎢᏳᎵᏍᏔᏅ ᏱᎨᏎᎢ --- ᎤᏓᏅᏘ, ᎠᏓᏍᏕᎵᏍᎩ, ᏃᎴ ᎠᏏᎾᏌᏂ.\nᎠᏎᏃ ᎨᏍᏗ ᏱᏧᏁᏣ.\nᎾᏍᎩ ᏥᏅᎵ ᏗᏤᎲᎢ ᎾᏍᎩᏉ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏃᎦᎵᏍᏓᏁᎵᏕᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏧᎦᎵᏍᏓᏗᏍᏗᏱ ᏗᏥᎾᏫ.\n“ᏃᏉ!” \nᎢᏧᎳ ᎢᏣ, ᏰᎵᏉ ᏕᏥᎾᎩᏍᎬ ᏗᏥᎶᏍᏔᏅ ᏗᎪᏪᎵ.\nᏚᏯᏪᎬ ᏃᎴ ᏫᏍᎩ ᎤᏩᎭᏂᎴ ᎦᏣᏄᎸ.\nᎾᏍᎩ ᏗᎨᎪᏍᏔᏅᎯ ᏥᎩ ᎾᏂᎥ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᎦᎸᎶ ᎠᎴ ᎡᎶᎯ ᎠᏁᎯ,\nᎭᎾᏉ ᎠᎴᏂᏍᎩ ᎩᎦᎭ ᏄᎵᏍᏔᏅ, ᎯᏍᎩᏉ ᎢᏯᏛᎸᏓ.\nᎢᏳᏰᏃ ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᎬᏗ ᏱᎦᎵᏍᏓᏴᎲᏍᎦ, ᎦᏙᏃ ᎾᏲ ᎥᎩᏃᎮᎭ ᏅᏗᎦᎵᏍᏙᏗ ᎾᏍᎩ Ꮎ ᎤᎬᏩᎵ ᏥᎦᎵᎡᎵᎦ?\n“ᎭᏕᏬ, ᎠᎬᏱ ᎠᎾᏗᏗᏍᎩ ᎤᏅᏌ ᏕᏥᎧᏁᎰ ᏏᏆ.” ᎤᏛᏁ ᎡᎶᏗ.\nᎢᏳᏍᎩᏂᏃ ᏂᏣᏛᏓᏍᏓᏁᎲᎾᏉ ᎢᎨᏎᏍᏗ, ᎠᏏᏴᏫ ᎠᎴ ᎠᏂᏔᎵ ᏕᎭᏘᏁᎨᏍᏗ, ᎾᏍᎩᏃ ᎠᏂᏃᎮᏍᎬ ᎠᏂᏔᎵ ᎠᎴ ᎠᏂᏦᎢ ᎠᏂᎦᏔᎯ ᏂᎦᏛ ᏣᏁᏨ ᎠᏍᏓᏲᏍᎨᏍᏗ.\nᎭᎾ ᎡᏝᏪᎯ ᎤᏬᏞ ᎢᎦ ᏒᎮᏱᏣ ᎠᏓᏅᏖᏍᎨ ᏃᎴ ᎤᎦᏙᏍᏕ ᏫᎵᎻ.\nᎪᏍᏓ ᎢᏳᏍᏗ ᏄᏍᏛ ᎤᏁᎦᎸ ᏃᎴ ᏧᏬᏘᏓ ᎨᏒ ᏗᎦᏙᎵ ᎭᏫᏂᏣ ᏃᎴ ᎠᎵ ᎤᎴᏴᏒ ᎨᏐ ᎤᏔᎣᎸᏐᏅ ᎤᏓᏏᏁᏕᏅ.\nᎯᎠ ᏄᏂᏪᏎᎢ; ᎭᏢ Ꮎ ᏧᏕᏅ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ, ᎣᎩᎪᎲᏰᏃ ᎤᏤᎵ ᏃᏈᏏ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎠᎴ ᎣᏣᏓᏙᎵᏍᏓᏁᎵᎦ.\nᏥᏌ ᎤᏟ ᎡᎶᎸᏉᏗᏳ ᏂᎯ, ᎡᏍᎦᏉ ᎢᎩᏙᏓ ᏤᎦᏈ ᎾᏍᎩ ᎢᎩᏁᎸᎯ ᎯᎠ ᎠᏔᎴᏒᎢ, ᎠᎴ ᎾᎿ ᎤᏩᏒ ᎤᏗᏔᎲᎢ ᎠᎴ ᏚᎾᏗᏔᎲᎢ ᏧᏪᏥ ᎠᎴ ᎤᎾᏝᎾᎥᎢ.\nᎠᏁᎵᏌᏕᏍᎨᏃ ᎠᎩᎾ, ᎤᏂᎾᏝᎢ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᎡᏍᏕᎵᏌᏕ ᎠᎩᎾ?\nᏍᏈᏍᏓ ᏚᎾᏙᎡ ᎠᏣᏗ, ᏎᏃ ᏧᏂᎶᎸᏗ ᏓᏃᏎᎮ ᎠᏂᏣᎳᎩ.\nᎠᏎᏃ ᏥᏌ ᎤᏙᎴᎰᏒᎩ ᎤᏲᏉ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙᏃ ᎢᏍᎩᏌᏛᎥᏍᎦ, ᎢᏣᏠᎾᏍᏗ?\nᎠᏂᏆᎵᏏᏃ ᎡᏙᎲ ᎠᏁᏙᎯ ᎾᏍᎩ ᎤᎾᏛᎦᏅᎩ, ᎠᎴ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏥᎪ ᎾᏍᏉ ᎠᏴ ᏦᏥᎨᏫ?\nᏆᎴᏗ ᎤᏙᎴᎰᏒ ᏗᎬᏩᏎᎪᎩᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᏔᎸᏅᎩ, ᎠᎹ ᏬᏁᎩᏎᎢ, ᎠᎴ ᏚᏑᎴᎮ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏴ ᎥᏝ ᎠᎩᏍᎦᏅᏨᎯ ᏱᎩ ᎯᎠ ᏄᏍᎦᏅᏨᎾ ᏴᏫ ᎤᎩᎬ. ᏂᎯ ᎢᏣᎦᏌᏯᏍᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᏄᏓᎴᏒ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᎴ ᎠᏐᏢᏙᏗ ᎨᏒ ᎨᏥᏙᎵᏍᏗᏉ ᎨᏎᏍᏗ ᏴᏫ; ᎦᎸᏉᏗᏳᏍᎩᏂ ᎠᏓᏅᏙ ᎠᏐᏢᏙᏗ ᎨᏒ ᎥᏝ ᎨᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ ᏴᏫ.\nᏕᎦᏃᏣᏢ ᏧᏬᏣᎳᎩᏍᏗ ᏧᏃᎯᏍᏗ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ, ᏃᏗ ᎪᎱᏍᏗ ᏱᏓᏥᎶᏍᏓ ᏌᎳᏓ.\nᎠᎴ ᏞᏍᏗ ᏍᏆᏘᏂᏙᎯ ᏰᏦᏎᎮᏍᏗ ᏂᎯ, ᎠᏏᏴᏫᏉᏰᏃ ᏗᏣᏘᏂᏙᎯ, ᎾᏍᎩ ᎦᎶᏁᏛ.\nᏰᎵ ᎪᎯᏛ ᎠᏋᏌ ᎦᏓᏂᏆᏘᎲ, ᏂᏥᏃᎯᏎᎸᎾ ᎨᏒ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬ.\nᎾᏍᎩ Ꮎ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎡᎶᎯ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩ ᏳᎪᏩᏘᎭ ᎠᎴ ᎥᏝ ᏳᎦᏔᎭ; ᏂᎯᏍᎩᏂ ᎡᏥᎦᏔᎭ, ᎢᏤᎳᏗᏙᎭᏰᏃ, ᎠᎴ ᎾᏍᎩ ᎢᏥᏯᎡᏍᏗ.\nᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎦᎸᎶ ᎦᎸᎳᏗ ᏓᏥᎾᏄᎪᏫᏏ ᎠᎴ ᎤᏰᎸᏛ ᎡᎶᎯ ᎡᎳᏗ, ᎩᎬ ᎠᎴ ᎠᏥᎸ ᎠᎴ ᏧᎦᏒᏍᏗ.\nᎤᏙᎯᏳ ᎣᏍᏓ ᎤᏰᎸᏁ ᎤᏂᏣᏘ ᏴᏫ ᎠᏂᎦᏔᎲ ᎤᎵᎪᎾᏔᏅᎢ.\nᎣᎩᎾᏓᏴᎳᏛ ᎣᏍᏓᏕᎭᏲᎲ ᎠᏓᎨᏗ ᎦᏛ.\nᎠᎵᏍᏓᏴᏗ ᎤᏍᏉᎵᏱ ᎤᎬᏩᎵ ᎪᏢᏅᎯ, ᎠᎴ ᎤᏍᏉᎵᏱ ᎠᎵᏍᏓᏴᏗ ᎤᎬᏩᎵ ᎪᏢᏅᎯ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏙᏛᏛᏔᏂ ᎢᏧᎳ ᎤᏍᏉᎵᎩ ᎠᎴ ᎠᎵᏍᏓᏴᏗ. ᎠᏰᎸᏃ ᎥᏝ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᎤᎬᏩᎵ ᎪᏢᏅᎯ ᏱᎩ, ᎤᎬᏫᏳᎯᏍᎩᏂ ᎤᎬᏩᎵ ᎪᏢᏅᎯ; ᎠᎴ ᎤᎬᏫᏳᎯ ᎠᏰᎵ ᎤᎬᏩᎵ ᎠᎵᏍᎪᎸᏔᏅᎯ.\nᎠᎴ ᎬᏂᏳᏉ ᎠᏁᎭ ᎣᏂ ᏥᎩ, ᎾᏍᎩ ᎢᎬᏱ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏁᎭ ᎢᎬᏱ ᏥᎩ, ᎾᏍᎩ ᎣᏂ ᎨᏎᏏᏗ.\nᏧᏁᎵᏁᏃ ᎢᎦ ᎤᏍᏆᎸᎲ ᎾᏍᎩ ᎠᎱᏍᏕᏎᏗ ᎨᏒ ᎠᏲᎵ, ᏥᏌ ᏚᏃᎡᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᏂᏚᏬᎡ ᎠᏏᏉ ᏣᏥᏁᎵᎬᎾ ᎨᏎᎢ.\nᎿᏉᏃ ᏔᎵᏁ ᏙᎤᏛᏛᏅᎩ, ᎦᎪ ᎡᏥᏲᎭ? ᏚᏪᏎᎸᎩ ᎯᎠᏃ ᏄᏂᏪᏒᎩ; ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ.\nᎪᎪᏃ ᎾᏍᎩ ᎣᏏᏅ ᏱᏂᏨᎦ ᎢᏳᏃ ᎣᏍᏛ ᎨᏒ ᎢᏥᏍᏓᏩᏕᎩ ᏱᎩ?\nᎧᏂᎩᏓ ᎨᏎ ᎦᏙ ᎠᏍᎪᏍᏙᏗ, ᏅᏯ ᎬᏗ ᎤᏂᏐᏗ ᎨᏎᏍᏗ.\n ᏧᎦᏃᏮ ᏗᏁᏏᏎᎢ.\nᏳᎵᏍᏇᏚᏮᎾ, ᏓᎶᏂᎨ ᎤᏍᏘᏰᎬ ᎤᎵᏍᎩᏃᏘᏍᏛ, ᎢᏳᏓᎵᎭ ᏕᎦᏰᏌᏛ ᏕᎬᏗᏍᎬ ᎠᎵᏔᏬᏍᎬ.\nᎢᏧᎳᎭᏃ ᏕᎨᎦᏛᏁ ᎠᏂᏔᎵ ᏗᎾᏓᎾᏌᎲᏍᎩ; ᎠᏏᏴᏫ ᎠᎦᏘᏏᏗᏢ, ᏐᎢᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ.\nᎢᏳᏃ ᏂᎬ ᎠᏰᎸ ᎠᎦᏔ ᏱᎩ, ᎭᏢ ᎠᏛᎪᏙᏗ ᏱᎩ? ᎢᏳᏃ ᏂᎬ ᎠᏛᎪᏙᏗ ᏱᎩ, ᎭᏢ ᎣᏪᏩᏒᎢᏍᏙᏗᏱ ᏱᎩ?\nᎤᏚᎵᏍᎨ ᎤᏅᎢᏍᏗ Philadelphia, ᏚᏂᏆᏅᏤᎢᏉ, ᏣᏥ ᎠᏍᏛᏧᏍᏗᏍᎨ ᎦᎾᏌᎾᎩᏍᎬ ᎦᎷᏯᏍᏘ.\nᏥᏯᎵᎡᎵᏤᎰ ᎠᏆᏁᎳᏅᎯ ᎬᏁᎢᏍᏗᏍᎪ ᏂᎪᎯᎸ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ,\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᎦᏅᎩ ᏂᏕᏥᎾᏝᎥᎾ ᏱᏂᏨᏁᎸ ᎤᏙᎯᏳᏒ ᏂᏕᏥᎾᏝᎥᎾ ᏱᎩ.\n“Ꭳ,” ᎤᏛᏁ.\nᎨᏍᏗ ᏐᏉ ᎤᏲᎸ ᏱᎨᏎ ᎦᎶᏇ, ᎠᎴᏃ ᎠᎾᏙᎴᏆᏍᎬ ᎠᎴ ᏓᎾᏁᎶᎲᏍᎬ ᎠᎴ ᎠᎾᏁᎸᏗᏍᎬ ᎤᏂᏃᎯᎵᏓᏍᏗ.\nᎨᏍᏓᏛ ᏯᏂᏍᎦᎮ ᏩᎭᏯ, ᎠᏎᏍᎩᎾ ᏙᏳ ᎤᏦᏎᏗ ᏣᏁᎵᏍᎬ ᏍᎩᎾ ᏩᎭᏯ.\nᏧᏁᏨᏃ, ᎥᏝ, ᎤᏛᏁᎢ; ᎠᏎᏃ ᎣᏂ ᎤᏁᏟᏴᏎ ᎤᏓᏅᏛᎢ, ᎠᎴ ᎤᏪᏅᏎᎢ.\nᎾᏍᎩᏃ ᎿᏉ ᎤᏩᏛᎲ ᏌᏉ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏓᎬᎾ ᎢᏳᏍᏗ ᎤᏪᏅᏎ ᏭᎾᏗᏅᎭ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏛᎢ, ᎾᏍᎩᏃ ᎤᏩᏎᎢ.\nᎦᏌᎴᎾ ᏠᏯ ᏨᏛᎩᏂᏴᎩ ᎦᏆ ᎦᏁᎸᎢ ᏖᏒ ᏘᏁᏒᎭ, ᎠᎴ ᎪᏪᎵ ᏙᏘᏁᏒᎭ ᎾᏍᎩ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎦᏁᎦ ᏗᎪᏪᎶᏗ.\nᎾᏍᎩ- ᎢᏳᏍᏗ ᎯᎠ ᏄᏪᏎᎢ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏰᎬᏍᏓ ᎢᎸᎯᏢ ᎢᏅ ᏭᎶᏎᎢ, ᎤᎸᏒᎭ ᎤᎬᏫᏳᎯ ᎢᏯᎬᏁᏗᏱ ᎠᎴ ᎥᎤᎷᎯᏍᏗᏱ.\nᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᏰᎵ ᎬᎦᏙᎥᎯᏍᏙᏗ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎠᏁᎲᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᏚᎾᏄᎪᏫᏎᎸ.\nᎤᏂᏄᎪᏤᏃ, ᏭᎾᎵᏥᏙᏁ ᎾᏍᎩ ᏴᏫ ᎠᏎ ᏧᏂᏁᏟᏴᏍᏗ ᎨᏒ ᏚᎾᏓᏅᏛᎢ.\nᎭᏩᏧ, ᎭᏩᏧ, ᎭᏩᏧ, ᏧᏍᏆᏴᏍᏗ, ᎭᎩᏠᏩ ᏫᎩ ᏧᏪᏥ ᏗᎦᏅᏙᏗ.” \n”ᏙᎢᏳᏍᏗ ᎮᎵᎠ ᎤᏛᏁ ᏌᎳᏓ ᏣᎾᏕᎲᏍᎬ ᏌᏌ ᎠᏂᏓ?”\nᎤᏩᏛᎮ ᏍᎩᎾ ᎠᏗᏍᎬ ᏙᏯ.\nᎢᏳᏃ ᎩᎶ ᏅᏩᎾᏓᎴ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏱᎦᏬᏂᎭ, ᎠᏂᏔᎵ, ᎠᎴ ᏦᎢ ᎢᏴᏛ ᏩᏍᏕᏍᏗ ᏓᏂᏬᏂᏎᎨᏍᏗ ᏌᏉ ᎤᏪᏒᏛ; ᎠᏏᏴᏫᏃ ᎠᏁᏢᏗᏍᎨᏍᏗ.\nᎠᎴ ᎾᏍᎩ ᎠᏎᎵᏔᏅᎯ ᎨᏒ ᎬᏔᏅᎯ ᏥᎩ [ᎦᎶᏁᏛ ᎠᏥᎸ-ᎨᎶᎯ ᎢᏯᎬᏁᎸᎯ ᏥᎩ,]\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏁ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᏈᏓᏃ ᎤᏙᎴᎰᏒ ᎯᎠ ᏂᏚᏪᏎᎴ ᏴᏫ; ᎢᏥᏍᎨᏯ ᎢᏏᎵ ᏧᏪᏥ, ᎦᏙᏃ ᎢᏥᏍᏆᏂᎪᏍᎦ ᎯᎠ, ᎠᎴ ᎦᏙᏃ ᎤᏯᏅᏒᎯ ᏙᏍᎩᎾᎦᏂᎭ, ᎾᏍᎩᏯ ᎣᎩᏅᏒ ᏙᎩᎾᎵᏂᎬᎬ ᎠᎴ ᎣᏍᏙᏏᏳ ᎨᏒ ᏦᎩᏅᏔᏃᎢ ᎯᎠ ᎬᏪᏓᏍᏗ ᏥᏃᏍᏛᏁᎶᎢ.\nᎤᏍᏚᏁ ᎦᏅᏫᏍᏗᏍᎩ ᎡᎶᏗ, ᎤᏅᎪᏤ ᎣᏁ ᎢᏣ ᏭᎶᏎᎢ, ᏃᎴ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᏚᏗ ᎣᏁᎢᏣ.\nᎠᎴ ᏞᏍᏗ ᎤᏓᎪᎵᏰᏗᏱ ᎨᏒ ᏫᏗᏍᎩᏯᏘᏅᏍᏔᏅᎩ, ᏍᎩᏳᏓᎴᏍᎨᏍᏗᏉᏍᎩᏂ ᎤᏥ ᎨᏒᎢ. ᏣᏤᎵᎦᏰᏃ ᏣᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᏣᎵᏂᎩᏗᏱ ᎨᏒᎢ, ᎠᎴ ᎡᏣᎸᏉᏗᏳ ᎨᏒ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ.\n“ᎣᏁ ᎢᏣ ᏫᎶᎯ ᏣᏄᏏ,” ᎤᏛᏁ ᎰᎻ, ”ᎠᏯ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏗᏍᏆᏂᎪᏙᏗ ᎢᏣ ᏱᏥᏌᏙᏯ! \nᎥᏝᏍᎩᏂᏃᏅ ᎤᎷᏨᏉ ᎤᏩᏒ, ᎤᎦᎵᏍᏗᏍᎩᏂ ᎾᏍᏉ ᎤᏓᏅᏓᏛᎢ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᎣᎩᏃᏁᎸ ᏂᎯ ᎤᏣᏘ ᎢᏣᏚᎵᏍᎬᎢ, ᎤᏲ ᎢᏥᏰᎸᏒᎯ, ᎤᏣᏘ ᏍᎩᎨᏳᎢᏳ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᎢᎦᎢ ᎠᏆᎵᎮᎵᏨᎩ.\nᎢᏳᏃ ᎿᏉ ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ ᎤᏩᏒ ᎤᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏄᏬᏍᏕᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎨᏥᎸᏉᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏓᏘ ᏁᎮᏍᏗ, ᎿᏉ ᏓᎦᏂ ᎦᎸᏉᏗᏳ ᎤᏪᏍᎩᎸᎢ;\nᏂᎦᏓ ᏄᏓᎴᎯ ᏄᎵᏍᏔᏂᏙᎴ, ᎠᏎᏍᎪᏃ ᏍᎩᏳᎵᏍᏙᏗ ᎨᏎ?\nᎷᎦ ᎤᏩᏒ ᎣᏍᏕᏙᎭ; ᎹᎦ ᏘᏯᏗᏁᏒᎭ, ᎬᎩᏍᏕᎸᎯᏓᏍᏗᏰᏃ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏂ ᎡᎶᎯ ᎠᏁᎯ ᏓᎾᏕᏒᎲᏍᎪᎢ ᎠᎴ ᏕᎨᏥᏰᎪᎢ;\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎺᎵ ᎤᎦᏔᎲᏒ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎳᏉᏂ, ᎾᏍᎩ ᎦᏛᎬᎢ, ᏗᏍᏇᏲᎲᏍᎩ.\nᎤᎵᏍᏙᏴᎮᎢ ᎤᎧᏛᎢ ᏃᎴ ᎠᏍᎪᎵ ᏣᏄᏏ; ᏃᎴ ᏭᎬᏫᏳᏒ ᏧᎷᏫᏍᏓᏁᏗ, ᏏᏆ ᎤᏪᎵᏍᏗ ᎨᏎ ᎾᏍᎩᏴ ᏴᏫ ᎤᎾᎦᏙᏍᏛᎢ.\nᎠᏆᎵᎸ ᎣᏍᏛ ᎠᎵᏍᏗ ᎨᏒᎢ, ᎠᎩᏍᏆᏛ ᎦᏙᎩᏯᏍᎬᎢ, ᎠᎩᏍᏆᏂᎪᏔᏅ ᎪᎯᏳᏗ ᎨᏒᎢ,\nᎤᏣᏔᏅᎯᏰᏃ ᎠᏆᎵᎮᎵᏨᎩ, ᎢᏓᏓᏅᏟ ᎤᏂᎵᏨ ᎠᎴ ᎤᏂᏃᎮᎸ ᏣᏠᎾᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎮᏙᎲ ᏚᏳᎪᏛ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ Ꮎ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎤᏁᎳᏅᎯ ᎠᏂᎩᎵᏲᎩ, ᏫᏓᏂᏲᎯᏏ ᏧᏍᏆᏂᎪᏙᏗᏱ ᏧᎾᏓᏅᏙ, ᎣᏍᏛ ᏕᎤᏂᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩᏯ ᏄᏓᎵᏓᏍᏛᎾ ᎤᏬᏢᏅᏅᎯ ᏥᏓᏂᏲᎯᏎᎰᎢ.\nᎨᏍᏗ ᎩᎳ ᎦᎶᏇ ᎪᏍᏔᏴ ᏗᏂᏆᎵ ᏧᎾᎵᏐᏍᏔᏅ ᏱᏚᏂᏰᎴᏅ.\nᎠᎴ ᎤᎾᎴᏅᎮ ᎬᏭᎯᏍᏗᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏙᏥᏩᏛᎲᎩ ᏕᏂᏪᏍᎨᎢ, ᎯᎠ ᎾᏍᎩ ᏙᏥᏩᏛᎲᎩ ᏕᏓᎴᎾᏍᏗᏍᎬᎩ ᏴᏫ, ᎠᎴ ᏕᎧᏅᎡᏗᏱ, ᎯᎠ ᏂᎧᏪᏍᎬᎩ, ᎠᏴ ᎠᎩᎬᏫᏳᎯ, ᎦᎶᏁᏛ.\nᏣᏄᏏ ᏂᎦᏓ ᎤᏬᏰᏂ ᎬᏗ ᏚᏲᎵᎴ.\nᎪᎯᏳᏗᏍᎩᏂ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒ ᎯᎠ ᏂᎦᏪᎭ, ᏞᏍᏗ ᏣᎾᏫᏱ ᎯᎠ ᏱᏂᏪᏍᎨᏍᏗ, ᎦᎪ ᎦᎸᎶᎢ ᏓᏰᏏ? (ᎾᏍᎩ ᎦᎶᏁᏛ ᎠᎦᏠᎥᏙᏗᏱ;)\nᎥᏝ ᏂᏥᎥ ᏱᏨᏯᏛᎦ; ᎦᏥᎦᏔᎭ ᎦᏥᏯᏑᏰᏛ ᎨᏒᎢ; ᎠᏎᏃ ᎤᏙᎯᏳᏗᏱ ᎪᏪᎸᎢ, ᎢᏧᎳᎭ ᎣᏍᏓᎵᏍᏓᏴᎲᏍᎩ ᎤᏌᎳᏓᏅ ᎦᏗᎨᏂ ᎠᏆᏡᏗᏍᎬᎢ.\n“ᎤᏙᎯᏳᏗ ᏥᏂᏪᎠ,” ᎤᏛᏁ.\n“Ꭳ, ᎣᏍᏓᏗ ᏤᏣᎧᏃᏗ.”\nᎤᏟᏂᎩᏓ ᎨᏎ ᎨᏴᎢ ᎠᎹ, ᏚᎧᏔᏍᏔᏁᎢ ᎤᏍᏗ ᎠᏣᏗ ᏭᎾᏌᎾᎩᏎ, ᎠᏲᏟᎨ ᏗᎦᏁᎲ ᏭᎸᏥᎴ.\nᎤᏰᎶᎢᏍᏔᏁᏃ ᎤᏍᏆᏃᏴᎬ ᎦᎸᎳᏗ ᏧᎶᏎᎢ ᎾᏍᎩᏯ ᎤᏃᎴ ᎤᏣᏘ ᏣᏱᎵᏐᎢ, ᎤᎧᎵᎣᏁᏃ ᎠᏓᏁᎸ ᎾᎿ ᎠᏂᏅᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎾᏍᎩ ᏕᎦᏃᏣᎸ ᏚᏰᎵᏎ ᎨᎵᎵ ᎾᎿ ᎬᏩᏚᏫᏛ ᎨᏒᎢ.\nᎠᎴ ᎢᏧᎳᎭ ᏕᎦᎴᎯᏐᏔᏅ, ᎠᎴ ᎢᏧᎳᎭ ᎢᎦᏅᏗᏱ ᏂᎬᏁᎸ ᎦᎸᎳᏗ ᏗᎨᏒ ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ;\nᎾᏍᎩᏃ ᎯᎠ ᏥᏗᏃᎮᎭ, ᎯᎠ ᎾᏍᎩ Ꮀ ᏄᎬᏫᏳᏒ ᏂᎦᎵᏍᏗᎭ; ᎾᏍᎩ ᏄᏍᏗ ᎢᎩᎧᎭ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎾᏍᎩ ᎠᎦᏘᏏᏗᏢ ᎦᎸᏉᏗᏳ ᎦᏍᎩᎸ ᎦᎸᎶᎢ ᎤᏪᏅ;\nᏧᏍᏗ ᏓᏂᏰᏌᏛ ᎢᏳᏍᏗ ᏕᎦᎾᏅᎪᎪ ᎠᏍᏘ ᏧᏂᏂᏙᏗ.\nᎥᏝ ᎠᎴ ᏳᏍᏆᏂᎪᏗ; ᏎᏓᏂᏰᏃ ᎤᏩᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎦ-ᎦᏛ ᎡᎯ ᎠᏤᎸᏍᎪᎢ.\nᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏅ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏗᎹᏗ ᎢᎩᏅᏟ,\nᏅᏃᎯ ᏭᎾᏓᏐᎴ ᏗᏂᏲᏟ ᏃᎴ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙᎯ ᏭᎾᏦᏁ.\nᏝᏉᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᏗᏥᏰᎸ ᎦᏁᎸ ᎨᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᏥᏥᏯᎠ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏥᏁᎸᎯ ᎨᏒᎢ, ᎠᎴ ᏂᎯ ᎢᏨᏒ ᎢᏣᏓᏤᎵ ᏂᎨᏒᎾ ᎨᏒᎢ?\nᏯᏆᏨᏉᏛᎾ ᏥᏃᎮ.\n“Ꮒ,” ᎤᏛᏁ ᎤᏔᎾᏯ ᎤᏃᏕᎾ, “ᏔᎵᏁ ᏫᎮᏙᎸ ᎤᏲ ᎤᎾᏗᏅᏗ, ᏧᏍᏆᏴᏍᏗ, ᎪᏪᎵ ᎠᎪᎵᏰᏗ ᎠᎦᎸᏓ ᎯᏃᎸ.\nᎠᏍᏓᏯᏃ ᎤᏁᎷᏅ ᏗᏂᎴᏂ ᏚᏂᏍᏚᏁᎢ, ᎠᎴ ᎤᎴᏃᏅᎯ ᎤᎾᏁᎷᎩᎡᎴᎢ;\nᎭᏛᎩᎠᏧ?\n“ᏙᎢᏳᏍᏗ, ᏃᎴ ᎦᏨ ᎮᏙ?” ᎤᏪᎷᏁ ᏫᎵᎻ.\nᎠᎴ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᎸᏉᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗᏳ ᎨᏒ ᎢᏳᏍᏗ; ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᎬᏁᎢᏍᏔᏂ ᎠᏁᎲ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎠᎴ ᏙᏓᏥᏃᎩᏍᏔᏂ ᏕᏣᏙᎥᎢ.\nᏃᏗ ᎱᎦᎿᏁ ᏃᎴ ᎦᏃᎸᎥᏍᎨ, ᎠᎹ ᎦᏁᎲ ᏭᏃᎸᏔᏁ ᎤᎵᏍᏇᏔᏬ.\nᏙᏳ ᎤᏪᏍᏓᏁᎸ ᏩᎭᏯ.\nᏗᏛᎯᏍᏗᏍᎩ ᎠᏑᏴᎥᏍᎦ ᎦᏙ ᏧᎾᏗᎩᏓ.\nᏍᏔᏛᎩᎠᏧ?”\n“ᎠᎹᏗ ᏣᏚᎳᏓ,” ᎤᎵᏏᏂᏗ ᏄᏪᏎ ᏣᏄᏏ.\nᎾᏍᎩ ᏥᏓᏂᏒᏁᎰ ᏧᏃᏑᎶᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎤᎾᏠᎾᏍᏛ ᎪᎯᏗᏳ ᏣᎾᏓᏙᎵᏍᏗᏍᎪᎢ; ᎯᎠ ᎾᏍᎩ ᎤᏟ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᏗᎨᎫᎪᏓᏁᏗ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᏄᏪᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᏱᏣᏓᏑᏯᏰᎵ ᎢᎨᏣᏛᏁᏗ ᎨᏎᏍᏗ ᎢᏕᏒᎭ ᏪᏥᏱᎵᏙᎸᎭ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ, ᎢᏳᏃ ᎤᏍᎦᏅᏨᎯ ᎨᏎᏍᏗ.\nᏚᏂᎳᏫᏨᏃ ᏚᏁᏤᎴ ᏥᎷᏏᎵᎻ ᎤᏂᎷᎪᎢᏍᏗᏱ ᏂᎨᏒᎾ, ᎤᏂᎦᏘᏗᏍᏗᏱᏍᎩᏂ ᎠᎦᏴᎵᎨ ᎤᏚᎢᏍᏔᏅᎢ, ᎾᏍᎩ ᏍᎩᏯᏛᎦᏁᎸᎯ ᏥᎩ, [ᏚᏬᏎᎴᎢ.]\nᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᎠᎾᏛᏁᎲ ᎨᏣᏈᏗᏍᎩ ᏱᏥᏍᎦᏍᏓᏁᎮᏍᏗ; ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᏅᏁᎯ ᎨᏥᏛᏙᏗ ᎨᏒᎢ, ᏂᎯᏍᎩᏂ ᎬᏂᎨᏒ ᎢᏨᏁᎯ ᎡᏥᏍᏕᎸᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏥᏍᏕᎸᏗ ᎨᏒᎢ.\nᎣᏍᏓ ᎤᏓᏅᏔᏕ ᏌᎳᏓ.\nᎤᎴᏫᏍᏔᏁ ᎡᎶᏗ.\nᎾᎨᎢᏴ, ᏗᏧᎴᏅᎮ ᎠᎾᏔᏍᎩᏍᎩ---ᏓᎵᎪᏛᏍᎨᎢ, ᎠᏥᎸᎭ ᏗᎦᏌᏆᎸ ᏓᏗᎦᎴᏲᎨᎢ ᎦᎸᎶᎢ.\nᎦᎷᏯᏍᏘ ᏚᏓᏴᎳᏔᏅ ᏧᏍᏆᏅᎾ ᏚᎾᏐᏓᎸ.\nᎪᎱᏍᏗ ᏱᎨᏒᎾ ᏱᎩ, ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎩ.\nᎾᏍᎩᏃ Ꮎ ᏃᏈᏏ ᎤᏴᏍᏗ ᎦᏙᎥ; ᏦᎢᏃ ᎢᏗᎦᏛᎯ ᎨᏒ ᎡᏉᏂ ᏚᏪᏴ ᎾᏍᎩ ᏌᏉᎢᏳᏪᏨᎯ ᎤᏴᏍᏗ ᏂᏚᎵᏍᏔᏅᎩ; ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᎠᎹ ᎤᎾᏗᏔᎲ ᏚᏂᏲᎱᏒᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᎹ ᎤᏴᏍᏗ ᏂᏚᎵᏍᏔᏅᎢ.\nᎦᎵᎡᎵᎦ ᏥᏕᎾᏦᎯ ᏥᏍᏆᎸᎾ, ᎠᏎᏃ ᏫᏥ ᏩᏆᏓᏬᏍᏗ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ.\nᏦᎢᏃ ᏫᏄᏒᎸ ᎯᎠ ᏄᎵᏍᏔᏅᎩ; ᏉᎳ ᏚᏪᏟᏌᏅᎩ ᏄᏂᎬᏫᏳᏒ ᎠᏂᏧᏏ; ᎤᎾᏓᏟᏌᏅᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎠᏴ ᎥᏝ ᎪᎱᏍᏗ ᎦᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ ᏗᎦᏤᎵ ᏴᏫ, ᎥᏝ ᎠᎴ ᎠᎩᏲᏍᏔᏅᎯ ᏱᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎩᎦᏴᎵᎨ ᎨᎩᏁᎸᎯ; ᎠᏎᏃ ᏥᎷᏏᎵᎻ ᏥᏴᎩ ᏗᎬᏆᏘᎾᏫᏛᎲᎩ ᏕᎬᎩᏲᏒᎩ ᎠᏂᎶᎻᏱ.\nᎾᏍᏉ ᎤᏂᏣᏛᎩ ᎤᏍᏆᏂᎪᏗ ᎠᎾᏛᏁᎵᏍᎩ ᏚᏂᏟᏌᏅᎩ ᎪᏪᎵ, ᎠᎴ ᏚᎾᎪᎲᏍᏔᏅᎩ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ. ᎤᎾᏎᎸᏃ ᏧᎬᏩᎶᏗᎯ ᎤᎾᏙᎴᎰᏒᎩ ᎯᏍᎦᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎨᏒ ᎤᏂᏁᎬ ᎠᏕᎸ.\nᎠᏂᎪᏩᏘᏍᎨᏃ ᎠᏍᎦᏯ ᎠᏥᏅᏩᏅᎯ ᎢᏧᎳᎭ ᎠᏂᏙᎾᎡᎢ, ᎥᏝᏃ ᎪᎱᏍᏗ ᏫᎬᏩᎾᏛᏗ ᏱᎨᏎᎢ.\nᎯᏁᎬᏰᏃ ᏣᏚᏓᎴᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎯᏁᎬ ᏣᏍᎦᏅᏨ ᏗᏣᏚᎪᏓᏁᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎯᎠ ᎠᏴ ᎥᎩᏁᏤᎸᎯ ᎦᎵᏥᏙᎲᏍᎩ ᎠᎴ ᎥᎩᏅᏏᏛ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏗᎦᏥᏰᏲᎲᏍᎩ ᎦᎶᎯᏳᎯᏯ ᏥᏁᎦ ᎦᎶᏁᏛ ᎠᎦᏔᎲᎢ, ᎥᏝ ᏱᎦᏥᎪᎥᏍᎦ.\nᎠᏏᏉᏃ ᎧᏃᎮᏍᎬ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏧᏬᎪᏙᏗᏱ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏒᎢ, ᏈᎵᏏ ᎤᏪᎾᏮᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏁᏗ ᏂᎦᎵᏍᏔᏅᎭ ᏫᎬᏯᏅᎲᎭ.\nᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎼᏏ ᎤᏬᏪᎳᏅᎯ; ᎥᏝ ᎯᏴᏑᎶᏗ ᏱᎨᏎᏍᏗ ᏩᎦ ᎠᎦᏔᏙᎥᏗᏍᎩ ᎤᏣᎴᏍᏗ. ᏩᎦᏉᏍᎪ ᏓᏓᏅᏖᎭ ᎤᏁᎳᏅᎯ?\n“ᎨᏍᏗ ᏍᎩᎾᎾ ᎢᏣ ᏱᏥᎪᏩᏘᏍᎨᎢ ᎠᎬᏱ.\nᎦᎵᏉᎩ ᎢᏯᏂ ᏧᏂᏍᏗ ᏌᏌ.\nᎩᏃᎯᏳᏅᎾ? ᏥᏲᏎᎸ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏘ.\nᎠᏕᎳ ᎠᏓᎶᏂᎨ ᎤᎵᏑᏫᏓ ᏕᎪᏪᎴ ᎠᏗᏍᎩ: ᎠᏂᎪᏚᏍᎩ ᎤᎾᏤᎵ ᏗᎦᏃᏣᏟ ᏏᏆ  ᎣᏍᏓ ᏂᏚᏩᏁᎢ ᏚᏏᎳᏛ ᏌᎳᏓ ᏂᎦᎵᏍᏗᏍᎬᎢ.\nᎤᎵᎮᎵᏍᏗ ᎤᏂᎷᏤᎴ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ.\nᎠᎴ ᎬᏂᏳᏉ, ᎾᎯᏳᏉ ᎢᎦ ᎠᏂᏔᎵ ᎤᎾᏓᏍᏓᏩᏗᏙᎸᎯ ᏗᎦᏚᎲ ᎡᎺᏯᏏ ᏧᏙᎢᏛ ᏩᏂᎦᏖᎢ, ᎾᏍᎩ ᏧᏁᎳ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᏂᏚᏓᎴ ᏥᎷᏏᎵᎻ.\nᎾᏍᎩ ᎢᏨᏃᎮᎮᎸ ᎠᏏ ᏥᏨᏰᎳᏗᏙᎭ.\nᎦᎶᏏᏙᎮ ᏚᏅᏓᏒ ᏗᎧᏃᎩᏍᎨ, ᎤᏬᏚ ᎨᏎ ᎣᏍᏓ ᏯᏛᎦᏍᏔᏅᎾ ᏱᎩ ᏂᎦᏪᏍᎬ, ᎧᏃᎮᏍᎩ ᏴᏫ ᏧᏪᎵᏏᏯ ᏗᎩᏍᏗ.\nᏧᎾᏓᎴᏅᏛᏰᏃ ᏴᏫ ᏙᏓᎨᏥᏲᎯᏎᎵ, ᎠᎴ ᏓᏰ ᎦᏕᎰᏔᏂ, ᎠᎴ ᏓᎦᏰᏥᏐᏢᏔᏂ, ᎠᎴ ᏙᏓᏰᎦᎵᏥᏍᏈ,\nᏩᏙ, ᎤᏓᏙᏎᎴᎢ Ꮎ ᎠᏧᏣ.\nᎤᎬᏫᏳ Ross ᏫᏥᎢᎦ ᎨᏒ ᏍᎦᏥ ᎩᎦ ᎤᏁᎯ. ᎦᎵᏉᎩ ᏣᏁᎵᏁ ᏭᏙᎯᏳᎲ.\nᎤᎵᏒᏍᏔᏁᎢ, ᎣᏍᏓ ᎠᏒᎨ - “ᎤᎦᏃᏩ ᎤᏅᏗ, ᏄᎾ ᎦᏁᎦ, ᏑᎾᎴ ᎠᎩᏍᏗ ᎤᏂᏑᎸᏓ.\nᎢᏧᎳ ᏙᎩᎾᏒᎭᏂᎸ ᏚᎭᏁᎦᎸ, garnet ᎣᎩᎾᏛᏅ, ᏱᏂᎨᏒᎾᏉ ᎢᎦᏪᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎤᏅᏙᏗ ᎢᎦᏪᏍᏗ.\nᏐᎳᏃ ᏥᎷᏏᎵᎻ ᎤᎷᏨ ᏧᎾᏁᎶᏗ ᏧᎵᎪᏁᏗᏱ ᎤᏰᎸᏁᎢ. ᏂᎦᏛᏃ ᎬᏩᏍᎦᎢᎮᎢ, ᎠᎴ ᎥᏝ ᏯᏃᎯᏳᎲᏍᎨ ᏧᏁᎶᏗ ᎨᏒᎢ.\nᎤᏔᎳᏪᏎᏃ, ᎠᎴ ᏫᏄᏴᎸᎾᏉ ᎨᏎᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏙᏓ ᏧᏄᎪᏤ ᎤᏍᏗᏰᏔᏁᎢ.\nᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏕᏤᎲᎩ ᏣᏂ ᎤᎾᏄᎪᏥᎸ ᎢᏯᏍᏗ; ᎾᎯᏳ ᏅᏓᎬᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᏂᏃᎮᎭ ᎠᎾᎵᏥᏙᎲᏍᎦ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᎠᎾᏁᎷᎩ ᎠᏂᏴᎯᎭ.\nᏭᏓᏏᏁᎢ ᎤᏔᎴᎦᏒ ᎧᏁᏍᎪ.\n“ᎨᏍᏗ ᎣᏍᏓ ᏥᏁᎩ ᏱᎩ.\nᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᎠᎨᏴ; ᎿᏉ ᎣᏦᎯᏳᎲᏍᎦ ᎥᏝ ᏂᎯᏉ ᏣᏁᏨ ᏱᏅᏗᎦᎵᏍᏙᎭ ᏦᏦᎯᏳᎲᏍᎦ, ᎣᎬᎡᏰᏃ ᎣᏣᏛᎦᏏ, ᎠᎴ ᎣᏥᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᎤᏙᎯᏳᎯᏯ ᎦᎶᏁᏛ ᎨᏒ ᎡᎶᎯ ᎠᏍᏕᎵᏍᎩ.\nᎠᏎᏃ ᎧᏂᎩᏓ ᏲᎾ ᎨᏴ ᎾᎥᏂ.\nᎠᎴ ᎯᎠ ᏄᏪᏒᎩ; ᎭᏢ ᎡᏥᏅᏁᎢ? ᏣᎬᏫᏳᎯ, ᎡᎭᎦᏔ, ᎬᏬᏎᎸᎩ.\nᎾᎿ ᏗᏥᎿᏍᏕᏜᏛᎯ ᎠᎴ ᎾᎿ ᎡᏣᏁᏍᎨᎲᎯ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎢᏰᏨᏁᎸᎯ ᎢᏦᎯᏳᏒᎢ, ᎾᏍᎩᏯ ᎡᏤᏲᏅᎢ, ᎾᏍᎩ ᎤᏣᏘ ᎨᏎᏍᏗ [ᎢᏦᎯᏳᏒᎢ] ᎤᎵᏠᏯᏍᏕᏍᏗ ᎠᎵᎮᎵᏤᏗ ᎨᏒ ᎤᏁᎳᏅᎯ.\n“ᏰᎵᏉᏍᎪ ᏱᏕᏍᎬᏏ ᎠᏕᎳ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏚᏫᏞᏫᏒ ᏂᎦᏛ ᏌᏉᎭ ᎨᏒ ᎾᎿ ᎠᏰᎸ ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏅᎢ.\n“ᎣᏍᏓ,” ᎤᏛᏁ ᏌᎳᏓ, ᎤᎧᏨᏩᏍᏔᏁᎴ ᎠᎦᏴᎵ ᎤᏃᏕᎾ.\nᎠᏎᏃ ᎠᏂᏧᏏ ᏄᏃᎯᏳᏒᎾ, ᎠᏅᏳᎬ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᏫᏚᏂᏯᏅᎲᎩ ᎩᎶ ᎢᏳᎾᏍᏗ ᎤᏂᏁᎫᏥᏛ ᎤᏁᏙᎯ, ᏚᏂᏟᏌᏅᏃ ᎤᏂᏖᎸᏅᎩ ᎦᏚᎲᎢ; ᏚᏂᎦᏘᎴᏅᏃ ᏤᏌᏂ ᎦᏁᎸᎢ, ᏴᏫ ᏧᏂᏄᎪᏫᏎᏗᏱ ᎤᎾᏁᎶᏔᏅᎩ.\nᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᎦᎫᏍᏛᏗ ᏅᏓᏥᏴᏁᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏆᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎥᏝᏃ ᎿᏉ ᎢᎸᎯᏳ ᎤᏄᎪᎢᏍᏗ ᏱᎨᏎᏍᏗ; ᎠᎴ ᏓᏥᏲᏪᎶᏔᏂ ᏚᏙᎥ ᎠᏆᏁᎳᏅᎯ, ᎠᎴ ᏚᏙᎥ ᎦᏚᎲ ᎠᏆᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎢᏤ ᏥᎷᏏᎵᎻ ᏥᎩ, ᎾᏍᎩ ᎦᎸᎶᎢ ᎤᏁᎳᏅᎯᏱ ᏣᏗᏓᎴᎲᏍᎩ; ᎠᎴ ᏓᏥᏲᏪᎶᏔᏂ ᎢᏤ ᏓᏆᏙᎥᎢ.\nᎾᏍᎩᏍᎩᏂ ᏄᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᏡᎬ ᎣᏍᏛ ᎠᏓᏛᏍᎪᎢ, ᎤᏲᏃ ᏡᎬ ᎤᏲ ᎠᏓᏛᏍᎪᎢ.\nᏦᎢ ᎢᏳᏩᎬᏘ ᎠᎨᏠᎲ ᏫᎵᎻ, ᏅᎩ ᎢᏳᏩᎬᏘ ᎤᏪᏠᏍᏗ ᎠᎪᏎᎴ ᏣᏄᏏ.\nᎤᎩᏨᏓ ᏑᎾᎴ ᏙᏓᏆᏍᎬ, ᎤᏗᏛᎮ ᏦᎯᏍᏙᏗ ᏚᎭᎾᏬᎡ, ᎤᏩᏌ ᏭᎶᏎ ᏗᎦᏚᎲ, ᎾᎥᏂ ᏭᎶᏎ ᎤᎾᎦᎰᏍᏔᏅᎢ ᏣᎦᏥᎶᏍᏔᏅ, ᎦᏲᏟ ᏚᎦᏒᏍᏕ ᎪᏍᏓ, ᏧᏂᎳᏫᎢᏍᏗ ᏭᎷᏣ ᎠᎬᏱ ᎤᎾᏅᏗ ᏭᏩᏁ, ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᎢᎪᎯᏓ ᎤᏂᏂᎦᎸᎯ ᎤᎾᎦᏙᏍᏕ ᎠᏍᎪᎵ ᎣᎭᏁᎢᏣ.\nᎦᏍᎩᎶᎩ ᎤᏩᏁ ᎠᎳᏂ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᏚᏳᎪᏛ ᏅᏓᎦᏓᎴᏅᎯ ᎨᏒᎢ; ᏙᎯᏱᏃ ᏂᏙᏓᏛᏁᎵ ᏗᎩᎾᏫ ᎾᏍᎩ ᎠᎦᏔᎲᎢ.\n”ᎣᏍᏓ ᏣᏓᏅᏖᎴ ᏍᎩᎾᎾ ᏥᏂᎭᏛᏁᎰ,” ᎤᏬᏎᎴ ᏌᎳᏓ.\nᏔᎷᏣ ᏧᎾᏍᏖᏥ ᏚᎸᏛ ᎤᏩᏌ.\nᎦᏚᎲᏃ ᏅᎩ ᏧᏅᏏᏴ ᎨᏒᎩ, ᎦᏅᎯᏒ ᎠᎴ ᎠᏯᏛᎥ ᎤᏠᏱᏉ ᎨᏒᎩ. ᎤᏟᎶᎥᎩᏃ ᎦᏚᎲ ᎤᏩᏔᏅᎩ ᎠᏟᎶᏍᏗ, ᎯᏍᎩᎦᏚ ᎢᏯᏍᎪᎯᏧᏈ ᎢᏳᏟᎶᏛ ᏂᎬᎩ. ᏂᎦᏅᎯᏒ ᎠᎴ ᎾᏯᏛᎲ ᎠᎴ ᏂᎦᏛᎢ ᎤᏠᏱᏉ ᎨᏒᎢ.\nᎯᎠᏃ ᎾᎩᏪᏒᎩ; ᎦᎪ ᏂᎯ, ᏣᎬᏫᏳᎯ? ᎯᎠᏃ ᏄᏪᏒᎩ; ᎠᏏ ᏥᏌ ᎾᏍᎩ ᎤᏲ ᏥᏂᏴᏁᎭ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᏥᎪ ᎩᎶ ᎤᏲᎮᎸ ᎤᎵᏍᏓᏴᏗ?\nᎬᏩᏍᏓᏩᏙᎯᏃ ᏚᏂᏐᏨ ᎤᏅᎨᏫᏒᎯ ᎨᏒᎩ ᎤᎾᏕᏃᏗᏱ.\nᎤᏛᎦᏅᏉᏃ ᏥᏌ ᏄᏍᏛ ᎤᏂᏬᏂᏒᎢ, ᎯᎠ ᏄᏪᏎᎴ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᏦᎯᏳᏎᏍᏗᏉ.\nᎠᎴ ᎠᎩᎪᎲᎩ ᎥᏓᎸ ᎠᏓᎨᏗ ᏗᎬᏩᎸᏌᏛ ᎾᏍᎩᏯᎢ ᎠᏥᎸ ᎤᏓᏑᏱ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ Ꮎ [ᎥᎦᏥᎪᎥᎩ] ᏅᎩᏗᎦᏅᏌᏗ ᎤᎾᏓᎵᏁᎯᏕᎸᎯ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎤᏤᎵ ᏧᏬᏪᎶᏙᏗ, ᎠᎴ ᎾᏍᎩ ᏚᏙᎥ ᎢᎦᎢ ᎠᏎᏍᏗ ᎨᏒᎢ, ᎠᏂᏙᎾᎥᎩ ᎥᏓᎸ ᎠᏓᎨᏗ ᏗᎬᏩᎸᏌᏛ ᎾᏍᎩᏯᎢ, ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏙᏗ ᏓᏂᏁᎲᎩ\nᎦᏚᏏ ᎤᎾᎷᏎ ᏣᎵ, ᏐᏉ ᎢᏳᏩᏍᏉᎸ ᎢᏳᏓᎵ, ᎧᏂᎩᏛ ᏫᏂᎦᎵᏍᎩ ᎠᎬᏱᏣ.\nᎩᎶ ᎯᎠ ᎢᎦᏪᏍᎩ ᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏯᎣᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯᏱ ᎠᏯᎣᎢ.\nᏐᏉᎯᎭ ᏚᏏᎳᏛ ᎤᏍᎪᏍᏓ ᎤᏰᏌᎭᏛ ᏚᏓᏅᎵᏰᎡ.\n“ᎲᎦ ᏄᏓᎨᏎ ᎠᏣᏗ?” ᎤᏓᏛᏛᏁ ᏫᎵᎻ.\nᏫᏥ ᎢᏣ ᏭᏓᏬᎠ ᎤᏍᏗᎢ ᎠᏣᏗ, ᎤᏓᏅᏖᎴ ᏄᏪᏒ ᎡᏆ ᎠᏣᏗ.\nᎠᏦᏱᎮ ᏲᎾ ᎤᏤᏍᏙ.\nᎢᏳᏍᎩᏂᏃᏅ ᏄᏬᎯᏳᏒᎾ ᏳᏓᏅᏒ, ᎤᏁᎳᎩ ᎠᏓᏅᏍᎨᏍᏗ. ᎩᎶ ᎢᎩᏅᏟ ᎠᎴ ᎢᎩᏙ, ᎥᏝ ᏳᏚᏓᎶ ᎾᏍᎩ ᏥᏄᏍᏙᎢ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏅᏩᏙᎯᏯᏛ ᎢᎦᏕᏗᏱ ᎢᎩᏯᏅᎲ.\nᎤᎬᏫᏳᎯᏰᏃ ᎤᏯᏅᏛ ᎾᏍᎩ ᎠᏥᎾᏝᎢ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎾᏥᎾᏝᎥᎾ; ᎾᏍᎩᏯᏃ ᎾᏍᏉ ᎠᏥᏯᏅᏛ ᎾᏥᎾᏝᎥᎾ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎾᏝᎢ.\nᏱᏥᎦᏖᏃᎭ ᎠᎴ ᎤᏣᏘ ᏱᏣᏚᎵᎭ ᎤᎷᎯᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎢᎦ, ᎾᎯᏳ ᎦᎸᎶ ᎤᏥᏍᏢ ᏨᏛᏗᏒᏂ, ᎠᎴ ᎾᏍᎩ ᎪᏢᏔᏅᎯ ᎠᏓᏪᎵᎩᏍᎬ ᏛᏗᏌᏂ.\nᎠᎴ ᏔᎵᏁ ᎠᏍᏚᎲ ᎤᏍᏚᎢᏒ, ᎠᏆᏛᎦᏅᎩ ᏔᎵᏁ ᎬᏃᏛ ᎯᎠ ᏄᏪᏒᎩ, ᎡᎭᎦᏔᏄᎦ.\nᏧᏔᎾ ᏍᏏᏉᏯ ᏓᏃᏎᎰᎢ.\n“Ꭽ! ᏙᎧ ᎭᏗ ᎪᎱᏍᏗ ᏯᏕᏠᏆᏍᎦ,” ᎤᏪᎵᏎ Ꮎ ᏥᏍᏚ… \nᎯᎠᏍᎩᏂᏃᏅ ᎢᏳᏍᏗ ᎥᏝ ᎤᏄᎪᎢᏍᏗ ᏱᎩ, ᎬᏂ ᏴᏓᏙᎵᏍᏗᎭ ᎠᎴ ᎠᎹᏟ ᏯᎬᏍᎦ.\nᎾᏍᎩ ᎢᏛᏗᏍᎪᎢ ᎡᏗᎸᏉᏗᏍᎪ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏛᏗᏍᎪᎢ ᏕᏗᏍᎩᏅᏗᏍᎪ ᏴᏫ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎢᎨᎬᏁᎸᎯ ᎨᎪᏢᏅᎯ\nᏃᎴ ᎨᏍᏗ ᎫᏬᏂᎯᏍᏗ ᏱᎨᏎ.\nᎠᏎᏃ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎢᎬᏩᎾᏓᏑᏰ ᏴᏫ, ᎾᏍᎩᏯ ᎤᎾᏠᎾᏍᏗ ᏗᎾᏕᏲᎲᏍᎩ ᎨᏣᏓᏑᏴᏗ ᏥᎩ, ᎾᏍᎩ ᎤᏕᎵᏛ ᎤᏂᏴᏔᏂᎯᏍᏗ ᎨᏎᏍᏗ ᎤᎾᏓᏤᎵᏛ ᎨᏒ ᎠᏓᏛᏗᏍᎩ, ᎾᏍᎩ ᎠᎾᏓᏱᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎤᎾᎫᏴᏛ, ᎠᎴ ᎤᏅᏒ ᎢᏳᏅᏂᏌᏛ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᏞᎩᏳ ᎤᏂᏛᏗᏍᎩ.\nᎦᏙᎢᏳᏍᏘ ᎤᏰᎸᏗ?\nᏥᎷᏏᎵᎻᏃ ᎤᎷᏨ ᏂᎬ ᎦᏚᎲ ᎤᎾᎵᏖᎸᏅᎩ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎦᎪ ᎯᎠ?\n“ᎤᏂᏃᏕᎾ ᎠᏂᏓ?”\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏴ ᏉᎳ ᏥᏴᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬ ᎥᎩᏴᎩᏅᎯ ᏂᎯ ᎨᏒ ᏗᏣᏓᎴᏅᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ--\nᎠᏍᎩᏯᏃ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏒᎩ ᎾᏍᎩ ᎠᏙᎳᏅᏍᏗ ᏔᎷᎩᏍᎩ ᎪᏢᏔᏅᎯ ᎤᏮᏙᏗ ᎨᏒᎩ ᏗᎬᏩᏁᎶᏙᏗᏱ ᎢᏳᏩᏁᏗᏱ ᏂᎦᏛ ᎤᎾᏓᏤᎵᏛ ᏓᏁᏩᏗᏒ ᏴᏫ; ᎾᏍᎩ ᎤᏪᏥ ᎤᎾᎳᏅᏱ ᏩᏥᏅᏍᏔᏅᎩ, ᎠᎴ ᎤᎾᎳᏅᎯ ᎤᏪᏍᎩᎸᎢ.\nᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᎫᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏓᏥᏯᎵᏍᎪᎸᏓᏁᎵ ᎤᎵᏍᏓᏴᏙᏗᏱ ᎤᏓᏔᏅᎯ ᏡᎬ ᎬᏂᏛ ᎠᏓᏁᎯ, ᎾᏍᎩ ᎠᏰᎵ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏫᏒᏗᏱ ᏥᏡᎦ.\nᎢᏨᏗᏍᎨᏍᏗ ᎤᏣᏘ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ ᎠᎴ ᎤᏓᏅᏘ ᎨᏒᎢ, ᎤᎵᏠᏯᏍᏕᏍᏗ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᎩ ᏗᏓᎵᏎᏗ ᎨᏒ ᎠᏓᎨᏳᏗ ᎨᏒ ᎬᏗ;\nᎠᏴ ᎬᏃᏛ ᎠᎩᏲᎰᏒᎯ ᏥᎨᏒᎩ; ᎠᎴ ᎬᏂᏳᏉ ᎬᏃᏛ ᎨᏎᏍᏗ ᎾᎵᏍᏆᏗᏍᎬᎾ, ᎡᎺᏅ; ᎠᎴ ᏗᏍᏚᎢᏍᏗ ᏨᏍᎩᏃ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏕᏥᏁᎠ.\nᎠᎴ ᎡᎶᎯ ᎦᎶᏐᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎠᏚᎸᏗ ᎨᏒᎢ, ᎾᏍᎩᏍᎩᏂ ᎾᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬ ᏧᎸᏫᏍᏓᏁᎯ ᏂᎪᎯᎸ ᎡᎭ.\nᎨ ᏗᎦᏙᎪ ᏐᏈᎵ; \nᎩᎳᏉᏃ ᎢᏴᏛ ᎠᎨᏳᏣ ᏚᎴᏁᎢ, ᎠᎴ ᎤᏪᏙᎴᎢ; ᏔᎳᏚᏰᏃ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ. ᎤᏣᏔᏅᎯᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ.\nᎨᏍᏗ ᎣᏍᏓ ᏳᏰᎸᎮ ᎠᏰᎵ ᎱᏓᏑᏴ ᏂᎦᎵᏍᏔᏂᏙᎲ.\nᎠᏍᎦᏯᏰᏃ ᏄᎬᏫᏳᏌᏕᎩ ᎤᏓᎵᎢ ᎡᎲᎢ, ᎾᏍᎩᏯ ᎦᎶᏁᏛ ᏄᎬᏫᏳᏌᏕᎩ ᏥᎩ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎠᏁᎲᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏍᏕᎵᏍᎩ ᎠᏰᎸᎢ.\nᎠᏏᏉᏃ ᎾᏍᎩ ᎾᏂᏪᏍᎨᎢ, ᏥᏌ ᎤᏩᏒ ᎤᎴᏂᎴ ᎠᏰᎵ ᎠᏂᏅᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ.\nᏂᎦᎥᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏚᎵᏁᏨ ᏌᏉᏉ ᎢᎧᏁᏨᎯ ᎠᎧᎵᎢᎭ, ᎯᎠᏉ ᎾᏍᎩ, ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎯᎨᏳᏎᏍᏗ ᎾᏍᎩᏯ ᏨᏒ ᏂᏣᏓᎨᏳᏒᎢ.\nᎢᎬᏱᏃ ᎠᏁᎩ ᎬᏩᎬᏍᎪᎸᏁᎢ, ᎡᎳᏪ ᎲᎾ ᎬᏬᏎᎴᎢ; ᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᎤᏪᎷᏁᎢ; ᏕᏫ ᎤᏪᏥ ᏍᎩᏙᎵᎩ, ᎠᏗᏍᎨᎢ.\nᎠᏋᏌ ᎨᏎᏍᏗ ᎧᏂᎩᏓ ᏗᏆᎵᎢ.\nᎾᏍᎩ ᏕᎤᎪᎲ ᏈᏓ ᎠᎴ ᏣᏂ ᎿᏉ ᏗᏂᏴᎵᏎ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ, ᏚᏚᎳᏕᎴᎢ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏲᏅᎵ ᏂᎨᏎ ᎤᏕᏅ -ᎠᏥᏁᎨᎢ, ᎾᏍᎩ ᏂᏚᎩᏨᏂᏒ ᎠᏂᎧᎲᏍᎨ ᎦᎶᎯᏍᏗᏳᎶᏗ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎤᏬᏚᎯ ᏥᏕᎤᏙᎥ, ᏧᏚᎳᏕᏗᏱ ᎤᏂᏰᎸᏎ ᎠᏂᏴᎯᎯ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᏣᎵ ᎤᎵᏘᎾᎥ ᏃᎴ ᎦᎷᏯᏍᏗ ᏃᎴ ᎤᏓᎵ ᎠᏥᎷᏴᎳᏗ ᎤᎾᏅᏅ, ᎤᎾᎵᏍᏔᏴᏅ, ᎠᏓ ᏗᎪᏒᏔᏅ ᏧᏃᏩ ᏃᎴ ᎢᎯᏯ ᏗᎪᏒᏔᏅ ᏗᎵᏍᏔᏴᏙᏗ ᏓᏅᏗᏍᎬ.\nᎤᏂᏣᏔᏰᏃ ᎤᏠᎾᏍᏗ ᎠᏁᏙᎭ ᎡᎶᎯ, ᎾᏍᎩ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ ᏥᏌ ᎦᎶᏁᏛ ᎤᏇᏓᎵ ᎤᎾᏄᎪᏥᎸᎢ; ᎾᏍᎩ ᎯᎠ ᎤᏠᎾᏍᏗ ᎠᎴ ᎦᎶᏁᏛᎠᏡᏗᏍᎩ.\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵᎦ ᏱᎩ, ᏗᏅᏃᏛᏍᎩᏂ; ᎾᏍᎩᏰᏃ ᎠᏓᏅᏖᏍᎬ ᏂᎦᏗᏳ ᏗᏅ-ᏃᏛ.\nᎢᏥᏰᎩ ᏚᏳᎪᏛ ᎢᏣᏛᏁᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏱᏥᏍᎦᏅᎨᏍᏗ; ᎢᎦᏛᏰᏃ ᎥᏝ ᏯᏂᎦᏔᎭ ᎤᏁᎳᏅᎯ; ᎤᏕᎰᎯᏍᏗᏳ ᎢᏨᏃᎮᎭ ᎾᏍᎩ ᎯᎠ ᏥᏂᏥᏪᎭ.\nᎠᏴ ᏉᎳ ᎠᏆᏓᏲᎵᏍᏗ ᎨᏒ ᎠᏋᏒ ᎠᏉᏰᏂ ᎠᏋᏔᏅᎯ ᎠᏉᏪᎳᏅᎯ, ᎾᏍᎩ ᏗᎪᎵᏍᏙᏗ ᏥᎩ ᏂᎦᏛ ᎪᏪᎵ; ᎾᏍᎩᏯ ᏂᎬᏁᎰ ᎪᏪᎵᏍᎪᎢ.\nᏓᏆᎧᎾᎾ, ᏓᏌᏬᎢᎲ.\n”ᎤᏙᎯᏳᎭ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎤᏍᎦᏅᏨ ᏱᎨᏒᎾ ᎤᏍᏗ ᏏᏆ.\nᎾᏍᎩᏃ ᎠᏴ, ᎢᏓᎵᏅᏟ, ᎠᏚᎢᏍᏛ ᎢᎦᏕᏔᏅᎯ ᎾᏍᎩᏯ ᎡᏏᎩ ᏥᏄᏍᏕᎢ.\nᎥᏝᏃ ᎪᎱᏍᏗ ᏴᏫᎯ ᏙᏱᏗᏢ ᎡᎯ, ᎤᏴᎭ, ᎾᏍᎩ ᎦᏓᎭ ᏱᏄᏩᏁᎰᎢ; ᎾᏍᎩᏂ ᏅᏓᏳᏄᎪᏨᎯ, ᎾᏍᎩ ᎦᏓᎭ ᏄᏩᏁᎰ ᏴᏫ.\nᎾᏍᎩᏰᏃ ᎠᏴ ᎢᎪᏢᏅᎯ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ ᎡᎪᏢᏅᎯ ᎣᏍᏛ ᏗᎩᎸᏫᏍᏓᏁᏗᏱ, ᎤᏁᎳᏅ-Ꭿ ᎾᏍᎩ ᏥᏂᎦᏛᏅᎢᏍᏓᏁᏟ ᎾᎿ ᎢᎨᏓᏍᏗᏱ.\nᏄᏓᎴ ᎪᎨᏱ.” \n”ᎨᏍᏗᏗ ᎡᏝᏪ ᎢᎬᏆᎵᏍᏙᏗ ᏱᎩ,” ᎤᏪᎷᏁ ᏫᎵᎻ, ᎠᏨᏏᏰᏍᎨ.\nᎤᎩᏨᏛᏃ ᏚᎾᏄᎪᏤᎴ ᎠᎾᎵᎲᎢ, ᎠᎴ ᎦᎪᎯᏍᏓᏁᎮ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏍᏗᏍᎦᏯ, ᏗᏍᏓᏓᏅᏟᏉ; ᎦᏙᏃ ᎤᏲ ᏂᏙᏍᏓᏓᏛᏁᎭ?\nᎩᎶᏰᏃ ᎤᏚᎵᏍᎨᏍᏗ ᎬᏅ ᎤᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᎤᏲᎱᏎᎮᏍᏗ; ᎩᎶᏍᎩᏂ ᎬᏅ ᎤᏲᎱᏎᎮᏍᏗ ᎠᏴ ᎠᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᏃᎴ ᏤᏍᏗ ᎭᏯᏛᎩᏍᎬᎾ ᏱᏣᏤᎸᎮᏍᏗ ᎬᏅᏫᏍᏗᏍᎬᎢ.\nᏞᏍᏗ ᏱᏥᏍᏆᏂᎪᏍᎨᏍᏗ, ᎢᏓᏓᏅᏟ, ᎢᏳᏃ ᎡᎶᎯ ᎢᎩᏍᎦᎩᏳ ᎢᎨᏎᏍᏗ.\nᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎤᏣᏘ ᏴᎨᏨᏯᎵᏃᎮᏓ; ᎤᎬᏫᏳᎯᏰᏃ ᎯᎠ ᎡᎶᎯ ᎤᏤᎵᎦ ᏓᏯᎢ; ᎥᏝᏃ ᎪᎱᏍᏗ ᎤᏤᎵ ᏯᏇᎭ.\nᎠᏎᏃ ᎠᏆᏓᏙᎵᏍᏔᏅ ᎡᏣᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᏦᎯᏳᏒ ᎤᏓᎵᏛᏙᏗᏱ ᏂᎨᏒᎾ; ᏣᎦᏔᎲᏛᏃ ᎨᏎᏍᏗ ᏕᎭᎵᏂᎪᎯᏍᏔᏅᎭ ᎢᏣᎵᏅᏟ.\nᎾᏍᎩ Ꮎ ᎣᎫᏓᎴᏛ ᎾᏍᎩ ᎢᏳᎾᏰᎯᏍᏗ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏏ ᏦᎫᏓᎴᎭ; ᎾᏍᎩ ᎤᏕᎩ ᏦᏨᎾᏁᎭ ᎠᏏᏉ ᎣᏚᏓᎴᏍᏗᏱ;\nᏥᏌᏃ ᏥᎷᏏᎵᎻ ᏩᎦᏛᎢ, ᏔᎳᏚ ᎢᏯᏂᏛ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎾᏁᎳᎩ ᎢᏴᏛ ᏫᏚᏘᏅᏍᏔᏅᎩ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ;\nᎠᎯᏛᏃ ᎾᏍᎩ ᎢᎬᏛᏁᏗ ᎨᏒ ᎤᏍᏆᎸᎲ, ᎾᏍᎩ ᎡᎶᏛ ᎤᏕᏅ ᎢᏳ ᎢᎦ ᎤᏛᏅᎢᏍᏔᏁ ᎬᏩᎵᏍᏓᏴᎾᏁᏗᏱ ᏧᏤᎵ ᎤᏂᎬᏫᏳᎯ, ᎠᎴ ᎠᏂᏍᎦᏰᎬᏍᏓ, ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎨᎵᎵ ᎠᏁᎯ,\nᎠᏴ ᎨᏒ, ᎨᏍᏗ ᏳᏙᎯᏳᎮ, ᎾᏍᎩᏯ Byron ᏧᏬᏪᎳᏅ.\nᎩᎶ ᎠᏂᏍᎦᏯ ᎨᏒ ᏯᏓᏙᎵᏍᏗᎭ ᎠᎴ ᏯᏙᎴᎰᏍᎦ, ᎬᏩᎵᏍᏚᎵ, ᎠᏕᎰᎯᏍᏗᏍᎪ ᎠᏍᎪᎵ ᎨᏒᎢ.\nᏦᎢᎭᏃ ᎢᏳᏟᎶᏛ ᎢᏴᏛ ᎣᏂ ᎤᏓᎵᎢ ᎤᏴᎵᎴᎢ, ᎾᎦᏔᎲᎾ ᎨᏎ ᏄᎵᏍᏔᏅᎢ,\nᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎤᏲᎳ ᎰᎻ ᏚᎪᎮ.\nᎤᎾᏛᏅᎢᏍᏔᎾ ᏓᏳᎾᏂᎩᏍᏗ, ᏫᏤᎾᏗᎾ ᎤᏛᏅ.\nᏕᏥᏲᎵᎸᎭ ᎢᏓᎵᏅᏟ ᎴᎣᏗᏏᏯ ᎠᏁᎯ, ᎠᎴ ᏂᎻᏆ, ᎠᎴ ᏧᎾᏁᎶᏗ ᎾᏍᎩ ᎦᏁᎸ ᏧᎾᏓᏡᎦ.\nᎠᏦᏴᎢ ᏭᎷᏤ ᏃᎴ ᎤᎩᏠᏫᏎ.\nᎠᎴ ᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᏚᏃᎸ ᎢᎬᏱᏗᏢ ᏕᏣᏘᏃᎯᎮᏍᏗ, ᎾᏍᎩ ᎤᏅᏒ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ.\nᎠᏎᏃ ᎠᏥᎬᏍᎪᎸᏁ ᎤᏍᎦᏅᏨᎢ: ᎤᏩᎨᏫ ᏗᎦᎵᎠᏅᎯᏛ ᏴᏫ ᎤᏁᎢᏍᏗ ᎤᏩᏔᏁ ᎤᏁᏤᎢ, ᎤᏍᎦᏤ ᏄᏓᏅᏛᎾ ᎨᏒ ᎠᏙᎴᎰᏍᎩ.\nᎩᎶ ᎠᎩᎷᏤᎮᏍᏗ, ᎠᎴ ᎠᏛᎩᏍᎨᏍᏗ ᏂᏥᏪᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ, ᏓᏨᎾᏄᎪᏫᏎᎵ ᏓᏤᎸ ᎾᏍᎩ;\nᏔᎵᏁ ᎯᎠ ᏂᏥᏪᎭ, ᏞᏍᏗ ᎩᎶ ᎤᏁᎫ ᏯᏇᎵᏎᎮᏍᏗ; ᎢᏳ ᎠᏗᎾ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎠᏎ ᎠᎩᏁᎫ ᎾᏍᎩᏯ ᏗᏍᎩᏯᏓᏂᎸᎩ, ᎾᏍᎩ ᎠᏴ ᎤᏍᏗ ᎠᏆᏢᏈᏍᏗᏱ.\nᎠᏎᏃ ᎩᎶ ᎯᎠ ᏱᏅᎦᏫ, ᎦᏙ ᏓᎨᎬᏁᎵ ᏙᏓᎨᎦᎴᏔᏂ ᏧᏂᏲᎱᏒᎯ? ᎠᎴ ᎦᏙ ᎤᏍᏕᏍᏗ ᎤᏙᏢᏒ ᏗᏂᏰᎸ ᎠᏂᎷᏨᎭ?\nᎠᎩᎷᏤᎸᎩᏃ ᎠᏏᏴᏫ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᏥᏓᏂᏰᎲᎩ ᏚᎵᏉᎩ ᎫᎫ ᎦᎵᏉᎩ ᎤᎵᏍᏆᎸᏗ ᎤᏕᏯᏙᏗ ᏗᏟᏍᏗ, ᎠᎴ ᎠᏆᎵᏃᎮᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎡᎮᎾ, ᏓᎬᏯᏎᎮᎵᏃ ᎠᏥᏰᎯ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏓᎵᎢ.\nᎠᎴ ᎾᏍᎩ ᏂᎦᏗᏳ ᎤᏪᎵᎯᏍᏗ ᎢᏤᎲ ᏤᏥᏲᎯᏏ, ᎾᏍᎩᏰᏃ ᎢᏣᏓᏅᏖᏍᎪᎢ.\nᏭᎾᎩᏎ ᏛᎦ, ᏗᏏᎳᏛᏙᏗ ᎬᏗ ᎤᏩᏇᏅᏔᏁ, ᎫᏩᎵᏖᎸᎮᏗ ᏱᎨᏒᎾ.\nᎤᏂᎾᎥ ᏃᎴ ᏗᎭᎾᏬ ᎦᎳᎨᏴ.\nᎠᏎᏃ ᎥᏝ ᎪᎱᏍᏗ ᎠᏋᏔᏅᎯ ᏱᎩ ᎾᏍᎩ ᎯᎠ; ᎥᏝ ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏱᎪᏪᎸᎦ, ᎠᏴ ᎾᏍᎩ ᎢᏴᏆᏛᏁᏗᏱ; ᎤᏟᏰᏃ ᎣᏏᏳ ᎢᏯᏆᎵᏍᏓᏁᏗ ᏯᎩᏲᎱᏒᏉ, ᎠᏃ ᎩᎶ ᎠᏎᏉ ᏱᏄᏩᏁᎸ ᎠᏆᏢᏆᏍᏙᏗ ᎨᏒᎢ.\nᎤᏓᏍᏆᏂᎪᏙᏗᏱᏍᎩᏂ ᎣᏏᏳ ᎤᏰᎸᎯ, ᎣᏍᏛ ᎨᏒ ᎤᎨᏳᎯ, ᎤᏴᏍᏕᏍᎩ ᏂᎨᏒᎾ, ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ, ᎾᏍᎦᏅᎾ, ᎤᎵᏏᎾᏍᏗ;\nᎢᏥᎦᏴᎵᎨᎢ, ᏞᏍᏗ ᏱᏗᏥᎿᎸᏍᏗᏍᎨᏍᏗ ᏗᏤᏥ, ᏱᏩᎾᎵᎲᏲᎵᎵᎦᏉᏰᏃ.\nᎣᎩᏃᎮᏍᎬᎢ, ᎣᏥᏔᏲᎯᎰᏉ; ᎤᏁᎢᎸᏗ ᎡᎶᎯ ᎡᎯ ᎾᏍᎩᏯ ᎾᎦᎵᏍᏔᏅ, ᎠᎴ ᎦᏓᎭ ᎨᏒ ᎾᎦᎥ ᏧᏓᎴᏅᏛ ᎠᏍᏛᎪᏒᎯ ᏃᎦᎵᏍᏔᏅ ᎪᎯ ᎢᏯᏍᏗ.\nᎠᎦᏬᎥᏃ ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᏚᏓᏘᎾᎥᎢ, ᎣᎩᏔᏲᏎᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎢᏳᏃ ᎤᏙᎯᏳᏒ ᎤᎬᏫᏳᎯ ᎪᎯᏳᎲᏍᎩ ᏍᎩᏰᎵᏎᎮᏍᏗ, ᏥᏁᎸ ᎢᏥᏴᎭ ᎠᎴ ᎾᎿ ᎢᏥᏁᏍᏗ. ᎣᎩᏍᏗᏰᏗᏍᎬᏃ ᎣᎩᏎᎪᎩᏒᎩ.\nᎠᎦᏕᏍᏗ ᏗᎦᎷᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏃᏉ ᎤᎵᏍᎨᏓ ᎤᏂᎧᎲ ᏏᏆ ᎤᏪᎵᏎ.\nᏗᎪᏍᏔᏱ ᏅᏯ ᎦᎳᎨᏰ, ᏅᏯ ᏚᏍᏓᎦᎸ ᎤᏅᎪᎣᏒ.\nᏂᎦᏛᏃ ᎤᏂᏣᏘ ᎨᏒ ᎠᎾᏟᏂᎬᏁᎮ ᎬᏩᏒᏏᏍᏗᏱ. ᎾᏍᎩᏰᏃ ᎨᏒ ᏗᏓᎴᎲᏍᎨ ᎤᏓᏅᏬᏗ ᎨᏒ ᎠᎴ ᏚᎾᏗᏫᏍᏗᏍᎨ ᎾᏂᎥᎢ.\nᏃᎴ ᎠᏓᏍᏕᎸᏓ ᏳᏂᎬᎦ ᎤᏩᏛᏗ ᎢᏗᎦᏪᏍᏗ ᏌᎳᏓ, ᏰᎵᏉ ᎢᎦᎵᎢ ᏧᏍᏆᏴᏍᏗ ᎤᏍᏕᎸᏗ.\nᎠᎴ ᎾᏁᎵᏍᎬᎾ ᏥᎨᏎᎢ, ᎬᏂ ᎤᏃᎱᎦᏂᎸ, ᎠᎴ ᏂᎦᏛ ᏚᏂᎬᏨ, ᎾᏍᎩᏯᏉᏍᎩᏂ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎦᎷᏨᎭ.\nᎨᏥᏅᏏᏛᏃ ᎤᎾᏓᏟᏌᏁ ᏥᏌ ᎡᏙᎲᎢ, ᎠᎴ ᎬᏩᏃᏁᎴ ᏂᎦᏛ ᏄᎾᏛᏁᎵᏙᎸ, ᎠᎴ ᎾᏍᏉ ᏄᏍᏛ ᏚᎾᏕᏲᏅᎢ.\nᎤᏪᏅᏒ ᎱᎷᏤ ᏫᎵᎻ ᎤᎸᏉᏛ ᏗᎩᏏ ᎦᏓᏍᎬᎢ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗ.\nᎤᎬᏫᏳᎯ ᎥᏝ ᎤᏍᎦᏃᎵᏳ ᏱᎩ ᏄᏍᏛ ᎤᏚᎢᏍᏔᏅ ᎢᏳᏛᏁᏗᏱ, ᎾᏍᎩ ᎩᎶ ᎾᏍᎦᏃᎳ ᏣᏁᎵᎭ, ᎬᏂᏗᏳᏍᎩᏂ ᎠᏴ ᎢᎩᎦᏘᏴᎢ, ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎩᎶ ᎤᏲᎱᎯᏍᏗᏱ, ᏂᎦᏗᏳᏍᎩᏂ ᎤᏂᎷᎯᏍᏗᏱ ᎦᏁᏟᏴᏍᏗ ᎨᏒ ᎣᏓᏅᏛᎢ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏁᎳᎩ; ᎥᎩᏂᏐᏗᏱ ᎨᏒ ᎢᎦ ᎬᏗᏍᎩ ᎤᏍᏆᏂᎪᏔᏅ ᎾᏍᎩ ᎯᎠ.\nᎧᏃᎩᏍᏗ ᎢᏳᏍᏗ ᎠᏂᏒᎳᏍᎨ, ᎠᏂᏤᎷᎩᏍᎩ ᎢᏳᏍᏗ.\nᏚᎦᏔᏍᏔᏁᎢ.\nᎤᏍᏆᏂᎩᏘ ᎤᏃᎮᏗ ᎤᏩᏌ ᎤᎵᏓᎩᏛ.\nᏃᏗ ᏎᎦᏨ ᏯᏛᏅᎢᏍᏔᎾ, ᎭᏫᏂ ᎠᏛᎵᏗ, ᏃᎴ ᏩᏓᎾᏫᏛᏗ.\nᎾᏍᎩ ᎢᎫᏓᎴᏛ ᏥᎩ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᎵᏏᎩ, ᎠᎴ ᎾᏍᎩ ᏫᏗᎩᎧᏅᎯ ᏥᎩ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎨᏳᎯ ᎤᏪᏥ;\n“ᏙᎯᏳ ᏓᎩᏯᏪᎦ.” \nᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎠᎺᏉᎯᎩᎦᎨᏍᏛᏱ ᎠᏰᎵ ᎤᏂᎶᏎ ᎤᎧᏲᏛᎯ ᏣᏂᎶᏍᎪ ᎾᏍᎩᏯᎢ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎤᎾᏁᎶᏔᏅ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ ᏚᏂᎬᏤᎢ.\nᎿᏉᏃ ᎯᏌ ᏅᎬᏩᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏂᎪᎯᎸ ᏍᎩᏁᎮᏍᏗ ᎾᏍᎩ ᎯᎠ ᎦᏚ.\n“ᏍᎩᎪᎵᏰᎡᏗᏗ”\nᏫᏓᏆᎧᎾᏅ, ᎤᎧᎭᏓ ᎦᏅᎪᎬ ᎠᎰᎵ ᎠᏌᎻᏓ.\nᎿᏉᏃ ᎾᏍᎩ Ꮎ ᏰᎵᏉ ᎬᏩᏲᏍᏙᏙᏗ ᏥᎩ ᏗᏥᏅᎢᏍᏗᏱ, ᎠᎴ ᎬᏂᎨᏒ ᎢᎨᏨᏁᏗ ᏥᎩ ᎤᏣᏘ ᎤᎵᎮᎵᏍᏗ ᎢᏣᏓᏅᏛᎢ ᎪᎱᏍᏗ ᏁᏥᎳᏫᏎᎲᎾ ᎢᎬᏱᏗᏢ ᏓᎧᏅ ᎦᎸᏉᏗᏳ ᎨᏒᎢ,\nᎠᏎᏃ ᎠᏫᏅ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏓᏅᏒᎩ ᎤᏲᎢᏳ ᎤᏰᎸᏅᎩ, ᎤᏣᏘᏰᏃ ᎤᏪᎿᎢᏳ ᎨᏒᎩ.\nᏄᏓᎴᏒᏉ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸᎯ ᎠᏆᎵᏍᏓᏴᏗᏱ, ᎠᏎᏃ ᎥᏝ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎣᏏᏳ ᎢᏯᏓᏛᏁᎯ ᏱᎩ; ᏄᏌᎴᏒᏉ ᎪᎱᏍᏗ ᎤᏁᎳᎩ ᎥᏇᎵᏎᎸᎯ ᎠᏆᎵᏍᏓᏴᏙᏗᏱ, ᎠᏎᏃ ᎥᏝ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ.\nᏴᏫ ᎬᎩᎸᏉᏗᏍᎬ ᎥᏝ ᏱᏗᏓᏓᏂᎸᎦ;\nᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᎯᎠ ᏱᏂᏪᏏ ᏗᏍᏓᏓᏅᏟ, ᎬᎸᏏ ᎤᏢᏓᎸᏛ ᏣᎦᏑᎲᎢ, ᎬᏂᏳᏉᏃ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎭ.\nᎠᏎᎩ ᎠᏤᎯ ᎠᏫᎾ ᏍᎦᏰᎬᏍᏔ ᏯᎦᏔᎲᎾ ᏧᏳᎪᏘ ᎨᏒ.\nᎶᏩᏂ, ᏣᏥ ᏃᎴ ᏤᎩ ᏚᎧᎾᏅ ᏣᎵ, ᎨᏍᏗ ᎤᏁᎵᏒ ᏱᎨᏎ ᎢᏳᏍᏗᏉ.\nᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎢᏳᏛᏁᏗ ᏫᎵᎻ ᎠᎴ ᎢᏣ ᏭᎶᎯᏍᏗ.\nᎿᏉᏃ ᏉᎳ ᏚᏏᏔᏛ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏂᎷᏤᎸᎩ, ᏚᏂᏬᏂᏒᎩᏃ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏙᎴᎰᏒᎩ.\nᎾᏍᎩᏃ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎥᏝ ᎠᏕᎰᎯᏍᏗᏱ ᏴᎬᏓᏩᏛᏗ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎠᎨᏳᏗ ᎨᏒ ᎡᎩᏐᏅᏰᎸ ᏗᎩᎾᏫᏱ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎡᎩᏁᎸᎯ ᏥᎩ.\nᎢᏨᏲᏎᎭ ᎬᏩᏗᏛᏗ ᏂᎨᏒᎾ ᎠᎴ ᏗᎬᏩᏁᏗ ᏂᎨᏒᎾ ᏱᎩ, ᎤᎾᎵᎢᏉ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏑᎵᎪᎬᎾᏍᎩᏂ ᎨᏒ ᎢᏳᏍᏗ ᏯᏗᏛ ᎠᎴ ᏱᏕᎠᎲᏏ ᏂᎦᎥ ᏚᏚᎵᏍᎬᎢ.\nᎣᎰᏂ ᏫᎦᎢᏒ ᎠᏆᏛᎪᏔᏅ ᎠᎵᏥᏙᎲᏍᎬ, ᎠᏎᎩ ᎠᏂᏍᎦᎢᎮ ᎠᏂᎱᏣ, ᏓᏂᎪᏩᏘᏍᎬ ᏧᏂᎾᏌᎢ ᎤᏂᏲᎰᏎᎸ ᏂᎦᏓ ᎤᏂᎾᎥ, ᎤᏅᏌᏣ.\nᏗᎵᏍᏓᏴᏗᏱᏃ ᎨᏒ ᎢᏳᎢ ᎤᎬᏫᏳᎯ ᏧᏲᎯᏎᏗ ᎨᏐ ᏌᏉ ᎠᏴᎩ, ᎯᎠᏉ ᎠᏁᎳ ᏴᏫ.\nᎻᏏᏱᏃ ᎤᏂᎶᏒ, ᏠᎠᏏ ᏭᏂᎷᏨᎩ.\nᎠᎴ ᏍᎩ ᏳᏂᏰᎸ.\nᎪᏱᏁᎢ ᎤᏄᎩᏣᏁ ᎠᎳᏂ.\nᎾᏍᎩ ᏥᏚᏓᏲᏎ ᎠᏴ ᎢᎩᏍᎦᏅᏨ ᏥᏍᏗ ᎦᎵᏍᏙᏗᏍᎨᎢ, ᎾᏍᎩ ᎢᎫᏓᎴᏍᏗᏱ ᎪᎯ ᎨᏒ ᎡᎲ ᎤᏲᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬ ᎤᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏙᏓ;\nᎢᏨᎨᏳᎢ, ᎢᏨᏔᏲᏎᎭ, ᎾᏍᎩᏯ ᏂᎨᏥᎦᏔᎲᎾ ᎠᎴ ᎠᏁᏙᎯ ᎢᏳᎾᏛᏁᏗ ᏂᏣᏛᎦ, ᏗᏥᏲᎯ ᎤᏇᏓᎸ ᎤᎬᎥᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏓᏅᏙ ᏥᏓᏁᏓᎿᏫᏯ.\nᎠᏎᏃ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎾᏍᎩᏉ ᏌᏉ ᎠᏓᏅᏙ ᏕᎤᎸᏫᏍᏓᏁᎰᎢ, ᏓᏯᏙᎮᎰ ᎾᏂᎥ ᏧᎾᏁᎳᎩᎭ ᏧᎾᏤᎵ, ᎯᎠᏉ ᏄᏍᏕᏍᏗ ᎡᎵᏍᎬᎢ.\nᎠᏎᏃ ᎤᏟᏉ ᎢᎦᎢ ᏚᏰᎵᏎ ᎾᏍᎩ ᏕᎦᏃᏣᎸᎢ. ᎤᏂᏣᏘᏃ ᏚᏂᎳᏫᏦᎴ ᎤᎾᏚᎵᏍᎨ ᎤᎾᏛᎪᏗᏱ ᎠᎴ ᏧᏅᏬᏗᏱ ᏚᏂᏢᎬᎢ.\nᎦᏙ ᏓᏥᏲᏎᎵ, ᏍᎩᎨᏳᎮᏍᏗ ᏍᎩᎨᏳᎮᏍᏗ.\nᎤᏪᏥᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎡᏙᏓ, ᎦᎸᎳᏗ ᏥᏍᎦᏅᏤᎸ, ᎠᎴ ᏂᎯ ᎯᎦᏔᎲᎢ; ᎠᎴ Ꮭ ᎿᏉ ᎠᏇᏥ ᎨᏍᏉᏎᏗ ᏱᎩ.\nᎢᏗᎦᏔᎭ ᎤᏁᎳᏅᎯ ᏅᏓᎦᏓᎴᏅᎯ ᎨᏒᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏃᏴᏨ ᎤᏲ ᎨᏒᎢ.\nᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎥᏝ ᏂᎯ ᎡᏣᏃᎮᏍᎬ ᎪᏪᎵ ᏧᏗᏱ ᏂᏙᏓᏳᏃᏪᎳᏅᎯ ᏱᏙᎩᏃᎮᎭ, ᎥᏝ ᎠᎴ ᎩᎶ ᎢᏓᏓᏅᏟ ᎾᎿ ᏅᏓᏳᏂᎶᏒᎯ ᎬᏂᎨᏒ ᏱᏂᎨᏨᏁᎴᎢ, ᎥᏝ ᎠᎴ ᎤᏐᏅ ᏱᎨᏣᏃᎮᎴᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎺᎵ ᏞᏍᏗ ᏣᏍᎦᎸᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎣᏍᏛ ᏣᏰᎸᏗ ᎨᏒ ᏣᏩᏛᎲ.\nᎠᏎᏃ Ꮭ ᎾᏍᎩᎾ ᏳᏗᏅᏖᏔᏁ ᏍᏏᏉᏯ.\nᏃᎴ ᎠᏛᏍᎨ ᎨᏴᎢ, ᎭᏫᏂᎨ ᏃᎴ ᎦᏣᏄᎵᎨ ᏂᎦᎵᏍᏗᏍᎨ ᎨᏴᎢ.\nᎠᏏᏉᏃ ᏭᎶᏒ ᎤᏯᏅᏒᎯ ᏫᏓᏂᎧᏁ ᎦᎸᎳᏗ, ᎬᏂᏳᏉ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏧᏁᎬ ᏧᎾᏄᏫ ᎤᎶᏗᏢ ᎦᎾᎴᏂᎴᎢ;\nᎨᏍᏗ ᏳᏚᎵᏍᎨ ᏫᏚᏩᏐᎯᏍᏗ ᏍᎩᎾᎾ ᎠᏥᎶᎥ, ᏐᏉ ᎢᏳᏩᎬᏔ ᏚᏩᏐᏨ ᎤᏛᎾ ᎤᎫᎫ ᎡᏆ ᎠᏍᎪᎳ ᎡᏝᏪᎯ ᎤᏃᎯᎸᏍᏔᏁ ᎠᎬᏱᏣ ᎠᏰᎵ ᎤᎵᏏᎬ ᏃᏥ ᎭᏫᏂᏣ.\nᎾᏍᎩ ᎤᏣᏘ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏔᏩᏕᎬ ᎠᎴ ᏂᎪᎯᎸ ᎤᏲ ᎠᎩᏰᎸᏒ ᎠᎩᎾᏫᏱ.\nᎿᏉᏃ ᏈᏓ ᎯᎠ ᏄᏪᏎᎢ; ᎠᏕᎸ ᎤᏂᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎥᏝ ᏱᏓᎩᎭ, ᎢᏳᏍᏗᏍᎩᏂᏃᏅ ᎠᎩᎲ ᎬᎥᏏ; ᏥᏌ ᎦᎶᏁᏛ ᎾᏎᎵᏗ ᏤᎲ ᏕᎤᏙᏍᏛ ᏔᎴᎲᎦ ᎠᎴ ᎮᏓ.\nᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎦᏯ ᏚᏂᏲᏍᎨ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎾᏍᎩ ᎠᏂᎨᏴ ᎨᎦᏁᎳᏅᎯ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎤᏤᏘ ᏓᎾᏓᏕᎳᏲᏍᎨ ᎤᏅᏒᏉ ᎨᏒᎢ; ᎠᏂᏍᎦᏯ ᎠᏂᏍᎦᏯᏉ ᎪᎱᏍᏗ ᏓᎾᏓᏛᏗᏍᎨ ᏚᏂᎸᏫᏍᏓᏁᎮ ᎾᏍᎩ ᎤᏕᎰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏩᏛᎡᎮ ᏚᏳᎪᏛ ᎨᎦᎫᏴᎡᏗ ᎨᏒ ᎾᏍᎩ ᎤᏂᎵᏓᏍᏗᏍᎬᎢ.\n”ᎤᎵᏍᎨᏓ ᎦᏢᏗ.”\nᎯᎠ ᎾᏍᎩ Ꮎ ᎠᎾᏓᏓᎴᏗᏍᎩ ᏥᎩ, ᎤᏇᏓᎵᏉ ᎠᏂᏍᏓᏩᏕᎩ, ᎠᎠᏅᏙ ᏄᏁᎲᎾ.\nᎠᏂᎪᏍᏔ, ᏗᏒᎾᏔᏅ ᏃᎴ ᎦᏚ ᏗᏑᏴᏅ.\nᎠᏎᏗ ᏄᏪᎵᏍᎬᎾ ᎨᏎ ᏌᎳᏓ.\nᎠᏎᏃ ᏥᏌ ᎤᏬᏯᏁᏒ, ᏚᎴᏔᏁᎢ, ᎠᎴ ᏚᎴᏁᎢ.\nᎬᏩᏍᏓᏩᏗᏎᏃ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᎠᏂᎨᏴ, ᎾᏍᎩ ᎾᏍᏉ ᏓᏂᏴᎨ ᎠᎴ ᎬᏩᏍᎪᏂᎮᎢ.\nᏅᏩᏓᎴᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎠᎵᏍᏓᏩᏗᏒᎩ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᏓᏓᎶᏂ ᎠᏲᎩ, ᎠᏲᎩ, ᎾᏍᎩ Ꮎ ᎡᏆ ᏥᎦᏚᎲᎩ, ᏅᏓᎦᎵᏍᏙᏓ ᏂᎦᏗᏳ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎤᎾᏗᏔᏍᏗᏱ ᏂᏚᏩᏁᎸ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏓᏑᏱ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎢᏳᏩᏂᏌᏛ.\nᎤᎩᏓᏟᏅᏯ ᎤᏓᎵ.\nᏂᎯᏍᎩᏂ ᎯᎠ ᏂᏥᏪᎭ, ᎢᏳᏃ ᎩᎶ ᎯᎠ ᏂᎦᏪᏎᎮᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎪᏆᏂ, (ᎾᏍᎩ ᎦᏛᎬ, ᎠᏆᎵᏍᎪᎸᏔᏅᎯ,) ᏂᎦᎥ ᎨᏣᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎠᏴ ᎬᏍᏕᎵᏍᎬᎢ; [ᎾᏍᎩ ᎤᏚᏓᎴᏛ ᎨᏎᏍᏗ.]\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎾᏍᎩ ᎢᏣᏛᏅᎢᏍᏕᏍᏗ, ᏂᏤᎵᏍᎬᎾᏉᏰᏃ ᎨᏒ ᎢᏳ ᏴᏫ ᎤᏪᏥ ᏓᎦᎷᏥ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏗᎵᎮᏍᏗ, ᎾᏍᎩᏯ ᎠᏂᏐᎢ ᎾᎾᏛᏁᎲᎢ; ᎢᏗᏯᏫᏍᎨᏍᏗᏍᎩᏂ ᎠᎴ ᏂᏗᎩᏴᏍᏕᏍᎬᎾ ᎨᏎᏍᏗ.\nᎯᎠᏰᏃ ᏂᎬᏅ ᎪᏪᎳ, ᎢᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏎᏍᏗ, ᎠᏴᏰᏃ ᏥᏍᎦᎾ ᏂᎨᏒᎾ ᎢᎩ.\nᎠᎴ ᎠᎩᎪᎲᎩ ᎪᏪᎵ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᎤᏒᎦᎸᎩ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏬᎵ, ᎭᏫᏂᏗᏢ, ᎠᎴ ᎦᏚᎢᏗᏢ ᎪᏪᎸᎩ ᎦᎵᏉᎩ ᎪᏪᎵ ᏗᏍᏚᏗ ᏓᏍᏚᏛᎩ.\nᏚᎾᏓᎶᏅ, ᎤᎾᎵᏗᎩᏎ ᏐᏈᎵ ᎠᏙᎯ ᎢᏣ, ᏃᎴ ᎤᎾᎴᏫᏍᏔᏁ ᎤᏂᎷᏤ, ᎤᎾᏦᏍᏔᏁ ᎠᏁᏙᎮ, ᏓᎾᎳᏍᏘᏰᏍᎨ ᏧᏙᎣᏒ ᏧᎾᏔᎾᎶ ᏃᎴ ᎾᏂᏪᏍᎨ.\nᎢᎬᏪᏅᏛᏉᏃ ᎤᎵᏍᏗ ᎤᏴᎵᎴ ᎤᎬᏫᏳᎯ ᎠᏯᎥᎢ, ᎠᎴ ᎤᏔᏲᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏚᎵ ᎩᎳᏉ ᎢᏴᏛ ᏍᎩᏁᏗᏱ, ᎠᏖᎵᏙᎩᎯ, ᏣᏂ ᏗᏓᏬᏍᎩ ᎤᏍᎪ.\nᏚᎴᏅᏃ ᎤᏘᏅᏎ ᎠᏲᎵ ᎠᎴ ᎤᏥ, ᎠᎴ ᎢᏏᎵᏱ ᏭᎷᏤᎢ.\nᎤᏍᏆᏂᎩᏗ ᏂᎦᎵᏍᏓ ᎭᏂ ᏕᎦᎶᎨᏒ.\nᎡᏘᏴ ᎤᏍᎦᏅᏥᏙᎸ ᎤᎴᏅᏔᏅ ᎤᏬᏂᏒ.\nᎩᎶᏰᏃ ᎾᏛᏁᎮᏍᏗ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎡᏙᏓ ᎦᎸᎳᏗ ᎡᎯ, ᎾᏍᎩ ᎥᎩᏅᏟ ᎠᎴ ᎥᎩᏙ ᎠᎴ ᎡᏥ.\nᎠᎴ ᎤᏂᏣᏘ ᎢᏏᎵ ᏧᏪᏥ Ꮩ ᏛᎪᎸᏏ ᏱᎰᏩ ᎤᎾᏁᎳᏅᎯ ᎢᏗᏢ ᏙᏛᎦᏔᎲᏍᏔᏂ.\nᎢᎦ ᎩᎳᏈᏴ ᎤᏒᎯ ᏂᎵᏍᏔᏁ, ᎠᏎᏃ ᎠᏤ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ, ᎤᏍᎦᏃᎵ ᎠᏓᏅᏍᎨ ᎾᏍᎩᏯ ᎠᏍᎦᏃᎵ ᎠᎹᏱ ᎭᏫᏂ ᏣᏓᏏᏂᏐᎢ.\nᎣᎭᏁᏃ ᎤᏂᎵᏦᏩᏛ ᏭᏂᏟᏅᏣ ᏣᎵ ᏚᎵᏘᎾᎥ, ᎦᎷᏯᏍᏗ ᏃᎴ ᎤᏓᎵ ᎦᏂᏏ ᏓᏂᏅᎬ ᎡᏝᏪᎯ ᎠᎾᏟᏃᎮᏍᎬ, ᎠᏂᏃᎮᏍᎬ ᎢᎫᏩᎾᏛᏁᏗ ᎨᏒ ᏧᏂᎨᎯᏓᏍᏗ ᎤᏂᏍᎦᏎᏗ ᎫᏂᏩᏛᎯᏙ.\nᏣᏂ ᎧᏃᎮᏍᎬᎩ ᎾᏍᎩ [ᎧᏃᎮᏛ,] ᎠᎴ ᎤᏪᎷᏅᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎯᎠ ᎾᏍᎩ ᏥᏥᏃᎮᏍᎬᎩ, ᎯᎠ ᏥᏂᏥᏪᏍᎬᎩ, ᎣᏂ ᏨᏓᏯᎢ ᎢᎬᏱ ᎠᎦᎴᏗ, ᎾᏍᎩᏰᏃ ᎡᎲᎩ ᎠᏏ ᏂᎨᎥᎾ ᏥᎨᏒᎩ.\nᎠᏉᎵᏨ ᏚᏳᎪᏛ ᎾᏆᎵᏍᏔᏁᎸ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏥᏌ ᎤᏍᏆᏛ ᏂᎦᏛ ᎯᎠ ᎾᏍᎩ ᏂᎦᏪᏍᎬᎢ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ;\nᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎤᎾᏓᏅᏘ ᎡᎶᎯ ᏧᏄᎪᏓᏁᏗ ᎨᏒᎢ? ᎢᏳᏃ ᎡᎶᎯ ᏗᏧᎪᏓᏁᏗ ᎨᏎᏍᏗ, ᏝᏍᎪ ᏰᎵ ᎤᏍᏗ ᎧᏂ ᎨᏒ ᏗᎨᏧᎪᏙᏗ ᏱᎩ?\nᎤᏣᏘᏃ ᎤᏲᏏᏌᏁᎢ, ᎠᎴ ᎤᏚᎵᏍᎨ ᎤᎵᏍᏓᏴᏗᏱ, ᎠᏎᏃ ᎠᏏᏉ ᎠᎾᏛᏅᎢᏍᏗᏍᎨ ᏣᎦᎵᎰ ᎾᏍᎩᏯ ᏄᎵᏍᏓᏁᎴᎢ.\nᎤᏰᏥ ᏌᏌ.\nᎤᏙᏯᏅᎯᏛᏃ ᎤᏒᏂᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎣᏏᏳ ᏥᏰᎸᎾ; ᏣᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ. ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏰᏍᎩ ᎤᏢᎬ ᎤᏓᏅᎡᎴᎢ.\nᏃᏗ ᎤᏔᎾᏯ ᎤᏃᏕᎾ ᎤᏁᏤ, “ᎠᏯ ᎪᎢᏳᏗ, ᏄᏓᎴ ᎠᏤᎯ ᎪᏪᎶᏗ ᏓᏏᎳᏛ, ᎠᏍᏆᏂᎪᏙᏗ ᎬᏅᎢ ᏫᎵᎻ.\nᎪᎯᏰᏃ ᎢᏳᏓᎴᏅᏛ ᏏᏓᏁᎸᎯ ᎨᏒ ᎯᎠᎩ ᎢᏯᏂᏛ ᏔᎵ ᏄᎾᏓᎡᏍᏗ, ᏦᎢ ᎢᏯᏂᏛ ᎤᎾᎵᎪᏎᏍᏗ ᎠᏂᏔᎵ ᏚᎾᏡᏕᏍᏗ, ᎠᎴ ᎠᏂᏔᎵ ᎤᎾᎵᎪᏎᏍᏗ ᏦᎢ ᏚᎾᏡᏕᏍᏗ.\nᎦᎵᏬᎦ ᎪᎩ, ᎦᎵᏬᎦ.”\nᎵᏫᏃ ᎤᏣᏘ ᏣᎦᎵᏍᏓᏴᎾᏁᏗᏱ ᎤᏛᏅᎢᏍᏓᏁᎴ ᎤᏩᏒ ᎦᏁᎸᎢ; ᎠᎴ ᎤᏂᏣᏖ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᏅᏩᎾᏓᎴ ᎢᏧᎳᎭ ᎠᏂᏅᏜᎡᎢ.\nᎤᏟᏂᎩᏛ ᎤᏛᏅ ᎠᏌᎻᏓ ᎤᏚᎩᏐᏅ.\nᎤᏁᎳᎩᏉ ᎡᎵᏍᎪ ᏂᎦᎥ ᎪᎱᏍᏗ; ᎪᎯᏳᎲᏍᎪ ᏂᎦᎥ ᎪᎱᏍᏗ; ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎤᏚᎩ ᎤᏩᏐᎢ; ᎬᏂᏗᏳ ᎨᏐ ᏂᎦᎥᎢ.\nᎢᏳᏃ ᎩᎶ ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᎢᎨᏣᏯᏂᏍᎨᏍᏗ, ᎠᎴ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎢᏤᏅᏍᏗᏱ; ᏄᏍᏛᏉ ᎪᎱᏍᏗ ᎢᎬᏱᏗᏢ ᎡᏥᏝᏁᎲ ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ, ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᏱᏣᏛᏛᎲᏍᎨᏍᏗ, ᎠᎦᏅᏙᎩ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎾᎿᏃ ᏫᎣᎦᏣᏅ, ᏈᎵᎩᏱ ᏬᎩᏃᎸᎩ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎦᏚᎲ ᎾᎿ ᎢᏗᏢ ᎹᏏᏙᏂ, ᎠᎴ ᎾᏍᎩ ᎤᎾᏓᏅᏛ ᎤᏂᏚᎲ ᏥᎩ. ᎾᎿᏃ ᎦᏚᎲ ᎢᎸᏍᎩ ᏧᏒᎯᏛ ᎣᎨᏙᎸᎩ.\nᎤᏟ ᎦᎸᎳᏗᏳ ᎡᏍᎦᏉ ᎾᏂᎥ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎨᎦᎨᏅᏴ ᎨᏒᎢ, ᎠᎴ ᎤᏂᎬᏫᏳᏎᏕᎩ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏚᎾᏙᎠᏗᏒ ᏗᎪᎥᎯ ᏥᎩ, ᎥᏝ ᎠᏂᏉ ᎤᏩᏒ ᎪᎯ ᏥᎩ, ᎾᏍᏉᏍᎩᏂ ᎾᎿ Ꮒ ᎠᏏ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏥᎩ,\nᎨᏍᏗ ᏱᏓᎨᏏ ᎤᏛᏅ ᏣᎵ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏚᎵᎭ ᎢᏨᏯᏅᏓᏗᏍᏙᏗᏱ ᎾᏍᎩ ᎯᎠ ᎦᏳᎳ ᏥᏥᎦᏔᎭ, ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏥᏚᏭᏓᏓᏎ ᏴᏫ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲ, ᎣᏂ ᏥᏚᏛᏔᏁ ᎾᏍᎩ Ꮎ ᏄᏃᎯᏳᏅᎾ.\nᎢᏳᏃ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ ᏧᏂᏲᎱᏒᎯ, ᎿᏉ ᎦᎶᏁᏛ ᎥᏝ ᏧᎴᎯᏌᏅᎯ ᏱᎩ.\nᏫᎬᏩᏩᏛᎲᏃ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏂᎦᏛᏉ ᏴᏫ ᎨᏣᏲᏎ.\n ᎨᏍᏗ ᎩᎶ ᏳᏚᎵ ᎠᎩᏍᏕᎸᏗ\nᎠᏆᏅᏔ ᏐᏉ ᎤᏓᏏᏂᏕᏅ, ᎨᏍᏗ ᏱᏥᎦᏔ ᎢᏳᏍᏗ ᎤᏰᎸᏛ, ᎤᏐᏱᎭ ᎨᏒ.\nᎤᎬᏫᏳᎯᏃ ᎤᎪᎵᏰᎥ, ᎤᏛᏛᏅᎩ ᎾᎿ ᏍᎦᏚᎩ ᎡᎯ ᎨᏒᎢ, ᎤᏛᎦᏅᏃ ᏏᎵᏏᏱ ᎡᎯ ᎨᏒᎢ,\nᎠᎴ ᎤᎾᏁᎶᏔᏅᎯ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ,\nᎩᎶ ᏕᎦᎵᎷᎨᏍᏗ ᎤᏛᎪᏗᏱ, ᎾᏍᎩ ᏩᏛᎬᎦ.\nᎤᏪᎷᏅ, ᎤᎾᎵᏗᏍᎩᏎ ᏏᏆ, ᎦᏅᎬ ᎦᏚᎢᏣ.\nᎥᏝᏰᏃ ᎤᏁᎳᎩ ᎦᏲᎩᏂᏰᎸᏗ ᏱᎩ, ᎣᎩᏂᏁᎢᏍᏙᏗᏱ ᏄᏍᏛ ᎣᎩᏂᎪᎲᎢ, ᎠᎴ ᎣᎩᎾᏛᎦᏅᎢ.\nᏂᎦᎥᏍᎩᏂ ᎤᏟᎯᏳ ᎠᏥᎸᏉᏗᏳ ᏴᏫ ᎡᏉᎦᏉ ᎠᏫ ᎤᏃᏕᎾ. ᎾᏍᎩᏍᎩᏂ ᎢᏳᏍᏗ ᏰᎵᏉ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ.\nᏥᏳ, ᏚᏙᎣᏐᏅ ᏗᏯᏖᏅ ᏧᏆᎶᎦ, ᏧᏔᎷᎩᏍᎩ ᏫᏚᎸᏌᏛ ᎤᏬᏗᎨ ᏚᏅᏓᏒ.\nᎥᎬᏩᎪᏁᎶᎯᏎᎸᎩᏃ; ᎠᏎᏃ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᎾᏥᎸᏉᏛᎾ ᏱᎨᏐᎢ, ᎤᏩᏒᏍᎩᏂᏃᏅ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏩᏒ ᎦᏁᎸᎢ.\nᎤᎧᎭᏛ ᏓᎪᏩᏘᏍᎨ ᏲᎾ ᏗᎦᎴᏂ ᏃᎴ ᎤᏬᏗᎨ ᎤᏍᎪᎸ ᎧᏴᏐᎵ.\nᏥᎪ ᎢᎾᏈᎷ ᎾᏍᎩ? ᎠᏴ ᎾᏍᏉ. ᏥᎪ ᎠᏂᎢᏏᎵ? ᎠᏴ ᎾᏍᏉ. ᎡᏆᎭᎻᏍᎪ ᏧᏁᏢᏔᏅᏛ ᎾᏍᎩ? ᎠᏴ ᎾᏍᏉ.\nᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗᏉ ᎡᏥᏲᎢᏎᎸᎩ ᎾᏍᎩ Ꮎ ᏥᎧᏁᎦ. ᎢᏳᏰᏃ ᏄᎾᏓᏗᏫᏎᎸᎾ ᏱᎩ ᎾᏍᎩ Ꮎ ᎤᏂᏲᎢᏎᏛ ᎡᎶᎯ ᎤᏁᏨᎯ, ᎤᏟᎯᏳ ᎬᏩᏟᏍᏗ ᎢᎦᏓᏗᏫᏎᏗᏱ ᎢᏳᏃ ᎢᏴᏛ ᏱᏁᏓᏛᏁᎸ ᎦᎸᎳᏗ ᏨᏗᎧᏁᎦ;\nᎤᏃᎴ ᏙᎦᏘᏁᎪ, ᎣᏤᎵᏍᎬ ᎣᏤᎪ.”\nᎾᏂᎥᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏯᏛᏁᏗᏱ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎩ, ᎾᏍᎩ ᎨᏥᏍᎦᏨᎯ; ᎯᎠᏰᏃ ᏂᎬᏅ ᎢᎬᏪᎳ, ᎨᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ ᎾᏂᎥ ᎩᎶ ᏂᏓᏂᎧᎿᏩᏕᎬᎾ ᎢᎨᏎᏍᏗ ᎾᎾᏛᏁᎲ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎪᏪᎸᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏈᏓ ᏂᎬᎾᏛ ᎤᏪᏙᎸ ᎾᏍᏉ ᏫᏚᎷᏤᎴ ᎤᎾᏓᏅᏘ ᎵᏓ ᎠᏁᎯ.\nᏍᏗᏫ ᎠᏥᏁᏤᎴ ᎤᏂᏴᏗ ᎢᎾᏓ ᎪᎢ ᎠᏍᏚᏥᏍᎬ ᎢᏳᎯ.\nᎤᏪᏯ ᎾᎥ ᏩᎾᎢᏒ, ᏩᎭᏯ ᎾᎥ ᎤᎦᏌᏗᏣ…\n[ᎯᎠ ᏥᏂᎦᏪᎭ,] ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᏂᏍᎦᏅᏨ ᎦᎨᏥ-ᏁᎸᎯ, ᎠᎴ ᎤᏲ ᏄᎾᏛᏁᎸ ᎨᎫᏢᎾᏁᎸᎯ;\nᎠᎨᏴᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏱᏚᏳᎪᏗ ᏗᎩᎡᏗᏱ ᏗᏂᏲᎵ ᎤᎾᏤᎵ ᎦᏚ, ᎩᎵᏃ ᏫᏓᏗᏁᏗᏱ.\nᎠᎴ ᎥᏝ ᎯᎠᏉ Ꮎ ᎤᏅᏒ ᏱᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ, ᎾᏍᏉᏍᎩᏂ Ꮎ ᎠᎾᎵᏥᏙᎲᏍᎬ ᎬᏉᎯᏳᎲᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏥᎩ ᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ;\nᎡᎵᏍᏗ ᎦᏲᏟ ᏗᎩᏏᎳᏛᏙᏗ ᎡᎳᏗ ᎢᏯᏆᏛᏁᏗ.” \nᎠᏴ ᎤᏙᎯᏳᎯ ᎯᎠ ᏂᎨᎵᏍᎬᎩ; ᏚᏳᎪᏛ ᏱᏂᎦᏛᏁᎭ ᎤᏣᏘ ᎪᎱᏍᏗ ᏱᏓᎩᎸᏫᏍᏓᏁ ᎦᏡᏗᏍᎬ ᏕᎤᏙᎥ ᏥᏌ ᎾᏎᎵᏘ ᏤᎲᎩ.\nᎾᏍᎩᏃ ᎦᎸᎳᏗ ᎡᎯ ᎢᏥᏙᏓ ᏧᏪᏥ ᏂᏣᎵᏍᏗᏍᎨᏍᏗ; ᎾᏍᎩᏰᏃ ᎤᏤᎵ ᏅᏙ ᏕᎦᎾᏄᎪᏫᏎᎰ ᎤᏂᏲ ᎠᎴ ᎠᏃᏍᏛ, ᎠᎴ ᏓᎦᏅᏓᏁᎰ ᎤᎾᏓᏅᏘ ᎠᎴ ᎤᏂᏁᎫᏥᏛ.\nᏚᎴᏅ ᎠᏧᏣ ᎠᎹ ᏄᏩᏅᏓᎩᏎ ᎤᏍᏘᏰᎬ, ᎦᏁᎮ ᎠᏰᎳᏍᏗ, ᎠᎼ ᎤᏓᏅᎦᎸᏓ.\nᏅᏃ ᏚᎾᏦᎭᏱᎸ.\nᎠᎴ ᏔᎵᏁ ᎤᏴᎸᎩ ᏗᎫᎪᏗᏱ, ᎯᎠ ᏫᏄᏪᏎᎸᎩ ᏥᏌ; ᎭᏢ ᏅᏓᏣᏓᎴᏅᎯ? ᎠᏎᏃ ᏥᏌ ᎥᏝ ᏳᏁᏤᎴᎢ.\nᎨᏍᏗ ᎯᎸᎯᏳ ᏭᏙᎯᏳᎲ ᏧᎵᎢ ᏏᏆ ᏯᏁᎮᎢ, ᏃᎴ ᎤᏕᎶᎰᏎ ᎠᎵᎢ ᎣᎯᏍᏙᏗ ᎠᏓᏅᏖᏙᏗ ᎭᏂ ᎡᎶᎯ.\nᎪᎰᏍᏘ ᎤᏰᎸᏗ ᏓᏳᎾᏘᏲᎸ, ᎠᏂᏐ ᎠᏂᏧᏣ ᎤᎾᏦᎣᏒ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ ᎢᏤᎳᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ.\n“Ꭵ, ᎤᏙᏳᎯ,”\nᏃᎴ ᏍᏓᏱᎨᏍᏗ ᎯᎧᏁᎦ ᏣᏓᏦᎲᎢ.\nᎩᎶᏰᏃ ᏂᏚᏳᎪᏛᎾ ᎾᏛᏁᎮᏍᏗ ᎠᎩᏍᎨᏍᏗ ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᎩᏍᎨᏍᏗ ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ ᏧᏭᎪᏓᏁᎯ ᎤᏩᏛ ᎤᏍᎦᏅᏨᎢ, ᎾᎪᏩᏘᏍᎬᎾ ᎨᏒ ᎤᎬᏫᏳᎯ ᎠᏰᎸᎢ.\nᎠᎦᏴᎵ ᎤᏤᏥᏍᏗ ᎤᏍᏆᏙᏁ ᏣᏁᎳ ᏧᏕᏘᏴᏓ, ᎤᎴᏅᎮ ᎤᏩᏌ ᎡᎲ Nashville ᏙᏰ, ᎣᏍᏓ ᎤᏰᎸᎮ ᎤᏬᏰᏂ ᎬᏘ ᏳᏎᎵᏙᎳ ᏂᎬᎾᏛ ᎦᏙ, ᎾᏍᏉ ᎤᎸᏂᏗᏍᎬ.\n“ᎭᏩ, ᎨᏍᏗᏗ ᎤᎵᏬᏨ ᏏᏆ ᎨᏗᏁᏗ ᏱᎩ ᎤᎵᎪᎾᏔᏅᎯ,” ᎤᏛᏁ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎩ.\nᎤᎦᏃᏫ ᎨᏒ ᎤᏍᏔᎦᏢ.\n”ᎭᏂ ᎦᎸᎳᏗᏣ,” ᎤᏛᏁ ᎦᏬᏂᏍᎩ.\nᏔᎵᏚ ᎢᏳᏩᏂᎸ----ᎢᎦ ᎠᎵᏍᏓᏴᏗ.\nᎢᎦᏓ ᎠᏂᎨᏯ ᏚᏂᏁᎦᎳᎲ ᏃᎴ ᏚᏂᎦᏧᎳᎩᏒ ᏌᎶᎵ ᎾᏍᎩᏯ ᏎᎷ ᎣᏍᏓ ᏥᏂᏓᏅᏁᎰ, ᏗᎪᏍᏓᏱ ᎠᏓᏒᎩ ᎠᏓ ᏫᏚᏄᏍᏙᏅ ᏧᎾᎦᏎᏂ ᏗᏂᎰᎵ ᏫᏗᎦᏅᎪᎩ, ᎪᏍᏓ ᏧᏗᎴᎩ ᎦᏚᎢᏣ ᏫᏚᏂᏒᎾᏔᏅ.\nᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎥᏝ ᏂᎯ ᎢᏥᎦᏙᎥᎯᏍᏗ ᏱᎩ ᎢᏳ ᎠᎴ ᎾᎯᏳ ᏕᎨᏌᏗᏒᎢ, ᎾᏍᎩ ᎠᎦᏴᎵᎨ ᎤᏩᏒ ᎢᏧᏩᏁᎵᏓᏍᏗ ᏥᏄᏩᏅ.\nᏌᏉᎯᏰᏃ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ ᏂᏗᎥ ᏤᎦᏬᎥᎯ ᏌᏉ ᎠᏰᎸ ᎢᏰᎬᏁᎸᎯ, ᎾᏍᏉ ᎢᏗᏧᏏ ᎠᎴ ᏗᎦᏓᎴᏅᏛ ᏴᏫ ᏱᎩ; ᎾᏍᏉ ᏤᎩᎾᏝᎢ ᎠᎴ ᏤᎩᎾᏝᎢ ᏂᎨᏒᎾ ᏱᎩ; ᎠᎴ ᏂᏗᎥ ᏌᏉᏉ ᎠᏓᏅᏙ ᎢᎦᏗᏔᏍᏗᏱ ᎢᏰᎬᏁᎸᎯ.\nᏗᎦᎷᏯᏍᏙᏗ ᏚᎾᏚᎵᏍᎨᏍᏗ.\nᎠᏂᏆᎵᏏᏍᎩᏂ ᎤᎾᏛᎦᏅ ᎡᎳᏪᏱ ᏚᏩᏅ ᎠᏂᏌᏚᏏ, ᎾᏍᎩ ᏚᏂᎳᏫᏨᎩ.\nᏧᏩᏤᎷᎩᏍᏔᏁ ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙ ᏅᏃᎯ.\nᎥᏝᏰᏃ ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎠᏓᎸᏉᏗᏍᎩ ᏣᎦᏓᏂᎸᎢᏍᏗ ᏱᎩ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎤᎬᏫᏳᎯ ᎤᎸᏉᏔᏅᎯ.\nᎢᎬᏱ ᎦᏰᎯ ᎣᏣᎦᏌᏯᏍᏗᏍᎬ ᎣᏏᏳ ᎠᏰᎸᏗ ᎨᏒᎢ, ᎥᏝ ᎤᎬᏫᏳᎯᏉ ᎠᎦᏔᎲᎢ, ᏴᏫᏍᎩᏂ ᎾᏍᏉ ᎠᏂᎦᏔᎲᎢ.\nᏓᏆᏒᎾᏔᏅ ᎧᏫ ᏚᏯ, Perry ᏥᏅᏫᏍᏔᏅ ᎤᎪᏗ ᎤᎧᏔ, ᎤᏂᎧᎭᏲᏓ ᏆᎾ ᏧᏑᏴᏗ ᏃᎴ ᎠᎦᏗᏛ ᏭᎵᏗ ᎠᏑᏴᏗ ᏃᎴ ᎤᎵᏏᎩ ᎧᎵᏎᏥ ᏃᎴ ᎪᏒᏅ.\nᎢᏳ ᎠᎴ ᏎᏓᏂ ᏱᏚᎴᏅ ᎤᏩᏒ ᏱᏚᏓᎦᏘᎴᏅ, ᎠᎴ ᏔᎵ ᏱᏄᏓᎠ, ᎥᏝ ᏰᎵ ᏱᏂᎬᏩᏍᏗᏉ, ᏱᏩᏍᏔᏉᏍᎩᏂ ᎡᎲᎢ.\n“ᎭᏩ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ, “ᎨᎵᎠ ᎠᏎ ᏧᎸᏉᏗ ᏅᎩ ᏗᏂᏅᏌᏗ ᎨᏎᏍᏗ.\nᏐᏉ ᎢᎦ ᏕᎭᎷᏱ ᎧᎸᎢ, ᏔᎵ ᎢᏯᏅᏓ ᎾᎥᏂ ᎢᏳᏕᏘᏴᏓ ᏥᎨᏎ ᏫᎵᎻ, ᏙᏱᏨ ᎡᏙᎮ.\nᏍᏈᏍᏓ ᎠᏣᏗ ᎠᏁᎮᎢ ᎠᎹ ᎦᏁᎲ.\nᎥᏝᏰᏃ ᎠᏆᏓᏅᏙ ᏫᏱᏙᎦᎯᏲᎯ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵᎪᎯ, ᎥᏝ ᎠᎴ ᎾᏍᎦᏅᎾ ᏣᏤᎵ ᎤᏁᎳᎩ ᏭᎪᎯ ᎦᎯᏰᎵᏎᏗ ᏱᎩ.\nᏃᎴ ᏍᏉ, ᏌᎳᏓ ᎣᏍᏓ ᏳᏓᏅᏛᎾ ᎨᏒ… ᎤᏪᎵᏎ \nᎠᏕᏗᏱᎩ ᎤᏲ ᎦᎶᎯᏍᏗ.\nᎤᎵᏍᎫᏮ ᏣᎵ ᎤᏬᏢ ᎢᏣ, ᎢᏧᎳ ᏚᏃᏢ ᎤᏬᎯᏳᏅ ᏣᎵ ᎤᏚᎵᏍᎬ ᎤᏕᏘ.\nᎠᎴ ᎾᏍᏉ, ᎾᎯᏳ ᎢᎬᏱ ᎤᏕᏁᎸᎯ ᎡᎶᎯ ᎤᎾᏄᎪᏫᏒ ᎯᎠ ᏄᏪᏎᎢ; ᎠᎴ ᎾᏂᎥ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏫᎬᏩᏓᏙᎵᏍᏓᏏ.\nᎿᏉᏃ ᎯᎠ ᎾᎩᏪᏒᎩ, ᎬᏂᏳᏉ ᏥᎷᎩ, [ᎪᏪᎵᎯ ᎪᏪᎳ ᎥᎩᏃᎮᏍᎬᎢ,] [ᏥᎷᎩ] ᏄᏍᏛ ᏣᏚᎵᏍᎬ ᎢᏯᏆᏛᏁᏗ Ᏹ, ᏣᏁᎳᏅᎯ.\nᎠᏎᏃ ᎤᎴᏅᎮ ᎤᏍᎩᏅᏕ ᎠᎴ ᎤᏎᎵᎳᏁ ᎯᎠ ᏁᏪᏎᎢ, ᎥᏝ ᏱᏥᎦᏔᎭ Ꮎ ᎠᏍᎦᏯ ᎾᏍᎩ ᏤᏥᏃᎮᎭ.\nᎨᏍᏗ ᏳᏣᏅᏓᏕᎳ ᎤᎶᎪᏗ ᏎᎷ ᏓᏫᏒ ᏣᏄᏏ.\nᎱᎷᏣ ᏌᎪᏂᎨ-ᏃᎴ-ᎤᏁᎦ ᎪᏪᎵ ᎤᎭᎨᏓ ᎤᏅᏍᎦᎴᎢ.\nᎾᎿᏃ ᏕᎦᎧᎲᎩ ᏑᏓᎵ ᎠᎹ ᏗᏟᏍᏗ ᏅᏯ ᏗᎪᏢᎳᏅᎯ ᎠᏂᏧᏏ ᏥᏂᏕᎤᏅᏃ ᎤᎾᏓᏅᎦᏗᏱ ᏥᏂᏕᎬᏅᎩ, ᏦᎠᏍᎪᎯ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᏗᏟᏍᏙᏗ ᎨᏒᎢ\nᎨᏍᏗ ᎯᎸᎯᏳ ᎠᎩᎪᎲᎯ ᏱᎨᏎ ᏍᎩᎾᎾ ᎢᎦᎢ ᎤᎾᏗᏅᏓ ᎠᎵᏍᏓᏴᏗ, ᏃᎴ ᏂᎦᏓ ᎣᏍᏓ ᎤᏩᏂᏒ, ᎠᎦᎵᏍᎬ ᎠᎲᎢ.\nᎢᏳᏃ ᎩᎶ ᏂᏗᏣᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᎢᏥᏁᎬ ᎾᏛᎩᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᎾᎿ ᎦᎵᏦᏕ ᎠᎴ ᎦᏚᎲ ᎢᏥᏄᎪᎩ, ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ ᎦᏓ ᏗᏣᎳᏏᏕᏂ.\nᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᎥ, ᏣᎬᏫᏳᎯ; ᎪᎢᏳᎲᏍᎦ ᏂᎯ ᎦᎶᏁᏛ ᎨᏒᎯ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ.\nᏂᎯ ᎤᏁᎳᏅᎯ ᏅᏓᏣᏓᎴᏅᎯ, ᏗᏥᏲᎵ, ᎠᎴ ᏕᏥᏎᎪᎩᏒ ᎾᏍᎩ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏟ ᎤᎵᏂᏗᎩᏗᏳ ᎨᏒ ᎢᏥᏯᎢ ᎡᏍᎦᏉ ᎡᎶᎯ ᎠᏯᎢ.\nᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎤᎵᏬᏨ ᏗᎦᎾᏗ ᏣᏄᏍᏕᎢ, ᎠᏎᏃ ᏥᏳᎧᏗ ᎤᎾᏕᎶᎰᏍᏗ ᏧᎾᏚᎵᏍᎨ ᎠᏂᏣᎳᎩ ᏍᎩᏳᏍᏗ ᎡᏆ ᏧᏃᏔᏁᎢ ᏃᎴ ᎭᎾ ᏣᏭᎾᏓᎩᏅᏎᎢ ᏍᎩᎾ ᏍᎩᎵ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᎠᏏᏉ ᎤᎾᎦᏙᏍᏕ ᎠᏥᏌᎳᏓᏁᎢ, ᎤᎶᎩᎸᏃ ᏭᏕᎵᏤ ᏓᏂᎧᏅᎢ.\nᏍᏈᏍᏓ ᏃᎴ ᎦᏣᏄᎳ ᎫᏘᎭ\nᎤᏙᎯᏳᏗᏱ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎢ; ᏗᏍᎩᎧᏁᎸᎯ ᎥᏝ ᎠᏏᏴᏫ ᏍᎩᏲᎱᏎᎸ.\nᏥᏓᏓᏴᎳᏔᏍᎨᎢ ᏗᎧᏁᎢᏍᏗ, ᏂᎦᏓ ᎤᏍᏆᏂᎩᏗ ᎠᏁᎵᏍᎨ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎠᏥᏰᎸᏎ ᎡᏍᎦᏉ ᎼᏏ, ᎩᎶᏰᏃ ᎠᏓᏁᎸ ᎤᏁᏍᎨᎲᎯ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏐ ᎡᏍᎦᏉ ᎠᏓᏁᎸᎢ.\nᎾᏍ-Ꭹ Ꮎ ᏥᏁᎢᏍᏗᏍᎬ ᏱᎦᏢᏈ; ᎠᏋᏒᏍᎩᏂ ᎦᏓᏁᎢᏍᏗᏍᎬ ᎥᏝ ᏴᎦᎦᏢᏈ, ᏥᏩᎾᎦᎵᏳ ᎨᏒ ᎤᏩᏒ.\nᏧᎸᏫᏍᏓᏁᎯ ᎦᎸᏉᏗᏳ ᏗᎨᏒᎢ ᎠᎴ ᎤᏙᎯᏳᎯ ᏗᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᎵᏦᏔᏅᎯ ᎨᏒᎢ, ᎥᏝᏃ ᏴᏫ.\nᎤᏪᎳᏗᏓᏍᏗᏱ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎴ ᎠᏓᏅᏏᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏧᏓᏏ ᏥᏚᏲᏒᎩ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᏭᎶᎯᏍᏗᏱ.\nᎾᏍᎩ Ꮎ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎠᎾᏙᎴᎰᏍᎩ ᎣᏍᏛ ᎣᏂᎨᏛᏅᎯ ᎠᎴ ᎤᏂᏲᎸᎯ, ᎾᏍᎩ ᎤᎾᏙᎴᎰᏒᎯ ᎤᏂᏁᎢᏍᏔᏅᎯ ᏂᎯ ᎡᏥᏙᎵᏍᏗ ᎨᏒᎢ;\nᎠᏎᏃ ᎠᏏ ᎤᏟ ᎢᎦᎢ ᏂᏗᎬᏯᏪᎢᏍᏔᏅᎾ, ᎬᏔᏲᏎᎭ ᏣᏓᏅᏘᏳ ᎨᏒ ᏨᏙᏗᏱ ᏍᎩᏯᏛᎦᏁᏗᏱ ᎢᎸᏍᎩ ᎢᎧᏁᏨᎯ.\nᎠᎴ ᎯᎠ ᎾᏍᎩ ᎢᎩᏚᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ.\nᎢᏳᏰᏃ ᎤᏲ ᏱᏨ ᏯᏓᏅᏓᏗᏍᏔᏅ, ᎦᎪ ᎣᏍᏛ ᏯᏆᏓᏅᏓᏗᏍᏓ, ᎾᏍᎩᏉ Ꮎ ᎤᏩᏒ ᎤᏲ ᏥᏯᏓᏅᏓᏗᏍᏔᏅᎯ?\nᎥᏝ ᎠᏗᎾ ᎿᏉ ᎠᏎ [ᎢᏤᏓᏍᏗᏱ ᏂᎨᏒᎾ] ᎾᏍᏉ ᎡᎶᎯ ᏗᏂᎧᏩᏕᎩ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ ᎠᎴ ᎤᏂᎬᎥᏍᎩ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ ᎠᎴ ᎤᏂᎬᎥᏍᎩ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎠᎾᏓᎩᎡᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᎠᏎ ᎢᏥᏄᎪᎢᏍᏗ ᏱᎩ ᎡᎶᎯ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᏉ ᏐᎵᎹᏅ ᏂᎦᎥ ᏄᏬᏚᏒᎢ Ꮭ ᎾᏍᎩ ᏱᏄᏍᏕ ᏚᏄᏮᎢ ᏌᏉ ᎯᎠ ᏄᏍᏛᎢ.\nᏞᏍᏗ Ꭹ-Ꮆ ᎢᏳᏃ ᎠᏥᎪᎵᏰᏍᎨᏍᏗ, ᎤᏁᎳᏅᎯ ᎠᎩᎪᎵᏰᎭ ᎤᏛᏅᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎦᏰᏥᎪᎵᏰᏗ ᏱᎩ ᎤᏲ ᎠᎬᏓᏁᎲᎢ, ᎥᏝ ᎠᎴ ᎤᏩᏒ ᎩᎶ ᏯᎪᎵᏰᏍᎪᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏈᏓ ᎤᏄᎪᏨᎩ, ᎠᎴ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏂᎷᏨᎩ.\nᏐᏉᏃ ᎤᏙᎯᏳᎭ, ᎨᏍᏗ ᎤᏓᏅᏗ ᏱᎩ.\nᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏯᏋᏁᏗᏱ, ᎾᏍᎩᏯ ᏥᏚᏳᎪᏗ ᎢᏯᎩᏪᏍᏗᏱ.\nᎠᎴ ᏂᏍᎬᎢᏃ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ ᏑᎾᎴᎢᏳ, ᎠᏏᏉ ᎤᎵᏏᎬᎩ, ᎤᎷᏨᎩ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᎤᎪᎲᎩ ᏅᏯ ᎠᎲᏛ ᎨᏒᎩ ᎠᏤᎵᏍᏛᎢ.\nᏐᏈᎵ ᏓᏂᏁᎵᏍᎨᎢ.\nᏰᎵ ᎪᎯᏓ ᎦᎾᏩᏕᎨ, ᎠᏰᎵ ᎦᏟ, ᎠᏍᎩᏥᏍᎨᎢ ᎣᏍᏓ ᎠᏍᎩᏗᏍᎨᎢ.\nᎩᎦᎨ ᎠᏓᏪᎳᎩᏍᎬ ᏃᎴ ᎬᏂᎨ ᏚᎦᏒᏍᏛ ᎦᎸᎶ ᎢᏴ ᏫᎦᎷᎬ, ᏔᎵ ᏧᏙᏓᏆᏓ ᎬᏂᎨ ᎤᏍᎪᎸ ᎠᎯᏯ ᎪᏍᏓ ᎦᏃᎯᎵᏙᎲ, ᎤᎨᏓᎵᏴ ᎨᏴ ᏫᎦᎷᎬ.\n“ᎬᏃᎯᏎᎭ ᏄᎵᏍᏔᏂᏙᎸ.”\nᎿᏉ ᏂᎯ ᎢᏣᏓᏅᎦᎸᏔᏅ ᎧᏃᎮᏛ ᎾᏍᎩ ᎢᏨᏁᏤᎸᎯ ᏥᎩ.\nᎯᎠᏰᏃ ᏂᎦᏪᎭ, ᎬᏩᏛᎦᏁᎸ ᎾᎯᏳ ᏗᏓᏂᎸᏨᎯ ᎨᏒᎢ, ᎠᎴ ᎾᎯᏳ ᎢᎦ ᎦᏴᏓᏗᏍᏕᎸᏗ ᎨᏒ ᎬᏍᏕᎸᎲ; (ᎬᏂᏳᏉ, ᎪᎯ ᎿᏉ ᎾᎯᏳ ᏗᏓᏂᎸᏨᎯ ᎨᏒᎢ; ᎬᏂᏳᏉ, ᎪᎯ ᎿᏉ ᎾᎯᏳ ᏗᏓᏂᎸᏨᎯ ᎨᏒᎢ; ᎬᏂᏳᏉ, ᎪᎯ ᎿᏉ ᎾᎯᏳ ᎢᎦ ᎦᏴᏓᏗᏍᏕᎸᏗ ᎨᏒᎢ;)\nᎾᏍᎩ ᎯᎠ ᎠᎨᏲᏅᎯ ᎨᏒᎩ ᎤᎬᏫᏳᎯ ᎤᏅᏅᎢ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᏓᏅᏛᎢ, ᎧᏃᎮᏍᎬᎩ ᎠᎴ ᏓᏕᏲᎲᏍᎬᎩ ᎾᏑᎵᎪᎬᎾ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎨᏒᎢ, ᏣᏂ ᎤᏤᎵ ᏗᏓᏬᏍᏗ ᎤᏩᏒ ᎠᎦᏔᎲᎩ.\nᏞᏍᏗ ᎩᎶ ᎤᏩᏒᏉ ᎤᏤᎵ ᏳᎦᏌᏯᏍᏕᏍᏗ, ᎾᏂᎥᏍᎩᏂ ᎠᏂᏐᎢ ᎾᏍᏉ ᎤᎾᏤᎵᎦ.\nᏝᏍᎪ ᏱᏥᎦᏔ ᎾᏍᎩ Ꮎ ᎠᎾᏙᎩᏯᏍᎩ, ᏂᎦᏛ ᎠᎾᏙᎩᏯᏍᎬᎢ, ᎠᏎᏃ ᎠᏏᏴᏫᏉ ᎤᏤᎵ ᏂᎭᎵᏍᏗᏍᎬ ᎠᏌᏍᏛᎢ? ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎢᏣᏙᎩᏯᏍᎨᏍᏗ ᎾᏍᎩ ᎢᏣᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ.\nᎤᏙᏓᏃ ᏤᎦᎳᏯ ᎤᎧᎵᏨᎯ ᎨᏎ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᎤᏙᎴᎰᏎ ᎯᎠ ᏄᏪᏎᎢ;\nᎠᏁᏅᏍᏓ ᎣᏂᏏᎹ, ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᎠᎴ ᎣᏥᎨᏳᎢ ᎣᏣᎵᏅᏟ ᎾᏍᎩ ᎢᏤᎲ ᎡᎯ ᏥᎩ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏅᏓᎨᏨᏁᎵ ᏂᎦᏛ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎠᏂ.\nᏄᏁᏤᎶᏰᏃ ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏄᎪᎢᏍᏗᏱ ᎠᏍᎦᏯ. ᏯᏃᏉᏰᏃ ᎤᏂᏱᏍᎨᎢ; ᏧᏓᏕᏒᏛᏃ ᎠᎴ ᏗᎵᏰᏌᎾᎶ ᏓᎦᎸᏍᏗᏍᎨᎢ; ᏓᎦᎵᏍᎨᏁ ᏚᏓᎸᏍᏛᎢ, ᎠᎴ ᎠᏍᎩᎾ ᎢᎾᎨ ᏭᏱᎸᏍᏗᏍᎨᎢ.\nᎯᎳᏳᎢ ᏍᎩᎾ ᏩᏚᎳᏏᏁ ᎦᏚᎢ ᎭᏫᎾ ᏗᏔᎳᎧᏒᎢ ᏣᏭᎶᎢᏎᎢ ᏍᎩᎾ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᏣᎾᎤᎳᏍᏓᏁ ᎱᎳᏍᏕᎵᏴᏌ.\nᎠᏍᎦᏯᏯ ᏥᏍᏕᏥ ᎨᏎ ᏧᏍᏆᏴᏍᏗ, ᎤᏩᏌ ᏁᎵᏍᎬ ᎾᏛᏁᎮ.\nᎢᏳᏛᏁᏗᏱ ᏚᏚᎢᏍᏓᏁᎸ ᏗᎩᎦᏴᎵᎨ ᏧᏪᏙᎵᏍᏗᏱ, ᎠᎴ ᎤᏅᏓᏗᏍᏗᏱ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ,\nᏳᎾᏟᎶᎾ, ᎠᏂᏍᎦᏯ ᎠᏂᎳᎨᏲ ᏓᏂᏲᎰᏍᎪ, ᎨᏥᎢᏍᏔᏅ ᏃᎴ ᎩᎦ ᎠᎾᏔᏍᎩᏍᎬ ᏃᎴ ᎤᏂᏍᎪᎸᏨ.\nᎠᏒ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᏁᏈᏓᎵ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ.\nᎿᏉᏃ ᎤᏂᏍᎦᎸ ᏅᏲᎯ ᎤᏂᏝᏗᏤᏗᏱ, ᎣᏂᏗᏢ ᏫᏚᎾᏗᏅᏒᎩ ᏅᎩ ᏔᎷᎩᏍᎩ ᏥᏳ ᏗᎦᎾᎯᏍᏙᏗ, ᎠᎴ ᎤᎾᏚᎸᎲᎩ ᎢᎦ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏎᏃ ᎢᏳᏃ ᏳᏓᏅᏒ, ᏅᏩᏛᏁᏍᏗ ᏂᏓᏤᎲᎾ ᎨᏒᎢ, ᎠᎴ ᏙᎯᏉ ᎾᏅᏁᎮᏍᏗ ᎤᏰᎯ; ᎠᎴ ᎠᏍᎦᏯ ᏞᏍᏗ ᎢᏴᏛ ᏱᎦᎧᎲᏍᎨᏍᏗ ᎤᏓᎵᎢ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏴ ᏥᎬ ᏬᏁᏗᎭ ᎾᏍᎩ [ᎺᏌᏯ.]\nᎩᎶᏃ ᏕᏣᏓᏂᎸᎨᏍᏗ, ᎾᏍᎩ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ; ᎩᎶᏃ ᎠᏴ ᏓᏆᏓᏂᎸᎨᏍᏗ, ᎾᏍᎩ ᏓᏓᏂᎸᎨᏍᏗ ᏅᏛᎩᏅᏒᎯ\nᎾᎯᏳ ᎢᎦ ᎠᏂᏌᏚᏏ ᏗᎴᎯᏐᏗ ᎨᏒ ᎤᎾᏜᏏᏛᎡᎯ ᎬᏩᎷᏤᎸᎩ, ᎠᎴ ᎬᏩᏛᏛᏅᎩ,\nᏂᎯᏍᎩᏂ ᏞᏍᏗ ᎾᏍᎩ ᏱᏂᏨᏁᏍᏗ; ᎩᎶᏍᎩᏂ ᎠᏥᎸᏉᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ ᎾᏍᎩ ᎡᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ.\nᎣᏍᏓ ᎠᏓᏍᏕᎳ ᏧᎾᏦᏴᏍᏗ ᎤᏂᏗ.”\nᎤᎾᎳᏅᎯᏍᎩᏂ ᏚᏑᏰᏒ ᎤᎾᎵᏍᎦᏂᏍᏛ ᎨᏥᏰᎸᎯ ᎠᏁ ᎡᎶᎯ, ᎾᏍᎩ ᏧᏕᎰᎯᏍᏙᏗᏱ ᎠᏂᎦᏔᎾᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏑᏰᏒ ᎠᏂᏩᎾᎦᎳ ᎨᏥᏰᎸᎯ ᎠᏂ ᎡᎶᎯ, ᎾᏍᎩ ᏧᏕᎰᎯᏍᏙᏗᏱ ᏧᎾᎵᏂᎩᏛ;\nᎠᏎᏃ ᏌᎳᏓ ᏧᏪᏥ, ᏧᎵᏏ ᏃᎴ ᏔᎵᏁ ᏧᎵᏏ ᎠᎾᏕᎲᏍᎨᎢ ᎤᏕᏘᏴᏌᏗᏒᎢ ᎠᏂᏂᎩᎴ ᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ.\nᎠᏂᏐ ᎤᏃᎯᏳᏔᏅ.\nᎧᏂᎵᏯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏅᎩ ᏄᏒᎭ ᎠᎹᏟ ᎬᏍᎬᎩ ᎯᎠ ᎢᏳ ᎧᎳᏩᏗᏒ ᎢᏯᏍᏗ, ᏦᎢᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎦᏓᏙᎵᏍᏗᏍᎬ ᏥᏁᎸᎢ, ᎬᏂᏳᏉᏃ ᎠᏍᎦᏯ ᏗᎬᏩᎸᏌᏓ ᏧᏄᏫ ᎢᎬᏱᏢ ᎠᏆᎴᏁᎸᎩ.\nᏂᎦᏓᏉ ᎧᏅᏂᏍᎩ ᏧᏃᏚᎯ.\nClaire ᏥᏯᏚᎵᏍᎬ, ᎠᏎᏃ ᏗᏥᎶᏍᏔᏅ ᏓᏍᏆᏂᎪᏛ ᎠᏁᏙ ᎠᏂᎨᏯ ᎠᏃᎯᏍᏙᏗ ᎨᏒ, ᎡᏍᎦᏉ ᎠᏍᎦᏯ ᎤᏩᏌᏉ.\nᏥᏌᏃ ᎠᏍᏓᏯ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ, ᏂᎯ ᏕᎬᏲᎯᏏ ᎠᏆᏓᏅᏙᎩ; ᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎵᏍᏆᏕᎴᎢ.\nᏂᎦᏛᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎤᏣᏔᏅᎯ ᎤᏂᎾᏰᏎᎢ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎯᎠ ᎾᏍᎩ ᏄᎵᏍᏔᏅ ᎠᎾᏛᎩᏍᎩ.\nᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏓᏕᏲᎲᏍᎬ ᎨᏆᏂ.\nᎤᏚᎵᏍᎬ ᎢᎾ ᎢᏗᎾᏘ ᏧᎾᎳᏗ ᎾᏍᎩᏯ ᎾᏂᎥ ᏴᏫ ᎡᎶᎯ ᎠᏁᎮ.\n“ᎯᏣᏛᎦᏍᏓ ᎭᏩᏧ!” \nᎨᏍᏗ ᎣᏍᏓ ᏯᎩᏰᎸ ᎤᏍᏗ ᎠᏣᏗ ᎨᏒ ᎠᏯ.\nᎤᏣᏛ ᎢᏣᏓᏛᎥᏍᎬ ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎡᏙᏓ ᏓᏰᏥᎸᏉᏔᏂ; ᎰᏩᏃ ᏍᎩᏍᏓᏩᏗᏙᎯ ᎨᏎᏍᏗ.\nᎯᎠ ᏄᏪᏒᎩ; ᏓᎬᏯᏛᎦᏁᎵ ᎨᏧᎯᏍᏗᏍᎩ ᎾᏍᏉ ᎠᏂᎷᏨᎭ. ᎤᏁᏨᎩᏃ ᎠᏥᎦᏘᏗᏍᏗᏱ ᎡᎶᏛ ᎤᏤᎵ ᏗᎫᎪᏙᏗᏱ ᎠᏓᏁᎸᎢ.\nᎾᏍᎩᏃ ᏦᏥᎦᏔᎭ ᎦᎾᏰᎢᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᏙᏥᏍᏗᏰᏗ ᏴᏫ; ᎠᎴ ᎬᏂᎨᏒ ᏃᏣᎵᏍᏗᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ; ᎠᎴ ᎤᏚᎩ ᎠᏋᎭ ᎬᏂᎨᏒ ᎢᏯᏉᎵᏍᏙᏗᏱ ᎾᏍᏉ ᏂᎯ ᏕᏣᏓᏅᏛᎢ.\n“ᏙᎩ ᎢᏳᏍᏗ?” ᎤᏛᏁ ᎰᎻ.\nᎠᎦᏛ ᏚᎾᎧᏛ ᏚᎾᏓᏴᎳᏛ ᎤᏬᏗᎨᏍᏛ ᎤᏍᎪᎸ ᎠᏨᏍᏛ, ᏗᏂᎦᏙᎵ ᏗᎦᏁᎯ ᏃᎴ ᏧᎾᎴᎿᎸ ᏂᏚᏍᏛ.\nᎠᏎ ᏯᏌᎩᏒ ᎤᎾᎵᏍᎪᏅ ᏧᏕᏘᏴᏓ ᎤᎶᏐᏅ, ᎡᏆ ᎨᏎ ᏲᎾ.\nᏩᏕᎭᏲᎲ ᎨᏴ, ᎤᏩᎾᏕᏍᎩ ᎦᏙ ᎦᏲᏟ ᎤᏓᏓᏍᎬ ᎦᏄᎸ ᏃᎴ ᎦᏲᏟ ᏕᏧᎬ ᏧᏁᏃᏅᏗ ᏃᎴ ᎦᏲᏟ ᏤᏆ ᏅᏯ.\nᎾᏍᎩᏍᎩᏂ Ꮎ ᏧᏓᏂᎸᏨᎯᏍᎩᏂ ᎤᏃᎮᎸᎢ ᎾᏍᎩ ᎤᏍᏓᏱᏛ ᎤᏁᎳᏅᎯ ᎬᏩᏥᎪᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏄᏍᏛᏰᏃ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ, ᎥᏝ ᎣᏏᏳ Ꮿ-ᎩᏰᎸᎭ; ᏄᏍᏛᏍᎩᏂ ᎠᏆᏚᎵᏍᎬᎢ ᎥᏝ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎰᎢ; ᎾᏍᎩᏍᎩᏂ ᏥᏂᏆᏘᎲᎢ, ᎾᏍᎩ ᏂᎦᏛᏁᎰᎢ.\nᏙᏕᏣᏙᎠ? ᏍᎩᏃᎯᏏ ᏕᏣᏙᎥ.”\nᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ ᎣᎩᏙ ᏈᎩ, ᎾᏍᎩ ᎠᏯᏙᎯᎯ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎡᏟᏯ;\nᎤᎯᏐᏓᏁ ᏎᎦ ᎭᏫᏂ ᎤᎴᏁ.\nᎨᏍᏗ ᎬᎩᏍᏕᏓᎵᏴᏍᏗ Ꮙ ᏱᎩ ᏏᏓᏁᎸ ᏕᎦᎦᏎᏍᏛᎢ, ᎠᎾᏓᎪᎾᏗᏍᎬᎢ ᎾᏁᎵᏍᎬ.\nᎯᎢᏃ ᏗᏤ ᏚᎾᏔᏁ ᏃᏊ ᏣᎳᎩ ᎠᏰᎵ ᎡᎵᏊ ᏗᎪᏪᎵ ᏚᏂᎴᏴᎠᏁ ᎯᎠ ᏣᎳᎩ ᏗᎬᎪᎵᏰᏗ ᎠᎴ ᎤᏍᏙᎸᏍᏗ ᏂᎨᏒᎾ.\nᎱᏂᎷᏣ ᏗᎦᎨᏓ ᏓᏃᏱᏁᎮ.\nᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᏗᏤᎵᏛ ᎤᏂᎯ, ᎠᏎᏃ ᎠᎾᏓᏙᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏕᎭᏓᏅᎡᎮᏍᏗ.\nᏂᎯ ᎾᏍᏉ ᎢᏥᏫᏅ ᏕᏦᎯᏳᏎᏍᏗ ᏧᎾᏛᏐᏅᎯ; ᎥᎥ, ᏂᏥᎥᎢ ᏕᏣᏓᏙᎯᏳᏎᏍᏗ, ᎠᎴ ᎢᏣᏄᏬᏍᏕᏍᏗ ᎤᏓᏙᎵᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᎾᏢᏉᏗ ᏓᏡᏗᏍᎪᎢ, ᎤᎾᏓᏙᎵᏍᏗᏍᎩᏂ ᎬᏩᎦᏗᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏓᎵᏍᎪᎸᏓᏁᎰᎢ.\nᏃᎴ ᎾᏍᎩᏯ ᏅᎪᎵᎬᎾ ᏥᏛᏦᏍᎪᎢ ᏅᏃᎯ ᏂᏥᏪᏎᎸ, ᏤᏍᏗ ᎭᏱᏍᎦᎢᎮᏍᏗ ᎡᎶᎯ, ᎯᏫᎾ ᎯᏍᎦᏰᎬᏍᏔ .\n“ᎠᎳᏑᎶᎢ. ᏚᏂᎳᏏᏕᎾ ᏚᏁᏍᏔᏁᎰ ᏱᏚᏂᎳᏑᏝ ᎠᏂᏴᏫᏯ.”\nᎠᎴ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏂᎦᏛ ᎣᏏᏳ ᏕᎤᎸᏫᏍᏓᏏ; ᎤᎾᏛᎪᏗᏱ ᏂᏕᎬᏁ ᏧᏂᎵᎡᎾ, ᏧᏅᎨᏫᏃ ᎤᏂᏬᏂᎯᏍᏗᏱ.\n“ᎪᎱᏍᏗᏍ ᎠᏓᏍᎩᎵ ᏰᎪ ᎨᏒ” ᎨᎵᏍᎬ ᏃᏊ.\nᎠᎴ ᎬᏂᏳᏉ ᎬᏩᎵᏃᎮᏔᏁ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎼᏏ ᎠᎴ ᎢᎳᏯᎨᏎᎢ,\nᏅᎩᏃ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎡᎺᏅ ᎤᎾᏛᏅᎩ ᎡᎳᏗ ᏚᎾᏓᏅᏅᎩ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎡᎯ.\nᎦᏲᏟ ᏚᏏᎳᏛᏅ ᏌᎳᏓ ᏚᎵᏛᏓᏁᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᏰᎵ ᎢᎦᏲᎦᏛᏁᏗ ᏥᏃᎬᏁᎸ ᏦᏠᎯᏍᏛᎢ; ᎥᏝ ᎠᏗᎾ ᏄᏍᏛ ᎪᏪᎸᎢ, ᎠᏓᏅᏙᏍᎩᏂ ᏓᏕᏲᎲᏍᎬᎢ; ᏄᏍᏛᏰᏃ ᎪᏪᎸ ᎠᏓᎯᎰᏉ, ᎠᏓᏅᏙᏍᎩᏂ ᎠᏓᏛᏂᏗᏍᎪᎢ.\nᏂᎦᏗᎹᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᏘᎦᎵᏍᏙᏓ ᏴᏫ ᏯᏕᎲᎦ ᎿᏉ ᎠᎦᏴᎵᎨ ᏱᎩ? ᏥᎪ ᏔᎵᏁ ᎤᏥᏏᏱ ᏫᏯᏴᎭ, ᏯᏕᎲᎦ?\nᎠᏓᎾᏩᏍᏗᏍᎨᎢ ᏌᎳᏓ ᎠᎾᏓᏤᎵ ᏃᎴ ᏰᎵ ᎠᏍᎪᎵ ᎤᎵᎥᏂᎴ ᎦᏂᏓᏛ ᎠᏣᏗ...”\n“ᎭᎴᏫᏍᏔ!”\nᎤᏨᏉᏕ ᏌᏌ ᎤᎵᏍᏕᎸᎲ ᏄᎵᏍᏔᏂᏙᎸ.\nᎭᎦᏛ ᎤᏃᎮᏗ ᎨᏎ ᏣᎵ.\nᎾᏍᎩ ᏳᏍᏗ ᎩᎶ ᎤᏓᏙᎵᏍᏗ ᎨᏎᏍᏗᎾᏍᎩᏯ ᎯᎠ ᎠᏲᎵ, ᎾᏍᎩ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎾᎿ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎠᏎᏃ ᎥᏝ ᎾᏍᎩᏯ ᏥᏄᏍᏕ ᎠᏍᎦᏅᏨᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏱᏄᏍᏕ ᎬᏩᎦᏘᏯ ᎠᏓᏁᏗ ᎨᏒᎢ. ᎢᏳᏍᏕ ᎬᏩᎦᏘᏯ ᎠᏓᏁᏗ ᎨᏒᎢ. ᎢᏳᏰᏃ ᎠᏏᏴᏫ ᎤᏍᎦᏅᏨ ᎤᏂᏣᏘ ᏧᏂᏲᎱᎯᏍᏔᏅᎯ ᏱᎩ; ᎤᏟᎯᏳ ᎢᎦᎢ ᎤᏂᏣᏘ ᎤᏣᏘ ᎤᏂᎷᏤᎸ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᏓᏁᏗ ᎨᏒ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏏᏴᏮ ᎠᏍᎦᏯ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ.\nᎠᎴ ᎠᏂᏏᏴᏫᎭ ᎨᏒ ᏧᏁᎬ ᏕᎨᏥᏅᏁᎸᎩ ᏗᏄᏬ; ᎠᎴ ᎨᏥᏃᏁᎸᎩ ᎠᏏ ᏞᎦ ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒ ᎬᏂ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏙᎸᎯ ᎠᎴ ᎾᏍᏉ ᎠᎾᎵᏅᏟ ᏄᏂᎪᎸᎾ ᏂᎨᎬᏁᎸ, ᎾᏍᎩ ᏕᎨᏥᎸ ᎾᏍᎩᏯ ᎤᏅᏒ ᏂᎨᎬᏁᎸᎢ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏤᏯᏔᎮᏍᏗ ᎠᎪᏙᏗ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ ᎤᎾᏤᎵᎦ.\nᎪᏪᎵᏰᏃ ᎯᎠ ᏂᎦᏪᎭ, ᎩᎶ ᎾᏍᎩ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᎤᏓᎵᎢ ᎢᎠᎨᎯᏙᎮᏍᏗ ᏧᏂᏏᏅᎯᏍᎩᏂᏃᏅ ᎢᎨᏎᏍᏗ, ᏅᏩᏓᎴᏃ ᎢᎠᏓᏰᎨᏍᏗ, ᎠᏓᏲᏁᎮᏍᏗ. ᎩᎶᏃ ᎠᏥᎨᎯᏙᎸᎯ ᎠᏓᏰᎨᏍᏗ ᎠᏓᏲᏁᎮᏍᏗ.\nᏱᏗᎦᏘᏯ ᎣᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏄᏛᏁᏍᏗ ᎦᎾᏄᎪᏥᎸ ᎦᎸᏉᏗ ᎤᏁᎳᏅᎯ ᎠᎴ ᎢᎩᏍᏕᎵᏍᎩ ᏥᏌ ᎦᎶᏁᏛ;\nᎢᎾ ᎢᎦᏘ ᎦᏄᎸ ᎣᏁ ᏩᎦ ᎤᏂᏴᏍᏗ ᎤᎾᏩᏛᎮᎢ ᎠᏴᏈᏛᏅ ᎪᏪᎵ ᏗᎦᏃᏣᏝᏍᎩ.\nᎠᎩᏲᏓᎩᎠ!” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎢᏳᏍᎩᏂ ᏂᏣᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎡᏥᏍᎦᏅᏤᎸᎢ, ᎥᏝ ᎾᏍᏉ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᏴᎨᏥᏙᎵᎩ ᎢᏥᏍᎦᏅᏨᎢ.\nᎨᏍᏗ ᎪᎯᏓ ᎩᏁᏓᏍᏗ ᏱᎩ ᎭᏂ.”\nᎾᏍᎩᏃ ᎯᎠ ᏥᏨᏲᏪᏁᎭ, ᎬᏂᏳᏉ, ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎥᏝ ᏱᎦᏥᎪᎥᏍᎦ.\nᎦᏙ ᏃᎴ ᏴᏫ ᏃᎴ ᏂᎦᏓ.\nᎤᏍᎦᏃᎳ ᎤᏓᎪᎵᏰᎡ ᏫᎵᎻ, ᎤᏍᎦᏃᎳ ᏭᎷᏤ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ.\nᎤᎧᏛ ᎢᏣ ᎤᏅᏤ Perry.\nᎠᏏᏉᏃ ᎤᏁᎷᎬᎩ ᎠᎴ ᏚᎾᏓᎡᎬᎩ ᏧᎾᏄᏬ ᎠᎴ ᎪᏍᏚ ᎤᎾᏕᏏᏙᎲᎩ;\nᎠᏍᎦᏯ ᏓᏤᎸ ᎾᏍᎩ ᎾᏧᏁᏍᎨᎮᎢ, ᎠᎴ ᎭᏫᏂ ᏧᏍᎪᏎᎢ, ᎠᎴ ᎦᎫᏍᏛᏗ ᏅᏲᎯ ᏧᏝᏁᎢ; ᎤᏃᎱᎦᏅᏃ ᎡᏉᏂ ᎾᎿ ᎠᏓᏁᎸ ᎠᏍᏓᏱᏳ ᎬᏂᎵᎯᎮᎢ, ᎠᎴ ᎥᏝ ᎬᏩᏖᎸᏗ ᏱᎨᏎᎢ; ᏅᏲᎯᏰᏃ ᎦᎧᎮᎠᏍᎦᏯ ᏓᏤᎸ ᎾᏍᎩ ᎾᏧᏁᏍᎨᎮᎢ, ᎠᎴ ᎭᏫᏂ ᏧᏍᎪᏎᎢ, ᎠᎴ ᎦᎫᏍᏛᏗ ᏅᏲᎯ ᏧᏝᏁᎢ; ᎤᏃᎱᎦᏅᏃ ᎡᏉᏂ ᎾᎿ ᎠᏓᏁᎸ ᎠᏍᏓᏱᏳ ᎬᏂᎵᎯᎮᎢ, ᎠᎴ ᎥᏝ ᎬᏩᏖᎸᏗ ᏱᎨᏎᎢ; ᏅᏲᎯᏰᏃ ᎦᎧᎮᎢ.\nᎡᏆ ᎠᏣᏗ ᏭᎷᏤᎴᎢ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎠᏯ ᎢᏳᏍᏗ ᏤᏣᎧᏃᏗ.\nᎦᏰᎵᏍᏗ ᏳᎾᏛᏅᎢᏍᏗ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏄᏍᏗᏓᏅ ᏙᏰ, ᏃᎴ ᎦᎶᏇ ᏃᎴ ᏗᏍᏔᏲᏍᏙᏗ ᏳᎾᏛᏅᎢᏍᏗ, ᏰᎵᏉ ᏧᎾᏓᏟᏴᏗ ᏯᏁᎸᏔᏅ ᏗᎦᏅᎪᏫᏍᏗ, ᎠᏓᏅᏖᏗ ᎢᎬ ᎾᏕᏅ ᎠᏁᎲ ᎦᏚᏏ, ᎠᏂᎦᏲᏟ ᎠᏁᎭ ᎠᏂᏳᏩᏁᎦ, ᏫᎦᎷᎯᏍᏗ ᏱᎨᏒᎾ ᎤᎾᏗᏍᎦᎶᏗ ᏃᎴ ᏫᎬᏴᏍᏗ ᏱᎨᏒᎾ, ᎠᎦᏗᏛ ᎠᏛᏍᎩ ᎤᎾᏗᏍᎦᎶᏗ.\nᎤᏘᎷᎾ, ᎾᎥᏂ ᎯᎦᏙᎨ ᎰᎻ ᏔᎷᎩᏍᎩ ᎪᏱᏂᏓᏍᏗ ᎪᏱᏁ ᎤᎦᏃᏩ ᎠᎵᏍᏓᏴᏗ ᎦᎶᏛ,  ᎣᎯᏍᏙᏗ ᎤᏓᏅᏔᏕᎢ.\nᎨᏍᏗ ᎯᎸᎯᏳ ᏱᎦᎷᎪᎢ ᎾᏍᎩᏯ ᎤᎾᎵᎢ ᏃᎴ ᏍᎩᏲᏍᏓ ᏗᎪᏪᎵᏍᎩ.\nᏓᏓᎿᏩᏍᏛ ᎢᏧᎳᎭ ᎦᎶᏁᏛ ᏙᎩᎾᏛᏅ; ᎠᏎᏃ ᎠᏴ ᎬᏃᏛ ᎢᎩ, ᎥᏝᏍᎩᏂᏃᏅ ᎿᏉ ᎠᏴ ᏱᎩ, ᎦᎶᏁᏛᏍᎩᏂ ᎬᏃᏛ ᎠᎩᏯᎠ; ᏄᏍᏛᏃ ᎿᏉ ᎦᎴᏂᏙᎲ ᎠᏂ ᎤᏇᏓᎵ ᎨᎥᎢ, ᎦᎴᏂᏙᎭ ᏥᏯᎵᏍᎦᏍᏙᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ; ᎾᏍᎩ ᎠᎩᎨᏳᎯᏳ ᏥᎨᏒᎩ, ᎠᎴ ᎤᏩᏒ ᏥᏚᏓᏲᏎ ᎠᏴ ᎠᎩᏍᏕᎵᏍᎬᎢ.\nᎠᏆᏚᎵᏰᏃ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏂᎦᎥ ᏥᎩᎵᏲᎬ ᎦᏟᏂᎬᏁᎲ ᏂᎯ ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎴᎣᏗᏏᏯ ᎠᏁᎯ, ᎠᎴ ᎾᏂᎥᏉ ᎤᏂᎪᎲᎯ ᏂᎨᏒᎾ ᎠᏆᎧᏛ ᎠᏂ ᎤᏇᏓᎵ ᎨᏒᎢ;\nᎿᏉᏃ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎤᎾᏓᏅᏒᎩ, ᏔᎵᏁ ᏙᏧᏁᏅᏒ ᏭᏂᎶᏒᎩ.\nᎠᏦᎭᏴ ᎾᎥᏂ ᎤᏬᏢ ᎠᎵᏥᏙᎲᏍᎩ, ᎧᏁᏌᎢ ᎤᏏᏩ ᎠᏓᏴᏍᏔᎩᏍᎩ ᏗᏥᏍᏔᏅ ᏗᎦᎶᏔᏅ ᎤᏌᎲ ᎤᎦᏎᏂ.\nᏂᎦᎥ ᎠᏓᏂᏆᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎧᎾᎸᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎿᎸᎯ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎢᏴᏛ ᎢᎬᏁᏗ ᎨᏎᏍᏗ ᎢᏤᎲᎢ, ᎤᎵᏠᏯᏍᏕᏍᏗ ᏂᎦᎥ ᎤᏐᏅ ᎨᏒᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᏙᏓᏦᎵᏍᏔᏂ ᏄᏍᏛ ᎠᎾᏓᏛᏍᎬᎢ.\n”ᎠᎳᏂ, ᎪᎱᏍᏗ ᏂᎦᎵᏍᏓ,” ᎤᏛᏁ, ᏎᎦᎳᎯ.\nᏍᎩᏴ ᎤᏴᎵᎴ ᎤᏙ ᎡᎳᏆᏗ.\nᎤᏍᎦᏃᎵ ᎤᏩᏏᏃᎴ ᏓᏆᎴᎳ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ, ᏣᏄᏏ ᏃᎴ ᎰᎻ ᎤᎵᏗᏨ ᎠᎾᎢᏎᎢ.\nᏧᏒᏓᎷᎩᏃ ᏓᏟᎶᏍᏗᏍᎨ ᏗᎧᏁᎢᏍᏗ ᎠᎴ ᎦᎵᏦᏕ ᎤᎧᎵᎡ ᏧᏬᏪᎳᏅ.\nᏐᏉᎯᎭ ᎠᎾᎩᏠᏫᏍᎨ ᏓᏆᎴᎳ ᎠᏌᏅᏗ ᏃᎴ ᏚᏂᏍᏚᎩᏎ ᎧᏁᏌᎢ ᏚᎾᏕᏅ.\nᏈᏓᏃ ᎤᏬᎴ ᎤᏜᏅᏛᎢ, ᎤᎷᏤᎴᏃ ᎠᏛ ᎯᎠ ᏄᏪᏎᎢ; ᏂᎯ ᎾᏍᏉ ᏍᏕᏙᎲᎩ ᏥᏌ ᎨᎵᎵ ᎡᎯ.\nᎯᎠ ᎾᏍᎩ ᏓᎿᏩ ᏅᏛᏅᏁᎵ ᎤᏃᏕᎾ ᎠᎩᎾ, ᎠᎴ ᎤᏃᏕᎾ ᎠᎩᎾ ᏙᏛᏎᎪᎩᏏ ᎾᏍᎩ; ᎾᏍᎩᏰᏃ ᎤᏂᎬᏫᏳᎯ ᎠᏁᎲ ᎤᎬᏫᏳᎯ; ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏁᎲ ᎾᏍᎩ ᏄᎬᏫᏳᏌᏕᎩ; ᎠᎴ ᎾᏍᎩ ᎬᏩᏜᏩᏍᏗᏕᎩ ᏥᎩ ᎨᏥᏯᏅᏛ, ᎠᎴ ᎨᎦᏑᏰᏛ, ᎠᎴ ᏄᎾᏓᎵᏓᏍᏛᎾ.\nᎠᏎᏃ ᎤᏂᏣᏘ ᎤᏂᎸᏉᏔᏁᎢ.\nᏏᎻᏯᏂᏃ ᎣᏍᏛ ᏚᏁᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎺᎵ ᎠᏲᎵ ᎤᏥ, ᎬᏂᏳᏉ ᎯᎠ ᎾᏍᎩ ᎠᏲᎵ ᎠᏥᎧᏅ ᎾᏍᎩ ᎢᏏᎵ ᎠᏁᎯ ᎤᏂᏣᏘ ᏧᏂᏅᎢᏍᏗᏱ ᎠᎴ ᏧᎾᎴᎯᏐᏙᏗᏱ; ᎠᎴ ᎤᏰᎸᏛ ᎤᎾᏡᏙᏗ ᎠᏂᏬᏂᏍᎬᎢ.\nᎾᏍᎩ Ꮎ ᏦᎯᏳᏒ ᏤᎳᏗᏍᏗᏍᎬᎢ ᎾᏍᎩ ᏱᏂᎬᏂᏒ ᎬᏂᎨᏒ ᏱᏂᎦᎵᏍᏓ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎢᏥᏯᎥᎢ ᏥᏌ ᎦᎶᏁᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ.\nᏍᎦᏥ ᏫᏍᎩ ᎤᏓᏅᏖᏗ ᎨᏎ ᎤᎵᏏᏂᏕᏅ ᎠᏆᏛᏅ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎪᎯ ᎢᎦ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎦᎷᎩ ᎠᏂ ᎠᏓᏁᎸᎢ, ᏅᏗᎦᎵᏍᏙᏗ ᎾᏍᎩ ᎾᏍᏉ ᎡᏆᎭᎻ ᎤᏪᏥ ᎨᏒᎢ.\nᏥᎾ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᎠᎴ ᎠᏉᎳ ᎭᏟᏂᎬᏁᎸᎭ ᎩᏍᏕᎸᏗᏱ ᎠᎾᎢᏒᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏄᏂᏂᎬᏎᎲᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᎴ, ᎾᏍᏉ [ᎯᎠ ᏂᎦᏪᎭ] ᏂᎯ, ᏣᎬᏫᏳᎯ, ᏗᏓᎴᏂᏍᎬ ᎡᎶᎯ ᎦᎫᏍᏓᎥ ᏣᏁᎢ; ᎠᎴ ᎦᎸᎶᎢ ᏗᏦᏰᏂ ᏦᏢᏔᏁᎢ;\n”ᏄᏓᎴ ᏅᎦᎵᏍᏓ!” ᎤᎵᏰᏔᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎤᏟᏍᏓ ᎤᎾᎩᎶᏫᏍᏗ ᎠᏂᏲᏍᎩ ᎤᏃᏒᎭ ᎠᎬᏱᏣ.\nᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎤᏄᏬᏍᏕᏍᏗ ᏓᎩᎵᏲᎢᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᏂᎬᏩᎦᏔᎲᎾ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏄᏃᎯᏳᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ.\nᎠᎾᎵᏅᏟᏍᎩᏂ ᏓᎾᏓᏰᎢᎵᏙᎭ ᎤᏅᏒ, ᎠᎴ ᎾᏍᎩ ᏚᏃᎸ ᏄᏃᎯᏳᏒᎾ.\nᎦᎵᎡᎵᎬ ᏂᏚᏓᎴᏨ ᏕᎦᏚᎲ ᏬᎩᎶᎯᏍᏗ, ᏯᏆᎴᏫᏍᏔᎾ ᏑᏒᎯᏓ ᎠᎴ ᏐᏉ ᎢᏳᏪᏅᏍᏗ ᏯᏆᏣᏪᏐᎸᏍᏔᎾ ᏃᎴ ᏯᏆᎵᏍᏔᏴᎾ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎠᏜ ᎦᏩᏒᎩ ᎠᎪᎲᏍᏙᏗᏱ ᎤᎩᏒᎩ, ᎠᎴ ᎠᏥᎸ ᎤᎧᎵ-ᎢᏍᏔᏅᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏞᏛ, ᎠᎴ ᎡᎶᎯ ᏭᏗᏅᏒᎩ; ᏚᏃᏴᎳᏒᎩᏃ, ᎠᎴ ᎤᏴᏓᏆᎶᎥᎩ, ᎠᎴ ᎠᎾᎦᎵᏍᎬᎩ, ᎠᎴ ᎡᎶᎯ ᎤᎵᏖᎸᏅᎩ.\nᎤᏂᏣᏘᏃ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎠᎴ ᎾᎿ ᏚᏅᏩᏅᎩ.\nᎤᏂᏣᏘᏃ ᏔᎵᏁ ᏚᏂᎳᏫᏦᎴᎢ, ᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᏂᎤᏟᏍᏕ ᎦᏚ ᎤᏂᎩᏍᏗᏱ.\nᎢᎬᏱᏗᏢᏃ ᏙᏓᎨᏥᎳᏫᏗ ᏂᎦᏗᏳ ᏄᎾᏓᎴᏒ ᏴᏫ, ᎠᎴ ᏙᏛᎦᎴᏅᏔᏂ ᎾᏍᎩᏯ ᎠᏫ-ᏗᎦᏘᏯ ᏥᏓᎦᎴᏅᏗᏍᎪᏧᏤᎵ ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ.\nᎠᎹᏱᏃ ᏧᎾᏓᏅᏒ ᏧᏂᎿᎷᏒ, ᎤᎬᏫᏳᎯ ᎤᏓᏅᏙ ᎤᏘᎿᏫᏛᎮ ᏈᎵᎩ, ᎠᏳᎾᎦᏃ Ᏺ ᎿᏉ ᎣᏂ ᏳᎪᎮᎢ, ᎤᏩᏒᏰᏃ ᏩᎦᏛᎢ ᏭᎶᏎ ᎠᎵᎮᎵᎨᎢ.\nᏥᏌᏃ ᏚᎴᎯᏌᏅ ᏑᎾᎴᎢᏳ ᎢᎬᏱᏱ ᎢᎦ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎢᎬᏱ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎾᏍᎩ ᎦᎵᏉᎩ ᎠᏂᏍᎩᎾ ᏥᏚᏄᎪᏫᏎᎴᎢ.\n(ᏂᎦᏛᏰᏃ ᎬᏩᎪᎮᎢ, ᎠᎴ ᎤᎾᏕᏯᏔᏁᎴᎢ.) ᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎵᏃᎮᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᎦᎵᏍᏗᏉ ᎢᏣᏓᏅᏓᏓ; ᎠᏴᏉ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ.\nᏥᏍᏆ?\nᏆᎴᏗ ᎯᎠ ᏄᏪᏒᎩ; ᏥᎪ ᎠᏴ ᏥᏧᏏ? ᏗᏣᏤᎵᎦ ᏴᏫ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏕᎨᏣᏲᏒ ᎦᏙ ᏣᏛᏁᎸ.\nᏔᎵᏁᏃ ᎯᎠ ᏂᎦᏪᎭ, ᎢᏣᎵᎮᎵᎩ ᏗᏣᏓᎴᏅᏛ ᏴᏫ, ᏗᏣᎵᎪᎲᏏ ᏧᏤᎵ ᏴᏫ.\nᎢᏥᏁᎫ, ᏝᏍᎪ ᎾᏍᎩ ᎦᏚᎢᏢ ᎡᎯ ᎤᏬᏢᏅᎯ ᎾᏍᏉ ᎭᏫᏂᏗᏢ ᎡᎯ ᏳᏬᏢᏁᎢ?\nᏁᎵ!” ᎤᎴᏅᎮ.\nᎿᏉᏃ ᏰᎵ ᎤᎾᎵᏍᏓᏴᏅ, ᎤᎾᏓᏌᎧᎲᏍᏔᏅᎩ ᏥᏳ, ᎤᏣᎴᏍᏗ ᎠᎺᏉᎯ ᏭᎾᏗᏅᏒᎩ.\nᎠᏗᏙᏗ ᎬᏘ ᎤᏑᏰᎲ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏅᎭᏂᏍᏛ Perry, ᎡᎳᏗ ᏓᏳᏓᎴᏅ ᏭᎳᎩᏒ, ᎤᎪᏅ ᎪᏍᏔ ᎢᎬᏂᎨ.\nᎦᏙᎨ ᎤᏍᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᏒ ᎯᎠ ᏄᏪᏎᎶᎢ, ᏥᎦᏘᏏᏗᏢ ᏦᎴᏍᏗ ᎬᏂ ᎨᏤᏍᎦᎩ ᎦᏍᎩᎶ ᏗᏣᎳᏏᏗᏱ ᏂᎦᏥᏴᏁᎸᎭ?\nᎤᎿᏛ ᎢᎾ ᎤᏛᏒ ᎨᏒ ᎦᏅᎦᏟ ᏭᎶᏎ ᏩᎭᏯ. \nᎿᏉᏃ ᎠᏂᏍᎩᎾ ᎬᏩᏄᎪᏤ ᎠᏍᎦᏯ, ᎠᎴ ᏏᏆ ᏫᎬᏩᏂᏴᎴᎢ; ᏑᎾᏓᏡᎩᏃ ᎠᏯᏄᎵᏳ ᎤᎾᎵᏎ ᏭᏂᎦᏐᎠᏎ ᎦᏁᏡᎩ ᎨᏒ ᎥᏓᎸ ᏭᏂᎷᏤ ᎠᎴ ᏚᏂᎬᏤᎢ.\n ᏃᎴᏍᏉ, ᎨᏍᏗ ᏱᏗᏥᏍᏆᏂᎪᏏ ᎭᏍᏕᏓᎵᏴᏒ ᏣᏓᏅᏖᏍᎬᎢ ᎰᎻ.\nᎠᎴ ᏥᏳᎯ ᎤᎾᏣᏅᎩ ᎨᏆᏂ ᎢᏗᏢ ᏫᏚᏂᏐᎯᏍᏔᏅᎩ. ᎠᎴ ᎿᏉ ᎤᎵᏏᎬᎩ, ᎠᎴ ᏥᏌ ᎥᏝ ᏳᏂᎷᏤᎮᎠᎴ ᏥᏳᎯ ᎤᎾᏣᏅᎩ ᎨᏆᏂ ᎢᏗᏢ ᏫᏚᏂᏐᎯᏍᏔᏅᎩ. ᎠᎴ ᎿᏉ ᎤᎵᏏᎬᎩ, ᎠᎴ ᏥᏌ ᎥᏝ ᏳᏂᎷᏤᎮᎢ.\nᎿᏉ ᎾᏍᎩ ᎤᏁᏎᎢ, ᎠᎴ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ, ᎯᎠ ᏄᏪᏎᎢ;\nᏂᎦᏛᏃ ᎦᏚᎲ ᎠᏁᎯ ᎤᎾᏓᏟᏌᎮ ᎦᎶᎯᏍᏗᏱ.\nᎣᏍᏓ ᏥᏯᏙᎴᏇᎸ Crockett ᎢᏳᏓᎵᎭ ᎠᏆᏗᏔᏍᏗ ᎠᎹ ᏫᏥᏂ ᏓᏳᏓᎴᏅ.\nᏚᏂᏯᏪᏣ ᎠᎦᏍᎩ ᎠᏂᏙᎾᎥ ᎤᏂᏃᏕᎾ, ᎤᏂᏴᏍᏗ ᎱᏁᏅᏎ ᎤᏍᎦᏃᎵ.\n”ᏥᏂᏓᏛ ᎯᎧᏁᎦ, ᎭᏩᏧ ᏧᏍᏆᏴᏍᏗ?” \nᏥᏳ ᏃᎴ ᏧᏩᎩ ᏧᏆᎶᎦ ᏃᎴ ᏘᎵ ᎦᎳᎨᏴ ᎦᏙ, ᎤᏒᎯ ᏚᏩᏂᎦᏢ ᏫᏚᏓᏴᎳᏛ ᎨᏴ ᏍᎪᏁ ᏅᏲ.\n”ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ “ᎢᏳᏍᏗᏉ ᎤᏃᎯᏳᏗ?”\nᎠᎫᏤᎵᎪ ᎠᏚᏓᎸᏙᏗ ᎩᎦ ᎢᏳᏟᏂᎩᏓ.\nᎫᎾᏓᎴᎩ ᎤᏑᏯᎩᏒ, ᎤᏑᏯᎩᏎ ᎤᎩᏓᏟᏅᏯ - ᎤᏩᏌ ᏄᏪᏒ - ᎡᎳᏗ ᏭᏂᎶᏎ ᏭᏂᎷᎯᏍᏗ ᎠᏤᎯ ᏣᎳᎩᏱ ᎠᏰᎵ, ᎡᏍᎦ ᎤᏂᏰᎸᏁ ᎠᎼ ᏭᏂᎶᎯᏍᏗ, ᏰᎵᏉ ᎠᎭᎾᏬ ᎠᏰᏍᏓ ᎦᏍᎩᎸ ᏯᎵᏍᏔᏴᎾ, ᎠᎴ ᎦᏆᎵ ᎢᏳᏍᏗ ᎠᏔᎴᎦᏒ ᏗᏗᎩᏍᏗ, ᎤᏬᏗᎨ ᎠᎹ ᎦᎶᏍᎬ ᎦᎸᎳᏗᏣ.\nᎢᎳᏯ ᏴᏫᏉ ᎨᏒᎩ ᎠᏴ ᏂᎦᎵᏍᏓᏁᎲ ᎾᏍᎩᏯ ᎢᎬᏩᎵᏍᏓᏁᏗ ᎨᏒᎩ; ᎠᎴ ᎤᎵᏂᎩᏛ ᎤᏓᏅᏛᎩ ᎤᏓᏙᎵᏍᏔᏅᎩ ᎤᏔᏲᎸᎩ ᎤᎦᏃᏗᏱ ᏂᎨᏒᎾ; ᎰᏩᏃ ᏄᏚᎾᏅᎾ ᎨᏒᎩ ᎦᏙᎯ ᏦᎢ ᏧᏕᏘᏴᏛ ᏑᏓᎵᏃ ᎢᏯᏅᏙ ᎢᎪᎯᏛ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᎠᏍᎩᎾ ᏯᎩᏯᎠ, ᏥᎸᏉᏗᏉᏍᎩᏂ ᎡᏙᏓ; ᏂᎯᏃ ᎠᏴ ᎨᏍᎩᏐᏢᎢᏍᏗᎭ.\nᎤᏢᏂᏕᎾ ᏥᎨᏐ ᎤᏟᏃᎮᏔᏁᎢ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎯᎠ ᏂᎬᏅ ᎪᏪᎵᎯ--ᎬᏂᏳᏉ ᏥᎲᎦ ᏌᏯᏂ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏅᏯ ᎠᏑᏰᏛ, ᎦᎸᏉᏗ, ᎠᎴ ᎩᎶ ᎾᏍᎩ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᎦᏁᎳᏅᎯᏰᏃ ᎠᏲᎩ ᎾᎬᏁᎴᎢ, ᎥᏝ ᎣᏏᏳ ᎤᏰᎸᏒ ᎢᏳᏍᏗ, ᎣᏏᏳᏍᎩᏂ ᎤᏰᎸᏅ ᎢᏳᏍᏗ ᎾᏍᎩ Ꮎ ᎾᏍᎩ ᎢᏳᏩᏁᎸᎯ, ᎤᏚᎩ ᎤᏮᏗᏱ ᎤᏰᎸᏅ,\nᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏦᎯᏳᎲᎦ, ᎢᏨᏒ ᏕᏣᏓᎸᏉᏗᏍᎬ ᏥᏕᏣᏓᏂᎸᎦ, ᏂᏥᏲᎲᎾᏃ ᏥᎩ ᎥᏓᏗᎸᏉᏙᏗ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏩᏒᎯᏳ ᏅᏓᏳᎵᏍᎪᎸᏙᏗ ᏥᎩ?\nᎾᏍᎩ ᏥᎩᏲᎱᎯᏎᎴᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏱᏗᎵᎭ ᎠᎴ ᏂᏗᎵᎲᎾ ᏱᎩ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏫᎦᏕᏗᏱ ᎢᏳᎵᏍᏙᏗᏱ.\nᏱᏂᎪᎯᎸᎾ ᏓᎦᎵᏬᏥ.\n“ᎭᏩ,” ᎤᎴᏅᎮ ᏲᎾ ᎤᏤᏍᏙ, ᏦᎩᏃᎯᏎᎸ ᎠᎾᏓᏤᎵ ᏚᏏᎳᏛ ᎬᏗ ᏥᎦᏂᏱᏍᎨ ᎠᏣᏗ.\nᎣᎵᏩᏲᏃ ᎤᏌᎯᎸ ᎤᏬᎸᎢ, ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏓᏁᎸ ᏧᏳᎪᏗ, ᏈᏓ, ᎠᎴ ᏥᎻ, ᎠᎴ ᏣᏂ, ᎠᎴ ᎡᏂᏗ, ᎤᏅᏒ ᎨᏒ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ,\nᎠᎴ ᏦᏓᏂ ᏍᎪᎾ ᏭᎶᏒᎩ, ᎾᎿ ᏣᏂ ᎢᎬᏱᏱ ᏚᏓᏬᎥᎢ. ᎾᎿᏃ ᎤᏪᏙᎸᎩ.\nᎠᎴᏬ ᎢᏓᎵᏅᏟ, ᎬᏂᎨᏒ ᏂᏨᏴᏁᎭ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩ ᏥᏨᏯᎵᏥᏙᏁᎸᎩ, ᎠᎴ ᎾᏍᎩ ᎾᏍᏉ ᏥᏕᏣᏓᏂᎸᏨ, ᎠᎴ ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᏥᏕᏥᏂᏴᎭ;\nᏂᎯᏃ ᎾᏍᏉ ᎢᏥᏃᎮᏍᎩ ᎨᏎᏍᏗ, ᎢᏧᎳᎭᏰᏃ ᎢᏕᏓ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ.\nᎢᏳᏍᎩᏂ ᏱᏣᏕᏒᎾ ᎥᏝ ᏱᎦᎯᏍᎦᏅᎦ; ᎢᏳ ᎠᎴ ᎠᏛ ᏱᏚᏤᏅ ᎥᏝ ᏱᎬᏍᎦᏅᎦ. ᎠᏎᏃ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏇᏓᎵ ᎨᏒᎢ. ᎠᏎᏃ ᎤᏁᎳᎩᏉ ᎢᏨᏰᎵᏎᎭ.\nᏗᎦᏙᎵ ᏓᏌᏬᎢᎮ.\nᎠᏁᎸᏗᏍᎨᎢ ᏫᎵᎻ ᎤᏓᏅᏖᏗ ᏱᎨᏒᎾ ᎢᏳᏍᏗ ᏄᏪᏒ ᏥᏍᏕᏥ.\nᎤᏛᏅᎢᏍᏖ ᎠᏰᎳᏍᏘ ᏃᎴ ᎦᎷᏯᏍᏘ, ᎾᏍᎩ ᏳᎷᏤᎸ ᎤᎵᏏᎩ ᎤᏓᏴᎳᏘ, ᏱᏚᏓᏲᏌ ᎬᏅ.\n“ᏃᏗ ᎠᏆᏛᏅᎢᏍᏔᏃᏂᏗ,” ᎤᏛᏁ ᎤᏥ\nᎠᎾᎦᎵᏍᎩᏰᏃ ᏗᎧᎸᎬ ᏨᏗᎦᎾᏄᎪᎪᎢ, ᏭᏕᎵᎬᏃ ᎢᏴᏛ ᏥᏫᏗᎦᎸᏌᏓᏗᏍᎪᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᏴᏫ ᎤᏪᏥ ᎦᎷᏥᎸᎭ.\nᏂᎦᏓ ᎠᏂᏴᏫᏯᎭ? ᎤᏛᏅ ᏗᎪᏪᎵᏍᎩ.\nᎤᏔᎷᎩᏍᎩ ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᏄᎵᏍᏔᏁᎮᎢ.\nᎠᏌᎻᏗ ᏭᎾᏌᎾᎩᏒ ᏩᏏᏓᏂ ᎤᎾᏓᏍᎬ, ᎠᏂᎨᏴ ᏧᎾᏓᏍᎬ ᎢᏣ.\nᎢᎬᏱᏱ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᎠᎴ ᎤᎨᎲ ᏔᏅᏒᎩ ᎠᏥᎸ ᎠᎴ ᎤᏁᏍᏓᎳ ᎩᎬ ᎤᏓᏑᏱ ᎨᏒᎩ, ᎠᎴ ᎡᎶᎯ ᏫᏕᎨᎦᏗᏅᏒᎩ, ᎠᎴ ᏕᏡᎬ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᎪᏅᎩ, ᎠᎴ ᏂᎦᏛ ᎢᏤ ᎧᏁᏍᎦ ᎤᎪᏅᎩ.\nᎿᏉᏃ ᎤᏨᏏᏗᏎᎢ, ᎠᎴ ᏓᏆᎴᎷᎯ ᎤᏣᎡᎢ, ᎠᎪᎵᏰᏍᎨ ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ.\nᎠᏯᏖᏅ ᎦᏙ ᏱᏭᏪᏙᎳ ᏲᎾ, ᏧᏗᎦᎶᎣᏏᏐ ᎡᎶ ᏄᎵᏍᏔᏁᎮ, ᎨᏍᏗᏰᏃ ᎪᎰᏍᏗ ᎫᏩᎴᏩᏍᏙᏙᏗ ᏱᎩ, ᎤᏏᏩᏉ.\n”ᎠᎬᏱ ᎨᏒ, ᎨᏍᏗ ᏫᎬᎩᏴᏍᏗ ᏱᎩ ᏣᏴᏍᏗ, ᎨᏍᏗ ᏰᎵ ᎢᏯᏆᏕᏘᏴᏓ ᏱᎩ ᏩᏆᏓᎾᏫᏛᏗ ᎠᏦᏴ.\nᏥᎻᏃ ᎠᎴ ᏣᏂ, ᏤᏈᏗ ᏧᏪᏥ ᎬᏩᎷᏤᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᏍᎩᎾᏚᎵᎭ ᎢᏍᎩᎾᏛᏁᏗᏱ ᏄᏍᏛ ᎢᏍᏛᏔᏲᏎᏗ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏄᏂᏪᏒᎢ ᎣᏏᏳ ᎤᏂᏰᎸᏁ ᏂᎦᏛ ᎤᏂᏣᏘ ᎨᏒᎢ; ᎠᎴ ᎤᎾᏑᏰᏎ ᏍᏗᏫ, ᎠᏍᎦᏯ ᎤᎧᎵᏨᎯ ᎤᏬᎯᏳᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᎴ ᏈᎵᎩ ᎠᎴ ᏉᎪᎳ ᎠᎴ ᎾᎨᎾ ᎠᎴ ᏔᎹᏂ ᎠᎴ ᏆᎻᎾ ᎠᎴ ᏂᎩ ᎥᏘᎣᎩ ᎡᎯ ᎠᏂᏧᏏ ᏧᎵᎪᏁᎸᎯ;\nᏃᏉᏗ ᏚᏟᎷᏆᏗᏅᏎ.\nᎤᏁᏒᏃ ᎪᏪᎵ, ᎾᏍᎩ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎠᎴ ᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎡᎳᏗ ᏓᎾᏓᏅᏅᎩ ᎠᎦᏔᎲ ᎤᏃᏕᎾ ᎠᎩᎾ, ᏗᏂᏁᎯᎭ ᎨᏒᎩ ᏗᎧᏃᎩᏍᏙᏗ, ᎠᎴ ᏗᏖᎵᏙ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᏗᎧᎵᎢ ᎨᏒᎩ ᎠᏜ ᎦᏩᏒᎩ, ᎾᏍᎩ ᎤᎾᏓᏅᏘ ᎠᎾᏓᏙᎵᏍᏗᏍᎬ ᏥᎩ.\nᎤᎾᏓᏙᎵᏍᏔᏁᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏂᎯ ᏣᎬᏫᏳᎯ, ᏂᎦᏛ ᏧᏂᎾᏫ ᏘᎦᏔᎯ, ᎬᏂᎨᏒ ᏅᎦ ᎾᏍᎩ ᎯᎠ ᎠᏂᏔᎵ ᎨᏒ ᎾᏍᎩ ᎯᏯᏑᏰᏒᎢ,\nᎾᏍᎩᏃ ᎢᏓᎵᏅᏟ ᎥᏝ ᎾᏂᎦᏔᎲᎾᏉ ᎨᏎᏍᏗ ᏱᏨᏰᎵᏎᎭ, ᎾᏍᎩ ᎤᏣᏘ ᎢᏳᏩᎫᏗ ᏓᏇᎪᏔᏅ ᏫᏨᎷᏤᏗᏱ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᎦᏔᏔᏅᎯ ᏂᎯ ᎾᏍᏉ ᎢᏤᎲ ᎠᎩᎪᏩᏛᏗᏱ ᎠᎩᏰᎸᏒᎩ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎠᏂᏐᎢ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ; ᎠᏎᏃ ᎪᎯ ᎢᏯᏍᏗ ᎠᏆᏓᏄᎴᎭ.\nᎾᏍᎩ ᏤᏣᏓᏂᎸᎢᏍᏗᏱ ᎤᎬᏫᏳᎯ ᎨᏒ ᏅᏓᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏥᏚᏳᎪᏗ ᎢᏳᎾᏛᏁᏗᏱ ᎤᎾᏓᏅᏘ, ᎠᎴ ᎾᏍᎩ ᎡᏥᏍᏕᎸᏗᏱ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᎡᏥᏍᏕᎸᏗᏱ ᎤᏚᎵᏍᎬᎢ; ᎾᏍᎩᏰᏃ ᎤᏂᏣᏘ ᏧᏍᏕᎸᏛ, ᎠᎴ ᎠᏴ ᎾᏍᏉ ᎠᎩᏍᏕᎸᏛ.\nᎾᏍᎩᏃ ᎢᏳᏃ ᎠᏴ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎭ, ᎥᏝ ᎠᏴ ᎿᏉ ᎾᏍᎩ ᏱᏂᎦᎦᏛᏁᎭ, ᎠᏍᎦᏂᏍᎩᏂ ᎾᏍᎩ ᏣᎩᏯᎠ.\nᏯᏂᏍᏆᏂᎪᎳ ᏧᎧᎭᏲᏛ ᏩᏁᎢ ᏗᏍᏔᎷᏴᏓ ᏍᎩᎾᎾ ᏴᏫ.\nᎾᏎᏫᏂᏴ ᎤᏣᏔᏅᎯ ᎠᎦᏙᏌᏂᏳ ᎨᏒ ᎠᎴ ᎠᎦᏔᎾᎢᏳ ᎨᏒ ᎤᏁᎳᏅᎯ! ᎾᎦᎥᏉ ᎬᎪᎵᏰᏗ ᏂᎨᏒᎾ ᏄᏍᏛ ᏕᎫᎪᏗᏍᎬᎢ, ᎠᎴ ᎤᏪᏓᏍᏗᏱ ᎨᏒ ᎦᎪᎷᏩᏛᏗ ᏂᎨᏒᎾ!\nᎠᏎᏃ ᎾᏍᎩ ᎯᎠ ᏥᏂᏥᏪᎭ ᎠᎵᏍᎪᎸᏔᏅᎯᏉ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ, ᎥᏝᏃ ᎠᏎ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᎤᎵᏁᏨᎯ ᏱᎩ.\nᎠᎴ ᎾᎿ ᏥᏌ [ᎡᎲᎢ] ᎾᏍᎩ ᎠᏰᎵ ᎠᎴᎲᏍᎩ ᎢᏤ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᎾᎿ ᎩᎬ ᎠᏍᏚᏢᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏟ ᎢᏲᏍᏛ ᎠᏔᏲᎯᎯ ᏥᎩ ᎡᏍᎦᏉ ᎡᏈᎵ [ᎤᎩᎬ.]\nᎩᎳᏋ ᏛᎾᏦᎥᏔᏂ ᏏᏆ ᏧᏄᎪᏙᏗ ᎠᎬᏱᏣ. ᎭᎾᎾ ᎤᎵᏍᎨᏓ ᎠᏓᏔᎶᎯᏍᏗ ᏂᏛᏅᏁᎵ.\nᎠᏎᏃ ᏥᏌ ᎡᎳᏪᏱᏉ ᎨᏎᎢ. ᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎢᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎬᎳᏲᏏ ᎤᏁᎳᏅᎯ ᎬᏂᏛ ᎯᏁᎢᏍᏙᏗᏱ, ᏍᎩᏃᎲᏏ, ᏥᎪ ᏂᎯ ᎦᎶᏁᏛ ᎤᏁᎳᏅᎯ ᎤᏪᏥ?\nᎠᏂᏍᏚᎩᏒ ᎧᏁᏌᎢ ᏃᎴ ᎠᎾᏁᎸᏔᏅ ᎨᏣᎸᏗ ᎧᏁᏌᎢ, ᏕᎭᏓᏟᏴᎲ! \nᎿᏉᏃ ᏓᎻ, ᏗᏗᎹ ᏧᏙᎢᏛ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎤᎾᎵᎪᎯ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ, ᎾᏍᏉ ᎠᏴ ᎢᏕᎾ, ᎠᏲᎱᏒᎭ ᎢᎦᏠᏯᏍᏔᏅᎭ.\nᏠᎨᏏᏃ ᎾᏍᎩ ᎡᎳᏂᎬᎢ; ᎣᏍᏛ ᎤᎦᏔ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᏁᎯ; ᎤᏲᏃ ᏧᎵᏰᏁ ᎾᏍᎩ ᎤᏁᎫᏥᏛ ᏧᏪᏥ;\nᎤᏁᎳᏅᎯᏍᎪ ᎠᏂᏧᏏᏉ ᎤᏅᏒ ᎤᎾᏤᎵᎦ? ᏝᏍᎪ ᎾᏍᏉ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎦ ᏱᎩ? ᎥᎥ, ᏧᎾᏓᎴᏅᏛ ᎾᏍᏉ ᏴᏫ ᎤᎾᏤᎵᎦ.\nᎠᏎᏃ ᎨᏍᏗ ᎫᏩᎵᏍᏓᏴᏗ ᏱᎨᏎ ᏲᎾ ᎤᏤᏍᏙ, ᎩᎳ ᎤᏅᏗ ᎤᏗᏔᎲ ᏱᎩ ᏏᏆ.\nᎤᏂᎸᏉᏔᏁᏃ ᎤᏁᎳᏅᎯ ᎠᏴ ᏅᏗᎦᎵᏍ-ᏙᏗᏍᎨᎢ.\nᎡᏘᏴ, ᏍᎩᏄᏍᏛ ᏓᏃᏒᏍᎨ ᎦᏓ ᎦᏓᏍᎬᎢ ᏃᎴ ᏚᏂᏚᎲ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏱᎨᏥᎦᏘᎴᏅ ᏃᎴ ᎤᏂᏫᏒᏗ, ᎤᎾᎵᏍᎩᏍᏗ ᏃᎴ ᎤᎾᏁᏦᏗ ᏃᎴ ᎠᎹ ᏕᎨᏴ ᎤᎵᏍᎨᏗ ᎨᏒ.\nᎠᏍᎦᏯ ᏔᎵ ᎢᏳᏓᎢ ᎤᏓᏅᏛᎢ ᎤᏁᏟᏴᏌᏘ ᎨᏐᎢ ᏂᎦᎥ ᏚᎸᏫᏍᏓᏁᎲᎢ.\n”ᏣᏍᎪ ᏱᎧᎾᏬᎨᏍᏗ ᎤᏒᎯ? ᎤᏓᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎣᎦᎾ ᎢᎬᏓ ᎨᏎᎢ.\nᎰᏪᎸᎦ ᎾᏍᎩ Ꮎ ᏥᎪᏩᏛ, ᎠᎴ ᎪᎯ ᎨᏒ ᏄᏍᏗᏕᎬᎢ, ᎠᎴ ᎣᏂ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ.\nᎾᏍᎩᏃ Ꮎ ᎠᏫᏍᎩ ᎥᏝ ᎪᎱᏍᏗ ᏱᎩ, Ꮎ ᎠᎴ ᎠᎹ ᎠᏍᏚᏟᏍᎩ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏁᏉᎢᏍᏗᏱ ᎢᎬᏁᎯ ᏥᎩ.\nᎤᏟᏰᏃ ᎠᎯᏗᏳ ᎨᎻᎵ ᎤᎦᏛᎴᎯᏍᏗᏱ ᏴᎩ ᎦᏌᏁᎾᏛᏗᏱ ᎠᏃ ᎤᏪᎿᎢ ᏴᏫ ᏭᏴᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᏗᎨᏒᎢ.\nᏃᏗ ᏒᏃ ᎤᏓᏱᏐᏚᎢᏍᏊ ᎠᏆᏍᎦᏱ ᎦᏱᏐᏃ ᏃᏗᏍᏊ ᏒᏃᏱ ᏫᎦᎢᏒ ᏙᏳᏍᏊ ᎠᏆᏍᎦᏱᏓ ᏫᎦᎢᏒ.\nᎠᏎᏃ ᎤᏚᎩ ᎠᏋᎭ ᎤᎬᏫᏳᎯ ᏥᏌ ᎢᏳᏩᏂᏐᏗᏱ ᏗᎹᏗ ᏥᏅᏍᏗᏱ ᏗᏤᎲ ᏂᎪᎯᎸᎾ, ᎾᏍᎩ ᎠᏴ ᎾᏍᏉ ᎣᏍᏛ ᎠᎩᎦᎵᏍᏓᏗᏍᏗᏱ ᎦᏙᎴᎰᏒᎭ ᏂᏣᏛᎿᏕᎬᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎥᏝ ᏱᎪᎯᎩ ᎠᏂᏧᏏ ᎤᎾᏁᎶᏔᏅᎩ ᏅᏯ ᏗᎨᏨᏂᏍᏙᏗᏱ, ᏔᎵᏁᏍᎪᏃ ᎾᎿ ᏴᏛᎯᎶᏏ?\nᏕᏫᏰᏃ ᏣᎬᏫᏳᎯ ᎪᏎᎭ; ᎦᏙᏃ ᏗᎦᎵᏍᏙᏗᎭ ᎤᏪᏥ ᎢᎩ?\nᎠᏎ ᎩᎶ ᎤᏪᏅᏍᏗ ᎠᏏᎾᎯ ᏧᏬᏪᎶᏗ.\nᎠᏴᏰᏃ ᏤᎩᎤᏍᏕᏎᎸᎯ, ᎤᏁᎳᏅᎯ ᎠᏓᏅᏙ ᎬᏗ ᎡᏓᏓᏙᎵᏍᏓᏁᎯ ᏥᎩ, ᎠᎴ ᎢᏓᎵᎮᎵᎩ ᎦᎶᏁᏛ ᏥᏌ ᎡᏓᎵᏍᎦᏍᏙᏛ ᎢᏳᏍᏗ, ᎠᎴ ᎤᏇᏓᎵ ᎨᏒ ᏂᎦᎵᏍᎦᏍᏙᏛᎾ ᏥᎩ.\nᎾᎯᏳᏃ ᎡᎶᏛ ᎤᎾᏄᎪᏫᏏᏗᏎᎢ, ᎾᎯᏳ ᏒᏃᏱ ᏈᏓ ᎦᎵᎮ ᎠᏰᎵ ᎠᏂᏔᎵ ᎠᏂᏯᏫᏍᎩ ᏓᏂᏅᎬᎢ, ᏔᎵ ᏧᏓᏕᏒᏛ ᏓᎦᎸᏍᏕᎢ, ᎠᏂᎦᏘᏯᏃ ᎦᎶᎯᏍᏗᏳᎶᏗ ᎠᏂᏂ ᎠᏂᏯᏫᏍᎨ ᏗᏓᏍᏚᏗᏱ.\nᎠᎴ ᎢᏣᎴᏂᏙᎲ ᎣᏍᏛ ᎨᏎᏍᏗ ᎠᏁᎲ ᏧᎾᏓᎴᏅᏛ ᏴᎾ, ᎾᏍᎩ ᎨᏣᏡᏗᏍᎬ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏥᎨᏦᏎᎭ, ᎾᏍᎩ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎠᏂᎪᏩᏘᏍᎬ ᏱᏅᏓᎦᎵᏍᏙᏓ ᏯᏂᎸᏉᏓ ᎤᏁᎳᏅᎯ ᎾᎯᏳ ᎢᎦ ᏓᏩᏛᎯᎸᎭ.\n“ᎯᎠᏗ ᏥᎣᎵ ᎦᏚᎢᏣ ᎦᏯᎸᎪ,” ᎧᎵᏎᏥ ᎪᏒᏔᏅ ᎨᏂᏗ ᎢᏴ ᏄᏲᎢᏯ.” \n“ᏗᏂᏍᎬᎾᏕᏏ! ᏗᏂᏍᎬᎾᏕᏏ!” ᎤᏪᏢᎮ ᏩᎭᏯ.\nᎥᏝ ᎪᎱᏍᏗ ᎤᏍᏗ ᎠᏓᎪᎵᏰᏍᎩ ᎢᏣᏢᏔᎲᎯ ᏱᎩ ᎾᏂᎥᏉ ᏴᏫ ᎢᎬᏩᎵᏍᏓᏁᏗ ᎤᏩᏒ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏄᏓᎵᏓᏍᏛᎾ, ᎾᏍᎩ ᎥᏝ ᎤᏁᎳᎩ ᏴᎨᏤᎵᏏ ᎠᏓᎪᎵᏰᏍᎩ ᎢᏥᎷᏤᏗᏱ ᏕᏣᎵᏂᎬᎬ ᎤᎶᏒᏍᏙᏗᏱ; ᎾᏍᎩᏍᎩᏂ ᎠᏓᎪᎵᏰᏍᎩ ᎢᏥᎷᏤᎲ ᏔᎵ ᎾᏛᏕᏍᏗ ᎾᎿ ᎦᏰᏣᏗᏫᏎᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏰᎵ ᎨᏣᏓᎵᏁᎯᏗᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏤᏣᏛᎦᏁᎸ ᎡᎦᏆ ᎣᏥᎨᏳᎢ ᎢᏧᎳᎭ ᎣᎩᏅᏏᏓᏍᏗ, ᏂᎯᏃ ᏥᏅᏗᎦᎵᏍᏙᏗ ᎣᏍᏛ ᎢᏯᏛᏁᎯ ᎦᎶᏁᏛ ᎤᏅᏏᏓᏍᏗ.\nᎾᏍᎩᏃ ᏂᎪᎵᎬᎾ ᏱᎩ ᎦᏛᎬ ᎦᏬᏂᏍᎬᎢ, ᏅᏆᏓᎴᏉ ᎾᏍᎩᏯ ᏱᎩ ᎠᏆᏓᏅᏖᏍᎬ ᎾᏍᎩ ᎦᏬᏂᏍᎩ; ᎠᎴ ᎾᏍᎩ ᎦᏬᏂᏍᎩ ᏅᏩᏓᎴᏉ ᎾᏍᎩᏯ ᏱᎩ ᎠᏴ ᏥᏯᏓᏅᏖᏍᎬᎢ.\nᏓᏂᏓᎾᏆᏗᏍᎩ, ᎠᏎᏃ ᎢᏧᎳ ᎠᎾᏧᏉᏗᏍᎬ ᏚᏂᏍᏘᏰᎬ, ᎡᎳᏗ ᏥᏚᏂᎰ ᏗᏔᏍᎩᏍᎩ ᏗᏂᏍᎪᎵ ᎤᏤᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎠᏓᏅᏖᏍᎬ ᎦᏙᎴᎣᏍᎩ ᎠᎴ ᎠᏓᏅᏙ ᎤᏓᏁᏗ ᎠᎩᎯ ᎢᎬᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᎬᏁᎮᏍᏗ ᎾᏍᎩ ᎯᎠ ᏥᏫᏨᏲᏪᎳᏁᎭ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎯ ᎨᏒᎢ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎢᏨᏲᏪᎳᏏ ᎢᏦᎯᏳᎲᏍᎩ ᏚᏙᎥ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᎬᏂᏛ ᎢᏤᎲᎢ ᎨᏒᎢ, ᎠᎴ ᎢᏦᎯᏳᏗᏱ ᏚᏙᎥ ᎤᏁᎳᏅᎯ ᎤᏪᏥ.\nᎿᏉᏃ ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᎦᏛᏁᎵ? ᎠᏇᏥ ᏥᎨᏳᎢ ᏓᏥᏅᏏ; ᏯᏂᎸᏉᏓ ᏱᎩ ᎾᏍᎩ ᎠᏂᎪᎲᎭ.\nᏙᏓᏆᏍᎬ ᎣᎩᎾᎩᎳᏩᏕᎬ, ᏙᏍᏔᎦᏁᎬ ᎠᎼ ᏤᏙ ᏥᏳ ᏧᎶᎯᏍᏗ, Chesapeake ᏃᎴ Ohio ᎠᎹ ᏧᎶᎯᏍᏗ.\nᎠᎴ ᎢᏨᏔᏲᏎᎭ, ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᏗᏥᎦᏔᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ Ꮎ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎢᏤᎲᎢ, ᎠᎴ ᏗᎨᏣᏁᎶᏗ ᏥᎩ ᎤᎬᏫᏳᎯ ᏕᏣᏁᎶᏛᎢ, ᎠᎴ ᏥᎨᏣᏅᏓᏗᏍᏗᎭ;\nᎾᎥᏂᎨ ᏭᎷᏤ ᎤᎦᏙᏍᏓᏁᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᎠᏲᏍᏗᏍᎨᏍᏗ ᏌᏉ ᎯᎠ ᎤᏍᏗᎧᏂ ᎤᎵᏁᏨᎢ, ᎠᎴ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏴᏫ ᏕᎨᏲᎲᏍᎨᏍᏗ, ᎾᏍᎩ ᎤᏍᏗᎧᏂ ᎠᎪᏎᎮᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎩᎶᏍᎩᏂ ᏓᎧᎿᏩᏕᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏓᏕᏲᎲᏍᎨᏍᏗ, ᎦᎸᏉᏗᏳ ᎠᎪᏎᎮᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏥᎷᏤᏗᏱ ᏂᎦᏛ ᎣᏍᏛ ᎩᎬ ᎡᎶᎯ ᎤᏤᏪᏨᎯ, ᎤᏓᏅᏘ ᎡᏈᎵ ᎤᎩᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᏤᎦᎳᏯ ᎤᎩᎬ ᏇᎵᎦᏯ ᎤᏪᏥ ᎤᏛᏍᏗ, ᎾᏍᎩ ᏤᏥᎸ ᎤᏜᏅᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏥᎸᏃ-ᎨᎳᏍᏗᏱ.\nᎾᏍᎩ ᎾᎿ ᏥᏥᎩᎵᏲᎦ ᎥᏆᎸᏍᏗᏱ ᎢᏴᏛ, ᎤᏲ ᏧᎸᏫᏍᏓᏁᎯ ᎾᏍᎩᏯᎢ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏤᎵᎦ ᎧᏃᎮᏛ ᎥᏝ ᎦᎸᎸᎯ ᏱᎩ.\nᎠᎴ ᏂᎦᏛ ᏕᎨᎦᏬᏍᎨ ᎤᏣᎩᎸ ᎠᎴ ᎠᎺᏉᎯ ᎼᏏ ᎬᏩᎵᎪᏁᎮᎢ.\nᎤᏩᏌ ᏧᏤᎵ ᏴᏫ ᎫᏩᎨᎯᏒ ᎠᏙᎯ ᎾᏍᎩᏯ ᎢᎾᎨ ᎡᎯ ᏏᏆ.\nᏕᏣᏓᏙᎯᏳᎲᏍᎨᏍᏗ ᎢᏥᏏᏴᏫᎭ ᎨᏒ ᎤᏁᎳᏅᎯ ᎡᏥᎾᏰᏍᎬᎢ.\n ”ᏒᎦᎾᏲᎪ!” ᎤᏛᏁ ᏫᎵᎻ, ᎡᎳᏗ ᏫᏚᎧᎾᏁ ᏗᎦᎵᏦᎯᏓ ᏗᎦᏅᏍᎨᏂ, ”ᎨᎵᎠ ᎨᏍᏗ ᎦᎵᏉᎩ ᏱᏂᏚᏓᏓᏍᎦ ᏗᏥᏅᏍᎨᏂ.”\nᎤᏓᏅᏘ ᎬᏗᏍᎬ ᏱᎩ ᏕᎨᏲᎲᏍᎬ ᎬᏩᏡᏗᏍᎩ; ᎤᏚᎩ ᏳᏩᎭ ᎤᏁᎳᏅᎯ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏧᎾᏓᏂᎸᎢᏍᏗᏱ ᎤᏙᎯᏳᎯ ᎨᏒᎢ;\nᎤᏃᎵᏍᏗᏱ ᏧᎾᎵᏏᎲᏎᎸᎯ, ᎤᎾᏞᏛ ᎾᎿ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒ ᎠᎴᏂᏓᏍᏗᏱ, ᎾᏍᎩ ᎾᏂᎦᏔᎾᎥᎾ ᎨᏒ ᎢᏳᏩᏂᏌᏛ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏧᏂᎾᏫ ᏗᏍᏓᏱᏳ ᎨᏒᎢ.\nᎧ, ᏦᏈ ᎭᏓᏅᎵ, ᎠᎴ ᏫᏯᏅ ᏌᏩᏂ ᏈᏓ ᏧᏙᎢᏛ; ᎾᏍᎩ ᎤᏬᎳ ᏌᏩᏂ ᏗᏑᏫᏍᎩ ᎦᏁᎸᎢ ᎠᎹᏳᎶᏗ, ᎾᏍᎩ ᎦᎷᏨᎭ ᏓᏣᏬᏁᏔᏂ.\nᎬᏂᏳᏉ, ᎠᏧᏏ ᏕᏣᏙᎥ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏣᎵᏍᎦᏍᏙᏗ, ᎠᎴ ᎯᏯᏢᏆᏍᏙᏗ ᎤᏁᎳᏅᎯ,\nᎠᏰᎵ ᏧᎦᎴᏅᏓ ᎨᏎ ᎤᏍᏗᏰᎬ, ᎤᏁᎦ ᎠᏍᏗ ᎬᏘ ᎤᏬᏚᎢᏍᏕ.\nᎥᏝ ᎢᏨᏲᏎᎭ; ᏂᎯᏍᎩᏂ ᏂᏗᏥᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ ᏕᏣᏓᏅᏛᎢ, ᏂᎦᏛ ᎾᏍᎩᏯ ᏓᏣᏗᏒᏂ.\nᏴᏫ ᎤᎵᏏᎬ ᏣᏂᏅᎩ ᎤᏣᏘ ᎢᎦᎦᏘ ᎤᏂᎪᎲ, ᎾᏃ ᎠᏲᎱᎯᏍᏗᏱ ᎨᏒ ᎤᏤᎵᎪᎯ ᎠᎴ ᎤᏓᏩᏗᏍᎬ ᏣᏂᏅᎩ, ᎢᎦᎦᏘ ᎤᏂᎾᏄᎪᏤᎸ.\nᏧᏙᏓᏆᏓ ᎣᎭᏁ, ᎦᎷᏯᏍᏗ ᏚᏃᏴᎬ ᎤᏩᏌ ᎠᏛᎪᏗ ᎨᏒ, ᎠᏂᏲᏍᎩ ᏓᏂᎴᏴᏍᏗᏍᎬ ᏃᏥ ᏕᏧᎬ.\nᏚᎴᏅᏃ ᎤᏪᏅᏎᎢ; ᎬᏂᏳᏉᏃ ᎠᏍᎦᏯ ᎢᏘᏱᏈ ᎡᎯ ᎠᏳᎾᎦ ᎠᏥᎸᏉᏗ ᎤᏁᏤᎸᎯ ᎬᏗᏏ ᎠᎨᏴ ᎤᎬᏫᏳᎯ ᎢᏗᎣᏈ ᎠᏁᎯ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᏂᎦᏛ ᎠᏕᎸ ᎤᎦᏘᏕᎯ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏔᏂᎸᎯ ᎨᏎ ᏥᎷᏏᎵᎻ,\nᎠᏎᏃ ᎾᏍᏉ ᏱᏗᏧᎪᏗᎭ, ᏓᏇᎪᏔᏅ ᏑᏳᎪᏛ ᏱᎩ. ᎥᏝᏰᏃ ᎠᏋᏒᏉ ᏱᎩ, ᎠᎦᏴᎵᎨᏰᏃ ᏅᏛᎩᏅᏏᏛ ᎣᎩᎾᎵᎪᎭ.\nᎢᏳᏰᏃ ᎤᏁᎳᏅᎯ ᏂᏚᎨᏳᏅᎾ ᏱᎩ ᏅᏁᎯᏯ ᏚᏩᏂᎦᎸᎢ, ᏂᎯ ᎾᏍᏉ ᏂᏣᎨᏳᏅᎾᏉ ᏱᎩ.\nᎯᎠ ᏄᏪᏎᎢ, ᎡᎮ ᏗᎫᎪᏗᏍᏗ ᎢᎸᎯᏢ ᎦᏚᎲᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏂᎦᎾᏰᏍᎬᎾ, ᎠᎴ ᏴᏫ ᏂᏚᏁᎶᏛᎾ;\nᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏚᎩ ᎢᏨᏒ ᎾᏍᎩ ᎦᎸᎳᏗ ᏤᏣᏛᏅᎢᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏣᏛᎦᏅᎯ ᏥᎩ ᎾᎿ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛᏱ,\nᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙ ᏙᏓᏛᏁᎵ ᎯᎠ ᎠᏂᏍᎦᏯ, ᏄᏜᏏᏛᏒᎾᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎬᏂᎨᏒ ᏄᎾᎵᏍᏓᏁᎸ ᏂᎦᏛ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎠᎴ ᎥᏝ ᏰᎵ ᏴᎨᏓᏓᏱᎦ.\nᎥᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᎯᎠ ᏥᏥᏃᎮᎭ.\nPerry ᏃᎴ ᏣᎵᏍᏙᏂ ᏯᎾᏓᏅᏍᎬᎾ ᏓᏂᎾᎡ ᏃᎴ Philadelphia, ᎠᎦᏗᏛ ᎩᎦ ᎠᏔᏍᎨᏍᎨ, ᏓᏖᎸᎮᏍᎨ ᏧᏬᏰᏂ ᎾᏍᎩᏯ ᎡᎶᎯ ᏥᎦᏂᏱᏍᎪ.\nᎯᎠᏃ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ, ᎾᏂᎥᏉ ᎩᎶ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏚᏙᎥ ᎠᏅᏗᏍᎨᏍᏗ ᎠᏂᏔᏲᎯᎮᏍᏗ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᏣᏂ ᏥᏓᏓᏬᏍᎬᎩ ᎭᏢ ᏧᏓᎴᏁᎢ? ᎦᎸᎳᏗᏍᎪ, ᏴᏫᏉᎨ ᎠᏁᎲ ᏧᏓᎴᏁᎢ? ᎡᎳᏪᏱᏃ ᎤᎾᏓᏅᏖᎸᎩ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎢᏳᏃ ᎦᎸᎳᏗ, ᏲᎦᏛᏅ, ᎦᏙᏃ Ꮭ ᏱᎡᏦᎢᏳᏁᎢ? ᏲᎪᏏ.\nᏂᎯ ᎡᏣᏃᎯᏎᏗ, ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᏧᏪᏥ ᏕᎦᎶᏗ ᏆᎾ ᎢᏳᏍᏗ ᎤᎵᏑᏫᏓ ᎦᏅᏙᏗ.”\nᎤᏂᏄᎪᏨᏃ ᎤᏂᏩᏛᎮ ᎠᏍᎦᏯ ᏌᎵᏂ ᎡᎯ ᏌᏩᏂ ᏧᏙᎢᏛ; ᎾᏍᎩ ᎬᏍᎦᎢᏍᏓᎩ ᏄᏅᏁᎴ ᎤᏪᏅᏍᏗᏱ ᏧᏓᎿᏩᏛ.\nᎠᎴ ᎥᏝ ᎠᏂᎦᏔᎯ ᏱᎨᏎ ᎠᏆᎧᏛ ᎾᏍᎩᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᏧᏗᏱ, ᎾᏍᎩ ᎦᎶᏁᏛ ᏗᎬᏩᏁᎶᏗ;\nᎤᏕᎵᏒᏍᎩᏂ ᎣᏓᏅᏛ ᎡᎯ ᏴᏫ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏲᎩ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏗ ᎠᎴ ᎤᏓᏅᏘ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏂᏍᎬ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏥᎩ.\nᎣᎦᏛᎦᏅᏰᏃ ᎯᎠ ᏂᎧᏪᏍᎬᎩ; ᎾᏍᎩ ᎯᎠ ᏥᏌ ᎾᏎᎵᏗ ᏤᎲᎩ ᏛᏲᏍᏔᏂ ᎠᏂ, ᎠᎴ ᏓᎦᏁᏟᏴᏏ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎾᏍᎩ ᎼᏏ ᎢᎩᏁᎸᎯ.\nᎾᏍᎩ ᎠᏓᏪᎵᎩᏍᎩ ᎠᎴ ᏧᎸᏌᏓ ᎠᏨᏍᏙᏗ ᎨᏒᎩ; ᏂᎯᏃ ᏞᎦ ᎣᏏᏳ ᎢᏥᏰᎸᏒᎩ ᎢᏣᎵᎮᎵᏍᏗᏱ ᎾᏍᎩ ᎢᎦᎤᏘᏍᏛᎢ.\nᎯᎠᏃ ᎤᏆᎶᎦ.\nᎦᏳᎳ ᏂᏚᏭᎪᏔᏁᎢ ᎤᎭᏴᏍᏗ ᏧᏪᏥ ᏗᎦᏅᏙᏗ --- ᏐᏉ ᎤᏩᏌ ᏰᎵᏉ ᎢᏳᎵᏍᏙᏗ ᎨᏎᎢ.\nᏏᏅᏓ ᎢᎪᎯᏛ ᎯᎪ ᎢᎦ ᎠᎴᏂᏍᎩ.\nᎠᏂᏐ ᏄᎾᏍᏛ ᎣᎯᏍᏙᏗ ᎤᎾᏓᏅᏖᏗ, ᎤᎵᏨᏓᏆᏓ ᏳᏗᏔ, ᎣᎯᏍᏙᏗ ᏍᎦᏥ ᏫᏍᎩ ᎤᎸᏉᏛ, ᎩᎶ ᏄᏓᎴᎯ ᏳᏩᏍᎦ.\n ᏧᏌᏬᎸ ᏚᎧᎵᏤ ᏗᎦᏙᎵ.\nᎾᎿᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎤᏴᏩᏛᎲᎩ ᏥᏳ ᎢᏓᎵ ᎠᏂᏂᏒᎩ, ᎡᎵᎩᏱ ᎡᎯ, ᎾᎿᏃ ᏙᎩᏯᏅᎩ.\nᎥᏝᏰᏃ ᏰᎵ ᎦᏲᎦᎵᏠᏯᏍᏙᏗ ᏱᎩ, ᎠᎴ ᏗᎦᏲᎦᏓᏟᎶᏍᏙᏗ ᏱᎩ ᏄᎾᏍᏛ ᎾᏍᎩ ᎤᏅᏒ ᎠᎾᏓᎸᏉᏗᏍᎩ; ᎾᏍᎩᏰᏃ ᎤᏅᏒ ᎠᎾᎸᏉᏗᏍᎩ; ᎾᏍᎩᏰᏃ ᎤᏅᏒ ᎨᏒ ᎤᏅᏒᏉ ᏄᎾᏍᏛ ᏓᎾᏓᏟᎶᏍᏗᏍᎬ, ᎠᎴ ᎤᏅᏒᏉ ᏄᎾᏍᏛ ᏓᎾᏓᏟᎶᏍᏗᏍᎬ, ᎠᎴ ᎤᏅᏒᏉ ᏓᎾᏓᏤᎳᏍᏗᏍᎬ ᎥᏝ ᏳᎾᏓᏅᏔ.\nᎥᏝ ᏂᎯ ᎠᏴ ᏍᎩᏯᏑᏰᏛ ᏱᎩ, ᎠᏴᏍᎩᏂ ᏂᎯ ᎢᏨᏯᏑᏰᏛ, ᎠᎴ ᏕᏨᏯᎧᏅ ᎢᏤᏅᏍᏗᏱ ᎤᏁᏉᏨᎯ ᎢᏥᎾᏄᎪᏫᏍᏗᏱ, ᎠᎴ ᎤᏁᏉᏨᎯ ᎢᏣᏤᎵᎦ ᎦᎶᏐᎲᏍᎩ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎡᏥᏔᏲᏎᎮᏍᏗ ᎠᎦᏴᎵᎨᎢ, ᎠᏴ ᏓᏆᏙᎥ ᎢᏥᏔᏲᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎢᏥᏁᏗᏱ.\nᏐᏉ ᎢᎦ, ᎤᏔᏂᏓ ᎨᏴ ᎠᏓᏬᏍᎬ, ᎤᎴᏅᎮ ᎠᎦᏍᎬ.\nᎠᏎᏃ ᏧᏯᏪᎩ ᏄᏍᏛ ᏗᎧᏃᏗ ᎠᏌᎻᏓ ᏃᎴ ᏧᏁᎦ ᏗᎦᏙᎵ ᏃᎴ ᎤᏓᏅᏖᏗᏍᎬ ᏚᎷᏫᏍᏔᏁᎲ ᎠᏙᎯ, ᎤᏦᏍᏔᏁᎲ ᏃᎴ ᎤᏍᎦᏍᏓᏁᎲ.\nᎢᏳ ᎠᎴ ᎤᏓᏅᏘ ᎤᏎᎦᏨᎯ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏂᏚᏁᎶᏛᎾ ᎠᎴ ᎠᏍᎦᎾᎢ.\nᎤᏃᏕᎾᏰᏃ ᎠᎩᎾ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎠᏰᎵ ᏥᏄᏛᏅ ᏓᏳᏁᎶᎵ ᎠᎴ ᏙᏓᏳᎾᏘᏁᏏ ᎠᎹ ᎬᏂᏛ ᎠᎹ ᏙᏗᎦᏄᎪᎬᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᏙᏓᎦᏅᎦᎸᎯ ᏂᎦᏛ ᏚᏂᎦᏌᏬᎸᎢ.\n“ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎿᏉᏃ ᎤᎴᏅᎮ ᎤᏍᎩᏅᏕᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏔᏁᎢ; Ꮭ ᏱᏥᎦᏔᎭ Ꮎ ᎠᏍᎦᏯ, ᎤᏛᏁᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏣᏔᎦ ᎤᏴᎳᏎᎢ.\nᏚᎾᏓᏟᏴᎲ ᎤᏃᎴ ᎢᏳᏍᏗ ᎢᎦᏪᏍᏗ.\nᎠᏎᏃ ᎤᏁᎷᏁ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᏍᏛᎥᎦ, ᎯᏯᏛᎥᎦ.\nᎾᏍᎩ Ꮎ ᎾᏍᏉ ᎢᎩᏰᎸᏔᏅᎯ ᏥᎩ, ᎠᎴ ᎢᎩᏁᎸᎯ ᏥᎩ ᏗᎩᎾᏫᏱ ᎠᏓᏅᏙ ᎠᎦᏘᏗᏍᏙᏗ ᎨᏒᎢ.\nᎿᏉᏃ ᎤᎵᏰᏅ ᎠᎴ ᎤᎦᏔᏔᏅ ᎾᏍᏉ ᎤᏲ ᎤᎾᏄᎪᏤᎢ.\nᎠᏎᏃ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎾᏂᎦᏔᎥᎾᏉ ᎨᏎᏍᏗ ᏱᏨᏰᎵᏎᎭ ᎾᏍᎩ Ꮎ ᎤᏂᎵᏅᏨᎯ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎤᏲ ᎢᏣᏓᏅᏓᏗᏍᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᏅᏩᎾᏓᎴ ᎤᏚᎩ ᏄᏅᏒᎾ ᎾᏍᎩᏯ ᏄᎾᏍᏛᎢ.\nᎾᏍᎩ ᏗᏂᎰᎵ ᎠᏎ ᏗᎨᏥᏍᏚᏁᏗ, ᎾᏍᎩ ᎾᏂᎥ ᏏᏓᏁᎸᎯ ᎠᏁᎯ ᏗᏂᎦᏔᎲᏍᎩ, ᎾᏍᎩ ᏥᏓᎾᏕᏲᎲᏍᎦ ᏂᏚᏳᎪᏛᎾ ᏥᎩ ᏧᎾᏕᏲᏗᏱ, ᏧᎬᏩᎶᏗ ᎦᏓᎭ ᎤᏂᎬᎥᏍᎬ ᎢᏳᏍᏗ.\nᎤᎾᏂᎩᏒᏃ ᎬᏂᏳᏉ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏅᏏᏛ ᏱᎰᏩ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᏦᏩ ᎠᏍᎩᏓᏍᎬᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎴᎲᎦ, ᎠᎴ ᏔᏘᏄᎦ ᎠᏲᎵ ᎠᎴ ᎤᏥ ᎠᎴ ᎭᎵᏘ, ᎢᏥᏈ ᏫᎶᎯ, ᎾᎿᏃ ᏪᎮᏍᏗ ᎬᏂ ᏫᎬᏁᏤᎸᎭ, ᎡᎶᏛᏰᏃ ᎠᏎ ᏛᏲᎵ ᎤᏍᏗ ᎠᏲᎵ ᎤᎯᏍᏗᏱ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎢᏣᎸᎢᎮᏍᏗ ᎡᎶᎯ, ᎦᎸᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ; ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎢᏣᎸᎩᏍᎨᏍᏗ ᎡᎶᎯ ᎦᎸᎩᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ.\nᎤᎦᏃᏫ ᎤᏃᎴ ᎤᏂᏃᎸᏔᏁᎢ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ.\nᎠᏰᎵᏃ ᏕᎦᎧᎲ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗ [ᎦᏙᎬᎩ] ᎩᎶᎢ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩᏯᎢ, ᎤᏄᏩᎥᎩ ᏧᎳᏏᏕᏂ ᏂᏚᎸᎩ, ᎠᏓᏠᏍᏗᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎤᏓᏠᎲᎩ ᏗᎦᏅᏗᏱ ᏧᏳᎪᏗ.\nᎾᏂᎥᏉᏰᏃ ᎩᎶ ᏣᏂᏔᏲᎯᎰ ᎨᏥᏁᎰᎢ; ᎩᎶᏃ ᏧᏲᎰ ᎠᏩᏘᏍᎪᎢ; ᎩᎶᏃ ᏥᏫᎬᏂᎰ ᎠᏥᏍᏚᎢᎡᎰᎢ.\nᎪᎯᏳᏗᏍᎩᏂ ᎨᏒ ᏂᏛᏗᏍᎬᎾ ᏱᎩ ᎬᏩᏟᏍᏗ ᎣᏍᏛ ᎤᏰᎸᏗ [ᎤᏁᎳᏅᎯ] ᏗᎩᎸᏫᏍᏓᏁᏗᏱ; ᎩᎶᏰᏃ ᎤᏁᎳᏅᎯ ᏱᎦᎷᏤᎭ ᎠᏎ ᏱᎦᎯᏳᎲᏍᎦ ᎡᎲᎢ, ᎠᎴ ᎾᏍᎩ ᏗᎫᏴᎡᎯ ᎨᏒ ᎤᎵᏂᎩᏛ ᎬᏩᏲᎯ.\nᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ, ᏔᏕᏲᎲᏍᎩ, ᎣᏏᏳ ᎠᏂ ᏥᏕᏙᎭ; ᎠᎴ ᏦᎢ ᏫᏙᏥᎵᏦᏛᎦ; ᏌᏉ ᏂᎯ ᏣᏤᎵᎦ, ᏌᏉᏃ ᎼᏏ ᎤᏤᎵᎦ, ᏌᏉᏃ ᎢᎳᏯ ᎤᏤᎵᎦ.\nᎦᎪ ᎯᎠ ᎠᏂᏔᎵ ᎤᏙᏓ ᎤᏁᏨ ᏄᏛᏁᎴᎢ? ᎢᎬᏱ ᏭᎷᏤᎸᎯ, ᎥᎬᏪᏎᎸᎩ. ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᏧᎾᏤᏌᏘ ᎠᏂᎨᏴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏩᏂᏴᎯᎭ ᏕᎨᏥᎪᏂᎭ.\n“ᎰᎻ,” ᎤᏬᏎᎴ ᎤᏰᎯ, “ᎤᏅᏗ ᏧᏂᏦᏴᏍᏗ ᎬᏗ ᏓᏥᏯᏬᎢ ᏏᏆ.”\nᎿᏉᏃ ᏂᎦᏚ ᏫᏄᏕᏘᏴᎲ ᎣᏂ, ᏔᎵᏁ ᏥᎷᏏᎵᎻ ᎠᏇᏅᏒᎩ ᎣᏍᏕᎲᎩ ᏆᏂᏆ, ᎠᎴ ᏓᏓᏏ ᎾᏍᏉ ᎥᏥᏯᏘᏅᏒᎩ.\nᎠᎴ ᎢᏓᎵᏅᏟ, ᎥᏝ ᎾᏂᎦᏔᎲᎾᏉ ᎨᏎᏍᏗ ᏱᏨᏰᎵᏎᎭ, ᎾᏍᎩ ᎾᏂᎥᏉ ᏗᎩᎦᏴᎵᎨ ᎤᎶᎩᎸ ᎭᏫᏂᏗᏢ ᎤᏁᏙᎸᎢ, ᎠᎴ ᏂᎦᏛ ᎠᎹᏉᎯ ᎤᏂᎶᏒᎢ,\nᎾᏍᎩ ᎢᏳᏍᏗ (ᎦᎶᏁᏛ) ᎡᎶᎯ ᎤᎾᏄᎪᏥᎸ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏥᎸ-ᎨᎳᏍᏙᏗ ᎠᎴ ᎢᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎥᏝ ᏰᎵ ᏱᏗᏣᏰᎸᏁᎢ, ᎠᏰᎸᏍᎩᏂ ᏍᏆᏛᏅᎢᏍᏓᏁᎸ.\nᎢᎸᏍᎩᏃ ᏫᏄᏒᎸ ᏉᎳ ᎯᎠ ᏄᏪᏎᎸᎩ ᏆᏂᏆ; Ꭷ ᏔᎵᏁ ᏥᏙᏂᏩᏛᎱᎦ ᎢᏓᏓᏅᏟ ᏂᎦᎥ ᏕᎦᏚᏩᏗᏒ ᎾᎿ ᎩᎾᎵᏥᏙᏂᏙᎸ ᎧᏃᎮᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᏫᎾᏙᎴᎰᎯ ᏄᎾᏛᎿᏕᎬᎢ.\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎤᎵᏁᏨ ᎠᏍᎦᏂ ᏁᎰ ᎡᎶᎯ; ᎠᏎᏃ ᎥᏝ ᎤᏂᏍᎦᏅᏨᎯ ᎨᏥᏰᎸᏗ ᏱᎩ ᎾᎿ ᏗᎧᎿᏩᏛᏍᏗ ᎾᎲᎾ ᎨᏒᎢ.\nᎣᏍᏓ ᎣᎦᎵᎪ ᎣᎦᎵᏍᏔᏴᏅ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ.\nᏂᎯ ᎠᏴ ᎢᎦᎵᎢ, ᎢᏳᏃ ᏂᎦᎥ ᎢᏨᏁᏤᎲ ᏱᏂᏣᏛᏁᎭ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎸᎯᏳ ᎢᏴᏛ, ᎾᏍᎩ ᎤᏣᏁ ᏥᏳᎯ ᎤᎾᎵᎪᏎ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎯᎠᏙ ᏂᏚᏪᏎᎴᎢ, ᏗᏗᏐᎩ ᎥᏓᎸ ᏍᎪᎾ ᏫᏗᎶᎯ. ᎠᎴ ᎤᏂᏴᏫᏛᎮ.\nᏥᎪ ᏥᏍᎦᏅᎩ ᎡᎳᏗ ᏥᎾᏆᏓᏛᏁᎸ, ᏂᎯ ᎡᏥᏌᎳᏙᏗᏱ, ᎾᏍᎩ ᏂᏗᏨᎬᏩᎶᏓᏁᎸᎾ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎢᏨᏯᎵᏥᏙᏁᎸᎢ?\nᎤᏓᏔᏅ ᎨᎵᏍᎩ ᎢᏳᏍᏗ ᎠᎩᎦᎷᏴ, ᏓᎩᎷᎬᏒ, ᏕᎦᏥᏌᏁᎸ ᏧᏃᏮ, ᎦᏚᎢᏣ ᎤᏬᏗᎨ ᏃᎴ ᎤᏍᏔᎦᏴᎯᏓ, ᎭᏫᏂ ᏩᎾᎢ, ᎭᎴᏉ ᎤᏩᎾᏬᏒ.\nᎠᏎᏃ ᎤᏲᎱᏒ ᎦᏛᎬᎩ ᎾᏍᎩ ᏄᏪᏒ ᏥᏌ: ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᎦᎵᎲᏉ ᏦᏯᏪᏐᎵᎰ ᎦᏛᏓ ᎤᏁᎵᏒᎩ.\n“ᎩᎾᎵᎢᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᏍᎩᏃ ᎯᎠ ᏧᏓᎴᏅᏛ ᎨᏒ ᎠᏴ ᏗᎦᏟᎶᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏲ ᎢᎩᎬᎥᏍᎩ ᎢᎦᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩᏯ ᎾᏍᎩ Ꮎ ᏧᏂᎬᎥᏍᎨᎢ.\n“ᏧᏫᎯᏢᎾᏃ.\nᎤᎬᏫᏳᎯᏃ ᎤᏤᎵ ᎧᏃᎮᏛ ᏚᏰᎵᏎ ᎾᎿ ᏂᎬᎾᏛᎢ.\nᎪᎯᏃ ᎢᏥᏙᎦ ᎢᎬᎩᏱᎵᏙᎭ, ᎠᎩᏍᏛᏗᎭ ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏚᏚᎢᏍᏓᏁᎴ ᏦᎩᎦᏴᎵᎨᎢ;\nᎠᏎᏃ, ᏂᎯ ᎨᏒ ᎢᏨᎨᏳᎢ, ᏅᏟᎯᏳ ᎣᏍᏛ ᎤᏚᎩ ᎢᏨᏴᎾᏁᎭ, ᎠᎴ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎤᎬᏩᎵ ᏔᎵ ᎤᏛᏗᏕᎬᎢ, ᎯᎠᏍᎩᏂᏃᏅ ᏃᏥᏪᎭ.\nᏙᎯᏳᎮᏃ ᏚᏪᏍᏔᏁᎮ ᏚᎳᏏᏕᎾ Ꮎ ᏩᎭᏯ.\nᎬᏂᎨᏒᏰᏃ ᏅᏓᏥᏴᏁᎵ ᏄᏣᏛ ᎠᏎ ᎤᎩᎵᏲᎢᏍᏗᏱ ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ.\nᎪᎱᏍᏗᏰᏃ ᎤᏍᏆᏂᎪᏗ ᏕᎯᎾᏄᎪᏫᏎᎭ ᏦᏥᎴᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎣᎦᏚᎵᎭ ᎣᎦᏙᎴᎰᎯᏍᏗᏱ ᎾᏍᎩ ᏄᏍᏛ ᎦᏛᎬᎢ.\nᏔᎵᏍᎪ ᏅᎩ ᎢᏯᏂ ᏓᎩᏯᎬ ᎦᏣᏄᎳ, ᏗᎬᎩᏯᎩᏍᏗ ᏱᎨᏒᎾ ᏄᎵᏍᏔᎾ, ᏕᎦᎵᎡᏍᏗᏍᎬ ᎠᏰᎵ ᏧᏏᏫ ᏧᏯᏍᎦ, ᎢᏳᏓᎵᎭ ᎦᏗᏔᏍᎬ ᎠᏗᏔᏍᏗ, ᎦᏓᏅᏔᏗᏘᏍᎬ ᏄᏍᏆᏂᎦᏛ ᎠᎵᏍᏔᏴᏗ.\nᎤᏛᏅ ᎠᏓᏅᏖᎵᏙ.\nᏂᎦᏓ ᎬᏔᏂᏓᏍᏗ ᎦᏓᏁᎯ ᎨᏎᎢ.\nᎠᏍᏓᏯ ᏧᏂᏴᎯ ᏄᏓᎵᏍᏛᎾ ᎧᏃᎮᏛ ᎾᏍᎩᏯ ᎠᎨᏲᏅᎢ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᏰᎵᏉ ᏗᎬᏩᏬᏁᏙᏗ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒ ᎬᏗᏍᎬᎢ; ᎠᎴ ᎬᏩᎾᏙᎯᏳᎾᏁᏗ ᎢᎬᏩᏁᏗ ᏗᏂᎦᏘᎴᎩ ᎨᏒᎢ.\nᏣᏂ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; ᏴᏫ ᎥᏝ ᎪᎱᏍᏗ ᏴᎬᏩᏛ ᎬᏂ ᎦᎸᎳᏗ ᏅᏓᏰᏥᏁᎸᎯ ᏱᎩ.\nᎯᎠ ᎾᏍᎩ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᎥᏝ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ, ᎡᎶᎯᏉᏍᎩᏂ ᎡᎯ ᎠᎴ ᎤᏊᏓᎸᏉ ᎡᎯ ᎠᎴ ᎠᏍᎩᎾ ᎢᏳᏍᏗ.\nᎡᏆᎭᎻ ᎡᏏᎩ ᎤᏕᏁᎴᎢ; ᎡᏏᎩᏃ ᏤᎦᏈ ᎤᏕᏁᎴᎢ, ᏤᎦᏈᏃ ᏧᏓ ᎠᎴ ᎾᏍᎩ ᎠᎾᏓᏅᏟ ᎬᏩᏕᏁᎴᎢ;\nᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏚᏂᏪᏎᎸᎩ, ᎤᏣᏔ ᏱᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎡᏙᏙᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎬᏂᎨᏒ ᏂᏨᏴᏁᎸ; ᎦᏙ ᎤᏍᏗ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎩᏍᏛᏗᎠ ᏅᏯ ᏥᏕᏍᎩᏴᏂᏍᏗᎭ?\nᎨᏍᏗ ᏳᏣᏅᏓᏕᎸ ᎤᏗᏍᎦᎶᏗ, ᏚᏥᏝᏁ ᏧᎬ ᎾᎥᏂ ᏯᏓᏅᏍᎬᎾ.\nᎾᎿᏃ ᏑᏕᏘᏴᏛ ᏑᏓᎵᏃ ᎢᏯᏅᏙ ᎤᏪᏙᎸᎩ, ᏓᏕᏲᎲᏍᎬᎩ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎾᎿ ᎠᏁᎲᎢ.\nᎦᎵᏦᏕ ᏳᏪᎾ, ᎡᎨ ᏍᏉ ᏫᎵᎻ.\nᎺᎵᏃ ᏦᎢ ᎢᏯᏅᏙ ᎢᏴᏛ ᎵᏏᏱ ᎤᏕᏁᎢ, ᎩᎳᏃ ᎤᏩᏒ ᏧᏪᏅᏒ ᏫᎤᎶᏎᎢ.\nᎠᏰᏙᎳᏛᏗᏃ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᏛ ᎤᏓᏣᎦᎸᎮ ᏔᎵ ᏄᏓᏕᎢ, ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᏛ ᎡᎳᏗ ᏩᏍᏗ.\nᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎾᏍᎩ ᎣᏤᎯ ᎤᏁᏅᏒᎩ ᎠᏤᎵᏍᏛᎢ, ᎠᎴ ᏭᏂᏩᏛᎮ ᎾᏍᎩᏯ ᏄᏍᏕ ᎠᏂᎨᏴ ᏄᏂᏪᏒᎢ; ᎾᏍᎩᏍᎩᏂ ᎾᎥᏝ ᏳᏂᎪᎮᎢ.\nᎠᎴ ᏞᏍᏗ ᎡᎶᎯ ᎠᏂᎮ ᏄᎾᏍᏛ ᏱᏂᏨᏍᏕᏍᏗ; ᏗᏣᏓᏁᏟᏴᏛᏍᎩᏂ ᎨᏎᏍᏗ ᏗᏤ ᎢᏗᎬᏁᎸᎯ ᎨᏒ ᏕᏣᏓᏅᏛᎢ, ᎾᏍᎩ ᎨᏥᎪᎵᏰᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎣᏍᏛ ᎨᏒᎢ, ᎠᎴ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎧᎵᎢ ᎨᏒᎢ.\nᎿᏉᏃ ᏎᏓᏂ ᎤᏴᏎᎴ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎨᎳ ᎨᏎ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒᎢ.\n”ᎨᏍᏗ ᏍᏗᎬᏓ ᏱᎨᎵᎠ,” ᎤᏛᏁ ᎡᎶᏗ.\nᎩᎶᏍᎩᏂᏃᏅ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎾᎿ ᎡᎮ ᏌᏩᏂ ᏧᏙᎢᏛ ᎾᏍᎩ ᎾᎿ ᎦᏚᎲ ᎠᏙᏅᏗ ᏧᎸᏫᏍᏓᏁᎸᎯ ᎨᏎᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏧᏓᏅᏓᏗᏍᏔᏅᎯ ᎨᏎ ᏌᎺᎵᏱ ᎠᏁᎯ, ᎩᎶ ᎢᏳᏍᏗ ᎠᏥᎸᏉᏗ ᎠᏤᎸᏍᎨᎢ.\nᎢᏳᏃ ᏗᎨᏣᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎯᎠ ᎢᎳᏯ ᎤᎷᎯᏍᏗ ᏥᎨᏒᎩ.\nᏝᏃ ᎢᏳᏬᎯᏤ ᏂᎦᏓ ᏣᎳᎩ ᏗᏂᎪᎵᏰᏍᎩ ᏄᎵᏍᏔᏁ.\nᎿᏉᏃ ᎾᏍᎩ ᎤᎾᏛᎦᏅ ᏧᏂᎾᏫᏱ ᏚᏂᏣᏲᎴᎢ; ᎯᎠᏃ ᏂᏚᏂᏪᏎᎴ ᏈᏓ ᎠᎴ ᎠᏂᏐᎢ ᎨᏥᏅᏏᏛ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎦᏙ ᏓᏲᏣᏛᏁᎵ?\nᎤᏍᎦᎣᏅ ᎨᏎᎢ ᏫᎵᎻ.\nᎢᏳᏰᏃ ᏗᎩᎾᏫ ᎢᎩᏍᎦᏅᏨ ᏱᏗᎫᎪᏗᎭ, ᎤᏁᎳᏅᎯ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏗᎩᎾᏫ, ᎠᎴ ᎠᎦᏔᎯᏳ ᏂᎦᎥᎢ.\nᎠᎴ Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎤᎵᏂᎩᏛ ᏕᏣᏓᎨᏳᏎᏍᏗ; ᎠᏓᎨᏳᏗᏰᏃ ᎨᏒ ᏓᎫᏢᏂ ᎤᏣᏘ ᎢᏯᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ.\nᎢᎸᏍᎩ ᎢᏯᏓᏁᎸ ᏓᎾᏠᏏᎯᎲ ᏗᏓᏴᎳᏛᏍᎩ ᏧᎾᎦᏙᏍᏔᏂᏢᎢ.\nᎦᏲᏟᎨ ᏄᏍᏕ ᎩᎦ.\nᎠᏍᎦᏯᏰᏃ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᎢᏯᎬᏁᎸᎯ ᎠᏥᏅᏩᏅᎯ ᎤᎶᏒᏍᏗ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᏱᎰᏎᎢ.\nᎤᏙᏓᏆᏓ ᏓᏟᏰᎵᏙᎲ ᎡᏓᏍᏗ ᎤᎨᏓᎵᏴ ᎨᏴ ᏃᎴ ᏩᏯ.\nᎢᏳᏃ ᎾᏍᎩ ᏂᏓᏛᏓᏍᏓᏁᎲᎾᏉ ᎢᎨᏎᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᎯᏃᎲᏍᎨᏍᏗ; ᎢᏳᏍᎩᏂᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏂᏓᏛᏓᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᏅᏩᏓᎴᏉ ᏴᏫ ᎠᎴ ᎠᏰᎵᏉ-ᎠᏕᎸ ᎠᎩᏏᏙᎯ ᎾᏍᎩᏯ ᎯᏯᏓᏅᏖᏍᎨᏍᏗ.\nᏚᏅᏎᏃ ᎤᎾᎵᏥᏙᏅᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏤᏂᏢᎩ ᏧᏂᏅᏬᏗᏱ\nᎢᎦᏃ ᏄᎵᏍᏔᏅ ᎥᏝ ᎤᏍᏗᏉ ᏳᎾᏕᏯᏔᏁᎴ ᎠᏂᏯᏫᏍᎩ ᎾᏍᎩ ᏈᏓ ᏫᏄᏛᏁᏔᏅᎢ.\nᎠᏴᏍᎩᏂ ᎤᏙᎯᏳᎯ ᏚᏳᎪᏛᎢ; ᎠᏴᏰᏃ ᏕᎩᏂᎸᏫᏍᏓᏁᎸ ᏚᏳᎪᏛ ᎩᏂᏍᏛᏗᎭ, ᎯᎠᏍᎩᏂ ᎥᏝ ᎪᎱᏍᏗ ᎤᏣᏘᏂ ᎢᏳᏛᏁᎸᎯ ᏱᎩ.\nᎠᎴ ᏕᏥᎦᏘᏴ [ᎤᏁᎳᏅᎯ] ᏧᏤᎵᎦ ᏞᏍᏗ ᎤᏂᎬᏫᏳᎯ ᎾᎾᏛᏁᎲ ᏱᏂᏣᏛᏁᎮᏍᏗ, ᎦᎨᏣᏕᎶᏉᎡᏗᏍᎩᏂ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᎾᏓᏡᎬᎢ.\nᏗᏂᏲᎵᏰᏃ ᎠᏏ ᎾᎾᏕᎲᏍᎬᎾ ᎨᏎᎢ, ᎠᎴ ᎠᏏ ᎪᎱᏍᏗ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ ᎾᎾᏛᏁᎲᎾ ᎨᏎᎢ, ᎾᏍᎩ ᎤᏓᏅᏖᎸ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏧᏑᏰᏍᏗ ᎨᏒ ᎤᏲᎢᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᏗᏯᏂᏍᎩ ᎤᏓᏅᏖᎸᎢ;\nᎾᏍᎩᏃ ᎿᏉ ᎤᏂᏃᎮᏗᏱ ᏚᏂᎳᏫᏤ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ.\nᏕᏣᏅᏓᏗᏍᎨᏍᏗ ᏗᎨᎦᎸᎢᏛ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎢᏧᎳᎭ ᏥᏕᏣᎸᎣᎢ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᏲ ᎢᎨᎬᎾᏕᎩ, ᎢᏨᏒᏰᏃ ᎾᏍᏉ ᎠᏰᎸ ᎢᏤᎭ.\nᎠᎴ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᏙᏓᎦᎴᏔᏂ ᏓᎬᏔᏂ ᎤᏩᏒ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ.\nᎯᎳᏳᎢ ᏍᎩᎾᏃ ᏱᏄᎳᏍᏓᎾ, ᏍᎩᎾ. ᏣᎧᏔᎮ ᎠᏂᏣᎳᎩ ᏧᏆᎶᎩ ᏓᎾᎪᎰᏍᏗᏍᎬᎢ ᎣᎴ ᏘᎵ ᎭᏂᎳᎨᏴᎢ ᎡᎳᏗ.\nᏂᎦᎥ ᎢᎬᏩᏛᏁᏗ ᎨᏒ ᎾᏛᎦ; ᎢᎬᏱ ᎦᏰᎯ ᎦᎷᎩ ᎤᎶᏁᏗᏱ ᏥᏰᎴ ᎥᎩᏂᏐᏗᏱ ᎤᎬᏩᎵ.\nᎾᏍᎩ ᏦᎠᎾ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎵᏌ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏥᎳᏇᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏌᎳᏓᏱᎵ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏏᎳᏱ ᎤᏪᏥ ᎨᏎᎢ,\nᎬᏂᏛ ᏕᎦᏅᏅ ᏕᏍᎩᎾᏄᎪᏫᏎᎸ, ᎠᎵᎮᎵᏍᏗ ᎨᏒ ᏓᏍᎩᎧᎵᎢᏍᏔᏂ ᏣᎧᏛ ᏛᏔᏂ.\nᎿᏉᏃ ᎠᏓᏅᏙ ᎢᎾᎨ ᏭᏘᏅᏍᏔᏁ ᏥᏌ, ᎠᏍᎩᎾ ᎤᎪᎵᏰᏗᏱ ᎠᏰᎸᏎᎢ.\nᎾᏍᎩᏰᏃ ᎤᏇᏓᎵ ᏧᎾᏘᏂᏙᎯ ᎤᏇᏓᎵᏉ ᎤᏤᎵ ᎤᎬᏩᎵ ᎤᎾᎦᏌᏯᏍᏙᎢ, ᎾᏍᎩᏍᎩᏂ Ꮎ ᎠᏓᏅᏙ ᏧᎾᏘᏂᏙᎯ ᎠᏓᏅᏙᏉ ᎤᏤᎵ ᎤᎬᏩᎵ ᎤᎾᎦᏌᏯᏍᏙᎢ.\nᏞᏍᏗ ᏥᏣᏓᎳᏫᏎᎵ ᎾᏍᎩᏃ ᏂᎯ ᏞᏍᏗ ᎡᏥᎳᏫᏎᎸᎩ.\nᏴᎦᎨᏣᏂᏯ ᎭᎾᏂ.” \nᏔᎳᏚᏃ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏎᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎠᏂ ᎦᏙᎯ ᎤᎵᏏᎲᏎ ᏦᎢᏁ ᎢᏳᏟᎶᏛ ᎢᏯᏍᏖ.\nᎦᏅᎯᏓ ᎦᎾᎸ ᎤᏓᏂᏏᏅᏎ ᏔᎵᏁ ᎠᏦᏴ ᎦᎸᎳᏗᏣ.\nᎿᏉᏃ ᏚᎾᏏᏔᏕᎢ, ᎠᎴ ᎾᏍᎩ ᎨᏥᏁᎴ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\n”ᎠᏂᎦᏲᏟ ᎤᏁᏝᏅ ᏧᏬᏒᏁ ᎠᏂᏏᎾ ᏧᏂᏏᎳᏛᏗ.\nᎤᎾᏗᎦᎴᏲᏨᎯᏃ ᎠᏁᏙᎮ ᎠᎾᎵᏥᏙᏂᏙᎮ ᎣᏍᏛ ᎧᏃᎮᏛ.\n”ᎭᏗ--ᏣᏃ,” ᎤᏛᏁ ᏣᏄᏏ.\nᎤᎾᏛᎦᏅᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏂᏚᎢᏍᏓᏁᎴ ᎠᏕᎸ ᏧᏂᏁᏗᏱ. ᎤᏲᎴᏃ ᎣᏍᏛ ᎤᏜᏅᏓᏕᏗᏱ ᏧᏲᎯᏎᏗᏱ.\n“ᎣᏏᏉᏗ ᏂᏣᏍᏗ ᎠᎳᏂ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᏤᏆ ᏚᏇᏓᏢ, ᎣᏍᏓ ᎠᎵᏍᏔᏴᏗ.\nᎠᏍᏓᏯ ᏕᎩᏂᏴᏎᏍᏗ ᎬᏂᎨᏒ ᏂᎬᏁᎸ ᎤᏚᎩ ᎢᎬᏒ ᏂᎦᏜᏏᏛᎡᎲᎾ; ᏄᏓᎵᏓᏍᏛᎾᏰᏃ ᎾᏍᎩ Ꮎ ᎤᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ.\nᎢᏴᏛᏍᎩᏂ ᏅᏁᎮᏍᏗ ᎦᏪᏢᏗ ᎨᏒ ᎠᎴ ᏄᎵᏌᎶᏛᎾ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏰᏃ ᎠᏂᏁᏉᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ,\nᎠᏫᏍᎩᏂ ᎤᎾᎴᎾᎯᏛ ᎢᏏᎵ ᏏᏓᏁᎸ ᎨᏒ ᏗᏥᏩᏛᎱᎦ.\nᎾᏍᏉ ᏴᏫ ᎠᎴ ᎦᎸᎳᏗ ᎠᏁᎯ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏧᏂᏬᏂᎯᏍᏗ ᏱᏥᏬᏂᎭ, ᎾᎩᎲᎾᏃ ᏱᎩ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎥᏣᏱᏉ ᎤᏃᏴᎵᏛ ᎠᎴ ᎤᏃᏴᎩ ᎤᎭᎸᏂᎯ ᏕᎦᏤᎳᎦ.\nᎠᏂᏍᎩᎵ ᎢᎾᎨ ᎠᏁᎯ ᎬᏂᎨᏒ ᎾᎾᎵᏍᏘᏍᎪ ᏱᏓᏂᏍᎦᎬᎾ ᏴᏫ.\nᎢᏳᏍᎩᏂ ᎪᎱᏍᏗ ᏅᏩᏓᎴ ᎢᏥᏱᎵᏙᎮᏍᏗ, ᎤᎵᏁᏨᎯ ᏕᎦᎳᏫᎥ ᏓᏚᎪᏔᏅᎭ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏆᎵᏏ ᎤᏔᏲᏎᎴ ᎤᎵᏍᏓᏴᎾᏁᏗᏱ ᏭᏴᎵᏏ ᎠᏆᎵᏏ ᎦᏁᎸᎢ, ᎠᎴ ᎤᎵᎩᏳᏍᎠᏅᏁ ᎠᎵᏍᏓᏴᏗᏱ.\nᏕᏣᏅᏓᏗᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᎨᏣᎦᏌᏯᏍᏗᏕᎩ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᎨᏥᎾᏄᎪᏫᏎᎸᎯ; ᎾᏍᎩ ᏄᏍᏛ ᎤᏃᎯᏳᏒ ᎢᏥᏍᏓᏩᏗᏎᏍᏗ, ᎣᏍᏛ ᎢᏣᏓᏅᏖᎯᏌᏛ ᎨᏎᏍᏗ ᏄᏍᏛ ᏭᎵᏰᎢᎶᎸ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ,\nᎠᎴ Ꮼ, ᎤᏇᏓᎵ ᎨᏒ ᏗᎩᏙᏓ ᏕᎨᎲᎩ, ᎾᏍᎩ ᏥᎨᎩᎩᎵᏲᎢᏍᏗᏍᎬᎩ; ᎠᎴ ᎨᏗᎸᏉᏗᏳ ᏥᎨᏒᎩ; ᏝᏍᎪ ᎤᏟ ᏱᏂᏙᎬᏩᏳᎪᏗ ᏤᏓᏓᏲᎯᏎᏗᏱ ᏗᎦᏓᏅᏙ ᏧᏬᏢᏅᎯ ᏥᎩ, ᎠᎴ ᎢᎦᏛᏂᏗᏍᏗᏱ?\n ᎤᎵᏏᎩ ᏄᎵᏍᏔᏁᎢ ᏂᎬᎾᏛᎢ.\nᎦᏙᏃ ᎦᏗᎭ? ᏥᎪ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎱᏍᏗ ᎦᏗᎭ? ᏥᎪᎨ ᎾᏍᎩ Ꮎ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᏥᎸ ᎨᎳᏍᏓᏁᏗ ᎤᏁᎳᏅᎯ ᎠᏰᎸᎯ ᎪᎱᏍᏗ, ᎦᏗᎭ?\nᎠᏎᏃ ᎤᏂᏣᏔ ᎾᏍᎩ ᎢᎬᏱ ᏥᎩ, ᎣᏂ ᎨᏎᏍᏗ; ᎣᏂᏃ ᏥᎩ, ᎢᎬᏱ ᎨᏎᏍᏗ.\nᎤᏛᎦᏁ ᏫᎵᎻ ᏄᏪᏒ ᏃᎴ ᎭᎴᏉ ᏄᎴᏫᏍᏔᏁᎴ ᎤᏓᏅᏙᎩ, “ᎨᎵᎠ ᏗᏆᎸᏖᎵ,” ᎡᏝᏪᎯ ᏄᏪᏎᎴ ᎠᎦᏴᎵ ᎤᏃᏕᎾ, ᎾᎥᏂ ᎤᎦᏎᏍᏕᎢ.\nᏫᏥ ᏭᏌᏙᏰ ᎦᏍᎩᎶ ᏲᎾ ᎤᏤᏍᏙ ᏙᏱ ᏭᏓᏒᏍᏔᏁᎢ.\nᎠᎦᏕ ᎠᎵᏍᏔᏴᎲᏍᎨ, ᎤᏘᏴ ᎠᎵᏍᏓᏴᏗ ᏃᎴ ᎤᏅᏗ.\nᎠᎴ ᏥᏬᏂᏍᎬ ᎠᎴ ᎦᎵᏥᏙᎲᏍᎬᎢ ᎥᏝ ᏴᏫ ᎤᏤᎵ ᎠᏓᏍᏗᏰᏗᏍᎩ ᎠᎦᏙᎥᎪᏍᏗ ᎨᏒ ᏱᎬᏗᏍᎨᎢ, ᎠᏓᏅᏙᏍᎩᏂ ᎠᎴ ᎤᎵᏂᎩᏗ ᎨᏒ ᏄᏜᏗᏛᏒᎾ ᏂᎬᏁᎲᎢ;\nᏥᏌ ᎤᏁᏨ, ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᎠᏴ ᎨᏒ ᏱᏅᏓᎦᎵᏍᏙᏓ, ᏂᎯᏍᎩᏂ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏓ, ᎯᎠ ᎧᏁᎬ ᏥᏌᎾᏄᎪᏥᎦ.\nᎹᏗᏍᎩᏂ ᎤᏪᎵᎯᏍᏗᏍᎨ ᎤᏣᏘ ᏚᎸᏫᏍᏓᏁ-ᎲᎢ, ᎠᎴ ᎤᎷᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᏝᏍᎪ ᎪᎱᏍᏗ ᏰᎵᎭ ᎥᎩᎸ ᏣᏋᏕᏨ ᏣᎩᎯᏯᏍᏓᏁᎸ ᎠᏋᏒᏉ ᎪᎱᏍᏗ ᎢᏨᏯᏛᏁᏗᏱ? ᎾᏍᎩᎢᏳᏍᏗ ᏘᏁᏥ ᏓᎩᏍᏕᎸᏗᏱ.\nᎿᏉᏃ ᏚᏍᏚᎢᎡᎴ ᏚᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᏧᏃᎵᏍᏗᏱ ᎪᏪᎵ;\nᎤᎩᏨᏓ, ᎠᏂᏲᏍᏗᏍᎬ ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᎩᎸᏙᏗ ᏃᎴ ᏐᏈᎵ ᎠᎾᎵᏙᎩᏯᏍᎩ ᏓᏂᏴᏍᏗᏍᎬ ᏓᏆᎴᎸ ᏃᎴ ᎠᎾᏛᏁᎵᏍᎩ ᎠᏂᏝᏅᎥᏍᎬ ᎤᎾᏤᎵ ᏃᎴ ᏓᏂᎩᏍᎬ ᏧᏂᏒᏍᏗ ᏗᎦᏅᏏᏅᏍᏗ, ᎤᎵᏬᏤ ᏌᎳᏓ.\nᎾᏍᎩ ᎤᏍᏆᏂᎪᏗᏳ ᎤᏂᏰᎸᎭ, ᎾᎿ ᏂᏣᎢᏒᎾ ᎨᏒ ᎠᎾᎢᏒ ᏩᏂᎦᏛ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏲ ᎢᏯᏛᏁᎵᏓᏍᏗ ᏗᎨᏒᎢ, ᎾᏍᎩ ᎤᏐᏅ ᎨᏥᏃᎮᏍᎬᎢ;\nᎤᏔᏂᏓ ᎦᏰᏌᏛ ᏃᎴ ᎠᏎᎵᏓᏍᏙᏗ ᎦᏰᏌᏛ ᎬᏘ ᎱᏂᏴ ᎦᏅᏍᎨᏂ ᎠᏧᏣ, ᏏᎤᏣᏅᏖ.\nᎠᏂᏌ ᎠᏂᏍᎦᏯ ᎪᎰᏍᏗ ᏯᏁᎵᏍᎬᎾ ᎠᎾᏓᏅᏖᎵᏙᎰ.\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎩᎶ ᏗᎦᎸᏉᏗᏍᎩ ᏱᎩ.\nᎾᎯᏳᏃ ᏒᏃᏱ ᏫᏄᎵᏍᏔᏅ, ᎤᎬᏫᏳᎯ ᎾᎥ ᎤᎴᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᎦᎵᏍᏗ ᏣᏓᏅᏖᏍᏗ, ᏉᎳ, ᎬᏂᎨᏒᏰᏃ ᏥᏂᏍᏋᏁᎸ ᏥᎷᏏᎵᎻ, ᎾᏍᏉ ᎬᏂᎨᏒ ᏅᏓᏍᏋᏁᎵ ᏣᏂ.\nᎾᏍᎩᏃ ᎢᏳ ᎦᎶᏁᏛ ᎤᏲᎱᏒᎯ ᏕᎤᎴᎯᏌᏅ ᏯᎦᎵᏥᏙᎲᏍᎦ, ᎦᏙᏃ ᎢᎦᏛ ᎨᏣᏓᏑᏴ ᎯᎠ ᏂᎠᏂᏪᎭ, ᎥᏝ ᏧᎾᎴᎯᏐᏗ ᏱᎩ ᏧᏂᏲᎱᏒᎯ?\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎠᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᎾᏍᎩᏯᏉᏰᏃ ᏂᎯ ᏧᏁᎬ ᎢᏗᎬᏁᎸᎯ ᏓᏤᎵᏍᏛᎢ, ᎾᏍᎩ ᎦᏚᎢᏗᏢ ᎤᏙᎯᏳᎯ ᏧᏬᏚᎯᏳ ᏥᎨᏐᎢ, ᎠᏎᏃ ᎠᏫᏂᏗᏢ ᏧᎧᎵᏨᎯ ᏥᎨᏐ ᏧᏂᏲᎱᏒᎯ ᏧᏂᎪᎳ ᎠᎴ ᏂᎦᎥ ᎦᏓᎭ ᎨᏒᎢ\nᎪᎯᏍᎩᏂ ᏥᎩ ᎠᏇᏏᏗ ᏥᎷᏏᎵᎻ ᎦᏥᏍᏕᎸᎯ ᎤᎾᏓᏅᏘ.\nᎯᏎᏃ ᎢᏨᏃᏁᎭ ᎢᏓᎵᏅᏟ, ᎾᏍᎩ ᎯᎠ ᎣᏍᏛ ᎧᏃᎮᏛ ᏣᏆᎵᏥᏙᏅᎩ, ᎥᏝ ᏴᏫ ᏧᏕᏲᏅᎯ ᏱᎩ.\nᎤᏙᎯᏳ ᎠᏂᎶᏅᎮᏍᎩ ᎨᏒ, ᎾᏍᎩᏴ ᎦᎾ ᏗᎦᎳᏗᏍᎩ ᎦᎶᏇ ᏃᎴ ᎠᏓᏪᎯ ᏚᏳᎾᏍᏗ.\nᎤᏂᏩᏎᏅᏃ ᎠᏕᏒᎲᏍᎩ ᎤᎷᏤᎢ, ᎤᎾᏛᏅᎢᏍᏗᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᎦᏨᏍᏙᏗᏱ ᏭᏂᏴᎴᎢ, ᎠᎴ ᎤᏂᏍᏚᏁ ᎦᎶᎯᏍᏗᏱ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ? ᏞᏍᏗ ᎢᏥᎵᏓᏍᏔᏅᎩ; ᎾᏍᏉ ᎤᏕᎵᏛ ᏗᎾᏂᏏᎲᏍᎩ, ᎠᎴ ᎤᎾᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏗᎾᏓᏲᏁᎯ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏗᎨᏥᏰᎩ, ᎠᎴ ᎠᏂᏍᎦᏯ ᎠᏂᏍᎦᏯᏉ ᏗᏂᏐᏢᏗᏍᎩ,\nᎥᏝ ᏧᏂᏲᎱᏒᎯ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯ ᏱᎩ, ᏗᏅᏃᏛᏍᎩᏂ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏣᏘ ᎢᏥᎵᏓᏍᏗᎭ.\nᎬᎩᏚᎦ ᎢᏧᎳ ᎠᏂᎪᎢ ᎠᎴ ᏅᏩᎾᏓᎴ ᏴᏫ, ᎠᏂᎦᏔᎾᎢ ᎠᎴ ᎠᏂᎦᏔᎾᎢ ᏂᎨᏒᎾ.\nᎾᏍᎩᏴ, ᏤᎩ ᎤᏩᎭᏂᎴ ᏣᎵᏍᏙᏂ ᎠᏍᎪᎵ, ᎩᎳᏈᏴ ᎤᎯᏍᏗ ᎤᏪᎵᏎ, ᎠᏎᏃ ᎦᏲᏟᏉ ᎤᏩᎭᏂᎴ ᏚᏙᎨᏔᏁᏉ ᏃᎴ ᎤᏍᎫᏓᏁᎦᎸ ᎦᎴᏂ ᎦᎸᎳᏗᏣ ᎤᏰᏝᎴ.\nᏟᏍᏆᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏄᎬᏫᏳᏒ ᎠᏥᎦᏘᏗᏍᏗ ᎤᏬᎯᏳᏅᎩ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏂᎦᏛ ᏚᏓᏘᎾᎥᎢ, ᎤᏂᏣᏘᏃ ᎪᎵᏂᏗᏱ ᎠᏁᎯ ᎤᎾᏛᎦᏅ ᎤᏃᎯᏳᏅᎩ; ᎠᎴ ᏕᎨᎦᏬᎥᎩ.\nᎤᏛᎦᏍᏔᏁ ᎠᎹ ᏫᎦᎶᏍᎬ ᎠᏔᎴᎦᏒ ᏃᎴ ᎤᏓᏅᏖᎴ ᎭᎾ ᏫᏗᎦᎶᏍᎬ ᎠᎹ, ᏧᏆᎶᎦ ᏃᎴ ᏧᏍᏗ ᏧᏩᏂᎦᏝᏅ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎩᎶ ᏂᏚᏳᎪᏛᎾ ᎾᏛᏁᎮᏍᏗ ᎠᎩᏍᎨᏍᏗ ᎯᎠ ᎦᏚ, ᎠᎴ ᎠᏗᏔᏍᎨᏍᏗ ᎯᎠ ᎤᎵᏍᏈᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᏍᎦᏅᏤᎮᏍᏗ ᎠᏰᎸ ᎠᎴ ᎤᎩᎬ ᎤᎬᏫᏳᎯ.\nᏌᏌ ᎤᏛᎦᏍᏕᎢ ᎠᏂᏬᏂᏍᎬ ᏃᎴ ᎤᏰᏥᏍᎨᎢ.\nᎾᏍᎩᏃ ᎠᏥᏅᏏᏓᏍᏗ ᎤᎾᏝᎢ ᎤᏪᏙᎵᏤᎢ, ᎠᎴ ᎤᏪᎧᏁᎢ, ᎠᎴ ᎤᏚᎬ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎴᎢ.\nᎤᏁᎳᏅᎯᏰᏃ ᎤᏤᎵᎪᎯ ᎥᏝ ᎠᎵᏍᏓᏴᏗᏉ ᎠᎴ ᎠᏗᏔᏍᏗᏉ ᎨᏒ ᏱᎩ; ᏚᏳᎪᏛᏍᎩᏂ ᎨᏒᎢ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒᎢ, ᎠᎴ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ.\nᎤᏓᏏᏁᎢ ᏫᎵᎻ, ᏚᎦᏔᏍᏔᏁᎢ.\nᏧᏙᏓᏋᏓ ᎠᏩᏔᎰᎯᎮ ᏲᎾ ᎤᏤᏍᏙ.\nᏗᏘᎭᏁᎩ ᎠᏍᎦᏯ ᎤᏟᏂᎩᏓ, ᎡᏆ ᎤᏍᏘᏰᎩ, Major ᏚᏂᏴᎲ ᏃᎴ ᏗᎪᏚᎢᏍᏔᏅ ᏧᎭᏄᏫ, ᎢᏳᏍᏗᏉ ᎠᏂᏳᏩᏁᎦ ᏓᎾᎿᏬᏍᎬ ᎠᎹᏰᎵ.\nᎪᏪᎸᏃ ᎤᏙᎯᏳᏁᎢ ᎯᎠ ᏥᏂᎦᏪᎭ; ᎡᏆᎭᎻ ᎤᏬᎯᏳᏅᎩ ᎤᏁᎸᏅᎯ, ᎾᏍᎩᏃ ᏚᏳᎪᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏠᏱ ᎠᏥᏰᎸᎾᏁᎸᎩ. ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎤᎾᎵᎢ ᎠᎪᏎᎲᎩ.\nᏰᎵ ᏧᏕᏘᏴᏓ ᏧᎵᎬᏩᏟ ᎤᎾᏘᏲᏒ ᎤᎬᏫᏳ ᎫᏫᏍᎫᏫ ᏃᎴ ᎠᏂRidges, ᎨᏍᏗ ᎪᎰᏍᏗ ᏳᏓᎵᏍᏕᏓᎵᏴᏌ.\nᎠᎢᏒ ᏣᎵ, ᎪᎰᏍᏗ ᏤᏙᎲ ᎠᏙᎯ ᏄᎵᏍᏔᏁᎴ. ᎩᎶ ᏧᎦᏎᏍᏙ ᎤᎧᎭᏛ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᏅᏓᏳᏓᎴᏅᎯ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏰᎵ ᏴᎨᏥᏲᏍᏓ; ᏯᎵᎦᏚᏓᎩᏰᏃ ᎤᏁᎳᏅᎯᏉ ᏤᏣᏟᏴᎡᎯ ᎨᏒᎢ.\nᎨᏍᏗ ᏫᏥᎢᎦ ᎦᏓᏙᎵᏍᏗᏍᎩ ᏱᎨᏎ, ᎠᏎᏃ ᏕᎦᎦᎭᎾᏅ ᏧᏂᏲᎰᏒ ᎠᏂᏧᏣ, ᎠᏆᏓᏙᎵᏍᏔᏅ, ᎣᎭᏁ ᎢᏴ ᏤᎩᏏᏂ ᎢᏳᏍᏘ ᎦᎾᎡᏍᏘ ᎦᏃ, ᎤᏣ ᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ ᎠᏂᏧᏣ, ᏔᎵ ᎢᏯᏂᏎᏂᏏ ᏱᏚᏂᏢᎾ ᏧᏂᏍᎪᎵᏰᏗ, ᏚᏂᏲᎰᏎ ᎤᏂᎦᏌᎴᎩ ᏧᎾᏛᏐᏅ ᎤᎾᏓᏅᏖᎸ.\nᎾᎯᏳᏰᏃ ᏧᎾᎴᎯᏐᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ, ᎥᏝ ᏱᏓᎾᏕᏒᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ ᏱᏗᎨᏥᏰᎪᎢ; ᎦᎸᎳᏗᏍᎩᏂ ᎠᏁᎯ ᎨᏥᏅᏏᏓᏍᏗ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏄᎾᏍᏗ.\nᎢᎦᏓ ᎣᎯᏍᏙᏗ ᏭᎦᏖᏅᏗᎭ?\nᎠᏴ ᎤᏁᎳᏅᎯ ᏗᏣᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᏅᏤᎵᎦ. ᎣᏏᏃ ᎤᏪᎿᏪᎢ, ᎠᎴ ᎤᏍᎦᎴ ᎤᎪᎵᏰᏗᏱ.\nᏄᏓᎴ ᎤᏃᎮᎴ, ᏣᎵᏍᏙᏂ ᏭᏪᏙᎸ, ᏗᎧᎾᏩᏛᏍᏗ ᏚᏩᏛᎲ, ᎤᏩᏌ ᎤᎵᏍᏕᎸᏙᏗ, ᎦᎷᏯᏍᏗ ᎪᏍᏓᏱ ᎤᎵᏗᏨ ᎠᏰᎸᎢ ᏃᎴ ᎤᏩᏌ ᎤᏚᎵᏍᎬ.\nᎠᏂᏔᎵ ᏠᎨᏏ ᎠᏁᏙᎮᏍᏗ; ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ.\n”ᎯᎪᏩᏘᎭᏧ ᏄᏍᏛ ᏥᎪᏩᏘᏍᎬᎢ?” ᎤᏛᏛᏁ.\nᎤᏍᎪᎸ ᏫᏚᎸᏌᏛ ᏓᎶᏂᎨ ᏧᏆᎶᎬ ᏃᎴ ᏗᎦᏣᏃᏍᏔ ᏕᏧᎬ.\nᏃᎴ ᎣᏍᏓ ᎦᏬᏂ.\nᎠᎴ ᎤᎾᏠᏤ ᎢᏳᎾᏛᏁᏗᏱ; ᏂᎦᏛᏰᏃ ᏴᏫ ᎬᏩᏝᏫᏍᏗᏕᎨ ᎬᏩᏛᏓᏍᏓᏁᏗᏱ.\nᎦᏙᏃ ᎠᏛᏁᏗ? ᎠᏎ ᎤᎾᏓᏟᏐᏗ ᎤᏂᏣᏘ, ᏛᎾᏛᎦᏂᏰᏃ ᏣᎷᏨᎢ.\nᎤᎵᏂᎩᏗᏳᏃ ᎾᏂᏪᏍᎨ ᎨᏂᏪᏍᎨ ᎨᏥᏅᏏᏛ ᎬᏂᎨᏒ ᎾᏅᏁᎲ ᏕᏅᎴᎯᏌᏅ ᎤᎬᏫᏳᎯ ᏥᏌ; ᏂᎦᏛᏃ ᎤᏣᏘ ᎣᏏᏳ ᎨᎦᏓᏅᏖᏍᎨᎢ.\nᎢᏳᏍᎩᏂ ᎩᎶ ᎾᎦᏔᎲᎾ ᎢᎨᏎᏍᏗ, ᎤᏁᎳᎩᏉ ᎾᎦᏔᎲᎾ ᎨᏎᏍᏗ.\nᎡᏈᏌᏃ ᏭᎷᏨᎩ ᎠᎴ ᎾᎿ ᏚᏩᏕᎲᎩ, ᎤᏩᏒᏍᎩᏂ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏴᎸᎩ ᎠᎴ ᏚᏭᏁᏔᏅᎩ ᎠᏂᏧᏏ.\nᎤᏩᏒᎳᎲ ᎠᏰᎴᎩ, ᏚᏂᎩᏒ ᏓᏆᎴᎳ.\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎤᏁᎳᏅᎯ ᏚᏁᎸ ᎠᏓᎵᏔᏗᏍᎩ ᎠᏓᏅᏙ, ᎠᎴ ᏗᏂᎦᏙᎵ ᏗᎬᏩᏂᎪᏩᏛᏙᏗ ᏂᎨᏒᎾ, ᎠᎴ ᏗᏂᎴᏂ ᏗᎬᏩᎾᏛᎪᏙᏗ ᏂᎨᏒᎾ, ᎪᎯ ᎨᏒ ᎢᏯᏍᏗ.\nᎾᏍᎩ ᎤᎴᏅᎲᎩ ᎾᏍᎦᎢᎲᎾ ᎤᏬᏂᏒᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎾᏍᎩᏃ ᎡᏈᎳ ᎠᎴ ᏈᏏᎳ ᎤᎾᏛᎦᏁᎸ ᎤᏂᏯᏅᎲᎩ, ᎠᎴ ᎤᏟ ᎢᏲᏍᏛ ᏚᏃᏏᏌᏁᎸᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏅᏅᎢ.\n“ᎤᏙᎯᏳ ᎤᏒᎯ ᎨᏎᎢ!” \nᎾᏍᎩ Ꮎ ᎤᏚᎸᏗ ᏄᎵᏍᏓᏁᎲᎾ ᏂᏚᎩᏨᏂᏒ ᎠᏥᎸ-ᎤᏪᎳᏍᏗᏱ, ᎾᏍᎩ ᎾᎾᏛᏁᎲ ᏄᏂᏛᏁᎲ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏥᎸᎠᏁᎶᎯ, ᎢᎬᏱ ᎤᏅᏒ ᎤᏂᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ, ᎢᏉᏃ ᏴᏫ ᎤᏂᏍᎦᏅᏨ ᎠᎫᏴᏙᏗ; ᎾᏍᎩᏰᏃ ᎯᎠ ᏌᏉ ᏄᏛᏁᎴᎢ, ᎾᎯᏳ ᎤᏩᏒ ᎤᏓᎵᏍᎪᎸᏔᏅ.\nᎣᏍᏓ ᎱᏰᎸᎮ.\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎤᎬᏫᏳᎯ ᏥᏌ ᏚᏙᎥ ᏕᎨᎦᏬᏍᏔᏅᎩ.\nᏱᏂᏚᏩᏁᎰᏅ ᏓᏥᎶᏍᏗᏍᎬ, ᎤᎵᏏᏅᏗ ᎠᏗᏗᏍᎨ ᏣᎵ, ᏃᎴ ᏓᏥᎶᏍᎨ ᎤᏓᏦᏍᏗ ᏃᎴ ᎡᎳᏗ ᎤᏑᎶ ᏗᎦᏅᏍᎨᏂ.\nᏂᎦᏓ ᏧᎾᏕᎶᏆᏍᏗ ᏓᏓᏁᎳ ᎨᏙᎵᏙᎲᎢ. ᏦᎢ ᎠᏂᎨᏳᏣ ᎦᏥᎪᎥᎢ ᏙᎦᏓᏲᎵᎸ ᏃᎴ ᎣᎦᏟᏃᎮᏢ ᏄᏓᎴ ᏧᎾᏕᎶᏆᏍᏗ ᏗᎾᏕᎶᏆᏍᎩ ᎨᏒᎢ.\nᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎬᏂᎨᏒ ᎢᎬᏁᎯ, ᎯᎠ ᏂᎦᏪᎭ, ᎤᏙᎯᏳᎯᏯ ᏞᎩᏳ ᏓᏥᎷᏥ. ᎡᎺᏅ; ᎰᏩᏉ; ᏞᎩᏳ ᎯᎷᎩ ᏣᎬᏫᏳᎯ ᏥᏌ.\nᏈᏓᏃ ᎤᏓᏅᏘᏌᏅ ᎯᎠ ᏄᏪᏎᎢ; ᎿᏉ ᎦᏙᎴᎣᎯ ᎤᏙᎯᏳᎯ ᎤᎬᏫᏳᎯ ᏧᏅᏒ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᎠᏇᏓᎴᏒ ᎡᎶᏛ ᏥᏓᎩᏂᏴᏒᎢ, ᎠᎴ ᏂᎦᎥ ᎤᏚᎩ ᏧᏅᏒ ᎠᏂᏧᏏ.\nᎭᏫᏂ. ᏃᏗ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎢᏣ \nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏤᎳᏗᏙᎮᏍᏗ, ᎨᏣᎵᏍᎪᎸᏓᏁᎸᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ,\nᎢᎸᏍᎩᏃ ᏫᏄᏒᎸ ᏏᏌᎵᏱ ᎤᏂᎷᏨᎩ ᎤᎬᏫᏳᎯ ᎡᎩᎵᏈ ᎠᎴ ᏆᏂᏏ, ᎤᏂᏲᎵᎵᎸᎩ ᏇᏍᏓ.\nᎢᏳᏰᏃ ᎾᏍᎩ ᏗᎩᏲᏍᏔᏅᎯ ᎨᏒ ᏔᎵᏁ ᏱᏙᎦᏁᏍᎨᎭ, ᎠᎩᏍᎦᏅᏨᎯ ᎨᏒ ᎬᏂᎨᏒ ᏱᏂᎬᏁᎭ.\n“ᎦᏙᏃ ᎢᏳᏍᏗ ᎤᏃᎴ ᎠᏲᏙᏗ ᎠᎩᎸᏗᏍᎩ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᎦᏣᏃᏍᏓ ᎤᏩᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᎴ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᎣᏍᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏐᏅ ᏥᎨᏥᏃᎮᎭ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏥᎨᏦᏎᎭ, ᏯᎾᏕᎰᎯ ᎾᏍᎩ ᎦᏰᎪᎩ ᎨᏥᏃᎮᏍᎩ ᎣᏍᏛ ᎢᏣᎴᏂᏙᎲ ᎦᎶᏁᏛ ᏕᏥᎧᎿᏩᏗᏒᎢ ᎠᏂᏁᎢᏍᏗᏍᎩ.\nᏗᎧᏃᏗᏱ ᎠᎾᎦᎵᏍᎩ ᎾᏍᎩᏯ ᎨᏎᎢ, ᎤᏄᏩᎥᏃ ᎥᏃᏥ ᏥᏄᏁᎩᏴ ᏄᎺᎩᏰᎢ.\nᏏᏆ ᎦᏅᎪᎢ.\nᎧᏂᎩᏓ ᎤᎾᎵᎢ, ᎤᎯᏐᏓᏁ ᏃᎴ ᎤᏲᏏᏍᎩ, ᏗᎩᏏ ᎦᏓᏍᎬ ᏭᏓᏓᎩᏅᏎ ᏃᎴ ᎤᏦᏱᎴᎢ.\nᎤᎦᏔᎲᏓ ᎠᏥᎸᏳᎵ ᎾᎥᏂ ᎦᏙᎬ.\nᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏂᎷᏨ ᎯᎠ ᏂᎬᏩᏎᎸᎩ; ᎯᎦᏔᎭᏍᎪ ᎠᏂᏆᎵᏏ ᎤᏂᎿᎸᏨᎢ ᎤᎾᏛᎦᏅ ᎾᏍᎩ ᎯᎠ ᏂᏣᏪᏒᎢ.\nᏥᎪ ᎯᏐᏢᎢᏍᏗᎭ ᎢᎡᏦᏎᎭ ᎠᎦᏴᎵᎨᎢ ᎤᎸᏉᏔᏅᎯ ᎠᎴ ᎡᎶᎯ ᎤᎷᎯᏍᏗᏱ ᎤᏅᏏᏛ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᏥᎦᏛ?\nᎠᎴ ᎧᏃᎮᏛ ᎤᏇᏓᎵ ᏄᎵᏍᏔᏅᎩ, ᎠᎴ ᎢᏕᎲ ᎤᎴᏂᏙᎸᎩ, ᎤᎧᎵᏨᎯ ᎨᏒᎩ ᎤᏓᏙᎵᏣᏛ ᎠᎴ ᏚᏳᎪᏛᎢ; ᎠᎴ ᎢᏗᎪᏩᏘᏍᎬᎩ ᎤᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎦᏴᎵᎨ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ ᎤᏤᎵᎦ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᏍᎩᏍᏕᎳ!\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏂᎯ ᎢᏥᏲᎢ, ᏱᏥᏏᎾᎯ ᎣᏍᏛ ᎨᏒ ᏗᏥᏁᏗᏱ ᏗᏤᏥ, ᎤᏟᎯᏳ ᏄᏛᏅᎢᏍᏗ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᏧᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎬᏩᏔᏲᏎᎯ!\nᎢᏤ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏨᎥᏏ, ᏗᏣᏓᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩᏯ ᎢᏨᎨᏳᎢᏳ ᏄᎵᏍᏔᏅᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏗᏣᏓᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ.\nᎤᏂᎶᏐᏅᏃ ᏂᎬᎾᏛ ᎠᎹᏰᎵ ᎨᏒᎢ ᎨᏆ ᎢᏴᏛ, ᎾᎿ ᎤᏂᏩᏛᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᏧᏏ ᏆᏥᏌ ᏧᏙᎢᏛ, ᎠᏙᏂᏍᎩ, ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ,\nᎠᎴ ᎥᏝ ᏳᎦᏙᎥᏎᎢ ᎬᏂ ᎤᎾᏄᎪᏫᏒ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎠᏧᏣ, ᏥᏌᏃ ᏑᏬᎡᎢ.\nᎠᎴ ᎦᏙ ᎤᏍᏗ ᏗᏙᎵᎩ ᏂᎦᎵᏍᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ? ᏂᎯᏰᏃ ᎾᏍᎩ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏁᎳᏗᏍᏗᏱ; ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎯᎠ ᏥᏁᏪᏒ, ᎾᏍᎩ Ꮎ ᎦᏥᏯᎡᏍᏗ, ᎠᎴ ᎠᏁᎲ ᎨᏙᎮᏍᏗ; ᎠᎴ ᎠᏴ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏅᏒ ᏗᏆᏤᎵ ᏴᏫ ᎨᏎᏍᏗ.\nᎿᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᎠᎾᏓᏅᏟ ᎬᏩᏘᎿᏫᏛᎲᎩ ᏉᎳ, ᎠᎺᏉᎯ ᎢᏗᏢ ᏫᎬᏩᏘᏅᏍᏔᏅᎩ. ᏌᏱᎳᏍᎩᏂ ᎠᎴ ᏗᎹᏗ ᎾᎿᏉ ᎤᎾᏗᎩᏴᎩ.\nᏧᎾᏁᎶᏗᏃ ᏚᎾᏓᏡᏩᏗᏒ ᏚᎾᎵᏂᎪᏒᎩ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᎠᏂᎪᏙᏍᎬᎩ.\nᏃᏊᏃ ᎡᎵᏏ ᏥᎨᏒ ᎣᎦᏛᏅᎢᏍᏓᏁᎸ ᎣᎩᏒᏍᏗ ᏚᏰᏍᏛᏂᏙᎸ ᎣᎦᏅᏢᏗ ᎣᎦᏅᏢᎾᏃ ᏃᏊ Ꮩ ᏃᎦᏛᏁᎳ ᎠᏏ ᏫᏃᎩᎵᏅᏨᎾᏊ ᏂᎦᏓ ᎣᎦᏛᎦᏅ ᏪᏌ ᏂᎦᏪᏍᎬ.\nᏧᏂᏲᎱᏒᎯᏰᏃ ᏧᎾᎴᎯᏐᏗ ᏂᎨᏒᎾ ᏱᎩ, ᎿᏉ ᎦᎶᏁᏛ ᎥᏝ ᏧᎴᎯᏌᏅᎯ ᏱᎩ.\nᏃᏗ ᎡᏚᏥ ᎤᎾᎦᏙᏍᏔᏁᎢ.\nᏔᎵᏁ ᎱᎦᎾᎾ, ᎭᎧᎵᎨ ᎠᎹ ᎦᏁᎲ.\nᏫᎵᎻ ᎤᎸᏉᏗ ᎨᏎ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᏍᎩᎾᎾ ᏱᏄᏍᏗ-ᎡᏝᏪᎯ, ᎠᎦᏘᏴ ᎢᎦ ᎢᏳᎵᏍᏙᏗ.\nᎠᏂᏧᏏ ᎠᏂᎦᏔᎲ ᏥᏧᏏ ᎾᏍᎩᏯ ᎾᏆᎵᏍᏔᏅᎩ ᎾᏍᎩ ᎠᏂᏧᏏ ᎬᎩᏁᏉᏤᏗᏱ; ᎾᏃ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎤᎾᏓᏄᏴᏗ ᎠᏂᎦᏔᎲ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏣᏆᏓᏄᏴᏙ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎬᎩᏁᏉᏤᏗᏱ ᎾᏍᎩ Ꮎ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎤᎾᏓᏄᏴᏗ.\nᎦᏚᎱᎢ, ᎠᏎᏃ ᎯᎠ ᏗᎾᏔᎾᎢ ᎠᏂᎦᏴᎵ ᏣᏂᎧᏔᎮᎢ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏗ ᎨᏒ ᏚᏓᏥᎶᏚ, ᎠᏎᏃ ᎨᏍᏓᏗ ᎩᎶ ᎪᎱᏍᏓ ᏳᏛᎾ ᎱᎾᏓᏓᏰᏙᏗᏍᎬ ᏍᎩᎾ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᎬᏂᏛ ᎾᎵᏍᏆᏗᏍᎬᎾ-ᎾᏍᎩ ᎨᏣᎦᏙᎥᎯᏍᏗᏱ ᏂᎯ ᏨᏒᎯᏳ ᎤᏙᎯᏳᏒ ᏣᏁᎳᏅᎯ, ᎠᎴ ᎤᏂᎦᏙᎥᎯᏍᏗᏱ ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎩ ᎾᎯᏅᏏᏛ ᏥᎩ.\nᎾᏍᎩ ᏧᏎᎵᏔᏁ ᏧᏚᎢᏍᏓᏁᎴ ᎢᎩᎦᏴᎵᎨᎡᏆᎭᎻ,\nᎨᏍᏗ ᎠᏰᎵ ᏯᎾᏓᏬᎠ ᎦᏣᏄᎵ ᎨᏴᎢ ᎠᎹ, ᎭᎾᎾ ᎠᎾᏓᏉᏍᎪ ᎠᏁᏉᎯᎨ ᎠᏂᏣᏗ, ᎭᏂ ᏥᎾᏓᏬ ᏃᏉ!\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎪᎱᏍᏗ ᎾᏍᎪᏁᎶᏍᎬᎾ ᏛᏇᏅᏒᎩ ᏮᎩᏯᏅᎮᎸᏉ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎢᏨᏰᏛᏛᎲᎦ ᏅᏧᎵᏍᏙᏔᏅ ᏫᏍᎩᏯᏅᎲᎢ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎭᏢᏃ ᏲᏥᎩ ᎾᏍᎩ ᎢᎦᎢ ᎠᎵᏍᏓᏴᏗ ᎢᎾᎨᎢ, ᎾᏍᎩ ᎢᏳᏂᏣᏘ ᏰᎵ ᏧᏃᎸᎯᏍᏗ?\nᎠᏯᏗ ᏓᎦᎦᏎᏍᏔᏂ,” ᎤᏬᏨᏗ ᎤᏰᎸᏁ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᎬᏫᏒᏗ ᏱᎨᏎ.\nᎠᎴ ᏧᏃᏰᏂ ᎨᏣᏌᎳᏙᏗᏕᎨᏍᏗ, ᎾᏍᎩ ᎢᎸᎯᏳ ᏅᏲᎯ ᏣᎾᏍᏆᎶᏍᏙᏗᏱ ᏂᎨᏒᎾ.\n”ᎤᏰᎸᏗᏗ ᏧᏳᏩᏂᎭ ᏥᎩ ᏗᏥᏅᏍᎨᏂ,” ᎤᏛᏁ ᏌᎳᏓ.\n“Ꭳ, ᎡᎳᏆᏗ,” ᎤᏰᏤ ᎪᏱᏁᎢ.\nᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏍᎩᏂᏍᏓᏩᏚᎦ, ᏴᏫᏃ ᏗᏍᏗᎦᏯᎷᎥᏍᎩ ᏅᏓᏍᏛᏴᏁᎵ.\nᏚᏏᎳᏛ ᎤᏬᏞ ᏌᎳᏓ ᏓᎹᎦ ᎦᏯᎩᏍᎨ ᎠᏓᏅᏖᏍᎨ ᏭᏩᎦᏘᏗᏒᎢ.\nᏞᏍᏗ ᏧᎬᏩᎶᏗ ᎡᎶᎯ ᏱᏥᏟᏏᏍᎨᏍᏗ, ᏥᏍᎪᏴ ᎠᎴ ᎠᏯᏍᏜᏗᏍᎩ ᎤᏂᏲᏍᏙᏗᏱ ᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ ᎤᏂᏴᏍᏗᏱ ᎠᎴ ᎤᏂᏃᏍᎩᏍᏗᏱ;\n ᎦᏳᎳ ᎠᎾᏂᎩ ᎠᏂᏐᎢ ᏥᏍᏆ\nᎤᏚᎢᏍᏔᏁᏃ, ᎠᎴ ᎤᏲᎴ ᏧᏳᎯᏎᏗᏱ, ᎾᎯᏳ ᎤᏂᎪᏁᎸ ᎤᏂᏣᏘ.\nᎤᎵᏍᏆᎸᏗᏃ ᎨᏒᎢ ᏂᎦᏗᏳ ᏌᏉᏉ ᏂᏕᏨᏁᏍᏗ ᏕᏣᏓᏅᏛᎢ; ᏕᏣᏓᏙᎵᎨᏍᏗ; ᏕᏣᏓᎨᏳᏎᏍᏗ ᎢᏣᎵᏅᏢᎢ; ᎢᏣᏓᏙᎵᏣᏗᏳ ᎨᏎᏍᏗ; ᎢᏣᏓᏙᎵᏍᏗ ᎨᏎᏍᏗ;\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎤᏂᎬᏫᏳᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏧᎾᏤᎵᎦ, ᏗᎬᏩᎾᏁᎶᏛᏗᏱ ᎾᏅᏁᎰ ᏴᏫ; ᎠᎴ ᎾᏍᎩ ᏗᎬᏩᎾᏁᎶᏙᏗ ᎢᏯᏅᏁᎯ ᎣᏍᏛ ᎢᏗᎾᏛᏁᎯ ᎨᏍᏎᎰᎢ.\nᏐᏉ ᎦᏅᏍᎨᏂ ᏭᏬᎯᎶᏔᏁᎢ ᎠᏦᏴ ᏏᏆ ᎤᏴᏍᏗ.\nᎠᎴᏃ ᎾᏍᏉ ᎠᏴ ᎣᏤᎲ ᏂᎯᏃ ᎢᏤᎲ ᎾᎿ ᎠᏰᎵ ᎨᏒ ᎡᏉᎯᏳ ᎤᏜᏅᏛᎢ ᎪᏢᎭ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏳᎾᏚᎵᎭ ᎠᏂ ᎤᎾᏓᎴᏍᏗᏱ ᏗᏤᎲ ᏭᏂᎶᎯᏍᏗᏱ, ᎥᏝ ᏰᎵ ᏱᏅᎬᎾᏛᎦ, ᎠᎴ ᎾᏍᏉ ᎠᏂ ᎣᏤᎲᎢ ᎥᏝ ᏴᎬᏂᎷᎩ ᎾᎿ ᏅᏓᏳᏂᎶᎯᏍᏗᏱ ᏳᎾᏚᎵᎭ.\nᏥᎦᏔᎭ ᎢᏯᏆᏛᏁᏗᏱ ᎡᎳᏗ ᏱᎾᏆᏛᎿᏕᎦ, ᎠᎴ ᏥᎦᏔᎭ ᎢᏯᏆᏛᏁᏗᏱ ᎤᏣᏘ ᏯᎩᎭ; ᏂᎦᎥ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᎾᎦᎥ ᎾᏆᎵᏍᏓᏁᎵᏕᎬᎢ, ᎥᏇᏲᏅ ᎢᏯᏆᏛᏁᏗᏱ ᎾᏍᏉ ᏯᏉᎳᏅ ᎠᎴ ᎾᏍᏉ ᏯᎩᏲᏏᎭ, ᎾᏍᏉ ᎤᏣᏘ ᏯᎩᎭ ᎠᎴ ᎾᏍᏉ ᏯᎩᏂᎬᏎᎭ\nᎤᎾᏛ ᏚᏗᏨ ᏥᏍᏚ ᎤᏩᎾᏛ Ꮭ ᎫᎱᏍᏗ ᏳᏗᏠᏆᏍᏔᏁ ᏩᎭᏯ.\nᎷᎦ ᎠᏥᎨᏳᎯ ᎠᎦᎾᎦᏘ ᏫᏥᏲᎵᎦ, ᎠᎴ ᏗᎹ.\nᎿᏉᏃ ᏥᎷᏏᎵᎻ ᎾᎥ ᎤᏂᎷᏨ, ᏒᎦᏙᎯ, ᎣᎵᏩ ᎤᏌᎯᎸᎢ ᎢᏴᏛ, ᏥᏌ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᏅᏒᎩ,\nᎾᏍᎩᏍᎩᏂ Ꮎ ᎦᎶᎯᏍᏗᏱ ᎠᏴᏍᏗᏍᎩ ᎾᏍᎩ ᎠᏫ ᎤᏂᏃᏕᎾ ᏗᎦᏘᏯ.\nᎾᏍᎩ ᎢᏳᏃ ᎯᎪᎵ ᏱᏨᏔᏅ ᎬᏂᎨᏒ ᏱᏂᏴᏁᎸ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᏣᎾᏫᏱ ᎢᏴᏛ ᏱᏦᎯᏳᏅ ᎤᏁᎳᏅᎯ ᏕᎤᎴᏔᏅ ᎤᏲᎱᏒᎢ, ᎠᏎ ᎡᏣᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎠᎬᏱ ᎤᏙᏓ ᎤᏔᏪᏙᏁ, ᏃᏗ ᎤᏥ ᎤᏔᏪᏙᏁ.\nᎠᏛᏁᎵᏍᎩ ᎢᏳᏍᏗ ᎾᏛᏁᎲ ᏲᎾ, ᎠᏨᏏᏰᏍᎬ ᎪᏛ ᎾᎥᏂ.\nᎬᏂᏛᏰᏃ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅᎩ, ᎠᎴ ᎣᎩᎪᎲᎩ, ᎠᎴ ᎣᏥᏃᎮᎭ, ᎠᎴ ᎢᏨᎾᏄᏫᏎᎭ ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ ᎡᎲ ᏤᎮᎢ, ᎠᎴ ᎬᏂᎨᏒ ᎢᏲᎬᏁᎸᎯ ᏥᎩ--\n“ᎯᎠᏗ ᏂᏓᎦᏛᏁᎵ,” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ.\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᏴᎨᏦᎯᏳᎲᎦ, ᎬᏂ ᏱᏥᎪᏩᏘᎭ ᎤᏰᎸᏛᎢ ᎠᎴ ᎤᏍᏆᏂᎪᏗ.\nᎠᎴ ᎾᏍᎩ ᎢᎬᏱ ᏁᎰᎢ ᎣᏂ ᏂᎦᎥ ᏧᏓᎴᏅᏛ, ᎠᎴ ᎾᏍᎩ ᏂᎬᏂᏏᎭ ᏂᎦᎥ ᎪᎱᏍᏗ ᏤᎭ;\nᎡᎳᏆᏗ ᎭᎦᏕ ᎠᏓᏍᏕᎵᏍᎨᎢ.\nᎠᏍᎪᎯᏃ ᎤᏗᏢᏍᏙᏗ ᏄᏒᎸ ᏚᏪᎳᏗᏙᎸ, ᏏᏌᎵᏱ ᏭᎶᏒᎩ; ᎤᎩᏨᏛᏃ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸ ᎤᏬᎸᎢ ᎤᏁᏨᎩ ᏉᎳ ᏩᏥᏯᏅᏗᏱ.\nᎠᎩᎵᏏ ᏍᏉ ᎠᏌᏛᎥᏍᎩ ᎨᏎ.\nᎦᎸᎳᏗᏣ ᏫᏚᎧᎾᏁᎢ.\nᏥᎾᏬᎦ ...  ᎤᏩᏃᏪ.\nᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏩᏂᏌᏅ ᎤᏁᎳᏅᎯ ᏯᏥᎸᏉᏔᏅ, ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᏅᏓᎬᏂᏌᏂ ᎾᏍᎩ ᏓᏳᎸᏉᏔᏂ, ᎠᎴ ᎢᎳᏉ ᎢᏴᏛ ᏓᏳᎸᏉᏔᏂ.\nᎾᏍᎩ ᎦᏳᎳ ᎢᏲᎩᏪᏛ ᏥᎩ, ᎤᏠᏱᏉ ᎯᎠ ᎪᎯ ᎨᏒ ᏂᏥᏪᎭ, ᎢᏳᏃ ᎩᎶ ᎢᏣᎵᏥᏙᏁᎮᏍᏗ ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏃ ᎾᏍᎩ ᎦᏳᎳ ᏗᏣᏓᏂᎸᏨᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ.\nᏔᎵᏁᏃ ᏅᏩᎾᏓᎴ ᏧᏅᏏᏓᏍᏗ ᏚᏅᏎᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎯᎠ ᏫᏂᏗᏥᏪᏏ ᏫᎨᏥᏯᏅᏛ; ᎬᏂᏳᏉ ᎠᏆᏛᏅᎢᏍᏗ ᎠᎵᏍᏓᏴᏗ, ᏗᏆᏤᎵ ᏩᎦ ᎠᎴ ᏗᎦᎵᏦᏔᏅᎯ ᏚᏂᎸ, ᏂᎦᏗᏳᏃ ᎠᏛᏅᎢᏍᏔᏃᏅᎯ; ᏕᎨᎦᏨᏍᏗᏍᎬ ᎢᏥᎷᎩ.\nᎠᏎᏃ ᎠᏂᏆᎵᏏ ᎤᎾᏙᎴᎰᏒ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎾᎾᏛᏁ ᎨᏣᏍᏓᏩᏗᏙᎯ.\nᎾᏍᎩᏃ ᏧᎴᏅᎯ ᏣᏗᎭ, ᎦᏙ ᎦᏛᎦ, ᎢᏳᏃ ᎢᎬᏱᏱ ᎾᏍᏉ ᏧᏠᎠᏒ ᎡᎳᏗᏢ ᏕᎨᏌᏗᏒ ᎡᎶᎯ ᎤᎷᏨ ᏂᎦᏛᎬᎾ ᏱᎩ?\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏧᏁᎵᏁ ᎢᎦ ᎤᏂᎱᏍᏕᏎᎸᎭ ᎠᏲᎵ, ᎠᎴ ᏤᎦᎳᏯ ᏚᏃᎡᎢ, ᎤᏙᏓ ᏚᏙᎥ ᏚᏃᏍᏔᏁᎢ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ ᎤᎷᏤ ᎤᏪᎿᎢ ᎠᏍᎨᏯ ᎠᎵᎹᏗᏱ ᎡᎯ ᏦᏩ ᏧᏙᎢᏛ, ᎾᏍᏉ ᎾᏍᎩ ᏥᏌ ᎤᏍᏓᏩᏗᏙᎯ ᎨᏎᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏤᏯᏔᎮᏍᏗ ᏄᏍᏛ ᎢᏣᏛᎩᏍᎬᎢ, ᎩᎶᏰᏃ ᎤᎮᏍᏗ, ᎾᏍᎩ ᎠᏥᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᏄᎲᎾ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏥᎩᏒᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᏧᎰ ᏥᏅᏩᏍᏙᎢ.\nᏕᏫᏃ ᎤᏩᏒ ᎯᎠ ᏂᎦᏪᎭ ᏗᎧᏃᎩᏍᏗᏱ ᎪᏪᎵ, ᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᏥᎦᏘᏏ ᎢᏗᏢ ᏦᎴᏍᏗ,\nᏚᎭᏄᏩᎩᏐᏅ ᎤᏩᏣᏍᎬ ᏧᎭᎾᏬ, ᎤᏍᎪᎸᏨ ᏃᎴ ᎦᎸᏙᏟ ᎤᏓᏴᎳᏛ ᏅᏙ ᎠᎦᎵᏍᎬ.\n“ᎤᎵᏍᎨᏓ ᏗᎦᏃᏣᎶᏗ!”  ᏂᏧᏪᏎ ᏍᏓᏯ ᎢᎬᏁ ᎦᏬᏂᏍᎬ ᎤᏨᏉᏗ ᎢᏳᏍᏗ ᎤᏃᏴᎩ.\nᏂᎦᏓ ᎤᏬᏗᎨ ᏄᏍᏛ, ᏴᏫ ᏃᎴ ᏚᎭᏄᏮ, ᏐᏈᎵ ᏃᎴ ᏓᏆᎴᎳ, ᏃᎴ ᏌᏬᏚᎭ ᏅᏃ.\nᎠᎨᏳᏗ ᎠᏂᏲᏍᎩ ᎤᎾᏤᎵ.\nᎦᎵᏦᏕᏃ ᏫᎤᏴᎸ, ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏅᏒ ᎨᏒ ᎬᏩᏛᏛᏁᎢ, ᎦᏙᏃ ᎠᏴ ᎥᏝ ᎦᏲᏥᏄᎪᏫᏍᏗ ᏱᎨᏎᎢ? ᎤᎾᏛᏁᎢ.\nᏫᎵᎻ?”\nᎤᏲ ᎢᏳᎾᏛᎾᏕᎩ, ᏯᏂᎦᏔᎲᎾ ᎠᏕᎳ ᎤᏃᏒᏗ, ᎠᏂᏫᏒᎥᏍᎩ ᎤᎾᎵᏍᏔᏴᏗ, ᎣᎯᏍᏙᏗ ᎠᏫ ᎤᏂᎨᎲᏍᏗ ᏃᎴ ᎠᏫ ᏄᏓᏄᎸᎲ ᎡᏍᎦᏉ ᎠᏕᎳ ᎤᏃᏒᏗ.\nᎧ ᎦᏙᏃ ᎢᎡᏥᎪᎵᏰ ᎤᏁᎳᏅᎯ, ᏕᏥᎩᎳᎾᎳᏗᏍᎬ ᎠᏃᎯᏳᎲᏍᎩ, ᎾᏍᎩ ᏗᎩᎦᏴᎵᎨ ᎠᎴ ᎾᏍᏉ ᎢᎬᏒ ᏰᎵ ᎨᎦᎩᎳᎾᎳᏗᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏒᎩ.\nᎠᏌᎻᏓ ᎤᏬᏢ ᎤᎾᏲᏒ ᎤᎦᏙᏍᏛ ᎪᏛ.\nᎤᎪᏃᏂᏕᏅ ᎨᏒ ᎤᏃᏛ, ᎤᎭᎨᏛ ᎤᏍᎪᎸ ᏚᎦᏒᏍᏛ ᎤᏍᏔᎦᎸ ᎦᎸᎳᏗᏨ ᎤᎴᏫᏍᏛ, ᎤᏄᎸᏅ ᎤᏅᎪᎢᏍᏘ.\nᎯᎠ ᏄᏪᏎ ᎠᏍᏓᏯ; ᎦᏥᏃᏍᏛ ᎭᎴᎲᎦ. ᏚᎵᏔᏗᏅᏎᏃ ᎠᎴ ᎤᏪᏙᎴᎢ.\nᏭᏎᎴᎢ ᏌᎪᏂᎨ ᎠᏇᏡᏍᏗ ᎦᏓᎥ ᎡᏚᏥ ᎤᏴᏍᏗ.\nᎯᏍᎩᏃ ᏫᏄᏒᎳ ᎡᏂᎾᏯ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎷᏨᎩ, ᎠᏁᎲ ᏗᎨᎦᏁᎶᏗ, ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᏗᏘᏲᎯ-Ꭿ, ᏔᏓᎳ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎤᏂᏃᏁᎸᎩ ᎤᎬᏫᏳᎯ, ᎠᏄᎯᏍᏗᏍᎬ ᏉᎳ.\nᎠᏌᎻᏓ, ᏄᏩᏁᎰᏅ ᎬᏂᎨᏒ ᎢᎬᏁᏗ, ᎤᎷᏨ, ᎩᎶ ᏳᏑᏰᎲ ᏧᎳᏍᎩ ᎤᏛᏅ.\nᏫᏥᎷᏨᏃ ᎾᏍᎩ Ꮎ ᎣᏏᏳ ᏗᏥᏰᎸᏅᎯ, ᎾᏍᎩ ᏗᎦᏥᏯᎨᏅᏗᏍᏗ ᎨᏎᏍᏗ ᎪᏪᎵ, ᎾᏍᎩ ᎠᏂᏰᎩ ᏥᎷᏏᎵᎻ ᏂᎯ ᎢᏣᎵᏍᎪᎸᏔᏅᎯ.\nᎭᎾᎾ ᎭᏫᏂᏣ ᎠᎮᎢ ᏌᏌ ᎤᏪᏥ.\nᎠᏎᏃ ᎢᏤᏯᏔᎮᏍᏗ ᏤᏍᏗ ᎾᏍᎩ ᎢᎨᏣᏛᏁᏗ ᎢᏥᎲ ᏗᏂᏩᎾᎦᎳ ᏧᏃᏕᏍᏗᏍᎩ ᏱᏄᎵᏍᏔᏁᏍᏗ.\nᎤᏙᎯᏳ ᎢᏅᎯ ᏅᏩᏍᏕ ᎠᏙᎯ, ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏪᏙᎸ ᏱᎨᏎ ᎠᏙᎯ ᏃᎴ ᎨᏍᏗ ᏯᎦᏔᎮᎢ ᎣᏍᏓ ᎤᏰᎸᏗ.\nᏦᏞᏍᏗ.”\nᏎᎦᏨ ᎤᏓᏅᏖᎴ ᎪᏱᏁᎢ ᎤᏩᏛᎲᏍᏗ ᎦᏂᎦᏔ ᎡᎹᏂᏓ ᏃᎴ ᎤᏛᏛᏗ ᎢᏳᏍᏗ ᎢᎫᏩᏛᏁᏗ ᎨᏒ.\nᎾᏍᎩᏍᎩᏂ ᎾᎧᏃᎮᏛ ᎤᏙᎯᏳᏒ ᎢᎦ-ᎦᏘ ᎨᏒᎩ; ᎾᏍᎩ ᎡᎶᎯ ᏧᎷᏨ, ᎢᎦ ᏥᏕᎠᏘᏍᏓᏁ ᎾᏂᎥ ᏴᏫ.\nᎩᎶᏍᎩᏂ ᏧᏢᏫᏎᎯ ᏕᎫᎪᏗᏍᎪ ᎤᏍᎦᏅᏨ ᎢᏳᏃ ᏳᎵᏍᏓᏴᏅ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᏄᏬᎯᏳᏒᎾ ᎨᏒ ᎠᎵᏍᏓᏴᎲᏍᎬᎢ; ᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎪᎯᏳᏗ ᎨᏒ ᏅᏗᏓᎴᎲᏍᎬᎾ ᏱᎩ ᎠᏍᎦᏂ ᎨᏐᎢ.\nᎤᏔᎶᏁ ᏃᎴ ᏭᏥᏤᎢ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ.\nᎠᎴ ᎾᏍᎩ ᎤᏘᏃᎸᎩ ᏥᏌ ᎡᏙᎲᎢ. ᏥᏌᏃ ᏚᎧᎿᏅᎯᎠ ᏄᏪᏒᎩ; ᏌᏩᏂ ᏂᎯ, ᏦᎾ ᎤᏪᏥ, ᏏᏆᏏ ᏕᏣᏙᎡᏍᏗ; ᎾᏍᎩ ᎠᏁᏢᏔᏅᎯ ᏈᏓ ᎦᏛᎦ.\nᎤᏙᎴᎰᏒᏉᏃ ᎡᎶᏛ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎿ ᎡᏗ ᎨᏒᎢ, ᎡᎶᏛ ᏭᏪᎧᎾᎴᎢ, ᎾᏍᎩ ᎡᎶᏛ ᎤᏩᏒ ᏥᎷᏏᎵᎻ ᎡᏙᎮ ᎾᎯᏳᎢ.\nᏔᎵᏁᏃ ᎢᏌᏯ ᎯᎠ ᏂᎦᏪᎭ; ᎤᎿᏍᏕᏢ ᎦᎾᏄᎪᎨᏍᏗ ᏤᏏᏱ, ᎠᎴ ᎠᏏᏴᏫ ᏙᏛᎴᏂ ᎤᎬᏫᏳᏌᏕᎩ ᎢᏳᎵᏍᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ; ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᎬᏩᎵᏍᎦᏍᏙᏔᏂ.\nᎠᏓᏅᎡᎮᏍᏗ ᎤᏲ ᎨᏒᎢ ᎣᏍᏛᏃ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ; ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᎤᏲᎮᏍᏗ ᎠᎴ ᎾᏍᎩ ᏓᎧᎿᏩᏕᎨᏍᏗ.\nᎨᏥᏅᏏᏛᏃ ᏥᎷᏏᎵᎻ ᎠᏂᏂ ᎤᎾᏛᎦᏅ ᏌᎺᎵᏱ ᏕᎤᎾᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᏚᏂᏅᏎ ᏈᏓ ᎠᎴ ᏣᏂ ᎾᏍᎩ ᏧᏂᏩᏛᎲᏍᏗᏱ.\nᏐᏉ ᏄᎳᏏᏁ ᏔᎷᎩᏍᎩ ᎢᏣ.\nᎾᏍᎩ ᏥᏄᏍᏗ ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᏫᏨᏲᏪᎳᏁᎸᎩ, ᎠᏎᏃ ᎥᏝ ᎤᏣᏘᏂ ᎢᏳᏛᏁᎸᎯ ᏳᎬᏩᎴᎢ, ᎥᏝ ᎠᎴ ᎾᎤᏣᏘᏂ ᎢᏯᎦᏛᏁᎸᎯ ᏳᎬᏩᎡᎢ; ᎠᏍᎩᏂ ᎢᏨᏍᏆᏂᎪᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲ ᎬᏂᎨᏒ ᎢᏣᎵᏍᏓᏁᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎯᎠ ᏥᏂᎦᏪᎭ, ᎪᎯ ᎢᎦ ᎢᏳᏃ ᎧᏁᎬ ᎢᏣᏛᎪᏗᏱ ᎢᏣᏚᎵᏍᎨᏍᏗ,\nᎠᏎᏃ [ᎾᏍᎩ ᏄᎵᏍᏔᏅᎩ] ᎤᏙᎯᏳᏗᏱ ᎠᏰᎸᏒ ᎤᎵᏁᏨ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᏧᏂᎧᎿᏩᏛᏍᏗᏱ; ᎠᏎᏉ ᎬᎩᏍᎦᎬᎩ.\nᎾᏍᎩᏃ Ꮎ ᎢᎪᏢᏅᎯ ᎯᎠ ᎾᏍᎩ ᎤᎬᏩᎵ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎾᏍᏉ ᏦᎩᏁᎸ ᎠᏓᏅᏙ ᎠᎦᏗᏗᏍᏙᏗ ᎨᏒᎢ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᏰᎵᏉ ᏧᏰᎸᏅ ᎣᎦᎨᏅᏗᏍᏗᏱ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎾᏍᎩᏯ ᎣᏥᏁᎦ; ᎥᏝ ᏴᏫᏉ ᎣᏏᏳ ᎤᏂᏰᎸᏗ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎾᏍᎩ ᏗᎪᎵᏰᏍᎩ ᏥᎩ ᏗᎩᎾᏫ.\nᎦᎸᎳᏗ ᏩᏌᏅ ᏚᎵᎬᏩᏢ, ᎠᏎᏃ New Jersey ᎢᏴ ᏭᏂᏩᎯᏍᏗᏉ ᎠᏰᎵ ᎢᏴ ᎤᎾᏈᏴᏗ ᎠᎾᏗᏍᎬ.\nᏓᏍᏓᏎᎮᎵᏃ Ꭴ-ᏛᎾ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᎣᏍᏛ ᎢᎬᏁᎸᎯ; ᎾᎿ ᎢᏍᏓᏛᏅᎢᏍᏔᏅᎭ.\nᎾᏍᎩ [ᎣᏍᏛ ᎧᏃᎮᏛ] ᏥᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏴ ᎥᎩᏅᏏᏛ ᏥᎩ; ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎾᎿᏂ ᏂᏥᏍᎦᎢᎲᎾ ᎠᎩᏁᎢᏍᏗᏱ, ᎾᏍᎩᏯ ᎢᏯᎩᏪᏍᏗᏱ ᏥᏚᏳᎪᏗ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎾᎯᏳ ᏂᎦᏗᏳ ᏴᏫ ᎣᏏᏳ ᎨᏥᏃᎮᏍᎨᏍᏗ! ᎾᏍᎩᏯᏰᏃ ᏧᏂᎦᏴᎵᎨ ᏂᏚᏂᎸᏉᏕ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ.\nᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ, ᏓᎾᏗᏔᏍᎨᎢ, ᏓᎾᏕᏒᎲᏍᎨᎢ, ᏕᎨᏥᏰᎨᎢ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᏃᏯ ᎤᏣᏅ ᏥᏳᎯ, ᎠᎴ ᎤᏃᎱᎦᏂᎸ ᎠᎴ ᏂᎦᏛ ᏚᏂᎬᏦᏅ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ ᏄᏪᏒᎩ ᎠᏥᎪᎵᏰᏍᎬᎩ, ᎤᏩᏒᏰᏃ ᎠᎦᏔᎲᎩ ᎢᏳᏛᏁᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᏓᏅᏟ, ᎢᏨᏒ ᎢᏣᏓᏡᎬ ᏗᏣᏑᏯᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎣᏍᏛ ᎨᏥᏃᎮᏍᎩ ᎤᏂᎧᎵᏨᎯ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᎴ ᎠᏂᎦᏔᎾᎢ, ᎾᏍᎩ ᎯᎠ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏗᎦᏲᏥᏁᏤᏗ.\nᏂᎯ ᏥᏔᏲᎯᎲ ᏰᎵᏉ ᎠᎩᏲᎰᏎᏗ ᎬᏅ, ᎨᏍᏗ ᏰᎵ ᏱᏗᏣᎭ ᎠᏂᏩᏥᏂ ᎠᏕᎳ ᏍᏆᏈᏴᎡᏗ ᎠᎩᏲᎰᎡᎸ.\nᏚᏂᎪᎮᏃ ᏔᎵ ᎢᏧᏓᎢ ᏗᎦᏃᎦ ᎠᏥᎸ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎾᏍᎩ ᏚᏂᏯᎸᏤ ᎠᏂᏏᏴᏫᎭ ᎨᏒᎢ.\nᏥᏌᏃ ᎤᎾᏘᏃᎮᎴᎢ; ᏧᎾᏄᏬᏃ ᎠᎩᎾ ᎦᏐᎯ ᏚᏂᏢᏁᎢ, ᎠᎴ ᎾᎿ ᎤᎾᎩᎸᏔᏁ ᏥᏌ.\nᎠᎴ ᎢᏣᏟᏂᎬᏁᏗᏱ ᏅᏩᏙᎯᏯᏛ ᎢᏣᏕᏗᏱ, ᎠᎴ ᎢᏨᏒ ᎢᏣᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᎢᏨᏒ ᏗᏦᏰᏂ ᏗᏨᏙᏗᏱ ᎪᎱᏍᏗ ᎢᏣᏛᏁᏗᏱ, ᎾᏍᎩᏯ ᏂᏨᏪᏎᎸᎢ;\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏂᎦᏛ ᎤᎿᎥᎢ ᏛᎦᏘᏗᏍᏔᏂ.\nᏥᏌᏃ ᎤᏛᎦᏅ ᎤᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴ ᎤᏓᎬᏩᏍᏓᏩᏛᏛ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎾᏍᏉ ᎢᏏᎵ ᏚᏙᎥ ᎾᏍᎩ ᎢᎦᎢ ᎪᎯᏳᏗ ᎨᏒ ᏯᎩᏩᏛᎲ.\nᎦᏄᎸ ᎤᏔᎷᎩᏍᎩ ᎠᏰᏍᏓᎥᎢ ᎢᏳᏍᏗ ᏄᏍᏕᎢ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ, ᏖᎸᎳᏗ ᏓᏫᏒ ᎤᏤᎵᎦ ᎯᎠ ᏄᏪᏎᎴ ᎠᏕᎸ ᎤᎦᏘᏕᎯ, ᏫᏘᏯᏅ ᎪᎱᏍᏗ ᎠᎾᏛᎾᎯ ᎠᎴ ᏔᎫᏴᏏ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ, ᎣᏂᏱ ᎨᏥᏅᏒᎯ ᏔᎴᏅᏓ ᎢᎬᏱᏱᏃ ᎨᏥᏅᏒᎯ ᏘᏍᏆᎸᏓ\n“ᎪᎱᏍᏗᎨ ᏓᏨᎩᎡᎵ? \nᏥᎪᏩᏛ ᎠᏕᎸ ᎠᏰᎵ ᎠᎫᏴᏙᏗ. ᎠᎩᏏᏃ ᏧᎬᏩᎶᏗ ᎬᏩᏲᎮᎸᎩ.\nᎠᏎᏃ ᎢᏓᏓᏅᏟ, ᏭᏓᎪᎾᏛᏛᎢ, ᏞᏍᏗ ᏱᏣᏎᎵᏛᏍᎨᏍᏗ ᏱᏥᏁᎢᏍᏗᏍᎨᏍᏗ ᎦᎸᎶᎢ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᏞᏍᏗ ᏄᏓᎴᏒᏉ ᎠᏎᎵᏙᏗ ᎨᏒᎢ; ᎠᎴ ᏞᏍᏗ ᏄᏓᎴᏒᏉ ᎠᏎᎵᏙᏗ ᎨᏒᎢ; ᎢᏣᏤᎵᏍᎩᏂ ᎥᎥ ᎢᏣᏛᏗ ᎨᏒ ᎥᎥ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏣᏤᎵ ᎥᏝ ᎢᏣᏛᏗ ᎨᏒ ᎥᏝ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ ᏞᏍᏗ ᏤᏧᎪᏓᏁᎸᎩ ᎢᏥᏍᎦᏅᏨᎢ.\nᎨᏆᏂᏃ ᏭᏂᏴᎴᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏭᏴᎸ ᏚᏕᏲᏁ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ.\nᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎦᏙ ᎤᏍᏗ ᎤᏙᎯᏳᏒ ᎨᏒᎢ? ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏒ, ᏔᎵᏁ ᎤᏄᎪᏨᎩ ᎠᏂᏧᏏ ᎠᏂᏙᎾᎥ ᏭᎶᏒᎩ, ᎠᎴ ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᏱᏥᏩᏘᎭ ᎤᏍᎦᏅᏨᎢ.\nᏚᎳᏫᏛᏃ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ, ᎠᎴ ᏴᏫ ᏗᏃᏪᎳᏁᎯ, ᏚᏛᏛᏁᎢ, ᎾᎿ ᎤᏕᏗ ᎨᏒ ᎦᎶᏁᏛ.\nᎤᏙᎯᏳᎯᏯ ᎠᎩᎪᎲ ᎤᏲ ᏄᎾᎵᏍᏓᏁᎵᏕᎬ ᏴᏫ ᏗᏆᏤᎵ ᎢᏥᏈᏱ ᏣᏁᎭ, ᎠᎴ ᎠᏆᏛᎦᏅ ᏚᏂᎵᏰᏗᏍᎬᎢ, ᎠᎴ ᎠᏆᏠᏱᏏᎸ ᏕᎫᏓᎴᏏᎸ; Ꭷ ᎿᏉ ᏓᎬᏅᏏ ᎢᏥᏈᏱ.\nᏓᎦᏥᏯᏙᎵᏥᏰᏃ ᎤᏣᏘᏂ ᏄᎾᏛᏁᎸᎢ, ᎤᏂᏍᎦᏅᏨᏃ ᎠᎴ ᎤᏲ ᏄᎾᏛᏁᎵᏙᎸ ᎿᏉ ᎠᏆᏅᏓᏗᏍᏗ ᏱᎨᏎᏍᏗ.\nᎵᎧᎸᎩᏉᏰᏃ ᏅᏙ ᎤᏗᎴᎩ, ᎿᏉ ᎬᏴᏗᏍᎪ ᎧᏃᏍᎦ, ᎠᎴ ᎤᏥᎸᏒ ᎦᏙᎠᏍᎪᎢ, ᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᎤᏙᏢᏒ ᎠᏲᎪᎢ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎤᏪᎿᎢ ᏓᎬᏴᏏ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎬᏂᎨ ᎠᏙ ᏂᎬᎾᏛ.\nᎠᎴ ᏚᎴᏁ ᎤᏙᏓ ᏭᎷᏤᎴᎢ. ᎠᏎᏃ ᎠᏏ ᎢᏅᎯᏳ ᎤᏙᏓ ᏭᎪᎮᎢ, ᎠᎴ ᎤᏪᏙᎵᏤᎢ, ᎠᎴ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᎠᎩᎵᎨᏂ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ.\nᎾᎿᏃ ᎠᏔᎴᏒᎩ ᎠᎹ ᏧᏂᏢᏗᏱ ᏤᎦᏈ ᎤᏤᎵᎦ; ᏥᏌᏃ ᏚᏯᏪᏨ ᎠᎢᏒ ᎤᏪᏅᎩ ᎠᏔᎴᏒᎢ; ᏔᎳᏚᏃ ᎢᏴᏛ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏒᎩ.\nᎠᎴ ᎥᎩᏃᏁᎸ ᎠᏂᏧᏏ ᎤᏂᎭᎷᎬ ᎾᏍᎩ ᎠᏍᎦᏯ, ᎩᎳᏉ ᎢᏴᏛ ᎠᏆᏓᏅᏒ ᏗᏦᎸᎢ, ᎠᎴ ᎾᏍᏉ ᎦᏥᏁᏤᎸ ᎬᏬᎯᏍᏗᏍᎩ ᎯᎦᏔᎲ ᎤᏂᏃᎮᏗᏱ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏄᎯᏍᏗᏍᎬᎢ. ᏙᎯᏱ ᏂᏣᏛᎿᏕᎨᏍᏗ.\nᎠᏎᏃ ᎣᎦᏕᏲᏅ ᏧᏍᎦ ᏡᎬ ᏝᏃ ᎥᏍᏊ ᎪᎱᏍᏗ ᎤᎩᎸ ᏲᏥᎪᎡ.\nᎠᏎᏃ ᎢᎬᏩᏍᏗᏰᏔᏁᎢ, ᎯᎠ Ꮔ-ᏴᏪᏎᎢ, ᎠᏴ ᏍᎩᏂᏒᏏ, ᎿᏉᏰᏃ ᎤᏒᎯᏰᎯᏳ, ᎠᎴ ᎡᎳᏗᏳ ᏫᎧᎳ. ᎤᏴᎴᏃ ᏙᏗᏒᏎᎵᏎᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᏫᏂᎦᎵᏍᏙᏓ ᏂᎯ ᎢᏣᎵᎮᎵᎩ ᎠᎴ ᏍᎩᏯᎵᎪᎲᏏ ᎠᏴ ᎦᎵᎡᎵᎬᎢ.\nᎢᏳᏰᏃ ᏌᏉ ᏴᏫ ᎤᏍᎦᏅᏨ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏰᎭ ᎾᏍᎩ ᎠᏏᏴᏫ ᎢᏳᏩᏂᏌᏛ; ᎤᏟᎯᏳ ᏄᏓᎷᎸᎾ ᎾᏍᎩ ᎤᏣᏘ ᎨᏥᏁᎸᎯ ᏥᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎬᏩᎦᏘᏯ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎬᏂᏛ ᏗᎨᏒ ᎤᏂᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏏᏴᏫ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ.\nᎯᏍᎩ ᎦᏚ ᏓᎩᎬᎭᎷᏴ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᏕᏥᏁᎸ, ᎢᎳᎪ ᎢᏯᎧᎵᎢ ᏔᎷᏣ ᎤᎵᎬᎭᎷᏴᎯ ᎢᏧᏖᏎᎢ? ᏔᎳᏚ ᎢᎬᏬᏎᎴᎢ.\n”ᎭᏗ ᎪᎱᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏗᏆᎵᎢ ᎠᏁᎰ ᎭᎾᎾ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏓ.\nᏄᏂᏩᏛᎲᎾᏃ ᎨᏎ ᏰᎵ ᎬᏩᏲᏞᎯᏍᏗ ᎨᏒᎢ, ᎠᏎᏃ ᎤᏂᏔᏲᏎᎴ ᏆᎴᏗ ᎾᏍᎩ ᎠᏥᎢᏍᏗᏱ.\nᎢᏳᏰᏃ ᎢᏤᎲ ᎤᏇᏓᎵ ᎨᏒ ᎢᏥᏍᏓᏩᏗᏙᎮᏍᏗ, ᏙᏓᏥᏲᎱᏏ; ᎢᏳᏍᎩᏂ ᎠᏓᏅᏙ ᎬᏗ ᎠᏰᎸ ᏚᎸᏫᏍᏓᏁᎲ ᎢᏥᎯᎮᏍᏗ, ᏕᏨᏁᏍᏗ.\nᎤᏁᏅᏎᏃ ᎠᎴ ᏂᎬᎾᏛ ᎤᎾᎵᏥᏙᏂᏙᎴᎢ, ᎤᎬᏫᏳᎯ ᏔᎵ ᎤᏛᏗᏕᎨ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎠᏂᏁᎬ ᎠᏍᏓᏱᏗᏍᏗᏍᎨ ᎤᏰᎸᏛ ᎤᎵᏠᏯᏍᏗᏕᎬᎢ. ᎡᎺᏅ.\nᎢᏳ ᎠᎴ ᎯᎦᏙᎵ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ ᎠᎴ ᏫᏣᏕᎨᏍᏗ; ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉ ᏱᎧᎿ ᎬᏂᏛ ᏗᎨᏒ ᏫᏱᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏱᏘᎧᎿ ᏨᏍᎩᏃᎢ ᎠᏥᎸᏱ ᏫᏰᏣᏓᎢᏅ.\nᎾᎿᏃ ᎠᏂᏯᏒ ᏂᎦᏛ ᏧᎾᏓᎴᏅᏛ ᏅᎩ ᏗᏂᏅᏌᏗ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ.\nᏚᎪᎲᏃ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏤᎾ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎬᏂᎨᏒ ᏫᏂᏗᏣᏛᏂᏏ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎠᎾᎢᏒᏉ ᏚᎾᏓᏅᎦᎸᎮᎢ.\n“ᎨᏍᏗ ᎠᏯ ᎠᏆᏣᏅᏓᏕᎲ ᏯᏍᏆᎵ ᎠᎾᏓᎪᎾᏗᏍᎬ.\nᎾᎿᏃ ᎢᎤᏓᏅᏒ, ᏧᏂᎳᏫᎢᏍᏗᏱ ᏭᏴᎸᎩ.\nᎤᏛᎦᏍᏕ ᏫᎵᎻ, ᎤᏓᏅᏙᎩ ᎤᎧᎵᏤ ᎠᏓᎨᏳᏗ.\nᏕᏥᎳᏫᎩᏰᏃ ᎢᎸᎯᏢᎢ, ᎥᏝ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎠᎵᏍᏓᏴᏗ ᏱᏣᎵᏍᏓᏴᏂᎰᎢ.\nᏳᏰᏃ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎣᏤᎭ ᎠᎴ ᏱᎧᏁᏉᎦ, ᎾᏍᎩ ᏱᏂᎬᏂᏌ ᎥᏝ ᎢᏥᏍᎦᏃᎸ ᎠᎴ ᏂᏥᏁᏉᏣᏛᎾ ᏱᎦᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ.\nᎾᏍᎩ ᏤᏌᏂ ᏚᏓᏂᎸᏨ; ᎠᎴ ᎾᏍᎩ ᏂᎦᏛ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᎾᏡᏗᎭ ᏏᏌ ᎤᏁᏨᎢ, ᎯᎠ ᎾᏂᏪᎭ; ᏅᏩᏓᎴ ᎤᎬᏫᏳᎯ ᎡᎭ, ᎾᏍᎩ ᏥᏌ.\nᎠᎵᎮᎵᎨ ᏕᎦᏟᏔᏗᏍᎬ ᏍᎪᏯ ᎠᎬᏱ ᎩᎳ ᏕᎦᏯᎩᏍᎨᎢ.\nᏂᎦᏓ ᏚᏂᏁᎸ ᎨᎦᎫᏴᎡ ᎠᎾᏕᏒᎲᏍᎩ ᎤᏃᏴᎬ ᎧᏃᎩᏍᏗ, ᏃᎴ ᎦᎾᏅᎪᎬ ᎠᏒᎬ ᎠᏙᏁᏙᏗ ᏃᎴ ᎠᎵ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏫᏯᎩᎷᏨ ᏓᎦᏅᏓᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩ ᎤᏲ ᎦᏬᏂᏍᎬᎬᏗ ᏦᎦᏡᏗᎭ, ᎠᎴ ᎥᏝ ᎾᏍᎩᏉ ᏰᎵ ᏳᏰᎸᎭ, ᎥᏝᏰᏃ ᏂᏓᏓᏂᎸᎬᎾᏉ ᎤᏩᏒ ᏱᎩ ᎠᎾᏓᏅᏟ, ᎾᏍᏉᏍᎩᏂ ᏕᎦᏅᏍᏓᏕᎭ ᏗᎬᏩᎾᏓᏂᎸᎢᏍᏗ ᏥᎨᏒᎢ, ᎠᎴ ᏕᎦᏄᎪᏫᏍᎦ ᏧᎾᏁᎶᏗ ᎤᏁᏓᏡᎬ.\nᎥᏝᏃ ᏳᏣᏖ ᎤᏍᏆᏂᎪᏗ ᎾᎿ ᏱᏚᎸᏫᏍᏓᏁᎴᎢ, ᎾᏃᎯᏳᎲᏍᎨᎾ ᎬᏒ ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏅᏫᏍᏔᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏥᏳᎯ ᎤᎾᏦᏗᏱ, ᎠᎴ ᎢᎬᏱ ᏧᏂᏐᎯᏍᏗᏱ, ᏇᏤᏱᏗ ᏭᏂᎷᎯᏍᏗᏱ, ᎠᏏᏉ ᎤᏩᏒ ᏓᏰᎵᎯᏍᏗᏍᎬ ᎤᏂᏣᏘ.\nᎠᏏᏃ ᎤᎪᏂᏲᎨ ᎠᏕᏒᎲᏍᎩ, ᏂᎦᏛ ᎠᏂᎵᏅᎨᎢ, ᎠᎴ ᎤᏂᎵᏅᏤᎢ.\nᏔᎵᏁ ᎢᏣᏕᏅᎯ ᎨᏒᎢ, ᎥᏝ ᎠᏲᎩ ᎤᎦᏔ ᎢᏣᏕᏔᏅᎯ ᏱᎩ, ᎠᏲᎩᏍᎩᏂ ᏂᎨᏒᎾ ᎧᏃᎥᏛ ᎤᏁᎳᏅᎯ ᎤᏟᎵ ᎢᏳᏩᏂᏌᏛ ᎾᏍᎩ ᎬᏃᏛ ᏥᎩ ᎠᎴ ᏂᎪᎯᎸ ᎡᎯ ᏥᎩ.\nᏰᎵ ᎣᏍᏓ ᎤᏓᏅᏖᏗ ᎨᏎ, ᏍᎩ ᎤᏛᏅ.\nᏚᎧᏔᎾᏫᏍᏔᏅ ᏧᏍᏗ ᏧᏁᎫᏥᏓ ᏗᎧᏅ ᎭᏫᏂᏨ ᎤᎵᏍᎩᏃᏘᏍᏗ ᎤᏁᎦ ᎤᏍᏘᏰᎬ. ᏃᎴ ᎨᏍᏗ ᎣᏍᏓ ᏯᎩᎪᎵᏰ, ᎠᏓᏅᏖᏍᎬ ᎾᏍᏓᏴ ᎠᎩᏍᏘ ᎦᎶᏇ ᎬᏘ ᏲᎩᎾᏟᎳ ᎠᎴ ᎠᏰᎳᏍᏘ ᎬᏘ ᏲᎩᎾᏟᎳ ᏧᎾᏗᏔᏍᏗ. ᎢᏧᎳ ᏧᏍᏆᏙᏅ ᎨᏎ ᏓᏟᎲ ᎠᏫᏄᏣ ᏃᎴ ᎤᏛᏒ ᏥᎨᏎ.\nᎠᏓ ᎠᏲᏍᏗᏍᎩ ᎤᏉᏓᏘ, ᎦᏓ ᏫᏂᎦᎵᏍᏗ.\n”ᎣᏍᏓᏧ ᏣᏰᎸᎮ ᏪᏙᎲ ᏗᎾᏓᎪᎾᏗᏍᎬ?” ᎤᏛᏛᏁ ᎤᏤᎵ ᎠᎨᏳᏣ ᎠᏔᏪᏙᏍᎬ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᎤᏟ ᎢᎦᎢ ᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᏄᏜᏏᏛᏒᎾ ᎢᏨᏁᏗᏱ ᎡᏥᏯᏅᎲ ᎠᎴ ᎡᏣᏑᏰᏒᎢ; ᎢᏳᏰᏃ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏱᏂᏣᏛᏁᎭ, ᎥᏝ ᎢᎸᎯᏳ ᏱᏙᎨᏥᏅᎩ.\nᎤᏲ ᎢᏣᏓᏅᏓᏓ ᎠᎴ ᏗᏥᏴᎳ ᎠᎴ ᏗᏣᏠᏱᎦ; ᎢᏥᏰᏣᏍᎬᎢ ᎠᏴᎵᏍᏗ ᎨᏒ ᏩᏓᏁᏟᏴᏍᏓ, ᎠᎴ ᎢᏣᎵᎮᎵᎬ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏩᏓᏁᏟᏴᏍᏓ.\nᎠᎴ ᏕᎭᏓᏅᎡᎮᏍᏗ ᎩᎳ ᏗᎾᏛᏍᎩ ᎤᎾᏚᎸᏅᏗ ᎨᏒᎢ; ᎯᏍᏓᏩᏕᎨᏍᏗᏃ ᏚᏳᎪᏛ ᎨᏒ, ᎠᎴ ᎪᎯᏳᏗ ᎨᏒ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏒᎢ, ᎢᏣᎵᎪᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᎤᎾᏫ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏅᏗᏍᎩ.\nᎯᎠᏃ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎠᎩᎵᏲᎢᏍᏗᏱ ᏗᎨᏒ ᏮᏛᏂᎶᏏ; ᎤᎾᏓᏅᏘᏍᎩᏂ ᏫᎾᏍᏛᎾ ᎬᏂᏛ ᏗᎨᏒᎢ.\n”ᎨᏍᏗ ᎠᏆᏁᎸᏔᏅ ᏱᎩ.”\nᏚᏁᏤᎴᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎾᏍᎩ ᏥᏳ ᎤᎦᏘᏗᏍᏗᏱ, ᎤᏂᏣᏘ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎬᏩᏁᏄᎳᏍᏙᏗᏱ ᏂᎨᏒᎾ.\nᎠᏉᏠᎢᏉ ᏥᎦᏘᏲ.\nᎠᎦᏍᎩ ᏗᎦᏙᎨ ᏣᏄᏏ, ᎠᏑᏰᏍᎨ ᏑᎾᎴ ᎠᎵᏍᏔᏴᏗ.\nᏞᏍᏗ ᎠᎴ ᎡᎶᎯ, ᏧᎳᏏᏗᏱᏰᏃ ᎾᏍᎩ; ᎠᎴ ᏥᎷᏏᎵᎻ, ᎾᏍᎩᏰᏃ ᎠᏥᎸᏉᏗ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎦᏚᎲᎢ;\n”ᏥᏓᎯ ᎠᏋᏌ ᎠᏇᏅᏍᏗ ᎡᎶᎯ,” ᎤᏪᎵᏎ ᎤᏂᏏᎾ.\nᎾᏍᎩᏂ ᎥᎰᎵ ᏅᏓᏳᏄᎪᏨᎯ ᎣᎾᏫᏱ ᏗᏓᎴᎲᏍᎪᎢ, ᎾᏍᎩᏃ ᎦᏓᎭᏄᏩᏁᎰ ᏴᏫ.\nᎡᏆ ᎤᏔᎶᏁ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᎪᎵ ᏣᎵ, ᎤᏛᎦᏍᏕ ᎠᏂᎾᏁᏍᎬ ᎠᎾᏓᎭᏲᎯ, ᎠᏎᏃ ᏧᏤᎵ ᏴᏫ ᎠᏂᎾᏁᏍᎬ ᎨᏍᏗ ᎫᏩᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᎢᏴ ᏗᎾᎢᏒ ᎠᎾᏓᎭᏲᎯ.\n”ᎦᎵᏉᎩ ᎾᏂᎠ,” ᎤᏛᏁ ᏌᏌ.\nᏚᎾᎧᎾᏅᏃ ᎥᏝ ᎩᎶ ᏳᏂᎪᎮ ᏥᏌ ᎤᏩᏒ.\nᏚᏂᎩᏒᏃ ᎠᏕᎸ, ᏂᎨᏥᏪᏎᎸ ᏄᎾᏛᏁᎴᎢ. ᎾᏍᎩᏃ ᎯᎠ ᎧᏃᎮᏛ ᎠᏏ ᎠᏂᏃᎮᎵᏙᎭ ᎠᏂᏧᏏ.\nᎤᎾᏁᎶᏔᏁᏃ ᎬᏩᏂᏴᏗᏱ, ᎠᏎᏃ ᎤᏂᏣᏘ ᏴᏫ ᏓᏂᏍᎦᎢᎮᎢ; ᎠᏂᎦᏔᎮᏰᏃ ᎤᏅᏒ ᎨᏥᏛᎬ ᎾᏍᎩ ᏚᏟᎶᏍᏔᏅᎢ; ᎢᎬᏩᏓᏅᎡᎴᏃ ᎠᎴ ᏚᏁᏅᏎᎢ.\nᎩᎶᏰᏃ ᎢᏳᎾᏍᏗ ᎠᏂᏍᎦᏯ ᎤᏕᎵᏛ ᎤᏂᏴᎸᎯ ᎢᎩ ᎾᏍᎩ ᎢᎸᎯᏳ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏗᎨᎪᎥᎯ ᏥᎩ ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎨᎫᎪᏓᏁᏗᏱ; ᎤᏁᎳᏅᎯ ᏂᏚᎾᏁᎶᏛᎾ ᎠᏂᏍᎦᏯ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᎠᏂᏁᏟᏴᏍᎩ ᎾᎵᏏᎾᎯᏍᏛᎾ ᎠᎴᏂᏓᏍᏗ ᎨᏒ ᎢᏯᏅᏁᎯ, ᎠᎴ ᎠᎾᏓᏱᎯ ᎤᏩᏒᎯᏳ ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᎤᎧᏲᏓ ᏄᎵᏍᏔᏁ ᏓᏏᎳᏛ, ᎨᏍᏗ ᏍᎩᏲᏍᏓ ᎠᎪᏩᏛᏗ ᏱᎨᏎ ᏕᎪᏪᎸ.\n“ᏑᎾᎴ ᏕᎾᏓᎪᏴᏳ.” \nᎤᎵᏍᎨᏓ ᏏᏆ ᏫᎵᎻ ᎡᎵᎠ ᎰᎻ, ᏃᎴ ᎨᎵᎠ ᏱᎫᏩᏚᎵ ᎤᎯᏍᏗ ᎠᎴ ᎤᏩᏯᎩᏍᏗ.\nᎠᏎᏃ ᎨᏍᏗ ᎩᎶ ᏳᎪᏩᏛ ᏌᎳᏓ.\nᏗᎹᏗ ᎢᏧᎳᎭ ᏦᎩᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎷᏏᏯ, ᎠᎴ ᏤᏌᏂ, ᎠᎴ ᏐᏏᏇᏓ ᎪᎱᏍᏗ ᏗᏋᏅ, ᏫᎨᏥᏲᎵᎦ.\nᎠᏁᎭᏰᏃ ᎠᏂᎾᎵ ᏅᏩᎾᏍᏙ ᏧᏂᏥ ᎬᏩᏂᎾᏄᎪᏫᏒ, ᎠᎴ ᎠᏁᎭ ᎠᏂᎾᎵ ᏴᏫ ᎬᏩᏂᎾᎵᏛᎯ, ᎠᎴ ᎠᏁᎭ ᎠᏂᎾᎵ ᎤᏅᏒ ᎤᎾᏓᎾᎵᏛᎯ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏗᎵᏰᎢᎸᏍᏗᏍᎬᎢ. ᎩᎶ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏓᏓᏂᎸᎨᏍᏗ.\nᎠᎴ ᎢᏧᎳ ᏚᏳᎪᏛ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎨᏎ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏅᎢ, ᏓᏂᎧᎿᏩᏗᎭ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎤᎵᏁᏨ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎨᏒ ᏱᎰᏩ ᏧᏤᎵᎦ, ᎤᏐᏅ ᏂᎨᏥᎳᎾᏎᎲᎾ.\nᎠᏏᏴᏫᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎠᏂᎦᏲᎵᏉᏍᎪ ᎨᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ,\nᎿᏉᏃ ᎤᎾᏓᏟᏌᏅ ᎬᏩᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎿᏉᏍᎪ ᎠᏰᎵ ᎪᏢᏒ ᏙᏛᎯᏁᎵ ᎢᏏᎵ?\nᎠᏤ ᎡᎾᎢ ᎠᏂᎩᏍᎪ ᏃᎴ ᏧᎾᏗᎩᏓ ᏓᏂᎯᏯᏍᎪ ᎦᏙᎯ.\nᎣᏍᏛ ᏗᏁᎶᏙᏗ ᎨᏒ ᎠᎴ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎦᏔᎲ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎯᎠ ᏄᏍᏗ, ᏗᏩᏛᎯᏓᏍᏗᏱ ᏧᎾᏓᏂᏯᏛ ᎠᎴ ᏧᏃᏑᎶᏨᎯ ᎤᏲ ᏄᎾᏛᎾᏕᎬᎢ, ᎠᎴ ᎤᎵᏍᏆᏂᎪᏙᏗᏱ ᎤᏩᏒ ᏄᏚᏯᏍᏛᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎡᎶᎯ ᎠᏁᎯ ᏄᎾᏍᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎨᏒᎾ.\nᏃᏊᏃ ᎩᎦᎨ ᏧᏂᏥᎸᏍᎩ ᎤᏂᏥᎸᏙᏎᎢ ...\nᏚᏓᏟᏴᎮᎢ ᏫᎵᎻ.\nᎿᏉᏃ ᏈᏓ ᎤᎴᏅᎮ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎠᏴ ᏂᎦᏗᏳ ᎣᎬᏕᏦᏅ, ᎠᎴ ᏂᎯ ᎢᏨᏍᏓᏩᏕᏅ.\nᎠᏓᎾᏫᏗᏍᎩ ᎱᎷᏤ ᏫᎵᎻ.\nᏂᎦᏓ ᎤᎾᎦᏙᏍᏕᎢ ᎦᏓᎥᎢ.\nᏐᏉ ᎢᎦ ᎯᎠ ᎠᏂᏣᎳᎩ ᏣᏚᎧᏔᏁ ᎤᎾᎴᏫᏍᏓᏗ ᎤᎾᏰᎯᏍᏗ ᎠᏁᎲᎢ ᎾᏍᎩ ᎪᏍᏓᏱ ᏗᎦtᎢᏍᏙᏗ ᎦᏰᏌᏗ.\nᎾᏍᎩᏃ ᏄᏪᏒ ᎼᏏ ᎤᎵᏘᏎᎢ, ᎠᎴ ᎻᏗᏂ ᎦᏓ ᎠᎲ ᏒᏙᎯ ᏄᎵᏍᏔᏁᎢ, ᎾᎿᏃ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ.\n”ᏨᏌ ᏫᏔᏁᎶᎲᎦ! \nᎩᎶᏰᏃ ᎢᏳᏍᏗ ᏗᎻᏟᏯ ᏧᏙᎢᏛ, ᎠᏕᎸ ᎠᏢᏅᎥᏍᎩ, ᎠᏕᎸ ᏗᎪᏢᏔᏅᎯ ᏓᏓᏁᎸ ᏕᎪᏢᎾᏁᎲ ᏓᏰᏂ, ᎥᏝ ᎤᏍᏗᏉ ᏧᎬᏩᎶᏗ ᏱᏓᏩᏛᎡᎮ ᎠᏃᏢᏅᎥᏍᎩ.\n”ᎭᏗ, ᎨᏍᏗ ᎣᏍᏓ ᎠᏓᏅᏖᎸ ᏱᎩ,” ᎤᏛᏁ ᏌᎳᏓ.\n“ᏰᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎫᏩᎶᏐᏅ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.”\nᏗᏂᏩᎾᎦᎳ ᎠᏂᎦᏔᎲ, ᏥᏩᎾᎦᎳ ᎾᏍᎩᏯ ᎾᏆᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏗᏂᏩᎾᎦᎳ ᎬᎩᏁᏉᏤᏗᏱ; ᏂᎦᎥᏉ ᏄᏓᎴᏒ ᎾᏆᎵᏍᏔᏅ ᎾᏂᎥ ᏄᎾᏓᎴᏒ ᎠᏂᎦᏔᎲᎢ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎠᏎ ᎢᎦᏛ ᎦᏥᏍᏕᎸᏗᏱ.\nᎢᏳᏍᏗᏉ ᎤᏃᎯᏳᏗ ᏴᏫ ᎪᏪᎳᏅ ᏱᎩ.\nᎨᎵ.\nᎢᏨᏁᏤᎭ ᎤᎬᏫᏳᎯ ᎢᏨᏁᎢᏍᏓᏁᎭ, ᎯᎠ ᎾᏍᎩ ᎪᏪᎵ ᎨᏥᎪᎵᏰᏗᏱ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎠᎾᎵᏅᏟ.\nᏰᎵ ᎪᎯᏓ ᎤᏕᏅ ᎭᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᎿᏉᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡ Ꭼ ᏅᏩᏙᎯᏯᏛ ᏄᎾᎵᏍᏓᏁᎴ ᏂᎬᎾᏛ ᏧᏗᏱ ᎠᎴ ᎨᎵᎵ ᎠᎴ ᏌᎺᎵᏱ, ᎠᎴ ᎨᎦᎵᏂᎪᎯᏍᏔᏁᎢ, ᎠᎴ ᎠᎾᎢᏎ ᎾᎿ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎣᏍᏛ ᎤᏂᎦᎵᏍᏓᏗᏍᎬ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎠᏂᏁᏉᎨᎢ.\nᎢᏣᎵᎮᎵᎨᏍᏗᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎦᎶᏁᏛ ᎤᎩᎵᏲᏨ ᎢᏤᎳᏗᏍᏗᏍᎬᎢ, ᎾᏍᎩᏃ ᎤᏖᎵ ᎦᎸᏉᏗᏳ ᎨᏒ ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ ᎨᏎᏍᏗ ᏂᎯ ᎾᏍᏉ ᎤᏣᏔᏅᎯ ᎨᏣᎵᎮᎵᏍᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎤᏩᎾᏓᎴ ᏴᏫ ᎤᏂᎪᎲ ᎢᎾᏛ ᎦᏖᎳᏛ ᎤᏬᏰᏂ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎥᏝ ᏳᏝᏏᏛᎭ ᎯᎠ ᎠᏍᎦᏯ ᏴᏫ ᏗᎯᎯ ᎨᏒᎢ; ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎾᏍᎩ ᎠᎺᏉᎯ ᎠᏗᏫᏏ, ᎠᏎᏃ ᎤᏞᎩ ᎥᏝ ᎬᏁᏍᏗ ᏳᏪᎵᏎᎭ.\nᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᎤᏂᎾᎦᎸᎲ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎩ ᏥᎷᏏᎵᎻ, ᎠᎴ ᎪᎳ ᎨᏒᎩ.\nᎨᏍᏗ ᏗᎬᏍᎩ ᏃᎴ ᏗᏥᏌᏛᎥᏍᎩ ᎤᏩᏌ ᏱᎩ.\nᏰᎵ ᎤᏟᏂᎩᏓ ᏏᏆ.\nᎠᎴ ᎠᎨᏴ ᎤᏰᎯ ᏰᎭ ᎾᏍᎩ ᏄᏬᎯᏳᏒᎾ, ᎠᎴ ᎣᏏᏳᏉ ᏳᏰᎸᎭ ᎠᏏᏉ ᎤᎾᏁᎳᏗᏍᏗᏱ, ᏞᏍᏗ ᏯᏓᏅᎡᎮᏍᏗ.\nᎯᏍᎩᏁᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏥᏅᏒᎯ ᎤᏂᎷᏨ, ᎠᏂᏏᏴᏫᎭ ᎠᎩᏏ ᏧᎬᏩᎶᏗ ᎨᎦᎫᏴᎡᎴᎢ.\nᏰᎵ ᎤᏓᏅᎯᏓ ᎠᏆᏂᎩᏓ.\nᎾᏍᎩᏃ Ꮎ ᎤᎷᏨᎩ ᎠᎴ ᎤᏁᏒᎩ ᎪᏪᎵ ᎾᏍᎩ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᎤᏒᎦᎸ ᎾᏍᎩ Ꮎ ᎦᏍᎩᎸ ᎤᏬᎵ.\n“ᎾᏉ ᎮᏂᎵ!”\nᎤᏂᏍᏆᏂᎪᏎᏃ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ, ᏚᏕᏲᏁᏰᏃ ᎤᎵᏂᎩᏛ ᏧᎰ ᎾᏍᎩᏯᎢ, ᎥᏝᏃ ᏗᏃᏪᎵᏍᎩ ᏓᎾᏕᏲᎲᏍᎬ ᎾᏍᎩᏯ ᏱᎨᏎᎢ.\nᎠᏓᎯᏉᏗ ᎨᏎ ᏫᎵᎻ.\nᎥᏝᏰᏃ ᎩᎶ ᎢᎦᏁᎳᎩᏯ ᏱᎩ ᎢᏕᎲᎢ, ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏁᎳᎩᏯ ᏱᎩ ᎠᏲᎱᏍᎬᎢ.\n“ᏄᏲᎢᏯᏉ!” ᎤᏪᎵᏎ ᏥᏍᏕᏥ.\nᎤᏇᏓᎸᏉᏰᏃ ᎠᏏ ᏥᏕᎲᎢ, ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏚᎸᏅᎥᏍᎬᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏳᏩᏂᏌᏛ ᎨᏒᎢ, ᎾᏍᎩ ᏚᎸᏫᏍᏓᏁᎲᎩ ᏗᏗᏰᎸ ᎤᏚᏓᏕᏫᏒᎢ ᎤᎦᏔᏔᏅᎯ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎡᏗᎾᏄᎪᏫᏎᏗᏱ.\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎥᏞᏍᏗ. ᎠᏴᏰᏃ ᎤᏠᏱᏉ ᎡᎩᏂᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏴ ᎾᏍᎩ ᎠᎾᏙᎴᎰᏍᎩ ᏥᎨᏒ ᎢᏣᎵᏅᏟ, ᎠᎴ ᎾᏍᎩ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᎧᏃᎮᏛ ᎠᏂ ᎪᏪᎵᎯ ᎪᏪᎸᎢ; ᎤᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏏ.\nᎠᏎᏃ ᎦᏙ ᎠᏗᎭ ᎪᏪᎵ? ᎯᏄᎪᏩ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᎠᎴ ᎾᏍᎩ ᎤᏪᏥ; ᎠᏥᎾᏝᎢᏰᏃ ᎠᎨᏴ ᎤᏪᏥ, ᎥᏝ ᎤᏪᎳᏗᏍᏙᏗ ᏱᎨᏎᏍᏗ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎾᏥᎾᏝᎥᎾ ᎠᎨᏴ ᎤᏪᏥ.\nᎾᏂᎥᏰᏃ ᎩᎶ ᎤᏅᏗ ᎠᎾᎵᏍᏓᏴᏗᏍᎩ ᎥᏝ ᎤᏂᎦᏙᎥᏒᎯ ᏱᎨᏐ ᎧᏃᎮᏛ ᎠᏚᏓᎴᏍᏙᏗ ᎨᏒᎢ; ᏗᏂᏲᎵᏉᏰᏃ.\nᎰᏩᏃ ᎤᏁᏅᏎ ᎠᏍᏓᏱᏳ ᏫᏄᏅᏁᎴ ᎠᏤᎵᏍᏛᎢ, ᎤᏂᏰᎸᏔᏁ ᏅᏲᎯ, ᎠᎴ ᏚᏂᎧᏁ ᎠᏂᎦᏘᏗᏍᎩ.\nᎭᏰᎳᏍᏗ ᏓᏣᎳᏕᎵ, ᎠᏆᏤᎵ ᎠᏧᏣ.”\nᎠᏏᏉᏃ ᎦᏬᏂᏍᎬᎢ ᎬᏂᏳᏉ ᏧᏓᏏ ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏒ ᎤᎷᏨᎩ, ᎠᎴ ᏓᏘᏁᎲᎩ ᎤᏂᏣᏘ ᏴᏫ, ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᏗᏂᏁᎯ, ᏅᏓᎬᏂᏅᏏᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᏗᏂᎳᏫᎩ ᎠᏁᎲ ᏴᏫ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ, ᎤᏂᏣᏖ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ ᏕᎬᏩᏘᏃᎮᎴᎢ; ᏚᏄᎪᏫᏎᏃ ᎠᏂᏍᎩᎾ ᎧᏁᎬᏉ ᎬᏗᏍᎨᎢ, ᎠᎴ ᏂᎦᏛ ᏧᏂᏢᎩ ᏚᏅᏩᏁᎢ.\nᏃᏗ ᎭᏫᏂ ᎠᏛᎵᏍᎨᎢ.\nᏯᏃᎩᏳᏰᏃ ᏣᏥᏅᏠᎸᎯ ᎨᏎᎢ, ᎠᎴ ᏧᏓᏕᏒᏛ ᏣᎦᎸᏍᏔᏅᎯ ᎨᏎᎢ, ᏧᏓᏕᏒᏛᏃ ᏓᎦᎵᏍᎨᎢ, ᎠᎴ ᏗᎦᏅᏠᏍᏗ ᏓᏍᏆᎵᏍᎨᎢ; ᎥᏝ ᎠᎴ ᎩᎶ ᎬᏩᏓᏅᏘᏐᏗ ᏱᎨᏎᎢ.\nᏏᏛ ᏌᏊ ᎯᎳᏒᏓ, ᎠᎪᏎᎴ ᏩᎭᏯ. \n”ᏧᎦᏣᎳᎩᏍᏗ ᎠᏍᏓ ᏯᏋᏔᎾ ᏯᏉᏪᎳᎾ ’ᎤᏣᏓ ᎣᏍᏓ’ ᎤᏪᎵᏎ, ᎢᏳᏍᏗᏉ ᏍᎪᏯ ᎦᏃᎯᎸᏍᏗᏍᎬ ᏱᎦᏯᎸᎩ ᏃᎴ ᏯᏲᏍᏓ ᏄᏍᏛᎢ.”\nᎠᏍᎪᎵ ᎠᎴ ᎤᏍᏗᏰᎬ ᎤᏁᎩᏳ ᎨᏒᎩ ᎤᏩᏅ ᎾᏍᎩᏯᎢ, ᎥᏃᏥ ᏥᏄᏁᎩᏴ ᏄᏁᎩᏴᎩ; ᏗᎦᏙᎵᏃ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎩ ᎾᏍᎩᏯ ᎨᏒᎩ;\nᎥᏝᏰᏃ ᏲᎦᏚᎵᎭ, ᎢᏓᎵᏅᎵ, ᏂᏥᎦᏔᎲᎾᏉ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎤᏕᏯᏙᏗ ᎣᎩᎷᏤᎸ ᎡᏏᏱ, ᎾᏍᎩ ᎤᎶᏒᏍᏔᏅᎯ ᎦᎨᏛ ᎣᎩᎷᏤᎸᎢ, ᎤᎶᏒᏍᏔᏅᎯ ᏂᏙᎦᎵᏂᎬᎬᎢ, ᎾᏍᎩᏃ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎣᎦᎸᏲᎵᎸᎩ ᏦᎦᏛᏂᏗᏍᏗᏱ;\nᎠᎧᏔᎮᎢ ᏰᎵ ᏳᎦᏘᏓ, ᏛᎦ ᏳᎷᏥᏏ ᏚᏏᎳᏛᎢ; ᏃᎴ ᎡᎵᏍᎨ ᏰᎵ ᏳᎧᏘᏓ ᏳᎷᏥᏏ ᎠᏓᏅᏖᎸ ᎢᏳᏛᏁᏗ ᎤᏍᏕᎵᏗ ᏫᎵᎻ.\nᏧᏍᏗ ᎨᏒ ᏓᏍᏆᏚᎸ ᏥᏳ, ᏙᏱᏨ ᏓᏓᏁᎸ ᎠᏨᏏᏓᏍᏗ ᎢᏧᏍᏗ. ᏓᏒᎬ ᏗᏤᏍᏙ, ᎠᏰᎸ ᏓᏳᏓᎴᏅ ᏚᏓᏅᎵᏰᎥ, ᏃᎴ ᎤᎾᏨᏓ ᏓᏥᏍᏛ ᏃᎴ ᎤᏲ ᎤᏃᎴ ᎤᎶᎯᏍᏗ.\nᎯᎠ ᏄᏂᏪᏒᎩ: ᏣᎬᏫᏳᎯ, ᏦᏍᏗᎦᏙᎵ ᏧᎵᏍᏚᎢᏍᏗᏱ ᎣᎩᎾᏚᎵᎭ.\nᎠᎬᏱᏣ ᎠᏟᏰᎵᏎᏍᏗ ᎾᏍᎩᏯ ᎠᎹᎡᏉ ᎠᏓᎾᏇᏍᎬ, ᏯᎾᏕᎶᎰᏍᎬᎾ ᏏᏴᏫᎭ ᎤᏁᎯᏍᏔᏁᎲ.\nᎣᏍᏓ ᎠᎩᏰᎸ ᏕᎩᎾᏦᏒ.\nᎿᏉᏃ ᎯᎠ ᏂᎦᏪᏍᎪᎢ; ᏗᏥᏁᎸ ᏗᎩᏄᎪᏨ ᏴᏛᏥᎶᏏ. ᎿᏉᏃ ᏫᎦᎷᎩ ᎠᏩᏘᏍᎪ ᎤᏏᏩ ᎨᏐ ᎠᎴ ᎬᏃᏌᏛᎯ ᎠᎴ ᎪᏚᎢᏍᏙᎢ.\nᏓᏥᏲᎰᏏᎾᏏ.\nᎠᎴ ᏥᎦᏔᎭ ᎾᏍᎩ ᎤᏁᏨᎯ ᏫᎾᏍᏛᎾ ᎬᏂᏛ ᎨᏒᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᎥ ᏥᏁᎬᎢ, ᎾᏍᎩᏯ ᎠᎦᏴᎵᎨᎢ ᎾᎩᏪᏎᎸᎢ, ᎾᏍᎩ ᏂᏥᏪᎠ.\nᎯᎠᏃ ᏄᏪᏎ, ᏔᎵᏁᏫᏃ ᎨᏒ, ᎢᎬᏌ ᎢᎦᏤᎵ ᎢᎩᎧ ᏗᏘᏲᎯ.\nᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎤᎾᎵᏍᎪᎸᏙᏗᏱ ᎾᏍᎩᏯ ᎯᎠ ᏂᎦᏪᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎼᎰᏩ ᎤᏤᎵᎦ; ᎠᏂᏔᎵ ᏧᎴᏗᏂᏍᎪᏂᎯ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᏛ ᏬᏱ.\nᎯᎠᏃ ᎾᏍᏉ ᏄᎵᏍᏔᏁ ᏅᎵᏍᏔᏁ ᏅᏩᏓᎴ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎾᏍᎩ ᏭᏴᎴ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏚᏕᏲᏁᎢ; ᎾᎿᏃ ᎡᏙᎮ ᎠᏍᎦᏯ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏰᏂ ᎤᏩᎢᏎᎸᎯ\nᎠᏍᎩᎾᏃ ᎿᏉ ᎤᎳᏁᎸᎯ ᎨᏒᎩ ᎤᎾᏫᏱ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏌᏩᏂ ᎤᏪᏥ ᎾᏍᎩ ᎤᎶᏄᎮᏗᏱ, ᎤᎾᎵᏍᏓᏴᏃᏅᏃ,\nᎥᏝ ᏙᎯ ᎬᏆᏓᏅᏓᏗᏍᏗ ᏱᎨᏎ ᏗᏆᏓᏅᏛᎢ, ᏅᏌᎦᎵᏍᏙᏗᏍᎬᎩ ᏓᏓᏏ ᎥᎩᏅᏟ ᏂᏥᏩᏛᎲᎾ ᎨᏒᎢ; ᎥᎦᏥᏴᏕᏨᎩᏃ ᎾᎿ ᎠᏆᏂᎩᏒᎩ ᎹᏏᏙᏂ ᏩᎩᎷᏨᎩ.\nᎠᎧᏔᎮᎢ ᏄᏍᏛ ᎤᏲ ᎤᎾᏗᏅᏗ ᏧᏍᏆᏴᏍᏗ ᏃᎴ ᎣᏍᏓ ᎤᏰᎸᎮ.\nᎭ,Ꭽ - “ᎣᏍᏓᎦ ᏍᎩᎾᎾ, Ꭱ ᎥᎩᎸᎢ?”\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᎳᎪ ᎦᏚ ᏕᏥᏰᎭ? ᏫᏣᎦᏔ. ᎤᎾᏙᎴᎰᏒᏃ, ᎯᎠ ᏄᎯᏪᏎᎢ, ᎯᏍᎩ, ᏔᎵᏃ ᎠᏣᏗ.\nᎠᏎ ᎢᏳᏍᏗᏉ ᎤᏁᏝᏅ ᎤᏬᏒᏅ ᏳᏓᎵᏗᎩᎡᎳ ᎠᏂᏐᎢ ᎠᏂᏍᏆᏂᎪᏍᎨ.\nᏧᎾᏍᏗᎧᎨ ᏗᏂᏲᏟ ᎪᏍᏓᏯ ᎠᏓ ᎬᏗ ᏓᏂᏔᎴᏍᎪ Ꮓ ᎤᏂᏖᎸᏅ ᎤᎾᏨᏓᎵ ᏐᏉᎭ ᏓᏂᏔᏁᎪᎢ ᏓᏔᎴᏒᎢ.\nᏂᎦᎥ ᎭᏍᎪᎳ! \nᏂᎦᏓ ᎨᏒ ᏦᎢ ᎢᏯᏔᏬᏍᏔᏅ ᎢᎪᎯᏛ ᏚᏟᏰᎵᏙᎸ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᏍᎩ ᏴᏫ ᏰᎵ ᎢᎬᏩᎾᏛᏁᏗ ᏂᎨᏒᎾ ᏥᎩ, ᏰᎵᏉ ᎢᎬᏩᏛᏁᏗ ᎤᏁᎳᏅᎯ.\nᏤᏆᎳᏂ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᏁᏩᏔᎵ ᎤᎾᏤᎵᎪᎯ, ᎢᏓᎵ ᎢᏗᏢ, ᏦᏓᏂ ᎤᏗᏗᏢ, ᎨᎵᎵ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏂᏁᎸᎢ,\nᎾᏍᎩ ᎦᏥᏯᏚᏓᎳᎡᏗᏱ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ ᏂᎨᏒᎾ ᏧᏗᏱ ᎠᏁᎯ; ᎠᎴ ᎾᏍᎩ ᎦᏥᏴᎡᎲ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᏧᎾᏓᏂᎸᎢᏍᏗᏱᏉ ᎤᎾᏓᏅᏘ;\nᎠᏎᏃ ᎵᏏᏯ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᎷᏨ ᎤᏣᏘ ᎬᏍᎦᎢᏍᏓᎩᏯ ᏙᎦᏑᎦᎸᏔᏅᎩ,\nᎾᏍᎩ ᎾᏍᏉ ᎣᏥᏃᎮᏍᎪᎢ, ᎥᏝ ᏲᏨᏗᏍᎪ ᎦᏬᏂᎯᏍᏗ ᏴᏫ ᎤᏤᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏧᏕᏲᏅᎯ, ᎦᎸᏉᏘᏳᏍᎩᏂ ᎠᏓᏅᏙ ᏧᏕᏲᏅᎯ; ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎬᏂᎨᏒ ᏂᏙᏨᏁᎰ ᎠᏓᏅᏙ ᎤᏁᎯ.\nᎠᏴᎾᏍᎩ ᎦᏥᏯᎥᎢ, ᎠᎴ ᏂᎯ ᎠᏴ ᏍᎩᏯᎥᎢ, ᎾᏍᎩ ᏧᏳᏙᏗᏯ ᏌᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏃ ᎡᎶᎯ ᎤᎦᏙᎥᎯᏍᏗᏱ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏘᎨᏳᎯᏳ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏍᎩᎨᏳᎢᏳ ᏥᎩ.\n”ᎠᏎᏃ, ᎪᎨᏱ ᎩᎳ ᏛᎾᏓᏴᎳᏔᏂ.\nᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏂᏧᏏ ᎬᎩᏂᏴᎩ ᎤᏛᏅ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎬᎩᎯᏍᏗᏱ ᎤᏂᏰᎸᏒᎩ.\nᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ; ᎠᏂᎨᏴ ᎬᏩᏂᎾᏄᎪᏫᏒᎯ ᏥᎩ ᎥᏝ ᏳᏜᏍᏗ ᎩᎶ ᎠᏙᎴᎰᏍᎩ ᎤᏟ ᎢᏯᏥᎷᏉᏗ ᎡᏍᎦᏉ ᏣᏂ ᏗᏓᏬᏍᎩ; ᎠᏎᏃ ᎤᏍᏗᎧᏂ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎨᎳ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏣᏂ.\nᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏧᏏ ᎤᎾᏕᏯᏙᏔᏅᎩ ᏥᏌ, ᎠᎴ ᎤᏂᏲᎸᎩ ᎤᏂᎯᏍᏗᏱ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᏄᏛᏁᎸ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ.\nᎢᎦ ᏒᎮᏱᏣ, ᏗᎾᏙᎴᏆᏍᎩ ᏗᏘᏂᏙ ᏳᎴᏫᏍᏔᎾ ᎤᏪᏅᏒ ᎠᎬᏱᏣ, ᎩᎳᏈᏴ ᏩᏓᏐᎯᎮ ᎠᏓᏍᏓᏴᏗ ᎣᏍᏓ ᏂᎬᏁᎮ ᎫᎦ.\nᎿᏉ ᎾᏍᎩ ᏧᏗᏱ ᎠᏁᎯ ᎠᎾᎵᏒᎭ ᎣᏓᎵ ᏩᏂᎶᏒᎭ; ᎠᎴ ᎾᏍᎩ ᎠᏰᎵ ᎨᏒ Ꭰ-ᏁᏙᎯ ᎠᏂᏄᎪᏨᎭ; ᎢᏴᏛᏃ ᏭᏩᏓᏛ ᏗᏁᎯ ᏞᏍᏗ ᎾᎿ ᏳᏂᏴᎴᏍᏗ.\n“ᎠᎩᏃᏫᎠ ᎦᎵᎡᎵᎬ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎧ ᎯᎠ ᎢᏥᏪᏍᎩ; ᎪᎯ ᎢᎦ ᎠᎴ ᏑᎾᎴᎢ ᏓᏲᏤᏏ ᎨᎯ ᏗᎦᏚᎲᎢ, ᏑᏕᏘᏴᏛᏃ ᏬᏤᎮᏍᏗ ᎠᎴ ᏬᏥᏃᏗᏍᎨᏍᏗ ᎠᎴ ᏬᎩᏁᏉᏤᎮᏍᏗ;\nᏧᏂᏲᎰᏒ ᏃᎴ ᎨᏥᏐᏅᏅ, ᏧᏳᎪᏘ ᎨᏒ.\nᎢᏳᏃ ᎪᎱᏍᏗ ᏱᏥᎭ ᏗᎫᎪᏙᏗ ᎪᎯᏉ ᎨᏒ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏕᏥᎧᎲᏍᎨᏍᏗ ᏧᏄᎪᏙᏗᏱ ᎡᏍᎦ ᎢᏴᏛ ᎨᏥᏰᎸᎢ ᎾᎿ ᎢᏣᏓᏡᎬᎢ.\nᎾᏍᎩᏰᏃ [ᏄᎬᏫᏳᏌᏕᎩ] ᎤᏁᎳᏅᎯ ᎤᏅᏏᏓᏍᏗ ᏂᎯ ᎣᏍᏛ ᎢᏣᎵᏍᏓᏁᏗ ᏧᎸᏫᏍᏓᏁᎯ. ᎢᏳᏍᎩᏂ ᎤᏲᏉ ᏙᏣᎸᏫᏍᏓᏁᎮᏍᏗ, ᎯᏍᎦᎢᎮᏍᏗ-ᎦᏅᎯᏛ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᏅᏏᏓᏍᏗ ᎾᏍᎩ, ᎤᏞᎩ, ᎠᏍᏛᏗᏍᏗᏍᎩ ᎾᏍᎩ ᎾᎤᏲ ᏧᎸᏫᏍᏓᏁᎯ.\nᎠᏂᏆᎵᏏᏍᎩᏂ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏃᏏᏏᏍᎩ ᎤᏁᎳᏅᎯ ᏚᏓᏅᏖᎮᎸᎢ ᎤᏂᏲᎢᏎᎴ ᎤᏅᏒ ᎤᎾᏓᏡᏔᏁᎢ, ᏂᏗᎨᎦᏬᎥᎾ ᎨᏒᎢ.\nᎤᏩᏙᎯᏯᏛ ᏚᏂᎧᎿᏩᏗᏙᎮᏍᏗ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎤᎵᏠᏯᏍᏕᏍᏗ ᎪᎯᏳᏗ ᎨᏒᎢ, ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᎾᏍᎩ ᏄᎾᏓᎴ ᏴᏫ ᎬᏩᏂᏯᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏆᏙᎥ ᏗᎨᎪᏍᏔᏅᎯ ᏥᎩ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏧᎸᏫᏍᏓᏁᎯ ᏥᎩ.\n ᏍᏓᏯ ᏭᏅᏥᎴ ᎤᎸᏔᎵᏕᎾ ᏄᎵᏍᏔᏁᎢ.\nᏱᏂᎪᎯᎸᎾ ᎠᏆᏕᎶᎰᏒ ᎢᏯᏛᏁᏗ ᎪᎰᏍᏗ ᏯᎫᏚᎵ, ᎠᏎᏃ ᎦᏲᏟ ᏓᎬ ᎠᏕᎳ.\nᏕᏣᏓᏬᏂᏗᏍᎨᏍᏗᏍᎩᏂ ᏂᏚᎩᏨᏂᏒᎢ, ᎠᏏᏉ ᎪᎯ ᎢᎦ ᎦᎪᏎᏗ ᏥᎩ; ᎾᏍᎩ ᏂᎯ ᎩᎶ ᎨᏥᏍᏓᏲᎯᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏓᎵᏓᏍᏗ ᎠᏍᎦᏂ ᎢᏳᏩᏂᏌᏛ.\nᏎᎦ ᎤᎴᏫᏍᏔᏅ ᏃᎴ ᎤᏁᎢᏍᏔᏅ ᎢᎦ ᎨᏒ.\nᎣᏣᎵᎡᎵᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎤᏙᏓ, ᎣᏣᏓᏙᎵᏍᏗᏍᎪ ᏂᎪᎯᎸ ᎢᏧᏯᏅᏓᏗᏍᎪᎢ,\nᎣᏍᏓ ᎾᏆᎵᏍᏓᏏ.\nᎾᏍᎩᏃ ᎢᏓᎵᏅᏟ ᎢᏨᏔᏲᏎᎭ ᏚᏙᎥ ᎬᏗᎭ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏠᏱᎭ ᎢᏥᏁᎢᏍᏗᏱ, ᎠᎴ ᏗᏣᎦᎴᏅᏗᏍᎩ ᏂᏤᎲᎾ ᎢᏳᎵᏍᏙᏗᏱ; ᎤᎧᎵᏨᏉᏍᎩᏂ ᏗᏣᏚᏙᏙᏗᏱ ᎤᏠᏱᏉ ᎢᏣᏓᏅᏖᎵᏙᎲᎢ, ᎠᎴ ᎤᏠᏱᏉ ᏕᏧᎪᏗᏍᎬᎢ.\nᏂᎬᏃ ᎦᏚᎲ ᎤᎾᏓᏑᏰᏛᏉ ᏄᎵᏍᏔᏅᎩ, ᏚᏂᏂᏴᎲᏃ ᎦᏯ ᎠᎴ ᎡᎵᏍᏔᎦ ᎹᏏᏙᏂ ᎠᏁᎯ, ᏉᎳ ᎤᎾᎵᎪᎯ ᎠᏁᏙᎲᎢ, ᎤᎴᏃᏅᎯ ᎤᎾᏁᎷᎩᏒᎩ ᏭᏂᏴᎸᎩ ᎤᎾᏛᏁᎸᏗᏱ.\nᏐᏉ ᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᏗᏥᎶᏍᏔᏅ ᏗᏍᏆᏂᎪᏗᏍᎩ ᎦᏂᎩᎸ, ᎨᏍᏗ ᏲᎩᎾᎵᏍᎩᏒ Mrs. Chapman, ᏗᏥᎶᏍᏔᏅ ᏙᎩᏂᎪᎵᏰᎥ ᏙᎩᏄᎪᏔᏅ ᎣᎩᏂᎶᎯᏍᏗᏉ ᎡᎶᎯ ᏗᏥᎶᏍᏔᏅ, ᎣᎯᏍᏙᏓ ᏓᎩᏰᎸᎲ, ᏃᎴ ᎠᏓᏅᏍᎩ ᏱᎨᏒᎾ ᎡᎲᎢ, ᎨᏍᏗ ᏧᏍᏆᏂᎩᏗ ᏰᎵᏍᎨ ᎤᏅᏪᏓ ᏕᎦᎶᏛ ᏆᎷᏌ ᏃᎴ ᏒᎦᏔ ᏗᏥᎶᏍᏔᏅ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏰᎵ ᎢᎨᎦᏛᏁᏗ ᏗᏜᏅᏓᏗᏍᎨᏍᏗ, ᎾᏂᎥ ᎣᏍᏛ ᏂᏕᏓᏛᏁᎮᏍᏗ, Ꮀ ᎤᎬᏫᏳᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ ᏏᏓᏁᎸᎯ ᎤᎾᏓᏡᎬᎢ.\nᎯᎠᏰᏃ ᏂᎦᏪᎭ ᎧᏁᎬᎢ, ᎠᏥᎸᎮᎶᎯ ᎨᎭ ᏂᎪᎯᎸᎢ ᎺᎵᎩᏎᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ.\nᏚᏁᏒᏃ ᎠᎴ ᏚᏏᏔᏛ, ᎣᏍᏛ ᏚᏁᏤᎴᎢ.\nᏗᏕᎶᏆᏍᎩ ᎥᏝ ᎤᏟ ᏱᎾᏥᎸᏉᏙ ᎡᏍᎦᏉ ᏧᏪᏲᎲᏍᎩ; ᎾᏂᎥᏍᎩᏂ ᎤᏂᏍᏆᏛᎯ ᏧᏁᏲᎲᏍᎩ ᏄᏍᏛ ᎾᏍᎩᏯ ᎨᏎᏍᏗ.\nᎤᏂᏄᎪᏤᏃ ᏕᎦᎳᏫᎥᎢ ᎠᎾᎵᎮᎵᎨ ᏰᎵ ᎤᏕᎰᎯᏍᏗ ᎢᎬᏩᎾᎵᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩ ᏕᎤᏙᎥ ᏅᏗᎦᎵᏍᏙᏍᎬᎢ.\nᎾᏍᎩ ᎠᏰᎵ ᏥᎩ, ᎾᏍᎩ ᎤᎧᎵᎢᎯ, ᎾᏍᎩ ᎤᏩᏒ ᏂᎦᏗᏳ ᏂᎬᎾᏛ ᎠᎧᎵᎢᎯ ᏥᎩ.\n“ᏌᎳᏓ ᎣᎯᏍᏙᏗ ᏧᏃᎮᏗ ᏗᎧᏃᎮᏓ ᎠᏆᏛᎦᏅ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᏑᎾᎴ ᎠᎩᏍᏗ ᎦᎵᏙᏗ ᎤᏅᏪᏓ ᎠᎧᏲᏗᏍᎬ.\nᏎᎦᏨ ᏄᏪᏤ…\nᎥᎥ, ᎠᎴ ᎢᏳ ᏯᏆᏓᎵᏍᎪᎸᏔᏅ ᎾᎿ ᎠᏥᎸ ᎢᏤᎶᎲᎢ ᎠᎴ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎪᎯᏳᏗ ᎢᏨᏗᏍᎬᎢ, ᎦᎵᎡᎵᎦ, ᎠᎴ ᎢᏨᏯᎵᎪᏁᎭ ᎢᏣᎵᎮᎵᎬᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᎧᏃᎮᏛ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎡᏣᎵᏥᏙᏁᎲᎢ ᏤᏣᎵᏥᏙᏁᎭ.\nᏍᏗᏫᏃ ᎤᎧᎵᏨᎯ ᎤᏬᎯᏳᏒ ᎠᎴ ᎤᎵᏂᎬᎬ ᎤᏣᏖ ᎤᏍᏆᏂᎪᏗ ᎠᎴ ᎤᏰᎸᏛ ᏚᎸᏫᏍᏓᏁᎮ ᏴᏫ ᎠᏁᎲᎢ.\nᎾᏍᎩᏃ ᏥᏄᏍᏛ ᏣᏆᏓᏅᏖᎸᎩ, ᏅᎵᏌᎵᏉᏍᎪ ᎠᎩᏰᎸᎯ ᎨᏎᎢ? ᎠᎴ ᎪᎱᏍᏗ ᎦᏓᏅᏛᎵ, ᏥᎪ ᎤᏇᏓᎵ ᎤᏓᏅᏖᏗ ᎦᏓᏖᏍᎪᎢ, ᎾᏍᎩᏃ ᎠᏴ ᏥᏁᏦ ᎯᎠᏉ ᏱᏄᏍᏗ, ᎥᎥ, ᎥᎥ, ᎠᎴ ᎥᏝ, ᎥᏝ?\n“ᏣᏓᏏᏅᏕᏍᏗᏛ ᎤᏛᏁ.\nᎠᎨᏴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᏍᎦᏯ, ᎦᏐᎴᎣᏍᎦ ᎭᏙᎴᎰᏍᎩ ᎨᏒᎢ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎥᏝ ᎿᏉ ᎢᎸᎯᏳ ᏴᎦᎦᏗᏔ ᏖᎸᎳᏗ ᎤᎾᏄᎪᏫᏒᎯ, ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎢᏤ ᎦᏗᏔᎲᎭ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ.\nᏂᎦᏓ ᏧᏣᏬᏓ ᏚᎾᎳᏑᎸ ᏃᎴ ᏗᎬᏅ ᏚᎾᎭᏄᏮ ᏃᎴ ᏚᎾᏑᎸ ᏃᎴ ᎤᏍᎪᎸᏨ ᎤᏅᏣᏘ.\nᎥᏝ ᎪᎱᏍᏗ ᏣᏤᎵ ᏳᏓᏑᏯ ᎯᎠ ᎠᏂ, ᏝᏰᏃ ᏚᏳᎪᏛ ᏱᎩ ᏣᎾᏫ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎡᎶ ᎤᏓᏅᎦᎸᏓ ᎨᏎᏍᏗ.\nᏭᎶᎯᏍᏗ ᏓᏫᏍᎩᎨ, ᎣᎯᏍᏙᏗ ᏭᎶᎯᏍᏗ ᎠᏍᎧᏅᎢ ᎢᏣ ᏯᏛᎩ ᎨᏴ ᏃᎴ ᏳᎾᎷᏒᎾ ᏱᎩ ᏚᏅᏓᏒ ᎠᎧᏘᏏ ᎢᏣ.\nᏃᎴ ᏗᏩᏛᏗ ᏔᎷᎩᏍᎩ ᎠᎵᏍᏓᏴᏗ ᎤᏓᏅᎵᏰᏓ ᎭᏫᏂ.\nᎡᏝᏪ ᎤᏟᏃᎮᏔᏁ ᎤᎭᏰᎯ ᎪᏱᏁᎢ.\nᎢᏳᏃ ᎩᎶ ᎠᏛᎬᎦ ᎧᏃᎮᏛ ᎦᎸᎳᏗ ᎡᎯᎤᎬᎾᏳᎯ ᎨᏒ ᎤᎬᏩᎵ, ᏂᎪᎵᎬᎾᏃ ᏥᎨᏐᎢ, ᎿᏉ ᎤᏁᎫᏥᏛ ᎦᎷᎪᎢ ᎠᎴ ᎤᎩᎡᎰ ᎠᏫᏒ ᎤᎾᏫᏱ. ᎾᏍᎩ ᎯᎠ ᎤᏃᎱᎶᏗ ᏣᏫᏎᎢ.\nᎯᎠ ᎾᏍᎩ ᎠᎪᎵᏰᏗ ᎤᏂᏣᏛ ᎠᏂᏧᏏ ᎠᏂᎪᎵᏰᏍᎬᎩ, ᏥᏌᏰᏃ ᎠᎦᏛᏅ ᎦᏚᎲ ᎾᎥ ᎨᏒᎩ, ᎠᏂᏧᏏᏃ, ᎠᎴ ᎠᏂᎪᎢ, ᎠᎴ ᎠᏂᎶᎻ ᏧᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎪᏪᎸᎩ.\n“ᎭᏂ, ᎭᏂ, ᎭᏂ!” ᎤᏛᏁ ᏌᏌ.\nᎠᏂᏁᎩᏰᏃ ᎤᏣᏘ ᎠᏢᏆᏍᏗ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎠᏂᏬᏂᏍᎬᎢ, ᏓᏂᎶᏄᎮᏍᎪ ᎠᏅᏗᏍᎪ ᎤᏇᏓᎵ ᎠᏚᎸᏗ ᎨᏒᎢ, [ᎠᎴ] ᏃᎵᏏᎾᎯᏍᏛᎾ ᏂᏓᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏙᏗᏳᎯ ᏧᎾᏗᏫᏎᎸᎯ ᎾᏍᎩ Ꮎ ᎠᏏ ᎤᏓᎵᏓᏍᏗ ᎨᏒ ᎠᎾᎴᏂᏙᎯ ᏥᎩ.\nᎠᏇᏅᏒᎩᏃ ᏗᎧᎿᏩᏗᏙᎯ ᏗᎦᏙᎬᎢ, ᎠᎴ ᎯᎠ ᏅᏥᏪᏎᎸᎩ, ᏍᎩᏅᎥᏏ Ꮎ ᎤᏍᏗ ᎪᏪᎵ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎾᎩ ᎠᎴ ᎯᏯᎣᎾ; ᏣᏍᏉᎵᏱᏂ ᏩᏚᎵᏏ ᏥᏄᎦᎾᎯ ᎢᏳᎦᎾᏍᏛ ᏅᏓᏨᏁᎵ.\nᏗᏥᏲᎵ ᏗᏇᏥ, ᎯᎠ ᎾᏍᎩ ᎢᏨᏲᏪᎳᏁᎭ, ᎢᏥᏍᎦᏅᎢᏍᏗᏱ ᏂᎨᏒᎾ. ᎢᏳᏃ ᎩᎶ ᏯᏍᎦᏅᎦ, ᎢᎨᎭ ᏗᎪᎯᏍᏓᏁᎯ ᎠᎦᏴᎵᎨ ᎡᎲᎢ, ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎦᏅᎾ.\nᏂᎦᏒᏃ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏂᏯᎢ ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅ ᎤᏂᎧᎵᏤ ᎤᏂᏔᎳᏬᏍᎬᎢ.\nᎠᎴ ᎦᏃᎦ ᎠᏥᎸ ᎾᏍᎩᏯᎢ ᎠᎴ ᎡᎶᎯ ᎠᎧᎵᎢ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎾᏍᎩᏯ. ᎾᏍᎩᏯ ᏄᏍᏗ ᎦᏃᎦ ᎤᏓᏑᏴ ᎢᎦᏙᏢᏒᎢ, ᎾᏍᎩ ᎦᏓᎭ ᎢᎬᏁᎯ ᏂᎬ ᎠᏰᎸᎢ, ᎠᎴ ᎠᏥᏍᏢᏍᎩ ᎠᎢᏒ ᎠᏁᎳᏅᎯ ᎨᏒᎢ, ᎠᎴ ᏨᏍᎩᏃᎢ ᎤᏓᏳᏓᎴᏅᎯ ᎠᏥᏥᏍᏝᏫᏍᏗᏍᎩ.\nᏴᏫᏰᏃ ᎤᏅᏒ ᎤᎾᏓᎸᏉᏗᏳ ᎨᏎᏍᏗ, ᎠᏕᎸ ᎤᏂᎬᎥᏍᎩ, ᎠᎾᏢᏆᏍᎩ, ᎤᎾᏢᏉᏗ, ᎤᏁᎳᏅᎯ ᎬᏩᏂᏐᏢᏗ, ᏧᏂᎦᏴᎵᎨ ᏗᏂᎳᏏᏘᏍᎩ, ᏄᎾᎵᎮᎵᏣᏛᎾ, ᎠᏂᎦᏓᎭᎢ,\nᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎦᏙ ᏣᎵᏍᎦᏍᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᎿᏛᏁᎭ? ᎠᎴ ᎦᎪ ᏣᏁᎴ ᎾᏍᎩ ᎯᎠ ᎢᏣᏛᏁᏗᏱ?\nᏙᏱ ᏭᎷᏣ ᎠᎦᎵᎮ, ᎠᏎᏃ ᎤᏴᏣ ᎨᏎ ᏃᎴ ᎤᏩᏃᏪ.\nᎣᏏᏳ ᏣᏰᎸᏅ ᏚᏳᎪᏛ ᎨᏒᎢ; ᎠᎴ ᏣᏂᏆᏘᎸ ᎤᏲ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏂᎯ ᏣᏁᎳᏅᎯ ᎤᏟ ᎢᎦᎢ ᏣᎶᏁᏔᏅ ᎠᏠᏁᏗᎣᏍᏛ ᎠᏓᏓᏅᏓᏗᏍᏗᏍᎩ, ᎡᏍᎦᏉ ᎾᏍᎩ Ꮎ ᎢᏣᎵᎪᎯ.\nᏥᏌᏃ ᎤᏂᏂᏴᏛ ᎧᏯᏉᎢ ᏭᎾᏘᏅᏍᏔᏅᎩ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ, ᎾᎿ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᏗᏂᎳᏫᎩ ᏓᏂᎳᏫᎥᎢ.\n“ᏗᎦᏣᏃᏍᏓ ᏂᏕᏨᏁᏍᏗ ᏘᏂᎨᏂ ᏃᎴ ᎦᏙ ᏫᏔᏒᏂᏍᏙᏓ ᏘᎴᏂ!” ᎤᏛᏁ ᏌᎳᏓ.\nᏐᏉ ᎠᎴ ᏔᎵ ᎢᏳᏪᏅᏍᏗ ᎠᏂᎶᏍᎨᏍᏗ ᏴᏫ, ᎠᏂᎸᏉᏗᏍᎨᏍᏗ ᏫᎵᎻ ᏃᎴ ᎠᏂᎪᎵᏰᏍᎨᏍᏗ ᎪᏪᎸᎢ, ᏃᎴ ᎠᏂᏍᏆᏂᎪᏍᎨᏍᏗ ᏄᏍᏆᏂᎩᏛ.\nᎤᏙᎰᏎ ᏫᎵᎻ.\n”ᎭᏕᏬ, ᏣᏉ.”\nᎾᏍᎩ ᎤᏕᎵᏛ ᎨᏒ ᎦᎵᏉᎩ ᏃᏈᏏ ᏥᏕᏣᎪᎲᎩ ᏥᎦᏘᏏᏗᏢ ᎠᏉᏰᏂ ᏥᏓᏆᏒᎦᎸᎩ, ᎠᎴ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ. ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏃᏈᏏ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᎵᏉᎩ ᏄᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎨᏥᏛᎦ; ᎾᏃ ᎦᎵᏉᎩ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏙᏗᏱ ᏥᏕᏣᎪᎲᎩ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏄᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎦᏛᎦ.\nᎢᏣᏓᏟᏌᎮᏍᏗ, ᎠᏆᏓᏅᏙᏃ ᎠᎦᏔᏩᏕᎨᏍᏗ, ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏔᎵ ᎤᏛᏕᏍᏗ, ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏚᏙᎥ ᎢᏨᏙᏗᏱ,\nᎠᏎᏃ ᎠᎾᎵᏅᏟ ᎤᏁᏅᏛ ᏂᎨᏐᎢ, ᎿᏉ ᎾᏍᏉ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ ᎤᏪᏅᏒᎩ, ᎥᏝ ᎬᏂᎨᏒᎢ, ᎤᏕᎵᏛᏉᏍᎩᏂ ᎢᏳᏍᏗ.\nᏂᎦᏛ ᎡᏙᏓ ᏗᎩᎧᏁᎸᎯ ᎠᏎ ᏓᎬᎩᎷᏤᎵ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᎩᎷᏤᎸᎯ ᎠᏎ ᎥᏝ ᏥᏄᎪᏫᏍᏗ ᏱᎩ.\nᎾᏍᎩ ᏂᎦᏛ ᎤᏂᎸᏉᏙᏗᏱ ᎤᏪᏥ, ᎾᏍᎩᏯ ᏥᎾᏂᎸᏉᏗᎭ ᎠᎦᏴᎵᎨᎢ. ᎩᎶ ᏂᎦᎸᏉᏗᏍᎬᎾ ᏥᎨᏐ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎥᏝ ᏱᎦᎸᏉᏗᏍᎪ ᎠᎦᏴᎵᎨ ᎾᏍᎩ ᏅᏓᏳᏅᏏᏛ.\n“ᎤᏩᏙᎯᏴᏓ,” ᎤᏛᏁ.\nᎠᏎᏍᎩᏂᏃᏅ ᎠᏥᏍᏕᎸᏗ ᎢᎨᏎᏍᏗ ᏗᏂᏲᎵ ᏕᎦᎾᏄᎪᏫᏍᎬᎢ, ᎢᏳᏃ ᏌᏂᎧᎿᏩᏏᏎᏍᏗ ᎪᎯᏳᏗ ᎨᏒ, ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ.\nᏕᎦᏥᏕᎸ ᏏᎦᏫ ᎠᏂᏍᎦᏯ, ᎤᏍᏘ ᎬᎾᏍᏔ ᎣᎩᏥᏍᏔᏝᏅ ᏦᎩᏥᏍᏓᎶᏗ, ᎣᎩᏕᎭᏲᎸ ᎠᏥᏍᏛ.\nᎠᎴ ᏦᎢᏁ ᏪᎯ ᎤᏓᏴᏒᎩ; ᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎵᏉᎩ ᎢᏯᏂᏛ; ᎠᎴ ᏧᏁᏥ ᎾᏁᎲᎾ ᏚᏂᏲᎱᏒᎩ.\nᎿᏉᏃ ᏆᎴᏗ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏝᏍᎪ ᏱᏍᎩᏁᏤᎭ? ᏝᏍᎪ ᏱᎦᏔᎭ ᏰᎵᏉ ᎦᎬᏯᏛᏗ ᎨᏒᎢ, ᎠᎴ ᏰᎵᏉ ᏗᎦᎬᏲᎯᏍᏗ ᎨᏒᎢ?\n“ᎨᏍᏗᏗ ᎪᎱᏍᏗ ᏱᎦᎵᏍᏗ ᎯᎠ ᏏᏆ,” ᎤᏛᏁ ᎰᎻ ᎤᏰᏥᏍᎩ, ᎧᏂᎨᏂ ᎬᏗ ᎦᏆᎵ ᎢᏣ ᏭᏩᏌᏙᏰᎢ ᏫᎵᎻ.\nᎤᏴᏍᏗ ᎤᎧᏖᏃᎴ.\nᏥᎷᏏᎵᎻᏰᏃ ᎠᏁᎯ, ᎠᎴ ᏧᎾᏤᎵ ᎤᏂᎬᏫᏳᏌᏕᎩ, ᎾᏍᎩ ᏂᎬᏩᎦᏔᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᎴ ᎾᏍᏉ ᎾᏂᎦᏔᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᏂᏁᎬ ᎠᎾᏙᎴᎲᏍᎩ ᏄᎾᏙᏓᏈᏒ ᏥᏓᏂᎪᎵᏰᎠ, ᎾᏍᎩ ᏚᏃᎯᏳᏔᏅ ᏥᏚᏄᎪᏓᏁᎴᎢ.\nᏚᏂᎧᏅᏃ ᏗᎨᎦᏁᎶᏘ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅ ᎠᎹᏟ ᎠᏅᏍᎬᎢ, ᏚᏂᏲᎯᏎᎴ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏃᎯᏳᏅᎯ.\nᏝᏍᎪ ᎯᏍᎩ ᏥᏍᏆᏯ ᏔᎵ ᎢᏯᏓᏅᏖᏗ ᏱᏓᎾᎵᎬᏩᎸᏍᎪᎢ? ᎥᏝᏃ ᏌᏉ ᎾᏍᎩ ᎠᎬᎨᏫᏒᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\n“ᏥᎦᏔᎭ ᎤᎾᏓᏅᏘ ᏕᏧᎬ.”\nᎬᏂᏳᏉᏰᏃ ᎯᎠ ᎾᏍᎩ ᎤᏲ ᏥᏣᏓᏅᏓᏛᎩ ᎾᏍᎩ ᏗᎬᏩᏓᏂᎸᎢᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ, ᏂᎦᎥ ᎢᏣᎵᏂᎬᏁᏗ ᎨᏒ ᏭᎵᏰᎢᎶᎸ; ᏂᎦᎥ ᏗᏣᏢᏫᏍᏙᏗ ᎢᏥᏲᎲᎢ, ᎢᎢ ᏂᎦᎥ ᎢᏥᏂᏆᏘᎲᎢ, ᎥᎥ, ᏂᎦᎥ ᎢᏥᎾᏰᏍᎬᎢ, ᎥᎥ, ᏂᎦᎥ ᎤᏣᏘ ᎢᏣᏑᎵᏍᎬᎢ, ᎥᎥ ᏂᎦᎥ ᎤᎵᏂᎩᏛ ᎢᏣᏓᏅᏛᎢ, ᎥᎥ, ᏂᎦᎥ ᎠᏓᏍᏛᏗᏍᏙᏗ ᎨᏒᎢ! ᏂᎦᎥ ᏧᏌᎴᏅᏛ ᎬᏂᎨᏒ ᏂᏨᏁᎸ ᏂᏥᏍᎦᏅᎾ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎧᏃᎮᏗ ᏥᎩ.\nᎦᏙ ᎤᏂᎶᏒ ᎦᏓᎷᎦᏅ ᏱᎨᏐ ᏄᏍᏛ.\nᎢᏥᎧᎵᏣ ᎦᎵᎡᎵᎬᎢ, ᎤᏠᏱ ᎢᏳᎵᏍᏙᏗᏱ ᎢᏣᏓᏅᏖᏍᎬᎢ, ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᎨᏳᏒᎢ, ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᏅᏛᎢ, ᎤᏠᏱᏉ ᎢᏳᎵᏍᏙᏗᏱ ᏗᏣᏓᏅᏙ.\nᎾᏍᎩᏃ ᏄᏍᏗ ᏱᏣᎵᏍᎦᏍᏙᏛ ᎤᏁᎳᏅᎯ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ.\nᏚᏃᎩᏎ ᏌᎳᏓ, ᎾᏍᎩ ᎾᏂᏪᏍᎨ ᏔᎳᏚ ᎦᏄᎸᎯ ᏃᎴ ᎤᎵᏏᎩ ᏄᎵᏍᏔᏁ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᎠᎴ ᏫᎾᏍᏛᎾ ᏗᏔᎴᏒ ᏩᎦᏓᎢᏅᏒᎩ, ᎠᎴ ᎠᏥᏍᏚᏅᎩ, ᎠᎴ ᎤᏰᎸᏔᏅᎩ ᎠᏍᏚᎲᎢ, ᎾᏍᎩ ᏗᎬᏩᎶᏄᎮᏗ ᎿᏉ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ, ᎬᏂ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᏳᎶᏐᏅ; ᎣᏂᏃ ᎿᏉ ᎠᏥᎪᏗ ᎢᎨᏎᏍᏗ ᏞᎦ.\nᎺᎵ ᎡᏥᏲᎵᎸᎭ, ᎤᏤᏘ ᏧᎸᏫᏍᏓᏁᎸᎯ ᏥᎩ ᎠᏴ ᎣᎩᏍᏕᎵᏍᎬᎢ.\n”ᏙᎤᏍᏗ ᏎᏉ ᎡᏓᏍᏗ?” ᎤᏛᏛᏁ.\nᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ [ᏕᎪᏢᏒᎩ,] ᏧᏴᏢᏃ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ; ᏧᎦᎾᏮᏃ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ; ᏭᏕᎵᎬᏃ ᎢᏗᏢ ᏦᎢ ᎦᎶᎯᏍᏗᏱ.\n”ᎭᏕᏬ,” ᎤᏛᏁ ᎤᏃᏕᎾ ᎠᏓᎯ.\nᎤᏤᏴᏍᏔᏁ ᏃᎴ ᏚᎧᏔᏍᏔᏁᎢ ᎦᏂᎦᏔ ᎡᎹᏂᏓ.\nᎠᏎᏃ ᎯᎠ ᎾᎩᏪᏒᎩ; ᏞᏍᏗ, ᏣᎬᏫᏳᎯ, ᏝᏰᏃ ᎢᎸᎯᏳ ᎪᎱᏍᏗ ᎦᏓᎭ ᎠᎴ ᏂᎦᏅᎦᎸᎲᎾ ᏳᏴᎶ ᏥᎣᎵ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᎢᏗᎦᏔᎭ, ᎾᏍᎩ ᎢᎦᏤᎵ ᎤᏪᏥ ᎠᏍᎦᏯ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅ ᎢᏧᎳᎭ ᎾᏍᎩ [ᎦᎶᏁᏛ] ᎠᎦᏛᏅᎢ, ᎾᏍᎩ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᏰᎸ ᎡᎲ ᎤᏲᎱᎯᏍᏗᏱ, ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎠᏍᎦᏂ ᏗᎩᎾᏢᏗᏱ ᏂᎨᏒᎾ.\nᎡᎶᏗ ᎤᏒᏂᎴᎢ.\nᎨᏍᏗ ᏳᏬᎯᏳᎮ ᎤᏣᎴᏓ ᎤᎦᏐᏍᏙᏗ ᏚᏅᏓᏒ ᎠᎴ ᎤᎵᎪᏗ ᎠᏂᎭᏲᎲ ᏣᎵ.\nᎤᎪᏂᏕᏅ ᎤᏃᏛ ᏓᎴᎲᏍᎬ ᎤᏁᎦ ᏚᎦᏒᏍᏛ, ᎦᎶᏇ ᏚᏂᎳᎦᎸ ᏃᏥ ᏧᎬ ᏓᎪᏩᏘᏍᎬ ᎤᏛᏅ ᎠᏌᎻᏓ.\nᎦᎪᏃ ᎯᎠ ᏥᏂᏣᏛᏅ ᎤᏪᎵᎯᏍᎬᏉ ᏖᎵ ᏱᎦᏅᎯᏓ ᎬᏅᎢ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ.\nᎢᎬᏱᎢ ᎠᏁᎩ, ᎠᎴ ᎣᏂ ᎠᏁᎩ, ᎤᏁᎷᎨᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎰᏌᎾ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᏕᎤᏙᏍᏛ ᏥᎦᎷᎯᏍᏗᏓ.\nᎾᏍᎩ ᎾᏂᎥ ᏧᎫᏴᎡᏗ ᏥᎩ ᎾᏍᎩᏯ ᏄᏍᏛ ᏚᏂᎸᏫᏍᏓᏁᎸᎢ;\nᎤᏦᏍᏔᏁ ᎦᏬᏂᏍᎬ ᏄᎬᏫᏳᏒ ᏍᎦᏰᎬᏍᏔ ᏧᏬᏪᎳᏁ ᎤᏬᏪᎶᏗ, ᎦᏣᏄᎸ ᏕᎪᏪᎵᏍᎬ ᎦᏣᏄᎵ ᎦᏬᏂᏍᎬ.\nᏑᎾᎴ ᏳᏰᏨ ᏧᏓᏄᏖᏴᏓ ᎨᏐ ᏧᏍᏆᏅᎾ, ᎠᎦᏙ ᏧᏯᏪᏨ ᏳᏰᏨ, ᎡᏍᎦᏉ ᏱᏭᏂᏏᏅ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏂᎥ ᎢᏏᎢ ᏏᏓᏁᎸᎯ ᎨᏒ ᎤᏙᎯᏳᏒ ᏩᎾᏙᎴᎰᎯ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎠᎴ ᎦᎶᏁᏛ ᏄᏩᏁᎸ ᎾᏍᎩ ᏥᏌ ᏂᎯ ᏤᏣᏛᏅᎩ.\nᎤᏂᏣᏘᏃ ᎾᎿ ᎦᏚᎲ ᎠᏁᎯ ᏔᎵ ᏄᎾᏓᏕᎢ; ᎢᎦᏛ ᎠᏂᏧᏏ ᏚᎾᎵᎪᏁᎴᎢ, ᎢᎦᏛᏃ ᎨᏥᏅᏏᏛ.\nᎨᏍᏗ ᏳᏂᏁᏨ ᎢᏧᎳ.\nᏉᎳᏃ ᎠᎴ ᏆᏂᏆ ᎤᏤᏘ ᎤᏂᏲᏠᎯᏎᎸ ᎠᎴ ᎤᎾᏗᏒᎸ ᎠᏂᏬᏂᏍᎬ ᎾᏍᎩ, ᏚᏄᎪᏔᏁ ᏉᎳ ᎠᎴ ᏆᏂᏆ ᎠᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᏅᏩᎾᏓᎴ ᏥᎷᏏᎵᎻ ᎤᏁᏅᏍᏗᏱ ᏧᎾᏛᏛᏅᏍᏗᏱ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎾᏍᎩ ᎯᎠ ᎠᏂᏱᎵᏙᎲ ᎤᎬᏩᎵ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎾᎥ ᎠᏂᏙᎾᎢ, ᎡᏥᎩᏏ ᎾᏍᎩ Ꮎ ᏑᏓᎨ-Ꮫ, ᎠᎴ ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᏧᎯ ᎡᏥᎥᏏ--\nᎣᎯᏍᏙᏗ ᏯᏆᏓᏅᏖ ᏱᏚᎾᏓᏟᏴᎮᎢ.\nᏧᏌᎨᎢ ᏚᏏᎳᏛ, ᎠᏎᏃ ᎨᏍᏗ ᏩᎾᎢ ᏱᎩ ᏗᏲᏍᏙᏗ.\nᏥᏍᏆ ᎤᏂᏃᎯᏎᎴ ᎢᏴ ᎤᎾᎵᏐᏍᏗ ᎦᏝᏗ, ᎠᏰᎵ ᏚᏩᏥᏍᎦᏢ ᏅᏯ ᎤᏅᏂᏍᏘ ᎤᏓᏅᏙ.\nᏦᏓᏂᏃ ᏕᎤᏬᎡᎢ, ᎠᏂᏃᎲᏍᎨ ᎤᏂᏍᎦᏅᏨᎢ.\nᎯᎠᏃ ᎠᎦᏴᎵᎨ, ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏍᏘᏰᎬ ᎠᎫᏬᏯᏅ ᎠᏇᏅᎯ ᎢᎬᏓ ᎣᎭᏁ ᎢᏣ ᏭᏍᏖᏴ, ᎪᎢᎭ ᎤᏤᏌᏛ ᎦᏚᎢᏣ ᏌᎪᏂᎨ ᎠᏌᏃ, ᏗᏯᏖᏅ ᏗᎧᏍᎨᏂ ᏫᎦᏓᎥ ᎠᏌᏃ.\nᎾᎿᏃ ᎤᏂᎩᏒ, ᏭᏴᎸᎩ ᎩᎶ ᎢᏳᏍᏗ ᎦᏁᎸ ᏣᏍᏓ ᏧᏙᎢᏛ, ᎤᏁᎳᏅᎯ ᎠᏓᏙᎵᏍᏓᏁᎯ, ᎾᏍᎩ ᎦᏁᎸ ᏚᏓᏯᎸᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᏈᏓᏃ Ꭸ ᎢᏴᏛ ᎤᏍᏓᏩᏗᏎᎢ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏗᎦᏁᎸ ᏭᏴᎴᎢ, ᎤᏬᎴᏃ ᎨᏥᏅᏏᏓᏍᏗ ᎠᏂᏅᎢ, ᎠᎴ ᎪᏛ ᎤᎦᎾᏬᏍᎨᎢ.\nᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏁᏓᏍᏗ ᎤᎯᏐᏗ ᏃᎴ ᎤᏁᏍᏓᎶᏨ ᏄᏍᏕᎢ.\nᏥᏳᎯᏃ ᎤᏣᏅ ᎾᏍᎩ ᎠᏂᏍᎩᎾ ᎬᏩᏴᎸᎯ ᎤᏔᏲᏎᎴ ᎤᏁᎳᎩ ᎤᏪᎵᏎᏗᏱ ᎤᏍᏓᏩᏗᏓᏍᏗᏱ.\n“ᎠᏯᏗ ᏍᏉ,” ᎤᏛᏁ ᏁᎵ, ᎩᎳᏈᏴ ᎤᏂᏴᎮ ᏙᏌ ᎤᏍᏗᎢ.\nᎫᎭᏢ ᏭᏂᏴᎮ Philadelphia ᎤᏍᎪ ᎡᎳᏗᏣ, ᏎᎦ ᎤᎾᏓᏒᎴ ᎠᏎᏃ ᎤᏄᎸᏁ ᏭᎵᏒᏗ ᎦᎷᏯᏍᏘ ᏣᏥ.\nᏍᎩᏴ ᏑᎾᎴᎢ, ᏭᏢᎾ ᏫᎵᎻ, ᎡᎳᏆᏗ ᎤᎷᏤ ᏙᏱᏟ: ᎠᏂᏂᎩᎸ ᎠᏂᎪᏕᏍᎩ, ᏲᎾ ᎤᏤᏍᏙ ᎤᏍᏓᏩᏗᏎ.\nᎤᏛᎦᏍᏔᏁᎢ ᏫᎵᎻ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏄᏛᏁᎲ ᎥᏝ ᎩᎶ ᎤᏇᏓᎵ ᏴᎬᏚᏓᎴᏍᏓ ᎾᏍᎩ ᎠᎦᏔᎲᎢ; ᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎠᎦᏙᎥᎯᏍᏙᏗ.\nᏆᎴᏗᏃ ᎤᏛᏛᏁ ᎯᎠ ᏁᏪᏎᎴᎢ, ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏰᎵᏉ ᏂᏫ.\nᎩᎶᏍᎩᏂ ᎢᏳᏍᏗ ᏌᎺᎵᏱ ᎡᎯ ᎠᎢᏒᎢ, ᎤᎷᏤ ᎦᏅᎢ; ᎤᎪᎲᏃ ᎤᏪᏙᎵᏤᎢ;\nᎬᏂᏳᏉᏃ ᎤᏣᏘ ᎤᏱᎶᎴ ᎤᏃᎴ ᎢᏓᎵ; ᏥᏳᏰᏃ ᎠᎹ ᏓᎵᏍᏗᎳᏁᎬ ᎤᏭᏢᎥᏍᎨᎢ; ᎠᏎᏃ ᎢᎦᎵᎮᏉ.\nᎠᏂᎪᏕᏍᎩ ᏃᎴ ᏣᏄᏏ ᏗᏓᏁᎸ ᎱᏁᏅᏎ.\nᏦᏚᎯ!\nᎯᎠ ᏱᎾᏂᏫ, ᎯᎠ ᎠᏍᎦᏯ ᎤᎴᏅᎲᎩ ᎠᏁᏍᎨᏍᎬᎢ, ᎠᎴ ᎥᏝ ᏰᎵ ᎬᏩᏍᏆᏗᏍᏗ ᏱᎨᏎᎢ.\nᎠᏧᏣᏃ ᎢᏄᏪᏎᎢ, ᏃᏊᏃ ᎢᎩᎾᏔᎾ ᏂᎾᎵᏍᏔᏅᎢ, ᏧᏓᎴᏅᏓ ᎪᎱᏍᏗ ᏱᎨᎦᎾᏛᏁᏗ ᎨᏎᏍᏗ!\n”ᎭᏩ, ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏓᏅᏖᏍᎩ, “ᏣᏁᎳ ᏕᎦᏅᏌᏓ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᏂᎨᏴ; ᏞᏍᏗ ᏂᎯ ᏱᏍᏗᏍᎦᎢᎮᏍᏗ, ᏥᎦᏔᎭᏰᏃ ᏥᏌ ᎠᎦᏛᏅᎯ ᎡᏍᏗᏲᎲᎢ.\n”ᎤᏙᎯᏳ ᏧᏳᏩᏂᎭ ᏘᏅᏍᎨᏂ, ᏌᎳᏓ,” ᎤᏛᏁ ᏫᎵᎻ, ᏚᎷᏫᏍᏔᏁᎮ ᎾᎥᏂ ᎧᏅᏂᏍᎩ.\nᎤᎵᏌᎵᏓᏁ ᎦᏲᏟ ᏌᏌ ᏃᎴ ᎦᏲᏟ ᏚᎲᏎ ᏧᏪᏥ ᎤᏍᏉᏟ ᎭᏫᏂᏣ ᎤᎦᏃᏮ ᏧᎩᏓᏟ ᏓᏳᏓᎴᏅ ᎤᎦᏃᏮ.\nᎠᏗᏍᎬ ᎧᏂᎩᏛ ᏚᏅᏓᏒ ᏴᏙᎭ, ᎾᎥᏂᎨ ᏓᏆᎴᎳ ᏣᎫᎩᎶ ᎨᏓᎵᏯ ᎢᏣ ᏗᏦᏱ ᏱᎨᏒᎾ ᎨᏓᎵ ᎢᏣ.\nᎡᏣᏯᏅᎲᏍᎪ ᎡᏣᎾᏝᎢ ᎨᏒᎢ? ᎤᏁᎳᎩ; ᎢᏳᏍᎩᏂᏃᏅ ᏁᏣᎾᏝᎥᎾ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎩ, ᎾᏍᎩ ᎯᎬᏫᏳᏔᏅᎭ.\nᎠᎴ ᎣᏥᏅᎵ ᎢᏧᎳᎭ ᎠᏁᎩ ᎣᏣᎵᏅᏟ, ᎾᏍᎩ ᎤᏩᎫᏘᎶᏛ ᎣᏥᎪᎵᏰᏛ ᎣᎦᏙᎴᎰᏒᎯ ᎤᏣᏘ ᎠᎦᎵᏱᏳ ᎨᏒᎢ, ᎠᏎᏃ ᎪᎯ ᎨᏨ ᎤᏟ ᎾᎦᎵᏴ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏣᏘ ᎢᏦᎯᏳᏒᎢ.\nᎤᏂᏣᏘᏃ ᏚᏁᏤᎸᎩ ᎦᏙᎯ ᎤᎾᏅᏗᏱ.\nᏥᏌ ᎾᏍᎩ ᏄᏪᏒ ᎤᏕᏯᏔᏁᎸ ᎤᏓᏅᏛᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᎭ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎯᎠ ᏥᏂᏣᏛᏅ ᎠᏏᏴᏫ ᎤᏓᏑᏯ ᏛᎩᎶᏄᎮᎵ.\nᏚᎪᎵᏰᎡ ᎢᏗᎦᏪᏍᏗ ᏌᎳᏓ, “ᎠᏤᎯ ᎤᏔᎷᎩᏍᎩ ᎢᏯᏛᏁᎯ.”\nᏣᏠᎾᏍᏗ! ᎢᎬᏱ ᎯᎸ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ, ᎿᏉᏃ ᎬᏂᎨᏒᎢᏳ ᏣᎪᏩᏛᏗᏱ ᎨᏎᏍᏗ ᎯᎸᎡᏗᏱ ᎤᏢᏓᎸᏛ ᏗᏍᏓᏓᏅᏟ ᎤᎦᏑᎲᎢ.\n”ᏥᎦᏔᎭ,” ᎤᏛᏁ, ”ᏂᎦᏗ ᎢᏓᎵᎮᎵᎦ ᏅᎩ ᎢᏳᎾᏙᏓᏆᏍᏗ ᎤᎧᏘᏛ ᎢᎦᎵᎢ ᏌᏌ, ᏃᏉ ᎬᏂᎨᏒ ᏄᎵᏍᏓᏏ.\n“ᏥᎦᏔ ᏍᎩᎾᎾ ᏱᏂᎭᏛᎦ.\nᏥᏌᏃ ᎠᎦᏔᎲᎩ ᎤᎾᏚᎵᏍᎬ ᎬᏩᏛᏛᏗᏱ, ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᎪᏕᏣᏓᏛᏛᎲᏍᎦ ᎦᏛᎬᎢ ᎯᎠ ᏥᎾᎩᏪᏒᎩ; ᏂᎪᎯᎸᎾᏉ ᎿᏉ ᎥᏝ ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ, ᎠᎴ ᎿᏉ ᏔᎵᏁ ᏂᎪᎯᎸᎾᏉ ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ?\nᏔᎵᏁ ᏗᎦᏁᎲ ᏭᎷᏣ, ᎤᏍᏗ ᎠᏣᏗ ᎤᎪᎮ. ᏅᏲ ᏥᎦᏯᎶ ᎢᏳᏍᏗ ᏄᏍᏕ.\nᏂᎦᏓ ᎠᏃᎵᎩ ᏲᎾᎠᎬᏱᏍᎩ, ᏲᎾᏉᏗ ᎠᏃᏎᎰ, ᏚᏙᎥ ᏫᎩᏛ, ᎠᏧᏣᏉ ᏥᎨᏎ, ᏧᎴ ᏭᎬᏫᏳᏒ ᎡᏆ ᏲᎾ, ᎠᎬᏱ ᎤᏐᏅᏁ ᎤᏛᎵᏍᏙᏗ ᎦᏟᏓ ᎬᏘ, ᏃᏉ ᎠᏰᎳᏍᏗ ᎬᏘ ᏭᎯᏐᏁ, ᎢᏧᎳ ᎠᏂᎩᎦᎲ ᏄᎾᎵᏍᏔᏁ.\nᏂᎦᏓ ᎥᏳᎩ ᏗᏂᏱᏙ ᏥᏓᏥᎶᏍᏗ ᏰᎵᏉ ᏗᎦᎸᏗ ᎠᎴᏫᏍᏙᏗ ᎠᏍᏆᏗᏍᎬ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᏱᏙᎩᏯᏪᎦ; ᎤᏙᎯᏳᎯᏍᎩᏂᏃᏅ ᎦᏚᎢᏗᏢ ᎡᎯ ᎨᏒ ᎣᎩᏩᎾᎦᎶᏤᎭ, ᎭᏫᏂᏗᏢᏍᎩᏂ ᎡᎯ ᎨᏒ ᎣᎦᎵᏂᎪᎯᏎᎭ ᏂᏓᏙᏓᏈᏒᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎯᎠ ᏂᏥᏪᏍᎨᏍᏗ, ᎣᎩᏙᏓ ᎦᎸᎳᏗ ᎮᎯ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏕᏣᏙᎥᎢ; ᏨᎬᏫᏳᎯ ᎨᏒ ᏫᎦᎾᏄᎪᎢ; ᎭᏓᏅᏖᏍᎬ ᏫᏂᎦᎵᏍᏓ ᎡᎶᎯ ᎾᏍᎩᏯ ᎦᎸᎳᏗ ᏥᏂᎦᎵᏍᏗᎭ.\n”ᎠᏆᏚᎵ ᎬᏃᏓ ᎠᏇᏓᏍᏗ ᎭᏂᏉ ᏗᎩᏏ ᎦᏓᏍᎬᎢ ᏗᏆᎵᎢ ᎠᏁᏙᎲ ᎾᎥᏂ.\nᎠᎴ ᎾᏍᏉ ᎠᎾᏕ-ᎶᏆᏍᎪ ᎤᎾᏓᏄᎸᏗ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎠᏁᏙᎵᏙᎰ ᏓᏓᏁᎳᏗᏒᎢ; ᎥᏝ ᎠᎴ ᎤᎾᏓᏄᎸᏗᏉ ᎤᏩᏒ ᏱᎨᏐᎢ, ᎾᏍᏉᏍᎩᏂ ᎧᏃᎮᏛ ᎠᏂᏱᏙᎯ ᎨᏐᎢ ᎠᎴ ᎤᏂᏂᎳᏗᏌᏘ, ᎠᏂᏃᎮᏍᎩ ᎾᏍᎩ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎤᏂᏃᏄᏍᎩ ᎾᏍᎩ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎤᏂᏃᎮᏗᏱ.\nᎠᏎ ᏤᏅᏍᏗ.”\nᎾᏍᎩ ᎯᏳᏍᏗ ᏂᎦᎥ ᎪᎱᏍᏗ ᏗᏥᎧᎿᏩᏚᎦ ᎨᏦᏎᎮᏍᏗ ᏕᏥᎧᎿᏩᏕᎨᏍᏗ ᎠᎴ ᎾᏍᎩ ᏂᏣᏛᏁᎮᏍᏗ; ᎠᏎᏃ ᎾᏍᎩ ᎾᎾᏛᏁᎲᎢ ᏞᏍᏗ ᏱᏂᏣᏛᏁᎮᏍᏗ; ᎠᏂᏁᎪᏰᏃ ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏱᎾᎾᏛᏁᎰᎢ\nᎡᏣᏁᏍᎨᎲᎯ ᎨᏒ ᎡᏥᏝᏅᎯ ᎨᏥᏅᏏᏛ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᎡᏥᎫᏍᏛᏔᏅᎯ, ᏥᏌ ᎦᎶᏁᏛ ᎤᏩᏒ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏅᎯ ᏅᏯ ᎢᏳᎵᏍᏔᏅᎯ;\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᏩᎦᏖᎢ, ᏌᎺᎵᏱ ᎠᎴ ᎨᎵᎵ ᎠᏰᎵ ᎤᎶᏎᎢ.\nᎢᏳᏃ ᎤᏁᎳᏅᎯ ᏧᏁᎸᎯ ᏱᎩ ᎤᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏥᎩᏁᎸᎩ ᎠᏴ ᎾᏍᎩ ᎡᏙᎢᏳᏅᎯ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎦᏙ ᎠᏴ ᎨᏎ ᏰᎵ ᎦᏥᏲᏍᏙᏓᏁᏗ ᎨᏎ ᎤᏁᎳᏅᎯ.\nᎭᎾ ᏭᏓᏐᎴ ᏫᎵᎻ, ᎤᏟᏂᎩᏓ ᎧᏴᏐᎵ ᎱᏮᏔᏁᎢ, ᎾᎨᎢᏴ ᏭᏓᎩᏅᏎ ᏥᏍᏕᏥ.\nᎠᏏᏴᏫᏃ ᎡᎮ ᏆᎳᏆ ᏧᏙᎢᏛ ᎾᏍᎩ ᎢᏧᎳᎭ ᏕᎨᎦᎸᎡ ᎬᏩᎵᎪᏁᎸᎯ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅᎯ, ᎾᏍᎩ ᎤᎾᏓᎸᎯ ᎨᏎ ᎾᎯᏳ ᎤᎾᏓᏑᏰᏛ ᎤᎾᎵᏖᎸᏅᎢ.\n“ᎧᎪᏃ ᎤᏪᏲᏁ ᎧᏅᏂᏍᎩ?\n“ᏑᎾᎴᏗ ᎩᎳ,” ᎤᏛᏁ ᎰᎻ.\nᏧᎳᏏᏕᏂᏃ ᏗᎬᏩᏔᎷᎩᏍᎩ ᎥᏣᏱ ᎾᏍᎩᏯ ᎨᏒᎩ, ᎠᏥᎸᏱ ᎬᏔᏅᎯ ᎣᏍᏛ ᎢᎬᏁᎸᎯ ᎾᏍᎩᏯᎢ; ᎧᏁᎬᏃ ᎤᏣᏘ ᎠᎹ ᏥᏚᏍᏆᏃᏴᎪ ᎾᏍᎩᏯ ᎨᏒᎩ.\nᏍᎩᎾᎾ ᏱᎩ, ᏅᎩ ᏧᏅᏏᏱ ᏗᏗᎧᏁ ᏯᏓᏅᏍᎬᎾ.\nᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎾᎿ ᏕᎪᏢᏒ ᎥᏝ ᏧᏂᏍᏚᏗ ᏱᎨᏎᏍᏗ ᎢᎦ, ᎥᏝᏰᏃ ᏒᏃᏱ ᏱᎨᏎᏍᏗ ᎾᎿᏂ.\nᎰᏩᏃ ᎾᏍᎩ ᎠᏃᎯᏳᎲᏍᎩ ᎨᏒ ᎣᏍᏛ ᏄᎾᎵᏍᏓᏁᎰ ᎨᎦᏠᏯᏍᏗᏍᎪ ᎣᏍᏛ ᏄᎵᏍᏓᏁᎸ ᎤᏬᎯᏳᎯᏍᏗ ᎡᏆᎭᎻ.\nᎢᏳᏪᏅᏍᏗ ᎤᏕᏅ.\nᏂᎦᏓ ᎠᎾᏓᏅᏖ ᎨᏥᏍᏗ ᎤᎾᏕᏘᏱᏍᎬ ᎢᏴ.\nᎣᎦᏁᏦᎿᎾ, ᎣᎩᏔᎶᏒ, ᎠᏆᏛᏛᏅ ᏲᎾ ᏯᏆᏓᏖᎶᏒ ᎠᎴ ᏴᎩᏔᎶᏌ ᎠᏂᏩᏥᏂ ᎣᏣᏁᏦᎥᏍᎬ.\nᎩᎶᏰᏃ ᎤᎮᏍᏗ ᎠᏥᏁᏗ ᎨᏎᏍᏗ, ᎤᏣᏘᏃ ᎤᎮᏍᏗ; ᎩᎶᏍᎩᏂ ᏄᎲᎾ ᎨᏎᏍᏗ ᎠᏥᎩᎡᏗᏉ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᏍᏉ ᎤᎲᎢ.\nᎠᏎᏃ ᏭᏓᏅᏖᎴ ᏥᏍᏕᏥ ᎤᎵᏍᏕᎸᏓ ᎨᏎ ᎤᏂᏍᏆᏂᎪᏔᏅ ᏌᎳᏓ ᎬᏅᎢ.\nᎠᏂᏆᎵᏏ ᎾᏍᏉ ᎬᏩᎷᏤᎸ ᎬᏩᎪᎵᏰᏍᎬᎩ, ᎯᎠ ᏂᎬᏩᏪᏎᎲᎩ; ᏚᏳᎪᏗᏍᎪ ᎠᏍᎦᏯ ᎤᏓᎢᏅᏗᏱ ᎤᏓᎵᎢ ᏂᎦᎥᏉ ᎪᎱᏍᏗ ᏴᏗᎵᏰᎢᎸᏍᏗᎭ?\nᏥᎪᎨ ᏅᎵᏌᎵᏉ ᎯᏰᎸᏍᎦ ᏄᏧᏈᏍᏛ ᎤᏓᏅᏘᏳ ᎨᏒ ᎠᎴ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎠᎴ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᎡᎵᏍᎬᎢ, ᏒᎢ, ᎠᎴ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᎡᎵᏍᎬᎢ, ᏂᎦᏔᎲᎾᏉ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏘᏳ ᎨᏒ ᏣᏘᏁᎬ ᏣᏁᏟᏴᏍᏗ ᎨᏒ ᏣᏓᏅᏛᎢ?\nᎢᏴ ᎠᏁᏙᎲ ᎠᏂᏴᏫᏯ ᎦᏚᏏ, ᎠᎦᏗᏓ ᎧᏃᎮᏗ ᏧᎾᏓᏟᏴᏗ ᏃᎴ ᎤᎾᏗᏍᎦᎶᏗ.\nᏴᎬᏂᎷᎩᏗ ᏱᎨᎩᎪᏩᏛ, ᎠᏆᏛᏅ.\nᎠᏏᏃ ᎨᎵᎵ ᎠᏁᏙᎲᎢ ᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏴᏫ ᎤᏪᏥ ᏴᏫ ᏙᏓᎨᏥᏲᎯᏎᎵ,\nᎢᏥᎪᏩᏗᎭᏰᏃ , ᎢᏓᎵᏅᏟ, ᏄᏍᏛ ᎡᏥᏯᏅᎲᎢ, ᎾᏍᎩ ᎥᏝ ᏳᏂᏣᏔ ᎠᏂᏏᎾᏌᏂ ᎤᏇᏓᎵ ᎤᎬᏩᎵ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏳᏂᏣᏔ ᏧᎾᎵᏂᎩᏛ, ᎥᏝ ᎠᎴ ᏳᏂᏣᏔ ᎨᏥᎸᏉᏗ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᎤᏁᎳᏅᎯ ᎤᏣᏘ ᎦᎸᎳᏗᏳ ᎤᏌᎳᏓᏅ, ᎠᎴ ᎤᏁᎸ ᏧᏙᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏟ ᎦᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏂᎦᎥ ᏧᎾᏙᏍᏙᏗ ᎨᏒᎢ,\nᎥᏝ ᎠᏗᎾ ᎠᎩᏂᎬᏎᎲ ᏥᏁᎢᏍᏗᏍᎬ ᏱᎩ, ᎠᏆᏕᎶᏆᎥᏰᏃ ᏂᎦᎥ ᎾᏆᎵᏍᏓᏁᎵᏕᎬ ᎣᏏᏳᏉ ᎠᎩᏰᎸᏗᏱ.\nᎩᎦᎨ ᎤᏓᏴᎳᏔᏅ ᎤᏁᎦ ᎠᎬᏓᎨᏂ ᏣᎵ ᎤᎵᏍᏚᎸ.\nᎢᏳ ᎠᎴ ᎠᎨᏴ ᎤᏰᎯ ᎠᏓᎡᎨᏍᏗ, ᎠᎴ ᏅᏩᏓᎴ ᏓᎾᏤᎨᏍᏗ, ᎾᏍᎩ ᎠᏓᏲᏁᎮᏍᏗ.\nᏑᎾᎴᏃ, ᎠᏏ ᎪᎯᏗᏳ ᎬᏩᎩᏨᏗ ᎨᏒ ᎤᏗᏛᎮ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎢᎾᎨ ᏭᎶᏎᎢ, ᎠᎴ ᎾᎿ ᎤᏓᏙᎵᏍᏔᏁᎢ.\nᎤᏍᏗ ᎤᏪᏴ ᏩᎦᎬᏍᏉᎥ ᎠᎹ ᎤᏴᏣ ᎬᏘ, ᏩᏆᏁᏦᏅ.\nᎥᏝᏰᏃ ᎩᎶ ᏲᎩᎾᎵᎪᎭ ᎤᏠᏱ ᎤᏓᏅᏔᏩᏕᎩ, ᎾᏍᎩ ᎠᏎ ᎬᏩᎦᏌᏯᏍᏙᏗ ᎨᏒ ᏂᏣᏛᎿᏕᎬᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᏗᎩᎦᏴᎵᎨ ᏗᎨᏥᏲᎯᏎᎸᎯ ᎨᏒ ᏦᏑᏩ ᏧᎾᏖᏉᎶᏎ ᏧᏂᏲᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎪᎯ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᏚᎨᎯᏕᎴ ᏗᎩᎦᏴᎵᎨ ᏕᏫ ᏤᎮ ᎢᏯᏍᏗ.\nᎿᏉᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎠᎴ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎾᏍᎩ ᎯᎠ ᏄᏂᏪᏒ ᎤᎾᏛᎦᏅ, ᎾᏍᎩ ᎤᎾᏓᏅᏖᏔᏁᎢ, ᎭᏢ ᏮᏛᏍᏗᏥ ᎯᎠ, ᎤᏁᎵᏎᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎤᏙᎯᏳᎯ ᎢᎳᏯ ᎢᎬᏱ ᎤᎷᎯᏍᏗ ᎠᎴ ᎤᏬᏢᎯᏐᏗ ᏂᎦᎥ ᎪᎱᏍᏗ.\nᏚᎦᏒᏍᏛᏃ ᏓᏳᏂᏄᎪᏨᎩ ᎥᎴ ᎠᎴ ᎡᎶᎯ ᏚᏂᏰᎵᏒᎩ; ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᎨᏥᏁᎸᎩ ᎾᏍᎩᏯ ᏗᏂᏙᎬ ᎠᎾᏓᏨᏯᏍᏗᏍᎩ ᎡᎶᎯ ᎠᏁᎯ ᎤᎵᏂᎩᏛ ᏧᏂᎭ.\nᏰᎵᏉᎨ ᏳᏫᏂᏴᎭᎦ ᏐᏉ?\nᎥᏝᏰᏃ ᏲᏥᎶᏒᏍᏗᎭ ᎣᎦᏟᎶᏒᎸᎢ, ᎾᏍᎩᏯ ᏂᎯ ᏗᏤᎲ ᏫᎦᏲᎩᎷᎯᏍᏗ ᏂᎨᏒᎾ ᏥᎨᏐ ᎢᏳᏍᏗ; ᏂᎯᏰᏃ ᎾᏍᏉ ᏗᏤᎲ ᎢᏴᏛ ᏬᎩᎷᏨ ᎣᏣᎵᏥᏙᎲᏍᎬ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ;\n”ᎣᏍᏓ ᎤᏒᎯ!”  \nᏑᎾᎴ ᎢᏣ ᎠᏛᎪᏗ ᎨᏎ ᎤᏃᏴᎬ ᎦᏄᎸ ᎠᏣᎩᏍᎩ ᎠᏕᏲᎲ, ᎢᎾ ᎢᎦᏘ ᎦᏄᎸ ᎦᎴᏴᏍᎨ.\nᎾᎯᏳᏍᎩᏂ ᎨᏒᎢ ᎠᎴ ᎾᎯᏳ ᏕᎨᏌᏗᏒᎢ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎤᏚᎸᏗ ᏱᏂᏣᎵᏍᏓᏁᎭ ᎢᏨᏲᏪᎳᏁᏗᏱ.\nᏥᏄᏓᎴᏰᏃ Ꭱ-ᎶᎯ ᏤᎭ, ᎠᏰᎸ ᎤᏚᎸᏗ ᏥᎩ, ᎠᎴ ᏨᎦᏙᎵ ᎤᏙᎸᏗ ᏥᎩ, ᎠᎴ ᎠᏢᏉᏗ ᎠᎴᏂᏓᏍᏗᏱ, ᎾᏍᎩ ᎥᏝ ᎠᎦᏴᎵᎨᏍᏗᏱ ᏅᏓᏳᏓᎴᏅᎯ ᏱᎩ, ᎡᎶᎯᏉᏍᎩᏂ ᎤᏓᎴᏅᎯ.\nᎧᎹᎹ, ᏥᏍᏆ, ᎠᎴ ᏩᏚᎵᏏ ᎠᏂᏩᏛᎰᎯᎲᎢ.\n”ᏍᎩᎾᎾᏂ,” ᎤᏛᏁ.\nᎠᏎᏃ ᎢᏨᎦᏔᎭ, ᎤᏁᎳᏅᎯ ᎡᏥᎨᏳᎢᏳ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏍᏔᏯ ᏥᏯᏄᎩᏣᏅ, ᎠᏆᎵᎮᎵᏨ, ᏍᎩᎾᎾ ᎤᏩᏌ ᏲᎩᏂᎭᏍᏗ.\nᎤᏙᎯᏳᎯᏰᏃ ᎥᏝ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏱᏚᏬᏯᏁᏎᎢ, ᎡᏆᎭᎻᏍᎩᏂ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏚᏬᏯᏁᏎᎢ.\nᎾᏍᎩ ᎢᏦᎯᏳᏒ ᏴᏫ ᎠᏂᎦᏔᎿᎥᎢ ᏄᎵᏍᎦᏍᏙᏛᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎤᏁᎳᏅᎯᏍᎩ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ.\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᏎ ᏗᏓᏙᏕᏍᏗᏍᎩ ᎤᎾᏄᎪᎢᏍᏗ; ᎠᏎᏃ ᎤᏲᎢᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᎾᏄᎪᏫᏒᎯ!\nᏤᎵᎪᏃ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎾᏍᎩ ᏤᎵᎪ ᎢᎤᏄᎪᏨ ᎠᎴ ᎾᏍᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ, ᏗᎨᏫ ᏆᏗᎻᏯ, ᎾᏍᎩ ᏗᎻᏯ ᎤᏪᏥ, ᎤᏪᎴ ᏅᏃᎱᎶᏗ ᎠᏚᎳᏗᏍᎨᎢ.\nᏃᏉ ᎦᏓ.\nᎠᎴ ᏦᎢᏁ ᎤᏓᎵᎢ ᏧᏌ ᎾᏍᎩ ᎡᎶᏛ ᎤᏤᎵ ᏧᎬᏩᎶᏗ ᎤᎦᏌᏯᏍᏗᏕᎩ, ᎠᎴ ᏑᏌᏂ, ᎠᎴ ᎠᏂᎪᏗᏳ ᏅᏩᎾᏓᎴ ᎾᏍᎩ ᏥᎬᏩᏍᏕᎸᏙᏗᏍᎨ ᎪᎱᏍᏗ ᎤᏂᎿᎥᎢ.\nᎿᏉᏃ ᏛᏂᎪᎯ ᏴᏫ ᎤᏪᏥ ᏣᎢᏎᏍᏗ ᎤᎶᎩᎸᎢ, ᎤᏄᏬᏍᏕᏍᏗ ᎤᏣᏘ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎾᏃ ᎬᎩᏍᎦᎩ, ᏄᎾᏚᎵᏍᎬᎾ ᏥᎨᏒ ᎠᎩᎬᏫᏳᎯ ᎢᏯᏆᎵᏍᏙᏗᏱ ᎠᏁᎲᎢ, ᎡᏗᏣᏘᏄᎦ, ᎠᎴ ᏗᏥᎷᎦ ᏥᎦᏔᎲᎢ\nᎠᏓᏅᏙᏍᎩᏂ ᏱᏗᏣᏘᏂᏙᎭ, ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲ ᏱᎨᏣᏚᏓᎸ.\nᏓᏍᏓᏎᎮᎵᏃ ᎤᏛᏅ ᎦᎸᎳᏗ ᎧᏅᏑᎸᎢ, ᎦᏳᎳ ᎬᎿᎢ, ᎠᎴ ᎠᏛᏅᎢᏍᏔᏅᎯ; ᎾᎿ ᏍᎩᏯᏛᏅᎢᏍᏓᏁᎸᎭ.\nᎢᎪᎯᏛ ᏥᏍᎦᎢᎲ, ᏐᏉ ᎦᏂᏍᏗ ᏳᎾᏌᎾᎩᏒ, ᏂᎦᏓ ᎤᏁᏍᎩᎸ ᏱᎦᏅᎪᎣᏐᎾ.\nᎠᏂᏃ ᎤᎭ ᎬᏩᏁᏤᎸᎯ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏧᎸᏍᏗᏱ ᏂᎦᏛ ᏕᏣᏙᎥ ᎠᏂᏁᎢᏍᏗᏍᎩ.\nᎠᎴ ᎠᏥᏁᎴ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎤᏰᎸᏛᎢ, ᎠᏍᏓᏱᏗᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎲᎢ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏬᎯᏳᏒ ᎠᏏ ᎾᏥᎤᏍᏕᏎᎸᎾ ᏥᎨᏎᎢ; ᎾᏍᎩ ᎤᏂᏙᏓ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏂᎥ ᎠᏃᎯᏳᎲᏍᎩ, ᏂᏗᎨᏥᎤᏍᏕᏎᎸᎾ ᎨᏒᎢ; ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎾᏍᎩ ᎾᏍᏉ ᎨᏥᏰᎸᎾᏁᏗᏱ;\nᎿᏉᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏁ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎠᎴ ᏂᎦᏛ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏧᏂᏅᏍᏗᏱ ᎠᏂᏍᎦᏯ ᏧᎾᏑᏰᏛ ᎤᏅᏒ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩ ᏧᏓᏏ ᏆᏏᏆ ᏧᏙᎢᏛ ᎠᎴ ᏌᏱᎳ ᎨᏥᎸᏉᏗ ᎠᎾᏓᏅᏢᎢ, ᏉᎳ ᎠᎴ ᏆᏂᏆᎢᏧᎳᎭ ᎤᏁᏅᏍᏗᏱ ᎥᏘᏍᎩ,\n“ᏰᎵᏉᏍᎪ ᎠᏕᎳ ᏱᏕᏍᎬᏏ?” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎠᎬᏂᏗᏳ Ꭰ-Ꮄ ᎤᎦᎵᏍᏗ ᎢᏯᏓᏛᏁᎯ ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᎤᏠᏱᏉ ᎢᏣᏓᏅᏓᏗᏍᏗᏱ, ᎾᏍᎩᏯ ᎪᎶᏁᏛ ᏥᏌ ᎠᏓᏅᏖᏍᎬᎢ;\n“ᎨᏍᏗ ᏐᏉ ᎤᏪᏥ ᏯᏆᏚᎵ ᎡᏍᎦ ᎢᏳᎵᏍᏙᏗ.”\nᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎤᏙᏓ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᎤᏓᏙᎵᏣᏘ ᎠᎦᏴᎵᎨᎢ, ᎾᏍᎩ Ꭴ-ᏁᎳᏅᎯ ᏂᎦᎥ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ;\nᎠᎬᏱ ᎡᎩ ᎠᎱᎵ ᎦᎵᎥᏂᎮ, ᎡᎶ ᎢᎬᎾᏕᏅ ᎠᎵᏖᎸᏍᎨ ᎤᏃᏴᎬ.\n“ᎠᎭᏂ ᏐᎢ! ᎠᎭᏂ ᏐᎢ!” ᎤᏛᏁ ᏙᏯ.\n“ᏌᎳᏓ ᎠᎾᏓᏤᎵ ᎤᏓᎵᏁᎯᏕ.\nᎤᏥ ᏃᎴ ᎤᏙᏓ ᎱᏂᎷᏣ ᏚᏃᎯᏎᎴ ᏄᏛᏁᎸ ᏃᎴ ᎢᏳᏍᏗ ᎤᎪᎲ\nᏧᏪᏅᏒ ᎤᏚᎵᏍᎬ ᎤᏪᏅᏍᏗ.\nᏥᏌᏃ ᎤᏣᎢᏒ, ᏚᎪᎮ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᏚᏪᏙᎵᏤᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᏫ ᎤᏂᏃᏕᎾ ᏓᎾᏤᎳᎬ ᏁᎲᎾ ᏥᎨᏐ ᎤᏂᎦᏘᏯ; ᎤᎴᏅᎮᏃ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏚᏪᏲᏁᎢ.\nᎠᎴ ᏚᏪᏟᏌᏅᎩ ᎠᎹᎨᏙᏂ ᏚᏙᎥ ᎠᏂᏈᎷ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏯᎬᏗᎭ.\nᏗᎦᏓᏁ ᏧᎭᏄᏬ ᏚᏓᎥ ᏦᎢ ᏗᎦᏅᏌᏗ ᏔᎷᎩᏍᎩ ᎠᏥᎸᏳᎸᏗ ᎾᎥᏂ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏓᎵᏅᏟ, ᏂᏗᎾᏰᏍᎬᎾ ᏫᎨᎩᏴᏍᏗ ᏥᏄᎵᏍᏔᎤ ᎤᏟᎢᎦᎸᏉᏗᎨᏒ ᏥᏌ ᎤᎩᎬ ᎢᏳᏩᏂᏌᏅᎯ.\nᎯᎠᏃ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᎾᏍᎩ Ꮎ ᏥᏌ ᏱᎩ, ᏦᏩ ᎤᏪᏥ, ᎾᏍᎩ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᏗᏗᎦᏔᎯ ᏥᎩ? ᎦᏙᏃ ᎤᎵᏍᏙᏔᏅ, ᎦᎸᎳᏗ ᏅᏛᏆᏠᎠᏒᎯ, ᏣᏗᎭ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᎾᏄᎪᏩ ᎠᏙᎴᎰᎯᏍᏙᏗ ᏕᏥᏁᏟᏴᏒ ᏕᏣᏓᏅᏛᎢ; ᎠᎴ ᏞᏍᏗ ᎢᏣᎴᏅᎲ ᎯᎠ ᎢᏥᏪᏒ ᏕᏣᏓᏅᏛᎢ; ᎡᏆᎭᎻ ᎣᎩᏙᏓ ᎠᏴ; ᎢᏨᏲᏎᏰᏃ ᎤᏁᎳᏅᎯ ᏰᎵᏉ ᎯᎠ ᏅᏯ ᏱᏕᎬᏓ ᏱᏕᎪᏢᎾ ᎡᏆᎭᎻ ᏧᏪᏥ.\n“ᎳᏘᏂᏗ,” ᏚᏬᏏᏌᏁᎢ ᏌᎳᏓ.\nᎿᏉᏃ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏌᏚᏏ, ᎾᏍᎩ ᏣᎾᏓᏱᎭ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ, ᎬᏩᎷᏤᎸ ᎬᏩᏛᏛᏁᎢ,\nᎠᏂᎦᏔᎲᏍᎩ ᏳᏂᎪᎵᏯᎠ ᏂᎬᏩᏍᏛ ᎡᎶᎯ.\nᎭᏫᏂ ᏭᏴᎴ ᏥᏍᏕᏥ ᏃᎴ ᏂᎦᏓ ᎤᎪᏁ ᎤᏘᏴ.\nᏂᎦᏓ ᎤᏒᎾ, ᎤᎵᏰᏔᏁᎢ, ᎧᏁᏌᎢ ᏭᏴᎴᎢ ᎦᏢᏍᎩ.\nᎤᏁᎷᏁᎢ ᏌᏌ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟ ᏞᎩᏳ ᏥᏅᎵ, ᎾᏍᎩ ᎿᏉ ᏔᎵᏁ ᎢᎡᏥᎪᎥᎭ, ᎨᏣᎵᎮᎵᏍᏗ ᏱᎩ, ᎠᎴ ᎠᏴ ᎡᏍᎦ ᎢᏴᏛ ᎤᏲ ᏯᏆᏓᏅᏔᏩᏕᎦ.\n“ᏌᏌ ᎠᏨᏯᎢ?”\nᎠᎴ ᎠᏂ ᎾᏍᎩ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬ ᎬᏂᎨᏒ ᏂᎬᏁᎭ; ᎣᏏᏳᏰᏃ ᎢᎨᏣᎵᏍᏓᏁᏗ, ᎾᏍᎩ ᎦᏳᎳ ᎢᏣᎴᏅᏛ ᏥᎩ, ᎿᏉ ᏑᏕᏘᏴᏛ, ᎥᏝ ᎢᏣᏛᏁᏗᏱᏉ ᎾᏍᎩ, ᎾᏍᏉᏍᎩᏂ ᎣᏏᏳ ᎢᏥᏰᎸᏗᏱ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᏛᏛᏁ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙ ᎦᏛᎦ ᎯᎠ ᏓᏟᎶᏍᏛᎢ.\n“Ꭳ, ᎨᏍᏗ ᏯᏆᏚᎵ ᏁᎳᎩ ᎠᏇᎵᏍᏗ ᏓᎩᏏᎳᏛ.\nᎤᏒᏃ ᏄᎵᏍᏔᏅ ᏥᏳ ᎥᏓᎵ ᎠᏰᎵ ᎠᏂᏂᏎᎢ, ᎤᏩᏒᏃ ᏙᏱ ᎡᏙᎮᎢ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᎾᏓᏙᎵᏣᏘ, ᏛᎨᏥᏙᎵᏥᏰᏃ.\n”ᎨᏍᏗ ᏱᏥᎦᏔ ᎢᏳᏍᏗ ᎨᏒ ᏭᎬᏫᏳᏒ ᏦᏒᏅ,” ᎤᏛᏁ ᏫᎵᎻ.\nᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎾᏍᏉ ᎬᏂᎨᏒ ᎾᏋᏁᎭ, ᎠᎴ ᎾᎦᏛ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏍᏉ ᎪᏪᎵ ᏕᎬᎩᏅᏁᎸᎩ ᎢᏓᎵᏅᏟ ᏧᏂᎪᏩᏛᏗ, ᎠᎴ ᏕᎹᏍᎦ ᏩᎩᎶᏒᎩ, ᏕᏥᏯᏅᎲᏒ ᎾᎿ ᎠᏁᎯ ᏗᎨᎦᎸᎢᏛ ᏗᎦᏥᏯᏘᏃᎯᏍᏗᏱ ᏥᎷᏏᎵᎻ, ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ.\nᎠᎴ ᏥᎦᏔᎯ ᎨᏒᎩ ᎾᏍᎩ, (ᎠᏰᎸ ᎠᏯᎥ, ᎠᎴ ᎠᏰᎸ ᎾᏯᎥᎾ ᎨᏒ ᎥᏝ ᏱᏥᎦᏔᎭ; ᎤᏁᎳᏅᎯ ᎠᎦᏔᎭ;)\nᎥᏝ ᎩᎶ ᎠᏛᎩᎩᎡᎵ, ᎠᏋᏒᏉᏍᎩᏂ ᎠᏆᏓᏅᏖᏛ ᎡᎳᏗ ᏓᏥᏂ. ᎠᎩᎭ ᏰᎵᏉ ᎡᎳᏗ ᎬᎩᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎩᎭ ᏰᎵᏉ ᎬᎩᎩᏏᏐᏗ ᎨᏒᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎡᏙᏓ ᎠᎩᏁᏤᎸ.\nᎾᏍᎩ ᏛᎩᎸᏉᏔᏂ ᎠᏴ, ᎠᏆᏤᎵᏰᏃ ᎨᏒ ᏛᎩᏏ ᎠᎴ ᏓᏥᎾᏄᎪᏫᏎᎵ.\nᏂᎦᏛ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎤᏬᏚᎯ ᎠᎴ ᎣᏍᏛ Ꭰ'ᏱᎸᏛ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎠᏂᏉ ᎢᏕᎲ ᎤᏩᏒ ᎤᏚᎩ ᏱᎬᎭ ᎦᎶᏁᏛ ᎢᎩᏍᏕᎸᏗᏱ, ᎾᏂᎥ ᏴᏫ ᏕᏗᎪᎾᏛᏗ ᎤᏲ ᏂᎦᏛᏅᎢ.\nᎥᏝ ᎠᎴ ᏅᏩᏓᎴ ᎩᎶᎢ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏯᎭ, ᎥᏝᏰᏃ ᏅᏩᏓᎴ ᏕᎤᏙᎥ ᎦᎸᎶ ᎭᏫᏂᏗᏢ ᏴᏫ ᎠᏁᎲ ᎠᎵᏍᎪᎸᏔᏅᎯ ᏱᎩ ᎢᎦᎵᏍᏕᎸᏙᏗ.\nᏚᎾᏕᏯᏙᏔᏅᎩᏃ ᏴᏫ ᎠᎴ ᎦᏚᎲ ᎨᏥᎦᏘᏗᏍᏗ, ᎾᏍᎩ ᎯᎠ ᎤᎾᏛᎦᏅ.\nᎠᏎᏍᎩᏃ, ᏥᏍᏚ ᎤᏩᎾᏖ ᎠᎵᏍᎪᏍᎬ ᏩᎭᏯ.\nᏃᎴ ᏍᏉ, ᎦᏓᏁ ᎢᎦᎵᏍᏗᏍᎩ ᏱᎨᏒᎾ.\nᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎥᏥᎪᎥᎩ ᎦᎸᎶᎢ ᎠᏰᎵ ᎨᏒ ᎦᏃᎯᎵᏒᎩ, ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎣᏍᎩ Ꮎ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎤᎾᏓᏤᎵᏛ ᏓᏁᏩᏗᏒ ᏴᏫ, ᎠᎴ ᏗᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ,\nᎡᎾᎢ ᎤᎵᏬᏨ ᏓᏳᏓᎴᏅ.\nᎠᏴ, ᏉᎳ, ᏥᏴᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬᎢ, ᎠᎴ ᏗᎹᏗ ᎢᎩᏅᏟ, ᏫᏍᏛᏲᏪᎳᏏ ᏆᎵᎹᏂ ᎤᏣᏘ ᎢᏍᏛᎨᏳᎢ, ᎠᎴ ᎤᏠᏱ ᏗᎩᎸᏫᏍᏓᏁᎯ,\nᎠᏏᏉᏃ ᏓᏂᏬᏁᏗᏍᎨ ᏴᏫ, ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏛᏅ-ᏗᏚᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎠᏂᏌᏚᏏ ᎬᏩᏂᏃᎴᎢ;\nᎢᏳᏃ ᎩᎶ ᎢᎩᏅᏟ ᎠᎴ ᎢᎩᏙ ᏧᏂᏰᎸᎭ ᏱᎩ, ᎠᎴ ᏳᏂᏂᎬᎦ ᏂᏚᎩᏨᏂᏒ ᎠᎵᏍᏓᏴᏗ ᎨᏒᎢ,\nᎡᎵᏍᏓᎦ ᎢᏧᎳᎭ ᎣᏍᏗᏴᎩ, ᏫᏥᏲᎵᎭ, ᎠᎴ ᎹᎦ ᏆᏂᏆ ᎤᏙ ᎤᏪᏥ, (ᎾᏍᎩ ᎤᎬᏩᎵ ᎢᏣᏛᎦᏅᎯ ᏥᎩ; ᎢᏳᏃ ᏫᏥᎷᏤᎸᎭ ᏕᏣᏓᏂᎸᏨᎭ;)\nᎦᏓᎭᏃ ᎠᏓᏅᏙ ᎤᎸᏕᏍᏔᏅ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏅ, ᎤᏄᎪᏤᎢ.\nᎠᏎᏃ ᎨᏍᏗ ᎠᎵᏍᏆᏙᏅᏱᎩ.\nᎾᏍᎩᏯ ᎤᏪᎵᏎ, ᎨᏍᏗ ᏳᏫᏚᎧᎾᎾ ᎣᎭᏁ.\nᎥ\nᎤᏂᏣᏘᏃ ᎠᏂᎦᏖᏃᎮᎢ, ᎠᎴ ᏂᎦᏛᏉ ᎠᏫ ᏙᏧᎾᏓᏅᏛ ᎬᏩᏓᏅᏖᏍᎨ ᏣᏂ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒ, ᎠᎴ ᎦᎶᏁᏛ ᏂᎨᏒᎾ ᎨᏒᎢ;\nᏚᏟᎶᏍᏓᏁᎴᏃ ᎾᏍᏉ [ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ ᎩᎶ ᎢᏤ ᎠᏄᏬ ᎤᏪᏘᎯ ᏱᎦᎳᏍᏢᎥᏍᎪᎢ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏛᏁᎸ, ᎢᏤ ᎠᏄᏬ ᎦᏣᎦᎵᏍᎪ ᎤᏪᏘ, ᎠᎴ ᎾᏍᏉ ᎢᏤ ᎠᎬᎭᎸᏛ ᎥᏝ ᏱᏓᎾᏙᎵᎪ ᎤᏪᏘ.\nᎯᎢᎾ ᎠᏍᎦᏯ ᏍᏏᏉᏯ ᎠᏲᎤᏟ ᎨᏎᎢ.\nᏣᎵ ᏫᏥᎢᎦ ᎦᏬᏂᏍᎬ, ᎧᏃᎮᏍᎬ ᎡᏘᏴ ᏣᏁᎮ ᎠᏫ ᎢᏳᎾᏍᏘ ᏃᎴ ᏯᎾᏌ, ᎨᏍᏗ ᎩᎶ ᏧᏂᎪᎲ ᏱᎨᏎ, ᏣᎵ ᎤᏩᏌ.\n“ᏙᎤᏍᏗ ᏗᏣᎷᏫᏍᏔᏁᏗ? ᎤᏛᏛᏁ ᏫᎵᎻ.\nᎤᏩᎾᏕᏍᎩ ᎦᏙ ᎤᏂᏏᏗ ᎾᎬᎭᏁᎮ, ᎦᎶᎯᏍᏗ ᏙᏰ.\nᏂᎦᏓ ᎤᏁᏅᏎ ᏧᏪᏯ ᏗᏣ.\nᏚᎾᏛᎦᏁᎴᏰᏃ ᏧᏓᎴᏅᏛ ᏓᏂᏬᏂᏍᎬ ᎠᎴ ᎠᏂᎸᏉᏗᏍᎬ ᎤᏁᎳᏅᎯ. ᎿᏉᏃ ᏈᏓ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ;\nᎪᎯᏳᏗ ᎨᏒ ᎠᏅᏗᏍᎬ ᎼᏏ ᏧᎦᏴᎵᎨ ᎾᎯᏳ ᎤᏕᏅ ᏦᎢ ᎢᏯᏅᏙ ᏥᎬᏩᏍᎦᎸᏁᎢ, ᎠᏂᎪᏩᏘᏍᎨᏰᏃ ᎤᏬᏚᎯᏳ ᎨᏒ ᎠᏲᎵ; ᎥᏝ ᎠᎴ ᏯᏂᏍᎦᎢᎮ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎢ.\nᎾᏍᎩ ᎢᎩᎾᏄᎪᏫᏎᎸᎯ ᏥᎩ ᎤᏕᎵᏛ ᎤᏓᏅᏖᎸᎯ, ᎾᏍᎩᏯ ᎣᏏᏳ ᎤᏰᎸᏅᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎨᏒ ᎤᏓᏅᏖᎸᎯ ᎨᏒᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏧᏏ ᎯᎠ ᏄᏂᏪᏎᎴ ᎠᏥᏅᏩᏅᎯ; ᎪᎯ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎥᏝ ᏚᏳᎪᏛ ᏱᎩ ᏣᏤᏍᏙ ᏣᏂᏓᏍᏗᏱ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏬᎴ ᎵᏍᏗ ᎠᏲᎤᎵ ᏧᎳᏏᏕᏂ, ᎾᏲᎤᎴ ᎤᏕᏅ, ᎢᎸᎯᏳ ᎤᏪᏙᎸᎯ ᏂᎨᏒᎾ.\n”ᎨᏍᏗᎭ ᏳᏚᎵᏍᎨ ᎤᏪᏥ ᎤᏬᏎᎴ ᏧᏍᏆᏴᏍᏗ,” ᏔᎵᏁ ᏄᏪᏎ ᏲᎾ ᎤᏤᏍᏙ.\nᏎᎦᏨ ᏭᎷᏤ ᏗᏄᎪᏗᏍᎩ ᎤᎾᏅᏗ.\nᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎦᏓᎭ ᎢᏳᏩᏁᎯ ᏴᏫ; ᏂᏓᏑᎴᎲᎾᏍᎩᏂ ᎠᎵᏍᏓᏴᏗᏱ ᎥᏝ ᎦᏓᎭ ᏱᏄᏩᏁᎰ ᏴᏫ.\nᎾᏍᎩ ᏞᏍᏗ ᏴᏫᏉ ᎨᏣᏙᎴᎰᎯᏎᏗᏱ ᏱᏣᏰᎵᏎᏍᏗ ᎠᎹᏟ ᏨᏒᎢ, ᏣᏙᏓᏍᎩᏂ ᎤᏕᎵᏒ ᎡᎯ, ᏣᏙᏓᏃ ᎤᏕᎵᏒ ᎠᎪᏩᏘᏍᎩ, ᎠᏎ ᏣᎫᏴᎡᏗ ᎬᏂᎨᏒᎢ.\nᎠᏴᏰᏃ ᎣᏍᏛ ᎧᏃᎮᏛ ᎡᎦᎵᏥᏙᏁᎸᎩ, ᎾᏍᎩᏯᏉ ᏥᎨᎦᎵᏥᏙᏁᎸᎩ ᎾᏍᎩ; ᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎧᏃᎮᏛ ᎤᎾᏛᎦᏅ ᎥᏝ ᏅᏂᏍᏕᎸᎮᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎪᎯᏳᏗ ᎨᏒ ᏄᏓᏑᏴᎾ ᎨᏒ ᎠᎾᏛᎩᏍᎬᎢ.\nᎤᏁᎳᏅᎯ ᎥᏝ ᎢᏴᏛ ᏱᏂᏚᏩᏁᎸ ᏧᏤᎵ ᏴᏫ ᎾᏍᎩ ᎦᏳᎳ ᏥᏂᏓᎦᏔᎰᎢ. ᏝᏍᎪ ᏱᏥᎦᏔᎭ ᏂᎦᏪᏍᎬ ᎪᏪᎵ ᎾᎿ ᎢᎳᏯ ᎠᏥᏃᎮᏍᎬᎢ? ᎾᏍᎩ ᎠᏔᏲᎯᎲ ᏕᎠᏡᏗᏍᎬ ᎢᏏᎵ ᎯᎠ ᏂᎦᏪᏍᎬᎢ,\n“ᎭᎵᎮᎵᎩ,” ᎤᏬᏎᎴ ᎪᏱᏁᎢ, “ᎣᏍᏓ ᎠᏰᎸᏗ.”\nᎾᏍᎩ ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎠᎵᏰᎢᎶᎸᎭ ᏧᏪᏟᏐᏗᏱ ᏌᏉ ᎢᏧᏩᏁᏗᏱ ᎦᎶᏁᏛ ᏧᏲᎯᏎᏗ ᎦᎸᎶᎯ ᎠᎴ ᎾᏍᏉ ᎡᎶᎯ ᏤᎭ; ᎾᏍᎩ ᏧᏲᎯᏎᏗ,\nᏩᎩᎷᏣ ᏩᏯ, ᏦᎢ ᎢᏳᏪᏅᏍᏗ ᎠᏆᏁᏦᏅ ᎠᏁᏦᏗ, ᏥᏴᏐᎵ ᎠᎩᏍᏆᎵᏍᏔᏅ.\n“ᎣᏏᏉᎨ ᏄᏍᏗ ᎠᎦᏍᏘᏰᎬᎢ? ᎤᏛᏛᏁ ᎠᎳᏂ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏚᏂᎧᎿᏩᏗᏙᎮᏍᏗ ᎾᏂᎥ ᏄᎾᏠᎾᏍᏛᎾ ᎤᏂᎨᏳᎯ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ. ᎡᎺᏅ.\nᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ ᎤᎾᏓᏄᎸᎢᏍᏛ ᏎᎦᏨ ᎠᏂᏬᏂᏍᎬ.\nᏥᏌᏃ ᏧᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎩᎶ ᎢᏳᏍᏗ ᏥᎷᏏᎵᎻ ᎤᏂᎩᏎ ᏤᎵᎪ ᎤᏪᏅᏎᎢ, ᏗᎾᏓᎾᏌᎲᏍᎩᏃ ᏚᎾᏓᏩᏛᏔᏁᎢ, ᎾᏍᎩ ᏕᎬᏩᏄᏪᏎ ᏚᏄᏩᎥᎢ, ᎠᎴ ᎬᏩᎵᎥᏂᎴᎢ, ᎠᎴ ᎤᎾᏓᏅᏎ ᎬᏩᏕᏤ ᎠᏰᎵ ᎢᏴᏛ ᎤᏲᎱᏒᎯ ᎨᏎᎢ.\nᎤᏒᏃ ᎿᏉ ᏅᏙ ᏭᏕᎵᏨ, ᏕᎬᏩᏘᏃᎮᎴ ᏂᎦᏛ ᏧᏂᏢᎩ, ᎠᎴ ᎠᏂᏍᎩᎾ ᏗᎬᏩᏂᏯᎢ;\nᏗᏣᎧᏅᎦ ᎢᏏᎵ ᎾᏍᎩ ᎤᏇᏓᎵᏉ ᎨᏒᎢ; ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᏗᎵᏍᎪᎸᏔᏅᎯ ᏣᎾᎵᏍᏓᏴᏗᏍᎪ ᎤᏁᎳᏗᏍᏗᏍᎩ ᏱᎨᏐ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᎵᏍᎪᎸᏔᏅᎯ?\n”ᎭᏓᏄᏖᏯᎦ ᏃᎴ ᎭᎧᏔᎲᎾ!” ᏧᏪᎷᏁ ᏌᏌ.\nᏔᎳᏚᏃ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᏥᎷᏏᎵᎻ ᎤᏁᏅᎭ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎨᏒ ᏓᎾᎵᏍᏓᏴᎲᏍᎬ ᎢᏳᎢ.\nᎦᎶᎯᏍᏗ ᎦᎸᎳᏗᏣ ᏦᎢ ᏧᏂᏍᏗ ᏓᏂᏏᎳᏛᎥᏍᎨ.\nᎤᎦᏛᎴᏏᏙᎴᏃ ᎤᏪᏙᎴ ᏧᏛᎾ ᏕᎦᏚᎲ ᎠᎴ ᏧᏍᏗ ᏕᎦᏚᎲᎢ, ᏓᏕᏲᎲᏍᎨᎢ, ᎠᎴ ᏥᎷᏏᎵᎻ ᏩᎦᏖᎢ.\n”ᎡᎵᏍᏗ ᏔᎵᏁ ᏛᎦᏁᎸᏔᏂ,” ᎤᏛᏁ ᏫᎵᎻ, ᎤᎵᎮᎵᏍᏗ.\nᎥᏝ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏛ ᏱᎩ, ᎾᏍᎩ ᎩᎶ ᎤᏢᏈᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏂᎳᎩᏍᎬ ᎧᏁᏌᎢ ᏫᎵᎻ, ᎠᎾᏓᏓᏍᎩᏏᏍᎨᎢ ᏴᏫ ᎤᎾᎦᏙᏍᏕᎢ.\nᎿᏉ ᎧᏱᏆ ᎦᏁᎸ ᎤᎾᏘᎿᏫᏛᎲᎩ ᏥᏌ, ᏗᎫᎪᏙᏗᏱ ᏭᎾᏘᏅᏍᏔᏅᎩ; ᎠᎴ ᏑᎾᎴ ᎨᏒᎩ. ᎤᏅᏒᏍᎩᏂ ᎥᏝ ᏗᎫᎪᏙᏗᏱ ᏳᏁᏅᏎᎢ, ᎦᏓᎭ ᏱᏃᏣᎵᏍᏓ ᎠᏁᎵᏍᎬᎩ, ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᏧᎾᎵᏍᏓᏴᏗᏱ ᎤᏂᏰᎸᏒᎩ.\nᎢᏣᏓᏅᏛᎵ ᏧᏥᎸᎯ ᏓᏛᏍᎬᎢ; ᎥᏝ ᏱᏚᏂᎸᏫᏍᏓᏁᎰᎢ, ᎥᏝ ᎠᎴ ᏯᏂᏍᏙᎰᎢ; ᎠᏎᏃ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᏉ ᏐᎵᎹᏅ ᏂᎦᎥ ᎤᏬᏚᎯᏳ ᎨᏒ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏕ ᏚᏄᏩᎥᎢ ᎯᎠ ᎾᏍᎩ ᏌᏉ ᏄᏍᏛᎢ.\n”ᎾᎥᏂ---ᎥᏂ ᏦᏍᎪ ᏧᏙᏓᏆᏓ, ᏂᎦᏓ ᏱᎧᏃᎮᎳ,” ᎤᏛᏁ ᏌᏌ.\nᏍᎩᎾᎾ ᎤᏩᏌ ᎤᏙᎯᏳ ᎣᏍᏓ.\nᏂᎯᎾᎲ!\nᎤᏂᏍᏆᏛᏃ ᏂᎦᎥ ᎪᏪᎸ ᎾᏍᎩ ᎠᏥᏃᎮᏍᎬᎢ, ᎤᎾᏕᏎ ᎠᏓ ᎨᏛᎢ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏂᏅᏁᎢ.\nᎠᏏᏃ ᏌᏉ ᎤᏪᏥ ᎡᎮᎢ, ᎤᎨᏳᎯ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏅᏎ ᎣᏂᏱ ᏗᏁᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏎ ᏛᏂᎸᏉᏔᏂ ᎠᏇᏥ.\nᏃᎴ ᏐᏉ ᎢᏣ ᎦᏓᎭ ᎨᏐᎢ ᏗᎩᏏ ᎤᎾᏏᏅᎢ.\nᎠᏎᏃ ᏌᏱᎳ ᎣᏏᏳ ᎤᏰᎸᏁ ᎾᎿᏉ ᎤᏗᎩᏯᏍᏗᏱ.\nᎠᎦᏴᎵᎨᏰᏃ ᎤᏩᏒ ᎢᏥᎨᏳᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏍᎩᎨᏳᎢᏳ ᎨᏒᎢ, ᎠᎴ ᎢᏦᎯᏳᏅ ᎤᏁᎳᏅᎯᏱ ᏅᏛᏆᏓᎴᏅᎯ ᎨᏒᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎠᏍᎫᏕᏍᏗ ᎤᏤᎵ ᎤᏪᏂᏙᎸᎩ ᎡᎶᎯ, ᎠᎴ ᎤᏪᏟᏌᏅᎩ ᏖᎸᎳᏗ ᎡᎶᎯ ᎤᏛᏒᎯ, ᎠᎴ ᏭᏓᎢᏅᏒᎩ ᏭᎸᏅᎩ ᎤᏔᏅ ᏖᎸᎳᏗ-ᎦᏨᏩᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏤᎦ.\nᏥᏅᏩᏍᏛᏉ ᏝᏍᎪ ᏣᏤᎵᎦᏯ ᏱᎨᏎᎢ? ᏣᎾᏗᏅᏃ ᏝᏍᎪ ᏱᏣᎮ ᎭᏓᏅᏖᏍᎬᏉ ᎢᏨᏁᏗᏱ? ᎦᏙᏃ ᎯᎠ ᎾᏍᎩ ᏂᎤᏍᏗ ᎢᏦᏢᏅ ᏣᎾᏫᏱ? ᎥᏝᏍᎩᏂ ᏴᏫᏉ ᏱᎩᏯᏥᎪᏁᎸ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎯᏯᏥᎪᏁᎸ.\nᎿᏉᏃ ᎾᏍᏉ ᏐᎢ ᎠᏓᏍᏓᏩᏗᏙᎯ, ᎢᎬᏱ ᎤᎷᏨᎯ ᎠᏤᎵᏍᏛ, ᎤᏴᎸᎩ; ᎠᎴ ᎤᎪᎲᎩ ᎠᎴ ᎤᏬᎯᏳᏅᎩ.\nᎠᏎᏃ ᎤᎾᏓᏅᏒᏉ ᏚᏂᏃᏣᎳᏅᎩ ᎾᎿ ᏂᎬᎾᏛᎢ.\nᏗᎪᏢᏒᏃ ᎠᏥᎸᏱ ᏫᏙᏛᎾᏓᎡᏏ; ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ.\nᏂᎯᏍᎩᏂ, ᎢᏓᎵᏅᏟ, ᎥᏝ ᎤᎵᏏᎬ ᏱᏤᎭ, ᎾᏍᎩ Ꮎ ᎾᎯᏳ ᎢᎦ ᎨᏣᏢᏔᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩᏯ ᎦᏃᏍᎩᏍᎩ ᏧᏢᏔᏍᎪᎢ.\nᏥᏯᏛᏛᏅ ᎢᏴ ᎣᎯᏍᏙᏗ ᎠᎩᎷᎯᏍᏗ, ᏣᏗ ᎯᎸᎢᏴ.\nᎠᎴ ᎬᏍᎦᎢᏍᏓᎩ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᏴᏫ ᎤᎪᏏᏛ ᏧᎾᏓᏅᏘ, ᎤᏂᏂᎩᏛ ᏚᏳ-ᎪᏛᎢ, ᎨᏅᎢᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏗᏁᎶᏙᏗ ᎢᏧᎳᎭ ᎠᏁᎵᏍᎩ. ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏕᎭᏓᏅᎡᎮᏍᏗ.\nᎠᎴ ᏞᏍᏗ ᎠᏍᎦᏂ ᏤᏥᏲᎯᏎᎸᎩ ᏗᏥᏰᎸ ᎤᏚᏓᏕᏫᏒᎢ, ᎾᏍᎩ ᏗᏨᏙᏗᏱ ᏂᏚᏳᎪᏛᎾ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎢᏨᏒ ᏤᏣᏓᏲᎯᏏ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎤᎾᏛᏂᏛᎯ ᏧᏂᏲᎱᏒᎯ ᎨᏒ ᎠᎴ ᏗᏥᏰᎸ ᎤᏚᏓᏕᏫᏒ ᎤᏁᎳᏅᎯ ᏕᏥᏲᎯᏎᎸᎩ ᎾᏍᎩ ᏗᏨᏙᏗᏱ ᏚᏳᎪᏛ ᏗᏥᎸᏫᏍᏓᏁᏗᏱ,\nᎠᎵᏥᏙᎲᏍᎨᏃ ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎡᏍᎦᏉ ᎠᏴ ᎣᏂ ᏓᏯᎢ, ᎾᏍᎩ ᏧᎳᏑᎶᎩᎯ ᏓᎧᏁᏌᏛ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᎠᏆᏗᏌᏓᏗᏍᏗᏱ ᎠᎴ ᏗᎩᎧᏁᏴᏗᏱ.\nᎦᏙ ᏴᏫ ᏳᏁᏉᏥ ᎢᏳᏃ ᎡᎳᏂᎬ ᎤᏤᎵ ᏱᏄᎵᏍᏔᏅ, ᎤᏓᏅᏙᏃ ᏳᏲᎱᏍᎸ; ᎠᎴ ᎦᏙ ᏯᎲᎦ ᏴᏫ ᏱᎦᏁᏟᏴᏍᏓ ᎤᏓᏅᏙ.\nᏥᏍᎪᎵ ᎥᏝ ᏱᏍᎩᎶᏁᏔᏁ ᎪᎢ; ᎯᎠᏍᎩᏂ ᎠᎨᏴ ᎠᏠᏁᏗ ᏚᎶᏁᏔᏅ ᏗᏆᎳᏏᏕᏂ.\n“ᎠᏂᏍᎦᏰᎬᏍᏗ ᏙᏣᏦᏍᎦ,” ᎤᏛᏁ ᎤᏔᎾᏯ ᎤᏃᏕᎾ.\nᏥᏌᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᎠᏋᏒ ᏱᎦᏓᎸᏉᏗᎭ, ᎥᎩᎸᏉᏗᏳ ᎠᏎᏉᏉ ᏱᎩ; ᎡᏙᏓᏍᎩᏂ ᎠᎩᎸᏉᏗᏍᎩ, ᎾᏍᎩ ᎠᏴ ᎣᎦᏁᎳᏅᎯ ᏥᏣᏗᎭ.\nᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎳ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎤᏕ-ᎵᏛ ᏱᎩ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎤᏂᏰᏤ ᏗᎾᏙᎴᏆᏍᎩ, ᎤᏕᎰᏎ ᏲᎾ ᎤᏤᏍᏙ.\nᏔᎵᏁ ᎤᏃᏕᎾ ᎠᏓᎯ ᎤᏁᎸᏔᏁᎢ.\nᎠᏰᎸᏰᏃ ᎠᏓᏅᏙ ᏄᏪᎲᎾ ᏱᎩ ᎤᏓᏬᏨᎯ ᏥᎨᏐᎢ, ᎾᏍᎩᏯᏉ ᎪᎯᏳᏗ ᎨᏒ ᏔᎵ ᏄᏛᏛᎾ ᏱᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎾᏍᏉ ᎤᎵᏬᏨᎯ ᎨᏐᎢ.\nᎠᎾᎵᏅᏟᏰᏃ ᎥᏝ ᏱᎬᏬᎯᏳᎲᏍᎨᎢ.\nᎾᎿᏰᏃ ᎠᏛᏳᎨᏗ ᎠᎴ ᎠᏗᏒᏍᏗ ᎠᏁᎲᎢ, ᎾᎿ ᎡᎰ ᏧᏓᎴᏅᏛ ᎠᎴ ᏂᎦᎥ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎾᎯᏳᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎤᏂᏣᏔᏅ, ᎠᏂᎪᎢ ᎤᏂᏬᏂᎯᏍᏗ ᎠᏂᏬᏂᏍᎩ ᎪᎱᏍᏗ ᏓᏃᏎᎮ ᎠᏂᏈᎷ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎨᎦᎦᏌᏯᏍᏛᎾ ᎨᏒ ᏧᎾᏤᎵ ᎠᏂᎨᏴ ᏧᏃᏑᎶᏨᎯ ᏂᏚᎩᏨᏂᏒ ᎠᏂᏯᏙᎯᎲᎢ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎯᏍᎦᏯ, ᎦᎪ ᏗᏍᏛᏳᎪᏓᏁᎯ ᎠᎴ ᎢᏍᏛᏯᏙᎮᎯ ᎾᏋᏁᎸ?\nᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᏥᏃᏨᏁᎭ, ᎾᏂᎥ ᏥᏙᏤᏯᏔᎲᏍᎦ, ᎠᎴ ᎾᏂᎥ ᏥᏙᏤᏲᎲᏍᎦ ᏦᏨᏗᎭ ᏂᎦᎥ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏂᎥ ᎬᏂᎨᏒ ᎢᏦᏨᏁᏗᏱ ᏄᏂᎪᎸᎾ ᎦᎶᏁᏛ ᏥᏌ ᏚᎾᏁᎶᏛᎢ;\nᏂᎦᎥᏰᏃ ᎪᎱᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᎠᏎᎪᎩᏍᎪ ᎡᎶᎯ. ᎢᎪᎯᏳᏒᏃ ᎾᏍᎩ ᎠᏎᎪᎩᏍᎩ ᎡᎶᎯ.\nᏫᎬᏲᏪᎳᏏ ᏘᎹᏗ ᎠᏋᏒ ᎠᏆᏤᎵ ᎠᏇᏥ ᎪᎯᏳᏗ ᎨᏒ ᎢᏳᏩᏂᏌᏛ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎤᏓᏙᎵᏣᏛ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁ-ᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ.\nᎯᎾ - ᎨᏙᎩ ᏱᏓᏃᏎᎰ Ꮎ:\nᏙᏱ ᏳᏗᎧᎴᏅ, ᎧᏃᎮᏛ ᎠᏗᎦᎴᏲᏍᎬ ᎡᏆ ᏓᏍᏆᏚᎸ, ᏱᏓᎧᏁᏍᎬᏃᏉ ᏃᎴ ᎭᏫᏂ ᏯᏴᎵᎲᎾ.\nᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎠᏥᏅᏏᏓᏍᏗ ᎤᏄᎪᏨ, ᎤᏩᏛᎮ ᎠᏏᏴᏫ ᎢᏧᎳᎭ ᎨᏥᏅᏏᏓᏍᏗ ᎾᏍᎩ ᎤᏁᏨᎯ ᎤᎫᏴᎡᏗᏱ ᎠᏍᎪᎯᏧᏈ ᎠᎩᏏ ᏧᎾᎬᏩᎶᏗ; ᎤᏂᏴᎮᏃ, ᎠᎴ ᎤᏴᏍᎩᏴᎮᎢ; ᏍᏆᎫᏴᏏ ᏥᎬᏚᎦ, ᎤᏛᏁᎢ.\nᎤᎯᏐᏗ ᎠᏂᏲᏍᎩ ᏧᎾᏙᎴᏆᏍᏗ ᏭᏪᏙᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎠᏴ ᏂᏗᎥ ᎢᎩᏍᏆᏛᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎢᎦᏓᏅᏖᏍᏗ; ᎠᎴ ᎢᏳ ᎪᎱᏍᏗ ᎨᏒ ᏅᏩᏓᎴ ᏄᏍᏕᏍᏗ ᏙᏣᏓᏅᏖᏍᏗ, ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎯᎠ ᎾᏍᏉ ᎬᏂᎨᏒ ᏅᏓᏨᏁᎵ.\nᏥᎪᏃ ᏍᎩᏍᎦᎩ ᏄᎵᏍᏔᏅ ᏂᎦᎵᏍᏙᏗᎭ ᎤᏙᎯᏳᎯ ᎨᏒ ᎢᏨᏃᏁᎸᎢ?\nᎾᏍᎩᏰᏃ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏩᎳ; [ᎠᎴ] ᎾᏍᎩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ. ᎡᎺᏅ.\nᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤ-Ꮅ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ ᏂᏥᎥᎢ. ᎡᎺᏅ.\nᏓᏓᏒᏂᏉᎨ ᎦᏲᏟ ᎩᎦ ᏧᏩᏥᎪ ᎤᏅᏗ ᎠᏥᏍᏛ ᏥᏂᎦᎵᏍᏗᏍᎪ, ᎠᎴ ᏓᏓᏓᎸᏥᎨᎭ. ᎤᏍᏗ ᏅᏯ ᏥᏩᎫᏕᏉ ᎠᎹᏱ ᎨᏴ.\nᎡᎳᏆᏗ ᏧᏦᎣᏎᎢ ᏃᎴ ᏚᏍᏕᎸᎮ ᎠᏂᏍᎦᏯ.\n ᎠᏎᏃ ᎠᎵᎮᎵᎬ ᎨᏍᏗ ᏳᎪᎭ ᎤᏩᏂᎦᏢ.\nᎠᏨᏍᏙᏗᏃ ᎤᏔᏲᎸ ᎤᎵᏍᏗ ᏭᏴᎴᎢ, ᎠᎴ ᏭᎷᏤ ᎤᏪᎾᏫᏍᎨᎢ, ᎤᏓᏅᏂᎴ ᎢᎬᏱᏢ ᏉᎳ ᎠᎴ ᏌᏱᎳ ᏚᏃᎸᎢ.\nᏥᏌᏃ ᏫᏚᏯᏅᎲ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏥᏯᏙᎵᎦ ᎯᎠ ᎤᏂᏣᏘ ᎨᏒᎢ, ᏦᎢᏰᏃ ᎾᏙᏓᏆ ᎠᏂ ᎨᏙᎲ ᎠᏁᏙᎭ, ᎠᎴ ᎥᏝ ᏱᏂᏰᎭ ᎤᎾᎵᏍᏓᏴᏗ. ᎠᎴ ᎢᏝ ᏯᏆᏚᎵᎭ ᏙᎤᏁᏅᏍᏗᏱ ᏗᎬᏩᏂᏲᏏᏍᎩ, ᏩᎾᏰᏃ ᏱᏓᏂᏩᏂᎦᎶᎩ ᏩᎾᎢᏒᎢ.\nᎢᏳᏃ ᏂᎯ ᎢᏥᏲᎢ ᏱᏥᏏᎾᎯ ᎣᏍᏛ ᎨᏒ ᏗᏥᏁᏗᏱ ᏗᏤᏥ, ᎤᏟᎯᏳ ᎤᏙᎯᏳᎯᏯ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᎣᏍᏛ ᏓᏁᎮᏍᏗ ᎬᏩᏔᏲᏎᎯ.\n”ᎦᏙᎩ ᏛᎾᏛᏁᎵ?” ᎤᏪᎷᏁ ᏫᎵᎻ.\nᎤᏂᏣᏘᏃ ᎢᎬᏱ ᎠᏁᎩ, ᎠᎴ ᎣᏂ ᎠᏁᎩ ᎤᏁᎷᎬᎩ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎰᏌᎾ ᏕᏫ ᎤᏪᏥ! ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᏕᎤᏙᎥ ᏥᎦᎷᎯᏍᏗᎭ! ᎰᏌᎾ ᏩᏍᏛ ᎦᎸᎳᏗᏳ!\nᎤᎾᎵᏍᏓᏴᏅᎯᏃ ᏅᎩ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡᎢ; ᏚᏰᎵᎯᏍᏔᏁᏃ.\nᎠᏂᏤ ᎠᏂᏳᏩᏁᎦ ᎠᏂᏲᏍᏗᏍᎬ ᎤᏬᏨᏛ ᏓᎭᏃᏫ, ᎠᏓᏔᎶᎯᏍᏗ ᎤᏩᏌ ᎠᎾᏓᏅᏖᏍᎬ.\nᎠᎵᏰᎾ ᎮᎵᎠ ᏓᏓᏗᏩᏛᎯᏍᎪᏃ ᎤᎪᏏᏓ ᎢᏗᏅᏁ.\nᎡᎳᏗ ᎨᏎᏍᏗ ᏌᎳᏓ! \nᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎩᎶ ᏔᎵ ᏗᎦᏌᎴᎾ ᏚᎾᎡᏍᏗ, ᏄᎾᎥᎾ ᎨᏒ ᎦᏅᏁᎮᏍᏗ; ᎩᎶᏃ ᎠᎵᏍᏓᏴᏗ ᎤᎮᏍᏗ, ᎾᏍᎩᏯ ᎾᏛᏁᎮᏍᏗ.\n“ᏍᏆᏛᎦᏍᏓᏏᏛ ᎤᏦᏱᎴᎢ ᏫᎵᎻ.\nᎡᎶᏛᏍᎩᏂ ᏍᎦᏚᎩ ᎠᏥᎦᏘᏗᏍᏗ ᎨᏒᎢ, ᏣᏂ ᎤᎬᏍᎪᎸᏁ ᏗᎵᏰᎢᎸᏍᏗᏍᎨ ᎡᎶᏗᏏ ᎤᏅᏟ ᏈᎵᎩ ᎤᏓᎴᎢ, ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎤᏣᏘᏂ ᏄᏛᏁᎸ ᎡᎶᏛ,\nᎾᏍᎩ ᎢᏣᎴᏂᏓᏍᏗᏱ ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᏗᏂᎧᎿᏩᏕᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏒᎢ, ᏂᎦᎥ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎤᏣᏘ ᎢᏥᎾᏄᎪᏫᏍᎬᎢ, ᎠᎴ ᎧᏁᏉᎬ ᎡᏥᎦᏙᎥᏍᎬ ᎤᏁᎳᏅᎯ;\nᎠᏓᏅᏙᏰᏃ ᎬᏂᏛ ᎠᏓᏁᎯ, ᎾᏍᎩ ᎬᏂᏛ ᎦᎶᏁᏛ ᏥᏌ ᏨᏗᏓᎴᎲᏍᎦ, ᎾᏍᎩ ᎠᏓᏅᏙ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏇᏓᎴᏒ ᎠᏍᎦᏂ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎾᏤᎵ ᏗᎧᎿᏩᏛᏍᏗᏱ ᎠᏆᏚᏓᎸᎢ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᎢᏳᎾᏍᏗ ᏥᏓᏂᏴᎵᏙᎰ ᏓᏓᏁᎸᎢ ᎠᎴ ᏥᏓᎾᏘᎾᏫᏗᏍᎪ ᏄᎾᏓᏅᏛᎾ ᎠᏂᎨᏴ ᎤᏂᎧᎵᏨᎯ ᎠᏍᎦᎾᎢ, ᏚᎾᏘᏂᏒ ᏧᏓᎴᏅᏛ ᎠᏚᎸᏗ ᎨᏒᎢ,\nᎤᏩᎬᏘᎶᏓ ᏄᏛᏁᎴ.\nᎢᎦᏛᏃ ᎣᏒ ᎦᏙᎯ ᎤᎳᎨᏯᏛᏤᎢ, ᎠᎴ ᎤᎵᏰᏁᎢ, ᎠᎴ ᎠᏛᏍᎨᎢ, ᎠᎴ ᎧᏁᏉᎨᎢ, ᎠᎴ ᎤᎦᏔᏔᏁᎢ, ᎢᎦᏛ ᏦᎠᏍᎪᎯ ᎢᏳᏩᎫᏗ, ᎢᎦᏛᏃ ᏑᏓᎵᏍᎪᎯ, ᎢᎦᏛᏃ ᎠᏍᎪᎯᏧᏈ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ; ᎥᏝ ᎩᎶ ᎢᏥᏠᏱ ᎨᏒ ᎾᏍᎩ ᏱᏄᏍᏗ ᏱᏚᏙᎥ.\nᎠᏎᏰᏃ ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏎᎢ, ᎾᏍᎩ Ꮎ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎠᎪᏢᎾᏁᎸᎯ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎪᏢᏅᎯ ᏥᎩ, ᎾᏍᎩ ᏗᎬᏩᎸᏌᏛ ᏗᎨᏒ ᏫᏓᏘᏃᎯᎲ ᎤᏂᏣᏘ ᏧᏪᏥ, ᎾᏍᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏗᏩᏛᎡᎯ, ᏂᎦᎷᎶᎬᎾ ᎢᏯᎬᏁᏗᏱ ᎠᎩᎵᏲᎬᎢ.\nᏂᎯᏍᎩᏂ ᎾᏍᎩ ᎢᏥᎾᏄᎪᏫᏒᎯ ᎢᎩ, ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᎠᎴ ᎾᏍᎦᏅᎾ ᎢᎬᏁᏗ ᎨᏒ, ᎠᎴ ᎠᎫᏴᏙᏗ ᎨᏒ, ᎠᏴ ᎢᎬᏁᎸᎯ ᏥᎩ ᎤᏁᎳᏅᎯ;\nᏥᏌᏃ ᎤᏣᎢᏒ ᏚᎪᎲᎩ ᎤᏂᏣᏘ ᏴᏫ, ᎠᎴ ᏚᏪᏙᎵᏨᎩ, ᎠᎴ ᏚᏅᏩᏅᏧᏂᏢᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎭᎦᏌᏯᏍᏓ ᎤᏓᏅᏖᏳ ᎨᏒ ᎠᎴ ᎠᏍᏓᏱᏳ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎠᏍᏓᏱᏳ ᏂᏕᎬᏁᎲ ᎾᏍᎩ Ꮎ ᏧᏂᏅᏨᎯ; ᏂᎯᏍᎩᏂ ᎤᏓᏅᏘᏳ ᎨᏒ ᏣᎾᏄᎪᏫᏎᎲᎢ; ᎢᏳᏃ ᏱᏅᏩᏍᏗᏗ ᏕᏣᏂᏴᏒ ᎤᏓᏅᏘᏳ ᎨᏒᎢ; ᎥᏝᏰᏃ ᎾᏍᎩ ᏂᎯ ᎾᏍᏉ ᎡᏨᎾᎦᎴᏍᏗ ᎨᏎᏍᏗ.\nᎤᏕᏯᏙᏗ ᎨᏒ ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏲ ᎢᏯᎾᏛᏁᎯ, ᎠᏂᏧᏏ ᎢᎬᏱ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ;\nᎾᏍᎩ ᎯᎠ ᏱᎰᏩ ᏄᏛᏁᎸ, ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᏕᏓᎧᏂᏍᎬᎢ.\nᎾᏍᎩᏃ ᏄᏍᏛᎩ ᎠᏆᏟᏂᎬᏁᎸᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᏆᎵᏥᏙᏗᏱ, ᎥᏝ ᎾᎿ ᎦᎶᏁᏛ ᎠᏥᏁᎢᏍᏔᏅᎢ, ᎩᎶ ᎤᏅᎯ ᎦᎫᏍᏛᏗ ᎠᏆᏁᏍᎨᏍᏗᏱ ᏂᎨᏒᎾ;\nᎩᎳᏈᏴ ᎤᏦᎣᏎ ᎡᎳᏆᏗ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᏍᏚᏗ.\nPerry, ᎠᏎᏛ ᏱᏣᎪᎰᏍᏔᏅᎾ ᏱᎩ ᏏᏆ ᎭᏫᏯ ᏗᎦᏒᏍᏔᏅ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏅᏙ ᎢᎾᎨ ᏭᏘᏅᏍᏔᏁᎢ.\nᎨᏍᏗ ᏐᏉ ᎦᏰᏌᏛ ᏧᏌᎴᏓᏁᎸ ᏱᎨᏎ ᎠᎹᏰᎵ ᎠᏁᎮ ᎠᎴ ᏍᎪᏂᏴ ᏓᏳᏂᎶᏒ ᎠᏳᏩᏁᎦ, ᎨᏍᏗ ᏯᎦᏔᎮ ᏂᏚᎾᏓᎴᏒ ᏃᎴ ᎤᏦᏍᏔᏁᎮ ᎢᏳᏍᏗ ᎤᏰᎸᏗ ᎠᎾᏟᎲ.\nᎠᏴ ᎠᎩᏫᏒᎩ, ᎠᏉᎳ ᎠᎹ ᎤᏍᏚᏢᎩ; ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏁᏉᎢᏍᏗᏱ ᏄᏩᏁᎸᎩ.\nᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎤᏬᏢ ᎣᎭᏁ ᎦᏍᎬᎸ ᏃᎴ ᎤᏑᎸᏓ ᎠᎵᏥᏍᏔᏅ ᏩᎦ ᎭᏫᏯ, ᎦᎵ ᎠᏥᏍᏛ ᎤᏃᏫ ᎤᏍᏔᏲᏒ ᏧᏓᎵ ᎾᎥᏂ ᏓᏳᏓᎴᏅ ᎪᎢ.\nᏌᏉᏃ ᎠᏍᎫᏓᏛ ᎠᎩᎪᎲᎩ ᎬᏩᏲᎱᎯᏍᏗ ᎢᏴᏛ ᏣᏥᏐᏅᏃ ᏓᏤᎸᎩ; ᎠᎴ ᎾᏍᎩ ᎬᏩᏲᎱᎯᏍᏗ ᎢᏴᏛ ᎠᏥᏐᏅᏅ ᎤᏗᏩᏒᎯ ᎨᏒᎩ; ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ [ᎠᏁᎯ] ᎠᏂᏍᏆᏂᎪᏍᎬᎩ [ᎠᎴ] ᎠᏂᏍᏓᏩᏗᏒᎩ ᎾᏍᎩ ᎾᏅᎩ-ᏗᎦᏅᏌᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏣᏓᏓᏂᎸᎨᏍᏗᏉ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᏕᎦᏓᏂᎸᏨ ᎠᏴ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᏯᎬᏁᏗᏱ ᎤᏁᎳᏅᎯ.\n“ᎯᎸᎯᏴ ᎦᎬᎨᏫᏍᏗ ᏱᎨᏒᎾ ᎤᎾᏟᎴ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎭᎵᏍᎪᎸᏓᏁᎸ ᏧᏩᏛᎯᏓᏍᏗ ᏧᎵᎢ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎠᏁᎯ.\nᎾᏍᎩᏃ ᎾᏅᎩᏦᏁ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ, ᎠᎴ Ꮎ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᎡᎳᏗ ᏚᎾᏓᏅᏅᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ, ᎾᏍᎩ ᎦᏍᎩᎸ ᎤᏪᎵ, ᎯᎠ ᎾᏂᏪᏍᎬᎩ, ᎡᎺᏅ; ᏱᎰᏩ ᎡᏗᎸᏉᏓ.\n“ᎦᏙᏃ?\nᎾᏍᎩ ᎾᎿ ᎠᏴ ᏗᎩᎸᏫᏍᏓᏁᎯ ᎠᏴᏋᏁᎸᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎴᏍᏗ ᎨᏒ ᎥᏆᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎩ ᎬᏩᏄᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᏳᏩᏂᏌᏛ.\nᏛᏍᏆᎸᎯᏰᏃ ᎿᏉ ᎾᎯᏳ ᎥᏝ ᏳᎾᏚᎵᏍ-ᎨᏍᏗ ᎤᎾᏛᏓᏍᏙᏗᏱ ᎣᏍᏛ ᏗᏕᏲᏗ ᎨᏒᎢ; ᏚᏂᏲᏕᏍᎬᏍᎩᏂ ᏗᏂᎴᏂ ᎠᏅᏗᏍᎨᏍᏗ ᎤᏅᏒᏉ ᎤᎾᏚᎸᏅᏗ ᎨᏒ ᏓᏂᏍᏓᏩᏗᏒ ᏓᏂᏟᏏᏍᎨᏍᏗ ᏗᎾᏕᏲᎲᏍᎩ;\nᎧᏁᎢᏍᏗ ᎨᏒ ᎩᎦ ᎤᏂᏁᎲ, ᏦᏍᎪ ᏔᎵᎢᏁ ᎤᎵᏏᎩ ᎩᎦ ᎤᏁᎯᏱᎩ, ᎨᏍᏗ ᏳᏩᏁᎦ ᎫᏩᎾᏛᏗ ᏱᎩ.\nᎩᎶᏍᎩᏂ ᎠᏂᎨᏴ ᎨᏒ ᏯᏓᏙᎵᏍᏗᎭ ᎠᎴ ᏯᏙᎴᎰᏍᎦ ᏄᎵᏍᏚᎸᎾ, ᎠᏕᎰᎯᏍᏗᏍᎪ ᎠᏍᎪᎵ ᎨᏒᎢ; ᏧᎵᏍᏙᏴᎰᏉᏰᏃ ᎢᏧᎳᎭ ᎾᏍᎩ.\n”ᎭᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏅᎯᏍᏊ ᏙᎯᏳᏍᏊ, ᏥᏫᎾᏭ ᎨᏒ ᎠᏎᏏᏂᏍᏊ, ᎠᏆᏍᎦᏰᏂᏍᏊ ᏥᎨᏒ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏚᏂᏲᏎ ᏧᏂᎦᏯᎷᏗ, ᎠᎴ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᏙᏥᏩᏛᎲᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎾᎿ ᎣᎦᏅᏅᎩ ᎦᎵᏉᎩ ᏧᏙᏓᏆᏛ; ᎾᏍᎩ ᏉᎳ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ; ᏞᏍᏗ ᏥᎷᏏᎵᎻ ᏤᏅᏒᎩ.\nᎠᎴᏬ ᏅᏩᏓᎴ ᎪᏪᎸ ᎯᎠ ᏂᎦᏩᎭ; ᏙᏓᎬᏩᎧᎾᏂ ᏗᎬᏪᏘᎸᎯ.\nᎠᏎᏃ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏯᏙᎯᏳᎲᎦ ᏄᏍᏛ ᎪᏪᎸᎢ, ᎠᏎ ᎾᏍᎩ ᎢᏳᎵᏍᏙᏗ ᏥᎩ?\nᎠᏌᎻᏓ ᏃᎴ ᎠᏯ ᎣᏍᏔᎦᏙᏍᏛ ᎠᏥᎸ ᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏗᏍᎨ ᎠᏌᎻᏓ.\nᎯᏍᎩᏃ ᎢᏯᎦᏴᎵ ᏣᏥᏁᎸᎯ ᎤᎷᏤᎢ, ᎠᎴ ᏚᏲᎴ ᏅᏩᎾᏓᎴ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎠᏕᎸ, ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᏕᏍᎩᏲᎯᏎᎸᎩ; ᎬᏂᏳᏉ ᏅᏩᎾᏓᎴ ᎯᏍᎩ ᎢᏯᏕᏴᎵ ᎬᎩᏁᏉᏤᎸ.\nᏏ ᎩᎳᎯ ᎤᏍᏘᏰᎬ ᎤᏓᏑᏰᎢ ᎧᏁᏍᎦ ᏃᎴ ᎤᏬᏚ ᏗᎧᏃᏗ ᎨᏎ ᏃᎴ ᎤᎳᎾᎩᏍᎨᎢ.\nᏧᎾᏗᎩᏓ ᎠᏓᏍᏕᎵ ᎠᏤ ᎦᏓ ᎾᏅᏁ.\nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏓᏓᏏ ᎤᎾᏫᏱ ᏧᎳᏁᎸ ᎾᏍᎩ ᎢᎦᎢ ᏗᏤᎷᎢᏍᏗᏱ.\nᎯᎠ ᏄᏂᏪᏎᎢ; ᎯᎠ ᏂᏥᏪᏒᎭ; ᎬᏩᏍᏓᏩᏗᏙᎯ ᏒᏃᏱ ᎤᏂᎷᏨᎩ, ᎣᏥᎵᏅ ᎬᏩᏃᏍᎩᏒᎩ.\nᎾᏍᎩ ᎣᏂᏗᏢ ᎤᎷᎯᏍᏓᏁᎢ, ᎠᎴ ᎦᏓᎷᏯᏛ ᎤᏄᏩᎥᎤᏒᏂᎴᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎩᎬ ᎤᏪᏅᎡᎲ ᎤᏲᎯᏍᏔᏁᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᏍᎩ Ꮎ ᎤᏪᏙᎵᏨᎯ. ᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᎾ, ᎠᎴ ᏂᎯ ᎾᏍᎩᏯ ᏫᎾᏛᎦ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛᏁᎰᎢ ᎦᏟᏂᎬᏁᎰ ᎠᏆᏓᏅᏙᎩ ᎠᏆᏎᎮᎲᎢ ᏂᎪᎯᎸ ᏂᏥᏍᎦᏅᏤᎲᎾ ᎤᏁᎳᏅᎯ ᎠᎴ ᏂᎦᏥᏍᎦᏅᏤᎲᎾ ᏴᏫ ᎢᏳᎵᏍᏙᏗᏱ.\n“Ꭵ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎢᎸᎯᏳᏰᏃ ᏥᎨᏒ ᎤᎵᏏᎬ ᎢᏤᎲᎩ, ᎪᎯᏍᎩᏂ ᎨᏒ ᎢᎦ-ᎦᏛ ᎢᏤᎭ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏌᏛ; ᎢᎦ-ᎦᏛ ᏧᏪᏥ ᎤᏁᏓᏍᏗ ᎨᏒ ᎢᏤᏙᎮᏍᏗ;\n”ᎯᏲᎯᏍᏓ, ᎡᎳᏆᏗ!” ᎤᏦᏱᎴᎢ ᏲᎾ ᎤᏤᏍᏙ.\nᎥᏝᏰᏃ ᏱᏙᎬᏩᏳᎪᏗ ᎨᎵᎠ, ᎢᏳᏃ ᏱᎦᏓᏅᏍᎦ ᎠᎦᏘᏅᏍᏗᏱ ᎠᏴᎩ, ᎾᎩᏁᎢᏍᏔᏅᎾᏃ ᏱᎩ ᏄᏍᏛ ᎠᎫᎢᏍᏗᏍᎬᎢ.\nᎠᎩᎪᏁᎸᏍᎩᏂᏃᏅ ᎠᎩᏇᏓᎸ ᎨᏒᎢ, ᎠᏎᏃ ᎠᏆᏓᏅᏙ ᎨᏒ ᎢᏨᏰᎳᏗᏙᎭ, ᎦᎵᎡᎵᎦ ᎠᎴ ᏕᎦᎦᏂᎭ ᎣᏏᏳ ᏂᏣᏛᏁᎲ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎡᏦᎢᏳᏒ ᎦᎶᏁᏛ.\nᎿᏉᏃ ᎠᏏᏴᏫ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎾᏍᎩ ᎯᎠ ᏥᏂᏪᎭ ᎠᏴ ᎾᏍᏉ ᎨᏍᎩᏐᏢᏗᎭ.\nᎾᏍᎩᏃ ᎤᏗᏌᏓᏛ ᏚᎪᎲᎩ ᏙᎴᏛ ᏗᏄᏬ ᏕᎦᏅᎩ; ᎠᏎᏃ ᎥᏝ ᏳᏴᎴᎢ.\nᎤᏂᏃᏕᎾ ᎤᎾᏛᎦᏁ ᎾᏂᏪᏍᎬ ᏔᎳᏚ, ᏃᎴ ᎤᎾᏕᏯᏔᏁᎴᎢ, ᎤᏂᏲᏍᏔᏁ ᎠᏦᏴ, ᏭᏂᏅᎪᏤ, ᏅᏃ ᏍᎪᏁᎯ ᏦᎨᏏ ᎠᏁᏙᎮ.\n[ᏥᏌᏃ] ᎤᎶᏒ ᎤᎪᎲᎩ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏗᎨᏫ ᏂᎨᏎ ᎤᏕᏅ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏕᏯᏙᏗᏍᎩ ᎨᏒ ᏏᏉᏃ ᎤᎷᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᏲᎱᎯᏍᏗ ᎨᏒ, ᎠᎴ ᎠᎦᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸ ᎬᏗ; ᎤᎵᏂᎩᏗᏳᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏧᏭᎪᏓᏁᎯ ᏥᎩ.\nᏩᏏᏓᏂ ᏗᎦᏚᎲ ᏚᏭᎦᏘᏗ, ᏓᏛᏟᏃᎮᏔᏂ ᏤᎩᏏᏂ ᏃᎴ ᏗᏂᎳᏫᎩ ᎠᏂᏴᏫ ᏧᏤᎵ ᎤᎾᎵᏍᏕᎸᏙᏗ.\nᎢᏨᎨᏳᎢ, ᏞᏍᏗ ᎾᏂᎥ ᏗᏓᏅᏙ ᏱᏗᏦᎯᏳᎲᏍᎨᏍᏗ, ᏕᏥᎪᎵᏰᏍᎨᏍᏗᏍᎩᏂ ᏗᏓᏅᏙ, ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏅᏓᏳ ᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ. ᎤᏂᏣᏔᏰᏃ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎠᏁᏙᎭ ᎡᎶᎯ.\nᎠᏎᏃ ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎤᏤᎵ ᎧᏃᎮᏛ ᎤᏴᏔᏁ ᎠᎵᏥᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏴ ᎥᏆᎨᏅᏛᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎤᏁᏨ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ;\nᎠᏎᏃ ᎤᏚᎩ ᎣᎬᏒᎩ ᎾᏍᎩ ᎢᏏᎵ ᏗᏓᏘᏍᎩ ᎨᏒᎢ. ᎠᎴ ᎾᏍᏉ ᎪᎯ ᎢᎦ ᏥᎩ ᏦᎢᏁ ᎤᎩᏥᎭ ᎾᏍᎩ ᎯᎠ ᎢᎬᎵᏍᏔᏅᎯ;\nᎤᏂᏴᎸᏃ ᎥᏝ ᏳᏂᎾᏩᏛᎮ ᎠᏰᎸ ᎤᎬᏫᏳᎯ ᏥᏌ.\nᏞᏍᏗ ᎩᎶ ᎤᏲ ᎾᎬᏁᎸ ᏳᏞᎨᏍᏗ ᎤᏲ ᏱᎾᏓᏛᏁᎮᏍᏗ; ᎢᏥᏍᏓᏩᏕᎨᏍᏗᏍᎩᏂ ᏂᎪᎯᎸ ᎾᏍᎩ ᎣᏍᏛ ᎨᏒᎢ, ᎾᏍᏉ ᎢᏨᏒ ᎪᎱᏍᏗ ᏕᏣᏓᏛᏗᏍᎬ, ᎠᎴ ᎾᏂᎥᏉ.\nᎨᏍᏗ ᎯᎸᎯᏳ ᎤᎪᎲ ᏱᎨᏎ ᎤᏂᏥ ᏫᎵᎻ.\nᎧ ᎢᏓᏓᏅᏟ ᏥᎦᎳᎭ ᏂᏥᎦᏔᎲᎾ ᎨᏒ ᏅᏧᎵᏍᏙᏔᏅ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎢ, ᎠᎴ ᎾᏍᏉ ᏗᏣᏤᎵ ᎤᏂᎬᏫᏳᎯ.\nᏞᏍᏗ ᏱᎾᏚᎵᏍᎨᏍᏗ Ꮎ ᎦᎸᏉᏗᏳ ᎨᏒ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᏥᎩ; [ᏞᏍᏗ] ᏱᏗᏓᏓᎿᎸᏍᏗᏍᎨᏍᏗ, ᎠᎴ ᏱᏗᏓᏓᏛᏳᏤᎮᏍᏗ.\nᎩᎶᏍᎩᏂ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᎠᎴ ᎠᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᎠᏆᏤᎵ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎬᎵᏍᏆᏗᏍᎩ, ᎾᏍᎩ ᏓᏥᏁᎵ ᏧᏎᎪᎩᏍᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ.\nᏥᏳᎯᏃ ᎤᎾᏣᎡᎢ, ᎤᎾᏂᎩᏎ ᎢᎾᎨ ᏭᏂᎶᏎ ᎤᏕᎵᏛ.\nᎤᏐᏱ ᎢᏯᏆᏕᏘᏴᏓ.\nᎠᏎᏃ ᏮᏓᏨᎷᏤᎵ ᏂᎪᎯᎸᎾ, ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎣᏏᏳ ᏳᏰᎸᏅ; ᎠᎴ ᏮᏓᎦᏙᎴᎣᏏ, ᎥᏝ ᎠᏂᏬᏂᏍᎬᏉ ᎾᏍᎩ ᏧᎾᏕᏋᎯᏍᏗ, ᏚᎾᎵᏂᎬᎬᏍᎩᏂ ᏄᏍᏛᎢ.\nᎿᏉᏃ ᎤᎬᏫᏳᎯ ᎯᎠ ᏂᏙᏓᎦᏪᏎᎵ ᎠᎦᏘᏏ ᎢᏗᏢ ᎠᏂᏙᎾᎢ; ᎡᏤᎾ, ᎡᏙᏓ ᎢᏥᎸᏉᏔᏅᎯ, ᎢᏣᏤᎵ ᏫᏂᎦᎵᏍᏓ ᎤᏤᎵᎪᎯ ᎡᏣᎵᏍᎪᎸᏓᏁᎸᎯ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ.\n“Ꭷ, ᎭᏂ ᏥᎭᏓᏐᎦ, ᎦᏣᏄᎵᎨᎢ!” ᎤᏛᏁ ᏌᎳᏓ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎧᏂᎵᏯ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ, ᏚᏳᎯᏛ ᎢᏯᏛᏁᎯ ᎠᏍᎦᏯ ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᏍᎩ, ᎠᎴ ᎣᏍᏛ ᎬᏩᏃᎮᏍᎩ ᎾᏂᎥ ᏑᎾᏓᎴᎩ ᎨᏒ ᎠᏂᏧᏏ, ᎤᏁᏤᎸᎩ ᎦᎸᏉᏗ ᏗᎧᎿᏩᏗᏙᎯ, ᎤᏓᏅᏍᏗᏱ ᏧᏪᏅᏒ ᏫᏣᎷᎯᏍᏗᏱ ᎠᎴ ᎯᏬᏂᏍᎬ ᎤᏛᎪᏗᏱ.\nᎤᎵᏍᎨᏛ ᎠᎾᎵᏍᎩᏍᎬ, ᎤᎾᏓᏂᎳᎩ ᎤᏅᏌ ᎨᏍᏗ ᎠᏎ ᏦᎯᏍᏙᏗ ᏧᎾᎭᎾᏬᏍᏗ ᏱᎨᏎ, ᏍᎩᎾᎾ ᏄᏪᏒ ᎦᎳᎱᏂ, ᎠᏓᏅᏖᎵᏙ ᎠᏣᏅᏙᏗ ᏱᏚᏩᏛᎲᎾ.\nᎨᏍᏗᏃ ᏳᏚᎵᏍᎨ ᎩᎶ ᎤᎵᏍᎩᏰᎬᏍᏗᏕᏗ ᎦᎳᎱᏂ, ᎠᏎᏃ ᎦᎸᎳᏗ ᏭᏓᎧᏁ.\nᏔᎵᏁᏃ ᏅᏩᏓᎴ ᎤᏅᏏᏓᏍᏗ ᎤᏅᏎ ᏗᏁᎲᎢ; ᎾᏍᎩᏃ ᏅᏯᏉ ᏙᎬᏩᏂᏍᏔᏁᎢ, ᎠᎴ ᎢᎬᏩᏐᏅᏁ ᎠᏍᎪᎵ, ᎠᎴ ᎢᎬᏩᏂᎩᏍᏔᏁ ᎤᏕᎰᎯᏍᏗ ᎢᎬᏩᏁᎸᎯ.\nᎤᏙᏓᏃ ᏓᎾᏁᎶᏓᏁᎲ ᎤᎾᏛᏛᏁ ᏄᏍᏛ ᎤᏑᎵᏍᎬ ᏣᎪᏍᏗᏱ.\nᎠᎴ ᏥᏩᎾᎦᎸᎢ, ᎠᎴ ᏥᎾᏰᏍᎬᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎩᎾᏫᏍᎬ ᎢᏨᏰᎳᏗᏙᎲᎩ.\nᎠᎹ ᏫᏁᎩ ᏣᏄᏏ!” \n“ᎨᏍᏗ ᏚᏳᎪᏛᎢ ᏱᎩ.” \nᏱᏕᎦᏘᏃᎦ.\nᎾᏍᎩᏯᏉᏍᎩᏂ ᎾᏍᏉ ᏂᎯ ᎦᏚᎢᏗᏢ ᎢᏣᏓᏅᏘᏳ ᏅᏩᏍᏙᎢ ᏴᏫ ᏗᎨᏣᎧᏃᏗᏱ, ᎠᏎᏃ ᎠᏫᏂᏗᏢ ᎢᏥᎧᎵᏨᎯ ᎨᏐ ᎢᏣᏠᎾᏍᏛᎢ ᎠᎴ ᎤᏲᎢ.\nᎠᎴ ᏗᎦᏟᏓ ᎤᏪᏘᎸᎩ ᏆᎾᎥᎢ ᎤᏬᏰᏂ ᏃᎴ ᏍᎩᏴᏃ ᏧᎵᏬᏤᎢ.\nᎥᏝᏰᏃ ᏱᏚᎾᏓᏅᏖᎴ ᎦᏚ; ᏧᏂᎾᏫᏰᏃ ᏗᏍᏓᏱᏳ ᎨᏎᎢ.\nᎧᏃᎯᏰᎩᏃ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᎤᏍᏆᎸᎯᏗᏒᎩ; ᏥᏌᏃ ᏥᎷᏏᎵᎻ ᏭᎶᏒᎩ.\nᎠᎴ ᎩᎶ ᏂᏗᏣᏓᏂᎸᎬᎾ ᎠᎴ ᏂᏣᏛᏓᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎾᎿ ᎢᏣᏂᎩᏍᎨᏍᏗ, ᏗᏣᎳᏏᏕᏂ ᎪᏍᏚ ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎤᎾᏡᏗᏍᎩ. ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎡᏍᎦᏉ ᎢᎦᎢ ᎤᏂᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ ᏐᏓᎻ, ᎠᎴ ᎪᎹᎵ, ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ, ᎤᏟᎯᏳ ᎾᎿ ᎦᏚᎲᎢ.\nᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏉᎯᏳᎲᏍᎩ ᎤᎭ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ.\nᎠᏂᏆᎵᏏᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎦᏙᏃ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏂᏚᏳᎪᏛᎾ ᎨᏒ ᎾᎾᏛᏁᎭ.\nᎠᏎᏃ ᎿᏉ ᏕᎨᏣᏘᏃᎯᎮᏍᏗ ᏞᏍᏗ ᏱᏤᎵᎯᏍᎨᏍᏗ ᎢᏳᏍᏗ ᎢᏥᏁᎢᏍᏗᏱ ᎠᎴ ᎢᏥᏪᏍᏗᏱ; ᎾᎯᏳᏉᏰᏃ ᎡᏥᏁᏗ ᎨᏎᏍᏗ ᎢᏥᏪᏍᏗᏱ.\nᎤᏄᎸᏁ ᎤᏣᏘᎾ ᏫᏚᎧᏃᏗ ᏲᎾ ᎤᏤᏍᏙ.\nᎦᎵᏆᏍᎪᎯᏃ ᎢᏯᏂᏛ ᏔᎵᏁ ᎤᏂᎷᏤ ᎤᎵᎮᎵᏍᏗ ᏚᏁᏓᏅᏖᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏣᎬᏫᏳᎯ, Ꭰ-ᏂᏍᎩᎾ ᎾᏍᏉ ᎢᎪᎪᎯᏳᎲᏍᎦ ᏂᎯ ᏕᏣᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎤᎾᏘᎿᏫᏛᎲᎩᏃ ᎠᏫᏄᏣ ᎬᏃᏛ, ᎠᎴ ᎥᏝ ᎤᏍᏗᏉ ᎣᏍᏛ ᏳᎾᏓᏅᏓᏕᎢ.\nᎬᏂᏳᏉᏰᏃ ᎠᏆᏛᎦᏅᏉ ᎯᏁᎬ ᏍᎩᏲᎵᎲᎢ, ᎠᏲᎵ ᏥᏁᎵᏒ ᎤᎵᏖᎸᏅ ᎠᎵᎮᎵᎬᎢ.\nᎠᏎᏃ ᏇᏍᏓ ᎤᏚᎵᏍᎬᎢ ᎠᏂᏧᏏ ᎣᏍᏛ ᏧᏓᏅᏓᏗᏍᏙᏗᏱ ᏅᏓᏳᎵᏍᏙᏔᏅ, ᎤᏁᏤᎸᎩ ᏉᎳᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᏚᎵᏍᎪ ᏥᎷᏏᎵᎻ ᏤᏅᏍᏗᏱ ᎠᎴ ᎾᎿ ᎯᎠ ᎾᏍᎩ ᏗᎬᏳᎪᏓᏁᏗᏱ?\nᎾᏍᎩ ᎥᏝ ᎩᎶ ᏗᎨᎦᏁᎶᏗ ᎡᎶᎯ ᎠᏁᎯ ᏱᏂᎦᏔᎮᎢ; ᏱᎠᏂᎦᏔᎮᏰᏃ ᎥᏝ ᎦᎸᏉᏗᏳ ᎤᎬᏫᏳᎯ ᏓᏓᎿᏩᏍᏛ ᏱᎬᏩᎾᏛᏁᎢ;\nᎤᏍᏓᎦᎸ ᎤᏂᏩᏛᏗ ᎨᏎᏍᏗ, ᎨᏍᏗ ᎤᏓᏅᏖᎸ ᏱᎨᏎ ᎢᏳᎾᏛᏁᏗ ᎪᎳ ᏣᎵ.\nᏄᏩᏅᎰᎾ ᏣᎵ, ᏕᏧᎬ ᏚᏩᏂᎦᏢ ᎤᏃᏴᎬ ᎫᏘᏍᎬ.\nᎠᎴ ᎢᏥᎪᏩᏘᎭ ᎠᎴ ᎢᏣᏛᎩᎭ, ᎥᏝ ᎡᏈᏌᏉ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᎠᎴᏉ ᏂᎬᎾᏛ ᎡᏏᏱ, ᎯᎠ ᏉᎳ ᏓᏍᏗᏰᏗᏍᎬ ᏚᎦᏔᎲᏒ ᎤᏂᏣᏘ ᏴᏫ, ᎯᎠ ᏂᏕᎦᏪᏎᎲᎢ, ᎥᏝ ᎦᎸᎳᏗ ᎠᏁᎯ ᏱᎩ ᎩᎶ ᏧᏬᏰᏂᏉ ᏧᏬᏢᏔᏅᎯ ᏥᎩ.\nᎿᏉᏃ ᎤᏙᎯᏳᏁ ᏤᎵᎹᏯ ᎠᏙᎴᎰᏍᎩ ᎤᏁᏨᎯ, ᎠᎴ ᏥᏄᏪᏎᎢ;\nᏄᎳᏉ ᎣᏍᏛ ᏂᏍᏛ ᏣᏱᎵᏙᎯ, ᎠᏏᏉ ᎢᏍᏓᎢᏒᎢ, ᏗᎫᎪᏗᏍᎩᏱᎾᏏ ᏫᏱᏣᎧᎲᎦ ᏣᏱᎵᏙᎯ, ᏗᎫᎪᏗᏍᎩᏃ ᏗᏓᏂᏱᏍᎩᏱ ᏫᏱᏣᎧᎲᎦ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᏱᏪᏣᏴᏓ.\n“ᎭᏗ ᎪᎱᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᎴ ᎦᏙᏃ ᎢᎯᎪᏩᏘᏍᎪ ᎤᏢᏓᎸᏛ ᎤᎦᏑᎲᎢ ᏗᏍᏓᏓᏅᏟ, ᏁᎵᏍᎬᎾᏃ ᎢᎨᏐ ᎤᏃᏍᏛ ᎠᏓ ᏨᏒ ᏣᎦᏑᎲᎢ?\nᏂᎦᏛ ᎢᎬᏱ ᎤᏂᎷᏨᎯ ᎠᏴ ᎣᏂ, ᎾᏍᎩ ᎠᏂᏃᏍᎩᏍᎩ ᎠᎴ ᎠᎾᏓᎾᏌᎲᏍᎩ. ᎠᏎᏃ ᎠᏫ ᎥᏝ ᏱᎬᏩᎾᏛᎦᏁᎴᎢ.\nᎥᏝ ᎠᏏ ᎢᏥᎩᎬ ᎤᏨᎢᏍᏗᏱ ᎢᏴᏛ ᏱᏗᏣᏟᏴᎲ ᎠᏍᎦᏂ ᏕᏣᏟᏴᎡᎲᎢ.\nᎤᏣᏘᏃ ᏂᏚᏅᏂᎸ, ᏗᏓᏍᏚᏗᏱ ᏚᏂᏴᏔᏅᎩ, ᎤᏂᏁᏤᎸᎩ ᎾᏍᎩ ᎠᏥᎦᏘᏗᏍᏗ ᎣᏍᏛ ᏧᎦᏘᏗᏍᏗᏱ.\nᎬᏂᎨᏒ ᎢᎫᏩᏁᏗ ᏱᎩ ᎤᎵᎪᎾᏙᏗ ᎠᎾᏓᎪᎾᏗᏍᎬ, ᏃᎴ ᎠᏕᎳ ᏱᏚᏓᏒᎾ, ᏰᎵᏉ ᏳᎵᏍᎪᎸᏓᏏ ᎬᏅᎢ ᎰᎻ.\nᎯᏥᎦᏔᎭ ᏄᏍᏛ ᎤᏓᏅᏖᏗ---ᎠᏎ ᎤᏩᏌ ᎤᏓᎦᏎᏍᏙᎢ, ᏣᏉ ᏄᏓᎴ ᎩᎶᎢ.”\n”ᏭᏙᎯᏳᎲ ᏂᏥᏪᎠ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᎠᏓᏂᏉᏘᎯ, ᎥᏝ ᏴᏫ ᏱᎦᏂᏆᏘᎭ, ᎤᏁᎳᏅᎯᏍᎩᏂ, ᎾᏍᎩ ᎾᏍᏉ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎢᎩᏁᎸᎯ ᏥᎩ.\nᎠᎴ ᎤᏁᎢᏍᏔᏅᎩ, ᎾᏍᎩ Ꮎ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸ ᏤᎭ, ᎾᏍᎩ ᎦᎸᎶᎢ ᎤᏬᏢᏅᎯ ᏥᎩ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏤᎿᎠ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏤᎿᎠ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏤᎿᎠ, ᎥᏝ ᎿᏉ ᎤᏟ ᎢᎪᎯᏛ ᏱᎪᎯᏗᏏᏎᏍᏗ ᎤᏛᏅᎩ.\nᎠᏎᏃ ᎧᏁᎬ ᏔᎵᏁ ᎯᎠ ᏅᏛᎠᎩᏪᎡᎸᎩ ᎦᎸᎳᏗ ᏓᎤᎶᏒᎩ; ᎤᏁᎳᏅᎯ ᎤᏅᎦᎸᏛ ᎾᏍᎩ ᏞᏍᏗ ᎦᏓᎭ ᏲᏎᎮᏍᏗ.\nᎠᏗᎾ ᎠᏆᏚᎵᎭ ᏂᏤᎵᎯᏍᎬᎾᏉ ᎢᏣᎵᏍᏙᏗᏱ. ᎾᏍᎩ Ꮎ ᏄᏓᎸᎾ ᎠᏓᏅᏖᏍᎪ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ ᎨᏒᎢ, ᎢᏳᏛᏁᏗᏱ ᎤᎬᏫᏳᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ.\nᎾᏍᎩ ᏣᏂᎦᏔᎭ ᏄᏍᏛ ᏕᎫᎪᏗᏍᎬ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎩᎶ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᎸᏫᏍᏓᏁᎯ ᏰᎵᏉ ᏗᎬᏩᏂᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎾᏍᎩᏉ ᎾᎾᏛᏁᎲ ᎤᏩᏒ ᏱᎩ, ᎣᏏᏳᏍᎩᏂ ᏚᏂᏰᎸᎭ ᎾᏍᎩ ᎢᏯᎾᏛᏁᎯ.\nᎤᏁᎳᏅᎯᏰᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎸᏉᏕᏍᏗ ᏨᏙᏓ ᎠᎴ ᏣᏥ; ᎠᎴ ᎾᏍᏉ ᎯᎠ; ᎩᎶ ᏓᏍᎩᏅ ᏗᏍᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᏍᎩᎾᎾ ᎭᎾᏛᎦ.\nᏗᎨᏍᎩᎥᏏᏉᏃ ᏕᏍᎩᏚᎬᎢ, ᎾᏍᎩᏯ ᏥᏗᎦᏲᏥᏁᎰ ᏦᏥᏚᎩ.\n”ᏥᏣᏁᎸᏓ, ᏥᏣᏁᎸᏓ!”\nᎠᎴᏬ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏩ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ ᎦᎸᎳᏗ ᎤᎵᏍᏚᎢᏛ ᎨᏎᏍᏗ, ᎠᎴ ᏕᏥᎪᏩᏘᏍᎨᏍᏗ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᎾᎵᏌᎳᏗᏍᎨᏍᏗ ᎠᎴ ᎡᎳᏗ ᎾᎾᏛᏁᎮᏍᏗ ᎬᏩᎷᏤᎮᏍᏗ ᏴᏫ ᎤᏪᏥ.\nᏧᏓᏏ, ᎥᏝ ᎢᏍᎦᎳᏗ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᏙ ᏓᎦᎵᏍᏙᏔᏂ ᎬᏂᎨᏒ ᎠᏴ ᏅᏛᏍᎩᏯᏛᏁᎵ, ᎥᏝᏃ ᎡᎶᎯ?\nᎢᏳᏃ ᎦᏓᎭ ᎠᏓᏅᏙ ᏴᏫ ᎤᏄᎪᎩ, ᎡᏙᎰ ᎤᎧᏲᏛᎯ ᎨᏒᎢ, ᎤᏲᎰ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ; ᎤᏠᎩᏃ, ᎯᎠ ᏂᎦᏪᏍᎪᎢ, ᏛᎦᏨᏏ ᏗᏇᏅᏒ ᏗᎩᏄᎪᏨ ᏮᏛᏥᎶᏏ.\nᎪᎳ ᎢᎪᎯᏛ ᎤᎦᎾᏬ ᎠᎾᏗᏍᎪ ᏃᎴ ᏍᏈᏍᏔ ᎠᏣᏗ ᏗᎬᏣᎶᏗ.\n”ᎭᎴᏫᏍᏓ!” ᎤᏪᎷᏁ ᏫᎵᎻ.\nᎾᏍᎩ ᏯᏛᏅ, ᎤᏇᏓᎵ ᎨᏒ ᎤᎾᏕᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎯᎠ ᎥᏝ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏱᎩ; ᎠᏚᎢᏍᏛᏍᎩᏂ ᎤᎾᏕᏔᏅᎯ ᎨᏒ ᎾᏍᎩ ᏧᏪᏥ ᏧᏰᎸᏗ.\nᎤᎵᏍᏗᏳᏃ ᏥᏌ ᎦᏙᎬ ᎤᎷᏨᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏙᎯᏱ ᏕᎾᏓᎪᏩᏛ, ᏍᎩᎾᏝᎢ; ᎠᎴ ᎤᏚᏣᎳᏅᎩ.\nᎿᏉᏃ ᏥᏌ ᎤᏙᎴᎰᏒ ᏗᏂᎷᏥᏒᎩ ᎠᎴ ᏗᎬᏩᏗᏝᎥᏔᏂᏒ ᎤᎬᏫᏳᎯ ᏅᏗᎬᏩᏁᎵᏒᎢ, ᎤᏓᏅᏒᎩ ᏔᎵᏁ ᏦᏓᎸ ᏭᏣᏒᎩ ᎤᏩᏒ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᎾᎨᎢ ᏤᏙᎵᏙᎮᎢ ᎢᎪᎯᏓ ᏃᎴ ᎢᏳᏊ ᎱᏚᎵᏍᎬᎢ ᏣᎳᏍᏕᎵᏴᏍᎨᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᎦᏛᎾᏨᎯ ᎤᏙᎯᏳᎯ ᎤᏣᏔ, ᏧᏂᎸᏫᏍᏓᏁᎯᏍᎩᏂ ᎠᏂᎦᏲᎵᏳ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎡᏣᏓᏙᎵᏍᏓᏏ ᎤᎬᏫᏳᎯ ᎤᎦᏛᎾᏨᎯ ᎤᏤᎵᎦ, ᏂᏙᏓᏳᏅᏍᏗᏱ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎾᎿ ᎤᎦᏛᎾᏤᎸᎢ.\nᏫᎵᎻ ᎤᏓᏐᎴ ᎤᏬᏢ ᎾᎥᏂ, ᎤᏂᏴᎡᎵ ᎫᎦ ᎠᏗᏔᏍᎬᎢ.\nᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎠᏰᎵ ᎦᏙᎨ ᏫᎵᎻ,  ᏓᎭᏬᎢᎮ ᎤᏲᏏᏍᎬ, ᎤᏥᏍᏔᏁ ᏣᏄᏏ.\n”ᏃᏉ ᏓᏥᏂᏴᎯ.” \nᎠᎴ ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎤᎾᏓᏴᏒᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏂᎯᎧᎯᏰ ᏧᏁᏥ; ᎣᏂᏱᏃ ᎠᎨᏴ ᎾᏍᏉ ᎤᏲᎱᏎᎢ.\nᎠᏏᏉ ᎦᏬᏂᏍᎨ ᎩᎶ ᎤᎷᏤ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎬᏫᏳᏌᏕᎩ ᎦᏁᎸ ᏅᏓᏳᎶᏒᎯ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏤᏥ ᎤᏲᎱᏒ, ᏞᏍᏗ ᎯᏯᏕᏯᏙᏔᏅ ᏗᏕᏲᎲᏍᎩ.\nᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎠ ᏥᏂᎦᏛᏁᎭ ᎥᏝ ᎪᎯ ᎨᏒ ᏱᎦᏔᎭ, ᎣᏂᏍᎩᏂ ᏘᎦᏙᎥᏏ.\n”ᎡᎭ! ᏂᎨᎵᏍᎪᏗ ᏥᏍᏕᏥ ᎤᏁᏍᎩᎸᏗ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ.\nᏧᏗᎦᎴᏴᏓ ᏓᎭᏦᏴ ᏣᎳᎩᏱ ᎠᏰᎵ, ᏂᎦᏓ ᎠᎾᏂᎩᏍᎬ ᏭᏕᎵᎬ ᎢᏣ.\nᎿᏉᏃ ᏥᏌ ᎦᏁᏥᎢ ᎤᏍᏛᎦᎵ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎦᎪ?\n“ᎠᏯᏗᏍᏉ ᎠᎩᏲᏏ,” ᎤᏛᏁ ᏣᎵ.\n“ᎤᎵᎮᎵ-ᎤᎵᎮᎵ-ᎤᎵᎮᎵᏍᏗ!” ᎤᏁᎷᏁᎢ.\nᎠᎴ ᏗᏄᎪᏗᏍᎩ ᏫᏚᎾᏘᏃᎮᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎠᏂᏍᎦᏯ ᎠᎠᏧᏏ ᎤᏣᏔᏅᎯ ᎠᎾᏕᏯᏙ ᏗᎭ ᎢᎩᏚᎲᎢ,\nᎦᏲᏟᎨ ᏯᏂᏬᏂ ᏴᏫ, ᏯᎦᏓ ᏯᏂᏬᏂ ᏗᎦᎾᏌᎢ.\nᎢᎦᏛᏃ ᎾᏍᎩ Ꮎ ᏴᏫ, ᎠᎴ ᎪᎱᏍᏗ ᏗᎾᏓᏛᎿ ᎨᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᏂᏩᏗᏒᎢ, ᏓᏂᎪᏩᏗᏍᎨᏍᏗ ᏧᏂᏲᎱᏒᎯ ᏗᏂᏰᎸᎢ ᏦᎢ ᎢᎦ ᏅᎩᏁᏃ ᎠᏰᎵ, ᎥᏝᏃ ᎤᏁᎳᎩ ᎤᏁᎵᏍᏗ ᏱᎨᏎᏍᏗ ᏧᏂᏲᎱᏒᎯ ᏗᏂᏰᎸ ᏗᏓᏂᏐᏗᏱ ᏧᏂᏅᏗᏱ.\nᎠᏎᎩ ᏧᎬ ᎤᏂᎩᏢ ᎠᎴ ᎦᏓᏁ ᏅᏯ.\n“ᏙᏯ ᎪᎱᏍᏗ ᎠᏩᏔ ᏧᏪᏯ ᎾᎥ,” ᎤᏛᏁ ᏥᏍᏚ.\nᏦᎩᏴᏫᎾ?\nᎠᏎᏃ ᎢᎦᏓ ᎠᏕᏅᏓ ᎨᏍᏗ ᎠᎪᏍᎩ ᏱᎩ.\nᏞᏍᏗ ᏧᏃᏕᏍᏗᏍᎩ ᏘᏂᏣᎵᏍᏔᏁᏍᏗ ᎾᏍᏉ ᎠᏂᏧᏏ ᎠᎴ ᏧᎾᏓᎴᏛ ᏴᏫ, ᎠᎴ ᎤᎾᏓᏡᎬ ᏧᎾᏁᎶᏗ ᎤᏁᎳᎥᎯ ᎤᏤᎵᎦ;\nᎠᏯᏙᎵ, ᎠᏰᎵ ᎦᏲᏟ ᎠᏴᏈᏛᏅ ᏩᎩᏌᏅ.\nᎠᎴ ᎠᎾᏙᎴᎰᏍᎩ ᏧᎾᏤᎵ ᏗᏓᏅᏙ ᏓᏃᎯᏳᎲᏍᎪ ᎠᎾᏙᎴᎰᏍᎩ.\nᎡᎦᏆ ᎾᏍᎩ ᎢᏤᎲ ᎡᎯ ᏥᎩ, ᎦᎶᏁᏛ ᎤᏅᏏᏙᎯ, ᏫᏥᏲᎵᎦ, ᏂᎪᎯᎸ ᎠᎵᏂᎬᏁᎭ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎾᏍᎩ ᏂᎯ ᎢᏣᎵᏗᏱ ᏂᏥᎪᎸᎾ ᎠᎴ ᎠᎧᎵᎢ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ ᏗᏂᎾᏕᎩ; ᎯᎠ ᏗᏥᎧᎲᎾ, ᏞᏍᏗ ᎡᏙᏓ ᎦᏁᎸ ᎦᏃᏙᏗᏱ ᎠᏓᏁᎸ ᎢᏨᏁᎸᎢ.\nᎠᏎᏃ ᎾᏍᎩ ᎾᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᏧᎬᏩᎶᏗ ᏭᏘᏰᎵᎯᏍᏗ ᎨᏒᎢ; Ꭷ, ᎡᏗᎷᎦ, ᏧᎬᏩᎶᏗᏃ ᎤᏖᏰᏗ ᎢᎦᏤᎵᎦ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎤᏪᎾᏪ ᎠᎴ ᎤᏍᏆᏂᎪᏎ ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᎦᏙ ᏣᏚᎵ ᎠᏆᏛᏁᏗᏱ? ᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᏔᎴᎲᎦ, ᏗᎦᏚᎲ ᎮᎾ, ᏓᏰᏣᏃᏁᎵᏃ ᎢᏣᏛᏁᏗᏱ.\nᏗᏂᏙᎬᏃ ᏗᎾᏓᏨᏯᏍᎩ ᏥᎩ ᎾᏍᎩᏯ ᏓᏂᏂᏓᏛᎩ, ᎠᎴ ᏧᎾᏓᏨᏯᏍᏙᏗ ᏗᏂᏙᎬ ᏚᏙᏢᏒᎩ; ᎠᎴ ᎤᏂᎲᎩ ᎪᎱᏍᏗ ᏧᏅᏁᏗᏱ ᏴᏫ ᎯᏍᎩ ᎢᏯᏅᏙ.\nᎤᏥ ᎤᎧᎯᏴᏎ ᎡᎳᏆᏗ ᎤᎾᏛᏁᎸᏗ ᏃᎴ ᎠᎬᏱᏣ ᏓᏆᎴᎳ ᎦᏗ ᎤᏩᏗ ᎾᎬᏁᎴᎢ ᎤᎵᎦᏲᏙᏗ.\nᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ ᎦᏂᎩᎸ ᎤᏴᏥ ᎨᏎᎢ. ᎤᎦᏃᏩ ᎤᏁᏍᎩᎸᏁ ᎤᎧᏔ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎣᏁᎯ. \nᏥᏌ ᏚᏁᏤᎸ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᏣᏍᎦᏅᎪᎢ ᎠᏍᎦᏂ ᎤᎾᏝᎢ ᎨᏐᎢ.\nᏄᏓᎴ ᎢᎦᏪᏍᎩ ᏫᎾᎩ, ᏧᏍᏆᏴᏍᏗ.\nᏥᏌ ᏅᏩᏙᎯᏯᏛ ᏚᏁᎵᎸ ᎡᎶᎯ ᏍᎩᏰᎵᏎᎭ? ᎥᏝ ᎢᏨᏲᏎᎭ; ᏔᎵᏉᏍᎩᏂ ᎢᏳᎾᏓᏗᏍᏗᏱ;\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ. ᏂᎯ ᎡᏥᏁᎸ ᎢᏦᎵᏍᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; Ꮎ-ᏍᎩᏂ ᏙᏱᏗᏢ ᎠᏁᏙᎯ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏕᎨᎦᏟᎶᏍᏓᏁᎰᎢ;\nᎤᏬᏰᏂ ᎬᏘ ᎱᎫᏩᎩᏍᏗ ᏱᎨᏎ ᏄᏲᎢᏴ ᏧᏂᎶᏒ ᏴᏫ, ᏍᎩᎾᎾ ᏱᏄᏛᏁᎴ.\nᎢᏨᎨᏳᎢ, ᏞᏍᏗ ᎤᏍᏆᏂᎪᏗ ᎢᏥᎪᎵᏰᏗ ᏥᎩ, ᎾᏍᎩᏯ ᎪᎱᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏥᏥᎷᏤᎶᎢ;\nᏈᏓᏃ ᏂᎦᏛ ᏚᏄᎪᏫᏒ ᏚᎵᏂᏆᏅᏁ ᎠᎴ ᎤᏓᏙᎵᏍᏔᏁᎢ, ᏕᏛᏅᏃ ᎢᏗᏢ ᏭᎦᏔᎲᏍᏔᏅ, ᏓᏈᏗ ᏔᎴᎲᎦ, ᎤᏛᏁᎢ. ᏚᏍᏚᎢᏎᏃ ᏗᎦᏙᎵ, ᏈᏓᏃ ᎤᎪᎲ, ᎤᏗᏛᎮ ᎤᏪᏁᎢ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ ᏂᎯ ᎤᏁᎳᏅᎯ ᎦᏁᎸ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎢᏥᏯᎥᎢ?\nᏰᎵ ᎠᎦᏗ ᏪᏙᎰ ᎭᎾᏂ? \nᎦᏚᎲ ᏩᏚᏂᏐᏤ, ᏍᏗᏫ ᎤᏤᎵ ᎦᎶᎯᏍᏗ ᎾᎥᏂ ᏭᏂᎷᏤ.\nᎠᏂᏲᏍᎩ ᏧᎾᎴᏅᎯ ᏓᏂᏱᎳᏫᏍᏗᏍᎬ ᎠᏂᏣᎳᎩ ᏚᏁᏅᏒ ᎠᎴ ᎦᏓ ᏚᏂᎲ ᏚᏂᎯᏰᎢ ᎠᏎ ᎤᎾᏓᏅᏍᏗ ᏥᏄᎵᏍᏔᏁ ᏁᎳᏚᎢᏍᎪᎯᏧᏈ ᏦᏍᎪᎯ ᎤᏕᏘᏴᏌᏗᏒ ᎨᏒᎢ. ᎠᎴ ᎪᏪᎵ ᏧᏃᏪᎳᏅ ᏚᏂᎾᏫᏛᎮ.\nᎭᏩ, ᏗᎨᏅᏒ ᎯᏕᎾ!” \nᎤᏕᎶᎰᏎ ᏫᎵᎻ ᎤᎯᏐᏗ ᎢᏳᏍᏗ ᎤᏃᏴᎬ ᏌᎳᏓ ᎦᏬᏂᏍᎬ.\nᎧ ᏄᏬᏚᎭ!”  \nᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎠᏴ ᏍᎩᏁᎢᏍᏗᏍᎨᏍᏗ; ᎣᎪᎯᏳᎭᏰᏃ ᎣᏏᏳ ᏂᏙᎬᏅ ᏦᎦᏓᏅᏙ, ᎠᎴ ᎣᎦᏚᎵᎭ ᏂᎦᎥᏉ ᏃᏣᏛᏁᎵᏙᎲ ᏱᏍᏛ ᎢᏲᎦᏛᏁᏗᏱ.\nᎾᏍᎩᏯᏍᎩᏂ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎩᎶ ᎤᎬᎲᎯ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏛᎦᏅᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏴᏫ ᎤᎾᏫᏱ ᎤᏴᎸᎯ ᏂᎨᏒᎾ, ᎾᏍᎩ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᏚᏛᏅᎢᏍᏓᏁᎸ ᎾᏍᎩ ᎬᏩᎨᏳᎯ.\nᎦᏙᏃ ᎨᏣᏍᏓᏩᏗᏙᎯ ᎠᏂᏲᏍᏗᏍᎪ ᎡᏘ ᎠᏁᎯ ᎤᏂᏃᎮᎸᎯ? ᏝᏰᏃ ᏱᏓᏃᏑᎴᏍᎪ ᏧᏃᏰᏂ ᏨᏗᎾᎵᏍᏓᏴᏂᏐᎢ.\nᏳᏫᎬᏩᏙᎯᏙᎴ, ᎠᏎᏃ ᏱᏮᎦᏥᎶᎢ ᎠᏔᎴᎦᏒ.\nᎤᎿᎮᎾ ᏫᎫᏓᎴ ᎠᏒᏛᏓ.\nᎾᏍᎩ ᎺᎵ ᎠᏠᏁᏗ ᏧᎶᏁᏔᏁ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎤᏍᏘᏰᎬ ᏧᏩᏔᏁ ᏥᏚᏅᎦᎸᎡᎴ ᏧᎳᏏᏕᏂ, ᎾᏍᎩ ᏅᏙ ᎳᏏᎳ ᎤᏢᎬᎩ.\nᏒᎧᏔ ᏧᎬ ᎭᏫᏂᏣ ᎤᎵᏍᏛᏧᏁᎢ ᏣᏄᏏ, ᎤᏥᏍᏔᏝᏁ ᎦᏅᏃᏩ, ᏗᎨᏥᎾᏌᎢ ᎤᏂᏩᏒᎨᎢ ᎤᏴᏍᏗ ᏦᎳ.\nᎨᏍᏗ ᎠᎵᏍᏔᏴᏗ ᏳᏚᎵᏍᎨ ᏫᎵᎻ, ᎠᏓᎨᏳᏗ ᎤᏚᎵᏍᎨ.\nᎤᏛᏅᏃ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᏚᏩᏛᎲᎩ ᎠᏂᏅᎩ ᏗᏂᎾᏕᎩ ᏩᎦ ᎠᎴ ᎠᏫ ᎠᎴ ᎫᎴ-ᏗᏂᏍᎪᏂᎯ, ᎠᎴ ᎠᏕᎸ ᏗᏂᏁᏟᏴᏍᎩ.\nᎠᎴᏬ ᏦᎢᏁ ᎤᏅᏎᎢ; ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᏂᏐᏅᏅ ᎤᏂᏄᎪᏫᏎᎢ.\nᎾᎾᏛᏁᎲ ᎡᏆ ᎡᎶ, ᏤᎩᏏᏂ ᎠᏰᎵᏒ ᏧᏒᎲᏍᏗ ᏂᎦᏓ ᎠᏂᏴᏫᏯ ᎧᎸᎬ ᎢᏣ Mississippi, ᎾᎥᏂᎨᏉ Siam ᎤᎬᏫᏴ ᏓᎭᏃᏫ ᏂᏕᎬᏁᎲ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏁᎵᏍᎨ.\nᎢᎦᏓ ᎤᎾᏓᎪᏳᎲ ᎠᎾᏁᎸᏗᏍᎬ ᎤᏂᏢᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏒ ᎬᏂᎨᏒ ᏂᏣᏓᏛᏁ ᎾᏍᎩ ᏗᏥᏙᏓ ᎨᏒ ᎠᎾᏙᎴᎰᏍᎩ ᏧᏂᎸᎯ.\nᎠᎴ ᏥᏌ ᎦᏚ ᏚᎩᏒᎩ, ᎠᎴ ᎤᎵᎮᎵᏨ ᏚᏯᏙᎮᎸᎩ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᏯᏙᎮᎸᎩ ᎤᎾᏅᏅᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏣᏗ ᎾᎦᎥ ᏚᎾᏚᎵᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏔᎵ ᏄᎾᏓᏛᎩ ᏴᏫ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎬᏩᏍᏛᏗᏍᎬᎢ.\nᎤᏪᎵᏍᏗ ᏑᎾᎴ Potomac ᎨᏴ ᎾᎥ ᏳᎾᏟᎴ.\nᏈᏓᏃ ᏚᎴᏅ ᏚᏍᏓᏩᏛᏎᎢ; ᎤᎷᏨᏃ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᏫᎬᏩᏴᏔᏁᎢ; ᏂᎦᏛᏃ ᎠᏂᎨᏴ ᏧᏃᏑᎶᏨᎯ ᎦᏙᎬ ᎾᎥ ᎠᏂᏙᎾᎡ ᏓᏂᏴᎨᎢ, ᎠᎴ ᏓᏂᎾᏄᎪᏫᏍᎨ ᎭᏫᏂ ᏗᏄᏬ ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏄᏬ ᎾᏍᎩ ᏓᎩ ᏧᏪᏰᏫᏒᎯ ᎠᏏ ᎤᏁᎳᏗᏙᎮᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᏴ ᏂᏑᏪᏎᎴᎢ; ᏂᏚᏂᏢᎬᎾ ᎥᏝ ᎤᏚᎸᏗ ᏱᏄᎾᎴᏍᏓᏁᎰ ᏗᏓᏅᎾᏍᎩ, ᏧᏂᏢᎩᏍᎩᏂ.\nᏍᎩᏃ ᏂᎦᏪᎠ, ’ᎤᏍᏆᏂᎩᏗ ᏏᏆ,’ ᎤᏍᎪᏍᏓ ᎨᏒ.\nᏲᎾ ᎦᏐᎯ ᎤᏩᏌ ᎠᎪᏩᏛᏗ ᎠᏲᏍᏗᏍᎬ ᎤᎵᏏᎩ ᎠᎼ ᎦᏚᎢᏣ.\nᎠᏂᏆᎵᏏᏃ ᎾᏍᏉ, ᎾᏍᎩ ᎠᏕᎸ ᎤᏂᎬᎥᏍᎩ ᏥᎨᏎᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎤᎾᏛᎦᏁᎢ; ᎠᎴ ᎬᏩᏕᎰᏔᏁᎢ.\nᎢᏗᎦᏔᎭ ᎢᏳᏍᏗᏉ ᎬᏅᎢ ᎤᎵᏍᏕᎸᏙᏗ ᎦᏲᏟ.\nᏐᏉ ᎠᏲᏍᎩ ᎠᏧᏣ ᎤᏦᎣᏒ, ᎤᎦᏛᏅᏒ ᎢᏳᏍᏘ ᏂᎦᎵᏍᏗᏍᎬ.\n“ᎮᎵᏍᎬᏉ ᎢᎪᎯᏓ ᏱᎬᏍᏆᏂᎪᏓ ᏱᏣᏚᎵ ᎠᏯ ᎬᏍᏆᏂᎪᏙᏗ.”\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ, ᎾᏍᎩ ᎤᏂᏣᏘ ᎬᏩᏜᏫᏍᏗᏕᎨ ᎤᎾᏛᎪᏗᏱ ᎧᏃᎮᏛ ᎤᎾᎳᏅᎯ ᎤᏤᎵᎦ, ᎨᏂᏏᎳᏗ ᎥᏓᎷᎶᏗ ᎦᏙᎨᎢ.\n”ᎨᏍᏗ ᎦᎬᎪᏩᏘᏱᎩ,” ᎤᏛᏁ ᏫᎵᎻ, ᎩᎳᏈᏴ ᏚᎴᏁ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᏚᎴᏁᎢ, ᎤᏁᏒᏃ ᎠᏤᏍᏙ, ᎤᏄᎪᏤ ᏂᎦᏛ ᎠᏂᎦᏔᎲᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏛ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏂᎸᏉᎳᏁ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᎢᎸᎯᏳ ᎾᏍᎩ ᎢᏳᏍᏗ ᏲᎩᎪᎰᎢ.\nᎠᏓᏍᏕᏓᎵᏴᏍᎬ ᏕᎪᏪᎸ ᏚᎾᏙᎥ ᎠᎾᏦᎥᏍᎬ ᏃᎴ ᏓᏄᏔᎩᏍᎬᎢ ᏴᏫ ᏕᎦᏚᎲ.\nᏍᏔᏯ ᎤᏃᎸᏁ\nᏒᏛᏓ ᏗᏥᏯ ᏭᏏᏅᏎ, ᏭᏔᏍᏖᏎ ᎣᏂ ᏗᏣ ᎦᏅᏒᏓ.  \nᎡᎳᏗ ᎦᏙ.\nᎯᎠ ᏂᏚᏪᏒᎩ; ᏰᎵᏉ ᏱᏥᏲᏍᏓ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏦᎢᏉᏃ ᏧᏙᏓᏆᏛ [ᏔᎵᏁ] ᏴᎦᏁᏍᎬᎵ.\nᎯᎠᏃ ᎤᎵᏬᏨ ᎤᏆᎶᎦ.\nᎾᏍᎩ ᎤᏂᏯᏍᏗᏱ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᎬᏩᎾᏒᏂᏍᏗ ᎠᎴ ᎬᏩᏂᏩᏛᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝᏍᎩᏂᏃᏅ ᎢᏗᏏᏴᏫᎭ ᏂᎦᏛᎿᏕᎬᎢ ᎢᏅᎯᏳ ᏱᏄᏛᎿᏕᎦ.\nᏧᏪᏅᎡᏃ ᎥᎿᎾᏂ ᎤᏍᏗᎢ ᎦᏚᎲᎢ, ᎠᏎᏍᎩᏂ;\nᎦᏨ ᏧᎶᏎ ᎤᏍᏆᏂᎩᏗ ᏕᎪᏪᎸ? \nᎯᎠᏃ ᎠᏂᏃᏟᏙᎯ ᎯᎠ ᏂᎦᏪᏍᎬᎢ ᏧᏁᎵᏎᎢ ᎤᎾᎱ, ᎱᏰᎳᏚᎢ ᎯᎠ ᎪᏪᎸᎢ ᎤᏓᎾᏛᎢ, ᎠᏎᏃ ᏣᏓᏍᏆᎵᏍᏗᏍᎨ ᏗᎦᏟᏓ ᏃᎴ ᎡᎳᏗ ᏣᏗᏥᎮᎢ.\n“Ꭳ, Ꭵ.”\nᎦᎪ ᏂᎯ ᏥᏕᎯᏳᎪᏓᏁ ᏅᏩᏓᎴ ᎤᏅᏏᏓᏍᏗ? ᎤᏩᏒᏉ ᎤᏅᏏᏙᎯ ᎤᎵᏍᎦᏍᏙᏗ ᎦᏙᎬ ᎠᎴ ᎦᏅᎬᎢ. ᎥᎥ, ᎠᏥᏲᏍᏙᏓᏁᏗ ᎨᏎᏍᏗ ᎤᏅᎢᏍᏗᏱ; ᎤᏁᎳᏅᎯᏰᏃ ᏰᎵᏉ ᎤᎴᏗᏱ ᎢᎬᏩᏁᏗ.\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎡᏥ ᎠᎴ ᎣᏣᎵᏅᏟ ᎯᎠ ᎾᏍᎩ ᏣᎾᏛᎩᎠ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏂᎦᏪᏍᎬ ᎢᏯᎾᏛᏁᎯ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏥᎪ ᎠᏯᎦᏯ ᎤᎦᏑᏯ ᎢᏤᎲᎢ, ᎢᏳᏃ ᏌᏉ ᎠᏫ ᎤᏃᏕᎾ ᏳᎾᏝᎠ, ᎠᏔᎴᏒᏃ ᏳᎸᏨ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎾᏍᎩ ᏭᏂᏴᏗ ᎠᎴ ᏭᎴᏍᏗ ᏂᎨᏒᎾ?\nᎤᎦᏃᏫ ᎪᏒᏅ ᎦᏓᎸ ᎤᏃᏫ.\nᎾᏍᎩ ᎺᎵᎦᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏓᏱ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎪᏌᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᎵᎼᏓᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎥᎵ ᎤᏪᏥ ᎨᏎᎢ,\nᏄᏦᏎᏛᎾ ᏯᎩᎨᏳᎦᏧ?\nᎤᎾᏓᏓᏍᎬ ᏴᏫ ᎢᏣ ᏚᎾᎵᏐᏫᏍᏛ ᎦᎶᏇ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎦᎥ ᎪᎱᏍᏗ ᎤᎵᏏᎬ ᎢᏥᏁᏨ ᎢᎦ ᎦᏛ ᎠᏛᎪᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ Ꮎ ᎢᏣᏙᏅᎸᎢ ᏕᎧᏅ-ᏑᎸ, ᎦᏌᎾᎵ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᏄᏂᏪᏒᎩ; ᎢᎦᏛ ᏣᎦᏛ ᏣᏂ ᏗᏓᏬᏍᎩ [ᎨᏦᏎᎰᎢ,] ᎢᎦᏛᏃ ᎢᎳᏯ, ᎠᏂᏐᎢᏃ ᏤᎵᎹᏯ ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎨᏒᎢ.\n“ᎠᏍᎪᎸᎦ”\nᎤᏃᎯᏳᏒᏃ ᎤᏙᎴᎰᏒ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᎯᏍᎦᏯ, ᏣᏍᎦᏅᏨ ᎡᏣᏙᎵᎩ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎩᎬ ᎤᏪᏅᎡᎲ ᎤᏲᎯᏍᏔᏁᎢ; ᎤᏙᎴᎱᏎᏃ ᎠᏰᎸ ᎤᏗᏩᏒ ᎾᏍᎩ ᎤᏢᎬᎢ.\nᎠᏂᏧᏏ ᎯᎠ ᏫᏅᎬᏩᏪᏎᎸᎩ; ᏗᎧᎿᏩᏛᏍᏗ ᎣᎩᎭ, ᏦᎩᎧᎿᏩᏛᏍᏗᏃ ᏂᎬᏅ ᏰᎵᏉ ᎬᏩᏲᎱᎯᏍᏗ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏪᏥ ᎤᏤᎸᏅᎩ.\nᎠᏴᏍᎩᏂ ᎢᎦ ᎢᏕᎯ ᏥᎩ ᏂᏗᎩᏴᏍᏕᏍᎬᎾ ᎨᏎᏍᏗ, ᎠᏓᏁᏣᏍᏚᎶ ᎪᎯᏳᏗ ᎨᏒ ᎠᎴ ᎠᏓᎨᏳᏗ ᎨᏒ ᎢᏓᏓᏁᏥᏍᏚᎶᏗᏍᎨᏍᏗ, ᎡᎩᏍᏕᎸᏗᏱᏃ ᎨᏒ ᎤᏚᎩ ᎢᎬᏒ ᎢᎦᎵᏍᏚᎶᏕᏍᏗ.\nᎯᎠᏃ ᏄᏪᏒᎩ; ᎠᏂ ᏗᏍᎩᏲᎯᏏ.\nᎦᏙ ᎠᏁᎰ.\nᎢᏳᏃ ᎠᏓᏅᏙᎩᎯ ᎢᏕᎮᏍᏗ, ᎾᏍᏉ ᎠᏓᏅᏙ ᏕᎦᏘᏂᏒ ᎢᏓᎢᏎᏍᏗ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏧᏪᏘ ᏗᏑᏢᏛ ᏱᏓᏟᏍᏗᏍᎪᎢ; ᎢᏤᏰᏃ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏱᏙᎦᏣᎦᎸ ᏗᏑᏢᏛ ᎠᎴ ᏯᏤᏬᎩ, ᏗᏑᏢᏛᏃ ᏱᏓᏲᎩ.\nᎾᏍᎩ ᎤᏩᏒᎯ ᎠᎦᏔᎾᎢ ᏥᎩ ᎤᏁᎳᏅᎯ ᎢᎩᏍᏕᎵᏍᎩ, ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ, ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ, ᏄᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏎᏍᏗ, ᎪᎯ ᎨᏒ ᎠᎴ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ.\nᎤᎩᏨᏓ ᎤᎾᏙᏓᏈᏕᎾ ᎨᏎᎢ.\nᏚᎴᏁ ᏲᎾ ᎤᏤᏍᏙ ᎦᏍᎩᎶᎩ ᎤᏬᏢ, ᏧᏪᏅᏒ ᎢᏣ ᎤᏪᏅᏎ, ᎠᏓᏅᏖᏍᎨ ᏄᏍᏛ ᎤᏕᎶᎰᏒ ᏃᎴ ᎤᏛᎦᏅ.\n“ᎦᏛᎩᏍᎪ ᎠᏂᏃᎮᏍᎬ ᏍᎩᎾᎾ ᏏᏆ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ, ᏚᏍᏚᎩᏎ ᏗᎦᏙᎵ.\nᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎩᎶ ᎠᎨᏴ ᏓᎧᏂᏍᎨᏍᏗ ᏧᎾᏂᏏᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎦᏳᎳ ᎤᏓᏲᏁᎸᎯ ᎨᏎᏍᏗ ᏧᏓᏅᏛᎢ.\nᎾᏍᎩ ᏣᎦᏙᎥᎯᏍᏗᏱ ᎤᏙᎯᏳᎯᏯ ᎨᏒ ᎾᏍᎩ ᎾᎿ ᏧᏓᎴᏅᏛ ᎡᏤᏲᏅᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏳᏃ ᎠᏏᏉ ᎡᎲ ᎤᏰᎯ, ᏅᏩᏓᎴ ᎠᏍᎦᏯ ᏱᏚᎾᏤᏅ, ᎠᏓᏲᏁᎯ ᎠᎪᏎᎮᏍᏗ; ᎢᏳᏍᎩᏂ ᎤᏰᎯ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎤᏚᏓᎴᏛ ᎨᏐ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏛᎢ; ᎾᏍᎩᏃ ᎥᏝ ᎠᏓᏲᏁᎯ ᏱᎩ, ᎤᏁᎳᎩ ᏅᏩᏓᎴ ᎠᏍᎦᏯ ᏱᏓᎾᏤᎭ.\nᏧᏁᎦ ᏧᏃᏩ ᏓᎶᏂᎨ ᏚᏓᏅᎵᏰᎥ ᎦᏲᏟ ᏧᏅᎭᏂᏍᏔᏅ ᏧᏪᏥ.\n(ᎾᏍᎩᏰᏃ Ꮎ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏂᎨᎬᏁᎮ ᎠᏎᎵᏔᏅᎯ ᏂᎨᏒᎾ; ᎯᎠᏍᎩᏂ Ꮎ ᎠᏎᎵᏔᏅᎯ ᎨᏒ ᎠᎬᏓᏁᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎢᏳᏪᏎᎸᎯ, ᎤᎬᏫᏳᎯ ᎤᏎᎵᏔᏅ ᎠᎴ ᎥᏝ ᎠᎦᏁᏟᏴᎾ ᏂᎯ ᎠᏥᎸ-ᎮᎶᎯ ᏂᎪᎯᎸᎢ ᎺᎵᎩᏏᏕᎩ ᏄᏍᏛ ᎾᏍᎩᏯᎢ.)\nᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏧᎳᏏᏕᏂ ᎭᏫᏂᏗᏢ ᏂᏕᏨᏁᎸ. ᎾᏍᎩᏰᏃ ᏂᎦᏛ ᎭᏫᏂᏗᏢ ᏥᏄᏩᏁᎴᎢ, ᎥᏝ ᎪᎱᏍᏗ ᏳᏃᎯᏰ ᎾᏍᎩ ᎭᏫᏂᏗᏢ ᏄᏩᏁᎸᎾ ᎨᏒᎢ. ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎥᏝ ᏱᏗᎪᏩᏘᎭ ᏂᎦᏛ ᎭᏫᏂᏗᏢ ᏱᎾᎬᏁᎸ.\nᎢᏳᏃ ᎣᏍᏛ ᎠᏥᏃᎮᏍᎩ ᎨᏎᏍᏗ ᎣᏏ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ, ᎢᏳᏃ ᏗᏂᏲᎵ ᏧᏛᎯᏍᏔᏅᎯ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎠᏁᏙᎯ ᏧᏍᏆᏂᎪᏔᏅᎯ ᎨᏎᏍᏗ, ᎢᏳᏃ ᎤᎾᏓᏅᏘ ᏧᎾᎳᏏᏕᏂ ᏧᏬᏑᎴᎸᎯ ᎨᏎᏍᏗ, ᎢᏳᏃ ᏧᏍᏕᎸᏛ ᎨᏎᏍᏗ ᎠᏂᎩᎵᏲᎩ, ᎢᏳᏃ ᎤᏍᏓᏩᏛᏛ ᎨᏎᏍᏗ ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᏍᎦᏯᏰᏃ ᎥᏝ ᎠᎨᏴᎯ ᏴᏧᏓᎴᏁ ᎠᎪᏢᏅ; ᎠᎨᏴᏍᎩᏂ ᎠᏍᎦᏲᎯ ᏧᏓᎴᏁ ᎠᎪᏢᏅ.\nᎦᏙᏃ [ᏫᎬᏛᏗ ᏂᎦᎵᏍᏗᎭ?] ᎢᏏᎵ ᎥᏝ ᏳᏩᏛᎲ ᎾᏍᎩ ᏧᏲᎲᎩ; ᎨᎦᏑᏰᏛᏍᎩᏂ ᎨᏒ ᎤᏂᏩᏛᎲ, ᎠᏂᏐᎢᏃ ᏚᏂᎫᏏᏲᏨᎩ.\nᎠᏍᎪᎯᏧᏈᏃ ᏗᏓᏖᏁᎯ ᎤᎪᎲ ᏄᎵᏍᏔᏂᏙᎸᎢ ᎤᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎤᏓᏅᏗ ᎠᏍᎦᏯ ᎨᏎ ᎯᎠ.\nᏃᏗ ᎠᏍᏛᎢ ᎢᏣ ᏳᏓᏬᎠ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏤᏍᏗ ᎭᎾ ᏯᏓᏬᏍᎨᏍᏗ, ᎬᎳ ᏏᏓᏁᎸ ᏓᎨᏣᎾᎩᏏ ᏃᎴ ᏓᎨᏣᏯᎪᏂ!\nᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏕᎬᏏᎳᏛᏁᎸ ᏃᎴ ᎣᏍᏓ ᎬᏰᎸᎲ.\nᎤᎾᎵᏏᎾᎯᏍᏗ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎠᏁᏯᏔᎯ, ᏚᏁᏅᏒᏉ ᎠᏁᏙᎯ, ᎠᏃᏍᏛ, ᏧᏃᎯᏳᎯ ᎤᏅᏒ ᏗᎬᏩᏂᏰᎯ, ᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏗᏱ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᎬᏩᏂᏐᏢᏙᏗᏱ ᏂᎨᏒᎾ.\nᎠᏯ ᏲᎪ, ᎣᏍᏓ ᎠᎩᏰᎸᎲ ᏅᏃ ᎤᎵᏗᏨ ᎠᏓᏍᏔᏴᏅ, ᎠᏆᏕᎭᏃ ᎧᏫ ᎦᏓᏫᏗᏍᎩ ᏃᎴ ᏚᏯ ᎠᏂᏤᎯ, ᎤᎧᎭᏲᏛ ᎦᏖᏌᏗ ᏕᏥᎸᏗᏍᎪ ᏕᏥᏒᎾᏔᏍᎪᎢ ᎠᏂᎬᏂᎨ ᏃᎴ ᎠᏂᎪᎢᎭ ᎾᎾᎵᏍᏗᏍᎬ ᎢᎪᎯᏛ.\nᎤᎵᏏᎩ ᏄᎵᏍᏔᏁ ᎤᏒᎯ ᎧᎾᏬᎨ ᏃᏉ\nᎠᏗᎾ ᎢᏤᏯᏔᎮᏍᏗ; ᏓᏂᎳᏫᎥᏰᏃ ᏕᎨᏥᏲᏍᏗ; ᏧᏂᏔᏫᎢᏍᏗᏱᏃ ᏕᏥᎵᎥᏂᎮᏍᏗ; ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᎠᏂᏅ ᏤᏣᏖᏃᎯᏍᏗ ᎨᏎᏍᏗᎠᏴ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᏧᏂᏕᏖᎴᎩ.\nᎬᏲᏎᎭ, ᏔᎴᎲᎦ, ᎠᎴ ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᏗᏤᏅᏒ ᏫᎶᎯ\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ; Ᏺ, ᏂᏦᎯᏳᏒᎾ ᎠᎴ ᎢᏣᎦᏔᎲᏛ ᎪᎯ ᏥᏤᎭ! ᎢᎳᎪ ᏂᎪᎯᎴᏍᏗ ᎢᏨᏰᎳᏗᏙᎮᏍᏗ, ᎠᎴ ᎤᎾᏁᎳᎩ ᎢᏨᏰᎵᏎᎮᏍᏗ? ᎡᎯᏯᏘᏄᎦ ᏤᏥ.\nᎠᎴ ᎾᏍᏉ ᎤᏟ ᎢᎦᎢ ᏄᏜᏏᏛᏒᎾ ᎧᏃᎮᏛ ᎠᏙᎴᎰᏒᎯ ᎢᎩᎭ, ᎾᏍᎩ ᎣᏏᏳ ᏱᏂᏣᏛᎦ ᏱᏣᎦᏌᏯᏍᏔᏅ ᎾᏍᎩᏯ ᎢᎦ-ᏚᎸᏌᏛ ᎤᎵᏏᎬ ᏨᎦᏌᏯᏍᏗᏍᎪᎢ, ᎬᏂ ᎢᎦ ᏓᎦᏙᎩ, ᎠᎴ ᏑᎾᎴ ᎡᎯ ᏃᏈᏏ ᏓᎧᎸᎩ ᏗᏥᎾᏫᏱ;\nᏓᏳᏓᎴᏅᏓ ᎧᏅᏂᏍᎩ ᏧᎵᎢᏕᎮᎢ ᎠᏁᎸᏗᏍᎨᎢ ᎢᏳᏛᏁᏗ ᏄᏍᏛ ᎠᏂᏃᎮᏍᎬᎢ.\nᎲᎦ ᎢᏯᏂ ᎠᏂᏴᏫᏯ ᏕᎯᏍᏕᎵᎭ? ᎤᏛᏅ ᏗᎪᏪᎵᏍᎩ.\nᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎾᏍᏉ ᎢᎴᎳᎭ ᏗᏱᏂᏲᎱᎯᏍᏗ ᏱᎩ, ᎠᏎ ᎥᏝ ᏴᎦᎬᏯᏓᏱᎦ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎦᏛ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎾᏍᎩ ᏄᏂᏪᏒᎩ.\nᏣᏁᎸᏔᏅᎯᏍᎪ ᏣᏢᏗ ᏣᏁᎳ ᏧᏪᏥ ᏱᏗᏣᏍᎩᏝ?” \nᎾᏍᎩ ᎢᏃᏏ ᎤᏪᏥᎨᏎᎢ, ᎾᏍᎩ ᏎᏗ ᎤᏪᏥ, ᎾᏍᎩ ᎠᏓᏫ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᎢ.\nᏥᎦᏔ ᎣᏍᏓ ᏱᎩ ᏯᎩᎪᎭ, ᎣᏍᏓᏰᏃ ᏓᎩᏏᎳᏛ.\nᏂᎦᏛᏃ ᏚᏄᎪᏫᏒ ᎠᎴ ᎤᏬᏯᏁᏒ ᎤᏯᏅᎮ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎨᏳᏣ, ᎭᏗᏛ.\n“Ꮒ,” ᎤᏪᎷᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏌᏊᏃ ᎢᎦ ᎤᏍᏗ ᎠᏣᎳᎩ ᎠᏧᏣ ᏒᎦᏔ ᎤᎦᏔ ᎤᏫᏎᎢ ᎣᏂᏗᏜ ᏧᏪᏅᏒᎢ.\nᎤᏍᎦᎴᎢ ᎤᏂᏴᏗ ᎣᏍᏓᏓᏤᎵ.\nᎠᎴ ᏗᏣᎵᏦᏩᏛ.\nᏰᎵᏉᏍᎪ ᏱᏕᏍᎩᏩᎯᏏ ᎤᏁᏍᏔᎶᏨ ᎤᏅᏗ ᎤᏪᏥ ᎠᏑᏰᏓ ᏃᎴ ᏩᎦ ᎭᏫᏴ ᎠᏍᏙᏓ ᎨᎵᏍᎩ ᎤᏅᏗ ᎤᏍᏔᏲᏒ ᎠᏌᎯ ᏃᎴ ᏒᏗᏩᏟ ᎪᎸᏍᏔᏅ?” ᎤᏛᏛᏁ ᎡᎳᏆᏗ.\nᏃᎴ ᏍᏉ ᏧᏍᏆᏴᏍᏗ ᎤᎵᏏᏂᏗ ᏧᎦᏔᏁᎢ ᎤᎪᏩᏛᏗ ᏫᎵᎻ ᏧᎾᏦᏴᏍᏗ ᎤᏅᏗ ᎬᏗ ᎠᎦᏬᏍᎬᎢ.\nᏗᏫᏌᏅ ᎠᏰᎵ ᏫᎶᎯ, ᏗᏂᎳᏗᏍᎩ ᏔᏍᎪᎳ! \nᎿᏉᏃ ᎤᏙᎯᏳᏁ ᏧᏁᏤ ᏤᎵᎹᏯ ᎠᏙᎴᎰᏍᎩ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎠᎴ ᏚᏂᎩᏒᎩ ᏦᎠᏍᎪᎯ ᎠᏰᎵ-ᎠᏕᎸ ᎾᏍᎩ ᎾᏧᎬᏩᏔᏅᎯ, ᎾᏍᎩ ᏣᏥᎬᏩᎶᏔᏅᎯ, ᎢᏏᎵ ᏧᏪᏥ ᏧᏂᎬᏩᎶᏔᏅᎯ,\nᏚᏘᏅᏒᎩᏃ ᏈᏓ ᎠᎴ ᎠᏂᏔᎵ ᏤᏈᏗ ᏧᏪᏥ, ᎠᎴ ᎤᎴᏅᎮ ᎡᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ, ᎠᎴ ᎤᏣᏘ ᎦᎨᏗᏳ ᏄᎵᏍᏓᏁᎴ ᎤᏓᏅᏛᎢ.\nᎾᏍᎩᏍᎩᏂ ᎾᎣᏂ ᏨᏓᏯᎢ, ᎢᎬᏱ ᏣᎦᎴᏗ; ᎾᏍᎩ ᏧᎳᏑᎶ ᏕᎪᎸᏌᏛ ᎥᏝ ᏰᎵ ᏱᏂᎪᎢ ᏗᏍᎩᎧᏁᏴᏴᏗᏱ.\nᎤᎾᏙᏓᏆᏍᎬᏃ ᎤᎵᏰᎶᎸ, ᎤᎴᏅᎮ ᏚᏕᏲᏁ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎤᏂᏣᏘᏃ ᎬᏩᏛᎦᏁᎸ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎭᏢ ᎠᎩᎭ ᎯᎠ ᎠᏍᎦᏯ ᎯᎠ ᎾᏍᎩ ᎢᎬᏩᏛᏁᏗ ᏥᎩ? ᎠᎴ ᎦᏙ ᎤᏍᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎾᏍᎩ ᎠᏥᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏥᏚᎸᏫᏍᏓᏁᎭ?\nᏙᏰ ᎢᏣ ᏫᏚᎧᎾᏁ, ᎤᏕᎶᎰᏎ ᎠᎦᎵᏍᎬ.\nᎤᏣᏘ ᎨᏥᎨᏳᎭ, ᎠᏎᏃ ᎥᏝ ᎣᏍᏛ ᎤᎬᏩᎵ ᏱᎩ; ᎠᎴ ᏂᎯ ᏱᎨᏣᎵᏍᏚᏓ, ᎾᏍᎩ ᎤᏣᏘ ᏗᏥᎨᏳᎯᏳ ᎢᏳᎵᏍᏙᏗᏱ.\nᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᎾᏍᎩ ᏧᏁᎬ ᏣᏥᏄᏬᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎥᏝ ᏥᏲᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᏚᏙᎥ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ ᎪᏪᎸᎢ; ᎠᎴ ᎬᏂᎨᏒ ᎢᏥᏴᏁᏗ ᎨᏎᏍᏗ ᏕᎤᏙᎥ ᎡᏙᏓ ᎠᎦᏔᎲᎢ, ᎠᎴ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎠᏂᎧᏔᎲᎢ.\nᎩᎶᏰᏃ ᏧᎸᏫᏍᏓᏁᎯ ᎠᎦᎫᏴᎡᏗ ᎨᏒ ᎥᏝ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏤᎵ ᏯᏥᏰᎸᎾᏁᎰᎢ, ᎤᏧᏚᎬᏍᎩᏂ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏤᎵ ᎠᏥᏰᎸᎾᏁᎰᎢ.\nᎪᎨᏱ, Ꮓ ᏗᏂᏲᏟ ᎦᏚᏏ ᎢᏣ ᎢᎾᎨᎢ ᎡᎯ ᎠᏂ ᏣᎾᏗᎩᏏᏙᎮᎢ ᎾᏍᎩ ᎾᎥᎢ ᏣᎦᎷᎧᎨᎢ ᎤᏂᎵᏏ ᎢᏳᏍᏗ ᏗᎧᎾᏗ ᏥᎨᏎᎢ.\nᎥᏝ ᎠᎴ ᎢᏤ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏧᏪᏘ ᏗᏑᏢᏛ ᏱᏓᏂᏟᏍᏗᏍᎪᎢ; ᏗᏑᏢᏛᏰᏃ ᏱᏓᏓᏣᎦᎸ, ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏯᏤᏬᎩ, ᏗᏑᏢᏛᏃ ᏱᏓᏲᎩ. ᎢᏤᏍᎩᏂ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᏗᏤ ᏗᏑᏢᏛ ᏓᏂᏟᏍᏗᏍᎪᎢ, ᎢᏧᎳᏃ ᏚᏂᏍᏆᏂᎪᏙᎢ.\n”ᎣᏍᏓ ᎤᏒᎯ!”\nᏧᎪᎸ ᎢᏴ ᎤᏓᏂᏴᎮ ᎪᏍᏔᏴ, ᎾᏍᎩᏯ ᎤᎧᎭᏲᏓ ᎠᏒᏆᎶᏍᏗ ᏳᏫᎦᏂᏌᎾ.\nᎦᎶᏁᏛ ᎦᎷᏨ ᎢᏳᎢ, ᎾᏍᎩ ᎬᏂᏛ ᎢᎩᏁᎯ ᏥᎩ, ᎿᏉ ᎾᏍᏉ ᏂᎯ ᎢᏥᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏤᎮᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎢᏣᏄᏬᏍᏕᏍᏗ.\nᎤᎾᏛᏁᏃ ᎠᎴ ᏚᏂᏯᏙᎴ ᏧᏄᏬ ᎠᎾᏌᏍᏗᏍᎨᎢ; ᎾᏍᎩᏃ ᎤᏙᎯᏳᏁ ᎠᏙᎴᎰᏍᎩ ᏧᏁᏤᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᏗᏆᏄᏬ ᏚᏂᏯᏙᎸᎩ, ᎠᎴ ᎠᏆᏄᏬ ᎤᎾᏌᏍᏔᏅᎩ.\nᎢᏯᏔᏬᏍᏔᏅ ᎣᏁ, ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏘ ᎱᏂᎷᏤ.\nᏍᎪᏁ ᎢᏴ ᏥᎪᏩᏘᏍᎬ ᎣᎩᏃᏔᏅ ᏣᎵ, ᎭᎾᎾ ᏙᎩᎾᏅ ᎤᎵᏨᏓᏆᏓ ᎣᏍᏘᏬᏂᏍᎬ.\nᎤᎬᏫᏳᎯᏍᎩᏂ ᏥᏌ ᎦᎶᏁᏛ ᎡᏣᏄᏬᏍᏓ, ᎠᎴ ᏞᏍᏗ ᏱᏣᏛᏅᎢᏍᏓᏁᎴᏍᏗ ᎤᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎬᎥᏍᎬ ᎢᏣᏛᏁᏗᏱ.\nᎠᏂᏍᎦᏯᏃ ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎩ ᎤᏂᎾᏫᏛᎮ ᏍᏗᏫ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᏂᏍᎪᏂᎴᎢ.\nᎠᎴ ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎿᏉ ᎠᎵᏱᎶᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ; ᏗᏥᏁᏟᏴᎾ ᏕᏣᏓᏅᏛᎢ, ᎠᎴ ᎢᏦᎯᏳᎲᎦ ᎣᏍᏛ ᎧᏃᎮᏛ.\nᎠᎴ ᎤᏁᏤᎴ ᏧᏪᏅᏒ ᏭᎶᎯᏍᏗᏱ, ᎯᎠ ᏄᏪᏎᎢ, ᏞᏍᏗ ᏗᎦᏚᎲ ᏫᏣᏴᎸᎩ, ᎠᎴ ᏞᏍᏗ ᎩᎶ ᎦᏚᎲ ᎡᎯ ᎯᏃᏁᎸᎩ.\nᏅᏃᎯ ᎦᎵ ᎨᏒ ᎠᏂᏩᏥᏂ ᎠᏂᏲᏍᎩ ᏃᎴ ᎦᎶᏇ ᏗᏂᏁ ᏔᎾᏏ ᏓᏳᏂᎶᏒ ᎨᎦᎫᏴᎡ, ᏗᎾᏓᎾᏌᎲᏍᎩ ᎢᏳᏍᏗ ᏚᎾᎭᏄᏭ, ᎪᎩ ᎤᏩᏌ ᎨᏥᎾᏒᏅ ᎠᏂᏴᏫᏯ ᏗᏂᎭᏲᎯ.\nᎿᏉᏃ ᎤᎷᏤᎸᎩ ᏤᏈᏘ ᏧᏪᏥ ᎤᏂᏥ, ᏓᏘᏁᎲᎩ ᏧᏪᏥ ᎠᏂᏫᏅ, ᎡᎳᏗ ᎤᏓᏅᏅᎩ, ᎠᎴ ᎠᎱᏍᏗ ᎤᎳᏲᏎᎲᎩ.\nᎠᏏᏴᏫᏃ ᎾᎥ ᎠᏂᏙᎿᎢ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎤᎸᎮᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ ᎤᎷᏰ ᎠᎴ ᎤᎵᏍᏕᏍᏔᏁᎢ.\nᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏳᏃ ᏴᏫ ᎤᏐᏅ ᏂᎨᏥᏪᏎᎮᏍᏗ ᎠᎴ ᎤᏲ ᏂᎨᏨᏁᎮᏍᏗ, ᎠᎴ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎤᏐᏅ ᎦᏰᎪᎩ ᎨᏥᏃᎮᏍᎨᏍᏗ ᎠᏴ ᎨᏒ ᎢᏥᏍᏛᏗᏍᎨᏍᏗ.\nᎡᎶᏛ ᎠᎴ ᎾᏍᏉ ᎥᏝ; ᎾᎿᏰᏃ ᎢᏤᏅᏍᏗᏱ ᎢᏨᏁᏤᎸᎩ; ᎬᏂᏳᏉᏃ ᎥᏝ ᎪᎱᏍᏗ ᏖᎵ ᎬᏩᏲᎱᎯᏍᏗ ᎨᏒ ᏱᏄᏛᏁᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᎦᏔᎮᏍᏗ ᎾᏍᎩ Ꮎ ᎠᏃᎯᏳᎲᏍᎩ ᎨᏒ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᏪᏥ ᎨᏒᎢ.\nᏭᏂᎷᏣ, ᎠᏂᏄᏓᎴᎩ ᎠᏂᏁᎸ ᏃᎴ ᎠᏂᎱᏣ ᏚᏂᎷᏫᏍᏔᏁᎲ ᏍᎪᎯᏍᏆ ᎢᏰᏆ ᎠᏫᏌᏅ ᎤᏥᎸ ᏃᎴ ᏦᎳ, ᎤᎧᎭᏛ ᏧᏓᏴᎳᏙ ᎢᎦᎦᏓ ᏄᎾᏛᏂᏎ ᎠᏂᎱᏣ.\nᎦᏨ ᏭᏩᎬᏛ ᎢᎾᏓ?\nᏚᎧᏔᏍᏔᏁᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩ ᎤᏲᎢᏳᏛᎿᏕᎩ ᎤᏲᎱᏎᎢ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᏅᏎ ᎡᏆᎭᎻ ᎦᏁᏥᎢ ᏫᎬᏪᎧᏁᎢ. ᎤᏪᎿᎢᏃ ᎾᏍᏉ ᎤᏲᎱᏎᎢ ᎠᎴ ᎠᏥᏂᏌᏁᎢ.\nᎠᎴ ᎾᏍᎩ ᏗᏂᏲᎵ ᎤᏂᏲᎵ ᎠᎴ ᎩᎬ ᎤᏂᏁᎯ ᏥᎩ, ᎤᏩᏒ ᎾᏍᏉ ᎾᏍᎩ ᎤᏠᏯᏍᏔᏁ ᎤᎩᏎᎢ; ᎾᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏐᏗᏱ ᎠᏎᏉᏉ ᎢᏳᏩᏁᏗᏱ ᎾᏍᎩ Ꮎ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎤᎵᏂᎬᎬ ᎤᎯ, ᎾᏍᎩ ᎠᏍᎩᎾ ᏥᎩ.\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎰᏪᎸᎦ, (ᎯᎠᏅᎦ,) ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᎤᏃᏕᎾ-ᎠᎩᎾ ᏣᎦᏨᏍᏙᏗᏱ ᏧᎾᎵᏍᏓᏴᏗᏱ ᎨᏒ ᎤᏂᎷᎯᏍᏗᏱ ᎨᏥᏯᏅᎥ ᎨᏎᏍᏗ. ᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎢᏳᏪᏛ ᎤᏁᎳᏅᎯ.\nᎠᏍᎦᎢᎮ, ᎠᏎᏃ ᎾᎥᏂ ᏭᎷᏤ ᎠᏤᎯ ᎠᏣᏗ ᏃᎴ ᎤᏍᎦᎣᏅ ᎤᏬᏂᏎ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ, ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥᏱᎩ ᏂᎯ ᎢᏳᏍᏗ ᎠᏣᏗ.\nᎠᏎᏃ ᎢᏳᏃ ᎡᎶᎯ ᎥᎩᏌᎳᏓᏅᎭ, ᎾᏂᎥ ᏴᏫ ᏙᏓᎦᏎᏒᎯ.\nᎤᏐᏱ ᎤᏬᎯᏳᎮ ᏃᏉ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᎪᎯᏉ ᏒᏃᏱ ᏥᎩ ᎠᏏ ᏣᏔᎦ ᎾᏂᏴᎬᎾ ᎨᏎᏍᏗ ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ.\nᎠᏫᎾᎨᏍᏗ ᎨᏒ ᎠᏯ ᎨᏒ, ᏔᎵᎭ ᎠᎴ ᏦᎢᎭ ᏧᏕᏘᏴᏓ ᎠᏫᎾᎨᏍᏗᏱᎩ, ᎠᎦᏗᏓ ᏅᏩᏍᏙ.\nᏲᎾ ᎤᏤᏍᏙ ᎤᏬᏞ ᎤᏍᏗ ᎦᏍᎩᎶᎩ ᏄᎵᏍᏔᎾ.\nᎤᏛᏐᏅ ᎫᎾᏓᎴᎩ ᏓᏍᏖᎵᏍᎬ ᏧᏄᎪᏙᏗ, ᎠᏏᎾᏌᏅ ᎤᏙᎴᏋ ᏓᏍᏕᎵᏍᎬ ᎠᏂᏳᏩᏁᎦ ᏃᎴ ᏓᎵᏍᏗᏍᎬ ᎠᏂᏳᏩᏁᎦ.\nᎤᏣᏛᏃ ᎤᏕᎵᏛ ᏓᎾᎵᏃᎮᎵᏙᎲᎩ ᏴᏫ ᎾᏍᎩ ᎬᏩᏃᎮᏍᎬᎢ; ᎢᎦᏛᏰᏃ ᎯᎠ ᎾᏂᏪᏍᎬᎩ; ᎣᏏᏳ ᎠᏍᎦᏯ; ᎢᎦᏛᏃ, ᎥᏝ ᏕᎦᎶᏄᎮᏉ ᏴᏫ, ᎠᎾᏗᏍᎬᎩ.\nᏣᎵ ᏧᏤᎵ ᏴᏫ ᏚᏃᏒᎲ ᎤᎾᏗᏍᎦᎶᏗ ᏧᎬ ᎭᏫᏂᏨ, ᎦᏅᎯᏛ ᎠᏓ ᏭᏂᎳᎦᎸ ᏧᎬ, ᎦᏚᎢᏣ ᏫᏚᏂᏒ ᏧᏩᏂᎦᏝᏅ ᏃᎴ ᏧᏆᎶᎦ.\nᎢᏳᏃ ᎠᏎ ᎠᏆᏢᏈᏍᏗ ᎨᏎᏍᏗ, ᏥᏩᎾᎦᎵᏳ ᎨᏒ ᎤᎬᏩᎵ ᏓᎦᏢᏆᏏ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ; ᎯᎠ ᎾᏍᎩ ᏣᏂ ᏗᏓᏪᏍᎩ; ᏙᏅᎴᏅ ᏧᏲᎱᏒᎩ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏍᏆᏂᎪᏗᏳ ᏥᏚᎸᏫᏍᏓᏁᎭ.\n“ᏥᏕᎩ ᎯᎪ ᎤᏒᎯ,” ᎤᏛᏁ.\nᎤᏛᏅ Perry.\nᏱᏏᏃ ᎠᎨᏲᏅᎯ ᎨᏎ ᏂᎦᎥ ᎠᏂᎦᏔᎿᎢᏳ ᎨᏒ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏎ ᎤᏁᎢᏍᏗᏱ ᎠᎴ ᏧᎸᏫᏍᏓᏁᏗᏱ.\nᎢᎦᏛᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎤᏁᎳᎩ, ᎢᏓᏙᎴᎰᎯ, ᏥᏌᏃ ᎢᎳᏯ ᏓᎦᎷᏥ ᏓᏳᏍᏕᎸᎯᎵ.\nᎠᎴᏃ ᎦᎸᎳᏗᎨ ᏚᏅᏓᏒ ᏳᏪᎾ, ᏱᏚᏍᏔᏩᏕᏅ ᏧᏴᏨ ᎧᎸᎬ ᎢᏣ, ᎾᎨ ᎢᏴ ᎠᎾᏓᎭᏲᎯ, ᎦᏙᏉ Ꮓ?\nᎦᏨ ᏁᏂᏏ ᎯᎪ ᎤᏒ, ᏃᎴ ᏗᏂᏲᏟ ᎡᎵᏍᎨ.\nᎯᎠ ᎢᎦᏪᏛ ᎢᎩ; ᎩᎶ ᎤᏓᎵᎢ ᎢᎦᎧᎲᏍᎨᏍᏗ, ᎦᏅᏁᎮᏍᏗ ᎪᏪᎵ ᎾᏍᎩ ᏚᎾᎦᎴᏅᎲᎢ.\nᎠᎴ ᏓᏂᎾᏕᎨ ᏚᏂᎶᎨᏒ ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᎲᎢ, ᎠᎡ ᏓᏂᏯᏙᎮᎮ ᎾᏂᎥ ᎾᏍᎩᏯ ᎤᏂᏂᎬᏎᎲᎢ.\nᎤᏂᏣᏖᏍᏗᏰᏃ ᏴᏫ ᏓᏆᏙᏍᏛ ᎠᏂᎷᎯᏍᏗᏍᎨᏍᏗ, ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎠᏴ ᎾᏍᎩ; ᎠᎴ ᎤᏂᏣᏖᏍᏗ ᏓᏂᎶᏄᎮᏍᎨᏍᏗ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᏁᏅᏒᎩ, ᏥᏌ ᏄᏂᏪᏎᎸ ᎾᏍᎩᏯ ᏫᏄᎾᏛᏁᎸᎩ;\nᎠᎴᏍᎪ ᎥᏝ ᎾᏍᎩ ᎯᎠ ᏳᎬᏫᏳᎭ, (ᎾᏍᎩ ᎦᏲᎩᏐᏢᏛ ᏥᎪᎩᏃᎮᎭ, ᎠᎴ ᎩᎶ ᎾᏍᎩ ᎾᏂᏪ ᏥᎪᎪᏎᎭ,) ᎤᏲ ᏕᎩᎸᏫᏍᏓᏁᎮᏍᏗ ᎾᏍᎩ ᎣᏍᏛ ᎨᏒ ᎤᎵᏰᎢᎸᏍᏗᏱ? ᎾᏍᎩ ᎤᏂᏍᎦᏅᏨ ᏧᎾᏚᎪᏓᏁᏗᏱ ᏚᏳᎪᏗ.\nᎾᏍᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎿᏉᏃ ᎯᎠ ᏄᏚᏪᏎᎸᎩ; ᎳᏏᎳ ᎢᎦᎵᎢ ᎦᎵᎭ; ᎠᏎᏃ ᏓᎨᏏ, ᏴᏓᏥᏰᏍᏔᏂ.\nᎭᏕᎶᎰᏍᎦ ᏂᏚᏟᏂᎬᎬ ᏗᎦᏅᏬᎢ ᏣᏄᏏ?”\nᎤᏚᏓᎳᎩᏍᏓᎾ, ᎾᎥ ᏅᏲᎯ ᎢᏗᏣ ᏭᏓᏂᏏᏅᏍᏓᏁ.\nᏰᎵᏃ ᎤᏬᎯᏨ ᎤᏪᏙᎸ, ᎤᏂᎩᏒᎩ, ᎠᎴ ᎨᎴᏏᏱ ᎠᎴ ᏈᏥᏱ ᎣᏍᏛ ᎤᏱᎸᏒᎩ ᎤᏪᏐᎸᎩ, ᏓᎵᏂᎪᎯᏍᏗᏍᎬᎩ ᏂᎦᏛ ᎠᏃᎯᏳᎲᏍᎩ\nᎤᎾᏛᎦᏅᎯᏃ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᎪᏃ ᏰᎵ ᏯᏥᏍᏕᎸ?\nᏂᎦᏓᏗ ᏧᏐᏱᎭ.\nᎰᏩᏃ ᎤᏯᏅᎲ, ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᏭᏘᏃᎮᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏉᎳ ᎠᏴᎩ ᏩᎩᏯᏅᎲᎩ, ᎠᎩᏔᏲᏎᎸᎩ ᎯᎠ ᎠᏫᏅ ᎬᏯᏘᏃᎮᏗᏱ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᎭ ᏣᏃᏁᏗ.\nᎧᏃᎮᎸᎥᏍᎩ ᎠᏉᏪᎳᏅ, ᏧᏑᎵᎪᎬ ᎧᏃᎮᏍᎩ, ᏣᏉ Mrs. Chapman, The Chesapeake Review ᎤᏃᏣᎸᏅ.\n”ᎤᏣᏓ ᎣᏍᏓ!” ᎡᏝᏪ ᏄᏪᏎ ᎰᎻ, ᎤᎵᎮᎵᏍᏗ ᎦᎸᏉᏗᏍᎨ.\nᎠᎩᏫᏯ ᎠᎩᏍᎩ, ᎠᎴ ᎠᎩᎩᎬ ᎠᏗᏔᏍᎩ, ᎾᏍᎩ ᎠᎩᏯᎠ, ᎠᏴ ᎠᎴ ᎾᏍᎩ ᏥᏯᎠ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏓᏕᏲᎲᏍᎬᎢ, ᏕᏤᏯᏙᏤᎮᏍᏗ ᏗᏃᏪᎵᏍᎩ ᎣᏏᏳ ᏧᏂᏰᎸ ᏗᎦᏅᎯᏛ ᏧᎾᏄᏩᎢ ᎤᏁᏓᏍᏗᏱ, ᎠᎴ ᎨᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ,\nᎠᏎᏃ ᏅᏙᎴᎰᏒ ᎠᏍᏓᏱᏳ ᎦᏃᎸᎥᏍᎬ ᎤᏍᎦᎸᎩ, ᎠᎴ ᎤᎴᏅᎲ ᎦᏃᏴᎬ ᎤᏪᎷᏅᎩ, ᏣᎬᏫᏳᎯ ᏍᎩᏍᏕᎸ, ᎤᏛᏅᎩ.\nᎤᏂᏁᎫ ᏚᏂᏅᏎ ᏗᏨᏍᏙᏗ ᎠᏎᏃ ᎪᎢ ᏄᏂᏁᏨᏒᎾ ᎨᏎᎢ,\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏯᏫᏍᎩ ᎤᏂᎷᏨᎩ, ᏚᏂᏍᏆᎵᏒᎩ ᏗᎦᏅᏍᎨᏂ ᎢᎬᏱᏱ ᎦᏗ ᎠᎴ ᏐᎢ ᎢᏧᎳᎭ ᏥᏌ ᏗᎨᎦᏛᏅᎯ.\nᏚᎪᎮᏃ ᎠᏂᎩᎵᏲᎬ ᎠᏂᎦᏪᎯᎲᎢ; ᏩᏂᎦᏛᏃ ᎢᏗᏏ ᏗᎦᏃᎸᏗᏍᎨᎢ. ᏅᎩᏁᏃ ᎢᏴᏛ ᎠᏂᏯᏫᏍᎬ ᏒᏃᏱ ᏚᎷᏤᎴᎢ, ᎥᏓᎵ ᎦᏚᎢ ᎠᎢᏎᎢ, ᎠᎴ ᏱᏚᎶᎯᏎᎴᎢ.\nᎬᎨᏳᎢ, ᎤᏟ ᎢᎦᎢ ᎠᏆᏚᎵᎭ ᎣᏍᏛ ᏣᏁᏉᏤᏗᏱ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏣᎴᏂᏓᏍᏗᏱ, ᎾᏍᎩᏯ ᏣᏓᏅᏙ ᎣᏍᏛ ᎤᏁᏉᏤᎲᎢ.\nᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᎯᏯᏍᎨᏍᏗ ᏣᏓᏁᏗ ᎠᎴ ᎭᏓᏅᏍᎨᏍᏗ, ᎢᎬᏱ ᎣᏍᏛ ᏂᏍᏛᏁᎮᏍᏗ ᏗᏍᏓᏓᏅᏟ; ᎩᎳᏃ ᎯᎷᎨᏍᏗ ᎭᎵᏍᎪᎸᏗᏍᎨᏍᏗ ᏣᏓᏁᏗ.\nᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᏗᏓᎴᏅᏗᏍᎩ ᎠᎴ ᎠᏍᏆᏗᏍᏗᏍᎩ, ᎠᎴ ᎢᎬᏱᏱ ᎠᎴ ᎤᎵᏍᏆᎸᎢ.\nᎾᏍᎩ ᎬᎩᎦᏔᎲᎩ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎢᏳᏃ ᏳᏂᏃ-ᎮᎸ, ᎠᏂᎦᏔᎯᏳᏰᏃ ᎠᏆᎵᏏ ᎤᎴᏂᏓᏍᏗ ᎠᏆᎴᏂᏙᎸᎢ, ᏕᏥᏍᏓᏩᏗᏒ ᎤᎾᏓᏤᎵᏛ ᎤᎾᎵᎪᎯ ᏭᏂᎫᏛ ᏗᏂᎧᎿᏩᏕᎩ ᎣᎦᏤᎵ ᎤᏁᎳᏅᎯ ᏦᏥᎧᎿᏩᏛᏍᏗ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏂᎦᎥᎩ ᏅᏩᏙᎯᏯᏛ ᎢᏣᏓᏅᏛᎩ! ᎢᏨᏲᎢ-ᏳᏓᏁᎭᏰᏃ, ᎾᏍᎩ ᎢᏳᏃ ᏰᎵ ᎾᏍᎩ ᎢᎬᏩᎵᏍᏙᏗ ᏱᎨᏎᎢ, ᎢᏨᏒ ᏱᏗᏣᏓᎦᏖᏙᎢᏎᎢ, ᎠᎴ ᎠᏴ ᏱᏗᏍᎩᏁᎴᎢ.\nᎠᏌᎻᏓ ᏃᎴ ᎠᏂᏧᏣ ᎤᏲ ᎤᎾᏓᏅᏛ.\nᎿᏉᏃ ᏔᎵᏁ ᏗᎦᏙᎵ ᏚᏏᏔᏕᎢ, ᎠᎴ ᏧᎧᏃᏗᏱ ᏄᏩᏁᎴᎢ; ᎠᎴ ᎤᏗᏩᏎᎢ, ᎠᎴ ᎾᏂᎥ ᎣᏏᏳ ᏓᎪᏩᏗᏍᎨᎢ.\n“ᎣᏍᏓ!” ᎤᏛᏁ ᎦᏂᎦᏔ.\nᏅᏩᏓᎴᏃ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ; ᏅᏩᏓᎴᏃ ᎤᏙᎴᎰᎯᏍᏗᏱ; ᏅᏩᏓᎴᏃ ᏗᏓᏅᏙ ᏄᎾᏍᏛ ᏧᎪᎵᏰᏗᏱ; ᏅᏩᏓᎴᏃ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏧᏬᏂᎯᏍᏗᏱ; ᏅᏩᏓᎴᏃ ᏧᏁᏢᏙᏗᏱ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ;\nᎠᏎᏃ ᎨᏍᏗ ᎤᏬᏨᏗ ᏱᎾᏛᏁᎮ -  ᎧᏂᎩᏓ ᎠᏁᏙᎲ, ᎧᏂᎩᏓ ᎪᎱᏍᏗ ᎠᎩᎸᏗᏍᎬ, ᎧᏂᎩᏓ ᎤᎾᏓᏬᏍᏗ.\nᎰᎻ, ᎠᎳᏂ ᏃᎴ ᎡᎳᏆᏗ ᏭᏂᏴᎴᎢ ᏫᎵᎻ ᎤᏴᏍᏗ.\nᎠᏌᎻᏓ ᏓᏘᎭᏁᎲ ᎠᎾᎢᏒ, ᏰᎵᏉ ᎠᏆᏣᏅᏓᏕᎲ ᏑᏒᎯᏓ ᎣᎦᎵᎪᏗ ᏪᎵᏏ ᏚᎾᏌᎥ ᎠᏂᎨᏯ, ᎤᎩᏨᏓ ᏫᏗᎦᏨᏙᏗ.\nᎤᏍᏗᎩᏛᏉᏰᏃ ᎡᏍᎦ ᏂᏴᏁᎸ ᏂᎩᏴᏁᎸ ᏗᏂᎧᎿᏩᏗᏙᎯ; ᏗᎬᏩᎸᏌᏓ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ ᎯᏍᏚᎶᏔᏅ, ᎠᎴ ᎤᎬᏫᏳᏌᏕᎩ ᏂᏴᏁᎸ ᎪᎱᏍᏗ ᏦᏢᏅᏅᎯ ᎨᏒᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᏁᏤᎴ ᏈᎵᎩ, ᎯᎠ ᏄᏪᏎᎢ; ᏔᎴᎲᎦ ᏧᎦᎾᏮ ᎢᏗᏢ ᏫᎶᎯ ᏂᎦᏅᏅᎢ ᏥᎷᏏᎵᎻ ᎨᏏᏃ, ᎾᎿ ᎢᎾᎨ ᏥᎩ.\nᏌᏉ [ᎡᎭ] ᎠᏰᎸᎢ, ᎠᎴ ᏌᏉ ᎠᏓᏅᏙ, ᎾᏍᎩᏯ ᏌᏉ ᎤᏚᎩ ᎢᏨᏗᏱ ᎡᏥᏯᏅᏛ ᏥᎩ, ᎾᏍᎩ ᎡᏥᏯᏅᎲ ᏨᏗᏓᎴᎲᏍᎦ;\nᎠᏂᏲᎯᏍᏗᏍᎪ ᏓᎾᏙᎴᏆᏍᎬ ᏗᏂᏲᏟ ᎤᎾᏣᏅᏓᏕᎮ ᏧᎾᏁᎶᏗ ᏃᎴ ᎤᎾᏧ Ꮧ ᎨᏴᎢ.\nᎰᏩᏃ ᎪᎯᏗᏳ ᎤᎦᏘᏛ ᎠᏥᏁᎴ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ.\nᎥᏝ ᎩᎶ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ ᎦᏁᎸ ᏴᎬᏴᎭ, ᎠᎴ ᏴᎬᏬᏅ ᎤᎿᎥᎢ, ᎬᏂ ᎢᎬᏱ ᏳᎸᎸ ᎾᏍᎩ ᎤᎵᏂᎩᏛ ᎠᏍᎦᏯ; ᎩᎳ ᎿᏉ ᏯᏬᏅ ᎦᏁᎸ ᎤᎿᎥᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏨᏔᏲᏎᎭ ᎡᏥᏍᏓᏱᏕᏗᏱ ᎡᏥᎨᏳᎢᏳ ᎨᏒᎢ.\n“ᏐᏉ “ᎤᏣᏓ ᎣᏍᏓ’ ᏱᎩ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏓᏏᎳᏛ ᎠᏰᎵ ᏭᎷᏤ, ᎭᎾ ᎤᎴᏅᎮ ᏓᎦᎵᏍᎬ ᎢᎦᏓ ᏓᏏᎳᏛ.\nᏗᏂᏲᎵᏉ ᎾᏍᎩᏯ ᎦᏃᏙᏗᏱ ᏣᏂᏃᎢ, ᎠᎴ ᏥᏫᏓᎾᏓᏯᏂᏍᎪᎢ, ᎯᎠ ᏥᏫᎾᏂᏪᏍᎪᎢ; ᎠᏤᎷᎩ ᎣᎬᏔᏅ ᏕᏨᏃᎩᎡᎸ, ᎠᏎᏃ ᎥᏝ ᏱᏣᎵᏍᎩᏎᎢ; ᏙᏥᏴᎬ ᎢᏣᏛᎪᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏗᏣᏠᏱᎴᎢ.\nᎢᎦ ᏒᎮᏱᏣ ᎢᎪᎯᏓ ᎤᏍᏔᏩᏛᏎ ᎤᎶᏒ ᏲᎾ, ᏯᎴᏫᏍᏘᏍᎬᎾ ᎧᎾᎷᏍᎬ.\nᎤᏂᏣᏓ ᎤᏐᏱ ᏄᎾᎵᏍᏔᏁᎴ.\n”ᎤᏙᎯᏳᎯ ᎤᏛᏁ ᏣᏄᏏ.\nᎾᏍᎩᏰᏃ ᏂᎦᎥᎩ ᎤᏁᎳᏅᎯ ᎤᎨᏳᏒᎩ ᎡᎶᎯ, ᏕᏅᏲᏒᎩ ᎤᏤᎵᎦ ᎤᏪᏥ ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ, ᎩᎶ ᎾᏍᎩ ᏱᎪᎯᏳᎲᏍᎦ ᎤᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᎬᏂᏛᏉᏍᎩᏂ ᎤᏩᏛᏗ.\nᎠᏎᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᏚᏲᏍᏙᏓᏁᎸᎩ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎤᏚᎵᏍᎬ ᎤᏍᏕᎸᏗᏱ ᏉᎳ, ᎠᎴ ᏚᏁᏤᎸᎩ ᏰᎵ ᎬᏩᎾᏴᎢᏅᏍᏗ ᎨᏒ, ᎢᎬᏱ ᎤᎾᎵᏔᏗᏅᏗᏱ ᎠᎴ ᏭᎾᏚᎩᏍᏗᏱ,\nᎾᏍᏛᎲᏃ ᎤᎾᏟᎶᎥ ᎤᎾᏙᎴᎰᏒᎩ ᏔᎳᏍᎪᎯ ᎢᎪᎷᏅᏗ ᎨᏒᎢ; ᎤᏍᏗᎩᏛᏃ ᎤᏗᏢᏍᏙᏗ ᎢᎤᏁᏅ ᏔᎵᏁ ᎤᎾᏟᎶᎥᎩ, ᎤᎾᏙᎴᎰᏒᎩ ᎯᏍᎩᎦᏚᏉ ᎢᎪᎷᏅᏗ ᎨᏒᎢ.\nᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ; ᎠᎴ ᎾᏍᏉ Ꭿ; ᏨᏒ ᏂᏣᏓᎨᏳᏒ ᏂᎨᏳᏎᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ.\nᎾᏍᎩ ᏓᏓᏂᏌᎲᏉ ᎡᎮᎢ; ᎥᏝ ᎠᎴ ᎾᏍᏉ ᏧᏓᏕᏒᏛ ᎬᏗ ᎩᎶ ᎬᏩᎸᏍᏗ ᏱᎨᏎᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏂᏚᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎾᏍᎩ ᎩᎶ ᎠᏂ ᏥᏓᏂᏙᎦ, ᎥᏝ\nᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏥᏍᎦᏯ, ᎦᏙᎴᎣᏍᎦ ᎯᎠ ᎾᏍᎩ ᏥᏳ ᏥᏗᏂ ᎪᎱᏍᏗ ᏗᎦᎵᏍᏓᏁᎵᏒᎢ,ᎠᎴ ᎤᏣᏛ ᏗᎩᏲᎱᏎᎵᏒᎢ, ᎥᏝ ᎠᎵᏁᏌᎸᏉ ᎠᎴ ᏥᏳ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᏕᏛᏅᎢ.\nᎠᏎᏃ ᎨᏍᏗ ᏂᎦᏓ ᏱᎪᎵᎦ, ᏃᎴ ᎨᏍᏗ ᏱᏓᏆᏓᏅᏖᏔᏂ.\nᏝᏍᎪᏃ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᏱᏂᏙᎬᏛᏂᏏ ᎤᏩᏒ ᏧᏤᎵ ᎨᎦᏑᏴᏛ, ᎾᏍᎩ ᏗᎬᏩᎩᏨᏗ ᏥᎬᏩᏓᏙᎵᏍᏓᏁᎭ, ᎾᏍᏉ ᎪᎯᏗᏳ ᏱᏓᏙᎯᏕᎭ?\nᎾᏍᎩ Ꮎ ᏄᏁᎸᎾ ᎡᎯ ᎤᏲᎱᏒᎯ ᎨᏐ ᎠᏏᏉ ᎠᎴᏂᏙᎲᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎤᏰᎸᏛ ᏗᎪᎵᏍᏙᏗ ᏔᎵ ᏚᏛᏗᏕᎨᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ; ᎠᏴ ᏓᏆᏙᎥ ᎠᏅᏗᏍᎨᏍᏗ ᎠᏂᏍᎩᎾ ᏓᏂᏄᎪᏫᏍᎨᏍᏗ; ᏅᏩᎾᏓᎴ ᏧᏂᏬᏂᎯᏍᏗ ᏓᏂᏬᏂᏍᎨᏍᏗ;\nᎨᏍᏗ ᏳᎾᏁᎸᏔᏅ ᎡᏝᏪᎯ ᎤᎾᏓᏅᏏᏓᏍᏗ, ᎠᏂᎾᏁᏍᎬ ᎠᏂᏍᎦᏯ ᎠᎾᏓᏏᏂᏒ ᎦᏙ ᎦᎳᎨᏴ ᏃᎴ ᏚᏑᎬ ᏧᏩᏂᎦᏝᏅ ᏓᏂᏍᏆᎵᏍᏗᏍᎬ ᎢᎬᎾᏕᏅ ᏛᏓᎴᎲᏍᎬ.\nᎠᎴ ᎯᎠ ᎾᏍᎩ ᏂᏥᏪᎭ ᎾᏍᎩ ᎩᎶ ᎢᏥᎶᏄᎮᏍᏗᏱ ᏂᎨᏒᎾ ᎾᏍᎩ ᎤᏬᏚᎯ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎬᏗ.\nᎠᏴ ᎡᏙᏓ ᏕᎤᏙᎥ ᎠᎩᎷᎯᏍᏔᏅ, ᎥᏝᏃ ᏱᏗᏍᎩᏯᏓᏂᎸᎦ. ᎢᏳᏃ ᏅᏩᏓᎴ ᎤᏩᏒ ᏕᏅᏙᎥ ᏳᎷᎯᏍᏔᏅ, ᎾᏍᎩ ᎠᏎ ᏱᏕᏣᏓᏂᎸᎩ.\nᎾᏍᎩᏃ ᏠᎠᏏ ᏥᏳᎯ ᎣᎦᏣᏅ ᏧᏳᎪᏗ ᏬᎩᏅᏍᏔᏅᎩ, ᏎᎹᏞᏏ ᏬᎩᏃᎸᎩ; ᎤᎩᏨᏛᏃ ᏂᎠᏆᎵᏏ ᏬᎩᏃᎸᎩ.\nᎦᏨ ᏫᏗᎦᏘ? ᎤᏛᏅ ᏣᎵ.\nᏍᎩᎾᎾ ᏃᎴ ᏦᎢ ᎢᏯᏂ ᎠᏂᏫᎾᎨ ᎠᏂᏍᎦᏯ ᎤᎾᏗᎨᎴᏴ, ᏥᏳᎬᏘ ᎦᏚᏏ ᏭᎶᏒ ᏣᎵ.\nᎾᏍᎩ ᎦᎶᏁᏛ ᎤᎩᎵᏲᎢᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎢᎬᏱ ᎤᏲᎱᏒ ᏧᎴᎯᏐᏗᏱ, ᎠᎴ ᎢᎦᎦᏘ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎯᎠ ᏴᏫ ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ.\nᎨᏍᏗ ᎠᏉᏚ ᏱᎩ ᏓᏆᏂᎦᏢ ᎨᏍᏗ ᏧᏟᏂᎩᏓ ᏱᎩ.\nᏥᏌᏍᎩᏂ ᎤᎪᎲ ᎤᏣᏘ ᏒᏍᎦ ᎤᏰᎸᏁᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎤᏁᎳᎩ ᏕᏤᎵᏎᎮᏍᏗ ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎬᎩᎷᏤᏗᏱ, ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏅᏍᏓᏕᎮᏍᏗ; ᎾᏍᎩᏰᏃ ᏄᎾᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ, ᎠᏴ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏥᎩ, ᎥᏝ ᎯᎠᏉ ᏱᏂᎨᏕᎵᎭ; ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯᏉ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᏅᏯ, ᏴᏫ ᎠᏂᏏᎾᏌᏅ ᎠᎴ ᎤᎾᏓᏅᏖᎸᎯ ᎬᏔᏅᎯ ᎪᏢᏅᎯ.\nᎥᏣ ᎢᏧᎳᎭ, ᎤᏛᏅ ᏁᏂᏏ.\nᎯᎠᏃ ᎤᏲ ᏄᎵᏍᏔᏅ ᎤᏓᏅᎵᏰᎥ ᎦᏙ ᎠᎬᏱᏣ, ᏅᏩᏍᏛᏃ ᏐᏉ ᎠᏍᎦᏯ, ᎶᏩᏂ ᏱᏓᏓ, ᎦᎸᎳᏗ ᏍᏔᏯ ᎤᏩᎭᏂᎴ Perry ᎦᎷᏯᏍᏘ ᎬᏘ, ᎤᏍᎫᏓᏁᎦᎸ ᏕᎦᏅᏙᎬ ᏩᏍᏘ.\nᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᏑᎾᎴᎢ ᎤᎾᏗᏓᎾᎩᏍᏗ ᎤᏁᎵᏎ, ᎤᎾᎦᏙᏍᏙᏗ ᏫᎵᎻ ᎠᏂᎩᏍᎬ.\nᎢᏳᏍᎩᏂ ᏂᏗᎨᏥᏁᎲᎾ ᏱᎩ ᏴᏫ ᎨᏥᏍᎦᏅᏤᎲᎢ, ᎾᏍᏉ ᎢᏥᏙᏓ ᎥᏝ ᏱᏙᎨᏥᎲᏏ ᎢᏥᏍᎦᏅᏨᎢ.\nᎤᏲ ᏅᏋᏁᎵᏙᎸᎢ, ᎠᎩᎩᎵᏲᏥᏙᎸᎢ ᎥᏘᎣᎩ, ᎢᎪᏂᏯ, ᎵᏍᏗ--ᏂᎦᎥ ᎤᏲ ᏅᏋᏁᎵᏙᎸᎢ; ᎠᏎᏃ ᎾᏍᎩ ᏂᎦᏛ ᎾᎿ ᎤᎬᏫᏳᎯ ᎠᏯᏓᎴᏒᎩ.\nᎦᎵᏉᎩ ᎢᏯᏂ ᏌᏌ ᎠᏂᏓ ᎠᎾᏕᏯᎵᏙᎮ ᎤᏂᏥ.\nᎠᎵᏍᎦᏁᏍᏗ ᏄᏍᏛ ᏄᏪᏒ ᎠᏂᏴᏫ ᏧᎦᏎᏍᏗᏕᎩ, ᎣᏍᏓ ᎨᏒ ᎠᎵᏍᏔᏴᏗ, ᎠᏎᏃ ᎤᏒᎯ ᎠᎵᏍᏔᏴᏗ, ᎣᏍᏓ ᎠᏣᏗ ᎤᎦᎹ, ᏓᎶᏂᎨ ᎪᏒᏅ ᏃᎴ ᎤᏅᏗ ᎤᏓᏑᏱ ᏃᎴ ᏧᏂᏍᏗ ᎦᎦᎹ ᏧᏂᎾᏦᏴᏍᏗ, ᎤᏁᎦ ᎠᏖᎵᏙ ᏧᎾᏦᏴᏍᏗ ᎤᏓᏅᎵᏰᏛ.\nᎾᎥᏃ ᎠᏁᏙᎯ ᎤᎾᏙᎴᎰᏒ ᏄᏍᏛ ᏫᎬᏩᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎠᏰᎳᏍᏗᏍᎪ-ᎦᏅᎯᏛ ᏙᏓᏲᏥᎷᏯᏍᏔᏂ?\nᎯᏁᏉᎥ ᏂᏣᏓᎨᏒᎢ ᏃᎴ ᏙᎯᏉ ᎨᏎᏍᏗ---ᏍᎩᎾᎾ ᏱᏂᏣᏛᏁᎳ ᏱᏍᎩᏍᏕᎳ.\nᏗᎩᎦᎨ ᎨᏎ ᏗᎦᏙᎵ ᎤᏦᏱᎸ.\nᎾᏍᎩᏰᏃ ᎠᏅᏗᏍᎬ ᎡᏘ ᎤᎾᏕᏅᎯ ᎣᏍᏛ ᎨᏥᏃᎮᏗᏱ ᎤᏂᏩᏛᎲᎩ.\nᎢᎦ ᏒᎮᏱᏣ ᎣᏍᏓ ᎤᏰᎸᎮ ᏧᏮᏗ ᏌᎳᏓ, ᏃᎴ ᎣᏍᏓ ᎤᏰᎸᎰ ᎾᎥ ᎤᏩᏗ ᏲᎾ ᎤᏤᏍᏙ ᎤᎧᏙᏍᏙᏗ.\nᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏚᏄᏩᎥ ᏚᏪᏣᎦᎸᎮᎢ; ᎠᏐᏢᎢᏍᏓ, ᎤᏛᏁᎢ; ᎦᏙᏃ ᎠᏏ ᎠᏂᎦᏔᎯ ᏯᏂᏃᎮᎭ? ᎬᏂᏳᏉ ᎿᏉ ᎢᏣᏛᎬᎦ ᎠᏐᏢᎢᏍᏗᏍᎬᎢ.\nᎥᏝᏰᏃ ᏂᎯ ᏱᏥᏁᎪᎢ, ᎢᏥᏙᏓᏍᎩᏂ ᎤᏓᏅᏙ ᎧᏁᎪᎢ ᏂᎯ ᎢᏨᏗᏍᎪᎢ.\nᎠᎴ ᏔᎵᏁᎢ, ᎾᏍᎩ ᏓᏥᏯᎵᏍᎦᏍᏙᏔᏂ. ᎠᎴᏬ, ᎬᏂᏳᏉ ᎠᏴ ᎠᎴ ᎾᏍᎩ Ꮎ ᏗᏂᏲᎵ ᎤᏁᎳᏅᎯ ᏗᎩᎧᏁᎸᎯ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏏ; ᎠᏎ ᎨᏥᏍᎦᏂᏉ ᎨᏒ ᏙᏓᏥᏲᎱᏏ; ᎢᏳᏰᏃ ᏂᏦᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎠᏴ ᎾᏍᎩ ᎨᏒᎢ, ᎠᏎ ᎨᏥᏍᎦᏂ ᎨᏒ ᏙᏓᏥᏲᎱᏏ.\nᎠᏏᏉᏃ ᏈᏓ ᎯᎠ ᎾᏍᎩ ᏂᎦᏪᏍᎨᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎡᎳᏗ ᏄᏛᏁᎴ ᎤᏂᎷᏤᎴ ᏂᎦᏛ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ.\nᎯᏍᎩᏃ ᎦᏚ ᏚᎩᏎᎢ, ᎠᎴ ᏔᎵ ᎠᏣᏗ ᏚᏁᏎᎢ; ᎦᎸᎳᏗᏃ ᏫᏚᎧᎿᏅ ᎤᎵᎮᎵᏤᎢ, ᎠᎴ ᎤᎬᎭᎷᏰᎢ, ᎠᎴ ᏚᏁᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏧᏂᏁᏗᏱ ᎤᏂᏣᏘ.\nᎾᏍᎩ ᎡᎻᏂᏓ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎡᎵᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎢᏏᎳᎻ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏇᎵᏏ ᎤᏪᏥᎨᏎᎢ, ᎾᏍᎩ ᏧᏓ ᎤᏪᏥ ᎨᏎᎢ,\nᎠᎩᎦᏘᏛ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏦᏢᎯᏏᏍᎪᏰᏃ ᏕᎦᏂᏌᎲ ᎠᎾᏙᎴᎰᏍᎩ, ᎠᎴ ᏕᏦᏚᎢᏍᏗᏍᎪ ᏓᏤᎵᏍᏛ ᎤᎾᏓᏁᏘ;\nᎤᏣᎴᏓ ᎤᏩᏓᏍᎬ ᏗᏂᎭᏲᎯ, ᏧᏓᎴᏅᏓ ᎢᏣ ᏓᎾᏓᎴᎬ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙ ᎦᏛᎦ ᏂᎪᎯᎸᎾᏉ ᏣᏗᎭ? ᎥᏝ ᏲᏦᎵᎦ ᏄᏍᏛ ᎦᏛᎬᎢ.\nᎦᏓᏅᏛᎳ ᏗᎾᏓᎪᎾᏗᏍᎬ ᎦᏘᏅᏍᏗ ᏚᎵᎢᏍᏗ ᏑᏓᎵᏁᎢ.\nᎠᎴ ᎤᏚᎩ ᎢᏨᏴᏒ ᎤᎵᏂᎩᏗᏳ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏦᏥᎦᏔᎭ, ᎾᏍᎩ Ꭲ-ᏣᏠᏯᏍᏗᏍᎬ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏣᏠᏯᏍᏙᏗ ᎨᏎᏍᏗ ᎤᎦᎵᏍᏗ ᎨᏒᎢ.\nᎾᎿᏂ ᎾᏍᏉ ᏂᎯ ᏤᏣᏜᏍᏔᏅᎯ ᎡᏣᏁᏍᎨᎲᎯ ᎡᏥᏝᏅᎯ, ᎤᏁᎳᏅᎯ ᎤᏁᎳᏗᏍᏗᏱ ᎡᏓᏅᏙ ᎬᏗᏍᎬᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎣᏏᏳ, ᎰᏍᏛ ᎡᏣᏅᏏᏓᏍᏗ; ᎤᏍᏗ ᎨᏒ ᎣᏏᏳ ᏂᏣᏛᏁᎸ; ᏣᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ ᎠᏍᎪᎯ ᏕᎦᏚᎲᎢ.\nᎠᎬᏱ ᎦᏂᎩᎸ ᏃᎴ ᏚᎾᏌᎥᎢ ᏃᎴ ᎤᏫᏌᏅ ᏃᎴ ᎾᎥᏂ ᎠᏁᎯ, ᏃᏉ ᏏᏓᏁᎸᎯ.\n”ᎨᏍᏗ ᏗᎦᏣᏏᎳᏛᏗ ᏱᎩ, ᏫᎵᎻ, ᏃᎴ ᏂᎬᏪᏎᎭ, ᏫᏨᎨᏩᏉ ᏗᏣᏏᎳᏛᏗ.\nᎢᏧᎳ ᎠᏂᏍᎦᏯ ᎡᏝᏪᎯ ᎤᏁᏅᏎ ᏫᎵᎻ ᎤᏴᏍᏗ.\nᎢᏧᎳ ᎤᏂᏃᏪᎢ.\nᎦᏲᏟᏉ ᏚᏅᏯ ᎦᎶᏇ ᏃᎴ ᏗᏲᏍᏙᏗ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏏᏍᎪ ᎾᏍᏉ ᏂᎯ ᏂᏦᎵᎬᎾᏉ ᎢᎩ?\nᎤᏍᏗ ᎪᏛ ᎾᎥᏂ ᎣᏥᏅᎬ ᎠᏯ ᏃᎴ ᏦᎢ ᎢᏯᏂ ᎠᏂᏧᏣ, ᎾᎥᏉ ᏩᏍᏗ ᎠᏨᏍᏛ.\nᏥᏌᏃ ᎤᎵᏩᏲᎢ ᎣᏓᎸ ᏬᎶᏒᎩ.\nᎤᎩᏨᏛᏃ ᏧᎾᎩᎸᏗ ᎤᎾᏘᏅᏍᏗ ᏄᏅᏁᎸ, ᎠᏂᏯᏫᏍᎩ ᎤᎾᏨᏒᎩ, ᏗᏐᏴ ᏭᏂᎶᏒᎩ.\nᏫᏕᏓᎦᏂᏍᎨᏍᏗ ᏥᏌ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, ᎠᎴ ᎠᏍᏆᏗᏍᎩ ᏥᎩ ᎢᎪᎯᏳᏒᎢ. ᎾᏍᎩ ᎤᎵᎮᎵᏍᏗ ᎨᏒ ᎢᎬᏱᏗᏢ ᎾᎬᏁᎸ ᎢᏳᏍᏗ ᎬᏂᏗᏳ ᏓᏓᎿᏩᏍᏛ ᎤᎩᎵᏲᏤᎢ, ᎤᎵᏌᎵᏉ ᎤᏰᎸᏎ ᎤᏕᎰᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏘᏏᏗᏢ ᎤᏪᏅ ᎤᏁᎳᏅᎯ ᎤᏪᏍᎩᎸᎢ.\nᏑᏓᎴᎩᏉ ᏍᎩᏂ ᎤᏚᎸᏗ; ᎠᎴ ᎺᎵ ᎤᏑᏰᏒ ᎾᏍᎩ ᎣᏌᏂ ᎨᏒᎢ, ᎾᏍᎩ ᎦᏰ-ᏥᎩᎡᏗ ᏂᎨᏒᎾ ᏥᎩ.\n“ᎯᎪ ᎢᎦ ᏒᎮᏱᏣ, ᏱᏓᎩᏯᏪᎬᎾ ᎨᏎᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏄᎾᏓᎴᏒᏰᏃ ᎢᎾᎨ ᎠᏁᎯ ᎠᎴ ᎠᏂᏃᎯᎵᏙᎯ ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎠᎴ ᎠᎺᏉᎯ ᎠᏁᎯ, ᏗᏓᏅᏘᏐᏙᏗ ᎠᎴ ᏧᏓᏅᏘᏐᏔᏅᎯ ᏴᏫ.\nᏔᎵ ᏧᏙᏓᏆᏓ ᎣᎭᏁ ᏩᏯᎯ, ᎦᏚᎲ ᎦᎵᏦᏕ ᏙᎩᏃᏢ ᏲᎾ.\nᎦᏙᎨᏃ ᎤᏍᏛ ᎤᏟ ᏄᏛᏅ ᎠᏧᏏ? ᎠᎴ ᎦᏙ ᎤᏍᏛ ᎬᏩᏓᏍᏕᎸᏗ ᎠᎱᏍᏕᏍᏗ ᎨᏒᎢ?\nᎢᏳᏃ ᎰᏩ ᏱᏙᎦᏄᏩᎥ, ᎥᏝ ᏦᎩᏰᎸᎭ ᏱᎦᎨᏎᏍᏗ.\nᎠᎵᏰᎾ ᏩᏎᎯ ᎠᏗᏅᏓ ᎦᎳᎨᏴ ᎤᏃᎯ ᎾᎥᏂ.\nᏈᏓᏃ ᎯᎠ ᏂᏅᏪᏎᎴᎢ; ᏍᎩᏃᎲᏏ, ᏥᏌ ᎾᏍᎩᏉ ᎢᎦᎢ ᏕᏍᏓᎬᏩᎳᏁᎴ ᎾᏍᎩ ᎦᏙᎯ? ᎯᎠᏃ ᏄᏪᏎᎢ; ᎥᎥ, ᎾᏍᎩᏉ ᎢᎦᎢ.\n“ᏕᏓᏓᎪᎲᏳ! ᏧᎾᏛᏁᎢ.\nᏰᎵᏉᏍᎪ ᎣᏍᏓ ᏓᏥᏰᎸᏂ, ᎠᏎᏃ ᎤᏬᏚᎯ ᏃᎴ ᎠᏌᎹᏗ ᏥᎩ?” \nᎥᏝ ᏳᏃᎵᏤ ᎠᎦᏴᎵᎨ ᎦᏛᎬ ᎾᏍᎩ ᏕᎦᏬᏁᏗᏍᎬᎢ.\nᏣᎵ ᏃᎴ ᏧᏤᎵ ᏴᏫ ᏔᎵ ᏕᎨᏴ ᏓᏦᏍᎬ ᎤᏂᎵᏦᏩᏛ.\n“Ꭳ, ᎤᏙᎯᏳᎭᏗ ᏍᎩᎾᎾ ᏄᎵᏍᏔᏁᎢ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎠᏎᏃ ᏲᎾ ᎦᏙᎬ ᎾᎥ ᎠᏆᎴᏅ ᎠᏥᎸ ᏚᎸᏌᏛ, ᏱᎦᏁᎸᏓ, ᎦᏂᏍᏚᎩ ᏱᎨᏅ, ᏱᎦᏁᎸᏓ ᎢᏳᏍᏗ ᎢᏯᏆᏛᏁᏗ ᎨᏒ ᎢᎦᎵᏍᏕᎸᏙᏗ.\nᎠᏎᏃ ᎢᏗᎦᏔᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎣᏏᏳ ᎨᏒ, ᎢᏳᏃ ᎩᎶ ᎤᏙᎯᏳᎯᏯ ᏱᏓᎧᎿᏩᏕᎦ,\nᎠᏍᏔᏯ ᎾᎩᏪᏒ, ᎠᏯ ᏲᎦ ᏄᏓᎴ ᎾᏆᎵᏍᏓᏁᎰ.\nᎣᏍᏓ ᎾᏛᎦ.” \nᎤᏂᏁᏓᏥᏛᏃ ᏫᏙᏛᎾᏓᎡᏏ ᏗᎪᏢᏒ ᎠᏥᎸᏱ, ᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ.\nᎢᎦ ᏒᎮᏱᏣ ᏕᎦᎦᏎᏍᏗᏍᎬ ᎤᎾᏓᏅᎭᏂ ᏓᎾᏘᏃᎯᎲ ᏏᏓᏁᎸ ᏃᎴ ᏣᏂᎦᏴᎵ, ᏫᏓᏂᏴᏍᏗᏍᎬ ᎠᏦᎭᏴ, ᎾᏍᎩ ᎨᏥᏍᏚᏗ ᏄᎵᏍᏔᏅ.\nᎠᎴ ᎬᏍᏗᏰᏗᎭ ᎾᏍᏉ ᏂᎯ ᏂᏣᏠᎾᏍᏛᎾ ᎬᎩ Ꮎ ᏖᏆᎶᎯ, ᎬᎩ ᏍᏕᎸᏗᏱ Ꮎ ᎠᏂᎨᏴ ᎬᎩᏍᏕᎸᎯᏙᎸᎯ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎦᎵᏥᏙᏂᏙᎲ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎯᏯᏠᏯᏍᏔᏅᎭ ᎾᏍᏉ ᏞᎻᎾ ᎠᎴ ᎠᏂᏐᎢ ᎤᏠᏱ ᏦᎩᎸᏫᏍᏓᏁᎯ, ᎾᏍᎩ ᏚᎾᏙᎥ ᏥᏕᎪᏪᎳ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ.\nᎤᏟᏂᎩᏓ ᏏᏆ.\nᏂᎯᏰᏃ ᎡᏥᏁᎸᎯ ᎦᎶᏁᏛ ᎨᏒ ᎢᏳᏍᏗ, ᎥᏝ ᎡᏦᎢᏳᏗᏱᏉ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᎡᏥᎩᎵᏤᏗᏱ;\nᎠᎴ ᎢᎦᏛ ᏂᎯ ᎾᏍᎩ ᏂᏣᏍᏛᎩ; ᎠᏎᏃ ᎡᏦᏑᎴᎥᎯ, ᎠᏎᏃ ᎢᏣᏓᏅᏘ ᎢᏰᏨᏁᎸᎯ, ᎠᏎᏃ ᎡᏧᏓᎴᏛ ᎤᎬᏫᏳᎯ ᏥᏌ ᏚᏙᏍᏛᎢ, ᎠᎴ ᎬᏔᏅᎯ ᎢᎦᏁᎳᏅᎯ ᎤᏓᏅᏙ.\nᏏᎻᏯᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎷᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᎵᏫ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ ᎢᏏᎦ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᎳᏅᎩ.\nᏥᎪ ᏔᎵᏁ ᎣᏣᎴᏂ ᎣᎬᏒ ᎣᏣᏓᎸᏉᏗᎭ? ᏥᎪᎨ ᎠᏎ ᏫᏗᏨᏃᎮᏗ ᏃᎦᎵᏍᏓᏁᎭ, ᎪᏪᎵ ᎣᎩᎸᏉᏗᏍᎩ ᎩᎶ ᏥᏄᎾᎵᏍᏓᏁᎰᎢ, ᎠᎴ ᏂᎯ ᏗᏍᎩᏅᏁᎸᎯ ᏍᎩᎸᏉᏗᏍᎩ?\n“ᎤᏙᎯᏳᎦ ᎤᏗᎴᎦ?” ᎤᏛᏁ ᎠᎳᏂ.\nᎬᏂᏳᏉ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎢᎩᏰᎸᏐ ᏗᏅᏂᏗᏳ ᏥᎨᏐᎢ. ᎢᏣᏛᎦᏅ ᎬᏂᏗᏳ ᎨᏒ ᏦᏈ, ᎠᎴ ᎢᏥᎪᎲ ᏄᏍᏛ ᏭᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏣᏘ ᎤᏓᏅᏘᏳ ᎨᏒ ᎠᎴ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒᎢ.\nᏧᎵᏏᏅᏓ ᏙᏧᏒᎥᏍᎪ ᏗᏓᎨ ᏗᏰᎲᏍᏓᏅ Ꮓ … ᎰᏥᎦᏘᏗᏍᎪ ᏳᎦᎾᏬᏒ ᏙᏥᎦᎵᎯᏍᏗᏍᎪ.\nᏂᎦᏓᏗ ᎠᎾᎥ ᎠᏙᎯ ᏰᎵᏉ ᎦᏓ ᎢᏳᎵᏍᏙᏗ.\nᎯᎠ ᎾᏍᎩ ᏓᏔᎴᏒ ᎠᎹ-ᏗᏢᏗᏱ ᎠᎹ ᏂᏗᎦᏁᎲᎾ, [ᎠᎴ] ᎤᎶᎩᎸ ᎤᏃᎴ ᏧᏃᎸᏔᏂᏙᎰᎢ, ᎾᏍᎩ Ꮎ ᎬᎾᎨ ᎤᎵᏏᎬ ᏥᎨᎦᏛᏅᎢᏍᏓᏁᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ.\nᎤᏓᏅᏖᏙᏗ ᎤᏛᎴᎮ ᏫᎵᎻ, ”ᏰᎵ ᎠᎦᏓ ᎯᏌᎹᏗᏯ ᎠᏯ ᎨᏒᎢ ᏌᎳᏓ.\nᎠᎬᏱ ᎠᏓᏔᎶᎯ.\nᏰᎵ ᏧᏙᏓᏆᏓ ᏃᎴ ᏧᏒᎯᏓ ᏂᎬᎾᏛ ᎠᎾᏓᏏᏂᏙᎮ, ᏃᎴ ᎠᏂᏲᎵᎮ ᏫᎵᎻ, ᏓᏂᎾᏏᏂᏙᎮ ᏧᏂᏏᎳᏛᏙᏗ, ᏃᎴ ᎠᏂᎪᎵᏰᏍᎨ ᎠᏤᎯ ᎠᏂᏂᎩᎸ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎢᏨᎨᏳᎢ, ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᏥᏥᎦᏖᏃᎭ, ᎢᏣᏟᏂᎬᏏ ᎾᏍᎩ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏓᏅᏛ ᎢᏥᏩᏛᏗᏱ ᏄᏓᏓᎸᎾ ᎠᎴ ᎪᎱᏍᏗ ᏁᏤᎵᏎᎲᎾ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᏕᏥᏒᏁᎰᏰᏃ ᏧᏃᏑᎶᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎢᏣᏠᎾᏍᏛ ᎪᎯᏗᏳ ᎢᏣᏓᏙᎵᏍᏗᏍᎪᎢ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏟᎯᏳ ᎢᎦᎢ ᎢᏥᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ.\nᏂᎯᏍᎩᏂ ᎢᏤᎲ ᎥᏞᏍᏗ ᎾᏍᎩ ᏱᏂᏨᏁᏍᏗ; ᎩᎶᏍᎩᏂ ᎠᏥᎸᏉᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᏍᎨᏍᏗ, ᎾᏍᎩ ᎡᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ.\nᎨᏍᏗ ᏥᏚᏂᏲᏏᏍᎪᎢ ᏱᏅᏩᏍᏕᎢ.\nᏃᏉ ᎮᎾ!”\nᎾᏍᎩᏃ ᏭᏂᎷᏨ ᎤᎾᏓᏙᎵᏍᏔᏁ ᎨᎦᎵᏍᎪᎸᏓᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\nᎦᏙᏰᏃ ᏳᏁᏉᏥ ᏴᏫ, ᎢᏳᏃ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏤᎵ ᏱᏄᎵᏍᏔᏅ, ᎤᏩᏒᏃ ᎤᏓᏅᏙ ᏳᏲᎱᏎᎸ?\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏂᏣᏓᏁᏟᏴᏒᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᏗᏂᏲᎵ ᏥᏄᎾᏍᏗ ᏂᏣᎵᏍᏔᏅᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏴᎨᏥᏴᎭ.\nᎿᏉᏃ ᏌᏉ ᎢᏯᏕᏴᎵ ᏣᏥᏁᎸᎯ ᎤᎷᏨ ᎯᎠ ᏄᏪᏎᎢ; ᏍᎩᎾᏝᎢ, ᎬᎦᏔᎲᎩ, ᎯᏍᏓᏱᏳ ᎨᏒᎢ, ᎠᎴ ᎯᏍᎫᏕᏍᎬᎢ ᎾᎿ ᏂᏣᏫᏒᎾ ᎨᏒᎢ, ᎠᎴ ᎱᏖᏍᎬᎢ ᎾᎿ ᏂᏣᎴᎳᏛᏅᎾ ᎨᏒᎢ.\nᎩᎶ ᎢᏳᏍᏗ ᎡᎮ ᏧᏓᏚᎩ, ᎾᏍᎩ ᎠᏂᏔᎵ ᏧᏚᎩ ᎠᏁᎮᎢ; ᏏᏴᏫ ᎯᏍᎩᏧᏈ ᎠᏂᎩᏏ ᏧᎾᎬᏩᎶᏗ ᎠᏥᏚᎨᎢ, ᏐᎢᏃ ᎯᏍᎩᏍᎪᎯ.\n“ᎠᏯᎾ?” ᎤᏛᏛᏁ ᏦᎢᏁ ᎧᏅᏂᏍᎩ.\nᎾᏍᎩᏃ ᎤᏍᎦᏅᏨᎢ ᏧᎬᏩᎳᏅᎯ ᏥᎤᏩᎯᏍᏔᏁ ᏠᎨᏏ, ᎤᏙᎠᏒᏃ ᏧᏣᎷᏘᏎᎢ, ᎠᎴ ᏂᎦᏛ ᏧᎵᎩᏏ ᏥᏚᏄᎪᏤᎢ.\nᎿᏉᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᎤᏂᏣᏘ ᎠᏃᎯᏳᎲᏍᎩ ᏫᏚᏂᏯᏅᎲ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎥᏝ ᏚᏳᎪᏛ ᏱᎦᎩ ᎢᏳᏃ ᏱᏙᎩᏲᏍᎦ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎧᏃᎮᏛ ᏕᎦᏍᎩᎸᏃ ᏱᏙᎩᎸᏫᏍᏓᏁᎭ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏧᏏ ᎠᏉᎳ ᏧᏙᎢᏛ, ᎡᎵᎩᏱ ᎤᏛᏒᎯ, ᎠᏏᎾᏍᏛ ᎤᏬᏂᎯᏍᏗᏱ, ᎠᎴ ᏗᎦᎸᏉᏗ ᎪᏪᎵ ᏗᏏᎾᏍᏛ, ᎡᏈᏌ ᎤᎷᏨᎩ.\nᎢᏳ ᎠᎴ ᏦᏰᏂ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎯᏍᏆᎵᏍᎨᏍᏗ; ᎤᏟ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏣᎪᎳᏂ ᎬᏂᏛ ᏗᎨᏒ ᏱᏫᏣᏴᎸ, ᎠᏃ ᎢᏧᎳ ᏗᎨᎰᏯᏗ ᏨᏍᎩᏃ ᏱᏫᏣᏴᎸ, ᎾᎿ ᎠᏥᎸᏱ ᎦᎬᏜᏗᏍᏗ ᏂᎨᏒᎾ;\nᎠᎴ ᎦᎪ ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ ᏚᏂᏆᏘᎴᎢ? ᏝᏍᎪ ᎾᏍᎩ Ꮎ ᎤᏂᏍᎦᏅᏨᎯ ᏥᎨᏎᎢ, ᎾᏍᎩ Ꮎ ᏗᏂᏰᎸ ᎢᎾᎨ ᏥᏚᏅᏤᎢ?\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎯᎠ ᏄᏜᏏᏛᎡᏗ ᏂᎨᏒᎾ ᏥᎩ, ᏙᎯᏱᏉᏍᎩᏂ ᏱᏂᏣᏛᏅ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏁᎳᎩ ᏂᏣᏛᏁᎸᎾ ᏱᎩ.\nᏱᏚᎴᏅᎾ ᎤᎦᏔᎲᏒ ᏁᏂᏏ ᎤᎦᏆᎸᏂᎸ ᎤᎧᏛᎢ ᏍᏔᏯ ᎤᎵᏗᏨ ᎤᏬᏢ ᏔᎵ ᎢᏳᏩᎬᏗ, ᎤᏬᏰᏂ ᎣᎭᏁ ᎢᏣ ᎠᎬᏱ ᏃᎴ ᏔᎵᏁᎢ ᎠᎬᏱᏣ ᎤᏬᏯᏂ.\nᎠᎴ ᎾᏍᎩᏯ ᎢᏌᏯ ᎦᏳᎳ ᎯᎠ ᏥᏄᏪᏐᎢ, ᎢᏳᏃ ᏱᎰᏩ ᎤᏂᏣᏘ ᏧᏓᏘᎾᎢ ᏂᎩᏃᎯᏰᎸᎾ ᏱᎨᏎ ᎤᎵᏃᎯᏴᎯ, ᎾᏍᎩᏯ ᏱᏂᎦᏍᏕᎢ.\nᎾᎦᎸᎳᏗᏴ ᎤᏓᎾᏫᏛᎮ ᏫᎵᎻ.\nᏩᏯᎯ, ᏥᏃᎯᏎᎸ ᏲᎾ ᏂᎦᏓ ᏄᎵᏍᏔᏂᏙᎸ ᏧᎶᏒᎢ.\nᎠᏎᏃ ᏅᏙ ᏧᎧᎸᏨ ᎤᎴᏴᏎᎢ, ᏂᏚᎿᏍᏕᏢᎾᏃ ᎨᏒ ᎢᏳᏍᏗᎤᎿᏍᎬᏤᏉ.\nᎾᏃ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ, ᎤᏇᏓᎵ ᎤᏕᏔᏁᎢ; ᎾᏍᎩᏯ ᎾᏥᎾᏝᎥᎾ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏚᎢᏍᏛ ᎾᏍᎩᏯ ᎤᏕᏁᎢ.\nᏥᏌᏃ ᏚᏁᏤᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏣᏓᏅᏖᏍᎬᏍᎪ ᎯᎠ ᎾᏍᎩ ᎨᎵᎵ ᎠᏁᎯ ᏧᏂᎪᎾᏛᏔᏅᎯ ᎨᏎ ᎠᏂᏍᎦᎾᎯᏳ ᎨᏒ ᏂᎦᏛ ᎨᎵᎵ ᎠᏁᎯ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏥᏄᎾᎵᏍᏓᏁᎴᎢ?\nᎥᏝᏃ ᏱᏗᎬᏩᏓᏂᎸᏤᎢ, ᎤᏗᎦᎵᏍᏙᏗᏍᎨ ᏥᎷᏏᎵᎻ ᏥᏩᎦᏙ ᏅᏩᏍᏕᎢ.\nᎯᎠ ᏄᏪᏒᎩ; ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᎼᏏ ᎤᏪᏍᎩᎸ ᎠᏂᎾ;\nᎿᏉᏃ ᏆᏂᏆ ᏓᏌ ᏭᎶᏎ ᎤᏲᎸᏎ ᏐᎳ;\n”ᎤᎵᏬᏥᏕᎾ, ᏍᎩᎾᎾ ᏩᎶᏏ.”\nᎠᎴ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎢᏥᏔᏲᎯᏍᏗ ᎪᎳ ᎢᏣᎵᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᏐᏉ ᎠᎩᎬ, ᎣᏏᏉᏗ ᏥᏲᏎᎸ.\nᏃᎴ Philadelphia ᏓᏳᎶᏒ ᎠᏧᏣ ᏛᎤᏁᏨ South Street ᏳᏫᎦᎢᏎ ᎣᏍᏓ ᏯᎩᏰᎸ.\nᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏚᏙᎥ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᏓᎶᏁᏛ ᎦᎸᏉᏗᏳ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎯ ᎢᏨᏂᏌᏛ, ᎠᎴ ᏂᎯ ᎦᎸᏉᏗᏳ ᎢᏰᏨᏁᏗᏱ ᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏁᎳᏅᎯ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\nᏈᏥᏱᏃ ᎠᎴ ᏆᎢᏈᎵᏱ ᎢᏕᎯ, ᎢᏥᏈᏃ ᎠᎴ ᎵᏈᏱ ᏌᎵᏂ ᎤᏚᏫᏛ ᎢᏕᎯ, ᎢᎦᏙᎯᏃ ᎶᎻ ᎢᏕᎯ, ᎢᏗᏧᏏ ᎠᎴ ᎠᏂᏧᏏ ᏗᏓᎵᎪᏁᎸᎯ,\nᏲᎾ ᎢᏳᏍᏘ ᎡᎳᏗ ᎢᎦᏘ ᏣᎵ, ᎤᏟᏂᎩᏛ ᎦᏆᎵ ᏃᎴ ᏗᎦᎦᎶ, ᏧᏍᏆᎳ ᏗᎦᏅᏍᎨᏂ, ᎣᏍᏓ ᎤᎾᎷᎯᏍᏗ.\nᏧᏂᏍᏗ ᏓᎾᏦᎭᏱᎲ, ᏧᏂᏥ ᏓᏂᏖᎸᎮᏍᎬ ᏓᏂᏂᏒ, ᏗᏂᏅᏗ ᏫᏚᏂᎾᏓᏢ, ᎦᏳᎳ ᏧᏲᎯᏍᏔᏅ ᎤᏅᏗ ᎠᏓᏁᎮᏍᎬ.\nᎢᏳᏃ ᏱᏗᏃᎲᏍᎦ ᎢᎩᏍᎦᏅᏨᎢ, ᏄᏓᎵᏓᏍᏛᎾ ᎠᎴ ᎤᏓᏅᏘᏳ, ᎾᏍᎩ ᎢᎩᏁᏗᏱ ᎢᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎢᎩᏅᎦᎸᏗᏱ ᏂᎦᎥ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏗ ᎨᏒᎢ.\nᎨᏍᏗ ᎦᏚᎢ ᎾᎥᏂ ᏳᏓᏬᎠ.\nᎦᏣᏃᏍᏔ ᎦᏍᎩᎶᎩ ᎤᏬᏢ ᎦᎷᏯᏍᏗ ᎦᏟᎲ, ᎠᏳᎨᏂ ᎦᏁᏥ ᏩᏌᎲ.\nᎾᏍᏉᏰᏃ ᏱᎦᎵᏥᏙᎲᏍᎦ ᎣᏍᏛ ᎧᏃᎮᏛ, ᎥᏝ ᎪᎱᏍᏗ ᏯᎩᎭ ᎠᏆᏢᏈᏍᏙᏗ. ᎠᏎᏰᏃ ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗ ᏅᏋᏁᎸ; ᎥᎥ, ᎤᏲ ᎢᏯᏆᎵᏍᏓᏁᏗ, ᎢᏳᏃ ᎣᏍᏛ ᎧᏃᎮᏛ ᏂᎦᎵᏥᏙᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ.\nᎤᏂᎪᎲᎯᏃ ᎾᏍᏉ ᏚᏂᏃᏁᎴ ᏄᎵᏍᏙᏔᏅ ᎠᏂᏍᎩᎾ ᎬᏩᏯᎢ ᎠᏥᏅᏩᏅᎢ.\nᎤᏇᏓᎸ ᎬᏗᏍᎬ ᎤᏛᏔᏅ ᏗᏓᏓᏍᎦᎩ ᎢᎬᏁᎯ, ᎾᏍᎩ ᏯᏛᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎵᏁᏨᎢ ᏧᏓᎴᏅᏛ ᎢᏯᏛᏁᎵᏓᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎠᏂᏔᎵ ᎨᏒ ᏌᏉ ᎢᏤ ᏴᏫ ᎤᏬᏢᏗᏱ ᎤᏩᏒ ᎢᏳᏩᏂᏐᏗᏱ, ᎾᏍᎩᏃ ᏙᎯ ᎢᏳᏩᏁᏗᏱ;\nᎨᏍᏗ ᎯᎸᎯᏳ ᎤᏓᏅᏘ ᏱᏂᏍᎩᏪᏎᎰ, ᎠᏎ ᎤᏲ ᏂᏍᎩᏪᏎᎰ ᏃᎴ ᏍᎩᏯᏕᎰᏗᏍᎪ.\nᏧᎾᏛᎾ ᎤᏍᎦᏃᎵ ᏭᎾᎩᎸᏁ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ. ᎤᏛᎦᏁ ᏫᎵᎻ ᎤᏅᏫᏍᏗᏍᎩ ᎤᏃᏴᎬ ᏃᎴ ᎤᏛᎦᏁ ᎠᏂᎩᏍᎬ ᎤᏍᎦᏃᎵ.\nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏚᎴᏔᏁ ᎤᏲᏞᏒᎢ.\nᎩᎶ ᏥᎦᏔᎭ ᎠᏗᏍᎩ, ᎠᏎᏃ ᏂᏚᏍᏆᏂᎪᏛᎾ ᏱᎩ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎦᏰᎪᎩ ᎠᎴ ᎤᏙᎯᏳᎯ ᎨᏒ ᏄᏪᎲᎾ.\nᎠᏌᎻᏓ ᎤᏚᎸᎲ ᏁᎳᎩᏉ ᎤᏬᏎᏗ.\nᎾᏍᎩ Ꮎ ᎠᎩᏍᎦᎩ ᎠᏴ, ᎾᏍᏉ ᎠᏍᎦᏱᏳ ᎨᏐ ᎡᏙᏓ.\nᏥᏳᏃ ᏔᎵ ᏚᎪᎮ ᎥᏓᎷᎶᏗ ᏓᏔᎴᎢ; ᎠᏂᎦᏯᎷᎥᏍᎩᏍᎩᏂ ᎤᎾᏣᎢᏛ ᎨᏎᎢ, ᎠᎴ ᏓᏅᎩᎶᏍᎨ ᎫᏂᎦᏯᎷᏗ.\nᎼᏏᏰᏃ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᏚᎾᏄᎪᏫᏎᎸ ᏴᏫ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ, ᏩᎦ ᎠᏂᎩᎾ ᎤᏂᎩᎬ ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᎩᎬ ᎤᏁᎩᏎᎢ, ᎠᎴ ᎠᎹ ᎠᎴ ᎤᏩᏅ ᎩᎦᎨᎢ, ᎠᎴ ᏗᏐᏈ, ᏚᏍᏚᏞᏃ ᎪᏪᎵ ᎠᎴ ᎾᏂᎥ ᏴᏫ.\nᎠᏓᏅᏙᏍᎩᏂ ᎠᏓᏛᏂᏗᏍᎩ; ᎤᏇᏓᎵ ᎥᏝ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ. ᎧᏃᎮᏛ ᎠᏴ ᏥᏨᏬᏁᏗᎭ ᎾᏍᎩ ᎠᏓᏅᏙ, ᎠᎴ ᎾᏍᎩ ᎬᏂᏛ.\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ; ᏗᎨᎦᏨᏍᏙᏗᏱ ᎠᏛᏅᎢᏍᏗ, ᎠᏎᏃ ᏫᎨᏥᏯᏅᏛ ᎥᏝ ᏰᎵ ᏱᎾᏃᏎ ᎤᏂᎷᎯᏍᏱ.\nᎠᏂᎫᎾᏓᎴᎩ ᏃᎴ ᏧᏂᏍᏔᏩᏕᎩ, ᎤᎩᏓᏟᏅᏯ ᎨᎵ, ᏚᎾᎴᏫᏍᏔᏁᎸ ᏎᎬ, ᎠᏎᏃ ᏏᏛ ᏱᎪᎰᏍᎬᎾ ᎦᎷᏯᏍᏗ, ᏚᏄᎪᏔᏅ ᎢᎫᏩᎾᏛᏁᏗ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏅᏌ ᏓᏅᎭᏅ ᏃᎴ ᏧᎬᏩᏟ.\nᎠᏏᏴᏫᏍᎩᏂ ᎠᏯᏫᏍᎩ, ᏗᏓᏖᏍᏗ ᎤᏪᏘᏍᏔᏅᎩ ᎠᏍᏉᎨᏂ, ᎩᎳᏉᏃ ᎢᏴᏛ ᎾᎿ ᏓᏳᏨᏨᎩ ᎩᎬ ᎠᎴ ᎠᎹ.\nᎥᏝᏰᏃ ᎪᎱᏍᏗ ᎤᏕᎵᏛ ᏱᎩ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏂᎨᏒᎾ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏱᎬᏍᎦᎸ ᎾᏍᎩ ᎠᎦᏙᎥᎯᏍᏗ ᎠᎴ ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᏂᎨᏒᎾ.\n“ᎤᏃᎴ ᎠᏲᏙᏗᎨ ᏱᏍᎩᎾᎩᎢ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᏂᎯ ᎢᏨᏁᎸ?”\nᎨᏍᏗᏗ ᎠᏯ ᏱᎬᎩᏃᎮᏍᎨ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎩᎶ ᎤᏙᏑᎵᏌᏛ ᏥᎨᏐᎢ ᏧᎳᏏᏕᏂᏉ ᏧᏩᏒ ᏧᏬᏑᎴᏗ ᎨᏐᎢ; ᏂᎬᏃ ᎤᏓᏅᎦᎸᏛ ᎨᏐᎢ. ᎠᎴ ᏂᎯ ᎢᏣᏓᏅᎦᎸᏛ, ᎠᏎᏃ ᎥᏝ ᏂᏥᎥ ᏱᎩ.\nᎢᏣᏕᎶᏆᏃ ᏒᎦᏔ-ᎢᏳᏍᏗ ᏡᎬ ᏓᏟᎶᏍᏛᎢ; ᎤᏩᏂᎦᎸ ᎿᏉ ᎤᏓᎨ ᏂᎦᎵᏍᏓ, ᎠᎴ ᏥᎦᎵᏍᏚᎲᏍᎪᎢ, ᎢᏥᎦᏔᎰ ᎪᎩ ᎾᎥᏂᏳ ᎨᏒᎢ;\nᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎯᎠ ᏄᏪᏎᎢ; ᎾᏍᎩᏍᎪ ᎤᏃᎯᏳᎯ ᏄᏍᏗ?\nᏥᏍᏆᏙᎾ ᎠᎩᎾᏕᎬ ᎯᎪ ᎤᎵᏏᏂᏕᏅ.\nᎠᏎᏃ ᏗᎾᏓᏂᏱᏍᎩ ᏭᏂᎷᏨ ᏫᏚᎾᏠᏤ ᏗᏓᏍᏚᏗᏱ, ᏗᎤᎾᏨᏒᏃ ᎤᏂᏃᏁᎢ,\nᎾᎪᏔᏅᎾᏃ ᎦᏚ ᎠᎩᏍᏗᏱ ᎨᏒ ᎤᎶᏐᏅ, ᏈᎵᎩᏱ ᏥᏳᎯ ᎣᎦᏣᏅᎩ, ᎯᏍᎩᏃ ᏫᏄᏒᎸ ᏠᎠᏏ ᏫᏙᏥᏩᏛᎲᎩ; ᎾᎿᏃ ᎦᎵᏉᎩ ᏧᏒᎯᏛ ᎣᎨᏙᎸᎩ.\nᏂᎯ ᎣᎯᏍᏙᏗ ᎩᎾᎵᎢ ᏃᎴ ᏂᎯ ᏭᎬᏫᏳᏒ ᎣᏍᏓ.\nᏃᎴ ᎨᏍᏗ ᏂᎯ ᏂᏣᏁᎩᏴ ᎤᏓᏅᎦᎸᏓ ᏱᎩ.\nᏃᏗ ᎤᏓᏄᎸ ᎢᏳᏍᏗ ᎠᏦᏴ ᎾᎥᏂ ᏚᎾᎴᏁ ᏣᏄᏏ ᏃᎴ ᎰᎻ. ᎦᎾᏍᏗ ᎬᏗ ᏚᏣᎪᏎ ᎦᏐᎯ ᏫᎵᎻ.\n”ᎡᎭ!\nᎤᎶᏐᏅ, ᏩᏏᏓᏂ ᏚᏇᏍᏘ ᎦᏅᎯᏓ ᎬᏘ ᏓᏲᎯᎮ ᏕᏧᎬ ᎤᎾᎩᎸ, ᎤᏇᏓᏢ ᎦᏁᏥ ᏃᎴ ᎤᏍᏉᏟ ᎤᎵᏍᏗ ᏄᏩᏁᎮ ᎠᏦᏔᏍᎬ ᏃᎴ ᏑᏓᎵ ᎢᎦ ᏩᏁ ᏗᎪᏒᏔᏅ ᏗᏲᏍᏙᏗ ᏗᎩᎦᎭ ᏂᏕᎦᎵᏍᏗᏍᎨ.\n“ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎤᏒᎯ ᎤᏴᏣ ᏱᏄᎵᏍᏔᎾ, ᎾᎥᏂ ᎦᏅᎨ ᎠᏛᎵᏍᎬ ᎬᏗ ᎠᎦᎾᏬᏗᏍᎨᎢ.\nᎠᎦᏴᎵᎨᎢ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎠᏍᎦᏯ ᎤᏪᏥ, ᎠᎦᏅᎩᏃ ᎠᏍᎦᏯ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏙᏓ; ᎠᎴ ᎠᎨᏴ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎠᎨᏴ ᎤᏪᏥ, ᎠᎴ ᎠᎦᏅᎩ ᎠᎨᏴ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏥ; ᎤᏦᎯᏃ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏓᏦᎯᏯ, ᎠᎴ ᎤᏓᏦᎯᏯ ᏔᎵ ᏄᎾᏓᎡᏍᏗ ᎤᏦᎯ.\nᎠᏏᏴᏫᏰᏃ ᏴᏫ ᏄᏬᎯᏳᏅᎾ ᎨᏒ ᎢᏳᏩᏂᏌᏛ ᎤᏂᏣᏘ ᎠᏂᏍᎦᎾ ᏥᏄᎾᎵᏍᏔᏅ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏏᏴᏫ ᎤᏬᎯᏴᏅ ᏅᏓᎦᎵᏍᏙᏔᏂ ᎤᏂᏣᏘ ᎠᏂᏍᎦᎾ ᏂᎨᏒᎾ ᏅᏛᎾᎵᏍᏔᏂ.\nᎰᏩᏃ ᎤᎩᏨᏛ ᎤᏣᏘ ᎤᎾᏣᏅᎯ ᎤᏂᎷᏨ ᎡᎩᎵᏈ ᎠᎴ ᏆᏂᏏ, ᎾᏍᎩᏃ ᏗᏓᏱᎵᏓᏍᏗᏱ ᎤᏂᏴᎸ, ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᏗᎾᏓᏘᏂᏙᎯ, ᎠᎴ ᎨᏥᎸᏉᏗ ᎾᎿ ᎦᏚᎲ ᎠᏁᎯ, ᏇᏍᏓ ᎤᏁᏨ, ᏉᎳ ᏩᏥᏯᏅᎲᎩ.\nᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᎢᏳᏃ ᏂᎯ ᎨᏎᏍᏗ, ᏍᎩᏁᏥ ᏫᎬᎷᏤᏗᏱ ᎠᎹᏱ ᎦᏚᎢ.\nᎤᎵᏰᏔᏁ ᏫᎵᎻ.\nᎣᎭᏁ ᎦᏙᎬ, ᎭᏂᏨ ᏫᏓᎧᏅ.\nᏃᎴ ᏔᎵᏁᎢ ᏚᎧᏔᏍᏔᏁᎢ ᎦᏂᎦᏔ ᎡᎹᏂᏓ.\nᎠᏆᏏᏅᏌ ᎭᎴᏉ ᏂᏥᏯᏓᎩᏅᏔᏅ ᎠᏌᎢᏂᏓ.\nᎪᏪᎵᎯᏰᏃ ᎯᎠ ᎾᏥᏪᏎ ᏇᏓᏲ, ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏕᎬᏯᎴᏔᏅ, ᎾᏍᎩ ᎠᎩᎾᏄᎪᏫᏍᏗᏱ ᎠᏆᎵᏂᎩᏗᏳ ᎨᏒ ᏂᎯ ᎬᏴᏗᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏓᏆᏙᎥ ᏧᏃᏣᎶᎢᏍᏗᏱ ᎡᎶᎯ ᏂᎬᎾᏛᎢ.\nᎧᏁᏍᎬ ᎭᏫᏂᏣ ᎤᏗᏍᎦᏞᎢ ᏧᏍᏆᏴᏍᏗ.\nᎥᏝᏰᏃ ᏯᎦᏔᎮ ᎢᏳᏪᏍᏗᏱ; ᎤᏣᏖᏰᏃ ᎠᏂᏍᎦᎢᎮᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᏨᎯᎠ ᏄᏪᏎᎴᎢ; ᎠᏴ ᎨᏈᎵ, ᏥᏥᏙᎪ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ; ᎠᎴ ᏨᎩᏅᏒ ᎬᏯᎵᏃᎮᏙᏗᏱ, ᎠᎴ ᎬᎾᏄᎪᏫᏎᏗᏱ ᎯᎠ ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ.\nᏍᎩᏃ ᎢᏴ ᏧᏕᎶᎰᏎ ᏤᎩᏏᏂ ᎤᏁᏨ ᏣᏥᎴᎢ ᎠᏫᎾ ᎠᏲᏍᎩ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎥᏝ ᎿᏉ ᏄᏣᏓᎴ, ᎠᎴ ᎢᏤᏙᎯᏉ ᏱᎩ, ᎤᎾᏓᏅᏘᏍᎩᏂ ᎢᏧᎳᎭ ᎢᏤᎯ, ᎤᏁᎳᏅᎯ ᎦᏓᏘᎾᎥ ᎢᏖᎳ;\nᎢᏨᏒ ᎨᏒ ᏕᏣᏓᏲᎵᎮᏍᏗ ᎢᏨᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏗᏓᏙᏪᏙᎥᎯᏍᏗ ᎨᏒᎢ. ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎦᎶᏁᏛ ᏧᏤᎵᎦ ᏫᎨᏥᏲᎵᎭ.\nᎤᏁᎳᏅᎯ ᎤᎵᏍᎦᏍᏙᏛᎩ; ᎿᏉ ᏭᏍᏕᎸ ᎢᏳᏃ ᎤᎸᏉᏕᏍᏗ; ᎯᎠᏰᏃ ᏥᏂᎦᏪᏍᎬᎩ, ᎤᏁᎳᏅᎯ ᎡᏙᏓ.\nᏐᏚᎯ ᏔᎵᏚ ᏩᏍᏗ ᏙᏱᏨ ᎤᎴᏗ ᏛᎦ ᏧᎦᏙᏍᏙᏗ, ᏩᏚᎵᏏ ᏃᎴ ᏦᏕᏆᏠᏥ ᏧᎦᏙᏍᏙᏗ ᎠᏂᏃᎯᎵᏙᎲ ᎤᏓᏅᏖᎴ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᏪᎵᏍᎩ ᎠᎴ ᎢᏥᏆᎵᏏ ᎢᏣᏠᎾᏍᏗ! ᎠᏍᎪᎯᏁᏰᏃ ᎢᏣᎫᏱᏍᎪ ᏒᏟ ᎠᎴ ᎡᏒ ᎠᎴ ᎦᎻᏂ; ᏕᏥᏃᎯᏯᏍᎪᏃ ᎤᏟ ᎤᎵᏍᎨᏛᏯ ᎨᏒ ᏗᎧᎿᏩᏛᏍᏗ, ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏙᎵᏍᏗᏱ, ᎠᎴ ᎪᎯᏳᏗᏱ. ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏱᏂᏣᏛᏁᎴᎢ, ᎠᎴ ᏐᎢ ᏂᏥᏃᎯᏴᎾᏉ ᏱᎨᏎᎢ.\nᏔᎵ ᎢᎦ ᎤᏯᎷᎦ ᏗᎬᏔᏅ ᏗᎦᏎᎾᎵ ᏓᏓᏁᎸ ᏚᏅᏏᏴ ᎠᏦᎭᏴ, ᎤᎾᏗᏍᎦᎶᏗ ᏗᏂᏍᏔᏲᎯ ᏧᏂᎦᏘᎴᎩ.\nᏗᏃᏪᎵᏍᎩᏃ ᎠᎴ ᎠᏂᏆᎵᏏ ᎬᏩᏯᏫᏍᎨᎢ, ᏥᏌ ᎬᏩᏓᏅᏬᏗᏉ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎠᏁᎵᏍᎨᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏩᏄᎯᏍᏙᏗ ᎤᏂᏲᎮᎢ.\nᎬᏩᏃᏁᎴᏃ ᎾᏍᎩ ᏥᏌ ᎾᏎᎵᏗ ᎡᎯ ᎦᎶᏍᎬᎢ.\nᎠᎴ ᏗᎦᏓᎭ ᏗᏓᏅᏙ, ᎢᏳᏃ ᎬᏩᎪᏩᏛ, ᎡᎳᏗ ᎬᏩᏓᏅᏁᎮ, ᎠᎴ ᎠᏁᎷᎲᏍᎨ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᏂᎯ.\nᏧᏂᎦᏐᎠᏏᏗᏒᏃ ᎣᏓᎸᎢ ᏥᏌ ᏚᏅᏍᏓᏕᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ ᎩᎶ ᎡᏥᏃᏁᎸᎭ ᎾᏍᎩ ᏥᏥᎪᏩᏛ ᎬᏂ ᏴᏫ ᎤᏪᏥ ᎤᏲᎱᏒ ᏚᎴᏁᏍᏗ.\nᎤᏒᎮᏱᏣ ᎦᏲᏟᎨ ᎤᏗᎴᎨ ᏂᎦᏓ ᏚᎾᏓᏂᎸᏤ.\nᏰᎵ ᎡᏆ ᎤᏛᏎ.\nᎤᏪᎷᏁᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏥᏌ, ᏕᏫ ᎤᏪᏥ, ᏍᎩᏙᎵᎩ.\nᎤᎧᏔᎲᏎ ᎤᎦᏛᎲᏍᎬ ᏳᏍᏓᏩᏕ ᎠᏍᏕᏯᏓ ᎤᏂᏱᏍᎩ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎦᎵᏍᏗᏍᎨ ᎦᏆᎵᎢ, ᏔᎵᏁ ᏭᏕᎶᎰᏌ, ᏭᏅᏥᎴ.\nᏴᏫᏃ ᎤᎾᏙᎴᎰᏒ ᎬᏩᏍᏓᏩᏛᏎᎢ; ᎠᎴ ᏚᏓᏂᎸᏤᎢ, ᏚᏁᎢᏍᏓᏁᎴ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎠᎴ ᏚᏅᏩᏁ ᎤᏚᎸᏗ ᎢᏳᎾᎵᏍᏓᏁᎯ ᏗᎨᏥᏅᏬᏗᏱ.\nᎯᎠᏰᏃ ᎠᏯᏔᏍᏗ ᎨᏒ ᎢᏥᏅᎯ, ᎥᏝ ᎤᎾᏓᏅᏘ ᎤᏂᏂᎬᏎᎲ ᎠᎧᎵᎢᎯ ᎤᏩᏒ ᏱᎩ, ᎾᏍᏉᏍᎩᏂ ᎤᏣᏘ ᎤᎾᎵᎮᎵᏤᏗ ᎤᏁᎳᏅᎯ ᏂᎬᏁᎭ;\nᎤᏣᏘ ᎪᎱᏍᏗ ᎠᎩᎭ ᎢᏨᏲᏎᏗ, ᎠᎴ ᏗᏨᏳᎪᏓᏁᏗ; ᎠᏎᏃ ᏅᏛᎩᏅᏏᏛ ᏚᏳᎪᏛᎢ; ᎠᏴᏃ ᎡᎶᎯ ᏥᏃᎮᎮᎭ ᎾᏍᎩ ᏄᏍᏛ ᏥᏯᏛᎦᏁᎸᎢ.\nᎿᏉᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏚᎾᏓᎧᎿᏅᎩ ᎤᎾᏠᎬᎩ ᎾᏍᎩ ᎠᏥᏛᎦ ᎤᏁᎵᏍᏗᏱ.\nᎠᎴ ᎿᏉ ᎤᎴᏅᎮ ᎾᏍᎩ ᎯᎠ ᏚᏟᎶᏍᏓᏁᎴ ᏴᏫ; ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏖᎸᎳᏗ ᏚᏫᏎᎢ, ᎠᎴ ᏚᏙᎳᏍᏔᏁ ᏠᎨᏏ ᏭᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎢᏅ ᏭᎶᏎ ᎪᎯᏛ ᏭᏪᏙᎴᎢ.\nᎠᏎᏃ ᏧᏂᏍᏗ, ᏧᏂᏯᏪᏨ ᎠᎾᏔ ᏃᎴ ᎬᏂᎨ ᎤᏍᎪᎸ ᎤᏂᏍᏘᏰᎩ ᏣᏂᎦᏴᎵ ᏧᏬᏘᏓ ᏓᏂᏰᏌᏛ ᏳᏂᏐᏯᏍᏗ, ᏃᏉ ᎠᎵᏓᎩᏛ ᏱᎩ ᎤᏍᎦᏎᏗ ᏃᎴ ᏯᎫᏚᎬᎾ.\nᎡᏐᏏᏃ ᎣᎩᏩᏛᎲ ᎣᏥᏴᏔᏅᎩ, ᎠᎴ ᎻᏗᎵᏂ ᏬᎩᎷᏨᎩ;\nᏂᎦᏓ ᎠᏂᎦᏔᎲ ᏩᏏᏓᏂ ᎦᎳᎱᏂ ᏃᎴ ᏤᎩᏏᏂ ᎢᏧᎳ ᏧᎾᏛᏐᏅ, ᏥᏔᎦ ᎠᏂᏨᏯ ᏗᎾᏟ ᎢᏳᏂᏁᎫᏥᏓ ᎨᏒ, ᎢᏧᎳ ᏧᎾᏓᎯᏍᏗ ᎤᎾᏚᎵᏍᎩ.\nᎯᎠ ᎾᏂᏪᏍᎨᎢ. ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏱᎰᏩ ᏚᏙᏍᏛ ᏥᎦᎷᎯᏍᏗᎭ; ᎦᎸᎳᏗ ᏅᏩᏙᎯᏍᏛ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎨᏒᎢ!\nᎢᏳᏃ ᏱᏗᏗᏂᏱᎭ ᏴᏫ ᎤᏂᏃᎮᎸᎯ, ᎤᏁᎳᏅᎯ ᎤᏃᎮᎸᎯ ᎤᏟ ᎦᎸᏉᏗᏳ; ᎯᎠᏰᏃ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏃᎮᎸᎯ, ᎾᏍᎩ ᎤᏁᎢᏍᏔᏅᎯ ᏥᎩ ᎤᏪᏥ.\n”ᎡᎶᏗᎩ?” ᎤᏦᏱᎴ ᏫᎵᎻ.\nᎤᎪᏏᏓ ᎢᏗᎬᏁ ᏂᎦᏓ ᎦᏓ ᏂᏗᎬᏁᎵ.\nᏈᎵᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏣᎬᏫᏳᎯ, ᏍᎩᎾᏄᎪᏫᏏ ᎠᎦᏴᎵᎨᎢ, ᎿᏉᏃ ᏰᎵᎦ ᏓᏲᏥᏰᎸᏂ.\nᏐᏉ ᎤᏍᏗ ᎠᏓᏪᎳᎩᏍᎬ ᎤᏃᏛ ᏧᎾᏦᎯᏍᏗ, ᏌᎪᏂᎨ ᏃᎴ ᏓᎶᏂᎨ ᏓᏓᏪᎳᎩᏍᎬ ᏩᏁ ᏃᎴ, ᏘᎵ ᏚᏅᏛ.\nᎠᏆᏘᎾᏫᏛᎲᎩᏃ ᏗᏆᏓᏅᏛ ᎡᏆ ᎠᎴ ᎢᏅ ᎢᎦᏘ ᏦᏓᎸᎢ ᏩᏆᏘᏅᏍᏔᏅᎩ, ᎠᎴ ᎠᎩᎾᏄᎪᏫᏎᎸᎩ ᎾᎡᏆ ᎦᏚᎲᎢ, ᎾᏍᎩ ᎦᎸᏉᏗ ᏥᎷᏏᎵᎻ, ᎡᎳᏗ ᏅᏓᏳᏍᏗᏗᏒᎩ ᎦᎸᎳᏗ ᎤᏁᎳᏅᎯᏱ ᏛᏓᎴᎲᏍᎬᎩ.\nᎾᏍᎩᏃ Ꮎ ᎦᏚ ᏧᏂᎬᎯ ᎯᏍᎩ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎾᏂᎡ ᎾᏂᎡ ᎠᏂᏍᎦᏯ.\nᎠᎴ ᎥᏞᏍᏗ ᎩᎳᎢ ᎤᎵᎪᏃᏅᎯ ᏱᎨᏎᏍᏗ, ᎠᏢᏉᏙᏗᏰᏃ ᎨᏒ ᏯᎵᏌᎳᏙᏓ ᎾᏍᎩᏃ ᎤᏍᎦᏅᏨᎯ ᎨᏒ ᏱᏚᏚᎪᏓᏏ ᎾᏍᎩᏯ ᎠᏍᎩᎾ ᏚᏚᎪᏓᏅᎢ.\nᎢᎸᎯᏳ ᏛᏍᏆᎸᎯ ᏴᏫ ᎤᏪᏥ ᏓᎦᏂ ᎠᎦᏘᏏᏗᏢ ᎤᎵᏂᎩᏛ ᎤᏁᎳᏅᎯ ᎤᏬᎸᎢ.\nᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎢᏣ ᎦᏚᏏ ᏫᎦᏅᏅ ᎨᏍᏗ ᏅᏯ ᎬᏗ ᏯᏰᏍᏓᎡ, ᎬᏂᎨ ᏌᏬᏚ ᏄᏍᏛ, ᏗᎦᏆᏙᏗ ᎢᎦᏘ ᏌᏬᏚ ᎨᏒ, ᎦᏚᏏ ᎦᏝᏛ ᎢᏣ ᏩᏂᎶᏍᎬ, ᎠᏤᎯ ᎦᏓᎷᎦᏅ ᎢᏳᏍᏗ ᏫᏚᏓᏍᏔᏅᏅ ᏓᏆᎴᎳ ᏫᏚᎶᏒ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏗᏂᎳᏅᏴᎯᏓ ᏭᏂᎶᏒ ᎬᏂᎨᏒ ᎨᏒ ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎢᏳᏓᏅᎯᏓ.\nᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᏂᏗᎾᏰᏍᎬᎾ ᎠᎴ ᎦᏰᏗᎷᏤᏗ ᏄᎵᏍᏔᏅ ᏔᎵ ᎤᏛᏗ ᎡᏓᎵᏍᎦᏍᏙᏛ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎡᏙᎢᏳᏒᎢ.\nᏃᏗ, ᏳᏬᏢᏌ  ᏧᏍᏆᏴᏍᏗ, ᎩᎳ ᎠᎵᏍᏓᏴᎲᏍᎨ ᏫᎵᎻ.\nᏙᏳ ᎣᎯᏍᏗᏳ ᏧᏪᎳ ᏧᎸᏉᏗ ᏥᎨᏎᎢ ᎠᏂᏣᎳᎩ ᏗᏂᏲᏟ ᏚᏂᎸᎢ!\nᎩᎶᎨ ᎠᏓᏅᏖᎭ ᎠᏤ ᎢᎦᏪᏍᏗ?”\n”ᎲᎦ ᎢᎦ ᏓᏓᏥᎬᏩᎶᏔᏂ? ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᏔᏕᏲᎲᏍᎩ, ᎯᎠ ᎠᎨᏴ ᎠᏓᏲᏁᎲ ᏕᎦᏅᎬᎢ ᎠᏥᏂᏴᎲᎩ.\nᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ ᎤᎾᎩᎸ ᎠᎬᏱᏣ ᎤᎴᏫᏍᏔᏁᎢ.\nᏌᏊᏃ ᏌᎾᎴ ᎤᎵᏍᏚᎩᏒᎩ.\nᎤᎩᏨᏛ ᎤᏂᏣᏛᎩ ᏴᏫ ᏗᎵᏍᏓᏴᏗᏱ ᎤᏂᎷᏨᎯ, ᎤᎾᏛᎦᏅ ᏥᎷᏥᎵᎻ ᏗᎦᎷᏥᏒᎢ,\nᎾᎿᏃ ᎾᎥ ᏚᎶᎨᏒᎩ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏯ ᎾᎿ ᎠᎹᏰᎵ ᎤᏪᎧᎲᎢ, ᏆᏟᏯ ᏧᏙᎢᏛ; ᎾᏍᎩ ᏙᎦᏓᏂᎸᏨᎩ, ᎠᎴ ᏦᎢ ᏧᏒᎯᏛ ᎤᏙᎵᏍᏙᏌᏳ ᎣᎩᏍᏆᏂᎪᏔᏅᎩ ᎦᏁᎸᎢ.\nXVI. ᏗᎾᏓᎪᎾᏗᏍᎬ ᎡᏅᏍᏗ  \nᏍᎩᏂᎩᎸᏍᏔᏅ ᎾᎦᎸᎳᏗᏴ ᎤᏤᎸᎲ ᏃᎴ ᎤᏓᏅᏖᏗ ᎠᎵᏍᎬ ᎣᎦᏓᏓᏍᎬ.\nᎿᏉᏃ ᎠᏥᎸ-ᎨᎶᏎᎯ ᏧᏈᏓ ᎾᏍᎩ ᎦᏚᎲ ᎢᎬᏱᏗᏢ ᎪᏢᏒᎢ, ᎦᎶᎯᏍᏗᏳᎶᏗ ᏚᏘᏃᎴ ᏩᎦ ᎠᎴ ᏗᎪᏛᎢᏛ ᎤᏂᏥᎸᏅᎯ ᏕᎤᏃᎴᎢ, ᎾᏍᎩ ᎤᏩᏒ ᎠᎴ ᎤᏂᏣᏘ ᎨᏒ ᎠᏥᎸ-ᎤᏁᎳᏍᏗᏱ ᎤᏰᎸᏎᎢ.\nᎠᎴ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏗᏤᎷᎩ ᏗᏂᏁᎯ ᎤᎾᏛᏅᎢᏍᏔᏅᎩ ᏧᏂᏃᏴᎵᏍᏙᏗᏱ.\nᏫᎵᎻᏰᏃ ᎤᏑᎸᏓ ᎯᎩᏍᎪ, ᏧᏍᏆᏴᏍᏗ.\nᏔᎵᎭ ᏧᏕᏘᏴᏓ ᏱᎦᎷᏣ, ᏗᏂᏳᎨᏂ ᎢᏴ ᏱᏚᎾᎭᏄᏩ.\nᎠᏎᏃ ᎾᏍᎩᏯ ᏄᎾᎵᏍᏓᏁᎸ ᎯᎠ ᎤᏙᎯᏳᎯ ᎢᎦᏪᏛ ᏥᎩ, ᎩᎵ ᎤᏩᏒ ᏚᎵᎦᏍᏔᏅ ᏔᎵᏁ ᏮᎠᎦᏔᎲᏍᏓ; ᏏᏉᏃ ᎠᎪᏑᎴᎥᎯ ᎤᏓᏬᏍᏗᏱ ᏝᏬᏚᎯ ᏮᎠᎦᏔᎲᏍᏓ.\nᏗᏁᎶᏗᎩ?\nᎠᏂᏍᎦᏯ ᎨᏍᏗ ᎧᏅᏂᏍᎩ ᎾᏂᏏᎾᎲ ᏯᏂᏏᎾ, ᎠᏎᏃ ᎠᏂᏏᎾᏌᏂ ᎠᏁᎵᏍᎪ, ᎢᏳᏍᏗᏉ ᎨᏒ ᏯᎾᏁᎸᏓ.\nᎾᎨᎢᏴ ᏭᏓᏏᏃᎴ ᏫᎵᎻ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᏃᎴ ᎦᏓ ᏭᎶᏘᎴᎢ ᏥᏍᏕᏥ ᎤᏁᏍᎩᎸ, ᎤᏭᏌᏁ ᎤᏲᏨ ᎤᏪᏥ ᏃᎴ ᏂᎦᏓ ᎤᎾᎥ ᏧᏍᏆᏴᏍᏗ.\nᏂᎦᎥᏍᎩᏂ ᏕᏡᎬ ᎣᏍᏛ ᎾᎾᏓᏛᏍᎬᎾ, ᏗᎦᎴᏴᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏥᎸᏱ ᏫᏓᏗᏅᏗ.\nᏈᎵᎩ ᎤᎷᏨᎩ ᎠᎴ ᎡᏂᏗ ᏭᏃᏁᎸᎩ; ᎿᏉᏃ ᎡᏂᏗ ᎠᎴ ᏈᎵᎩ ᏥᏌ ᏭᏂᏃᏁᎸᎩ.\nᎠᏎᏃ ᎬᏩᏟᏍᏗ ᎪᎱᏍᏗ ᎠᏆᏢᏈᏍᏙᏗᏱ ᎤᏩᏒᏍᎩᏂᏃᏅ ᏓᏓᎿᏩᏍᏛ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏥᏅᏗᎦᎵᏍᏙᏗᎭ, ᎾᏍᎩ ᎡᎶᎯ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅᎯ ᏥᎩ ᎠᏴ ᎨᏒ ᎢᏗᏢ,ᎠᎴ ᎠᏴ ᎥᏆᏛᏅᎯ ᏥᎩ ᎡᎶᎯ ᎨᏒ ᎢᏗᏢ.\nᎠᏆᎵᏏ ᎤᎴᏁ ᎤᏩᏒ ᎨᏒᎢ ᎤᏓᏙᎵᏍᏔᏁ ᎯᎠ ᏄᏪᏎᎢ; ᏣᏁᎳᏅᎯ ᎬᏯᎵᎡᎵᏤᎭ ᎠᏂᏐᎢ ᏴᏫ ᏄᎾᏍᏛᎢ ᎾᏍᎩ ᎾᏆᏍᏛᎾ ᏥᎩ, ᎾᏍᎩ ᎠᏎᏉ ᎠᎾᏓᎩᎡᎯ ᏥᎩ, ᎠᎴ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ, ᎠᎴ ᏗᎾᏓᏲᏁᎯ, ᎠᎴ ᎾᏍᏉ ᎯᎠ ᎠᏕᎸ--ᎠᎩᏏᏙᎯ ᎾᏍᎩ ᏄᏍᏛ ᎾᏆᏍᏛᎾ ᏥᎩ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎡᏂᎾᏯ ᏧᏤᎢᏛ, ᎤᏓᎵᎢᏃ ᏌᏉᎵ ᎤᏂᎾᏗᏅᏎ ᎫᎱᏍᏗ ᎤᏂᎲᎢ,\nᎾᎿ ᎤᎾᏓᏑᏰ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏥᎻ ᎠᎴ ᏦᏏ ᎤᏂᏥ, ᎠᎴ ᏤᏈᏗ ᏧᏪᏥ ᎤᏂᏥ.\nᎡᏂᎾᏯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏥᏯᏛᎦᏁᎸ ᎯᎠ ᎠᏍᎦᏯ ᎤᏂᏣᏔ ᎬᎩᏃᏁᎸ ᎤᏣᏘ ᎤᏲ ᏂᏚᏩᏁᎸ ᏗᏣᏤᎵ ᎤᎾᏓᏅᏘ ᏥᎷᏏᎵᎻ.\nᎾᏍᎩ Ꮎ ᎠᏎ ᏛᏛᏃᏏ, ᎠᏴᏍᎩᏂ ᎠᏎ ᏓᏥᏲᎶᏥ.\nᏣᏄᏏ ᎤᎴᏅᎮ ᏚᎷᏫᏍᏔᏁᎲ.\nᏂᎦᏓ ᎠᏂᏫᏄᏣ ᎠᏂᏂ ᎤᏂᏁᎢᏍᏔᏅ ᏂᏙᏒ ᏗᎳᏑᎶ.\nᏂᎦᏛᏃ ᏴᏫ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏝᏍᎪ ᎯᎠ ᏕᏫ ᎤᏪᏥᏱᎩ?\nᎯᎠᏃ ᏄᏪᏒᎩ; ᎧᏂᎵᏯ, ᎭᏓᏙᎵᏍᏗᏍᎬ ᎡᏣᏛᎦᏁᎸ ᎠᎴ ᎭᏓᏁᎸᎢᏍᎬ ᎠᏅᏔ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎿᏉᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎩᎶ ᏗᎪᏪᎵᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᎬᏩᎵ ᎠᎨᏲᏅᎯ ᏥᎨᏐᎢ, ᎾᏍᎩᏯᏉ ᎠᏍᎦᏯ ᎦᏁᎳ ᏥᏙᏗᎦᎾᏄᎪᏫᏍᎪ ᏧᎬᏩᎶᏗ ᎤᏍᏆᏂᎪᏛ ᏧᏓᎴᏅᏛ ᏗᏤ ᎠᎴ ᏧᏪᏘ.\nᎦᏔᏎᏰᏃ ᏗᎦᎵᏱᏳ ᎨᏒ ᏕᏣᏓᏅᏛᎢ, ᎾᏍᎩ ᎢᏨᏁᎢᏍᏗᏍᎬ ᎹᏏᏙᏂ ᎠᏁᎯ ᎦᏥᏯᏢᏈᏌᎭ, [ᎦᏥᏃᏁᎭ] ᎾᏍᎩ ᎡᎧᏯ ᎿᏉ ᏑᏕᏘᏴᏛ ᎬᏩᏛᏅᎢᏍᏔᏅᎯ ᎨᏒᎢ; ᎠᎴ ᏂᎯ ᎤᎵᏂᎩᏛ ᎢᏣᏓᏅᏛ ᎤᏂᏣᏔ ᎤᏂᏖᎸᏅ.\nᎠᏥᏅᏏᏛ ᎠᎵᏘᏍᎪᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᏥᏅᏏᏛᏉ ᎨᏒᎢ.\nᎤᏣᏘᏃ ᎤᏱᎶᎴ ᎤᏃᎴ, ᎠᎴ ᏓᎵᏍᏗᎳᏁᎬ ᏥᏳᎯ ᎠᏟᎨᎢ, ᎠᎴ ᎿᏉ ᎠᎧᎵᏬᎯ ᎨᏎᎢ.\n”ᎣᏏᏉᏍᎪ ᏧᏪᏥ ᏱᏓᎩᏯᎳ ᏧᏪᏥ ᏧᏂᏗ, ᎡᏠᎩ ᎠᎳᏂ?”\nᏝᏍᎪ Ꮀ ᏳᎬᏫᏳᏎᏍᏗ ᎦᎸᏉᏗᏳ ᏱᎨᏎᏍᏗ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ?\nᎠᏯ ᏏᏆ!” \nᏃᎴᏍᏉ ᏳᏚᎵ ᏳᏩᏁᎦ ᎠᏉᏎᏗ, ᎤᏩᏌ ᎤᏓᏁᏖᏗ.\nᎤᏂᎦᎸ ᏚᎧᎾᏁ ᏌᎳᏓ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎣᏣᎵᏂᎬᏁᎭ, ᎾᏍᏉ ᎾᎿ ᏱᏬᏥᏁᎳ, ᎠᎴ ᏲᎩᎪᏁᎳ, ᏦᎦᏓᏂᎸᎢᏍᏗᏱ ᎢᏳᎵᏍᏙᏗᏱ.\nᎥᏝ ᎠᎴ ᎾᏍᎩᏉ ᏱᏄᏍᏗ; ᎵᏇᎩᏍᎩᏂ ᎾᏍᏉ ᎤᏁᎵᏨ, ᎾᏍᎩ ᎠᏏᏴᏫ ᎠᏥᏁᎵᏤᎸ, ᎾᏍᎩ ᎢᎩᏙᏓ ᎡᏏᎩ;\nᎿᏉᏃ ᏈᏓ ᏗᏴᎵᏎ ᎧᏂᎵᏯ ᏕᎤᏠᏎᎢ, ᎡᎳᏗᏃ ᎤᏅᏨ ᏈᏓ ᏚᎳᏍᎬ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ.\nᎦᏄᎸ ᎧᏁᏍᎦ ᎢᏳᏍᏗ ᏃᎴ ᏦᎢ ᏧᏆᏅᏕᎾ ᎤᎦᎾᏍᏓ ᎠᏒᎨᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᎢᏍᏙᏎᎸᎭ, ᎯᎠ ᏁᏍᏗᏪᏎᎸᎭ; ᎤᎬᏫᏳᎯ ᏚᏚᎵᎭ; ᎩᎳᏉᏃ ᎢᏴᏛ ᏙᏓᏳᏲᏏ.\nᎠᏂᏔᎵ ᏃᎴ ᎱᏂᏅᎪᏤ ᏃᎴ ᎱᏂᏲᎵᎴ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏈᎵ ᎤᏟ ᎢᏲᏍᏛ ᎤᎵᏍᎪᎸᏓᏁᎴ ᎤᏁᎳᏅᎯ ᎠᏥᎸ-ᎨᏔᏍᏙᏗ ᎨᏒ ᎡᏍᎦᏉ ᎨᏂ, ᎾᏍᎩ ᏄᏛᏁᎸ ᎤᏩᏛᏔᏁ ᎪᎯᏳᏍᎩ ᎤᏓᎤᏗᏳ ᎨᏒᎢ, ᎤᏁᎳᏅᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᏚᏓᏂᎸᏤᎸ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏄᏛᏁᎸ ᎬᏗᎭ ᎧᏁᎦ ᎾᏍᏉ ᎤᏲᎱᏒᎯ ᏥᎩ.\nᎤᏡᏗᏍᎩᏃ ᎬᏂᎨᏒ ᎢᏧᏩᏁᎸᎯ ᎨᏎ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ, ᎯᎠ ᎢᏳᏪᏒᎯ ᎨᏎᎢ, ᎩᎶ ᏥᏯᏚᏣᎳᏅᎭ, ᎾᏍᎩ ᎨᏎᏍᏗ, ᏒᏥᏏᏴᎲᎭ, ᎡᏣᏘᎾᏫᏛᎲᎭ ᎬᏩᏚᏓᎴᏍᏗ ᏂᎨᏒᎾ ᏁᏨᏁᏍᏗ.\nᏕᎾᏓᎪᎲᏳ ᏃᎴ ᎬᏯᎵᎡᎵᏤ ᎣᏍᏓ ᏍᎩᏃᎯᏎᎸ ᎤᏓᏙᏎᎴ.\nᎠᎴ ᎠᏁᎲ ᎤᏙᎯᏳᏅ ᎢᏌᏯ ᏧᏙᎴᎰᏎᎢ, ᎯᎠ ᏥᏄᏪᏎᎢ; ᎢᏣᏛᎩᏍᎬ ᎢᏣᏛᎩᏍᎨᏍᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏦᎵᎨᏍᏗ; ᎠᎴ ᎢᏥᎪᏩᏘᏍᎬ ᎢᏥᎪᏩᏘᏍᎨᏍᏗ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏙᎴᎰᏍᎨᏍᏗ.\nᎠᏎᏃ ᏈᏓ ᎠᏏᏉ ᏗᎬᏂᎮᎢ; ᎤᏂᏍᏚᎢᏒᏃ ᎬᏩᎪᎮᎢ ᎠᎴ ᎤᏂᏍᏆᏂᎪᏎᎢ.\nᎠᎴ ᎩᎶ ᎠᏏᏴᏫ ᎯᎠ ᏧᎾᏍᏗ ᎨᏒ ᎾᏍᎩ ᏥᎬᏉᎯᏳᎲᏍᎦ ᏙᎪᏕᏍᏗᏍᎨᏍᏗ, ᎤᏟ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᏙᏍᎩ ᏅᏯ ᏯᏥᏯᏝᏅ, ᎠᎴ ᎠᎺᏉᎯ ᏱᏩᎦᏓᎢᏅ.\nᎤᎦᏙᏍᏔᏁᎢ ᏕᎪᏪᎸ ᏓᏏᎳᏛ ᎰᎻ.\nᎤᎦᏔᎲᏒ ᏣᎵ ᏃᎴ ᎤᎵᏍᎫᏮ.\nᎿᏉᏃ ᏈᏓ ᎢᏴᏛ ᏭᏘᏅᏔᏅ ᎤᏕᎴᏅᎲᎩ ᎤᏓᏅᏍᏓᏕᎸᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎤᏁᎳᏅᎯ ᏭᏅᏍᏙᎯ, ᏣᎬᏫᏳᎯ, ᎥᏝ ᎾᏍᎩ ᏱᏅᎨᏣᎵᏍᏓᏏ.\nᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎾᏥᎦᏔᎰᎢ ᎠᏏ ᎡᎶᎯ ᎾᏙᏢᏍᎬᎾ ᏥᎨᏎᎢ; ᎠᏎᏃ ᎬᏂᎨᏒ ᎾᎬᏁᎴ ᎪᎯ ᎤᎵᏍᏆᎸᏗ ᏕᎨᏌᏗᏒᎢ ᏂᎯ ᎢᏣᎵᏍᏕᎸᏙᏗ,\nᏓᏆᎴᎳ ᎤᏪᏅᏎ ᏭᎩᏎᎢ ᏑᏥᎶᏓ ᎠᏥᏍᏛ ᎤᏅᏗ ᏧᎾᏦᏴᏍᏗ.\nᏌᏩᏂ ᎤᏃᎮᎸ ᎤᏁᎳᏅᎯ ᎢᎬᏱᏱ ᏚᏩᏛᎲᎢ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎾᎿ ᏧᏪᎴᏍᏗᏱ ᏴᏫ ᎾᏍᎩ ᏚᏙᎥ ᏗᎨᎪᏍᏙᏗᏱ.\n“ᏰᎵ ᏍᎪᎯᏍᏆ ᎤᎶᏒᏍᏗ ᏕᎩᎧᎾ.”\nᏞᏍᏗ ᏱᏔᏢᏈ-ᏎᎮᏍᏗ ᏚᏩᏂᎦᎸᎢ. ᎢᏳᏍᎩᏂ ᏯᏢᏈᏍᎦ, ᎥᏝ ᏂᎯ ᏚᎿᏍᏕᏢ ᏱᏘᎾᏄᎪᏫᏍᎦ, ᏚᎿᏍᏕᏢᏍᎩᏂ ᏂᎯ ᎨᏣᎾᏄᎪᏫᏍᎦ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏁᎳᎩ ᏴᏓᎨᎵᏏ ᏂᎪᎯᎸ ᎢᏨᏯᏅᏓᏗᏍᏙᏗᏱ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ, ᎢᏥᎦᎳᎭᏍᎩᏂᏃᏅ, ᎠᎴ ᏕᏣᎵᏂᎪᏒ ᎾᎿ ᏚᏳᎪᏛ ᎨᏒ ᎪᎯ ᏥᏣᏛᎩᎭ.\nᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ ᏌᎻ ᏅᏓᏳᏓᎴᏅᏛ, ᎾᏍᎩ ᎣᏂ ᎤᏂᎾᏄᎪᏨᎯ, ᎾᏂ ᎤᏂᏬᏂᏒᎯ, ᎾᏍᏉ ᎤᏂᏁᎢᏍᏔᏅ ᎪᎯ ᎨᏒᎢ.\nᏃᏊᏃ ᎠᏆᏞᏌ 33 ᎪᏪᎵ ᎦᏅᏅ ᎠᎴ ᏗᏇᏅᏒ ᎢᏗᏜ ᏫᎦᏅᏅ ᏩᏆᏕᏙᎾ ᏓᏆᎴᎳ ᏚᏨᏍᏛ ᏫᏚᎸᏌᏓᏓ ᏫᎦᏅᏅ ᏫᎦᏥᎪᎥ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᏩᎾᎢᏒᎢ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎠᏇᏥ,ᎤᎦᎵᏍᏗ ᎭᏓᏅᏓᏓ; ᏦᎯᏳᏒ ᏣᏗᏫᏍᏓ; ᏅᏩᏙᎯᏯᏛ ᏥᎮᎾ.\nᎡᏝᏪᎯ ᎠᎢᏒ, ᎠᏓᏯ ᏗᎪᏒᏔᏅ ᎡᏓᏍᏗ ᎾᎥᏂ ᏂᏚᏩᏅ ᏧᎳᏏᏕᏂ, ᎤᏅᎢᏍᏗ ᏱᎨᏒᎾ.\nᎨᏍᏗ ᏧᏍᎩᏃᏱᎩ.\n“ᏃᎴ ᏤᏍᏗ ᏱᏍᏓᎴᏃᎴᏍᏗ!” ᎤᏛᏁ ᎠᎳᏂ.\nᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏯᎾᏓᏙᎵᏍᏓᏏ ᎩᎶ ᏄᏃᎯᏳᏒᎾ ᏱᎩ ᎡᎲᎢ? ᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏯᏃᎯᏳᎲᎦ ᎩᎶ ᎡᎲ ᎾᏍᎩ ᎤᎾᏛᎦᏅᎯ ᏂᎨᏒᎾ ᏱᎩ ᎡᎲᎢ? ᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏯᎾᏛᎬᎦ ᎩᎶ ᎠᎵᏥᏙᎲᏍᎩ ᏄᏁᎲᎾ ᏱᎩ?\nᎾᏍᎩᏯ ᎾᏍᏉ ᎯᎠ ᏥᏂᎦᏪ ᎰᏏᎠ ᎤᏬᏪᎸᎢ; ᏗᏆᏤᎵ ᏴᏫ ᎦᏥᏲᏎᎮᏍᏗ ᎾᏍᎩ Ꮎ ᏗᏆᏤᎵ ᏴᏫ ᏂᎨᏒᎾ ᏥᎨᏒᎩ; ᎠᎴ ᏥᎨᏳᎢ (ᏥᏲᏎᎮᏍᏗ,) ᎾᏍᎩ Ꮎ ᏥᎨᏳᎢ ᏂᎨᏒᎾ ᏥᎨᏒᎩ.\n”ᎭᏩ,” ᎤᏛᏁ ᏫᎵᎻ.\nᏂᎦᎥᏉ ᏂᏣᎵᏍᏓᏁᎵᏕᎬ ᎡᏣᎵᎡᎵᏤᎮᏍᏗ [ᎤᏁᎳᏅᎯ;] ᎯᎠᏰᏃ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᏣᏓᏅᏖᎮᎲ ᏥᏌ ᎦᎶᏁᏛ ᏕᏣᏁᎶᏛ ᎢᏳᏍᏗ.\nᎨᏍᏗ ᎠᏍᏛᎢ ᎾᎥᏂ ᏳᏓᏬᎠ.\nᎾᏍᎩ ᎢᎸᎯᏳ ᏄᏃᎯᏳᏒᎾ ᏥᎨᏎᎢ, ᎾᎯᏳ ᎤᏁᎳᏅᎯ ᎬᏂᏗᏳ ᎨᏒ ᏣᎦᏘᏰᎢ, ᏃᏯ ᎾᎯᏳ ᏤᎥᎢ, ᏣᏛᏅᎢᏍᏗᏍᎨ ᏥᏳ, ᎾᎿ ᎢᎸᏍᎩ ᎾᏍᎩ ᏧᏁᎳᏉ ᎢᏯᏂᏛ ᏥᎨᏥᏍᏕᎸᎮᎢ, ᎠᎹ ᏥᎨᏥᏍᏕᎸᏔᏁᎢ;\nᎩᎦᎨᏃ-ᎠᏗᏔᏍᏗ ᎤᏗᏒᏅ, ᏥᏌ ᎤᏥ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᏳᏂᏁᎭ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ.\nᏝᏍᎪ ᏱᏥᎦᏔᎭ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎠᎾᎵᏍᏓᏴᏗᏍᎬ ᏗᎦᎸᏉᏗ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏂᎦᏘᏯᏕᎩ ᎾᏍᎩ ᎤᏁᎳᏗᏍᏗᏍᎬ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᎵᏍᎪᎸᏔᏅᎯ?\n”ᎭᏕᏬ -- ᎭᏕᏬ -- ᎭᏕᏬ!” ᎤᏛᏁ ᏌᏌ.\nᎠᏎᏍᎩᏃ, ᏙᏯ ᎤᎴᏴᎯᏍᏗ ᎨᏎ ᏗᏧᎬᎢ.\nᎢᏥᎦᏔᎭᏰᏃ ᎪᎱᏍᏗ ᎠᏲᎩ, ᎠᏕᎸ ᎤᏁᎬ ᏯᏛᏅ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ, ᎡᏣᎫᏴᏔᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎡᎫᏓᎴᏒᎢ ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᎢᏣᎴᏂᏙᎸᎢ ᏗᏥᎦᏴᎵᎨ ᏗᎨᏥᏲᎯᏎᎸᎯ ᎨᏒᎢ,\nᎾᎯᏳᏉᏃ ᏕᎠᏂᎳᏫᎡ ᎤᏂᏧᏈᏍᏗ ᏴᏫ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᎠᎾᏓᎳᏍᏛᏗᏍᎨᎢ, ᎾᏍᎩ ᎤᎴᏅᎮ ᎯᎠ ᎢᎬᏴ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎢᏤᏯᏔᎮᏍᏗ ᎠᎪᏙᏗ ᎠᏂᏆᎵᏏ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᎠᏠᎾᏍᏗ ᏥᎩ.\nᎢᏳᏃ ᏍᏆᏂᏱ ᎨᏒᎭ, ᏫᏨᎷᏤᏗ ᎨᏎᏍᏗ; ᎤᏚᎩᏰᏃ ᎠᏋᎭ ᎢᏨᎪᏩᏛᏗᏱ ᎾᎿ ᏫᏥᏕᏖᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏗᏢ ᏫᏍᎩᏯᎪᏗᏱ, ᎢᏳᏃ ᎢᎬᏱ ᎠᎴᏉ ᏰᎵ ᎾᎩᏰᎸᏁᏍᏗ ᎢᏨᏰᎳᏗᏙᎸᎢ.\nᎩᎳᏈᏴ ᎤᎵᏍᏛᏧᏁᎢ ᏥᏍᏕᏥ.\nᏩᎩᎷᏣ ᎤᎨᏓᎵᏴ ᎨᏴ ᎠᎩᎦᏛᏂᏙ ᎠᏓᎾᏅ, ᎬᎩᏃᎯᏎᎸ ᎱᏂᎷᏨ ᎨᎵ ᏃᎴ ᎤᎩᏓᏟᏅᏯ.\nᎤᎾᏠᎾᏍᏛ ᎦᏰᎪᎩ ᎠᏂᏬᏂᏍᎨᏍᏗ, ᏚᎾᏓᏅᏛ ᏗᎦᎴᏴᏔᏅᎯ ᏔᎷᎩᏍᎩ ᎤᏗᎴᎩ ᎬᏔᏅᎯ;\nᏚᏅᏉ ᎳᏛᎢ ᏚᎵᏏᏫᏒ ᎢᏳᏍᏗ ᎤᎾᎵᏏᏫᏒ ᎤᏂᏥᎸᎢ: ᏕᎷᎨ, ᏓᎶᏂᎨ, ᎠᏤ, ᎩᎦᎨ, ᎠᏓᎶᏂᎨᎢ ᏃᎴ ᎤᏁᎦ.\nᎦᎸᎳᏗᏣ ᏳᏪᎾ, ᎠᎩᏠᏫᏍᏗ ᎡᎳᏗ ᎠᎦᏘᏰ ᏫᎵᎻ, ᎠᎦᏐᏗᏍᎬ ᎢᎪᎯᏓ.\nᎯᎠᏰᏃ ᎠᏠᏁᏗ ᏥᏰᎸᎢ ᏣᎩᎶᏁᏓ, ᎥᎩᏂᏐᏗᏱ ᎠᏆᏛᏅᎢᏍᏗᎭ.\nᏫᏚᏂᏯᏅᎲᏃ ᏚᏂᏁᏤᎴ ᏥᏌ ᏚᏙᎥ ᎤᏅᏙᏗᏱ ᎤᏂᏁᎢᏍᏗᏱ ᎠᎴ ᏧᎾᏕᏲᏗᏱ ᏂᎨᏒᎾ.\nᎿᏉᏃ ᏨᏆᏓᏁᎳᏁᎸ ᎠᎵᏍᏚᎶ ᏚᏳᎪᏛ ᎢᏳᎾᏛᏁᎸᎯ ᎨᎦᎫᏴᏓᏁᏗ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎾᏍᎦᏅᎾ ᏗᎫᎪᏗᏍᎩ ᎠᏗ-ᏅᏁᏗ ᎾᎯᏳ ᎢᎦ, ᎥᏝ ᎠᎴ ᎠᏴᏉ ᎠᏋᏒ, ᎾᏍᏉᏍᎩᏂ ᎾᏂᎥ ᎤᎾᏄᎪᎢᏍᏗ ᎨᏒ ᎣᏏᏳ ᎣᏂᏰᎸᎯ.\nᎠᏍᏆᏙᏅ ᏥᏃᎮᏍᎬ, ᎠᎩᎦᏘᏛ.\nᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏕᎾ, ᏫᏍᏓᎦᏔ. ᎤᏁᏅᏒᎩᏃ ᎠᎴ ᎤᎾᎦᏔᏅᎩ ᎦᏁᎸᎢ, ᎠᎴ ᎢᏧᎳᎭ ᎤᏁᏙᎸᎯ ᎾᎯᏳ ᎢᎦ; ᏅᎩᏁᏰᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎨᏒᎩ.\nᏞᏍᏗ ᎤᏐᏅ ᏱᏗᏣᏓᏃᎮᏍᎨᏍᏗ ᎢᏓᏓᏅᏟ; ᎤᏐᏅ ᏥᎧᏃᎮᏍᎪ ᏥᎧᏁᎢᏍᏗᏍᎪ ᏗᎾᏓᏅᏟ ᎠᎴ ᏥᏕᎫᎪᏓᏁᎰ ᏗᎾᏓᏅᏟ, ᎾᏍᎩ ᎤᏐᏅ ᎧᏃᎮᏍᎪ ᎧᏁᎢᏍᏗᏍᎪ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᏕᎫᎪᏓᏁᎰ ᏗᎧᎿᏩᏛᏍᏗ; ᎢᏳᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏱᏚᎪᏓᏁᎭ ᎥᏝ ᏗᎧᎿᏩᏛᏍᏗ ᏘᎧᎿᏩᏕᎩ ᏱᎦᎩ ᏚᎪᏓᏁᎯᏍᎩᏂ.\nᎤᏖᎸᏁ ᎡᏆ ᎠᏍᏚᏅ ᏩᎩᎦ, ᎤᎦᏛᏁ ᎦᎵ ᏱᎩ ᎤᎵᏍᏆᎶᏗ ᎨᏴ ᎤᏁᎨᏒ.\nᎠᏎᏃ ᏉᎳ ᎤᏁᏨ ᎯᎠ ᏄᏪᏒᎩ ᎦᏙ ᎢᏥᏰᎸᏗ, ᏥᏕᏥᏴᎦ ᎠᎴ ᏥᏥᏓᏬᏗᎭ ᎠᎩᎾᏫ; ᎠᏆᏛᏅᎢᏍᏗᏰᏃ, ᎥᏝ ᎥᏆᎸᏍᏗᏱᏉ ᎤᏩᏒ, ᎾᏍᏉᏍᎩᏂ ᎠᎩᏲᎱᎯᏍᏗᏱ ᏥᎷᏏᎵᎻ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏚᏙᎥ ᎤᎬᏫᏳᎯ ᏥᏌ.\nᎩᎳᏈᏴ ᎤᎯᏐᏗ ᏄᎵᏍᏔᏁᎴ ᏫᎵᎻ.\nᎠᏰᎵ ᏄᏍᏛ ᏃᎴ ᏙᏰ ᏄᏍᏗᏓᏅ ᎠᏍᏔᏱ ᎠᏥᎶᏍᏗ ᏂᎦᎵᏍᏔᏂᏙᎲ, ᏃᎴ ᎡᎵᏍᏗ ᏍᏔᏯ ᏄᎾᎵᏍᏔᏁ.\nᏍᏔᏯ ᏚᏂᏴᎲ ᎠᏍᏚᏗ ᎠᏦᎭᏴ, ᏧᏁᎦᏉ ᎨᏒ ᏧᎪᎳ ᏚᎦᏌᏛ.\nᏍᏓᏯ ᎤᏂᏰᏤ ᎤᏂᏣᏘ.\nᏍᎪᎯ ᎾᏂᎥ ᎠᏂᏧᏣ, ᎡᏆ ᏕᎦᏚᎲ ᏓᏳᏂᎶᏒ.\nᎢᏳᏃ ᏂᎦᏛ ᏌᏉᏉ ᎤᏫᏢ ᏱᎩ, ᎭᏢ ᎠᏰᎸ ᏱᎩ?\nᎢᏳ ᎠᎴ ᏳᎾᏚᎵ ᎪᎱᏍᏗ ᎤᎾᏕᎶᏆᏍᏗᏱ, ᏗᎬᏩᏂᏰᎯ ᏧᎾᏛᏛᎲᏍᎨᏍᏗ ᏙᏧᏁᏅᏒᎢ; ᎤᏕᎰᎯᏍᏗᏳᏰᏃ ᎠᏂᎨᏴ ᎤᏂᏬᏂᎯᏍᏗᏱ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏴ ᎾᏍᎩ ᏑᏓᎴᎩ ᏛᏨᏯᏛᏛᏂ, ᎠᎴ ᏍᎩᏃᎲᏏ, ᎠᏴᏃ ᏓᏨᏃᏁᎵ ᏄᏍᏛ ᎠᏆᎵᏍᎦᏍᏙᏛ ᎯᎠ ᎾᏍᎩ ᏥᏂᎦᏛᏁᎭ.\n”ᎰᎻ ᎠᎪᏕᏍᎩ, ᏙᎢᏳᏍᏗ ᎯᏃᎮᎭ?” ᎤᏛᏁ.\nᎤᎵᏏᏅᏗ ᏩᏗᎦ ᎠᏒᏆᎶᏍᏗ ᎠᎵᏰᎾ, ᏥᏄᏍᏛᎩ ᎤᏩᏛᎲ.\nᎤᏂᏃᏴᎵᏓ ᎤᎾᏓᏂᎸᏤ ᏌᏌ.\nᎦᎪ ᎢᎸᎯᏳ ᏓᎿᏩ ᎡᎪᎢ ᎤᏩᏒᏉ ᎤᎫᏴᎯᏓᏍᏗ ᎠᎫᏴᏗ ᎨᏒᎢ? ᎦᎪ ᏓᏫᏍᎪ ᏖᎸᎳᏗ ᏂᏗᎨᏰᏍᎬᎾᏃ ᎨᏐ ᎤᎾᏓᏛᏅᎯ? ᎠᎴ ᎦᎪ ᏓᎦᏘᏲ ᎠᏫ, ᎾᎵᏍᏓᏴᏗᏍᎬᎾᏃ ᎨᏐ ᎤᏅᏗ ᎠᏫ ᎤᏂᏁᏅᎯ?\nᎤᎾᏝᎢᏃ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎣᏏᏳ! ᎰᏍᏛ ᎠᎴ ᎯᎦᎵᏯ ᎡᏣᏅᏏᏓᏍᏗ! ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ ᎤᏍᏗ ᏧᏓᎴᏅᏛ ᏕᏣᎸᏫᏍᏓᏁᎸᎢ; ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏣᎬᏫᏳᏌᏕᎩ ᏅᏓᎬᏴᏁᎵ; ᎯᏴᎭ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗᏱ ᏣᎾᏝᎢ ᎤᏤᎵᎪᎯ.\nᏧᎦᏴᎵᎨᏃ ᏥᎷᏏᎵᎻ ᎠᏁᎨ ᏂᏓᏕᏘᏴᎯᏒ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᎵᏍᎬ ᎢᏳᎢ.\nᎤᏁᏤᎴᏃ ᎩᎶ ᎤᏃᏁᏗᏱ ᏂᎨᏒᎾ; ᎮᎾᏉᏍᎩᏂ, [ᎤᏬᏎᎴᎢ,] ᏫᏯᏓᎾᏄᎪᏫᏏ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᎼᏏ ᎤᏁᏨ ᏣᏓᏅᎦᎸᎲ ᎠᎵᏍᎪᎸᏙᏗ ᏫᎲᎦ, ᎾᏍᎩ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ.\nᎤᎵᏑᏫᏓ ᏥᎨᏒ ᎬᏂᎨ ᎤᏍᎪᎸ ᏄᎵᏍᏔᏅ.\nᎤᎧᏛᏃ ᎠᏂᎪᏩᏘᏍᏕᏍᏗ; ᏚᏙᎥᏃ ᎾᏍᎩ ᏗᏂᎬᏓᎨᏂ ᏕᎪᏪᎴᏍᏗ.\nᎠᎾᏛᎩᏍᎨ ᎤᏂᏃᏕᎾ ᏂᏗᏂᏪᏍᎬ ᎨᏥᏍᏚᎲ.\nᎤᏍᏗ ᎢᏳᏍᏗ ᏔᎴᏅ.\nᏝᏍᎪ ᎠᏴ ᎥᎩᏅᏏᏛ ᏱᎩ? ᏝᏍᎪ ᎠᏆᏓᏤᎵᎦ ᏱᎩ? ᏝᏍᎪ ᏥᎪᎥᎯ ᏱᎩ ᏥᏌ ᎦᎶᏁᏛ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ? ᏝᏍᎪ ᎠᏴ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎢᏳᏩᏂᏌᏛ ᏱᎩ ᏂᎯ ᎤᎬᏫᏳᎯ ᎡᏥᏍᏓᏩᏕᎩ ᏥᎩ?\nᏥᏌᏃ ᎠᎦᏔᎮ ᏄᏍᏛ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎤᏥ ᎢᏣᏓᏅᏖᎭ ᏗᏥᎾᏫᏱ?\nᏉᎳᏰᏃ ᏧᏭᎪᏔᏅᎯ ᎨᏒᎩ ᎤᎶᎯᏍᏗᏱᏉ ᎡᏈᏌ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎡᏏᏱ ᎤᏪᏓᏍᏗᏱ; ᎤᏩᏅᎬᎩᏰᏃ, ᎢᏳᏃ ᏰᎵ ᎾᏍᎩ ᎢᎬᏩᏛᏁᏗ ᏱᎩ, ᏥᎷᏏᎵᎻ ᏭᎷᎯᏍᏗᏱ ᎭᏍᎦᏍᎪᎯᏁ ᎢᎦ ᎠᏍᏆᎵᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎡᎦᎫᏴᏛ ᏥᎩ ᎤᎩᎬ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎢᎩᏍᎦᏅᏨ ᎡᎩᏙᎵᏨᎢ;\nᏕᎦᏥᎾᏌᏅ ᏅᏩᎾᏓᎴ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ, ᏥᎩᏍᎬᎩ ᎬᏆᎫᏴᎡᎲᎢ, ᏂᎯ ᎪᎱᏍᏗ ᎢᏨᏯᏛᏁᏗᏱ.\nᏗᏂᏲᏟ ᎣᎯᏍᏙᏗ ᎤᎾᏛᎦᏍᏙᎢ ᎠᏎᏉ ᏧᎾᏛᎾ.\nᎠᏴ ᎠᏆᏛᏐᏅᎯ ᏫᏥᏲᎵᎦ ᎠᎦᏑᏰᏛ ᎠᎨᏴ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎦᏥᎨᏳᎢ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎠᎴ ᎥᏝ ᎠᏋᏒᏉ ᏱᎩ ᎾᏍᏉᏍᎩᏂ ᏂᎦᏛ ᎤᏂᎦᏙᎥᏒᎯ ᏚᏳᎪᏛ ᎨᏒᎢ;\nᏣᏥ ᏥᎨᏒ ᏱᎬᏩᏚᎵ ᏍᎩᎾᎾ ᎢᏳᎵᏍᏙᏗ, ᏥᎦᏔᎭ.” \nᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ ᎡᏆ ᏏᏆ ᎢᎬᏓ ᎨᏒ, ᎤᏣᎴᏍᏗ ᎦᏚ ᎤᏩᏙᏫᏨ ᎤᏓᏑᏴ ᏚᏄᎴᎲ ᏃᎴ ᎤᎦᎹ ᎠᏑᏍᏗ ᎤᏓᏅᎵᏰᎥ ᎤᎭᏄᏮ.\nᎠᏏᏰᏃ ᏯᏆᎴᏂᏙᎸ ᎦᎶᏅᏛ ᏥᎸᏉᏙᏗ, ᏯᎩᏲᎱᏒᏃ ᎠᏴ ᎠᎩᏁᏉᏤᏗ.\nᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎠᎴ ᎠᏂᏧᏏ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᎠᎾᏁᎷᎩᏍᎨ ᏗᎬᏩᏂᏐᏢᏙᏗᏱ ᎠᎴ ᏅᏯ ᏧᏅᏂᏍᏙᏗᏱ,\nᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵ ᎤᏣᏘ ᎢᏥᏯᎡᏍᏗ ᎦᎾᏄᎪᏫᏍᎨᏍᏗ ᏂᎦᎥ ᎠᎵᏏᎾᎯᏍᏙᏗ ᎨᏒᎢ; ᏕᏣᏓᏕᏲᎲᏍᎨᏍᏗ ᎠᎴ ᏕᏣᏓᏬᏁᏗᏍᎨᏍᏗ ᏕᏨᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ ᏗᎧᏃᎩᏍᏙᏗ, ᎠᎴ ᎦᎸᏉᏙᏗ ᏗᎧᏃᎩᏍᏗ, ᎠᎴ ᎠᏓᏅᏙ ᎤᎬᏩᎵ ᏗᎧᏃᎩᏍᏗ, ᏕᏥᏃᎩᏍᎨᏍᏗ, ᏗᏥᎾᏫᏱ ᏗᏓᎴᎲᏍᎨᏍᏗ ᎤᎬᏫᏳᎯ ᏕᏥᏃᎩᏍᎨᏍᏗ ᎡᏣᎵᎡᎵᏤᎮᏍᏗ.\nᏚᏂᏯᏪᏣ ᎠᎾᎵᏖᎸᏂᎲ ᏩᎦ ᎤᏂᏴᏍᏗ ᎠᏦᏴ ᏒᏗᏩᏟ ᎤᎾᏓᎩᏎ ᏃᎴ ᏚᏂᎨᎢ.\nᎠᎴ ᎠᏂᎪᏗᏳ ᎠᏂᎦᎾᎦᏗ ᎤᏣᏘ ᎬᏩᎩᎸᏅᎯ ᎨᏎᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎤᎲ ᏂᎦᏛ ᎤᏒᏅᎯ ᎨᏎ ᎠᏓᏱᏍᎬᎢ, ᎠᏎᏃ ᎥᏝ ᎣᏏᏳ ᏱᏄᎵᏍᏓᏁᎮᎢ, ᎧᏁᏉᎨᏉᏍᎩᏂ ᎤᏢᎬᎢ;\nᎤᎸᏖᏍᏗ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎴ ᎡᎳᏗ ᏫᏄᏛᏁᎳ. ᎠᎵᏖᎸᏂᏍᏗ ᎤᎵᏍᏕᎸᏙᏔᏁᎢ.\nᎬᏅᎢ ᎠᎴ ᎤᎵᏬᎢᏍᏗ ᎤᏰᎸᏗ, ᏃᎴ ᎠᏆᏓᏓᏏᏅᎲᏍᏙᏗ ᎯᎯᏃᎮ.” \n ᎨᏍᏗ ᎭᏩ ᏱᎩ ᎮᎵᏍᎨ ᏧᏓᏏ\nᎨᏂᏗ ᏗᎦᎶᏔᏅ ᎤᏩᏛᎮᎢ ᎡᎳᏆᏗ, ᎭᎾᎾ ᎤᎸᏁ ᏩᎶᏏ.\nᎠᎴ ᎠᎩᏁᏉᏤᎲ ᎠᏂᏧᏏ ᏧᎾᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏥᎦᏙᎥᏍᎬᎢ ᏕᏥᎪᎾᏛᏛᎩ ᎤᏂᏣᏘ ᎢᏗᎦᏲᎦᏛᏅ ᏗᏆᏤᎵ ᏴᏫ, ᎤᏟ ᎢᎦᎢ ᎤᎵᏂᎩᏛ ᎠᏆᏓᏅᏛᎩ ᏓᏇᎷᎬᎩ ᏗᎩᎦᏴᎵᎨ ᎤᏂᏃᎮᎸᎯ.\n”ᏌᎳᏓᎩ?” ᎤᏛᏁ ᎪᏱᏁ.\nᎨᏍᏗ ᏧᏄᎪᏔᏅ ᏱᎨᏎ ᎢᏴ ᏫᏚᏂᎪᏗ ᏭᏕᎵᎬ ᎠᏂᏴᏫᏯ, ᎠᏎᏃ ᎦᏣᏄᎳ ᎢᎦᏓ ᎠᏂᏍᎦᏣ ᎠᏂᏴᏫᏯ ᎨᏍᏗ ᏳᎾᎦᏎᏍᏔᎾ, ᎠᏁᎵᏍᎨ ᏰᎵᏉ ᏧᏂᎬᏩᎶᏗ ᎤᏁᏅᏍᏗ ᏱᎨᏒᎾ.\nᎾᏍᎩᏯᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎠᏂᏏᏴᏫᎭ ᏥᏚᏯᏙᎮᎸ, ᎠᎴ ᎾᏍᎩᏯ ᎤᎬᏫᏳᎯ ᎠᏂᏏᏴᏫᎭ ᏥᏚᏯᏅᎲ, ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᏁᎮᏍᏗ. ᎠᎴ ᎾᏍᎩ ᏄᏍᏗ ᏕᏥᏁᏤᎭ ᏂᎦᏛ ᏚᎾᏓᏡᏩᏗᏒᎢ.\nᎪᏍᏗᏳᎵ ᎦᎶᎪᏗ ᎾᏰᎯ ᏗᏁᎲ ᎤᏪᏓᏍᏗ ᎨᏎ ᎭᎾᎾ ᎡᎮ ᏫᏥᎢᎦ, ᎭᏂ ᎡᎶ ᎤᎪᎠᏎᏗ ᎠᏍᎩᏍᎨᎢ.\nᏂᎦᏗ ᎠᏂᎧᏔᎮᎢ ᎪᎱᏍᏗ ᎤᏓᏴᎳᏔᏅᎢ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵᎪ.\nᏧᏴᏨ ᎢᏣ ᏫᎦᏅᏅ, ᎡᏘᏴ ᏚᏂᎶᏒ ᏓᏃᏫ ᎤᏁᏙᎸ ᏃᎴ ᎠᎾᏓᎾᏅᎥᏍᎩ.\nᎢᎤᎷᏤᏃ ᎠᎴ ᏚᏩᏛᎮ ᎠᏂᎵᎾᎡᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᏈᏓ, ᏌᏩᏂ, ᎯᎵᎭᏉᏧ? ᏝᏍᎪ ᏑᏟᎶᏛᏉ ᎢᎪᎯᏛ ᎾᏍᏉ ᎨᏣᏯᏫᏍᏗ ᏱᎨᏎᎢ?\n“ᏂᎯ ᏣᏤᎵ,” ᎤᏛᏁ ᎡᎶᏗ.\nᎤᎾᎵᏍᏓᏴᏅᎯᏃ ᎯᏍᎩᎭ ᎢᏯᎦ ᏴᎵ ᎠᏂᏍᎦᏯ ᎾᏂᎥᎩ, ᏂᏓᏁᏢᏛᎾ ᎠᏂᎨᏴ ᎠᎴ ᏗᏂᏲᎵ.\nᎦᎸᎳᏗ ᎠᏓᏅᏖᎵᏙ ᎤᏥᎸ ᎤᏛᏅ.\nᏧᏣᏲᏍᏗ ᏄᏍᏕ ᎧᏁᏍᎦ --- ᎨᏍᏗ ᏩᎦ ᏧᎾᏗᎩᏓ ᏩᎾᎢ ᏱᏄᏍᏕ ᎧᏁᏍᎦ.\nᎠᎴ ᎥᏝ ᎾᏍᎩᏉ ᏱᏂᎦᎥ, ᎾᏍᏉᏍᎩᏂ ᎠᎩᎵᏯ ᎢᎩᎷᏤᎲ ᎢᏓᎵᎮᎵᎪᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎢᏗᎦᏔᎲ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎠᎬᏂᏗᏳ ᎾᏓᏛᏁᎲᎢ;\nᎾᏍᎩᏃ ᎢᏓᎵᏅᏟ, ᎥᏝ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᏧᏪᏥ ᏱᎩ ᎠᏴ, ᎾᏥᎾᏝᎥᎾᏍᎩᏂ.\nᎨᏙᎲ ᏯᏃᏉ; ᎡᏉᏂ ᏕᎨᏴ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᏗᎾᏓᎾᏌᎲᏍᎩ ᎤᏂᎾᏴᎯᏍᏗᏳ ᎨᏒᎢ; ᏗᏆᏤᎵ ᏴᏫ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎦᏚᎲ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎢᎾᎨ ᎨᏒ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎠᎺᏉᎯ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ; ᎤᎾᏠᎾᏍᏗ ᎣᏣᎵᏅᏟ ᎤᏂᎾᏰᎯᏍᏗᏳ ᎨᏒᎢ;\nᎠᎴ ᎤᏂᏣᏔᏅᎯ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏂᎪᏩᏘᏍᎬ ᎾᏍᎩ ᎤᏂᏍᏆᏂᎪᏗ ᏂᏓᏛᏁᎲ ᎫᏂᏢᎩ.\n“ᏣᏄᏏ ᏍᎩᏍᏕᎳ ᏫᏂᏯ ᎧᏁᏌᎢ.”\nᏰᎵ ᎪᎯᏓ ᏫᎫᏩᏂᎷᏨ ᎦᏚᏏ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎤᏲᎢ ᏱᏂᏓᎦᎵᏍᏔᏂ ᎤᏁᎵᏎ, ᎱᏁᏅᏎ ᏱᏓᏚᎬᎾ ᎡᎶ ᏧᎾᎳᎩᏒ.\nᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏞᏍᏗ, ᏣᎬᏫᏳᎯ, ᏞᏰᏃ ᎢᎸᎯᏳ ᏯᎩᎪ ᎰᎱᏍᏗ ᎦᏓᎭ ᎠᎴ ᏂᎦᏅᎦᎸᎲᎾ.\nᏃᏗ ᎤᏢᏁ.\nᎣᏍᏓ ᎭᏂ ᏙᏱ.” \nᎭᎾ ᏪᏙᎮ ᏧᏍᏆᏴᏍᏗ, ᎠᏑᏰᎯᏙᎮ.\nᎤᏍᏗ ᎢᏈᎬᎢ ᏝᏃ ᏙᏳ ᎤᏬᏚᎯ ᏱᎩᏎᎢ, ᎠᏎᏃ ᎠᏧᏣ ᎤᎨᏳᏎᎢ ᎢᏈᎬᎢ, ᎤᏬᏚᎯ ᎡᎵᏍᎨᎢ.\nᏫᎵᎻ ᎦᎷᏯᏍᏗ ᎠᎩᏩᏛᎲ ᏩᎩᎷᏣᏉ.\nᎢᎦᏛᏃ ᎤᏃᎯᏳᏅᎩ ᎾᏍᎩ ᎤᏬᏂᏒᎢ, ᎢᎦᏛᏃ ᎥᏝ ᏳᏃᎯᏳᏁᎢ.\nᎬᏩᏯᏫᏎᏃ ᎤᎾᏚᎵᏍᎨ ᎤᎾᏙᎴᎰᎯᏍᏗᏱ ᎬᏩᏓᏅᏬᏗ ᎨᏒ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎾᏍᎩ ᎬᏩᏰᎢᎵᏓᏍᏗᏱ.\nᎨᏍᏗ ᏰᎵᏉ ᏱᎩ ᏇᎯ ᎤᏩᏌ.\n“ᎣᏁ ᎤᏅᏏᏴᎢ.”\nᎯᎠ ᏍᎩᏂᏃᏅ ᏑᏓᎴᎩ ᎤᏩᏒ ᎠᎩᏁᏨᎢ, ᎯᎠ ᎾᎩᏪᏒ ᎠᏇᎷᏅ ᎠᏂᎦᏔᎲ ᏥᏙᎬᎢ; ᏗᎴᎯᏐᏗ ᎨᏒᎠᏲᎱᏒ ᏅᏗᎦᎵᏍᏙᏗ ᏍᎩᏱᎵᏙᎭ ᎪᎯ ᎢᎦ ᏥᎩ.\nᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎢᏳᏃ ᏌᏉ ᎤᏣᎴᏍᏗ ᎤᎦᏔ ᎡᎳᏗ ᏄᏬᏨᎾ ᎠᎴ ᏄᎪᏒᎾ ᏱᎩ, ᎤᏩᏒᏉ ᎨᏐ ᏂᎪᎯᎸᎢ; ᎢᏳᏍᎩᏂ ᎤᎪᎯ ᎤᏣᏙ ᎧᏁᏉᎪᎢ.\n“Ꭵ, ᎤᏙᎯᏳᎭ,” ᎤᏓᏅᏖᏙᏗ ᏄᏪᏎ ᏌᎳᏓ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪ ᏴᎪᎯᎩ ᎢᏧᎳᎭ ᎢᏁᏓ, ᎠᏏᏍᎪᏃ ᎥᏝ ᏱᏍᎩᎦᏙᎥᏍᎦ, ᏈᎵᎩ; ᎩᎶ ᎠᏴ ᎠᎩᎪᎲᎯ ᏥᎨᏐᎢ, ᎤᎪᎲᎯ ᎨᏐ ᎠᎦᏴᎵᎨᎢ; ᎦᏙᏃ ᎯᎠ ᏂᎯᏪᎠ; ᏍᎩᎾᏄᎪᏫᏏ ᎠᎦᏴᎵᎨᎢ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏁᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ ᎠᎴ ᎠᎦᏔᎲ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᏧᏭᎪᏓᏁᏗ ᏥᎩ ᏗᏅᏃᏛ ᎠᎴ ᏧᏂᏲᎱᏒᎯ ᎾᎯᏳ ᎦᎾᏄᎪᏥᎸᎭ ᎠᎴ ᎤᎬᏫᏳᎯ ᎿᏉ ᏂᎦᎵᏍᏔᏅᎭ,\nᎠᏆᏍᎫᏆᏛ ᏩᏍᏛ ᎩᎦᎨ ᎾᏆᎵᏍᏔᏅ, ᏓᏆᎴᏅ ᎦᏲᏟ ᎠᏆᎵᏍᎫᎭᏴ, ᎠᎩᏅᎪᏨ.\nᎠᏰᎸᏰᏃ ᏌᏉᏉ ᏥᎩ, ᎠᎴ ᎤᏣᏘ ᏥᏚᏫᏞᏫᏒ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏌᏉ ᎠᏰᎸ ᏚᏫᏞᏫᏒ, ᎤᏣᏘ ᎨᏒ, ᏌᏉᏉ ᎠᏰᎸ ᏥᏂᎦᎵᏍᏗᎭ; ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᏍᏗ ᎦᎶᏁᏛ.\nᎩᎶᏰᏃ ᏣᏔᏲᎯᎰ ᎠᏥᏁᎰᎢ, ᎩᎶᏃ ᏧᏲᎰ ᎠᏩᏘᏍᎪᎢ, ᎩᎶᏃ ᏥᏫᎬᏂᎰ ᎠᏥᏍᏚᎢᎡᎰᎢ.\n“ᎭᏕᏬ,” ᎤᏛᏁ ᎦᏂᎦᏔ ᎡᎹᏂᏓ.\nᎦᎵ ᎤᏃᎵᏨ ᏱᎨᏎ ᎠᏎ ᎤᏁᏅᏍᏘ ᎨᏒ, ᏳᎾᏛᏅᎢᏍᏕ ᎠᏎᏉ ᎢᏳᎾᎵᏍᏔᏁᏗ.\nᎾᏍᎩᏃ ᎤᏂᏅᏍᏗ ᎤᏃᏪᎳᏁ ᎯᎠ ᏄᏅᏁᎴᎢ; ᎣᎩᏅᏏᏛ ᎠᎴ ᏦᎦᏁᎶᏗ ᎠᎴ ᎣᏣᏓᏅᏟ ᏫᏨᏲᎵᎦ ᎢᏣᏓᏅᏟ ᏗᏣᏓᎴᏅᏛ ᏴᏫ ᎥᏘᏍᎩ ᎠᎴ ᏏᎵᏱ ᎠᎴ ᏏᎵᏏᏱ ᎢᏤᎯ.\nᏅᏯ ᏓᎵᎦᎷᏯᏍᎬ ᏗᏓᎴᎲᏍᎦ ᎦᏓ.\nᎾᎿ ᎾᏍᏉ ᏂᎯ ᎢᎸᎯᏳ ᏥᏤᏙᎲᎩ, ᎾᎯᏳ ᎾᏍᎩ ᏂᏣᏛᏁᎲ ᏥᏤᎲᎩ.\nᏚᎦᏔᎾᏫᏍᏔᏅ ᏧᎦᏌᏬᎸ ᏃᎴ ᎡᏝᏪᎯ ᏄᎵᏍᏔᏅ ᏩᏏᏓᏂ .\nᎾᏍᎩᏃ ᎤᏠᏱᏉ ᏍᎩᏯᎫᏴᏓᏁᎲ -ᏗᏇᏥ ᏥᎦᏥᏬᏁᏗᏍᎪ ᎾᏍᎩᏯ ᎢᏨᏬᏁᏗᎭ-ᎾᏍᏉ ᏂᎯ ᏗᏣᏛᏃᎯ.\nᎯᎠ ᎾᏍᎩ ᏑᎾᏓᎴᎩ ᎨᏒ ᎠᎾᎵᏥᏙᎲᏍᎦ ᎦᎶᏁᏛ ᎠᏂᏃᎮᎭ ᎠᏗᏒᏍᏗᏉ ᎨᏒ ᎤᎾᏚᎵᏍᎬ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎥᏝᏃ ᏄᎾᏠᎾᏍᏛᎾ ᎨᏒ ᏯᏅᏗᎭ, ᎤᏂᏁᏉᏍᏗᏱ ᎤᏂᏰᎸᎭ ᏥᎩᎵᏲᎬ ᎥᏆᎸᎢᏛ ᎨᏒᎢ.\nᏌᎳᏓ ᏥᏄᏍᏕ ᎤᏐᏱ ᎨᏎᎢ.\nᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᏚᏪᏎᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎩᎶ ᎢᏳᏍᏗ ᎡᎮ ᎤᏪᎿᎢ ᎠᏍᎦᏯ ᎾᏍᎩ ᎤᏪᎧᎮ ᎤᎦᏌᏯᏍᏗᏕᎩ ᎤᎿᎥᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏥᎳᏫᏎᎲ ᏧᎬᏩᎶᏗ ᎤᏓᏤᏪᎸ ᎠᏥᏃᏁᎴᎢ.\nᎤᏂᏣᏛᎩᏃ ᎠᏂᏧᏏ ᎤᎾᏛᎦᏅᎯ ᎨᏒᎩ ᎾᎿ ᎡᏙᎲᎢ, ᎠᎴ ᎤᏂᎷᏨᎩ ᎥᏝ ᏥᏌ ᎤᏩᏒ ᎨᏒ ᏱᏅᏧᎵᏍᏙᏔᏁᎢ, ᎾᏍᏉᏍᎩᏂ ᎳᏏᎳ ᎤᏂᎪᏩᏛᏗᏱ ᎤᏂᏰᎸᏒᎩ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏧᎴᏔᏅᎯ.\nᏙᎩᎾᏓᏍᎦᏍᏓᏁᎴ Ꮑ ᎠᏰᏟ ᏅᏃ, ᎦᏙᎬ ᎦᏟᎲ.\nᎢᏳᏰᏃ ᎾᏍᎩ ᎨᏥᏐᏅᎢᏍᏔᏅᎢ ᎤᏃᎯᏍᏓᏁᎯ ᏱᏂᎦᎵᏍᏗ ᎡᎶᎯ, ᎦᏙ ᎤᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏕᎨᎦᏓᏂᎸᏨᎭ, ᏚᏂᏲᎱᏒᏍᎩᏂ ᏚᎾᎴᎯᏌᏅ ᎨᏎᏍᏗ.\nᎠᎬᏱ ᎢᏣ ᎤᏓᎾᏫᏛᎮ ᏲᎾ, ᎠᎼ ᎭᏫᏂᏨ ᎤᏦᎥᏍᏔᏁ ᎠᏧᏣ, ᎦᎵ ᏂᎦᎨᏒ ᎬᏘ.\nᏂᎯᏍᎩᏂ ᎾᏍᎦᏅᎾ ᎢᏥᎶᏁᎥ, ᎠᎴ ᎢᏥᎦᏔᎯᏳ ᏂᎦᎥᎢ.\nᏫᎵᎻ ᏍᏉ, ᎢᏳᏍᏗᏉ ᎠᎩᏍᎩ, ᎤᏁᎸᎮ.\nᎾᏍᎩ ᎤᏙᎯᏳᏒ ᏥᏬᏓᎪᎾᏛᏗ ᎤᏍᏗᎩᏳ ᎨᏒ ᏂᎦᎥ\nᎤᏰᏌᏛ ᎤᏓᏅᎵᏰᎥ ᎦᏂᏱᏍᎨ ᏅᏓ, ᎣᏍᏓ ᎠᎪᏩᏛᏗ ᎨᏎ ᏓᏏᎳᏛ.\nᎠᏴ ᎾᏍᎩ ᎢᎸᎯᏳ ᏥᏐᏢᏗᏍᎩ ᏥᎨᏒᎩ, ᎠᎴ ᎤᏲ ᎢᏗᎬᏁᎯ, ᎠᎴ ᏗᎦᏂᏐᏢᏗ; ᎠᏎᏃ ᎥᎩᏙᎵᏨᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏂᏥᎦᏔᎿᎥᎾ ᎨᏒᎢ, ᎠᎴ ᎾᏉᎯᏳᏒᎾ ᎨᏒ ᎾᏍᎩ ᎾᏆᏛᏁᎸᎢ.\nᎾᏍᎩᏃ ᏥᏄᏍᏗ ᎢᏳᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏂᎦᏛ ᎢᎸᎯᏢ ᏱᏚᏂᎳᏫᏦᏅ, ᎠᎴ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏱᏓᏂᏬᏂᎭ, ᏳᏂᏴᎵᎸᏃ ᎾᎿᏂ ᎾᏂᎦᏔᎾᎥᎾ, ᎠᎴ ᎠᏃᎯᏳᎲᏍᎩᏂ ᏂᎨᏒᎾ, ᏝᏍᎪ ᏚᏂᎸᏃᏘᎭ ᏴᎬᎾᏛ?\nᎾᏍᎩᏃ ᏑᎾᏓᎴᎩ ᏴᏫ ᏗᎬᏩᏂᎾᏢᏅᎯ ᏙᏓᎦᏥᏳᎪᏓᏁᎵ, ᎣᏂᏃ ᎤᏂᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎠᎴ ᎠᏂ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗ ᎨᏎᏍᏗ, ᎤᏛᏁ ᎤᏁᎳᏅᎯ.\nᏂᎦᏓ ᏧᎵᎬᏩᏟ ᎨᏒ ᎤᏃᏪᎳᏅ ᎪᏪᎵ.\nᏫᎵᎻ ᎤᏣᏪᏐᎸᏍᏕ ᏚᏯᏪᎢᏍᏔᏅ ᏄᎵᏍᏔᏂᏙᎸ.\nᎹᎦ, ᎡᎵᏍᏓᎦ, ᏗᎹ, ᎷᎦ, ᎢᏧᎳᎭ ᏦᎩᎸᏫᏍᏓᏁᎯ\nᎤᏒᎢᏴ ᏌᎪᏂᎨ ᎠᏑᏫᏍᏙᏗ ᎠᏫᏍᎩ ᎤᏓᎵ ᏓᏳᏩᏂᎸ ᎦᎶᎯᏍᏗ, ᎣᎩᎾᏕᏒᏅ ᏦᎩᎭᏄᏫ ᏙᏍᏗᏙᎬ, ᎨᏍᏗ ᎠᏒᎩ ᎦᏂᏏ ᏲᎩᎾᏕᏒᎾ.\nᎯᎠᏃ ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎡᏗᎦᏔᎲᎢ, ᎾᏍᎩ ᏱᏗᎩᏍᏆᏂᎪᏗ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ.\nᎠᎴ ᎠᏴ ᎥᎩᏍᏕᎸᏗᏱ, ᎾᏍᎩ ᎥᏆᎵᏍᎪᎸᏓᏁᏗᏱ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎠᎩᏍᏚᎢᏍᏗᏱ ᏥᎣᎵ ᏂᏥᏍᎦᎢᎲᎾ, ᎬᏂᎨᏒ ᎢᏯᏋᏁᏗᏱ ᎤᏕᎵᏛ ᎨᏒ ᎣᏍᏛ ᎧᏁᎮᏛ;\nᎠᏂᏆᎵᏏᏃ ᎬᏩᏛᏛᏅ ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ, ᏚᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎥᏝ ᎬᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ ᎦᎷᏨᎭ.\nᏔᎵᏁᏃ ᏫᎤᎾᏙᏓᏋ ᎠᎴᏉ ᏂᎦᏛ ᎦᏚᎲ ᏂᏚᏂᏔᏫᏤ ᎤᎾᏛᏓᏍᏔᏂᎴ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎦᎶᏁᏛᏰᏃ ᎤᎾᏤᎸᎯ ᎠᎴ ᎠᎾᏙᎴᎱᏍᎩ ᎤᎾᏤᎸᎯ ᏛᏂᎾᏄᎪᏥ, ᎠᎴ ᎠᏂᎾᏄᎪᏫᏍᎨᏍᏗ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ, ᎾᏍᎩ ᏧᏂᎶᏄᎮᏗᏱ, ᎢᏳᏃ ᏰᎵᏱᎩ, ᎾᏍᏉ ᎨᎦᏑᏰᏛ.\nᏄᎬᏫᏳᏒᏃ ᏗᏓᏘᏂᏙᎯ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏤᏘ ᎠᏆᎫᏴᏛ ᎯᎠ ᎾᏍᎩ ᎠᏆᏓᏤᎵᎦᏯ ᎨᏒᎢ. ᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏴᏍᎩᏂ ᎠᏆᏓᏤᎵᎦᏯ ᎠᏆᏕᏅᎩ.\nᎬᏩᏚᏫᏛᏃ ᏚᎧᎿᏂᏙᎸ ᎤᏬᎸᎾᎥ ᎠᏂᏂ ᏚᎧᎾᏅ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎡᏥ, ᎠᎴ ᎣᏣᎵᏅᏟ?\n“Ꭵ, Ꭵ, Ꭵ!”\nᎾᎯᏳ ᎤᎷᏤ ᏣᏂ ᏗᏓᏬᏍᎩ ᎠᎵᏥᏙᎲᏍᎨ ᎢᎾᎨ ᏧᏗᏱ,\nᏤᎩᏏᏂ ᎤᏁᎸ ᎨᏎ ᎢᏴ ᎦᏙᎬ ᎦᏄᎾᏓᎴᎩ ᎠᏂᎫᏌ ᏥᏓᎾᏟᎮ, ᏧᏤᎵ ᎠᏂᏫᎾ ᏓᏘᎭᏁᎲ, ᎠᏯ ᎢᏳᎾᏛᎾ.\nᎠᏎᏃ ᏗᏂᎿᎸᏙᏍᏗᏱ ᏂᎨᏒᎾ, ᎥᏓᎵ ᎮᎾ, ᎠᏑᏗᏃ ᏫᏣᏓᎡᏒᎭ, ᎢᎬᏱᏱᏃ ᎯᏴᎩᏛ ᎠᏣᏗ ᎯᏁᏒᎭ, ᎠᎴ ᎯᏍᏚᎢᏒ ᎠᎰᎵ ᎠᏰᎵ-ᎠᏕᎸ ᏘᏩᏛᎯ; ᎾᏍᎩ ᎯᎩᏒᎭ ᎠᎴ ᏕᎯᏁᎸᎭ ᎠᏴ ᎩᎾᎫᏴᏗ.\nᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᏧᎾᏓᎾᏫᏛᎮ.\nᎤᏍᏆᏙᎾᏃ, ᎤᏂᎾᏅᎩᏒ ᏧᏪᏯ ᏗᏣ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᎧᏃᎮᎸᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᎩᏁᎸ ᏫᎾᏍᏛᎾ ᎬᏂᏛ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎬᏂᏛ ᎤᏪᏥ ᎤᏤᎵᎦ ᎨᏒᎢ.\nᎤᏔᎴᎦᏒ ᏭᏴᎴᎢ, ᏫᏥ ᏭᏩᏌᏙᏰᎢ ᏌᏌ ᎤᏪᏥ. ᎱᎷᏣ ᎦᏁᎮᎢ ᎦᏓᎭ ᎤᏁᎦ ᎠᏍᏓ.\nᎢᏳᏃ ᎩᎶ ᎪᎯᏳᎲᏍᎩ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏪᎧᎮᏍᏗ ᏧᏃᏑᎶᏨᎯ, ᎤᏅᏒᏉ ᏗᏂᏍᏕᎵᏍᎨᏍᏗ, ᏞᏍᏗᏃ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏱᏚᏂᏓᏁᎴᏍᏗ, ᎾᏍᎩ ᏗᎬᏩᏂᏍᏕᎸᏗ ᏱᎩ ᎤᏙᎯᏳᏒ ᏧᏃᏑᎶᏅᎯ ᎨᏒᎢ.\nᎢᏳᏰᏃ ᎾᏍᎩ ᏱᏄᏍᏕᎢ ᎿᏉ ᎤᏣᏘ ᎠᏎ ᎢᏳᎩᎵᏲᏨᎯ ᏱᏂᎦᎵᏍᏗᏍᎨ ᎡᎶᎯ ᏧᏙᏢᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ; ᎪᎯᏍᎩᏂ ᎨᏒ ᎤᏩᏒ ᎠᏓᎵᏍᎪᎸᏗᏍᎬ ᎠᏍᎦᏂ ᎨᏒ ᎠᎲᏍᎬᎢ ᏌᏉ ᎬᏂᎨᏒ ᏄᏓᏛᏁᎸ ᎤᎵᏍᏆᎸᏗ ᏕᎨᏌᏗᏒᎢ.\nᎢᏳᏍᏗᏉ ᎢᏳᎾᏛᏁᏗ ᏴᏫ!” ᏚᏌᏬᎴ ᏫᎵᎻ.\nᎤᏤᏍᏙ ᎤᏩᏌᏆᎴᎲ ᎾᎥᏂ ᎤᎵᏍᏛᏧᏅ.\nᏂᎦᏗᏳᏰᏃ ᏧᏓᎴᏅᏛ ᏤᎭ ᏂᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎾᏍᎩ ᎤᏣᏘ ᎬᏩᎦᏘᏯ ᎤᏙᏓᎵᏍᏗ ᎨᏒ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏣᏘ ᎦᎸᏉᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏂᏣᏘ ᎠᎾᏄᎮᎵᎬᎢ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏢᎬᎩ, ᎳᏏᎳ ᏧᏙᎢᏛ, ᏇᏗᏂᏱ ᎡᎯ, ᎺᎵ ᎠᎴ ᎤᎸᎢ ᎹᏗ ᎤᏂᏚᎲᎢ.\nᎦᏅᏍᏓ ᏭᏴᎮ.\n”ᎭᏩ,” ᎤᏛᏁ ᏌᏌ, ”ᎨᏍᏗᏗ ᎠᏯ ᎪᎱᏍᏗ ᎠᏆᏓᏅᏖᏙᏗ ᏱᎩ.\nᏥᏍᎦᎲᎾ. \nᎤᏁᎳᏅᎯ ᏗᎩᏙᏓ ᎤᎾᏤᎵᎦ ᏕᎤᎴᏔᏅ ᏥᏌ, ᎾᏍᎩ ᏤᏥᎸᎩ ᎨᏛ ᏤᏣᏛᏅᎩ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᏗᏥᎨᏫ ᏱᎨᏎᎢ ᎥᏝ ᏱᎨᏥᏍᎦᏅᎨᎢ, ᎠᏎᏃ ᎣᏥᎪᏩᏘᎭ ᎢᏣᏗᎭ; ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᏥᏍᎦᎾᎯᏳ ᎨᏒ ᎠᎵᏃᎯᏯᏍᎦ.\nᎤᎵᏍᏆᎸᏗᏃ ᎠᎨᏴ ᎾᏍᏉ ᎤᏲᎱᏒᎩ.\n”ᏧᏍᏆᏅᎾ.”\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎩᏍᏆᏂᎪᏕᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ, ᎥᏞᏍᏗ ᎤᏪᏘ ᎠᎪᏙᏗ ᎬᏗ, ᎠᎴ ᎥᏞᏍᏗ ᎤᏲ ᎠᎴ ᎠᏍᎦᏂ ᎨᏒ ᎠᎪᏙᏗ ᎬᏗ, ᏂᏓᎪᏔᏅᎾᏍᎩᏂ ᎦᏚ ᏄᏠᎾᏍᏛᎾ ᎨᏒ ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎬᏗ.\nᎩᎶᏃ ᎤᏩᏒᏉ ᎢᎠᏓᏌᎳᏗᏍᎨᏍᏗ ᎡᎳᏗ ᎢᏯᎬᏁᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎤᏩᏒᏉ ᎡᎳᏗ ᎾᏓᏛᏁᎮᏍᏗ ᎠᏥᏌᎳᏙᏗ ᎨᏎᏍᏗ.\nᎤᎾᏰᎯᏍᏗᏉᏍᎩᏂ ᎣᏓᏅᏛ ᎠᎦᏖᎾᏍᏗᏱ ᏗᎫᎪᏙᏗ ᎢᎦ ᎨᏒᎢ, ᎠᎴ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎠᏥᎸ ᎾᏍᎩᏯ, ᎾᏍᎩ ᎤᏂᏛᏙᏗ ᏥᎩ ᎬᏩᏍᎦᎩ.\nᏗᏂᎨᏫ ᎠᏂᎪᏩᏖᎭ, ᏗᏂᏲᎤᎵᏃ ᎠᏁᏙᎭ, ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏚᎾᏗᏩᏍᎦ, ᏧᏂᎵᎡᎾᏃ ᎠᎾᏛᎩᎭ, ᏧᏂᏲᏞᏒᎯᏃ ᏕᎨᎦᎴᏗᎭ ᎤᏲᏃ ᎢᏳᎾᏛᎿᏕᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎨᎦᎵᏥᏙᏁᎭ.\nᎤᎬᏫᏳᎯᏃ ᎤᎦᏔᎲᏒ ᏚᎧᎿᏁ ᏈᏓ. ᏈᏓᏃ ᎤᏅᏓᏕ ᎤᏁᏨ ᎤᎬᏫᏳᎯ, ᎯᎠ ᏥᏄᏪᏎᎴᎢ; ᎠᏏᏉ ᏄᏴᎳᏒᎾ ᏣᏔᎦ ᏦᎢ ᏅᏓᏍᏆᏓᏱᎵ.\nᎢᏓᎵᏅᏟ ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ ᎢᏣᏓᏙᎵᏍᏗᏍᎬᎢ.\nᎢᏳᏰᏃ ᎩᎶ ᎠᏛᎩᏍᎩᏉ ᏱᎩ ᎢᏯᏛᏁᎯᏃ ᏂᎨᏒᎾ ᏱᎩ ᎧᏃᎮᏛ ᏂᎦᏪᏍᎬᎢ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏓᏤᎸ ᏣᎪᏩᏘᏍᎪ ᏄᏍᏛ ᎤᏩᏒ ᎤᎧᏛᎢ ᎠᏓᎨᏗᏱ;\nᎾᏍᎩ ᎾᏍᏉ ᎬᏂᎨᏒ ᎢᏲᎲᏁᎸᎯ ᏕᏣᏓᎨᏒ ᎠᏓᏅᏙ ᎢᏳᏩᏂᏌᏛ.\nᏫᏥᎢᎦ ᎨᏒ ᎤᏚᎵᏍᎬ ᎤᏓᎾᏅᏗ, ᏧᎾᏗᏅᏗ ᏦᎯᏍᏙᏗ ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎨᏯ ᏧᎾᎭᎾᏬ.\nᎦᎵᏉᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎳᏅᏛᏉ ᎦᎸᎶᎢ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎠᎴ ᎠᏍᏓᏯ ᏗᎧᏁᎬ ᎩᎶ ᎦᎸᎳᏗ ᏗᎦᏔᏫᎢᏍᏗᏱ ᎠᎴ ᎾᎿ ᏗᎦᏍᎩᎸ ᏓᏳᏓᎴᏅᎩ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᎿᏉ ᎠᎵᏍᏆᏓ.\nᎤᏃᎮᎸ, ᏳᏚᎵᏍᎬᎾ ᎨᏒ ᎤᏬᎯᏳᏗ ᎤᎵᏍᏆᎸᏗ ᏓᎪᏩᏘᏍᎬ.\nᎠᏁᎮᏃ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏏᏫ ᏧᏙᎢᏛ ᏧᏪᏥ ᎠᏧᏏ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᎾᏍᎩ ᎾᎾᏛᏁᎮᎢ.\nᎠᏎᏃ ᎤᏩᏙᎯᏴᏓ ᎠᏆᏓᏅᏔ.\nᎨᏍᏗ ᏐᏉ ᏔᎵᏍᎪ ᎢᏳᏕᏘᏴᏓ ᎤᎶᏐᏅ ᏱᎨᏎ, ᎠᏌᎻᏓ ᎤᏩᏌ.\nᎪᎯᏳᏗᏍᎪ ᎨᏒ ᏤᎭ? ᏣᏤᎵᏛ ᏦᎯᏳᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ. ᏅᏩᏙᎯᏍᏛ ᎤᏓᏅᏖᏍᏗ ᎩᎶ ᏄᏍᏛ ᎣᏏᏳ ᎤᎡᎸᏒ ᎬᏗᏍᎬ ᎤᏩᏒ ᏂᏓᏓᏚᎪᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ.\nᎯᎠᏃ ᎾᏍᎩ ᎧᏃᎮᏛ ᎣᏣᏛᎦᏁᎸᎯ ᏥᎩ ᎠᎴ ᏥᏨᎾᏄᏫᏎᎭ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎢᎦᎦᏘ ᎨᏒᎢ, ᎠᎴ ᎤᏍᏗ ᎤᏅᎤᎵᏏᎩ ᏄᏪᎲᎾ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏄᎵᏍᏔᏂᏙᎸ ᏥᏌ ᎨᎵᎵ ᎤᏪᏙᎸᎩ; ᎥᏝᏰᏃ ᏳᏚᎵᏍᎨ ᏧᏗᏱ ᎤᏪᏓᏍᏗᏱ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎠᏂᏧᏏ ᎠᎾᏁᎶᏗᏍᎬ ᎬᏩᎯᏍᏗᏱ.\nᎠᎴ ᎠᏴ ᏫᏥᎦᏛ ᎢᏥᎦᏔᎭ, ᎠᎴ ᏫᎦᏅᏅ ᎢᏥᎦᏔᎭ.\nᎠᎵᏌᎳᏓᏍᎩ ᎤᏃᎴ ᎢᏳᏍᏗ ᎤᏃᏴᎬ ᏗᏁᎬ ᏧᏂᎨᎮᎩ.\nᏆᎴᏗᏃ ᏚᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᏚᎵᏍᎪ ᎤᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ ᏗᏳᏲᎯᏎᏗᏱ.\nᎢᏳᏍᎩᏂᏃᏅ ᎩᎶ ᎡᎯᏍᏗ ᏧᏓᏅᏓᏗᏍᏔᏅᎯ ᎨᏎᏍᏗ, ᎥᏝ ᎠᏴᏉ ᎡᎯᏍᏗ ᏯᏆᏓᏅᏓᏗᏍᏔᏅ; ᏂᎯᏍᎩᏂ ᏂᏥᎥ ᏰᎵ ᎡᎯᏍᏗ ᎢᏣᏓᏅᏓᏗᏍᏔᏅ; ᎾᏍᎩ ᏥᎶᏒᏍᏓᏁᏗᏱ ᏂᎨᏒᎾ ᏥᎳᏫᏎᎲᎢ.\nᎾᏍᎩᏍᎩᏂ Ꮎ ᏓᎾᎵᏍᎪᎸᏗᏍᎬᎢ, ᏂᏓᏕᏘᏴᎯᏒ ᎤᎾᏅᏓᏗᏏᏐᏗᏉ ᏂᎦᎵᏍᏗᏍᎪ ᎤᏂᏍᎦᏅᏨᎢ.\nᎠᏂᏦᎢᏃ ᎠᏂᏃᎮᏍᎩ ᎡᎶᎯ, ᎠᏓᏅᏙ, ᎠᎹ, ᎠᎴ ᎩᎬ, ᎾᏍᎩᏃ ᎯᎠ ᎠᏂᏦᎢ ᎨᏒ ᎤᏠᏱ ᎠᏂᏃᎮᎭ.\nᎾᏍᎩᏃ ᏥᏗᎪᏩᏗᎭ ᎢᎩᎧᎲ ᎠᏥᎸᏉᏗ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎾᏍᎩ ᎦᎸᎶ ᏭᎶᏒᎯ ᏥᎩ, ᎾᏍᎩ ᏥᏌ ᎤᏁᎳᏅᎯ ᎤᏪᏥ, ᎠᏍᏓᏯ ᏕᎩᏂᏴᏎᏍᏗ ᏕᏓᏁᎶᏛᎢ.\nᎦᏰᎵᏍᏗ, ᎠᏂᏔᎵ ᏄᎾᏓᎴ ᎠᏂᏍᎦᏯ ᎭᏂ ᎡᎶ, ᏂᏓᏅᏁ ᎠᏂᏳᏩᏁᎦ.\nᎯᏂᏅᎪᎢ!”\nᏫᏚᏐᏅᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏒᎩ; ᎬᏂᏳᏉ ᎡᏥ ᎠᎴ ᏱᏣᎵᏅᏟ.\nᎤᏃᎴ ᎤᏤᎵ ᎢᎦ ᎨᏎ!\nᎢᏨᏒᏰᏃ ᎣᏏᏳ ᎢᏥᎦᏔ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎢᎦ ᎤᎵᏰᎢᎶᎯᏍᏗ ᎨᏒ ᎾᏍᎩᏯ ᎦᏃᏍᎩᏍᎩ ᏒᏃᏱ ᏥᎦᎷᎪᎢ.\nᎠᏴᏍᎩᏂ ᎢᏓᎵᏅᏟ, ᏞᎦ ᎣᎦᏓᏓᎴᏔᏅ ᏦᏥᏰᎸᎢ, ᎥᏝᏃ ᏦᎩᎾᏫᏱ, ᎤᏟ ᎢᎦᎢ ᎣᎦᏟᏂᎬᏁᎸᎩ ᏕᏣᎧᏛ ᏦᎩᎪᏩᏛᏗᏱ, ᎤᏣᏘ ᎠᏚᎸᏗ ᎣᎬᏔᏅᎩ.\nᎠᎴ ᎾᏍᏉ ᏍᏆᏛᏅᎢᏍᏓᏁᎸᎭ ᏍᎩᏍᏆᏂᎪᏙᏗᏱ; ᎤᏚᎩᏰᏃ ᎠᏋᎭ ᎢᏣᏓᏙᎵᏍᏗᏍᎬ ᎢᏳᏩᏂᏐᏗᏱ ᏔᎵᏁ ᏫᏨᎷᏤᏗᏱ.\nᏉᎳᏃ ᎤᏙ ᎤᏪᏥ ᎤᏛᎦᏅ ᎤᏂᎭᎷᎬᎢ, ᎤᏬᏅᏒᎩ, ᏗᏐᏴ ᏭᏴᎸᎩ, ᎠᎴ ᏭᏃᏁᎸᎩ ᏉᎳ.\nᎧ, ᎢᏓᎵᏅᏟ, ᎢᏨᎸᏉᏗᎭ ᎾᏍᎩ ᎠᏴ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᏂᏣᏛᏁᎲ ᏍᎩᏯᏅᏓᏗᏍᎬᎢ, ᎠᎴ ᎢᏥᏍᏆᏂᎪᏗᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏕᏨᏲᎯᏎᎸᎢ.\nᎠᏎᏃ ᏈᏓ ᎤᎴᏅᎮ ᏚᏃᎮᎮᎴ ᏂᎦᏛ ᎣᏍᏛ ᎤᏱᎸᏎᎢ, ᎯᎠ ᏄᏪᏎᎢ;\nᎠᎴ ᎥᏝ ᎦᏓ ᎠᏂ ᏳᏁᎴᎢ ᏂᎤᏟᏍᏕ ᏏᎳᏏᏅᎯᏉ ᎢᎩᏛ, ᎠᏎᏃ ᎤᏚᎢᏍᏓᏁᎴ ᎾᏍᎩ ᎤᏤᎵ ᎢᏳᏩᏁᏗᏱ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎠᏏᏉ ᎤᏪᏥ ᏁᎲᎾ ᎨᏎᎢ.\nᎠᏎᏃ ᏚᏂᏁᏥᎸ ᎤᏂᏄᎪᎢᏍᏗᏱ ᏓᏂᎳᏫᎥᎢ ᎤᏅᏒ ᎨᏒ ᎤᎾᎵᏃᎮᎴᎢ,\n”ᎡᎵᏍᏗ ᎤᏲ ᎨᏎᎢ,” ᎤᏛᏁ ᏌᏌ.\nᏧᏙᏓᏋᏓ ᏃᎴ ᎤᏒᎯ ᎤᏩᏙᎯᏴᏓ ᎨᏎ.\nᎾᎿ ᎬᏩᏍᏓᏴᏅᎩ; ᎠᎴ ᎹᏗ ᏚᏕᎳᏍᏔᏅᎩ; ᎳᏏᎳᏍᎩᏂ ᎨᎸᎩ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ.\nᏗᎦᏍᎩᎶ ᏕᎦᏍᎩᎸ ᎠᏲᏓᏌᎲ, ᎠᏎᏃ ᎠᎩᏠᏫᏍᏗ ᎠᏆᎵᏍᏛᏦᏅ, ᏥᏐᎯ ᎣᎭᏁ ᎢᏣ ᎨᏒ ᎠᏍᏚᏗ.\nᎤᏚᎩ ᏂᎨᏒᎾ ᏫᎦᎶᎯᏍᏗ ᎠᎵᏌᎳᏗᏍᎬ ᏫᎦᎶᎯᏍᏗ, ᎤᏬᏚᏨ ᎡᎶ ᎦᎸᏉᏔᏅ ᏃᏉ ᎤᎾᏰᎯᏍᏙ ᏃᎴ ᎤᏍᎦᏎᏗ.\nᎠᎩᎾᏃ ᏥᏌ ᎤᎾᏘᏃᎮᎴᎢ, ᎠᎴ ᏧᎾᏄᏬ ᏚᏂᏢᏁᎴᎢ; ᏥᏌᏃ ᎤᎩᎸᏔᏁᎢ.\nᏃᎴ ᏄᎾ ᎤᏆᎶᎬ ᎭᏫᏂᏣ ᎤᎾᏓᏍᏔᎣᎢ ᎠᎾᏓᎶᏂᎨ ᏧᏪᏥ ᏄᏃ ᎠᏂᎵᏙ ᏧᏂᏅ.\nᎤᏓᏅᎯᏓ ᏅᏩᏍᏕ ᎤᏒᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎦᏗᏳ ᏗᎫᏴᎡᏗ ᎨᏒ ᏕᏣᎫᏴᎡᎮᏍᏗ; ᎠᏰᎵ ᎡᏣᎫᏴᎡᏗ ᎨᏒ ᎠᏰᎵ ᎡᏣᎫᏴᎡᎮᏍᏗ; ᎢᏥᏃᏔᏅᏗᏱ ᎢᏣᎵᏍᎪᎸᏓᏁᎸ ᎡᏣᎫᏴᎡᏗ ᎨᏒ ᎡᏣᎫᏴᎡᎮᏍᏗ; ᎾᏍᎩ ᎡᏥᎾᏰᎢᏍᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎡᏥᎾᏰᏍᎨᏍᏗ; ᎾᏍᎩ ᎡᏥᎸᏉᏙᏗ ᎨᏒ ᎾᏍᎩ Ꮎ ᎡᏥᎸᏉᏕᏍᏗ.\nᎢᏨᏒᏃ ᏕᏣᏤᎴᏍᏗ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏣᏂᎦᏘᏲ ᎤᏂᏅᏏᏙᎯ, ᎢᏳᏉ ᎤᎷᎯᏍᏗᏱ ᏕᎨᎦᏨᏍᏗᏍᎬ ᏭᏪᏙᎸᎯ; ᎾᏍᎩᏃ ᏳᎷᏨ ᎠᎴ ᏳᏩᏂᎸ, ᎾᏍᎩ ᎩᎳᏉ ᎢᏴᏛ ᏫᎬᏩᏍᏚᎢᎡᏗᏱ.\nᎥᏝ ᎠᎴ ᎡᏆᎭᎻ ᏧᏁᏢᏔᏅᏛ ᏥᎩ ᎾᏍᎩ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᎦᏛ ᏧᏪᏥ ᏱᎩ; ᎡᏏᎩᏉᏍᎩᏂ ᏚᏙᎥ ᎨᏥᏯᏅᏗᏍᎨᏍᏗ ᏣᏁᏢᏔᏅᎯ.\nᎠᎴ ᏂᎦᎥᏉ ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᎪᎯ ᎨᏒ ᎥᏝ ᎣᏍᏛ ᎣᏓᏅᏓᏗᏍᏗᏍᎩ ᏱᎩ, ᎤᏲᏉᏍᎩᏂ; ᎣᏂᏍᎩᏂᏃᏅ ᎢᏴᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎦᎾᏄᎪᏫᏍᎪ ᏚᏳᎪᏛ ᎨᏒ ᎤᎾᏄᎪᏫᏒᎯ, ᎾᏍᎩ ᎢᏳᎾᎵᏍᏓᏁᎸᎯ.\nᏥᏌᏃ ᎠᎦᏬᎥ, ᎩᎳᏉ ᎢᏴᏛ ᎤᎿᎷᏎᎢ, ᎠᎹᏱ ᎤᏓᏅᏎᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎦᎸᎳᏗ ᏣᏥᏍᏚᎩᎡᎴᎢ, ᎠᎴ ᏭᎪᎮ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎡᎳᏗ ᏅᏧᏛᎿᏗᏎ ᎫᎴ-ᏗᏍᎪᏂᎯ ᏗᏤᎵᏛ; ᎠᎴ ᎤᏪᏯᎸᏤᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎮᏯᏔᎮᏍᏗ ᎾᏍᎩ ᎢᎦ ᎦᏘ ᎭᏫᏂ ᏤᎲ ᏞᏍᏗ ᎤᎵᏏᎩ ᏱᎨᏎᏍᏗ.\nᎠᎴ, ᎩᎶ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᏎᏉᏉ ᎾᏍᎩ; ᎩᎶᏍᎩᏂ ᎢᎧᏁᎢᏍᏗᏍᎨᏍᏗ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎾᎿ ᎠᎲᎢ, ᎾᏍᎩ ᎠᏍᏓᏱᏳ ᎤᏚᏓᎳ.\nᏕᏥᎦᎾᏬᏗᎭ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎪᎯᎸ ᏰᎵᏉ ᎾᏍᏉ ᏗᎬᏩᏍᏕᎸᏗ ᎾᏍᎩ Ꮎ ᎤᏩᏒ ᎬᏩᎷᎯᏍᏓᏁᎯ ᎤᏁᎳᏅᎯ ᎠᏂᎷᏤᎲᎢ, ᏫᎾᏍᏛᎾᏰᏃ ᎡᎭ ᏧᎵᏍᏗᏰᏓᏁᏗᏱ.\nᎾᏍᎩ ᎯᎠ ᏄᎾᏛᏁᎸ ᎭᎻᏂᏯ ᎠᎴ ᎡᎵᎩ, ᎾᏍᎩ ᏕᎦᏥᏲᏒ ᏌᏓᏂ ᏕᏥᏲᎯᏎᎸ ᎤᎾᏕᎶᏆᏍᏗᏱ ᎤᏂᏐᏢᏙᏗᏱ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎠᏂᏯᏫᏍᎩᏃ ᎤᏂᏍᏕᏲᎸ ᏧᏣᏲᏍᏗ ᎠᎵᏍᏚᎶ ᎤᏃᏢᏅᎩ ᎠᎴ ᎬᏩᏍᏚᎳᏅᎩ, ᎠᎴ ᎩᎦᎨ ᎠᏄᏬ ᎬᏩᏄᏬᎥᎩ,\nᎤᏁᏨᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ; ᎬᏂᏳᏉ ᎤᏣᏔ ᎾᏕᏘᏴ ᎬᏍᏕᎸᎯᏓ, ᎠᎴᎥᏝ ᎢᎸᎯᏳ ᎾᏉᎯᏳᏅᎾ ᏱᎩ ᏣᏁᏨᎢ, ᎠᏎᏃ ᎥᏝ ᎢᎸᎯᏳ ᎠᏫ-ᎠᎩᎾ ᎠᏎᏄᎸᎯ ᏱᏍᎩᎧᏁᎶᎢ, ᎣᏍᏛ ᎣᎦᏓᏅᏓᏗᏍᏙᏗ ᏗᏆᎵᎢ.\nᎤᏰᏤ, ᎤᏍᏗ ᎭᎸᏂ ᎢᏳᏍᏗ.\nᎪᎱᏍᏗ ᎣᏍᏓ ᎠᏒᎩ ᎤᏩᏩᏒᏤ ᏧᏍᏆᏴᏍᏗ.\nᏗᎦᎳᏫᎢᏍᏗᏱᏃ ᎤᎧᎵᏨᎩ ᏧᎧᎵᏨᎩ ᏧᎦᏒᏍᏗ ᎤᏁᎳᏅᎯ ᎠᏥᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ; ᎥᏝ ᎠᎴ ᎩᎶ ᏫᎬᏩᏴᏍᏗ ᏱᎨᏎ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎬᏂ ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏧᏕᏯᏙᏗ ᎨᏒ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏥᏚᎾᏒᎦᎸ ᏱᏚᎵᏍᏆᏛ.\nᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ ᎠᏂᏙᎾᎡ ᏯᎾᏓᏅᏍᎬᎾ, ᎾᎥᏂ ᎤᎾᏓᏓᏍᎨ. ᎬᎭᏅ ᎢᎪᎯᏓ ᎤᏩᏅᏖᏍᏗ ᎠᏌᎻᏓ, ᎾᏍᎩᏯ ᏏᏓᏁᎸ ᏗᎨᎦᏥᎶᏍᏔᏅ.\nᏗᏇᏥ ᏗᏣᏍᏗᎢ, ᎾᏍᎩ ᏔᎵᏁ ᎢᏨᏁᎵᏨᎯ ᏥᎩ [ᎢᏗᎬᏤᎵᏛ] ᎢᏣᏕᏗᏱ, ᎬᏂ ᎦᎶᏁᏛ ᎠᏙᏢᏅᎭ ᏕᏣᏓᏅᏛᎢ,\nᎠᎴ ᎯᎠ ᏂᎨᏥᏪᏎᎮᏍᏗ, ᎬᏂᏳᏉ ᎠᏂ; ᎠᎴ ᎬᏂᏳᏉ ᎾᎿᏂ; ᏞᏍᏗ ᎢᏤᏅᏒᎩ, ᎠᎴ ᏞᏍᏗ ᏗᏥᏍᏓᏩᏛᏒᎩ.\nᏲᎾ ᎤᏤᏍᏙ ᎤᎷᏤ, ᎤᏅᏏᏴ ᎦᏍᎩᎶᎩ ᎤᏩᏁ.\nᏗᏑᏫᏓ ᏧᎳᏑᏟ ᏓᏣᏯᏓᏍᎩᏍᎬ.\nᎯᎠ ᏄᏪᏎᎢ; ᎠᏴ ᎾᏍᏉ ᏍᎩᏂᎥᏏ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎾᏍᎩ ᎩᎶ ᏥᏯᏏᏔᏗᏍᎨᏍᏗ ᎠᏥᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\n”ᏍᎩᏉᏗ ᏄᏍᏕᏍᏗ ᏎᏉ ᎡᏓᏍᏗ,” ᎡᎵᏍᏗ ᎣᎯᏍᏙᏗ ᎠᎩᏴᏍᏗ ᏱᏥᏯᎡ ᎡᎵᏍᎨ.” \nᎨᏍᏗ ᎪᎱᏍᏗ ᏰᎵᏍᎨ ᏫᎵᎻ.\nᏓᏥᏩᏛᎯ ᎢᏗᎬᎾᏗ ᏗᎪᏪᎶᏗ ᎠᏯ ᎢᎩᏠᏯ ᎢᏗᏴᏫ, ᎤᏛᏁᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎣᏏᏳ ᎢᏳᏓᎵᏍᏓᏁᏗ ᎨᏒ ᏗᎨᏥᎤᏍᏕᏎᎸᎯᏉᏍᎪ ᎤᏂᎷᏤᎭ, ᏥᎪᎨ ᎾᏍᏉ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ? ᎪᎯᏳᏗᏰᏃ ᎨᏒ ᏚᏳ-ᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᏥᏰᎸᎾᏁᎴ ᎡᏆᎭᎻ ᎢᏓᏗᎭ.\nᎣᏏᏉ ᏄᏛᎾᏕᎦ.”\nᎢᎳᎩᏳᏃ ᎾᏍᎩ ᏄᏍᏕ ᎠᏥᏰᎸᎾᏁᎴᎢ? ᏥᎪ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏥᎨᏎᎢ? ᏥᎪᎨ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᏥᎨᏎᎢ? ᎥᏝ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏥᎨᏎᎢ, ᎠᏥᎤᏍᏕᏎᎸᎯᏍᎩᏂ ᏂᎨᏒᎾ ᏥᎨᏎᎢ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎤᏂᏣᏘ ᏚᏂᎳᏫᏦᎴᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏳᏜᏅᏕ, ᎥᏝ ᎾᏍᏉ ᎦᎶᎯᏍᏗᏳᎶᏗ; ᎧᏃᎮᏛᏃ ᏚᎵᏥᏙᏁᎴᎢ.\nᎾᏍᎩ ᎡᏥᎷᏤᎲᎢ, ᎾᏍᎩ ᎬᏃᏛ ᏅᏯ ᎤᏂᏲᎢᏎᎸᎯᏍᎩᏂᏃᏅ ᎤᏙᎯᏳᎯ ᏴᏫ, ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏑᏰᏛ ᎠᎴ ᎦᎸᏉᏗᏳ,\nᎤᏁᎳᎩᏃ ᎤᏪᎵᏎᎸ, ᏉᎳ ᎤᎴᏅᎩ ᎠᎩᎳᏫᏍᏗᏱ, ᎤᏬᏰᏂ ᏴᏫ ᏚᏖᎸᎾᏁᎸᎩ; ᎤᏣᏘᏃ ᎡᎳᏪ ᎤᏅᏅ, ᏚᏬᏁᏔᏅᎩ ᎠᏂᏧᏏ ᎤᏂᏬᏂᎯᏍᏗ ᎤᏮᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ;\nᎠᏎᏃ ᏄᏂᎬᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏄᏅᏂᏌᏁ ᎤᏂᏣᏘ ᏴᏫ, ᎾᏍᎩ ᏆᎳᏆ ᎤᏂᏔᏲᏍᏗᏱ ᏧᏲᎯᏎᏗᏱ.\nᏥᏌᏃ ᎤᎪᎲ ᏓᏠᏱᎲᎢ, ᎠᎴ ᏚᎪᎲ ᎠᏂᏧᏏ ᎾᏍᎩ ᎤᏂᏍᏓᏩᏙᎸᎯ ᏓᎾᏠᏱᎲᎢ, ᎡᎯᏍᏗ ᎤᏓᏅᏓᏛᎩ, ᎠᎴ ᎤᏕᏯᏙᏗ Ꮔ ᎵᏍᏓᏁᎸᎩ.\nᎦᎸᎳᏗ ᏭᏔᎷᏁᎢ, ᎦᎸᎳᏗ ᏫᏄᏩᏁᎴ ᏧᏏᎳᏛᏙᏗ, ᏚᏲᏎ ᏰᎵ ᎢᎦᎢ, ᎤᏃᎴ ᎠᏲᏙᏗ ᏄᏩᏁᎴ.\nᎿᏉᏃ ᏙᏓᎦᏅᏏ ᏧᏤᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᏙᏓᎦᏟᏌᏂ ᎨᎦᏑᏰᏛ ᏧᏤᎵᎦ ᏫᏙᏛᏯᏅᎯ ᏅᎩ ᏂᏙᏗᎨᎶᏍᎬ ᎤᏃᎴ, ᎡᎶᎯ ᏭᎵᏍᏘᏂᎸ ᏅᏓᏳᏓᎴᏛ ᎦᎸᎳᏃ ᏭᎵᏍᏘᏂᎸ ᏫᎦᎷᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᏥᏌ ᎤᏍᏆᏛ ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏍᎬᎢ, ᎨᎵᎵ ᎤᏓᏅᏒᎩ, ᏧᏗᏱ ᎠᏍᏛ ᏭᎷᏨᎩ ᏦᏓᏂ ᎠᏍᎪᏂᏗᏢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᎤᎾᏙᏓᏆᏍᎬ ᎤᎬᏫᏳᎯ.\nᏤᏍᏗ ᎤᏁᎦᎭ ᏣᎧᏛ ᏱᏍᎩᏃᎯᏎᎮᏍᏗ ᏄᏍᏛ ᎤᏩᏙᎯᏴᏓ.\nᏥᏌᏃ ᎤᎴᏫᏍᏔᏅ ᏫᏚᏯᏅᎲᎩ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎦᏙ ᎢᏍᏓᏚᎵ ᎠᏴ ᎢᏍᏛᏯᏛᏁᏗᏱ?\nᎤᏂᏣᏘᏃ ᏌᏉ ᎢᎦᎦᏛ ᎤᎾᎦᏌᏯᏍᏔᏁ ᏈᎵᎩ ᎧᏃᎮᏍᎬᎢ, ᎤᎾᏛᎦᏅ ᎠᎴ ᎤᏂᎪᎲ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎠᏎᏰᏃ ᏌᏉ ᏧᏲᎯᏎᏗ ᎨᏐ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒ ᎢᏳᎢ.\nᎿᏉᏃ ᏉᎳ ᎤᏓᏅᏒᎩ ᎠᏂᏅᎢ.\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎦᏪᎳ, ᎬᏂᏳᏉ ᏌᏯᏂ ᏓᏥᏂ ᏅᏯ ᏗᏓᏙᏕᎯᎯ, ᎠᎴ ᏅᏯ ᎠᏓᎿᏍᏆᎶᏍᏗᏍᎩ; ᎠᎴ ᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ ᎾᏍᎩ ᎥᏝ ᎤᏕᎰᎯᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎾᏍᎩ, ᎠᎴ ᏩᏍᏛ ᎦᎸᎳᏗᏳ ᎡᎯ ᎤᏪᏥ ᎠᎪᏎᎮᏍᏗ; ᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏓᏳᏁᎵ ᎤᏙᏓ ᏕᏫ ᎤᏪᏍᎩᎸᎢ.\nᎠᏍᏕᎵᎭ ᎦᏓᏁ ᏃᎴ ᎤᎵᏏᎩ ᎤᏳᏓᏍᏙᏗ ᎠᏒᏆᎶᏍᏗ ᎭᏫᏂᏣ.\nᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎢᏨᏲᎵᎦ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ. ᎠᎴ ᎦᎬᏩᏏᏛᏂᎸᎩ.\nᎬᏩᏯᏫᏍᎨᎢ, ᎠᎴ ᎤᏂᏲᎮ ᎤᏂᏩᏛᎡᏗᏱ ᎪᎱᏍᏗ ᎦᎬᏩᎳᏫᏎᏗ ᎨᏒᎢ.\nᎡᏝᏪᎯ ᎤᏪᏞ ᏌᎳᏓ.\nᏧᏓᎴᏅᏓ ᏄᎾᏛᏁᎴ ᎠᎾᏟᎲ ᎠᏣᏗ ᏃᎴ ᎣᏍᏓᏓᏤᎵ. \nᎦᎶᎯᏍᏗᏳᎳ ᏭᎷᏤᎢ, ᏌᎳᏓ ᏚᏏᎳᏛᏅ ᏥᎦᏓᎡᎢ.\nᎢᎦᏉᏃ ᏄᎵᏍᏔᏅ ᏗᏂᎳᏫᎩ ᏴᏫ ᎠᏁᎲ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ ᏚᏂᎳᏫᏤᎢ, ᎠᎴ ᏓᏂᎳᏫᎥ ᎬᏩᏘᏃᎴ ᎯᎠ ᏄᏂᏪᏎᎢ;\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏧᎳ ᏚᏂᏔᎴᏐᎢ, ᏥᏍᏆᏃ ᎦᎳᏅᏛ Ꭰ-ᏂᏃᎯᎵᏙᎯ ᏚᎾᏁᏍᏓᏝᎰᎢ; ᏴᏫᏍᎩᏂ ᎤᏪᏥ ᎥᏝ ᎢᎸᎯᏢ ᎠᏍᎪᎵ ᎤᏠᏗᏱ ᏱᎩ.\nᎠᎴ ᎾᏍᏉ ᎠᎵᏫ ᎾᎿ ᎡᏙᎲ, ᎤᎷᏤ ᎤᎦᏔᏁᎢ, ᎠᎴ ᎠᏂᏗᏢᏉ Ꮔ-ᎶᏎᎢ.\nᎢᏥᏁᎫ ᎠᎴ ᏗᏥᎨᏫ! ᎦᏙ ᎤᏍᏗ ᎤᏟ ᎦᎸᏉᏗᏳ, ᎠᎵᏍᎪᎸᏔᏅᎯᏍᎪ, ᎠᏥᎸᎨ-ᎨᎳᏍᏗᏱ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏥᏂᎬᏁᎭ ᎠᎵᏍᎪᎸᏔᏅᎯ?\nᎠᏯᏗ ᏗᏥᏅᎥᏍᎩ.\nᏂᎦᎥ ᎪᎱᏍᏗ ᎾᏍᎩ ᎤᏬᏢᏁᎢ, ᎠᎴ ᏂᎦᎥ ᎪᏢᏅᎯ ᏥᎩ ᎥᏝ ᎪᎱᏍᏗ ᎾᏍᎩ ᏄᏬᏢᏅᎾ ᏱᎩ.\nᏐᏉ ᎪᎳ ᎤᏒᎯ ᎠᏤᎯ ᎡᏦᏛ, ᎠᏂᎦᏲᏟ ᎤᏁᎾᎢ ᎠᏂRidge ᎠᏂᏍᎦᏯ, ᎤᎩᏓᏟᏅᏯ ᎨᎵ ᎤᎾᏓᏓᏍᎩᏌᏁ ᎠᏨᏍᏛ ᎦᏍᎩᎸ, ᎤᏁᎦ ᎪᏪᎵ ᎤᏂᏌᎡ, ᎤᏕᎳᏓ ᎤᏂᏍᏓᏱᏕ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ, ᎤᏂᎾᏗᏅᏎᎴ ᎠᎹᏰᎵ ᏂᎦᏓ ᏣᎳᎩᏱ ᎠᏰᎵ ᎦᏙ, ᎠᏁᎵᏍᎨ ᎣᏍᏓ ᎠᏓᎴᏂᏍᎬ, ᏳᏂᏃᎮᎸᎾ, ᎨᏥᎧᎯᏴᏍᏗ, ᎠᏤᎯ ᏳᏫᏯᏍᏗ ᎾᎿ ᎨᏒ.\nᏂᎦᏓ ᎠᏍᏆᏂᎪᏗᏍᎨ.)  ”ᎤᏙᎯᏳᎯ, ᎢᏳᎯ, ᎢᏳᎯ,” ᎤᏛᏁ ᏌᏌ ᎠᏨᏯᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏍᎪᎯᏧᏈ ᎢᏳᏟᎶᏛ ᎪᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎾᎩ ᎪᏪᎵ ᎡᏣᏚᎬᎢ, ᎠᎴ ᏄᎳ ᎯᎲᎦ, ᎠᎴ ᎯᏍᎩᏍᎪᎯ ᎰᏪᎸᎦ.\nᏄᏓᎴᏒ ᎪᎱᏍᏗ ᎢᏤᏅᎢᏍᏔᏅᎯ ᎨᏒ, ᎾᏍᎩ ᎤᏣᏘ ᎨᏣᏓᏁᏗ Ꭸ-ᏒᎢ, ᎾᏍᎩ ᎢᏳᎬᏂᏐᏗᏱ ᎠᎦᎵᎮᎵᏤᏗᏱ ᎤᏁᎳᏅᎯ.\nᎾᏃ ᎦᏟᏐᏗ ᎨᏒ ᎤᎾᏓᏅᏘ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎵ, ᎾᏍᎩᏯ ᏥᎦᏥᏁᏤᎸᎢ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᎬ ᎨᎴᏏᏱ, ᎾᏍᎩᏯ ᏂᏣᏛᏁᎮᏍᏗ.\nᎤᎿᎷᏎᏃ ᎣᏓᎸᎢ, ᎠᎴ ᏚᏯᏅᎮ ᎾᏍᎩ ᎤᏚᎵᏍᎬ ᏧᏯᏅᏗᏱ; ᎠᎴ ᎬᏩᎷᏤᎮᎢ.\nᏕᎪᏪᎵᏍᎬᏰᏃ ᏗᎦᎨᏗᏳ ᎠᎴ ᏧᎵᏂᎩᏗᏳ, ᎤᏙᎯᏳ, ᎠᎾᏗᎭ; ᎠᏰᎸᏍᎩᏂ ᏲᏪᎳ-ᏗᏙᎭ ᎠᏩᎾᎦᎳᎯᏳ, ᎦᏬᏂᏍᎬᏃ ᎬᏕᎰᏙᏗᏉ.\nᎦᏳᎳ ᎯᎠ ᎾᎩᏪᏒ, ᎠᎴ ᎢᎬᏱ ᎦᏰᎯ ᎯᎠ ᏂᏥᏪᎭ, ᏔᎵᏁ ᏥᏫᏥᎦᏔᎰ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎠᎩᎪᏁᎸ ᎪᎯ ᎨᏒ ᎦᏥᏲᎳᏁᎭ ᎾᏍᎩ Ꮎ ᎦᏳᎳ ᎤᏂᏍᎦᏅᏨᎯ ᏥᎩ, ᎠᎴ ᏂᎦᏛᏉ ᎠᏂᏐᎢ, ᎾᏍᎩ ᎢᏳ ᏔᎵᏁ ᏱᏫᎠᎩᎷᏨ, ᎥᏝ ᏴᎦᎦᎵᏏᏅᏓ;\n”ᎯᏣᏛᎦᏍᏓ, ᎭᏩᏧ!” ᎱᏛᏁᎢ.\nᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎢᏧᎳ ᏌᏉ ᎠᏰᎸ ᏄᎾᏛᏅ ᏙᎯᏱ ᎢᏳᏅᏁᏗᏱ ᎤᏁᎳᏅᎯ, ᏓᏓᎿᏩᏍᏛ ᎤᏮᏙᏗᏱ, ᎾᏍᎩ ᎤᏮᏔᏅ ᎤᎸ ᏓᎾᏓᏍᎦᎬᎢ.\nᏂᎦᏛᏃ ᏕᎦᎳᏫᎥ ᎠᏂᏂ ᎤᏯᏅᏒᎯ ᏓᏂᎧᏅ ᎤᏂᎪᎮ ᎤᎧᏛ ᏗᎧᎿᏩᏗᏙᎯ ᎤᎧᏛ ᎾᏍᎩᏯ ᎨᏎᎢ.\nᏐᏉ ᎢᏯᎦᏴᎵᏉ ᎾᏂᎠ.\nᎠᏍᎡᏃ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᏅᏓᎨᏨᏁᎵ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏓᏆᏙᎥᎢ, ᏂᎬᏩᎦᏔᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᏅᏛᎩᏅᏏᏛ.\nᎤᏂᏣᏘᏃ ᎨᏒ ᏕᎬᏩᏂᎦᏘᎸᏒᎩ; ᏗᏄᎪᏗᏍᎩᏃ ᏚᏂᏄᏪᏒ ᎤᏂᏁᏨᎩ ᏗᎨᏥᎵᎥᏂᏍᏗᏱ.\nᎾᏍᎩ ᎯᎠ ᎺᎵ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᏦᎠᎾ, ᎠᎴ ᎺᎵ ᏥᎻ ᎤᏥ, ᎠᎴ ᏅᏩᎾᏓᎴ ᎠᏂᎨᏴ ᎠᏁᎯ, ᎾᏍᎩ ᏥᏫᎬᏩᏂᏃᏁᎴ ᎨᏥᏅᏏᏛ.\nᎠᎴ ᎠᏴ ᎢᎬᏱ ᏃᎨᏅᏒᎩ ᏥᏳ ᏗᏔᎸᎢ, ᎠᎴ ᎣᎦᏣᏅ, ᎡᏐᏏ ᏬᎩᎶᏒᎩ; ᎾᎿ ᏉᎳ ᎣᏥᏲᏗᏱ ᎣᎩᏰᎸᏒᎩ, ᎾᏍᎩᏰᏃ ᎢᏳᏪᏛ ᎨᏒᎩ, ᎤᏩᏒ ᎡᎳᏗᏉ ᏭᎶᎯᏍᏗᏱ ᎤᏰᎸᏒᎩ.\nᎾᏍᎩᏴ ᎠᏲᎰᏒ ᏲᎾ, ᎢᎦᏅᏛᎢ ᎦᎸᏓᏱ ᏛᏂᎩᏏ ᎡᎶ, ᎯᎸᎯᏳ ᏫᎬᎩᏍᏗ ᏱᎨᏒᎾ.\nᎢᎸᎯᏢᏃ ᎤᏛᎾ ᎦᏚᎲ ᎠᎴ ᎤᏍᏗ ᎦᏚᎲ ᎢᏥᎷᎨᏍᏗ, ᎢᏣᏓᏛᏛᎲᏍᎨᏍᏗ ᎩᎶ ᎡᎲ ᎤᏓᏅᏘ, ᎾᎿᏃ ᎢᏥᏁᏍᏗ ᎬᏂ ᎥᏣᏂᎩ.\nᎠᎬᏱ ᎪᎦ ᎠᎴᏂᏍᎬ ᏕᎦᎶᎨᏒ, ᎤᎵᎮᎵᏍᏗ ᎤᏕᏘᏴᏌᏗᏒ.\nᏔᎵᏁᏃ ᏪᎯ ᎾᏍᎩ ᎤᏓᏴᏒᎩ, ᎠᎴ ᎤᏲᎱᏒᎩ; ᎾᏍᏉᏃ ᎾᏍᎩ ᎥᏝ ᏧᏪᏥ ᏱᏚᏪᎧᎯᏰᎢ; ᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᏦᎢᏁ ᏪᎯ.\nᎤᎬᏫᏳᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᎦᏌᏯᏍᏓ ᏂᏚᏳᎪᏛᎾ ᎢᏯᏛᏁᎯ ᏗᎫᎪᏗᏍᎩ ᏂᎦᏪᏍᎬᎢ.\nᎦᎵᏦᏩᏛ ᎦᏍᎩᎶ ᎠᏉᏢ ᏧᎦᏘᏴ ᎢᏳᏪᏍᏘ.\nᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎾᎦᏌᏯᏍᏔᏁᎢ, ᏓᎾᏓᏛᏛᎲᏍᎨ ᎦᏛᎬ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒᎢ.\nᏧᎾᏓᎴᏅᏛᏍᎩᏂ ᏴᏫ ᎤᏃᎯᏳᏅᎯ ᏥᎩ, ᏙᏦᏪᎳᏁᎸ ᏙᎫᎪᏔᏅ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ ᏂᎨᏒᎾ ᎪᎱᏍᏗ ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏁᏯᏙᏤᏗᏉᏍᎩᏂ ᎤᏩᏒ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ, ᎠᎴ ᎩᎬ ᎠᎴ ᎪᎱᏍᏗ ᎬᏬᏍᏔᏅᎯ ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ.\nᎠᎴ ᎠᏏ ᎤᏂᏣᏛᎩ ᎤᏃᎯᏳᏅᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏩᏒ ᎧᏁᎬᎢ;\n“ᎭᏩ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎭᏩ.\nᎠᏓᏔᏍᎩ ᏅᏙ ᏎᎦᏨ ᎤᏓᏴᎳᏔᏅ ᏍᎩᏴ ᏏᏅᏓ ᎤᎶᎩᎶᏅ.\n“ᎦᏙᏃ ᎦᎷᏯᏍᏗ ᎤᏂᎬᎨᎢ.” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, ᏣᏁᎳᏉ ᎢᏳᏕᏘᏴᏓ ᎨᏎ.\nᎥᏝ ᎡᎶᎯ ᏗᎧᎲᏍᏗᏱ ᏱᏥᏔᏲᎯᎭ, ᏘᏲᏍᏙᏓᏁᏗᏱᏉᏍᎩᏂ ᎤᏲ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏤᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏥᎡᏥᎶᎾᏍᏔᏂ; ᎤᏂ-ᏣᏖᏍᏗᏰᏃ ᎠᏴ ᏓᏆᏙᎥ ᎠᏂᎷᎯᏍᏗᏍᎨᏍᏗ, ᎠᏴ ᎦᎶᏁᏛ] ᎠᎾᏗᏍᎨᏍᏗ, ᎠᎴ ᎿᏉ ᎤᏍᏆᎸᎯᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏗᏥ-ᏍᏓᏩᏛᏒᎩ.\nᎿᏉᏃ ᎠᏍᎩᎾ ᎦᎸᏉᏗᏳ ᏗᎦᏚᎲ ᏭᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᏭᎩᎸᏔᏁ ᎤᏍᎪᎵ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ;\nᎿᏉᏃ ᎠᏂᏧᏏ ᎬᏩᏲᎸᎩ ᎬᏩᏲᎸᎩ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎭᏢ ᎾᏍᎩ ᎡᏙᎭ?\n”ᏍᎩᏙᎵᎩ, ᏧᏍᏆᏴᏍᏗ,” ᎤᏛᏁ, ”ᎠᎬᏱ ᎤᏂᏲᎸᎢᏍᏔᏅ ᎨᏍᏗ ᎦᎬᏙᏗ ᏱᎩ.\nᎠᎴ ᎦᏙᏃ ᏣᎬᏫᏳᎯ, ᏣᎬᏫᏳᎯ, ᎢᏍᎩᏲᎰᎢ, ᏂᏥᏪᏍᎬᏃ ᏂᏣᏛᏁᎲᎾ ᎢᎨᏐᎢ?\nᏧᏙᏓᏆᏓ ᏓᏂᎨᎯᏒ - ᏕᎨᏴ, ᏚᏅᏓᏒ, ᏚᎨᏓᎵᏴ - ᎾᎥᏉ ᎣᎭᏁ ᎠᏁᎨ ᏗᎾᏓᎭᏲᎯ ᎠᏙ.\nᎢᎾᏛᏃ ᎠᎰᎵ ᏓᏳᏄᎪᏫᏒᎩ ᎠᎹ ᏥᎦᏃᎱᎩᏍᎪ ᎾᏍᎩᏯᎢ, ᎠᎨᏴ ᎤᎨᎮᎩ ᎾᏍᎩ ᎦᏃᎱᎩᏍᎬ ᎤᏅᏍᏙᏗᏱ ᎤᏰᎸᏅᎩ.\nᎬᏂᏳᏉ ᏥᏅᏏᏓᏍᏗ ᏥᏯᏑᏰᏛ ᏥᎨᏳᎢ ᏗᏆᏓᏅᏛ ᎢᏴᏛ ᎣᏍᏛ ᏥᏰᎸᎢ; ᏓᏥᏁᎵ ᎠᏆᏓᏅᏙ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏚᏳᎪᏛ ᏧᎾᏄᎪᏫᏎᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎩᎶ ᏣᏓᏓᏟᏌᏁᎰ ᏧᎬᏩᏩᏗ ᎤᏩᏒ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯᏱᏃ ᎢᏗᏢ ᏄᏪᎿᎥᎾ ᏥᎨᏐᎢ.\nᎦᏲᏟ ᏧᏕᏘᏴᏓ ᏧᏲᏣᏃᎰᏍᏗ, ᎦᏙ ᏭᏩᎾᏬᎯᏍᏗ.\nᎤᏂᏍᏆᏂᎪᏎᏃ ᏄᏍᏛ ᏓᏕᏲᎲᏍᎬᎢ, ᎤᎵᏂᎩᏗᏳᏰᏃ ᎧᏁᎨᎢ.\nᎦᎪ ᎯᎠ ᏘᏂᏣᏛᏅ, ᎠᏍᎪᎯᏧᏈ ᏱᏚᎾᏝᎠ ᎤᏂᏃᏕᎾ, ᎢᏳᏃ ᏌᏉ ᏳᏲᎱᏎᎸ, ᎥᏝ ᏱᏗᎬᏕᎪ ᎢᎾᎨ ᎠᏁᏙᎲ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏯᏂᏛ, ᎠᎴ ᏳᏲᎴᎪ ᎤᏲᎱᏎᎸᎯ, ᎬᏂ ᎠᏩᏛ?\nᎣᏍᏓ ᎠᎩᏰᎸᏗ ᎢᏯᏆᏛᏁᏗ ᎠᎩᏰᎸ ᎨᏙᎲ ᎠᎾᏓᎪᎾᏗᏍᎬ, ᎥᏣ ᎪᏪᎵ ᏗᎩᏂᏓᏍᏗ.”\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎪᏂᏯ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏭᏂᏴᎴ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᏍᏛ ᎠᏂᏬᏂᏍᎬ ᏅᏧᎵᏍᏙᏔᏁ ᎤᏂᏣᏘ ᎠᏂᏧᏏ ᎠᎴ ᎾᏍᏉ ᎠᏂᎪᎢ ᎤᏃᎯᏳᏁᎢ.\nᏕᏯᏙᏤᎮᏍᏗ ᏗᏃᏪᎵᏍᎩ, ᎾᏍᎩ ᏧᎾᏚᎵᏍᎪ ᏗᎦᏅᎯᏛ ᏧᎾᏄᏩᎢ ᎤᏁᏓᏍᏗᏱ, ᎠᎴ ᎣᏏᏳ ᏧᏂᏰᎸᎭ ᎨᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏕᎦᏍᏗᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᎾᏢᏗᏱ ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ;\n”ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩᏉ,” ᎤᏛᏁ ᎰᎻ.\nᏅᏩᏓᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏕᏒᏅ, ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎥᏝ ᏰᎵ ᏫᎬᎩᎷᎯᏍᏗ ᏱᎩ.\n“ᎠᏎ ᏍᎩᎾᎾ ᎾᏆᏍᏗ ᎠᎦᏗᏓ ᎦᎵᏍᏔᏴᎲᏍᎩ ᏃᎴ ᎣᏍᏓ ᎠᎩᏰᎸᎰ ᎠᏆᎵᏍᏔᏴᏗ.” \nᎾᏍᎩ ᎩᎶ ᎪᎯᏳᎲᏍᎨᏍᏗ, ᎤᏲᎱᎯᏍᏗᏱ ᏁᎨᏒᎾ, ᎬᏂᏛᏍᎩᏂ ᎤᏩᏛᏗ.\nᏥᎦᏔᎭ ᏄᏍᏛ ᏕᏣᎸᏫᏍᏓᏁᎲᎢ, ᎠᎴ ᎾᎿᎮᎲᎢ, ᎾᎿ ᏎᏓᏂ ᎤᏪᏘᏱ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏍᏓᏱᏳ ᏕᏣᏂᏴᏒ ᏓᏆᏙᎥᎢ, ᎠᎴ ᏂᏣᏓᏱᎸᎾ ᎨᏒ ᎠᏆᏤᎵ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎾᎯᏳᎢ ᎥᏗᏆᏏ ᎤᏓᎵᏓᏍᏗ ᏂᎨᏒᎾ ᎠᎩᏃᎮᏍᎩ ᏄᎵᏍᏔᏅ, ᎾᏍᎩ ᏂᎯ ᎢᏤᎲ ᏣᏥᎸᎩ, ᎾᎿ ᏎᏓᏂ ᏒᎲᎢ.\nᎡᎳᏗ ᏄᏛᏁᎴ ᏫᎵᎻ, ᏥᏍᏕᏥ ᎦᏙᎬ ᎢᏣ ᏫᏄᏩᏁᎴ ᎤᎵᏇᏅ ᎦᏂᏓᏛ.\nᎾᏍᎩᏃ ᏑᎾᏓᏡᎩ ᎠᎾᎢᏒ ᎨᎳᏗ ᎠᏁᎵᏍᎬ ᏏᎦ ᎡᏅᏍᏗ ᎢᏴᏛ ᎤᏁᏅᏎᎢ; ᎪᎱᏍᏗᏃ ᏧᏅᏅ ᎠᎴ ᏗᎾᏓᎦᏔᎯ ᎠᏂᏅ ᎤᏂᏲᎴᎢ.\nᏝ ᎤᏟᎢᎦ ᏲᏣᎦᏎᏍᏓᏁᎴ ᎢᎬᏱ ᎥᏍᎩ ᏄᏛᏁᎳ.\nᎠᎴ ᎢᎳᎩᏳ ᎢᏨᎪᎡ ᏣᏢᎨᎢ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎡᏣᏍᏚᎮᎢ, ᎢᏨᏯᎦᏔᏂᎴᏃ?\nᏲᎾ ᎤᏤᏍᏙ ᎤᎵᎢ ᎮᏂᎵ ᎤᎵᏲᏗ ᏚᎾᏦᏎᎢ ᏃᎴ ᎤᏴᏅᎮᎢ ᎤᎾᎩᎸᏙᏗ ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ. ᎠᏗᏆᎸᏕᏲ.\nᎹᏚ ᎠᎴ ᏓᎻ ᎡᎵᏈ ᎤᏫᏥ, ᏌᏩᏂᏃ ᏏᎶᏗ ᏣᏃᏎᎰᎢ,\nᎩᎶ ᏗᎾᏓᏅᏟ ᏳᎨᏳᎭ ᎢᎦᎦᏛ ᎡᎭ, ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎠᏓᏙᏕᏍᏗᏍᎩ ᏳᏪᎭ.\nᎾᏍᎩᏃ ᏧᏪᏅᏒ ᏫᎤᎷᏨ, ᎤᏙᎴᎰᏎ ᎠᏍᎩᎾ ᎤᏄᎪᏨᎢ, ᎤᏪᏥᏃ ᎠᏤᏍᏙᎩᎯ ᎦᏅᎬᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏥᏕ-ᏥᎪᏩᏗᎭ, ᏛᏍᏆᎸᎯ, ᎾᏍᎩ ᎥᏝ ᏌᏉᎤᏅ ᏅᏯ ᏱᏚᏓᏌᏞᎮᏍᏗ ᎾᏍᎩ ᏂᎪᎲᏔᏅᎾ ᏱᎨᏎᏍᏗ.\nᎤᏟᏍᏓ ᎰᎻ ᏭᏴᏅᎮ ᏣᏄᏏ.\nᎠᎩᏍᏆᏂᎪᏍᎦ ᏥᎾᏞᎬ ᎡᏣᏓᏅᎡᎸ ᎾᏍᎩ Ꮎ ᎢᏥᏯᏅᏛ ᏫᏥᎧᏅᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎦᎶᏁᏛ, ᏅᏩᏓᎴ ᎣᏍᏛ ᎧᏃᎮᏛ ᏥᏥᎬᏫᏳᏔᏅ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏏ ᎾᎿ ᎠᏁᏙᎮᎢ, ᎤᏍᏆᎸᎮ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏍᏗᏱ.\nᎣᏥᎦᏔᎭ ᎤᏁᎳᏅᎯ ᎼᏏ ᎤᏬᏁᏔᏅᎢ; ᎾᏍᎩᏂ ᎯᎠ ᎥᏝ ᏲᏥᎦᏔᎭᏧᏓᎴᏅᎢ.\nᏎᎦ ᏚᏃᏣᏝᏃᎾ, ᎤᏂᏄᎸᏁ ᎤᏂᏬᏂᎯᏍᏗ ᎠᎴ ᎤᎾᎵᏖᎸᎮᏗ ᎠᏂᎪᏕᏍᎩ ᏃᎴ ᎠᏂᎴᏴᏍᎩ.\nᎤᏕᏅᏃ ᎧᎸᎬᎢᏗᏟ ᏖᎾᏏ ᎦᎵᏆᏚᎢᏍᎪᎯᏧᏈ ᏑᏓᎵᏍᎪᎯ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏥᏃ ᎠᏣᎳᎩ ᎠᎴ ᎤᏙᏓ ᎠᏲᏩᏁᎦ ᏱᎨᏎ.\nᎠᏯ, ᎬᏲᎯᏳᎯ W. G. Williams, ᎦᎸᎳᏗ ᎠᏍᎦᏰᎬᏍᏔ\nᏦᏈᏃ ᏂᎬᎾᏛ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᎤᏂᏣᏖ ᎤᏃᎯᏳᏁ ᎤᎬᏫᏳᎯ.\nᎢᏳᏰᏃ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏗᏓᏚᎪᏓᏁᎯ ᎨᏒ ᎦᎾᏄᏫᏍᎩ ᎦᎸᏉᏗᏳ ᏱᎩ, Ꮀ ᎤᎬᏫᏳᎭ ᎤᏓᎪᎾᏛᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏚᏓᎴᏍᎩ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ.\nᏔᎵ ᏍᎪᎯ ᎠᏕᎳ ᏃᎴ ᏐᏉ ᎯᏍᎦᏕᎸ ᏚᏅᏁᎴ ᎰᎻ.\nᏏ ᏐᏉ ᎢᏳᏩᎬᏗ ᏭᏂᏌᏙᏴ ᏭᏂᏴᏍᏔᏁᎢ ᎧᏁᏌᎢ.\nᎩᎶ ᏯᏰᎴᎲᎾ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎨᏓᎵ ᎢᏣ ᎤᏓᏌᏆᏟᎴᎢ.\nᏁᎵᏍᎬᏃ ᏲᎾ, ᎦᏙ ᎤᏂᎲ ᎤᏩᏌ ᎤᏂᎵᎶᎲᏍᎨ.\nᎡᏝᏪᎯ ᏚᎷᏫᏍᏔᏁᎮ ᎪᏱᏁᎢ.\nᎡᏝᏪᎯ ᎤᏟᏃᎮᏔᏅ, ᏍᎩᎷᏥᏏ, ᏍᎩᎷᏥᏏ, ᎤᏛᏅ.\nᏏᎵᏱᏃ ᎠᎴ ᏏᎵᏏᏱ ᎤᎶᏒᎩ, ᏓᎵᏂᎪᎯᏍᏗᏍᎬᎩ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏈᏩᏗᏒᎢ.\nᏅᏩᎾᏓᎴᎢ, ᎤᏓᏙᏎᎸᎩ ᏈᏓ. ᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏧᏁᏥᏍᎩᏂᎨᏃ ᎤᎾᏁᎳᎩᏉ.\nᎭᏫᏂ ᎠᏙᎯ ᎤᏍᎦᏎᏗ ᎤᎧᎭᏛ.\nᎥᏝ ᎢᏣᏓᏂᏯᏛ ᏴᏓᏨᏴᏕᏥ; ᏛᏨᎷᏤᎵ.\nᏔᎵᏁᏃ ᎢᎸᏍᎩ ᏫᏄᏒᎸ ᎨᏆᏂ ᏭᏴᎴᎢ; ᏚᏃᏣᎶᏤᏃ ᎦᎵᏦᏕ ᎠᏯᎥᎢ.\nᎾᏍᎩᏰᏃ Ꮎ ᎤᏙᎯᏳᎯ ᎤᏬᏑᎶᏨᎯ ᏥᎨᏐᎢ, ᎠᎴ ᎤᏩᏒᎯᏳ ᏥᎨᏐᎢ, ᎤᏁᎳᏅᎯ ᎠᎵᏍᎦᏍᏙᏗᏍᎪᎢ, ᎠᎴ ᏓᎧᎿᏩᏗᏐ ᎠᏔᏲᏍᏗ ᎨᏒ ᎠᎴ ᎠᏓᏙᎵᏍᏙᏗ ᎨᏒ ᏂᏚᎵᏏᏂᏒ ᎠᎴ ᏂᏚᎩᏨᏂᏒᎢ.\nᏤᏌᏂᏃ ᎠᎴ ᎠᏂᏐᎢ ᏔᎵ ᎬᏩᎾᏛᏓᏁᎯ ᏚᏂᏩᏛᎲ ᏙᎨᏥᎧᏅᎩ.\nᎿᏉᏃ ᎤᎪᎵᏰᏍᎩ ᎤᎷᏤᎸ ᎯᎠ ᏄᏪᏎᎢ; ᎢᏳᏃ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏎᏍᏗ, ᎯᎠ ᏅᏯ ᎦᏚ ᎤᎾᏙᏢᏗᏱ ᎯᏁᎩ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ. ᏝᏍᎪ ᏂᎯ ᏔᎳᏚ ᎢᏥᏛ ᏱᏨᏯᏑᏰᏎᎢ? ᎠᏎᏃ ᎠᏏᏴᏫ ᎤᏓᏑᏯ ᎠᏍᎩᎾ ᎢᎩ.\nᏧᎳᏏᏕᏅ ᎭᏫᏂᏣ ᏧᏁᎦ ᎨᏒ, ᎩᎳ ᎠᎬᏱ ᏓᎪᏩᏘᏍᎨ ᏣᎵ ᎡᏍᎦᏉ ᎠᏂᏳᏩᏁᎦ.\nᏙᏓᏆᏓ ᎦᏅᎨ ᎾᎥᏂ ᎤᏬᏔᏅ ᎪᎰᏍᏗ ᏯᏓᏅᏖᏍᎬᎾ, ᎤᏚᎵᏍᎨ ᎤᏲᎰᎯᏍᏗ ᎯᎸᎯᏳ ᎤᏂᏩᏛᏗ ᏱᎨᏒᎾ.\nᎢᎾᏛ ᏓᏂᏁᏍᎨᏍᏗ; ᎢᏳ ᎠᎴ ᎪᎱᏍᏗ ᎠᏓᎯᎯ ᏳᎾᏗᏔᎲ, ᎥᏝ ᎪᎱᏍᏗ ᏳᏅᏁᎮᏍᏗ; ᏧᏂᏢᎩ ᏓᎾᏏᏔᏗᏍᎨᏍᏗ, ᎠᎴ ᏚᎾᏗᏩᏍᎨᏍᏗ.\nᎨᎵ ᎧᏂᎩᏓ.\nᎠᎰᎵᏃ ᎤᏍᏚᎢᏒ ᏚᏪᏲᏁ ᎯᎠ ᏄᏪᏎᎢ;\n”ᎣᎯᏍᏙᏗ ᏗᎦᎷᏫᏍᏔᏁᎸ.” \nᎾᏍᎩ ᏓᏣᏃᏁᎵ ᎢᏣᏛᏁᏗᏱ ᏣᎵᏍᏕᎸᏗᏱ ᏂᎯ ᎠᎴ ᏂᎦᏛ ᏗᏣᏤᎵ ᏏᏓᏁᎸᎢ.\nᎦᏙᏃ ᎦᎪᎯᏳᏗ ᏂᎨᏒᎾ ᎢᏥᏰᎸᏐ ᎤᏁᎳᏅᎯ ᏧᎴᏙᏗ ᎨᏒ ᏧᏂᏲᎱᏒᎯ?\nᎠᎴ ᎤᏂᏣᏛᎩ ᎤᎾᏓᏑᏴᎩ ᎠᏂᏧᏏ ᎺᎵ ᎬᏩᎷᏤᎸᎯ, ᎠᎴ ᎤᏂᎪᎲᎯ ᎾᏍᎩ ᏥᏌ ᏄᏛᏁᎸᎢ, ᎬᏬᎯᏳᏅᎩ.\nᏂᎦᏛᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᎤᎾᎵᏃᎮᎴ ᎤᏅᏒ ᎨᏒ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ; ᎦᏙ ᎤᏍᏗ ᎧᏁᎢᏍᏗ ᎯᎠ? ᎤᏤᎵᎦᏯᏰᏃ ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒ ᏕᎬᏗᎭ ᏕᎧᏁᏤ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ, ᎠᎴ ᎠᏂᏄᎪᎦ.\nᎩᏴᎭᎦ.\nᎠᏏ ᎤᏣᏔ ᎠᎩᎷᎳ ᎪᎱᏍᏗ ᎢᏨᏃᏁᏗ, ᎠᏎᏃ ᎪᎯ ᎨᏒ ᎥᏝ ᏰᎵ ᎾᏍᎩ ᎨᏣᏛᎪᏗ ᏱᎩ;\nᎤᏂᎦᎾᏍᏓ ᎤᏂᏥᎸᎢ ᏃᎴ ᎤᏂᏍᏓᎦᏴᎯᏓ, ᎠᎹ ᎤᏂᏁ ᎢᏳᏍᏗ ᏃᎴ ᎪᎨ ᎢᏳᏍᏗ ᎦᏫᏒᎢᏍᏗ ᏱᏩᏥᏍᏓᎩᏌ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎪᎯ ᎢᎦ ᎢᏥᎦᏔᎯ ᏂᏨᏴᎦ, ᎩᎶ ᎤᏂᎩᎬ ᎾᏆᏓᏅᎦᎸᎾ ᎨᏒᎢ.\n”ᏥᏂᎦᏕᎶᎣᏍᎪ ᎤᏍᏆᏂᎩᏗ ᎨᏒ ᏏᏆ.”\nᎦᎸᎶᎢᏃ ᎦᎸᏉᏗ ᎤᏰᎸᏛ ᎤᎾᏄᎪᏨᎩ; ᎠᎨᏴ ᏅᏙ ᎢᎦ-ᎡᎯ ᎤᏄᏬᏍᏛᎩ, ᏅᏙᏃ ᏒᏃᏱ-ᎡᎯ ᎤᏔᏍᏓᎥᎩ, ᎤᎵᏍᏚᎸᎩᏃ ᎠᎵᏍᏚᎶ ᏔᏔᏚ ᏃᏈᏏ ᏗᎰᏢᏔᏅᎯ.\nᎾᏍᎩᏃ ᎠᏂᏅᏜᎡᎢ ᎠᎴ ᎠᎾᎵᏍᏓᏴᎲᏍᎨᎢ, ᏥᏌ ᎯᎠ ᏁᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏏᏴᏫ ᎯᎠ ᏥᏂᏣᏛᏅ ᎢᏧᎳᎭ ᏦᏍᏓᎵᏍᏓᏴᎲᏍᎦ, ᏛᏆᏡᏔᏂ.\nᎤᏓᏅᏖᎴᏃ ᎤᏩᏒ ᏧᏓᏅᏛᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᎦᏛᏁᎵ, ᎥᏝᏰᏃ ᏰᎵ ᏳᏜᏅᏛ ᎠᎩᏗᏱ ᎠᏆᏛᎯᏎᎸᎯ.\n“ᏥᏙᎩᏯᎷᎦ ᏔᎵ ᎢᎦ ᏗᎳᏑᎶᎢ.”\nᎾᏍᎩ ᎯᎠ ᏔᎵ ᏄᎵᏁᏨ ᏚᎵᏍᏓᏱᏗᏍᏗ ᏂᎦᏗᏳ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎤᎾᏙᎴᎰᏒᎢ.\nᎦᎶᏁᏛ ᎪᎱᏍᏗ ᎦᏰᏣᎵᏍᏕᎥᏙᏗ ᏂᎨᏒᎾ ᏂᎦᎵᏍᏓ, ᏂᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏣᏚᏓᎴᏍᏗᏍᎩ; ᏕᏥᏲᎯ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ.\nᎠᎴ ᎾᏍᎩ, ᏥᏗᎦᏔᎭ ᎢᏴᏛ ᎠᎵᏱᎵᏒᎢ, ᎾᏍᎩ ᎾᎯᏳ ᎠᏰᎢᏍᏗᏱ ᎢᏗᎵᎲ ᎿᏉ ᎤᎵᏰᎢᎶᎸ; ᎪᎯᏰᏃ ᎡᎩᏍᏕᎸᏗᏱ ᎨᏒ ᎤᏟ ᎾᎥᏂᏳ ᎠᏃ ᎢᎬᏱᏱ ᏗᎪᎯᏳᏅᎢ.\nᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᎪᏂᎯ? ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎾᏍᎩᏉ ᏥᏨᏲᏎᎰᎢ, ᎤᏙᎯᏳᎯᏯ ᎾᏍᎩᏉ.\nᎠᎴ ᎯᎠᏉ ᏱᎾᎩᏪᏒ, ᎵᏫ ᎾᏍᏉ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᏗᏓᏂᎸᎩ ᏥᎩ, ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎤᎫᏴᎮ ᎾᎯᏳ ᎡᏆᎭᎻ ᎤᎫᏴᎲ.\nᎠᎴ ᏕᏫ ᎯᎠ ᏂᎦᏪᎭ, ᎠᎵᏍᏓᏴᏗᏱ ᎤᏂᏍᎩᎸ ᎤᏁᏍᎩ, ᎠᎴ ᎤᏂᏌᏛᎥᏍᎩ, ᎠᎴ ᏧᏃᏕᎯᎯ, ᎠᎴ ᎤᏂᏍᏛᏗᏍᏙᏗ ᏫᏄᎾᎵᏍᏓᏏ;\nᎠᏍᏓ ᎦᏗᏆᎸᏕᏯᏍᏛ ᎠᎩᎬ ᎢᏳᏍᏗ ᎾᏆᎵᏍᏔᏁ.\nᎤᏛᏐᏅ ᏥᏂᎨᏐ ᎢᏳᏍᏗ, ᎠᏍᎦᏃᎵ ᏃᎴ ᏧᏃᏰᏂ ᏃᎴ ᏗᏂᏂᎨᏂ.\nᎡᎵᏍᎬ ᎠᏎᏉ ᏄᎾᏛᎾ, ᎡᏝᏪᎯ ᎤᏃᎮᎸ ᎤᎾᏓᎭᎷᎬ, ᏃᎴ ᎢᏳᎾᏛᏁᏘ ᏧᎾᏓᎩᏯᏍᏗ, ᎠᏎᏃ ᎨᏍᏗ ᏍᎩᏴ ᏭᎾᏓᏅᏖᏗ ᏱᎨᏎ, ᎤᎾᎵᏍᏗ ᎠᏂᏴᏫ, ᎤᏂᏲᎰᏎᎸ ᎠᏁᎲ, ᎾᏍᎩᏯ ᎨᎦᏙᏁᏛ, ᏭᏕᎵᎬ ᎢᏣ ᏭᏩᎾᏬᏒ -ᏴᎬᎾᏟᎦ.\nᎠᎼ ᎦᏚᎢᏣ ᏳᏓᏬᎠ ᎯᎠ ᎾᏂᏪᏎᎮ, ᏤᏍᏗ ᎭᎾ ᏯᏓᏬᏍᎨᏍᏗ ᎤᏍᏗ ᎠᏣᏗ, ᏣᏠᎯ ᏓᎦᏃᎯᎸᏍᏔᏂ ᏃᎴ ᏓᏣᎾᎩᏍᏔᏂ!\nᎤᎵᏍᏆᎸᏗ ᏓᏓᎪᏪᎳᏂ ᎯᎪ ᎤᏒᎯ.” \nᏚᎧᎿᏅᏃ ᏚᎪᎮ ᏧᏁᎿᎢ ᎠᏂᎲᏍᎨ ᎠᏕᎸ-ᏗᏗᏱ ᎤᎾᎵᏍᎪᎸᏔᏅᎯ.\nᏕᎦᏚᏩᏗᏒᏃ ᎠᏂᎶᏍᎬᎢ, ᏓᏂᏲᎯᏎᎲᎩ ᎤᏂᏍᏆᏂᎪᏙᏗ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᏧᏄᎪᏔᏅᎯ ᎨᏥᏅᏏᏛ ᎠᎴ ᏗᎨᎦᏁᎶᏗ ᏥᎷᏏᎵᎻ ᎠᏁᎯ.\nᏎᎦᏨ ᏚᎭᎾᏬᎩᏐᏅ ᏗᏴᎦᎴᏴᏓ ᏚᎭᏄᏮ, ᏗᏌᎧ ᎭᏫᏂ ᏚᎭᏄᏮ, ᏔᎵᏁ ᏧᏁᎦᎶ ᎢᏗᏌᎧ, ᎤᏬᏗᎨ ᎤᏍᎪᎸ ᏗᏑᏫᏓ ᎢᏤ ᎢᏳᏍᏗ ᎠᏑᏫᏓ ᎪᏚᎢᏍᏛ.\nᏎᎦᏨ ᏍᏉ ᎤᏰᏤ ᎰᎻ.\n(ᎥᏝᏍᎩᏂᏃᏅ ᏥᏌ ᎤᏩᏒ ᏱᏓᏓᏬᏍᎨᎢ, ᎬᏩᏍᏓᏩᏗᏙᎯᏉᏍᎩᏂ,)\nᏁᎳᎩ ᏂᏚᏍᏕ ᎠᏰᎵ ᏗᎴᏂᏍᎩ ᎦᎸᎳᏗ ᏫᏗᎦᎷᎩ, ᏍᎩᎾᎾ ᏚᏂᎬᎨ ᏗᏍᏕᎵᏍᎩ ᏗᏐᎢ ᏧᏏᎳᏛᏗ.\nᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎠᏴ ᏥᏧᏏ ᏗᎵᏏᏱ ᎨᎢ ᏓᏌ ᎦᏚᎲᎢ, ᎥᏝ ᎡᏍᎦᏉ ᎤᏬᎭᏛ ᎦᏚᎲᎢ ᎨᎢ ᏱᎩ; ᎠᎴ ᎬᏔᏲᏎᎭ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ ᏗᏥᏬᏁᏙᏗᏱ ᏴᏫ.\nᎨᏍᏗ ᎤᏩᏌ ᎤᏪᏅᏒ ᎠᏰᎵ ᏱᎨᏎ, ᎨᏍᏗ ᏱᎪᎵᎨ, ᎡᎵᏍᎬ ᏰᎵᏉ ᏭᎷᎯᏍᏗ ᎤᏂᎵᏦᏩᏛ ᏃᎴ ᎤᎦᏃᏮ ᎤᏃᏛ ᎤᎵᏏᎩ ᏱᏂᎦᎵᏍᏘᏍᎬᎾ.\nᏏ ᎨᏍᏗ ᏱᏧᏁᏣ.\nᎤᏑᏰᎭ ᎤᏟ ᎤᏰᎸᏁ ᎤᏁᎳᏅᎯ ᏧᏤᎵ ᏴᏫ ᎠᏂᎩᎵᏲᏥᏙᎲ ᎤᏠᏯᏍᏙᏗᏱ, ᎠᏃ ᎠᏍᎦᏂ ᏞᎦ ᎣᏍᏛ ᎤᏓᏓᏅᏓᏗᏍᏙᏗ ᎨᏒᎢ;\nᎠᎦᏓ ᏄᏟᏂᎬᎦ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ, ᎠᏎᏉ ᏄᏍᏛᎢ ᏗᎧᏃᏗ.\nᏂᎯ ᏧᏪᏥ ᎯᏥᎨᏳᏣ, ᏥᏚᎢᏍᏗ ᎢᎦᎵᎢᏴ, ᎢᎪᎯᏓ.\nᎦᏛᏃ ᎠᏂᏆᎵᏏ ᎾᎿ ᎤᏂᏣᏘ ᏄᎾᏛᏅ ᎯᎠ ᏅᏗᎬᏩᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᏘᏅᏍᏓᏗᏏ ᎨᏣᏍᏓᏩᏗᏙᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏐᎢ ᎠᎾᏓᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎣᏥᎪᎥ ᎤᎬᏫᏳᎯ. ᎠᏎᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎥᏝ ᏴᎦᎪᎢᏳᎲᎦ ᎬᏂ ᏧᏪᏰᏂ ᏴᎩ ᏚᏰᎸᏒ ᏱᏓᎩᎪᎲ, ᎠᎴ ᏥᏰᏌᏛ ᏯᏋᏔᏅ ᏯᎩᏃᏟᏍᏔᏅ ᏴᎩ ᏚᏰᎸᏒᎢ, ᎠᎴ ᎠᏍᏆᎨᏂ ᏯᏆᏐᎾᏛ.\nᎠᏗᎾ ᏞᏍᏗ ᎩᎶ ᏂᎯ ᏂᏣᏛᏅ ᏳᎩᎵᏲᏤᏍᏗ ᏴᏫ ᎤᎸᎢ ᏳᏍᏛᏗᏍᎨᏍᏗ, ᎠᎴ ᎤᏃᏍᎩᏒᎢ, ᎠᎴ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎠᎴ ᎤᎵᏌᎳᏁᎯ ᎨᏒ ᏅᏩᎾᏓᎴ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎤᏁᎳᏅᎯᏰᏃ ᎤᏪᏥ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎢᏤᎲ ᎢᏨᏯᎵᏥ ᏙᏁᎸᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏴ, ᎠᎴ ᏏᎵᏪᎾ, ᎠᎴ ᏗᎹᏗ ᎢᏨᏯᎵᏥᏙᏁᎸᎯ ᏥᎩ, ᎥᎥ ᎠᎴ ᎥᏝ ᎤᏛᏗᏱ ᎥᏝ ᏲᎦᏛᏁᎢ, ᎥᎥᏍᎩᏂ ᎤᏩᏒ ᎤᏛᏗᏱ ᎬᏂᎨᏒ ᏃᎬᏁᎸᎩ.\nᎠᏓᏕᎭᏯᏙᏔᏅᎾ ᎤᏂᏍᏆᏙᏅ ᎠᎾᏛᏁᎵᏍᎩ, ᎤᏣᏘᏅ ᎦᏚᎲ ᏭᎶᏒ Mrs. Chapman, ᎠᎹᏳᎸᏓ ᎨᏙᎲ ᏰᎵ ᏧᏙᏓᏆᏓ ᏥᏑᎵᎪᎬ, ᎨᏍᏗ ᏱᏓᏉᏪᎳᎾ ᎪᏪᎵ ᏓᎭᏃᏫ ᎠᎾᏓᏅᏖᏍᎩ ᏧᏂᎾᎩᏍᏗ ᏃᎴ ᏗᏇᏅᏒ Tallent.\nᎤᏣᏛᎩ ᎢᏳᏓᎴᎩ ᎢᏨᏲᏪᎳᏁᏗ ᎠᎩᎲᎩ, ᎠᏎᏃ ᎥᏝ ᎪᏪᎵᏉ ᎠᎴ ᏗᎪᏪᎶᏗ ᏗᎬᏙᏗ ᏯᎩᏰᎸᏎᎢ, ᎤᏚᎩᏰᏃ ᎠᏋᎭ ᎢᏨᏩᏛᎲᏍᏗᏱ, ᎠᎴ ᏗᏗᎰᎵ ᏗᎬᏙᏗᏱ ᎢᎦᎵᏃᎮᏗᏱ, ᎠᎴ ᎢᏓᎵᎮᎵᎬ ᎤᎧᎵᎢᏍᏗᏱ.\nᎯᎠ ᏂᏑᏪᏎᎴᎢ; ᎠᎩᏅᏩᏅᎯ ᎯᎠ ᎾᎩᏪᏎᎸᎩ; ᎯᎾᎩ ᏣᏤᏍᏙ, ᎠᎴ ᎮᏓ.\nᎠᏴᏍᎩᏂ ᎥᏝ ᏴᎦᏲᏣᏢᏈ ᎠᎦᏲᏥᎶᏒᏍᏓ ᎠᏟᎶᎥᎢ; ᎾᏍᎩᏯᏉᏍᎩᏂ ᏩᏍᏛ ᎢᏴᏛ ᎠᏟᎶᎥ ᎤᏁᎳᏅᎯ ᏙᎩᏲᎯᏎᎸᎢ, ᎾᏍᎩ ᎠᏟᎶᏍᏗ ᏂᎯ ᏗᏤᎲ ᏫᎦᎷᎩ.\nᎢᏳᏍᎩᏂ ᎢᎸᎯᏳ ᏁᏥᎩᏲᎢᏍᏗᏍᎬᎾ ᏱᎩ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏗᏂᏲᎵ ᎾᏍᎩ ᎢᎨᎬᏁᏗ ᏥᎩ, ᎿᏉ ᎢᏴᏛᏉ ᎢᏣᏕᏂᏙᎸᎯ, ᎥᏝᏃ ᎣᏍᏛ ᎢᏣᏕᏅᎯ ᏱᎩ.\nᎠᏎᏃ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ.\nᎯᏌᏙᏯ- ᎯᏌᏙᏯ - ᎯᏌᏙᏯ - ᎯᏌᏙᏯ, ᏃᏗ ᎩᏅᎪᎢ!”\nᎤᏁᎳᏅᎯᏃ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏳᏂᏍᏚᎢᏒᎩ ᎦᎸᎳᏗ, ᎠᎴ ᏩᎪᏩᏛᏗ ᎨᏒᎩ ᎾᎿ ᎤᏤᎵᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗ; ᎠᎴ ᏚᎾᎦᎸᎲᎩ, ᎠᎴ ᏚᏂᏁᏨᎩ, ᎠᎴ ᏚᏴᏓᏆᎶᎥᎩ, ᎠᎴ ᎪᏙᎯ ᎤᎵᏖᎸᏅᎩ, ᎠᎴ ᎤᏍᎦᏎᏗ ᎤᏁᏐᎠᏒᎩ.\nᎾᏍᎩ ᎢᎦᎢ ᎤᏟ ᎢᏳᏓᎵᏁᎯᏯᏛ ᎾᎬᏁᎴ ᎡᏍᎦ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎾᏍᎩ ᎤᏘᏯᏍᏓᏁᏗ ᎨᏒ ᎤᏟ ᎢᎦᎸᏉᏗ ᏧᏙᏍᏙᏗ ᏧᏩᏛᏔᏅ.\nᎢᏳᏃ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸᎾ ᏱᎩ ᏅᏩᏓᎴ ᎤᏤᎵᎦ ᎨᏒᎢ, ᎦᎪ ᏓᏥᏁᎵ ᎢᏨᏒ ᎢᏣᏤᎵ ᎨᏒᎢ?\nᏰᎵ ᎪᎯᏛ ᏂᏓᎩᎷᏍᏔᏁᎰ ᏥᏍᏕᎵᏍᎬ ᏲᎾ, ᏗᎦᏤᎵ ᏴᏫ ᎤᎾᎵᏍᏕᎸᏙᏗ.\nᎠᏏᏉᏃ ᎾᏍᎩ ᏂᎦᏪᏍᎬᎩ, ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬᎢ, ᏇᏍᏓ ᎯᎠ ᎠᏍᏓᏯ ᏄᏪᏒᎩ; ᏣᎸᏃᏘᎭ ᏉᎳ, ᎤᏣᏘ ᎪᏪᎵ ᏘᏏᎾᏏᏳ ᎨᏒ ᎾᏍᎩ ᏣᎸᏃᏙᏗᎭ.\nᎤᏔᎷᎩᏍᎨ ᎤᏁᎦᎸ.\nᎾᎯᏳᏃ ᎤᏂᏣᏘ ᎨᏒ ᏴᏫ ᏧᏈᏯ. ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᏄᏂᎲᎾ ᎨᏒ ᎤᎾᎵᏍᏓᏴᏗ, ᏥᏌ ᏫᏚᏯᏅᎲ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ;\nᏃᏗ ᎤᏂᏍᏆᏙᏅ ᏗᏙᎴᏆᏍᏗ, ᏧᏙᏓᏋᏓ ᎮᏙᎮ ᏲᎾ ᎤᏤᏍᏙ, ᎤᏍᏗ ᎦᏍᎩᎶᎩ ᎤᏬᏞ ᎡᏝᏪᎯ.\nᎿᏉᏃ ᏑᏓᎵ ᎢᎦ ᏚᏃᏒᎩ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᏍᏆᎸᏗᏱ ᏥᏌ ᏇᏗᏂ ᏭᎷᏨᎩ, ᎾᎿ ᎡᎲ ᎳᏏᎳ, ᎤᏲᎱᏒᎯ ᏥᎨᏒᎩ, ᎾᏍᎩ ᎤᏲᎱᏒ ᏥᏚᎴᏔᏅᎩ.\nᏗᏥᎨᏫ ᏗᏣᏓᏘᏂᏙᎯ! ᏙᏒ ᎢᏥᎿᏐᎸᏍᏗᏍᎩ ᎨᎻᎵᏃ ᎢᏥᎩᏍᎩ.\nᎠᎴ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᎾᏠᎾᏍᏗ ᎠᎾᎵᏅᏟ ᏄᏪᎵᏍᏛᎾ ᎨᏥᏴᏔᏂᎸᎯ, ᎾᏍᎩ ᏅᏕᎵᏛ ᎤᏂᏴᎵᎸ ᎤᏂᎨᏛᏗᏱ ᎣᎦᏓᏤᎵᎦᏯ ᎨᏒ ᏥᏌ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏛ ᎣᎩᎲᎢ, ᏦᎩᎾᏝᎢ ᎢᎪᎬᏁᏗᏱ;\nᎠᏓᏅᏬᎯᏍᏗᏍᎩᏍᎩᏂ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ, ᎾᏍᎩ ᎠᎦᏴᎵᎨᎢ ᏅᏓᏳᏅᏍᏗ ᏥᎩ ᏓᏆᏙᏍᏛᎢ, ᎾᏍᎩ ᏂᎦᏛ ᏓᏤᏲᏂ, ᎠᎴ ᏓᏣᏅᏓᏗᏍᏔᏂ ᏂᎦᎥ ᎢᏨᏁᏤᎸᎢ.\nᏑᎾᎴ, ᎠᏤ ᎧᏁᏍᎦ ᎤᏝᏁ ᏫᎵᎻ ᎤᏴᏍᏗ ᏣᏄᏏ ᏃᎴ ᏏᏆ ᎤᏴᏍᏗ ᏭᏝᏁᎢ.\n“ᎧᏃᎮᏗ ᏍᎩᏃᎯᏏ, ᏌᎳᏓ!”  ᏍᏉᏃ ᏚᏯᏪᎨ ᏌᎳᏓ, ᎠᏎᏃ ᏫᎵᎻ ᎤᏚᎵᏍᎬ ᏄᏛᏁᎴ.\nᏂᎦᏓ ᏲᎾ ᎤᏤᏍᏙ ᎤᏚᏥ ᎰᎻ ᎠᎪᏕᏍᎩ ᎤᏤᎵ ᎨᏎᎢ.\nᎾᏍᎩᏃ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏂᏅᏒ, ᏗᎷᏏᏱ ᏭᏂᎶᏎᎢ, ᎾᎿᏃ ᏫᎤᏁᏅ ᏥᏳᎯ ᏫᎤᎾᏣᏁ ᏌᏈ ᏫᎤᏂᎷᏤᎢ.\nᎤᏂᎷᏣ ᏗᎾᏦᏏᏙ, ᎨᎵᏍᎬ ᎤᎩᏓᏟᏅᏯ ᎨᎴᏍᏗ, ᎠᏎᏃ ᎨᏍᏗ ᏱᎨᎴ.\nᎠᎵᏍᏓᏴᏗᏱᏃ ᎨᏒ ᎤᏍᏆᎸᎲᎤᏅᏎ ᎤᏅᏏᏓᏍᏗ ᎯᎠ ᏫᏂᏚᏪᏎᏗᏱ ᏫᎨᏥᏯᏅᏛ; ᎡᏤᎾ, ᏂᎦᏗᏳᏰᏃ ᎿᏉ ᎠᏛᏅᎢᏍᏗ.\nᏣᎳᎩᏱ ᎠᏰᎵ ᏙᏰ ᏩᏯ, ᏥᏩᏛᎲ ᏲᎾ ᎤᏒᎯ ᎢᏴ ᎤᏰᏨ ᎠᏓᏅᏖᎯᎶᏍᎬ ᎤᏬᏒᎯᏐᏗ ᎠᏤᎯ ᎤᏍᏗ ᎡᎶ ᎤᏪᏘ ᏧᏥᎶᏍᏔᏅ.\nᎣᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ Ꮎ ᎤᎬᏫᏳᎯ ᏥᏌ ᏧᎴᏔᏅᎯ, ᎾᏍᏉ ᎠᏴ ᏥᏌ ᎠᎬᏗᏍᎬ ᏙᏓᏲᎦᎴᏔᏂ, ᎠᎴ ᎠᏴ ᏂᎯᏃ ᎢᏧᎳᎭ ᏫᏗᎩᏲᏏᎯᏍᏗ ᎨᏎᏍᏗ.\nᏞᏍᏗ ᎤᎵᏍᏗ ᏱᏘᏯᏏᏔᏕᏍᏗ ᎩᎶᎢ, ᎠᎴ ᏞᏍᏗ ᏯᏖᎳᏗᏍᎨᏍᏗ ᎩᎶ ᎠᏂᏍᎦᏅᎬᎢ. ᏣᏓᎦᏌᏩᏍᏕᏍᏗ ᎯᎦᏓᎭ ᏂᎨᏒᎾ ᎨᏎᏍᏗ.\nᏅᏩᏓᎴᏃ ᎪᎯᏳᏗ ᎨᏒ ᎾᏍᎩᏉ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐᎢ; ᏅᏩᏓᎴᏃ ᎠᏥᏁᎰ ᏧᏓᏅᏬᏗᏱ, ᎾᏍᎩᏉ ᎠᏓᏅᏙ ᎤᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏐᎢ;\nᎯᎠ ᎾᏍᎩ ᏔᎵᏁ ᎪᏪᎵ ᎿᏉ ᎢᏨᏲᏪᎳᏏ ᎢᏨᎨᏳᎢ; ᎾᏍᎩ ᎾᎿ ᏕᏨᏰᏍᏓᏁ ᎤᏠᎾᏍᏗ ᏂᎨᏒᎾ ᏕᏣᏓᏅᏛ ᎾᏍᎩ ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ,\nᏂᎦᏓ ᏗᏂᏅᎦᎵᏙ ᏃᎴ ᏗᏃᏪᎵᏍᎩ ᏓᎾᏓᏂᎸᎨ ᏍᎩᏴ ᏥᎨᏎ ᎣᏍᏓ ᏄᏍᏗᏓᏁ, ᎣᎭᏂ ᏧᏩᎬᏗᏒ ᎡᎳᏗ ᏂᎦᎵᏍᏔᏂᏗᏍᎪ.\nᎢᏣᏢᏆᏍᎬ ᎥᏝ ᎣᏏᏳ ᏱᎩ. ᎥᏝᏍᎪ ᏱᏥᎦᏔᎭ ᎤᏍᏗ ᎠᎪᏙᏗ ᏂᎦᏛ ᎦᎸ ᎠᎪᏗᏍᎬᎢ.\nᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏏᏌ ᎤᏪᏍᎩᎸ ᏗᎫᎪᏙᏗᏱ ᏥᏙᎦ, ᎾᎿ ᎠᏆᎵᏰᎢᎵᏕᏗᏱ. ᎠᏂᏧᏏ ᎥᏝ ᎪᎱᏍᏗ ᎦᏥᏍᎦᏅᏤᎸᎯ ᏱᎩ, ᎾᏍᎩ ᎣᏏᏳ ᏂᎯ ᏥᎦᏔᎭ.\nᎯᎠ ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎡᏗᏯᎥᎢ ᎠᎴ ᎠᏴ ᎢᎩᏯᎥᎢ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎢᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᎨᏒ ᎤᏩᏒ ᎤᏤᎵ ᎠᏓᏅᏙ.\nᎾᏍᎩ ᏂᎯ ᎾᏍᏉ [ᏤᏣᎵᏍᎦᏍᏙᏔᏅᎩ] ᎿᏉ ᎢᏣᏛᎦᏅ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ, ᎾᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᏣᎵᏍᏕᎸᏙᏗ ᏥᎩ; ᎾᏍᎩ ᎾᏍᏉ ᎡᏦᎢᏳᏅ, ᎿᏉ ᎢᏥᏰᎸᏔᏅᎩ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎾᏍᎩ ᎠᏚᎢᏍᏔᏅᎯ ᎨᏒᎢ,\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏩᎷᏤᎴ ᎬᏩᏰᏍᏔᏁᎢ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᏍᎩᏍᏕᎸ, ᏓᏲᏣᏗᏒᏂᏉ.\nᎤᎾᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᏚᏃᎸᏎᎢ; ᎤᏄᏖᏎᏃ ᎤᎵᎬᎭᎷᏴᎯ ᎤᏘᏴᎯ ᎦᎵᏉᎩ ᎢᏯᎧᎵᎢ ᏔᎷᏣ.\n[ᎾᏍᎩ ᎯᎠ ᎥᏝ ᎡᎶᎯ ᎬᏩᎾᏕᏗ ᏱᎨᏎᎢ;] ᎢᎾᎨ ᎠᏁᏙᎮᎢ, ᎠᎴ ᏙᏓᎸᎢ, ᎠᎴ ᏚᏍᏓᎦᎸᎢ, ᎠᎴ ᎦᏙᎯ ᏓᏔᎴᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎠᏇᏥ ᏣᎵᏂᎪᎯᏍᏗᏍᎨᏍᏗ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ.\nᏌᎴᎫᏏᏃ ᎣᎦᏚᎩᏒ, ᎾᎿ ᏦᎢ ᏃᎩᏒᎸᎩ.\nᎨᏍᏗ ᎣᏍᏓ ᏱᏥᏰᎸᎡ ᎦᏲᏟᏉ ᎣᎩᎾᏟᏃᎮᎸ.\nᎢᎬᏒᏰᏃ ᎾᏍᏉ ᎢᎸᎯᏳ ᏥᎨᏒ ᎢᎩᏁᎫ ᎨᏒᎩ, ᏂᎪᎯᏳᏒᎾ, ᎢᎩᎵᏓᏍᏔᏅᎯ, ᎪᎱᏍᏗ ᏕᏓᏛᏁᎲᎩ ᏧᏓᎴᏅᏛ ᎠᏚᎸᏅᏗ ᎨᏒ ᎠᎴ ᎣᏍᏛ ᎠᏓᏓᏅᏓᏗᏍᏗᏍᎩ ᎨᏒᎢ, ᎤᏲ ᎨᏒ ᎠᎴ ᎠᏛᏳᎨᏗ ᎢᏕᎲᎩ, ᎢᎩᏂᏆᏘᏍᏗ, ᎠᎴ ᏗᏓᏓᏂᏆᏘᎯ ᎨᏒᎩ.\nᎧᏂᎩᏓ ᏤᏠᎯ.\nᎾᏍᎩ ᎩᎬ ᏧᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎠᎴ ᎤᏇᏓᎵ ᎠᏓᏅᏖᏍᎬ ᏧᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏴᏫ ᎠᏓᏅᏖᏍᎬ ᏧᎾᏄᎪᏫᏒᎯ ᏂᎨᏒᎾ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᏧᎾᏄᎪᏫᏒᎯ.\nᎾᏍᎩᏯ ᏄᏍᏛ ᎦᎸᏉᏗᏳ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᏅᏩᏙᎯᏯᏛ ᎡᎯ ᎤᏤᎵᎦ; ᎾᏍᎩ ᎠᏴ ᎥᏆᏒᎦᎶᏔᏅᎯ ᏥᎩ.\nᏗᎹᏗ, ᏣᏍᏆᏂᎪᏕᏍᏗ ᎾᏍᎩ ᏣᏣᎨᏅᏴ, ᎢᏴᏛ ᏅᏁᎮᏍᏗ ᎦᏪᏢᏗ ᎨᏒ ᎠᎴ ᎠᏎᏉᏉ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏗᏒᏍᏗ ᎨᏒ ᎠᎦᏙᎥᎯᏍᏗ ᏂᏚᏳᎪᏛᎾ ᏥᏚᏙᎥ;\nᎩᎳᎯᏳᏉᏍᎩᏂ ᎪᎯ ᎢᎦ ᎢᏯᏍᏗ ᎢᏳᏃ ᎼᏏ ᏓᏥᎪᎵᏯ ᎠᎵᎬᏚᎶ ᏧᏂᎾᏫ ᏚᏭᏢᏙᎢ.\nᎧᏂᎩᏛ ᏥᏍᏚ ᎠᎴ ᎬᎵ.\nᎾᏍᎩᏃ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ ᎠᏁᎶᎯ ᎠᎴ ᏗᏂᎳᏫᎩ, ᏚᏂᎷᏨᎸᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎣᎦᏎᎵᏔᏅ ᏙᎦᏓᏁᏤᎸ ᎣᎩᏍᏛᏗᏍᏗᏱ, ᎪᎱᏍᏗ ᎣᎦᏅᏍᎦᎶᏗᏱ ᎠᎴ ᎣᎦᏚᎩᏍᏗᏱ ᏂᎨᏒᎾ ᎬᏂ ᏉᎳ ᎣᏥᎸᎯ ᎨᏎᏍᏗ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎦᎶᏁᏛ ᏌᏉ ᎢᏯᎦᎵᏍᏙᎸᏔᏅᎯ ᎤᎩᏍᏗᏱ ᎤᏂᏣᏘ ᎨᏒ ᎤᏂᏍᎦᏅᏨᎢ; ᎾᏍᎩᏃ Ꮎ ᎬᏩᎦᏖᏃᎯ ᎨᏒ ᏔᎵᏁ ᎬᏂᎨᏒ ᏂᏙᏛᎠᏛᏁᎵ ᏧᏍᏕᎸᏗᏱ, ᎠᏍᎦᏂ ᎠᎫᏴᏙᏗ ᎾᏰᎲᎾ\nᏌᎳᏓ ᎱᎴᏅᎮ ᏓᏏᎳᏛᎥᏍᎬ.\nᎩᎶᏃ ᎾᏍᎩ ᎯᎠ ᏥᏄᏍᏙ ᎤᏚᎩ ᏧᏩᏐ [ᏥᏌ], ᎤᏩᏒ ᎠᏓᏅᎦᎵᏍᎪᎢ, ᎾᏍᎩᏯ [ᏥᏌ] ᏄᏅᎦᎸᎾ ᏥᎩ ᎾᏍᎩᏯ ᎾᏓᏛᏁᎰᎢ.\nᏓᏤᎵᏍᏛᏃ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎤᏂᏣᏘ ᎤᎾᏓᏅᏘ ᎤᏂᎵᏅᏨᎯ ᎤᎾᏗᏓᏁᏎᎢ,\nᎤᎿᏛ ᎤᏪᏯ ᏗᏣ ᏗᎠᎢᏒ ᏙᏯ.\nᎤᎾᏥᏍᏈᏍᏛᏃ ᏓᎶᏂᎨ ᏒᎦᏔ ᎤᎾᏔ, ᏚᏩᏅᎦᏢᏃ ᏚᏓᎨᏒᎢ ᏚᏘᏌᏕᎢ.\nᏂᎪᎯᎸᏃ ᏄᏓᎴ ᎤᏍᏗ ᏥᏍᏆ, ᏥᎩᎵ, ᎱᏃᎯᎵᏣᏁ ᎡᎳᏗ ᎨᏒᎢ ᎯᎠ ᎦᎸᎳᏗ ᏚᏩᏂᎦᎸᎢ ᏃᎴ ᏍᎩᎾ ᏍᎩᎵ ᎦᏃᎨᎾ.\nᎠᎴ ᎠᏂᏯᏫᏍᎩ ᏐᏈᎵ ᏧᎾᎩᎸᏗ ᏔᎵᏧᏈ ᎢᏳᏆᏗᏅᏛ ᎾᏂᎥᎩ; ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎾᏂᎥᎢ.\nᎤᏕᏘᏴᏌᏗᏒ ᎨᏍᏗ ᎠᏕᎶᎰᎯᏍᏗ ᏱᎨᏎ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ, ᎨᏍᏗ ᎬᏛᏅᎢᏍᏙᏗ ᏱᎨᏎ.\nᏥᎷᏏᎵᎻᏃ ᏬᎩᎷᏨ, ᎠᎾᏓᏅᏟ ᎤᎵᎮᎵᏨᎯ ᏕᎪᎦᏓᏂᎸᏨᎩ.\nᎤᏙᎯᏳᎲᏉ!\nᎤᏍᏉᏟ ᎠᎩᏟᏲᎨ ᏄᏍᏛᏉ ᎠᎵᏍᏔᏴᎲᏍᎬ.\nᎯᏯᏫᏍᎨᏍᏗ, ᎠᎴ ᏔᎵᏂᎪᎯᏍᏓ ᎾᏍᎩ Ꮎ ᏧᎵᏃᎯᏴᎯ, ᎾᏍᎩ ᏧᎵᏬᏥᏕᎾ ᏥᎩ; ᎥᏝᏰᏃ ᏯᎩᏩᏛᎲ ᎤᎧᎵᏨᎯ ᎣᏍᏛ ᎨᏒ ᏕᏣᎸᏫᏍᏓᏁᎲ ᎤᏁᎳᏅᎯ ᏙᏗᎧᏅᎢ.\nᎾᏍᎩ ᎤᏤᎵ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᎪᎯᎸ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ. ᎡᎺᏅ.\nᎪᏪᎵᏃ ᎦᎸᏉᏗ ᎢᎬᏱ ᎦᏰᎯ ᏣᎪᏩᏘᏍᎨ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎪᎯᏳᏗ ᎬᏗ ᏙᏗᎫᏓᏏᏒ ᏧᎾᏓᎴᏅᏛ ᏴᏫ, ᎢᎬᏱ ᎦᏰᎯ ᎣᏍᏛ ᎧᏃᎮᏛ ᎬᏂᎨᏒ ᎾᎬᏁᎴ ᎡᏆᎭᎻ, ᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᏂᎯ ᏅᏛᏂᏌᏂ ᏂᎦᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎡᎳᏂᎬ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ.\n“ᎬᏲᎵᎭ ᏯᏆᏛᎾ, ᎠᏉᏚᎢᏍᏔᏅ ᏏᏲ ᎠᎴ ᎣᏍᏓ ᏑᎾᎴᎢ.\nᎠᎴ ᎾᏍᎩ Ꮎ ᏗᎪᎵᏰᏍᏗ ᏧᎾᏫ ᎠᎦᏔᎭ ᏄᏍᏛ ᎠᏓᏅᏖᎵᏙᎲ ᎠᏓᏅᏙ ᏅᏗᎦᎵᏍᏙᏗ ᎤᎾᏓᏅᏘ ᏓᎵᏍᏗᏰᏓᏁᎲ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎣᏏᏳ ᎤᏰᎸᏗ ᎨᏒᎢ.\nᎠᏤᎯᎨᏍᏗᏗᏅ ᎠᏆᏛᏅ.\nᎤᏟᏰᏃ ᎣᏏᏳ, ᎾᏍᎩ ᏱᏄᏍᏗ ᎤᏁᎳᏅᎯ ᎠᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩ ᎢᏥᎩᏲᎢᏍᏗᏱ ᎣᏍᏛ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ, ᎠᏃ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎢᏥᎩᎵᏲᎢᏍᏗᏱ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎯᎠ ᏄᏂᏪᏒᎩ; ᎬᏂᏳᏉ ᏂᎦᎡ ᎤᎨᏳᎯᏳ ᎨᏎᎢ.\nᏝ ᎩᎶ ᎰᏩ ᏰᎵᏍᎨ.\nᎠᏁᏍᏔᏅ ᎠᏕᎶᎰᎯᏍᏘ ᎨᏒ, ᏄᎾᏍᏛ ᏧᏂᏲᎰᏒ ᎠᏂᏧᏣ ᏃᎴ ᎦᎳᎨᏴ ᎤᎾᏤᎵ ᏃᎴ ᏚᏙᏪᎸ ᎦᏙ ᏚᎾᏓᏟᏴᎲ.\nᎨᏥᏅᏏᏛᏃ ᎤᏣᏖ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏚᏂᎸ ᏫᏍᏓᏁᎮ ᏴᏫ ᎠᏁᎲᎢ. ᏂᎦᏛᏃ ᏌᏉ ᎢᎦᎦᏛ ᎠᏂᏁ ᏐᎵᎹᏅ ᎤᏤᎵ ᎠᏲᏓᏝᎲᎢ.\nᎢᏳᏃ ᎣᎳᏏᏕᏂ ᎯᎠ ᏱᏄᏪᏒ, ᎠᏴ ᎤᏬᏰᏂ ᏂᎨᏒᎾ ᏥᎩ ᎥᏝ ᎠᏰᎸ ᏯᏆᏘᏝ, ᎾᏍᎩᏍᎪ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎥᏝ ᎠᏰᎸ ᏳᏘᏝ?\nᎦᎷᏨᎭᏍᎩᏂ ᎾᏍᎩ Ꮎ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎠᏓᏅᏙ, ᏂᎦᎥ ᎤᏙᎯᏳᎯ ᎨᏒ ᏙᏓᏣᏘᏂᏙᎵ, ᎥᏝᏰᏃ ᎤᏩᏒᏉ ᎤᏓᏅᏖᏛ ᏱᎧᏁᎨᏍᏗ, ᏂᎦᎥᏍᎩᏂ ᎠᏛᎩᏍᎨᏍᏗ ᎾᏍᎩ ᎧᏁᎨᏍᏍᏗ; ᎠᎴ ᏓᏥᎾᏄᎪᏫᏎᎵ ᏧᏓᎴᏅᏛ ᎣᏂ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ.\nᎦᏐᎯ ᏫᎦᎶᏍᎩ ᎠᏰᎳᏍᏗ, ᏥᎧᏍᎨᏂ ᎠᏆᎧᏍᎩᎸ.\n“ᎦᏨ ᎢᏴᎯ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\n“ᏙᎢᏳᏍᏗ ᎯᎪᏩᏗᎭ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nBoudinot ᏃᎴ ᎠᏫᎾ ᎦᏄᎾᏓᎴᎩ ᎤᎾᏨᏉᏗ ᎤᎾᏤᎸ, ᎤᏂᏣᏘ ᏍᎩᏄᎾᏍᏛ ᎠᏂᏫᎾ, ᎠᏯ ᏍᏉ.\nᎾᏍᎩᏃ ᎤᏙᏓ ᎤᏙᎴᎰᏒᎩ ᎾᎯᏳ ᎨᏒ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎢ; ᏤᏥ ᎬᏅ. ᎤᏩᏒᏃ ᎤᏬᎯᏳᏅᎩ ᎠᎴ ᎾᏍᏉ ᏂᎦᏛ ᏧᏤᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ.\nᎥᏝ ᎠᎴ ᎡᏅᏒᏉ, ᎢᎬᏒᏍᎩᏂ ᎾᏍᏉ ᎢᎬᏱᏱ ᎤᎾᏄᎪᏫᏒᎯ ᎠᏓᏅᏙ ᏥᎨᎭ, ᎠᏴ ᎾᏍᏉ ᎢᎬᏒ ᎨᏒ ᎭᏫᏂ ᏕᎩᎵᏰᏗᎭ, ᎢᏗᎦᏘᏴ ᏧᏪᏥ ᎢᎨᎬᏁᏗ, ᎾᏍᎩ ᏗᏗᏰᎸ ᏧᎫᏴᏗᏱ ᏧᏭᏓᎴᏍᏗᏱ.\nᎢᏳᏃ ᎯᎦᏙᎵ ᎯᎦᏘᏏ ᏕᏦᏕᏍᏗᏍᎨᏍᏗ, ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ, ᎠᎴ ᏣᏕᎨᏍᏗ; ᎣᏏᏳᏰᏃ ᎢᏣᎵᏍᏓᏁᏗ ᏌᏉᏉ ᏣᎵᎬᎭᎸᏛ ᏱᏣᏲᎱᏎᎭ, ᎠᏃ ᎤᏃᏍᏛ ᎯᏰᎸ ᏨᏍᎩᏃ ᏫᏰᏣᏓᎢᏁᎭ.\nᎣᏍᏓ ᎠᏒᎨ ᎠᎵᏍᏓᏴᏗ.\nᎣᏂᏃ ᏓᏆᎧᎿᏅᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎦᎶᎯᏍᏗᏱ ᎤᎵᏍᏚᎢᏛ ᎨᏒᎩ ᎦᎸᎳᏗ; ᎢᎬᏱᏱᏃ ᎧᏁᎬ ᎠᏆᏛᎦᏅᎯ ᎠᏤᎷᎩ ᏣᏆᎵᏃᎮᏗᏍᎪ ᎾᏍᎩᏯ ᎨᏒᎩ; ᎯᎠ ᏥᎾᎩᏪᏎᎰᎢ, ᎡᎭᎩᎳᏩ, ᏓᎬᎾᏄᎪᏫᏎᎵᏃ ᏧᏓᎴᏅᏛ ᎾᏍᎩ ᎣᏂ ᎢᏳᎵᏍᏔᏂᏓᏍᏗ ᎨᏒᎢ.\nᏂᎦᏛᏰᏃ ᎾᏍᎩ ᎯᎠ ᎤᏂᏲᎰ ᏧᎾᏖᎴᏅᏛ ᏴᏫ. ᎦᎸᎳᏗᏰᏃ ᎡᎯ ᎢᏥᏙᏓ ᎠᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎢᏥᏂᎬᏎᎲᎢ.\nᏓᏓᎿᏩᏍᏛᏰᏃ ᎧᏃᎮᏗ ᎨᏒ ᎠᎵᏍᏓᏁᏛ ᎤᏂᏰᎸᎭ ᎾᏍᎩ Ꮎ ᏧᏂᏲᎱᎯᏍᏗ ᏥᎩ; ᎠᏴᏍᎩᏂ ᎡᎩᏍᏕᎸᏗ ᏥᎩ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎬᎬ ᎢᎩᏰᎸᎯ.\nᎤᏂᏣᏘᏃ ᎬᏩᏛᏛᏁ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᎦᏙ ᏓᏲᏣᏛᏁᎵ?\nᏥᏍᏕᏥ, ᎧᏅᏂᏍᎩ ᏃᎴ ᎠᎨᏳᏣ ᎤᎾᎦᏙᏍᏕᎢ ᏫᎵᎻ ᏭᎩᎶᏫᏌ ᏗᎩᏏ ᎦᏓᏍᎬᎢ, ᎤᎧᎵᏨ ᏄᏟᏂᎬᎬ ᏃᎴ ᎤᏚᎩ.\nᎠᎴ ᎥᏝ ᏱᏚᏂᎿᏍᏕᏠᎢ, ᏞᎦᏉᏍᎩᏂ ᏓᏂᎧᎿᏩᏕᎪᎢ; ᎿᏉᏃ, ᎠᎩᎵᏯ ᎠᎴ ᎤᏕᏯᏙᏗ ᎠᎵᏰᎢᎶᎦ ᎧᏃᎮᏛ ᏛᎵᏰᎢᎸᏍᏓ, ᎩᎳᏉ ᎢᏴᏛ ᏚᏃᏕᎯᎰᎢ.\nᎠᏍᎩᎾᏃ ᎾᏍᎩ ᎤᏂᎶᏄᎮᎸᎯ ᎠᏥᎸ ᎠᎴ ᏌᎪᏂᎨ ᎠᏓᏪᎳᎩᏍᎩ ᎥᏓᎸ ᏩᎦᏓᎢᏅᏒᎩ, ᎾᎿ ᎠᏁᎲ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎴ ᎤᏠᎾᏍᏗ ᎠᏙᎴᎰᏍᎩ, ᎠᎴ ᎨᏥᎩᎵᏲᎢᏍᏙᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ.\nᏄᎾᏙᏓᏈᏒᏃ ᎠᏂᏧᏏ ᏧᏂᎳᏫᎢᏍᏗᏱ ᎦᏬᏂᏍᎬᎩ, ᎠᎴ ᏓᏍᏗᏰᏗᏍᎬᎩ ᎠᏂᏧᏏ ᎠᎴ ᎠᏂᎪᎢ.\nᎢᎦ ᏒᎮᏱᏣ ᎤᎶᏐᏅ, ᏃᎴ ᎤᏓᏏᏂᏕᎾ ᎤᎷᏨ.\nᎾᏍᎩᏰᏃ ᎤᏩᏒ ᎤᎩᎵᏲᏨᎯ ᏥᎩ, ᎾᏍᎩ ᎠᏥᎪᎵᏰᏍᎬᎢ ᏰᎵᏉ ᏗᎬᏩᏍᏕᎸᏗ ᏄᎵᏍᏔᏅ ᎾᏍᎩ Ꮎ ᎨᏥᎪᎵᏰᏍᎩ\nᎠᎾᏓᏴᎳᏘᏍᎩ ᏙᏍᏗᎦᏙᏍᏙ Ꮓ; ᎪᎱᏍᏗ ᎠᎾᏛᏁᎵᏍᎬ ᏒᏃ ᎢᎪᎯᏓ.\nᎤᏣᏘ ᎠᏗᎾ ᎢᏣᏚᎵᏍᎨᏍᏗ ᎣᏌᏂ ᎤᏓᏁᏗ ᎨᏒᎢ; ᎠᏎᏃ ᎬᏂᎨᏒ ᏅᏛᏨᏴᏁᎵ ᎤᏟ ᎢᏲᏍᏛ ᎢᏯᏛᏁᏗᏱ.\nᏣᎵ ᏧᏤᎵ ᏴᏫ ᎤᏂᏃᎮᎴ, ᎤᏃᎯᏳᏁ ᏱᎫᏩᏂᏍᎦᏃᎳᏗᏍᏛ ᏐᏈᎵ ᎤᏲᎢᏴ ᎦᏚᏏ, ᏧᏂᏲᎭᏒ ᎠᏂᏧᏣ ᏓᏂᎾᎥ ᎾᎥᏂ ᏚᏂᎧᎯᏰ ᎤᏂᏍᎦᎢᏓ ᏃᎴ ᎤᎾᏦᏍᏔᏁ.\nᎢᏳᏍᎩᏂ ᎩᎶ ᎯᎠ ᏂᏥᏪᏎᎮᏍᏗ, ᎯᎠ ᎾᏍᎩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᏥᎸ ᏗᎨᎴᏗ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ, ᏞᏍᏗ ᏱᏥᎩᏍᎨᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᏍᎩ Ꮎ ᎤᎾᏄᎪᏫᏒᎯ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏅᏙᎩ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎡᎶᎯᏰᏃ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎡᎶᎯ ᏣᎧᎵᎢᎭ.\nᏌᏌ ᎤᏛᎦᏁ ᎠᏂᎾᏁᏍᎬ, ᏍᏉ ᎤᏪᎷᏁ, ”ᎭᎵᏙᎩ-- ᎭᎵᏙᎩ--ᎭᎵᏙᎩ, ᎠᏙᎯ ᎢᏣ, ᎠᏙᎯ ᎢᏣ! \nᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏅᎩ ᎤᎵᏂᎩᏛ ᎧᏁᎬ ᎬᏗ, ᎯᎠ ᏂᎦᏩᏍᎬᎩ, ᏓᏓᎶᏂ ᎡᏆ ᎠᏲᎩ, ᎠᏲᎩ, ᎠᎴ ᎠᏂᏍᎩᎾ ᎤᎾᏕᏗᏱ ᏂᎦᎵᏍᏓ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᏗᏓᏅᏙ ᎤᏂᏴᏍᏗᏱ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᎠᎴ ᎤᏂᏂᏆᏘᏍᏗ ᏥᏍᏆ ᎤᎾᏁᎳᏗᏍᏗᏱ.\nᏕᏨᏍᏚᎩᎡᎸ ᏦᏥᎰᎵ, ᎢᏥᎪᎵᏂᏗ, ᏦᎩᎾᏫ ᏕᏨᏯᏛᏃᎯᏍᏓᏁᎸ.\nᎦᏣᏃᏍᏔ ᎤᎵᏍᏛᏧᏅ ᎨᎵ, ᎣᎭᏁ ᏫᏄᏩᏁᎸ ᎤᏍᏘᏰᎬ.\nᎤᏂᏃᎮᎸᎯᏃ ᎠᏎᏉᏉ ᏅᏩᏍᏕᎢ, ᎠᎴ ᎥᏝ ᏱᎨᎪᎢᏳᏁᎢ.\nᎿᏉᏃ ᎠᏥᎦᏘᏗᏍᏗ ᎤᎪᎲ ᎾᏍᎩ ᏄᎵᏍᏔᏅᎢ, ᎤᏬᎯᏳᏁᎢ, ᎠᏍᏆᏂᎪᏍᎨ ᏄᏍᏛ ᏓᎾᏕᏲᎲᏍᎬ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ.\nᎾᏍᎩ ᏉᎳ ᎤᏚᎸᎲᎩ ᎤᏘᏅᏍᏗᏱ; ᎤᎱᏍᏕᏎᎸᎩᏃ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏂᏧᏏ ᎾᎿ ᏓᏁᏩᏗᏒᎢ, ᏂᎦᏛᏰᏃ ᎠᏂᎦᏔᎲᎩ ᎤᏙᏓ ᎠᎪᎢ ᎨᏒᎢ.\nᎠᏓᏅᏖᏗᏉ ᏄᏍᏆᏂᎩᏛ ᏄᎵᏍᏔᏁᎸ ᎩᎶ ᎦᏬᏂᏍᎬ ᎤᏛᎦᎾ.\nᎤᏕᎰᎯᏍᏗ ᎨᏒ ᎤᎬᏩᎵ ᏥᏁᎦ, ᎾᏍᎩ ᏦᏥᏩᎾᎦᎳ ᎪᎪᏎᎲᎢ. ᎾᎿᏍᎩᏂᏃᏅ ᎩᎶ ᎬᏩ-ᎾᏰᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒ (ᎤᏁᎫ ᎤᏁᎢᏍᏗ ᏥᏁᎦ,) ᎠᏴ ᎾᏍᏉ ᏂᏥᎾᏰᏍᎬᎾ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏓᏅᏙ ᎢᎩᏍᏕᎵᎭ ᏗᏗᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ; ᎥᏝᏰᏃ ᏱᏗᎦᏔᎭ ᎢᏳᏍᏗ ᏚᏳᎪᏛ ᎨᏒ ᎢᎩᏔᏲᏍᏗᏱ ᎢᏓᏓᏙᎵᏍᏗᏍᎬᎢ; ᎠᏓᏅᏙᏍᎩᏂ ᎤᏩᏒ ᎢᎦᎵᏍᏗᏰᏓᏁᎭ ᎤᎵᏰᏗᏍᎬ ᎬᏗᎭ ᎾᏍᎩ ᎦᏁᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎦᎸᎳᏗ ᏕᏧᎦ ᎤᎭᏯᎴ ᏃᎴ ᎦᎸᎵᎢ ᏫᏥᏤᎢ, ᎯᎸᎯᏨ ᏭᏟᏫᏛᎮ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏕᎦᏅᎿᏩᏗᏒ ᏫᏥᎶᎯ, ᎾᏂᎥᏃ ᏕᏥᏩᏘᏍᎨᏍᏗ ᏕᏥᏁᏤᎮᏍᏗ ᎤᏂᎷᎯᏍᏗᏱ ᎠᏂ ᏙᏗᎨᎦᏨᏍᏔᏂᏒᎢ.\nᎠᎴ ᎢᎬᏱ ᏓᏳᏪᏅᎡᎵ [ᎤᎬᏫᏳᎯ] ᎢᎳᏯ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᎤᏓᏅᏙᎩ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ, ᏔᎦᏔᎲᏍᏗᏱ ᏧᏂᎾᏫ ᎠᏂᎦᏴᎵᎨᎢ ᏗᏂᏲᎵ ᎢᏗᏢ ᏫᏚᎦᏔᎲᏍᏙᏗᏱ, ᎠᎴ ᏄᏃᎯᏳᏒᎾ ᏧᎦᏔᎲᏍᏗᏱ ᎤᎾᏓᏅᏘ ᎠᏂᎦᏔᎿᎥ ᎢᏗᏢ ᏫᏚᎦᏔᎲᏍᏙᏗᏱ; ᏧᏛᏅᎢᏍᏙᏗᏱ ᏴᏫ, ᎤᎬᏫᏳᎯ ᏧᏛᏅᎢᏍᏓᏁᏗᏱ.\nᏃᏉ, ᎨᎵᏍᎬ, ᎦᏙᎭᏃ ᏳᏛᏁᎢ?\n“ᎭᏩ, ᎠᏯᏗ ᏔᎵᏁᎢ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎤᎩᎶᏫᏎ ᏃᎴ ᏄᏓᎴ ᏭᏭᏓᎸᏁ, ᎤᎵᏗᏨ ᎠᎬᏱ ᏭᏭᏓᎸᏅ.\nᎠᏍᎦᏂ ᎨᏒᎢ, ᏂᎬᏉᎯᏳᎲᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ;\nᎾᏍᎩᏍᎩᏂ ᎯᎠ ᎾᏥᏥᏁᎢᏍᏗᏍᎬᎩ; ᎣᏂ ᏓᏯᎢ ᎢᎬᏱ ᎠᎦᎴᏗ ᏥᎦᏗᏍᎬᎩ, ᎾᏍᎩᏰᏃ ᎡᎲᎩ ᎠᏏ ᏂᎨᎥᎾ ᏥᎨᏒᎢ.\nᎢᏳᏃ ᎩᎶ ᎤᏣᏘᏂ ᏂᎦᏪᏍᎨᏍᏗ ᏓᏕᏲᎲᏍᎨᏍᏗ, ᎠᎴ ᎣᏏ ᎾᏰᎸᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎣᏍᏛ ᎤᏬᏂᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎠᎴ ᏗᏕᏲᏗ ᎨᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏗᏂᎶᏙᏗ ᎨᏒ ᏥᏓᏕᏲᎲᏍᎦ;\nᎠᏓ ᎦᏓᏍᎬ, ᏫᏓᎬᏔᏅ ᎠᏥᎸ, ᏫᏥᏯᏅᎲ ᎠᏌᎻᏓ ᏃᎴ ᎠᏂᏧᏣ.\nᏐᏉ ᎢᎦ ᎤᏕᎶᎰᏎ ᎠᏲᏟᎨ ᏂᎦᎵᏍᏗᏍᎬ ᎠᎹ ᎦᏁᎲ.\nᏥᏌᏃ ᎠᏲᎵ ᏭᏯᏅᎲ ᎠᏰᎵ ᎠᏂᏅ ᎤᏪᎧᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ;\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᏌᏉ ᎢᎦᎦᏛ ᎤᏁᎳᏅᎯ ᎤᏂᏌᎳᏓᏁᎴ ᎠᏂᏁᎬᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᏣᎬᏫᏳᎯ, ᏂᎯ ᏣᏁᎳᏅᎯ, ᏗᏦᏢᏅᎯ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎠᎴ ᎠᎺᏉᎯ ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᏁᎯ;\nᎤᏁᎳᏅᎯᏃ ᎠᎩᏍᏕᎸᎲᎢ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏏ ᎦᎴᏂᏙᎭ ᎪᎯ ᎢᎦ ᏥᎩ, ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎭ ᏂᎨᏥᎸᏉᏛᎾ ᎠᎴ ᎾᏍᏉ ᎨᏥᎸᏉᏗ, ᎪᎱᏍᏗ ᏂᏥᏃᎮᏍᎬᎾ Ꮎ ᎤᏩᏒ ᎠᎾᏙᎴᎰᏍᎩ ᎠᎴ ᎼᏏ ᎤᎾᏄᎪᎢᏍᏗ ᎤᎾᏛᏅᎯ ᏥᎩ;\nᎠᎴ ᎤᏂᏣᏖᏍᏗ ᎤᎾᏠᎾᏍᏗ ᎠᎾᏙᎴᎰᏍᎩ ᎠᏂᎾᏄᎪᎨᏍᏗ, ᎠᎴ ᎤᏂᏣᏖᏍᏗ ᏓᏂᎶᏄᎮᏍᎨᏍᏗ.\nᎠᎴ ᎾᏍᎩ Ꮎ ᎯᎠ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎤᏂᏣᏛᎩ, ᎥᏝᏰᏃ ᎪᎯᏛ ᎬᏩᎾᏕᏗ ᏱᎨᏎ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏳᏍᏗ.\nᎠᎴ ᎾᏍᎩ ᏗᏂᎰᎵ ᎨᏒ ᎥᏝ ᎦᎶᏄᎮᏛ ᎬᏩᏛᏗ ᏱᎨᏎᎢ; ᎾᏂᏍᎦᏅᎾᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏄᎾᏛᏅᎢ.\nᎬᏲᏎᎭ, ᎥᏝ ᎾᎿ ᏴᏛᎦᎯᏄᎪᎢ, ᎬᏂ ᏣᏓᏴᎮᏍᏗ ᎤᎵᏍᏆᎸᏗ ᎠᎩᏄᏛᏗ ᎢᏯᏓᏅᏖᏗ.\nᎠᏤᎯ ᎤᏪᏅᏒ ᏫᎵᎻ, ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎡᎳᏗᎨᏍᏗ ᎨᏎᎢ, ᏩᎦ ᎤᏂᏴᏍᏗ ᎭᏫᏂᏣ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎴ ᎤᏕᏅᏥᏌ ᎦᎶᏁᏛ. ᎾᏍᎩ ᎺᎵ ᏥᏌ ᎤᏥ ᏦᏩ ᎤᏓᏴᏍᏗ, ᎠᏏᏉ ᏂᏓᎾᏤᎬᎾ ᎨᏎᎢ, ᎤᏁᎵᏤ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏅᏖᎸᎯ.\nᏚᏑᎬ ᎠᏕᎶᎰᏍᎬ ᎤᏳᏨ ᏍᏉ, ᎠᎾᎴᏂᏍᎬ ᏓᎵᏇᏅᏍᎬ ᏧᏆᎶᎦ ᏗᎦᏅᎯᏓ ᏗᎦᏌᏆᎸ, ᎠᏫ ᎭᏫᏯ ᎠᎦᎷᏴᏓ ᎠᎧᎭᏲᏔᏅ ᎢᏳᏍᏗ ᏂᏚᏍᏛ.\nᎤᎵᏍᏆᎸᏗᏃ ᎨᏒ ᎢᏓᎵᏅᏟ, ᎢᏣᎵᎮᎵᎩ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᏳᏍᏗ. ᎯᎠ ᎾᏍᎩ ᏫᏨᏲᏪᎳᏁᏗᏱ, ᎤᏙᎯᏳᎯ ᎥᏝ ᏧᏯᏪᎢᏍᏗ ᏯᎩᏰᎸᎭ ᎠᏴ, ᏂᎯᏍᎩᏂ ᎤᎾᏰᎯᏍᏗ ᎨᏒ ᎢᏧᏓᎴᏍᎩ.\nᏧᏓᏁᎪᏴᏓ ᏗᎦᏓᏁ ᏧᎾᎳᏑᎶ ᎠᏍᏚᎩᏛ ᎢᏣ ᎠᎾᏁᎸᏗᏍᎬ ᏧᏂᎧᎭᏲᏙᏗ, ᎠᏎ ᏎᎦᏉ ᏱᎩ, ᏑᎾᎴ ᏂᎦᎵᏍᏗᏍᎬ ᏗᎦᏓᏁ ᏧᏴᏣ ᏧᎾᎵᏑᎶᏗ ᏱᎩ.\nᎦᏙᎨ ᏙᏓᎦᏥᏯᏟᎶᏍᏔᏂ ᎯᎠ ᎪᎯ ᏣᏁᎭ? ᏗᏂᏲᎵᏉ ᎾᏍᎩᏯ ᎦᏃᏙᏗᏱ ᏣᏂᏃᎢ ᎠᎴ ᏥᏫᏓᏂᏯᏂᏍᎪ ᎤᏁᏓᏍᏗ;\nᎠᏂᏐᎢᏃ ᎠᏂᏍᎦᎢᎮ ᎬᏩᎾᎵᎪᏁᏗᏱ; ᎤᏂᏣᏘᏍᎩᏂ ᏴᏫ ᎬᏩᏂᎸᏉᏗᏳ ᎨᏎᎢ.\nᏱᏤᎵᏌ, ᏙᏳᏍᏗ ᎠᏙᎯ ᎧᏂᎩᏓ ᏱᎩ ᎤᎪᏏᏓ ᎢᏯᏅᏁ?\nᎦᏲᏟ ᎤᎧᏔᎲᏓ ᏓᎧᏔᎾᏫᏍᏗᏍᎨᎢ ᏗᎦᏅᎯᏓ ᏚᎧᏔᏳᏩᏅ.\nᎾᏍᎩᏃ ᎠᏴ ᎣᏤᎲ ᎠᏁᎲᎩ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᎠᎾᏓᏅᏟ; ᎤᏓᏂᎵᎨᏃ ᎤᏕᏒᏅ ᎤᏲᎱᏒᏉ, ᏧᏪᏥᏃ ᎾᏁᎲᎾ ᎨᏒ ᎢᏳᏍᏗ ᎤᏓᎵᎢ ᎤᏪᎪᏓᏁᎸ ᎤᏅᏟ.\nᎾᏍᎩ Ꮎ ᎢᏤ ᎠᎴ ᎬᏂᏛ ᎠᏓᏁᎯ ᎦᏅᏅ ᎬᏔᏅᎯ, ᎾᏍᎩ ᎢᎩᏍᏓᏱᏕᎸᎯ ᏥᎩ ᎠᏰᏙᎳᏛ ᎤᎶᏒᎢ, ᎾᏍᎩ ᎤᏇᏓᎸ ᏥᎦᏛᎦ;\nᎥᏝᏰᏃ ᏱᏗᎦᏟᏴᎭ ᎤᏇᏓᎵ ᎨᏒ ᎠᎴ ᎩᎬ, ᎤᏂᎬᏫᏳᎯᏍᎩᏂ, ᎠᎴ ᏧᎾᎵᏂᎩᏛ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᎡᎶᎯ ᎤᎵᏏᎩ ᎨᏒᎢ, ᏗᏓᏅᏙ ᎤᏂᏁᎫᏥᏛ ᎦᎸᎶ ᏄᎾᏛᎿᏕᎬᎢ.\nᎠᏰᎵᏍᎨᎢᏉ ᏂᎦᏪᏍᎬ ᏫᎵᎻ.\nᎤᎭᏯᎸᎾ ᎤᎾᏗᏍᎦᎶᏗ ᎠᏌᎻᏓ ᎨᏍᏗ ᏱᏚᏩᏛ ᎦᎷᏯᏍᏘ, ᎠᏁᎵᏍᎨ ᎠᏂᏍᎦᏯ ᎨᏍᏗ ᎠᏎ ᎤᏂᏃᎯᏎᏗ ᏱᎨᏎ.\n“ᏂᎦᏓᏍᎪᏃ ᏓᏤᏏ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᏥᏌ ᎤᏁᏨᎩ ᎯᎠ ᏚᏂᏪᏎᎸᎩ; ᎢᏨᏃᏁᎸᎩ, ᎠᏎᏃ ᎥᏝ ᏱᏍᎩᏲᎢᏳᏁᎢ. ᏗᎦᎸᏫᏍᏓᏁᏗ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ ᎡᏙᏓ ᏚᏙᏍᏛᎢ, ᎾᏍᎩ ᎬᏂᎨᏒ ᎾᏋᏁᎭ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏤᏣᎴᏲᎯᏏ ᎤᏁᎳᏅᎯ; ᏤᏣᏟᏴᏏ ᎠᏍᎩᎾ, ᎠᎴ ᎠᏎ ᏓᏣᏓᏅᎡᎵ.\nᎦᏅᏆᎶᏍᏗ ᏭᏴᎮ ᏣᏄᏏ ᏃᎴ ᏣᏁᎳ ᎠᏂᏎᏂᏏ ᏴᎩ, ᎣᏍᏓ ᏄᏩᏁᎴ ᎠᏦᏴ.\nᎤᏗᎦᎴᏲᏤ ᎧᏃᎮᏓ.\nᎩᎶᏃ ᎾᏍᎩ ᎤᏤᎵᎦ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᏆᏂᎪᏗᏍᎩ ᎾᏍᎩ ᎠᏯᎣᎢ [ᎤᏁᎳᏅᎯᏱ], ᎠᎴ ᎾᏍᎩ ᎤᏯᎣᎢ [ᎤᏁᎳᏅᎯ]. ᎠᎴ ᎠᏓᏅᏙ ᎢᎩᏁᎸᎯ ᎨᏒ ᎾᏍᎩ ᎢᏓᏙᎴᎰᎯᏍᏗᎭ ᎠᏴ ᎢᎩᏯᎥᎢ.\nᎾᏍᎩᏃ ᎢᏳᏂᏧᏈᏍᏗ ᎠᏂᎦᏔᎯ ᏥᎦᎨᎦᏚᏫᏍᏗ, ᎢᏴᏛ ᏂᏛᏁᏓ ᏄᏓᎴᏒ ᎦᎨᏛ ᎢᎬᏁᎯ, ᎠᎴ ᎠᏍᎦᏂ ᎠᎯᏛ ᎨᎦᏢᏔᏍᏗ ᏥᎩ, ᎠᎴ ᏗᏛᏂᏗᏳ ᎨᏎᏍᏗ ᎢᏓᏙᎩᏯᏍᎨᏍᏗ ᎠᏙᎩᏯᏍᏗ ᎢᎬᏱᏗᏢ ᏁᎬᏁᎸᎢ,\nᎠᏴᏃ ᏦᎩᎸᏫᏍᏓᏁᎯ ᎣᏥᏍᏕᎵᏍᎩ ᎾᏍᏉ ᎢᏨᏍᏗᏰᏗᎭ ᎠᏎᏉᏉ ᎡᏥᏁᏗᏱ ᏂᎨᏒᎾ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ.\nᎩᎦᎨᏃ ᎠᏓ ᏥᏕᏈᎦ.\nᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏌᏛᎢ\nᎪᎯᎢᏴ ᎩᎳ ᎤᏬᏂᏎ.\nᎫᏒᏗ ᏄᏩᏅᏓᎩᏎ ᎨᏂᏗ ᏗᎦᎶᏔᏅ ᎧᏁᏌᎢ.\nᎤᎩᏨᏓ ᎨᏍᏗ ᏳᏗᏛ ᎦᏙ ᎤᏢᏅ.\nᎤᏬᎸᏃ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ ᎤᏓᎵᎢ ᏧᏓᏅᏎᎢ, ᎯᎠ ᏅᏧᏪᏎᎴᎢ; ᏞᏍᏗ ᏂᎯ ᎪᎱᏍᏗ Ꮎ ᎾᏍᎦᏅᎾ ᎠᏍᎦᏯ ᎤᎬᏩᎵ ᏱᏗᏣᎸᏫᏍᏓᏁᎴᏍᏗ, ᎤᏣᏘᏰᏃ ᏥᎩᎵᏲᎩ ᎪᎯ ᎢᎦ ᎦᏍᎩᏓᏍᎬᎢ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ.\nᎿᏉᏃ ᎢᎦᏛ ᎬᏩᏍᏓᏩᏗᏐᎯ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎦᏙ ᎦᏛᎦ ᎯᎠ ᏥᏂᎩᏪᏎᎭ; ᏂᎪᎯᎸᎾᏉ ᎿᏉ ᎥᏝ ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ, ᎠᎴ ᎿᏉ ᏔᎵᏁ ᏂᎪᎯᎸᎾᏉ ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ? ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎦᏴᎵᎨᏍᏛᏱ ᏫᏥᎦᏛᎢ?\nᎾᏍᎩᏃ ᏂᎦᎥ ᏧᏓᎴᎥᏛ ᎤᏣᏘ ᏥᏥᎭ, ᎾᏍᎩ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎦᏭᏂᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᎥ ᏧᏓᎴᏅᏛ ᎢᏥᎦᎵᏴᎢ, ᎠᎴ ᎠᏴ ᏍᎩᎨᏳᎢᏳ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏓᏁᏗ ᎨᏒ ᎾᏍᏉ ᎤᏣᏘ ᎢᏥᎮᏍᏗ.\nᎯᎠᏃ ᏄᏪᏒᎩ; ᎠᏂᏧᏏ ᎤᎾᏓᏅᏖᎸ ᎨᏣᏔᏲᏎᏗᏱ ᎤᎩᏨᏅ ᏕᎦᎳᏫᎥ ᏫᏯᏘᏃᎯᏍᏗᏱ ᏉᎳ, ᎾᏍᎩᏯ ᎪᎱᏍᏗ ᎤᏟ ᎢᎦᎢ ᏨᏗᎾᏛᏛᏂᏐᎢ.\nᏍᏔᏯ ᏓᏆᎧᎾᏅ ᎦᏲᏟ ᎤᏔᎶᎩ.\nᎪᎱᏍᏗ ᎡᏍᎦᏉ ᏱᎩ ᎪᎱᏍᏗ ᏱᎨᏒᎾ---ᎠᏎ ᎦᏲᏟᏉ ᏱᎩ.\n“ᎭᏩᏃ, ᎠᏉᏚᎯ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎤᏍᏗ ᏦᎳᏂ ᎤᏓᏴᎳᏔᏁ ᎤᎸᏌᏛ.\nᏎᎦᏨ ᎠᎩᏆᏂᏲᎸ ᏃᎴ ᎠᎬᏱᏱᎨᏍᏗ ᏥᏲᎯᏍᏗᏍᎬ, ᎨᏍᏗ ᎠᎦᏗᏓ ᎠᏕᎳ ᏗᎩᏲᎰᏎᏗ ᏯᏆᏚᎵᏍᎨ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏰᎵ ᎤᏬᎯᏤ ᎤᏕᏁ ᏦᏈ, ᏗᏑᏫᏍᎩ ᏌᏩᏂ ᏧᏙᎢᏛ ᎦᏁᎸᎢ.\nᎠᏎᏃ ᎡᏆ ᏣᏓᏁᎶ ᎾᎿ ᏓᎰ ᏗᏖᎵᏙ ᎥᏝ ᎠᏕᎸᏉ ᏓᎶᏂᎨ ᎠᎴ ᎠᏕᎸᎤᏁᎬ ᎤᏩᏒ ᏗᎪᏢᏔᏅᎯ ᏱᎨᏐᎢ, ᎾᏍᏉᏍᎩᏂ ᎠᏓ ᎠᎴ ᎦᏓ ᏗᎪᏢᏔᏅᎯ; ᎠᎴ ᎢᎦᏛ ᏗᎦᎸᏉᏗ ᎢᎦᏛᏃ ᏗᎦᎸᏉᏗ ᏂᎨᏒᎾ.\nᎠᏎᏃ ᎪᎱᏍᏗ ᎢᎬᏰᎵᏎᎭ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎢᎬᏱᏱ ᏍᎩᎨᏳᎯᏳ ᏄᎵᏍᏔᏅ ᏕᏣᏲᏒᎢ.\nᎤᎾᏓᏓᏍᎩᏌᏁᎢ ᏌᏌ ᎤᎾᏕᎶᎰᎯᏍᏗ ᎤᏬᏨᏛᎢ ᏃᎴ ᏍᏉ ᎤᏂᏃᏕᎾ ᏃᎴ ᎠᏂᏓ ᎤᏂᏃᏕᎾ.\n“ᏗᏥᏲᏟ, ᎡᏝᏪ ᎨᏎᏍᏗ ᏏᏆ ᎣᏣᏦᎣᏔᏅ ᎢᎪᎯᏓ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎠᏎᏃ ᏍᎩᏍᏆᏂᎪᏓ ᎬᏅᎢ, ᏌᎳᏓ, ᏃᎴ ᎤᎵᎮᎵᏍᏗ ᎠᏯ ᎬᏅᎢ ᏱᎬᎥᏏ---ᎤᏙᎯᏳ ᏍᎩᎾᎾ ᏱᏂᎦᏛᎦ.\nᎬᏂᎨ ᏧᎪᏒ ᏧᏆᎶᎦ ᏃᎴ ᎦᏅᏃᏩ-ᎦᏄᎸ ᏓᎵᏍᏆᎵᏍᎬ ᎠᎾᎢᏒ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᏳᏛᎾ ᎠᏌᎻᏓ, ᎱᏂᎷᏣ ᎠᏄᏧᏣ. ᏗᎾᏘᎭᏁ ᏐᏈᎵ, ᎠᎵᏍᏔᏴᏗ ᏩᏆᎦᏎᏍᏔᏅ.\n “ᏗᏤᎾ!” ᎤᏦᏱᎴᎢ\nᎠᎴ ᏕᏥᎦᏅᎩ ᎤᏃᏕᎾ ᎠᎩᎾ ᎤᏲᏍᏔᏅ ᏌᏉ ᎠᏍᎦᏛ ᎪᏪᎵ; ᎠᎴ ᎠᏆᏛᎦᏅᎩ ᎠᏴᏓᏆᎶᏍᎩ ᏧᏃᏴᎪ ᎾᏍᎩᏯ.Ꭲ, ᎾᏍᎩ Ꮎ ᎠᏏᏴᏫ ᏅᎩ ᎢᏯᏂᏛ ᎨᏒ ᏗᏅᏃᏛ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎡᎭᎦᏔᏄᎦ.\nᎩᎶᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ, ᎥᏝ ᎢᎸᎯᏳ ᎦᏰᏥᏙᎵᏍᏗ ᏱᎨᏎᏍᏗ, ᏗᎦᏰᎫᎪᏓᏁᏗᏉᏍᎩᏂ ᏫᎾᏍᏛᎾ ᎤᏍᏛᏗᏍᏗᏱ;\nᎾᎿᏂ ᏂᎬ ᎠᏓᏁᎸ ᎣᏍᏛ ᏗᏓᏙᎵᎩ ᎢᎬᏁᎸᎯ, ᎠᏛᏍᎪᎢ ᎦᎸᏉᏗ ᎠᏓᏁᎸ ᏂᎦᎵᏍᏗᏍᎪ ᎤᎬᏫᏳᎯᏱ ᎠᏝᏅᎯ;\nᏥᎸᏍᎦ ᏃᏉ.\nᎠᏲᎳᏔᏅ ᎤᏅᏗ, ᎦᏚ ᎤᏯᏍᎦ ᏧᏓᎴᏅᏓ ᎤᏂᏑᎸᏓ, ᎦᏚ ᎤᎦᎾᏍᏓ ᎠᏔᎸᎩᏓ, ᎤᏣᎴᏍᏓ ᎦᏚ ᏩᏚᎵᏏ ᎤᏓᏅᎵᏰᏓ, ᏄᎾ ᎦᏁᎦ, ᏧᏪᏥ ᎠᏑᏰᏓ ᎠᎦᏅ ᏆᎷᏏ ᎤᏂᎧᏲᏓ ᏗᏑᏴᏅ ᏃᎴ ᏑᎾᎴ ᎠᎩᏍᏗ ᏧᎵᎦᎸᏓ.\n”ᏗᏁᎶᏗᎩ?” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ, ᏕᎦᏄᏖᏲᎮ ᏚᏄᏌᏛ.\nᎨᎵᏲᏃ ᏂᎯᏳ ᎠᎧᏯ ᎠᏥᎦᏘᏗᏍᏛᎢ, ᎠᏂᏧᏏ ᏌᏉ ᎢᎦᎦᏛ ᎬᏩᏁᎷᎩᎡᎸᎩ ᏉᎳ, ᎠᎴ ᎬᏩᏘᏃᎸ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ,\nᏑᏥᎶᏛ ᎢᎬᎾᏕᏅ ᎤᏂᎵᏦᏩᏛ ᏧᏲᎸ ᎨᏒ ᏂᎦᏓ ᏌᎶᎵ ᎫᏇᏗ ᎬᏘ ᏩᏏᏓᏂ.\nᎠᏎᏃ ᎥᏝ ᏱᏣᏚᎵᎭ ᏍᎩᎷᏤᏗᏱ ᎬᏂᏛ ᎢᏣᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ.\nᏣᏂ ᏧᏬᎸ ᎢᏣᏓᏅᏒᎩ, ᎠᎴ ᎾᏍᎩ ᏚᏳᎪᏛ ᎤᏃᎮᎸᎩ.\nᎢᏳᏃ ᎪᎱᏍᏗ ᏯᏥᎾᏄᎪᏫᏎᎸ ᎩᎶ ᎾᎥ ᎤᏬᎵ, ᎢᎬᏱ ᎤᎴᏅᏛ ᎡᎳᏪ ᎬᏍᎨᏍᏗ.\nᎯᎠ ᎾᏍᎩ ᎣᏥᏲᏍᏙᏗᏍᎬᎢ, ᎩᎶ ᎪᎱᏍᏗ ᎪᎨᎵᏎᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᎤᎬᏩᎵ ᎪᎱᏍᏗ ᎣᎬᏁᏗ ᏥᏂᎦᎵᏍᏗᎭ;\nᎿᏉᏃ ᎠᎦᏛᎾᎩ ᎩᎳᏉ ᎢᏴᏛ ᎠᏍᎫᏕᏍᎪᎢ, ᎠᏍᎫᏕᏍᏗᏱᏰᏃ ᎤᎵᏰᎢᎶᎶᎢ.\nᎠᏎᏃ ᏂᏦᎯᏳᎲᏍᎬᎾ ᏱᎩ ᎾᏍᎩ ᎤᏬᏪᎳᏅᎯ, ᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏦᎯᏳᎲᎦ ᎠᏴ ᏥᏁᎬᎢ?\nᎠᏥᎦᏘᏗᏍᏗᏰᏃ ᎪᎱᏍᏗ ᎾᎫᎢᏍᏛᎾ ᏱᎩ, ᎾᏍᎩᏯ ᎣᏍᏛ ᎢᏳᏩᎿᏕᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᎥᏝ ᎤᏩᏒ ᎠᏓᏅᏖᏍᎬ ᎤᏟ ᎤᏰᎸᎯ, ᎥᏝ ᎤᎿᎸᏣᏘ, ᎥᏝ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎤᎦᎾᏏᏍᎩ, ᎥᏝ ᎠᏓᏛᏂᎯ, ᎥᏝ ᏧᎬᏩᎶᏗ ᎤᎬᎥᏍᎩ.\nᎧᏅᏂᏍᎩ ᏲᎪ ᎤᏰᏟ: ᎨᏎ, ᎤᎸᏉᏗ ᎤᎦᏙᏍᏕᎢ ᏏᏆ, ᎠᏓᏅᏖᏍᎨᎢ ᎢᏳᎵᏍᏔᏁᏗ ᏭᏩᎦᏘᏗᏒᎢ.\nᎠᏂᎧᏔᎮᎢ ᎢᏳᏉ ᎤᎴᏅᏗ ᏗᏙᎴᏆᏍᏗ.\nᏗᏂᎦᏘᏯᏃ ᎤᎾᎵᏎᎢ, ᏗᎦᏚᎲ ᏭᏂᎶᏎᎢ, ᏂᎦᏛ ᏭᏂᏃᎮᎴᎢ, ᎠᎴ ᎠᏂᏍᎩᎾ ᎬᏩᏂᏯᎢ ᏄᎾᎵᏍᏓᏁᎸᎢ.\nᎾᏍᎩᏃ ᏄᏪᏒ ᎤᎦᏔᎲᏒᎩ; ᎠᎴ ᎤᎪᎲᎩ ᏥᏌ ᎦᏙᎬᎩ, ᎠᎴ ᎥᏝ ᏳᏬᎵᏤ ᏥᏌ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᏯᏍᏆᏂᎪᏗᎭ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅᎢ, ᏝᏍᎪ ᎾᏥᎤᏍᏕᏎᎸᎾ ᎨᏒ ᎠᏥᎤᏍᏕᏎᎸᎯ ᎨᏒ ᎠᏥᏰᎸᎾᏁᏗ ᏱᎦᎩ?\n”ᏥᎦᏔ ᎢᏳᏍᏗ ᏂᎦᏛᏁᎲ.\nᎠᏏᏴᏫᏍᎩᏂ ᎢᎸᎯᏢ ᎤᏁᏤ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏴᏫ ᎾᏍᎩ ᏥᏯᏓᏅᏖᏍᎪᎢ? ᎠᎴ ᏴᏫ ᎤᏪᏥ, ᎾᏍᎩ ᏥᏯᎦᏔᏂᎯᎰᎢ?\nᏴᏫ ᎤᏪᏥ ᎤᎷᏨ ᎠᎵᏍᏓᏴᎲᏍᎦ ᎠᎴ ᎠᏗᏔᏍᎦ; ᎯᎠᏃ ᏂᏥᏪᏎ; ᎬᏂᏳᏉ ᎠᏍᎦᏯ ᎤᎬᎥᏍᎩ ᎠᎵᏍᏓᏴᏗ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ ᎠᏗᏔᏍᎩ, ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎤᎾᎵᎢ.\nᏝᏍᎪ ᎠᏏ ᏱᏦᎵᎦ ᎾᏍᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎥᎰᎵ ᎤᏴᏍᏔᏅᎯ ᎨᏒ ᎣᏍᏉᎵᏱ ᏫᎦᎷᎬᎢ, ᎾᏍᎩᏃ ᏫᎦᎶᎯᏍᏗᏍᎬᏉ?\n”ᏧᎬᎢ ᎦᎵᏦᏕ ᎯᎾᏁᏍᎬᎳ,” ᎤᏛᏁ ᎡᎳᏆᏗ.\nᎯᎩᏍᎪᎯ ᏳᏕᏘᏴᏓ ᏥᎨᏎ, ᎠᎾᏗᏍᎬ, ᏚᏭᎪᏔᏅ ᏧᏂᏰᏗ ᎠᎴ ᏧᏬᏪᎶᏗ ᎢᏗᏬᏂᏍᎬ.\nᎠᏙᎯ ᏱᏤᏙᎳ, ᏙᎢᏳᏍᏗ ᎭᎦᏙᏍᏙᎢ?\nᎤᏁᎷᏁᎢ ᏌᏌ.\nᎤᏁᎳᏅᎯ ᎠᎦᏔᎯᏳ ᏅᏧᏓᎴᏅᎲᎾ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᎾᏍᎩᏃ ᎤᏲ ᏣᏂᏟᏏᏍᎪ ᎠᎴ ᏣᎾᎪᎲᏍᏗᏍᎪ ᎠᏥᎸᏱ, ᎾᏍᎩᏯᏍᎩᏂ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎠᎵᏍᏆᏛᎭ ᎯᎠ ᎡᎶᎯ.\nᎭᏓᏄᏖᏯᎦ ᏃᎴ ᎭᎧᏔᎲᎾ!” \nᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎤᏙ ᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ, ᎩᎶ ᏔᎵᏁ ᎤᏕᏅᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ ᎥᏝ ᏴᎬᎪᏩᏛ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎬᏫ ᏳᎯ ᎨᏒᎢ.\nᎿᏉᏃ ᏥᏌ ᏚᏬᏁᏔᏅᎩ ᎤᏂᏣᏘ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ,\nᎤᏖᎸᎳᏛᎢ ᎠᏴ, ᏚᏩᏂᎦᎸᎢ ᏂᎯ. ᎠᏴ ᎠᎩᏯᎢ, ᎠᏴᏃ ᏥᏯᎢ, ᎾᏍᎩ ᎤᏣᏙ ᎠᎾᏓᏛᎥᏍᎪᎢ. ᎥᏝᏰᏃ ᎠᏴ ᎥᏝ ᏰᎵ ᎪᎱᏍᏗ ᏴᎨᏣᏛᎦ.\nᎩᎶ ᎾᏍᎩ ᎾᎿ ᏅᏲᎯ ᎠᏢᏨᎭ ᏓᏳᏐᏅᏂ; ᎩᎶᏃ ᎾᏍᎩ ᎤᏐᏅᎭ ᏓᏳᏪᎵᏬᏔᏂ.\nᏈᏓᏃ ᎤᏍᏓᏩᏛᏎ Ꭸ ᎢᏴᏛ ᏣᎢᏎ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏗᎦᏁᎸ ᎬᏗᏍᎩ, ᎤᏴᎴᎢ, ᎠᎴ ᎨᏥᏅᏏᏓᏍᏗ ᎢᏧᎳᎭ ᎠᏂᏁᎢ, ᎤᎪᏩᏛᏗᏱ ᎤᏰᎸᏎ ᏩᎵᏍᏆᏗᎯᎲᎢ.\nᏗᏥᏲᎵ, ᎿᏉ ᎤᎵᏍᏆᎸᏗ, ᎢᏣᏛᎦᏅᎯᏃ ᏥᎩ ᎤᎷᎯᏍᏗᏱ ᎦᎶᏁᏛ-ᎠᏡᏗᏍᎩ, ᎠᎴ ᎪᎯ ᎨᏒ ᎤᏂᏣᏔ ᎦᎶᏁᏛ-ᎠᎾᏡᏗᏍᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏗᎦᏔᎭ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎨᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎨᎬᏓᏁᏗ ᏫᎾᏍᏛᎾ ᎠᏓᏛᏗᏍᎩ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ,\nᎢᏳᏓᎵ ᎠᏓᏅᏖᏍᎨ ᏌᎳᏓ.\nᎥᏝᏃ ᎩᎶ ᎦᎸᎳᏗ, ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎡᎶᎯ ᎭᏫᏂᏗᏢ ᏰᎵ ᎬᏩᏛᏗ ᏱᎨᏎ ᎪᏪᎵ ᎬᏩᏍᏚᎢᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎾᎿ ᏗᎬᏩᎧᏃᏗ.\nᏙᎩᏃᏣᏝ ᎦᏓᏁᏍᏙ ᎨᏒ, ᎠᏆᏛᏅ.\nᎤᎷᏨ ᎤᏩᏅ.\nᎬᏁᏤᎭ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ, ᎾᏍᎩ ᏗᎬᏂᏗᏍᎩ ᏥᎩ ᏂᎦᎥ ᏄᎾᏓᎴᏒᎢ, ᎠᎴ ᎠᎦᏔᎲ ᏥᏌ ᎦᎶᏁᏛ ᎾᏍᎩ ᏆᏂᏗ ᏆᎴᏗ ᎠᎦᏔᎲ ᎤᏃᏅᎯ ᏥᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎨᏒᎢ,\nᎠᎴ ᎥᏝ ᎤᏁᎳᎩ ᏳᏪᎵᏎᎴ ᎩᎶ ᎪᏞᏍᏗ ᎤᏍᏗ ᎠᏖᎵᏙ ᎤᏴᏙᏗᏱ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᎠᎴ ᎠᏴ ᏍᎩᏍᏓᏩᏕᎩ ᏂᏣᎵᏍᏔᏅᎩ, ᎠᎴ ᎤᎬᏫᏳᎯ [ᎡᏥᏍᏓᏩᏕᎩ,] ᏕᏣᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏣᏘ ᎢᏥᎩᎵᏲᎬᎢ, ᎤᎵᏠᏯᏍᏛ ᎤᎵᎮᎵᏍᏗ ᎨᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏅᏓᏩᏓᎴᏅᎯ;\nᎾᏍᎩᏰᏃ ᏧᏭᎪᏙᏗ ᎨᏒ ᏚᏳᎪᏛᎢ ᎠᎴ ᎣᏍᏛ; ᎾᏍᎩᏰᏃ ᏚᏭᎪᏓᏁᎸ ᎤᏣᏘ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎾᏍᎩ ᎤᏕᎵᏛ ᏓᏂᏏᏂᏙᎲ ᎤᏂᏲ ᏥᏂᏚᏩᏁᎸ ᎡᎶᎯ ᎠᏁᎯ, ᎠᎴ ᎤᏞᏨ ᏧᏅᏏᏓᏍᏗ ᎤᏂᎩᎬ ᏚᏨᏁᎸᎢ.\nᎪᎱᏍᏗ ᎠᏍᏆᎵᏍᎬ ᎭᏂᏣ ᎠᏍᏆᏚᎸ, ᎦᏅᎯᏛ ᎤᎵᏏᎦ ᎠᏑᏫᏓ ᎦᏍᎩᎸ ᎣᏍᏓᏕᎭᏲᎲ, ᎦᎵ ᏓᏌᏁᎥ ᏧᏃᏩ ᏧᏓᎴᏅᏓ ᎠᎵᏍᏔᏴᏗ.\nᎤᎾᏓᏍᏔᏴᏃᎾ, ᏧᏂᏍᏗ ᎨᏒ ᏌᎶᎵ ᏳᏂᏁᎦᎸᎾ, ᎠᏎᏃ ᎠᏂᏬᏗᎨ ᏃᎴ ᎪᎢᎭ ᎤᏂᏔᎷᎩᏍᎬ.\nᎤᎵᏂᎩᏛᏰᏃ ᏥᎩ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗᏳ ᎾᏆᏛᏁᎸ; ᎠᎴ ᎦᎸᏉᏗᏳ ᎾᏍᎩ ᏕᎤᏙᎥᎢ.\nᎯᎠ ᎾᏍᎩ ᎯᎦᏔᎭ, ᏂᎦᏛ ᎡᏏᏱ ᎠᏁᎯ ᎬᏋᏕᏨᎢ, ᎾᏍᎩ ᎤᎾᏓᏑᏯ ᏆᏤᎳ ᎠᎴ ᎭᎹᏥᏂ.\n“ᏫᎵᎻ!” ᏭᏯᏅᎮ.\nᏂᎦᏓ ᎤᏁᏅᏎ ᏫᎵᎻ ᏤᏙᎲ ᎢᏣ. ᎨᏍᏗ ᏯᎦᏔᎮ ᎢᏳᏛᏁᏗ ᏫᎵᎻ.\nᎯᎠ ᎤᏉᏔᏗ ᏧᎬ ᎤᎵᏬᏨ ᎡᎰᎢ.\nᎠᎧᏔᎮᎢ ᎦᏓᏁ ᏂᎦᎵᏍᏗᏍᎬ ᏧᏍᏆᏴᏍᏗ. ᎨᏍᏗ ᎣᏍᏓ ᎫᏩᏓᏅᏖᏗ ᏱᎨᏎ.\nᎠᎴ ᎠᏍᏓᏯ ᎤᏁᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏂᎨᏴ ᎠᏁᎲ ᏂᎯ ᏭᏓᎪᎾᏛᏗ ᎡᏣᎸᏉᏗᏳ; ᎠᎴ ᎦᎸᏉᏗᏳ ᎾᏍᎩ ᏂᎯ ᏨᏘᎾᏄᎪᏫᏏ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏓᏚᏓᎴᏍᏙᏗ ᎨᏒ, ᏗᎧᎿᏩᏛᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ, ᎬᏂᎨᏒ ᎢᎬᏁᎸᎯ, ᎪᎯᏳᏙᏔᏅᎯ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎠᎾᏙᎴᎰᏍᎬ ᏚᏃᏪᎸᎢ;\nᎾᏍᎩᏯ ᎾᏍᏉ ᏂᎯ, ᎢᏳᏃ ᎩᎾ ᏂᏚᏲᏐᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏂᎦᏛ ᎤᏤᎵ ᎨᏒᎢ, ᎥᏝ ᏰᎵ ᎠᎩᏍᏓᏩᏕᎩ ᏱᏅᎦᎵᏍᏓ.\nᏧᏆᎶᎬ ᏫᏓᏆᎧᎾᏅ, ᎠᎩᎦᏓᎲᏍᎬ ᎢᏣ ᎦᏃᎸᎥᏍᎬ, ᎠᏌᎻᏓ ᏕᏥᏯᎦᏅ, ᎦᎶᏇ ᎠᎦᏙᏗ ᏫᏄᏩᏅ ᎠᎦᏙᎵ, ᎨᏍᏗ ᏱᏚᎴᏫᏍᏔᏁᎸ ᏓᏂᏥᏍᏔᎳᏍᎬ ᎦᏅᏃᏫ, ᎡᎳᏗ ᏨᏌᏙᏯᏍᎪ ᎢᏳᏍᏗ ᎠᏆᏤᎸᏅ, ᎣᏂᏲᎯᏍᏔᏅ ᏓᏂᏥᏍᏔᎳᏍᎬ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎢᎸᎯᏢ, ᎤᏑᎵᎪᏨ, ᎠᏏᏴᏫ ᎤᏍᏓᏩᏗᏙᎯ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᏍᎩᏰᏲᎲᎦ ᎣᎦᏓᏙᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᏣᏂ ᏥᏄᏛᏁᎴ ᏥᏚᏪᏲᏁ ᎬᏩᏍᏓᏩᏗᏙᎯ.\nᏦᏍᏓᏓᏅᏟᏃ ᎠᏴᏃ ᎡᏙᏓᎴ ᏃᏊ ᎣᏥᏓᏩᏛᏒ ᎩᏟ.\nᎢᏗᎦᏪᏍᏗ ᏕᎯᏔᏲᎯᎲ ᏕᎬᏃᎯᏏ.\n“ᎦᏙᏃ ᏱᏣᏓᏅᏖᏗ ᏗᏣᏌᏛᏗ ᎠᎵᏍᏓᏴᏗ?” \n“ᏥᏗᏤᎾ, ᏗᏥᏲᏟ!” ᎤᏦᏱᎴᎢ.\nVIII. ᏚᏁᏅᏒ ᏚᎾᏟᏃᎮᎸ  \nᎠᎴ ᏥᎪᎥᎩ ᎯᎠ ᎾᎩᏪᏎᎲᎩ; ᎾᏞᎬᏉ ᎢᏴᏛ ᎯᏄᎪᎢ ᏥᎷᏏᎵᎻ; ᎥᏝᏰᏃ ᏱᏙᏛᏂᏂᏴᎯ ᎠᏴ ᏍᎩᏃᎮᏍᎬᎢ.\nᎤᏍᏆᏘ ᎤᏯᏨ ᏫᎵᎻ ᏄᏩᏅᏓᎩᏎ ᎰᎻ, ᏴᎩ ᎦᎭᏛ ᏏᏆ ᎤᏴᏍᏗ ᎦᎸᎳᏗᏣ ᎤᏛᏁ, ᎠᎾᏓᏩᏛᎯᏙ ᎤᏂᎪᎵᏰᏗ.\nᎠᏴᏰᏃ ᎦᎸᎳᏗ ᎢᏕᎯ; ᎾᎿ ᎾᏍᏉ ᏅᏓᏳᎶᎯᏍᏗᏱ ᏥᏗᎦᏖᏃᎭ ᎢᎩᏍᏕᎵᏍᎩ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ;\n“ᏲᎾ ᎤᏤᏍᏙ, ᎠᎦᏓ ᏥᎦᏔ ᏗᏛᎯᏍᏙᏗ ᏏᏆ ᎠᏂᏓ,” ᎤᏛᏁ ᎡᎶᏗ.\nᎤᎾᎵᏍᏓᏴᎯᏃ ᏅᎩᎭ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎩ ᎠᏂᏍᎦᏯ, ᏂᏓᏁᏢᏛᎾ ᎠᏂᎨᏴ ᎠᎴ ᏗᏂᏲᎵ.\nᏧᏐᏱᎭ ᎨᏎ ᎢᎦ, ᎠᏗᏍᎨ ᎠᏌᎻᏓ.\nᎠᏂᏃᎮᏍᎬ, ᎠᎬᏱ ᎠᏂᏐᏅᏍᎨ ᎦᎶᏇ ᎠᎴ ᎦᎵᏣᏗ ᎬᏘ, ᏃᏉ ᎩᎦ ᎠᏔᏍᎩᏍᎬ ᎤᎵᏍᏗ ᎤᎵᏍᏙᏗ.\nᏍᎩᏴ ᎤᏕᏘᏴᏌᏗᏒ, ᎠᏏᎠ ᏓᏓᏳᎶᏒ ᏚᏂᎸᏉᏛ ᎢᏧᎳ ᎠᏂᎨᏯ ᏃᎴ ᎠᏂᏍᎦᏯ, ᎠᏎᏃ ᏗᏗᎦᎴᏴᏓ ᎨᏒ pirates, gauchos, ᏃᎴ ᎠᏂᏴᏫᏯ ᎠᏂᎨᏯ ᏃᎴ ᎤᏂᎬᏫᏳ, ᏍᎩᏴ ᎠᎩᏩᏛᎲ ᏗᏋᏙᏗ ᏕᎷᎨ ᎠᎵᏍᏚᎶ ᏃᎴ ᎦᎸᎳᏗ ᎢᏗᎦᏘ ᏧᏣᏬᏓ.\nᎾᏍᎩᏍᎩᏂ ᏐᎢᏱ ᏗᎨᏒ ᎠᎴ ᎠᏲᎱᏛ Ꮧ-ᎴᎯᏐᏗ ᎨᏒ ᏰᎵᏉ ᎬᏩᎾᏖᎳᏗᏍᏗ ᎨᏥᏰᎸᎯ, ᎥᏝ ᏱᏓᎾᏕᏒᎲᏍᎪᎢ, ᎥᏝ ᎠᎴ Ᏹ-ᏗᎨᏥᏰᎪᎢ.\nᎤᎶᏐᏁ ᎪᎳ ᏎᎦᏨᎯ.\nᏱᎰᏩ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᎢᎦᏁᎳᏅᎯ, ᎾᏍᎩ ᏥᏂᎦᎴᏍᏙᏗᎭ ᎢᎦᎦᏘ ᏗᏰᎵᎯᏍᏗᏍᎩ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎢᎩᏩᏛᎯᎸᎯ ᏥᎩ,\nᎿᏉᏃ ᏥᏌ ᎤᏪᎷᏅᎩ ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ ᏓᏕᏲᎲᏍᎬᎢ, ᎯᎠ ᏄᏪᏒᎩ; ᏍᎩᎦᏔᎭ, ᎠᎴ ᎾᏍᏉ ᎢᏥᎦᏔᎭ ᏗᏆᏓᎴᏅᎢ; ᎠᎴ ᎥᏝ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛ ᏯᎩᎷᏨ, ᏅᏛᎩᏅᏏᏛᏍᎩᏂ ᏚᏳᎪᏛᎢ, ᎾᏍᎩ ᏁᏥᎦᏔᎲᎾ ᏥᎩ.\nᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᎣᏨᏗᏍᎬᎢ, ᎤᎵᏂᎩᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎣᏨᏗᏍᎬᎢ, ᏚᏳ-ᎪᏛ ᎨᏒ ᎠᎦᏘᏏᏗᏢ ᎠᎴ ᎠᎦᏍᎦᏂᏗᏢ ᎣᎦᏣᏅᏛᎢ,\nᎾᏍᎩ ᎯᎠ ᎤᎴᏅᏔᏅᎩ ᏥᏌ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎸᎩ ᎨᎵᎵ ᎨᏂ ᎦᏚᎲᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ. ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎬᏬᎯᏳᏅᎩ.\n”ᎤᎸᏂᏗᏍᎩ ᏥᏍᏕᏥ!” ᎤᏪᎵᏎ ᏫᎵᎻ.\nᎤᏬᏚᏨ ᎤᏉᏔᏗ ᎠᏩᏔ ᎠᎵᏰᎾ.\nᎦᏙᎨ ᏣᎵ ᎤᏛᎦᏍᏕ ᏓᏍᏆᎵᏍᏘᏍᎬ ᏧᏩᏂᎦᏝᏅ ᏃᎴ ᎠᏓᏅᏖᏍᎨ ᏂᏕᏆᎸ ᏗᎦᏆᎵ.\nᏧᎾᏓᎸᎯ.\nᎩᎶᏃ ᏂᏗᏣᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ, ᎾᎿ ᎦᏚᎲ ᎢᏥᏄᎪᎨᏍᏗ, ᏗᏣᎳᏏᏕᏂ ᎪᏍᏚ ᏚᏅᎦᎸ ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎧᏃᎮᏍᎩ ᎨᏎᏍᏗ ᎤᎾᏡᏗᏍᎩ.\nᎢᎦᏓ ᏄᎾᏍᏛ ᏣᎳᎩᏱ ᎠᏰᎵ ᏄᏍᏛ, ᎠᎵᏍᎨᎢᏃ ᎤᏁᎦ ᏱᏄᎵᏍᏔᎾ, ᏯᎵᏍᏕᎸᏙᏓ.\n“ᎭᏩ,” ᎤᏛᏁ ᏥᏍᏚ, “ᎢᏕᎾ.”\nᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎢᏥᏍᎦᏯ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᏣᏛᏁᎭ? ᎠᏴ ᎾᏍᏉ ᏴᏫᏉ ᎾᏍᎩᏯ ᏂᏣᎵᏍᏓᏁᎲ ᎢᏲᎩᎾᎵᏍᏓᏁᎯ, ᎠᎴ ᎢᏨᏯᎵᏥᏙᏁᎭ ᏗᏥᏲᎯᏍᏗᏱ ᎯᎠ ᎠᏎᏉᏉ ᏂᏣᏛᏁᎲᎢ, ᏫᏣᎦᏔᎲᏍᏗᏱᏃ ᎬᏂᏛ ᎤᏁᎳᏅᎯ ᎢᏗᏢ, ᎾᏍᎩ ᎤᏬᏢᏅᎯ ᏥᎩ ᎦᎸᎶᎢ ᎠᎴ ᎦᏙᎯ ᎠᎴ ᎠᎺᏉᎯ ᎠᎴ ᎾᏂᎥ ᎾᎿ ᎠᏁᎯ;\nᎠᎨᏴᏃ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎥᏝ ᏰᎭ ᎠᎩᏰᎯ. ᏥᏌᎯᎠ ᏄᏪᏎᎴᎢ; ᏰᎵ ᏂᏫ ᏴᎭ ᎠᎩᏰᎯ, ᏣᏛ;\nᏚᏂᏰᎵᎯᏍᏔᏅᏃ ᎤᏂᏣᏘ ᏅᏩᏛᏁᏉ ᏥᏳᎯ ᎤᏣᎥ ᎬᏩᏘᎾᏫᏛᎮᎢ; ᎠᎴ ᎾᏍᏉ ᏂᏗᎬᏩᏓᎴ ᏧᏍᏗ ᏥᏳ ᎤᎾᎵᎪᏩᏗᏎᎢ.\nᏧᏬᏚᎢ ᏓᎭᏃᏍᏗ ᎨᏒ.\nᎡᎳᏗ ᎦᏙ ᎠᏆᏚᎵ ᏗᏥᏅᏗ.\nᎠᏏᏉᏰᏃ ᎤᏙᏓ ᎠᏰᎸ ᎠᏯᎡᎢ ᎾᎯᏳ ᎹᎵᎩᏏᏕᎩ ᏥᏚᏠᏍᎨᎢ.\n”ᎬᎪᏩᏔ ᎾᏛᏁᎲᎢ,” ᎤᏛᏁ ᏌᎳᏓ.\n“ᎭᎵᏖᎸᎮᏍᎬ ᎠᏆᏚᎵ ᎬᎪᏩᏛᏗ, ᎠᏆᏕᎶᎰᎯᏍᏗ ᏱᏣᏔᎷᎩᎠ.”\nᎧᏁᏌᎢ ᏭᏴᎴᎢ. ᎠᏔᎴᎦᏒ ᎦᏚᎢᏣ ᎠᏯᏖᏅ ᏭᏗᏍᎦᏝᏁᎢ.\nᎾᏂᎥ ᎤᎾᏚᎵᏍᎩ ᎣᏍᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏗᎨᎦᎦᏅᏗᏱ ᎤᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏎ ᏤᏥᎤᏍᏕᏎᏗᏱ ᏂᎨᏨᏁᎰᎢ; ᏄᎾᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᎤᏂᏍᏛᏗᏍᏗᏱ ᎦᎶᏁᏛ ᎤᏤᎵ ᏓᏓᎿᏩᏍᏛᎢ.\nᏌᏩᏂᏃ ᎤᏙᎴᎰᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎨᏥᏁᎲᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᏓᎾᏏᏔᏗᏍᎬ ᎨᏥᏅᏏᏛ, ᎾᏍᎩ ᏕᎤᎵᏍᎪᎸᏓᏁᎴ ᎠᏕᎸ,\nᎾᏍᎩᏯ ᎾᏍᏉ ᎥᏝ ᏳᏚᎵ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ, ᏌᏉ ᎯᎠ ᏧᎾᏍᏗᎦ ᎨᏒ ᏧᏂᏲᎱᎯᏍᏗᏱ.\nᎠᎩᏥ ᏥᎨᏒ ᎠᏌᏛᎥᏍᎩ ᎨᏒ.\nᎥᏝᏰᏃ ᎩᎶ ᎦᎸᎳᏗ ᏫᏳᎶᏐᎢ, ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ ᎤᏩᏒ, ᏴᏫ ᎤᏪᏥ, ᎾᏍᎩ ᎦᎸᎳᏗ ᏤᎭ.\nᎠᎴ ᏂᎦᏛ ᎠᎹᏰᎵ ᏚᏪᎧᏩᏗᏒ ᎤᎾᎵᏒᎩ, ᎠᎴ ᏙᏓᎸ ᎥᏝ ᏗᎬᏩᏛᏗ ᏱᎨᏎᎢ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛᏁᎰ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ, ᎾᏍᎩ ᎾᎿ ᎠᏇᎳᏗᏍᎩ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏎᏃ ᎾᎿ ᎠᏂᏁ ᎩᎶ ᎢᏳᎾᏍᏗ ᏗᏃᏪᎵᏍᎩ, ᎯᎠ ᏄᏍᏕ ᎠᎾᏓᏅᏖᏍᎨ ᏙᏧᎾᏓᏅᏛᎢ,\nᎾᏍᎩᏃ ᎯᎠ ᏂᏥᏪᎭ, ᎠᏓᏅᏙᎩᎯ ᎢᏣᎢᏎᏍᏗ, ᎤᏇᏓᎵᏃ ᎤᎬᎥᏍᎬ ᎥᏝ ᏱᏂᎨᏣᏛᏁᏍᏗ.\nᏤᏍᏗ ᏱᏨᏅᎨᏍᏗ ᏃᎴ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ!\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏗᏍᏓᏱᏳ ᎨᏒ ᎢᏳᏍᏗ ᏗᏥᎾᏫ ᎼᏏ ᎤᎾᏁᎳᎩ ᏓᏂᎨᏙᎯᎮᏍᏗ ᏧᎾᏓᎵᎢ, ᎢᏤᎵᏎᎸᎩ; ᏗᏓᎴᏂᏍᎬᏍᎩᏂ ᎥᏝ ᎾᏍᎩ ᏱᏄᏍᏕᎢ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᏗᏍᎩᎾᏝᎢ, ᎠᏍᎪᎯ ᎢᏳᏓᎨᏛ ᏕᎤᎭ--\nᎭᏫᏂ ᎤᏛᎸᎮ ᏫᎵᎻ.\nᏗᎦᎶᎩᏍᎩ ᏥᏚᎸᏫᏍᏓᏁᎰᎢ ᎢᎬᏱ ᎤᏪᎳᏗᏍᏙᏗ ᎨᏐ ᎤᎾᏄᎪᏫᏒᎯ.\nᏚᎭᏄᏮ ᏂᎦᏓ ᎤᏁᎦ ᏃᎴ ᏥᏳ ᏧᏆᎶᎦ ᏗᎪᏒᏔᏅ ᎨᏎ, ᎢᎾᏓ ᏚᏩᏥᏍᎧᎸ ᎾᎥᏂᎨ ᏂᏚᏍᏕ. ᏚᏑᎦ ᏧᏆᎶᎦ ᎪᏒᏔᏅ ᎤᎵᏍᏇᏚᎨ.\nᎤᏍᏆᎸᎲᏰᏃ ᎾᏍᎩ ᏗᎫᎪᏙᏘ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᎤᏓᎴᏅᏗᏱ; ᎢᏳᏃ ᎠᏴ ᏰᎦᎴᏅᏔᏅ ᎦᏙ ᎤᏍᏗ ᏭᎾᎵᏱᎶᎯᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ Ꮎ ᏄᏃᎯᏳᏒᎾ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎠᎨᏴᏍᎪ ᏕᏍᏓᏚᏓᏔ? ᏞᏍᏗ ᏗᏍᏓᏚᏓᏕᏍᏗᏱ ᏣᏲᎸᎩ. ᎠᎨᏴᏍᎪ ᏂᏗᏍᏓᏚᏓᏛᎾ? ᏞᏍᏗ ᏣᏲᎸ ᏣᏓᎵᎢ.\nᎬᏂᏳᏉᏃ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᎤᏤᎵᎦ ᎤᏂᎷᏤᎴᎢ, ᎠᎴ ᎦᏄᏉᏗᏳ ᏚᎸᏌᏛ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦᏚᎾᏚᏫᏍᏔᏁᎢ ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᏂᏍᎦᎴᎢ.\nᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏳᏃ ᏴᏫ ᎨᏥᏂᏆᏘᎮᏍᏗ, ᎠᎴ ᎨᏣᏓᏓᎴᏗᏍᎨᏍᏗ, ᎠᎴ ᎦᎨᏥᏐᏢᏕᏍᏗ, ᎠᎴ ᎠᏂᏍᎦᎩᏳ ᎨᏎᏍᏗ ᏕᏣᏙᎥ ᎪᎱᏍᏗ ᎤᏲ ᎾᏍᎩᏯᎢ, ᏴᏫ ᎤᏪᏥ ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎣᏍᏓ ᏱᎨᏎ ᎯᎸᎯᏴ ᏗᏥᎪᎥ ᏱᎨᏎ ᏚᏅᏓᏒ ᎤᏛᏅ.\nᎠᏂᏲᏟᎨ ᎠᎹᏱ ᎠᏍᏛᎢ ᎠᎾᏓᏬ, ᎥᏣ ᎾᎥᏂ, ᎥᏣ ᎭᏫᏂ, ᏃᎴ Ꮳ ᎦᏚᎢᏣ.\nᎾᏍᎩᏃ ᎬᏬᎯᏳᎲᏍᎨᎢ, ᎪᎯᏗᏳᏲᏰᏃ ᎬᏩᎴᏅᏛ ᎨᏎ ᎤᏍᏆᏂᎪᏗ ᏓᏓᏅᏓᏗᏍᏗᏍᎨ ᎠᏙᏂᏍᎬᎢ.\nᎠᏂᏲᏍᎩ ᎠᏂᏧᏣ ᎤᎾᎵᏍᏔᏴᏃᎾ ᎤᎾᏁᎸᏔᏅ ᏐᏉ ᎢᏳᏪᏅᏍᏘ ᎠᎴ ᏔᎵ ᎤᏂᏢᏗ, ᎠᏎᏃ ᎠᎾᏓᏌᏆᎴᏍᎬ ᏧᏍᏆᏅᏂ ᏃᎴ ᎡᏝᏪᎯ ᎠᏂᏬᏂᏍᎬ.\nᎤᏍᎦᏍᏓᏁᎴ ᏫᎵᎻ.\nᎤᏟᏃ ᎢᏯᏂᎢ ᏴᏫ ᏧᎾᏄᏬ ᏚᏂᏰᏍᏛᏅᎩ ᏅᏃᎯ, ᎢᎦᏛᏃ ᏚᏅᏂᎦᎸᎲᎩ ᏧᏪᏲᏔ ᏕᏡᎬᎢ, ᎠᎴ ᏅᏃᎯ ᏚᏂᏲᏔᏅᏅᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏚᎪᏗᎭ ᎾᏍᎩ ᏴᏫ ᎪᎯᏳᏗ ᎨᏒ ᎠᏚᏓᎴᏍᏗᏍᎬ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᏄᏛᏁᎸᎾ.\nᎠᏴ ᎢᏗᏧᏏ ᎢᎦᏕᏅᎯ ᏥᎩ, ᎠᏂᏍᎦᎾᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏄᎾᏍᏛ ᎢᎦᏕᏅᎯ ᏂᎨᏒᎾ ᏥᎩ,\nᏙᏯᏛ ᎤᏍᎪᎵᏍᏗ ᎥᎨᏒ ᏗᏧᎬ ᎠᏒᏛᏗ ᏫᎫᏓᎸ.\nᏂᎦᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎠᎵᏍᎦᏍᏙᏙ ᎢᏣᏣᏅᏓ, ᎾᏍᎩ ᏰᎵ ᎨᏣᎴᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏍᎩᎾ ᎠᏏᎾᏌᏅ ᏕᏥᎦᏘᎸᏍᏗᏍᎬᎢ.\n”ᎧᏅᏂᏍᎩᏕᎩ ᏌᎳᏓ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ ᎤᏥ.\nᎤᎴᏅᏔᏅᏃ ᎼᏏ, ᎠᎴ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ, ᏚᏬᏏᏌᏁᎴ ᎾᎦᎥ ᎪᏪᎸ ᎾᏍᎩ ᎤᏩᏒ ᎤᏃᎮᏍᎬᎢ.\nᎣᏍᏓ ᎤᎪᎵᏰᎡ ᎤᏍᏗ ᎠᏣᏗ ᎡᏆ ᎠᏣᏗ, ᏃᎴ ᎯᎠ ᏄᏪᏎ, ᎦᏙᏃ ᎤᏍᏗ ᎠᏣᏗ ᎯᎨᏦᏎᎰ?\nᎤᎦᏔᎲᏒᏃ ᎯᎠ ᎾᏥᏪᏎᎸ ᏈᏓ; ᎠᏆᏐᎭᏛ ᎭᎴᎲᎦ, ᏎᏓᏂ, ᏗᏍᏉᏕᏍᏗᏍᎩᏉ ᏂᎯ, ᎥᏝᏰᏃ ᏯᏓᏅᏕᎭ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᏴᏫᏉᏍᎩᏂ ᎤᏁᏤᎵ ᎭᏓᏅᏕᎭ.\nᎠᎴᏉ ᎦᏣᏃᏍᏔ ᏄᏩᏅ, ᏃᎴ ᏣᏉ ᎤᏪᎵᏒ.\nᎠᎴ ᏚᏟᎶᏍᏔᏁᎴ ᎾᏍᎩ ᎾᏫᎨᏥᏯᏅᏛ, ᏚᎪᎲ ᏓᎾᏑᏰᏍᎬ ᏄᎬᏫᏳᏒ ᏗᏂᏢᏗᏱ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ,\nᏚᏯᏪᎨ ᎤᎵᏨᏓᏆᏓ ᎭᎦᏘᏴ ᏧᎾᏦᎯᏍᏗ ᎠᏤ ᎤᎾᎵ.\nᎥᏝ ᎩᎶ ᎢᎸᎯᏳ ᏱᎬᏩᎪᎰ ᎤᏁᎳᏅᎯ; ᎤᏩᏒᎯᏳ ᎤᏕᏁᎸᎯ ᎤᏪᏥ, ᎠᎦᏴᎵᎨ ᎦᏁᏥᎢ ᎡᎯ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏄᏩᏁᎸ.\nᎠᎴ ᎬᏂᏳᏉ ᎩᎶ ᎢᏳᏍᏗ ᎠᏯᎦᏯ ᏥᎷᏏᎵᎻ ᎡᎮ ᏏᎻᏯᏂ ᏧᏙᎢᏛ; ᎠᎴ ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᎧᎿᏩᏎᎩ ᎨᏎᎢ, ᎠᎦᏘᏰ ᎢᏏᎵ ᎨᏥᏄᏬᎯᏍᏙᏗᏱ; ᎦᎸᏉᏗᏳᏃ ᎠᏓᏅᏙ ᏔᎵ ᎤᏛᏗᏕᎨᎢ.\nᎾᏍᎩ ᎯᎠ ᎢᏳᏪᏅᏍᏗ, ᎧᏂᎩᏓ ᏴᏫ ᎨᏎᎢ ᏏᏆ ᎤᏴᏍᏗ ᎾᎥᏂ, ᏥᏍᏕᏥ, ᎧᏅᏂᏍᎩ ᏃᎴ ᏏᏆ ᎤᏅᏌ ᎨᏎᎢ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎤᎾᏁᎳᎩ ᏗᏤᎵᏏ ᏧᎾᏍᏗ ᏗᏂᏲᎵ, ᎠᎴ ᏞᏍᏗ ᏗᏥᏅᏍᏓᏕᎸᎩ ᎬᎩᎷᏤᏗᏱ; ᎾᏍᎩᏰᏃ ᏄᎾᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ.\nᏥᏌ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎢᏥᏙᏓ ᏱᎩ, ᏍᎩᎨᏳᎢᏳ ᏱᎩ; ᎤᏁᎳᏅᎯᏱᏰᏃ ᏗᏆᏓᎴᏅ ᎠᎩᎷᏥᎸ; ᎠᎴ ᎥᏝ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᏛᏯᎩᎷᏥᎸ, ᏗᎩᏅᏒᏍᎩᏂ.\nᎢᏳᏰᏃ ᎩᎶ ᎠᏍᎦᏯ ᏳᏴᎵᎸ ᏕᏥᎳᏫᎥᎢ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎵᏰᏑᏍᏙᎩ ᏧᏬᏚᎯ ᏧᏄᏩᎢ, ᎾᏍᏉᏃ ᏳᏴᎵᎸ ᎤᏲ ᎢᏳᏛᎾᏕᎩ ᏗᎦᏓᎭ ᏧᏄᏩᎢ;\nᎪᎯ ᎨᏒ ᎢᏯᏍᏗ, ᎠᎪᏄ ᏙᏱᏲᏏᎭ, ᎠᎴ ᏙᎩᏔᏕᎩᎭ, ᎠᎴ ᏦᎩᏰᎸᏌᎢ, ᎠᎴ ᎠᏍᏈᏅ ᏙᎬᏂᏍᏗᎭ, ᎠᎴ ᎢᎸᎯᏢ ᎣᎨᏅᏒ ᏂᎨᏒᎾ;\nᎩᎶ ᎤᎾᎵᏱ ᎠᏃᏝᎬ ᎠᏂᎯᏲᎲᎢ. ᎨᏍᏗ ᎤᏁᏙᎸ ᏱᎨᏎ ᏃᎴ Ꮳ ᎤᏂᎩᏌᏓ ᏱᎨᏎ ᎤᏁᏓᏍᏗ Chapel Hill.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᎤᏟᏰᏃ ᏂᎦᎥ ᏗᏣᎬᏩᎶᏗ ᏂᎯ ᎡᏍᎦᏉ ᎤᏂᏣᏘ ᏥᏍᏆᏯ.\nᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎧᏃᎮᏛ ᏙᏓᎦᏥᏯᏠᎢᏍᏓᏁᎵ ᎾᎯᏳ ᎦᎶᏐᏅᎭ ᎠᏗᎭ ᎤᎬᏫᏳᎯ; ᏗᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏧᏂᎾᏫᏱ ᏙᏓᏥᎳᏂ, ᎠᎴ ᏚᎾᏓᏅᏛ ᏙᏓᎪᏪᎳᏂ.\nᎯᎠ ᎢᎾᏓ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏗᏩᏒᎩ, ᎠᎴ ᎤᏁᏒᎩ ᎤᏤᏍᏙ, ᎠᎴ ᎤᏪᏙᎸᎩ. ᎠᎴ ᎤᎾᏙᏓᏆᏍᎬ ᎨᏒᎩ ᎾᎯᏳ ᎢᎦ.\nᏚᎧᏔᏍᏔᏁᎢ. ᎡᏝᏪ ᎨᏎ ᏎᎦ.\nᎦᏙᏃ ᏯᎫᏕᏯᏙᏓᎾ?\nᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᎤᏓᏂᎵᎨ ᏚᏁᎶᏕᏍᏗ ᎣᏂ ᎡᎯ;\nᎩᎶ ᏱᎦᏬᏂᎭ ᏅᏩᎾᏓᎴ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ, ᎤᏩᏒ ᎠᏓᎵᏂᎪᎯᏍᏗᏍᎪᎢ; ᎩᎶᏍᎩᏂ ᏯᏙᎴᎰᏍᎦ ᏓᎵᏂᎪᎯᏍᏗᏍᎪ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ.\nᏥᏌᏃ ᎤᏂᏲᎸᎩ, ᎠᎴ ᎤᏛᏅᏗᎦᎳᏫᏍᏗᏱ ᎠᏂᏙᎾᎥ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ; ᎦᏙ ᎢᏤᎵᎭ? ᏝᏍᎪ ᏓᎾᎵᏍᏓᏴᎲᏍᎬ ᏴᏓᎦᎷᏥ?\nᎿᏉᏃ ᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ ᏈᏓ; ᏥᎯᎳᏓ ᏣᏤᎵ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎦᎳ-ᏗᏍᏗᏱ; ᎤᎵᏍᏈᏗ ᎡᏙᏓ ᎠᎩᏁᎸᎯ, ᏝᏍᎪ ᏴᏓᎦᏗᏔᎯ?\n”Ooomp!” ᎤᎵᏰᏔᏁ.\nᎠᎴ ᎤᏍᏆᏂᎪᏎ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎨᏒᎢ. ᎠᎴ ᎤᏪᏙᎴ ᎤᏚᎾᏛ ᏕᎦᏚᏩᏗᏒᎢ ᏓᏕᏲᎲᏍᎨᎢ.\nᎬᏂᎨ ᏱᎨᏎ, ᏳᏩᏁᎦ, ᎬᏂᎨᎢ ᏃᎴ ᏧᏓᎴᏅᏓ ᎩᎦ ᎤᏁᎯ ᏱᎨᏎ.\nᎤᎵᏖᎸᏂᏍᏔᏁᎢ ᎤᏏᎳᏛ ᏃᎴ ᎤᎧᏙᏍᏔᏁᎢ.\nᎠᎴ ᎨᏥᏁᏤᎸᎩ ᎪᎱᏍᏗ ᎤᏅᏁᏗᏱ ᏂᎨᏒᎾ ᎧᏁᏍᎦ ᎡᎶᎯ ᎤᏰᎬᎢ, ᎠᎴ ᏂᎦᎥᏉᎪᎱᏍᏗ ᎢᏤ ᎤᏴᎾᎥᎢ, ᎠᎴ ᏂᎦᎥᏉ ᏕᏡᎬᎢ; ᎾᏍᎩᏉᏍᎩᏂ Ꮎ ᎤᏅᏒ ᏴᏫ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᏓᏰᎸᏙᏗ ᎨᏒ ᏄᏂᏰᎸᏒᎾ ᏗᏂᎬᏓᎨᏂ.\nᎠᏓᎨᏳᏗ ᎨᏒ ᏄᏠᎾᏍᏛᎾ ᎨᏎᏍᏗ. ᎢᏥᏂᏆᏘᎮᏍᏗ Ꮎ ᎤᏲ ᎨᏒᎢ; ᏕᏥᏂᏴᏎᏍᏗ ᎣᏍᏛ ᎨᏒᎢ.\nᎨᏍᏗ ᏯᏂᎦᏔᎮ ᏄᏓᏅᎯᏒ ᏭᏕᎵᎬ, ᎠᎴ ᎢᎪᎯᏓ ᏫᎦᎶᎯᏍᏗ ᎨᏒ, ᎠᎴ ᏄᏍᎦᏎᏛ ᏭᏂᎶᎯᏍᏗ.\nᎾᏍᎩ ᎯᎠ ᎼᏏ ᏧᏂᏲᎢᏎᎴ ᎯᎠ ᏥᏄᏂᏪᏎᎢ, ᎦᎪ ᏂᏣᎬᏫᏳᏌᏕᎩ ᎠᎴ ᏚᎪᏗᏍᎩ ᏣᎧᏅ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏅᏎ ᏄᎬᏫᏳᏌᏕᎩ ᎠᎴ ᎤᏄᏓᎴᏍᎩ ᏄᏩᏁᎴ ᎤᏩᏔᏁ ᏗᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏳᏛᏁᎸᎯ ᎤᏪᏲᏓᏛᎢ.\nᎡᎵᏍᏗ ᏦᏍᎪᎯ ᎢᎦ ᏧᏂᏑᎸᏓ ᏧᎾᏕᎾᏅᎯ ᏕᏥᎦ.\n“ᎤᏙᎯᏳᎯ, ᏥᎦᏔᎭ,” ᎤᏛᏁ ᏣᏄᏏ.\nᎡᎳᏗ ᎢᏳᎾᏛᏂ ᏳᎾᏓᏛᎾ, ᎡᏝᏪᎯ ᏳᏂᎦᏘᏓ, ᏰᎵᏉ ᎪᎱᏍᏗ ᎣᏍᏓ ᏱᎦᎶᎯ.\nᎠᎹ ᎤᏩᏩᏙᎢᏍᏗ ᏭᎷᏤ ᏫᏚᏑᎸᎮ ᏃᎴ ᎠᏓᏌᏆᎴᏍᎩ ᎠᎵᎧᏲᏙᏗ ᏚᎧᏲᏔᏁ ᏧᏬᏰᏂ.\nᎤᏓᎾᏏᏅᏔᏁᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏗᎦᏓᎥᎢ ᎢᏳᏓᏅᎯᏓ.\nᎠᎨᏴᏃ ᎦᏙᎬ ᎢᏗᏢ ᏭᎦᏔᎲᏍᏔᏅ ᎯᎠ ᎾᏥᏪᏎᎴ ᏌᏩᏂ; ᎯᎪᏩᏘᏍᎪ ᎯᎠ ᎠᎨᏴ? ᎯᏁᎸ ᎠᎩᏴᎸᎩ, ᎠᎹ ᎥᏝ ᏱᏍᎩᏁᏁᎴ ᏗᏉᏑᎴᏗ ᏗᏆᎳᏏᏕᏂ; ᎾᏍᎩᏍᎩᏂ Ꮎ ᏓᏉᏑᎵᏏ ᏗᏆᎳᏗᏕᏂ ᏧᎦᏌᏬᎸᎯ ᎬᏓ, ᎠᎴ ᏓᎩᎧᏲᏙᏓᏏ ᎤᏍᏘᏰᎬᎢ.\nᎦᏙᎨᏃ ᏓᏓᏛᏂ? ᏥᎪ ᎠᏏᏉ ᎨᏗᏍᎦᏅᎨᏍᏗ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏁᏉᎢᏍᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ?\nᏍᏆᎳᎯᎨ ᎭᏅᎦ ᎤᎵᏍᎨᏛ ᎨᏒᎢ.\nᎨᏍᏗᎭ ᏥᏔᎷᎩᏍᎩ ᏱᎩ, ᎠᏎᏃ ᏰᎵᏉ ᏱᏂᎦᏛᎦ.\nᏓᏓᏏ ᏥᏔᏲᏎᎸᎩ, ᎠᎴ ᎠᏁᎩ ᎥᏥᏅᏒᎩ ᎢᏓᎵᏅᏟ. ᏥᎪ ᏓᏓᏏ ᎢᏥᎶᏄᎮᎴᎢ? ᏝᏍᎪ ᎤᏠᏱᏉ ᎠᏓᏅᏙ ᏲᏍᏛᏗᏍᎨ ᎣᏍᏕᏙᎲᎢ? ᏝᏍᎪ ᏌᏉ ᏱᎨᏎ ᏙᏍᏓᎳᏏᏂᏙᎲᎢ?\nᏅᎦᏍᎪᎯᏃ ᏧᏕᏘᏴᏛ ᎢᎪᎯᏛ ᎤᏁᎳᎩ ᎤᏪᎵᏎ ᏄᎾᏛᏁᎵᏙᎸ ᎢᎾᎨᎢ.\n“Ꭳ, Ꭵ ᎤᏙᎯᏳᎯ,” ᎤᏛᏁ ᏫᎵᎻ.\nᎿᏉᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏓᎻ; ᎡᏍᎦ ᎡᏅᎦ ᎯᏰᏌᏛᎢ, ᏘᎪᎵᏯ ᏗᏉᏰᏂ, ᎠᎴ ᎡᏍᎦ ᎡᏅᎦ ᏦᏰᏂ ᏥᏍᏆᎨᏂ ᏩᏐᎾᏓ, ᎠᎴ ᏞᏍᏗ ᏃᎯᏳᎲᏍᎬᎾ ᏱᎨᏎᏍᏗ, ᎰᎯᏳᎲᏍᎩᏍᎩᏂ ᎨᏎᏍᏗ.\nᎾᏍᎩ ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᏗᏓᏓᏂᎸᎦ ᎾᏍᎩ ᎢᏳᎾᏍᏗ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏕᎩᎸᏫᏍᏓᏁᎲ ᏱᏗᏍᏕᎵᎭ ᏚᏳᎪᏛ ᎨᏒᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᏱᏥᎶᏒᏍᏗᏍᎨᏍᏗ ᎢᎦᎢ ᎡᏥᏁᏤᎸ ᎢᏥᎩᏏᏓᏍᏗᏱ.\nᏤᎦᏈᏃ ᎤᏛᎦᏅ ᎤᏣᎴᏍᏗ ᎡᎲ ᎢᏥᏈᏱ, ᏕᎤᏅᏎ ᏗᎩᎦᏴᎵᎨ ᎩᎳ ᎾᎨᏎᎢ.\nᎤᏒᎯᏰᏱ ᏓᏘᏍᎬ ᎦᎴᏫᏍᏗᎭ ᎢᎾᎨᎢ ᎾᎥᎢ\nᎫᎦ ᎤᏅᏗ ᎠᏥᏍᏛ ᎠᏰᎯ, ᏑᎧᏔ ᏧᎬ ᎭᏫᏂᏣ ᎤᏓᏍᏛᏧᏁᎢ ᏲᎾ ᎤᏤᏍᏙ.\nᎤᎩᏨᏓ, ᏯᏴᏓᏆᎶᏍᎬᎾ ᏱᎩ ᏯᎦᏍᎬᎾ ᏱᎩ, ᏂᎦᏓ ᏧᏂᎷᏫᏍᏔᏁ ᎠᏂᏗᏍᎩᏏᏍᎨ ᎧᏁᏍᎦ, ᏓᏆᎴᎳ ᎠᏂᏐᏗᏍᎨᏍᏗ ᏃᎴ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ  ᎦᎸᎳᏗ ᏫᏛᏂᏌᏂ. ᏲᎾ ᎤᏤᏍᏙ ᏃᎴ ᎡᎳᏆᏗ ᎧᏁᏍᎪ ᎦᏚᎢ ᎤᎾᎩᎴᏍᏗ.\nᎠᎴ ᏄᎾᏓᎴ ᎠᏫ ᏓᎩᎧᎭ, ᎾᏍᎩ ᎥᏝ ᎯᎠ ᎤᏂᏴᏍᏗᏱ ᏯᏂᏯᎠ; ᎾᏍᎩ ᎾᏍᏉ ᎠᏎ ᏙᏓᎦᏘᏃᎵ, ᎠᎴ ᏛᎾᏛᎦᏂ ᏥᏁᎬᎢ; ᎠᎴ ᏑᎾᏓᏡᎩ ᏅᏛᎾᎵᏍᏔᏂ; ᎠᎴ ᏌᏉ ᎨᏎᏍᏗ ᎠᏫᏗᎦᏘᏯ.\nᎧᎩᏳᏍᏗ ᏌᎳᏓ?”\nᏗᎧᎿᏩᏛᏍᏗᏃ ᎤᏁᎴ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎤᎬᏩᎵ; ᎡᏆᎭᎻᏃ ᎤᏕᏁᎴ ᎡᏏᎩ, ᎤᎱᏍᏕᏎᎴᏃ ᏧᏁᎵᏁ ᎢᎦ, ᎡᏏᎩᏃ ᏤᎦᏈ, ᏤᎦᏈᏃ ᏔᎳᏚ ᎢᏯᏂᏛ ᏗᎩᎦᏴᎵᎨᎢ.\nᏥᏌᏃ ᎾᎿ ᎤᎷᏨ, ᎦᎸᎳᏗ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎤᎪᎮᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏌᎩᏯ, ᏞᎩᏳ ᎡᎭᏠᎠᎯ; ᎪᎯᏰᏃ ᎢᎦ ᏥᎩ ᏘᏁᎸ ᏫᎨᏙᎮᏍᏗ.\nᏃᏊᏗ ᎡᏆ ᏧᏃᏔᏁᎢ ᎾᎥᏂ ᎤᏍᏗ ᎦᏅᏅ ᏃᎴ ᏧᎾᏗᏍᎦᎳᏁ ᏌᎷᏱ. \nᏍᏔᏯ ᏭᏗᏅᏎ, ᎤᏟᏂᎬᎬ ᎢᎦ, ᏔᎵᏉ ᏧᏟᎷᎬᏓ ᎦᎷᏯᏍᏘ, ᏲᎾ ᎠᏰᎸᎢ ᏭᏂᏌᏁ ᏍᏔᏯ.\nᏃᎴ ᎣᎭᏂ ᎠᏓᏙᎵᏍᏙᏗ ᎠᎬᏱ ᏯᎯᎲᎾ. ᏧᏆᎶᎦ ᏕᎫᏌᎡᏍᏘ ᎩᎦ ᎤᏍᏔᏲᏒ ᎬᏘ, ᏤᏍᏗ ᎤᎴᏫᏍᏔᏅᎯ.\nᏚᏂᎵᏦᏩᏛ, ᎢᎦᏓ ᎠᏂᎨᏯ ᎤᏅᏌ ᏚᎾᏓᎸ.\nᎥᏝᏰᏃ ᎣᏏᏳ ᏳᏂᏰᎸᏁ ᏄᏍᏛ ᎤᎵᏁᏨᎢ, ᎾᏍᎩ ᎦᎾᏜᎢᏉ ᎾᏍᏉ ᏳᏃᏟᏍᏔ ᎣᏓᎸᎢ ᎠᏎ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏥᏲᏍᏗᏉ ᎨᏒ ᏗᎬᏩᎶᏒᎯ.\nᎠᎴ ᎦᏙ ᏱᎦᎵᏍᏙᏗ ᏯᎾᎵᏥᏙᎲᎦ ᎢᏳᏃ ᏂᎨᏥᏅᏒᎾ ᏱᎩ? ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏂᏚᏬᏚᎭ ᏧᎾᎳᏏᏕᏂ ᎾᏍᎩ Ꮎ ᎣᏍᏛ ᎧᏃᎮᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᎠᎾᎵᏥᏙᎲᏍᎩ, ᎣᏍᏛ ᎧᏃᎮᏛ ᎠᎾᎵᏥᏙᎲᏍᎩ ᎾᏍᎩ ᎣᏍᏛ ᎤᎬᏩᎵ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ [ᏥᏌ] ᎦᏅᎬ ᎠᎵᏍᏓᏴᎲᏍᎬ ᎾᏍᎩ ᎦᏁᎸᎢ, ᎤᏂᏣᏖ ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ ᎠᎴ ᎠᏂᏍᎦᎾ ᎢᏧᎳᎭ ᏓᏂᏅᎨ ᏥᏌ ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ; ᎤᏂᏣᏖᏰᏃ, ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎮᎢ.\nᏕᏥᎸᏉᏕᏍᏗ ᎾᏂᎥᎢ; ᏕᏥᎨᏳᏎᏍᏗ ᎠᎾᎵᏅᏢᎢ; ᎤᏁᎳᏅᎯ ᎡᏥᎾᏰᏍᎨᏍᏗ; ᎤᎬᏫᏳᎯ ᎡᏥᎸᏉᏆᏍᏗ.\nᎠᎩᎨᏳᏔᏅ ᏥᎾᏄᎩᏣᏗ, ᎦᎶᎯᏍᏗᏳᎳ ᎦᏙᎬ ᎦᏥᏃᏍᏔ ᎠᎹ ᎨᏴ ᎢᏣ ᏫᏓᎧᏅ, ᎦᏐᎯ ᎣᎭᏁ ᏂᏚᏩᏅ ᏧᏬᏰᏂ.\nᎤᏃᏕᎾ?”\nᎿᏉᏃ ᎹᏗ ᎤᏛᎦᏅᏉ ᏥᏌ ᏣᎢᏒᎢ ᏫᏚᏠᏒᎩ. ᎺᎵᏍᎩᏂ ᎦᎵᏦᏕᏉᎬᏬᎸᎩ.\nᎤᏃᏴᎵᏓ ᏭᏂᎷᏨ ᎦᎵᏦᏩᏛ, ᏂᎦᏓ ᎤᎾᏗᏍᎦᏟ ᎤᏂᏰᏨ, ᎤᎾᏗᏛᎲ ᏗᎫᏩᎭᏄᏫ.\nᏎᎷ ᎦᏓᏫᏔᏅ ᏧᎾᏦᏴᏍᏗ ᏧᏓᏅᎵᏰᏓ ᏔᎷᎩᏍᎩ ᏗᎪᏱᏅᏍᏗ, ᏔᎷᎩᏍᎩ ᎠᏣᏗ ᏧᏓᏅᎵᏰᏓ, ᏗᎪᎢᎭ ᎪᏪᎵ ᏗᎦᏅᏙᏗ ᎤᎪᏏᏓ...\nᎤᏙᎯᏳᎯᏯ ᎢᎦᏪᏛ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ ᎠᏆᏚᎵᎭ ᏣᏍᏓᏱᏗᏍᏗᏱ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎤᏃᎯᏳᏅᎯ ᎤᎾᎦᏌᏯᏍᏙᏗᏱ ᏂᎪᎯᎸᏉ ᎣᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ. ᎯᎠ ᎾᏍᎩ ᎣᏏᏳ ᎠᎴ ᎬᏩᎾᎵᏍᏕᎸᏙᏗ ᏴᏫ.\nᎠᏇᏙᏅ ᎤᎵᏏᎩ ᏕᎦᎳᏅᏛ, ᏕᎦᏒᎭᏂᏙᎲ ᏓᏦᎭᏴ.\nᎤᏛᏅ.\nᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏍᎦᎢᎮᏍᏗ ᎠᏰᎸᎢ ᎠᏂᎯᎯ, ᎠᏎᏃ ᎠᏓᏅᏙ ᎬᏩᏂᎯᏍᏗ ᏂᎨᏒᎾ ᏥᎩ. ᎤᎬᏫᏳᏎᏍᏗᏍᎩᏂ ᎡᏥᏍᎦᎢᎮᏍᏗ ᎾᏍᎩ ᏗᎬᏩᎯᏍᏗ ᏥᎩᎠᏰᎸᎢ ᎠᎴ ᎠᏓᏅᏙ ᎢᏧᎳ ᏨᏍᎩᏃᎢ.\nᎿᏉᏃ ᎡᎶᏛ ᎤᏙᎴᎰᏒ ᎠᏂᎦᏔᎿᎢ ᎬᏩᎵᏓᏍᏔᏅᎢ, ᎤᏣᏔᏅᎯ ᎤᏔᎳᏬᏎᎢ, ᎠᎴ ᎤᏓᏅᏎ ᏫᏚᏂᎰᏁ ᏂᎦᏛ ᏗᏂᏲᎵ ᎦᏚᏱ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᏂᎬᎾᏛ ᎾᎿᏂ, ᏔᎵ ᎢᏳᎾᏕᏘᏴᏛ ᏩᏍᏘ, ᎾᎯᏳ ᏅᏓᏳᏓᎴᏅᏛ ᏥᏓᎵᏏᎾᎯᏍᏓᏁᎮ ᏥᏓᏛᏛᎮᎸᎥᏍᎨ ᎠᏂᎦᏔᎿᎢ.\nᎢᎦᏓᏅᏖᏗ ᎢᎦᏛᏁᏗ ᏓᎩᏏᎳᏛᎢ.\nᏲᎾ ᏃᎴ ᏂᎦᏓ ᎬᎩᏍᏆᏂᎪᏔᏅ ᏥᏧᏣ ᏥᎨᏒ, ᏭᏕᎵᎬ ᎠᏁᎬ.\nᎾᏍᎩᏍᎩᏂ, ᏗᏓᏁᎸ ᎢᏣ ᎱᏪᏅᏎᎢ, ᎤᏓᎵᎢ ᎤᏟᏃᎮᏔᏁᎢ.\nᏭᏚᎯᏅᏒ ᏧᏙᎨᏍᎩ, ᏧᎳᏏᏕᏅ ᏕᎦᏂᏱᏍᎬ ᏅᏯ ᎦᎳᎨᏴ ᎠᎼ ᎡᎳᏗ.\nᎠᎴ ᎤᏪᎷᏁ ᎯᎠ ᏄᏪᏎᎢ; ᎡᏙᏓ ᎡᏆᎭᎻ, ᏍᎩᏙᎵᎩ, ᎠᎴ ᎡᎯᏅᎵ ᎳᏏᎳ, ᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ ᎦᏰᏌᏛ ᎠᎼᎯ ᏩᎱᏓ, ᎠᎴ----ᏩᎩᏙᎣᎸᏍᏓᏏ ᏥᏃᎪᎢ; ᏥᎩᎵᏲᎦᏰᏃ ᎠᏂ ᎠᏓᏪᎵᎩᏍᎬᎢ.\nᎤᎵᏏᎬ ᎤᏅᏏᏴ ᎤᏴᏍᏗ ᏭᎷᏤ ᏭᏓᏓᎩᏅᏎ.\nᏂᏚᎩᏨᏂᏒ ᎢᏨᏰᎳᏗᏙᎲᎩ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏕᎦᏕᏲᎲᏍᎬᎩ, ᎠᎴ ᎥᏝ ᏱᏍᎩᏂᏴᎮᎢ; ᎤᏙᎯᏳᏗᏍᎩᏂᏃᏅ ᏂᎬᏅ ᎪᏪᎸᎢ.\nᏲᎾ ᎦᏳᎳ ᏂᏚᏭᎪᏔᏃ ᎤᏓᏂᏯᏍᏗ ᏚᏅᏓᏒ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎫᏩᏍᏕᏓᎵᏴᏍᏔᏁᏗ ᏱᎨᏎ, Ꮳ ᎠᏂᏩᏥᏂ ᎤᏂᏁᏨ ᎠᎴ ᏗᏤ ᏗᏥᎶᏍᏔᏅ ᎢᎬᎾᏕᏅ ᎠᎴ ᏗᏲᏍᏔᏅ ᏓᏍᏔᏅᎭᏅ.\nᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏣᏚᎵ ᎬᏯᏛᏁᏗᏱ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎥᎠᎩᎪᏩᏛᏗᏱ ᎠᏆᏚᎵᎭ.\nᎢᏳᏰᏃ, ᎠᏏ ᎡᏗᏍᎦᎩ ᏥᎨᏒᎩ ᎡᏙᎢᏍᏓᏁᎸᎯ ᏱᎩ ᎤᏁᎳᏅᎯ ᎬᏔᏅᎯ ᎤᏪᏥ ᎤᏲᎱᏒᎢ, ᎿᏉ ᎪᎯ ᎡᏙᎢᏍᏓᏁᎸᎯ ᏥᎩ, ᎤᏟᎯ ᎤᏙᎯᏳᎯᏯ ᎡᎩᏍᏕᎸᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎬᏃᏛ ᎨᏒ ᎢᏳᏍᏗ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏥᎪ ᏕᎨᎦᏨᏍᏗᏍᎬ ᎠᏂᎦᏔᎯ ᎠᎹᏟ ᎤᏅᏗᏱ ᏱᏂᏕᏨᏂᏏ ᎠᏏᏉ ᎤᏁᎳᏗᏙᎲ ᎤᏕᏒᏂᎸᎯ?\nᎠᏂᏐᎢ ᏓᏍᏕᎵᏍᎬᎩ, ᎤᏩᏒᏍᎩᏂ ᎥᏝ ᏴᎬᎵᏍᏕᎸ. ᎢᏳᏃ ᎤᎬᏫᏳᎯ ᎢᏏᎵ ᎤᎾᏤᎵ ᎨᏎᏍᏗ, ᎿᏉ ᏓᏓᎿᏩᏍᏛ ᎡᎠᏠᎠᎯ, ᎩᎳᏃ ᏓᏰᏙᎢᏳᏂ.\nᎯᎠ ᏄᏪᏒᎩ; ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᏉᎳ, ᏏᏌ ᎤᏪᎸ ᎢᎬᏱᏗᏢ ᎠᏎ ᏔᎴᏂ; ᎬᏂᏉᏃ ᎤᏁᎳᏅᎯ ᎦᏣᎧᏁᎸ ᏂᎦᏛ ᏥᏳᎯ ᏥᏣᏣᎠ.\nᎠᏥᎸ-ᎨᎳᏍᏗᏰᏃ ᎨᏒ ᎤᏓᏁᏟᏴᏛ ᎨᏒᎢ, ᎠᏎ ᎾᏍᏉ ᎦᏁᏟᏴᏛ ᏂᎦᎵᏍᏗᎭ ᏗᎧᎿᏩᏛᏍᏗ.\nᎨᏍᏗ ᏯᏆᏓᏚᎦ ᏁᎳᎩ ᎠᏇᎵᏍᏗ.\nᏄᏍᏛ ᎾᏍᎩ Ꮎ ᎦᏓᏉ ᎠᎪᏢᏔᏅᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᎾᏍᏗ ᎦᏓᏉ ᎨᎪᏢᏔᏅᎯ; ᎠᎴ ᏄᏍᏛ ᎾᏍᎩ Ꮎ ᎦᎸᎳᏗ ᎡᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᎾᏍᏗ ᎦᎸᎳᏗ ᎠᏁᎯ.\nᏗᏒᏆᎶᏍᏗ ᎪᏒᏔᏅ ᎠᏦᎭᏴ ᎤᎵᏏᎩ ᏃᎴ ᎡᎳᏗᎨᏍᏗ ᎠᏰᎵ, ᎤᎵᏏᎩ ᎤᏲᎢᏴ ᏩᏂᎦᏛ.\nᎠᏥᎶᏍᏗ ᎤᏢᏍᏔᏅ ᏥᏍᎪᎵ, ᎲᏲᎳᏛ ᎤᏛᏅ.\nᏥᏌᏃ ᎤᎿᎷᏒᎩ ᎣᏓᎸᎢ, ᎠᎴ ᎾᎿ ᎤᏪᏅᎩ, ᎠᎴ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏗᏙᎯ.\nᎠᎴ ᎤᎯᏰ ᎢᎦᏛ ᏧᎬᏩᎳᏅᎯ, ᎠᎴ ᎤᏓᎵᎢ ᎾᏍᏉ ᎠᎦᏔᎮᎢ; ᎤᏲᎴᏃ ᎢᎦᏛ, ᎠᎴ ᎨᏥᏅᏏᏛ ᏧᎾᎳᏏᏕᏄᎶᏗ ᎤᏁᎢ.\nᎠᏆᏟᏂᎬᏁᎸ ᎣᎯᏍᏙᏗ ᏗᏟᎯ ᎢᏯᏆᎵᏍᏙᏗ.\nᎾᏍᎩᏰᏃ ᎠᎨᏴ ᎠᏍᎦᏲᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏥᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏍᎦᏯ ᎠᎨᏴ ᎤᎾᏄᎪᏫᏒᎯ; ᎠᏎᏃ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎤᏁᎳᏅᎯ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ.\nᏕᏥᏯᏙᎯᎲ ᏄᎾᏛᏁᎸ ᏗᎾᏓᎯ.\nᎤᎵᏍᎩᏃᎳᏓ, ᎠᏛᎩᏍᎨ ᏗᎾᎢᏒ.\nᎯᎠ Ꭷ ᎨᎵ ᏅᏛᏍᎩᏪᏎᎵ, ᎦᏙᏃ ᎠᏏᏉ ᎡᏍᎦ ᎠᏰᎸᏍᎦ? ᎦᎪᏰᏃ ᏚᎦᏘᎴᏅ ᏄᏍᏛ ᎠᏓᏅᏖᏍᎬᎢ?\nᎤᎿᏛ ᏚᏂᏙᎬ ᏥᏍᏚ ᎠᎴ ᏌᎶᎵ ᏭᎷᏤ ᏙᏯ.\nᎣᎩᎾᏟᏃᎮᎸ ᏣᎵ, ᎾᎥᏂ ᎤᏬᏢ ᎠᏌᎻᏓ ᎤᏛᎦᏍᏛ, ᏯᏎᎦᎩ ᏱᎪᎵᎩ ᎧᏁᏨ ᎢᏳᏓᎵᎭ ᎡᎵᏍᎬ.\nᏂᎪᎯᎸᎾ ᏰᎵ ᎢᏯᏂ ᎤᎾᏓᏓᏍᎩᏎᎢ.\nᏚᏁᏤᎴᏃ ᎾᏍᎩ ᎩᎶ ᎤᏂᏃᏁᏗᏱ ᏂᎨᏒᎾ.\nᎠᎴ ᏔᎵᏁ ᎢᎦᏥᏲᎢᏳᏓᏁᎭ ᎾᏂᎥ ᎾᏍᎩ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ, ᎾᏍᎩ ᎠᎾᏚᏓᎸᎥᏍᎦ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎦᏪᏍᎬ ᎢᏳᎾᏛᏁᎰᎲᏍᏗᏱ.\nᎤᎬᏫᏳᎯ ᎠᎨᏴ ᏧᎦᎾᏮ ᏤᎮᎢ ᏙᏛᎾᎴᏂ ᎪᎯ ᏣᏁᎭ ᏗᎫᎪᏙᏗᏱ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏚᎪᏓᏁᏗᏱ ᏂᏙᏓᎬᏁᎵ; ᎾᏍᎩᏰᏃ ᏩᏍᏛ ᎢᏴᏛ ᎦᏙᎯ ᏧᏅᏎ ᎤᏛᎦᏂᎴ ᏐᎵᎹᏅ ᎠᎦᏔᎾᎥᎢ; ᎬᏂᏳᏉᏃ ᎠᏂ ᎡᏙᎭ ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᏍᎦᏉ ᏐᎵᎹᏅ.\nᏚᎴᏅᏃ ᎠᏓᏙᎵᏍᏗᏍᎬ ᎠᎴ ᏫᏙᎤᎷᏤᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᏚᏩᏛᎮ ᏓᏂᎵᎮ ᎤᏲ ᎤᏂᏰᎸᏒ ᎢᏳᏍᏗ.\n“ᎣᏍᏓᏗ ᎭᏓᏍᏕᎵᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎾᎯᏳᏰᏃ ᎠᏍᎦᏂ ᏗᏥᎾᏝᎢ ᏥᎨᏒᎩ, ᏚᏳᎪᏛ ᎨᏒ ᏂᏗᏥᎾᏝᎥᎾ ᎨᏒᎩ.\nᏎᏥ ᎤᎧᎭᏲᏛ, ᎠᎹ ᏃᎴ ᎩᎦᎨ ᏗᎧᏲᏗ ᏓᎩᏅᎵᏰᎥ ᏗᎫᏯᎬ ᏚᏂᏁᎦᎸ.\nᏦᎾᏰᏃ ᎤᏰᎸᏛ ᏥᏂᎨᎬᏁᎴ ᏂᏂᏫ ᎠᏁᎯ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏴᏫ ᎤᏪᏥ ᎤᏰᎸᏛ ᏅᏓᎨᎬᏁᎵ ᎪᎯ ᏣᏁᎭ.\nᎰᎻᏃ ᏧᏩᏒ ᏏᏆ, ᏍᎩᏴ ᏣᏂᎩᏍᎬ ᏓᏳᎴᏅᏓ ᎤᏚᏥ ᎡᎪ ᎾᎥᏂ ᎤᏪᏓᏍᏗ ᎮᎵᏍᎬ.\n“Ꮩ ᎤᏍᏗ, ᏙᏯ?” ᎤᏛᏁ ᏥᏍᏚ.\nᎢᏳᏰᏃ ᎧᏃᎮᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏂᎨᏒ ᎢᏳᏅᏁᎸᎯ ᎨᏒ ᎤᎵᏂᎩᏗᏳ ᏱᎩ, ᎠᎴ ᏄᏓᎴᏒ ᎠᏍᎦᏅᏨᎯ ᎨᏒ ᎠᎴ ᏄᏃᎯᏳᏒᎾ ᎨᏒ ᏚᏳᎪᏛ ᎨᏥᏍᏛᏗᏔᏅᎯ ᏱᎩ;\nᏆᎴᏗᏃ ᏚᎳᏫᏛ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎤᏂᏣᏘ ᎨᏒ ᏴᏫ,\nᏗᏂᏃᎨᏅ ᎭᏫᏂᏨ ᏃᎴ ᏩᏍᏗ ᎢᏳᏍᏗ ᎠᏂᏒᎨ ᎠᎾᏓᏍᏓᏩᏕᎩ.\nᎠᏫ, ᏲᎾ, ᎬᎾ, ᏯᎾᏌ ᏃᎴ ᎠᏫ ᎢᏳᏂᏍᏗ ᏭᏂᎶᏒ ᏭᏂᎶᏌ.\nᎤᏩᏌ ᎤᎦᏛ ᎢᎬᏓ ᎨᏎ ᎤᎫᎫ ᎤᎦᏛ ᏃᎴ ᎤᏍᎪᎸ, ᎾᏍᎩᏯ ᏅᏙ.\nᎠᏕᎸᏰᏃ ᏗᎨᏳᏗ ᎨᏒ ᎾᎿ ᏗᏓᎴᎲᏍᎦ ᏄᏓᎴᏒ ᎤᏲᎢ, ᎾᏍᎩ ᎩᎶ ᎤᏂᎬᎥᏍᎬᎢ ᎤᎾᏞᏒ ᎪᎯᏳᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏅᏒ ᏚᎾᏓᏘᏍᏔᏅ ᎤᏣᏘ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ.\nᎪᎱᏍᏗᎨ ᎢᏥᏂᎬᎦ? \nᎠᏆᎵᎩᏍᏗ ᎠᏆᏚᎸᎲ, ᏄᏍᏛ ᎠᎵᏍᏗ ᎧᏃᎮᏍᎬ ᏲᎾ.\nᎠᏛᎵᏍᎩ ᏄᏪᏒ ᏣᎵ ᎾᏍᎩᏯ ᎠᎦᏗᏛ F ᏥᏂᏕᎦᏪᏍᎪ ᎢᏳᏍᏗ.\n“Ꮀ,Ꮀ.\nᎢᏥᏲᎮᏍᏗᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎡᏣᏠᏯᏍᏓᏁᏗ ᎨᏎᏍᏗ.\nᏍᎩᏴ ᎤᏐᏅᎢ ᎠᏓᏪᎯ ᎪᏍᏓᏱ ᏗᎦᏘᏍᏙᏗ ᎦᏰᏍᏗ ᎩᎳᎯᏯ ᏧᏂᏲᏍᏓᏁᎢ, ᏗᏓᏅᏫᏍᎩ ᎠᏓᏪᎯ ᏣᏄᎳᏍᏓᏁ.\nᎾᏍᎩ ᎤᏓᏩᏗᏍᏙᏛᏉ ᎨᏒᎩ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᎤᎵᏱᎶᎯᏍᏗ ᎨᏒᎢ; ᎠᏓᏩᏗᏍᏙᏗᏍᎩᏍᎩᏂ ᎦᎶᏁᏛ ᎨᏒᎩ.\nᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᎤᏚᎢᏍᏛᎢ ᎦᎾᏄᎪᏫᏎᎸ ᎢᏏᎵ ᎤᏂᏍᏕᎵᏍᎩ, ᎾᏍᎩ ᏥᏌ;\nᏉᎳ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏛ ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎢ, ᎠᎴ ᏗᎹᏗ ᎢᎩᏅᏟ. ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎪᎵᏂᏗᏱ ᏥᏣᏓᏡᎬ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎪᎵᏂᏗᏱ ᏥᏣᏓᏡᎬ, ᎠᎴ ᏂᎦᏛ ᎢᏣᏓᏅᏘ ᏂᎬᎾᏛ ᎠᎦᏯ ᎢᏤᎲᎢ;\nᎩᎶᏃ ᎢᏳᏍᏗ ᎡᏂᎾᏯ ᏧᏙᎢᏛ, ᎤᏓᏅᏘ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏍᏓᏩᏕᎩ, ᏂᎦᏛ ᎠᏂᏧᏏ ᎾᎿ ᎠᏁᎯ ᎣᏍᏛ ᎬᏩᏃᎮᏍᎩ,\nᎩᏟ ᎠᏓᎯ ᏥᏂᎦᏪᏍᎪ ᏂᏓᏳᏪᏒ.\nᎠᏎᏃ, ᎨᏍᏗ ᏯᏆᏚᎵ ᏣᏓᏅᏖᏙᏗ - “ᏴᎭᎴᏐᏣᏰᏃ ᎯᎠᏉ ᏄᏍᏕᏍᏗ: ᏱᎨᎾ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ ᏰᎵ ᏂᎦᎵᏍᏔᏅ.\nᎩᎶᏃ ᏂᎯ ᎢᏣᏓᏡᎬ ᎯᎠ ᏱᏂᏑᏪᏎᎸ; ᏅᏩᏙᎯᏯᏛ ᏥᏤᎾ, ᎢᏥᎦᎾᏬᏒᎯ ᎠᎴ ᏗᏦᎸᏒᎯ ᎨᏎᏍᏗ; ᏂᏗᏥᏁᎲᎾᏃ ᎢᎨᏎᏍᏗ ᎠᏰᎸ ᎤᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ; ᎦᏙ ᎬᏙᏗ ᎾᏍᎩ?\n”ᏣᏄᏏ!” ᏭᏛᏁ.\nᎾᏍᎩᏃ ᏄᎾᏛᏁᎸ ᎤᏂᏣᏘ ᏚᏂᏂᏴᎮ ᎠᏣᏗ; ᎠᎴ ᎤᏂᎦᏯᎷᏗ ᏚᎾᎵᎦᎵᏎᎴᎢ\nᏫᏓᏆᎧᎾᏅᎩᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏃᏕᎾ ᎠᎩᎾ ᏌᏯᏂ ᎣᏓᎸ ᎦᏙᎬᎩ, ᎠᎴ ᎤᎾᎵᎪᏒᎩ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᏅᎩᎦᎵ ᎢᏯᎦᎵ ᎢᏯᏂᏛ, ᎾᏍᎩ ᎤᏙᏓ ᏚᏙᎥ ᏚᏃᏪᎸᎩ ᏗᏂᎬᏓᎨᏂ.\nᎠᏂᏧᏏᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏅᎦᏍᎪᎯ ᏑᏓᎵᎦᎵ ᏧᏕᏘᏴᏛ ᎤᏂᏱᎵᏙᎸᎯ ᎠᎾᏁᏍᎨᏍᎬ ᎯᎠ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ; ᏥᏌᏃ ᏂᎯ ᏦᎢᏉ ᎢᎦ ᏛᎯᏱᎵᏙᎵ ᏛᎭᏁᏍᎨᎰᏂ?\nᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎯᏲᎢᏳᎲᎦ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᏓᏰᏣᏍᏕᎸᎯᏃ, ᏂᎯ ᎠᎴ ᏕᏣᏓᏘᎾᎥᎢ.\nᎾᏍᎩ ᏗᏥᏲᎯᏍᏗᏱ ᎠᎵᏍᏓᏴᏗ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎵᏍᎪᎸᏓᏁᎸᎯ, ᎠᎴ ᎩᎬ, ᎠᎴ ᎪᎱᏍᏗ ᎬᏬᏍᏔᏅᎯ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ. ᎢᏳᏃ ᎾᏍᎩ ᏱᏗᏤᏯᏙᏤᎸ ᎣᏏᏳ ᏱᏂᏣᏛᎦ. ᏙᎯᏱ ᏂᏣᏛᎿᏕᎨᏍᏗ.\nᎪᏫ ᎦᎵᏦᏕ ᎤᏪᏘ ᎨᏎ, ᎾᏍᎩᏴ ᏥᏓᏂᏂᏏᏍᎨ ᏧᏂᎸᏉᏗ ᎡᏓᏍᏘ ᎭᏫᏂᏨ, ᎠᏎᏃ ᎨᏍᏗ ᏳᏩᏅᏖ ᏣᎵ ᎢᏳᏍᏗ ᏧᏤᎵ ᎨᏒ ᏧᎪᎳ ᏕᎦᏂᏌᎲ ᎤᏢᏗ ᎭᏫᏂᏣ.\nᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ ᎠᎾᏙᎴᎰᏍᎩᏱ; ᎬᏂᏳᏉ, ᏥᏅᎵ ᏥᏅᏏᏓᏍᏗ ᏣᎧᏛ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᏓᏣᏛᏅᎢᏍᏓᏁᎵ ᏣᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ.\nᎨᏍᏗ ᏫᏥ ᎢᎦ ᏱᏚᎵᎬᏩᏞ ᎠᏤ ᎦᏚᎲ.\nᎫᎫ ᎤᏛᎯᏍᏔᏅ, ᏏᏅᏓ ᎢᏳᏕᏘᏴᏓ ᏥᎨᏒ ᏥᏩᏒ.”\nᎯᎠᏃ ᏄᏪᏎ ᏚᏟᎶᏍᏔᏁᎴᎢ,\nᎪᎯᏍᎩᏂ ᎢᏨᏲᏪᎳᏏ ᎢᏧᎳᎭ ᎢᏤᏓᏍᏗᏱ ᏂᎨᏒᎾ, ᎢᏳᏃ ᎩᎶ ᎠᎾᎵᏅᏟ ᎠᎪᏎᎯ ᏱᎩ ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᏂᏏᎲᏍᎩ ᏱᎩ, ᎠᎴ ᎤᎬᎥᏍᎩ ᏱᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏟᎶᏍᏔᏅᎯ ᎠᏓᏙᎵᏍᏏᏁᎯ ᏱᎩ, ᎠᎴ ᎠᏓᏐᎮᎯ, ᎠᎴ ᎤᏴᏍᏕᏍᎩ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎠᏓᎩᎡᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝᏍᏗ ᎾᏍᏉ ᎢᏧᎳᎭ ᏱᏣᎵᏍᏓᏴᏁᏍᏗ.\nᏃᏗ ᎤᏬᏚᎯᎨᏍᏗ ᎤᎾᎥ ᎤᎿᏬ ᎤᎿᏬᎡ, ᎠᎧᏔᎮᎢ ᎠᏂᏧᏣ ᏧᎪᏩᏛᏗ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ.\nᎠᎧᏔᎮᎢ ᎨᏍᏗ ᎪᎯᏓ ᎤᏍᏖᎸᏗ ᏱᎨᏎᏍᏗ ᏫᎵᎻ.\nᎯᎠᏃ ᏅᎬᏩᏪᏎᎸᎩ; ᎤᏲᎢᏳ ᏂᏙᏓᎬᏁᎵ ᏙᏛᎵ ᎾᏍᎩ Ꮎ ᎤᏂᏲᎢ, ᎠᎴ ᏅᏩᎾᏓᎴ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏙᏛᏙᎳᏍᏔᏂ, ᎾᏍᎩ ᏰᎵ ᎬᏩᎾᎫᏴᏗ ᎾᏅᎾᏏᏒᎢ.\nᎦᎪᏰᏃ ᎿᏉ ᎤᎾᏛᎦᏅ, ᎤᏂᎿᎸᏍᏔᏁᎢ; ᏝᏍᎪ ᏂᎦᏛ ᎢᏥᏈᏱ ᏂᏙᏓᏳᏗᏅᏍᏔᏅᎯ ᏱᏏ, ᎾᏍᎩ ᏱᏄᎾᏛᏁᎴᎢ?\nᎣᏣᏛᎩᎭᏰᏃ ᎾᏍᎩ ᎩᎶ ᎨᏣᏓᏑᏴ ᎤᏣᏘᏂ ᎾᎾᏛᏁᎵᏙᎲᎢ, ᎪᎱᏍᏗ ᎾᎾᏛᏁᎲᎾ, ᎠᏎᏃ ᎠᎾᏛᏁᎵᏙᎯ ᎢᎩ.\nᏥᏌ ᎤᏁᏨᎩ; ᎾᏍᎩ ᎨᏎᏍᏗ ᎠᎬᏎᎸᏛ ᏥᏁᎸᎭ ᎾᏍᎩ ᎠᏊᏅᎯ ᎨᏎᏍᏗ. ᎤᏭᏅᏃ ᎠᎬᎭᎸᏛ ᎤᏁᎸᎩ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᏌᏩᏂ ᎤᏪᏥ.\nᎠᏥᎸᏍᎩ, ᎠᎨᏳᏣ ᎤᏍᏕᎸᎲ ᎠᏥᎾᏗᏅᏍᏗ ᏱᎨᏒᎾ, ᏍᏉ ᎠᏯᎡ ᎦᏘᏱ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᏳᏕᎶᎰᏌ ᏚᎷᏫᏍᏔᏁᎲ.\nᎯᎸᎢᏴ ᎦᏓ ᎨᏎᏍᏗ ᏧᎪᎳ ᏍᏉ.\nᎠᎴ ᎠᏴ ᏣᏂ ᎠᎩᎪᎲᎩ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ, ᎠᎴ ᎠᏆᏛᎦᏅᎩ. ᎠᏆᏛᎦᏅᏃ ᎠᎴ ᎠᎩᎪᎲ, ᎡᎳᏗ ᎠᏆᏓᏅᏅᎩ ᏓᎦᏓᏙᎵᏍᏔᏂᏒᎩ ᏚᎳᏍᎬ ᎾᏍᎩ ᎾᏗᎧᎿᏩᏗᏙᎯ ᎯᎠ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎠᎩᎾᏄᎪᏫᏎᎸᎯ.\n“ᎯᎠᎾ, “ᎤᏣᏓ ᎣᏍᏓ, ᎤᏣᏓ ᎣᏍᏓ, ᎤᏣᏓ ᎣᏍᏓ’?” ᎤᏛᏛᏁ ᏌᏌ.\nᏌᏩᏂᏃ ᎠᎴ ᎾᏍᎩ ᎠᏁᎯ, ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᏗᏤᏅᏒ ᏥᎮᎾ ᏥᏲᏎᎸ.\nᎩᎳᏉᏃ ᎢᏴᏛ ᎬᏩᎪᏩ-ᏛᏗ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᏍᏓᏩᏛᏎ ᎦᎸᏉᏗᏍᎨ ᎤᏁᎳᏅᎯ; ᏂᎦᏛᏃ ᏴᏫ ᎤᏂᎪᎲ ᎤᏂᎸᏉᏔᏁ ᎤᏁᎳᏅᎯ.\nᎾᏍᎩ Ꮎ ᎢᏦᎵᏍᏙᏗ ᎨᏒ ᏓᎧᏅᎢᎦ ᏤᏣᏗᏍᏓᏁᏗᏱ; ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏄᏍᏛ ᎤᏚᎩ ᎬᏗ ᎨᏒ, ᎾᏍᎩ ᎤᏓᏯᏅᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎾᏓᏅᏘ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒ ᎾᏍᎩ ᏧᏁᏗ ᏥᎩ,\nᏉᎳ ᎠᎴ ᏌᏱᎳ ᎠᎴ ᏗᎹᏗ ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᎢᏣᏓᏡᎬ ᏕᏏᎶᏂᎦ ᎾᏍᎩ ᎡᏦᎯᏳᎲᏍᎩ ᎤᏁᎳᏅᎯ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ; ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎨᏤᎳᏗᏙᎮᏍᏗ ᏅᏓᏳᎾᎵᏍᎪᎸᏔᏅᎯ ᎤᏁᎳᏅᎯ ᎢᎩᏙᏓ ᎠᎴ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ.\n“ᏃᎴ ᏤᏍᏗ ᏯᏎᎵᏙᎮᏍᏗ!”\nᎤᎾᏛᎦᏅᎩᏃ ᎠᏍᏓᏯ ᏗᎧᏁᎬ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎯᎠ ᏄᏂᏪᏎᎲᎢ, ᎡᏍᏓᎩᎳᏩ ᎠᏂ ᎢᏍᏗᎷᎩ. ᎦᎸᎳᏗᏃ ᏭᏂᎶᏒᎩ ᎤᎶᎩᎸ ᎤᎾᎵᏌᎳᏓᏅᎩ. ᎠᎴ ᎬᏩᏂᏍᎦᎩ ᎬᏩᏂᎪᎲᎩ.\nᎠᎴ ᎾᏍᏉ ᎢᏨᏒ ᎢᏣᏓᏡᎬ ᏛᏂᎾᏄᎪᏥ ᎠᏂᏍᎦᏯ ᎤᏣᏘᏂ ᎾᏂᏪᏍᎨᏍᏗ ᎠᏂᏬᏂᏍᎨᏍᏗ, ᎠᏃᎯᏳᎲᏍᎩ ᏧᎾᏘᎿᏫᏛᏗᏱ ᎤᏂᏰᎸᏎᏍᏗ.\nᎤᎬᏫᏳᎯ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᏕᏦᎯᏳᏎᏍᏗ ᎾᏂᎥ ᏴᏫ ᏗᎨᎦᏁᎶᏗ ᎨᏒᎢ--ᎾᏍᏉ ᎤᎬᏫᏳᎯ ᏄᎬᏫᏳᏒ ᎨᏎᏍᏗ,\nᎠᎴ ᎾᏍᎩ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯᏉ ᏧᎬᏩᎶᏗ ᎤᏕᎵᏛ ᏠᎨᏏ ᏣᎰᎢ, ᎾᏍᎩ ᎢᏳ ᎠᏍᎦᏯ ᎠᏩᏛ, ᏣᏕᎸᏍᎪᎢ, ᎠᎵᎮᎵᎬᏃ ᎢᏳᏍᏘ ᏤᎪᎢ ᏥᏫᎦᎾᏕᎪᏂᎦᏛ ᎤᏍᏆᏂᎪᏛᎢ, ᎠᎴ ᏥᏭᏩᏍᎪ ᎾᏍᎩ ᏠᎨᏏ.\nᎿᏉᏃ ᏂᎦᏛ ᎤᏂᏣᏘ ᎨᏒ ᎡᎳᏪ ᎤᏅᏁᎢ, ᎠᎴ ᏚᎾᏛᏓᏍᏓᏁᎴ ᏆᏂᏆ ᎠᎴ ᏉᎳ ᎠᏂᏃᎮᏍᎬ ᏂᎦᎥ ᎤᏰᎸᏛ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎤᏅᏗᏍᎬ ᏚᎸᏫᏍᏓᏁᎸ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏓᏁᏩᏗᏒᎢ.\nᎿᏉᏃ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏳᏃ ᎠᏍᎦᎾ ᏱᎩ ᎥᏝ ᏱᏥᎦᏔᎭ; ᏑᏓᎴᎩ ᏥᎦᏔᎭ; ᏗᏥᎨᏫ ᏥᎨᏒᎩ ᎿᏉ ᎢᏥᎪᏩᏘᎭ.\nᎦᎶᎯᏍᏗ ᏭᎷᏨ ᎨᎵ, ᎠᏲᏓᏌᎲ ᏭᎶᏒ, ᎣᏂ ᏭᎶᏒ ᎠᎹᏳᎸᏓ ᏭᎷᏨ.\n”ᎦᏙᏃ ᎣᏍᏓ ᏱᏣᏓᏅᏛᎾ ᏥᎩ? \nᎩᎶᏃ ᎢᏳᏍᏗ ᏧᏁᎶᏗ ᎡᎮ ᏕᎹᏍᎦ, ᎡᏂᎾᏯ ᏧᏙᎢᏛ; ᎾᏍᎩᏃ ᎤᏁᎳᏫᏎᎲ ᎤᎬᏫᏳᎯ ᎯᎠ ᏄᏪᎡᎴᎢ; ᎡᏂᎾᏯ. ᎯᎠᏃ ᏄᏪᏎᎢ; ᎠᏂ, ᏣᎬᏫᏳᎯ.\nᏩᏍᏛᎢ ᏙᏱ ᎤᏪᏓᏍᏗ ᏭᏓᏐᎴᎢ ᏫᎵᎻ.\nᏤᎦᏈᏃ ᏦᏩ ᎤᏕᏁᎴᎢ, ᎾᏍᎩ ᎺᎵ ᎤᏰᎯ ᎾᏍᎩ ᏧᎾᏄᎪᏫᏎ ᏥᏌ ᎦᎶᏁᏛ ᏣᏃᎭᎰᎢ.\nᎠᏎ ᎢᏳᏍᏗᏉ ᏗᎦᎷᏫᏍᏔᏅᏗ ᏩᎫᎩᏐᏗ.\nᏂᎪᎯᎸᎾ ᎦᎾ ᎦᏌᏆᎸ ᎢᏨᎾᏓ ᎨᏎᎢ.\nᎦᏙᏃ ᎯᎠ ᎠᏠᏁᏗ ᎥᏝ ᏳᏂᎾᏗᏅᏎ ᎠᎴ ᏦᎢᏧᏈ ᎠᎩᏏ ᏧᎾᏩᎶᏗ ᏱᏚᏂᏩᏛᎮᎢ, ᎠᎴ ᎥᏝ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎾᏍᎩ ᏱᏚᏂᏁᎴᎢ?\nᎤᏂᏂᏴᎮᏃ, ᎠᎴ ᎤᏂᏄᎪᏫᏎ ᏖᎸᎳᏗ ᏓᏫᏒᎢ, ᎠᎴ ᎤᏂᎴᎢ.\nᎿᏉᏃ ᎤᏲᎯᏍᏔᏅ ᎦᏬᏂᏍᎬ ᎯᎠ ᏄᏪᏎᎴ ᏌᏩᏂ, ᏗᏍᏛᎬ ᏫᏅᏍᏛ ᎠᎴ ᎡᎳᏗ ᏂᏗᏨᎦ ᏗᏥᎦᏯᎷᏗ ᏗᏥᏂᏴᏗᏱ.\nᎠᏕᎸ ᏗᏂᏍᏆᏂᎪᏗᏍᎩᏱ ᏱᏫᏙᏣᏁ ᎠᏕᎸ ᏗᏆᏤᎵᎦ, ᎾᏍᎩᏃ ᎪᎯ ᏥᏥᎷᎩ ᏱᏓᎩᎪᎮ ᏗᏆᏤᎵ ᎠᎴ ᎤᏂᏁᏉᏨᎯ.\nᏝᏍᎪ ᏱᏣᏅᏔ, ᎾᏍᎩ ᎠᏏ ᏥᏨᏰᎳᏗᏙᎲᎩ ᎾᏍᎩ ᎯᎠ ᎢᏨᏃᎮᎮᎸᎢ?\nᏃᏗ ᎤᏍᏚᎩᏎ ᎧᏁᏌᎢ.\nᎤᎷᏤᏃ ᎦᏁᎸ ᏄᎬᏫᏳᏌᏕᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏚᎦᎮ ᎤᎾᏓᏑᏰᏛ ᏴᏫ, ᎠᎴ ᎤᏣᏘ ᏓᎾᏠᏱᎲ ᎠᎴ ᏓᏂᏴᎬᎢ.\nᏅᎩᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏤᎷᎯᏒᎩ, ᏅᏙᏃ ᎢᎦ ᎡᎯ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎤᏩᏂᎸᎩ, ᎠᎴ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎤᏩᏂᎸᎩ, ᎠᎴ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏃᏈᏏ ᎠᏂᎧᎸ ᏚᏩᏂᎸᎩ; ᎾᏍᎩᏃ ᏦᎢ ᎢᏗᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᏚᎵᏏᎲᏒᎩ, ᎠᎴ ᎢᎦ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎥᏝ ᏯᎦᎵᏍᎨᎢ, ᎠᎴ ᏒᏃᏱ ᏦᎢ ᎢᎦᏛᎯ ᎨᏒ ᎾᏍᎩ ᏌᏉ ᎢᏳᏪᏨᎯ ᎾᏍᏉ ᎥᏝ ᏯᎦᎵᏍᎨᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᏧᏩᎫᏔᏅᏒ ᏂᏗᎥ ᎨᏓᎵᎪᏁᎲᎩ ᎾᎿ ᎢᎩᏇᏓᎸ ᎤᎬᎥᏍᎬᎢ, ᎠᎴ ᎤᏇᏓᎸ ᎠᎴ ᎠᏓᏅᏖᏗ ᎨᏒ ᎤᎾᏚᎵᏍᎬ ᏂᏓᏛᏁᎲᎩ; ᎠᎴ ᏗᎦᏕᏅ ᏂᎦᏍᏛ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏧᏪᏥ ᎨᏒᎩ, ᎾᏍᎩᏯᏉ ᎠᏂᏐᎢ ᏄᎾᏍᏛᎢ.\nᏰᎵ ᎦᏲᏟ ᎤᏲᏍᏔᏁᎢ ᏚᏏᎳᏛ ᏌᎳᏓ, ᎠᏰᎵ ᎤᏣᏅᏕᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳ ᎠᏉᎳ ᎪᎵᏂᏗᏱ ᎡᏙᎲᎩ, ᏉᎳ ᎠᏰᎵ ᎨᏒ ᎤᎶᏒ, ᎡᏈᏌ ᏭᎷᏨᎩ. ᏚᏩᏛᎲᏃ ᎩᎶᎢᏳᎾᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ,\nᎯᎦᏔᎭᏰᏃ.\nᏙᎢᏳᏍᏗ ᎤᏧᏗᎭ ᏣᏤᎵ ᏏᏆ?” \nᏥᎪ ᏂᎯ ᎢᏤᎲ ᏧᏓᎴᏁ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ? ᏥᎪᎨ ᏂᎯᏉ ᎢᏨᏒ ᎢᏥᎷᏤᎴᎢ?\nᎠᏆᏓᏅᏙᎩ ᎠᎩᏍᏆᏂᎪᏙ ᎨᎸ ᎠᏂᏴᏫ.\nᎾᏍᎩ ᏧᏂᏙᏓ ᏥᎩ ᎠᏂᎦᏴᎵᎨᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏁᎲᎢ, Ꭰ ᎠᏇᏓᎵ ᎨᏒ ᏧᎷᏤ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏥᎩ, ᏄᏓᎴᏒ ᎤᎬᏫᏳᏌᏕᎩ, ᏫᎾᏍᏛᎾ ᎦᎸᏉᏙᏗ. ᎡᎹᏅ.\nᎠᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᎤᏁᎳᏅᎯ ᏧᏑᏰᏛ ᎨᏒᎢ, ᎤᎾᏓᏅᏘ ᎠᎴ ᎨᏥᎨᏳᎢ, ᎢᏣᏄᏬᏍᏓ ᎤᏬᏙᎵᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎤᏓᏅᏘ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎤᏓᏅᏘ ᎨᏒᎢ, ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᏗᏓᏕᎵᏎᏗ ᎨᏒᎢ;\nᎤᏙᎯᏳᎯᏯ ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᏉᎯᏳᎲᏍᎩ, ᎠᏴ ᏥᏓᎩᎸᏫᏍᏓᏁᎭ ᎾᏍᏉᎾᏍᎩ ᏙᏓᏳᎸᏫᏍᏓᏁᎵ, ᎠᎴ ᎤᏟ ᎤᏍᏆᏂᎪᏗᏳ ᏙᏓᏳᎸᏫᏍᏓᏁᎵ ᎡᏍᎦᏉ ᎯᎠ; ᎡᏙᏙᏱᏰᏃ ᎦᎢ,\nᏖᎾᏍᎩᏍᏆ ᏂᎦᏚ ᎢᏯᏂᎢ,” ᎤᏛᏁ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎠᏴ ᎾᏍᎩ ᏅᏃᎯ, ᎠᎴ ᏚᏳᎪᏛᎢ, ᎠᎴ ᎬᏂᏛ. ᎥᏝ ᎩᎶ ᎠᎦᏴᎵᎨᎢ ᏱᎦᎷᏤᎰᎢ, ᎬᏂ ᎠᏴ ᎠᎩᎶᎯᏎᎸᎯ ᏥᎨᏐᎢ.\nᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎾᏛᎩᏍᎩ ᎾᏂᏍᎦᏅᎾ ᏱᎩ ᎤᏁᎳᎨᎯ ᏓᎧᏅᎢ, ᏗᎧᎿᏩᏛᏍᏗᏍᎩᏂ ᏂᎦᏪᏍᎬ ᎢᏯᎾᏛᏁᎯ ᎾᏍᎩ ᎤᎾᏚᏓᎴᏍᏗ ᎨᏎᏍᏗ.\nᎤᏍᏆᏂᎪᏎᏰᏃ ᎠᎴ ᏂᎦᏛ ᎠᏁᎯ ᎤᏂᏍᏆᏂᎪᏎ ᏅᏗᎦᎴᏍᏙᏗᏍᎨ ᎾᏂᎥ ᎠᏣᏗ ᏚᏂᏂᏴᎲᎢ;\nᎯᎠᏰᏃ ᎾᏍᎩ ᏄᏍᏗ ᎧᏃᎮᏛ ᏕᎦᏥᏯᏠᎢᏍᏓᏁᎸᎢ, ᎾᎯᏳ ᎦᏥᎥᎡᏗ ᏂᎦᎵᏍᏔᏅᎭ ᎤᏂᏍᎦᏅᏨᎢ.\nᎭᎾ ᎦᏓᏁ ᏃᎴ ᎤᎵᏏᎩ ᎨᏐᎢ.\nᎤᏙᎯᏳᎯᏰᏃ ᎤᏢᎬᎩ ᎠᎴ ᎠᎴᏉ ᏄᏲᎱᏒᎩ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᏪᏙᎵᏨᎩ; ᎥᏝ ᎠᎴ ᎾᏍᎩᏉ ᎤᏩᏒ, ᎠᏴᏍᎩᏂ ᎾᏍᏉ, ᎾᏍᎩ ᎤᎶᏏᎶᏛ ᎤᏲ ᎠᏆᏓᏅᏓᏗᏍᏗᏱ ᏂᎨᏒᎾ.\nᎠᎴ ᎬᏂᏳᏉ ᎠᏏᏴᏫ ᏥᏌ ᎠᏁᎯ ᎤᏌᎳᏓᏅᎩ ᎧᏃᎨᏂ ᎤᎸᎲᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ, ᎠᎴ ᎤᎷᏴ ᎤᎬᏫᏳᎯ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎤᎵᏍᏕᏍᏔᏅᎩ.\nᏣᎬᏫᏳᎯ ᎨᏒ ᏫᎦᎾᏄᎪᎢ. ᎠᏂ ᎡᎶᎯ ᏫᏂᎦᎵᏍᏓ ᎭᏓᏅᏖᏍᎬᎢ, ᎾᏍᎩᏯ ᎦᎸᎳᏗ ᏥᏂᎦᎵᏍᏗᎭ.\nᎠᎴ ᎬᏂᏳᏉ ᎤᏣᏘ ᎦᏙᎯ ᎤᎵᏖᎸᏁᎢ, ᏱᎰᏩᏰᏃ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎦᎸᎳᏗ ᏧᏠᎠᏎᎢ, ᎤᎷᏨᏃ ᏅᏯ ᎤᏪᏌᏆᎴᎴ ᎤᎲᏎ ᎦᎶᎯᏍᏗᏱ ᎠᎲᎢ; ᎠᎴ ᎤᏍᎩᎳᏁᎢ.\nᎠᏎ ᏧᏬᏚᏨ ᎢᎦ ᎤᏕᏘᏴᏌᏗᏒ - “ᎪᎩ ᏣᏓᏍᏕᏓᎵᏴᏍᎪ ᎤᎵᎪᎲᏍᏗ ᏥᏂᎦᎵᏍᏗᏍᎪ - “ᏔᎳᏚ ᏓᏃᏣᏝᏍᎪ ᎤᎯᏐᏗ ᏃᎴ ᎠᏓᏍᏕᏓᎵᏴᏍᎬ.\nᎨᏍᏗ ᏳᎯᏐᏓᏁᎮ ᏌᎳᏓ ᎾᎥᏂ ᏰᏙᎭ.\nᏏ ᎤᏬᏘᏎᎢ ᎤᏍᏉᏟᎢ ᎤᏒᎯ ᎤᎦᏌᎴᏍᏔᏅᎢ.\nᎩᎶᏍᎩᏂ ᏯᏙᎴᎰᏍᎦ ᏴᏫ ᏕᎦᏬᏁᏗᏍᎪ ᏓᎵᏂᎪᎯᏍᏗᏍᎪᎢ, ᎠᎴ ᏕᎦᏂᎳᏕᎰᎢ, ᎠᎴ ᏓᎦᎵᏍᏓᏗᏍᎪᎢ.\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᎳᏯ ᎤᏙᎯᏳᎯ ᎢᎬᏴ ᎤᎷᎯᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎤᏬᏢᎯᏐᏗ; ᎠᎴ ᎾᏍᏉ ᎯᎠ ᏂᎬᏅᎪᏪᎳ ᏴᏫ ᎤᏪᏥ ᎠᏥᏃᎮᏍᎬᎢ, ᎾᏍᎩ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎤᎩᎵᏲᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏎᏉ ᏓᏰᏥᏰᎸᏂ.\nᎢᏏᎵᏍᎩᏂ ᎯᎠ ᏂᏕᎦᏪᏎᎭ, ᎤᏙᏓᏇᏛ ᏓᏆᏎᎵᏛᎩ ᎦᏥᏯᏂᏍᎬ ᏄᏃᎯᏳᏒᎾ ᎠᎴ ᎤᏂᎪᏁᎶᎯᏌᏘ ᏴᏫ.\nᎤᎦᏃᏩ ᏱᎩ ᎢᎦ ᏒᎮᏱᏣ, ᎧᏁᏍᎦ ᏫᏥᏌᎲᏍᎪ ᎦᏚᎢ ᏧᏪᏥ, ᏙᏱ ᏫᎨᏙᎰ.\nᎠᏯ, ᏓᏊᎪᏔᏅ ᏗᎦᎸᎳᏗ ᎦᏗᎨᏂ ᎠᏍᎦᏯ ᏧᎳᏑᎶ. ᎠᏋᏌ ᏍᎩᏄᏍᏛ ᎦᏓᏅᏖᏍᎬ, ᏤᎩᏏᏂ ᏧᎵ ᏓᏂᎸᏆᏍᎬ ᏗᎳᏑᎶ, ᏤᎩᏏᏂ ᎠᏍᎪᎵ ᏥᎪᎵᏰᏍᎬ ᎦᏓᏅᏖᏍᎬ ᏤᎩᏏᏂ ᏃᎴ ᎦᎳᎱᏂ ᎤᏍᎦᏎᏗ ᎤᏂᏍᏘᏰᎬ ᎾᏍᎩ ᎠᏂᏳᏩᏁᎦ.\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎼᏏ ᎬᏂᎨᏒ ᎢᏳᏩᏁᎸᎯ ᎨᏒᎩ, ᎤᏓᏙᎵᏣᏛᏍᎩᏂ ᎠᎴ ᏚᏳᎪᏛᎢ ᏥᏌ ᎦᎶᏁᏛ ᏂᏙᏓᏳᎵᏍᎦᎸᏔᏅᎯ.\nᎠᎴ ᏂᎯ, ᎪᏙᏃ ᏙᎯᏳᎪᏓᏁᎭ ᎢᏍᏓᎵᏅᏟ? ᎠᎴ ᏂᎯ ᎾᏍᏉ, ᎦᏙᏃ ᏅᎵᏌᎵᏉ ᎢᎯᏰᎸᏍᎦ ᎢᏍᏓᎵᏅᏟ? ᏂᎦᏗᏳᏰᏃ ᎢᎬᏱᏗᏢ ᏫᎦᎴᏗ ᎨᏎᏍᏗ ᎦᎶᏁᏛ ᏧᏭᎪᏗᏱ ᎤᏪᏍᎩᎸᎢ.\nᎠᏎᏃ ᎠᏍᎩᏗᏍᎨᎢᏉ.\nᎾᏍᎩᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯ, ᏣᎬᏫᏳᎯ; ᎠᏎᏃ ᎩᎵ ᎦᏍᎩᎸ ᎭᏫᏂᏗᏢ ᏗᏂᏲᎵ ᎤᏂᏅᎪᎠᎯᏎᎸᎯ ᎦᏚ ᎠᎾᎵᏍᏓᏴᏗᏍᎪᎢ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎭ ᎤᏃᎯᏳᎯᏍᏛ ᏂᎨᏒᎾ ᏴᏫ.\nᎩᎶ ᏄᎸᏉᏙ ᎪᎱᏍᏗ ᎤᏍᏗ ᎢᎦ ᎡᏍᎦᏉ ᏅᏩᏓᎴ ᎢᎦ; ᎩᎶᏃ ᏂᎦᎥᏉ ᎢᎦ ᏚᎸᏉᏙᎢ. ᎾᏂᎥ ᎩᎶ ᎠᎧᎵᎢ ᎤᏃᎯᏳᏎᏍᏗ ᎤᏅᏒ ᏙᏧᎾᏓᏅᏛᎢ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏥᏆᎵᏏ! ᏕᏥᎸᏉᏙᏰᏃ ᏄᎬᏫᏳᏒ ᏕᎦᏍᎩᎸ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎡᏥᏲᎵᏍᏗᏱ ᏗᎦᏃᏙᏗᏱ.\nᏂᎦᎥ ᎪᏪᎵ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏖᎸᎯ ᏗᎪᏪᎳᏅᎯ, ᎠᎴ ᎣᏏᏳ ᎤᏓᏕᏲᏗᏱ, ᎤᏓᎬᏍᎪᎸᏗᏱ, ᎤᏓᎪᏗᏱ ᏚᏳᎪᏛᎢ, ᎤᏓᏕᏲᏗᏱ ᎣᏍᏛ ᎨᏒᎢ,\nᎤᏩᏌ ᏧᏓᏅᏖᏙᏗ ᏚᎮᎢ ᏌᎳᏓ ᎠᏎᏃ ᎡᏝᏪᎯ ᎨᏎᎢ.\nᏰᎵ ᎢᏗᏎᎸ ᎤᎾᎵᏗᎩᏛ, ᏦᎢ ᎤᎾᏁᎶᏔᏅ.\n”ᏚᏙᎥ ᎦᏯᎸ ᎤᏪᏘ ᎠᎿᏬ.”\nᎢᏗᎦᏔᎭ ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᏕᏔᏅᎯ ᏥᎨᏐᎢ ᎥᏝ ᏯᏍᎦᏅᎪᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎤᏕᏔᏅᎯ ᎤᎵᏍᏆᏂᎪᏙᎢ, ᎾᏍᎩᏃ Ꮎ ᎤᏁᎫᏥᏛ ᎥᏝ ᏳᏒᏂᎰᎢ.\nᏧᏒᎯᏓ ᏐᏈᎵ ᎦᏐᎯ ᎠᏆᎩᎸ ᎧᎸᎬ ᎢᏣ ᎾᎥᏂᎨ ᏗᎦᏚᎲ, ᏴᏫ ᏗᏘᏂᏙᎯ ᎠᏩᏛᏗ.\nᎨᏍᏗ ᎩᎶ ᏳᎾᎵᎪᎮᎢ ᎤᎵᏬᏣ.\nᎠᎹ ᏅᏬᏘ .\nᎯᎠ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏙᎯ ᏂᎬᏁᎲᎩ ᎡᎶᎯ ᎬᏩᏍᎦᎩ ᎨᏒ ᎦᎶᏁᏛ ᎬᏗᏍᎬᎩ, ᎤᏂᏍᎦᏅᏨ ᎤᏂᏍᎦᏅᏨᎯ ᏂᏓᏰᎸᎾᏁᎲᎾ; ᎠᎴ ᎠᏴ ᎣᎦᏒᎶᏔᏅ ᎧᏃᎮᏛ ᏙᎯ ᎢᎬᏁᎯ.\nᏓᏓᏏᏃ ᎨᏒᎢ, ᎣᎩᎾᎵᎪᎯ ᎾᏍᎩ, ᎠᎴ ᎢᏧᎳᎭ ᏦᎩᏂᎸᏫᏍᏓᏁᎯ ᏂᎯ ᎪᎱᏍᏗ ᎢᏨᏯᏛᏁᎲᎢ; ᎣᏣᎵᏅᏟᏃ ᎨᏒ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒ ᎬᏩᏂᏅᏏᏛ ᎾᏍᎩ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏯᏅᏁᎯ ᎦᎶᏁᏛ..\n”ᏙᏱ ᏫᎦᎲᎦ ᏩᎶᏏ!” ᎤᏅᏫᏍᏔᏁᎢ ᏲᎾ ᎤᏤᏍᏙ.\n”ᎯᎠᎾ ᎣᏏᏉᏍᎪ?” ᎤᏛᏛᏁ, ᏌᎳᏓ ᎬᏂᎨᏒ ᏄᏩᏁᎴ.\nᏗᎧᎸᎬᎢ, ᏭᏕᎵᎬ, ᏧᏴᏨ, ᏧᎦᏃᏮ.\nᎠᎦᏰᏃᎮᏰᏃ ᎦᏚᎲᎢ ᏗᎦᎫᏍᏓᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᏍᎨᎲᎢ ᎠᎴ ᎤᏬᏢᏅᎯ ᏥᎩ.\nᎠᎵᎮᎵᎨ ᏫᎵᎻ ᎠᎧᏔᎲᎢ ᎾᎥᏂ ᎤᏬᏢ ᏙᏰ ᎠᏥᏍᏚᎲ.\nᎤᏚᎩ ᎢᏨᏒ ᎢᏣᎵᎮᎵᎨᏍᏗ; ᏗᏨᏂᏗᏳ ᎨᏎᏍᏗ ᎢᏥᎩᎵᏲᎬᎢ; ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᏂᎪᎯᎸᎢ;\nᎿᏉ ᎥᏝ ᎠᎪᏄ ᏧᏂᏲᏏᏐᏗ ᏱᎨᏎᏍᏗ. ᎥᏝ ᎠᎴ ᎿᏉ ᏧᏂᏔᏕᎪᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᏅᏙ ᎢᎦ ᎡᎯ ᎤᏗᎴᎩ ᏳᏂᎦᎵᏍᎨᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎤᏗᎴᎩ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᎯᎠ ᎤᎾᏛᎦᏅ ᎤᏁᏉᎡᏚᏟᎶᏍᏓᏁᎴᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏥᎷᏏᎵᎻ ᎾᎥ ᎤᎷᏥᏗᏒᎢ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎢᎬᏪᏅᏛ ᏓᎦᎾᏄᎪᏥ ᎠᏁᎵᏍᎬᎢ.\nᎤᏂᏦᎴ ᎠᎹ ᏣᏄᏏ, ᏭᏍᏚᏤᎢ ᏫᎵᎻ.\nᎪᏍᏓᏱ ᎠᏂᎴᎩ ᏓᏫᏒ ᎤᏔᎷᎩᏍᎩ ᎢᎾᎨᎢ ᎢᏳᏍᏗ ᏄᏍᏕᎢ.\nᎠᎴ ᏂᎪᎯᎸ, ᏒᏃᏱ ᎠᎴ ᎢᎦ, ᎦᏚᏏ ᎠᎴ ᏓᏓᏂᏌᎲᎢ, ᎤᏪᎷᎨᎢ, ᎠᎴ ᏅᏯ ᎬᏗ ᎠᏓᏰᎶᎮᎢ.\nᏈᏓᏃ ᎡᎳᏗᏢ ᎾᎿ ᎠᏓᏁᎸ ᎡᏙᎮᎢ, ᎤᎷᏤ ᎠᏏᏴᏫ ᎠᎨᏴ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᏅᏏᏓᏍᏗ.\nᏚᎧᎿᏅᏃ ᏥᏌ ᎠᎢᏒᎢ ᎯᎠ ᏄᏪᏒᎩ; ᏤᏣᎦᏅᎦ ᎠᏫ-ᎠᎩᎾ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ;\nᎠᏂᏲᏍᎩ ᏐᏈᎵ ᏧᎾᎩᎸᏗ, ᏓᏆᎴᎳ ᏓᏐᏗᏓᏅ ᎤᏅᏔᏂᏓᏍᏗ ᎠᎭᏃᏬ ᎬᏘ ᏚᎫᏒᏅ, ᎠᏂᏴᏫᏯ ᏃᎴ ᏚᏂᎾᏌᎥ ᎠᏂᎱᏥ ᎣᎭᏂ ᎠᏂᏍᏔᏩᏗᏒ, ᏗᏂᏲᏟ ᎠᏁᎬ, ᏧᏂᏍᏗ ᏓᏂᎭᏂᏒ.\nᎡᎳᏗ ᏭᏄᏛᏁᎴᎢ ᏃᎴ ᎩᎳᏈᏴ ᏗᏏᎳᏛᏙᏗ ᎤᏩᏇᏅᏔᏁᎢ ᎠᏣᏗ ᏃᎴ ᏰᎵ ᎤᏟᏂᎬᏁᎸ ᎤᏂᏴᎮᎢ.”\nᎣᏍᏓ ᎠᏒᎨ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏃᎴ ᏄᏓᎴᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏚᏳᎪᏛᎩ ᏂᎦᎥ ᏄᏛᏅᏅ ᎠᎾᎵᏅᏟ ᎾᏍᎩᏯ ᏄᎾᏍᏛ ᎢᏳᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎤᏓᏙᎵᏍᏗ ᎠᎴ ᏄᏓᎵᏍᏛᎾ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᎫᏴᏙᏗ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏂᏍᎦᏅᏨ ᏴᏫ;\nᎿᏆᎴ ᎠᏍᎩᎾ ᎤᏣᏘ ᎢᏅ-ᎢᎦᏘ ᎣᏓᎸ ᏫᎤᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᏚᏎᎮᎴ ᏂᎦᎥ ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎡᎳᏂᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏂᏚᏬᏚᏒᎢ;\nᎾᎿ ᏓᏂᏴᎨᏍᏗ ᎠᎴ ᏓᏂᎸᏓᎩᏍᎨᏍᏗ ᏓᏂᏄᏙᎬᎢ, ᎾᎯᏳ ᏕᏥᎪᎲᎭ ᎡᏆᎭᎻ ᎠᎴ ᎡᏏᎩ ᎠᎴ ᏤᎦᏈ ᎠᎴ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏍᎩ, ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᎿ ᎠᏂᏯᎡᏍᏗ, ᎢᏨᏒᏃ ᎡᏥᏄᎪᏫᏒᎯ ᎨᏎᏍᏗ.\nᎠᏓᏍᏓᏴᏗ ᎢᏣ ᏭᎾᏓᏒᏍᏔᏁᎢ.\nᎾᏍᎩᏃ ᏂᎦᏛ ᏄᎾᏓᏁᏟᏴᏒ ᎡᏆᎭᎻ ᏤᎮ ᎾᎯᏳ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏕᏫᏃ ᏤᎮ ᏅᏛᏍᏘ ᏂᎦᏚ ᏄᎾᏓᏁᏟᏴᏎᎢ; ᏕᏫᏃ ᏤᎮ ᎾᎯᏳ ᏅᎵᎬᏩᏓᎴᏅᏛ ᏓᏗᎶᏂᏃ ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁ ᎾᎯᏳ ᏅᏛᏍᏘ ᏂᎦᏚ ᏄᎾᏓᏁᏟᏴᏎᎢ; ᏓᏗᎶᏂᏃ ᎾᎯᏳ ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁ ᎤᏓᏳᏓᎴᏅᏛ ᏥᏌᏃ ᏧᏕᏁ ᎾᎯᏳ ᏅᏛᏍᏘ ᏂᎦᏚ ᏄᎾᏓᏁᏟᏴᏎᎢ.\nᎤᏙᎯᏳ ᏥᏁᎵᏍᎪ ᏥᏍᏕᏥ!”\nᎠᏎᏃ ᎣᎦᏚᎵᎭ ᎢᏨᏯᏛᎦᏁᏗᏱ ᏄᏍᏛ ᎭᏓᏅᏖᏍᎬᎢ, ᎯᎠᏰᏃ ᎤᎾᏓᏤᎵᏛ ᎤᎾᎵᎪᏒᎢ, ᎣᏥᎦᏔᎭ ᏂᎬᎾᏛ ᎨᏥᏃᎮᏍᎬ ᎨᎦᏡᏗᏍᎬᎢ.\nᎠᎴ ᎤᏂᏣᏖ ᎠᏁᎮ ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᎢᏏᎵᏱ ᎾᎯᏳ ᎢᎳᏏᏯ ᎠᏙᎴᎰᏍᎩ ᏤᎮᎢ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏯᏥᏅᎦᎸᎡ, ᏁᎹᏂ ᏏᎵᏱ ᎡᎯ ᎤᏩᏒ.\nᎿᏉᏃ ᏌᏱᎳ ᎠᎴ ᏗᎹᏗ ᎤᏂᎷᏨ, ᎹᏏᏙᏂ ᏧᏂᎶᏒ,. ᏉᎳ ᎤᏓᏅᏛ ᎤᏱᎸᏒᎩ, ᎠᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ ᎠᏂᏧᏏ ᏥᏌ ᎾᏍᎩ ᎦᎶᏁᏛ ᎨᏒᎢ.\nᎢᏳᏒᏰᏃ ᎢᏥᎦᏔᎭ ᎢᏣᏛᏁᏗᏱ ᏍᎩᏍᏓᏩᏛᏍᏗᏱ; ᎥᏝᏰᏃ ᎤᏣᏘᏂ ᏱᏃᏣᏛᏁᎵᏙᎮ ᎢᏨᏰᎳᏗᏙᎲᎢ;\n“ᏐᏉ ᎢᎦ ᎤᏐᏱᏉ ᏄᏓᎴᎯ;” ᎤᎵᏰᏔᏁ.\n“ᎮᎾ ᏗᎾᏓᎪᎾᏗᏍᎬᎢ, ᏧᏍᏆᏴᏍᏗ.\nᏧᏓᏏᏃ ᏥᎻ ᏗᎾᏓᏅᏟ, ᎠᎴ ᏧᏓᏏ ᎢᏍᎦᎳᏗ ᎾᏍᎩ ᎠᏓᎶᎸᎮᏍᎩ ᏥᏄᎵᏍᏔᏁᎢ.\nᎾᏂᎥᏃ ᎩᎶ ᎯᎠ ᏥᏂᏥᏪᎠ ᎠᎾᏛᎩᏍᎨᏍᏗ, ᎾᏍᎩᏃ ᎾᎾᏛᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎤᏁᎫ ᎠᏍᎦᏯ ᏗᎨᎦᏟᎶᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏃᏳᎯ ᏧᏁᏍᎨᎮᎢ.\nᎠᎵᏍᏛᏂᎲᏃ ᏕᎦᏃᏴᎵᏍᏗᎭ ᏚᏯᏢ ᏧᏯᎸᏂ\n“ᏱᎪᎯᎳ ᏴᎾ ᎦᏲᏟᎨ ᏯᎵᏍᏔᏴᎲᏍᎦ,” ᎤᏬᏎᎴ.\nᏂᏓᏳᏓᎴᏅᏓ ᎠᏂᏣᎳᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏙᎲ, ᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏓᏆᎭᏁᏬᎥ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎾᏍᎩ ᏗᎨᎦᏛᏅᎯ ᎦᎬᏩᏐᏢᏕᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎢᏳᏃ ᏂᎯ ᎩᎶᏁᏛ ᎨᏎᏍᏗ, ᎭᎵᏍᏕᎸ ᏨᏒ ᎠᎴ ᎠᏴ ᏍᎩᏂᏍᏕᎸ\nᎤᎩᏨᏓ ᏑᎾᎴ, ᎤᏗᏛᎮ ᏫᎵᎻ ᏃᎴ ᏓᏏᎳᏛ ᎭᏫᏂᏣ ᎤᎴᏁ.\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎨᏣᎪᏩᏛᏗ ᏫᏂᎦᎵᏍᏓ; ᏦᎯᏳᏒ ᏣᏍᏕᎸ.\nᏥᎪᎨ ᎠᏴ Ꮀ ᎤᎬᏫᏳᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᏥᏂᎦᏪᎭ? ᎥᏝ ᏳᏜᏏᏛᎭ ᎠᏴᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎾᏍᎩ ᏥᏂᎬᏅ ᏥᎪᏪᎳ; ᎩᎶᏰᏃ ᎦᏓᎷᎩᏍᎩ ᎾᏍᎩ ᎤᏚᎩ ᏳᏩᎭ ᎦᏓᎷᎩᏍᎬᎢ; ᎠᎴ ᎩᎶ ᎤᏚᎩ ᎤᏩᎯ ᎠᎦᏔᏙᎥᏗᏍᎩ ᎾᏍᎩ ᏳᏪᎳᏗᏍᏗᎭ ᎾᏍᎩ ᎤᏚᎩ ᎤᏩᏒᎢ\nᎠᏒᏛᏓ ᏗᏥᏯ ᏭᎶᏎ ᏩᎭᏯ ᏃᎴ ᏭᎳᏏᏁ.\nᎦᏍᎩᎸᏃ ᎤᏬᎵ, ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᏂᎦᏗᏳ ᏧᏓᎴᏅᏛ ᎢᏤ ᏂᎬᏁᎭ. ᎠᎴ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎰᏪᎸᎦ; ᎯᎠᏰᏃ ᎾᏍᎩ ᎧᏃᎮᏛ ᎬᏜᏏᏛᎡᏗ ᏂᎨᏒᎾ ᎠᎴ ᎤᏙᎯᏳᎯᏯ.\nᎠᎴ ᎠᏍᏓᏯ ᎤᏪᎷᏅᎩ, ᏢᏓᏥ ᎤᏃᏕᏅ ᏣᏴᎪ ᎾᏍᎩᏯᎢ; ᎾᏍᎩᏃ ᎤᏪᎷᏅ, ᎦᎵᏉᎩ ᎠᏂᏴᏓᏆᎶᏍᎩ ᎤᏂᏴᏓᏆᎶᎥᎩ.\nᏝᏍᎪ ᏯᏂᏐᏢᎢᏍᏗᏍᎪ ᎦᎸᏉᏗᏳ ᏕᎤᏙᎥ ᎾᏍᎩ ᏂᎯ ᏤᏦᏍᏔᏅᎯ ᏥᎩ?\nᎤᏓᎴᏨ ᏄᎵᏍᏔᏁᎮ ᎦᏅᎪᎢ ᏃᎴ ᏓᎭᏬᎢᎮ.\nᏚᎧᎿᏅᏃ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏗᎾᏁᏍᎨᏍᎩ ᎤᏂᏲᎢᏎᎸᎯ ᏅᏯ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎤᏅᏏᏴ ᎠᏗ ᏄᎵᏍᏔᏅ?\nᏍᎩᎾᎾ ᎢᏳᎾᏛᏁᎸ ᎠᏂᏍᎦᏯ, ᏴᏫ ᎤᏂᏃᎮᎸ ᎨᏎ ᎾᎥᏂ ᎤᏂᎸ ᏲᎾ.\nᎠᏴᏰᏃ ᎢᎩᏣᏘ ᏥᎩ, ᏌᏉᏉ ᎦᏚ, ᎠᎴ ᏌᏉᏉ ᎠᏰᎸᎢ; ᏂᏗᎥᏰᏃ ᎢᎦᏖᏆᎶᏐ ᎾᏍᎩ ᏌᏉ ᎦᏚ ᎢᏓᎵᏍᏓᏴᏗᏍᎬᎢ.\nᎠᏂᏣᎳᎩ ᏥᏳᎧᏗ ᎦᏃᎮᏍᎦ ᎭᏃᏎᎰᎢ ᎯᎠ ᏥᎩᎵᎵ.\nᏐᏉ ᎠᎦᎵᏍᎩ ᏑᎾᎴᎢ, ᎤᎵᏍᏔᏴᏃᎾ, ᎦᏙᎨ ᏫᎵᎻ ᎤᎧᏙᏍᏕᎢ ᎤᎸᏉᏗ ᏧᏪᏥ ᏗᎦᏅᏙᏗ.\nᎾᏍᎩᏃ ᎯᎠ ᏂᎦᏥᏪᏎᎸᎩ; ᎠᏂᎶᎻ ᎥᏝ ᎾᏍᎩ ᏱᏄᏅᏅ, ᎾᏍᎩ ᏧᏂᏲᎯᏍᏗᏱ ᎩᎶ ᎤᏲᎱᎯᏍᏗᏱ, ᎬᏂ ᎠᎫᎢᏍᏗᏍᎩ ᎩᎶ ᎤᏲᎱᎯᏍᏗᏱ, ᎬᏂ ᎠᎫᎢᏍᏗᏍᎩ ᎬᏭᎯᏍᏗᏍᎩ ᏚᎾᎧᏛ ᏧᎪᎲᎯ ᏥᎨᏐ ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎯ ᏥᎨᏐ ᎤᏩᏒ ᎠᎵᏍᏕᎵᏍᎬ ᎤᏁᎢᏍᏗᏱ ᎤᏃᎮᏗᏱ ᎤᏍᎦᏅᏨ ᎠᎫᎢᏍᏗᏍᎬ ᎤᎬᏩᎵ.\nᎣᏏᏉ ᎨᏎᏍᏗ ᎤᏍᏗ ᎠᏣᏗ, ᎭᏓᏬᏣ, ᎭᏓᏬᏣ.\nᎯᎠᏃ ᎾᏍᎩ ᏅᏲᎯ ᏣᏫᏎᎢ; ᎾᏍᎩ ᏣᏛᎩᏍᎪ ᎧᏃᎮᏛ, ᎠᎴ ᎩᎳᏉ ᎢᏴᏛ ᎤᎵᎮᎵᏨᎯ ᏥᏓᏓᏂᎸᎪᎢ;\nᎧᏁᎬᏃ ᎠᏆᏛᎦᏅᎯ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᏔᎵᏁ ᎠᎩᏁᏤᎸᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎮᎾ, ᎠᎴ ᏫᎾᎩ ᎤᏍᏗ ᎪᏪᎵ ᎠᏍᏚᎢᏛ ᏧᏒᎦᎸ ᏗᎧᎿᏩᏗᏙᎯ ᏥᎦᏙᎦ ᏥᏚᎳᏍᎦ ᎠᎺᏉᎯ ᎠᎴ ᎦᏙᎯ.\nᎢᏦᎯᏳᎯᏍᏛ ᎨᏎᏍᏗ, ᏞᏍᏗ ᎢᎸᎯᏳ ᏥᏂᏣᏍᏛ ᏥᏣᏚᎸᏅᎥᏍᎬ ᎾᎯᏳ ᏂᏥᎦᏔᎿᎥᎾ ᏥᎨᏒᎩ;\nᎠᏴ ᏭᏓᎪᎾᏛᏛ ᎠᏆᏍᏗᎧᏂ ᏥᎩ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎨᏒ, ᎯᎠ ᎾᏍᎩ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎥᎩᏁᎸ, ᎾᏍᎩ ᎤᎬᏩᎸᎩ ᎠᏆᎵᏥᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲ ᎬᎪᎵᏰᏗ ᏂᎨᏒᎾ ᎤᏪᎿᎢᏳ ᎨᏒ ᎦᎶᏁᏛ;\nᏂᎠ ᎤᏁᎩᎸᏗ-ᎠᎦᏴᎵ ᏧᎸᏆᏕ ᎤᎧᎯᏓ ᏃᎴ ᎤᎦᏒᏍᏗ.\nᎠᎴ ᎢᏗᎦᏔᎭ ᎾᏍᎩ ᏂᎦᎥ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎤᎾᏖᏆᎶᏒ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᏚᏂᏖᏆᎶᏒ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎤᏁᎳᏅᎯ ᎤᏂᎨᏳᎯ, ᎾᏍᎩ Ꮎ ᎨᏥᏯᏅᏛ ᏥᎩ ᎾᏍᎩᏯ ᎤᏓᏅᏖᎸᎢ.\nᎠᏆᎴᏅᎲᏃ ᎠᎩᏬᏂᏒ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎡᎳᏗ ᏄᏛᏁᎸᎩ, ᎤᏂᎷᏤᎩ, ᎾᏍᎩᏯ ᎠᏴ ᏥᎩᎷᏤᎸ ᏗᏓᎴᏂᏍᎬᎢ.\nᎠᎾᏓᏙᎵᏍᏓᏁᎲᏃ ᎤᎬᏫᏳᎯ ᎠᎴ ᎠᎹᏟ ᎠᏅᏍᎬᎢ, ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎯᎠ ᏄᏪᏎᎢ; ᏗᏍᎩᏯᏓᏓᎴᏓᏏ ᏆᏂᏆ ᎠᎴ ᏐᎳ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎦᏥᏯᏑᏰᏒ ᎤᎬᏩᎵ.\nᎤᎵᏰᏗᏍᎨᎢ, ᎤᏍᎦᏃᎵ ᎠᎩᏠᏫᏍᎬ ᎠᏦᏴᎢ.\nᎠᎴ ᏅᏙ ᎤᎵᏏᎲᏎᎢ, ᎠᎴ ᎠᏄᏬ ᎠᏰᏙᎳᏛ ᎤᏛᎾ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏰᎵ ᏚᎵᏍᏡᏰᎢ.\nᎩᎳᏈᏴ ᏭᎴᏅᎮ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎹᏗ, ᎹᏗ, ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏣᎦᏌᏯᏍᏛ ᏤᎵᎯᏍᏗᎭ ᎠᎴ ᏣᏕᏯᏙᏗᎭ;\nᏍᎩᏴ ᎢᎦ ᏒᎮᏱᏣ, ᏩᎦ ᎤᏅᏗ ᏚᏁᎩᎡᎾ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏒᎯ ᏚᏅᎦᎳᎮᎾ ᎰᎻ, ᎠᏓᏅᏖᏍᎨ ᏄᏍᏆᏂᎩᏛ ᏏᏆ ᎤᎾᏌᎥ.\n“Ꮳ ᏄᏍᏗᎩᎨᎢ.\nᏔᏕᏲᎲᏍᎩ, ᎼᏏ ᎣᎪᏪᎳᏁᎸᎩ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎠᎾᎵᏅᏟ ᎩᎶ ᎠᏲᎱᏍᎨᏍᏗ, ᎠᎴ ᎤᏓᎵᎢ ᎢᎦᎧᎯᏯᏍᎨᏍᏗ, ᏧᏪᏥᏃ ᏂᏗᎦᎧᎯᏯᏍᎬᎾ ᎢᎨᏎᏍᏗ, ᎠᎾᎵᏅᏟ ᎠᏯᏂᏍᎨᏍᏗ ᎤᏓᎵᎢ, ᎠᎴ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᏧᏪᏥ ᏓᏛᎯᏍᏓᏁᎮᏍᏗ.\nᏗᎧᏁᎢᏍᏗ ᏕᎪᏪᎸ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎬᏂᎨᏒ ᏂᎬᏁ ᎤᏍᏆᏂᎩᏗ ᎤᎷᎯᏍᏗ.\nᏐᎢᏍᎩᏂ ᏧᏁᏨ ᎤᎬᏍᎪᎸᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᏱᎾᏰᏍᎦ ᎤᏠᏱᏉ ᏕᏣᏚᎪᏓᏁᎸ ᏥᎩ?\nᏑᎾᎴᎩ ᎠᏎ ᏔᏓᏒᏂ.\nᎾᏂᎥᏃ ᎠᏃᎯᏳᎲᏍᎩ ᎤᎾᏓᏡᎨᎢ, ᎠᎴ ᎠᏰᎵᏉ ᏄᏅᏁ ᏂᎦᎥ ᏧᎬᏩᎶᏗ ᎤᏂᎲᎢ;\nᎠᏓᎨᏳᎲᏍᎩ.\nᎦᏙ ᎤᏩᏌ ᏫᏓᎧᏁ ᏧᎳᏏᏕᏅ ᎠᏰᎵ, ᏱᏚᎾᏓᎧᎾᏅ ᎠᏥᎭᏲᎯ ᏃᎴ ᎠᏓᎭᏲᎯ ᏓᎾᏓᏙᎵᎪ.\nᎾᏍᎩ ᎾᏍᏉ ᎪᎩᎸᏉᏗᏍᎬᎢ ᎤᏣᏛᎩ ᎪᎩᏁᎸᏅᎩ; ᎢᎣᎦᏂᎩᏒᏃ ᎪᎦᎵᏁᏌᎳᏁᎸᎩ ᏧᏓᎴᎳᏅᏛ ᎣᎦᎵᏍᏕᎸᏙᏗ.\n“ᏩᎶᏏ ᎾᏂᏪᏍᎬ ᎦᏛᎦᎦ,” ᎤᏛᏁ ᎠᎦᏴᎵ ᎤᏃᏕᎾ ᏐᏉ ᎤᏓᏏᏂᏕᎾ.\nᎢᏣᎢᏒᏃ ᎢᏣᎵᏥᏙᎲᏍᎨᏍᏗ, ᎯᎠ ᏂᏥᏪᏍᎨᏍᏗ; ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎡᏍᎦᏂᏳ ᏓᏯᎢ.\nᏍᏕᏯᏓ ᎦᏓᎥ ᏭᎩᎶᏫᏎ, ᎧᏅᏑᎸ ᎠᏔᎴᎦᏒ ᏭᏕᎵᏤ.\nᏃᏗ ᎤᏩᏥᎬᎸᎮ ᎢᎦᏪᏍᏗ.\nᎣᏏᏉᏍᎪ ᏣᏓᏅᏔ?”\nᏔᎵᏁ ᎱᏰᏣ ᏫᎵᎻ, ᎤᏛᎦᏁ ᏌᏌ ᎠᎦᏔᎲᏍᎬ ᎤᏁᏍᎩᎸ ᏃᎴ ᎡᏝᏪᎯ ᎤᏰᏥᏍᎬ.\nᎦᏲᏟᏉ ᎬᎾ ᎠᎴ ᏇᎯ ᎠᎴ ᏗᏂᏃᎩᏍᎩ ᏥᏍᏆ ᎤᎾᏓᏂᏴ ᎠᏙᎯ.\nᎦᎸᎳᏗ ᎢᎦᏘ ᏳᏂᏗᏍᎩᏌᏅ ᏗᏒᏆᎶᏍᏗ, ᏰᎵ ᎢᎦ ᏧᎾᏁᏍᎨᏗ ᏧᎾᏁᎳᏗᏍᏗ, ᎦᏅᎯᏛ ᎠᎾᏍᎪᏍᎬ, ᏫᏓᏂᎳᏗᏍᎬ ᏃᏥ ᏗᏒᏆᎶᏍᏗ, ᎠᏂᏦᏯᏍᎬ, ᏗᎦᏁᎦᎸᏓ ᏱᎨᏒᎾ ᏗᏒᏆᎶᏍᏗ, ᏗᎪᏪᎶᏗ ᎢᏗᎪᏍᏔᏱ ᎡᎳᏗ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᎦᎵᏦᏕ ᎤᏪᎸ ᎠᏂᏂ, ᎠᎴ ᎬᏩᏄᏬᎯᏍᏗᏍᎩ, ᎤᏂᎪᎲ ᎺᎵ ᎤᎵᏍᏗᏳ ᏚᎴᏅ ᎠᎴ ᎤᏄᎪᏨ ᎬᏩᏍᏓᏩᏛᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᏗᎦᏂᏌᎲ ᏩᎦᏘ ᎾᎿ ᏮᏛᏍᎪᏂᎵ.\nᎤᏕᏯᏔᏁᎮ ᎦᏬᏂᏍᎬ ᎬᏗ ᎤᏲᏍᏙᏗ ᎤᏬᏚ ᎡᏝᏪᎯ ᎨᏒ ᎧᎸᎬᎢ. ᎠᏎᏃ ᏍᎩᏉ ᎤᏩᏌ ᎠᎧᏔᎮᎢ ᎤᏩᏛᏗ ᎠᏤ ᎤᎾᎵᎢ, ᎯᎸᎯᏨ ᎬᎪᏩᏛᏗ ᏱᎨᏒᎾ.\nᏰᎵᏉ ᏦᎢ ᎢᏳᏩᎬᏗ ᏤᏠᎰ ᎰᎻ.\nᎨᏍᏗ ᎤᏙᎯᏳ ᏱᏥᎦᏔ ᎾᏛᏁᎲ ᏫᎵᎻ ᎤᏔᎷᎩᏍᎩ ᏱᎩ, ᎠᏎᏃ ᎤᏍᏆᏂᎩᏗ.”\nᎩᎶ ᏩᎾᎦᎳ ᎨᏎᏍᏗ ᎤᏬᎯᏳᏒᎢ ᏕᏣᏓᏂᎸᎨᏍᏗ, ᎥᏝ ᎠᏗᎾ ᏗᏧᎪᏙᏗᏱᏉ ᏄᏍᏛ ᎠᏓᏅᏕᏍᎬᎢ.\nᏧᎦᏃᏮ ᎢᏣ ᏚᏅᏓᏒ ᏨᏍᎩᏃ ᎢᏳᏍᏗ, ᎤᏲᎢᏴ, ᎠᏍᏔᏴ ᎦᏅᎪᎢᏍᏗ ᏚᏑᎬ, ᎤᎾᎴᎭᏃᎰ ᎠᏂᏍᎦᏯ ᏱᏭᏂᏴᎳ, ᎭᎾᏉ ᏫᏓᏂᏲᎰᏍᎪ.\nᎪᎯᏰᏃ ᏒᏃᏱ ᏥᎨᏒᎩ ᎤᎶᏗᏢ ᎠᏆᎴᏁᎸ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏴ ᎠᎩᎾᏝᎢ ᏥᎩ ᎠᎴ ᎾᏍᎩ ᏥᏕᏥᎦᎿᏩᏕᎦ,\n“ᎤᏙᎯᏳ ᎤᏒᎯ!” ᏄᏪᏎᎢ ᎤᏎᎦᎳᎯ.\nᎾᏍᏉᏃ ᎾᏍᎩ ᏛᏂᏁᏥ, ᎯᎠ ᏅᏓᎬᏩᏪᏎᎵ, ᏣᎬᏫᏳᎯ, ᎢᎳᎩᏳ ᎢᏨᎪᎡ ᏣᏲᏏᏍᎨᎢ, ᎠᎴ ᏣᏔᏕᎩᏍᎨᎢ, ᎠᎴ ᏁᏣᎦᏔᎲᎾ ᎨᏎᎢ, ᎠᎴ ᏣᏰᎸᎭ ᎨᏎᎢ, ᎠᎴ ᏣᏢᎨᎢ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎡᏣᏍᏚᎮᎢ, ᏂᏨᏍᏕᎸᎲᎾᏃ ᎨᏎᎢ?\nᎩᎳᏈᏴ ᎤᏓᏅᏖᎴᎢ - “ᏭᏩᏅᏓᏕᎢ ᏧᏪᏥ ᏗᎦᏅᏙᏗ ᏃᎴ ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᏧᏂᏍᏗ ᎧᏅᏂᏍᎩ ᎤᎾᏕᏗ ᎪᎨᏱ.\n”ᎠᏯᏍᎪᏃ ᏱᏥᎦᏔ?” ᎤᏛᏁ ᏧᏍᏆᏴᏍᏗ.\nᎠᎴ ᎯᎦᏔᎭ ᏣᏍᏗ ᎨᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ ᏕᎯᎦᏔᎲ ᏗᎦᎸᏉᏗ ᎪᏪᎵ, ᎾᏍᎩ ᏰᎵ ᎯᎦᏔᎿᎢᏳ ᎢᎬᏩᏁᏗ, ᏣᎵᏍᏕᎸᏙᏗ ᎨᏒ ᏫᎬᏩᎵᏱᎶᎯᏍᏗ, ᎦᎶᏁᏛ ᏥᏌ ᎯᏲᎢᏳᏒ ᎢᏳᏩᏂᏐᏗ.\n”ᏤᏍᏗ ᏱᏨᏅᎨᏍᏗ ᏃᎴ ᏤᏍᏗ ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ!”\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎢᎬᏩᏛᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᏩᎾᎦᎳᎯᏳ ᎨᏒ ᎤᏪᏓᎵ ᎢᏳᏩᏂᏌᏛ, - ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᎤᏪᏥ ᏧᏅᏎ ᎾᏍᎩᏯ ᏗᏟᎶᏍᏔᏅᎯ ᎠᏍᎦᎾ ᎤᏇᏓᎵ, ᎠᎴ ᎠᏍᎦᏂ ᏧᎬᏩᎴᎢ, ᏚᏭᎦᏓᏁᎴ ᎤᏎᎪᎩᏎ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᎤᏇᏓᎸ ᎠᏯᎥᎢ;\nᎾᏍᎩ ᎣᎩᎦᎵᏍᏓᏗᏍᎩ ᏥᎩ ᏂᎦᎥ ᎫᏓᎴᏅᏛ ᎣᏥᎩᎵᏲᎬᎢ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏰᎵ ᏗᎦᏲᏥᎵᏍᏓᏗᏍᏗ ᎠᏂᎩᎵᏲᎩ, ᎦᏲᎬᏙᏗ ᎾᏍᎩ ᎠᏓᎦᎵᏍᏓᏗᏍᎩ ᎣᎬᏒ ᎣᎩᎦᎵᏍᏓᏗᏍᏗᏍᎬ ᎤᏁᎳᏅᎯ.\nᎠᏓᏯ ᏧᏩᏌ ᏚᏟᏂᎬᏁᎴ ᎤᏴᏨ, ᎦᏲᏟ ᎠᏂᏓᎶᏂᎨ ᏧᏆᎶᎦ ᏕᎦᏂᏤᎬ ᎦᏃᎸᎥᏍᎬ.\nᎤᏟᏍᏓ ᏭᏓᏐᎴᎢ ᎡᎶᏗ ᏭᎾᏌᎾᎩᏎ ᏗᎦᏅᏐᏍᏙᏗ.\nᎠᏲᎵᏃ ᎠᏛᏍᎨᎢ ᎠᎴ ᎤᏓᏅᏛ ᎠᎵᏂᎪᏍᎨᎢ, ᎤᎧᎵᏨᎯ ᎨᏎ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏚᎧᎿᏩᏗᏙᎮᎢ.\nᏥᎦᏔᎭ ᏂᎯ ᎡᏆᎭᎻ ᎤᏁᏢᏔᏅᏛ ᎨᏒᎢ; ᎠᏎᏃ ᎢᏣᏚᎵ ᏍᎩᎢᏍᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏁᎬ ᏕᏣᏓᏅᏛ ᏫᎾᏴᎯᎲᎾ ᎨᏒᎢ.\nᎿᏉᏃ ᎩᎳᏉ ᎢᏴᏛ ᎬᏩᏓᏅᎡᎸᎩ ᎬᏩᎪᎵᏰᏍᎩ; ᎾᏍᏉᏃ ᏄᎬᏫᏴᏒ ᏗᏓᏘᏂᏙᎯ ᎠᏍᎦᎢᎲᎩ, ᎤᏙ-ᎴᎰᏒ ᎠᎶᎻ ᎨᏒᎢ, ᎠᎴ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎤᎸᎸᎢ.\nᏞᏍᏗ ᏱᏨᎨᏫᏍᎨᏍᏗ ᏂᏗᏣᏓᎦᏔᎲᎾ ᏗᏥᏍᏆᏂᎪᏙᏗᏱ; ᎩᎶᏰᏃ ᎾᏍᎩ ᎾᎾᏛᏁᎲ ᎦᎸᎳᏗ ᎠᏁᎯ ᎨᏥᏅᏏᏓᏍᏗ ᏧᏂᏍᏆᏂᎪᏔᏅᎯ ᎢᎩ.\nᎠᎴ ᎤᏣᏘ ᎤᏍᏗᏰᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎠᏇᏥ ᎠᎨᏳᏣ ᎿᏉ ᎠᏲᎱᏍᎦ; ᎠᏎᏃ ᎢᏁᎾ, ᎯᏯᏏᏔᏛᎭ, ᎾᏍᎩ ᎤᏗᏫᏍᏗᏱ, ᎬᏁᏍᏗᏃ.\nᏂᎯ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ ᎢᏤᎾ; ᎥᏝ ᎠᏏ ᎠᏴ ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ ᏴᏓᎨᏏ; ᎥᏝᏰᏃ ᎠᏏ ᏯᎩᏍᏆᎸᎡᎸ.\nᎡᏉᎯᏳᏰᏃ ᎥᎩᎳᏅᏓᏕᎸ ᎠᎴ ᎤᏣᏘ ᎪᎱᏍᏗ ᎦᎬᏙᏗ, ᎠᎴ ᎤᏂᏣᏔ ᏗᏂᎦᏘᎴᎩ.\nᎪᎯᏓ ᏓᏟᏰᎵᏙ ᎤᎪᎰᎯᏍᏗ ᎠᏗᏅᏓ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎮ, ᎯᎠ ᎾᏍᎩ ᎪᎯ ᏣᏁᎭ ᎥᏝ ᏴᏛᏂᎶᏐᏂ ᎬᏂ ᎯᎠ ᎾᏍᎩ ᏂᎦᏗᏳ ᏂᎦᎵᏍᏔᏅᎭ.\nᎿᏉᏃ ᎤᏁᏨ ᎤᎵᎮᎵᏨᎯ ᏗᎬᏩᏓᏂᎸᏤᎯ ᏕᎨᎦᏬᎡᎢ, ᎾᎯᏳᏃ ᎢᎦ ᎤᏂᏁᏉᏤ ᏦᎢ ᎢᏯᎦᏴᎵ ᎢᏴᏛ.\n”ᎭᏩ,” ᎤᏛᏁ ᎧᏅᏂᏍᎩ, ᏚᏭᏣᏅᎩᏎ ᏚᏏᎳᏛ”\nᎾᏃ ᎠᏃᎯᏳᎲᏍᎩ ᏗᎬᏩᏂᎾᏝᎢ ᎨᏒ ᏞᏍᏗ ᏱᏚᏂᏂᏆᏘᎴᏍᏗ ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᎾᎵᏅᏟ ᎨᏒᎢ, ᎪᎱᏍᏗᏍᎩᏂ ᏓᎾᏛᏁᎮᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᏃᎯᏳᎲᏍᎩ ᎠᎴ ᎨᏥᎨᏳᎢ ᎨᏒᎢ, ᎤᎾᏠᏯᏍᏗᏍᎩ ᎣᏍᏛ ᎾᎦᏛᏁᎸᎢ. ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᏕᎭᏕᏲᎲᏍᎨᏍᏗ, ᎠᎴ ᏕᎯᏁᏤᎮᏍᏗ.\n“ᎯᎠᏛ ᎾᏅᏛᏁᎰ,” ᎤᏛᏁ ᏩᎭᏯ.\n”ᏧᏪᏥᎨ?” \nᎨᏍᏗ ᎤᏍᏆᏂᎩᏗᏱᎩ ᎤᏛᏅ Crockett.\nᎩᎳ ᏫᏓᎦᏒᏅ ᏐᏈᎵ ᏧᏔᎾᎶ ᎨᏛ ᎤᏓᏐᎸ ᏥᏙᎬ ᎠᎩᏠᏫᏍᏗ ᎾᎥ, ᏥᏯᏄᎫᎢᏣᏅ.\nᎠᎴ ᏭᏴᎴ ᏤᎦᎳᏯ ᎦᏁᎸᎢ, ᎠᎴ ᎤᏲᎵᎴ ᎵᏏ\nᎤᏛᎯᏍᏔᏁ ᎤᏎᎵᏓᏍᏙᏗ ᎦᏰᏌᏛ ᎾᏍᎩᏯ ᏗᎦᏘᏍᏙᏗ ᏃᎴ ᏕᎦᏘᎮ ᏂᎦᏓ ᏓᎾᏦᏍᎬ ᎤᎾᏓᏅᏙᎩ, ᎠᏂᏍᎦᏯ ᏃᎴ ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ.\nᏝ ᏳᏂᏲᏎᎴᎢ.\nᎯᎠᏃ ᎾᎩᏪᎡᎸᎩ, ᏔᎵᏁ ᏛᎭᏙᎴᎰᏏ ᎤᏂᏣᏘ ᎠᏂᎦᏔᎲᎢ, ᎠᎴ ᏑᎾᏓᎴᎩ ᎠᏁᎲ ᏴᏫ, ᎠᎴ ᏧᏓᎴᏅᏛ ᏗᏂᏬᏂᏍᎩ ᎨᏒ ᏴᏫ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᎤᏂᎬᏫᏳᎯ.\nXV. ᏔᎳᏚ  \nᏌᏌ ᎠᏂᏓ ᎤᎾᏛᎦᏁ ᏃᎴ ᎠᏂᎧᏔᎮᎢ ᎨᏍᏗ ᎠᏂᏓ ᏱᎨᏎᏍᏗ ᎪᎯᏓ, ᏌᎳᏓ ᎤᏛᎦᏁᎢ ᏃᎴ ᎠᎧᏔᎮᎢ ᎨᏍᏗ ᎪᎯᏓ ᏳᏣᏅᏓᏕᎮᎢ.\nᏫᎵᎻ ᏃᎴ ᏌᎳᏓ ᎤᎾᎵᎮᎵᏤ ᎤᏂᏛᏔᏅᎢ ᏎᎦ.\nᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏣᏘ ᎫᏓᎴᏅᏛ ᎠᎩᏲᏍᏙᏓᏏ ᏫᏨᎷᏤᏗᏱ;\n”ᎤᏙᎯᏳᎭ ᎨᏍᏗ ᏍᎩᎾᎾ ᏱᏣᏚᎵ,” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏓᏅᏘ ᏄᏪᏎ.\nᎨᏍᏗ ᏍᏗᎧᏓ ᏱᏥᏍᏆᏂᎪᏍᎦ ᎠᎾᏓᎪᎾᏗᏍᎬᎢ.”\nᎾᏍᎩ ᏅᏩᏓᎴ ᏂᎨᏒᎾ ᏥᎩ; ᎠᏁᎭᏍᎩᏂᏃᏅ ᎨᏣᏕᏯᏙᏗᏍᎩ, ᎠᎴ ᎤᏂᏁᏟᏴᏍᏗᏱ ᎤᎾᏚᎵᏍᎩ ᎣᏍᏛ ᎧᏃᎮᏛ ᎦᎶᏁᏛ ᎤᏤᎵᎦ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏅ, ᎤᏂᎷᏤ ᎠᎴ ᎤᏂᏁᏎ ᎠᏰᎸᎢ, ᎠᎴ ᎠᏤᎵᏍᏛ ᎤᏂᏅᏁᎢ.\nᏙᎩᏂᏥᏍᏔᏅ ᎠᏗᏔᏍᏗ, ᏙᎩᎾᏗᏔᎲ ᎪᎰᏍᏗ ᏲᏍᏔᏗᏍᎬᎾ, ᎨᏍᏗ ᏲᎩᏃᎯᏳᎮ ᏱᏙᏍᏔᏓᏲᏍᏔᏁᎲᎾ ᎨᏒ.\nᏦᎢᏃ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᏂᎦᏛᏃ ᎦᎸᎳᏗ ᏔᎵᏁ ᏭᎵᏌᎳᏓᏅᎩ.\n”ᎯᎦᏔᎮᎢᏧ ᎦᏳᎳ ᎤᎾᏕᏅ ᎡᏚᏧ ᎰᎻ ᏧᏤᎵ ᏌᏌ ᎠᏂᏓ?” ᎤᏛᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎾᏍᎩ ᎯᎠ ᎢᎬᏱ ᏄᏁᏅᏒᎩ ᏠᎠᏏ ᏓᎪᎩᏚᏘᏴᎩ.\nᏗᎩᎷᏫᏍᏔᏁᏗ.\nᏫᎫᏩᎪᏩᏛᏗ ᏱᎨᏒᎾ ᏍᎪᏁ ᏃᎴ ᏲᎾ ᎤᏤᏍᏙ ᏓᎴᎲᏍᎬ ᏅᏲ.\nᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ ᏥᎩ ᏄᏍᏛ ᎬᎪᏩᏛᏗ ᏂᎨᏒᎾ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎢᎬᏱ ᎤᏕᏅᎯ ᏥᎩ ᏂᎦᏗᏳ ᎨᎦᏁᎳᏅᎯ ᎠᏁᎲᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏥᎵᎥᏂᎸᎭ ᏓᏥᏯᎧᏂ.\nᏫᏓᏙᎴᏈᏙᎲ ᏲᎾ ᎤᏤᏍᏙ, ᎠᏥᏍᏚᎲᏍᎨ ᏫᎵᎻ.\nᎤᎾᏙᎴᎰᏒᏃ ᏈᏓ ᎠᎴ ᏣᏂ ᎾᏂᏯᎦᎢᎲᎾ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏅᏖᎸ ᎪᏪᎵ ᏂᏓᏂᏏᎾᏒᎾ ᎠᎴ ᎾᏂᎦᏔᎿᎥᎾ ᎨᏒᎢ, ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎠᎴ ᏚᏃᎵᏤ ᎾᏍᎩ ᏥᏌ ᎤᏁᏙᎸᎯ ᎨᏒᎢ.\nᎤᏙᎯᏳᎯᏯ, ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᎬᏪᏎᎭ; ᎯᏫᏅ ᏥᎨᏒᎩ ᏨᏒ ᎭᏓᏠᎯᎲᎩ, ᎠᎴ ᏣᏚᎵᏍᎬ ᎮᏙᎲᎩ; ᏣᏛᏐᏅᎯᏍᎩᏂ ᎨᏎᏍᏗ ᏙᏔᏐᎸᏔᏂ, ᏅᏩᏓᎴᏃ ᏓᏣᏠᎵ, ᎠᎴ ᏂᏣᏚᎵᏍᎬᎾ ᎨᏒ ᏮᏓᏣᏘᏅᏍᏔᏂ.\nᏙᎢᏳᏍᏗ ᎭᏗ, ᎪᎱᏍᏗ ᏧᎵᎬᏩᏟ ᏱᎨᏒᎾ?” ᎤᏛᏁ ᏫᎵᎻ.\nᎿᏉᏃ ᎾᏍᎩ ᎦᎵᏉᎩ ᎢᎦ ᏚᎵᏍᏆᏗᏗᏒᎩ, ᎠᏂᏧᏏ ᎡᏏᏱ ᏅᏓᏳᏂᎶᏒᎯ ᎬᏩᎪᎲ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏚᏂᏖᎸᏅᎩ ᏂᎦᏛ ᏴᏫ, ᎠᎴ ᎬᏩᏂᏴᎲᎩ,\nᏭᏂᎷᏨᏃ ᎪᎵᎦᏓ ᏚᏙᎥᎢ, ᎾᏍᎩ ᎤᏍᏆᎷᎪᎢ ᏥᎦᏛᎦ,\nᎾᎿ ᏥᏕᏲᎧᏅ ᎣᏍᏛ ᎧᏃᎮᏛ ᎣᎦᏤᎵ ᏥᏥᏯᏅᏔᏅ, ᎢᏥᏩᏛᏗᏱ ᎦᎸᏉᏗᏳ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎤᏤᎵᎦ.\nᏄᏓᎴ ᎤᏃᎯᏳᎲ ᏧᏤᎵ ᏴᏫ ᎤᏂᎷᏨ, ᎨᏍᏗ ᎠᏕᎳ ᏧᏅᏫᏍᏘᏍᎩ ᏱᎩ ᏃᏈᏏ ᏥᏕᎦᎶᏍᎪ ᎤᏒᎯ ᎦᎸᎶᎢ.\nᎤᏂᏴᎸᏃ, ᎤᎾᎩᎳᏫᏎ ᎦᎸᎳᏗ ᎧᏅᏑᎸ ᏭᏂᏴᎴᎢ, ᎾᎿᏃ ᎠᏂᏁ ᏈᏓ ᎠᎴ ᏥᎻ ᎠᎴ ᏣᏂ ᎠᎴ ᎡᏂᏗ, ᏈᎵᎩᏃ ᎠᎡ ᏓᎻ, ᏆᏓᎳᎻ ᎠᎴ ᎹᏚ, ᏥᎻᏃ ᎡᎵᏈ ᎤᏪᏥ ᎠᎴ ᏌᏩᏂ ᎠᏏᎶᏗ, ᏧᏓᏏᏃ ᏥᎻ ᏗᎾᏓᏅᏟ.\nᎾᏍᎩ ᎯᎠ ᏂᏚᏪᏎᎸ, ᎠᏏᏉ ᎤᏪᏙᎸᎩ ᎨᎵᎵ.\nᎠᏥᏅᎪᏫᏎ ᎠᏦᎭᏴ, ᎤᎾᏂᎩᏍᏗ ᎢᎪᎯᏛ.\nᎭᏫᏂᏣ ᏱᏥᏯᎠ, ᏙᏱᏨ ᎤᏩᏌ ᎬᏇᏅᏍᏗ.”\nᎠᏎᏃ ᎤᏂᎷᏤ ᎠᏂᏧᏏ ᎥᏘᎣᎩ ᎠᎴ ᎢᎪᏂᏯ ᏅᏓᏳᏂᎶᏒᎯ, ᎾᏍᎩ ᏚᏂᏔᏲᏎᎴ ᎤᏂᏣᏘ, ᏉᎳᏃ ᏅᏯ ᏕᎬᏩᏂᏍᏔᏅ ᎬᏩᎾᏌᎾᏫᏛᎮ ᎦᏚᎲ ᎬᏩᏄᎯᏎᎢ, ᎤᏲᎱᏒ ᎠᏁᎵᏍᎨᎢ.\nᎠᎴ ᎠᏂ ᏴᏫ ᏗᏂᏲᎱᏍᎩ ᏥᎩ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎢᎨᏥᏁᎰᎢ; ᎾᎿ ᏍᎩᏂ ᎤᎩᏎᎢ ᎾᏍᎩ Ꮎ ᎡᎭ ᎠᎪᏎᎸᎯ ᏥᎩ.\nᎨᏍᏗ ᏱᎦᎷᎨ Ꮟ ᏲᎾ ᎤᏤᏍᏙ.\n“ᏧᏪᏥ ᏗᏗ.\nᎢᎬᏪᏅᏓᏉ ᎣᏂ ᎾᏍᎩ ᎾᎯᏳ ᎠᎩᎵᏯ ᎦᎶᏐᏅᎭ, ᏅᏙ ᎢᎦ ᎡᎯ ᏛᎵᏏᎲᏏ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎥᏝᎢᎦ ᏳᏘᏍᏕᏍᏗ, ᎠᎴ ᏃᏈᏏ ᏛᏂᏅᎪᎠᏏ, ᎠᎴ ᎤᏂᏣᏘ ᎦᎸᎶᎢ ᏣᏂᎧᎳ ᏛᎾᎵᏖᎸᏂ.\n”ᎠᏎᏃ ᎦᏲᏟ ᎦᏓᏂᎳᏗᏍᎪ.\nᎠᏁᎸᏙᏗᏉ ᎠᎴᏂᏓᏍᏗ, ᎢᏧᎴᎭ ᎢᎬᏁᏗ ᎤᏲ ᎾᎫᎵᏍᏔᏁᎸ, ᏰᎵ ᎪᎯᏓ ᎬᎭᏃᏛ ᎢᎬᏁᏗ ᎠᎫᏩᏅᏛ.\nᎠᏂᏐ ᏄᎾᏍᏛ ᏄᎾᏍᏗ, ᎠᏂᎦᏔᎲ ᏗᏂᏰᎸ ᎤᏂᏍᏚᎭ.\nᎠᎴ ᏅᏯ ᎠᏓᎿᏍᏆᎶᏍᏗᏍᎩ ᎠᎴ ᏅᏯ ᏗᏓᏙᏕᏍᏗᏍᎩ, ᎾᏍᎩ Ꮎ ᎧᏃᎮᏛ ᏥᏚᏂᎾᏍᏆᎶᏍᏗᎭ, ᎾᏃᎯᏳᎲᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎢᏳᎾᎵᏍᏓᏁᏗᏱ ᎾᏍᏉ ᏥᏕᎨᏥᎧᏁᎢ.\n“ᏰᎵᏉᏗ ᏱᎾᏛᎦ!” ᎤᏛᏁ ᎪᎱᏍᏗ\nᎾᏍᎩᏰᏃ ᎤᏲᎱᏒᎯ ᏥᎩ, ᎠᏍᎦᏂ ᎤᎬᏩᎵ ᏌᏉ ᏄᏲᎱᏒᎩ; ᎠᏍᎩᏂ ᎬᏃᏛ ᏥᎩ, ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎬᏩᎵ ᎬᏃᏛ.\nᎨᏍᏗᏗᎩ ᎤᏦᎠᏎᏗ ᏱᏓᏲᎩᎷᏤᎸ ᎭᏂ ᎯᎪ ᎢᎦ ᎠᏆᏛᏅ.\nᏫᎵᎻ ᎦᎸᏉᏗᏍᎨ ᏌᎳᏓ ᎤᏓᏅᏖᎵᏓᏍᏗ.\nᎠᏂᎦᏘᏯᏃ ᎠᏂᏍᎦᎢᎲ ᏚᏂᎾᏪᎢ, ᎠᎴ ᏧᏂᏲᎱᏒᎯ ᎾᏍᎩᏯ ᏄᎾᎵᏍᏔᏁᎢ.\nᎦᏣᏄᎳ ᎤᏗᎦᎴᏲᏤ ᎧᏃᎮᏓ ᏫᎵᎻ ᎤᏓᎵᏓᎩᎡᎸ, ᏂᎦᏓ ᏗᎨᏥᎾᏌᎢ ᎠᏂᎦᏔᎮᎢ.\nᏚᏑᎬ ᎭᏫᏂᏣ ᏚᏥᏢᏁ, ᎦᏓᎭ ᏧᏃᏩ ᏗᎦᏅᎦᎶᏙᏗ ᎦᏄᏖᏲᏅ ᎢᏳᏍᏘ ᏄᏍᏕ ᎭᏫᏂ.\nᏂᎦᎵᏍᏙᏗᎭ ᏥᏥᏲᎭ ᎪᎯᏳᏗᏍᎩ ᎦᎶᏁᏛ ᎠᎥ ᎠᏋᏗᏍᎬ ᎧᏁᎬᎢ, ᎾᏍᎩ ᎢᏥᎦᏔᎲ ᎥᏝ ᎠᏩᎾᎦᎳ ᏱᎩ, ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎢᎬᏁᎸᎯ ᎢᏤᎲᎢ,\nᎤᏙᎯᏳᎯᏯ ᎢᏨᏲᏎᎭ, ᏂᎦᎥ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ, ᎦᎨᏥᏙᎵᏍᏗᏉ ᎨᏎᏍᏗ ᏴᏫ ᏧᏁᏥ, ᎠᎴ ᎠᏐᏢᎢᏍᏙᏗ ᎨᏒ, ᏂᎦᎥ ᎬᏩᏂᏐᏢᎢᏍᏙᏗ ᎨᏒᎢ;\nᎯᎠ ᎾᏍᎩ ᏕᎭᏅᏓᏗᏍᏗᏍᎨᏍᏗ, ᎤᎵᏂᎩᏛᏯ ᏕᎯᏁᏤᎮᏍᏗ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲᎢ, ᎤᎾᏗᏒᏍᏗᏱ ᏂᎨᏒᎾ ᎨᏒ ᏓᏂᏬᏂᏍᎬᎢ, ᎪᎱᏍᏗ ᎬᏙᏗ ᏂᎨᏒᎾ ᏥᎩ, ᏓᏂᎦᏔᎲᏍᎬᏉᏍᎩᏂ ᎬᏩᎾᏛᏓᏍᏓᏁᎯ.\nᎠᏎᏃ ᏕᎦᎾᏗᏁᎭ ᎠᏓᏴᏍᏔᎩᏍᎩ ᎢᎦᏉ ᎤᎾᏚᎵᏍᎬ ᏃᎴ ᎤᎾᏈᏴᏗ ᎨᏒ, ᎫᎬ ᏫᎦᎷᎩ ᏗᏂᏍᎪᎵ.\nᎦᏲᏟ ᎤᏂᏥ ᏚᎵᏍᏚᎸ ᎦᎸᎳᏗᎨᏍᏗ ᏃᏥᏱ ᏚᏅᏓᏒ, ᎤᏍᎪᏍᏓ ᎤᏓᏅᏅ ᎬᏂᎨ ᎤᏍᎪᎸ ᏚᏅᏓᏒ ᏃᎴ ᎤᎵᏏᎩ ᎦᎸᎶᎢ, ᎢᎦ ᎾᎥᏂ ᎢᏴ ᎬᎾᏬᏍᎬ.\nᎠᏂᏌᏚᏏᏰᏃ ᎯᎠ ᎾᏂᏪᏎᎪᎢ; ᎥᏝ ᏗᎴᎯᏐᏗ ᏱᎩ, ᎥᏝ ᎠᎴ ᏰᎭ ᏗᎧᎿᏩᏗᏙᎯ ᎠᎴ ᎠᏓᏅᏙ; ᎠᏂᏆᎵᏏᏍᎩᏂ ᎢᏧᎳ ᎠᏃᎯᏳᎲᏍᎦ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ; Ꮳ-ᎬᏫᏳᎯ, ᎠᏆᏛᏅᎢᏍᏗ ᎬᏍᏓᏩᏛᏍᏗᏱ ᎾᏍᏉ ᏗᏓᏍᏚᏗᏱ ᎠᎴ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ.\nᏗᏣᎧᏅᎦ ᏥᏍᏆ ᎦᎸᎶᎢ ᎠᏁᎯ, ᏝᏰᏃ ᏯᏂᏫᏍᎪᎢ, ᎠᎴ Ꮭ ᏯᏂᏁᏣᎢᏍᎪᎢ, Ꮭ ᎠᎴ ᏓᏓᏁᎸ ᏯᏂᏟᏏᏍᎪᎢ, ᎠᏎᏃ ᎢᏥᏙᏓ ᎦᎸᎳᏗ ᎡᎯ ᏙᎨᎶᎰᎢ. ᏝᏍᎪ ᏂᎯ ᎤᏟ ᏱᏁᏥᎸᏉᏗ ᎡᏍᎦᏉ ᎾᏍᎩ?\nᎥᏝ ᎠᎴ ᏥᎷᏏᎵᎻ ᏱᏩᎩᎶᏎᎢ, ᏱᎦᏥᏩᏛᎲᏎ ᎢᎬᏱ ᎨᏥᏅᏏᏛ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎠᏴ ᎣᏂ; ᎠᎴᏈᏱᏍᎩᏂ ᏩᎩᎶᏒᎩ, ᎠᎴ ᏔᎵᏁ ᏕᎹᏍᎦ ᏛᎠᎩᎷᏨᎩ.\nᎠᎾᏟᎯ ᎤᎾᏓᎵᏗᎩᏛ ᎣᏍᏓ ᎤᏰᎸᎰ ᏕᎪᏎᎲ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏔ, ᎦᏚᏏ ᎤᎾᏗᏍᎦᏟ.\nᎠᏁᎯᏃ ᎠᏂᏫᏅ ᏧᏅᎨᏫ ᎾᏍᎩᏯ ᏓᏂᏙᎨᎢ, ᎠᎾᏛᎩᏍᎨ ᎧᏁᎬᎢ, ᎠᏎᏃ ᎥᏝ ᎩᎶ ᏯᏂᎪᏩᏘᏍᎨᎢ.\nᎨᏍᏗᎭ ᎤᏍᏆᏂᎩᏗ ᏱᎨᏎ ᏧᏍᏆᏴᏍᏗ ᎠᏟᏃᎮᏙᏗ.\nᎤᎧᏖᏃᎴ ᏎᎦ, ᎤᎪᎮᎢ ᎩᎦᎨ ᎠᏣᏗ ᏧᏅᎪᏤᎢ ᏅᏲ ᎭᏫᏂᏣ.\nᏚᏘᏅᏎᏃ ᏇᏗᏂᏱ ᎢᏴᏛ; ᏧᏬᏰᏂᏃ ᏚᏌᎳᏓᏅ ᎣᏍᏛ ᏚᏁᏤᎴᎢ.\nᎿᏉᏃ ᏓᎦᏘᏃᎮᎸᎩ ᏧᎾᏍᏗ ᏗᏂᏲᎵ ᎾᏍᎩ ᏧᏏᏔᏗᏍᏗᏱ ᎠᎴ ᎤᏓᏙᎵᏍᏙᏗᏱ; ᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᏚᏂᏅᏍᏓᏕᎸᎩ.\nᎠᏎᏃ ᎯᎦᎷᎬᏉ ᎢᎦ ᏒᎮᏱᏣ, ᎠᏯᎩᏍᎨ. ᎢᏣᏉ ᎡᏙᎲ ᎠᏍᏓᏩᏗᏙᎮ.\nᎢᎦ ᏧᎦᏃᏩ ᏂᏕᎦᎵᏍᏗᏍᎪ.\nᏧᏂᏢᎩ ᏕᏥᏅᏫᏍᎨᏍᏗ, ᎠᏓᏰᏍᎩ ᏧᏂᏢᎩ ᏕᏥᏅᎦᎵᏍᎨᏍᏗ, ᏧᏂᏲᎱᏒᎯ ᏕᏣᎴᏗᏍᎨᏍᏗ, ᎠᏂᏍᎩᎾ ᏕᏥᏄᎪᏫᏍᎨᏍᏗ. ᎠᏎᏉ ᎡᏥᏁᎸᎯ, ᎠᏎᏉ ᎢᏣᏓᏁᎮᏍᏗ.\n“ᏓᏣᏓᏅᏖᏔᏂᏗ ᎪᎳ ᎦᎷᏨ,” ᎤᏛᏁ ᎤᏃᏕᎾ.\nᎠᏎᏃ ᎡᎵᏑ ᎠᏙᏂᏍᎩ, ᎾᏍᎩᏰᏃ ᏄᏍᏗ ᏕᏅᏙᎥ ᎠᏁᏢᏔᏅᎯ, ᎤᏂᎭᎷᎩᏍᎨᎢ, ᎤᏚᎵᏍᎨ ᎠᏥᎦᏘᏗᏍᏗ ᎤᎦᏔᎲᎡᏗᏱ ᎤᏬᎯᏳᏒᎢ.\nᎡᏍᎦ ᎤᏰᎸᎲ ᎡᏘᏴ ᏤᎩᏏᏂ ᎤᏍᏕᎸᎲ ᎠᏂᎫᏌᏩᎩ ᏚᎾᏟᎸ.\nᎺᎵᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏉ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ; ᏱᎱᏩ ᎾᏍᎩᏯ ᏂᏣᏪᏒ ᏫᎾᏆᎵᏍᏓᏏ. ᏗᎧᎿᏣᏗᏙᎯᏃ ᎤᏓᏅᎡᎴᎢ.\nᏰᎵ ᎢᏯᏂ ᏧᎾᏓᎴᏅᏓ ᎠᏣᏗ ᏕᏥᎪᏩᏔ ᏗᎦᏓᏬᎢᎡ, ᏃᏗ ᎭᏇᏅᏍᏗ ᎤᏍᏆᎸ, ᎨᏉᎢ ᎯᎠ ᎦᏁᎲ ᎠᎹ.\nᎠᎬᏱᏣ ᎤᏅᏤ Philadelphia, ᎠᏲᎰᏍᎨ ᎫᎭᏢ ᎤᎴᏫᏍᏘᏍᎨ ᏃᎴ ᎠᏟᏂᎬᏍᎨ ᎦᏙ ᎤᏂᏴᏗ.\nᎯᏍᎩᏉ ᏧᏕᏘᏴᏓ ᎬᎭᏃᏓ ᎨᏎ.\nᎾᏍᎩ ᎠᏂᎪᏩᏗᏍᎬ ᎤᏂᎪᏩᏛᏗᏱ, ᎠᎴ ᎬᏩᎾᏙᎴᎰᎯᏍᏗ ᏂᎨᏒᎾᎢᏳᎵᏍᏙᏗᏱ; ᎠᎴ ᎠᎾᏛᎩᏍᎬ ᎤᎾᏛᎪᏗᏱ, ᎠᎴ ᎬᏩᏃᎵᏍᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᏧᎾᏓᏁᏟᏴᎡᏗᏱ ᏂᎨᏒᎾ ᏚᎾᏓᏅᏛ, ᎠᎴ ᎤᏂᏍᎦᏅᏨ ᎦᎨᏥᏁᏗᏱ ᏂᎨᏒᎾ.\nᎢᏳᎾᏛᏁᏗ ᎨᏒ ᎠᏂᏍᎦᏯ, ᏙᏰ ᎡᎯ ᎤᏂᎸᏉᏗ, Boudinot ᏃᎴ ᎠᏫᎾ Ridge ᏚᏃᏪᎳᏁ ᏧᏓᎴᏅᏓ ᏓᏂᎪᏩᏘᏍᎬ ᎢᎾᎨ ᎡᎯ ᏃᎴ ᎢᎾᎨ ᎠᏕᎲᏍᎩ.\nᏎᎦᏃ ᎡᏝᏪᎯ ᎨᏎᎢ.\nᏗᏂᎧᎿᏩᏗᏙᎯᏍᎩᏂ ᎤᏟ ᎢᏧᎾᎵᏂᎩᏛ ᏥᎩ ᎥᏝ ᎪᎱᏍᏗ ᎤᏐᏅ ᏱᏓᏂᎳᏫᏎᎰ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲᎢ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᎢᎬᏱ ᏗᎪᎵᏰᎥᎯ ᎨᏎᏍᏗ, ᎩᎳ ᏚᏂᎸᏫᏍᏓᏁᎮᏍᏗ ᎠᏂᏯᏙᎯᎲ ᎪᎱᏍᏗ ᎦᎨᎫᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ.\nᏫᎵᎻ ᎦᏅᏍᎨᏂ ᏚᏭᎪᏔᏁᎢ ᎩᏟ.\nᏯᏛᎾ ᎤᏙᎯᏳ ᎢᏳᏍᏗ ᏱᏓᏛᎾ.\nᎠᏇᏅᏒ ᏩᏯ, ᎤᎯᏐᏗ ᎤᎨᏓᎵᏴ ᏩᎩᎶᏒ, ᏂᎦᏓ ᎡᎶ ᏣᎵᏍᏔᎷᏯᏍᎪ ᎠᎩᏰᎸᎲ.\nᎤᏬᏰᏂ ᎧᎵ ᎠᎩᏍᎪ ᎦᏓ.\nᏥᎷᏏᎵᎻ! ᏥᎷᏏᎵᎻ! ᎠᎾᏙᎴᎰᏍᎩ ᏘᎯᎯ, ᎠᎴ ᏅᏯ ᏛᏂᏍᏗᏍᎩ ᎨᏣᎷᏤᏗᏱ ᎨᏥᏅᏒᎯ; ᏯᏃᎩᏳ ᎠᏆᏚᎵᏍᎬ ᎦᏥᏯᏟᏐᏗᏱ ᏗᏤᏥ, ᎾᏍᎩᏯ Ꮳ-ᏔᎦ ᏥᏕᎦᏟᏏᏍᎪ ᏧᏪᏥ ᎠᏂᏛ ᎠᏫᏂᏗᏢ ᏗᎧᏃᎨᏂ, ᎠᏎᏃ ᎥᏝ ᏱᏣᏚᎵᏍᎨᎢ!\nᎯᎸ ᎢᏴ.\nᏌᏊ ᎢᏳᏩᎬᏘ ᎤᎦᏔᏊ ᎨᏎᎢ, ᏃᏊᏃ ᎤᏔᏅ ᏒᎦᏔ ᎢᏈᎬᎢ ᎢᎩ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᏝᏍᎪ ᎠᏍᎪᎯ ᏱᎨᏥᏅᎦᎸᎡᎢ? ᎠᏎᏃ ᏐᎣᏁᎳ ᎢᏯᏂᏛ ᎭᏢ?\nᎡᎳᏗ ᏂᏙᏨᏁᎰ ᎠᏓᏅᏖᏗ ᎨᏒ, ᎠᎴ ᏄᏓᎴᏒ ᎢᏅ ᎢᎦᏘ ᎾᏍᎩ ᎠᏓᎵᏌᎳᏗᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᏗᎦᏘᎴᎩ, ᎠᎴ ᏙᏥᏎᎪᎩᏍᎪ ᏙᏣᏘᏁᎪ ᏄᏓᎴᏒ ᎠᏓᏅᏖᏗ ᎨᏒ ᎦᎶᏁᏛ ᎬᏬᎯᏳᏗᏱ ᏃᏨᏁᎰᎢ;\nᏓᏂᏚᎢᏍᏓᏁᎰ ᏗᎨᏥᎾᏝᎢ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᎤᏅᏒᏃ ᎤᏲ ᎨᏒ ᏗᎬᏩᏂᎾᏝᎢ ᎨᏐᎢ: ᎩᎶᏰᏃ ᎠᏥᏎᎪᎩ ᎾᏍᎩ Ꮎ ᎤᏎᎪᎩᏛ ᎤᎾᏝᎢ ᏂᎦᎵᏍᏗᏍᎪᎢ.\nᏗᎧᎿᏩᏛᏍᏗᏰᏃ ᎥᏝ ᎪᎯᏳᏗ ᎨᏒ ᎠᎵᏍᏕᎸᏙᏗ ᏱᏂᎬᏁᎭ; ᎯᎠᏍᎩᏂ, ᎩᎶ ᏴᏫ ᎾᏍᎩ ᎾᏛᏁᎮᏍᏗ ᎾᏍᎩ ᎤᏛᏂᏗᏍᏕᏍᏗ.\nᎾᏍᎩ ᎨᏓᏚᏓᏔᎡᎸᎯ ᎨᏒ ᎨᎩᏍᎦᎩ ᎢᎦᎵᏍᎪᎸᏓᏁᏗᏱ ᏂᏗᎾᏰᏍᎬᎾ ᎡᏓᏓᏙᎵᏍᏓᏁᏗᏱ,\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎦᏙᏃ ᎥᏣᏍᏆᏂᎪᎵ? ᏓᎬᏃᏁᎵ ᏄᏍᏛ ᎦᏛᎬ ᎠᎨᏴ, ᎠᎴ ᏄᏍᏛ ᎦᏛᎬ ᏅᎩᏗᎦᏅᏌᏗ ᎾᏍᎩ ᏧᎩᎸᏗ, ᎾᏍᎩ ᎦᎵᏉᎩ ᏥᏓᏍᎫᏓᏛ ᎠᎴ ᎠᏍᎪᎯ ᏥᏚᎷᎦ.\nᎢᏳᏃ ᎩᎶ ᎢᏤᎲ ᏳᏓᏑᏯ ᏧᏁᎶᏗ ᏱᏅᏩᏍᏗ, ᏂᎦᎾᎯᏍᏗᏍᎬᎾᏃ ᏱᎩ ᎦᏃᎪᎢ, ᎤᏩᏒᏉᏍᎩᏂ ᎤᎾᏫ ᎦᎵᏓᏍᏗᏍᎩ ᏱᎩ, ᎾᏍᎩ ᎠᏍᎦᏯ ᏧᏁᎶᏗ ᎨᏒ ᎠᏎᏉᎢ.\nᎠᎦᎵᏍᎬ ᎦᏙᎨ ᏫᎵᎻ, ᎤᎯᏐᏗ ᎤᏓᏅᏖᎢ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏂᎨᏴ ᎬᏩᏂᎾᏄᎪᏫᏒᎯ ᏥᎩ ᎥᏝ ᎩᎶ ᏳᎾᏄᎪᏨ ᎬᏩᏓᎵᏁᎯᏕᏗ ᏣᏂ ᏗᏓᏬᏍᎩ; ᎠᏎᏃ ᎤᏍᏗᎧᏂ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎡᏍᎦᏉ ᏣᏂ.\nᎠᏏ ᏞᎦ, ᎿᏉ ᎡᎶᎯ ᎥᏝ ᏯᎩᎪᏩᏘᏍᎨᏍᏗ, ᏂᎯᏍᎩᏂ ᏍᎩᎪᏩᏘᏍᎨᏍᏗ, ᎠᏴᏰᏃ ᎬᏅ, ᎠᎴ ᏂᎯ ᎾᏍᏉ ᏕᏨᏁᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏍᎦᏯ, ᎤᎦᎵᏍᏗ ᎢᏣᏓᏅᏓᏓ; ᏥᏲᎢᏳᎲᏍᎦᏰᏃ ᎤᏁᎳᏅᎯ, ᎾᎩᏪᏎᎸ ᎾᏍᎩᏯ ᎢᏳᎵᏍᏙᏗᏱ.\nᏔᎵᏁᎢ ᎠᎹ ᎦᏁᎲᎢ, ᎤᏓᎴᏨ ᏗᎧᏃᏗ ᎠᏣᏗ ᎤᎪᎮᎢ.\n”ᎤᏍᏓᎦᏴᎯᏓ” ᎣᏍᏓ ᏦᏪᎶᏗ ᏕᏣᏏᎳᏛ.”\n”ᏙᏱ ᏍᏕᎾ ᎢᏧᎳ!” \nᏩᏁ ᎤᎴᏴᏒ ᎣᎭᏁ ᎦᏅᎬ ᎠᏌᎻᏓ ᎣᎩᎵᏦᏩᏛ ᎾᎥᏂ.\nᎯᎠᏃ ᏚᏃᎩᏎ.\nᎦᎸᎳᏗᏣ Ꭴ ᎤᎴᏅᎮ.\n“ᎠᏯᏍᏉ ᏍᎩᏍᏚᏣ!” ᎤᏛᏁ ᎡᎳᏆᏗ, \nᎦᎪ ᎤᏂᏍᎦᏅᏨ ᏙᏓᎫᎯᏍᏔᏂ ᎤᎾᎴᏅᎯ ᏧᏑᏰᏛ? ᏥᏌ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎤᏄᏓᎴᏍᎩ?\nᏎᎦ ᏤᏍᏗ ᏱᎾᏟᏃᎮᏍᎨᏍᏗ, ᏌᎳᏓ.\nᏔᎵᏁ ᏅᏙ ᎢᎪᎯᏛ ᎤᏂᎩᏍᏗ ᎭᏫᏯ.\nᏭᏓᎾᏫᏛ ᏭᏏᎳᏛᏁ, ᎦᏆᎵ ᏓᏳᏓᎴᏅ.\nᎣᏍᏛ ᏴᏫ, ᎣᏍᏛ ᎤᏍᏆᏂᎪᏛ ᎤᎾᏫᏱ, ᎣᏍᏛ ᎦᎾᏄᎪᏫᏍᎪᎢ. ᎤᏲᏃ ᏴᏫ, ᎤᏲ ᎤᏍᏆᏂᎪᏛ ᎤᏲ ᎦᎾᏄᎪᏫᏍᎪᎢ.\nᎩᎳᏈᏴ ᏚᎴᏁ ᏫᎵᎻ.\n”Ꮟ-Ꮟ-Ꮟ, Ꮟ ᏔᎵᏁ ᎢᏯᎩᏪᏍᏗ ᏱᎨᏒᎾ,” ᎤᏛᏁ ᏌᏌ, ”ᎠᏯ ᎬᏁᏤᎭ, ᎩᏅᎪᎢᏉ.\nᎠᏍᎦᏯᏃ ᏙᏓᏳᏲᏏ ᎤᏲᎱᎯᏍᏗᏱ ᏗᎾᏓᏅᏟ, ᎠᎦᏴᎵᎨᏃ ᎤᏪᏥ ᏙᏓᏳᏲᏏ, ᎠᎴ ᎣᏂ ᏧᎾᏛᏒᎯ ᏙᏛᎾᏡᏔᏂ ᏧᏂᎦᏴᎵᎨᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏛᏅᏂᏌᏂ ᏗᎨᏥᎢᏍᏗ ᎨᏎᏍᏗ.\nᏌᏩᏂᏃ ᏈᏓ ᎦᏙᎬᎩ ᎤᎦᎾᏬᏍᎬᎩ. ᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᏂᎯᎧ ᎾᏍᏉ ᎯᎠ ᎯᏍᏓᏩᏗᏙᎯ? ᎤᏓᏱᎸᎩ, ᎥᏝ, ᎤᏛᏅᎩ.\nᏂᎦᏓ ᏓᏓᏗᎪᎯ.\nᎤᏩᏛᎲᏃ ᎥᏖᎣᎩ ᎤᏘᏃᎴᎢ. ᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏑᏕᏘᏴᏛ ᎾᎿ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬ ᏓᏂᎳᏫᎨᎢ, ᎠᎴ ᎤᏂᏣᏖ ᏴᏫ ᏚᏁᏲᏁᎢ. ᎥᏖᎣᎩᏃ ᎢᎬᏱᏱ ᎠᏂᎦᎶᏁᏛ ᎨᎪᏎᎴ ᎠᏃᎯᏳᎲᏍᎩ.\nᎬᏂᎨᏒ ᎢᏧᏩᏁᏗᏱ ᏧᏤᎵ ᏴᏫ ᎾᏍᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ ᎨᏒᎢ, ᎦᎨᏥᏁᎲ ᎤᏂᏍᎦᏅᏨᎢ,\nᎥᏝ ᏍᎩᏂᏃᏅ ᎣᎬᏒ ᎨᏒ ᏰᎵ ᎦᏲᎦᏓᏅᏖᏗ ᏱᎩ ᎪᎱᏍᏗ ᎣᎬ ᏒᏉ ᎨᏒ ᏅᏛᏓᎴᎲᏍᎩ, ᏰᎵᏉᏍᎩᏂ ᎢᎦᏲᎦᏛᏁᏗ ᎨᏒ ᎤᏁᎳᏅᎯᏱ ᏗᏓᎴᎲᏍᎦ.\nᎠᎴ ᎾᏍᎩ ᏦᏣᏚᏓᎳᎡᏗᏱ ᎤᏂᏲ ᎠᎴ ᎠᏂᏍᎦᎾ ᎠᏂᏍᎦᏯ; ᎥᏝᏰᏃ ᎾᏂᎥ ᎪᎯᏳᏗ ᎨᏒ ᏳᏁᎭ.\nᎤᎬᏍᏉᎡ, ᏕᎦᏅᏙᎬ ᏚᏅᎦᎸᎮ, ᏃᏉ ᏚᎭᏯᎴ ᏧᎿᏬᏍᏗ.\nᎦᏚᏏ ᏳᏫᏕᏗᏌᏙᎭᏯ ᎧᏂᎩᏛ ᏗᎨᏒ, ᏱᏕᎨᎩᏘᎷᎦ, ᎠᏎᏃ ᎧᏂᎩᏓ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏃᎴ ᎤᎾᏟᏍᏙᏗ.\nᎠᏛᏍᎨ, ᏃᎴ ᎨᏍᏗ ᎠᎨᏳᏣ ᎢᏳᎾᏛᏁᏗ ᏱᎾᏛᏁᎮ ᏃᏉ, ᎨᏍᏗ ᎡᎳᏗ ᎢᎦᏘ ᎦᏍᎩᎶᎩ ᏯᎵᏍᏛᏧᏍᎨᎢ ᏏᏆ ᎤᏴᏍᏗ ᎾᎥᏂ.\nᎭᏪᎾᏗᏅ, ᎠᏆᏛᏅ.\nᎢᎴᎯᏳᏃ ᎪᎱᏍᏗ ᏃᏒᎾ ᏂᎦᎵᏍᏗᏍᎪ, ᏄᏓᎴ ᎢᎦᏛᏁᏗ ᎠᏰᎸᏐᎢ.\nᏌᏩᏂᏃ ᎠᎨᎾᏂᏗ, ᏧᏓᏏᏃ ᎢᏍᎦᎳᏗ ᎾᏍᎩ ᏥᏌ ᏧᎶᏄᎮᎸᎩ.\nᎢᏤ ᎤᎵᏑᏫᏓ ᏧᏍᏆᎳ ᏗᎦᏅᏌᏗ ᎤᏑᎳᏁ ᏃᎴ ᏌᎪᏂᎨ ᎤᏁᎦ ᏧᎶᎳᏗ ᏧᏍᏆᎳ ᏗᎪᎭᏯᏗ ᎤᎿᏬᎡ.\nᎠᎴ ᎠᎦᏴᎵᎨ ᎠᏴ ᏓᏥᏔᏲᏎᎵ, ᎾᏍᎩᏃ ᏓᏣᎵᏍᎪᎸᏓᏁᎵ ᏅᏩᏓᎴ ᎢᏥᏅᏬᎯᏍᏗᏍᎩ, ᎾᏍᎩ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎢᏤᎳᏗᏙᎯ,\nᎤᎾᏓᎪᎾᏙᏗ ᎤᏏᏩ ᎨᏎᏍᏗ ᏃᎴ ᎨᏍᏗ ᎩᎶ ᏰᏙᎮᏍᏗ.\nᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᎦᎾᏄᎪᏫᏎᎭ ᎬᏩᎾᏰᏍᎩ ᎾᎾᏓᏁᏟᏴᏏᏒᎢ.\nᎥᏝ ᎢᏨᏍᏕᏲᎯᏍᏙᏗᏱ ᏱᎩᏰᎸ ᎯᎠ ᎾᏍᎩ ᏥᏨᏲᏪᎳᏁᎭ; ᏗᏇᏥᏍᎩᏂ ᎢᏨᎨᏳᎢ ᎾᏍᎩᏯᎢ ᎢᏨᏯᏅᏓᏗᏍᏗᎭ.\nᎾᏍᎩᏴ ᏍᏔᏱ ᎨᏒ ᎠᎦᏓᏅᏖᏗ ᎡᎫᏬᏟᏍᏗ ᏩᏏᏛᏂ, ᏂᏛᏓᎴᏂᏍᎬ Crockett ᎠᏨᏉᏗᏍᎬ ᎢᎾᎨᎯ ᎡᎯ ᎤᏤᎸᎲ.\nᏚᏂᏂᏴᏎᏍᏗᏍᎩᏂ ᎤᏕᎵᏛ ᎪᎯᏳᏗ ᎨᏒᎢ ᎠᏅᏗᏍᎨᏍᏗ ᎦᏓᎭ ᏂᎨᏒᎾ ᏗᎫᎪᏙᏗ ᎨᏒᎢ.\nᏆᏂᏉᏃ ᎠᎴ ᏐᎳ ᏭᏂᏍᏆᏛ ᎨᏥᏁᏤᎸᎢ, ᎤᏂᎷᏤ ᏥᎷᏏᎵᎻ ᏗᎤᏂᎶᏎᎢ, ᎤᎾᏘᏃᎴᏃ ᏣᏂ ᎹᎦ ᏧᏙᎢᏛ.\nᎠᎴ ᎤᏁᎳᏅᎯ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᏂᎪᎯᎸᎾᏉ ᏎᏓᏂ ᎤᏪᏓᏫᏙᏗ ᏅᏓᎦᎵᏍᏓᏂ ᏗᏣᎳᏏᏕᏂ ᎭᏫᏂᏗᏢ. ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᎢᏤᎳᏗᏙᎮᏍᏗ. ᎡᎺᏅ.\n”ᎭᏗ,” ᎤᏛᏁ ᏫᎵᎻ.\nᏧᏍᏆᏴᏍᏗ ᎯᎠ ᎾᏛᎦ, ᏧᏍᏆᏴᏍᏗ ᏃᎴ ᎯᎠ ᎾᏛᎦ, ᏧᏍᏆᏴᏍᏗ ᎤᏲ ᎤᎾᏗᏅᏗ ᏫᏍᎩᎾᎩ ᎪᏪᎵ ᎠᎦᎸᏓ, ᏧᏍᏆᏴᏍᏗ ᎠᏍᏓ ᏫᏍᎩᎾᎩᎢ ᏗᎩᏏᎳᏛᏙᏗ.”\nᏂᎬᎾᏛ ᎭᏓᏏᏓ! \nᎠᏎᏃ ᏍᏔᏯ ᎨᏎᏍᏗ ᎠᏔᎶᎯᏍᏗ, ᏫᎵᎻ, ᏂᏗᎦᎵᏍᏙᏗ ᏁᏆᎸ ᏃᎴ ᏄᏓᎨᏒ.\n”ᎤᏍᏆᏂᎩᏘ ᏏᏆ!” ᎤᏛᏁ ᏣᏄᏏ ᎡᏝᏪᎯ.\nᎢᏳᏃ ᎩᎶ ᎤᏚᎵᏍᎨᏍᏗ ᎾᏍᎩ ᏄᏍᏛ ᎤᏚᎵᏍᎬ ᏧᎸᏫᏍᏓᏁᏗᏱ, ᎠᏎ ᎤᏙᎴᎰᎯᏍᏗ ᎾᏍᎩ ᎯᎠ ᏥᏕᎦᏕᏲᎲᏍᎦ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏥᏬᏂᏍᎬ ᎠᏋᏒᏉ ᎠᏆᏓᏅᏖᎸᎯ ᎢᎨᏎᏍᏗ.\nᎩᏟ ᎤᏂᏍᏔᏩᏗᏒ, ᎦᎪᏟᏍᏗ ᏱᎨᏒᎾ ᏧᏓᎴᏅ, ᎠᎴᏃ ᎠᏂᎩᎦᎨ ᏩᏯ, ᏚᏂᏒᏅᏉ ᎠᏂᏳᏩᏁᎦ ᏃᎴ ᎠᏂᏴᏫᏯ ᎤᏅᎨᏫᏒ ᏧᏂᎯᏍᏗ ᏱᎨᏒᎾ, ᎾᏍᎩ ᎾᎥᏂ ᎠᎾᏓᏤᎵᎨᏒ ᎠᏍᎦᏯ ᏃᎴ ᏩᏯ.\nᎠᎰᎵ ᎤᏅᎦᎸᎮ ᏃᏗ ᎦᎸᎳᏗ ᎢᏣ ᏭᏓᏒᏍᏔᏁᎢ.\nᎾᏍᏉᏃ ᏂᎯ ᎢᏥᎨᏴ ᏗᏦᎯᏳᎯᏳ ᎨᏎᏍᏗ ᏗᎨᏥᏰᎯ, ᎾᏍᎩ ᎢᏳᏃ ᎩᎶ ᎧᏃᎮᏛ ᏂᏓᏂᎧᎿᏩᏕᎬᎾ ᏱᎩ, ᎾᏍᎩ ᎾᏍᏉ ᎧᏃᎮᏛ ᎬᏗ ᏂᎨᏒᎾ ᏱᎨᏥᏎᎪᎩᏍᏓ [ᎠᏂᎪᏩᏘᏍᎬ] ᏄᏍᏛ ᎢᏣᎴᏂᏙᎲ ᎢᏥᎨᏴ,\nᎤᏠᏱ ᎾᏛᏁᎲ ᎠᏁᎷᎩᏍᎬ ᎠᎨ ᎢᏳᏓᏅᎯᏓ ᏃᏊᎴ ᏗᎠᏨᏍᎪ ᎠᏊᎢᏴ ᎢᎦᎷᎪᎢ ᎠᎴ ᏓᏑᏫᏍᎬ ᏂᎬᏩᏍᏙᎢ.\nᎥᏠᏂᎦ ᎠᎴ ᏧᏂᏯ ᏕᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏗᏋᏅ, ᎠᎴ ᎢᏧᎳᎭ ᏦᎩᏴᎩᏅᎯ, ᎾᏍᎩ ᎨᏥᎸᏉᏗ ᏥᎩ ᎨᏥᏅᏏᏛ ᎠᏁᎲᎢ; ᎾᏍᎩ ᎾᏍᏉ ᎢᎬᏱ ᎦᎶᏁᏛ ᏧᎾᏁᎶᏗ ᎢᏳᎾᎵᏍᏔᏅᎯ ᎠᏴ ᎣᏂ.\nᎾᏍᎩ Ꮎ ᎧᏃᎮᏛ ᎠᎨᏲᏅᎯ ᎠᏁᎮᏍᏗ ᎾᏍᎩ Ꮎ ᎤᏪᏲᎲᏍᎩ ᏄᏓᎴᏒ ᎣᏍᏛ ᎨᏒᎢ.\n”ᎡᏝᏪᎯ, ᎡᏝᏪᎯ, ᎡᏝᏪᎯ!”\nᎤᏕᎶᎰᏌ ᎢᏳᎾᏍᏗ ᎨᏒ ᏃᎴ ᎢᏳᏍᏗ ᎤᏰᎸᏛ ᎤᏂᎷᏨ, ᎤᏟᏍᏔ ᏭᏴᎸ ᎦᎵᏦᏕ, ᏔᎵ ᏧᏍᏆᏅᎾ ᏚᎭᏃᎸ ᏃᎴ ᎤᏍᏗ ᏧᎳᏍᎩ.\nᎠᏂᎦᏲᏟ ᏲᎾ ᏧᏤᎵ ᏴᏫ ᏃᎴ ᎢᏅᎯ ᏗᏁᎲ ᎠᎹᏰᎵ ᏧᏍᏆᏂᎪᏍᏗ.\nᎠᎩᏰᎸᎭ ᎨᏒᎩ, ᏙᏍᎩᏄᏬᎥᎩᏃ; ᎠᎩᏢᎬᎩ, ᎥᏍᎩᏯᎦᏔᏂᎸᎩᏃ; ᏗᏓᏍᏚᏗᏱ ᎥᎩᏍᏚᎲᎩ, ᎥᏍᎩᏩᏛᎯᎸᎩᏃ.\nᏍᏗᏫ ᏚᏓᎵᏴᎮ ᎠᏁᎸᏗᏍᎬ ᎣᏍᏓ ᎤᏂᏴᏗ, ᎦᏚᎲ ᏗᏁ ᎤᎾᏰᎶᎴ.\n“ᎠᎦᏛ ᎣᏍᏓ ᎠᏰᎸᏗ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ, “ᎦᏆᏘ ᎠᏗᏆᎸᏕᏲ ᎠᎩᎸᏙᏗ ᎦᎸᎳᏗ ᏱᏭᎴᏫᏍᏔᎾ ᏃᎴ ᎠᏯ ᏃᎴ ᎮᏂᎵ ᎣᎩᎾᎩᎸᏛ ᏯᎵᏖᏅᎵᏍᏙᏗ ᎮᏂᎵ, ᎾᎨ ᎢᏴ ᏩᎪᏩᏛᏗ ᎨᏐᎢ.”\nᎨᏍᏗ ᏯᎦᏔᎮ ᎢᏳᎾᎵᏍᏙᏗ ᎤᎵᏘᎾᎥ.\nᎠᎴ ᎤᏟ ᎠᎯᏗᏳ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎤᏂᎶᏐᎲᏍᏗᏱ, ᎠᏃ ᏌᏉ ᎤᏍᏗᎧᏂ ᏗᎧᎿᏩᏛᏍᏗ ᎡᏍᎦ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏴᏍᎩᏂ ᎦᎶᏁᏛ ᏓᏓᎿᏩᏍᏛ ᎠᎦᏛᏅᎯ ᎣᏣᎵᏥᏙᎲᏍᎦ, ᎾᏍᎩ ᎠᏂᏧᏏ ᏧᏃᏕᏍᏗᏍᎩ, ᎠᏂᎪᎢᏃ ᎠᎵᏍᎦᏁᏛ ᎤᏂᏰᎸᎯ;\nᎤᏭᎬᏙᏗ ᎠᏩᏘᏍᎪ ᏅᎩ ᏗᏂᏅᏌᏗ ᏚᎾᎪᏍᎬ ᎦᏙᎯ ᎠᎵᏰᎾ.\nᎠᏎᏃ ᎾᏥᎸᏉᏛᎾ ᏄᏓᏛᏁᎴ ᎤᏩᏒ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᏄᏍᏛ ᎾᏍᎩᏯ ᏄᏓᏛᏁᎴᎢ, ᎠᎴ ᏴᏫ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏁᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏥᏙᎨᏍᏗ, ᏕᏣᏓᏠᏍᏕᏍᏗ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒ ᏕᏣᏓᏁᏣᏍᏚᎶᏕᏍᏗ;\nᎡᏝᏪ ᎦᏙᎨ ᏚᎦᏙᏍᏔᏁᎢ ᎤᎾᏂᎩᏌ ᎪᏱᏁ.\nᎢᏳ ᎠᎴ ᎾᏍᏉ ᏲᏥᎩᎵᏲᎦ, ᎢᏥᎦᎵᏍᏓᏗᏍᏗ ᎠᎴ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎳ, ᎾᏍᎩ ᏥᏥᏩᏛᎡᎭ ᏗᏨᏂᏗᏳ ᎢᏥᎩᎵᏲᎢᏍᏗᏱ ᎠᏴ ᎣᏥ ᎩᎵᏲᎬ ᎤᏠᏱ; ᎢᏳ ᎠᎴ ᎤᎦᎵᏍᏗ ᏲᎦᏓᏅᏔ, ᎢᏥᎦᎵᏍᏓᏗᏍᏗ ᎠᎴ ᎢᏣᎵᏍᏕᎸᏙᏗ ᎤᎬᏩᎳ.\nᎯᎠᏃ ᎾᏍᎩ ᏦᎢ ᎢᏯᏂᏛ ᎨᏒ, ᏂᎯ ᎭᏓᏅᏖᏍᎬ, ᎦᎪ ᎾᎥ ᎢᏧᎾᏓᎳ ᏅᏩᏍᏗ ᎾᏍᎩ ᏗᎾᏓᎾᏌᎲᏍᎩ ᏥᏚᎾᏓᏩᏛᏔᏁᎢ?\nᎩᎶ ᎦᎵᎷᎨᏍᏗ ᏩᏛᎬᎦ ᎠᏓᏅᏙ ᏂᏕᎦᏪᏎᎲ ᏧᎾᏁᎶᏗ ᏚᎾᏓᏡᏩᏗᏒᎢ; ᎩᎶ ᎠᏓᏎᎪᎩᏍᎨᏍᏗ ᏓᏥᏁᎵ ᎤᎵᏍᏓᏴᏙᏗ ᎬᏍᎦᎳᏅᎯ ᎹᎾ, ᎠᎴ ᎤᏁᎬ ᏅᏯ ᏓᏥᏁᎵ, ᎠᎴ ᏅᏲᎯ ᎪᏪᎴᏍᏗ ᎢᏤ ᏧᏙᏍᏙᏗ, ᎾᏍᎩ ᎩᎶ ᎾᎦᏔᎲᎾ Ꮎ ᏅᏯ ᎠᏥᏁᎸᎯ ᎤᏩᏒ.\nᎤᏙᎯᏳᎯᏯ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎥᎩᏅᏏᏛ ᎨᏒ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏂᎦᎵᏍᏗᎭ ᎢᏤᎲᎢ, ᎬᏔᏅᎯ ᎤᏣᏘ ᎬᏂᏗᏳ ᎨᏒᎢ, ᎤᏰᎸᏛᎢ, ᎤᏍᏆᏂᎪᏗ ᏕᎦᎸᏫᏍᏓᏁᎸᎢ, ᎠᎴ ᎤᎵᏂᎩᏛ ᏕᎦᎸᏫᏍᏓᏁᎸᎢ.\nᎢᎬᏱᏱᏉᏃ ᎢᎦ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᎨᏒ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎬᏩᎷᏤᎸ ᏥᏌ, ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ, ᎭᏢ ᏣᏚᎵᎭ ᎣᎦᏛᏅᎢᏍᏙᏗᏱ ᏣᎵᏍᏓᏴᏗᏱ ᎧᏃᎯᏰᎩ.\nᎦᏣᏄᎸ ᎦᏚᏏ ᏭᏓᏒᏍᏔᏁ, ᏚᏑᎬ ᎢᏣ ᎤᎧᎭᏛ ᏭᏕᎵᏤ.\nᏂᎦᎥᏉ ᎠᏂᏃᎮᎭ ᎾᏍᎩ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᎢᏤᎲᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎥᏝ ᎬᏩᏂᏃᎮᏗ ᎾᏍᏉ ᏱᎩ, ᎾᏍᎩ ᎩᎶ ᎤᏙᏓ ᎤᏓᎵᎢ ᎤᏓᏴᏍᏗᏱ.\nᎾᏍᎩ Ꮎ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵᎦ ᎤᏍᏆᏂᎬᏗ ᎠᎴ ᏗᎧᎿᏩᏕᎩ, ᎾᏍᎩ ᎠᏴ ᎠᎩᎨᏳᎯ, ᎠᎴ ᎠᏴ ᎠᎩᎨᏳᎯ ᎤᎨᏳᎯ ᎨᏎᏍᏗ ᎡᏙᏓ, ᎠᎴ ᎠᏴ ᏥᎨᏳᎢᏳ ᎨᏎᏍᏗ, ᎠᎴ ᎬᏂᎨᏒ ᏅᏓᏥᏯᏛᏁᎵ.\nᏗᏂᎦᏙᎵ ᏧᎧᎵᏨᎯ ᎠᏓᏲᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏗᎬᏩᏂᏲᎯᏍᏗ ᏂᎨᏒᎾ ᎠᏍᎦᏂ ᎨᏒᎢ: ᏗᏂᎶᏄᎮᏍᎩ ᏂᏚᎾᎵᏂᎬᎬᎾ ᎦᎾᏓᏅᏛᎢ; ᏧᏂᎾᏫ ᏧᎩᏌᏛ ᎠᎬᎥᎯᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎠᎩᎵᏲᎢᏍᏗ ᎨᏒ ᏧᏪᏥ,\nᎿᏉᏃ ᎤᎾᏛᏛᏁᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᎪ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᏍᎦᏯ, ᏣᏤᏍᏙ ᎯᎾᎩ ᎠᎴ ᎮᏓ, ᏦᏎᎸᎯ?\n“ᏏᏆ ᎠᏯ ᏔᎵᏁ ᎠᏦᏴ ᏃᎴ ᎡᏆ.\nᏉᎳ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎠᎴ ᎠᏂᏯᏫᏍᎩ; ᎢᏳᏃ ᎯᎠ ᎾᏍᎩ ᏥᏳᎯ ᏄᎾᏣᎥᎾ ᏱᎩ ᎥᏝ ᏴᎨᏣᏛᏂᏓ.\nᎠᏎᏃ ᎦᎶᏁᏛ ᏕᎤᎴᎯᏌᏅ ᎤᏲᎱᏒᎢ, ᎠᎴ ᏧᏓᎴᏅᏔᏅᎯ ᏄᎵᏍᏔᏅ ᎾᏍᎩ ᎤᏂᎵᏅᏨᎯ ᏥᎨᏒᎩ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎪᎯᏧᏈ ᎠᏂᏯᏫᏍᎩ ᏗᏖᏂᏙᎯ ᎤᏅᏏᏓᏍᏗ, ᎣᏍᏛ ᎤᏰᎸᎯ, ᎤᏢᎨᎢ, ᎠᎴ ᎤᏲᎱᏏᏕᎾ ᎨᏎᎢ.\nᎠᏎᏃ ᏇᏍᏓ ᎤᏁᏨᎩ ᏉᎳ ᎠᎦᏘᏗᏍᏗᏱ ᏏᏓᎵᏱ, ᎠᎴ ᎤᏩᏒ ᏂᎪᎸᎾᏉ ᎾᎿ ᏭᎶᎯᏍᏗᏱ.\nᏗᏂᏲᏟ ᏯᏂᎦᏔᎲᎾ ᏂᎦᎵᏍᏔᏂᏙᎲ ᎠᎾᏨᏏᏰᏍᎬ.\nᎣᎯᏍᏙᏗ ᎤᎾᏓᏅᏖᎢ ᏗᏂᏲᏟ ᎤᏂᏰᏣ ᏎᎦ ᎤᏂᏢᏅ.\nᎭᏩ ᏱᎨᏒᎾ ᏳᏫᎦᎷᏣ ᎡᎶ, ᏯᎴᏫᏍᏗᏍᎬᎾ ᎤᏍᎦᎢᎰ.\nᏩᎾᏗᎳᏍᎦᎶᏗ ᏥᎾᏕᏆᎳ ᎢᏗᎩᏓ ᎤᏂᏁᎫᎯᏍᏗ ᏃᎴ ᎢᎦᏛ ᏩᏥᎾᏚᏍᏗᎧᎸ ᏎᏗ ᏥᏂᏚᏍᏗᎧᎸ ᎨᏒᎢ.\nᎿᏉᏃ ᎤᎧᏛ ᏚᎾᎵᏥᏍᏇᎢ, ᎠᎴ ᎠᏍᏈᏅ ᏕᎬᏩᎾᏍᏗᏍᎨᎢ ᎠᎴ ᎠᏂᏐᎢ ᏧᏃᏰᏂ ᏕᎬᏩᎾᏍᏗᏍᎨᎢ,\nᏗᎾᎳᏫᎩ ᎠᏁᏙᎲ ᎦᏚᎲ, ᏩᏏᏓᏂ ᎦᏚᎲ ᏧᏍᏈᏯ ᏗᎦᎷᏫᏍᏓᏁᏗ ᎨᏎ.\nᎤᏙᎴᎰᏒᏃ ᎣᏏᏳ ᎠᏂᏰᎸᏍᎬ ᎠᏂᏧᏏ, ᏈᏓ ᎾᏍᏉ ᎤᏂᏴᎮᎢ. ᎾᎯᏳᏃ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᎨᏎᎢ.\nᎡᎳᏗ ᏱᎦᎢ, ᎦᏂᏴᏗ ᏥᎳᏗᏍᎬ ᏥᏐᎯ ᏃᎴ ᏥᎵᏎᎲ ᎠᏰᎵ, ᏎᏉ ᏂᏚᏍᏙ ᏗᏉᏰᏂ, ᎠᏎᎩ ᎤᏙᎯᏳ ᎦᎾᏰᎯᏍᏗ ᎬᏇᎵᏎᎮ ᏱᏙᎦᏦᏌ ᏅᏃ.\nᎪᏱᏁ ᏍᏉ ᎤᏅᎪᏤ ᏓᏆᎴᎷ.\n“ᎪᎨ ᎠᎵᏍᏆᏙᎾ ᏃᎴ ᎠᎵᏛᏓ,” ᏓᏂᏃᎩᏍᎨ \nᎤᎩᏨᏓ ᏑᎾᎴ ᎤᏂᎩᏎ ᎤᎩᏓᏟᏅᏯ ᏭᏕᎵᎬ ᎢᏣ, ᎠᏰᎵ - ᏧᎬᏩᏟ ᏐᏈᎵ ᎤᎩᎸᏔᏁ, ᎤᎾᏗᏅᏗ ᎤᏪᎵᏎ ᎠᎹᏱ ᏫᎦᎷᎬ, ᏳᏩᎩᎸᎥᏍᎬᎾᏉ ᏥᏳ.\n”ᎤᏙᎯᏳᎩ?” ᎤᏛᏁ ᎪᏱᏁᎢ, ᏰᎵ ᎤᎾᏰᎯᏍᏗ.\nᏍᎩᎾᎾ ᎢᏳᏍᏗ ᏂᎦᏛᏁᎰ ᎢᎪᎯᏓ.”\nᎾᏍᎩᏃ ᏄᏪᏒ, ᎠᏍᏓᏯ ᎤᏪᎷᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎳᏏᎳ, ᎡᎯᏄᎪᎢ.\nᏚᎾᎦᎴᏅᎲᏃ ᏓᎾᏓᏅᏖᏍᎬᎢ ᏙᎤᏁᏅᏒᎩ, ᏉᎳᏍᎩᏂᏃᏅ ᎠᏏ ᏌᏉ ᎢᎧᏁᏨᎯ ᎤᏁᏨᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᏰᎵᏉ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏥᏚᏁᏤᎴ ᏗᎩᎦᏴᎵᎨᎢ, ᎢᏌᏯ ᎠᏙᎴᎰᏍᎩ ᏧᏩᏔᏁᎢ,\nᏃᏉᏃ ᎦᎶᎯᏍᏗᏳᎳ ᏭᎴᏁ.\n”ᎮᎵᏍᎬᏉᏗ ᏤᏅᏍᏗ, ᎮᎵᏍᎬᏉᏗ ᏤᏅᏍᏗ,” ᎤᏛᏁ ᏌᏌ.\nᎤᏂᏣᏘᏃ ᏴᏫ ᎬᏩᎷᏤᎸᎩ, ᏓᎾᏘᏁᎲ ᏗᏂᏲᏅᎵ, ᎠᎴ ᏗᏂᎨᏫ, ᎠᎴ ᏧᏅᎨᏫ, ᎠᎴ ᎪᎱᏍᏗ ᎤᏍᏛ ᏗᏂᏰᎸ ᏧᏂᏲᎱᏎᎸᎯ, ᎠᎴ ᎤᏂᏣᏘ ᏅᏩᎾᏓᎴᎢ, ᎠᎴ ᏥᏌ ᏚᎳᏍᎬ ᎾᎥ ᏚᏂᏅᏅᎩ, ᏚᏅᏩᏅᎩᏃ.\nᎦᎶᎯᏍᏗᏳᎳ ᏥᏙᎬ ᏥᏯᎦᏎᏍᏗ ᏓᎭᎾᏩᎩᏍᎬ ᏅᏙ ᎠᎦᎵᏍᎬ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᏯᏆᏛᎾ.\nᏌᏉ ᎤᏲ ᎨᏒ ᎤᎶᏐᏅ; ᎬᏂᏳᏉᏃ ᎠᏏ ᏔᎵ ᎤᏲ ᎨᏒ ᏙᏛᏍᏆᎸᎯ.\nᎠᎵ ᎾᏍᎩ ᎯᎠ ᏧᏓᎴᏅᏛ, ᎢᏓᎵᏅᏟ, ᏕᎦᏟᎶᏍᏗᏍᎬ ᎠᏋᏒ ᎦᏓᏁᎢᏍᏓ ᎠᎴ ᎠᏉᎳ ᏥᏁᎢᏍᏓ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ; ᎾᏍᎩ ᏍᎩᏯᏕᎶᏆᎡᏗᏱ ᎢᏣᏓᏅᏖᏍᎬ ᎢᏥᎶᏒᏍᏙᏗᏱ ᏂᎨᏒᎾ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎾᏍᎩ ᎩᎶ ᎤᏢᏈᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏏᏴᏫ ᎦᎸᏉᏗᏍᎬ ᏅᏩᏓᎴᏃ ᎠᏡᏗᏍᎬᎢ.\nᏝᏍᎪ ᎢᏨᏒ ᎢᏥᎦᏔᎲ ᏱᏤᏲᎲᏍᎦ, ᎾᏍᎩ ᎠᏍᏚᏯ ᎦᏅᎯᏛ ᏳᏍᏘᏰᎦ ᎤᏕᎰᎯᏍᏗᏳ ᎨᏒᎢ?\nᎡᏗᎦᏔᎮᏰᏃ ᎾᏍᎩ Ꮎ ᎯᎠ ᎢᏳᏪᏛ ᏥᎩ, ᎠᏞᎢᏍᏗ ᎨᏒ ᎠᏴ ᎠᏆᏤᎵᎦ, ᎠᏴ ᏓᎦᎫᏴᎯ, ᎠᏗᎭ ᏱᎰᏩ. ᎠᎴ ᏔᎵᏁᎢ, ᏱᎰᏩ ᏙᏓᎫᎪᏓᏁᎵ ᏧᏤᎵ ᏴᏫ.\nᎿᏉᏃ ᎠᏆᏅᏓᏛᎩ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎢ, ᎯᎠ ᏥᏄᏪᏒᎩ; ᏣᏂ ᎤᏙᎯᏳᎯ ᎠᎹ ᏓᏓᏬᏍᏗᏍᎬᎩ, ᏂᎯᏍᎩᏂ ᎦᎸᏉᏗᏳ ᎠᏓ-ᏅᏙ ᏙᏓᏰᏣᏬᏍᏔᏂ.\nᏔᎳᏚᏃ ᏕᎪᏢᏒ ᏗᏍᏚᏗ ᏔᎳᏚ ᏓᎬᎾᎢᏳᎾᏍᏗ ᏕᎪᏢᏛᎩ; ᏌᏉ ᎠᏍᏚᏗ ᏌᏉ ᏓᎬᎾᎢᏳᏍᏗ ᎪᏢᏛᎩ ᎡᏓᏍᏗᏱ ᎤᏜᏅᏛ ᎦᏚᎲ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᏢᏛᎩ, ᏧᎸᏌᏛ ᎠᏓᎨᏗ ᎾᏍᎩᏯᎢ.\nᎥᏝ ᎬᏩᏓᏍᏕᎸᏗ ᏱᎩ ᎤᏙᎯᏳᎯ ᎠᏆᏢᏈᏍᏗᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏥᏁᎢᏍᏔᏂ [ᎩᎶ] ᎤᏁᎳᏫᏎᎸ ᎠᎴ ᎤᎬᏫᏳᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎢ.\nᎠᎴ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵᎦ ᎤᏣᏔᏅᎯ ᎡᏉᎯᏳ ᎨᏒᎩ, ᎤᎵᏠᏯᏍᏛᎩ ᎦᎶᏁᏛ ᏥᏌ ᏥᏲᎢᏳᏗ ᎨᏒ ᎠᎴ ᏥᎨᏳᎢ, ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ.\nᎢᏳᏃ ᎩᎶ ᎾᎩᏯᎥᎾ ᏥᎨᏐᎢ, ᎠᎦᏓᎡᎪᎢ ᎾᏍᎩᏯ ᎤᏩᏂᎦᎳᏅᎯ ᏧᎾᏓᎡᎪᎢ, ᎠᎴ ᎬᏴᏍᎪᎢ; ᏴᏫᏃ ᏓᏂᏟᏏᏍᎪᎢ, ᎠᏥᎸᏱᏃ ᏫᏚᎾᏕᎪᎢ, ᎠᎴ ᏓᎪᎲᏍᎪᎢ.\nᏣᏂᏃ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ, ᏔᏕᏲᎲᏍᎩ, ᎣᏥᎪᎥᎩ ᎠᏏᏴᏫ ᎠᏂᏍᎩᎾ ᏕᎦᏄᎪᏫᏍᎬᎩ ᏕᏣᏙᎢ ᎬᏗᏍᎬᎩ; ᎣᏥᏅᏍᏓᏕᎸᎩᏃ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏂᎩᏍᏓᏩᏕᎬᎾ ᎨᏒᎢ.\nᎾᏍᎩᏍᎩᏂ ᏥᏌ ᎢᏥᎶᏁᏔᏅᎯ ᎨᏒ ᏥᏥᏯᎠ, ᎠᎴ ᎤᏚᎸᏗ ᏂᏣᎵᏍᏓᏁᎲᎾ ᏥᎩ ᎩᎶ ᎢᏤᏲᏗᏱ, ᎾᏍᎩᏰᏃ ᏥᏌ ᎢᏥᎶᏁᏔᏅᎯ ᏥᏤᏲᎲᏍᎦ ᏂᎦᎥᎢ, ᎠᎴ ᎤᏙᎯᏳᏒ ᏥᎩ, ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎢᏤᏲᎲᏍᎬ ᎡᏥᏯᎡᏍᏗ.\nᎾᏍᎩ Ꮎ ᎦᎸᏉᏙᏗ ᎤᎵᏍᏈᏗ, ᎾᏍᎩ ᏥᏗᎸᏉᏗᏍᎪᎢ, ᏝᏍᎪ ᎾᏍᎩ ᎢᏓᎵᎪᎲᏍᎬ ᏱᎩ ᎦᎶᏁᏛ ᎤᎩᎬ ᎢᏓᏗᏔᏍᎬᎢ? ᎦᏚ ᏥᏗᎬᎭᎷᏯᏍᎪᎢ, ᏝᏍᎪ ᎾᏍᎩ ᎢᏓᎵᎪᎲᏍᎬ ᏱᎩ ᎦᎶᏁᏛ ᎠᏰᎸ ᎢᏓᎵᏍᏓᏴᏗᏍᎬᎢ?\nᎾᏍᎩ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏆᏎᎵᏔᏅᎩ ᎠᎩᏔᎳᏬᏍᎬ, ᎾᏍᎩ ᎤᏂᏴᏍᏗᏳ ᏂᎨᏒᎾ ᎨᏒ ᎠᏆᏤᎵ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏄᏪᏒ, ᎠᏏᏴᏫ ᏗᏓᏂᏱᏍᎩ ᎾᎥ ᎦᏙᎩ ᎤᏏᏛᏂᎸᎩ ᏥᏌ, ᎯᎠ ᏄᏪᏒᎩ; ᎾᏍᎩᏍᎪ ᏂᏪᏎ ᎯᏁᏤᎭ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᏆᎴᏗ ᎾᏍᎩ ᎤᏛᎦᏅ ᎤᏄᎪᏫᏒᎩ ᏥᏌ, ᎠᎴ ᎤᏪᏅᎩ ᏗᎫᎪᏙᏗᏱ ᎦᏍᎩᎸᎢ, ᏅᏯ-ᎠᏰᏍᏓᎥ ᏕᏅᏙᎥᎢ, ᎠᏂᏧᏏᏍᎩᏂ ᎤᏂᏬᏂᎯᏍᏗ ᎨᏒ ᎨᏆᏓ ᏕᎤᏙᎥ.\nᎢᏓᎵᏅᏟ, ᏴᏫ ᎤᏂᏁᎢᏍᏗ ᏥᏁᎦ; ᎾᏍᏉ ᏴᏫᏉ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏛ ᎠᏍᏓᏱᏛᎯ ᏱᎩ, ᎥᏝ ᎩᎶ ᏴᎬᏲᏍᏓ, ᎠᎴ ᎥᏝ ᎠᎦᏁᏉᏨ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᎠᏓᏅᏖᏍᎬ ᎠᎦᏴᎵᎨᎢ ᎾᏍᎩ ᏅᏛᎩᏅᏏᏛ, ᎾᏍᎩ ᏂᎦᏛ ᏗᎩᏲᎯᏎᎸᎯ ᎨᏒᎢ, ᎪᎱᏍᏗ ᎠᎩᏲᎮᏎᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᏗᎦᎴᏙᏗᏱᏍᎩᏂ ᎤᎵᏍᏆᎸᏗ ᎢᎦ ᎨᏎᏍᏗ.\n”ᎤᏬᏚᏨ ᏧᏪᏥ ᏗᎦᏅᏙᏗ,” ᎤᏛᏁ ᏫᎵᎻ, ᎤᎵᎮᎵᏍᏗ, ᎤᏩᏌ ᎤᏬᏒᏅ ᏥᎨᏐ ᏄᎵᏍᏔᏁᎮᎢ.\nᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎤᏍᏆᏗᏍᏗᏱ, ᎤᏓᏁᎵᏌᏛ ᎢᏳᎵᏍᏙᏗᏱ ᏂᎦᎥ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎣᏥᏃᎯᎵᏙᏰᏃ ᏃᎴ ᎡᎶᎯ ᏓᏲᏤᏏ ᎣᎬᏌ ᏂᏓᏓᏲᏨᏁᎵ ᏓᏏᎳᏛᎢ.\nᎤᏬᎯᏨᏃ ᎦᏂᎳ ᎣᎩᏁᏅ, ᎠᎴ ᎠᏏᏉ ᏃᎩᎶᏐᏅᎾ ᎨᏒ ᎾᏓ, ᏟᏗ ᎭᏫᏂᏗᏢ ᏬᎩᏅᏍᏔᏅᎩ, ᏌᎳᎼᏂ ᏧᏳᎪᏗ, ᎦᏃᎸᎥᏍᎬᏰᏃ ᎣᎩᏲᏍᏙ ᏓᏁᎲᎩ.\nᎠᏒᎬ ᎤᎾᏨᏏᏙᎸ ᏓᎩᏌᏬᎸᏍᏔᏅ ᏗᏥᎦᏙᎵ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᏍᏕᎾ. ᎤᏂᏄᎪᏨᏃ, ᏏᏆ ᏑᎾᏓᏡᎩ ᏫᏚᏂᏴᎴᎢ. ᎠᎴ ᎬᏂᏳᏉ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᏏᏆ ᎠᏯᏄᎵᏳ ᎤᎾᎵᏎᎢ, ᏭᏂᎦᏐᎠᏎ ᎦᏁᏡᎩ ᎬᏒᎢ, ᎥᏓᏝ ᏭᎾᎵᏔᏗᏅᏎᎢ, ᎠᎴ ᎠᎹᏱ ᏚᏂᎵᏬᏤᎢ.\nᎦᎪᏰᏃ ᎢᏳᏍᏗ ᏴᏫ ᏧᏓᎴᏅᏛ ᏴᏫ ᏧᏤᎵᎦ ᎠᎦᏔᎭ? ᎤᏩᏒᏉᏍᎩᏂ ᏴᏫ ᎤᏓᏅᏙ ᎾᏍᎩ ᏧᏯᎠ. ᎾᏍᎩᏯ ᎾᏍᏉ ᏧᏌᎴᏅᏛ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎥᏝ ᎩᎶ ᏯᎦᏔᎭ, ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᏩᏒ.\nᎢᏥᏍᎦᏯ, ᏕᏥᎨᏳᏎᏍᏗ ᏗᏣᏓᎵᎢ, ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏂᏆᏘᎮᏍᏗ.\nᎤᏏᎾᏛᏎ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏝᏍᎪ ᏱᏥᎵᏓᏍᏗᎭ, ᏱᏅᏗᎦᎵᏍᏙᏗᎭ ᏂᏦᎵᎬᎾ ᎨᏒ ᎪᏪᎵ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎵᏂᎩᏗᏳ ᎨᏒᎢ?\nᎤᎾᎵ ᎤᏚᎵᏍᎨ---ᎩᎶ ᏗᎾᏁᎶᎲᏍᎩ.\nᎡᎵᏃ Ꮲ ᏦᎢ ᎢᏳᏟᎶᏓ ᎢᏴ ᎠᏂᎩᏓ ᏛᏓᎾᏅ.\nᎧᏁᏍᎬ ᏗᏧᎦᏔᏁᎢ ᏧᏍᏆᏴᏍᏗ.\nᎾᏍᎩᏯᏍᎩᏂ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᎾᏍᎩᎨᏥᏁᎢᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏛᏂᎪᎯ; ᎠᎴ ᎾᏍᎩ Ꮎ ᎤᎾᏛᎦᏅᎯ ᏂᎨᏒᎾ ᎨᏒ ᎾᏍᎩ ᏛᏃᎵᏥ.\n“ᏙᎢᏳᏍᏗ ᏄᏍᏆᏂᎩᏗ ᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ?” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎢᎾᎨᎢ ᎠᏁᎯ ᏒᎧᏔ ᏕᏧᎬ ᎭᏫᏂᏣ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎤᏁᏓᏍᏗ, ᏍᏈᏍᏓ ᎠᏂᎳᎨᏰ ᎦᏙᎯ ᏧᏂᏍᏗ ᏒᎧᏔ, ᎤᏒᎯ ᎤᏂᏃᏕᎾ ᏃᎴ ᏌᏌ ᏓᏂᎩᏍᎨᎢ ᏃᎴ ᏧᎳ ᎠᏂᎷᎨᎢ ᏓᎾᎵᏒᏍᏗᏍᎨᎢ.\nᎠᎴ [ᎦᏁᏌᎢ] ᏥᏴ ᎦᎸᎳᏗᏢ ᎠᏂᎩᎷᏫ ᎦᎸᏉᏗᏳ ᎢᏯᏅᏁᎯ, ᎾᏍᎩ ᏧᏄᏢᏕ ᎦᏁᏌᎢ ᎫᏢᏗ; ᎾᏍᎩ ᎤᎬᏩᎵ ᎥᏝ ᎪᎯ ᎨᏒ ᏂᎦᏛ ᎦᏁᎢᏍᏙᏗ ᏱᎩ.\nᎿᏉᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᏚᎴᏅ ᎠᎴ ᏂᎦᏛ ᎬᏩᎵᎪᏁᎯ, ᎾᏍᎩ ᎠᏂᏌᏚᏏ ᏧᎾᏙᎢᏛ ᏥᎩ, ᎤᏂᎧᎵᏤ ᎤᏂᏔᎳᏬᏍᎬᎢ;\nᏎᎦ ᎡᎳᏗ ᏫᏘᏅᏥᎵ ᎡᎵᏍᏗ, ᎠᏎᏃ ᎠᎧᏁᎸ ᏩᎫᏂᏱ, ᏃᏗ ᎦᏣᏄᎳ ᎠᎵᏖᎸᏂᏍᏗ ᏙᏱ ᎢᏴ, ᎤᏃᎴ ᎦᏒᎳᏍᎪ ᏘᎦᏙᎵ ᏃᎴ ᏘᎴᏂ ᏃᎴ ᏍᏘᏰᎬᎢ.\nᎠᎴ ᎾᏍᎩ ᎠᏂᎩᎵᏲᎬ ᏚᎦᏒᏍᏛ ᏓᎴᎲᏍᎦ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ; ᎠᎴ ᎥᏝ ᎬᏩᎾᏣᏪᏐᎸᏍᏙᏗ ᏱᎩ, ᎢᎦ ᎠᎴ ᎡᏃᏱ, ᎾᏍᎩ Ꮎ ᏅᎩ-ᏗᎦᏅᏌᏗ ᎠᎾᏓᏙᎵᏍᏓᏁᎯ ᎠᎴ ᎾᏍᎩ ᏣᎦᏟᎶᏍᏔᏅᎯ, ᎠᎴ ᎾᏂᎥᏉ ᎩᎶ ᎾᏍᎩ ᏚᏙᎥ ᎨᎪᏪᎶᏔᏅᎯ.\nᎠᎴ ᎤᏅᏁ ᎤᏩᏒ ᎤᏤᎵ ᎢᏤ ᏗᏓᏂᏐᏗᏱ, ᎾᏍᎩ ᎤᏲᎯ ᎤᏔᎴᏒᎢ; ᎡᏆᏃ ᏅᏯ ᎦᎶᎯᏍᏗᏱ ᎠᏤᎵᏍᏛ ᏭᏪᏌᏆᎴᎸ ᎤᏓᏅᏎᎢ.\nᎦᎶᏁᏛᏰᏃ ᎤᏓᎨᏳᏗ ᎨᏒ ᏙᎦᏘᏁᎦ; ᎯᎠᏰᏃ ᏄᏍᏗ ᏙᏧᎪᏗᎭ, ᎾᏍᎩ, ᎢᏳᏃ ᎠᏏᏴᏫ ᎾᏂᎥ ᏱᏚᏲᎱᎯᏎᎸ, ᎿᏉ ᎾᏍᎩ ᎾᎯᎥ ᏚᏂᏲᎱᏒᎩ;\nᎦᎵᏦᏕ ᏭᏴᎴ ᎤᏃᎴ ᏃᎴ ᎫᏘᏍᎬ ᎠᎿᏬᏍᏗ ᎤᎿᏬᎡ. \n“ᎤᏃᎴ ᎠᏲᏙᏗ ᎠᎩᎸᏗᏍᎩ,” ᎤᏛᏁ ᏌᎳᏓ.\nᏃᎴ ᏍᏉ, ᎠᎩᎵᏬᎢᏍᏗ ᎨᏎᏍᏗ, ᎨᏍᏗ ᏯᏆᏚᎵ ᎥᎩᏂᏐᏗ ᎥᎩᎾᏌᎢ.\nᎬᏂᏳᏉ, ᏦᎢᏁ ᎠᏆᏛᏅᎢᏍᏗ ᏫᏨᎷᏤᏗᏱ; ᎥᏝ ᎠᎴ ᎦᎨᏛ ᏱᏅᎨᏨᏴᎦ; ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᎢᏥᎲ ᏱᎩᏲᎭ, ᏂᎯᏍᎩᏂ ᎢᏨᏲᎭ; ᏗᏂᏲᎵᏰᏃ ᎥᏝ ᏧᏂᎦᏴᎵᎨ ᏧᎾᏓᏁᎳᏁᏗ ᏱᎩ, ᎠᏂᎦᏴᎵᎨᏍᎩᏂ ᏧᏁᏥ ᏧᎾᏓᏁᎳᏁᏗ ᎨᏐᎢ.\nᎠᎴᏬ ᎤᎩᏨᏛ ᏣᏂ ᎦᏙᎬᎩ, ᎠᎴ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ ᏓᏂᏙᎬᎩ.\nᏣᏁᎳ ᎢᎦ.\nᏚᏁᏤᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎠᏂᏆᎵᏏ ᎤᎾᏤᎵ ᎠᎪᏙᏗ ᎢᏤᏯᏙᏤᎮᏍᏗ, ᎠᎴ ᎡᎶᏗ ᎤᏤᎵ ᎠᎪᏙᏗ.\nᎠᎴ ᎾᏍᎩ ᎠᏂ ᎤᏙᎯᏳᎯ ᏂᎦᎵᏍᏗᎭ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ; ᎩᎶ ᎠᏫᏍᎪᎢ ᏅᏩᏓᎴᏃ ᎠᏍᎫᏕᏍᎪᎢ.\nᎮᎵᎠᏍᎪᏃ ᎨᏍᏗ ᎠᏆᏓᏅᏖᏙᏗ ᏱᎩ ᏄᏍᏛ ᏲᎾ ᎤᏤᏍᏙ?”\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᏱᎨᏣᎭ ᏰᎵ ᎠᏴ ᎪᎱᏍᏗ ᏍᏋᏁᏗᏱ, ᎦᎸᎳᏗ ᏅᏓᏰᏣᎵᏍᎪᎸᏓᏁᎸᎯ ᏂᎨᏒᎾ ᏱᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ, ᎠᏴ ᏗᎩᏲᏒᎯ ᏂᎯ ᏗᏣᏲᎯᏎᎸᎯ ᎤᏟ ᎡᏉᎯᏳ ᎤᏍᎦᏅᏨ.\nᏗᏧᎪᏓ ᎢᏨᏒ ᎨᏒᎢ; ᎤᎵᎶᎲᏍᎦᏍᎪ ᎠᎨᏴ ᎤᏁᎳᏅᎯ ᏯᏓᏙᎵᏍᏓᏁ ᏄᎵᏍᏚᎸᎾ?\nᎦᎸᎳᏗ ᎠᏯᏖᏃ ᏫᏂᏚᏩᏁᎴᎢ ᎠᎬᏱᏣ ᏧᎳᏏᏕᎾ ᏭᎦᏖᏃᎴᎢ.\nᎠᏂᏫᏒᎥᏍᎩ, ᎠᏆᏛᏅ.\nᎠᏯᏲᎪ ᎨᏍᏗ ᏱᏥᏏᎾ ᏍᎩᎾᎾ ᎢᏯᏆᏛᏁᏗ.\nᏃᏗ ᎦᏂᏴᏗ ᎠᏍᏕᏯᏓ, ᎠᏎ ᏴᏍᎦᎢ ᏃᎴ ᎠᎫᎸᏔᏂᏕᎾ ᏱᎩ. \nᏧᏂᏍᏗ ᏓᎾᏦᎭᏱᎲ ᎤᎵᏍᏙᎭᏴᏗ, ᏣᏂᎦᏴᎵ ᏚᏂᏏᏩᏍᎬ, ᎭᏫᏂ ᎤᎾᏛᎶᏗ ᎤᏃᏴᎬ.\nᎾᏍᎩ ᏥᏓᎦᏘᎴᎦ ᎠᎴ ᎦᎸᎳᏗᏢ ᏥᎾᏓᏛᏁᎭ ᏂᎦᎥ ᎤᎾᎳᏅᎯ ᎨᎪᏎᏗ ᏥᎩ, ᎠᎴ ᎨᎦᏓᏙᎵᏍᏓᏁᎯ ᏥᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎾᏍᎩᏯ ᎤᏬᎳ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎤᏩᏒ ᎬᏂᎨᏒ ᎾᏓᏛᏁᎭ ᎤᏁᎳᏅᎯ ᎨᏒᎢ.\nᎤᏍᏆᎸᎲᏃ ᎾᎯᏳ ᎨᏒᎢ, ᎤᏂᏏᏁᎢ, ᎠᎴ ᎾᏍᏉ ᏔᎳᏚ ᎢᏯᏂᏛ ᎨᏥᏅᏏᏛ.\nᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ, ᏥᏌ ᎤᏩᏝᎥ ᎦᏙᎬᎩ; ᎠᏎᏃ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎥᏝ ᏯᏂᎦᏔᎮ ᏥᏌ ᎨᏒᎢ.\nᎠᎴᎧᏂ ᏧᏙ ᏂᎦᏛ ᎡᏍᎦᏂ ᏣᏁᎭ? ᎦᏙᏃ ᎤᎵᏍᏙᏔᏅ ᎯᎠ ᏂᎦᏛ ᏧᏪᎭ?\nᎤᎵᏒᎲ ᎤᏍᏗ ᎦᎷᏯᏍᏗ ᏃᎴ ᎠᏰᎳᏍᏗ ᏃᎴ ᎤᎦᏛᏅ ᏂᏕᎦᎨᏒ ᏃᎴ ᏂᏕᎪᏍᏔᏴ. ᏩᏥᎳ ᏃᎴ ᎤᏩᎾᏕᏍᎩ ᎨᏴ ᏅᏯ ᎬᏘ ᎪᏍᏔᏱ ᎢᏳᏩᏁᎸ.\nᏚᎴᏅᏃ ᏧᏪᏅᏒ ᏭᎶᏎᎢ.\nᏚᏛᏛᏁᏃ ᏗᏃᏪᎵᏍᎩ, ᎦᏙ ᏕᏣᏛᏛᎮᎸᎥᏍᎦ ᏚᏪᏎᎴᎢ?\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏛᎦᏅ ᎤᏣᏔᏅᎯ ᎤᏂᏍᏆᏂᎪᏒᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ ᎦᎪᏃ ᏰᎵ ᏯᏥᏍᏕᎸ?\nᎠᏎᏃ ᎠᏆᏁᎳᏅᎯ ᎢᏥᏁᏗ ᎨᏎᏍᏗ ᏂᎦᎥ ᎢᏥᏂᎬᏎᎲᎢ, ᎾᏍᎩᏯ ᎤᏪᎿᎢᏳ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎦᎶᏁᏛ ᏥᏌ ᎢᏳᏩᏂᏌᏛ.\nᎠᏎᏃ ᎡᏥᎦᏔᎭ ᏄᏍᏛ ᎾᏍᎩ ᎠᏥᎪᎵᏰᎥᎢ, ᎾᏍᎩ ᎩᎶ ᎤᏪᏥ ᎤᏙᏓ ᏣᏍᏕᎵᏍᎪ ᎾᏍᎩᏯ ᎠᎩᏍᏕᎸᎯᏙᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᎵᏱᎸᏍᏗᏱ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ.\nᎯᎠᏰᏃ ᎾᏍᎩ ᏥᎦᏔᎭ, ᎿᏉ ᎠᎩᏁᎴᏍᏗ, ᎤᏂᎬᎥᏍᎩ ᏩᏯ ᏓᎨᏣᏓᏑᏴᏂ, ᏂᏓᏂᏙᎵᎬᎾ ᎨᏎᏍᏗ ᏑᎾᏓᏡᎩ ᎨᏒᎢ.\nᏕᎾᏓᎪᎬᏳ ᏌᎳᏓ ᎯᎶᏅᎮᏍᎩ.\nᏄᏓᎴ ᎦᏚᎲ ᎤᏃᏒᎲ ᏧᎾᏗᏔᏍᏗ, ᎭᎾ ᏧᏓᎴᏅᎲ ᎣᎯᏍᏙᏗ ᏩᎦ ᎭᏫᏯ ᎠᎩᏍᏗ ᎠᎾᏗᏍᎬ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏉᎯᏳᎮ, ᏂᎬᎾᏛ ᎠᏁᎰ ᏩᎦ ᎤᏐᏱ ᎭᏫᏯ ᎭᏫᏂ ᏗᏂᏰᎸ.\nᏅᎩ ᎤᎾᏓᏅᏂ ᎠᏂᏲᏍᎩ, ᎦᏰᎵᏍᏗᏱᎩ ᎤᎾᏓᏅᏂ ᏅᎩ ᎢᏯᏂ.\nᎭᏫᏂ ᏚᎭᏄᏮ ᎤᏩᏌ, ᏧᏍᏆᏅᎾ ᎦᏚᎢ ᎤᏬᏢ, ᎦᏌᎴᏅ ᎤᏐᏓᎸ ᏱᏚᎧᏁᎲᎾ ᏧᎳᏑᎶ.\nᎢᏥᎦᏔᎭᏰᏃ ᎣᏂ ᎢᏴᏛ ᎣᏍᏛ ᎢᏯᎦᏛᏁᏗᏱ ᏧᏚᎵᏍᎨ ᏣᏥᏐᏅᎢᏍᏔᏁᎢ; ᎥᏝ ᏰᏃ [ᎤᏙᏓ] ᎤᏓᏅᏛ ᎬᏩᏁᏟᏴᏍᏗ ᎨᏒ ᏳᏩᏛᎮᎢ, ᎤᎵᏏᎾᎯᏍᏗᏳᏍᎩᏂᏃᏅ ᎠᎴ ᏗᎬᎦᏌᏬᎢᎯ ᎤᏲᎴᎢ.\n”ᎭᏫᏂ ᎭᏛᎵᎦ!” ᎤᏛᏁ ᏌᎳᏓ, ᎤᏰᏥᏍᎩ.\nᏝᏍᎪ ᎡᏆᎭᎻ ᎢᎩᏙᏓ ᏳᏚᏓᎴᏍᏔᏁ ᏚᎸᏫᏍᏓᏁᎲᎢ, ᎤᎵᏍᎪᎸᏔᏅ ᎤᏪᏥ ᎡᏏᎩ ᎠᏥᎸ ᎨᎳᏍᏗᏱ?\n”ᎦᏙᏃ ᏱᎦᎷᎬᎾ ᏥᎩ ᏲᎾ ᎤᏤᏍᏙ?” ᎤᏪᎵᏎ.\nᏃᏉ ᎾᎥᏂ ᏛᏗᏏ ᏓᏆᎴᎳ ᎠᏌᏅᏙᏗ ᎤᎩᎸᏛ ᏍᎩᎾᎾ ᏅᎩ ᏗᎦᏅᏌᏗ.\nᏧᏓ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᎷᏈᏂ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ. ᎦᏗ ᎠᏂᎳᏍᏓᎸ ᏗᎪᏣᎴᏛ ᏔᎳᏚ ᎢᏯᎦᏴᎵ ᏕᎨᏥᏰᎸᏔᏅᎩ.\nᏕᏧᎬ?\n“ᏤᏍᏗ ᏱᏣᎸᏂᏗᏍᎨᏍᏗ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎠᏂᏔᎵ ᎠᏂᎨᏴ ᎢᏧᎳᎭ ᎠᏂᏍᏙᏍᎨᏍᏗ; ᎠᏏᏴᏫ ᎠᏥᏯᏅᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎠᏥᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ! ᏕᏦᏢᎯᏏᏍᎪᏰᏃ ᎠᎾᏙᎴᎰᏍᎩ ᏕᎨᏥᏂᏌᎲᎢ, ᎠᎴ ᏗᏥᏙᏓ ᏕᎤᏂᎸᎩ.\nᎤᏁᎳᏅᎯᏰᏃ ᎥᏝ ᎪᎱᏍᏗ ᎤᏄᎸᏗ ᏱᎨᏎᏍᏗ.\nᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎠᏴ ᎡᎵᏆ ᎠᎴ ᎣᎻᎦ, ᎢᎬᏱᏱ ᎨᏒ ᎠᎴ ᎤᎵᏍᏆᎸᏗ ᎨᏒᎢ; ᎠᎴ ᏄᏍᏛ ᎯᎪᏩᏘᏍᎬ ᎰᏪᎸᎦ ᎪᏪᎵᎯ ᎠᎴ ᏫᎩᏅᎥᏏ ᏧᎾᏁᎶᏗ ᎦᎵᏉᎩ ᏄᎾᏓᏡᎬ ᎡᏏᏱ, ᏫᎩᏅᎥᏏ ᎡᏈᏌ ᎠᏁᎯ, ᎠᎴ ᏑᎹᏂ, ᎠᎴ ᏆᎩᎹ, ᎠᎴ ᏓᏱᏓᎵ, ᎠᎴ ᏌᏗᏏ, ᎠᎴ ᏈᎵᏕᎵᏈ, ᎠᎴ ᎴᎣᏗᏏᏯ.\nᎤᏡᏗᏍᎩᏃ ᏧᏃᏁᎸᎯ ᎨᏎ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ ᎯᎠ ᎢᏳᏪᏒᎯ ᎨᏎᎢ; ᎩᎶ ᏥᏯᏚᏣᎳᏅᎭ ᎾᏍᎩ ᎨᏎᏍᏗ, ᎠᏍᏓᏯ ᏕᏥᏂᏴᎲᎭ.\nᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ ᏓᎧᎿᏩᏗᏙᎮᏍᏗ ᏩᏓᏅᏙ. ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ. ᎡᎺᏅ.\nᎩᎶ ᏧᎸᏉᏙ ᎢᎦ ᎤᎬᏫᏳᎯ ᎦᎸᏉᏓᏁᎰᎢ; ᎩᎶᏃ ᏄᎸᏉᏛᎾ ᏥᎨᏐ ᎢᎦ, ᎤᎬᏫᏳᎯ ᎦᎸᏉᏗᏍᎪ ᏄᎸᏉᏛᎾ ᎨᏒᎢ. ᎩᎶ ᏣᎵᏍᏓᏴᎲᏍᎪᎢ, ᎤᎬᏫᏳᎯ ᎠᎵᏍᏓᏴᎾᏁᎰᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎠᎵᎮᎵᏤᎰᎢ; ᎠᎴ ᎩᎶ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᏥᎨᏐᎢ, ᎤᎬᏫᏳᎯ ᎦᎸᏉᏙᏗᏍᎪ ᎾᎵᏍᏓᏴᎲᏍᎬᎾ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎵᎮᎵᏤᎰᎢ.\nᎢᎾᏧ ᏫᎦᎶᎯᏍᏗ?\nᎬᏂᏳᏉ ᏎᏓᏂ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏁᎳ ᏅᏓᎦᏥᏴᏁᎵ, ᎾᏍᎩ Ꮎ ᎣᏥᏧᏏ ᏣᎾᏗᎭ, ᎠᏎᏃ ᎾᏍᎩ ᏄᎾᏍᏛᎾ ᏥᎩ, ᎠᎴ ᏣᎾᏥᎪᎥᏍᏚᏉ, ᎬᏂᏳᏉ ᎤᏂᎷᎯᏍᏗᏱ ᏅᏓᎦᏥᏴᏁᎵ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏂᎪᏍᏗᏱ ᏕᏣᎳᏍᎬᎢ, ᎠᎴ ᎤᏂᎦᏙᎥᏍᏗᏱ ᎬᎨᏳᎢᏳ ᎨᏒᎢ.\nᏃᏗ ᏐᏉ ᏗᎫᎪᏗᏍᎩ ᎤᏴᎵᎴ ᎠᏦᏴᎢ ᏗᎦᏁᎯ ᏗᏓᏔᎶᎯᏍᏗ.\nᏔᎵ ᏧᏙᏓᏆᏓ ᏥᏯᎥ ᎠᏥᎳ ᏓᏆᎴᎳ ᎦᏣᏄᎳ ᎠᏓᏏᏒ, ᎯᎸᎢᏴ ᏔᎵᏍᎪ ᎢᏳᏥᎶᏓ ᎠᏓᏏᏒ, ᎦᏂᏍᏚᎩ ᎠᏰᎵ ᏧᎾᏦᎯᏍᏗ ᎢᏳᏓᏅᎯᏓ.\nᏕᎫᎪᏓ ᎢᏯᏆᏛᏁᏗᏱ, ᎾᏍᎩ ᎥᎩᏌᏕᏒ ᎠᏆᎦᏌᏯᏍᏗᏕᎩ ᎨᏒ ᏗᎦᎬᏆᏓᏂᎸᎢᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ ᏓᏂᏁᎸᎢ.\nᎾᎿᏃ ᏫᎤᏪᏅ, ᎠᏂᏔᎵ ᏅᏩᎾᏓᎴ ᎠᎾᎵᏅᏟ ᏚᎪᎮᎢ, ᏥᎻ ᏤᏈᏗ ᎤᏪᏥ ᎤᏅᏟᏃ ᏣᏂ, ᏤᏈᏗ ᎤᏂᏙᏓ ᏥᏳᎯ ᎤᎾᏣᎡᎢ, ᏓᏃᏢᎯᏏᏍᎨ ᏧᏂᎦᏯᎷᏗ; ᏫᏚᏯᏅᎮᏃ.\nᏑᏓᎵᏁᏃ ᎧᎸᎢ ᏗᎧᎿᏩᏗᏙᎯ ᎨᏈᎵ ᎤᏁᎳᏅᎯ ᎤᏓᏳᏅᏏᏛ ᎤᎷᏤ ᎦᏚᎲ ᎨᎵᎵ ᎾᏎᎵᏗ ᏧᏙᎢᏛ,\nᎤᏣᏘᏅ ᎢᏣ ᏫᏥᎦᏘ ᎤᏛᏅ ᎦᎷᏯᏍᏗ.\n”ᏍᎩᏗ ᏂᏥᏫ, ᏍᎩᏗ ᏂᏥᏫ,” ᎤᏛᏁ ᏌᏌ.\nᎾᎥ ᏂᏄᎾᏓᎸ ᏃᎴ ᎤᏗᎴᎩ ᎨᏒ ᎪᎨ. ᎦᏲᏟ ᏒᏃᏰ ᏙᏌ ᏳᎾᏕᏙᏛᎾ ᏱᎩ, ᎣᎯᏍᏙᏗ ᎠᎩᏰᎸᎲ ᏙᏱᏨ ᎠᎩᏢᏗ ᎠᏲᏓᏌᎲ, ᎦᎦᏙᏍᏛ ᏅᏙ ᎤᏒᎯ ᎡᎯ, ᎠᎹᏱ ᎤᏓᏴᎳᏛ ᏃᎴ ᎠᏙ ᎾᎥ ᎣᏥᎶᏍᎬ.\nᏯᎵᏖᎸᎲᏍᎬᎾ ᎤᏬᏞ ᎤᏛᎦᏍᏕ ᎠᏂᏬᏂᏍᎬ ᏴᏫ.\nᎠᏂᏴᏫᏯ ᏗᏂᎭᏲᎯ ᏱᏕᎬᏂᎷᎦ ᎠᏂᎨᏯ ᏃᎴ ᏗᏂᏲᏟ, ᎠᏂᏲᏍᎩ ᏍᏉ ᏰᎵᏉ ᏁᎳᎩᏉ ᏯᏁᎳ.\n”ᎣᏍᏓ ᎤᏒᎯ ᏫᎵᎻ!”\nᎠᎴ ᏧᎦᎪᏔᏅᎯ ᏥᎩ ᏴᏫ ᏌᏉ ᎢᏧᏂᏲᎯᏍᏗᏱ, ᎣᏂᏃ ᏗᎫᎪᏙᏗ ᎢᎦ ᎨᏒᎢ;\nᎠᏂᏍᎦᏯᏃ ᎤᏂᏍᏆᏂᎪᏎᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ; ᎦᏙ ᎤᏍᏗ ᎯᎠ ᎠᏍᎦᏯ, ᎾᏍᏉᏰᏃ ᎤᏃᎴ ᎠᎴ ᎥᏓᎵ ᎢᎬᏬᎯᏳᎲᏍᎦ.\nᏂᎦᏓᏗ ᏓᏍᏆᏚᎸ, ᏩᏴᏍᏗ, ᎠᏍᏚᏗ ᎦᎶᎯᏍᏗ, ᎤᏐᏱᏉ ᏱᏓᎦᏔᏍᏔᎾ.\nᏣᏓᎦᏌᏍᏕᏍᏗ ᏨᏒ ᎠᎴ ᏄᏍᏛ ᏕᎭᏕᏲᎲᏍᎩᎢ, ᎾᏍᎩ ᏕᎯᏍᏓᏩᏗᏎᏍᏗ; ᎾᏍᎩᏰᏃ ᎿᏛᏁᎲ ᏨᏒ ᏔᏓᏍᏕᎸᎯ ᎠᎴ ᎾᏍᏉ ᎾᏍᎩ Ꮎ ᎨᏣᏛᏓᏍᏓᏁᎯ ᏙᏘᏍᏕᎸᎯ.\nᎤᏔᏍᎩᏎ ᎤᏲᏤ, ᏃᏗ ᎤᏲ ᎠᏒᎩ.\nᎿᏉᏃ ᎤᏂᏔᏲᎴ ᎤᎬᏫᏳᎯ; ᎤᏁᎳᏅᎯᏃ ᏚᏪᎧᏁᎴ ᏐᎳ ᎩᏌ ᎤᏪᏥ ᏇᏂ ᏧᏴᏫ, ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎢᎪᎯᏛ.\nᎠᎴ ᏂᎦᏗᏳ ᏴᏫ ᎨᏥᏍᎦᎩ ᎨᏎᏍᏗ ᎠᏴ ᏧᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᎩᎶᏍᎩᏂ ᎬᎵᏍᏆᏗᏍᎩ ᏗᎧᎿᏩᏕᎩ, ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎨᏍᏗ ᏱᏗᏥᎪᏩᏘᏍᎨ ᏚᎾᎧᏛ ᏴᏫ, ᎠᏂᏬᏂᏍᎬᏉ ᏕᎪᎵᎬ, ᎢᎦᏓ ᏥᏧᏣ ᏥᎨᏒ ᏦᎦᏙᎵᏨ.\nᏧᎧᏌᏔᏁᎢ ᎠᏍᎪᎵ ᏥᏍᏕᏥ ᏏᏆ ᎤᎵᏍᏓᏴᏗ ᎦᎶᏙᏗ ᎭᏫᏂᏣ.\nᏕᏫᏰᏃ ᎥᏝ ᏳᎵᏌᎳᏓᏅ ᎦᎸᎳᏗ ᏫᏳᎶᏒ, ᎯᎠᏰᏃ ᏂᎦᏪ ᎤᏩᏒ; ᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎸ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ; ᏥᎦᏘᏏ ᎢᏗᏢᏦᎴᏍᏗ,\nᎯᎠᏍᎩᏂ [ᏄᏍᏗ;] ᎩᎶ ᎦᏲᎵ ᎠᏫᏍᎩ, ᎾᏍᎩ Ꮎ ᎾᏍᏉ ᎦᏲᎵ ᎤᏍᏚᏕᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎩᎶ ᎤᎪᏗ ᎠᏫᏍᎩ ᎾᏍᎩ Ꮎ ᎾᏍᏉ ᎤᏍᎫᏕᏍᏗ ᎨᏎᏍᏗ.\nᏭᏓᏅᏖᎴ ᏄᏪᏎᎸ ᎤᏥ, ᏁᎳᎩᏃ ᏣᏍᎦᎢᎮ, ᏫᏥ ᏭᏓᏬᎥᏍᏗ ᏚᏭᎪᏔᏁᎢ.\nᎠᎴ ᎤᏚᎵᏍᎨ ᎤᎯᏍᏗᏱ, ᎠᏎᏃ ᏓᏍᎦᎢᎮ ᏴᏫ, ᎠᏙᎴᎰᏍᎩᏰᏃ ᎤᏂᏰᎸᏎ ᏣᏂ.\nᎠᏎᏃ ᎢᏳᏃ ᏂᏚᏳᎪᏛᎾ ᏃᎦᏛᏁᎸ ᎬᏂᎨᏒ ᏱᏂᎬᏁᎭ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎯ ᎨᏒ ᎤᏁᎳᏅᎯ, ᎦᏙ ᏓᏓᏛᏂ? ᎠᏍᎦᏅᎦᏍᎪ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏥᏓᏍᏛᏗᏍᏙᏗᎭ? (ᏴᏫᏉ ᎢᏳᏪᏍᏗ ᏂᏥᏪᎭ).\nᏩᏲᎯ, ᎨᏍᏗ ᏳᏩᏁᎦ ᎢᏳᏍᏗ ᎫᏩᎾᏓᏍᏕᏓᎵᏴᏍᏗ ᎠᏎ ᎢᎦᏉ ᏳᎾᏁᎸᏔᏅ ᎡᎵᏍᎨ ᏲᎾ.\nᏧᎾᏓᎴᏅᏓ ᎠᏣᏗ ᏚᎪᎮ.\nᎠᏏᏴᏫᏃ ᎾᏍᎩ ᎤᎾᏓᏡᎬ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᏕᏲᎲᏍᎩ, ᎯᏁᏥ ᏦᏍᏓᏓᏅᏟ ᏔᎵ ᎢᏲᎩᏂᏗᏍᏗᏱ ᏧᎬᏩᎶᏗ ᎤᏘᏴᎯ.\nᎠᏫᎾ ᎠᏍᎦᏰᎬᏍᏓ ᏃᎴ ᏦᎢ ᎢᏯᏂ ᏕᎨᎪᏪᎵ ᎠᏂᏲᏍᎩ, ᎠᏂᏧᏣ Ireland, Philadelphia ᏃᎴ ᏣᎵᏍᏙᏂ ᏓᏳᏂᎶᏒ.\nᎠᏟᏅᏨ ᎦᏳᎳ ᏧᏂᎾᏗᏅᏓ ᎨᏎ.\nᎾᏍᎩᏃ ᎤᏓᎢᏅ ᎤᏄᏬ ᏚᎴᏁᎢ, ᎠᎴ ᏥᏌ ᏭᎷᏤᎴᎢ.\nᏄᏓᏅᏛᎾᏛ, ᎠᎾᏗᏍᎨ ᎠᏂᏴᏫ.\nᏄᏓᎴ ᎠᎨᏳᏣ ᏃᎴ ᏄᏓᎴᎯ ᎤᏍᏗᎩᎨ ᏏᏆ.\nᎤᏁᎦ ᏗᎧᏃᏗ, ᎠᏂᏳᏩᏁᎦ ᏧᎾᎭᎾᏬ, ᏳᏩᏁᎦ ᎾᎾᏛᏁᎲ ᎢᏯᏛᏁᏗ, ᏳᏩᏁᎦ ᎢᎦᎵᏍᏙᏗ.\nᎦᏛᎩᏍᎬ ᏣᏓᎨᏳᏒ ᎠᎴ ᏦᎯᏳᏒᎢ, ᎾᏍᎩ ᏥᎨᏳᎭ ᎤᎬᏫᏳᎯ ᏥᏌ, ᎠᎴ ᎾᏂᎥ ᎤᎾᏓᏅᏘ ᏥᏕᎯᎨᏳᎭ;\nᎠᎴ ᎬᏂᎨᏒ ᏅᏋᏁᎸᎢ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ ᎠᏇᏅᏒᎩ, ᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎸ ᎣᏍᏛ ᎧᏃᎮᏛ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎦᏥᏯᎵᏥᏙᏁᎲᎢ; ᎠᏂᏏᏴᏫᎭᏍᎩᏂ ᎤᏕᎵᏛ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎸᎩ ᏗᏂᏃᏣᎵ ᎨᏒᎢ, ᏯᏎᎦᎩ ᎠᏎᏉ ᏱᏙᏥᏍᏆᎸᏓ ᎠᎴ ᎠᏎᏉ ᏱᏓᎩᏍᏆᎸᏔᏅ ᎠᏇᎵᏒᎩ.\nᏄᎬᏫᏳᏒᏃ ᏗᏓᏘᏂᏙᎯ ᎤᏬᏯᏁᏒ, ᎢᏴᏛ ᎤᏕᎵᏒ ᏭᏘᏅᏍᏔᏅᎩ, ᎤᏛᏛᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎦᏙ ᎾᏍᎩ Ꮎ ᏍᎩᏃᏁᏗ ᏥᎩ?\nᏥᏌᏃ ᎤᎴᏫᏍᏔᏅ ᎤᏁᏤ ᏩᏥᏯᏅᏗᏱ. ᎤᏂᏯᏅᎮᏃ ᏗᎨᏫ, ᎯᎠ ᏄᏂᏪᏎᎴᎢ, ᎤᎦᎵᏍᏗᏉ ᎭᏓᏅᏓᏓ; ᏔᎴᎲᎦ; ᏗᏣᏯᏂᎭ.\nᎪᎯᏳᏗ ᎨᏒ ᎬᏗᏍᎬ ᎡᏆᎭᎻ ᎾᎯᏳ ᎠᏥᏯᏅᎲ ᎢᎸᎯᏢ ᎤᏪᏅᏍᏗᏱ ᎾᏍᎩ ᎾᎿ ᎣᏂ ᎢᏴᏛ ᎤᏤᎵᎦ ᎢᏯᎬᏁᏗ ᎨᏒᎢ, ᏧᏬᎯᏳᏁᎢ; ᎠᎴ ᏧᏄᎪᏤᎢ ᎾᎦᏔᎲ ᎾᎿ ᎠᎢᏒᎢ.\nᎿᏉᏃ ᏧᎦᎾᏮ ᎢᏗᏢ ᏧᏃᎸᏔᏅ, ᎾᏍᎩ ᎢᎦᏚᎵᏍᎬ ᏂᎦᎵᏍᏓ ᎤᏁᎵᏒ, ᎤᏂᎧᏙᏴᎩ, ᏟᏗ ᎾᎥᎢ ᎤᏂᏅᏍᏔᏅᎩ.\nᎾᏍᎩ ᎨᏒ ᏨᏗᏓᎴᎲᏍᎦ ᏂᎬ ᎠᏰᎸ ᎣᏍᏛ ᏗᏙᎵᎩ ᏥᎩ, ᎠᎴ ᏥᏚᏚᏓᏕᏫᏍᏗ ᏂᎦᎥ ᏚᎯᏢᎾᎥ ᏥᏚᎵᏍᏕᎸᏙᏗ, ᎾᏍᎩᏯ ᎠᏟᎶᎥ ᏧᎸᏫᏍᏓᏁᏗᏱ ᏧᏓᏤᎵᏛ ᏕᎨᏌᏗᏒᎢ, ᎧᏁᏉᏍᎪ ᎠᏰᎸᎢ, ᎠᏓᎵᏂᎪᎯᏍᏗᏍᎪ ᎤᏩᏒ ᎠᏓᎨᏳᏗ ᎨᏒᎢ.\nᏗᎩᎦᏴᎵᎨᏃ ᎠᏅᏳᏤᎲ ᏅᏗᎤᎵᏍᏙᏔᏁ ᎤᏂᎾᏗᏅᏎ ᏦᏩ ᎢᏥᏈᏱ ᏩᎦᏘᏅᏍᏙᏗᏱ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏚᎧᎿᏩᏗᏙᎮᎢ,\nᏓᏂᏍᎦᎢᎯ ᏧᏟᎶᏍᏔᏅ ᎠᎴ ᏧᏬᏪᎳᏅ ᎤᏐᏅᎢᏃ ᎠᏁᎵᏍᎨ ᏄᏍᏛ ᏚᏟᎶᏍᏛ ᎠᎴ ᏚᏬᏪᎸ.\nᎩᎶᏃ ᎤᎾᏓᏑᏴ ᎤᏅᏳᏤ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᎯᎠ ᎠᏤᏬᎩ ᎠᏠᏁᏗ?\nᏍᎩᎾᎾ ᎣᏍᏓ ᎠᎩᏰᎸ.”\n“ᏌᎳᏓ,” ᎠᏍᎩᏗᏍᎩ ᏄᏪᏎ ᏫᎵᎻ, ᎤᏙᎯᏳᎯᏍᎪ ᎯᏍᎩᏍᏆ ᏂᎦᏚ ᏗᏂᏲᏟ ᏕᏣᎧᎮᏍᏗ?  \nᏍᎩᎾᎾ ᎡᎾᎢ ᎤᎪᏏᏓ ᎢᏯᏅᏁ ᏓᏃᏎᎰ.\n“ᎭᏩ,” ᎤᏛᏁ ᎤᏥ, “ᏐᏉᏃ ᏏᏆ ᎤᏍᏗᎩᎨ.\nᏥᏌᏃ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᏂᎬᏅ ᎪᏪᎳ; ᏴᏫ ᎥᏝ ᎦᏚᏉ ᎤᏩᏒ ᏱᎬᎿᏗᏍᏕᏍᏗ, ᏂᎦᎥᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎤᏁᏨᎢ.\nᎠᏎᏃ ᏆᏂᏆ ᏭᏯᏅᎲ ᏚᏘᏃᎮᎴ ᎨᏥᏅᏏᏛ, ᎠᎴ ᏚᏃ ᏁᎴ ᎤᎬᏫᏳᎯ ᎤᎪᎲᎢ ᎠᎢᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏬᏁᏔᏅᎢ, ᎠᎴ ᎾᏍᎦᎢᎲᎾ ᏥᏌ ᏕᎤᏙᎥ ᎤᏁᎢᏍᏔᏅᎢ ᏕᎹᏍᎦ.\nᎩᎶᏃ ᎦᏌᎾᎵ ᎤᎩᎴᏍᏗ ᏞᏍᏗ ᏴᏗᎤᏠᎠᏎᏍᏗ ᏳᎩᏐᎴᏍᏗ ᎪᎱᏍᏗ ᎤᎲ ᎦᏁᎸᎢ;\nᏈᎵᏏᏃ ᎾᏍᎩ ᎤᏛᎦᏅ, ᎠᎴ ᎤᏟ ᎢᎦᎢ ᎤᎦᏙᎥᏒ ᎾᏍᎩ ᎦᏅᏅᎢ, ᏚᏬᎯᏕᎸᎩ ᎯᎠ ᏄᏪᏒᎩ; ᎵᏏᏯ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎦᎷᏨᎭ ᏓᎦᏛᎦᏃᏂ ᏥᏥᏱᎵᏙᎭ.\nᏔᎵ ᎢᏯᏅᏓ ᎤᎶᏒᏍᏗ ᎤᏪᏘᏲᏨ ᎡᎶ ᎤᎵᏖᎸᏁ ᎤᏩᏒᏙᎥᏔᏁ ᏐᏉ ᎢᏣ ᏧᎾᏦᎯᏍᏗ ᏃᎴ ᎦᏌᎾᎵ ᎤᏩᏒᏙᎣᏎ.\nᎠᏂᏐᎢ ᎠᏂᏔᎵ ᎠᏂᏴᏫᏯ ᏅᏲ ᏫᏚᏂᎵᎢᎳᏛ ᎦᎶᏇ, ᎠᏙᎯ ᎢᏣ ᏭᏂᎶᏒ, ᎨᏍᏗ ᏳᏂᎷᏨ.\n“ᏌᎳᏓ,” ᎤᏛᏁ ᎪᎯᎢᏴ, “ᎮᎵᎠᏍᎪ ᏰᎵᏉ ᏛᏆᎵᏍᎪᎸᏓᏁᎵ ᎠᏆᏕᏗ ᎰᎻ ᏃᎴ ᎨᏍᏗ ᏱᏛᎩᎵ ᎤᏴᏣ ᏂᎦᎵᏍᏔᏅ? \nᏞᏍᏗ ᎤᏲ ᏁᏨᏁᎲ ᏱᏣᏞᎨᏍᏗ ᎤᏲ ᏱᏂᏣᏓᏛᏁᎮᏍᏗ, ᎠᎴ ᎦᏰᏥᏐᏢᏔᏅ ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ ᏱᎨᏣᏓᏐᏢᏗᏍᎨᏍᏗ, ᎣᏍᏛᏉᏍᏗᏂ ᎨᏥᏁᏤᎮᏍᏗ; ᎢᏥᎦᏔᎭᏰᏃ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᎡᏥᏯᏅᏛ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏣᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᎣᏍᏛ ᎡᏥᏁᏤᏗᏱ.\n“ᎮᏂᎵ ᎤᎵᏲᏗ ᎪᎵᎩ,” ᎤᏛᏁ ᎪᏱᏁ ᎤᏰᏥᏍᎩ.\nᎥᏝ ᎤᎾᏓᏅᏘ ᏱᏗᏥᏯᏅᎯᎸ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᏧᏂᏁᏟᏴᏍᏗᏱ ᏚᎾᏓᏅᏛᎢ.\nᎺᎵᏍᎩᏂ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏔᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏓᏅᏖᎯᎶᏒ ᏧᏓᏅᏛᎢ.\nᎾᎥᏃ ᎠᏂᎶᏍᎩ ᎦᎬᏩᏢᏕᎢ, ᎠᎴ ᏓᎾᎵᏍᏛᏁᎮᎢ,\nᎠᎴ ᎡᎾ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᎧᏱᏆ ᎠᎴ ᏣᏂ ᎠᎴ ᎡᎵᎩ ᎠᎴ ᏂᎦᏛ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎪᎱᏍᏗ ᏧᏩᏅᏚᏂᎳᏫᏤ ᏥᎷᏏᎵᎻ.\nᎠᏯᏦᎯ ᏭᎳᎩᏎᎢ ᏣᏄᏏ, ᎤᏓᏃᏴᎵᏓ ᎤᏟᏴᏍᎩᎸᎮᎢ, ᏰᎵ ᏐᏈᎵ ᏗᏂᎦᏘᏱ ᎤᎾᏛᎦᏁᎢ ᏐᏈᎵ ᎤᏂᏴᏍᏗ ᎢᏴ.\nᎾᎯᏳᏃ ᏥᎷᏏᎵᎻ ᏅᏓᏳᏂᎶᏒᎯ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᎷᏤ ᎥᏖᎣᎩ.\nᎭᏩ ᎣᏍᏓ ᏱᎩ ᏭᏕᎵᎬ ᎢᏣ, ᏂᎪᎯᎸᎾᏉ ᎠᏂᏳᏩᏁᎦ ᏯᏂᎩᏐᎾ ᎦᏙ, ᏍᎩᎾᎾ ᏄᎾᏍᏗ, ᎨᏍᏘᏰᏃ ᏰᎵᏉ ᎠᏁᎵᏍᎩᏱᎩ.\nᎦᏙᎯᏰᏃ ᏣᏗᏔᏍᎪ ᎠᎹ ᏯᏃ ᎤᎦᎿᏂᎯᎲᎢ, ᎠᎴ ᏥᎦᎾᏄᎪᏫᏍᎪ ᎠᏛᏒᎥᏍᎩ ᎪᎱᏍᏗ ᎤᏅᏙᏗ ᎾᏍᎩ Ꮎ ᎦᏙᎯ ᎨᏥᎶᎦᏁᎸᎯ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎾᏛᏁᎰᎢ.\nᎦᎶᏁᏛᏰᏃ-ᏥᏌ ᏗᏁᎶᏙᏗ ᎨᏒ ᎠᎱᏍᏕᏍᏗ ᎨᏒ ᎥᏝ ᎪᎱᏍᏗ ᎬᏙᏗ ᏱᎩ, ᎠᎴ ᎠᎱᏍᏕᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎢᏤᏍᎩᏂ ᎢᏯᎬᏁᎸᎯ ᎰᏒᎢ.\nᎿᏉᏃ ᎯᎠ ᏅᎬᏩᏪᏎᎸᎩ; ᎦᎪ ᏂᎯ? ᏫᏙᏥᏃᏁᏗᏱᏰᏃ ᏅᏓᎪᎩᏅᏒᎯ; ᎦᏙ ᎭᏗᎭ ᏨᏒ ᎭᏓᏃᎮᏍᎬᎢ?\nᏞᏍᏗ ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᏣᏓᏙᎵᏍᏓᏁᎯ ᏱᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎢᎦᏛ ᎾᏍᎩ Ꮎ ᏥᏄᎾᏍᏕᎢ; ᎾᏍᎩᏯ ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ, ᏴᏫ ᎤᎾᏅᏅᎩ ᏛᎾᎵᏍᏓᏴᏂᏒᎩ ᎠᎴ ᏛᎾᏗᏔᎯᏒᎩ, ᏚᎾᎴᏅᎩ ᎤᎾᏁᏦᏅᎩ.\nᏗᎾᏤᎯᏃ ᏕᏥᏁᏤᎭ, ᎥᏝ ᎠᏴᏉ, ᎤᎬᏫᏳᎯᏍᎩᏂ ᏕᎧᏁᏤᎭ, ᏞᏍᏗ ᎠᎨᏴ ᏳᏓᏅᎡᎴᏍᏗ ᎤᏰᎯ;\nᎨᏍᏗ ᏳᏓᏍᏕᏓᎵᏴᏌ ᏫᎵᎻ.\nᎦᏙᏃ ᎯᎠ ᎠᏍᎦᏯ ᎯᎠ ᏂᎦᏪᎭ ᎢᎠᏐᏢᎢᏍᏗᎭ? ᎦᎪ ᏰᎵ ᎠᏍᎦᏅᏨ ᎬᏩᏓᏙᎵᏍᏗ, ᏌᏉᏉ ᎤᏩᏒ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ?\n“ᏌᎳᏓᏗ ᏰᎵᏉ ᏱᎾᏛᎦ,” ᎤᏛᏁ ᏲᎾ ᎤᏤᏍᏙ.\nᎤᎾᏌᎯᏴᏓ ᎦᏃᎸᎥᏍᎬ ᎦᎶᏍᎨ ᏗᎦᎶᎯᏍᏗ ᏃᎴ ᏦᎳᎾ.\nᎣᏍᏓ ᏄᎵᏍᏔᏁᎮ ᎤᏩᏌ ᎤᏪᏅᏒ ᎡᏙᎲ.\nᏥᏌᏃ ᎤᏙᏯᏅᎯᏛ ᎤᏒᏂᎴᎢ, ᎦᏓᏅᏛᎵ, ᏣᏓᏅᎦᎸᏛ ᎨᏎᏍᏗ, ᎤᏬᏎᎴᎢ; ᎩᎳᏉᏃ ᎢᏴᏛ ᎠᏓᏰᏍᎩ ᎤᏢᎬ ᎤᏓᏅᎦᎸᎮᎢ.\nᏥᏌᏃ ᎥᏝ ᎠᏏ ᏱᎦᎷᎨ ᎦᏚᎲᎢ, ᎾᎿᏉᏍᎩᏂ ᎹᏗ ᏫᏚᏠᏒ ᎡᏙᎲᎩ.\nᏥᎪᎥᏃ ᏚᎳᏍᎬ ᎠᎩᏅᏨᎩ ᎠᎩᏲᎱᏒᎯ ᎢᎦᎦᏛ. ᎠᎦᏘᏏᏗᏢᏃ ᎤᏬᏰᏂ ᎠᏆᏏᏔᏗᏍᏔᏅᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ, ᎠᏴ ᎾᏍᎩ Ꮎ ᎢᎬᏱᏱ, ᎠᎴ ᎤᎵᏍᏆᎸᏗ ᏥᎩ.\nᎤᏍᏚᎩᏒ ᏧᏍᏆᏅᎾ, ᎤᎳᎩᏒ ᎤᏲᎰᏒ ᎠᏧᏣ, ᎤᏁᏍᏓᎶᏨ ᎦᏙ ᎤᏅᏁ ᎠᏧᏣ, ᎨᏍᏗ ᎤᏙᏓᏆᏓ ᎫᏩᏲᎰᏒ ᏱᎨᏎ, ᎠᏎᏃ ᎦᏳᎳ ᎪᏍᏓ ᎢᏳᏍᏗ ᏄᏍᏕ ᎤᎧᏛ ᏃᎴ ᎤᏍᏗᏰᎬ.\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᎪᎵᏰᏍᎩ, ᎠᎴ ᎾᏍᎩ ᎠᎾᏛᎩᏍᎩ ᎧᏃᎮᏛ ᎯᎠ ᎾᏍᎩ ᎠᏙᎴᎰᏒᎯ, ᎠᎴ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᎾᏍᎩ Ꮎ ᏧᏓᎴᏅᏛ ᎾᎿ ᎪᏪᎸᎢ; ᎤᏍᏆᎸᎯᏗᏰᏃ.\nᎾᏍᎩᏰᏃ ᎯᎠ ᎣᏏᏳ ᎤᏰᎸᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎣᏏᏳ ᏕᏥᎸᏫᏍᏓᏁᎲ ᎡᎳᏪ ᏗᏨᏗᏱ ᎾᏂᎦᏔᎿᎥᎾ ᎠᎴ ᎤᏂᏁᎫ ᏴᏫ.\nᎡᎳᏗ ᎢᎦᏛ ᎠᏍᎦᏯ, ᎠᏎᏃ ᏗᏯᏖᏅ ᏗᎦᏅᏬᎢ, ᎤᏟᏂᎩᏛ ᎠᏰᎸᎢ, ᎦᏌᏆᎸ ᎠᏍᎪᎵ, ᏤᏆ ᏧᏬᏰᏂ.\nᎾᏂᎥᏃ ᎾᏍᎩ ᎤᎾᏛᎦᏅᎯ ᏧᎾᏛᎦᏅᎯ ᏧᏂᎾᏫᏱ ᎤᏂᏍᏆᏂᎪᏔᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᎦᏙ ᎤᏍᏕᏍᏗ ᎯᎠ ᎠᏲᎵ? ᏱᎰᏩᏃ ᎤᏍᏕᎸᎯᏙᎮᎢ.\nᎨᏥᏅᏒᎯᏃ ᎤᏁᏅᏎ ᎠᎴ ᏭᏂᏳᏛᎮ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸᎢ.\nᎠᏆᏛᎦᏅᎩᏃ ᎠᏍᏓᏯ ᎧᏁᎬ ᎯᎠ ᏅᏗᎦᏪᏍᎬ ᎦᎸᎳᏗ, ᎿᏉ ᎠᎵᏰᎢᎶᎦ ᎠᎵᏍᏕᎸᏙᏗ ᎨᏒ ᎠᎴ ᎤᎵᏂᎩᏛ ᎨᏒᎢ, ᎠᎴ ᎢᎦᏁᎳᏅᎯ ᎾᎿ ᎤᎬᏫᏳᎯ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎦᎶᏁᏛ ᎾᏍᎩ ᎤᏤᎵᎦ; ᎢᏓᎵᏅᏟᏰᏃ ᎨᏒ ᎤᏄᎩᏍᏗᏍᎩ ᎡᎳᏗ ᏩᎦᏓᎤᎦ; ᎾᏍᎩ ᏧᏄᎯᏍᏗᏍᎬ ᎢᎦᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᏗᎬᏩᏜᏍᏗ.\nᏣᏂᏰᏃ ᎤᎷᏨᎩ ᎥᏝ ᏯᎵᏍᏓᏴᎲᏍᎨᎢ ᎠᎴ ᎥᏝ ᏯᏗᏔᏍᎨᎢ, ᎠᏎᏃ ᏂᎠᏂᏪᎭ; ᎠᏍᎩᎾ ᎤᏯᎠ.\nᎾᏂᎥᏃ ᎾᏍᎩ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏂᎧᎿᏩᏕᎩ, ᏅᏩᏙᎯᏍᏛ ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏭᏁᎳᏗᏓ, ᎠᎴ ᎾᏍᏉ ᎢᏏᎵ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏭᏁᎳᏗᏓ.\n“ᎨᏍᏗ ᏱᎪᎵᎦ.”\nᏔᎵ ᏓᏆ ᎪᎢ ᏗᎪᏒᏔᏅ ᎤᎧᎾᏫ ᏗᏨᏍᏘ ᏓᏓᏪᎳᎩᏍᎬ.\nᎢᏳᏰᏃ ᏱᏗᏥᎨᏳᎭ ᎨᏥᎨᏳᎯ, ᎦᏙ ᏰᏣᎫᏴᏓᏏ? ᏝᏍᎪ ᎾᏍᎩ ᏱᎾᎾᏛᏁᎰ ᎠᏰᎵ-ᎠᏕᎸ ᎠᏂᎩᏏᏙᎯ?\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᎩ ᎨᎵᎭ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎾᏆᎵᏍᏓᏁᎵᏙᎲᎢ ᎨᎦᏑᏰᏛ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎠᎴ ᎤᏂᏩᏛᏗᏱ ᎠᎵᏍᏕᎸᏙᏗ ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ, ᎠᎴ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎿᏉᏃ ᎯᎠ ᏄᏂᏪᏎ ᏂᎦᏛ, ᏂᎯᏍᎪ ᎤᏁᎳᏅᎯ ᎤᏪᏥ? ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏰᎵ ᏂᏥᏫ, ᎠᏴᏰᏃ ᎾᏍᎩ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎤᏕᏯᏔᏁᎭ ᎠᏲᏞᎯᏍᏗ ᎾᏍᎩᏯᎢ; ᎠᏂ ᎢᏥᏁᏍᏗ, ᎠᎴ ᎢᏥᏯᏫᏍᎨᏍᏗ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏗᏓᏬᏍᏗ ᎨᏒ ᎪᎯ ᎨᏒ ᎢᎩᏍᏕᎵᎭ; ᎥᏝ ᎢᏴᏛ ᎾᎬᏁᎲ ᎠᏰᎸ ᎦᏓᎭ ᎨᏒᎢ, ᎧᏁᏤᏗᏍᎩᏂ ᎤᏁᎳᏅᎯ ᎬᏙᏗ ᎣᏍᏛ ᎠᏓᏅᏖᏗ ᎨᏒ ᎢᎩᏍᏕᎵᎭ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏚᎴᎯᏌᏅ ᏥᏌ ᎦᎶᏁᏛ,\nᎢᎬᏱᏱ ᎠᎩᏬᏂᏒ ᎦᎵᏍᏕᎵᏍᎬ ᎥᏝ ᎩᎶ ᎾᎥ ᏱᎦᏙᎨᎢ, ᎾᏂᎥᏉᏍᎩᏂ ᎬᏆᏕᏨᎩ; ᏞᏍᏗ ᎤᏂᏍᎦᏅᏨ ᏱᏚᏚᎪᏔᏁᏍᏗ;\nᎤᏍᏆᏂᎩᏗ ᏚᏕᏘᏴᏌᏗᏒ ᎠᎾᎵᏍᏕᏓᎵᏴᏍᎦ ᏗᏂᏲᏟ.\nᎿᏉᏃ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎤᎷᏨ, ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏃᎲᏏ, ᎯᎶᎻᏍᎪᏂᎯ? ᎥᎥ, ᎤᏛᏅᎩ.\nᎦᏚᎲᏃ ᎤᏂᏄᎪᏫᏒ ᏅᏯ ᏚᏅᏂᏍᏔᏁᎢ. ᎠᏂᎦᏔᎯᏃ ᏧᎾᏅᏬ ᏚᏂᏅᏁ ᏚᎳᏍᎬ ᎾᎥ ᎠᏫᏅ ᏐᎳ ᏧᏙᎢᏛ.\nᎡᏣᏓᏅᏛᎵᏉᏍᎩᏂ Ꮎ ᎾᏍᎩ ᎢᎦᎢ ᎦᎬᏩᏐᏢᏛ ᎠᏂᏍᎦᎾ ᎤᏁᎳᎩ ᏚᏪᎵᏎᎸᎢ, ᎾᏍᎩᏃ ᏞᏍᏗ ᏗᏥᏯᏪᏨᎩ ᎠᎴ ᏞᏍᏗ ᏧᏩᎾᎦᎶᏨᎩ ᏕᏣᏓᏅᏛᎢ.\nᎾᏍᎩ ᎾᏍᏉ ᎨᎵᎵ ᏤᏙᎮ ᎬᏩᏍᏓᏩᏗᏙᎮ ᎠᎴ ᎬᏩᏍᏕᎸᎯᏙᎮᎢ; ᎠᎴ ᎤᏂᏣᏖ ᏅᏩᎾᏓᎴ ᎠᏂᎨᏴ ᏥᎷᏏᎵᎻ ᏅᏓᎬᏩᏍᏓᏩᏙᎸᎯ.\nᏂᎯᏍᎩᏂ ᎭᏓᏁᎮᏍᏗ ᏞᏍᏗ ᏦᏰᏂ ᎯᎦᏍᎦᏂ ᎤᏙᎴᎰᏒ ᎯᎦᏘᏏ ᏦᏰᏂ ᎾᏛᏁᎲᎢ.\nᎠᏓᎨᏳᏗ ᎨᏒ ᎠᎵᏛᏗᏍᎩ ᏂᎨᏒᎾ; ᏙᎴᎰᎯᏍᏗᏍᎩᏂ ᎨᏒ ᏛᎵᏛᏔᏂᏉ; ᏧᏓᎴᏅᏛ ᏗᎦᏬᏂᎯᏍᏗ ᎨᏒ ᏙᏓᎦᎶᏐᏂ; ᎠᎦᏙᎥᎯᏍᏗ ᎾᏍᏉ ᎨᏒ ᏛᎵᏛᏔᏂ.\nᎠᏴ ᎤᏁᎳᏅᎯ ᏅᏓᏲᎦᏓᎴᏅᎯ; ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎯ ᎣᎦᏛᎦᏁᎰᎢ. ᎾᏃ ᎤᏁᎳᏅᎯ ᏅᏓᏳᏓᎴᏅᎯ ᏂᎨᏒᎾ ᎥᏝ ᏲᎦᏛᎦᏁᎰᎢ. ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏕᏗᎦᏔᎭ ᏚᏳᎪᏛ ᎢᏯᎾᏛᏁᎯ ᎠᏓᏅᏙ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏌᏛᏁᎯ ᏂᎨᏒᎾ ᏗᏓᏅᏙ.\nᎦᏅᎯᏛ ᎠᏇᏅᏓ, ᏎᎦᏨ ᏕᏥᏩᏛᎲ ᎤᏣᎴᏓ ᎤᏩᏓᏓᏍᎬ ᎤᏍᏔᎦᏢ.\nᏍᏏᏉᏯ ᎪᎯᏗ ᎤᎴᏂᏙᎴ Ꮭ ᏧᏓᏃᏣᎵ ᏱᎨᏎ.\nᎠᎨᏴᏃ ᏗᏕᎭᎷᎨ ᎠᎴ ᏗᎩᎦᎨ ᏚᏄᏩᎥᎩ, ᎠᎴ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎠᎴ ᏗᎦᎸᏉᏗ, ᏅᏯ ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ ᏚᏣᏅᏛᎩ, ᎠᎴ ᎠᏕᎸ-ᏓᎶᏂᎨ ᎠᏢᎳᏅᎯ ᎤᎵᏍᏈᏗ ᎠᏰᎲᎩ ᎠᎧᎵᎢ ᎤᏂᏆᏘᏍᏗ ᎨᏒ, ᎠᎴ ᎤᏁᎢᎸᏗ ᎾᏍᎩ ᎤᏕᎵᏛ ᏚᏂᏏᏂᏙᎸ ᎤᏩᏛᏛ.\nᎨᏍᏗ ᎪᎱᏍᏗ ᏱᎦᏓᏅᏖᏗ, ᎠᏎᏃ ᏍᏈᏍᏓ ᎭᏫᏂᏣ ᏥᏆᎵᎢ.\n“ᏰᎵᏉ,” ᎤᏪᎷᏁ ᏧᏍᏆᏴᏍᏗ.\nᏆᎴᏗᏃ ᏓᏳᏄᎪᏨᎩ ᎠᏂᏙᎾᎥ ᎤᎷᏨᎩ, ᎯᎠ ᏄᏪᏒᎩ; ᎪᏙ ᎡᏧᎢᏍᏗᎭ ᎯᎠ ᎠᏍᎦᏯ?\nᎨᏍᏗ ᏯᏍᎦᎢᎮ ᏥᏄᏍᏕ ᎠᎬᏱ ᏣᎴᏂᏍᎨ ᎠᏂᎩᏍᎬ, ᎾᎥᏂ ᏭᎷᏤᎢ, ᏏᏲ, ᎤᏍᏗ ᎠᏣᏗ ᎬᏉᏎᎰ ᏃᎴ ᎨᏍᏗ ᎯᎸᎯᏳ ᏥᎪᎥ ᏂᎯ ᎢᏳᏍᏗ ᎠᏣᏗ.\n“ᎤᏨᏉᏗ ᏱᎨᏒᎾ,” ᎤᏛᏁ ᏥᏍᏕᏥ.\nᎬᏂᏳᏉᏃ ᎡᏙᎲᎩ ᎠᏍᎦᏯ ᎤᏬᏰᏂ ᎤᏩᎢᏎᎸᎯ. ᎬᏩᏛᏛᏅᎩᏃ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏥᎪ ᏰᎵᏉ ᎬᏓᏅᏬᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ; ᎬᏩᏱᎵᏓᏍᏗᏱ ᎤᎾᏚᎵᏍᎬᎩ.\nᏥᏌᏃ ᎤᏁᏨ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏥᏌ ᎦᏃᏍᎩᏍᎩ ᏨᏤᏥᏂᏴᎯᏐ ᎾᏍᎩᏯ ᎢᏥᎷᎩ, ᏗᏥᏁᎯ ᎠᏰᎳᏍᏗ-ᏗᎦᏅᎯᏛ ᎠᎴ ᎠᏓ ᎠᏴ ᏍᎩᏂᏴᎰᎦ?\nᎯᎠ ᎾᏂᏪᏍᎨᎢ; ᏍᎩᏯᏙᎴᎣᎯᏏ, ᎦᎶᏁᏛ, ᎦᎪ ᏥᏨᏂᎦ?\nᎠᎴ ᎠᏍᎪᎯ ᏕᎤᎷᎬ ᏥᏕᏣᎪᎲᎩ, ᎾᏍᎩ ᏅᎩ-ᏗᎨᏅᏌᏗ ᏚᎷᎬᎢ, ᎾᏍᎩ ᏓᎬᏩᏂᏆᏘᎵ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎠᎴ ᏅᏔ ᎠᎴ ᎤᏰᎸᎭ ᏅᏓᏰᎬᏁᎵ, ᎠᎴ ᎤᏇᏓᎸ ᏓᎬᏩᎨᎵ, ᎠᎴ ᎠᏥᎸ ᎬᏗ ᏓᎬᏩᎪᎲᏍᏔᏂ.\nᎠᏆᏚᎵ ᎠᏍᏆᏗᏍᎬ ᏣᎵ ᎤᏤᎵ ᎧᏃᎮᏛ, ᎤᏬᏚ ᎪᏪᎳᏅ ᏃᎴ ᎧᏃᎮᏍᎩ ᏄᏲᎢᏴ ᎤᎶᏒ, ᎠᏎᏃ ᎨᏍᏗ ᎪᎰᏍᏗ ᎧᏃᎮᏓᏉ ᎠᎴ ᎤᏲᎢ ᏱᎨᏐ ᎾᏍᎩᏴ ᏂᎦᎵᏍᏗᏍᎬ.\nᎿᏉᏃ ᎡᎩᎵᏈ ᎯᎠ ᏄᏪᏎᎸᎩ ᏉᎳ; ᎠᎴᏉ ᏂᏍᎩᏎᎪᎩᎠ ᎦᎶᏁᏛ ᏥᏲᎢᏳᎲᏍᎩ ᎢᏯᏆᎵᏍᏙᏗᏱ.\nᎤᏂᏲ ᎠᎴ ᎤᏂᏁᎫᏥᏛ ᏣᏁᎭ ᎤᏂᏲᎰ ᎤᏰᎸᏛᎢ, ᎠᏎᏃ ᎥᏝ ᏴᎦᎨᎦᎵᏍᎪᎸᏓᏏ ᎤᏰᎸᏛᎢ, ᏦᎾ ᎠᏙᎴᎰᏍᎩ ᎤᏤᎵᏅᏰᎸᏛ ᎤᏩᏒ. ᏚᏓᏅᎡᎸᏃ ᎤᏂᎩᏒᎩ.\nᎿᏉᏃ ᏆᎴᏗ ᏔᎵᏁ ᎤᏄᎪᏨᎩ, ᎯᎠ ᏫᏂᏚᏪᏎᎸᎩ; ᎬᏂᏳᏉ ᎢᏨᎾᏄᎪᏫᏏ, ᎢᏣᏙᎴᎰᎯᏍᏗᏱ ᎤᏍᎦᏅᏨ ᎾᎩᏩᏛᎲᎾ ᎨᏒᎢ.\nᏂᎯ ᎢᎦ ᎢᏣᏘᏍᏗᏍᎩ ᎡᎶᎯ. ᎦᏚᎲ ᎤᏌᎯᎸ ᏥᎦᎧᎰᎢ ᎥᏝ ᏰᎵ ᏴᎦᏰᎬᏍᎦᎸᎦ.\nᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏴᏫ ᎤᏪᏥ ᎠᏎ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᏧᎩᎵᏳᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎬᏩᏲᎯᏍᏗ ᎨᏎᏍᏗ ᏗᏂᎳᏫᎩ ᎠᎴ ᏄᏂᎬᏫᏳᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᏗᏃᏪᎵᏍᎩ, ᎠᎴ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏦᎢᏁ ᎢᎦ ᏣᎦᎴᏙᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎾᏍᎩ ᏙᎦᏚᏓᏔ ᏱᏓᏗᎭ, ᎤᎵᏏᎬᏃ ᏱᏕᏙᎭ, ᏱᏓᏥᎪᎥᏍᎦᏉ ᎠᎴ ᎥᏝ ᏱᎨᏗᏍᏓᏩᏕᎦ ᎤᏙᎯᏳᎯ ᎨᏒᎢ.\nᏥᏌᏃ ᎤᎪᎲ ᎠᎦᏔᎿᎢ ᎢᏳᏪᏍᏗ ᏁᏪᏒ ᎤᏁᏨᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎥᏝ ᎢᏅᎯᏳ ᏱᏂᏣᏛᎿᏕᎦ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎪᎯ ᎨᏒᎢ. ᎾᎪᏳᏃ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎩᎶ ᎪᎱᏍᏗ ᎬᏩᏛᏛᏗ ᏱᎨᏎᎢ.\nᏜᏈᎾ ᎠᎴ ᏜᏉᏏ ᏕᏥᏲᎵᎸᎭ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᏧᏂᎸᏫᏍᏓᏁᎯ ᏥᎩ. ᎡᏥᏲᎵᎸᎭ ᎠᏥᎨᏳᎢ ᏆᏏ, ᎤᏣᏘ ᏧᎸᏫᏍᏓᏁᎸᎯ ᏥᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎦ.\nᏄᏂᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎾᏍᏉ ᎠᏂᏆᎵᏏ ᎤᏂᏁᏨᎯ ᎨᏒᎩ, ᎢᏳᏃ ᎩᎶ ᏯᎦᏔᎭ ᎡᏙᎲᎢ, ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ, ᎤᏂᏂᏴᏗᏱ ᎤᏂᏰᎸᏒᎩ.\nᎢᏳᏃ ᏰᎵ ᎨᏎᏍᏗ ᏂᎦᎥ ᎢᎨᏣᏛᏁᏗ ᎨᏒ ᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᏙᎯᏳ ᎢᏣᏕᏗᏱ ᎾᏂᎥ ᏴᏫ.\nᏰᎵ ᏑᏥᎶᏓ ᎢᏴ ᎠᏂᎴᏴᏍᎩ ᏧᏁᏅᏒ, ᎠᏓᏍᏓᏴᏗ ᎦᏍᎩᎸᎢ ᎠᏂᏁ ᎠᏂᏍᎦᏯ ᎠᏂᏃᎮᏍᎨ ᏄᎵᏍᏔᏂᏙᎸ ᎢᎦ ᏃᎴ ᏆᎾ ᏗᎦᎶᏔᏅ ᏓᏂᎩᏍᎨᎢ.\nᎣᎦᏂᎩᏒ ᎦᏂᎩᎸ, ᎦᏓᏅᏖᏍᎬ ᎤᏲᎢᏉ ᎠᏂᏫᎾᎨᏍᏗ ᎠᎫᏩᏌ ᏣᎫᏤᎵ ᏣᎫᎵᏏ ᏳᎾᏓᏅᏖᎸ ᏄᏍᏚ ᎤᎶᎯᏍᏗ ᎥᎬᎭᏅ.\nᎠᏎᏃ ᎢᎬᏱ ᎤᏣᏘ ᏧᏓᎴᏅᏛ ᎤᎩᎵᏲᎢᏍᏗ, ᎠᎴ ᏗᎬᏩᏲᎯᏍᏗ ᎨᏎᏍᏗ ᎪᎯ ᏣᏁᎭ.\nᏚᏳᎪᏛ ᎨᏎᏍᏗ ᎢᏕᎲᎢ, ᎢᎦ ᏂᎨᏐ ᎾᏍᎩᏯᎢ; ᎥᏝᏍᏗᏃ ᎠᎵᏍᎦᎾᏩᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏓᏴᏍᏕᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏕᎵᏛ ᏗᏂᏏᏗ ᎨᏒᎢ, ᎠᎴ Ꮓ-ᎵᏏᎾᎯᏍᏛᎾ ᎠᎴᏂᏓᏍᏗ ᎨᏒᎢ, ᎥᏞᏍᏗᏃ ᎠᏗᏒᏍᏗ ᎨᏒᎢ ᎠᎴ ᏗᏓᏛᏳᏤᏗ ᎨᏒᎢ.\nᎦᏙᎨ ᎢᏣᎦᏔᏅᏎᎢ? ᎠᏍᎦᏯᏍᎪ ᏗᏬᏍᎩᎵ ᏧᏄᏩᎢ? ᎬᏂᏳᏉ ᏧᏬᏚᎯ ᏧᎾᏄᏩᎢ ᎠᎴ ᎣᏍᏛ ᏗᎾᎵᏍᏓᏴᎲᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏓᏂᏁᎸ ᎠᏁᎰᎢ.\n“ᎤᏙᎯᏳ.\n“ᎾᏄᏍᏗ ᏌᎳᏓ ᏚᏏᎳᏛᎢ! \nᎠᎴ ᏥᎷᏏᎵᎻ, ᎠᎴ ᎢᏙᎻᏱ, ᎠᎴ ᏦᏓᏂ ᎢᏍᎪᏂᏗᏢ; ᎠᎴ ᏓᏯ ᎠᎴ ᏌᏙᏂ ᎾᎥ ᏗᏁᎯ, ᎤᏣᏘ ᎠᏂᎪᏗᏳ, ᎾᏍᎩ ᎤᎾᏛᎦᏅ ᏂᎦᎥ ᎤᏍᏆᏂᎪᏗ ᏕᎤᎸᏫᏍᏓᏁᎸ, ᎬᏩᎷᏤᎴᎢ.\nᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎠᎦᏘᏯ ᎤᏍᏚᎢᏒᎰᎢ, ᎠᎴ ᎠᏫ ᎠᎾᏛᎩᏍᎪ ᎧᏁᎬᎢ, ᎠᎴ ᏚᎾᏙᎥ ᏓᏯᏂᏍᎪ ᎠᏫ ᏧᏤᎵᎦ, ᎠᎴ ᏓᏘᏂᏒᏍᎩᏂ ᏕᎦᏄᎪᏫᏍᎪᎢ.\nᏚᏂᏃᎩᏒᏃ, ᎤᏂᏄᎪᏤ ᎣᎵᏩᏲ ᎣᏓᎸ ᏭᏂᎶᏎᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏳᏃ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎲᎾ ᎢᎨᏎᏍᏗ ᎤᏓᎵᏓᏍᏗ ᎨᏅᎢᏍᏗ ᎨᏒ ᎪᎱᏍᏗ ᎢᏨᏗᏍᎬᎢ, ᎦᎪ ᏱᏥᎦᏘᏗᏍᏓ ᏄᏓᎵᏓᏍᏛᎾ ᎨᏅᎢᏍᏗ ᎨᏒᎢ?\nᏚᏒᎭᏂᎸ ᎩᎦᎨ ᎤᏂᏳᏩᏅ ᏗᏂᏐᎯᎢ ᏃᎴ ᏚᏟᏃᎮᏔᏅ, ᎨᏍᏗ ᎪᎰᏍᏗ ᏱᏓᏚᎸᎡᎭ, ᎤᏚᎵᏍᎨᎢᏉ ᎣᏍᏓ ᎢᏳᎾᎵᏍᏔᏁᏗ ᎢᏳᏍᏗ ᎠᏂᏰᎵᏒ.\nᎠᏓ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏅᏎ ᎤᏓᎵᎢ.\n“ᎤᏲᎢ ᎠᎩᏰᎸ ᎣᏍᏓ ᏱᏣᏓᏅᏛᎾ ᎨᏒᎢ ᏌᎳᏓ,” ᎤᏛᏁ.\nᏝᏍᎪ ᎯᎠ ᏱᎬᏩᎬᏫᏳ ᏱᏅᎦᏰᏥᏪᏏ, ᎭᏛᏅᎢᏍᏓ ᎠᏆᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᎭᏓᏠᎦ, ᎠᎴ ᏍᎩᏍᏕᎸᎯᏓ ᎦᎵᏍᏓᏴᎲᏍᎬ ᎠᎴ ᎦᏗᏔᏍᎬ ᎢᎬᎯᏛ; ᎣᏂᏃ ᏨᏒ ᎭᎵᏍᏓᏴᏅᎭ ᎠᎴ ᎭᏗᏔᎲᎭ?\nᎾᏍᎩ ᏦᎢᎭ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᎬᏂᎨᏒᎢᏳ ᎤᎪᎮ ᏗᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎤᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ; ᎧᏂᎵᏯ.\nᎾᏍᎩᏃ ᎤᎾᏛᎦᏅ ᎩᎳ ᏧᎩᏥᏍᎪᎢ ᏭᏂᏴᎴ ᎤᏛᏅ-ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᏚᎾᏕᏲᏁᎢ. ᎠᏎᏃ ᏄᎬᏫᏳᏒ ᎠᏥᎸ-ᎨᎶᎯ ᎤᎷᏨ, ᎠᎴ ᎾᏍᎩ ᎬᏩᎵᎪᏁᎯ, ᏚᏂᏟᏌᏁ ᏗᏂᎳᏫᎩ, ᎠᎴ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ, ᎠᎴ ᏫᏓᏯᏅᎲ ᎤᎾᏓᏅᏎ ᏗᏓᏍᏚᏗᏱ.\nᎠᏂᏍᎦᎢᎮᏃ ᎠᎴ ᎡᎳᏗ ᏂᏚᏅᏁ ᏚᎾᎧᏛᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᎬᏃᏛ ᎢᎡᏥᏲᎭ ᏧᏂᏲᎱᏒᎯ ᏄᎾᏛᏅᎢ?\nᎯᎸᎢᏴ ᎤᏦᏩᏛ ᎤᎳᎡ ᏧᎶᎸᏗ ᎡᎳᏆᏗ, ᎤᎦᏃᏩ ᎦᏁᏔᏱ ᏃᎴ ᎠᏛᏂᎢᏍᏔᏅ ᎤᏅᏣᎳᏗ ᎤᏒᎮᏱᏣ ᎤᏂᏯᎩᏍᏗ.\nᎢᎦᏓ ᏕᎦᏚᎲ ᎨᎪᎵᏨ ᎨᏒ, ᏏᏆ ᎭᏫᏯ ᎤᏅᏂᏍᏙᏗ, ᎦᏙ ᏓᎾᏍᎪᏍᎬ, ᎭᎾ ᏓᏃᏔᏍᎬ, ᎠᏓ ᏱᏚᏓᏪᎳᎪᏅ ᎭᎾ ᏫᏓᏂᎸᎥᏍᎬ ᏏᏆ, ᎦᏃᏍᎦ ᏃᎴ ᎩᎦᎨ ᎦᏓᏆᏟ ᎬᏗ ᏓᏄᏒᏗᏍᎬ.\nᏚᎴᏁᏃ, ᎤᏃᎴ ᎤᏍᎦᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎥᏓᎵ, ᏙᏉ; ᎤᏓᏥᎾᏍᏛᎯ ᎿᎵᏍᏓ. ᎦᏃᎸᎥᏍᎬᏃ ᎤᏑᎵᎪᏤᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏥᎾᏍᏛᎯ ᏄᎵᏍᏔᏁᎢ.\nᎦᏐᎯ ᎤᏲᏓᎩᏍᎨ, ᎠᏦᏴ ᏗᏯᏖᏃ ᏫᏚᏣᎪᏎ.\n“ᎤᏙᎯᏳ ᏗᏦᎯᏍᏗ ᏂᎦᎵᏍᏗᎭ,” ᎤᏛᏁ ᏌᎳᏓ.\nᎡᏝᏪ ᎨᏎᎢ.\nᎣᏂᏃ ᏧᎾᏄᎪᏤ ᏧᏓᏏ ᎨᎵᎵ ᎡᎯ ᏣᎾᏎᎵᏙᎮ ᎢᏳᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᏥᏚᏘᎿᏫᏛᎮᎢ, ᎾᏍᎩᏃ ᎾᏍᏉ ᏥᎤᏲᎱᏎᎢ ᎠᎴ ᏂᎦᏛ ᎾᏂᎥ ᎬᏬᎯᏳᏅᎯ ᏧᎾᏗᎦᎴᏲᏤᎢ.\n”ᎤᎵᏍᏆᎸᏗ ᎠᏆᏖᎸᏂᎸ, ᎭᎴᏉ ᏦᏕᏆᏠᏥ ᏂᏥᏴᏂᎸ,” ᎤᏪᎷᏁ.\nᎢᎸᏍᎩᏃ ᏫᏄᏕᏘᏴᎲ ᏗᏆᏤᎵᎦ ᏴᏫ ᏕᏥᏲᎮᎸᎩ ᎨᏥᏁᎸᎯ, ᎠᎴ ᎠᎩᏲᎸᎩ ᎠᏥᎸᎨᎳᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎪᎯ ᎨᏒ ᎤᏲ ᎢᏣᏓᏅᏔ; ᎠᏎᏃ ᏔᎵᏁ ᏛᏨᎪᎢ, ᎠᎴ ᎢᏥᎾᏫ ᏛᎵᎮᎵᏥ, ᎢᏣᎵᎮᎵᎬᏃ ᎥᏝ ᎩᎶ ᏴᎨᏥᎩᏏ.\n“ᎠᏎᏗ ᏧᎾᏛᎯᏍᏗ ᎯᎸᎢᏴ,” ᎤᏛᏁ ᎡᎶᏗ.\nᎠᏍᎦᏰᎬᏍᏔ ᎠᏌᎻᏓ ᏃᎴ ᏄᏓᎴ ᎠᏍᎦᏰᎬᏍᏔ ᎾᎥᏂ ᏓᏂᏙᎬ ᎠᎾᏟᏃᎮᏍᎬ ᏃᎴ ᎠᎾᏘᏲᎯᎲ ᏅᏩᏍᏛ.\nᏂᏗᏍᎦᏅᎾ ᎠᎴ ᏚᏳᎪᏛ ᎢᎨᏓᏍᏗᏱ ᎠᎦᏔᎲ ᏂᎪᎯᎸ ᎢᏓᎴᏂᏙᎲᎢ.\nᏦᏩ ᎾᏍᎩ Ꮎ ᏧᎾᏨᏍᏗ ᎤᏓᏅᏘᏳ ᎨᏒ ᎢᏳᏍᏗ, ᎠᎴ ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎬᏂᎨᏒ ᎤᏕᎰᎯᏍᏙᏗᏱ, ᎤᏕᎵᏛᏉ ᎢᏴᏛ ᏮᏓᏥᏯᎧᏂ, ᎤᏪᎵᏎᎢ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏣᏂ ᎤᏃᎮᎸᎯ, ᎾᎯᏳ ᎠᏂᏧᏏ ᏥᎷᏏᎵᎻ ᏙᏧᏂᏅᏒ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᎴ ᎠᏂᎵᏫ ᎬᏩᏛᏛᏗᏱ, ᎯᎠ ᎢᏳᏂᏪᏍᏗᏱ; ᎦᎪ ᏂᎯ?\nᎢᏳᏃ ᎩᎶ ᎢᏤᎲ ᎪᎱᏍᏗ ᏳᎭ ᏅᏩᏓᎴ ᎤᏰᎢᎵᏓᏍᏙᏗ, ᏰᎵᏉᏍᎪ ᏂᏚᏳᎪᏛᎾ ᎢᏯᎾᏛᏁᎯ ᏚᏃᎸ ᏱᏕᏣᏓᏰᎢᎵᏓ, ᎥᏝᏃ ᎤᎾᏓᏅᏘ ᏚᏃᎸᎢ?\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏴᎦᏰᎦᏄᎪᏩ, ᎬᏂ ᎠᏓᏙᎵᏍᏔᏅᎯ ᎠᎴ ᎠᎹᏟ ᎬᏅᎯ ᏥᎨᏐᎢ.\nᎯᎠᏃ ᏥᏌ ᏄᏪᏎᎴᎢ; Ꭷ ᏞᏍᏗ ᎩᎶ ᏥᎯᏃᏁᎵ, ᎮᎾᏉᏍᎩᏂ, ᏫᏣᎪᏩᏛ ᎠᏥᎸ-ᎨᎶᎯ, ᎠᎴ ᎠᎵᏍᎪᎸᏙᏗ ᏫᎲᎦ ᏱᏏ ᎤᏁᏨ ᎠᎵᏍᎪᎸᏙᏗ ᎾᏍᎩ ᎤᎾᏙᎴᎰᎯᏍᏙᏗ.\nᎿᏉᏃ ᎾᎯᏳ ᎤᎾᎴᏅᎲᎩ ᎤᏂᏃᎮᎸᎩ ᎤᏂᎯᏍᏗᏱ.\nᎾᏍᎩᏰᏃ ᎢᏳᎾᏍᏗ ᎥᏝ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ ᎪᎱᏍᏗ ᏯᎾᏛᏁᎭ, ᎤᏅᏒᏉᏍᎩᏂ ᎤᏂᏍᏉᎵᏱ; ᎠᎴ ᎤᏬᏚᎯ ᎠᎴ ᎣᏍᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒ ᎠᏅᏗᏍᎬᎢ ᏓᏂᎶᏄᎮᏍᎪ ᏧᏂᎾᏫ ᎾᏁᏯᏔᎲᎾ.\nᎠᎾᎵᏍᏓᏴᎲᏍᎬᏃ ᏥᏌ ᎦᏚ ᎤᎩᏒᎩ, ᎠᎴ ᎤᎵᎮᎵᏨᎩ, ᎠᎴ ᎤᎬᎭᎷᏴᎩ, ᎠᎴ ᏚᏁᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ, ᎯᎠᏃ ᏄᏪᏒᎩ; ᎢᏥᎩ, ᎢᏥᎦ, ᎯᎠ ᎾᏍᎩ ᎠᏴ ᏥᏰᎸᎢ.\nᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏓᏆᎴᎳ ᏧᎶᎯᏍᏗ ᏍᏈᏍᏓ ᏓᎮᎢ ᏓᏆᎴᎳ, ᏑᎾᎴ ᎠᎴᏂᏍᎩ ᎤᏒᎯ ᏩᏍᏗ ᏕᎦᎷᎬ - “ᏧᏓᎴᏅᏓ ᏓᏆᎴᎳ.\nᎤᏚᎨᎢ ᏙᏱ ᎤᏪᏅᏍᏗ ᏲᎾ ᎤᏤᏍᏙ ᎠᏂᏐᎢ ᏗᏂᏲᏟ ᏧᏁᎸᏙᏗ ᏣᏉ ᎠᏂᎪᏕᏍᎩ ᎤᎾᏤᎵ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ ᎤᏪᏅᏍᏗ ᏃᎴ ᏧᎦᏙᏍᏙᏗ ᎠᏂᎾᏌᎢ.\n”ᎭᏩ,” ᎤᏛᏁ ᏐᏉ ᎤᏃᏕᎾ ᎠᏓᎯ, ”ᎣᏏᏉᏃ ᏄᎵᏍᏔᏏ ᏌᎳᏓ, ᎣᏥᏐᎢᎾ?\nᎠᏯᏛᎥ ᎦᏅᎯᏓ ᎠᏰᎳᏍᏗ ᎬᏗ, ᎢᏴ ᎤᏌᎵᏓᏁ, ᎠᏓ ᏓᏓᏧᎬ ᏭᏓᎩᏅᏎᎢ.\nᏫᏓᏟᏃᎮᏗ ᏭᏓᏐᎴᎢ ᎠᎳᏂ ᏃᎴ ᏭᏚᏏᎳᏛᏁᎴ ᎠᏂᎴᏴᏍᎩ.\nᎣᎭᏁᎯ, ᎠᎩᏲᎯᏍᏔᏅ ᎠᏆᏓᏅᏖᏗᏍᎬ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎵᏅᏟ ᏂᎯ ᎾᏍᏉ ᏗᏥᏲᎱᏒᎯ ᏂᏣ-ᎵᏍᏔᏅ ᏗᎧᎿᏩᏛᏍᏗ ᎤᎬᏩᎵ, ᎦᎶᏁᏛ ᎠᏰᎸ ᎢᏳᏩᏂᏌᏛ; ᎾᏍᎩ ᏅᏩᏓᎴ ᏗᏣᏨᏍᏗᏱ ᎠᏰᎸᏒᎩ, ᎾᏍᎩ ᎠᏲᎱᏒ ᏣᎦᎴᏔᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎦᏔᏔᏅᎯ ᎡᏗᎾᏄᎪᏫᏎᏍᏱ ᎤᏁᎳᏅᎯ.\nᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬ ᎥᏆᎸᎥᎢ ᎤᎬᏫᏳᎯ ᎦᏁᎸ ᏂᎬ ᎬᏂᎨᏒ ᏄᎵᏍᏔᏅ, ᎠᎴ ᏂᎬᎾᏛᏉ;\nᏲᎾ ᏥᏁᎵᏍᎨ ᎢᏳᏪᏍᏘ ᎤᏣᎴᏓ, ᎤᏁᎢᏍᏔᏅ ᎯᎸᎢᏴ ᏥᏃᎯᏎᏗ ᎧᏃᎨᏗ ᎤᏢᎾᏔ.\nᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎾᏄᏬᏍᏕ ᎬᏂᎨᏒ ᏄᎾᏛᏁᎴᎢ; ᎠᎴ ᎤᏂᏁᎢᏍᏔᏁ ᎤᎵᏍᏆᏕᏗᏱ ᎨᏒ ᏥᎷᏏᎵᎻ.\nᎢᎳᏍᏓ ᎪᎴᏂᏗ ᏓᏳᏗᎩᏴᎩ, ᏠᏆᎹᏍᎩᏂ ᎹᎵᏓ ᏓᏥᏯᎧᎯᏴᎩ ᎤᏢᎩ.\nᏧᏤᎵ ᎠᏂᎬᏂᎨ ᏧᎾᏌᎢ ᏃᎴ ᎦᏲᏟ ᎠᏂᏴᏫᏯ ᏧᎾᏁᎸᏗ ᎤᎾᏓᏕᏴᏍᏛ ᎤᏬᏢ, ᎤᎾᏛᎦᏍᏛ ᏄᏪᏒ ᎤᏁᏝᏅᎯ, ᏥᏳᎪᏗ ᎢᏳᎾᏛᏁᏗ ᎠᏂᏴᏫ.\nᏥᎪᎵᏰᏍᎬ ᏥᏰᎵᏒ ᎦᏕᎶᎣᏍᎬ ᏳᏙᎯᏳᎲᎾ ᎨᏒ.\nᏧᎵᎩᏒ ᏗᎦᎳᎩᎡᏗ, ᎦᏓᏅᏖᏍᎬ ᏍᎩᎾᎾ ᎢᏯᏆᏛᏁᏗ.\nᎿᏉᏃ ᏉᎳ, ᎤᎬᏫᏳᎯ ᎤᎵᏍᎫᏫᏎᎸ ᎤᏁᎢᏍᏗᏱ ᎤᎵᏍᎪᎸᏓᏁᎸ, ᎯᎠ ᏄᏪᏒᎩ; ᏏᎦᏔᎯᏳ ᏥᎩ ᎢᎸᏍᎩ ᏧᏕᏘᏴᏛ ᏚᎪᏓᏁᎯ ᎢᎬᏩᎵᏍᏔᏅᎯ ᎨᏒ ᎯᎠ ᏑᎾᏓᎴᎩ ᏴᏫ, ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏓ ᎤᏟ ᎤᎦᎵᏍᏗᏳ ᏴᏫ, ᎾᏍᎩ ᏅᏓᎦᎵᏍᏙᏓ ᎤᏟ ᎤᎦᎵᏍᏗᏳ ᎦᏓᏅᏓᏓ, ᎠᏋᏒ ᎦᎵᏍᏕᎵᏍᎬ ᎬᎩᏁᎢᏍᏗ ᏥᏂᎦᎵᏍᏓ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏨᏒ ᏂᏣᏪᏒ ᏓᎬᏔᏂ ᏙᏓᎬᏳᎪᏓᏁᎵ ᏣᏲ ᎡᏣᏅᏏᏓᏍᏗ. ᎯᎦᏔᎲᎩ ᏥᏍᏓᏱᏳ ᎨᏒᎢ, ᏥᎩᏍᎬ ᎾᏍᎩ ᎠᎩᏅᎯ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏥᏍᎫᏕᏍᎬ ᎾᏍᎩ ᎠᎩᏫᏒᎯ ᏂᎨᏒᎾ ᎨᏒᎢ;\nᏙᏱᏗᏢᏰᏃ ᎠᏁᏙᎭ ᎩᎶ, ᎠᎴ ᏗᎾᏙᏂᏍᎩ, ᎠᎴ ᎤᏂᏁᎫᏥᏛ, ᎠᎴ ᏗᎾᏓᎯᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏗᎾᏓᏙᎵᏍᏓᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎣᏏᏳ ᎤᏂᏰᎸᎯ ᎦᏰᎪᎩ ᎨᏒ, ᎠᎴ ᎦᏰᎪᎩ ᎠᏃᏢᏍᎩ.\n“Ꭷ, ᎯᏓᎴᎾ ᏕᏓᏦᏍᎬᎢ, ᎯᏗᏃᎲᎳ ᎢᎦᏛᏁᏗ.\nᎬᏩᏍᏓᏩᏗᏙᎯᏃ ᎤᎾᏅᏓᏛᎩ ᎯᎠ ᏂᎬᏅ ᎪᏪᎸᎢ; ᏣᏤᎵ ᎠᏓᏁᎸ ᏓᏇᎷᎬ ᎠᎩᏯᎣᏅ.\nᎢᏥᎨᏴ, ᎢᏨᏒ ᏗᎨᏥᏰᎯ ᏕᏦᎯᏳᏎᏍᏗ, ᎤᎬᏫᏳᎯ ᎪᎯᏳᏗ ᏥᎩ ᎾᏍᎩᏯᎢ.\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᎴ ᎾᏍᎦᏅᎾ ᎾᏍᎩ ᎾᎤᏪᎳᏗᏍᏗᏍᎩ ᎢᎬᏱᏱ ᏗᎴᎯᏐᏗ ᎨᏒᎢ; ᎾᏍᎩ ᎥᏝ ᎪᎱᏍᏗ ᏴᎬᏩᏅᎦ ᏔᎵᏁ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᏥᎸᏍᎩᏂ-ᏗᏁᎶᎯ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎴ ᎦᎶᏁᏛ, ᎠᎴ [ᎦᎶᏁᏛ] ᎢᏧᎳᎭ ᎤᏂᎬᏫᏳᎯ ᎨᏎᏍᏗ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ.\nᎤᏙᎯᏳ ᎤᎨᏳᎯ ᎨᏎ ᏫᎵᎻ ᏲᎾ ᎤᏤᏍᏙ.\nᎤᏣᏘᏃ ᎤᏂᏲᏠᎯᏎᎸ, ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ ᎠᏍᎦᎢᎲᎢ ᏉᎳ ᏱᎬᏪᏓᎦᎸᎥᎦ ᎡᎵᏍᎬᎢ, ᏚᏁᏤᎸᎩ ᎠᏂᏯᏫᏍᎩ ᎤᏁᏅᏍᏗᏱ ᎠᎴ ᏫᏚᎾᏑᎦᎸᏙᏗᏱ, ᎠᎴ ᎤᏂᏴᏔᏂᎯᏍᏗᏱ ᏗᏐᏴᎢ.\nᎤᏍᏗ ᎨᏎ ᏏᏆ, ᎠᏎᏃ ᎩᎳᏈᏴ ᎤᏙᎴᏇ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᎦᎾᏄᎪᏫᏍᎦ ᎢᎩᎨᏳᎯᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏏ ᎢᏗᏍᎦᎾ ᏥᎨᏎᎢ ᎦᎶᏁᏛ ᎢᎩᏲᎱᎯᏎᎴᎢ.\n”ᏃᏉ ᎤᏍᏆᎸ ᎢᎦᏛᏅᎢᏍᏙᏗ ᏗᎩᎳᏫᏨᏍᏗ.\nᎠᏂᏐᎢᏃ ᎬᏩᎪᎵᏰᏍᎬ, ᎬᏩᏔᏲᏎᎴ ᏧᎾᏄᎪᏫᏎᏗᏱ ᎤᏰᎸᏛ ᎦᎸᎳᏗ ᏅᏓᏳᎶᏒᎯ.\nᎤᏩᏅᏤᏃ ᏗᎤᏠᎠᏎᎢ, ᎠᎴ ᎤᎵᎮᎵᏨᎯ ᏚᏓᏂᎸᏤᎢ.\nᏕᎦᎵᏦᏩᏛ ᏃᎴ ᏓᏓᏁᎸ ᏧᏏᏩ ᏃᎴ ᎤᎯᏐᏗ ᏂᏚᏍᏕᎢ.\nᎠᎴ ᏧᏄᎪᏨ, ᎤᏪᏅᏎ ᎣᎵᏩᏲ ᎤᏌᎯᎸᎢ ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏒᎢ; ᎠᎴ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎾᏍᏉ ᎬᏩᏍᏓᏩᏛᏎᎢ.\nᏍᏔᏯ ᎤᎦᎭᎾᏅ, ᎦᏣᏃᏍᏓ ᎡᎳᏗ, ᎤᏃᎴ ᎠᎹ ᏥᏄᎵᏍᏔᏃ ᎢᏳᏍᏗ.\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎩᎶ ᎤᏁᎳᏅᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏂᏓᏓᏂᎸᎬᎾ ᎢᎨᏎᏍᏗ ᎾᏍᎩᏯ ᎠᏲᎵ ᏥᏓᏓᏂᎸᎪᎢ, ᎥᏝ ᎾᎿ ᎤᏴᏍᏗ ᏱᎨᏎᏍᏗ.\nᎠᏲᏟ ᎦᎭᏁᎮ, ᎤᏁᏝᏅ ᎨᏎ ᎠᏗᏍᎨ ᎡᎶ ᎤᏲᏍᏙᏗ ᎤᏁᏝᏅ ᎡᏘᏴ ᏄᎾᏕᏂᎵᏙᎸ ᏱᏄᎾᏛᏁᎸᏓ ᏱᎩ ᏃᎴ ᏁᎳᎩ ᎤᏁᎵᏍᏗ ᏗᎬᏅ ᏗᎭᎾᏬ, ᏗᎦᎶᏇ, ᏗᎦᏓᎷᎩᏍᏗ ᏃᎴ ᏂᎦᏓ ᏔᎷᎩᏍᎩ ᏗᎪᏒᏔᏅ ᏃᎴ ᎤᏂᏲᎯᏍᏙᏗ ᏓᎶᏂᎨ ᏎᎷ ᏓᎾᏛᎯᏗᏍᎬ, ᏎᎷᏯ ᏧᎾᏛᎯᏍᏙᏗ ᎤᏩᏌ ᏃᎴ ᎤᏂᏲᎯᏍᏙᏗ ᏗᏍᏙᏍᏗ ᎨᏥᏍᏙᎡᎲ ᏎᎷ, ᎤᏅᏌ ᎤᏂᏍᏙᏍᏗ ᎧᏃᎾ ᎬᏗ ᏃᎴ ᏚᏃᏒᎯᏍᏙᏗ ᏧᏪᏘ ᏕᎦᏛᎲ ᏃᎴ ᏚᎾᏁᏍᎨᏗ ᏧᎾᏦᎯᏍᏗ ᎦᏓ ᎦᏓᏍᎬᎢ ᎤᎾᎴᏅᏗ ᏧᏪᏘ ᎠᏛᏁᎸᏗ ᏃᎴ ᎠᎵᏍᎩᏍᏗ.\nᎯᏍᎩᏃ ᏌᏙᏂᎩ, ᏑᏓᎵᏁᏃ ᏌᏗᏱ, ᎦᎵᏉᎩᏁᏃ ᎩᏐᎳᏗ, ᏧᏁᎵᏁᏃ ᏇᎵ, ᏐᎣᏁᎵᏁᏃ ᏙᏆᏏ, ᎠᏍᎪᎯᏁᏃ ᏟᏌᏇᏌ, ᏌᏚᏏᏁᏃ ᏤᏏᏂ, ᏔᎳᏚᏏᏁᏃ ᎠᎻᏗᏏ.\nᏩᎦ ᏓᏂᎾᏆᏘᏍᎨᎢ.\nᎠᏏᏉ ᏕᎦᏬᏁᏗᏍᎬ ᏴᏫ, ᎬᏂᏳᏉ ᎤᏥ ᎠᎴ ᎠᎾᎵᏅᏟ ᏙᏱᏢ ᎠᏂᏙᎾᎥᎩ, ᎤᎾᏚᎵᏍᎬᎩ ᎬᏩᎵᏃᎮᏙᏗᏱ.\nᎠᎴ ᏗᏍᏚᎢᏍᏗ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᏧᏤᎵ ᏙᏓᎬᏕᎵ, ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎭᎸᎢᎮᏍᏗ ᎡᎶᎯ, ᎦᎸᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ, ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎭᎸᎩᏍᎨᏍᏗ ᎡᎶᎯ ᎦᎸᎩᏍᏗ ᎨᏎᏍᏗ ᎦᎸᎳᏗ.\nᎾᏍᎩ ᎺᎠᏗ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎹᏗᏓᏯ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏏᎻᏯ ᎨᏎᎢ, ᎾᏍᎩ ᏦᏩ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏧᏓ ᎤᏪᏥ ᎨᏎᎢ,\nᎨᏍᏗ ᏂᎦᏓ ᏱᏓᏥᏃᎮᎵ ᎤᏦᎠᏎᏗ ᎤᎶᏒ ᎠᏆᏓᏅᏖᏗ ᎾᏍᎩᏴ ᏚᏙᏓᏋ, ᎯᎠ ᏥᏂᏥᏩ, ᏧᏒᎯᏓ ᏥᏐᎯ ᏥᏅᎬ, ᏕᎦᎦᏙᏍᏛ ᏃᏈᏏ ᏚᏓᏴᎳᏛ ᏕᎦᎶᏍᎬ ᏚᏩᏂᎦᏢ ᏃᎴ ᎦᏓᏅᏖᏍᎬ ᎨᎵ ᏱᏭᎷᏨ ᏭᏕᎵᎬ ᏃᎴ ᏥᏍᎦᎢᎲ ᏱᏭᎷᏨᎾ.\nᏣᏍᎪᏃ ᏱᏣᏓᏅᏖᏍᎪᎢ ᏓᎩᏯᏪᎬ ᎢᏨᏍᏕᎵᏍᎬ ᎦᏓᏏᏙᎲ ᎢᎪᎯᏓ? \nᎠᏂᏳᏩᏁᎦ ᏄᎾᏍᏛ ᏱᏂᎦᎵᏍᏔᎾ ᎤᏩᏌ ᏓᏓᏂᏱ ᎤᏁᎵᏎ.\nᏞᏍᏗ ᎩᎶ ᎤᏕᎵᏛ ᏗᏂᏏᎲᏍᎩ ᏱᏣᏓᏑᏰᏍᏗ, ᎠᎴ ᎠᏍᎦᎾ ᏴᏫ, ᎢᏐ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎠᏍᎦᎾ ᏴᏫ, ᎢᏐ ᎾᏍᎩᏯᎢ, ᎤᏍᎩ ᏌᏉᏉ ᎢᏯᎵᏍᏓᏴᏗ ᏥᏚᎬᏩᎶᏔᏁ ᏧᎾᏗᏅᏎ ᎢᎬᏱ ᎡᎯ ᎨᏒᎢ.\nᏣᏂᏃ ᎾᏍᏉ ᎢᏃᏂ ᏓᏓᏬᏍᎬᎩ, ᏎᎵᎻ ᎾᎥᎢ, ᎾᎿᏰᏃ ᎤᏣᏛᎩ ᎠᎹ. ᎠᏂᎷᎬᎩᏃ ᎠᎴ ᏕᎨᎦᏬᏍᎬᎩ.\nᎠᏯ ᎠᎩᏅᏫᏍᏔᏅ ᎠᏆᎦᏎᏙᏗ ᎠᎬᏱ, ᏅᏙ ᏭᏕᎵᎬ ᎠᎴᏂᏍᎩ ᎠᏂᏏᏗ ᎠᏍᏆᎵᏍᎬ ᎢᎪᎯᏛ, ᏄᏓᏅᏖᎴᏗ, ᎨᏍᏗ ᎪᎰᏍᏗ ᎬᏙᏗ ᏱᎨᏎ ᏯᏆᏚᎵᏍᎬᎾ ᎨᏎ ᎠᎦᏎᏙᏗ.\nᎠᎴ ᎤᏁᎳᏫᏎᎲ ᎤᎪᎲ ᎠᏍᎦᏯ ᎡᏂᎾᏯ ᏧᏙᎢᏛ ᎤᏴᎵᎸ ᎠᎴ ᎤᏏᏔᏛ ᎥᎤᎪᏩᏛᏗᏱ.\nᎠᎴ ᏅᏩᏓᎴ ᏗᎧᎿᏩᏗᏙᎯ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎾᎥ ᏓᏳᏄᎪᏨᎩ, ᎾᏍᎩ ᎤᎲᎩ ᎠᏓᏅᏖᏍᎬᏉ ᎢᏳᏩᏗᏱ ᎠᏥᎸ; ᎠᎴ ᎠᏍᏓᏯ ᎤᎵᏍᏓᏁᎸᎩ ᎪᏍᏓᏯ ᎠᏍᎫᏕᏍᏗ ᎦᏁᎯ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎠᏍᎫᏕᏍᏗ ᏣᏤᎵ ᎪᏍᏓᏯ ᎲᏓ, ᎠᎴ ᎯᏟᏌ ᏖᎸᎳᏗ ᎡᎶᎯ ᎤᏛᏒᎯ; ᏖᎸᎳᏗᏰᏃ ᎿᏉ ᎤᏅᎾᏏᏌᏛ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎯᏁᎨᏍᏗ, ᎾᏍᎩ ᎦᎨᎫᎢᏍᏙᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᎩ ᎾᎿ ᏥᏚᏂᎸᏫᏍᏓᏁᎭ ᏗᏟᎶᏍᏔᏅᎯ ᎠᎴ ᎤᏓᏩᏗᏍᏙᏛ ᎦᎸᎳᏗ ᎡᎯ ᎦᎵᏦᏛᎢ, ᎾᏍᎩᏯ [ᎤᏁᎳᏅᎯ] ᎼᏏ ᏧᏁᏤᎴ ᎾᎯᏳ ᎦᎵᏦᏙᏗ ᏨᏗᎪᏢᏂᏎᎢ; ᎭᎦᏌᏯᏍᏔᏅᎭ ᏧᏛᏁᎢ, ᏕᎰᏢᏍᎬ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎾᏍᎩᏯ ᏗᏟᎶᏍᏙᏗ ᎠᎲ ᎾᏍᎩ ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸ ᏅᏁᎸᎭ.\nᎢᎬᏱᏍᎩᏂ ᎢᏥᏲᎦ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎠᎴ ᎤᏤᎵ ᏚᏳᎪᏛᎢ, ᎯᎠᏃ ᏂᎦᏗᏳ ᏓᏰᏥᏁᏉᎡᎵ.\nᎠᏥᎸ ᎤᏍᎦᏎᏗ ᏣᏅᏜᏗᏍᎨᎢ, ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᏣᎾᏗᏫᏎᎮᎢ, ᏗᏂᏩᎦᎳ ᎨᏒ ᏧᎾᎵᏂᎩᏛ ᏥᏂᎨᎬᏁᎮᎢ, ᎾᏂᏍᎦᎢᎲᎾ ᏂᎾᎾᎵᏍᏗᏍᎨ ᏓᎾᎵᎲᎢ, ᏥᏓᏂᎨᎯᏙᎮ ᏅᏩᎾᏓᎴ ᎠᏂᏯᏫᏍᎩ.\n“ᏱᏕᏍᎩᏃᎩᎢᎾ, ᎧᏃᎮᏍᎩ ᏗᎩᏏ ᏃᎴ ᎤᎵᏏᎬᎢ.” ᎤᏍᏗᏰᏔᏁ.\nᎪᎱᏍᏗ ᏃᏣᏛᏁᎲᎾ ᎬᏩᏓᏙᏕᏍᏙᏗ ᎨᏒᎢ, ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᏐᏅ ᎬᏩᏂᏃᎮᏗ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ;\n“ᏥᎧᏍᎨᏂ, ᎤᏇᏓᏢ ᏚᏦᎯᏍᏛ ᏥᎧᏍᎨᏂ, ᏦᎢᏁ ᏚᏦᎯᏍᏛ, ᏥᏂᎨᏂ, ᏅᎩᏁ ᏚᏦᎯᏍᏛ, ᎠᏆᎳᏏᏕᎾ ᏃᎴ ᎯᏍᎩᏁᎢ ᏚᏦᎯᏍᏛ.” \nᎿᏉᏃ ᎾᎥᏂᏳ ᎨᏎ ᎤᏅᏂᏍᏗᏱ ᏚᏅᏎ ᏧᏅᎢᏓᏍᏗ ᏠᎨᏏ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏗᏁᎲᎢ, ᏚᏂᏁᏒᏎ ᎤᎾᏓᏛᏅᎯ.\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᏧᏗᏱ ᏅᏓᏳᏂᎶᏒᎯ ᏚᏁᏲᏁ ᎠᎾᏓᏅᏟ ᎯᎠ ᏄᏂᏪᏎᎢ; ᎢᏳᏃ ᏤᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎼᏏ ᏂᎦᏪᏍᎬᎢ, ᎥᏝ ᏴᎦᏰᏥᏍᏕᎸ.\n“ᏃᏉᏗᎾ ᎯᏥᏧᏣ!” ᎤᏪᎷᏁ ᎰᎻ.\nᎾᏍᎩ ᏔᏘᏄᎦ, ᎠᎴ ᎢᏧᎳᎭ ᎢᏣᏓᏅᎦᎸ, ᎠᎴ ᎢᏧᎳᎭ ᎢᏣᎫᏴ, ᎾᏍᎩᏃ ᏗᏂᏍᎪᎵ ᏕᎠᎾᎵᏍᏙᏰᎲᎭ; ᎠᎴ ᏂᎦᏛ ᎠᎾᏙᎴᎰᏒᎭ ᏄᏍᏛ ᎨᏣᏛᎦᏁᎸᎢ ᎠᏎᏉᏉ ᎨᏒᎢ, ᎠᎴ ᎠᎾᏙᎴᎰᏒᎭ ᏨᏒ ᎾᏍᏉ ᏚᏳᎪᏛ ᎭᎴᏂᏙᎲᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎯᏍᏓᏩᏕᎬᎢ.\nᎤᎩᏨᏓ ᏑᎾᎴ ᎤᏰᏨ, ᏯᏓᏅᏍᎬᎾ ᎤᏬᏢ ᏰᎵ ᎪᎯᏛ ᏧᏳᎪᏗ ᏂᎬᏁᎲ ᎤᏓᏅᏖᏗ.\n“ᎨᎵᎠ ᎣᏍᏓ ᏯᏰᎸᎾ ᎰᎻ.”\nᎾᏍᎩ ᎾᎯᏳ ᏥᎨᏎ ᎦᎶᏁᏛ ᏂᏤᎲᎾ ᎨᏎᎢ, ᏂᏤᎸᎾᏉ ᎨᏎ ᎢᏏᎵ ᎠᏰᎵ ᎤᏃᏢᏒᎢ, ᎠᎴ ᎢᏥᎪᏁᎳ ᎨᏎ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎠᏚᎢᏍᏛᎢ, ᎤᏚᎩ ᏂᏨᏒᎾ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏂᏤᎲᎾ ᎨᏎ ᎠᏂ ᎡᎶᎯ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏥᏌ ᎤᏍᏆᏛ ᎾᏍᎩ ᏂᎦᏪᏍᎬᎢ, ᎤᏂᏍᏆᏂᎪᏎ ᏓᏕᏲᎲᏍᎬᎢ.\nᎠᎴ ᏧᏓᏏ ᎢᏍᎦᎳᏗ, ᎾᏍᎩ ᏍᏉ ᏧᎶᏄᎮᎴᎢ; ᎠᏓᏁᎸᏃ ᏭᏂᎶᏎᎢ.\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏴ ᎾᏍᏉ ᏑᏓᎴᎩ ᏓᏨᏯᏛᏛᏂ; ᎠᎴ ᏍᎩᏃᎲᏏ;\nᏐᏉ ᎤᏓᏏᏂᏕᎾ, ᏔᎵᎭ ᏧᏙᏓᏆᏓ ᎣᏁᎯ ᏣᏓᏴᎳᏔᏍᎨᎢ ᏗᎪᏪᎳᏅ ᏌᎳᏓ ᏚᏏᎳᏛ, ᏧᎾᏦᎯᏍᏗ ᏂᎦᏓ ᎨᏥᎾᏌᎢ ᏚᏒᏍᏔᏁ ᎧᏅᏂᏍᎩ ᎭᏫᏂ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ.\nᏃᏗ ᎡᎶᎯ ᏣᎵᏍᏆᏗᏍᎪ ᎢᏳᏍᏗ ᏄᎵᏍᏔᏁᎴ, ᎫᏩᏕᏨ ᏌᎳᏓ ᏧᏤᎵ ᏗᏂᏲᏟ.\nᎠᎴ ᎯᎠ ᏂᏥᏪᎭ, ᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᎤᏂᏅᏏᏓᏍᏗ ᏄᎵᏍᏔᏅᎩ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎨᏒ ᎤᏁᎳᏅᎯ, ᏧᏍᏓᏱᏗᏍᏗᏱ ᎨᏥᏚᎢᏍᏓᏁᎸᎯ ᎨᏒ ᎠᏂᎦᏴᎵᎨᎢ.\nᎿᏉᏃ ᎠᎦᏘᏃᎮᎸᎩ ᎠᏍᎩᎾ ᎤᏯᎢ ᏗᎨᏫ ᎠᎴ ᎤᏩᎨᏫ, ᎠᎴ ᎤᏅᏩᏅᎩ; ᎾᏍᎩᏃ ᏗᎨᏫ ᎠᎴ ᎤᏩᎨᏫ ᎤᏬᏂᏒᎩ ᎠᎴ ᎤᎪᎲᎩ.\nᎠᎴ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎩᎶ ᎠᏴ ᏂᏗᏥᏲᏕᏍᏗᏍᎬᎾ. ᎢᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏳᏩᏂᏌᏛ ᎡᎦᎫᏴᏛ ᏥᎩ ᎤᎩᎬ ᎬᏔᏅᎯ, ᎡᎩᏙᎵᏨᎯ ᎢᎩᏍᎦᏅᏨᎢ, ᎾᏍᎩᏯ ᏄᏧᏈᏍᏛ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ;\nᏥᏌ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᎪ ᏔᏕᏲᎲᏍᎩ ᎢᏏᎵ ᎠᏁᎲᎢ, ᏂᎦᏔᎲᎾᏃ ᎢᎩ ᎾᏍᎩ ᎯᎠ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎤᎾᏓᏅᏘ, ᎦᏙᎯᏰᏃ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ.\nᎬᏂ ᎨᏣᏍᎦᎩ ᏗᏣᎳᏏᏗᏱ ᎦᏍᎩᎶ ᏂᎦᏥᏴᏁᎸᎭ.\nᎢᏳᏰᏃ ᎡᎶᎯ ᏱᎦᏰᎮᎢ, ᎥᏝ ᎠᏥᎸᎨᎶᎯ ᏱᎦᎨᏎᎢ, ᎢᎠᏁᎭᏰᏃ ᎠᏥᎸ-ᎠᏁᎶᎯ ᎠᏓᏁᏗ ᎨᏒ ᎠᎾᎵᏍᎪᎸᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎬᏅ ᎾᏍᎩᏯᎢ;\nᎠᎴ ᎾᏍᎩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎠᎫᏴᏙᏗ ᎠᏴ ᎢᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎥᏝ ᎠᏴᏉ ᎢᎬᏒ ᎢᎩᏍᎦᏅᏨᎢ, ᎾᏍᏉᏍᎩᏂ ᎡᎶᎯ ᏂᎬᎾᏛᎢ.\nᏤᏍᏗ ᎦᏲᏟ ᎢᏯᏔᏬᏍᏔᏅ ᏱᏕᏍᏗᏒᏁᏍᏗ.\nᎨᎯᏃ ᎢᏴᏛ ᏗᏁᏙᎮ ᎤᏂᏣᏘ ᏑᎾᏓᏡᎩ ᏏᏆ ᎠᎾᎵᏍᏓᏴᏂᏙᎮᎢ.\nᎨᏍᏗ ᏱᏛᎣᏥᎩᏏ ᎣᎩᏲᎰᏎᎸ.\nᏅᏁᎰᎾ ᏕᎯᏏᎳᏛᎥᏍᎬ, ᎭᏂᏉ ᏥᏅᎨᏍᏗ ᎬᏯᎦᏙᏍᏕᏍᏗ.\nᎤᏂᏍᏈᏍᏓᏗ ᎾᏂ.\nᎢᎦᏛᏃ ᎾᎿ ᎠᏂᏙᎾᎢ ᎾᏍᎩ ᎤᎾᏛᎦᏅ, ᎢᎳᏯ ᎠᏯᏂᎭ ᎯᎠ, ᎤᎾᏛᏁᎢ.\nᎣᎩᎶᎨᏒ ᏧᎾᏓᎴᏅᏓ ᎤᏂᏥᎸ ᏙᎦᏛᎯᏍᏗ.\nᎠᏎᏃ ᎤᏐᏱ ᎤᎾᏚᎵᏍᎨ Ross ᏃᎴ Ridge, ᎤᎾᏕᏗᏉ ᎠᏂᏣᎳᎩ, ᏗᏂᏓᎭᏃᏫᎨᏎ, ᎠᏎᏉ ᎦᎳᎱᏂ ᏃᎴ ᏤᎩᏏᏂ.\nᎤᏅᏗ ᎤᏆᎳᏛ ᎠᏥᏍᏛ ᎤᏌᏁ ᎦᏍᎩᎸ ᎪᏱᏁᎢ.\nᏓᎾᎵᏍᏔᏴᎲᏍᎬ ᏃᎴ ᎠᎾᎵᏗᏍᎩᏍᎬ ᎨᏙᎲ ᎠᏎᎩ ᎯᏍᎩ ᎢᏳᏩᎦᏔ ᏑᎾᏙᏓᏆᏍᏗ.\nᏥᏌᏃ ᏚᏍᏓᏩᏛᏎᎢ. ᎿᏉᏃ ᎾᎥᏉ ᎤᎷᎴ ᏗᏓᏁᎸ, ᎠᏍᎪᎯᏧᏈ ᎠᏂᏯᏫᏍᏍᎩ ᏗᏘᏂᏙᎯ ᏙᏧᏅᏎ ᏧᎵᎢ ᏂᏙᏓᎬᏩᏠᎯᏍᏗᏱ, ᎯᎠ ᏅᏧᏪᏎᎴᎢ; ᏣᎬᏫᏳᎯ, ᏞᏍᏗ ᏨᏒ ᏣᏓᏕᏯᏙᏔᏅᎩ; ᎥᏝᏰᏃ ᏰᎵ ᏱᏂᎪᎯ ᏣᏴᏍᏗᏱ ᏥᏁᎸᎢ ᏥᎾᏆᏍᏗᏉ;\nᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ; ᎠᎾᎵᏥᏙᏂᏙᎸᎭ ᎯᎠ ᎣᏍᏛ ᎧᏃᎮᏛ ᎢᎸᎯᏢ ᎡᎳᏂᎬᎢ, ᎾᏍᏉ ᎯᎠ ᎠᎨᏴ ᏥᎾᏛᎦ ᎤᏂᏃᎮᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᎦᏅᏓᏗᏍᏙᏗ.\nᎤᏂᏃᎮᎴᏃ ᎦᎶᏄᎮᏛ ᎤᏅᏙᏗᏱ ᎤᏂᏂᏴᏗᏱ ᏥᏌ, ᎠᎴ ᎤᏂᎯᏍᏗᏱ.\nᎠᏎᏃ ᎠᏏᏉ ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᎠᏓᏅᏖᏍᎨᎢ, ᎬᏂᏳᏉ ᏗᎧᎿᏩᏗᏙᎯ ᏱᎰᏩ ᎤᏅᏏᏛ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎠᏍᎩᏓᏍᎬᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ; ᏦᏩ, ᏕᏫ ᎤᏪᏥ, ᏞᏍᏗ ᏣᏍᎦᎸ ᎯᏯᏅᏗᏱ ᎺᎵ ᏣᏓᏴᏍᏗ, ᎾᏍᎩᏰᏃ Ꮎ ᏥᎦᏁᎵ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᎤᏓᏅᏖᎸᎯ;\nᎨᏥᏅᏏᏛᏃ ᎠᎴ ᎠᎾᎵᏅᏟ ᏧᏗᏱ ᎠᏁᎯ ᎤᎾᏛᎦᏁ ᎾᏍᎩ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᏉ ᏚᎾᏓᏂᎸᏨ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎭᏂ ᏱᏓᎴᏅ ᎢᏗᏍᏔᏩᏗᏒ ᏣᎵ, ᎤᏛᏅ ᏲᎾ.\nᎤᎩᏨᏛ ᏥᏌ ᎤᏚᎵᏍᎬᎩ ᎨᎵᎵ ᎤᏪᏅᏍᏗᏱ; ᏈᎵᎩᏃ ᎤᏩᏛᎲᎩ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏍᎩᏍᏓᏩᏚᎦ.\nᎤᏂᏃᏕᎾ ᎠᏃᎵᎨᎢ ᏃᎴ ᎠᏂᎦᏔᎮᎢ ᎣᏍᏓ ᏴᏫ ᎨᏒᎢ.\nᏚᏥᎭᎷᏁ ᏣᎵ, ᎠᏓ ᏗᏍᏆᎸᎩᏓ ᏥᏕᎪᎰᏍᎪ ᎢᏳᏍᏗ ᏂᏚᎵᏍᏔᏁ ᏗᎧᏂᎨᎾ.\n“ᏕᏓᏓᎪᎲᏳ, ᎪᎩ, ᏕᏓᏓᎪᎲᏳ, ᏕᏓᏓᎪᎲᏳ!” \nᎩᎶ ᏣᏍᎦᏅᎪ ᎠᏲᏍᏗᏍᎪ ᎾᏍᏉ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᏍᎦᏂᏰᏃ ᎠᏲᏍᏗᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ.\nᎿᏉᏃ ᎦᎸᎳᏗ ᎡᎯ ᎤᎬᏫᏳᎯ ᎨᏒ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎠᎾᏛ, ᎾᏍᎩ ᏥᏚᏂᏅᏎ ᏗᏨᏍᏙᏗ ᎠᎴ ᏥᏚᎾᏠᏒᏎ ᎠᏕᏒᎲᏍᎩ.\nᎠᏂ ᎠᎦᏙᎲᎯᏍᏗ ᎨᏒ ᎠᏓᏅᏙ ᎬᏙᏗ ᎪᎵᏍᏗ. ᎾᏍᎩ Ꮎ ᎦᎵᏉᎩ ᏓᏍᎫᏓᏛ ᎦᎵᏉᎩ ᏙᏓᎸ ᎦᏛᎦ, ᎾᎿ ᎠᎨᏴ ᏧᏬᎳ.\nᎠᎴ ᎢᎸᎯᏢ ᏫᎦᎷᎩ, ᏧᏍᏗ ᏕᎦᏚᎲ, ᎠᎴ ᏧᏛᎾ ᏕᎦᏚᎲ, ᎠᎴ ᎢᏴᏛ ᏗᏓᏁᎶᎯ ᎨᏒᎢ, ᏧᏂᏢᎩ ᏕᎦᎳᏅᏛ ᏓᏂᏅᎥᏍᎨᎢ, ᎠᎴ ᎬᏩᏔᏲᏎᎮ ᎤᎾᏒᏂᏍᏗᏱ, ᎦᏓᎷᏯᏛᏉ ᎾᏍᏉ ᎤᏄᏴᎢ; ᎾᏂᎥᏃ ᎾᏍᎩ ᎬᏩᏒᏂᎸᎯ ᏚᎾᏗᏩᏍᎨᎢ.\nᏓᏈᏃ ᎠᎴ ᎵᏍᏗ ᏭᎷᏨᎩ, ᎬᏂᏳᏉᏃ ᎾᎿ ᎡᎲᎩ ᎩᎶ ᎢᎨᏍᏗ ᎪᎯᏳᎲᏍᎩ, ᏗᎹᏗ ᏧᏙᎢᏛ, ᎠᏧᏏ, ᎤᏙᏓᏍᎩᏂ ᎠᎪᎢ ᎨᏒᎩ.\nᏂᎦᏓ ᎤᏲᎰᏐᏁᎸ.\nᏫᎦᎸᎳᏗᏴ ᏗᏟᏰᎵᏓᏍᏗ ᏚᏄᎪᏔᏅ ᎠᏂᏴᏫᏯ ᏚᎾᎵᎪᏓᏁᎸ, ᎠᏎᏃ ᏄᏪᏒ ᏤᎩᏏᏂ, ᏃᏉ ᏩᏂᏌᏙᏯ.\nᎢᏴᏛᏃ ᏭᏘᏅᏍᏔᏅ ᎤᏓᏰᎵᎸ ᎤᏂᏣᏘ ᎠᏁᏙᎲᎢ, ᏕᎦᏰᏌᏛ ᏗᎦᎴᏂ ᏚᏐᎾᏕᎢ, ᎠᎴ ᏚᎵᏥᏍᏇᎢ, ᎠᎴ ᎦᏃᎪ ᎤᏒᏂᎴᎢ;\nᎤᎾᎴᏅᎮᏃ ᎤᏲ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᏌᏉᎬᏪᏒᏛ, ᏥᎪ ᎠᏴ? ᏅᏩᏓᎴᏃ, ᏥᎪ ᎠᏴ? ᎠᏗᏍᎨᎢ.\nᏘᎵ ᏚᏂᏒᎾᏛ ᎪᏍᏛ.\nᎥᏝ ᎠᏗᎾ ᎢᏨᏯᏓᏅᏖᎮᎯ ᎨᏒ ᎢᏦᎯᏳᏒᎢ, ᎣᏥᏍᏕᎵᏍᎩᏉᏍᎩᏂ ᎨᏒ ᎢᏣᎵᎮᎵᎬᎢ; ᎢᏦᎯᏳᏒᏰᏃ ᏂᎦᎵᏍᏙᏗ ᎠᏏ ᏥᏕᏥᏙᎦ.\nᎠᎴ ᎾᏂᎥ ᎤᎾᏓᏎᎪᎩᏍᏗᏱ ᏣᎾᏟᏂᎬᏁᎰ ᏂᎦᎥ ᎤᎾᎵᏍᏆᏂᎪᏗᏳ ᎨᏐᎢ. ᎠᎴ ᎾᏍᎩ ᎠᏲᎩᏉ ᎠᎵᏍᏚᎶ ᎨᏥᏅᏁᏗᏱ ᎤᎾᏚᎵᏍᎪᎢ, ᎠᏴᏍᎩᏂ ᎠᏲᎩ ᏂᎨᏒᎾ.\nᏣᏉᏍᎪ ᏯᏕᎶᎰᏍᎦ ᎣᏏᏉ ᎨᏒ ᏏᏆ?”\nᎠᏍᎦᏂᏰᏃ ᎥᏝ ᏱᎨᏣᏓᎵᏁᎯᏕᎮᏍᏗ; ᎥᏝᏰᏃ ᏗᎧᎿᏩᏛᏍᏗᏱ ᏱᏣᏓᏄᏴᏗ, ᎬᏩᎦᏘᏯᏍᎩᏂ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᏣᏓᏄᏴᏗ.\nᎤᎧᏛ ᏚᏍᏚᏤ ᎤᎦᎾᏅ.\nᏦᎢᏁᏃ ᎨᏒ ᏗᎧᎿᏩᏗᏙᎯ ᎡᏉᏂ ᏕᎨᏴ ᎠᎴ ᎠᎹ ᏕᎦᏄᎪᎬ ᎤᏪᏐᏅᏴᎩ ᎫᎫ ᎠᏰᎲ ᎠᏟᏍᏛᎢ; ᎩᎬᏃ ᏂᏚᎵᏍᏔᏅᎩ.\nᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏣᏪᏎᎭ; ᏞᏍᏗ ᏱᏣᏞᎨᏍᏗ ᎤᏐᏅ ᏁᏨᏁᎸᎢ; ᎩᎶᏍᎩᏂ ᎯᎦᏘᏏ ᏣᎪᏇᎷᎲᏍᎨᏍᏗ, ᏐᎢ ᎾᏍᏉ ᎯᏯᎵᏍᎪᎸᏓᏁᎮᏍᏗ.\nᎠᎬᏱᏃ ᎨᏒ ᏧᏂᏒᏍᏗ ᎠᏍᏆᏚᎸ ᎠᎩᏩᏒ ᎡᎳᏗ ᏧᎵᎬᏩᏟ, ᎨᏍᏗ ᎣᏍᏓ ᎾᎿᎨᏒ ᏃᎴ ᎠᏂᏫᎾᎨᏍᏗ ᎦᏲᏟᏉ ᎠᏂᏖᎵᏕᎩ ᏗᎾᎳᏫᎩ ᏃᎴ ᏳᎾᎵᏍᎨᏗᏴᏓ ᎤᏂᏒᏍᏗ.\nᎯ-ᎠᏃ ᏚᏟᎶᏍᏓᏁᎴ ᎩᎶ ᎢᏳᎾᏍᏗ ᎤᏅᏒ ᎠᎾᏓᎸᏉᏗᏍᎩ, ᎾᏂᏍᎦᏅᎾ ᎤᎾᏤᎸᎯ, ᎤᏩᎾᏓᎴᏃ ᏅᎵᏌᎵ ᏗᏂᏰᎸᏍᎩ.\nᎠᏓᏍᏕᎸᏓ ᎠᏔᏲᎯ ᎠᏓᏅᏖᎵᏙ, ᎠᏆᏛᏅ.\nᏍᎩᏴ ᎤᏲ ᏂᎦᎵᏍᏘᏍᎬ ᏙᏰ, ᎣᎦᎵᎪᏅ ᏍᎦᏰᎬᏍᏔ ᎠᏌᎻᏓ ᏃᎴ ᏧᏤᎵ ᎠᏂᏲᏍᎩ, ᏚᎨᏓᎵᏴ ᏙᏥᎭᏲᎲ ᎤᎾᎵᏗᎩᏛ.\nᎠᎴ ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏂᎨᏴ ᏓᎾᏣᎤᏍᎬ ᎤᏢᏉᏗ ᏂᎨᏒᎾ ᏓᎾᏄᏬᏍᎨᏍᏗ, ᎤᎾᏓᎾᏰᎯᏍᏗ ᎠᎴ ᎤᎾᎵᏏᎾᎯᏍᏗ ᎨᏎᏍᏗ; ᎥᏝᏍᏗᏃ ᏓᏂᏍᏕᏲᎲ ᏚᏂᏍᏘᏰᎬᎢ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ, ᎠᎴ ᏓᎬᎾ-ᎢᏳᎾᏍᏗ, ᎠᎴ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᏗᏄᏬ ᏱᏓᎾᏣᏅᏗᏍᎨᏍᏗ;\nᎾᏍᎩ ᎯᎠ ᎿᏉ ᏦᎢᏁ ᏥᏌ ᎬᏂᎨᏒ ᏂᏚᏛᏁᎸ ᎬᏩᏍᏓᏩᏗᏙᎯ ᎤᏲᎱᏒ ᏚᎴᏅ ᏅᏓᏳᏓᎴᏅᏛ.\nᎤᏙᎯᏳᎯᏰᏃ ᎢᏴᏛ ᎢᎬᏁᎸᎯ ᏂᎦᎵᏍᏗᎭ ᎢᎬᏱᏱ ᎤᎵᏁᏨᎯ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᏩᏂᎦᎳᎯᏳ ᎨᏒ ᎠᎴ ᎬᏩᏓᏍᏕᎸᏗ ᏂᎨᏒᎾ ᎨᏒ ᎢᏳᏍᏗ.\nᏍᏗᏫ ᎤᏩᏒ ᎠᏓᏅᏖᏍᎬ ᎣᎯᏍᏗ ᎡᎵᏍᎨ.\n“ᎨᏍᏗ ᏱᏥᎪᏩᏘ ᎤᏍᏆᏂᎩᏗ ᎨᏒ --- ᏓᏏᎳᏛᏉᏰᏃ.”\nᎾᎯᏳᏃ ᎥᏝ ᎤᏍᏗᏉ ᎤᏕᏯᏙᏗ ᏱᏄᎵᏍᏔᏁᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎾᏍᎩ ᎦᏅᏅ ᎤᎬᏩᎵ.\nᎠᎨᏴᏰᏃ ᏥᏓᏤᎰᎢ, ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏙ ᎤᏰᎯᎤᎾᏁᎳᏗᏍᏗᏱ ᎢᎩᎯᏛ ᎠᎴᏂᏙᎲ ᎤᏰᎯ; ᎤᏰᎯᏍᎩᏂ ᎤᏲᎱᏒᎯ ᏱᎩ, ᎤᏚᏓᎴᏛ ᎨᏐ ᏗᎧᎿᏩᏛᏍᏗ ᎤᏚᏓᎸᏛ ᎤᏰᎯ ᎤᎾᏁᎳᏗᏍᏗᏱ.\nᎾᎯᏳᏃ ᎢᏳᏓᎴᏅᏛ ᏆᎴᏗ ᎤᏲᎸᎩ ᎥᎤᏪᎪᏗᏱ. ᎠᏎᏃ ᎠᏂᏧᏏ ᎤᏁᎷᏅᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎢᏳᏃ ᎯᎠ ᎠᏍᎦᏯ ᎢᎯᏯᎧᏅᎭ ᎥᏝ ᏏᏌ ᎢᏍᏓᎵᎢ ᏱᎦᎨᏎᏍᏗ. ᎩᎶ ᎤᎬᏫᏳᎯ ᎠᏤᎸᏍᎩ, ᎧᏁᎬ ᏏᏌ ᎠᏡᏗᏍᎪᎢ.\nᎠᏎᎩᏍᏉ ᏂᎯ ᎤᏍᏗ ᎠᏣᏗ, ᎤᏛᏁ ᎤᏍᏗ ᎠᏣᏗ.\nᎠᎴ ᏂᎦᏛ ᎢᏓᎵᏅᏟ ᏦᏤᏙᎭ, ᏫᏨᏲᏪᎳᏏ ᏗᏣᏁᎶᏗ ᏕᏣᏓᏡᏩᏗᏒ ᎨᎴᏏᏱ;\nᏣᏉ ᏂᎦᏓ ᏚᎵᏘᎾᎥ ᏣᎵ, ᏩᏍᏗ ᏗᏂᏍᏔᎢ, ᎠᏁᏙᎯ ᏱᎨᏒᎾ.\nᎤᏪᏘ ᏓᏍᏔᏅᏅ ᏓᏥᏍᏔᏩᏕᏏ ᎤᏛᏅ ᏣᎵ.\nᎠᏌᎻᏓ ᎠᏰᎵ ᎦᏟ ᎤᎩᎸᏕ ᏐᏈᎵ, ᏙᎯᏉ ᏓᏌᎡ ᏧᏔᎾᎶ, ᎦᏅᏃᏫ ᎤᏅᏍᎦᎴ.\nᏅᎦᏍᎪᎯᏃ ᎢᏳᏕᏘᏴᏛ ᏄᎵᏍᏔᏅ, ᎤᏓᏅᏖᎴ ᏓᏩᏛᎲᏍᏗᏱ ᎠᎾᎵᏅᏟ ᎢᏏᎵ ᏧᏪᏥ.\nᏍᎩᏉᎴᏃ ᏱᎩ.\nᎠᎬᏱ ᎤᏰᏣ, ᎤᏛᎦᏁ ᏧᏍᏆᏴᏍᏗ ᎠᏍᎪᎩᏍᎬ ᎤᏔᎴᎦᏒᎢ ᎤᎧᏔ ᎤᏂᏍᏆᏂᎪᏙᏗ.\nᎠᎴ ᏂᎦᏛ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎦᏍᎩᎸ ᏚᎾᏚᏫᏍᏛᎩ ᏓᏂᏙᎬᎩ, ᎠᎴ ᏧᎾᏛᏐᏅᎯ ᎠᎴ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅᎢ, ᎠᎴ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅᎢ, ᎠᎴ ᎦᏍᎩᎸ ᎢᎬᏱᏗᏢ ᏚᎾᎵᏯᏍᏚᏅᎩ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ;\nᎠᎴ ᎤᏲᎢᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏗᏂᏁᎵᏛ ᎠᎴ ᏧᏂᏍᏓᎢ ᎾᎯᏳ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎢᏣᏛᎬᎦ ᏓᏟᎶᏍᏛ ᎠᏫᏍᎩ.\nᏉᎳᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎤᏁᎳᏅᎯ ᏥᏯᏚᎸᎡᎭ, ᎥᏝ ᏂᎯᏉ ᏨᏒ, ᎾᏍᏉᏍᎩᏂ ᏂᎦᏛ ᏥᎬᏆᏛᎦᏁᎭ ᎪᎯ ᎢᎦ ᏥᎩ, ᎾᏍᎩ, ᎥᏝ ᎠᎴᏉ ᎾᏆᏍᏛᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᎾᏆᏍᏛ ᎢᏣᎵᏍᏙᏗᏱ, ᎯᎠ ᎾᏍᎩ ᏨᏆᎸᎥ ᎤᏩᏒ.\nᎠᏎᏃ ᎾᏍᎩ Ꮎ ᎬᎵᏍᏆᏗᏍᎩ ᎠᏟᏂᎬᏁᎯ ᎾᏍᎩ ᎠᏥᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎠᎪᎪᎲᎩᏃ ᎠᎴ ᎠᎩᏃᎮᎸᎩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏪᏥ ᎨᏒᎢ.\nᎪᎱᏍᏗᏍᎪ ᎤᏧᏗ ᏏᏆ?”\nᎾᏍᎩᏃ ᎤᎧᏌᎴᏍᎬ ᎢᏳᏍᏗ ᎠᏛᏍᎨ ᏃᎴ ᎦᎵᏦᎲᏍᎨ. ᎨᏍᏗ ᎯᎸ ᎠᎪᏩᏛᏙ ᏱᎨᏎᎢ ᏍᎩᎾᎾ ᎢᏢᏭᏆ ᏥᏍᏕᏥ.\nᏍᎩᏯᎵᎮᎵᏤᎰᎢᏍᎪ ᏂᎦᎥ ᎢᏨᏍᏕᎵᏍᎬ? \nᎦᎸᎳᏗᏣ ᏩᏚᎧᏃᏁ ᏅᏯ ᏗᎪᎰᏍᎬ.\nᎨᎵᏍᎬ ᏳᏂᎨᏳᎾᎥᎾ ᎨᏒ ᎢᏳᏍᏗ ᎠᎹ ᎤᎵᏍᎨᏛ ᎠᏁᎵᏍᎪ, ᎠᏎᏃ ᎦᏓᏁᎯ ᎦᏙ ᏳᏕᏯᏙᏗ.\nᎠᏰᎵᏎᏉ ᎤᎸᏔᎵᏕᎾ ᏄᎵᏍᏗᏍᎬ ᏫᎵᎻ ᎤᏓᏅᎯᏓ ᎤᏬᏂᏒ.\nᎢᎾᏓ ᎤᏙᏳ ᏥᎨᏐ ᏧᏂᎦᎸᏍᏓᏁ ᏚᏴᎯᎲ ᎠᏒᎬ ᎪᎢ.\nᎣᎩᏰᎸ ᏓᏍᎩᏍᏕᎸ ᏦᏥᏩᏛᏗ ᎤᎾᎵᏗᎩᏛ, ᎤᏛᏅ ᎠᏓᏅᏖᎵᏙ.\nᎠᎨᏴ ᎤᏲ ᎤᏓᏅᏙ ᏣᏕᎲᏍᎪ ᎠᏲᎵ, ᎤᏍᏆᎸᎡᎸ ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ; ᎠᏎᏃ ᎿᏉ ᎦᎾᏄᎪᏩ ᎠᏲᎵ, ᎥᏝ ᎿᏉ ᏯᏅᏓᏗᏍᎪ ᎡᎯᏍᏗ ᎤᏓᏅᏓᏛᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᎵᎮᎵᎬ ᏴᏫ ᎤᎾᏄᎪᏫᏒ ᏒᎶᎯ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎠᏏᏴᏫ ᎨᏒ ᎾᎥ ᎢᏧ-ᎾᏓᎵ, ᎠᎴ ᏗᎾᏓᏅᏟ ᎨᏒ ᏱᎨᏲᎲᏍᎨᏍᏗ, ᎯᎠ ᏱᏂᎦᏪᏍᎨᏍᏗ, ᎯᎦᏙᎥᎯ ᎤᎬᏫᏳᎯ; ᎾᏂᎥᏉᏰᏃ ᎬᎩᎦᏔᎯᏳ ᎨᏎᏍᏗ, ᎤᏍᏗᎧᏂ ᎡᎲ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎤᏟ ᎢᏯᏥᎸᏉᏗ ᎡᎲ ᏫᎬᏍᏗ.\nᎠᎴ ᏚᏙᎥ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ.\nᎤᎾᏓᏅᏖᏗᏍᎨ ᎢᎦᏓ ᏧᎵᎢ ᏫᎵᎻ, ᎠᏁᎵᏍᎨ Ꭲ ᏂᎦᎥ ᎤᎾᎦᏎᏍᏛ ᎤᏨᏉᏗ ᎢᏳᎵᏍᏙᏗ.\nᏫᎦᏢᏍᎩ ᎢᎪᎯᏓ ᎤᏦᏱᎴ.\n“ᏓᎦᎴᏅᏔᏂ ᏕᏥᏯᏂᏍᎬ ᏚᎾᏙᎥ.\nᎿᏉᏃ ᏈᏓ ᎤᏞᎠᏒ ᏫᏚᎷᏤᎸ ᎠᏂᏫᏅ ᎧᏂᎵᏯ ᏧᏅᏏᏛ ᎬᏩᏯᏅᎯᎸᎯ, ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏴ ᎾᏍᎩ ᏤᏥᏲᎭ. ᎦᏙ ᏧᎵᏰᎢᎸᏍᏔᏅ ᎯᎠ ᏥᏥᎷᎩ?\nᎢᏣᏟᏂᎬᏁᎮᏍᏗ ᎢᏥᏴᏍᏗᏱ ᎠᏯᏙᎵ ᎦᎶᎯᏍᏗᏱ; ᎤᏂᏣᏘᏰᏃ, ᎢᏨᏲᏎᎭ, ᏓᏳᏂᏲᎵ ᎤᏂᏰᏍᎢᏱ, ᎠᎴ ᎥᏝ ᏰᎵ ᏫᎬᏩᏂᏴᏍᏗ ᏱᎨᏎᏍᏗ.\nᏍᎩᏴ ᎠᏆᏣᏅᏓᏕᎰ ᎠᏆᏓᏅᏖᏗ.”\nᎾᏍᎩ ᎧᏱᏅ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏆᏣ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᏎᎻ ᎤᏪᏥᎨᏎᎢ, ᎾᏍᎩ ᏃᏯ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎴᎻᎩ ᎤᏪᏥ ᎨᏎᎢ,\nᎰᎻ ᏃᎴ ᏣᏄᏏ ᏃᎴ ᎡᎶᏗ ᎩᎳᏋᎯ ᎱᏂᎷᏤᏍᏗ, ᏃᎴ ᎧᏁᏌᎢ ᏫᏛᎨᏣᏌᏙᏱ ᏃᎴ ᏛᎭᏂᎩᏏ.\nᎠᎴ ᎾᏍᎩ ᎰᎤᎬᏫᏳᎭ [ᎨᏂᎩᎵᏲᎢᏍᏙᏗ ᎨᏎᏍᏗ] ᎤᏇᏓᎵ ᎠᏂᏍᏓᏩᏕᎩ ᎤᏂᎬᎥᏍᎬ ᎦᏓᎭ ᎨᏒᎢ, ᎠᎴ ᏗᏂᏍᎦᎩ ᏄᏂᎬᏫᏳᏌᏕᎩ. ᎤᏂᏍᎦᎢᏍᏗ, ᎤᏅᏒ ᎠᎾᏓᏅᏖᏍᎬ ᎤᏂᎸᏉᏗ; ᎥᏝ ᏯᏂᏍᎦᎢᎭ ᏗᎬᏩᏂᏐᏢᏙᏗᏱ ᎨᏥᎸᏉᏗ.\nᎾᏍᎩᏃ ᎢᏧᎳᎭ ᎠᏁᏙᎮ ᏥᎷᏏᎵᎻ.\nᎠᎴ ᎧᏁᎬᎠᏆᏛᎦᏅᎩ ᏛᏓᎴᎲᏍᎬᎩ ᎠᏰᎵ ᏅᎩ ᎢᏯᏂᏛ ᏗᏅᏃᏛ ᏄᎾᏛᏅᎢ, ᎯᎠ ᏅᏓᎦᏪᏍᎬᎩ, ᏥᏂᎩ ᎠᏟᎶᏍᏗ ᎠᎧᎵᎢ ᎤᏣᎴᏍᏗ ᎠᎩᏏᏧᎬᏩᎶᏗ ᎠᎫᏴᏗ, ᎠᎴ ᏥᏂᎩ ᎠᏟᎶᏍᏗ ᏦᎢ ᎢᏯᎧᎵᎢ ᎤᏣᎴᏍᏗ ᎢᏳᏍᏗ ᎠᎩᏏ-ᏧᎬᏩᎶᏗ ᎠᎫᏴᏗ; ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᏗᏨᏁᎸᎩ ᎪᎢ ᎠᎴ ᎩᎦᎨ-ᎠᏗᏔᏍᏗ.\nᎦᏙᏃ ᎠᏇᎵᏒ, ᎠᏎᏃ ᎨᏍᏗ ᏯᏆᏓᏛᏛᎾ, ᏁᏆᎸ ᏥᏍᎪᎵ ᏍᎩᎾᎾ ᎢᏳᏪᏍᏗ ᎯᎨᏎᎢ.\nᎠᎬᏱᏣ ᎠᏍᏆᏚᎸ ᎤᏪᏅᏎ ᏃᎴ ᎤᏩᏁ, ᎤᏍᏓᏩᏛᏎ ᎠᎳᏂ.\nᎯᎠ ᎾᏂᏪᏍᎬᎩ ᎠᏍᏓᏯ ᎤᏁᎷᎬᎩ; ᎤᏃᏕᎾ ᎠᎩᎾ ᎠᏥᎸᎯ ᏰᎵᏉ ᎦᏁᎢᏍᏓᏁᏗ ᎤᎵᏂᎩᏗᏳ ᎨᏒ, ᎠᎴ ᎤᏪᎿᎢᏳ ᎨᏒ, ᎠᎴ ᎠᏏᎾᏌᏂᏳ ᎨᏒ, ᎠᎴ ᎬᏩᏄᎸᏗ ᏂᎨᏒᎾ ᎨᏒ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎣᏍᏛ ᎧᏁᎢᏍᏓᏁᏗ ᎨᏒᎢ.\nᎭᎾᎾ ᎡᎮᎢ ᎪᎨᏱ ᎢᎪᎯᏓ ᎤᏙᏳ ᎤᏓᏅᏘ ᏧᎬ.\nᎾᏍᎩ ᎯᎠ ᎾᎾᏛᏁᎮᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᏂᎦᏔᎲᎾ ᎨᏒ ᎠᎦᏴᎵᎨᎢ, ᎠᎴ ᎠᏴ ᏂᎬᎩᎦᏔᎲᎾ ᎨᏒᎢ.\nᎾᏍᎩ ᏗᏓᏚᏓᎳᎡᏗᏱ ᎨᎩᏍᎦᎩ, ᎠᎴ ᎠᏍᏓᏯ ᏂᎨᎬᏅ ᏗᏓᏚᏓᎳᎡᏗᏱ ᏂᎦᏗᏳ ᎨᎩᏂᏆᏘᎯ;\nᎦᏓᏍᏕᏓᎵᏴᏍᎩ.”\nᎠᎴ ᎠᏂᏯᏫᏍᎩ ᎦᎸᎳᏗ ᎠᏁᎲ ᎬᏩᏍᏓᏩᏛᏒᎩ ᎤᏂᏁᎬ ᏐᏈᎵ ᏧᎾᎩᎸᏗ, ᏧᏏᏙᎵ ᏙᎴᏛ ᏗᏄᏬ ᏚᎾᏄᏬᏍᏛᎩ, ᏧᏁᎬ ᎠᎴ ᏗᎦᏓᎭ ᏂᎨᏒᎾ.\nᎨᏍᏗ ᏯᏆᏚᎵ ᎠᏇᏅᏍᏗ ᏗᎾᏓᎪᎾᏗᏍᎬ ᏂᎯ ᏱᏤᏅᏓ ᏱᎩ.\nᎤᎾᏓᏅᏘ ᎤᏂᏂᎬᏎᎲ ᏕᏥᏯᏙᎮᎮᏍᏗ; ᎢᏥᎦᎵᏱᏳ ᎨᏎᏍᏗ ᏗᏣᏓᏍᏆᏂᎪᏙᏗᏱ.\nᎤᏙᎯᏳ ᎩᎾᎵᎢ!”\nᎯᎠ ᏗᏂᎳᏫᎦ ᏣᏚᎧᏔᏁ ᎾᏍᏊ ᎤᏂᏌᏛᏗ ᎦᏙ ᎠᏔᎳᎧᏒᎢ ᏃᎴ ᏣᏚᎩᎬᏗᏤ ᎾᏍᎩ ᏂᎦᏓ ᏗᏂᏟᎯ ᏣᏚᏗᎦᏘᎸᏍᏗ ᎦᏟᏓ ᏍᎩᎾ. ᏣᏚᏂᏘᏏᎶᎡ ᏍᎩᎾ. ᎤᏅᏱᎭ ᎤᏁᎦᎸᎢ.\nᎾᏃ ᎠᏧᏣ ᎠᎹ ᎦᏁᏁᎮᎢ ᎤᎦᏔ ᎠᎴ ᎦᏄᎸ ᎧᎾᏍᏕᎸᎩᏍᎬᎢ.\nᎣᏁ ᏚᏟᎷᏆᏗᏅᏎ, ᎠᏓᏄᏖᏲ ᏫᎵᎻ.\nᏕᎦᏃᏣᎸᏃ ᎾᎿ ᏂᎬᎾᏛ ᏚᏰᎵᏏᏙᎴᎢ.\n“ᎯᏓ ᎾᏅᏛᏁᎰ,” ᎤᏛᏁ.\nᎤᏟ ᎦᎸᏉᏗᏳ ᎡᎵᏍᎨ ᎦᏰᏥᏐᏢᏙᏗᏱ ᎦᎶᏁᏛ ᎨᏒ ᎢᏳᏍᏗ, ᎠᏃ ᏧᎬᏩᎶᏗ ᎠᏍᏆᏂᎪᏛ ᎢᏥᏈᏱ; ᎠᎦᎫᏴᎡᏗᏰᏃ ᎨᏒ ᎢᏴᏛ ᏫᏓᎧᏂᏍᎨᎢ.\nᏂᎦᏓ ᏚᏂᏯᏪᎨ ᏃᎴ ᎠᎾᎵᎮᎵᎨ.\nᏂᎦᏓ ᎤᎾᎵᎮᎵᏤ.\nᎾᏍᎩᏍᎩᏂ ᎠᏂ ᏦᎸᎢ ᏱᎠᏁᏙᎮᎢ, ᎠᎴ ᏳᏂᏃᎮᎴᎢ, ᎢᏳᏃ ᎪᎱᏍᏗ ᏱᎬᏇᎯᏍᏗᎭ.\nᎾᏍᎩ ᏂᎦᎥ ᎤᏩᏒ ᎤᏓᎸᏉᏔᏅᎢ ᎠᎴ ᎤᏢᏉᏗ ᎤᏕᏅᎢ, ᎾᏍᎩ ᎢᎦᎢ ᎠᎩᎵᏯ ᎠᎴ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎡᏥᎥᏏ; ᎤᎾᏫᏱᏰᏃ ᎯᎠ ᏂᎦᏪᎭ, ᎠᎩᎬᏫᏳᎯ ᎠᏉᎳ, ᎥᏝ ᎠᏉᏑᎶᏨᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᏴᎦᏥᎪᏩᏛ.\nᎩᎵᏗᏃ ᎠᎴ ᎠᎴᏈᏱ ᎢᏕᎯ, ᎢᏓᏛᎩᎭ ᏗᎩᏬᏂᎯᎯᏍᏗ ᎨᏒ ᎠᏂᏬᏂᏍᎬᎢ, ᎤᏍᏆᏂᎪᏗᏳ ᎤᏁᎳᏅᎯ ᏚᎸᏫᏍᏓᏁᎸ ᎠᏂᏃᎮᏍᎬᎢ.\nᎥᏝ ᎠᎴ ᏯᎩᎪᎮ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎤᎬᏫᏳᎯᏰᏃ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎠᎴ ᎤᏃᏕᎾ-ᎠᎩᎾ ᎾᏍᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎢᎩ.\nᏍᏗᏫ ᎤᏚᎵᏍᎨ ᏭᏥᏍᏓᎵᏗ, ᎠᏎᏃ ᏣᎵ ᎤᏅᏍᏓᏕᎴ.\n“ᎨᏍᏗᏃ ᏱᏥᎦᏔ ᏃᏉ ᎨᏒ,” ᎤᏛᏁ ᎰᎻ.\nᎧᏅᏂᏍᎩ ᏚᏏᎳᏛ ᎢᏳᏪᏓ, ᎯᏥᎨᏯ ᏃᎴ ᎯᏥᏍᎦᏯ, ᎭᏂ ᎤᏣᏔ ᎣᏍᏓ ᏏᏆ.” \n”ᎨᎾ ᏏᏆ.” \nᎠᏎᏃ, ᎤᎾᏟᎶᎾ ᏐᏈᎵ ᎠᎳᏑᎶ, ᎠᏂᎫᏑᏩᎩ ᏗᏂᏐᎯ ᏚᏂᏁᎦᎸᎮ ᏐᏈᎵ ᏧᏔᎾᎶ ᎢᏧᏅᏁᏙᏗ ᏃᎴ ᏗᏂᏴᏐᎵ ᏚᏂᏣᎦᏎ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᏄᏂᎥ.\nᏑᏓᎵᏃ ᏫᏄᏒᎸ ᏥᏌ ᏚᏘᏅᏎ ᏈᏓ, ᎠᎴ ᏥᎻ, ᎠᎴ ᏣᏂ, ᎢᏅᏃ ᎢᎦᏘ ᎣᏓᎸ ᏚᎿᎷᏔᏁ ᎢᏴᏛ ᎤᏅᏒ ᎨᏒᎢ; ᎠᎴ ᎤᏓᏁᏟᏴᏎ ᎠᏂᎦᏔᎲᎢ.\nᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᏗᏦᎸᏒᎯ! ᏙᏛᏥᏲᏏᏌᏂᏰᏃ. ᎤᏲᎢᏳ ᎢᏣᎵᏍᏓᏁᏗ ᎢᏥᏰᏣᏍᎩ ᏥᎩ ᎪᎯ! ᎤᏲᏰᏃ ᎢᏣᏓᏅᏔᏩᏕᎨᏍᏗ ᎠᎴ ᏕᏣᏠᏱᎮᏍᏗ.\nᎤᎾᏗᏍᎦᎶᏗ ᏫᏚᎭᏯᎸ ᏧᎾᎵᏍᏙᏗ, ᎠᏎᏃ ᏫᏚᏦᏨ.\nᎤᏁᏨᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏏᏴᏫ ᏔᎳᏚ ᎢᏥᏛ ᎨᏒ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏖᎵᏙᎩᎯ ᏦᏍᏓᏑᏩᏍᎦ.\nᏅᏍᎩᎮᎾᏳᏍᏗ ᎤᏩᏌ ᏤᏙᎰ ᏩᎭᏯ.\nᎾᏍᎩᏃ ᎢᏳᎾᏍᏗ ᎨᏒᎢ, ᏙᏥᏁᏤᎭ ᎠᎴ ᏙᏥᏍᏗᏰᏗᎭ ᏙᏥ-ᏁᎢᏍᏓᏁᎭ ᎢᎦᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᏙᎯᏉ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᎤᏅᏒ ᎤᎾᏤᎵ ᎠᎵᏍᏓᏴᏗ ᎤᎾᎵᏍᏓᏴᏙᏗᏱ.\nᎠᏗᎾ ᎢᏳᏃ ᎠᏴ ᏱᎩ, ᎠᎴ ᎾᏍᎩ Ꮎ ᏱᎩ, ᎾᏍᎩ ᏃᏥᏪᎭ ᎣᏣᎵᏥᏙᎲᏍᎦ, ᎠᎴ ᎾᏍᎩ ᏄᏍᏗ ᎢᏦᎯᏳᏅ.\nᏄᏩᏁᎰᎾ, ᎤᏲᏏᏍᎨ.\nᏈᏓᏃ ᎤᏍᏚᎢᏒ ᎠᎰᎵ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎦᏙᎴᎣᏍᎦ ᎤᏁᎳᏅᎯ ᎩᎶ ᏧᎸᏉᏙᏗ ᏂᎨᏒᎾ ᎨᏒᎢ;\nᎠᎴ ᏕᏣᏣᏅᏍᎬ ᎥᏝᏍᏗ ᎦᏚᎢᏉ ᎡᎯ ᎠᏣᏅᏗ ᎨᏒ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᎣᏍᏗᏰᎬ ᎠᏍᏕᏯᏍᏗ ᎨᏒᎢ ᎠᎴ ᎠᏕᎸᏓᎶᏂᎨ ᎠᏣᏅᏙᏗ, ᎠᎴ ᏗᏄᏬ ᏛᏄᏬᏍᎬᎢ,\nᏆᎴᏗᏃ ᎤᏛᏛᏁ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯᏍᎪ ᏣᎬᏫᏳᎯ ᎠᏂᏧᏏ ᎤᎾᏤᎵᎦ? ᎤᏁᏤᎴᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᎩ ᏂᏫ.\nᏚᎾᏓᎪᎲ, ᎤᎾᎴᏅᎭ ᎤᏁᏡᎬᎢ. ᏃᏉ ᎠᏯ ᎣᎩᎾᎵᏱ, Michael ᏧᏙᎢᏓ, ᏥᎪᎥ ᎾᎥ ᎦᏙᎬᎢ.\nᎤᏓᏴᏍᏗ ᎤᏪᎧᎯ ᎾᏍᎩ ᎠᏕᏒᎲᏍᎩ; ᎠᏎᏃ ᎠᏕᏒᎲᏍᎩ ᎤᎾᎵᎢ, ᎾᏍᎩ ᏥᎦᏙᎯ ᏧᏛᎦᏁᎰᎢ, ᎤᏣᎳᏅᎯ ᎠᎵᎮᎵᎪ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᏕᏒᎲᏍᎩ ᎧᏁᎬᎢ. ᎾᏍᎩᏍᎩᏂ ᎠᏴ ᎦᎵᎡᎵᎬ ᎤᎧᎵᏨ.\nᎦᎵᏦᏕᏃ ᎤᏴᎸ, ᏗᏂᎨᏫ ᎬᏩᎷᏤᎸᎩ, ᏥᏌᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᎢᏍᏙᎯᏳᎲᏍᎦᏍᎪ ᏰᎵ ᎾᏍᎩ ᎢᎬᏆᏛᏁᏗ ᎨᏒᎢ? ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ; ᎥᎥ, ᏣᎬᏫᏳᎯ.\n”ᏏᏆᏗ ᎤᎬᏫᏳ ᎤᏍᏆᏂᎩᏗ.\nᎤᏒᏂᎴᏃ ᎤᏬᏰᏂ, ᎤᏗᎴᎲᏍᎬᏃ ᎤᏗᏩᎭᎢ. ᏚᎴᏁᏃ ᎠᎴ ᏚᏍᏕᎸᎯᏙᎴᎢ.\n”ᎤᎪᏗᏳ.”\nᏗᏁᎨᎢ ᏴᏫ.\nᎾᏍᎩᏃ ᎯᎠ ᎾᏍᎩᏯ ᏂᏕᎦᎵᏍᏗᎭ ᎠᎾᏙᎴᎰᏍᎩ ᎤᏂᏁᏨᎢ, ᎯᎠ ᏥᏂᎬᏅ ᏥᎪᏪᎳ;\n“ᏃᎴ ᏤᏍᏗ ᏱᏕᏍᏗᏐᏤᏍᏗ ᏐᏈᎵ ᎤᎾᎵᏙᎩᏯᏍᏗ ᏗᎾᏓᏌᎩᏒᎢ ᏐᏈᎵ,” ᎤᏪᎷᏁ ᎠᎳᏂ.\nᎧᎪ ᎠᏏᎾ ᎤᏍᏇᎵᏰᏗ “ᎤᏣᏓ ᎣᏍᏓ’?”\nᏕᎾᏓᎪᎲᏳ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᏕᏫ ᏥᎧᏁᎢᏍᏗᎭ ᎣᏍᏛ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏒ ᏴᏫ, ᎾᏍᎩ Ꮎ ᎤᏁᎳᏅᎯ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᎤᏰᎸᎾᏁᎭ ᏂᏚᎸᏫᏍᏓᏁᎸᎾ ᎨᏒᎢ,\nᏗᏥᏲᎱᏒᎯᏰᏃ, ᏕᏨᏅᏃ ᎦᎶᏁᏛ ᏪᎲ ᏚᏩᏍᎦᎸ ᎤᏁᎳᏅᎯ.\n“ᏐᏉ ᎢᏳᏩᎬᏘ ᎤᏕᏘᏴᏌᏗᏒ ᎦᎷᎦ ᎠᎾᏓᎪᎾᏗᏍᎬ.” \nᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ, ᎠᏴᏍᎪ ᎯᎠ ᎾᏍᎩ ᏕᏍᎩᏯᏟᎶᏍᏓᏁᎭ, ᏂᎦᏛᏉᎨ?\nᎠᎴ ᎠᎰᎵ ᎠᏥᏁᎸᎩ ᎾᏍᎩ ᎬᏗᏍᎬ ᎤᏣᏘ ᎠᏢᏈᏍᏗ ᎨᏒ ᎦᏬᏂᏍᎬᎩ ᎠᎴ ᎠᏐᏢᎢᏍᏗᏍᎬᎩ; ᎠᎴ ᎠᎦᎵᏍᎪᎸᏓᏁᎸᎩ ᏅᎦᏍᎪᎯ ᏔᎵᎦᎵ ᎢᏯᏅᏙ ᎤᏕᏗᏱ.\nᎬᏂᎨ ᎤᏍᎪᎸ ᏃᎴ ᎤᏬᏗᎨ ᎤᏍᎪᎸ ᎨᏎ ᏗᎦᏅᏍᎨᏂ.\nᎤᎦᏃᏩ ᎤᏃᎸᏔᏁ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᎨᏥᏍᏆᏂᎪᏙᏗ.\nᏩᎩᎷᏨ ᎣᎩᎵᏦᏩᏛ, ᎠᏰᎵ ᎠᏆᎴᏅ ᏴᏫ ᏃᎴ ᎦᎶᏇ.\nᎠᏎ ᏞᏍᏗ ᎩᎶ ᏱᏥᎵᏓᏍᏔᏁᏍᏗ; ᎥᏝᏰᏃ [ᎾᎯᏳ ᎢᎦ ᎤᎵᏰᎢᎶᎯᏍᏗ ᏱᎩ] ᎬᏂ ᎢᎬᏱ ᎠᏂᏑᎵᎪᎨᏍᏗ, ᎠᎴ ᎾᏍᎩ Ꮎ ᎠᏍᎦᏯ ᎠᏍᎦᎾ ᏧᎸᏫᏍᏓᏁᎯ ᎬᏂᎨᏒ ᎾᎬᏁᎸᎭ, ᎾᏍᎩ ᎠᏛᏗᏍᎩ ᎤᏪᏥ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏯᏫᏍᎨᏍᏗ, ᎠᎴ ᎢᏣᏅᏖᏍᏗ ᏦᎢ ᏧᏕᏘᏴᏛ ᏂᏥᏑᎵᎪᎬᎾ ᏒᏃᏱ ᎠᎴ ᎢᎦ ᏗᎦᏥᎦᏌᎢᎯ ᎢᏥᏏᏴᏫᎭ ᎢᏨᏰᏯᏔᏅᎢ.\nᎭᏓᏅᏓᏛᎵ ᎯᎠ ᏥᏂᏥᏪᎭ; ᎤᎬᏫᏳᎯᏃ ᏫᏣᎲᏏ ᏣᎦᏙᎥᎯᏍᏗᏱ ᏂᎦᎥ ᏧᏓᎴᏅᏛ.\nᏫᎵᎻ ᎠᏓᎵᏗᎩᎢ ᎤᎾᏛᏁ.\n ᎨᏍᏗ ᏱᏓᎨᏏ.\nᏫᏗᎷᏨ ᎩᎾᏓᏅᏖᏗ.\nᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎠᎴ ᎠᎩᎾ ᏚᎾᏘᏃᎸᎩ; ᏗᏂᏐᎯᏱᏃ ᏧᎾᏄᏬ ᏚᏂᏢᏅᎩ, ᎠᎴ ᎾᎿ ᎤᎾᎩᎸᏔᏅᎩ.\nᎨᏍᏗ ᏳᎾᏚᎵᏍᎨ ᏧᏂᎵᏬᎢᏍᏗ, ᎾᏍᎩᏃ ᎠᏂᎾᎷᏍᎨ.\nᎾᏍᎩᏰᏃ Ꮎ ᎤᎬᏫᏳᎯ ᎤᎨᏳᎯ ᎠᎩᎵᏲᎢᏍᏗᏍᎪᎢ, ᎠᎴ ᏕᎦᎵᎥᏂᎰ ᎾᏂᎥ ᏧᏪᏥ ᎾᏍᎩ ᏧᏓᏂᎸᏨᎯ ᎨᏒᎢ.\nᎾᎯᏳᏰᏃ ᎨᏎᏍᏗ ᎠᎩᎵᏯ ᎡᎮᏍᏗ, ᎾᏍᎩ ᎪᏢᏅᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏁ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏗ ᎥᏝ ᎾᏍᎩ ᎢᏳᏍᏗ ᏳᏕᏃᎢ, ᎥᏝ ᎠᎴ ᎤᏕᏗ ᏱᎨᏎᏍᏗ.\nᎠᎴ ᎿᏉ ᎠᏂᏆᎵᏏ ᎾᏍᏉ ᎥᎬᏩᏛᏛᏅᎩ ᏄᎵᏍᏙᏔᏅ ᎬᏩᎪᏩᏛᏗ ᏄᎵᏍᏔᏅᎢ. ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ; ᏗᏥᎦᏙᎵ ᏝᏬᏔ ᏚᏅᎵᏰᎥᎩ, ᎠᏆᏙᏑᎴᎥᎩᏃ ᎠᎴ ᎢᏥᎪᏩᏘᎭ.\nᎤᏁᎳᏅᎯᏰᏃ ᎠᏏᎾᏌᏂᏳ ᎨᏒ ᏥᏄᏩᏂᏌᏁ ᎡᎶᎯ ᎠᏂᏏᎾᏌᏅ ᎠᏅᏗᏍᎬ ᎤᏁᎳᏅᎯ ᏂᎬᏩᎦᏔᎲᎾ ᏥᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᏂᎬᏩᎦᏔᎲᎾ ᏥᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᎣᏏ ᎤᏰᎸᏁ ᎠᎵᏍᎦᏁᏛ ᎠᎵᏥᏙᏗ ᎨᏒ ᎤᏮᏙᏗᏱ ᏧᏍᏕᎸᏗᏱ ᎠᏃᎯᏳᎲᏍᎩ.\nᎥᏝᏰᏃ ᎠᏏ ᏳᏓᏑᏰ ᎩᎶ ᎾᏍᎩ ᎤᎷᏤᎸᎯ, ᏗᎨᎦᏬᏍᏔᏅᎯᏉ ᎤᏩᏒ ᎨᏎ ᏕᎤᏙᎥ ᎤᎬᏫᏳᎯ ᏥᏌ.\nᎾᏂᎥ ᎦᏥᎨᏳᎢ ᎨᏒ ᏕᏥᎬᏍᎪᎸᎥᏍᎪ ᎠᎴ ᏕᏥᎩᎵᏲᎢᏍᏗᏍᎪᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎵᏂᎩᏛ ᎭᏓᏅᏓᏓ ᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ.\nᏗᎦᏘᏍᏗ ᎦᏰᏌᏗ ᏚᏩᏌᏙᎭᏰ ᎤᎾᏓᏓᏍᎩᏐᏗ ᏃᎴ ᎤᏂᏩᏛᏗ ᎤᏂᎯᏍᏗ, ᎠᏎᏃ ᎯᎸᎯᏳ ᏥᎨᏎ ᎤᏐᏱ ᎨᏎ.\nᎥ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᎷᏤᎸ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏲᎵᎦ ᏂᎯ ᎡᏣᎸᏉᏔᏅᎯ, ᏱᎰᏩ ᏫᏗᏣᎧᎿᏩᏗᏓ; ᎠᏂᎨᏴ ᎠᏁᎲ ᏂᎯ ᏭᏓᎪᎾᏛᏗ ᎣᏏᏳ ᎢᏣᎵᏍᏓᏁᏗ.\nᎾᏍᎩᏃ ᎯᎠ ᏄᏪᎡᎢ; ᎦᏙ ᏱᎦᎵᏍᏙᏓ, ᎢᏳᏃ ᎩᎶ ᎾᏆᏎᎮᎲᎾ ᏱᎩ? ᎤᏔᏲᎴᏃ ᏈᎵᎩ ᎤᏦᏗᏱ ᎠᎴ ᎢᏧᎳᎭ ᏧᏂᏗᏱ.\nᎤᎵᏏᎬ ᏭᏗᏅᏒ ᎤᏲᏨ ᏦᎳ ᎦᎵᏙᏗ, ᎫᎭᎳᏗ ᎤᏦᏩᏛ ᏭᎳᏛ ᏰᎵ ᎨᏎᏍᏗ ᏄᏓᎴᎯ ᎤᏩᎯᏍᏗ ᏦᎳ ᎦᎵᏙᏗ ᎠᎴ ᎤᏓ ᏳᏩᏛ ᎤᏔᎸᎩᏍᏗ, ᎭᎾ ᏭᏭᏍᏙᏗ.\nᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎤᏣᏘ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᎤᏣᏘ ᏓᎬᏁᏉᎢ.\nᎤᏣᏗ ᎢᏳᏓᎴᎩ ᎠᏉᏪᎶᏗ ᎠᎩᎲᎩ, ᎠᏎᏃ ᎥᏝ ᏗᎪᏪᎶᏗ ᏱᏙᏓᎬᏔᏂ Ꮎ ᏴᏓᎬᏲᏪᎳᏁᎵ;\nᏥᏌᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏃ ᎰᏍᏛ ᎢᏍᏉᏎᎭ? ᎥᏝ ᎩᎶ ᎣᏍᏛ ᏱᎩ ᏌᏉ ᎤᏩᏒᎯᏳ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ.\nᎤᏲ ᎤᏓᏅᏖ ᏂᎦᎵᏍᏙᏗ ᎠᏤ ᎤᎾᎵ ᎩᎦ ᎤᏔᏕᎩᏍᎬ.\nᎾᏍᏉ ᎠᏴ ᎣᏏᏳ ᎠᎩᏰᎸᏅ ᏫᎬᏲᏪᎳᏁᏗᏱ ᎣᏍᏛ ᎠᎩᏰᎢᎸᏍᏗᏱ, ᏂᎯ ᎡᏣᎸᏉᏗ ᏗᎣᏈᎵ, ᎠᎩᏍᏆᏂᏰᏛᏰᏃ ᏂᎦᏛ ᎯᎠ ᏧᏓᎴᏅᏛ ᏗᏓᎴᏂᏍᎬ ᏅᏓᎬᏩᏓᎴᏅᏛ,\nᏗᎩᏃᏣᎶᏗ ᎣᏍᏓ ᏄᏍᏛ ᏫᎵᎻ, ᎥᏣ ᏃᏒ ᎠᎩᏍᏗ.\nᎠᎴ ᎢᎩᎾᏄᎪᏫᏎᎸ ᎤᏲᏅ ᎢᎦᎵᏍᏕᎸᏙᏗ, ᏕᏫ ᎤᏅᏏᏓᏍᏗ ᎤᏁᏢᏔᏅᏛ ᎨᏒ ᎠᏁᎲ ᎤᎾᏄᎪᏨ.\nᏄᎬᏫᏳᏒᏃ ᎠᏥᎸ-ᎨᎶᎯ ᎠᏰᎵ ᎤᎴᏅ, ᎤᏛᏛᏁ ᏥᏌ, ᎯᎠ ᏁᏪᏎᎢ, ᏝᏍᎪ ᎪᎱᏍᏗ ᏯᏗᎭ? ᎦᏙ ᎾᏍᎩ ᎯᎠ ᏣᏂᏃᎮᎭ ᎨᏣᏡᏗᏍᎬᎢ?\nᎿᏉᏃ ᏣᏂ ᏣᏥᏍᏚᎲ ᏧᏛᎦᏅ ᏄᏍᏛ ᏚᎸᏫᏍᏓᏁᎲ ᎦᎶᏁᏛ, ᏙᏧᏅᏎ ᎠᏂᏔᎵ ᎬᏩᏍᏓᏩᏗᏙᎯ,\nᎾᏍᎩ ᏥᏚᏓᏲᏎ ᎤᏩᏒ ᏥᏚᎫᏴᎮ ᎾᏂᎥᎢ, ᎬᏂᎨᏒ ᎢᎬᏁᏗ ᎠᏎᎸᎯ ᎨᏒ ᎾᎯᏳᎢ,\nᎠᎴ ᏗᎨᏍᎩᎥᏏᏉ ᎣᎩ-ᏍᎦᏅᏨᎢ; ᎠᏴᏰᏃ ᎾᏍᏉ ᏗᎦᏲᏥᏁᎰ ᏂᎦᏛ ᏦᏥᏚᎩ; ᎠᎴ ᏞᏍᏗ ᎤᏓᎪᎵᏰᏗᏱ ᏫᏗᏍᎩᏯᏘᏅᏍᏔᏅᎩ; ᏍᎩᏳᏓᎴᏍᎨᏍᏗᏉᏍᎩᏂ ᎤᏲ ᎨᏒᎢ.\nᎠᏫᏅ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏓᎩᎧᎿᏩᏕᏅ ᏥᏧᏣ ᎨᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎦᏙ ᎠᏏ ᎠᎩᎷᎳ?\n“ᏙᎢᏳᏍᏗ ᎤᏰᎸᏗ “ᎭᏓᏍᏕᏓᎵᏴᏍᎩᏞ-ᏧᏪᏥ ᏣᎧᎵᏨ?” ᎤᏛᏛᏁ ᏫᎵᎻ.\nᎢᏳᏰᏃ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏱᏂᎬᏁᎭ ᏱᎦᏄᏬᎭ ᎧᏁᏍᎦ, ᎾᏍᎩ ᎪᎯ ᎢᎦ ᏠᎨᏏ ᏤᎭ, ᎤᎩᏨᏅᏃ ᏗᎦᏚᏗᏱ ᏬᎾᏗᏅᏗ ᏥᎩ, ᎤᏟᎯᏳᏍᎩᏂ ᏂᎯ ᏂᏙᏓᏥᏄᏬᎢ ᎤᏍᏗ ᎢᏦᎯᏳᎯ!\nᎦᏙᎯ ᎤᏓᏑᏯ.\nᎠᏎᏃ ᎿᏉ ᎡᎶᏛ ᎤᏕᏅ ᎢᏳ ᎢᎦᏚᎳᏫᏨ, ᎡᎶᏗᏏ ᎤᏪᏥ ᎠᏛ ᎤᎾᎵᏍᎩᎡᎴᎢ, ᎠᎴ ᎣᏎ ᎤᏰᎸᏁ ᎡᎶᏛ.\n”ᏙᎢᏳᏍᏗ, ᏫᎵᎻ?”\nᎾᏎᎵᏗᏃ ᎤᎷᏤ ᎾᎿ ᎠᎦᎥᎯᏍᏔᏅᎢ; ᎢᏳᏛᏁᏗᏃ ᎨᏒ ᏄᏛᏁᎴ ᏭᏴᎴ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ, ᎠᎴ ᏚᎴᏁ ᏧᎪᎵᏰᏗᏱ ᎪᏪᎵ.\n”ᎡᎵᏍᏗ--ᎵᏍᏗ--ᎵᏍᏗ ᏐᏚᎯ ᎠᏰᎵ,” ᎤᏛᏁ ᏌᏌ.\nᏫᎵᎻ ᎤᏩᏌ ᎤᎾᎦᏎᏍᏕᎢ ᏕᎦᎶᎨᏒ.\nᎠᏂ ᎢᏗᎪ ᏩᏘᎭ ᎤᏓᎨᏳᏗ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎬᏅ ᎡᎳᏗ ᎢᎩᏁᎸᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏴ ᏕᏛᏅ ᎡᎳᏗ ᏱᏗᏗᏁᎭ ᎢᏓᏓᏅᏟ.\nᎤᎪᏏᏓ ᎢᎬᏁ ᏍᏉ ᎤᏉᏔᏗ.\nᎤᏍᎦᎣᏅ ᏗᎧᏃᏗ ᎨᏎᎢ.\nᎿᏉᏃ ᏥᎷᏏᎵᎻ ᏫᎤᏂᎶᏎᎢ ᎣᎵᏩ ᏧᏙᎢᏛ ᎤᏌᎯᎸ ᎤᎾᏓᏅᏎᎢ, ᎾᏍᎩ ᏥᎷᏏᎵᎻ ᎾᎥ ᏥᎩ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᎡᏅᏍᏗ ᎢᏴᏛ ᏥᎩ.\nᏄᎾ ᎦᏲᏟ ᎤᏩᏛᎮ, ᎤᎵᏏᏂᏗ ᎤᎩᏍᏙᎡ, ᎤᎩᏎ ᏃᏉ ᎤᏂᏏᏗ ᎤᏪᏅᏎ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎤᏬᏑᎶᏨᎯ ᎤᎷᏨ, ᏔᎵ ᎠᎩᏄᏛᏗ ᎢᏯᏓᏅᏖᏗ ᎤᏁᎢ, ᎾᏍᎩ ᎠᏰᎵ ᎢᏯᏓᏅᏖᏗ ᎢᎦᎢ ᏥᎩ.\n“ᎠᎹ ᎯᏍᏚᏣ.”\nᎢᏳᏃ ᎢᏣᎴᎲᏍᎨᏍᏗ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎨᏣᏓᏁᎮᏍᏗ ᎡᏥᏍᎦᏅᏤᎸᎢ, ᎢᏳᏃ ᎪᎱᏍᏗ ᎡᏤᎵᏎᎮᏍᏗ ᎩᎶᎢ; ᎾᏍᎩ ᎾᏍᏉ ᎢᏥᏙᏓ ᎦᎸᏔᏗ ᏤᎭ ᎦᎨᏥᏁᏗᏱ ᎯᎠ ᎢᏥᏍᎦᏅᏨᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎤᏙᎯᏳᎯᏯ ᎯᎠ ᏂᏨᏪᏎᎭ, ᎠᏙᎴᎰᏍᎩ ᎥᏝ ᏱᏓᎦᏓᏂᎸᎪ ᎤᏩᏒ ᎤᏤᎵᎪᎯ.\nᏃᏯ ᎢᎬᏓ ᎨᏎᎢ, ᎤᏍᏆᏔ ᎪᏍᏓᏴᎢ ᎢᎬᏓ ᎨᏎᎢ.\nᎡᎶᏛᏰᏃ ᎤᏂᏴᎮ ᏣᏂ ᎠᎴ ᎤᎸᎴᎢ ᎠᎴ ᎤᏍᏚᏁ ᏗᏓᏍᏚᏗᏱ, ᏈᎵᎩ ᎡᎶᏛ ᏗᎾᏓᏅᏟ ᎤᏓᎵᎢ ᎡᎶᏗᏏ ᏧᏙᎢᏛ ᎤᏍᏛᏗᏍᎨᎢ.\nᎡᎵᎻᏃ ᎡᎻᏂᏓᏈ ᎤᏕᏁᎴᎢ; ᎡᎻᏂᏓᏈᏃ ᎾᏐᏂ ᎤᏕᏁᎴᎢ; ᎾᏐᏂᏃ ᏌᎵᎹ ᎤᏕᏁᎴᎢ;\nᎿᏉᏃ ᏥᏳᎯ ᎤᎾᏣᎢ ᎤᏂᎷᏨ ᎬᏩᏓᏙᎵᏍᏓᏁᎸᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎤᏙᎯᏳᎯᏯ ᏂᎯ ᎤᏁᎳᏅᎯ ᎤᏪᏥ.\nᎠᎴ ᏂᎯ ᎦᏚᏱ ᎦᏚᎲ ᏧᏗᏱ, ᎥᏝᏍᎩᏂ ᏣᏍᏗᎧᏂ ᏱᎩ, ᏥᎶᏓᏑᏯ ᏄᏂᎬᏫᏳᏒ ᏧᏗᏱ, ᏂᎯᏰᏃ ᏓᏣᏄᎪᏥ ᏗᏆᏤᎵ ᏴᏫ ᎢᏏᎵ-ᏗᎧᏁᏤᎯ.\nᎢᏳᏃ, ᎢᏓᎵᏅᏟ, ᏱᏂᏨᎷᏤᎸ ᎢᎸᏍᎩ ᎢᏳᏓᎴᎩ ᏱᏗᏥᏬᏂᎭ, ᎦᏙ ᎤᏍᏗ ᏱᏨᏁᏉᏏ, ᎢᏳᏍᎩᏂᏃᏅ ᎢᏨᏬᏁᏗᏍᎬ ᎪᎱᏍᏗ ᏱᏨᎾᏄᎪᏫᏎᎭ, ᎠᎴ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᏱᏂᏨᏴᏁᎭ, ᎠᎴ ᏱᎦᏙᎴᎰᏍᎦ, ᎠᎴ ᏱᏗᎦᏕᏲᎲᏍᎦ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏨᏪᏎᎲ ᎿᏛᎦ. ᏅᎩ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎪᎨᎳᏗᏙᎭ ᎤᏁᎳᏅᎯ ᏄᎾᏚᎵᏄᏁᎸ.\nᎠᏎᏃ ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎤᏟ ᏂᏚᏬᎯᏳᏒᎩ ᎧᏁᏥᏙᎯ ᎠᎴ ᎤᏤᎵᎦ ᏥᏳ ᎠᏂᏁᎬᎢ, ᎡᏍᎦᏉ ᏉᎳ ᏂᎦᏪᏍᎬᎢ.\nᏕᏦᎯᏳᏎᏍᏗ ᎾᏍᎩ Ꮎ ᎨᏣᎦᏌᏯᏍᏗᏕᎩ, ᎠᎴ ᏕᏣᏓᏲᏍᎨᏍᏗᏉ; ᏗᏣᏓᏅᏙᏰᏃ ᏚᎾᎦᏌᏯᏍᏗᏕᎦ, ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᏥᎩ ᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᎢᏳᏅᏁᏗ ᏥᎨᏐ ᏄᎾᏛᏁᎵᏙᎸᎢ; ᎾᏍᎩ ᎠᎾᎵᎮᎵᎬ ᎬᏂᎨᏒ ᎢᎬᏩᏅᏁᏗ ᏱᎩ, ᎥᏝᏃ ᎤᏲᏉ ᏚᎾᏓᏅᏛᎢ; ᎾᏍᎩᏰᏃ ᎥᏝ ᎨᏣᎵᏍᏕᎸᏙᏗ ᏱᎩ.\nᎩᎶᏰᏃ ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎬ ᎾᏛᏁᎮᏍᏗ, ᎾᏍᎩ ᏦᏍᏓᏓᏅᏟ, ᎠᎴ ᎥᎩᏙ, ᎠᎴ ᎡᏥ.\nᎣᏍᏓ ᎨᏎᎢ.\nᏚᏂᏅᏎᏃ ᏫᎬᏩᎷᏤᏗᏱ ᎩᎶ ᎢᏳᎾᏍᏗ ᎠᏂᏆᎵᏏ ᎠᎴ ᎡᎶᏛ ᎬᏩᏍᏕᎵᏍᎩ, ᎤᏂᏌᏛᏗᏱ ᎤᎾᏚᎵᏍᎨ ᎦᏬᏂᏍᎬᎢ.\nᏰᎵ ᎢᏗᏎᎸ ᎾᏂᎡᎢ.\nᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎦᏓᎭ ᎠᏓᏅᏙ ᎤᏯᎠ, ᎤᎾᏛᏅᎢ.\nᎠᎴ ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗ ᏕᎤᎸᏫᏍᏓᏁᎭ, ᎾᏍᎩ ᎠᏥᎸ ᎦᎸᎳᏗ ᏅᏓᏳᎶᎯᏍᏗᏱ ᎠᏂᏃ ᎡᎶᎯ ᎤᏬᏥᎯᏍᏗᏱ ᏂᎬᏁᎭ ᏴᏫ ᎠᏥᎦᏔᎲᎢ,\nᏱᎦᎷᎩᏰᏃ ᏯᏰᎶᎢᏍᏓ, ᏴᏥᏩᏛᏓ ᎢᏥᎵᎾᎥᎢ.\nᎠᏦᎭᏴ ᎭᏫᏂ ᎦᎵ ᏴᏫ ᎨᏒ, ᎤᏂᏍᎦᏅᏨ.\nᎿᏉᏃ ᎠᏂᏧᏏ ᏔᎵᏁ ᏅᏯ ᏚᏂᎩᏒᎩ ᏗᎬᏩᏂᏍᏙᏗ.\nᎯᏍᎩᏁᏃ ᎢᏳᏟᎶᏛ ᎧᎳᏩᏗᏒ ᏔᎵᏁ ᎢᎤᏪᏅᏎᎢ, ᎠᎴ ᏚᏩᏛᎮ ᏅᏩᎾᏓᎴ ᎠᏂᏙᎾᎡ ᎪᎱᏍᏗ ᎾᎾᏛᏁᎲᎾ, ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; ᎦᏙᏃ ᎠᏂ ᎢᏥᏙᎾᎠ ᎤᏙᏓᏆᏛ ᎪᎱᏍᏗ ᏂᏣᏛᏁᎲᎾ?\nᎾᏍᎩᏃ ᏄᏪᏒ, ᎤᏂᏲᏠᎯᏎᎸᎩ ᎠᏂᏆᎵᏏ ᎠᎴ ᎠᏂᏌᏚᏏ, ᎤᏂᏣᏘᏃ ᎨᏒ ᏔᎵ ᏄᎾᏓᏛᎩ.\nᎾᏍᎩ ᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ; ᎥᏝ ᎡᎶᎯ ᏱᏥᏯᏓᏙᎵᏍᏓᏁᎭ, ᎾᏍᎩᏉᏍᎩᏂ Ꮎ ᏗᏍᎩᎧᏁᎸᎯ ᏥᎩ; ᏂᎯᏰᏃ ᏗᏣᏤᎵᎦ.\nᎾᎿᏃ ᎤᏩᏛᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎢᏂᏯ ᏧᏙᎢᏛ, ᏧᏁᎳ ᎢᏧᏕᏘᏴᏛ ᎬᏩᏂᏏᏅᎯ ᎨᏎ ᎦᏂᏟ ᎤᎸᏓᎸᎥᏍᎨᎢ.\n“ᏧᏍᏆᏴᏍᏗ,” ᎤᏍᎦᎣᏅ ᎢᏳᏍᏗ ᏄᏪᏎ ᏫᎵᎻ, ᏱᏣᎴᏫᏍᏔᏅᎾ ᎨᏎᏍᏗ ᎯᏬᏂᏍᎬ ᏃᎴ ᏱᏣᏅᏨᎾ ᎨᏎᏍᏗ, ᏂᎦᏓ ᏓᎩᏲᎰᏎᎵ, ᎤᏲᏨ ᎠᏆᏓᏅᏙᎩ ᏓᏥᎵᏬᏥ.\nᎠᎾᎵᏅᏟᏍᎩᏂ ᎾᏍᎩ ᎤᎾᏛᎦᏅ, ᏏᏌᎵᏱ ᏭᎾᏘᏃᎴᎢ, ᎿᏉᏃ ᏓᏌ ᏭᏂᏅᏎᎢ.\nᎢᏧᎳᏃ ᎢᏗᎾᏘ ᎠᎴ ᏧᎾᏟᏂᎩᏓ ᏄᎾᎵᏍᏔᏁᎢ.\nᎠᏎᏃ ᏍᎩᎨᏳᎯᏳ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏟ ᏥᏰᎸᏍᎦ ᎬᏍᏗᏰᏙᏗᏱ, ᏉᎳ ᎤᏛᏐᏅᎯ ᎢᏯᏆᏍᏗ ᏥᎩ, ᎠᎴ ᎪᎯ ᎨᏒ ᎠᏴᎩ, ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏍᏛᏗᏍᎬᎢ.\nᎠᎴ ᎤᏂᏁ ᎨᏥᏅᏏᏛ ᏧᎾᎳᏏᏕᏄᎶᏗ, ᎾᏂᎥᏃ ᎾᏍᎩᏯ ᎤᏂᏂᎬᏎᎲ ᎨᏥᏯᏙᎮᎮᎢ.\nᎫᎾᏓᎴᎩ ᏃᎴ ᎠᏂᏁᎵ ᎠᎼ ᎡᏙᎯ ᏥᏳ ᎤᎾᏂᎨᏎ, ᎤᏟᏍᏓ ᏃᎴ ᎪᎰᏍᏗ ᏱᏂᎦᎵᏍᏗᏍᎬᎾ.\nᏫᎵᎻ ᎠᏍᎩᏗᏍᎨᎢ ᎰᎻ.\nᎤᏓᏅᏘᏌᏅᏃ ᎯᎠ ᏄᏪᏎᎢ; ᏄᏂᏣᏔ ᎨᎦᎫᏴᎡᎯ ᎨᏥᏅᏏᏓᏍᏗ ᎡᏙᏓ ᏧᏤᎵᎦ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏂᎭ ᎤᎾᎵᏍᏓᏴᏗ, ᎠᏴᏃ ᎠᎪᏄᏉ ᎠᎩᎯᎭ!\nᎤᎩᎳᏫᏎᏃ ᏫᏚᏣᏁᎴ ᏥᏳᎯ; ᎦᏃᎸᎥᏍᎬᏃ ᎤᏎᎵᎪᏤᎢ; ᎠᎴ ᎤᎶᏒᏍᏔᏅᎯ ᎤᎾᏓᏅᏖᏔᏁ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᎴ ᎤᏂᏍᏆᏂᎪᏎᎢ.\nᎠᏏᏴᏫᏃ ᎾᎿ ᎤᏓᏑᏴᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎪᏏᏏᏍᎩ, ᎤᏛᏛᏅᎩ ᎤᏌᏛᎥᏍᎬᎢ, ᎯᎠ ᏄᏪᏒᎩ;\nᎠᎴ ᎨᏆᏂ ᏭᎷᏤ ᎾᏍᎩ ᎨᎵᎵ ᎦᏚᎲᎢ, ᎠᎴ ᏕᎨᏲᎲᏍᎨ ᎤᎾᏙᏓᏆᏍᎬ ᎢᎦ ᏓᏍᏆᎸᎮᎬᎢ.\n”ᎠᏆᎵᏍᎪᎸᏓᏁᎰ ᏗᏥᏣᎪᏍᏗ ᏗᎦᏙᎵ ᎠᏰᎵ.” \nᎠᎾᎵᏅᏟ ᏧᎾᏓᎨᏳᏗ ᎨᏒ ᎬᏗ ᎣᏍᏛ ᏕᏣᏓᎨᏳᏎᏍᏗ; ᏗᏓᎸᏉᏙᏗ ᎨᏒ ᎢᏨᏗᏍᎬ ᏕᏣᏓᎬᏫᏳᏗᏍᎨᏍᏗ.\nᎪᎯᏳᏗ ᎨᏒ ᎢᏛᏗᏍᎬ ᎢᏙᎵᎦ ᎤᏁᎳᏅᎯ ᎧᏁᎬ ᎬᏔᏅᎯ ᎨᏒ ᎡᎶᎯ ᏚᏙᏢᏅᎢ, ᎾᏍᎩᏃ ᏧᏓᎴᏅᏛ ᎠᎪᏩᏛᏗ ᏥᎩ ᎥᏝ ᎾᏍᎩ Ꮎ ᎬᏂᎨᏒ ᎢᏳᎵᏍᏔᏅᎯ ᎨᏒ ᏗᎪᏢᏔᏅᎯ ᏱᎩ.\n[ᎦᏙᏃ ᏳᏍᏗ,] ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎤᏚᎵᏍᎬ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎵᏂᎬᎬ ᎤᎾᏄᎪᏫᏍᏗᏱ, ᎬᏂᏗᏳ ᎨᏒ ᎬᏗᏍᎬ ᎪᎯᏗᏳ ᎤᏁᎳᎩ ᏱᏚᏪᎵᏎᎸ ᏗᏖᎵᏙ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᏗᏟᏍᏗ, ᏗᏛᏅᎢᏍᏔᏅᎯ ᏗᏛᏙᏗᏱ;\n“ᎾᏍᎩᏍᎪᏃ 'ᎤᏟᏍᏓ, ᏧᏍᏆᏴᏍᏗ,’ ᏣᎨ?”\nᎥ\nᏞᏍᏗ ᎿᏉ ᏕᏣᏓᏅᏛ ᏱᏗᏣᏓᎸᏉᏗᎭ, ᎠᎴ ᏝᏍᎪ ᏗᏧᎪᏗᏍᎩ ᎤᏲ ᎢᏣᏓᏅᏖᏍᎩ ᏱᏂᏣᎵᏍᏔᏅ?\nᎿᏉᏃ ᎬᏩᏂᏴᎮᎢ, ᎠᎴ ᎬᏩᏘᏅᏎ ᎠᎴ ᏫᎬᏩᏴᏔᏁ ᏄᎬᏫᏳᏒ ᎠᏥᎸᎨᎶᎯ ᏗᎦᏁᎸᎢ. ᏈᏓᏃ ᎢᏅ ᎣᏂ ᏗᎵᏍᏓᏩᏗᏎᎢ.\nᏗᏥᏲᎵ, ᎠᏏ ᏞᎦ ᎢᏨᏰᎳᏗᏙᎭ; ᏍᎩᏲᎮᏍᏗ; ᎠᎴ ᎾᏍᎩᏯ ᎠᏂᏧᏏ ᏥᏂᎦᏥᏪᏎᎸᎩ, ᏫᏥᎦᏛ ᎥᏝ ᏫᏴᎨᏥᎶᎯ, ᏥᎦᏥᏲᏎᎸᎩ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎿᏉ ᏂᎯ ᏂᏨᏪᏎᎭ.\nᎠᎴ ᏥᏌ ᎯᎠ ᏄᏪᏒᎩ; ᏩᎾᏅᎥᎦ ᏴᏫ. ᎾᎿᏃ ᎤᏣᏛᎩ ᎦᏄᎸᏒᎩ. ᎰᏩᏃ ᎤᎾᏅᏅᎩ ᎠᏂᏍᎦᏯ ᎯᏍᎩᎭ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎢᏯᏂᎢ.\nᎠᎴ ᎤᎬᏫᏳᎯ ᎢᏳᏩᏂᏐᏗ ᎨᏎᏍᏗ ᎢᏥᏁᏉᏤᏗᏱ ᎠᎴ ᎤᏣᏘ ᎢᏳᎵᏍᏙᏗᏱ ᏕᏣᏓᎨᏳᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏕᏥᎨᏳᏒᎢ, ᎾᏍᎩᏯ ᎠᏴ ᏂᎯ ᎢᏨᎨᏳᏒᎢ;\nᏞᏍᏗ ᎡᏥᎵᏓᏍᏔᏅᎩ; ᎾᏲ ᏗᎵᏃᎮᎵᏓᏍᏗ ᎨᏒ ᎠᏲᏍᏗᏍᎪ ᎣᏍᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᏧᏆᎶᎦ ᏓᏛᎵᏖᎸᏂ ᏃᎴ ᏓᏓᎦᏙᎣᏏ.\nᎾᏂᎥᏃ ᎩᎶ (ᏚᎾᏙᎥ) ᏂᏗᎪᏪᎸᎾ ᎨᏒ ᎯᎠ ᎾᏍᎩ ᎬᏂᏛ ᎠᏓᏁᎯ ᎪᏪᎵᎯ, ᏫᏕᎨᎦᏓᎢᎡᎬᎩ ᎠᏥᎸ ᏨᏓᎸᎢ.\nᎿᏉᏃ ᎢᎡᎪᎢ ᏫᏓᏯᏂᏍᎪ ᎤᏩᎾᏓᎴ ᎦᎵᏉᎩ ᎠᏂᏍᎩᎾ ᎤᏟ ᎢᏳᏂᏁᎫᏥᏛ ᎡᏍᎦᏉ ᎤᏩᏒ, ᎾᎿᏃ ᎠᏂᏴᎯᎰᎢ ᎠᎴ ᎠᎾᏁᎳᏗᏍᎪᎢ, ᎣᏂᏃ ᏄᏍᏛ Ꮎ ᎠᏍᎦᏯ ᎤᏟ ᎤᏲᎢᏳ ᎨᏐᎢ ᎡᏍᎦᏉ ᎢᎬᏱᏱ. ᎾᏍᎩᏍᎩᏂ ᏄᎾᏍᏕᏍᏗ ᎪᎯ ᎤᏂᏁᎫᏥᏛ ᏣᏁᎭ.\n“ᏌᎳᏓ! \nᏉᎳᏃ ᎤᏙᎴᎰᏒ ᎢᎦᏛ ᎠᏂᏌᏚᏏ ᎨᏒᎢ, ᎢᎦᏛᏃ ᎠᏂᏆᎵᏏ, ᎤᏪᎷᏅᎩ ᏕᎦᎳᏫᎥᎢ ᎯᎠ ᏄᏪᏒᎩ; ᎢᏥᏍᎦᏯ ᎢᏓᏓᏅᏟ, ᎠᏴ ᏥᏆᎵᏏ, ᎠᏆᎵᏏ ᎤᏪᏥ; ᎤᏚᎩ ᎬᏗ ᎨᏒ ᎠᎴ ᎠᏲᎱᏒ ᏗᎴᎯᏐᏗ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏆᎵᏱᎵᏕᎭ.\nᏗᎦᏅᏬ ᎢᏴ ᏭᎷᏨ ᎦᎸᎶ ᏭᏚᎧᎾᏅ ᏕᏧᎬ ᎠᏰᎵ, ᎤᏓᎨᏛ ᎠᎼ ᏄᏍᏛᎢ.\nᎾᏍᎩ ᏂᏗᎨᏒᎾ ᎠᏂᏴᏫᏯ, ᏲᎾ, ᏩᏯ, ᏨᏓᏥ ᎠᏁᏙᎰ ᎢᎾᎨ.\nᎨᏍᏗ ᏯᏂᎦᏔᎮᎢ ᎧᏁᏍᎪ ᎭᏫᏂᏣ ᎤᏗᏍᎦᏢᎢ ᏥᏍᏕᏥ ᏃᎴ ᎠᏔᎴᎦᏒ ᎤᏗᏍᎦᏢ ᎡᏆ ᎬᏂᎨ ᎤᏍᎪᎸ ᎧᏅᏂᏍᎩ.\nᎠᎴ ᎠᏴ ᎢᏥᏙᏓ ᎨᏎᏍᏗ, ᏂᎯᏃ ᏗᏇᏥ ᎨᏎᏍᏗ ᎢᏥᏍᎦᏯ ᎠᎴ ᎢᏥᎨᏴ, ᎠᏗᎭ ᎤᎬᏫᏳᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ.\nᎯᎠᏰᏃ ᏂᎦᏛ ᎤᏣᏘ ᎤᏂᎲ ᎤᏃᏣᎴᏛ ᎠᏂᎲᎦ ᎤᏁᎳᏅᎯ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎨᏒᎢ; ᎯᎠᏍᎩᏂ ᎤᏲ ᎢᏳ-ᏛᎿᏕᎩ ᎨᏒ ᏂᎦᏗᏳ ᎤᎵᏍᏕᎸᏙᏗ ᎤᎲᎠᎲᎦ.\n“ᏍᏓᏓᏒᏍᏓᏛ ᎤᏛᏁ ᎪᏱᏁᎢ, ᎱᎾᎩᎡᎴ ᏏᏆ ᏲᎾ ᎤᏤᏍᏙ. ᎦᏚ ᎤᎦᎾᏍᏓ ᎠᏔᎵᎩᏓ ᎤᏁᎴ.\n“ᎤᎵᏨᏓᏆᏓ ᏫᏓᎨᏙᎵ,” ᎤᏛᏁ.\nᏲᎾ ᎤᏤᏍᏙ ᎠᏍᎩᏗᏍᎨᎢ ᎤᏨᎢᏍᏗᏍᎬ ᏗᎵᏖᎸᏂᏍᏗ.\nᏂᏥᎥᏰᏃ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏂᏣᎵᏍᏔᏅ ᎦᎶᏁᏛ ᏥᏌ ᎡᏦᎢᏳᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ.\n“ᏃᎴ ᏍᏓᏅᏖᏍᏗ, ᏙᏓᏆᏓ ᏓᏟᏰᎵᏙᎸ ᎠᏕᎳ.\nᏈᏓᏃ ᎤᏯᏅᏒᎯ ᏚᎧᎿᏁᎢ, ᎠᎴ ᎾᏍᏉ ᏣᏂ; ᏈᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏗᏍᎩᎾᎦᏅᎦ.\nᎤᏁᎳᎩᏰᏃ ᎢᏤᎵᏍᎪ ᎢᏳᏃ ᎩᎶ ᏱᏗᏥᎾᏢᏅ, ᎢᏳᏃ ᎩᎶ ᎠᏒᎭ ᏱᏂᏨᏁᎸ, ᎢᏳᏃ ᎩᎶ [ᎪᎱᏍᏗ ᎢᏥᎲ] ᏱᏥᎩᎡᎸ, ᎢᏳᏃ ᎩᎶ ᎤᏩᏒ ᏳᏓᎵᏌᎳᏓᏅ, ᎢᏳᏃ ᎩᎶ ᏕᏣᎧᏛ ᏱᏨᏂᎸ.\nᎧ ᎾᏍᎩ ᎢᏳᏍᏗ ᏂᎯ ᎠᎴ ᏗᏂᎳᏫᎩ ᎢᏣᎵᎪᎲᎦ, ᎡᏥᏔᏂᏲᏏ ᏄᎬᏫᏳᏒ ᏗᏓᏘᏂᏙᎯ, ᎤᎩᏨᏅ ᎢᏣᏘᏃᎮᏗᏱ ᏥᏣᏚᎵᏍᎪ ᎾᏍᎩᏯᎢ ᎯᎠ ᎾᏍᎩ ᎠᎫᎢᏍᏗᏍᎬᎢ, ᎠᏴᏃ ᎠᏏᏉ ᎾᎥ ᏂᎦᎷᎬᎾ ᎨᏎᏍᏗ, ᎣᎦᏛᏅᎢᏍᏗ ᎣᏥᎢᏍᏗᏱ.\nᎩᎶ ᏍᎩᏍᏕᎳ!”\nᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏓᎫᏓᎳᎩ, ᎢᏳᏃ ᏂᎦᎦᏌᏯᏍᏔᏅᎾ ᏱᎩ ᎾᏍᎩ ᎢᎦᎸᏉᏗ ᎠᎵᏍᏕᎸᏙᏗ; ᎾᏍᎩ ᎢᎬᏱ ᏧᎴᏅᎲ ᏧᏃᎮᏛ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎾᏍᎩ ᎠᏴ ᏥᎨᎩᏍᏓᏱᏕᎸᎩ ᎾᏍᎩ Ꮎ ᎬᏩᏛᎦᏁᎸᎯ;\nᎿᏉᏃ ᏥᏌ ᎬᏩᎷᏤᎸᎩ ᏗᏃᏪᎵᏍᎩ ᎠᎴ ᎠᏂᏆᎵᏏ ᏥᎷᏏᎵᎻ ᎠᏁᎯ, ᎯᎠ ᏄᏂᏪᏒᎩ;\n“ᏌᎳᏓ,” ᎤᏛᏁ ᏫᎵᎻ ᎪᎯᎢᏴ, “ᎦᏙᏃ ᎡᏝᏪᎯ ᏥᎩ ᏂᎯ?”\n”ᎯᎪᏩᏘᎭᏧ, ᎠᎳᏂ?\nᎾᏍᎩᏃ ᎯᎠ ᏄᏍᏛ ᎠᏉᎯᏳᏒ ᎠᏆᏓᏅᏖᎸᎩ ᎪᎯ ᎨᏒ ᎠᏏ ᎾᏍᏆᎵᏍᎬᎾ ᏫᏨᎷᏤᏗᏱ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᏔᎵᏁ ᎣᏍᏛ ᎢᎶᏓᏅᏓᏗᏍᏗᏱ;\nᏃᎴ ᏁᎳᎩ ᎨᏎᏍᏗ ᏥᏔᎦ ᎠᏂᎩᏌ!”\nᏙᏯᏃ ᎤᎴᏴᏎ ᏗᏧᎬ ᎠᏒᏛ ᏫᎫᏓᎸ\nᎨᎵᏍᎬᏃ ᎪᎯᎩ ᎫᏩᎶᏐᏅ Mr. Chapman, ᎧᎪᏊ ᏱᎩ, ᎠᎴ Ohio ᎠᎴ Illinois ᏳᏪᏅ.\nᎩᎶᏃ ᎤᏚᎵᏍᎨᏍᏗ ᏣᏱᎵᏓᏍᏗᏱ, ᎠᎴ ᏣᎾᎡᏗᏱ ᎭᏫᏂ ᏣᏄᏬ, ᎤᏛᏃᎯ ᎾᏍᏉ ᎯᏅᏁᎮᏍᏗ.\n“ᎨᏍᏗ ᏱᏛᎨᏏ ᏐᏈᎵ ᏃᎴ ᏩᎦ ᏧᏂᏍᏆᏂᎪᏙᏗ,” ᎤᏛᏁ.\nᎾᏍᎩ, ᎤᏲ ᎠᏓᏅ ᏖᏗ ᎦᎶᏅᎮᎸ ᏚᎦ ᎤᏂᎲ ᎦᏙ ᏱᏓᏯᏚᏣ ᎾᏍᎩᏴ ᎣᎩᏌᏙᏴᏍᏗ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ, ᏃᎴ ᎠᏍᎦᏍᏗ ᎢᏳᎾᏛᏁᏗ ᏳᏂᏂᎦᎸᏣ.\n“ᎭᏩ, ᎣᎯᏍᏙᏗᏗ ᎠᏆᏓᏅᏔ ᏲᎾ ᎤᏤᏍᏙ ᎤᏰᎸᏛ,” ᎤᏛᏁ ᎪᏱᏁ.\nᎾᏍᎩ ᏂᎦᏛ ᏌᏉᏉ ᎢᏳᎾᎵᏍᏙᏗᏱ, ᎾᏍᎩᏯ ᏂᎯ ᎡᏙᎠ ᏥᏍᎩᏯᎠ, ᎠᎴ ᎠᏴ ᏥᎬᏯᎠ, ᎾᏍᎩ ᎾᏍᏉ ᏌᏉᏉ ᎢᎦᎵᏍᏙᏗᏱ; ᎾᏍᎩᏃ ᎡᎶᎯ ᎤᏬᎯᏳᏗᏱ ᏂᎯ ᏅᏓᏍᎩᏅᏏᏛ ᎨᏒᎢ.\nᎠᏎᏃ ᎠᏴ ᎯᎠ ᏂᏨᏪᏎᎭ; ᏞᏍᏗ ᏱᏣᏎᎵᏔᏁᏍᏗ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ ᎪᎱᏍᏗ, ᏞᏍᏗ ᎦᎸᎳᏗ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ, ᎤᏁᎳᏅᎯᏰᏃ ᎤᏪᏗᏱ ᎾᏍᎩ;\nᎾᏍᎩ ᎾᏍᏉ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎠᏰᎵ ᎠᎫᏴᏗ ᎨᏒ ᎢᏣᎫᏱᏍᎨᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᏧᏅᏏᏓᏍᏗ ᎾᏍᎩ, ᏚᏂᎸᏫᏍᏓᏁᎭ ᏂᎪᎯᎸ ᎾᏍᎩ ᎯᎠ.\nᎤᏦᏩᏛ ᏭᎸᏁ ᏩᎶᏏ ᎡᎳᏆᏗ ᏃᎴ ᎤᎩᎶᏫᏎᎢ ᎧᏁᏍᎦ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎦᎸᎳᏗ ᏭᎷᏤ.\nᎤᏲᎢ ᎤᏓᏅᏘ ᎡᎳᏗ ᎤᏅᏤ ᏃᎴ ᏚᎧᏔᏍᏔᏁᎢ.\nᎬᏂᏳᏉ ᏛᏍᏆᎸᎯ, ᎥᎥ, ᎿᏉᎤᏍᏆᎸᎲ, ᎢᏣᏗᎦᎴᏲᎢᏍᏗᏱ, ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᏙᏗᏤᏅᏒ ᎢᏗᏢ, ᎠᎴ ᏓᏍᎩᏴᏕᏥ ᎠᏋᏒᏉ ᎨᏎᏍᏗ; ᎥᏝᏍᎩᏂᏃᏅ ᎠᏋᎡ ᏱᎩ, ᎠᎦᏴᎵᎨᏰᏃ ᏔᎵ ᏅᏛᏗᏕᎦ.\nᎠᎴ ᎯᎠ ᎾᎩᏪᏒᎩ; ᏣᎬᏫᏳᎯ, ᎠᏂᎦᏔᎭ ᏕᏥᏍᏚᏂᏙᎸᎢ ᎠᎴ ᏕᏥᎸᏂᎵᏙᎸᎢ ᎨᏦᎯᏳᎲᏍᎩ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏕᎪᏢᏩᏗᏒᎢ.\nᎠᎴ ᏂᎯ ᎢᏥᎦᏴᎵᎨᎢ, ᏞᏍᏗ ᏱᏗᏥᎿᎸᏍᏗᏍᎨᏍᏗ ᏗᏤᏥ; ᏕᏣᏛᎯᏍᏗᏍᎨᏍᏗᏍᎩᏂ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᏗᏕᏲᏗ ᎨᏒ ᎠᎴ ᎨᏯᏙᎥᎯᏍᏗ ᎨᏒᎢ.\nᏗᎦᏯᎱᎶ ᏃᎴ ᎤᏩᏂ ᏧᏍᏆᏅᎾ ᏗᏂᏐᎯ ᏧᎾᏣᏪᏐᎸᏍᏙᏗ.\nᎠᏴ ᏉᎳ ᎠᏋᏒ ᎠᏉᏰᏃ ᎬᏓ ᎪᏪᎸᎦ, ᎠᏴ ᏓᎦᎫᏴᎯ; ᎥᏝᏍᎩᏂᏃᏅ ᏨᏒ ᎨᏒ ᎾᏍᏉ ᎬᏚᎦ ᏗᏍᏆᏓᏲᎯᏎᏗᏱ ᏱᎬᏲᏎᎭ.\nᎤᏁᎦ ᏗᏓᏁᎸ ᏭᎷᏣ ᎧᏃᎮᏛ ᏓᏦᎯᏍᏛ, ᎤᎵᏍᎦᏎᏓᏁ ᏤᎩᏏᏂ, ᎨᏍᏗ ᎩᎶ ᎠᏑᏯᎩᏛ ᏱᎩ ᎤᏛᏁ.\nᎠᏂᏍᎦᏯ ᎨᏍᏗ ᎣᏍᏓ ᏳᎾᏓᏅᏔ ᏃᎴ ᏚᏂᏨᎦᏉ.\nᎢᏳᏍᎩᏂ ᎠᏁᏢᏗᏍᎩ ᏁᏙᎲᎾ ᎢᎨᏎᏍᏗ, ᎡᎳᏪᏉ ᎤᏩᏎᏍᏗ ᏧᎾᏁᎶᏗ ᎤᎾᏓᏡᎬᎢ; ᎤᏩᏒᏉ ᎠᏓᎵᏃᎮᏗᏍᎨᏍᏗ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᎵᏃᎮᏗᏍᎨᏍᏗ.\nᎥᎬᎭᏅ ᎢᎪᎯᏓ ᎠᏑᏯᎩᏛ.\nᏍᎩᏃᎯᏏ ᎭᎾ ᎮᏙᎲᎢ, ᎩᎾᎵᎢ ᏱᎩ!” \nᎠᏏᏴᏫ ᎠᏫᏄᏣ ᎠᏂ ᎡᏙᎭ, ᎾᏍᎩ ᏓᏰᎭ ᎯᏍᎩ ᎤᏣᎴᏍᏗ-ᎢᏳᏍᏗ ᎦᏚ, ᎠᎴ ᏔᎵ ᏧᎾᏍᏗ ᎠᏣᏗ ᏕᎦᏁᎭ; ᎠᏎᏃ ᎠᏎᏉᎧᏂ ᎾᏍᎩ, ᎯᎠᏃ ᏥᏄᏂᏣᏔ?\nᎠᎢᏒᏃ, ᎵᏫ ᎡᎵᏈ ᎤᏪᏥ ᎤᎪᎮ ᎤᏬᎴ ᎠᏰᎵ ᎠᏕᎸ ᎠᎩᏍᏗᏱ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏍᎩᏍᏓᏩᏚᎦ. ᏚᎴᏅᏃ ᎤᏍᏓᏩᏛᏎᎢ.\nᏚᏣᏯᎩᏎ ᏩᎶᏏ, ᎣᎵᎭ ᎠᎹ ᏚᏍᏚᏤ ᎧᏩᏯ ᎨᎵᏍᎩ.\nᎨᏍᏗ ᎪᎰᏍᏗ ᎬᎫᏍᏛᏙᏗᏱᎩ.\nᎩᎶᏃ ᎢᏳᎾᏍᏗ ᎾᎿ ᏗᏂᏙᎩ ᎯᎠ ᏂᏚᏂᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᎡᏍᏕᎵᏌᏕ ᎠᎩᏫ?\nᎡᎵᎩ ᎥᏣᏱ ᎪᏢᏅᎥᏍᎩ ᎤᎶᏘ ᏃᏒᎾ ᎾᏋᏁᎸᎩ. ᎤᎬᏫᏳᎯ ᎤᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏕᎤᎸᏫᏍᏓᏁᎸᎢ.\nᏆᏂᏆᏃ ᎤᏚᎵᏍᎬᎩ ᎤᎾᏘᏅᏍᏗᏱ ᏣᏂ ᎹᎦ ᏧᏙᎢᏛ.\nᎦᎸᏉᏗᏳᏰᏃ ᎢᎦ ᎾᎯᏳ ᎤᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏍᏆᎸᎲ; ᎦᎪᏃ ᏰᎵ ᎬᏩᎴᏗ ᎨᏎᏍᏗ?\nᏙᏓᏆᏓ ᎬᏯᎦᏙᏍᏛᎩ ᏃᎴ ᎣᏍᏓ ᎬᏰᎸᎠ.”\nᎠᏓᏅᏗᏍᏗᏍᎩ ᎤᏓᏒᏎᎢ ᏲᎾ ᎤᏤᏍᏙ ᎤᏂᏣᏛᎢ ᎢᏣ, ᎠᏲᎮᎢ ᎮᏂᎵ.\nᏭᏂᏴᎸᏃ ᎠᏤᎵᏍᏛᎢ, ᎤᏂᎪᎮ ᎠᏫᏴ ᎠᎦᏘᏏᏗᏢ ᎤᏬᎴᎢ, ᎤᏄᏪ ᎦᏅᎯᏛ ᎤᏁᎬ ᎠᏄᏬ; ᎠᏂᏍᎦᎢᎮᏃ.\nᎧᏃᎨ ᏄᏓᏅᎯᏒ ᎾᏯᏛᎡ ᎦᏆᎵ ᏲᎾ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏂᏗᏍᎦᎢᎲᎾ ᎢᏗᎷᎩ ᎾᎿ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎦᏍᎩᎸᎢ, ᎾᏍᎩ ᎡᎩᏙᎵᏍᏗᏱ, ᎠᎴ ᎢᎩᏩᏛᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗᏱ, ᎠᎴ ᎢᎩᏩᏛᏗᏱ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎾᏍᎩ ᎾᎯᏳ ᎢᎩᏂᎬᏎᎲ ᎢᎦᎵᏍᏕᎸᏙᏗ.\nᎤᎬᏫᏳᎯ ᎠᎦᏔᎭ ᎢᏳᏛᏁᏗᏱ ᏧᏭᏓᎴᏍᏗᏱ ᎤᎾᏓᏅᏘ ᎤᏂᎪᎵᏰᏍᎩ ᎤᏂᏰᎢᎵᏙᎲᎢ, ᎤᏂᏲᏃ ᏧᏍᏆᏂᎪᏙᏗᏱ ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᏗᎫᎪᏙᏗᏱ ᎢᎦ ᎨᏎᏍᏗ:\n”ᏂᎬᎾᏛᎢ ᎠᎬᏱᏣ ᎤᏓᏅᎵᏰᎠ.”\nᎯᎠᏰᏃ ᏂᏨᏪᏎᎭ ᎣᏣᏗᎭ ᎤᎬᏫᏳᎯ ᎤᏁᏨᎢ, ᎾᏍᎩ ᎠᏴ ᏗᏛᏃᏛ ᎠᎴ ᎢᏓᎴᏂᏙᎯ ᎤᎬᏫᏳᎯ ᎦᎷᏨ ᎢᏳᎢ ᎥᏝ ᏱᏙᎨᏗᎪᏅ ᎾᏍᎩ Ꮎ ᎤᏂᎵᏅᏨᎯ.\nᎤᏁᎳᏅᎯᏰᏃ ᎤᏤᎵᎪᎯ ᎨᏒ ᎥᏝ ᎦᏬᏂᎯᏍᏗᏉ ᎨᏒ ᏱᏚᎳᏏᏗ, ᎤᎵᏂᎩᏗᏳᏍᎩᏂ ᎨᏒᎢ.\nᏘᎵ ᏧᎬ ᏭᎾᏓᏝᏅ ᎦᏐᎯ ᎤᏢᏁ ᎤᏬᏢ. ᏗᎧᏂᎨᏂ ᏭᏌᎲ ᎠᏍᎪᎵ, ᏧᏍᏆᏅᎾ ᎭᏫᏂᏨ ᎤᏓᎪᏳᏨ.\nᏞᏍᏗ ᎫᏓᎴᏅᏛ ᎠᎴ ᏂᏥᎦᏔᎲᎾ ᏗᏕᏲᏗ ᎨᏒ ᏱᏗᏣᏘᏂᏙᎮᏍᏗ; ᎣᏏᏳᏰᏃ ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏳᎵᏍᏓᏱᏗᏍᏗ ᎣᎾᏫ; ᎥᏝᏃ ᏄᏍᏛᏉ ᎥᎵᏍᏓᏴᎲᏍᎬᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎤᎾᎵᏍᏕᎸᏙᏗ ᏭᎵᏰᎢᎶᎸᎯ ᏂᎨᏒᎾ ᎨᏒ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᎾᎦᏌᏯᏍᏔᏅᎯ ᎨᏒᎢ.\n... ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎬᏁᎯ ᏂᎦᎥ ᎠᎩᎨᏳᏒᎢ.\nᎬᏂᎨᏒ ᎨᏒ ᎠᎹ ᏧᎶᏒ.\nᎩᎶ ᎠᏉᎯᏳᎲᏍᎨᏍᏗ, ᎤᏍᏉᎵᏱ ᏕᎦᎾᏄᎪᎨᏍᏗ ᎡᏉᏂ ᎬᏂᏛ ᎠᎹ ᏕᎨᏰᏍᏗ; ᎾᏍᎩᏯ ᏥᏂᎦᏪ ᎪᏪᎵ.\nᏤᎩᏏᏂ ᏁᎵᏍᎬ ᏱᏄᎾᏛᏁᎳ ᏭᏕᎵᎬ ᎢᏣ ᏯᏁᎾ.\nᎠᎴ ᎤᏔᏃᎯ ᎠᏄᏬ ᎾᏍᎩᏯ ᏙᏘᏇᏅᎯ, ᎠᎴ ᏗᎦᏁᏟᏴᏛ ᎨᏎᏍᏗ; ᏂᎯᏍᎩᏂ ᏁᏣᏍᏗᏉ, ᎠᎴ ᏕᏣᏕᏘᏱᎶᏍᎬ ᎥᏝ ᏭᏍᏘᏥᎯᏍᏗ ᏱᎩ.\nᏧᏴᏨ ᎢᏣ ᎨᏴ ᎤᏂᎦᎵᏴᎲ ᎠᏓᏁᎸ ᎦᏂᎩᎸ ᏫᎵᎻ ᎦᎷᏯᏍᏗ.\nᎿᏉᏃ ᎬᏩᎷᏤᎴ ᎤᏥ ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎥᏝ ᎾᎥ ᏫᎦᎬᏩᏂᎷᏤᏗ ᏱᎨᏎ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏴᏫ ᎤᏂᏣᏛᎢ.\nᎪᎢ ᎤᎾᏓᏍᏔᏴᏙᏗ ᎪᎳ ᎢᎪᎯᏛ.\nᎦᏙ ᎢᏤᎵᎭ? ᎤᏂᏁᏨᏃ ᎯᎠ ᏄᏂᏪᏎᎢ; ᏰᎵᏉ ᎬᏩᏲᎱᎯᏍᏗ.\nᎤᎵᏂᎩᏛᏃ ᏚᏁᏤᎴ ᏚᏅᏍᏓᏕᎴ ᎩᎶ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎾᏍᎩ; ᎠᎴ ᎤᏁᏤᎪᎱᏍᏗ ᎤᎵᏍᏓᏴᏗ ᎤᏂᏁᏗᏱ.\nᏴᏫᏍᎩᏂ ᎤᏓᏁᏟᏴᏛ ᏂᎨᏒᎾ ᎨᏒ ᎥᏝ ᏱᏓᏓᏂᎸᎪ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᎵᏍᎪᎸᏔᏅᎯ; ᎠᎵᏍᎦᏁᏛᏉᏰᏃ ᏚᏰᎸᏐᎢ; ᎥᏝ ᎠᎴ ᏗᎬᏬᎵᏍᏗ ᏱᎨᏐᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠᏓᏅᏙ ᎩᏛ ᏗᎬᎪᏩᏛᏗ ᎨᏒᎢ.\nᎠᏎᏃ ᎯᎠ ᏄᏍᏛᎩ ᎠᏋᏒ ᎨᏒ ᏓᏊᎪᏔᏅᎩ, ᎾᏍᎩ ᏔᎵᏁ ᏫᏨᎷᏤᏗᏱ ᏂᎨᏒᎾ ᎤᏲ ᎬᏆᏓᏅᏘ.\nᎪᎰᏍᏗ ᏯᏂᎦᏔᎲᎾ ᎠᏂᏳᏫᏯ, ᏃᎴ ᎠᏂᏳᏩᏁᎦ ᎤᏂᏐᏱ ᏄᎾᏍᏗ, ᏫᏥ ᎢᏯᏂ ᎨᏎ ᎤᏂᏲ ᎠᏂᏍᎦᏥ ᏃᎴ Ireland ᏓᏳᏂᎶᏒ, ᎤᎾᏓᏨ ᎢᏳᎾᏛᏁᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᏍᎩ ᎠᏴ ᏗᎦᏓᏂᎸᏨᎯ ᏥᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵᎪᎯ ᎨᏒ ᎾᏍᎩ ᎬᏖᎸᏗ ᏂᎨᏒᎾ, ᎬᏩᎦᏘᏯ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎢᎩᎮᏍᏗ, ᎾᏍᎩ ᎢᏛᏗᏍᎬ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᏗᎨᎩᎸᏫᏍᏓᏁᏗ ᏱᎩ, ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᏔᎵ ᎢᎬᏗᏕᎬᎢ.\nᎨᎵᎠ ᏱᏗᏣᏏᎳᏛᎾ ᏃᎴ ᏔᎵᎭ ᏱᏗᏣᏂᏴ ᏛᎦ, ᎣᎯᏍᏙᏗ ᏱᏣᏓᏅᏔ.\nᏚᏳᎪᏗᏍᎪ ᏏᏌ ᎡᏓᎫᏴᏒᏗᏱ ᎠᏰᎵ ᎠᏓᏴᏗ ᎨᏒᎢ, ᏝᎨ?\n“ᏣᏁᎳ ᎢᏳᏕᏘᏴᏓ.”\nᎠᏎᏃ ᎠᏂᏆᎵᏏ ᎤᎾᏛᎦᏅ, ᎯᎠ ᏄᏂᏪᏒᎩ; ᎯᎠ ᎥᏝ ᎠᏂᏍᎩᎾ ᏱᏗᎦᏄᎪᏫᏍᎦ ᎬᏂ ᏧᏍᏕᎵᏍᎪ ᏇᎵᏥᏆ ᎤᎬᏫᏳᎯ ᎠᏂᏍᎩᎾᎤᎾᏤᎵᎦ.\n“Ꭵ, ᏯᏆᏚᎵᎭᏃ, ᏯᏆᏓᏅᏖᎳ,” ᎤᏛᏁ ᎪᏱᏁᎢ.\nᎤᎾᏨᏎᏃ ᎠᎴ ᎤᎾᏓᏁᎳᏁ ᎦᏩᏒᎩ ᎠᎴ ᎠᏠᏁᏗ; ᎠᎴ ᎤᏂᏯᏪᏐᎴ ᎤᎾᏙᏓᏆᏍᎬ ᎾᏍᎩᏯ ᏂᎬᏅ ᏗᎧᎿᏩᏛᏍᏗ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎠᏍᏆᎵᏍᎨ ᎦᎸᎳᏗ ᏣᎦᏓᏂᎸᎢᏍᏗᏱ, ᎤᎵᏂᎩᏗᏳ ᎤᏓᏅᏖ ᏥᎷᏏᎵᎻ ᏭᎶᎯᏍᏗᏱ.\nᏥᏌᏃ ᎤᏁᏨ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏗᏍᏓᏱᏳ ᎨᏒ ᎢᏳᏍᏗ ᏗᏥᎾᏫ ᎯᎠ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎢᏦᏪᎳᏁᎴᎢ;\nᏓᏂᏍᎦᎢ ᏃᎴ ᎤᎾᏚᎵ ᏦᏥᏅᎪᎢᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎢᏥᏍᏆᏓ ᎾᏍᎩ ᎢᏯᏛᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏥᎦᎵᏱᏳ ᏂᎨᏒ ᎢᏣᏚᎸᏗᏱ, ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎢᏥᏍᏆᏗᏍᎬᎢ, ᎢᏨᏗᏍᎬ ᎾᏍᎩ ᏄᏍᏛ ᎢᏥᎲᎢ.\nᏚᎷᏫᏍᏔᏁᎲ, ᎣᏍᏓ ᏚᏍᏕᎵᏍᎨ ᏣᏁᎳ ᏕᎦᏅᏌᏛ.\nᏥᏌ ᏚᏠᏱᎸᎩ.\nᎦᎸᏉᏗ ᎦᎶᎯᏍᏗ ᎯᏣᏑᏯᎩ ᏗᏥᏏᎳᏛᏗ.\nᎰᏩᏃ ᎤᎾᎪᎲᏍᏔᏁ ᎤᏓᏁᎸ ᎠᎴ ᏂᎦᏓ ᏧᎸᏫᏍᏓᏁᎸ ᏧᏬᏪᎳᏅ ᏚᎪᏁ.\nᏈᏓᏃ ᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎴ ᏥᏌ; ᏣᎬᏫᏳᎯ, ᎣᏏᏳ ᎠᏂ ᏥᏕᏙᎭ, ᎢᏳᏃ ᎣᏏᏳ ᏱᏣᏰᎸᏅ, ᎠᏂ ᏦᎢ ᏱᏙᏥᎵᏦᏛᎦ, ᏌᏉ ᏂᎯ ᏣᏤᎵᎦ, ᏐᎢᏃ ᎼᏏ ᎤᏤᎵᎦ, ᏐᎢᏃ ᎢᎳᏯ ᎤᏤᎵᎦ.\nᎠᎴ ᎾᏂᎥ ᎩᎶ ᏧᏅᏕᏨᎯ ᏓᏂᏁᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎠᎴ ᏧᏂᏙ, ᎠᎴ ᏧᏂᏙᏙᏓ, ᎠᎴ ᏧᏂᏥ, ᎠᎴ ᏧᎾᏓᎵᎢ, ᎠᎴ ᏧᏁᏥ, ᎠᎴ ᎦᏙᎯ, ᏓᏆᏙᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ, ᎤᏂᏩᏛᏗ ᎨᏎᏍᏗ ᎠᏍᎪᎯᏧᏈ ᎤᏁᏉᏨᎯ, ᎠᎴ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᎬᏂᏛ ᏫᎾᏍᏛᎾ.\nᏍᎩᎾᎾ ᎢᏴ ᎤᏴᏍᏗ ᏙᏱᏨ ᏭᎷᏤ ᏫᎵᎻ.\nᎠᎴ ᎯᎠ ᎠᏄᎦᎸᎯ ᏥᎨᏥᏫᏎᎴᎢ; ᎾᏍᎩ ᎯᎠ ᎧᏃᎮᏛ ᏣᎾᏛᎩᏍᎪᎢ,\nᎺᎵᏃ ᎹᎩᏕᎵ ᎡᎯ, ᎠᎴ ᎺᎵ ᏦᏏ ᎤᏥ ᎤᏂᎪᎮ ᎾᎿ ᎤᏂᏅᏅᎢ.\nᎾᏍᎩ ᏥᏌ ᎦᎶᏁᏛ ᎠᎩᏅᏏᏙᎯ ᎢᏯᏆᎵᏍᏙᏗᏱ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎦᎸᏉᏗᏳ ᏓᎩᎸᏫᏍᏓᏁᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎦᎸᏉᏗᏳ ᏓᎩᎸᏫᏍᏓᏁᎲ ᎣᏍᏛ ᎧᏃᎮᏛ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎬᏗᏍᎬᎢ, ᎾᏍᎩ ᎦᎵᏍᎪᎸᏗᏍᎬ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎦᏥᏯᎵᏍᎪᎸᏗᏍᎬᎢ ᏧᏓᏂᎸᎢᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ, ᎦᎸᏉᏗᏳ ᎢᏳᏩᏁᎸᎯ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\nᎠᎴ ᎾᏍᎩᏯ ᏥᏄᏍᏕ ᎾᎯᏳ ᏃᏯ ᏤᎮᎢ, ᎾᏍᎩ ᎾᏍᏉ ᏄᏍᏕᏍᏗ ᎾᎯᏳ ᏴᏫ ᎤᏪᏥ ᎤᏤᎵ ᎢᎦ ᎠᎵᏱᎶᎸᎭ.\nᎯᏁᏟᏴᎾ ᏣᏓᏅᏛᎢ; ᎢᏳᏃ ᎾᏍᎩ ᏂᏣᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ ᏞᎩᏳ ᏓᎬᎷᏤᎵ, ᎠᎴ ᏙᏓᎬᏯᏟᏴᎡᎵ ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎬᏗ ᏥᎰᎵ ᎤᎦᏌᏛᎢ.\nᏐᎢᏃ ᏭᎷᏤᎸ ᎾᏍᎩᏯ ᏄᏪᏎᎴᎢ. ᏧᏁᏨᏃ, ᏓᎨᏏ, ᎤᏛᏁᎢ; ᎠᏎᏃ ᏄᏪᏅᏒᎾᏉ ᎢᎨᏎᎢ.\nᎤᏅᏗ ᎢᏳᏰᎳᏍᏗᏍᎬᎩ ᎥᏝᏃ ᎪᎱᏍᏗ ᎠᎩᏍᏗ; ᏧᏩᎫᏔᏅᏒᏰᏃ ᎥᏝ ᏰᎵ ᎨᏥᎩᏍᏗ ᏱᎨᏎᎢ, ᎠᎴ ᎪᎯ ᎨᏒ ᎥᏝ ᎠᏏ ᏰᎵ ᏱᎩ.\nᎤᏩᏙᎯᏴᏓ ᎤᏛᎴᎮᎢ.\nᎠᎴ ᏳᎸᏅ, ᎠᎴ ᏯᏗᏗᎭ ᏗᎬᏩᎩᏨᏗ, ᎠᎴ ᎤᎦᏔ ᏳᎵᏰᏅ, ᎠᎴ ᏳᏛᏒ, ᏄᎵᏍᏙᏔᏅ ᏄᏙᎴᎰᏒᎾ.\nᏚᏳᎪᏛᏍᎩᏂ ᎧᏁᎢᏍᏗ ᎨᏒ ᎢᏛᏗᏍᎬ ᎠᏓᎨᏳᏗ ᎨᏒ ᏔᎵ ᎢᏛᏗᏍᎬᎢ, ᏗᎦᏛᎯᏍᏗᏱ ᎾᏍᎩ ᏂᎦᎥ ᏄᏓᎴᏒ ᎾᏍᎩ ᏗᎦᏚᏓᏕᏫᏍᏗᏱ ᎾᏍᎩ ᎠᏍᎪᎵ ᏥᎩ, ᎾᏍᎩ ᎦᎶᏁᏛ;\nᎠᏎᏃ ᎣᎦᏚᏓᎳ ᏂᎪᎯᎸ ᎣᏣᎵᎡᎵᏤᏗᏱ ᎤᏁᎳᏅᎯ ᏂᎯ ᎨᏒ ᎤᎬᏩᎵ, ᎢᏓᎵᏅᏟ ᎤᎬᏫᏳᎯ ᎢᏥᎨᏳᎯ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᏧᏓᎴᏅᎲ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎢᏣᏑᏰᏒ ᎡᏥᏍᏕᎸᏗᏱ ᎬᏙᏗᏱ ᎠᏓᏅᏙ ᎢᏥᏅᎦᎵᏍᎬᎢ, ᎠᎴ ᎢᏦᎯᏳᏒ ᎤᏙᎯᏳᎯ ᎨᏒᎢ;\nᎤᎵᏣᎬᏔᏁᎢ ᎠᏣᏗ.\nᎤᏁᎳᏅᎯᏰᏃ ᏚᏬᎪᏔᏅ ᏂᎦᏗᏳ ᏄᏃᎯᏳᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏂᎦᏗᏳ ᏧᏪᏙᎵᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᏂᏍᎦᏯ ᎣᎯᏍᏙᏗ ᏧᎾᏓᎩᏯᏍᏗ ᎤᏅᏌ ᏱᎩ.\nᏫᎤᎩᏨᏅᏃ ᏏᏌᎵᏱ ᏭᏂᏴᎴᎢ. ᎧᏂᎵᏯᏃ ᎤᏂᎦᏘᏰᎢ, ᎠᎴ ᏧᏪᏟᏌᏅᎯ ᎨᏎ ᎪᎱᏍᏗ ᏧᏩᏂ ᎠᎴ ᏧᎵᎢ.\nᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᎠᎴ ᎤᏙᏓ ᎤᎬᏫᏳᎯ ᎢᎦᏤᎵ ᏥᏌ ᎦᎶᏁᏛ, ᎾᏍᎩ ᎦᎶᏁᏛ ᎢᏳᏩᏂᏌᏅᎯ ᎣᏍᏛ ᎢᎦᏛᏁᎸᎯ ᏥᎩ, ᎢᎩᏁᎸᎯ ᏂᎦᎥ ᎣᏍᏛ ᎨᏒ ᎠᏓᏅᏙ ᎤᎬᏩᎵ, ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᏦᏒ ᎡᎯ ᎤᎬᏩᎵ.\nᎶᎻᏃ ᏬᎩᎷᏨ, ᎠᏍᎪᎯᏧᏈ ᏗᏘᏂᏙᎯ ᎠᏂᏴᎩ ᏚᏲᎯᏎᎸᎩ ᎤᎬᏫᏳᎯᎠᏂᎦᏘᏯ ᏗᏘᏂᏙᎯ; ᏉᎳᏍᎩᏂ ᎠᎦᎵᏍᎪᎸᏁᎸᎩ ᎤᏁᎳᎩ ᎤᏩᏒ ᎤᏕᏗᏱ, ᎠᎴ ᎠᏯᏫᏍᎩ ᎤᎦᏘᏗᏍᏗᏱ.\nᎠᏆᏛᏅ.\nᎤᏍᎦᏎᏗ ᏚᏙᏪᎴ.\nᏥᏌ ᎯᎠ ᏄᏪᏎᎸᎩ; ᎥᏝ ᎦᎵᏉᎩᏉ ᏱᎬᏲᏎᎭ, ᎦᎵᏆᎪᎯᏍᎩᏂ ᎦᎸᏉᎩ ᎢᏳᎶᏒᎯ.\nᎣᏍᏛᏰᏃ ᎢᏯᏛᏁᏗᏱ ᎠᏆᏚᎵᏍᎬᎢ, ᎥᏝ ᎾᏍᎩ ᏱᏂᎦᏛᏁᎰᎢ; ᎤᏲᏍᎩᏂ ᎾᏍᎩ ᎾᏆᏚᎵᏍᎬᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏂᎦᏛᏁᎰᎢ.\nᎢᏥᎦᏔᎲ ᎾᏍᎩ ᏂᎦᎥ ᎪᎱᏍᏗ ᎣᏍᏛ ᏚᎸᏫᏍᏓᏁᎲ ᎩᎶᎢ, ᎾᏍᎩᏯ ᎢᏳᏍᏗ ᎤᏁᏗ ᎨᏒ ᎤᎬᏫᏳᎯ, ᎾᏍᏉ ᎠᏥᎾᏝᎢ ᏱᎩ, ᎠᎴ ᎾᏥᎾᏝᎥᎾ ᏱᎩ.\nᏗᎩᏣᏗ ᏭᎵᏒᎲ ᎠᏓ ᎪᏒᏔᏅ ᎫᎭᎳᎯ ᏃᎴ ᏓᎶᏂᎨ ᎦᏓᏆᏟ ᎪᏒᏔᏅ ᏦᎳ ᎦᎶᏙᏗ.\nᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏅᏯ ᏥᏥᏲᎢᏎᎸᎩ ᏗᏣᏁᏍᎨᏍᎩ; ᎾᏍᎩ ᎤᏅᏏᏴ ᏄᎬᏫᏳᏒ ᎠᏗ ᏥᏄᎵᏍᏔᏅ.\n”ᎦᏙᏃ ᎠᏎ ᎤᎵᏨᏓᏆᏓ ᎤᏰᏨ ᎯᎨᏐ, ᏓᏍᎪᎩᏍᎬ ᏃᎴ ᎩᎶ ᎤᏤᎵ ᎭᏲᏍᏗᏍᎬ?\nᏗᎦᎧᎯᏴᏍᏗ ᎠᏰᎵ ᏃᎴ ᏗᎨᎯᏓᏍᏗ ᎠᏂᏣᎳᎩ ᏭᏕᎵᎬ ᎢᏣ, ᎨᏍᏗ ᏃᎦᎵᏍᏔᏁᎲ ᎤᎵᏐᏯᏍᏗ ᏱᎨᏎ, ᎣᎦᏤᎵᏰᏃ ᎦᏙ.\nᏈᎵᎩ ᏇᏣᏱᏗ ᎡᎯ ᎨᏒᎩ, ᎡᏂᏗ ᎠᎴ ᏈᏓ ᎤᏂᏚᎲᎢ.\nᎨᏍᏗᏰᏃ ᎩᎶ ᎣᏍᏓ ᎢᎫᏩᏪᏎᏗ ᏱᎨᏎ ᏛᎦ ᏕᎦᎶᎨᏒ.\nᎢᎸᏍᎩ ᏂᎦᎥ ᏚᎾᏙᎥ ᏕᏣᏍᏆᏂᎪᏗ ᏌᏗᏏ, ᎾᏍᎩ ᎦᏓᎭ ᎢᏧᏅᏁᎸᎯ ᏂᎨᏒᎾ ᏧᎾᏄᏬ; ᎠᎴ ᎾᏍᎩ ᎢᏧᎳᎭ ᏓᏲᏤᏙᎵ ᏧᏁᎩᏳ ᎨᏎᏍᏗ ᏚᎾᏄᏩᎥᎢ; ᏰᎵᏉᏰᏃ ᎾᏍᎩ ᎢᎬᏩᎾᏛᏁᏗ.\nᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏱᏥᎦᏔᎭ ᎠᏋᏒ ᎠᏆᏓᎳᏫᏎᏗ; ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏯᏇᏓᎴᎭ; ᎤᎬᏫᏳᎯᏍᎩᏂ ᎾᏍᎩ ᏗᏇᎪᏓᏁᎯ.\nᏓᎬ ᏂᎵᏎ ᏌᎳᏓ. ᏃᏉ ᏗᏌᎳᏓᏂᏎ ᎦᎾᏍᏓ, ᎤᏲᎰᏎᎴ ᎣᏍᏓ ᏄᏛᏅ.\"ᎤᎾᏙᎴᎰᏒᏰᏃ ᎢᎸᎯᏳ ᏥᎨᏎᎢ ᎥᏝ ᏴᏫᏉ ᎠᏓᏅᏖᏍᎬ ᏴᏗᏓᎴᏁᎢ; ᎠᏃᏍᏛᏍᎩᏂ ᎠᏂᏍᎦᏯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᏂᏁᎨ ᎢᏳᏂᏪᏍᏗᏱ ᏄᏅᏁᎲ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ.\"\nᏈᏡᏓ ᏔᎵᏁ ᎤᏬᏪᎳᏅᎯ 1:21\nᏱᏏ ᎢᎬᏱᏱ ᎤᏬᏪᎳᏅᎯ\nᎠᏯᏙᎸᎢ 1\nᏗᏓᎴᏂᏍᎬᎢ ᎤᏁᎳᏅᎯ ᎦᏬᏢᏁ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ.\nᎡᎶᎯᏃ ᏂᏓᏙᎸᎾ ᎠᎴ ᎤᏰᎸᎭᏉ ᎨᏎᎢ. ᎤᎵᏏᎩᏃ ᎤᎴᏞᏒ ᎠᏍᎸᎩ. ᎤᏁᎳᏅᎯᏃ ᎤᏓᏅᏙ ᎠᏑᏱ ᎦᏚᎢ ᎦᏃᎯᎵᏙᎮᎢ.\nᎤᏁᎳᏅᎯᏃ ᎢᎦ ᏫᎦᏙᎩ, ᎤᎸᏁᎢ ᎢᎦᏃ ᎢᎤᏙᏤᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎣᏏᏳ ᎨᏒ ᎢᎦ ᎤᏁᎳᎥᎯᏃ ᏚᏓᏓᎴᏔᏁ ᎢᎦ ᎠᎴ ᎤᎵᏏᏱ.\nᎤᏁᎳᏅᎯᏃ ᎢᎦᎦᎸᎢ ᏚᏬᏒᎢ ᎤᎵᏏᎩᏃ ᏒᏃᏱ ᏚᏬᏒᎢ. ᎤᏒᎢᏃ ᎠᎴ ᏑᎾᎴᎢ ᎢᎥᏱᏱ ᎢᎦ ᎨᏎᎢ\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᎸᎶᎢ  ᏩᏙᏢᎾ ᎠᎹᏱ ᎠᏰᎵ, ᎾᏍᎩᏃ ᏔᎵ ᏫᏂᎦᏓ ᎠᎹ.\nᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎤᏬᏢᏁ ᎦᎸᎶᎢ ᎠᎴ ᏚᏓᏓᎴᏔᏁ ᎠᎹ ᎦᎸᎶᎢ ᎡᎳᏗᏢ ᎠᎴ ᎠᎹ ᎦᎸᎶᎢ ᎦᎸᎳᏗᏢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ.\nᎤᏁᎳᏅᎯᏃ ᎦᎸᎶᎢ ᎦᎸᎳᏗ ᏚᏬᎡᎢ ᎤᏒᏃ ᎠᎴ ᏑᎾᎴ ᏔᎵᏁ ᎢᎦ ᎨᏎᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎠᎹ ᎭᏫᏂᏗᏢ ᎦᎸᎶᎢ ᏩᏓᏟᏌ, ᎤᎧᏲᏛᎯᏃ ᎨᏒ ᏫᎦᎾᏄᎪᎩ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᎧᏲᏛᎯ ᎨᏒ ᎦᏓ ᏚᏬᎡᎢ, ᎠᎹᏃ ᎤᏓᏟᏌᏅᎯ ᎠᏣᏉᎯ ᏚᏬᎡᎢ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎦᏓ ᎦᏄᎸᏒ ᎦᎾᏄᎪᏩ, ᎾᏍᎩ ᎠᎦᏔᏛᏍᎩ ᎦᏄᎸᏒᎢ, ᎠᎴ ᏗᏓᏛᏍᎩ ᏕᏡᎬᎢ ᏧᏓᎴᏅᏛ ᏧᎾᏤᎵᎦᎭ ᎤᎦᏔ ᏧᏁᎯ ᎦᏙᎯ ᎦᎸᎳᏗᏢ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ;\nᎦᏓ ᎦᏄᎸᏒ ᎤᎾᏄᎪᏫᏎᎢ, ᎾᏍᎩ ᎠᎦᏔᏛᏍᎩ ᏧᏓᎴᏅᏛ ᏧᎾᏤᎵᎦᎭ ᎤᎦᏔ ᎠᏂᎾᏄᎪᏫᏍᎩ, ᎠᎴ ᏕᏡᎬ ᏗᏓᏛᏍᎩ ᏧᎾᏤᎵᎦᎭ ᎤᎦᏔ ᏧᏁᎯ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ.\nᎤᏒᏃ ᎠᎴ ᏑᎾᎴᎢ ᏦᎢᏁ ᎢᎦ ᎨᏎᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎦᎸᎶᎢ ᎦᎸᎳᏗ ᎢᎦ ᎠᎾᏘᏍᏗᏍᎩ ᏩᏂᎧᎸᎩ, ᎢᎦ ᏒᏃᏱᏃ ᏗᎾᎦᎴᏅᏗᏍᎩ, ᎠᎴ ᎾᏍᎩ ᏂᏓᎪᎳᏗᏴᎯᏒ ᎠᎴ ᏂᏓᏙᏓᏈᏒ ᎠᎴ ᏂᏓᏕᏘᏴᎯᏒ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ;\nᎠᎴ ᎾᏍᎩ ᎢᎦ ᎠᎾᏘᏍᏗᏍᎩ ᎨᏎᏍᏗ ᎦᎸᎶᎢ ᎦᎸᎳᏗ, ᎡᎶᎯ ᎢᎦ ᎤᎾᏘᏍᏙᏗᏱ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ.\nᎤᏁᎳᏅᎯᏃ ᏔᎵ ᏤᏆ ᎢᎦ ᎠᎾᏘᏍᏗᏍᎩ ᏚᏬᏢᏁᎢ, ᎤᏛᏂᏗ ᎢᎦ ᎠᏘᏍᏗᏍᎩ ᎢᎦ ᏗᏁᎶᏙᏗ, ᎠᏲᎳᏂᏃ ᎢᎦ ᎠᏘᏍᏗᏍᎩ ᏒᏃᏱ ᏗᏁᎶᏙᏗ; ᎠᎴ ᏃᏈᏏ ᏚᏬᏢᏁᎢ.\nᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎦᎸᎶᎢ ᎦᎸᎳᏗ ᏚᏪᎧᏁᎢ, ᎢᎦ ᎤᎾᏘᏍᏙᏗᏱ ᎡᎶᎯ,\nᎠᎴ ᎾᏍᎩ ᎢᎦ ᎠᎴ ᏒᏃᏱ ᏗᏁᎶᏙᏗ, ᎠᎴ ᎾᏍᎩ ᎢᎦᎦᏛᎢ ᎠᎴ ᎤᎵᏏᎩ ᏗᎾᎦᎴᏅᏗᏍᎩ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ.\nᎤᏒᏃ ᎠᎴ ᏑᎾᎴᎢ ᏅᎩᏁ ᎢᎦ ᎨᏎᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᎹ ᏫᏗᎦᎾᏄᎪᏩ ᎤᏂᏣᏘ ᏗᏅᏃᏛ ᎠᎾᎵᏖᎸᎲᏍᎩ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎦᏙᎯ ᎦᎸᎳᏗᏢ ᎠᏂᏃᎯᎵᏙᎮᏍᏗ.\nᎤᏁᎳᏅᎯᏃ ᏚᏬᏢᏁ ᏣᏁᏆ ᏓᏉ, ᎠᎴ ᎾᏂᎥ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏗᏅᏃᏛ, ᎠᎹ ᎾᏍᎩ ᏚᎾᏄᎪᏫᏎᎢ ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ, ᎠᎴ ᎾᏂᎥ ᏧᎾᏓᎴᏅᏛ ᏗᏃᏯᏗ ᎠᏂᏃᎪᎵᏙᎯ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ.\nᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᏚᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ:Ꮆ ᎢᏥᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏥᎪᏙᎯ, ᎠᎴ ᎠᎾᏉᎯ ᎢᏥᎧᎵᏣ; ᎠᏂᏃᎯᎵᏙᎯᏃ ᏩᏂᏁᏉᎩ ᎡᎶᎯ.\nᎤᏒᏃ ᎠᎴ ᏑᎾᎴ ᎯᏍᎩᏁ ᎢᎦ ᎨᏎᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎦᏓ ᏫᏗᎦᎾᏄᎪᏩ ᏗᏅᏃᏛ ᏧᎾᏓᎴᏅᏛ, ᎦᎾᏝᎢ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎡᎶᎯ ᎠᏁᎯ ᏧᎾᏓᎴᏅᏛ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ:\nᎤᏁᎳᏅᎯᏃ ᏚᏬᏢᏁ ᏗᏅᏃᏛ ᎡᎶᎯ ᎠᏁᎯ ᏧᎾᏓᎴᏅᏛ, ᎠᎴ ᎦᎾᏝᎢ ᏧᎾᏓᎴᏅᏛ, ᎠᎴ ᏂᎦᏛ ᎦᏙᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ ᏧᎾᏓᎴᏅᏛ. ᎤᏁᎳᏅᎯᏃ ᎤᏙᎴᎰᏎ ᎾᏍᎩ ᎣᏏᏳ ᎨᏒᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᎡᏙᏢᎾ ᎠᏴ ᎾᏍᎩᏯᎢ, ᎠᏴ ᏂᎦᏍᏛᎢ, ᎾᏍᎩᏃ ᎤᏂᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏣᏗ ᎠᎺᏉᎯ ᎠᏁᎲᎢ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎠᏁᎲᎢ, ᎠᎴ ᎦᎾᏝᎢ ᎠᏁᎲᎢ, ᎠᎴ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎠᎴ ᎠᏁᎲᎢ ᏂᎦᎥ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎦᏙᎯ ᏣᎾᏓᎾᏏᏂᏙᎭ.\nᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏴᏫ ᎤᏬᏢᏁᎢ ᎤᏩᏒ ᏄᏍᏛᎢ, ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎾᏍᎩᏯ ᎤᏬᏢᏁᎢ, ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏚᏬᏢᏁᎢ.\nᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᏚᏁᏤᎴᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎯᎠ ᏂᏚᏪᏎᎴᎢ: ᎢᏍᏗᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏍᏗᎪᏙᎯ, ᎠᎴ ᎦᏙᎯ ᎢᏍᏗᎧᎵᏣ, ᎠᎴ ᎾᏍᎩ ᎢᏍᏓᏤᎵᎦ ᏂᏍᏛᎦ, ᎠᎴ ᎢᏍᏗᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏣᏗ ᎠᏁᎲᎢ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎠᏁᎲᎢ, ᎠᎴ ᏂᎦᎥ ᎬᏃᏛ ᎡᎶᎯ ᏣᎵᏖᎸᎲᏍᎦ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᏂᎦᎥ ᎦᏄᎸᎯ ᎠᎦᏔᏛᏍᎩ ᎾᏍᎩ ᏂᎬᎾᏛ ᎦᏙᎯ ᏣᏛᏍᎦ, ᎠᎴ ᏂᎦᎥ ᏕᏡᎬ ᏗᏓᏛᏍᎩ ᎤᎦᏔ ᏥᏓᎦᏔᏛᏍᎦ, ᏕᏍᏛᏲᎯᏎᎸ; ᎾᏍᎩ ᏂᎯ ᎢᏍᏓᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ;\nᎾᏍᏉᏃ ᏂᎦᎥ ᎡᎿᎥ ᎦᏙᎯ, ᎠᎴ ᎾᏂᎥ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎦᏙᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᏂᎦᎥ ᎢᏤ ᎦᏄᎸᏒ ᎤᎾᎵᏍᏓᏴᏗ ᏕᎦᏥᏲᎯᏎᎸ. ᎾᏍᎩᏃ ᏄᎵᏍᏔᏁᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᎪᎮ ᏂᎦᎥ ᎤᏬᏢᏅᎢ, ᎠᎴ ᎬᏂᏳᏉ Ꮀ ᎣᏏᏳ ᎨᏎᎢ. ᎤᏒᏃ ᎠᎴ ᏑᎾᎴᎢ ᏑᏓᎵᏁ ᎢᎦ ᎨᏎᎢ.\nᎠᏯᏙᎸᎢ 2\nᎾᏍᎩᏃ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎤᎵᏍᏆᏕ ᏕᎪᏢᏍᎬᎢ ᎠᎴ ᎾᏍᎩ ᏂᎦᎥ ᏄᏂᏧᏈᏍᏛᎢ.\nᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎤᏁᎳᏅᎯ ᎤᏍᏆᏕ ᏚᎸᏫᏍᏓᏁᎸᎢ ᎾᏍᎩ ᎤᏬᏢᏅᎢ. ᎤᏯᏪᏐᎴᏃ ᎦᎵᏉᎩᏁ ᎢᎦ ᎤᏲᎯᏍᏔᏁ ᏂᎦᎥ ᏚᎸᏫᏍᏓᏁᎸᎢ ᎾᏍᎩ ᎤᏬᏢᏅᎢ.\nᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᎤᏁᏤᎴ ᎦᎵᏉᎩᏁ ᎢᎦ ᎠᎴ ᎤᎸᏉᏔᏁᎢ, ᎾᎯᏳᏰᏃ ᎤᏯᏪᏐᎴ ᎤᏲᎯᏍᏔᏁ ᏂᎦᎥ ᏚᎸᏫᏍᏓᏁᎸᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏁᎳᏅᎢ ᎠᎴ ᎤᏬᏢᏅᎢ.\nᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎢᎬᏱᏱ ᏗᏓᎴᏂᏍᎬ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ ᎨᎪᏢᏅᎢ, ᎾᎯᏳ ᎢᎦ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏥᏚᏬᏢᏁ ᎡᎶᎯ ᎠᎴ ᎦᎸᎶᎢ,\nᎠᎴ ᏂᎦᎥ ᎦᏄᏄᏒ ᏠᎨᏏ ᎡᎯ, ᎠᏏ ᎾᎭᏛᎾ ᏥᎨᏎᎢ, ᎠᎴ ᏂᎦᎥ ᎠᏛᏍᎩ ᏠᎨᏏ  ᎡᎯ; ᎠᏏ ᎾᎵᏰᎲᏍᎬᎾᏉ ᏥᎨᏎᎢ; ᏱᎰᏩᏰᏃ ᎤᏁᎳᏅᎯ ᎠᏏ ᎾᎦᏃᏗᏍᎬᎾ ᎨᏎ ᎡᎶᎯ, ᎠᎴ ᎾᏍᏉ ᎥᏝ ᏰᎮ ᏴᏫ ᏗᎦᎶᎩᏍᎩ.\nᎤᎬᎭᏓᏍᎩᏂ ᎦᏙᎯ ᎠᎵᏌᎳᏗᏍᎨᎢ, ᎾᏍᎩᏃ ᏂᎬᎾᏛᎢ ᎦᏚᎢ ᎦᏙᎯ ᏕᎠᏖᎡᎯᏍᏗᏍᎨᎢ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏴᏫ ᎦᏓ ᎤᏬᏢᏔᏁᎢ, ᏗᎪᏴᏐᎵᏃ ᎤᏦᏔᎮ ᎬᏂᏛ ᎬᏬᎳᏕᏍᏗ, ᏴᏫᏃ ᎬᏃᏛ ᏄᎵᏍᏔᏁᎢ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎠᏫᏒᏗᏱ ᎤᏫᏒᏁᎢ ᎢᏗᏂ ᏚᏙᎥᎢ ᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ; ᎾᎿᏃ ᎤᏪᎧᏁ ᏴᏫ ᎤᏬᏢᏅᎯ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎦᏙᎯ ᏚᎾᏄᎪᏫᏎ ᏂᏚᏓᎴᏒ ᏕᏡᎬ ᏧᏬᏚᎯ ᏗᎧᏃᏗᏱ ᎠᎴ ᎣᏍᏛ ᏗᎵᏍᏓᏴᏗ; ᎠᎴ ᎾᏍᏉ ᎬᏂᏛ ᎠᏓᏁᎯ ᏡᎬᎢ ᎠᏰᎵ ᎠᏫᏒᏗᏱ (ᎤᎾᏄᎪᏫᏎᎢᏁ ᎠᎴ ᏈᎬᎢ ᎠᎦᏙᎥᎯᏍᏗ ᎣᏍᏛ ᎨᏒᎢ ᎠᎴ ᎤᏲ ᎨᏒᎢ.\nᎢᏗᏂᏃ ᎨᏰᎢ, ᎾᏍᎩᏃ ᎠᏫᏒᏗᏱ ᏓᏖᎡᎯᏍᏗᏍᎨᎢ; ᎾᎿᏃ ᏫᏚᎶᎦᎴᎢ, ᏅᎩ ᏕᎨᏴ ᏂᎦᎵᏍᏗᏍᎨᎢ.\nᎢᎬᏱᏱ ᎨᏴᎢ ᏆᏌᏂ ᏚᏙᎥ; ᎾᏍᎩ ᎭᏩᎳ ᏂᎬᎢ ᏥᏓᏚᏫᏍᏗᎭ, ᎾᎿᏂ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎳ;\nᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎾᎿ ᎤᎸ ᎣᏏᏳ; ᎾᎿ ᎡᎭ ᏕᎵᏯᎻ, ᎠᎴ ᏅᏯ ᎣᏂᎩ ᏧᏙᎢᏛ.\nᏔᎵᏁᏃ ᎨᏴᎢ ᎦᎭᏂ ᏚᏙᎥ, ᎾᏍᎩ ᎢᏗᎣᏈ ᏂᎬᎢ ᏥᏓᏚᏫᏍᏗᎭ.\nᏦᎢᏁᏃ ᎨᏴᎢ ᎯᏗᎩᎵ ᏚᏙᎥ, ᎾᏍᎩ ᎠᏏᎵᏱ ᏅᏙ ᏗᎧᎸᎬ ᎢᏗᏢ ᏥᏭᏪᏯᏗᏍᏗ. ᏅᎩᏁᏃ ᎨᏴᎢ ᎾᏍᎩ ᏳᏇᏗ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎤᏯᏅᎮ ᏴᏫ ᎢᏗᏂ ᎠᏫᏒᏗᏱ ᎤᏪᎧᏁᎢ, ᎣᏍᏛ ᎢᏳᏩᏁᏗᏱ ᎠᎴ ᎤᎦᏘᏗᏍᏗᏱ.\nᏱᎰᎨᏩᏃ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎴ ᏴᏫ ᎯᎠ ᏄᏪᏎᎢ:Ꮆ ᏂᎦᏛ ᏕᏈᎬ ᎠᏂ ᎠᏫᏒᏗᏱ ᏥᏕᏡᎦ ᏣᏁᎳᎩ ᏣᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ;\nᎾᏍᎩᏂ ᎤᏓᏔᏅᎯ ᏥᏈᎦ ᎠᎦᏙᎥᎯᏍᏗ ᎣᏍᏛ ᎨᏒᎢ ᎠᎴ ᎤᏲ ᎨᏒᎢ, ᎥᏝ ᏣᎩᏍᏗ ᏱᎨᏎᏍᏗ, ᎾᎯᏳᏰᏃ ᎢᎦ ᎯᎬᎭ ᎤᏙᎯᏳᏒ ᏣᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎢ; ᎥᏝ ᏲᎯ ᎠᏍᎦᏯ ᎤᏩᏒᏉ ᏥᎩ; ᏓᏥᏲᏢᎾᏁᎵ ᎤᏍᏕᎸᎯᏙᎯ ᎤᏩᏒ ᏄᏍᏛᎢ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎦᏓ ᏚᏬᏢᏔᏁ ᏂᎦᎥ ᎡᎿᎢ, ᎠᎴ ᏂᎦᎥ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎾᏍᎩᏃ ᎠᏓᏫ ᏚᏘᏃᎮᎴᎢ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎤᏚᎵᏍᎨ ᏄᏍᏛ ᏕᎪᏍᎬᎢ: ᏄᏍᏛᏃ ᎠᏓᏫ ᏕᎤᏬᎥᎢ ᏂᎦᎥ ᎬᏃᏛ, ᎾᏍᎩ ᏄᏍᏕ ᏚᏙᎡᎢ.\nᎠᏓᏫᏃ ᏚᏬᎡ ᏂᎦᏛ ᎦᎾᏝᎢ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏂᎦᏛ ᎢᎾᎨ ᎡᎿᎢ;: ᎠᏓᏫᏍᎩᏂ ᎾᏲᎪ ᎤᏍᏕᎸᎯᏙᎯ ᎥᏝ ᏰᎮ ᎤᏩᏒ ᏄᏍᏛᎢ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎠᏍᏓᏯ ᎤᎸᏗᏱ ᏄᏩᏁᎴ ᎠᏓᏫ; ᎾᏍᎩᏃ ᎤᎸᏁᎢ; ᎿᏉᏃ ᏌᏉ ᎦᏄᎳᏥ ᎤᎸᎡᎴᎢ, ᎾᏍᎩᏃ ᎤᎸᎡᎸᎢ ᎤᏇᏓᎸ ᎤᏍᏚᏔᏁᎢ.\nᎾᏍᎩᏃ ᎦᏄᎳᏥ, ᎠᏍᎦᏯ ᎤᎸᎡᎸᎯ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᎨᏴ ᎤᏬᏢᏔᏁᎢ, ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᏘᏃᎮᎴᎢ,\nᎠᏓᏫᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎿᏉ ᎯᎠ ᎪᎳ ᏗᎩᎪᎶᎯ ᎤᏕᏅᎯ, ᎠᎴ ᎭᏫᏯ ᎠᎩᏫᏲᎯ ᎤᏕᏅᎯ; ᎾᏍᎩ ᎠᎨᏴ ᏕᎤᏙᎡᏍᏗ, ᎠᏍᎦᏲᎯᏰᏃ ᏅᏓᏳᎶᏒᎯ ᎾᏍᎩ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᏕᎬᏕᎨᏍᏗ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎤᏓᎵᎢᏃ ᎠᏜᏫᏍᏗᏍᎨᏍᏗ, ᎾᏍᎩᏃ ᏌᏉᏉ ᎤᏂᏇᏓᎸᎢ ᎨᏎᏍᏗ.\nᎢᏧᎳᏃ ᏧᏂᏰᎸᎭ ᎨᏎᎢ, ᎠᏍᎦᏯ ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᎥᏝ ᏯᎾᏕᎰᏍᎨᎢ.\nᎠᏯᏙᎸᎢ 3\nᎢᎾᏛᏃ ᎤᏟ ᎠᏏᎾᏌᏂᏳ ᎨᏎᎢ, ᎡᏍᎦᏉ ᎾᏂᎥ ᎢᎾᎨ ᎠᏁᎯ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏅᎯ. ᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎤᏙᎯᏳᎯᏍᎪ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏒᎮ ᏞᏍᏗ ᏂᎦᏛ ᎠᏫᏒᏗᏱ ᏥᏕᏡᎦ ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎩ.\nᎠᎨᏴᏃ ᎯᎠ ᏄᏪᏎᎴ ᎢᎾᏛ; ᏰᎵᏉ ᎦᏲᎩᏂᎩᏍᏗ ᎤᏓᏔᏅᎯ ᎠᏫᏒᏗᏱ ᏥᏕᏈᎦ.\nᎾᏍᎩᏂ ᎤᏓᏔᏅᎯ ᎠᏫᏒᏓᏱ ᎠᏰᎵ ᏥᏈᎦ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎯᎠ ᏃᎩᏂᏪᏎᎸ; ᏞᏍᏗ ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎩ ᎠᎴ ᏞᏍᏗ ᎢᏍᏓᏒᏂᎸᎩ, ᏱᏕᏍᏗᏲᎱᎯ ᎾᏏ.\nᎢᎾᏛᏃ ᎯᎠ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎥᏝ ᎤᏙᎯᏳᏒ ᏱᏙᎨᏍᏗᏲᎢᎱᎯ;\nᎤᏁᎳᏅᎯᏰᏃ ᎠᎦᏔᎭ ᎾᎯᏳ ᎢᎦ ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎭ ᎿᏉ ᏗᏍᏗᎦᏙᎵ ᏙᏛᎵᏍᏚᎢᏏ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏄᏍᏛ ᎾᏍᎩᏯ ᏂᏍᏓᏍᏕᏍᏗ, ᎢᏍᏗᎦᏔᎮᏍᏗ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ.\nᎠᎨᏴᏃ ᎤᏙᎴᎰᏒ ᎾᏍᎩ ᏈᎬ ᎣᏏᏳ ᎠᎵᏍᏓᏴᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᏗᎧᏃᏗᏱ, ᎠᎴ ᎤᏚᎸᏗᏳ ᎨᏒ ᎥᎦᏔᎿᎢ ᎢᏳᏓᏛᏁᏗᏱ, ᎾᏍᎩ ᏈᎬ ᎤᏛ ᎤᏕᏎ ᎠᎴ ᎤᎨᎢ, ᎾᏍᏉᏃ ᎤᏁᎴ ᎤᏰᎯ, ᎾᏍᏉᏃ ᎾᏍᎩ ᎢᎤᎨᎢ.\nᎢᏧᎳᏃ ᏗᏂᎦᏙᎵ ᏚᎵᏍᏚᎢᏎᎢ, ᎠᎴ ᎤᎾᏙᎴᎨᏎ ᏧᏂᏰᎸᎭ ᎨᏒᎢ, ᏒᎦᏔᏃ ᎢᏳᏍᏗ ᏧᎦᏄᏓᏛᏅᎯ ᏚᏂᏰᏫᏎᎢ, ᎠᎴ ᏧᎾᏝᏌᏙ ᏚᏃᏢᏁᎢ.\nᎤᎾᏛᎦᏁᏃ ᎤᏃᏴᎬ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏙᎲ ᎠᏫᏒᏗᏱ ᏧᏴᏠ ᎤᏒᎯᏰᏱ, ᎠᏓᏫᏃ ᎠᎴ ᎤᏓᎵᎢ ᎠᏫᏒᏗᏱ ᏕᏡᎬᎢ ᎤᎾᏗᏍᎦᎳᏁᎴ ᏱᎰᏩ ᎤᏁᎳᏅᎯ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᏭᏯᏅᎮ ᎠᏓᏫ, ᎭᏢᎮᏙᎭ? ᎤᏬᎭᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏆᏛᎦᏅᎩ ᎤᏃᏴᎬ ᎮᏙᎲ ᎠᏫᏒᏗᏱ, ᎠᎴ ᏥᏍᎦᎢᎲᎩ, ᎠᎩᏰᎸᎭᏰᏃ ᎨᏒᎩ; ᎠᏆᏗᏍᎦᎳᏅᎩᏃ.\nᎯᎠᏃ ᏄᏪᏎᎢ: ᎦᎪ ᎢᏣᏃᏁᎴ ᏣᏰᎸᎭ ᎨᏒᎢᎮ ᏥᎪ ᎢᏣᎬ ᎤᏓᏔᏅᎯ. ᏈᎬᎢ, ᏞᏍᏗ ᏣᎬᎩ ᏥᎬᏲᏎᎸᎩ?\nᎠᏍᎦᏯᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎠᎨᏴ ᏥᏍᎩᎧᏁᎸᎩ ᎣᎩᏁᏓᏍᏗ, ᎾᏍᎩ ᎠᎩᏁᎸᎩ ᏈᎬ ᎤᏓᏔᏅᎯ, ᎠᎴ ᎠᎩᎬᎩ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎦᏙ ᎾᏍᎩ ᎯᎠ ᎢᏣᏛᏁᎸ? ᎠᎨᏴᏃ ᎯᎠ ᏄᏪᏎᎢ: ᎢᎾᏛ ᎠᎩᎶᏄᎮᎸᎩ, ᎾᏍᎩᏃ ᎠᎩᎬᎩ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎴ ᎢᎾᏛ; ᎤᏟ ᎢᎦᎢ ᎡᏣᏍᎦᏨᎯ ᎡᏍᎦᏉ ᎾᏂᎥ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ, ᎾᏍᎩ ᏥᎿᏛᎦ ᏅᏓᎦᎵᏍᏙᏓ ᎭᏓᎾᏏᏂᏔᎮᏍᏗ, ᎠᎴ ᎦᏓ ᎯᎩᏍᎨᏍᏗ ᏂᎪᏰᎸ ᎲᏅᎢ.\nᎠᎴ ᏗᏍᏓᏓᏯᎦᎩᏳ. ᏅᏓᏍᏛᏴᏁᎵ ᏂᎯ ᎠᎴ ᎠᎨᏴ, ᎠᎴ ᏣᏁᏉᎥᎯ; ᎾᏍᎩ ᎯᏍᎪᎵ ᏓᏨᏂᎵ, ᏂᎯᏃ ᎦᏗᎨᏂ, ᏘᏂᎵ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎠᎨᏴ; ᎤᏣᏔᏅᎯ ᏓᎬᏁᏉᎡᎵ ᎡᎯᏍᏗ ᎨᏒ ᏴᏫ ᏕᎯᏁᏉᏍᎬᎢ: ᎡᎯᏍᏗ ᏣᏓᏅᏖᏍᏗ ᏗᏂᏲᎵ ᏕᎯᎾᏄᎪᏫᏍᎨᏍᏗ, ᎠᎴ ᏣᏰᎯ ᎯᏰᎳᏲᏍᎨᏍᏗ ᎠᎴ ᎾᏍᎩ ᏣᏁᏤᎵᏙᎯ ᎨᏎᏍᏗ.\nᎠᏓᏫᏃ ᎯᎠ ᏄᏪᏎᎴᎢ: ᏅᏓᎦᎵᏍᏙᏓ ᏣᏓᎵᎢ ᎧᏁᎬ ᏣᏛᏓᏍᏓ, ᎠᎴ ᏈᎬ ᎤᏓᏔᏅᎯ ᏥᎦ, ᏥᎬᏅᏍᏓᏕᎸᎩ, ᏞᏍᏗ ᏣᎬᎩ ᏥᎬᏲᏎᎸᎩ, ᎦᏙᎯ ᎠᏍᎦᏨᎯ ᏂᎦᎵᏍᏓ ᏂᎯ ᏅᏂᏌ; ᎤᏲ ᏣᏓᏅᏖᏍᏗ ᎾᎿ ᎤᏛᏒᎯ ᎯᎩᏍᎨᏍᏗ ᏂᎪᎯᎸ ᎲᏅᎢ.\nᎠᎴ ᎾᏍᏉ ᏥᏍᏚᏂᎩᏍᏗ ᎠᎴ ᏥᏥ ᏣᎵᏰᏁᎮᏍᏗ, ᏎᎸᏃ ᏠᎨᏏ ᎡᎯ ᎭᎵᏍᏓᏴᏗᏍᎨᏍᏗ.\nᎠᎴ ᏣᎸᎯ ᏣᎧᏛᎢ ᎦᏚ ᎯᎩᏯᎨᏍᏗ ᎬᏂ ᎦᏙᎯ ᏫᎯᎷᏥᏌᏅᎭ, ᎾᎿᏰᏃ ᏪᏣᏯᏅᏛ; ᎦᏓᏰᏃ ᏂᎯ, ᎠᎴ ᎦᏙᎯ ᏮᏛᎯᎷᏥᏌᏂ.\nᎠᏓᏫᏃ ᎢᏫ ᏚᏬᎡ ᎤᏓᎵᎢ, ᏂᎦᏛᏰᏃ ᏴᏫ ᏗᏅᏃᏛ ᎾᏍᎩ ᎤᏂᏥ ᎨᏎᎢ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎦᏁᎦ ᏚᏬᏢᏔᏁ ᎠᏓᏫ ᎠᎴ ᎤᏓᎵᎢ ᏧᎾᏄᏬᎢ ᎠᎴ ᎾᏍᎩ ᏚᏄᏬᎡᎢ.\nᏱᎰᏩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᏴᏫ ᎠᏴ ᏂᎦᏍᏛ ᎾᏍᎩᏯ ᏂᎦᎵᏍᏓ ᎤᎦᏙᎥᎯᏍᏗᏱ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ; Ꭷ ᏯᏌᎳᏛᎦᏰᏃ ᎤᏬᏰᏂ, ᎠᎴ ᏯᎩ ᎤᏓᏔᏅᎯ ᏈᎬ ᎬᏂᏛ ᎠᏓᏩᏛᎡᎯ, ᎠᎴ ᎾᏍᎩ ᏯᎦ, ᎠᎴ ᎠᏲᎱᏍᎩ ᏂᎨᏒᎾ ᏱᏂᎦᎵᏍᏓ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎤᏄᎪᏫᏎ ᎢᏗᏂ ᎠᏫᏒᏗᏱ, ᎤᎶᎪᏗᏱ ᎦᏙᎯ ᏩᏥᏯᏅᎲᎢ.\nᎤᎨᎯᏙᎴᏃ ᏴᏫ; ᏚᏪᎧᏁᏃ ᎠᏂᎩᎷᏫ ᏗᎧᎸᎬ ᎢᏗᏢ ᎠᏫᏒᏗᏱ, ᎠᎴ ᎾᎿ ᏄᏩᏁᎴ ᎬᏩᏔᎷᎩᏍᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎤᏚᏫᏛ ᎠᎦᏔᎮᏍᎩ, ᎠᎦᏘᏰ ᎦᏅᏅ ᏈᎬ ᎠᏓᏩᏛᎡᎯ ᏫᎦᏅᏅᎢ.\nᎠᏯᏙᎸᎢ 4\nᎠᏓᏫᏃ ᎤᎦᏙᎥᏎ ᎢᏫ ᎤᏓᎵᎢ; ᎠᎴ ᎾᏍᎩ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎨᏂ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏱᎰᏩᏍᎩᏂ ᎠᎩᎧᏏ ᎠᏍᎦᏯ.\nᏔᎵᏁᏃ ᎤᏁᏄᎪᏫᏎ ᎤᏅᏟ ᎡᏈᎵ. ᎡᏈᎵᏃ ᎠᏫ ᏗᎦᏘᏯ ᎨᏎᎢ, ᎨᏂᏍᎩᏂ ᏠᎨᏏ ᏧᎸᏫᏍᏓᏁᎯ ᎨᏎᎢ.\nᎢᎸᎯᏳᏃ ᎢᏴᏛ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎨᏂ ᎤᏲᎮᎴ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎦᏙᎯ ᎤᏛᏒᎯ.\nᎡᏈᎵᏃ ᎾᏍᏉ ᎤᏲᎴ ᎤᏤᎵ ᎢᎬᏱᏱ ᏗᎨᎦᏅᏅᎯ ᎠᏫ ᎠᎴ ᎤᎵᏦᎯᏛ. ᏱᎰᏩᏃ ᏚᏓᏂᎸᏤ ᎡᏈᎵ ᎠᎴ ᎾᏍᎩ ᎤᎵᏍᎪᎸᏔᏅᎯ.\nᎨᏂᏍᎩᏂ ᎠᎴ ᎾᏍᎩ ᎤᎵᏍᎪᎸᏔᏅᎯ ᎥᏝ ᏱᏚᏓᏂᎸᏤᎢ. ᎨᏂᏃ ᎤᏣᏘ ᎤᏔᎳᏬᏎᎢ, ᎠᎴ ᎤᎧᏛ ᎡᎳᏗ ᏄᎵᏍᏔᏁᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎨᏂ, ᎦᏙᏃ ᎢᏣᏔᎳᏬᏍᎦ? ᎠᎴ ᎦᏙᏃ ᏣᎧᏛ ᎡᎳᏗ ᏂᎤᏍᏗ?\nᎢᏳᏰᏃ ᎣᏏᏳ ᏱᏂᏣᏛᏁᎸ, ᏝᏍᎪ ᏱᏙᎦᏰᏣᏓᏂᎸᎩ? ᎣᏏᏳᏃ ᏂᏣᏛᏁᎸᎾ ᏱᎩ, ᎠᏍᎦᏂ ᎦᎶᎯᏍᏗᏱ ᎦᏅᎦ. ᎠᎴᏃ ᏂᎯ ᏕᏣᎧᏂᏏᏍᎨᏍᏗ, ᎠᎴ ᎯᏁᏤᎵᏙᎯ ᎨᏎᏍᏗ.\nᎨᏂᏃ ᎤᎵᏃᎮᏔᏁ ᎤᏅᏟ ᎡᏈᎵ: ᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᏠᎨᏏ ᎠᏁᏙᎲᎢ, ᎨᏂ ᏚᎦᏘᎸᏎ ᎤᏅᏟ ᎡᏈᎵ, ᎠᎴ ᎤᎴᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎨᏂ, ᎭᏢ ᎡᏣᏛᏟ ᎡᏈᎵ? ᎯᎠᏃ ᏄᏪᏎᎢ, Ꮭ ᏱᎩᎦᏔᎭ: ᏥᎪ ᎠᏴ ᎥᎩᏅᏟ ᏥᎦᏘᏯ?\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙ ᏣᏛᏁᎸ? ᎦᏙᎯ ᎢᏴᏛ ᏗᏆᎵᏍᏓᏁ ᎡᏣᏅᏟ ᎤᎩᎬ.\nᎠᎴ ᎿᏉ ᎡᏣᏍᎦᏨᎯ ᎡᎶᎯ, ᎾᏍᎩ ᏧᏔᎶᏅ ᎡᏣᏅᏟ ᎤᎩᎬ ᏥᏣᏗᏔᏏ;\nᎢᏳᏃ ᎦᏙᎯ ᏕᎯᎶᎩᏍᎨᏍᏗ, ᎪᎯ ᎢᏳᏓᎴᏅᏛ ᎥᏝ ᎣᏍᏛ ᏱᏣᏛᎯᏎᎮᏍᏗ; ᎠᎴ ᏣᎵᏘᏛᏉ ᎠᎴ ᎾᎭᎴᏁᎯᏉ ᎨᏎᏍᏗ ᎡᎶᎯ.\nᎨᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏱᎰᏩ, ᎠᎩᏍᏛᏗᏍᎬ ᎡᏉᎯᏉ; ᎥᏝ ᎾᏍᎩ ᏱᏂᎬᏂᎥ.\nᎬᏂᏳᏉ, ᎪᎯ ᎢᎦ ᏍᎩᎨᎯᏓ ᎡᎶᎯ; ᎠᎴ ᏂᎯ ᏗᏣᎧᎿᏂᏓᏍᏗᏱ ᎠᏆᏗᏍᎦᎴᏍᏗ; ᎠᎴ ᎠᏆᎵᏗᏛ ᎠᎴ ᎾᎦᎴᏁᎯ ᎨᏎᏍᏗ ᎡᎶᎯ; ᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎩᎶᏉ ᎠᎩᏩᏛᎲᎭ ᎠᎩᎯᏍᏗ ᎨᏎᏍᏗ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎩᎶ ᎢᎠᎯᎮᏍᏗ ᎨᏂ, ᎦᎵᏉᎩ ᎢᏳᏩᎫᏗ ᎠᎦᏞᏤᏗ ᎨᏎᏍᏗ: ᎠᎴ ᏱᎰᏩ ᎤᏬᏪᎳᏁ ᎨᏂ, ᎾᏍᎩ ᎩᎶ ᏳᏩᏛᎲ ᎤᎯᏍᏗᏱᏉ ᏂᎨᏒᎾ.\nᎨᏂᏃ ᎤᏓᏅᎡᎴ ᏱᎰᏩ, ᎠᎴ ᏃᏗᏱ ᏭᏁᎳᏕᎢ, ᎾᏍᎩ ᎢᏗᏂ ᎨᏒ ᏗᎧᎸᎬ ᏫᏚᏳᎪᏛᎢ.\nᎨᏂᏃ ᎤᎦᏙᎥᏎ ᎤᏓᎵᎢ, ᎠᎴ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎢᎾᎩ; ᎠᎴ ᎤᏪᏚᏁᎢ, ᎠᎴ ᎦᏚᎲ ᎤᏪᏥ ᏚᏙᎥ ᎢᎾᎩ ᏚᏬᏍᏔᏁᎢ.\nᎢᎾᎩᏃ ᎤᏪᏥ ᎢᎳᏗ ᎤᏕᏁᎢ: ᎠᎴ ᎢᎳᏗ ᎤᏪᏥ ᎻᎱᏤᎵ ᎤᏕᏁᎢ: ᎻᎱᏤᎵᏃ ᎤᏪᏥ ᎻᏚᏎᎵ ᎤᏕᏁᎢ: ᎻᏚᏎᎵᏃ ᎤᏪᏥ ᎴᎻᎩ ᎤᏕᏁᎢ.\nᎴᎻᎩᏃ ᎠᏂᏔᎵ ᏚᏓᏴᏎᎢ: ᏌᏉ ᎡᏓ ᏚᏙᎡᎢ, ᏐᎢᏃ ᏥᎳ ᏚᏙᎡᎢ.\nᎡᏓᏃ ᏤᏆᎵ ᎤᎾᏄᎪᏫᏎᎢ: ᎾᏍᎩᏃ ᎯᎠ ᏕᎦᎵᏦᏛ ᏗᎾᏁᎳᏗᏍᎩ, ᎠᎴ ᎤᏂᎾᏝᎾᎢ ᏥᎩ, ᎤᏂᏙᏓ ᎨᏎᎢ.\nᎤᏅᏟᏃ ᏧᏆᎵ ᏚᏙᎡᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏗᎧᏃᎩᏍᏗ ᎠᎴ ᎠᏤᎷᎩ ᏗᏂᏃᎩᏍᏗᏍᎩ ᏥᎩ ᎤᏂᏙᏓ ᎨᏎᎢ.\nᏥᎳᏃ ᎾᏍᏉ ᏚᏆᎵ-ᎨᏂ ᎤᎾᏄᎪᏫᏎᎢ; ᎾᏍᎩ ᏗᎨᏲᎲᏍᎩ ᎨᏎ ᎠᏃᏢᏅᎥᏍᎩ ᏄᏓᎴᏒ ᎥᏣᏱ ᎠᎴ ᏔᎷᎩᏍᎩ ᎠᏃᏢᏅᎥᏍᎬᎢ: ᏚᏆᎵᎨᏂᏃ ᎤᏙ ᏁᎹ ᏚᏕᎢ.\nᎴᎻᎩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏓᎵᎢ: ᎡᏓ ᎠᎴ ᏥᎳ, ᏍᏓᏛᎬᎦ ᏥᏁᎬᎢ, ᎴᎻᎩ ᏧᏓᎵᎢ, ᏍᏓᏛᏓᏍᏓ ᏥᏬᏂᏍᎬᎢ: ᎠᏍᎦᏯᏰᏃ ᏥᎸ ᎠᎩᏐᏅᏍᎬ ᏅᏓᎦᎵᏍᏙᏓ, ᎠᎴ ᎠᏫᏅ [ᏥᎸ] ᎡᎯᏍᏗ ᎾᏋᏁᎲ ᏅᏓᎦᎵᏍᏙᏓ.\nᎢᏳᏃ ᎨᏂ [ᎤᎸᎯ] ᎦᎵᏉᎩ ᎢᏳᏩᎫᏗ ᎠᎦᏞᏤᏗ ᎨᏎᏍᏗ, ᎴᎻᎩ [ᎤᎸᎯ] ᎦᎵᏆᏍᎪᎯ ᎦᎵᏉᎩ ᎢᏳᏩᎫᏗ ᎠᏎ ᎠᎦᏞᏤᏗ ᎨᏎᏍᏗ.\nᎠᏓᏫᏃ ᏔᎵᏁ ᎤᎦᏙᎥᏎ ᎤᏓᎵᎢ; ᎤᎾᏄᎪᏫᏎᏃ ᎤᏪᏥ ᎠᏧᏣ ᎠᎴ ᏎᏘ ᏚᏬᎡᎢ: [ᎯᎠᏰᏃ ᏄᏪᏎᎢ;] ᎤᏁᎳᏅᎯ ᎠᎩᎧᏁᎸ ᏅᏩᏓᎴ ᎠᏇᏥ ᎠᎩᏁᏟᏴᏍᏓᏁᎸ ᎡᏈᎵ, ᎾᏍᎩ ᎨᏂ ᏧᎸᎩ.\nᏎᏘᏃ ᎾᏍᏉ ᎤᏪᏥ ᎠᏧᏣ ᎤᏕᏁᎴᎢ ᎢᎾᏏᏃ ᏚᏬᎡᎢ: ᎿᏉᏃ ᎾᎯᏳ ᏴᏫ ᎤᎾᎴᏅᎮ ᏱᎰᏩ ᎤᎾᏓᏙᎵᏍᏓᏁᎴ ᏚᏙᎥ ᎤᏂᏁᎢᏍᏓᏁᎢ\nᎠᏯᏙᎸᎢ 5\nᎯᎠ ᎪᏪᎵ ᎬᏂᎨᏒ ᎢᎬᏁᎯ ᎠᏓᏫ ᏧᏁᏢᏔᏅᏒᎢ; ᎾᎯᏳ ᎢᎦ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏁ ᏴᏫ, ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᏄᏍᏛ ᏄᏩᏁᎴᎢ;\nᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᏂᏚᏩᏁᎴᎢ: ᎠᎴ ᎣᏍᏛ ᏚᏁᏤᎵᎢ, ᎠᎴ ᎠᏓᏫ ᏚᏬᎡᎢ, ᎾᎯᏳ ᎢᎦ ᏚᏬᏢᏅ.\nᎠᎴ ᎠᏓᏫ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎤᏪᏥ ᎤᏕᏁᎴᎢ, ᎤᏩᏒ ᎤᏰᎶᏎ ᎠᎴ ᎤᏩᏒ ᏄᏍᏛ ᏄᏍᏕᎢ, ᎠᎴ ᏎᏘ ᏚᏬᎡᎢ:\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎠᏓᏫ, ᏅᏓᎬᏩᏓᎴᏅᏛ ᏎᏘ ᏧᏕᏁᎴᎢ, ᏁᎳᏧᏈ ᏄᏕᏘᏴᎮᎢ; ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎠᏓᏫ ᏐᎣᏁᎳᏧᏈ ᏦᎠᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ: ᎿᏉᏃ ᎤᏲᎱᏎᎢ.\nᏎᏘᏃ ᎠᏍᎪᎯᏧᏈ ᎯᏍᎩᏃ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎢᎾᏏ ᎤᏕᏁᎴᎢ:\nᏎᏘᏃ ᎢᎾᏏ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᎦᎵᏉᎩ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ; ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ:\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᏎᏘ ᏐᎣᏁᎳᏧᏈ ᏔᎳᏚ ᏄᏕᏘᏴᎮᎢ: ᎿᏉᏃ ᎤᏲᎱᏎᎢ.\nᎢᎾᏏᏃ ᏐᎣᏁᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎨᎢᎾᏂ ᎤᏕᏁᎴᎢ:\nᎢᎾᏏᏃ ᎨᎢᎾᏂ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᏍᎩᎦᏚ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎢᎾᏏ ᏐᎣᏁᎳᏧᏈ ᎯᏍᎩ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ:\nᎨᎢᎾᏂᏃ ᎦᎵᏆᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᏣᎮᎴᎵ ᎤᏕᏁᎴᎢ.\nᎨᎢᎾᏂᏃ ᎺᎮᎴᎵ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᏴᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎨᎢᎾᏂ ᏐᎣᏁᎳᏧᏈ ᎠᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ.\nᎺᎮᎴᎵᏃ ᏑᏓᎳᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᏤᎳᏗ ᎤᏕᏁᎴᎢ;\nᎺᎮᎴᎵᏃ ᏤᎳᏗ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎺᎮᎴᎵ ᏁᎳᏧᏈ ᏐᎣᏁᎳᏍᎪᎯ ᎯᏍᎩ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ.\nᏤᎳᏗᏃ ᎠᏍᎪᎯᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏔᎵ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎢᎾᎩ ᎤᏕᏁᎴᎢ:\nᏤᎳᏗᏃ ᎢᎾᎩ ᎤᏕᏁᎸ, ᎣᏂ ᏁᎳᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᏤᎳᏗ ᏐᎣᏁᎳᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏔᎵ ᏄᏕᏘᏴᎮᎢ, ᎿᏉᏃ ᎤᏲᎱᏎᎢ.\nᎢᎾᎩᏃ ᏑᏓᎳᏍᎪᎯ ᎯᏍᎩ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎻᏚᏏᎳ ᎤᏕᏁᎴᎢ:\nᎢᎾᎩᏃ ᎻᏚᏏᎳ ᎤᏕᏁᎸ, ᎣᏏ ᎤᏁᎳᏅᎯ ᎤᏁᏙᎴ ᏦᎢᏧᏈ ᏧᏕᏘᏴᏛ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎢᎾᎩ ᏦᎢᏧᏈ ᏑᏓᎳᏍᎪᎯ ᎯᏍᎩ ᏄᏕᏘᏴᎮᎢ.\nᎢᎾᎩᏃ ᎤᏁᎳᏅᎯ ᎤᏁᏙᎴᎢ; ᎠᎴ ᏅᏩᎵᏛᏔᏁᎢᏉ; ᎤᏁᎳᏅᎯᏕᏃ ᎤᏯᏅᎮᎢ.\nᎻᏚᏏᎳᏃ ᎠᏍᎪᎯᏧᏈ ᏁᎳᏍᎪᎯ ᎦᎵᏉᎩ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎴᎹᎩ ᎤᏕᏁᎴᎢ.\nᎻᏚᏏᎳᏃ ᎴᎹᎩ ᎤᏕᏁᎸ, ᎣᏂ ᎦᎵᏉᎩᏧᏈ ᏁᎳᏍᎪᎯ ᏔᎵ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎻᏚᏏᎳ ᏐᎣᏁᎳᏧᏈ ᏑᏓᎳᏍᎪᎯ ᏐᎣᏁᎳ ᏄᏕᏘᏴᎮᎢ, ᎿᏉᏃ ᎤᏲᎱᏎᎢ.\nᎴᎹᎩᏃ ᎠᏍᎪᎯᏧᏈ ᏁᎳᏍᎪᎯ ᏔᎵ ᎢᏳᏕᏘᏴᏛ ᎡᎮᎢ, ᎿᏉᏃ ᎤᏪᏥ ᎠᏧᏣ ᎤᏕᏁᎴᎢ:\nᏃᏯᏃ ᏚᏬᎡᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᎩᏍᎩᏂ ᎯᎠ ᏓᎩᎦᎵᏍᏓᏗ ᎪᎱᏍᏗ ᎢᏓᏛᏁᎲ ᎠᎴ ᏗᎪᏰᏂ ᎬᏗ ᏕᎩᎸᏫᏍᏓᏁᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗ ᎦᏙᎯ ᏱᎰᏩ ᎤᏍᎦᏨᎯ ᏥᎩ.\nᎴᏑᎩᏃ ᏃᏯ ᎤᏕᏁᎸ, ᎣᏂ ᎯᏍᎩᏧᏈ ᏐᎣᏁᎳᏍᎪᎯ ᎯᏍᎩ ᎢᏳᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏂᎪᎯᎸᏃ ᎤᎴᏂᏙᎸ ᎴᎹᎩ ᎦᎵᏉᎩᏧᏈ ᎦᎵᏆᏍᎪᎯ ᎦᎵᏉᎩ ᏄᏕᏘᏴᎮᎢ; ᎿᏉᏃ ᎤᏲᎱᏎᎢ.\nᏃᏯᏃ ᎯᏍᎩᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ: ᎿᏉᏃ ᏃᏯ ᏧᏪᏥ ᏎᎻ ᎠᎴ ᎭᎻ ᎠᎴ ᏤᏡᏛ ᎬᏩᏕᏁᎴᎢ.\nᎠᏯᏙᎸᎢ 6\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎿᏉ ᏴᏫ ᎤᎾᎴᏅᎲ ᎠᏂᎪᏓᏗᏍᎬ ᎡᎶᎯ, ᎠᎴ ᏧᏁᏥ ᎠᏂᎨᏴ ᎬᏩᎾᏕᏁᎸ,\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏚᏂᎪᎮ ᏴᏫ ᏧᏁᏥ ᎠᏂᎨᏴ, ᏧᏃᏚᎯᏳ ᎨᏒᎢ: ᎠᎴ ᎾᏍᎩ ᏚᎾᏓᏴᏎ ᏫᏂᎥ ᏚᎾᏑᏰᏒᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏆᏓᏅᏙᎩ ᎥᏝ ᏂᎪᎯᎸ ᏴᏫᎯ ᏰᎮᏍᏗ, ᎤᏇᏓᎵᏉᏰᏃ ᎾᏍᎩ; ᎠᏎᏃ ᎠᏍᎪᎯᏧᏈ ᏔᎳᏍᎪᎯ ᎠᏏ ᏄᏕᏘᏱᏍᎨᏍᏗ.\nᏧᏂᎵᎦᎳᏃ ᎾᎯᏳ ᎠᏁᎮ ᎡᎶᎯ; ᎠᎴ ᎾᏍᏉ ᎣᏂ ᎤᏁᎳᏅᎯ ᏧᏪᏥ ᏚᎾᏓᏰᏅ ᏴᏫ ᏧᏁᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏗᏂᏲᎵ ᏕᎬᏩᏂᎾᏄᎪᏫᏎᎸ, ᎾᏍᎩ ᎯᎠ ᎤᏣᏘ ᏧᎾᎵᏂᎩᏗᏳ ᎨᏎᎢ, ᎾᏍᎩ ᎡᏘ ᏗᏂᏃᏣᎵ ᎠᏂᏍᎦᏯ ᎨᏎᎢ;\nᎠᎴ ᏱᎰᏩ ᎤᎪᎮ ᎤᏣᏘ ᎤᏁᎫᎯᏳ ᎨᏒ ᏴᏫ ᎡᎶᎯ, ᎠᎴ ᏂᎦᎥ ᎤᎾᏫᏱ ᎠᏓᏅᏖᏍᎬ ᎯᎠ ᏄᏍᏕᏍᏗ ᎡᎵᏍᎬ ᎤᏲᏉ ᎨᏒ ᏂᎪᎯᎸᎢ.\nᎠᎴ ᏱᎰᏩ ᎤᏲ ᎤᏰᎸᏁ ᎡᎶᎯ ᏴᏫ ᎤᏬᏢᏅᎢ, ᎠᎴ ᎡᎯᏍᏗᏳ ᎤᏓᏅᏓᏕ ᎤᎾᏫᏱ ᎢᏴᏛ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏴᏫ ᏓᏥᏛᏔᏂ ᎡᎶᎯ ᎡᎲᎢ ᎾᏍᎩ ᏥᏲᏢᏅᎯ ᏥᎩ; ᏴᏫ, ᎠᎴ ᎾᏍᏉ ᏅᎩᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎦᎸᎶᎢ ᎠᏂᏃᎯᎵᏙᎯ; ᎤᏲᏰᏃ ᏥᏰᎸᏍᎦ ᎦᏥᏲᏢᏅᎢ.\nᏃᏯᏍᎩᏂ ᏱᎰᏩ ᎤᏪᏙᎵᏍᏗ ᏧᎧᏃᏗᏱ ᎤᏩᏛᎮᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏃᏯ ᏧᏁᏢᏔᏅᏒᎢ: ᏃᏯ ᎤᏓᏅᏘᏳ ᎨᏎᎢ, ᎠᎴ ᎾᏍᎦᏅᎾ ᎨᏎ ᎡᎲ ᎾᎯᏳ ᏣᏁᎮᎢ, ᎠᎴ ᏃᏊ ᎤᏁᎳᏅᎯ ᎤᏁᏙᎴᎢ.\nᏃᏯᏃ ᏦᎢ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ, ᏎᎻ, ᎠᎴ ᎭᎻ, ᎠᎴ ᏤᏈᏛ.\nᎠᎴ ᎡᎶᎯ ᎤᏲᏨᎯ ᎨᏎ ᎤᏁᎳᏅᎯ ᏓᎧᏂᏍᎬᎢ, ᎠᎴ ᎤᏲ ᎢᏗᏓᏛᏁᏗ ᎨᏒ ᎤᎧᎵᏨᎯ ᎨᏎ ᎡᎶᎯ.\nᎤᏁᎳᏅᎯᏃ ᏚᎧᎿᏁ ᎡᎶᎯ, ᎠᎴ ᎬᏂᏳ ᎤᏲᏨᎯ ᎨᏎᎢ, ᏂᎦᏗᏳᏰᏃ ᎤᏇᏓᎵ ᎤᏲᏍᏔᏅᎯ ᎨᏎ ᎡᎲᎢ ᎡᎶᎯ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏃᏯ, ᎿᏉ ᎤᎵᏍᏆᏕᎵᎯᏍᏗ ᎨᏒ ᏂᎦᏗ ᎤᏇᏓᎵ ᎠᎩᏍᏆᎸᎡᎵᎦ: ᎡᎶᎯᏰᏃ ᎤᏂᎧᎵᎸᎯ ᎢᎩ ᎤᏲ ᎢᏗᏓᏛᏁᏗ ᎨᏎᎢ, ᎠᎴ ᎬᏂᏳᏉ, ᏓᎦᏥᏯᏠᏍᏔᏂ ᏥᏲᏍᏗᏍᎬ ᎡᎶᎯ.\nᏨᏒ ᎭᏓᏙᏢᎾᏏ ᏥᏳ, ᎠᏥᎾ ᎰᏢᏓ. ᏕᎧᏅᏑᎴᏍᏗ ᎭᏫᏂ ᏥᏳᎯ, ᎠᎴ ᎠᏜ ᏘᏅᎵᏰᎢ ᎭᏫᏂ ᎠᎴ ᎦᏚᎢᏗᏢᎢ.\nᎯᎠᏃ ᏄᏍᏗᏓᏁᏍᏗ ᏙᏢᏂ. ᏦᎢᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏥᏳ, ᎯᏍᎦᏍᎪᎯᏃ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏒᏍᏗ, ᏦᎠᏍᎪᎯᏃ ᎢᏯᎩᏳᏍᏈᏛ ᏄᏅᏪᎡᏍᏗ.\nᎠᎴ ᎠᏦᎳᏅ ᏘᏔᎴᏏ ᏥᏳᎯ, ᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᎦᎸᎳᏗᏢ. ᏘᏍᏆᏗᎵ, ᎦᎶᎯᏍᏗᏱᏃ ᎠᏍᏆᎨᏂ ᏥᏳᎯ ᏘᏔᎴᏍᏔᏂ, ᎠᎴ ᎡᎳᏗ, ᎠᎴ ᏔᎵᏁ, ᎠᎴ ᏦᎢᏁ ᎾᏲᏓᏝᎲ ᏅᏛᏁᎵ.\nᎠᎴ ᎬᏂᏳᏉ ᎠᏴ ᏓᏥᏃᎤᎪᏔᏂ ᎡᎶᎯ, ᏥᏛᏗᏍᎬ ᏂᎦᏗ ᎤᏇᏓᎵ, ᎾᏍᎩ ᎬᏬᎳᏕᏍᎬ ᏥᎬᎿᏗᏍᏙᏗ, ᎾᏍᎩ ᎦᎸᎶ ᎡᎳᏗᏢ ᏤᎭ, ᎠᎴ ᏂᎦᏗᏳ ᎡᎶᎯ ᏤᎿᎠ ᏓᎦᎵᏬᏦᏂ.\nᏂᎯᏍᎩᏂ ᎤᎵᏂᎩᏛ ᏓᎬᏚᎢᏍᏓᏁᎵ; ᎠᎴ ᏥᏳᎯ ᏓᏥᏴᎵᎵ, ᏂᎯ, ᎠᎴ ᏗᏤᏥ, ᎠᎴ ᏣᏓᎵᎢ, ᎠᎴ ᏗᏤᏥ ᏧᎾᏓᎵᎢ.\nᎠᎴ ᏥᏄᎾᏓᎴ ᏗᏅᏃᏛ ᏂᎦᏗ ᎤᏂᏇᏓᎵ ᏥᎩ, ᏔᎵᎭ ᏥᏄᎾᏓᎴ ᏙᏘᏴᏔᏂᎵ ᏥᏳᎯ, ᏂᎯ ᎢᏧᎳᎭ ᏕᏨᏁᏍᏗ, ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ ᎨᏎᏍᏗ.\nᎠᎴ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎡᎶᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎤᏂᏠᏱᎭ ᎨᏎᎢ, ᎠᏂᏔᎵᎭ ᏄᎾᏓᎴᏒ ᏓᎨᏣᎷᏤᎵ, ᏓᏅᏅ ᏘᏍᏆᏂᎪᏓᏁᏗᏱ.\nᎠᎴ ᏘᏰᏏ ᏂᎦᎥ ᏄᏓᎴᏒ ᎠᎵᏍᏓᏴᏗ ᎠᎩᏍᏗ ᏥᎩ, ᎠᎴ ᏘᏟᏌᏂ; ᎢᏣᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ ᏂᎯ ᎠᎴ ᏕᎭᏘᏁᎲᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏛᏁᎴ ᏃᏊ; ᏂᎦᏗ ᏄᏍᏛ ᎤᏁᏤᎸ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏄᏛᏁᎴᎢ.\nᎠᏯᏙᎸᎢ 7\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏃᏯ, Ꭷ ᎭᏣᎥᎦ ᏥᏳᎯ, ᏂᎯ ᎠᎴ ᏂᎦᏗ ᏕᏣᏓᏘᎿᎥᎢ; ᏂᎯᏰᏃ ᎬᎪᎡᎸ ᏚᏳᎪᏛ ᎮᎲ ᎠᏴ ᏥᎦᏔᎲᎢ ᎯᎠ ᎾᏍᎩ ᎠᏁᎲᎢ.\nᎾᏂᎥᏃ ᏅᎩ ᏗᏂᏅᏌᏗ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᎦᎵᏉᎩ ᎢᏯᏂᎢᏛᎭ ᏕᎯᏴᏔᏅᎭ, ᎠᏨᏯ ᎠᎴ ᎤᏤᎵ ᎠᎩᏏ; ᎠᎴ ᏅᎩᏗᏂᏅᏌᏗ ᎠᏂᎦᏓᎭ ᏥᎩ ᎠᏂᏔᎵᎭ, ᎠᏨᏯ ᎠᎴ ᎤᏤᎵ ᎠᎩᏏ.\nᎠᎴ ᎾᏍᏉ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ ᎦᎵᏉᎩ ᎢᏯᏂᎢᏛᎭ, ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ, ᏓᏅᏅ ᏘᏍᏆᏂᎪᏓᏁᏗᏱ ᎾᏍᎩ ᎤᏂᏁᏉᎢᏍᏗᏱ ᎡᎶᎯ ᏂᎬᎾᏛ ᎦᏚᎢ.\nᎠᏏᏰᏃ ᎦᎵᏉᎩ ᎢᏳᏒᎯ, ᎿᏉ ᏓᏥᎦᏃᏔᏂ ᎡᎶᎯ ᏅᎦᏍᎪᎯ ᏧᏙᏓᏆᏛ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ:; ᏄᏓᎴᏒᏃ ᎬᏃᏛ ᎠᏉᏢᏅᎯ ᏥᎩ ᏓᏥᏛᏔᏃᏂ ᎡᎶᎯ ᏂᎬᎾᏛ ᎦᏚᎢ.\nᏃᏯᏃ ᎾᏍᎩᏯ ᏄᏛᏁᎴ ᏱᎰᏩ ᏄᏍᏛ ᎤᏁᏤᎸᎢ.\nᏃᏯᏃ ᏑᏓᎵᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᏥᏚᏃᎱᎦᏁ ᎡᎶᎯ.\nᏃᏯᏃ ᎤᏣᏁ ᏥᏳᎯ, ᎠᎴ ᎾᏍᏉ ᏧᏪᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᏧᎾᏓᎵᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎹ ᏕᎦᏃᎱᎩᏍᎬᎢ.\nᎠᎴ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᏂᎦᏓᎭ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏄᎾᏓᎴᏒ ᎦᏙᎯ ᎠᎾᏓᎾᏏᏂᏙᎯ,\nᎠᏂᏔᎵᎭ ᏫᎬᏩᏣᏁᎵᎴ ᏃᏯ ᏥᏳᎯ; ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎸ ᏃᏯ.\nᏱᎠᏃ ᏄᎵᏍᏔᏁ ᎦᎵᏉᎩ ᏫᏄᏒᎸ, ᎿᏉ ᎠᎹ ᎦᏃᎱᎩᏍᎨ ᎡᎶᎯ.\nᏑᏓᎵᏧᏈᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎡᎲ ᏃᏯ, ᏔᎵᏁ ᎧᎸᎢ, ᎦᎵᏆᏚᏏᏁ ᎢᎪᎯ ᎧᎸᎢ, ᎾᎯᏳᏉ ᎢᎦ ᏂᎦᏗ ᏕᎦᏄᎪᎬ ᎡᏆ ᎠᏍᏛᎩ ᎨᏒ ᏚᏔᏍᎩᏎᎢ, ᎠᎴ ᎠᏦᎳᏅ ᏚᎵᏍᏚᎢᏎ ᎦᎸᎶᎢ.\nᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏙᏓᏆᏛ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎤᎦᎿᏁ ᎡᎶᎯ.\nᎾᎯᏳᏉ ᎢᎦ ᏃᏯ, ᎠᎴ ᏎᎻ, ᎠᎴ ᎭᎻ, ᎠᎴ ᏤᏈᏛ, ᏃᏯ ᏧᏪᏥ, ᎠᎴ ᏃᏯ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᏧᎾᏓᎵᎢ ᏦᎢ ᎢᏯᏂᏛ, ᎤᎾᏣᏁ ᏥᏳᎯ;\nᎾᏍᎩ [ᎤᎾᏣᏁᎢ,] ᎠᎴ ᎾᏂᎥ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏗ ᎦᎾᏝᎢ ᏧᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎾᏍᎩ ᎡᎶᎯ ᏣᎾᏓᎾᏏᏂᏙᎰᎢ, ᎾᏍᎩ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏃᎯᎵᏙᎯ ᎤᏂᏠᏱᎭ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᏥᏍᏆ ᏧᏓᎴᏅᏛ ᏗᏃᏯᏗ ᏥᎩ.\nᎠᎴ ᏃᏯ ᏫᎬᏩᏣᏁᎴ ᏥᏳᎯ, ᎠᏂᏔᎵᎭ ᎾᏂᎥ ᎤᏂᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩ ᎠᏅᏬᎳᏕᏍᎬ ᏥᏓᏅᎿᏗᏍᏙᏗ.\nᎠᎴ ᎾᏍᎩ ᏭᎾᏣᏅᎯ, ᎠᏨᏯ ᎠᎴ ᎠᎩᏏ ᎤᎾᏣᏁ ᎾᏂᎥ ᎤᏂᏇᏓᎵ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎸᎢ; ᎠᎴ ᏱᎰᏩ ᎤᏍᏚᏁᎢ.\nᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ ᎦᏃᎱᎩᏍᎨ ᎡᎶᎯ, ᎠᎴ ᎠᎹ ᎧᏁᏉᏥᏎᏉ, ᎠᎴ ᎤᏲᎷᏔᏁ ᏥᏳ, ᎠᎴ ᎦᏙᎯ ᎦᎸᎳᏗᏢ ᎤᎵᏌᎳᏓᏁᎢ.\nᎠᎴ ᎡᎶᎯ ᎦᏃᎱᎩᏍᎨᎢ, ᎠᎴ ᎠᎹ ᎤᏣᏘ ᎤᏁᏉᏂᏥᎴᎢ:; ᎠᎴ ᏥᏳ ᎠᎹᏱ ᎦᏚ ᎤᏲᎷᏩᏕᎨᎢ.\nᎠᎴ ᎦᏃᎱᎩᏍᎬ ᎤᏣᏔᏅᎯ ᎤᏁᏉᏥᎴ ᎡᎶᎯ; ᎠᎴ ᏂᎦᏗᏳ ᎢᏅ ᎢᏗᎦᏘ ᏙᏓᎸ ᏂᎬᎾᏛ ᎦᎸᎶ ᎭᏫᏂᏗᏢ ᏚᏭᏢᏔᏁᎢ.\nᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏄᎶᏤ ᎠᎹ, ᎠᎴ ᏙᏓᎸ ᏚᏭᏢᏔᏁᎢ.\nᎠᎴ ᏂᎦᏗᏳ ᎤᏂᏇᏓᎵ ᎨᏒ ᏚᏂᎵᏬᏤ ᎾᏍᎩ ᎡᎶᎯ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏥᎩ, ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᏗᏅᏃᏛ, ᎠᎴ ᎾᏂᎥ ᎠᎾᏓᎾᏏᏂᏙᎯ ᏥᎩ, ᎾᏍᎩ ᎡᎶᎯ ᏣᎾᏓᎾᏏᏂᏙᎭ, ᎠᎴ ᏴᏫ ᎾᏂᎥᎢ;\nᎾᏍᎩ ᎾᏂᎥ ᏗᏃᏴᏐᎵ ᎠᏅᏬᎳᏕᏍᎬ ᏥᏓᏅᎿᏗᏍᏙᏗ, ᏂᎦᏗᏳ ᎾᏍᎩ ᎦᏙᎯ ᎤᎧᏲᏛᎯ ᎠᏁᎯ ᏥᎩ, ᏚᏂᎵᏬᏤᎢ.\nᎠᎴ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᎨᏥᏛᏔᏁᎢ, ᎾᏍᎩ ᎦᏙᎯ ᎦᏚᎢ ᎠᏁᎯ, ᏴᏫ, ᎠᎴ ᏅᎩᏗᏂᏅᏌᏗ, ᎠᎴ ᎠᎾᏓᎾᏏᏂᏙᎯ, ᎠᎴ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ; ᎾᏍᎩ ᎨᏥᏛᏔᏁ ᎡᎶᎯ; ᏃᏯᏃ ᎤᏩᏒ ᎤᎵᏃᎯᏰᎢ, ᎾᏃ ᎾᏍᎩ ᎢᏧᎳᎭ ᏥᏳᎯ ᎤᎾᏣᏅᎯ.\nᎠᎴ ᎦᏃᎱᎩᏍᎬ ᎧᏁᏉᏥᏎ ᎡᎶᎯ ᎠᏍᎪᎯᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏧᏒᎯᏛ.\nᎠᏯᏙᎸᎢ 8\nᎤᏁᎳᏅᎯᏃ, ᎤᏅᏓᏕ ᏃᏯ, ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏅᎩ-ᏗᏂᏅᏌᏗ ᎾᏍᎩ ᏥᏳᎯ ᏧᎾᏣᎡᎢ; ᎤᏁᎳᏅᎯᏃ ᏄᏩᏂᏌᏁ ᎤᏃᎸᏁ ᎡᎶᎯ, ᎠᎴ ᎠᎹ ᎦᏅᏬᏍᎨᎢ.\nᎠᎴ ᎾᏍᏉ ᎠᏍᏛᎩ ᎨᏒ ᏕᎦᏄᎪᎬᎢ, ᎠᎴ ᎠᏦᎳᏅ ᎦᎸᎶᎢ ᏚᎵᏍᏚᏁᎢ, ᎠᎴ ᎦᎸᎳᏗ ᏗᎦᏍᎬ ᎠᏥᎾᎯᏍᏔᏁᎢ.\nᎠᎴ ᎠᎹ ᏂᎪᎯᎸ ᎠᏓᏅᏍᎨ ᎡᎶᎯ; ᎠᏍᎪᎯᏧᏈᏃ ᎯᏍᎦᏍᎪᎯ ᏫᏄᏒᎸ ᎿᏉ ᎦᏅᏬᏍᎨ ᎠᎹ.\nᏥᏳᏃ ᎦᎵᏉᎩᏁ ᎧᎳᏩᏗᏒ ᎦᎵᏆᏚᏏᏁ ᎢᎪᎯ ᎤᏝᏗᏤ ᎠᎳᎳᏗ ᏙᏓᎸᎢ.\nᎠᎴ ᎠᎹ ᎠᎦᏲᎶᏍᎨ ᏂᎪᎯᎸ ᎠᏍᎪᎯᏁ ᎧᎸᎢ ᎢᏯᏍᏗ; ᎠᏍᎪᎯᏁᏃ ᎧᎸᎢ, ᎢᎬᏱᏱᏉ ᎢᎪᎯ ᎾᏍᎩ ᎧᎸᎢ ᏙᏓᎸ ᏧᏍᎪᎵ ᏗᎬᎪᏩᏛᏗ ᎢᎨᏎᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏅᎦᏍᎪᎯ ᏫᏄᏒᎸ, ᎾᏍᎩ ᏃᏯ ᎠᏦᎳᏅ ᎤᏍᏚᎢᏎ ᏥᏳᎯ ᎾᏍᎩ ᏧᏬᏢᏁᎢ;\nᎠᎴ ᎪᎳᏅ ᎤᏅᏎᎢ, ᎾᏍᎩ ᎤᏄᎪᏨ ᎠᏨᏏᏰᏍᎨᎢ ᎬᏂ ᎠᎹ ᎤᎧᏲᏐᏅ ᎡᎶᎯ.\nᎠᎴ ᎾᏍᏉ ᎢᎤᏅᏎ ᎫᎴᏗᏍᎪᏂᎯ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎠᎹ ᎤᏅᏬᏒ ᎦᏙᎯ ᎠᎴ ᏄᏅᏬᏒᎾ ᎨᏒᎢ;\nᎠᏎᏃ ᎫᎴ-ᏗᏍᎪᏂᎯ ᎤᏠᏤᏉ ᎢᎸᎯᏢ ᏧᎳᏏᏗᏱ, ᎠᎴ ᎢᎤᏣᏁᎵᎴ ᏔᎵᏁ ᏥᏳᎯ, ᎠᎹᏰᏃ ᎠᏏᏉ ᎤᏭᏝᎡ ᏂᎬᎾᏛ ᎡᎶᎯ. ᎠᎴ ᏭᏙᏯᏅᎯᏕᎢ, ᎠᎴ ᏭᏂᏴᎮᎢ, ᎠᎴ ᎤᏴᏔᏁ ᏥᏳᎯ.\nᎠᎴ ᎠᏏ ᎦᎵᏉᎩ ᏄᏒᎴᎢ ᏔᎵᏁᏃ ᎤᏅᏎ ᎫᎴ-ᏗᏍᎪᏂᎯ ᎤᏄᎪᏫᏎ ᏥᏳᎯ;\nᎠᎴ ᎫᎴ-ᏗᏍᎪᏂᎯ ᎤᏣᏁᎵᎴ ᎤᏒᎢ; ᎠᎴ ᎬᏂᏳᏉ ᎣᎵᏩ ᎤᎦᎶᎬ ᎢᏤ ᎤᏅᏍᎦᎴᎢ; ᎾᏍᎩᏃ ᏃᏯ ᎤᏙᎴᎰᏎ ᎠᎹ ᎤᏅᏬᏒ ᎡᎶᎯ.\nᎠᎴ ᎠᎴ ᎠᏏ ᎦᎵᏉᎩ ᏄᏒᎴᎢ; ᎿᏉ ᎠᎴ ᎤᏅᏎ ᎫᎴ-ᏗᏍᎪᏂᎯ; ᎾᏍᎩᏃ ᎥᏝ ᏔᎵᏁ ᏳᎷᏤᎴᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏑᏓᎵᏧᏈ ᏌᏉᏃ ᎤᏕᏘᏴᏌᏗᏒᎢ, ᎢᎬᏱᏱ ᎧᎸᎢ, ᎢᎬᏱᏱᏉ ᎢᎪᎯ ᎾᏍᎩ ᎧᎸᎢ, ᎠᎹ ᎤᎧᏲᏐᏁ ᎡᎶᎯ; ᎠᎴ ᏃᏯ ᎤᏩᏁᏎ ᏥᏳ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ, ᎦᏙᎯ ᎦᏚ ᎤᎧᏲᏐᏅᎯ ᎨᏎᎢ.\nᏔᎵᏁᏃ ᎧᎸᎢ, ᎦᎵᏉᎩᏦᏁᏏᏁ ᎢᎪᎯ ᎾᏍᎩ ᎧᎸᎢ, ᎡᎶᎯ ᎤᎧᏲᏐᏁᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᏁᏤᎴ ᏃᏯ, ᎯᎠ ᏄᏪᏎᎢ,\nᎢᏣᏣᎢ ᏥᏳᎯ, ᏂᎯ, ᎠᎴ ᏣᏓᎵᎢ, ᎠᎴ ᏗᏤᏥ ᎠᎴ ᏗᏤᏥ ᏧᎾᏓᎵᎢ.\nᏗᏯᎢ ᏂᎦᏛ ᏗᏅᏃᏛ ᎾᏍᎩ ᏥᏣᏣᎠ, ᏂᎦᏗᏳ ᎤᏂᏇᏓᎵ ᏥᎩ, ᎾᏍᎩ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᏄᎾᏓᎴᏒ ᎠᎾᏓᎾᏏᏂᏙᎯ ᎾᏍᎩ ᎡᎶᎯ ᏣᎾᏓᎾᏏᏂᏙᎭ; ᎾᏍᎩ ᎤᏣᏘ ᎤᏂᏁᏉᎢᏍᏗᏱ ᎡᎶᎯ, ᎠᎴ ᎤᏂᏁᏉᏣᏘ ᎢᏳᎵᏙᏗᏱ, ᎠᎴ ᎤᏂᎪᏙᎯᏍᏗᏱ ᎡᎶᎯ.\nᎿᏉᏃ ᎤᎾᏣᎢᏎᎢ, ᏃᏯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎠᎴ ᎤᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᏧᎾᏓᎵᎢ.\nᎾᏂᎥ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎾᏂᎥ ᎠᎾᎵᏖᎸᎲᏍᎩ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᎾᏍᎩ ᏄᎾᏓᎴᏒ ᎡᎶᎯ ᏣᎾᎵᏖᎸᎲᏍᎪᎢ, ᎤᏂᏠᏱᎭ ᏕᎨᏌᏗᏒ ᎤᎾᏣᎢᏎ ᏥᏳᎯ.\nᏃᏯᏃ ᏱᎰᏩ ᎤᏬᏢᎾᏁᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᏅᎩ-ᏗᏂᏅᏌᏗ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎦᏓᎭ ᏂᎨᏒᎾ ᎠᏂᏃᎯᎵᏙᎯ ᏚᏯᏅᎮᎢ, ᎠᎴ ᎤᎵᏍᎪᎸᏔᏁ ᎠᏥᎸ-ᎨᎳᏍᏙᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ.\nᏱᎰᏩᏃ ᎤᏪᏩᏒᏤ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ; ᏱᎰᏩᏃ ᎤᎿᏫᏱ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᎦᏙᎯ ᏔᎵᏁ ᏴᎦᏥᏍᎦᎩ ᏴᏫᏉ ᏴᎦᏥᏍᏛᏗᏍᏓ; ᏴᏫᏍᎩᏂᏃᏅ ᎠᏓᏅᏖᏍᎬ ᎤᏲᏉ ᏗᏛᏍᎬ ᎢᏴᏛ ᎤᏓᎬᏩᏓᎴᏅᏛ; ᎥᏝ ᎠᎴ ᏔᎵᏁ ᏂᎦᎥ ᎬᏃᏛ ᏴᎦᏥᏛᏓ ᎾᏍᎩᏯ ᎾᏆᏛᏁᎸᎢ.\nᎡᎶᎯ ᎢᎪᎯᏛ ᎨᏒᎢ, ᎥᏝ ᎤᎵᏍᏆᏗᏍᏗ ᏱᎩ ᎠᏫᏍᏗᏱ ᎠᎴ ᎤᎦᏛᎾᏨᎯ ᎦᏟᏐᏗᏱ ᎨᏒᎢ, ᎤᏴᏜᏃ ᎠᎴ ᎤᏗᎴᎩ ᎨᏒᎢ, ᎪᎩᏃ ᎠᎴ ᎪᎳ, ᎢᎦᏃ ᎠᎴ ᏒᏃᏱ.\nᎠᏯᏙᎸᎢ 9\nᎤᏁᎳᏅᎯᏃ ᎣᏍᏛ ᏚᏁᏤᎴ ᏃᏯ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ; ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏥᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏥᎪᏙᏍᎨᏍᏗ, ᎠᎴ ᎢᏥᎧᎵᏣ ᎡᎶᎯ.\nᎠᎴ ᏂᎯ ᎢᏥᎾᏰᎩ ᎠᎴ ᎢᏥᏍᎦᎢᎯ ᎨᏎᏍᏗ ᏄᎾᏓᎴᏒ ᏗᏅᏃᏛ ᎡᎶᎯ ᏣᏁᎭ, ᎠᎴ ᏂᎦᏗ ᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᏂᎦᏗ ᎡᎶᎯ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏥᎩ, ᎠᎴ ᏂᎦᏗ ᎠᏣᏘ ᎠᎺᏉᎯ ᎠᏁᎯ; ᏂᎯ ᏤᏥᏲᎯᏎᎸᎯ.\nᏂᎦᎥ ᎠᎾᎵᏖᎸᎲᏍᎩ ᏗᏅᏃᏛ ᏥᎩ ᏂᎯ ᎢᏣᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ; ᎢᏤ ᎦᏄᎸᏒ ᏗᏨᏲᎯᏎᎸᎯ ᏥᎩ, ᎾᏍᎩᏯ ᏂᎦᏛ ᏕᏨᏲᎯᏏ;\nᎤᏇᏓᎸᏍᎩᏂᏃᏅ ᎬᏅ ᎬᏩᏠᏯᏍᏗ, ᎾᏍᎩ ᎤᎩᎬᎯ ᏥᎩ, ᎥᏝ ᎢᏣᎵᏍᏓᏴᏙᏗ ᏱᎨᏎᏍᏗ.\nᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎢᏥᎩᎬ ᎾᏍᎩ ᏕᏨᎿᏗᏍᏛ ᏗᎩᎬᏩᎶᏙᏗ ᎨᏎᏍᏗ; ᎾᏂᎥ ᏗᏅᏃᏛ ᎾᏍᎩ ᏗᎦᏥᎬᏩᎶᏓᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᏉ ᏴᏫ; ᎾᏂᎥ ᏴᏫ ᏓᎾᏓᏅᏢᎢ, ᎾᏍᎩ ᏴᏫ ᎬᏅ ᏗᎦᏥᎬᏩᎶᏓᏁᏗ ᎨᏎᏍᏗ.\nᎩᎶ ᏴᏫ ᎤᎩᎬ ᎠᏤᏪᎮᏍᏗ ᏴᏫᏉ ᎾᏍᏉ ᎤᎩᎬ ᎤᏤᏪᏗ ᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᎤᏩᎡ ᏚᏓᏟᎶᏍᏔᏅ ᏴᏫ ᎤᏬᏢᏅ.\nᏂᎯᏃ ᎢᏥᏁᏉᏣᏖᏍᏗ, ᎠᎴ ᎢᏥᎪᏙᏍᎨᏍᏗ ᎤᏣᏘ ᏕᏥᎾᏄᎪᏫᏍᎨᏍᏗ ᎡᎶᎯ, ᎠᎴ ᎾᎿ ᎢᏥᎪᏙᏍᎨᏍᏗ.\nᎤᏁᎳᏅᎯᏃ ᏚᏁᏤᎴ ᏃᏯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏎᎢ,\nᎠᎴ ᎠᏴ, ᎬᏂᏳᏉ ᎠᏴ, ᎧᏃᎮᏛ ᏕᏨᏯᏠᎢᏍᏓᏁᎭ ᏂᎯ, ᎠᎴ ᎢᏣᏁᏢᏔᏅᏛ ᎨᏒᎢ.\nᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ, ᏥᏕᎭᏘᏁᎭ, ᎾᏍᎩ ᎠᏂᏃᎯᎵᏙᎯ, ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎡᎶᎯ ᎠᏁᎯ ᏥᏕᎭᏘᏁᎭ; ᎾᏍᎩ ᎾᏂᎥ ᏧᎾᏣᎢᏒ ᏥᏳᎯ, ᎠᎴ ᏥᎾᏂᎥᏉ ᏗᏅᏃᏛ ᎡᎶᎯ ᏣᏁᎭ.\nᎠᎴ ᎧᏃᎮᏛ ᏕᏨᏯᏠᎢᏍᏔᏁᎭ, ᎥᏝ ᎠᎴ ᏔᎵᏁ ᏂᎦᏛ ᎤᏇᏓᎵ ᎦᏃᎱᎩᏍᎬ ᎨᏥᏒᎲᏍᏙᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᏔᎵᏁ ᎤᏃᎱᎪᏗ ᏱᎨᏎᏍᏗ ᎡᎶᎯ ᎤᏲᏍᏙᏗᏱ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎤᏰᎸᏛ ᎧᏃᎮᏛ ᏥᏕᏨᏯᏠᎢᏍᏓᏁᎭ ᏂᎯ ᎠᎴ ᎾᏂᏗᏅᏃᏛ ᏥᏕᎭᏘᏁᎭ, ᎾᏍᎩ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎢᏣᏓᏁᏟᏴᏏᏒ ᎢᎪᎯᏛ;\n[ᎬᏂᏳᏉ,] ᏂᏅᎪᎳᏛᏓ ᎤᎶᎩᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᎧᏃᎮᏛ ᏙᎦᏠᎯᏍᏛ ᎡᎶᎯ.\nᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ ᎿᏉ ᏥᎶᎩᎳᏗᏍᏗᏍᎨᏍᏗ ᎡᎶᎯ, ᎤᏅᎪᎳᏛ ᎠᎪᏩᏛᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᎤᎶᎩᎸᎢ.\nᎠᎴ ᎦᏅᏓᏗᏍᎨᏍᏗ ᎧᏃᎮᏛ ᏕᏨᏯᏠᎢᏍᏓᏁᎸᎢ, ᏂᎯ ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ ᎤᏂᏇᏓᎵ ᏥᎩ; ᎠᎴ ᎥᏝ ᎿᏉ ᏔᎵᏁ ᎤᏃᎱᎪᏗ ᏱᎨᏎᏍᏗ ᎤᏒᎲᏍᏗᏱ ᏂᎦᏛ ᎤᏇᏓᎵ.\nᎠᎴ ᎤᎶᎩᎸ ᎤᏅᎪᎳᏖᏍᏗ; ᎠᎴ ᏕᎦᎦᏂᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏆᏅᏗᏓᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏛ ᎤᏁᎳᏅᎯ ᎠᎴ ᎾᏂᎥ ᏗᏅᏃᏛ, ᎾᏍᎩ ᎤᏂᏇᏓᎵ ᏥᎩ, ᎾᏍᎩ ᎡᎶᎯ ᏣᏁᎭ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏃᏯ, ᎯᎠ ᎾᏍᎩ ᎤᏰᎸᏛ ᎧᏃᎮᏛ ᏙᎦᏠᎯᏍᏛ ᎠᏴ, ᎠᎴ ᎾᏂᎥ ᎤᏂᏇᏓᎵ ᎡᎶᎯ ᏣᏁᎭ.\nᏃᏯᏃ ᏧᏪᏥ, ᎾᏍᎩ ᏥᏳᎯ ᏧᎾᏣᎢᏎᎢ ᎯᎠ ᎾᏍᎩ ᏎᎻ, ᎭᎻ, ᏤᏈᏛᏃ; ᎭᎻᏃ ᎾᏍᎩ ᎨᎾᏂ ᎤᏙᏓ.\nᎯᎠ ᏦᎢ ᎢᏯᏂᏛ ᏃᏯ ᏧᏪᏥ; ᎾᏍᎩᏃ ᏧᎾᏁᏢᏔᏅᎯ ᎡᎳᏂᎬ ᏚᎾᏁᎳᏗᏙᎴᎢ.\nᏃᏯᏃ ᎿᏉ ᎤᎴᏅᎮ ᏠᎨᏏ ᏧᎸᏫᏍᏓᏁᎯ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᏖᎸᎳᏗ ᏚᏫᏎᎢ;\nᎠᎴ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏗᏔᎮᎢ, ᎠᎴ ᎤᏴᏍᏓᎡᎢ; ᎠᎴ ᎤᏚᏞᏎ ᎦᎵᏦᏛᎢ.\nᎭᎻᏃ, ᎨᎾᏂ ᎤᏙᏓ, ᎤᎪᎮ ᎤᏲᏓᎦ ᎨᏒ ᎤᏙᏓ, ᎠᎴ ᏫᏚᏃᏁᎴ ᎠᏂᏔᎵ ᎠᎾᎵᏅᏟ ᏙᏱᏗᏢ.\nᏎᎻᏃ ᎠᎴ ᏤᏈᏛ ᎠᏄᏬ ᏭᏂᏁᏎᎢ, ᎠᎴ ᎤᎾᏃᎮᏢᏁᎢ, ᎠᎴ ᎤᎾᏏᏅᏎᎢ, ᎠᎴ ᎤᏄᏢᏁ ᎤᏲᏓᎦ ᎨᏒ ᎤᏂᏙᏓ; ᎠᎴ ᎤᏣᏘᏂ ᏭᎾᎦᏖᎢ ᎠᎴ ᎥᏝ ᏳᏂᎪᎮ ᎤᏲᏓᎦ ᎨᏒ ᎤᏂᏙᏓ.\nᏃᏯᏃ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏗᏔᎲ ᎤᏓᏅᏘᏌᏁᎢ, ᎠᎴ ᎠᏥᏃᏁᎴ ᎣᏂ ᎡᎯ ᎤᏪᏥ ᏄᏩᏁᎸᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏥᏍᎦᏨᎯ ᎨᏎᏍᏗ ᎨᎾᏂ; ᎤᏙᎯᏳᏒ ᎬᏩᏅᏏᏓᏍᏗᏉ ᎨᏎᏍᏗ ᎠᎾᎵᏅᏢᎢ.\nᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏎᎻ ᎤᏤᎵᎦ; ᎠᎴ ᎨᎾᏂ ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ.\nᎤᏁᎳᏅᎯ ᏓᏳᏔᏃᎯᏍᏔᏂ ᏤᏈᏛ ᎠᎴ ᏎᎻ ᏚᎵᏦᏛ ᏓᏁᎳᏗᏍᎨᏍᏗ; ᎨᎾᏂᏃ ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ.\nᏃᏯᏃ ᎤᏃᎱᎦᏅ ᎠᏏ ᏦᎢᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ.\nᏃᏯᏃ ᎢᎪᎯᏛ ᎤᎴᏂᏙᎸ ᏐᎣᏁᎳᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ; ᎿᏉ ᎤᏲᎱᏎᎢ.\nᎠᏯᏙᎸᎢ 10\nᏃᏯᏃ ᏧᏪᏥ, ᏎᎻ, ᎭᎻ, ᏤᏈᏛᏃ, ᎤᎾᏁᏢᏔᏅᏒ ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ, ᎾᏍᎩ ᏧᏁᏥ ᎠᏂᏍᎦᏯ ᎬᏩᎾᏕᏁᎴ ᏚᏅᏬᏐᏅ.\nᎯᎠᏃ ᎾᏍᎩ ᏤᏈᏗ ᏧᏪᏥ; ᎪᎹ, ᎠᎴ ᎹᎪᎩ, ᎠᎴ ᎹᏓᏱ, ᎠᎴ ᏤᏆᏂ, ᎠᎴ ᏚᏆᎵ, ᎠᎴ ᎺᏏᎩ, ᎠᎴ ᏔᎳᏏ.\nᎯᎠᏃ ᎾᏍᎩ ᎪᎹ ᏧᏪᏥ; ᎡᏍᎩᎾᏏ, ᎠᎴ ᎵᏆᏗ, ᎠᎴ ᏙᎦᎹ.\nᎯᎠᏃ ᎾᏍᎩ ᏤᏆᏂ ᏧᏪᏥ; ᎢᎳᏌ, ᎠᎴ ᏔᏏᏏ, ᎠᏂᎩᏗ, ᎠᎴ ᎠᏂᏙᏓᏂ.\nᎯᎠ ᎾᏍᎩ, ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏧᎾᏤᎵᎪᎯ ᎠᎹᏰᎵ ᏕᎨᏌᏗᏒ ᏚᏂᏯᏙᎮᎴ ᏧᎾᏤᎵᎪᎯ ᎦᏙᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᏂᏏᏴᏫᎭ ᎤᏠᏱ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᏧᎾᏤᎵᎪᎯ ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎭᎻ ᏧᏪᏥ; ᏓᏏ, ᎠᎴ ᎻᏏᎴᎻ, ᎠᎴ ᏆᏗ, ᎠᎴ ᎨᎾᏂ.\nᎯᎠᏃ ᎾᏍᎩ ᎫᏏ ᏧᏪᏥ; ᏏᏆ, ᎠᎴ ᎭᏈᎳ, ᎠᎴ ᏌᏆᏔ, ᎠᎴ ᎴᎠᎹ, ᎠᎴ ᏌᏗᎦ. ᎯᎠᏃ ᎾᏍᎩ ᎴᎠᎹ ᏧᏪᏥ, ᏥᏆ, ᏗᏓᏂᏃ.\nᎫᏏᏃ ᎤᏪᏥ ᏂᎻᎶᏗ ᎤᏕᏁᎢ; ᎠᎴ ᎾᏍᎩ ᎤᎴᏅᎮ ᎤᎵᏂᎩᏛ ᏄᎵᏍᏔᏁ ᎡᎶᎯ ᎠᏁᎲᎢ.\nᎤᏣᏘ ᎤᏃᎯᎵᏓᏌᏘᏳ ᎨᏎ ᏱᎰᏩ ᎠᎦᏔᎲᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎢᎦᏪᏛ ᏥᎩ; ᎾᏍᎩᏯ ᏂᎻᎶᏗ, ᎤᏣᏘ ᎤᏃᎯᎵᏓᏌᏘᏳ ᏥᎨᏒ ᏱᎰᏩ ᎠᎦᏔᎲᎢ.\nᎠᏓᎴᏂᏍᎬᏃ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎨᏒ ᏓᏗᎶᏂ, ᎠᎴ ᎡᎴᎩ, ᎠᎴ ᎡᎨᏓ, ᎠᎴ ᎧᎴᏂ ᎨᏎᎢ, ᏌᎾ [ᏚᏙᎥ] ᎦᏓ ᎠᎲᏢ.\nᎾᎿᏃ ᎦᏓ ᎠᎲ ᎤᏄᎪᏤ ᎡᏌ, ᎠᎴ ᏂᏂᏫ ᎤᏪᏚᏁᎢ, ᎠᎴ ᎾᏍᏉ ᎵᎰᏉ ᎦᏚᎲ ᎠᎴ ᎨᎳ,\nᎠᎴ ᎴᏏᏂ, ᎾᏍᎩ ᎠᏰᎵ ᏥᎦᏚᎭ ᏂᏂᏫ ᎨᎳᏃ ᏕᎦᏚᎲᎢ; ᎾᏍᎩ ᎡᏉᎯᏳ ᎦᏚᎭ.\nᎻᏏᎴᎻᏃ ᎯᎠ ᎾᏍᎩ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ; ᎠᏂᎷᏗ, ᎠᎴ ᎠᏂᎠᎾᎻ, ᎠᎴ ᎠᏂᎴᎭᏈ, ᎠᎴ ᎠᏂᎾᏚᎯ,\nᎠᎴ ᎠᏂᏆᏚᏏ, ᎠᎴ ᎠᏂᎧᏏᎷᎯ (ᎾᏍᎩ ᎯᎠ ᏨᏧᎾᏓᎴᏁ ᎠᏂᏈᎵᏍᏗ,) ᎠᏂᎦᏙᎵᏃ.\nᎨᎾᏂᏃ ᎤᏪᏥ ᎤᏕᏁᎴ ᏌᏙᏂ ᎢᎬᏱᏱ ᎡᎯ, ᎠᎴ ᎮᏗ,\nᎠᎴ ᎠᏂᏥᎫᏏ, ᎠᎴ ᎠᏂᎡᎼᎵ, ᎠᎴ ᎠᏂᎦᎦᏏ,\nᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᎠᎩ, ᎠᎴ ᎠᏂᏌᏂ,\nᎠᎴ ᎠᏂᎠᏆᏗ, ᎠᎴ ᎠᏂᏏᎹᎵ, ᎠᎴ ᎠᏂᎭᎹᏗ; ᎣᏂᏃ ᎨᎾᏂ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒ ᏚᏂᏰᎵᏏᏙᎴᎢ.\nᎠᏂᎨᎾᏂᏃ ᎠᏟᎶᏛ ᎤᏅᎫᏛᎢ, ᏌᏙᏂ ᎤᏓᎴᏅᏛ ᎨᏒᎩ ᎩᎳ ᏥᏮᎦᏙᎢ, ᎨᏌ ᎢᏯᏍᏗ; ᎾᏍᎩ ᏐᏓᎻ, ᎠᎴ ᎪᎹᎵ, ᎠᎴ ᎠᏗᎹ, ᎠᎴ ᏏᏉᏱᎻ ᏕᎦᏚᎲ ᏥᏮᎦᏙ ᎴᏌ ᏫᎦᎷᎩ.\nᎯᎠ ᎾᏍᎩ ᎭᎻ ᏧᏪᏥ, ᏏᏓᏁᎸᎯᏕᎨᏌᏗᏒ, ᎠᎴ ᎤᏠᏱ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏤᎵ ᎦᏙᎯ ᏕᎨᏌᏗᏒ, ᎠᎴ ᎤᏂᏠᏱ ᎨᏒᎢ.\nᏎᎻᏃ ᎯᏆ ᏧᏪᏥ ᏂᎦᏛ ᎤᏂᎦᏴᎵᎨ ᏥᎩ, ᎾᏍᎩ ᏤᏈᏛ ᎢᎬᏱᏱ ᎡᎯ ᏗᎾᏓᏅᏟ, ᎾᏍᎩ ᎾᏍᏉ ᏧᏪᏥ ᎬᏩᏕᏁᎴᎢ.\n[ᎯᎠᏃ ᎾᏍᎩ] ᏎᎻ ᏧᏪᏥ, ᎢᎳᎻ, ᎠᎴ ᎡᏌ, ᎠᎴ ᎠᏆᏣ, ᎠᎴ ᎳᏗ, ᎠᎴ ᎡᎳᎻ.\n[ᎯᎠᏃ ᎾᏍᎩ] ᎡᎳᎻ ᏧᏪᏥ; ᎠᏏ, ᎠᎴ ᎭᎵ, ᎠᎴ ᎩᏛ, ᎠᎴ ᎹᏏ.\nᎠᏆᏣᏃ ᎤᏪᏥ ᏎᎳ ᎤᏕᏁᎢ; ᏎᎳᏃ ᎤᏪᏥ ᎯᏆ ᎤᏕᏁᎢ.\nᎯᏆᏃ ᏧᏪᏥ ᎠᏂᏔᎵ ᎤᎾᏕᏁᎢ; ᎠᏏᏴᏫ ᏇᎵᎩ ᏚᏙᎡᎢ; ᎾᎯᏳᏰᏃ ᎾᏍᎩ ᏤᎮᎢ ᎦᏙᎯ ᎤᏂᏯᏙᎴᎢ; ᏗᎾᏓᏅᏟᏃ ᎾᏍᎩ ᏦᎧᏔᏂ ᏚᏙᎡᎢ.\nᏦᎧᏔᏂᏃ ᎬᏩᏕᏁᎴ ᎡᎳᎼᏓ, ᎠᎴ ᏏᎴᏈ, ᎠᎴ ᎭᏌᎹᏈ, ᎠᎴ ᏥᎳ,\nᎠᎴ ᎭᏙᎳᎻ, ᎠᎴ ᏳᏌᎵ, ᎠᎴ ᏗᎩᎳ,\nᎠᎴ ᎣᏆᎵ, ᎠᏈᎹᎵ, ᎠᎴ ᏏᏆ,\nᎠᎴ ᎣᏆ, ᎠᎴ ᎭᏆᎳ, ᎠᎴ ᏦᏆ; ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏦᎧᏔᏂ ᏧᏪᏥ ᎨᏎᎢ.\nᎾᏍᎩᏃ ᏓᏂᏁᎴᎢ ᎻᏌ ᎤᏓᎴᏅᏛ ᏎᏆ ᏥᏮᎦᏙ ᎾᏍᎩ ᏗᎧᎸᎬ ᎢᏗᏢ ᏨᏦᏓᎸ.\nᎯᎠ ᎾᏍᎩ ᏎᎻ ᏧᏪᏥ, ᎾᏍᎩ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᎤᏠᏱ ᏗᏂᏬᏂᏍᎩ ᎨᏒᎢ, ᎠᎴ ᏧᎾᏤᎵᎦ ᎦᏙᎯ ᏕᎨᏌᏗᏒᎢ, ᎠᎴ ᎤᏂᏠᏱ ᎨᏒᎢ.\nᎯᎠ ᎾᏍᎩ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒ ᏃᏯ ᏧᏪᏥ ᎾᏍᎩ ᏚᎾᏁᏢᏔᏅᏒᎢ, ᎤᏂᏠᏱ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᏂᏠᏱ ᎨᏒ ᎡᎶᎯ ᏚᎾᏁᎳᏗᏙᎴ ᎠᎹᏱᎭ ᎨᏒ ᏚᏅᏬᏒ\nᎠᏯᏙᎸᎢ 11\nᎠᎴ ᎡᎳᏂᎬ ᏌᏉᏉ ᎨᏎ ᎠᏂᏬᏂᏍᎬ, ᎠᎴ ᎤᏠᏱᏉ ᎨᏎ ᎠᏂᏁᎬᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᎾᎢᏒ ᏗᎧᎸᎬ ᏅᏓᏳᎾᏂᎩᏛ, ᎤᏬᏓᎸ ᎤᏂᏩᏛᏔᏁᎢ ᎾᎿ ᎦᏙᎯ ᏌᎾ ᏚᏙᎥᎢ; ᎠᎴ ᎾᎿ ᏚᏫᏁᎳᏕᎢ.\nᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, Ꭷ, ᏗᏛᏓᏅᎯ ᏗᏙᏢᎾ, ᎠᎴ ᎣᏍᏛ ᏗᏗᏕᏴᏓ. ᏗᏛᏓᏅᎯᏃ ᏅᏯ ᏚᏂᏰᎸᏎᎢ, ᏩᏥᎳᎨᏃ ᏝᏬᏚ ᎤᏂᏰᎸᏎᎢ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, Ꭷ, ᎢᏗᏚᎲᎦ, ᎠᎴ ᎢᏅ ᎢᎦᏘ ᎢᏓᏐᏯᎦ, ᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ ᎦᎸᎳᏗ ᏫᎦᏃᏠᏨᎭ; ᎠᎴ ᏗᎦᏙᏍᏙᏗ ᎢᏙᏢᎾ, ᎡᎶᎯᏰᏃ ᏂᎬᎾᏛ ᏱᏓᏗᎦᎴᏲᎩ.\nᏱᎰᏩᏃ ᎤᏠᎠᏏᎴ ᎤᎦᏔᏂᎴ ᎦᏚᎲ ᎠᎴ ᎢᏅ ᎢᎦᏘ ᎤᎾᏐᏴᎢ, ᎾᏍᎩ ᏴᏫ ᏧᏁᏥ ᏧᎾᏐᏲᎴᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎯᎠ ᏴᏫ ᎤᏂᏠᏱᏉ, ᎠᎴ ᏂᎦᏗᏳ ᎤᏠᏱᏉ ᎠᏂᏬᏂᏍᎬᎢ: ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎤᎾᎴᏅᎭ ᎾᎾᏛᏁᎭ: ᎠᎴ ᎥᏝ ᎿᏉ ᎪᎱᏍᏗ ᎬᏩᏂᏲᏍᏙᏓᏁᏗ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᏧᎾᏓᏅᏖᎸ ᎢᏳᎾᏛᏁᏗᏱ.\nᎧ, ᎢᏓᏠᎠᎯ, ᎠᎴ ᎾᎿ ᏧᏓᎴᏅᏛ ᏫᏂᎨᏛᏂᏏ ᎠᏂᏬᏂᏍᎬᎢ, ᎾᏍᎩ ᏧᎾᏙᎵᏤᏗᏱ ᏂᎨᏒᎾ ᏓᎾᎵᏃᎮᏍᎬᎢ.\nᎾᏍᎩᏃ ᏱᎰᏩ ᏚᏗᎦᎴᏕ ᎡᎶᎯ ᏂᎬᎾᏛ ᎾᎿ ᎤᎾᏓᎴᏁᎢ; ᎠᎴ ᎤᏂᏑᎵᎪᏤ ᎠᏂᏚᎲᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᏓᏓᎶᏂ ᏚᏙᎡᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏱᎰᏩ ᎾᎿ ᏧᏓᎴᏅᏛ ᏂᎦᏩᏁᎸ ᎡᎳᏂᎬ. ᏓᏂᏬᏂᏍᎬᎢ; ᎠᎴ ᎾᎿ ᎤᎾᏓᎴᏅ ᏱᎰᏩ ᏚᏗᎦᎴᏴ ᎡᎶᎯ ᏂᎬᎾᏛᎢ.\nᎯᎠ ᎾᏍᎩ ᏎᎻ ᏧᏁᏢᏔᏅᏛ ᎨᏒᎢ; ᏎᎻ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎿᏉ ᎠᏆᏣ ᎤᏕᏁᎴᎢ, ᏔᎵ ᏫᏄᏕᏘᏴᎲ ᎣᏂ ᎠᎹᏱᎭ ᏥᏄᎵᏍᏔᏁᎢ;\nᏎᎻᏃ ᎠᏆᏣ, ᎤᏕᏁᎸ ᎠᏏ ᎣᏂ ᎯᏍᎩᏧᏈ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᎠᏆᏣᏃ ᏦᎠᏍᎪᎯ ᎯᏍᎩᎦᎵ ᏄᏕᏘᏴᎮ ᎤᎴᏂᏙᎴ ᎿᏉ ᏎᎳ ᎤᏕᏁᎴᎢ.\nᎠᏆᏣᏃ ᏎᎳ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏅᎩᏧᏈ ᏦᎢᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏎᎳᏃ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᎯᏆ ᎤᏕᏁᎴᎢ.\nᏎᎳᏃ ᎯᏆ ᎤᏕᏁᎸ ᎠᏏ ᎣᏂ ᏅᎩᏧᏈ ᏦᎢᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᎯᏆᏃ ᏦᎠᏍᎪᎯ ᏅᎩᎦᎵ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏇᎵᎩ ᎤᏕᏁᎴᎢ.\nᎯᏆᏃ ᏇᎵᎩ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏇᎵᎩᏃ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᎵᏳ ᎤᏕᏁᎴᎢ;\nᏇᎵᎩᏃ ᎵᏳ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ, ᏔᎵᏧᏈ ᏐᎣᏁᎳᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᎵᏳᏃ ᏦᎠᏍᎪᎯ ᏔᎵ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏎᎳᎩ ᎤᏕᏁᎴᎢ.\nᎵᏳᏃ ᏎᎳᎩ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏔᎵᏧᏈ ᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪ-ᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏎᎳᎩᏃ ᏦᎠᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏁᎰ ᎤᏕᏁᎴᎢ;\nᏎᎳᎩᏃ ᏁᎰ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᏔᎵᏧᏈ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏁᎰᏃ ᏐᎣᏁᎳᏦᏁ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᏕᎳ ᎤᏕᏁᎴᎢ;\nᏁᎰᏃ ᏕᎳ ᎤᏕᏁᎸ, ᎠᏏ ᎣᏂ ᎠᏍᎪᎯᏧᏈ ᏐᎣᏁᎳᏚ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᏧᏪᏥᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᎬᏩᏕᏁᎴᎢ.\nᏕᎳᏃ ᎦᎵᏆᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ, ᎿᏉ ᎡᏆᎻ, ᏁᎰ, ᎮᎳᏂᏃ Ꭼ ᏩᏕᏁᎴᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏕᎳ ᏧᏁᏢᏔᏅᏒᎢ; ᏕᎳ ᎡᏆᎻ, ᏁᎰ, ᎠᎴ ᎮᎳᏂ ᎬᏩᏕᏁᎴᎢ; ᎮᎳᏂᏃ ᎶᏗ ᎤᏕᏁᎴᎢ.\nᎮᎳᏂᏃ ᎤᏲᎱᏎ. ᎠᎦᏔᎲ ᎤᏙᏓ ᏕᎳ ᎾᎿᏉ ᎤᏕᏅᎢ, ᎥᎵ ᏚᏙᎥ ᎠᏂᎨᎳᏗ ᎤᎾᏤᎵᎪᎯ.\nᎡᏆᎻᏃ ᎠᎴ ᏁᎰ ᏚᎾᏕᏒᏁᎢ; ᎡᏆᎻ ᎤᏓᎵᎢ ᏎᎳᏱ ᏚᏙᎡᎢ; ᏁᎰᏃ ᎤᏓᎵᎢ ᎻᎵᎧ ᏚᏙᎡᎢ, ᏐᎳᏂ ᎤᏪᏥ ᎨᏎᎢ, ᎾᏍᎩ ᎮᎳᏂ, ᎻᎵᎧ ᎤᏙᏓ ᎠᎴ ᎢᏍᎧ ᎤᏙᏓ.\nᎠᏎᏃ ᏎᎳᏱ ᏂᏓᎷᎸᎥᏍᎬᎾ ᎨᏎᎢ; ᎥᏝ ᎤᏪᏥ ᏰᎮᎢ.\nᏕᎳᏃ ᏚᏘᏅᏎ ᎤᏪᏥ ᎡᏆᎻ, ᎠᎴ ᎶᏗ ᎾᏍᎩ ᎮᎳᏂ ᎤᏪᏥ, ᎾᏍᎩᏉ ᎤᏪᏥ ᎤᏪᏥ, ᎠᎴ ᏎᎳᏱ ᎤᏦᎯᏉ, ᎤᏪᏥᏉ ᎡᏆᎻ ᎤᏓᎵᎢ, ᎾᏍᎩᏃ ᎤᎾᏂᎩᏎ ᎥᎵ ᏚᏙᎥ ᎨᎳᏗ ᎤᎾᏤᎵᎪᎯ, ᎨᎾᏂ ᎦᏙᎯ ᏭᏂᎶᎯᏍᏗᏱ, ᎮᎳᏂᏃ ᏭᏂᎷᏤᎢ, ᎠᎴ ᎾᎿ ᎤᎾᏕᏁᎢ.\nᏕᎳᏃ ᏔᎵᏧᏈ ᎯᏍᎩᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ:; ᏕᎳᏃ ᎮᎳᏂᏱ ᎤᏲᎱᏎᎢ.\nᎠᏯᏙᎸᎢ 12\nᏱᎰᏩᏰᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏎ ᎡᏆᎻ, ᎯᏄᎪᎢ ᏣᏤᎵᎪᎯ ᎨᏒᎢ, ᎠᎴ ᏣᎪᏏ ᎨᏒ ᎩᏯᏓᏅᏏ, ᎠᎴ ᏣᏙᏓ ᎦᏁᎸ ᎭᏓᏅᎾ, ᎾᎿ ᏨᏓᎬᏯᏎᎮᎵ ᎦᏓ ᏗᎲ ᏫᎷᎩ;\nᏂᎯᏃ ᏣᏁᏢᏔᏅᎯ ᎡᏉᎯᏳ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏅᏓᎦᏥᏴᏁᎵ, ᎠᎴ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᏚᏣᏙᎥ ᎡᏉᎯᏳ ᏅᏓᎬᏴᏁᎵ; ᎠᎴ ᏂᎯ ᎣᏍᏛ ᎢᎩᏴᏁᎯ ᎨᏎᏍᏗ ᏴᏫ.\nᎠᎴ ᎣᏍᏛ ᏓᎦᏥᏁᎢᏍᏔᏂ ᎣᏍᏛ ᎨᏣᏁᎢᏍᏗᏍᎩ, ᎠᎴ ᎤᏲ ᏅᏓᏥᏪᏎᎵ ᎤᏲ ᎢᏣᏪᏎᎯ; ᏂᎯᏃ ᏅᏛᏂᏌᏂ ᏂᎦᏛ ᏴᏫ ᏓᏁᏩᏗᏒ ᎡᎳᏂᎬ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ.\nᎡᏆᎻᏃ ᎤᏂᎩᏎ ᎾᏍᎩᏯ ᏱᎰᏩ ᎤᏁᏤᎸᎢ; ᎠᎴ ᎶᏗ ᎤᏁᏅᏎᎢ; ᎡᏆᎻᏃ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎾᎯᏳ ᎮᎳᏂ ᏧᏂᎩᏒ.\nᎡᏆᎻᏃ ᏎᎳᏱ ᎤᏓᎵᎢ ᎤᏘᏅᏎᎢ, ᎠᎴ ᎶᏗ ᎤᏅᏟ ᎤᏪᏥ, ᎠᎴ ᏂᎦᏛ ᎤᏂᏰᏐᏁ ᏧᎬᏩᎶᏗ ᎤᏂᏟᏌᏅᎢ, ᎠᎴ ᏂᎦᏛ ᏴᏫ ᏚᏂᏩᏛᎲ ᎮᎳᏂ; ᎠᎴ ᏅᎾᏂᎩᏎ ᎨᎾᏂ ᎦᏓ ᏗᎲ ᏩᏂᎦᏖᎢ; ᎠᎴ ᎨᎾᏂ ᎦᏓ ᏗᎲ ᏭᏂᎷᎮᎢ.\nᎡᏆᎻᏃ ᎤᎶᏎ ᎾᎿ ᎦᏓ ᎠᎲ ᏭᎷᏤ ᏏᎩᎻ, ᎠᏓᏯᏡᎬ ᎼᎴ ᏧᏙᎢᏛ. ᎠᏂᎨᎾᏂᏃ ᎾᎿ ᎦᏓ ᎠᎲ ᏂᎯᏳ ᎠᏁᎮᎢ.\nᏱᎰᏩᏃ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎡᏆᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᏣᏁᏢᏔᏅᏒ ᏓᎦᏥᏁᎵ ᎯᎠ ᎦᏙᎯ; ᎾᎿᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏁᏍᎨᎴ ᏱᎰᏩ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏄᏛᏁᎴᎢ.\nᎠᎴ ᎾᎿ ᎤᏓᏅᏎᎢ ᎣᏓᎸ ᏇᏕᎵ ᏗᎧᎸᎬ ᎢᏗᏢ ᏭᎷᏤᎢ, ᎠᎴ ᎤᎵᏦᏔᏁᎢ, ᏇᏕᎵᏃ ᏭᏕᎵᎬ ᎢᏗᏢ ᎨᏎᎢ, ᎠᏱᏃ ᏗᎧᎸᎬ ᎢᏗᏢ; ᎾᎿᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏁᏍᎨᎴ ᏱᎰᏩ, ᎠᎴ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴ ᏚᏙᎥ ᎤᏁᎢᏍᏔᏁᎢ.\nᎡᏆᎻᏃ ᎤᏂᎩᏎᎢ, ᏧᎦᎾᏮ ᎢᏗᏢ ᏚᏭᎪᏗᏗᏎᎢ.\nᎾᎿᏃ ᎦᏙᎯ ᏚᎪᏄᎶᏎᎢ; ᎡᏆᎻᏃ ᎢᏥᏈᏱ ᏭᎶᏎᎢ ᎤᏪᏙᎸᏎ ᎾᎿᏂ; ᎤᏣᏘᏰᏃ ᏓᎪᏄᎴ ᎾᎿ ᎦᏙᎯ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎤᎷᏥᏗᏎ ᎢᏥᏈᏱ, ᎯᎠ ᎾᏍᎩ ᏄᏪᏎᎴ ᏎᎳᏱ ᎤᏓᎵᎢ, Ꭷ, ᎬᏂᏳᏉ ᏥᎦᏔᎭ ᏦᏚᎯᏳ ᎨᏒ ᎯᎨᏴ ᏤᏣᎧᏃᏗᏱ;\nᎾᏍᎩᏃ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎿᏉ ᎢᏥᏈᏱ ᎠᏁᎯ ᎨᏣᎪᎲᎭ, ᎯᎠ ᏅᏛᏂᏪᏏ, ᎯᎠᎧᏂ ᎤᏓᎵᎢ; ᎠᏴᏃ ᎠᏎ ᏓᎬᎩᎵ, ᏂᎯᏍᎩᏂ ᎲᏅ ᏛᏂᏍᏆᏂᎪᏔᏂ.\nᎧ, ᎯᎠᏉ ᏂᏪᏒᎭ; ᎥᎩᏙᏉ ᎭᏛᏅᎭ; ᎾᏍᎩᏃ ᎣᏍᏛ ᎢᎬᏆᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏂᎯ ᏂᎦᎵᏍᏙᏔᏅᎭ; ᎠᏆᎵᏅᏙᏃ ᎬᏁᏍᏗ ᏂᎯ ᎢᏨᏂᏌᏛ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏆᎻ ᎿᏉ ᎢᏥᏈᏱ ᏭᎷᏨ, ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᎨᏴ ᎤᏂᎪᎲᎩ ᎤᏣᏘ ᎤᏬᏚᎯᏳ ᎨᏒᎢ.\nᏄᏂᎬᏫᏳᏒᏃ ᎾᏍᏉ ᏇᎵᏲ ᏧᏤᎵᎦ ᎬᏩᎪᎮᎢ, ᎠᎴ ᎬᏩᎸᏉᏔᏁ ᏇᎵᏲ ᎠᎦᏔᎲᎢ; ᎠᎨᏴᏃ ᏇᎵᏲ ᎦᏁᎸ ᏩᎦᏘᏅᏍᏔᏁᎢ.\nᏇᎵᏲᏃ ᎣᏍᏛ ᎤᏍᏆᏂᎪᏕ ᎡᏆᎻ ᎾᏍᎩ ᎠᎨᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ; ᎠᏫᏃ ᎠᎴ ᏩᎦ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ ᎠᏂᎲᏯ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ ᎠᏂᎩᏴ, ᎠᎴ ᎨᎻᎵ, ᏕᎤᏪᎧᎮᎢ.\nᏱᎰᏩᏃ ᎤᏕᏯᏙᏔᏁ ᏇᎵᏲ ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᎤᏣᏘ ᎤᏕᏯᏙᏗ ᎤᏮᏔᏁᎢ, ᎤᏗᎦᎵᏍᏙᏗᏍᎨ ᏎᎳᏱ ᎡᏆᎻ ᎤᏓᎵᎢ.\nᏇᎵᏲᏃ ᏭᏯᏅᎮ ᎡᏆᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᎦᏛᎦ ᎯᎠ ᏥᏂᏍᏋᎦ? ᎦᏙᏃ Ꮭ ᏱᏍᎩᏃᏁᎴ ᏣᏓᎵᎢ ᎨᏒᎢ?\nᎦᏙᏃ ᎥᎩᏙᏉ ᎥᏣᏛᏅᎩ? ᏱᏂᎬᏆᏓᏴᏎᏰᏃ; Ꭷ, ᎬᏂᏳᏉ Ꮎ ᏣᏓᎵᎢ ᏥᎯᏯᏅ, ᎠᎴ ᏥᎭᏂᎩ.\nᏇᎵᏲᏃ ᏚᏁᏤᎴ ᏧᏤᎵ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏚᏁᎢᏍᏓᏁᎴᎢ; ᎠᎴ ᎾᏍᎩ ᎢᎬᏩᏂᎩᏍᏔᏁ ᎤᏩᏒ ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ, ᎠᎴ ᏂᎦᏛ ᏧᏤᎵᎦ.\nᎠᏯᏙᎸᎢ 13\nᎡᏆᎻᏃ ᎤᏂᎩᏎ ᎢᏥᏈᏱ, ᎤᏩᏒ, ᎠᎴ ᎾᏍᎩ ᎤᏓᎵᎢ, ᎠᎴ ᏂᎦᏛ ᏚᏓᏘᎾᎥᎢ. ᎠᎴ ᎶᏗ ᎾᏍᏉ ᎤᏁᏅᏎᎢ, ᏧᎦᎾᏮ ᎢᏗᏢ [ᎠᏂᎨᎾᏂ ᎤᎾᏤᎵᎪᎯ] ᏭᏂᎶᏎᎢ.\nᎡᏆᎻᏃ ᎤᏣᏘ ᎤᏪᎿᎢᏳ ᎨᏎᎢ ᎦᎾᏝᎢ ᎨᏒ ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨᎢ.\nᏕᎠᏂᎩᏎᎨᏃ ᏧᎦᎾᏮ ᏅᏓᏳᏪᏅᏛ ᏇᏕᎵ ᎢᏴᏛ, ᎾᎿ ᎢᎬᏱᏱ ᎤᎵᏦᏔᏅᎢ, ᏇᏕᎵ ᎠᎴ ᎠᏱ ᎾᎿ ᎠᏰᎵ ᎨᏒᎢ;\nᎾᎿ ᎤᏪᎧᏅ ᎠᏏᎸ-ᎨᎳᏍᏗᏱ, ᎾᏍᎩ ᏗᏓᎴᏂᏍᎬ ᎤᏬᏢᏅᎢ; ᎡᏆᎻᏃ ᎾᎿ ᏱᎰᏩ ᏚᏙᎥ ᎤᏁᎢᏍᏔᏁ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ.\nᎶᏗᏃ ᎾᏍᏉ, ᎡᏆᎻ ᏧᏁᏅᏎᎢ, ᎠᏫ, ᎠᎴ ᎦᎾᏝᎢ ᏓᏘᏁᎮᎢ, ᎠᎴ ᏗᎦᎵᏦᏙᏗ ᏕᎦᏁᎮᎢ.\nᎦᏙᎯᏃ ᎥᏝ ᏰᎵ ᏱᏂᎨᏎ ᎾᎿ ᎢᏧᎳᎭ ᎤᎾᏕᏗᏱ; ᎤᏣᏘᏰᏃ ᏧᎬᏩᎶᏗ ᎤᏂᏍᏆᏂᎪᏕᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏰᎵ ᎢᏧᎳᎭ ᎬᏩᎾᏕᏗ ᏱᎨᏎᎢ.\nᎠᎴ ᏓᎾᏘᏲᎯᎮ ᎡᏆᏂ ᎦᎾᏝᎢ ᏗᎬᏩᎦᏘᏕᎯ, ᎠᎴ ᎶᏗ ᎦᎾᏝᎢ ᏗᎬᏩᎦᏘᏕᎯ; ᎠᏂᎨᎾᏂᏃ ᎠᎴ ᎠᏂᏇᎵᏏ ᎾᎿ ᎾᎯᏳ ᎾᏁᎮᎢ.\nᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎶᏗ, ᏞᏍᏗᏉ ᎩᎾᏘᏲᏄᎩ ᎠᏴ, ᎠᎴ ᎦᎾᏝᎢ ᏗᎨᎩᏂᎦᏘᏕᎯ ᏞᏍᏗ ᎤᎾᏘᏲᎸᎩ; ᏗᎾᏓᏅᏟᏉᏰᏃ.\nᏝᏍᎪ ᏂᎬ ᎦᏙᎯ ᏱᏣᏜᏅᏓᏕᎭ ᏂᎯ7 Ꭷ, ᎭᏓᏓᎴᏓᏉᏃ ᎠᏂ ᎨᎥᎢ. ᎢᏳᏃ ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᏱᏂᏣᏛᏁᏔᏅ, ᎠᏏ ᎠᎦᏘᏏ ᎢᏗᏢ ᏱᏫᏂᎦᏛᏁᏓ; ᎢᏳ ᎠᎴ ᏓᎦᏘᏏ ᎢᏗᏢ ᏱᏫᏣᎶᏒ, ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᏱᏫᏥᎶᎢ ᎠᏴ.\nᎶᏗᏃ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎤᎪᎮ ᏂᎦᏛ ᎤᏬᏓᎸ ᏦᏓᏂ, ᎾᏍᎩ ᏂᎬᎾᏛ ᏦᏏᏳ ᏕᏅᏪᏰᎢ, ᎾᏍᎩ ᎠᏏ ᏱᎰᏩ ᏂᏓᏲᏍᏗᏍᎬᎾ ᏥᎨᏎ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ, ᎾᏍᎩᏯ ᏱᎰᏩ ᎤᏫᏒᏅᎢ, ᎠᎴ ᎢᏥᏈᏱ ᎾᏍᎩᏯᎢ ᎠᏐᏩ ᏥᏮᎦᏙᎢ.\nᎶᏗᏃ ᎤᏑᏰᏎ ᏂᎦᏛ ᎦᏙᎯ ᏦᏓᏂ ᎾᎥᎢ; ᎠᎴ ᎶᏗ ᏗᎧᎸᎬ ᎢᏗᏢ ᏭᏂᎩᏍᏔᏁᎢ; ᎠᎴ ᏚᎾᎦᎴᏅᎮᎢ.\nᎡᏆᎻ ᎨᎾᏂ ᎡᎮᎢ, ᎶᏗᏃ ᎤᏬᏓᎸ ᏕᎦᏚᎲ ᎡᎮᎢ, ᎠᎴ ᏐᏓᎻ ᎢᏗᏢ ᏫᏚᎦᏖ ᏚᎵᏦᏛᎢ.\nᏐᏓᎻᏃ ᎠᏁᎯ ᎤᏂᏁᎫᎯᏳ ᎨᏎᎢ, ᎠᎴ ᎤᏣᏘ ᎠᏂᏍᎦᎾᎯᏳ ᎨᏎ ᏱᎰᏩ ᎠᎦᏔᎲᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᎾᏍᎩ ᎦᏳᎳ ᎿᏉ ᎶᏗ ᏂᏚᎾᎦᎴᏅᎨᎢ, Ꭷ, ᏔᎧᏅᎦ ᎾᎿ ᎯᏙᎬ ᎭᎴᏅ, ᎯᎦᏖᎾᎦ ᏧᏴᏢ ᎢᏗᏢ ᎠᎴ ᏧᎦᎾᏮ ᎢᏗᏢ, ᎠᎴ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎠᎴ ᏭᏕᎵᎬ ᎢᏗᏢ;\nᏂᎦᏛᏰᏃ ᎦᏙᎯ ᏥᎪᏩᏗᎭ, ᏂᎯ ᏓᎬᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ, ᏂᎪᎯᎸ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎪᏍᏚ ᏥᏄᏧᏈᏍᏗ ᎦᏙᎯ ᎾᏍᎩᏯ ᏅᏓᎦᏥᏴᏁᎵ; ᎾᏍᎩᏃ ᏴᏫ ᎢᏳᏃ ᎬᏩᏎᎰᎲᏍᏗ ᎨᏎᏍᏗ ᎪᏍᏚ ᎦᏙᎯ ᎦᎳᎨᏴᎢ, ᎿᏉ ᎾᏍᏉ ᏰᎵ ᏗᎬᏎᎰᎲᏍᏗ ᎨᏎᏍᏗ ᏣᏁᏢᏔᏅᏛ ᎨᏒᎢ.\nᏔᎴᎲᎦ, ᎮᏓ ᏂᎦᏅᎯᏒ ᎠᎴ ᎾᏯᏛᎥ ᎯᎠ ᎦᏙᎯ; ᏂᎯᏰᏃ ᏓᎬᏁᎵ.\nᎡᏆᎻᏃ ᎤᎲᏎ ᎤᎵᏦᏛᎢ ᎠᎴ ᎠᏓᏯᏕᏡᎬᎢ ᎹᎻᎵ ᏧᏤᎵᎦ ᏭᏕᏂᎴᎢ, ᎾᏍᎩ ᎯᏆᏂ ᏥᏚᏙᎥ, ᎠᎴ ᎾᎿ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏁᏍᎨᎮᎴ ᏱᎰᏩ.\nᎠᏯᏙᎸᎢ 14\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᏣᏁᎮ ᎠᎻᎴᏇᎵ ᎤᎬᏫᏳᎯ ᏌᎾ ᏚᏙᎥᎢ, ᎡᎵᏲᎩ ᎤᎬᏫᏳᎯ ᎡᎳᏌ ᏚᏙᎥᎢ, ᎩᏓᎴᎣᎹ ᎤᎬᏫᏳᎯ ᎢᎳᎻ ᏚᏙᎥᎢ, ᎠᎴ ᏔᏓᎵ ᎤᎬᏫᏳᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎦ;\nᎾᏍᎩ ᎯᎠ ᏓᎿᏩ ᏄᏅᏁᎴ ᏈᎳ ᎤᎬᏫᏳᎯ ᏐᏓᎻ, ᎠᎴ ᏆᏌ ᎤᎬᏫᏳᎯ ᎪᎹᎵ, ᎠᎴ ᏂᎾᏈ ᎤᎬᏫᏳᎯ ᎠᏓᎹ, ᎠᎴ ᏎᎻᏆ ᎤᎬᏫᏳᎯ ᏤᏉᎻ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏈᎳ ᏚᏙᎥ ᎾᏍᎩ ᏐᏩ ᏥᎩ.\nᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎤᎾᎵᎪᏁ ᏏᏗᎻᏱ ᎤᎨᏓᎵᏴᎢ, ᎾᏍᎩ ‾ᎠᎹ ᎥᏓᎸ ᏥᎩ.\nᏔᎳᏚ ᏧᏕᏘᏴᏛ ᎩᏓᎴᎣᎹ ᏚᎾᏁᎶᏕᎢ, ᏦᎢᎦᏚᏏᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᏚᏂᎦᏘᎸᏎᎢ.\nᏂᎦᏚᏏᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ, ᎤᏂᎷᏤ ᎩᏓᎴᎣᎹ ᎠᎴ ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᏧᎾᎵᎪᏎᎢ, ᎠᎴ ᏚᏂᏎᎪᎩᏎ ᎠᏂᎵᏇ ᎾᎿ ᎠᏍᏘᎶᏗ-ᎧᎾᎻ ᏚᏙᎥᎢ, ᎠᎴ ᎠᏂᏑᏏ ᎾᎿ ᎭᎻ ᏚᏙᎥᎢ, ᎠᎴ ᎠᏂᎢᎻ ᎾᎿ ᏌᏈ-ᎩᎵᏯᏕᎻ ᎦᏙᎥᎢ,\nᎠᎴ ᎠᏂᎰᎳ ᎾᎿ ᎣᏓᎸ ᎤᎾᏤᎵ ᏏᎠ ᎦᏙᎥᎢ ᏫᎬᏍᏗ ᎡᎵ-ᏆᎳ, ᎾᏍᎩ ᎢᎾᎨ ᎾᎥ ᏥᎩ.\nᎢᎤᎾᏨᏎᏃ ᎠᎴ ᏗᏧᎪᏙᏗᏱ-ᎦᏄᎪᎬᎢ ᏗᎤᏂᎷᏤᎢ, ᎾᏍᎩ ᎨᏗᏏ ᏥᏚᏙᎥ, ᎠᎴ ᏚᏂᏎᎪᎩᏎ ᏂᎬᎾᏛ ᎠᏂᎠᎹᎴᎩ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎡᎼᎵ ᎾᏍᎩ ᎭᏏᏐᎥᏓᎹ ᏣᏁᎮᎢ.\nᎿᏉᏃ ᎤᏁᏅᏎ ᏐᏓᎻᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎪᎹᎵᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎠᏓᎹᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏤᏉᎻᏱ ᎤᎬᏫᏳᎯ, ᎠᎴ ᎤᎬᏫᏳᎯ ᏈᎳ ᏚᏙᎥᎢ, ᎾᏍᎩ ᏐᏩ ᏥᏚᏙᎥ; ᎾᎿᏃ ᏏᏗᎻ ᎤᎨᏓᎵᏴᎢ ᏚᎾᏟᏴᎮᎢ,\nᎾᏍᎩ ᏱᏓᎴᎣᎹ ᎤᎬᏫᏳᎯ ᎢᎳᎻ ᏚᎾᏟᏴᎮᎢ, ᎠᎴ ᏔᏓᎵ ᎤᎬᏫᏳᎯ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᎾᏤᎵᎦ, ᎠᎴ ᎠᎻᎴᏇᎵ ᎤᎬᏫᏳᎯ ᏌᎾ ᏚᏙᎥᎢ, ᎠᎴ ᎡᎵᏲᎩ ᎤᎬᏫᏳᎯ ᎡᎳᏌ ᏚᏙᎥᎢ; ᏅᎩ ᎢᏯᏂᏛ ᎤᏂᎬᏫᏳᎯ ᎠᏂᏗᏢᏃ ᎯᏍᎩ.\nᎤᎨᏓᎵᏰᏃ ᏏᏗᎻ ᎤᎧᎵᏨᎯ ᎨᏎ ᏓᏔᎴᏒ ᏩᏥᎳᎨ ᎤᏂᎴᏍᏗᏱ; ᎤᏂᎬᏫᏳᎯᏃ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ ᎠᏁᎯ ᎤᎾᎵᏎᎢ, ᎠᎴ ᎾᎿ ᏚᏂᎸᏤᎢ; ᎤᎾᎵᏃᎯᏴᎯᏃ ᏦᏓᎸ ᏭᎾᎵᏍᏔᏁᎢ.\nᎠᎴ ᏂᎦᏛ ᏧᎬᏩᎶᏗ ᏚᏂᏬᏅᎰᏁ ᏐᏓᎻᏱ ᎠᎴ ᎪᎹᎵᏱ, ᎠᎴ ᏂᎦᏛ ᎤᎾᎵᏍᏓᏴᏗ, ᎢᎤᏁᏅᏎᏃ.\nᎠᎴ ᎶᏗ ᎤᏂᏂᏴᎮᎢ, ᎾᏍᎩ ᎡᏆᎻ ᏗᎾᏓᏅᏟ ᎤᏪᏥ, ᎾᏍᎩ ᏐᏓᎻᏱ ᏤᎮᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᎲ ᎤᏂᎩᏎᎢ, ᎤᎾᏂᎩᏎᏃ.\nᎠᏏᏴᏫᏃ ᎤᏓᏗᏫᏎᎸᎯ ᎤᎷᏤᎢ ᎠᎴ ᎤᏃᏁᎴ ᎡᏆᎻ ᎠᏈᎷ; ᎾᏍᎩᏰᏃ ᎠᏓᏯ-ᏕᏡᎥ ᎡᎥᎢ ᎹᎻᎵ ᎾᏍᎩ ᎡᎼᎵ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎡᏍᎪᎵ ᎠᎴ ᎡᎾ ᎠᎾᎵᏅᏟ ᏥᎨᏎᎢ; ᎾᏍᎩᏃ ᎯᎠ ᎤᎾᎵᎪᏎ ᎡᏆᎻ.\nᎡᏆᎻᏃ ᎤᏛᎦᏅ ᎤᏫᏅ ᎠᏥᏴᎩᏅᎢ, ᎤᎾᎵᏍᎦᏍᏙᏗ ᏚᏁᎴ [ᏧᏅᏏᏓᏍᏗ] ᏧᏪᏲᏅᎯ, ᎦᏁᎸᏉ ᏧᎾᏛᏒᎯ, ᏦᎢᏧᏈ ᏁᎳᏚᏃ ᎢᏯᏂᏛ, ᎠᎴ ᏚᎨᎲᏎ ᏕᏂᏱ ᎢᏴᏛ.\nᏔᎵᏃ ᏄᎾᏓᏕ ᎤᏩᏒ ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᏒᏃᏱ ᎨᏒᎢ, ᎠᎴ ᏚᏂᏎᎪᎩᏎᎢ, ᎠᎴ ᏚᏂᎨᎥᏎ ᎰᏆ ᎢᏴᏛ, ᎾᏍᎩ ᏕᎹᏍᎦ ᎠᎦᏍᎦᏂ ᎢᏗᏢ ᏥᏫᏚᏳᎪᏗ.\nᎠᎴ ᎢᎤᏲᎸᏁ ᏂᎦᏛ ᏧᎬᏩᎶᏗ, ᎠᎴ ᎾᏍᏉ ᎶᏗ ᎤᏫᏅ ᎢᎤᏘᏃᎴᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏧᎬᏩᎶᏗ, ᎠᎴ ᎾᏍᏉ ᎠᏂᎨᏴ, ᎠᎴ ᏴᏫ ᏚᏘᏃᎴᎢ.\nᎤᎬᏫᏳᎯᏃ ᏐᏓᎻᏱ ᏚᏠᏒᏎ, ᏅᏛᎤᏨᏛ ᎾᏍᎩ ᏫᏚᎰᏅᎯ ᎩᏓᎴᎣᎹ ᏓᏘᏁᎲᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏂᎬᏫᏳᎯ ᎤᏁᏙᎸᎯ, ᎾᎿ ᏌᏇ ᎤᎨᏓᎵᏴᎢ, ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᎤᏤᎵ ᎤᎨᏓᎵᏴ ᏥᎩ.\nᎺᎵᎩᏌᏕᎩᏃ ᎤᎬᏫᏳᎯ ᏎᎳᎻᏱ ᎤᏲᎴ ᏭᏚ ᎠᎴ ᎩᎦᎨ ᎠᏗᏔᏍᏗ; [ᎺᎵᎩᏌᏕᎩᏃ] ᎠᏥᎸᎨᎶᎯ ᎨᏎᎢ, ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᏤᎵᎦ.\nᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎤᏁᎳᏅᎯ, ᎣᏍᏛ ᎢᏳᏛᏁᏗ ᎨᏎᏍᏗ ᎡᏆᎻ, ᎾᏍᎩ ᏧᏤᎵᎦ ᏥᎩ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ.\nᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ ᎾᏍᎩ ᏥᏣᎵᏍᎪᎸᏓᏏ ᏘᏎᎪᎩᏍᏗᏱ ᎨᏣᏍᎦᎩ. ᎤᏁᎸᏁᏃ ᏂᎦᏛ ᏧᎬᏩᎶᏗ [ᎤᏓᏬᏅᏛ ᎠᏰᎲᎢ] ᎠᏍᎪᎯᏁ ᎪᎶᎴᏛ.\nᎤᎬᏫᏳᎯᏃ ᏐᏓᎻᏱ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᏴᏫᏉ ᎠᏴ ᏗᏍᎩᏲᎯᏏ, ᏂᎯᏃ ᏧᎬᏩᎶᏗ ᎯᎩᏐᎾ.\nᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᎯ ᏐᏓᎻᏱ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏩᏍᏛ ᎦᎸᎳᏗ ᎡᎯ, ᎾᏍᎩ ᎤᏤᎵᎦ ᏥᎩ ᎦᎸᎶᎢ ᎠᎴ ᎡᎶᎯ, ᏥᏯᏎᎵᏓᏁᎸ,\nᎾᏍᎩ ᎠᎩᎩᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏍᏘᏉ, ᎠᎴ ᎠᎳᏑᎶ ᎪᎸᏌᏛᏗ, ᎠᎴ ᎪᎱᏍᏗ ᏣᏤᎵ ᎨᏒ ᎠᎢᎩᏍᏗᏱ ᏂᎨᏒᎾ, ᎯᎠᏰᏃ ᏱᏅᎯᏫ, ᎠᏆᎻ ᏥᏰᏅᎢᏍᏔᏅ;\nᎯᎠᏍᎩᏂᏃᏅ ᎤᏩᏒ ᎾᏍᎩ ᎠᏂᏫᏅ ᎤᎾᎵᏍᏓᏴᏔᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎾᏍᏉ ᎠᏂᏍᎦᏯ ᎣᎨᏅᏛ, ᎾᏍᎩ ᎡᎾ, ᎡᏍᎪᎵ, ᎠᎴ ᎹᎻᎵ; ᎾᏍᎩ ᏩᏂᎩ ᎤᏂᎩᏍᏗ ᎨᏒ ᎢᎦᎢ.\nᎠᏯᏙᎸᎢ 15\nᎯᎠᏃ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ ᏱᎰᏩ ᎤᏁᏨᎯ ᎤᎷᏤᎴ ᎡᏆᎻ ᎤᏁᎳᏫᏎᎲᎢ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏞᏍᏗ ᏱᎾᏰᏍᎨᏍᏗ ᎡᏆᎻ; ᎠᏴᏰᏃ ᏣᎬᏑᎶᏙᏗ ᎠᎴ ᎤᏣᏔᏅᎯ ᎡᏣᎫᏴᏓᏁᏗ ᏥᎩ.\nᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᏣᏁᎳᏅᎯ, ᎦᏙ ᏓᏍᎩᏁᎵ, ᎬᏂᏳᏰᏃ ᎠᏇᏥ ᎥᏝ ᏰᎭ, ᎠᎴ ᎯᎠ ᎢᎵᎡᏌ ᏕᎹᏍᎦ ᎡᎯ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎢᎩ ᏥᏁᎸᎢ.\nᎡᏆᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏴ ᎨᏒ ᎥᏝ ᎠᏇᏥ ᏱᏍᎩᎧᏁᎸ; ᎠᎴ ᎬᏂᏳᏉ ᏥᏁᎸ ᎤᏕᏅᎯ ᏓᏳᏘᏯᏍᏓᏁᎵ ᎠᎩᎾᎥᎢ.\nᎠᎴ ᎬᏂᏳᏉ, ᏱᎰᏩ ᎤᏁᎲᎯ ᎤᎷᏤᎴ ᎡᏆᎻ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎥᏝᏍᎩᏃ ᎯᎠ ᎾᏍᎩ ᎤᏘᏯᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᏣᎾᎥᎢ; ᏨᏎᏍᎩᏂ ᎯᏰᎸ ᏅᏓᏳᏓᎴᏅᎯ ᎤᏘᏯᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏣᎾᎥᎢ.\nᏙᏱᏃ ᏭᏘᏅᏍᏔᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎸᎳᏗ ᎢᏗᏢ ᏫᏔᎧᏅᎦ, ᎠᎴ ᏔᏎᎦ ᏃᏈᏏ, ᎢᏳᏃ ᏰᎵ ᏗᎨᏣᏎᎰᎲᏍᏗ ᎨᏎᏍᏗ; ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎾᏍᎩᏯᏍᎩᏂ ᏄᏂᏧᏈᏍᏕᏍᏗ ᏣᏁᏢᏔᏅᎯ.\nᎡᏆᎻᏃ ᎤᏬᎯᏳᏁ ᏱᎰᏩ; ᎾᏍᎩᏃ ᏚᏳᎪᏛ ᏥᏄᏛᏁᎶ ᎤᏰᎸᎾᏁᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏱᎰᏩ ᎥᎵ ᎠᏂᎨᎳᏗ ᎤᎾᏤᎵᎪᎯ ᏅᏓᎬᏄᎪᏫᏒᎯ, ᎯᎠ ᎾᏍᎩ ᎦᏙᎯ ᎬᏁᏗᏱ ᏣᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ ᏱᎰᏩ, ᎦᏙ ᏓᎦᎴᎣᎯᏍᏔᏂ ᎯᎠ ᎾᏍᎩ ᎠᏆᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ?\nᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᏫᏗᏍᎩᏯᏅᏏ ᏩᎦ ᎠᎩᏏ ᏦᎢ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎠᏫ ᎠᎭᏄᎸᎯ ᎠᎩᏏ ᏦᎢ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎤᏃᏕᏅ ᎠᏨᏯ ᏦᎢ ᎢᏳᏕᏘᏴᏛ, ᎠᎴ ᎫᎴ ᏗᏍᎪᏂᎯ, ᏬᏱᏃ ᎠᏛ.\nᎯᎠᏃ ᎾᏍᎩ ᏂᎦᏛ ᏚᏘᏃᎮᎴᎢ, ᎠᎴ ᎠᏰᎵ ᏔᎵ ᏂᏚᏪᏕᎢ ᎠᎴ ᏧᎵᎬᎭᎷᏴᎯ ᏧᏦᏟᎭ ᏂᏚᏩᏁᎴᎢ; ᏥᏍᏆᏍᎩᏂ ᎥᏝ ᏱᏚᎬᎭᎷᏰᎢ.\nᎠᏂᏃᎯᎵᏙᎯᏃ ᎡᎳᏗ ᏄᎾᏛᏁᎸ ᎾᎿ ᎤᎾᎩᎸᏂᎸ, ᎡᏆᎻ ᏚᎨᎯᏙᎴᎢ.\nᎿᏉᏃ ᏅᏙ ᏭᏕᎵᎨᎢ ᎤᏣᏘ ᎠᏍᏓᏯ ᎤᎸᏁ ᎡᏆᎻ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏣᏘ ᎤᏍᎦᏎᏗ ᎤᎵᏏᎩ ᎤᏭᏢᏂᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎡᏆᎻ, ᎤᏙᎯᏳᎯᏯ ᎯᎦᏔᎮᏍᏗ, ᎾᏍᎩ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎠᏁᏙᎯ ᎨᏎᏍᏗ ᎾᎿ ᎦᏙᎯ ᎤᎾᏤᎵ ᏂᎨᏒᎾ, ᎠᎴ ᎾᎿ [ᎠᏁᎯ] ᏙᏓᎬᏩᏂᎾᏢᏂ; ᎠᎴ ᏅᎩᏧᏈ ᏧᏕᏘᏴᏛ ᏙᏓᎬᏩᏂᎩᎸᏂ.\nᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᏴᏫ ᏥᏙᏓᎬᏩᏂᎾᏢᏂ, ᏙᏓᎦᏥᏳᎪᏓᏁᎵ; ᎣᏂᏃ ᎢᏴᏛ ᏛᏂᏄᎪᏥ ᎤᏣᏘ ᏧᎬᏩᎶᏗ ᎠᏂᏰᎮᏍᏗ.\nᏂᎯᏃ ᏅᏩᏙᎯᏯᏛ ᏗᏣᎦᏴᎵᎨ ᏗᏁᎲ ᏮᏘᎶᏏ; ᎠᎴ ᏣᎦᏴᎳᏥᏌᏛ ᎨᏎᏍᏗ ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᏣᏓᏅᏖᏍᏗ ᏓᏰᏣᏂᏌᏂ.\nᎠᏎᏃ ᏅᎩᏁ ᎤᎾᏓᏁᏟᏴᏛ ᎨᏎᏍᏗ ᏔᎵᏁ ᎠᏂ ᏛᎠᏂᎷᏥᎵ; ᎠᏂᎡᎼᎵᏰᏃ ᎠᏂᏍᎦᏅ ᎥᏝ ᎠᏏ ᎤᎧᎵᏨᎯ ᏱᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᏅᏙ ᏭᏕᎵᏨ, ᎠᎴ ᎿᏉ ᎤᎵᏍᎨᎢ, ᎬᏂᏳᏉ ᏧᎦᏒᏍᏗ ᎥᏘ ᏗᎦᏚᏗᏱ, ᎠᎴ ᎠᏨᏍᏙᏗ ᎬᏨᏍᏗ ᎾᏍᎩ ᎤᎶᏎ ᎠᏰᎵ ᎾᎿ ᎠᎬᎭᎷᏴᎯ ᏓᎲᎢ.\nᎾᎯᏳᏉᏃ ᎢᎦ ᏱᎰᏩ ᎧᏃᎮᏛ ᏚᏠᎯᏍᏓᏁᎴ ᎡᏆᎻ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎦᏥᎥᏏ ᎯᎠ ᎦᏙᎯ, ᎢᏥᏈᏱ ᎡᏉᏂ ᎨᏴ ᏅᏓᏳᏓᎴᏅᏛ ᎤᏔᏅ ᎡᏉᏂ ᏂᎨᏴ ᏩᏍᏗ, ᎾᏍᎩ ᏳᏇᏗ ᎡᏉᏂ ᏥᎩ.\nᎾᏍᎩ ᎠᏂᎨᏂ, ᎠᎴ ᎠᏂᎨᏂᏏ, ᎠᎴ ᎠᏂᎧᏗᎼᏂ,\nᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᏇᎵᏏ, ᎠᎴ ᎠᏂᎵᏇᎻ,\nᎠᎴ ᎠᏂᎡᎼᎵ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎦᎦᏏ, ᎠᎴ ᎠᏂᏤᏊᏏ (ᎤᎾᏤᎵᎪᎯ.)\nᎠᏯᏙᎸᎢ 16\nᏎᎳᏱᏃ ᎡᏆᎻ ᎤᏓᎵᎢ, ᎥᏝ ᏗᏂᏲᎵ ᏱᏚᎾᏄᎪᏫᏎᎮᎢ; ᎤᏪᎧᎮᏃ ᎠᏛ ᎤᏅᏏᏓᏍᏗ ᎢᏥᏈᏱ ᎤᏕᏅᎯ ᎮᎦ ᏧᏙᎢᏛ.\nᏎᎳᏱᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᎬᏂᏳᏉ, ᏱᎰᏩ ᎠᎩᎾᎯᏍᏓᏁᎸ ᏗᏆᎷᎸᏗᏱ; Ꭷ ᎭᏓᏳᎦ ᎠᏛ ᏥᏅᏏᏓᏍᏗ; ᎾᏍᎩᏃ ᏗᏂᏲᎵ ᏗᎬᎩᎾᏄᎪᏫᏎᏗ ᏱᏂᎦᎩ. ᎡᏆᎻᏃ ᎤᏛᏓᏍᏓᏁᎴ ᏎᎳᏱ ᎧᏁᎬᎢ.\nᏎᎳᏱᏃ ᎡᏆᎻ ᎤᏓᎵᎢ, ᏭᏯᏅᎮ ᎮᎦ ᎤᏅᏏᏓᏍᏗ ᎢᏥᏈᏱ ᎤᏕᏅᎯ, ᎾᏍᎩ ᎡᏆᎻ ᎠᏍᎪᎯ ᏧᏕᏗᏴᏛ ᎬᏩᏕᏂᎸᎯ ᏂᎨᏎ ᎨᎾᏂ ᎦᏙᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏰᎯ ᎡᏆᎻ ᎤᏪᎧᏁᎴ ᎤᏓᏴᏍᏗ.\nᎤᏓᏴᏎᏃ ᎮᎦ, ᎠᎴ ᎤᏁᎵᏤ ᎮᎦ; ᎮᎦᏃ ᎤᏙᎴᎰᏒ ᎤᏁᎵᏨ ᎤᎾᏝᎢ ᎦᏂᏆᏘᎯ ᏄᎵᏍᏔᏁᎢ.\nᏎᎳᏱᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎻ, ᏂᏚᏳᎪᏛᎾ ᎾᏆᏛᏁᎸ ᏂᎯ ᏅᏂᏌ; ᏥᏅᏏᏓᏍᏗ ᎬᏴᎧᏁᎸ ᏣᏓᏰᏍᏗ; ᎦᏁᎵᏒᏃ ᎤᏙᎴᎰᏒ, ᎿᏉ ᎠᎩᏂᏆᏘᎯ ᏄᎵᏍᏔᏅᎩ; ᏱᎰᏩ ᎠᏗᎾ ᎠᏴ ᏂᎯᏃ ᏫᏗᎩᏄᎪᏓᏏ.\nᎠᏎᏃ ᎡᏆᎻ ᎯᎠ ᏄᏪᏎᎴ ᏎᎳᏱ, ᎬᏂᏳᏉ ᏣᏒᎦᎸ ᏣᏚᎵᏍᎬ ᎢᎯᏴᏁᏗᏱ; ᎭᏓᏅᏖᏍᎬᏉ ᏂᏴᎦ. ᎿᏉᏃ ᏎᎳᏱ ᎬᏍᎦᎢᏍᏓᎩ ᏄᏩᏁᎸ ᎤᎵᏘᎡᎴᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎤᏩᏛᎮ ᎦᎸᎪᎬᎢ ᎢᎾᎨᎢ, ᎾᏍᎩ ᏅᏃᎱᎶᏗ ᏌᎵᏱ ᏫᎦᏅᏅ ᏥᎦᏄᎪᎦ.\nᎯᎠᏃ ᏄᏪᏎ ᎾᏍᎩ, ᎮᎦ, ᏎᎳᏱ ᏣᏅᏏᏓᏍᏗ, ᎭᏢ ᏘᎶᎯ? ᎠᎴ ᎭᏢ ᏮᏘᎶᏏ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏎᎳᏱ ᎠᎩᏅᏏᏓᏍᏗ ᏥᏯᎵᏗᎡᎭ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏥᎭᏅᎾᏉ, ᏣᏅᏏᏓᏍᏗ ᏥᏫᎯᎷᏥᏏ, ᎠᎴ ᏥᏫᏙᎯᏯᏓᏲᎯᏏᏉ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎤᏣᏔᏅᎯ ᏓᎦᏥᎪᏙᎯᏍᏔᏂ, ᎾᏍᎩ ᎥᏝ ᏰᎵ ᏗᎬᏎᎰᎲᏍᏗ ᏱᎨᏎᏍᏗ ᏄᏂᏧᏈᏍᏕᏍᏗ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎯᏁᎵᏛ, ᎠᎴ ᎠᏧᏣ ᏘᎾᏄᎪᏫᏏ, ᎠᎴ ᎢᏏᎺᎵ ᏙᏘᏲᎢ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᎰᏩ ᏣᏛᎦᏁᎸ ᎤᏪᎵᎯᏍᏗ ᏂᏣᎵᏍᏓᏁᎲᎢ.\nᎠᎴ ᏗᎦᎵᎠᏅᎯᏛ ᎬᏘᏌᏘ ᎾᏍᎩᏯ ᎨᏎᏍᏗ ᎠᏍᎦᏯ; ᎾᏂᎥ ᏴᏫ ᏗᎦᏘᎴᎩ, ᎠᎴ ᎾᏂᎥ ᏴᏫ ᏗᎬᏩᎦᏘᎴᎩ ᎨᏎᏍᏗ; ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᏄᎾᏛᏅ ᎾᎥ ᎡᎮᏍᏗ.\nᎠᎴ ᎯᎠ ᏄᏍᏕ ᏚᏬᎡ ᏱᎰᏩ ᎾᏍᎩ ᎤᏬᏁᏔᏅᎯ, ᏂᎯ ᏣᏁᎳᏅᎯ ᏍᎩᎪᏩᏘᏍᎩ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏥᎪ ᎾᏍᏉ ᎠᏴ ᎠᏂ ᏕᏥᏯᎦᏅᎦ ᎠᎩᎪᏩᏘᏍᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎠᎹ ᎦᏁᎲᎢ ᎠᏔᎴᏒ ᎳᎭᎢᎶᎢ ᏚᏃᎡᎢ; ᎬᏂᏳᏉ, ᎾᏍᎩ ᎨᏚᏏ ᏇᎴᏗᏃ ᎠᏰᎵ ᎠᎹ ᏥᎦᏁᎭ.\nᎮᎦᏃ ᎤᎾᏄᎪᏫᏎᎴ ᎡᏆᎻ ᎠᏧᏣ; ᎡᏆᎻᏃ ᎤᏪᏥ ᎾᏍᎩ ᎮᎦ ᏧᎾᏄᎪᏫᏎᎴ ᎢᏏᎺᎵ ᏚᏬᎡᎢ.\nᎡᏆᎻᏃ ᏁᎳᏍᎪᎯ ᏑᏓᎵᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎮᎦ ᎢᏏᎺᎵ ᏧᎾᏄᎪᏫᏎᎴ ᎡᏆᎻ.\nᎠᏯᏙᎸᎢ 17\nᎡᏆᎻᏃ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᏱᎰᏩ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎡᏆᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏫᎾᏍᏛᎾ ᎠᏩᎵᏂᎩᏗᏳ ᎠᏆᏁᎳᏅᎯ; ᎠᏴ ᏥᎦᏔᎲ ᎭᎴᏂᏙᎮᏍᏗ, ᎠᎴ ᏂᏍᎦᏅᎾ ᎨᏎᏍᏗ.\nᎠᎴ ᎧᏃᎮᏛ ᏙᏓᎬᏯᏠᎢᏍᏓᏁᎵ, ᎠᎴ ᎤᏣᏔᏅᎯ ᏓᎬᎪᏙᎯᏍᏔᏂ.\nᎡᏆᎻᏃ ᎤᏯᏍᏚᏎᎢ; ᎤᏁᎳᏅᎯᏃ ᎤᎵᏃᎮᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ,\nᎠᏴᏍᎩᏂ ᎨᏒᎢ, ᎬᏂᏳᏉ ᎧᏃᎮᏛ ᏕᎬᏯᏠᎢᏍᏓᏁᎸ, ᏂᎯᏃ ᎤᏂᏣᏘ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏘᎦᏴᎵᎨ ᎢᏣᎵᏍᏙᏗ ᎨᏎᏍᏗ.\nᎥᏝ ᎠᎴ ᎿᏉ ᎡᏆᎻ ᏰᏦᏎᎮᏍᏗ, ᎡᏆᎭᎻᏍᎩᏂ ᏕᎶᏙᎡᏍᏗ; ᎤᏂᏣᏘᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏘᎦᏴᎵᎨ ᏂᎬᏴᎦ.\nᎠᎴ ᎤᏣᏔᏅᎯ ᏣᏁᏉᏣᏘ ᏅᏓᎬᏴᏁᎵ, ᏂᎯᏃ ᎨᏒ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏓᎦᏥᏲᏢᏂ, ᎠᎴ ᏂᎯ ᎨᏒ ᎤᏂᎬᏫᏳᎯ ᏅᏓᏳᎾᏓᎴᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏓᏥᏍᏓᏱᏗ ᎧᏃᎮᏛ ᏕᎬᏯᏠᎢᏍᏓᏁᎸᎢ, ᏂᎯ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ, ᎾᏍᎩ ᎠᎾᏁᏢᏔᏂᏒᎢ, ᎾᏍᎩ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎠᏴ ᎬᏯᏁᎳᏅᎯ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏂᎯ ᏣᏁᎸᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ.\nᎠᎴ ᏂᎯ ᏓᎬᏁᎵ ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒ ᎯᎠ ᎾᏍᎩ ᎦᏙᎯ ᎾᎿ ᎮᏙᎯ ᏥᎩ, ᎾᏍᎩ ᏂᎬᎾᏛ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ, ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ; ᎠᏴᏃ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏂᎯ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᏂᎯ ᎠᎴ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒ ᎠᎾᏁᏢᏔᏂᏒᎢ.\nᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎧᏃᎮᏛ ᏓᏆᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎢᏥᏍᏆᏂᎪᏙᏗ ᏥᎩ, ᏥᏕᏓᎦᏠᎯᏍᏓ, ᎠᏴ ᎠᎴ ᏂᎯ ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ; ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᏕᏤᎲᎢ ᏗᎱᏍᏕᏎᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏕᏥᎱᏍᏕᏍᎨᏍᏗ ᎢᏥᏇᏓᎸ ᎢᏥᏁᎪᎢ; ᎧᏃᎮᏛᏃ ᏕᎦᏠᎯᏍᏛ ᎤᏰᎸᏕᏍᏗ ᎾᏍᎩ.\nᎾᏍᎩᏃ ᏧᏁᎳ ᏧᏒᎯᏛ ᎦᏰᎯ ᎠᏥᎤᏍᏕᏎᏗ ᎨᏎᏍᏗ, ᎾᏂᎥ ᎠᏂᏧᏣ ᎾᏍᎩ ᏂᎯ ᎢᏣᏁᏢᏔᏅᏒᎢ, ᎾᏍᎩ ᎠᏓᏁᎸ ᎤᏕᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎠᏥᏩᎯᏍᏔᏅᎯ, ᎾᏍᎩ ᎩᎶ ᏅᏩᏓᎴ ᏴᏫ ᏣᏁᏢᏔᏅᎯ ᏂᎨᏒᎾ ᎠᏥᏩᏎᎸᎯ.\nᎯᏁᎸ ᎤᏕᏅᎯ, ᎠᎴ ᏣᏤᎵ ᎠᏕᎸ ᎯᏩᎯᏍᏔᏅᎯ, ᎾᏍᎩ ᎠᏎ ᎠᏥᎤᏍᏕᏎᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎠᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎢᏥᏇᏓᎸ ᎤᏰᎸᏕᏍᏗ, ᎾᏍᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎤᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎾᏥᎤᏍᏕᏎᎸᎾᏃ ᎠᏍᎦᏯ ᎾᏍᎩ ᎤᏇᏓᎸ ᎤᏁᎪᎯ ᎠᏥᎤᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᏴᏫ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏠᏱ ᎤᏙᏣᎸᎢ; ᎤᏲᏍᏔᏅᎯᏰᏃ ᎨᏎᏍᏗ ᎧᏃᎮᏛ ᏓᏆᏠᎯᏍᏛᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎯᎠᏃ ᏎᎳᏱ ᏣᏓᎵᎢ; ᎥᏝ ᏎᎳᏱ ᏱᏲᏎᎮᏍᏗ, ᏎᎵᏰᏃ ᏚᏙᎥ.\nᎠᎴ ᎣᏍᏛ ᏅᏓᏥᏯᏛᏁᎵ, ᎠᎴ ᏓᎬᏯᎧᏁᎵ ᎠᏧᏣ ᎾᏍᎩ ᏓᏣᎾᏄᎪᏫᏎᎵ; ᎥᎥ, ᎣᏍᏛ ᎤᏓᏥᏯᏛᏁᎵ ᎠᎴ ᎾᏍᎩ ᎨᏒ ᏗᎾᏓᎴᎲᏍᎨᏍᏗ ᎤᎾᏓᏤᎵᏛ ᏴᏫ; ᎤᏂᎬᏫᏳᎯ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏧᎾᏤᎵᎦ ᏙᏓᎦᎾᏄᎪᏫᏏ.\nᎿᏉᏃ ᎡᏆᎭᎻ ᎤᏯᏍᏚᏎᎢ, ᎠᎴ ᎤᏰᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎ ᏧᏓᏅᏛᎢ, ᏥᎪ ᎤᏪᏥ ᏛᎤᏕᏁᎵ ᎾᏍᎩ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎿᏉ ᏥᎩ; ᎠᎴ ᏎᎵ ᏐᎣᏁᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᏥᎩ ᏙᏛᎠᎷᎸᏂᏍᎩ?\nᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏁᎳᏅᎯ, ᎢᏏᎺᎵ ᎯᎦᏔᎲ ᏩᎴᏂᏓ!\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏍᎩᏂ ᏎᎵ ᏣᏓᎵᎢ ᏓᎦᎾᏄᎪᏫᏏ ᏤᏥ ᎠᏧᏣ; ᎠᎴ ᎡᏏᎩ ᏙᏘᏲᎢ; ᎠᎴ ᎾᏍᎩ ᏓᏥᏍᏓᏱᏕᎵ ᎠᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎤᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᏓᎦᏥᏍᏓᏱᏕᎵ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎣᏂ ᎤᏅᏓᏗᏗᏒᎢ.\nᎢᏏᎺᎵᏃ ᎯᏁᎢᏍᏗᏍᎬ ᎬᏯᏛᎦᏁᎸ; ᎬᏂᏳᏉ, ᎣᏍᏛ ᏂᏥᏯᏛᏂᏏ, ᎠᎴ ᎤᏁᏉᏣᏘᏳ ᏅᏓᏥᏴᏁᎵ, ᎠᎴ ᎤᏣᏔᏅᎯ ᏓᏥᎪᏙᎯᏍᏔᏂ; ᏔᎳᏚᎢᏯᏂᏛ ᎤᏂᎬᏫᏳᎯ ᏓᎬᏩᏕᏁᎵ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᏛ ᎤᏂᏧᏈᏍᏗ ᏴᏫ ᎤᏓᎦᏥᏴᏁᎵ.\nᎧᏃᎮᏛᏍᎩᏂ ᎠᏆᏤᎵ ᏓᏠᎯᏍᏛ ᏓᏥᏍᏓᏱᏕᎵ ᎡᏏᎩ, ᎾᏍᎩ ᏎᎵ ᏨᏓᏣᎾᏄᎪᏫᏎᎵ, ᎪᎯᏳᎳ ᎡᏘ ᎨᏎᏍᏗ.\nᎠᎴ ᎿᏉ ᎤᏲᎯᏍᏔᏁ ᎠᎵᏃᎮᏗᏍᎬᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᎵᏌᎳᏓᏁ ᎤᏓᏅᎡᎴ ᎡᏆᎭᎻ.\nᎡᏆᎭᎻᏃ ᏭᏯᏅᎮ ᎤᏪᏥ ᎢᏏᎺᎵ, ᎠᎴ ᏂᎦᏛ ᎦᏁᎸ ᎤᎾᏕᏅᎯ, ᎠᎴ ᏂᎦᏛ ᎠᏕᎸ ᏧᏩᎯᏍᏔᏅᎯ, ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎤᎾᏓᏑᏴ ᎡᏆᎭᎻ ᎦᏁᎸ ᎠᏁᎯ; ᎾᏍᎩᏃ ᏚᎱᏍᏕᏎᎴ ᎤᏂᏇᏓᎸ ᎤᏂᏁᎪᎢ, ᎾᎯᏳᏉ ᎢᎦ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᏄᏪᏎᎸᎢ.\nᎡᏆᎭᎻᏃ ᏐᎣᏁᎳᏍᎪᎯ ᏐᎣᏁᎳᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎤᏇᏓᎷ ᎤᏁᎪᎢ ᎠᏥᎤᏍᏕᏎᎸ.\nᎤᏪᏥᏃ ᎢᏏᎺᎵ ᏦᎢᎦᏚ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎤᏇᏓᎸ ᎤᏁᎪᎢ ᎠᏥᎤᏍᏕᏎᎸ.\nᎾᎯᏳᏉ ᎢᎦ ᎡᏆᎭᎻ ᎠᏥᎤᏍᏕᏎᎴᎢ, ᎠᎴ ᎾᏍᏉ ᎤᏪᏥ ᎢᏏᎺᎵ.\nᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᎦᏁᎸ ᎠᏁᎯ, ᎦᏁᎸ ᎤᎾᏕᏅᎯ, ᎠᎴ ᎠᏕᎸ ᎨᏥᏩᎯᏍᏔᏅᎯ, ᏅᏩᎾᏓᎴ ᏴᏫ ᎨᏥᏩᎯᏎᎸᎯ, ᎢᏧᎳᎭ ᏙᎨᏥᎤᏍᏕᏎᎴᎢ.\nᎠᏯᏙᎸᎢ 18\nᏱᎰᏩᏃ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎹᎺᎵ ᏧᏤᎵᎦ ᎠᏓᏯ ᏕᏡᎬᎢ; ᎦᎵᏦᏛᏃ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎴ ᎢᎦ ᏧᏗᎴᎪᎢ;\nᏚᏌᎳᏓᏁᏃ ᏗᎦᏙᎵ ᎠᎴ ᏚᎧᎿᏁᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎠᏂᏦᎢ ᎠᏂᏍᎦᏯ ᎤᏬᎸ ᎾᎥ ᎠᏂᏙᎾᎡᎢ; ᏚᎪᎲᏃ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎸ ᎤᏁᎷᎩᎭ ᏫᏚᏠᏎᎢ, ᎠᎴ ᎡᎳᏗ ᏄᏛᏁᎴᎢ,\nᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎢᏳᏃ ᏗᏍᏆᏓᏂᎸᏨᎯ ᎨᏎᏍᏗ, ᏞᏍᏗ ᎯᎶᎢᏎᎸᎩᏉ ᎯᏅᏏᏓᏍᏗ;\nᎦᏲᎵ ᎠᎹ ᏩᏂᏁᎩ, ᎠᎴ ᏗᏣᎳᏏᏕᏂ ᏗᏦᏑᎵ, ᎠᎴ ᎢᏣᏣᏪᏐᎸᏍᏓ ᏡᎬ ᎭᏫᏂᏗᏢ;\nᎤᏍᏗᏃ ᎠᎵᏍᏓᏴᏗ ᏮᏓᏥᎩᏏ ᏗᏣᏓᏅᏙᏃ ᏕᏥᎧᎵᏍᏓᏛᎭ; ᎩᎳᏃ ᎢᏣᏂᎩᏒᎭ; ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᎡᏥᎷᏤᎸ ᎡᏥᏅᏏᏓᏍᏗ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏂᏣᏪᏒ ᎾᏍᎩᏯ ᎿᏛᎦ.\nᎡᏆᎭᎻᏃ ᎤᎵᏍᏗ ᎦᎵᏦᏛ ᏭᏴᎴ ᏎᎵ ᏧᏬᎸᎢ, ᎯᎠᏃ ᏫᏄᏪᏎᎢ, ᏄᎳ ᎭᏛᏅᎢᏍᏓ ᏦᎢ ᎢᏯᏟᎶᎥᎯ ᏩᎾᎨ ᎢᏒ; ᎦᏑᎬᎵ, ᎠᎴ ᏘᏃᏢᏛᎦ.\nᎡᏆᎭᎻᏃ ᏩᎦ ᏗᏁᏙᎲ ᏭᏗᏢᏍᏔᏁᎢ, ᎠᎴ ᎤᏘᏃᎴ ᏩᎦ ᎠᎩᎾ ᎤᏓᎨᎢ ᎠᎴ ᎣᏍᏛ, ᎠᎴ ᎠᏫᏅ ᎤᏪᎧᏁᎴᎢ; ᎾᏍᎩᏃ ᎤᎵᏍᏗ ᎣᏍᏛ ᏄᏩᏁᎴᎢ.\nᎡᏆᎭᎻᏃ ᎪᎢ-ᎪᏢᏀᎢ ᏭᎩᏎᎢ, ᎠᎴ ᎤᏅᏗ ᏭᏁᎩᏎᎢ, ᎠᎴ ᏩᎦ ᎠᎩᎾ ᎾᏍᎩ ᎣᏍᏛ ᎢᏳᏩᏁᎸᎯ ᏭᏁᏎᎢ, ᎠᎴ ᏚᏪᎳᏍᏔᏁᎢ; ᎠᏂᏅᏃ ᎤᎶᏗᏢ ᎤᎴᏁ ᏡᎬ ᎭᏫᏂᏗᏢ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏁᎢ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᏎᎵ ᏣᏓᎵᎢ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎠᏂ ᎦᎵᏦᏛᎢ.\nᎯᎠᏃ ᏄᏪᏎ ᎾᏍᎩ, ᎤᏙᎯᏳᎯᏯ ᏛᎬᏩᏛᎯᎵ ᎾᎯᏳ ᏓᏁᎶᏛ ᎠᏲᎵ ᎤᏕᏗᏱ; ᎠᎴ ᎬᏂᏳᏉ, ᏎᎵ ᏣᏓᎵᎢ ᏓᎦᎾᏄᎪᏫᏏ ᎠᏧᏣ. ᏎᎵᏃ ᏧᏛᎦᏁ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎸᎢ ᎾᏍᎩ ᎤᏐᎭᏛ ᎢᏗᏢ ᏥᎨᏎᎢ.\nᎡᏆᎭᎻᏃ ᎠᎴ ᏎᎵ ᎠᏂᎦᏴᎵᎨ ᎠᎴ ᏧᎾᏕᏘᏱᎶᏛ ᎨᏎᎢ; ᏎᎵᏃ ᎤᎶᎯᏎᎸᎯ ᎨᏎ ᎠᏂᎨᏴ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏒᎢ.\nᏎᎵᏃ ᏧᏓᏅᏛ ᎤᏰᏤᎢ, ᎯᎠ ᏄᏪᏎᎢ. ᏥᎪ ᎿᏉ ᎠᎩᎦᏴᎳᏨᎯ ᏥᎩ ᎣᏍᏛ ᏛᎦᏓᏅᏓᏗ, ᎠᎴ ᎾᏍᏉ ᏗᏥᏯᏁᎶᏗ ᎤᏛᏐᏅᎯ ᏥᎩ?\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎦᏙᏃ ᏎᎵ ᎾᏍᎩ ᎯᎠ ᏧᏰᏨ, ᎯᎠ ᏥᏂᎦᏫ, ᏥᎪ ᎤᏙᎯᏨᎯ ᎠᏲᎵ ᏛᏥᎾᏄᎪᏫᏏ ᎿᏉ ᏥᎦᏴᎵᎨ ᏥᎩ?\nᏥᎪ ᏱᎰᏩ ᎪᎱᏍᏗ ᎬᏩᏄᎸᏗ? ᎾᎯᏳ ᎠᏎᎯᏛ ᎨᏒ ᏛᎬᎷᏤᎵ, ᏓᏁᎶᏛ ᎠᏲᎵ ᎤᏕᏘᏱ, ᎠᎴ ᏎᎵ ᎠᏧᏣ ᏓᎦᎾᏄᎪᏫᏏ.\nᎿᏉᏃ ᏎᎵ ᎤᏓᏱᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᎩᏰᏤᎢ; ᎠᏍᎦᎢᎮᏰᏃ. ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏍᎩᏂ ᏣᏰᏨᎩ.\nᎠᏂᏍᎦᏯᏃ ᎾᎿ ᎤᎾᏂᎩᏎᎢ, ᎠᎴ ᏐᏓᎻ ᎢᏗᏢ ᏫᏚᎾᎦᏔᏁᎢ; ᎡᏆᎭᎻᏃ ᏚᎵᎪᏁᎴᎢ, ᏣᏂᎦᏛ ᎢᏗᏢ ᎢᏴᏛ ᏫᏚᏪᎧᏁᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏥᎪ ᏓᏥᏴᏍᎦᎳᏁᎵ ᎡᏆᎭᎻ ᎾᏍᎩ ᏥᏂᎦᏛᏁᎭ,\nᎤᏙᎯᏳᎯᏯᏃ ᎡᏆᎭᎻ [ᎤᏁᏢᏔᏅᎯ] ᎡᏉᎯᏳ ᎠᎴ ᎤᎵᏂᎩᏗᏳ ᏴᏫ ᏥᏅᏛᎾᎵᏍᏔᏂ, ᎠᎴ ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏥᏅᏓᎦᎵᏍᏔᏂ ᎡᏆᎭᎻ ᎢᏳᏩᏂᏌᏛ?\nᏥᎦᏔᎭᏰᏃ ᎡᏆᎭᎻ ᎾᏍᎩ ᎠᏎ ᏙᏓᎧᏁᏤᎵ ᏧᏪᏥ ᎠᎴ ᏚᏓᏘᎾᎥ ᎣᏃ ᎤᎾᏕᏗ ᏥᏅᏓᎦᎵᏍᏔᏂ, ᎠᎴ ᎾᏍᎩ ᏲᎰᏩ ᎤᏤᎵ ᎦᏅᏅ ᏛᏂᏍᏓᏩᏕᏏ, ᏚᏳᎪᏛ ᎢᏳᎾᏛᏁᏗᏱ, ᎠᎴ ᏧᏄᎪᏙᏗᏱ; ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏗᏱ ᎡᏆᎭᎻ ᏄᏍᏛ ᎤᏁᎢᏍᏓᏁᎸᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎷᎬ ᏐᏓᎻ ᎠᎴ ᎪᎹᎵ ᎠᏍᏓᏱᏳ ᎨᏥᏁᎢᏍᏗᏍᎬ ᎤᎶᏘ ᎨᏒᎢ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗ ᎤᏂᏍᎦᏅᏨ ᎤᏣᏘ ᎤᏍᎦᎢᏍᏗᏳ ᎨᏒᎢ,\nᎿᏉ ᏓᎦᏠᎠᏏ, ᎠᎴ ᏮᏓᎦᏙᎴᎣᏏ, ᏥᎪᏃ ᎤᏙᎯᏳᎯ ᏄᎾᏛᏁᎸ ᎾᏍᎩ ᎤᏁᎷᎬ ᎨᏥᏁᎢᏍᏗᏍᎬ, ᎶᎩᎷᏤᎸ; ᎢᏳᏃ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ ᏮᏓᎦᏙᎴᎣᏏ.\nᎠᏂᏍᎦᏯᏃ ᎤᎾᎦᏔᎲᏎᎢ, ᎠᎴ ᏐᏓᎻᏱ ᎢᏗᏢ ᏭᏂᎶᏎᎢ; ᎡᏆᎭᎻᏍᎩᏂ ᎦᏙᎨᏉ ᏱᎰᏩ ᎠᎦᏔᎲᎢ.\nᎡᏆᎭᎻᏃ ᎾᎥ ᎤᎷᏤᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏓᏅᏘᏍᎪ ᏘᏯᏠᏯᏍᏔᏂ ᎤᏁᏓᏥᏛ ᎯᏛᏗᏍᎬᎢ?\nᎾᏍᏉ ᎯᏍᎦᏍᎪᎯ ᏱᎾᏂᎥ ᎤᎾᏓᏅᏘ ᎾᎿ ᎦᏚᎲ ᏱᏁᎭ; ᏥᎪ ᎠᏎ ᏘᏛᏔᏂ, ᏝᏍᎪᏂ ᏴᏘᏙᎵᏂ ᎾᎿᏂ, ᏱᏅᏓᎦᎵᏍᏙᏔᏂ ᎯᏍᎦᏍᎪᎯ ᎢᏯᏂᏛ ᎤᎾᏓᏅᏘ ᎾᎿ ᎠᏁᎲᎢ?\nᎥᏞᏍᏗ ᎾᏍᎩᏉ ᎢᏣᏛᏁᎸᎩ ᎯᎸᎩ ᎤᏓᏅᏘ ᎯᏯᏠᏯᏍᏔᏅᎩ ᎤᏁᏓᏥᏛ ᎯᎢᎲᎢ; ᎠᎴ ᎤᏓᏅᏘ ᎥᏞᏍᏗ ᎤᏁᏧᏥᏛ ᏄᏍᏛ ᏱᏄᏍᏕᏍᏗ; ᏞᏍᏗ ᎾᏍᎩᏉ ᎢᏣᏛᏁᎸᎩ; ᏝᏍᎪ ᎡᎳᏂᎬ ᏗᎫᎪᏓᏁᎯ ᏚᏳᎪᏛ ᏱᏅᎬᏛᎦ?\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏐᏓᎻ ᎦᏚᎲ ᎯᏍᎦᏍᎪᎯ ᎢᏯᏂᏛ ᎤᎾᏓᏅᏘ ᏱᏗᏥᏣᏛᎲ, ᎿᏉ ᏂᎦᏛ ᎾᎿ ᏓᏥᏙᎵᏥ ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎡᏆᎭᎻᏃ ᏗᎤᏁᏨ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎿᏉ ᎦᎴᏅ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᏥᏯᎵᏃᎮᏗᏍᎬᎢ, ᎠᏴ ᎦᏓᏉ ᎠᎴ ᎪᏍᏚᏉ ᏥᎩ.\nᎢᏳᏃ ᎯᏍᎩ ᏱᎦᎷᎶᎦ ᎯᏍᎦᏍᎪᎯ ᎢᏳᏂᎢᏍᏗᏱ ᎤᎾᏓᏅᏘ; ᏥᎪ ᎠᏎ ᏂᎬ ᎦᏚᎲ ᏘᏲᏍᏔᏂ ᎯᏍᎩ ᎦᎷᎶᎬ ᎢᏳᏍᏗ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏅᎦᏍᎪᎯ ᎯᏍᎩᎦᎵ ᎢᏯᏂᏛ ᎾᎿ ᏱᏗᏥᏩᏛᎲ ᎥᏝ ᏴᎦᏥᏛᏓ.\nᏔᎵᏁᏃ ᎢᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᎾᏃ ᏅᎦᏍᎪᎯ ᎢᏯᏂᏛ ᏗᎬᏩᏛᏗ ᏱᎩ ᎾᎿᏂ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏅᎦᏍᎪᎯ ᎾᏂᎥ ᎢᏳᏍᏗ ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᎦᏛᎦ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵ ᏳᏔᎳᏬᏎᏍᏗ, ᎠᏏ ᏛᏥᏁᏥ, ᎢᏳᎾᏃ ᏦᎠᏍᎪᎯ ᏗᎬᏣᏛᏗ ᏱᎩ ᎾᎿᏂ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᎦᏛᎦ ᎢᏳᏃ ᏃᎠᏍᎪᎯ ᏙᏥᏩᏛᎲᎭ ᎾᎿᏂ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎬᏂᏳᏉ ᎠᏆᎴᏅᎲ ᏱᎰᏩ ᏥᏯᎵᏃᎮᏗᏍᎬᎢ; ᎢᏳᎾᏃ ᏔᎳᏍᎪᎯ ᏗᎬᏩᏛᏗ ᎨᏎᏍᏗ ᎾᎿᏂ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎦᏥᏛᏓ ᏔᎳᏍᎪᎯ ᎾᏂᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᏞᏍᏗ ᏳᏔᎳᏬᏎᏍᏗ, ᎠᏏ ᏌᏉᏉ ᏅᏛᏥᏁᏥ; ᎢᏳᎾᏃ ᎠᏍᎪᎯ ᏗᎬᏩᏛᏗ ᏱᎩ ᎾᎿᏂ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎦᏥᏛᏓ ᎠᏍᎪᎯ ᎾᏂᎥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᏱᎰᏩᏃ ᎤᏑᎵᎪᏨᏉ ᎡᏆᎭᎻ ᎠᎵᏃᎮᏗᏍᎬᎢ, ᏩᎦᏛ ᏭᎶᏎᎢ; ᎡᏆᎭᎻᏃ ᏧᏪᏅᏒ ᏫᎤᎶᏎ.\nᎠᏯᏙᎸᎢ 19\nᎤᏒᎢᏃ ᎠᏂᏔᎵ ᏗᏂᎧᎿᏩᏗᏙᎯ ᏐᏓᎻ ᎤᏂᎷᏤᎢ; ᎶᏗᏃ ᏐᏓᎻ ᎦᎶᎯᏍᏗᏱ ᎤᏬᎴᎢ; ᎶᏗᏃ xᏚᎪᎲ ᏚᎴᏁ ᏚᏠᏒᏎᎢ; ᎡᎳᏗᏃ ᏄᏛᏁᎴᎢ, ᎤxᏛ ᏚᏙᎯ ᎢᏗᏢ ᏄᏩᏁᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, Ꭷ, ᎢᏍᏗᎬᏫᏳᎯ ᏗᏆᏤᎵᎦ, ᎢᏍᏛᏔᏲᏏ ᎡᏍᏗᏅᏏᏓᏍᏗ ᎦᏁᎸ ᎢᏍᏗᏴᏍᏗᏱ, ᎠᎴ ᎢᏍᏗᏒᏍᏗᏱ, ᎠᎴ ᏗᏍᏙᏑᎴᏗᏱ ᏗᏍᏓᎳᏏᏕᏂ; ᏑᎾᎴᏃ ᏕᏍᏓᏗᏛᎲᎭ, ᎠᎴ ᏫᏍᏗᎦᏛ ᏫᏍᏗᎶᏒᎭ. ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎥᏝ; ᎦᎳᏅᏛᏉᏍᎩᏂ ᏓᏲᎩᏂᏒᎵ.\nᎤᏣᏘᏃ ᏚᏍᏗᏰᏔᏁᎢ, ᏗᎬᏩᎦᏔᎲᎡᎴᏃ ᎠᎴ ᎦᏁᎸ ᏭᏂᏴᎴᎢ; ᎠᎴ ᏚᏛᏅᎢᏍᏓᏁᎴ ᎠᏗᏔᏍᏗ, ᎠᎴ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏚᏪᏚᏁᎢ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏁᎢ.\nᎠᏏᏉᏃ ᏂᏚᎾᏂᏢᏅᎾ ᎨᏎᎢ, ᎠᏂᏍᎦᏯ ᎦᏚᎲ ᎠᏁᎯ, ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏐᏓᎻ ᎠᏁᎯ, ᎠᏓᏁᎸ ᏚᎾᏚᏫᏍᏔᏁᎢ, ᎠᏂᏫᏅ ᎠᎴ ᎾᏍᏉ ᏧᎾᏛᏐᏅᎯ, ᏂᎦᏛ ᏴᏫ ᎬᏩᏚᏫᏛ ᏅᏓᏳᏂᎶᏒᎯ.\nᎶᏗᏃ ᏫᎬᏩᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎭᏢ ᎠᏂᏍᎦᏯ ᎪᎯ ᎤᏒ ᏥᎰᏣᏴᏎᎸᎩ? ᎡᏗᏍᎩᏄᎪᏫᏏ ᏙᏥᎦᏙᎥᏒᎭ.\nᎶᏗᏃ ᏚᏄᎪᏤᎴ ᎦᎶᎯᏍᏗᏱ, ᎦᎶᎯᏍᏗᏱᏃ ᎤᏍᏚᏁᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏨᏔᏲᏎᎭ ᎢᏓᎵᏅᏟ, ᏞᏍᏗ ᎾᏍᎩ ᎢᏳᏲ ᏗᏥᎸᏫᏍᏓᏁᎸᎩ;\nᎬᏂᏳᏉ, ᎠᏂᏔᎵ ᏗᏇᏥ ᎠᏂᎨᏴ ᎠᏁᎭ ᎠᏍᎦᏯ ᏄᏂᎦᏙᎥᏒᎾ, ᎾᏍᎩ ᏗᏨᏄᎪᏫᏏ, ᎾᏍᎩᏃ ᎢᏣᏓᏅᏖᏍᎬᏉ ᏂᏗᏨᎦ; ᎯᎠᏍᎩᏂ ᎠᏂᏍᎦᏯ ᏞᏍᏗ ᎪᎱᏍᏗ ᏗᏨᏁᎸᎩ; ᎾᏍᎩᏰᏃ ᎢᏳᏍᏗ ᏥᏁᎸ ᎤᎾᎵᏍᎦᏍᏙᏔᏂᎸ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎭᎴᎲᎾᏉ. ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎠᏍᎦᏯ ᎤᎳᏂᏏᎸᎯᏉ, ᏗᎫᎪᏓᏁᎯ ᎢᏳᎵᏍᏙᏗᏱ ᎤᏚᎵᎭ. ᎤᏟ ᎢᏳᏲ ᏅᏓᏨᏴᏁᎵ ᏂᎯ ᎡᏍᎦᏉ ᎯᎠ ᎠᏂᏍᎦᏯ. ᎠᎴ ᎬᏍᎦᎢᏍᏓᎩ ᏚᏂᎦᏘᎸᏎ ᎠᏍᎦᏯ, ᎾᏍᎩ ᎶᏗ, ᎠᎴ ᎾᎥ ᎤᏂᎷᏤ ᎠᏍᏚᏗ ᏗᏂᏲᏍᏔᏂᏎᎢ.\nᎠᏎᏃ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᏫᏚᎾᏙᏯᏅᎯᏕ, ᎠᎴ ᏫᎬᏩᏎᏒᎮ ᎶᏗ ᎦᎵᏦᏕ ᎬᏩᏴᏔᏁ ᎠᏂᏯᎥᎢ, ᎠᎴ ᎤᏂᏍᏚᏁ ᎦᎶᎯᏍᏗᏱ.\nᎦᎵᏦᏕᏃ ᎦᎶᎯᏍᏗᏱ ᏅᏛᏂᏙᎾᎢ ᏗᏂᎨᏫ ᏂᏚᏅᏁᎴᎢ, ᏄᎾᏍᏗ ᎠᎴ ᎾᏍᏉ ᏧᎾᏛᏅ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏚᎾᏣᏪᎢᏍᏔᏁ ᎦᎶᎯᏍᏗᏱ ᎤᏂᏲᎲᎢ.\nᎠᏂᏍᎦᏯᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴ ᎶᏗ, ᎦᎪ ᎠᏏ ᏗᏣᏤᎵᎦ ᏴᏫ ᎠᏂ ᎠᏁᎭ? ᏣᎾᏥ, ᏗᏤᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎠᏂᎨᏴ ᏗᏤᏥ, ᎠᎴ ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏣᎲ ᎠᏂ ᎦᏚᎲᎢ, ᎯᏄᎪᏩ ᎠᏂ;\nᎠᏴᏰᏃ ᏓᏲᏍᏗᏲᏍᏔᏂ ᎯᎠ ᎠᏂ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎷᎬ ᎾᏍᎩ ᎨᏥᏁᎢᏍᏗᏍᎬ ᎤᎶᏘ ᎡᏉᎯᏳ ᏄᎵᏍᏔᏅ ᏱᎰᏩ ᎠᎦᏯᎲᎢ; ᎠᎴ ᏱᎰᏩ ᏦᎩᏂᏅᏒ ᎣᎩᏂᏲᏍᏙᏗᏱ ᎯᎠ ᎠᏂ.\nᎶᏗᏃ ᎤᏄᎪᏤᎢ, ᎠᎴ ᏚᏁᏤᎴ ᏧᎾᏥ, ᎾᏍᎩ ᏧᏪᏥ ᎠᏂᎨᏴ ᏗᎾᏓᏰᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᏗᏣᎴᎲᎦ ᎠᎴ ᎢᏥᏄᎪᎢ ᎠᏂ; ᏱᎰᏩᏰᏃ ᏛᏲᏍᏔᏂ ᎯᎠ ᎦᏚᎲᎢ. ᎠᏎᏃ ᎠᏎᏉ ᏥᏂᎦᏪᏍᎪ ᎤᏂᏰᎸᏁ ᏧᎾᏥ.\nᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎬᏩᎵᏍᏓᏁᎴ ᎶᏗ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏔᎴᎲᎦ ᎠᎴ ᏔᏘᏄᎦ ᏣᏓᎵᎢ ᎠᎴ ᎠᏂᏔᎵ ᏗᏤᏥ ᎠᏂᎨᏴ, ᎠᏂ ᏣᏁᏙᎭ; ᏰᏣᏠᏯᏍᏓᏰᏃ ᏰᏣᏛᏓ ᎤᏂᏍᎦᏅᏨ ᎤᏂᏛᏗᏍᎬ ᎯᎠ ᎦᏚᎲᎢ.\nᎠᏏᏉᏃ ᎤᏙᎯᎸᎢ, ᎠᏂᏍᎦᏯ ᎬᏬᏯᏁᏎᎢ, ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ ᎬᏬᏯᏁᏎᎢ, ᎠᎴ ᎾᏍᏉ ᏧᏪᏥ ᎠᏂᎨᏴ ᎠᏂᏔᎵ ᏚᏃᏯᏁᏎᎢ; ᏱᎰᏩᏰᏃ ᎤᏪᏙᎵᎨᎢ; ᎠᎴ ᎬᏩᏄᎪᏫᏎᎢ, ᎦᏚᎲᏃ ᏙᏱᏗᏢ ᏫᎬᏪᎧᏁᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎿᏉ ᏙᏱᏗᏢ ᏫᏗᎨᏥᎧᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎭᎵᏘ ᎲᏅ ᎯᏍᏕᎸ; ᏞᏍᏗ ᏩᎦᏔᎲᏒᎩ, ᏞᏍᏗ ᎠᎴ ᎯᎸᎯᏢ ᎤᏬᏓᎸ ᏣᎴᏫᏍᏔᏅᎩ; Ꮎ ᏦᏓᎸ ᏩᏗᏢᏍᏓ, ᏰᏣᏛᏓᎾᏏ.\nᎶᏗᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ;\nᎬᏂᏳᏉ ᎯᏅᏏᏓᏍᏗ ᎬᏩᎦᏘᏯ ᏣᏓᏙᎵᏍᏗ ᎨᏒ ᎯᎾᏄᎪᏫᏎᎸ, ᎠᎴ ᏣᏓᏙᎵᏍᏗ ᎨᏒ ᏣᏔᏃᎯᏍᏔᏅ, ᎾᏍᎩ ᏥᏍᎩᎾᏄᎪᏫᏎᎸ ᎬᏅ ᏍᎩᏍᏕᎸᎡᎸᎯ ᏥᎩ; ᎥᏝ ᎠᎴ Ꮎ ᏦᏓᎸ ᏰᎵ ᏫᎬᏆᏗᏫᏍᏙᏗ ᏱᎩ, ᎪᎱᏍᏗᏰᏃ ᎤᏲ ᏯᏆᏢᏔ ᎠᎴ ᏴᏥᏲᎤᎯ.\nᎬᏂᏳᏉ, ᎯᎠ ᎦᏚᎲ ᎡᏍᎦᏂᏳᏉ ᎾᎿ ᏩᏗᏢᏍᏙᏗᏱ, ᎠᎴ ᎤᏍᏗᏉ ᎦᏚᎭ; ᎾᎿᏉ ᏫᎦᏗᏢᏍᏓ; ᏝᏍᎪ ᎰᏩ ᎤᏍᏗᏉ ᏱᎩ?\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎯᎠ ᎾᏍᏉ ᏙᎬᏯᏓᏂᎸᏥᏏ, ᎾᏍᎩ ᎥᏝ ᏴᎦᏥᏛᏓ ᎯᎠ ᎦᏚᎲ ᎾᏍᎩ ᏥᏁᎢᏍᏓ.\nᏞᎩᏳ ᎾᎿ ᏩᏗᏢᏍᏓ; ᎥᏝᏰᏃ ᎪᎱᏍᏗ ᏴᎦᎦᏛᎦ ᎬᏂ ᎾᎿ ᏫᎷᏨᎭ. ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎾᎿ ᎦᏚᎲ ᏦᎠ ᏚᏃᎡᎢ.\nᏅᏙ ᎦᏳᎳ ᏗᎧᎴ ᎶᏗ ᏭᏴᎸ ᏦᎠ ᎦᏚᎲᎢ.\nᎿᏉᏃ ᏱᎰᏩ ᏓᎶᏂᎨ ᏓᏪᎵᎩᏍᎩ ᎠᏑᏴᏗ ᎠᎴ ᎠᏥᎸ ᎤᏅᎪᎥᏔᏁ ᏐᏓᎻᏱ ᎠᎴ ᎪᎹᎵᏱ, ᏱᎰᏬ ᎦᎸᎳᏗ ᏧᏓᎴᏁᎢ.\nᎠᎴ ᏚᏛᏔᏁ ᎾᏍᎩ ᏕᎦᏚᎲᎢ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎤᏬᏓᎸᎢ, ᎠᎴ ᏂᎦᏛ ᏕᎦᏚᎲ ᎠᏁᎯ ᎠᎴ ᎾᏍᎩ ᎦᏙᎯ ᎤᏰᎾᎥᎢ.\nᎠᏎᏃ ᎶᏗ ᎤᏓᎵᎢ ᎤᏍᏓᏩᏗᏒ ᎤᎦᏔᎲᏎᎢ, ᎠᎴ ‾ᎠᎹ ᏄᎵᏍᏔᏁᎢ ᎠᎴ ᎢᎦᎧᎮᎢ.\nᎡᏆᎭᎻᏃ ᏑᎾᎴᏉ ᎤᎿᎷᏎ ᎾᎿ ᏭᎷᏤ ᏱᎰᏩ ᎠᎦᏔᎲ ᎤᎴᏅᎢ;\nᏐᏓᎻᏱᏃ ᎠᎴ ᎪᎹᎵᏱ ᎢᏗᏢ ᏫᏚᎧᎾᏁᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎤᏬᏓᎸ ᎦᏙᎯ, ᎤᎪᎮᏃ, ᎠᎴ ᎬᏂᏳᏉ, ᎾᎿ ᏂᎬᎾᏛ ᏚᎦᏒᏍᏛ ᏓᎴᎲᏍᎨ ᎬᎾᏬᏙᏗᏱ ᏥᏚᎦᏒᏍᏙ ᎾᏍᎩᏯᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏚᏲᏍᏔᏅ ᎤᏬᏓᎸ ᏕᎦᏚᎲᎢ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎢᎤᏅᏓᏕᎢ, ᎠᎴ ᎶᏗ ᎤᏄᎪᏫᏎ ᎾᎿ ᎠᏲᏍᏗᏍᎬᎢ, ᎾᎯᏳ ᏥᏓᏲᏍᏗᏍᎨ ᏕᎦᏚᎲ ᎾᎿ ᎶᏗ ᎡᎲᎢ.\nᎶᏗᏃ ᏦᎠ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎣᏓᎸ ᏭᏕᏁᎢ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᎨᏴ; ᎠᏍᎦᎢᎮᏰᏃ ᏦᎠ ᎤᏕᏗᏱ; ᎤᏍᏓᎨᎸᏃ ᎡᎮᎢ, ᎤᏩᏒ, ᎠᎴ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᏂᎨᏴ.\nᎤᏓᏂᎵᎨᏃ ᎯᎠ ᏄᏪᏎᎴ ᎣᏂ ᎡᎯ, ᎩᏂᏙᏓ ᎠᎦᏴᎵᏳ, ᎥᏝ ᎠᎴ ᎡᎶᎯ ᏂᎬᎾᏛ ᏰᎭ ᎠᏍᎦᏯ ᎨᎩᏂᎷᏤᏗ ᎾᏍᎩᏯ ᎢᏳᎾᏛᏁᏗ ᏥᎩ ᎡᎶᎯ ᏂᎬᎾᏛᎢ.\nᎧ, ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎡᏂᎤᎥᎦ ᎩᏂᏙᏓ, ᎠᎴ ᎡᎾᏂᏏᏁᎸᎭ, ᎩᏂᏙᏓᏃ ᎤᏁᏢᏔᏅᎯ ᎡᏂᏍᏆᏂᎪᏓᏁᎸᎭ.\nᎾᎯᏳᏉᏃ ᎤᏒᎢ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏂᎱᏁ ᎤᏂᏙᏓ; ᎤᏓᏂᎵᎨᏃ ᎤᎷᏤ ᎠᎴ ᎤᏙᏓ ᎤᏂᏏᏁᎴᎢ; [ᎤᏙᏓᏃ] ᎥᏝ ᏳᏙᎴᎰᏎ ᎤᏂᏏᏂᎸ, ᎠᎴ ᎢᎤᏗᏛᎲ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᎩᏨᏛ, ᎾᏍᎩ ᎤᏓᏂᎵᎨ ᎯᎠ ᏄᏪᏎᎴ ᎣᏂ ᎡᎯ, ᎬᏂᏳᏉ ᎤᏒᎯ ᏒᏃᏱ ᏥᎨᏒ ᎠᏴ ᏥᏯᏂᏏᏁᎸᎩ ᎡᏙᏓ; ᎪᎯ ᎾᏍᏉ ᎤᏒ ᎡᏂᎤᏅᎭ ᎩᎦᎨ ᎠᏗᏔᏍᏗ; ᏂᎯᏃ ᎡᏒᎭ, ᎯᏯᏂᏏᏁᎸᎭ, ᎩᏂᏙᏓᏃ ᎤᏁᏢᏔᏅᎯ ᎡᏂᏍᏆᏂᎪᏓᏁᎸᎭ.\nᎾᎯᏳᏃ ᎾᏍᏉ ᎤᏒᎢ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏂᎱᏁ ᎤᏂᏙᏓ; ᎣᏂᏃ ᎡᎯ ᏚᎴᏁ ᎠᎴ ᏭᏂᏏᏁᎴᎢ; ᎤᏙᏓᏃ ᎥᏝ ᏳᏙᎴᎰᏎ ᎤᏂᏎᏂᎸ, ᎠᎴ ᎢᎤᏗᏛᎲ.\nᎾᏍᎩᏃ ᎢᏧᎳ ᎶᏗ ᏧᏪᏥ ᏗᏂᏁᎵᏛ ᏄᎵᏍᏔᏁ ᎤᏂᏙᏓ ᏧᏪᏥ.\nᎤᏓᏂᎵᎨᏃ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᎼᎠᏈ ᏚᏬᎡᎢ; ᎾᏍᎩᏃ ᎤᏂᎦᏰᎵᎨ ᎠᏂᎼᎠᏈ ᎩᎳᎯᏳ ᏣᏁᎭ.\nᎣᏂᏃ ᎡᎯ ᎾᏍᏉ ᎠᏧᏣ ᎢᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᏇᎾᎻ ᏚᏬᎡᎢ; ᎾᏍᎩᏃ ᎤᏂᎦᏴᎵᎨ ᎠᎼᏏ ᏧᏪᏥ ᎩᎳᎯᏳ ᏣᏁᎭ.\nᎠᏯᏙᎸᎢ 20\nᎡᏆᎭᎻᏃ ᎾᎿ ᎤᏂᎩᏎ ᏧᎦᎾᏮ ᎢᏗᏢ ᏭᎶᏎᎢ, ᎨᏕᏏᏃ ᏒᎵ ᎾᎿ ᎠᏰᎵ ᏭᏕᏁᎢ, ᎠᎴ ᎨᎳ ᏪᎮᎢ.\nᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎ ᏎᎵ ᎤᏓᎵᎢ ᎤᏁᎢᏍᏗᏍᎬᎢ, ᎥᎩᏙᏉ; ᎠᏈᎻᎴᎩᏃ ᎨᎳ ᎤᎬᏫᏳᎯ ᎤᏓᏅᏎ ᎠᎴ ᏎᎵ ᏭᏯᏅᎮᎢ.\nᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎤᎷᏤᎴ ᎠᏈᎻᎴᎩ ᏒᏃᏱ ᎠᏍᎩᏓᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᏣᏲᎱᏒᎯᏉ ᏂᎯ, ᏂᎦᎵᏍᏙᏗᎭ ᎾᏍᎩ ᎠᎨᏴ ᏥᏫᏯᏅᎲ; ᎩᎶᏰᏃ ᎠᏍᎦᏯ ᎤᏓᎵᎢ ᎾᏍᎩ.\nᎠᏎᏃ ᎠᏈᎻᎴᎩ ᎥᏝ ᎾᎥ ᎤᎷᏤᎸᎯ ᏱᎨᏎᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᏥᎪ ᎾᏍᏉ ᏄᏂᏍᎦᏅᏨᎾ ᏴᏫ ᏙᏘᎵ?\nᏝᏍᎪ ᎾᏍᎩ ᎥᎩᏙᏉ ᏯᏉᏎᎴᎢ, ᎠᎴ ᎠᎨᏴ ᎤᏩᏒ ᎥᎩᏙᏉ ᎤᏛᏅᎩ; ᏚᏳᎪᏛ ᎨᏒ ᎠᏆᏓᏅᏛᎢ, ᎠᎴ ᏂᏓᏍᎦᏅᎾ ᎨᏒ ᏗᏉᏰᏂ ᎾᏍᎩ ᎯᎠ ᎾᏆᏛᏁᎸ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎠᏍᎩᏓᏍᎬᎢ, ᎠᏴ ᏥᎦᏔᎭ ᏚᏳᎪᏛ ᎨᏒ ᏣᏓᏅᏛ ᎾᏍᎩ ᎯᎠ ᏂᏩᏛᏁᎸᎢ; ᎠᏴᏰᏃ ᎬᏲᏍᏙᏓᏁᎸᎩ ᏍᎩᏍᎦᏅᏤᏗᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎤᏁᎳᎩ ᏱᎬᏰᎵᏎᎴ ᎯᏯᏒᏂᏍᏗᏱ.\nᎿᏉᏃ ᏥᎯᏯᎧᏏ Ꮎ ᎠᏍᎦᏯ ᎤᏓᎵᎢ; ᎠᏙᎴᎰᏍᎩ ᎾᏏ, ᎠᎴ ᏓᏣᏓᏙᎵᏍᏓᏁᎵ, ᎾᏍᎩᏃ ᎲᏁᏍᏗᏉ; ᎢᏳᏃ ᏂᏯᎧᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᎯᎦᏔᎮᏍᏗ ᎤᏙᎯᏳᎯᏯ ᏣᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᏂᎯ ᎠᎴ ᏂᎦᏛ ᏕᏣᏓᏘᎾᎥᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏈᎻᎴᎩ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᎠᎴ ᏂᎦᏛ ᏧᏅᏏᏓᏍᏗ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᏚᏃᎮᎮᎴᎢ; ᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᎤᏣᏘ ᎠᏂᏍᎦᎢᎮᎢ.\nᎿᏉᏃ ᎠᏈᎻᎴᎩ ᎡᏆᎭᎻ ᏭᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏉ ᏍᎩᏴᏁᎸ? ᎠᎴ ᎦᏙ ᎠᏆᏛᏁᎸ ᎬᏍᎦᏅᏤᎸ, ᎾᏍᎩ ᎤᏣᏔᏅᎯ ᎡᏉᎯᏳ ᎣᎩᏍᎦᏅᎢᏍᏗᏱ ᏥᏂᏨᏁᎸ, ᎠᏴ, ᎠᎴ ᏗᏆᏤᎵ ᏴᏫ? ᎾᏍᎩ ᎢᏗᏓᏛᏁᏗ ᏂᎨᏒᎾ ᏂᏍᏋᎦ.\nᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎦᏙ ᏣᎪᎮ ᎾᏍᎩ ᎯᎠ ᏥᎿᏛᎦ?\nᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠᏍᎩᏂ ᏅᏓᏳᎵᏍᏙᏔᏅᎩ, ᎥᏝ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎠᏂ Ꭰ, ᎠᏇᎵᏒᎩ; ᎠᎴ ᏓᎬᎩᎵ ᎠᏆᏓᎵᎢᏉ ᏛᎩᏍᏛᏗ, ᎠᏇᎵᏒᎩ.\nᎤᏙᎯᏳᎯ ᎠᏗᎾ ᎥᎩᏙᏉ; ᎡᏙᏓᏰᏃ ᎤᏪᏥ, ᎠᏎᏃ ᎥᏝ ᎡᏥ ᎤᏪᏥ ᏱᎩ; ᎠᏆᏓᎵᎢᏃ ᏄᎵᏍᏔᏅᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏋᏕᎢᏍᏗᏱ ᎾᏋᏁᎸ ᎡᏙᏓ ᎦᏁᎸ ᎠᏇᏓᏍᏗᏱ, ᎯᎠ ᏅᏥᏪᏎᎸᎩ ᎠᏆᏓᎵᎢ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎣᏍᏛ ᏅᏓᏍᏆᏛᏁᎵ; ᎢᎸᎯᏢ ᎢᏂᎷᎨᏍᏗ, ᎥᎩᏙᏉ ᎭᏗᏍᎨᏍᏗ ᏍᎩᏃᎮᏍᎨᏍᏗ.\nᎠᏈᎻᎴᎩᏃ ᏫᏚᏯᏅᎮ ᎠᏫ ᎤᏂᏃᏕᎾ, ᎠᎴ ᏩᎦ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎡᏆᎭᎻ ᏚᏪᎧᏁᎴᎢ, ᎠᎴ ᏔᎵᏁ ᎢᎤᏪᎧᏁᎴ ᎤᏓᎵᎢ ᏎᎵ.\nᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏆᏤᎵᎪᎯ ᎦᏙᎯ ᎢᎬᏱᏗᏢ ᏕᎯᎧᏅ ᎠᎭ; ᎢᎸᎯᏢ ᎣᏏᏳ ᎯᏰᎸᏅᎭ ᎾᎿᏉ ᏩᏕᏅᎭ.\nᏎᎵᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎡᎶᏙ ᏌᏉ ᎢᏯᎦᏴᎵ ᎠᏕᎸ ᎤᏂᏁᎬ ᏕᏥᎥᏏ; ᎬᏂᏳᏉ ᎾᏍᎩ ᏗᏣᎦᏚᏢᏙᏗ ᎨᏎᏍᏗ ᏕᎨᏣᎧᏂᏍᎬ ᏂᎦᏛ ᎢᏤᎲᎢ, ᎠᎴ ᏂᎦᏛ ᏅᏩᎾᏓᎴᎢ; ᎾᏍᎩ ᎯᎠ ᎾᏥᏪᏎᎴ ᎠᏥᎬᏍᎪᎸᏁᎢ.\nᎡᏆᎭᎻᏃ ᎤᏁᎳᏅᎯ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ; ᎤᏁᎳᏅᎯᏃ ᎤᏅᏩᏁ ᎠᏈᎻᎴᎩ, ᎠᎴ ᎾᏍᏉ ᎤᏓᎵᎢ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ; ᎠᎴ ᏚᎾᎷᎸᏁᎢ.\nᏱᎰᏩᏰᏃ ᏗᎬᏩᎾᎷᎸᏗ ᏂᎨᏒᎾ ᏂᏚᏩᏁᎴ ᏂᎦᏛ ᎠᏈᎻᎴᎩ ᏚᏓᏘᎿᎥᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏎᎵ ᎡᏆᎭᎻ ᎤᏓᎵᎢ.\nᎠᏯᏙᎸᎢ 21\nᏱᎰᏩᏃ ᎤᏩᏛᎯᎴ ᏎᎵ ᎾᏍᎩᏯ ᎤᏁᏨᎢ, ᎠᎴ ᏱᎰᏩ ᏄᏛᏁᎴ ᏎᎵ ᎾᏍᎩᏯ ᏄᏪᏒᎢ.\nᏎᎵᏰᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎᎴ ᎡᏆᎭᎻ ᎤᏪᏥ ᎠᏧᏣ, ᎿᏉ ᎤᏛᏐᏅᎯ ᎨᏎᎢ, ᎾᎯᏳ ᏓᏁᎶᏛᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏁᎢᏍᏓᏁᎴ ᎡᏆᎭᎻ.\nᎡᏆᎭᎻᏃ ᎡᏏᎩ ᏚᏬᎡ ᎤᏪᏥ ᎤᏕᏁᎸᎯ ᎾᏍᎩ ᏎᎵ ᏧᎾᏄᎪᏫᏎᎴᎢ.\nᎡᏆᎭᎻᏃ ᎤᎱᏍᏕᏎᎴ ᎤᏪᏥ ᎡᏏᎩ ᏧᏁᎳᏉ ᏧᏒᎯᏛ ᎡᎯ ᎨᏎᎢ, ᎾᏍᎩᏯ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎸᎢ.\nᎡᏆᎭᎻᏃ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎤᏪᏥ ᎡᏏᎩ ᎤᏕᏁᎸ.\nᏎᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᎩᏰᏣᏍᏗᏱ ᏅᎬᎦ, ᎾᏍᎩᏃ ᏂᎦᏛ ᎠᎾᏛᎩᏍᎩ ᏓᏳᏂᏰᏥ ᎠᏴ ᏅᏓᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᏰᎵ ᎯᎠ ᎢᎬᏩᏪᏎᏗ ᎨᏎ ᎡᏆᎭᎻ, ᏎᎵ ᏗᏂᏲᎵ ᏙᏛᏍᏛᏂ? ᎥᏥᎾᏄᎪᏫᏏᏰᏃ ᎤᏪᏥ ᎠᏧᏣ, ᎿᏉ ᎤᏛᏐᏅᎯ ᏥᎩ.\nᎠᏲᎵᏃ ᎤᏛᏎᎢ, ᎠᎴ ᏓᏥᏍᏕᏎᎢ; ᎡᏆᎭᎻᏃ ᎤᏛᏅᎢᏍᏔᏁ ᎤᏣᏘ ᏧᎾᎵᏍᏓᏴᏗᏱ ᎾᎯᏳ ᎢᎦ ᎡᏏᎩ ᏓᏥᏍᏕᏒ.\nᏎᎵᏃ ᎤᎪᎮ ᎮᎦ ᎢᏥᏈᏱ ᎤᏕᏅᎯ ᎤᏪᏥ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᎾᏄᎪᏫᏎᎴᎢ, ᎬᏩᏰᏣᏍᏗᏍᎨᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏎᎵ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎯᎨᎯᏓ ᎯᎠ ᎠᏥᎾᏝᎢ ᎠᎨᏴ, ᎠᎴ ᎤᏪᏥ; ᎥᏝᏰᏃ ᎯᎠ ᎠᎨᏴ ᎤᏪᏥ ᎠᏥᎾᏝᎢᏉ ᎢᏧᎳᎭ ᎤᎾᏘᏰᏗ ᏱᎨᏎᏍᏗ ᏧᎬᏩᎶᏗ ᎠᏴ ᎠᏇᏥ, ᎯᎠ ᎾᏍᎩ ᎡᏏᎩ.\nᎯᎠᏃ ᎾᏍᎩ ᎤᏣᏘ ᎤᏲ ᎤᏓᏅᏓᏗᏍᏔᏁ ᎡᏆᎭᎻ, ᎤᏪᏥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎥᏞᏍᏗ ᎤᏲ ᏱᏣᏓᏅᏓᏗᏍᏗᏍᎨᏍᏗ ᏱᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎾᏍᎩᎾ ᎠᏧᏣ, ᎠᎴ ᏱᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᎯᎾᏝᎢ ᎠᎨᏴ; ᏂᎦᎥᏉ ᏎᎵ ᏂᏣᏪᏎᎸ, ᎯᏯᏛᏓᏍᏓᏏᏉ ᎧᏁᎬᎢ; ᎡᏏᎩᏰᏃ ᏚᏙᎥ ᎨᏥᏯᏅᏗᏍᎨᏍᏗ ᏣᏁᏢᏔᏅᎯ.\nᎠᎴ ᎾᏍᏉ ᎯᎠ ᎠᏥᎾᏝᎢ ᎠᎨᏴ ᎤᏪᏥ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏅᏓᎦᏥᏴᏁᎵ, ᏂᎯ ᏤᏥ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ.\nᎡᏆᎭᎻᏃ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᎠᎴ ᎦᏚ ᎤᎩᏎ ᎠᎴ ᎠᏑᏢᏛ ᎠᎹ ᎬᏟᏍᏗ ᎤᏁᎩᏎᎢ, ᎮᎦᏃ ᏚᏁᎴᎢ, ᎠᎴ ᏓᎦᏰᏅᏔᏁᎢ, ᎠᎴ ᎠᎦᏂᎩᏍᏔᏁᎢ; ᎤᏂᎩᏎᏃ, ᎠᎴ ᏈᏯᏏᏆ ᎢᎾᎨ ᎨᏒ ᏭᏪᏙᎴᎢ.\nᎠᎹᏃ ᎤᏗᏒᏁ ᎠᏑᏢᏛ ᎠᏟᏍᏛᎢ, ᎠᎴ ᎤᎾᏍᏓᎸ ᎭᏫᏂᏗᏢ ᎤᏪᎧᏁ ᎠᏧᏣ.\nᎤᏪᏅᏎᏃ, ᎠᎴ ᎠᏧᏣ ᎦᏅᎬ ᏧᏳᎪᏗ ᏧᏪᏁᎢ ᏰᎵ Ꭸ ᎢᏴᏛ, ᎦᎶᏣᏗ ᏥᏂᏕᎦᎶᏄᎳ ᎢᏴᏛ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᏥᎪᎥᎩ ᎠᏧᏣ ᎠᏲᏞᏍᎬᎢ; ᎦᏅᎬᏃ ᏧᏳᎪᏗ ᎤᏬᎴᎢ, ᎠᎴ ᎠᏍᏓᏯ ᎤᏠᏱᎴᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᏛᎦᏁ ᎠᏧᏣ ᎤᏪᎷᎬᎢ; ᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎦᎸᎳᏗ ᎢᏴᏛ ᏧᏁᏤᎴ ᎮᎦ, ᎠᎴ ᎯᎠ ᏅᏧᏪᏎᎴᎢ, ᎦᏙ ᎭᎵᏍᏗᎭ, ᎨᎦ? ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ; ᎤᏁᏔᏅᎯᏰᏃ ᎠᏛᎬᎦ ᎤᏪᎷᎬ ᎠᏧᏣ ᎾᎿ ᎦᏅᎬᎢ.\nᏔᎴᎲᎦ, ᎯᏌᏔᏛᎦ ᎠᏧᏣ, ᎠᎴ ᎯᏂᏴᏎᏍᏗ; ᎤᏂᏣᏘᏰᏃ ᏴᏫ ᎤᎾᏓᏤᎵᏛ ᏅᏓᏥᏴᏁᎵ.\nᎤᏁᎳᏅᎯᏃ ᏚᏍᏚᎢᎡᎴ ᏗᎦᏙᎵ, ᎠᎴ ᎤᎪᎮ ᎠᏓᎴᏒ ᎠᎴ ᎠᏢᏗᏱ; ᎤᏪᏅᏎᏃ ᎠᎴ ᎠᏑᏢᏛ ᎠᎹ ᏭᏟᏍᏔᏁᎢ, ᎠᎴ ᎤᎱᏁ ᎠᏧᏣ.\nᎤᏁᎳᏅᎯᏃ ᏓᎧᎿᏩᏗᏙᎮ ᎠᏧᏣ, ᎠᎴ ᎤᏛᏎᎢ; ᎠᎴ ᎢᎾᎨᏉ ᎡᎮᎢ, ᎠᎴ ᎤᏛᏒ ᎦᎶᏣᏗ ᎦᏂᏙᎯ ᏄᎵᏍᏔᏁᎢ.\nᏇᎳᏂᏃ ᏚᏙᎥ ᎢᎾᎨ ᎡᎮᎢ; ᎤᏥᏃ ᎢᏥᏈᏱ ᏭᏯᏅᎡᎴ ᎤᏓᏴᏍᏗ.\nᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏈᎻᎴᎩ ᎠᎴ ᏈᎪᎵ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏓ ᎠᏈᎻᎴᎩ ᏧᏤᎵᎦ ᎤᏂᏣᏘ ᎨᏒ ᏧᏓᏘᎾᎢ, ᎬᏩᏁᏤᎴ ᎡᏆᎭᎻ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎤᏁᎳᏅᎯ ᏕᏣᎧᎿᏩᏗᏙᎭ ᏂᎦᎥ ᎪᎱᏍᏗ ᎭᏛᏁᎲᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏂᏉ ᏍᏆᏎᎵᏓᏏ ᎤᏁᎳᏅᎯ ᏚᏙᏍᏛᎢ, ᎾᏍᎩ ᎦᎶᏄᎮᏛ ᏍᏋᏓᏁᏗᏱ ᏂᎨᏒᎾ, ᎠᏴ ᎠᏋᏒ, ᎠᎴ ᏗᏇᏥ, ᎠᎴ ᏗᏆᏁᏢᏔᏅᏛ; ᎾᏍᎩᏯᏍᎩᏂ ᎠᏴ ᎣᏍᏛ ᏂᎬᏯᏛᏁᎸᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᎠᏴ ᏂᏍᏆᏛᏁᎮᏍᏗ, ᎠᎴ ᎦᏓ ᎠᎲ ᎾᎿ ᏤᏙᎸᎢ, ᎾᏍᎩᏯ ᎾᏍᏉ ᏅᏔᏛᏁᎵ.\nᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏓᎦᏎᎵᏔᏂᏉ.\nᎡᏆᎭᎻᏃ ᎤᎬᏍᎪᎸᏁ ᎠᏈᎻᎴᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ, ᎾᏍᎩ ᎠᏈᎻᎴᎩ ᏧᏅᏏᏓᏍᏗ ᎬᏍᎦᎢᏍᏓᎩ ᎬᏩᎩᎡᎸᎢ.\nᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏥᎦᏔᎭ ᎾᏍᎩ ᎯᎠ ᎢᏳᎾᏛᏁᎸᎯ ᎨᏒᎢ; ᎥᏝ ᎠᎴ ᏱᏍᎩᏃᏁᎴᎢ, ᎥᏝ ᎠᎴ ᏱᎦᏛᎩᏍᎨᎢ ᎩᎳ ᎪᎯ ᎢᎦ ᏥᎩ.\nᎡᏆᎭᎻᏃ ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᎴ ᏩᎦ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎠᏈᎻᎴᎩ ᏚᏪᎧᏁᎴᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏂᏔᎵ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏔᏁᎢ.\nᎡᏆᎭᎻᏃ ᎦᎵᏉᎩ ᎠᏫ ᎤᏂᏃᏕᎾ ᎠᏂᎩᏏ ᎤᎾᏕᏘᏴᏛ ᎤᎾᏁᎳᎩ ᎢᏴᏛ ᏫᏚᏪᎧᏁᎢ.\nᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏆᎭᎻ, ᎦᏙᏃ ᎯᎠ ᎦᎵᏉᎩ ᎠᏫ ᎠᏂᎩᏏ ᎤᎾᏕᏘᏴᏛ ᎤᎾᏁᎳᎩ ᎢᏴᏛ ᏥᏕᎯᎧᎲᎦ?\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎠᏍᎩᏂ ᎦᎵᏉᎩ ᎠᏫ ᎠᏂᎩᏏ ᎤᎾᏕᏘᏴᏛ ᏙᏓᏍᎩᏯᏅᎡᎵ, ᎾᏍᎩᏃ ᎬᏉᎯᏳᏓᏁᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏴ ᎠᏆᏍᎪᏒᎯ ᎨᏒ ᎯᎠ ᎠᎹ ᎠᏢᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎿ ᏈᏯᏏᏆ ᏚᏬᎡᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎾᎿ ᎢᏧᎳ ᎾᏍᎩ ᎠᏂᏔᎵ ᎤᎾᏎᎵᏔᏅᎢ.\nᎾᏍᎩᏃ ᏈᏯᏏᏆ ᏚᏛ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏔᏁᎢ; ᎿᏉᏃ ᎠᏈᎻᎴᎩ ᏚᎴᏁᎢ, ᎠᎴ ᏈᎪᎵ ᏄᎬᏫᏳᏒ ᎠᏍᎦᏰᎬᏍᏓ ᎠᏈᎻᎴᎩ ᏧᏤᎵᎦ ᎤᏂᏣᏘ ᏧᏓᏘᎾᎢ, ᎠᎴ ᎢᎤᎾᏨᏎ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎪᎯ ᏫᎤᏂᎷᏤᎢ.\n[ᎡᏆᎭᎻᏃ] ᎤᏪᎧᏁ ᎡᏏᎵ ᏡᎬᎢ ᏈᏯᏏᏆ ᏚᏙᎥᎢ, ᎠᎴ ᎾᎿ ᎤᏓᏙᎵᏍᏔᏁᎴ ᏱᎰᏩ ᎾᏍᎩ ᏫᎾᏍᏛᎾ ᎡᎯ ᎤᎾᎳᏅᎯ.\nᎡᏆᎭᎻᏃ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎪᎯ ᎦᏙᎯ ᎪᎯᏗᏳ ᎤᏪᏙᎴᎢ.\nᎠᏯᏙᎸᎢ 22\nᎣᏂᏃ ᎯᎠ ᎾᏍᎩ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᎪᎵᏰᎡ ᎡᏆᎭᎻ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎡᏆᎭᎻ; ᎡᏆᎭᎻᏃ ᎠᏂ, ᎤᏛᏁᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᏯᏘᏄᎦ ᏤᏥ, ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᏤᏥ, ᎡᏏᎩ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎠᎨᏳᎢ ᏥᎩ, ᎠᎴ ᎼᎵᏯ ᎦᏓ ᏗᎲ ᏫᎷᎩ; ᎠᎴ ᎾᎿ ᎯᏯᎵᏍᎪᎸᏔᏅᎭ ᎠᏥᎸ ᎨᎳᏍᏙᏗ, ᎾᎿ ᎣᏓᎸ ᏨᏓᎬᏯᏎᎮᎵ.\nᎡᏆᎭᎻᏃ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᎠᎴ ᎤᏪᏰᎱᎳᏁ ᎤᏤᎵ ᏗᎦᎵᏯᏅᎯᏛ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᏫᏅ ᏧᏅᏏᏓᏍᏗ ᏚᏘᏅᏎᎢ, ᎠᎴ ᎤᏪᏥ ᎡᏏᎩ, ᎠᎴ ᎠᏓ ᏚᏍᏡᏰ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᏙᏗ, ᏚᎴᏁᏃ, ᎠᎴ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏓᏁᎸ ᏭᎶᏎᎢ.\nᏦᎢᏁᏃ ᎢᎦ ᎡᏆᎭᎻ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᎢᏅ ᏚᎪᎮ ᎾᎿ ᏩᎦᏛᎢ.\nᎡᏆᎭᎻᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᏂᏫᏅ ᏧᏅᏏᏓᏍᏗ ᎠᏂᏉ ᎢᏍᏕᏙᎮᏍᏗ ᏗᎦᎵᏯᏅᎯᏛ ᎡᏍᏗxᏘᏰᏍᏗ; ᎠᏴᏃ ᎠᎴ ᎠᏫᏄᏣ Ꭸ ᏮᏓᏲᏍᏓᏓᏙᎵᏍᏔᏂ, ᏔᎵᏁᏃ ᎢᏍᏛᎷᏤᎸᎭ.\nᎡᏆᎭᎻᏃ ᎠᏓ ᏚᏴᎮ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᏙᏗ ᎠᎴ ᏚᏃᎭᏝᏗᏍᏔᏁ ᎤᏪᏥ ᎡᏴᎩ; ᎠᏥᎸᏃ ᎤᏴᏎᎢ, ᎠᎴ ᎭᏰᎳᏍᏗ ᎤᏪᏅᏎᎢ, ᎾᏍᎩᏃ ᎠᏂᏔᎵ ᎢᏧᎳᎭ ᎤᏁᏅᏎᎢ.\nᎡᏏᎩᏃ ᎤᏁᏤᎴ ᎤᏙᏓ ᎡᏆᎭᎻ, ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ; ᎡᏆᎭᎻᏃ ᎠᏂ, ᎠᏇᏥ, ᎤᏛᏁᎢ, ᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎠᏉ ᎠᏥᎸ ᎠᎴ ᎠᏓ, ᎠᏫᏍᎩᏂ ᎠᏥᎸ ᎨᎳᏍᏙᏗ ᎭᏢ?\nᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏇᏥ, ᎤᏁᎳᏅᎯ ᎤᏩᏒ ᏛᏓᏩᏛᎡᎵ ᎠᏫ ᎠᏥᎸ ᎨᎳᏍᏙᏗ; ᎾᏍᎩᏃ ᎠᏂᏔᎵ ᎢᏧᎳᎭ ᎬᎾᎢᏎᏉ.\nᎿᏉᏃ ᎤᏂᎷᏤ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᏁᎢᏍᏓᏁᎸᎢ; ᎡᏆᎭᎻᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏬᏢᏁ ᎾᎿᏂ ᎠᎴ ᎠᏓ ᎣᏍᏛ ᏚᏝᏕᎢ, ᎠᎴ ᎤᎸᎴ ᎤᏪᏥ ᎡᏏᎩ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏢᏁᎢ, ᎠᏓ ᏕᎠᏢ ᎦᏚᎢ.\nᎡᏆᎭᎻᏃ ᎤᏙᏯᏅᎯᏕ ᎠᎴ ᎭᏰᎳᏍᏗ ᎤᏴᎮ ᎤᎯᏍᏙᏗ ᎤᏪᏥ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᏧᏁᏤᎴ ᎦᎸᎳᏗ, ᎯᎠ ᏅᏧᏪᏎᎢ, ᎡᏆᎭᎻ, ᎡᏆᎭᎻ: ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏂ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎯᏯᏏᏔᏛᎩ ᎠᏫᏄᏣ, ᏞᏍᏗ ᎠᎴ ᎪᎱᏍᏗ ᎯᏴᏁᎸᎩ; ᎿᏉᏰᏃ ᏥᎦᏔᎭ ᎤᏁᎳᏅᎯ ᎯᎾᏰᏍᎬᎢ, ᏂᏍᎩᎨᏳᏔᏅᎾ ᏥᎩ ᏤᏥ, ᎤᏩᏒᎯᏳ ᏤᏥ.\nᎡᏆᎭᎻᏃ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎠᎴ ᏭᎪᎮ ᎤᏐᎭᏛ ᎢᏗᏢ ᎠᏫ ᎤᏙᏕᎾ ᏧᎪᏅᏍᏓᎵ ᏧᏲᏅᎯ ᏕᎫᏓᎸᏕ ᎤᎾᏍᏓᎸᎢ; ᎡᏆᎭᎻᏃ ᎤᏪᏅᏎ ᏭᏯᏅᎮ ᎾᏍᎩ ᎠᏫ ᎤᏃᏕᎾ, ᎠᎴ ᎤᎵᏍᎪᎸᏔᏁ ᎠᏥᎸ ᎨᎳᏍᏙᏗ ᎤᏁᏟᏴᏍᏔᏁ ᎤᏪᏥ.\nᎡᏆᎭᎻᏃ ᏱᎰᏩ-ᏱᎴ ᏚᏬᎡ ᎾᎿᏂ; ᎾᏍᎩ ᎩᎳᎯᏳ ᎢᎦᏪᏛ ᏥᎩ, ᏱᎰᏩ ᎤᏤᎵ ᎣᏓᎸ ᎠᏩᏛᏗ ᎨᏎᏍᏗ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᏔᎵᏁ ᎦᎸᎳᏗ ᏗᎤᏁᏤᎴ ᎡᏆᎭᎻ,\nᎠᎴ ᎯᎠ ᏅᏧᏪᏎᎢ, ᎠᏋᏒ ᎨᎥ ᎠᏆᏎᎵᏙᏔᏅ, ᎠᏗᎭ ᏱᎰᏩ, ᎯᎠ ᏥᏂᏣᏛᏁᎸ, ᎠᎴ ᏤᏥ, ᎾᏍᎩ ᎤᏩᏒᎯᏳ ᏤᏥ, ᏂᏍᎩᎨᏳᏔᏅᎾ ᏥᎩ ᏅᏗᎦᎵᏍᏙᏗᎭ;\nᎾᏍᎩ ᏂᎯ ᎤᏣᏘ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎤᏣᏘ ᏓᎦᏥᏁᏉᎢ, ᎾᏍᎩᏯ ᏥᏄᏂᏧᏈᏍᏗ ᏃᏈᏏ ᎦᎸᎳᏗ ᏣᏂᎧᎳ, ᎠᎴ ᎾᏍᎩᏯ ᏃᏳ ᏥᏄᏧᏈᏍᏗ ᎠᎺᏉᎯ ᎠᎹᏳᎶᏗ ᏥᎦᎳᎨᏯ, ᎾᏍᎩᏯ ᏅᏓᎦᏥᏴᏁᎵ; ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏧᎾᏤᎵᎦ ᎨᏎᏍᏗ ᎬᏩᏂᏍᎦᎩ ᏚᏂᏍᏚᎲᎢ.\nᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏄᎾᏓᎴᏒ ᏴᏫ ᎡᎶᎯ ᎠᏁᎲ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᏥᏁᎬ ᏦᎯᏳᎲᎦ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᎡᏆᎭᎻᏃ ᎠᏂᏫᏅ ᏧᏅᏏᏓᏍᏗ ᏫᏙᎤᎷᏤᎴᎢ, ᏚᎾᎴᏁᏃ, ᎠᎴ ᎢᏧᎳᎭ ᏈᏯᏏᏆ ᏭᏂᎶᏎᎢ; ᎡᏆᎭᎻᏃ ᏈᏯᏏᏆ ᏪᎮᎢ.\nᎣᏂᏃ ᎯᎠ ᎾᏍᎩ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᏥᏃᏁᎴ ᎯᎠ ᏫᏥᏪᏎᎴᎢ, ᎬᏂᏳᏉ, Ꮋ﹕ᎵᎦ ᏗᏂᏲᎵ ᏚᎾᏄᎪᏫᏎᎸ ᏗᏍᏓᏓᏅᏟ ᏁᎰ,\nᎭᏏ ᎤᏓᏂᎵᎨᎢ, ᏆᏏᏃ ᎤᏅᏟ, ᎠᎴ ᎨᎽᎡᎵ ᎡᎳᎻ ᎤᏙᏓ,\nᎠᎴ ᎨᏎᏗ, ᎠᎴ ᎮᏐ, ᎠᎴ ᏈᎵᏓᏏ, ᎠᎴ ᏱᏗᎳᏈ, ᎠᎴ ᏇᏚᎡᎵ.\nᏇᏚᎡᎵᏃ ᎤᏪᏥ ᎵᏇᎩ ᎤᏕᏁᎴᎢ; ᎾᏍᎩ ᎯᎠ ᏧᏁᎳ ᎢᏯᏂᏛ Ꮋ﹕ᎵᎦ ᏚᎾᏄᎪᏫᏎᎴ ᏁᎰ, ᎡᏆᎭᎻ ᏗᎾᏓᏅᏟ.\nᏔᎵᏃ ᏧᏩᏔᏁ ᏧᏓᏴᏎ ᎵᏳᎹ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎾᏍᏉ ᏚᎾᏄᎪᏫᏎᎢ, ᏘᏆ, ᎠᎴ ᎨᎭᎻ, ᏓᎭᏏ, ᎠᎴ ᎺᎠᎧ.\nᎠᏯᏙᎸᎢ 23\nᏎᎵᏃ ᎠᏍᎪᎯᏧᏈ ᎦᎵᏉᎩᏦᏁ ᎢᏳᏕᏘᏴᏛ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩ ᎯᎠ ᏄᏕᏘᏴᎮ ᎤᎴᏂᏙᎴ ᏎᎵ.\nᏎᎵᏃ ᎤᏲᎱᏎ ᎩᎵᎠ-ᎠᏆ ᏚᏙᎥᎢ; ᎾᏍᎩ ᎯᎠ ᎯᏆᏂ ᏥᏚᏙᎠ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ; ᎡᏆᎭᎻᏃ ᎤᎷᏤ ᎤᏲ ᎤᏓᏅᏓᏗᎴ ᏎᎵ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ ᎠᎴ ᎤᏍᎪᏂᎵᎴᎢ.\nᎡᏆᎭᎻᏃ ᏚᎴᏁ ᎤᏲᎱᎯᏎᎸᎯ ᎦᏅᎢ, ᎠᎴ ᏚᏁᏤᎴ ᎮᏗ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏎᎢ,\nᎠᏴ ᏅᏆᏓᎴ ᎠᎴ ᎨᏙᎯᏉ ᎢᏤᎲᎢ; ᏍᎩᎥᏏ ᏗᏆᏓᏂᏐᏗᏱ ᎢᏤᎲᎢ, ᎾᏍᎩ ᏗᏥᏂᏐᏗᏱ ᏗᎬᎩᏲᎱᎯᏎᎸᎯ ᎾᎿ ᏗᏥᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ.\nᎮᏗᏃ ᏧᏪᏥ ᎬᏩᏁᏤᎴ ᎡᏆᎭᎻ, ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ,\nᏍᎩᏯᏛᏓᏍᏓᏏ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎤᏣᏘ ᎡᎶᎸᏉᏗᏳ ᏣᎬᏫᏳᎯ ᏥᏍᎩᏰᎳᏗᏙᎭ; ᏦᎯᏍᏙᏗ ᏦᎦᏓᏂᏐᏗᏱ ᏣᏕᎯᏂᏏᏍᎨᏍᏗ ᏗᎨ ᏲᎱᎯᏎᎸᎯ; ᎥᏝ ᎠᏏᏴᏫ ᎠᏴ ᏃᎦᏛᏅ ᏣᎨᏳᏙᏗ ᏱᎨᏎᏍᏗ ᏧᏓᏂᏐᏗᏱ; ᎾᏍᎩ ᎯᏂᏐᏗᏱ ᏂᎨᏒᎾ ᏣᏲᎱᎯᏎᎸᎯ.\nᎡᏆᎭᎻᏃ ᏚᎴᏁᎢ, ᎠᎴ ᏚᏗᏌᏓᏕᎴ ᏴᏫ ᎾᎿ ᎠᏁᎯ, ᎾᏍᎩ ᎯᎠ ᎮᏗ ᏧᏪᏥ,\nᎠᎴ ᏚᎵᏃᎮᏔᏁᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᎢᏳᏃ ᎣᏏᏳ ᎢᏥᏰᎸᏍᎨᏍᏗ ᏥᏂᏐᏗᏱ ᎠᎩᏲᎱᎯᏎᎸᎯ ᏥᎪᏩᏛᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ, ᏍᎩᏯᏛᎬᎦ, ᎠᎴ ᏍᎩᏍᏕᎸ ᎡᏥᏔᏲᏏ ᎢᏆᎶᏂ ᏐᎭ ᎤᏪᏥ;\nᎾᏍᎩ ᎠᎩᏁᏗᏱ ᎤᏍᏓᎦᎸ ᎹᏈᎳ, ᎾᏍᎩ ᎤᏤᎵᎦ ᏥᎩ, ᎾᏍᎩ ᎤᎶᎨᏒ ᏩᏍᏛ ᏧᏍᏓᎦᎸ; ᎾᏍᎩ ᎢᎦᎢᏉ ᎠᏕᎸ ᏧᎬᏩᎶᏗ ᎨᏒ ᏓᎩᎬᏩᎶᏓᏁᎸᎭ, ᎠᎩᏁᎸᎭ, ᎠᏆᏤᎵᎦ ᏂᎦᎵᏍᏔᏅ ᎾᏍᎩ ᏗᏆᏓᏂᏐᏗᏱ ᎢᏤᎲᎢ.\nᎢᏆᎶᏂᏃ ᎮᏗ ᏧᏪᏥ ᎠᏁᎲ ᎤᏓᏑᏰᎢ; ᎢᏆᎶᏂᏃ ᎠᎯᏗ ᎤᏁᏤᎴ ᎡᏆᎭᎻ ᎠᏂᎦᏔᎲ ᎮᏗ ᏧᏪᏥ, ᎾᏍᎩ ᏂᎦᏛ ᎤᏤᎵᎦ ᎦᏚᎲ ᎠᏐᏴ ᎦᎶᎯᏍᏗᏱ ᎠᏂᏴᏍᏗᏍᎩ, ᎯᎠ ᏄᏪᏎᎢ,\nᎥᏝ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎠᏴᏍᎩᏂ ᏍᏆᏛᏓᏍᏓᏏ; ᏠᎨᏏ ᎬᎥᏏ, ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸᎢ ᎬᎥᏏ;ᏘᏆᏤᎵ ᏴᏫ ᏄᏁᏥ ᎠᏂᎦᏔᎲ ᎾᏍᎩ ᎬᎥᏏ; ᎯᏂᏌᏉ ᏣᏲᎱᎯᏎᎸᎯ.\nᎡᏆᎭᎻᏃ ᎤᏗᏌᏓᏕ ᏴᏫ ᎾᎿ ᎠᏁᎯ ᎠᏂᎦᏔᎲᎢ.\nᎠᎴ ᎤᏁᏤᎴ ᎢᏆᎶᏂ ᎾᎿ ᎠᏁᎯ ᏴᏫ ᎤᎾᏛᏓᏍᏛᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᏍᎩᏁᎮᏍᏗ, ᎬᏔᏲᏏ ᏍᏆᏛᏓᏍᏓᏁᏗᏱ, ᎠᏕᎸ ᏙᏓᎬᏁᎵ ᏠᎨᏏ ᏓᎬᏯᏓᏴᎡᎵ; ᏗᏍᎩᎩᏏ, ᎾᎿᏃ ᏥᏂᏌᏅᎭ ᎠᎩᏲᎱᎯᏎᎸᎯ.\nᎢᏆᎶᏂᏃ ᎤᏁᏤᎴ ᎡᏆᎭᎻ, ᎯᎠ ᏄᏪᏎᎴᎢ,\nᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎠᏴ ᏍᏆᏛᏓᏍᏓᏏ; ᎾᏍᎩ ᎦᏙᎯ ᏅᎩᏧᏈ ᏎᎩᎵ ᎠᏕᎸ ᎤᏁᎬ ᏧᎬᏩᎶᏗ; ᎦᏙᏃ ᎩᏅᏙᏗ ᎠᏴ ᎠᎴ ᏂᎯ ᎾᏍᎩᏉ ᎢᎦᎢ? ᎯᏂᏌᏉᏍᎩᏂ ᏣᏲᎱᎯᏎᎸᎯ.\nᎡᏆᎭᎻᏃ ᎤᏛᏓᏍᏓᏁᎴ ᎢᏆᎶᏂ, ᎠᎴ ᎡᏆᎭᎻ ᎠᏕᎸ ᎤᏁᎬ ᎤᏓᏁᎴ ᎢᏆᎶᏂ ᎾᏍᎩ ᎢᎦᎢ ᎤᏁᎢᏍᏔᏅ ᎤᎾᏛᏓᏍᏛ ᎮᏗ ᏧᏪᏥ, ᏅᎩᏧᏈ ᏎᎩᎵ ᎠᏕᎸ ᎤᏁᎬ ᎠᏂᏃᏗᏍᎩ ᎤᏂᏃᏔᏂᏓᏍᏗ.\nᎢᏆᎶᏂᏃ ᎤᎶᎨᏒ ᎹᏈᎳ ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ ᏥᎦᎶᎨᏎᎢ, ᏠᎨᏏ ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸᎢ, ᎠᎴ ᏂᎦᏛ ᏕᏡᎬ ᎾᎿ ᏠᎨᏏ, ᎭᏫᏂᏗᏢ ᏓᏟᎶᎢᏙᎸ ᎬᏩᏚᏫᏛ, ᏓᏥᏍᏓᏱᏕᎴ\nᎡᏆᎭᎻ ᏧᏤᎵᎦᏯ ᏂᏓᎬᏁᎴᎢ, ᎠᏂᎦᏔᎲ ᎮᏗ ᏧᏪᏥ; ᎾᏍᎩ ᏂᎦᏛ ᎤᏪᏚᎲ ᎦᎶᎯᏍᏗᏱ ᎠᏂᏴᏍᏗᏍᎩ ᎠᏂᎦᏔᎲᎢ.\nᎣᏂᏃ ᎿᏉ ᎡᏆᎭᎻ ᎤᏂᏌᏁ ᎤᏓᎵᎢ ᏎᎵ ᎹᎩᏈᎳ ᏠᎨᏏ ᎤᏍᏓᎦᎸᎢ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ ᏥᎦᎶᎨᏎᎢ; ᎾᏍᎩ ᎯᏆᏂ ᏥᏚᏙᎥ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ.\nᎾᏍᎩᏃ ᏠᎨᏏ ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸᎢ, ᎮᏗ ᏧᏪᏥ ᎬᏩᏍᏓᏱᏕᎴ ᎡᏆᎭᎻ, ᎤᏤᎵᎦᏯ ᏂᎬᏩᏁᎴ ᏗᏓᏂᏐᏗᏱ.\nᎠᏯᏙᎸᎢ 24\nᎡᏆᎭᎻᏃ ᎤᏛᏐᏅᎯ ᎨᏎᎢ, ᎠᎴ ᏧᏕᏘᏱᎶᏛ; ᏱᎰᏩᏃ ᏂᎦᎥ ᎪᎱᏍᏗ ᎣᏍᏛ ᎢᏳᏛᏁᎸᎯ ᎨᏎ ᎡᏆᎭᎻ.\nᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏓᏂᎵᎨ ᎤᏅᏏᏓᏍᏗ ᎦᏁᎸ ᎡᎯ, ᎾᏍᎩ ᏂᎦᎥ ᎤᎿᎥ ᎤᎬᏫᏳᏌᏕᎩ, Ꭷ, ᏦᏕᏂ ᏥᎦᎶ ᎭᏫᏂᏗᏢ ᎯᏄᏴᏓ;\nᎾᏍᎩᏃ ᏓᎬᏯᏎᎵᏙᏔᏂ ᏱᎰᏩ ᏚᏙᏍᏛᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᎸᎳᏗ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᎶᎯ, ᎾᏍᎩ ᎠᏂᎨᎾᏂ ᏧᏁᏥ ᏫᏯᏅᎡᏗ ᏂᎨᏒᎾ ᎠᏇᏥ ᎤᏓᏴᏍᏗ, ᎾᏍᎩᎾ ᎠᏁᎲ ᏣᏆᏓᏑᏯ;\nᎠᏆᏤᎵᎪᎯᏍᎩᏂ ᏮᏘᎶᏏ, ᎠᎴ ᏗᎩᏴᏫ ᏗᏁᎲᎢ, ᎠᎴ ᎾᎿ ᏮᏘᏯᏅᎯ ᎠᏇᏥ ᎡᏏᎩ ᎤᏓᏴᏍᏗ.\nᎤᏅᏏᏓᏍᏗᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᎾᏃ ᎠᎨᏴ ᏄᏚᎵᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎠᏂ ᎢᏴᏛ ᎠᎩᏍᏓᏩᏙᎯᏍᏗᏱ; ᏥᎪ ᎠᏎ ᎾᎿ ᏗᏣᏓᎴᏅ ᎢᏴᏛ ᏫᏥᏯᏗᏃᎯᏍᏗ ᎢᎨᏎᏍᏗ ᏤᏥ?\nᎡᏆᎭᎻᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎠᏇᏥ ᏔᎵᏁ ᎭᎿ ᏥᏫᎯᏯᏘᏅᏍᏔᏂ.\nᏱᎰᏩ ᎦᎸᎳᏗ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᏩᎩᏯᏅᏛ ᏥᎩ ᎡᏙᏓ ᎦᏁᎸ, ᎠᎴ ᏗᎩᏴᏫ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏣᎩᏁᏤᎸᎩ, ᎠᎴ ᎾᏍᎩ ᏣᏆᏎᎵᏓᏁᎸᎩ ᎯᎠ ᏥᏄᏪᏒᎩ, ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎯᎠ ᎦᏙᎯ ᏓᎦᏥᏁᎵ; ᎾᏍᎩ ᏓᎦᏅᏏ ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱᏗᏢ ᏫᎦᏛᎢ, ᎠᎴ ᎭᎿ ᏮᏘᏯᏅᎯ ᎠᏇᏥ ᎤᏓᏴᏍᏗ.\nᎢᏳᏃ ᎠᎨᏴ ᏄᏚᎵᏍᎬᎾ ᎢᎨᏎᏍᏗ ᏅᏓᏣᏍᏓᏩᏛᏍᏗᏱ, ᎿᏉ ᏣᏚᏓᎴᏛ ᎨᏎᏍᏗ ᎯᎠ ᎾᏍᎩ ᏍᏆᏎᎵᏓᏁᎸᎢ; ᏞᏍᏗ ᎠᏗᎾ ᎠᏇᏥ ᏔᎵᏁ ᎾᎿ ᏥᏫᎯᏯᏘᏅᏍᏔᏂ.\nᎠᏥᏅᏏᏓᏍᏗᏃ ᎤᏏᏄᏴᏔᏁ ᎤᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎦᎦᎶ ᎭᏫᏂᏗᏢ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᎬᏩᎵ ᎤᏎᎵᏓᏁᎴᎢ.\nᎨᎻᎵᏃ ᏕᎤᎵᏂᏆᏅᏔᏁ ᏙᏱᏗᏢ ᎦᏚᎲᎢ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ, ᎿᏉ ᎤᏒᎯᏰᏱ ᏥᎨᏐᎢ, ᎾᏁᏳ ᎠᏂᎨᏴ·ᎠᎹ ᏥᏓᏂᏟᏍᎪᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎣᏍᏛ ᏫᎾᏆᎵᏍᏓᏏ ᎪᎯ ᎢᎦᏥᎩ, ᎠᎴ ᎣᏍᏛ ᏂᏯᏛᏂᏏ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ.\nᎬᏂᏳᏉ ᎠᏴ ᎠᏂ ᏥᏙᎦ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ; ᎠᎴ ᎦᏚᎲ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᏧᏁᏥ ᎠᏂᎨᏴ ᎠᎹ ᏓᏂᏢᎯᎯᎭ;\nᎯᎠᏃ ᏫᏂᎦᎵᏍᏓ, ᎾᏍᎩ ᎠᏛ ᎯᎠ ᏂᏥᏪᏎᎸᎭ, ᎡᎳᏗ ᏅᎦ ᎠᎹ ᏣᏟᏍᏗ, ᎠᎴ ᎦᏗᏔ; ᎯᎠᏃ ᎾᎩᏪᏎᎸᎭ, ᎭᏗᏔ, ᎠᎴ ᎾᏍᏉ ᎨᎻᎵ ᏙᏓᎬᏯᏗᏔᏍᏓᏁᎵ; ᎾᏍᎩ ᎯᏅᏏᏓᏍᏗ ᎡᏏᎩ ᎯᏯᏑᏯᎡᎸᎯ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ ᎦᏙᎴᎣᎯᏍᏔᏅᎭ ᎣᏍᏛ ᏂᏯᏛᏁᎸ ᎠᎩᏅᏏᏙᎯ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎠᏏᏉ ᏄᏁᏦᏅᎾ ᎨᏎᎢ, ᎾᏍᎩ ᎬᏂᏳᏉ ᏧᏄᎪᏤᎢ, ᎠᎹ ᎠᏟᏍᏗ ᎤᏃᎭᏝᎮᎢ ᎵᏇᎩ ᎾᏍᎩ ᏇᏚᎡᎵ ᎤᏕᏁᎸᎯ, ᎾᏍᎩ ᎤᏪᏥ Ꮋ﹕ᎵᎦ ᏁᎰ ᎡᏆᎭᎻ ᏗᎾᏓᏅᏟ ᎤᏓᎵᎢ.\nᎾᏍᎩᏃ ᎠᏛ ᎤᏣᏘ ᎤᏬᏚᎯᏳ ᎨᏎ ᏗᎧᏃᏗᏱ, ᎠᏥᏴᏛ ᏂᎨᏒᎾ, ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏍᎦᏯ ᎤᎦᏙᎥᏒᎯ ᏱᎨᏎᎢ; ᎠᎹᏃ ᎠᏢᏗᏱ ᎠᏓᎴᏒ ᏭᏴᎴᎢ, ᎠᎴ ᎠᎹ ᎠᏟᏍᏗ ᏭᎧᎵᏎᎢ ᏗᎤᏄᎪᏤᏃ.\nᎠᏥᏅᏏᏓᏍᏗᏃ ᏚᏍᏆᎸᏔᏁ ᏫᏚᏠᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏍᏗ ᎠᎹ ᎬᏯᏗᏔᏏ ᏣᏟᏍᏛᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎭᏗᏔ ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ; ᎤᎵᏍᏗᏳᏃ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᎹ ᎠᏟᏍᏗ ᎠᏰᎲᎢ, ᎤᏬᏰᏂ ᎤᏝᏁᎢ, ᎠᎴ ᎤᎱᏁᎢ.\nᎿᏉᏃ ᎤᎱᏃᏅ, ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᏉ ᎨᎻᎵ ᏗᏣᏤᎵᎦ ᎠᎹ ᏓᎦᏥᏢᎡᎵ ᎬᏂ ᏓᎾᏗᏔᎰᏅᎭ.\nᎤᎵᏍᏗᏳᏃ ᎠᎹ ᎠᏟᏍᏗ ᎠᏰᎲ ᏥᏳᎯ ᏭᏟᏍᏔᏁᎢ, ᏔᎵᏁᏃ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒ ᏭᏗᏢᏍᏔᏁᎢ ᎠᎹ ᏭᏢᎮᎢ, ᏂᎦᏛᏃ ᎨᎻᎵ ᏚᏢᎡᎴᎢ.\nᎠᏍᎦᏯᏃ ᎠᏍᏆᏂᎪᎯᏎᎲ ᎠᎨᏴ ᎡᎳᏪᏉ ᎤᏯᏎᎢ, ᎠᏓᏅᏖᏍᎨ ᏥᎪ ᏱᎰᏩ ᎣᏍᏛ ᎾᏆᏛᏂᏏ ᎨᏍᏙᎲᎢ, ᎡᎵᏍᎨᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎨᎻᎵ ᏚᎾᏘᏔᎰᏅ, ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎵᏴᏌᏙᏗ ᏭᎴᏎᎢ, ᎠᏰᎵ ᏎᎩᎵ ᎢᏳᏓᎨᏛ, ᏔᎵᏃ ᏧᏬᏰᏂ ᏧᎵᏰᏠᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᏍᎪᎯ ᏎᎩᎵ ᎢᏳᏓᎨᏛ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎪ ᎤᏪᏥ ᏂᎯ? ᏍᎩᏃᎲᏏ; ᏥᎪ ᏰᎵᏉ ᎤᏜᏅᏛ ᏣᏙᏓ ᎦᏁᎸ ᎣᎩᏒᏍᏗᏱ?\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏇᏚᎡᎵ ᎤᏪᏥ ᎠᏴ, ᎾᏍᎩ Ꮋ﹕ᎵᎦ ᎤᏪᏥ ᏁᎰ ᏧᎷᎸᏁᎴᎢ.\nᎯᎠᏃ ᎾᏍᎪ ᏂᎤᏪᏎᎴᎢ, ᎢᏧᎳ ᎧᏁᏍᎦ ᎠᎴ ᎨᎶᎸᏗ ᏰᎵᏉ ᎣᎩᎭ, ᎠᎴ ᎤᏜᏅᏛᏉ ᎠᏒᏍᏗᏱ.\nᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎡᎳᏗ ᏄᏛᏁᎴᎢ, ᎠᎴ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎠᎩᏅᏏᏙᎯ ᎤᏤᎵᎦ; ᎾᏍᎩ ᏄᏲᎯᏍᏔᏅᎾ ᏥᎩ ᎤᏓᏙᎵᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏤᎵᎦ ᏚᏳᎪᏛ ᎨᏒᎢ; ᏅᏃᎯᏰᏃ ᎠᏆᏕᏙᏯᏗᏒᎢ, ᏱᎰᏩ ᎠᏆᏘᏃᎦ ᎠᎩᏅᏏᏙᎯ ᎠᎾᎵᏅᏟ ᎠᏂᏁᎸᎢ.\nᎾᏍᎩᏃ ᎠᏛ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᎤᏥ ᎦᏁᎸᎢ ᏫᏚᏃᏁᎴ ᏄᎵᏍᏔᏂᏙᎸᎢ.\nᎵᏇᎩᏃ ᎤᏙ ᎡᎮᎢ, ᎠᎴ ᎴᏆᏂ ᏚᏙᎡᎢ; ᎴᏆᏂᏃ ᎤᏄᎪᏤ ᏭᏗᏢᏍᏔᏁ ᎠᏍᎦᏯ ᏤᏙᎲ, ᎾᏍᎩ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎾᏍᎩ ᎠᎢᏴᏌᏙᏗ ᎤᏙᎲ, ᎠᎴ ᏗᎵᏰᏠᏍᏗ ᎤᏙ ᏧᏬᏰᏂ ᏚᎵᏰᏠᎲ ᏚᎪᎲ, ᎠᎴ ᎤᏛᎦᏅ ᎵᏇᎩ ᎤᏙ ᎧᏁᎬᎢ, ᎯᎠ ᏂᎦᏪᏍᎬᎢ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ ᎠᏍᎦᏯ, ᎾᏍᎩ ᏭᎷᏤᎴ ᎠᏍᎦᏯ, ᎠᎴ ᎬᏂᏳᏉ, ᎨᎻᎵ ᎠᏂᏙᎾᎥ ᎦᏙᎨᎢ ᎠᎴ ᎠᏢᏗᏱ ᎠᏓᎴᏒᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎡᎯᏴᎭ, ᏱᎰᏩ ᎣᏍᏛ ᎢᏣᏛᏁᎸᎯ, ᎦᏙᏃ ᏙᏱᏗᏢᏉ ᏗᎯᏙᎦ? ᎠᏆᏛᏅᎢᏍᏔᏅᏰᏃ ᎦᎵᏦᏕ, ᎠᎴ ᎨᎻᎵ ᎤᏂᏴᏍᏗᏱ.\nᎠᏍᎦᏯᏃ ᎦᎵᏦᏕ ᎤᏴᎴᎢ; ᎨᎻᎵᏃ ᏚᏍᏆᏓᏃᏴᎮᎢ, ᎧᏁᏍᎦᏃ ᎠᎴ ᎨᎶᎸᏗ ᏚᏁᎴ ᎨᎻᎵ, ᎠᎴ ᎠᎹ ᎤᏁᏁᎴ ᏧᎳᏏᏕᏂ ᏧᏬᏑᎴᏗ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎲ ᏧᎾᎳᏏᏕᏂ ᏧᏃᏑᎴᏗ.\nᎿᏉᏃ ᎠᏥᏝᏁᎴ ᎤᎵᏍᏓᏴᏗ; ᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎦᎦᎵᏍᏓᏴᎲᎦ ᎬᏂ ᏥᏃᏅᎭ ᏄᏍᏛ ᎠᎣᎮᏗ ᎨᏒᎢ. ᎾᏍᎩᏃ ᎯᏁᎩ ᎠᏗᎾ, ᎤᏛᏁᎢ.\nᎯᎠᏃ ᏄᏪᎡᎢ, ᎠᏴ ᎡᏆᎭᎻ ᎠᎩᏅᏏᏓᏍᏗ.\nᏱᎰᏩᏃ ᎤᏣᏘ ᎣᏍᏛ ᏄᏛᏁᎸ ᎠᎩᏅᏏᏙᎯ; ᎠᎴ ᎠᏥᎸᏉᏗᏳ ᏄᎵᏍᏔᏅ; ᎠᎴ ᎠᏫ, ᎠᎴ ᎦᎾᏜᎢ ᏚᏪᎧᏁᎸ, ᎠᎴ ᎠᏕᎸ ᎤᏂᏁᎬ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏁᎸ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎨᎻᎵ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ ᏚᏪᎧᏁᎸ.\nᎠᎴ ᏎᎵ ᎠᎩᏅᏏᏙᎯ ᎤᏓᎵᎢ, ᎠᎩᏅᏏᏙᎯ ᎤᎷᎸᏁᎸᎩ ᎠᏧᏣ ᎿᏉ ᎠᎦᏴᎵᎨ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎤᏁᎸ ᏂᎦᎥ ᎤᎿᎥᎢ.\nᎠᎩᏅᏏᏙᎯᏃ ᎠᏆᏎᎵᏙᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎥᏞᏍᏗ ᎯᏯᏅᏗ ᏱᎨᏎᏍᏗ ᎠᏇᏥ ᎤᏓᏴᏍᏗ, ᎠᏂᎨᎾᏂ ᏧᏁᏥ ᎾᏍᎩ ᎤᎾᏤᎵᎪᎯ ᎦᏙᎯ ᏥᎨᎠ;\nᎡᏙᏓᏍᎩᏂ ᏧᏪᏥᏛᎯ ᏗᏁᎲ ᏮᏘᎶᏏ, ᎠᎴ ᏗᎩᏴᏫ ᏗᏁᎲᎢ, ᎠᎴ ᎠᏇᏥ ᎤᏓᏴᏍᏗ ᏮᏘᏯᏅᎯ.\nᎯᎠᏃ ᏅᏥᏪᏎᎸᎩ ᎠᎩᏅᏏᏙᎯ, ᏅᏓᎬᎩᏍᏓᏩᏛᏍᏗᏉ ᏂᎨᏒᎾ ᏱᎩ ᎠᎨᏴ.\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎩ, ᏱᎰᏩ, ᎾᏍᎩ ᎠᎦᏔᎲ ᏂᎦᎴᏂᏙᎭ, ᎤᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᏓᎦᏅᏏ, ᎠᎴ ᎣᏍᏛ ᎤᏓᏨᏁᎵ ᎭᎢᏒᎢ; ᎠᎴ ᏮᏘᏯᏅᎯ ᏇᏥ ᎤᏓᏴᏍᏗ ᏗᎩᏴᏫ ᏗᏁᎲᎢ, ᎠᎴ ᎡᏙᏓ ᏧᏪᏥᏛᎯ ᏗᏁᎲᎢ.\nᎿᏉᏃ ᎥᏝ ᏱᏣᏚᏓᎴᏍᏗ ᏍᏆᏎᎵᏓᏁᎸᎢ; ᏗᎩᏴᏫ ᏗᏁᎲ ᏫᎷᏨᎭ, ᎠᎴ ᏂᎨᏣᎧᏁᎸᎾ ᎢᎨᏎᏍᏗ, Ꮼ ᏣᏚᏓᎴᏛ ᎨᏎᏍᏗ ᏍᏆᏎᎵᏓᏁᎸᎢ.\nᎠᎴ ᎪᎯ ᎢᎦ ᎠᎹ ᎠᏢᏗᏱ ᎠᏓᎴᏒ ᏛᎩᎷᏨᎩ, ᎠᎴ ᎯᎠ ᎢᏪᏒᎩ, ᏱᎰᏩ ᏣᏁᎳᏛᎯ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎢᏳᏃ ᎣᏍᏛ ᏂᏨᎿᏗᏎᏍᏗ ᎦᎢᏒᎢ;\nᎬᏂᏳᏉ ᎠᎹ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎤᎶᏗᏢ ᏥᏙᎦ; ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᎠᏛ ᏗᎦᏄᎪᏨ ᎠᎹ ᎠᏢᎰᎸᎭ, ᎠᎴ ᎯᎠ ᏂᏥᏪᏎᎸᎭ, ᎤᏍᏗ ᎠᎹ ᏣᏟᏍᏛ ᏍᎩᏁᎲᏏ ᎠᏆᏗᏔᏍᏗ;\nᎯᎠᏃ ᎾᎩᏪᏎᎸᎭ, ᎭᏗᏔ ᏂᎯ, ᎠᎴ ᎾᏍᏉ ᏙᏓᏥᏢᎡᎵ ᎨᎻᎵ ᏗᏣᏤᎵᎦ; ᎾᏍᎩ ᎨᏎᏍᏗ ᎠᎨᏴ ᏱᎰᏩ ᎤᏑᏯᎡᎸᎯ ᎠᎩᏅᏏᏙᎯ ᎤᏪᏥ.\nᎠᏏᏉᏃ ᏗᏆᏓᏅᏛ ᏂᏥᏁᏦᎲᏍᎬᎾ ᎨᏒᎩ, ᎬᏂᏳᏉ ᎵᏇᎩ ᎤᎷᏨᎩ ᎠᎹ ᎠᏟᏍᏗ ᎤᏃᎭᏝᎲᎩ; ᎠᎹᎣ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᏭᎦᏐᎠᏒᎩ, ᎠᎴ ᏭᏢᎲᎩ; ᎯᎠᏃ ᏂᏥᏪᏎᎸᎩ, ᎦᏗᏔ.\nᎤᎵᏍᏗᏳᏃ ᎤᏃᎭᏞᏒᎩ ᎠᎹ ᎠᏢᏗ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎭᏗᏔ, ᎠᎴ ᎾᏍᏉ ᎨᎻᎵ ᏙᏓᎦᏗᏔᏍᏔᏂ; ᎰᏩᏃ ᎠᏆᏗᏔᎲᎩ, ᎠᎴ ᎾᏍᏉ ᎨᎻᎵ ᏚᏗᏔᏍᏔᏅᎩ.\nᎥᏥᏯᏛᏛᏅᎩᏃ ᎯᎠ ᏅᏥᏪᏎᎸᎩ, ᎦᎪ ᎤᏪᏥ ᏂᎯ? ᎯᎠᏃ ᏄᏪᏒᎩ, ᏇᏚᎡᎵ ᎤᏪᏥ, ᎾᏍᎩ ᏁᎰ ᎤᏪᏥ, Ꮋ﹕ᎵᎦ ᎤᎾᏄᎪᏫᏎᎸᎯ; ᎠᎴ ᎠᎵᏴᏌᏙᏗ ᎥᏥᏴᏌᏔᏅᎩ, ᎠᎴ ᏗᎵᏰᏠᏍᏗ ᏙᏥᏰᏠᏍᏔᏅᎩ ᏧᏬᏰᏂ.\nᎡᎳᏗᏃ ᎾᏆᏛᏁᎸᎩ, ᎠᎴ ᏱᎰᏩ ᎥᏥᏯᏓᏙᎵᏍᏓᏁᎸᎩ, ᎠᎴ ᏥᎸᏉᏔᏅᎩ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᎩᏅᏏᏙᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏚᏳᎪᏛ ᏨᏗᏆᏘᏅᏍᏔᏅ, ᎾᏍᎩ ᎠᎩᏅᏏᏙᎯ ᏗᎾᏓᏅᏟ ᎤᏪᏥ ᎠᎨᏴ ᏥᏯᏘᏅᎡᏗᏱ [ᎠᎩᏅᏏᏙᎯ] ᎤᏪᏥ ᎠᏫᏅ.\nᎿᏉᏃ ᎢᏳ ᎠᎩᏅᏏᏙᎯ ᎣᏍᏛ ᎠᎴ ᏚᏳᎪᏛ ᏅᏤᏣᏛᏁᎵᏎᏍᏗ, ᏍᎩᏃᎲᏏ; ᎢᏳ ᎠᎴ ᏱᏝ, ᏍᎩᏃᎲᏏ; ᎾᏍᎩ ᏥᎦᏘᏏ ᎠᎴ ᏥᎦᏍᎦᏂ ᎢᏗᏢ ᏩᏆᎪᎸᏍᏙᏗᏱ.\nᎿᏉᏃ ᎴᏆᏂ ᎠᎴ ᏇᏚᎡᎵ ᏧᏂᏁᏤᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏱᎰᏩ ᎤᏓᏅᏖᎸᎯ ᎯᎠ; ᎥᏝᏃ ᎨᏍᏛᏁᏤᏗ ᏱᎩ ᎤᏲ ᎠᎴ ᎣᏍᏛ.\nᎬᏂᏳᏉ ᎵᏇᎩ ᎢᎬᏱᏗᏢ ᎤᏬᎳ, ᎯᏯᏘᏄᎦ, ᎠᎴ ᏥᎮᎾ, ᏣᏅᏏᏙᎯᏃ ᎤᏪᏥ ᎤᏓᎵᎢ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏒᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏅᏏᏓᏍᏗ ᎤᏛᎦᏅ ᎠᏂᏁᎬᎢ, ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ ᎡᎳᏗ ᎢᏗᏢ ᏄᏛᏁᎴᎢ.\nᎠᏥᏅᏏᏓᏍᏗᏃ ᏚᎾᏄᎪᏫᏎ ᎠᏣᏅᎩ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏗᏄᏬ, ᎵᏇᎩᏃ ᏕᎤᏲᎯᏎᎴᎢ; ᎠᎴ ᎾᏍᏉ ᎤᏙ ᎠᎴ ᎤᏥ ᏧᏓᎴᏅᏛ ᏗᎦᎸᏉᏗ ᏚᏁᎴᎢ.\nᎤᎾᎵᏍᏓᏴᏁᏃ ᎠᎴ ᏚᎾᏗᏔᎮᎢ, ᎤᏩᏒ ᎠᎴ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎲᎢ, ᎠᎴ ᎤᏂᏒᎴᎢ. ᏑᎾᎴᏃ ᎤᎾᏗᏓᏁᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏥᏍᎩᏯᏂᎩᏍᏓ ᎠᎩᏅᏏᏙᎯ ᏤᎲᎢ ᏫᏥᎶᎢ.\nᎵᎢᏃ ᏅᏙ ᎠᎴ ᎤᏥ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᏏ ᎠᏍᎪᎯ ᎢᏴᏛ ᏧᏒᎯᏛ ᏬᎨᎳᏗᏓ ᎠᏛ; ᎣᏂᏃ ᎩᎳ ᎡᏒᎭ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᏞᏍᏗ ᏍᏉᎯᏕᎸᎩ ᎬᏂᏳᏰᏃ ᏱᎰᏩ ᎣᏍᏛ ᎾᏆᏛᏂᏏ ᎨᏙᎲᎢ; ᏥᏍᎩᏯᏂᎩᏍᏓ, ᎠᎩᏅᏏᏙᎯ ᏧᏬᎸ ᏫᏥᎶᎢ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ; ᎠᏛ ᏮᏓᏲᎯᏯᏅᎯ, ᎠᎴ ᎾᏍᎩ ᏓᏲᏣᏛᏛᏂ.\nᎵᏇᎩᏃ ᏭᏂᏯᏅᎮᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏓᏍᏕᏏᏍᎪ ᎯᎠ ᎠᏍᎦᏯ? ᎯᎠᏃ ᏄᏪᏎᎢ; ᏓᎨᏏᏉ.\nᎤᎾᏂᎩᏍᏔᏁᏃ ᎤᏂᏙ ᎵᏇᎩ ᎠᎴ ᎤᏍᏛᏅᎯ ᎠᎴ ᎡᏆᎭᎻ ᎤᏅᏏᏓᏍᏗ ᎠᎴ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎲᎢ.\nᎣᏍᏛᏃ ᎤᏂᏁᏤᎴ ᎵᏇᎩ, ᎯᎠ ᏄᏂᏪᏎᎴᎢ; ᎣᎩᏙ ᏂᎯ, ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎤᎦᏴᎳᏥᎶᏛ ᎿᎵᏍᏓᏅᎭ; ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏧᎾᏤᎵᎦ ᎨᏎᏍᏗ ᎬᏩᏂᏍᎦᎽ ᏚᏂᏍᏚᎲᎢ.\nᎵᏇᎩᏃ ᏚᎴᏁᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵᎦ ᎠᎾᏛ, ᎠᎴ ᎨᎻᎵ ᏚᎾᎩᎸᏔᏁᎢ, ᎠᎴ ᎤᏂᏍᏓᏩᏛᏎ ᎾᏍᎩ ᎠᏍᎦᏯ. ᎠᎴ ᎾᏍᎩ ᎠᏥᏅᏏᏔᏍᏗ ᎤᏘᏅᏎ ᎵᏇᎩ ᎠᎴ ᎤᏂᎩᏎᎢ.\nᎡᏏᎩᏃ ᎳᎭᎢᎶᎢ ᎠᎹ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎢᏗᏢ ᏧᎶᏎᎢ; ᏧᎦᎿᏮᏰᏃ ᎢᏗᏢ ᎡᎮᎢ.\nᎡᏏᎩᏃ ᎤᏒᎯᏰᏱ ᎨᏒ ᏠᎨᏏ ᏭᎶᏎᎢ ᎤᏓᏅᏖᎵᏙᎸᏎᎢ; ᏗᎦᏙᎵᏃ ᏚᏌᎳᏓᏁᎢ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ ᎨᎻᎵ ᏗᎾᎢᏎᎢ.\nᎵᏇᎩᏃ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ, ᏒᏏᎩᏃ ᎤᎪᎲ, ᎤᏠᎠᏎ ᎨᎻᎵᎯ.\nᎯᎠᏰᏃ ᎢᏳᏪᏎᎸᎯ ᎨᏎ ᎠᏥᏅᏏᏓᏍᏗ; ᎦᎪ ᎢᏳᏍᏗ Ꮎ ᎠᏍᎦᏯ ᏠᎨᏏ ᏨᏓᏯᎢ ᏥᏙᏓᎦᏠᏏ? ᎠᏥᏅᏏᏓᏍᏗᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏎᎢ, ᎠᎩᏅᏏᏙᎯ ᎾᏍᎩ. ᎾᏍᎩᏃ ᏗᎦᏚᏢᏙᏗ ᏚᎦᏚᏢᏔᏁᎢ.\nᎠᏥᏅᏏᏓᏍᏗᏃ ᎤᏃᏁᎴ ᎡᏏᎩ ᏂᎦᎥ ᏄᏛᏁᎵᏙᎸᎢ.\nᎡᏏᎩᏃ ᎤᏘᏃᎴ ᎵᏇᎩ ᎤᏥ ᏎᎵ ᎤᎵᏦᏛᎢ, ᎠᎴ ᎤᏯᏅᎮ ᎵᏇᎩ, ᎤᏓᎵᎢᏃ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᎤᎨᏳᎯᏳ ᎨᏎᎢ; ᎡᏏᎩᏃ ᎤᎦᎵᏍᏙᏎ ᎤᏥ ᎿᏉ ᎤᏲᎱᏒ.\nᎠᏯᏙᎸᎢ 25\nᎡᏆᎭᎻᏃ ᏔᎵᏁ ᎤᏓᎵᎢ ᎤᏩᏛᎮᎢ, ᎠᎴ ᎩᏚᎳ ᏚᏙᎡᎢ.\nᎠᎴ ᎾᏍᎩ ᏚᎷᎸᏁᎴ ᏏᎻᎳᏂ, ᎠᎴ ᏲᎩᏌᏂ, ᎠᎴ ᎻᏓᏂ, ᎠᎴ ᎻᏗᏯᏂ, ᎠᎴ ᏱᏏᏆᎩ, ᎠᎴ ᏑᎠ.\nᏲᎩᏌᏂᏃ ᏏᏱᏆ ᎠᎴ ᏗᏓᏂ ᎬᏩᏕᏁᎴᎢ. ᏗᏓᏂᏃ ᏧᏪᏥ ᎠᏁᎮᎢ, ᎠᏂᎠᏑᎵ, ᎠᏂᎵᏚᏏ, ᎠᎴ ᎠᏂᎵᎤᎻ.\nᎻᏗᏯᏂᏃ ᏧᏪᏥ, ᎢᏆ, ᎠᎴ ᎢᏆᎵ, ᎠᎴ ᎭᏃᎩ, ᎠᎴ ᎠᏡᏓ, ᎠᎴ Ꭱ﹕ᎵᏓᎠ. ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᎩᏚᎳ ᏧᏪᏥ ᎨᏎᎢ.\nᎡᏆᎭᎻᏃ ᏂᎦᏛ ᎤᎿᎥ ᎡᏏᎩ ᎤᏁᎴᎢ.\nᏔᎵᏍᎩᏂ ᏂᏚᏮᏕ ᏥᏓᏓᏰᎮ ᎡᏆᎭᎻ ᎾᏍᎩ ᏧᏁᏥ ᎪᎱᏍᏗ ᏚᎵᏍᎪᎸᏓᏁᎴᎢ, ᎠᎴ ᏚᏪᎧᎲᏎ ᎤᏪᏥ ᎡᏏᎩ ᎡᎲᎢ, ᏗᎧᎸᎬ ᎢᏗᏢ ᏚᏅᏎ ᏗᎧᎸᎬ ᎢᏗᏢ ᎦᏓ ᏗᎲ ᏚᏅᏎᎢ, ᎠᏏᏉ ᎤᏩᏒ ᎡᎮᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏂᎦᎥ ᏚᎩᏨᏅᏒ ᎠᎴ ᏚᏕᏘᏱᎶᎥ ᎤᎴᏂᏙᎸ ᎡᏆᎭᎻ, ᎠᏍᎪᎯᏧᏈ ᎦᎵᏆᏍᎪᎯ ᎦᏍᎩᎦᎵ ᏧᏕᏘᏴᏛ.\nᎡᏆᎭᎻᏃ ᎤᏲᎯᏍᏔᏁ ᎬᏬᎳᏕᏍᎬ, ᎠᎴ ᎣᏍᏛ ᎤᎦᏴᎳᏨᎯ ᎤᏲᎱᏎᎢ, ᎤᏛᏐᏅᎯ, ᎠᎴ ᏧᏕᏘᏱᎶᏛ ᎨᏎᎢ. ᎠᎴ ᏧᏤᎵ ᏴᏫ ᏄᎾᏛᏅ ᏭᏖᎳᏕᎢ.\nᏧᏪᏥᏃ ᎡᏏᎩ ᎠᎴ ᎢᏏᎺᎵ ᎬᏩᏂᏌᏁ ᎤᏍᏓᎦᎸ ᎹᏡᎳ, ᎢᏆᎶᏂ ᎤᎶᎨᏒᎢ ᏐᎠ ᎠᎯᏗ ᎤᏪᏥ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ ᏥᎩ;\nᎾᏍᎩ ᏠᎨᏏ ᎡᏆᎭᎻ ᏥᏚᏩᏎᎴ ᎮᏗ ᏧᏪᏥ; ᎾᎿ ᎠᏥᏂᏌᏁ ᎡᎠᎻ, ᎠᎴ ᏎᎵ ᎾᏍᎩ ᎤᏓᎵᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎡᏆᎭᎻ ᎿᏉ ᏄᏲᎱᏐᎢ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᏄᏛᏁᎴ ᎡᏏᎩ; ᎡᏏᎩᏃ ᎳᎭᎢᎶᎢ ᎠᎹ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎦᏁᎴᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏂᎤᏍᏗ ᎢᏏᎺᎵ ᎡᏆᎭᎻ ᎤᏪᏥ ᎤᏁᏢᏔᏅᏒᎢ, ᎾᏍᎩ ᎮᎦ ᎢᏥᏈᏱ ᎤᏕᏅᎯ, ᏎᎵ ᎤᏅᏏᏓᏍᏗ, ᎡᏆᎭᎻ ᏧᎾᏄᎪᏫᏎᎴᎢ;\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᎢᏏᎺᎵ ᏧᏪᏥ, ᏚᎾᏙᎠᏗᏒ ᎾᏍᎩ ᏄᏍᏛ ᏚᎾᏁᏢᏔᏅᏒᎢ; ᎢᎬᏱ ᎡᎯ ᎢᏏᎺᎵ ᎤᏪᏥ, ᏂᏆᏲᏗ; ᎩᏓᏃ, ᎠᎴ ᎠᏗᏈᎵ, ᎠᎴ ᎻᏈᏌᎻ,\nᎠᎴ ᎻᏏᎹ, ᎠᎴ ᏚᎹ, ᎠᎴ ᎹᏌ,\nᎮᏓ, ᎠᎴ ᏗᎹ, ᎠᎴ ᏱᏓ, ᎠᎴ ᎾᏈᏏ, ᎠᎴ ᏱᏗᎹ;\nᎯᎠ ᎾᏍᎩ ᎢᏏᎺᎵ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᏚᏂᏚᏩᏗᏒᎢ, ᎠᎴ ᏚᎾᏐᏯᏗᏒᎢ; ᏔᎳᏚ ᎤᏂᎬᏫᏳᎯ ᎾᏍᎩᏯ ᏂᎦᎥ ᎠᏰᎵ ᏚᏃᏢᏩᏗᏒᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏕᏘᏴᎮ ᎢᏏᎻᎵ ᎤᎴᏂᏙᎴᎢ, ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎦᎵᏉᎩᎦᎵ ᎦᎵᏉᎩᎦᎵ ᏧᏕᏘᏴᏛ; ᎤᏲᎯᏍᏔᏁᏃ ᎬᏬᎳᏕᏍᎬ, ᎠᎴ ᎤᏲᎱᏎᎢ; ᎠᎴ ᏧᏤᎵᎦ ᏴᏫ ᏄᎾᏛᏅ ᏭᏖᎳᏗᎴᎢ.\nᎭᏈᎳᏃ ᎤᏓᎴᏅᏛ ᏒᎵ ᏫᎬᏍᏗ ᎠᏁᎮᎢ, ᎾᏍᎩ ᎢᏥᏈ ᎢᎬᏱᏗᏢ ᏥᎩ, ᎠᏏᎵᏯ ᏥᏮᎦᏙᎢ. ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᎠᏂᎦᏔᎲ ᎤᏲᎱᏎᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎡᏏᎩ ᎡᏆᎭᎻ ᎤᏪᏥ ᎤᏁᏢᏔᏅᏒᎢ; ᎡᏆᎭᎻ ᎡᏏᎩ ᎤᏕᏁᎴᎢ.\nᎡᏏᎩᏃ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎵᏇᎩ ᎤᏓᏰᏅ, ᎾᏍᎩ ᏇᏚᎡᎵ ᏏᎵᏱ ᎡᎯ ᎤᏪᏥ, ᏇᏓᏁᎳᎻ ᏥᎦᏁᎴᎢ, ᎾᏍᎩ ᎤᏙ ᎴᏆᏂ ᏏᎵᏱ ᎡᎯ.\nᎡᏏᎩᏃ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴ ᎤᏓᎵᎢ ᎤᎬᏩᎵ, ᏂᏓᎷᎸᎥᏍᎬᎾᏰᏃ ᎨᏎᎢ; ᏱᎰᏩᏃ ᎤᏛᏓᏍᏓᏁᎴᎢ, ᎤᏓᎵᎢᏃ ᎵᏇᎩ ᎤᏁᎵᏤᎢ.\nᏗᏂᏲᎵᏃ ᏓᎾᏟᏱᏍᎨ ᎬᏩᏯᎥᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏥᎾᏆᏍᏗ? ᎤᏪᏅᏎᏃ ᏱᎰᏩ ᎤᏛᏛᏅᏎᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏔᎵ ᎢᏯᏂᎵᏍᏓᎳ ᏴᏫ ᏕᎯᏁᎵ, ᎠᎴ ᏔᎵ ᎢᏳᎾᏓᎴᎩ ᏴᏫ ᏙᏘᎾᏄᎪᏫᏏ; ᏑᎾᏓᎴᎩᏃ ᎾᏍᎩ ᏴᏫ ᎤᏟ ᏄᎾᎵᏂᎬᎨᏍᏗ ᎡᏍᎦᏉ ᎠᏂᏐᎢ ᏴᏫ; ᎤᏓᏂᎵᎨᏃ ᏕᎤᏁᎶᏕᏍᏗ ᎣᏂ ᎡᎯ.\nᏧᎾᏄᎪᏫᏍᏗᏱᏃ ᎤᏍᏆᎸᎲ, ᎬᏂᏳᏉ ᏗᏂᎳᏫ ᏕᎦᏁᎵᏎᎢ.\nᎢᎬᏱᏃ ᎠᏬᏗᎨ ᏧᎾᏄᎪᏤᎢ, ᏂᎬ ᎠᏄᏬ ᎤᏂᏆᏟ ᎾᏍᎩᏯ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎢᏐ ᏚᏃᎡᎢ.\nᎣᏂᏃ ᎤᏅᏟ ᎤᎾᏄᎪᏤᎢ, ᎾᏍᎩᏃ ᎤᏪᏰᏂ ᎢᏐ ᏌᏗᎨᏂ ᎤᏂᏴᎮᎢ; ᏤᎦᏈᏃ ᏚᏃᎡᎢ; ᎡᏏᎩᏃ ᏑᏓᎳᏍᎪᎯ ᎢᏳᏕᏗᏴᏛ ᎨᏎ ᎵᏇᎩ ᏚᎷᎸᏅ.\nᎠᏂᏧᏣᏃ ᏚᎾᏛᏎᎢ; ᎢᏐᏃ ᎠᏏᎾᏌᏂ ᎦᏃᎯᎵᏙᎯ ᎨᏎᎢ, ᎢᎾᎨ ᎡᏙᎯ ᎨᏎᎢ; ᏤᎦᏈᏃ ᎤᏓᏅᏘ ᎠᏍᎦᏯ ᎨᏎᎢ, ᏕᎦᎵᏦᏛᏉ ᎡᎯ ᎨᏎᎢ.\nᎡᏏᎩᏃ ᎢᏐ ᎤᎨᏳᎯᏳ ᎨᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᏫ ᎤᏫᏯ ᎠᎩᏍᎬᎢ; ᎵᏇᎩᏍᎩᏂ ᏤᎦᏈ ᎤᎨᏳᎯᏳ ᎨᏎᎢ.\nᏤᎦᏈᏃ ᏚᏯ ᎢᏳᎾᏍᏗ ᏕᎫᎲᏍᎨᎢ, ᎢᏐᏃ ᎢᎾᎨ ᏧᎶᏎᎢ, ᎠᎴ ᎠᎪᏄ ᎤᎸᏕᏍᏗᏍᎨᎢ.\nᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏍᏇᎳᏍᏓ ᎩᎦᎨ, Ꮎ ᎩᎦᎨ ᏥᏧᎭ, ᎠᎪᏄᏰᏃ ᎠᏆᎸᏕᏍᏗᎭ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏓᎻ ᏓᎪᎡᎢ.\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᎢᎬᏱ ᎮᎯ ᎨᏒ ᏍᎩᏃᏓᏏ.\nᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᎩᏲᎱᏏᏗ ᎠᏴ; ᎦᏙᏃ ᏯᎩᏁᏉᏥ ᎯᎠ ᎾᏍᎩ ᎢᎬᏱ ᎨᎢ ᎨᏒᎢ?\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᏍᏆᏎᎵᏓᏏ; ᎤᏎᎵᏓᏁᎴᏃ; ᎠᎴ ᎢᎬᏱ ᎡᎯ ᎨᏒ ᏤᎦᏈ ᎤᏃᏓᏁᎴᎢ.\nᏤᎦᏈᏃ ᎦᏚ ᎠᎴ ᏚᏯ ᎢᏳᎾᏍᏗ ᏗᎫᏅᎯ ᏚᏁᎴ ᎢᏐ, ᎤᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᎤᏗᏔᎮᎢ, ᎠᎴ ᏚᎴᏁᎢ, ᎠᎴ ᎤᏓᏅᏎᎢ; ᎾᏍᎩᏃ ᎢᏐ ᏄᎸᏉᏔᏅᎾᏉ ᎨᏎ ᎢᎬᏱ ᎡᎯ ᎨᏒᎢ.\nᎠᏯᏙᎸᎢ 26\nᏔᎵᏁᏃ ᎤᎪᏄᎶᏎ ᎾᎿ ᎤᏁᎳᎩ ᎢᎬᏱᏱ ᏧᎪᏄᎶᏎᎢ ᎾᎯᏳ ᎡᏆᎭᎻ ᏤᎮᎢ. ᎡᏏᎩᏃ ᎠᏈᎻᎴᎩᏱ ᏭᎶᏎ ᎤᎬᏫᏳᎯ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎦ, ‾ᎩᎳ ᏗᎦᏚᎲᎢ.\nᏱᎰᏩᏃ ᎬᏂᎨᏒ ᏄᏛᏁᎴᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎢᏥᏈᏱ ᏫᏣᎶᏒᎩ; ᎾᎿᏉᏍᎩᏂ ᎦᏙᎯ ᏨᏓᎬᏯᏎᎮᎵ ᎮᎮᏍᏗ;\nᎠᏂ ᎯᎠ ᎦᏓ ᎠᎲ ᎮᎮᏍᏗ, ᎠᏴᏃ ᏕᎬᎦᎿᏩᏗᏙᎮᏍᏗ, ᎠᎴ ᎣᏍᏛ ᏂᎬᏯᏛᏁᎮᏍᏗ; ᏂᎯᏰᏃ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏓᏨᏁᎵ ᏂᎦᏛ ᎠᏂ ᏂᎬᎾᏛᎢ; ᎠᎴ ᏅᏓᎦᏛᏁᎵ ᏄᏍᏛ ᏥᏯᏎᎵᏓᏁᎸ ᎡᏆᎭᎻ ᏣᏙᏓ;\nᎠᎴ ᎤᏂᏁᏉᎢᏍᏗᏱ ᏅᏓᎦᏥᏴᏁᎵ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎾᏍᎩᏯ ᏃᏈᏏ ᎦᎸᎶ ᏣᏂᎧᎳ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏓᎦᏥᏁᎵ ᏂᎦᏛ ᎠᏂ ᏂᎬᎾᏛᎢ; ᏂᎯᏃ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏄᎾᏓᎴᏒ ᏴᏫ ᎡᎶᎯ ᎤᎾᏕᏗ ᏥᏅᏓᎦᎵᏍᏔᏂ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ;\nᏂᎦᎵᏍᏙᏗᎭ ᎡᏆᎭᎻ ᎤᏬᎯᏳᏅ ᏥᏁᎬᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏔᏅ ᎠᏆᏤᎵ ᎠᏍᏆᏂᎪᏙᏗ, ᎠᎴ ᎠᎩᏁᏨᎢ, ᎠᎴ ᏗᏆᏤᎵ ᏚᏚᎪᏔᏅᎢ, ᎠᎴ ᏗᏆᏤᎵ ᏗᎦᎿᏩᏛᏍᏗ.\nᎡᏏᎩᏃ ‾ᎩᎳ ᎡᎮᎢ.\nᎾᎿ Ꮓ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᎬᏩᏛᏛᏁ ᎤᏓᎵᎢ ᎤᏂᏁᎢᏍᏔᏁᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᎩᏙᏉ; ᎠᏍᎦᎢᎮᏰᏃ ᎠᏆᏓᎵᎢ ᎤᏛᏗᏱ; ᎠᏂᏍᎦᏯᏰᏃ ᎠᏂ ᎠᏁᎯ ᏱᎬᎩᎷᎦ ᎵᏇᎩ ᏯᎩᏍᏛᏓ [ᎡᎵᏍᎨᎢ,] ᎤᏬᏚᎯᏳᏰᏃ ᎨᏎ ᏗᎧᏃᏗᏱ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎪᎯᏗᏳ ᎾᎿ ᏫᎬᏩᎷᏨᎯ ᎨᏎᎢ, ᎠᏈᎻᎴᎩ ᎤᎬᏫᏳᎯ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎦ, ᎾᏍᎩ ᎠᏦᎳᏅ ᏭᎦᏔᏁᎢ, ᎠᎴ ᎤᎪᎮᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎡᏏᎩ ᏓᎾᏓᏰᏣᏍᏗᏍᎨ ᎵᏇᎩ ᎤᏓᎵᎢ.\nᎠᏈᎻᎴᎩᏃ ᏭᏯᏅᎮ ᎡᏏᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ, ᎤᏙᎯᏳᏒ ᏣᏓᎵᎢ ᎾᏍᎩ; ᎦᏙᏃ ᎥᎩᏙᏉ ᏥᏣᏛᏁᎢ? ᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏱᏥᏲᎤᎯ ᎾᏍᎩ ᏯᎩᏍᏛᏓ, ᎠᏇᎵᏒᎢ.\nᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏥᏂᏍᎩᏴᎦ; ᎩᎶᏰᏃ ᎯᎠ ᏴᏫ ᎠᎴᏉ ᏄᏓᏰᎾ ᏣᏓᎵᎢ, ᎠᎴ ᎣᎩᏍᎦᏅᏨᎯ ᏂᏍᎩᏴᎦ.\nᎠᏈᎻᎴᎩᏃ ᏚᏁᏤᎴ ᏂᎦᏛ ᏴᏫ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎩᎶ ᎪᎱᏍᏗ ᎢᎬᏁᎸᎭ ᎯᎠ ᎠᏍᎦᏯ, ᎠᎴ ᎤᏓᎵᎢ, ᎤᏙᎯᏳᎯᏯ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ.\nᎡᏏᎩᏃ ᎾᎿ ᎦᏙᎯ ᎤᏫᏒᏁᎢ, ᎾᎯᏳᏉᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎠᏍᎪᎯᏧᏈ ᎢᏳᏣᏓᏗ ᎤᏁᏉᏨᎯ ᎤᏩᏛᎮᎢ, ᎠᎴ ᏱᎰᏩ ᎣᏍᏛ ᏄᏛᏁᎴᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏥᎸᏉᏗᏳ ᏄᎵᏍᏔᏁᎢ, ᎠᎴ ᏩᎦᏖᏉ ᎤᏛᏏᏗᏒᎢ, ᎬᏂ ᎤᏣᏘ ᎠᏥᎸᏉᏗᏳ ᏄᎵᏍᏔᏅ.\nᎠᏫᏃ ᏚᎾᏝᎡᎢ, ᎠᎴ ᏩᎦ ᏚᎾᏝᎡᎢ, ᎠᎴ ᎤᏂᏣᏘ ᏚᏪᎧᎮ ᏧᏅᏏᏓᏍᏗ; ᎠᏂᏈᎵᏍᏗᏃ ᎬᏩᏳᏤᎮᎢ.\nᏂᎦᏛᏃ ᎠᎹ ᎠᏢᏗᏱ ᏓᏍᎪᏒ ᎾᏍᎩ ᎤᏙᏓ ᏧᏅᏏᏓᏍᏗ ᏚᎾᏍᎪᏒᎢ ᎾᎯᏳ ᎤᏙᏓ ᎡᏆᎭᎻ ᏤᎮᎢ, ᎠᏂᏈᎵᏍᏗ ᏚᏂᏍᏚᏁᎢ, ᎠᎴ ᎦᏓ ᏚᏂᎧᎵᏍᏔᏁᎢ.\nᎠᏈᎻᎴᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏏᎩ, ᏍᎩᏯᏓᏅᏏ; ᎤᏟᎯᏳᏰᏃ ᏂᏣᎵᏂᎬᎦ ᎡᏍᎦᏉ ᎠᏴ.\nᎡᏏᎩᏃ ᎾᎿ ᎤᏓᏅᏎᎢ, ‾ᎩᎳ ᎤᎨᏓᎵᏴ ᎤᎵᏦᏔᏁᎢ, ᎠᎴ ᎾᎿ ᎡᎮᎢ.\nᎡᏏᎩᏃ ᏔᎵᏁ ᏚᏍᎪᏎ ᎠᎹ ᏗᏢᏗᏱ ᎾᏍᎩ ᏥᏚᎾᏍᎪᏎ ᎾᎯᏳ ᎤᏙᏓ ᎡᏆᎭᎻ ᏤᎮᎢ; ᎠᏂᏈᎵᏍᏗ ᏥᏚᏂᏍᏚᏁ ᎡᏆᎭᎻ ᎤᏲᎱᏒ; ᎠᎴ ᎤᏙᏓ ᏄᏍᏛ ᏚᏬᎥ ᎾᏍᎩᏯᏉ ᎠᏏ ᏚᏬᎡᎢ.\nᎡᏏᎪᏃ ᏧᏅᏏᏓᏍᏗ ᎤᎾᏍᎪᏎ ᎤᎨᏓᎵᏴᎢ, ᎠᎴ ᎾᎿ ᎤᏂᏩᏛᎮ ᎠᎹ ᎦᏄᎪᎬᎢ.\n‾ᎩᎳᏃ ᎠᏁᎯ ᎦᎾᏝᎢ ᏗᏂᎦᏘᏯ ᎬᏩᎾᏟᏒᏎᎮ ᎡᏏᎩ ᏧᏤᎵ ᎦᎾᏝᎢ ᏗᏂᎦᏘᏯ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎠᎹ ᎠᏴ ᎣᏍᏤᎵᎦ; ᎾᏍᎩᏃ ᎠᎹ ᎠᏢᏗᏱ ᎠᏍᎪᏒ ᎢᏎᎩ ᏚᏬᎡᎢ; ᏂᎦᎵᏍᏙᏗᏍᎨ ᎬᏩᏗᏒᏎᎸᎢ.\nᎠᎴ ᏅᏩᏓᎴ ᎤᎾᏍᎪᏎ ᎠᎹ ᎠᏢᏗᏱ, ᎾᏍᏉᏃ ᎾᏍᎩ ᎤᎾᏘᏒᎴᎢ; ᎾᏍᎩᏃ ᏏᏘᎾ ᏚᏬᎡᎢ.\nᎾᎿᏃ ᎤᏓᏅᏎᎢ, ᎠᎴ ᏄᏓᎴ ᎤᏍᎪᏎ ᎠᎹ ᎠᏢᏗᏱ; ᎾᏍᎩᏃ ᎥᏝ ᏳᎾᏘᏒᎴᎢ; ᎾᏍᎩᏃ ᎵᎰᏉ ᏚᏬᎡᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᏱᎰᏩᏰᏃ ᎿᏉ ᎢᎩᎳᏅᏓᏗᏏ, ᎠᎴ ᎠᏂ ᎦᏙᎯ ᏓᏗᏁᏉᏥ.\nᎾᎿᏃ ᎤᏓᏅᏒ ᏈᏯᏏᏱᏆ ᏭᎶᏎᎢ.\nᎾᎯᏳᏉᏃ ᏒᏃᏱ ᏱᎰᏩ ᎬᏂᎨᏒ ᏄᏛᏁᎴᎢ, ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᎡᏆᎭᎻ ᏣᏙᏓ ᎤᏤᎵᎦ; ᏞᏍᏗ ᏱᎾᏰᏍᎨᏍᏗ, ᎠᏴᏰᏃ ᏕᎬᎦᎿᏩᏗᏙᎭ, ᎠᎴ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᏓᎦᏥᏁᏉᎢ ᎡᏆᎭᎻ ᏥᏅᏏᏓᏍᏗ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ.\nᎾᎿᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᏬᏢᏁᎢ, ᎠᎴ ᏱᎰᏩ ᎤᏓᏙᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᎾᎿ ᎤᎵᏦᏔᏁᎢ; ᎠᎴ ᎾᎿ ᎡᏏᎩ ᏧᏅᏏᏓᏍᏗ ᎠᎹ ᎠᏢᏗᏱ ᎤᎾᏍᎪᏎᎢ.\nᎿᏉᏃ ᎠᏈᎻᎴᎩ ᎩᎳ ᎤᏂᎩᏎᎢ [ᎡᏏᎩᏃ] ᏭᎷᏤᎴᎢ, ᎠᎴ ᎠᎭᏌ [ᎠᏈᎻᎴᎩ] ᎤᎾᎵᎢ, ᎠᎴ ᏈᎪᎵ ᏧᏤᎵ ᎠᏂᏯᏫᏍᎩ ᏄᎬᏫᏳᏒ ᏗᏘᏂᏙᎯ.\nᎡᏏᎩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎥᏍᎩᎷᏥᏏ, ᏍᎩᏂᏆᏘᎯᏃ ᏥᎩ, ᎠᎴ ᎢᏤᎲ ᏍᎩᎨᎯᏙᎸᎯ ᏥᎩ?\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎤᏙᎯᏳᏒᏍᎩᏂ ᎣᎩᎪᎲᎩ ᏱᎰᏩ ᏕᏣᎧᎿᏩᏗᏙᎲᎢ; ᎯᎠᏃ ᏃᎩᏪᏒᎩ, ᏗᎦᏓᏎᎵᏓᏁᎸᎯ ᎨᏎᏍᏗ, ᎠᏴ ᏂᎯᏃ, ᎠᎴ ᎧᏃᎮᏛ ᏗᏓᏠᎯᏍᏓ;\nᎾᏍᎩ ᎪᎱᏍᏗ ᎤᏲ ᏍᎩᏴᏁᏗᏱ ᏂᎨᏒᎾ, ᎾᏍᎩᏯ ᎪᎱᏍᏗ ᎢᏨᏴᏁᎸᎯ ᏂᎨᏒᎾ ᏥᎩ, ᎠᎴ ᎣᏍᏛᏉ ᎢᏨᏯᏛᏁᎸᎯ ᏥᎩ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᏨᏯᏂᎩᏍᏔᏅᎯ ᏥᎩ; ᏂᎯ ᎿᏉ ᏱᎰᏩ ᎣᏍᏛ ᎢᏣᏛᏁᎸᎯ ᎢᎩ.\nᏚᏛᏅᎢᏍᏓᏁᎴᏃ ᎠᎵᏍᏓᏴᏗ, ᎤᎾᎵᏍᏓᏴᏁᏃ, ᎠᎴ ᏚᎾᏘᏔᎮᎢ.\nᏑᎾᎴᏉᏃ ᏚᎾᏗᏛᎮᎢ, ᎠᎴ ᏚᎾᏓᏎᎵᏓᏁᎴᎢ; ᎡᏏᎩᏃ ᏚᏂᎩᏍᏔᏁᎢ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎢᎬᏩᏂᎩᎡᎴᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᏉ ᎢᎦ, ᎾᏍᎩ ᎡᏏᎩ ᏧᏅᏏᏓᏍᏗ ᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎬᏩᏃᏁᎴ ᎠᎹ ᎠᏢᏗᏱ ᎤᎾᏍᎪᏒ ᎤᎬᏩᎵ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎠᎹ ᎣᏥᏁᏩᏛ.\nᏏᏱᏆᏃ ᏚᏬᎡᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎿ ᎦᏚᎲ ᎩᎳᎯᏳ ᏈᏯᏏᏱᏆ ᏚᏙᎥ.\nᎢᏐᏃ ᏅᎦᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎾᎯᏳ ᏥᏚᏓᏴᏎ ᏧᏗ ᏈᎢᎳ ᎤᏪᏥ ᎾᏍᎩ ᎠᎯᏗ, ᎠᎴ ᏆᏏᎹ ᎢᎶᏂ ᎤᏪᏥ ᎾᏍᎩ ᎠᎯᏗ.\nᎾᏍᎩᏃ ᎯᎠ ᎡᎯᏍᏗ ᎤᎾᏓᏅᏓᏗᏍᏗᏍᎩ ᎨᏎ ᎡᏏᎩ ᎠᎴ ᎵᏇᎩ.\nᎠᏯᏙᎸᎢ 27\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎡᏏᎩ ᎤᏛᏐᏅᎯ ᎨᏎᎢ, ᎠᎴ ᏧᏍᎪᎸᎢ ᎨᏎ ᏗᎦᏙᎵ, ᎾᏍᎩ ᎬᏩᎪᏯᏛᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏭᏯᏅᎮ ᎢᏐ ᎤᏓᏂᎵᎨ ᎤᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏇᏥ; ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏂᏲ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎿᏉ ᎠᏆᏛᏐᏅᎯ, ᎥᏝ ᏱᏥᎦᏔᎭ ᎢᏳᏉ ᎠᎩᏲᎱᎯᏍᏗᏱ;\nᎧ, ᏘᏄᎦ ᏗᏣᎵᏍᎦᏍᏙᏗ, ᎦᏃᏟ ᎠᎴ ᎦᎶᏣᏗ, ᎠᎴ ᎢᎾᎨ ᏫᎶᎯ, ᎠᏫᏃ ᎤᏫᏯ ᏍᎩᏲᏎᎷᎦ;\nᎠᎴ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᏍᏆᏛᏅᎢᏍᏓᏁᎸᎭ, ᎾᏍᎩ ᎣᏏ ᏣᎩᏰᎸᎭ, ᎠᎴ ᏍᎩᏲᎮᎸᎭ, ᎠᎴ ᏥᎬᎭ; ᎾᏍᎩ ᎠᏆᏓᏅᏙ ᎣᏍᏛ ᏣᏁᏤᏗᏱ ᎠᏏᏉ ᎾᎩᏲᎱᏒᎾ.\nᎵᎢᏃ ᎤᏛᎦᏁ ᎡᏏᎩ ᎤᏁᏤᎸ ᎤᏪᏥ ᎢᏐ. ᎢᏐᏃ ᎢᎾᎨ ᏭᎶᏎ ᎠᏫ ᎤᏫᏯ ᎤᏲᎸᏎ ᎤᏲᎯᏍᏗ.\nᎵᏇᎩᏃ ᎤᏁᏤᎴ ᎤᏪᏥ ᏤᎦᏈ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎦᏛᎬᎦ ᏣᏙᏓ ᎧᏁᏤᎲ ᏗᏍᏓᏓᏅᏟ ᎢᏐ, ᎯᎠ ᏂᎦᏪᏍᎬᎢ,\nᎠᏫ ᎤᏫᏯ ᏍᎩᏲᎯᏏ ᎠᎴ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᏍᏆᏛᏅᎢᏍᏓᏏ, ᎠᎴ ᏥᎬᎭ, ᎠᎴ ᎣᏍᏛ ᎬᏁᏤᎸᎭ ᏱᎰᏩ ᎠᎦᏔᎲ ᎠᏏᏉ ᎾᎩᏲᎱᏒᎾ.\nᎿᏉᏃ ᎠᏇᏥ ᎰᎯᏳᎲᎦ ᏥᏁᎬᎢ, ᎾᏍᎩᏯ ᏄᏍᏛ ᎬᏁᏤᎲᎢ.\nᎮᎾ ᎠᏫ ᏗᏁᏙᎲᎢ, ᎠᎴ ᎾᎿ ᏫᏗᏍᎩᏯᏅᏏ ᎠᏂᏔᎵ ᎠᏃᏍᏛ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎠᏂᎩᎾ. ᎾᏍᎩᏃ ᏓᏥᏯᏛᏅᎢᏍᏔᏁᎵ ᏣᏙᏓ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᎾᏍᎩ ᏧᎦᎾᏏᎭ;\nᏣᏙᏓᏃ ᏮᏘᏲᎮᎵ, ᎾᏍᎩᏃ ᏛᎵᏍᏓᏴᏂ, ᎾᏍᎩ ᎣᏍᏛ ᏣᏁᏤᏗᏱ ᎠᏏᏉ ᏄᏲᎱᏒᎾ.\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏥ ᎵᏇᎩ, ᎬᏂᏳᏉ ᎥᎩᏂᎵ ᎤᏂᏆᏟ ᎠᏍᎦᏯ ᏥᎩ, ᎠᏴᏃ ᏥᏓᏫᏍᎦᎨ ᏥᏍᎦᏯ;\nᎡᏙᏓᎾᏃ ᏯᏆᏒᏂᎵᏙᎸ, ᎠᎴ ᏥᎶᏄᎡᏍᎩᏉ ᏯᎩᏰᎸᏅ; ᎿᏉ ᎥᎩᏍᎦᎢᏍᏗᏉ ᏱᏥᏩᏛᏓ, ᎥᏝᏃ ᎣᏍᏛ ᎥᎩᏁᏤᏗᏱ.\nᎤᏥᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏇᏥ ᏂᎯ ᎡᏣᏍᎦᎢᏍᏗ ᎨᏒ ᎠᏴ ᎠᎩᎷᏤᎸᎭ, ᎰᎯᏳᎲᎦᏉ ᏥᏁᎬᎢ, ᎠᎴ ᏫᏗᏍᎩᏯᏅᏏ.\nᎤᏪᏅᏎᏃ, ᎠᎴ ᏫᏚᏯᏅᎮᎢ, ᎠᎴ ᎤᏥ ᏚᏘᏃᎮᎴᎢ; ᎤᏥᏃ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ ᎤᏛᏅᎢᏍᏔᏁ ᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏙᏓ ᎤᎦᎾᏏᏍᎬᎢ.\nᎵᏇᎩᏃ ᏫᏚᏁᏎ ᏦᏍᏛ ᏗᏄᏬ ᎤᏓᏂᎵᎨ ᎤᏪᏥ ᎢᏐ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎦᎵᏦᏕ ᏚᎾᎥᎢ, ᎠᎴ ᏤᎦᏈ ᎣᏂ ᎡᎯ ᎤᏪᏥ ᏚᏄᏬᎡᎢ.\nᎠᏂᎩᎾᏃ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᏧᏂᎮᎦᎸᏅᎯ ᏚᏪᏰᏑᎳᏁᎢ, ᎠᎴ ᎤᏪᏯᏢᏁ ᏓᏫᏍᎦᎨ ᎨᏒ ᎠᏴᏤᏂ;\nᎤᎦᎾᏍᏛᏃ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎦᏚ ᎾᏍᎩ ᏧᏛᏅᎢᏍᏔᏁᎢ, ᏚᏁᎴ ᎤᏪᏥ ᏤᎦᏈ.\nᎤᏙᏓᏃ ᎤᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏂ; ᎦᎪ ᏂᎯ ᎠᏇᏥ?\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎠᏴ ᎢᏐ ᎢᎬᏱ ᎡᎯ ᏤᏥ; ᎾᏍᎩᏯ ᏂᏍᎩᏪᏎᎸ ᎾᏆᏛᏁᎸ; ᎭᏗᏛ, ᎯᎲᎦ, ᎠᎴ ᎭᎵᏍᏓᏴᏓ ᎠᏆᏤᎵᎦ ᎠᏫ ᎤᏫᏯ, ᎾᏍᎩ ᏣᏓᏅᏙ ᎣᏍᏛ ᎠᎩᏁᏤᏗᏱ.\nᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏪᏥ, ᎦᏙ ᎦᎵᏍᏙᏓ ᎠᏇᏥ ᏂᎾᏞᎬ ᏥᏩᏛ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏂᎦᎵᏍᏙᏓᏍᎩᏂ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎠᏆᏘᏃᎮᎸᎢ.\nᎡᏏᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎾᎥ ᏍᎩᎷᏥᏏ, ᎬᏯᏒᏂᏍᏗᏱ, ᎠᏇᏥ, ᎾᏍᎩ ᎤᏙᎯᏳᎯᏯ ᎠᏇᏥ ᎢᏐ ᎨᏒ, ᎠᎴ ᎾᏍᎩ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᏤᎦᏈᏃ ᎾᎥ ᏭᎷᏤᎴ ᎤᏙᏓ ᎡᏏᎩ; ᎤᏒᏂᎵᏙᎴᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎧᏁᎬ ᏤᎦᏈ ᎤᏁᎢᏍᏗ ᎧᏁᎦ, ᏧᏬᏰᏂᏍᎩᏂ ᎢᏐ ᏧᏬᏰᏂ.\nᎥᏝ ᎠᎴ ᏳᏕᎶᎰᎯᏎᎴ ᏂᎦᎵᏍᏙᏗᏍᎨ ᏧᏬᏰᏂ ᏧᏂᏆᏟ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎤᏂᎵ ᎢᏐ ᏧᏬᏰᏂ ᏂᏚᏍᏛᎢ; ᎣᏍᏛᏃ ᎤᏁᏤᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯᏍᎪ ᏂᎯ ᎢᏐ ᎠᏇᏥ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᎥ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎾᎥ ᏍᎩᏲᎯᏏ, ᏓᎦᎵᏍᏓᏴᏔᏂᏃ ᎠᏫ ᎤᏫᏯ ᎠᏇᏥ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎣᏍᏛ ᎬᏁᏤᏗᏱ; ᎾᎥᏃ ᎤᏲᎴᎢ, ᎠᎴ ᎤᎵᏍᏓᏴᏁᎢ; ᎠᎴ ᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏂᏦᎮᎴᎢ, ᎠᎴ ᎤᏗᏔᎮᎢ.\nᎤᏙᏓᏃ ᎡᏏᎩ ᎯᎠ ᎤᏪᏎᎴᎢ, ᎡᎮᎾᏃ ᎠᏇᏥ, ᎠᎴ ᏍᏆᏔᏪᏙᎥᎦ.\nᎾᎥᏃ ᎤᎷᏤᎴᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ; ᎤᏪᏩᏒᏤᏃ ᏚᏄᏮ ᏕᎦᏩᏒᎬᎢ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎦᏩᏒᎬ ᎠᏇᏥ ᎾᏍᎩᏯᏉ ᏠᎨᏏ ᏥᎦᏩᏒᎪ ᎾᏍᎩ ᏱᎰᏩ ᎣᏍᏛ ᎤᏁᏤᎸᎯ.\nᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᏫᏣᏍᎪᎸᏓᏏ ᎤᎯᏌᏛ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎦᏙᎯ ᎦᎵᏦᏅᎢ, ᎠᎴ ᎤᏣᏘ ᎠᎦᏔᏔᏅᎥᏍᎩ, ᎠᎴ ᏖᎸᎳᏗ ᎦᏨᏩᏍᏔᏅᎯ;\nᏴᏫ ᏓᏁᏩᏗᏒ ᏂᎯ ᏗᎨᏣᏁᎶᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎡᎳᏗ ᏂᎨᏣᏛᏁᎮᏍᏗ; ᏣᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎢᏣᎵᏅᏟ ᎠᏁᎲᎢ, ᎠᎴ ᏣᏥ ᏧᏪᏥ ᎡᎳᏗ ᏂᎨᏣᏛᏁᎮᏍᏗ; ᎠᏥᏍᎦᎢᏍᏗ ᎨᏎᏍᏗ ᏂᎯ ᏣᏍᎦᎩ, ᎠᎴ ᎣᏍᏛ ᎠᏥᏁᏤᏗ ᎨᏎᏍᏗ, ᎣᏍᏛ ᏣᏁᏤᎯ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎡᏏᎩ ᎤᏍᏆᏛᏉ ᎣᏍᏛ ᎧᏁᏤᎲ ᏤᎦᏈ, ᎠᎴ ᏤᎦᏈ ᎩᎳᏉ ᎤᏄᎪᏨᎯ ᎨᏎ ᎤᏙᏓ ᎡᏏᎩ ᎠᎦᏔᎲᎢ, ᎿᏉ ᎤᏂᎵ ᎢᏐ ᎢᎤᎷᏤ ᎤᏃᎯᎵᏙᎸᎯ.\nᎾᏍᎩᏃ ᎾᏍᏉ ᎤᏛᏅᎢᏍᏔᏅᎯ ᎢᎨᏎ ᎤᎦᎾᏍᏛ ᎠᎵᏍᏓᏴᏗ, ᎠᎴ ᎤᏙᏓ ᎤᏲᎮᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎡᏙᏓ ᏩᏗᏛ, ᎠᎴ ᎤᏪᏥ ᏩᎵᏍᏓᏴᎾᏏ ᎠᏫ ᎤᏫᏯ, ᎾᏍᎩ ᏣᏓᏅᏙ ᎣᏍᏛ ᎠᎩᏁᏤᏗᏱ.\nᎤᏙᏓᏃ ᎡᏏᎩ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᎪ ᏂᎯ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴᏍᎩᏂ ᏤᏥ, ᎢᎬᏱ ᎨᎢ ᏥᏥ ᎢᏐ.\nᎡᏏᎩᏃ ᎤᎶᏒᏍᏔᏅᎯ ᎤᏪᎾᏪᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪᏃ ᏧᏩᏛᎲ ᎠᏫ ᎤᏫᏯ ᎠᎴ ᏣᎩᏲᎮᎸ, ᎠᎴ ᏂᎦᏛ ᏣᏆᎵᏍᏓᏴᏔᏅ ᎠᏏᏉ ᏂᏣᎷᏨᎾ, ᎠᎴ ᎣᏍᏛ ᏥᏥᏁᏤᎸ? ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᎣᏍᏛ ᎠᏥᏁᏤᎸᎯ ᎨᏎᏍᏗ.\nᎢᏐᏃ ᎤᏛᎦᏅ ᎤᏙᏓ ᏄᏪᏒᎢ, ᏚᏠᏍᎴᎢ, ᎤᎶᏒᏍᏔᏅᎯ ᎡᎯᏍᏗ ᏚᏠᏱᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎠᏴ ᎾᏍᏉ ᎣᏍᏛ ᏍᎩᏁᏥ, ᎡᏙᏓ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎡᏣᏅᏟ ᎦᎶᏄᎮᏛ ᎤᏩᏔᏅ ᎤᎷᏨ, ᎠᎴ ᏣᎩᎡᎸ ᏣᏤᎵ ᎣᏍᏛ ᎡᏣᏁᏤᏗ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏝᏍᎪ ᏚᏳᎪᏛ ᏱᎩ ᏤᎦᏈ ᏥᏓᎪᎥ? ᏔᎵᏰᏃ ᎿᏉ ᎢᎬᏱ ᎾᎿᎴᎲᏏ; ᎠᏆᏓᏂᎵᎨᏰᏃ ᎨᏒ ᎠᎩᎩᏎᎸᎩ; ᎬᏂᏳᏉᏃ ᎿᏉ ᎣᏍᏛ ᎥᎩᏁᏤᏗ ᎨᏒ ᎥᎠᎩᎩᏏ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏝᏍᎪ ᏱᏣᏃᎯᏴ ᎠᏴ ᎣᏍᏛ ᏍᎩᏁᏤᏗᏱ?\nᎡᏏᎩᏃ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴ ᎢᏐ, ᎬᏂᏳᏉ ᏂᎯ ᎢᏍᏕᎲ ᎤᎬᏫᏳᎯ ᏂᏥᏴᎦ, ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᏕᏥᏲᎯᏏ ᏗᎬᏩᏁᎶᏗ ᎢᏳᎵᏍᏙᏗᏱ; ᎠᎦᏔᏔᏅᎥᏍᎩᏃ ᎠᎴ ᏖᎸᎳᏗ ᎦᏨᏩᏍᏔᏅᎯ ᎥᏥᏍᏕᎸᏙᏓ; ᎦᏙᏃ ᏓᎬᏯᏛᏁᎵ ᏂᎯ ᎠᏇᏥ?\nᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎡᏙᏓ, ᏌᏉᏉᏍᎪ ᏣᎮ ᎣᏍᏛ ᏣᏓᏁᏤᏗ ᎨᏒᎢ? ᎠᏴ ᎾᏍᏉ ᎣᏍᏛ ᏍᎩᏁᏥ ᎡᏙᏓ. ᎢᏐᏃ ᎠᏍᏓᏯ ᏚᏠᏱᎴᎢ.\nᎤᏙᏓᏃ ᎡᏏᎩ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎦᏙᎯ ᎦᎵᏦᏅ ᎮᎮᏍᏗ, ᎠᎴ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ ᎠᎯᏌᏛᏍᎬᎢ.\nᎠᎴ ᎠᏰ ᎳᏍᏗ-ᎦᏅᎯᏛ ᎲᏗᏍ ᏣᏛᏂᏘᏍᏙᏕᏍᏗ, ᎠᎴ ᎡᎶᏅᏟ ᏕᎯᏯᏁᎶᏕᏍᏗ; ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎿᏉ ᏂᎯ ᎯᏯᏓᎵᏁᎯᏕᎸᎭ, ᏙᏘᏍᏆᎵᏎᎵ ᏣᎩᎳᎾᎳᏗᏍᏛᎢ.\nᎢᏐᏃ ᎦᏂᏆᏘᎮ ᏤᎦᏈ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎣᏍᏛ ᎤᏓᏁᏤᏗ ᎨᏒ ᎤᏙᏓ ᎾᏍᎩ ᎣᏍᏛ ᎤᏁᏤᎸᎢ; ᎢᏐᏃ ᎯᎠ ᏄᏪᏎ ᏧᏓᏅᏛᎢ, ᎡᏙᏓ ᎠᏍᎪᏂᏍᏗ ᎨᏒ ᎿᏉ ᎤᏍᏆᎸᎯᏗ; ᎾᎯᏳᏃ ᏓᏥᎵ ᎥᎩᏅᏟ ᏤᎦᏈ.\nᎵᏇᎩᏃ ᎠᏥᏃᏁᎴ ᎾᏍᎩ ᎯᎠ ᏄᏪᏒ ᎢᏐ ᎾᏍᎩ ᎤᏓᏂᎵᎨ ᎤᏪᏥ, ᎤᏓᏅᏎᏃ ᎠᎴ ᏭᏯᏅᎮ ᎣᏂ ᎡᎯ ᎤᏪᏥ ᏤᎦᏈ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎡᎶᏂᎵ ᎢᏐ, ᎤᏩᏒ ᎠᏓᎧᎵᏍᏓᏗᏍᏙᏗᎭ ᏂᎯ ᏣᎯᏍᏗᏱ ᎠᎥᏖᏍᎬᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏇᏥ, ᎰᎯᏳᎲᎦ ᏥᏁᎬᎢ, ᎠᎴ ᏔᎴᎲᎦ, ᎭᎵᏘ ᎴᏆᏂ ᎥᎩᏙ ᏤᎲ ᎮᎳᏂᏱ ᏫᎶᎯ.\nᎢᎸᏍᎩᏃ ᏧᏒᎯᏛ ᏫᏯᏕᎥᏏ, ᎡᏣᏂᎵ ᎤᏔᎳᏬᏍᎬ ᎬᏂ ᎦᎶᏐᏅᎭ.\nᎬᏂ ᎡᎶᏂᎵ ᏣᏍᎦᎬ ᎦᎶᏐᏅᎭ, ᎠᎴ ᎤᏩᎨᏫᏒᎭ ᏂᎯ ᏂᏴᏁᎸᎢ; ᎿᏉᏃ ᎦᏓᏅᏒᎭ, ᎠᎴ ᎾᎿ ᏫᎬᏯᏅᎲᎭ; ᎦᏙᏃ ᎢᏧᎳ ᏌᏉ ᎢᎦ ᏱᏍᏛᎪᏁᎶᏨ?\nᎵᏇᎩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᏏᎩ, ᏓᎩᏯᏪᎦᏉ ᎨᎥᎢ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏂᎨᏴ ᎮᏗ ᏧᏪᏥ; ᎢᏳᏃ ᏤᎦᏈ ᎩᎶ ᎯᎠ ᎮᏗ ᏧᏪᏥ ᏳᏓᏰᏅ, ᎾᏍᎩ ᎯᎠ ᏥᏄᎾᏍᏗᏉ ᎡᏍᎦᏂ ᏣᏁᎭ, ᎦᏙ ᎠᏋᏙᏗ ᏱᎩ ᎨᎥᎢ.\nᎠᏯᏙᎸᎢ 28\nᎡᏏᎩᏃ ᏭᏯᏅᎮ ᏤᎦᏈ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ, ᎠᎴ ᎤᏁᏤᎴᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᏞᏍᏗ ᎨᎾᏂ ᏧᏪᏥ ᎠᏁᎲ ᎩᎶ ᏣᏓᏴᏒᎩ.\nᏔᎴᎲᎦ ᏇᏓᏁᎳᎻ ᏫᎶᎯ, ᏇᏚᎡᎵ ᏗᎦᏁᎸᎢ, ᎾᏍᎩ ᏣᏥ ᎤᏙᏓ; ᎠᎴ ᎾᎿ ᎯᏯᏅᎲᎭ ᏣᏓᎵᎢ, ᎠᏁᎲ ᏧᏪᏥ ᎴᏆᏂ ᎾᏍᎩ ᏣᏥ ᎤᏙᏓ.\nᎠᎴ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏥᎩ, ᎾᏍᎩ ᎣᏍᏛ ᏣᏁᏤᎸᎭ, ᎠᎴ ᏣᏁᏉᏣᏘ ᏂᏨᏁᎸᎭ, ᎠᎴ ᏣᏁᏉᎢᎶᎥᎭ, ᎾᏍᎩᏃ ᏂᎯ ᎤᏂᏣᏘ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᎿᎵᏍᏗᏍᎨᏍᏗ;\nᎠᎴ ᏣᏁᎸᎭ ᎡᏆᎭᎻ ᎤᏤᎵᎦ ᎣᏍᏛ ᎤᏁᏤᏗ ᎨᏒᎢ, ᏂᎯ ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ; ᎾᏍᎩᏃ ᏣᏤᎵ ᏂᎦᎵᏍᏔᏅᎭ ᎦᏙᎯ ᎾᎿ ᎮᏙᎯ ᏥᎩ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᏁᎴ ᎡᏆᎭᎻ.\nᎡᏍᏗᎩᏃ ᎤᏂᎩᏍᏔᏁ ᏤᎦᏈ; ᏇᏓᏁᎳᎻ ᏭᎶᏎ ᎴᏆᏂ ᏤᎲᎢ, ᎾᏍᎩ ᏇᏚᎡᎵ ᏏᎵᏱ ᎡᎯ ᎤᏪᏥ, ᎵᏇᎩ ᎤᏙ, ᎾᏍᎩ ᏤᎦᏈ ᎠᎴ ᎢᏐ ᎤᏂᏥ.\nᎢᏐᏃ ᎤᏙᎴᎰᏒ ᎡᏏᎩ ᎣᏍᏛ ᎤᏁᏤᎸ ᏤᎦᏈ, ᎠᎴ ᏇᏓᏁᎳᎻ ᎤᏂᎩᏍᏔᏅᎢ, ᎾᎿ ᏭᏕᏒᎲᏍᏗᏱ; ᎠᎴ ᎾᏍᎩ ᎣᏍᏛ ᎤᏁᏤᎸ ᎯᎠ ᏄᏪᏎᎸᎢ ᎤᏁᏤᎸᎢ, ᎥᏞᏍᏗ ᎨᎾᏂ ᏧᏪᏥ ᎩᎶ ᏣᏓᏴᏒᎩ;\nᎠᎴᏃ ᏤᎦᏈ ᏚᏬᎯᏳᏅ ᎤᏙᏓ ᎠᎴ ᎤᏥ, ᎠᎴ ᏇᏓᏁᎳᎻ ᏭᎶᏒᎢ.\nᎢᏐᏃ ᎤᏙᎴᎰᏒ ᎨᎾᏂ ᏧᏪᏥ ᎡᏍᎦ ᏓᏰᎸᏍᎬ ᎤᏙᏓ ᎡᏏᎩ;\nᎢᏐ ᎿᏉ ᎢᏏᎺᎵᏱ ᏭᎶᏎᎢ, ᎠᎴ ᎾᏍᎩ ᏓᏓᏰᎲ ᎤᏁᏉᎡ ᎤᏓᏴᏎ ᎺᎮᎳ, ᏁᏆᏲ ᎤᏙ, ᎢᏏᎺᎵ ᎤᏪᏥ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏪᏥ.\nᏤᎦᏈᏃ ᎤᏂᎩᏎ ᏈᏯᏏᏱᏆ, ᎠᎴ ᎮᎳᏂ ᎢᏗᏢ ᏭᎶᏎᎢ.\nᎢᎸᎯᏢᏃ ᎢᏴᏛ ᏭᎷᏤᎢ, ᎠᎴ ᎾᎿ ᎤᏒᎴᎢ, ᏅᏗᎦᎵᏍᏙᏍᏙᏗᏍᎨ ᏅᏙ ᏭᏕᎵᏨᎢ; ᏅᏯᏃ ᎾᎿ ᎠᏂᎳᎨᏴ ᎤᎩᏎ ᎠᎴ ᎤᏓᏍᏔᏁᎢ; ᎠᎴ ᎾᎿ ᎤᏂᏏᏁᎢ.\nᎤᏍᎩᏓᏎᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎡᎶᎯ ᎠᏴᏯᏞᎢ, ᎦᎸᎳᏗᏃ ᎢᏴᏛ ᏭᎵᏍᏖᎢ; ᎠᎴ ᎬᏂᏳᏉ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎾᎿ ᎠᎾᎩᎳᏫᏍᏗᏍᎨᎢ, ᎠᎴ ᎠᎾᏠᎠᎯᏍᏗᏍᎨᎢ.\nᎠᎴ ᎬᏂᏳᏉ ᏱᎰᏩ ᎾᎿ ᎦᎸᎳᏗᏢ ᏗᎦᏙᎨᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᏣᏙᏓ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ; ᎦᏙᎯ ᎾᎿ ᏥᏅᎦ, ᏂᎯ ᏓᎬᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ.\nᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎦᏓ ᎡᎶᎯ ᎦᎳᎨᏴ ᎾᏍᎩᏯ ᏄᎾᏍᏕᏍᏗ, ᎠᎴ ᏗᏰᎵᏏ ᏭᏕᎵᎬ ᎢᏗᏢ, ᎠᎴ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎠᎴ ᏧᏴᏢ ᎢᏗᏢ, ᎠᎴ ᏧᎦᎾᏮ ᎢᏗᏢ; ᎠᎴ ᏂᎯ ᎨᏒ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎨᏒ ᏅᏓᎦᎵᏍᏙᏔᏂ ᏂᎦᏗᏳ ᏗᏂᎳᏍᏓᎳᏩᏗᏒ ᎡᎶᎯ ᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎬᏂᏳᏉ ᎠᏴ ᏕᎬᎦᎿᏩᏗᏙᎭ, ᎠᎴ ᏓᎬᏍᏆᏂᎪᏔᏂ ᏂᎦᎥ ᏂᏣᏛᎿᏕᎬᎢ, ᎠᎴ ᏔᎵᏁ ᎠᏂ ᎦᏙᎯ ᏛᎬᏯᏘᏃᎵ; ᎥᏝᏰᏃ ᏴᎦᎬᏴᏕᎩ ᎬᏂ ᏂᎦᏛᏁᎸ ᎾᏍᎩ ᏥᎬᏁᎢᏍᏓᏏ.\nᏤᎦᏈᏃ ᎤᏰᏤ ᎦᎵᎲᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᏱᎰᏩ ᎠᏂ ᎡᎭ; ᎠᎴ ᎥᏝ ᏱᏥᎦᏔᎮᎢ.\nᎤᏍᎦᎴᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎦᎥ ᎤᎾᏰᎯᏍᏗ ᎯᎠ ᎠᏂ? ᎯᎠᏰᏃ ᎤᏙᎯᏳᎯᏯ ᎤᏁᎳᏅᎯ ᎦᏁᎸᎢ, ᎠᎴ ᎯᎠ ᎦᎸᎳᏗ ᏫᎦᎾᏄᎪᎩ ᎦᎶᎯᏍᏗᏱ.\nᏤᎦᏈᏃ ᏑᎾᎴᏉ ᎤᏗᏛᎮᎢ, ᏅᏯᏃ ᎤᏓᏍᏔᏅᎯ ᎤᎩᏎᎢ, ᎠᎴ ᎤᏪᏘᏁᎢ, ᎠᎴ ᎪᎢ ᎤᏍᎪᎵ ᎤᏍᏚᏞᎢ.\nᎾᎿᏃ ᏇᏕᎵ ᏚᏬᎡᎢ; ᎢᎬᏱᏱᏍᎩᏂ ᎳᏏ ᏚᏙᎡ ᎾᎿ ᎦᏚᎲᎢ.\nᏤᎦᏈᏃ ᎤᏁᎳᏅᎯ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎤᏁᎳᏅᎯ ᎯᏓᎩᎧᎿᏩᏗᏙᎸ, ᎠᎴ ᏯᎩᏍᏆᏂᎪᏔᏅ ᎯᎠ ᎠᏂ ᏫᏥᎦᏛᎢ, ᎠᎴ ᎦᏚ ᎠᏆᎵᏍᏓᏴᏗ ᏯᎩᏁᎭ, ᎠᎴ ᏗᏄᏬ ᏗᏆᏄᏬᏍᏗ ᏱᏓᎩᏅᏁᎭ,\nᎾᏍᎩᏃ ᏅᏩᏙᎯᏯᏛ ᏮᎠᎩᎷᎯᏍᏗᏱ ᏱᏄᏩᏁᎸ ᎡᏙᏓ ᎦᏁᎸᎢ; ᎿᏉ ᏱᎰᏩ ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᎨᏎᏍᏗ;\nᎠᎴ ᎯᎠ ᎾᏍᎩ ᏅᏯ ᏥᎨᏛᎦ ᎤᏁᎳᏅᎯ ᎦᏁᎸ ᎨᏎᏍᏗ, ᏂᎦᏛᏃ ᏍᎩᏁᏗ ᎨᏒᎢ ᎠᏎ ᎠᏍᎪᎯᏁ ᎪᏣᎴᏛ ᎬᏁᏗ ᎨᏎᏍᏗ.\nᎠᏯᏙᎸᎢ 29\nᏤᎦᏈᏃ ᎤᏂᎩᏎᎢ, ᎠᎴ ᏭᎷᏤ ᏗᎧᎸᎬ ᎢᏗᏢ ᎠᏁᎯ ᏴᏫ ᎤᎾᏤᎵᎪᎯ.\nᏫᏚᎧᎿᏁᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎢᎾᎨ ᎠᏔᎴᏎ ᎠᎹ ᎠᏢᏗᏱ, ᎠᎴ ᎬᏂᏳᏉ ᎾᎿ ᏦᎢ ᎢᏳᎾᏓᏡᎩ ᎠᏫ ᎠᏂᏅᏝᎡᎢ, ᎾᎿᏰᏃ ᎠᏔᎴᏒ ᏓᎾᏗᏔᏍᏗᏍᎨ ᎠᏫ; ᎠᎴ ᎡᏉᎯᏳ ᏅᏯ ᎠᎱᏢᏕ ᎠᏔᎴᏒᎢ.\nᎾᎿᏃ ᎠᏂᏟᏌᏂᎯᎮ ᏂᎦᏛ ᎠᏫ; ᎠᎴ ᎠᏂᏌᏆᎴᎯᎮ ᎠᏂᎲᏍᎨ ᏅᏯ ᎠᏔᎴᏒ ᎠᎱᏢᏛᎢ, ᎠᎴ ᏓᎾᏗᏔᏍᏗᏍᎨ ᎠᏫ; ᏟᏁᏃ ᏅᏯ ᎠᏂᎱᏢᏗᏍᎨ ᎠᏔᎴᏒᎢ, ᎠᏗᏱ ᎠᏂᎲᏍᎨᎢ.\nᏤᎦᏈᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏓᎵᏅᏟ, ᏎᏢ ᏗᏤᏅ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎮᎳᏂᏱ ᏦᎨᏅ ᎠᏴ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎡᏥᎦᏔᎭᏍᎪ ᎴᏆᏂ, ᏁᎰ ᎤᏪᏥ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎣᏥᎦᏔᎭ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏙᎯᏱᏉᏍᎪ ᏄᏛᏁᏕᎦ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏙᎯᏱᏉ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏪᏥ ᎴᏥᎵ ᏓᏯᎢ ᎠᏫ ᏙᏛᏘᏂ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏏ ᎦᎸᎳᏗᏳ ᏫᎧᎳ; ᎥᏝ ᎠᎴ ᎠᏏ ᏳᏍᏆᎸᎲ ᎦᎾᏝᎢ ᎦᏟᏐᏗᏱ; ᏗᏣᏗᏔᏍᏓ ᎠᏫ, ᎠᎴ ᏗᏣᏛᎿᏗᏍᏔᏄᎦ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎥᏝ ᏰᎵᎦ ᎬᏂ ᏂᎦᏛ ᎠᏫ ᎠᏂᏟᏌᏃᏅᎭ, ᎠᎴ ᏅᏯ ᎠᏂᏌᏆᎴᎸ ᎠᏂᎲᏒ ᎠᎱᏝᎥ ᎠᏔᎴᏒᎢ; ᎩᎳ ᏙᏓᏲᏣᏗᏔᏍᏔ ᎠᏫ.\nᎠᏏᏉᏃ ᏓᎵᏃᎮᏗᏍᎨᎢ, ᎴᏥᎵ ᎤᎷᏤ ᏚᏘᏃᎴ ᎠᏫ ᎤᏙᏓ ᏧᏤᎵᎦ; ᎾᏍᎩᏰᏃ ᏕᎬᎿᏗᏍᏗᏍᎨᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏤᎦᏈ ᎤᎪᎲ ᎴᏥᎵ, ᎴᏆᏂ ᎤᏪᏥ, ᎾᏍᎩ ᎤᏥ ᎤᏙ, ᎠᎴ ᎠᏫ ᎴᏆᏂ ᏧᏤᎵᎦ ᎾᏍᎩ ᎤᏥ ᎤᏙ, ᎾᏍᎩ ᏤᎦᏈ ᎾᎥ ᏭᎷᏤ, ᎠᎴ ᎤᏪᏌᏆᎴᎴ ᎤᎲᏎ ᏅᏯ ᎠᎱᏢᏛ ᎠᏔᎴᏒᎢ, ᎠᎴ ᏚᏗᏔᏍᏔᏁ ᎠᏫ ᎴᏆᏂ ᏧᏤᎵᎦ, ᎾᏍᎩ ᎤᏥ ᎤᏙ.\nᏤᎦᏈᏃ ᎤᏔᏪᏙᏁ ᎴᏥᎵ, ᎠᎴ ᎠᏍᏓᏯ ᏚᏠᏱᎴᎢ.\nᏤᎦᏈᏃ ᎤᏃᏁᎴ ᎴᏥᎵ ᎾᏍᎩ ᎤᏙᏓ ᎠᎾᎵᏅᏟ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᎵᏇᎩ ᎤᏪᏥ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏚᏍᏆᎸᏔᏁᎢ, ᎠᎴ ᎤᏙᏓ ᎤᏃᏁᎴᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎴᏆᏂ ᎤᏛᎦᏅ ᎠᏥᏃᎮᏍᎬ ᏤᎦᏈ, ᎤᏙ ᎤᏪᏥ, ᏚᏍᏆᎸᏔᏁ ᏚᏠᏒᏎᎢ, ᎠᎴ ᎤᏄᎶᎴᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ, ᎠᎴ ᎦᏁᎸ ᎤᏘᏃᎴᎢ. ᎾᏍᎩᏃ ᎤᏃᏁᎴ ᎴᏆᏂ ᏂᎦᏛ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸᎢ.\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᏂᎯ ᎠᏴ ᏗᎩᎪᎳ ᎠᎴ ᎠᏴ ᎠᎩᏇᏓᎸᎢ. ᏏᏅᏙᏃ ᎢᎪᎯᏛ ᎤᏕᏁᎴᎢ.\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏗᎾᏓᏅᏟᏉᏍᎪ ᎨᏒ ᏱᏂᎦᎵᏍᏙᏗᎭ ᎠᏎᏉ ᎪᎱᏍᏗ ᏱᏍᏆᏛᏁᎭ? ᏍᎩᏃᎲᏏ ᎯᎳᎪ ᎢᎦ ᎬᎫᏴᎡᎮᏍᏗ.\nᎴᏆᏂᏃ ᎠᏂᏔᎵ ᏧᏪᏥ ᎠᎾᏛ ᎠᏁᎮᎢ; ᎤᏓᏂᎵᎨ ᎵᎠ ᏚᏙᎡᎢ, ᎣᏂᏃ ᎡᎯ ᎴᏥᎵ ᏚᏙᎡᎢ.\nᎵᎠ ᏧᏐᏅ ᏗᎧᏂ ᎨᏎᎢ; ᎴᏥᎵᏍᎩᏂ ᎤᏬᏚᎯᏳ ᎠᎴ ᎣᏏᏳ ᏗᎧᏃᏗᏱ ᎨᏎᎢ.\nᏤᎦᏈᏃ ᎴᏥᎵ ᎤᎨᏳᎯᏳ ᎨᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᏓᎬᏯᏛᏁᎵ ᎴᏥᎵ ᎡᎯ ᏤᏥ ᏱᏍᎩᎧᏁᎸ.\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏟ ᎣᏏᏳ ᏂᎯ ᏱᎬᏯᎧᏁᎸ, ᎠᏃ ᏅᏩᏓᎴ ᎠᏍᎦᏯ ᏱᏥᏯᎧᏁᎸ; ᎨᏦᎴᏍᏗᏉᎪᎦ.\nᏤᎦᏈᏃ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎤᏓᏛᏁᎴ ᎴᏥᎵ ᎠᏓᏒᎲᏍᎬᎢ; ᎢᎸᏍᎩᏉᏃ ᏧᏒᎯᏛ ᎤᏰᎸᏁᎢ, ᏂᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᎥ ᎤᎨᏳᏒᎢ.\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᏍᎩᎧᏏᏃ ᎠᏆᏓᎵᎢ, ᎿᏉᏰᏃ ᎠᎵᏍᏆᏓ ᎩᏂᏁᏨᎢ, ᎾᏍᎩᏃ ᎦᏓᏰᏒᎭ.\nᎴᏆᏂᏃ ᏚᏪᏟᏌᏁ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᎾᎿ ᎠᏁᎯ, ᎠᎴ ᎤᏛᏅᎢᏍᏔᏁ ᏣᎦᎵᏍᏓᏴᎾᏁᏗᏱ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎤᏒ ᏄᎵᏍᏔᏅ, ᎾᏍᎩ ᎤᏪᏥ ᎵᎠ ᏭᏘᏃᎮᎴᎢ; [ᏤᎦᏈᏃ] ᎤᏓᏴᏎᎢ.\nᎴᏆᏂᏃ ᎤᏪᏥ ᎵᎠ ᎤᏪᎧᏁᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏏᎵᏆ ᏧᏙᎢᏛ, ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏑᎾᎴ ᏄᎵᏍᏔᏅ, ᎬᏂᏳᏉ, ᎵᎠ ᏂᎦᎨᏎᎢ; [ᏤᎦᏈᏃ] ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᎦᏙᏃ ᎯᎠ ᏥᏂᏍᏋᎦ? ᏝᏍᎪ ᎴᏥᎵ ᏱᎬᏒᎲᏍᎨ ᏥᏓᎩᎸᏫᏍᏓᏁᎲᎩ? ᎦᏙᏃ ᎥᏍᎩᎶᏄᎲᎵ?\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᎾᏍᎩ ᎢᏯᏛᏁᏗ ᏱᎩ ᎠᏴ ᎣᎦᏤᎵᎪᎯ, ᎾᏍᎩ ᎣᏂ ᎡᎯ ᎠᏓᎧᏁᏗᏱ ᎠᏏ ᎢᎬᏱ ᎡᎯ ᎾᏓᎧᏁᎸᎾ.\nᎯᏍᏆᏓ ᎾᏍᎩ ᎤᏤᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒᎢ, ᎯᎠᏃ ᎾᏍᏉ ᎢᏨᏯᎧᏁᎸᎭ, ᎠᏏ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᏨᏛᏍᏆᏛᏁᎵ.\nᏤᎦᏈᏃ ᎾᏍᎩ ᏄᏛᏁᎴᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏑᎾᏙᏓᏆᏍᏗ ᎨᏒ ᎤᏍᏆᏕᎴᎢ; ᎴᏥᎵᏃ ᎿᏍᏉ ᎾᏍᎩ ᎤᏪᏥ ᎤᏪᎧᏁᎴ ᎤᏓᏴᏍᏗ.\nᎴᏆᏂᏃ ᎤᏪᏥ ᎴᏥᎵ ᎤᏪᎧᏁᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏈᎳ ᏧᏓᎢᏛ, ᎾᏍᎩ ᎤᏅᏏᏓᏍᏗ ᎢᏳᎵᏍᏙᏗᏱ.\nᎾᏍᏉᏃ ᎴᏥᎵ ᎤᏓᏴᏎᎢ, ᎠᎴ ᎴᏥᎵ ᎤᏟ ᏄᎨᏳᏎ ᎡᏍᎦᏉ ᎵᎠ; ᎠᎴ ᎠᏏ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎤᏛᏁᎴᎢ.\nᏱᎰᏩᏃ ᎤᏙᎴᎰᏒ ᎵᎠ ᎠᏥᏐᎸᎢᏍᏗᏍᎬᎢ, ᎤᎳᏅᏓᏕᎴ ᏧᎷᎸᏗᏱ; ᎴᏥᎵᏍᎩᏂ ᏂᏓᎷᎸᎥᏍᎬᎾ ᎨᏎᎢ.\nᎵᎠᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᎷᏈᏂ ᏚᏬᎡᎢ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᏱᎰᏩ ᏓᎧᎿᏂᎦ ᎤᏲ ᎾᏆᏛᏅᎢ; ᎿᏉᏰᏃ ᎠᎩᏰᎯ ᎠᏎ ᎠᎩᎨᏳᏍᏗ.\nᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᏱᎰᏩ ᎤᏛᎦᏅ ᎥᎩᏐᏅᎢᏍᏗᏍᎬᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎾᏍᏉ ᎥᎠᎩᎧᏏ ᎾᏍᎩᏃ ᏏᎻᏯᏂ ᏚᏬᎡᎢ.\nᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎪᎯ ᎨᎵ ᎠᏎ ᎠᎩᏰᎯ ᏛᏆᏜᏫᏍᏔᏂ, ᎠᏂᏦᎢᏰᏃ ᎠᏂᏧᏣ ᏕᏥᎾᏄᎪᏫᏏ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎵᏫ ᏓᎪᎡᎢ.\nᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎿᏉ ᏱᎰᏩ ᏓᏥᎸᏉᏔᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏧᏓ ᏚᏬᎡᎢ; ᎤᏲᎯᏍᏔᏁᏃ ᏓᎷᎸᎥᏍᎬᎢ.\nᎠᏯᏙᎸᎢ 30\nᎴᏥᎵᏃ ᎤᏙᎴᎰᏒ ᏤᎦᏈ ᏂᎦᎷᎸᏁᎲᎾ ᎨᏒᎢ, ᎤᏩᏳᏤᎴ ᎤᎸᎢ; ᎯᎠᏃ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏗᏂᏲᎵ ᏗᏍᎩᎧᏏ, ᎢᏳᏰᏃ ᏱᏝ, ᏓᏥᏲᎤᏏ.\nᏤᎦᏈᏃ ᎤᎿᎸᏤᎴ ᎴᏥᎵ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᏥᎪᎠᏴ ᎤᏁᎳᏅᎯ ᏥᏯᏓᏁᏟᏴᏍᏓᏁᎸ, ᎾᏍᎩ ᏧᏲᏍᏙᏯᏅ ᏗᏣᎷᎸᏗᏱ?\nᎯᎠᏃ ᏄᏪᏎ [ᎴᏥᎵ,] ᎬᏂᏳᏉ, ᏈᎳ ᏥᏅᏏᏓᏍᏗ ᎠᎨᏴ, ᎾᏍᎩ ᎭᏓᏳᎦ, ᎾᏍᎩᏃ ᏗᏥᏂᎨᏂ ᏓᏓᎾᏄᎪᏫᏒᎭ, ᎾᏍᎩᏃ ᎠᏴ ᎾᏍᏉ ᏗᏂᏲᎵ ᏓᏇᎮᏍᏗ ᎾᏍᎩ ᏧᎾᏄᎪᏫᏒᎯ.\nᎤᏪᎧᏁᎴᏃ ᏈᎳ ᎠᏛ ᎤᏅᏏᏓᏍᏗ ᎾᏍᎩ ᎤᏓᏴᏍᏗ; ᏤᎦᏈᏃ ᎤᏓᏴᏎᎢ.\nᏈᎳᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ.\nᎴᏥᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᏓᏊᎪᏓᏁᎸ, ᎠᎴ ᎾᏍᏉ ᎠᏛᎬᎦ ᏥᏁᎬᎢ, ᎠᎴ ᎠᎩᎧᏏ ᎠᏇᏥ ᎠᏧᏣ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏕᏂ ᏚᏬᎡᎢ.\nᏈᎳᏃ ᎴᏥᎵ ᎤᏅᏏᏓᏍᏗ ᎤᏁᎵᏤᎢ, ᎠᎴ ᏤᎦᏈ ᏔᎵᏁ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎴᎢ.\nᎴᏥᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏣᏘ ᎠᏍᏓᏯ ᏙᎩᎾᏟᏴᏌᏕᎬ ᎥᎩᎸᎢ, ᎠᎴ ᎠᏴ ᎦᏓᏎᎪᎩ; ᏁᏩᏔᎵᏃ ᏚᏬᎡᎢ.\nᎵᎠᏃ ᎤᏙᎴᎰᏒ ᎤᏲᎯᏍᏔᏅ ᏓᎷᎸᏍᎬᎢ, ᏏᎵᏆ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ ᏭᏯᏅᎮᎢ, ᎠᎴ ᏤᎦᏈ ᎤᏪᎧᏁᎴ ᎾᏍᎩ ᎤᏓᏴᏍᏗ.\nᏏᎵᏆᏃ ᎵᎠ ᎤᏅᏏᏓᏍᏗ, ᏤᎦᏈ ᎤᎾᏄᎪᏫᏎᎴ ᎠᏧᏣ.\nᎵᎠᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏑᎾᏓᏡᎩ ᏛᎾᎢ, ᎦᏗᏃ ᏚᏬᎡᎢ.\nᏏᎵᏆᏃ ᎵᎠ ᎤᏅᏏᏓᏍᏗ, ᏔᎵᏁ ᏤᎦᏈ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎴᎢ.\nᎵᎠᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎣᏍᏛ ᏅᏩᏙᎯᏯᏛ ᎠᏆᏓᏅᏓ, ᎠᏂᎨᏴᏰᏃ ᎠᏍᏛ ᎤᏓᏅᏓᏩᏕᎩ ᎬᏉᏎᎮᏍᏗ; ᎠᏒᏃ ᏚᏬᎡᎢ.\nᎷᏈᏂᏃ ᎤᏪᏅᏎ ᎾᎯᏳ ᎤᏣᎴᏍᏗ ᎠᏍᎫᏕᏍᏗᏱ ᎤᏍᏆᎸᎲ, ᎠᎴ ᎤᏂᏍᏇᏚᎩ ᎢᎾᎨ ᏚᏩᏛᎮᎢ, ᎠᎴ ᎤᏥ ᎵᎠ ᏚᏲᎮᎴᎢ; ᎿᏉᏃ ᎴᏥᎵ ᎯᎠ ᏄᏪᏎᎴ ᎵᎠ, ᏗᏍᎬᏏ ᎢᎦᏛ ᎤᏂᏍᏇᏚᎩ ᏤᏥ ᏧᏤᎵᎦ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏥᎪ ᏅᎵᏌᎵᏉ ᎣᏍᏗᏁᎳ ᏥᏍᎩᏯᏅᎡᎸ? ᎾᏍᏉᏍᎪ ᏙᏛᏍᎩᎩᎡᎵ ᎤᏂᏍᏇᏚᎩ ᎠᏇᏥ ᏧᏤᎵᎦ? ᎴᏥᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎾᏍᎩ ᎠᏗᎾ ᎢᏳᏍᏗ ᎪᎯ ᏒᏃᏱ ᏕᏍᏓᏂᏏᏅᎭ ᎤᏂᏍᏇᏚᎩ ᏤᏥ ᏧᏤᎵᎦ ᏕᏍᎩᏁᎸ ᎢᏳᏍᏗ.\nᏤᎦᏈᏃ ᎢᎾᎨ ᏧᎶᏎ ᎤᏒᎯᏰᏱ, ᎵᎠᏃ ᏚᏠᏒᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏎ ᎠᏴ ᏓᏍᏆᏂᏏᏁᎵ; ᎤᏙᎯᏳᎯᏯᏰᏃ ᎤᏂᏍᏇᏚᎩ ᎠᏇᏥ ᏧᏤᎵᎦ ᎬᏯᎫᏴᏔᏅ. ᎾᎯᏳᏃ ᏒᏃᏱ ᏚᎾᏂᏏᏁᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᏛᏓᏍᏓᏁᎴ ᎵᎠ, ᎠᎴ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎯᏍᎩᏁ ᎤᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ ᎠᏧᏣ.\nᎵᎠᏃ ᎯᎠ ᏄᏪᎡᎢ, ᎤᏁᎳᏅᎯ ᎠᎩᏁᎸ ᏄᏍᏛ ᎠᏆᎫᏴᎡᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏥᏅᏏᏓᏍᏗ ᎠᏛ ᎣᏍᏗᏁᎳ ᏥᏯᎧᏁᎸᎢ; ᎢᏏᎦᏃ ᏚᏬᎡᎢ.\nᎵᎠᏃ ᎠᏏ ᎤᏁᎵᏤᎢ, ᎠᎴ ᏑᏓᎵᏁ ᎤᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ ᎠᏧᏣ.\nᎵᎠᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᎩᎲᏏ ᎣᏍᏛ ᎠᏓᏁᏗ ᎨᏒᎢ; ᎿᏉ ᎣᏍᏗᏁᎳ ᏓᏲᏍᏓᏁᎳᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏑᏓᎵ ᏕᏥᎾᏄᎪᏫᏎᎸ ᎠᏂᏧᏣ; ᏤᏆᎳᏂᏃ ᏚᏬᎡᎢ.\nᎣᏂᏃ ᎤᎾᏄᎪᏫᏎ ᎠᎨᏳᏣ, ᏓᏂᏃ ᏚᏬᎡᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᏅᏓᏕ ᎴᏥᎵ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏛᏓᏍᏓᏁᎴᎢ, ᎠᎴ ᎤᎳᏅᏓᏕᎴ ᏧᎷᎸᏗᏱ.\nᎤᏁᎵᏤᏃ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᎲᎾ ᎤᏕᎰᎯᏍᏗ ᎥᏆᏓᏅᏖᏍᎬᎢ.\nᏦᏩᏃ ᏚᏬᎡᎢ; ᎯᎠ ᏄᏪᏎᎢ, ᏱᎰᏩ ᎠᏏ ᏅᏩᏓᎴ ᎠᏧᏣ ᏛᎩᎧᏁᎵ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᎴᏥᎵ ᏦᏩ ᎤᎾᏄᎪᏫᏒ, ᎾᏍᎩ ᏤᎦᏈ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᏍᏆᏂᎩᏍᏓ, ᎾᏍᎩᏃ ᏗᏇᏅᏒ ᏫᏥᎶᎢ, ᎠᎴ ᎠᏆᏤᎵᎪᎯ ᏗᎨᏒᎢ.\nᏗᏍᎩᏲᎯᏏ ᏗᏆᏓᎵᎢ, ᎠᎴ ᏗᏇᏥ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎲ ᏗᎬᏒᏅᎯ ᏥᎩ, ᎠᎴ ᎦᏂᎩ; ᏨᏒᏰᏃ ᎯᎦᏔᎭ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎸᎢ.\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗ ᎨᏒ ᎬᏩᏛᎡᎴᏍᏗ, [ᎦᎮᎮᏍᏗᏉ;] ᎠᏆᏙᎴᎰᏒᏰᏃ ᎾᏍᎩ ᏱᎰᏩ ᎣᏏᏳ ᎾᏆᏛᏁᎸ ᏂᎯ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᏁᎩ ᎢᎦᎩ ᏍᎩᏠᎯᏍᏗᏱ, ᎠᎴ ᏓᎬᏁᎵᏉ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᏨᏒ ᎯᎦᏔᎭ ᏄᏍᏛ ᎪᎱᏍᏗ ᎬᏩᏛᏁᎸᎢ, ᎠᎴ ᏗᏣᏤᎵ ᎦᎾᏝᎢ ᏥᏚᏥᎦᎿᏩᏗᏙᎲᎩ;\nᎤᏍᏗᏉᏰᏃ ᏥᏣᎲ ᎠᏏ ᏂᏥᎷᎬᎾ ᏥᎨᏒᎩ, ᎪᎯᏃ ᎬᏒ ᎤᏁᏉᏨ ᏧᏈᏯ ᏄᎵᏍᏔᏅ; ᏱᎰᏩᏃ ᎣᏍᏛ ᏂᏣᏛᏁᎸ ᎬᎩᎷᏨᎯ; ᎢᎳᎩᏳᏃ ᏓᎦᏓᏁᎳᏂ ᎠᏋᏒ ᏓᏆᏓᏘᎾᎥ ᎤᎾᎵᏍᏕᎸᏙᏗ?\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ ᏓᎬᏁᎵ? ᏤᎦᏈᏃ ᎯᎠ ᏄᎡᏎᎢ, ᎥᏝ ᎪᎱᏍᏗ ᏴᏓᏍᎩᏁᎵ; ᎢᏳᏃ ᎯᎠ ᏱᏂᏍᏆᏛᏁᎸ ᏔᎵᏁ ᏱᏙᎬᎾᏗᏍᏓ, ᎠᎴ ᏱᏙᏥᎦᏘᏓ ᏗᏣᏤᎵ ᎦᎾᏝᎢ\nᎪᎯ ᎢᎦ ᏥᎩ ᏓᎨᏙᏂ ᏂᎦᏛ ᎦᎾᏝᎢ ᏣᏤᎵ ᏄᎾᏛᏅᎢ, ᏕᎦᏓᏓᎴᏗᏍᎨᏍᏗ ᏂᎦᏛ ᎠᏫ ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᏧᏂᎳᎾᎢ, ᎠᎴ ᏂᎦᏛ ᎠᏂᎬᎾᎨ ᎠᏫ ᎤᎾᏜᏍᏛ ᎤᏂᏃᏕᎾ ᎤᎾᏓᏡᎬᎢ, ᎠᎴ ᏧᏂᎳᎾᎢ ᎠᎴ ᎤᏂᏚᏯᏍᏗ ᎤᎾᏜᏍᏛ ᏗᏂᎭᏄᎸᎯ ᎤᎾᏓᏡᎬᎢ, ᎾᏍᎩ ᏍᏆᎫᎡᏓᏁᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎯ ᎨᏒ ᎬᏂᎨᏒ ᎾᏋᏁᎮᏍᏗ ᎪᎯ ᎨᏒ ᎤᏓᎴᏅᏛ, ᎾᎯᏳ ᏍᏆᎫᏴᎡᎸ ᎯᎪᏩᏘᏍᎨᏍᏗ; ᏂᎦᏛ ᏄᏂᏚᏯᏍᏛᎾ ᎠᎴ ᏂᏚᏂᎳᎾᎥᎾ ᏗᏂᎭᏄᎸᎯ ᎤᎾᏓᏑᏴᎢ, ᎠᎴ ᎠᏂᎬᎾᎨ ᎠᏂᎨᏒᎾ ᎤᏂᏃᏕᎾ ᎤᎾᏓᏑᏴᎢ, ᎾᏍᎩ ᎦᏃᏍᎩᏛ ᏍᎩᏰᎸᎾᏁᏗ ᎨᏎᏍᏗ.\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎰᏩᏉ, ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎾᏍᎩᏯ ᏣᏁᏨᎢ.\nᎾᎯᏳᏃ ᎢᎦ ᏚᏪᎧᎲᏎ ᏗᏂᎭᏄᎸᎯ ᎠᏂᏨᏯ, ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ, ᎠᎴ ᏧᏂᎳᎾᎢ, ᎠᎴ ᎾᏂᎥ ᏗᏂᎭᏄᎸᎯ ᎠᏂᎩᏏ ᎤᏂᏚᏯᏍᏗ ᎠᎴ ᏧᏂᎳᎾᎢ ᎨᏒᎢ, ᎠᎴ ᎾᏂᎥ ᎤᏁᎬ ᏳᏓᏓᎳ, ᎠᎴ ᎾᏂᎥ ᎠᏂᎬᎾᎨ ᎤᏂᏃᏕᎾ ᎤᎾᏓᏑᏴᎢ, ᎠᎴ ᏧᏪᏥ ᏕᎤᏲᎯᏎᎴᎢ.\nᎠᎴ ᏦᎢ ᏧᏙᏓᏆᏛ ᎡᏅᏍᏗ ᎢᏴᏛ ᏂᏚᎾᏓᎳᏕ ᎤᏩᏒ ᎠᎴ ᏤᎦᏈ; ᏤᎦᏈᏃ ᎠᏂᏐᎢ ᎤᏂᏙᏕᎾ ᎴᏆᏂ ᏧᏤᎵ ᏕᎬᎾᏗᏍᏗᏍᎨᎢ.\nᏤᎦᏈᏃ ᏚᏴᎮ ᏗᏤ ᎦᎾᏍᏓ ᏥᏳ ᎠᎴ ᎠᎹᏂ ᎠᎴ ᏘᎵ; ᎠᎴ ᏚᏯᎸᎮ ᏧᏁᎬ ᏧᎸᏓᏅᏂ ᏂᏚᏩᏁᎴᎢ, ᎠᎴ ᎤᏁᎬ ᎨᏒ ᎦᎾᏍᏙᎯ ᎬᏂᎨᏒ ᏄᏩᏁᎴᎢ.\nᎠᎴ ᎾᏍᎩ ᎦᎾᏍᏓ ᏄᏯᎸᏛ ᏚᏪᏘᏁ ᏕᎨᎵᏍᎦᎸᎲ ᎠᎹ ᏧᎾᏗᏔᏍᏗᏱ, ᎾᎿ ᎠᏫ ᏓᎾᏗᏔᎯᎯᎲᎢ, ᎢᎬᏱᏗᏢ ᎠᏫ ᎠᏂᎷᎬᎢ, ᎾᏍᎩ ᏧᏂᏁᎵᎢᏍᏗᏱ ᎾᎯᏳ ᏓᎾᏗᏔᎯᎦ.\nᎠᏫᏃ ᏓᏂᏁᎵᎨ ᎦᎾᏍᏓ ᏕᎨᏛ ᎢᎬᏱᏗᏢ, ᎠᎴ ᏚᎾᏅᏁ ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ, ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᏧᏂᎳᎾᎢ.\nᏤᎦᏈᏃ ᎠᏂᎩᎾ ᏚᏓᏓᎴᏔᏁᎢ; ᎬᏩᏕᏱᏛᏃ ᏧᏂᎶᎸᏗ ᎠᎴ ᏂᎦᏛ ᎠᏂᎬᎾᎨ ᎴᏆᏂ ᏧᏤᎵ ᎠᏫ ᎤᎾᏓᏑᏴ ᎠᏂᏙᎾᎥ ᎢᏗᏢ ᏫᏚᎦᏔᏁ ᎠᏫ; ᎤᏩᏒᏃ ᏧᏤᎵ ᎤᎾᏁᎳᎩ ᏚᏪᎧᏁᎢ, ᎥᏝᏃ ᎴᏆᏂ ᏧᏤᎵ ᎠᏁᏙᎲ ᏱᏚᏪᎧᏁᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎢᏳᏃ ᏧᎾᎵᏂᎦᏂ ᎠᏫ ᏓᏂᏁᎵᎩ, ᎾᏍᎩ ᏤᎦᏈ ᎦᎾᏍᏓ ᏕᎨᎵᏍᎦᎸᎲ ᏕᎦᎳᏗᏍᎨ ᎠᏫ ᏓᏂᎧᏅ ᎢᏗᏢ, ᎾᏍᎩ ᎦᎾᏍᏓ ᏕᎨᏛ ᏧᏂᏁᎵᏍᏗᏱ.\nᏗᏂᏩᎾᎦᎳᏍᎩᏂ ᏥᎨᏐ ᎥᏝ [ᎦᎾᏍᏓ] ᏱᏗᎦᎳᏗᏍᎨᎢ; ᎾᏍᎩᏃ ᏗᏂᏩᎾᎦᎳ ᎴᏆᏂ ᏧᏤᎵ ᎨᏎᎢ, ᏧᎾᎵᏂᎦᏂᏃ ᏤᎦᏈ ᏧᏤᎵ ᎨᏎᎢ.\nᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎤᏣᏘ ᎤᏁᏉᏤᎴᎢ, ᎠᎴ ᎤᏂᏣᏘ ᎠᏫ ᏚᏪᎧᎮᎢ, ᎠᎴ ᎠᏂᎨᏴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎨᎻᎵ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ.\nᎠᏯᏙᎸᎢ 31\nᎤᏛᎦᏁᏃ ᎠᏂᏁᎬ ᎴᏆᏂ ᏧᏪᏥ, ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᏤᎦᏈ ᎠᎩᏐᏅ ᏂᎦᏛ ᎢᎩᏙᏓ ᎤᏤᎵᎦ ᏥᎨᏒᎩ; ᎠᎴ ᎢᎩᏙᏓ ᎤᏤᎵᎦ ᏥᎨᏒᎩ ᎤᏩᏛᏔᏅ ᎯᎠ ᏂᎦᏛ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᏤᎦᏈᏃ ᎤᎪᎮ ᎴᏆᏂ ᎤᎧᏛᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎥᏝ ᏧᏩᎫᏔᏅᏒ ᏕᎤᎧᏂᏍᎬ ᎩᏯ ᏱᏄᏍᏕᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏥᎭᏨᎾ ᏗᏣᎦᏴᎵᎨ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᏗᏣᏴᏫ ᏗᏁᎲ ᏫᎯᎶᎯ; ᎠᏴᏃ ᏕᎬᎦᎿᏩᏗᏙᎮᏍᏗ.\nᏤᎦᏈᏃ ᎤᏓᏅᏎ ᏫᏚᏯᏅᎮ ᎴᏥᎵ ᎠᎴ ᎵᎠ, ᎢᎾᎨ ᎤᏂᎷᎯᏍᏗᏱ ᎠᏫ ᏚᏪᎧᎲᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏥᎪᏩᏘᎭ ᎢᏍᏗᏙᏓ ᎤᎧᏛ ᎾᏍᎩ ᎥᏝ ᏧᏩᎫᏔᏅᏒ ᏥᏄᏍᏛ ᏓᏆᎧᏂᏍᎬ ᏱᏄᏍᏗ ᎪᎯ ᎨᏒᎢ; ᎠᏎᏃ ᎡᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ ᏓᎩᎧᎿᏩᏗᏙᎸ.\nᎠᎴ ᎢᏍᏗᎦᏔᎭ ᎾᏆᎵᏂᎬᎬ ᎢᏴᏛ ᎠᏋᏔᏅ ᎪᎱᏍᏗ ᏥᏯᏛᏁᎸ ᎢᏍᏗᏙᏓ.\nᎠᎴ ᎢᏍᏗᏙᏓ ᎠᎩᎶᏄᎲᎵ, ᎠᎴ ᎠᏍᎪᎯ ᎾᎩᏁᏟᏴᏏ ᎠᏆᎫᏴᎡᎲᎢ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᎥᏝ ᎤᏁᎳᎩ ᏳᏪᎵᏎᎸ ᎪᎱᏍᏗ ᎠᏋᏁᏗᏱ.\nᎢᏳᏃ ᎯᎠ ᏱᏄᏪᏒ, ᎤᏂᏚᏯᏍᏗ ᏕᎬᏯᎫᏴᏓᏁᎮᏍᏗ; ᎿᏉ ᏂᎦᏛ ᎤᏂᏚᏯᏍᏗ ᏓᏂᎾᏄᎪᏫᏍᎪᎢ; ᎠᎴ ᎯᎠ ᏱᏄᏪᏒ ᏛᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ ᏕᎬᏯᎫᏴᏓᏁᎮᏍᏗ, ᎿᏉ ᏂᎦᏛ ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ ᏓᏂᎾᏄᎪᏫᏍᎪᎢ.\nᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎢᏍᏗᏙᏓ ᏕᎤᏯᏅᎡᎸ ᎠᏫ, ᎠᎴ ᎠᏴ ᏕᎠᎩᎧᏁᎸ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᎾᎯᏳ ᎠᏫ ᏓᏂᏁᎵᎬᎢ, ᎾᏍᎩ ᏕᎠᏆᎧᎾᏅᎩ, ᎠᎴ ᎦᏍᎩᏓᏍᎬ ᎠᎩᎪᎲᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎠᏂᏨᏯ ᎾᏍᎩ ᎠᏫ ᏗᏂᏃᏁᎯ ᎬᏩᏕᏱᏛ ᏧᏂᎶᎸᏗ, ᎠᎴ ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᎤᎾᏅᏣᏛ ᎨᏒᎩ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ ᎠᎩᏁᏤᎸᎩ ᎦᏍᎩᏓᏍᎬᎢ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᏤᎦᏈ; ᎯᎠᏃ ᎾᎩᏪᏒᎩ, ᎠᏂ.\nᎯᎠᏃ ᏄᏪᏒᎩ; ᏫᏔᎧᏅᎦ ᎠᎴ ᏫᏘᎪᏩᏛ ᏂᎦᏛ ᎠᏂᏨᏯ ᎠᏫ ᏗᏂᏃᏁᎯ ᎬᏩᏕᏱᏛ ᏚᏂᎶᎸᏗ, ᎠᎴ ᎤᏂᏚᏯᏍᏗ, ᎠᎴ ᎤᎾᏅᏣᏛ; ᎠᎩᎪᎲᏰᏃ ᏂᎦᏛ ᎴᏆᏂ ᏂᏨᏁᎲᎢ.\nᎠᏴ ᎤᏁᎳᏅᎯ ᏇᏕᎵ ᎨᎢ, ᎾᎿ ᏅᏯ ᎨᏛᎪᎢ ᏥᏣᎶᏁᏔᏅᎩ, ᎠᎴ ᏥᏍᏆᏎᎵᏓᏁᎸᎩ; Ꭷ, ᏔᎴᎲᎦ, ᎠᎴ ᎯᎠ ᎠᏂ ᎦᏙᎯ ᎭᏓᏅᎾ, ᎠᎴ ᏗᏣᏴᏫ ᏗᏁᎲ ᏫᎯᎶᎯ.\nᎴᏥᎵᏃ ᎠᎴ ᎵᎠ ᎬᏩᏁᏤᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ. ᏥᎪ ᎠᏏ ᎣᎩᏂᏙᏓ ᎦᏁᎸ ᎠᎭ ᎣᎩᎾᏤᎵᎦ ᎠᎴ ᎣᎩᎾᏘᏯᏍᏓᏁᏗ ᎨᏒᎢ?\nᏝᏍᎪ ᎣᏍᏕᏙᎯᏉ ᎣᎩᏂᏰᎸᏅᎯ ᏱᎩ? ᏙᎩᏂᎾᏗᏅᏰᏃ, ᎠᎴ ᏦᎩᎾᏤᎵᎦ ᎠᏕᎸ ᏚᏒᏃᏅ.\nᏂᎦᏛᏰᏃ ᏧᎬᏩᎶᏗ ᎤᏁᎳᏅᎯ ᎣᎩᏂᏙᏓ ᏧᎩᎡᎸ, ᎠᏴ ᎠᎴ ᏦᎩᏁᏥ ᎣᏍᎦᏤᎵᎦ; ᎾᏍᎩᏃ ᎿᏉ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᏁᎳᏅᎯ ᏣᏁᏤᎸ, ᎾᏍᎩ ᎿᏛᎦ.\nᎿᏉᏃ ᏤᎦᏈ ᏚᎴᏁᎢ, ᎠᎴ ᎨᎻᎵ ᏚᎩᎸᏔᏁ ᏧᏪᏥ ᎠᎴ ᏧᏓᎵᎢ.\nᎠᎴ ᏂᎦᏛ ᏧᏤᎵᎦ ᎦᎾᏝᎢ ᏚᏘᎾᏫᏛᎮᎢ, ᎠᎴ ᏂᎦᏛ ᏧᎬᏩᎶᏗ ᎤᏩᏛᏛ ᏇᏓᏁᏔᎻᏱ ᎤᏫᏛᎰᏁᎢ, ᎤᏙᏓ ᎡᏏᎩ ᏤᎲ ᏭᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᎨᎾᏂ ᎦᏓ ᏗᎲᎢ.\nᎴᏆᏂᏃ ᎤᏂᏃᏕᎾ ᏚᏍᏙᏰᎲᏎᎢ; ᎴᏥᎵᏃ ᏚᏃᏍᎩᏎ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎾᏍᎩ ᎤᏙᏓ ᏧᏤᎵᎦ.\nᏤᎦᏈᏃ ᎤᏓᏃᏍᎩᏛᏉ ᎤᏂᎩᎡᎴ ᎴᏆᏂ ᏏᎵᏱ ᎡᎯ, ᎥᏝᏰᏃ ᏳᏃᏁᎴ ᎤᎵᏘᏒᎢ.\nᎤᎵᏘᏎᏃ ᎬᏰᎯ ᏂᎦᏛ ᎤᎿᎥᎢ; ᎠᎴ ᏚᎴᏁᎢ, ᎠᎴ ᎡᏉᏂ ᏚᏪᏐᏤᎢ, ᎠᎴ ᎩᎵᏯᏗ ᏦᏓᎸ ᎢᏗᏢ ᏫᏚᏭᎪᏔᏁᎢ.\nᏦᎢᏁᏃ ᎢᎦ ᎠᏥᏃᏁᎴ ᎴᏆᏂ ᏤᎦᏈ ᎤᎵᏘᏒᎢ.\nᎠᎾᎵᏅᏟᏃ ᏚᏘᏅᏎᎢ, ᎠᎴ ᎤᎨᎲᏎ ᎦᎵᏉᎩ ᏧᏙᏓᏆᏛ ᎡᏅᏍᏗ ᎢᏴᏛ, ᎩᎵᏯᏗᏃ ᎣᏓᎸ ᏫᎬᏩᏢᏔᎮᎢ.\nᎤᏁᎳᏅᎯᏃ ᎤᎷᏤᎴ ᎴᏆᏂ ᏏᎵᏱ ᎡᎯ ᏒᏃᏱ ᎠᏍᎩᏓᏍᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᎯᏬᏁᏔᏅ ᏤᎦᏈ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ.\nᎿᏉᏃ ᎴᏆᏂ ᏭᏢᏔᎮ ᏤᎦᏈ. ᏤᎦᏈᏃ ᎾᎿ ᎣᏓᎸ ᏚᎵᏦᏖᎢ; ᎴᏆᏂᏃ ᎠᎴ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᎩᎵᏯᏗ ᎣᏓᎸ ᏚᏂᎵᏦᏔᏁᎢ.\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎦᏙᏉ ᏣᏛᏁᎸ, ᎾᏍᎩ ᏣᏓᏃᏍᎩᏛ ᎾᏆᏕᎶᎰᏒᎾ ᏨᏗᏣᎵᏘᏒ, ᎠᎴ ᏗᏇᏥ ᏥᏙᏔᏘᎾᏫᏛᎲ, ᎾᏍᎩᏯᏉ ᎠᏂᏴᎩ ᎠᏰᎳᏍᏗ-ᎦᏅᎯᏛ ᎬᏔᏅᎯ ᏗᎦᏂᏴᏛ.\nᎦᏙᏃ ᎤᏕᎵᏛ ᏗᏣᎵᏘᏎᎢ, ᎠᎴ ᎢᏍᏆᏓᏃᏍᎩᎡᎴᎢ; ᎠᎴ ᎥᏝ ᏱᏍᎩᏃᏁᎴᎢ, ᎾᏍᎩ ᎣᏍᏛ ᎢᎦᏓᏅᏛ ᎬᏯᏂᎩᏍᏙᏗᏱ, ᏗᎧᏃᎩᏛ ᎬᏗ, ᎠᎴ ᎠᎱᎵ ᎢᏳᏍᏗ ᎬᏗ, ᎠᎴ ᎠᏏᎳᏕᏫᏛ ᏗᎧᏃᎩᏍᏙᏗ ᎬᏗ?\nᎥᏝ ᎠᎴ ᏫᏓᏔᏪᏙᎦ ᎣᏍᏇᎵᏎᎴ ᏗᏇᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏗᏇᏥ ᎠᏂᎨᏴ? ᎭᎵᏍᎦᎿᏩᏉ ᎾᏍᎩ ᏥᏂᏣᏛᏁᎸ.\nᎠᏴ ᏰᎵᏉ ᎾᏆᎵᏂᎬᎦ ᎤᏲ ᎢᎬᏴᏁᏗᏱ; ᎠᏎᏃ ᎢᏥᏙᏓ ᎤᏤᎵᎦ ᎤᎾᎳᏅᎯ ᎠᎩᏁᏤᎸᎩ ᎤᏒᎯ ᏒᏃᏱ, ᎯᎠ ᏄᏪᏒᎩ; ᎮᏯᏔᎮᏍᏗ ᏞᏍᏗ ᏤᎦᏈ ᎯᏁᏤᎸᎩ ᎣᏍᏛ ᎠᎴ ᎤᏲᎢ.\nᎠᎴ ᎿᏉ ᎠᏎ ᏤᏅᏍᏗ ᏥᏂᏣᎵᏍᏓᏁᎮᎢ ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏣᏘ ᏤᎳᏲᏍᎬ ᏣᏙᏓ ᎦᏁᎸᎢ, ᎠᏎᏃ ᎦᏙ ᏗᎤᎵᏍᏙᏔᏅ ᎤᎾᏁᎳᏅᎯ ᏗᏆᏤᎵᎦ ᏙᏍᎩᏃᏍᎩᏎᎢ?\nᏤᎦᏈᏃ ᏗᎤᏁᏤ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᏥᏍᎦᎢᎲᏍᎩᏂ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ; ᎯᎠᏰᏃ ᎢᏪᏒᎩ, ᎬᏍᎦᎢᏍᏓᎩᏆᎴ ᏱᏓᎩᏯᏅᏏ ᏧᏪᏥ ᎠᏂᎨᏴ.\nᎩᎶ ᎠᏗᎾ ᏙᎯᏩᏛᎡᎸᎭ ᎤᎾᏁᎳᏅᎯ ᏗᏣᏤᎵᎦ, ᎾᏍᎩ ᏞᏍᏗ ᏱᎬᏁᏍᏗ; ᎢᏓᎵᏅᏟ ᎠᏂᎦᏔᎲ ᎭᎦᏔ ᏣᏤᎵᎦ ᏳᏝᏍᏗ ᏥᏰᎿᎥᎢ, ᎠᎴ ᎯᎩ. ᎥᏝᏰᏃ ᏤᎦᏈ ᏱᎦᏔᎮ ᎴᏥᎵ ᏚᏃᏍᎩᏒᎢ.\nᎴᏆᏂᏃ ᏤᎦᏈ ᎤᎵᏦᏛ ᏭᏴᎴᎢ, ᎠᎴ ᎵᎠ ᎤᎵᏦᏛᎢ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎨᏴ ᎨᏥᏅᏏᏓᏍᏗ ᏚᏂᎵᏦᏛᎢ; ᎠᏎᏃ ᎥᏝ ᏱᏚᏩᏛᎮᎢ. ᎿᏉᏃ ᎤᏄᎪᏤ ᎵᎠ ᎤᎵᏦᏛ ᎠᎴ ᎴᏥᎵ ᎤᎵᏦᏛ ᏭᏴᎴᎢ.\nᎴᏥᎵᏃ ᏧᎩᏛ ᎨᏎ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᎴ ᎨᎻᎵ ᎦᏯᎱᎶᏗ ᏫᏚᎳᏁᎢ, ᎠᎴ ᏚᏍᎩᎳᏁᎢ. ᎴᏆᏂᏃ ᏂᎬ ᎦᎵᏦᏛ ᎤᏲᎴᎢ, ᎠᏎᏃ ᎥᏝ ᏱᏚᏩᏛᎮᎢ.\nᎯᎠᏃ ᏄᏪᏎᎴ ᎤᏙᏓ, ᏞᏍᏗ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᎤᏐᏅᏤᎸᎩ ᎾᏍᎩ ᏗᎦᏥᏯᎴᏁᏗ ᏂᎨᏒᎾ ᏥᎩ, ᎠᏂᎨᏴᏰᏃ ᎢᏳᎾᎵᏍᏓᏁᏗ ᏥᎩ ᎾᏆᎵᏍᏓᏁᎭ. ᎤᏲᎴᏃ ᎠᏎᏃ ᎥᏝ ᏱᏚᏩᏛᎮ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ\nᏤᎦᏈᏃ ᎤᏔᎳᏬᏎᎢ ᎠᎴ ᎤᎾᏘᏲᎴ ᎴᏆᏂ; ᎠᎴ ᏤᎦᏈ ᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎴ ᎴᏆᏂ, ᎦᏙ ᎤᏍᏗ ᎤᏣᏘᏂ ᎾᏆᏛᏁᎸ? ᎦᏙ ᎤᏍᏗ ᎠᎩᏍᎦᏅᏨ ᏥᏄᏖᎡᏗ ᏨᏗᏍᎩᎨᎮᏅ?\nᏂᎦᏛᏰᏃ ᏥᏰᎿᎥ ᎯᏍᏆᏂᏰᎣᏅ, ᎦᏙᏃ ᎯᏩᏛ ᎯᏁᎸ ᏣᏅᎯ? ᎾᏍᎩ ᎠᏂ ᎯᎲᎦ ᎠᏂᎦᏔᎲ ᎠᏴ ᎣᏣᎵᏅᏟ, ᎠᎴ ᏂᎯ ᎢᏣᎵᏅᏟ, ᎾᏍᎩᏃ ᏕᎨᎩᏄᎪᏓᏁᎸᎭ.\nᎪᎯ ᎿᏉ ᏔᎳᏍᎪᎯ ᎾᏕᏘᏴ ᎬᏯᏕᎥᏏ; ᏗᏣᏤᎵᏃ ᎤᏂᏃᏕᎾ ᎠᏂᎩᏏ, ᎠᎴ ᏗᏂᎭᏄᎸᎯ ᎠᏂᎩᏏ, ᎥᏝ ᏱᏚᏂᎶᎠᎯᏎᎸ ᎠᏂᏛ, ᎠᎴ ᎠᏫ ᎠᏂᏨᏯ ᏂᎯ ᏗᏣᏤᎵᎦ ᎥᏝ ᏱᏓᎩᏯᎥ.\nᎠᏥᏓᎦᎸᎢᏒᎯ ᎥᏝ ᏫᏱᎬᏃᎮᎮᎢ, ᎠᏋᏒᏉ ᎠᎩᏲᎱᏎᎲᎩ; ᎠᏴ ᎾᏍᎩ ᏕᏍᎩᎬᏩᎶᏓᏁᎲᎩ, ᎢᎦ ᎦᏂᏴᏛ ᏱᎩ, ᎠᎴ ᏒᏃᏱ ᎦᏂᏴᏛ ᏱᎩ.\nᎯᎠ ᎾᏍᎩ ᎾᏆᏛᎿᏕᎬᎩ; ᎢᎦ ᎨᏒ ᎠᏍᏓᎦᏲᏍᎬ ᎠᎩᏲᏍᏗᏍᎬᎩ, ᏒᏃᏱᏃ ᎨᏒ ᎠᏯᏛᎲᏍᎬᎢ; ᎠᎴ ᎦᎸᏗ ᎨᏒ ᏗᏥᎦᏙᎵ ᏓᏓᏅᎡᎲᎩ.\nᎾᏍᎩ ᎯᎠ ᏄᏍᏛᎩ ᏔᎳᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎯᏁᎸ ᎨᎥᎩ; ᏂᎦᏚ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎬᏯᏛᏁᎸᎩ ᎠᏂᏔᎵ ᏗᏤᏥ ᏕᎬᏒᎲᏍᎬᎢ, ᏑᏓᎵᏃ ᏧᏕᏘᏴᏛ ᎦᎾᎠᎢ ᏕᎬᏒᎲᏍᎬᎢ; ᎬᏠᏍᎬᏃ ᎠᏍᎪᎯ ᏂᏍᎩᏁᏟᏴᏏ.\nᎢᏳᏃ ᎡᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎡᏆᎭᎻ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎡᏏᎩ ᎤᎾᏰᏒᎯ ᏔᎵ ᏄᏛᏗᏕᎬᎾ ᏱᎨᏎ ᎠᏴ ᎨᎥᎢ, ᎤᏙᎯᏳᎯᏯ ᎪᎯ ᎨᏒ ᎠᏒᎭ ᏱᏍᏆᏂᎩ ᏍᏔᏁᎢ. ᎤᏁᎳᏅᎯ ᎤᎪᎲ ᎤᏲ ᎾᏆᎵᏍᏓᏁᎸᎢ, ᎠᎴ ᏓᎩᏯᏪᏥᏙᎸᎢ, ᎠᎴ ᎤᏒᎯ ᏒᏃᏱ ᏥᎨᏒ ᏣᎬᏍᎪᎸᏁᎢ.\nᎴᏆᏂᏃ ᎤᏁᏤ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎯᎠ ᎠᏂᎨᏴ ᎠᏴ ᏗᏇᏥ, ᎠᎴ ᎯᎠ ᏧᏁᏥ ᎠᏴ ᏗᏇᏥ, ᎠᎴ ᎯᎠ ᎠᏫ ᎠᏴ ᏗᏆᏤᎵᎦ ᎠᏫ, ᎠᎴ ᏂᎦᏛ ᏥᎪᏩᏘᎭ ᎠᏴ ᎠᏆᏤᎵᎦ; ᎦᏙᏃ ᏱᏕᎬᎦ ᎪᎯ ᎢᎦ ᎯᎠ ᏗᏇᏥ, ᎠᎴ ᏧᏁᏥ ᎾᏍᎩ ᏧᏂᎾᏄᎪᏫᏒᎯ ᏥᎩ?\nᎧ, ᎿᏉ ᎧᏃᎮᏛ ᏗᎾᏠᎯᏍᏓ, ᎠᏴ ᏂᎯᏃ; ᎠᎴ ᎾᏍᎩ ᎪᎯᏳᏗᏍᎩ ᎨᏎᏍᏗ ᏄᏍᏛ ᏕᎩᎾᏓᏁᏤᎸᎢ.\nᏤᎦᏛᏃ ᏅᏯ ᎤᎩᏎᎢ ᎠᎴ ᎤᏪᏘᏁᎢ.\nᏤᎦᏈᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᏅᏯ ᏗᏧᏔᎩ; ᏅᏯᏃ ᏚᏂᎩᏎᎢ, ᎠᎴ ᎤᏂᏡᏁᎢ; ᎠᎴ ᎾᎿ ᎦᏡᎬ ᎤᎾᎵᏍᏓᏴᏁᎢ.\nᎴᏆᏂᏃ ᏥᎦ ᏌᎭᏚᏓ ᏚᏬᎡᎢ; ᏤᎦᏈᏍᎩᏂ ᎦᎵᏗ ᏚᏬᎡᎢ;\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᏥᎦᏡᎦᎪᎯᏳᏗᏍᎩ ᎨᏎᏍᏗ ᏕᎩᎾᏓᏁᏤᎸ ᎪᎯ ᏥᎩ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᎵᏗ ᏚᏃᎡᎢ;\nᎠᎴ ᎻᏏᏆ ᏚᏃᎡᎢ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏱᎰᏩ ᎩᏂᏯᏫᏍᎨᏍᏗ. ᏂᏗᎾᏓᎪᏩᏗᏍᎬᎾ ᎿᏉ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᏙᎦᎯᏐᏢᏕᏍᏗ ᏗᏇᏥ, ᎢᏳ ᎠᎴ ᏅᏩᎾᏓᎴ ᏙᎭᏓᏰᎨᏍᏗ ᏔᎵ ᏙᎲᏕᏍᏗ ᏗᏇᏥ, ᎥᏝ ᎩᎶ ᎠᏍᎦᏯ ᏯᎦᏔᎭ; ᎬᏂᏳᏉ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎯ ᏄᏍᏛ ᏚᎩᎾᏓᏁᏤᎸᎢ.\nᎴᏆᏂᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ. ᎬᏂᏳᏉ ᎯᎠ ᏥᎦᏡᎦ, ᎠᎴ ᎬᏂᏳᏉ ᎯᎠ ᏥᎨᏔ ᎾᏍᎩ ᎠᏰᎵ ᏥᎾᏋᏁᎸ ᎠᏴ ᎢᏁᎲᎢ.\nᎯᎠ ᎾᏍᎩ ᏥᎦᏡᎦ ᎪᎯᏳᏗᏍᎩ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏴ ᎯᎠ ᎦᏡᎬ ᎬᏯᏓᏬᎢᎳᏕᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏂᎯ ᏍᏆᏓᏬᎯᎳᏕᏗ ᏂᎨᏒᎾ ᎨᏒ ᎯᎠ ᏥᎦᎲᎦ, ᎠᎴ ᎯᎠ ᏅᏯ ᏥᎨᏔ, ᎾᏍᎩ ᎤᏲ ᎢᏗᎩᎾᏓᏛᏁᏗᏱ.\nᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏁᎰ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎤᏂᏙᏓ ᎤᏤᎵᎦ ᏕᎩᏄᎪᏓᏁᎮᏍᏗ. ᏤᎦᏈᏃ ᎤᏎᎵᏔᏁ ᎤᏁᎢᏍᏔᏁ ᎤᏙᏓ ᎡᏏᎩ ᎤᎾᏰᏒᎯ.\nᎿᏉᏃ ᏤᎦᏈ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎤᎵᏍᎪᎸᏔᏁ ᎾᎿ ᎣᏓᎸᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ ᏫᏚᏯᏅᎮ ᎦᏚ ᎤᏂᎩᏍᏗᏱ; ᎦᏚᏃ ᎤᏂᎨᎢ, ᎠᎴ ᎣᏓᎸ ᎤᏂᏒᎴᎢ.\nᏑᎾᎴᏉᏃ ᎴᏆᏂ ᎤᏗᏛᎮᎢ, ᎠᎴ ᏚᏔᏪᏙᏁ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᏧᏪᏥ ᎠᏂᎨᏴ, ᎠᎴ ᎣᏍᏛ ᏚᏁᏤᎴᎢ; ᎴᏆᏂᏃ ᎤᏂᎩᏎᎢ, ᎠᎴ ᏧᏪᏅᏒ ᏭᎶᏎᎢ.\nᎠᏯᏙᎸᎢ 32\nᏤᎦᏈᏃ ᏩᎦᏛ ᏭᎶᏎᎢ, ᎠᎴ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᏕᎬᏩᏠᏎᎢ.\nᏤᎦᏈᏃ ᏚᎪᎲ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠᎧᏂ ᎤᏁᎳᏅᎯ ᏧᏤᎵᎦ ᎠᏂᏯᏫᏍᎩ; ᎾᎿᏃ ᎹᎭᏁᎻ ᏚᏬᎡᎢ.\nᏤᎦᏈᏃ ᏧᏅᏏᏓᏍᏗ ᎢᎬᏱ ᏂᏚᏅᏎ ᎤᏂᎵ ᎢᏐ ᏧᏬᎸᎢ, ᏏᎠ ᎦᏓ ᏗᎲᎢ, ᎢᏙᎻ ᏙᏧᏙᎥᎢ.\nᏚᏁᏤᎴᏃ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᏅᏓᏰᏥᏪᏎᎵ ᎢᏐ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ; ᎯᏅᏏᏓᏍᏗ ᏤᎦᏈ ᎯᎠ ᏂᎦᏪᎭ, ᎴᏆᏂᏱ ᏫᎨᏓ, ᎠᎴ ᎾᎿ ᏫᎦᏕᎥᎦ ᎪᎯ ᎢᏯᏍᏘ.\nᎠᎴ ᏩᎦ ᏓᎩᎾᏝᎠ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎠᏫ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏗᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᏂᎨᏴ ᏗᏥᏅᏏᏓᏍᏗ; ᎠᎴ ᎦᏓᏅᎵ ᎬᏃᏁᏗᏱ ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎾᏍᎩ ᎣᏍᏛ ᎾᏍᎩᏰᎸᏗᏱ ᎬᏩᏛᎡᏗᏱ.\nᎨᏥᏅᏏᏛᏃ ᎢᎬᏩᎷᏤᎴ ᏤᎦᏈ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎡᎶᏂᎵ ᎢᏐ ᏬᏥᎷᏤᎸᎩ, ᎠᎴ ᎾᏍᏉ ᏓᏯᎢ ᏙᏓᎶᏠᏏ, ᎠᎴ ᏅᎩᏧᏈ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎭ.\nᎿᏉᏃ ᏤᎦᏈ ᎤᏣᏘ ᎤᏍᎦᎴᎢ, ᎠᎴ ᎤᏪᎵᎯᏍᏗ ᎤᏓᏅᏓᏕᎢ; ᎠᎴ ᏔᎵ ᏄᏪᏕ ᏴᏫ ᏓᏘᏁᎲᎢ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᎨᎻᎵ, ᏔᎵ ᎢᏳᎾᏓᏡᎩ ᏂᏚᏩᏁᎴᎢ;\nᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎢᏐ ᏌᏉ ᏄᎾᏓᏡᎬ ᏱᏚᎷᏤᎸ, ᎠᎴ ᏱᏚᏒᏅ, ᎿᏉ ᏐᎢ ᎤᎾᏓᏡᎬ ᎤᎾᎵᏃᎯᏴᎯ ᎠᎾᏓᏗᏫᏎᎸᎭ.\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏣᏁᎳᏅᎯ, ᎡᏙᏓ ᎡᏆᎭᎻ ᎤᏤᎵᎦ. ᎠᎴ ᎡᏙᏓ ᎡᏏᎩ ᎤᏤᎵᎦ, ᏱᎰᏩ, ᎾᏍᎩ ᎯᎠ ᎢᏍᎩᏪᏎᎸᎯ, ᏣᏤᎵᎪᎯ ᏥᎮᎾ, ᎠᎴ ᎢᏥᏠᏱ ᏗᏁᎲᎢ. ᎠᎴ ᎣᏍᏛ ᏂᎬᏯᏛᏁᎮᏍᏗ;\nᎠᏴ ᏥᎾᏆᏍᏗᏉ ᎥᏝ ᏰᎵ ᎢᎦᎯᏯᏛᏁᏗ ᎤᏍᏗ ᎤᏅ ᏂᎦᎥ ᏣᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᏂᎦᎥ ᏚᏳᎪᏛ ᏂᏣᏛᏁᎸ. ᎬᏂᎨᏒ ᏂᏴᏁᎸ ᎯᏅᏏᏓᏍᏗ; ᎠᏆᏙᎳᏅᏍᏗᏉᏰᏃ ᎾᏥᏁᎢ ᏓᎩᏐᏨᎩ ᎯᎠ ᏦᏓᏂ; ᎪᎯᏃ ᏥᎩ ᏔᎵ ᎢᏳᎾᏓᏡᎩ ᎾᏆᎵᏍᏔᏅ.\nᏍᏊᏓᎳᎩ, ᏞᏍᏗ ᎪᎱᏍᏗ ᎠᏋᏁᎸᎩ ᎢᏐ ᎥᎩᏂᎵ; ᏥᎾᏰᏍᎦᏰᏃ; ᏱᎦᎷᎩᏰᏃ ᎠᎴ ᏯᎩᎷᎦ, ᏗᏂᏲᎵ ᎠᎴ ᎤᏂᏥ ᎬᏩᏠᏯᏍᏗ.\nᎠᎴ ᎯᎠ ᏥᏂᏣᏪᏒᎩ, ᎤᏙᎯᏳᎯᏯ ᎣᏍᏛ ᏅᏓᎬᏯᏛᏁᎵ. ᎠᎴ ᏃᏳ ᏥᏄᏧᏈᏍᏗ ᎠᎺᏉᎯ, ᎾᏍᎩ ᎬᏎᎰᎲᏍᏗ ᏂᎨᏒᎾ ᏥᎩ ᎾᏍᎩᏯ ᏅᏓᎦᏥᏴᏁᎵ ᏂᎯ ᏣᏁᏉᎥᎯ.\nᎠᎴ ᎾᎿᏉ ᎤᏒᎴ ᎾᎯᏳ ᏒᏃᏱ; ᎠᎴ ᎤᎩᏎ ᎢᏳᏍᏗᏉ ᎢᎬᏱᏢ ᏄᎵᏍᏓᏁᎲ ᎾᏍᎩ ᎤᏁᏗ ᎤᏂᎵ ᎢᏐ;\nᎾᏍᎩ ᏔᎵᏧᏈ ᎠᏂᎩᏏ ᎠᏫ ᏗᏂᎭᏄᎸᎯ, ᎠᎴ ᏔᎳᏍᎪᎯ ᎠᏂᏨᏯ ᎠᏫ ᏗᏂᎭᏄᎸᎯ, ᏔᎵᏧᏈᏃ ᎠᏂᎩᏏ ᎠᏫ ᎤᏂᏃᏕᎾ, ᏔᎳᏍᎪᎯᏃ ᎠᏂᏨᏯ ᎤᏂᏃᏕᎾ,\nᏦᎠᏍᎪᎯ ᏄᏂᏍᏓᎢ ᎨᎻᎵ ᎤᏂᎩᎾ ᏕᎬᎾᏘᏁᎯ, ᎠᎴ ᏅᎦᏍᎪᎯ ᏩᎦ ᎠᏂᎩᏏ, ᎠᏍᎪᎯᏃ ᎠᏂᏨᏯᎢ, ᏯᎳᏍᎪᎯ ᎠᏂᎩᏏ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎠᏍᎪᎯ ᎠᏂᎩᎾ.\nᏧᏅᏏᏓᏍᏗᏃ ᏚᏲᎯᏎᎴᎢ, ᏂᎦᏛ ᏧᎾᏁᎳᎩᎭ ᏚᎾᏓᎲᏩᏗᏎᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ, ᎢᎬᏱ ᏗᏥᏐᎩ, ᎠᎴ ᎢᏥᎳᏅᏕᏍᏗ ᏚᎾᏓᏡᏩᏗᏒ ᏕᏥᏱᎵᏒᎢ.\nᎤᏁᏤᎴᏃ ᎢᎬᏱ ᎡᎩ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎿᏉ ᎢᏐ ᎥᎩᏂᎵ ᏕᏣᏠᏒᎭ, ᎠᎴ ᏣᏛᏛᏅᎭ, ᎯᎠ ᏂᎦᏪᏒᎭ, ᎦᎪ ᏣᎾᏜᎢ? ᎠᎴ ᎭᏢ ᎭᎢ? ᎠᎴ ᎦᎪ ᏧᏤᎵᎦ ᎯᎠ ᎢᎬᏱ ᏣᎾᎢ?\nᎿᏉ ᎯᎠ ᏂᏪᏒᎭ, ᏤᎦᏈᏍᎩᏂ ᎯᏅᏏᏓᏍᏗ ᏧᏤᎵᎦ; ᎯᎠ ᎾᏍᎩ ᎤᏓᏅᏏᏛ ᏩᏥᏁᎸᎯ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎢᏐ; ᎠᎴ ᎬᏂᏳᏉ ᎾᏍᏉ ᎣᏂ ᏓᏯᎢ.\nᎠᎴ ᎾᏍᎩᏯ ᏄᏪᏎᎴ ᎤᏁᏤᎴ ᏔᎵᏁ ᎡᎩ, ᎠᎴ ᏦᎢᏁ ᎡᎩ,ᎠᎴ ᏂᎦᏛ ᏓᏂᏱᎵᏒ ᏗᏂᏍᏓᏩᏕᎩ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏁᏥᏪᏎᎸᎭ ᎢᏐ, ᎿᏉ ᎡᏥᏩᏛᎲᎭ.\nᎠᎴ ᎾᏍᏉ ᎯᎠ ᏁᏥᏪᏎᎸᎭ, ᎬᏂᏳᏉ ᎯᏅᏏᏓᏍᏗ ᏤᎦᏈ ᎣᏂ ᏓᏯᎢ. ᎯᎠᏰᏃ ᏄᏪᏒᎩ, ᎾᏍᎩ ᏓᏥᏮᎢᏍᏙᏓᏁᎵ ᏥᏁᎸᎥᏍᎬ ᎾᏍᎩ ᎢᎬᏱ ᏥᎾᎢ, ᎩᎳᏃ ᎣᏂ ᎠᎩᎪᏩᏛᏗ ᎨᏎᏍᏗ ᎤᎧᏛᎢ; ᏱᏅᏎᎦᎩ ᏱᏓᏆᏓᏂᎸᎩ.\nᎢᎬᏱᏃ ᏚᏪᏐᏤ ᎾᏍᎩ ᎤᏁᏗ ᎨᏒᎢ; ᎤᏩᏒᏃ ᎤᎾᏂᎲ ᏑᎾᏓᏡᎩ ᎤᏒᎴ ᎾᎯᏳ ᏒᏃᏱ.\nᎠᎴ ᎾᎯᏳ ᏒᏃᏱ ᎤᏗᏛᎮᎢ, ᎠᎴ ᏚᏘᏅᏎ ᎠᏂᏔᎵ ᏧᏓᎵᎢ, ᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎨᏴ ᏧᎢᏓᏍᏗ, ᎠᎴ ᏌᏚ ᎢᏯᏂᏛ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏚᏪᏐᏤ ᏗᎦᏐᎯᏍᏗᏱ ᏣᏉᎩ ᏚᏙᎥᎢ.\nᎠᎴ ᏚᏘᏅᏎᎢ, ᎠᎴ ᏚᏪᏌᏍᏔᏁ ᎤᏪᏴᎢ, ᎠᎴ ᎤᎿᎥ ᏚᏪᏌᏍᏔᏁᎢ.\nᏤᎦᏈᏃ ᎠᎬᏕᏤ ᎠᎴ ᎤᏩᏒᏉ ᎨᏎᎢ; ᎤᏁᏍᏔᏁᏃ ᎠᏍᎦᏯ ᎩᎳ ᏧᎩᏥᏍᎪ ᎢᏯᏍᏗ.\nᎿᏉᏃ ᎤᏙᎴᎰᏒ ᎬᏩᏎᎪᎩᏍᏗ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎤᏅᏪᎥ ᎦᎦᎶ ᎤᏩᏂᎴᎢ; ᎠᎴ ᎤᏅᏪᎥ ᏤᎦᏈ ᎦᎦᎶ ᎤᏛᎭᏢᏛ ᎨᏎᎢ, ᎾᎯᏳ ᎠᏁᏍᏗᏍᎬᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏗᏍᎩᏲᎯ, ᎿᏉᏰᏃ ᎤᎩᏨᎲᏍᎦ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏱᏙᎦᎬᏲᎯ ᎬᏂ ᎣᏍᏛ ᏍᎩᏁᏤᎸᎭ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎦᏙ ᏕᏣᏙᎥ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏤᎦᏈ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᎿᏉ ᏤᎦᏈ ᏱᏗᏣᏙᎡᏍᏗ; ᎢᏏᎵᏍᎩᏂ [ᏕᏣᏙᎡᏍᏗ;] ᎯᏯᏁᏍᏔᏅᏰᏃ ᎤᏁᎳᏅᎯ ᎠᎴ ᏴᏫ, ᎠᎴ ᎭᏓᏎᎪᎩ.\nᏤᎦᏈᏃ ᎤᏛᏛᏁ ᎯᎠ ᏄᏪᏎᎢ, ᏍᎩᏃᎲᏏ ᏕᏣᏙᎥᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎢᎭᏛᏛᎲᏍᎦ ᏄᏍᏛ ᏓᏆᏙᎥᎢ? ᎣᏍᏛᏃ ᎤᏁᏤᎴ ᎾᎿᏂ.\nᏤᎦᏈᏃ ᏇᏂᎡᎵ ᏚᏬᎡ ᎾᎿᏂ; ᎤᏁᎳᏅᎯᏰᏃ ᏙᎩᎾᎧᏛ ᏙᏍᏓᏓᎪᏩᏛ, ᎠᎴ ᎥᎩᏍᏕᎸᏏ ᎬᏅᎢ [ᎤᏛᏁᎢ.]\nᎤᎶᏐᏅᏃ ᏇᏄᎡᎵ ᏅᏙ ᏗᏄᎧᎸᏤᎢ, ᎠᎴ ᎦᎦᎶ ᎠᏲᎤᎴᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎪᎯ ᎨᏒ ᎢᏯᏍᏘ ᎢᏏᏲ ᏧᏪᏥ ᎥᏝ ᏳᎾᎵᏍᏓᏴᏔᏃ ᏩᏚᏃᎯ ᎦᎦᎶ ᎡᎯ, ᎾᏍᎩ ᎤᏅᏪᎥ ᎦᎦᎶ ᏥᎦᎶᏍᎦ; ᏂᎦᎵᏍᏙᏗᎭ ᎤᏒᏂᎸ ᎤᏅᏪᎥ ᏤᎦᏈ ᎦᎦᎶᎢ, ᎾᏍᎩ ᏩᏚᏃᎯ ᎦᎦᎶ ᎡᎯ.\nᎠᏯᏙᎸᎢ 33\nᏤᎦᏈᏃ ᏚᏌᎳᏓᏁ ᏗᎦᏙᎵ, ᎠᎴ ᏫᏚᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ ᎢᏐ ᏣᎢᏎᎢ, ᎠᎴ ᏅᎩᏧᏈ ᎠᏂᏍᎦᏯ ᏓᏘᏁᎮᎢ. ᏤᎦᏈᏃ ᏗᏂᏲᎵ ᏚᏯᏙᎮᎴ ᎵᎠ, ᎠᎴ ᎴᏥᎵ, ᎠᎴ ᎠᏂᏔᎵ ᏧᏅᏏᏓᏍᏗ ᎠᏂᎨᏴ.\nᎠᏂᎨᏴᏃ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᎾᏍᎩ ᏧᏁᏥ ᎢᎬᏱ ᏚᎴᏔᏁᎢ, ᎵᎠᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏔᎵᏁᎢ, ᎴᏥᎵᏃ ᎠᎴ ᏦᏩ ᎣᏂᏱ.\nᏚᎶᎯᏎᎴᏃ, ᎠᎴ ᎦᎵᏉᎩ ᎡᎳᏗ ᏄᏛᏁᎴ ᎦᏙᎯ ᎢᏴᏛ, ᎬᏂ ᎾᎥ ᏭᎷᏤᎸ ᎤᏂᎵ.\nᎢᏐᏃ ᏚᏍᏆᎸᏔᏁ ᏚᏠᏒᏎᎢ, ᎠᎴ ᎤᏂᏴᎮᎢ, ᎠᎴ ᎤᏪᏯᎸᏤ ᎠᎩᎵᎨᏂ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ; ᎠᎴ ᏚᎾᏠᏱᎴᎢ.\nᏚᏌᎳᏓᏁᏃ ᏗᎦᏙᎵ ᎠᎴ ᏚᎪᎮ ᎠᏂᎨᏴ ᎠᎴ ᏧᏁᏥ; ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎪ ᎯᎠ ᏥᏕᎭᏘᏁᎭ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏗᏇᏥ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏓᎠᏙᎵᏣᏘᏳ ᎨᏒ ᏧᏮᏔᏅ ᏥᏚᏪᎧᏁᎸ ᎯᏅᏏᏓᏍᏗ.\nᎿᏉᏃ ᎨᏥᏅᏏᏓᏍᏗ ᎠᏂᎨᏴ ᎾᎥ ᎤᏂᎷᏤᎢ, ᎤᏅᏒ ᎠᎴ ᏧᏁᏥ, ᎠᎴ ᎡᎳᏗ ᏄᎾᏛᏁᎴᎢ.\nᎵᎠᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎾᎥ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎡᎳᏗ ᏄᎾᏛᏁᎴᎢ; ᎣᏂᏃ ᎾᎥ ᎤᏂᎷᏤ ᏦᏩ ᎠᎴ ᎴᏥᎵ, ᎠᎴ ᎾᏍᏉ ᎡᎳᏗ ᏄᎾᏛᏁᎴᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙ ᎯᏛᎦ ᎯᎠ ᏂᎦᏛ ᏣᎾᏱᎴx ᏥᏙᏣᏠᎯ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎠᏩᏛᏙᏗ ᎣᏍᏛ ᎠᎩᏰᎸᏗᏱ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ.\nᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏰᎵᏉ ᎠᎩᎭ, ᎥᎩᏅᏟ, ᎨᏣᏍᏆᏂᎪᏕᏍᏗᏉ ᏣᎾᎥᎢ.\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ, ᏗᏍᏆᏓᏂᎸᏥᏉᏍᎩᏂ ᎬᏁᎲᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗ ᎨᏒ ᎬᏩᏛᎡᎴᏍᏗ; ᎾᏍᎩᏰᏃ ᏅᏓᎦᎵᏍᏙᏓ ᏂᎪᏩᏛ ᏣᎧᏛᎢ, ᎤᏁᎳᏅᎯ ᎤᎧᏛ ᏣᎩᎪᎰ ᎾᏍᎩᏯᎢ; ᎠᎴ ᎣᏏᏳ ᏍᎩᏰᎸᎾ.\nᎯᎩ ᎬᏁᎸᎯ ᎾᏍᎩ ᏥᏪᏣᏲᎮᎸ; ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᎾᏆᏛᏁᎸᎢ, ᎠᎴ ᏅᏗᎦᎵᏍᏙᏗᎭ ᏰᎵᏉ ᎠᎩᎲᎢ. ᎤᏍᏗᏰᏔᏁᏃ, ᎠᎴ ᎤᎩᏎᎢ.\n[ᎢᏐᏃ] ᎯᎠ ᏄᏪᏎᎢ, ᎢᎾᏂᎩᏉᏃ, ᎠᎴ ᎢᏁᎾ, ᎠᏴᏃ ᎢᎬᏱ ᎦᎢᏍᏗ.\n[ᏤᎦᏈᏃ] ᎯᎠ ᏄᏪᏎᎴᎢ, ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎠᎦᏔᎭ ᏗᏂᏲᎵ ᏗᏂᏩᎾᎦᎳᎯᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏂᏃᏕᎾ ᎠᎴ ᏩᎦ ᏧᏂᏍᏓᎢ ᏕᎦᏘᏁᎲᎢ; ᎢᏳᏃ ᏱᏚᏂᎶᏒᏍᏓᏁᎸ ᏌᏉ ᎢᎦ ᏓᏂᏱᎵᏒᎢ, ᏂᎦᏛ ᎠᏫ ᏱᏓᏂᎵᏬᏦᎾ.\nᎾᏍᎩᏃ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎢᎬᏱ ᏫᎦᎶᎯ ᎯᏅᏏᏓᏍᏗ ᎠᎢᏒᎢ; ᎠᏴᏃ ᏙᏉ ᏕᎦᏓᏗᏂᏎᏍᏗ ᏰᎵᏉ ᎢᎬᏩᎾᏛᏁᏗ ᎨᏒ ᎦᎾᏝᎢ ᎢᎬᏱ ᏣᎾᎢ, ᎠᎴ ᏗᏂᏲᎵ, ᎬᏂ ᏫᏥᎷᏤᎸ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᏏᎠ ᏙᏧᏙᎥᎢ.\nᎢᏐᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᎦᏛᎪᎦ ᏴᏫ ᏥᏕᎦᏘᏁᎭ ᏗᎬᏯᎧᎯᏯᏏ ᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ? ᏫᏥᏩᏛ ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᎣᏍᏛ ᎠᎩᏰᎸᏗᏱ.\nᎢᏐᏃ ᎾᎯᏳᏉ ᎢᎦ ᎤᏨᏎ ᏏᎠ ᏫᎤᎶᏎᎢ.\nᏤᎦᏈᏃ ᏌᎪᏗ ᏭᎷᏤᎢ, ᎠᎴ ᎤᏴᏍᏗᏱ ᎤᏁᏍᎨᎮᎢ, ᎠᎴ ᎦᎾᏝᎢ ᎤᏂᏴᏍᏗᏱ ᏚᎵᏦᏔᏁᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎾᎿᏂ ᏌᎪᏗ ᏚᏙᎥ.\nᏤᎦᏈᏃ ᏎᎳᎻ ᎤᎷᏤᎢ, ᎾᏍᎩ ᏏᎩᎻ ᎤᏪᏚᎲᎢ, ᎨᎾᏂ ᎦᏓ ᎠᎲ ᏥᎦᏚᎭ, ᎾᎯᏳ ᏇᏓᏁᎳᎻᏱ ᏨᏧᎶᏎᎢ; ᎠᎴ ᎤᎵᏦᏔᏁ ᎢᎬᏱᏗᏢ ᎦᏚᎲᎢ.\nᎠᎴ ᎤᏩᏎ ᎢᏴᏛ ᎢᎩᏛ ᏠᎨᏏ, ᎾᎿ ᎤᎵᏦᏔᏅᎢ, ᎮᎼ ᏧᏪᏥ ᏚᏩᎯᏎᎴᎢ, ᎾᏍᎩ ᏏᎩᎻ ᎤᏙᏓ, ᎠᏍᎪᎯᏧᏈ ᎠᏕᎸᎯ ᎤᏓᏴᎮᎢ.\nᎠᎴ ᎾᎿ ᎤᏬᏢᏁ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎡᎴᎶᎯ-ᎢᏏᎵ ᏚᏬᎡᎢ.\nᎠᏯᏙᎸᎢ 34\nᏓᏱᎾᏃ ᎵᎠ ᎤᏪᏥ, ᎾᏍᎩ ᏤᎦᏈ ᏧᎾᏄᎪᏫᏎᎴᎢ, ᎤᏪᏅᏎ ᏚᏩᏛᎲᏎ ᎾᎿ ᎠᏁᎯ ᏧᏁᏥ ᎠᎾᏛ.\nᎿᏉᏃ ᏏᎩᎻ, ᎮᎼ ᎠᎯᏫ ᎤᎬᏫᏳᎯ ᎾᎿ ᎠᏁᎲ ᎤᏪᏥ, ᎤᎪᎮᎢ, ᎠᎴ ᎤᏯᏅᎮᎢ, ᎠᎴ ᏚᎾᏂᏏᏁᎢ, ᎠᎴ ᎤᏐᏢᎢᏍᏔᏁᎢ.\nᎠᎴ ᏧᏓᏅᏛ ᎢᏴᏛ ᏓᎧᎾᏩᏗᏙᎮ ᏓᏱᎾ ᏤᎦᏈ ᎤᏪᏥ, ᎠᎴ ᎤᎨᏳᏎ ᎠᏛ, ᎠᎴ ᎤᏓᏅᏘ ᎦᏬᏁᏗᏍᎨ ᎠᏛ\nᏏᎩᎻᏃ ᎤᏁᏤᎴ ᎤᏙᏓ ᎮᎼ, ᎯᎠ ᏄᏪᏎᎢ, ᏫᏍᎩᏯᏅᏏ ᎯᎠ ᎠᏛ ᎠᏆᏓᏴᏍᏗ.\nᏤᎦᏈᏃ ᎤᏛᎦᏁ ᎤᏐᏢᎢᏍᏔᏅ ᏓᏱᎾ ᎾᏍᎩ ᎤᏪᏥ; ᏧᏪᏥᏃ ᎢᎾᎨ ᏫᏓᏂᎢᏰ ᎦᎾᏝᎢ; ᏤᎦᏈᏃ ᎡᎳᏪᏉ ᎨᏎ ᎬᏂ ᎢᎤᏂᎷᏨ.\nᎮᎼᏃ ᏏᎩᎻ ᎤᏙᏓ ᏭᎷᏤᎴ ᏤᎦᏈ ᎤᎵᏃᎮᏔᏅᏎᎢ.\nᏤᎦᏈᏃ ᏧᏪᏥ ᎤᎾᏛᎦᏅ ᎢᎾᎨ ᏧᏂᎶᏎᎢ; ᎠᎴ ᎠᏂᏍᎦᏯ ᎤᏲᎢᏳ ᎤᏂᏰᎸᏁᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏂᏔᎳᏬᏎᎢ; ᏅᏗᎦᏍᏙᏗᏍᎨ ᎤᏲ ᏚᎸᏫᏍᏓᏁᎸ ᎢᏏᎵ ᎠᏁᎲᎢ, ᎾᏍᎩ ᏚᎾᏂᏏᏅ ᏤᎦᏈ ᎤᏪᏥ; ᎾᏍᎩ ᎯᎠ ᎢᎬᏛᏁᏗ ᏂᎨᏒᎾ ᏥᎩ.\nᎮᎼᏃ ᏚᎵᏃᎮᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎤᏓᏅᏙᎩ ᎠᏇᏥ ᏏᎩᎻ ᏓᎧᎿᏩᏗᏙᎭ ᎢᏤᏥ; ᎡᏥᎧᏏ ᎤᏓᏴᏍᏗ.\nᎠᎴ ᏧᎾᏨᏍᏗᏱ ᏂᏍᎩᏴᏂᏏ, ᎠᎴ ᏗᏤᏥ ᎠᏂᎨᏴ ᏕᏍᎩᏯᎧᏁᎮᏍᏗ, ᎠᎴ ᏦᎨᏥ ᎠᏂᎨᏴ ᏕᏥᏯᏂᏍᎨᏍᏗ.\nᎠᎴ ᎢᏧᎳᎭ ᎢᏕᎮᏍᏗ; ᎠᎴ ᎦᏙᎯ ᎢᏤᎲ ᎢᎬᏱᏢ ᎠᎮᏍᏗ; ᎾᎿ ᏕᏥᏁᎴᏍᏗ ᎠᎴ ᎢᏥᏃᏔᏂᏙᎮᏍᏗ, ᎠᎴ ᎾᎿ ᎦᏓ ᎢᏣᏤᎵ ᏂᏨᏁᎮᏍᏗ.\nᏏᎩᎻᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎤᏙᏓ ᎠᎴ ᏧᏙ, ᎣᏍᏛ ᏍᎩᏰᎸᏗ ᏫᏥᏩᏛ, ᎠᎴ ᎢᎦᎢᏉ ᏍᎩᏲᏎᎸ ᏓᏥᏂ.\nᎤᏣᏘ ᎢᏥᏁᏨ ᏥᏯᎫᏴᏗᏱ, ᎠᎴ ᎢᏳᏁᎸᏗᏱ, ᎠᏎ ᏍᎩᏁᏤᎸ ᎢᎦᎢ ᏓᏥᏂ; ᎠᏎᏍᎩᏂ ᏍᎩᏯᎧᏏ ᎠᏛ ᎠᏆᏓᏴᏍᏗ.\nᏤᎦᏈᏃ ᏧᏪᏥ ᎠᏠᎾᏍᏗ ᏚᏂᏁᏤᎴ ᏏᎩᎻ ᎠᎴ ᎤᏙᏓ ᎮᎼ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, --- ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏓᏱᎾ ᎤᏂᏙ ᎤᏐᏢᎢᏍᏔᏅᎢ, ---\nᎯᎠᏃ ᏂᏚᏂᏪᏎᎴᎢ, ᎥᏝ ᎾᏍᎩ ᏱᏅᎦᏲᏣᏛᎦ, ᎾᏍᎩ ᎣᎩᏙ ᏴᎦᏲᏥᎧᏏ ᎩᎶ ᎾᏥᎤᏍᏕᏎᎸᎾ; ᎾᏍᎩᏰᏃ ᏲᎦᏕᎰᎯᏍᏓ;\nᎯᎠᏍᎩᏂ ᏱᏄᏍᏗ ᎨᏨᏲᎢᏳᏗᏉ; ᎠᏴ ᏃᎦᏍᏛ ᏱᏂᏣᎵᏍᏔᏅ, ᎾᏍᎩ ᏂᏥᎥ ᎢᏥᏍᎦᏯ ᏱᏕᏥᎤᏍᏕᏎᎸ.\nᎩᎳᏃ ᏕᏨᏯᎧᏁᎮᏍᏗ ᏦᎨᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏂᎯ ᏗᏤᏥ ᎠᏂᎨᏴ ᏙᏥᏯᏂᏍᎨᏍᏗ; ᎠᎴ ᎢᏤᎲ ᎣᏤᎮᏍᏗ, ᎠᎴ ᏌᏉᏉ ᏴᏫ ᏂᏓᎵᏍᏔᏅᎭ.\nᎢᏳᏃ ᏂᏍᎩᏯᏛᏓᏍᏓᏁᎸᎾ ᎢᎨᏎᏍᏗ ᏤᏥᎤᏍᏕᏎᏗᏱ, ᎿᏉ ᏛᎣᏥᏯᏅᎯ ᎣᎨᏥ, ᎠᎴ ᏛᎣᏣᏂᎩᏏ.\nᏄᏂᏪᏒᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏁ ᎮᎼ, ᎠᎴ ᏏᎩᎻ ᎮᎼ ᎤᏪᏥ.\nᎾᏍᎩᏃ ᎠᏫᏅ ᎥᏝ ᏳᏙᎯᏕ ᎾᏍᎩ ᎢᏳᏛᏁᏗᏱ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏤᎦᏈ ᎤᏪᏥ ᎣᏏᏳ ᎤᏰᎸᏒᎢ; ᎠᎴ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎ ᎡᏍᎦᏉ ᏂᎦᏛ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ.\nᎮᎼᏃ ᎠᎴ ᎾᏍᎩ ᎤᏪᏥ ᏏᎩᎻ ᎤᏂᎷᏤ ᎦᎶᎯᏍᏗᏱ ᎤᏂᏚᎲᎢ, ᎠᎴ ᏚᎾᎵᏃᎮᏔᏁ ᎠᏂᏍᎦᏯ ᎤᏂᏚᎲ ᎠᏁᎯ, ᎯᎠ ᏄᏂᏪᏎᎢ,\nᎯᎠ ᎠᏂᏍᎦᏯ ᏙᎯ ᏂᎬᏅ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏁᎮᏍᏗᏉ ᎢᎦᏤᎵᎪᎯ, ᎠᎴ ᎾᎿ ᎠᏂᏃᏗᏍᎨᏍᏗ; ᎬᏂᏳᏉᏰᏃ ᎦᏙᎯ, ᏰᎵᏉ ᏂᎬ ᎤᎾᏕᏗᏱ; ᎠᎴ ᏕᏓᏓᏰᎨᏍᏗ ᏧᏁᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏕᎨᏗᎧᏁᎮᏍᏗ ᏗᎨᏥ ᎠᏂᎨᏴ.\nᎯᎠᏍᎩᏂᏃᏅ ᏱᏄᏍᏗ ᎩᎳ ᎬᏩᏃᎯᏳᏗ ᎢᏕᎲ ᎤᎾᏕᏗᏱ, ᎠᎴ ᏌᏉᏉ ᏴᏫ ᎢᎦᎵᏍᏙᏗᏱ, ᎾᏍᎩ ᎢᏳᏃ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᎠᏴ ᎢᏕᎲ ᏱᏗᎨᏥᎤᏍᏕᏎᎸ. ᎾᏍᎩᏯ ᎤᏅᏒ ᏗᎨᏥᎤᏍᏕᏎᎸᎯ ᏥᎩ.\nᏝᏍᎪ ᏧᎾᏤᎵ ᎦᎾᏝᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎾᎵᏍᏕᎸᏙᏗ, ᎠᎴ ᏂᎦᏛ ᏅᎩ ᏗᏂᏅᏌᏗ ᏧᎾᏤᎵᎦ, ᎠᏴ ᏗᎦᏤᎵ ᏱᎨᏎᏍᏗ? ᏗᏙᎯᏳᎲᎦᏉ, ᎢᏕᎲᏃ ᏛᎾᏕᏂ.\nᏂᎦᏛᏃ ᎦᏚᎲ ᎦᎶᎯᏍᏗᏱ ᎠᏂᎶᏍᎩ ᎬᏩᏛᏓᏍᏓᏁᎴ ᎮᎼ ᎠᎴ ᎤᏪᏥ ᏏᎩᎻ; ᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏚᎨᏥᎤᏍᏕᏎᎴᎢ ᎾᏂᎥ ᎤᏪᏚᎲ ᎦᎶᎯᏍᏗᏱ ᎠᏂᎶᏍᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏦᎢᏁ ᎢᎪᎯ ᎿᏉ ᏚᏁᎯᏍᏓᏁᎮᎢ, ᎠᏂᏔᎵ ᏤᎦᏈ ᏧᏪᏥ ᏏᎻᏯᏂ ᎠᎴ ᎵᏫ ᏓᏱᎾ ᏧᏙ ᎢᏧᎳ ᎭᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏚᏂᏴᎮᎢ, ᎠᎴ ᎾᏂᎾᏰᏍᎬᎾ ᏚᎾᏁᎷᎩᎡᎴ ᎦᏚᎲᎢ, ᎠᎴ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏚᏂᎴᎢ.\nᎠᎴ ᎭᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ ᏚᏂᎴ ᎮᎼ ᎠᎴ ᏏᎩᎻ ᎾᏍᎩ ᎤᏪᏥ, ᎠᎴ ᏏᎩᎻ ᎦᏁᎸ ᎤᏂᏯᏅᎵ ᏓᏱᎾ ᎠᎴ ᎤᏂᏄᎪᏤᎢ.\nᏤᎦᏈ ᏧᏪᏥ ᎤᏂᎷᏤ ᏗᎨᏥᎸᎯ ᎠᏂᎳᎨᏴᎢ, ᎠᎴ ᎤᏂᏲᏍᏔᏁ ᎦᏚᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᏙ ᎤᏂᏐᏢᎢᏍᏔᏅᎢ.\nᎠᎴ ᏚᏂᏯᏅᎮ ᏧᎾᏤᎵ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎪᎱᏍᏗ ᎦᏚᎲ ᎠᎿᎥᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏠᎨᏏ ᎠᎿᎥᎢ;\nᎠᎴ ᏂᎦᏛ ᎤᏁᎿᎥᎢ, ᎠᎴ ᏂᎦᏛ ᏗᏂᏲᎵ ᏚᎾᏓᏘᎾᎥᎢ, ᎠᎴ ᏧᎾᏓᎵᎢ ᏚᏂᏴᎩᏁᎢ, ᎠᎴ ᏂᎦᏛ ᎦᎵᏦᏕ ᎠᎿᎥ ᎤᏂᏫᏛᎮᎢ.\nᏤᎦᏈᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏏᎻᏯᏂ ᎠᎴ ᎵᏫ, ᏍᎩᎾᏕᏯᏙᏓᏉ, ᎥᎩᏂᏆᏘᎯ ᏥᏂᏍᎩᏅᎦ ᏴᏫ ᎡᏍᎦᏂ ᎠᏁᎲᎢ, ᎾᏍᎩ ᎠᏂᎨᎾᏂ ᎠᎴ ᎠᏂᏇᎵᏏ ᎠᏁᎲᎢ; ᎠᏴᏃ ᎢᏗᎦᏲᎵᏳ ᏥᎩ, ᏛᎾᏓᏟᏌᏂ ᎠᎴ ᏙᏓᎬᎩᎦᏘᎴᏏ ᎠᎴ ᏓᎬᎩᎵ; ᎠᏴᏃ ᏓᏴᎩᏛᏔᏂ, ᎠᏴ, ᎠᎴ ᏓᏆᏓᏘᎾᎥᎢ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏥᎪ ᎤᏁᏓᏥᏛ ᎠᎨᏴ ᎢᎦᎬᏁᏗ ᏥᎩ ᏅᏓᎬᏁᎵ ᎣᎩᏂᏙᎢ?\nᎠᏯᏙᎸᎢ 35\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᏔᎴᎲᎦ, ᎡᎵ ᎮᎾ, ᎠᎴ ᎾᎿ ᏩᏕᎲᎦ; ᎠᎴ ᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᏲᏢᎾᏁᎸᎭ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏥᏂᏣᏛᏁᎸᎩ ᎾᎯᏳ ᏥᏯᎵᏘᎡᎸ ᎢᏐ ᎡᎶᏂᎵ.\nᎿᏉᏃ ᏤᎦᏈ ᎯᎠ ᏂᏚᏪᏎᎴ ᏚᏓᏘᎾᎥᎢ, ᎠᎴ ᏂᎦᏛ ᏓᏓᏘᏁᎲᎢ, ᎢᏴᏛ ᏂᏗᏨᎦ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏕᏥᎲᎢ, ᎠᎴ ᎢᏣᏓᏅᎦᎸ, ᎠᎴ ᏗᏣᏄᏩᎢᏴᎾ;\nᎠᎴ ᏗᏓᎴᎲᎦ ᎠᎴ ᏇᏕᎵ ᏫᏗᎶᎯ; ᎠᎴ ᎾᎿ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏓᏥᏲᏢᎾᏁᎵ ᎤᏁᎳᏅᎯ, ᎾᏍᎩ ᎠᎩᏁᏤᎸᎯ ᎾᎯᏳ ᎤᏪᎵᏍᏗ ᎾᏆᎵᏍᏓᏁᎲᎢ, ᎠᎴ ᏔᎵ ᏧᏛᏗᏕᎬ ᎦᎢᏒᎢ.\nᏂᎦᏛᏃ ᏕᎬᏩᏲᎯᏎᎴ ᏤᎦᏛ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᏚᏂᎲᎢ, ᎠᎴ ᏂᎦᏛ ᏗᏟᎠᏙ ᏚᎾᏟᎠᏛᎢ; ᏤᎦᏈᏃ ᏚᏩᏍᎦᎳᏁ ᎭᏫᏂᏗᏢ ᎠᏓᏯ ᏡᎬᎢ, ᏏᎩᎻ ᎾᎥᎢ.\nᎠᎴ ᎤᎾᏂᎩᏎᎢ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎤᏂᎷᏤᎴ ᎬᏩᏚᏫᏛ ᏕᎦᏚᎲ ᎠᎴ ᎥᏝ ᏱᏚᏂᎨᎲᏎ ᏤᎦᏈ ᏧᏪᏥ.\nᏤᎦᏈᏃ ᎳᏏ ᏭᎷᏤᎢ, ᎾᏍᎩ ᏇᏕᎵ [ᏥᏚᏙᎥ,] ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ ᏥᎦᏚᎭ, ᎤᏩᏒ ᎠᎴ ᏂᎦᏛ ᏴᏫ ᏓᏓᏘᏁᎲᎢ.\nᎾᎿᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᏬᏢᏁᎢ, ᎠᎴ ᎡᎵ-ᏇᏕᎵ ᏚᏬᎡ ᎾᏍᎩ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏁᎳᏅᎯ ᎾᎿ ᎬᏂᎨᏒ ᏄᏛᏁᎸᎢ, ᎾᎯᏳ ᏣᎵᏘᎡᎮ ᎤᏂᎵ.\nᎠᏎᏃ ᏕᏉᎳ ᎵᏇᎩ ᎤᏍᏛᏅᎯ ᎤᏲᎱᏎᎢ, ᎠᎴ ᎠᏥᏂᏌᏁ ᏇᏕᎵ ᎨᏓᎵᏱ ᎢᏗᏢ ᎠᏓᏯ ᏡᎬ ᎭᏫᏂᏗᏢ; ᎠᎴ ᎠᎶᏂ-ᏆᏓᏗ ᏚᏃᎡᎢ.\nᎤᏁᎳᏅᎯᏃ ᏔᎵᏁ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᏤᎦᏈ, ᎾᎯᏳ ᏇᏓᏁᎳᎻ ᏨᏧᎶᏎᎢ, ᎠᎴ ᎣᏍᏛ ᎤᏁᏤᎴᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏤᎦᏈ ᏕᏣᏙᎥ; ᎥᏝ ᎿᏉ ᏤᎦᏈ ᏰᏦᏎᎮᏍᏗ, ᎢᏏᎵᏍᎩᏂ ᏕᏣᏙᎡᏍᏗ; ᎢᏏᎵᏃ ᏚᏬᎡᎢ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎠᏆᎵᏂᎩᏛ; ᏣᏁᏉᏣᏖᏍᏗ ᎠᎴ ᎯᎪᏙᏍᎨᏍᏗ; ᎥᏝ ᏏᎦᎵᏍᏓᎴᎩᏉ, ᎢᎸᏍᎩᏍᎩᏂ ᎢᎦᎵᏍᏓᎴᎩ ᏴᏫ ᏂᎯ ᎨᏒ ᏛᎾᏓᎴᏂ, ᎠᎴ ᎤᏂᎬᏫᏳᎯ ᏓᎨᏣᎾᏄᎪᏥ.\nᎠᎴ ᎦᏙᎯ ᎾᏍᎩ ᎡᏆᎭᎻ ᎠᎴ ᎡᏏᎩ ᎦᏥᏁᎸᎯ ᏥᎩ, ᏂᎯ ᏛᎬᏁᎵ, ᎠᎴ ᏂᎯ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎤᎾᏕᏗ ᏥᎩ ᏓᎦᏥᏁᎵ ᎾᏍᎩ ᎦᏙᎯ.\nᎤᏁᎳᏅᎯᏃ ᎤᎵᏌᎳᏓᏁ ᎤᏓᏅᎡᎴᎢ ᎾᎿ ᎤᎵᏃᎮᏔᏅᎢ.\nᏤᎦᏈᏃ ᎤᏪᏘᏁ ᎾᎿ ᎤᎵᏃᎮᏔᏅᎢ, ᎾᏍᎩ ᏅᏯ ᎤᏪᏘᏁᎢ; ᎠᎴ ᎠᏗᏔᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎤᏍᏚᏞ ᎾᎿᏂ, ᎠᎴ ᎪᎢ ᎤᏍᏚᏞᎢ.\nᏤᎦᏈᏃ ᏇᏕᎵ ᏚᏬᎡ ᎾᎿ ᎤᏁᎳᏅᎯ ᎤᎵᏃᎮᏔᏅᎢ.\nᏇᏕᎵᏃ ᎤᎾᏂᎩᏎᎢ; ᎡᏍᎦᏂᏉᏃ ᎡᏅᏍᏗ ᎨᏎ ᎡᏆᏓ ᏫᎦᎷᎯᏍᏗᏱ; ᎴᏥᎵᏃ ᎤᏍᏆᎸᎡᎴ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏍᏗᏱ, ᎠᎴ ᎤᏣᏘ ᎠᏍᏓᏯ ᎤᏱᎵᏙᎮᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎤᏣᏘ ᎠᏍᏓᏯ ᎤᏱᎵᏙᎸ, ᎤᏍᏕᎵᏍᎩ ᎯᎠ ᏄᏪᏎᎴᎢ ᏞᏍᏗ ᏱᎾᏰᏍᎨᏍᏗ; ᎾᏍᏉᏰᏃ ᎯᎠ ᏤᏥ ᎠᏧᏣ ᏛᎯᎾᏄᎪᏫᏏ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎿᏉ ᎤᏓᏅᏙ ᎠᏓᏅᏍᎨᎢ, --- ᎤᏲᎱᏎᏰᏃ, --- ᎾᏍᎩ ᏇᏃᏂ ᏚᏬᎡᎢ; ᎤᏙᏓᏍᎩᏂ ᏇᏂ ᏚᏬᎡᎢ.\nᎴᏥᎵᏃ ᎤᏲᎱᏎᎢ, ᎠᎴ ᎠᏥᏂᏌᏁ ᏫᎦᏅᎤ ᎡᏆᏓ, ᎾᏍᎩ ᎦᏚᏱ ᏥᏚᏙᎥ.\nᏤᎦᏈᏃ ᎤᏪᏘᏁ ᎠᏥᏂᏌᎲᎢ; ᎾᏍᎩ ᎴᏥᎵ ᎠᏥᏂᏌᎲ ᎩᎳᎯᏳ ᎨᏔ.\nᎢᏏᎵᏃ ᎤᏂᎩᏎᎢ, ᎠᎴ ᎢᏓ ᏗᏐᏴ ᎤᏗᏗᏢ ᏚᎵᏦᏔᏁᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᎢᏏᎵ ᎾᎿ ᎦᏓ ᎠᎲ ᏤᎮᎢ, ᎾᏍᎩ ᎷᏈᏂ ᏭᏂᏏᏁᎴ ᏈᎳ ᎤᏙᏓ ᏔᎵ ᏚᏮᏕ ᏣᏓᏰᎮᎢ; ᎢᏏᎵᏃ ᎤᏛᎦᏁᎢ. ᏤᎦᏈᏃ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᏔᎳᏚ ᎤᏂᎡᎢ.\nᎵᎠ ᏧᏪᏥ; ᎷᏈᏂ ᎢᎬᏱ ᎤᏕᏁᎸᎯ ᏤᎦᏈ, ᏏᎻᏯᏂᏃ, ᎠᎴ ᎵᏫ, ᎠᎴ ᏧᏓ, ᎠᎴ ᎢᏏᎦ, ᎠᎴ ᏤᏆᎳᏂ;\nᎴᏥᎵᏃ ᏧᏪᏥ; ᏦᏩ ᎠᎴ ᏇᏂ.\nᏈᎳᏃ ᏧᏪᏥ, ᎾᏍᎩ ᏧᏥᎵ ᎤᏅᏏᏓᏍᏗ; ᏕᏂ ᎠᎴ ᏁᏩᏔᎵ.\nᏏᎵᏆᏃ ᏧᏪᏥ, ᎾᏍᎩ ᎵᎠ ᎤᏅᏏᏓᏍᏗ; ᎦᏗ ᎠᎴ ᎡᏌ. ᎾᏍᎩ ᎯᎠ ᏤᎦᏈ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᏇᏓᏁᎳᎻᏱ ᏥᎬᏩᏕᏁᎴᎢ.\nᏤᎦᏈᏃ ᏭᎷᏤᎴ ᎤᏙᏓ ᎡᏏᎩ ᎹᎻᎵᏱ, ᎩᎵᏯ-ᎠᏆ. ᎾᏍᎩ ᎯᏆᏂ ᏥᏚᏙᎥ, ᎾᎿ ᎡᏆᎭᎻ ᎠᎴ ᎡᏏᎩ ᎤᏁᏙᎸᎢ.\nᎡᏏᎩᏃ ᎤᎴᏂᏙᎸ ᎠᏍᎪᎯᏧᏈ ᏁᎳᏍᎪᎯ ᏄᏕᏘᏴᎮᎢ.\nᎡᏏᎩᏃ ᎤᏲᎯᏍᏔᏁ ᎬᏬᎳᏕᏍᎬ ᎠᎴ Ꭴ ᏮᎱᏎᎢ, ᎠᎴ ᏧᏤᎵᎦ ᏴᏫ ᏄᎾᏛᏅ ᏫᏚᏖᎳᏕᎴᎢ, ᎤᏛᏐᏅᎯ ᎠᎴ ᏧᎩᏨᏂᎶᏛ ᎨᏎᎢ; ᏧᏪᏥᏃ ᎢᏐ ᎠᎴ ᏤᎦᏈ ᎬᏩᏂᏌᏁᎢ.\nᎠᏯᏙᎸᎢ 36\n ᎯᎠᏃ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎨᏒ ᎢᏐ, ᎾᏍᎩ ᎢᏙᎻ ᏥᏚᏙᎥ.\nᎢᏐ ᎨᎾᏂ ᎠᏁᎯ ᏧᏁᏥ ᏫᏚᏯᏅᎮ ᏧᏓᎵᎢ; ᎾᏍᎩ ᎡᏓ ᎢᎶᏂ ᎡᎯᏗ ᎤᏪᏥ, ᎠᎴ ᎠᎰᎵᏆᎹ ᎡᏮ ᎤᏪᏥ ᎾᏍᎩ ᏥᏈᎣᏂ ᎠᎯᏫ ᎤᏪᏥ;\nᎠᎴ ᏆᏏᎹ ᎢᏏᎺᎵ ᎤᏪᏥ ᎤᏙ ᎢᏆᏲᏗ.\nᎡᏓᏃ ᎡᎵᏆ ᎤᎾᏄᎪᏫᏎᎴ ᎢᏐ; ᏆᏏᎹᏃ ᎷᎡᎵ ᎤᎾᏄᎪᏫᏎᎴᎢ.\nᎠᎰᎵᏆᎹᏃ ᏥᎤᏏ ᎠᎴ ᏤᎠᎳᎻ ᎠᎴ ᎪᎳ ᏚᎾᏄᎪᏫᏎᎴᎢ; ᎯᎠ ᎾᏍᎩ ᎢᏐ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎨᎾᏂ ᎦᏙᎯ ᏥᎬᏩᏕᏁᎴᎢ.\nᎢᏐᏃ ᏚᏘᏅᏎ ᏧᏓᎵᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏧᏪᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏂᎦᏛ ᎦᏁᎸ ᎠᏁᎯ, ᎠᎴ ᎦᎾᏝᎢ, ᎠᎴ ᏧᏤᎵ ᏅᎩ ᏗᏂᏅᏌᏗ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥᎢ, ᎾᏍᎩ ᎨᎾᏂ ᎦᏙᎯ ᏭᏩᏛᏛ; ᎠᎴ ᎢᎸᎯᏢ ᏭᎶᏎᎢ, ᎤᏅᏟ ᏤᎦᏈ ᎤᏓᏅᎡᎴᎢ.\nᎤᏣᏘᏰᏃ ᏧᎬᏩᎶᏗ ᎤᏂᎲ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎥᏝ ᎢᏧᎳᎭ ᎬᏩᎾᏕᏗ ᏱᎨᏎᎢ; ᎠᎴ ᎾᏍᎩ ᎦᏙᎯ ᎾᎿ ᎠᏁᏙᎯ ᎨᏒᎢ, ᏚᏂᎷᎶᎨᏉ ᏂᎦᎵᏍᏙᏗᏍᎨ ᎤᏂᎾᏝᎾᎥᎢ.\nᎾᏍᎩᏃ ᎢᏐ ᏏᎠ ᎣᏓᎸ ᎡᎮᎢ. ᎢᏐ ᎾᏍᎩ ᎢᏙᎻ.\nᎯᎠᏃ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎢᏐ, ᎾᏍᎩ ᎠᏂᎡᏙᎻ ᎤᏂᏙᏓ, ᏏᎠ ᎣᏓᎸ ᎠᏁᎯ.\nᎯᎠ ᎾᏍᎩ ᏚᎾᏙᎥ ᎢᏐ ᏧᏪᏥ; ᎡᎵᏆ ᎡᏓ ᎤᏪᏥ ᎾᏍᎩ ᎢᏐ ᎤᏓᎵᎢ, ᎷᎡᎵ ᏆᏏᎹ ᎤᏪᏥ ᎾᏍᎩ ᎢᏐ ᎤᏓᎵᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎡᎵᏆ ᏧᏪᏥ, ᏘᎹᏂ, ᎠᎹ, ᏂᏉ, ᎠᎴ ᎦᏓᎻ, ᎠᎴ ᎨᎾᏏ.\nᏘᎻᎾᏃ ᎡᎵᏆ ᏔᎵ ᎤᏮᏗ ᎠᏓᏰᎲ ᎨᏎᎢ, ᎾᏍᎩ ᎢᏐ ᎤᏪᏥ; ᎾᏍᎩᏃ ᎡᎵᏆ ᎠᎹᎴᎩ ᎤᎾᏄᎪᏫᏎᎴᎢ. ᎯᎠ ᎾᏍᎩ ᎡᏓ ᏧᏪᏥ ᎢᏐ ᎤᏓᎵᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎷᎡᎵ ᏧᏪᏥ; ᏁᎭᏗ, ᎠᎴ ᏎᎳ, ᏌᎹ, ᎠᎴ ᎻᏌ; ᎯᎠ ᎾᏍᎩ ᏆᏏᎹ ᎢᏐ ᎤᏓᎵᎢ ᏧᏪᏥ ᎨᏎᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏧᏪᏥ ᎠᎰᎵᎠ ᎢᏐ ᎤᏓᎵᎢ, ᎡᎾ ᎤᏪᏥ ᎾᏍᎩ ᏥᏈᎣᏂ ᎤᏪᏥ ᏥᎨᏎᎢ; ᎠᎴ ᎾᏍᎩ ᏤᎤᏏ, ᎠᎴ ᏤᎳᎻ, ᎠᎴ ᎪᎳ ᏚᎾᏄᎪᏫᏎᎴ ᎢᏐ.\nᎯᎠᏃ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎨᏎ ᎢᏐ ᏧᏪᏥ; ᎡᎵᏆ ᏧᏪᏥ ᎾᏍᎩ ᎢᏐ ᎢᎬᏱ ᎤᏕᏁᎸᎯ; ᏘᎹᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎣᎹ ᎤᎬᏫᏳᏌᏕᎩ, ᏎᏉ ᎤᎬᏫᏳᏌᏕᎩ, ᎠᎴ ᎩᎾᏏ ᎤᎬᏫᏳᏌᏕᎩ.\nᎪᎳ ᎤᎬᏫᏳᏌᏕᎩ, ᎦᏔᎻ ᎤᎬᏫᏳᏌᏕᎩ, ᎠᎹᎴᎩ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎡᎵᏆ ᎬᏩᏕᏁᎸᎯ ᎢᏙᎻ ᏣᏁᎮᎢ; ᎯᎠ ᎾᏍᎩ ᎡᏓ ᏧᏪᏥ ᎨᏎᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎷᎡᎵ ᏧᏪᏥ ᎾᏍᎩ ᎢᏐ ᎤᏪᏥ; ᏁᎭᏗ ᎤᎬᏫᏳᏌᏕᎩ, ᏎᎳ ᎤᎬᏫᏳᏌᏕᎩ, ᏌᎹ ᎤᎬᏫᏳᏌᏕᎩ, ᎻᏌ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎷᎡᎵ ᎬᏩᏕᏁᎸᎯ ᎢᏙᎻ ᏣᏁᎮᎢ; ᎯᎠ ᎾᏍᎩ ᏆᏏᎹ ᏧᏪᏥ ᎢᏐ ᎤᏓᎵᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎠᎪᎵᏆᎹ ᏧᏪᏥ ᎢᏐ ᎤᏓᎵᎢ; ᏥᎤᏏ ᎤᎬᏫᏳᏌᏕᎩ, ᏤᎠᎳᎻ ᎤᎬᏫᏳᏌᏕᎩ, ᎪᎳ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᎰᎵᏆᎹ ᎬᏩᏕᏁᎸᎯ ᎾᏍᎩ ᎢᏐ ᎤᏓᎵᎢ ᎡᎾ ᎤᏪᏥ.\nᎯᎠ ᎾᏍᎩ ᎢᏐ ᏧᏪᏥ, ᎾᏍᎩ ᎢᏙᎻ ᏥᏙᏙᎥ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏧᎾᏤᎵᎦ.\nᎯᎠᏃ ᎾᏍᎩ ᏏᎠ ᎠᎰᎸ ᏧᏪᏥ, ᎾᏍᎩ ᎾᎿ ᎦᏙᎯ ᏣᏁᎮᎢ; ᎶᏔᏂ, ᎠᎴ ᏐᏆᎵ, ᎠᎴ ᏥᏈᎣᏂ, ᎠᎴ ᎡᎾ.\nᎠᎴ ᏗᏐᏂ, ᎠᎴ ᎢᏌ, ᎠᎴ ᏗᏌᏂ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᎰᎸ ᏧᎾᏤᎵᎦ, ᎾᏍᎩ ᏏᎠ ᏧᏪᏥ ᎢᏙᎻ ᎦᏙᎯ ᏣᏁᎮᎢ.\nᎶᏔᏂᏃ ᏧᏪᏥ ᎰᎵ ᎠᎴ ᎯᎹᏂ ᏚᎾᏙᎡᎢ; ᎶᏔᏂᏃ ᎤᏙ ᏘᎻᎾ ᏚᏙᎡᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏐᏆᎵ ᏧᏪᏥ; ᎠᎵᏆᏂ, ᎠᎴ ᎹᏁᎭ, ᎠᎴ ᎢᏆᎵ, ᏎᏉ, ᎠᎴ ᎣᎾᎻ.\nᎯᎠᏃ ᎾᏍᎩ ᏥᏈᎣᏂ ᏧᏪᏥ; ᎢᏧᎳ ᎡᏣ, ᎠᎴ ᎡᎾ; ᎯᎠ ᎾᏍᎩ ᎡᎾ ᎤᏗᎴᎩ ᎠᎹ ᏕᎦᏄᎪᎬ ᏥᏚᏩᏛᎮ ᎢᎾᎨᎢ, ᎤᏙᏓ ᏥᏈᎣᏂ ᏧᏤᎵᎦ ᏗᏂᎵᎠᏅᎯᏛ ᏐᏈᎵ ᏓᎦᏘᏴᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎡᎾ ᏧᏪᏥ; ᏗᏐᏂ, ᎠᎴ ᎠᎰᎵᏆᎹ ᎡᎾ ᎤᏤᏥ ᎠᎨᏴ.\nᎯᎠᏃ ᎾᏍᎩ ᏗᏐᏂ ᏧᏪᏥ; ᎮᎻᏓᏂ, ᎠᎴ ᎡᏏᏆᏂ, ᎠᎴ ᎢᏗᎳᏂ, ᎠᎴ ᎩᎳᏂ.\nᎯᎠᏃ ᎾᏍᎩ ᎢᏌ ᏧᏪᏥ; ᏈᎳᏂ, ᎠᎴ ᏤᏆᏂ, ᎠᎴ ᎡᎧᏂ\nᎯᎠᏃ ᎾᏍᎩ ᏗᏌᏂ ᏧᏪᏥ; ᎥᏏ, ᎠᎴ ᎠᎳᏂ.\nᎯᎠᏃ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏂᎰᎸ ᎬᏩᎾᏕᏁᎸᎯ; ᎶᏔᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᏐᏆᎵ ᎤᎬᏫᏳᏌᏕᎩ, ᏥᏈᎣᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎡᎾ ᎤᎬᏫᏳᏌᏕᎩ,\nᏗᏐᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎢᏌ ᎤᎬᏫᏳᏌᏕᎩ, ᏗᏌᏂ ᎤᎬᏫᏳᏌᏕᎩ; ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎰᎳ ᎬᏩᏕᏁᎸᎯ, ᎾᏍᎩ ᏧᎾᏤᎵ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎤᎾᏓᏑᏴ ᏏᎠ ᎦᏙᎯ ᏣᏁᎮᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎤᏂᎬᏫᏳ ᏣᏁᎮ ᎢᏙᎻᏱ ᎠᏏᏉ ᎢᏏᎵ ᏧᏪᏥ ᏄᏂᎧᎲᎾ ᏥᎨᏎ ᎤᎬᏫᏳᎯ.\nᏈᎳ ᏈᎣ ᎤᏪᏥ ᎢᏙᎻ ᎤᎬᏫᏳᎯ ᎨᏎᎢ; ᎾᏍᎩᏃ ᎤᏪᏚᎲ ᏗᏂᎮᏆ ᏚᏙᎡᎢ.\nᏈᎳᏃ ᎤᏲᎱᏎᎢ, ᏦᏆᏈᏃ ᏎᎳ ᎤᏪᏥ ᏉᏏᎳ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏓᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ.\nᏦᎠᏈᏃ ᎤᏲᎱᏎᎢ, ᎱᏌᎻᏃ ᏘᎹᏂ ᎦᏓ ᎠᎲ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏔᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ.\nᎱᏌᎻᏃ ᎤᏲᎱᏎᎢ, ᎤᏓᏁᏟᏴᏍᏓᏁᎴᏃ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁ ᎮᏓᏗ ᏈᏓᏗ ᎤᏪᏥ ᎾᏍᎩ ᏥᏚᏎᎪᎩᏎ ᎻᏗᏯᏂ ᎼᎠᏈ ᎤᎾᏤᎵᎪᎯ. ᎾᏍᎩᏃ ᎤᏪᏚᎲ ᎡᏫᏗ ᏚᏙᎡᎢ.\nᎮᏓᏗᏃ ᎤᏲᎱᏎᎢ, ᏌᎻᎳᏃ ᎹᏏᎵᎦ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏔᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ.\nᏌᎻᎳᏃ ᎤᏲᎱᏎᎢ, ᏐᎳᏃ ᎵᎰᏉ ᎡᏉᏄᎶᏗ ᏂᎦᏚᎭ ᎤᏕᏅᎯ ᎤᏓᏁᏟᏴᏍᏓᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ.\nᏐᎳᏃ ᎤᏲᎱᏎᎢ, ᎤᏓᏁᏟᏴᏍᏔᏁᎴᏃ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁ ᏇᎳ-ᎮᎾᏂ ᎡᎩᏉ ᎤᏪᏥ.\nᏇᎳ-ᎮᎾᏂᏃ ᎡᎩᏉ ᎤᏪᏥ ᎤᏲᎱᏎᎢ, ᎮᏓᎵᏃ ᎤᏓᏁᏟᏴᏍᏓᏁᎴ ᎤᎬᏫᏳᎯ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩᏃ ᎤᏪᏚᎲ ᏆᎤ ᏚᏙᎡᎢ; ᎤᏓᎵᎢᏃ ᎺᎮᏗᏇᎵ ᏚᏙᎡᎢ, ᎹᏞᏗ ᎤᏪᏥ, ᎻᏎᎭᏈ ᎤᏪᏥ ᎠᎨᏴ.\nᎯᎠᏃ ᎾᏍᎩ ᏚᎾᏙᎥ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎢᏐ ᎤᏁᏢᏔᏅᎯ, ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ, ᏓᏁᏩᏗᏒᎢ, ᎨᏥᏯᏅᏗ ᎨᏒᎢ; ᏗᎻᎾ ᎤᎬᏫᏳᏌᏕᎩ, ᎡᎵᏩ ᎤᎬᏫᏳᏌᏕᎩ, ᏥᏓᏗ ᎤᎬᏫᏳᏌᏕᎩ,\nᎠᎰᎵᏆᎹ ᎤᎬᏫᏳᏌᏕᎩ, ᎢᎳ ᎤᎬᏫᏳᏌᏕᎩ, ᏆᏃᏂ ᎤᎬᏫᏳᏌᏕᎩ,\nᎨᎾᏏ ᎤᎬᏫᏳᏌᏕᎩ, ᏘᎹᏂ ᎤᎬᏫᏳᏌᏕᎩ, ᎻᏈᏌ ᎤᎬᏫᏳᏌᏕᎩ,\nᎹᎩᏓᏱᎵ ᎤᎬᏫᏳᏌᏕᎩ, ᎠᏱᎳᎻ ᎤᎬᏫᏳᏌᏕᎩ. ᎯᎠ ᎾᏍᎩ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎢᏙᎻ ᎠᏁᎯ ᎾᎿ ᏓᏂᏁᎳᏗᏒᎢ, ᎦᏙᎯ ᎤᎾᏤᎵᎪᎯ ᎨᏒᎢ. ᎯᎠ ᎾᏍᎩ ᎢᏐ, ᎠᏂᎢᏙᎻ ᎤᏂᏙᏓ.\nᎠᏯᏙᎸᎢ 37\nᏤᎦᏈᏃ ᎡᎮ ᎾᎿ ᎦᏙᎯ ᎤᏙᏓ ᎡᏙᎯ ᏥᎨᏎᎢ, ᎨᎾᏂ ᎦᏙᎯ ᎨᏒᎢ.\nᎯᎠ ᎾᏍᎩ ᎧᏃᏀᎡᏍᏗ ᏤᎦᏈ ᎤᏁᏢᏔᏅᏒᎢ. ᏦᏩ ᎦᎵᏆᏚ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᏧᏂᎵ ᎤᎾᎵᎪᎭ ᏓᏅᎿᏗᏍᏗᏍᎨ ᎠᏫ; ᎾᏍᎩᏃ ᎠᏫᏄᏣ ᎢᏧᎳᎭ ᎠᏁᏙᎮ ᏈᎳ ᏧᏪᏥ ᎠᎴ ᏏᎵᏆ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏙᏓ ᏧᏓᎵᎢ. ᏦᏩᏃ ᎤᏃᏁᎴ ᎤᏂᏙᏓ ᎤᏲ ᎨᏥᏃᎮᏍᎬᎢ.\nᎢᏏᎵᏃ ᎤᏟ ᏄᎨᏳᏎ ᏦᏩ ᎡᏍᎦᏉ ᏂᎦᏛ ᏧᏪᏥ, ᏅᏗᎦᎵᏍᏙᏗᎡ ᎤᏛᏐᏅᎯ ᎨᏒ ᎤᏕᏁᎸᎢ. ᎠᎴ ᎠᏄᏬ ᎤᏅᏣᏛ ᎤᏪᏰᏫᏎᎴᎢ.\nᏧᏂᎵᏃ ᎤᎾᏙᎴᎰᏒ ᎤᏂᏙᏓ ᎤᏟ ᏄᎨᏳᏒ ᎾᏍᎩ ᎡᏍᎦᏉ ᏂᎦᏛ ᏧᏂᎵ, ᎬᏩᏂᏆᏘᎴᎢ, ᎠᎴ ᎥᏝ ᏙᎯᏱ ᎬᏩᎾᎵᏃᎮᏙᏗ ᏱᎨᏎᎢ.\nᎰᏩᏃ ᎤᏍᎩᏓᏎᎢ, ᎠᎴ ᎾᏍᎩ ᏚᏃᏁᎴ ᏧᏂᎵ; ᎤᏟᏃ ᎢᎦᎢ ᎬᏩᏂᏆᏘᎴᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ; Ꭷ, ᎢᏣᏛᏓᏍᏓ ᎯᎠ ᎾᏍᎩ ᎠᏆᏍᎩᏓᏒᎢ.\nᎬᏂᏳᏉ ᏕᏙᏛᎢᎲᎩ ᏠᎨᏏ; ᎬᏂᏳᏉᏃ ᎠᏉᏛᎸᎯ ᏚᎴᏅᎩ ᎠᎴ ᏧᏳᎪᏗ ᎦᎧᎲᎩ; ᎠᎴ ᎬᏂᏳᏉ ᏂᎯ ᏗᏦᏛᎸᎯ ᏚᎾᏚᏫᏍᏔᏅᎩ, ᎡᎳᏗ ᎾᎾᏛᏁᎲᎩ ᎠᏴ ᎠᏉᏛᎸᎯ.\nᏧᏂᎵᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ; ᏥᎪᏃ ᎤᏙᎯᏳᎯ ᏂᎩ ᏣᎬᏫᏳᎯ ᎨᏎᏍᏗ ᎠᏴ ᎣᏤᎲᎢ? ᎠᎴᏍᎪ ᎤᏙᎯᏳᎯ ᎭᏓᏅᏖᎵᏙᎯ ᎨᏎᏍᏗ ᎠᏴ ᎣᏤᎲᎢ? ᎠᎴ ᎠᏏᏉ ᎤᏟ ᎢᎦᎢ ᎢᎬᏩᏂᏆᏘᎴᎢ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏍᎩᏓᏒᎢ ᎠᎴ ᏄᏪᏒᎢ.\nᎣᏂᏃ ᎠᏏ ᎤᏍᎩᏓᏎᎢ, ᎠᎴ ᏚᏃᏁᎴ ᎠᎾᎵᏅᏟ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎠᏏ ᏌᏉ ᎢᏯᏍᎩᏓᏒᎢ ᎥᎦᏍᎩᏘ, ᎠᎴ ᎬᏂᏳᏉ ᏅᏙ ᎢᎦ ᎡᎯ, ᎠᎴ ᏅᏙ ᏒᏃᏱ ᎡᎯ, ᎠᎴ ᏌᏚ ᎢᏯᏂᏛ ᏃᏈᏏ ᎡᎳᏗ ᏂᎬᏆᏛᏁᎲᎩ.\nᎤᏙᏓᏃ ᎠᎴ ᎠᎾᎵᏅᏟ ᏚᏃᏁᎴᎢ. ᎤᏙᏓᏃ ᎤᎬᏍᎪᎸᏁᎢ, ᎯᎠ ᏄᏪᏎᎴᎢ; ᎦᏙ ᎤᏍᏗ ᎾᏍᎩ ᎠᏍᎩᏓᏍᏗ ᏣᏍᎩᏘ? ᏥᎪ ᎠᏴ, ᎠᎴ ᏣᏥ, ᎠᎴ ᎢᏣᎵᏅᏟ, ᎤᏙᎯᏳᎯ ᎦᏙᎯ ᎢᏴᏛ ᎡᎳᏗ ᏅᏓᏨᏯᏛᏁᎵᎵ?\nᎠᎾᎵᏅᏟᏃ ᎬᏩᏳᏤᎴᎢ; ᎤᏙᏓᏍᎩᏂ ᎤᏅᏓᏕ ᎾᏍᎩ ᏄᏪᏒᎢ.\nᎠᎾᎵᏅᏟᏃ ᎤᏁᏅᏎ ᏚᏂᎦᏘᏛᏎ ᎤᏂᏙᏏ ᏧᏤᎵ ᎠᏫ ᏏᎩᎻᏱ.\nᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ; ᏝᏍᎪ ᎢᏣᎵᏅᏟ ᎠᏫ ᏱᏫᏓᏂᎦᏘᏯ ᏏᎩᎻᏱ? Ꭷ, ᏓᎬᏅᏏ ᏩᏁᏙᎲᎢ; ᎯᎠᏃ ᏄᏪᏎᎴᎢ, ᎠᏂᏉ ᎠᏗᎾ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ; ᎮᎾ ᏣᎦᏛᏄᎦ ᏄᎾᏛᎿᏕᎬ ᎢᏣᎵᏅᏟ ᎠᎴ ᏄᎾᏛᎿᏕᎬ ᎠᏫ, ᎢᏍᎩᏃᏁᎵᎸᏃ. ᎯᏉᏂᏃ ᎤᎨᏓᎵᏴ ᎤᏅᏎᎢ, ᎠᎴ ᏏᎩᎻ ᏭᎷᏤᎢ.\nᎩᎶᏃ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎤᏩᏛᎮᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎢᎾᎨ ᎤᎴᎾᎵᏙᎮᎢ; ᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎤᏛᏛᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ; ᎦᏙ ᏣᏲᎭ?\nᎯᎠᏃ ᏄᏪᏎᎢ; ᎣᏣᎵᏅᏟ ᎦᏥᏲᎭ; ᏍᎩᏃᎲᏏ ᎾᎿ ᏫᏓᏂᎦᏘᏴ ᎠᏫ.\nᎾᏍᎩᏃ ᎠᏍᎦᏯ ᎯᎠ ᏄᏪᏎᎢ; ᎤᎾᏓᏅᏒ ᎠᏂ; ᎠᏆᏛᎦᏅᏰᏃ ᎯᎠ ᎾᏂᏪᏍᎬᎢ; ᏙᏓᏂ ᏫᏗᎶᎯ. ᏦᏩᏃ ᏚᏍᏓᏩᏛᏎ ᎠᎾᎵᏅᏟ; ᏙᏓᏂᏃ ᏫᏚᏩᏛᎮᎢ.\nᎨᏃ ᎢᏴᏛ ᏫᎬᏩᎪᎲ ᎾᎥ, ᎠᏏᏉ ᏂᎦᎷᎬᏫ ᎨᏎᎢ, ᎬᏩᎯᏍᏗᏱ ᎤᎾᏓᏅᏖᎴᎢ.\nᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᎯᎠ ᎾᏍᎩ ᎠᏍᎩᏓᏒᎥᏍᎩ ᏓᏯᎢ.\nᎧ ᎿᏉ ᎡᏘᎷᎦ, ᎠᎴ ᎢᎸᎯᏢ ᎠᏔᎴᏒ ᏪᏓᏓᎡᏒᎭ, ᎯᎠᏃ ᏂᏗᏪᏒᎭ, ᎪᎱᏍᏗ ᎤᏍᏗ ᎤᏍᎦᏎᏗ ᎡᎿᎢ ᎤᏪᏯᎥ; ᏓᏓᏙᎴᎰᏏᏃ ᏅᏗᎦᎵᏍᏔᏂᏒ ᎤᏍᎩᏓᏒᏅᎢ.\nᎷᏈᏂᏃ ᎤᏛᎦᏁᎢ, ᎤᏭᏓᎴᏎᏃ ᏚᏯᏅᎡᎴᎢ; ᎯᎠᏃ ᏄᏪᏎᎢ; ᏞᏍᏗ ᎡᏗᎸᎩ.\nᎷᏈᏂᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏞᏍᏗ ᎩᎬ ᎢᏣᏤᏮᎩ, ᎡᏥᏯᎥᎦᏉᏍᎩᏂ ᎯᎠ ᎢᎾᎨ ᏣᏔᎴᏒ, ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᎡᏨᏁᎸᎩ; ᎾᏍᎩ ᏧᏭᏓᎳᎡᏗᏱ ᎤᏰᎸᏎᎢ, ᎤᏙᏓ ᏔᎵᏁ ᏮᎤᏪᎧᏁᏗᏱ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᏦᏩ ᏫᏚᎷᏤᎸ ᎠᎾᎵᏅᏟ, ᎤᏂᏄᏪᏎ ᎤᏅᏬ, ᎾᏍᎩ ᎤᏅᏣᏛ ᎠᏄᏬ ᎤᏄᏩᎥᎢ,\nᎬᏩᏂᏴᎮᏃ ᎠᎴ ᎠᏔᎴᏒ ᎬᏩᏯᏁᎢ. ᎾᏍᎩᏃ ᎠᏔᎴᏒ ᎤᏏᏩ ᎨᏎᎢ, ᎠᎹ ᏂᎦᏁᎲᎾ ᎨᏎᎢ.\nᎤᎾᏅᏁᏃ ᏗᎾᎵᏍᏓᏴᏂᏎᎢ, ᏗᏂᎦᏙᎵᏃ ᏚᏂᏌᎳᏓᏁᎢ, ᎠᎴ ᏫᏚᎾᎧᎿᏁᎢ, ᎬᏂᏳᏉᏃ ᏑᎾᏓᏡᎩ ᎠᏂᎢᏏᎺᎵ ᏗᎾᎢᏎ ᎩᎵᏯᏗ ᏅᏓᏳᏂᎶᏒᎯ; ᎨᎻᎵ ᏓᎾᏘᏁᎮᎢ ᏚᏂᏐᏈᎴ ᏗᎦᏩᏒᎩ, ᎠᎴ ᏅᏬᏘ ᎠᏜ, ᎠᎴ ᎦᏩᏒᎩ ᎠᏜ, ᎢᏥᏈᏱ ᏓᏂᏱᏎᎢ.\nᏧᏓᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ; ᎦᏙ ᏱᎩᏁᏉᏥ ᎢᏳᏃ ᏰᏗᎸ ᎢᎩᏅᏟ, ᎤᎩᎬᏃ ᏱᎦᏕᎵᏍᏔᏅ?\nᎧ ᎡᏗᎾᏚᎦ ᎠᏂᎢᏏᎺᎵ ᎨᏗᎧᏏ, ᎠᎴ ᏞᏍᏗ ᎪᎱᏍᏗ ᎡᏛᏁᎸᎩ; ᎢᎩᏅᏟᏰᏃ ᎠᎴ ᎢᎩᏇᏓᎸᎢ. ᎠᎾᎵᏅᏟᏃ ᎬᏩᏛᏓᏍᏓᏁᎴᎢ.\nᎤᏂᎶᏎᏃ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᎠᏂᎻᏗᏯᏂ ᎠᏂᏃᏔᏂᏙᎯ; ᏦᏩᏃ ᏫᎬᏩᏎᏒᎮ ᎬᏩᏯᎢᏎ ᎠᏔᎴᏒᎢ, ᎠᎴ ᎬᏩᎾᏗᏅᏎ ᏦᏩ ᎠᏂᎢᏏᎺᎵ ᏚᏂᎧᏁᎴᎢ, ᏔᎳᏍᎪᎯ ᎠᏰᎵ ᎠᏕᎸ ᎤᏂᏁᎬ ᏚᏂᎬᏩᎶᏔᏁᎢ. ᏦᏩᏃ ᎢᏥᏈᏱ ᏫᎬᏩᏘᏅᏍᏔᏁᎢ.\nᎷᏈᏂᏃ ᏗᏔᎴᏒ ᏫᎤᏨᏎᎢ, ᎬᏂᏳᏉᏃ ᏦᏩ ᎥᏝ ᏱᏯᎡ ᎠᏔᎴᏒᎢ. ᏧᏄᏬᏃ ᏚᏪᏣᎦᎸᎮᎢ.\nᎢᎤᏨᏎᏃ ᎠᎾᎵᏅᎶ ᏫᏚᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏫᏄᏣ ᎥᏝ ᏰᎭ; ᎠᏴᏃ, ᎭᏢ ᏮᏓᏥᎶᏏ ᎠᏴ?\nᏦᏩᏃ ᎤᏄᏬᎥᎯ ᎤᏂᏁᏎᎢ, ᎠᎴ ᎤᏂᎴ ᎠᏫ ᎠᎭᏄᎸᎯ ᎠᏨᏯ, ᎠᎴ ᎤᎩᎬᎯ ᎤᏅᏁ ᎠᏄᏬ.\nᎤᎾᏓᏅᏎᏃ ᎠᎴ ᏭᏂᏃᎮᎴ ᎤᏂᏙᏓ ᎾᏍᎩ ᎠᏄᏬ ᎤᏅᎶᏛ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎣᏥᎾᏩᏛ; ᎯᎪᎵᏯ, ᎭᏙᎴᎰᎯ ᏥᎪ ᎯᎠ ᎾᏍᎩ ᏤᏥ ᎤᏄᏬᎥᎯ, ᏝᎨ.\nᎤᏬᎵᏤᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ; ᎯᎠ ᎾᏍᎩ ᎠᏇᏥ ᎤᏄᏬᎥᎯ; ᎤᏍᎦᏎᏗ ᎡᎿᎢ ᎤᏪᏯᎥ; ᏄᏜᏏᏛᏒᎾ ᎠᏥᏓᎦᎸᎥᏒ ᏦᏩ.\nᏤᎦᏈᏃ ᏚᏪᏣᎦᎸᎮ ᏄᏄᏬ, ᎠᎴ ᎤᏍᏕᎾ ᎠᏄᏬ ᎤᏓᏠᏍᏔᏁᎢ, ᎠᎴ ᎤᏣᏘ ᏄᏬᏓᏇ ᎤᏍᎪᏂᎴ ᎤᏪᏥ.\nᏂᎦᏛᏃ ᏄᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᏚᎾᎴᏁ ᎬᏩᏄᏬᎯᏍᏙᏗᏱ; ᎠᏎᏃ ᎤᏉᏌᏁ ᎤᏄᏬᎯᏍᏗᏱ; ᎯᎠᏃ ᏄᏪᏎᎢ; ᏗᎦᎦᏠᏱᎯᏰᏃ ᏓᎦᏠᎣᏏ ᏧᏂᏲᎱᏒᎯ ᏄᎾᏛᏅ ᏮᏓᏥᏴᎵ ᏮᏓᏥᎷᏤᎵ ᎠᏇᏥ. ᎤᏙᏓᏃ ᎤᏍᎪᏂᎴᎢ.\nᎠᏂᎻᏗᏯᏂᏃ ᎢᏥᏈᏱ ᎬᏩᏘᏅᏎ ᏫᎬᏪᎧᏁᎴ ᏉᏗᏆ, ᎤᎬᏫᏳᏌᏕᎩ ᏇᎵᏲ ᎤᏤᎵᎦ, ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ.\nᎠᏯᏙᎸᎢ 38\nᎾᎯᏳᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ; ᎾᏍᎩ ᏧᏓ ᏚᏓᏅᎡᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᏓᎳᎻ ᎤᏕᏅᎯ ᏭᎷᏤᎴᎢ, ᎾᏍᎩ ᎭᎳ ᏚᏙᎡᎢ.\nᎾᎿᏃ ᏧᏓ ᎤᎪᎮ ᎩᎶ ᎢᏳᏍᏗ ᎠᏍᎦᏯ ᎠᎨᎾᏂ ᎤᏪᏥ ᎠᎨᏴ ᏑᎠ ᏧᏙᎢᏛ, ᎠᎴ ᎤᏯᏅᎮᎢ, ᎠᎴ ᎤᏓᏴᏎᎢ.\nᎤᏁᎵᏤᏃ ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎠᏧᏣ, ᎠᎴ ᎥᎵ ᏚᏬᎡᎢ.\nᏔᎵᏁᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎤᎾᏄᎪᏫᏎ ᎠᏧᏣ, ᎠᎴ ᎣᎾᏂ ᏚᏬᎡᎢ.\nᎠᏏᏃ ᏔᎵᏁ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᏧᏣ ᎤᎾᏄᎪᏫᏎᎢ, ᎠᎴ ᏏᎳ ᏚᏬᎡᎢ. ᎩᏏᏈᏃ ᏪᏙᎮ ᎾᎯᏳ ᎤᎾᏄᎪᏫᏒ.\nᏧᏓᏃ ᎤᏩᏛᎡᎴ ᎥᎵ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎤᏓᎵᎢ; ᎾᏍᎩ ᏖᎹ ᏚᏙᎡᎢ.\nᎥᎵᏃ, ᏧᏓ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎠᏍᎦᎾᎯᏳ ᎨᏎ ᏱᎰᏩ ᏓᎧᏅᎢ; ᏱᎰᏩᏃ ᎤᎴᎢ.\nᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᎣᎾᏂ; ᎡᏣᏂᎵ ᎤᏓᏴᏛ ᏫᎷᏥᏏ, ᎠᎴ ᎠᎾᏛᎯ ᎢᏳᏛᏁᏗ ᎨᏒ ᏂᏯᏛᏂᏏ, ᎠᎴ ᎡᏣᏂᎵ ᏧᏪᏥ ᏕᎯᏯᏛᎯᏍᏓᎸᎭ.\nᎣᎾᏂᏃ ᎠᎦᏔᎮ ᎠᏲᎵ ᎤᏤᎵ ᎠᏥᏰᎸᎾᏁᏗ ᏂᎨᏒᎾ ᎨᏒᎢ; ᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᏚᎾᏂᏏᏅ ᎤᏂᎵ ᎤᏓᏴᏛ, ᎤᏤᏪ ᎦᏙᎯ, ᏄᏚᎵᏍᎬᎾ ᎨᏒ ᎢᏳᏍᏗ ᎤᏂᎵ ᎤᏪᏥ ᎤᏕᏁᏗᏱ.\nᎾᏍᎩᏃ ᏄᏛᏁᎸ ᎤᏲᎢᏳ ᎨᏎ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩᏃ ᎾᏍᏉ ᎤᎴᎢ.\nᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᏖᎹ ᎤᏦᎯ; ᏦᏑᎶᏨᎯᏉ ᏣᏙᏓ ᎦᏁᎸ ᏦᎴᏍᏗ, ᎬᏂ ᏏᎳ ᎠᏇᏥ ᎤᏛᎾ ᎨᏎᏍᏗ; (ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᎾᏍᎩᏰᏃ ᎾᏍᏉ ᏯᏲᎱᎯ, ᎾᏍᎩ ᏧᏂᎵ ᏄᎾᎵᏍᏔᏅᎢ.) ᏖᎹᏃ ᎤᏪᏅᏎᎢ, ᎠᎴ ᎤᏙᏓ ᎦᏁᎸ ᏪᎮᎢ.\nᎢᎸᎯᏳᏃ ᎢᏴᏛ ᏑᎠ ᎤᏪᏥ ᏧᏓ ᎤᏓᎵᎢ ᎤᏲᎱᏎᎢ, ᏧᏓᏃ ᎤᏄᏬᎯᏎᎢ, ᎠᎴ ᏗᎻᎾᏗ ᎤᏪᏅᏎ ᎠᏫ ᏗᎬᏩᏍᏙᏰᎯ ᏗᏁᎲᎢ, ᎤᏩᏒ ᎠᎴ ᎤᎾᎵᎢ ᎭᎳ ᎠᏓᎳᎻ ᎤᏕᏅᎯ.\nᏖᎹᏃ ᎠᏥᏃᏁᎴᎢ ᎯᎠ ᎾᏥᏪᏎᎴᎢ; ᎬᏂᏳᏉ ᎯᏦᎢᏯ ᏗᎻᎾᏗ ᎠᎢ ᎠᏫ ᏧᏤᎵ ᏓᏍᏙᏰᎯ.\nᎤᏬᏑᎶᏨᎯᏃ ᎤᏄᏬᏍᏗ ᎤᏄᏪᏎᎢ, ᎠᎴ ᎤᎵᎬᏚᎳᏁᎢ, ᎠᎴ ᎤᏚᏢᏁᎢ, ᎠᎴ ᎤᏜᏅᏛ ᎤᏪᏁᎢ, ᏗᎻᎾᏗ ᏫᎦᏅᏅᎢ; ᎤᏙᎴᎰᏎᏰᏃ ᏏᎳ ᎤᏛᎾ ᎨᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏂᏓᎾᏤᎬᎾ ᎨᏒᎢ.\nᏧᏓᏃ ᎤᎪᎲ ᎤᏁᎫᏥᏛ ᎠᎨᏴ ᎤᏪᎵᏎᎴᎢ, ᏂᎦᎵᏍᏙᏗᏍᎨ ᎤᎵᎬᏚᎸᎢ.\nᎾᏍᎩᏃᏭᎷᏤᎴ ᏅᏃᎱᎶᏗ, ᎯᎠᏃ ᏄᏪᏎᎢ, Ꭷ, ᏗᎾᏂᏏᎲᎦ; (ᎥᏝᏰᏃ ᏱᎦᎳᎮ ᎾᏍᎩ ᎤᏦᎯ ᎨᏒᎢ.) ᎯᎠᏃ ᏄᏪᏎᎢ, ᏚᏙᏃ ᏓᏍᎩᏁᎵ ᎾᏍᎩ ᏗᎩᎾᏂᏏᏗᏱ?\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᏗᎦᏓᏅᏒᎭ ᎠᏫ ᏗᏁᏙᎲ ᏩᏯᏅᏛ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᎦᏘᏗᏍᏙᏗᏍᎪᏃ ᏓᏍᎩᏁᎵ ᏔᏓᏅᏒᎭ ᎢᎪᎯᏛ?\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎤᏍᏗ ᎠᎦᏘᏗᏍᏙᏗ ᏓᎬᏁᎵ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎵᏰᏑᏍᏚᏬ ᎠᏏᎥᏍᏙᏗ, ᎠᎴ ᎪᎸᏌᏛᏗ ᎬᏩᏠᏯᏍᏗ, ᎠᎴ ᏣᏙᎳᏅᏍᏗ ᏥᏁᎭ. ᎾᏍᎩᏃ ᏚᏁᎴᎢ, ᎠᎴ ᏚᎾᏂᏏᏁᎢ, ᎠᎴ ᎤᏁᎵᏍᏔᏁᎢ.\nᏚᎴᏁᏃ, ᎠᎴ ᎤᏪᏅᏎᎢ, ᎠᎴ ᎤᎵᎬᏚᎴᏎᎢ, ᎠᎴ ᏧᏃᏑᎶᏨᎯ ᏧᎾᏄᏬᏍᏗ ᏫᏚᏄᏬᎡᎢ.\nᏧᏓᏃ ᎤᏓᏅᏎ ᏭᏪᎧᏁᎴ ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᎤᎨᏅᏕ ᎤᎾᎵᎢ ᎠᏓᎳᎻ ᎡᎯ, ᎠᎴ ᎥᎤᎩᏍᏗᏱ ᎤᎦᏘᏗᏍᏓᏁᎸᎯ ᎠᎨᏴ; ᎠᏎᏃ ᎥᏝ ᏳᏩᏛᎮᎢ.\nᎿᏉᏃ ᏚᏛᏛᏁ ᎾᎿ ᎠᏁᎯ, ᎯᎠ ᏄᏪᏎᎢ, ᎭᏢ ᎤᏁᎫᏥᏛ ᎠᎨᏴ, ᎬᏂᎨᏒ ᏅᏃᎱᎶᏗ ᏧᏬᎸᎩ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎥᏝ ᎤᏁᎫᏥᏛ ᎠᎨᏴ ᎠᏂ ᏰᏙᎮᎢ.\nᏧᏓᏃ ᏫᎤᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏎᎢ, ᏥᏯᏠᎩᏉ, ᎠᎴᏃ ᎾᏍᏉ ᎾᎿ ᎠᏁᎯ ᎠᏂᏍᎦᏯ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎥᏝ ᎠᏂ ᏰᏙᎮ ᎤᏁᎫᏥᏛ ᎠᎨᏴ.\nᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏩᎾᎡᏍᏗᏉ, ᏰᎩᎾᏕ ᎣᎯᏍᏓᏰᏃ; ᎬᏂᏳᏉ ᎯᎠ ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᎬᏯᎨᏅᏛᎩ, ᏮᎯᏯᏠᎩᏉᏃ.\nᏦᎢᎭᏃ ᎢᏯᏅᏙ ᎣᏂ, ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏧᏓ ᎠᏥᏃᏁᎴ ᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᏖᎹ ᏣᏦᎯ ᎤᏓᏁᎬᏍᏔᏅ, ᎠᎴ ᎾᏍᏉ ᎬᏂᏳᏉ ᎤᏁᎵᏨ ᏚᏂᏏᏂᏙᎸᎢ; ᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏣᏘᏃᎦ ᎠᎴ ᏩᎦᎪᎲᏍᏓ.\nᎠᎦᏘᏃᎸᏃ ᎤᏓᏅᏎ ᎤᏛᎪᏗ ᎤᏦᎯᏛᎯ, ᎯᎠ ᏂᎦᏪᏍᎨᎢ, ᎠᏍᎦᏯ ᎾᏍᎩ ᎯᎠ ᏧᏤᎵᎦ ᎠᎩᏁᎵᏍᏔᏅ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎭᏙᎴᎰᎯ, ᎦᎪ ᏧᏤᎵᎦ ᎯᎠ, ᎠᎵᏰᏑᏍᏚᏬ ᎠᏐᎥᏍᏙᏗ, ᎠᎴ ᎪᎸᏌᏛᏗ, ᎠᎴ ᎠᏙᎳᏅᏍᏗ.\nᏧᏓᏃ ᏧᏤᎵᎦ ᎨᏒ ᎤᏃᏁᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏟ ᏚᏳᎪᏛ ᏄᏛᏁᎸ ᎡᏍᎦᏉ ᎠᏴ; ᏂᎦᎵᏍᏙᏗᎭ ᎠᏇᏥ ᏏᎳ ᏂᏥᏯᎧᏁᎸᎾ ᎨᏒᎢ. ᎥᏝ ᎠᎴ ᎢᎸᎯᏳ ᏔᎵᏁ ᏳᎦᏙᎥᏎᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎿᏉ ᎤᏍᏆᎸᎲ ᎠᏲᎵ ᎤᎾᏄᎪᏫᏍᏗᏱ, ᎬᏂᏳᏉ ᏗᏂᎳᏫ ᏕᎦᏁᎵᏎᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ ᎿᏉ ᏓᏓᎾᏄᎪᏫᏍᎨᎢ, ᎾᏍᎩ ᎠᏏᏴᏫ ᏧᏙᏯᏅᎯᏕᎢ; ᎠᎵᏍᏕᎵᏍᎩᏃ ᎩᎦᎨ ᎠᏍᏘ ᎤᎸᏍᏓᏁᎴ ᎤᏬᏰᏂ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎢᎬᏱ ᎤᎾᏄᎪᏨᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᎤᏎᏒᎲ ᎤᏬᏰᏂ, ᎬᏂᏳᏉ ᏗᎾᏓᏅᏟ ᏧᎾᏄᎪᏤᎢ; ᎠᎵᏍᏕᎵᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᎦᎵᏍᏙᏓ ᎥᎯᎳᏅᏓᏓ ᏛᎯᏄᎪᎢ? ᎾᏍᎩ ᎯᎠ ᎦᎳᏅᏓᏛᎢ ᏂᎯ ᎡᏣᎳᏫᏎᎮᏍᏗ; ᎾᏍᎩ ᎢᏳᏍᏗ ᏇᎵᏏ ᏓᎪᎡᎢ.\nᎣᏂᏃ ᏗᎾᏓᏅᏟ ᏧᏄᎪᏤᎢ, ᎾᏍᎩ ᎩᎦᎨ ᎠᏍᏘ ᎤᎸᏍᏗ ᎤᏬᏰᏂ; ᏎᎳᏃ ᏓᎪᎡᎢ.\nᎠᏯᏙᎸᎢ 39\nᏦᏩᏃ ᎢᏥᏈᏱ ᏩᎦᏘᏃᎴᎢ; ᏉᏗᏆᏃ ᎤᎬᏫᏳᏌᏕᎩ ᏇᎵᏲ ᎤᏤᎵᎦ, ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ, ᎢᏥᏈᏱ ᎡᎯ, ᎾᏍᎩ ᏚᏩᏎᎴ ᎠᏂᎢᏏᎺᎵ, ᎾᏍᎩ ᎾᎿ ᏫᎬᏩᏘᏃᎸᎯ.\nᏱᎰᏩᏃ ᏚᎧᎿᏩᏗᏙᎮ ᏦᏩ, ᎣᏍᏛᏃ ᎢᏳᎵᏍᏓᏁᎯ ᎨᏎᎢ; ᎤᎾᏝᎢᏃ ᎦᏁᎸ ᎢᏥᏈᏱ ᎡᎯ ᎡᎯᎢ.\nᎤᎾᏝᎢᏃ ᎤᏙᎴᎰᏎ ᏱᎰᏩ ᏚᎧᎿᏩᏗᏙᎲᎢ, ᎠᎴ ᏱᎰᏩ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗᏱ ᏄᏩᏁᎲ ᏂᎦᏛ ᏚᎸᏫᏍᏓᏁᎲᎢ.\nᏦᏩᏃ ᎣᏍᏛ ᎤᏰᎸᏗᏱ ᎤᏩᏛᎮᎢ, ᎠᎴ ᎪᎱᏍᏗ ᎠᏛᏁᎮᎢ; ᎠᎴ ᏗᎧᎿᏩᏗᏙᎯ ᏄᏩᏁᎴ ᎦᏁᎸᎢ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥ ᏚᏲᏎᎴᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᎧᎿᏩᏗᏙᎯ ᏄᏩᏁᎸ ᎦᏁᎸᎢ ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥᎢ ᏅᏓᎬᏩᏓᎴᏅᏛ, ᎾᏍᎩ ᏱᎰᏩ ᎣᏍᏛ ᏄᏛᏁᎴ ᎦᏁᎸ ᎢᏥᏈᏱ ᎡᎯ, ᏦᏩ ᎢᏳᏩᏂᏌᏛ; ᎠᎴ ᏱᎰᏩ ᎤᏓᏍᏕᎸᏗ ᎨᏒ ᏔᎵ ᎤᏛᏗᏕᎨ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎿᎥ ᎦᎵᏦᏕ ᎠᎴ ᏠᎨᏏ.\nᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎿᎥ ᏦᏩ ᎤᎦᏘᏗᏍᏔᏁᎢ; ᎠᎴ ᎥᏝ ᏯᎦᏔᎮ ᎢᏳᏍᏗ ᎤᎲᎢ, ᎠᎵᏍᏓᏴᏗ ᎠᎩᏍᎬ ᎤᏩᏒ. ᎠᎴ ᏦᏩ ᎤᏬᏚᎯᏳ ᎨᏎᎢ, ᎠᎴ ᎣᏏᏳ ᎨᏎ ᏣᎦᎦᏅᏗᏱ.\nᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᎵᏍᏔᏂᏙᎸ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᎾᏝᎢ ᎤᏓᎵᎢ ᏚᎧᏂᏍᎨ ᏦᏩ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏍᏆᏂᏏᎲᏏ.\nᎠᏎᏃ ᏦᏩ ᏚᏢᏫᏎᎴᏉ, ᎠᎴ ᎯᎠ ᏄᎡᏎᎴ ᎤᎾᏝᎢ ᎤᏓᎵᎢ; ᎬᏂᏳᏉ, ᎠᎩᎾᏝᎢ ᎥᏝ ᏱᎦᏔᎭ ᎢᏳᏍᏗ ᎠᎩᎦᏘᏗᏍᏛ ᎦᏁᎸᎢ, ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎤᎿᎥ ᏓᎩᏲᎯᏎᎸ.\nᎥᏝ ᎠᎴ ᎩᎶ ᎤᏟ ᏱᎾᏥᎸᏉᏗ ᎠᏂ ᎠᏓᏁᎸ ᎠᏴ ᏅᎩᎸᏉᏛᎢ; ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᏂᏓᎩᏲᎯᏎᎸᎾ ᏱᎩ, ᏂᎯ ᏨᏒ, ᎾᏍᎩ ᏂᎯ ᎤᏓᎵᎢ ᎨᏒ ᎢᏳᏍᏗ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᎾᏍᎩ ᏱᏁᏋ ᎤᏲ ᏱᏓᎩᎸᏫᏍᏓᏏ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏱᏥᏍᎦᏅᏥᏏ?\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎯᎠ ᏂᎦᏪᏎᎲ ᏦᏩ ᏗᎬᏩᎩᏨᏗ, ᎥᏝ ᏱᏛᏓᏍᏓᏁᎮ ᎤᏂᏏᏁᏗᏱ, ᎠᎴ ᎢᏧᎳᎭ ᎤᏁᏓᏍᏗᏱ.\nᎾᎯᏳᏉᏃ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎦᎵᏦᏕ ᏭᏴᎴ ᏧᎸᏫᏍᏓᏁᏗᏱ ᎤᎲ ᏧᎸᏫᏍᏓᏁᏗ; ᎥᏝ ᎠᎴ ᎩᎶ ᎠᏂᏍᎦᏯ ᎾᎿ ᎠᏁᎯ ᏯᏯᎡ ᎦᎵᏦᏕ.\nᎠᎴ ᎤᏂᏴᎮ ᎤᏄᏩᎥᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏍᏆᏂᏏᎲᏏ; ᎤᏄᏬᏃ ᎬᏩᏒᎦᎵ [ᎠᎨᏴ] ᎤᎵᏘᏎ [ᏦᏩ] ᎠᎴ ᎤᏄᎪᏤᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ [ᎠᎨᏴ] ᎿᏉ ᎤᏙᎴᎰᏒ ᎤᏂᏴ ᎤᏄᏬ ᎤᏒᎦᎸᎢ, ᎠᎴ ᏙᏱ ᏮᏗᏢᏍᏔᏅᎢ,\nᎾᏍᎩ ᏫᏚᏯᏅᎮ ᎠᏂᏍᎦᏯ ᎦᏁᎸ ᎠᏁᎯ, ᎠᎴ ᏚᏃᏁᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎬᏂᏳᏉ, ᎠᏈᎷ ᎢᎦᏘᏃᎮᎸ ᎢᎩᏐᏢᎢᏍᏙᏗᏱ; ᎾᏍᎩ ᎠᎩᎷᏤᎸᎩ ᎠᏆᏂᏏᏁᏗᏱ ᎤᏰᎸᏒᎩ, ᎠᏍᏓᏯᏃ ᎠᏇᎷᏅᎩ;\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎿᏉ ᎤᏛᎦᏅᎠᏍᏓᏯ ᎠᏇᎷᏅᎢ, ᎾᏍᎩ ᎠᎩᏂᏰᎸ ᎤᏄᏬ, ᎠᎴ ᎤᎵᏘᏒᎩ, ᎠᎴ ᎤᏄᎪᏨᎩ.\nᎤᏄᏬᏃ ᎤᏍᏆᏂᎪᏔᏁᎢ ᎬᏂ ᎤᎾᏝᎢ ᎢᎤᎷᏨ.\nᎤᏠᏱᏉᏃ ᎾᏍᎩ ᎤᏃᏁᎴᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎠᏈᎷ ᎠᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᏥᏍᎩᏯᏘᏃᎮᎸᎩ, ᎠᎩᎷᏤᎸᎩ ᎠᎩᏐᏢᎢᏍᏙᏗᏱ ᎤᏰᎸᏒᎩ.\nᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎠᏍᏓᏯ ᎠᏇᎷᏅ, ᎤᏄᏬ ᎠᎩᏂᏰᎸᎩ, ᎠᎴ ᏙᏱ ᏭᏗᏢᏍᏔᏅᎩ.\nᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎤᎾᏝᎢ ᎤᏛᎦᏅ ᎤᏓᎵᎢ ᏂᎦᏪᏍᎬᎢ, ᎾᏍᎩ ᎤᏃᏁᎲ ᎯᎠ ᏂᎦᏪᏎᎬᎢ, ᎯᎠ ᎾᏍᎩ ᎾᏋᎦ ᎯᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎤᏔᎳᏬᏎᎢ.\nᏦᏩᏃ ᎤᎾᏝᎢ ᎤᏂᏴᎮᎢ, ᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎤᏴᏔᏁᎢ, ᎾᎿ ᎤᎬᏫᏳᎯ ᏧᏤᎵᎦ ᎠᏂᏴᎩ ᏕᎨᎦᎸᎥᎢ; ᎾᎿᏃ ᏗᏓᏍᏚᏗᏱ ᎠᏯᎡᎢ.\nᎠᏎᏃ ᏱᎰᏩ ᏚᎧᎿᏩᏗᏙᎮ ᏦᏩ, ᎠᎴ ᎤᏪᏙᎵᎨᎢ, ᎠᎴ ᎣᏍᏛ ᎤᏰᎸᏗᏱ ᏄᏩᏁᎴ ᏗᏓᏍᏚᏗᏱ ᎠᎦᏘᏯ.\nᎠᎴ ᏗᏓᏍᏚᏗᏱ ᎠᎦᏘᏯ ᏦᏩ ᏚᎦᏘᏗᏍᏔᏁ ᏂᎦᏛ ᎠᏂᏴᎩ ᏗᏓᏍᏚᏗᏱ ᎠᏂᏯᎢ; ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᎿ ᎠᎾᏛᏁᎲ ᎾᏍᎩ ᎢᏳᏛᏁᎸᎯ ᎨᏎᎢ.\nᏗᏓᏍᏚᏗᏱᏃ ᎠᎦᏘᏯ ᎥᏝ ᎪᎱᏍᏗ ᏯᎦᏌᏯᏍᏗᏍᎨ ᎾᏍᎩ ᎤᎦᏘᏗᏍᏛᎢ: ᏂᎦᎵᏍᏙᏗᏍᎨ ᏱᎰᏩ ᏚᎧᎿᏩᏗᏙᎲᎢ; ᎠᎴ ᏚᎸᏫᏍᏓᏁᎲ ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗᏱ ᏄᏩᏁᎲ ᏱᎰᏩ.\nᎠᏯᏙᎸᎢ 40\nᎯᎠᏃ ᏄᎵᏍᏔᏂᎣᎸ ᎣᏂ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᎠᏗᏔᏍᏗ ᎤᎦᏘᏕᎯ, ᎠᎴ ᏧᏪᏚᏁᎯ ᎤᏂᏍᎦᏅᏤᎴ ᎤᏂᏅᏏᏙᎯ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ.\nᏇᎵᏲᏃ ᏚᎿᎸᏤᎴ ᎠᏂᏔᎵ ᎠᏂᏍᎦᏰᎬᏍᏓ ᏧᏤᎵᎦ, ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᏂᎦᏘᏯ ᎨᏒᎢ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᏂᏚᎲᏍᎩ ᎨᏒᎢ.\nᎠᎴ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ ᎦᏁᎸ ᏫᏚᏴᏔᏁᎢ, ᎾᎿ ᏗᏓᏍᏚᏗᏱ, ᏦᏩ ᎾᎿ ᎤᏥᏴᏛᎢ.\nᎠᎴ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏄᎬᏫᏳᏒ ᏚᎨᏅᏕ ᏦᏩ ᎠᏂᏴᎩ, ᎠᎴ ᎾᏍᎩ ᏓᎦᏘᏰᎢ; ᎠᎴ ᎢᎸᏍᎩ ᏄᏬᎯᏤ ᏕᎨᏥᏍᏚᎮᎢ.\nᎠᎴ ᎢᏧᎳ ᏚᎾᏍᎩᏓᏎᎢ, ᎢᏧᎳ ᏌᏉ ᏒᏃᏱ ᏚᎾᏍᎩᏓᏎᎢ, ᎢᏧᎳ ᏧᏓᎴᎾᎢ ᏕᎦᏛᎬ ᏚᎾᏍᎩᏓᏎᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᎠᏗᏔᏍᏗ ᎤᎦᏘᏕᎯ, ᎠᎴ ᏧᏪᏚᏁᎯ, ᎾᏍᎩ ᏗᏓᏍᏚᏗᏱ ᏥᏕᎨᏥᏴᏕᎢ.\nᏦᏩᏃ ᏑᎾᎴ ᏭᏴᎵᎴ ᎠᏂᏯᎥᎢ, ᎠᎴ ᏚᎧᎿᏁ ᎾᏍᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏲ ᎤᎾᏓᏅᏖᎢ.\nᏚᏛᏛᏁᏃ ᏇᎵᏲ ᏧᏤᎵ ᎤᏂᎬᏫᏳᏌᏕᎩ, ᎾᏍᎩ ᎢᏧᎳᎭ ᏣᏂᏯᎡ ᏗᏓᏍᏚᏗᏱ ᎤᎾᏝᎢ ᎦᏁᎸᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᎤᏲᏉ ᎢᏍᏓᏓᏅᏔ ᏤᏍᏓᎦᏃᏗᏱ ᎪᎯ ᎢᎦ?\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎣᏍᏓᏍᎩᏘ, ᎥᏝ ᎠᎴ ᎪᎶ ᎦᏛᎬ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᏰᏙᎭ. ᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᎤᏁᎳᏅᎯ ᏳᎭ ᎦᏛᎬ ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ? ᏍᎩᏂᏃᎲᏏ [ᏄᏍᏛ ᎢᏍᏓᏍᎩᏓᏒᎢ.]\nᏄᎬᏫᏳᏒᏃ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᎤᏍᎩᏓᏒ ᎤᏃᏁᎴ ᏦᏩ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏍᎩᏓᏍᎬ ᎬᏂᏳᏉ, ᎤᏖᎸᎳᏛ ᎢᎬᏱᏗᏢ ᎾᏆᎵᏍᏓᏁᎸᎩ;\nᎤᏖᎸᎳᏛᏃ ᏦᎢ ᏚᏩᏂᎦᎸᎩ; ᎠᎴ ᏣᏥᎸᎲᏍᎪ ᎾᏍᎩᏯ ᎥᎨᏒᎩ, ᎠᎴ ᎠᏥᎸᏍᎬᎩ; ᎠᎴ ᏖᎸᎳᏗ ᎤᏅᎾᏏᏛ ᎤᎾᏓᏛᏅᎩ;\nᎠᎴ ᏇᎵᏲ ᎤᏤᎵ ᎤᎵᏍᏈᏗ ᎥᏥᏰᎲᎩ; ᏖᎸᎳᏗᏃ ᏓᏆᏕᏒᎩ, ᎠᎴ ᏓᎩᏨᏩᏍᏔᏅᎩ, ᏇᎵᏲ ᎤᏤᎵ ᎤᎵᏍᏈᏗ ᎠᎩᏟᏍᏔᏅᎩ; ᎠᎴ ᏇᎵᏲ ᎥᏥᏯᏒᎦᎶᏔᏅᎩ ᎤᎵᏍᏈᏗ.\nᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎦᏛᎬᎢ; ᏦᎢ ᎾᏍᎩ ᏥᏚᏩᏂᎦᎴ ᏦᎢ ᏧᏒᎯᏛ ᎦᏛᎦ.\nᏦᎢ ᎢᏳᏒᎯ ᏇᎵᏲ ᏛᏣᏌᎳᏓᏁᎵ ᎯᏍᎪᎵ; ᎠᎴ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏔᎵᏁ ᏛᏣᏁᎵ. ᎠᎴ ᏇᎵᏲ ᎤᏤᎵ ᎤᎵᏍᏈᏗ ᏛᎯᏯᏒᎦᎶᏔᏂ, ᎾᏍᎩᏯ ᏥᎿᏛᏁᎲ ᏧᏩᎫᏔᏅᏒ ᎠᏗᏔᏍᏗ ᎯᎦᏘᏕᎯ ᏥᎨᏒᎩ.\nᎠᏗᎾ ᏍᏆᏅᏓᏛᎭ ᎾᎯᏳ ᎣᏍᏛ ᏂᏣᏛᎿᏕᎨᏍᏗ, ᎠᎴ ᎣᏍᏛ ᏂᏍᏆᏛᏁᎸᎭ, ᎠᎴ ᏇᎵᏲ ᎯᏃᏁᎸᎭ ᎠᏴ ᏍᎩᏁᎢᏍᏔᏅᎭ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎠᏓᏁᎸ ᏍᎩᏄᎪᏫᏒᎭ;\nᎤᏙᎯᏳᎯᏯᏰᏃ ᎥᎩᏃᏍᎩᏒᎩ ᎠᏂᏈᎷ ᎤᎾᏤᎵᎪᎯ ᏫᎬᎩᏯᏅᎲᎩ; ᎠᎴ ᎠᏂ ᎥᏝ ᎪᎱᏍᏗ ᏯᏆᏛᏁᎸ ᎬᎩᏍᏛᏗᏍᏗ ᏗᏓᏍᏚᏗᏱ ᎦᎬᎩᏴᏙᏗ.\nᏄᎬᏫᏳᏒᏃ ᏗᎦᏚᎲᏍᎩ ᎤᏙᎴᎰᏒ ᎦᏛᎬ ᎣᏏᏳ ᎨᏒᎢ, ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎠᏴ ᎾᏍᏉ ᎦᏍᎩᏓᏍᎬᎩ, ᎠᎴ ᎬᏂᏳᏉ ᏦᎢ ᏔᎷᏣ ᎦᏚ ᎤᏂᏁᎬ ᏗᎦᎶᏗ ᏓᏆᏃᏍᏛᎩ;\nᎠᎴ ᏔᎷᏣᎩᎯ ᎦᏚᎢᏗᏢ ᎠᏝᎲ ᎦᎸᎩ ᏄᏓᎴᏒ ᏇᎵᏲ ᎤᎵᏍᏓᏴᏗ ᏗᎦᏚᎲᏍᎩ ᏧᏪᏚᏅᎯ; ᏥᏍᏆᏃ ᎠᏂᎴᏍᎬᎩ ᎠᏂᎩᏍᎬᎩ ᏔᎷᏣᎩᎯ ᎾᏍᎩ ᎠᏆᏃᏍᏛᎢ.\nᏦᏩᏃ ᎤᏁᏤᎢ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᎦᏛᎲᎢ; ᏦᎢ ᏔᎷᏣ ᏦᎢ ᏧᏒᎯᏛ ᎦᏛᎦ;\nᏦᎢᏉ ᎢᏳᏒᎯ ᏇᎵᏲ ᏛᏣᏌᎳᏓᏁᎵ ᎯᏍᎪᎵ ᏓᏣᏍᎫᏕᏏ ᎠᎴ ᏡᎬ ᏓᏣᏛᏂ; ᏥᏍᏆᏃ ᏣᏇᏓᎸ ᏛᏂᎩ.\nᏦᎢᏃ ᏫᏄᏒᎸ ᎯᎠ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᎾᎯᏳ ᎢᎦ ᏇᎵᏲ ᎤᏕᏅᎢ ᎨᏎᎢ, ᎾᏍᎩᏃ ᏂᎦᏛ ᏧᏅᏏᏓᏍᏗ ᎬᏩᎵᏍᏓᏴᎾᏁᏗᏱ ᎤᏛᏅᎢᏍᏔᏁᎢ; ᏚᏌᎳᏓᏁᏃ ᏗᏂᏍᎪᎵ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ, ᎠᎴ ᏄᎬᏫᏳᏒ ᏗᎦᏚᎲᏍᎩ ᏧᏅᏏᏓᏍᏗ ᎠᏂᎦᏔᎲᎢ.\nᏄᎬᏫᏳᏒᏃ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᏔᎵᏁ ᎤᏁᎴᎢ; ᎤᎵᏍᏈᏗᏃ ᏇᎵᏲ ᎠᏒᎦᎶᏗᏍᎨᎢ.\nᏗᎦᏚᎲᏍᎩᏍᎩᏂ ᏄᎬᏫᏳᏒ ᎤᏛᏁᎢ; ᎾᏍᎩᏯ ᏦᏩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸ ᎦᏛᎬᎢ.\nᎠᏎᏃ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᎥᏝ ᏳᏅᏏᏕ ᏦᏩ, ᎤᏩᎨᏫᏎᏉᏍᎩᏂ.\nᎠᏯᏙᎸᎢ 41\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏧᏕᏘᏴᏛ ᎤᎵᏍᏆᏛ, ᎾᏍᎩ ᏇᎵᎰ ᎤᏍᎩᏓᏎᎢ, ᎠᎴ ᎬᏂᏳᏉ ᎡᏉᏄᎶᏗ ᎦᏙᎨᎢ.\nᎠᎴ ᎬᏂᏳᏉ ᎡᏉᏂ ᏧᎾᏚᎩᏎ ᎦᎵᏉᎩ ᎢᏯᏅᏗ ᏩᎦ ᎠᏂᎩᏏ, ᏧᏃᏚᎯ ᏗᎧᏃᏗᏱ, ᎠᎴ ᏗᎾᎵᏦᎯᏛ; ᎠᎴ ᎧᏁᏍᎦ ᎤᏰᎬ ᎠᎾᎵᏍᏓᏴᎲᏍᎨᎢ.\nᎠᎴ ᎬᏂᏳᏉ ᏅᏩᎾᏓᎴ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏩᎦ ᎠᏂᎩᏏ ᎣᏂ ᏧᎾᏚᎩᏎ ᎡᏉᏂ, ᎤᏂᏁᎩᎸᏗ ᏗᎧᏃᏗᏱ, ᎠᎴ ᏧᎾᎴᏐᏛ; ᎠᎴ ᎠᏂᏐᎢ ᏩᎦ ᎠᏂᏙᎾᎥ ᎾᎥ ᎠᏂᏙᎾᎡ ᎡᏉᎸᎶᏗ.\nᎤᏂᏁᎩᎸᏗᏃ ᏗᎧᏃᏗᏱ, ᎠᎴ ᏧᎾᎴᏐᏛ ᏩᎦ ᏚᏂᏯᎣᏁ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏧᏃᏚᎯ ᏗᎧᏃᏗᏱ. ᎠᎴ ᏗᎾᎵᏦᎯᏛ ᏩᎦ. ᏇᎵᏲᏃ ᎤᏰᏤᎢ.\nᎠᎴ ᎤᎸᏁᎢ, ᎠᎴ ᏔᎵᏁ ᎤᏍᎩᏓᏎᎢ; ᎠᎴ ᎬᏂᏳᏉ ᏌᏉ ᎤᏰᎬ ᎤᏣᎴᏍᏗ, ᎦᎵᏉᎩ ᏄᏍᎫᏓᏕᎢ, ᏤᏆ ᎠᎴ ᏦᏍᏛ.\nᎠᎴ ᎬᏂᏳᏉ ᎣᏂ ᎦᎵᏉᎩ ᏧᏍᏗ ᏚᏍᎫᏓᏕᎢ ᏚᎵᏰᏁᎢ, ᏗᎧᎸᎬ ᏗᎦᏃᎸᏗᏍᎬ ᏧᏲᏍᏔᏅᎯ.\nᎦᎵᏉᎩᏃ ᏧᏲ ᏚᏍᎫᏓᏛ ᏚᏒᏁ ᎦᎵᏉᎩ ᏤᏆ ᎠᎴ ᏦᏍᏛ ᏧᎦᏔᏘ ᏚᏍᎫᏓᏛᎢ. ᏇᎵᏲᏃ ᎤᏰᏤᎢ, ᎠᎴ ᎬᏂᏳᏉ, ᎤᏍᎩᏓᏒᎯᏉ ᎨᏎᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᏑᎾᎴᎢ, ᎾᏍᎩ ᏧᏓᏅᏛ ᎤᏪᎵᎯᏍᏗᏍᎨᎢ; ᎤᏓᏅᏎᏃ ᎠᎴ ᏫᏚᏯᏅᎮ ᏂᎦᏛ ᎠᎾᏙᏂᏍᎩ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᎠᏂᎦᏔᎾᎢ ᎾᎿ ᎠᏁᎯ; ᏇᎵᏲᏃ ᏚᏃᎮᎴ ᏄᏍᏛ ᎤᏍᎩᏓᏒᎢ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᏱᎨᏎ ᏇᎵᏲ ᎾᏍᎩ ᎦᏛᎬᎢ.\nᎿᏉ ᎾᏍᎩ ᏄᎬᏫᏳᏒ ᎠᏗᏔᏍᏗ ᎠᎦᏘᏯ ᎤᏁᏤᎴ ᏇᎵᏲ, ᎯᎠ ᏄᏪᏎᎢ, ᎪᎯ ᎢᎦ ᏥᎩ ᎦᏅᏓᏗ ᎠᎩᏍᎦᏅᏨᎢ.\nᏇᎵᏲ ᏚᎾᎸᏤᎸᎩ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᎠᎩᏴᏔᏅᎩ ᏗᏓᏍᏚᏗᏱ ᎾᎿ ᎦᏁᎸ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ, ᎠᏴ, ᎠᎴ ᎾᏍᏉ ᏄᎬᏫᏳᏒ ᏗᎦᏚᎲᏍᎩ.\nᎠᎴ ᎢᏧᎳ ᏌᏉ ᏒᏃᏱ ᏙᎩᎾᏍᎩᏓᏒᎩ, ᏧᏓᎴᎾᎢᎭ ᏕᎦᏛᎬ ᏙᎩᎾᏍᎩᏓᏒᎩ.\nᎾᎿᏃ ᎣᏥᏯᎥᎩ ᎠᏫᏅ, ᎠᏈᎷ, ᎤᏅᏏᏓᏍᏗ ᎬᏩᎦᏘᏯ ᎠᏂᏯᏫᏍᎩ ᏧᏓᏘᎾᎢ, ᎾᏍᎩᏃ ᎣᏍᏗᏃᏁᎸᎩ, ᎠᎴ ᎬᏂᎨᏒ ᏃᎩᏅᏁᎸᎩ ᏄᏍᏛ ᎦᏛᎬ ᏙᎩᎾᏍᎩᏓᏒᎢ; ᎣᏍᏗᏏᏴᏫᎭ ᏄᏍᏛ ᏙᎩᎾᏍᎩᏓᏒ ᎦᏛᎬ ᎡᏂᎨᏒ ᏃᎩᏅᏁᎸᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎬᏂᎨᏒ ᏃᎩᏅᏁᎸ ᎾᏍᎩᏯ ᏄᎵᏍᏔᏅᎩ; ᎠᏴ, ᏔᎵᏁ ᎥᎠᎩᏁᎸᎩ ᏗᎩᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏃ ᎤᏛᏅᎩ.\nᎿᏉᏃ ᏇᎵᏲ ᎤᏓᏅᏎ ᎠᎴ ᏭᏯᏅᎮ ᏦᏩ, ᎠᎴ ᎤᎵᏍᏗᏳ ᏭᏂᏯᎢᏎ ᏗᏓᏍᏚᏗᏱ; ᎤᎵᏍᏙᏰᎮᏃ ᎠᎴ ᏚᏄᏩᎢᏴᏎᎢ, ᎠᎴ ᏇᎵᏲ ᎠᏯᎥ ᏭᏴᎴᎢ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ; ᎠᏆᏍᎩᏓᏒᎩ, ᎥᏝ ᎠᎴ ᎩᎶ ᎬᏂᎨᏒ ᎢᎬᏩᏁᏗ ᏱᎩ ᎦᏛᎬᎢ; ᏂᎯᏃ ᎬᏯᏛᎦᏁᎸ ᎰᎵᎬ ᎠᏍᎩᏓᏒᎯ, ᎠᎴ ᎬᏂᎨᏒ ᎢᎨᏨᏁᏗ ᎨᏒ ᏄᏍᏛ ᎦᏛᎬᎢ.\nᏦᏩᏃ ᎤᏁᏤᎴ ᏇᎵᏲ, ᎯᎠ ᏄᏪᏎᎢ, ᎥᏝ ᎠᏴ ᏯᎩᎭ ᎾᏍᎩ. ᎤᏁᎳᏅᎯᏍᎩᏂ ᏅᏩᏙᎯᏯᏛ ᏓᏳᏬᎯᎵᏴᏍᏓᏁᎵ ᏇᎵᏲ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎦᏍᎩᏓᏍᎬ, ᎬᏂᏳᏉ ᎡᏉᏄᎶᏗ ᏥᏙᎬᎩ.\nᎬᏂᏳᏉᏃ ᎡᏉᏂ ᏓᏳᎾᏚᎩᏒ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏩᎦ ᎠᏂᎩᏏ, ᏗᎾᎵᏦᎯᏛ, ᎠᎴ ᎠᏃᏍᏛ ᏗᎧᏃᏗᏱ, ᎧᏁᏍᎦᏃ ᎤᏰᎬ ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎩ.\nᎠᎴ ᎬᏂᏳᏉ ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏅᏩᎾᏓᎴ ᏩᎦ ᎠᏂᎩᏏ ᎣᏂ ᏓᏳᎾᏚᎩᏒᎩ, ᏧᎾᎴᏐᏛ, ᎠᎴ ᎤᏣᏘ ᎤᏂᏲ ᏗᎧᏃᏗᏱ, ᎠᎴ ᎤᏲ ᎤᏂᏇᏓᎵ ᎾᏍᎩ ᎢᏳᏂᏲ ᎥᏝ ᎢᎸᎯᏳ ᏱᏗᏥᎪᎣ ᏂᎬᎾᏛ ᎢᏥᏈᏱ.\nᏩᎦᏃ ᏧᎾᎴᏐᏛ ᎠᎴ ᎤᏂᏲ ᏗᎧᏃᏗᏱ ᏚᏂᏯᎣᏅᎩ ᎢᎬᏱ [ᎤᎾᏚᎩᏛ] ᎦᎵᏉᎩ ᎢᏯᏂᏛ ᏗᎾᎵᏦᎯᏛ ᏩᎦ ᎠᏂᎩᏏ.\nᏚᏂᏯᎣᏅᏃ ᎥᏝ ᎬᏙᎴᎰᎯᏍᏗ ᏱᎨᏎ ᏚᏂᏯᎥᎢ; ᎠᏏᏉᏍᎩᏂ ᎤᏂᏲ ᎨᏒᎩ ᏗᎧᏃᏗᏱ, ᎾᏍᎩᏯ ᏄᎾᏍᏛ ᎢᎬᏱᏱ. ᎿᏉᏃ ᎠᎩᏰᏨᎩ.\nᎠᎴ ᎦᏍᎩᏓᏍᎬ ᎠᎩᎪᎲᎩ, ᎠᎴ ᎬᏂᏳᏉ ᏌᏉ ᎤᏰᎬ ᎤᏣᎴᏍᏗ ᎦᎵᏉᎩ ᏚᏍᎫᏓᏔᏅᎩ, ᎠᎧᎵᎢ ᏧᎦᏔᏘ, ᎠᎴ ᏦᏍᏛ.\nᎠᎴ ᎬᏂᏳᏉ ᎦᎵᏉᎩ ᏚᏍᎫᏓᏛ ᏧᎾᏍᎬᏨᎯ, [ᎠᎴ] ᏧᏍᏗᎦ, ᏗᎧᎸᎬ ᏗᎦᏃᎸᏗᏍᎬ ᏧᏲᏍᏔᏅᎯ, ᎣᏂ ᏚᎵᏰᏅᎩ.\nᏧᏍᏗᏃ ᏚᏍᎫᏓᏛᎢ, ᏚᏒᏅᎩ ᎦᎵᏉᎩ ᎬᏍᏛ ᏚᏍᎫᏓᏛᎢ. ᎾᏍᎩᏃ ᎯᎠ ᏗᎾᏙᏂᏍᎩ ᎥᎦᏥᏃᏁᎸᎩ; ᎠᏎᏃ ᎥᏝ ᎩᎶ ᎬᏂᎨᏒ ᎢᎬᏋᏁᏗ ᏱᎨᏎᎢ.\nᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ, ᏣᏍᎩᏓᏒ ᏌᏉᏉ ᏂᎦᎵᏍᏗᎭ. ᎤᏁᎳᏅᎯ ᎤᎾᏄᎪᏫᏎᎸ ᏇᎵᏲ ᎾᏍᎩ ᏅᏗᏛᏁᎵᏒᎢ.\nᎦᎵᏉᎩ ᎠᏃᏍᏛ ᏩᎦ ᎠᏂᎩᏏ, ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ [ᎦᏛᎦ,] ᎠᎴ ᎦᎵᏉᎩ ᏦᏍᏛ ᏚᏍᎫᏓᏛ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ [ᎦᏛᎦ;] ᏣᏍᎩᏓᏒ ᏌᏉᏉ [ᏂᎦᎵᏍᏗᎭ.]\nᎦᎵᏉᎩᏃ ᏩᎦ ᎠᏂᎩᏏ ᏧᎾᎴᏐᏛ ᎠᎴ ᏄᏂᏲ ᏗᎧᏃᏗᏱ ᎣᏂ ᏨᏧᎾᏚᎩᏎᎢ, ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ [ᎦᏛᎦ;] ᎦᎵᏉᎩᏃ ᏧᏏᏩ ᏚᏍᎫᏓᏛ ᎾᏍᎩ ᏗᎧᎸᎬ ᏗᎦᏃᎸᏗᏍᎬ ᏧᏲᏍᏔᏅᎯ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᏧᎪᏄᎶᎯᏍᏗᏱ [ᎦᏛᎦ.]\nᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏇᎵᏲ ᏥᏥᏃᎲᏏ; ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏅᏗᏛᏁᎵᏒ ᎦᎾᏄᎪᏫᏎ ᏇᎵᏲ.\nᎬᏂᏳᏉ ᎦᎵᏉᎩ ᏅᏛᏕᏘᏴᎯ ᎤᏧᏈᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏛᏛᏏ ᏂᎬᎾᏛ ᎢᏥᏈᏱ.\nᎣᏂᏃ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᏙᏛᎪᏄᎶᏏ, ᎠᎴ ᏂᎦᏛ ᎤᏧᏈᏍᏗ ᎤᎾᏛᎯᏎᎸ ᏓᏳᏅᎨᏫᏏ ᏂᎬᎾᏛ ᎢᏥᏈᏱ; ᏓᎪᏄᎸᏃ ᏛᏒᏂ ᎦᏙᎯ.\nᎠᎴ ᎤᏧᏈᏍᏗ ᎠᎵᏍᏓᏴᏗ ᎥᏝ ᏯᎾᏅᏓᏗᏍᎨᏍᏗ ᎠᏂ ᎦᏓ ᎠᎲᎢ ᏂᎦᎵᏍᏙᏗᏍᎨᏍᏗ ᏚᎪᏄᎶᏒ ᎤᎨᎲᏔᏅᏒᎢ; ᎤᏣᏘᏰᏃ ᎠᎩᎵᏯ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏎᏏ.\nᎾᏃ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏍᎩᏓᏒ ᏥᎩ ᏇᎵᏲ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎤᏁᎳᏅᎯ ᎤᏍᏓᏱᏛᎯ ᎨᏒᎢ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏞᎩᏳ ᎾᏍᎩ ᎢᏳᏛᏁᏗ ᎨᏒᎢ.\nᎿᏉᏃ ᏇᎵᏲ ᏭᏲᎦ ᎠᏏᎾᏌᏂ ᎠᎴ ᎠᎦᏔᎾᎢ ᎠᏍᎦᏯ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏫᏂᎬᎦ ᏂᎬᎾᏛ ᎢᏥᏈᏱ.\nᏇᎵᏲ ᎾᏍᎩ ᎯᎠ ᏫᎾᏛᎦ, ᎠᎴ ᎾᏍᎩ ᏫᏗᎧᏁᏥ ᏂᎬᎾᏛ ᎠᏂ ᎠᎾᎦᏌᏯᏍᏗᏍᎩ, ᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᏧᏈᏯ ᎤᏛᎯᏍᏗ ᏥᎩ ᎾᏍᎩ ᎯᏍᎩᏁ ᎪᏣᎴᏛ ᎦᏙᎯ ᎤᏛᏒᎯ ᎢᏥᏈᏱ ᎤᎾᎫᏴᏗ ᏫᏂᎬᎦ.\nᎠᎴ ᎾᏍᎩ ᎠᏂᏟᏍᎨᏍᏗ ᏂᎦᏛ ᎠᎵᏍᏓᏴᏗ ᎾᎯᏳ ᎣᏍᏛ ᏚᏕᏘᏴᏌᏗᏒᎢ, ᎠᎴ ᎤᎶᎴᏍᏗ ᎠᏂᏟᏏᏍᎨᏍᏗ ᏇᎵᏲ ᎤᏁᏨᎯ, ᏕᎦᏚᎲᏃ ᎠᏂᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᎠᎵᏍᏓᏴᏗ.\nᎾᏍᎩᏃ ᎠᎵᏍᏓᏴᏗ ᎠᏂᏍᏆᏂᎪᏗᏍᎨᏍᏗ ᏂᎬᎾᏛ ᎤᎾᎵᏍᏓᏴᏙᏗ ᎾᎯᏳ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎢᏥᏈᏱ ᏥᏙᏛᎪᏄᎶᏏ; ᎾᏍᎩᏃ ᏞᏍᏗ ᏓᎪᏄᎸᏉ ᎤᎾᏗᏒᎲᏍᏔᏅᎩ ᎠᏂ ᎦᏓ ᎠᎲᎢ.\nᏇᎵᏲᏃ ᏐᏏᏳ ᎤᏰᎸᏁ ᎾᏍᎩ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏄᏅᏏᏓᏍᏗ.\nᏇᎵᏲᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏅᏏᏓᏍᏗ, ᏥᎪ ᎯᎠ ᎾᏍᎩ ᎢᏳᏍᏗ ᏰᏗᏩᏛ, ᎠᏍᎦᏯ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ ᎤᏯᎢ?\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎾᏍᎩᏃ ᎤᏁᎳᏅᎯ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏥᏣᎾᏄᎪᏫᏎᎸ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᎥᏝ ᎩᎶ ᏂᎯ ᏥᏂᏏᎾᏌᎾ ᎢᏯᏏᎾᏌᏂ ᏱᎩ, ᎠᎴ ᏥᏂᎦᏔᎾᎠ ᎢᏯᎦᏔᎾᎢ ᏱᎩ.\nᏥᏁᎸ ᏣᎬᏫᏳᏌᏕᎩ ᎨᏎᏍᏗ, ᎠᎴ ᏂᎯ ᎯᏁᎬ ᏚᎾᏁᎶᏕᏍᏗ ᏂᎦᏛ ᏕᎢᏆᏤᎵ ᏴᏫ; ᎦᏍᎩᎸᏉ ᎠᏉᎸ ᎤᎬᏫᏳᎯ ᎤᏪᏗᏱ ᎤᏩᏒ ᎤᏟ ᏅᎩᎸᏉᏕᏍᏗ ᎠᏴ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎬᏂᏳᏉ ᏂᎬᎾᏛ ᎢᏥᏈᏱ ᏣᎬᏫᏳᏌᏕᎩ ᏂᎬᏴᎦ.\nᏇᎵᏲᏃ ᎤᎵᏰᏑᏍᏙᎩᏎᎢ, ᎠᎴ ᏦᏩ ᎤᎵᏰᏑᏍᏙᏁᎢ, ᎠᎴ ᎤᏥᎸ ᏧᏏᏙᎵ ᏗᏄᏬ ᏚᏄᏬᎡᎢ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᏧᏓᏕᏒᏛ ᎤᏪᏯᏢᏁᎢ;\nᎠᎴ ᏔᎵᏁᏉ ᎤᎲ ᏓᏆᎴᎷ ᎤᏦᏗᏱ ᏄᏩᏁᎴᎢ; ᎢᎬᏱᏗᏢᏃ ᎠᎢᏒ ᎤᏁᎷᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏗᏣᎵᏂᏆᏅᎥᎦ; ᎤᎬᏫᏳᏌᏕᎩᏃ ᏄᏩᏁᎴ ᏂᎬᎾᏛ ᎢᏥᏈᏱ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᏇᎵᏲ ᎠᏴ, ᎠᎴ ᏂᎯ ᏂᏣᏁᏨᎾ ᎥᏝ ᎩᎶ ᎤᏌᎳᏙᏗ ᏱᎨᏎᏍᏗ ᎤᏬᏰᏂ ᎠᎴ ᎤᎳᏏᏕᏂ ᏂᎬᎾᏛ ᎢᏥᏈᏱ.\nᏇᎵᏲᏃ ᏣᏆᏇᏂᎠ ᏚᏬᎡ ᏦᏩ; ᎠᎴ ᏉᏘᏈᎳ ᎣᎾ ᏚᏙᎥ ᎠᏥᎸ-ᏗᎨᎴᎯ ᎤᏪᏥ, ᎠᏏᎾ [ᏧᏙᎢᏛ,] ᎤᏪᎧᏁᎴ ᎤᏓᏴᏍᏗ; ᏦᏩᏃ ᏂᎬᎾᏛ ᎢᏥᏈᏱ ᎤᏪᏙᎴᎢ.\nᏦᏩᏃ ᏦᎠᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎ ᎾᎯᏳ ᏇᎵᏲ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᎠᎦᏔᎲ ᏧᎴᏁᎢ; ᎤᏄᎪᏤᏃ ᏦᏩ ᏇᎵᏲ ᎠᎦᏔᎲᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎢᏥᏈᏱ ᎤᏪᏙᎴᎢ.\nᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᎤᏣᏔᏅᎯ ᏧᏛᏒᏁ ᎤᏧᏈᏍᏙᏒᎯ ᎤᎾᏄᎪᏫᏏ ᎦᏙᎯ.\nᏂᎦᏛᏃ ᎠᎵᏍᏓᏴᏗ ᎤᏪᏟᏌᏁ ᎾᎯᏳ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᏧᏛᏒᏁ ᎢᏥᏈᏱ, ᎠᎴ ᏕᎦᏚᏩᏗᏒ ᎤᏍᏆᏂᎪᏔᏁ ᎠᎵᏍᏓᏴᏗ; ᎠᎵᏍᏓᏴᏗ ᏠᎨᏏ ᎤᏛᏒᎯ, ᎾᏍᎩ ᏕᎦᏚᏩᏗᏒ ᎬᏩᏚᏫᏛ [ᏕᎦᎶᎨᏒ ᎤᏛᏎᎯ,] ᎾᎿᏉ ᎦᏚᎲ ᎤᏍᏆᏂᎪᏔᏁᎢ.\nᏦᏩᏃ ᎤᏣᎴᏍᏗ ᎤᏪᏟᏌᏁ ᏃᏳ ᎠᎺᏉᎯ ᏥᎦᎳᎨᏲ ᎾᏍᎩᏯᎢ, ᎤᏧᏈᏍᏙᏒᎯ, ᏫᎬᏩᏑᎵᎪᏤ ᎠᏎᎯᎲᎢ; ᎥᏝᏰᏃ ᎬᏎᎰᎲᏍᏗ ᏱᎨᏎᎢ.\nᏦᏩᏃ ᎠᏂᏔᎵ ᎠᏂᏧᏣ ᎬᏩᏕᏁᎴ ᎠᏏᏉ ᏂᏓᎪᏄᎶᏍᎬᎾ ᎨᏎᎢ, ᎾᏍᎩ ᎠᏏᎾ, ᏥᏚᎾᎤᎪᏫᏎᎴᎢ, ᏉᏗᏈᎳ ᎣᎾ ᏚᏙᎥ ᎠᏥᎸ-ᏗᎨᎴᎯ ᎤᏪᏥ.\nᏦᏩᏃ ᎢᎬᏱ ᎤᏕᏁᎸᎯ ᎹᎾᏌ ᏚᏬᎡᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎠᏋᎨᏫᏍᏗᏱ ᎾᏋᏂᏏ ᏂᎦᏛ ᏓᏆᏣᏪᎢᏍᏔᏅᎢ, ᎠᎴ ᏂᎦᏛ ᎡᏙᏓ ᏚᏓᏘᎾᎥᎢ, [ᎤᏛᏁᎢ.]\nᏔᎵᏁᏃ ᎯᎠ ᎢᏆᎻ ᏚᏬᎡᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎠᎩᏁᏉᏣᏘ ᎾᏋᏁᎸ ᎠᏂ ᎦᏓ ᎠᎲ ᎠᎩᎩᎵᏲᏥᏙᎸᎢ [ᎤᏛᏁᎢ.]\nᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᎤᏧᏈᏍᏗ ᏧᏛᏒᏁ ᎢᏥᏈᏱ ᎦᏙᎯ ᎿᏉ ᏚᎵᏍᏆᏕᎢ.\nᎦᎵᏉᎩᏃ ᏧᏕᏘᏴᏛ ᏧᎪᏄᎶᎯᏍᏗᏱ ᎤᎵᏱᎶᎴᎢ, ᎾᏍᎩᏯ ᏦᏩ ᏄᏪᏒᎢ; ᎠᎴ ᏂᎦᏛ ᎦᏙᎯ ᏓᏁᏩᏗᏒ ᏚᎪᏄᎶᏎᎢ; ᎢᏥᏈᏍᎩᏂ ᏂᎬᎾᏛ ᎦᏓ ᎠᎲᎢ ᎠᎵᏍᏓᏴᏗ ᎠᎮᎢ.\nᎿᏉᏃ ᏂᎬᎾᏛ ᎦᏓ ᎠᎲ ᎢᏥᏈᏱ ᏚᏂᏲᏏᏌᏅ, ᏇᎵᏲ ᎬᏩᏔᏲᏎᎴ ᎠᎵᏍᏓᏴᏗ; ᏇᎵᏲᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ, ᏦᏬᎢᏤᎾ; ᎾᏍᎩᏃ ᏂᏥᏪᏎᎲ ᏂᏣᏛᏁᎮᏍᏗ.\nᎾᎿᏃ ᎦᏓ ᎠᎲ ᏂᎬᎾᏛ ᏚᎪᏄᎶᏎᎢ; ᏦᏩᏃ ᏂᎦᏛ ᎤᏣᎴᏍᏗ ᎠᎲ ᏓᏓᏁᎸ ᏚᏍᏚᎢᏎᎢ, ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᏚᏃᏓᏁᎴᎢ; ᎠᎴ ᏓᎪᏄᎸ ᎤᏣᏘ ᎤᏁᏉᏤ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲᎢ.\nᏂᎦᏛᏃ ᏴᏫ ᏓᏁᏩᏗᏒ ᎢᏥᏈᏱ ᎠᏂᎷᎨ ᏦᏩ ᎬᏩᏩᏎᎵᎯᎮᎢ; ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᏂᎦᏛ ᏓᏁᏩᏗᏒ [ᏴᏫ] ᎤᏣᏘ ᏓᎪᏄᎴᎢ.\nᎠᏯᏙᎸᎢ 42\nᏤᎦᏈᏃ ᎤᏙᎴᎰᏒ ᎢᏥᏈᏱ ᏗᎲ ᎢᏣᎴᏍᏗ, ᏤᎦᏈ ᎯᎠ ᏂᏚᏪᏎᎴ ᏧᏪᏥ, ᎦᏙᏃ ᏙᏣᏓᎧᏂᎭᏉ?\nᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎦᏛᎬᎦ, ᎢᏥᏈᏱ ᏗᎲ ᎤᏣᎴᏍᏗ; ᎾᎿ ᏫᏥᎶᎯ, ᎠᎴ ᏫᏍᎩᏩᎯᏏ ᎾᎿᏂ; ᎾᏍᎩᏃ ᎢᏕᎮᏍᏗ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏗᏲᎱᎯ.\nᏦᏩᏃ ᎠᎾᎵᏅᏟ ᎠᏍᎪᎯ ᎢᏯᏂᏛ ᎤᏣᎴᏍᏗ ᎤᏂᏩᏒᏎ ᎢᏥᏈᏱ.\nᏇᏂᏍᎩᏂ, ᏦᏩ ᎤᏅᏟ, ᏤᎦᏈ ᎥᏝ ᏳᏅᏎ ᎠᎾᎵᏅᏟ ᏳᏁᏅᏎᎢ; ᎯᎠᏰᏃ ᏄᏪᏎᎢ, ᏱᏅᏎᎦᎩᏰᏃ ᎤᏲ ᏱᏄᎵᏍᏓᏏ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᏓᏂᎷᎬ ᎤᏁᎳᏙᎴ ᎤᏣᎴᏍᏗ ᎤᏂᏩᏏᎴᎢ; ᎨᎾᏂᏰᏃ ᏓᎪᏄᎴᎢ.\nᏦᏩᏃ ᎤᎬᏫᏳᏌᏕᎩ ᎨᏎ ᎾᎿᏂ, ᎠᎴ ᎾᏍᎩ ᏗᎦᏃᏓᏁᎯ ᎨᏎ ᏂᎦᏛ ᎾᎿ ᎠᏁᎯ; ᏦᏩᏃ ᎠᎾᎵᏅᏟ ᎤᏂᎷᏤᎢ, ᎠᎴ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎴ ᎦᏙᎯ ᎢᏴᏛ ᏚᎾᎵᏯᏍᏚᏁᎢ.\nᏦᏩᏃ ᏚᎪᎮ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏚᏬᎵᏤᎢ, ᎠᏎᏃ ᏚᎵᎪᏁᎶᎯᏍᏓᏁᎴᎢ, ᎠᎴ ᎬᏍᎦᎢᏍᏓᎩ ᏚᏬᏁᏔᏁᎢ; ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎭᏢ ᏓᏣᏓᎴᎲᎦ? ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎨᎾᏂ ᏓᏲᏥᎶᎯ, ᎠᎵᏍᏓᏴᏗ ᎣᎩᏩᏏᎦ.\nᎠᎴ ᏦᏩ ᏕᎪᎵᎨ ᎠᎾᎵᏅᏟ, ᎤᏩᏒᏍᎩᏂ ᎥᏝ ᏱᎬᏬᎵᎨᎢ.\nᏦᏩᏃ ᎤᏅᏓᏕ ᎤᏍᎩᏓᏒᎢ, ᎾᏍᎩ ᎤᏂᏛᎬ ᏧᏍᎩᏓᏎᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎢᏥᎦᏛᏂᏙᎯᏉ, ᎤᏲᏉ ᏃᎦᏛᏅ ᎠᏂ ᎢᏥᎦᏛᏂᎸ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎥᏝ, ᏣᎬᏫᏳᎯ, ᎠᎵᏍᏓᏴᏗᏉᏍᎩᏂ ᎤᏂᏩᏏᎸ ᏘᏅᏏᏗ.\nᎠᏯᏍᎩᏂ ᏂᎦᏛ ᏌᏉ ᎠᏍᎦᏯ ᏧᏪᏥ, ᏚᏳᎪᏛ ᎢᏲᏣᏛᏁᎯ ᎠᏴ, ᏘᏅᏏᏓᏍᏗ ᎥᏝ ᎤᏂᎦᏛᏂᏙᎯᏉ ᏱᎩ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᎥᏝ, ᎤᏲᏉᏍᎩᏂ ᏃᎦᏛᏅ ᎠᏂ ᎢᏥᎦᏛᏂᎸ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏘᏅᏏᏓᏍᏗᏍᎩᏂ ᏔᎳᏚ ᎾᏂᎥ ᎠᎾᎵᏅᏟ, ᏌᏉ ᎠᏍᎦᏯ ᏧᏪᏥ ᎨᎾᏂ ᎡᎯ; ᎠᎴ ᎬᏂᏳᏉ ᎣᏂ ᎡᎯ ᎪᎯ ᎨᏒ ᎣᎩᏙᏙᏱ ᏤᏙᎭ, ᏌᏉᏃ ᏁᎲᎾ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎾᏍᎩᏍᎩᏂ ᏥᏨᏁᎢᏍᏓᏁᎲᎩ, ᎢᏥᎦᏛᏂᏙᎯᏉ ᏥᏨᏲᏎᎲᎩ.\nᎯᎠ ᎾᏍᎩ ᏓᏨᏯᏙᎴᎣᎯᏍᏓᏁᎵ; ᏇᎵᏲ ᎡᎲ [ᏥᏁᎢᏍᏗᎭ,] ᎾᏍᎩ ᎥᏝ ᎠᏂ ᏴᏓᏥᏄᎪᏥ ᎬᏂ ᎣᏂ ᎡᎯ ᎢᏥᏅᏟ ᎠᏂ ᎦᎷᏨᎭ.\nᎠᏏᏴᏫ, ᏂᏣᏛᏅ ᎡᏥᏅᎵ ᎠᎴ ᏩᏘᏃᎦ ᎢᏥᏅᏟ, ᏂᎯᏃ ᎢᏥᏴᎩ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎢᏥᏁᎬ ᎡᏥᎪᎵᏰᏗᏱ, ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏥᏁᎬᎢ, [ᎠᎴ ᏚᏳᎪᏛ ᏂᏥᏁᎬᎾ ᎨᏒᎢ.] ᎢᏳᏃ ᎾᏍᎩ ᏄᏍᏛᎾ ᎢᎨᏎᏍᏗ, ᏇᎵᏲ ᎡᎲ [ᏥᏁᎢᏍᏗᎭ] ᎤᏙᎯᏳᎯᏯ ᎢᏥᎦᏛᏂᏙᎯᏉ.\nᎠᎴ ᏂᎦᏛ ᏚᏍᏚᏁ ᏦᎢ ᏧᏒᎯᏛ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏦᎢᏁ ᎢᎦ, ᎯᎠ ᏂᏣᏛᎦ ᎠᎴ ᏚᏨᏁᏍᏗ; ᎤᏁᎳᏅᎯᏰᏃ ᏥᎾᏰᏍᎩ ᎠᏴ.\nᎢᏳᏃ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᎨᏎᏍᏗ, ᎠᏏᏴᏫ ᎢᏣᎵᏅᏟ ᎠᎦᎸᎡᏍᏗ ᎠᏓᏁᎸ ᏕᏥᏍᏚᏅᎢ; ᏂᎯᏃ ᎢᏤᎾ ᎤᏣᎴᏍᏗ ᏗᏥᏴᏏ ᏕᏣᏓᏘᎾᎥ ᏚᎾᎪᏄᎸᎢ;\nᎣᏂᏃ ᎢᎡᎯ ᎢᏣᎵᏅᏟ ᏍᎩᏯᏘᏃᎮᎸᎭ; ᎰᏩᏃ ᎢᏥᏁᏨ ᎠᏙᎯᏳᏅᎭ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏥᏲᎱᎯ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎴᎢ.\nᎯᎠᏃ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎤᏙᎯᏳᎯᏯ ᎢᎩᏍᎦᏅᏨ ᎢᎩᏅᏟ ᎾᏍᎩ ᏥᏁᏛᏁᎸᎩ, ᎾᏍᎩ ᏥᎩᎪᎲᎩ ᎡᎯᏍᏗ ᎤᏓᏅᏛᎢ, ᎾᎯᏳ ᏥᎩᏍᏗᏰᏛᎩ, ᎠᎴ ᏁᏓᏛᏓᏍᏓᏁᎲᎾ ᏥᎨᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᎤᏕᏯᏙᏗ ᏂᎦᎵᏍᏓᏁᎭ.\nᎷᏈᏂᏃ ᏚᏁᏤᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏝᏍᎪ ᏱᏨᏁᏤᎴ, ᎯᎠ ᏱᏂᏨᏪᏎᎴᎢ, ᏞᏍᏗ ᎢᏥᏍᎦᏅᏤᎸᎩ ᎠᏫᏄᏣ; ᎠᏎᏃ ᎥᏝ ᎾᏍᎩ ᏯᏛᏓᏍᏓᏁᎴᎢ? ᎾᏍᎩ ᎢᏳᏍᏗ, ᎬᏂᏳᏉ ᎾᏍᎩ ᎤᎩᎬ ᏕᎩᎬᏩᎶᏓᏁᎭ.\nᎥᏝᏃ ᏯᏂᎦᏔᎮ ᏦᏩ ᎪᎵᎬ ᎠᏂᏬᏂᏍᎬᎢ, ᏕᎦᏬᏁᏗᏍᎬᏰᏃ ᎠᎦᏁᏢᏓᏁᎮᎢ.\nᏦᏩᏃ ᎤᎦᏔᎲᏎ ᎠᏂᏙᎾᎥ ᎠᎴ ᏚᏠᏱᎴᎢ; ᏔᎵᏁᏃ ᏚᎷᏤᎴᎢ, ᎠᎴ ᏚᎵᏃᎮᏔᏁᎢ; ᎠᎴ ᏏᎻᏯᏂ ᏚᏯᏅᎡᎴᎢ, ᎠᎴ ᏓᏂᎧᏅ ᎤᎸᎴᎢ.\nᎿᏉᏃ ᏦᏩ ᎤᏁᏤ ᏕᎦᎶᏗ ᏧᏂᎧᎵᎢᏍᏔᏁᏗᏱ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᎠᏕᎸ ᏓᏂᏰᎲ ᏕᎦᎶᏗᎯ ᏔᎵᏁ ᏗᎨᏥᎳᏁᏗᏱ, ᎠᎴ ᎠᎾᎢᏒ ᎤᎾᎵᏍᏓᏴᏗ ᎨᏥᏁᏗᏱ; ᎠᎴ ᎾᏍᎩ ᏂᏚᏛᏁᎴᎢ.\nᏐᏈᎵᏃ ᏗᏂᎵᎠᏅᎯᏛ ᏚᏂᏐᏈᎳᏁ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎾᎿ ᎤᎾᏂᎩᏎᎢ.\nᎠᏏᏴᏫᏃ ᎠᎱᏃᏱᏍᎬ ᏕᎦᎶᏗ ᏧᏂᏒᏍᏗᏱ ᏗᎦᎵᎠᏅᎯᏛ ᏗᎨᎶᎵᏎᎢ, ᏚᎪᎮ ᏧᏤᎵ ᎠᏕᎸ; ᎬᏂᏳᏉᏰᏃ ᏕᎦᎶᏗᎯ ᎠᎱᏃᎲᏉ ᏕᎦᎴᎢ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᏕᎸ ᏗᏆᏤᎵ ᏙᎥᎩᏁᎸᏉ; ᎠᎴ ᎬᏂᏳᏉ ᎠᏂ ᏕᎦᎶᏗᎯ ᏕᎦᎳ; ᏧᏂᎾᏫᏃ ᎡᏍᎦ ᏂᏚᎾᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᎤᏂᏍᎦᎴᎢ, ᎯᎠ ᏂᏚᎾᏓᏪᏎᎴᎢ, ᎦᏙ ᎾᏍᎩ ᎯᎠ ᎤᏁᎳᏅᎯ ᎢᎬᎦ.\nᏤᎦᏈᏃ ᎤᏂᏙᏓ ᏭᏂᎷᏤᎴ ᎦᏓ ᎠᎲᎢ, ᎠᎴ ᎤᏂᏃᏁᎴ ᏂᎦᎥ ᏄᎾᎵᏍᏓᏁᎵᏙᎸᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ;\nᎠᏍᎦᏯ, ᎾᎿ ᏄᎬᏫᏳᏒᎢ, ᎬᏍᎦᎢᏍᏓᎩ ᎣᎩᏬᏁᏔᏅᎩ, ᎠᎴ ᎾᎿ ᎦᏓ ᎠᎲ ᎣᎩᎦᏛᏂᏙᎯᏉ ᎣᎨᎵᏎᎲᎩ.\nᎯᎠᏃ ᏃᏥᏪᏎᎸᎩ, ᏚᏳᎪᏛ ᎢᏲᏣᏛᏁᎯ ᎠᏴ; ᎥᏝ ᎣᎩᎦᏛᏂᏙᎯᏉ ᏱᎩ;\nᏔᎳᏚ ᏃᏥᎥ ᎣᏣᎵᏅᏟ, ᏌᏉᏉ ᎣᎩᏙᏓ; ᎠᏏᏴᏫ ᏁᎲᎾ, ᎣᏂᏃ ᎡᎯ ᎪᎯ ᎨᏒ ᎣᎩᏙᏙᏱ ᏤᏙᎭ ᎨᎾᏂ ᎦᏓ ᎠᎲᎢ.\nᎠᎴ ᎠᏍᎦᏯ ᎾᎿ ᏄᎬᏫᏳᏒ, ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᏓᎦᏙᎴᎣᎯᏍᏔᏂ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᎨᏒᎢ. ᎠᏏᏴᏫ ᎢᏣᎵᏅᏟ ᎨᏒ ᏍᎩᏯᎠᎯᏯᏏ, ᎠᎴ ᏕᎶᏓᏘᎾᎥ ᎤᎾᎪᏄᎸ ᎤᎾᎵᏍᏓᏴᏗ ᏗᏥᏴᏏ, ᎠᎴ ᎢᏣᏂᎩ.\nᎣᏂᏃ ᎡᎯ ᎢᏥᏅᏟ ᏍᎩᏯᏘᏃᎮᎸᎭ; ᎿᏉᏃ ᏓᎦᏙᎴᎣᏏ ᎢᏥᎦᏛᏂᏙᎯᏉ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏣᏛᏁᎯ ᎨᏒᎢ; ᎢᏣᎵᏅᏟᏃ ᏕᏨᏲᎯᏎᎸᎭ, ᎠᎴ ᎠᏂ ᎢᏥᏃᏔᏂᏙᎸᎭ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᏍᎩ ᏕᎦᎶᏗᎯ ᎤᏂᎴᏒ ᎤᏣᎴᏍᏗ, ᎬᏂᏳᏉ ᎠᏂᏏᏴᏫᎭ ᏧᎾᏤᎵ ᎠᏕᎸ ᏗᎦᏇᏅᎯ ᏕᎦᎶᏗᎯ ᏙᎦᎴᎢ; ᎤᏅᏒᏃ ᎠᎴ ᎤᏂᏙᏓ ᎠᏕᎸ ᏗᎦᏇᏅᎯ ᏚᏂᎪᎲ, ᎤᏂᏍᎦᎴᎢ.\nᏤᎦᏈᏃ ᎤᏂᏙᏓ ᎯᎠ ᏄᏂᏪᏎᎴᎢ, ᎠᏴ ᏗᏇᏥ ᏕᏍᎩᏯᏅᎡᎸ; ᏦᏩ ᏁᎲᎾ, ᎠᎴ ᏏᎻᏯᏂ ᏁᎲᎾ, ᎠᎴ ᏇᏂ ᏛᎡᏣᏘᎾᏫᏛᎯ; ᎾᏍᎩ ᎯᎠ ᏂᎦᏛ ᎠᏆᏡᏗᏍᎩ.\nᎷᏈᏂᏃ ᎤᏁᏤᎴ ᎤᏙᏓ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏧᎳ ᏗᏇᏥ ᎠᏂᏧᏣ ᏕᎯᎸᎭ, ᎢᏳᏃ ᏂᎬᏯᏘᏃᎮᎸᎾ ᎢᎨᏎᏍᏗ; ᎠᏴ ᏗᏍᎩᏲᎯᏏ, ᎠᏴᏃ ᏔᎵᏁ ᏛᎬᏯᏘᏃᎮᎵ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎥᏝ ᏴᎨᏤᎾ ᎠᏇᏥ, ᏄᏂᎵᏰᏃ ᎤᏲᎱᏒ, ᎯᎠᏃ ᎤᏩᏒ ᎤᏕᎯᏴ; ᎢᏳᏃ ᎤᏲ ᏱᏄᎵᏍᏓᏁᎸ ᎢᏣᎢᏒᎢ, ᎿᏉ ᎤᏁᎬ ᏗᎩᏍᏗᏰᎩ ᏧᏂᏲᎱᏒᎯ ᏩᏁᎲ ᏮᏓᏍᎩᏯᏘᏃᎵ ᎤᏲ ᎬᏆᏓᏅᏘ.\nᎠᏯᏙᎸᎢ 43\nᎠᎴ ᎤᏣᏘ ᏗᎪᏄᎵᏳ ᎨᏎ ᎾᎿᏂ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎿᏉ ᎤᏂᏒᏅ ᎤᏣᎴᏍᏗ ᎢᏥᏈᏱ ᏭᏂᎩᏛ, ᎤᏂᏙᏓ ᎯᎠ ᏄᏂᏪᏎᎴᎢ, ᏔᎵᏁ ᏥᏤᎾ, ᎤᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏫᏍᎩᏩᎯᏏ.\nᏧᏓᏃ ᎤᏁᏤᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎾᏍᎩ ᎠᏍᎦᏯ ᎠᏍᏓᏱᏳ ᎣᎩᏁᏤᎸ, ᎯᎠ ᏄᏪᏒᎩ, ᎥᏝ ᏴᎨᏥᎪᏩᏛ ᎠᏆᎧᏛ ᎢᏳᏃ ᎢᏥᏅᏟ ᏂᏤᎲᎾ ᎢᎨᏎᏍᏗ.\nᎢᏳᏃ ᏱᏅᏒ ᎣᎩᏅᏟ ᎣᎨᏅᏍᏗᏱ, ᏲᏤᎾ ᏱᏫᏨᏩᎯᏏ ᎠᎵᏍᏓᏴᏗ.\nᎢᏳᏍᎩᏂ ᏂᏅᏒᎾ ᎢᎨᏎᏍᏗ, ᎥᏝ ᏴᎦᏲᏤᎾ; ᎾᏍᎩᏰᏃ ᎠᏍᎦᏯ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᎥᏝ ᏴᎨᏥᎪᏩᏛ ᎠᏆᎧᏛ ᎢᏳᏃ ᎢᏥᏅᏟ ᏂᏤᎲᎾᎢ ᎨᏎᏍᏗ.\nᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙᏃ ᏂᎤᏲᏞ ᏂᏍᎩᏴᏁᎴᎢ, ᎾᏍᎩ ᏤᏥᏃᏁᎮ ᎠᏍᎦᏯ ᎠᏏ ᎡᎲ ᎢᏥᏅᏟ?\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎾᏍᎩᏰᏃ ᎠᏍᎦᏯ ᎤᎵᏂᎩᏛ ᎣᎦᏛᏛᏅᎩ ᏄᏍᏛ ᎣᏤᎲᎢ, ᎠᎴ ᎪᎱᏍᏗ ᏦᎬᏅ ᎠᏁᎲᎢ, ᎯᎠ ᏂᎦᏪᏍᎬᎩ, ᎢᏥᏙᏓᏍᎪ ᎠᏏ ᎡᎯ? ᎢᏥᏅᏟᏍᎪ ᎡᎭ? ᎾᏍᎩᏯᏃ ᏥᏃᏥᏫ ᏃᏥᏪᏎᎸᎩ; ᏥᎪᏃ ᎦᏲᎦᏙᎴᎰᎯᏍᏗ ᎨᏎ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᏪᏏᏒᎢ, ᎢᏥᏅᏟ ᏤᏣᏘᏁᏒᎭ?\nᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ ᎢᏏᎵ, ᎯᏅᎵ ᎠᏫᏄᏣ ᎠᏴ ᏬᏍᏕᎾ, ᏙᏓᏲᏣᎴᏂᏃ ᎠᎴ ᏓᏲᏤᏏ; ᎾᏍᎩᏃ ᏕᏛᏁᏍᏗ, ᎠᎴ ᎥᏝ ᏱᏙᎨᏗᏲᏞᎯ, ᎠᏴ ᎠᎴ ᏂᎯ, ᎠᎴ ᎾᏍᏉ ᏧᎾᏍᏗ ᏗᎦᏤᎵᎦ.\nᎠᏴ ᏔᎵ ᏓᏥᏯᏛᏓᏁᎵ; ᎠᏴ ᏗᏍᏆᎧᏂᏐᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏂᎬᏯᏘᏃᎮᎸᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᎢᎬᏱᏗᏢ ᏂᎬᏯᎧᏁᎵᎸᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎠᏴ ᎬᏍᎦᏅᏤᎸᎯ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ.\nᎢᏳᏰᏃ ᏃᎦᏙᎯᏛᎾ ᏱᎨᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎦᏳᎳ ᏔᎵᏁ ᏱᎣᎩᎷᏦᏁᎢ.\nᎤᏂᏙᏓᏃ ᎢᏏᎵ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎢᏳᏃ ᎾᏍᎩ ᏱᏄᏍᏗ ᎿᏉ ᎯᎠ ᏂᏣᏛᎦ; ᎢᏥᎩ ᎣᏌᏂ ᎤᏓᏔᏅᎯ ᎡᏍᎦᏂ ᏗᏣᎵᏁᏌᎶᏗ ᏗᏥᎶᏓ, ᎠᎴ ᎡᏥᏴᏏ ᎠᏍᎦᏯ ᎡᏥᏁᏗ, ᎤᏍᏗ ᏅᏬᏘ ᎠᏜ, ᎠᎴ ᎤᏍᏗ ᏩᏚᎵᏏ, ᎠᎴ ᏗᎦᏩᏒᎩ, ᎠᎴ ᎻᎳ, ᎠᎴ ᎤᏅᏙᎩ ᎠᎾᏓᏛᏍᎩ, ᎠᎴ ᎠᎹᏂ.\nᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎢᎦᎢ ᎠᏕᎸ ᏥᏙᏥᏳᎦ; ᎠᎴ ᎠᏕᎸ ᏕᎦᎶᏗᎯ ᏓᎱᏃᎲ ᏥᏕᎦᎸ ᏥᏕᏥᏲᎸᎩ, ᏔᎵᏁ ᏥᏙᏥᏳᎦ; ᎤᏂᎵᏓᏍᏔᏅᎯᏉ ᏱᏂᎦᎩ.\nᎢᏥᏅᏟ ᎾᏍᏉ ᎡᎶᏘᏄᎦ; ᎠᎴ ᏗᏣᎴᎲᎦ, ᏔᎵᏁ ᏪᏥᎷᏥᏏ ᎠᏍᎦᏯ.\nᎠᎴ ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎢᏥᏙᎵᏍᏗᏱ ᏫᏂᎬᎦ ᎾᏍᎩ ᎠᏍᎦᏯ ᎾᏍᎩ ᏅᏓᏳᏂᎩᏍᏙᏗᏱ ᏐᎢ ᎢᏣᎵᏅᏟ, ᎠᎴ ᏇᏂ; ᎢᏳᏃ ᏛᎩᏯᏅᎡᎴᏍᏗ ᏗᏇᏥ, ᏛᎩᏯᏅᎡᎴᏍᏗᏉ.\nᎾᏍᎩᏃ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᎤᎾᏓᏁᏗ ᎤᏂᏴᏎᎢ, ᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎢᎦᎢ ᎠᏕᎸ ᏚᏂᏴᏎᎢ, ᎠᎴ ᏇᏂ ᎤᎾᏘᏅᏎᎢ; ᎠᎴ ᏚᎾᎴᏁᎢ, ᎠᎴ ᎢᏥᏈᏱ ᏭᏂᎶᏎᎢ, ᎠᎴ ᎢᎬᏱᏗᏢ ᏭᎾᎴᏅᏁᎴ ᏦᏩ.\nᏦᏩᏃ ᎤᎪᎲ ᏇᏂ ᎾᏍᎩ ᎠᏁᎲᎢ, ᎯᎠ ᏄᏪᏎᎴ ᎤᎬᏫᏳᏌᏕᎩ ᎦᏁᎸᎢ, ᏗᏇᏅᏒ ᏔᏘᏄᎦ ᎯᎠ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏘᎷᎦ ᎠᎴ ᎭᏛᏅᎢᏍᏓ ᎠᎵᏍᏓᏴᏗ; ᎯᎠᏰᏃ ᎠᏂᏍᎦᏯ ᏓᎬᏆᎵᏍᏓᏴᎾᏁᎵ ᎢᎦ.\nᎾᏍᎩᏃ ᎠᏍᎦᏯ ᏦᏩ ᏄᏪᏎᎸ ᎾᏍᎩᏯ ᏄᏛᏁᎴᎢ; ᎠᎴ ᎾᏍᎩ ᎠᏍᎦᏯ ᏦᏩ ᎦᏁᎸ ᏫᏚᏘᏅᏍᏔᏁ ᎠᏂᏍᎦᏯ.\nᎠᎴ ᎾᏍᎩ ᎠᏂᏍᎦᏯ ᎠᏂᏍᎦᎢᎮᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎨᏥᏴᏔᏂᎸ ᏦᏩ ᎦᏁᎸᎢ; ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎠᏂ ᏥᏕᎩᏴᏔᏂᎦ ᏂᎦᎵᏍᏙᏗ ᎠᏕᎸ ᏥᏕᎩᎳᏁᎸ ᏕᎦᎶᏗᎯ ᎢᎬᏱᏱ ᏥᏕᏙᎲᎩ; ᎾᏍᎩ ᎪᎱᏍᏗ ᏧᏢᏫᏍᏙᏗ ᎤᏚᎵ ᎾᏍᎩ ᏗᎩᎦᏗᎸᏍᏙᏗᏱ, ᎠᎴ ᏗᎩᏂᏴᏗᏱ, ᎠᎴ ᏗᎩᎾᏢᏗᏱ, ᎠᎴ [ᏗᎩᏯᏅᎡᏗᏱ] ᏗᏂᎵᎠᏅᎯᏛ.\nᎾᎥᏃ ᎤᏂᎷᏤᎴ ᏄᎬᏫᏳᏌᏕᎩ ᏦᏩ ᎦᏁᎸᎢ, ᎠᎴ ᎤᎾᎵᏃᎮᏔᏁ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏕ.\nᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎢᏳᎸᏉᏗ, ᎤᏙᎯᏳᎯ ᎢᎬᏱᏱ ᏦᎩᎷᏥᎸᎩ ᎠᎵᏍᏓᏴᏗ ᎣᎩᏩᏏᎸᎩ;\nᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏗᏒᏍᏗᏱ ᏬᎩᎷᏨ ᏙᎩᎱᏃᏴᎲᎩ ᏕᎦᎶᏗ, ᎠᎴ ᎬᏂᏳᏉ, ᎣᏥᏏᏴᏫᎭ ᏕᎦᎶᏗ ᏙᏥᏁᎲ ᏓᎱᏃᎲᏉ ᏙᎦᎸ ᎠᏕᎸ ᏦᎦᏤᎵᎦ, ᏂᏙᎬᏩᏓᎨᏒᏉ; ᎠᎴ ᏔᎵᏁ ᏙᏥᏲᎦ.\nᎠᎴ ᏅᏩᎾᏓᎴ ᎠᏕᎸ ᏙᏥᏲᎦ ᎠᎵᏍᏓᏴᏗ ᎣᎩᏩᎯᏍᏙᏗ; ᎥᏝ ᎦᏲᎦᏙᎴᎰᎯᏍᏗ ᏱᎩ ᎾᏍᎩ ᎨᏒ ᎠᏕᎸ ᏦᎩᎳᏁᎸᎯ ᏕᎦᎶᏗᎯ.\nᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏅᏩᏙᎯᏯᏛ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᎤᏁᎳᏅᎯ ᎢᏣᏤᎵᎦ, ᎠᎴ ᎢᏥᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ ᎢᏥᏁᎸ ᏧᎬᏩᎶᏗ ᏕᎦᎶᏗᎯ; ᎠᏴ ᏛᎩᏁᎸ ᏗᏣᏤᎵ ᎠᏕᎸ. ᏏᎻᏯᏂᏃ ᏚᏘᏃᎮᎴᎢ.\nᎾᏍᎩᏃ ᎠᏍᎦᏯ ᏦᏩ ᎦᏁᎸ ᏫᏚᏘᏃᎴ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎠᎹ ᏚᏁᏁᎴᎢ, ᏧᎾᎳᏏᏕᏂᏃ ᏑᏃᏑᎴᎡᎢ; ᎠᎴ ᏗᏂᎵᎠᏅᎯᏛ ᎤᎾᎵᏍᏓᏴᏗ ᏚᏁᎴᎢ.\nᎠᎴ ᎤᎾᏛᏅᎢᏍᏔᏁ ᎤᏂᏁᎸᏗ ᎨᏒ ᎠᏏ ᎢᎦ ᏂᎬᏒᎾ ᏦᏩ ᎾᎯᏳ ᎤᎷᎯᏍᏗᏱ ᎨᏒᎢ; ᎤᎾᏛᎦᏁᏰᏃ ᎾᎿ ᏗᎾᎵᏍᏓᏴᏂᏒᎢ.\nᏦᏩᏃ ᏭᎷᏨ ᏧᏪᏅᏒᎢ, ᎤᏂᏁᏗ ᎠᏂᏰᎲ ᏔᎵᏦᏕ ᎤᏂᏴᏔᏁᎢ, ᎠᎴ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎴᎢ.\nᎠᎴ ᏚᏛᏛᏁ ᏙᎯ ᏄᎾᏛᎾᏕᎬᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᏙᏓᏍᎪ ᏙᎯᏱᏉ, ᎾᏍᎩ ᎤᏛᏐᏅᎯ ᏤᏥᏁᎢᏍᏗᏍᎬᎩ? ᎠᏏᏉᏍᎪ ᎡᎭ\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎯᏅᏏᏓᏍᏗ ᎣᎩᏙᏓ ᏙᎯᏱᏉ, ᎠᏏᏉ ᎡᎭ; ᎠᎴ ᎡᎳᏗ ᏂᏚᏅᏁᎴ ᏗᏂᏍᎪᎵ, ᎠᎴ ᏚᎾᏗᏌᏓᏕᎢ.\nᏗᎦᏙᎵᏃ ᏚᏌᎳᏓᏁᎢ, ᎠᎴ ᎤᏅᏟ ᏇᏂ ᎤᎪᎮᎢ, ᎾᏍᎩ ᎤᏥ ᎤᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠᏍᎪ ᎢᏥᏅᏟ, ᎾᏍᎩ ᏥᏍᎩᏁᎢᏍᏓᏁᎲᎩ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᏫᏣᏙᎵᎩ, ᎠᏇᏥ.\nᏦᏩᏃ ᎤᎵᏍᏗ ᏄᏛᏁᎴᎢ; ᎭᏫᏂᏰᏃ ᎤᎵᏖᎸᎾᏁᎴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎤᏅᏟ; ᎠᎴ ᎤᏲᎴ ᎢᎸᎯᏢ ᏧᏠᏱᏍᏗᏱ; ᎠᎴ ᎧᏅᏑᎸ ᎤᏴᏍᏗᏱ ᏭᏴᎴᎢ, ᎠᎴ ᎾᎿ ᏚᏠᏱᎴᎢ.\nᎤᎬᏍᏉᎡᏃ, ᎠᎴ ᎤᏄᎪᏤᎢ, ᎠᎴ ᎬᏩᏛᏂᎡᏉ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᎵᏍᏓᏴᏗ ᎢᏥᏝᎲᎦ.\nᎠᎴ ᎤᏩᏒ ᏕᎬᏩᏝᏁᎴᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ ᎤᏅᏒ, ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᎵᏍᏓᏴᎲᏍᎬ ᎠᎾᎵᏍᏓᏴᎲᏍᎩ, ᎾᏍᏉ ᎤᏅᏒ ᏙᎨᏥᏝᏁᎴᎢ; ᎢᏥᏈᏱᏰᏃ ᎠᏁᎯ ᎥᏝ ᎢᏧᎳᎭ ᎬᏩᎾᎵᏍᏓᏴᏗ ᏱᎨᏎ ᎠᏂᏈᎷ; ᎾᏍᎩᏴᏃ ᎤᏍᎦᎢᏍᏗᏳ ᎤᏂᏰᎸᏎ ᎢᏥᏈᏱ ᎠᏁᎯ.\nᎠᎴ ᎤᏬᎸ ᎢᎬᏱᏢ ᎠᏂᏁᎢ, ᎤᏓᏂᎵᎨ ᎢᎬᏱ ᎤᏪᏁᎢ, ᎣᏂᏃ ᎡᎯ ᎾᏍᎩᏯ ᏄᏍᏛ ᎤᏕᏔᏅ ᎤᏪᏁᎢ; ᎠᏂᏍᎦᏯᏃ ᎤᏅᏒ ᏓᎾᏓᏍᏆᏂᎪᏍᎨᎢ.\nᎢᎬᏱᏗᏢᏃ ᎤᏬᎸ ᎠᏝᎲ ᏫᏚᏁᎴ ᏧᎾᏁᎳᎩᎭ ᎠᎵᏍᏓᏴᏗ; ᎠᏎᏃ ᏇᏂ ᏩᏥᏁᎸᎯ ᎾᏍᎩ ᎢᏳᏩᎫᏗ ᎤᎶᏒᏍᏕ ᎠᏂᏐᎢ ᎢᎩ ᎨᏥᏁᎸᎢ. ᏚᎾᏗᏔᎮᏃ ᎠᎴ [ᏦᏩ] ᎢᏧᎳᎭ ᎣᏍᏛ ᎤᎾᏓᏅᏓᏕᎢ.\nᎠᏯᏙᎸᎢ 44\nᎠᎴ ᎤᏁᏤᎴ ᎦᏁᎸ ᏄᎬᏫᏳᏌᏕᎩ, ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎠᏂᏍᎦᏯ ᏕᎦᎶᏗ ᏧᎾᏤᎵ ᏘᎧᎵᏏ ᎠᎴᏍᏓᏴᏗ ᏘᎧᎵᏍᏓᏏ, ᎢᎦᎢ ᎬᏩᏂᏴᏍᏗ ᎬᏒᎢ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏧᎾᏤᎵᎦ ᎠᏕᎸ ᏕᎦᎶᏗᎯ ᏓᎱᏃᎲ ᏕᎩᎳᏁᎸᎭ.\nᎠᎴ ᎠᏆᏤᎵ ᎤᎵᏍᏈᏗ, ᎠᏕᎸ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎯᎳᏏ ᎠᎱᏃᎲ ᏕᎦᎶᏗᎯ ᎾᏍᎩ ᎣᏂ ᎡᎩ, ᎠᎴ ᎾᏍᏉ ᎠᏕᎸ ᎤᏣᎴᏍᏗ ᎤᏩᎯᏍᏔᏅᎯ [ᏦᏙᎯᎳᏏ.] ᎠᎴ ᎾᏍᎩᏯ ᏦᏩ ᎤᏁᏤᎸ ᏄᏛᏁᎴᎢ.\nᏑᎾᎴᏃ ᎩᎳ ᏧᎩᏥᏍᎪᎢ, ᎠᏂᏍᎦᏯ ᎨᎦᏂᎩᏍᏔᏁᎢ, ᎤᏅᏒ, ᎠᎴ ᏗᏂᎵᎠᏅᎯᏛ.\nᎤᏂᏄᎪᏨᏃ ᎦᏚᎲᎢ, ᎠᎴ ᎥᏝ ᎠᏏ ᎢᏅᎯᏳ ᏱᏩᎾᎢᏎᎢ, ᏦᏩ ᎯᎠ ᏄᏪᏎᎴ ᎦᏁᎸ ᏄᎬᏫᏳᏌᏕᎩ, ᏔᎴᎲᎦ, ᎩᎨᎱᎦ ᎾᏍᎩ ᎠᏂᏍᎦᏯ; ᎠᎴ ᎿᏉ ᏫᎩᏯᏢᏔᎲᎭ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᎦᏙᏃ ᎣᏍᏛ ᏁᏣᏛᏁᎸ ᎤᏲᏉ ᎥᏣᏓᎫᏴᏓᏏ?\nᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᎠᎩᏅᏏᏓᏍᏗ ᎤᏗᏔᏍᏙᏗ ᏱᎩ? ᎠᎴ ᎤᏙᎯᏳᏒ ᎾᏍᎩ ᎬᏩᏙᎴᎰᎯᏍᏙᏗ ᎨᏒᎢ; ᎤᏲ ᏂᏣᏛᎦ ᎾᏍᎩ ᏥᏂᏣᏛᏁᎸ.\nᏫᏚᏢᏔᎮᏃ, ᎠᎴ ᎾᏍᎩᏯ ᏫᏂᏚᏪᏎᎴᎢ.\nᎯᎠᏃ ᏂᎬᏩᏪᏎᎴᎢ, ᎦᏙᏃ ᎾᏍᎩ ᏂᎦᏪᎭ ᎤᎬᏫᏳᎯ ᎣᎦᏤᎵ? ᎬᏩᏟᏍᏗ ᏘᏅᏏᏓᏍᏗ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ.\nᎬᏂᏳᏉ ᎠᏕᎸ ᎾᏍᎩ ᏥᏙᎩᏩᏛᎲ ᏓᎱᏃᎲ ᏕᎦᎶᏗᎯ ᏔᎵᏁ ᏥᏙᏨᏲᎮᎸᎩ ᎨᎾᏂ ᏥᏙᏛᎣᎩᏴᏍᏔᏅᎩ; ᎦᏙᏃ ᏲᏥᏃᏍᎩᎭ ᏣᏅᏏᏙᎯ ᎦᏁᎸ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨᎢ?\nᎩᎶ ᎯᎠ ᏘᏅᏏᏓᏍᏗ ᎠᏥᏩᏛᎡᎸᎭ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᏴᏃ ᎾᏍᏉ ᏣᎬᏫᏳᎯ ᏗᏍᎩᎾᏝᎢ ᏂᎦᎵᏍᏔᏅᎭ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎢᏥᏁᏨᎪᎦ ᎾᏍᎩᏯ ᏄᏍᏕᏍᏗ, ᎩᎶ ᎾᏍᎩ ᎠᏥᏩᏛᎡᎸᎭ ᏥᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ; ᏂᎯᏃ ᎢᏣᏚᏓᎴᏛ ᎨᏎᏍᏗ.\nᎿᏉᏃ ᎠᏂᏏᏴᏫᎭ ᎤᎵᏍᏗᏳ ᏚᏂᏞᏎ ᏕᎦᎶᏗ, ᎡᎳᏗᏃ ᏚᏂᏅᏁᎢ, ᎠᎴ ᎠᏂᏏᏴᎭ ᏚᏂᎱᏃᏴᎮ ᏧᎾᏤᎵ ᏕᎦᎶᏗ.\nᎤᏲᎴᏃ, ᎠᏓᏂᎵᎨ ᎤᏤᎵ ᎤᎴᏅᏔᏁᎢ, ᎠᎴ ᎣᏂᏱ ᎡᎯ ᏭᏍᏆᏗᏍᏔᏁᎢ; ᎤᎵᏍᏈᏗᏃ ᏇᏂ ᎤᏤᎵ ᏕᎦᎶᏗᎯ ᎤᏩᏛᎮᎢ.\nᎿᏉᏃ ᏚᏂᏣᎦᎸᎮ ᏧᎾᏄᏬ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏚᏂᏐᏈᎳᏁ ᏧᎾᏤᎵ ᏗᏂᎵᎠᏅᎯᏛ, ᎠᎴ ᎤᎾᏨᏎ ᏗᎦᏚᎲ ᏭᏂᎶᏎᎢ.\nᏧᏓᏃ ᎠᎴ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᏦᏩ ᎦᏁᎸ ᏭᏂᎷᏤᎢ; ᎾᏍᎩᏃ ᎠᏏᏉ ᎾᎿ ᎡᏙᎮᎢ; ᎢᎬᏱᏗᏢᏃ ᎤᏬᎸ ᎦᏙᎯ ᏚᎾᏓᏅᏁᎢ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏉ ᎢᏣᏛᎦ? ᏝᏍᎪ ᏱᏥᎦᏔᎮ ᎠᏴ ᎾᏍᎩ ᎢᏯᏆᏍᏗ ᎤᏙᎯᏳᎯᏯ ᎬᏆᏙᎴᎰᎯᏍᏗ ᎨᏒᎢ?\nᏧᏓᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᏙ ᏓᏨᏲᏎᎵ ᏣᎬᏫᏳᎯ? ᎠᎴ ᎦᏙ ᏓᏲᏣᏛᏂ? ᎠᎴ ᎦᏙ ᏓᏲᏣᏛᏁᎵ ᎣᎦᏚᏓᎴᏍᏗᏱ? ᎤᏁᎳᏅᎯ ᎤᏙᎴᎰᏒ ᎤᏂᏍᎦᏅᏨ ᏘᏅᏏᏓᏍᏗ; ᎬᏂᏳᏉ, ᏣᎬᏫᏳᎯ ᏕᏍᎩᎾᏝᎠ, ᎠᏴ ᎠᎴ ᎾᏍᏉ Ꮎ ᎤᎵᏍᏈᏗ ᎠᏥᏩᏛᎡᎸᎯ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎬᏩᏟᏍᏗ ᎾᏍᎩ ᎢᏯᏆᏛᏁᏗᏱ; ᎤᎵᏍᏈᏗᏍᎩᏂ ᎠᏥᏩᏛᎡᎸᎯ, ᎾᏍᎩ ᏥᎾᏝᎢ ᎨᏎᏍᏗ; ᏂᎯᏍᎩᏂ ᏅᏩᏙᎯᏯᏛ ᏥᏣᏂᎩ ᎢᏥᏙᏙᏱ ᏫᏥᎶᎯ.\nᎿᏉᏃ ᏧᏓ ᎾᎥ ᏭᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏎᎴᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ ᎬᏔᏲᏏ ᎯᏅᏏᏓᏍᏗ ᏌᏉ ᎢᎧᏁᏨᎯ ᏣᏁᏤᏗᏱ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ; ᎠᎴ ᏞᏍᏗ ᏱᎾᎸᏤᎴᏍᏗ ᎯᏅᏏᏓᏍᏗ; ᏇᎵᏲᏰᏃ ᏄᏍᏛ ᎾᏍᎩᏯ ᏂᏣᏍᏗ ᏂᎯ.\nᏂᎯᏰᏃ ᏣᎬᏫᏳᎯ ᏕᎭᏛᏛᏅᎩ ᏘᏅᏏᏓᏍᏗ, ᎯᎠ ᏥᏂᏣᏪᏒᎩ, ᏥᎪ ᎢᏥᏙᏓ ᎡᎭ, ᎠᎴ ᎢᏥᏅᏟ?\nᎠᎴ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ ᏣᎬᏫᏳᎯ, ᎣᎩᏙᏓ ᎡᎭ, ᎤᏛᏐᏅᎯ, ᎠᎴ ᎤᏪᏥ ᎤᏛᏐᏅᎯ ᎨᏒ ᎤᏕᏁᎸᎢ, ᎠᏲᎵᏉ; ᎤᏂᎵᏃ ᎤᏲᎱᏒ, ᎠᎴ ᎤᏩᏒ ᎤᏕᎯᏴ ᎤᏥ ᏧᏪᏥᏛᎯ, ᎤᏙᏓᏃ ᎤᎨᏳᎯᏳ ᎢᎩ.\nᏘᏅᏏᏓᏍᏗᏃ ᎯᎠ ᏥᏂᏕᎯᏪᏎᎸᎩ, ᏍᎩᏯᏘᏃᎮᎸᎭ, ᎠᎴ ᎾᏍᎩ ᏕᏥᏯᎦᎿᏅᎭ.\nᎠᎴ ᎯᎠ ᏥᏂᏨᏪᏎᎸᎩ ᏣᎬᏫᏳᎯ, ᎠᏫᏄᏣ ᎥᏝ ᎬᏮᏕᎢᏍᏗ ᏱᎩ ᎤᏙᏓ; ᎢᏳᏰᏃ ᎤᏙᏓ ᏳᏮᏕᏨ, [ᎤᏙᏓ] ᏯᏲᎱᎯ.\nᎠᎴ ᎯᎠ ᏥᏂᏕᎯᏪᏎᎸᎩ ᏘᏅᏏᏓᏍᏗ, ᎢᏳᏃ ᏁᏣᏘᏃᎸᎾ ᎢᎨᏎᏍᏗ ᎣᏂ ᎡᎯ ᎢᏥᏅᏟ, ᎥᏝ ᎿᏉ ᎢᎸᎯᏳ ᏴᎨᏥᎪᏩᏛ ᎠᏆᎧᏛᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎿᏉ ᏫᎣᏥᎷᏤᎸ ᎯᏅᏏᏓᏍᏗ ᎡᏙᏓ, ᎣᏥᏃᏁᎸᎩ ᏂᏣᏪᏒ ᏣᎬᏫᏳᎯ.\nᎣᎩᏙᏓᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏔᎵᏁ ᏥᏤᎾ, ᎤᏍᏗ ᎠᎵᏍᏓᏴᏗ ᏫᏍᎩᏩᎯᏏ.\nᎯᎠᏃ ᏃᎩᏪᏒᎩ, ᎥᏝ ᏴᎦᏲᏤᎾ; ᎢᏳᏍᎩᏂ ᎣᏂ ᎡᎯ ᏍᎩᏅᏟ ᏲᏤᎭ, ᎩᎳ ᏲᏤᎾ; ᎥᏝᏰᏃ ᏴᎦᏲᏥᎪᏩᏛ ᎾᏍᎩ ᎠᏍᎦᏯ ᎤᎧᏛ, ᎬᏂ ᎣᏂ ᎡᎯ ᏍᎩᏅᏟ ᏲᏤᎭ.\nᎯᏅᏏᏓᏍᏗᏃ ᎡᏙᏓ ᎯᎠ ᏃᎩᏪᏎᎸᎩ, ᏂᎯ ᎢᏥᎦᏔᎭ ᎠᏆᏓᎵᎢ ᎠᏂᏔᎵᏉ ᎠᏂᏧᏣ ᏓᎩᎾᏄᎪᏫᏎᎸᎢ;\nᏌᏉᏃ ᎢᎸᎯᏢ ᏩᎩᎶᎯᏎᎸᎢ, ᎠᎴ ᎯᎠ ᎾᎩᏪᏒᎢ, ᎤᏙᎯᏳᎯᏯ ᎠᏥᏓᎦᎸᎢᏒ; ᎥᏝᏃ ᎣᏂ ᏱᏥᎪᎣᎢ;\nᎢᏳᏃ ᎾᏍᏉ ᎯᎠ ᏱᏍᎩᏯᏅᎡᎸ ᎠᎴ ᎤᏲ ᏱᏄᎵᏍᏓᏁᎸ, ᎤᏁᎬ ᏗᎩᏍᏗᏰᎩ ᏧᏂᏲᎱᏒᎯ ᏩᏁᎲ ᏮᏓᏍᎩᏯᏘᏃᎵ ᎤᏲ ᎬᏆᏓᏅᏘ.\nᎢᏳᏃ ᎾᏍᎩ ᏫᏥᎷᏤᎸᎭ ᎯᏅᏏᏓᏍᏗ ᎡᏙᏓ, ᏃᏤᎲᎾᏃ ᎢᎨᏎᏍᏗ ᎠᏫᏄᏣ, (ᎤᏩᏒᏰᏃ ᎬᏅᎠᏫᏄᏣ ᎬᏅ ᎬᎿᏗᏍᏗ;)\nᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎿᏉ ᎠᎪᎲ ᎠᏫᏄᏣ ᏃᏤᎲᎾ ᎨᏒᎢ, ᎾᏍᎩ ᏛᏲᎱᏏᏉ; ᎠᎴ ᏘᏅᏏᏗ ᎾᏍᎩ ᎤᏁᎬ ᏧᏍᏘᏰᎩ ᎯᏅᏏᏓᏍᏗ ᎣᎩᏙᏓ ᏧᏂᏲᎱᏒᎩ ᏩᏁᎲ ᏮᏓᏲᏣᏘᏃᎵ ᎤᏲ ᎬᏩᏓᏅᏘ.\nᎠᏴᏰᏃ ᏍᎩᏅᏏᏓᏍᏗ ᏔᎵ ᏥᏯᏛᏓᏁᎸᎩ ᎠᏫᏄᏣ, ᎡᏙᏓ ᏥᏯᏚᏓᎳᏁᎸᎩ, ᎯᎠ ᎾᎩᏪᏒᎩ, ᎢᏳᏃ ᏔᎵᏁ ᏂᎬᏯᏘᏃᎮᎸᎾ ᎢᎨᏎᏍᏗ, ᎠᏴ ᎬᏍᎦᏅᏤᎸᎯ ᎨᏎᏍᏗ ᎡᏙᏓ ᏂᎪᎯᎸᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᏅᏏᏓᏍᏗ ᏩᏘᎩᏴ ᏩᏓᏁᏟᏴᏍᏓᏏ ᎠᏫᏄᏣ, ᎾᏍᎩ ᎯᎾᏝᎢ ᏫᏂᎦᎵᏍᏓ ᏩᎬᏫᏳᎯ; ᎠᏫᏄᏣᏃ ᏧᏂᎵ ᏫᎠᏁᎾ.\nᎦᏙᏰᏃ ᏱᎦᎵᏍᏙᏓ ᎡᏙᏓ ᏱᏫᏥᎷᏥᏏ, ᎠᏫᏄᏣ ᏃᏍᏕᎲᎾ ᏱᎩ? ᎠᎴ ᏱᏥᎪᏩᏛ ᎤᏲ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏒ ᎡᏙᏓ?\nᎠᏯᏙᎸᎢ 45\nᏦᏩᏃ ᎥᏝ ᎬᏩᏛᏂᏗᏍᏗ ᏱᎨᏎ ᏂᎦᏛ ᎠᏂᎦᏔᎲ ᎾᏍᎩ ᎾᎿ ᎠᏂᏙᎾᎢ; ᎾᏍᎩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏂᎦᏛ ᎩᏄᎪᏩ ᏥᏯᎥᎢ; ᎥᏝᏃ ᎩᎶ ᏦᏩ ᏱᏓᏂᏙᎨ, ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸ ᎠᎾᎵᏅᏟ ᎾᏍᎩ ᎨᏒᎢ.\nᎠᏍᏓᏯᏃ ᏚᏠᏱᎴᎢ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎤᎾᏛᎦᏁᎢ, ᎠᎴ ᏇᎵᏲ ᏚᏓᏘᎾᎥ ᎤᎾᏛᎦᏁᎢ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᏴ ᏦᏩ; ᎡᏙᏓᏍᎪ ᎠᏏᏉᎡᎭ? ᎠᎾᎵᏅᏟᏃ ᎥᏝ ᎦᎬᏩᏁᏤᏗ ᏱᎨᏎᎢ; ᎤᎾᏕᏯᏙᏗᏍᎨᏰᏃ ᎬᏩᎪᏩᏗᏍᎬᎢ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎾᎥ ᏍᎩᎷᏥᏏ; ᎾᎥᏃ ᎤᏂᎷᏤᎢ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴ ᏦᏩ ᎢᏥᏅᏟ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏩᎦᏘᏅᏍᏙᏗᏱ ᏤᏥᎾᏗᏅᏒᎩ.\nᎿᏉᏃ ᎥᏞᏍᏗ ᎤᏲ ᏱᏣᏓᏅᏖᏍᏗ, ᎠᎴ ᏞᏍᏗ ᎢᏨᏒ ᏱᏣᏓᏂᏆᏘᎮᏍᏗ, ᎾᏍᎩ ᎡᏍᎦᏂ ᏗᏍᎩᎾᏗᏅᏍᏔᏅᎢ; ᎤᏁᎳᏅᎯᏰᏃ ᎢᎬᏱ ᏗᎩᏅᏎ ᏓᏅᏅ [ᏴᏫ] ᏗᎦᏥᏍᏕᎸᎡᏗᏱ.\nᎿᏉᏰᏃ ᏔᎵ ᎾᏕᏘᏴ ᏓᎪᏄᎶᎯ; ᎠᎴ ᎠᏏ ᎾᏍᎩ ᏧᏕᏘᏴᏛ, ᎥᏝ ᎦᏓᎷᎪᏗᏱ ᎠᎴ ᎠᏍᎫᏕᏍᏗᏱ ᏱᎨᏎᏍᏗ.\nᎤᏁᎳᏅᎯᏃ ᎢᎬᏱ ᏗᎩᏅᏒ, ᎢᏨᏍᏕᎸᎡᏗᏱ ᎢᏣᏁᏢᏔᏅᎯ ᎨᏒ ᎡᎶᎯ, ᎠᎴ ᏕᏨᏅ ᏗᏨᏍᏕᎸᎡᏗᏱ, ᎤᏣᏘ ᎤᏍᏆᏂᎪᏗ ᎬᏗᏍᎬ ᎢᏨᏳᏓᎴᏍᎬᎢ.\nᎾᏍᎩᏃ ᎥᏝ ᏂᎯ ᎠᏂ ᏴᏗᏍᎩᏅᏎᎢ, ᎤᏁᎳᏅᎯᏍᎩᏂ; ᎠᎴ ᏇᎵᏲ ᎤᏙᏓ ᎾᏋᏁᎸ, ᎠᎴ ᎾᎩᎬᏫᏳᏒ ᏂᎦᎥ ᎦᏁᎸᎢ, ᎠᎴ ᏨᏆᏁᎶᏗ ᏂᎬᎾᏛ ᎢᏥᏈᏱ.\nᏞᎩᏳᏃ ᎡᏙᏓ ᏪᏥᎷᏥᏏ, ᎠᎴ ᎯᎠ ᏫᏁᏥᏪᏏ, ᎯᎠ ᏂᎦᏪᎭ ᏤᏥ ᏦᏩ, ᎤᏁᎳᏅᎯ ᏨᏆᏁᎶᏗ ᎾᏋᏁᎸ ᏂᎬᎾᏛ ᎢᏥᏈᏱ; ᏖᏒᎭ ᏍᎩᎷᏤᎸᎭ, ᏞᏍᏗ ᏣᏙᎯᏛᎩ.\nᎪᏌᏂᏃ ᏚᏙᎥ ᎭᏁᎳᏛᎭ, ᎠᎴ ᎾᎥᏉ ᏂᏕᎩᎾᏓᎴᏍᏗ, ᏂᎯ ᎠᎴ ᏗᏤᏥ, ᎠᎴ ᏗᏤᏥ ᏧᏁᏥ, ᎠᎴ ᏗᏣᏤᎵ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏂᎦᎥ ᏣᏤᎵ ᎨᏒᎢ.\nᎠᎴ ᎾᎿ ᏓᎬᏰᎶᎵ; ᎠᏏᏰᏃ ᎾᏍᎩ ᏧᏕᏘᏴᏛ ᏥᏓᎪᏄᎸ; ᏂᎯᏰᏃ, ᎠᎴ ᏕᏣᏓᏘᎾᎥᎢ, ᎠᎴ ᏂᎦᏛ ᏗᏣᏤᎵ ᎨᏒ ᎤᏲ ᎢᏣᏛᎿᏕᎩ ᏱᏂᎦᎵᏍᏓ.\nᎠᎴ ᎬᏂᏳᏉ, ᏗᏥᎦᏙᎵ ᏓᎪᏩᏘᎭ, ᎠᎴ ᎥᎩᏅᏟ ᏇᏂ ᏗᎦᏙᎵ ᎾᏍᎩ ᎠᏴ ᏥᎣᎵ ᎨᏒ ᏥᏥᏬᏁᏗᎭ.\nᎠᎴ ᎡᏥᏃᏁᎸᎭ ᎡᏙᏓ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᎾᏆᏛᏅ ᎢᏥᏈᏱ, ᎠᎴ ᏂᎦᎥ ᎢᏥᎪᎲᎢ; ᎠᎴ ᏞᎩᏳ ᎠᏂ ᎡᏙᏓ ᎡᏣᏘᏃᎸᎭ.\nᎠᎴ ᎤᏅᏟ ᏇᏂ ᎠᎩᎵᎨᏂ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᏚᏠᏱᎴᎢ; ᎠᎴ ᏇᏂ ᏚᏠᏱᎴ ᏦᏩ ᎠᎩᎵᎨᏂ ᎦᏯᎸᎢ.\nᎠᎴ ᎾᏍᏉ ᏚᏙᏪᏙᏁ ᏂᎦᏛ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏚᏪᏯᎸᏤ ᏚᏠᏱᎴᎢ; ᎩᎳᏃ ᎣᏂ ᎠᎾᎵᏅᏟ ᎬᏩᎵᏃᎮᏔᏁᎢ.\nᎠᏂᏃᎮᏍᎬᏃ ᎾᏍᎩ ᏇᎵᏲ ᎦᏁᎸ ᎢᏴᏛ ᏭᎾᏛᎦᏁᎢ, ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᏦᏩ ᎠᎾᎵᏅᏟ ᎠᏂᎷᎩ; ᏇᎵᏲᏃ ᎣᏂᏳ ᎤᏰᎸᏁᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏅᏏᏓᏍᏗ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎢᏣᎵᏅᏟ ᎯᎠ ᏂᎩᏪᏏ, ᎯᎠ ᏂᏣᏛᎦ; ᏗᏥᏐᏈᎸᎦ ᏗᏥᏐᏈᎸᏗ, ᎠᎴ ᎢᏤᎾ ᎨᎾᏂᏱ ᏫᏥᎶᎯ;\nᎠᎴ ᏙᏗᏣᏘᏁᏒᎭ ᎢᏥᏙᏓ ᎠᎴ ᏕᏣᏓᏘᎾᎥᎢ, ᎠᎴ ᎠᏴ ᏍᎩᎷᏤᎸᎭ; ᎠᎴ ᎣᏌᏂ ᎦᏙᎯ ᎢᏥᏈᏱ ᏓᏨᏁᎵ, ᎠᎴ ᎦᏙᎯ ᎦᎵᏦᏅ ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ.\nᎿᏉ ᎡᏣᏁᏥ, ᎯᎠ ᎾᏍᎩ ᏂᏣᏛᎦ; ᏓᏆᎴᎷ ᎠᏂ ᎢᏥᏈᏱ ᏗᏥᏫᏛ, ᏧᎾᏦᏗ ᏗᏤᏥ ᏧᎾᏍᏗᎦ, ᎠᎴ ᏗᏣᏓᎵᎢ, ᎢᏥᏙᏓᏃ ᏤᏣᏘᏁᏒᎭ, ᎠᎴ ᎢᏥᎷᏨᎭ.\nᎠᎴ ᏞᏍᏗ ᏱᏥᎨᏳᎲᏍᎨᏍᏗ ᎪᎱᏍᏗ ᎢᏥᎿᎥᎢ; ᎣᏌᏂᏰᏃ ᎦᏙᎯ ᎢᏥᏈᏱ ᎢᏣᏤᎵᎦ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎾᏍᎩ ᏄᎾᏛᏁᎴᎢ; ᏦᏩᏃ ᏚᏁᎴ ᏓᏆᎴᎷ ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏁᏨ ᏇᎵᏲ, ᎠᎴ ᎤᎾᎡᏃᏗ ᏚᏁᎴ ᏩᎾᎢᏒᎢ.\nᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᏚᏅᏁᎴ ᏧᎾᏄᏩᎢᏴᏍᏗ ᏗᏄᏬ; ᏇᏂᏍᎩᏂ ᏦᎢᏧᏈ ᎠᏰᎵ ᎠᏕᎸ ᏚᏁᎴᎢ, ᎯᏍᎩᏃ ᎢᏧᏄᏩᎢᏴᏍᏗ ᏗᏄᏬ;\nᎤᏙᏓᏃ ᎯᎠ ᏄᏍᏕ ᏭᏁᎴᎢ; ᎠᏍᎪᎯ ᏗᏂᎵᎠᏅᎯᏛ ᏗᏐᏈᎵ ᎣᏌᏂ ᎢᏥᏈᏱ ᎤᏕᏅᎯ, ᎠᎴ ᎠᏍᎪᎯ ᎠᏂᎩᏏ ᏗᏂᎵᎠᏅᎯᏛ ᏗᏐᏈᎵ ᎤᏣᎴᏍᏗ, ᎠᎴ ᎦᏚ, ᎠᎴ ᎤᏕᏃᏗ, ᎤᏙᏓ ᏣᎢᏒ ᎤᎵᏍᏓᏴᏗ.\nᎾᏍᎩᏃ ᏚᏂᎩᏍᏔᏁ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᎾᏂᎩᏎᎢ; ᎯᎠᏃ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏫᏣᎢᏒᏉ ᏥᏥᏲᏠᎯᏎᎵ.\nᎤᏂᏄᎪᏤᏃ ᎢᏥᏈᏱ, ᎠᎴ ᎨᎾᏂᏱ ᏭᏂᎷᏤ, ᏤᎦᏈᏱ ᎤᏂᏙᏙᏱ,\nᎠᎴ ᎤᏂᏃᏁᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏦᏩ ᎠᏏᏉ ᎡᎭ, ᎠᎴ ᎾᏍᎩ ᎤᎬᏫᏳᎯ ᏂᎬᎾᏛ ᎢᏥᏈᏱ; ᏤᎦᏈᏃ ᎤᎾᏫ ᎤᎸᏕᎴᎢ, ᎥᏝᏰᏃ ᏱᏚᏬᎯᏳᏁᎢ.\nᎬᏩᏃᏁᎴᏃ ᎾᏍᎩ ᏂᎦᏛ ᏦᏩ ᏄᏪᏒᎢ, ᎾᏍᎩ ᏚᏬᏁᏔᏅᎢ; ᎠᎴ ᎿᏉ ᏚᎪᎲ ᏓᏆᎴᎷ ᎾᏍᎩ ᏦᏩ ᏂᏙᏓᏳᏓᏅᏏᏛ ᏧᏦᏗ, ᎤᏂᏙᏓ ᏤᎦᏈ ᎤᏓᏅᏙ ᎤᏩᏂᎦᎵᏍᏙᏎᎢ.\nᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎢ, Ꭷ, ᏰᎵᏉ; ᏦᏩ ᎠᏇᏥ ᎠᏏᏉ ᎡᎭ; ᏓᎨᏏ ᏓᏥᏯᎦᏔᏁᏏ ᎠᏏᏉ ᎾᎩᏲᎱᏒᎾ.\nᎠᏯᏙᎸᎢ 46\nᎢᏏᎵᏃ ᎤᏂᎩᏎ ᏚᏘᏅᏎ ᏂᎦᏛ ᏚᏪᎧᎲᎢ, ᎠᎴ ᏈᏯᏏᏆ ᏭᎷᏤᎢ, ᎠᎴ ᎠᏥᎸ ᎤᏪᎴᎴ ᎤᏁᎳᏅᎯ, ᎤᏙᏓ ᎡᏏᎩ ᎤᏤᎵᎦ.\nᎤᏁᎳᏅᎯᏃ ᎢᏏᎵ ᎤᏁᏤᎴ ᏒᏃᏱ ᎤᏁᎳᏫᏎᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏤᎦᏈ, ᏤᎦᏈ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏂ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴ ᎠᏆᏁᎳᏅᎯ, ᏣᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ; ᏞᏍᏗ ᏱᏍᎦᎢᎮᏍᏗ ᎢᏥᏈᏱ ᏤᏅᏍᏗᏱ; ᎾᎿᏰᏃ ᏂᎯ ᎡᏉᎯᏳ ᎤᎾᏓᏣᎵᏛ ᏴᏫ ᏅᏓᎬᏴᏁᎵ;\nᎠᏴ ᏙᏓᎬᎦᎿᏩᏗᏙᎵ ᎢᏥᏈᏱ ᏫᎦᎷᎩ; ᎠᎴ ᎤᏙᎯᏳᎯᏯ ᏔᎵᏁ ᏛᎬᏯᏘᏃᎵ; ᎠᎴ ᏦᏩ ᎠᏎ ᏙᏛᏏᏔᏗ ᏘᎦᏙᎵ.\nᏤᎦᏈᏃ ᎤᏂᎩᏎ ᏈᏯᏏᏆ, ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏘᏅᏎ ᏤᎦᏈ ᎤᏂᏙᏓ, ᎠᎴ ᎾᏍᎩ ᏧᏁᏥ ᏄᎾᏍᏗᎦ, ᎠᎴ ᏧᎾᏓᎵᎢ, ᏚᏂᏲᏔᏁ ᏓᏆᎴᎷ ᎾᏍᎩ ᏇᎵᏲ ᏥᏙᏧᏓᏅᏎ ᏧᏦᏗ.\nᎠᎴ ᎦᎾᏝᎢ ᏚᎾᏘᏅᏎᎢ, ᎠᎴ ᏧᎬᏩᎶᏗ ᎤᏂᏴᏎ ᎾᏍᎩ ᎨᎾᏂᏱ ᎤᏂᏟᏌᏅᎯ, ᎢᏥᏈᏱᏃ ᏭᏂᎷᏤᎢ, ᏤᎦᏈ, ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎨᏒ ᎠᏁᎮᎢ.\nᏧᏪᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᏁᏥ ᎠᏁᎮᎢ, ᎠᎴ ᏧᏪᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᏧᏁᏥ ᎠᏂᎨᏴ, ᎠᎴ ᏂᎦᏛ ᎤᏁᏢᏔᏅᎯ ᎨᏒ ᎢᏥᏈᏱ ᏫᏚᏘᏃᎴᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏗ ᏚᎾᏙᎥ ᏘᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᏥᏭᏂᎷᏤ ᎢᏥᏈᏱ, ᏤᎦᏈ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ; ᎷᏈᏂ, ᏤᎦᏈ ᎢᎬᏱ ᎤᏕᏁᎸᎯ.\nᎷᏈᏂᏃ ᏧᏪᏥ, ᎭᏃᎦ, ᎠᎴ ᏆᎷ, ᎠᎴ ᎮᏏᎶᏅ, ᎠᎴ ᎧᎹ.\nᏏᎻᏯᏂᏃ ᏧᏪᏥ, ᏥᎽᎡᎵ, ᎠᎴ ᏤᎻᏂ, ᎠᎴ ᎣᎭᏗ, ᎠᎴ ᏤᎩᏂ, ᎠᎴ ᏐᎭ, ᎠᎴ ᏐᎵ ᎨᎾᏂ ᎡᎯ ᎠᎨᏴ ᎤᏪᏥ.\nᎵᏫᏃ ᏧᏪᏥ, ᎦᏐᏂ, ᎪᎭᏗ, ᎠᎴ ᎻᎴᎳ.\nᏧᏓᏃ ᏧᏪᏥ, ᎥᎵ, ᎠᎴ ᎣᎾᏂ, ᎠᎴ ᏏᎳ, ᎠᎴ ᏇᎵᏏ, ᎠᎴ ᏎᎳ; ᎠᏎᏃ ᎥᎵ ᎠᎴ ᎣᎾᏂ ᎨᎾᏂᏱᏉ ᎢᏴᏛ ᏚᏂᏲᎱᏎᎢ. ᎯᎠᏃ ᎾᏍᎩ ᏇᎵᏏ ᏧᏪᏥ, ᎮᏏᎶᎻ, ᎠᎴ ᎮᎹᎵ.\nᎢᏏᎦᏃ ᏧᏪᏥ, ᏙᎳ, ᎠᎴ ᏊᏩ, ᎠᎴ ᏦᏈ ᎠᎴ ᏏᎻᎶᏂ.\nᏤᏆᎳᏂᏃ ᏧᏪᏥ, ᏏᎴᏗ, ᎠᎴ ᎢᎶᏂ, ᎠᎴ ᏣᎵᎵ.\nᎯᎠ ᎾᏍᎩ ᎵᎠ ᏧᏪᏥ, ᎾᏍᎩ ᏧᎾᏄᎪᏫᏎᎸᎯ ᏤᎦᏈ ᏇᏓᏁᎳᎻᏱ, ᎠᎴ ᎠᎨᏴ ᎤᏪᏥ ᏓᏱᎾ; ᎾᏂᎥᏃ ᎾᏍᎩ ᏤᎦᏈ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ ᏦᎠᏍᎪᎯ ᏦᎢᎦᎵ ᎾᏂᎡᎢ.\nᎦᏗᏃ ᏧᏪᏥ; ᏥᏈᏲᏂ, ᎠᎴ ᎭᎩ, ᎠᎴ ᏑᏂ, ᎠᎴ ᎡᏏᏉᏂ, ᎢᎳ, ᎠᎴ ᎡᎶᏗ, ᎠᎴ ᎡᎵᎳ.\nᎡᏌᏃ ᏧᏪᏥ; ᏥᎻᎾ, ᎠᎴ ᎢᏑᎠ, ᎠᎴ ᎢᏑᎢ, ᎠᎴ ᏈᎳᏯ, ᎠᎴ ᏏᎳ ᎾᏍᎩᏉ ᎤᏂᏙ; ᏈᎳᏯᏃ ᏧᏪᏥ; ᎯᏆ ᎠᎴ ᎹᎵᎦᏱᎵ.\nᎯᎠ ᎾᏍᎩ ᏏᎵᏆ ᏧᏪᏥ ᎾᏍᎩ ᎴᏈᏂ ᏧᏪᎧᏁᎸᎯ ᎤᏪᏥ ᎵᎠ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏚᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ, ᏓᎳᏚ ᎢᏯᏂᏛ.\nᎴᏥᎵᏃ ᏧᏪᏥ ᎾᏍᎩ ᏤᎦᏈ ᎤᏓᎵᎢ; ᏦᏩ ᎠᎴ ᏇᏂ.\nᏦᏩᏃ ᎢᏥᏈᏱ ᎬᏩᏕᏁᎸᎯ ᎾᏍᎩ ᎻᎾᏌ, ᎠᎴ ᎢᏆᎻ, ᎾᏍᎩ ᎠᏏᎾ ᏉᏗᏈᎳ ᎣᏂ ᏚᏙᎥ ᎠᏥᎸ ᏗᎨᎴᎯ ᎤᏪᏥ ᏧᎾᏄᎪᏫᏎᎸᎯ.\nᏇᏂᏃ ᏧᏪᏥ, ᏈᎳ, ᎠᎴ ᏈᎦ, ᎠᎴ ᎠᏏᏇᎵ, ᎠᎴ ᎩᎳ, ᎠᎴ ᏁᎡᎹᏂ, ᎠᎴ ᎢᎭ, ᎠᎴ ᎶᏏ, ᎹᏈᎻ, ᎠᎴ ᎭᏈᎻ, ᎠᎴ ᎠᏗ.\nᎯᎠ ᎾᏍᎩ ᎴᏥᎵ ᏧᏪᏥ, ᎾᏍᎩ ᏤᎦᏈ ᎬᏩᏕᏁᎸᎯ; ᏂᎦᏛᏃ ᏂᎦᏚ ᎾᏂᎡᎢ.\nᏕᏂᏃ ᏧᏪᏥ ᎱᏏᎻ.\nᏁᏩᏔᎵᏃ ᏧᏪᏥ; ᏣᏏᎵ, ᎠᎴ ᎫᏂ, ᎠᎴ ᏤᏌ, ᎠᎴ ᏏᎵᎻ.\nᎯᎠ ᎾᏍᎩ ᏈᎳ ᏧᏪᏥ, ᎾᏍᎩ ᎴᏈᏂ ᏧᏪᎧᏁᎴ ᎤᏪᏥ ᎴᏥᎵ, ᎾᏍᎩᏃ ᎯᎠ ᏚᎾᏄᎪᏫᏎᎴ ᏤᎦᏈ; ᏂᎦᏛᏃ ᎦᎵᏉᎩ ᎾᏂᎡᎢ.\nᏂᎦᏛᏃ ᏴᏫ ᏤᎦᏈ ᏧᏂᎷᏤ ᎢᏥᏈᏱ, ᎾᏍᎩ ᏅᏓᏳᎾᏓᎴᏅᎯ, ᏂᏓᏁᏢᏛᎾ ᏤᎦᏈ ᏧᏪᏥ ᏧᎾᏓᎵᎢ, ᏂᎦᏛ ᎾᏍᎩ ᏴᏫ ᏑᏓᎵᏍᎪᎯ ᏑᏓᎵᎦᎵ ᎾᏂᎡᎢ.\nᏦᏩᏃ ᏧᏪᏥ ᎢᏥᏈᏱ ᎬᏩᏕᏁᎸᎯ ᎠᏂᏔᎵ ᎨᏎᎢ; ᏂᎦᏛᏃ ᏴᏫ ᏤᎦᏈ ᏚᏓᏘᎾᎥᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᏳᏂᎶᏒᎯ, ᎦᎵᏆᏍᎪᎯ ᎾᏂᎡᎢ.\nᏧᏓᏃ ᎤᏅᏎ ᎢᎬᏱ ᏭᎶᎯᏍᏗᏱ ᏦᏩ ᏧᏬᎸᎢ, ᎾᏍᎩ ᎪᏌᏂ ᎢᏗᏢ ᏭᎦᏙᏗᏱ; ᎠᎴ ᎪᏌᏂ ᎦᏓ ᎠᎲ ᏭᏂᎷᏤᎢ.\nᏦᏩᏃ ᎤᏛᏅᎢᏍᏔᏁ ᏓᏆᎴᎷ, ᎠᎴ ᎪᏌᏂ ᎤᏪᏅᏎ ᏚᏠᏒᏎ ᎤᏙᏓ ᎢᏏᎵ, ᎠᎴ ᎬᏂᎨᏒ ᏄᏛᏁᎴᎢ; ᎠᎴ ᎠᎩᎵᎨᏂ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᎤᏬᎯᏤ ᏚᏠᏱᎴ ᎠᎩᎵᎨᏂ ᎤᏯᎸᎢ.\nᎠᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, Ꭷ, ᎿᏉ ᏫᏥᏲᎤᎯ, ᎾᏍᎩ ᏣᎧᏛ ᎠᏏ ᏨᏥᎪᏩᏛ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏏᏉ ᎲᏅᎢ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎾᏍᎩ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ, ᏓᎨᏏ, ᎠᎴ ᎬᏂᎨᏒ ᏅᏓᏥᏴᏁᎵ ᏇᎵᏲ, ᎠᎴ ᎯᎠ ᏅᏓᎦᏥᏪᏎᎵ, ᎣᏣᎵᏅᏟ, ᎠᎴ ᎡᏙᏓ ᏚᏓᏘᎾᎥᎢ, ᎾᏍᎩ ᎨᎾᏂᏱ ᏣᏁᎲᎩ, ᎬᎩᎷᏥ;\nᎠᎴ ᎠᏂᏍᎦᏯ ᎠᏫ ᏗᏂᎦᏘᏯ, ᎦᎾᏝᎢᏰᏃ ᏗᏂᎧᎿᏩᏗᏙᎯ, ᎠᎴ ᏚᎾᏘᏃᎸ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏂᎦᏛ ᎤᏂᎿᎥᎢ.\nᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎿᏉ ᎾᏍᎩ ᏇᎵᏲ ᏗᏥᏯᏅᎲᎭ, ᎠᎴ ᎯᎠ ᏂᎦᏪᏒᎭ, ᎦᏙ ᎤᏍᏗ ᏗᏥᎸᏫᏍᏓᏁᎯ?\nᎯᎠ ᎾᏍᎩ ᏂᏥᏪᏒᎭ, ᏘᏅᏏᏓᏍᏗ ᎦᎾᏝᎢ ᏗᏂᎧᎿᏩᏗᏙᎯ ᎨᏒᎩ, ᏙᏧᎾᏛᏒ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏘ, ᎠᏴ ᎣᎬᏒ ᎨᏒ, ᎠᎴ ᎾᏍᏉ ᏦᎩᎦᏴᎵᎨᎢ; ᎾᏍᎩ ᎪᏌᏂ ᎦᏓ ᎠᎲ ᎨᏣᏕᏗ ᏱᏂᎦᎵᏍᏓ; ᎾᏂᎥᏰᏃ ᎠᏫ ᏗᏂᎦᏘᏯ ᎤᏂᏍᎦᎢᏍᏗᏳ ᏚᏂᏰᎸᎭ ᎢᏥᏈᏱ ᎠᏁᎯ.\nᎠᏯᏙᎸᎢ 47\nᏦᏩᏃ ᎤᎷᏤ ᎠᎴ ᎤᏃᏁᎴ ᏇᎵᏲ, ᎯᎠ ᏄᏪᏎᎢ, ᎡᏙᏓ ᎠᎴ ᎣᏣᎵᏅᏟ ᎠᏂᎷᎩ, ᎠᎴ ᎠᏫ ᏚᏂᎧᎲ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏂᎦᏛ ᏧᎾᏤᎵ ᎨᏒ ᎨᎾᏂᏱ ᏛᏂᎶᎯ, ᎠᎴ ᎬᏂᏳᏉ ᎪᏌᏂᏱ ᎠᏂᏅ.\nᎠᎾᎵᏅᏟᏃ ᎢᎦᏛ ᏚᏘᏅᏎᎢ, ᎯᏍᎩ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎢᎬᏱᏢ ᏚᏪᎧᏁᎴ ᏇᎵᏲ.\nᏇᎵᏲᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᏦᏩ ᎠᎾᎵᏅᏟ, ᎦᏙ ᎤᏍᏗ ᏗᏥᎸᏫᏍᏓᏁᎯ? ᎯᎠᏃ ᏄᏂᏪᏎᎴ ᏇᎵᏲ, ᏘᏅᏏᏓᏍᏗ ᎠᏫ ᏗᏂᎦᏘᏯ, ᎠᏴ ᎣᎬᏒ ᎨᏒ, ᎠᎴ ᎾᏍᏉ ᏦᎩᎦᏴᎵᎨᎢ.\nᎠᎴ ᎾᏍᏉ ᎯᎠ ᏄᏂᏪᏎᎴ ᏇᎵᏲ, ᎠᏂ ᎦᏓ ᎠᎲ ᎣᎦᏕᏗᏱ ᎣᎦᏚᎵᎭ ᏦᎩᎷᏥᎸ; ᏘᏅᏏᏓᏍᏗᏰᏃ ᎥᏝ ᏱᏚᏁᎭ ᎦᎾᏝᎢ ᎤᎾᎵᏍᏓᏴᏂᏓᏍᏗᏱ; ᎤᏣᏘᏰᏃ ᏓᎪᏄᎸ ᎨᎾᏂᏱ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏘᏅᏏᏓᏍᏗ ᏔᎵᏍᎪᎸᏓᏏ ᎪᏌᏂᏱ ᎤᎾᏕᏘᏱ.\nᏇᎵᏲᏃ ᎤᏁᏤᎴ ᏦᏩ, ᎯᎠ ᏄᏪᏎᎢ, ᏣᏙᏓ ᎠᎴ ᎢᏣᎵᏅᏟ ᎨᏣᎷᏥ.\nᎢᏥᏈᏱ ᎦᏓ ᎠᎲ ᎢᎬᏱᏢ ᏗᏣᎧᎾᏂᏓᏍᏗᏱ ᎠᎭ; ᎣᏌᏂ ᎨᏒ ᎦᏙᎯ ᎤᎾᏕᏗᏱ ᏂᎩᏴᏂᏏ ᏣᏙᏓ, ᎠᎴ ᎢᏣᎵᏅᏟ; ᎪᏌᏂ ᎦᏓ ᎠᎲ ᏫᏓᎾᏁᎳᏓ; ᎢᏳ ᎠᎴ ᏕᎯᎦᏔᎮᏍᏗ ᎩᎶ ᏗᏅᏂᎦᎵᏍᏗ ᎤᎾᏓᏑᏰᏍᏗ, ᎾᏍᎩ ᏗᏆᏤᎵ ᎦᎾᏝᎢ ᏧᎾᎦᏌᏯᏍᏗᏕᎩ ᏂᏕᎲᏁᎸᎭ.\nᏦᏩᏃ ᎤᏴᏔᏂᎴ ᎤᏙᏓ ᏤᎦᏈ, ᎠᎴ ᏇᎵᏲ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎤᏪᎧᏁᎢ; ᏤᎦᏈᏃ ᎣᏍᏛ ᎤᏁᏤᎴ ᏇᎵᏲ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎴ ᏤᎦᏈ, ᎢᎳᎪ ᎢᏣᏕᏘᏴᏛ?\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ, ᎢᎪᎯᏛ ᎠᏆᎴᏂᏙᎸ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎾᏕᏘᏴ; ᎦᏲᎵᏳᏉ, ᎠᎴ ᎤᏲᏉ ᏄᎵᏍᏔᏁᏅ ᎢᎪᎯᏛ ᏓᏆᏕᏘᏴᎲᏒᎢ, ᎠᎴ ᎥᏝ ᏗᎩᎦᏴᎵᎨ ᏚᎾᏕᏘᏴᎲᏒ ᏚᎾᎴᏂᏙᎸ ᏩᎩᏱᎶᎸᎯ ᏱᎩ.\nᏤᎦᏈᏃ ᎣᏍᏛ ᎤᏁᏤᎴ ᏇᎵᏲ, ᎠᎴ ᎤᏄᎪᏤ ᎤᏓᏅᏎ ᏇᎵᏲ ᎠᎦᏔᎲᎢ.\nᏦᏩᏃ ᎤᏙᏓ ᎠᎴ ᎠᎾᎵᏅᏟ ᏚᏪᎧᏁ ᏧᎾᏁᎳᏗᏍᏗᏱ, ᎠᎴ ᏚᏁᎴ ᎦᏓ ᎢᏥᏈᏱ ᎤᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ, ᎣᏌᏂ ᎦᏓ ᎠᎲᎢ, ᎳᎻᏏ ᏚᏙᎥᎢ, ᎾᏍᎩᏯ ᏇᎵᏲ ᎤᏁᏨᎢ.\nᏦᏩᏃ ᏕᎨᎶᎮ ᎤᏙᏓ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏂᎦᏛ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ, ᏓᏁᎮ ᎤᎾᎵᏍᏓᏴᏗ ᎾᏍᎩᏯ ᏂᏓᏂᎠᏗᏒ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒᎢ.\nᎥᏝ ᎠᎴ ᏰᎮ ᎠᎵᏍᏓᏴᏗ ᏂᎬᎾᏛ ᎾᎿ ᎦᏓ ᎠᎲᎢ; ᎤᏣᏘᏰᏃ ᏓᎪᏄᎴᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏈᏱ ᎠᎴ ᎨᎾᏂᏱ, ᏚᏂᏩᎾᎦᎶᏤᎢ, ᏓᎪᏄᎸ ᏂᎦᎵᏍᏙᏗᏍᎨᎢ.\nᏦᏩᏃ ᎤᏪᏟᏌᏁ ᏂᎦᏛ ᎠᏕᎸ ᎢᏥᏈᏱ ᎦᏓ ᎠᎲ ᎠᎴ ᎨᎾᏂ ᎦᏓ ᎠᎲ ᏗᎬᏩᏛᏗ ᎨᏒᎢ, ᏓᎬᏩᏓᏁᎲ ᎤᏣᎴᏍᏗ ᎤᏂᏩᏒᎯ; ᏦᏩᏃ ᏇᎵᏲ ᎦᏁᎸ ᏚᏲᎴ ᎠᏕᎸ.\nᎿᏉᏃ ᎠᏕᎸ ᎤᎾᏗᏒᏅ ᎢᏥᏈᏱ, ᎠᎴ ᎨᎾᏂᏱ, ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᎬᏩᎷᏤᎴ ᏦᏩ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎠᎵᏍᏓᏴᏗ ᏍᎩᎥᏏ; ᎦᏙᏃ ᏱᏙᏥᏲᎱᏍᎦ ᎯᎦᏔᎲᎢ? ᎠᏕᎸᏰᏃ ᎤᎾᏗᏒᏅ.\nᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏥᎾᏝᎾᎥ ᏗᏥᎧᎲᎦ; ᎢᏥᎾᏝᎾᎥᏃ ᏧᎬᏩᎳᏅᎯ ᏓᏨᏁᎵ, ᎢᏳᏃ ᎠᏕᎸ ᎠᎾᏗᏒᎲᏍᎨᏍᏗ.\nᎤᏂᎾᏝᎾᎥᏃ ᏚᎾᏘᏃᎮᎴ ᏦᏩ; ᏦᏩᏃ ᎠᎵᏍᏓᏴᏗ ᏚᏁᎴ ᏚᏁᏟᏴᏍᏓᏁᎴ ᏐᏈᎵ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏩᎦ, ᎠᎴ ᏐᏈᎵ ᏗᏂᎵᎠᏅᎯᏛ; ᎠᎵᏍᏓᏴᏗᏃ ᏚᏪᎳᏍᏔᏁ ᎤᏕᏘᏴᏌᏗᏒᎢ, ᏂᎦᏛ ᎤᏂᎾᏝᎾᎥ ᎾᎯᏳ ᏚᎬᏩᎶᏓᏁᎴᎢ.\nᎾᎯᏳᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎤᎵᏍᏆᏛ, ᏔᎵᏁ ᏭᏕᏘᏴᏌᏗᏒ ᎢᎬᏩᎷᏤᎴᎢ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, ᎥᏝ ᏴᏓᏨᏴᏍᎦᎳᏁᎵ ᏣᎬᏫᏳᎯ, ᎾᏍᎩ ᎠᏕᎸ ᏙᎦᏗᏒᏁᎸᎢ; ᎠᎴ ᎾᏍᏉ ᏣᎬᏫᏳᎯ ᏕᏣᎧᎭ ᎦᎾᏝᎢ ᏦᎩᎾᏢᏅᎯ; ᎥᏝ ᎿᏉ ᎪᎱᏍᏗ ᏲᎦᏘᏰᎭ ᎯᎦᏔᎲ ᏣᎬᏫᏳᎯ, ᏦᏥᏰᎸ ᎠᎴ ᎦᏓ ᏙᎩᎲ ᎤᏩᏒ.\nᎦᏙᏃ ᏲᏣᏗᏒᎲᏍᎦ ᏕᏍᎩᎦᏅᎢ, ᎠᏴ ᎠᎴ ᎦᏓ ᏙᎩᎲᎢ. ᏍᎩᏩᎯ ᎠᏴ, ᎠᎴ ᎦᏓ ᏙᎩᎲᎢ, ᎠᎵᏍᏓᏴᏗ ᏍᎩᏯᎫᏴᏓᏏ, ᎠᏴᏃ ᎠᎴ ᏦᎦᏤᎵᎦ ᎦᏓ ᏇᎵᏲ ᎣᎩᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᎦᏔ ᏍᎩᎥᏏ ᎾᏍᎩᏃ ᏙᏣᏛᏂᏛᎭ, ᎠᎴ ᏞᏍᏗ ᏦᎩᏲᎱᏒᎩ, ᎠᎴ ᏞᏍᏗ ᏅᏔ ᎢᏳᎵᏍᏔᏅᎩ ᎦᏓ ᎠᎲᎢ.\nᏦᏩᏃ ᎤᏩᎯᏎᎴ ᏇᎵᏲ ᏂᎦᏛ ᎦᏙᎯ ᎢᏥᏈᏱ; ᎢᏥᏈᏱᏰᏃ ᎠᏁᎯ ᎠᏂᏏᏴᏫᎭ ᏚᏂᎾᏗᏅᏎ ᏚᏂᎶᎨᏒᎢ, ᏂᎦᎵᏍᏙᏗᏍᎨ ᎤᏣᏘ ᏚᎾᎪᏄᎸᎢ; ᎦᏙᎯᏃ ᏇᎵᏲ ᎤᏤᎵᎦ ᏄᎵᏍᏔᏁᎢ.\nᏴᏫᏃ ᎨᏒᎢ, ᏕᎦᏚᎲ ᏚᏪᎧᏂᏙᎴᎢ ᏌᏉ ᎢᏗᏢ ᎤᎵᏍᏘᏂᎸ ᎢᏥᏈᏱ ᏐᎢᏱ ᏭᎵᏍᏘᏂᎸ ᏩᏍᏗ.\nᎠᏥᎸ ᎠᏁᎶᎯ ᎤᏂᎲ ᎦᏓ ᎤᏩᏒ, ᎥᏝ ᏳᏩᏎᎢ; ᎠᏥᎸᏰᏃ ᎠᏁᎶᎯ ᎤᏂᎮ ᏇᎵᏲ ᎤᎾᏁᎳᏁᎸᎯ, ᎠᎴ ᎠᎾᎵᏍᏓᏴᏗᏍᎨ ᏇᎵᏲ ᎤᏂᏁᎸᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏱᏚᏂᎾᏗᏅᏎ ᎦᏓ ᏚᏂᎲᎢ.\nᎿᏉᏃ ᏦᏩ ᎯᎠ ᏂᏚᏪᏎᎴ ᏴᏫ, ᎬᏂᏳᏉ ᎪᎯ ᎢᎦ ᏥᎩ, ᎢᏳᏩᎯ, ᎠᎴ ᎦᏓ ᎢᏥᎲᎢ, ᏇᎵᏲ ᏥᏩᎯᏏ; ᎬᏂᏳᏉ ᎠᏉ ᎠᎭ ᎤᎦᏔ ᎢᏥᎩᏍᏗ, ᎠᎴ ᏓᏥᏫᏏ ᎦᏙᎯ.\nᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎾᏍᎩ ᎤᏁᏉᏨᎯ ᎯᏍᎩᏁ ᎪᏣᎴᏛ ᎡᏥᏁᏗ ᎨᏎᏍᏗ ᏇᎵᏲ, ᏅᎩᏃ ᎢᏳᏓᏛᎯ ᎢᏨᏒ ᎢᏣᏤᎵ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏠᎨᏏ ᎠᏫᏍᏙᏗ, ᎠᎴ ᎢᏣᎵᏍᏓᏴᏗ, ᎠᎴ ᏕᏣᏓᏘᎾᎥ ᎤᎾᎵᏍᏓᏴᏗ, ᎠᎴ ᏗᏤᏥ ᏗᏂᏲᎵ ᎤᎾᎵᏍᏓᏴᏗ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᏂᎯ ᏕᏍᎩᏍᏕᎸᎡᎸ ᏙᏨᏅᎢ; ᎣᏍᏛ ᏍᎩᏯᏓᏅᏖᏗᏱ ᎢᏨᏩᏛᏏ ᏣᎬᏫᏳᎯ, ᏇᎵᏲᏃ ᏍᎩᏅᏏᏓᏍᏗ ᎨᏎᏍᏗ.\nᏦᏩᏃ ᏗᎧᎿᏩᏛᏍᏗ ᏄᏩᏁᎴ ᎦᏓ ᎠᎲ ᎢᏥᏈᏱ ᎪᎯ ᎢᏯᏍᏘ ᏇᎵᏲ ᎯᏍᎩᏂ ᎪᏣᎴᏛ ᎠᏥᏗᏱ; ᎠᏥᎸ ᎠᏁᎶᎯ ᎤᎾᏤᎵᎦ ᎦᏓ ᎤᏩᏒ ᎥᏝ ᎾᏍᎩ ᏇᎵᏲ ᎤᏤᎵᎦ ᏱᏄᎵᏍᏔᏁᎢ.\nᎢᏏᎵᏃ ᎢᏥᏈᏱ ᎠᏁᎮᎢ, ᎪᏌᏂ ᏚᏙᎥᎢ; ᎠᎴ ᏧᎾᏤᎵᎪᎯ ᏕᎨᏌᏗᏎ ᎾᎿᏂ, ᎠᎴ ᎤᎾᎥᏎᎢ, ᎠᎴ ᎤᏂᏁᏉᏤ ᎤᏣᏘ.\nᏤᎦᏈᏃ ᎦᎵᏆᏚ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴ ᎢᏥᏈᏱ; ᎾᏍᎩᏃ ᏂᎪᎯᎸ ᎤᎴᏂᏙᎸ ᏤᎦᏈ ᎠᏍᎪᎯᏧᏈ ᏅᎦᏍᎪᎯ ᎦᎵᏉᎩᎦᎵ ᏄᏕᏘᏴᎮᎢ.\nᎿᏉᏃ ᎤᏍᏆᎸᎯᏗᏎ ᎢᏏᎵ ᎤᏲᎱᎯᏍᏗᏱ; ᏭᏯᏅᎮᏃ ᎤᏪᏥ ᏦᏩ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗᏱ ᎬᏩᏛᎡᎴᏍᏗ, ᏥᎦᎶ ᏍᏆᏏᏄᏴᏓᏏ, ᎣᏍᏛᏃ ᎠᎴ ᏚᏳᎪᏛ ᏂᏍᏆᏛᏂᏏ; ᏞᏍᏗ ᎢᏥᏈᏱ ᏍᎩᏂᏌᏅᎩ.\nᏗᎩᎦᏴᎵᎨᏍᎩᏂ ᎢᏧᎳᎭ ᎣᏥᏂᏝᎡᏍᏗ, ᎠᎴ ᎢᏥᏈᏱ ᏍᎩᎾᏫᏛᎲᎭ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏓᏂᏐᏗᏱ ᏍᎩᏂᏌᏅᎭ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏂᏣᏪᏒ ᎾᏍᎩᏯ ᏅᏓᎦᏛᏁᎵ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏍᏆᏎᎵᏓᏏ. ᎤᏎᎵᏓᏁᎴᏃ. ᏭᏗᏌᏓᏕᏃ ᎠᏙᎳᏅᏍᏗᏱ ᎤᏍᎪᎵ ᎤᎵᏍᏕᎸᏕᎢ.\nᎠᏯᏙᎸᎢ 48\nᎯᎠᏃ ᎾᏍᎩ ᏄᎵᏍᏔᏂᏙᎸ, ᎣᏂ ᏦᏩ ᎯᎠ ᎾᏥᏪᏎᎴᎢ, ᎬᏂᏳᏉ ᏣᏙᏓ ᎤᏢᎦ; ᏧᏪᏥᏃ ᎢᏧᎳ ᏚᏘᏅᏎᎢ, ᎾᏍᎩ ᎻᎾᏌ ᎠᎴ ᎢᏆᎻ.\nᎩᎶᏃ ᎤᏃᏁᎴ ᏤᎦᏈ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᏤᏥ ᏦᏩ ᏣᎷᏤᎵᎯᎭ; ᎢᏏᎵᏃ ᎤᎵᏍᏓᏲᏔᏁᎢ, ᎠᎴ ᎠᏤᏍᏙᎩᎯ ᎤᏪᏁᎢ.\nᏤᎦᏈᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᎬᏂᎨᏒ ᎾᏆᏛᏁᎸᎩ ᎳᏏ ᏚᏙᎥ ᎨᎾᏂᏱ, ᎠᎴ ᎣᏍᏛ ᎠᎩᏁᏤᎸᎩ.\nᎠᎴ ᎯᎠ ᎢᏪᏎᎸᎩ, ᎬᏂᏳᏉ ᏣᏁᏉᏣᏘ ᏅᏓᎬᏴᏁᎵ, ᎠᎴ ᏓᎬᏁᏉᎢ, ᎠᎴ ᎤᏂᏧᏈᏍᏗ ᏛᏫ ᏅᏓᎬᏴᏁᎵ, ᎠᎴ ᎯᎠ ᎾᏍᎩ ᎦᏙᎯ ᏓᎦᏥᏁᎵ ᏣᏁᏢᏔᏅᎯ, ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎤᎾᏤᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ.\nᎿᏉᏃ ᎠᏂᏔᎵ ᏗᏤᏥ ᎢᏆᎻ, ᎠᎴ ᎻᎾᏌ ᎠᏂ ᎢᏥᏈᏱ ᎨᏣᏕᏁᎸᎯ, ᎠᏏ ᎢᏥᏈᏱ ᏂᎬᎷᏤᎲᎾ ᏥᎨᏒᎩ, ᎠᏴ ᏗᏆᏤᎵᎦ; ᎾᏍᎩᏯ ᎷᏈᏂ, ᎠᎴ ᏏᎻᏯᏂ, ᎾᏍᎩ ᏗᏆᏤᎵᎦ ᎨᏎᏍᏗ.\nᏂᎯᏃ ᏣᏁᏢᏔᏅᎯ ᎣᏂ ᎨᏣᏕᏁᏗ ᎨᏒ, ᏨᏒ ᏗᏣᏤᎵᎦ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᎾᎵᏅᏟ ᏚᎾᏙᎥ ᏕᎨᎪᏍᎨᏍᏗ ᎤᎾᏤᎵᎦ ᏂᎨᎬᏁᎲᎢ.\nᎠᏴᏃ ᏇᎵᏂ ᏨᏛᎩᎶᏒᎩ ᎴᏥᎵ ᏂᎦᏔᎲ ᎤᏲᎱᏒᎩ ᎨᎾᏂᏱ, ᎦᎢᏒᎢ, ᏑᏟᎶᏛᏉ ᎢᏴᏛ ᎠᎩᎷᎸ ᎢᏆᏓ ᏩᎩᎷᎯᏍᏗᏱ; ᎠᎴ ᎾᎿ ᏥᏂᏌᏅᎩ ᎢᏆᏓ ᏫᎦᏅᏅ, ᎾᏍᎩ ᎦᏚᏱ ᏥᏚᏙᎥ.\nᎢᏏᎵᏃ ᏚᎪᎮ ᏦᏩ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᎯᎠ?\nᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎠᏴ ᏗᏇᏥ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏂ ᏗᎩᎧᏁᎸᎯ. ᎯᎠᏃ ᏄᏪᏎᎢ, ᏗᏍᏆᏘᏃᎯᏏ, ᎣᏍᏛᏃ ᏙᏓᏥᏁᏤᎵ.\nᎢᏏᎵᏃ ᏗᎦᏙᎵ ᎿᏉ ᏧᏍᎪᎸᎢ ᎨᏎ ᎠᎦᏴᎵᏴ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ, ᎠᎴ ᎥᏝ ᎬᏩᎪᏩᏛᏗ ᏱᎨᏎᎢ. ᎾᎥᏃ ᏚᏘᏃᎮᎴᎢ; ᏚᏔᏪᏙᏁᏃ, ᎠᎴ ᏚᏄᎶᎴᎢ.\nᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᏣᎧᏛ ᎠᎩᎪᏩᏛᏗᏱ ᎥᏝ ᏱᎦᏓᏅᏖᏍᎨᎢ; ᎬᏂᏳᏉᏃ ᎤᏁᎳᏅᎯ ᏗᏤᏥ ᎾᏍᏉ ᏗᏥᎪᏩᏛᏗᏱ ᎾᏋᏂᏏ.\nᏦᏩᏃ ᏚᏪᎧᎲᏎ [ᏤᎦᏈ] ᏗᎧᏂᎨᏂ ᎠᏰᎵ ᏓᏂᏙᎬᎢ, ᎠᎴ ᎡᎳᏗ ᏄᏛᏁᎴ ᎦᏙᎯ ᎢᏴᏛ ᎤᎵᏯᏍᏚᏁᎢ.\nᏦᏩᏃ ᎢᏧᎳ ᏚᏬᏯᏁᏎᎢ, ᎢᏆᎻ ᎠᎦᏘᏏᏗᏢ ᎤᏬᏯᏁᏍᏔᏁᎢ ᎢᏏᎵ ᎠᎦᏍᎦᏂᏗᏢ ᎨᏒ ᎤᏪᎧᏁᎢ, ᎻᎾᏌᏃ ᎠᎦᏍᎦᏂᏗᏢ ᎤᏬᏯᏁᏍᏔᏁᎢ ᎢᏏᎵ ᎠᎦᏘᏏᏗᏢ ᎤᏪᎧᏁᎢ, ᎠᎴ ᎾᎥ ᏚᏘᏃᎮᎴᎢ.\nᎢᏏᎵᏃ ᎠᎦᏘᏏᏗᏢ ᎤᏙᏯᏅᎯᏕᎢ, ᎠᎴ ᎢᏆᎻ ᎠᏍᎪᎵ ᎤᏏᏔᏕᎢ, ᎾᏍᎩ ᎣᏂ ᎡᎯ ᏥᎨᏎᎢ, ᎠᎦᏍᎦᏂᏃ ᎢᏗᏢ ᎻᎾᏌ ᎠᏍᎪᎵ ᎤᏏᏔᏕᎢ, ᎠᏙᎴᎰᏍᎨ ᏂᏕᎬᏁᎲ ᏧᏬᏰᏂ; ᎻᎾᏌᏰᏃ ᎤᏓᏂᎵᎨ ᎨᏎᎢ.\nᎣᏍᏛᏃ ᎤᏁᏤᎴ ᏦᏩ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᎦᏔᎲ ᎤᏁᏙᎸᎯ ᏥᎩ ᏗᎩᎦᏴᎵᎨ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᎠᏇᎶᎸᎯ ᏥᎩ ᎠᏆᎴᏂᏙᎸ ᎢᎪᎯᏛ ᎪᎯ ᎨᏒ ᎢᏯᏍᏗ,\nᏗᎧᎿᏩᏗᏙᎯ ᎾᏍᎩ ᏄᏓᎴᏒ ᎤᏲ ᎠᏊᏓᎴᏛ ᏥᎩ, ᎣᏍᏛ ᏫᏂᏓᏛᏂᏏ ᎯᎠ ᎠᏂᏫᏄᏣ; ᎠᎴ ᎠᏴ ᏓᏆᏙᎥ ᏫᏓᎾᏙᏍᏓ, ᎠᎴ ᏚᎾᏙᎥ ᏗᎩᎦᏴᎵᎨ ᎠᏆᎭᎻ ᎠᎴ ᎡᏏᎩ; ᎠᎴ ᎤᏂᏣᏘ ᏫᎾᎾᎵᏍᏓ ᎾᎿ ᎠᏰᎵ ᎨᏒ ᎡᎶᎯ.\nᏦᏩᏃ ᎡᏙᎴᎰᏒ ᎤᏙᏓ ᎢᏆᎻ ᎠᏍᎪᎵ ᎠᎦᏘᏏᏗᏢ ᎤᏏᏔᏛᎢ ᎡᏍᎦ ᎤᏰᎸᏁᎢ; ᎠᎴ ᎤᏌᎳᏓᏁ ᎤᏙᏓ ᎤᏬᏰᏂ, ᎣᏏᏘᏴᏍᏗᏱ ᎢᏆᎻ ᎠᏍᎪᎵ ᎣᏏᏔᏛᎢ, ᎠᎴ ᎻᎾᏌ ᎠᏍᎪᎵ ᏭᏏᏔᏗᏍᏗᏱ.\nᏦᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏙᏓ, ᎥᏞᏍᏗ ᎡᏙᏓ; ᎯᎠᏰᏃ ᎢᎬᏱ ᎤᏕᏅᎯ; ᎯᎦᏘᏍᏗᏢ ᎾᏍᎩ ᎠᏍᎪᎵ ᎯᏯᏏᏔᏓ.\nᎤᏙᏓᏃ ᏚᏢᏫᏎᎴ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏥᎦᏔᎭ ᎠᏇᏥ, ᏥᎦᏔᎭ; ᎾᏍᎩ ᎾᏍᏉ ᎤᏂᏣᏘ ᏴᏫ ᏅᏓᎦᎵᏍᏔᏂ, ᎠᎴ ᎾᏍᏉ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ; ᎠᏎᏃ ᎤᏙᎯᏳᎯᏯ ᎤᏅᏟ ᎤᏟ ᎠᏥᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎡᏍᎦᏉ ᎾᏍᎩ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎯ ᎤᏂᏧᏈᏍᏗ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᏅᏛᎾᎵᏍᏔᏂ.\nᎠᎴ ᎣᏍᏛ ᏚᏁᏤᎴ ᎾᎯᏳ ᎢᎦ, ᎯᎠ ᏄᏪᏎᎢ, ᏂᎯ ᎨᏨᏗᏍᎨᏍᏗ ᎢᏏᎵ ᎣᏍᏛ ᏓᎾᏓᏁᏤᎮᏍᏗ, ᎯᎠ ᎾᏂᏪᏍᎨᏍᏗ, ᎤᏁᎳᏅᎯ ᎢᏆᎻ ᎠᎴ ᎻᎾᏌ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏫᏂᏨᎦ; ᎠᎴ ᎢᏆᎻ ᎢᎬᏱ ᎤᎴᏓᏁᎴ ᎻᎾᏌ.\nᎢᏏᎵᏃ ᎯᎠ ᏄᏪᏎᎴ ᏦᏩ, ᎬᏂᏳ ᏓᏥᏲᎤᏏ; ᎠᏎᏃ ᎤᏁᎳᏅᎯ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ, ᎠᎴ ᏔᎵᏁ ᏫᏙᏛᏣᏘᏃᎵ ᏗᏥᎦᏴᎵᎨ ᏧᎾᏤᎵ ᎦᏓ ᏗᎲᎢ.\nᎠᎴ ᎾᏍᏉ ᎠᏴ ᏌᏉ ᎢᏯᏯᏙᎸᎯ ᎤᏓᎪᎾᏛᏗ ᏂᎯ ᎬᎥᏏ, ᎡᏍᎦ ᎢᏣᎵᏅᏟ, ᎾᏍᎩ ᎠᏂᎡᎼᎵ ᎦᏥᎩᎡᎸᎯ ᎠᏋᏔᏅᎯ ᎠᏆᏤᎵ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎠᎴ ᎠᏆᏤᎵ ᎦᎶᏣᏗ.\nᎠᏯᏙᎸᎢ Ꮞ9\nᏤᎦᏈᏃ ᏫᏚᏯᏅᎮ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᏓᏟᏌ, ᎾᏍᎩ ᎢᏳᏃᏁᏗᏱ ᏅᏗᏣᎵᏍᏓᏁᎵᏒ ᎣᏂ ᎠᎵᏰᎢᎵᏎᏍᏗ.\nᎢᏣᏓᏟᏌ, ᎠᎴ ᎢᏣᏛᏓᏍᏓ, ᏂᎯ ᏤᎦᏈ ᏧᏪᏥ; ᎠᎴ ᎡᏣᏛᏓᏍᏓᏏ ᎢᏏᎵ ᎢᏥᏙᏓ.\nᎷᏈᏂ, ᏂᎯ ᎢᎬᏱ ᏍᏆᏕᏁᎸᎯ, ᎠᏆᎵᏂᎬᎬᎢ, ᎠᎴ ᎠᏓᎴᏂᏍᎬ ᎠᏆᎵᏂᎬᎬᎢ, ᎢᎬᏱ ᎦᏙᎩ ᎦᎸᏉᏗᏳ ᎨᏒ, ᎠᎴ ᎢᎬᏱ ᎦᏙᎩ ᎤᎵᏂᎩᏛ ᎨᏒᎢ;\nᎠᎹ ᏥᎾᏩᎿ ᎾᏍᎩᏯ ᏂᏣᎿ, ᎥᏝ ᎢᎬᏱ ᎯᏙᎩ ᏱᎨᏎᏍᏗ, ᏂᎦᎵᏍᏙᏗᎭ ᏣᏙᏓ ᎤᏂᏏᏗᏱ ᏫᏣᎷᏨᎢ; ᎿᏉᏃ ᎾᏍᎩ ᏣᏐᏢᎢᏍᏔᏁᎢ; ᎠᏆᏤᏍᏙᎩᎯ ᏭᎷᏤᎢ.\nᏏᎻᏯᏂ ᎠᎴ ᎵᏫ ᏗᎾᏓᏅᏟᏉ; ᎡᎯᏍᏗ ᎢᏗᏓᏛᏁᏙᏗ ᏚᏅᏴ ᎠᏁᎲᎢ.\nᎠᏆᏓᏅᏙ, ᏞᏍᏗ ᎠᏂᏙᎾᎥ ᏫᏣᎷᏨᎩ; ᎾᏍᎩ ᏓᏂᎳᏫᎥ ᏞᏍᏗ ᏣᏖᎳᏛᎩ, ᎠᏆᏤᎵᎦ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎤᏂᏔᎳᏬᏍᎬᏰᏃ ᏴᏫ ᎤᏂᎸᎩ, ᎠᎴ ᎤᏅᏒ ᎠᎾᏓᏅᏖᏍᎬ ᎾᎾᏛᏁᎲ ᏩᎦ ᏚᏅᏏᎳᏛ ᏚᏂᎦᎵᏒᎩ.\nᎠᏍᎦᏨᎯ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᏂᏔᎳᏬᏍᎬᎢ, ᎤᏍᎦᏎᏗᏳᏰᏃ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ ᎤᏂᎿᎸᏒᎢ, ᎡᎯᏍᏗᏳᏰᏃ ᎢᏯᏓᏛᏁᎯ ᎨᏒᎩ, ᏤᎦᏈᏱ ᎨᏒ ᏔᎵ ᎤᏓᎦᏥᏯᏗ, ᎠᎴ ᎢᏏᎵᏱ ᎨᏒ ᏓᎦᏥᏯᏗᎦᎴᏯᏍᏔᏂ.\nᏧᏓ, ᏂᎯ ᎾᏍᎩ ᎢᏣᎵᏅᏟ ᏨᏛᏂᎸᏉᏔᏂ; ᏂᎯ ᏦᏰᏂ ᎨᏣᏍᎦᎩ ᎠᏂᎩᎵᎨᏂ ᏕᎯᏂᏴᏎᏍᏗ, ᏣᏙᏓ ᏧᏪᏥ ᎡᎳᏗ ᏂᎨᏣᏛᏁᎮᏍᏗ.\nᏧᏓ ᏢᏓᏥ ᎤᏃᏕᎾ ᎤᏪᏥ; ᎠᏇᏥ, ᎠᎵᏍᏓᏴᏗ ᎯᏂᏴᏛ ᏨᏕᏨ; ᎤᏗᏌᏓᏛᎩ, ᎡᎳᏗ ᎤᏂᏏᏅᎩ, ᏢᏓᏥ ᏥᎾᏛᏁᎰ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎤᏃᏕᎾ ᏢᏓᏥ ᎾᏍᎩᏯᎢ; ᎦᎪ ᎾᏍᎩ ᏓᏳᏖᏍᏔᏂ.\nᎠᏙᎳᏅᏍᏗ ᎤᎬᏫᏳᎯ ᎤᏒᎦᎶᏗᏍᏗ ᎥᏝ ᎤᏓᏅᎡᏗ ᏱᎨᏎᏍᏗ ᏧᏓ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏢᏙᏗ ᎥᏝ ᎤᏓᏅᏍᏗ ᏱᎨᏎᏍᏗ ᏚᎳᏍᎬ ᎠᏰᎵ, ᎬᏂ ᏌᎶ ᎦᎷᏨᎭ; ᎠᎴ ᎾᏍᎩ ᎬᏬᎯᏳᎲᏍᎨᏍᏗ ᏴᏫ.\nᎤᏤᎵᎦ ᏗᎦᎵᎠᏅᎯᏛ ᎠᎩᎾ ᎤᏖᎸᎳᏛ ᎤᏪᎵᏌᏛᏅᎩ, ᎠᎴ ᎤᏤᎵᎦ ᎠᎩᏏ ᏗᎦᎵᎠᏅᎯᏛ ᎤᏪᏥ ᎦᎸᏉᏗ ᎤᏖᎸᎳᏛ ᎤᏪᎵᏌᏛᏅᎩ, ᏧᏄᏬ ᎩᎦᎨ ᎠᏗᏔᏍᏗᏱ ᏚᏮᎩᎶᎥᎩ, ᎠᎴ ᏖᎸᎳᏗ ᎤᏂᎩᎬᎯ ᏚᏮᎩᎶᎥᎩ ᏧᏄᏬᎢ.\nᎩᎦᎨ ᎠᏗᏔᏍᏗ ᎤᏗᏔᎲ ᏗᎦᏙᎵ ᏗᎩᎦᎨᎢᏳ ᎨᏎᏍᏗ, ᎤᏅᏗᏃ ᎤᏗᏔᎲ ᏕᎦᏄᏙᎬ ᏧᏁᎩᏳ ᎨᏎᏍᏗ.\nᏤᏆᎳᏂ ᎠᎺᏉᎯ ᏥᏳ ᏗᏔᎳᏗᏍᏗᏱ ᎡᎮᏍᏗ; ᎠᎴ ᏥᏳ ᏗᏔᎳᏗᏍᏗᏱ ᎨᏎᏍᏗ ᎾᎿᏂ; ᎠᎴ ᎾᏍᎩ ᎤᏤᎵᎪᎯ ᎠᏟᎶᎥ ᏌᏙᏂ ᏩᏍᏕᏍᏗ.\nᎢᏏᎦ ᏗᎦᎵᎠᏅᎯᏛ ᎤᎵᏂᎩᏛ, ᏗᏴᏙᏗᏱ ᎠᏰᎵ ᎦᏅᎦ.\nᎠᎴ ᎤᏙᎴᎰᏎ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎣᏏᏳ ᎨᏒᎢ, ᎠᎴ ᎦᏙᎯ ᎣᏏᏳ ᎨᏒᎢ; ᎠᎴ ᎦᏅᏬ ᎡᎳᏗ ᏄᏩᏁᎴ ᎠᎦᏃᎭᏢᏙᏗᏱ, ᎠᎴ ᎠᏥᏅᏏᏓᏍᏗ ᎠᏰᎵ ᎠᎫᏱᏍᎩ ᏄᎵᏍᏔᏁᎢ.\nᏕᏂ ᏕᎫᎪᏓᏁᎮᏍᏗ ᏧᏤᎵ ᏴᏫ, ᎾᏍᎩᏯ ᏌᏉ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ.\nᏕᏂ ᎢᎾᏛ ᎨᏎᏍᏗ ᏅᏃᎯ ᎦᏅᎨᏍᏗ, ᎢᎾᏛ ᎤᏅᏣᏛ ᏅᏃᎯ ᎦᏅᎨᏍᏗ, ᎾᏍᎩ ᏐᏈᎵ ᎦᏗᎨᏂ ᎠᏍᎦᎶᎩ, ᎤᎩᎸᏗᏃ ᏛᎰᏛᏥ.\nᏱᎰᏩ, ᏂᎯ ᏣᏓᏍᏕᎸᏗ ᎨᏒ ᎠᎩᎦᏘᏛ.\nᎦᏗ ᏑᎾᏓᏡᎩ ᏓᎿᏩ ᎠᏁᏙᎯ ᏓᎬᏩᏕᏯᏙᏔᏂ, ᎠᏎᏃ ᎾᏍᎩ ᎣᏂ ᎠᏁᎩ ᏓᎨᎯᏒ ᏙᏛᏕᏯᏙᏔᏂ.\nᎠᏌ, ᎠᎵᏍᏓᏴᏗ ᎤᏛᎯᏎᎸᎯ ᎦᎵᏦᎯᏗᏳ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎬᏫᏳᎯ ᎣᏍᏛ ᎤᏰᎸᏗ ᎠᎵᏍᏓᏴᏗ ᎤᏛᎯᏎᎮᏍᏗ.\nᏁᏩᏔᎵ, ᎠᏫ ᎠᎩᏏ ᎨᎵᏌᏕᏛ ᎾᏍᎩᏯ; ᎤᏬᏚᎯ ᎦᏬᏂᏍᎩ.\nᏦᏩ ᎤᏣᏘ ᎠᏓᏛᏍᎩ ᎤᏩᏂᎦᎸᎢ, ᎤᏣᏘ ᎠᏓᏛᏍᎩ ᎤᏩᏂᎦᎸ ᎠᎹ ᎦᏄᎪᎬ ᎾᎥ ᏧᏰᎪᎢ; ᎾᏍᎩ ᏚᏩᏂᎦᎸ ᎠᏐᏴ ᏥᏓᏓᏬᎯᎳᏗᏍᎪᎢ.\nᎤᏣᏘ ᎡᎯᏍᏗ ᎬᏩᏓᏅᏓᏗᏍᏔᏅ, ᎠᎴ ᎦᏂ ᏚᎾᎵᏍᏙᎸ, ᎠᎴ ᎬᏩᎭᎷᏩᏕᎬᎩ ᎦᏂ ᏗᏂᏙᎯ.\nᎠᏎᏃ ᎤᏤᎵᎦ ᎦᎶᏣᏗ ᎤᎵᏂᎩᏛ ᎨᏒ ᏅᏩᏍᏛᏉ, ᎠᎴ ᏗᎧᏃᎨᏂ ᎠᎴ ᏧᏬᏰᏂ ᏚᎵᏂᎪᎯᏍᏓᏁᎲᎩ ᎤᎵᏂᎩᏛ [ᎤᏁᎳᏅᎯ] ᏤᎦᏈ ᎤᏤᎵᎦ; ᎾᎿ ᏗᏓᎴᎲᏍᎦ ᎠᏫ ᏗᎦᏘᏯ, ᏅᏯ ᎢᏏᎵ ᎤᏤᎵᎦ.\nᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏣᏙᏓ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏣᏍᏕᎸᏗ ᏥᎩ; ᎠᎴ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ, ᎾᏍᎩ ᎣᏍᏛ ᎢᏣᏛᏁᏗ ᏥᎩ, ᏣᏁᎲ ᎣᏍᏛ ᎨᏒ ᎦᎸᎳᏗ ᏅᏓᏳᏓᎴᏅᎯ, ᎠᎴ ᎣᏍᏛ ᎨᏒ ᎠᎹᏱ ᏅᏓᏳᏓᎴᏅᎯ ᎾᏍᎩ ᎡᎳᏗᏢ ᏥᎦᏁᎭ, ᎣᏍᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏓᎾᏓᏍᏛᏍᎬ ᎠᎴ ᏓᏂᏁᎵᎬᎢ.\nᏣᏙᏓ ᎣᏍᏛ ᎤᏁᏨ ᎤᏓᎪᎾᏛᏔᏅ ᎣᏍᏛ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏙᏓᎸ ᏂᏓᎵᏍᏆᏗᏍᎬᎾ, ᎠᎴ ᎤᏚᎸᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ ᏙᏓᎸ ᏂᏓᎵᏛᏗᏍᎬᎾ; ᏦᏩ ᎠᏍᎪᎵ ᎤᎷᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᏚᎢ ᎠᏍᎪᎵ ᎾᏍᎩ ᎠᎾᎵᏅᏟ ᎠᏁᎲ ᎠᎦᏓᏓᎴᏔᏅᎯ ᏥᎨᏒᎩ.\nᏇᏂ ᎦᏓᎦᎸᎥᏍᎨᏍᏗ ᏩᏯ ᎾᏍᎩᏯᎢ; ᏑᎾᎴ ᎦᏰᏍᎨᏍᏗ ᎤᏂᏴᏛ, ᎤᏒᏃ ᎤᏓᏬᏅᏛ ᎠᏯᏙᎯᎮᏍᏗ.\nᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ; ᎠᎴ ᎾᏍᎩ ᎯᎠ ᎤᏂᏙᏓ ᏥᏚᏬᏁᏔᏁᎢ, ᎠᎴ ᎣᏍᏛ ᏥᏚᏁᏤᎴᎢ; ᎠᏂᏏᏴᏫᎭ ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏄᏍᏕ ᏚᏁᏤᎴᎢ.\nᎠᎴ ᏚᏁᏤᎴᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ; ᏗᏆᏤᎵᎦ ᏴᏫ ᏫᏄᎾᏛᏅ ᎠᏆᏖᎳᏗᏗ; ᏗᎩᎦᏴᎵᎨ ᏕᎨᏥᏂᏌᎲ ᏍᎩᏂᏌᏅᎭ, ᎢᏆᎶᏂ ᎠᎯᏗ ᎤᎶᎨᏛ ᎤᏍᏓᎦᎸᎢ,\nᎹᎩᏈᎳ ᎦᎶᎨᏒ ᎤᏍᏓᎦᎸᎢ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᎨᎾᏂᏱ ᎦᏙᎯ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᏩᏎᎢ, ᎢᏆᎶᏂ ᎠᎯᏗ ᎤᎶᎨᏒ ᏧᎵᏠᏯᏍᏕᎢ, ᎾᏍᎩ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᏗᏓᏂᏐᏗᏱ.\nᎾᎿ ᎡᏆᎭᎻ ᎠᎴ ᎤᏓᎵᎢ ᏎᎵ ᏚᏂᏂᏌᏁᎢ; ᎾᎿ ᎡᏏᎩ ᎠᎴ ᎵᏇᎩ ᎤᏓᎵᎢ ᏚᏂᏂᏌᏁᎢ; ᎠᎴ ᎾᎿ ᎵᎠ ᏥᏂᏌᏅᎩ.\nᎾᏍᎩ ᏠᎨᏏ, ᎠᎴ ᎾᎿ ᎤᏍᏓᎦᎸ ᎮᏗ ᏧᏪᏥ ᎨᏥᏩᎯᏎᎴᎢ.\nᏤᎦᏈᏃ ᎤᏍᏆᏛ ᏕᎧᏁᏤᎲ ᏧᏪᏥ, ᎤᏓᏯᏍᏔᏁ ᎠᏤᏍᏙᎩᎯ, ᎠᎴ ᎤᏲᎱᏎᎢ, ᎠᎴ ᏧᏤᎵᎦ ᏴᏫ ᏫᏄᎾᏛᏅ ᏭᏖᎳᏗᎴᎢ. ⁠\nᎠᏯᏙᎸᎢ 50\nᏦᏩᏃ ᎤᏙᏓ ᎤᎧᏛ ᎤᏪᏯᎸᏤᎢ, ᎠᎴ ᎾᎿ ᏚᏠᏱᎴᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ.\nᏦᏩᏃ ᏚᏁᏤᎴ ᏧᏅᏏᏓᏍᏗ ᏗᎾᏓᏅᏫᏍᎩ ᎦᏩᏒᎩ ᎤᏅᏙᏗᏱ ᎤᏂᏍᏆᏂᎪᏙᏗᏱ ᎤᏙᏓ; ᏗᎾᏓᏅᏫᏍᎩᏃ ᎤᏂᏍᏆᏂᎪᏔᏁ ᎢᏏᎵ.\nᏅᎦᏍᎪᎯᏃ ᏧᏒᎯᏛ ᎤᏂᎦᏘᏕᎢ; ᎾᏍᎩᏰᏃ ᎢᎪᎯᏛ ᎠᏂᎦᏘᏗᏍᎨ ᎦᏩᏒᎩ ᎬᏗ ᎠᏂᏍᏆᏂᎪᏗᏍᎬᎢ; ᎢᏥᏈᏱᏃ ᎦᎵᏆᏍᎪᎯ ᏧᏒᎯᏛ ᎬᏩᏍᎪᏂᎴᎢ\nᎿᏉᏃ ᎢᎪᎯᏛ ᎠᏥᏍᎪᏂᏍᏗ ᎨᏒ ᎤᎵᏍᏆᏛ, ᏦᏩ ᏚᏁᏤᎴ ᏇᎵᏲ ᏚᏓᏘᎾᎥᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎢᏳᏃ ᎣᏍᏛ ᏍᎩᏰᎸᏗᏱ ᎢᏨᏩᏛᎡᎴᏍᏗ, ᏇᎵᏲ ᎡᏥᏁᏥ, ᎯᎠ ᏁᏥᏪᏏ;\nᎡᏙᏓ ᎠᏆᏎᎵᏙᏔᏅᎩ, ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ, ᎠᎩᏲᎱᏏᏗ; ᎢᎬᏂᏐᏗᏱ, ᎾᏍᎩ ᎨᎾᏂᏱ ᎠᏆᏍᎪᏒᎯ, ᎾᎿ ᏍᎩᏂᏌᏅᎭ. ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎨᎾ, ᎡᏙᏓ ᏥᏂᏌᏄᎦ, ᏔᎵᏁᏃ ᎢᏥᎷᏨᎭ. ⁠\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎮᎾ, ᎯᏂᏌᏄᎦ ᏣᏙᏓ, ᎾᏍᎩᏯ ᏄᏪᏒᎢ ᏣᏎᎵᏙᏔᏅᎢ.\nᏦᏩᏃ ᎤᏪᏅᏎ ᎤᏂᏌᏅᏎ ᎤᏙᏓ; ᎢᏧᎳᎭᏃ ᎤᏁᏅᏎ ᏂᎦᏛ ᏇᎵᏲ ᏧᏅᏏᏓᏍᏗ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎦᏁᎸ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏥᏈᏱ ᎠᏁᎯ,\nᎠᎴ ᏂᎦᏛ ᏦᏩ ᏚᏓᏘᎿᎥᎢ, ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ; ᏧᏁᏥᏍᎩᏂᏃᏅ ᏧᎾᏍᏗᎦ, ᎠᎴ ᎠᏫ ᏧᎾᏤᎵ, ᎠᎴ ᏩᎦ ᏧᎾᏤᎵ ᎪᏌᏂᏱ ᏚᏂᎧᎯᏰᎢ.\nᎠᎴ ᎤᏁᎳᏛᏎ ᏓᏆᎴᎷ ᎠᎴ ᏐᏈᎵ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏧᏈᏯ ᎨᏎ ᎤᎾᏓᏡᏩᏗᏒᎢ.\nᎠᏔᏗᏃ ᎤᎦᏔᏙᎥᏙᏗᏱ ᏭᏂᎷᏤᎢ, ᎾᏍᎩ ᏦᏓᏂ ᏍᎪᏂᏗᏢ ᏥᎩ, ᎾᎿᏃ ᎤᏣᏘ ᏚᏂᏴᎳᏎᎢ ᎡᎯᏍᏗ ᏚᎾᏠᏱᎴᎢ; ᎠᎴ ᎦᎵᏉᎩ ᏧᏒᎯᏛ ᎤᏙᏓ ᎤᏂᏍᎪᏂᏍᏗᏱ ᏄᏩᏁᎴᎢ.\nᎾᎿᏃ ᎠᏁᎯ ᎠᏂᎨᎾᏂ ᎤᏂᎪᎲ ᎠᏔᏗ ᎤᎦᏔᏙᎥᏙᏗᏱ ᏓᏂᏴᎬᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᎤᏣᏘ ᏧᏂᏴᎵᏍᏗ ᏄᎾᎵᏍᏓᏏ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏈ-ᎠᏁᎯ-ᏧᏂᏴᎳᏍᏗᏱ ᏚᏃᎡ ᎾᎿᏂ, ᎾᏍᎩ ᏦᏓᏂ ᏍᎪᏂᏗᏢ ᏥᎩ.\nᏧᏪᏥᏃ ᎾᏍᎩᏯ ᏂᏚᏪᏎᎸ ᏂᎬᏩᏛᏁᎴᎢ; ⁠⁠\nᏧᏪᏥᏰᏃ ᎨᎾᏂ ᎦᏙᎯ ᏫᎬᏩᏅᏍᏔᏁᎢ, ᎠᎴ ᎤᏍᏓᎦᎸ ᎹᏈᎳ ᎦᎶᎨᏒ ᎬᏩᏂᏌᏁᎢ, ᎾᏍᎩ ᎹᎺᎵᏱ ᎢᎬᏱᏢ ᏥᎩ, ᎾᏍᎩ ᎡᏆᎭᎻ ᏧᏩᏎ ᏠᎨᏏ ᎬᏩᏠᏯᏍᏗ, ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏓᏂᏐᏗᏱ, ᎾᏍᎩ ᎢᏆᎶᏂ ᎠᎯᏗ ᏧᏩᎯᏎᎴᎢ.\nᏦᏩᏃ ᎢᏥᏈᏱ ᏫᎤᎶᏎᎢ, ᎤᏩᏒ ᎠᎴ ᎠᎾᎵᏅᏟ, ᎠᎴ ᏂᎦᏛ ᎢᏧᎳᎭ ᎤᏁᏅᏛ ᎤᏙᏓ ᎤᏂᏂᏌᏁᏅ, ᎾᏍᎩ ᎿᏉ ᎤᏙᏓ ᎤᏂᏌᏅ.\nᏦᏩᏃ ᎠᎾᎵᏅᏟ ᎤᏂᎪᎲ ᎤᏂᏙᏓ ᎤᏲᎱᏒᎢ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏦᏩ ᏱᎩ ᎤᏲ ᏱᏂᎬᎾᏕᎦ, ᎠᎴ ᏴᎦᏞᏥᏏ ᏂᎦᎥ ᎤᏲ ᏁᏛᏁᎸᎢ.\nᎤᎾᏓᏅᏎᏃ ᎯᎠ ᏫᏄᏂᏪᏎᎴ ᏦᏩ; ᏣᏙᏓ ᎤᏁᏨᎩ ᎠᏏᏉ ᎾᏲᎱᏍᎬᎾ ᏥᎨᏒᎩ, ᎯᎠ ᏄᏪᏒᎩ;\nᎯᎠ ᎾᏍᎩ ᏁᏥᏪᏎᎸᎭ ᏦᏩ, ᏗᎨᎯᎲᏏ ᎢᏣᎵᏅᏟ ᎤᏂᏍᎦᏅᏨᎢ, ᎤᏲ ᏄᎾᏛᏁᎸᎢ; ᏂᎯᏰᏃ ᎤᏲ ᏂᎨᏨᏁᎸᎩ. ᎾᏍᎩᏃ ᎿᏉ ᏣᏙᏓ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ ᎣᎩᏅᏏᏓᏍᏗ ᏗᎨᏍᎩᎲᏏ ᎣᎩᏍᎦᏅᏨᎢ. ᏦᏩᏃ ᏚᏠᏱᎴ ᎬᏩᏬᏁᏔᏅ.\nᎠᎴ ᎠᎾᎵᏅᏟ ᎤᏁᏅᏎ ᎾᏍᏉ ᎠᎴ ᎡᎳᏗ ᏫᏂᎬᏩᏛᏁᎴᎢ; ᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎢ, ᎬᏂᏳᏉ ᏂᎯ ᏍᎩᏅᏏᏓᏍᏗ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ; ᎠᏴᏰᏃ ᎨᏒ, ᏥᎪ ᎤᏁᎳᏅᎯ ᏥᏯᏓᏁᏟᏴᏍᏓᏁᎸ?\nᏂᎯᏍᎩᏂ, ᎤᏲ ᏍᎩᏯᏓᏅᏖᏍᎬᎩ, ᎤᏁᎳᏅᎯᏍᎩᏂ ᎣᏍᏛ ᎠᏓᏅᏖᏍᎬᎩ, ᎪᎯ ᎢᎦ ᎨᏒ ᏂᏄᏍᏗ ᎢᏳᏩᏁᏗᏱ, ᎤᏂᏣᏘ ᏴᏫ ᏓᏅᏅ ᏧᏍᏕᎸᏗᏱ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᏓᏨᏰᎶᎵ, ᏂᎯ ᎠᎴ ᏗᏤᏥ ᏧᎾᏍᏗᎦ, ᎦᏚᎵᏍᏓᏕᏃ, ᎠᎴ ᎤᏓᏅᏘ ᏚᏬᏁᏔᏁᎢ.\nᏦᏩᏃ ᎢᏥᏈᏱ ᎡᎮᎢ, ᎤᏩᏒ ᎠᎴ ᎤᏙᏓ ᏚᏓᏘᎾᎥᎢ; ᏦᏩᏃ ᎠᏍᎪᎯᏧᏈ ᎠᏍᎪᎯᏃ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ.\nᏦᏩᏃ ᏚᎪᎮ ᎢᏆᎻ ᏧᏪᏥ ᏦᎢᏁ ᎤᎾᏓᎵᏴᏛ, ᎠᎴ ᎾᏍᎪ ᏦᏩ ᏗᎧᏂᎨᏂ ᏕᎨᎦᏛᎯᏍᏔᏁ ᎺᎦ ᏧᏪᏥ ᎾᏍᎩ ᎻᎾᏌ ᎤᏪᏥ ᏥᎨᏎᎢ.\nᏦᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎴ ᎠᎾᎵᏅᏟ, ᎠᎩᏲᎱᏏᏗ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯᏯ ᏓᏥᏩᏛᎯᎵ, ᎠᎴ ᎠᏂ ᎦᏙᎯ ᏙᏓᏣᏘᎾᏫᏛᎯ; ᏫᏙᏓᏣᏘᏃᎵ ᎾᎿ ᎦᏙᎯ ᏧᏁᏁᏗᏱ ᏥᏚᏎᎵᏓᏁᎴ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ.\nᏦᏩᏃ ᏚᏎᎵᏙᏔᏁ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏎᎢ; ᎤᏁᎳᏅᎯ ᎤᏙᎯᏳᎯᏯ ᏓᏥᏩᏛᎯᎵ, ᎠᎴ ᏗᎩᎪᎳ ᎠᏂ ᏕᏥᏴᏫᏛᎲᎭ.\nᎯᎠᏃ ᎾᏍᎩ ᏕᎤᎾᏙᎥ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ ᏧᏦᎷᏥᎴᎢ: ᎠᏂᏏᏴᏫᎭ ᎠᎴ ᏕᏅᎾᏓᏘᎾᎥ ᏤᎦᏈ ᏧᏂᎷᏤᎢ.\nᎷᏈᏂ, ᏏᎻᏯᏂ, ᎵᏫ, ᏧᏓᏃ,\nᎢᏌᎦ, ᏤᏆᎳᏂ, ᏇᏂᏃ\nᏕᏂ, ᏁᏩᏔᎵᏃ, ᎦᏗ, ᎡᏌᏃ.\nᎢᎦᏛᏃ ᏧᏪᏥ ᏤᎦᏈ ᎬᏩᏕᏁᎸᎯ ᎦᎵᏆᏍᎪᎯ ᎾᏂᎡᎢ; ᏦᏩᏰᏕᏃ ᎢᏥᏈᏱ ᏫᏂᎡᎰᎢ.\nᏦᏩᏃ ᎤᏲᎱᏎᎢ, ᎠᎴ ᏂᎦᏛ ᎠᎾᎵᏅᏟ ᎠᎴ ᏂᎦᏛ ᎾᎯᏳ ᏣᏁᎮᎢ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᏁᏉᏣᏖᎢᎢ, ᎠᎴ ᎤᏣᏖ ᎤᏂᎪᏙᏎᎢ, ᎠᎴ ᎤᏂᏧᏈᏍᏙᏎᎢ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎦᎾᎵᏂᎪᏎᎢ; ᎾᏍᎩᏃ ᎦᏙᎯ ᎤᏂᎧᎵᎴᎢ.\nᎾᎯᏳᏃ ᎢᏤ ᎤᎬᏫᏳᎯ ᎤᎾᏄᎪᏤ ᎢᏥᏈᏱ, ᎾᏍᎩ ᏦᏩ ᏄᎦᏔᎲᎾ.\nᎯᎠᏃ ᏂᏚᏪᏎᎴ ᏧᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ ᎯᎠ ᏴᏫ, ᎢᏏᎵ ᏧᏪᏥ, ᎨᎩᎪᎾᏛᏗ ᎾᏂᎥ ᎠᎴ ᏂᏚᎾᎵᏂᎬᎬᎢ.\nᎧ, ᏗᏗᏏᎾᏌᏅᏥ; ᏯᏂᏁᏉᎩᏰᏃ, ᎠᎴ ᏯᎵᏰᎢᎶᎦ ᏓᎿᏩ ᏱᏄᎵᏍᏔᏅ, ᎨᎩᏍᎦᎩ ᏱᏓᎾᎵᎪᎲᏏ ᎠᎴ ᏴᏂᎦᏡᏓ ᏕᏓᎵᎲᎢ, ᎠᎴ ᏯᏂᏄᎪᎩ ᎠᏂ ᎦᏙᎯ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏕᎤᏂᎧᏁ ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯ ᎾᏍᎩ ᎬᏩᏂᎩᎵᏲᎢᏍᏉ ᏗᏱ ᎦᎨᏛ ᎬᏩᏂᎲᏛᎨᏍᎬᎢ. ᏇᎵᏲᏃ ᏗᏓᎾᏅᏗᏱ ᎾᏩᎦᏁ ᏕᎬᏬᎵᎾᏁᎴ, ᎾᏍᎩ ᏆᏙᎻ ᎠᎴ ᎴᎠᎻᏱ.\nᎠᏎᏃ ᎠᏂᏁᏉᏍᎬ ᎨᏥᎩᎵᏲᎢᏍᏗᏍᎬ ᎾᏍᏉ ᎠᏂᏁᏉᎨ ᎠᎴ ᎠᏂᏣᏛᏍᎨᎢ. ᎠᎴ ᎠᏂᏍᎦᎢᎮ ᎢᏏᎵ ᏧᏪᏥ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ.\nᎠᏂᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎠᏍᏓᏱᏳ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᏂᏓᏅᏁᎮ ᎢᏏᎵ ᏧᏪᏥ;\nᎠᎴ ᏓᏅᏅ ᎤᎯᏐᏗ ᏂᏮᏅᏁᎮ ᎠᏍᏓᏯ ᏂᏚᏅᎿᏕᎬᎢ, ᎠᏂᏛᎨᏍᎬ ᏝᏬᏚ, ᎠᎴ ᏗᏛᏓᏅᎯ ᏓᏃᏢᏍᎬᎢ, ᎠᎴ ᏄᏓᎴᏒ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏠᏛᏓᏅᎯ ᏓᏃᏢᏍᎬᎢ ᎠᎴ ᏄᏓᎴᏒ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏠᎨᏏ; ᏂᎦᎥᏃ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗ ᏂᎨ ᎬᏁᎲ ᎤᏣᏘ ᎠᏍᏓᏯ ᎨᏎᎢ.\nᎢᏥᏈᏱᏃ ᎤᎬᏫᏳᎯ ᏚᏁᏤᎴ ᎠᏂᎨᏴ ᎠᎾᎵᏍᏕᎵᏍᎩ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬᎢ ᎠᏏᏴᏫ ᏏᏆᎳ ᏧᏙᎢᏛ, ᏐᎢᏃ ᏊᎠ ᏧᏙᎢᏛ;\nᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏂᏧᏏ ᎠᏂᎨᏴ ᏗᏥᏍᏕᎸᏗ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬᎢ, ᎠᎴ ᏚᏃᎸ ᎿᏉ ᏕᏥᎪᏩᏗ ᏍᎨᏍᏗ; ᎢᏳᏃ ᎠᏧᏣ ᎨᏎᏍᏗ ᎡᏥᎢᎮᏍᏗ ᎢᏳᏍᎩᏂ ᎠᎨᏳᏣ ᎨᏎᏍᏗ, ᎬᏁᏍᏗᏉ\nᎠᏎᏃ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕ ᎵᏍᎩ, ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎨᎢ, ᎠᎴ ᎥᏝ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ ᏄᏂᏪᏎᎸ ᏱᏄᎾᏛᏁᎴᎥᎢ ᏚᏂᎨᏳᏁᏍᎩᏂ ᎠᏂᏧᏣ ᏓᏅᏅᎢ\nᎤᎬᏫᏳᎯᏃ ᎢᏥᏈᏱ, ᏫᏚᏯᏅᎮ ᎠᎾᎵᏍᏕᎵᏍᎩ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬᎢ ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᎾᏍᎩ ᎯᎠ ᏂᏣᏛᏁᎸ, ᎠᏂᏧᏣ ᏓᏅᏅ ᏙᏥᎨᏳᏅ?\nᏗᏂᏲᎵᏃ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏯᎩ ᎯᎠ ᏂᎬᏩᏪᏎᎴ ᏇᎵᏲ, ᏅᏗᎦᎵᏍᏙᏗᏍᎩᏂ ᎠᏂᏧᏏ ᎠᏂᎨᏴ, ᎥᏝ ᎠᏂᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎠᏂᎨᏴ ᏄᎾᏍᏛ ᏱᏄᎾᏍᏗ; ᏗᏅᏂᎦᎵᏍᏗᏳᏰ ᎠᎴ ᏄᎾᏕᏁᎶ ᎠᏲᎵ ᏫᎬᏩᏂᎷᏥᏏ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏍᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎤᏁᎳᏅᎯ ᎣᏍᏛ ᏂᏚᏛᏁᎴ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏍᎩ; ᎠᎴ ᏴᏫ ᎤᏂᏁᏉᏤᎢ, ᎠᎴ ᎤᏣᏘ ᏚᎾᎵᏂᎪᏎᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁᎢ, ᎾᏍᎩ ᏗᏂᏲᎵ ᎠᎾᏕᎲᏍᎬ ᎠᎾᎵᏍᏕᎵᏍᎩ ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎬ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᏧᎾᏓᏘᎾᎢ ᏂᏚᏩᏁᎴᎢ.\nᏇᎵᏲᏃ ᏚᏁᏤᎴ ᏂᎦᏛ ᎫᏤᎵ ᏴᏫ, ᎯᎠ ᏄᏪᏎᎢ, ᏫᏂᎥ ᎠᏂᏧᏣ ᎠᎾᏕᎲᏍᎨᏍᏗ ᎡᏉᏂ ᏕᏣᏓᎡᎨᏍᏗ, ᎾᏂᎥᏃ ᎠᏂᎨᏳᏣ ᎤᎾᏁᎳᎩ ᏓᏅᏁᏍᏗ.\nᎵᏫᏃ ᎤᏂᏠᏱ ᎨᏒ ᎠᏍᎦᏯ [ᎠᎻᎳᎻ] ᎵᏫ ᎤᏪᏥ ᎠᎨᏴ [ᏣᎩᏯᏗ] ᎤᏓᏴᏎᎢ.\nᎠᎨᏴᏃ ᎤᏁᎵᏤᎢ, ᎠᎴ ᎠᎫᏣ ᎤᎾᏄᎪᏫᏎᎢ; ᎤᏥᏃ ᎤᎪᎲ ᎤᏬᏚᎯᏳ ᎨᏒ, ᏦᎢ ᎢᏯᏅᏙ ᎤᏩᏍᎦᎴᎢ.\nᎿᏉᏃ ᎤᏟ ᎢᎪᎯᏛ ᎬᏩᏍᎦᎸᏗ ᏂᎨᏒᎾ ᏄᎵᏍᏔᏅ, ᎤᎩᏎ ᏥᏳ ᎢᏳᏍᏗ, ᎦᏄᏯ ᎪᏢᏔᏅᎯ, ᎠᎴ ᏩᏥᎳᎨ ᎠᎴ ᎠᏜ ᎤᏍᏚᏔᏁᎢ, ᎾᎿᏃ ᎤᎸᏁ ᎠᏲᎵ; ᎦᏄᏲᎯᏃ ᎡᏉᏄᎶᏗ ᎤᏁᎢ.\nᎤᏙᏃ ᎢᏅ ᏗᎦᏙᎨᎢ ᎤᏙᎴᎰᎯᏍᏗᏱ ᎤᏚᎵᏍᎨ ᏅᏗᏅᏁᎵᏒᎢ.\nᏇᎵᏲᏃ ᎤᏪᏥ ᎠᎨᏴ ᎤᎷᏤ ᎤᏓᏬᎢᎴ ᎡᏉᏂ; ᎠᏂᎨᏴᏃ ᏧᏅᏏᏓᏍᏗ ᎡᏉᏄᎶᏗ ᎠᎾᎢᏎᎢ; ᎤᎪᎲᏃ ᏥᏳ ᎢᏳᏍᏗ ᎦᏄᏲᎯ ᎤᏅᏎ, ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏭᏴᏗᏱ.\nᎤᏍᏚᎢᏒᏃ, ᎤᎪᎮ ᎠᏲᎵ; ᎠᎴ ᎬᏂᏳᏉ ᎠᏲᎵ ᏚᏠᏱᎴᎢ. ᎤᏪᏙᎵᏤᏃ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎯᎠ ᎠᏲᎵ ᎠᏂᏡᎷ ᎤᏁᏥ.\nᎤᏙᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ, ᏓᎨᏏᎨ ᏮᏓᎬᏯᏅᎡᎵ ᎩᎶ ᎢᏳᏍᏗ ᎠᏈᎷ ᎠᎨᏴ ᎠᏛᎯᏍᏗᏍᎩ, ᎾᏍᎩ ᏣᏛᎯᏍᏓᏁᎯ ᎠᏲᎵᎮ\nᏇᎵᏲᏃ ᎤᏪᏥ, ᎮᎾ, ᎤᏬᏎᎴᎢ. ᎠᏛᏃ ᎤᏪᏅᏎ ᏭᏯᏅᎮ ᎠᏲᎵ ᎤᏥ.\nᏇᎵᏲᏃ ᎤᏪᏥ ᎯᎠ ᏄᏪᏎᎴ ᎠᎨᏴ, ᎯᎠ ᎠᏲᎵ ᎯᏄᎦ, ᎠᎴ ᏍᏆᏛᎯᏍᏓᏁᎸᎭ, ᏓᎬᏯᎫᏴᎡᎵᏃ ᏂᎦᎥ ᏕᏣᎬᏩᎶᏔᏅᎢ. ᎠᎨᏴᏃ ᎠᏲᎵ ᎤᏯᏅᎮ, ᎠᎴ ᎤᏛᎯᏍᏔᏁᎢ.\nᎠᏲᎵᏃᎤᏛᏎᎢ, ᎠᎴ ᎤᏘᏃᎮᎴ ᏇᎵᏲ ᎤᏪᏥ ᎠᎨᏴ, ᎠᎴ ᎾᏍᎩ ᎤᏪᏥ ᏄᎵᏍᏔᏁᎢ, ᎼᏏᏃ ᏕᎤᏬᎡᎢ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏱᎯ ᏫᏥᏯᏎᏒᎯ ᏥᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳᎢ, ᎾᏍᎩ ᎼᏏ ᎿᏉ ᎤᏛᏅ ᏄᎵᏍᏔᏅ, ᎠᎾᎵᏅᏟ ᏚᏩᏛᎲᏎᎢ, ᎠᎴ ᏚᎧᎿᏁ ᎦᎨᏛ ᏂᎨᏂᎾᏕᎬᎢ; ᎤᎪᎮᏃ ᎢᏥᏈᏱ ᎡᎯ ᎠᏈᎷ ᎠᏏ ᎠᎾᎵᏅᏟ ᎢᎦᎵᎥᏂᎮᎢ.\nᏚᎧᎿᏂᏙᎴᏃ, ᎠᎴ ᎤᏙᎴᎰᏒ ᎩᎶ ᏁᏙᎲᎾ ᎨᏒ, ᎤᎴ ᎢᏥᏈᏱ ᎡᎯ, ᎠᎴ ᏃᏳᎯ ᎤᏩᏍᎦᎸᏁᎢ. ᎼᏏ ᏔᎵᏁ ᎤᏬᏪᎳᏅᎯ 2\nᎤᎩᏨᏛᏃ ᎢᎤᏄᎪᏨ, ᎬᏂᏳᏉ ! ᎠᏂᏔᎵ ᎠᏂᏍᎦᏯ ᎠᏂᏈᎷ ᎠᎾᎵᎮᎢ; ᎤᏣᏘᏂᏃ ᎢᏳᏛᏁᎸᎯ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙᏃ ᎢᎯᎵᎥᏂᎭ ᎢᏍᏓᎵᎢ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎦᎪ ᏣᎬᏫᏳᎯ ᎠᎴ ᏗᏍᎩᏳᎪᏓᏁᎯ ᏣᎧᏅᎮ ᏥᎪ ᏍᎩᎯᏍᏗᏱ ᎭᏓᏅᏖᎭ, ᎾᏍᎩᏯ ᏂᏴᏁᎸ ᎯᎸ ᎢᏥᏈᏱ ᎡᎯᎮ ᎼᏏᏃ ᎤᏍᎦᎴᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏎ Ꭷ ᎤᎾᏛᎦᏅ ᎯᎠ.\nᏇᎵᏲᏃ ᎾᏍᎩ ᎯᎠ ᎤᏛᎦᏅ ᎤᏲᎴ ᎤᎯᏍᏗᏱ ᎼᏏ. ᎠᏎᏃ ᎼᏏ ᎤᏓᏅᎡᎴ . ᏇᎵᏲ, ᎠᎴ ᎻᏗᏂᏱ ᏭᏕᏁᎢ: ᎠᎹᏃ ᎠᏢᏗᏱ ᎠᏔᎴᏒ ᎾᎥ ᎤᏪᏁᎢ.\nᎠᏥᎸᏃ-ᎨᎶᎯ ᎻᏗᏂᏱ ᎡᎯ, ᎦᎵᏉᎩ ᎠᏁᎮ ᏧᏪᏥ ᎠᎾᏛ: ᎤᏂᎷᏤᏃ ᎠᎴ ᎠᎹ . ᎤᏂᏢᎮᎢ, ᎠᎴ ᏥᏳ ᏚᏂᎧᎵᎴᎢ, ᎤᏂᏙᏓ ᏧᏤᎵ ᎠᏫ ᎠᎹ ᏓᎾᏗᏔᏍᏗᏍᎨᎢ.\nᎠᏫᏃ ᏗᏂᎦᏘᏯ ᎤᏂᎷᏤ ᎠᎴ ᏚᏂᎨᎯᏙᎴᎢ; ᎠᏎᏃ ᎼᏏ ᏚᎴᏁ ᎠᎴ ᏚᏍᏕᎸᎮᎢ, ᎠᎴ ᎠᎹ ᏚᏗᏔᏍᏔᏁ ᏧᎾᏤᎵ ᎠᏫ.\nᎤᏂᏙᏓᏃ ᎷᏫᎵ ᎤᏂᎷᏤᎸ, ᎦᏙ ᏓᎦᎵᏍᏙᏓ ᏂᎠᏞᎦ ᎥᏥᎷᎩ ᎪᎯ ᎢᎦ, ᏚᏬᏎᎴᎢ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎢᏥᏈᏱ ᎡᎯ ᎣᏗᏓᎴᏒ ᎪᎦᏕᏯᏙᏗᏍᎬ ᎠᏫ-ᏗᏂᎦᏘᏯ, ᎠᎴ ᎤᏣᏛ ᎠᎹ ᎣᎩᏢᎡᎸᎩ, ᎠᎴ ᏚᏗᏔᏍᏔᏅ ᎠᏫ ᏑᎾᏓᏡᎩ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ ᏧᏪᏥ, ᎭᏢᏃ ᎡᏙᎭᎮ ᎦᏙᏃ ᏛᎡᏥᎧᏯ ᎠᏍᎦᏯᎮ ᏪᏥᏯᏅ, ᎠᎵᏍᏓᏴᏅᎭ.\nᎼᏏᏃ ᎼᏏ ᎤᏰᎸᏁ ᎾᏍᎩ ᎠᏍᎦᏯ ᎦᏁᎸ ᎤᏕᏗᏱ; ᎠᏍᎦᏯᏃ ᏥᏉᎳ ᎤᏪᏥ ᎠᏛ ᎤᏪᎧᏁᎴ ᏱᏏ.\nᎠᎫᏣᏃ ᎤᎾᏄᎪᏫᏎᎢ, ᎼᏏᏃ ᎦᏐᎻ ᏚᏬᎡᎢ; ᎯᎠᏕᏰᏃ ᏄᏪᏎᎢ, ᏅᎩᎦᏔᎲᎾ ᎨᏒᎩ ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎢᎸᎯᏳ ᎢᏴᏛ,ᎾᏍᎩ ᎢᏥᏈᏱ ᎡᎯ ᎤᎬᏫᏳᎯ ᎤᏲᎱᏎᎢ. ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᎵᏰᏗᏍᎨ ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎠᎩᎵᏯ ᏄᎾᏛᏅᎢ, ᎠᎴ ᏚᎾᏠᏱᎴᎢ; ᏓᎾᏠᏱᎲᏃ ᎤᎵᏌᎳᏓᏁ ᎤᏁᎳ ᏅᎯᏱ ᎢᏴᏛ, ᎾᏍᎩ ᎠᎩᎵᏯ ᏄᎾᏛᏅ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ.\nᎤᏁᎳᏅᎯᏃ ᏚᏛᎦᏁᎴ ᎤᏂᎵᏰᏗᏍᎬᎢ, ᎠᎴ ᎤᏅᏓᏕ ᎧᏃᎮᏛ ᏚᎾᏠᎯᏍᏔᏅ ᎡᏆᎭᎻ, ᎠᎴ ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ.\nᎤᏁᎳᏅᎯᏃ ᏚᎧᎿᏁ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏚᏬᎵᏤᎢ.\nᎾᏍᎩᏃ ᎨᏏ ᏓᎦᏘᏰ ᎤᎿᏥ Ꮵ“Ꮆ ᎻᏗᏂᏱ ᎡᎯ ᎠᏥᏏᎸ-ᎨᎶᎯ ᏧᏤᎵ ᎠᏫ; ᎢᎾᎨᏃ ᎨᏒ ᏂᏚᏘᏅᏍᏔᏁ ᎠᏫ, ᎠᎴ ᏭᎷᏤ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎣᏓᎸ, ᎾᏍᎩ ᎰᎵᏈ ᏚᏙᎥᎢ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᏱᎨᏩ ᎤᏤᎵᎦ ᎬᏂᎨᏒ ᏄᏛᏁᎴ ᎠᏥᎸ ᎠᏓᏪᎵᎩᏍᎬ ᎤᏪᏲᏓᏛ ᎠᏰᎵ; ᏚᎧᎿᏁᏃ, ᎠᎴ ᎬᏂᏳᏉ ᎤᏪᏲᏓᏛ ᎤᏥᏍᏞᎢ, ᎤᏪᏲᏓᏛᏃ ᎥᏝ ᏳᎪᏁᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏓᎦᎪᎸᏏᎾᏗ, ᎠᎴ ᏮᏓᎦᎦᏔᏂ ᎯᎠ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᎠᎪ- ᏩᏛᏗ, ᎾᏍᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎤᏪᏲᏓᏛ ᏄᎪᏅᎾ ᎨᏒᎢ.\nᏱᎰᏩᏃ ᎤᎪᎲ ᎤᎪᎸᏒ ᎾᏍᎩ ᎤᎦᏙᏗᏱ, ᎤᏁᎳᏅᎯ ᏧᏯᏅᎮ ᏧᏓᎴᏁ ᎤᏪᏲᏓᏛ ᎠᏰᎵ, ᎠᎴ ᎯᎠ ᏅᏧᏪᏎᎢ, ᎼᏏ, ᎼᏏ. ᎯᎠᏃ ᏄᏪᏎ ᏏᏏ, ᎠᏂ ᎨᏙᎭ.\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎢ, ᏞᏍᏗ ᎠᏂ ᎾᎥ ᏣᎷᏨᎩ; ᏔᎳᏑᎳᎩ, ᎠᏂᏰᏃ ᎯᏙᎬ ᎦᎸᏉᏗᏳ ᎦᏙᎯ.\nᎠᎴᏬ ᎯᎠ ᏄᏪᏎᎢ, ᎠᏴ ᎤᏁᎳᏅᎯ ᏣᏙᏓ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏘᏆᎭᎻ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ. ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ. ᎼᏏᏃ ᎤᏩᏍᎦᎳᏁ ᎤᎧᏛᎢ; ᎠᏍᎦᎢᎮᏰᏃ ᎤᏁᎳᏅᎯ ᏧᎧᏃᏗᏱ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎢ. ᎤᏙᎯᏳᎯᏯ ᎠᎩᎪᎲ ᎤᏲ ᏄᎾᏛᎾᏕᎬ ᏗᏆᏤᎵ ᏴᏫ ᎢᏥᏈ ᏣᏁᎭ, ᎠᎴ ᎠᏆᏛᎦᏅ ᏓᎾᏠᏱᎲᎢ, ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯ ᏂᎬᏩᏅᎿᏕᎬᎢ; ᏥᎦᏔᎭᏰᏃ ᎠᏂᎩᎵᏲᎬᎢ.\nᎠᎴ ᎠᏆᏠᎠᏏᎸ ᎦᏥᏳᏓᎴᏏᎸ ᎢᏥᏈᏱ ᎠᏁᎯ ᏕᎬᏩᏂᎾᏝᎥᎢ, ᎠᎴ ᎾᎿ ᎦᏙᎯ ᏗᎦᏥᏯᎧᎲᏍᏗᏱ, ᏫᏗᎦᏥᏯᎪᏙᏱ ᎣᏒ ᎠᎴ ᎡᏉᎯᏳ ᎦᏙᎯ, ᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏕᎦᎶᎴᎬᎢ; ᎾᎿ ᏓᏂᏁᎸ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᎡᏖᏂ, ᎠᎴ ᎠᏂᏇᎵᏥ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ.\nᎿᏉᏃ ᎬᏂᏳᏉ, ᏓᏂᏴᎬᎢ ᎢᏏᎵ ᏧᏪᏥ ᎠᎩᎷᏤᎸ; ᎠᎴ ᎾᏍᏉ ᎠᎩᎪᎲ ᎠᏂᎩᎵᏲᎬ ᎾᏍᎩ ᎢᏥᏈ ᎠᏁᎯ ᎬᏩᏂᎩᎵᏲᎢᏍᏗᏍᎬᎢ.\nᎿᏉᏃ Ꭷ, ᏓᎬᏅᏏ ᏇᎵᏲ ᏧᏬᎸᎢ, ᎾᏍᎩ ᏗᏆᏤᎵ ᏴᏫ ᎢᏏᎵ ᏧᏪᏥ ᏙᏘᎸᎪᏫᏍᏗᏱ ᎢᏥᏡᏱ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏁᎳᏅᎯ, ᎦᎪ ᎠᏴ, ᎾᏍᎩ ᏰᎵ ᏇᎵᏲ ᏫᎦᏥᎷᏤᏗ, ᎠᎴ ᏰᎵ ᎢᏏᎵ ᏧᏪᏥ ᏂᏙᏓᎦᏥᏄᎪᎾᏍᏗᏱ ᎢᏥᏈᏱ?\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏴᏍᎩᏂ ᏓᎬᏍᏓᏩᏕᏏ; ᎯᎠᏃ ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏴ ᎬᏅᎡᎯ ᎨᏒᎢ; ᎿᏉ ᏴᏫ ᏙᏘᏄᎪᏫᏒᎭ ᎢᏥᏈᏱ, ᎠᏂ ᎣᏓᎸ ᎤᏁᎳᏅᎯ. ᎡᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᎤᏁᎳᏅᎯ, ᎬᏂᏳᏉ, ᏫᎦᏥᎷᏤᎸ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᎯᎠ ᏂᎦᏥᏪᏎᎸᎭ, ᎤᏁᎳᏅᎯ ᏗᏥᎦᎵᎨ ᎤᎾᏤᎵᎦ ᏗᎩᏅᏒ ᎢᏨᎷᏤᏗᏱ; ᎯᎠᏃ ᏂᎬᎩᏪᏎᎸᎭ, ᎦᏙ ᏕᎤᏙᎠ? ᎦᏙ ᏓᎦᏥᏲᏎᎵ?\nᎤᏁᎳᏅᎯᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎠᏴᎨᎠ ᏥᎨᎠ; ᎯᎠᏃ ᏄᏪᏎᎢ: ᎯᎠ ᏂᎩᏪᏎᎸᎭ ᎢᏏᎵ ᏧᏪᏥ, ᎠᏴᎨᎠ ᏗᎩᏅᏒ ᎢᏨᎷᏤᏗᏱ.\nᎤᏁᎳᏅᎯᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ ᎢᏏᎵ ᏧᏪᏥ; ᏱᎰᏩ, ᏗᏥᎦᏴᎵᎨ ᎤᎾᏤᎵ ᎤᏁᎳᏅᎯ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᏤᎦᏈ ᎤᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᏗᎩᏅᏒ ᎢᏨᎷᏤᏗᏱ; ᎾᏍᎩ ᎯᎠ ᏄᏍᏗ ᏓᏆᏙᎥ ᏂᎪᎯᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎯᎠ ᏄᏍᏕᏍᏗ ᎥᏆᏅᏓᏗᏍᏙᏗ ᏂᏓᎾᏓᏁᏟᏴᏏᏒ ᏂᎪᎯᎸᎢ.\nᎮᎾ ᎠᎴ ᏫᏗᎩᎳᏫᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᏱᎰᏩ, ᎤᏁᎳᏅᎯ ᏗᏥᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᏤᎦᏈ ᎤᏤᎵᎦ, ᎬᏂᎨᏒ ᎾᏆᏛᏁᎸᎩ, ᎯᎠ ᎾᎩᏪᏎᎸᎩ, ᎤᏙᎯᏳᎯᏯ ᎢᏨᏯᎦᏔᏅᏒᎩ, ᎠᎴ ᎠᎩ ᎪᎲ ᏁᏨᎾᏕᎬ ᎢᏥᏡᏱ:\nᎠᎴ ᎯᎠ ᏥᎾᎩᏪᏒᎩ, ᏓᏨᏳᏓᎴᏏ ᎡᏥᎩᎵᏲᎢᏍᏗᏍᎬ ᎢᏥᏈᏱ, ᏫᏙᏓᏨᏯᏘᏃᎵ ᎦᏓ ᎤᏂᎲ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᎡᎼᏂ, ᎠᎴ ᎠᏂᏇᎵᏥ, ᎠᎴ ᎠᏂᎯᎧ, ᎠᎴ ᎠᏂᏥᏊᏏ, ᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏕᎦᎶᎴᎬᎢ.\nᎠᎴ ᏓᎨᏣᏛᏓᏍᏓᏁᎵ ᎯᏁᎬᎢ; ᎠᎴ ᏂᎯ, ᏧᎾᏛᏐᏅᎯᏃ ᎢᏏᎵ ᏧᎾᏤᎵᎦ ᎢᏤᎮᏍᏗ ᏪᏥᎷᏤᎸᎭ ᎤᎬᏫᏳᎯ ᎢᏥᏈᏱ ᎡᎯ, ᎯᎠᏃ ᏁᏥᏪᏎᎸᎭ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ ᏙᎦᏠᏒᎩ; ᎿᏉᏃ ᎢᏨᏔᏲᏎᎭ ᏍᎩᏯᎵᏍᎪᎸᏓᏁᏗᏱ ᎣᎦᏂᎩᏍᏗᏱ ᏦᎢ ᏧᏒᎯᏛ ᎡᏅᏍᏗ ᎢᏴᏛ Ꭰ ᎢᎾᎨᎢ, ᎠᏥᎸ ᎣᏤᎴᏗᏱ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎣᎦᏤᎵᎦ.\nᎠᎴ ᎠᏴ ᏥᎦᏔᎭ ᎤᎬᏫᏳᎯ ᎢᏥᏈ ᎤᏤᎵᎦ ᎥᏝ ᏴᏓᎪᎯᏳᏂ ᎢᏤᏅᏍᏗᏱ, ᎥᏝ ᎾᏍᏉ ᎤᎵᏂᎩᏛ ᎤᏬᏰᏂ ᎬᏔᏅᎯ ᎨᏒᎢ.\nᏓᎦᏎᎵᎢᏔᏂᏃ, ᎠᎴ ᏓᏥᏴᏂᏍᏔᏂ ᎢᏥᏈ ᏂᎦᏗᏳ ᎤᏍᏆᏂᎪᏗ ᎠᏆᏤᎵ ᎾᎿ ᎠᏰᎵ ᏥᏙᏛᎩᎸᏫᏍᏓᏁᎵ; ᎣᏂᏃ ᏓᎪᎯᏳᏂ ᎢᏤᏅᏍᏗᏱ.\nᎠᎴ ᏓᎦᏥᏯᎵᏍᎪᎸᏓᏁᎵ ᎯᎠ ᏴᏫ ᎣᏏᏳ ᎬᏩᏂᏰᎸᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎾᏍᎩᏃ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎿᏉ ᎢᏣᏓᏅᏒᎭ, ᎥᏝ ᎠᏒᎭ ᎢᏤᏅᏍᏗ ᏱᎨᏎᏍᏗ\nᎾᏂᎥᏍᎩᏂ ᎠᏂᎨᏴ ᏧᎾᏙᎸᏒᏗ ᎨᏎᏍᏗ ᎾᎥ ᎢᏧᎾᏓᎵ, ᎠᎴ ᎡᏙᎯ ᎾᎿ ᏓᏂᏁᎸ ᎤᏬᎵ, ᎠᏣᏅᎩ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎠᏣᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏗᏄᏬ; ᏧᎾᏣᏅᏙᏗᏃ ᎨᏎᏍᏗ ᏗᏤᏥ ᎠᏂᏍᎦᏯ, ᎠᎴ ᏗᏤᏥ ᎠᏂᎨᏴ; ᎠᎴ ᏗᏥᎾᏌᏗ ᎨᏎᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ.\nᎼᏏᏃ ᏗᎤᏁᏤ ᎯᎠ ᏄᏪᏎᎢ. ᎠᏎᏃ ᎬᏂᏳᏉ ᎥᏝ ᏴᎦᎬᏉᎯᏳᎲᎦ, ᎠᎴ ᎥᏝ ᏴᎬᎾᏛᏓᏍᏓ ᏥᏁᎬᎢ; ᎯᎠᏰᏃ ᏅᏛᏂᏪᏏ, ᏱᎰᏩ ᎥᏝ ᎬᏂᎨᏒ ᏱᏂᏣᏛᏁᎸ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᏙ Ꮎ ᏥᎶᏒᎦᎳ? ᎯᎠᏃ ᏄᏪᏎᎢ, ᎠᏙᎳᏅᏍᏗ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᎡᎳᏗ ᎯᏗᎦ. ᎡᎳᏗᏃ ᎤᏕᎢ, ᎠᎴ ᎢᎾᏛ ᏄᎵᏍᏔᏁᎢ: ᎼᏏᏃ ᎤᎵᏘᏒᎴᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎭᏙᏯᏅᎯᏛ ᎠᎴ ᎯᏂᏓᏂᏴ. ᎤᏙᏯᏅᎯᏕᏃ ᎠᎴ ᎤᏂᏴᎮᎢ, ᎠᏙᎳᏅᏍᏗᏃ ᏄᎵᏍᏔᏁ ᎤᏒᎦᎸᎢ.\nᎾᏍᎩ ᎤᏃᎯᏳᏗᏱ ᎾᏍᎩᏱᎰᏩ ᎤᏁᎳᏅᎯ ᏧᏂᎦᏴᎵᎨ ᎤᎾᏤᎵᎦ ᎬᏂᎨᏒ ᏂᏣᏛᏁᎸᎢ, ᎤᏁᎳᏅᎯ ᎡᏆᎭᎻ ᎤᏤᎵᎦ, ᎤᏁᎳᏅᎯ ᎡᏏᎩ ᎤᏤᎵᎦ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ.\nᏱᎰᏩᏃ ᎾᏍᏉ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏦᏰᏂᏃ ᎯᏁᏥᏱ ᎯᏄᏴᏓ. ᎤᏬᏰᏂᏃ ᎦᏁᏥᏱ ᎤᏄᎬᏔᏁᎢ: ᎤᏄᏴᏕᏒᏃ, ᎬᏂᏳᏉ ᎤᏬᏰᏂ ᎠᏓᏰᏍᎨᎢ, ᎥᏃᏥ ᏥᏄᏍᏗ ᎾᏍᎩᏯ ᏄᏍᏕᎢ.\nᎯᎠᏃ ᏄᏪᏎᎴᎢ , ᏦᏰᏂ ᏔᎵᏂ ᏥᎯᏄᏴᏓ ᎯᏁᏥᏱ; ᎤᏬᏰᏂᏃ ᏔᎵᏁ ᎤᏄᏴᏔᏁ ᎦᏁᏥᏱ, ᎠᎴ ᎤᏄᏴᏕᏎ ᏔᎵᏁᎢ; ᎠᎴ ᎬᏂᏳᏉ ᎤᏓᏁᏟᏴᏛ ᎢᎨᏎᎢ, ᎾᏍᎩᏯ ᏐᎢ ᎤᏇᏓᎸᎢ.\nᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎾᏍᎩ ᏂᎨᏦᎯᏳᏅᎾ ᎢᎨᏎᏍᏗ, ᎠᎴ ᏄᎾᏛᏓᏍᏔᏅᎾ ᎢᎨᏎᏍᏗ ᎢᎬᏱᏱ ᎤᏰᎸᏛ ᏕᎯᎾᏄᎪᏫᏎᎸᎢ, ᏛᏃᎯᏳᏂ ᏔᎵᏁ ᎤᏰᎸᏛ ᏕᎯᎾᏄᎪᏫᏎᎸᎢ.\nᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎢᏳᏃ ᎾᏃᎯᏳᎲᏍᎬᎾ ᎢᎨᏎᏍᏗ ᎯᎠ ᎾᏍᎩ ᏔᎵ ᏕᎤᏰᎸᏛᎢ, ᎠᎴ ᎯᏁᎬ ᏂᎨᏣᏛᏓᏍᏓᏁᎲᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎠᎹ ᎡᏉᏂ ᏩᏢᏛ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏫᏣᏨᏗ ᎨᏎᏍᏗ ᎤᎧᏲᏛᎯ ᎨᏒᎢ; ᎠᎹᏃ ᎾᏍᎩ ᎡᏉᏂ ᏫᏣᏢᏛ ᎬᎩ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᎤᎧᏲᏛᎯ ᎨᏒᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᏱᎰᏩ; ᎠᏆᏤᎵ ᏣᎬᏫᏳᎯ, ᎥᏝ ᏱᏥᏏᎾᎯ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎥᏝ ᏧᏩᎫᏔᏅᏒᎢ, ᎠᎴ ᎦᎯᏁᏤᎸᎯ ᎯᏅᏏᏓᏍᏗ ᏅᏓᎬᏩᏓᎴᏅᏛ; ᎦᏂᎵᏨᏍᎩᏂ ᎠᎩᏬᏂᎯᏍᏗᏱ, ᎠᎴ ᎤᏍᎦᏃᎸ ᏥᏃᏓᏛᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎦᎪ ᎤᏬᏢᎾᏁᎴ ᎠᎰᎵ ᏴᏫ? ᎠᎴ ᎦᎪ ᎪᏢᏍᎪ ᎤᏩᎨᏫ, ᎠᎴ ᏧᎵᎡᎾ, ᎠᎴ ᎠᎪᏩᏗᏍᎩ, ᎠᎴ ᏗᎨᏫ? ᏝᏍᎪ ᎠᏴ, ᏱᎰᏩ?\nᎧ! ᎾᏍᎩ ᎢᏳᏍᏗ ᎮᎾ, ᎠᏴᏃ ᏙᏓᏥᎧᎿᏩᏗᏙᎵ ᎯᎰᎵ, ᎠᎴ ᎬᏰᏲᎲᏍᎨᏍᏗ ᎢᏣᏪᏍᏗᏱ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ, ᎬᏍᏗᏰᏗᎭ ᏣᏓᏅᏍᏗᏱ ᎯᎠᏉ ᎮᎵᏒ ᎾᏍᎩᏉ ᎯᏅᏍᏗᏱ.\nᏱᎰᏩᏃ ᎤᎿᎸᏤᎴ ᎼᏏ; ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ; ᏝᏍᎪ ᎡᎳᏂ ᎠᎵᏫ ᏗᏍᏓᏓᏅᏟ ᏱᎩ? ᏥᎦᏔᎭ ᎣᏏᏳ ᎬᏩᏬᏂᎯᏍᏗ ᎨᏒ ᎾᏍᎩ. ᎠᎴ ᎾᏍᏉ ᎬᏂᏳᏉ ᏙᏗᏣᏠᏎᏅ; ᏣᎪᎲᏃ ᎣᏍᏛ ᎤᏰᎸᏎᏍᏗ ᏧᏓᏅᏛᎢ.\nᎯᏬᏁᏔᏅᏃ ᎠᎴ ᎯᏁᎸᎭ ᎢᏳᏪᏍᏗᏱ; ᎠᏴᏃ ᏙᏓᏥᎦᎿᏩᏗᏙᎵ ᎯᎰᎵ, ᎠᎴ ᎾᏍᎩ ᎠᎰᎵ, ᎠᎴ ᏓᏍᏛᏰᏲᏂ ᎢᏍᏓᏛᏁᏗᏱ.\nᎾᏍᎩᏃ ᏣᏬᏂᎯᏎᎯ ᎨᏎᏍᏗ ᏕᎯᏬᏁᏗᏍᎬ ᏴᏫ; ᎠᎴ ᎯᎠ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎯᎰᎵ ᎾᏍᎩᏯ ᎨᏎᏍᏗ, ᏂᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎾᏍᎩᏯ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᎠᏙᎳᏅᏍᏗ ᎯᏁᏒᎭ ᎾᏍᎩᏃ ᎬᏗ ᎤᏍᏆᏂᎪᏗ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ.\nᎼᏏᏃ ᎤᏪᏅᏎ ᎠᎴ ᏭᏨᏎ Ꮵ“Ꮆ ᎤᎾᏥ ᏗᎦᏁᎸᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎬᏔᏲᏎᎭ ᎤᏁᎳᎩ ᏍᏇᎵᏎᏗᏱ ᎥᎠᏩᏨᏍᏗᏱ ᎣᏣᎵᏅᏟ ᏗᏁᎲ ᎢᏥᏈᏱ, ᎠᎴ ᏩᎩᎦᏛᏂᏓᏍᏗᏱ ᎠᏏ ᏓᏅᏅ ᎠᎴ ᏂᏓᏅᏅᎾ ᎨᏎᏍᏗ. Ꮵ’ᎶᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎮᎾ ᏅᏩᏙᎯᏯᏛ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎻᏗᏂᏱ, ᎮᎾ ᎢᏥᏈᏱ ᏫᎮᏓ; ᏂᎦᏛᏰᏃ ᎠᏂᏍᎦᏯ ᎲᏅ ᏥᎨᏣᏲᏎᎲᎩ ᏚᏂᏲᎱᏒ.\nᎼᏏᏃ ᏚᏘᏅᏎ ᎤᏓᎵᎢ ᏧᏪᏥ, ᏗᎦᎵᎠᏅᎯᏛᏃ ᏐᏈᎵᎯ ᏚᎩᎸᏔᏁᎢ, ᎠᎴ ᎢᏥᏡᏱ ᏔᎵᏁ ᏭᎶᏎᎢ. ᎼᏏᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏙᎳᏅᏍᏗ ᎤᏪᏅᏎᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎢᎮᏒ ᎢᏥᏈᏱ ᏫᎯᎶᏒᎭ, ᎠᏎ ᎤᏍᏆᏂᎪᏗ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏇᎵᏲ ᎠᎦᏔᎲ ᎾᏍᎩ ᎬᏯᏒᎦᎶᏔᏅᎯ ᏥᎩ; ᎠᏎᏃ ᏓᏥᏍᏓᏱᏕᎵ ᎤᎾᏫ, ᎾᏍᎩ ᏧᏲᎯᏍᏗᏱ ᏂᎨᏒᎾ ᏴᏫ.\nᎯᎠᏃ ᏄᏪᏎᎸᎭ ᏇᎵᏂ, ᏱᎰᏩ ᎯᎠ ᏂᎦᏪᎭ, ᎢᏏᎵ ᎠᏴ ᎠᏇᏥ, ᎢᎬᏱᏱ ᎡᎯ ᎠᏇᏥ.\nᎯᎠᏃ ᏂᎬᏪᏎᎭ, ᏘᏲᎯ ᎠᏇᏥ, ᎠᏴ ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱ. ᎢᏳᏃ ᎢᏣᎨᏳᏅᎭ ᏘᏲᎯᏍᏗᏱ, ᎬᏂᏳᏉ ᎠᏴ ᏓᏥᎵ ᏤᏥ, ᎢᎬᏱᏱ ᎡᎯ ᏤᏥ.\nᎠᏃ ᏄᎵᏍᏔᏁ ᏩᎾᎢᏒ ᏗᏒᏍᏗᏱ ᎠᏓᏁᎸᎢ, ᏱᎰᏩ ᏚᏠᏎᎢ, ᎠᎴ ᎤᏲᎴ ᎤᎯᏍᏗᏱ.\nᎿᏉᏃ ᏥᏉᎳ ᎠᏰᎳᏍᏗ ᎤᏴᎮᎢ, ᎠᎴ ᎤᎱᏍᏕᏎᎴ ᎤᏪᏥ ᎠᏧᏣ, ᎠᎴ ᏚᎳᏍᎬ ᏭᏓᎢᏅᏎᎢ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎤᏙᎯᏳᎯᏯ ᎯᎩᎰᎭ ᏍᎩᏰᎯ.\nᎾᏍᎩᏃ ᎿᏉ ᏚᏲᏎᎢ; ᎿᏉᏃ [ᏥᏉᎳ] ᎯᎠ ᏄᏪᏎᎢ, ᎯᎩᎬᎭ ᎾᎮ ᏍᎩᏰᎯ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᎱᏍᏕᏍᏗ ᎨᏒᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎡᎳᏂ, ᎮᎾ ᎢᎾᎨᎢ ᏫᏘᏯᏠᎢ ᎼᏏ. ᎤᏪᏅᏎᏃ ᎠᎴ ᏫᏚᏠᏎ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎣᏓᎸᎢ, ᎠᎴ ᎤᏔᏪᏙᏁᎢ.\nᎼᏏᏃ ᎤᏃᏁᎴ ᎡᎳᏂ ᏂᎦᏛ ᏄᏪᏎᎸ ᏱᎰᏩ ᎾᏍᎩ ᏅᏓᏳᏅᏏᏛ, ᎠᎴ ᏂᎦᏛ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᏗᏱ ᎤᏁᏤᎸᎢ.\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᎤᏁᏅᏎᎢ, ᎠᎴ ᏫᏚᏂᎳᏫᏕ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᏪᏥ ᎬᏩᎾᏓᏑᏴᎢ.\nᎡᎳᏂᏃ ᏂᎦᏛ ᏚᏃᎯᎮᎴ ᎾᏍᎩ ᏱᎰᏩ ᎼᏏ ᎤᏬᏁᏔᏅᎢ, ᎠᎴ ᎤᏍᏆᏁᏔᏅᎢ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏚᎸᏫᏍᏓᏁᎴ ᏴᏫ ᎠᏂᎦᏔᎲᎢ.\nᏴᏫᏃ ᎤᏃᎯᏳᏁᎢ; ᎤᏮᏛᎦᏅᏃ ᏱᎰᏩ ᏚᎦᏔᏂᎸ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᎾᏍᎩ ᏚᎧᎿᏅ ᎠᏂᎩᎵᏲᎬᎢ, ᏚᎾᏗᏍᏚᏁ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏁᎢ\nᎣᏂᏃ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏭᏂᏴᎴᎢ, ᎯᎠ ᏄᏂᏪᏎᎴ ᏇᎵᏲ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ. ᎢᏏᎵ ᎤᎾᏤᎵᎦ, ᏘᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎬᏆᎵᏍᏓᏴᎾᏁᏗᏱ ᎢᎾᎨᎢ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎦᎪ ᎢᏳᏍᏗ ᏱᎰᏩ, ᎾᏍᎩ ᏰᎵ ᎬᏉᎯᏳᏗ ᎧᏁᎬ ᏗᎦᏥᏲᎵᏍᏗᏱ ᎢᏞᎵᎮ ᎥᏝ ᏱᏥᎦᏔᎭ ᏱᎰᏩ, ᎥᏝ ᎠᎴ ᏱᏙᎦᎦᏥᏲᎯ ᎢᏏᎵ.\nᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎤᏁᎳᏅᎯ ᎠᏂᏈᎷ ᎤᎾᏤᎵᎦ ᏙᎦᏠᏒᎩ; ᎢᏨᏔᏲᏎᎭ ᏗᏍᎩᏲᎯᏍᏗᏱ ᏦᎢ ᏧᏒᎯᏛ ᎢᏴᏛ ᎡᏅᏍᏗ ᎨᏒ Ꭰ ᎢᎾᎨᎢ, ᎠᎴ ᎠᏥᎸ ᎣᏤᎴᏗᏱ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ; ᎾᏍᎩ ᎤᏓᏅᏍᏗ Ᏹ ᏂᎨᏒᎾ ᎣᎩᎷᏤᏗᏱ ᎥᏳᎩ ᎠᎴ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ.\nᎤᎬᏫᏳᎯᏃ ᎢᏥᏡᏱ ᎡᎯ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎦᏙᏃ ᏂᎯ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏙᏍᏗᎧᎲᏍᎦ ᏴᏫ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ? ᎤᏟ, ᏗᏥᎸᏫᏍᏓᏁᎷᎦ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳ Ꮙ, ᏴᏫ ᎠᏂ ᎠᏁᎲ ᎿᏉ ᎤᏂᏣᏔ, ᎠᎴ ᏕᏥᏯᏪᏐᎸᏍᏗᎭ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ.\nᏇᎵᏲᏃ ᎾᎯᏳᏉ ᎢᎦ ᏚᏁᏤᎴ ᎬᏩᏂᏅᎧᏍᏔᏂᏙᎯ ᏴᏫ, ᎠᎴ ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ⁠\nᎥᏞᏍᏗ ᎿᏉ ᎧᏁᏍᎦ ᏗᏥᏁᏗ ᏱᎨᏎᏍᏗ ᏴᏫ ᏗᏛᏓᏅᎯ ᏧᏃᏢᏙᏗ ᎾᏍᎩ ᏧᏩᏧᏔᏅᏒ ᏥᏂᏕᏣᏛᏁᎲᎢ; ᎤᏅᏒᏍᎩᏂ ᏩᏁᎾ ᏩᏄᏔᎩ ᎧᏁᏍᎦ.\nᏂᎦᎥᏃ ᏚᏃᏢᏅ ᏗᏛᏓᏅᎯ ᏧᏩᎫᏔᏅᏒᎢ ᎾᏍᎩ ᎠᏏ ᎢᎦᎢ ᏧᏃᏢᏗ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ; ᎥᏝ ᏗᏥᎪᎳᏕᏗ ᏱᎨᏎᏍᏗ; ᎤᎾᏓᏄᎸᏗᏰᏃ: ᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏂᏴᎦ ᎯᎠ ᎾᏂᏪᎭ, ᏬᏤᎾ ᎠᏥᎸ ᏬᏤᎶᏏ ᎣᎦᏁᎳᏅᎯ.\nᎦᎨᏛ ᏫᏂᎦᎵᏍᏓ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎠᏂᏍᎦᏯ, ᎾᏍᎩ ᎾᎿ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ; ᏞᏍᏗᏃ ᏳᏂᎸᏉᏔᏁᏍᏗ ᎦᏰᎪᎩ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ.\nᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯᏃ ᏴᏫ, ᎠᎴ ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ, ᎤᏂᏄᎪᏤᎢ, ᎠᎴ ᏚᏂᏬᏁᏔᏁ ᏴᏫ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᏇᎵᏲ ᎯᎠ ᏂᎦᏪᎭ, ᎥᏝ ᏴᎨᏨᎥᏏ ᎧᏁᏍᎦ.\nᎢᏤᎾ, ᏫᏥᎩ ᎧᏁᏍᎦ ᎾᎿ ᎨᏥᏩᏛᏗ ᎨᏒᎢ; ᎥᏝᏰᏃ ᎤᏍᏗ ᎤᏅ ᎡᏥᎪᎳᏕᏗ ᏱᎨᏎᏍᏗ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ.\nᎾᏍᎩᏃ ᏴᏫ ᏂᎬᎾᏛ ᎠᏁᏙᎮ ᎢᏥᏈᏱ ᎠᏄᏖᏍᎨ ᎧᏁᏍᎦ ᎤᏂᏰᎸᎯ ᎠᏍᎫᏕᏒ ᎤᎵᏃᎯᏴᎯ.\nᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯᏃ ᎬᏩᏂᏅᏫᏍᏗᏍᎨ ᎯᎠ ᎾᏂᏪᏍᎨᎢ, ᎢᏥᏍᏆᏛ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ, ᏂᏓᏙᏓᏈᏒ ᎡᏣᏁᎳᏁᎸᎢ, ᎾᏍᎩᏯ ᎧᏁᏍᎦ ᏣᏗᎩ.\nᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩᏃ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᏇᎵᏲ ᏧᏤᎵ ᎠᏂᏅᏫᏍᏔᏂᏙᎯ ᎬᏩᏂᏁᏤᎸᎯ ᏕᎨᏥᎵᎥᏂᎴᎢ, ᎠᎴ ᎯᎠ ᏂᎨᏥᏪᏎᎴᎢ, ᎦᏙᏃ Ꮭ ᏴᏥᏍᏆᏛ ᎡᏣᏁᎳᏁᎸ ᏗᏦᏢᏗᏱ ᏗᏛᏓᏅᎯ ᎤᏒᎯ ᏥᎨᏒ ᎠᎴ ᎪᎯ ᎾᏍᎩᏯ ᏂᏣᏛᏁᎸ ᏧᏩᎫᏔᏅᏒᎢ.\nᎿᏉᏃ ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᎷᏤ ᎤᏂᏍᏗᏰᏔᏁ ᏇᎵᏲ, ᎯᎠ ᏄᏂᏪᏎᎢ, ᎦᏙᏃ ᏂᏙᎲᏁᏉ ᏗᏣᏤᎵ ᏘᏅᏏᏓᏍᏗᎮ\nᎥᏝᏰᏃ ᎧᏁᏍᎦ ᏱᎨᏥᏁᎭ ᏘᏅᏏᏓᏍᏗ, ᎠᎴ ᎯᎠ ᏂᎪᎩᏪᏎᎭ, ᏗᏛᏓᏅᎯ ᏗᏦᏢᎾ; ᎠᎴ ᎬᏂᏳᏉ ᏚᎨᏥᎵᎥᏂᎭ ᏘᏅᏏᏓᏍᏗ; ᏂᎯᏍᎩᏂ ᏗᏣᏤᎵ ᏴᏫ ᎤᏣᏘᏂ ᏥᎾᎾᏛᏁᎭ.\nᎠᏎᏃ ᎯᎠ ᏄᏪᏎᎢ, ᎢᏣᏓᏄᎸᏗ, ᎢᏣᏓᏄᎸᏗ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᏥᏪᎭ, ᏬᏤᎾ ᎠᎴ ᎠᏥᎸ ᏬᏤᎶᏏ ᏱᎰᏩ.\nᎢᏤᎾᏲᎪ ᎿᏉ ᏫᏗᏥᎸᏫᏍᏓᏏ; ᎥᏝᏰᏃ ᏴᏓᏰᏥᏁᎵ ᎧᏁᏍᎦ, ᎠᏎᏃ ᎢᎦᎢ ᎡᏣᏁᎳᏅ ᏗᏥᏲᎯᏍᏗ ᎨᏎᏍᏗ ᏗᏛᏓᏅᎯ.\nᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩᏃ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᎪᎮ ᎤᏲ ᏄᎾᏛᏅᎢ, ᎯᎠ ᏂᎨᏥᏪᏎᎸ, ᎥᏝ ᎤᏍᏗ ᎤᏅᎢᏥᎪᎳᏗᏍᏗ ᏱᎨᏎᏍᏗ ᏂᏚᎩᏨᏂᏒ ᎡᏣᏁᎳᏁᎸ ᏗᏦᏢᏗ ᏗᏛᏓᏅᎯ.\nᎾᏍᎩᏃ ᏚᎾᏠᏎ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᏓᏂᏙᎨ ᎠᎾᎢᏒ ᏇᎵᏲᎩᏱ ᏭᏁᏙᎸᎯ:\nᎯᎠᏃ ᏂᏚᏂᏪᏎᎴᎢ, ᏱᎰᏩ ᏫᏗᏣᎧᏅᎦ ᎠᎴ ᏫᏗᎫᎪᏓ;, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎣᏥᏩᏒᎬ ᎠᏒᎩᏳ ᏂᏨᏁᎸ ᏇᎵᏲ ᎠᏓᏅᏖᏍᎬᎢ, ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᎠᎾᏓᏅᏖᏍᎬᎢ, ᎠᏰᎳᏍᏗᎦᏅᎯᏛ ᎨᎦᏒᎦᎳᏗᏍᏔᏅ ᎪᎩᎯᏍᏙᏗ.\nᎼᏏᏃ ᏔᎵᏁ ᏱᎰᏩ ᏤᏙᎲ, ᏭᎶᏎᎢ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏎᎢ, ᏣᎬᏫᏳᎯ, ᎦᏙᏃ ᎤᏲ ᏂᏙᎲᏁᎸ ᎯᎠ ᏴᏫ? ᎦᏙᏃ ᏗᏍᎩᏅᏒ ᎠᏴ?\nᏫᎦᏥᎷᏤᎸᎯᏰᏃ ᏇᎵᏲ ᏥᏯᎵᏃᎮᏙᏗᏱ ᏕᏣᏙᎥ ᎬᏗᏍᎬᎢ, ᎤᏲ ᏂᏚᏩᏁᎸ ᎯᎠ ᏴᏫ; ᎥᏝ ᎠᎴ ᎤᏍᏗ ᎤᏅ ᏱᏚᏓᎴᏒ ᏗᏣᏤᎵ ᏴᏫ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎿᏉ ᏘᎪᎯ ᏅᏗᏥᎬᏁᎵᏒ ᏇᎵᏲ; ᎤᎵᏂᎩᏛᏰᏃ ᎤᏬᏰᏂ ᏓᎬᏔᏂ ᏙᏓᎦᎧᏂ, ᎠᎴ ᎤᎵᏂᎩᏛ ᎤᏬᏰᏂ ᏓᎬᏔᏂ ᏙᏓᎦᏄᎪᏫᏏ ᎤᏤᎵᎪᎯ ᎦᏙᎯ.\nᎤᏁᎳᏅᎯᏃ ᎤᏬᏁᏔᏁ ᎼᏏ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏱᎰᏩ:\nᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏯᏛᏁᎸᎩ ᎡᏆᎭᎻ, ᎡᏏᎩ, ᎠᎴ ᏤᎦᏈ, ᏨᏉᏍᏙᏗ ᎯᎠ ᏄᏍᏛᎩ, ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ: ᏱᎰᏩᏍᎩᏂ ᏨᏉᏍᏙᏗ ᎨᏒ ᎥᏝ ᏱᎬᎩᎦᏔᎮᎢ.\nᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏯᏛᏁᎸᎩ. ᎡᏆᏎᎻ ᎡᏏᎩ, ᎠᎴ ᏤᎦᎲ, ᏨᏉᏍᏙᏗ ᎯᎠ ᏄᏍᏛᎩ, ᎤᏁᎳᏅᎯ ᏫᎾᏍᏛᎾ ᎤᎵᏂᎩᏛ ᏱᎰᏩᏍᎩᏂ ᏨᏉᏍᏙᏗ ᎨᏒ ᎥᏝ ᏱᎬᎩᎦᏔᎮᎢ.\nᎠᎴ ᎾᏍᏉ ᎧᏃᎮᏛ ᏙᎦᏠᎯᏍᏔᏅ ᎦᏥᏍᏓᏱᏕᎸ, ᎾᏍᎩ ᎦᏥᏁᏗᏱ ᎦᏙᎯ ᎨᎾᏂ, ᎦᏙᎯ ᎾᎿ ᎤᏁᏙᎸᎢ, ᎾᎿ ᎠᏁᏙᎯᏉ ᎨᏒᎢ.\nᎠᎴ ᎾᏍᏉ ᎦᏥᏯᏛᎦᏁᎸ ᏚᏂᎵᏰᏗᏍᎬ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᏥᏕᎬᏩᏂᎾᏝᎠ; ᎠᎴ ᎠᏆᏅᏓᏓ ᎧᏃᎮᏛ ᏓᏆᏠᎯᏍᏔᏅᎢ.\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎯᎠ ᏂᎩᏪᏏ ᎢᏏᎵ ᏧᏪᏥ, ᎠᏴ ᏱᎰᏩ, ᎠᎴ ᎠᏴ ᏓᏨᏳᏓᎴᏏ ᎢᏣᏓᏄᏴᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᎨᏥᏐᏠᎸᎢ; ᎠᎴ ᏓᏨᏳᏓᎴᏏ ᏕᎨᏥᎾᏝᎥᎢ; ᎠᎴ ᏓᏨᏯᎫᏴᎯ ᏥᏃᎨᏂ ᎠᎩᏌᎳᏓᏅᎯ ᎨᏒ ᏓᎬᏔᏂ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏍᏛᏗᏍᏗ ᎨᏒᎢ.\nᎠᎴ ᏓᏨᏯᏅᎯ ᏗᏆᏤᎵ ᏴᏫ ᏅᏓᏨᏴᏁᎵ, ᎠᏴᏃ ᎢᏨᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ; ᎠᎴ ᎢᏥᎦᏔᎮᏍᏗ ᎠᏴ ᏱᎰᏩ ᎢᏨᏯᏁᎳᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏧᏓᎴᏛ ᎢᏣᏓᏄᏴᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᎨᏥᏐᏠᎸᎢ.\nᎠᎴ ᏫᏙᏓᏨᏯᏘᏃᎵ ᎾᎿ ᎦᏙᎯ ᎠᏆᏎᎵᏔᏅᎯ ᏥᎩ ᎦᏥᏁᏗᏱ ᎡᏆᎭᎻ, ᎡᏏᎩ ᎠᎴ ᏤᎦᏡᏈ; ᎠᎴ ᏓᏨᏁᎵ ᎾᏍᎩ ᎢᏣᏤᎵᎦ ᎨᏎᏍᏗ; ᎠᏴ ᏱᎰᏩ.\nᎼᏏᏃ ᎾᏍᎩ ᏂᏚᏪᏎᎴ ᎢᏏᎵ ᏧᏪᏥ; ᎠᏎᏃ ᎥᏝ ᏱᎬᏩᏛᏓᏍᏓᏁᎴ ᎼᏏ , ᏅᏗᎦᎵᏍᏙᏗᏍᎨ ᎡᎯᏍᏗ ᏚᎾᏓᏅᏛᎢ, ᎠᎴ ᏕᎨᏥᎾᏝᎥ ᎠᏂᎩᎵᏲᎬᎢ.\nᏱᎰᏩᏃ ᎤᏁᏤᎴ ᎼᏏ ᎯᎠ ᏄᏪᏎᎴᎢ,\nᏫᏴᎭ, ᏫᏁᏥ ᏇᎵᏲ ᎢᏥᏈᏱ ᎤᎬᏫᏳᎯ, ᎾᏍᎩ ᏧᏲᎯᏍᏗᏱ ᎤᏂᏄᎪᎢᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎤᏤᎵᎪᎯ ᎦᏙᎯ.\nᎼᏏᏃ ᎤᏁᏤ ᏱᎰᏩ ᎠᎦᏔᎲᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᎬᏂᏳᏉ ᎢᏏᎵ ᏧᏪᏥ ᎥᏝ ᏱᎬᏆᏛᏓᏍᏗᏁᎸ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏇᎵᏲ ᏯᏆᏛᏓᏍᏓᏏ, ᎠᏴ ᎥᎩᎱᏍᏕᏛ ᏂᎨᏂᎾ ᏥᎩ ᏕᏥᎠᏁᎦᎸᎢ?\nᏱᎰᏩᏃ ᏚᏬᏁᏔᏁ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᏚᎨᏅᏕ ᎤᏁᏨᎯ ᎤᎾᏛᎪᏗ ᎢᏏᎵ ᏧᏪᏥ ᎠᎴ ᏇᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏈᎢ, ᎾᏍᎩ ᏂᏙᏓᏳᏂᏄᎪᏫᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ ᎦᏙᎯ.\nᎯᎠ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒᎢ ᎾᏍᎩ ᏧᏂᎦᏴᎵᎨ ᏧᎾᏁᏢᏔᏅᏛ ᎨᏒᎢ. ᎾᏍᎩ ᎷᏈᏂ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏓᏂᎵᎨ ᏥᎨᏎ ᎢᏏᎵ ᎤᏪᏥ: ᎭᏃᎦ, ᎠᎴ ᏆᎷ, ᎮᏏᎶᏅ ᎠᎴ ᎧᎹ; ᎯᎠ ᎾᏍᎩ ᎷᏈᏂ ᏧᏁᏢᏔᏅᏛ ᎨᏒᎢ.\nᏏᎻᏯᏂᏃ ᏧᏪᏥᏛᎯ; ᏥᎩᏒᎵ, ᎠᎴ ᏤᎻᏂ, ᎠᎴ ᎣᎭᏗ, ᎠᎴ ᏤᎩᏂ, ᎠᎴ ᏐᎭ, ᎠᎴ ᏐᎳ, ᎨᎾᏂ ᎡᎯ ᎠᎨᏴ ᎤᏪᏥ: ᎯᎠ ᎾᏍᎩ ᏏᎻᏯᏂ ᏧᏁᏢᏔᏅᏛ ᎨᏒᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏚᎾᏙᎥ ᎵᏫ ᏧᏪᏥ, ᎤᎾᏁᏢᏔᏅᏒᎢ; ᎦᏐᏂ, ᎠᎴ ᎪᎭᏗ, ᎠᎴ ᎻᎴᎳ. ᎵᏫᏃ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎦᎵᏉᎩ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ.\nᎦᏐᏂ ᏧᏪᏥ; ᎵᏈᏂ ᎠᎴ ᏌᏱᎹ ᎤᎾᏁᏢᏔᏅᏒᎢ.\nᎪᎭᏗᏃ ᏧᏪᏥ; ᎠᎻᎳᎻ ᎠᎴ ᎢᏌ, ᎠᎴ ᎯᏩᏂ, ᎠᎴ ᎠᏌᏱᎵ. ᎪᎭᏗᏃ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᏦᎢᎦᎵ ᏧᏕᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ.\nᎻᎴᎳᏃ ᏧᏪᏥ; Ꮉ ’Ꮅ, ᎠᎴ ᎩᏏ; ᎯᎠ ᎾᏍᎩ ᎵᏫ ᏧᏪᏥᏛᎯ ᎤᎾᏁᏢᏔᏅᏒᎢ.\nᎠᎻᎳᎻᏃ ᏦᎩᏇᏗ ᎤᏙᏓ ᎤᏙ ᎤᏓᏴᏎᎢᎾᏍᎩᏃ ᎡᎳᏂ ᎠᎴ ᎼᏏ. ᏚᎾᏄᎪᏫᏎᎴᎢ. ᎠᎻᎳᎻᏃ ᎠᏍᎪᎯᏧᏈ ᏦᎠᏍᎪᎯ ᎦᎵᏉᎩ ᏧᏎᏘᏴᏛ ᎤᎴᏂᏙᎴᎢ.\nᎢᏌᏃ ᏧᏪᏥ; ᎪᎳ, ᎠᎴ ᏂᏇᎩ, ᎠᎴ ᏥᎩᏯ.\nᎠᏌᏱᎵᏃ ᏧᏪᏥ; ᎻᏎᎢᎵ, ᎠᎴ ᎡᎳᏤᏈᏂ, ᎠᎴ Ꮟ’Ꮃ.\nᎡᎳᏂᏃ ᎢᎵᏏᏆ ᎤᏓᏴᏎᎢ, ᎾᏍᎩ ᎡᎻᏂᏓ ᎤᏪᏥ ᎤᏙ ᎾᎠᏐᏂ; ᎾᏍᎩᏃ ᏚᎾᏄᎪᏫᏎᎴ ᏁᏓᏈ ᎠᎴ ᎠᏆᏳ, ᎡᎵᎡᏌ ᎠᎴ ᎢᏗᎹ.\nᎪᎳᏃ ᏧᏪᏥ; ᎠᏌ, ᎠᎴ ᎡᎵᎨᎾ, ᎠᎴ ᎠᏆᏯᏌᏈ; ᎯᎠ ᎾᏍᎩ ᎠᏂᎪᎭᏗ ᎤᎾᏁᏢᏔᏅᏛ ᎨᏒᎢ.\nᎡᎵᎡᏌᏃ ᎡᎳᏂ ᎤᏪᏥ ᎤᏓᏴᏎ ᎠᏛ ᏊᏓᏱᎵ ᎤᏪᏥ; ᎾᏍᎩᏃ ᏈᏂᎭᏏ ᎤᎾᏄᎪᏫᏎᎴᎢ ᎯᎠ ᎾᏍᎩ ᏄᏂᎬᏫᏳᏒ ᏧᏂᎦᏴᎵᎨ ᎢᏳᎵᏍᏔᏅᎯ ᎠᏂᎵᏫ, ᏚᎾᏁᏢᏔᏅᏒᎢ.\nᎯᎠ ᎾᏍᎩ ᎡᎳᏂ ᎠᎴ ᎼᏏ ᏱᎰᏩ ᎯᎠ ᏥᏂᏚᏪᏎᎴᎢ, ᎢᏏᎵ ᏧᏪᏥ ᏗᏍᏗᏄᎪᏩ ᎢᏥᏈᏱ, ᏚᎾᏓᏡᏩᏗᏒᎢ.\nᎯᎠ ᎾᏍᎩ ᏧᏂᏁᏤᎴ ᏈᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏈᏱ, ᏧᏄᎪᏫᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ; ᎯᎠ ᎾᏍᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ.\nᎯᎠᏃ ᏄᎵᏍᏔᏁ ᎾᎯᏳ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ ᎢᏥᏈᏱ;\nᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏤᎴ ᎼᏏ, ᎯᎠ ᏄᏪᏎᎴᎢ, ᎠᏴ ᏱᎰᏩ; ᎯᏁᏥ ᏇᎵᏲ ᎤᎬᏫᏳᎯ ᎢᏥᏡᏱ ᏂᎦᏛ ᏂᎬᏪᏎᎲᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᏱᎰᏩ, ᎬᏂᏳᏉ, ᎠᏴ ᎥᎩᎱᏍᏕᏎᎸᎯ ᏂᎨᏒᎾ ᏕᏥᎠᏁᏕᎸᎢ; ᎦᏙᏃ ᏱᎦᎵᏍᏙᏓ ᏇᎵᏲ ᏯᏆᏛᏓᎶᏏ?\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎬᏂᏳᏉ, ᏂᎯ ᎤᏁᎳᏅᎯ ᏂᎬᏴᏁᎸ ᏇᎵᏲ ᏓᎧᏅᎢ; ᎡᎳᏂᏃ ᎡᏣᏂᎵ ᏣᏤᎵ ᎠᏙᎴᎰᏍᎩ ᎨᏎᏍᏗ.\nᏂᎯ ᏘᏃᎮᎵ ᏂᎦᏛ ᎬᏁᏤᎲᎢ; ᎡᎳᏂᏃ ᎡᏣᏂᎵ ᏓᎧᏁᏤᎵ ᏇᎵᏲ ᏧᏪᎧᎲᏍᏗᏱ ᎢᏏᎵ ᏧᏪᏥ ᎤᏤᎵᎪᎯ.\nᏇᎵᏲᏃ ᎤᎾᏫ ᏓᏥᏍᏓᏱᏕᎵ, ᎠᎴ ᎤᏣᏘ ᏙᏓᏥᎾᏄᎪᏫᏏ ᏗᏆᏤᎵ ᎤᏰᎸᏛᎢ ᎠᎴ ᏗᏆᏤᎵ ᎤᏍᏆᏂᎪᏗ ᎢᏥᏡᏱ ᎦᏙᎯ.\nᏇᎵᏲᏃ ᎥᏝ ᏴᏓᏍᏓᏛᏓᏍᏓᏁᎵ, ᎾᏍᎩᏃ ᎢᏥᏈ ᏓᏥᏯᏏᏔᏗ, ᎠᎴ ᏓᎦᏥᏄᎪᏫᏏ ᏗᏆᏤᎵ ᏚᎾᏓᏡᏩᏗᏒ ᏗᏆᏤᎵ ᏴᏫ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ ᎦᏙᎯ ᎤᏣᏘ ᎤᏓᏍᏛᏗᏍᏗ ᎬᏗᏍᎬᎢ.\nᎢᏥᏈᏱᏃ ᎠᏁᎯ ᏛᎾᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ, ᎾᎯᏳ ᎠᏉᏰᏂ ᏥᎾᏄᎪᏫᏎᎸ ᎢᏥᏈ, ᎠᎴ ᎾᎿ ᎠᏁᎲ ᎦᏥᏄᎪᏫᏒ ᎢᏏᎵ ᏧᏪᏥ.\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏄᎾᏛᏁᎴ ᏱᎰᏩ ᏄᏂᏪᏎᎸᎢ; ᎾᏍᎩ ᏄᎾᏛᏁᎴᎢ.\nᎼᏏᏃ ᏁᎳᏍᎪᎯ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎡᎳᏂᏃ ᏁᎳᏍᎪᎯ ᏦᎢᎦᎵ ᎢᏳᏕᏘᏴᏛ ᎨᏎᎢ, ᎾᎯᏳ ᏇᎵᏲ ᎾᏂᏬᏁᏔᏅ.\nᏱᎰᏩᏃ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏚᏁᎴᎴᎢ, ᎯᎠ ᏂᏚᏪᏎᎴᎢ,\nᏇᎵᏲ ᎢᏍᏗᏁᏤᎸᎭ ᎯᎠ ᏂᏍᏗᏪᏎᎸᎭ, ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏍᏗᎾᏄᎪᏩ; ᎿᏉ ᎯᎠ ᏂᏪᏎᎸᎭ ᎡᎳᏂ, ᎯᏴ ᏣᏙᎳᏅᏍᏗ, ᎠᎴ ᏇᎵᏲ ᏓᎧᏅ ᏣᏚᎦ, ᎢᎾᏛᏃ ᏅᏓᎦᎵᏍᏔᏂ.\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏇᎵᏲ ᏭᏂᏴᏎᎴᎢ, ᎠᎴ ᏱᎰᏩ ᏄᏂᏪᏎᎸ ᎾᏍᎩ ᏄᎾᏛᏁᎴᎢ: ᎠᎴ ᎡᎳᏂ ᎤᏙᎳᏅᏍᏗ ᎤᏗᏅᏎ ᏇᎵᏲ ᏓᎧᏅ, ᎠᎴ ᏓᏂᎧᏅ ᏧᏅᏏᏓᏍᏗ, ᎢᎾᏛᏃ ᏄᎵᏍᏔᏁᎢ.\nᏇᎵᏲᏃ ᎾᏍᏉ ᏫᏚᏯᏅᎮ ᎠᏂᎦᏔᎾᎢ ᎠᏂᏍᎦᏯ ᎠᎴ ᏗᎾ ᏙᏂᏍᎩ; ᏗᎾ ᏙᏂᏍᎩᏃ ᎢᏥᏈᏃ ᎠᏁᎯ ᎾᏍᎩᏯ ᎾᏍᏉ ᏄᎾᏛᏁᎴ ᏚᏅᏔᏁ ᏧᎾ ᏙᏅ ᏙᏗ;\nᎠᏂᏏᏴᏫᎭᏰᏃ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᏚᎾᏗᏅᏎ ᏧᎾᏙᎳᏅᏍᏗ, ᎢᎾᏛᏃ ᏂᎦᎵᏍᏔᏁᎢ; ᎡᎳᏂᏃ ᎤᏙᎳᏅᏍᏗ ᏚᎩᏎ ᎾᏍᎩ ᏧᎾᏙᎳᏅᏍᏗ.\nᎤᏍᏓᏱᏕᎴᏃ ᏇᎵᏲ ᎤᎾᏫ, ᎾᏍᎩ ᏂᏚᏛᏓᏍᏓᏁᎲᎾ ᎨᏎᎢ; ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᏇᎵᏲ ᎤᎾᏫ ᎠᏥᏍᏓᏱᏕᎸ, ᎤᎨᏳᎲᏍᎦ ᏧᏲᎯᏍᏗᏱ ᏴᏫ.\nᎾᎷᏤᎸᎭ ᏇᎵᏲ ᏑᎾᎴᎢ; ᎬᏂᏳᏉ ᎠᎹᏱ ᏓᏰᏏ; ᎡᏉᏄᎶᏗᏃ ᎭᎴᏅᎭ ᎯᎦᏘᏛᎭ; ᎠᏙᎳᏅᏍᏗᏃ ᎢᎾᏛ ᎢᏳᎵᏍᏔᏅᎯ ᎯᏁᏒᎭ.\nᎯᎠᏃ ᏂᏪᏎᎸᎭ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ ᏗᎩᏅᏒ ᎬᎷᎮᏗᏱ, ᎯᎠ ᎢᎬᏪᏎᏗᏱ, ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎢᎾᎨᎢ; ᎬᏂᏳᏉᏃ ᎪᎯ ᎢᏯᏍᏗ ᎥᏝ ᏯᏛᏓᏍᏗᏍᎨᎢ.\nᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ, ᎠᏂ ᎾᏍᎩ ᏔᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ; ᎬᏂᏳᏉ ᎠᏙᎳᏅᏍᏗ ᏣᏆᏒᎦᎸ ᎠᎹ ᎡᏉᏂ ᎦᏁᎲ ᏓᎬᏂᎵ, ᎩᎬᏃ ᏅᏓᎦᎵᏍᏔᏂ.\nᎠᏣᏗᏃ ᎡᏉᏂ ᎠᏁᎲ ᏙᏛᏂᎵᏬᏥ. ᎡᏉᏂᏃ ᎠᏒᎨᏍᏗ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎤᏂᏁᎵᏍᎨᏍᏗ ᎤᎾᏗᏔᏍᏗᏱ ᎠᎹ ᎡᏉᏂ ᎠᏢᏛ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎯᎠ ᏂᏪᏏ ᎡᎳᏂ, ᏣᏙᎳᏅᏍᏗ ᎯᏴ ᏦᏰᏂᏃ ᎯᏌᎳᏛᎦ ᎢᏥᏈᏱ ᎠᎹ ᏕᎦᏁᎲ ᎦᎸᎳᏗᏢ, ᎡᏉᏂ ᏚᏪᏴᎢ, ᏛᏓᎸᎢ, ᎠᎴ ᎦᎸᎳᏗᏢ ᏂᎦᏛ ᎠᎹ ᏕᏰᏁᏩᏗᏒᎢ; ᎾᏍᎩ ᎩᎬ ᎢᏧᎵᏍᏙᏗᏱ; ᎾᏍᎩ ᎦᏁᎯᎭ ᎩᎬ ᎢᏳᎵᏍᏗᏱ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ, ᎦᏙᎯ ᎠᎴ ᏅᏲᎯ.\nᎼᏏᏃ ᎠᎴ ᎡᎡᎳᏂ ᎾᏍᎩ ᏄᎾᏛᏁᎴ ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏂᏪᏎᎸᎢ; ᎠᎴ ᎤᏌᎳᏓᏁ ᎠᏙᎳᏅᏍᏗ, ᎠᎴ ᎠᎹ ᎡᏉᏂ ᎡᎬ ᏚᏩᏂᎴᎢ, ᏓᎧᏅ ᏇᎵᏲ, ᎠᎴ ᏓᏂᎧᏅ ᏧᏅᏏᏓᏍᏗ; ᏂᎦᏛᏃ ᎠᎹ ᎡᏉᏂ ᎡᎬ ᎩᎬ ᏄᎵᏍᏔᏁᎢ.\nᎠᏣᏗᏃ ᎡᏉᏂ ᎠᏁᎲ ᏚᏂᎵᏬᏤᎢ; ᎠᎴ ᎡᏉᏂ ᎠᏒᎨᎢ, ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎥᏝ ᏰᎵ ᎬᏩᎾᏗᏔᏍᏗ ᏱᎨᏎ ᎠᎹ ᎡᏉᏂ ᎠᏢᏛ; ᎠᎴ ᎩᎬ ᏕᎦᏁᏩᏗᏎ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ.\nᏗᎾᏙᏂᏍᎩᏃ ᎢᏥᏈᏱ ᎠᏁᎯ ᎾᏍᎩ ᎾᏍᏉ ᏄᎾᏛᏁᎴ ᏧᎾᏙᏅᏙᏗ ᏓᏅᏗᏍᎬᎢ; ᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏎᎢ, ᎥᏝ ᎠᎴ ᏱᏚᏛᏓᏍᏓᏁᎴᎢ, ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ.\nᏇᎵᏲᏃ ᎤᏕᏔᎲᏎᎢ, ᎠᎴ ᏗᎦᏁᎸ ᏭᏴᎴᎢ, ᎾᏍᏉ ᎠᎴ ᎯᎠ ᎥᏝ ᏳᎦᏌᏯᏍᏔᏁᎢ.\nᏂᎦᏛᏃ ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᎾᏍᎪᏏᏙᎮ ᎡᏉᏄᎶᏗ ᎠᎹ ᎤᎾᏗᏔᏍᏗ ᎤᏂᏲᎮᎢ; ᏝᏰᏃ ᏰᎵ ᎬᏩᎾᏗᏔᏍᏗ ᏱᎨᏎ ᎠᎹ ᎡᏉᏂ ᎡᎬᎢ.\nᎦᎵᏉᎩᏃ ᎢᎦ ᏄᎶᏎᎢ, ᎾᏍᎩ ᏱᎰᏩ ᎡᏉᏂ ᎬᏩᏂᎸᎯ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ ᏫᎷᏥ ᏇᎵᏲ, ᎯᎠᏃ ᏫᏂᏪᏏ, ᏱᎰᏩ ᎯᎠ ᏂᎦᏪᎭ, ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ.\nᎢᏳᏃ ᎢᏣᎨᏳᎲᏍᎨᏍᏗ ᏗᎩᏲᎯᏍᏗᏱ ᏗᏆᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ ᏂᎬᎾᏛ ᏣᏤᎵᎪᎯ ᏩᎶᏏ ᎤᎾᏕᏗᏱ ᏅᏓᎬᏁᎵ.\nᎡᏉᏂᏃ ᎨᏴᎢ, ᏩᎶᏏ ᏧᏈᏯ ᏧᎾᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏂᎸᏍᏗ ᎠᎴ ᎯᏁᎸ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏂᏏᏗᏱ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏤᏍᏙᎩᎯ ᎤᏂᎵᏓᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᏅᏏᏓᏍᏗ ᏓᏂᏁᎸ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎬᏩᏂᎵᏓᏍᏗ ᎨᏎᏍᏗ ᏗᏣᏤᎵ ᏴᏫ, ᎠᎴ ᏗᏣᏤᎵ ᏗᏣᏚᏗᏱ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᏣᏑᎨᏗᏱ ᎤᏂᏴᏍᏗ ᎨᏎᏍᏗ;\nᎠᎴ ᏩᎶᏏ ᎨᏣᎵᏓᏍᏗ ᎨᏎᏍᏗ ᏨᏒ. ᎠᎴ ᎬᏩᏂᎵᏓᏍᏗ ᎨᏎᏍᏗ ᏗᏣᏤᎵ ᏴᏫ. ᎠᎴ ᏂᎦᏛ ᏗᏣᏤᎵ ᏘᏅᏏᏓᏍᏗ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎡᎳᏂ ᎯᎠ ᏂᏪᏏ, ᏦᏰᏂ ᎯᏌᎳᏛᎦ ᏣᏒᎦᎴᏍᏗ ᏣᏙᎳᏅᏍᏗ ᏚᏪᏴ ᎦᎸᎳᏗᏢ ᎡᏉᏂ ᏕᎨᏴᎢ, ᎠᎴ ᏛᏓᎸᎢ, ᎠᎴ ᏩᎶᏏ ᏘᎾᏄᎪᏩ ᎢᏥᏈᏱ ᎦᏙᎯ.\nᎡᎳᏂᏃ ᎤᏌᎳᏓᏁ ᎤᏬᏰᏂ ᎦᎸᎳᏗᏢ ᎠᎹ ᏕᎦᏁᎲ ᎢᏥᏈᏱ; ᏩᎶᏏᏃ ᎤᏂᎷᏤ ᎠᎴ ᎤᏄᏢᏁ ᎦᏙᎯ ᎢᏥᏈᏱ.\nᎠᎾᏙᏂᏍᎩᏃ ᎾᏍᎩᏯ ᏄᎾᏛᏁᎴ ᏧᎾᏙᏅᏙᏗ ᏓᏅᏗᏍᎬᎢ, ᎠᎴ ᏚᏂᎾᏄᎪᏫᏎ ᏩᎶᏏ ᎢᏥᏈᏱ ᎦᏙᎯ.\nᏇᎵᏲᏃ ᎤᏓᏅᏎ ᏫᎨᏥᏯᏅᏗᏱ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᎯᎠ ᏄᏪᏎᎢ, ᎡᏍᏗᏔᏲᏏ ᏱᎰᏩ ᎾᏍᎩ ᏗᎩᎧᎲᎡᏗᏱ ᏩᎶᏏ ᎠᏴ ᎠᎴ ᏗᏆᏤᎵ ᏴᏫ; ᎠᏴᏃ ᏙᏓᎦᏥᏲᏏ ᏴᏫ, ᎾᏍᎩ ᎠᏥᎸ ᎤᏁᎴᏗᏱ ᏱᎰᏩ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎴ ᏇᎵᏲ, ᏗᏍᏊᎪᏓᏏ. ᎢᎳᎩᏳ ᏓᏥᏔᏲᎵ ᎾᏍᎩ ᎢᏰᏣᏛᏁᏗᏱ ᏂᎯ, ᎠᎴ ᏘᏅᏏᏓᏍᏗ, ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ. ᎾᏍᎩ ᏧᏛᏙᏗᏱ ᏩᎶᏏ ᏂᎯ ᏂᏣᏛᏅᎢ. ᎠᎴ ᏕᎯᏁᎸᎢ, ᎾᏍᎩᏃ ᎡᏉᏂ ᎤᏩᏒ ᎤᎾᏕᏗᏱ.\nᎯᎠᏃ ᏄᏪᏎᎢ, ᏑᎾᎴᎢ. ᎾᏍᎩᏯ ᏂᏣᏪᏒ ᏫᏂᎦᎵᏍᏓ, ᎤᏬᏎᎴᎢ; ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏗᏱ ᎩᎶ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ ᏄᏍᏛ ᎾᏍᎩ ᏄᏍᏛᎾ ᎨᏒᎢ.\nᏩᎶᏏᏃ ᏓᎨᏣᏓᏅᏒᎵ ᏂᎯ, ᎠᎴ ᏕᎯᏁᎸᎢ, ᎠᎴ ᏓᎬᏩᎾᏓᏅᎡᎵ ᏘᏅᏏᏓᏍᏗ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ; ᎡᏉᏂᏉ ᎤᏩᏒ ᎠᏁᎮᏍᏗ.\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᎤᏂᏄᎪᏨᎩ ᏇᎵᏲ ᎤᎾᏓᏅᎡᎸᎩ; ᎠᎴ ᎼᏏ ᎤᏍᏗᏰᏔᏅᎩ ᏱᎰᏩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏩᎶᏏ ᏚᎾᏄᎪᏫᏎᎸ ᏇᎵᏲ.\nᏱᎰᏩᏃ ᏄᏛᏁᎸᎩ ᎾᏍᎩᏯ ᏄᎲᏒ ᎼᏏ; ᎠᎴ ᏩᎶᏏ ᏚᏂᎵᏬᏨᎩ ᏓᏓᏁᎸᎢ, ᎣᏂ ᏕᎤᎾᏐᏴᎢ, ᎠᎴ ᏕᎦᎶᎨᏒᎢ.\nᏚᏂᏡᏂᏙᎸᎩᏃ, ᎦᏙᎯᏃ ᎠᏒᎬᎩ.\nᏇᎵᏲᏍᎩᏂ ᎤᏙᎴᎰᏒ ᏅᏩᏙᎯᏯᏛ ᏄᎵᏍᏔᏅᎢ, ᎤᏍᏓᏱᏛᎩ ᎤᎾᏫ, ᎠᎴ ᏂᏚᏛᏓᏍᏓᏁᎸᎾ ᎨᏒᎩ; ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ.\nᏱᎨᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎡᎳᏂ ᎯᎠ ᏂᏪᏏ, ᎯᎾᏄᎪᏩ ᏣᏙᎳᏅᏍᏗ, ᎠᎴ ᎲᏂᎦ ᎪᏍᏚ ᎦᏙᎯ ᎦᎳᎨᏴᎢ, ᎾᏍᎩ ᏘᏅ ᎤᎾᏙᏢᏗᏱ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ.\nᎾᏍᎩᏃ ᏄᎾᏛᏁᎸᎩ; ᎡᎳᏂᏰᏃ ᎤᏙᏯᏅᎯᏛᎩ ᎤᏙᎳᏅᏍᏗ ᎦᎦᏁᎯ, ᎠᎴ ᎪᏍᏚ ᎤᏩᏂᎸᎩ ᎦᏙᎯ ᎦᎳᎨᏴᎢ, ᏘᏅᏃ ᎤᎾ ᏙᏢᏅᎩ, ᏕᎬᏩᏂᎳᎥᎩ ᏴᏫ, ᎠᎴ ᎦᎾᏝᎢ; ᏂᎦᏛ ᎪᏍᏚ ᎦᏙᎯ ᎦᎳᎨᏴ ᏘᏅ ᎤᎾᏙᏢᏅᎩ, ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ.\nᏗᎾᏙᏂᏍᎩᏃ ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸᎩ ᏧᎾᏙᏅᏗ ᏓᏅᏗᏍᎬᎢ, ᏘᏅ ᏧᏂᎾᏄᎪᏫᏍᏗᏱ, ᎠᏎᏃ ᎤᏂᏄᎸᏅᎩ ᎾᏍᎩᏃ ᏘᏅ ᏕᎬᏩᏂᎳᎥᎩ ᏴᏫ ᎠᎴ ᎦᎾᏝᎢ.\nᏗᎾᏙᏂᏍᎩᏃ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ ᏇᎵᏲ, ᎯᎠ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎦᏰᏌᏛᎢ: ᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏒᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏛᏓᏍᏓᏁᎴᎢ; ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏁᎳᏅᎯ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏑᎾᎴ ᎭᏗᏛᎲᎭ, ᎠᎴ ᎢᎬᏱᏗᏢ ᏫᏯᎴᏁᎸᎭ ᏇᎵᏲ; ᎬᏂᏳᏉ, ᎠᎹᏱ ᏗᎦᏖᏍᏗ; ᎯᎠᏃ ᏂᏪᏎᎸᎭ, ᎯᎠᏃ ᏂᎦᏪᎭ ᏱᎰᏩ, ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ;\nᎢᏳᏃ ᎢᏣᎨᏳᎲᏍᎨᏍᏗ ᏗᎩᏲᎯᏍᏗᏱ ᏗᏆᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ, ᎠᏆᏓᏅᏍᏗ ᎨᏎᏍᏗ ᎨᏣᎷᏤᏗᏱ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ, ᎠᎴ ᎬᏩᏂᎷᏤᏗᏱ ᏘᏅᏏᏓᏍᏗ, ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ, ᎠᎴ ᏕᎯᏁᎸ ᏅᏂᏴᏍᏗᏱ; ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᏂᏁᎸ ᏗᏂᎧᎵᏬᎯ ᎨᏎᏍᏗ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ, ᎠᎴ ᎾᏍᏉ ᎦᏙᎯ ᎾᎿ ᎠᏁᎲᎢ.\nᏓᎦᏓᏓᎴᏔᏂᏃ ᎾᎯᏳ ᎢᎦ ᎪᏏᏂ ᏍᎦᏚᎩ ᎨᏒᎢ, ᎾᎿ ᏓᏂᏁᎸ ᏗᏆᏤᎵ ᏴᏫ, ᎥᏝ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ ᎾᎿ ᏯᏁᎮᏍᏗ; ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏗᏱ ᎠᏴ ᏱᎰᏩ ᎦᏙᎯ ᎠᏰᎵ ᎾᏆᏛᏅᎢ.\nᎠᎴ ᏓᎦᏥᏯᏓᏓᎴᏔᏂ ᏗᏆᏤᎵ ᏴᏫ ᎠᎴ ᏂᎯ ᏗᏣᏤᎵ ᏴᏫ; “ᎾᎴ ᎾᏍᎩ ᎯᎠ ᎤᏰᎸᏛ ᎬᏂᎨᏒ ᏅᏓᎦᎵᏍᏔᏂ.\nᏱᎰᏩᏃ ᎾᏍᎩ ᏄᏛᏁᎸᎩ; ᎠᎴ ᎤᏂᎷᏨᎩ ᎤᎾᏕᏯᏙᏗ ᎠᎾᏓᏍᎦᎶᎩ ᏛᎦ, ᎤᏂᏴᎸᎩ ᏇᎵᏲ ᎦᏁᎸᎢ, ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᏓᏂᏁᎸᎢ, ᎠᎴ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ; ᎦᏙᎯ ᎤᏲᏨᎩ ᏅᏗᎦᎵᏍᏙᏗᏍᎬ ᎠᎾᏓᏍᎦᎶᎩ ᏛᎦ.\nᏇᎵᏲᏃ ᏫᏚᏇᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎯᎠᏃ ᏄᏪᏒᎩ, ᎢᏤᎾ ᎠᏥᎸ ᏪᏤᎶᏏ ᎢᏣᏁᎳᏅᎯ ᎠᏂ ᎦᏙᎯ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ; ᎥᏝ ᏱᏚᏳᎪᏗ ᎾᏍᎩ ᎢᏯᏛᏁᏗᏱ; ᎠᏥᎸᏰᏃ ᏲᏤᎳᏍᏓ ᎤᏂᏆᏘᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏤᎵᎦ, ᏲᏣᎵᏍᎪᎸᏓᏏ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ; ᎬᏂᏳᏉ, ᏥᎪ ᎠᏥᎸ ᏓᏲᏤᎳᏍᏔᏂ ᎤᏂᏆᏘᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏤᎵᎦ ᏓᏂᎧᏅᎢ, ᏝᏍᎪᏃ ᏅᏯ ᏱᏙᎦᎪᎬᏂᏍᏓ?\nᏦᎢᏍᎩᏂ ᎢᎦ ᎡᏅᏍᏗ ᎢᏴᏛ ᏓᏲᏤᏏ Ꭰ ᎢᎾᎨᎢ, ᎠᎴ ᎠᏥᎸ ᏮᏓᏲᏤᎴᎵ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ ᎾᏍᎩᏯ ᏃᎩᏪᏎᎸᎢ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏙᏓᏨᏲᏏ ᎢᏤᏅᏍᏗᏱ, ᎾᏍᎩ ᎠᏥᎸ ᎡᏤᎴᏗᏱ ᏱᎰᏩ ᎢᏣᏁᎳᏅᎯ Ꭰ ᎢᎾᎨᎢ; ᏞᏍᏗ ᎠᏗᎾ ᎢᏅ ᎢᏤᏅᏒᎩ: ᏍᏆᏓᏙᎵᏍᏓᏏ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᏓᎦᏓᏅᏏ ᎮᏙᎲᎢ, ᎠᎴ ᏓᏥᏔᏲᏎᎵ ᏱᎰᏩ ᎾᏍᎩ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ ᎬᏩᏓᏅᏒᏗᏱ ᏇᎵᏲ, ᎬᏩᎾᏓᏅᎡᏗᏱ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᎬᏩᎾᏓᏅᎡᏗᏱ ᏧᏤᎵ ᏴᏫ ᎤᎩᏨᏅᎢ; ᎠᏎᏃ ᏞᏍᏗ ᎦᎶᏄᎮᏛ ᏳᏩᏔᏁᏍᏗ ᏇᎵᏲ ᎾᏍᎩ ᏂᏚᏲᏍᎬᎾ ᎨᏒ ᏴᏫ ᎠᏥᎸ ᎤᏁᎴᏗᏱ ᏱᎰᏩ.\nᎼᏏᏃ ᏇᎵᏲ ᎤᏓᏅᎡᎸᎩ, ᎠᎴ ᏱᎰᏩ ᎤᏔᏲᏎᎸᎩ.\nᏱᎰᏩᏃ ᎾᏍᎩᏯ ᏄᏪᏒ ᎼᏏ ᏄᏛᏁᎸᎩ; ᎠᎴ ᏚᏪᎧᎲᎡᎸᎩ ᏛᎦ ᎠᎾᏓᏍᎦᎶᎩ ᏇᎵᏲ, ᎠᎴ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏧᏤᎵ ᏴᏫ; ᎠᎴ ᎥᏝ ᏌᏉ ᏳᎵᏃᎯᏰᎢ.\nᏇᎵᏲᏃ ᎠᏏᏉ ᎤᎾᏫ ᎤᏍᏓᏱᏛᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏲᏎ ᏴᏫ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏇᎵᏲ ᏫᎷᏥ, ᎠᎴ ᎯᎠ ᏫᏂᏪᏏ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏖᏡᎷ ᎤᎾᏤᎵᎦ. ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ.\nᎢᏳᏰᏃ ᎢᏣᎨᏳᏅ ᏗᎩᏲᎯᏍᏗᏱ, ᎠᎴ ᎠᏏᏉ ᏙᎩᏂᏴᏎᏍᏗ,\nᎬᏂᏳᏉ, ᏱᎬᏩ ᏙᏛᏏᏔᏗ ᏗᏣᏤᎵ ᎦᎾᏝᎢ ᏠᎨᏏ ᎠᏁᎯ, ᏐᏈᎵ, ᏗᏂᎵᎠᏅᎯᏛ ᏐᏈᎵ, ᎨᎻᎵ, ᏩᎦ, ᎠᎴ ᎠᏫ; ᎤᏣᏘ ᎤᏍᏚᏎᏗ ᎥᏳᎩ ᏓᏳᏂᏰᎢᎵᏕᎵ.\nᎠᎴ ᏱᎰᏩ ᏙᏛᏓᏓᎴᏔᏂ ᎦᎾᏝᎢ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎦᎾᏝᎢ ᎢᏥᏈ ᏧᎾᏤᎵᎦ; ᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᏴᏓᎦᎵᏬᏥ ᏥᏂᎦᎥ ᎢᏏᎵ ᏧᎾᏤᎵᎦ.\nᏱᎰᏩᏃ ᎤᏎᎸᎩ ᎢᏳᏉ ᎨᏒᎢ. ᎯᎠ ᏄᏪᏒᎩ, ᎤᎩᏨᏅᏉ ᏱᎰᏩ ᎾᏍᎩ ᎯᎠ ᏅᏛᏛᏁᎵ ᎠᏂ ᎦᏙᎯ.\nᏱᎰᏩᏃ ᎾᏍᎩ ᏄᏛᏁᎸᎩ ᏭᎩᏨᏅ, ᎠᎴ ᏂᎦᏛ ᎦᎾᏝᎢ ᎢᏥᏈᏱ ᎡᎯ ᎤᎵᏬᏨᎩ; ᎦᎾᏝᎢᏍᎩᏂ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ ᎥᏝ ᏌᏉ ᏳᎵᏬᏤᎢ.\nᏇᎵᏲᏃ ᎤᏓᏅᏒᎩ, ᎠᎴ ᎬᏂᏳᏉ ᎥᏝ ᏌᏉ ᎤᏅ ᎦᎾᏝᎢ ᎢᏏᎵ ᏧᎾᏤᎵ ᎤᎵᏬᏨᎯ ᏱᎨᏎᎢ. ᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏒᎩ, ᎠᎴ ᎥᏝ ᏱᏚᏲᏎ ᎾᏍᎩ ᏴᏫ.\nᏱᎰᏩᏃ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᎯᎠ ᏂᏚᏪᏎᎸᎩ; ᏫᏍᏗᎩ ᎪᏍᏚ ᎠᏏᎩᎳᏅᎯ ᏔᎷᎩᏍᎩᎬᎾᏬᏙᏗᏱ, ᎼᏏᏃ ᏭᏕᏒᎭ. ᎦᎸᎳᏗ ᎢᏗᏢ ᏇᎵᏲ ᏓᎧᏅᎢ.\nᎤᏃᎱᏲᎵᏃ ᎪᏍᏚ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ, ᎠᎴ ᏚᏯᏍᏗ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᏕᎬᏩᎾᏢᎥᏍᎨᏍᏗ ᏴᏫ, ᎠᎴ ᎦᎾᏝᎢ, ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏡᏱ.\nᎪᏍᏚᏃ ᏔᎷᎩᏍᎩᎬᎾᏬᏙᏗᏱ ᎠᎩᏛ ᎤᏂᏴᏒᎩ, ᎠᎴ ᏇᎵᏲ ᎢᎬᏱᏢ ᏚᎾᎴᏁᎸᎩ; ᎼᏏᏃ ᎦᎸᎳᏗ ᎢᏗᏢ ᏭᏗᏅᎩ:; ᏚᏯᏍᏗᏃ ᏄᎵᏍᏔᏅᎩ ᎾᏍᎩ ᏕᎬᏩᎾᏢᎥᏍᎬᎩ ᏴᏫ ᎠᎴ ᎦᎾᏝᎢ.\nᏗᎾᏙᏂᏍᎩᏃ ᎥᏝ ᏰᎵ ᎼᏏ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎬᏩᎾᎴᏁᏗ ᏱᎨᏎᎢ ᏚᏯᏍᏗ ᏕᎬᏩᎾᏢ ᎢᏳᏍᏗ; ᏗᎾᏙᏂᏍᎩᏰᏃ ᎠᎴ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ ᏚᏯᏍᏗ ᏕᎬᏩᎾᎣᎥᎩ.\nᏱᎰᏩᏃ ᎤᏍᏓᏱᏕᎸᎩ ᏇᎵᏲ ᎤᎾᏫ, ᎠᎴ ᎥᏝ ᏱᏚᏛᏓᏍᏓᏁᎴᎢ: ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎼᏏ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏑᎾᎴ ᎭᏗᏛᎲᎭ ᎠᎴ ᏇᎵᏲ ᏫᎷᏤᎸᎭ, ᎠᎴ ᎯᎠ ᏂᏪᏎᎸᎭ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ, ᏗᏆᏤᎵ ᏴᏫ ᏗᎩᏲᎯ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ.\nᎪᎯᏰᏃ ᎨᏒᎢ ᏓᎦᏓᏅᏏ ᏣᎷᏤᏗᏱ ᏣᎾᏫᏱ ᏂᎦᏗᏳ ᎠᏆᏤᎵ ᎤᏕᏯᏙᏗ, ᎠᎴ ᎤᏂᎷᏤᏗᏱ ᏘᏅᏏᏓᏍᏗ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ; ᎾᏍᎩ ᏣᏙᎴᎰᎯᏍᏓᏱ ᎩᎶ ᏁᎲᎾ ᎨᏒ ᎠᏴ ᎾᏆᏍᏛ ᎾᏍᎩᏯ ᎡᎶᎯ ᏂᎬᎾᏛᎢ.\nᎪᎯᏰᏃ ᎨᏒ ᏓᏥᏌᎳᏓᏂ ᎠᏉᏰᏂ ᎾᏍᎩ ᏂᎯ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ ᎥᏳᎩ ᎢᏨᏴᏂᏍᏙᏗᏱ; ᎠᎴ ᏣᎵᏛᏙᏗ ᎨᏎᏍᏗ ᎡᎶᎯ.\nᎠᎴ ᎤᏙᎯᏳᎯ ᎾᏍᎩ ᎯᎠ ᏅᏗᎦᎵᏍᏙᎢᎭ ᏥᎬᏌᎳᏓᏅ, ᏂᎯ ᎬᏴᏗᏍᎬ ᎠᎩᎾᏄᎪᏫᏍᏗᏱ ᎠᏆᎵᏂᎬᎬᎢ; ᎠᎴ ᏓᏆᏙᎥ ᏂᎬᎾᏛ ᎡᎶᎯ ᎤᏂᏃᎮᏗᏱ.\nᎠᏏᏉᏍᎪ ᏕᎭᎴᎲᏍᎦ ᏕᎭᏡᏗᎭ ᏗᏆᏤᎵ ᏴᏫ, ᎾᏍᎩ ᎥᏝ ᏲᎯᏳᎲᏍᎦ ᏗᎩᏲᎯᏍᏗᏱᎸ\nᎬᏂᏳᏉ ᎤᎩᏨᏅ ᎪᎯ ᏥᏂᎧᎳ ᏂᎧᎴᏍᏗ ᏓᏥᎦᏃᏔᏂ ᎠᎴ ᎤᏣᏘ ᎤᏍᎦᏎᏗ ᏓᎦᏁᏐᎠᏏ, ᎾᏍᎩ ᎥᏝ ᎢᎸᎯᏳ ᏱᏄᎵᏍᏔᏃ ᎢᏥᏈ ᎬᏩᏙᏢᏅᎯ ᎪᎯ ᎢᏯᏍᏗ.\nᎾᏍᎩᏃ ᏇᎵᏲ ᏧᏅᏏᏓᏍᏗ ᏱᎰᏩ ᎧᏁᎬ ᎠᏂᎾᏰᏍᎩ, ᏓᏓᏁᎸ ᏫᏚᏂᏴᏔᏅᎩ ᏧᏂᏅᏏᏓᏍᏗ ᎠᎴ ᎦᎾᏝᎢ ᏧᎾᏤᎵᎦ.\nᎾᏃ ᎾᏍᎩ ᏄᎸᏉᏔᏅᎾ ᏱᎰᏩ ᎤᏁᏨᎢ, ᏚᏪᎧᎯᏴᎩ ᏠᎨᏏ ᏧᏅᏏᏓᏍᏗ ᎠᎴ ᏧᏤᎵ ᎦᎾᏝᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᏌᎳᏛᎦ ᏦᏰᏂ ᎦᎸᎶᎢ ᎢᏗᏢ, ᎾᏍᎩ ᎤᏁᏐᎢᏍᏗᏱ ᎢᏥᏈᏱ ᎦᏙᎯ ᏂᎬᎾᏛᎢ, ᎤᏩᏂᏍᏗᏱ ᏴᏫ, ᎠᎴ ᎦᎾᏝᎢ, ᎠᎴ ᏂᎦᎥ ᎦᏄᎸᏒᎢ ᏠᎨᏏ ᎡᎯ, ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ.\nᎼᏏᏃ ᎤᏌᎳᏓᏅᎩ ᎤᏙᎳᏅᏍᏗ ᎦᎸᎳᏗ ᎢᏗᏢ, ᏱᎰᏩᏃ ᏓᏳᏅᏒᎩ ᎠᏴᏓᏆᎶᏍᎩ ᎠᎴ ᎤᏁᏍᏓᎳ, ᎠᏥᎸᏃ ᎦᏙᎯ ᎤᏪᏙᎸᎩ; ᏱᎰᏩᏃ ᏄᏩᏂᏌᏅ ᎤᏁᏐᎠᏒᎩ ᎢᏥᏡᏱ ᎦᏙᎯ.\nᎾᏍᎩᏃ ᎤᏁᏐᎠᏒᎩ ᎠᎴ ᎠᏥᎸ ᎤᏓᏑᏴᎩ ᎦᏁᏐᎠᏍᎬᎢ, ᎤᏣᏘ ᎤᎾᏰᎯᏍᏗ ᎾᏍᎩᏯ Ꮭ ᎢᎸᎯᏳ ᏳᏁᏐᎠᏐ ᎢᏥᏈᏱ ᎾᎿ ᎠᏰᎵ ᎬᏩᏙᏢᏅᎯ ᏅᏓᎬᏩᏓᎴᏅᏛ.\nᏂᎬᎾᏛᏃ ᎦᏙᎯ ᎢᏥᏈᏱ ᎤᏁᏍᏓᎳ ᎤᏅᏂᎲᎩ ᏂᎦᏛ ᏠᎨᏏ ᎠᏁᏙᎯ, ᏴᏫ ᎠᎴ ᎾᏍᏉ ᎦᎾᏝᎢ; ᎠᎴ ᎤᏁᏍᏓᎳ ᏂᎦᎥ ᎦᏄᎸᏒ ᏠᎨᏏ ᎤᏩᏂᎸᎩ, ᎠᎴ ᏕᏡᎬ ᏠᎨᏏ ᏚᏲᏍᏔᏅᎩ.\nᎪᏏᏂ ᎤᏩᏒ, ᎾᎿ ᎢᏏᎵ ᏧᏪᏥ ᎠᏁᎲᎢ, ᎥᏝ ᏳᏁᏐᏗᏎᎢ.\nᏇᎵᏲᏃ ᎤᏓᏅᏒᎩ, ᎠᎴ ᏫᏚᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏥᏍᎦᏅᎩ ᎪᎯ; ᏱᎰᏩ ᎾᏍᎦᏅᎾ, ᎠᏴᏃ ᎠᎴ ᏗᏆᏤᎵ ᏴᏫ ᎣᏥᏍᎦᎾᎢ.\nᎿᏉ ᏰᎵᏉ, ᎯᏔᏲᏏ ᏱᎰᏩ, ᎾᏍᎩᏉ ᎢᎦᎢ ᎤᏣᏘ ᎤᏴᏓᏆᎶᏍᏗᏱ ᎠᎴ ᎤᏁᏐᎠᎯᏍᏗᏱ; ᏙᏓᏨᏲᏏᏃ, ᎠᎴ ᎥᏝ ᎤᏟ ᎢᎪᎯᏛ ᏴᎨᏤᏓ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ; ᏥᏄᎪᏨᏉ ᎦᏚᎲᎢ. ᏗᏉᏰᏂ ᏱᎰᏩ ᎢᏗᏢ ᏫᏛᏓᏥᏌᎳᏙᏔᏂ; ᎠᏴᏓᏆᎶᏍᎬᏃ ᏛᏑᎵᎪᏥ, ᎥᏝ ᎠᎴ ᎿᏉ ᎤᏁᏐᎠᎯᏍᏗ ᏱᎨᏎᏍᏗ; ᎾᏍᎩ ᏣᎦᏙᎥᎯᏍᏗᏱ ᎡᎶᎯ ᏱᎰᏩ ᎤᏤᎵᎦ ᎨᏒᎢ.\nᏂᎯᏍᎩᏂ ᎨᏒᎢ, ᎠᎴ ᏗᏣᏤᎵ ᏘᏅᏏᏓᏍᏗ, ᏥᎦᏔᎭ ᎠᏏᏉ ᎡᏥᎾᏰᎢᏍᏗ ᏂᎨᏒᎾ ᎨᏒ ᏱᎰᏩ ᎤᏁᎳᏅᎯ.\nᏙᎴᏛ ᎠᎴ ᎤᏣᎴᏍᏗᎢᏳᏍᏗ ᎤᏲᏍᏔᏅᎩ; ᎤᏣᎴᏍᏗᏰᏃᎢᏳᏍᏗ ᎤᏥᏣᏔᏅᎯ ᎨᏒᎩ, ᏙᎴᏛᏃ ᎿᏉ ᎤᎦᏔᏛᎩ.\nᎤᏣᎴᏍᏗᏍᎩᏂ ᎠᎴ ᎤᏣᎴᏍᏗ ᎤᏰᎸᎭ ᎥᏝ ᏳᏲᏤᎢ, ᎥᏝᏰᏃ ᎤᏛᏏᏌᏛ ᏱᎨᏎᎢ.\nᎼᏏᏃ ᎤᏄᎪᏨᎩ ᎦᏚᎲ ᏇᎵᏲ ᎤᏓᏅᎡᎸᎩ, ᎠᎴ ᏧᏬᏰᏂ ᏱᎰᏩ ᎢᏗᏢ ᏚᏌᎳᏙᏔᏅᎩ; ᎠᏴᏓᏆᎶᏍᎬᏃ ᎠᎴ ᎦᏁᏐᎠᏍᎬ ᎤᏑᎵᎪᏨᎩ, ᎠᎴ ᎥᏝ ᎠᎦᏍᎬ ᏴᏧᏪᏐᏅᏰ ᎦᏙᎯ.\nᏊᎵᏲᏃ ᎤᏙᎴᎰᏒ ᎠᎦᏍᎬ ᎠᎴ ᎦᏁᏐᎠᏍᎬ ᎠᎴ ᎠᏴᏓᏆᎶᏍᎬ ᎤᏑᎵᎪᏨᎢ, ᎠᏏᏉ ᎤᏍᎦᏅᏨᏩᎩ, ᎠᎴ ᎤᏍᏓᏱᏛ ᎤᎾᏫ, ᎤᏩᏒ ᎠᎴ ᏧᏅᏏᏓᏍᏗ.\nᏇᎵᏲᏃ ᎤᎾᏫ ᎤᏍᏓᏲᏒᎩ, ᎥᏝ ᎠᎴ ᏱᏚᏲᏎ ᎢᏏᎵ ᏧᏪᏥ; ᎾᏍᎩᏯ ᏄᏪᏒ ᏱᎰᏩ ᎼᏏ ᎬᏂᎨᏒ ᏄᏩᏁᎸᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸ ᎼᏏ, ᏇᎵᏲ ᏫᎷᏥ; ᎠᏴᏰᏃ ᏥᏍᏓᏱᏕᎸ ᎤᎾᏫ, ᎠᎴ ᏧᏂᎾᏫ ᏧᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᏥᏴᏁᏗᏱ ᎯᎠ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏓᎩᎸᏫᏍᏓᏁᎲᎢ;\nᎠᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎯᏴᏁᏗᏱ ᏤᏥ, ᎠᎴ ᎾᏍᎩ ᏤᏥ ᎤᏪᏥ ᎾᏆᏛᏁᎸᎢ ᎢᏥᏈᏱ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏓᎩᎸᏫᏍᏓᏁᎸ ᎠᏁᎲᎢ; ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ.\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏇᎵᏲ ᏭᏂᎷᏅᏤᎸᎩ ᎠᎴ ᎯᎠ ᏫᏄᏂᏪᏎᎸᎩ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎠᏂᏡᎷ ᎤᎾᏤᎵᎦ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᏓᏣᎨᏳᏂ ᎡᎳᏗ ᎢᏍᏆᏛᏁᏗᏱ? ᏗᎩᏲᎯ ᏗᏆᏤᎵ ᏴᏫ ᎾᏍᎩ ᏫᎬᏆᏓᏙᎵᏍᏓᏁᏗᏱ.’\nᎢᏳᏰᏃ ᎢᏣᎨᏳᏅᎭ ᏗᎩᏲᎯᏍᏗᏱ ᏗᏆᏤᎵ ᏴᏫ, ᎬᏂᏳᏉ, ᏑᎾᎴᎢ ᏙᏓᎦᏘᏃᎵ ᏙᎳᏧᎦ-ᏣᏁᏆ ᎠᏂ ᏣᏤᎵᎪᎯ;\nᎠᎴ ᏛᏄᏢᏂ ᎦᏙᎯ, ᎾᏍᎩ ᎩᎶ ᎥᏝ ᏰᎵ ᎬᏩᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ ᎦᏙᎯ; ᎠᎴ ᏛᏂᎪᏂ ᎾᏍᎩ ᎤᎵᏃᎯᏴᎯ, ᎾᏍᎩ ᎤᏁᏐᎠᏒ ᎢᏥᏃᎯᏰᎸᎯ, ᎠᎴ ᏛᎾᎵᏍᏓᏴᏔᏂ ᏂᎦᏛ ᏕᏡᎬ ᏠᎨᏏ ᎢᏣᏛᎯᏎᎸᎢ.\nᎠᎴ ᏙᏛᏂᎧᎵᎵ ᏕᎯᏁᎸᎢ, ᎠᎴ ᏂᎦᏛ ᏘᏅᏏᏓᏍᏗ ᏓᏂᏁᎸᎢ, ᎠᎴ ᏓᏂᏁᎸ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎾᏍᎩ ᎥᏝ ᏗᏥᎦᏴᎵᎨ. ᎠᎴ ᏗᏥᎦᏴᎵᎨ ᏧᏂᎦᏴᎵᎨ ᎤᏂᎪᎲᎯ ᏱᎩ ᎡᎶᎯ ᎤᎾᏕᏅ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎪᎯ ᎢᏯᏍᏗ. ᎤᎦᏔᎲᏒᎩᏃ ᎠᎴ ᎤᏓᏅᎡᎸᎩ ᏇᎵᏲ.\nᏯᏇᎵᏲᏃ ᏧᏅᏏᏓᏍᏗ ᎯᎠ ᏂᎬᏩᏪᏎᎸᎩ. ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᎢᎩᏌᏛᎥᏍᎩ ᎨᏎᏍᏗ ᎯᎠ ᎠᎦᏍᏯ) ᏗᎩᏲᎯ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᎪᎱᏍᏗ ᏭᎾᏛᏁᏗᏱ ᏱᎰᏩ ᎤᎾᏁᎳᏅᎯ; ᏝᏍᎪ ᎠᏏ ᏱᎦᏔᎭ ᎢᏥᏈ ᎤᏲᏨᎢᎮ\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᏔᎵᏁ ᏇᎵᏲ ᎤᏬᎸ ᏙᎨᎦᏘᏃᎸᎩ; ᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎢᏤᎾ ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ ᎢᏣᏁᎳᏅᎯ; ᎦᎪ ᎠᏕᏃ ᎾᏍᎩ ᏨᏛᏁᏏ?\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ; ᏗᏂᏲᎵ ᎠᎴ ᎠᏂᎦᏴᎵᎨ ᏦᎦᏤᎵ ᏓᏲᏤᏏ; ᎠᎴ ᎠᏂᏍᎦᏯ ᏦᎨᏥ ᎠᎴ ᎠᏂᎨᏴ ᏦᎨᏥ ᏓᏲᏤᏏ; ᎠᏫ ᎠᎴ ᏩᎦ ᏙᏓᏲᏣᏘᏁᏏ; ᎠᏎᏰᏃ ᎣᎦᎵᏍᏓᏴᏗ ᏱᎰᏩ ᎤᏤᎵ ᎠᎵᏍᏓᏴᏗ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᏱᎰᏩ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ, ᎾᏍᎩᏯ ᏥᏙᏓᏨᏲᏏ ᎠᎴ ᏧᎾᏍᏗ ᏗᏣᏤᎵᎦ. ᎢᏣᎦᏌᏯᏍᏓ; ᎤᏲᏰᏃ ᎢᎬᏱᏗᏢ ᏄᏍᏗ.\nᎥᏝ ᎾᏍᎩ ᏱᏅᎨᏣᏛᎦ, ᏂᎯᏍᎩᏂᎢᏥᏍᎦᏯ ᎢᏣᏂᎩ, ᎠᎴ ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ; ᎾᏍᎩᏰᏃ ᏥᏄᏍᏛᎩ ᏥᏥᏔᏲᎸᎩ. ᎥᎨᏥᎨᎯᏙᎸᏃ ᏇᎵᏲ ᎠᎦᏔᎲᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᏌᎳᏛᎦ ᏦᏰᏂ ᎢᏥᏈᏱ ᎦᏙᎯ ᎦᎸᎳᏗᏢ ᏙᎳᏧᎦᏣᏁᏆ ᎤᏂᎵᎯᏍᏗᏱ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎦᏙᎯ ᎤᏂᎷᎯᏍᏗᏱ, ᎠᎴ ᎤᏂᎩᏍᏗᏱ ᏂᎦᎥ ᎦᏄᎸᏒ ᎦᏙᎯ, ᎾᏍᎩ ᏂᎦᏛ ᎤᏁᏍᏓᎳ ᎤᏃᎯᏴᎯ.\nᎼᏏᏃ ᎤᏌᎳᏓᏅᎩ ᎤᏙᎳᏅᏍᏗ ᎢᏥᏈᏱ ᎦᏙᎯ ᎦᎸᎳᏗᏢ, ᏱᎰᏩᏃ ᏄᏩᏂᏌᏅᎩ ᎾᎿ ᎦᏙᎯ ᎤᏃᏄᏅᎩ ᏗᎧᎸᎬ ᎢᏗᏢ ᏓᏳᏱᎸᏍᏔᏅᎩ, ᎤᏙᏓᏆᏛ ᎾᎯᏳ ᎢᎦ ᎠᎴ ᎤᎵᏨᏓᏆᏛ; ᏑᎾᎴᏃ ᏄᎵᏍᏔᏅ ᏗᎧᎸᎬ ᏧᏃᎸᏛ ᏙᎳᏧᎦᏣᏁᏆ ᎤᏂᏃᎸᏔᏂᎸᎩ.\nᏙᎳᏧᎦᏃᏣᏁᏆ ᎤᏁᏙᎸᎩ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ, ᎠᎴ ᎤᎾᎴᏫᏍᏔᏅᎩ ᎢᏥᏈ ᏂᎬᎾᏛᎢ; ᎤᏣᏘ ᎤᎾᏕᏯᏙᏛᎩ; ᎾᎯᏳ ᎢᏯᏍᏗ ᎥᏝ ᎢᎸᎯᏳ ᏳᎾᏕᏃ ᎾᏍᎩ ᎢᏳᎾᏍᏗ, ᎣᏂ ᎠᎴ ᎥᏝ ᎾᏍᎩ ᎢᏳᎾᏍᏗ ᏴᎬᎾᏕᎲᎦ.\nᏂᎬᎾᏛᏰᏃ ᎦᏙᎯ ᎤᏄᏢᏔᏅᎩ, ᎾᏍᎩ ᎤᎾᎵᏏᎲᏍᏔᏅ ᎦᏙᎯ; ᎠᎴ ᎤᏂᎪᏅ ᏂᎦᎥ ᎤᏰᎾᎥ ᎦᏙᎯ ᎠᎴ ᏂᎦᏛ ᎤᏔᎾᎥ ᏕᏡᎬ ᎾᏍᎩ ᎤᏁᏍᏓᎳ ᎤᏃᎯᏴᎯ: ᎥᏝ ᎠᎴ ᎪᎱᏍᏗ ᎢᏤ ᏳᎵᏃᎯᏰ ᏕᏡᎬᎢ, ᎠᎴ ᎤᏰᎾᎥ ᏠᎨᏏ, ᎢᏥᏈᏱ ᎦᏙᎯ ᏂᎬᎾᏛᎢ.\nᏇᎵᏲᏃ ᎤᎵᏍᏗ ᏫᏚᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ; ᎯᎠᏃ ᏄᏪᏒᎩ, ᏥᏍᎦᏅᏤᎸ ᏱᎰᏩ ᎢᏍᏓᏁᎳᏅᎯ, ᎠᎴ ᏂᎯ ᎢᏍᏛᏍᎦᏅᏤᎸ.\nᎿᏉᏃ ᎢᏍᏛᏔᏲᏎᎭ, ᎠᏏ ᏌᏉ ᏂᏍᎩᏂᏙᎵᎩ ᎠᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎡᏍᏗᏔᏲᏏ ᏱᎰᏩ ᎢᏍᏓᏁᎳᏅᎯ ᎾᏍᎩ ᎠᎩᎲᎡᏗᏱ ᎯᎠᏉ ᎤᏩᏒ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ.\nᎤᏓᏅᎡᎸᎩᏃ ᏇᎵᏲ, ᎠᎴ ᏭᏔᏲᏎᎸᎩ ᏱᎰᏩ.\nᏱᎰᏩᏃ ᎤᎦᏔᎲᏒᎩ ᎤᏃᎴ, ᎤᎵᏂᎩᏛ ᏭᏕᎵᎬ ᏛᎤᏃᎸᏔᏅᎩ, ᎾᏍᎩ ᏙᎳᏧᎦᏣᏁᏆ ᎤᏂᏃᎸᏔᏅᎩ, ᎠᏣᏩᏉᎯ ᎩᎦᎨᏍᏛᏱ ᏫᏚᎾᏓᎢᏅᏒᎩ; ᏙᎳᏧᎦᏣᏁᏆ ᎥᏝ ᏌᏉᎤᏅ ᏳᎵᏃᎯᏰ ᏂᎬᎾᏛ ᎢᏥᏡᏱ.\nᎠᏎᏃ ᏱᎰᏩ ᎤᏍᏓᏱᏕᎸᎩ ᏇᎵᏲ ᎤᎾᏫ; ᎾᏍᎩ ᎥᏝ ᏱᏚᏲᏎ ᎢᏏᎵ ᏧᏪᏥ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏦᏰᏂ ᎦᎸᎳᏗ ᎢᏗᏢ ᎯᏌᎳᏙᏓ, ᎾᏍᎩ ᎤᎵᏏᎲᏍᏗᏱ ᎢᏥᏈᏱ ᎦᏙᎯ ᏂᎬᎾᏛᎢ, ᎾᏍᎩ ᎤᎾᏒᏂᎵᏓᏍᏗᏱ ᎤᎵᏏᎬᎢ.\nᎼᏏᏃ ᎤᏌᎳᏓᏅᎩ ᎤᏬᏰᏂ ᎦᎸᎳᏗ ᎢᏗᏢ; ᎤᏅᏘᏛᏃ ᎤᎵᏏᎲᏒᎩ ᏂᎬᎾᏛ ᎦᏙᎯ ᎢᏥᏈᏱ ᏦᎢ ᏧᏒᎯᏛ.\nᎥᏝ ᏱᏓᎾᏓᎪᏩᏘᏍᎨᎢ, ᎥᏝ ᎠᎴ ᎩᎶ ᏱᏓᎴᎲᏍᎨ ᏄᏛᏅᎢ ᏦᎢ ᏧᏒᎯᏛ: ᎢᏏᎵᏍᎩᏂ ᏧᏪᏥ ᏂᎦᏛ ᎢᎦᎯᏳ ᎨᏒᎩ ᏓᏂᏁᎸᎢ.\nᏇᎵᏲᏃ ᏭᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎢᏤᎾ, ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ; ᎠᏫ ᎤᏅᏒ ᎠᎴ ᏩᎦ ᏗᏣᏤᎵᎦ ᏗᎦᎧᎯᏯᏍᏗ ᎨᏎᏍᏗ; ᏗᏂᏲᎵ ᎾᏍᏉ ᏗᏤᏥ ᏗᏣᏘᏄᎦ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᏒᎩ, ᏍᎩ ᏁᏗ ᎾᏍᏉ ᎨᏎᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎠᎴ ᎠᏥᎸᎨᎳᏍᏙᏗ, ᎾᏍᎩ ᎣᏣᎵᏍᎪᎸᏓᏁᏗᏱ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ.\nᎣᎩᎾ ᏝᎥ ᎾᏍᏉ ᏦᏣᏘᏅᏍᏗ ᎨᏎᏍᏗ; ᎥᏝ ᏌᏉᎤᏅ ᎤᏗᎩᏯᏍᏗ ᏱᎨᏎᏍᏗ; ᎾᏍᎩᏰᏃ ᏦᎬᏙᏗ ᎣᏣᏓᏙᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ; ᎥᏝ ᎠᎴ ᏲᏥᎦᏔᎭ ᎢᏳᏍᏗ ᎣᎬᏙᏗ ᎨᏒ ᏱᎰᏩ ᎣᏣᏓᏙᎵᏍᏓᏁᎲ ᎬᏂ ᎾᎿ ᏬᏥᎷᏥᎸᎢ.\nᎠᏎᏃ ᏱᎰᏩ ᎤᏍᏓᏱᏕᎸᎩ ᏇᎵᏲ ᎤᎾᏫ, ᎠᎴ ᎥᏝ ᏳᏬᎯᏳᏁ ᏧᏲᎯᏍᏗᏱ.\nᏇᎵᏲᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᏍᏆᏓᏅᏏ, ᎭᏓᏯᏫᏍᎨᏍᏗ ᏞᏍᏗ ᏔᎵᏁ ᎠᏆᎧᏛ ᏥᎯᎪᎯ; ᎾᎯᏳᏰᏃ ᎢᎦ ᎠᏆᎧᏛ ᎪᎯᎲᎭ ᏣᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏰᎵᏉ ᏂᏫ; ᎥᏝ ᏔᎵᏁ ᏣᎧᏛ ᏴᎦᏥᎪᏩᏛ.\n⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮔ⁠Ꮺ⁠Ꮞ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮌ⁠Ꮟ⁠,⁠ ⁠Ꮣ⁠Ꭶ⁠Ꮣ⁠Ꮕ⁠Ꮟ⁠ ⁠Ꭰ⁠Ꮟ⁠ ⁠Ꮡ⁠Ꮣ⁠Ꮄ⁠Ꭹ⁠ ⁠Ꭴ⁠Ꮥ⁠Ꮿ⁠Ꮩ⁠Ꮧ⁠ ⁠Ꭴ⁠Ꮇ⁠Ꮴ⁠Ꮧ⁠Ᏹ⁠ ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠;⁠ ⁠Ꭳ⁠Ꮒ⁠Ꮓ⁠ ⁠Ꮩ⁠Ꮣ⁠Ꮵ⁠Ᏺ⁠Ꮟ⁠ ⁠Ꭰ⁠Ꮒ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮔ⁠Ꭺ⁠Ꭲ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮓ⁠ ⁠Ꮥ⁠Ꮵ⁠Ᏺ⁠Ꮢ⁠Ꭽ⁠,⁠ ⁠Ꮏ⁠Ꮙ⁠ ⁠Ꭰ⁠Ꮞ⁠”⁠ ⁠Ꭲ⁠Ꮵ⁠Ꭸ⁠Ꭿ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮒ⁠ ⁠\n⁠Ꭷ⁠ ⁠ ⁠Ꮨ⁠Ꮑ⁠Ꮵ⁠ ⁠Ᏼ⁠Ꮻ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꮟ⁠Ᏼ⁠Ꮻ⁠Ꭽ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꮝ⁠Ꭶ⁠Ꮿ⁠ ⁠Ꮻ⁠Ꮣ⁠Ꮎ⁠Ꮩ⁠Ꮈ⁠Ꮟ⁠ ⁠Ꮎ⁠Ꭵ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮎ⁠Ꮣ⁠Ꮅ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꮟ⁠Ᏼ⁠Ꮻ⁠Ꭽ⁠ ⁠Ꭰ⁠Ꮒ⁠Ꭸ⁠Ᏼ⁠ ⁠Ꮻ⁠Ꮣ⁠Ꮎ⁠ ⁠Ꮩ⁠Ꮈ⁠Ꮟ⁠ ⁠Ꮎ⁠Ꭵ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮎ⁠Ꮣ⁠Ꮅ⁠,⁠ ⁠Ꭺ⁠Ꮁ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮥ⁠Ꮈ⁠ ⁠Ꭴ⁠Ꮑ⁠Ꭼ⁠ ⁠Ꮧ⁠Ꭺ⁠Ꮲ⁠Ꮤ⁠Ꮕ⁠Ꭿ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭰ⁠Ꮥ⁠Ꮈ⁠ ⁠Ꮣ⁠Ꮆ⁠Ꮒ⁠Ꭸ⁠ ⁠Ꮧ⁠Ꭺ⁠Ꮲ⁠Ꮤ⁠Ꮕ⁠Ꭿ⁠ ⁠\n⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꮪ⁠Ꮑ⁠Ꮈ⁠ ⁠Ᏼ⁠Ꮻ⁠ ⁠Ꭳ⁠Ꮟ⁠Ᏻ⁠ ⁠Ꭼ⁠Ꮹ⁠Ꮒ⁠Ᏸ⁠Ꮈ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠. ⁠ ⁠Ꭰ⁠Ꮄ⁠Ꮼ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭰ⁠Ꮝ⁠Ꭶ⁠Ꮿ⁠ ⁠Ꮌ⁠Ꮟ⁠ ⁠Ꭰ⁠Ꮵ⁠Ꮈ⁠Ꮙ⁠Ꮧ⁠Ᏻ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠,⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭼ⁠Ꮹ⁠Ꮈ⁠Ꮙ⁠Ꮧ⁠Ᏻ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꮷ⁠Ꮕ⁠Ꮟ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭴ⁠Ꮒ⁠Ꮳ⁠Ꮨ⁠ ⁠Ꭸ⁠Ꮢ⁠ ⁠Ᏼ⁠Ꮻ⁠. ⁠\n⁠Ꮌ⁠Ꮟ⁠Ꮓ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮔ⁠Ꮺ⁠Ꮢ⁠Ꭹ⁠,⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮺ⁠Ꭽ⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠,⁠ ⁠Ꭰ⁠Ᏸ⁠Ꮅ⁠ ⁠Ꮢ⁠Ꮓ⁠Ᏹ⁠ ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꮣ⁠Ꮵ⁠Ꮔ⁠Ꭺ⁠Ꮵ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮱ⁠Ᏹ⁠ ⁠Ꭰ⁠Ᏸ⁠Ꮅ⁠ ⁠Ꮾ⁠Ꮣ⁠Ꭸ⁠Ꮩ⁠Ꮅ⁠:⁠\n⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠Ꮓ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠ ⁠Ꮷ⁠Ꮒ⁠Ᏺ⁠Ꮁ⁠Ꭿ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠,⁠ ⁠Ꭰ⁠Ꭶ⁠Ꮄ⁠Ꮕ⁠Ꮩ⁠Ꮧ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭱ⁠Ꭿ⁠ ⁠Ꭴ⁠Ꮺ⁠Ꮵ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭴ⁠Ꮺ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭶ⁠Ꮝ⁠Ꭹ⁠Ꮈ⁠ ⁠Ꮷ⁠Ꮼ⁠Ꮃ⁠,⁠ ⁠Ꭰ⁠Ꮵ⁠Ꮝ⁠Ꮖ⁠Ꮧ⁠Ꮝ⁠Ꮩ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꭸ⁠Ᏼ⁠ ⁠Ꭰ⁠Ꮵ⁠Ꮕ⁠Ꮟ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭰ⁠Ꮝ⁠Ꮩ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭳ⁠Ꮒ⁠Ꮧ⁠Ꮲ⁠ ⁠Ꭴ⁠Ꮼ⁠Ꮅ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭱ⁠Ꭿ⁠ ⁠Ꭴ⁠Ꮺ⁠Ꮵ⁠;⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭶ⁠Ꮎ⁠Ꮭ⁠Ꭲ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ꭲ⁠Ꭼ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠. ⁠\n⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭴ⁠Ꮳ⁠Ꮨ⁠ ⁠Ꮩ⁠Ꮫ⁠Ꮒ⁠Ᏼ⁠Ꮃ⁠Ꮟ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮱ⁠Ᏹ⁠ ⁠Ꮒ⁠Ꭼ⁠Ꮎ⁠Ꮫ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠,⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꭲ⁠Ꮈ⁠Ꭿ⁠Ᏻ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠Ꮿ⁠ ⁠Ᏹ⁠Ꮔ⁠Ꮒ⁠Ꮺ⁠Ꮠ⁠Ꭲ⁠,⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭲ⁠Ᏻ⁠Ꮒ⁠Ꮺ⁠Ꮝ⁠Ꮧ⁠ ⁠Ᏹ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꭲ⁠Ꮈ⁠Ꭿ⁠Ᏻ⁠Ꭲ⁠ ⁠\n⁠Ꭲ⁠Ꮟ⁠Ꮅ⁠Ꮝ⁠Ꭹ⁠Ꮒ⁠ ⁠Ꮷ⁠Ꮺ⁠Ꮵ⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꭹ⁠Ꮅ⁠ ⁠Ꭶ⁠Ꮓ⁠Ꭺ⁠Ꭲ⁠ ⁠Ꭴ⁠Ꮦ⁠Ꮈ⁠Ꮧ⁠ ⁠Ᏹ⁠Ꭸ⁠Ꮞ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꮣ⁠Ꮱ⁠Ꮧ⁠Ꮝ⁠Ꭼ⁠Ꭲ⁠,⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꮙ⁠ ⁠Ᏼ⁠Ꮻ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭶ⁠Ꮎ⁠Ꮭ⁠Ꭲ⁠;⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꭶ⁠Ꮩ⁠Ꭵ⁠Ꭿ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠ ⁠Ꮣ⁠Ꮣ⁠Ꮣ⁠Ꮄ⁠Ꮧ⁠Ꮝ⁠Ꭼ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭰ⁠Ꮑ⁠Ꭿ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭲ⁠Ꮟ⁠Ꮅ⁠\n⁠Ꭿ⁠Ꭰ⁠Ꮓ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ꮨ⁠Ꮕ⁠Ꮟ⁠Ꮣ⁠Ꮝ⁠Ꮧ⁠ ⁠Ꮾ⁠Ꮣ⁠Ꭼ⁠Ꭹ⁠Ꮇ⁠Ꮴ⁠Ꮅ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭱ⁠Ꮃ⁠Ꮧ⁠ ⁠Ꮕ⁠Ꮣ⁠Ꭼ⁠Ꮖ⁠Ꮫ⁠Ꮑ⁠Ꮅ⁠,⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮎ⁠Ꮒ⁠Ꮺ⁠-⁠ ⁠Ꮝ⁠Ꭸ⁠Ꮝ⁠Ꮧ⁠,⁠ ⁠Ꭿ⁠Ꮔ⁠Ꭺ⁠Ꭲ⁠,⁠ ⁠Ꮒ⁠Ꭿ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ᏼ⁠Ꮻ⁠ ⁠Ꮵ⁠Ꭸ⁠Ꮳ⁠Ꮝ⁠Ꮣ⁠Ꮹ⁠Ꮧ⁠Ꮩ⁠Ꭽ⁠;⁠ ⁠Ꭳ⁠Ꮒ⁠Ꮓ⁠ ⁠Ꮵ⁠Ꮔ⁠Ꭺ⁠Ꮸ⁠Ꭽ⁠ ⁠ ⁠Ꭴ⁠Ꮔ⁠Ꭺ⁠Ꮸ⁠Ꭹ⁠Ꮓ⁠ ⁠Ꭴ⁠Ꮣ⁠Ꮕ⁠Ꭱ⁠Ꮄ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭴ⁠Ꮳ⁠Ꮨ⁠ ⁠Ꭴ⁠Ꮤ⁠Ꮃ⁠Ꮼ⁠Ꮢ⁠Ꭿ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠\n⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮔ⁠Ꮺ⁠Ꮞ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮌ⁠Ꮟ⁠,⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭵ⁠Ꮭ⁠ ⁠Ᏼ⁠Ꮣ⁠Ꮳ⁠Ꮫ⁠Ꮣ⁠Ꮝ⁠Ꮣ⁠Ꮑ⁠Ꮅ⁠;⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭰ⁠Ꭹ⁠Ꮑ⁠Ꮙ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭴ⁠Ꮝ⁠Ꮖ⁠Ꮒ⁠Ꭺ⁠Ꮧ⁠ ⁠Ꮣ⁠Ꭹ⁠Ꮈ⁠Ꮻ⁠Ꮝ⁠Ꮣ⁠Ꮑ⁠Ꮂ⁠ ⁠Ꭲ⁠Ꮵ⁠Ꮘ⁠Ᏹ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠ ⁠\n⁠Ꮌ⁠Ꮟ⁠Ꮓ⁠ ⁠Ꭰ⁠Ꮄ⁠ ⁠Ꭱ⁠⁠Ꮃ⁠Ꮒ⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠ ⁠Ꭿ⁠Ꭰ⁠ ⁠Ꮒ⁠Ꭶ⁠Ꮫ⁠ ⁠Ꭴ⁠Ꮝ⁠Ꮖ⁠Ꮒ⁠Ꭺ⁠Ꮧ⁠ ⁠Ꮪ⁠Ꮒ⁠Ꮈ⁠Ꮻ⁠Ꮝ⁠Ꮣ⁠Ꮑ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭰ⁠Ꭶ⁠Ꮤ⁠Ꮂ⁠Ꭲ⁠;⁠ ⁠Ᏹ⁠Ꮀ⁠Ꮹ⁠Ꮓ⁠ ⁠Ꭴ⁠Ꮝ⁠Ꮣ⁠Ᏹ⁠Ꮥ⁠Ꮈ⁠Ꭹ⁠ ⁠Ꮗ⁠Ꮅ⁠Ᏺ⁠ ⁠Ꭴ⁠Ꮎ⁠Ꮻ⁠,⁠ ⁠Ꮎ⁠Ꮝ⁠Ꭹ⁠Ꮓ⁠ ⁠Ꮒ⁠Ꮪ⁠Ᏺ⁠Ꮢ⁠Ꮎ⁠Ꮙ⁠ ⁠Ꭸ⁠Ꮢ⁠Ꭹ⁠ ⁠Ꭲ⁠Ꮟ⁠Ꮅ⁠ ⁠Ꮷ⁠Ꮺ⁠Ꮵ⁠ ⁠Ꭴ⁠Ꮒ⁠Ꮔ⁠Ꭺ⁠Ꭲ⁠Ꮝ⁠Ꮧ⁠Ᏹ⁠ ⁠Ꭴ⁠Ꮴ⁠Ꮅ⁠Ꭺ⁠Ꭿ⁠ ⁠Ꭶ⁠Ꮩ⁠Ꭿ⁠ !\nᏱᎰᏩᏃ ᏚᏁᏤᎸᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᎢᏥᏈᏱ, ᎯᎠ ᏂᏚᏪᏎᎸᎩ.\nᎪᎯ ᏥᎧᎳ ᏗᏓᎴᏅᏗᏍᎩ ᎨᏎᏍᏗ ᏓᏦᎳᏂᏒᎢ; ᏗᏓᎴᏅᏗᏍᎩ ᎨᏎᏍᏗ ᎠᏕᏘᏱᏍᎬ ᎪᎯ ᎧᎸᎢ.\nᏗᏍᏗᏁᏥ ᏂᎦᏛ ᎢᏏᎵ ᏓᏂᎳᏫᎥᎢ, ᎯᎠ ᏂᏗᏍᏗᏪᏏ, ᎠᏍᎪᎯᏁ ᎢᎪᎯ ᎪᎯ ᏥᎧᎳ ᎠᏂᏏᏴᏫᎭ ᎠᏂᏍᎦᏯ ᏧᏂᎦᏴᎵᎨ ᏏᏓᏁᎸᎯ ᏕᎨᏌᏗᏒ ᎠᏫ ᎤᎾᏘᏅᏍᏗ ᎨᏎᏍᏗ, ᏏᏓᏁᎸᎯ ᎨᏒ ᏌᏉ ᎠᏫ ᎤᎾᏘᏅᏍᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᏏᏓᏁᎸᎯ ᎨᏒ ᎠᏂᎦᏲᎵᏳᏉ ᏱᎩ ᎤᏂᏒᎲᏍᏗᏱ ᎠᏫ, ᎿᏉ ᎾᎥᏂᎨ ᎾᎥ ᎢᏳᎾᏓᎵ ᎨᏒ ᏏᏓᏁᎸᎯ ᎤᏂᏁᏍᏗ ᎨᏎᏍᏗ, ᎾᏂᎥ ᎾᏍᎩᏯ ᎢᎦᎢ ᎤᏂᏁᏍᏗ ᎨᏎᏍᏗ, ᎠᏂᏏᏴᏫᎭ ᎢᎦᎢ ᎬᏩᏂᎩᏍᏗ ᎨᏒ ᏗᏣᏎᏍᏗ ᎨᏎᏍᏗ ᎤᎾᏕᏆᎶᏗ ᏌᏉ ᎠᏫ.\nᎢᏣᏤᎵ ᎠᏫ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎨᏎᏍᏗ, ᎠᏨᏯ ᎤᏕᏘᏴᏛ,; ᏗᏥᏯᏅᎡᏗ ᎨᏎᏍᏗ ᎤᏂᏃᏕᎾ ᎠᎴ ᎠᏂᎭᏄᎸᎯ.\nᎠᎴ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᏂᎦᏚᏏᏁ ᎢᎪᎯ ᎢᏯᏍᏗ ᎪᎯ ᎧᎳᏩᏗᏒᎢ; ᏂᎦᏛᏃ ᏓᏂᎳᏫᎥ ᎢᏏᎵ ᎤᏂᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏒᎢ.\nᎾᏍᎩᏃ ᎤᎩᎬ ᎤᏂᏁᎩᏍᏗ ᏧᏂᏍᏚᏟᏍᏗ ᎨᏎᏍᏗ ᎢᏧᎳᏗᏢ ᏕᎦᏯᎸ ᎦᎶᎯᏍᏗᏱ, ᎠᎴ ᎦᎸᎳᏗᏢ ᏚᎶᎯᏍᏗᏱ ᎠᏍᏆᎾᎸᎢ, ᎾᎿ ᏓᏓᏁᎸ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ.\nᎾᎯᏳᏉᏃ ᏒᏃᏱ ᎤᏫᏯ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᏒᎾᏘᎶᎥᎯ ᎠᏥᎸᏱ, ᎠᎴ ᎦᏚ ᎠᎪᏔᏅᎯ ᏂᎨᏒᎾ: ᎠᎴ ᎤᏴᏍᏗ ᎦᏄᎸᏒᎢ ᎤᎾᏠᏯᏍᏗ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ.\nᏞᏍᏗ ᎠᎪᏍᏗ ᎢᏥᎬᎩ, ᎠᎴ ᏞᏍᏗ ᎠᎪᏎᎯ ᎬᏂᏍᏔᏅᎯ, ᎠᏒᎾᏘᎶᎥᎯᏍᎩᏂ ᎠᏥᎸᏱ, ᎤᏍᎪ ᎠᎴ ᏗᎦᏅᏍᎨᏂ, ᎠᎴ ᏄᏍᏗᏓᏅ ᎤᎵᏠᏯᏍᏕᏍᏗ.\nᎠᎴ ᏞᏍᏗ ᎢᎦᏛ ᎢᏥᎯᏴᎩ ᏑᎾᎴ ᎢᏴᏛ; ᎾᏍᎩᏃ ᏑᎾᎴ ᎤᏘᏴᎯ ᎢᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᏥᏥᎸᏱ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎢᏥᎬᎭ; ᏕᏣᏓᏠᎮᏍᏗ, ᏕᏣᎳᏑᎴᏍᏗ, ᎠᎴ ᏗᏣᏙᎳᏅᏍᏗ ᏕᏥᏁᎮᏍᏗ; ᎠᎴ ᎤᎵᏍᏗ ᎢᏥᎬᎭ; ᏱᎰᏩᏰᏃ ᎤᏤᎵ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎾᏍᎩ.\nᏓᏥᎦᏛᎴᏏᏰᏃ ᎢᏥᏈᏱ ᎦᏙᎯ ᎪᎯ ᏒᏃᏱ, ᎠᎴ ᏓᎦᏥᏴᏂᎵ ᏂᎦᏛ ᎢᎬᏱ ᎠᏁᎯ ᎢᏥᏈᏱ ᎠᏁᎯ, ᏴᏫ ᎠᎴ ᎦᎾᏝᎢ; ᎠᎴ ᏂᎦᏗᏳ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏁᎳᏅᎯ ᏓᎦᏥᏍᏛᏗᏍᏔᏂ; ᎠᏴ ᏱᎰᏩ\nᎩᎬᏃ ᎤᏰᎸᏛ ᎨᏎᏍᏗ ᏓᏓᏁᎸ ᎾᎿ ᎢᏥᏯᎥᎢ; ᏥᎪᎥᏃ ᎩᎬ ᎢᏨᏃᎯᏯᏍᏗ ᎨᏎᏍᏗ, ᎤᏕᏯᏙᏗᏃ ᎥᏝ ᎢᏥᎷᏤᏗ ᎢᏥᏒᎲᏍᏗ ᏱᎨᏎᏍᏗ, ᎾᎯᏳ ᎬᏂᎸᎭ ᎢᏥᏈᏱ ᎦᏙᎯ.\nᎪᎯᏃ ᎢᎦ ᏥᎩ ᎢᏣᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎢᏥᏍᏆᏂᎪᏙᏗ ᏱᎰᏩ ᎡᏣᎵᏍᏓᏴᎾᏁᏗ ᎨᏎᏍᏗ ᏂᏣᏓᏁᏟᏴᏏᏒᎢ; ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᎢᏣᎵᏍᏓᏴᏗᏱ, ᏂᎪᎯᎸ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ.\nᎦᎵᏉᎩ ᎢᎦ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᏂᏥᎩᏍᏗ ᎨᏎᏍᏗ; ᎢᎬᏱᏱᏉ ᎢᎦ ᎢᏥᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ ᏕᏥᏁᎸ ᎠᎪᏙᏗ; ᎩᎶᏰᏃ ᎠᎪᏔᏅᎯ ᎦᏚ ᎢᎠᎩᏍᎨᏍᏗ ᎢᎬᏱᏱ ᎢᎦ ᏅᏓᎬᏩᏓᎴᏅᏛ ᎦᎵᏉᎩᏁ ᎢᎦ ᎢᏯᏍᏗ, ᎾᏍᎩ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ ᎢᏏᎵᏱ ᎤᏙᏣᎸᎢ.\nᎢᎬᏱᏱᏉ ᎢᎦ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗ ᎢᏥᏰᎸᏎᏍᏗ, ᎠᎴ ᎦᎵᏉᎩᏁ ᎢᎦ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗ ᎢᏥᏰᎸᏎᏍᏗ; ᎥᏝ ᎪᎱᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ ᎾᎯᏳ ᎨᏒᎢ, ᎾᏍᎩᏂᏃᏅ ᎠᏂᏏᏴᏫᎭ ᎤᎾᎵᏍᏓᏴᏗ. ᎨᏒ ᎾᏍᎩ ᎤᏩᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎠᎵᏍᏓᏴᏗᏱ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᎩᏍᏗᏱ; ᎾᎯᏳᏰᏃ ᎢᎦ ᎨᏒ ᎢᏥᏈᏱ ᎦᏙᎯ ᏓᏨᏄᎪᏫᏒᎩ ᏕᏣᏓᏡᏩᏗᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎪᎯ ᎢᎦ ᎢᏣᏓᏁᏟᏴᏏᏒ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ.\nᎢᎬᏱᏱ ᏅᏙᎯ, ᏂᎦᏚᏏᏁ ᎢᎦ ᎾᏍᎩ ᎧᎸᎢ, ᎤᏒᎢ, ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᏗᏥᎩᏍᏗ ᎨᏎᏍᏗ, ᏐᎢᏦᏁᏏᏁ ᎢᎦ ᎾᏍᎩ ᎧᎳᏩᏗᏒ ᎢᏯᏍᏗ ᎤᏒᎢ.\nᎦᎵᏉᎩ ᎢᎦ ᎠᎪᏙᏗ ᎥᏞᏍᏗ ᎬᏩᏛᏗ ᏱᎨᏎᏍᏗ ᏕᏥᏁᎸᎢ; ᎩᎶᏰᏃ ᎪᎱᏍᏗ ᎠᎪᏔᏅᎯ ᎠᎩᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᎤᎾᏓᏡᎬ ᎤᏙᏣᎸᎢ, ᎾᏍᏉ ᎡᏙᎯᏉ ᏱᎩ, ᎠᎴ ᎾᎿᏉ ᎤᏕ-ᏅᎯ ᏱᎩ.\nᎥᏞᏍᏗ ᎪᎱᏍᏗ ᎢᏥᎩᏍᏗ ᏱᎨᏎᏍᏗ ᎠᎪᏔᏅᎯ; ᏂᎦᏛ ᏕᏥᏁᎳᏗᏒ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᏥᎩᏍᏗ ᎨᏎᏍᏗ.\nᎿᏉᏃ ᎼᏏ ᏫᏚᏯᏅᎲᎩ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᎠᏁᎲᎢ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᏗᏥᏂᏴ ᎠᎴ ᏗᏣᏘᏄᎦ ᎠᏫ ᏕᏣᏓᏘᎾᏩᏗᏒᎢ, ᎠᎴ ᏗᏥᎷᎦ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᏗᎯᏍᏗ ᎨᏒᎢ.\nᎯᏌᏈᏃ ᎪᏛᎢᏛ ᎢᏥᎩᏒᎭ, ᎩᎬᏃ ᎦᏁᎲ ᎠᏕᎵᏙᎩᎯ ᎢᏅᎭ, ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎦᎸᎳᏗᏢ ᎠᏍᏆᎾᎸ ᎠᎴ ᎢᏧᎳ ᎢᏗᏢ ᏕᎦᏯᎸ ᏕᎯᏍᏚᏟᏍᏔᏅᎭ ᎯᎠ ᎩᎬ ᎠᏕᎵᏙᎩᎯ ᎦᏁᎲᎢ;: ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏄᎪᎢᏍᏗ ᏱᎨᏎᏍᏗ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᎦᏁᎸᎢ ᎬᏂ ᏑᎾᎴ ᏂᎦᎵᏍᏔᏅᎭ.\nᏱᎰᏩᏰᏃ ᏓᎦᎶᏏ ᏧᎩᎵᏲᎢᏍᏙᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎠᎪᎲᏃ ᎩᎬ ᎤᏓᏅᎵᏰᎥ ᎦᎶᎯᏍᏗᏱ ᎦᎸᎳᏗᏢ ᎠᏍᏆᎾᎸᎢ, ᎠᎴ ᎢᏧᎳ ᎢᏗᏢ ᏕᎦᏯᎸᎢ, ᏱᎰᏩ ᏓᎧᏃᎯᏱ ᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ, ᎠᎴ ᎥᏝ ᎤᎵᏍᎪᎸᏓᏁᏗ ᏱᎨᏎᏍᏗ ᏗᏛᏗᏍᎩ ᎤᏴᏍᏗᏱ ᏕᏥᏁᎸ ᎢᏥᎩᎵᏲᎢᏍᏙᏗᏱ.\nᎯᎠ ᎾᏍᎩ ᎤᎵᏁᏨᎯ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᏗᏥᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᏂᎯ ᎠᎴ ᏗᏤᏥ ᎠᏂᏍᎦᏯ ᏂᎪᎯᎸᎢ.\nᎠᎴ ᎯᎠ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ, ᎿᏉ ᏫᏥᎷᏨᎭ ᎾᎿ ᎦᏙᎯ ᏱᎰᏩ ᎢᏥᏁᏗ ᏥᎩ, ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏚᎢᏍᏔᏅᎢ, ᎾᏍᎩ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎯᎠ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏗᏤᏥ ᎯᎠ ᏂᎨᏥᏪᏎᎸᎭ; ᎦᏙ ᎢᏨᏙᏗ ᎯᎠ ᎾᏍᎩ ᏥᏕᏥᎸᏫᏍᏓᏁᎭ,\nᎯᎠ ᎢᏥᏪᏍᏗ ᎨᏎᏍᏗ, ᎯᎠ ᎾᏍᎩ ᏱᎰᏩ ᎤᏤᎵ ᎧᏃᎯᏰᎩ ᎠᎵᏍᎪᎸᏓᏁᏗ; ᎾᏍᎩ ᏥᏚᏃᎯᏰ ᏓᏂᏁᎸ ᎢᏏᎵ ᏧᏪᏥ ᎢᏥᏈᏱ, ᎾᎯᏳ ᏥᏚᎩᎵᏲᎢᏍᏔᏁ ᎢᏥᏠᏱ ᎠᏁᎯ ᎠᏴᏃ ᏙᏥᏁᎸ ᏥᏚᏍᏕᎸᎮᎢ. ᏴᏫᏃ ᏚᎾᏗᏍᏚᏅᎩ, ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅᎩ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎤᎾᏓᏅᏒᎩ, ᎠᎴ ᏫᏄᎾᏛᏁᎸᎩ ᎾᏍᎩᏯ ᏱᎰᏩ ᏂᏚᏪᏎᎸ ᎼᏏ ᎠᎴ ᎥᎡᎳᏂ, ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸᎩ.\nᏇᎵᏲᏃ ᎤᏗᏛᎲᎩ ᏒᏃᏱ, ᎤᏩᏒ ᎠᎴ ᏂᎦᏛ ᏧᏅᏏᏓᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎢᏥᏈᏱ ᎠᏁᎯ; ᎠᎴ ᎤᏣᏘ ᏓᏂᏴᎬᎩ ᎢᏥᏡᏱ; ᎥᏝᏰᏃ ᎢᎸᎯᏢ ᏯᏓᏁᎴ ᎾᎿ ᎠᏏᏴᏫ ᎤᏲᎢᏒᎯ ᏂᎦᏅᎾ ᎨᏒᎢ.\nᎠᎴ ᏫᏚᏯᏅᎲᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᏒᏃᏱ, ᎯᎠᏃ ᏄᏪᏒᎩ, ᏗᏍᏓᎴᎲᎦ ᎢᏍᏓᏓᏅᎾ ᏗᏆᏤᎵ ᏴᏫ ᎠᏂ ᏄᎾᏛᏅᎢ, ᏂᎯ ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ: ᎠᎴ ᎢᏤᎾ ᎪᎱᏍᏗ ᏪᏣᏛᏂᏏ ᏱᎰᏩ, ᎾᏍᎩᏯ ᏂᏥᏪᏒᎢ.\nᎠᎴ ᏗᏣᏘᏄᎦ ᎠᏫ ᎠᎴ ᏩᎦ, ᎾᏍᎩᏯ ᏂᏥᏪᏒᎢ, ᎠᎴ ᎢᏤᎾ, ᎠᎴ ᎾᏍᏉ ᎣᏍᏛ ᏍᎩᏂᏁᏤᎸᎭ.\nᎢᏥᏈᏱᏃ ᎠᏁᎯ ᏓᎾᎵᏍᏓᏁᎲᎩ ᏴᏫ, ᎤᎾᏚᎵᏍᎬᎩ ᏧᏂᏄᎪᏫᏍᏗᏱ ᎤᎾᏤᎵᎪᎯ; ᎯᎠᏰᏃ ᎾᏂᏪᏍᎬᎩ, ᏗᎩᏲᎱᏒᎯᏉ ᏂᏗᎥᎢ.\nᏴᏫᏃ ᎤᎾᏑᎨᎲᎯ ᎠᏏᏉ ᎾᎪᏔᏅᎾ ᏧᎾᏑᎨᏗᏱ ᏥᏳᎯ ᎦᎸᎢ ᏧᎾᏄᏬᎩᎯ ᎦᏇᏅᏒᎯ ᏚᎾᏃᎭᏝᏅᎩ..\nᎢᏏᎵᏃ ᏧᏪᏥ ᏄᏪᏒ ᎼᏏ ᎾᏍᎩᏯ\nᏄᎾᏛᏁᎸᎩ; ᎠᎴ ᏚᎾᏙᎸᎡᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᏧᏓᎴᏅᏛ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᏗᏄᏬ.\nᏱᎰᏩᏃ ᏚᏁᎸ ᏴᏫ ᎣᏏᏳ ᎬᏩᏂᏰᎸᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎾᏍᎩ ᏕᎬᏩᎾᏙᎳᏍᏗᏍᎬᎩ, ᎠᎴ ᏚᏂᎾᏌᏅᎩ ᎢᏥᏠᏱ ᎠᏁᎯ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎤᎾᏂᎩᏒᎩ ᎴᎻᏏ ᏌᎪᏗᏃ ᏭᏂᎷᏨᎩ, ᏑᏓᎵᏧᏈ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎢᏯᏂᏛ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᎠᏁᎩ, ᏗᏂᏲᎵ ᏂᏓᏁᏢᏛᎾ.\nᎠᎴ ᎤᏂᏣᏘ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎾᏍᏉ ᎤᏁᎳᏛᏒᎩ;: ᎠᎴ ᎠᏫ ᎠᎴ ᏩᎦ, ᏰᎵᎦᏯ ᎤᏂᏣᏘ ᎦᎾᏝᎢ.\nᏚᏂᏚᏅᎩᏃ ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᎤᎾᏑᎨᎲᎯ ᎢᏒ ᎢᏥᏈ ᏅᏓᏳᏂᏴᏍᏔᏅᎯ, ᎥᏝᏰᏃ ᎠᎪᏔᏅᎯ. ᏱᎨᏎᎢ; ᏓᎨᏥᏄᎪᏫᏒᎩᏰᏃ ᎢᏥᏈᏱ, ᎥᏝ ᎠᎴ ᎬᏩᎾᏗᎩᏯᏍᏗ ᏱᎨᏎᎢ, ᎠᎴ Ꮭ ᎤᎾᏓᏁᎳᏅᎯ ᏱᎨᏎ ᎤᎾᎵᏍᏓᏴᏗ.\nᎾᏍᎩᏯ ᎤᏁᏙᎸᎢ ᎢᏏᎵ ᏧᏪᏥ ᎢᏏᏈᏱ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯᏃ ᏄᏕᏘᏴᎲᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏅᎩᏧᏈ ᏦᎠᏍᎪᎯᏃ ᏄᏕᏘᏴᎲ, ᎾᏍᎩ ᎾᎯᏳ ᎠᎦ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏂᎦᏛ ᏚᎾᏓᏡᏩᏗᏒ ᏱᎰᏩ ᏧᏤᎵᎦ ᎤᏂᏄᎪᏦᏅᎩ ᎢᏥᏡᏱ.\nᎾᏍᎩ ᎾᎯᏳ ᏒᏃᏱ ᎤᏣᏘ ᎠᏍᏆᏂᎪᏓᏁᏗ ᏱᎰᏩ, ᎢᏥᏈᏱ ᎦᏙᎯ ᏙᏧᏘᎾᏫᏛᎲ ᎢᏳᏍᏗ; ᎯᎠ ᎾᏍᎩ ᎡᏃᏱ ᏱᎰᏩ ᎤᏂᏍᏆᏂᎪᏓᏁᏗ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᎾᎾᏓᏁᏟᏴᎲᏒᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎯᎠ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎤᎬᏩᎵ, ᏞᏍᏗ ᎩᎶ ᏅᏩᏓᎴ ᏴᏫ ᎤᎵᏍᏓᏴᏗ ᏱᎨᏎᏍᏗ;\nᎾᏂᎥᏍᎩᏂ ᏗᏥᏅᏏᏓᏍᏗ ᎠᏕᎸ ᏗᏥᏩᎯᏍᏔᏅᎯ, ᏗᏥᎱᏍᏕᏎᎸᎯ ᎨᏎᏍᏗ, ᎿᏉ ᎤᎵᏍᏓᏴᏗ ᎨᏎᏍᏗ.\nᎡᏙᎯ, ᎠᎴ ᎠᎦᎫᏴᎡᎯ ᎠᏥᏅᏏᏛ ᏐᏝ ᎬᏩᎾᎵᏍᏓᏴᏗ ᏱᎨᏎᏍᏗ.\nᏌᏉᏉ ᎠᏓᏁᎸ ᎠᎩᏍᏗ ᎨᏎᏍᏗ; ᎥᏝ ᎢᎦᏛ ᎤᏫᏯ ᏣᏄᎪᏫᏍᏗ ᏱᎨᏎᏍᏗ ᎠᏓᏁᎸᎢ: ᎥᏝ ᎠᎴ ᎤᎪᎳ ᎢᏥᏍᏆᎵᏎᏗ ᏱᎨᏎᏍᏗ.\nᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎨᏒ ᎢᏏᎵ ᎯᎠ ᎾᏍᎩ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ.\nᏅᏩᏓᎴᏃ ᏴᏫ ᏰᏙᎭ ᎢᏤᎲᎢ, ᎠᎴ ᏳᏚᎵ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᏱᎰᏩ ᎤᏍᏆᏂᎪᏓᏁᏗᏱ, ᏂᎦᏛ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᏗᎨᏥᎤᏍᏕᏎᏗ ᎨᏎᏍᏗ, ᎩᎳ ᎿᏉ ᎾᎥ ᎤᎷᎯᏍᏗ ᎠᎴ ᎤᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎾᎿᏉ ᎤᏕᏅᎯ ᎢᏳᏍᏗ ᎨᏎᏍᏗ; ᎩᎶᏃ ᎾᏥᎤᏍᏕᏎᎸᎾ ᎥᏞ ᎾᏍᎩ ᎬᏩᎩᏍᏗ ᏱᎨᏎᏍᏗ.\nᏌᏉᏉ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᎢᏣᏤᎵᎪᎯ ᎤᏕᏅᎯ, ᎾᏃ ᏅᏩᏓᎴ ᏴᏫ ᎢᏤᎲ ᎥᎸᏛᏒᏃ\nᎾᏍᎩᏃ ᎯᎠ ᏄᎾᏛᏁᎸᎩ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏂᏚᏪᏎᎸ ᎼᏏ ᎠᎴ ᎡᎳᏂ, ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳᏉ ᎢᎦ, ᎾᏍᎩ ᏱᎰᏩ ᏚᏄᎪᏫᏒᎩ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏓᏡᏩᏗᏒ ᎢᏥᏈᏱ ᎦᏙᎯ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ, ᎯᎠ ᏄᏪᏒᎩ,\nᏗᏍᏆᏓᏓᎴᏓᏏ ᏂᎦᏛ ᎢᎬᏱ ᎠᏁᎯ ᏂᎦᏛ ᎢᎬᏱ ᎨᏥᎾᏄᎪᏫᏍᎩ ᏥᎩ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ, ᏴᏫ ᎠᎴ ᎾᏍᏉ ᎦᎾᏝᎢ; ᎠᏆᏤᎵᎦ ᎾᏍᎩ.\nᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᎢᎭᏅᏓᏓ ᎪᎯ ᎢᎦ ᏥᎩ, ᎾᎯᏳ ᏗᏥᏄᎪᏨ ᎢᏥᏈᏱ, ᏗᎨᏥᎾᏝᎢ ᏙᏗᏂᏁᎸᎢ; ᎤᎵᏂᎩᏛᏰᏃ ᎨᏒ ᎤᏬᏰᏂ ᏱᎰᏩ ᎤᏩᏔᏅᏓᏥᏄᎪᏫᏒᎩ ᎾᎿᏂ; ᎥᏝ ᎠᎪᏔᏅᎯ ᎦᏚ ᎢᏥᎩᏍᏗ ᏱᎨᏎᏍᏗ.\nᎪᎯ ᎢᎦ ᏓᏥᏄᎪᎢ, ᏅᏙ ᎧᎸ ᎡᏈ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎿᏉ ᏱᎰᏩ ᏫᏣᏘᏃᎸᎭ ᎠᏂᎨᎾᏂ ᎤᎾᏤᎵᎪᎯ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᎠᎼᎵ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ ᎤᎾᏤᎵᎪᎯ, ᎾᏍᎩ ᏧᏎᎵᏔᏁ ᏥᏚᏚᎢᏍᏓᏁᎴ ᏗᏣᎦᏴᎵᎨ ᏂᎯ ᏣᏁᏗᏱ, ᎾᏍᎩ ᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏥᏕᎦᎶᎴᎦ, ᎾᏍᎩ ᎾᎯᏳ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎪᎯ ᎧᎸᎢ.\nᎦᎵᏉᎩ ᏧᏒᎯᏛ ᏂᏓᎪᏔᏅᎾ ᎦᏚ ᏗᏣᎩᏍᏗ ᎨᏎᏍᏗ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᏱᎰᏩ ᎡᏣᎵᏍᏓᏴᎾᏁᏗ ᎨᏎᏍᏗ.\nᏂᏓᎪᏔᏅᎾ ᎦᏚ ᎦᎵᏉᎩ ᎢᎦ ᏗᎩᏍᏗ ᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᎡᏣᎪᏩᏛᎡᏗ ᏱᎨᏎᏍᏗ ᎠᎪᏔᏅᎯ. ᎦᏚ) ᎥᏝ ᎠᎴ ᎡᏣᎪᏩᏛᎡᏗ ᏱᎨᏎᏍᏗ ᎠᎪᏙᏗ ᏣᏤᎵᎪᎯ ᏂᎬᎾᏛᎢ.\nᏤᏥᏃ ᎬᏂᎨᏒ ᎢᎯᏴᏁᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ, ᎯᎠ ᎢᏣᏪᏍᏗ ᎨᏎᏍᏗ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᎰᏩ ᎾᏆᏛᏁᎸ ᎾᎯᏳ ᎢᏥᏈᏱ ᏗᎩᏄᎪᏨ.\nᎠᎴ ᏗᏣᏁᎶᏙᏗ ᎨᏎᏍᏗ ᎦᏯᎴᏍᏗ ᏦᏰᏂ, ᎠᎴ ᏣᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᏘᎦᏙᎵ ᎠᏰᎵ ᎦᏯᎴᏍᏗ, ᎾᏍᎩ ᏱᎰᏩ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᏣᏍᏆᏂᎪᏙᏗᏱ. ᎯᎰᎵ; ᎤᎵᏂᎩᏛᏰᏃ ᎤᏬᏰᏂ ᎤᏩᏔᏅᎩ ᏱᎰᏩ ᏓᏣᏄᎪᏫᏒᎩ ᎢᏥᏈᏱ.\nᎯᎠᏃ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᎸᎮᎬ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏂᏓᏕᏘᏴᎯᏒᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᎾᎯᏳ ᏱᎰᏩ ᎠᏂᎨᎾᏂ ᎤᎾᏤᎵᎪᎯ ᏫᏣᏘᏃᎸᎭ ᎾᏍᎩᏯ ᏂᏣᏪᏎᎸ ᏂᎯ ᎠᎴ ᏂᏚᏪᏎᎸ ᏗᏣᎦᏴᎵᎨᎢ ᎠᏎᎵᏛᏍᎬᎢ, ᎠᎴ ᏣᏁᎸᎭ,\nᎾᏍᎩ ᏤᏥᎧᏁᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᏂᎦᏛ ᎢᎬᏱ ᎨᏥᎾᏄᎪᏫᏍᎩ ᏥᎩ, ᎠᎴ ᎾᏂᎥ ᎢᎬᏱ ᎠᏁᎯ ᎦᎾᏝᎢ ᏣᎧᎲ ᎨᏥᎾᏄᎪᏫᏒᎯ; ᎠᏂᏨᏯ ᏱᎰᏩ ᏧᏤᎵ ᎨᏎᏍᏗ.\nᏗᎦᎵᎠᏅᎯᏛᏃ ᏐᏈᎵ ᎢᎬᏱ ᎡᎯ ᎤᏪᏥ ᎯᏯᎫᏴᏗᏉ ᎨᏎᏍᏗ ᎤᏃᏕᎾ ᎠᏫ ᎯᏯᎫᏴᏙᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏂᏯᎫᏴᎲᎾ ᎢᎨᏎᏍᏗ ᎯᏍᏆᎵᏎᏗᏉ ᎨᏎᏍᏗ ᎠᏴᏤᏂ; ᎠᎴ ᎾᏂᎥ ᎢᎬᏱ ᎠᏁᎯ ᏴᏫ ᏗᏤᏥ ᏕᏤᎲᎢ, ᎩᏯᎫᏴᏗ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ, ᎢᏳᏃ ᏤᏥ ᎢᎸᎯᏳ ᎢᏣᏛᏛᎲᏍᎨᏍᏗ ᎯᎠ ᏂᎦᏪᏍᎨᏍᏗ, ᎦᏙ ᎯᎠ? ᎯᎠ ᎢᎯᏪᏎᏗ ᎨᏎᏍᏗ, ᏱᎬᏩ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎤᏬᏰᏂ ᎤᏩᏔᏅᎩ ᏓᏲᎩᏄᎪᏫᏒᎩ ᎢᏥᏈᏱ, ᏗᎨᏥᎾᏝᎢ ᏙᏗᏂᏁᎸᎢ;\nᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳ ᏇᎵᏲ ᎦᏂᎳ ᎤᏬᎯᏳᏅ ᏦᎩᏲᎯᏍᏗᏱ, ᏱᎰᏩ ᏚᎸᎩ ᏂᎦᏛ ᎢᎬᏱ ᎠᏁᎯ ᎢᏥᏠᏈᏱ ᎠᏁᎲᎢ, ᎾᏍᏉ ᏴᏫ ᏧᏁᏥ ᎢᎬᏱ ᎠᏁᎯ, ᎠᎴ ᎦᎾᏝᎢ ᏧᏁᏥ ᎢᎬᏱ ᎠᏁᎯ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏴ ᏕᏥᏯᎵᏍᎪᎸᏓᏁᎰ ᏱᎰᏩ ᏂᎦᏛ ᎢᎬᏱ ᎨᏥᎾᏄᎪᏫᏒᎯᏊ ᎠᏂᏨᏯ ᏱᎩ; ᎢᎬᏱᏍᎩᏂ ᎠᏁᎯ ᏗᏇᏥ ᏂᎦᏛ ᏕᎦᎫᏱᏍᎪᎢ.\nᎠᎴ ᎾᏍᎩ ᏗᏣᏁᎶᏙᏗ ᎨᏎᏍᏗ ᏦᏰᏂ ᎦᏯᎴᏍᏗ, ᎠᎴ ᏗᎦᏙᎵ ᎠᏰᎵ ᎦᏯᎸᏗ ᎨᏎᏍᏗ; ᎤᎵᏂᎩᏗᏳᏰᏃ ᎨᏒ ᎤᏬᏰᏂ ᏱᎰᏩ ᎤᏩᏔᏅᎩ ᏓᏲᎩᏄᎪᏫᏒᎩ ᎢᏥᏡᏱ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᎯᏳ ᏇᎵᏲ ᏚᏲᏒ ᏴᏫ, ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎥᏝ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎪᎯ ᎦᏙᎯ ᏫᎦᏅᏅ ᏱᏫᏚᏘᏅᏍᏔᏁᎢ, ᎾᎥᏂᏳᏍᎩᏂ ᎨᏒ ᎾᏍᎩ; ᎤᏁᎳᏅᎯᏰᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏴᏫᏰᏃ ᏱᏓᏂᏁᏟᏴᎾ ᏚᎾᏓᏅᏛ ᎿᏉ ᏓᎿᏩ ᎠᏂᎪᎲᎭ, ᎠᎴ ᏯᎾᏨᎾ ᎢᏥᏈ ᏱᏩᏂᎶᎯ.\nᎤᏁᎳᏅᎯᏍᎩᏂ ᏚᏪᏕᏯᏍᏔᏅᎩ ᏴᏫ ᎢᎾᎨ ᏫᎦᎶᎯᏍᏗᏱ ᎾᏍᎩ ᎠᎹᎩᎦᎨᏍᏛᏱ ᎾᎥᎢ. ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᏄᎪᏨᎩ ᎢᏥᏈᏱ ᏧᎾᎵᏍᎦᏍᏙᏗ ᏗᏂᏁᎯ.\nᎼᏏᏃ ᏦᏩ ᏧᎪᎳ ᏚᏪᏅᏒᎩ;: ᎤᎵᏂᎩᏛᏰᏃ ᏧᏎᎵᏙᏔᏅᎯ ᎨᏒᎩ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᎢᏳᏪᏛ ᎨᏒᎩ, ᎤᏁᎳᏅᎯ ᎠᏎ ᏓᏥᏳᏩᏛᎯᎵ; ᎠᎴ ᎠᏎ ᏗᏥᏅᏍᏗ ᎨᏎᏍᏗ ᏗᎩᎪᎳ ᎠᏂ ᎢᏣᏓᏅᎡᎭ.\nᏌᎪᏗᏃ ᎤᎾᏂᎩᏒᎩ, ᎢᏓᎻᏃ ᎤᎾᏅᏅᎩ ᎢᎾᎨ ᎠᏍᏛᎢ.\nᏱᎰᏩᏃ ᎢᎬᏱ ᎠᎢᏒᎩ ᎠᎾᎢᏒ ᎢᎦ ᎾᎿ ᎤᏓᏡᎬ ᎤᎶᎩᎸᎢ, ᏧᏘᏅᏍᏗᏱ ᎾᎿ ᏫᎦᎶᎯᏍᏗᏱ; ᎤᏒᏃ ᎤᏓᏡᎬ ᎠᏥᎸ ᎠᎢᏒᎩ ᎾᏍᎩ ᎢᎦ-ᏧᏘᏍᏓᏁᏗᏱ; ᎾᏍᎩ ᎤᏁᏅᏍᏗᏱ ᎢᎦ ᎠᎴ ᏒᏃᏱ.\nᎥᏝ ᎠᎴ ᏱᏚᎩᎡᎴ ᎤᏓᏡᎬ ᎤᎶᎩᎸ ᎢᎦ, ᎠᎴ ᎤᏓᏡᎬ ᎠᏥᎸ ᏒᏃᏱ ᎢᎬᏱ ᏕᎡᏅᎡᎲ ᏴᏫ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏒᎩ,\nᏘᏁᏥ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎤᎾᎪᎸᏍᏗᏱ ᎠᎴ ᏭᎾᏅᏘᏱ ᏆᎮᎭᎶᏛ ᎢᎬᏱᏗᏢ, ᎠᏰᎵ ᎻᎦᏙᎳ ᎠᎴ ᎠᏳᏉᎯ, ᏇᎵᏥᏉᏂ ᏧᏳᎪᏗ; ᎾᎿ ᎢᎬᏱᏗᏢ ᎢᏣᏅᏗᏢ ᎨᏎᏍᏗ ᎠᏣᏉᎯ ᎾᎥᎢ.\nᏇᎵᏲᏃ ᎯᎠ ᏅᏓᎦᏪᏏ ᎢᏏᎵ ᏧᏪᏥ ᏕᎧᏃᎮᏍᎬᎢ, ᎤᏄᏓᎸᏨ ᎦᏙᎯ, ᎢᎾᎨ ᎨᏒ ᎤᎾᎵᏍᏚᏔᏅ.\nᎠᎴ ᏓᏥᏍᏓᏱᏕᎵ ᏇᎵᏲ ᎤᎾᏫ, ᎠᎴ ᏙᏛᏍᏓᏩᏕᏏ; ᎠᎴ ᎥᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᏇᎵᏲ ᎠᎴ ᏧᏤᎵ ᏑᎾᏓᏡᎩ ᏄᎾᎵᏍᏓᏁᎸ; ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᏛᎾᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ. ᎾᏍᎩᏃ ᏄᎾᏛᏁᎸᎩ.\nᎠᏥᏃᏁᎸᎩᏃ ᎢᏥᏈᏱ ᎡᎯ ᎤᎬᏫᏳᎯ, ᏴᏫ ᎤᎾᎵᏒᎢ; ᏇᎵᏲᏃ ᎤᎾᏫ ᎠᎴ ᏧᏅᏏᏓᏍᏗ ᏧᏂᎾᏫ ᏚᏂᎦᏔᎲᏒᎩ, ᏚᎾᏡᏔᏅᎩ ᏴᏫ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙᏃ ᎯᎠ ᎾᏍᎩ ᏅᏓᏛᎦ, ᏙᎨᏘᏲᎯ ᎢᏏᎵ, ᎠᏴ ᎪᎱᏍᏗ ᎨᎦᏛᏁᎲᎢ.\nᎤᏛᏅᎢᏍᏔᏅᎩᏃ ᎤᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏚᏘᏅᏒᎩ ᏧᏤᎵ ᏴᏫ.\nᏑᏓᎵᏧᏈᏃ ᏗᏑᏰᏛ ᏗᏦᏗ ᏓᏆᎴᎷ ᏚᏴᏒᎩ, ᎠᎴ ᏂᎦᏛ ᏗᏦᏗ ᏓᏆᎴᎷ ᎢᏥᏠᏱ ᏚᏂᎲᎢ, ᎠᎴ ᏌᏉ ᏓᏆᎴᎷ ᎠᏂᏯᏫᏍᎩ ᎤᎾᏣᎢᎭ ᏚᏘᏅᏒᎩ.\nᏱᎰᏩᏃ ᎤᏍᏓᏱᏕᎸᎩ ᎤᎾᏫ ᏇᎵᏲ ᎢᏥᏈᏱ ᎡᎯ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏚᎨᎲᏒᎩ ᎢᏏᎵ ᏧᏪᏥ; ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᏄᎪᏨᎩ ᏧᏃᏰᏂ ᏚᏂᏌᎳᏛᎩ.\nᎢᏥᏠᏡᏱᏃ ᎠᏁᎯ ᎠᎴ ᏂᎦᏛ ᏐᏈᎵ ᎠᎴ ᏗᏦᏗ ᏓᏆᎴᎷ ᏇᎵᏲ ᏧᏤᎵᎦ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏑᎾᏓᏡᎩ ᏓᎿᏩ ᎠᏁᎩ ᏧᏤᎵᎦ ᏚᏂᎨᎲᏒᎩ, ᎠᎴ ᏫᏚᎾᏢᏔᎲᎩ ᏩᏂᏅ ᎠᎾᏉᎯ ᎾᎥᎢ, ᏆᎮᎭᎶᏛ ᎤᎶᏗᏢᎢ, ᏇᎵᏥᏉᏂ ᏧᏳᎪᏗ.\nᏇᎵᏲᏃ ᎾᎥ ᏭᎷᏨ, ᎢᏏᎵ ᏧᏪᏥ ᏫᏚᎾᎧᎿᏅᎩ, ᎠᎴ ᎬᏂᏳ ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᎬᏩᏂᏍᏓᏩᏗᏒᎩ; ᎠᎴ ᎤᏣᏘ ᎤᏂᏍᎦᎸᎩ; ᎢᏏᎵᏃ ᏧᏪᏥ ᏚᎾᏠᏱᎸᎩ ᏱᎰᏩ ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ.\nᎯᎠᏃ ᏄᏂᏪᏎᎸᎩ ᎼᏏ, ᎢᏥᏈᏱ ᏂᏗᎪᏢᏒᎾ ᎨᏒ ᎢᏳᏍᏗ ᏗᏓᏂᏐᏗᏱ, ᏙᏗᏍᎩᏯᏘᏁᏅ ᏦᎩᏲᎱᎯᏍᏗᏱ. ᎢᎾᎨᎢ? ᎦᏙᏃ ᎾᏍᎩ ᏂᏯᎩᏴᏁᎸ ᏙᏗᏍᎩᏯᏘᏁᏅ ᎢᏥᏈᏱ?\nᏝᏍᎪ ᎾᏍᎩ ᎯᎠ ᏱᏂᏨᏪᏎᎴ ᎢᏥᏈᏱ; ᎣᎦᏁᎳᎩ, ᎢᏥᏈᏱ ᎠᏁᎯ ᎪᎱᏍᏗ ᏦᏣᏛᏁᎯ ᎨᏎᏍᏗᎸ1 ᎤᏟᏰᏃ ᏱᏃᏎ ᎢᏥᏈᏱ ᎠᏁᎯ ᎪᎱᏍᏗ ᏦᏣᏛᏁᎯ ᏱᎨᏎᎢ, ᎠᏃ ᎢᎾᎨ ᏦᎩ ᏲᎢᎯᏍᏗᏱ.\nᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᎢᏣᎴᎾᏫᏍᏓ, ᎠᎴ ᎢᏥᎪᏩᏛ ᏱᎰᏩ ᎤᏓᏍᏕᎸᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎪᎯ ᎢᎦ ᏨᏓᏨᎾᏄᎪᏫᏎᎵ; ᎢᏥᏈᏱᏰᏃ ᎠᏁᎯ ᎪᎯ ᎢᎦ ᏥᏕᏥᎪᏩᏛ, ᎥᏝ ᏔᎵᏁ ᎢᎸᎯᏳ ᏱᏙᎨᏥᎪᏩᎩ;\nᏱᎰᏩ ᏙᏓᏣᎴᎵ, ᏂᎪᏃ ᏔᏉ ᏂᏣ ᏁᏍᏗ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎦᏙᏃ ᎠᏴ ᎢᏍᏆᎵᏍᏓᏁᎭ) ᏘᏁᏥ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏂᎩᏍᏗᏱᎢ\nᏂᎯᏍᎩᏂ ᎯᏌᎳᏛᎦ ᏣᏙᎳᏅᏍᏗ. ᎠᎴ ᎭᏎᎵᏛᎦ ᏦᏰᏂ ᎠᏩᏉᎯ ᎦᎸᎳᏗᏢ ᏧᏳᎪᏗ, ᎠᎴ ᏔᎵ ᏂᏓ: ᎢᏏᎵᏃ ᏧᏪᏥ ᎤᎧᏲᏛᎯ ᎦᏙᎯ ᏮᏛᏂᎶᏏ ᎠᏰᎵ ᎠᏣᎾᏉᎯ.\nᎠᏰᏃ, ᎬᏂᏳᏉ, ᎠᏴ ᏙᏓᎦᏥᏍᏓᏱᏕᎵ ᏧᏂᎾᏫ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᏙᏛᏂᏍᏓᏩᏕᏏ; ᎠᎴ ᎥᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏇᎵᏲ ᏄᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᎠᎴ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᏓᎿᏩ ᎠᏁᎩ ᏧᏤᎵ ᏄᎾᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᎠᎴ ᏗᏦᏗ ᏓᏆᎴᎷ ᏧᏤᎵ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ ᏄᎾᎵᏍᏓᏁᎸ ᎢᏳ ᏍᏗ.\nᎢᏥᏈᏱᏃ ᎠᏁᎯ ᏛᎾᏙᎴᎰᏏ ᎠᏴ ᏱᎰᏩ ᎨᏒᎢ, ᎾᎯᏳ ᎥᎩᎸᏉᏔᏅ ᏇᎵᏲ ᏄᎵᏍᏓᏁᎸ ᎢᏳᏍᏗ, ᏂᏚᎵᏍᏓᏁᎸᏃ ᏗᏦᏗ ᏓᏆᎴᎷ ᏧᏤᎵᎦ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ.\nᏗᎧᎿᏩᏗᏙᎯᏃ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᎢᎬᏱ ᎠᎢᏒᎩ ᎢᏏᎵ ᎤᎾᏓᏡᎬᎢ, ᎤᏓᏅᏒᎩ ᎠᎴ ᎣᏂᏗᏢ ᎠᎾᎢᏒ ᎤᏪᏅᏒᎩ; ᎤᎶᎩᎸᏃ ᎤᏓᏡᎬ ᎤᏓᏅᏒᎩ ᎢᎬᏱᏗᏢ ᏄᏛᎿᏕᎬ, ᎠᎴ ᎣᏂᏗᏢ ᏄᎾᏛᏅ ᎤᎴᏅᎩ.\nᎠᎴ ᎠᏰᎵ ᎤᎷᏨᎩ ᎠᏂᏅ ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᎴ ᎢᏏᎵ ᎠᏂᏅᎢ; ᎠᎴ ᎤᎵᏏᎩ ᎤᎶᎩᎸᎩ [ᎢᏥᏈᏱ ᎠᏁᎯ ᎠᏂᏅ ᎢᏗᏢ,] ᎠᎴ [ᎢᏏᎵ ᎠᏂᏅ ᎢᏗᏢ] ᎢᎦ ᎤᏘᏍᏛᎩ ᏒᏃᏱ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᎾᎥ ᏱᎦᏮᏓᎷᏤᎴ ᎤᎵᏨᏓᏆᏛ.\nᎼᏏᏃ ᎤᏎᎵᏔᏅᎩ ᎠᎺᏉᎯ ᎦᎸᎳᏗᏢ; ᏱᎰᏩᏃ ᏄᏩᏂᏌᏅᎩ ᎠᎺᏉᎯ ᎤᏓᏅᏒᎩ ᎠᏍᏓᏯ ᏗᎧᎸᎬ ᎢᏗᏢ ᏧᏃᎸᏛ ᎤᎵᏨᏓᏆᏛ ᎢᏳᏍᏗ, ᎠᎴ ᎤᎧᏲᏛᎯ ᏄᏩᏁᎸ ᎠᎺᏉᎯ, ᎠᎴ ᏔᎵ ᏄᏓᏛᎩ ᎠᎹ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎠᏩᏉᎯ ᎠᏰᎵ ᏭᏂᎷᏨᎩ ᎤᎧᏲᏛᎯ; ᎠᎴ ᎠᎹ ᏣᏐᏯᏍᏙ ᎢᏳᏍᏗ ᎨᏒᎩ ᎠᎦᏘᏏᏗᏢ, ᎠᎴ ᎠᎦᏯᎦᏂᏗᏢ ᎠᎾᎢᏒᎢ.\nᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎬᏩᏂᎨᎲᏒᎩ, ᎠᎴ ᎬᏩᏂᏍᏓᏩᏛᏒᎩ ᎠᎾᏉᎯ ᎠᏰᎵ ᎢᏴᏛ, ᎾᏍᎩ ᏂᎦᏛ ᏇᎵᏲ ᏧᏤᎵ ᏐᏈᎵ ᏗᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏧᏤᎵ ᏧᎾᎩᎸᏗ.\nᎠᎴ ᎯᎠ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏑᎾᎴ ᎠᏯᏫᏍᏗᏱ ᎨᏒ ᏱᎰᏩ ᏙᏓᏳᎧᎿᏅᎩ ᏑᎾᏓᏡᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᎾᏓᏡᎬ ᎠᏥᎸ ᎠᎴ ᎤᎶᎩᎸ ᎠᏰᎵ, ᎠᎴ ᏚᏕᏯᏙᏔᏅᎩ ᏑᎾᏓᏡᎩ ᎢᏥᏈᏱ ᎠᏁᎯ.\nᎠᎴ ᏚᏪᏆᏓᏒᎸᎩ ᏕᎦᏆᏛ ᏧᎾᏦᏗ ᏓᏆᎴᎷ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎦᏂᎵᏳ ᏓᏂᏱᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏈᏱ ᎠᏁᎯ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎨᏓᎵᏏ ᎢᏏᎵ; ᏱᎰᏩᏰᏃ ᏓᏍᏕᎵᎭ ᎠᎾᎵᎲᎢ, ᎢᏥᏈᏱ ᎠᏁᎯ ᏓᏡᏗᎭ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎭᏎᎵᏛᎦ ᏦᏰᏂ ᎠᏘᏩᏉᎯ ᎦᎸᎳᏗᏢ, ᎾᏍᎩ ᎠᎹ ᏔᎵᏁ ᎥᎤᏪᏅᏍᏗᏱ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᏄᏢᏗᏱ, ᏧᏭᏢᏗᏱ ᏧᎾᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏧᎾᏤᎵ ᏧᎾᎩᎸᏗ.\nᎼᏏᏃ ᎤᏎᎵᏔᏅᎩ ᎤᏬᏰᏂ ᎠᏣᏉᎯ ᏚᎸᎳᏗᏢ, ᎠᎾᏣᏉᎯᏃ ᎤᎵᏂᎬᎬ ᎬᏗ ᏛᎤᏨᏒᎩ ᏑᎾᎴ ᏄᎵᏍᏔᏅ; ᎢᏥᏈᏱᏃ ᎠᏁᎯ ᎾᎿ ᎢᏗᏢ ᎤᎾᎵᏍᏔᏅᎩ; ᏱᎰᏩᏃ ᏚᏓᎢᏅᏔᏅᎩ ᎢᏥᏡᏱ ᎠᏁᎯ ᎠᏣᎾᏄᏉᎯ ᎠᏰᎵ.\nᎠᎹᏃ ᏛᎤᏨᏒᎩ, ᎠᎴ ᏚᏭᏢᏅᎩ ᎾᎿ ᎠᏣᎾᏉᎯ ᏗᏦᏗ ᏓᏆᎴᎷ, ᎠᎴ ᏧᎾᎩᎸᏗ, ᎠᎴ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᏇᎵᏲ ᏧᏤᎵᎦ ᎾᏍᎩ [ᎢᏏᎵ] ᎬᏩᏂᏍᏓᏩᏙᎸᎯ; ᎥᏝᏃ ᏌᏉ ᎤᏅ ᏳᎵᏃᎯᏰᎢ.\nᎢᏏᎵᏍᎩᏂ ᏧᏪᏥ ᎤᎧᏲᏛᎯ ᎠᎾᎢᏒᎩ ᎠᏩᏉᎯ ᎠᏰᎵ; ᎠᎹᏃ ᏣᏐᏲ ᎢᏳᏍᏗ ᎨᏒᎩ ᎠᎦᏘᏏᏗᏢ ᎠᎴ ᎠᎦᏍᎦᏂᏗᏢ ᎠᎾᎢᏒᎢ.\nᎾᏍᎩᏃ ᏱᎰᏩ ᏚᏍᏕᎸᎲᎩ ᎢᏏᎵ, ᏚᏭᏓᎴᏒᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᏕᎬᏩᏂᏂᏴᏒ ᎾᎯᏳ ᎢᎦ: ᎢᏏᎵᏃ ᏚᏂᎪᎲᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᏧᏂᏲᎱᏒᎯ ᎠᏣᏉᎯ ᎤᎶᏗ.\nᎠᎴ ᎢᏏᎵ ᎤᏂᎪᎲᎩ ᎾᏍᎩ ᎤᏍᏆᏂᎪᏗ ᏱᎰᏩ ᏚᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᏂᏚᏩᏁᎸ ᎢᏥᏈᏱ ᎠᏁᎯ; ᏴᏫᏃ ᎤᏂᎾᏰᏒᎩ ᏱᎰᏩ, ᎠᎴ ᎤᏃᎯᏳᏅᎩ ᏱᎰᏩ ᎠᎴ ᎤᏅᏏᏓᏍᏗ ᎼᏏ.\nᎿᏉᏃ ᎼᏏ ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᏚᏂᏃᎩᏍᏔᏅᎩ ᏱᎰᏩ ᎯᎠ ᎾᏍᎩ ᏗᎧᏃᎩᏍᏗ, ᎠᎴ ᎤᏂᏁᏨᎩ ᎯᎠ ᏄᏂᏪᏒᎩ; ᏱᎰᏩ ᏙᏓᏥᏃᎩᏍᏔᏂ ᎤᏣᏘᏰᏃ ᎦᎸᏉᏗᏳ ᏂᎦᎵᏍᏓ ᎾᏍᎩ; ᏐᏈᎵ ᎠᎴ ᏅᎩᎸᏘ ᎠᎺᏉᎯ ᏫᏚᏓᎢᏅ.\nᏱᎰᏩ, ᎠᏍᎦᏯ ᏓᎿᏩ ᎤᎩᏌᏛ; ᏱᎰᏩ ᏕᎤᏙᎥ.\nᏇᎵᏲ ᏧᏤᎵ ᏗᏦᏗ ᏓᏆᎴᎷ ᎠᎴ ᏑᎾᏓᏡᎩ ᏧᏤᎵ ᎠᎺᏉᎯ ᏕᏅᏓᎢᏅ: ᎠᎴ ᏧᏤᎵ ᎨᎦᏑᏰᏛ ᎠᏂᏯᏫᏍᎩ ᏓᏆᎴᎷᎯ ᎠᎾᏣᎥᏍᎩ ᏚᏂᎬᏨ ᎠᎺᏉᎯ ᎩᎦᎨᏍᏛᏱ.\nᎠᏍᏛᎩ ᎨᏒ ᎤᏄᏢᏅᎩ; ᎤᏂᏃᏴᏨᎩ ᎭᏫᏂ ᎢᏴᏛ ᏅᏯ ᎾᏍᎩᏯᎢ.\nᎯᎦᏘᏏ ᏦᏰᏂ ᏱᎰᏩ, ᎦᎸᏉᏗᏳ ᏄᎵᏍᏔᏅ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎢᏳᏍᏗ; ᎯᎦᏘᏏ ᏦᏰᏂ ᏱᎰᏩ, ᏕᏣᎤᎸᏛᏂᏍᏔᏅ ᎠᏂᎦᏍᎩ.\nᎠᎴ ᎤᏣᏘ ᎡᏣᎸᏉᏗᏳ ᎨᏒ ᏨᏔᏅ ᎩᏛᏔᏅ ᎾᏍᎩ ᏗᎨᏣᎦᏘᎸᏛ; ᏓᏣᏓᏅᏒᎩ. ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᎾᎪᎲᏍᏓ ᎾᏍᎩᏯ ᎠᏍᎫᏕᏒ ᏚᏂᏡᎾᎥᎢ.\nᎠᎴ ᏙᏴᏐᎵ ᏣᏦᏔᏍᏔᏅ ᎠᎹ ᎤᏓᏟᏌᏅᎩ; ᎠᎹ ᏧᏳᎪᏗ ᎤᎴᏅᎩ ᏥᎦᏡᎪ ᎢᏳᏍᏗ, ᎠᎴ ᎠᏍᏛᎩ ᎨᏒ ᎤᏍᏓᏲᏒ ᎠᎺᎯ ᎠᏰᎵ.\nᎠᎦᏍᎩ ᎯᎠ ᏄᏪᏒᎩ, ᏓᎦᏥᎨᎮᏏ, ᏓᎦᏥᏯᏢᏔᎯ, ᏓᏥᏯᏙᎵ ᎠᏆᏓᏬᏅᏛ; ᏄᏍᏛ ᎠᏆᏚᎵᏍᎬ ᏛᎩᏛᏓᏁᎵ ᏂᎦᏥᏴᏁᎸᎢ: ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎠᏆᏤᎵ ᏓᏥᎸᎢ, ᎠᏉᏴᏂ ᏓᏳᏂᏛᏔᏂ.\nᏣᏤᎵ ᎤᏃᎴ ᏣᏦᏔᏍᏔᏅᎩ, ᎠᎺᏉᎯ ᎤᏄᏢᏅᎩ; ᎤᏂᏃᏴᏨᎩ ᎦᏂ ᎾᏍᎩ ᏯᎢ ᎤᏣᏘ ᏕᎦᏃᎢᎩᏍᎬᎢ.\nᎦᎪ ᏂᎯ ᏂᏣᏍᏛ ᏄᏍᏗ ᏱᎰᏩ, ᎠᏁᎲ ᎤᎾᏁᎳᏅᎯ? ᎦᎪ ᏂᏣᏍᏛ ᏄᏍᏛ ᎦᎸᏉᏗᏳ ᎠᏍᎦᎾ ᏂᎨᏒᎾ ᎨᏒᎢ, ᎤᎾᏰᎯᏍᏗᏳ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᎤᏍᏆᏂᎪᏗᏳ ᏕᎤᎸᏫᏍᏓᏁᎲᎢ.\nᎯᎦᏘᏏ ᏦᏰᏂ ᏣᏎᎵᏔᏅᎩ, ᎦᏙᎯ ᎤᏂᎩᏒᎩ.\nᏣᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏨᏔᏅᎩ ᏕᎭᏘ ᏅᏒ ᏴᏫ ᎾᏍᎩ ᏔᎴᏴᏛ ᎨᏒᎢ; ᏣᎵᏂᎩᏗᏳ ᎨᏒ ᏨᏔᏅᎩ ᏕᎭᏘᏅᏒᎩ ᏫᏕᎯᎧᏅᎩ ᏣᏤᎵᎪᎯ ᎦᎸᏉᏗᏳ ᏩᏕᏗᏱ.\nᏴᏫ ᏛᎾᏛᎦᏂ, ᎠᎴ ᏙᏓᏳᏂᏅᏫ; ᎤᏲ ᏛᎾᏓᏅᏓᏗ ᏈᎵᏍᏗᏱ ᎠᏁᎯ.\nᎿᏉ ᏗᎨᎦᏁᎶᏗ ᎢᏓᎻ ᎠᏁᎯ ᏛᏂᎾᏰᏏ; ᎩᎠᏈ ᎠᏁᎯ ᏧᎾᎵᏂᎩᏛ ᎠᏂᏍᎦᏯ ᏙᏓᏳᏂᎾᏫ; ᏂᎦᏛ ᎨᎾᏂ ᎠᏁᎯ ᏙᏛᏅᎾᏬᏏ.\nᎠᏂᎾᏰᏍᎨᏍᏗ, ᎠᎴ ᎤᏯ ᎤᏅᏎᏍᏗ; ᎯᏃᎨᏂ ᎡᏉᎯᏳ ᎨᏒ ᎢᏳᏍᏗ ᎡᎳᏪ ᎤᏅᏎᏍᏗ ᏅᏯ ᎾᏍᎩᏯᎢ: ᎬᏂ ᏗᏣᏤᎵ ᏴᏫ ᏓᏂᎶᏒᎭ, ᏱᎰᏩ, ᎬᏂ ᏓᏂᎶᏒᎭ ᏴᏫ ᎾᏍᎩ ᏔᎫᏴᏛ ᎨᏒᎢ.\nᏙᏘᏴᏔᏂᎵ, ᎠᎴ ᏙᏘᏫᏏ. ᎣᏓᎸ ᏣᏤᎵᎪᎯ ᎨᏒᎢ, ᎾᎿᏂ ᏱᎰᏩ ᏣᏛᏅᎢᏍᏔᏅ ᏣᏁᎳᏗᏍᏗᏱ; ᎦᎸᏉᏗᏳ ᏗᎨᏒ, ᏣᎬᏫᏳᎯ, ᏂᎯ ᏗᏦᏰᏂ ᏧᏬᏢᏅᎯ.\nᏱᎰᏩ ᎤᎬᏫᏳᎯ ᎨᏎᏍᏗ ᏂᎪᎯᎸ ᎠᎵᏍᏆᏗᏍᎩ ᏂᎨᏒᎾ.\nᏇᎵᏲᏰᏃ ᎤᏤᎵ ᏐᏈᎵ ᎠᎴ ᏓᏆᎴᎷ ᏗᏦᏗ ᎠᎺᏉᎯ ᏭᏂᎶᏒᎩ, ᎬᏩᎾᏠᏯᏍᏗ ᏧᎾᎩᎸᏗ, ᏱᎰᏩᏃ ᎠᎹ ᎠᎺᏉᎯ ᎡᎯ ᏔᎵᏁ ᎤᏱᎶᎸᎩ ᎤᏄᏢᏔᏅᎩ;: ᎢᏏᎵᏍᎩᏂ ᏧᏪᏥ ᎤᎧᏲᏛᎯ ᎤᏂᎶᏒᎩ ᎠᎺᏉᎯ ᎠᏰᎵ.\nᎻᎵᏯᎻᏃ ᎠᏙᎴᎰᏍᎩ ᎡᎳᏂ ᎤᏙ ᎠᎱᎵ ᏨᎩᏒᎩ; ᏂᎦᏛᏃ ᎠᏂᎨᏴ ᎥᎬᏩᏍᏓᏩᏛᏒᎩ ᎠᏴᎵ ᏗᏂᏰᎯ, ᎠᎴ ᎠᎵᏍᎩᏛ ᏔᎵ ᎤᏛᏛᎩ.\nᎻᎵᏯᎻᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ. ᏤᏥᏃᎩᏍᏓ ᏱᎰᏩ, ᎤᏣᏘᏰᏃ ᎦᎸᏉᏗᏳ ᏂᎦᎵᏍᏓ ᎾᏍᎩ; ᏐᏡᎵ ᎠᎴ ᎾᏍᎩ ᎤᎩᎸᏗ ᎠᎺᏉᎯ ᏫᏚᏓᎢᏅ. ,\nᎾᏍᎩᏃ ᎼᏏ ᏚᏘᎾᏫᏛᎲᎩ ᎢᏏᎵ ᎠᎺᏉᎯ ᎩᎦᎨᏍᏛᏱ ᎠᏂᏅᎢ; ᎠᎴ ᏑᎵ ᏚᏙᎥ ᎢᎾᎨ ᏭᏂᎶᏒᎩ; ᏦᎢᏃ ᎢᎦ ᎤᏁᏅᏒᎩ ᎢᎾᎨ ᎨᏒᎢ, ᎠᎴ ᎥᏝ ᎠᎹ ᏳᏂᏁᏩᏛᎮᎢ.\nᎹᎳᏃ ᏭᏂᎷᏨᎩ; ᎥᏝᏃ ᏰᎵ ᎬᏩᎾᏗᏔᏍᏗ ᏱᎨᏎ ᎠᎹ ᎹᎳ ᎤᏂᏁᏩᏛᏛ, ᎤᏴᏍᏗᏳᏰᏃ ᎨᏒᎩ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎹᎳ ᏚᏃᎥᎩ.\nᏴᏫᏃ ᎪᎱᏍᏗ ᎬᏬᏎᎸᎩ ᎤᎾᏡᏔᏅᎩ ᎼᏏ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙ ᏓᏲᏣᏗᏔᎯ?\nᏱᎰᏩᏃ ᎤᎵᏍᏓᏁᎸᎩ , ᎠᎴ ᏱᎰᏩ ᎤᏎᎮᎸᎩ ᏡᎬᎢ, ᎾᏍᎩ ᎠᎼᎯ ᏭᏗᏅ ᎤᎦᎾᏍᏛ ᏄᎵᏍᏔᏅᎩ ᎠᎹ. ᎾᎿ ᏚᏬᏢᎾᏁᎸᎩ ᏚᏭᎪᏔᏅᎢ ᎠᎴ ᏗᎧᎾᏩᏛᏍᏗ, ᎠᎴ ᎾᎿ ᏚᎪᎵᏰᎥᎩ.\nᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎢᏳᏃ ᏣᎵᏏᎾᎯᏍᏗ ᏱᏣᏛᏓᏍᏔᏅ ᎧᏁᎬ ᏱᎰᏩ ᏣᏁᎳᏅᎯ, ᎠᎴ ᎾᏍᎩ ᎣᏏᏳ ᎤᏰᎸᏗ ᏱᏂᏣᏛᏁᎸ, ᎠᎴ ᏱᏣᎦᏌᏯᏍᏗ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏂᎦᏛ ᏚᏭᎪᏔᏅᎢ ᏱᏗᏣᏍᏆᏂᎪᏗ, ᎥᏝ ᏣᎷᏤᏗᏱ ᏱᏅᎦᎬᎦ ᏌᏉᎤᏅ ᎯᎠ ᎾᏍᎩ ᎥᏳᎩ, ᎾᏍᎩ ᎢᏥᏈᏱ ᎠᏁᎯ ᎤᏂᎷᏤᏗ ᏥᎾᏮᏁᎸᎢ; ᎠᏴᏰᏃ ᏱᎰᏩ ᎬᎾᏫᏍᎩ.\nᎢᎵᎻᏃ ᏭᏂᎷᏨᎩ, ᎾᎿ ᏔᎳᏚ ᎠᎹ ᏕᎦᏄᎪᎬᎩ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᏧᏕᏄᏓᏅᎯᏛ ᏕᏡᎬᎩ, ᎾᎿᏃ ᎤᎾᏅᏅᎩ ᎠᎹᏳᎶᏗ.\nᎢᎵᎻᏃ ᎤᎾᏂᎩᏒᎩ; ᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎨᏒ ᎢᏏᎵ ᏧᏪᏥ ᏏᏂ ᏚᏙᎥ ᎢᎾᎨ ᎤᏂᎷᏨᎩ, ᎾᎿ ᎠᏰᎵ ᎢᎵᎻ ᎠᎴ: ᏌᎾᏱ, ᎾᏍᎩ ᎯᏍᎩᎦᏚᏏᏁ ᎢᎦ ᏔᎵᏁ ᎧᎳᏩᏗᏒ ᏅᏓᎬᏩᎾᏂᎩᏛ ᎢᏥᏈᏱ ᎦᏙᎯ.\nᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ ᎪᎱᏍᏗ ᎬᏩᏃᏎᎸᎩ ᎬᏩᎾᏡᏔᏅᎩ ᎼᏏ ᎠᎴ ᎡᎳᏂ ᎾᎿ ᎢᎾᎨᎢ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎯᎠ ᏂᎬᏩᏂᏪᏎᎸᎩ, ᏲᏎᏉ ᏱᎰᏩ ᏱᏙᎩᎴ ᎢᏥᏡᏱ ᎦᏙᎯ, ᎾᎯᏳ ᏧᎳᏍᎩ ᎭᏫᏯ ᏗᎦᎶᏗ ᏕᎦᎧᎲ ᎾᎥ ᏥᏙᎪᎸᎢ, ᎦᏲᏦᎸᏍᎩ. ᎦᏚ ᏦᏥᎩᏍᎬᎢ. ᏕᏍᎩᏯᏘᏃᎸᏰᏃ ᎠᏂ ᎢᎾᎨ ᎨᏒ ᎠᎪᏄ ᏗᎯᏍᏗᏱ ᎯᎠ ᎾᏍᎩ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎨᏒᎢ.\nᏓᏉᏃ ᏱᎰᏩ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎬᏂᏳᏉ ᎦᏚ ᎦᎸᎶᎢ ᏓᏨᏅᎪᎥᏓᏁᎵ; ᏴᏫᏃ ᎠᏂᏄᎪᎨᏍᏗ ᎠᎴ ᎠᏄᏖᏍᎨᏍᏗ ᎤᏙᏓᏆᏛ ᎤᎾᎵᏍᏓᏴᏗ ᏂᏚᎩᏨᏂᏒᎢ, ᎾᏍᎩ ᎦᏥᎪᎵᏰᏗᏱ ᏗᎦᎬᎩᎧᎿᏩᏛᎡᏗ ᎨᏒ ᎠᏆᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᏗᎦᎬᎩᎧᎿᏩᏛᎡᏗ ᏂᎨᏒᎾ ᎨᏒᎢ.\nᎯᎠᏃ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏑᏓᎵᏁ ᎢᎦ ᎤᎾᏛᏅᎢᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎤᏂᏲᎸᎯ; ᎠᎴ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᏓᎪᏕᏍᏗ Ꮎ ᏂᏚᎩᏨᏂᏒ ᎠᏄᏖᏍᎬᎢ.\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ ᎯᎠ ᏂᏚᏂᏪᏎᎸ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ, ᎤᏒᎢ ᎿᏉ ᏓᏣᏙᎴᎰᏏ ᎾᏍᎩ ᏱᎰᏩ ᎢᏥᏈᏱ ᏂᏙᏓᏣᏘᎾᏫᏛᏛ ᎨᏒᎢ.\nᏑᎾᎴᏃ ᎿᏉ ᏓᏥᎪᎯ ᏱᎰᏩ ᎤᏤᎵ ᏚᎸᏉᏗᏳ ᎨᏒᎢ; ᎠᏛᎩᏰᏃ ᏱᎰᏩ ᎪᎱᏍᏗ ᎡᏦᏎᎲ ᎡᏣᏡᏚᏍᎬᎢ; ᎠᏴᏃ ᎨᏒ ᎦᏙᎢ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏥᏍᎩᏃᏎ ᏍᎩᎾᏡᏗᏍᎬᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ; [ᎾᏍᎩ ᏄᏍᏕᏍᏗ] ᎾᎯᏳ ᏱᎰᏩ ᎢᏥᏁᎸ ᎭᏫᏯ ᎢᏥᎩᏍᏗ ᎤᏒᎢ; ᏑᎾᎴᏃ ᎦᏚ ᎢᏦᎸᎯᏍᏗ ᎢᎦᎢ; ᏱᎰᏩᏰᏃ ᎠᏛᎩᎭ ᎪᎱᏍᏗ ᎡᏦᏎᎲᎢ ᎾᏍᎩ ᎡᏣᏗᏍᎬ ᎪᎱᏍᏗ ᏤᏦᏎᎭ; ᎠᏴᏃ ᎨᏒ ᎦᏙᎢ? ᎪᎱᏍᏗ ᎢᏣᏗᏍᎬ ᎥᏝ ᎠᏴ ᏱᏍᎩᏯᏡᏗᎭ, ᏱᎰᏩᏍᎩᏂ ᎡᏣᏡᏗᎭ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸ ᎡᎳᏂ, ᎯᎠ ᏂᎩᏪᎲ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ, ᎢᏥᎷᎩ ᎾᎥ ᎢᎬᏱᏗᏢ ᏱᎰᏩ ᏄᏛᏅᎢ ᎤᏛᎦᏅᏰᏃ ᎪᎱᏍᏗ ᎡᏦᏎᎲᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᎾᎯᏳ ᎡᎳᏂ ᏂᎦᏛ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ ᏕᎦᏬᏁᏗᏍᎬ, ᎾᏍᎩ ᎢᎾᎨ ᎢᏗᏢ ᏫᏚᎾᎧᎿᏅ, ᎠᎴ ᎬᏂᏳᏉ, ᎦᎸᏉᏗᏳ ᏱᎰᏩ ᎤᏤᎵ ᎬᏂᎨᏒ ᏄᏍᏛᎩ ᎤᎶᎩᎸᎢ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸ ᎼᏏ ᎯᎠ ᏄᏪᏒᎩ;\nᎠᏆᏛᎦᏅ ᎪᎱᏍᏗ ᎠᎾᏗᏍᎬᎢ ᎢᏏᎵ ᏧᏪᏥ; ᏘᏬᏁᏓ, ᎯᎠ ᏂᎩᏪᏏ, ᎤᏒᎢ ᎭᏫᏯ ᏓᏥᎩ, ᏑᎾᎴᏃ ᏗᏦᎸᎯᏍᏗ ᎨᏎᏍᏗ ᎦᏚ; ᎠᎴ ᎢᏥᎦᏔᎮᏍᏗ ᎠᏴ ᏱᎰᏩ ᎢᏨᏯᏁᎳᏅᎯ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ; ᎾᏍᎩ ᎤᏒᎢ ᎤᏂᎷᏨᎩ ᎫᏇ ᎠᎴ ᎤᏄᏢᏔᏅ ᎠᏂᏅᎢ; ᏑᎾᎴᏃ ᎤᎯᏌᏛᎩ ᎤᏚᏫᏛ ᎠᏂᏅᎢ.\nᎤᎯᏌᏛᏃ ᏚᎴᏅ ᎬᏂᏳᏉ ᎦᎳᎨᏴᎩ ᎢᎾᎨ ᎦᏙᎯ ᎦᏚᎢ ᎪᎱᏍᏗ ᎤᏍᏗ ᎦᏌᏆᎸᎢ ᎤᏯᏛᏅᏔ ᎢᎩᏛ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᎪᎲ ᎯᎠ ᏂᏚᎾᏓᏪᏎᎸᎩ, ᎦᏙ ᎯᎠ; ᎥᏝᏰᏃ ᏯᏂᎦᏔᎮ ᎢᏳᏍᏗ ᎨᏒᎢ. ᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᎦᏚ ᏱᎰᏩ ᏥᏥᏁᎸ ᎢᏥᎩᏍᏗ.\nᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏱᎰᏩ ᎤᏁᏨᎢ; ᎢᏧᏖᏍᏗᏱ ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᎢᎦᎢ ᎨᏥᎩᏍᏗ ᎨᏒᎢ; ᏑᏟᎶᏛ ᎠᎹ ᎠᏟᎶᏍᏗ ᎢᏥᏏᏴᏫᎭ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏂᏥᎥ ᏕᏣᏓᏘᎾᏩᏗᏒᎢ, ᎢᏥᎩᏒᎭ ᏂᏥᎥᎢ ᏕᏥᎵᏦᏛ ᎠᏂᏂ ᎤᎾᏤᎵᎦ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎾᏍᎩ ᏄᎾᏛᏁᎸᎩ, ᎤᏄᏖᏒᎩ, ᎢᎦᏛ ᎤᎪᏛᎩ, ᎢᎦᏛᏃ ᎦᏲᎵᎨ ᎨᏒᎩ.\nᎿᏉᏃ ᎠᎹ ᎠᏟᎶᏍᏗ ᎤᎾᏟᎶᏍᏔᏅ, ᎾᏍᎩ ᎤᎪᏗᏗ ᎤᏭᏖᏛ ᎥᏝ ᏳᏘᏰᎴᎢ, ᎾᏃ ᎦᏲᎵ ᎤᏭᏖᏛ ᎥᏝ ᏳᎷᎶᏤᎴᎢ: ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎤᏄᏖᏒᎩ ᏰᎵ ᎬᏩᏂᎩᏍᏗ ᎨᏒᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏞᏍᏗ ᎩᎶ ᎤᎯᏴᎩ ᏑᎾᎴ ᎢᏴᏛ.\nᎠᏎᏍᎩᏂᏃᏅ ᎥᏝ ᏱᎬᏩᏛᏓᏍᏓᏁᎴ ᎼᏏ; ᎢᎦᏛᏍᎩᏂ ᎤᏂᎯᏴᎩ ᏑᎾᎴ ᎢᏴᏛ, ᏥᏍᎪᏴᏃ ᏚᎾᏅᏅᎩ’ ᎠᎴ ᎠᏒᎩᏳ ᏄᎵᏍᏔᏅᎩ; ᎼᏏᏃ ᏚᎿᎸᏤᎸᎩ.\nᏂᏚᎩᏨᏂᏒᏃ ᏑᎾᎴ ᎠᏄᏖᏍᎬᎩ, ᎠᏂᏏᏴᏫᎭ ᎢᎦᎢ ᎬᏩᏂᎩᏍᏗ ᎨᏒᎢ; ᏅᏙᏃ ᎠᏗᎴᎲᎯ ᎥᎬᎾᏬᏍᎬᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᏑᏓᎵᏁ ᎢᎦ ᎤᏟ ᎢᎦᎢ ᎦᏚ ᎤᏄᏕᏒᎩ, ᏔᎵ ᎢᏳᏟᎶᏛ ᎠᏂᏏᏴᏫᎭᎢ, ᏂᎦᏛᏃ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎾᏍᎩ ᎤᎾᏓᏡᎬ ᎤᏂᎷᏨᎩ ᎠᎴ ᎬᏩᏃᏁᎸᎩ ᎼᏏ\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᎾᏍᎩ ᏱᎰᏩ ᏥᏄᏪᏒ, ᏑᎾᎴᎢ ᎢᏣᏪᏐᎸᏍᏓᏁᏗᏱ ᏱᎰᏩ ᎦᎸᏉᏗᏳ ᎤᎾ ᏙᏓᏆᏍᎬᎢ: ᏗᏥᏚᎲᎦ ᎾᏍᎩ ᏗᏥᏚᏗ ᎨᏒᎢ, ᎠᎴ ᎢᏧᎲᎦ ᎾᏍᎩ ᎢᏧᏗ ᎨᏒᎢ; ᎾᏃ ᎤᏘᏴᎯ ᎢᏥᏍᏆᏂᎪᏓ ᏑᎾᎴ ᎬᏗᏍᎩ.\nᎤᏂᏍᏆᏂᎪᏔᏅᎩᏃ ᏑᎾᎴ ᎬᏗᏍᎩ, ᎾᏍᎩᏯ ᎼᏏ ᏄᏪᏒᎢ, ᎥᏝᏃ ᏳᏒᏤᎢ, ᎠᎴ ᎥᏝ ᏥᏍᎪᏴ ᏯᏂᏯᎡᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎪᎯ ᎢᎦ ᎢᏥᎦ ᎾᏍᎩ; ᎪᎯᏰᏃ ᎢᎦ ᎤᎾᏙᏓᏆᏍᎬ ᏱᎰᏩ ᎤᏤᎵᎦ: ᎪᎯ ᎢᎦ ᎥᏝ ᏴᎨᏥᏩᏛ ᎢᎾᎨᎢ.\nᏑᏓᎵ ᎢᎦ ᎢᏧᏖᏍᎨᏍᏗ, ᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ ᎤᎾᏙᏓᏆᏍᎬᎢ, ᎾᎯᏳ ᎥᏝ ᏱᎦᎳᎨᏰᏍᏗ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎢᎦᏛ ᏴᏫ ᎤᏂᏄᎪᏨᎩ ᎤᏄᏖᏒᏒᎩ ᎦᎵᏉᎩᏁ ᎢᎦ, ᎠᎴ ᏭᎾᏠᏨᎩ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ ᎢᏣᏉᏏᏍᎨᏍᏗ ᎢᏥᏍᏆᏂᎪᏙᏗᏱ ᎠᎩᏁᏨ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᏗᏆᏤᎵᎦ.\nᎬᏂᏳᏉ ᎾᏍᎩ ᏱᎰᏩ ᏥᏥᏁᎸ ᎤᎾᏤᏓᏆᏍᎬᎢ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏁᎭ ᏑᏓᎵᏁ ᎢᎦ ᏔᎵ ᎢᎦ ᎢᏣᎵᏍᏓᏴᏗ: ᏂᏥᎥ ᎢᏥᏏᏴᏫᎭ ᏁᏣᏛᏁᏍᏗᏉ; ᏞᏍᏗ ᎩᎶ ᎤᏄᎪᏨᎩ ᎦᎵᏉᎩᏁ ᎢᎦ.\nᎰᏩᏃ ᏴᏫ ᎠᎾᏣᏪᏐᎸᏍᏗᏍᎬᎩ ᎦᎵᏉᎩᏁ ᎢᎦ.\nᎢᏏᎵᏃ ᎠᏂᎳᏍᏓᎸ ᎹᎾ ᏚᏃᎥᎩ ᎾᏍᎩ; ᎠᎴ ᎤᏁᎬ ᎨᏒᎩ ᎪᎵᎠᏂ ᎤᎦᏔ ᎾᏍᎩᏯᎢ; ᎠᎩᏍᏗᏱᏃ ᎾᏍᎩᏯ ᎨᏒᎩ ᏗᏌᎨ ᎦᏚ ᏩᏚᎵᏏ ᏗᏑᏱ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏱᎰᏩ ᎤᏁᏨᎢ, ᎯᎠ ᎢᏥᎧᎵᎢᏍᏓ ᎠᎹ ᎠᏟᎶᏍᏗ, ᎠᏍᏆᏂᎪᏙᏗ ᎢᏣᏓᏁᏟᏴᏏᏒ ᎢᏣᏤᎵᎦ; ᎾᏍᎩ ᎤᏂᎪᏩᏛᏗᏱ ᎦᏚ ᎾᏍᎩ ᎢᏨᏰᎳᏍᏔᏅ ᎢᎾᎨᎢ, ᎾᎯᏳ ᎢᏥᏈᏱ ᏥᏙᏓᏨᏯᏘᏅᏍᏔᏅᎩ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎡᎳᏂ, ᎠᏖᎵᏙ ᏫᎩ, ᎠᎴ ᎠᎹ ᎠᏟᎶᏍᏗ ᎠᎧᎵᎢ ᎹᎾ ᎾᎿ ᎯᎸᎦ, ᎠᎴ ᎯᏝᎲᎦ ᏱᎱᏩ ᏓᎧᏅᎢ, ᏗᏍᏆᏂᎪᏓᏁᏗ ᏂᎯ ᎢᏣᏓᏁᏟᏴᏏᏒᎢ.\nᎾᏍᎩᏯᏃ ᏱᎰᏩ ᏄᏪᏎᎸ ᎼᏏ, ᎾᏍᎩ ᎡᎳᏂ ᏄᏛᏁᎸᎩ ᎤᏝᏅᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏓᏝᎥ ᎢᎬᏱᏗᏢ, ᎾᏍᎩ ᎠᏍᏆᏂᎪᏙᏗ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎹᎾ ᎤᏂᎬᎩ ᏅᎦᏍᎪᎯ ᏧᏕᏘᏴᏛ, ᎬᏂ ᏭᏂᎷᏨ ᎾᎿ ᎦᏓ ᎠᎲ ᎩᎶ ᏓᏂᏁᎸᎢ; ᎾᏍᎩ ᎤᏂᎬᎩ ᎹᎾ ᎬᏂ ᏭᏂᎷᏨ ᎠᏍᏛ ᎦᏙᎯ ᎨᎾᏂ ᎠᎲᎢ.\nᎾᏍᎩ ᎯᎠ ᎠᎹ ᎠᏟᎶᏍᏗ, ᎢᏆ ᏧᏙᎢᏛ ᎠᏟᎶᏍᏗ ᎠᏍᎪᎯ ᎢᎦᏛᎯ ᏌᏉ ᎾᏍᎩ.\nᏂᎦᏛᏃ ᏑᎾᏓᏡᎩ ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏂᎩᏒᎩ ᏏᏂ ᎢᎾᎨ ᎨᏒᎢ, ᏓᎾᏂᎩᏍᎬᎩ ᎾᏍᎩᏯ ᏄᏪᏒ ᎤᏁᏨ ᏱᎰᏩ; ᎵᏆᏗᎻᏃ ᏭᎾᏅᏅᎩ. ᏂᎦᏁᎲᎾᏃ ᎨᏒᎩ ᎠᎹ ᏴᏫ ᎤᎾᏗᏔᏍᏗ.\nᏴᏫᏃ ᎬᏩᏍᎦᎬᎩ ᎼᏏ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏍᎩᏁᎲᏏ ᎠᎹ ᎣᎦᏗᏔᏍᏗ. ᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎦᏙᏃ ᎠᏴ ᎢᏍᎩᏍᎦᎦ? ᎦᏙᏃ ᏱᎰᏩ ᎢᎡᏥᎪᎵᏰᎭ?\nᎾᎿᏃ ᏴᏫ ᏚᏂᏔᏕᎦᏅᎩ ᎠᎹ; ᎠᎴ ᏴᏫ ᎪᎱᏍᏗ ᎬᏬᏎᎸᎩ ᎬᏩᏡᏔᏅᎩ ᎼᏏ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎦᏙᏃ ᎢᏥᏈᏱ ᏙᏗᏍᎩᏯᏘᏅᏍᏔᏅ ᏗᏍᎩᎢᏍᏗᏱ ᎠᎹ ᏙᎩᏔᏕᎩᏍᎬᎢ, ᎠᎴ ᏦᎨᏥ, ᎠᎴ ᎣᎩᎾᏝᎾᎥᎢ?\nᎼᏏᏃ ᎤᎵᏍᏓᏁᎸᎩ ᏱᎰᏩ, ᎯᎠ ᏄᏪᏒᎩ, ᎦᏙ ᏓᎦᏥᏴᏁᎵ ᎯᎠ ᏴᏫ? ᎠᎴᏉ ᏅᏯ ᏂᏗᎬᎦᏂᏍᏗᎭ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎢᎬᏱ ᏂᎩᏰᏅᏏ ᏴᏫ, ᎠᎴ ᏔᏘᏄᎦ ᎢᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎠᎴ ᏣᏙᎳᏅᏍᏗ ᎯᏄᎦ, ᎾᏍᎩ ᎡᏉᏂ ᏨᎾᏍᏗᏍᎬᎩ, ᎠᎴ ᎮᎾ.\nᎬᏂᏳᏉ, ᎢᎬᏱᏢ ᏥᏙᎨᏍᏗ ᎭᎢᏒ ᎾᎿ ᏅᏲᎯ ᎰᎵᏈᏱ, ᏅᏲᎯᏃ ᏛᏂᎵ, ᎾᎿᏃ ᏓᎦᏄᎪᏥ ᎠᎹ, ᏴᏫᏃ ᎠᎾᏗᏔᏍᎨᏍᏗ. ᎼᏏᏃ ᎾᏍᎩ ᏄᏛᏁᎸᎩ ᎠᏂᎦᏔᎲ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ.\nᎾᎿᏃ ᎹᏌ ᎠᎴ ᎺᎵᏆ ᏚᏬᎥᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᏰᎯᎶᎥ ᎢᏏᎵ ᏧᏪᏥ, ᎠᎴ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᎤᏂᎪᎵᏰᎥ ᏱᎰᏩ, ᎯᎠ ᎾᏂᏪᏍᎬᎢ, ᏱᎰᏩᏍᎪ ᎢᎨᎳᏗᏙᎭ, ᏝᎨ?\nᎾᎯᏳᏃ ᎠᎹᎴᎩ ᎤᏂᎷᏨᎩ ᎠᎴ ᎤᎾᎵᎸᎩ ᏆᏏᎵ ᎵᏆᏗᎻ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏦᏑᏫ, ᏗᏍᎩᏯᏑᏰᏏ ᎠᏂᏍᎦᏯ, ᎠᎴ ᎢᏤᎾ, ᏫᏣᎵᎦ ᎠᎹᎴᎩ; ᎤᎩᏨᏅ ᎠᏴ ᎦᏚᏏ ᏓᎦᎴᏂ, ᏥᏁᎡᏍᏗ ᎠᏙᎳᏅᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎰᏩᏃ ᏦᏑᏫ ᎼᏏ ᏄᏪᏎᎸ ᎾᏍᎩᏯ ᏄᏛᏁᎸᎩ, ᎠᎴ ᎤᎾᎵᎸᎩ ᎠᎹᎴᎩ; ᎼᏏᏃ, ᎡᎳᏂ ᎠᎴ ᎭᎵ, ᎤᏂᎿᎷᏒᎩ ᎣᏓᎸᎢ,\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎼᏏ ᎤᏌᎳᏛ ᎤᏬᏰᏂ ᎢᎪᎯᏛ ᎢᏏᎵ ᎠᎾᏓᏎᎪᎩᏍᎬᎩ; ᎢᎪᎯᏛᏃ ᎡᎳᏗ ᏄᏩᏅ ᎤᏬᏰᏂ, ᎠᎹᎴᎩ ᎠᎾᏓᏎᎪᎩᏍᎬᎩ.\nᎠᏎᏃ ᎼᏏ ᏧᏬᏰᏂ ᏗᎦᎨᏗᏳ ᎨᏒᎩ; ᏅᏯᏃ ᏭᏂᎩᏒᎩ, ᎠᎴ ᎭᏫᏂᏗᏢ ᎤᏂᏅᎩ, ᎾᎿᏃ ᎤᏪᏅᎩ; ᎡᎳᏂᏃ ᎠᎴ ᎭᎵ ᎣᏂᏌᎳᏛᎩ ᏧᏬᏰᏂ, ᎠᏏᏴᏫ ᎠᏂᏗᏢ; ᏧᏬᏰᏂᏃ ᏂᏕᎬᏩᏍᏛᎩ ᎬᏂ ᏅᏙ ᏭᏕᎵᏨ.\nᏦᏑᏫᏃ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ ᏚᏎᎪᎩᏒ ᎠᎹᎴᎩ, ᎠᎴ ᏧᏤᎵ ᏴᏫ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸ ᎼᏏ, ᎰᏪᎸᎦ ᎯᎠ ᎪᏪᎵᎯ ᎠᏅᏓᏗᏍᏗ ᎨᏎᏍᏗ, ᏦᏑᏫᏃ ᎯᏯᏛᎪᏔᏅᎭ; ᏓᏥᏛᏔᏂᏰᏃ ᎠᎦᏚᏅᏓᏗᏍᏙᏗ ᎨᏒ ᎠᎹᎴᎩ ᎠᏂ ᎦᎸᎶ ᎭᏫᏂᏗᏢ.\nᎼᏏᏃ ᎤᏁᏍᎨᎲᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎯᎠ ᏄᏍᏛ ᏚᏬᎥᎩ; ᏱᎰᏩᏂᏏ.\nᎯᎠᏰᏃ ᏄᏪᏒᎩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᏱᎰᏩ ᎤᏎᎵᏔᏅ ᎯᎠ ᏄᏪᏒᎢ, ᏱᎰᏩ ᏓᏂᏓᎿᏫᏰᏍᏗ ᎠᎹᎴᎩ ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏏᏒ ᎾᏍᎩ.\nᏥᎶᏃ, ᎠᏥᎸᎨᎶᎯ ᎻᏗᏂ ᎡᎯ, ᎼᏏ ᎤᏖᏥ, ᎤᏛᎦᏅᎩ ᏂᎦᎥ ᎤᏁᎳᏅᎯ ᏂᎦᏛᏁᎸ ᎼᏏ, ᎠᎴ ᎢᏏᎵ ᏧᏤᎵ ᏴᏫ, ᎾᏍᎩ ᏱᎰᏩ ᎢᏏᎵ ᎢᏥᏈᏱ ᏙᏧᏘᏅᏍᏔᏅᎢ.\nᎿᏉᏃ ᏥᎶ ᎼᏏ ᎤᎿᏥ ᎤᏯᏅᎲᎩ ᏥᏉᎳ ᎼᏏ ᎤᏓᎵᎢ, ᎾᏍᎩ ᎦᏳᎳ ᏄᏨᏍᏔᏃᎢ;\nᎠᏂᏔᎵᏃ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎠᏏᏴᏫ ᎦᏐᎻ ᏚᏙᎥᎩ; ᎯᎠᏰᏃ ᏄᏪᏒᎩ, ᎨᏙᎯ ᎨᏒᎩ ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ.\nᏐᎢᏃ ᎢᎵᎡᏌ ᏚᏙᎥᎩ, ᎤᏁᎳᏅᎯᏰᏃ ᎠᎩᎦᏴᎵᎨ ᎤᏤᎵᎦ ᎠᎩᏍᏕᎵᏍᎩ ᎨᏒᎩ, ᎠᎴ ᎠᏊᏓᎴᏒᎩ ᏇᎵᏲ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎦᏁᎲ, ᎤᏛᏅᎩ.\nᏥᎶᏃ ᎼᏏ ᎤᎿᏥ ᎼᏏ ᎤᎷᏤᎸᎩ ᎢᎾᎨᎢ, ᎠᎴ ᏧᏪᏥ ᎠᎴ ᎤᏓᎵᎢ, ᎾᎿ ᎠᏂᏅ ᎣᏓᎸ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ:\nᎯᎠᏃ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎠᏴ ᏥᎶ ᏣᎿᏥ, ᎬᎷᏥᏏ, ᎣᏤᎭ ᏣᏓᎵᎢ, ᎠᎴ ᏗᏤᏥ ᎠᏂᏔᎵ.\nᎼᏏᏃ ᎤᏪᏅᏒᎩ ᏚᏠᏒᏒᎩ ᎤᎿᏥ, ᎠᎴ ᎡᎳᏗ ᏄᏛᏁᎸᎩ, ᎠᎴ ᎤᏚᏣᎳᏅᎩ; ᏚᎾᏓᏛᏛᏅᏃ ᏙᎯᏱ ᏄᎾᏛᎿᏕᎬᎢ; ᎦᎵᏦᏛᏃ ᏭᏂᏴᎸᎩ.\nᎼᏏᏃ ᎤᏃᏁᎸᎩ ᎤᎿᏥ ᏂᎦᏛ ᏱᎰᏩ ᏄᏩᏁᎸ ᏇᎵᏲ ᎠᎴ ᎢᏥᏈᏱ ᎠᏁᎯ ᎢᏏᎵ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎢ, ᎠᎴ ᏂᎦᎥ ᎤᏕᏯᎠᏙᏗ ᎤᏂᎷᏤᎸ ᏗᎾᎢᏒᎢ, ᎠᎴ ᎾᏍᎩ ᏱᎰᏩ ᏚᏭᏓᎴᏒᎢ.\nᏥᎶᏃ ᎤᎵᎮᎵᏨᎩ ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏂᎦᎥ ᎣᏍᏛ ᏱᎰᏩ ᏂᏚᏛᏁᎸ ᎢᏏᎵ, ᎾᏍᎩ ᏥᏚᏭᏓᎴᏂ ᎠᏍᏓᏯ ᏂᎬᏩᏅᎿᏕᎬ ᎢᏥᏈᏱ ᎠᏁᎯ.\nᏥ’ᎶᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏱᎰᏩ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎢᏧᏓᎴᏛ ᏥᎩ ᎠᏍᏓᏯ ᏥᏂᎨᏨᎿᏕᎬ ᎢᏥᏈᏱ ᎠᏁᎯ, ᎠᎴ ᎠᏍᏓᏯ ᏥᏂᏨᏕᎬ ᏇᎵᏲ; ᎾᏍᎩ ᏧᏭᏓᎴᏛ ᏥᎩ ᏴᏫ ᎠᏍᏓᏯ ᏥᏂᎬᏩᏅᎿᏕᎬ ᎢᏥᏈᏱ ᎠᏁᎯ.\nᎿᏉ ᏥᎦᏔᎭ ᏱᎰᏩ ᎤᏟ ᎤᎵᏂᎩᏗᏳ ᎨᏒ ᎡᏍᎦᏉ ᎾᏂᎥ ᎤᎾᏁᎳᏅᎯ; ᎾᎿᏰᏃ ᎤᎾᏢᏉᏗ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎾᏍᎩ ᏚᏓᎵᏁᎯᏕᎸ.\nᏥ’ᎶᏃ ᎼᏏ ᎤᎿᏥ ᎠᏥᎸᎨᎳᏍᏗ ᎠᎴ ᏗᎵᏍᎪᎸᏓᏁᏗ ᎤᏁᎳᏅᎯ ᏚᎩᏒᎩ: ᎡᎳᏂᏃ ᎤᎷᏨᎩ, ᎠᎴ ᏂᎦᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ, ᎤᏂᎩᏍᏗᏱ ᎦᏚ ᎢᏧᎳᎭ ᎼᏏ ᎤᎿᏥ ᎤᏁᎳᏅᎯ ᎠᎦᏔᎲᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᏭᎩᏨᏅ, ᎾᏍᎩ ᎼᏏ ᎤᏪᏅᎩ ᏧᏭᎪᏁᏗᏱ ᏴᏫ; ᏴᏫᏃ ᎤᎾᎴᎿᏫᏍᏛᎩ ᎼᏏ ᎤᏬᎸ ᏑᎾᎴ ᎤᏓᎴᏅᏛ ᎤᏒ ᎬᏗᏍᎩ.\nᎼᏏᏃ ᎤᎿᏥ ᎤᎪᎲ ᏂᎦᎥ ᏂᏓᏛᏁᎲ ᏴᎾ, ᎯᎠ ᏄᏪᏒᎩ, ᎦᏙ ᎯᎠ ᏥᏂᎩᏯᏛᏁᎭ ᏴᏫ? ᎦᏙᏃ ᏨᏒᏉ ᎢᏦᎳ, ᏂᎦᏛᏃ ᏴᏫ ᎤᎾᎴᎿᏫᏍᏗ ᏦᎸ ᎾᎥᎢ, ᏑᎾᎴ ᎤᏓᎴᏅᏛ ᎤᏒ ᎬᏗᏍᎩ?\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎤᎿᏥ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎬᎩᎷᏤᎲ ᏴᏫ ᎤᏂᎨᏛᎲᏍᎬ ᎤᏁᎳᏅᎯ ᏄᏪᏒᎢ.\nᎪᎱᏍᏗ ᎠᏰᎢᎵᏓᏍᏗ ᏧᏂᎨᎢ, ᎠᏴ ᎬᎩᎷᏤᎰᎢ; ᎠᏴᏃ ᏕᎦᏥᏳᎪᏓᏁᎰᎢ; ᎠᎴ ᎬᏂᎨᏒ ᏂᎦᏥᏴᏁᎰ ᎤᏁᎳᏅᎯ ᎤᏁᏨ, ᎠᎴ ᏧᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ.\nᎼᏏᏃ ᎤᎿᏥ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎾᏍᎩ ᏥᎿᏛᏁᎭ ᎥᏝ ᎣᏏᏨ ᏱᎩ.\nᏙᏓᏣᏯᏪᏥᏉ, ᏨᏒ ᎠᎴ ᎯᎠ ᏴᏫ ᏥᏣᎵᎪᏩᏕᎦ; ᎦᎨᏗᏳᏰᏃ ᏨᏒ ᏗᏣᎸᏫᏍᏓᏁᏗᏱ; ᎥᏝ ᏰᎵ ᎾᏍᎩ ᏱᏂᏍᏓᏴ ᏗᏣᎸᏫᏍᏗᏁᏗᏱ ᏨᏒ ᎨᏒᎢ.\nᎭᏛᏓᏍᏓᎾᏗ ᎠᏴ ᏥᏁᎬᎢ, ᏓᎬᏰᏲᏂ, ᎤᏁᎳᏅᎯᏃ ᏙᏓᏣᎧᎾᏩᏗᏙᎵ; ᎤᏁᎳᏅᎯ ᎢᏗᏢ ᎩᏯᎴᏁᎯ ᎨᏎᏍᏗ ᏴᏫ, ᎾᏍᎩ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎤᏁᎳᏅᎯ ᏫᏲᎮᏗ ᎨᏎᏍᏗ.\nᎩᏰᏲᏗᏃ ᎨᏎᏍᏗ ᎤᎵᏁᏨ ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ, ᎠᎴ ᎩᏯᏎᎮᏗ ᎾᎿ ᎤᏂᎶᎯᏍᏗᏱ ᎨᏒᎢ, ᎠᎴ ᏄᏍᏛ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎴ ᎾᏍᏉ ᏔᏑᏰᏍᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏴᏫ ᏄᎾᏛᏅ, ᎠᏂᏍᎦᏯ ᎠᏂᎦᏔᎿᎢ, ᎤᏁᎳᏅᎯ ᎠᏂᎾᏰᏍᎩ, ᎠᏂᏍᎦᏯ ᏚᏳᎪᏛ ᎠᏂᏁᎩ, ᎠᏂᏂᏆᏘᎯ ᎠᎬᎥᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩᏃ ᏕᎯᏁᏤᎮᏍᏗ ᎤᏂᎬᏫᏳᏌᏕᎩ ᏂᏕᎲᏁᎮᏍᏗ ᏌᏉ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎢ, ᎠᎴ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯᏧᏈ ᎾᏂᎥᎢ, ᎤᏂᎬᏫᏳᏌᏕᎩ ᎯᏍᎦᏍᎪᎯ ᎾᏂᎥᎢ, ᎠᎴ ᎤᏂᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯ ᎾᏂᎥᎢ;\nᎾᏍᎩᏃ ᎯᎠ ᏓᏄᎪᏓᏁᎮᏍᏗ ᏴᏫ ᏂᎪᎯᎸᎢ; ᎠᎴ ᎯᎠ ᏄᏍᏕᏍᏗ, ᎾᏍᎩ ᏂᎦᏛ ᎪᎱᏍᏗ ᎤᎵᏍᎨᏛ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒᎢ, ᏂᎯ ᎨᏣᏲᎮᏗ ᎨᏎᏍᏗ; ᎤᏍᏗᏉᏍᎩᏂ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎾᏍᎩ ᏓᏄᎪᏗᏍᎨᏍᏗ; ᎾᏍᎩᏃ ᎤᏓᏌᎧᎯᎨ ᏂᏣᎵᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎤᏁᎳᏗᏍᏗᏍᎨᏍᏗ ᏣᎵᏐᏈᏖᎸᎢ.\nᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᏱᏂᏣᏛᏁᎸ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎾᏍᎩ ᏱᏂᏣᏪᏎᎸ, ᎿᏉ ᎾᏍᎩ ᏰᎵ ᏱᏅᏂᎠ ᏂᎯ, ᎠᎴ ᏂᎦᏛ ᎯᎠ ᏴᏫ ᎾᏍᏉ ᎤᎾᏤᎵᎪᎯ ᏅᏩᏙᎯᏯᏛ ᏭᏂᎶᎯᏍᏗ ᎨᏎᏍᏗ.\nᎼᏏᏃ ᎤᏛᏓᏍᏓᏁᎸᎩ ᎧᏁᎬ ᎤᎿᏥ, ᎠᎴ ᏂᎦᎥ ᏄᏪᏒ ᏄᏛᏁᎸᎩ.\nᎼᏏᏃ ᏚᏑᏰᏒᎩ ᎠᏂᎦᏔᎿᎢ ᎠᏂᏍᎦᏯ ᏂᎬᎾᏛ ᎢᏏᎵᏱ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏂᏚᏩᏁᎸᎩ ᏴᏫ ᎠᏁᎲᎢ, ᏄᏂᎬᏫᏳᏌᏕᎩ ᏂᏚᏩᏁᎸᎩ ᏌᏉ ᎢᏯᎦᏴᎵ ᎾᏂᎥᎢ, ᏄᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯᏧᏈ ᎾᏂᎥᎢ, ᏄᏂᎬᏫᏳᏌᏕᎩ ᎯᏍᎦᏍᎪᎯ ᎾᏂᎥᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎠᏍᎪᎯ ᎾᏂᎥᎢ.\nᎠᎴ ᎾᏍᎩ ᏓᏄᎪᏓᏁᎲᎩ ᏴᏫ ᏂᎪᎯᎸᎢ; ᎪᎱᏍᏗ ᎠᏍᏓᏯ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎼᏏ ᎠᏂᏲᎮᎲᎩ; ᏂᎦᎥᏃ ᎤᏍᏗ ᎠᏰᎢᎵᏓᏍᏗ ᎨᏒ ᎤᏅᏒᏉ ᏓᏄᎪᏗᏍᎬᎩ\nᎼᏏᏃ ᎤᏁᎳᎩ ᎤᏪᎵᏎᎸᎩ ᎥᎤᏪᏅᏍᏗᏱ ᎤᎿᏥ; ᎤᏪᏅᏒᎩᏃ ᎤᏩᏒ ᎤᏤᎵᎪᎯ ᏭᎶᏒᎩ.\nᏦᎢᏁ ᏅᏙᎯ, ᏅᏓᎬᏩᎾᏂᎩᏛ ᎢᏏᎵ ᏧᏪᏥᎢᏥᏈᏱ ᎤᎾᏤᎵᎪᎯ, ᎾᎯᏳ ᎢᎦ ᎤᏂᎷᏨᎩ ᎢᎾᎨ ᎨᏒ ᏌᎾᏱ.\nᎵᏆᏗᎻᏰᏃ ᎤᎾᏂᎩᏛ ᎨᏒᎩ, ᎢᎾᎨᏃ ᎨᏒ ᏌᎾᏱ ᏭᏂᎷᏨᎩ, ᎠᎴ ᏭᎾᏅᏅᎩ ᎢᎾᎨᎢ; ᎠᎴ ᎾᎿ ᎢᏏᎵ ᎠᏂᏅᎩ ᎣᏓᎸ ᎢᎬᏱᏗᏢ.\nᎼᏏᏃ ᎤᏁᎳᏅᎯ ᏤᏙᎲ ᏭᎶᏒᎩ, ᏱᎰᏩᏃ ᏓᏳᏯᏅᎲᎩ ᎣᏓᎸᎢ, ᎯᎠ ᏅᏓᏳᏪᏒᎩ, ᎯᎠ ᏂᎩᏪᏏ ᏤᎦᏈ ᎤᏂᏠᏱ ᎨᏒᎢ, ᎠᎴ ᎯᎠ ᏂᎩᏪᏏ ᎢᏏᎵ ᏧᏪᏥ:\nᎢᏥᎪᎲ ᎢᏥᏡᏱ ᎠᏁᎯ ᏂᎦᏥᏴᏁᎸᎢ, ᎠᎴ ᏕᏨᏂᏙᎸ ᎠᏬᎭᎵ ᏗᎧᏃᎨᏂ, ᎠᎴ ᏕᏨᏯᏘᏃᎸ ᎠᏕᏒ ᎾᏆᏛᏅᎢ.\nᎾᏍᎩᏃ ᎢᏳ ᎤᏙᎯᏳᎯᏯ ᏱᏣᏛᏓᏍᏔᏅ ᏥᏁᎬᎢ, ᎠᎴ ᏱᏥᏍᏆᏂᎪᏔᏅ ᎠᏆᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎿᏉ ᎦᎸᏉᏗ ᏧᎬᏩᎶᏗ ᎨᏎᏍᏗ ᏕᏨᏯᎦᏂᏍᎬᎢ, ᎡᏍᎦᏉ ᎾᏂᎥ ᏴᏫ; ᏂᎬᎾᏛᏰᏃ ᎡᎶᎯ ᎠᏆᏤᎵᎦ.\nᎠᎴ ᏗᏆᏤᎵ ᏅᏓᏣᎵᏍᏔᏂ ᎢᏥᎬᏫᏳᎯ ᎠᏥᎸᎢᏤᎶᎯ, ᎠᎴ ᎡᏥᎸᏉᏔᏅᎯ ᎢᏣᏓᏤᎵᏛ. ᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎧᏃᎮᏛ ᎩᏃᎮᎮᏗ ᏥᎩ ᎢᏏᎵ ᏧᏪᏥ.\nᎼᏏᏃ ᎤᎷᏨᎩ, ᎠᎴ ᏫᏚᏯᏅᎲᎩ ᏧᎾᏛᏐᏅᎯ ᏴᏫ ᏧᎾᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎸᎩ ᏂᎦᏛ ᎯᎠ ᎧᏃᎮᏛ ᏱᎰᏩ ᎤᏁᏤᎸᎯ.\nᏂᎦᏛᏃ ᏴᏫ ᎤᎴᏃᏅᎯ ᎤᏂᏁᏨᎩ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᏂᎦᏛ ᏱᎰᏩ ᏃᎩᏪᏎᎸ ᎾᏍᎩ ᏅᏓᏲᏣᏛᏁᎵ. ᎼᏏᏃ ᏄᏂᏪᏒ ᏴᏫ ᏭᏃᏁᎸᎩ ᏱᎰᏩ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ. ᎬᏂᏳᏉ, ᏓᎬᎷᏤᎵ, ᏥᏯᎡᏍᏗ ᎤᎭᎨᏛ ᎤᎶᎩᎸᎢ, ᎾᏍᎩ ᏴᏫ ᎤᎾᏛᎪᏗᏱ ᎬᏬᏁᏔᏅᎭ, ᎠᎴ ᎾᏍᏉ ᎨᏦᎯᏳᏗᏱ ᏂᎩᎯᎸᎢ. ᎼᏏᏃ ᏄᏂᏪᏒ ᏴᏫ ᏱᎰᏩ ᏭᏃᏁᎸᎩ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎮᎾ ᏴᏫ ᏗᏁᏙᎲᎢ, ᎠᎴ ᏫᎩᏯᏛᏅᎢᏍᏓ ᎪᎯ ᎢᎦ, ᎠᎴ ᏑᎾᎴᎢ, ᎠᎴ ᏫᏓᏅᎩᎶᏨ ᏧᎾᏄᏬᎢ,\nᎠᎴ ᎤᎾᏛᏅᎢᏍᏘᏌᏛ ᎨᏎᏍᏗ ᏦᎢᏁ ᎢᎦ ᎠᏍᏆᎸᎲᎭ; ᏦᎢᏁᏰᏃ ᎢᎦ ᏱᎰᏩ ᏛᎩᎸᏂᎵ ᏂᎦᏛ ᏴᏫ ᏓᏂᎧᏅ ᏌᎾᏱ.\nᎠᎴ ᎩᏯᏟᎶᎡᎸᎭ ᎬᏩᏚᏫᏛ ᏴᏫ ᎤᏁᏓᏍᏗᏱ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᎢᏣᏓᏯᏫᏍᎨᏍᏗ ᎢᏨᏒ, ᎾᏍᎩ ᏞᏍᏗ ᎢᏥᎿᎷᏒᎩ ᎣᏓᎢᎸᎢ, ᎠᎴ ᏞᏍᏗ ᎠᎦᏐᎠᏍᎬ ᎢᏣᏒᏂᎸᎩ; ᎩᎶ ᎠᏒᏂᎮᏍᏗ ᎠᏎ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ;\nᎾᏍᏉ ᎩᎶ ᎤᏬᏰᏂ ᎤᏒᏂᏍᏙᏗ ᎢᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏎ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎬᏩᎶᏒᎯ ᎠᏥᏲᏍᏗ ᎨᏎᏍᏗ, ᎦᎾᏜᎢᏉ ᎾᏍᏉ ᎨᏎᏍᏗ, ᎠᎴ ᏴᏫ ᎨᏎᏍᏗ, ᎠᏎ ᏞᏍᏗ ᏱᎬᏁᏍᏗ; ᎠᏤᎷᎯᏍᏗ ᎤᏃᏴᎳᏒᎭ, ᎣᏓᎸ ᎤᏂᎷᎯᏍᏗ ᎨᏎᏍᏗ.\nᎼᏏᏃ ᎤᎦᏐᎠᏒᎩ ᎣᏓᎵ ᏴᏫ ᏗᏁᏙᎲ ᏭᎷᏨᎩ, ᎠᎴ ᏚᏛᏅᎢᏍᏔᏅᎩ ᏴᏫ, ᎠᎴ ᏚᏅᎩᎶᎥᎩ ᏧᎾᏄᏬᎢ.\nᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᎢᏣᏛᏅᎢᏍᏗᏌᏛ ᎨᏎᏍᏗ ᏦᎢᏁ ᎢᎦ ᎠᎵᏰᎢᎶᎸᎭ: ᏞᏍᏗ ᎠᎨᏴ ᎾᎥ ᎡᏥᎷᏤᎸᎭ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᏦᎢᏁ ᎢᎦ ᏑᎾᎴᎢ, ᎤᏴᏓᏆᎶᎥᎩ, ᎠᎴ ᎤᎾᎦᎸᎲᎩ, ᎠᎴ ᎤᎭᎨᏛ ᎤᎶᎩᎳᏛᎩ ᎣᏓᎸᎢ, ᎠᎴ ᎠᏤᎷᎩ ᎤᏣᏔᏅᎯ ᎠᏍᏓᏱᏳ ᎤᏃᏴᎳᏒᎩ, ᏂᎦᏛᏰᏃ ᏴᏫ ᏂᎬᎾᏛ ᎠᏂᏅ ᏚᏂᎾᎶᎩ.\nᎼᏏᏃ ᎠᏂᏅ ᏚᏄᎪᏫᏒᎩ ᏴᏫ ᎤᏁᎳᏅᎯ ᏚᎾᏠᏒᏒᎩ;: ᎠᎦᏐᎠᏏᎯᎲᏃ ᎣᏓᎸ ᎤᎾᎴᎿᏫᏍᏔᏅᎩ.\nᏌᎾᏱᏃ ᎣᏓᎸ ᏂᎬ ᏚᎦᏒᏍᏛᎩ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏱᎰᏩ ᎤᎩᎸᏂᎸᎢ ᎠᏥᎸ ᎤᏄᏬᏍᏛᎢ: ᏧᎦᏒᏍᏗᏃ ᎠᎵᏌᎳᏗᏍᎬᎩ ᏔᎷᎩᏍᎩ ᎬᎾᏬᏙᏗᏱ ᏥᏚᎦᏒᏍᏙ ᎾᏍᎩᏯ ᎨᏒᎩ, ᏂᎬᏃ ᎣᏓᎸ ᎤᏣᏔᏅᎯ ᎤᎵᏖᎸᏅᎩ.\nᎿᏉᏃ ᎠᏤᎷᎩ ᎪᎯᏗᏳ ᎤᏃᏴᎳᏒ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎠᏍᏓᏱᏳ ᏂᎦᎵᏍᏗᏍᎬᎢ, ᎼᏏ ᎤᏁᏨᎩ, ᎤᏁᎳᏅᎯᏃ ᏓᏳᏁᏤᎸᎩ ᏰᎵ ᎬᏛᎪᏗ ᎨᏒᎢ.\nᏱᎰᏩᏃ ᎤᏠᎠᏒᎩ ᎣᏓᎸ ᏌᎾᏱ ᎤᎩᎸᏂᎸᎩ ᎣᏓᎸ ᎦᎸᎳᏗ; ᏱᎰᏩᏃ ᏓᏳᏯᏅᎲᎩ ᎼᏏ ᎣᏓᎸ ᎦᎸᎳᏗ: ᎼᏏᏃ ᎤᎿᎷᏒᎩ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎭᏠᎠᎯ, ᏫᏖᏯᏔᎲᎦ ᏴᏫ, ᏯᏂᎦᏛᎴᎯᏰᏃ ᏱᎰᏩ ᎡᏙᎲ ᎤᎾᎦᏙᏍᏙᏗᏱ, ᎠᎴ ᎤᏂᏣᏘ ᏱᏓᏂᏲᎱᎯ.\nᎠᎴ ᎾᏍᏉ ᎠᏥᎸ-ᎠᏁᎶᎯ ᏱᎰᏩ ᎾᎥ ᎠᏂᎷᏤᎯ, ᏩᎾᏓᏅᎦᎸ, ᏱᎰᏩᏰᏃ ᏯᎦᏛᎴᎯ ᎠᏁᏙᎲᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏱᎰᏩ, ᎥᏝ ᏰᎵ ᎣᏓᎸ ᏌᎾᏱ ᏴᎬᏂᎷᎩ ᏴᏫ; ᏨᏍᎩᏁᏤᎸᏰᏃ, ᎯᎠ ᏥᏅᏣᏪᏒᎩ, ᎢᏣᏟᎶᎢᏛ ᎣᏓᎸ ᎬᏩᎦᏫᏛ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏨᎦ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ, ᎮᎾ, ᎭᏠᎠᎯ; ᎠᎴ ᏔᎩᎳᏩᏒᎭ ᏂᎯ, ᎠᎴ ᎡᎳᏂ ᎢᏍᏕᎮᏍᏗ; ᎠᏥᎸᏍᎩᏂᎠᏁᎶᎯ ᎠᎴ ᏴᏫ ᏞᏍᏗ ᎤᏂᎦᏛᎴᏒᎭ ᎤᏂᎿᎷᏒᎭ ᏭᏄᎷᏤᏗᏱ ᏱᎰᏩ, ᎾᏍᎩᏰᏃ ᏯᎦᏛᎴᎯ ᎠᏁᏙᎲᎢ.\nᎰᏩᏃ ᎼᏏ ᎤᎦᏐᎠᏏᎸᎩ ᏴᏫ ᎠᏁᏙᎲᎢ, ᎠᎴ ᏚᏬᏁᏔᏅᎩ.\nᎤᏁᎳᏅᎯᏃ ᏂᎦᏛ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ,\nᎠᏴ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᏣᏄᎪᏫᏒᎯ, ᏗᎨᏥᎾᏝᎢ ᏙᏗᏂᏁᎸᎢ.\nᏞᏍᏗ ᏅᏩᎾᏓᎴ ᎤᎾᏁᎳᏅᎯ ᏗᏣᏰᎸᎯ ᎢᎬᏱᏢ ᎠᏆᎧᏛ ᏱᏗᏣᎧᏁᏍᏗ.\nᏞᏍᏗ ᎪᎱᏍᏗ ᏨᏒ ᏣᏓᏙᏢᎾᏁᎸᎩ, ᏗᏟᎶᏍᏔᏅᎯ ᎪᎱᏍᏗ ᎦᎸᎶᎢ ᎡᎯ, ᎠᎴ ᏗᏟᎶᏍᏔᏅᎯ ᎪᎱᏍᏗ ᎡᎶᎯ ᎡᎯ, ᎠᎴ ᏗᏟᎶᏍᏔᏅᎯ ᎪᎱᏍᏗ ᎠᎹᏱ ᎡᎯ ᎦᏙᎯ. ᎡᎳᏗᏢ.\nᏞᏍᏗ ᎡᎳᏗ ᏱᏂᎩᏯᏛᏁᎴᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏱᎩᏯᏓᏙᎵᏍᏓᏁᎴᏍᏗ: ᎠᏴᏰᏃ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎠᏆᏛᏳᎩᏍᏗᏳ ᎠᏆᏁᎳᏅᎯ, ᎠᏂᎦᏴᎵᎨ ᎤᏂᏍᏚᏅᏨᎢ ᏅᏓᏕᎵᏍᏙᏗᏍᎩ ᏗᏥᎩᎵᏲᎢᏍᏗᏍᎩ ᏧᏁᏥ ᎬᎩᏯᎦᎩ, ᏦᎢ, ᎠᎴ ᏅᎩ ᎢᏳᎾᏓᏁᏟᏴᏛ ᏩᏍᏗ;\nᏗᏥᏙᎵᎩᏃ ᎤᏣᏔᏅᎯ ᎢᏳᎾᏓᏁᏟᏴᏛ ᎬᎩᎨᏳᎯ ᎠᎴ ᎠᎩᏁᏍᏆᏂᎪᏗᏍᎩ.\nᏞᏇᏗ ᎠᏎᏉᏉ ᏱᏣᏁᎢᏍᏔᏁᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᏕᎤᏙᎥᎢ. ᎥᏝᏰᏃ ᏱᎰᏩ ᏄᏍᏕᏅᏨᎾ ᏴᎬᏰᎸᎾ ᎠᏎᏉ ᏕᏅᏙᎥ ᎧᏁᎱᏍᏗᏍᎩ.\nᏣᏅᏖᏍᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ ᎢᎦ, ᏣᎸᏉ ᏙᏗᏱ.\nᏑᏓᎵ ᎢᎦ ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ, ᎠᎴ ᏂᎦᏛ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎿᏛᏁᎮᏍᏗ:\nᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ ᎤᎾ ᏙᏓᏆᏍᎬᎢ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏤᎵᎦ: ᏞᏍᏗ ᎪᎱᏍᏗ ᏗᏣᎸᏫᏍᏓᏁᎸᎩ ᎾᎯᏳᎢ, ᏨᏒ, ᎠᎴ ᎠᏍᎦᏯ ᏤᏥ, ᎠᎴ ᎠᎨᏴ ᏤᏥ, ᎠᎴ ᎠᏍᎦᏯ ᎯᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎯᏅᏏᏓᏍᏗ, ᎠᎴ ᎦᎾᏝᎢ ᏣᏤᎵᎦ, ᎠᎴ ᎯᏁᎸ ᎡᏙᎯ:\nᏱᎰᏩᏰᏃ ᏑᏓᎵ ᎢᎦ ᏚᏱᎵᏙᎴ ᏚᏬᏢᏁ ᏚᎸᎶᎢ ᎠᎴ ᎡᎶᎯ, ᎠᎴ ᎠᎺᏉᎯ, ᎠᎴ ᏂᏚᏛ ᎾᎿ ᏣᏁᎭ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎤᏯᏪᏐᎴᎢ: ᎾᏍᎩ ᎢᏳᏍᏗ ᏱᎰᏩ ᎣᏍᏛ ᎤᏁᏤᎴ ᎤᎾ ᏙᏓᏆᏍᎬ ᎢᎦ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏄᏩᏁᎴᎢ.\nᎯᎸᏉᏕᏍᏗ ᏣᏙᏓ ᎠᎴ ᏣᏥ, ᎾᏍᎩ ᎪᎯᏗᏳ ᏣᎴᏂᏓᏍᏗᏱ ᎦᏙᎯ ᎾᏍᎩ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᏥᏣᏁᎭ.\nᏞᏍᏗ ᏣᏓᎸᎩ.\nᏞᏍᏗ ᏣᏓᏲᏁᎸᎩ.\nᏞᏍᏗ ᏣᏃᏍᎩᏒᎩ.\nᏞᏍᏗ ᎦᏰᎪᎩ ᏣᏃᎮᎸᎩ ᎯᏯᏡᏔᏅᎩ ᎾᎥ ᎢᏗᏍᏓᏓᎳ.\nᏞᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎦᏁᎸᎢ ᎯᏯᏚᎸᎡᎸᎩ, ᏞᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎤᏓᎵᎢ ᎯᏯᏚᎸᎡᎸᎩ, ᎠᎴ ᏞᏍᏗ ᎤᏅᏏᏓᏍᏗ ᎠᏍᎦᏯ, ᎠᎴ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ, ᎠᎴ ᎤᏤᎵ ᏩᎦ, ᎠᎴ ᎤᏤᎵ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎠᎴ ᏂᎦᎥ ᎪᎱᏍᏗ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎤᏤᎵᎦ.\nᏂᎦᏛᏃ ᏴᏫ ᎤᎾᏙᎴᎰᏒᎩ ᎤᏍᏆᏃᏴᎬᎢ, ᎠᎴ ᎠᏓᏪᎵᎩᏍᎬᎢ, ᎠᎴ ᎠᏤᎷᎩ ᎤᏃᏴᎬᎢ, ᎠᎴ ᎣᏓᎸ ᏚᎦᏒᏍᏛᎢ: ᎤᏂᎪᎲᏃ ᏴᏫ ᎤᎾᏓᏅᏒᎩ, ᎠᎴ Ꭸ ᎢᏴᏛ ᏓᏳᎾᎴᎿᏫᏍᏔᏅᎩ.\nᎠᎴ ᎯᎠ ᏄᏂᏪᏎᎸᎩ ᎼᏏ, ᏂᎯ ᏍᎩᏬᏁᏓ, ᏓᏲᏣᏛᏓᏍᏔᏂᏃ: ᎤᏁᎳᏅᎯᏍᎩᏂ ᏞᏍᏗ ᎣᎩᏬᏁᏔᏅᎩ, ᏱᏙᏥᏲᎢᎱᎯᏰᏃ.\nᎼᏏᏃ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ; ᏞᏍᏗ ᏱᏥᏍᎦᎢᎮᏍᏗ, ᎤᏁᎳᏅᎯᏰᏃ ᎢᏥᎪᎵᏰᎢᎸ, ᎠᎴ ᎤᎾᏰᎯᏍᏗ ᎨᏒ ᎤᏤᎵᎦ ᎢᎬᏱᏢ ᏕᏣᎧᏛ ᎢᏳᎵᏍᏔᏂᏓᏍᏗᏱ; ᎾᏍᎩᏃ ᎢᏥᏍᎦᏅᎢᏍᏗᏱ ᏂᎨᏒᎾ ᎢᏳᎵᏍᏙᏗᏱ.\nᏴᏫᏃ Ꭸ ᎢᏴᏛ ᏓᏳᎾᎴᎿᏫᏍᏛᎩ; ᎼᏏᏃ ᎾᎥ ᎤᎷᏨᎩ ᎤᎭᎨᏛ ᎤᎵᏏᎬ ᎾᎿ ᎤᏁᎳᏅᎯ ᎡᏙᎲᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ ᎢᏏᎵ ᏧᏪᏥ, ᎢᏥᎪᎲ ᎦᎸᎳᏗ ᎢᏴᏛ ᏗᏨᏬᏁᏔᏅᎢ.\nᎥᏞᏍᏗ ᎠᏕᎸ ᎤᏁᎬ ᏗᏦᏢᏙᏗ ᏱᎨᏎᏍᏗ ᎤᎾᏁᎳᏅᎯ, ᎠᎴ ᎥᏞᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏣᏓᏙᏢᎾᏁᏙᏗ ᏱᎨᏎᏍᏗ ᎤᎾᏁᎳᏅᎯ.\nᎠᏥᎸᎨᎳᏍᏗᏱ ᎦᏓ ᏍᎩᏲᏢᎾᏁᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᎿ ᎢᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗ, ᎠᎴ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏁᎯ ᎠᎵᏍᎪᎸᏙᏗ, ᎠᏫ ᏗᏣᏤᎵᎦ, ᎠᎴ ᏩᎦ ᏗᏣᏤᎵᎦ. ᏂᎦᎥᎢ ᎾᎿ ᎠᏅᏓᏗᏍᏗ ᏂᎬᏁᎮᏍᏗ ᏓᏆᏙᎥᎢ, ᎾᎿ ᎬᎷᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎣᏍᏛ ᎢᎬᏯᏛᏁᏗ ᎨᏎᏍᏗ.\nᎢᏳ ᎠᎴ ᏅᏯ ᎢᏍᎩᏲᏢᎾᏁᏓᏁᎸ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᏞᏍᏗ ᏗᏲᎪᎳᏅᎯ ᏅᏯ ᎢᏣᏁᏍᎨᏙᏗ ᏱᎨᏎᏍᏗ; ᎦᏅᏆᎶᏍᏗᏰᏃ ᎾᎿ ᎢᎯᏱᏗᎸᎭ ᎦᏓᎭ ᏅᏛᏁᎵ.\nᎥᏝ ᎠᎴ ᎠᎩᎳᏫᏍᏗᏱ ᏣᎩᎳᏫᏍᏗ ᎨᏎᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏆᏤᎵᎦ: ᏣᏲᏓᎬᏰᏃ ᎨᏒ ᏯᏂᎪᏩᏛ\nᎾᏍᎩᏃ ᎯᎠ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᎬᏂᎨᏒ ᎢᎩᏴᏁᏗ ᎨᏒᎢ.\nᎢᏳᏃ ᎠᎫᏏ ᎯᏅᏏᏓᏍᏗ ᎢᎯᏩᏒᎭ, ᏑᏓᎵ ᏧᏕᏘᏴᏛ ᎪᎱᏍᏗ ᎤᏛᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏃ ᎤᏕᏘᏴᏌᏗᏒ ᎾᏥᎾᏝᎥᎾ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎪᎱᏍᏗ ᏄᎫᏴᎲᎾ.\nᎢᏳᏃ ᎤᏩᏒᏉ ᎤᎷᏨᎯ ᏱᎩ, ᎤᏩᏒᏉ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᎤᏓᎵ ᏱᎩ, ᎿᏉ ᎤᏓᎵᎢ ᎤᏂᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎤᎾᏝᎢ ᏳᏪᎧᏁᎸ ᎤᏓᎵᎢ, ᎾᏍᎩᏃ ᏱᏚᎾᏄᎪᏫᏎᎸ ᏧᏪᏥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ;: ᎠᎨᏴ ᎠᎴ ᏧᏪᏥ ᎤᏓᎾᏝᎢ ᏧᏤᎵ ᎨᏎᏍᏗ, ᎤᏩᏒᏉᏃ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ.\nᎠᏥᎾᏝᎢᏃ ᎬᏂᎨᏒ ᎢᏳ ᎯᎠ ᏱᏄᏪᏒ, ᎠᎩᎾᏝᎢ ᏥᎨᏳᎠ, ᎠᏆᏓᎵᎢ, ᎠᎴ ᏗᏇᏥ; ᎥᏝ ᏅᎩᎾᏝᎥᎾ ᏴᎦᏥᏄᎪᎢ:\nᎿᏉ ᎾᏍᎩ ᎤᎾᏝᎢ ᎤᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏁᎳᏅᎯᏱ; ᎠᎴ ᎾᏍᏉ ᎦᎶᎯᏍᏗᏱ ᎠᎴ ᎦᎶᎯᏍᏗᏱ ᎦᏯᎸ ᎤᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ; ᎤᎾᏝᎢᏃ ᏴᎩ ᎬᏗ ᎤᏔᎴᏎᏗ ᎨᏎᏍᏗ ᎦᎴᏂ,; ᏂᎪᎯᎸᏃ ᎠᏥᎾᏢᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᎤᏪᏥ ᎠᎨᏴ ᏳᎾᏗᏅ, ᎠᏥᎾᏝᎢ ᎢᏳᎵᏍᏙᏗᏱ, ᎥᏝ ᎠᏂᏍᎦᏯ ᏗᎨᏥᎾᏝᎢ ᎠᏂᏄᎪᎬ ᎾᏍᎩᏯ ᎬᏩᏄᎪᎢᏍᏗ ᏱᎨᏎᏍᏗ.\nᎢᏳᏃ ᎣᏏᏳ ᏄᏰᎸᏒᎾ ᏱᎩ ᎤᎾᏝᎢ, ᎾᏍᎩ ᎤᏓᏴᏍᏗᏱ ᎤᏁᏨᎢ, ᎿᏉ ᎤᏁᎳᎩ ᎤᏪᎵᏍᏗ ᎨᏎᏍᏗ ᎠᎦᎫᏴᏗᏱ; ᏅᏩᎾᏓᎴᏍᎩᏂ ᏴᏫ ᎥᏝ ᏳᎮᏍᏗ ᏧᏪᎧᏁᏗᏱ, ᎤᎶᎾᏍᏔᏅᎢ ᎢᏳᏍᏗ.\nᎢᏳ ᎠᎴ ᎠᏍᎦᏯ ᎤᏪᏥ ᎤᏓᏴᏍᏗᏱ ᎤᏁᏨᎯ ᏱᎩ, ᎠᏂᎨᏴ ᎨᎦᏅᎩ ᎢᎨᎦᏛᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᎢᏳᏛᏁᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᏅᏩᏓᎴ ᎠᏓᏰᎨᏍᏗ, ᎤᎵᏍᏓᏴᏗ, ᏧᏄᏬᎢ, ᎠᎴ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᏛᏤᎲ, ᎥᏝ ᎤᎪᎳᏕᏗ ᏱᎨᏎᏍᏗ.\nᎢᏳᏃ ᎾᏍᎩ ᏦᎢ ᎢᏳᏓᎴᎩ ᏄᏛᏁᎸᎾ ᏱᎩ, ᎿᏉ ᎠᏎᏉ ᎤᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏄᎫᏴᏔᏅᎾ.\nᎩᎶ ᏴᏫ ᎢᎬᏂᎮᏍᏗ ᎾᏍᎩᏃ ᎠᏲᎢᏍᎨᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎠᏎ ᎾᏍᎩ ᏄᏛᏁᎸᎾ ᎢᎨᏎᏍᏗ, ᎤᏁᎳᏅᎯᏉᏍᎩᏂ ᏱᏚᏲᎯᏎᎸ; ᎿᏉ ᏓᎬᏯᏎᎮᎵ ᏭᎶᎯᏍᏗᏱ ᎤᎵᏘᏍᏗᏱ.\nᎢᏳᏍᎩᏂ ᎩᎶ ᎠᏎ ᎤᏚᎸᏛ ᎨᏒ ᏕᎦᎶᏄᎮᏛ ᏳᏩᏔᏅ ᎾᎥ ᎢᏧᎾᏓᎳ ᏳᎸ, ᎯᏯᎧᎲᏍᏗ ᎨᏎᏍᏗ ᎠᏆᏤᎵ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗᏱ.\nᎠᎴ ᎩᎶ ᎤᏙᏓ, ᎠᎴ ᎤᏥ ᎢᎬᏂᎮᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎩᎶᎢ ᎠᏍᎦᏯ ᎢᎦᏃᏍᎩᏍᎨᏍᏗ, ᎠᎴ ᎢᎦᎾᏕᎨᏍᏗ, ᎠᎴ ᎤᏪᎧᎲᏉ ᎠᏥᏩᏛᎡᎮᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎩᎶᎢ ᎤᏙᏓ ᎠᎴ ᎣᏥ ᏓᏍᎩᏅᏗᏍᎨᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎢᏳ ᎠᎴ ᎠᏂᏍᎦᏯ ᎠᎾᎵᎲᎢ ᎠᏏᏴᏫ ᏐᎢ ᏅᏯ ᏳᏩᏂᏍᏔᏅ, ᎠᎴ ᎠᏍᏈᏅᏉ ᏳᏩᏔᏅ, ᏄᏲᏴᏒᎾᏃ ᏱᎩ, ᏳᏂᏏᏅᏉᏍᎩᏂ;\nᎢᏳᏃ ᏳᏗᏛᎲ, ᎠᎴ ᏙᏱ ᎤᏪᏙᎸ ᏳᏙᎳᏅᏂᏙᎸ, ᎿᏉ ᎾᏍᎩ ᎤᏩᏂᎸᎯ ᎤᏚᏓᎴᏛ ᎨᏎᏍᏗ; ᎤᎫᏴᎡᏗᏍᎩᏂᏃᏅ ᎨᏎᏍᏗ ᎢᎪᎯᏛ ᎤᏲᎱᏎᎸᎢ, ᎠᎴ ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗ ᎨᏎᏍᏗ ᎣᏍᏛ ᎠᏥᏅᏬᏗᏱ.\nᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᎦᎾᏍᏓ ᏳᏩᏂᏍᏔᏅ ᎠᏍᎦᏯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎾᎯᏳᏉ ᏳᏲᎱᏒ, ᎠᏎ ᎠᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ.\nᎢᏳᏍᎩᏂᏃᏅ ᏔᎵᎭ ᏧᏒᎯᏛ ᏱᎬᏅ, ᎥᏝ ᎠᏥᏍᏛᏗᏍᏙᏗ ᏱᎨᏎᏍᏗ; ᎠᏕᎸᏰᏃ ᏧᏤᎵ ᎾᏍᎩ.\nᎢᏳᏃ ᎠᏂᏍᎦᏯ ᏳᎾᎵᎸ, ᎠᎴ ᎪᎱᏍᏗ ᏳᏅᏁᎸ ᎠᎨᏴ ᎦᏁᎵᏛ, ᎾᏍᎩᏃ ᎦᏁᎵᏒ ᏳᏲᎱᏎᎸ; ᎪᎱᏍᏗᏃ ᎤᏐᏅ ᏫᏄᎵᏰᎢᎶᎸᎾ ᏱᎩ; ᎠᏎ ᎤᎫᏴᏗ ᎨᏎᏍᏗ, ᎯᎠᏉ ᎢᎦᎢ ᏳᏛᏅ ᎠᎨᏴ ᎤᏰᎯ; ᎠᎴ ᎤᎫᏴᏗ ᎨᏎᏍᏗ ᏗᏄᎪᏗᏍᎩᏱ.\nᎢᏳᏃ ᎪᎱᏍᏗ ᎤᏐᏅ ᏫᏳᎵᏰᎢᎶᎸ, ᎿᏉ ᎾᏍᎩ ᎬᏅᎢ ᎬᏅ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ.\nᎠᎦᏔ, ᎠᎦᏔ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎧᏳᎦ, ᎧᏳᎦ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎤᏬᏰᏂᏃ ᎤᏬᏰᏂ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎤᎳᏏᏕᏂᏃ ᎤᎳᏏᏕᏂ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ,\nᎤᎴᏴᏒᏃ ᎤᎴᏴᏒ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎠᏥᏐᏅᏅ ᎠᏥᏐᏅᏅ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎠᏥᎵᎥᏂᎸ, ᎠᏥᎵᎥᏂᎸ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎤᏅᏏᏓᏍᏗ ᎠᏍᎦᏯ ᎠᎦᏙᎵ ᎢᎬᏂᎮᏍᏗ, ᎠᎴ ᎤᏅᏏᏓᏍᏗ ᎠᎨᏴ ᎠᎦᏙᎵ ᎢᎬᏂᎮᏍᏗ, ᎾᏍᎩᏃ ᎠᏲᎨᏍᏗ; ᎾᏍᎩ ᎤᏪᎪᏗ ᎨᏎᏍᏗ ᎠᎦᏙᎵ ᎠᎫᏱᏍᎨᏍᏗ.\nᎢᏳ ᎠᎴ ᎠᏍᎦᏯ ᎤᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎤᏅᏏᏓᏍᏗ ᏳᏄᏕᏍᏔᏅ; ᎤᏪᎪᏗ ᎨᏎᏍᏗ ᎦᏄᏙᎬ ᎠᎫᏱᏍᎨᏍᏗ.\nᎢᏳᏃ ᏩᎦ ᏱᏚᏪᏘᎸ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ, ᎾᏍᎩᏃ ᏳᏲᎱᏒ; ᎿᏉ ᎾᏍᎩ ᏩᎦ ᎠᏎ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ, ᎤᏫᏯᏃ ᎥᏝ ᎠᎩᏍᏗ ᏱᎨᏎᏍᏗ; ᎤᎾᏝᎢᏃ ᏩᎦ ᎤᏚᏓᎴᏛ ᎨᏎᏍᏗ.\nᎢᏳᏍᎩᏂ ᏩᎦ ᏗᎬᏩᏓᏘᏍᏗ ᏱᎩ ᏧᏩᎫᏔᏅᏒᎢ, ᎠᎴ ᎠᏥᏃᏁᎸᎯ ᏱᎩ ᎤᎾᏲᎢ, ᎠᎴ ᎤᎬᏔᏅᎯᏉ ᏂᎨᏒᎾ ᏱᎩ, ᎠᏍᎦᏯᏃ ᎠᎴ ᎠᎨᏴ ᎤᎸᎯ ᏱᎩ: ᏩᎦ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎾᏝᎢ ᎾᏍᏉ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎠᎫᏴᏙᏗ ᏳᎾᏎᎸ, ᎿᏉ ᎤᎫᏴᏗ ᎨᏎᏍᏗ ᎢᎦᎢ ᎤᎾᏎᎸ ᎬᏅ ᎫᏓᎴᏍᎬᎢ.\nᎾᏍᏉ ᎩᎶ ᎤᏪᏥ ᎠᏧᏣ ᎠᎴ ᎠᎮᏳᏣ ᏧᏪᏘᎸᎯ ᏱᎩ, ᎾᏍᎩᏯ ᎯᎠ ᏚᏚᎪᏔᏅ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᏩᎦ ᏱᏚᏪᏘᎸ ᎠᏍᎦᏯ ᎠᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎠᎨᏴ ᎠᏥᏅᏏᏓᏍᏗ; ᎿᏉ ᏦᎠᏍᎪᎯ ᎠᏰᎵᎠᏕᎸ ᏧᏁᏗ ᎨᏎᏍᏗ ᎤᎾᏝᎢ, ᏩᎦᏃ ᏅᏯ ᏣᎬᏂᏍᏙᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᏳᏍᏚᎢᏒ ᎠᏔᎴᏒᎢ, ᎢᏳ ᎠᎴ ᎩᎶ ᏳᏍᎪᏒ ᎠᏔᎴᏒᎢ, ᏄᏭᏢᏅᎾᏃ ᏱᎩ, ᏩᎦᏃ ᎠᎴ ᏐᏈᎵ ᏗᎦᎵᎠᏅᎯᏛ ᏳᏂᎸᏨ ᎾᎿᏂ;\nᎾᏍᎩ ᎠᏔᎴᏒ ᎤᏤᎵᎦ ᎤᎫᏴᏗ ᎨᏎᏍᏗ, ᎠᏕᎸ ᏧᏁᏗ ᎨᏎᏍᏗ ᎤᎾᏝᎢ: ᎤᎵᏬᏨᎯᏃ ᎤᏤᎵ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎤᏤᎵ ᏩᎦ, ᏅᏩᏓᎴ ᎤᏤᎵ ᏩᎦ ᏱᏚᏪᏘᎸ, ᏳᎵᏬᏨᏃ, ᎿᏉ ᎬᏃᏛ ᏩᎦ ᎤᏂᎾᏗᏅᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎬᏩᎳᏅᎯ ᎠᏕᎸ ᏔᎵ ᎢᏳᏂᏗᏍᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᎵᏬᏨᎯ ᏩᎦ ᎾᏍᏉ ᏔᎵ ᎢᏳᏂᏗᏍᏗ ᎨᏎᏍᏗ.\nᎢᏳᏍᎩᏂ ᏳᎾᏅᏔ ᏗᎬᏩᏓᏘᏍᏗ ᎨᏒ ᏩᎦ ᏧᏩᎫᏔᏅᏒᎢ, ᎠᎴ ᎤᎾᏝᎢ ᏄᏴᏔᏅᎾ ᏱᎩ; ᎠᏎ ᏩᎦ ᎤᎫᏴᏙᏗ ᎨᏎᏍᏗ ᏩᎦ, ᎤᎵᏬᏨᎯᏃ ᎤᏤᎵ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎠᎴ ᎠᏫ ᏳᏃᏍᎩᏒ, ᎠᎴ ᏳᎸ, ᎠᎴ ᏳᎾᏗᏅ; ᎯᏍᎩ ᏩᎦ ᏧᏪᎪᏗ ᎨᏎᏍᏗ ᏌᏉ ᏩᎦ ᎠᎫᏱᏍᎬᎢ: ᎠᎴ ᏅᎩ ᎠᏫ ᏧᏪᏎᏗ ᎨᏎᏍᏗ ᏌᏉ ᎠᏫ ᎠᎫᏱᏍᎬᎢ.\nᎢᏳᏃ ᎦᏃᏍᎩᏍᎩ ᏯᏥᏩᏛᏔᏅ ᎠᏓᏴᏎᎲᎢ, ᏍᎬᏂᎸᏃ ᎠᎴ ᏳᏲᎱᏒ, ᎥᏝ ᎩᎬ [ᎠᏨᏗ ᏱᎨᏎᏍᏗ] ᎾᏍᎩ ᎠᏥᏍᏛᏗᏍᏗᏍᎬᎢ.\nᎢᏳᏍᎩᏂ ᏴᏧᎧᎸᏨ, ᎩᎳ ᎾᏍᎩ ᏱᎾᎬᏁᎸ, ᎩᎬ [ᎠᏨᏗ ᎨᏎᏍᏗ] ᎾᏍᎩ ᎠᏥᏍᏛᏗᏍᏗᏍᎬᎢ: ᎠᎧᎵᎢᏰᏃ ᎤᎫᏴᎰᎲᏍᏗ ᏱᎩ; ᎢᏳᏃ ᎪᎱᏍᏗ ᏄᎲᎾ ᏱᎩ, ᎿᏉ ᎠᏥᎾᏗᏅᏗ ᎨᏎᏍᏗ ᎤᏍᏛᏗᏍᎬ ᎤᏃᏍᎩᏒᎢ.\nᎢᏳᏃ ᎪᎱᏍᏗ ᎤᏃᏍᎩᏛ ᎤᏙᎯᏳ ᎯᏯ ᏳᏂᏩᏛᎲ ᎤᏪᎧᎲᎢ ᎬᏃᏛ, ᏩᎦ, ᎠᎴ ᏗᎦᎵᎠᏅᎯᏛ ᏐᏈᎵ, ᎠᎴ ᎠᏫ ᏱᎾᎩ, ᎿᏉ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᎫᏴᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᏱᏄᏩᏂᏌᏅ ᏠᎨᏏ ᎠᎴ ᏖᎸᎳᏗ ᏓᏫᏒ ᎦᎾᏝᎢ ᎤᎾᎵᏍᏓᏴᏗᏱ, ᎠᎴ ᏳᏴᏔᏅ ᎤᏤᎵ ᎦᎾᏝᎢ, ᎾᏍᎩ ᎤᎵᏍᏓᏴᏗᏱ ᎤᏩᏓᎴ ᎤᎶᎨᏒᎢ; ᎣᏌᏂ ᎤᏩᏒ ᎤᎶᎨᏒ ᎠᎩᏛ, ᎠᎴ ᎣᏌᏂ ᎤᏩᏒ ᏖᎸᎳᏗ ᏚᏫᏒ ᎠᎩᏛ ᎤᎫᏴᏙᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᏳᎵᏨ, ᎠᎴ ᏥᏍᏚᏂᎩᏍᏗᏱ ᏳᏥᏠᏨ, ᎾᏍᎩᏃ ᎤᏣᎴᏍᏗ ᏕᎦᎧᎲ, ᎠᎴ ᎤᏰᎬᏉ, ᎠᎴ ᏠᎨᏏ ᏳᎪᏅ; ᎿᏉ ᎾᏍᎩ ᎤᎴᎾᏅᎯ ᎠᏎ ᎤᎫᏴᎰᎲᏍᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎾᎥ ᎢᏧᎾᏓᎳ ᎠᏕᎸ ᎠᎴ ᎪᎱᏍᏗᏉ ᏳᎨᏅᏛ, ᎾᏍᎩᏃ ᎾᎿ ᎦᏁᎸ ᏯᏥᏃᏍᎩᏒ; ᎢᏳᏃ ᎦᏃᏍᎩᏍᎩ ᏯᏥᏩᏛᎲ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᎫᏴᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎦᏃᏍᎩᏍᎩ ᎾᏥᏩᏛᎲᎾ ᏱᎩ, ᎿᏉ ᎾᏍᎩ ᎦᏁᎳ ᎤᏁᎳᏅᎯᏱ ᎠᎦᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ, ᎬᏂᎨᏒ ᎢᏳᏩᏁᏗᏱ ᎪᎱᏍᏗ ᏄᏩᏁᎸᎾ ᎨᏒ ᏧᎬᏩᎶᏗ ᎾᎥ ᎢᏧᎾᏓᎳ ᎤᏤᎵᎦ.\nᏄᏓᎴᏒᏰᏃ ᏗᏓᏍᎦᏅᏤᏗ ᎨᏒᎢ, ᎢᏳ ᎾᏍᏉ ᏩᎦ ᏱᎩ, ᎠᎴ ᏐᏈᎵ ᏗᎦᎵᎠᏅᎯᏛ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏗᏄᏬ, ᎠᎴ ᏄᏓᎴᏒᏉ ᎤᏓᏲᎱᏎᎯ; ᎾᏍᎩ ᎩᎶ ᎠᏆᏤᎵᎦ ᏯᏗᎭ, ᎾᏍᎩ ᎠᎾᏗᏒᎯᎲ ᎤᏁᎳᏅᎯ ᎤᏂᏲᎮᏗ ᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯᏃ ᎾᏍᎩ ᎤᏍᎦᏅᏨᎯ ᏱᏚᏭᎪᏔᏅ, ᎾᏍᎩ ᏔᎵ ᎢᏳᏩᎫᏗ ᎤᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎾᎥ ᎢᏧᎾᏓᎳ.\nᎢᏳᏃ ᎩᎶ ᎾᎥ ᎢᏧᎾᏓᎳ ᏐᏈᎵ ᏗᎦᎵᎠᏅᎯᏛ, ᎠᎴ ᏩᎦ, ᎠᎴ ᎠᏫ, ᎠᎴ ᏂᎦᎥᏉ ᎦᎾᏝᎢ ᏳᎨᏅᏛ; ᎾᏍᎩᏃ ᏳᎵᏬᏨ, ᎠᎴ ᏯᏥᎸ, ᎠᎴ ᏯᎦᏗᏝᎥᏔᏅ, ᎩᎶᏃ ᏄᎪᎲᎾ ᏱᎩ;\nᎿᏉ ᎾᏍᎩ ᎠᏎᎵᏙᏗ ᎨᏒ ᏱᎰᏩ ᎤᏤᎵᎦ ᎤᏅᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎪᎱᏍᏗ ᏄᏩᏁᎸᎾ ᎨᏒ ᏧᎬᏩᎶᏗ ᎾᎥ ᎢᏧᎾᏓᎳ ᎤᏤᎵᎦ, ᏧᎬᏩᎶᏗᏃ ᎤᏤᎵᎦ ᏧᏓᏂᎸᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏎᎵᏔᏅᎢ, ᎾᏍᎩᏃ ᏐᎢ ᎥᏝ ᎤᎫᏴᏗᏱ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᏯᏥᏃᏍᎩᎡᎸ ᎤᎫᏴᎡᏗ ᎨᏎᏍᏗ ᎤᎾᏝᎢ ᎾᏍᎩ.\nᎢᏳᏃ ᏯᏥᏓᎦᎸᎢᏒ, ᎿᏉ ᎤᏃᎯᏍᏗ ᎨᏎᏍᏗ ᎧᏃᎲᏍᎩ ᎢᏳᎵᏍᏙᏗ, ᎾᏍᎩᏃ ᎥᏝ ᎤᎫᏴᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏥᏓᎦᎸᎢᏒᎯ.\nᎢᏳ ᎠᎴ ᎩᎶ ᎪᎱᏍᏗ ᏳᏙᎸᎡᎸ ᎾᎥ ᎢᏳᎾᏓᎳ, ᏯᏥᎸᏃ, ᎠᎴ ᏳᎵᏬᏨ, ᎤᎾᏝᎢᏃ ᎤᎦᏔᎲᎾ ᏱᎩ, ᎠᏎ ᎤᎩᏴᏗ ᎨᏎᏍᏗ.\nᎢᏳᏍᎩᏂ ᎤᎾᏝᎢ ᏯᎦᏔᎭ, ᎥᏝ ᎤᎫᏴᏗ ᏱᎨᏎᏍᏗ; ᎢᏳᏃ ᎤᎫᏴᏗ ᏱᎩ ᎤᏙᎳᏒᎢ, ᎤᏙᎳᏒᏉ ᎤᎫᏴᏗ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎩᎶ ᎠᏍᎦᏯ ᏳᏂᎳᏕᎸ ᎠᏛ ᎩᎶ ᏂᏚᎾᏓᏁᎸᎾ ᏧᎾᏨᏍᏗᏱ, ᎠᎴ ᏱᏚᎾᏄᏏᏅ, ᎿᏉ ᎠᏎ ᎤᏩᎯᏍᏗ ᎨᏎᏍᏗ ᎤᏓᎵᎢ ᎢᏳᎵᏍᏙᏗᏱ.\nᎢᏳᏃ ᎤᏙᏓ ᎤᎵᏂᎩᏛ ᏳᎨᏳᎲᏍᎦ ᎤᏪᎧᏁᏗᏱ, ᎤᎫᏴᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᎢᎦᎢ ᎨᎦᎫᏴᏗ ᎨᏒ ᎠᎾᏛ.\nᏞᏍᏗ ᎤᏁᎳᎩ ᎬᏁᏍᏗ ᏤᎵᏍᏗ ᏱᎨᏎᏍᏗ ᎠᎨᏴ ᎠᏙᏂᏍᎩ.\nᎩᎶ ᎦᎾᏝᎢ ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ, ᎠᏎ ᎤᏲᎱᎯᏍᏗ ᎨᏎᏍᏗ.\nᎩᎶ ᏅᏩᏓᎴ ᎤᏁᎳᏅᎯ ᎠᏥᎸ ᎢᎨᎴᎮᏍᏗ, ᏱᎰᏩᏉ ᎤᏩᏒ, ᎾᏍᎩ ᎠᏎ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ.\nᏞᏍᏗ ᏱᏯᏕᏯᏙᏗᏍᎨᏍᏗ ᎠᎴ ᎠᎩᎵᏯ ᏱᏂᏴᎾᏕᎨᏍᏗ ᎡᏙᎯ; ᏂᎯᏰᏃ ᎢᏤᏙᎯᏉ ᎨᏒᎩ ᎢᏥᏡᏱ.\nᏞᏍᏗ ᎠᎩᎵᏯ ᏱᏁᏨᎾᏕᎨᏍᏗ ᎩᎶ ᎤᏬᏑᎶᏨᎯ, ᎠᎴ ᎤᏓᏂᏯᏛ.\nᎢᏳᏃ ᎢᎯᎩᎵᏲᎢᏍᏔᏅᎭ ᏂᎦᎥᏉ ᎢᎦᎯᏴᏁᏗ ᎨᏒᎢ, ᎠᏴᏃ ᎠᏆᎵᏍᏓᏁᎸᎭ, ᎠᏎ ᏥᏯᏛᎦᏁᏗ ᎨᏎᏍᏗ ᎤᎵᏍᏛᎢ:\nᎠᎩᏔᎳᏬᏍᎬᏃ ᎤᏗᎴᎲᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏨᎢᏍᏗ ᎨᏎᏍᏗ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ: ᏗᏣᏓᎵᎢᏃ ᏧᏃᏑᎶᏨᎯ ᎨᏎᏍᏗ, ᏗᏤᏥᏃ ᎤᎾᏓᏂᏯᏛ.\nᎢᏳᏃ ᎠᏕᎸ ᏕᎯᏯᏙᎳᏍᏗᏍᎨᏍᏗ ᎩᎶ ᏗᏆᏤᎵ ᎨᏒ ᏴᏫ ᎾᎥ ᎢᏣᏓᎳ, ᎤᏲ ᎢᏳᏛᎿᏕᎩ, ᎥᏞᏍᏗ ᎧᏁᏉᎩ ᎠᏕᎸ ᏗᏓᏙᎳᏍᏗᏍᎩ ᏥᎩ ᎢᏣᏍᏗ ᏱᎨᏎᏍᏗ, ᎥᏞᏍᏗ ᎧᏁᏉᎩ ᎤᎫᏴᏗ ᎢᎯᏴᏁᏗ ᏱᎨᏎᏍᏗ.\nᎢᏳᏃ ᎾᎥ ᎢᏗᏍᏓᏓᎳ ᎤᏄᏬ ᏱᏣᎦᏘᏗᏍᏓᏁᎸ, ᎠᏎ ᏅᏙᏉ ᏭᏕᎵᎨᏍᏗ ᎯᏅᏁᏗ ᎢᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎤᏩᏒᎯᏳ ᎤᏄᏬᏍᏗ; : ᎤᏁᎦᎸ ᎤᏄᏬᏍᏗ; ᎦᏙ ᏛᏚᏢᏔᏂ ᎦᎸᏅᎭ? ᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᎾᏍᎩ ᎠᏆᎵᏍᏓᏁᎸ ᏓᎦᏛᎦᏂ;ᎠᏆᏓᏙᎵᏣᏘᏨᏰᏃ.\nᎥᏞᏍᏗ ᏱᏐᏢᏍᏗᏍᎨᏍᏗ ᎤᏁᎳᏅᎯ, ᎠᎴ ᏞᏍᏗ ᎯᏍᎩᏅᏛᎩ ᏄᎬᏫᏳᏌᏕᎩ ᏗᏣᏤᎵ ᏴᏫ ᎤᎾᏤᎵᎦ.\nᎥᏞᏍᏗ ᏣᏙᎯᏗᏍᏗ ᏱᎨᏎᏍᏗ ᏣᎵᏍᎪᎸᏙᏗᏱ ᎢᎬᏱ ᏨᏂᏎᎸᎯ ᏣᏛᎯᏎᎸᏅᎢ, ᎠᎴ ᏣᏤᎵ ᎦᏨᏩᏍᏔᏅᎯ ᎨᏒᎢ; ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᎨᏒ ᎢᎬᏱ ᎡᎯ ᏍᎩᎧᏁᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏛᏁᏗ ᎨᏎᏍᏗ ᏩᎦ, ᎠᎴ ᎠᏫ, ᎦᎵᏉᎩ ᎢᎦ ᎤᏥ ᎤᏍᏓᏩᏗᏓᏍᏗ ᎨᏎᏍᏗ; ᏧᏁᎵᏁᏃ ᎢᎦ ᏍᎩᎧᏁᏗ ᎨᏎᏍᏗ.\nᎢᏣᏓᏓᎴᎢ ᏗᏆᏤᎵ ᎢᏥᏍᎦᏯ ᎨᏎᏍᏗ; ᎥᏝ ᎢᏥᎩᏍᏗ ᏱᎨᏎᏍᏗ ᎤᏫᏯ ᎪᎱᏍᏗ ᎤᏂᎸᎯ ᎢᎾᎨᎢ; ᎩᎵ ᏗᏣᏗᏁᏗ ᎨᏎᏍᏗ.\nᏞᏍᏗ ᎦᏰᎪᎩ ᎧᏃᎮᏛ ᏣᏃᎮᎸᎩ; ᏞᏍᏗ ᎠᏍᎦᎾ ᎯᏯᎵᎪᏁᎸᎩ, ᏂᏚᏳᎪᏛᎾ ᎯᏃᎮᏍᎩ ᎢᏣᎵᏍᏙᏗᏱ.\nᏞᏍᏗ ᎤᏂᏣᏘ ᏘᏍᏓᏩᏛᏒᎩ ᎤᏲ ᏗᏣᎸᏫᏍᏓᏁᏗᏱ; ᏞᏍᏗ ᎠᎴ ᎯᏬᏂᏍᎬ ᏣᎪᎸᏒᎩ ᏘᏍᏓᏩᏛᏒᎩ ᎤᏂᏣᏘ ᏗᎫᎪᏙᏗᏱ ᎯᏲᏍᏙᏗᏍᎬᎢ.\nᏞᏍᏗ ᎠᎴ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎠᏍᎦᏯ ᎯᎸᏉᏔᏅᎩ ᏄᏍᏛ ᎠᏓᏰᎢᎵ ᏙᎲᎢ.\nᎢᏳᏃ ᏣᏍᎦᎩ ᎤᏤᎵ ᏩᎦ ᎠᎴ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᎤᎵᏘᏏᏗᏒ ᏱᏗᏯᏠᏒ, ᎠᏎ ᎯᏯᏘᏃᎮᏗ ᎢᎨᏎᏍᏗ.\nᎢᏳᏃ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᏣᏍᎦᎩ ᎤᏤᎵᎦ ᏱᎪᎥ ᏱᎦᏅ ᎬᏩᎵᏐᏈᎵ, ᎠᎴ ᏂᏣᏚᎵᏍᎬᎾ ᏱᎩ ᎯᏍᏕᎸᏗᏱ; ᎠᏎ ᎯᏍᏕᎸᏗ ᎨᏎᏍᏗ.\nᎥᏞᏍᏗ ᎯᎪᎸᎡᏗ ᏱᎨᏎᏍᏗ ᏓᎫᎪᏓᏁᎲ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᏣᏤᎵᎦ, ᎾᏍᎩ ᏓᎵᏰᎢᎵ ᏙᎲᎢ.\nᎢᏅᎯᏳ ᏂᏣᏛᎿᏕᎨᏍᏗ . ᎪᎱᏍᏗ ᎦᏰᎪᎩ ᎠᎵᏰᎢᎵᏙᎲᎢᎶᏫ ᏄᏍᎦᏅᏨᎾᏃ ᎠᎴ ᎤᏓᏅᏘ ᏞᏍᏗ ᏗᏥᎸᎩ; ᎥᏝᏰᏃ ᏴᎦᏥᏳᏓᎳᎩ ᎤᏍᎦᏅᏨᎯ.\nᎥᏝ ᎠᎴ ᏗᏣᏓᏂᎸᎢᏍᏗ ᏱᎨᏎᏍᏗ ᎪᎱᏍᏗ ᎡᏣᏁᎲᎢ; ᎠᏓᏁᏗᏰᏃ ᏚᏂᎨᏫᏗᎭ ᎠᏂᎪᏩᏘᏍᎩ, ᎠᎴ ᏓᎴᎾᏍᏗ ᎠᏂᏟᏂᏩᎬ ᏚᏳᎪᏛ ᎢᏯᎾᏛᏁᎯ.\nᎠᎴ ᎾᏍᏉ ᎡᏙᎯ ᏞᏍᏗ ᎠᏍᏓᏯ ᏱᏁᏨᎾᏕᎨᏍᏗ; ᎢᏥᎦᏔᎭᏰᏃ ᏄᏍᏛ ᎤᏓᏅᏛ ᎡᏙᎯ, ᎢᏤᏙᎯᏰᏃ ᎾᏍᏉ ᎨᏒᎩ ᎢᏥᏈᏱ.\nᎠᎴ ᏑᏓᎵ ᏧᏕᏘᏴᏛ ᎢᏥᏫᏒᏗ ᎨᏎᏍᏗ ᏕᏥᎶᎨᏒᎢ, ᎠᎴ ᎢᏥᏟᏐᏗ ᎨᏎᏍᏗ ᎢᏣᏛᎯᏎᎸᎢ.\nᎦᎵᏉᎩᏁᏍᎩᏂ ᎤᏕᏘᏴᏌᏗᏒ ᎤᏯᏪᏐᎸᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏙᏉ ᏄᏍᏕᏍᏗ; ᎾᏍᎩ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏗᏣᏤᎵ ᏴᏫ ᎬᏩᎾᎵᏍᏓᏴᏗ ᏱᎩ; ᎾᏍᎩᏃ ᎤᏂᏃᎯᏴᎯ ᏠᎨᏏ ᎠᏁᎯ ᎦᎾᏝᎢ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ. ᎾᏍᎩᏯ ᎾᏍᏉ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ ᏖᎸᎳᏗ ᏕᏣᏫᏒᎢ, ᎠᎴ ᎣᎵᏩ ᏕᏣᏫᏒᎢ.\nᏑᏓᎵ ᎢᎦ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏣᏛᏁᏗ ᎨᏒᎢ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᏣᏣᏪᏐᎸᏍᏙᏗ ᎨᏎᏍᏗ; ᎾᏍᎩ ᏩᎦ ᏣᏤᎵᎦ ᎠᎴ ᏐᏈᎵ-ᏗᎦᎵᎠᏅᎯᏛ ᏯᎾᏣᏪᏐᎸᏍᏓ, ᎠᎴ ᎠᎨᏴ ᎯᏅᏏᏓᏍᏗ ᎤᏪᏥ ᎠᎴ ᎡᏙᎯ Ꮩ ᏯᏁᏛ.\nᎠᎴ ᏂᎦᏛ ᏧᏓᎴᏅᏛ ᎯᎠ ᏥᏂᏨᏪᏏ, ᎢᏣᏓᏯᏫᏍᎨᏍᏗ; ᎠᎴ ᏞᏍᏗ ᏱᏗᏥᏯᏅᎮᏍᏗ ᏚᎾᏙᎥ ᏅᏩᎾᏓᎴ ᎤᎾᏁᎳᏅᎯ, ᎠᎴ ᏞᏍᏗ ᎢᏥᎰᎵ ᎢᏥᏁᎬ ᏰᏣᏛᎦᏁᎴᏍᏗ.\nᏑᏕᏘᏴᏛ ᎨᏒ ᏦᎢ ᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎨᏒᎢ.\nᎢᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗ ᎨᏒᎢ (ᎾᎪᏔᏅᎯ ᎦᏚ ᎦᎵᏉᎩ ᎢᎦ ᎢᏥᎩᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏂᏨᏪᏎᎸᎢ, ᎾᎯᏳ ᎠᏎᎸᎯ ᎨᏒ ᎡᏈᏈ ᎧᎸᎢ; ᎾᎯᏳᏰᏃ ᏓᏣᏄᎪᏨᎩ ᎢᏥᏡᏱ; ᏞᏍᏗ ᎠᎴ ᎩᎶ ᎠᏒᎭ ᎢᎬᏱᏗᏢ ᏯᎩᎷᏤᎴᏍᏗ;)\nᎠᎴ ᎠᏍᎫᏕᏍᏗᏱ ᎨᏒ ᏗᎵᏍᏓᏴᏗᏱ, ᎢᎬᏱ ᏣᎾᏄᎪᏤᎸᎯ ᏕᏣᎸᏫᏍᏓᏁᎸᎢ, ᎾᏍᎩ ᏣᏫᏒᏅ ᏠᎨᏏ; ᎠᎴ ᏗᎵᏍᏓᏴᏗᏱ ᎾᎯᏳ ᎦᏟᏐᏗ ᎨᏒᎢ, ᎤᏕᏗᏴᏌᏗᏒ ᎦᎶᏐᎲᏍᎬᎢ, ᎾᎯᏳ ᎯᏟᏏᏍᎬ ᏕᏣᎸᏫᏍᏓᏁᎸ ᏠᎨᏏ ᏘᏴᏍᏗᏍᎨᏍᏗ.\nᏑᏕᏘᏴᏛ ᎨᏒ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏗᏣᏤᎵᎦ ᏦᎢ ᎢᏳᏂᎷᏤᏗ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᎤᎬᏫᏳᎯ ᏱᎰᏩ.\nᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎤᎩᎬ ᎢᏣᎵᏍᎪᎸᏗᏍᎬ ᏞᏍᏗ ᎪᎱᏍᏗ ᎠᎪᏔᏅᎯ ᎢᏣᏠᏯᏍᏙᏗ ᏱᎨᏎᏍᏗ; ᏞᏍᏗ ᎠᎴ ᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎤᎪᎢ ᎠᎯᏯᏍᏗ ᏱᎨᏎᏍᏗ ᏑᎾᎴ ᎢᏴᏛ.\nᎢᎬᏱ ᎤᎦᏛᎾᏨᎯ ᎦᏙᎯ ᏣᎾᏄᎪᏫᏎᎸᎯ ᏣᏲᎯᏍᏗ ᎨᏎᏍᏗ ᎠᏓᏁᎸ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏤᎵᎦ. ᎥᏞᏍᏗ ᎠᎭᏄᎸᎯ ᎠᎩᎾ [ᎤᏫᏯ] ᎤᏥ ᎤᏅᏗᏱ ᏧᏅᎩ.\nᎬᏂᏳᏉ, ᏥᏅᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ, ᏣᏍᏆᏂᎪᏙᏗᏱ ᏫᎦᏛᎢ, ᎠᎴ ᏫᏣᏘᏃᎯᏍᏗᏱ ᎾᎿ ᎠᏆᏛᏅᎢᏍᏔᏅᎢ.\nᎡᏣᎦᏌᏯᏍᏕᏍᏗ ᎾᏍᎩ, ᎠᎴ ᎢᏣᏛᏓᏍᏗᏍᎨᏍᏗ ᎧᏁᎬᎢ, ᏞᏍᏗ ᎡᏥᎾᎸᏍᏔᏅᎩ; ᎥᏝᏰᏃ ᏴᎨᏥᎲᏏ ᎢᏥᏍᎦᏅᏨᎢ; ᏓᏆᏙᎥᏰᏃ ᎤᏯᎠ.\nᎢᏳᏃ ᎤᏙᎯᏳᎯ ᎢᏣᏛᏓᏍᏗᏍᎨᏍᏗ ᎧᏁᎬᎢ, ᎠᎴ ᏂᎦᏛ ᏂᏥᏪᏍᎬ ᏂᏣᏛᏁᎮᏍᏗ, ᎿᏉ ᎦᏥᏍᎦᎩ ᎨᏎᏍᏗ ᎨᏣᏍᎦᎩ, ᎠᎴ ᎦᏥᏯᏈᏗᏍᎩ ᎨᏎᏍᏗ ᎨᏣᏡᏗᏍᎩ.\nᎠᏆᏤᎵᏰᏃ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱ ᏓᏤᏅᎡᎵ, ᎠᎴ ᏮᏓᏣᏘᏃᎵ ᎠᏁᎲ ᎠᏂᎡᎼᏂ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏁᏇᎵᏥ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ, ᎠᎴ ᏓᎦᏥᏛᏔᏂ.\nᎥᏞᏍᏗ ᎡᎳᏗ ᎢᏔᏛᏁᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ, ᎠᎴ ᏞᏍᏗ ᏱᏔᏓᏙᎵᏍᏓᏁᎴᏍᏗ, ᎠᎴ ᎾᎾᏛᏁᎲ ᏞᏍᏗ. ᎾᏍᎩ ᏱᏂᏣᏛᎴᏍᏗ; ᏕᎯᏛᏔᏅᎭᏍᎩᏂ, ᎠᎴ ᏕᎯᏍᏆᏒᎭ ᏧᎾᏤᎵ ᎤᏁᎳᏅᎯ ᏗᏟᏩᏍᏔᏅᎯ.\nᏱᎰᏩᏃ ᎢᏣᏁᎳᏅᎯ ᏤᏣᏁᎶᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᎣᏍᏛ ᏅᏓᏣᏛᏁᎵ ᎢᏣᏤᎵ ᎦᏚ ᎨᏒᎢ, ᎠᎴ ᎢᏣᏤᎵ ᎠᎹ ᎨᏒᎢ, ᎠᎴ ᎥᏳᎩ ᎠᎩᎲᏍᏗ ᎨᏎᏍᏗ ᎾᎿ ᎠᏰᎵ ᏂᏣᏛᏅᎢ.\nᎠᎴ ᎥᏝ ᎪᎱᏍᏗ ᎤᎶᎢᏎᏗ ᏱᎨᏎᏍᏗ ᎦᏁᎵᏒᎢ, ᎠᎴ ᏂᏓᏅᎥᏍᎬᎾ ᏱᎨᏎᏍᏗ ᎢᏣᏤᎵᎪᎯ; ᎢᎪᎯᏛ ᏣᎴᏂᏓᏍᏗ ᎨᏒ ᎬᎧᎵᎴᏗ ᎨᏎᏍᏗ.\nᎥᎩᎾᏰᎯᏍᏗ ᎨᏒ ᎢᎬᏱ ᏤᏅᎡᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᏥᏛᏙᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏴᏫ ᎾᏍᎩ ᏫᎩᎷᏤᏗ ᎨᏒᎢ; ᏂᎦᏗᏨᏃ ᎨᏣᏍᎦᎩ ᎨᏣᏐᎭᏛᎡᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏎᏩᏓ ᎦᏥᏅᏍᏗ ᎨᏎᏍᏗ ᎢᎬᏱ. ᎭᎢᏒᎢ, ᎾᏍᎩ ᏓᎬᏩᏂᎨᎯᏙᎵ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᎿᏗᏒᎢ.\nᎥᏝ ᏑᏕᏘᏴᏛ ᎨᏒ ᎦᏥᎨᎯᏓᏍᏗ ᏱᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ; ᏅᏛᏰᏃ ᏱᏅᎦᎵᏍᏓ ᎦᏙᎯ, ᎠᎴ ᎢᎾᎨ ᎠᏁᎯ ᏱᎨᏥᎪᏙᎯᏏ.\nᎢᎸᏍᎩᏉ ᎢᏳᏂᏨᏛ ᎦᏥᎨᎯᏓᏍᏗ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ, ᎬᏂ ᎯᎪᏙᏒᎭ, ᎠᎴ ᏣᏤᎵ ᏂᎦᎵᏍᏔᏅᎭ ᎾᏍᎩ ᏚᏙᎯ.\nᎠᎴ ᏓᎬᏯᏟᎡᎵ ᏂᎬᎾᏛ ᏣᏤᎵᎦ ᎨᏒᎢ, ᎠᎹ ᎩᎦᎨᏍᏛᏱ ᏅᏓᏳᏓᎴᏅᏛ, ᎠᎺᏉᎯᏃ ᎠᏂᏈᎵᏍᏗ ᎤᎾᏤᎵᎦ ᏫᎦᎷᎩ, ᎠᎴ ᎢᎾᎨ ᎤᏓᎴᏅᏛ ᎡᏉᏂ ᏫᎦᎷᎩ; ᏙᏓᏨᏲᎯᏎᎵᏰᏃ ᎾᎿ ᎦᏙᎯ ᏗᏁᎯ; ᏘᎨᎯᏓᏍᏗᏃ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏂᏣᏛᏅᎢ.\nᎥᏞᏍᏗ ᎧᏃᎮᏛ ᏗᏣᏠᎯᏍᏙᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏤᎵ ᎤᏁᎳᏅᎯ ᏧᏂᏰᎸᎯ.\nᎥᏞᏍᏗ ᎢᏣᏤᎵᎪᎯ ᎦᏙᎯ ᎤᎾᏕᏗ ᏱᎨᏎᏍᏗ. ᎾᏍᎩᏰᏃ ᏱᎾᏅᏂᏒ ᏍᎩᏍᎦᏅᏤᏗ ᏱᏅᏚᎵᏍᏓ; ᎢᏳᏰᏃ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ ᏱᏗᏣᏓᏙᎵᏍᏓᏁᎭ ᎠᏎ ᎢᏥᏌᏛᎲᏍᎩ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎡᏣᎩᎳᏩ ᏱᎰᏩ ᎡᏥᎷᏥ, ᏂᎯ, ᎠᎴ ᎡᎳᏂ, ᏁᏓᏈ, ᎠᎴ ᎡᏆᏳ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ: ᎠᎴ Ꭸ ᎢᏴᏛ ᏗᏣᏓᏙᎵᏍᏔᏅᎭ.\nᎼᏏᏃ ᎤᏩᏒ ᎾᎥ ᎦᎷᏨᎭ ᏱᎰᏩ ᏄᏛᏅᎢ; ᎾᏍᎩᏍᎩᏂ ᏞᏍᏗ ᎾᎥ ᎤᏂᎷᏨᎩ, ᏞᏍᏗ ᎠᎴ ᏴᏫ ᎤᎾᎩᎳᏫᏒᎩ ᎬᏩᏍᏓᏩᏛᏒᎩ.\nᎼᏏᏃ ᎤᎷᏨᎩ ᎠᎴ ᏚᏃᏁᎸᎩ ᏴᏫ ᏂᎦᏛ ᏄᏪᏒ ᏱᎰᏩ, ᎠᎴ ᏂᎦᏛ ᏗᎧᎿᏩᏛᏍᏗ; ᏂᏚᏛᏃ ᏴᏫ ᏌᏉ ᎢᎦᎦᏛ ᎤᏂᏁᏨᎩ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏂᎦᏛ ᏄᏪᏒ ᎤᏁᏨ ᏱᎰᏩ ᎾᏍᎩ ᏅᏓᏲᏣᏛᏁᎵ. .\nᎼᏏᏃ ᎤᏬᏪᎳᏅᎩ ᏂᎦᏛ ᏄᏪᏒ ᏱᎰᏩ, ᎠᎴ ᏑᎾᎴᎢ ᎤᏗᏛᎲᎩ, ᎠᎴ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎤᏬᏢᏅᎩ ᎠᎦᏐᎠᏏᎯᎲᎢ, ᎠᎴ ᏔᎳᏚ ᏗᎦᎫᏍᏛᏗ, ᎾᏍᎩᏯ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸ ᎢᏏᎵ.\nᏚᏅᏒᎩᏃ ᎠᏂᏫᏅ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᏠᏱ, ᎾᏍᎩ ᎤᎾᎵᏍᎪᎸᏔᏅᎩ ᎠᏥᎸᎨᎳᏍᏗ, ᎠᎴ ᎤᎾᎵᏍᎪᎸᏔᏅᎩ ᏅᏩᏙᎯᏇᏛ ᎠᏓᏁᎯ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒᎢ, ᎾᏍᎩ ᏩᎦ ᏚᎾᎵᏍᎪᎸᏓᏁᎸᎩ ᏱᎰᏩ.\nᎼᏏᏃ ᎠᏰᎵ ᎢᏴᏛ ᎤᏁᎩᏒᎩ ᎩᎬ ᎠᎴ ᏗᏕᎵᏙ ᏚᏟᏍᏔᏅᎩ; ᎠᏰᎵᏃ ᎢᏴᏛ ᎤᏍᏚᏟᏍᏔᏅᎩ ᎠᏥᎸᎨᎳᏍᏗᏱ.\nᎪᏪᎵᏃ ᎤᏁᏒᎩ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎪᏯᎸᎢ, ᎠᎴ ᎤᎪᎵᏰᎥᎩ ᎤᎾᏛᏓᏍᏛ ᏴᏫ; ᎠᎴ ᎯᎠ ᏄᏂᏪᏒᎩ, ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏒ ᏅᏓᏲᏣᏛᏁᎵ, ᎠᎴ ᎣᎪᎯᏳᎯᏍᏗᏅ ᎨᏎᏍᏗ.\nᎼᏏᏃ ᎩᎬ ᎤᏁᎩᏒᎩ, ᎠᎴ ᏴᏫ ᏚᏍᏚᏢᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛ ᎩᎬ ᎯᎠ, ᎾᏍᎩ ᏱᎰᏩ ᏥᏕᏣᏠᎯᏍᏔᏅ ᎾᏍᎩ ᏂᎦᏛ ᎯᎠ ᎧᏃᎮᏛ ᎤᎬᏩᎵ.\nᎤᎿᎷᏒᎩᏃ ᎼᏏ, ᎠᎴ ᎡᎳᏂ, ᏁᏓᏈ, ᎠᎴ ᎡᏆᏳ, ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᎢᏯᏂᏛ ᏧᎾᏛᏐᏅᎯ ᎢᏏᎵ ᏧᎾᏤᎵᎦ.\nᎤᏂᎪᎲᎩᏃ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᏤᎵᎦ, ᏚᎳᏍᎬᏃ ᏣᏲᏓᏝᎰ ᎾᏍᎩᏯ ᎨᏒᎩ ᏧᎸᎾᏛ ᏌᏆᏯᏅᏯ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎦᎸᎶ ᎤᏩᏒ ᏄᏍᏛ ᏗᎬᏩᎸᏌᏛ ᎨᏒᎢ.\nᎨᏥᎸᏉᏗᏃ ᎢᏏᎵ ᏧᏪᏥ ᏧᎾᏤᎵᎦ ᎥᏝ ᏱᏚᏏᏔᏕᎢ;, ᎾᏍᏉ ᎤᏂᎪᎲᎩ ᎤᏁᎳᏅᎯ, ᎠᎴ ᎤᎾᎵᏍᏓᏴᏅᎩ ᎠᎴ ᎤᎾᏗᏔᎲᎩ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎡᎭᎩᎳᏩ ᏍᎩᎷᏥ ᎠᏂ ᎣᏓᎸᎢ, ᎠᏂᏃ ᎮᏙᎮᏍᏗ, ᏙᏓᎬᏁᎵᏃ ᏗᏯᏖᏅ ᏅᏯ, ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎴ ᎤᎵᏁᏨᎢ ᎾᏍᎩ ᏗᏉᏪᎳᏅᎯ, ᎾᏍᎩ ᏗᎩᏰᏲᏗ.\nᎼᏏᏃ ᏚᎴᏅᎩ, ᎠᎴ ᎾᏍᏉ ᎤᏍᏕᎸᎯᏙᎯ ᏦᏑᏫ, ᎼᏏᏃ ᎤᎿᎷᏒᎩ ᎣᏓᎸ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ ᏧᎾᏛᏐᏅᎯ, ᏍᎩᎦᏘᏰᏍᏗ ᎠᏂ, ᎬᏂ ᏔᎵᏁ ᎢᏨᎷᎮᎸᎩ; ᎬᏂᏳᏃ, ᎡᎳᏂ ᎠᎴ ᎭᎵ ᎨᏤᎳᏗᏙᎭ; ᎢᏳᏃ ᎩᎶ ᎤᏓᏰᎢᎵᏓᏍᏗ ᎤᎮᏍᏗ, ᎾᏍᎩ ᏓᏂᎷᏤᎮᏍᏗ.\nᎼᏏᏃ ᎤᎿᎷᏒᎩ ᎣᏓᎸᎢ, ᎤᎶᎩᎸᏃ ᎤᏭᏢᏔᏅᎩ ᎣᏓᎸᎢ.\nᏚᎸᏌᏛᏃ ᏱᎰᏩ ᏌᎾᏱ ᎣᏓᎸ ᎤᎴᏫᏍᏔᏅᎩ, ᎤᎶᎩᎸᏃ ᎤᏭᏢᏅᎩ ᏑᏓᎵ ᏧᏒᎯᏛ; ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎼᏏ ᎤᎵᏍᏔᏁᎸᎩ ᎤᎶᎩᎸ ᎠᏰᎵ ᏓᏳᏓᎴᏅᎩ.\nᏗᎧᏃᏗᏱᏃ ᏱᎰᏩ ᏚᎸᏌᏛᎢ ᎠᏥᎸ ᎠᏒᎲᏍᎩ ᎾᏍᎩᏯ ᎨᏒᎩ ᎣᏓᎸ ᎦᎸᎳᏗ ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᏓᏂᎧᏅᎢ.\nᎼᏏᏃ ᎤᎶᎩᎸ ᎠᏰᎵ ᏭᎶᏒᎩ, ᎠᎴ ᎤᎾᎷᏒᎩ ᎣᏓᎸᎢ; ᎼᏏᏃ ᎤᎩᎸᎩ ᎣᏓᎸ ᏅᎦᏍᎪᎯ ᎢᎦ ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ,\nᎩᏁᏥ ᎢᏏᎵ ᏧᏪᏥ ᎠᎵᏍᎪᎸᏙᏗ ᎬᎩᏲᎮᏗᏱ; ᎾᏂᎥ ᎤᏂᎾᏫ ᎤᏂᏅᏫᏍᏗᏍᎩ ᎤᏂᏗᏱ ᏗᏍᏗᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ ᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ.\nᎯᎠᏃ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᏗᏍᏓᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ; ᎠᏕᎸ ᏓᎶᏂᎨ ᎠᎴ ᎠᏕᏄ. ᎤᏁᎬ, ᎠᎴ ᎥᎶᏱ,\nᎠᎴ ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᎠᎭᏄᎸᎯ ᎠᏫ ᎤᎩᏢ,\nᎤᏂᏃᏕᎾᏃ ᎦᏁᎦ ᏗᎩᎦᏏᎨᎢ, ᎠᎴ ᏓᎭᏏ ᎦᏁᎦ, ᎠᎴ ᎠᏓᎬᎿᏥᎨ,\nᎯᎢᏃ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ, ᎦᏩᏒᎩ ᎠᏠᏁᏗ ᎪᏢᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ ᎪᏢᏗ;\nᎣᏂᎦ ᏅᏯ, ᎠᎴ ᏅᏯ ᎡᏉᏗ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏗᎦᎪᏗ.\nᎠᎴ ᏫᎬᏆᏁᏍᎩᏏ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸ, ᎾᏍᎩ ᎠᏆᏕᏗᏱ ᎠᏁᎲᎢ.\nᎾᏍᎩᏯ ᎬᏂᎨᏒ ᏂᎬᏴᏁᎸᎢ, ᎾᏍᎩ ᏗᏟᎶᏍᏔᏅᎯ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏗᏟᎶᏍᏔᏅᎯ ᏂᎦᏛ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎾᎿᏂ, ᎾᏍᎩᏯ ᎢᏨᏁᏗ ᏦᏢᏗ ᎨᏎᏍᏗ.\nᎦᏁᏌᎢᏃ ᎤᏃᏢᏗ ᎨᏎᏍᏗ ᎠᏓᎬᎿᎨ ᎤᏃᏢᏙᏗ ᎨᏎᏍᏗ; ᏦᎢᏁ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏖᏍᏗ.\nᎠᎴ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏧᏢᏙᏗ ᎨᏎᏍᏗ; ᎭᏫᏂᏗᏢ ᎠᎴ ᎦᏚᎢᏗᏢ ᏧᏢᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏁᎨ ᏂᎬᏁᏕᏍᏗ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ.\nᏅᎩᏃ ᏧᏓᏆᏙᎩ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᏅᎩᏃ ᎾᏍᎩ ᏂᏚᎳᏍᎬᎢ ᏗᏣᏙᏗ ᎨᏎᏍᏗ; ᏔᎵᏃ ᏧᏓᏆᏙᎩ ᏌᏉ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᏗᏣᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ Ꭰ ᎢᏗᏢ ᎠᏍᏆᎨᏂ ᏗᎦᏙᏗ ᎨᏎᏍᏗ.\nᎦᏅᏍᏙᏗᏃ ᎠᏓᎬᎿᎨ ᏗᏦᏢᏙᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎦᏅᏍᏙᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎾᎿ ᏗᎫᏍᏙᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏁᏌᎢ ᎦᏅᏍᏙᏗ ᎨᏎᏍᏗ.\nᎦᏅᏍᏙᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᎦᏁᏌᎢᎯ ᏕᎫᏍᏙᎰᎨᏍᏗ; ᎥᏝ ᏗᎫᏍᏙᎩᏍᏗ ᏱᎨᏎᏍᏗ.\nᎦᏁᏌᎢᎯᏃ ᏗᏣᎶᏗ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᏗᎬᏲᎯᏎᏗ ᏥᎩ.\nᎠᎴ ᏧᏢᏗ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎢᏍᏗ ᎾᏑᏴᎾ ᏦᏢᏙᏗ ᎨᏎᏍᏗ; ᏦᎢᏁ ᎠᏰᎵ ᎢᏍᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ; ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ.\nᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎩᎷᏫ ᏕᎰᏢᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎰᎨᏢᏔᏅᎭ, ᏗᎦᏅᏆᎶᏏᎶᏛ ᎨᏎᏍᏗ ᏧᏍᎪᎵ ᎫᏢᏘᏱ ᏕᎯᎧᏅᎭ,\nᎠᎴ ᏌᏉ ᎠᎩᎷᎾ ᏌᏉ ᎢᏗᏢ ᎤᏍᎪᎵ ᎯᎧᏅᎭ, ᏐᎢᏃ ᎠᎩᎷᏫ ᏐᎢᏗᏢ ᎤᏍᎪᎵ ᎯᎧᏅᎭ; ᎾᏍᎩ ᎫᏢᏗᏱ ᏧᏍᎪᎵ ᎢᏗᏢ ᎢᏧᎳ ᏗᏣᎪᏗ ᎨᏎᏍᏗ ᎠᏂᎩᎷᏫ.\nᎠᏂᎩᎷᏫᏃ ᏚᎾᏐᎸᏖᏍᏗ ᏗᏂᏃᎨᏂ, ᎫᏢᏗᏱ ᏚᏄᏢᏕᏍᏗ ᏗᏂᏃᎨᏂ, ᏚᎾᎧᏛᏃ ᏓᎾᏓᎧᏁᏍᏗ; ᏧᏢᏗᏱ ᎢᏗᏢ ᏭᎾᎦᏖᏍᏗ ᎠᏂᎩᎷᏫ.\nᎫᏢᏗᏃ ᎦᏁᏌᎢ ᎦᏚᎢ ᏧᏢᏙᏗ ᎨᏎᏍᏗ; ᎦᏁᏌᎢᎯᏃ ᏗᏣᎶᏗ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᏗᎬᏲᎯᏎᏗ ᏥᎩ.\nᎾᎿᏃ ᏗᎬᏯᏠᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎬᏯᎵᏃᎮᏙᏗ ᎨᏎᏍᏗ ᎦᏁᏌᎢ ᎫᏢᏘᏱ ᎦᎸᎳᏗᏢ, ᎠᏂᎩᎷᏫ ᏓᏂᏙᎬ ᎠᏰᎵ ᎾᏍᎩ ᎦᏁᏌᎢᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎧᎶᏗ ᏥᏓᏂ ᏙᎦ, ᎾᏍᎩ ᎬᏯᎵᏃᎮᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏂᎦᏛ ᎬᏁᏤᏗ ᏥᎩ, ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᏛᎪᏗ.\nᎠᎴ ᎦᏍᎩᎶ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏓᎬᎿᎨ ᎪᏢᏔᏅᎯ; ᏔᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᏌᏉᏃ ᎢᏯᎩᏳᏍᏈᏡᏛ ᎾᏯᏛᎡᏍᏗ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏖᏍᏗ.\nᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏧᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏂᎬᏁᏕᏍᏗ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ.\nᎠᎴ ᏣᎬᏔᏅᏗ ᎨᏎᏍᏗ ᎣᏬᏰᏂ ᎾᏯᏛ; ᎢᏯᏯᏖᏅ ᎬᏩᏚᏫᏛ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎦᏯᎴᏍᏗ ᎬᏩᏚᏫᏛ.\nᎠᎴ ᏅᎩ ᏧᏓᏆᏙᎩ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏓᏆᏙᎩ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᏅᎩ ᏂᏚᏅᏏᏴ ᎾᎿ ᏅᎩ ᏂᏚᎳᏍᎬᎢ.\nᎠᎬᏔᏅᏛᏃ ᎾᎥ ᏗᎦᏙᏗ ᎨᏎᏍᏗ ᏧᏓᏆᏙᎩ ᏗᎫᏍᏙᏍᏗᏱ ᎦᏅᏍᏙᏗ ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ.\nᏗᎦᏅᏍᏙᏗᏃ ᎠᏓᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎱᏢᏔᏅᎭ, ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎾᎿ ᏤᎯ ᏗᏯᏖᎾ ᏕᎰᏢᏅᎭ, ᎠᎴ ᏗᏗᏙᏗ, ᎠᎴ ᏗᏖᎵᏙ, ᎠᎴ ᏗᏟᏍᏙᏗ ᏗᏖᎵ Ꮩ; ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎰᏢᏔᏅᎭ.\nᎦᏍᎩᎸᏃ ᏣᏝᎮᏍᏗ ᎦᏚ ᎠᎦᏙᏗ ᎢᎬᏱᏢ ᎠᏆᎧᏛᎢ ᏂᎪᎯᎸᎢ.\nᏗᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏦᏢᏙᏗ ᎨᏎᏍᏗ; ᎦᏅᏆᎶᏏᎶᏛ ᎠᏕᎸ ᎪᏢᏙᏗ ᎨᏎᏍᏗ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ; ᎤᏪᏛᎢ, ᎠᎴ ᏚᏩᏂᎦᎸᎢ, ᏧᏖᎵᏙᎩ, ᏚᏆᏛᎢ, ᎠᎴ ᏚᏥᎸᏒᎢ, ᎤᏠᏱ ᏗᎪᏢᏙᏗ ᎨᏎᏍᏗ.\nᏑᏓᎵᏃ ᏚᏩᏂᎦᎸ ᎢᏧᎳ ᎢᏗᏢ ᏧᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ; ᏦᎢ ᏂᏚᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏌᏉ ᎢᏗᏢ ᏧᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏦᎢ ᏂᏚᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏐᎢᏱᏗᏢ ᏧᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ.\nᏦᎢᏃ ᏗᏖᎵᏙ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏕᎤᏍᏕᏍᏗ, ᎤᏆᏖᏍᏗ ᎠᎴ ᎤᏥᎸᏎᏍᏗ ᏌᏉ ᎤᏩᏂᎦᎸᎢ; ᎠᎴ ᏦᎢ ᏕᎪᏢᏎᏍᏗ ᏗᏖᎵᏙ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏕᎤᏍᏕᏍᏗ ᏐᎢᏱ ᎤᏩᏂᎦᎸᎢ, ᎤᏆᏖᏍᏗ ᎠᎴ ᎤᏥᎸᏎᏍᏗ; ᎾᏍᎩᏯ ᏂᏕᏅᏍᏕᏍᏗ ᏑᏓᎵ ᏂᏕᎤᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ.\nᏗᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᏅᎩ ᏕᎪᏢᏎᏍᏗ ᏗᏖᎵᏙ ᎠᎹᏂ ᎤᏥᎸᏒ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏂᏕᎤᏍᏕᏍᏗ, ᏚᏆᏖᏍᏗ ᎠᎴ ᏕᎤᏥᎸᏎᏍᏗ.\nᎠᎴ ᎤᏆᏖᏍᏗ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏖᏍᏗ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎾᏍᎩᏯ ᏑᏓᎵ ᏂᎦᎥ ᏕᎤᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ.\nᏚᏆᏛ ᎠᎴ ᏚᏩᏂᎦᎸ ᎤᏠᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ; ᏂᎦᏛ ᏌᏉ ᎦᏅᏆᎶᏏᎶᏛ ᎪᏢᏅᎯ, ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ.\nᎠᎴ ᎦᎵᏉᎩ ᎪᎱ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ ᎾᎿ ᏗᎦᎪᏗ ᏗᏦᏢᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏂᏨᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏗᏨᏍᏙᏗ, ᎾᏍᎩ ᎢᎦ ᎤᎾᏘᏍᏙᏗᏱ ᏧᏳᎪᏗ ᎤᏗᏗᏢ.\nᎠᎴ ᏗᏥᏃᏍᎦᎸᏗ ᎠᎴ ᏗᏥᏃᏍᎦᎸᏛ ᏗᎦᎶᏗ, ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ. ᎨᏎᏍᏗ.\nᏌᏉ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏧᏬᏢᏙᏗ ᎨᏎᏍᏗ ᎯᎠ ᏂᎦᏛ ᏧᏓᎴᏅᏛ.\nᎠᎴ ᎭᎦᏌᏯᏍᏔᏅᎭ ᏕᎰᏢᏅᎭ ᎾᏍᎩ ᏗᏟᎶᏍᏙᏗ ᎠᏴᎢ, ᎾᏍᎩ ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸᎢ.\nᎠᎴ ᎾᏍᏉ ᎦᎵᏦᏙᏗ ᎰᏢᏅᎭ ᎠᏍᎪᎯ ᏗᏰᏙᎳᏗ ᎠᏄᏬ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ ᎪᏢᏔᏅᎯ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎬᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ: ᎠᏂᎩᎷᏫ ᎠᎵᏏᎾᎪᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏔᏁᎸᎯ ᏨᏙᏗ ᏗᏦᏢᏗ ᎨᏎᏍᏗ.\nᏌᏉ ᎠᏰᏙᎳᏛ ᏁᎳᏦᏁ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᏅᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ; ᏂᎦᏛᏃ ᏓᏰᏙᎳᏛ ᎢᏗᎦᎯᏛᎭ ᎨᏎᏍᏗ.\nᎯᏍᎩ ᏂᏓᏰᏙᎳᏛ ᏕᏅᎤᎾᏚᏓᏖᏍᏗ; ᏗᏐᎢᏃ ᎯᏍᎩ ᏓᏰᏙᎳᏛ ᏕᎤᎾᏚᏓᏖᏍᏗ.\nᏧᎾᏓᏕᏍᏗᏱᏃ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏍᏛ ᎠᏰᏙᎳᏛᏗᏱ ᏕᎭᎷᎨ ᎠᏍᏘ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᏓᎴᏂᏍᎨᏍᏗ ᎠᏍᏛ ᏚᏚᏓᏛᎢ: ᎠᎴ ᎤᏠᏱᏉ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏍᏛ ᏔᎵᏁ ᎠᏰᏙᎳᏛ ᏚᎦᏓᏛᎢ.\nᎯᏍᎦᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏧᏓᏕᏍᏗᏱ ᏌᏉ ᎠᏰᏙᎳᏛᎢ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏍᏛ ᏔᎵᏁ ᎠᏰᏙᎳᏛ ᏚᏚᏓᏛᎢ, ᎾᏍᎩ ᏧᏓᏂᏴᏗᏱ ᏕᎪᏢᏒ ᏧᏓᏕᎯᏍᏗᏱ.\nᎠᎴ ᎯᏍᏚᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏗᎫᏓᎸᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩᏃ ᏗᎫᏓᎸᏗᏱ ᏕᎭᏚᏙᏔᏅᎭ ᏓᏰᏙᎳᏛᎢ, ᎾᏍᎩᏃ ᏌᏉᏉ ᎨᏎᏍᏗ ᎦᎵᏦᏛᎢ.\nᏓᏰᏙᎳᏛᏗᏃ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᏂᏍᏘᏰᏅᎯ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎬᏅᏙᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏛᎢ: ᏌᏚ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏗᏰᏙᎳᏛᏗ.\nᏌᏉ ᎠᏰᏙᎳᏛ ᏦᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᏅᎩᏃ ᎢᏯᎩᏳᏍᏡᏛ ᎾᏯᏛᎡᏍᏗ ᏌᏉ ᎠᏰᏙᎳᏛᎢ: ᏌᏚᏃ ᏂᏓᏰᏙᎳᏛ ᎢᏗᎦᎯᏛᎭ ᎨᏎᏍᏗ.\nᎯᏍᎩᏃ ᏓᏕᏙᎳᏛ ᎤᏁᎳᎩ ᏗᎦᏚᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏑᏓᎵ ᏓᏕᏙᏔᏛ ᎤᏁᎳ ᏗᏣᏚᏙᏗ ᎨᏎᏍᏗ, ᏑᏓᎵᏁᏃ ᎠᏰᏙᎳᏛ ᏗᏣᏰᏈᏛᏗ ᎨᏎᏍᏗ ᏭᎦᏛ ᎦᎵᏦᏛᎢ.\nᎯᏍᎦᏍᎪᎯᏃ ᏕᎨᏢᎾᎭ. ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᏌᏉ ᎠᏰᏙᎳᏛᎢ ᎾᏍᎩ ᎠᏍᏛ ᎤᏚᏓᏛᏗᏱ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᎠᏰᏙᎳᏛ ᎾᏍᎩ ᏔᎵᏁ ᎤᏚᏓᏛᏗᏱ.\nᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏗᎫᏓᎸᏗᏱ, ᎥᏣᏱ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᏗᎫᏓᎸᏗᏱ ᏗᏣᏚᏙᏗ ᏧᏓᏕᏍᏗᏱ, ᎠᎴ ᏕᎱᏓᏔᏅᎭ ᎦᎵᏦᏛᎢ, ᎾᏍᎩᏃ ᏌᏉ ᏂᎦᎵᏍᏔᏅᎭ.\nᎾᏍᎩᏃ ᎤᎵᏃᎯᏴᎯ ᏗᏰᏙᎳᏛᏗ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎠᏰᎵ ᎢᎦᎢ ᎤᎵᏃᎯᏴᎯ, ᎾᏍᎩ ᎦᎵᏦᏛ ᎣᏂᏗᏢ ᎦᏛᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏌᏉ ᎢᏗᏢ, ᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᎠᎢᏗᏢ, ᎾᏍᎩ ᏕᏚᏅᎯᏒ ᏧᎵᏃᎯᏴᎯ ᏗᏰᏙᎳᏛᏗ ᎦᎵᏦᏛᎢ, ᏗᏍᏆᎨᏂ ᏫᏗᎦᏖᎳᏕᏍᏗ ᎦᎵᏦᏛᎢ ᎠᏂ ᎢᏗᏢ ᎠᎴ ᏐᎢᏱ ᎢᏗᏢ, ᎾᏍᎩ ᎫᏢᏙᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏦᏢᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏛ ᎫᏢᏗ, ᎤᏃᏕᎾ ᎦᏁᎦ ᎩᎦᎨ ᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎦᏚᏃ ᎢᏗᏢ ᎫᏢᏗ ᏓᎭᏏ ᎦᏁᎦ ᏦᏢᏙᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏧᏯᏖᎾ ᎠᏓ-ᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᎵᏦᏛ ᎪᏢᏗ ᏕᎦᎵᎦᎴᏍᏗ.\nᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏌᏉ ᎤᏯᏖᎾ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏇᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ ᏌᏉ ᎤᏯᏖᎾ.\nᏔᎵ ᏕᎪᏢᏎᏍᏗ ᏗᎫᏍᏙᏍᏗᏱ ᏌᏉ ᏅᏯᏖᏃᎯ, ᏕᎦᎧᎮᏍᏗ ᎣᏍᏛ ᏓᏙᎵᎨᏍᏗ; ᎾᏍᎩ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏧᏯᏖᎾ ᎦᎵᏦᏙᏙᏗ.\nᏧᏯᏖᎾᏃ ᎦᎵᏦᏙᏙᏗ ᏔᎳᏍᎪᎯ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏧᎦᎾᏮ ᎢᏗᏢ ᏤᎯ.\nᏅᎦᏍᎪᎯᏃ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ, ᎭᏫᏂᏗᏢ ᏔᎳᏍᎪᎯ ᏧᏯᏖᏃᎯ. ᏔᎵ ᏓᏔᎴᏒ ᏕᎪᏢᏎᏍᏗ ᎭᏫᏂᏗᏢ ᏌᏉ ᎤᏯᏖᏃᎯ ᎾᏍᎩ ᏔᎵ ᏗᎫᏍᏙᏍᏗ ᏗᏠᏍᎩ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏐᎢᏱ ᎤᏯᏖᏃᎯ ᎾᏍᎩ ᏗᏠᏍᎩ ᏔᎵ ᏗᎫᏍᏙᏍᏗ.\nᏔᎵᏁᏃ ᎠᏍᏆᎨᏂ ᏫᎨᏒ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᏧᏴᏢ ᎢᏗᏢ ᏔᎵᏍᎪᎯ ᏂᏕᎬᏁᏍᏗ ᏧᏯᏖᎾ.\nᎠᎴ ᏅᎦᏍᎪᎯ ᎾᏍᎩ ᏗᏠᏍᎩ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ; ᏔᎵ ᏂᏕᎬᏁᏍᏗ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏌᏉ ᎤᏯᏖᏃᎯ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏐᎢᏱ ᎤᏯᏖᏃᎯ.\nᏗᏍᏆᎨᏂᏃ ᏭᏕᎵᎬ ᎢᏗᏢ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᏑᏓᎵ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᏧᏯᏖᎾ.\nᎠᎴ ᏔᎵ ᏧᏯᏖᎾ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎤᏅᏏᏴ ᏤᎯ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᎢᏧᎳ ᏗᏍᏆᎨᏂ ᎢᏗᏢ ᏤᎯ.\nᎾᏍᎩᏃ ᏗᎫᏓᏙᏗ ᎨᏎᏍᏗ ᎡᎳᏗᏢ, ᎠᎴ ᏗᎫᏓᏙᏗ ᎨᏎᏍᏗ ᎤᏍᎪᎵ ᎦᎸᎳᏗ ᎾᏍᎩ ᏌᏉ ᎤᏆᏙᎬᎢ; ᎾᏍᎩ ᎢᏗᎬᏁᏗ ᎨᏎᏍᏗ ᎢᏧᎳ; ᎾᏍᎩ ᎯᎠ ᏧᏇᏖᎾ ᎤᏅᏏᏴᏢ ᎢᏧᎳᏗ ᏤᎯ ᎨᏎᏍᏗ.\nᎠᎴ ᏧᏁᎳ ᏂᎦᎡᏍᏗ ᏧᏯᏖᎾ: ᏓᏔᎴᏒᏃ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏓᎳᏚ ᏂᎦᎡᏍᏗ; ᏔᎵ ᏓᏔᎴᏒ ᏂᏕᎬᏁᏍᏗ ᏌᏉ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᎭᏫᏂᏗᏢ ᏅᏩᏓᎴ ᎤᏯᏖᏃᎯ.\nᏗᏍᏆᎾᎳᏗᏍᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ; ᎯᏍᎩ ᏓᏞᏍᏗ ᏧᏯᏖᏃᎯ ᏌᏉ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎦᎵᏦᏛᎢ:\nᎠᎴ ᎯᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏞᏍᏗ ᏧᏯᏖᏃᎯ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎯᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏞᏍᏗ ᏧᏯᏖᏃᎯ . ᎦᎵᏦᏛ ᎠᏍᏆᎨᏂ ᏭᏕᎵᎬ ᎢᏗᏢ.\nᎠᏰᎵ ᎡᎯ ᎠᏍᏆᎾᎳᏗᏍᏗ ᏧᏯᏖᏃᎯ ᎠᏰᎵ ᏓᏢᎢ ᏂᎦᏅᎯᏒ ᎠᏞᏍᏗ.\nᎠᎴ ᏧᏯᏖᎾ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎫᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ ᎾᎿ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏗᎦᏙᏌᏗᏍᏗᏱ; ᎠᎴ ᎠᏕᎸ. ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ ᏗᏍᏆᎾᎳᏗᏍᏗ.\nᎠᎴ ᏣᎪᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏙᏙᏗ ᎾᏍᎩᏯ ᏗᏟᎶᏍᎳᏅᎯ. ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸᎢ.\nᎠᎴ ᎠᏰᏙᎳᏛᏗ ᏦᏢᏗ ᎨᏎᏍᏗ, ᏕᎭᎷᎨ ᎠᏄᏬ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᎤᏥᎸᎢ, ᎠᎵᏏᎾᎯᏍᏔᏅᎯ. ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᎿᏂ ᎠᏂᎩᎷᏫ ᏕᎪᏢᏎᏍᏗ.\nᎠᎴ ᏣᏛᏗ ᎨᏎᏍᏗ ᏅᎩ ᏕᎨᏛ ᏗᎦᎫᏍᏛᏗ, ᎠᏓ-ᎬᎿᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎫᏢᏔᏅᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᏅᎩ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎾᎿ ᏕᎫᏍᏙᎨᏍᏗ.\nᎠᎴ ᏣᏛᏗ ᎨᏎᏍᏗ ᎠᏰᏙᎳᏛᏗ ᏗᎫᏓᎸᏗᏱ ᎭᏫᏂᏗᏢ, ᎾᏍᎩ ᎾᎿ ᏣᏴᏔᏂᎯᏍᏗᏱ ᎠᏰᏙᎳᏛ ᎭᏫᏂᏗᏢ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗ; ᎠᏰᏙᎳᏛᏃ ᎢᏣᏓᏓᎴᏓᏁᎮᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒ ᎠᎴ ᏅᏟ ᎢᎦᎸᏉᏗ ᎨᏒᎢ.\nᎫᏢᏗᏃ ᎯᏝᏛᎭ ᎦᏁᏌᎢᎯ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎾᎿ ᎤᏟ ᎢᎦᎸᏉᏗ ᎨᏒᎢ.\nᎦᏍᎩᎶᏃ ᎠᏰᏙᏛ ᏙᏱᏗᏢ ᏣᏍᎩᎳᏗᏍᏗ ᎨᏎᏍᏗ, ᎠᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᎦᏍᎩᎸ ᏧᏳᎪᏗ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛ ᏧᎦᎾᏮ ᎢᏗᏢ ᏣᎪᏗ ᎨᏎᏍᏗ; ᎦᏍᎩᎶᏃ ᏧᏴᏢ ᎢᏗᏢ ᏣᏍᎩᎳᏗᏍᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏰᏙᎳᏛᏗ ᎠᏍᏚᏗ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ, ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᎤᏥᎸᎢ, ᎪᏪᎳᏅᎯ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ.\nᎠᎴ ᏗᏰᏙᎳᏛᏗᏱ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎯᏍᎩ ᏗᎦᎫᏍᏛᏗ ᎠᏓ-ᎬᎿᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎱᏢᏔᏅᎭ, ᎠᎴ ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ; ᎠᎴ ᎯᏍᎩ ᏓᏔᎴᏒ ᎥᏣᏱ ᎬᎾᏬᏔᏅᎯ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ ᏗᎦᎫᏍᏛᏗ ᏗᎫᏍᏙᏍᏗᏱ,\nᎠᎴ ᎰᏢᏅᎭ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏓᎬᎿᎨ ᎰᏢᏔᏅᎭ, ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ, ᎦᏌᏆᎸ ᎨᏎᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᏦᎢᏃ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏖᏍᏗ.\nᏕᎤᎷᎬᏃ ᏅᎩ ᏂᏚᏅᏏᏴ ᏗᏣᎪᏗ ᎨᏎᏍᏗ; ᏕᎤᎷᎬ ᎤᏠᏱᏉ ᎨᏎᏍᏗ; ᎥᎶᏱᏃ ᏧᏢᏙᏗ ᎨᏎᏍᏗ.\nᏗᏦᏢᏗᏃ ᎨᏎᏍᏗ ᎪᏍᏚ ᎦᎶᏗ, ᎠᎴ ᎪᏕᏍᏗ, ᎠᎴ ᏗᏖᎵᏙ, ᎠᎴ ᎭᏫᏯ ᎦᏂᏴᏙᏗ, ᎠᎴ ᎠᏥᎸ ᎦᎶᏗ; ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎥᏣᏱ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏦᏢᏗ ᎨᏎᏍᏗ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎥᏣᏱ ᎪᏢᏔᏅᎯ; ᎾᎿᏃ ᏅᎩ ᏂᏚᏅᏏᏴ ᏅᎩ ᏧᏓᏆᏙᎩ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᏗᏣ ᏙᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎤᎦᏌᏛᎢ ᎭᏫᏂᏗᏢ ᏣᏄᏴᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏰᎵ ᎢᏴᏛ ᏫᎬᏩᎵᏍᏗᏍᏗ ᎨᏎᏍᏗ.\nᎦᏅᏍᏙᏗᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏗᏦᏢᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏅᏍᏙᏗ ᎠᏓ-ᎬᎿᎨ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎥᏣᏱ ᏗᎫᏢᏔᏅᎯ.\nᎦᏅᏍᏙᏗᏃ ᏧᏓᏆᏉᎩ ᏕᎦᏛ ᏗᎫᏍᏙᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᏧᎳᏗᏢ ᏗᏍᏆᎨᏂ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎦᏅᏍᏙᏗ ᏓᏞᏍᏗ, ᎾᏍᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎠᏴᏍᏙᏗ.\nᎤᏒᏙᏂ ᏅᏁᎸᎭ ᏧᏯᏖᎾ ᎰᏢᏔᏅᎭ; ᎾᏍᎩᏯ ᏤᏣᎾᏄᎪᏫᏎᎸ ᎣᏓᎸᎢ, ᎾᏍᎩᏯ ᎢᏳᏅᏁᏗ ᎤᏃᏢᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎣᏂ ᎰᏢᏅᎭ ᎯᎠ ᎾᏍᎩ ᎦᎵᏦᏛ ᎤᏚᏫᏛ; ᎠᏍᏆᎨᏂ ᏧᎦᏅᏮ ᎢᏗᏢ ᎠᏰᏙᎳᏕᏍᏗ ᎠᏂ ᎾᏍᎩ ᎣᏂ; ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᎨᏎᏍᏗ, ᎠᏍᎪᎯᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ ᏌᏉ ᎢᏗᏢ ᎠᏍᏆᎨᏂ.\nᏔᎳᏍᎪᎯᏃ ᏗᎦᎫᏍᏛᏗ ᎠᎴ ᎾᏍᎩ ᏔᎳᏍᎪᎯ. ᏓᏔᎴᏒ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ; ᏗᎦᏙᏌᏗᏍᏗᏱᏃ ᎠᎴ ᎤᏯᏅᎯ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᎦᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ.\nᎠᎴ ᎾᏍᏉ ᏧᏴᏢ ᎢᏗᏢ ᎠᏰᏙᎳᏕᏍᏗ ᎠᏍᎪᎯᎫᏈ ᎢᏍᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ; ᎠᎴ ᏗᎦᎫᏍᏛᏗ ᏔᎳᏍᎪᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏔᎳᏍᎪᎯ ᏓᏔᎴᏒ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱᏃ ᎠᎴ ᎤᏯᏅᎯ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ.\nᎾᏯᏛᎥᏃ ᎣᏂ ᏭᏕᎵᎬ ᎢᏗᏢ ᏓᏰᏙᎳᏕᏍᏗ ᎯᏍᎪᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ; ᏗᎦᎫᏍᏛᏗ ᎠᏍᎪᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏓᏔᎴᏒ ᎠᏍᎪᏂᎯ ᎨᏎᏍᏗ.\nᎾᏯᏛᎥᏃ ᎣᏂ ᏗᎧᎸᎬ ᎢᏗᏢ, ᎯᏍᎦᏍᎪᎯ ᎢᏯᎩᏅᏳᏍᏈᏛ ᎨᏎᏍᏗ.\nᏓᏰᏙᎳᏛ ᏌᏉ ᎢᏗᏢ [ᎦᎶᎯᏍᏗᏱ] ᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏎᏍᏗ: ᏗᏕᎫᏍᏛᏗ ᏦᎢ ᏂᎦᎡᏍᏗ, ᎠᎴ ᏓᏔᎴᏒ ᏦᎢ.\nᎠᎴ ᎠᎢᏗᏢ ᏓᏰᏙᎳᏕᏍᏗ ᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᎢᏗᎦᏅᎯᏛ; ᏗᎦᎫᏍᏛᏗ ᏦᎢ ᏂᎦᎡᏍᏗ, ᎠᎴ ᏓᏔᎴᏒ ᏦᎢ ᏂᎦᎡᏍᏗ.\nᎦᎶᎯᏍᏗᏱᏃ ᎪᏢᏒ ᎦᎵᏦᏛ ᎠᏰᏙᎳᏕᏍᏗ ᏔᎳᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᎢᎦᏅᎯᏛ, ᏕᎭᎷᎨ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ ᎨᏎᏍᏗ, ᎪᏪᎳᏅᎯ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ; ᏗᏕᎫᏍᏛᏗ ᏅᎩ ᎨᏎᏍᏗ ᎠᎴ ᏓᏔᎴᏒ ᏅᎩ.\nᏂᎦᏛᏃ ᏗᎦᎫᏍᏛᏗ ᎦᎵᏦᏛ ᎬᏩᏚᏫᏛ ᎤᏯᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏂᏕᎬᏁᏕᏍᏗ; ᏗᎦᏙᏌᏏᏍᏗᏱ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᏓᏔᎴᏒ ᎾᎿ ᏗᎫᏍᏙᏍᏗᏱ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ.\nᎣᏂ ᎠᏍᎪᎯᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎾᏯᏛᎥᏃ ᎯᏍᎦᏍᎪᎯ ᎨᏎᏍᏗ ᏂᎦᎥᎢ, ᏂᎦᏛᎢᏃ ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎨᏎᏍᏗ, ᎪᏢᏔᏅᎯ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ, ᏓᏔᎴᏒᏃ ᎾᎿ ᏗᎫᏍᏙᏍᏗᏱ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ.\nᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏁᏗ ᎦᎵᏦᏛᎢ ᎾᎿ ᏄᏓᎴᏒ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᏗᎨᏘᏂᏓᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎣᏂ ᏗᎨᏘᏂᏓᏍᏗ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ.\nᏂᎯᏃ ᏘᏁᏤᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎨᏣᏁᏦᎮᏗᏱ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎣᎵᏩ ᎪᎢ ᎦᏅᏆᎶᎥᎯ ᎢᎦ ᎦᏘᏍᏙᏗ, ᎾᏍᎩ ᎢᏳᏩᏂᏐᏗᏱ ᎤᏓᏪᎵᎩᏍᏗᏱ ᎠᏨᏍᏙᏗ ᏂᎪᎯᎸᎢ.\nᎦᎵᏦᏛ ᎭᏫᏂᏗᏢ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᏰᏙᎳᏛ ᏙᏱᏗᏢ, ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎠᎲᎢ ᎢᎬᏱᏗᏢ, ᎡᎳᏂ ᎾᏍᎩᏃ ᏧᏪᏥ ᎣᏍᏛ ᎢᏳᏅᏁᏗ ᎨᏎᏍᏗ ᎤᏒ ᎤᏓᎴᏅᏛ ᏑᎾᎴ ᎬᏗᏍᎩ ᏱᎰᏩ ᎠᎦᏔᎲᎢ. ᎾᏍᎩ ᏂᎪᎯᎸ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᎠᎾᏓᏁᏟᏴᏏᏒ ᏑᎾᏓᏡᎩ ᎨᏒ ᎢᏏᎵ ᏧᏪᏥ\nᏂᎯᏃ ᎯᏯᏘᏃᎦ ᎯᏯᏓᏓᎴᏛ ᎤᎾᏓᏑᏴ ᎢᏏᎵ ᏧᏪᏥ ᎠᏁᎲᎢ ᎡᎳᏂ ᎡᏣᏂᎵ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎡᎳᏂ, ᎠᎴ ᏁᏓᏈ, ᎠᎴ ᎡᏆᏳ, ᎢᎵᎡᏌ, ᎠᎴ ᎢᏗᎹ, ᎡᎳᏂ ᏧᏪᏥ.\nᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏘᏲᏢᎾᏁᏗ ᏘᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎡᏣᏂᎵ, ᏗᎬᏩᎸᏌᏛ ᎠᎴ ᎤᏬᏚᎯ ᎢᏳᏩᏁᎯ.\nᏂᎯᏃ ᏘᏁᏤᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᎠᏂᎦᏔᎾᎢ ᏙᏧᎾᏓᏅᏛᎢ, ᎾᏍᎩ ᎧᎵᎢ ᎦᏥᏁᎸᎯ ᏥᎩ ᎠᏓᏅᏙ ᎠᎦᏔᎾᎢ ᎾᏍᎩ ᏧᏃᏢᎾᏁᏗᏱ ᎡᎳᏂ ᏧᏄᏬᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏨ ᎢᏳᏩᏁᎯ, ᎪᎱᏍᏗ ᎠᏆᏛᏁᏗᏱᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎴ ᎯᎠ ᎾᏍᎩ ᏗᎸᏬ ᏧᏃᏢᏗ ᎨᏒᎢ; ᎠᏓᏁᏣᏍᏚᎶ, ᎠᎴ ᎡᏉᏗ, ᎠᎴ ᏂᎦᏰᏫᏒᎾ ᎠᏄᏬ, ᎠᎴ ᏗᎪᏪᎵ ᎭᏫᏂ ᎠᏄᏬ, ᎠᎵᏍᏚᎶ, ᎠᎴ ᎠᏓᏠᏍᏗ; ᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏧᏃᏢᎾᏁᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎡᏣᏂᎵ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎪᎢᏍᏗ ᎠᏆᏛᏁᏗᏱ ᎠᏂᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎴ ᎤᏅᏙᏗ ᎨᏎᏍᏗ, ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᏢᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ.\nᎡᏉᏗᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏃᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ, ᎠᎴ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏎᏍᏗ ᎾᎿᏂ.\nᎢᏧᎳᏃ ᏗᎦᏅᏬ ᏤᎯ ᎢᏧᎳ ᏓᏍᏛ ᏧᏠᎯᏍᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏃ ᏚᏚᏓᏖᏍᏗ.\nᎠᏓᏠᏍᏗᏃ ᎡᏉᏗ ᎦᎸᏍᏙᏗ ᎾᎿ ᏂᎦᏛ ᎤᏠᏱᏉ ᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩᏯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ; ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏏᏓᎵ.\nᎠᎴ ᏔᎵ ᎣᏂᎩ ᏅᏯ ᏕᎯᎩᎡᎭ, ᎠᎴ ᎾᎿ ᏕᎯᏰᎶᎸᎭ ᏕᎨᏪᎳᏅᎭ ᏕᎣᎾ ᏙᎥ ᎢᏏᎵ ᏧᏪᏥ;\nᏑᏓᎵ ᏚᎾᏙᎥ ᏌᏉ ᏅᏲᎯ ᏕᎪᏪᎴᏍᏗ, ᎠᏂᏐᎢᏃ ᏚᎾᏙᎥ ᏑᏓᎵ ᎢᏯᏂᏛ ᏐᎢᏱ ᎾᏲᎯ ᏕᎪᏪᎴᏍᏗ, ᎾᏍᎩᏯ ᎤᎾᏕᏅᏒᎢ.\nᎾᏍᎩ ᏅᏲᎯ ᎠᏰᎶᎯ ᏗᎪᏪᎵᏍᎩ ᎤᏬᏪᎳᏅᎯ ᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᎠᏐᎥᏍᏙᏗ ᏂᎬᏅᎢ ᎪᏪᎸ ᏕᎪᏪᎴᏍᏗ, ᎾᏍᎩ ᏔᎵ ᏅᏯ, ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏙᎥ ᏕᎪᏪᎴᏍᏗ; ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎾᎿ ᏅᏯᏗᎦᎪᏗᏱ ᏕᎯᎧᏅᎴ.\nᎾᏍᎩᏃ ᏔᎵ ᏅᏯ ᎡᏉᏗᏱ ᏗᎦᏅᏬᎢ ᏕᎧᏅᎭ, ᎾᏍᎩ ᏅᏯ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ, ᎡᎳᏂᏃ ᎾᏍᎩ ᏚᎾᏙᎥ ᏕᎤᏃᏝᎮᏍᏗ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩ ᎨᎦᏅᏓᏍᏙᏗ. .\nᎠᎴ ᏅᏯ ᏗᎦᎪᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎨᏢᏔᏅᎭ;\nᏧᏓᏕᏒᏛᏃ ᏔᎵ ᏕᎨᏢᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏕᎰᏢᏔᏅᎭ, ᏓᏍᏛᎢ ᏕᎦᏕᏍᏗ; ᎾᏍᎩ ᏗᏏᏓᎵ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᏧᏓᏕᏒᏛ ᏅᏯᏗᎦᎪᏗᏱ ᏕᎫᏓᎴᏍᏗ.\nᎠᏓᏁᏣᏍᏚᎶᏃ ᏗᎫᎪᏙᏗ ᎰᏢᏅᎭ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏔᏁᎸᎯ ᎨᏎᏍᏗ; ᎡᏉᏗ ᎢᏨᏁᏗ ᎨᏒ ᎾᏍᎩᏯ ᏅᏁᎸᎭ ᎨᏢᏅᎭ; ᎰᏢᏔᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎠᎴ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸ ᏗᏌᏓᎵ.\nᎢᎦᏲᏛᎭ ᎨᏎᏍᏗ ᎬᏩᏚᏫᏛ ᏗᏯᎦᏑᏛᏅᎯ ᎨᏒᎢ, ᎠᏓᏬᎯᎳ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᎠᏓᏬᎯᎳ ᎾᏯᏛᎡᏍᏗ.\nᎠᎴ ᎾᎿ ᏗᏣᎪᏗ ᎨᏎᏍᏗ ᎾᏯ, ᎾᏍᎩ ᏅᎩ ᏂᏚᏓᏅᏅ ᏅᏯ; ᏌᏉ ᎤᏓᏅᏅ, ᏓᏂᎵᏯ, ᎠᎴ ᏙᏆᏏ, ᎠᎴ ᎡᎻᎳ ᏕᎦᎧᎮᏍᏗ; ᎯᎠ ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᏓᏅᏅ ᎨᏎᏍᏗ.\nᏔᎵᏁᏃ ᎤᏓᏅᏅ ᏃᏈᎩ, ᏌᏆᏯ ᎠᎴ ᏓᎹᏂ ᏕᎦᎧᎮᏍᏗ.\nᏦᎢᏁᏃ ᎤᏓᏅᏅ ᏤᏏᏂ, ᎡᎩᏗ, ᎠᎴ ᎠᎻᏗᏏ ᏕᎦᎧᎮᏍᏗ.\nᏅᎩᏁᏃ ᎤᏓᏅᏅ ᏇᎵ, ᎠᎴ ᎣᏂᎩ, ᎠᎴ ᏣᏍᏆ; ᎠᏕᎸ ᏓᎶᏂᎨᏍᏛᏱ ᏕᎦᏬᎮᏍᏗ ᎾᎿ ᏗᎦᎪᏗᏱ ᎨᏒ.\nᎤᏲᎯᏃ ᏓᏰᎶᎴᏍᏗ ᏕᎪᏪᎴᏍᏗ ᏚᎾᏙᎥ ᎢᏏᎵ ᏧᏪᏥ, ᏔᎳᏚ ᎨᏎᏍᏗ ᏚᎾᏙᎥ ᏕᎪᏪᎸᎢ, ᎠᏐᎥᏍᏙᏗ ᏥᏂᎬᏃ ᏥᎪ-ᏪᎶ ᎾᏍᎩᏯᎢ; ᎠᏂᏏᏴᏫᎭ ᏚᎾᏙᎥ ᏕᎪᏪᎴᏍᏗ ᎾᏍᎩ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸᎢ.\nᎠᏓᏁᏣᏍᏚᎶᎩ ᎯᏃ ᏓᏍᏛᎢ ᏧᏓᏕᏒᏛ ᏗᏣᏛᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎪᏢᏔᏅᎯ ᎨᏎᏍᏗ.\nᎠᎴ ᎠᏓᏁᏣᏍᏕᎶᎩᎯ ᏔᎵ ᏧᏓᏆᏙᎩ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩᏃ ᎯᎠ ᏔᎵ ᏧᏓᏆᏙᎩ ᏗᏣᏆᏙᎩ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᎢᏧᎳ ᎢᏗᏢ ᏓᏍᏛ ᎠᏓᏁᎳᏍᏚᎶᎩᎯ.\nᎾᏍᎩᏃ ᏔᎵ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᏕᎸ ᏓᎵᏂᎨ ᏗᎪᏢᏔᏅᎯ ᏗᏣᏛᏗ ᎨᏎᏍᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᎢᏧᎳᏗᏢ ᏓᏍᏛ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ.\n[ᏗᏐᎢᏃ] ᏔᎵ ᏧᏍᎪᎵ ᎾᏍᎩ ᏔᎵ ᏗᏏᏓᎵ ᏧᏓᏕᏒᏛ ᏕᎱᏓᎸᏅᎭ ᏔᎵ ᏅᏯᏗᎦᎪᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏕᎱᏓᏔᏅᎭ ᏗᎦᏅᏬ ᏤᎯ ᎾᏍᎩ ᎡᏉᏗᏱ ᎢᎬᏱᏗᏢ.\nᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᏕᎰᏢᏅᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎨᏢᏔᏅᎭ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏧᏍᎪᎵ ᎢᏧᎳ ᎢᏗᏢ ᏕᎭᏔᏅᎭ, ᎾᎿ ᏓᏍᏛᎢ, ᎾᏍᎩ ᎡᏉᏗᏱ ᎠᏍᏆᎨᏂ ᎭᏫᏂᏗᏢ ᏥᎩ.\nᏂᏗᎬᏩᏓᎴᏃ ᏧᏓᏆᏙᎩ ᏔᎵ ᎠᏕᎸ ᏓᎶᏂᎨ ᏕᎰᎨᏢᏔᏅᎭ, ᎠᎴ ᏕᎭᏔᏅᎭ ᎡᏉᏗᏱ ᏔᎵ ᏗᎦᏅᏬ ᏤᎯ ᎭᏫᏂᏗᏢ, ᎢᎬᏱ ᎢᏗᏢ, ᏕᎫᏓᏛ ᎾᎥᎢ, ᎡᏉᏗ ᎦᎸᏍᏗᏗ ᎦᎸᎥ ᎦᎸᎳᏗᏢ.\nᎠᏓᏁᏣᏍᏚᎶᏃ ᎠᎴ ᎡᏉᏗ ᏧᏓᏚᏙᏗ ᎨᏎᏍᏗ ᏧᏓᏆᏙᎩ ᏕᎦᏛᎢ, ᎤᏅᏙᏗ ᎠᏍᏘ ᏕᎭᎷᎨᎢ, ᎾᏍᎩ ᎦᎸᎳᏗᏢ ᎢᏳᎵᏍᏙᏗᏱ ᎾᎿ ᎦᎸᏍᏗ ᎦᎸᎥ ᎡᏉᏗ, ᎾᏍᎩ ᎠᏓᏁᏣᏍᏚᎶ ᎡᏉᏗᏃ ᏧᎾᎦᎴᏅᏗᏱ ᏂᎨᏒᎾ.\nᎡᎳᏂᏃ ᎢᏏᎵ ᏧᏪᏥ ᏚᎾᏙᎥ ᏓᏱᏙᎮᏍᏗ ᏗᎫᎪᏙᏗ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏕᎦᎧᎲᎢ ᎤᎾᏫᏱ ᏄᏩᏁᏍᏗ ᎾᎯᏳ ᏩᏴᎯᎮᏍᏗ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲ ᏂᎪᎯᎸᎢ.\nᎠᎴ ᏗᎫᎪᏙᏗ ᎠᏓᏁᏣᏍᏕᎶᎩᎯ ᎾᎿ ᏗᏣᎪᏗ ᎨᏎᏍᏗ ᎤᎵᎻ ᎠᎴ ᎡᎳᏂ ᎤᎾᏫᏱ ᏂᏕᎤᏍᏕᏍᏗ ᎾᎯᏳ ᏱᎰᏩ ᎠᎦᏔᎲ ᏫᎦᎷᎨᏍᏗ; ᎠᎴ ᎡᎳᏂ ᎤᎾᏫᏱ ᏂᏕᎤᏍᏕᏍᏗ ᏗᎨᎫᎪᏓᏁᏗ ᎢᏏᎵ ᏧᏪᏥ ᏱᎰᏩ ᎠᎦᏔᎲ ᏂᎪᎯᎸᎢ.\nᎠᏄᏬᏃ ᎡᏉᏗ ᎭᏫᏂᏗᏢ ᎠᏄᏬᏍᏗ ᏕᎭᎷᎨᏍᏛᎭ ᏦᏢᏙᏗ ᎨᏎᏍᏗ.\nᎤᏍᎩᎵᏃ ᎾᎿ ᎠᏰᎵ ᎠᏔᎴᎭᏍᏗ, ᎠᎴ ᎠᎬᏔᏅᏕᏍᏗ ᎬᏅᎯ ᎠᏔᎴᏒ ᎤᏚᏫᏛ ᎭᏆᏥᏂ ᏣᏔᎴᏐ ᎾᏍᎩᏯᎢ, ᎾᏍᎩ ᎤᏓᏣᎦᎸᏗᏱ ᏂᎨᏒᎾ.\nᎭᏫᏂᏗᏢᏃ ᎦᏓᎷᏯᏛᎢ ᏆᎻᏆᏂ ᏗᏦᏢᏗ ᎨᏎᏍᏗ ᎠᏂᏕᎭᎷᎨ ᎠᎴ ᎠᏂᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎠᏂᎩᎦᎨᎢ, ᎦᏓᎷᏯᏛ ᎤᏚᏫᏛ ᏗᏣᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᎭᎸᏂᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎠᏰᎵ ᏗᏣᏙᏗ ᎨᏎᏍᏗ ᎾᎿ ᎬᏩᏚᏫᏛ;\nᎢᎬᏱ ᎦᏖᏍᏗ ᎤᎭᎸᏂᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ, ᎿᏉᏃ ᏆᎻᏆᏂ, ᎤᎭᎸᏂᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ, ᎠᎴ ᏆᎻᏆᏂ, ᎾᎿ ᎦᏓᎷᏯᏛ ᎠᏄᏬᎩᎯ ᎤᏚᏫᏛ.\nᎡᎳᏂᏃ ᎤᏄᏪᏍᏗ ᏚᎸᏫᏍᏓᏁᎸᎭ: ᎤᏓᏃᏴᎵᏍᏛᏃ ᎬᏛᎪᏗ ᎨᏎᏍᏗ ᏩᏴᎯᎮᏍᏗ ᎦᎸᏉ ᏗᏳ ᎨᏒ ᏱᎰᏩ ᎠᎦᏔᎲᎢ, ᎠᎴ ᏗᎦᏄᎪᎨᏍᏗ, ᎾᏍᎩ ᎤᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ.\nᎠᏯᏖᎾᏃ ᎤᏥᏍᏓᎷᎩᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎰᏢᏔᏅᎭ; ᎾᎿᏃ ᎯᏰᎶᎸᎭ ᎬᏪᎳᏅᎭ ᎠᏐᎥᏍᏙᏗᏱ ᏥᏕᎪᏪᎶ ᎾᏍᎩᏯᎢ, ᎯᎠ ᏄᏍᏕᏍᏗ, ᏱᎰᏩ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎢᏯᎬᏁᎸᎯ.\nᎾᏍᎩᏃ ᏕᎭᎷᎨ ᎠᏇᎷᏍᏗ ᎢᏳᏍᏗ ᎾᎿ ᏣᏯᎸᏗ ᎨᏎᏍᏗ, ᎾᏍᎩᏃ ᎠᎵᏍᏚᎶᎩᎯ ᎦᏯᎴᏍᏗ, ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᎠᎵᏍᏚᎶᎩᎯ ᎦᏯᎴᏍᏗ.\nᎠᎴ ᎡᎳᏂ ᎠᎬᏓᎨᏂ ᎦᏯᎴᏍᏗ; ᎠᎴ ᎡᎳᏂ ᎠᏱᏙᎮᏍᏗ ᎤᏂᏍᎦᏅᏨ ᎾᎿ ᎦᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏥᎾᏅᏁᎭ ᎢᏏᎵ ᏧᏪᏥ ᏄᏓᎴᏒ ᎠᎾᎵᏍᎪᎸᏗᏍᎬᎢ; ᎠᎴ ᏂᎪᎯᎸ ᎦᏯᎴᏍᏗ ᎡᎳᏂ ᎠᎬᏓᎨᏂ, ᎾᏍᎩ ᎨᎦᏓᏂᎸᎢᏍᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲᎢ.\nᎠᎴ ᏴᎩ ᎬᏗ ᏗᏥᏪᎶᏗ ᎨᏎᏍᏗ ᎭᏫᏂ ᎠᏄᏬ ᎤᏏᏙᎵ ᎤᏥᎸ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᎵᏍᏚᎶ ᎤᏏᏙᎵ ᎤᏥᎸ ᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏓᏠᏍᏗ ᏦᏪᎶᏗ ᎨᏎᏍᏗ ᏴᎩ ᎬᏗ.\nᎠᎴ ᎡᎳᏂ ᏧᏪᏥ ᎭᏫᏂ ᏧᎾᏄᏬ ᏗᎩᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎾᏓᏠᏍᏗ ᏗᎩᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏗᎩᏲᏢᏁᏗ ᎨᏎᏍᏗ ᏄᎾᎵᏍᏚᎶ ᏧᎸᏌᏛ ᎠᎴ ᎤᏬᏚᎯ ᎢᏳᏅᏁᎯ.\nᎡᎳᏂᏃ ᎡᏣᏂᎵ ᎠᎴ ᏧᏪᏥ ᎾᏍᎩ ᏗᎩᏄᏬᏍᏙᏗ ᎠᎴ ᏗᎩᏍᏚᎶᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᏗᎩᎶᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎩᏯᏒᎦᎶᏗ ᎨᏎᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᎩᏴᏁᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᏧᎾᏑᎶᏃ ᏗᎩᏲᏢᎾᏁᏗ ᎨᏎᏍᏗ ᎤᏥᎸ ᎠᏄᏬ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩ ᎤᏂᏲᏓᎬ ᎨᏒ ᎤᏄᏢᏉᏗ: ᏗᏂᏖᏍᎨᏂ ᎠᏃ ᏗᏂᎦᎶ ᎢᏴᏛ ᏫᏚᏂᎶᎨᏍᏗ.\nᎡᎳᏂᏃ ᎠᎴ ᏧᏪᏥ ᎾᏍᎩ ᏚᎾᏑᎴᏍᏗ ᎾᎯᏳᏩᏂᏴᎯᎮᏍᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎾᎯᏳ ᎠᏥᎸ ᎨᎳᏍᏗᏱᎾᎥ ᏩᏂᎷᎨᏍᏗ ᏧᏂᎸᎡᎢᏍᏓᏁᏗᏱ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; ᎾᏍᎩ ᎤᏂᏱᏓᏍᏗᏱ ᏂᎨᏒᎾ ᎠᏍᎦᏂ, ᎠᎴ ᏧᏂᏲᎱᎯᏍᏗᏱ ᏁᎨᏒᎾ. ᎾᏍᎩ ᏧᎧᎾᏩᏛᏍᏗ ᎨᏎᏍᏗ ᎤᏩᏒ, ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᏔᏅᎩ ᎨᏒ ᏂᎪᎯᎸᎢ.\nᎯᎠᏃ ᎾᏍᎩ ᎢᎩᏴᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᏂᎩᏴᏁᎸᎭ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ. ᏌᏉ ᏩᎦ ᏧᎪᏅᏍᏓᎵ ᎭᏘᏁᏒᎭ, ᎠᎴ ᎠᏂᏔᎵ ᎤᏂᏃᏕᎾ ᏧᎾᎪᏅᏍᏓᎵ ᎪᎱᏍᏗ ᏄᏂᎪᎸᎾ,\nᎠᎴ ᎦᏚ ᎾᎪᏔᏅᎾ, ᎠᎴ ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᎪᎢ ᏗᏑᏱ, ᎠᎴ ᏗᏌᎨ ᎦᏚ ᏂᏓᎪᏔᏅᎾ ᏗᎦᎶᏁᎥᎯ; ᎤᏣᎴᏍᏗ ᎢᏒ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ.\nᏌᏉᏃ ᏔᎷᎶᎩᎯ ᏗᏣᎶᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏔᎷᏣᎩᎯ ᏗᎦᎵ ᏗᏣᏲᎯᏍᏗ ᎨᏎᏍᏗ, ᏚᎵᏠᏯᏍᏕᏍᏗ ᏩᎦ ᎠᎴ ᎠᏂᏔᎵ ᎤᏂᏃᏕᎾ.\nᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏗᎩᏯᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎹ ᏗᎩᏯᏬᏍᏙᏗ ᎨᏎᏍᏗ.\nᏗᏄᏬᏃ ᏗᏣᏁᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎭᏫᏂ ᎠᏄᏬ ᎯᏄᏬᏍᏗ ᎨᏎᏍᏗ ᎡᎳᏂ, ᎠᎴ ᏂᎦᏰᏫᏒᎾ ᎠᏄᏬ ᎡᏉᏗ ᏗᏂᏰᎦᎵ ᎯᏄᏬᎥᎭ, ᎠᎴ ᎡᏉᏗ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶ, ᎠᎴ ᎯᏯᏠᏍᏔᏅᎭ ᎠᏓᏠᏍᏗ ᎡᏉᏗ ᎦᎸᏍᏙᏗ.\nᎠᎵᏍᏚᎶᏃ ᎯᏍᏚᎶᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎦᎸᏉᏗ ᎠᏯᏖᎾ ᎤᏥᏍᏓᎷᎩᏍᎩ ᎠᎵᏍᏚᎶᎩᎯ ᎯᏯᎸᏅᎭ.\nᎪᎢᏃ ᎠᏠᏁᏗ ᎯᏁᎩᏒ ᎠᎴ ᎠᏍᎪᎵ ᎯᏍᏚᏢᎭ ᎠᎴ ᎯᎶᏁᎥᎭ.\nᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏕᎭᏘᏃᎸᎭ, ᎠᎴ ᎭᏫᏂ ᏗᏄᏬ ᏕᎩᏄᏫᎥᎭ.\nᎠᎴ ᏕᎩᏯᏠᏍᏔᏅᎭ ᏗᏓᏠᏍᏗ ᎡᎳᏂ ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏕᎩᏍᏚᎶᏔᏅ ᏗᎵᏍᏚᎶ; ᎠᏥᎸᏃᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎤᎾᏤᎵ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᏂᎪᎯᎸᎢ; ᎠᎴ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎩᏯᏒᎦᎸᏙᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ.\nᎠᎴ ᎯᏯᏘᏃᎯᏍᏗ ᎨᏎᏍᏗ ᏧᎪᏅᏍᏓᎵ ᏩᎦ ᎢᎬᏱᏗᏢ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎠᎴ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎠᏍᎪᎵ ᏩᎦ ᏧᎾᏏᏔᏗᏍᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎯᎢᏍᏗ ᎨᏎᏍᏗ ᏩᎦ ᏱᎰᏩ ᎠᎦᏔᎲ ᎦᎶᎯᏍᏗᏳᎶᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᎢᎦᏛᏃ ᎾᏍᎩ ᏩᎦ ᎤᎩᎬ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏅᎵᏰᏗ ᎨᏎᏍᏗ ᎯᏰᏌᏛ ᎬᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏚᎷᎬᎢ, ᏂᎦᏛᏃ ᎩᎬ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎦᎧᎲ ᎤᎶᏗᏢ ᏣᏨᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏂᎦᏛ ᎤᎵᏦᎯᏛ ᏧᎵᎩᏏᏱ ᎦᏯᎸ ᏣᎴᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏪᎶ ᎦᎸᎳᏗᏢ ᏓᏓᎯᏢ ᎡᎯ, ᎠᎴ ᎢᏧᎳ ᏧᏓᎵ ᎠᎴ ᎤᎵᏦᎯᏛ ᎾᎿ ᎦᏯᎸᎢ; ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏕᎭᎪᎲᏍᏔᏅᎭ.\nᎤᏫᏯᏍᎩᏂ ᎾᏍᎩ ᏩᎦ ᎠᎴ ᎤᏁᎦ, ᎠᎴ ᎤᏬᎳᏅᎢ, ᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸᏱ ᎠᏂᏅ ᏙᏱᏗᏢ; ᎠᏍᎦᏅᏨ ᎠᎵᏍᎪᎸᏙᏗ ᎾᏍᎩ.\nᎠᎴ ᎤᏃᏕᎾ ᏌᏉ ᎯᏯᏘᏅᏍᏗ ᎨᏎᏍᏗ; ᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏏᏔᏗᏍᏗ ᎨᏎᏍᏗ ᎠᏍᎪᎵ ᎤᏃᏕᎾ.\nᎠᎴ ᎯᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ, ᎠᎴ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ ᎤᎩᎬ ᎠᎴ ᎠᏥᎸ -ᎨᎳᏍᏗᏱ ᏂᎬᎾᏛ ᏗᏣᏍᏚᏟᏓᏍᏗ ᎨᏎᏍᏗ.\nᎤᏃᏕᎾᏃ ᎯᎬᎠᎷᏯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᎵᎩᏏ ᏗᏨᎩᎶᏍᏗ ᎨᏎᏍᏗ ᎠᎴ ᏗᎦᏅᏍᎨᏂ, ᏗᎬᎭᎸᏛᏃ ᎠᎴ ᎤᏍᎪᎵ ᏓᎲ ᎾᎿ ᏗᏣᏗ ᎨᏎᏍᏗ ᎾᏍᎩ.\nᎤᏃᏕᎾᏃ ᏂᎬ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎯᏯᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎰᏩ ᎯᎠ; ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎯᎠ, ᎠᏥᎸ ᎬᏗ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎰᏩ.\nᎠᎴ ᏐᎢ ᎤᏃᏕᎾ ᎯᏯᏘᏅᏍᏗ ᎨᏎᏍᏗ; ᎡᏁᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏏᏔᏗᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ ᎤᏍᎪᎵ.\nᎿᏉᏃ ᎯᎢᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ, ᎠᎴ ᎢᎦᏛ ᎤᎫᎬ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏅᎵᏰᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎦᏘᏏ ᎦᎴᏂ ᎠᏍᏛᎢ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎠᎦᏘᏏ ᏗᏂᎴᏂ ᎠᏍᏛᎢ, ᎠᎴ ᎤᏛᏃᎯ ᏓᏂᏰᏌᏛ ᎠᎦᏘᏏ. ᏧᏃᏰᏂ, ᎠᎴ ᏧᏛᏃᎯ ᏓᏂᎾᏌᏛᎢ ᎠᎦᏘᏏ ᏧᎾᎳᏏᏕᏂ, ᎠᎴ ᎩᎬ ᏗᏣᏍᏚᏟᏓᏍᏗ ᎨᏎᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏂᎬᎾᏛᎢ.\nᎩᎬᏃ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᎤᏓᏅᎵᏰᎥ ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ ᏣᏁᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎡᎳᏂ ᎯᏍᏚᏟᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏄᏬᎩᎯ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎠᎴ ᎾᏍᎩ ᏧᎾᏄᏬᎩᎯ; ᎾᏍᎩᏃ ᎠᏥᎸᏉᏔᏅᎯ Ꮥ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏄᏬ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏄᎾᏄᏬ ᏗᎦᎸᏉᏔᏅᎯ ᎨᏎᏍᏗ.\nᎠᎴ ᎾᏍᏉ ᎾᏍᎩ ᎤᏃᏕᎾ ᎤᎵᏦᎯᏛ ᎠᎴ ᏗᎦᏆᎵᎢ, ᎠᎴ ᎤᎵᏦᎯᏛ ᏧᎵᎩᏏᎯ ᎦᏯᎸᎢ, ᎠᎴ ᎤᏪᎶ ᎦᎸᎳᏗᏢ ᏓᏓᎯᏢ ᎡᎯ, ᎠᎴ ᎢᏧᎳ ᏧᏓᎵ, ᎠᎴ ᎤᎵᏦᎯᏛ ᎾᎿ ᎦᏯᎸᎢ, ᎠᎴ ᎠᎦᏘᏏ ᎦᎦᎳ; ᎦᎸᏉᏗᏳᏰᏃ ᎢᎬᏁᎯ ᎤᏃᏕᎾ.\nᎠᎴ ᏌᏉ ᎦᏌᏆᎸ ᎦᏚ, ᎠᎴ ᏌᏉ ᎦᏚ ᎪᎢ ᏗᏑᏱ, ᎠᎴ ᏌᏉ ᏌᎨ ᎦᏚ ᏔᎷᏣᎩᎯ ᏗᎦᎴᏛ ᎾᏍᎩ ᎾᎿ ᎾᎪᏔᏅᎾ ᎦᏚ ᎦᎸᎢ ᏱᎰᏩ ᎠᎦᏔᎲ ᎢᎬᏱᏗᏢ ᎠᏝᎲᎢ.\nᎾᏍᎩᏃ ᏂᎦᏛ ᏗᎩᏯᏒᎦᎶᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎴ ᏧᏪᏥ, ᎠᎴ ᏗᏣᏖᎸᏗ ᏗᏣᏨᏏᏰᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏨᏏᏰᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲᎢ.\nᎠᎴ ᏗᎩᏯᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏗᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏥᎸ-ᎨᎳᏍᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎨᏎᏍᏗ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩ ᎯᎠ ᎠᏥᎸ ᎬᏗ ᎠᎵᏍᎪᎸᏔᏅᎯ ᏱᎰᏩ ᎠᎦᏔᎲᎢ.\nᎤᏃᏕᎾᏃ .ᎡᎳᏂ ᎦᎸᎳᏗᏱ ᎢᏳᏩᏁᎯ ᎦᏁᏥᏱ ᎡᎯ ᏣᎩᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᏣᏕᎸᏗ ᏣᏨᏏᏰᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏨᏏᏰᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᎠᎦᏔᎲᎢ; ᎠᎴ ᏂᎯ ᏣᏤᎵ ᎨᏎᏍᏗ.\nᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏨᏁᏗ ᎨᏎᏍᏗ ᎦᏁᏥᏱ ᎾᏍᎩ ᎠᏨᏏᏰᏗ, ᎠᎴ ᎦᏚᎳ ᎾᏍᎩ ᎠᏌᎳᏙᏗ, ᎾᏍᎩ ᎠᏨᏏᏰᏗ ᏥᎩ, ᎠᎴ ᎠᏌᎳᏙᏗ ᏥᎩ, ᎾᏍᎩ ᎤᏃᏕᎾ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎯ, ᎾᏍᎩ ᎡᎳᏂ ᎤᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏧᏯᏥ ᎤᎾᏤᎵᎦ.\nᎠᎴ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎤᎾᏤᎵ ᎨᏎᏍᏗ ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᎬᏩᏂᏁᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ ᏂᎪᎯᎸᎢ; ᎾᏍᎩᏰᏃ ᎠᏌᎳᏙᏗ ᎠᎵᏍᎪᎸᏙᏗ, ᎠᎴ ᎠᏌᎳᏙᏗ ᎠᎵᏍᎪᎸᏉᏗ ᎨᏎᏍᏗ, ᎢᏏᎵ ᏧᏪᏥ ᎤᎾᎵᏍᎪᎸᏙᏗ, ᎾᏍᎩ’ ᎠᏥᎸ-ᎨᎳᏍᏗ ᏙᎯᏱ ᎤᏂᏁᎯ ᎪᏣᎴᏛ, ᎠᏌᎳᏙᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎤᎾᎵᏍᎪᎸᏓᏁᏗ ᏱᎰᏩ.\nᏗᎦᎸᏉᏗᏃ ᏗᏄᏬ ᎡᎳᏂ ᏧᏤᎵᎦ, ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏲᎱᏒᎭ, ᎾᏍᎩ ᏚᎾᏄᏪᏍᏗ ᎨᏥᎶᏁᎥᎭ ᎠᎴ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎨᎦᏒᎦᎶᏔᏅᎭ.\nᎾᏍᎩᏃ ᎤᏪᏥ ᎤᏓᏁᏟᏴᏍᏓᏁᎸᎯ ᎠᏥᎸ ᎨᎶᎯ ᎨᏒᎢ, ᏧᏄᏬᏍᏗ ᎨᏎᏍᏗ ᏚᎵᏉᎩ ᎢᎦ, ᎾᎯᏳ ᎠᏴᎵᎸᎭ ᎦᎵᏦᏛ ᏗᏚᎳᏫᎢᏍᏗᏱ, ᏧᎸᏫᏍᏓᏁᏗᏱ ᎾᎿ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎤᏃᏕᎾᏃ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎯ, ᏣᏁᏍᏗ ᎨᏎᏍᏗ ᎠᎴ ᏧᏗ ᎨᏎᏍᏗ ᎾᎿ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ ᎤᏃᏕᎾ ᎤᏫᏯ, ᎠᎴ ᎦᏚ ᏔᎷᏣᎩᎯ ᎦᎸᎢ, ᎦᎶᎯᏍᏗᏳᎶᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᎠᎴ ᎤᏂᎩᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏧᏓᎴᏅᏛ ᎤᏃᎯᏍᏙᏔᏅᎯ ᎾᏍᎩ ᏧᎾᏒᎦᎶᏗᎭ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᎴ ᎦᎸᏉᏗᏳ ᏥᏄᏅᏁᎭ, ᏅᏩᏓᎴᏍᎩᏂ ᎥᏝ ᎤᎩᏍᏗ ᏱᎨᏎᏍᏗ, ᏚᎸᏉᏗᏳᏰᏃ.\nᎢᏳᏃ ᎢᎦᏛ ᎤᏫᏯ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎠᏓᏒᎦᎶᏗᏍᎩ ᎠᎴ ᎦᏚ ᏳᎵᏃᎯᏴ ᏑᎾᎴ ᎢᏴᏛ, ᎿᏉ ᎾᏍᎩ ᎤᎵᏃᎯᏴᎯ ᏣᎪᎲᏍᏙᏗ ᎨᏎᏍᏗ ᎠᏥᎸᏱ; ᎥᏝ ᎠᎩᏍᏗ ᏱᎨᏎᏍᏗ, ᎦᎸᏉᏗᏳᏰᏃ.\nᎠᎴ ᎾᏍᎩ ᎢᎩᏴᏁᏗ ᎨᏎᏍᏗ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩᏯ ᏂᎦᎥ ᏂᎬᏪᏎᎸ ᎬᏁᏤᎸᎢ; ᎦᎵᏉᎩ ᎢᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎯᎠ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎩᏯᏒᎦᎶᏗᏍᎬ.\nᎠᎴ ᏂᏚᎩᏨᏂᏒ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ ᏩᎦ ᎠᏍᎦᏅᏨ ᎠᎵᏍᎪᎸᏙᏗ, ᎾᏍᎩ ᎪᎯᏍᏗᏍᎩ; ᎠᎴ ᏣᏅᎦᎸᏗ ᎨᏎᏍᏗ ᎠᏥᎸᎨᎳᏍᏗᏱ ᎨᎯᏍᏓᏁᎸᎢ, ᎠᎴ ᏣᎶᏁᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎯ.\nᎦᎸᏉᎩ ᎢᎦ ᏦᎯᏍᏓᏁᏗ ᎨᏎᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏨᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᏂᎦᎥᏃ ᎪᎱᏍᏗ ᎦᏃᏟᏍᏗᏍᎨᏍᏗ ᎾᏍᎩ ᎠᏂᎸ- ᎨᎳᏍᏗᏱ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᎾᏍᎩ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎠᏥᎸᎨᎳᏍᏗᏱ; ᎠᏂᏔᎵ ᎤᏂᏃᏕᎾ ᎤᎾᏕᏘᏴᏛ ᏂᏚᎩᏨᏂᏒ ᏂᎪᎯᎸᎢ ᏗᏣᏢᏍᎪᎸᏙᏗ.\nᏌᏉ ᎤᏃᏕᎾ ᏑᎾᎴ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ, ᏐᎢᏃ ᎤᏃᏕᎾ ᎤᏒ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ;\nᏌᏉᏃ ᎤᏃᏕᎾ ᎤᎵᏠᏯᏍᏕᏍᏗ ᏩᎾᎨ ᎢᏒ ᎠᏍᎪᎯᏁ ᎢᎦᏛᎯ ᎠᏟᎶᎥᎯ, ᎠᏑᏰᏍᏗ ᎪᎢ ᎦᏅᏆᎶᎥᎯ, ᏅᎩ ᎢᎦᏛᎯ ᎯᎾ ᎠᏟᎶᏍᏗ ᏌᏉ ᎢᏯᏟᎶᎥᎯ; ᎠᎴ ᏅᎩ ᎢᎦᏛᎯ ᎯᎾ ᎠᏟᎶᏍᏗ ᎩᎦᎨ ᎠᏗᏔᏍᏗ, ᎾᏍᎩ ᎠᎵᏍᎪᎸᏙᏗ ᎠᏗᏔᏍᏗ.\nᏐᎢᏃ ᎤᏃᏕᎾ ᎤᏒ ᏣᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩᏯ ᎢᏨᏁᏗ ᎨᏎᏍᏗ ᎢᏒ ᎠᎵᏍᎪᎸᏙᏗ ᏂᏨᏁᎸ ᏑᎾᎴᎢ, ᎠᎴ ᎾᏍᎩᏯ ᎠᏗᏔᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᏂᏨᏁᎸᎢ, ᎾᏍᎩ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ. ᎠᏥᎸ ᎬᏗ ᎠᎵᏍᎪᎸᏓᏁᎸᎯ ᏱᎰᏩ.\nᎯᎠ ᎾᏍᎩ ᏄᏍᏕᏍᏗ ᎠᏥᎸ-ᎨᎳᏍᏗ ᏂᎪᎯᎸ ᏂᏨᎾᏛ. ᎢᏣᏓᏁᏟᏴᏏᏒᎢ, ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᏱᎰᏩ ᎠᎦᏔᎲ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏎᏍᏗ; ᎾᎿ ᏗᏨᏯᏠᎢᏍᏗ ᎨᏎᏍᏗ, ᎾᎿ ᎬᏯᎵᏃᎮᏙᏗᏱ.\nᎾᎿᏃ ᏗᎦᏥᏯᏠᎢᏍᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ, ᎦᎸᏉᏗᏳᏃ ᎢᏳᏩᏁᏗ ᎨᏎᏍᏗ ᏓᎩᎸᏌᏛ ᎾᎿᏂ.\nᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏯᏋᏁᏗ ᎨᏎᏍᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ; ᎠᎴ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᏅᏓᎦᏥᏴᏁᎵ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎠᏁᎲ ᎠᏆᏕᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏎᏍᏗ.\nᎠᎴ ᎠᏂᎦᏔᎮᏍᏗ ᎾᏍᎩ ᎠᏴ ᏱᎰᏩ ᎦᏥᏯᏁᎳᏅᎯ ᎨᏒᎢ, ᎾᏍᎩ ᏅᏓᎦᏥᏄᎪᏫᏒᎯ ᎢᏥᏈᏱ, ᎾᏍᎩ ᎠᏁᎲ ᎠᏆᏕᏗᏱ; ᎠᏴ ᏱᎰᏩ ᎦᏥᏯᏁᎳᏅᎯ.\nᎠᎴ ᎠᏥᎸ-ᎨᎳᏍᏗᏱ ᏦᏢᏗ ᎨᏎᏍᏗ ᎾᎿ ᎦᏩᏒᎩ ᎬᏙᏗᏱ; ᎠᏓ-ᎬᎿᎨ ᏦᏢᏙᏗ ᎨᏎᏍᏗ.\nᎠᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏎᏍᏗ, ᎠᎴ ᎠᎩᏳᏍᏈᏛ ᎾᏯᏛᎡᏍᏗ: ᎢᎦᏱᏛᎭ ᎨᏎᏍᏗ; ᏔᎵᏃ ᎢᏍᎩᏳᏍᏡᏛ ᏂᎦᏖᏍᏗ; ᏚᎷᎬᏃ ᎤᏠᏱ ᏗᎪᏢᏙᏗ ᎨᏎᏍᏗ.\nᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏧᏢᏙᏗ ᎨᏎᏍᏗ ᎦᏚ ᎢᏗᏢ, ᎠᎴ ᏗᏍᏆᎨᏂ ᎢᏗᏢ ᎤᏚᏫᏛ, ᎠᎴ ᎾᏍᎩ ᏚᎷᎬᎢ; ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏂᎬᏁᏕᏍᏗ ᎤᏚᏫᏛ ᎦᎸᎳᏗᏢ.\nᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᏗᏣᏙᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏚᏫᏛ ᏂᎬᏁᏛ ᎡᎳᏗᏢ, ᎾᎿ ᏔᎵ ᏓᏍᏛᎢ ᎢᏧᎳ ᎢᏗᏢ ᏗᏍᏆᎨᏂ ᎢᏗᏨᏁᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎾᎿ ᏚᏅᏍᏙᏗ ᏗᏝᏗᏍᏗᏱ ᎨᏎᏍᏗ ᎾᏍᎩ ᎦᏃᏍᏙᏗ.\nᎠᎴ ᎠᏓ-ᎬᎿᎨ ᏗᏦᏢᏙᏗ ᎨᏎᏍᏗ ᎦᏅᏍᏙᏗ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏧᏢᏙᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᎠᏄᏬ ᎠᏰᏙᎳᏛ ᎢᎬᏱᏗᏢ ᏣᎪᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ ᏥᏴ ᎾᎥᎢ, ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᎫᏢᏗ ᏥᏴ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ; ᎾᎿ ᏗᎬᏯᏠᎢᏍᏗ ᏥᎩ.\nᎡᎳᏂᏃ ᎾᎿ ᎤᏩᏙᏗ ᎨᏎᏍᏗ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ; ᎢᏳᏍᏗᎭ ᏑᎾᎴᎢ, ᎾᎯᏳ ᏗᏨᏍᏙᏗ ᏓᏛᏅᎢᏍᏗᏍᎨᏍᏗ ᎾᎯᏳ ᎦᏩᏒᎩ ᎬᏛᏍᎨᏍᏗ.\nᎡᎳᏂᏃ ᏓᏨᏍᏛᏍᎨᏍᏗ ᏗᏨᏍᏙᏗ ᎤᏒᎢ ᎾᎿ ᎬᏛᏍᎨᏍᏗ ᎦᏩᏒᎩ; ᏂᎪᎯᎸ ᏂᏨᎾᏛ ᎢᏣᏓᏁᏟᏴᏎᎬ ᎬᏙᏗ ᎨᏎᏍᏗ ᎦᏩᏒᎩ ᏱᎰᏩ ᎠᎦᏔᎲᎢ.\nᎥᏝ ᎤᏓᎴᎯ ᎦᏩᏒᎩ ᎾᎿ ᎢᏨᏙᏗ ᏱᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎾᎿ ᎠᏥᎸ ᎢᏤᎳᏍᏙᏗ ᏱᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎢᏒ ᎠᎵᏍᎪᎸᏙᏗ ᎾᎿ ᎢᏣᎵᏍᎪᎸᏙᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᎠᏗᏔᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎾᎿ ᎢᏥᏍᏚᏟᏍᏗ ᏱᎨᏎᏍᏗ.\nᎡᎳᏂᏃ ᏌᏉ ᏂᎪᎯᏍᏗᏍᎨᏍᏗ ᎾᎿ ᏕᎤᎷᎬᎢ ᏂᏓᏕᏘᏴᎯᏒᎢ, ᎬᏗᏍᎨᏍᏗ ᎠᏍᎦᏅᏨ ᎠᎵᏍᎪᎸᏙᏗ ᎾᏍᎩ ᎪᎯᏍᏗᏍᎩ; ᎾᎿ ᏌᏉ ᏂᎪᎯᏍᏗᏍᎨᏍᏗ ᏂᏓᏕᏘᏴᎯᏒᎢ ᏂᏨᎾᏛ ᎢᏣᏓᏁᏟᏴᏏᏒᎢ; ᎤᏣᏔᏅᎯ ᎦᎸᏉᏔᏁᎸᎯ ᏱᎰᏩ ᎾᏍᎩ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ;\nᎾᎯᏳ ᎩᏯᏎᎸ ᎢᏏᎵ ᏧᏪᏥ; ᎾᏍᎩ ᎾᏂᎥᎢ, ᎿᏉ ᎾᏂᎥ ᎠᏂᏏᏴᏫᎭ ᎤᏂᏁᏗ : ᎨᏎᏍᏗ ᏱᎰᏩ ᏧᎾᏓᏅᏙ ᎠᎫᏴᏙᏗ ᎨᏒᎢ, ᎾᎯᏳ ᎨᎦᏎᎸᎭ; ᎾᏍᎩ ᎤᏕᏍᏙᏗ ᎤᎾᏕᏁᏗᏱ ᏂᎨᏒᎾ ᎾᎯᏳ ᎨᎦᏎᎸᎭ.\nᎯᎠ ᎾᏍᎩ ᎤᏂᏗ ᎨᏎᏍᏗ ᎾᏂᎥ ᎤᏂᎶᏒᎯ ᎨᎦᏎᎸᎯ ᏄᎾᏛᏅᎢ, ᎠᏰᎵ ᏎᎩᎵ ᎤᎾᎫᏴᏗ ᎨᏎᏍᏗ, ᏓᏁᎶᏕᏍᏗ ᏎᎩᎵ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗ ᎤᏂᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏎᎩᎵ ᏔᎳᏍᎪᎯ ᎩᎳ ᏂᎦᎦ; ᎠᏰᎵ ᏎᎩᎵ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎨᏎᏍᏗ.\nᎾᏂᎥ ᎤᏂᎶᏒᎯ ᎨᎦᏎᎸᎯ ᏄᎾᏛᏅᎢ, ᏔᎳᏍᎪᎯ ᏅᏛᎴᏅᏛ ᎤᎶᏒᏍᏗ ᎢᏳᎾᏕᏘᏴᏛ, ᎤᏂᏗ ᎨᏎᏍᏗ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏱᎰᏩ.\nᏧᏁᎿᎢ ᎥᏝ ᎤᏟ ᎢᎦᎢ ᎤᏂᏗ ᏱᎨᏎᏍᏗ, ᎤᏲᏃ ᎢᏳᎾᏛᎿᏕᎩ ᎥᏝ ᎡᏍᎦ ᎢᏴᏛ ᎤᏂᏗ ᏱᎨᏎᏍᏗ, ᎾᏍᎩ ᎠᏰᎵ ᏎᎩᎵ ᎠᏗ ᎨᏒᎢ, ᎾᎯᏳ ᎠᏂᎲᏍᎨᏍᏗ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ, ᎾᏍᎩ ᏗᏣᏓᏅᏙ ᎠᎫᏴᏙᏗ ᎨᏒᎢ.\nᎾᏍᎩ ᎠᏕᎸ ᎠᎫᏴᏙᏗ ᎨᏒ ᎢᏏᎵ ᏧᏪᏥ ᏗᎩᏱᏯᏓᏂᎸᏤᏗ ᎨᏎᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ; ᎾᏍᎩᏃ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎢᏏᎵ ᏧᏪᏥ ᏱᎰᏩ ᎠᎦᏔᎲᎢ, ᎾᏍᎩ ᏗᏣᏓᏅᏙ ᎠᎫᏴᏙᏗ ᎨᏒᎢ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ,\nᎠᎴ ᎾᏍᏉ ᎰᏢᏅᎭ ᏗᎪᏑᎴᏗᏱ ᎥᏣᏱ ᎰᏢᏔᏅᎭ, ᎠᎴ ᎠᏠᏗᏱ ᎥᏣᏱ ᎨᏢᏔᏅᎭ, ᏗᎪᏑᎴᏗᏱ ᎨᏎᏍᏗ; ᎠᎴ ᎯᎧᏅᎭ ᎠᏰᎵ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᎾᎿ ᎠᎹ ᎯᏢᎭ.\nᎡᎳᏂᏰᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎾᎿ ᏧᏃᏑᎴᏗ ᎨᏎᏍᏗ ᏧᏃᏰᏂ ᎠᎴ ᏧᎾᎳᏏᏕᏂ.\nᎾᎯᏳ ᏩᏂᏴᎸᎭ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎹ ᏧᏃᎠᏑᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏧᏂᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ; ᎠᎴ ᎾᎯᏳ ᎾᎥ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏂᎷᏨᎭ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎤᏅᏙᏗᏱ ᎠᏥᎸ ᎬᏗ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎨᏒᎢ.\nᎾᏍᎩᏃ ᏧᏃᏑᎴᏗ ᎨᏎᏍᏗ, ᏧᏃᏰᏂ ᎠᎴ ᏧᎾᎳᏏᏕᏂ, ᎾᏍᎩ ᏧᏂᏲᎱᎯᏍᏗᏱ ᏂᎨᏒᎾ, ᎠᎴ ᎾᏍᎩ ᏧᏂᎧᎿᏩᏛᏍᏗ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ, ᎤᏩᏒ ᎠᎴ ᎾᏍᎩ ᎤᏁᏢᎳᏅᏛ ᎨᏒ ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏎᎬᎢ.\nᎠᎴᏬ ᏱᎰᏩ ᎤᏁᏤᎸᎩ ᎼᏏ, ᎯᎠ ᏄᏪᏎᎸᎩ;\nᏂᎯᏃ ᏘᎩ ᏄᎬᏫᏳᏒ ᎦᏩᏒᎩ, ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎻᎳ ᎯᏍᎩᏧᏈ ᏎᎩᎵ, ᎤᎦᎾᏍᏛᏃ ᏏᏂᎹᏂ ᎠᏰᎵ ᎢᏴᏛ ᎾᏍᎩ ᎢᎦᎢ, ᎾᏍᎩ ᏯᏛᏅ, ᏔᎵᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏎᎩᎵ, ᎤᎦᎾᏍᏛᏃ ᎦᎳᎹᏏ ᏔᎵᏧᏈ ᎯᏍᎦᏍᎪᎯ ᏎᎩᎵ.\nᎦᏏᏯᏃ ᎯᏍᎩᏧᏈ ᏎᎩᎵ, ᏓᏁᎶᏕᏍᏗ ᏎᎩᎵ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏅᏙᏗ ᎨᏒᎢ, ᎣᎵᏩᏃ ᎪᎢ ᏌᏉ ᎯᎾ.\nᎾᏍᎩᏃ ᎰᏢᏔᏅᎭ ᎪᎢ ᎦᎸᏉᏗ ᎠᏠᏁᏗ, ᎾᏍᎩᏯ ᎤᏬᏘ ᎪᏢᏍᎩ ᏓᏜᏍᏗᏍᎬ ᏗᏜᏍᏔᏅᎯ ᎨᏎᏍᏗ ᎯᎠ ᎠᏠᏁᏗ;: ᎦᎸᏉᏗ ᎠᏠᏁᏗ ᎪᎱ ᎨᏎᏍᏗ.\nᎯᎠᏃ ᎾᏍᎩ ᏕᎯᎶᏁᏔᏅᎭ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ,\nᎠᎴ ᎦᏍᎩᎶ ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ, ᎠᎴ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᏩᏒᎩ ᎬᏙᏗᏱ,\nᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎠᎴ ᎾᏍᎩ ᎠᏠᏗᏱ.\nᎠᎴ ᏗᏣᎸᏉᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏣᏔᏅᎯ. ᏗᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ; ᏂᎦᎥ ᎪᎱᏍᏗ ᎦᏃᏟᏍᏗᏍᎨᏍᏗ ᎦᎸᏉᏗᏳ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ.\nᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎩᎶᏁᎥᎭ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᎩᏴᏁᎸᎭ ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏆᏛᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᎸᏫᏍᏓᏗ ᎨᏒᎢ.\nᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᎩᏁᏤᎸᎭ, ᎯᎠ ᏂᎩᏪᏎᎸᎭ, ᎯᎠ ᎾᏍᎩ ᏍᎩ ᏍᏆᏂᎪᏓᏁᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗ ᎠᏠᏁᏗ ᎪᎱ ᏂᎪᎯᎸ ᎢᏣᏓᏁᏟᏴᏎᎬᎢ.\nᏴᏫ ᎤᏇᏓᎸᎢ ᎥᏝ ᎠᏍᏚᏟᏍᏗ ᏱᎨᏎᏍᏗ; ᎥᏝ ᎠᎴ ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏦᏢᏗ ᏱᎨᏎᏍᏗ, ᎾᏍᎩᏯ ᏗᏜᏍᏔᏅᎯ; ᎦᎸᏉᏗᏳ ᎾᏍᎩ, ᎠᎴ ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ.\nᎩᎶ ᎾᏍᎩ ᏂᎬᏁᎮᏍᏗ ᏓᏜᏍᏗᏍᎨᏍᏗ, ᎠᎴ ᎩᎶ ᏅᏩᏓᎴ ᎢᎠᏍᏚᏟᏍᎨᏍᏗ, ᎾᏍᎩ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ ᎤᏤᎵᎪᎯ ᏴᏫᎯ ᎤᏓᏑᏴᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᏟᏌ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᏍᏕᎩᏗ, ᎠᎴ ᎣᏂᎦ, ᎠᎴ ᎦᎵᏆᎾ,Ꮻ ᎯᎠ ᎾᏍᎩ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎤᎵᏠᏯᏍᏕᏍᏗ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᎦᎾᏍᏛ ᎬᏙᏗ ᎠᏜ; ᎤᏠᏱᏉ ᎨᏎᏍᏗ ᏂᏕᎦᎥᎢ.\nᎠᎴ ᎦᏩᏒᎩ ᎬᏙᏗ ᏦᏢᏙᏗ ᎨᏎᏍᏗ, ᏗᏜᏍᏔᏅᎯ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏅᏬᏘ ᎪᏢᏍᎩ ᏥᏓᏜᏍᏗᏍᎪᎢ, ᎠᎹ ᎦᎳᏅᎯ ᎨᏎᏍᏗ, ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎴ ᎦᎸᏉᏗᏳ.\nᎢᎦᏛᏃ ᏣᏅᏆᎶᏍᏗ ᎨᏎᏍᏗ ᎤᏃᎱᏲᎵ ᎢᏨᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎢᎦᏛ ᏣᏗ ᎨᏎᏍᏗ ᎢᎬᏱᏗᏢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ, ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎾᎿ ᏗᎬᏯᏠᎢᏍᏗ ᎨᏒᎢ; ᎤᏣᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ ᎾᏍᎩ.\nᎾᏍᎩᏃ ᎦᏩᏒᎩ ᎬᏙᏗ ᏦᏢᏗ ᏥᎩ, ᎥᏝ ᎢᏨᏒ ᎢᏣᏓᏙᏢᎾᏁᏗ ᏱᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏅ ᏓᏜᏍᏛᎢ; ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ ᏱᎰᏩ ᎤᏤᎵᎦ.\nᎩᎶ ᎾᏍᎩ ᎢᏳᏍᏗ ᎢᎪᏢᏍᎨᏍᏗ, ᎠᎵᏒᎢᏍᏙᏗ, ᎾᏍᎩ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ ᎤᏤᎵᎪᎯ ᏴᏫᎯ ᎤᏮᏑᎬᎢ.\nᏱᎰᏩᏃ ᎼᏏ ᎤᏁᏤᎸᎩ ᎯᎠ ᏄᏪᏒᎩ,\nᎬᏂᏳᏉ ᏚᏙᎥ ᏥᏯᏅᎲ ᏇᏣᎵᎵ ᏳᎳ ᎤᏪᏥ, ᎾᏍᎩ ᎭᎵ ᎤᏪᏥ, ᏧᏓᏏ ᎠᏂᎳᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ.\nᎠᎴ ᎠᎧᎵᎢ ᏥᏁᎸ ᎤᏁᎳᏅᎯ ᎤᏓᏅᏙ, ᎾᏍᎩ ᎠᏏᎾᏌᏂ ᎨᏒ, ᎠᎴ ᎪᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎠᎦᏔᎾᎢ ᎨᏒᎢ, ᎠᎴ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ.\nᎠᏯᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏅᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ.\nᎠᎴ ᏅᏯ ᏗᏲᎳᏅᎯ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓ ᎪᏢᏅᎥᏍᎩ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ.\nᎠᎴ ᎠᏴ, ᎬᏂᏳᏉ ᏕᏥᏲᏒ ᎾᏍᏉ ᎡᎰᎵᎠᏈ, ᎠᎯᏌᎹᎩ ᎤᏪᏥ, ᏕᏂ ᎠᏂᎳᏍᏓᎸ ᏧᏴᏫ; ᎠᎴ ᎾᏂᎥ ᎠᏂᏏᎾᏌᏂ ᏙᏧᎾᏓᏅᏛᎢ, ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎦᏥᎳᏁᎸ, ᎾᏍᎩ ᎤᏃᏢᏗᏱ ᏄᏓᎴᏒ ᎬᏁᏤᎸᎯ ᏥᎩ;\nᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎠᎴ ᎫᏢᏗ ᎾᏍᎩ ᎾᎿᏂ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᏚᎵᏦᏛᎢ,\nᎠᎴ ᎦᏍᎩᎶ ᎠᎴ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ, ᎠᎴ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏚᏍᎩᎶ ᎦᏩᏒᎩ ᎬᏙᏗᏱ.\nᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᏗᎪᏑᎴᏗᏱᏃ ᎠᎴ ᎾᏍᎩ ᎠᏠᏗᏱ.\nᎠᎴ ᏗᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏗᏄᏬᏍᏗ; ᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᎡᎳᏂ ᎠᏥᎸ ᎨᎶᎯ ᏧᏄᏬᏍᏗ, ᎠᎴ ᏧᎾᏄᏬ ᎾᏍᎩ ᏧᏪᏥ, ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏥᎸ-ᎨᎶᎯ ᏧᏂᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎴ ᎠᏠᏁᏗ ᎪᎢ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ, ᎾᎿ ᎦᎸᏉᏗ ᎨᏒ ᎬᏙᏗ, ᎾᏍᎩᏯ ᏄᏓᎴᏒ ᎬᏁᏤᎸ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗ ᎨᏎᏍᏗ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏒᎩ,\nᎩᏁᏥ ᎾᏍᏉ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᏂᎩᏪᏏ, ᎠᏎ ᎤᎾᏙᏓᏆᏍᎬ ᏗᏆᏤᎵ ᏗᏥᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ; ᎾᏍᎩᏰᏃ ᏗᎦᏁᎶᏙᏗ ᎠᏴ ᏂᎯᏃ ᏂᎪᎯᎸ ᎢᏣᏓᏁᏟᏴᏎᎬᎢ; ᎾᏍᎩ ᎢᏥᎦᏙᎥᎯᏍᏗᏱ ᎠᏴ ᏱᎰᏩ ᎦᎸᏉᏗᏳ ᎢᏨᏴᏁᎯ ᎨᏒᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᏍᏆᏂᎪᏕᏍᏗ ᎤᎾᏙᏓᏆᏍᎬᎢ; ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ; ᎾᏂᎥ ᎩᎶ ᎠᏲᏍᏗᏍᎨᏍᏗ ᎠᏎ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ; ᎩᎶᏰᏃ ᎪᎱᏍᏗ ᎠᏛᏁᎮᏍᏗ ᎾᎯᏳ ᎨᏒᎢ. ᎾᏍᎩ ᏴᏫ ᎠᏥᏛᏙᏗ ᎨᏎᏍᏗ ᎤᏓᏑᏴ ᎤᏤᎵᎪᎯ ᏴᏫ.\nᏑᏓᎵ ᎢᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏍᎩᏂ ᎤᎾᏙᏓᏆᏍᎬ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ ᎨᏒᎢ, ᏱᎰᏩ ᎦᎸᏉᏓᏁᎸᎯ; ᎩᎶ ᎪᎱᏍᏗ ᎠᏛᏁᎮᏍᏗ ᎤᎾ ᏙᏓᏆᏍᎬ ᎢᎦ ᎨᏒᎢ, ᎠᏎ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏏᎵ ᏧᏪᏥ ᎤᏂᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᎤᎾ ᏙᏓᏆᏍᎬᎢ, ᎤᎾᎦᏌᏯᏍᏙᏗᏱ ᎤᎾ ᏙᏓᏆᏍᎬ ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏎᎬᎢ, ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ.\nᎯᎠ ᎾᏍᎩ ᏗᎦᏁᎶᏙᏗ ᎠᏴ ᎢᏏᎵᏃ ᏧᏪᏥ ᏂᎪᎯᎸᎢ; ᏑᏓᎵᏉᏰᏃ ᎢᎦ ᏚᎸᏫᏍᏓᏁᎸᎩ ᏱᎰᏩ ᎤᏬᏢᏅᎩ ᎦᎸᎶ ᎠᎴ ᎡᎶᎯ, ᎦᎵᏉᎩᏁᏃ ᎢᎦ ᎤᏯᏪᏐᎸᎩ, ᎠᎴ ᎤᎦᎵᏍᏙᏒᎡᎩ.\nᎼᏏᏃ ᏚᏲᎯᏎᎸᎩ ᎿᏉ ᎤᏍᏆᏛ ᎤᎵᏃᎮᏗᏍᎬ ᎣᏓᎸ ᏌᎾᏱ, ᏔᎵ ᏗᏯᏖᎾ, ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎸᎢ, ᏗᏯᏖᎾ ᏅᏯ ᏗᎪᏢᏔᏅᎯ, ᏗᎪᏪᎵ ᎤᏁᎳᏅᎯ ᎦᏰᏌᏛ ᎬᏔᏅᎯ ᎪᏪᎳᏅᎯ.\nᎤᎾᏙᎴᎰᏒᏃ ᏴᏫ ᎼᏏ ᎤᏙᎯᏛᎢ ᎣᏓᎸᎤᏠᎠᎯᏍᏗᏱ, ᎡᎳᏂ ᏫᎬᏩᏓᏡᏫᏍᏔᏁ ᏴᏫ, ᎠᎴ ᎯᎠ ᏂᎬᏩᏪᏎᎴᎢ, Ꭷ, ᎤᎾᏁᎳᏅᎯ ᏗᏍᎩ ᏲᏢᎾᏏ, ᎾᏍᎩ ᎢᎬᏱ ᎪᎨᏅᎡᎯ; ᎯᎠᏰᏃ ᎼᏏ ᎠᏍᎦᏯ ᎢᏥᏠᏱ ᏂᏙᏓᏲᎦᏘ ᎾᏫᎹᏍ, ᎥᏝ ᎡᏥᎦᏔᎭ ᏄᎵᏍᏓᏁᎸᎢ.\nᎡᎳᏂᏃ ᎯᎠ ᏂᏚᏪᏎᎴᎢ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᏗᏟᏯᏙ ᏗᏣᏓᎩ, ᎾᏍᎩ ᏥᏚᎾᏟᏯᏛ ᏗᏣᏓᎵᎢ, ᎠᎴ ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᎠᎴ ᎠᏂᎨᏴ ᏗᏤᏥ, ᎠᏴᏃ ᏕᏍᎩᏲᎮᎸᎭ.\nᏂᎦᏛᏃ ᏴᏫ ᏚᎾᏕᎭ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏟᏯᏙ ᎾᏍᎩ ᏚᎾᏟᏯᏛᎢ, ᎠᎴ ᎡᎳᏂ ᏚᏂᏲᎮᎴᎢ,\nᎠᎴ ᏚᏓᏂᎸᏤᎴᎢ, ᏅᏲᎯᏃ ᏗᎪᏪᎶᏗ ᎤᏩᏔᏁᎢ ᎣᏍᏛ ᏄᏩᏁᎴᎢ, ᏩᎦ ᎠᎩᎾ ᎬᎾᏬᏔᏅᎯ ᎤᏬᏢᏁᎢ: ᎯᎠᏃ ᏄᏂᏪᏎᎢ, ᎯᎠ ᎾᏍᎩ ᏗᏣᏁᎳᏅᎯ, ᎢᏏᎵ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᎨᏣᏄᎪᏫᏒᎯ. Ꮂ\nᎡᎳᏂᏃ ᎤᎪᎲ ᎾᏍᎩ ᎢᎬᏱᏗᏢ ᎤᏬᏢᏁ ᎠᏥᎸ ᎨᎳᏍᏗᏱ; ᎠᎴ ᎡᎳᏂ ᎧᏃᎮᏛ ᏚᏰᎵᎯᏍᏔᏁᎢ, ᎯᎠ ᏄᏪᏎᎢ, ᏑᎾᎴᎢ ᏱᎰᏩ ᎠᎵᏍᏓᏴᎾᏁᏗ ᎨᏎᏍᏗ.\nᏭᎩᏨᏅᏃ ᏑᎾᎴᏉ ᎠᎴ ᎠᏥᎸ ᎤᏁᎶᎴᎢ, ᎠᎴ ᏚᏂᏲᎴ ᎠᎵᏍᎪᎸᏙᏗ ᏙᎯ ᎠᏓᏁᎯ; ᏴᏫᏃ ᎤᎾᏅᏁ ᎤᎾᎵᏍᏓᏴᏗᏱ ᎠᎴ ᎤᎾᏗᏔᏍᏗᏱ, ᏚᎾᎴᏁᏉᏃ ᏚᎾᏁᎶᏣᎶᏁᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎮᎾ, ᎭᏠᎠᎯ; ᏗᏣᏤᎵᏰᏃ ᏴᏫ, ᎢᏥᏈᏱ ᏂᏙᏔᏘᎾᏫᏛᏛ ᎤᏲ ᏄᎾᏛᏁ..\nᏞᎩᏳ ᎤᎾᎪᎸᏒ ᎾᎿ ᎦᏅᏅ ᎾᏍᎩ ᎦᏥᏁᏤᎸᎯ ᎨᏒᎢ; ᏩᎦ ᎠᎩᎾ ᎬᎾᏬᏔᏅᎯ ᎤᏅᏒ ᎤᎾᏓᏙᏢᏁᎸ, ᎠᎴ ᎠᏥᎸ ᎤᏁᎴᎸ, ᎠᎴ ᎯᎠ ᏄᏂᏪᏒ, ᎯᎠ ᎾᏍᎩ ᏗᏣᏁᎳᏅᎯ, ᎢᏏᎵ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏅᏓᏣᏄᎪᏫᏒᎯ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎴ ᎼᏏ, ᎦᏥᎪᎥ ᎯᎠ ᏴᏫ, ᎠᎴ ᎬᏂᏳᏉ, ᏧᏩᏗᏔᏯ ᏗᏂᎵᎨᏂ ᎯᎠ ᏴᏫ:\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏆᏁᎳᎩ, ᎾᏍᎩ ᎠᎩᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏗᎴᎩ ᏫᏂᎦᎵᏍᏓ ᎾᏍᎩ ᎤᎾᏡᏗᏍᎬᎢ, ᎠᎴ ᎾᏍᎩ ᏱᎦᏥᏛᏓ; ᏂᎯᏃ ᏣᏧᏡᏍᏗ ᏣᏓᏤᎵᏛ ᏴᏫ ᏅᏓᎬᏴᏁᎵ.\nᎼᏏᏃ ᎤᏔᏲᏎᎴ ᏱᎰᏩ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎠᎴ ᎯᎠ ᏄᏪᏎᎴᎢ, ᏱᎰᏩ, ᎦᏙᏃ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒ ᎤᏗᎴᎩᏳ ᎢᎩ ᏗᏣᏤᎵ ᏴᏫ ᏕᎭᏡᏗᏍᎬᎢ, ᎾᏍᎩ ᎢᏥᏈᏱ ᏂᏙᏔᏘᏅᏍᏔᏅᎯ, ᏨᏔᏅᎯ ᏣᎵᏂᎩᏛ ᎨᏒ, ᎠᎴ ᏨᏔᏅᎯ ᎤᎵᏂᎩᏛ ᏦᏰᏂ?\nᎦᏙᏃ ᎢᏥᏈᏱ ᎠᏁᎯ. ᏯᏂᏁᎦ ᎯᎠ ᏱᎾᏂᏪᎭ, ᎤᏲᏉ ᎤᎬᏩᎴ ᏥᏙᏧᏄᎪᏫᏎᎢ, ᏧᎯᏍᏗᏱᏉ ᎦᏚᏏ ᏕᎨᏒᎢ, ᎠᎴ ᏧᏛᏙᏗᏱ ᎡᎶᎯ ᎠᏁᎲᎢ? ᎭᎦᏔᎲᎾ ᎯᏲᎯᏍᏓ ᎯᎠ ᎾᏍᎩ ᎤᏗᎴᎬ ᏣᏔᎳᏬᏍᎬᎢ, ᎠᎴ ᎯᏁᏟᏴᎾ ᎤᏲ ᎢᎩᏴᏁᏗᏱ ᏕᏧᎪᏛ ᎯᎠ ᏴᏫ;\nᎩᏯᏅᏓᏓ ᎡᏆᎭᎻ, ᎡᏏᎩ, ᎠᎴ ᎢᏏᎵ, ᎩᏅᏏᏓᏍᏗ, ᎩᏯᏎᎵᏓᏁᎸᎯ ᏨᏒ ᎨᏒ ᎩᏁᎢᏍᏓᏁᎸᎯ ᎠᎴ ᎯᎠ ᎢᎩᏪᏎᎸᎯ, ᏓᎦᏥᏁᏉᎢ ᎢᏣᏁᏢᏔᏅᏛ ᎨᏒ, ᏃᏈᏏ ᎦᎸᎶ ᎠᏂᎧᎸ ᎾᏍᎩᏯᎢ; ᎠᎴ ᏂᎦᏛ ᎯᎠ ᎦᏙᎯ ᎠᎩᏁᎢᏍᏔᏅᎯ ᏥᎩ ᎦᏥᏁᏗ ᎨᏎᏍᏗ ᎢᏣᏁᏢᏔᏅᏛ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏤᎵ ᎨᏎᏍᏗ ᏂᎪᎯᎸᎢ.\nᏱᎰᏩᏃ ᎤᏁᏟᏴᏒᎩ ᎤᏓᏅᏛ ᎾᏍᎩ ᎤᏲ ᎢᏧᏩᏁᏗᏱ ᎤᏓᏅᏖᎸ ᏧᏤᎵ ᏴᏫ.\nᎼᏏᏃ ᎤᎦᏔᎲᏒᎩ, ᎠᎴ ᎤᏠᎠᏒᎩ ᎣᏓᎸᎢ ᎠᎴ ᏗᏯᏖᎾ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎸ ᏚᏒᎦᎸᎩ, ᏗᏯᏖᎾ ᎢᏧᎳᏗᏢ ᏕᎪᏪᎸᎩ; Ꭰ ᎢᏗᏢ ᎠᎴ ᏐᎢ ᎢᏗᏢ ᏕᎪᏪᎸᎩ.\nᏗᏯᏖᎾᏃ ᎤᏁᎳᏅᎯ ᏧᏬᏢᏅᎯ ᎨᏒᎩ, ᎪᏪᎸᏃ ᎤᏁᎳᏅᎯ ᎤᏬᏪᎳᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᏗᏰᎶᎸᎯ ᎨᏒᎩ ᏗᏯᏖᎾ.\nᏦᏑᏫᏃ ᎤᏛᎦᏅᎩ ᎤᎾᏓᏃᏴᎵᏍᏛ ᏴᏫ, ᎾᏍᎩ ᎤᏁᎷᎬᎢ, ᎯᎠᏃ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏓᎿᏩ ᎤᏍᏆᏃᏴᎦ Ꭰ ᏙᏗᏓᏅᎢ.\nᎯᎠᏃ ᏄᏪᏒᎩ, ᎥᏝ ᎤᎾᏓᏎᎪᎩᏛ ᎢᏳᏂᏪᏍᏗ ᎤᎾᏓᏃᏴᎵᏍᏛ ᏱᎩ, ᎥᏝ ᎠᎴ ᎨᏥᏎᎪᎩᏛ ᎢᏳᏂᏪᏍᏗ ᎤᎾᏓᏃᏴᎵᏍᏛ ᏱᎩ; ᏗᏂᏃᎩᏍᎩᏍᎩᏂ ᎤᎾᏓᏃᏴᎵᏍᏛ ᎦᏛᎩᎠ ᎠᏴ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎾᎥᏉ ᎤᎷᏨ ᎠᏂᏅᎢ, ᎤᎪᎲᎩ ᏩᎦ ᎠᎩᎾ, ᎠᎴ ᎠᎾᎵᏍᎩᏍᎬᎢ: ᎼᏏᏃ ᎤᏔᎳᏬᏍᎬ ᎤᏗᎴᎩ ᏄᎵᏍᏔᏅᎩ, ᎠᎴ ᏚᏗᏅᏒᎩ ᏗᏯᏖᎾ ᏓᏰᎲᎢ, ᎠᎴ ᏚᏲᏍᏔᏅ ᏩᎦᏐᎠᏍᎬᎢ.\nᎠᎩᎾᏃ ᎾᏍᎩ ᎤᏃᏢᏅᎯ ᎤᎩᏒᎩ, ᎠᎴ ᎠᏥᎸᏱ ᎤᎪᎲᏍᏔᏅᎩ, ᎠᎴ ᎤᏪᏓᏬᏔᏅᎩ ᎪᏍᏚ ᏄᏩᏁᎸᎩ, ᎠᎴ ᎤᎴᎳᏛᏅᎩ ᎠᎼᎯ, ᎠᎴ ᎠᏎ ᎤᎾᏗᏔᏍᏗ ᏂᏚᏩᏁᎸᎩ ᎢᏏᎵ ᏧᏪᏥ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎡᎳᏂ, ᎦᏙ ᎨᏨᏁᎴ ᎯᎠ ᏴᏫ, ᎾᏍᎩ ᎢᎦᎢ ᎡᏉᎯᏳ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒ ᏘᏲᎮᏗᏱ?\nᎡᎳᏂᏃ ᎯᎠ ᏄᏪᏒᎩ, ᏞᏍᏗ ᎤᏔᎳᏬᏍᎬ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᎤᏗᎴᎩ ᎢᏳᎵᏍᏔᏅᎩ; ᏕᎯᎦᏔᎭ ᎯᎠ ᏴᏫ ᎤᏲᏉ ᏚᎸᎪᏛᎢ.\nᎯᎠᏰᏃ ᏂᎬᎩ ᏪᏎᎸᎩ, ᏗᏍᎩ ᏲᏢᎾᏏ ᏦᎦᏁᎳᏅᎯ ᎾᏍᎩ ᎢᎬᏱ ᎪᎨᏅᎡᎯ; ᎯᎠᏰᏃ ᎼᏏ, ᎠᏍᎦᏯ ᎾᏍᎩ ᎢᏥᏈᏱ ᏂᏉᏙᏓᏲᎦᏘ ᎾᏫᏛᏛ, ᎥᏝ ᏲᏥᎦᏔᎭ ᏄᎵᏍᏓᏁᎸᎢ.\nᎯᎠᏃ ᏂᎦᏥᏪᏎᎸᎩ, ᎩᎶ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎾᏣᏅᏕᏍᏗ, ᎾᏍᎩ ᏫᏓᎾᏓᎩ: ᎰᏩᏃ ᎥᎬᎩᏁᎸᎩ, ᎠᏥᎸᏱᏃ ᏩᏆᏗᏅᏒᎩ, ᎠᎴ ᎯᎠ ᏩᎦ ᎠᎩᎾ ᏛᎤᎾᏄᎪᏨᎩ.\nᎼᏏᏃ ᏚᎪᎲ ᏧᏂᏲᏓᎬ ᎨᏒ ᏴᏫ, ᎡᎳᏂᏰᏃ ᎤᏂᏲᏓᎬ ᏂᏚᏩᎡᎸᎩ ᎤᎾᏕᎰᎯᏍᏗᏱ ᎠᏂᎦᏔᎲ ᎬᏩᎾᏡᏗᏍᎩ,\nᎿᏉ ᎼᏏ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎤᎴᏅᎩ, ᎠᎴ ᎯᎠ ᏄᏪᏒᎩ, ᎦᎪ ᏱᎰᏩ ᎢᏗᏢ ᎤᎵᎪᏗ? ᎾᏍᎩ ᏩᎩᎷᏥᏏ. ᏂᎦᏛᏃ ᎵᏫ ᏧᏪᏥ ᎾᏍᎩ ᎬᏩᏓᏡᏫᏍᏔᏅᎩ.\nᎯᎠᏃ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᏂᎦᏪᎭ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ, ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏫᏓᎾᎵᎧᏌᏓᏓ ᎠᎴ ᏫᏓᏂᏴᎵᏛ ᎦᎶᎯᏍᏗᏱ ᏕᎨᏌᏗᏒ ᏂᎬᎾᏛ ᏓᏂᎾᏩᏗᏒᎢ, ᎠᎴ ᏫᏓᏂᎷᎦ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᎾᎵᏅᏟ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎤᏁᏓᏍᏗ ᏫᏓᏂᏍᏗ ᏫᏓᏂᎷᎦ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎾᎥ ᎢᏳᎾᏓᎳ ᏫᏓᏂᎷᎦ.\nᎵᏫᏃ ᏧᏪᏥ ᏄᎾᏛᏁᎸᎩ ᎾᏍᎩᏯ ᎼᏏ ᏂᏚᏪᏎᎸᎢ; ᏚᏂᏲᎱᏒᎩᏃ ᏴᏫ ᎾᎯᏳ ᎢᎦ ᏦᎢ ᎢᏯᎦᏴᎵ ᎢᏴᏛ ᎢᏯᏂᏛ ᏴᏫ.\nᎯᎠᏰᏃ ᎢᏳᏪᏛ ᎨᏒᎩ ᎼᏏ, ᎦᎸᏉᏗᏳ ᏁᏣᏓᏛᏂᏏ ᏱᎰᏩ, ᏂᏥᎥ ᎢᏥᏍᎦᏯ ᏗᏨᏓ ᏗᏤᏥ, ᎠᎴ ᎢᏣᎵᏅᏟ; ᎾᏍᎩ ᎣᏍᏛ ᎢᏥᏁᏗᏱ ᎪᎯ ᎢᎦ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᏭᎩᏨᏅ, ᎾᏍᎩ ᎼᏏ ᎯᎠ ᏂᏚᏪᏎᎸᎩ ᏴᏫ, ᎢᏥᏍᎦᏅᎩ ᎡᏆ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎿᏉ ᏓᏥᎾᎷᏏ ᏱᎰᏩ ᏮᏓᏥᎷᏤᎵ; ᏴᎪᎢᏍᏓ ᏱᎩ ᎢᏥᏍᎦᏅᏨᎢ.\nᎼᏏᏃ ᏔᎵᏁ ᏱᎰᏩ ᏭᎷᏤᎸᎩ, ᎠᎴ ᎯᎠ ᏫᏄᏪᏒᎩ, ᎤᏲᏍᏛᏉ, ᎯᎠ ᏴᏫ ᎤᏂᏍᎦᏅᏨ ᎡᏆ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᎾᏓᏙᏢᎾᏁᎸ ᎤᏁᎳᏅᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ;\nᎪᎯᏃ ᎤᏂᏍᎦᏅᏨᎢ ᎢᏳᏃ ᎦᎩᏯᏙᎵᏍᏗ ᏱᎩ,-ᎢᏳᏃ ᏱᏝᏉ, ᎯᏲᏍᏓᏉ ᏓᏆᏙᎥ ᎪᏪᎸ ᎪᏪᎵᎯ ᎾᏍᎩ ᏦᏪᎳᏅᎯ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎩᎶ ᎠᎩᏍᎦᏅᏤᎸᎯ ᎾᏍᎩ ᏓᏥᏲᏍᏔᏂ ᏚᏙᎥ ᎪᏪᎸ ᎠᏆᏤᎵ ᎪᏪᎵᎯ.\nᎿᏉᏃ ᎮᎾ, ᏔᏘᏄᎦ ᏴᏫ ᎾᎿ ᎬᏁᎢᏍᏓᏁᎸᎯ ᏥᎩ; ᎬᏂᏳᏉ, ᎠᏆᏤᎵ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱ ᏓᏤᏅᎡᎵ; ᎠᏎᏃ ᎾᎯᏳ ᎢᎦ ᎦᏥᏩᏛᎯᎸᎭ, ᎦᏥᏍᏛᏗᏍᏙᏗ ᎨᏎᏍᏗ ᎤᏂᏍᎦᏅᏨᎢ.\nᏱᎰᏩᏃ ᏚᏕᏯᏙᏔᏅᎩ ᏴᏫ, ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ ᏩᎦ ᎠᎩᎾ ᎤᏃᏢᏅᎢ, ᎾᏍᎩ ᎡᎳᏂ ᎤᏬᏢᏅᎯ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ; ᎤᏟ, ᎭᏓᏅᎾ ᎠᏂ, ᏂᎯ ᎠᎴ ᏴᏫ ᎾᏍᎩ ᎢᏥᏈ ᏂᏙᏔᏘᏅᏍᏔᏅᎯ, ᏫᏔᏘᏅᏍᏓ ᎾᎿ ᎦᏙᎯ ᎦᏥᏯᏎᎵᏓᏁᎸᎯ ᏥᎩ ᎡᏆᎭᎻ, ᎡᏏᎫ, ᎠᎴ ᏤᎦᏈ, ᎯᎠ ᎢᎩᏪᏛ ᏥᎩ, ᏣᏁᏢᏔᏅᏛ ᎨᏒ ᎦᏥᏁᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏓᏥᏅᏏ ᏗᎧᎿᏩᏗᏙᎯ ᎢᎬᏱ ᏓᏤᏅᎡᎵ; ᎠᎴ ᎦᏥᏄᎪᏫᏍᏗ ᎨᏎᏍᏗ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎡᏱᎵ, ᎠᎴ ᎠᏂᎯᏗ, ᎠᎴ ᎠᏂᏯᎵᏥ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ.\nᎾᎿ ᎦᏙᎯ ᎤᏅᏗ ᎠᎴ ᏩᏚᎵᏏ ᏕᎦᎶᎴᎬᎢ; ᎥᏝᏰᏃ ᏴᏓᎨᏏ ᎠᏰᎵ ᏱᏨᏯᏓᏑᏰᏍᏗ; ᏧᏩᏗᏔᏯᏰᏃ ᏗᏥᎵᎨᏂ ᏂᎯ; ᏴᏨᏛᏓᏰᏃ ᏫᏣᎢᏒᎢ.\nᏴᏫᏃ ᎤᎾᏛᎦᏅ ᎯᎠ ᎾᏍᎩ ᎤᏐᏅ ᎧᏃᎮᏛ, ᏚᎾᏠᏱᎸᎩ; ᎥᏝ ᎠᎴ ᎩᎶ ᎤᏤᎵ ᎠᏣᏅᎩ ᏳᏣᏅᏔᏁᎢ.\nᏱᎰᏩᏰᏃ ᎯᎠ ᎢᏳᏪᏎᎸᎯ ᎨᏒᎩ ᎼᏏ, ᎯᎠ ᏂᎩᏪᏏ ᎢᏏᎵ ᏧᏪᏥ, ᏧᏩᏗᏔᏯ ᏗᏥᎵᎨᏂ ᏴᏫ ᏂᎯ; ᎩᎳᏉ ᎢᏴᏛ ᎠᏰᎵ ᏂᏣᏛᏅ ᏮᏓᏥᎷᏥ, ᎠᎴ ᏓᏨᏛᏔᏂ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᏣᏣᏅᎩ ᎢᏴᏛ ᏘᎲᎦ, ᎾᏍᎩ ᎠᏆᏙᎴᎰᎯᏍᏗᏱ ᎢᎬᏴᏁᏗᏱ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎢᏴᏛ ᏚᏂᏅᎩ ᏧᎾᏣᏅᎩ ᎰᎵᏈ ᎣᏓᎸ ᎾᎥᎢ.\nᎼᏏᏃ ᎦᎵᏦᏛ ᎤᎩᏒᎩ, ᎠᎴ ᏙᏱᏗᏢ ᎠᏂᏅ ᏭᎵᏦᏔᏅᎩ, ᎠᏂᏅ ᏰᎵ ᎢᏴᏛ, ᎯᎠᏃ ᏄᏪᏎᎸᎩ ᏚᏬᎥᎩ, ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ. ᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎩᎶ ᏱᎰᏩ ᎤᏲᎯ ᎦᎸᎪᎬᎩ ᏗᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏫᎦᎶᏍᎬᎩ, ᎾᏍᎩ ᏙᏱᏗᏢ ᎠᏂᏅ ᏗᎦᎵᏦᏛᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎼᏏ ᎦᏄᎪᎢ ᏗᎦᎵᏦᏛ ᏫᎦᎶᎯ, ᏂᎦᏛ ᏴᏫ ᏓᎾᎴᎲᏍᎬᎩ, ᎠᎴ ᎠᏂᏏᏴᏫᎭ ᏚᏂᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎾᎴᎲᏍᎬᎩ, ᎠᎴ ᎼᏏ ᎤᎾᎦᏙᏍᏛᎩ ᎬᏂ ᏩᏴᎲ ᏗᎦᎵᏦᏛᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎼᏏ ᎿᏉ ᏭᏴᎸ ᏗᎦᎵᏦᏛᎢ, ᎤᎶᎩᎸ ᎤᏓᏡᎬ ᎡᎳᏗ ᏄᏛᏁᎸᎩ, ᎦᎵᏦᏛᏃ ᎦᎶᎯᏍᏗᏱ ᎤᎴᏅᎩ, ᏱᎰᏩᏃ ᎤᎵᏃᎮᏔᏅᎩ ᎼᏏ.\nᏂᎦᏛᏃ ᏴᏫ ᎤᏂᎪᎲᎩ ᎤᎶᎩᎸ ᎤᏓᏡᎬ ᎦᏙᎬ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ; ᏂᎦᏛᏃ ᏴᏫ ᏚᎾᎴᏅᎩ ᎠᎴ ᎤᎾᏓᏙᎵᏍᏔᏅᎩ ; ᎠᏂᏏᏴᏫᎭ. ᏚᏂᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ.\nᏱᎰᏩᏃ ᎤᎵᏃᎮᏔᏅᎩ ᎼᏏ ᏓᎾᏓᎧᏅᎢ, ᎾᏍᎩᏯ ᎠᏍᎦᏯ ᎤᎵᎢ ᏣᎵᏃᎮᏗᏍᎪᎢ. ᎤᏨᏒᎩᏃ ᏗᏂᏅ ᏔᎵᏁ ᏭᎶᏒᎩ; ᎤᏅᏏᏓᏍᏗᏍᎩᏂ ᏦᏑᏫ, ᏅᏂ ᎤᏪᏥ, ᎠᏫᏅ, ᎥᏝ ᏳᏄᎪᏤ ᎦᎵᏦᏛᎢ.\nᎼᏏᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᏱᎰᏩ, ᎬᏂᏳᏉ ᎯᎠ ᏂᏍᎩᏪᏎᎭ, ᏔᏘᏄᎦ ᎯᎠ ᏴᏫ; ᎥᏝᏃ ᏱᏍᎩᏃᏁᎸ ᎾᏍᎩ ᏘᏅᏏᏒ ᎣᏍᏕᎩ. ᎠᏎᏃ ᎯᎠ ᏂᏣᏪᏒ, ᏕᏣᏙᎥ ᎬᏲᎵᏍᏔᏅ, ᎠᎴ ᎾᏍᏉ ᎤᏪᏙᎵᏍᏗ ᏕᎬᏯᎦᎿᏅ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎿᏉ ᎬᏔᏲᏎᎭ, ᎢᏳᏃ ᎤᏪᏙᎵᏍᏗ ᏱᏗᏍᏆᎧᎿᏅ, ᎿᏉ ᏍᎩᎾᏄᎪᏫᏏ ᏣᏅᏅᎢ, ᎾᏍᎩ ᎬᏲᎵᏍᏗᏱ, ᎾᏍᎩ ᎤᏪᏙᎵᏍᏗ ᏗᏍᏆᎧᏃᏗᏱ; ᎠᎴ ᎭᏓᏅᏛᎵ ᎯᎠ ᎾᏍᎩ ᎤᎾᏓᏤᎵᏛ ᏗᏣᏤᎵ ᏴᏫ ᎨᏒᎢ.\nᎯᎠᏃ ᏄᏪᏒᎩ, ᎠᏴ ᏓᏁᏏ, ᎠᎴ ᏓᎬᏯᏪᏐᎸᏍᏔᏂ.\nᎯᎠᏃ ᏄᏪᏎᎸᎩ, ᎢᏳᏃ ᏂᎯ ᏂᎩᏁᏅᏒᎾ ᎢᎨᎡᏍᏗ, ᏞᏍᏗ ᏗᏍᎩᏯᏘᎾᏫᏛᎲᎩ ᎠᏂ.\nᎦᏙᏃ ᎠᏙᎴᎰᎯᏍᏙᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᎠᏴ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ ᎤᏪᏙᎵᏍᏗ ᏕᏍᎩᏯᎦᎿᏅᎢ? ᏝᏍᎪ ᏍᎩᏰᎳᏛᏍᏗ ᎨᏒ ᎾᎿ ᏱᎩ? ᎾᏍᎩᏃ ᎠᏴ ᎠᎴ ᏗᏣᏤᎵ ᏴᏫ ᎣᎦᏙᏣᎴᏛ ᎨᏎᏍᏗ ᏂᎦᏛ ᏴᏫ ᏂᎬᎾᏛ ᎡᎶᎯ ᎠᏁᎲᎢ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᎯᎠ ᎾᏍᏉ ᏥᏂᏫ ᏅᏓᎦᏛᏁᎵ; ᎤᏪᏙᎵᏍᏗᏰᏃ ᏕᎬᏯᎦᏓᏅ, ᎠᎴ ᏕᏣᏙᎥ ᎬᏲᎵᏍᏔᏅ.\nᎯᎠᏃ ᏄᏪᏒᎩ, ᏍᎩᎾᏄᎪᏫᏏ ᏕᏣᎸᏌᏛᎢ.\nᎯᎠᏃ ᏄᏪᏒᎩ, ᏂᎦᏛ ᎪᏏᏳ ᎨᏒ ᎢᎬᏱᏗᏢ ᏣᎶᎯᏎᏗᏱ ᏅᏓᎬᏁᎵ, ᎠᎴ ᏱᎰᏩ ᏚᏙᎥ ᎬᏂᎨᏒ ᏅᏓᎬᏁᎵ ᎯᎦᏔᎲᎢ; ᎠᎴ ᎤᏪᏙᎵᏍᏗ ᏗᏥᏯᎦᏅᏗ ᎨᏎᏍᏗ, ᎾᏍᎩ ᎤᏪᏙᎵᏍᏗ ᏗᏥᏯᎦᏅᎦ ᎨᎵᏒᎭ, ᎠᎴ ᏥᏯᏙᎵᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩ ᏥᏯᏙᎵᎩ ᎨᎵᏒᎭ.\nᎯᎠᏃ ᏄᏪᏒᎩ, ᎥᏝᏰᎴᎵ ᏴᎦᎯᎪᏩᏛ ᎠᏆᎧᏛᎢ,Ꮻ ᎥᏝᏰᏃ ᎩᎶ ᏴᎬᎩᎪᏩᏛ ᎠᎴ ᎠᏏ ᏱᎦᎬᏅ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᎠᏓᏁᎳ ᎾᏆᏛᏅ ᎾᎥᎢ, ᎠᎴ ᏅᏲᎯ ᏔᎴᏂ;\nᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ, ᏓᎩᎸᏌᏛ ᎦᎶᏍᎬ ᎢᎪᎯᏛ, ᎤᏲᎯ ᎠᏔᎴᏒ ᏓᎬᎸᏂ, ᎠᎴ ᎠᏉᏰᏂ ᏓᎬᏳᏢᏔᏂ ᏥᎶᏍᎬ ᎢᎪᎯᏛ;\nᎠᏉᏰᏂᏃ ᎢᏴᏛ ᏅᏓᎬᏁᎵ, ᎠᎴ ᏥᏐᎯᏱ ᏘᎪᎯ; ᎠᏆᎧᏛᏍᎩᏂ ᎥᏝ ᎬᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸᎩ ᎼᏏ, ᏘᏲᎸᎦ ᏔᎵ ᏗᏯᏖᎾ ᏅᏯ ᎾᏍᎩᏯ ᎢᎬᏱᏱ ᏥᏂᏚᏍᏛᎩ; ᎾᎿᏃ ᏅᏲᎯ ᏓᎪᏪᎳᏂ ᎧᏃᎮᏛ ᎢᎬᏱᏱ ᏅᏲᎯ ᏥᎪᏪᎸᎢ, ᎾᏍᎩ ᏥᏕᏣᏓᏬᏔᏅᎩ.\nᎠᎴ ᏣᏛᏅᎢᏍᏕᏍᏗ ᏑᎾᎴᎢ, ᎠᎴ ᎯᎿᎷᏒᎭ ᏑᎾᎴ ᏌᎾᏱ ᎣᏓᎸᎢ, ᎠᎴ ᎬᏂᎨᏒ ᏂᏍᏆᏛᏁᎸᎩ ᎾᎿ ᎦᏏᏏ.\nᏞᏍᏗ ᎠᎴ ᎩᎶ ᏱᏍᏕᎡᎮᏍᏗ, ᏞᏍᏗ ᎠᎴ ᎩᎶ ᏴᏫ ᎬᎪᏩᏛᏗ ᏱᎨᏎᏍᏗ ᎾᎿ ᏂᎬᎾᏛ ᎣᏓᎸᎢ; ᏞᏍᏗ ᎠᎴ ᎠᏫ ᎠᎴ ᎦᎾᏝᎢ ᎢᎬᏱᏗᏢ ᎣᏓᎸ ᎤᎾᎵᏍᏓᏴᏂ ᏙᎸᎩ.\nᏔᎵᏃ ᏚᏲᎳᏅᎩ ᏗᏯᏖᎾ ᏅᏯ, ᎾᏍᎩᏯ ᎢᎬᏱᏱ ᏥᏂᏕᏅᏍᏛᎩ; ᎼᏏᏃ ᏑᎾᎴᎢ ᎤᏗᏛᎲᎩ, ᎠᎴ ᏌᎾᏱ ᎤᎿᎷᏒᎩ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸᎢ, ᎠᎴ ᏚᏴᏒᎩ ᎾᏍᎩ ᏔᎵ ᏅᏯ ᏗᏲᎳᏅᎯ. ᎢᎸ.\nᏱᎰᏩᏃ ᎤᏠᎠᏏᎸᎩ ᎤᎶᎩᎸ ᎠᏯᎥᎩ, ᎠᎴ ᎦᏙᎬ ᎤᏯᏅᎲᎩ.\nᏱᎰᏩᏃ ᎤᎶᏒᎩ ᏓᎧᏅ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎤᏁᏨᎩ ᎯᎠ ᏄᏪᏒᎩ, ᏱᎰᏩ, ᏱᎰᏩ ᎤᏁᎳᏅᎯ, ᎤᏓᏙᎵᏣᏘ ᎠᎴ ᎤᏓᏅᏘ, ᎤᏍᎦᏃᎳ ᎤᏔᎳᏬᎯᏍᏗᏱ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏁᎵ ᎣᏍᏛ ᎨᏒ, ᎠᎴ ᏚᏳᎪᏛ ᎨᏒᎢ.\nᎠᏍᏆᏂᎪᏗᏍᎩ ᏧᏪᏙᎵᏍᏗ ᎨᏒ ᏧᎦᏴᎳᏥᎶᏛ ᎢᏯᏂᏛ, ᏗᎲᎡᎯ ᏂᎦᏳᎪᏛᎾ ᎢᏯᏛᏁᏗ ᎨᏒ ᎠᎴ ᎠᏍᎦᏅᏨ ᎠᎴ ᎠᏍᎦᏂ, ᎠᎴ ᎾᏍᎩ ᏰᎵ ᏄᏍᎦᏅᏨᎾ ᎬᏪᎵᏎᏗ ᏂᎨᏒᎾ ᏥᎩ ᎤᏍᎦᏅᏨᎯ; ᏗᏍᏛᏗᏍᏗᏍᎩ ᏧᏁᏥ ᏧᏂᎦᏴᎵᎨ ᎤᏂᏍᎦᏅᏨ, ᎠᎴ ᏧᏁᏥ ᎾᏍᎩ ᏧᏁᏥ ᏗᏍᏛᏗᏍᏗᏍᎩ, ᏦᎢ ᎠᎴ ᏅᎩ ᎢᏳᎾᏓᏁᏟᏴᏛ ᏩᏍᏘ.\nᎼᏏᏃ ᎤᏩᏅᏨᎩ ᎠᎴ ᎦᏙᎯ ᎢᏗᏢ. ᎤᏗᏍᏚᏅᎩ, ᎠᎴ ᎤᏓᏙᎵᏍᏔᏅᎩ.\nᎯᎠᏃ ᏄᏪᏒᎩ, ᎢᏳᏃ ᎰᏩ ᎤᏪᏙᎵᏍᏗ ᏱᏘᏍᏆᎧᎿᏅ, ᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᎤᎬᏫᏳᎯ ᎠᏆᏤᎵᎦ ᏫᏙᎩᎧᎿᏩᏗᏓ; ᏧᏩᏗᏔᏯᏍᎩᏂᏃᏅ ᏗᏂᎵᎨᏂ ᎯᎠ ᏴᏫ; ᎠᎴ ᏗᎨᏍᎩᎲᏏ ᏂᏚᏳᎪᏛᎾ ᏃᎦᏛᏁᎸ ᎠᎴ ᎣᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎢᏨᏯᏤᎵ ᏂᏍᎩᏴᎦ.\nᎯᎠᏃ ᏄᏪᏒᎩ, ᎬᏂᏳᏉ ᎠᏴ ᎧᏃᎮᏛ ᏕᎦᏠᎢᏍᏗᎭ; ᏂᎦᏛ ᏗᏣᏤᎵ ᏴᏫ ᎠᏂᎦᏔᎲ ᎤᏍᏆᏂᎪᏗ ᏙᏛᎩᎸᏫᏍᏓᏁᎵ, ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏂᎨᏒᎾ ᎡᎶᎯ ᏂᎬᎾᏛᎢ, ᎠᎴ ᎢᎸᎯᏢ ᎤᎾᏓᏤᎵᏛ ᎠᏁᎲᎢ; ᏂᎦᏛᏃ ᏴᏫ ᎾᏍᎩ ᏂᎯ ᏥᎩᏰᎳᏗᏙᎭ, ᏛᏂᎪᎯ ᏚᎸᏫᏍᏓᏁᎸ ᏱᎰᏩ; ᎤᎾᏰᎯᏍᏗᏳᏰᏃ ᎾᏍᎩ ᏥᏙᏛᎩᎸᏫᏍᏓᏁᎵ ᏂᎯ ᎬᏴᏗᏍᎬᎢ.\nᎭᎦᏌᏯᏍᏓ ᎾᏍᎩ ᎪᎯ ᎢᎦ ᏥᎬᏁᏤᎭ; ᎬᏂᏳᏉ, ᎦᏥᏄᎪᏫᏍᎦ ᎢᎬᏱᏢ ᏂᏣᏛᏅ ᎠᏂᎡᎼᎵ, ᎠᎴ ᎠᏂᎨᎾᏂ, ᎠᎴ ᎠᏂᎯᏗ: ᎠᎴ ᎠᏂᏇᎵᏥ, ᎠᎴ ᎠᏂᎯᏫ, ᎠᎴ ᎠᏂᏥᏊᏏ.\nᎭᏓᏯᏫᏍᎨᏍᏗ ᏨᏒ, ᏞᏍᏗ ᎧᏃᎮᏛ ᏥᏙᏣᏠᎯᏍᏔᏂ ᎾᎿ ᎠᏁᎯ ᎾᎿ ᏥᏫᎦᏘ, ᎢᏥᏌᏛᎥᏍᎩᏰᏃ ᏱᏂᎦᎵᏍᏓ ᎠᏰᎵ ᏂᏣᏛᏅᎢ;\nᏕᏥᏲᏍᏔᏅᏍᎩᏂ ᎠᏥᎸ Ꮷ ᏁᎳᏍᏗᏱ, ᏕᏥᏲᏍᏔᏅᎭ ᏗᏟᎶᏍᏔᏅᎯ ᎤᏁᎳᏅᎯ ᏧᏂᏰᎸᎯ, ᎠᎴ ᏕᏥᎴᏴᏍᏓᏁᎸᎭ ᏧᎾᏤᎵ ᏧᏓᏡᎩ ᏕᏡᎬᎢ.\nᎥᏝᏰᏃ ᏅᏩᏓᎴ ᎤᏁᎳᏅᎯ ᎯᏯᏓᏙᎵᏍᏓᏁᏗ ᏱᎨᏎᏍᏗ; ᏱᎰᏩᏰᏃ ᎠᏛᏳᎨᏗ ᏥᏚᏙᎥ, ᎤᏛᏳᎩᏍᏗᏳ ᎤᏁᎳᏅᎯ.\nᎧᏃᎮᏛᏰᏃ ᏱᏕᏣᏠᎯᏍᏓ ᎾᎿ ᎠᏁᎯ, ᎾᏍᎩᏃ ᎤᏁᎳᏲᏍᎬ ᏱᏓᏂᏍᏓᏩᏚᎦ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ, ᎠᎴ ᎠᏥᎸ ᏱᏓᏁᎶᏏ ᎾᏍᎩ ᏧᎾᏁᎳᏅᎯ, ᎠᎴ ᎩᎶ ᏱᏣᏯᏅ, ᎠᎴ ᎾᏍᎩ ᏯᎵᏍᏓᏴᏓ ᎤᎵᏍᎪᎸᏔᏅᎯ;\nᎠᎴ ᎾᏍᎩ ᏱᏕᏥᏯᏅ ᎠᏂᎨᏴ ᎾᏍᎩ ᏧᏁᏥ, ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᏧᎾᏓᏴᏍᏗ, ᎾᏍᎩᏃ ᎠᏂᎨᏴ ᎾᏍᎩ ᏧᏁᏥ ᏚᏁᎳᏲᏍᎬ ᏧᎾᏁᎳᏅᎯ ᏱᏓᏂᏍᏓᏩᎦᎦ, ᎠᎴ ᎾᏍᏉ ᎠᏂᏍᎦᏯ ᏧᏤᏥ ᏚᏁᎳᏲᏍᎬ ᏧᎾᏁᎳᏅᎯ ᏱᏓᏂᏍᏓᏩᎦᎦ.\nᏞᏍᏗ ᏗᎬᎾᏬᏔᏅᎯ ᎤᏁᎳᏅᎯ ᏗᏣᏓᏙᏢᎾᏁᎸᎩ.\nᏗᎵᏍᏓᏴᏗᏱ ᎾᎪᏔᏅᎾ ᎦᏚ ᎠᎩᏍᏗᏱ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ. ᎦᎵᏉᎩ ᎢᎦ ᎾᎪᏔᏅᎾ ᎦᏚ ᏣᎩᏍᏗ ᎨᏎᏍᏗ ᎾᏍᎩᏯ ᏂᎬᏪᏎᎸ ᎬᏁᏤᎸᎢ ᎡᏈ ᎧᎸᎢ; ᎡᏈᏰᏃ ᎧᎸᎢ ᏓᏣᏄᎪᏨᎩ ᎢᏥᏈᏱ.\nᏂᎦᏛ ᎢᎬᏱᏱ ᎠᏁᎯ ᏗᏆᏤᎵᎦ: ᎠᎴ ᎦᎾᏝᎢ ᏗᏣᏤᎵᎦ ᏩᎦ, ᎠᎴ ᎠᏫ ᏱᎩ, ᏂᎦᏛ ᎢᎬᏱᏱ ᎠᏁᎯ ᎠᏂᏨᏯᎢ ᏗᏆᏤᎵᎦ.\nᏗᎦᎵᎠᏅᎯᏛᏍᎩᏂ ᏐᏈᎵ ᎢᎬᏱ ᎡᎯ, ᏣᏩᎯᏍᏗ ᎠᏫ ᏣᎫᏴᏙᏗ ᎨᏎᏍᏗ; ᎢᏳᏃ ᏂᏯᎫᏴᎲᎾ ᎢᎨᏎᏍᏗ, ᎿᏉ ᎯᏍᏆᎵᏎᏍᏗ ᎨᏎᏍᏗ ᎠᏴᏤᏂ. ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᏗᏤᏥ ᎢᎬᏱᏱ ᎠᏁᎯ ᏔᎫᏴᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎩᎶ ᎢᎬᏱᏢ ᎠᎩᎷᏤᏗ ᏱᎨᏎᏍᏗ ᎠᏒᎭᎢ.\nᏑᏓᎵ ᎢᎦ ᏗᏣᎸᏫᏯᏓᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ, ᏣᏣᏪᏐᎸᏍᏙᏗ ᎨᏎᏍᏗ; ᎦᏓᎷᎪᏗᏱ ᎨᏒ ᎠᎴ ᎠᎦᏛᎾᏨᎲᏍᎬ ᎢᏳᎢ ᏣᏣᏪᏐᎸᏍᏗ ᎨᏎᏍᏗ.\nᎠᎴ ᏣᏍᏆᏂᎪᏙᏗ ᎨᏎᏍᏗ ᏗᎵᏍᏓᏴᏗᏱ ᎦᎵᏉᎩ ᎢᏳᎾᏙᏓᏆᏍᏗ ᏓᎵᏍᏆᏗᏍᎬᎢ, ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᎦᏛᎾᏨᎯ ᎤᏣᎴᏍᏗ ᎠᏍᎫᏕᏍᏗᏱ, ᎠᎴ ᏗᎵᏍᏓᏴᏗᏱ ᎠᏍᏆᏂᎪᏙᏗᏱ ᎤᏕᏘᏴᏌᏗᏒ ᎠᎵᏍᏆᏗᏍᎬᎢ.\nᏑᏕᏘᏴᏛ ᎨᏒ ᏂᎦᏛ ᎠᏂᏍᎦᏯ ᏗᏣᏤᎵᎦ ᏦᎢ ᎬᏂᎨᏒ ᎢᏳᎾᏛᏁᏗ ᎨᏎᏍᏗ ᎤᎬᏫᏳᎯ ᏱᎰᏩ, ᎤᏁᎳᏅᎯ ᎢᏏᎵ ᎤᎾᏤᎵᎦ.\nᏓᎦᏥᏄᎪᏫᏏᏰᏃ ᎤᎾᏓᏤᎵᏛ ᏴᏫ ᎢᎬᏱᏗᏢ ᏄᎾᏛᏅᎢ, ᎠᎴ ᏓᎦᏛᏃᎯᏍᏔᏂ ᏂᎬᎾᏛ ᎢᏣᏤᎵᎪᎯ, ᎥᏝ ᎠᎴ ᎩᎶ ᏣᏚᎸᎡᏗ ᏱᎨᏎᏍᏗ ᏣᏤᎵ ᎦᏙᎯ, ᎾᎯᏳ ᏂᏓᏕᏘᏴᎯᏒ ᏦᎢ ᎬᏂᎨᏒ ᏫᏂᏯᏛᏁᎮᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ.\nᎩᎬ ᎠᏆᏤᎵ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒ ᎭᎵᏍᎪᎸᏗᏍᎨᏍᏗ ᏞᏍᏗ ᎠᎪᏙᏗ ᏯᏠᏯᏍᏗᏍᎨᏍᏗ: ᎥᏝ ᎠᎴ ᎧᏃᎯᏰᎩ ᏗᎵᏍᏓᏴᏗᏱ ᎠᎵᏍᎪᎸᏔᏅᎯ ᎤᎩᏨᏅ ᎢᏴᏛ ᎧᏃᎯᏯᏍᏗ ᏱᎨᏎᏍᏗ.\nᎢᎬᏱ ᎦᎾᏄᎪᏫᏍᎩ ᏣᏤᎵ ᎦᏙᎯ ᎢᎬᏱᏱᏉ ᎤᎾᏄᎪᏫᏒᎯ ᏣᏲᎯᏍᏗ ᎨᏎᏍᏗ ᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ. ᎠᏫ ᎠᎭᏄᎸᎯ ᎠᎩᎾ ᎤᏫᏯ ᎥᏝᏍᏗ ᏧᏗ ᏱᎨᏎᏍᏗ ᎤᏥ ᎤᏅᏗᎯ.\nᏱᎰᏩᏃ ᎯᎠ ᏄᏪᏎᎸ ᎼᏏ, ᎯᎠ ᎾᏍᎩ ᎧᏃᎮᏛ ᎰᏪᎸᎦ: ᎤᏠᏱᏰᏃ ᎧᏃᎮᏛ ᎬᏔᏅᎯ, ᎧᏃᎮᏛ ᏕᎩᎾᏠᎯᏍᏔᏅ, ᎠᎴ ᎾᏍᏉ ᎢᏏᎵ.\nᎾᎿᏃ ᏱᎰᏩ ᎡᏙᎲ ᎤᏪᏙᎸᎩ ᏅᎦᏍᎪᎯ ᎢᎦ, ᎠᎴ ᏅᎦᏍᎪᎯ ᏧᏒᎯᏛ: ᎥᏝ ᎠᎴ ᏳᎵᏍᏓᏴᏁᎢ, ᎥᏝ ᎠᎴ ᎠᎹ ᏳᏗᏔᎮᎢ, ᏗᏯᏖᎾᏃ ᏅᏲᎯ ᎤᏬᏪᎳᏁ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎾᏍᎩ ᎠᏍᎪᎯ ᏄᎵᏁᏨᎢ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ, ᎾᏍᎩ ᎼᏏ ᏧᏠᎠᏒ ᏌᎾᏱ ᎣᏓᎸᎢ, ᏗᎬᏰᎯ ᏔᎵ ᏗᏯᏖᎾ ᏅᏯ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᎪᏪᎸᎢ, ᎾᏍᎩ ᏧᏠᎠᏒ ᎣᏓᎸᎢ, ᎥᏝ ᎼᏏ ᏯᎦᏔᎮ ᎤᎧᏛ ᎤᏁᎦᎸ ᎤᏔᎷᎩᏍᎬ ᎾᎯᏳ ᎤᎵᏃᎮᏗᏍᎬᎢ.\nᎡᎳᏂᏃ ᎠᎴ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᎬᏩᎪᎲ ᎼᏏ, ᎬᏂᏳᏉ, ᎤᎧᏛ ᎤᏁᎦᎸ ᎤᏔᎷᎩᏍᎬᎩ; ᎠᏂᏍᎦᎢᎲᏃ ᎡᏙᎲ ᎾᎥ ᎤᏂᎷᎯᏍᏗᏱ.\nᎼᏏᏃ ᏫᏚᏯᏅᎲᎩ; ᎡᎳᏂᏃ ᎠᎴ ᏂᎦᏛ ᏄᏂᎬᏫᏳᏌᏕᎩ ᎤᎾᏓᏡᎬ ᎤᏂᎷᏨ ᎡᏙᎲᎢ; ᎼᏏᏃ ᏚᎵᏃᎮᏔᏅᎩ.\nᎣᏂᏃ ᏂᎦᏛ ᎢᏏᎵ ᏧᏪᏥ ᎾᎥ ᎤᏂᎷᏥᎸᎩ; ᏚᏲᎯᏎᎸᏃ ᏚᏁᏤᎸᎩ, ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎣᏓᎸ ᏌᎾᏱ.\nᎼᏏᏃ ᎢᎪᎯᏛ ᏕᎦᏬᏁᏗᏍᎬ ᎤᎧᏛ ᎠᏄᏬ ᎤᏭᏢᏔᏅᎩ.\nᏱᎰᏩᏍᎩᏂ ᎡᏙᎲ ᏫᎦᎷᎩ ᎼᏏ, ᎾᏍᎩ ᎤᎵᏃᎮᏙᏗᏱ, ᎠᏚᏞᏍᎬᎩ ᎬᏂ ᏓᎦᏄᎪᎢ. ᏓᎦᏄᎪᎬᏃ ᎠᎴ ᏕᎧᏃᏁᎲᎩ ᎢᏏᎵ ᏧᏪᏥ ᎾᏍᎩ ᏄᏍᏛ ᎠᏥᏁᏤᎸᎢ.\nᎢᏏᎵᏃ ᏧᏪᏥ ᎤᏂᎪᎲᎩ ᎼᏏ ᎤᎧᏛ, ᎾᏍᎩ ᎤᏁᎦᎸ ᎤᎧᏛ ᎤᏔᎷᎩᏍᎬᎢ: ᎼᏏᏃ ᎤᎧᏛ ᎠᏄᏬ ᎤᎴᏢᏔᏅᎩ, ᎬᏂ ᎾᏍᎩ ᏩᏴᎲ ᎾᏍᎩ ᎤᎵᏃᎮᏙᏗᏱ.\nᎼᏏᏃ ᏂᎦᏛ ᎤᎾᏓᏡᎬ ᎢᏏᎵ ᏧᏪᏥ ᏚᎳᏫᏛᎩ, ᎠᎴ ᎯᎠ ᏂᏚᏪᏎᎸᎩ, ᎯᎠ ᎧᏃᎮᏛ ᎾᏍᎩ ᏱᎰᏩ ᏧᏁᏨ ᎾᏍᎩ ᎢᏣᏳᏛᏁᏗᏱ.\nᏑᏓᎵ ᎢᎦ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏎᏍᏗ; ᎦᎵᏉᎩᏁᏍᎩᏂ ᎢᎦ ᎦᎸᏉᏗᏳ ᎢᏥᏰᎸᏎᏍᏗ ᎠᏣᏪᏐᎸᏍᏙᏗᏱ, ᏱᎰᏩ ᎡᏣᏣᏪᏐᎸᏍᏔᏁᏗᏱ; ᎩᎶ ᎾᎯᏳ ᏚᎸᏫᏍᏓᏁᎮᏍᏗ ᎠᏥᎢᏍᏗ ᎨᏎᏍᏗ.\nᎥᏝ ᏗᏦᏙᏗ ᏱᎨᏎᏍᏗ ᏂᎬᎾᏛ ᎢᏥᏅ ᎤᎾ ᏙᏓᏆᏍᎬ ᎢᎦ.\nᎼᏏᏃ ᏚᏁᏤᎸ ᏂᎦᏛ ᎤᎾᏓᏡᎬ ᎢᏏᎵ ᏧᏪᏥ, ᎯᎠ ᏄᏪᏒᎩ, ᎯᎠ ᎾᏍᎩ ᏄᏍᏗ ᏱᎰᏩ ᏧᏁᏨ, ᎯᎠ ᏥᏄᏪᏒ,\nᎢᏥᎩ ᎢᏤᎲ ᏱᎰᏩ ᎡᏣᎵᏍᎪᎸᏓᏁᏗ: ᎩᎶ ᎤᎾᏫᏱ ᎤᎵᏰᏍᏗ, ᎾᏍᎩ ᏩᏲᎦ, ᎾᏍᎩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏱᎨᏩ; ᎠᏕᎸ ᏓᎶᏂᎨ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ,\nᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩ ,\nᎤᏂᏃᏕᎾᏃ ᎦᏁᎦ ᏗᎩ ᎦᎨᎢ, ᎠᎴ ᏓᎭᏏ ᎦᏁᎦ, ᎠᎴ ᎠᏓ-ᎬᎾᎨ,\nᎠᎴ ᎪᎢ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ, ᎠᎴ ᎦᏩᏒᎩ ᎠᏠᏁᏗ ᎪᏢᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ ᎪᏢᏗ.\nᎣᏂᎦ ᎾᏯ, ᎠᎴ ᏅᏯ ᎡᏉᏗᏱ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏗᎦᎪᏗ.\nᎾᏂᎥᏃ ᎠᏂᎦᏔᎾᎢ ᏙᏧᎾᏓᏅᏛᎢ ᎨᎶᏓᏑᏴᎢ ᎤᏂᎷᎯᏍᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᏃᏢᏗ ᎨᏎᏍᏗ ᏂᎦᏛ ᏱᎰᏩ ᎤᏁᏨ ᎪᏢᏗᏱ;\nᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎤᏤᎵ ᎦᎵᏦᏙᏗ, ᎠᎴ ᎤᏤᎵ ᎫᏢᏗ, ᎠᎴ ᏧᏤᎵ ᏗᎫᏓᎸᏗᏱ, ᎠᎴ ᏧᏤᎵ ᏧᏯᏖᎾ, ᏧᏤᎵ ᏗᏍᏆᎾᎳᏗᏍᏗ, ᏧᏤᎵ ᏗᎦᎫᏍᏛᏗ, ᎠᎴ ᏧᏤᎵ ᏓᏔᎴᏒᎢ:\nᎦᏁᏌᎢ, ᎠᎴ ᎾᎿ ᏤᎯ ᎦᏅᏍᏙᏗ, ᎫᏢᏗ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎾᏍᎩ ᎫᏢᏗ.\nᎦᏍᎩᎶ ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎦᏅᏍᏙᏗ ᎠᎴ ᏂᎦᏛ ᎾᏍᎩ ᏧᏤᎵ ᎪᎱᏍᏗ ᏗᏂᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᎦᏙᏗ ᎦᏚ.\nᏗᏨᏍᏙᏗᏃ ᏗᎦᎪᏗᏱ ᎢᎦ ᎠᏘᏍᏙᏗ, ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎪᎢ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ, ᎠᎴ ᎪᎢ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ,\nᎠᎴ ᎦᏩᏒᎩ ᎬᏙᏗᏱ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎦᏅᏍᏙᏗ, ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ, ᎠᎴ ᎤᏚᎾᏍᏛ ᎦᏩᏒᎩ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎦᎶᎯᏍᏗᏱ, ᎾᏍᎩ ᏩᏴᏍᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ,\nᎠᏥᎸ-ᎨᎳᏍᏗᏱ, ᎠᎴ ᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ, ᎾᏍᎩ ᏧᏤᎵ ᎦᏅᏍᏙᏗ, ᎠᎴ ᏂᎦᏛ ᏧᏤᎵ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᏗᎪᏑᎴᏗᏃ ᎠᎴ ᎾᏍᎩ ᎠᏠᏗᏱ,\nᏗᏰᏙᎳᏛᏗ ᎣᏂ ᎪᏢᏒᎢ, ᏗᎦᎫᏍᏛᏗ, ᎠᎴ ᏧᏤᎵ ᏓᏔᎴᏒ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎦᎶᎯᏍᏗᏱ ᎣᏂ ᎪᏢᏒᎢ,\nᏗᎨᎢᏂᏓᏍᏗ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎣᏂ ᎪᏢᏒᎢ ᏗᎨᏘᏂᏓᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᎠᏍᏕᏱᏛ.\nᏗᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏗᏄᏬᏍᏗ; ᎾᎿ ᎦᎸᏉᏗᏨ ᎨᏒ ᎪᎱᏍᏗ ᎥᏛᏁᎲ ᏗᏄᏬᏍᏗ, ᎾᏍᎩ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᎡᎳᏂ ᎠᏥᎸ ᎨᎶᎯ ᏧᏄᏬᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏄᏬᎢ, ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᏂᎦᏛᏃ ᏓᏂᎳᏫᎥ ᎢᏏᎵ ᏧᏪᏥ ᎼᏏ ᎤᎾᏓᏅᎡᎸᎩ.\nᎤᏂᎷᏨᎩᏃ, ᎾᏂᎥ ᎤᎾᏫ ᎤᏖᎸᎲᏍᎩ, ᎠᎴ ᎾᏂᎥ ᎤᏓᏅᏛ ᎤᏅᏫᏍᏗᏍᎩ, ᎤᏂᏲᎸᏃ ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏃᏢᏍᎬ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏗᎪᏢᏙᏗ.\nᎤᏂᎷᏨᎩᏃ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᏂᎦᏛ ᎤᎾᏛᏅᎢᏍᏗ ᏧᏂᎾᏫᏱ, ᎠᎴ ᏚᏂᏃᎸᎩ ᏗᎵᏴᏌᏙᏗ ᎠᎴ ᏧᎾᏟᏯᏙ ᎠᎴ ᏧᎾᎵᏰᏑᏍᏚᏬ, ᎠᎴ ᎠᏕᎸ ᏗᏯᏠᏗ ᏂᎦᏛ ᏗᏣᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ; ᎾᏂᎥᏃ ᎠᎾᎵᏍᎪᎸᏗᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎾᎵᏍᎪᎸᏓᏁᎸᎩ ᏱᎰᏩ.\nᎩᎶᏃ ᏕᎭᎷᎨ ᏳᎾᎠ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩᏢ, ᎠᎴ ᎤᏃᏕᎾ ᎦᏁᎦ ᎩᎦᎨᎢ, ᎠᎴ ᏓᎭᏏ ᎦᏁᎦ, ᎾᏍᎩ ᏚᏂᏃᎸᎩ.\nᎩᎶᏃ ᎠᏕᎸ ᎤᏁᎬ ᎠᎵᏍᎪᎸᏗᏍᎩ ᎠᎴ ᎥᏣᏱ, ᏱᎰᏩ ᎠᎵᏍᎪᎸᏓᏁᏗ ᎤᏂᏲᎸᎩ; ᎩᎶᏃ ᎠᏓ-ᎬᎿᎨ ᏧᏩᏯ ᎪᎱᏍᏗ ᎦᎬᏙᏗ ᎨᏒ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ, ᎾᏍᎩ ᎤᏪᏃᎸᎩ.\nᏂᎦᏛᏃ ᎠᏂᎨᏴ ᎠᏂᏏᎾᏌᏂ ᏧᏂᎾᏫᏱ, ᎠᏂᏍᏙᎲᎩ, ᎠᎴ ᎤᏂᏲᎸᎩ ᎾᏍᎩ ᎤᏂᏍᏙᎸᎯ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ.\nᎠᎴ ᏂᎦᏛ ᎠᏂᎨᏴ ᏧᏂᎾᏫ ᎤᏂᏖᎸᎲᏍᎩ ᎠᏂᏏᎾᏌᏅ ᎤᏅᏙᏗᏱ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩᏢ ᎤᏂᏍᏙᎸᎩ.\nᏄᏂᎬᏫᏳᏌᏕᎩᏃ ᎣᏂᎦ ᎤᏯ ᏚᏂᏲᎸᎩ, ᎠᎴ ᎤᏯ ᏗᎦᎪᏗ ᎡᏉᏗᏱ, ᎠᎴ ᎠᏓᏁᏣᏍᏚᎶᎩᏱ ᏗᎦᎪᏗ.\nᎠᎴ ᎦᏩᏒᎩ, ᎠᎴ ᎪᎢ ᏗᏨᏍᏙᏗ ᏗᎪᏢᏗ, ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ.\nᎢᏏᎵ ᏧᏪᏥ ᎣᏏᏳ ᎤᏂᏰᎸᎯ ᎠᏂᏲᎯᎲ ᎠᎵᏍᎪᎸᏓᏁᏗ ᏱᎰᏩ. ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᎴ ᎠᏂᎨᏴ, ᎾᏍᎩ ᏧᏂᎾᏫ ᎤᏂᏗᏱ ᎢᏳᏅᏁᎯ, ᎾᏍᎩ ᏄᏓᎴᏒ ᎪᏢᏙᏗ ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ ᎪᏢᏗᏱ.\nᎼᏏᏃ ᎯᎠ ᏄᏚᏪᏎᎸᎩ ᎢᏏᎵ ᏧᏪᏥ, ᎬᏂᏳᏉ, ᏱᎰᏩ ᏚᏙᎥ ᎤᏯᏅᏔᏅ ᏇᏣᎵᎵ ᏳᎳ ᎤᏪᏥ, ᎾᏍᎩ ᎭᎵ ᎤᏪᏥ, ᏧᏓᏏ ᎠᏂᎳᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ;\nᎠᎴ ᎾᏍᎩ ᎠᎧᎵᎢ ᎤᏁᎸ ᎠᏓᏅᏙ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎠᏏᎾᏌᏂ ᎨᏒ, ᎠᎴ ᎪᎵᏍᏗ ᎨᏒ, ᎠᎴ ᎠᎦᏔᎾᎢ ᎨᏒ, ᎠᎴ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ.\nᎠᎴ ᎠᏯᏍᏗ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏅᏗ ᎨᏒ, ᎠᎴ ᎠᏕᎸ ᎤᏁᎬ, ᎠᎴ ᎥᏣᏱ,\nᎠᎴ ᏅᏯ ᏗᏲᎳᏅᎯ ᏗᎦᎪᏗ, ᎠᎴ ᎠᏓ ᎪᏢᏅᎥᏍᎩ, ᎪᏢᏗᏱ ᏄᏓᎴᏒ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ.\nᎠᎴ ᎤᎸᏅ ᎤᎾᏫᏱ ᎾᏍᎩ ᏧᏕᏲᏗᏱ, ᎤᏩᏒ ᎨᏒ ᎠᎴ ᎠᎰᎵᎠᏈ, ᎠᎯᏏᎹᎩ ᎤᏪᏥ, ᏕᏂ ᎠᏂᎳᏍᏓᎸ ᏅᏓᏳᏓᎴᏅᎯ.\nᎾᏍᎩ ᏧᏂᎾᏫ ᏚᎧᎵᎴᎸ ᎠᏏᎾᏌᏂ ᎨᏒᎢ ᎤᏃᏢᏗᏱ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒᎢ, ᏗᏰᎶᎯ, ᎤᏬᏢᏅᏗ ᎨᏒ, ᎠᎴ ᎠᏏᎾᏌᏂ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎠᏄᏬᎩᎯ ᏗᎪᏪᎵᏍᎩ, ᎤᏃᏢᏅᏗ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ, ᎠᎴ ᏗᎬᏍᎩ ᎤᏬᏢᏅᏗ ᎨᏒ, ᎾᏍᎩ ᏂᎦᎥᏉ ᏧᏂᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏂᏲᎯ ᎤᏍᏆᏂᎪᏗ ᏗᎦᎸᏫᏍᏓᏁᏗ.\nᎿᏉᏃ ᏚᏂᎸᏫᏍᏓᏁᎸᎩ ᏇᏣᎵᎵ ᎠᎴ ᎠᎰᎵᎠᏈ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎠᏂᎦᏔᎾᎢ ᏙᏧᎾᏓᏅᏛᎢ ᎾᏍᎩ ᏱᎰᏩᏧᎳᏁᎸᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎴ ᎪᎵᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎤᏃᎵᏍᏗᏱ ᎢᏳᏅᏁᏗᏱ ᎤᏃᏢᏗᏱ ᏄᏓᎴᏒ ᎪᏢᏅᏗ ᎨᏒ ᎾᏍᎩ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸᎢ, ᎾᏍᎩᏯ ᏂᎦᏛ ᏄᏪᏒ ᏱᎰᏩ.\nᎼᏏᏃ ᏫᏚᏯᏅᎲᎩ ᏇᏣᎵᎵ ᎠᎴ ᎠᎰᎵᎠᏈ, ᎠᎴ ᎾᏂᎥ ᎠᏂᏍᎦᏯ ᎾᏍᎩ ᏙᏧᎾᏓᏅᏛ ᏱᎰᏩ ᏧᎳᏁᎸᎯ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎾᏂᎥ ᏧᏂᎾᏫ ᎤᏂᏅᏫᏍᏗᏍᎩ ᎤᏂᎷᎯᏍᏗᏱ ᎾᎿ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ.\nᎠᎴ ᎼᏏ ᏚᏲᎯᏎᎸᎩ ᏂᎦᏛ ᎤᎾᎵᏍᎪᎸᏔᏅᎯ ᎢᏏᎵ ᏧᏪᏥ, ᎾᏍᎩ ᎤᏂᏲᎸᎯ ᎪᏢᏙᏗ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸᎢ ᎾᏍᎩ ᎪᏢᏗ. ᎠᎴ ᎠᏏᏉ ᎠᏂᏲᎯᎲᎩ ᏂᏚᎩᏨᏂᏒ ᎤᏅᏒ ᎤᎾᏓᏅᏖᏛ ᎠᎵᏍᎪᎸᏙᏗ.\nᏂᎦᏛᏃ ᎠᏂᎦᏔᎾᎢ ᎠᏂᏍᎦᏯ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎤᏃᏢᏅᎯ ᎪᎱᏍᏗ ᎦᎸᏉᏗ ᎠᏓᏁᎸ ᎡᎯ, ᎤᏅᏕᏨᎩ ᎠᏂᏏᏴᏫᎭ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏃᏢᏅᎥᏍᎬᎢ.\nᎤᏂᏁᏤᎸᎩᏃ ᎼᏏ ᎯᎠ ᏄᏂᏪᏒᎩ, ᎤᎶᏒᏍᏔᏅᎯᏉ ᎠᏂᏲᎯᎭ ᏴᏫ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎪᏢᏗ ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᏨᎯ ᏥᎩ ᎪᏢᏗᏱ.\nᎼᏏᏃ ᎤᏁᏨᎩ, ᎠᎴ ᎾᏍᎩ ᏚᏂᏃᏳᎳᏅᎩ ᏂᎬᎾᏛ ᎠᏂᏅᎢ, ᎯᎠ ᏄᏂᏪᏒᎩ, ᏞᏍᏗ ᎠᏍᎦᏯ ᎠᎴ ᎠᎨᏴ ᎿᏉ ᏳᏬᏢᏁᏍᏗ ᎪᎱᏍᏗ ᎠᎵᏍᎪᎸᏙᏗ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᎦᎸᏉᏗᏳ ᎠᏓᏁᎸᎢ. ᎰᏩᏃ ᎥᎨᏥᏲᎯᏍᏓᏁᎸᎩ ᏴᏫ ᎠᏂᏲᎯᎲᎢ.\nᎪᎱᏍᏗᏰᏃ ᎤᎾᏛᏅᎢᏍᏔᏅᎢ ᏰᎵᏉ ᎨᏒᎩ ᏂᎦᏛ ᎪᏢᏅᏗ ᎨᏒ ᎪᏢᏗ, ᎠᎴ ᎤᎶᏒᏍᏗ ᎨᏒᎩ.\nᎾᏂᎥᏃ ᎠᏂᏍᎦᏯ ᏙᏧᎾᏓᏅᏛ ᎠᏂᎦᏔᎾᎢ ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᎸᎯ ᎠᏂᎵᏦᏛᏍᎬᎢ, ᎾᏍᎩ ᏚᏃᏢᏅᎩ ᎠᏍᎪᎯ ᏗᏰᏙᎳᏛᏗ, ᎤᏏᏙᎵ ᏙᎴᏛ ᏗᏏᏓᎵ, ᎠᎴ ᏕᎭᎷᎨ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ ᎠᏄᏬ ᏚᏃᏢᏔᏅᎩ; ᎠᏂᎩᎷᏫ ᎠᎵᏏᎾᎯᏍᏗ ᎬᏔᏅᎯ ᏗᎪᏢᏅᎯ ᏂᏚᏅᏁᎸᎩ.\nᏌᏉ ᎠᏰᏙᎳᏛᏗ ᏁᎳᏦᏁ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏌᏉᏃ ᎠᏰᏙᎳᏛᏗ ᏅᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ; ᎢᏗᎦᏱᏛᎭ ᎨᏒᎩ ᏂᎦᏛ ᏗᏰᏕᏙᎳᏛᏗ\nᏚᏭᏓᏔᏅᏃ ᎯᏍᎩ ᏗᏰᏙᎳᏛᏗ; ᎠᎴ ᎾᏍᏉ ᏗᏐᎢ ᎯᏍᎩ ᏗᏰᏙᎳᏛᏗ ᏚᏭᏓᏔᏅᎩ.\nᏧᏓᏕᏍᏗᏱᏃ ᏚᏬᏢᏅᎩ. ᏕᎭᎷᎨᎢ ᎾᏍᎩ ᎠᏍᏛ ᏌᏉ ᎠᏰᏙᎳᏛᏗᏱ, ᎠᏓᎴᏂᏍᎬᎩ ᎠᏍᏛ ᏚᏚᏓᏛᎢ; ᎤᏠᏱ ᏚᏬᏢᏅᎩ ᎠᏍᏛ ᏔᎵᏁ ᎠᏰᏙᎳᏛᎢ ᏚᏚᏓᏛᎢ.\nᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᏚᏬᏢᏅᎩ ᏌᏉ ᎠᏰᏙᎳᏛᎢ, ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏧᏓᏕᏍᏗᏱ ᏚᏬᏢᏅᎩ ᎠᏍᏛ ᎠᏰᏙᎳᏛ ᎾᏍᎩ ᏚᏚᏓᏛ ᏐᎢᏱ; ᎾᏍᎩ ᏧᏓᏕᏍᏗᏱ ᏗᎫᏓᏕᏫᏍᎩ ᎨᏒ ᏓᏰᏙᎳᏛᎢ.\nᎯᏍᎦᏍᎪᎯᏃ ᏚᏬᏢᏅᎩ ᏗᎫᏓᎸᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏗᎫᏓᎸᏗᏱ ᏚᏭᏙᏔᏅᎩ ᏓᏰᏙᎳᏛᎢ ᎾᏍᎩᏃ ᏌᏉ ᏄᎵᏍᏔᏅᎩ ᎦᎵᏦᏛᎢ.\nᏗᎦᏙᎳᏛᏗᏃ ᎠᏫ ᏗᏂᎭᏄᎸᎯ ᎤᎩᏢ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎬᏅᏙᏗ ᎦᎵᏦᏛᎢ: ᏌᏚ ᏚᏬᏢᏅᎩ ᏗᏕᏙᎳᏛᏗ.\nᏌᏉ ᎠᏰᏙᎳᏛᏗ ᏦᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏅᎩᏃ ᎢᏯᎩᏳᏍᏈᏛ ᎤᏯᏛᎥᎩ ᏌᏉ ᎠᏰᏙᎳᏛᏗ;: ᎾᏍᎩ ᏌᏚ ᏗᏰᏙᎳᏛᏗ ᎢᏗᎦᏱᏛᎭ ᎨᏒᎩ.\nᎯᏍᎩᏃ ᏗᏰᏙᎳᏛᏗ ᎤᏁᎳᎩ ᏚᏭᏓᏔᏅᎩ, ᎠᎴ ᏑᏓᎵ ᏗᏰᏙᎳᏛᏗ ᎤᏁᎳᎩ ᏚᏭᏓᏔᏅᎩ.\nᎯᏍᎦᏍᎪᎯᏃ ᏚᏬᏢᏅᎩ ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᎠᏰᏙᎳᏛᏗ ᎾᎿ ᏚᏚᏓᏛᎢ. ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏚᏬᏢᏅᎩ ᏧᏓᏕᏍᏗᏱ ᎠᏍᏛ ᎠᏰᏙᎳᏛᏗ ᎾᏍᎩ ᏔᎵᏁ ᏚᏚᏓᏛᎢ…\nᎠᎴ ᎯᏍᎦᏍᎪᎯ ᏚᏬᏢᏅᎩ ᏗᎫᏓᎸᏗᏱ ᎥᏣᏱ ᏚᏬᏢᏔᏅᎩ ᎾᏍᎩ ᏗᎫᏓᏙᏗ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᏌᏉ ᎢᏳᎵᏍᏙᏗᏱ.\nᎠᎴ ᎦᎵᏦᏛ ᎫᏢᏙᏗ ᎤᏬᏢᏅᎩ ᎤᏂᏃᏕᎾ ᎦᏁᎦ ᏗᎩᎦᎨ ᎤᏬᏢᏔᏅᎩ, ᎠᎴ ᎾᎿ ᎦᎸᎳᏗᏢ ᎫᏢᏗ ᎤᏬᏢᏅᎩ ᏓᎭᏏ ᎦᏁᎦ ᎤᏬᏢᏔᏅᎩ.\nᏧᏯᏖᎾᏃ ᏚᏬᏢᏅᎩ ᎠᏓ-ᎬᎾᎨ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎦᎵᏦᏙᏉᏉᏙᏗ, ᏕᎦᎧᎲᎩ.\nᎠᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ ᏌᏉ ᎤᏯᏖᎾ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ ᏌᏉ ᎤᏯᏖᎾ.\nᏌᏉ ᎤᏯᏖᎾ ᏔᎵ ᏕᎪᏢᏒᎩ ᏗᎫᏍᏗᏍᏓᏱ, ᏕᎦᎧᎲᎩ ᎣᏍᏛ ᏓᏙᎵᎬᎩ; ᎾᏍᎩ ᏂᏚᏩᏁᎸᎩ ᏂᎦᏛ ᏧᏯᏖᎾ ᎾᏍᎩ ᎦᎵᏦᏙᏙᏗ.\nᎠᎴ ᏧᏯᏖᎾ ᏚᏬᏢᏅᎩ ᎦᎵᏦᏙᏙᏗ ᏔᎳᏍᎪᎯ ᏧᏯᏖᎾ ᏧᎦᎾᏮ ᎢᏗᏢ ᏤᎯ.\nᎤᎦᏍᎪᎯᏃ ᏚᏬᏢᏅᎩ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎭᏫᏂᏗᏢ ᏔᎳᏍᎪᎯ. ᏧᏯᏖᏃᎯ ᏂᏚᏩᏁᎸᎩ; ᏔᎵ ᏓᏔᎴᏒ ᏌᏉ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ ᎾᏍᎩ ᏗᏠᏍᎩ ᏗᎫᏍᏙᏍᏗ, ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᏐᎢᏱ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ, ᎾᏍᎩ ᏗᏠᏍᎩ ᏔᎵ ᏗᎫᏍᏙᏍᏗ.\nᎠᎴ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ ᏤᎯ, ᎾᏍᎩ ᏧᏴᏢ ᎢᏗᏢ, ᏔᎳᏍᎪᎯ ᏚᏬᏢᏅᎩ ᏧᏯᏖᎾ.\nᎠᎴ ᎾᎿ ᏤᎯ ᏓᏔᎴᏒ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏅᎦᏍᎪᎯ ᏚᏬᏢᏅᎩ; ᏔᎵ ᏓᏔᎴᏒ ᏌᏉ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ ᎠᎴ ᏔᎵ ᏓᏔᎴᏒ ᏐᎢᏱ ᎤᏯᏖᏃᎯ ᎭᏫᏂᏗᏢ.\nᎠᏍᏆᎨᏂᏃ ᎾᏍᎩ ᎦᎵᏦᏛ ᏭᏕᎵᎬ ᏫᏚᏳᎪᏛ ᏑᏓᎵ ᏓᏯᏖᎾ ᏚᏬᏢᏅᎩ.\nᏔᎵᏃ ᏧᏯᏖᎾ ᏚᏬᏢᏅᎩ ᎤᏅᏏᏴ ᏤᎯ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᎾᎿ ᏔᎵ ᏗᏍᏆᎨᏂ ᎨᏒᎢ.\nᎡᎳᏗᏢᏃ ᏕᎫᏓᏛᎩ, ᎠᎴ ᎾᏍᎩ ᎤᏍᎪᎵ ᎦᎸᎳᏗ ᏕᎫᏓᏛᎩ, ᎾᏍᎩ ᎯᎠ ᎢᏧᎳ ᏂᏚᏩᏁᎸᎩ, ᎢᏧᎳᏗᏢ ᎾᏍᎩ ᎤᏅᏏᏴᎢ.\nᎾᏍᎩᏃ ᏧᏁᎳ ᏂᎦᎥᎩ ᏧᏯᏖᎾ: ᏓᏔᎴᏒᏃ ᏓᎳᏚ ᏂᎦᎥᎩ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏓᏔᎴᏒᎩ; ᏂᎦᏛ ᏧᏯᏖᎾ ᏔᎵᎭᎾ ᎭᏫᏂᏗᏢ ᏓᏔᎴᏒᎩ.\nᏗᏍᏆᎾᎳᏗᏍᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ; ᎯᏍᎩ ᏓᏢᎩ ᏧᏯᏖᏃᎯ ᏌᏉ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎦᎵᏦᏛᎢ.\nᎯᏍᎩᏃ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏢᎩ ᏧᏯᏖᏃᎯ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ: ᎠᎴ ᎯᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏓᏢᎩ ᏧᏯᏖᏃᎯ ᎠᏍᏆᎨᏂ ᎦᎵᏦᏛᎢ ᏭᏕᎵᎬ ᎢᏗᏢ.\nᎠᏰᎵᏃ ᎡᎯ ᎠᏍᏆᎾᎳᏗᏍᏗ ᏧᏯᏖᏃᎯ ᎠᏰᎵ ᏂᎦᏅᎯᏒ ᎠᏢᎩ.\nᏧᏯᏖᎾᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏔᏅᎩ, ᎠᎴ ᎾᏍᎩ ᏧᏓᏆᏙᏉᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ ᎾᏍᎩ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏗᏝᏗᏍᏗᏱ; ᎾᏍᎩᏃ ᏗᏍᏆᎾᎳᏗᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ.\nᎠᏰᏙᎳᏛᏗᏃ ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᎤᏥᎸᎢ ᎤᏬᏢᏔᏅᎩ, ᎠᏂᎩᎷᏫ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ. ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᏚᏬᏪᎳᏅᎩ ᎾᎿᏂ.\nᎠᎴ ᎾᎿ ᏚᏠᏯᏍᏔᏅᎩ ᏅᎩ ᏗᎦᎫᏍᏛᏗ ᎠᏓ ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᎠᎴ ᏅᎩ ᏓᏔᎴᏒ ᏚᏩᏅᏬᏅᎩ ᏚᏬᏢᏔᏅᎩ, ᎠᏕᎸ ᎤᏁᎬ ᏚᏬᏢᏔᏅᎩ.\nᎠᏰᏙᎳᏛᏗᏃ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᎠᏍᏚᏗ ᎤᏬᏢᏅᎩ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᎤᏬᏢᏔᏅᎩ, ᎪᏪᎳᏅᎯ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ.\nᎠᎴ ᎾᏍᎩ ᎯᏍᎩ ᏗᎦᎫᏍᏛᏗ ᎬᏩᏠᏯᏍᏗ ᎠᎴ ᎾᎿ ᏤᎯ ᏗᎦᏙᏌᏗᏍᏗᏱ; ᎠᎴ ᎾᏍᎩ ᏧᏍᎪᎵ ᎠᎴ ᎾᎿ ᏤᎯ ᎤᏯᏅᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ; ᎾᏍᎩᏂ ᎯᏍᎩ ᏓᏔᎴᏒ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᏇᏣᎵᎵᏃ ᎦᏁᏌᎢ ᎠᏓ-ᎬᎿᎨ ᎤᏬᏢᏔᏅᎩ; ᏦᎢᏁ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ.\nᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏭᏢᏔᏅᎩ ᎭᏫᏂᏗᏢ ᎠᎴ ᎦᏚᎢ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏄᏩᏁᏔᏅᎩ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ.\nᎠᎴ ᎾᏍᎩ ᎤᏩᏅᏬᏔᏅᎯ ᏅᎩ ᏧᏓᏆᏙᎩ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᏗᎦᏙᏗ, ᏔᎵ ᏧᏓᏆᏙᎩ ᏌᏉ ᎠᏍᏆᎨᏂ ᏤᎯ, ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᏐᎢᏗᏢ ᎠᏍᏆᎨᏂ ᏤᎯ.\nᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ.\nᎦᏅᏍᏙᏗᏃ ᏧᏓᏆᏙᎩ ᏕᎦᏛ ᏚᏭᏍᏛᏅᎩ ᎠᏍᏆᎨᏂ ᎢᏗᏢ ᎦᏁᏌᎢᎯ, ᎾᏍᎩ ᎦᏁᏌᎢ ᎦᏅᏍᏙᏗ.\nᎠᎴ ᎫᏢᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏬᏢᏔᏅᎩ;, ᏦᎢᏁ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏍᏛᎥᎩ.\nᎠᎴ ᎠᏂᏔᎵ ᎠᏂᎩᎷᏫ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ, ᏗᎦᏅᏆᎶᏏᎶᏛ ᎨᏒᎩ, ᎢᏧᎳ ᎢᏗᏢ ᏧᏍᎪᎵ ᎫᏢᏗᎯ ᏚᏪᎧᏅᎩ.\nᎠᏏᏴᏫ ᎠᎩᎷᏫ ᎤᏍᎪᎵ ᎯᎠ ᎢᏗᏢ ᎦᏙᎬᎩ, ᏐᎢᏃ ᎠᎩᎷᏫ ᏐᎢᏗᏢ ᎤᏍᎪᎵ ᎦᏙᎬᎩ, ᏗᏢᏗᏱ ᏚᏪᎧᏅᎩ ᏚᏬᏢᏅᎩ ᎠᏂᎩᎷᏫ, ᎾᏍᎩ ᎾᎿ ᎢᏧᎳᏗᏢ ᏧᏍᎪᎵ.\nᎠᏂᎩᎷᏫᏃ ᏚᎾᏐᎸᏛᎩ ᏗᏂᏃᎨᏂ; ᎠᎴ ᏗᏂᏃᎨᏂ ᎬᏗ ᎤᏄᏢᏛᎩ ᎫᏢᏗ, ᏓᎾᏓᎧᏅᎩ; ᎾᏍᎩ ᎫᏢᏗᏱ ᎢᏗᏢ ᏭᎾᎦᏛᎩ ᎠᏂᎩᎷᏫ.\nᎦᏍᎩᎶᏃ ᎠᏓ-ᎬᏁᎨ ᎤᏬᏢᏔᏅᎩ; ᏔᎵ ᎢᏯᎩᏳᏍᏡᏛ ᏂᎦᏅᎯᏒᎩ, ᏌᏉᏃ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᏔᎵᏁᏃ ᎠᏰᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ.\nᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏭᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏪᏯᎸᏅᎩ ᎾᎿ ᎬᏩᏚᏫᏛ.\nᎠᎴ ᎾᏍᏉ ᎾᎿ ᎤᎬᏔᏅᏅᎩ ᎤᏬᏰᏂ ᎾᏯᏛᎥ ᎢᏯᏯᏖᏅᎬ ᏩᏚᏫᏛ; ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏪᏯᎸᏅᎩ ᎾᎿ ᎬᏩᏚᏫᏛ.\nᎠᎴ ᏅᎩ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ ᎬᎾᏬᏔᏅᎯ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ ᏧᏓᏆᏙᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᏚᏔᏅᎩ, ᎾᎿ ᏅᎩ ᏂᏚᏔᏍᎬᎢ.\nᎠᎬᏔᏅᏛ ᎾᎥ ᏕᎦᏛᎩ ᏧᏓᏆᏙᎩ, ᎾᎿ ᏗᎫᏍᏙᏍᏗᏱ ᏗᎦᏅᏍᏙᏗ ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ.\nᏗᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᎦᏍᎩᎶ ᎦᏅᏍᏙᏗ.\nᎠᎴ ᎦᏍᎩᎸ ᏤᎯ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᏚᏬᏢᏅᎩ, ᎾᏍᎩ ᏗᏯᏖᎾ ᎠᎴ ᏗᏗᏙᏗ, ᎠᎴ ᏗᎡᎵᏙ, ᎠᎴ ᏗᏟᏍᏙᏗᏖ ᏗᏖᎵᎩ, ᎾᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏚᏬᏢᏔᏅᎩ.\nᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏬᏢᏔᏅᎩ; ᎦᏅᏆᎶᏛ ᎨᏒ ᎤᏬᏢᏅ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ; ᎤᏪᏛᎢ, ᎠᎴ ᏚᏩᏂᎦᎸᎢ, ᏗᏖᎵᏙ ᏧᏤᎵᎦ, ᏚᏆᏛᎢ, ᎠᎴ ᏚᏥᎸᏒᎢ, ᎤᏠᏱᏉ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᏦᎢ ᏗᏖᎵᏙ ᏚᏬᏢᏅᎩ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯᎢ ᎾᎿ ᏌᏉ ᎤᏩᏂᎦᎸᎢ, ᎤᏆᏛᎩ ᎠᎴ ᎤᏥᎸᏒᎩ: ᎠᎴ ᏦᎢ ᏗᏖᎵᏙ ᏚᏬᏢᏅᎩ ᎠᎹᏂ ᎤᏥᎸᏒᎢ ᏄᎾᏍᏛ ᎾᏍᎩᏯ ᏅᏩᏓᎴ ᎤᏩᏂᎦᎸᎢ, ᎤᏆᏛᎩ ᎠᎴ ᎤᏥᎸᏒᎩ; ᎾᏍᎩᏯ ᏂᏕᎤᏍᏛᎩ ᏑᏓᎵ ᏂᏚᏩᏂᎦᎸ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ.\nᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᏅᎩ ᏗᏖᎵᏙ ᏂᏕᎤᏍᏛᎩ ᎠᏑᏂ ᎤᏥᎸᏒ ᏄᎾᏍᏛ ᎾᏍᎩᏯ, ᏚᏆᏛᎩ ᎠᎴ ᏚᏥᎸᏒᎩ;\nᎠᎴ ᎤᏆᏛᎩ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᏅᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏛᎩ. ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏛᎩ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏆᏛᎩ ᎭᏫᏂᏗᏢ ᏔᎵ ᏂᏕᎤᏩᏂᎦᎸ ᎤᏠᏱ ᎪᏢᏔᏅᎯ, ᎾᏍᎩᏯ ᏑᏓᎵ ᏂᏚᏩᏂᎦᎸ ᎾᎿ ᏂᏙᏓᏳᎾᏄᎪᏨᎯ.\nᏚᏆᏛ ᎠᎴ ᏚᏩᏂᎦᎸ ᎤᏠᏱᏉ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᏂᎦᏛ ᏌᏉ ᎦᏅᏆᎶᏏᎶᏛ ᎪᏢᏅᎯ, ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᎾᏍᎩᏃ ᎦᎵᏉᎩ ᎪᎢ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ ᎠᎴ ᏗᏥᏃᏍᎦᎶᏗ ᎠᎴ ᏗᏥᏃᏍᎦᎸᏛᏗᎦᎶᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏚᏬᏢᏔᏅᎩ.\nᏌᏉ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏬᏢᏔᏅᎩ ᎾᏍᎩ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏙᏗ ᎾᎿ ᏤᏥ\nᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᏩᏒᎩ ᎬᏙᏗᏱ ᎤᏬᏢᏅᎩ ᎠᏓ-ᎬᎿᎨ ᎤᏬᏢᏔᏅᎩ. ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᎠᎴ ᏌᏉ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᎢᎦᏱᏛᎭ ᎨᏒᎩ, ᎠᎴ ᏔᎵ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ; ᏚᎷᎬ ᎤᏠᏱᏉ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎤᏭᏢᏔᏅᎩ, ᎦᏚᎢᏗᏢ, ᎠᎴ ᏗᏍᏆᎨᏂ ᎬᏩᏚᏫᏛ, ᎠᎴ ᏕᎤᎷᎬᎢ; ᎠᏕᎸᏃ ᏓᎶᏂᎨ ᏄᏩᏁᏔᏅᎩ ᎬᏩᏚᏫᏛ ᎦᎸᎳᏗᏢ.\nᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏬᏢᏔᏅᎩ ᎾᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎬᏩᏚᏫᏛ ᏂᎬᏁᏛ ᎡᎳᏗᏢ ᏚᏔᏅᎩ ᎾᎿ ᏔᎵ ᏓᏍᏛᎢ, ᏗᏍᏆᎨᏂ ᎢᏧᎳᏗᏢ, ᏗᏝᏗᏍᏗᏱ ᎦᏅᏍᏙᏗ, ᎾᏍᎩ ᎦᏅᏍᏙᏗ.\nᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏭᏢᏔᏅᎩ.\nᎠᎴ ᎾᏍᎩ ᎪᎢ ᎦᎸᏉᏗ ᎠᏠᏁᏗ ᎤᏬᏢᏅᎩ, ᎠᎴ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᎦᏩᏒᎩ ᎬᏙᎩ ᎤᏬᏢᏔᏅᎩ, ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎤᏬᏢᏔᏅᎩ, ᎾᏍᎩᏯ ᏂᎬᏁᎲ ᎪᏢᏍᎬ ᏅᏬᏘ ᎪᏢᏍᎩ.\nᎠᏥᎸᏃ ᎨᎳᏍᏗᏱ ᎠᏓ-ᎬᎿᎨ ᎤᏬᏢᏔᏅᎩ; ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᎠᎴ ᎯᏍᎩ ᎢᏯᎩᏳᏍᏈᏛ ᎾᏯᏛᎥᎩ, ᎢᎦᏱᏛᎭ ᎨᏒᎩ, ᎠᎴ ᏦᎢ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ.\nᏚᎷᎬᏃ ᏚᏬᏢᏅᎩ, ᏚᏪᎧᏅᎩ ᎾᎿ ᏅᎩ ᏂᏚᏅᏏᏴᎢ; ᏚᎷᎬ ᎤᏠᏱᏉ ᎨᏒᎩ; ᎥᏣᏱᏃ ᎤᏭᏢᏔᏅᎩ.\nᏂᎦᏛᏃ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ ᏚᏬᏢᏅᎩ, ᎾᏍᎩ ᎪᏍᏚ ᎦᎶᏗ, ᎠᎴ ᎪᏕᏍᏗ, ᎠᎴ ᏧᏖᎵᏙ, ᎠᎴ ᎭᏫᏯ ᎦᏂᏴᏙᏗ, ᎠᎴ ᎠᏥᎸ ᎦᎶᏗ, ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᎥᏣᏱ ᏚᏬᏢᏔᏅᎩ.\nᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎤᏬᏢᎾᏁᎸᎩ ᎥᏣᏱ ᎪᏢᏔᏅᎯ, ᎭᏫᏂᏗᏢ ᎤᎦᏌᏛᎢ ᏄᏩᏁᎸᎩ, ᎡᎳᏗᏢ ᎠᏰᎵ ᎢᏴᏛ ᏩᏍᏘ.\nᏅᎩᏃ ᏚᏬᏢᏅᎩ ᏧᏓᏆᏙᎩ ᎾᏍᎩ ᏅᎩ ᏂᏚᏅᏏᏴ ᏗᎦᏙᏗ ᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ, ᎾᏍᎩ ᎾᎿ ᏗᏝᏗᏍᏗᏱ ᎦᏅᏍᏙᏗ.\nᎦᏅᏍᏙᏗᏃ ᎠᏓ-ᎬᎿᎨ ᏚᏬᏢᏔᏅᎩ, ᎠᎴ ᎥᏣᏱ ᏚᏭᏢᏔᏅᎩ.\nᎦᏅᏍᏙᏗᏃ ᏧᏓᏆᏉᎩ ᏕᎦᏛ ᏚᏭᏍᏙᏅᎩ, ᎾᏍᎩ ᏗᏍᏆᎨᏂ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᏕᎦᏛᎢ ᎾᏍᎩ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᏂᏴᏗᏱ ᎠᏴᏍᏗᏱ; ᎤᏒᏙᏂ ᏄᏩᏁᎸ ᎤᏬᏢᏅ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᏧᏯᏖᎾ ᎤᏬᏢᏔᏅᎩ.\nᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎥᏣᏱ ᎤᏬᏢᏔᏅᎩ, ᎠᎴ ᎠᏠᏗᏱ ᎥᏣᏱ ᎤᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᏗᏓᎨᏗ ᎾᏍᎩ ᎠᏂᎨᏴ ᏗᏂᎳᏫᏦᎯᎯ ᏧᎾᏤᎵᎦ, ᎾᏍᎩ ᎦᎶᎯᏍᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏗᏂᎳᏫᏦᎯᎯ.\nᎣᏂᏃ ᎤᏬᏢᏅᎩ; ᎠᏍᏆᎨᏂ ᏧᎦᎾᏮ ᎢᏗᏢ ᏗᏰᏙᎳᏛᏗ ᎠᏂ ᎾᏍᎩ ᎣᏂ ᎤᏏᏙᎵ ᏙᎴᏛ ᏗᏏᏓᎵ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ, ᎠᏍᎪᎯᏧᏈ ᎢᏯᎩᏳᏍᏈᏛ ᎢᎦᏅᎯᏛ.\nᏗᎦᏓᏍᏛᏗ ᏔᎳᏍᎪᎯ ᏂᎦᎥᎩ, ᎠᎴ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ. ᏓᏔᎴᏒ ᏔᎳᏍᎪᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ ᏗᎦᎫᏍᏯᏍᏛᏗᏱ ᏤᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᏧᏴᏢᏃ ᎢᏗᏢ ᏤᎯ ᏗᏰᏙᎳᏛᏗ ᎠᏍᎪᎯᎫᏈ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᏗᎦᎫᏍᏛᏗᏃ ᏔᎳᏍᎪᎯ ᎨᏒᎩ, ᏓᏔᎴᏒᏃ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᏔᎳᏍᎪᎯ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ. ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᏭᏕᎵᎬᏃ ᎢᏗᏢ ᏤᎯ ᏗᏰᏙᎳᏛᏗ ᎯᏍᎦᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏒᎩ, ᏗᎦᎫᏍᏛᏗ ᎠᏍᎪᎯ ᏂᎦᎥᎩ, ᎠᎴ ᏓᏔᎴᏒ ᎠᏍᎪᎯ ᎨᏒᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᏗᎧᎸᎬᏃ ᎢᏗᏢ ᏤᎯ ᎯᏍᎦᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ.\nᏗᏰᏙᎳᏛᏗᏃ . ᏌᏉ ᎢᏗᏢ ᎾᏍᎩ [ᎦᎶᎯᏍᏗᏱ] ᎯᏍᎩᎦᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏒᎩ; ᏗᎦᎫᏍᏛᏗ ᏦᎢ ᎨᏒᎩ, ᏓᏔᎴᏒᏃ ᏦᎢ.\nᏐᎢᏱᏃ ᎢᏗᏢ, ᎣᏂ ᎦᎶᎯᏍᏗᏱ, ᎯᎠ ᎢᏗᏢ ᎠᎴ Ꭰ ᎢᏗᏢ, ᏗᎦᏙᎳᏛᏗ ᎯᏍᎩᏚ ᎢᏯᎩᏳᏍᏈᏛ ᏂᏕᎦᏅᎯᏒᎩ; ᏗᎦᎫᏍᏛᏗ ᏦᎢ ᎨᏒᎩ, ᎠᎴ ᏓᏔᎴᏒ ᏦᎢ ᎨᏒᎩ.\nᏂᎦᏛ ᏗᏰᏙᎳᏛᏗ ᎣᏂ ᎬᏩᏚᏫᏛ ᏕᎦᏛᎢ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᎠᎴ ᏓᏔᎴᏒ ᏗᎦᎫᏍᏛᏗ ᏗᎦᎪᏗᏱ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᏗᎦᎫᏍᏛᏗᏱ ᏤᎯ, ᎠᎴ ᎾᏍᎩ ᎤᏇᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ; ᎠᎴ ᎾᏍᎩ ᏧᏍᎪᎵ ᏕᎫᏢᏛ ᎠᏕᎸ ᎤᏁᎬ ᎨᏒᎩ; ᎠᎴ ᏂᎦᏛ ᏗᎦᎫᏍᏛᏗ ᎾᏍᎩ ᎣᏂ [ᎤᏯᏅᎯ] ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᏕᎦᎸᏍᏙᏛᎩ.\nᎣᏂ ᎦᎶᎯᏍᏗᏱ ᎪᏢᏒ ᏗᏯᏙᎳᏛᏗ ᎪᏪᎳᏅᎯ ᎨᏒᎩ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏔᏅᎯ, ᏕᎭᎷᎨ ᎠᏄᏬ ᎨᏒᎩ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ;, ᏔᎳᏍᎪᎯ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏅᎯᏒᎩ, ᎯᏍᎩᏃ ᎢᏯᎩᏳᏍᏈᏛ ᏂᎦᏛᎩ ᎠᏯᏛᎥᎢ, ᎤᏠᏱ ᎨᏒᎩ ᏓᏱᏙᎳᏛ ᎣᏂ ᎪᏢᏒᎢ.\nᎾᎿᏃ ᏗᎦᎫᏍᏛᏗ ᏅᎩ ᏂᎦᎥᎩ , ᏓᏔᎴᏒᏃ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᏅᎩ ᏂᎦᎥᎩ; ᏗᎦᏙᏌᏗᏍᏗᏱ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ, ᎠᎴ ᏧᏍᎪᎵ ᏕᎫᏝᎥᎢ, ᎠᎴ ᎾᏍᎩ ᎤᏯᏅᎯ ᎠᏕᎸ ᎤᏁᎬ ᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᏂᎦᏛᏃ ᏗᎨᏘᏂᏓᏍᏗ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎣᏂ ᎬᏩᏚᏫᏛ ᎥᏣᏱ ᏗᎪᏢᏔᏅᎯ ᎨᏒᎩ.\nᎯᎠ ᎾᏍᎩ ᏂᎦᏥᎯᎭ ᎦᎵᏦᏙᏗᏱ ᎤᎬᏩᎵ, ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎧᎿᏩᏛᏍᏗ, ᎾᏍᎩ ᎿᏉ ᎠᏕᎸᎯ ᎨᏒᎢ, ᎾᏍᎩᏯ ᎤᏁᏨ ᎼᏏ, ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏂ ᎵᏫ, ᎠᎬᏗᏍᎬ ᎢᏗᎹ, ᎡᎳᏂ ᎤᏪᏥ, ᎠᏥᎸ ᎨᎶᎯ.\nᏇᏣᎵᎵᏃ ᏳᎳ ᎤᏪᏥ, ᎾᏍᎩ ᎭᎵ ᎤᏪᏥ, ᏧᏓᏏ ᎠᏂᎳᏍᏓᎸ ᎤᏂᏠᏱ, ᎤᏬᏢᏅᏅᎩ ᏂᎦᏛ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ ᎤᏬᏢᏗᏱ.\nᎾᏍᎩᏃ ᎤᏍᏕᎸᎯᏙᎲᎩ ᎠᎰᎵᎠᏈ, ᎤᏪᏥ ᎠᎯᏏᎹᎩ ᏕᏂ ᎠᏂᎳᏍᏓᎸ ᎤᏂᏠᏱ, ᎾᏍᎩ ᏅᏲᎯ ᏗᎪᏪᎵᏍᎩ, ᎠᎴ ᎠᏏᎾᏌᏂ ᎪᏢᏅᎥᏍᎩ, ᎠᎴ ᏴᎩ ᎦᏰᏫᏍᏗ ᎬᏗ ᏗᎪᏪᎵᏍᎩ ᏗᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ.\nᏂᎦᏛᏃ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎤᏅᏔᏅᎯ ᎯᎠ ᎾᏍᎩ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎢ, ᏂᎦᏛ ᏕᎦᎸᏫᏍᏓᏁᎸ ᎦᎸᏉᏗᏳ ᎦᎵᏦᏛ ᎠᏃᏢᏍᎬᎢ, ᎾᏍᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᎾᎵᏍᎩᎸᏔᏅᎯ ᏔᎳᏍᎪᎯ ᏐᎣᏁᎳᏦᏁ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎨᏒᎩ, ᎠᎴ ᎦᎵᏉᎩᏧᏈ ᏦᎠᏍᎪᎯ ᏎᎩᎵ, ᎾᏍᎩ ᏎᎩᎵ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏗ ᎨᏒ ᏓᏁᎶᏛᎩ.\nᎠᏕᎸᏃ ᎤᏁᎬ ᎤᏂᏅᎯ ᎾᏍᎩ ᎨᎦᏎᎸᎯ ᎾᏍᎩ ᏑᎾᏓᏡᎩ ᎨᏒᎢ, ᎠᏍᎪᎯᏧᏈ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎨᏒᎩ, ᏌᏉᏃ ᎢᏯᎦᏴᎵ ᎦᎵᏉᎩᏧᏈ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᏎᎩᎵ ᎨᏒᎩ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏗ ᎨᏒ ᏓᏁᎶᏛᎩ:\nᏈᎦ ᎠᏂᎲᏍᎬᎩ ᎠᏂᏏᏴᏫᎭᎢ, ᎾᏍᎩ ᎦᏛᎬ ᏌᏉ ᏎᎩᎵ ᎠᏰᎵ ᎢᎦᎢ, ᎾᏍᎩ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏗ ᎨᏒ ᏓᏁᎶᏛᎩ; ᎾᏍᎩ ᎾᏂᎥ ᎤᏁᏅᏛ ᎨᎦᏎᏍᏗᏱ, ᏔᎳᏍᎪᎯ ᎢᏳᎾᏕᏘᏴᏛ ᏅᏛᎴᏅᏛ ᎠᎴ ᎤᎶᏒᏍᏗ, ᎾᏍᎩ ᏑᏓᎵᏧᏈ ᎢᏯᎦᏴᎵ, ᎠᎴ ᏦᎢ ᎢᏯᎦᏴᎵ, ᎠᎴ ᎯᏍᎩᏧᏈ ᎠᎴ ᎯᏍᎦᏍᎪᎯ ᎢᏯᏂᏛ ᎨᏒᎩ.\nᎾᏍᎩᏃ ᎠᏍᎪᎯᏧᏈ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎤᏁᎬ ᎠᏕᎸ ᎤᏂᏅᎢ ᎤᏅᏅᏬᏔᏅᎩ ᏚᏃᏢᏔᏅᎩ ᏓᏔᎴᏒ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎪᎱᏍᏗ ᏗᎬᏙᏗ, ᎠᎴ ᏓᏔᎴᏒ ᎠᏰᏙᎳᏛᏗ ᎪᎱᏍᏗ ᏗᎬᏙᏗ; ᎾᏍᎩ ᎠᏍᎪᎯᏧᏈ ᏓᏔᎴᏒ ᏚᏃᏢᏔᏅᎩ ᎠᏍᎪᎯᏧᏈ ᏔᎸᏗ; ᏌᏉ ᏔᎸᏗ ᏌᏉ ᎠᎳᎴᏒ ᎤᏃᏢᏔᏅᎩ\nᎾᏃ ᏌᏉ ᎢᏯᎦᏴᎵ ᎦᎵᏉᎩᏧᏈ ᎠᎴ ᎦᎵᏆᏍᎪᎯ ᎯᏍᎩᎦᎵ ᏎᎩᎵ ᏗᎦᏙᏌᏗᏍᏗᏱ ᏚᏬᏢᏔᏅᎩ, ᎾᏍᎩ ᏗᎦᎫᏍᏛᏗᏱ. ᏤᎯ, ᎠᎴ ᏚᏭᏢᏅᎩ ᎾᏍᎩ ᏧᏍᎪᎵ, ᎠᎴ ᏚᏭᏓᏔᏅᎩ.\nᎥᏣᏱᏃ ᎤᎾᎵᏍᎪᎸᏔᏅᎯ ᎦᎵᏆᏍᎪᎯ ᏔᎸᏗ ᎢᏳᏓᎨᏛ ᎨᏒᎩ, ᏔᎵᏃ ᎢᏯᎦᏴᎵ ᏅᎩᏧᏈ ᏎᎩᎵ ᎨᏒᎩ.\nᎾᏍᎩᏃ ᏚᏬᏢᏔᏅᎩ ᏓᏔᎴᏒ ᎦᎶᎯᏍᏗᏱ ᏤᎯ ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᎶᎯᏍᏗᏱ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎥᏣᏱ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎾᎿ ᎡᎯ, ᎠᎴ ᏂᎦᏛ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ.\nᏓᏔᎴᏒᏃ ᎣᏂ ᎬᏩᏚᏫᏛ ᏤᎯ, ᎠᎴ ᏓᏔᎴᏒ ᎣᏂ ᎦᎶᎯᏍᏗᏱ ᏤᎯ, ᎠᎴ ᏂᎦᏛ ᏗᎨᏘᏂᏓᏍᏗ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏂᎦᏛ ᏗᎨᏘᏂᏓᏍᏗ ᎣᏂ ᎬᏩᏚᏫᏛ.\nᎠᏄᏬᏃ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᏗᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᏧᎾᏄᏬᏍᏗ ᏚᏃᏢᏅᎩ, ᎦᎸᏉᏗᏳ ᎨᏒ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ, ᎠᎴ ᏚᏃᏢᏅᎩ ᏗᎦᎸᏉᏗ ᎡᎳᏂ ᏧᏄᏬᎢ; ᎾᏍᎩᏯ ᏱᎰᏩ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᎴ ᎡᏉᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏬᏢᏔᏅᎩ ᎠᎴ ᏕᎭᎷᎨ ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ.\nᎠᏕᎸᏃ ᏓᎶᏂᎨ ᎤᏂᏅᏆᎶᎥᎯ ᏌᎨ ᏄᏅᏁᎸᎩ, ᎤᏯᏅᎯᏃ ᎤᏃᏢᏔᏅᎩ, ᎾᏍᎩ ᎤᎾᏑᏴᏗ ᎠᏄᏬ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ, ᎤᏥᎸᎢ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎩ.\nᏗᎦᏅᏬᏃ ᏤᎯ ᏚᏃᏢᏅᎩ ᎾᏍᎩ ᎾᎿ ᏗᎫᏓᏙᏗᏱ; ᎾᏍᎩ ᏔᎵ ᏓᏍᏛ ᏕᎫᏔᏛᎩ.\nᎠᏓᏠᏍᏗ ᎡᏉᏗ ᎤᏤᎵ ᎦᎸᏍᏙᏗ ᎾᎿ ᎫᏓᏛᎢ, ᎤᏠᏱ ᎪᏢᏔᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᏂᎬᏅ ᎪᏢᏒᎢ; ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏛᎩ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏄᎨᏓᎵ; ᎾᏍᎩᏯ ᏱᎱᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎣᏂᎦᏃ ᏅᏯ ᏚᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏅᏯᏗᎦᎪᏗᏱ ᏚᏂᎧᏅᎩ, ᏕᎪᏪᎸᎩ ᎾᏍᎩᏯ ᎠᏐᎥᏍᏙᏗ ᏂᎬᏅ ᎪᏪᎸᎢ, ᏚᎾᏙᎥ ᎢᏏᎵ ᏧᏪᏥ ᏕᎪᏪᎸᎩ.\nᏗᎦᏅᏬᏃ ᎡᏉᏗᏱ ᏚᏪᎧᏅᎩ, ᎾᏍᎩ ᏅᏯ ᎢᏏᎵ ᏧᏪᏥ ᎨᎦᏅᏓᏗᏍᏙᏗ ᎨᏒᎩ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᏓᏁᏣᏍᏚᎶᏃ ᎤᏬᏢᏅᎩ ᎠᎵᏏᎾᎯᏍᏔᏅᎯ ᏗᎦᎸᏫᏍᏓᏁᎸᎯ ᎨᏒᎩ, ᎡᏉᏗ ᏂᎬᏅ ᎾᏍᎩᏯ ᏂᎬᏅᎩ; ᎪᏢᏛᎩ ᎠᏕᎸ ᏓᎶᏂᎨ, ᎠᎴ ᏕᎭᎷᎨᎢ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎨᎦᎨᎢ, ᎠᎴ ᎤᏥᎸᎢ ᎤᏏᏙᎵ ᏗᏏᏓᎵ.\nᎢᎦᏱᏛᎭ ᎨᏒᎩ; ᎠᏰᎦᎵ ᏄᏅᏁᎸᎩ ᎤᏃᏢᏅ ᎠᏓᏁᏣᏍᏚᎶᎢ; ᎠᏓᏬᎯᎳ ᏂᎦᏅᎯᏒᎩ, ᎠᎴ ᎠᏓᏬᎯᎳ ᎾᏯᏛᎥᎩ, ᎠᏰᎦᎸᎩ.\nᎾᎿᏃ ᏅᎩ ᏂᏚᏓᏅᏅ ᏅᏯ ᏚᏂᎧᏅᎩ; ᎢᎬᏱᏱ ᎤᏓᏅᏅ ᎦᏂᎵᏯ, ᎠᎴ ᏙᏆᏏ, ᎠᎴ ᎡᎻᎳ ᏕᎦᎧᎲᎩ; ᎯᎠ ᎾᏍᎩ ᎢᎬᏱᏱ ᎤᏓᏅᏅᎢ.\nᏔᎵᏁᏃ ᎤᏓᏅᏅ ᏕᎦᎧᎲᎩ ᏃᏈᎩ, ᎠᎴ ᏌᏆᏯ, ᎠᎴ ᏓᎹᏂ.\nᏦᎢᏁᏃ ᎤᏓᏅᏅ. ᏤᏏᏂ, ᎠᎴ ᎡᎩᏗ, ᎠᎴ ᎠᎻᏗᏏ.\nᏅᎩᏁᏃ ᎤᏓᏅᏅ, ᏇᎵ, ᎠᎴ ᎣᏂᎩ, ᎠᎴ ᏣᏍᏆ; ᎠᏕᎸ ᏓᎶᏂᎨ ᏅᏯ-ᏗᎦᎪᏗᏱ ᏕᎦᎧᎲᎩ ᎾᎿ ᏗᎦᎪᏗᏱ ᎨᏒᎢ.\nᏅᏯᏃ ᎾᏍᎩᏯ ᎢᏏᎵ ᏧᏪᏥ ᎾᏂᎥ ᏚᎾᏙᎥ ᏂᎦᎥᎩ, ᎾᏍᎩ ᏔᎳᏚ, ᎾᏍᎩᏯ ᎾᏂᎥ ᏚᎾ ᏙᎥᎢ, ᎾᏍᎩᏯ ᎠᏐᎥᏍᏙᏗ ᏂᎬᏅ ᎪᏪᎸᎢ, ᎠᏂᏏᏴᏫᎭ ᏕᎪᏪᎸᎩ ᏚᎾ ᏙᎥᎢ, ᎾᏍᎩᏯ ᎾᏂᎥ ᏔᎳᏚ ᎾᏂᎳᏍᏓᎸᎢ.\nᎠᏓᏁᏣᏍᏚᎶᎩ ᎯᏃ ᏓᏍᏛᎢ, ᏧᏓᏕᏒᏛ ᏚᏃᏢᏅᎩ, ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᏏᏓᎵ ᎪᎱᏍᏗ ᎾᏑᏴᎾ ᏚᏃᏢᏔᏅᎩ.\nᏔᎵᏃ ᏅᏯ-ᏗᎦᎪᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ, ᎠᎴ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ; ᎠᏓᏁᏣᏍᏚᎶᎩ ᎯᏃ ᏓᏍᏛᎢ ᏚᎾᏔᏅᎩ ᎾᏍᎩ ᏔᎵ ᏧᏓᏆᏙᎩ.\nᎾᏍᎩᏃ ᏔᎵ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ; ᏧᏓᏆᏙᎩ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏓᏍᏛᎢ ᏚᎾᏛᏅᎩ.\nᎢᏧᎳᏃ ᏧᏍᎪᎵ ᏧᏓᏕᏒᏛ ᏗᏏᏓᎵ ᎠᏕᎸ ᏓᎶᏂᎨ ᎤᏯ-ᏗᎦᎪᏗᏱ ᏚᏄᏓᎸᏅᎩ, ᏗᎦᏅᏬᏃ ᏤᎯ ᎡᏉᏗᏱ ᎢᎬᏱᏗᏢ ᏚᏂᏯᎸᏅᎩ.\nᏧᏓᏆᏙᎩᏃ ᏔᎵ ᏚᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ, ᏓᏍᏛᏃ ᎢᏧᎳᏗᏢ ᎠᏓᏁᏣᏍᏚᎶᎩᎯ ᏚᎾᏔᏅᎩ, ᎾᏍᎩ ᎡᏉᏗᏱ ᎠᏍᏛ ᎭᏫᏂᏗᏢ.\nᏂᏗᎬᏩᏓᎴᏃ ᏔᎵ ᏧᏓᏆᏙᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᏚᏃᏢᏔᏅᎩ, ᏔᎵᏃ ᏗᎦᏅᏬ ᏤᎯ ᎡᏉᏗᏱ ᎭᏫᏂᏗᏢ ᏚᎾᏔᏅᎩ, ᎢᎬᏱᏗᏢ ᏫᏚᏳᎪᏛᎢ, ᏕᎫᏓᏛ ᎾᎥᎢ, ᎡᏉᏗ ᎦᎸᏍᏙᏗ ᎦᎸᎳᏗᏢ.\nᏧᏓᏆᏙᎩᏃ ᏕᎦᏛ ᎠᏓᏁᏣᏍᏚᎶᎩᏱ ᎠᎴ ᎡᏉᏗᏱ ᏚᏄᏓᏔᏅᎩ, ᎤᏅᏔᏅᎩ ᏕᎭᎷᎨ ᎠᏍᏘ, ᎾᏍᎩ ᎦᎸᎳᏗᏢ ᎢᏳᎵᏍᏙᏗᏱ ᎾᏍᎩ ᎾᎿ ᎦᎸᏍᏗ ᎦᎸᎥᎢ ᎡᏉᏗ, ᎾᏍᎩ ᎠᏓᏁᏣᏍᏚᎶ ᎡᏉᏗᏃ ᏧᎾᎦᎴᏅᏗᏱ ᏂᎨᎡᎾ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᏄᏬᏃ ᎡᏉᏗ ᎭᏫᏂᏗᏢ ᎠᏄᏬᏍᏗ ᎤᏬᏢᏅᎩ, ᎬᏅᎯ ᎠᏄᏬ ᎤᏬᏢᏔᏅᎩ, ᏕᎭᎷᎨᏍᏛᎭ ᎨᏒᎩ.\nᎠᏄᏬᎩ ᎯᏃ ᎠᏰᎵ ᎠᏔᎴᏒᎩ, ᎭᏆᏥᏂᏱ ᏣᏔᎴᏐ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎠᎬᏔᏅᏛᎩ ᎠᏔᎴᏒ ᎬᏩᏚᏫᏛ, ᎾᏍᎩ ᎤᏓᏣᎦᎸᏗᏱ ᏂᎨᏒᎾ.\nᏕᏓᎷᏯᏛᏃ ᎠᏄᏬᎩᎯ ᏆᎻᏆᏂ ᏚᏃᏢᏅᎩ, ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨ, ᎠᎴ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᏚᏃᏢᏔᏅᎩ.\nᎤᎭᎸᏂᎯᏃ ᏚᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎤᏑᏴᎾ ᏚᏃᏢᏔᏅᎩ, ᎠᏰᎵᏃ ᏚᎾᏔᏅᎩ ᎤᎭᎸᏂᎯ ᏆᎻᏆᏂ ᏕᎦᏛᎢ, ᎦᏓᎷᏯᏛ ᎠᏄᏬᎩᎯ, ᎬᏩᏚᏫᏛ ᏆᎻᏆᏂ ᏕᎦᏛ ᎠᏰᎵ;\nᎤᎭᎸᏂᎯ ᎠᎴ ᏆᎻᏆᏂ, ᎤᎭᎸᏂᎯ ᎠᎴ ᏆᎻᏆᏂ ᏕᎦᏛᎩ ᎬᏩᏚᏫᏛ ᎦᏓᎷᏯᏛ ᎠᏄᏬ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎠᏄᏬᏍᏗ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᎴ ᏗᏄᏬ ᎤᏥᎸᎢ ᎤᏏᏙᎵ ᏚᏃᏢᏔᏅᎩ, ᎬᏅᎯ ᎨᏒᎩ, ᎾᏍᎩ ᎡᎳᏂ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏄᏬᏍᏗ.\nᎠᎴ ᎠᎵᏍᏚᎶ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᎤᏃᏢᏔᏅᎩ, ᎠᎴ ᏧᏬᏚᎯ ᏗᎵᏍᏚᎶ ᎤᏥᎸ ᎤᏏᏙᎵ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏥᎵ ᏗᏑᎶ ᎤᏏᏙᎵ ᏗᏏᏓᎵ ᏚᏃᏢᏔᏅᎩ.\nᎠᎴ ᎠᏓᏠᏍᏗ ᎤᏏᏙᎵ ᎤᏥᎸᎢ ᏗᏏᏓᎵ ᎤᏃᏢᏔᏅᎩ, ᎠᎴ ᏕᎭᎷᎨ, ᎠᎴ ᎩᎦᎨᎢ, ᎠᎴ ᎤᏍᎪᏍᏛ ᎩᎦᎨᎢ, ᏴᎩ ᎬᏗ ᎪᏪᎳᏅᎯ ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᏯᏖᎾᏃ ᎦᏯᎸᏗ ᎦᎸᏉᏗᏳ ᎠᎵᏍᏚᎶᎩᎯ ᎤᏃᏢᏅᎩ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᎱᏍᏗ ᎾᏑᏴᏅ ᎤᏃᏢᏔᏅᎩ, ᎠᎴ ᎤᏃᏪᎳᏅᎩ ᎾᎿᏂ ᎠᏐᎥᏍᏙᏗᏱ ᏥᏕᎪᏪᎶ ᎾᏍᎩᏯᎢ, ᎯᎠ ᏄᏍᏛᎩ; ᏱᎰᏩ ᎤᏤᎵ ᎦᎸᏉᏗᏳ ᎢᎬᏁᎸᎯ.\nᎾᎿᏃ ᎤᏃᎸᏌᏛᏅᎩ ᎠᏇᎷᏍᏗ ᎢᏳᏍᏗ ᏕᎭᎷᎨᎢ, ᎾᏍᎩ ᎠᏍᏓᏱᏗᏍᏙᏗ ᎠᎵᏍᏚᎶᎩᎯ ᎦᎸᎳᏗ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎾᏍᎩᏃ ᏂᎦᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎠᏃᏢᏍᎬ ᎦᎵᏦᏙᏙᏗ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏂᏍᏆᏛᎩ; ᎠᎴ ᎢᏏᎵ ᏧᏪᏥ ᏄᎾᏛᏁᎸᎩ ᎾᏍᎩᏯ ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ; ᎾᏍᎩᏯ ᏄᎾᏛᏁᎸᎩ.\nᎦᎵᏦᏙᏙᏗᏃ ᎼᏏ ᎤᏂᏲᎮᎸᎩ ᎦᎵᏦᏙᏙᏗ ᎠᎴ ᏂᎦᏛ ᎤᏤᎵ ᎪᎱᏍᏗ ᎬᏔᏂᏓᏍᏗ, ᏧᏤᎵ ᏗᎫᏓᎸᏗᏱ, ᏧᏤᎵ ᏧᏯᏖᎾ, ᏧᏤᎵ ᏗᏍᏆᎾᎳᏗᏍᏗ, ᎠᎴ ᏧᏤᎵ ᏗᎦᎫᏍᏛᏗ, ᎠᎴ ᏧᏤᎵ ᏓᏔᎴᏒᎢ.\nᎠᎴ ᎫᏢᏗ ᎤᏂᏃᏕᎾ ᎦᏁᎦ ᎩᎦᎨ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎫᏢᏗ ᏓᎭᏏ ᎦᏁᎦ ᎪᏢᏔᏅᎯ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎾᏍᎩ ᎫᏢᏗ.\nᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᎦᎶᏗᏱ, ᎦᏅᏍᏙᏗ, ᎠᎴ ᎫᏢᏗ,\nᎦᏍᎩᎶ ᏂᎦᏛᏃ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᎾᎿ ᏗᏠᏗ, ᎠᎴ ᎠᎦᏙᏗ ᎦᏚ,\nᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᎪᎱᏍᏗ ᎾᏑᏴᏫ, ᎪᎢ ᏗᏟᏍᏗ ᏗᏨᏍᏙᏗ ᎾᎿ ᏗᎦᎪᏗ, ᎾᏍᎩ ᏗᏨᏍᏙᏗ ᏗᎦᏅᏃᏗ ᏗᎦᎪᏗ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᎾᎿ ᏤᎯ, ᎠᎴ ᎪᎢ ᎢᎦ ᎠᏘᏍᏙᏗ.\nᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᎪᎢ ᎠᏠᏁᏗ, ᎠᎴ ᎤᎦᎾᏍᏛ ᎬᏙᏗ, ᎠᎴ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎠᎴᏙᎳᏛᏗᎠ;\nᎥᏣᏱ ᎪᏢᏔᏅᎯ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᎠᎴ ᎾᎿ ᎡᎯ ᎠᎦᏯᎷᏗ ᎢᏳᏍᏗ ᎥᏣᏱ ᎪᏢᏔᏅᎯ, ᏧᏤᎵ ᎦᏅᏍᏙᏗ, ᎠᎴ ᏂᎦᏛ ᏧᏤᎵ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᏗᎪᏑᎴᏗ, ᎠᎴ ᎾᎿ ᎠᏠᏗᏱ:\nᏗᎦᏰᏙᎳᏛᏗ ᎣᏂ ᎪᏢᏒᎢ, ᏗᎦᎫᏍᏛᏗ ᎠᎴ ᏓᏔᎴᏒᎢ, ᎠᎴ ᎣᏂ ᎪᏢᏒ ᎦᎶᎯᏍᏗᏱ ᎠᏰᏙᎳᏛᏗ, ᎠᏍᏕᏱᏛ ᏧᏤᎵᎦ, ᎠᎴ ᏧᏤᎵ ᏗᎨᏗᏂᏓᏍᏗ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᏚᏂᎸᏫᏍᏓᏁᎲ ᎦᎵᏦᏛᎢ, ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᏗᏄᏬ ᏙᎸᏫᏍᏓᏁᎲ ᏗᏄᏬᏍᏗ, ᎾᏍᎩ ᎦᎸᎳᏗᏳ ᎨᏒ ᏙᎸᏫᏍᏓᏁᎲᎢ, ᎦᎸᏉᏗᏳ ᏗᏄᏬ ᎡᎳᏂ ᎠᏥᎸ ᎨᎶᎯ ᏧᏤᎵᎦ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᏧᎾᏄᏬ, ᎾᏍᎩ ᏧᏂᎸᏫᏍᏓᏁᏗᏱ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᏚᏂᎸᏫᏍᏓᏁᎲᎢ.\nᎾᏍᎩᏯ ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ, ᎾᏍᎩ ᎢᏏᎵ ᏧᏪᏥ ᎤᏃᏢᏅᎩ ᏂᎦᏛ ᏗᎦᎸᏫᏍᏓᏁᎯᏘ.\nᎼᏏᏃ ᏚᎧᎿᏅᎩ ᏂᎦᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎬᏂᏳᏉ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏒ ᎤᏁᏨ ᏄᏅᏁᎸ ᎥᎨᏒᎩ, ᎾᏍᎩᏯ ᏄᏅᏁᎸ ᎥᎨᏒᎩ, ᎼᏏᏃ ᎣᏍᏛ ᏚᏁᏤᎸᎩ.\nᏱᎰᏩᏃ ᎤᏁᏤᎸᎩ ᎼᏏ ᎯᎠ ᏄᏪᏎᎸᎩ,\nᎢᎬᏱᏱ ᎢᎦ ᎢᎬᏱᏱ ᎧᎴᏍᏗ ᏅᏙ ᎯᎧᏅᎭ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᎾᎿᏃ ᎯᏛᎭ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎠᎴ ᎦᏁᏌᎢ ᎠᏰᏙᎳᏛᏗ ᎱᏢᏔᏅᎭ.\nᎠᎴ ᎦᏍᎩᎶ ᎯᏴᏔᏂᎸᎭ, ᎠᎴ ᎣᏍᏛ ᏕᎯᏝᏅᎭ ᎾᎿ ᎣᏍᏛ ᏗᏠᏗ ᎨᏒᎢ; ᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗᏱ ᎯᏴᏔᏂᎸᎭ, ᎠᎴ ᏕᎯᏨᏍᏔᏅᎭ ᏗᏨᏍᏙᏗ.\nᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ, ᎾᎿ ᎦᏩᏒᎩ ᎬᏙᏗᏱ, ᎯᎧᏅᎭ ᎢᎬᏱᏗᏢ ᎦᏁᏌᎢ ᏥᏴ ᎾᏍᎩ ᏗᎧᎿᏩᏛᏍᏗ ᏗᎦᎶᏗᏱ, ᎠᎴ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎦᏛᏗ ᎯᏰᏙᎳᏛᏅᎭ.\nᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏙᏗᏱ, ᎯᎧᏅᎭ ᎦᎶᎯᏍᏗᏱ ᎢᎬᏱᏗᏢ ᎾᏍᎩ ᎦᎵᏦᏛᎢ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎠᏰᎵ ᎯᎧᏅᎭ, ᎠᎴ ᎠᎹ ᎾᎿ ᎯᏢᎭ.\nᎠᎴ ᎬᏩᏚᏫᏛ ᎯᎧᏅᎭ ᎣᏂ ᎪᏢᏒᎢ, ᎠᎴ ᎭᏛᏅᎭ ᎠᏰᏙᎳᏛᏗ ᎣᏂ ᎦᎶᎯᏍᏗᏱ.\nᎠᏠᏁᏗᏃ ᎪᎢ ᎯᏁᎩᏒᎭ, ᎠᎴ ᎯᎶᏁᏔᏅᎭ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎠᎿᎥᎢ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏅᏁᎸᎭ, ᎠᎴ ᏂᎦᏛ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ ᎾᎿ ᏓᎲᎢ; ᎦᎸᏉᏗᏳᏃ ᎨᏎᏍᏗ.\nᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏔᏁᏗᏱ ᎯᎶᏁᎥᎭ, ᎠᎴ ᏂᎦᏛ ᎾᎿ ᎪᎱᏍᏗ ᏗᎬᏔᏂᏓᏍᏗ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏅᏁᎸᎭ ᎠᏥᎸ ᎨᎳᏍᏗᏱ; ᎠᎴ ᎤᏣᏔᏅᎯ ᎦᎸᏉᏗᏳ ᎨᏎᏍᏗ ᎠᏥᎸ ᎨᎳᏍᏗᏱ.\nᎠᎴ ᏗᎪᏑᎴᏗᏱ ᎠᎴ ᎾᏍᎩ ᎾᎿ ᎠᏠᏗᏱ ᏕᎯᎶᏁᎥᎭ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏕᎲᏁᎸᎭ.\nᎡᎳᏂᏃ ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎩᏯᏖᏃᎸᎭ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎠᎹ ᎩᏯᏬᏍᏔᏅᎭ.\nᎡᎳᏂᏃ ᏗᎦᎸᏉᏗ ᏗᏄᏬ ᏕᎯᏄᏬᎥᎭ, ᎠᎴ ᎯᎶᏁᎥᎭ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏴᏁᎸᎭ; ᎠᎴ ᎪᎱᏍᏗ ᎠᏆᏛᏁᎸᎭ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎠᎴ ᎾᏍᎩ ᏧᏪᏥ ᎩᏯᏘᏃᎸᎭ ᎠᎴ ᏗᏄᏬ ᏕᎩᏄᏬᎥᎭ:\nᎠᎴ ᎩᎶᏁᎥᎭ, ᎾᏍᎩᏯ ᎤᏂᏙᏓ ᏨᏘᎶᏁᎢ, ᎪᎱᏍᏗ ᎬᏆᏛᏁᎸᎭ ᎠᏥᎸ ᎨᎶᎯ ᏧᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎨᏥᎶᏁᎥ ᎠᏥᎸ ᎠᏁᎶᎯ ᎨᏒ ᎠᏎ ᏭᏍᏗᏥᎯᏍᏗ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᎾᏍᎩ ᎾᎾᏓᏁᏟᏴᏏᏒᎢ.\nᎾᏍᎩ ᏄᏛᏁᎸᎩ ᎼᏏ; ᎾᏍᎩᏯ ᏂᎦᏛ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ, ᎾᏍᎩ ᏄᏛᏁᎸᎩ.\nᎯᎠᏃ ᏄᎵᏍᏔᏅᎩ ᎢᎬᏱ ᎧᎸ ᏅᏙ ᏔᎵᏁ ᎤᏕᏘᏴᏌᏗᏒ, ᎢᎬᏱᏛ ᎢᎦ ᏅᏙ ᎧᎸ, ᎤᏂᎧᏅᎩ ᎦᎵᏦᏛᎢ.\nᎼᏏᏃ ᎤᏪᎧᏅᎩ ᎦᎵᏦᏛᎢ, ᎠᎴ ᏚᏍᏓᏱᏛᎩ ᏓᏔᎴᏒᎢ, ᎠᎴ ᏧᏯᏖᎾ ᏚᏪᎧᏅᎩ, ᎠᎴ ᏗᏍᏆᎾᎳᏗᏍᏗ ᏚᏍᏆᎾᎳᏛᎩ, ᎠᎴ ᏗᎦᎫᏍᏛᎩ, ᏗᎦᎫᏍᏛᏗ ᏚᏪᎧᏅᎩ.\nᎠᎴ ᎤᏕᏙᎳᏛᏅᎩ ᎠᏄᏬ ᎤᏭᏢᏔᏅᎩ ᎦᎵᏦᏛᎢ, ᎠᎴ ᎫᏢᏗ ᎦᎵᏦᏛ ᎾᎿ ᎦᏚᎢᏗᏢ ᎠᎨᏢᏅᎩ ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᏗᎧᎿᏩᏛᏍᏗᏃ ᏚᎩᏒᎩ, ᎠᎴ ᎦᏁᏌᎢᎯ ᏚᎳᏅᎩ, ᎠᎴ ᎦᏅᏍᏙᏗ ᎦᏁᏌᎢᎯ ᏚᏝᏛᎩ, ᎫᏢᏗᏃ ᎦᏁᏌᎢᎯ ᎦᏚ ᎤᏝᏛᎩ:\nᎦᏁᏌᎢᏃ ᎦᎵᏦᏛ ᎤᏴᏔᏂᎸᎩ, ᎠᎴ ᎠᏰᏙᎳᏛᏗ ᎫᏢᏗ ᎤᏰᏙᎳᏓᏅᎩ, ᎠᎴ ᎤᏭᏢᏅᎩ ᎦᏁᏌᎢ ᏗᎧᎿᏩᏛᏍᏗ ᏕᎦᎸᎢ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎦᏍᎩᎶᏃ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏴᏔᏅᎩ, ᎫᏴᏢ ᎢᏗᏢ ᎦᎵᏦᏛ ᎤᏪᎧᏅᎩ, ᎠᏰᏙᎳᏛ ᏙᏱᏗᏢ.\nᎦᏚᏃ ᎾᎿ ᎤᏅᏃᏔᏅᎩ ᏱᎰᏩ ᏓᎧᏅᎢ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᎴ ᏗᏨᏍᏙᏗ ᏗᎦᎪᏗ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏪᎧᏅᎩ ᎦᏍᎩᎶ ᎦᏍᎩᎸ ᏧᏳᎪᏗ ᏧᎾᎦᏮ ᏫᏚᏳᎪᏛ ᎦᎵᏦᏛᎢ.\nᎠᎴ ᏗᏨᏍᏙᏗ ᏚᏨᏍᏔᏅᎩ ᏱᎰᏩ ᏓᎧᏅᎢ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏁᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᏥᎸᏃ ᎨᎳᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᎪᏢᏔᏅᎯ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᏪᎧᏅᎩ, ᎠᏰᏙᎳᏛ ᎢᎬᏱᏗᏢ:\nᎤᎦᎾᏍᏛᏃ ᎦᏩᏒᎩ ᎾᎿ ᎤᏩᏔᏅᎩ, ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎦᎶᎯᏍᏗᏱᏃ ᎦᎵᏦᏛ ᎠᏰᏙᎳᏛᏗ ᎤᏛᏅᎩ.\nᎠᏥᎸᏃ ᎨᎳᏍᏗᏱ ᎾᏍᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏙᏗᏱ ᎦᎵᏦᏛ ᎦᎶᎯᏍᏗᏱ ᎾᎥ ᎤᏪᎧᏅᎩ, ᎾᏍᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᎾᎿ ᎤᎾᎵᏍᎪᎸᏔᏅᎩ ᎠᎪᎲᏍᏔᏅᎯ ᎠᎵᏍᎪᎸᏉᏙᏗ, ᎠᎴ ᎢᏒ ᎠᎵᏍᎪᎸᏙᏗ; ᎾᏍᎩᏯ ᏱᎰᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᏗᎪᏑᎴᏗᏱᏃ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎠᏥᎸᏃ ᎨᎳᏍᏗᏱ ᎠᏰᎵ ᎤᏪᎧᏅᎩ, ᎠᎴ ᎠᎹ ᎾᎿ ᎤᏢᎩ, ᎾᏍᎩ ᎠᏙᏑᎴᏗᏱ.\nᎼᏏᏃ ᎠᎴ ᎡᎳᏂ, ᎠᎴ ᎾᏍᎩ ᏧᏪᏥ, ᎾᎿ ᏚᏃᏑᎴᎥᎩ ᏧᏃᏰᏂ ᎠᎴ ᏧᎾᎳᏏᏕᏂ.:\nᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ ᏩᏂᏴᎲ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎾᎥ ᎠᏂᎷᎩ, ᎠᎾᏙᏑᎴᏍᎬᎩ; ᎾᏍᎩᏯ ᏱᎰᏩᏩ ᏄᏪᏎᎸ ᎤᏁᏤᎸ ᎼᏏ.\nᎠᎴ ᎤᎵᏦᏔᏅᎩ ᎤᏚᏫᏛ ᎦᎵᏦᏛ ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗᏱ ᎦᎧᎲᎢ, ᎠᎴ ᎤᏰᏙᎳᏛᏅᎩ ᎠᏰᏙᎳᏛᏗ ᎣᏂ ᎦᎶᎯᏍᏗᏱ. ᎾᏍᎩᏃ ᎼᏏ ᎤᏍᏆᏛᎩ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ.\nᎤᎶᎩᎸᏃ ᎤᏭᏢᏅᎩ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎠᎴ ᏱᎰᏩ ᎦᎸᏌᏛ ᎤᎧᎵᎸᎩ ᎦᎵᏦᏛᎢ.\nᎼᏏᏃ ᎥᏝ ᏰᎵ ᏫᎬᏩᏴᏍᏗ ᏱᎨᏎ ᎦᎵᏦᏛ ᏗᎦᎳᏫᎢᏍᏗᏱ, ᎤᎶᎩᎸᏰᏃ ᎾᎿ ᎤᎩᎸᎩ, ᎠᎴ ᎦᎸᏌᏛ ᏱᎰᏩ ᎤᎧᎵᎸ ᎦᎵᏦᏛᎢ.\nᎤᎶᎩᎸᏃ ᎠᎵᏌᎳᏛᎦ ᎾᎿ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎦᎸᎳᏗᏢ ᏄᏛᏅᎢ, ᎢᏏᎵ ᏧᏪᏥ ᎠᎾᏂᎩᏍᎬᎩ ᏩᏂᎦᏛᎢ:\nᎢᏳᏍᎩᏂ ᎤᎶᎩᎸ ᏄᎵᏌᎳᏌᏅᎾ ᏱᎩ, ᎥᏝ ᏱᎾᏂᎩᏍᎨ ᎬᏂ ᎾᎯᏳ ᎢᎦ ᎠᎵᏌᎳᏛᎦ.\nᎤᎶᎩᎸᏰᏃ ᏱᎰᏩ ᎤᏤᎵᎦ ᎦᎵᏦᏛ ᎤᎩᎸᎩ ᎢᎦ ᎨᏒᎢ, ᎠᏥᎸᏃ ᎤᎩᎸᎩ ᏒᏃᏱ, ᏓᏂᎧᏅ ᎾᏂᎥ ᎢᏏᎵ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᏂᎦᏅᎯᏒ ᏚᎾᏂᎩᏒᏒᎢ.\nᏗᎧᏃᎩᏛ\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᎦᏯ ᏁᏙᎲᎾᎢ ᎨᏎᏍᏗ ᎠᏂᏍᎦᎾ ᏄᏍᏛ ᎤᎾᏓᏅᏖᎵᏓᏍᏗᏱ ᎠᎴ ᎾᎴᎮᎵᏙᎲᎾ ᎢᎨᏎᏍᏗ ᎤᏲ ᏧᏂᎸᏫᏍᏔᏁᎯ ᎤᏂᏅᏅᎢ ᎠᎴ ᏂᎦᎲᏍGᎾ ᎢGᏎᏍᏗ ᎠᏂᏐᏢᎢᏍᏗᏍᎩ ᎤᎾᏅᏗᏱ\nᏱᎰᏩᏍᎩᏂ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎣᏏ ᎤᏰᎸᏐᎢ ᎠᎴ ᎾᏍᎩ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏓᏅᏖᏍᎪ ᏗᎬᏩᎩ\nᎠᎴ ᎾᏍᎩ ᏡᎬ ᏓᏤᎴᏍᏗ ᎠᎹ ᏕGᏴ ᎤᎶᏗ ᏥᎦᎧᎰᎢ, ᎾᏍᎩ ᎤᏓᏛᏗᏱ ᏓᏍᏆᎸᎯᏒᎢ ᏣᏓᏛᏍᎪᎢ, ᎠᎴ ᎾᏍᎩ ᎤᎳᏍᏚᏒ ᎥᏝ ᏱᎧᏴᏍᎨᏍᏗ;\nᎠᏂᏍᎦᎾᏍᎩ ᎥᏝ ᎾᏍᎩ ᏱᏄᎾᏍᏗ; ᎤᎦᏔᏄᎶᏔᏅᎯᏍᎩᏂ ᏓᎾᏤᎸ, ᎾᏍᎩ ᎤᏃᎴ ᏣᏴᏍᏗᏍᎪᎢ\nᎾᏍᎩᏃ ᎢᏳᏍᏗ ᎠᏂᏍᎦᎾᎢ ᎥᏝ ᏴᎬᎾᎴᎲᎦ ᏗᎫᎪᏙᏗᏱ ᎠᎴ ᎤᏲ ᎢᏯᎾᏛᏁᎯ ᎥᏝ ᏴᎬᎾᎴᎲᎦ ᎤᎾᏓᏅᏘ ᏓᏂᎳᏫᎥᎢ\nᏱᎰᏩᏰᏃ ᎠᎦᏔᎭ ᎾᏓᏅᏘ ᎤᏂᏅᏅᎢ, ᎠᏂᏍᎦᎾᏍᎩᏂ ᎤᏂᏅᏅ ᏛᏲᏦᏂ\nᎠᏙᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᎳᏬᏍᎦ, ᎠᎴ ᎠᎾᏓᏅᏖ ᎢᏳᎾᏛᏁᏗᏱ ᎾᏍᎩ ᎢᎬᏩᎵᏍᏙᏗ ᏂᎨᏒᎾ?\nᎤᏂᎬᏫᏳᎯ ᎡᎶᎯ ᎠᏁᎯ ᏚᎾᎴᏅᎩ, ᎠᎴ ᎠᏰᎵ ᏧᏂᎸᏫᏍᏓᏁᎯ ᏚᏂᎳᏫᏨᎩ ᎠᎾᏡᏗᏍᎬ ᏱᎰᏩ, ᎠᎴ ᎠᎾᏡᏗᏍᎬ ᎤᏤᎵ ᎦᎶᏁᏛ\n[ᎯᎠ ᎾᏂᏪᏍᎬᎩ] ᏗᏗᎦᎸᎦ ᏧᎾᏓᎸᏍᏗ, ᎠᎴ ᏗᎦᏓᎤᎦ ᎠᏍᏕᏱᏛ ᎾᏍᎩ ᏧᎾT.\nᎦᎸᎶᎢ ᎤᏬᎵ ᏓᏳᏰᏥ; ᎢᎰᏩ ᏙᏛᏙᏢᏔᎢ\nᎿᏉᏃ ᏙᏓᎧᏁᏤᎵ ᎤᏔᎳᏬᏍᎬᎢ, ᎠᎴ ᏙᏛᏕᏯᏙᏔᏂ ᎤᎿᎸᏒᎢ.\nᎠᏎᏃ ᎠᏆᏤᎵ ᎤᎬᏫᏳᎯ ᏥᎶᏁᎥ ᎠᏆᏤᎵ ᎦᎸᏉᏗ ᏌᏯᏂ ᎤᏌᎯᎸᎢ.\nᎬᏂᎨᏒ ᏅᏓᎬᏁᎵ ᏄᏍᏛ ᏚᏚᎪᏔᏅᎢ; ᏱᎰᏩ ᎯᎠ ᎾᎩᏪᏎᎸ; ᏂᎯ ᎠᏇᏥ, ᎪᎯ ᎢᎦ ᏍᏆᏕᏁᎸ.\nᏍᎩᏔᏲᏏ, ᏙᏓᎬᏴᎧᏁᎵᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎢᏣᎧᏁᏗ ᎨᏒᎢ, ᎠᎴ ᎡᎶᎯ ᏫᏚᏍᏘᏥᏙᎸ ᏣᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ.\nᏔᎷᎩᏍᎩ ᎠᏙᎳᏅDᏍᏗ ᏙᏓᎩᏍᏆᎵᏍ; ᏓᎩᏯᏓᏬᏔᏂ ᎾᏍᎩᏯ ᏗᏩᎵ ᏣᎦ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎢᏥᎦᏔᎿᎢ ᎿᏉ Ꮻ ᏳᎯ;  ᏂᎯ ᎢᏥᎬᏫᏳᎯ; ᏪᏤᏲᎲᎦ ᏗᏧᎪᏗᏍᎩ ᎡᎶᎯ ᎢᏤ.\nᏤᏥᎦᎿᏩᏚᎦ ᏱᎰᏩ ᎦᎾᏰᎯᏍD, ᎠᎴ ᏗᏥᎾᏩ ᎢᏥᎾᏰᏍᎬᎢ.\nᎡᏣᏙᏪᏙᎥᎦ ᎤᏪᏥ ᏴᏥᏔᎳᏬᎯᏍ, ᎠᎴ ᏱᏙᏥᏲᎱᎯ ᎾᎿ ᎢᏣᎢᏒ ᎠᏏᏉ ᎤᏍᏗᏉ ᎤᏔᎳᏬᏍᎬᎢ, ᎣᏏᏳ ᎢYᎾᎵᏍᏓᏁᏗ ᏂᎦᏗᏳ ᎬᏩᎵᏍᎦᏍᏙᏗᏍᎩ ᎾᏍᎩ.\nᏱᎰᏩ ᎦᏙ ᎤᎵᏍᏙᏓᏅ ᏧᏂᏁᏨ ᎬᏯᎵᎯᏍᏗᏍᎩ? ᎤᏂᏣᏔ ᎠᏴ ᏕᎬᎩᏍᏘᎴᏱᏌ:\nᎤᏂᏣᏔ ᎯᎠ ᏂᎬᎩᏪᏎᎭ ᎠᏆᏓᏅᏙ, ᎤᏁᏔᎤᎯᏱ ᎥᏝ ᏱᎭ ᎤᎵᏍᎨᏙᏗ\nᎠᏎᏃ ᏂᎯ ᏱᎰᏩ, ᎠᏴ ᎠᏆᎬᏑᎶᏙᏗ; ᎠᏴ ᎠᏆᏙᎵ ᎦᎸᏉᏗᎯᏳ ᎨᏒᎢ; ᎠᎴ ᏥᏍᎪᎵ ᏍᎩᏌᏔᏓᏁᎯ.\nᏱᎰᏩ ᏥᏁᏙᎸᎩ ᎠᎩᏁᎢᏍᏗ ᎨᏒ ᎠᏋᏔᏅᎩ, ᏛᎠᏆᏛᎦᏁᎸᎩᏃ ᎤᏙᎵᎪᎯ ᎦᎸᏉᏗᏳ ᎤᏌᎯᎸᎢ.\nᎠᏆᏂᏏᏅᎩ, ᎠᎴ ᎠᎩᎸᏅᎩ; [ᎠᎴ] ᎠᎩᏴᏨᎩ; ᏱᎰᏣᏰᏃ ᎠᎩᏍᏆᏂᎪᏔᏅᎩ.\nᎥᏝ ᏴᎦᎦᏥᏍᎦᏯ ᎠᏍᎪᎯ ᎢᏯᎦᏴᎵ ᎢᏯᏂᏛ ᏴᏫ, ᎬᏣᏚᏫᏛ ᏥᏕᎬᎩᎦᏘᎴᎦ.\nᏔᎴᎲᎦ ᏱᎰᏩ [ᏣᎬᏫᏳᎯ]; ᏍᎩᏍ d g ᎸᏲᎩ ᏍᏆᏁᎳᏅᎯ: ᏂᎦᏗᏳᏰᏃ ᎬᎩᏍᎦᎩ ᏚᏂᎪᏆᎸᏛ ᏕᎨᎯᏴᏂᎸ; ᎠᎴ ᎤᏁᎳᏅᎯ ᎠᏂᏍᎦᎩ ᏓᏂᎰᏙᎬ ᏕᎨᎯᏍᏆᎵᏌᎸ.\nᎠᎵᏍᎦᎸᏙᏗ ᎨᏒ ᏱᎰᏩ ᎤᏍᏆᏂᎪᏗ; ᏗtᏍᏙᎵᎦ ᏴᏫ ᎣᏍᏛ ᏂᏕᎭᏛᏁᎭ.\nᏥᏁᎩ ᏯᏆᏛᎦᏁᎰᏍᏗ, ᏂᎯ ᏚᏳᎪᏛ ᎢᏯᏆᏛᏁᏗᏱ ᏯᏆᏁᎳᏅᎯ ᏥᎩ: ᏀᎢᏳ ᎤᏪᎵᎯᏍᏗ ᏥnᏆᎵᏍᏓᏁᎲᎩ, ᎠᎴ ᎭᏛᎬᎦ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ.\nᎯᎳᎪ ᎤᏓᎪᎯᏥ ᏂᎯ ᏴᏫ ᏧᏁᏥ, ᎠᏆᏙᎵᏌ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᎨᎰᎯᏍᏗ ᏅᏓᏍᎩᏴᏁᎵ? ᎯᎳᎪ ᎤᏓᎪᎯᏥ ᎬᏙᏗ ᏂᎨᏒᎾ ᎢᏥᎨᏳᏎᏍᏗ ᎠᎴ ᎦᏰᎪᎢ ᎨᏒ ᎢᏥ ᏲᎰᏍᏗ\nᎠᏎᏃ ᎢᏥᎦᏔᎰᏏd ᏱᎰᏩ ᎤᏓᏓᎴᏔᏅᎢ ᎣᏓᏅᏘ ᎤtᏍᏒ ᎤᏙᎵᎦ ᎢᏳᎵᏍᏙᏗᏱ; ᏱᎰᏩ ᎠᏎ ᏛᏆᏛᎦᏁᎵ ᏥᎮᏙᎸᎭ.\nᏣᎾᏴᏒᎯ ᎯᏙᎨᏍᏗ, ᎠᎴ ᏞᏍᏗ ᏣᏍᎦᏅᏨᎩ; ᏨᏒ ᏣᏓᏅᏙ ᎭᎵᏃᎰᏓ ᎯᏅᎬᎢ, ᎠᎴ ᏁᏣᏛᏁᏍᏗᏉ.\nᏚᏳᎪᏛ ᏓᎦᎸᏫᏍᏓᏁᏗ ᎨᏒ ᎢᏥᏍᎪᎸᏓ, ᎠᎴ ᏱᎰᏩ ᎠᏣᎵᏍᎦᏍᏙᏗ.\nᎤnᏘᏌᏔ ᎦᎪ ᎣᏍᏛ ᎢᎦᏓᏅᏓᏗᏍᏗ ᏓᎩᎾ ᎰᎪᏫᏎᎵ ᎠᎾᏓᎭ? ᏂᎯ ᏙᏣᎧᏃᏗᏱ ᎢᎦ ᎦᏓᏍᏓᏍᎬ ᏍᎩᏌᎳᏓᏏ\nᎠᏆᏓᏅᏙᎩ ᎤᎵᎰᎵᏍᏗ ᎨᏒ ᏍᎩᏍᎪᎸᏁᎸ, ᏑᏍᎦᏉ ᏀᎢᏳ ᎠᎦᏔᏛᏍᎩ, ᎠᎴ ᏖᎸᎳᏗ ᏨᏣᏍᏔᏅᎯ ᏧᏂᏁᏉ ᏉᎲᎦ.\nᏙᎯ ᏓᎦᏂᏏᎯ, ᎠᎴ ᏓᏥᎸᏂ; ᏱᎰᏩᏰᏃ ᎤᏥᏒᎯ ᎤᏣᏙᎯᏰᏛ ᎬᏆᏕᏗ ᎾᏋᏃᎭ.\nᏥᏁᎬ ᎭᏛᏓᏍᏔ, ᏱᎰᏩ, ᎭᎦᏌᏯᏍᏓ ᎮᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ.\nᎭᏛᏓᏍᏓ ᏥᏁᎬ ᎦᏧᏱᎲᎢ, ᏣᎬᏫᏳᎯ, ᎠᎴ ᏍᏆᏁᎳᏅᎯ; ᏂᎯᏰᏃ ᏓᎬᏯᏓᏙᎵᏍᏓᏁᎵ.\nᏑᎾᎴᎢ ᏓᏛᎦᏂ ᏥᏁᎬ, ᏱᎰw (ᏣᎬᏫᏳᎯ); ᏑᎾᎴ ᏂᎯ ᏗᏦᎸ ᎾᏗᏓᎪᏗᏍᎨᏍᏗ ᎦᏓdᎵᏍᏗᏍᎬᎢ, ᎠᎴ ᎦᎸᎳᏗ ᏫᏗᎦᎦᏂᏎᏍᏗ.\nᏂᎯᏰᏃ ᏣᏁᎳᏅᎯ ᏥᎩ ᎥᏝ: ᎣᏏ ᎨᏣᏰᎸᏗ ᏱᎩ ᎤᏁᏗᏥᏛ ᏗᎦᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎤᏲᏃ ᎨᏒ ᎤᏝ ᏂᎯ ᎮᎲ ᎬᏣᏕᏗᏱᎩ.\nᎤᏁᎳᎵᏍᎦᏂᏍᏛ ᎥᏝ ᏂᎯ ᏕᎯᎧᏅ ᏱᏓᏂ ᏙᎨᏍᏗ; ᏂᎦᏗᏣ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ ᎨᎯᏂᏆᏘᎯ ᎢᎩ.\nᎦᏰᎪᎩ ᎠᏂᏃᎮᏍᎩ ᏓᎨᎯᏛᏔᏂ ᏱᎰᏩ ᎤᏣᏘ ᏓᎦᏂᏆᏘᎵ, ᎠᎴ ᎤᏠᎾᏍᏗ ᎠᏍᎦᏯ.\nᎠᏴᏍᎩᏂ, ᎤᏣᏘ ᏣᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏓᏥᏳᏍᏔᏂ ᏣᏓᎵᎦ ᎠᏓᏁᎸᎢ; ᎠᎴ ᏂᎯ ᎬᎾᏰᏍᎬ ᏣᏙᎵᎦ ᎦᎸᏉᏗᏳ ᏗᎦᎳᏫᏍᏗᏱ ᎢᏗᏢ ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ.\nᏱᎰᏩ, ᏍᏆᏘᏂᏎᏍᏗ ᏣᏙᎵᎦ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎬᎩᏍᎦᎩ ᎠᏁᎲᏫᎦᎵᏒᏙᏗ; ᏣᏙᎵᎦ ᎦᏅ Ꮏ ᏣᏗᏒ ᏂᏥᏃᎯᏍᏗ ᎢᎬᏱᏢ ᎠᏆᎧᎸᎢ.\nᏚᏳᎪᏛᏰᏃ ᎨᏒ ᎥᏝ ᏳᏓᏑᏯ ᎠᏂᎧᏂᏍᎬᎢ; ᎭᏫᏂᏃ ᎨᏒ ᎤᏣᏘ ᎤᏂᏁᏗᎯᏳ; ᎤᏂᎩᏍᏗᏱ ᎨᏒ 'ᎠᏙᎵᏍᏛ ᎤᎵᏍᏚᎢᏛ ᎢᎩᏛᏙᎵᏙ; ᏓᏂᏃᏙᏛ ᎠᏅᏗᏍᎪ ᎠᎾᏓᎸᏉᏗᏍᎩ.\nᏂᎯ ᏣᏁᎳᏅᎯ ᏓᎨᎯᏛᏔᏂ; ᎤᏅᏒ ᎠᎾᏓᏅᏘᏍᎬ ᎡᎳᏗ ᏧᏂᏅᎢ ᏍᏙᏗ ᎨᏎᏍᏗ; ᎠᎴ ᎤᏧᏡᏍᎪᏒᎯ ᎠᏂᏍᏚᏅᎬ ᏓᎨᎯᎸᎪᏫᏍᏔᏂ; ᏂᎪᏰᏃ ᏕᎨᏣᎦᏘᎴᏅ.\nᏂᎦᏗᏳᏍᎩᏂ ᏂᎯ ᎨᏣᎵ ᏍᎦᏙᏗᏍᎩ ᏛᎾlᏂᎵᏥ; ᎠᎴ ᏂᎪᎯᎸ ᏛᏁᎷᏂ ᎠᎾᎵᎮᎵᎬᎢ, Ꮒ ᎨᎮᏍᏕᎵᏍᎬ ᏅᏓᎦᎵᏍᏙᏔᏂ; ᎠᎴ ᎾᏍᏉ ᏕᏍᏙᎥ; ᎤᏂᎨᏒᎯ ᎨᏣᎵᎮᎵᏙᎮᏍᏗ.\nᏂᎯᏰᏃ ᏱᎰw ᎣᏍᏛ ᎾᏘᏰᏛᏁᎵ ᎤᏓᏅᏘ: ᎣᏍᏛ ᏂᏯᏛᏁᎲ; ᎠᎴ ᎾᏍᏉ ᏕᏤᏙᎥ; ᎤᏂᎨᏳᎯ ᎨᏣᎵᎮᎵᏙᎮᏍᏗ.\nᏱᎰᏩ ᏞᏍᏗ ᏍᎩᏯᎩᏨᎩ ᏣᏔᎳᎧᏯᎬᎢ, ᏞᏍᏗ ᎠᎴ ᏍᎩᏯᏛᏗᏍᏔᏅᎩ ᎤᏗᎴᎩ ᏣᏐᏅᏙᎲᎢ.\nᏍᎩᏙᎵᎩᏲᎪ ᏱᎰᏩ ᏥᏣᎾᎦᎵᏳᏰᏃ; ᏱᎰᏣᏲᎪ ᏍᎩᏅᏮᎦ, ᏗᎩᎪᎶᎯᏰᏃ ᎠᎩᏢᎦ.\nᎠᏆᏓᏅᏛ ᎠᎴ Ꭷ ᎤᏣᏘ ᎡᎯᏍᏗ ᎾᏉ ᎵᏍᏔᏁᎭ: ᎠᏎᏃ ᏂᎯ ᏱᎰᏩ (ᎬᏯᏛᏛᎲᏍᎦ) ᎯᎳᎪ ᏅᏓᎪᎯᏥ (ᎾᏍᎩ ᎮᏍᏕᏍᏗ?)\nᎡᎭᏧᎾᏲᎪ ᏱᎰᏩ, ᎠᏆᏓᏅᏙᎩ ᎢᏓᎳᎩ: ᏍᎩ ᎦᎸᏲᎪ ᏣᏓᏙᎵᏍᏣᏛ ᏫᏂᎦᎵᏍᏙᏓ.\nᎠᏲᎱ ᎯᏍᏗᏰᏃ ᏗᎨᏒ ᎥᏝ ᏂᎯ ᏰᏣᏅᏓᏗᏍᎨᏍᏗ; ᎠᎴ ᏗᏓᏂᏐᏗᏱ ᏗᎨᏒ ᎦᎪ ᏂᎯ ᏣᎴ ᎮᏙᎵᎮᏍᏗ?\nᎠᎩᎸᏰᏗᏍᎬ ᏓᎩᏯᏪᎦ; ᎠᏆᏙᏍᏓᎥ ᎤᎵᏧᏓᏆᏛ ᏓᏯᏯᏗᏍᏙᎢ; ᎠᎴ ᏕᏥᎦᏌᎢᎲ ᎠᏆᏙᏍᏙ ᏥᏚᎳᏍᏗᎪᎢ.\nᏗᏥᎦᏙᎵ ᏓᎩᏙᎸ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏛ ᏅᏧᎵᏍᏙᏔᏅ ᏓᎩᎦᏴᎳᏙᎭ ᎬᎩᏍᎦᎩᏉ ᏅᏗᎦᎵᏍᏙᏗᎭ.\nᏍᎩ ᏯᏓᏅᏏ ᏂᎦᏗᏳ ᎤᏲ ᏗᏥᎸᏫᏍᏓᏁᎯ; ᏱᎰᏣᏰᏃ ᎤᏛᎦᏅ ᏥᏁᎬ ᎦtᎤᏍᏱᎲᎢ.\nᏱᎰᏩ ᎤᏛᎦᏅ ᎮᏍᏛ ᏥᏔᏲᏎᎬᎢ; ᏱᎰᏩ ᏙᏛᏓᏂᎸᏥ ᏥᏍᏓᏙᎵᏍᏙᏁᎲᎢ.\nᎬᎩᏍᎦᎩ ᏛᎾᎦᎰᏏ ᎠᏚ ᎤᏣᏖ ᎤᏲ ᏛᎾᏓᏅᏓᏗ; ᏛᎾᏧᏏ ᎠᎴ ᎤᏰᎶᎢᏍᏗ ᏛᎾᏕᎰᏏ.\nᏱᎰᏩ ᎣᎦᏤᎵ ᏣᎬᏫᏳᎯ ᏂᎦᎥ ᎦᎸᏉᏗᏳ ᏕᏣᏙᎥ ᎡᎳᏂᎬᎢ\nᏗᏂᎰᎵ ᏗᏂᏲᎵ ᎠᎴ ᏗᏂᏍᏓᎢ ᏕᏧᎪᏔᏅ ᏅᏓᏳᎾᏄᎪᎢᏍᏗᏱ ᎡᏣᎸᏉᏙᏗ ᎨᏒᎢ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎨᏣᏍᎦᎩ ᎨᏒᎢ, ᎾᏍᎩ ᎡlᏪ ᎩᏴᏗᏱ ᎠᎦᏍᎩ ᎠᎴ ᎤᎾᏞᎩ.\nᎢᏳᏃ ᏕᎦᎦᏅᎦ ᏣᏤᎵ ᎦᎸᎶᎢ ᏕᎯᏰᏌᏛ ᏚᎸᏫᏍᏓᏁᎸᎢ; ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎠᎴ ᏃᏈᏏ, ᎾᏍᎩ ᏗᏦᏢᏅᎯ ᏥᎩ;\nᎦᏙ ᏴᏫ ᎾᏍᎩ ᏥᏯᏓᏅᏖᏍᎪᎢ? ᎠᎴ ᏴᏫ ᎤᏪᏥ ᎾᏍᎩ ᏥᏯᎦᏔᏂᎯᎰᎢ?\nᎤᏍᏗᎩᏛᏉᏰᏃ ᎡᏍᎦ ᏂᏴᏁᎸ ᏂᎩᏴᏁᎸ ᎦᎸᎳᏗ ᎨᏥᏅᏏᏓᏍᏗ, ᎠᎴ ᎯᏍᏚᎶᏔᏅ ᏗᎬᏩᎸᏌᏓ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ.\nᎾᏍᎩ ᎤᎬᏫᏳᏌᏕᎩ ᏂᎥyᏁᎸᎩ ᏗᏦᏰᏂ ᏚᎸᏫᏍᏓᏁᎸᎢ; ᏄᏓᎴᏒ ᎪᎱᏍᏗ ᏧᎳᏏᏕᏂ ᎭᏫᏂᏗᏢ ᏂᏕᏨᏁᎸᎩ;\nᏂᎦᏗᏳ ᎤᏂᏃᏕᎾ ᎠᎴ ᏩᎦ, ᎥᎥ, ᎠᎴ ᏅᎩ ᏗᏂᏅᏌᏗ ᎢᎾᎨ ᎠᏁᎯ;\nᎦᎸᎶ ᎠᏂᏃᎯᎵᏙᎯ, ᎠᎴ ᎠᏣᏗ ᎠᎺᏉᎯ ᎠᏁᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎠᎺᏉᎯ ᏕᎦᏅᏅ ᎠᏂᎶᏍᎩ.\nᏱᎰᏩ, ᎣᎦᏤᎵ ᏣᎬᏫᏳᎯ, ᏂᎦᎥ ᎦᎷᏉᏗᏳ ᏕᏣᏙᎥ ᎡᎳᏂᎬᎢ.\nᏱᎰᏩ, ᎦᎪ ᏛᏕᏂ ᏣᎵᏦᏛᎢ? ᎦᎪ ᏛᏁᎳᏗ ᏣᏤᎵ ᎦᎸᏉᏗᏳ ᎤᏌᎯᎸᎢ?\nᎾᏍᎩ ᏚᏳᎪᏛ ᎠᎴᏂᏙᎯ, ᎠᎴ ᏚᏳᎪᏛ ᏧᎸᏫᏍᏓᏁᎯ, ᎠᎴ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎧᏁᎩ ᏧᏓᏅᏛᎢ.\nᎾᏍᎩ ᎤᏲ ᎾᏓᏃᎮᏍᎬᎾ ᎦᏃᎪ ᎬᏗᏍᎬᎢ, ᎠᎴ ᎤᏲ ᏂᎬᏁᎲᎾ ᎾᎥ ᎢᏧᎾᏓᎳ, ᎠᎴ ᎤᏐᏅ ᏂᎦᏃᏣᎸᏍᎬᎾ ᎾᎥ ᎢᏧᎾᏓᎳ.\nᎾᏍᎩ ᎦᏂᏆᏘᎯ ᎠᏥᏲᎢᏎᏛ ᏴᏫ; ᏗGᎸᏉᏗᏍᎩᏍᎩᏂ ᏱᎰᏩ ᎠᏂᎾᏰᏍᎩ; ᎤᏲ ᎢᏳᏩᏁᎯ ᎠᏎᎵᏛᎦ ᎦᏁᏟᏴᏍᎩ ᏂᎨᏒᎾ.\nᎠᏕᎸ ᏓᏓᏙᎳᏍᏗᏍᎬ ᎧᏁᏉᎩ ᎢᎬᏁᎯ ᏂᎨᏒᎾ, ᎠᎴ ᏗᏓᏂᎸᎩ ᏂᎨᏒᎾ ᎨᎦᏌᏍᏛ ᏄᏂᏍᎦᏂᏫᏘᏍᏫᎾ. ᎯᎠ ᎾᏍᎩ ᎢᏯᏛᏁᎯ Ꭵ Ꮭ ᎢᎸᎯᏳ ᎠᏥᏖᎸᏗ ᏱᎨᏎᏍᏗ.\nᎦᎸᎶ ᎧᏃᎲᏍᎦ ᎦᎸᏉᏗᏳ ᎨᏒ ᎤᏁᎳᏅᎯ; ᎠᎴ ᎦᎸᎶ ᎬᏂᎨᏒ ᏂᎬᏁ ᏧᏬᏰᏂ ᏚᎸᏫᏍᏓᏁᎸᎢ.\nᎢᎦ ᏂᏚᎩᏨᏂᏒ ᎦᏬᎯᎭ, ᎠᎴ ᏒᏃᏱ ᏂᏚᎵᏏᏂᏒ ᎧᏃᎲᏍᎦ ᎠᎦᏔᎾᎢᏳ ᎨᏒᎢ.\nᎥᏝ ᎬᏩᏂᏁᎢᏍᏗ ᏱᎩ, ᎥᏝ ᎠᎴ ᎬᏩᏂᏬᏂᎯᏍᏗ ᏱᎩ, ᎠᎴ ᎠᏂᏁᎬ ᎥᏝ ᎬᏛᎪᏗ ᏱᎩ.\nᎠᏂᏃᎮᏍᎬ ᎡᎶᎯ ᏂᎬᎾᏛ ᏚᏰᎵᏒ, ᎠᎴ ᎠᏂᏬᏂᏍᎬ ᎡᎶᎯ ᏩᏍᏛ ᎢᏴᏛ ᏚᏰᎵᏒ. ᏀᎾ ᎤᎵᏦᏓᏁᎸ ᏅᏙ ᎢᎦ-ᎡᎯ;\nᎾᏍᎩ ᏅᏙ ᎠᏕᏒᎲᏍᎩ ᏓᏤᎸ ᎤᏴᏍᏗᏱ ᏨᏗᎦᏄᎪᎪᎢ, ᎠᎴ ᎠᎵᎮᎵᎪ ᎾᏍᎩᏯ ᎤᎵᏂᎩᏛ ᎠᏍᎦy ᏨᏗᏙᎩᏱᏐ ᏣᎵᎮᎵᎪᎢ.\nᎦᎸᎶᎢ ᏩᏍᏛ ᏗdᎴᎲᏍᎦ, ᎠᎴ ᏀᎾ ᏩᏍᏔ ᎤᏕᏯᏍᏗᏱ; ᎤᎥᏝ ᎪᎱᏍᏗ ᎬᏍᎦᎳᏁᎸᎯ ᏱᎩ ᎾᏍᎩ ᎤᏗᎴᎬᎢ.\nᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᎤᏤᎵ ᏄᎪᎸᎾ, ᎦᏁᏟᏴh {ᏴᏫ} ᎤᏓᏅᏙ; ᏗᎧᎾᏩᏛᏍᏗ ᏱᎰw ᎤᏤᎵ ᎤᏙᎯᏳᎯᏯ, ᎠᎦᏔᎾᎢ ᎢᏳᏩᏁᎯ ᎾᎦᏔᎾᎥᎾ;\nᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᎤᏤᎵ ᎤᏣᏘᏂ ᏂᎨᏒᎾ ᎤᎵᎮᎵᏍᏗᎭ {ᏴᏫ} ᎤᎾᏫ; ᏗᎧᎾᏩᏛᏍᏗ ᏱᎰw ᎤᏤᎵ ᎦᏓh ᏂᎨᏒᎾ, ᎢᎦᎯ ᎢᎬᏁᎯ ᏗᏂᎦᏙᎵ {ᏴᏫ.}\nᏱᎰᏩ ᎦᎾᏰᎯᏍᏗ ᎨᏒ ᎦᎦᏅᎦᎸᏛ, ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᎡᎲᎢ; ᏗᎧᎿᏩᏛᏍᏗ ᏱᎰᏩ ᏧᏤᎵ ᎤᏙᎯᏳᎯᏯ, ᎠᎴ ᏚᏳᎪᏛ ᎤᏩᏒᎯᏳ.\nᎤᏟ ᎤᏚᎸᏗᏳ ᎾᏍᎩ ᎡᏍᎦᏉ ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎥᎥ, ᎡᏍᎦᏉ ᎤᎪᏗ ᎪᎱᏍᏗ ᏄᏓᏑᏴᎾ ᎠᏕᎸ ᏓᎶᏂᎨᎢ; ᎠᎴᏬ ᎤᏟ ᏄᎦᏀᎢ ᎡᏍᎪᏉ ᏩᏚᎵᏏ, ᎠᎴ ᏩᏚᎵᏏᏕᎦᏬᎬᎢ.\nᎠᎴᏬ ᎾᏍᎩ {ᏗᎧᎿᏩᏛᏍᏗ} ᎤᏪᏯᏔᎲᏏg ᎢᎩ ᎯᏅᏏᏓᏍᏗ; ᎠᎴ ᏛᎧᎿᏩᏕᎬ ᎤᏣᏘ ᎠᏩᏛᏙᏗ.\nᎦᎧ ᏱᎪᎵᎩ ᎠᏍᎦᏀᎢᏳ ᎨᏒᎢ? ᏍᎩᏅᎦᎸ ᏂᎨᎵᏍᎬᎾ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ.\nᎯᏲᏍᏙᏓᏏ ᎾᏍᏉ ᎯᏅᏏᏓᏍᏗ ᎤᏢᏉᏗ ᎤᏓᏅᏛ ᎤᏍᎦᏂᏍᏗᏱ; ᏞᏍᏗ ᎬᎩᏎᎪᎩᏒᎩ; ᎿᏉ ᏚᏳᎪᏛ ᎢᎦᏛᏁᎯ ᎨᏎᏍᏗ. ᎠᎴ ᎠᎩᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᎨᏎᏍᏗ ᎡᏆ ᎠᏍᎦᏅᎢᏍᏗ ᎨᏒᎢ.\nᏘᎣᎵ ᎧᏁᎬᎢ ᎠᎴ ᎠᎩᎾᏫ ᎠᏓᎥNᏖᏍᎬ ᏗᎨᏣᏓᏂᎸᏍᏗᏉ ᎨᏎᏍᏗ ᏗᏣᎧᎾᏂᏓᏍᏗᏱ ᏱᎰᏩ ᏂᎯ ᏍᏆᎵ\nᏱᎰᏩ ᎠᏆᏤᎵ ᎠᏫ-ᏗᎦᏘᏯ; ᎥᏝ ᏱᎬᎩᏂᎪᎯᏎᎮᏍᏗ\nᎢᏤ ᏕᎦᏄᎸᏒ ᎠᎩᏂᏏᎲᏍᎪ ᎾᏍᎩ; ᎠᏆᏘᏂᏐ ᎤᎶᏗᏢ ᎤᏓᏥᎾᏍ'Ꮫ ᎠᎹ ᏕᎦᏁᎲᎢ.\nᎠᏆᏓᏅᏙ ᏔᎵᏁ ᎠᏘᏃᎯᎰᎢ;  ᎠᏆᏘᏂᏐ ᏚᏳᎪᏛ ᏕᎦᏅᏅᎢ,   ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎤᏩᏒ ᏚᏙᎥᎢ.\nᎾᏍᏉ ᏱᎦᎢ ᎤᎨᏓᎵᏴ ᎤᏓᏩᏗᏍᏙᏛ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᎠᏎ ᎥᏝ ᏴᎦᏥᏍᎦᏯ ᎪᎱᏍᏗ ᎤᏲᎢ, ᏂᎯᏰᏃ ᏕᏍᎩᎧᎿᏩᏗᏙᎰᎢ; ᏂᎯ ᏣᏤᎵ ᎦᎾᏍᏓ ᎠᎴ ᏂᎯ ᏣᏤᎵ ᎠᏙᎳᎥᎾᏍᏗ ᎬᎩᎦᎵᏍᏓᏗᏍᎪᎢ.\nᏂᎯ ᎢᎬᏱᏗᏢ ᏍᏆᏛᏅᎢᏍᏓᏁᎰ ᎦᏍᎩᎸᎢ ᎠᏂᎦᏔᎲ ᎬᎩᏍᎦᎩ;  ᏂᎯ ᎪᎢ ᎯᎶᏁᏗᏍᎪ ᏥᏍᎪᎵ;  ᎠᏆᏤᎵ ᎤᎵᏍᏈᏗ ᎠᎧᎵᎪᎢ\nᏄᏓᎳᏏᏛᏒᎾ ᎣᏍᏛ, ᎠᎴ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎬᎩᏍᏓᏩᏗᏙᎮ ᏂᎪᎯᎸ ᎨᎥᎢ, ᎠᎴ ᎠᏎ ᏂᎪᎯᎸ ᏥᏯᎡᏍᏗ ᏱᎰᏩ ᎤᏤᎵ ᎠᏓᏁᎸᎢ.\nᏱᎰᏩ ᎢᎦᎦᏘ ᎠᏆᏤᎵᎦ ᎠᎴ ᎠᎩᏍᏕᎵᏍᎩ; ᎦᎪ ᏓᏥᎾᏰᏏ? ᏱᎰw ᎠᎵᏂᎪᎯᏍᏗᏍᎩ ᎬᏅᎢ; ᎦᎪ ᏥᏍᎦᎢᎮᏍᏗ?\nᎢᏳᏃ ᎠᏂᏍᎦᎾᎢ, ᎬᎩᏍᎦᎩ ᎠᎴ ᎬᏆᏡᏗᏍᎩ ᎬᎩᎷᏤᎸ ᎬᎩᏯᎡᏗᏱ ᎠᎩᏇᏓᎸᎢ, ᏚᏂᎿᏍᏆᎶᎥᎩ ᎠᎴ ᏚᏂᏅᏨᎩ.\nᎾᏍᏉ ᎤᏂᏣᏘ ᏳᎾᏅᏅ ᏱᏗᎬᎩᎦ, ᎠᎩᎾᏫ ᎥᏝ ᏴᎬᏍᎦᏯ ᎾᏍᏉ ᏓᎿᏩ ᏱᏄᏅᏁᎸ ᏱᎬᏆᏁᎷᎩᎡᎸ, ᎠᏏᏉ ᎾᏍᎩ ᏱᎠᏉᎯᏳᎭ\nᏑᏓᎴᎩ ᎪᎱᏍᏗ ᏥᏯᏚᎸᎡᎸ ᏱᎰᏩ ᎠᎴ ᎾᏍᎩ ᏛᎩᏲᎵ, ᎾᏍᎩ ᎠᏆᏕᏗᏱ ᏱᎰᏩ ᎤᏤᎵ ᎠᏓᏁᎸ ᏂᎪᎯᎸ ᎨᎥᎢ ᎠᎩᎪᏩᏛᏗᏱ ᎤᏬᏚᎯ ᎨᏒ ᏱᎰᏩ ᎤᏤᎵᎦ, ᎠᎴ ᎠᏆᎵᎮᎵᏍᏗᏱ ᏥᎪᏩᏘᏍᎬ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ\nᏀᎢᏳᏰᏃ ᎤᏲ ᎾᏆᎵᏍᏓᏁᎮᏍᏗ ᏛᏋᏍᎦᎸᏂ ᎤᎵᏦᏛ ᎭᏫᏂᏗᏢ; ᏀᎾ ᎤᏕᎵᏒ ᎤᎵᏦᏛ ᏛᏋᏍᎦᎸᏂ; ᏛᎩᏌᎳᏔᏂ ᏅᏲᎯ ᏛᎩᎧᏂ.\nᎿᏉᏃ ᏥᏍᎪᎵ ᎦᎸᎳᏗᏢ ᏄᏍᏕᏍᏗ ᎬᎩᏍᎦᎩ ᏕᎬᏆᏚᏫᏍᏛᎢ; ᎤᎵᏦᏛᏃ ᏓᎦᎵᏍᎪᎸᏔᏂ ᎠᏥᎸ ᎨᎳᏍᏗ ᎨᏒ ᎾᏍᎩ ᎠᎵᎮᎵᏍᏗ ᎨᏒᎢ; ᏙᏓᏥᏃᎩᏏ, ᎥᎥ, ᏙᏥᏃᎩᏏ ᏓᏥᎸᏉᏔᏂ ᏱᎰᏩ.\nᏱᎰᏩ ᏔᏛᎦᏅᎭ ᏥᏁᎬᎢ ᎦᎵᏍᏔᏅᎭ, ᎠᎴ ᏍᎩᏙᎵᏨᎭ, ᎠᎴ ᏘᏁᏨᎭ ᎬᏯᏅᎲᎭ.\nᎢᏥᏲᎦ ᎠᏆᎧᏛ, ᏣᏛᏅ, ᎠᎩᎾᏫ Ꭿ ᏂᏣᏪᏎᎸᎩ; ᏣᎧᏛ, ᏱᎰᏩ, ᏛᎩᏲᎵ.\nᏞᏍᏗ ᏍᏋᏍᎦᎳᏁᎸ ᏣᎧᏛᎢ; ᏣᏔᎳᏬᏍᎬ ᏞᏍᏗ ᎢᏴᏛ ᎢᎯᏴᏁᎸ ᎯᏅᏏᏓᏍᏗ; ᏍᎩᏍᏕᎸᎲᎩᏰᏃ; ᏞᏍᏗ ᏍᏋᏍᎦᎳᏁᎸ ᏣᎧᏛᎢ; ᏣᏔᎳᏬᏍᎬ ᏞᏍᏗ ᎢᏴᏛ ᎢᎯᏴᏁᎸ ᎯᏅᏏᏓᏍᏗ; ᏍᎩᏍᏕᎸᎲᎩᏰᏃ; ᏞᏍᏗ ᏍᏋᏕᏨᎩ, ᎠᎴ ᏞᏍᏗ ᏍᏆᏓᏅᎡᎸᎩ, ᏣᏁᎳᏅᎯ ᎠᏗᏍᏕᎵᏍᎩ.\nᎢᏳᏃ ᎡᏙᏓ ᎠᎴ ᎡᏥ ᎬᏋᏕᏨᎭ, ᎿᏉ ᏱᎰᏩ ᏛᎩᏯᏅᎯ.\nᏍᏇᏲᎲᎦ ᏣᏅᏅᎢ ᏱᎰᏩ, ᎠᎴ ᏍᏆᏘᏄᎦ ᎬᏂᎨᏒ ᎦᏅᏅᎢ, ᏫᏂᎦᎵᏍᏙᏓ ᎬᎩᏍᎦᎩ ᎨᏒᎢ.\nᏞᏍᏗ ᏫdᏍᎩᏲᏒᎩ ᎬᎩᏍᎦᎩ ᏄᏍᏛ ᎤnᏓᏚᎵᏍᎬ ᎢᎬᏋᏁᏗᏱ; ᎠᏂᏰᎪᎩᏰᏃ ᎠᏂᏃᎮᏍᎩ ᏚᎾᎴᏅ ᎬᏆᏡᏔᏅ, ᎾᏍᎩ ᎤᏲ ᎢᏳᎾᏓᏛᏁᏗᏱ ᎠᏅᏬᎳᏕᏍᎩ.\n[ᏯᏆᎵᎲᏲᎵᎴ] ᎢᏳᏃ ᎾᏉᎯᏳᏒᎾ ᏱᎨᏎ ᎠᎩᎪᏩᏛᏗᏱ ᎤᏓᏅᏘᏳ ᎨᏒ ᏱᎰw ᎠᏂ ᎦᏙᎯ ᏗᏅᏃᏛ ᎠᏁᎲᎢ.\nᎯᎦᏘᏓ ᏱᎰw; ᎤᎵᏂᎩᏛ ᏣᏓᏅᏖᏍᏗ, ᎾᏍᎩᏃ ᏓᏣᎵᏂᎩᎪᎯᏍᏓᏁᎵ ᏣᎾᏫ; ᎯᎦᏘᏓ ᏱᎰᏩ.\nᎯᎠ ᎾᎩᏪᏒᎩ, ᎨᏯᏔᎯ ᎨᏎᏍᏗ ᎦᎴᏂᏙᎲ ᎾᏍᎩ ᎠᎩᏍᎦᏅᎢᏍᏗᏱ ᏂᎨᏒᎾ ᏥᏃᎪᎢ ᏴᏗᏍᎬᎢ; ᏘᎣᎵ ᏓᏥᏍᏆᏂᎪᏔᏂ ᎠᏴᏑᎶᏗ ᏓᎬᏔᏂ, ᏀᎢᏳ ᎠᏂᏍᎦᎾ ᎢᎬᏱᏗᏢ ᎠᏁᏙᎯ.\nᎠᏋᎨᏩ ᎨᏒᎩ ᎡᎳᏪᏱ ᎠᏋᏒᎢ, ᎡᎳᏪᏱ ᎠᏋᏒᎩ ᎣᏍᏛ ᎦᏬᏂᎯᏍᏗ ᎨᏒᎢ; ᎠᎴ ᎡᎯᏍᏗ ᎠᏆᏓᏅᏓᏗᏍᏗ ᏄᎵᏍᏔᏅᎩ.\nᎠᎩᎾᏫ ᎭᏫᏂ ᎤᏗᎴᎲᏒᎩ; ᎠᏏᏃ ᎦᏓᏅᏖᏍᎬᎢ ᎠᏥᎸ ᎤᏓᏪᎵᎬᎩ; ᎿᏉᏃ ᏥᏃᎪᎢ ᎠᏋᏔᏅᎩ ᎠᎩᏁᏨᎩ;\nᏱᎰᏩ, ᏍᏇᏲᎲᎦ ᏄᏍᏛ ᏩᏆᎵᏰᎢᎶᎯᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎢᎪᎯᏛ ᎠᏆᎴᏂᏓᏍᏗ ᎨᏒᎢ, ᎾᏍᎩᏯ ᏄᏍᏛᎢ; ᎾᏍᎩ ᎠᎩᎦᏙᎥᎯᏍᏗᏱ ᏂᏥᏩᎾᎦᎸᎢ.\nᎬᏂᏳᏉ ᎢᎪᎯᏛ ᎠᏆᎴᏂᏓᏍᏗ ᎨᏒ ᎤᏬᏱᏉ ᎾᏯᏛᎥ ᏂᏨᏁᎸ, ᏗᏆᏕᏘᏱᎶᏍᏗᏃ ᎨᏒ ᎠᏎᏉ ᎢᎦᎦᏛ ᏗᏣᎧᏃᏗᏱ; ᎤᏙᎯᏳᎯᏯ ᎢᎬᏂᎢᏛᏉ ᏴᏫ ᏀᎢᏳ ᎤᎵᏂᎩᏛ ᏄᎾᏛᏅᎢ ᎠᏎᏉᏉ.\nᎤᏙᎯᏳᎯᏯ  ᏴᏫ ᎠᏁᏙᎲ ᎠᎾᏓᏴᎳᏔᏩᏍᎪᎢ; ᎤᏙᎯᏳᎯᏯ  ᎠᏎᏉᏉ ᎠᎾᎵᏖᎸᏂᏙᎰᎢ; ᎦᏟᏏᏍᎪ ᏧᎬᏩᎶᏗ, ᎥᏝᏃ ᏯᎦᏔᎰ ᎾᏍᎩ ᎤᏤᎵ ᎢᏳᎵᏍᏙᏗ ᎨᏒᎢ.\nᎧ, ᎿᏉᏃ, ᏣᎬᏫᏳᎯ ᎦᏙ ᏥᎦᏘᏯ ? ᏂᎯ ᎬᏯᎵᏍᎦᏍᏙᏗᎭ.\nᏍᏊᏓᎳᎩ ᏂᎦᏗᏳ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ; ᏞᏍᏗᏉ ᏱᎬᏆᏙᏢᏗᏍᎨᏍᏗ ᎤᏂᏁᎫ.\nᎠᏋᎨᏩ ᎨᏒᎩ, ᎠᎴ ᎥᏝ ᏯᎩᏍᏚᎢᏎ ᏥᎣᎵ; ᏅᏓᎦᎵᏍᏙᏗᏍᎬ ᏂᎯ ᎢᏣᏛᏁᎸᎯ ᎨᏒᎢ.\nᎯᎲᎾ ᏍᏋᏂᎸᎢ; ᎠᎩᏒᎲᏍᎦ ᏦᏰᏂ ᏍᏋᏂᏍᏔᏅᎢ.\nᎢᏳᏃ ᎯᎬᎪᎸᎥᏍᎬ ᏱᎩᎵᏲᎢᏍᏗᎭ ᏴᏫ ᎤᏍᎦᏅᏨ ᏱᏍᏛᏗᏍᏗᎭ, ᎤᏬᏚᏒ ᎯᏒᏁᎰ ᏥᏍᎪᏴ ᏥᏍᎪᏴ ᎾᏍᎩᏯᎢ; ᎤᏙᎯᏳᎯᎠ ᎢᎬᏂᎢᏛᏉ ᏴᏫ ᎠᏎᏉᎢ.\nᎭᏛᎬᎦ ᎦᏓᏙᎵᏍᏗᏍᎬ, ᏱᎰᏩ, ᎠᎴ ᎭᏛᏓᏍᏓ ᏕᎦᏠᏱᎲᎢ; ᏞᏍᏗᏉ ᎡᎳᏪᏱ ᏱᏨᏎᏍᏗ ᏕᏥᎦᏌᏬᎢᎲᎢ; ᏅᏆᏓᎴᏉᏰᏃ ᎯᎦᏔᎲ ᎠᎴ ᎨᏙᎯᏉ, ᎾᏍᎩᏯᏉ ᏂᎦᏛ ᏗᎩᎦᏴᎵᎨ ᏥᏄᎾᏍᏛᎢ,\nᎤᏲᏍᏛᏉ ᏍᎩᏙᎵᎩ, ᎾᏍᎩ ᎠᏆᎵᎮᎵᏍᏗᏱ, ᎠᏏᏉ ᎠᏂ ᏂᎦᏂᎩᏍᎬᎾ ᎠᎴ ᏂᎦᎵᏛᏗᏍᎬᎾ ᎨᏒᎢ.\nᎠᏫ ᎠᎹ ᏕgᏴ ᏥᏚᏚᎵᏍᎪᎢ, ᎾᏍᎩᏯ ᎠᏆᏓᏅᏙ ᏂᏣᏚᎵ ᏂᎯ ᏣᏁᎳᏅᎯ.\nᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎤᏚᎵ ᎤᏁᎳᏅᎯ, ᎬᏂᏛ ᎤᏁᎳᏅᎯ: ᎢᎳᎪ ᎢᏳ ᏓᎨᏏ ᎬᏂᎨᏒ ᏫᏅᏓᎦᏛᏁᎵ ᎢᎬᏱᏗᏢ ᎤᏁᎳᏅᎯ ᎤᎧᏛᎢ.\nᏗᎩᎦᏌᏬᎸᎯ ᎠᏆᎵᏍᏓᏴᏗ ᎨᏒᎩ ᏗᎬᏩᎩᏨᏗ, ᎯᎠ ᏂᎪᎯᎸ ᏂᎬᎩᏪᏎᎲᎢ, ᎭᏢ ᏣᏁᎳᏅᎯ?\nᎢᏳᏃ ᎾᏍᎩ ᎯᎠ ᎦᏅᏓᏓ ᎠᏆᏓᏅᏙ ᎭᏫᏂ ᏥᏐᏅᏯᏍᎪᎢ: ᎦᏥᏍᏓᏩᏛᏛᏰᏃ ᎨᏒᎩ ᎤᏂᏣᏘ; ᎣᎨᏅᏒ ᎾᏍᎩ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏗᏓᏁᎸᎢ, ᎣᏥᏁᎢᏍᏗᏍᎬ ᎠᎵᎮᎵᏍᏕᎢ ᎨᏒ ᎠᎴ ᎦᎸᏉᏙᏗ ᎨᏒᎢ, ᎣᏣᎢᏒᎩ ᎤᏂᏣᏘ ᎾᏍᎩ ᎠᏂᏍᏆᏂᎪᏗᏍᎩ ᎦᎸᏉᏗ ᎢᎦ ᎨᏒᎢ.\nᎠᏆᏓᏅᏙ, ᎦᏙᏃ ᎡᎳᏗ ᎢᏣᏅᏨ? ᎠᎴ ᎦᏙᏃ ᎤᏪᎵᎯᏍᏗᏉ ᎢᏣᏓᏅᏔᏩᏕᎦ? ᎯᏯᎵᏍᎦᏍᏙᏓᏉ ᎤᏁᎳᏅᎯ; ᎠᏏᏉᏰᏃ ᏛᏥᎸᏉᏔᏂ ᎤᎧᏛ ᎠᎩᏎᎸᎲ ᎢᏳᏍᏗ\nᎠᏆᏁᎳᏅᎯ, ᎠᏆᏓᏅᏙ ᎡᎳᏗ ᎤᏅᏨ ᎭᏫᏂ ᎨᏒᎢ; ᎾᏍᎩ ᎢᏳᏍᏗ ᎬᏯᏅᏓᏗᏍᎨᏍᏗ ᎠᏓᎴhᏍᏍᎨᏍᏗ ᏦᏓᏂ ᎤᏪᏴ ᎦᏓ ᎠᎲᎢ, ᎠᎴ ᎠᏂᎭᎹᏂ ᎤᎾtᏤᎵᎪᎢh, ᎠᎴ ᎹᏌ ᎤᏌᎯᎸᎢ.\nᎠᏒᎩ ᎠᎵᏍᏓᏁᎰ ᎠᏒᎩ, ᎤᏍᏆᏃᏴᎳ ᎠᎹ ᏓᎵᏌᎳᏗᏍᎬᎢ; ᏂᎦᏗᏳ ᏗᏣᏤᎵ ᏓᏓᏁᏆᏒᏍᎬ ᎠᎴ ᏓᎵᏍᏗᎳᏁᎬ ᎬᏇᎸᏔᏅ.\nᎠᏎᏃ ᏱᎰᏩ ᎤᏓᏅᏘᏳ ᎨᏒ ᏛᏆᎵᏍᎪᎸᏓᏁᎵ ᎢᎦ ᎨᏎᏍᏗ, ᏒᏃᏱᏃ ᎨᏎᏍᏗ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏗ ᏕᏥᏃᎩᏍᎨᏍᏗ, ᎠᎴ ᎤᏁᎳᏅᎯ ᎬᏅᎢ ᎠᎩᏁᎯ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ.\nᎯᎠ ᏅᏓᏥᏪᏎᎵ ᎤᏁᎳᏅᎯ ᎠᎥy ᎠᏆᏤᎵ ᏅᏯ, ᎦᏙᏃ ᎢᏍᏋᎨᏫᏒ? ᎦᏙᏃ ᎢᎨᏙᎰ ᎤᏲ ᎠqᎤᏓᏅᏔwᏕᎪ ᏅᏗᎦᎵᏍᏙᏗᏍᎪ ᎠdᏌy ᏂᎬᏋᎿᏕᎬ ᎬᎩᏍᎦᎩ?\nᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏗᎩᎪᎶᎯ ᏥᏚᏂᎶ ᎾᏏᎩᏯ ᎬᎩᏍᎦᎩ ᎬᏆᏢᏗᎭ; ᎯᎠ ᏂᎬᎩᏪᏎᎲ ᏂᏚᎩᏨᏂᏒᎢ; ᎭᏢ ᏣᏁᎳᏅᎯ?\nᎦᏙᏃ ᎡᎳᏗ ᎢᏣᏅᏨ ᎠᏆᏓᏅᏙ? ᎠᎴ ᎦᏙᏃ ᎤᏪᎵᎯᏍᏗᏉ ᎢᏣᏓᏅᏔᏩᏕbᎠ? ᎯᏯᎵᏍᎦᏍᏙᏍᏓᏉ ᎤᏁᎳᏅᎯ; ᎠᏏᏉᏰᏃ ᏛᏥᎥᏉᏔᏂ, ᎾᏍᎩ ᏙᎯᏱ ᎠᏁᎯ ᏥᎩ ᎠᏆᎧᏛᎢ ᎠᎴ ᎾᏍᎩ ᎠᏆᏁᎳᏅᎯ.\nᎤᏁᎳᏅᎯ ᎢᎦᏤᎵ ᎢᎦᏗᏍᎦᎶᏗᏱ, ᎠᎴ ᎢᏍᎦᎵᏂᎪᎯᏍᏗᏍᎩ, ᏂᎪᎯᎸ ᎠᎦᏔᏩᏕᎩ ᎢᎩᏍᏕᎵᏍᎩ ᎤᏲ ᏂᎦᏛᎿᏕᎬᎢ;\nᎾᏍᎩ ᎢᏳᏍᏗ ᎥᏝ ᏴᎨᏗᏍᎦᏯ ᎾᏍᏉ ᎦᏙᎯ ᏳᏓᏁᏟᏴᏒ, ᎠᎴ ᏙᏓᎸ ᎠᎺᏉᎯ ᎠᏰᎵ ᏫᏓᏅᎯ ᏱᎩ;\nᎠᎴ ᎾᏍᏉ ᎠᎹ nᎿ ᏕᎨᏒ ᏱᏚᏍᏆᏃᏴᎦ ᏱᏓᎵᏖᎸᎲᏍᎦ, ᎠᎴ ᏙᏓᎸ ᏱᏚᏖᎸᏗᎭ ᎾᏍᎩ ᏓᎵᏍᏗᎳᏁᎬᎢ\nᎡᏉᏂ ᎤᏪᏴ, ᎠᎴ ᎾᏍᎩ ᏕᎤᏪᏯᏗᏒ ᎣᏍᏛ ᏓᏳᏓᏅᏓᏗᏍᏔᏂ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᎦᏚᎲᎢ, ᎦᎸᏉᏗᏳ ᎨᏒ ᏕᎦᏁᎸ ᎾᏍᎩ ᏩᏛ ᎦᎸᎳᏗᏳ ᎡᎯ.\nᎤᏁᎳᏅᎯ ᏀᎾ ᎠᏰᎵ ᏄᏛᏅ; ᎥᏝ ᎠᏥᏖᎸᏗ ᏱᎨᏎᏍᏗ; ᎤᏁᎳᏅᎯ ᏓᏳᏍᏕᎸᎯ ᎤᎵᏍᏗᏳ.\nᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎤᏂᏔᎳᏬᏒᎩ, ᎠᏰᎵ ᏕᎪᏢᏩᏗᏒ ᎤᎾᎵᏖᎸᏅᎩ; ᎤᏁᏨᎩ; ᎡᎶᎯ ᎤᏩᎾᏬᏒᎩ.\nᏱᎰᏩ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎢᎨᎳᏗᏙᎭ; ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ ᎢᎦᏗᏍᎦᎶᏗᏱ.\nᎡᏤᎾ, ᎢᏣᎦᏌᏯᏍᏓ ᏕᎤᎸᏫᏍᏓᏁᎸ ᏱᎰᏩ, ᎣᏍᏛᎯ ᏂᏕᎤᏩᏁᎵᏙᎸ ᎡᎶᎯ.\nᏓᎿᏩ ᏕᎨᏒ ᏓᏲᎯᏍᏗᎭ ᎡᎶᎯ ᏩᏛ ᎢᏴᏛ; ᎦᎵᏣᏗ ᏓᏍᏆᎵᏍᎦ, ᎠᎴ ᏗᏓᏘᏍᏗ ᏔᎵ ᏂᏕᎦᏗᎭ; ᏓᏆᎴᎷ ᎠᎪᎲᏍᏗ ᎠᏥᎸᏱ.\nᎢᏥᏑᎵᎪᎢ, ᎠᎴ ᎢᏣᏙᎴᎰᎯ ᎠᏴ ᎤᏁᎳᏅᎯ ᎨᏒᎢ; ᎤᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᏁᎲᎢ, ᎥᎩᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎡᎶᎯ.\nᏱᎰᏩ ᎤᏂᏣᏘ ᏗtᏂnᏙᎯ ᎢᎨᎳᏗᏙᎭ; ᎤᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ ᎢᎦᏗᏍᎦᎶᏗᏱ.\nᏍᎩᏙᎵᎩ ᏣᏁᎳᏅᎯ, ᎲᏓ ᏣᏓᏅᏘᏳ ᎨᏒᎢ; ᎤᏣᏘ ᎨᏣᏓᏙᎵᏍᏗ ᎨᏒ ᎲᏓ ᎯᏅᎦᎸ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ.\nᎣᏍᏛ ᏍᏉᏑᎵ ᏂᏗᏳᎪᏛᎾ ᎾᏆᏛᏁᎸᎢ, ᎠᎴ ᏍᎩᏅᎦᎸ ᎠᎩᏍᎦᏅᏨᎢ.\nᏥᎦᏔᎭᏰᏃ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ ᎠᎴ ᎠᎩᏍᎦᏅᏨᎢ ᏂᎪᎯᎸ ᎢᎬᏱᏗᏢ ᏄᏍᏗᏕᎦ.\nᏂᎯ ᏂᎯ ᏨᏒᎯᏳ ᎬᏍᎦᏅᏤᎸ, ᎠᎴ ᏕᎯᎧᏅ ᎯᎠ ᎾᏍᎩ ᎤᏲ ᎾᏆᏛᏁᎸ, ᎾᏍᎩ ᏣᏚᏓᎴᏍᏗᏱ ᎯnᎨᎬᎢ, ᎠᎴ ᏂᏣᏍᎦᏅᏨᎾ ᎢᏳᎵᏍᏙᏗᏱ ᏕᎱᎪᏗᏍᎬᎢ.\nᎬᏂᏳᏉ, ᎠᏍᎦᏂ ᎨᏒ ᎠᏆᏕᎥnᎩ; ᎠᎴ ᎠᏍᎦᏂ ᎨᏒ ᎡᏥ ᎠᎩᏁᎵᏍᏨᎩ.\nᎬᏂᏳᏉ, ᎣᎯ ᏣᏰᎸᎭ ᎦᏰᎪᎩ ᏂᎨᏒᎾ ᎭᏫᏂ ᎨᏒᎢ; ᎤᏕᎵᏒᏃ ᎨᏒ ᎠᏆᏕᎶᏆᏍᏗᏱ ᏅᏛᏁᎵ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ.\nᎯᏐᏈ ᏍᎩᏅᎦᎸᏓ, ᎠᏆᏓᏅᎦᎸᏛᏃ ᎨᏎᏍᏗ; ᏍᏉᏑᎵ, ᎥᏃᏥᏃ ᏄᏁᎩᏴ ᎤᏟ ᎾᎩᏁᎩᏰᏍᏗ.\nᏥᎦᏛᎬᎦ ᎤᎵᎮᎵᏍᏗ ᎠᎴ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒᎢ ᎬᏩᎾᎵᎮᎵᏍᏗ ᏱᎩ.\nᏛᏍᎦᎳᏏ ᏣᎧᏛᎢ ᎠᎩᏍᎦᏅᏥᏙᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏂᏚᏳᎪᏛᎾ ᎾᏆᏛᏁᎵᏙᎸ ᎯᏅᎦᎸ.\nᏣᏁᎳᏅᎯ ᏍᏉᏢᎾᏏ ᎭᏫᏂ ᎦᏓᎭ ᏂᎨᏒᎾ ᎠᎩᎾᏫ; ᎠᎴ ᎭᏫᏂ ᏍᏉᏢᎯᏌᏏ ᎠᏆᏓᏅᏙᎩ, ᏚᏳᎪᏛ ᏅᎦ.\nᎠᎴ ᏞᏍᏗ ᏍᎩᎨᎯᏙᎸᎩ ᎮᏙᎲᎢ; ᎠᎴ ᏣᏤᎵ ᎦᎸᏉᏗᏳ ᎠᏓᏅᏙ ᏞᏍᏗ ᏍᎩᏯᏅᎡᎸᎩ.\nᏔᎵᏁ ᏍᏆᎵᏍᎪᎸᏓᏍᏗ ᎠᎵᎮᎵᏍᏗ ᏣᏓᏍᏕᎸᏗ ᎨᏒ ᏅᏓᏳᏓᎴᏅᎯ; ᎠᎴ ᎬᏩᎦᏗᏯ ᏣᏓᏁᏗ ᎨᏒ ᎠᏓᏅᏙ ᎲᏓ ᏍᎩᏌᎳᏕᏍᏗ.\n[ᎿᏉᏃ] ᎦᏥᏰᏲᎲᏍᎨᏍᏗ ᎤᏣᏘᏂ ᎢᏯᎾᏛᏁᎯ ᏂᎯ ᏕᏣᏅᏅᎢ; ᎠᎴ ᎠᏂᏍᎦᎾ ᎠᎾᏨᏍᎨᏍᏗ ᏂᎯ ᎨᏣᎷᏤᎮᏍᏗ.\nᏍᏊᏓᎳᎩ ᎩᎬ ᎠᏨᏗ ᎨᏒ ᎠᎩᏍᎦᎥnᏨᎢ ᏣᏁᎳᏅᎯ, ᏂᎯ ᎠᏆᎵᏍᏕᎸᏙᏗ ᏣᏁᎳᏅᎯ; ᏥᏃᎪᎪ ᎠᏍᏓᏯ ᏙᏓᎧᏃᎩᏍᏔᏂ ᏣᏤᎵ ᏚᏳᎪᏛ ᎨᏒᎢ.\nᏣᎬᏫᏳᎯ ᎠᏆᏤᎵ, ᏘᏍᏗ ᏓᎩᎭᏁᎦᎸᎢ; ᏥᎣᎵᏃ ᎬᏂᎨᏒ ᏅᏓᎬᏁl ᎡᏣᎸᏉᏗᏳ ᎨᏒᎢ.\nᎥᏝᏰᏃ ᏱᏣᏚᎵ ᎪᎱᏍᏗ ᎠᎸᎯ, ᏴᎦᎵᏍᎪᎸᏓᏰᏃ; ᎥᏝ ᎣᏏᏳ ᏱᏣᏰᎸᎭ ᎠᏥᎸ ᎨᎳᏍᏗ ᎨᏒᎢ.\nᎠᏓnᏙ ᎠᏍᏆᎵᏒᎯ ᎾᏍᎩ ᎠᏥᎸ ᎨᎳᏍᏗ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ; ᎠᏍᏆᎵᏒᎯ ᎠᎴ ᎦᏓᏬᏔᏅᎯ ᎤᎾᏫ ᎥᏝ ᏴᎦᎯᏍᎦᎩ, ᏣᏁᎳᏅᎯ.\nᎣᏍᏛ ᏣᏓᏰᎸᏗ ᎨᏒ ᎲᏓ ᎣᏍᏛ ᏂᏯᏛᏂᏏ ᏌᏯᏂ; ᎭᏐᏯᎦ ᎠᏐᏯᏍᏛ ᏥᎷᏏᎵᎻ.\nᎩᎳ ᎿᏉ ᎣᏏᏳ ᏣᏰᎸᏎᏍᏗ ᏚyᎪᏛ ᎠᎵᏍᎪᎸᏙᏗ ᎨᏒᎢ, ᎠᎴ ᎠᏥᎸ ᎨᎳᏍᏗ ᎨᏒᎢ, ᎠᎴ ᎤᏃᏍᏛ ᎠᎪᎲᏍᏔᏅᎯ; ᎿᏉᏃ ᏓᎾᎵᏍᎪᎸᏗᏍᎨᏍᏗ ᏧᎾᎪᏅᏍᏓᎵ ᏩᎦ ᏣᏤᎵ ᎠtᏍᎸ ᎨᎳᏍᏗᏱ ᎦᏍᎩᎸᎢ.\nᏣᏁᎳᏅᎯ ᏂᎯ ᏗᏧᎪᏙᏗ ᎨᏒ ᎯᎥᏏ ᎤᎬᏫᏳᎯ, ᎠᎴ ᏂᎯ ᏣᏤᎵ ᏚᏳᎪᏛ ᎨᏒ [ᎯᎥᏏ] ᎤᎬᏫᏳᎯ ᎤᏪᏥ.\nᎾᏍᎩ ᏚᏳᎪᏛ ᏓᎬᏔᏂ ᏙᏓᎫᎪᏓᏁᎵ ᏴᏫ ᏗᏣᏤᎵ, ᎠᎴ ᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᏗᏣᏤᎵ ᏚᏳᎪᏛ ᏙᏓᎫᎪᏓᏁᎵ.\nᏙᏓᎸ ᏅᏩᏙᎯᏯᏛ ᎬᏩᏂᎾᏄᎪᏫᏎᎮᏍᏗ ᏴᏫ ᎠᎴ ᏚᏌᎯᎸ [ᏅᏩᏙᎯᏯᏛ ᎬᏩᏂᎾᏄᎪᏫᏎᎮᏍᏗ] ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒ ᎬᏗ.\nᎤᏲ ᎢᏳᎾᏛᎿᏕᎩ ᎾᏍᎩ ᏴᏫ ᏙᏓᎫᎪᏓᏁᎵ, ᏙᏛᏍᏕᎸᎯ ᎤᏂᏂᎩᏛ ᏧyᏁᏥ, ᎠᎴ ᏛᏍᏆᎵᏏ ᎠᏍᏓᏯ ᎢᏯᏓᏛᏁᎯ.\nᎨᏣᎾᏰᏍᎨᏍᏗ ᏂᎪᎯᎸ ᏅᏙ ᎢᎦ ᎡᎯ ᎠᎴ ᏒᏃᏱ ᎡᎯ ᎠᏂᎧᎸᎢ, ᏂᎪᎯᎸ ᎠᎾᏓᏁᏟᏴᏎᎬ [ᏴᏫ].\nᏓᎦᎷᏥ ᎾᏍᎩᏯ ᎠᎦᏍᎬ ᏥᎦᎷᎪ ᎧᏁᏍᎦ ᎠᏍᎫᏕᏒᎯ ᎦᎳᎨᏴᎢ; ᎾᏍᎩᏯ ᎠᎦᏍᎬ ᏥᎦᏚᎳᏍᏗᏍᎪ ᎦᏙᎯ.\nᏀᎢᏳ ᎡᎮᏍᏗ ᎤᏓᏅᏘ ᎣᏏᏳ ᎾᏛᏁᎮᏍᏗ; ᎠᎴ ᎤᏣᏘ ᏅᏩᏙᎯᏯᏛ ᎡᎮᏍᏗ ᏂᎪᎯᎸ ᏅᏙ ᏒᏃᏱ ᎡᎯ ᎧᎸᎢ.\nᎤᎬᏫᏳᎯ ᎾᏍᏉ ᎨᏎᏍᏗ, ᎠᎺᏉᎯ ᎠᏓᎴᏂᏍᎨᏍᏗ ᎠᎴ ᎠᎺᏉᎯ ᏩᏍᏖᏍᏗ, ᎠᎴ ᎡᏉᏂ ᎤᏪᏴ ᎠᏓᎴᏂᏍᎨᏍᏗ ᎡᎶᎯᏃ ᏫᏚᎵᏍᏘᏂᎸ ᏩᏍᏖᏍᏗ.\nᎢᎾᎨ ᏗᏁᎯ ᎢᎬᏱᏗᏢ ᎡᎳᏗ ᏂᎬᏩᏛᏁᎮᏍᏗ; ᎬᏩᏍᎦᎩᏃ ᎦᏙᎯ ᎠᏂᎦᎾᏗᏍᎨᏍᏗ.\nᎤᏂᎬᏫᏳᎯ ᏓᏏᏏ ᎠᏁᎯ ᎠᎴ ᎠᎹᏰᎵ ᏗᎬᏩᏓᏂᎸᎢᏍᏙᏗ ᎠᏂᏲᎯᎮᏍᏗ; ᎤᏂᎬᏫᏳᎯ ᏥᏩ ᎠᏁᎯ ᎠᎴ ᏏᏩ ᎠᏁᎯ ᎬᏩᎵᏍᎪᎸᏓᏁᎮᏍᏗ ᎠᏓᏁᏗ ᎨᏒᎢ.\nᎥᎥ, ᏂᎦᏗᏳ ᎤᏂᎬᏫᏳᎯ ᎢᎬᏱᏗᏢ ᎡᎳᏗ ᎬᏩᏓᏅᏁᎮᏍᏗ; ᏂᎦᏗᏳ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏕᎬᏩᏁᎶᏕᏍᏗ.\nᎤᏂᎬᏂᏰᏃ ᏓᎫᏓᎴᏏ ᎢᏳᏃ ᏓᏠᏱᎮᏍᏗ; ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎾᏍᏉ, ᎠᎴ ᎾᏍᎩ ᏁᎲᎾ ᎤᏍᏕᎵᏍᎩ.\nᏙᏓᎦᏙᎵᏥ ᎾᏍᎩ ᎤᏲ ᎢᏳᏛᎿᏕᎩ ᎠᎴ ᎤᏂᎩᏛ, ᎠᎴ ᏙᏛᏍᏕᎸᎯ ᏓᏅᏅ ᎤᏂnᎩᏛ\nᏙdᎫᏓᎴᏏ ᏓᏅᏅ ᎠᏓᎶᏄᎮᏍᎩ ᎨᏒ ᎠᎴ ᎠᏍᏓᏯ ᎢᏯᏓᏛᏁᎯ ᎨᏑᎥᎢ; ᎠᎴ ᎤᏣᏘ ᎦᎸᏉᏗ ᎨᏎᏍᏗ ᎤᏂᎩᎬ ᎾᏍᎩ ᏓᎧᏅᎢ.\nᎠᎴ ᎾᏍᎩ ᎡᎮᏍᏗ, ᎠᎴ ᎾᏍᎩ ᎠᏥᏁᎮᏍᏗ ᎠᏕᎸ ᏓᎶᏂᎨ ᏥᏩ ᎤᏕᏅᎯ; ᎠᎴ ᏂᎪᎯᎸ ᎠᎾᏓᏙᎵᏍᏗᏍᎨᏍᏗ ᎠᏥᏙᎵᏍᏗᏱ; ᎠᎴ ᏂᏚᎩᏨᏂᏒ ᎠᏥᎸᏉᏗᏍᎨᏍᏗ\nᏏᏏᏥᎳᏂᏫᎯ ᎠᏘᏌᎴᏍᏗ ᎦᏙᎯ ᏓᎭᏕᏍᏗ ᎦᏚᏏ ᏳᎦᏔᏔᏂᏫᎯᏃ ᎾᏍᏥ ᎠᎵᏖᎵᏫᏫᏍᏤᏍᏗ ᎴQᎤᏫᏂᏫ ᎾᏍᏥᏰᎢ ; ᎦᏚᎲᏃ ᎠᏁᎯ ᎧᏁᏍᎦ ᎦᏙᎯ ᎠᏛᏍᎩ ᏄᏬᏚᏒ ᎾᏍᎩᏯ ᏧᏃᏚᎯᏳ ᏂᎦᎵᏍᏗᏍᎨᏍᏗ\nᏕᎤᏙᎥ ᏂᎪᎯᎸ ᎡᎮᏍᏗ; ᏕᎤᏙᎥ ᏅᏙ ᎢᎦ ᎡᎯ ᎧᎸ ᎢᎪᎯᏛ ᎤᏛᏗ ᎨᏎᏍᏗ; ᏴᏫᏃ ᏅᏩᏙᎯᏯᏛ ᏚᎾᏓᏅᏖᏍᏗ ᎾᏍᎩ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ; ᏂᎦᏗᏳ ᏧᎾᏓᎳᏅᏛ ᏴᏫ ᎣᏍᏛ gwᏩᏃᎮᏍᎨᏍᏗ.\nᎦᎸᏉᏗ ᎨᏎᏍᏗ ᏱᎰw ᎤᏁᎳᏅᎯ, ᎢᏏᎵ ᎤnᏤᎵᎦ ᎤᏁᎳᏅᎯ, ᎤᏩᏒᎯᏳ ᎤᏍᏆᏂᎪᏗ ᏧᎸᏫᏍᏓᏁᎯ.\nᎠᎴ ᎦᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎦᎸᏉᏗᏳ ᏕᎤᏙᎥ ᏂᎪᎯᎸᎢ; ᎠᎴ ᏂᎬᎾᏛ ᎡᎶᎯ ᏩᎧᎵᎩ ᎾᏍᎩ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ.  ᎡᎺᏅ, ᎠᎴ ᎡᎺᏅ.\nᎤᏓᏙᎵᏍᏔᏅ ᏕᏫ ᏤᏏ ᎤᏪᏥ ᏓᎵᏍᏆᏓ\nᏂᎦ ᏕᎤᏚᎸᏗ ᏕᎯᏁᎸ ᏱᎰᏩ ᏂᎯ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ!\nᎠᏆᏓᏅᏙ ᎤᏣᏘ ᎤᏚᎵᎭ ᎠᎴ ᎤᎸᏕᏍᏗᎭ ᏕᎤᏚᎵᏍᎬ ᏓᏓᏁᎸ ᏱᎰᏩ ᏧᏤᎵᎦ; ᎠᎩᎾᏫ ᎠᎴ ᎠᎩᏇᏓᎸ ᎠᏁᎷᎲᏍᎦ ᎤᎾᏚᎵᏍᎬ ᎬᏂᏛ ᎤᏁᎳᏅᎯ.\nᎥᎥ, ᏥᏍᏆᏯ ᎤᏩᏛᎲ ᎤᏁᎳᏗᏍᏗᏱ, ᎠᎴ ᎠᎪᏍᏓᏯ ᎤᏁᏍᏓᏠᏗᏱ ᏀᎾ ᏧᏅᏗᏱ, ᎾᏍᎩ ᏂᎯ ᏗᏣᏤᎵ ᎠᏥᎸ ᎨᎳᏍᏗᏱ, ᏱᎰᏩ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ, ᎠᏆᏤᎵ ᏣᎬᏫᏳᎯ, ᎠᎴ ᎠᏆᏤᎵ ᎤᏁᎳᏅᎯ.\nᎣᏏᏳ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎾᏍᎩ ᏣᏤᎵ ᎠᏓᏁᎸ ᏗᏂᏁᎳ; ᏂᎪᎯᎸ ᎨᏣᎸᏉᏗᏍᎨᏍᏗ.\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎠᏍᎦᏯ ᎾᏍᎩ ᏂᎯ ᎯᏯᎵᏂᎪᎯᏍᏗᏍᎩ; ᎾᏍᎩ ᎤᎾᏫᏱ ᏚᏍᏆᏂᎪᏗ ᏕᎦᏅᏅᎢ.\nᎾᏍᎩ ᎨᏆ ᎤᎨᏓᎵᏴ ᎠᏂᎶᏍᎬ ᎠᎹ ᎠᏢᏗᏱ ᎾᏅᏁᎭ; ᎠᎴ ᎾᏍᏉ ᎠᎦᏍᎬ ᎠᎧᎵᎭ ᏛᏓᎸᎢ.\nᎠᎾᎢᏒ ᎧᏁᏉᏥ ᏚᎾᎵᏂᎪᏍᎬᎢ; ᏌᏯᏂ ᏩᏂᎷᎦ ᎤᏁᎳᏅᎯ ᎤᏬᎸ ᎢᎬᏱᏗᏢ.\nᏱᎰᏩ ᏣᏁᎳᏅᎯ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ, ᎭᏛᎬᎦ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ; ᎭᏛᏓᏍᏓ ᏣᏁᎳᏅᎯ ᏤᎦᏈ ᎤᏤᎵᎦ.\nᏣᏁᎳᏅᎯ, ᏔᎦᏅᎦ ᎣᎦᎬᏑᎶᏙᏗ, ᎠᎴ ᏔᎦᏅᎦ ᎤᎧᏛ ᏣᏤᎵ ᎦᎶᏁᏛ.\nᏌᏉᏰᏃ ᎢᎦ ᏣᏤᎵ ᏓᏓᏁᎸ ᎠᏴᏍᏗᏱ ᎤᏟ ᏃᎯ ᎡᏍᎦᏉ ᏌᏉ ᎢᏯᎦᏴᎵ [ᎢᎦ]. ᎤᏟ ᏱᏥᏰᎸᎾ ᎦᎶᎯᏍᏗᏱ ᏥᎦᏘᏯ ᎢᏳᎵᏍᏙᏗᏱ ᎠᏆᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸᎢ, ᎠᏃ ᎤᏲ ᏗᎦᎸᏫᏍᏓᏁᏗ ᏕᎦᎵᏦᏛ ᎠᏆᏕᏗᏱ.\nᏱᎰᏩᏰᏃ ᎤᏁᎳᏅᎯ ᏅᏙ ᎢᎦ ᎡᎯ, ᎠᎴ ᎠᎬᏑᎶᏗ, ᏱᎰᏩ ᏛᎵᏍᎪᎸᏔᏂ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᎠᎴ ᎦᎸᏉᏗᏳ ᎨᏒᎢ; Ꮭ ᎪᎱᏍᏗ ᎣᏍᏛ ᎨᏒ ᏧᎨᏳᏙᏗ ᏱᎩ ᏚᏳᎪᏛ ᎠᏁᏙᎯ.\nᏱᎰᏩ ᎤᏂᏣᏘ ᏔᏘᏂᏙᎯ, ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ ᏂᎯ ᏣᎵᏍᎦᏍᏙᏗᏍᎩ.\nᏣᎬᏫᏳᎯ ᏂᎯ ᎣᎦᏁᎳᏗᏍᏗᏱ ᎨᏒᎩ ᏂᎪᎯᎸ ᏴᏫ ᎤᎾᏓᏁᏟᏴᏒᏒᎢ.\nᎠᏏ ᏙᏓᎸ ᏂᏓᏙᏢᎬᎾ ᎨᏎᎢ, ᎠᎴ ᎠᏏᏉ ᏂᏓᏙᏢᏍᎬᎾ ᎨᏎ ᎦᏙᎯ ᎠᎴ ᎡᎳᏂᎬᎢ, ᎠᎴ ᏅᏧᏓᎴᏅᎲᎾ ᎠᎴ ᎾᎵᏍᏆᏗᏍᎬᎾ ᏂᎯ ᏣᏁᎳᏅᎯ.\nᎠᏲᎱᎯᏍᏗ ᎨᏒ ᎢᏗᏢ ᏫᎩᎦᏘ ᏴᏫ, ᎠᎴ ᎯᎠ ᏂᏪᎭ, ᏥᏣᏨᎾ ᏂᎯ ᏴᏫ ᏧᏁᏥ.\nᏂᎯᏰᏃ ᏕᎯᎧᏅ ᏌᏉ ᎢᏯᎦᏴᎵ ᎢᏧᏕᏘᏴᏛ ᎤᏒᎯᏉ ᎾᏍᎩᏯ ᎿᏉ ᎦᎶᎯ, ᎠᎴ ᏌᏉ ᎢᏯᏯᏫᏍᏗ ᏒᏃᏱ ᎾᏍᎩᏯᎢ.\nᏕᎭᏘᏁᎦ ᎾᏍᎩᏯ ᎦᏃᎱᎩᏍᎬ ᏧᏂᏄᎲᏍᏗᏍᎩ; ᎦᎸᏗᏉ ᎨᏒ ᏓᎾᏤᎸ; ᏑᎾᎴ ᎧᏁᏍᎦ ᏣᏛᏍᎪ ᏓᎾᏤᎸ\nᏑᎾᎴ ᎠᏥᎸᏍᎪ ᎠᎴ ᎠᏛᏍᎪᎢ; ᎤᏒᎯᏰᏱ ᎠᏂᏍᎫᏕᏍᎪ ᎠᎴ ᎢᎧᎾᏍᎬᎪᎢ.\nᏣᎾᎸᏒᏰᏃ ᎣᎩᏒᎲᏍᎦ, ᎠᎴ ᏣᏔᎳᏬᏍᎬ ᎣᎦᏕᏯᏙᏗᎭ.\nᏣᎧᏛ ᎢᎬᏱᏗᏢ ᏂᏕᏨᏁᎸ ᎣᎩᏍᎦᏅᏨᎢ, ᎠᎴ ᎤᏕᎵᏛ ᎣᎩᏍᎦᏅᏨ ᏣᎧᏛ ᏚᎸᏌᏛ ᎢᎬᏱᏗᏢ ᏂᏕᏨᏁᎸ.\nᏣᏔᎳᏬᎯᏍᏗᏰᏃ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗ ᏙᎩᎩᏨᏂᏒ ᏕᎦᎶᏐᎲᏍᎪᎢ; ᏙᎦᏕᏘᏱᎶᏍᎬᏃ ᏕᎦᎶᏍᎦ ᎾᏍᎩᏯ ᎠᏓᏅᏖᏗ ᏥᎦᎶᏍᎪᎢ\nᎦᎵᏆᏍᎪᎯ ᏧᏕᏘᏴᏛ ᎠᏎᎸᎯ ᎣᎦᎴᏂᏓᏍᏗᏱ; ᏙᎦᎵᏂᎬᎬᏃ ᏱᏅᏗᎦᎵᏍᏙᏗ ᏁᎳᏍᎪᎯ ᏧᏕᏘᏴᏛ ᏱᏃᎩᏛ, ᎠᏎ ᎾᏍᎩ ᏙᎦᎵᏂᎩᎬᎬ ᏧᏯᏪᎢᏍᏗ ᎠᎴ ᎤᏕᏯᏙᏗ ᎨᏐᎢ; ᏞᎩᏳᏰᏃ ᎠᎵᏍᏆᏗᏍᎪ ᎠᎴ ᎢᏓᎵᏛᏗᏍᎪᎢ.\nᎦᎪ ᎠᎦᏔᎭ ᏄᎵᏂᎬᎬ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ? ᎾᏍᎩ ᏂᏣᎾᏰᎯᏍᏛ ᎾᏍᎩᏯ ᏄᏍᏗ ᏣᏔᎳᏬᎯᏍᏗ ᎨᏒᎢ.\nᏍᎩᏰᏲᎲᎦ ᏦᎦᏎᏍᏗᏱ ᏙᎩᎩᏨᏁᎬ ᎾᏍᎩ ᏗᎦᏔᎿᎢ ᎢᏧᎵᏍᏙᏗᏱ ᏦᎩᎾᏫ.\nᎭᎦᏔᎲᎾ ᏱᎰᏩ, ᎢᎳᎪ ᏅᏓᎪᎯᏥ? ᎠᎴ ᎤᏲ ᎭᏓᏅᏓᏓ ᏘᏂᎥᏏᏓᏍᏗ ᏕᎭᏓᏅᏖᏍᎬᎢ.\nᏣᏓᏙᎵᏍᏗ ᎨᏒ ᏄᎳᏉ ᎣᎩᏛᏓᏁᎯ ᎢᎦᎢ ᏍᎩᎥᏏ; ᎾᏍᎩ ᎣᎦᎵᎮᎵᏍᏗᏱ,; ᎠᎴ ᎣᏍᏛ ᎣᎦᏓᏅᏓᏗᏍᏗᏱ ᏂᎪᎯᎸ ᎣᏣᎴᏂᏙᎲᎢ\nᎣᏍᏛ ᏍᎩᏯᏓᏅᏓᏗᏍᏓ ᎾᏍᎩᏯ ᎢᎪᎯᏛ ᏍᎩᎩᎵᏲᎢᏍᏔᏅᎢ, ᎠᎴ ᎾᏍᎩᏯ ᏂᏚᏕᏘᏴᎲ ᎤᏲ ᎣᎩᎪᎯᏙᎸᎢ.\nᏕᏣᎸᏫᏍᏓᏁᎸ ᏘᏅᏏᏓᏍᏗ ᎬᏂᎨᏒ ᏫᏄᎾᎵᏍᏓᏏ, ᎠᎴ ᎡᏣᎸᏉᏗᏳ ᎨᏒ ᏧᏁᏥ ᎬᏂᎨᏒ ᏫᏄᎾᎵᏍᏓᏏ.\nᎠᎴ ᎤᏬᏚᎯᏳ ᎨᏒ ᎤᏁᎳᏅᎯ ᎤᏤᎵ ᏫᏙᎩᎧᎿᏩᏗᏓ; ᎠᎴ ᏍᎩᏍᏓᏱᏗᏏ ᏦᎪᏰᏂ ᏙᏨᏗᏍᎬ ᏙᎩᎸᏫᏍᏓᏁᎲᎢ; ᎥᎥ, ᏦᎪᏰᏂ ᏙᏨᏗᏍᎬ ᏙᎩᎸᏫᏍᏓᏁᎲ ᎯᏌᏓᏱᏛ ᎾᏍᎩ.\nᎢᏥᏃᏴᎵᏍᏓ ᏤᏥᏃᎩᏍᏓ ᏱᎰᏩ ᏂᎬᎾᏛ ᎡᎶᎢ ᎢᏤᎯ.\nᏤᏥᎦᎿᏩᏚᎦ ᏱᎰᏩ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏒ ᎢᏨᏓ; ᎢᏥᎷᎩ ᎤᏬᎸ ᎢᎬᏱᏗᏢ ᎢᏣᎵᎮᎵᎬ ᏕᏥᏃᎩᏍᎨᏍᏗ.\nᎢᏥᎦᏔᎮᏍᏗ ᏂᎯ ᎾᏍᎩ ᏱᎰᏩ ᎤᏁᎳᏅᎯ ᎨᏒᎢ; ᎾᏍᎩ ᎢᎪᏢᏁᎢ, ᎥᏝᏃ ᎢᎬᏒ ᏱᎦᏓᏙᏢᏁᎢ; ᎾᏍᎩ ᏧᏤᎵ ᏴᏫ ᎠᏴ, ᎠᎴ ᎤᏂᏃᏕᎾ ᎤᏤl ᎦᏄᎸᏒ ᎢᏓᎵᏍᏓᏴᏗᏍᎩ.\nᎦᎶᎯᏍᏗᏱ ᎤᏬᎸ ᎢᏥᏴᎭ ᎢᏣᎵᎮᎵᎬᎢ; ᎢᏥᏴᎭ ᎾᏍᎩ ᎤᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎢᏥᎸᏉᏗᏍᎬᎢ; ᎡᏣᎵᎮᎵᏥ ᎾᏍᎩ, ᎠᎴ ᎦᎸᏉᏗᏳ ᏂᏨᎦ ᎾᏍᎩ ᏕᎤᏙᎥᎢ.\nᎤᏓᏅᏘᏳᏰᏃ ᏱᎰᏩ; ᎾᎵᏍᏆᏗᏍᎬᎾ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒᎢ; ᎠᎴ ᎾᏍᎩ ᎤᏙᎯᏳᎯ ᎤᏁᎢᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ ᏂᎪᎯᎸ ᏴᏫ ᎠᎾᏓᏁᏟᏴᏏᏒᎢ.\nᎠᏆᏓᏅᏙ ᏱᎰᏩ ᎯᎸᏉᏓ; ᎠᎴ ᏂᎦqᏛ ᎭᏫᏂ ᎠᎩᏯᎥ ᎯᎸᏉᏓ ᏱᎰᏩ\nᎠᏆᏓᏅᏙ ᏱᎰᏩ ᎯᎸᏉᏓ; ᎠᎴ ᏞᏍᏗ ᏨᎨᏫᏒᎩ ᏂᎦᎥ ᎣᏍᏛ ᏂᏣᏛᏁᎸᎢ.\nᎾᏍᎩ ᏣᏙᎵᎩ ᏥᎩ ᏄᏓᎴᏒ ᏣᏍᎦᏅᏥᏙᎸᎢ; ᎾᏍᎩ ᏣᏅᏫᏍᎩ ᏧᏓᎴᏅᏛ ᏣᏢᏥᏰᏍᎬᎢ.\nᎾᏍᎩ ᎲᏅᎢ ᎫᏓᎴᏍᎩ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏣᏁᎯ ᎤᏣᏘ ᎤᏓᏅᏘᏳ ᎨᏒᎢ, ᎠᎴ ᎤᏣᏘ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒᎢ;\nᎾᏍᎩ ᏣᏛᏁᎯ ᎣᏍᏛ ᏣᏁᎲᎢ ᏣᏛᏐᏅᎯ ᎨᏒᎢ; ᎾᏍᎩᏃ ᎯᏫᏅ ᏔᎵᏁ ᏂᎭᎵᏍᏗᎭ ᎠᏬᎭᎵ ᎾᏍᎩᏯᎢ.\nᏱᎰᏩ ᏚyᎪᏛ ᏂᏓᏛᏁᎭ ᎠᎴ ᏕᎫᎪᏓᏁᎭ ᏂᎦᏛ ᎠᏍᏓy ᎢᎨᎬᎾᏕᎩ.\nᏚᏅᏅ ᎬᏂᎨᏒ ᏄᏩᏁᎴ ᎼᏏ, ᎠᎴ dᎸᏫᏍᏓᏁᎲ ᎬᏂᎨᏒ ᏂᏚᏩᏁᎴ ᎢᏏᎵ ᏧᏪᏥ.\nᏱᎰᏩ ᎤᏓᏅᏘᏳ ᎠᎴ ᎤᏣᏘ ᎤᏓᏙᎵᏣᏘᏳ, ᎤᏍᎦᏃᎵᏳ ᎤᏔᎳᏬᎯᏍᏗᏱ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎤᏓᏅᏘᏳ.\nᎥᏝ ᏂᎪᎯᎸ ᏱᏓᏍᎦᎨᏍᏗ, ᎥᏝ ᎠᎴ ᏂᎪᎯᎸ ᏳᎿᎸᏎᏍᏗ.\nᎥᏝ ᎾᏍᎩᏯ ᎢᎩᏍᎦᏅᏨ ᏱᎩᏍᏛᏗᏍᏔᏅ, ᎥᏝ ᎠᎴ ᎾᏍᎩᏯ ᎢᎩᏍᎦᏅᏨ ᏱᎦᎫᏴᎡᎸ.\nᎦᎸᎶᏰᏃ ᎡᎶᎯ ᎢᏅᎯᏳ ᎦᎸᎳᏗᏢ ᏥᎩ, ᎾᏍᎩᏯ ᎡᏉᎯᏳ ᎤᏓᏙᎵᏍᏗ ᎨᏒ ᏧᏪᏙᎵᏍᏗᏱ ᎬᏩᎾᏰᏍᎩ.\nᎾᏍᎩ ᎢᏅᎯᏳ ᏥᏂᏕᎤᏓᎳ ᏅᏙ ᏗᎧᎸᎬ ᎠᎴ ᏅᏙ ᏭᏕᎵᎬᎢ, ᎾᏍᎩᏯ ᎢᏅᎯᏳ ᏕᎩᎲᎸ ᎢᎩᏍᎦᏅᏥᏙᎸᎢ.\nᎠᎦᏴᎵᎨ ᏥᏕᎦᏙᎵᎪ ᏧᏪᏥ ᎾᏍᎩᏯ ᏱᎰᏩ ᏕᎦᏙᎵᎪ ᎬᏩᎾᏰᏍᎩ.\nᎠᎦᏔᎭᏰᏃ ᏂᎦᏍᏛᎢ; ᎠᏅᏓᏗᏍᎪ ᎦᏓᏉ ᎨᏒ ᎠᏴ.\nᏴᏫᏍᎩᏂ ᎠᏂ ᎤᎴᏂᏓᏍᏗ ᎨᏒ ᎧᏁᏍᎦᏉ ᏓᏤᎸ; ᎤᏥᎸᏒ ᏠᎨᏏ ᎡᎯ ᎾᏍᎩᏯ ᎠᏥᎸᏍᎪᎢ;\nᎤᏃᎸᏓᏰᏃ ᎤᏃᎴ ᎿᏉ ᎠlᏛᏗᏍᎪᎢ; ᏀᎾᏃ ᎤᏛᏒ ᎤᏝ ᏔᎵᏁ ᎤᎦᏙᎥᎯᏍᏗ ᏱᎨᏎᏍᏗ.\nᏱᎰᏩᏍᎩᏂ ᎤᏓᏙᎵᏣᏘᏳ ᎨᏒ ᏅᏧᏓᎴᏅᎲᎾ ᎠᎴ ᏫᎾᏍᏛᎾ ᏧᏪᏙᎵᏍᏗᏱ ᎬᏩᎾᏰᏍᎩ, ᎣᏍᏛᏃ ᎢtᏍᏛᏁᏗ ᏗᏂᏲᎵ ᏧᏁᏥᏛᎯ,\nᎾᏍᎩ ᎠᏂᏍᏆᎪᏗᏍᎩ ᎤᏤᎵ ᎧᏃᎮᏛ ᏓᏠᎯᏍᏛᎢ, ᎠᎴ ᎾᏍᎩ ᎠᎾᏅᏓᏗᏍᎩ ᎤᏤᎵ ᏗᎧᎿᏩᏛᏍᏗ ᎾᏍᎩ ᎢᏳᎾᏛᏁᏗᏱ.\nᏱᎰᏩ ᎤᏪᏍᎩᎳᏛ ᎤᏪᏗᏱ ᎦᎸᎶᎢ; ᎤᎬᏫᏳᎯᏃ ᎨᏒ ᏂᎬᎾᏛ ᎤᎬᏫᏳᏌᏕᎩ.\nᎡᏥᎸᏉᏓ ᏱᎰᏩ, ᏂᎯ ᎦᎸᎳᏗ ᎡᏥᏅᏏᏓᏍᏗ ᎾᏍᎩ ᏧᏤᎵᎦ, ᎢᏣᏓᎪᎾᏛᏗ ᏗᏣᎵᏂᎩᏛ, ᏗᏥᎧᎿᏩᏕᎩ, ᎢᏣᏛᏓᏍᏗᏍᎩ ᎧᏁᎬ ᎤᏤᎵ ᎧᏃᎮᏛ.\nᎡᏥᎸᏉᏓ ᏱᎰᏩ ᏂᎦᏗᏳ ᏂᎯ ᏧᏤᎵ ᎢᏥᏣᏘ; ᏂᎯ ᎡᏥᏅᏏᏓᏍᏗ, ᎾᏍᎩ ᎣᏍᏛ ᎤᏰᎸᏗ ᏗᏥᎸᏫᏍᏓᏁᎯ.\nᎡᏥᎸᏉᏓ ᏱᎰᏩ ᏂᎦᏗᏳ ᎤᏬᏢᏅᏅᎯ ᏂᎬᎾᏛ ᏀᎾ ᎤᎬᏫᏳᎯ ᎨᏒᎢ; ᎯᎸᏉᏓ ᏱᎰᏩ ᎠqᎠᏓᏅᏙ.\nᏥᎨᏳᎠ ᏱᎰᏩ, ᏅᏗᎦᎵᏍᏙᏗᎭ ᎠᏆᏛᎦᏁᎸ ᏥᏁᎬ ᎦᏓᏙᎵᏍᏗᏍᎬᎢ.\nᎾᏍᎩ ᏣᏆᏛᏓᏍᏓᏁᎸ ᎾᏍᎩ ᎢᏳᏍᏗ ᏥᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ ᏂᎪᎯᎸ ᎨᎥᎢ.\nᎤᏲ ᎠᏰᎸᏗ ᎠᏲᎱᎯᏍᏗ ᎾᏍᎩᏯ ᏓᏆᏚᏫᏍᏔᏅᎩ, ᎠᎴ ᎡᎯᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᏨᏍᎩᏃ ᎡᎯ ᎠᎩᎷᏤᎸᎩ; ᎠᎩᏩᏛᎲᎩ ᎤᏕᏯᏙᏗ ᎠᎴ ᎤᏲ ᎠᏰᎸᏗ ᎨᏒᎢ.\nᎿᏉᏃ ᎥᏥᏯᏓᏙᎵᏍᏓᏁᎸᎩ ᎥᏥᏯᏅᎲᎩ ᎦᏛᎣ ᏱᎰᏩ; ᏱᎰᏩ, ᎤᏲᏍᏛᏉ ᎱᏓᎳᎩ ᎠᏆᏓᏅᏙ.\nᏱᎰᏩ ᎤᏓᏙᎵᏣᏔ ᎠᎴ ᎤᏓᏅᏘ; ᎥᎥ, ᎤᏁᎳᏅᎯ ᎢᎦᏤᎵ ᎤᏓᏙᎵᏣᏘᏳ.\nᏱᎰᏩ ᏓᏍᏆᏂᎪᏗᎭ ᎤᎾᏠᎾᏍᏗ ᏂᎨᏒᎾ; ᎤᏲ ᎾᏆᏛᎿᏕᎬᎩ, ᎾᏍᎩᏃ ᎠᎩᏍᏕᎸᎲᎩ.\nᏣᏣᏪᏐᎸᏍᏙᏗᏱ ᏫᎯᎶᎯ ᎠᏆᏓᏅᏙᎩ; ᏱᎰᏩᏰᏃ ᎣᏍᏛ ᏂᏣᏛᏁᎸ.\nᏂᎯᏰᏃ ᏍᏊᏓᎳᎡᎸᎩ ᎠᏆᏓᏅᏙ ᎠᏲᎱᎯᏍᏗ ᎨᏒᎢ, ᏗᏥᎦᏙᎵ ᏗᎦᏌᏬᏍᏗ ᎨᏒᎢ, ᎠᎴ ᏗᏆᎳᏏᏕᏂ ᎦᏅᎢᏍᏗ ᎨᏒᎢ.\nᏓᎨᏙᎵ ᏱᎰᏩ ᎤᎧᏛ ᎢᎬᏱᏗᏢ ᎦᏙᎯ ᏗᏅᏃᏛ ᎠᏁᎲᎢ.\nᎠᏉᎯᏳᏅᎩ, ᎾᏍᎩ ᎢᏳᏍᏗ ᎠᎩᏁᏨᎩ; ᎤᏣᏘ ᏥᎩᎵᏲᎬᎩ.\nᎠᎩᏏᏄᎶᎯᏎᎸᎩ ᎯᎠ ᎾᎩᏪᏒᎩ, ᏂᎦᏗᏳ ᏴᏫ ᎠᏂᏰᎪᎩ.\nᎦᏙ ᏓᏥᏯᎵᏍᎪᎸᏓᏁᎵ ᏱᎰᏩ ᏓᏥᏯᎫᏴᏓᏁᎵ ᎤᏣᏘ ᎣᏍᏛ ᎾᏆᏛᏁᎸᎢ?\nᏓᏥᎩᏏ ᎤᎵᏍᏈᏗ ᎠᎵᏍᏕᎸᏙᏗ, ᎠᎴ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ ᏚᏙᎥ ᏓᏥᏯᏅᎯ ᏱᎰᏩ.\nᏱᎰᏩ, ᏥᏁᏤᎸ ᎢᏯᏆᏛᏁᏗᏱ ᎠᏎ ᏓᎦᎫᏴᎯ ᎠᏂᎦᏔᎲ ᏂᎦᏛ ᏧᏤᎵ ᏴᏫ.\nᏱᎰᏩ ᏙᏗᎧᏅ ᎦᎸᏉᏗᏳ ᏓᏂᏲᎱᏍᎬ ᏧᏤᎵ ᎤᎾᏓᏅᏘ.\nᏱᎰᏩ, ᎤᏙᎯᏳᎯᏯ ᏍᏆᏤᎵ ᏍᎩᏅᏏᏓᏍᏗ; ᏍᏆᏤᎵ ᏍᎩᏅᏏᏓᏍᏗ ᎠᏴ, ᎠᎴ ᎠᎨᏴ ᎯᏅᏏᏓᏍᏗ ᎤᏪᏥ; ᏂᎯ ᏕᏣᎸᏒᎭ ᏓᏆᏢᏍᏛᎢ.\nᏓᎬᏯᎵᏍᎪᎥᏓᏁᎵ ᎠᏥᎸ ᎨᎳᏍᏗ ᎬᏯᎵᎡᎵᏤᎲ ᎬᏂᎨᏒ ᎢᎬᏁᎯ, ᎠᎴ ᏱᎰᏩ ᏕᎤᏙᎥ ᏓᏥᏯᏅᎯ ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ.\nᏱᎰᏩ ᏥᏁᏤᎸ ᎢᏯᏆᏛᏁᏗᏱ ᎠᏎ ᏓᎦᎫᏴᎯ ᎠᏂᎦᏔᎲ ᏂᎦᏛ ᏧᏤᎵ ᏴᏫ;\nᏱᎰᏩ ᎤᏤl ᎠᏓᏁᎸ ᏚᏜᏅᏛᎢ, ᎠᏰᎵ ᏂgᎯ ᎨᏒ, ᏥᎷᏏᎵᎻ.  ᎡᏥᎸᏉᏓ ᏱᎰᏩ.\nᎡᏥᎸᏉᏓ ᏱᎰᏩ, ᏂᏥᎥ ᏗᏣᏓᎴᏅᏛ; ᎡᏥᎸᏉᏓ ᏂᏥᎥ ᏴᏫ\nᎤᏓᏅᏘᏳᏰᏃ ᎨᏒ ᎤᏣᏘ ᎡᏉᎯᏳ ᎢᎩᏙᎵᏍᏗᏱ; ᎠᎴ ᎤᏙᎯᏳᎯ ᏱᎰᏩ ᎤᏁᎢᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗᏱ ᎤᎵᏍᏆᏗᏍᏗ ᏂᎨᏒᎾ.  ᎡᏥᎸᏉᏓ ᏱᎰᏩ.\nᎦᏚᏏ ᏫᏗᎦᎦᏂᎭ, ᎭᎾ ᏗᏓᎴᎲᏯᎦ ᎠᎩ ᏍᏕᎵᏍᎩ.\nᏱᎰᏩᏱ ᏗᏓᎴᎲᏍᏕ ᎠᎩ ᏍᏕᎵᏍᎩ, ᎦᎸᎶ ᎠᎴ ᏒᎶᎯ ᏧᏬᏢᏅᎯ.\nᏱᎰᏩ ᎥᏞ ᎤᏁᎳᎩ ᏴᎦᏰᎳ ᏣᎳᏏᏕᏂ ᎠᏪᏍᏗᏱ ᎯᎠᏣ ᏍᏉᏂᎪᏗ ᎥᏞ ᎦᎸᏍᎪ ᏱᎩ\nᎬᏂᏳᏉ ᎾᏍᎩ ᎤᏍᏉᏂᎪᏗ ᎢᏏᎵᏱ, ᎥᏞ ᎦᎸᏍᎩ ᎠᏚ ᏱᎦᎵ\nᏱᎰᏩ  ᏣᏍᏉᏂᎪᏗᏍᎩ, ᏱᎰᏣᏰᏃ tᏍᏙᏩᏗᏍᏓᏁᎯ ᏦᏰᏂ ᎯᎦᏘᏏ,\nᏅᏙ ᎢᎦ ᎡᎯᎥᏝ ᎪᎱᏍᏗ ᏴᎦᏨᎦ ᎢᎦ  ᎨᏒ, ᎠᎦ ᏅᏙ ᏒᏃᏱ ᎡᎯ\nᏱᎰᏩ ᏣᏍᏉᏂᎪᏗ ᏂᎦᎢ ᎤᏲ ᎨᏒ ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏣᏓᏅᏙ\nᏱᎰᏩ ᏣᏍᏉᏂᎪᏗ ᎯᏄᎪᎬᎢ ᎠᎴ ᎯᏴᎵ ᎢᎲ  ᎪᎯᎨᏒ ᎠᏓᎴᏂᏍᎩ ᎠᎦ ᏂᎪᎯᎸ ᎠᎴ ᏂᎪᎯᎸᎢ\nᎣᏏᏳ ᎠᎩᏰᎸᏅᎩ ᎾᎯᏳ ᎯᎠ ᏂᎬᎩᏪᏎᎸ, Ꭷ, ᎢᏕᎾ ᏱᎰᏩ ᎤᏤᎵ ᏗᏓᏁᎸᎢ.\nᏦᎦᎳᏏᏕᏂ ᏫᏗᎦᏙᎨᏍᏗ ᎭᏫᏂᏗᏢ ᎦᎶᎯᏍᏗᏱ ᏗᏣᏤᎵ, ᏥᎷᏏᎵᎻ.\nᏥᎷᏏᎵᎻ ᎦᏚᎲ ᎤᎵᏂᎩᏛ ᏥᏂᎬᏃ ᎾᏍᎩᏯ ᏂᎬᏅ ᎠᏁᏍᎨᎲᎢ.\nᎾᎿ ᎠᏁᎪ ᎠᏂᎿᎷᏍᎪ ᏓᏂᎳᏍᏓᎸᎢ, ᏓᏂᎳᏍᏓᎸ ᏱᎰᏩ ᏧᏤᎵᎦ, ᎠᎾᏛᏓᏍᏔᏁᎪ ᎧᏃᎮᏛ ᎢᏏᎵ ᎤᎾᏤ\nᎾᎿᏰᏃ ᏕᎦᏍᎩᎳ ᏗᎫᏙᏙᏗᏱ, ᏕᏫ ᏨᎤᏁᏢᏔᏅᏛ ᎨᏒ ᏧᎾᏤᎵ ᏕᎦᏍᎩᎸᎢ.\nᎢᏣᏓᏙᎵᏍᏓ ᎢᏥᏔᏲᎭ ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᏧᎧᎿᏩᏗᏓᏍᏗᏱ ᏥᎷᏏᎵᎢᎢ; ᎣᏍᏛ ᎢᏳᎾᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ Ꮎ\nᏅᏩᏙᎯᏯᏛ ᎠᏯᎡᏍᏗ ᎭᏫᏂᏗᏢ ᏣᏐᏴᎢ, ᎠᎴ ᎧᏁᏉᎨᏍᏗ ᎣᏍᏛ ᎨᏒ ᏧᏬᏚᎯ ᏓᏓᏁᎸ ᏗᏣᏤᎵᎦ.\nᎣᏣᎵᏅᏟ ᎠᎴ ᏗᏆᎵᎢ ᎨᏒ ᏅᏗᎦᎵᏍᏙᏗᎭ, ᏅᏩᏙᎯᏯᏛ ᎨᏒ ᏣᏯᎡᏍᏗ ᏂᎯ,; ᏕᎦᏛᏂ.\nᏱᎰᏩ ᎣᎦᏁᎳᏅᎯ ᎤᏤᎵ ᎠᏓᏁᎸ ᏅᏗᎦᎵᏍᏙᏗᎭ ᎣᏍᏛ ᎢᏣᎵᏍᏓᏁᏗ ᎨᏒ ᏛᎩᏲᎵ.\nᎬᏂᏳᏉ ᏂᎦᎥ ᎣᏏᏳ ᎠᎴ ᎣᏍᏛ ᎠᏓᏅᏓᏗᏍᏗ ᎨᏐ ᏗᎾᏓᏅᏟ ᏌᏉ ᏥᎮᏅᏃ ᎠᏂᎲᎢ.\nᎾᏍᎩᏯᏉ ᎤᏣᏘ ᏧᎬᏣᎶᏗ ᎠᏧᎮᎸᏒ ᏥᏚᏍᏚᏍᏟᏙᎢ, ᎾᏍᎩ ᎡᎳᏂ ᎠᎭᎮᎸᏒᎢ ᎠᎴ ᏅᎮᎧᎩᎯ ᎢᏴᏛ ᏥᏚᏣᏍᏉᎴᎢ;\nᎾᏏᎩᏯ ᎲᏰᏂ ᏅᏌᎯᎸ ᏧᎯᏌᏔᏁᎢ, (ᎠᎴ) ᎾᏍᎩᏯ ᏌᏯᏂ ᏙᏓᎸ ᏥᏚᎯᏌᏔᏁᎢ: Ꮎ Ꮏ ᏰᏃ ᏱᎰᏩ ᎣᏍᏛ ᎤᏁᏙᎢ, ᎾᏍᎩ ᎠᎵᏯᏆᏘᏍᎩ ᏂᎨᏒᎾ ᎬᏂᏛ.\nᏓᏓᎶᏂ ᎡᏉᏂ ᏚᏪᏴ ᏀᎾ ᎣᎦᏅᏅᎩ; ᎥᎥ, ᏙᎦᏠᏱᎸᎩ ᏌᏯᏂ ᎣᎦᏅᏓᏓ.\nᏦᎩᏃᎩᏍᏙᏗ ᏙᎦᏙᏌᏓᏛᎩ ᏧᎦᎾᏍᏓᏦᎵ ᏕᏡᎬᎢ ᏀᎾ ᎠᏰᎵ ᎨᏒᎢ.\nᎪᎦᏘᎾᏫᏛᏛᏰᏃ ᎭᎿ ᎥᎪᎩᏔᏲᏎᎸ ᏦᎩᏃᎩᏍᏗᏱ; ᎠᎴ ᎾᏍᎩ ᎪᎩᎩᎵᏲᎢᏍᏔᏅᎯ ᎤᏙᎵᏍᏙᏍᏛ ᎣᎦᏛᎠnᏓᏗᏍᏗᏱ ᎥᎪᎩᏔᏲᏎᎲᎩ, [ᎯᎠ ᏅᎪᎩᏪᏎᎲᎩ,] ᏗᏍᎩᏃᎩᏏ ᏌᏯᏂ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏗ.\nᎦᏙ ᏱᎦᎵᏍᏙᏓ ᏱᏙᏥᏃᎩ ᏱᎰᏩ ᏧᏤᎵ ᏗᎧᏃᎩᏍᏗ ᏅᏩᎾᏓᎴ ᎤᎾᏤᎵᎪᎯ?\nᎢᏳᏃ ᏂᎯ ᏥᎷᏏᎵᎻ ᎢᎬᏴᎨᏫᏒᎭ, ᏥᎦᏘᏏ ᎠᏉᏰᏂ ᏭᏩᎨᏩ ᎠᏏᎾᏌᏅᎢ.\nᏥᏃᎪᎢ ᏫᎦᏯᎸᎩ ᏥᎣᎵ, ᎢᏳᏃ ᏂᎯ ᏂᎬᏯᏅᏓᏛᎾ ᎢᎨᏎᏍᏗ-- ᎢᏳᏃ ᏥᎷᏏᎵᎻ ᎤᏟ ᏂᏥᎸᏉᏔᏅᎾ ᎢᎨᏎᏍᏗ ᎡᏍᎦᏉ ᏄᎬᏫᏳᏒ ᎤᎵᎮᎵᏍᏗ ᎠᏆᏓnᏓᏗᏍᏗᏍᎩ.\nᏱᎰᏩ ᎩᏯᏅᏓᏓ ᎢᏓᎻ ᏧᏪᏥ ᏥᎷᏏᎵᎻ ᎤᏤᎵ ᎢᎦ ᎯᎠ ᏥᏄᏂᏪᏎᎢ, ᎢᏥᏲᏍᏓ, ᎢᏥᏲᏍᏓ ᎦᎫᏍᏓᎥ ᏩᏍᏗ.\nᏂᎯ ᏓᏓᎶᏂ ᎤᏪᏥ ᎯᎨᏴ ᏂᎯ ᎡᏣᏛᏙᏗ ᏥᎩ; ᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎨᏎᏍᏗ ᏣᎫᏴᎡᎯ ᎾᏍᎩᏯ ᏂᎯ ᏂᏍᎩᏴᏁᎸᎢ.\nᎣᏏᏳ ᎢᏳᎵᏍᏓᏁᏗ ᎾᏍᎩ Ꮎ ᏗᎦᏁᏍᎩ ᏧᎾᏍᏗ ᏗᏤᏥ ᎠᎴ ᏗᎦᎸᏛᏂᏍᏗᏍᎩ ᏅᏲᎯ.\nᏱᎰᏩ, ᏂᎯ ᏍᎩᎪᎵᏰᎥᎯ, ᎠᎴ ᏍᎩᎦᏙᎥᏒᎯ.\nᏂᎯ ᎯᎦᏔᎭ ᏥᎥᏍᎬᎢ, ᎠᎴ ᏕᎦᎴᎥᏍᎬᎢ; ᎢᏅᎯᏳ ᏔᏙᎴᎰᏍᎪ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ.\nᎯᏌᏰᎶᎪ ᎠᏇᏓᏍᏗᏱ ᎠᎴ ᎦᏂᏏᎲᏍᎬᎢ, ᎠᎴ ᎯᎦᏔᎯᏳ ᏂᎦᎥ ᏓᎩᏅᏅᎢ,\nᎥᏝᏰᏃ ᏌᏉ ᎢᎧᏁᏨᎯ ᏥᏃᎪ ᏯᏓᎴᎲᏍᎪᎢ, ᎠᏎ ᎬᏂᏳᏉ, ᏱᎰᏩ, ᎯᎦᏔᎭ ᎾᏍᎩ ᏂᎦᏗᏳ.\nᏂᎯ ᏍᏆᎵᏍᏚᏔᏅ ᎣᏂᏗᏢ ᎠᎴ ᎢᎬᏱᏗᏢ, ᎠᎴ ᎢᏍᏆᏏᏔᏛ.\nᎾᏍᎩ ᎯᎠ ᏥᏄᏍᏗ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒ ᎠᎩᎶᏒᏍᏓᏁᎭ ᎤᏍᏆᏂᎪᏗᏳ ᎨᏒᎢ; ᎦᎸᎳᏗᏳᏉ, ᎥᏝᏰᎵ ᏫᏴᎦᏥᎷᎩ.\nᎭᏢ ᏮᏓᏥᎶᏏ ᏓᏥᏯᏓᏅᎡᎵ ᏣᏓᏅᏙ? ᎭᏢᎨ ᏮᏓᏥᎶᏏ ᏓᏥᏯᎵᏗᎡᎵ ᏣᎧᏛᎢ.\nᎢᏳᏃ ᎦᎸᎳᏗ ᏫᏱᎾᏆᏛᏁᏔᏅ, ᏀᎾ ᎮᏙᎭ; ᎢᏳᏃ ᏨᏍᎩᏃ ᎠqᎠᏂᏏᏗᏱ ᏱᎾᏋᏁᎸ, ᎬᏂᏳᏉ ᏀᎾ ᎮᏙᎭ.\nᎢᏳᏃ ᎢᎦ ᏚᎸᏌᏛ ᏍᎩᏍᏓᏩᏕᏅ, ᎠᎺᏉᎯᏃ ᏫᏚᎵᏍᏘᏂᎸ ᏱᏩᏆᏕᏅ,\nᏀᎾ ᎾᏍᏉ ᏦᏰᏂ ᏱᎠᏆᏘᏂᏙᎭ, ᎠᎴ ᎯᎦᏘᏏ ᏦᏰᏂ ᏱᎠᏆᏘᏂᏙᎭ, ᎠᎴ ᎯᎦᏘᏏ ᏦᏰᏂ ᏱᏙᏍᎩᏂᏴᏗ.\nᎢᏳ ᎠᎴ ᎯᎠ ᏱᎾᎩᏪᏒ, ᎠᏎ ᎤᎵᏏᎩ ᏛᏊᏢᏂ; ᎾᏍᏉ ᏒᏃᏱ ᎢᎦᎯᏳ ᏱᎩ ᎨᏙᎲᎢ.\nᎥᎥ, ᎤᎵᏏᎩ ᎥᏝ ᏱᏣᎵᏏᎲᏍᏓᏁᎭ; ᏒᏃᏱᏍᎩᏂ ᏚᎸᏌᏓ ᎾᏍᎩᏯ ᎢᎦ ᏥᏚᎸᏌᏙᎢ; ᎤᎵᏏᎩ ᎠᎴ ᎢᎦᎦᏘ ᎤᏠᏱᏉ ᏗᏣᎧᏃᏗᏱ.\nᏂᎯ ᏦᏢᏅᎯ ᎠᎩᎾᏫ; ᏂᎯ ᏍᏊᏢᏅᎩ ᎡᏥ ᎤᏍᏉᎵᏱ.\nᏓᎬᎸᏉᏔᏂ ᏂᎯ, ᎤᎾᏰᎯᏍᏗᏳᏰᏃ ᎠᎴ ᎤᏍᏆᏂᎪᏗᏳ ᎾᏆᏍᏗ ᎠᏆᏙᏢᏒᎢ; ᎤᏍᏆᏂᎪᏗᏳ ᏗᏣᎸᏫᏍᏓᏁᏗ ᎨᏒᎢ; ᎾᏍᎩ ᏄᏍᏛ ᎣᏏᏳ ᎠgᏔh ᎠᏆᏓᏅᏙ.\nᏥᏰᎸ ᎥᏝ ᏰᏨᎦᎳᏁᎴᎢ, ᏀᎢᏳ ᎤᏕᎵᏒ ᎠᏆᏚᏴᏅ, ᎠᎴ ᎤᏍᏆᏂᎪᏗ ᏅᏋᏁᎸ ᎥᏉᏢᏅ ᎡᎳᏗ ᎨᏒ ᏓᏙᎯ.\nᎯᎪᏩᏘᏍᎨ ᎦᏚᏴᎲᏍᎬᎢ, ᎠᎴ ᏣᏤᎵᎪᎯ ᎪᏪᎵᎯ ᏂᎦᎥ ᎪᏪᎸᎩ, ᎾᏍᎩᏃ ᎠᎵᏰᎢᎵᏒ ᎤᏙᏢᏁᎢ, ᏀᎢᏳ ᎠᏏ ᎪᎱᏍᏗ ᏄᏙᏢᏒᎾ ᎨᏎᎢ.\nᏂᎦᎥ ᎾᏍᏉ ᎦᎸᏉᏗᏳ ᎠᎩᏰᎸᎭ ᏂᎯ ᎭᏓᏅᏖᏍᎬ ᏣᏁᎳᏅᎯ! ᏄᏧᏈᏍᏗ ᏂᎦᎵᏍᏗᎭ ᏂᏓᏛ ᏗᏎᎰᏅᎯ ᎨᏒᎢ!\nᎢᏳᏃ ᏱᏓᏆᏎᎸ ᎤᏟ ᏂᎦᎦ ᎡᏍᎦᏉ ᏃᏳ ᏂᎦᎥᎢ; ᏥᏰᎩᏃ ᎩᎳᎯ ᏂᎯ ᎢᏁᏙᎭ.\nᏣᏁᎳᏅᎯ ᎠᏎ ᏘᎵ ᎠᏍᎦᎾᎢ; ᎾᏍᎩᏃ ᎢᏳᏍᏗ ᏍᎩᏯᏓᏅᏏ ᎢᏥᏍᎦᏯ ᎢᏥᎩᎬᎭᎢ.\nᎨᏣᏁᎢᏍᏗᏍᎬᏰᏃ ᎤᏲ ᎠᏂᏬᏂᎭ, ᎨᏣᏍᎦᎩᏃ ᎠᏎᏉ ᎠᏂᏁᎢᏍᏗᎭ ᏕᏣᏙᎥᎢ.\nᏱᎰᏩ, ᏝᏍᎪ ᏱᎦᏥᏍᎦᎦ ᏂᎯ ᎨᏣᏍᎦᎩ? ᎠᎴ ᏝᏍᎪ ᎤᏲ ᏯᏆᏓᏅᏓᏗᏍᏗᎭ ᎦᏥᏯᏓᏅᏛᏗ ᏗᎨᏣᎦᏘᎴᎩ ᏥᎩ?\nᎤᏣᏔᏅᎯ ᎦᏥᏂᏆᏘᎭ; ᎬᎩᏍᏕᎩ ᎦᏥᏰᎸᎠ.\nᏍᎩᎪᎵᏯ, ᏣᏁᎳᏅᎯ, ᎠᎴ ᎭᏙᎴᎰᎯ ᏄᏍᏛ ᎠᎩᎾᏫ; ᏍᏆᎦᏔ ᎠᎴ ᎭᏙᎴᎰᎢ ᏄᏍᏛ ᎦᏓᏅᏖᏍᎬᎢ;\nᎠᎴ ᎭᎦᏔ ᏥᎪᏃ ᎤᏲ ᎠᏓᏅᏓᏗᏍᏗ ᎦᏅᏅ ᏥᏍᏓᏩᏕᎦ, ᎠᎴ ᏍᏆᏘᏄᎦ ᎬᏂᏛ ᎦᏅᏅᎢ.\nᏄᏍᏛ ᎤᎪᎲ ᎢᏌᏯ, ᎡᎼᏏ ᎤᏪᏥ, ᎾᏍᎩ ᎤᎪᎲ ᎢᏳᎵᏍᏙᏗᏱ, ᎠᎴ ᏥᎷᏏᎵᎻ, ᎾᎯᏳ ᎣᏌᏯ, ᏦᏓᎻ, ᎡᎭᏏ ᎮᏏᎦᏯᏃ ᎤᏂᎬᏫᏳᎯ ᏥᎨᏒ ᏧᏗᏱ.\nᎭᏛᎬᎦ ᏂᎯ ᎦᎸᎶᎢ; ᎭᏛᏓᏍᏓ ᏂᎯ ᎡᎶᎯ; ᏱᎰᏳᏕᏃ ᎤᏁᏨ; ᏕᎨᎶᎸ ᎠᎴ ᏕᎦᏛᎯᏍᏔᏅ ᏗᏂᎵᏲᎵ, ᎾᏍᎩᏃ ᎢᎬᏆᏡᏔᏅᏉ.\nᏩᎦ ᎢᎪᎵᎪ ᎤᎾᏝᎢ, ᎠᎴ ᏐᏈᎵᏗᎦᎵᎠᏅᎯᏛ ᎠᎦᏔᎰ ᎤᎾᏝᎢ ᏗᎨᎳᏍᏗᏱ ᎤᏬᏢᎡᎢ; ᎢᏏᎵᏍᎩᏂ ᎥᏝ ᏯᎦᏔᎭ, ᏗᏆᏤᎵ ᏴᏫ ᎥᏝ ᏯᎾᏓᏅᏖᎭ.\nᎤᏲᏍᏛᏉ, ᎠᏂᏍᎦᎾ ᎤᎾᏓᏤᎵᏛ ᎠᏁᎲᎢ! ᏴᏫ ᎦᎨᏛ ᎠᏍᎦᏂ ᏗᎾᎵᏎᎯ! ᏴᏫ ᎤᏲ ᏧᏂᎸᏫᏍᏓᏁᎯ! ᏅᏩᎾᏓᎴ ᏗᏂᏲᏍᏗᏍᎩ ᏴᏫ! ᎤᎾᏕᏨ ᏱᎰᏩ, ᎤᏂᏍᎦᏨ Ꮎ ᎦᎸᏉᏗᏳ ᎢᏏᎵ ᎤᎾᏤᎵᎦ, ᎬᏩᏕᏨ ᎤᎾᏏᏁᏅ.\nᎦᏙᏃ ᎠᏏ ᏱᎡᏨᏂᎭ? ᎤᏟᏉ ᎢᏴᏛ ᏴᏣᎴᏲᏨ. ᏂᎬᎢ ᎠᏍᎪᎵ ᎤᏢᎦ, ᏂᎬᎢ ᎤᎾᏫ ᎤᎸᏕᎯᎭ.\nᎤᎳᏏᏕᏂ ᏅᏓᏳᏓᎴᏅᏛ ᎠᏍᎪᎵ ᏩᏍᏘ ᎥᏝ ᏳᏓᏓᎳ ᎪᎱᏍᏗ ᏄᏍᏛᎾ, ᏓᏥᏐᏅᏅᏉᏍᎩᏂ, ᎠᎴ ᏓᏥᏂᏆᎶᏔᏅᎢ,ᎠᎴ ᏕᎦᏬᏍᎬᎢ ᎤᏩᏒᎯᏳ; ᎥᏝ ᏗᏍᏚᏅᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᏗᎦᎸᎸᎯ ᏱᎩ, ᎥᏝ ᎠᎴ ᎠᏠᏁᏗ ᏩᎾᎨ ᎢᏗᎬᏁᏔᏅᎯ ᏱᎩ.\nᎢᏣᏤᎵᎪᎯ ᎣᏍᏛᎯ. ᎢᎬᏁᎸᎯ: ᏕᏥᏚᎲ ᏗᎪᎲᏍᏔᎯ; ᎦᏓ ᎢᏥᎲ ᏅᏩᎾᏓᎴ ᏴᏫ ᏕᏥᎧᏅ ᎠᏂᏒᎲᏍᎦ, ᎠᎴ ᎣᏍᏛᎯ ᎢᎬᏁᎸᎯ, ᎾᏍᎩᏯ ᏅᏩᎾᏓᎴ ᏴᏫ ᏥᏚᏂᎷᏆᏗᏅᏐᎢ.\nᏌᏯᏂᏃ ᎤᏪᏥ ᎠᎴ ᎠᎬᏕᏨ ᎾᏍᎩᏯ ᎦᎵᏦᏛ ᏖᎸᎳᏗ ᏓᏫᏒ ᏣᏅᏕᎪᎢ, ᎠᎴ ᎾᏍᎩᏯ ᎦᎵᏦᏛ ᎦᎦᎹ ᏓᏫᏒ ᏥᎦᎵᏦᏙ ᏣᏅᏕᎪᎢ, ᎠᎴ ᎦᏚᎲ ᏧᎾᏚᏫᏍᏔᏅᎯ ᏥᎨᏐ ᎾᏍᎩᏯᎢ.\nᎢᏳᏃ ᏱᎰᏩ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎠᏂᎦᏲᎵ ᏂᏗᎩᏃᎯᏰᎸᎾ ᏱᎨᏎᎢ, ᏐᏓᎻ ᏥᏄᎵᏍᏓᏁᎴ ᏱᏂᎦᎵᏍᏓᏁᎴᎢ, ᎠᎴ ᎪᎹᎵ ᏥᏄᎵᏍᏓᏁᎴ ᏱᏂᎦᎵᏍᏓᎠᏁᎴᎢ.\nᎢᏣᏛᎬᎦ ᎧᏃᎮᏛ ᏱᎰᏩ ᎤᏤᎵᎦ, ᏂᎯ ᏂᏥᎬᏫᏳᏌᏕᎩ ᏐᏓᎻ: ᎢᏣᏛᏓᏍᏓ ᏗᎧᎿᏩᏛᏍᏗ ᎢᎦᏁᎳᏅᎯ. ᎤᏤᎵᎦ, ᏂᎯ ᎪᎹᎵ ᎢᏤᎯ!\nᎦᏙ ᏗᏜᏙᏗ ᎯᎠ ᎤᏂᏣᏘ ᏗᏥᎸᎯ, ᎠᏗ ᏱᎰᏩ? ᏓᎩᏯᏪᎦ ᎠᏫ ᏧᎾᎪᏅᏍᏓᎵ ᏕᏣᎵᏍᎪᎸᏗᏍᎬᎢ ᎠᎴ ᎦᎵᏦᏅ ᏗᎦᎵᏦᏔᏅᎯ ᎢᏣᎵᏍᎪᎸᏗᏍᎬᎢ. ᎥᏝ ᎠᎴ ᏱᏓᎩᎸᏉᏗ ᎤᏂᎩᎬ ᏩᎦ ᏧᎾᎪᏅᏍᏓᎵ, ᎠᎴ ᎤᎾᏕᏘᏴᏛ ᎤᏂᏃᏕᎾ, ᎠᎴ ᏧᎾᎪᏅᏍᏓᎵ ᏗᏂᎭᏄᎸᎯ ᎠᏫ.\nᎢᏳᏃ ᎠᏆᎧᏛ ᎢᎬᏱᏗᏢ ᎢᏥᎷᎩ, ᎦᎪ ᎢᏥᏁᏤᎰ ᎾᏍᎩ ᎢᏣᏛᏁᏗᏱ ᏗᏣᎳᏏᏗᏱ ᏚᏜᏅᏛ ᎠᏆᏤᎵ ᏗᎦᎳᏫᎢᏍᏗᏱ.\nᏞᏍᏗ ᎿᏉ ᎠᏎᏉᏉ ᎠᎵᏍᎪᎸᏙᏗ ᎢᏥᏲᎸᎩ; ᎤᎦᎾᏍᏛ ᎦᏩᏒᎩ ᎠᏜ ᏥᏂᏆᏘᎭᎢᏤ ᏅᏉ ᏓᏢᎥᏍᎬᎢ ᎠᎴ ᎤᎾ- ᏙᏓᏆᏍᎬ ᎢᎦ, ᎠᎴ ᏗᎦᎳᏫᏗᏍᏗᏱ ᎨᏒᎢ, ᎥᏝ ᏰᎵ ᏱᏂᎬᏂᎠ ᎤᏁᎳᎩ ᎠᏇᎵᏍᏗᏱ; ᎠᏍᎦᏂᏉ, ᎾᏍᏉ ᎦᎸᏉᏗ ᏕᏥᎳᏫᏦᎯᎲᎢ.\nᎢᏤ ᏓᏢᎥᏍᎬ ᏅᏙ ᏕᏥᎳᏫᎬᎢ, ᎠᎴ ᏗᏥᎳᏫᎢᏍᏗᏱ ᏓᏍᏆᎸᎮᎬᎢ ᎠᏆᏓᏅᏙ ᏕᏂᏆᏘᎭ; ᎬᏆᏕᏯᏙᏗᏉ, ᎠᎴ ᏓᎩᏯᏪᎦ ᏥᏱ ᏙᎲᎢ.\nᎠᎴ ᏕᏣᏐᎸᏛᏍᎨᏍᏗ ᏙᏓᏨᏴᏍᎦᎳᏁᎵ ᏗᏥᎦᏙᎵ; ᎥᎥ ᎾᏍᏉ ᎤᏩᎫᏘᎶᏛ ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ, ᎠᏎ ᎥᏝ ᏴᎦᎦᏛᎬᎦ; ᏗᏦᏰᏂ ᎩᎬ ᏓᎧᎵᎠ.\nᏗᏣᏙᏑᎵ, ᎢᏣᏓᏅᎦᎸ, ᎢᏥᎲᎾ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ ᎠᏆᎧᏛ ᎢᎬᏱᏗᏢ: ᎢᏥᏑᎵᎪᎢ ᎤᏲ ᏕᏥᎸᏫᏍᏓᏁᎲᎢ:\nᎢᏣᏕᎶᏆ ᎣᏍᏛ ᎢᏣᏛᏁᏗᏱ; ᎢᏣᎦᏌᏯᏍᏓ ᏚᏳᎪᏛ ᎨᏒᎢ, ᎡᏥᏍᏕᎸ ᎠᏍᏓᏯ ᎢᏯᎬᎾᏕᎩ; ᏚᏳᎪᏛ ᏤᏧᎪᏓᏏ ᎤᏓᏂᏯᏛ; ᎡᏥᏬᏂᎯᏏ ᎤᏬᏑᎶᏨᎯ.\nᎧ. ᎢᏓᎵᏃᎲᎵᏲᎪ ᎠᏗ ᏱᎰᏩ; ᎾᏍᏉ ᎩᎦᎨ ᏗᏑᏫᏍᏗ ᎢᎦᎦᏛ ᎨᏎᏍᏗ ᎢᏥᏍᎦᏅᏨᎢ, ᎥᏃᏥ ᏄᏁᎩᏴ ᏄᏁᎩᏰᏍᏗ; ᎾᏍᏉ ᎩᎦᎨᎢᏳ ᎨᏎᏍᏗ ᎩᎦᎨ ᏗᏑᏫᏍᏗ ᎾᏍᎩᏯᎢ, ᎤᏩᏅ ᎾᏍᎩᏯ ᎨᏎᏍᏗ.\nᎢᏳᏃ ᎣᏏᏳ ᎢᏥᏰᎸᏎᏍᏗ ᎠᎴ ᎢᏦ- ᎯᏳᎲᏍᎨᏍᏗ, ᎣᏒᏂ ᎢᏣᎵᏍᏓᏴᏙᏗ\nᎢᏳᏍᎩᏂᏃ ᎢᏥᏲᎢᏎᎸᎭ ᎠᎴ ᏙᏥᎦᏘᎴᏒᎭ, ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᎬᏗ ᎡᏥᏒᎲᏍᏗ ᎨᏎᏍᏗ; ᏱᎰᏩᏰᏃ ᎠᎰᎵ ᎾᏍᎩ ᏄᏪᏒ.\nᎤᏲᏍᏛᏉ, ᏚᏳᎪᏛ  ᎢᏯᏛᏁᎯ ᏥᎨᏒ ᎦᏚᎲ ᎤᏁᎫᏥᏛ ᏂᎤᎵᏍᏔᏅ! ᎤᎧᎵᏨᎯ ᎨᏒᎩ ᏚᏳᎪᏛ ᏗᎫᎪᏙᏗ ᎨᏒᎢ! ᏚᏳᎪᏛ ᎨᏒ ᎾᎿ ᎡᎲᎩ! ᎪᎯᏍᎩᏂ  ᏗᎾᏓᎯᎯ [ᎾᎿ  ᎠᏁᎭ!]\nᎠᏕᎸ ᎢᎶᏤᎵᎦ ᎤᏲᏨ, ᏅᏬᏘ-ᎩᏚᎨ ᎢᏣᏤᎵᎦ ᎠᎹ ᎤᏓᏑᏯ.\nᏗᏣᏤᎵᎦ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏄᏃᎯᏨᏓᏛᎾ ᏄᎾᎵᏍᏔᏅ, ᎠᎴ ᎠᏂᏃᏍᎩᏍᎩ ᎤᎾᏖᏆᎶᎯ; ᏂᎦᏗᏳ ᎤᏂᎸᏉᏗ ᎨᏥᏁᏗ ᎨᏂᎢ, ᎠᎴ ᎠᏂᏍᏓᏩᏗᏙ ᎨᎦᎫᏴᏓᏁᏗ ᎨᏒᎢ; ᎥᏝ ᏚᏳᎪᏛ ᏱᏓᏄᎪᏓᏁᎭ ᎤᎾᏓᏂᏯᏛ, ᎥᏝ ᎠᎴ ᎤᏬᏑᎶᏨᎯ ᎤᏤᎵ ᎠᏱᎵᏓᏍᏗ ᎬᏩᏂᎩᏍᏗ ᏱᎩ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎯᎠ ᏂᎦᏪ ᎤᎬᏫᏳᎯ ᏱᎰᏩ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎤᎵᏂᎩᏛ ᎢᏏᎵ ᎤᎾᏤᎵᎦ, Ꭷ, ᏙᎯᏉ ᏓᎦᏓᏅᏓᏗ ᎦᏥᏯᏓᏅᏖᏍᎬ ᎬᏆᏡᏗᏍᎩ, ᎠᎴ ᏓᎦᏥᏯᏞᏤᎵ ᎬᎩᏍᎦᎩ.\nᎠᏉᏰᏂᏃ ᏂᎯ ᎢᏤᎲ ᎢᏗᏢ ᏅᏓᎬᏁᎵ, ᎠᎴ ᏓᎬᏴᎾᏬᏔᏂ ᎠᎴ ᏓᏥᎴᏐᏂ ᏂᎦᏛ ᎤᏲ ᎤᏓᏑᏴᎢ, ᎠᎴ ᏂᎦᏛ ᎬᎾᏬᏍᎩ ᏣᏤᎵ ᏓᏥᎴᏐᏂ.\nᎠᎴ ᏙᏛᏨᏴᎧᏁᎵ ᏗᏄᎪᏗᏍᎩ ᏗᏣᏤᎵᎦ ᎾᏍᎩᏯ ᎢᎬᏱᏱ ᏥᏄᎾᏍᏛᎢ, ᎠᎴ ᏄᏂᎬᏫᏳᏌᏕᎩ ᏗᏣᏤᎵᎦ ᎾᏍᎩᏯ ᏗᏓᎴᏂᏍᎬ ᏥᏄᎾᏍᏛᎢ: ᎿᏉᏃ ᎯᎠ ᏁᏣᏪᏎᎮᏍᏗ, ᎣᏍᏛ ᏗᎧᎿᏩᏕᎩ ᎦᏚᎲᎢ, ᏚᏨᎪᏛ ᎢᏯᏛᏁᎯ. ᎦᏚᎲᎢ.\nᏌᏯᏂ ᏚᏳᎪᏛ ᎨᏒ ᎠᎦᎫᏴᏙᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎾᏍᎩ ᏧᏤᎵ ᏅᏓᏳᎾᏨᏟᏛ ᏚᏳᎪᏛ ᎢᏯᏛᏁᏗ ᎨᏒᎢ.\nᎨᏥᏛᏙᏗᏃ ᎨᏒ (ᎤᏁᎳᏅᎯ) ᎠᎾᏡᏗᏍᎩ ᎠᎴ ᎠᏂᏍᎦᎾ ᎢᏧᎳᎭ ᎨᏎᏍᏗ, ᎠᎴ ᏱᎰᏩ ᎠᏅᏕᎩ ᎨᏥᏒᎲᏍᏗ ᎨᏎᏍᏗ.\nᏓᎾᏕᎰᏍᎨᏍᏗᏰᏃ ᏗᏓᏯ ᏕᏡᎬ ᎾᏍᎩ ᏥᏕᏣᏚᎵᏍᎬᎢ, ᎠᎴ ᏙᏓᏣᏕᎰᏏ ᏗᏫᏒᏗᏱ ᎾᏍᎩ ᎣᏏᏳ ᏥᏕᏥᏰᎸᏒᎩ.\nᎠᏓᏯᏃ ᏡᎬ ᏕᏣᏤᎴᏍᏗ ᎾᏍᎩ ᏚᎦᏄᏓᏛ ᏥᏕᎧᏴᏍᎪᎢ, ᎠᎴ ᎠᏫᏒᏗᏱ ᏕᏣᏤᎴᏍᏗ ᎠᎹ ᏂᎦᏁᎲᎾ ᏥᎨᏐᎢ.\nᎤᎵᏂᎩᏛᏃ ᎠᏍᎦᏯ ᏙᎴᏛ ᏓᏤᎴᏍᏗ, ᎾᏍᎩᏃ ᎤᏬᏴᏅᎯ ᎠᏥᎸ ᎤᏔᏍᎩᏛ ᏓᏤ- ᎴᏍᏗ, ᎠᎴ ᎢᏧᎳ ᎢᏧᎳᎭ ᎤᎾᎪᎲᏍᏗ ᎨᏎᏍᏗ, ᎥᏝ ᎠᎴ ᎩᎶ ᏧᏩᏜᏗᏍᏗ ᏱᎨᏎᏍᏗ.\nᎧᏃᎮᏍᎩ ᎢᏌᏯ ᏒᎼᏏ ᎤᏪᏥ ᎤᎪᎲ ᎢᏳᎵᏍᏙᏗᏱ ᏧᏗᏱ ᎠᎴ ᏥᎷᏏᎵᎻ.\nᎯᎠᏃ ᏅᏓᎦᎵᏍᏔᏂ ᎯᎸᎯᏳᎢ, ᎾᏍᎩ ᎣᏓᎸ ᏱᎰᏩ ᎤᏤᎵ ᎠᏓᏁᎸ ᎦᎧᎲᎢ ᎾᏍᎩ ᎠᏍᏓᏱᏗᏍᏗ ᎨᏎᏍᏗ ᏙᏓᎸ ᎦᏚᎢ, ᎠᎴ ᎠᏌᎳᏙᏗ ᎨᏎᏍᏗ ᏚᏌᎯᎸ ᎦᎸᎳᏗᏢ: ᏧᎾᏓᎴᏅᏛᏃ ᏴᏫ ᎾᎿ ᏓᏂᎳᏫᏦᎯᎮᏍᏗ.\nᎤᏂᏣᏘᏃ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᏛᏁᏏ ᎠᎴ ᎯᎠ ᏅᏛᏂᏪᏏ; Ꭷ, ᎢᏕᎾ ᎢᏗᎿᎷᎯ ᏱᎰᏩ ᎤᏤᎵ ᎣᏓᎸᎢ. ᏫᏗᎷᎩ ᎠᏓᏁᎸ ᎤᏁᎳᏅᎯ ᎤᏤᎵᎦ, ᎾᏍᎩ ᏤᎦᏈ ᎤᏤᎵ ᎤᏁᎳᏅᎯ. ᎾᏍᎩᏃ ᏓᎨᏲᏂ ᏚᏅᏅᎢ, ᎾᏍᎩᏃ ᏕᎤᏅᏅ ᏓᏕᏙᎵ; ᏌᏯᏂᏰᏃ ᏅᏓᏳᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ ᏗᎧᎿᏩᏛᏍᏗ, ᎧᏃᎮᏛᏃ ᏱᎰᏩ ᎤᏤᎵ ᏥᎷᏏᎵᎻ ᏅᏓᏳᎾᏄᎪᎢᏍᏗ ᎨᏎᏍᏗ.\nᎾᏍᎩᏃ ᏙᏓᎫᎪᏓᏁᎵ ᏧᎾᏓᎴᏅᏛ ᏴᏫ ᎠᎴ ᎤᏂᏣᏘ ᏴᏫ ᏙᏛᎬᏍᎪᎸᏂ; ᎾᏍᎩᏃ ᎠᏰᎳᏍᏗ ᎦᏅᎯᏛ ᏙᏛᏂᏅᏆᎶᎢ ᏗᎦᏓᎷᎪᏗ ᏙᏛᏃᏢᏔᏂ; ᏗᏓᏘᏍᏗᏃ ᎠᏰᎳᏍᏗᏗᎬᏂᎦᎸᏗ ᏙᏛᏃᏢᏔᏂ; ᏑᎾᏓᎴᎩ ᏴᏫ ᎥᏝ ᎠᏰᏕᎳᏍᏗᎦᏅᎯᏛ ᏧᏂᏴᏗ ᏧᏂᎦᏘᎸᏍᏗ ᏱᎨᏎᏍᏗ ᏅᏩᎾᏓᎴ ᏴᏫ, ᎥᏝ ᎠᎴ ᏔᎵᏁ ᎤᏂᎦᏙᎥᎯᏍᏗ ᏱᎨᏎᏍᏗ ᏓᎿᏩ.\n[Ꭷ!] Ꭶ. ᏤᎦᏈ ᏏᏓᏁᎸᎯ ᎨᏒᎢ, ᎢᏕᎾ, ᏱᎰᏩ ᎦᎸᏌᏛ ᎢᏓᎢᏎᏍᏗ.\nᏕᎩᏲᏒᏰᏃ ᏗᏣᏤᎵ ᏴᏫ, ᏤᎦᏡ ᏏᏓᏁᎸᎯ ᎨᏒᎢ ᏅᏧᎵᏍᏙᏔᏅ ᎤᏂᏣᏘ ᏚᏂᎧᎲ ᏗᎧᎸᎬ ᎢᏗᏢ ᏅᏓᏳᎾᏓᎴᏅᎯ, ᎠᎴ ᏗᎾ ᏙᏂᏍᎩ ᎠᏂᏈᎵᏍᏗᏂ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎣᏏᏳ ᏓᏂᏰᎸᏍᎦ ᏅᏩᎾᏓᎴ ᏴᏫ ᏧᏁᏥ.\nᎤᎾᏤᎵᎪᎯ ᎾᏍᏉ ᎠᎧᎵᏬᎯ ᎠᏕᎸ ᎤᏁᎬ ᎠᎴ ᎠᏕᎸ ᏓᎶᏂᎨᎢ, ᎥᏝ ᎠᎴ ᏱᏩᏍᏔ ᏧᎬᏩᎶᏗ ᎤᏂᎿᎥᎢ; ᎤᎾᏤᎵᎪᎯ ᎾᏍᏉ. ᎠᎧᎵᏬᎯ ᏐᏈᎵ ᏚᏂᎧᎲᎢ, ᎥᏝ ᎠᎴ ᏱᏩᏍᏔ ᏓᏆᎴᎷ ᏚᏂᎲᎢ.\nᎤᎾᏤᎵᎪᎯ ᎾᏍᏉ ᎠᎧᎵᏬᎯ ᎤᏁᎳᏅᎯ. ᏗᏰᎸᎯ ᏚᏂᎧᎲᎢ; ᎤᏅᏒ ᏧᏃᏰᏂ ᏧᏃᏢᏔᏅᎯ ᎡᎳᏗ ᏂᏓᎾᏛᏁᎭ, ᎤᏅᏒ ᏓᏂᏰᏌᏛ ᏧᏅᏔᏅᎯ ᏧᏃᏢᏅᎯ.\nᎡᏍᎦ ᎤᏬᎭᏛ ᎠᏍᎦᏯ ᎡᎳᏗ ᎾᏛᏁᎭ, ᎠᎴ ᎠᏥᎸᏉᏗ ᎠᏍᎦᏯ ᎠᏓᏙᎵᏍᏗᎭ; ᎥᏝᏃ ᏴᏓᎩᏯᏙᎵᏥ.\nᏅᏲᎯ ᎯᏴᎭ, ᎠᎴ ᎭᏗᏍᎦᎸᎦ ᎦᏙᎯ, ᎯᏯᏓᏅᏏ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏔᏅᎯ. ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ.\nᏓᎧᎿᎿᏂᏙᎲ ᎤᏢᏉᏗ ᏴᏫ ᎡᎳᏗ ᎢᎬᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎾᏢᏉᏗᏳ ᎨᏒ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᎢᎬᏁᏗ ᎨᏎᏍᏗ; ᏱᎰᏩᏃ ᎤᏩᏒᎯᏳ ᎠᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ.\nᏱᎰᏩᏰᏃ ᎤᏂᏣᏘ ᏗᏘᏂᏙᎯ ᎤᏤᎵ ᎢᎦ ᏓᏳᎾᏛᏡᏂ ᏂᎦᏗᏳ ᎤᎾᏢᏉᏗ ᎠᎴ ᎤᎾᏓᎸᏉᏗ, ᎠᎴ ᏂᎦᏗᏳ ᎨᏥᏌᎳᏗ, ᎾᏍᎩᏃ ᎡᎳᏗ ᎢᎨᎬᏁᏗ ᎨᏎᏍᏗ;\nᎠᎴ ᏂᎦᏗᏳ ᎠᏥᎾ ᏕᏡᎬ ᎴᏈᏅ ᎤᏓᎸ ᎢᏅᎢᏗᎦᏘ ᎠᎴ ᏧᎵᏌᎳᏗ ᏙᏛᏛᏔᏂ, ᎠᎴ ᏂᎦᏗᏳ ᏔᎳ ᏕᏡᎬ ᏇᏌᏂ;\nᎠᎴ ᏂᎦᏗᏳ ᎢᏅ-ᎢᏗᎦᏘ ᏙᏓᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᎢᏅ-ᎢᏗᎦᏘ ᏚᏌᎯᎸᎢ, ᏙᏛᏛᏔᏂ;\nᎠᎴ ᏂᎦᏗᏳ ᎢᏅ-ᎢᏗᎦᏘ ᏓᏓᏁᎸᎢ, ᎠᎴ ᏂᎦᏗᏳ ᏗᎬᏓᏬᎯᎳᏗᏍᏗ ᏂᎨᏒᎾ ᏓᏐᏴᎢ ᏙᏛᏡᏔᏂ;\nᎠᎴ ᏂᎦᏗᏳ ᏥᏳ-ᏧᏛᎾ ᏓᏏᏏ ᏤᎯ, ᎠᎴ ᏂᎦᏗᏳ ᎤᏬᏚᎯ ᏗᎧᏃᏗᏱ ᏙᏛᏡᏔᏂ.\nᎤᎵᏌᎳᏗᏳ ᎨᏒ ᏴᏫ ᎡᎳᏗ ᎢᎬ-ᏁᏗ ᎨᏎᏍᏗ, ᎠᎴ ᎤᎾᏢᏉᏗᏳ ᎨᏒ ᎠᏂᏍᎦᏯ ᎡᎳᏗ ᎢᎬᏁᏗ ᎨᏎᏍᏗ; ᏱᎰᏩᏃ ᎤᏩᏒᎯᏳ ᎠᏥᎸᏉᏙᏗ ᎨᏎᏍᏗ ᎾᎯᏳ ᎢᎦ.\nᎤᏁᎳᏅᎯᏃ ᏗᏰᎸᎯ ᏛᎾᎵᏛᏔᏂ.\nᏓᏂᏴᎯᎮᏍᏗᏃ ᏚᏍᏓᎦᎸ ᏅᏲᎯ, ᎠᎴ ᎦᏙᎯ ᏓᏔᎴᏒᎢ, ᎠᎾᏓᏅᎡᎮᏍᏗ ᎤᎾᏰᎯ- ᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏔᏅᎯ ᎠᏂᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᎯᏳ ᏓᎴᏅᎭ ᎤᏣᏘ ᎤᏍᎦᏍᏓᏁᏗᏱ ᎡᎶᎯ.\nᎾᎯᏳᏃ ᎢᎦ ᎠᏍᎦᏯ ᏙᏓᏳᏕᏏ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᏕᎸ ᎤᏁᎬ ᏗᎪᏢᏔᏅᎯ, ᎠᎴ ᎤᏁᎳᏅᎯ ᏗᏰᎸᎯ ᎠᏕᎸ ᏓᎶᏂᎨ ᏗᎪᏢᏔᏅᎯ, ᎾᏍᎩ ᏧᎾᏓᏙᎵᏍᏓᏁᏗ ᏥᎦᏃᏢᏅ, ᏙᏛᏂᏲᎯᏎᎵ ᏘᏁᏆ ᎠᎴ ᎣᏑᎭ:\nᏫᏚᏂᏴᏍᏗᏱ ᏚᏍᏓᎦᎸ ᏅᏲᎯ, ᎠᎴ ᏅᏲᎯ ᏚᏜᏅᏛᎢ, ᎤᎾᏓᏅᎡᏗᏱ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏘ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᎯᏳ ᏓᎴᏅᎭ ᎤᏣᏘ ᎤᏍᎦᏍᏓᏁᏗᏱ ᎡᎶᎯ.\nᏫᏚᏂᏴᏍᏗᏱ ᏚᏍᏓᎦᎸ ᏅᏲᎯ, ᎠᎴ ᏅᏲᎯ ᏚᏜᏅᏛᎢ, ᎤᎾᏓᏅᎡᏗᏱ ᎤᎾᏰᎯᏍᏗᏳ ᎨᏒ ᏱᎰᏩ, ᎠᎴ ᎤᏣᏘ ᎠᏥᎸᏉᏗᏳ ᎨᏒᎢ, ᎾᎯᏳ ᏓᎴᏅᎭ ᎤᏣᏘ ᎤᏍᎦᏍᏓᏁᏗᏱ ᎡᎶᎯ.\nᏐᎳᎹᏅ ᏕᏫ ᎤᏪᏥ, ᎢᏏᎵᏱᏃ ᎤᎬᏫᏳᎯ ᎾᏍᎩ ᏕᎬᏍᎪᎸᏅᎢ;\nᎠᎦᏔᎿᎢ ᎠᎴ ᎥᏓᏗᏕᏲᏗ ᎨᏒ ᎠᎦᏙᎥᎯᏍᏗᏱ, ᎾᏍᎩ ᎪᎵᎩ ᎧᏁᎬ ᎪᎵᏍᏗᏱ.\nᎠᎦᏔᎿᎢ ᎤᏓᏕᏲᏗ ᎨᏒ ᏗᏓᏂᎸᎢᏍᏗᏱ, ᎾᏍᎩ ᏚᏳᎪᏛ ᎢᏯᏛᏁᎵᏍᏓᏍᏗ, ᎠᎴ ᏗᎫᎪᏙᏗᏱ ᎠᎴ ᏗᎬᏩᏳᎪᏗᏯ ᎨᏒᎢ,\nᎠᏏᎾᏌᏂ ᎢᏯᏩᏁᎯ ᎾᎦᏔᎿᎥᎾ, ᎠᏫᏅᏃ ᎠᎦᏙᎥᎯᏍᏗᏯ ᎠᎴ ᎠᎵᏏᏀᎢᏍᏗᏱ ᎤᏁᎯ.\nᏛᏛᏓᏍᏔᏂ ᎠᎦᏔᎿᎢ ᎠᏍᎦᏯ, ᎠᎴ ᎠᎦᏙᎢᎯᏍᏗ ᏓᎧᏁᏉᎢ; ᎠᎴ ᎤᏬᎵᏣᏘ ᎠᏍᎦᏯ ᎠᎦᏔᎿᎢ ᏧᏬᏏᏐᏗᏱ ᏮᏛᏱᎶᎵ;\nᎦᏛᎩ ᎨᏒ ᎤᏬᎵᏍᏗᏱ, ᎠᎴ ᎾᏍᎩ ᎠᏁᏢᏙᏗᏱ, ᎾᏍᎩ ᎠᏂᎦᏔᎿᎢ ᎤᏂᏁᏨᎢ ᎠᎴ ᎾᏍᎩ ᎤᎵᏏᎩ ᏄᏂᏪᏟᏙᎸᎢ.\nᎠᎦᏙᎥᎯᏍᏗ ᎠᏓᎴᏃᏗᏍᎬᏉ ᎢᎩ ᎾᏍᎩ ᏱᎰᏩ ᎦᎾᏰᎯᏍᏗᏱ; ᎠᏎᏃ ᎠᎦᏙᎥᎯᏍᏗ ᎠᎴ ᎨᎨᏲᏗᏱ ᎠᏂᏂᏆᏘᎭ ᎤᏂᏁᎫ.\nᎠᏇᏥ, ᏣᏙᏓ ᏤᏲᎲᏍᎬ ᎭᏛᏓᏍᏓ, ᎠᎴ ᏣᏥ ᎤᏤᎵ ᏗᎧᎾᏩᎱᏍᏗ ᏞᏍᏗ ᏨᏕᏨᎩ.\nᎾᏍᎩᏰᏃ ᎯᏍᎪᎵ ᎤᎵᎶᎯ ᎪᏚᎯᏍᏗᏍᎩ ᎨᏎᏍᏗ, ᎠᎴ ᏧᏓᏕᏒᏓ ᏣᎵᏯᏣᏃᏍᏙᏗ\nᎠᏇᏥ, ᎨᏣᏍᏗᏰᏗᏍᎨᏍᏗ ᎠᏂᏍᎦᎾᎢ, ᎥᏞᏍᏗ ᏦᎯᏳᏅᎩ.\nᎯᎠ ᏂᎨᏣᏪᏎᎮᏍᏗ, Ꭷ ᎢᏕᏅ, ᎩᎬ ᎤᏤᏬᎢᏍᏗ ᎢᎩᎭᎷᎨᏍᏗ, ᎪᎱᏍᏗ ᏅᏗᎦᎵᏒᏗᏍᎬᎾ ᎾᏍᎩ ᎤᏍᎦᏅᏨᎯ ᏂᎨᏒᎾ ᎤᏕᎵᏛ ᎡᏗᏃᎵᏓ;\nᏗᏓᏂᏐᏗᏱ ᎢᎦᎦᏛ ᏗᎬᏅᏃᏛᏉ ᎾᏍᎩ ᏫᏗᎨᏗᎩᏏᏅ; ᎠᎴ ᏗᎬᏩᏂᏃᏍᏛ, ᎾᏍᎩ ᎠᏔᎴᏒ ᏩᏲᎸᏥᎯᎯ ᎾᏍᎩ ᏯᎢ;\nᏓᏗᏩᏛᎯ ᏂᎦᎥ ᎦᎸᏉᏗ ᏧᎬᏩᎶᏗ, ᎠᏓᏬᏅᏛ ᎨᏒ ᏕᏗᏁᎸ ᏙᏓᏗᎧᎵᎢᏍᏔᏂ;\nᎭᏙᏣᎸᎦ ᏍᎩᏯᏕᎳᏗᏏ, ᏧᎬᏩᎶᏗ, ᎠᏍᏆᏂᎪᏙᏗ ᏌᏉᏇ ᎢᎩᎮᏍᏗ;\nᎠᏇᏥ, ᏞᏍᏗ ᏤᏅᏒᎩ ᎾᏍᎩ ᎢᏧᎳᎭ ᎢᏤᏓᏍᏗ ᏅᏃᎯ, ᎾᏍᎩ ᎤᏂᏅᏅ ᎡᏓᏍᏗ ᏣᏀᎢᏍᏕᏍᏗ ᏣᎳᏏᏚᏂ;\nᎤᏐᏅᏉᏰᏃ ᏗᎨᏒ ᏓᏗᏝᎡᎦ ᎾᏍᎩ ᏧᎾᎳᏏᏕᏂ. ᎠᎴ ᎤᏅᏅᏥᏗ ᎩᎬ ᎤᏂᏨᏗᏱ.\nᏄᎣᏏᏛᏒᎾ ᎠᏎᏉᏉ ᎠᏌᏛᏗ ᏯᏌᏛᏁᎸ ᏂᎦᎥᏉ ᏥᏍᏆ ᎾᏍᎩ ᏓᎧᏅᎢ,\nᎾᏍᎩᏃ ᎤᎲᏒᏉ ᎤᏂᎩᎬ ᎠᏂᎭᎷᎥᏍᎦ ᎤᏅᏒᏉ ᏓᏅᏅ ᏧᎦᏘᎴᏍᎩ ᎤᏕᎵᏒ ᎠᎾᏗᏍᎦᎳᏂᏙᎭ.\nᎾᏍᎩᏯ ᏄᏍᏗ ᏧᏪᏓᏍᏗᏱ ᎾᏂᎥ ᎠᏏᏴᏫᎭ ᎤᏁᏉᏤᏗᏱ ᎤᎬᎥᏍᎩ; ᎬᏅ ᎠᎩᎡᎯ, ᎾᏍᎩ ᎤᎦᏤᎵᎦ ᎨᏒᎢ.\nᎠᎦᏔᎿᎢ ᎤᎵᏍᏗ ᏙᏱᏗᏢ; ᏕᎦᎳᏅᏛ ᎠᏌᎳᏗ ᎧᏁᎬᎢ;\nᏄᎬᏫᏳᏒ ᏗᎦᎳᏫᎢᏍᏗᏱ ᎤᎵᏍᏗ, ᎦᎶᎯᏍᏗᏱ ᏕᎪᏢᏒᎢ; ᎠᎴ ᎦᏚᎲ ᎠᏌᎳᏗ ᎧᏁᎬᎢ, ᎯᎠ ᏂᎦᏪᎭ;\nᎢᎳᎪ ᏅᏓᎪᎯᏥ ᏂᏣᏓᏅᏛᎾ ᎣᏏᏳ ᎢᏥᏰᎸᏎᏍᏗ ᏂᏣᏓᏅᏛᎾ ᎢᏣᎵᏍᏙᏗᏱ, ᎤᎾᏓᏕᎰᏗᏃ ᎣᏏᏳ ᎤᏂᏰᎸᏎᏍᏗ ᎠᏌᏓᏕᎰᏗᏍᎬᎢ, ᎠᏂᏍᎦᎨᏍᏗ ᎠᎩᏙᎥᎯᏍᏗ ᎨᏒᎢ.\nᎢᏣᎦᏔᎲᎾ ᏫᏂᎦᎵᏍᏙᏓ ᎢᏨᎬᏍᎪᎸᎢᏍᎬᎢ; ᎬᏂᏳᏉ ᏓᏨᏯᏐᏅᏰᎵ ᎠᏆᏓᏅᏙ, [ᎠᎴ] ᎬᏂᎨᏒ ᏅᏓᏨᏰᏁᎵ ᏥᏃᎮᏍᎬᎢ.\nᎠᏴ ᎢᏨᏯᏅᏛ ᏥᎩ, ᎠᎴ ᏂᎯ ᏥᏥᏲᎢᏎᎸ; ᎠᎴ ᏣᏆᏎᎵᏔᏅ, ᎩᎶᏃ ᎾᏆᎦᏌᏯᏍᏗᏁᎸᎭ ᏥᎩ,\nᏅᎵᏌᎵᏉᏍᎩᏂ ᏥᏥᏰᎸᏅ ᏂᎦᏗᏳ ᎢᏨᏬᏁᏔᏅᎢ, ᎠᎴ ᏂᏣᎦᏌ ᏯᏍᏔᏅᎾᏉ ᏥᎩ ᎢᏨᎬᏍᎪᎸᏅᎢ;\nᎾᏍᏉ ᎠᏴ ᏓᏥᏰᏣᏍᏔᏂ ᎢᏥᎩᎵᏲᎬᎢ, ᎠᎴ ᏓᎦᏙᏢᏔᏂ ᎿᏉ ᎤᎾᏰᎯᏍᏗ ᎢᏥᎷᏤᎮᏍᏗ.\nᎾᎯᏳ ᎢᏥᎾᏰᏍᎬ ᎦᎷᎨᏍᏗ ᎠᏛᏗᏍᎩ ᎾᏍᎩᏯᎢ, ᎠᎴ ᎢᏥᎯᎯ ᎦᎷᎨᏍᏗ ᎠᎦᎷᎦ ᎾᏍᎩᏯᎢ; ᎾᎯᏳ ᎠᎩᎵᏯ ᎠᎴ ᎡᎯᏍᏗ ᎠᏓᏅᏓᏗᏍᏗ ᎢᏥᎷᏤᎮᏍᏗ;\nᎿᏉ ᏓᎬᎩᏯᏅᎯ, ᎠᏎᏃ ᎥᏝ ᏴᏓᎦᏥᏁᏤᎸ; ᎠᎴ ᏞᎩᏯ ᏓᎬᎩᏲᎵ, ᎠᏎᏃ ᎥᏝ ᏴᏓᎬᎩᏩᏛᎯ;\nᎠᏂᏂᏆᏘᎲᏰᏃ ᎠᎦᏙᎥᎯᏍᏗ ᎨᏒᎢ, ᎥᏝ ᎠᎴ ᏳᎾᏑᏰᏎ ᏱᎰᏩ ᎦᎾᏰᎯᏍᏗ ᎨᏒᎢ,\nᏝ ᏳᎾᏚᎵᏍᎨ ᎦᏥᏬᏁᏗᏍᎬᎢ, ᎤᏂᏯᎦᏨᎩ ᏂᎦᏗᏳ ᎦᏥᎬᏍᎪᎸᏅᎢ.\nᎾᏍᎩ ᎢᏳᏍᏗ ᎠᏎ ᏛᎾᎵᏍᏓᏴᏔᏂ ᎤᏅᏒ ᏚᏂᎸᏫᏍᏓᏁᎸ ᎤᎾᏄᎪᏫ ᏒᎯ, ᎠᎴ ᎨᏍᏤᎧᎵᎢᏍᏙᏗ ᎨᏎᏍᏗ ᎤᏅᏒ ᎤᎾᏓᏅᏖᎵᏙᎸᎢ.\nᎠᎾᎪᎸᏍᎬᏰᏃ ᏄᎾᏓᏅᏛᎾ ᏓyᏂᎵ ᎤᏂᏁᏉᏤᎲᏃ ᎤᏂᏁᎫ ᏓᏳᏂᏛᏔᏂ.\nᎩᎶᏍᎩᏂ ᎠᏴ ᎠᏆᏛᏓᏍᏓᏁᎵ ᎪᎱᏍᏗ ᏄᏍᏛᎾ ᎡᎮᏍᏗ, ᎠᎴ ᏅᏩᏙᎯᏍᏛ ᎤᏓᏅᏖᏍᏗ ᎾᏍᎦᎢᎲᎾ ᎨᏎᏍᏗ ᎪᏢᏍᏗ ᎤᏲᎢ.\nᎠᏇᏥ, ᏗᎧᎿᏩ ᏚᎦ ᏥᏁᎬᎢ, ᏗᎧᎿᏫᏛᏍᏗᏃ ᎠᏆᏤᎵ ᏗᏍᏆᏂᎪᏓ.\nᏗᎧᎿᏩᏚᎦ ᎠᏆᏤᎵ ᏗᎧ Ꮏ ᏩᏛᏍᏗ, ᎠᎴ ᎲᏁᏍᏗ; ᎠᎴ ᏗᎧᎿᏩᏛᏍᏗ ᎠᏆᏤᎵ ᎯᏍᏆ ᏂᎪᏓ ᎾᏍᎩᏯ ᎠᎦᏔ ᏣᎸ ᏣᏍᏆᏂᎪᏛᎢ.\nᎾᏏ ᏕᎯᏰᏌᎱ ᏔᎸᏍᏓ, ᎠᎴ ᏣᏌᏫᏱ ᏙᏪᎸᏌ.\nᎠᎦᏔ ᎾᎢ ᎯᎠ ᏂᏪᏥ ᏂᎯ ᎥᎩᏙ; ᎪᎵᏍᏗᏃ ᎩᏂᏠᏱ ᎯᎬᏎᎮᏍᏗ.\nᎾᏍᎩ ᏱᎨᏣᏲᏍᏙᏓᏏ ᏅᏩᏓᏛ ᎠᎨᏴ ᎯᎷᏤᏗᏱ, ᎯᎷᏤᏗᏱ ᏅᏩᏓᎴ ᎠᎨᏴ ᎾᏍᎩ ᎨᏬᏂᏍᎬ ᎠᏓᎶᏄᎮᏗᏍᎩ.\nᏥᏁᎸᏰᏃ ᎠᏦᎳᏅ ᎪᏢᏒ ᏙᏛᏆᎿᏅᎩ;\nᎠᎴ ᏗᏆᎧᎿᏅᎩ ᏄᎾᏓᏅᏛᎾ ᎠᏁᏙᎲ, ᎠᎴ ᏥᎪᎥᎩ ᎩᎳ ᏗᏌᏛᏍᎩ ᎠᏁᏙᎲ ᎨᎳᏗᏙᎲᎩ ᎠᏫᏅ ᏄᏓᏅᏛᎾ!\nᎡᏙᎲᎩ ᏕᎦᎳᏅᏛ ᎾᎢ ᎤᏅᏏᏴᎢ; [ᎠᎨᎬᏃ] ᏗᎦᏁᎸ ᎢᏗᏢ ᏭᎶᏒᎩ;\nᎩᎳ ᏧᎵᏏᎲᏍᎪᎢ, ᎤᏒᎢ, ᎬᎾᎨ ᎠᎴ ᎤᎵᏴᎩ ᏒᏃᏱ ᏥᎨᏐᎢ;\nᎠᎴ ᎬᏂᏳ ᏙᏓᏳᏠᏒᎩ ᎠᎨᏳ ᎤᏂᏁᏓᏥᏛ ᎤᎾᏣᏃᏗ ᎤᏣᏃᏛᎩ, ᎠᏏᎾᏌᏂ ᎨᏒᎩ ᎤᏓᏅᏖᏗᏱ;\nᎠᏍᏓᏯ ᏚᏬᏂᏍᎩ ᎾᏍᎩ, ᎠᎴ ᎤᎫᏏᏯ, ᎠᎴ ᏂᎦᎮᏍᎬᎾ ᎦᏁᎸᎢ;\nᎢᎸᎯᏳ ᏙᏱ ᎡᏙᎨᎢ, ᎢᎸᎯᏳᏃ ᏚᎹᏅᏛᎢ, ᎠᎴ ᎤᎭᎷᎪ ᏚᏅᏴᏯᏅᎢ.\nᎾᏍᎩᏃ ᎤᏂᏴᎲᎩ [ᎠᏫᏅ] ᎠᎴ ᎤᏚᏣᎳᏅᎩ, ᎠᎴ ᎾᏕᎰᏍᎬᎾ ᎯᎠ ᏄᏪᏎᎸᎩ;\nᎠᏥᎸ ᎨᎳᏍᏗ ᏅᏩᏙᎯᏯᏛ ᎠᏓᏩᏛᏥᎯ ᎠᎩᎭ; ᎪᎯ ᎢᎦ ᎦᎫᏴ ᎠᎩᏁᏨ ᎢᏯᏆᏛᏁᏗy.\nᎾᏍᎩ ᎢᏳᏍᏗ ᏓᏥᏄᎪᎢ ᏗᎬᏯᏠᏍᏗᏱ, ᎬᏩᏛᏗᏱ, ᎠᎴ ᎥᎬᏩᏛ.\nᏗᏰᏍᏛᏗ ᏓᎩᏰᏍᏓᎠ ᎠᏆᏂᏏᏗᏱ, ᏧᏬᏚᎯ ᏧᏅᏣᏛ ᏗᏄᏬ, ᎢᏥᎲ ᏧᏕᏅᎯ.\nᎠᎩᏩᏒᎢᏍᏔᏅᏃ ᎠᏆᏂᏏᏗᏱ ᎻᎳ, ᎠᎴ ᎬᎳᎾ, ᎠᎴ ᎦᏩᏒᎩ ᎤᏯᎷᎦ.\nᎧ! ᏑᎾᎴ ᎬᏗᏍᎩ ᎩᏂᏛᏓᏏ ᏕᎩᎾᏓᎨᏳᏒᎢ; ᎣᏍᏛ ᏫᎩᎾᏓᏅ ᏓᏗᏍᏗ ᏕᎩᎾᏓᎨᏳᏒᎢ.\nᎥᏝ ᏰᏃ ᏳᏬᎳ ᎠᏍᎦᏯ ᏑᏁᎳ, ᎤᏁᎳᏛᎢᏅ ᎤᏪᏅ;\nᏕᎦᎶᏗ ᎠᏕᎸ ᎠᎧᎵᎢ ᎤᏁᏅ, ᎠᎴ ᎦᏌᏆᎸ ᎨᏎᏍᏗ ᏅᏙ ᎩᎳ ᎬᏩᎷᎯᏍᏗ.\nᎾᏍᎩ ᎤᏣᏛ ᎤᏬᏚᎯ ᎦᏬᏂᏍᎬ ᎠᏎᎪᎩᏍᏗᏍᎪ ᎠᏫᏅ, ᎠᎴ ᎤlᏉᏗᏍᎬ ᎤᏎᎪᎩᏍᏗᏯᎪ ᎤᏘᏁᎪᎢ.\nᎠᏫᏅ ᎩᎳᏉ ᎢᏴᏛ ᎠᏍᏓᏩᏕᎪ ᎠᎨᎡ ᎾᏍᎩᏯ ᏗᎯᏍᏗᏱ ᏩᎦ ᏣᎦᏘᏁᎪᎢ, ᎠᎴ ᎾᏍᎩᎲ ᎤᏁᏓ ᎠᏥᎩᎵᏲᎢᏍᏙᏗᏱ ᎠᎦᎸᎢᏛ ᏣᏚᏘᏁᎪᎢ;\nᎬᏂ ᎦᏂ ᎤᏪᎶᎢ ᎤᏥᏲᎭ; ᎠᎴ ᎾᏍᎩᏯ ᏥᏍᏍᏆ ᎠᏌᏛᏗ ᏥᏴ ᏞᎩᏳ ᏥᎦᎷᎪᎢ, ᎠᎴ ᎾᎦᏔᎲᎾ ᏥᎨᏐ ᎬᏃ ᎤᎩᏒᎯ ᎨᏒᎢ.\nᎧ! ᎾᏍᎩ ᎢᏳᏍᏗ ᏗᏇᏥ ᏍᎩᏯᏛᏓᏍᏗᏏ, ᎠᎴ ᎢᏣᏚᏌᏯᏍᏗ ᏥᏬᏂᏍᎬᎢ;\nᏞᏍᏗ ᏣᎾᏫ ᎾᏍᎩ ᏕᎤᏅᏅ ᎢᏗᏢ ᏱᏄᏛᏁᏔᏁᏍᏗ, ᏞᏍᏗ ᎾᏍᎩ ᏕᎤᏅᏅ ᏱᏣᎴᎾᎴᏍᏗ.\nᎤᏂᏣᏗᏰᏃ ᏚᏍᏢᏂᏍᏔᏅ ᏗᎨᏥᏐᏅᏅᎯ; ᎥᎥ, ᎤᏂᏣᏘ ᏧᎾᎵᏂᎩᏛ ᎾᏍᎩ ᏚᎸ.\nᎾᏍᎩ ᎦᏁᎸ ᏨᏍᎩᏃ ᏫᎦᏅᏅ ᎠᏓᏁᎸ, ᏫᎦᎾᏄᎪᎦ ᎠᏲᎱᎯᏍᏗ ᎨᏒ ᏙᏗᎧᏅᏑᎸᎢ."
  },
  {
    "path": "a4/chr_en_data/train.en",
    "content": "and by him every one that believeth is justified from all things, from which ye could not be justified by the law of Moses.\nWhen he was done with the body, he held the head in his mouth and sucked until it held no more flavor than his own spit.\nBut each in his own order: Christ the firstfruits; then they that are Christ’s, at his coming.\nHis was a strange homecoming.\nSo the chief captain let the young man go, charging him, Tell no man that thou hast signified these things to me.\nHe picked the letter up again and studied the signature and said again, Major Cotton.\nAnd seek not ye what ye shall eat, and what ye shall drink, neither be ye of doubtful mind.\nWilbur trembled all over when he saw it.\nAnd he arose from thence, and cometh into the borders of Judæa and beyond the Jordan: and multitudes come together unto him again; and, as he was wont, he taught them again.\nSurely some of them have some superior features.\nThe Fair Grounds were soon deserted.\nthat they do good, that they be rich in good works, that they be ready to distribute, willing to communicate;\nThere were many complaints about the awful smell, and Wilbur had to tell the story over and over again, of how the Arable boy had tried to capture Charlotte, and how the smell of the broken egg drove him away just in time.\nIs Christ divided? was Paul crucified for you? or were ye baptized into the name of Paul?\nAs Wilbur watched, the spider let go of the fence and rose into the air.\nThe crowd cheered.\nSince the world began it was never heard that any one opened the eyes of a man born blind.\n“I’m seeing things,” he whispered.\nAnd he said unto her, Thy sins are forgiven.\nAnd now, go to sleep.”\nAs the fire burned the people heard songs coming from the fire –  songs of healing.  \nWhen he was done tasting, he scrubbed at his greasy finger with the thumb of the same fist.\nand that which thou sowest, thou sowest not the body that shall be, but a bare grain, it may chance of wheat, or of some other kind;\nThe rat visits the dump regularly and has access to old magazines.\nThat night as the tree slept, the boy tied a big red apple on a branch of the little apple tree.\nThat, to the best of my remembrance, is why the mounted soldiers and their pedestrian prisoners left after daybreak, Smith navigating nervously by the little scrap of map I had drawn for him.\n“Don’t just stand there, Wilbur!\nbeing made manifest that ye are an epistle of Christ, ministered by us, written not with ink, but with the Spirit of the living God; not in tables of stone, but in tables that are hearts of flesh.\nAnd I say unto him, My lord, thou knowest. And he said to me, These are they that come out of the great tribulation, and they washed their robes, and made them white in the blood of the Lamb.\nAnd one ran, and filling a sponge full of vinegar, put it on a reed, and gave him to drink, saying, Let be; let us see whether Elijah cometh to take him down.\nHe soon began coming around the Indian Queen late afternoons for a drink and a visit.\nThen the soldiers cut away the ropes of the boat, and let her fall off.\nAnd thus, sinning against the brethren, and wounding their conscience when it is weak, ye sin against Christ.\n“I didn’t ask for a shower bath,” said Mr. Zuckerman.\nHis little mustache, faint even in brightest daylight, was invisible by the fire.\nBut before faith came, we were kept in ward under the law, shut up unto the faith which should afterwards be revealed.\nBut my righteous one shall live by faith: And if he shrink back, my soul hath no pleasure in him.\nand he died for all, that they that live should no longer live unto themselves, but unto him who for their sakes died and rose again.\nBe ye also patient; establish your hearts: for the coming of the Lord is at hand.\nBut let your speech be, Yea, yea; Nay, nay: and whatsoever is more than these is of the evil one.\nAnd let our people also learn to maintain good works for necessary uses, that they be not unfruitful.\nTake ye heed, watch and pray: for ye know not when the time is.\nWoe unto you! for ye are as the tombs which appear not, and the men that walk over them know it not.\nAnd he said unto them, These are my words which I spake unto you, while I was yet with you, that all things must needs be fulfilled, which are written in the law of Moses, and the prophets, and the psalms, concerning me.\nAvery grabbed his gun and another doughnut.\nOnly let your manner of life be worthy of the gospel of Christ: that, whether I come and see you or be absent, I may hear of your state, that ye stand fast in one spirit, with one soul striving for the faith of the gospel;\nThe darkest evening of the year.\nThis Jesus did God raise up, whereof we all are witnesses.\nwho by the Holy Spirit, by the mouth of our father David thy servant, didst say, Why did the Gentiles rage, And the peoples imagine vain things?\nDo you think you understand?”\nI think it is only fair to tell you that I was devoted to your mother.\n“It’s getting all over everything,” shouted Fern.\nAnd when ye shall hear of wars and rumors of wars, be not troubled: these things must needs come to pass; but the end is not yet.\nwhom they set before the apostles: and when they had prayed, they laid their hands upon them.\nAnd when he opened the fourth seal, I heard the voice of the fourth living creature saying, Come.\nFern peered through the door. Wilbur was poking the straw with his snout.\nAnd he said unto them, Take heed what ye hear: with what measure ye mete it shall be measured unto you; and more shall be given unto you.\nto Timothy, my beloved child: Grace, mercy, peace, from God the Father and Christ Jesus our Lord.\nAnd let patience have its perfect work, that ye may be perfect and entire, lacking in nothing.\nAnd Simon Peter followed Jesus, and so did another disciple. Now that disciple was known unto the high priest, and entered in with Jesus into the court of the high priest;\nIs it not lawful for me to do what I will with mine own? or is thine eye evil, because I am good?\nwhen the multitude therefore saw that Jesus was not there, neither his disciples, they themselves got into the boats, and came to Capernaum, seeking Jesus.\n“I should worry.”\nBut when he heard that Archelaus was reigning over Judæa in the room of his father Herod, he was afraid to go thither; and being warned of God in a dream, he withdrew into the parts of Galilee,\nAnd they asked him, saying, Teacher, when therefore shall these things be? and what shall be the sign when these things are about to come to pass?\nWherefore I ask that ye may not faint at my tribulations for you, which are your glory.\nAnd yet a lawyer and businessman and now an Indian chief himself.\nAnd he was an expert, for every fraction of Indian in existence had passed through his office.\nAnd he said unto him also, Be thou also over five cities.\nAbout the forth night we did not go, but instead we went to visit my grandmother.\nwhile they themselves also, with supplication on your behalf, long after you by reason of the exceeding grace of God in you.\nSo he left a whole noodle, instead of a half.\nIt was a sort of sac, or cocoon.\nmen fainting for fear, and for expectation of the things which are coming on the world: for the powers of the heavens shall be shaken.\nQuickly, he jumped away!\nSoon there were only shadows and the noises of the sheep chewing their cuds, and occasionally the rattle of a cow—chain up overhead.\nAvery ran after her, holding his nose.\nAnd Jesus cried again with a loud voice, and yielded up his spirit.\nVerily I say unto you, All these things shall come upon this generation.\nWinders?\n“Well,” said Wilbur, “it means to have fun, to frolic, to run and skip and make merry.”\nHe is not here; for he is risen, even as he said. Come, see the place where the Lord lay.\nWhen night came, I had to walk through the woods alone.\nI went and sat by one of the fires with the muskets on the ground beside me.\nAnd they sing a new song, saying, Worthy art thou to take the book, and to open the seals thereof: for thou wast slain, and didst purchase unto God with thy blood men of every tribe, and tongue, and people, and nation,\nNow the God of peace be with you all. Amen. \nSo belief cometh of hearing, and hearing by the word of Christ.\nBut Abraham said, Son, remember that thou in thy lifetime receivedst thy good things, and Lazarus in like manner evil things: but now here he is comforted, and thou art in anguish.\nThey were loaded and cocked.\nAnd now send men to Joppa, and fetch one Simon, who is surnamed Peter:\nThat which was from the beginning, that which we have heard, that which we have seen with our eyes, that which we beheld, and our hands handled, concerning the Word of life\n“Have you heard about the words that appeared in the spider’s web?” asked Mrs. Arable nervously.\nAnd the blind and the lame came to him in the temple; and he healed them.\nFor I know that this shall turn out to my salvation, through your supplication and the supply of the Spirit of Jesus Christ,\nfor I say unto you, I shall not eat it, until it be fulfilled in the kingdom of God.\n“Jump off!”\nNow I would have you know, brethren, that the things which happened unto me have fallen out rather unto the progress of the gospel;\nTurn you into smoked bacon and ham,” continued the old sheep. “Almost all young pigs get murdered by the farmer as soon as the real cold weather sets in.\nSo the soldiers, as it was commanded them, took Paul and brought him by night to Antipatris.\nLest haply, when he hath laid a foundation, and is not able to finish, all that behold begin to mock him,\n“Let’s swing in the swing!” said Avery.\nFor how knowest thou, O wife, whether thou shalt save thy husband? or how knowest thou, O husband, whether thou shalt save thy wife?\nAnd they bring unto him one that was deaf, and had an impediment in his speech; and they beseech him to lay his hand upon him.\nA world once gone was gone for good.\nThen she started weaving something to take the place of the threads she had removed.\nCome back when you don’t, and I’ll be glad to meet with you and hear your business.\n“Don’t get overheated!” said their mother.\nI started with a rant against the whole sweeping weight of the modern world that was poised to fall on them.\nAnd they said unto him, Grant unto us that we may sit, one on thy right hand, and one on thy left hand, in thy glory.\nAnd I bumped smack into him and we both ran away.\n“What is the date of your birth?\nthat which we have seen and heard declare we unto you also, that ye also may have fellowship with us: yea, and our fellowship is with the Father, and with his Son Jesus Christ:\nMary Magdalene cometh and telleth the disciples, I have seen the Lord; and that he had said these things unto her.\nEven Lurvy, who wasn’t particularly interested in beauty, noticed the web when he came with the pig’s breakfast.\nFor I will not dare to speak of any things save those which Christ wrought through me, for the obedience of the Gentiles, by word and deed,\nI intend to speak about it in my sermon and point out the fact that this community has been visited with a wondrous animal.\n“Kneel down!” whispered the old sheep.\nSo your father has decided to do away with it.”\nThen the devil leaveth him; and behold, angels came and ministered unto him.\nJesus answered him, I have spoken openly to the world; I ever taught in synagogues, and in the temple, where all the Jews come together; and in secret spake I nothing.\nIn pursuance of my instructions, I will advert to such circumstances as may pertain to an estimate of the resources of the Indians of this district, in the hypothesis of an attempt on their part to evade the stipulations of the Treaty in reference to removal.\nLurvy, the hired man, heard the noise and came up from the asparagus patch where he was pulling weeds.\nAnd certain also of the Epicurean and Stoic philosophers encountered him. And some said, What would this babbler say? others, He seemeth to be a setter forth of strange gods: because he preached Jesus and the resurrection.\nfor I am with thee, and no man shall set on thee to harm thee: for I have much people in this city.\nAnd on the sabbath day we went forth without the gate by a river side, where we supposed there was a place of prayer; and we sat down, and spake unto the women that were come together.\nAnd Jesus departed thence, and came nigh unto the sea of Galilee; and he went up into the mountain, and sat there.\nAvery and Fern Arable heard it as they walked the dusty road.\n“Actually,” said Wilbur, “I feel radiant.”\nAgain, a new commandment write I unto you, which thing is true in him and in you; because the darkness is passing away, and the true light already shineth.\nHe didn’t use the broad-bladed knife or the hatchet that hung in leather scabbards from his pantwaist, though they would have made the job easier.\nIf she took her doll for a walk in the doll carriage, Wilbur followed along.\nAnd he took it down, and wrapped it in a linen cloth, and laid him in a tomb that was hewn in stone, where never man had yet lain.\nAnd they spake the word of the Lord unto him, with all that were in his house.\nWilbur himself could look at it whenever he wanted to.\nFor if the trumpet give an uncertain voice, who shall prepare himself for war?\nAnd he said, Come. And Peter went down from the boat, and walked upon the waters to come to Jesus.\nreceiving the end of your faith, even the salvation of your souls.\nand the two shall become one flesh: so that they are no more two, but one flesh.\nIt was soon arranged.\nFrom seven to eight, Wilbur planned to have a talk with Templeton, the rat that lived under his trough.\nThe woman saith unto him, I know that Messiah cometh (he that is called Christ): when he is come, he will declare unto us all things.\n“I will never forget this as long as I live.”\nAt this precise moment of the fall, since the beginning of known time, passenger pigeons had arrived in great clouds, their masses like a dark river flowing southward down the sky, settling into the bright-colored woods for a few days like a dense grey fog of bird meat.\nAfter these things there was a feast of the Jews; and Jesus went up to Jerusalem.\nhaving heard the things concerning Jesus, came in the crowd behind, and touched his garment.\nThey pulled the Indian blanket over them.\nMr. Zuckerman hugged Mrs. Zuckerman.\nHe trimmed a fresh quill with a penknife, dipped into the inkpot and scratched down enough words to make a few sentences, and then immediately balled up the sheet and tossed it on the ground as if paper grew on trees.\nfor we brought nothing into the world, for neither can we carry anything out;\nWho in hope believed against hope, to the end that he might become a father of many nations, according to that which had been spoken, So shall thy seed be.\nMrs. Arable shifted uneasily in her chair.\nThey would be obliged to have recourse to hunting for food and could not therefore embody to any extent and might be met by small detachments whenever they emerged for purposes of procuring the provision by hunting, necessary to their existence.\nNow we pray to God that ye do no evil; not that we may appear approved, but that ye may do that which is honorable, though we be as reprobate.\nmaking void the word of God by your tradition, which ye have delivered: and many such like things ye do.\nThen therefore he delivered him unto them to be crucified.\n“Maybe so,” said Mrs. Zuckerman.\nWolf thought he knew everything.\nAnd after he had sent the multitudes away, he went up into the mountain apart to pray: and when even was come, he was there alone.\nThey went out of the city, and were coming to him.\nYes, I said.\nThe young spiders just waved.\nand others had trial of mockings and scourgings, yea, moreover of bonds and imprisonment:\nI say then, Did God cast off his people? God forbid. For I also am an Israelite, of the seed of Abraham, of the tribe of Benjamin.\nFor God is my witness, whom I serve in my spirit in the gospel of his Son, how unceasingly I make mention of you, always in my prayers\nIn the days that followed, Mr. Zuckerman was so busy entertaining visitors that he neglected his farm work.\nHe heaved and grunted with desolation.\nAnd there are diversities of workings, but the same God, who worketh all things in all.\n“All right, it’s a deal,” said the rat.\nDoth the fountain send forth from the same opening sweet water and bitter?\nbut he that is married is careful for the things of the world, how he may please his wife,\nI said.\nHis mother saith unto the servants, Whatsoever he saith unto you, do it.\nAnd all were weeping, and bewailing her: but he said, Weep not; for she is not dead, but sleepeth.\n“Please tell me what it is,” begged Wilbur.\nWhosoever denieth the Son, the same hath not the Father: he that confesseth the Son hath the Father also.\nGive to every one that asketh thee; and of him that taketh away thy goods ask them not again.\nHe answered them, I told you even now, and ye did not hear; wherefore would ye hear it again? would ye also become his disciples?\n“You can have it,” replied the goose.\nEveryone knew Spearfinger was magic and would soon figure out a way to get out of the pitfall.  \nWherefore, putting away falsehood, speak ye truth each one with his neighbor: for we are members one of another.\nDeep in his soft bed, Wilbur snoozed.\nYour success in the ring this morning was, to a small degree, my success.\nThis is a paper bag that someone left in the woods.\n“Put that empty buttermilk jar into the truck!”  commanded Mr. Arable.\nAnd they come to Jesus, and behold him that was possessed with demons sitting, clothed and in his right mind, even him that had the legion: and they were afraid.\nNow this Hagar is mount Sinai in Arabia and answereth to the Jerusalem that now is: for she is in bondage with her children.\nThe first spider said hello, but its voice was so small Wilbur couldn’t hear it.\nHe gets embarrassed easily.\nTheir throat is an open sepulchre; With their tongues they have used deceit: The poison of asps is under their lips:\n“Yes, I do,” said Mrs. Arable.\nCharlotte, sleepy after her night's exertions, smiled as she watched.\nBut I would have you know, that the head of every man is Christ; and the head of the woman is the man; and the head of Christ is God.\nDo not thou therefore yield unto them: for there lie in wait for him of them more than forty men, who have bound themselves under a curse, neither to eat nor to drink till they have slain him: and now are they ready, looking for the promise from thee.\nFor even when we were come into Macedonia our flesh had no relief, but we were afflicted on every side; without were fightings, within were fears.\nFor our exhortation is not of error, nor of uncleanness, nor in guile:\nAt the fort, the growing population of prisoners, many of whom I had known since boyhood, sat in the dirt of the stockade drinking liquor bought from a cart one of my clerks tended just inside the gate.\nWhosoever shall seek to gain his life shall lose it: but whosoever shall lose his life shall preserve it.\nHe had buried his child, and then shortly thereafter he had buried his wife.\nAnd after the uproar ceased, Paul having sent for the disciples and exhorted them, took leave of them, and departed to go into Macedonia.\nAnd five of them were foolish, and five were wise.\nSoon he saw the rat climbing down a slanting board that he used as a stairway.\nWhen he heard that Jesus was come out of Judæa into Galilee, he went unto him, and besought him that he would come down, and heal his son; for he was at the point of death.\nThe balloonists were gone.\n“What do people catch in the Queensborough Bridge —bugs? asked Wilbur.\nWhen I arrived at the office, Secretary Cass did not offer a chair but stood looking at me a long time, and then he said, Sir, I don’t wish to take up any of your time just now, when you so clearly have appointments with hatters and cobblers.\nand bring the fatted calf, and kill it, and let us eat, and make merry:\nand they sing as it were a new song before the throne, and before the four living creatures and the elders: and no man could learn the song save the hundred and forty and four thousand, even they that had been purchased out of the earth.\nWhere then is the glorying? It is excluded. By what manner of law? of works? Nay: but by a law of faith.\nAnd one said unto him, Behold, thy mother and thy brethren stand without, seeking to speak to thee.\nAgain he went out about the sixth and the ninth hour, and did likewise.\nIt is fit neither for the land nor for the dunghill: men cast it out. He that hath ears to hear, let him hear. \n“Another summer gone,” she sighed.\nThese twelve Jesus sent forth, and charged them, saying, Go not into any way of the Gentiles, and enter not into any city of the Samaritans:\nI manifested thy name unto the men whom thou gavest me out of the world: thine they were, and thou gavest them to me; and they have kept thy word.\nAnd now I have told you before it come to pass, that, when it is come to pass, ye may believe.\nBut the Lord answered him, and said, Ye hypocrites, doth not each one of you on the sabbath loose his ox or his ass from the stall, and lead him away to watering?\nsearching what time or what manner of time the Spirit of Christ which was in them did point unto, when it testified beforehand the sufferings of Christ, and the glories that should follow them.\nMaybe some others.\nO.K., Templeton, the soap ad will do, I guess.\nThey were baffled and frightened by these wet dark woods and mountains that went on and on, with more twists and folds and dangers than a Minotaur-infested labyrinth.\nThose who could afford it went out whoring, drunk and lustful, at least a night or two a week.\nand what the exceeding greatness of his power to us-ward who believe, according to that working of the strength of his might\nThere was at the table reclining in Jesus’ bosom one of his disciples, whom Jesus loved.\nBut the days will come; and when the bridegroom shall be taken away from them, then will they fast in those days.\nAnd in her was found the blood of prophets and of saints, and of all that have been slain upon the earth. \nAnd the apostles, when they were returned, declared unto him what things they had done. And he took them, and withdrew apart to a city called Bethsaida.\nAnd many of them said, He hath a demon, and is mad; why hear ye him?\nBut Jesus saith unto him, Follow me; and leave the dead to bury their own dead.\nWhoa! Attach! Good!\nAnd he saw a certain poor widow casting in thither two mites.\nBut if, while we sought to be justified in Christ, we ourselves also were found sinners, is Christ a minister of sin? God forbid.\nThey are millipedes.\nThese things understood not his disciples at the first: but when Jesus was glorified, then remembered they that these things were written of him, and that they had done these things unto him.\nBut she did.\nWilbur stood still and closed his eyes. He could feel the buttermilk trickling down his sides.\nthat their hearts may be comforted, they being knit together in love, and unto all riches of the full assurance of understanding, that they may know the mystery of God, even Christ,\nAnd yet count him not as an enemy, but admonish him as a brother.\nFor unto this end was the gospel preached even to the dead, that they might be judged indeed according to men in the flesh, but live according to God in the spirit.\nBut farther along.\nJesus said unto him, Again it is written, Thou shalt not make trial of the Lord thy God.\nHis eyes had a wild look.\nThis is what they do when they put on shoes, said Wolf, truly in pain now.\nFor who hath known the mind of the Lord, that he should instruct him? But we have the mind of Christ. \nNevertheless even of the rulers many believed on him; but because of the Pharisees they did not confess it, lest they should be put out of the synagogue:\nAnd when he had said this, he showed unto them his hands and his side. The disciples therefore were glad, when they saw the Lord.\nJesus therefore answered and said unto them, Verily, verily, I say unto you, The Son can do nothing of himself, but what he seeth the Father doing: for what things soever he doeth, these the Son also doeth in like manner.\nAnd they asked him, saying, How is it that the scribes say that Elijah must first come?\nThese things write I unto thee, hoping to come unto thee shortly;\nWilbur watched him disappear into his tunnel.\n“But do you know how long it took men to build it?\nas also ye did acknowledge us in part, that we are your glorying, even as ye also are ours, in the day of our Lord Jesus.\nNo matter how she looked her skin was hard like a rock and arrows would not pierce it.\nBut he denied, saying, Woman, I know him not.\nfor it is written, He shall give his angels charge concerning thee, to guard thee:\nYe have condemned, ye have killed the righteous one; he doth not resist you.\nI'll bring you a piece of the package. \nIt said:  SOME PIG!\n(As he spake unto our fathers) Toward Abraham and his seed for ever.\nThis is the third time I am coming to you. At the mouth of two witnesses or three shall every word be established.\nMrs. Chapman was living alone in a townhouse with only two or three servants, and when the party broke up deep in the night, I accompanied her home in her carriage.\nWilbur grew beautifully white and smooth.\n“Note the general radiance of this animal!\n“What a lot of nonsense!” muttered the rat.\nBut in a contest of extravagant hair just among white men, Jackson and Calhoun would have split the prize.\nWherefore let him that speaketh in a tongue pray that he may interpret.\nWhen he entered a room, it felt like the candles would all flicker out from the breeze created when every head suddenly turned his way.\n“I think,” said the gander, “it’s tee double ee double rr double rr double eye double ff double eye double see see see see see.”\nSometimes at night he would have a bad dream.\nSeveral men stepped forward from the crowd to help lift the crate.\nWilbur started to race out to his yard.\nas ye know how we dealt with each one of you, as a father with his own children, exhorting you, and encouraging you, and testifying,\nfor they all did cast in of their superfluity; but she of her want did cast in all that she had, even all her living. \nAnd he said unto them, What communications are these that ye have one with another, as ye walk? And they stood still, looking sad.\nAnd she fell down immediately at his feet, and gave up the ghost: and the young men came in and found her dead, and they carried her out and buried her by her husband.\nNow even the first covenant had ordinances of divine service, and its sanctuary, a sanctuary of this world.\nAttach!\nIt is another that beareth witness of me; and I know that the witness which he witnesseth of me is true.\nI can’t reach it, and I can't climb.\nremembering without ceasing your work of faith and labor of love and patience of hope in our Lord Jesus Christ, before our God and Father;\nAll right, I said.\nAnd the sea was rising by reason of a great wind that blew.\nHe that believeth and is baptized shall be saved; but he that disbelieveth shall be condemned.\nNow the Lord is the Spirit: and where the Spirit of the Lord is, there is liberty.\nWe studied them one by one and guessed in which of the two basic categories the persons belonged, preachers or drunks.\nAnd the beast that was, and is not, is himself also an eighth, and is of the seven; and he goeth into perdition.\nThis was the first enrolment made when Quirinius was governor of Syria.\nYe have heard the blasphemy: what think ye? And they all condemned him to be worthy of death.\nFor in hope were we saved: but hope that is seen is not hope: for who hopeth for that which he seeth?\nBut nevertheless it was theirs, both by heritage and by deed, nearly a thousand acres of it anyway, which Bear conceded was not really much land at all.\nTell me, ye that desire to be under the law, do ye not hear the law?\nThe sheep lay calmly at her feet.\nAnd if ye lend to them of whom ye hope to receive, what thank have ye? even sinners lend to sinners, to receive again as much.\nFor ye were going astray like sheep; but are now returned unto the Shepherd and Bishop of your souls. \nThe events of the following day have been the subject of a certain amount of speculation over the years, both in print and as mere gossip.\nAfter eating from the community stewpots nonstop for two or three days, Lichen’s men joined us in searching for Charley.\nSo did the geese, who lived with the sheep.\nbut for our sake also, unto whom it shall be reckoned, who believe on him that raised Jesus our Lord from the dead,\nAnd Peter said unto him, Aeneas, Jesus Christ healeth thee: arise, and make thy bed. And straightway he arose.\nSo that the law is become our tutor to bring us unto Christ, that we might be justified by faith.\nSoon a prophet named Dull Hoe weighed in with his vision.\nHe used a fragrant pomade, and the comb tracks were straight as bean rows traversing his scalp.\nBut as the disciples stood round about him, he rose up, and entered into the city: and on the morrow he went forth with Barnabas to Derbe.\nWe love, because he first loved us.\n“Well,” said Charlotte, vaguely, “I don't really know.\nAnd if any one ask you, Why do ye loose him? thus shall ye say, The Lord hath need of him.\nBoy Crockett had dared either man—master or father—to try enforcing the contract.\nBut as touching the resurrection of the dead, have ye not read that which was spoken unto you by God, saying,\nPeter, an apostle of Jesus Christ, to the elect who are sojourners of the Dispersion in Pontus, Galatia, Cappadocia, Asia, and Bithynia,\nbeseeching us with much entreaty in regard of this grace and the fellowship in the ministering to the saints:\n“Anyway, I can guarantee that it is strong.\nAnd I saw, and I heard a voice of many angels round about the throne and the living creatures and the elders; and the number of them was ten thousand times ten thousand, and thousands of thousands;\nHot summer days are for swimming!\nAnd Jesus said, I am: and ye shall see the Son of man sitting at the right hand of Power, and coming with the clouds of heaven.\nAnd Pilate said unto the chief priests and the multitudes, I find no fault in this man.\nNow the passover of the Jews was at hand: and many went up to Jerusalem out of the country before the passover, to purify themselves.\nAnd he said unto him, Teacher, all these things have I observed from my youth.\nAnd my spirit hath rejoiced in God my Saviour.\nHe and the younger men began climbing away.\nbut whoso shall cause one of these little ones that believe on me to stumble, it is profitable for him that a great millstone should be hanged about his neck, and that he should be sunk in the depth of the sea.\nBlessed are the poor in spirit: for theirs is the kingdom of heaven.\nI recognized one of them immediately as our neighbor.\nNow from the sixth hour there was darkness over all the land until the ninth hour.\nLurvy, at work building a crate for Wilbur, heard the song and knew it was time to dig potatoes.\nnot as Cain was of the evil one, and slew his brother. And wherefore slew he him? Because his works were evil, and his brother’s righteous.\nSmith said it all exploded so fast he still wasn’t sure what happened, exactly who did what.\nIt is like a grain of mustard seed, which, when it is sown upon the earth, though it be less than all the seeds that are upon the earth,\nStep by step, footprints lay lighter on the earth, fainter and fainter as if the bear were slowly elevating into the sky.\nSo he tried just sitting, looking with unfocused eyes at the various parts of the laurel in its dim green light.\nAnd he said, Woe unto you lawyers also! for ye load men with burdens grievous to be borne, and ye yourselves touch not the burdens with one of your fingers.\nSalute Urbanus our fellow-worker in Christ, and Stachys my beloved.\nSometimes the rabble fell upon a place so soon after vacancy that the owners could look back and see them trying to straddle a plow mule or struggling to lead away a reluctant hog by a rope around its neck or flailing about in the farmyard chasing old big-breasted and flightless hens that ran squawking with their wings trailing in the dust. Sometimes out of exuberance the followers would set fire to a place after they’d emptied it.\nFor all these things do the nations of the world seek after: but your Father knoweth that ye have need of these things.\nHe moved out of the light, gliding toward a dark corner where his voice would be deepened by the intersecting walls and project sourceless into the vaulted and dramatic space.\nThe cocker spaniel was sneaking up on him from one side, Lurvy the hired man was sneaking up on him from the other side.\nTo the pure all things are pure: but to them that are defiled and unbelieving nothing is pure; but both their mind and their conscience are defiled.\nThe rest of the dead lived not until the thousand years should be finished. This is the first resurrection.\nthat upon the Gentiles might come the blessing of Abraham in Christ Jesus; that we might receive the promise of the Spirit through faith.\nAnd now, my little children, abide in him; that, if he shall be manifested, we may have boldness, and not be ashamed before him at his coming.\nThere is no fear in love: but perfect love casteth out fear, because fear hath punishment; and he that feareth is not made perfect in love.\n“You're terrific as far as I'm concerned, replied Charlotte, sweetly, “and that's what counts.\nseeing that thou canst take knowledge that it is not more than twelve days since I went up to worship at Jerusalem:\nAnd the superscription of his accusation was written over, THE KING OF THE JEWS.\nBut this spake he of the Spirit, which they that believed on him were to receive: for the Spirit was not yet given; because Jesus was not yet glorified.\nI guess I would mess up your looks,\n“You stay right where you are!” said her mother.\nNow when morning was come, all the chief priests and the elders of the people took counsel against Jesus to put him to death:\nIn that he saith, A new covenant, he hath made the first old. But that which is becoming old and waxeth aged is nigh unto vanishing away. \nMoreover the tabernacle and all the vessels of the ministry he sprinkled in like manner with the blood.\nat midday, O king, I saw on the way a light from heaven, above the brightness of the sun, shining round about me and them that journeyed with me.\nBut when I saw that they walked not uprightly according to the truth of the gospel, I said unto Cephas before them all, If thou, being a Jew, livest as do the Gentiles, and not as do the Jews, how compellest thou the Gentiles to live as do the Jews?\nThough it was going on noon, he sat behind a table littered with breakfast dishes.\nHim did God exalt with his right hand to be a Prince and a Saviour, to give repentance to Israel, and remission of sins.\nfor I was hungry, and ye did not give me to eat; I was thirsty, and ye gave me no drink;\nAnd without controversy great is the mystery of godliness; He who was manifested in the flesh, Justified in the spirit, Seen of angels, Preached among the nations, Believed on in the world, Received up in glory. \nSo now it is no more I that do it, but sin which dwelleth in me.\nThey arrived at Axe’s place before dark, carrying the odors of journey in their clothes and their hair and on their skin—scents of morning dew beading the leaves, the dust of the trail, the droppings of animals, sweat, and woodsmoke.\nbeginning from the baptism of John, unto the day that he was received up from us, of these must one become a witness with us of his resurrection.\nIt smelled of grain and of harness dressing and of axle grease and of rubber boots and of new rope.\nHis legs collapsed, his mind went blank, and he fell to the ground, unconscious.\nAnd Pilate gave sentence that what they asked for should be done.\nenvyings, drunkenness, revellings, and such like; of which I forewarn you, even as I did forewarn you, that they who practise such things shall not inherit the kingdom of God.\nJesus therefore saith unto them, My time is not yet come; but your time is always ready.\nAnd for this cause God sendeth them a working of error, that they should believe a lie:\nBoudinot and young Ridge and their Yankee wives made a happy jaunt of it.\nFor this cause also the multitude went and met him, for that they heard that he had done this sign.\nAnd we are witnesses of all things which he did both in the country of the Jews, and in Jerusalem; whom also they slew, hanging him on a tree.\nHis tail had a fine, tight curl in it.\nAnd many rebuked him, that he should hold his peace: but he cried out the more a great deal, Thou son of David, have mercy on me.\nand the napkin, that was upon his head, not lying with the linen cloths, but rolled up in a place by itself.\nHe that hath the Son hath the life; he that hath not the Son of God hath not the life.\nEveryone is invited to attend.\nNow, Wolf began smelling.\nAnd straightway Jesus, perceiving in himself that the power proceeding from him had gone forth, turned him about in the crowd, and said, Who touched my garments?\nMoses hath given you circumcision (not that it is of Moses, but of the fathers); and on the sabbath ye circumcise a man.\nAren't you anxious to get home?”\nAnd there stood up certain, and bare false witness against him, saying,\nIt said PRE-SHRUNK.\nknowing that Christ being raised from the dead dieth no more; death no more hath dominion over him.\nIf you enter the barn, the swallows swoop down from their nests and scold. “Cheeky, cheeky!” they say.\nand that he was buried; and that he hath been raised on the third day according to the scriptures;\nAt every white settlement of five dogtrot log cabins and a frame church, the inhabitants congregate to tell us of great masses of Indians hiding high in the mountains.\nwho was declared to be the Son of God with power, according to the spirit of holiness, by the resurrection from the dead; even Jesus Christ our Lord,\nWilbur paid no attention.\nAnd the Lord said unto Paul in the night by a vision, Be not afraid, but speak and hold not thy peace:\nI thank God, whom I serve from my forefathers in a pure conscience, how unceasing is my remembrance of thee in my supplications, night and day\nby glory and dishonor, by evil report and good report; as deceivers, and yet true;\nAt the end of the dry summer, one black storm after another came ripping across the ridges, and by the end of September the trees were nearly stripped of leaves and the rivers were full to the banks with red water.\nThen shall he answer them, saying, Verily I say unto you, Inasmuch as ye did it not unto one of these least, ye did it not unto me.\nHe had on a dusty black frock coat and a white shirt, and he was locally celebrated for holding a degree in divinity from Princeton College.\nBefore white men, war of Indians against Indians was very bloody and sometimes cruel to the limits of human imagination, but it was a near relative to the ball game, a form of sport.\nI saw the flash of powder in the pans, the leap of grey smoke against the background of dark trees.\nAnd it came to pass, after three days they found him in the temple, sitting in the midst of the teachers, both hearing them, and asking them questions:\nwithal taking up the shield of faith, wherewith ye shall be able to quench all the fiery darts of the evil one.\nAnd he looked round about to see her that had done this thing.\nAs she dropped, her spinning tubes went into action and she let out thread.\nand with difficulty coasting along it we came unto a certain place called Fair Havens; nigh whereunto was the city of Lasea.\nIt was something hairy.\nLittlefish swam slowly around the pool for several days.\nIt is no great thing therefore if his ministers also fashion themselves as ministers of righteousness; whose end shall be according to their works.\nbut their plot became known to Saul. And they watched the gates also day and night that they might kill him:\nA factious man after a first and second admonition refuse;\nWhen the first gosling poked its grey-green head through the goose’s feathers and looked around, Charlotte spied it and made the announcement.\nAnd great hail, every stone about the weight of a talent, cometh down out of heaven upon men: and men blasphemed God because of the plague of the hail; for the plague thereof is exceeding great. \nThey therefore, when they had testified and spoken the word of the Lord, returned to Jerusalem, and preached the gospel to many villages of the Samaritans.\nOf course, that was back when men joked about the pox as if it were a runny nose.\nHe walked on down the winding creek, passing a white cascade and a deep black pool.\nBear’s old lessons in fearlessness and my own experiments in nightwalking had brought about the transformation.\nThey went out from us, but they were not of us; for if they had been of us, they would have continued with us: but they went out, that they might be made manifest that they all are not of us.\nDuring the months leading up to the Removal, letters and reports flew back and forth between Washington and the earliest representatives of the Army.\nThis man was seized by the Jews, and was about to be slain of them, when I came upon them with the soldiers and rescued him, having learned that he was a Roman.\nThey add nutrients to the soil.\nThe fewer people we’re hunting the better.\nwhile Paul said in his defence, Neither against the law of the Jews, nor against the temple, nor against Cæsar, have I sinned at all.\nAnd when this epistle hath been read among you, cause that it be read also in the church of the Laodiceans; and that ye also read the epistle from Laodicea.\nFern hugged her mother.\nIced stream banks, frost-burnt pigeon moss, a cold sun setting down a metal-colored sky.\nBut the Pharisees went out, and took counsel against him, how they might destroy him.\nFor that ye ought to say, If the Lord will, we shall both live, and do this or that.\nPerhaps you could arrange to return after those obligations have been met.\nAnd behold, a woman, who had an issue of blood twelve years, came behind him, and touched the border of his garment:\nSequoyah began drawing hundreds of symbols, one for each word.\nI write unto you, fathers, because ye know him who is from the beginning. I write unto you, young men, because ye have overcome the evil one. I have written unto you, little children, because ye know the Father.\nAnd he said, Who hath ears to hear, let him hear.\n“I’m hungry,” said Avery.\nBut thou didst follow my teaching, conduct, purpose, faith, longsuffering, love, patience,\n“Well, we are all here except the rat,” said Charlotte.\nSo it was an honorable thing to fight against the world.\nWoe unto them that are with child and to them that give suck in those days! for there shall be great distress upon the land, and wrath unto this people.\nFor what if some were without faith? shall their want of faith make of none effect the faithfulness of God?\nWomen received their dead by a resurrection: and others were tortured, not accepting their deliverance; that they might obtain a better resurrection:\nFor the law having a shadow of the good things to come, not the very image of the things, can never with the same sacrifices year by year, which they offer continually, make perfect them that draw nigh.\nWho bit your tail and got you back on your feet this morning after you had fainted in front of the crowd? Old Templeton.\nThe boy’s arms and legs were bone thin, and the elbow and knee joints looked enormous.\nIn the evening I would leave, after school was finished, I would go and stay late into the night.\nI really enjoyed going to the store because I liked to drive our car.\nBut they were the more urgent, saying, He stirreth up the people, teaching throughout all Judæa, and beginning from Galilee even unto this place.\nNow this he spake, signifying by what manner of death he should glorify God. And when he had spoken this, he saith unto him, Follow me.\n“Who made trip after trip to the dump?” he asked.\n“Do away with it?” shrieked Fern.\nSequoyah was not a chief, but he loved his people like one.\nfor now we live, if ye stand fast in the Lord.\nShe nodded politely and composed her face as if my comment were something worth serious consideration and not just a piece of smart-assery, for which generosity I found her even more lovely.\nI had once been like that myself.\nStars overlapped stars down a vertiginous well.\n“She doesn’t talk very loud, but she talks.”\nHe that overcometh, I will give to him to sit down with me in my throne, as I also overcame, and sat down with my Father in his throne.\nBut the men who die in these little inconsequential fights are just as stone dead as if they fought at Hastings or Culloden or Sharpsburg.\nShe knew just what to wear.\nI could see them talking.\nCharlotte had her web almost finished when Templeton returned, carrying the newspaper clipping.\nThe smell is unbearable. Who wants to live in a barn that is perfumed with rotten egg?”\nEveryone admired the web.\nBut ye believe not, because ye are not of my sheep.\nI don’t want to die.\nLet your forbearance be known unto all men. The Lord is at hand.\nAnd they reasoned one with another, saying, We have no bread.\nAnd he received a cup, and when he had given thanks, he said, Take this, and divide it among yourselves:\nNow is my soul troubled; and what shall I say? Father, save me from this hour. But for this cause came I unto this hour.\nAfter a while the fog lifted.\nNow John himself had his raiment of camel’s hair, and a leathern girdle about his loins; and his food was locusts and wild honey.\nBut now ye glory in your vauntings: all such glorying is evil.\nteaching them to observe all things whatsoever I commanded you: and lo, I am with you always, even unto the end of the world.\nAs I came past that pig next door—the one that calls himself Uncle — I noticed a blue tag on the front of his pen.\nI went back to Cranshaw, feeling hopeless and foolish at my desperation to make one more try to reach her.\nAnd it came to pass, when the angels went away from them into heaven, the shepherds said one to another, Let us now go even unto Bethlehem, and see this thing that is come to pass, which the Lord hath made known unto us.\nwithout understanding, covenant-breakers, without natural affection, unmerciful:\nhow much more shall the blood of Christ, who through the eternal Spirit offered himself without blemish unto God, cleanse your conscience from dead works to serve the living God?\n“Ladeez and gentlemen,” said the loud speaker, “we now present Mr. Homer L. Zuckerman’s distinguished pig.\nand sent Timothy, our brother and God’s minister in the gospel of Christ, to establish you, and to comfort you concerning your faith;\nI speak after the manner of men because of the infirmity of your flesh: for as ye presented your members as servants to uncleanness and to iniquity unto iniquity, even so now present your members as servants to righteousness unto sanctification.\nAnd his mother answered and said, Not so; but he shall be called John.\nAnd turning to the disciples, he said privately, Blessed are the eyes which see the things that ye see:\nThe trap clanged hard.\nBalloons by the dozen were rising, circling, and drifting away through the door, sailing off on the gentle wind.\nSwallows passed on silent wings, in and out of the doorways, bringing food to their young ones.\nThis is he that was in the church in the wilderness with the angel that spake to him in the mount Sinai, and with our fathers: who received living oracles to give unto us:\nFor this is acceptable, if for conscience toward God a man endureth griefs, suffering wrongfully.\nAnd behold, thou shalt conceive in thy womb, and bring forth a son, and shalt call his name JESUS.\nAnd having this confidence, I know that I shall abide, yea, and abide with you all, for your progress and joy in the faith;\nMr. Zuckerman rushed and called Mrs. Zuckerman.\nSome say I did not join the soldiers and Indians when they headed out down the trail because the Indians had warned me something might happen.\n“Humble?” said Charlotte.\n“Hello, there!” he said.\nA case in point: Memoir Relative to the Cherokee Nation within the Limits of N. Carolina and its Immediate Vicinity, by W. G. Williams, Capt, U.S. F. Grs. Febry 1838. Preparatory to a Report based upon the data procured by Instrumental Survey, it occurs to me that you may be pleased to be made acquainted with a few particulars in regard to the country in which we are operating; and which have come to me, in the form of memoranda, through the notes of the assistants under me and from my own observation.\nAnd then I screamed and threw the gun into the air, and I ran as fast as I could…like this.\nGo ye therefore, and make disciples of all the nations, baptizing them into the name of the Father and of the Son and of the Holy Spirit:\nPeace, Lichen said.\nAnd the fifth angel sounded, and I saw a star from heaven fallen unto the earth: and there was given to him the key of the pit of the abyss.\nand one of the elders saith unto me, Weep not; behold, the Lion that is of the tribe of Judah, the Root of David, hath overcome to open the book and the seven seals thereof.\nPaul, an apostle of Christ Jesus through the will of God, to the saints that are at Ephesus, and the faithful in Christ Jesus:\nThe animals treated her as an equal.\nJohn said unto him, Teacher, we saw one casting out demons in thy name; and we forbade him, because he followed not us.\nand the stars shall be falling from heaven, and the powers that are in the heavens shall be shaken.\n“I'm making a trip to the dump tomorrow afternoon.\nAnd also all the scavengers and predators, the diplomats and agents and lobbyists like me, drawn to the scent of blood and money and power the city throws out.\nAnd they continued stedfastly in the apostles’ teaching and fellowship, in the breaking of bread and the prayers.\nNow when Jesus saw great multitudes about him, he gave commandment to depart unto the other side.\n“Give him his breakfast!” she said.\nAnd she, when she heard it, arose quickly, and went unto him.\nI had noticed that the boys had taken the word into their own vocabularies and used it frequently and not without irony when they were out of earshot of the lieutenant.\nAvery jumped to his feet.\nGreat sobs racked his body.\nBeyond the river vallies the little flat ground is filled with thickets of azalea and laurel almost impenetrable to anything but a deer or an Indian and them crawling on their knees.\nGrace, mercy, peace shall be with us, from God the Father, and from Jesus Christ, the Son of the Father, in truth and love.\nSo we sorted through our packs and gave the old man food and then we let Hog Meat be.\nIt is but natural to suppose that the love of home is a paramount sentiment with the Indian whose range of ideas is too limited to stimulate him to enterprize beyond his immediate vicinity and who is moreover attached to the grave of his ancestors by feelings of superstitous veneration.\nYet I would that all men were even as I myself. Howbeit each man hath his own gift from God, one after this manner, and another after that.\nHe didn't know exactly what was going on, but when he saw the men shoving Wilbur into the crate he made up his mind to go along.\nAnd he saith unto them, Know ye not this parable? and how shall ye know all the parables?\nAnd Pilate again answered and said unto them, What then shall I do unto him whom ye call the King of the Jews?\nI'm glad I'm a sedentary spider. \nAnd he exerciseth all the authority of the first beast in his sight. And he maketh the earth and them that dwell therein to worship the first beast, whose death-stroke was healed.\nBut from those who were reputed to be somewhat (whatsoever they were, it maketh no matter to me: God accepteth not man’s person)—they, I say, who were of repute imparted nothing to me:\nAfter the pain subsided, though, I became more assured in the presence of congressmen and lobbyists from Boston and New York City, who seemed particularly polished in mixed company.\nThose were the pressing questions.\nConsider the ravens, that they sow not, neither reap; which have no store-chamber nor barn; and God feedeth them: of how much more value are ye than the birds!\nbut is under guardians and stewards until the day appointed of the father.\nin that they show the work of the law written in their hearts, their conscience bearing witness therewith, and their thoughts one with another accusing or else excusing them);\nBut I hope that ye shall know that we are not reprobate.\nAll of us.\nI guess I was just trying to show off.\nA disciple is not above his teacher, nor a servant above his lord.\nIf Charlotte herself was unable to go home to the barn, at least he must take her children along.\nMartha saith unto him, I know that he shall rise again in the resurrection at the last day.\nMr. Arable grinned.\nFor ye have brought hither these men, who are neither robbers of temples nor blasphemers of our goddess.\nXIV. Dr. Dorian  \nAnd it shall be, that in the place where it was said unto them, Ye are not my people, There shall they be called sons of the living God.\nAnd he was teaching daily in the temple. But the chief priests and the scribes and the principal men of the people sought to destroy him:\nAs she worked she kept thinking about Fern.\neven as I also please all men in all things, not seeking mine own profit, but the profit of the many, that they may be saved.\nBut lighting upon a place where two seas met, they ran the vessel aground; and the foreship struck and remained unmoveable, but the stern began to break up by the violence of the waves.\n“Not going back?” he cried.\nSlowly Templeton dragged himself across the pen and threw himself down in a corner.\nIf any man serve me, let him follow me; and where I am, there shall also my servant be: if any man serve me, him will the Father honor.\nBut ye, beloved, remember ye the words which have been spoken before by the apostles of our Lord Jesus Christ;\nThey eat at you like heartworm, coring you out until you are just a skin enclosing nothing.\nGood girl!”\nand he fell upon his face at his feet, giving him thanks: and he was a Samaritan.\n“The meeting is now adjourned.\nFor from many of those that had unclean spirits, they came out, crying with a loud voice: and many that were palsied, and that were lame, were healed.\nThe queen of the south shall rise up in the judgment with this generation, and shall condemn it: for she came from the ends of the earth to hear the wisdom of Solomon; and behold, a greater than Solomon is here.\nThese all died in faith, not having received the promises, but having seen them and greeted them from afar, and having confessed that they were strangers and pilgrims on the earth.\nThey coasted down the lane and out onto the frozen pond in the pasture.\nThose are the winners.\nBut if a woman have long hair, it is a glory to her: for her hair is given her for a covering.\nit seemed good unto us, having come to one accord, to choose out men and send them unto you with our beloved Barnabas and Paul,\nIf then ye are not able to do even that which is least, why are ye anxious concerning the rest?\nI went from office to office, and the men who inhabited them would sit and listen, but I could see wheels turn and the teeth of interlocked gears engage behind their eyes.\nAnd Paul said, John baptized with the baptism of repentance, saying unto the people that they should believe on him that should come after him, that is, on Jesus.\nMr. Zuckerman particularly wanted to look at tractors.\n“Why, yes,” said Mr. Zuckerman.\nTo whom it was revealed, that not unto themselves, but unto you, did they minister these things, which now have been announced unto you through them that preached the gospel unto you by the Holy Spirit sent forth from heaven; which things angels desire to look into.\nBut when it was now the midst of the feast Jesus went up into the temple, and taught.\nYour land included.\nGlory to God in the highest, And on earth peace among men in whom he is well pleased.\nBut he answered and said unto them, An evil and adulterous generation seeketh after a sign; and there shall no sign be given to it but the sign of Jonah the prophet:\nYe therefore, beloved, knowing these things beforehand, beware lest, being carried away with the error of the wicked, ye fall from your own stedfastness.\nCharlotte moved aside for him.\nAnd they answering said, John the Baptist; but others say, Elijah; and others, that one of the old prophets is risen again.\nFear not the things which thou art about to suffer: behold, the devil is about to cast some of you into prison, that ye may be tried; and ye shall have tribulation ten days. Be thou faithful unto death, and I will give thee the crown of life.\nHe hoped withal that money would be given him of Paul: wherefore also he sent for him the oftener, and communed with him.\nYou see them receding before you as you walk the trail, their shapes beautiful and sad.\nBy their fruits ye shall know them. Do men gather grapes of thorns, or figs of thistles?\nAsmeret looks everywhere for evidence of soil being made.\nAnd I brought him to thy disciples, and they could not cure him.\n“Do you really think it’s all right?” she asked.\nBe not overcome of evil, but overcome evil with good. \nAnd on some have mercy, who are in doubt;\nGive diligence to come shortly unto me:\nThe churches of Asia salute you. Aquila and Prisca salute you much in the Lord, with the church that is in their house.\nAnd they found the stone rolled away from the tomb.\nBut Paul saith, I am not mad, most excellent Festus; but speak forth words of truth and soberness.\n“What's everybody crying about?” asked Mr. Zuckerman.\nBut as many as received him, to them gave he the right to become children of God, even to them that believe on his name:\n“How is the plan coming, Charlotte? Have you got very far with it?\nIn another minute he spoke.\nAnd it came to pass, when he was come back again, having received the kingdom, that he commanded these servants, unto whom he had given the money, to be called to him, that he might know what they had gained by trading.\nbut when this thy son came, who hath devoured thy living with harlots, thou killedst for him the fatted calf.\nJesus answered him, If I have spoken evil, bear witness of the evil: but if well, why smitest thou me?\nThey made tiny webs near the sac.\nHe patted his stomach, grinned at the sheep, and crept upstairs to lie down.\n“Did she succeed?” asked Wilbur.\n“Do you?” said Charlotte, looking at him with affection.\nFor the mind of the flesh is death; but the mind of the Spirit is life and peace:\nThere were therefore seven brethren: and the first took a wife, and died childless;\ngive, and it shall be given unto you; good measure, pressed down, shaken together, running over, shall they give into your bosom. For with what measure ye mete it shall be measured to you again.\nWoe unto the world because of occasions of stumbling! for it must needs be that the occasions come; but woe to that man through whom the occasion cometh!\nAnd after the three days and a half the breath of life from God entered into them, and they stood upon their feet; and great fear fell upon them that beheld them.\n“Not tonight,” she said in a low voice.\nAnd when ye pray, ye shall not be as the hypocrites: for they love to stand and pray in the synagogues and in the corners of the streets, that they may be seen of men. Verily I say unto you, They have received their reward.\nBut if ye had known what this meaneth, I desire mercy, and not sacrifice, ye would not have condemned the guiltless.\nWay back for thousands and thousands of years we spiders have been laying for flies and bugs.”\n“I would have to have St. Vitus’s Dance to weave a word like that into my web.”\nFrom that time began Jesus to preach, and to say, Repent ye; for the kingdom of heaven is at hand.\nSeeing that Jews ask for signs, and Greeks seek after wisdom:\nIn other parts of the country, it’s the section of town with all the bars and whorehouses and gunfighters and knife fighters.\nIf you look closely you can see that it is decomposing into soil.\n“Well, I didn’t think you were expecting woodpeckers,” said Wilbur, bitterly.\nThe pole benches all around the walls were crowded with people, and the children sat or lay on the packed earth floor.\nAt best, they were captives beyond his power to redeem.\nHe continued to visit Wilbur three times a day, exactly at mealtime, and Wilbur kept the promise he had made.\nThe sting of death is sin; and the power of sin is the law:\nFern climbed into the pen and knelt by Wilbur’s side.\nAnd there were also two others, malefactors, led with him to be put to death.\nAnd they entreated him that he would not command them to depart into the abyss.\nMr. Zuckerman did not allow her to take Wilbur out, and he did not allow her to get into the pigpen. But he told Fern that she could sit on the stool and watch Wilbur as long as she wanted to.\n“Will you play with me, Templeton?” asked Wilbur.\nI charge thee in the sight of God, and Christ Jesus, and the elect angels, that thou observe these things without prejudice, doing nothing by partiality.\nAnd in like manner was not also Rahab the harlot justified by works, in that she received the messengers, and sent them out another way?\nAnd when they came to the disciples, they saw a great multitude about them, and scribes questioning with them.\n“Listen to me, listen to me!” screamed the goose.\nGenerations of dusty animals large and small combusting quick as fat-pine kindling, their blank faces looking out of the fire, scenting the spring air with an autumnal odor like burning the bristles off a butchered hog.\nAnd when they were past the first and the second guard, they came unto the iron gate that leadeth into the city; which opened to them of its own accord: and they went out, and passed on through one street; and straightway the angel departed from him.\nHello Littlefish. replied the new fish through rounded lips, I am called Hogsucker by the Cherokee people. I cling to rocks and clean them.\nfor already some are turned aside after Satan.\nThe rat was hungry and thirsty.\nWherefore I beseech you to take some food: for this is for your safety: for there shall not a hair perish from the head of any of you.\nAnd so, talking to herself, the spider worked at her difficult task.\nAnd Herod and Pilate became friends with each other that very day: for before they were at enmity between themselves.\nThe larger fish swam slowly up to him and said in a gravelly voice, Hello Littlefish, the Cherokee people call me Knottyhead.\nAnd I think it right, as long as I am in this tabernacle, to stir you up by putting you in remembrance;\nBut he was a sharp and close trader in business and politics, and a prideful little man who parted his hair just above his left ear and carried the long remainder up and over to the opposing ear in an attempt to cover the barren ground of his bald pate.\nClinging upside down to the ceiling, she settled down for a nap, leaving Wilbur very much worried.\nThey were so angry they caught the bird and cut off its tongue.  \nIn the streets most days, I could not help staring hard at passing strangers in case one of them might be Claire, visiting the capital with Featherstone.\nAnd the first came before him, saying, Lord, thy pound hath made ten pounds more.\nEvery good gift and every perfect gift is from above, coming down from the Father of lights, with whom can be no variation, neither shadow that is cast by turning.\nContrary to his wishes, Claire remained behind to pack their belongings.\nWilbur couldn’t count them, but he knew that he had a great many new friends.\nAnd straightway in the morning the chief priests with the elders and scribes, and the whole council, held a consultation, and bound Jesus, and carried him away, and delivered him up to Pilate.\nAvery's foot touched Templeton under the straw.\nand cinnamon, and spice, and incense, and ointment, and frankincense, and wine, and oil, and fine flour, and wheat, and cattle, and sheep; and merchandise of horses and chariots and slaves; and souls of men.\nHe was a famous man, we say, because he invented writing for the Cherokee.\ncomfort your hearts and establish them in every good work and word. \nAnd Agrippa said unto Festus, I also could wish to hear the man myself. To-morrow, saith he, thou shalt hear him.\nThe first time I dined on oysters, my enthusiasm embarrassed my tablemates.\nBut let each man prove his own work, and then shall he have his glorying in regard of himself alone, and not of his neighbor.\nalways in every supplication of mine on behalf of you all making my supplication with joy,\nsaying, This is the blood of the covenant which God commanded to you-ward.\nWhat fruit then had ye at that time in the things whereof ye are now ashamed? for the end of those things is death.\nAnd as they passed by in the morning, they saw the fig tree withered away from the roots.\nFor I have given you an example, that ye also should do as I have done to you.\nEveryone in the village came to a great council to decide how to get rid of her once and for all.\nCharlotte was delighted with the way her trick was working.\nRejoice over her, thou heaven, and ye saints, and ye apostles, and ye prophets; for God hath judged your judgment on her.\nBut when it was day, the magistrates sent the serjeants, saying, Let those men go.\nFor a moment Charlotte said nothing.\nTo stop without a farmhouse near\nAnd they indeed of the sons of Levi that receive the priest’s office have commandment to take tithes of the people according to the law, that is, of their brethren, though these have come out of the loins of Abraham:\nHe barely spoke.\nBut there are some of you that believe not. For Jesus knew from the beginning who they were that believed not, and who it was that should betray him.\nthat no advantage may be gained over us by Satan: for we are not ignorant of his devices.\nMy brethren, if any among you err from the truth, and one convert him;\n“I like it there,” replied Fern.\nFor other foundation can no man lay than that which is laid, which is Jesus Christ.\nThese things therefore the soldiers did. But there were standing by the cross of Jesus his mother, and his mother’s sister, Mary the wife of Clopas, and Mary Magdalene.\nJesus answered them, Do ye now believe?\n“I guess we can proceed without him.\nthat it might be fulfilled which was spoken through Isaiah the prophet, saying, Himself took our infirmities, and bare our diseases.\nFor now we see in a mirror, darkly; but then face to face: now I know in part; but then shall I know fully even as also I was fully known.\nAnd there are also many other things which Jesus did, the which if they should be written every one, I suppose that even the world itself would not contain the books that should be written.\n“I did indeed,” replied Charlotte in a weak voice.\nAnd they went away, and found a colt tied at the door without in the open street; and they loose him.\nFor a while he could take his direction by stopping for a second and listening to the bear moving ahead of him through the leaves.\nHe had a sort of lidded forage basket or creel woven from oak splits on a strap across his shoulder, and when he came to a place where the cove widened and there was a flat woods floor for a stretch, he looked about at the dry stalks and frost-burnt leaves of low-growing plants.\n“Oh, beautiful day, it is here at last!\nNow our Lord Jesus Christ himself, and God our Father who loved us and gave us eternal comfort and good hope through grace,\nJesus answered and said unto him, If a man love me, he will keep my word: and my Father will love him, and we will come unto him, and make our abode with him.\nThey trotted to the new Nation in fine carriages drawn by strong healthy horses.\nGreater love hath no man than this, that a man lay down his life for his friends.\nWith the sun and rain, the peas start to peek through the earth.\nHerein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins.\nFor the wrath of God is revealed from heaven against all ungodliness and unrighteousness of men, who hinder the truth in unrighteousness;\nMost decomposers live in wet and dark places.\nAnd other fell into the good ground, and grew, and brought forth fruit a hundredfold. As he said these things, he cried, He that hath ears to hear, let him hear.\nAnd from another long night by a campfire with Charley.\nAnd now ye know that which restraineth, to the end that he may be revealed in his own season.\nAnd only a thousand of them?\nThe younger women and the children and Nancy sat down in the leaves and could go no farther.\n“Look!” cried Fern, pointing.\nNow Elisabeth’s time was fulfilled that she should be delivered; and she brought forth a son.\nGo down through the orchard and stroll in the woods!\nAnd some of them would have taken him; but no man laid hands on him.\nHow he entered into the house of God when Abiathar was high priest, and ate the showbread, which it is not lawful to eat save for the priests, and gave also to them that were with him?\nThey sought therefore to take him: and no man laid his hand on him, because his hour was not yet come.\nWhen the scribe fell silent, the colonel drew on his pipe and puffed smoke.\nYou don’t have to spin a web.\nCertain considerations in regard to our situation. He gave me his assurance we’d be left alone, our deeds respected and any uncertanties as to citizenship ignored.\nFor neither was there among them any that lacked: for as many as were possessors of lands or houses sold them, and brought the prices of the things that were sold,\nSo he cometh to Simon Peter. He saith unto him, Lord, dost thou wash my feet?\nLet not him that eateth set at nought him that eateth not; and let not him that eateth not judge him that eateth: for God hath received him.\nIn the hard-packed dirt of the midway, after the glaring lights are out and the people have gone home to bed, you will find a veritable treasure of popcorn fragments, frozen custard dribblings, candied apples abandoned by tired children, sugar fluff crystals, salted almonds, popsicles, partially gnawed ice cream cones, and the wooden sticks of lollypops.\nThe kitchen table was set for breakfast, and the room smelled of coffee, bacon, damp plaster, and wood smoke from the stove.\npreaching the kingdom of God, and teaching the things concerning the Lord Jesus Christ with all boldness, none forbidding him.\nThe sky lightened.\nDo it before Charley gets to them.\nTears ran down her cheeks and she took hold of the ax and tried to pull it out of her father's hand.\ngiving thanks unto the Father, who made us meet to be partakers of the inheritance of the saints in light;\nHe reminded the people of the great comet years ago, before the memories of many in his audience.\nLook at you!\nA weakling makes trouble.\nIt is a very sociable place.\nif we are faithless, he abideth faithful; for he cannot deny himself.\nIn the second place, I am not interested in pigs.\nFor ye have the poor always with you; but me ye have not always.\nAnd Jesus said unto them, I ask you, Is it lawful on the sabbath to do good, or to do harm? to save a life, or to destroy it?\nIf I then, the Lord and the Teacher, have washed your feet, ye also ought to wash one another’s feet.\nAnd the disciples were amazed at his words. But Jesus answereth again, and saith unto them, Children, how hard is it for them that trust in riches to enter into the kingdom of God!\n“Now climb to the highest place you can get to, like this.”\nwhom withstand stedfast in your faith, knowing that the same sufferings are accomplished in your brethren who are in the world.\nAll day they searched the coves for fugitives, going up and down the many convoluted rivers and branches and creeks with names that were hard to pronounce and so impossibly resistant to spelling that the lieutenant would sit by his candle flame at night writing his reports and cursing loudly each time it became necessary to render one of the Indian watercourses into a phonetic approximation of English.\nFor even when we were with you, this we commanded you, If any will not work, neither let him eat.\nbut he shall receive a hundredfold now in this time, houses, and brethren, and sisters, and mothers, and children, and lands, with persecutions; and in the world to come eternal life.\nThe pig's up!\nAnd then lazy days floating in a riverboat to the coastal port, followed by a sailing ship up the Atlantic and past Cape Henry into the Chesapeake, and then another riverboat for the final stretch up the Potomac.\nAnd Isaiah is very bold, and saith, I was found of them that sought me not; I became manifest unto them that asked not of me.\nhe also shall drink of the wine of the wrath of God, which is prepared unmixed in the cup of his anger; and he shall be tormented with fire and brimstone in the presence of the holy angels, and in the presence of the Lamb:\nUnfair, yes.\n“Joy!\nIt means ‘not proud’ and it means ‘near the ground.’ That’s Wilbur all over.\nWhen they were thirsty they ate snow.\nBut now hath he obtained a ministry the more excellent, by so much as he is also the mediator of a better covenant, which hath been enacted upon better promises.\nFor every one that doeth evil hateth the light, and cometh not to the light, lest his works should be reproved.\nHe that saith he is in the light and hateth his brother, is in the darkness even until now.\nUp the road at the Arables’ house, Fern lugged a pail of hot water to her room and took a sponge bath.\nJesus therefore again groaning in himself cometh to the tomb. Now it was a cave, and a stone lay against it.\nAnd when the sixth hour was come, there was darkness over the whole land until the ninth hour.\nBut take ye heed: behold, I have told you all things beforehand.\nCharlie and Stephen bade them stay back.\nAnd by faith in his name hath his name made this man strong, whom ye behold and know: yea, the faith which is through him hath given him this perfect soundness in the presence of you all.\nFor if, after they have escaped the defilements of the world through the knowledge of the Lord and Saviour Jesus Christ, they are again entangled therein and overcome, the last state is become worse with them than the first.\nAnd the sixth angel sounded, and I heard a voice from the horns of the golden altar which is before God,\nAnd what drinking!\nLurvy ran for a pail of water.\nEven under such leisurely conditions, their trip took a mere month, the young couples enjoying the fine dry weather of a southern October and the spectacular change of colors and fall of leaves as they crossed Tennessee and rolled through the Ozarks.\nIt was standing there in the middle of the road\nAnd he took a great big bite.\nWhat then is the law? It was added because of transgressions, till the seed should come to whom the promise hath been made; and it was ordained through angels by the hand of a mediator.\nCharge them that are rich in this present world, that they be not highminded, nor have their hope set on the uncertainty of riches, but on God, who giveth us richly all things to enjoy;\neven the mystery which hath been hid for ages and generations: but now hath it been manifested to his saints,\nIt was apple—blossom time, and the days were getting warmer.\nWe’re born, we live a little while, we die.\nAnd Festus saith, King Agrippa, and all men who are here present with us, ye behold this man, about whom all the multitude of the Jews made suit to me, both at Jerusalem and here, crying that he ought not to live any longer.\nThey clattered against one another like potsherds when he moved.\nThere were good hiding places there—excellent cover for a rat.\nAnd the Pharisees and Sadducees came, and trying him asked him to show them a sign from heaven.\nAnd when Jesus heard it, he said unto him, One thing thou lackest yet: sell all that thou hast, and distribute unto the poor, and thou shalt have treasure in heaven: and come, follow me.\nGreater joy have I none than this, to hear of my children walking in the truth.\nFrom then on, Charlie was known as Sir Charles - the bravest of the knights of the village.\nI’m needed here right now.\nLet their eyes be darkened, that they may not see, And bow thou down their back always.\nAnd the Lord direct your hearts into the love of God, and into the patience of Christ.\nThey say unto him, Why then did Moses command to give a bill of divorcement, and to put her away?\nA little village called Wayah.\n“What’s that mean?” asked Wilbur.\nAnd he commanded them that all should sit down by companies upon the green grass.\nAnd they asked him, and said unto him, Why then baptizest thou, if thou art not the Christ, neither Elijah, neither the prophet?\nlaying up in store for themselves a good foundation against the time to come, that they may lay hold on the life which is life indeed.\nJesus therefore walked no more openly among the Jews, but departed thence into the country near to the wilderness, into a city called Ephraim; and there he tarried with the disciples.\nfor that they exchanged the truth of God for a lie, and worshipped and served the creature rather than the Creator, who is blessed for ever. Amen.\n“Well, do you understand it?” asked Mrs. Arable.\nTwilight settled over Zuckerman’s barn, and a feeling of peace.\nAnd Paul and Barnabas spake out boldly, and said, It was necessary that the word of God should first be spoken to you. Seeing ye thrust it from you, and judge yourselves unworthy of eternal life, lo, we turn to the Gentiles.\nThe big trees were visible only halfway up their wet trunks, and the creek was a muffled rush off to his left.\n“I’m going to steer a jet plane and make it bump into another one.”\nFor I through the law died unto the law, that I might live unto God.\nBut if God doth so clothe the grass of the field, which to-day is, and to-morrow is cast into the oven, shall he not much more clothe you, O ye of little faith?\nNow don’t get lost!\nMany shelves of books and bureaus of folded clothes laid rectangle by rectangle in wooden crates.\nElse if thou bless with the spirit, how shall he that filleth the place of the unlearned say the Amen at thy giving of thanks, seeing he knoweth not what thou sayest?\nWith anyone else?\nAnd thus I saw the horses in the vision, and them that sat on them, having breastplates as of fire and of hyacinth and of brimstone: and the heads of the horses are as the heads of lions; and out of their mouths proceedeth fire and smoke and brimstone.\nin whom also we were made a heritage, having been foreordained according to the purpose of him who worketh all things after the counsel of his will;\nNevertheless he that comforteth the lowly, even God, comforted us by the coming of Titus;\nBut in those days, after that tribulation, the sun shall be darkened, and the moon shall not give her light,\nMajor Ridge had seen firsthand what wonders of domination can be accomplished by the overwhelming and single-minded application of force, and finally he and his bunch of supporters conceded defeat.\nNo man can come to me, except the Father that sent me draw him: and I will raise him up in the last day.\nAnd I saw an angel coming down out of heaven, having the key of the abyss and a great chain in his hand.\nWhen the poor Indians arrived, he’d be there waiting to profit like most of the other rich Indians.\nThus hath the Lord done unto me in the days wherein he looked upon me, to take away my reproach among men.\n“I never do those things if I can avoid them,” replied the rat, sourly. “I prefer to spend my time eating, gnawing, spying, and hiding.\nHowbeit that is not first which is spiritual, but that which is natural; then that which is spiritual.\nAnd he rose up from the synagogue, and entered into the house of Simon. And Simon’s wife’s mother was holden with a great fever; and they besought him for her.\nAnd Jesus came and touched them and said, Arise, and be not afraid.\nAnd he said, So is the kingdom of God, as if a man should cast seed upon the earth;\n“Be quiet, Wilbur!” said Charlotte, who had been listening to this awful conversation.\nEarly summer days are a jubilee time for birds.\nWilbur, who was asleep in the straw, jumped up.\nAnd the lord said unto the servant, Go out into the highways and hedges, and constrain them to come in, that my house may be filled.\nseeing that through the proving of you by this ministration they glorify God for the obedience of your confession unto the gospel of Christ, and for the liberality of your contribution unto them and unto all;\nEven in full summer, the complete attire of a fashionable young woman constituted such an elaborate layered array of pleated and ruched and lapped fabrics that it was like taking something small and precious, an art object, from a series of beautiful protective cases and pouches.\nHe said, I guess next you’ll want cash payment for your services?\nSix days a week, get up before dawn and go out and beat the bushes for people and dispossess them of everything they have and march them away to the holding pens.\nCharlotte was building a web.\nAnd they sat down in ranks, by hundreds, and by fifties.\naccording to the eternal purpose which he purposed in Christ Jesus our Lord:\nin labor and travail, in watchings often, in hunger and thirst, in fastings often, in cold and nakedness.\n“Pig’s out!\nAnd the winepress was trodden without the city, and there came out blood from the winepress, even unto the bridles of the horses, as far as a thousand and six hundred furlongs. \nand laid hands on the apostles, and put them in public ward.\nDeacons in like manner must be grave, not double-tongued, not given to much wine, not greedy of filthy lucre;\nDescend!\nHe seemed almost ready to cry himself.\nFor where a testament is, there must of necessity be the death of him that made it.\nBut when Timothy came even now unto us from you, and brought us glad tidings of your faith and love, and that ye have good remembrance of us always, longing to see us, even as we also to see you;\nTake ye away therefore the talent from him, and give it unto him that hath the ten talents.\nThey’ve committed a capital crime.\nAnd they had hair as the hair of women, and their teeth were as the teeth of lions.\nHe that cometh from above is above all: he that is of the earth is of the earth, and of the earth he speaketh: he that cometh from heaven is above all.\nBut straightway a woman, whose little daughter had an unclean spirit, having heard of him, came and fell down at his feet.\nAre ye so foolish? having begun in the Spirit, are ye now perfected in the flesh?\nSalute Prisca and Aquila, and the house of Onesiphorus.\nIt is good not to eat flesh, nor to drink wine, nor to do anything whereby thy brother stumbleth.\nDuring the day’s walk, the boy Wasseton had shot several squirrels from chestnut trees with darts from a cane blowgun taller than he was.\nAnd the word of God increased; and the number of the disciples multiplied in Jerusalem exceedingly; and a great company of the priests were obedient to the faith.\nAnd if the house be worthy, let your peace come upon it: but if it be not worthy, let your peace return to you.\n“I can think better if I think alone.”\nAnd the soldiers’ counsel was to kill the prisoners, lest any of them should swim out, and escape.\nSmith asked.\nNever a kind word for a rat.”\nAnd this will we do, if God permit.\nAnd he would fain have filled his belly with the husks that the swine did eat: and no man gave unto him.\nWhy askest thou me? ask them that have heard me, what I spake unto them: behold, these know the things which I said.\nHe that findeth his life shall lose it; and he that loseth his life for my sake shall find it.\nThese are the bones of a snake that died months ago.\nand ran round about that whole region, and began to carry about on their beds those that were sick, where they heard he was.\nHe took Wilbur’s tail in his mouth and bit it, just as hard as he could bite.\nAnd they, when they had further threatened them, let them go, finding nothing how they might punish them, because of the people; for all men glorified God for that which was done.\nA queer look came over John Arable’s face.\nand are not as Moses, who put a veil upon his face, that the children of Israel should not look stedfastly on the end of that which was passing away:\nAnd the fruit of righteousness is sown in peace for them that make peace. \n“Where’s Templeton?” he demanded.\nBut when the Jews saw the multitudes, they were filled with jealousy, and contradicted the things which were spoken by Paul, and blasphemed.\nAnd they bring him unto the place Golgotha, which is, being interpreted, The place of a skull.\nYou have a big red apple, he said.\nAnd he said unto the vinedresser, Behold, these three years I come seeking fruit on this fig tree, and find none: cut it down; why doth it also cumber the ground?\nWilbur was what farmers call a spring pig, which simply means that he was born in springtime.\nAnd the earth helped the woman, and the earth opened her mouth and swallowed up the river which the dragon cast out of his mouth.\nI had brought along a bottle of good Scotch whisky, and in the spirit of conviviality I offered to share it.\nNot learning yet.\nIt was a happy day for Wilbur.\nHere, moreover, it is required in stewards, that a man be found faithful.\nAnd the bondservant abideth not in the house for ever: the son abideth for ever.\nLet the Christ, the King of Israel, now come down from the cross, that we may see and believe. And they that were crucified with him reproached him.\nAnd one of them, when he saw that he was healed, turned back, with a loud voice glorifying God;\nAnd not finding by what way they might bring him in because of the multitude, they went up to the housetop, and let him down through the tiles with his couch into the midst before Jesus.\nSalutations!\nholding faith and a good conscience; which some having thrust from them made shipwreck concerning the faith:\nBut he that is spiritual judgeth all things, and he himself is judged of no man.\nOkay, said Wolf, barely speaking.\nWhereunto then shall I liken the men of this generation, and to what are they like?\nBut he said unto them, Have ye not read what David did, when he was hungry, and they that were with him;\nAre you on your web?”\nThe words gave her courage.\nNow if there was perfection through the Levitical priesthood (for under it hath the people received the law), what further need was there that another priest should arise after the order of Melchizedek, and not be reckoned after the order of Aaron?\nSo when Jesus came, he found that he had been in the tomb four days already.\nDon’t stop now.\nHandle not, nor taste, nor touch\nand set up false witnesses, who said, This man ceaseth not to speak words against this holy place, and the law:\nHe came back out and sent two of the boys off to fetch the horses.\nHow think ye? if any man have a hundred sheep, and one of them be gone astray, doth he not leave the ninety and nine, and go unto the mountains, and seek that which goeth astray?\nWhen therefore the lord of the vineyard shall come, what will he do unto those husbandmen?\nAnd when the ruler of the feast tasted the water now become wine, and knew not whence it was (but the servants that had drawn the water knew), the ruler of the feast calleth the bridegroom,\nWherefore I was displeased with this generation, And said, They do always err in their heart: But they did not know my ways;\nAnd there went with us also certain of the disciples from Cæsarea, bringing with them one Mnason of Cyprus, an early disciple, with whom we should lodge.\nJesus answered them, Is it not written in your law, I said, Ye are gods?\nAnd he was in the wilderness forty days tempted of Satan; and he was with the wild beasts; and the angels ministered unto him.\nGod, having of old time spoken unto the fathers in the prophets by divers portions and in divers manners,\nI told Smith what Charley had said, and Smith said, We’ll wait awhile and see if some more come in.\nI am the good shepherd; and I know mine own, and mine own know me,\nthe Holy Spirit this signifying, that the way into the holy place hath not yet been made manifest, while the first tabernacle is yet standing;\nSalt is good: but if the salt have lost its saltness, wherewith will ye season it? Have salt in yourselves, and be at peace one with another. \nBut blessed are your eyes, for they see; and your ears, for they hear.\n“I won’t break it,” snarled Templeton.\nAnd he found a certain Jew named Aquila, a man of Pontus by race, lately come from Italy, with his wife Priscilla, because Claudius had commanded all the Jews to depart from Rome: and he came unto them;\nWherefore girding up the loins of your mind, be sober and set your hope perfectly on the grace that is to be brought unto you at the revelation of Jesus Christ;\nnor thieves, nor covetous, nor drunkards, nor revilers, nor extortioners, shall inherit the kingdom of God.\nAs Wilbur was studying the web, a pair of whiskers and a sharp face appeared.\nAgainst an elder receive not an accusation, except at the mouth of two or three witnesses.\nHer campaign against insects seemed sensible and useful.\nRight now I am on my way to your trough to eat your breakfast, since you haven’t got sense enough to eat it yourself.”\nand so were also James and John, sons of Zebedee, who were partners with Simon. And Jesus said unto Simon, Fear not; from henceforth thou shalt catch men.\nThey answered him, Jesus of Nazareth. Jesus saith unto them, I am he. And Judas also, who betrayed him, was standing with them.\nDon't you think that’s fascinating?”\nAnd he sware unto her, Whatsoever thou shalt ask of me, I will give it thee, unto the half of my kingdom.\nFor it hath been signified unto me concerning you, my brethren, by them that are of the household of Chloe, that there are contentions among you.\nThe maples and birches turned bright colors and the wind shook them and they dropped their leaves one by one to the ground.\nSo they, when they were dismissed, came down to Antioch; and having gathered the multitude together, they delivered the epistle.\nEverybody who visited the pigpen had a good word to say about Wilbur.\nAnd it is the Spirit that beareth witness, because the Spirit is the truth.\n“The heat is too much for him.”\nFor God sent not the Son into the world to judge the world; but that the world should be saved through him.\nLet your loins be girded about, and your lamps burning;\nThey therefore, being brought on their way by the church, passed through both Phoenicia and Samaria, declaring the conversion of the Gentiles: and they caused great joy unto all the brethren.\n“Salu-what?” he cried.\nand the rain descended, and the floods came, and the winds blew, and beat upon that house; and it fell not: for it was founded upon the rock.\nI thought my argument was simple and unassailable.\nThere were lights on the midway, and you could hear the crackle of the gambling machines and the music of the merry-go-round and the voice of the man in the beano booth calling numbers.\nHe that hath an ear, let him hear what the Spirit saith to the churches. He that overcometh shall not be hurt of the second death.\nRemember therefore how thou hast received and didst hear; and keep it, and repent. If therefore thou shalt not watch, I will come as a thief, and thou shalt not know what hour I will come upon thee.\nif any man is blameless, the husband of one wife, having children that believe, who are not accused of riot or unruly.\nNow all the publicans and sinners were drawing near unto him to hear him.\nNeither let us make trial of the Lord, as some of them made trial, and perished by the serpents.\nBacteria are almost everywhere.\nDo we then make the law of none effect through faith? God forbid: nay, we establish the law. \nAnd the angel that I saw standing upon the sea and upon the earth lifted up his right hand to heaven,\nAnd for their sakes I sanctify myself, that they themselves also may be sanctified in truth.\nFor this cause they could not believe, for that Isaiah said again,\nBut certain men clave unto him, and believed: among whom also was Dionysius the Areopagite, and a woman named Damaris, and others with them. \nAnd it came to pass, as he was praying apart, the disciples were with him: and he asked them, saying, Who do the multitudes say that I am?\nand the younger of them said to his father, Father, give me the portion of thy substance that falleth to me. And he divided unto them his living.\n“They should say Zuckerman’s Famous Pig.”\nFor if a man see thee who hast knowledge sitting at meat in an idol’s temple, will not his conscience, if he is weak, be emboldened to eat things sacrificed to idols?\nLet's burn down his cabin, they cried.\nAnd because ye are sons, God sent forth the Spirit of his Son into our hearts, crying, Abba, Father.\nAnd the chief priests and the principal men of the Jews informed him against Paul; and they besought him,\nHe, of course, lost steadily and seemed to think the other two possessed enormous luck.\nShortly thereafter, an old man reported that one afternoon he was sitting by a fire in his cabin yard when a tall man came out of the woods.\nHe heard them coming, following his trail, which must have lain behind him in the dead leaves plain as if he were dragging a plowpoint.\nDoth he thank the servant because he did the things that were commanded?\nAnd he said unto them, Where is your faith? And being afraid they marvelled, saying one to another, Who then is this, that he commandeth even the winds and the water, and they obey him?\nand those that use the world, as not using it to the full: for the fashion of this world passeth away.\nFor I came to set a man at variance against his father, and the daughter against her mother, and the daughter in law against her mother in law:\nAranea!\nThrough various channels, bits of copied correspondence continued to fall my way.\nI was in the Spirit on the Lord’s day, and I heard behind me a great voice, as of a trumpet\nHaving therefore these promises, beloved, let us cleanse ourselves from all defilement of flesh and spirit, perfecting holiness in the fear of God.\nAnd the building of the wall thereof was jasper: and the city was pure gold, like unto pure glass.\nIf there is therefore any exhortation in Christ, if any consolation of love, if any fellowship of the Spirit, if any tender mercies and compassions,\nFaithful is the saying: For if we died with him, we shall also live with him:\nBut Jesus hearing it, answered him, Fear not: only believe, and she shall be made whole.\nI had been to New Echota many times and was never sure whether it represented a grand experiment or a pathetically inept confidence game.\n“But don’t fail to let me know if there’s anything I can do to help, no matter how slight.”\nBut if we shall say, From men; all the people will stone us: for they are persuaded that John was a prophet.\nRain upset Wilbur’s plans.\nBut if any provideth not for his own, and specially his own household, he hath denied the faith, and is worse than an unbeliever.\nAnd he went forth again by the sea side; and all the multitude resorted unto him, and he taught them.\nHe that is not with me is against me; and he that gathereth not with me scattereth.\nPreviously to entering upon this as a question of numbers, physical strength, interest in the country they inhabit, their means of subsistence & ca.\nThere arose a division again among the Jews because of these words.\nIf you are in the mountains alone for some time—many days at minimum, and it helps if you are fasting—the forest grows tired of its wariness toward you.\nAll I had to offer them was five pounds of dried beans and an ugly deal, but necessary and without reasonable option.\nShe loved to stroke him, to feed him, to put him to bed.\nWhat, have ye not houses to eat and to drink in? or despise ye the church of God, and put them to shame that have not? What shall I say to you? shall I praise you? In this I praise you not.\nFighting?\nLittlefish replied, It is very nice to meet you, Knottyhead.\nHe still worried some about the future, as he could hardly believe that a mere spider would be able to save his life.\nMr. Arable smiled.\nAfterward the woman also died.\nEven the dust from your city, that cleaveth to our feet, we wipe off against you: nevertheless know this, that the kingdom of God is come nigh.\nThey soon ceased listening and began wondering how agreeing with me might benefit anyone who mattered. In particular, themselves.\nWhile he spake these things unto them, behold, there came a ruler, and worshipped him, saying, My daughter is even now dead: but come and lay thy hand upon her, and she shall live.\nAll they did to one of the girls when it became known that she intended to marry an Indian was burn her in effigy on the main street and chime all the church bells of the town hourly throughout the night.\nBut new wine must be put into fresh wine-skins.\nWherein ye greatly rejoice, though now for a little while, if need be, ye have been put to grief in manifold trials,\nAnd he said unto them, How is it that ye sought me? knew ye not that I must be in my Father’s house?\nYe yourselves know that these hands ministered unto my necessities, and to them that were with me.\nAnd I knew him not; but that he should be made manifest to Israel, for this cause came I baptizing in water.\nfor in him we live, and move, and have our being; as certain even of your own poets have said, For we are also his offspring.\nJesus cometh, and taketh the bread, and giveth them, and the fish likewise.\nwhom I have sent unto you for this very purpose, that ye may know our state, and that he may comfort your hearts;\nAnd wisdom is justified of all her children.\nAt a distance of ten paces, Wasseton had driven long shaved hickory darts through their skulls with a single plosive breath.\neven so have these also now been disobedient, that by the mercy shown to you they also may now obtain mercy.\nHe’s trying to lure you back into captivity-ivity.\nAnd Judas, who betrayed him, answered and said, Is it I, Rabbi? He saith unto him, Thou hast said.\n“Where are you?” asked Wilbur.\n“Yes?”\nIf then ye were raised together with Christ, seek the things that are above, where Christ is, seated on the right hand of God.\nbut shun foolish questionings, and genealogies, and strifes, and fightings about the law; for they are unprofitable and vain.\nBe ye imitators of me, even as I also am of Christ.\nShe bent her knees and sank below the water.\nNow the feast of the Jews, the feast of tabernacles, was at hand.\nContent to let worrying wait for later.\nAnd they that dwell on the earth rejoice over them, and make merry; and they shall send gifts one to another; because these two prophets tormented them that dwell on the earth.\nAnd under his influence they became drunk as lords and about half of them spent their days laughing and the other half sitting with their backs against the stockade palings and their blankets over their heads, either passed out or crying.\nBut if to live in the flesh,—if this shall bring fruit from my work, then what I shall choose I know not.\nAnd we know and have believed the love which God hath in us. God is love; and he that abideth in love abideth in God, and God abideth in him.\nLurvy felt weak.\nBut, because of fornications, let each man have his own wife, and let each woman have her own husband.\nThe phrase that might be used by someone who has never seen a man die is that Perry was dead before he hit the ground.\nAnd when the disciples saw him walking on the sea, they were troubled, saying, It is a ghost; and they cried out for fear.\nEven so did the Lord ordain that they that proclaim the gospel should live of the gospel.\nand they shall mock him, and shall spit upon him, and shall scourge him, and shall kill him; and after three days he shall rise again.\nI, though, had spent enough years in these wet woods to know how to do.\nSome have an acid taste that almost stings our tongues.\nFor they all seek their own, not the things of Jesus Christ.\nWhen Jesus had spoken these words, he went forth with his disciples over the brook Kidron, where was a garden, into which he entered, himself and his disciples.\nI will let you have your choice of everything in the trough and I won’t touch a thing until you're through.”\n“Control myself?” yelled Fern.\nthe clerk said.\nAfter that, they sold liquor from their persons, in coat pockets and satchels.\nAnd the Pharisees came forth, and began to question with him, seeking of him a sign from heaven, trying him.\nIf he called them gods, unto whom the word of God came (and the scripture cannot be broken),\nAnd when there had been much questioning, Peter rose up, and said unto them, Brethren, ye know that a good while ago God made choice among you, that by my mouth the Gentiles should hear the word of the gospel, and believe.\n“Yes,” she replied in her sweet, musical voice,  “I always give them an anaesthetic so they won’t feel pain.\nCharley walked partway to the fire and stopped.\nBlessed be the Lord, the God of Israel; For he hath visited and wrought redemption for his people,\nTo which end we also pray always for you, that our God may count you worthy of your calling, and fulfil every desire of goodness and every work of faith, with power;\nThen I cooked the quails slow and patient on spits over a fire burned down to red coals.\n“Is this true?” he asked.\nAnd his disciples asked him, saying, Rabbi, who sinned, this man, or his parents, that he should be born blind?\nThe Lord said unto my Lord, Sit thou on my right hand, Till I put thine enemies underneath thy feet?\nI taught the young clerk minding the till to say, Well, maybe you’d better go back to New Jersey then.\nEat grass!\nFor as thou art going with thine adversary before the magistrate, on the way give diligence to be quit of him; lest haply he drag thee unto the judge, and the judge shall deliver thee to the officer, and the officer shall cast thee into prison.\nas it is written, There is none righteous, no, not one;\nAnd it came to pass in these days, that he went out into the mountain to pray; and he continued all night in prayer to God.\n“They say he’s quite a pig.”\nNow, who was this Sequoyah? my father asks.\nI guess you're licked, Wilbur.\nWilbur heaved a great sigh of relief.\nIt says so, right there in the middle of the web.”\n“Go along to bed, then,” said Charlotte.\nTempleton crept into the crate and buried himself in the straw.\nAnd the ruler of the synagogue, being moved with indignation because Jesus had healed on the sabbath, answered and said to the multitude, There are six days in which men ought to work: in them therefore come and be healed, and not on the day of the sabbath.\nFor what saith the scripture? And Abraham believed God, and it was reckoned unto him for righteousness.\nand they bound him, and led him away, and delivered him up to Pilate the governor.\nAnd, similarly, we were left with no choice.\n“Oh, I don’t remember,” said Wilbur.\nand spared not the ancient world, but preserved Noah with seven others, a preacher of righteousness, when he brought a flood upon the world of the ungodly;\nBut Jesus said, Forbid him not: for there is no man who shall do a mighty work in my name, and be able quickly to speak evil of me.\nMaybe alone.\n“I’m scared to death,” whispered Mrs. Zuckerman.\nThey climbed round and round on the sac, exploring their new world. Then three more little spiders.\nBy Silvanus, our faithful brother, as I account him, I have written unto you briefly, exhorting, and testifying that this is the true grace of God: stand ye fast therein.\nAnd he said unto them, Verily I say unto you, There is no man that hath left house, or wife, or brethren, or parents, or children, for the kingdom of God’s sake,\nIn the end, Lichen’s people came on down to Wayah with me.\nAnd not many days after, the younger son gathered all together and took his journey into a far country; and there he wasted his substance with riotous living.\nWhen the brittle crackle of shots reached me, not appreciably louder than eight dry sticks breaking, it seemed allied with the brevity of life, with time, the sound we make as we fall through its abyss into darkness.\nAnd a multitude was sitting about him; and they say unto him, Behold, thy mother and thy brethren without seek for thee.\nHe felt that he should make a short speech on this very important occasion.\nbut refuse profane and old wives’ fables. And exercise thyself unto godliness:\nAnd the fifth poured out his bowl upon the throne of the beast; and his kingdom was darkened; and they gnawed their tongues for pain,\nBut what went ye out to see? a man clothed in soft raiment? Behold, they that wear soft raiment are in kings’ houses.\nBoth Ross and Ridge viewed me with a great deal of wariness, since I represented Indians living outside the Nation, and when I tried to suggest we join ranks in our efforts, each man let me know I was on my own and warned me not to muddy their waters with my little problems.\nsaying, I will declare thy name unto my brethren, In the midst of the congregation will I sing thy praise.\nthere came Joseph of Arimathæa, a councillor of honorable estate, who also himself was looking for the kingdom of God; and he boldly went in unto Pilate, and asked for the body of Jesus.\nWherefore that field was called, The field of blood, unto this day.\nof the teaching of baptisms, and of laying on of hands, and of resurrection of the dead, and of eternal judgment.\nAnd the fruits which thy soul lusted after are gone from thee, and all things that were dainty and sumptuous are perished from thee, and men shall find them no more at all.\nsaying, Sir, we remember that that deceiver said while he was yet alive, After three days I rise again.\nThen she spoke in a voice so low Wilbur could hardly hear the words.\nThe crickets sang in the grasses.\nVerily, verily, I say unto you, He that heareth my word, and believeth him that sent me, hath eternal life, and cometh not into judgment, but hath passed out of death into life.\nA hell.\nhave all gifts of healings? do all speak with tongues? do all interpret?\nwho is on the right hand of God, having gone into heaven; angels and authorities and powers being made subject unto him. \n“I’m up here.”\nhow he entered into the house of God, and took and ate the showbread, and gave also to them that were with him; which it is not lawful to eat save for the priests alone?\nin stripes, in imprisonments, in tumults, in labors, in watchings, in fastings;\nThey answered and said unto him, Our father is Abraham. Jesus saith unto them, If ye were Abraham’s children, ye would do the works of Abraham.\nserving the Lord with all lowliness of mind, and with tears, and with trials which befell me by the plots of the Jews;\nWherefore God gave them up in the lusts of their hearts unto uncleanness, that their bodies should be dishonored among themselves:\nThere was in the days of Herod, king of Judæa, a certain priest named Zacharias, of the course of Abijah: and he had a wife of the daughters of Aaron, and her name was Elisabeth.\nAnd he would not for a while: but afterward he said within himself, Though I fear not God, nor regard man;\nEven as the Father hath loved me, I also have loved you: abide ye in my love.\nAnd when she knew Peter’s voice, she opened not the gate for joy, but ran in, and told that Peter stood before the gate.\nAnd Jesus said unto them, Render unto Cæsar the things that are Cæsar’s, and unto God the things that are God’s. And they marvelled greatly at him.\nHe felt very happy.\nand they began to salute him, Hail, King of the Jews!\nWherefore I make known unto you, that no man speaking in the Spirit of God saith, Jesus is anathema; and no man can say, Jesus is Lord, but in the Holy Spirit.\n“This is the most terrible case of injustice I ever heard of.”\nPaul, an apostle of Christ Jesus according to the commandment of God our Saviour, and Christ Jesus our hope;\nBack then our mobility was by foot.\nThen I began to get scared.\nI went to check on Smith, who had built his own fire.\nA spider's life can’t help being something of a mess, with all this trapping and eating flies.\nThen came a quiet morning when Mr. Zuckerman opened a door on the north side.\nFor the first few days of his life, Wilbur was allowed to live in a box near the stove in the kitchen.\nWhen Jesus therefore had received the vinegar, he said, It is finished: and he bowed his head, and gave up his spirit.\nand being in readiness to avenge all disobedience, when your obedience shall be made full.\n“Isn’t that nice!”\nThe boys sprawled in their uniforms and overcoats on ground cloths waterproofed with wax.\nThose had been the decisions someone needed to call.\nBut when her masters saw that the hope of their gain was gone, they laid hold on Paul and Silas, and dragged them into the marketplace before the rulers,\nAnd they came unto John, and said to him, Rabbi, he that was with thee beyond the Jordan, to whom thou hast borne witness, behold, the same baptizeth, and all men come to him.\nAnd the ten horns that thou sawest are ten kings, who have received no kingdom as yet; but they receive authority as kings, with the beast, for one hour.\n“He’s fainted.\nWho is wise and understanding among you? let him show by his good life his works in meekness of wisdom.\nBut arise, and get thee down, and go with them, nothing doubting: for I have sent them.\nAnd ye took up the tabernacle of Moloch, And the star of the god Rephan, The figures which ye made to worship them: And I will carry you away beyond Babylon.\nNow about that time Herod the king put forth his hands to afflict certain of the church.\nShe walked into the river.\n“So!” he said, in disgust.\nTempleton lay back in the straw.\nApparently not one of my well-wishers, I said.\nOur fathers ate the manna in the wilderness; as it is written, He gave them bread out of heaven to eat.\nThen shall the righteous shine forth as the sun in the kingdom of their Father. He that hath ears, let him hear.\nAnd when Jesus had crossed over again in the boat unto the other side, a great multitude was gathered unto him; and he was by the sea.\nWriting will make us strong.\nthen wherefore gavest thou not my money into the bank, and I at my coming should have required it with interest?\nAnd he spake a parable unto them, saying, The ground of a certain rich man brought forth plentifully:\nOverthrow not for meat’s sake the work of God. All things indeed are clean; howbeit it is evil for that man who eateth with offence.\nOr else let these men themselves say what wrong-doing they found when I stood before the council,\nWe sat by the fire in the trading post, and I listened to his story.\nHow far do we have to go?\nFor there is no distinction between Jew and Greek: for the same Lord is Lord of all, and is rich unto all that call upon him:\nBut Peter and John answered and said unto them, Whether it is right in the sight of God to hearken unto you rather than unto God, judge ye:\n“Charlotte what?” asked Wilbur, eagerly.\nBut Judas Iscariot, one of his disciples, that should betray him, saith,\nFor which is easier, to say, Thy sins are forgiven; or to say, Arise, and walk?\nAnd whosoever shall give to drink unto one of these little ones a cup of cold water only, in the name of a disciple, verily I say unto you he shall in no wise lose his reward. \nBut all things when they are reproved are made manifest by the light: for everything that is made manifest is light.\nAnd Peter said unto them, Repent ye, and be baptized every one of you in the name of Jesus Christ unto the remission of your sins; and ye shall receive the gift of the Holy Spirit.\nIf thou therefore wilt worship before me, it shall all be thine.\nto the only wise God, through Jesus Christ, to whom be the glory for ever. Amen.\n“Do you think she'll ever start thinking about something besides pigs and sheep and geese and spiders?”\n“You mean you eat flies?” gasped Wilbur.\nCharley and his family fled before us like driven deer or quail flushed to the guns by beaters.\nAnd straightway the leprosy departed from him, and he was made clean.\nBut Jesus answered and said unto them, Ye do err, not knowing the scriptures, nor the power of God.\nAnd they straightway left the nets, and followed him.\nAnd day by day, continuing stedfastly with one accord in the temple, and breaking bread at home, they took their food with gladness and singleness of heart,\nI met the famous actress Mrs. Chapman at a small party in the house of a senator from one of the upper states, a squat dark little man with almost no hair and only a dense chin beard for compensation.\nWhen I discovered this fact, I brought it up at a dinner.\nand knowest his will, and approvest the things that are excellent, being instructed out of the law,\nBelievest thou not that I am in the Father, and the Father in me? the words that I say unto you I speak not from myself: but the Father abiding in me doeth his works.\n“Well, I don’t like to spread bad news,” said the sheep, “but they’re fattening you up because they’re going to kill you, that’s why.”\nor, Who shall descend into the abyss? (that is, to bring Christ up from the dead.)\nsound speech, that cannot be condemned; that he that is of the contrary part may be ashamed, having no evil thing to say of us.\nWhat end does that suggest?\nye also helping together on our behalf by your supplication; that, for the gift bestowed upon us by means of many, thanks may be given by many persons on our behalf.\nBy faith Noah, being warned of God concerning things not seen as yet, moved with godly fear, prepared an ark to the saving of his house; through which he condemned the world, and became heir of the righteousness which is according to faith.\nFern knew it was almost suppertime but she couldn’t bear to leave.\nNow on the morrow, which is the day after the Preparation, the chief priests and the Pharisees were gathered together unto Pilate,\nSalute Ampliatus my beloved in the Lord.\nSpiders have to eat, the same as the rest of us.”\nHeaven and earth shall pass away, but my words shall not pass away.\n“He’s the rat,” replied Fern.\nAnd they passed through Pisidia, and came to Pamphylia.\nThe beast that thou sawest was, and is not; and is about to come up out of the abyss, and to go into perdition. And they that dwell on the earth shall wonder, they whose name hath not been written in the book of life from the foundation of the world, when they behold the beast, how that he was, and is not, and shall come.\nand thou shalt be blessed; because they have not wherewith to recompense thee: for thou shalt be recompensed in the resurrection of the just.\nAlso, Bear was pensive and mournful over the state of his troublesome marriage to Sara and her grievous sisters, and the two endeavors, politics and love, were part of each other, both necessary in his attempt to rebalance a world gone wrong, to try to get back his time again.\nIt is for chastening that ye endure; God dealeth with you as with sons; for what son is there whom his father chasteneth not?\nAnd they were on the way, going up to Jerusalem; and Jesus was going before them: and they were amazed; and they that followed were afraid. And he took again the twelve, and began to tell them the things that were to happen unto him,\nto the end he may establish your hearts unblameable in holiness before our God and Father, at the coming of our Lord Jesus with all his saints. \nInstantly, a ball of fire about the size of a basketball lifted up from somewhere in the tree and faded out a few feet above the tree.\nAnd who are you?”\nand returned from the tomb, and told all these things to the eleven, and to all the rest.\nAnd I know that, when I come unto you, I shall come in the fulness of the blessing of Christ.\nThen, without transition, Charley told how Nancy tailored his pants.\n“Take that thing out of here!” said Mrs. Zuckerman.\n“May I have your name?” she asked, politely.\nXXII. A Warm Wind  \nbut thanks be to God, who giveth us the victory through our Lord Jesus Christ.\nAnd he said, Who art thou, Lord? And he said, I am Jesus whom thou persecutest:\nand Paul, as his custom was, went in unto them, and for three sabbath days reasoned with them from the scriptures,\nFor the days shall come upon thee, when thine enemies shall cast up a bank about thee, and compass thee round, and keep thee in on every side,\nFor if we believe that Jesus died and rose again, even so them also that are fallen asleep in Jesus will God bring with him.\nAnd Jesus said unto him, Seest thou these great buildings? there shall not be left here one stone upon another, which shall not be thrown down.\n“We all do.”\nI have to think things out, catch what I can, take what comes. And it just so happens, my friend, that what comes is flies and insects and bugs.\nAnd he laid his hands upon her: and immediately she was made straight, and glorified God.\nwho once was unprofitable to thee, but now is profitable to thee and to me:\nSome for medicine.\nThey saw no use for writing.\nLate afternoons I could smell the smoke from their cook fires rising, and then by dusk the young officers began coming up the hill for their drinks and an evening of conversation.\nBut they that conducted Paul brought him as far as Athens: and receiving a commandment unto Silas and Timothy that they should come to him with all speed, they departed.\nNow he spake of Judas the son of Simon Iscariot, for he it was that should betray him, being one of the twelve. \nAnd from Miletus he sent to Ephesus, and called to him the elders of the church.\nI had on a regular black frock coat, but my waistcoat matched the turban, as did the cravat securing the neck of my starched white shirt.\n“Yes indeed!\nAnd again he began to teach by the sea side. And there is gathered unto him a very great multitude, so that he entered into a boat, and sat in the sea; and all the multitude were by the sea on the land.\n“All right,” he said.\nAnd when he saw Jesus, he cried out, and fell down before him, and with a loud voice said, What have I to do with thee, Jesus, thou Son of the Most High God? I beseech thee, torment me not.\nWhat therefore God hath joined together, let not man put asunder.\nBut ye are they that have continued with me in my temptations;\nThe little boy said, Look at you!\nAnd of course Avery was tickled to find himself so wet, and he immediately started to act like a clown.\nNo, I said.\nOne of themselves, a prophet of their own, said, Cretans are always liars, evil beasts, idle gluttons.\nFor ye, brethren, were called for freedom; only use not your freedom for an occasion to the flesh, but through love be servants one to another.\nThe trough tipped up and then came down with a slap.\n“Bee-bee-bee!”\nHe motioned me away with flicks of his two hands.\nAnd ye are puffed up, and did not rather mourn, that he that had done this deed might be taken away from among you.\nFor mine eyes have seen thy salvation,\nOn each web, working busily was one of Charlotte's daughters.\nBut I will come unto you, when I shall have passed through Macedonia; for I pass through Macedonia;\nSluggishly it rose to life.\nAnd when they came unto the place which is called The skull, there they crucified him, and the malefactors, one on the right hand and the other on the left.\nto the end that we should be unto the praise of his glory, we who had before hoped in Christ:\nBut when some were hardened and disobedient, speaking evil of the Way before the multitude, he departed from them, and separated the disciples, reasoning daily in the school of Tyrannus.\n“You’ve got a frog—isn’t that enough?”\nAnd whosoever shall compel thee to go one mile, go with him two.\n“Let the blood rush to your head!”\nAnd it came to pass, while they communed and questioned together, that Jesus himself drew near, and went with them.\nFor what?\nBut I say to the unmarried and to widows, It is good for them if they abide even as I.\n“You don’t know the first thing about egg laying, Wilbur.\nBehold, I Paul say unto you, that, if ye receive circumcision, Christ will profit you nothing.\nbut the tongue can no man tame; it is a restless evil, it is full of deadly poison.\nBut give for alms those things which are within; and behold, all things are clean unto you.\nChurning down the broad brown rivers of the coastal plain, tying up at night at some backwoods landing with torches burning globes of yellow light against the black night and turpentine barrels and cotton bales stacked high on the dock and the slaves working shirtless and sweating and singing mighty rhythmic songs while they loaded the goods onto the boat.\nThis cousin of hers built a web across a stream.\nThen the chief captain came near, and laid hold on him, and commanded him to be bound with two chains; and inquired who he was, and what he had done.\nBut the unclean spirit, when he is gone out of the man, passeth through waterless places, seeking rest, and findeth it not.\nFor if the inheritance is of the law, it is no more of promise: but God hath granted it to Abraham by promise.\nFor I say not this that others may be eased and ye distressed;\nand after these things he gave them judges until Samuel the prophet.\nAnd if indeed they had been mindful of that country from which they went out, they would have had opportunity to return.\nFor I reckon that I am not a whit behind the very chiefest apostles.\nAnd Jesus entered into the temple of God, and cast out all them that sold and bought in the temple, and overthrew the tables of the money-changers, and the seats of them that sold the doves;\n“Call up the Zuckermans,” suggested Mrs. Arable to Fern.\nHow could that be right?\nI talked with seat-fillers in various departments and agencies.\nAnd he said unto them, What would ye that I should do for you?\ninasmuch as he hath appointed a day in which he will judge the world in righteousness by the man whom he hath ordained; whereof he hath given assurance unto all men, in that he hath raised him from the dead.\nMr. Arable fixed a small yard specially for Wilbur under an apple tree, and gave him a large wooden box full of straw, with a doorway cut in it so he could walk in and out as he pleased.\nwho is he that condemneth? It is Christ Jesus that died, yea rather, that was raised from the dead, who is at the right hand of God, who also maketh intercession for us.\nThen—only after the four men began falling, knee joints gone limp—the reports of gunfire arrived across the river where I stood watching.\nHe needed something from me, and I was afraid it might have been absolution.\nAnd everywhere good hiding and good hunting.\nMany will say to me in that day, Lord, Lord, did we not prophesy by thy name, and by thy name cast out demons, and by thy name do many mighty works?\nCharley moved jittery as a crawfish.\nNow this I say: A covenant confirmed beforehand by God, the law, which came four hundred and thirty years after, doth not disannul, so as to make the promise of none effect.\nAnd if he sin against thee seven times in the day, and seven times turn again to thee, saying, I repent; thou shalt forgive him.\nAnd the sixth poured out his bowl upon the great river, the river Euphrates; and the water thereof was dried up, that the way might be made ready for the kings that come from the sunrising.\nand led him to Annas first; for he was father in law to Caiaphas, who was high priest that year.\nAll the way through, line by line, we laughed like idiots, especially at the conclusion about lips of garnet.\nThe last enemy that shall be abolished is death.\nBut when he saw the multitudes, he was moved with compassion for them, because they were distressed and scattered, as sheep not having a shepherd.\nAn enormous voice over the loudspeaker said: “Attention, please!\nBut all their works they do to be seen of men: for they make broad their phylacteries, and enlarge the borders of their garments,\nthe same came unto him by night, and said to him, Rabbi, we know that thou art a teacher come from God; for no one can do these signs that thou doest, except God be with him.\nAnd every one who shall speak a word against the Son of man, it shall be forgiven him: but unto him that blasphemeth against the Holy Spirit it shall not be forgiven.\nAnd as ye enter into the house, salute it.\nThey just keep trotting back and forth across the bridge thinking there is something better on the other side.\nBut Jesus answered them, My Father worketh even until now, and I work.\n“Day is almost here,” he thought.\n“What?” said Wilbur.\nThey had spread themselves up each slope of the cove and came on relentlessly, driving Charley’s people forward.\nI say unto you, In that night there shall be two men on one bed; the one shall be taken, and the other shall be left.\nSo that they are no more two, but one flesh. What therefore God hath joined together, let not man put asunder.\nIn his humiliation his judgment was taken away: His generation who shall declare? For his life is taken from the earth.\nmay be strong to apprehend with all the saints what is the breadth and length and height and depth,\nBut the publican, standing afar off, would not lift up so much as his eyes unto heaven, but smote his breast, saying, God, be thou merciful to me a sinner.\nAnd they arrived at the country of the Gerasenes, which is over against Galilee.\nand last of all, as to the child untimely born, he appeared to me also.\nOf the Jews five times received I forty stripes save one.\nHe straightened his whiskers.\nBut Saul, who is also called Paul, filled with the Holy Spirit, fastened his eyes on him,\nThe other three boys were farther back in the woods, sitting with their muskets beside them.\nWho cares anything about old Templeton?”\nBut the Lord said unto him, Go thy way: for he is a chosen vessel unto me, to bear my name before the Gentiles and kings, and the children of Israel:\nIt is enough for the disciple that he be as his teacher, and the servant as his lord. If they have called the master of the house Beelzebub, how much more them of his household!\nAs therefore ye received Christ Jesus the Lord, so walk in him,\nAnd I heard another voice from heaven, saying, Come forth, my people, out of her, that ye have no fellowship with her sins, and that ye receive not of her plagues:\nThe little apple tree said, You have cared for me and loved me.\nHe was in the world, and the world was made through him, and the world knew him not.\nA bold creek cutting through the middle of the farm, running clear over mossy stones.\nHonor thy father and mother (which is the first commandment with promise),\nSmith and his boys had the inevitable potatoes and bacon, a partial sack of flour with little yellowish miller-moth grubs working in it, and a few bruised cabbages.\nWell, fewer of us than that.\nthat the creation itself also shall be delivered from the bondage of corruption into the liberty of the glory of the children of God.\nVerily, verily, I say unto you, If a man keep my word, he shall never see death.\nhow that our gospel came not unto you in word only, but also in power, and in the Holy Spirit, and in much assurance; even as ye know what manner of men we showed ourselves toward you for your sake.\nNow that I know where you are, I will come back and visit you.\nAnd I was alive apart from the law once: but when the commandment came, sin revived, and I died;\nGive diligence to present thyself approved unto God, a workman that needeth not to be ashamed, handling aright the word of truth.\nHow long does it take a goose egg to hatch?”\nfor he that giveth him greeting partaketh in his evil works.\nThe Fair is almost over.\nBut Jesus did not trust himself unto them, for that he knew all men,\nLet all that ye do be done in love.\neven as the Father knoweth me, and I know the Father; and I lay down my life for the sheep.\nAvery carried a live frog in his hand.\nIf Wilbur is killed and his trough stands empty day after day, you'll grow so thin we can look right through your stomach and see objects on the other side.  \nAnd behold, I send forth the promise of my Father upon you: but tarry ye in the city, until ye be clothed with power from on high.\n(Now all the Athenians and the strangers sojourning there spent their time in nothing else, but either to tell or to hear some new thing.)\n“Salutations!” it said.\nthough he was a Son, yet learned obedience by the things which he suffered;\nAnd they that were sent, returning to the house, found the servant whole.\nI am the bread of life.\nHold the pattern of sound words which thou hast heard from me, in faith and love which is in Christ Jesus.\nAnd when his audience grew bored, he would spring into the air and do a back ﬂip with a half twist.\nI Jesus have sent mine angel to testify unto you these things for the churches. I am the root and the offspring of David, the bright, the morning star.\nOf course you will.\nUsually he slept during the daytime and was abroad only after dark.\nFor to you is the promise, and to your children, and to all that are afar off, even as many as the Lord our God shall call unto him.\nAnd they cast him forth out of the vineyard, and killed him. What therefore will the lord of the vineyard do unto them?\nGod is a Spirit: and they that worship him must worship in spirit and truth.\nHe hath showed strength with his arm; He hath scattered the proud in the imagination of their heart.\nto open their eyes, that they may turn from darkness to light and from the power of Satan unto God, that they may receive remission of sins and an inheritance among them that are sanctified by faith in me.\nHe waved to them with his fin and swam on.\nAnd there were gathered unto him great multitudes, so that he entered into a boat, and sat; and all the multitude stood on the beach.\nFor some thought, because Judas had the bag, that Jesus said unto him, Buy what things we have need of for the feast; or, that he should give something to the poor.\nAvery crawled out of the crate on hands and knees, making faces at Wilbur.\nIt is written in the prophets, And they shall all be taught of God. Every one that hath heard from the Father, and hath learned, cometh unto me.\nWhat doth it profit, my brethren, if a man say he hath faith, but have not works? can that faith save him?\nAnd whosoever shall speak a word against the Son of man, it shall be forgiven him; but whosoever shall speak against the Holy Spirit, it shall not be forgiven him, neither in this world, nor in that which is to come.\nThat would put ideas into his head.\nIt smelled of hay and it smelled of manure.\nBut should we say, From men—they feared the people: for all verily held John to be a prophet.\nif so be that ye continue in the faith, grounded and stedfast, and not moved away from the hope of the gospel which ye heard, which was preached in all creation under heaven; whereof I Paul was made a minister.\nJesus therefore said unto them again, Verily, verily, I say unto you, I am the door of the sheep.\nI took just a little of it in a tin cup, and mostly sat drinking coffee and enjoyed watching the people eat.\nThe Lord will deliver me from every evil work, and will save me unto his heavenly kingdom: to whom be the glory for ever and ever. Amen.\nwho both killed the Lord Jesus and the prophets, and drove out us, and please not God, and are contrary to all men;\nThen shall the righteous answer him, saying, Lord, when saw we thee hungry, and fed thee? or athirst, and gave thee drink?\nAnd when he had said these words, the Jews departed, and had great reasoning among themselves.\nand if Satan casteth out Satan, he is divided against himself; how then shall his kingdom stand?\nHe heard them wheeze in their effort.\nHe boiled creek water in a kettle and set it off the fire and steeped rounds cut from a piece of ginseng root.\nCharlotte's children were here at last.\nand they gave them for the potter’s field, as the Lord appointed me.\nTempleton was nowhere to be seen.\nI desire therefore that the younger widows marry, bear children, rule the household, give no occasion to the adversary for reviling:\nWhen therefore they had rowed about five and twenty or thirty furlongs, they behold Jesus walking on the sea, and drawing nigh unto the boat: and they were afraid.\nAnd Wilbur was crying again, for the second time in two days.\nIt went round and round in the sky and seemed twice as high as by day.\nAnd these all, having had witness borne to them through their faith, received not the promise,\nor he that exhorteth, to his exhorting: he that giveth, let him do it with liberality; he that ruleth, with diligence; he that showeth mercy, with cheerfulness.\nbut ye are come unto mount Zion, and unto the city of the living God, the heavenly Jerusalem, and to innumerable hosts of angels,\nCharley placed both hands in leverage against the place where his knee joined his thighbone.\nBut as touching the dead, that they are raised; have ye not read in the book of Moses, in the place concerning the Bush, how God spake unto him, saying, I am the God of Abraham, and the God of Isaac, and the God of Jacob?\nAnd that servant, who knew his lord’s will, and made not ready, nor did according to his will, shall be beaten with many stripes;\n“Fern says the animals talk to each other.\nAnd there arose also a contention among them, which of them was accounted to be greatest.\nand said unto them, Whosoever shall receive this little child in my name receiveth me: and whosoever shall receive me receiveth him that sent me: for he that is least among you all, the same is great.\nthe secrets of his heart are made manifest; and so he will fall down on his face and worship God, declaring that God is among you indeed.\nI now rejoice, not that ye were made sorry, but that ye were made sorry unto repentance; for ye were made sorry after a godly sort, that ye might suffer loss by us in nothing.\nAnd she, being put forward by her mother, saith, Give me here on a platter the head of John the Baptist.\n“Templeton,” he said, “I will make you a solemn promise. Get Charlotte's egg sac for me, and from now on I will let you eat first, when Lurvy slops me.\nAnd when he had thus spoken, he kneeled down and prayed with them all.\nAnd they cast out many demons, and anointed with oil many that were sick, and healed them.\nSo then as through one trespass the judgment came unto all men to condemnation; even so through one act of righteousness the free gift came unto all men to justification of life.\nPoor Wilbur was dazed and frightened by this hullabaloo.\n“Too many things on my mind,” said Wilbur.\n“Let him die, said the rat.\n“I am an old friend of your mother’s,” said Wilbur.\nYou will find that the conditions at a fair will surpass your wildest dreams.\nThe boy was so proud.\nLurvy picked up a pitchfork and walked away to get some clean straw.\nNow it was the Preparation of the passover: it was about the sixth hour. And he saith unto the Jews, Behold, your King!\nFight the good fight of the faith, lay hold on the life eternal, whereunto thou wast called, and didst confess the good confession in the sight of many witnesses.\nIt perched on a tree and sang out “un, un, un”.  \nWhen she returned,  she wore rubber boots and an old raincoat, and she carried a bucket of buttermilk and a small wooden paddle.\nAnd ye shall hear of wars and rumors of wars; see that ye be not troubled: for these things must needs come to pass; but the end is not yet.\nSee that ye despise not one of these little ones: for I say unto you, that in heaven their angels do always behold the face of my Father who is in heaven.\nAnd he entered into the temple, and began to cast out them that sold,\n“Bee-bee-bee!”\nClattering silver service, footed trays and platters, tiny salt bowls, and endless flatware.\nFor I am already being offered, and the time of my departure is come.\nAnd he came in the Spirit into the temple: and when the parents brought in the child Jesus, that they might do concerning him after the custom of the law,\nThe Cherokee Nation praised the writing Sequoyah invented.\nIt's very small and weak, and it will never amount to anything.\nNow when the synagogue broke up, many of the Jews and of the devout proselytes followed Paul and Barnabas; who, speaking to them, urged them to continue in the grace of God.\n“Reconsider, reconsider!” cried the goose.\nFor if ye believed Moses, ye would believe me; for he wrote of me.\nEven so ye also, when ye shall have done all the things that are commanded you, say, We are unprofitable servants; we have done that which it was our duty to do.\nhe that saith he abideth in him ought himself also to walk even as he walked.\n“It’s about Fern,” she explained.\n“I just don’t have much pep any more. I guessI feel sad because I won’t ever see my children.”\nI thought it necessary therefore to entreat the brethren, that they would go before unto you, and make up beforehand your aforepromised bounty, that the same might be ready as a matter of bounty, and not of extortion.\n“But, my friends, if that ancient egg ever breaks, this barn will be untenable.”\nbut into the second the high priest alone, once in the year, not without blood, which he offereth for himself, and for the errors of the people:\nand that repentance and remission of sins should be preached in his name unto all the nations, beginning from Jerusalem.\nAnd Jesus turned, and beheld them following, and saith unto them, What seek ye? And they said unto him, Rabbi (which is to say, being interpreted, Teacher), where abidest thou?\n“Well,” replied Charlotte, “you must try to build yourself up.\nAnd again he stooped down, and with his finger wrote on the ground.\n“So am I,” said a third voice.\n“Ladeez and gentlemen,” continued the loud speaker, “I must not take any more of your valuable time.\nbe it known unto you all, and to all the people of Israel, that in the name of Jesus Christ of Nazareth, whom ye crucified, whom God raised from the dead, even in him doth this man stand here before you whole.\nAnd I exhort you the more exceedingly to do this, that I may be restored to you the sooner.\nHe saw her up overhead in a corner near the back of his pen.\nThere were several children, all wakening and hungry and crying.\nIn the horse barn you will find oats that the trotters and pacers have spilled.\nNobody realized that the crate already contained a rat and a spider.\nAnd the high priest rent his clothes, and saith, What further need have we of witnesses?\nFamilies had staked out futile claims to a place on earth by spreading blankets on the ground.\nFor from you hath sounded forth the word of the Lord, not only in Macedonia and Achaia, but in every place your faith to God-ward is gone forth; so that we need not to speak anything.\nand there came out from the temple the seven angels that had the seven plagues, arrayed with precious stone, pure and bright, and girt about their breasts with golden girdles.\nfor I say unto you, that many prophets and kings desired to see the things which ye see, and saw them not; and to hear the things which ye hear, and heard them not.\nOh, no.\nsaying unto them, It is written, And my house shall be a house of prayer: but ye have made it a den of robbers.\nfor the words which thou gavest me I have given unto them; and they received them, and knew of a truth that I came forth from thee, and they believed that thou didst send me.\nAnd behold, a Canaanitish woman came out from those borders, and cried, saying, Have mercy on me, O Lord, thou son of David; my daughter is grievously vexed with a demon.\nIt seemed to me that onanists must feel the same way. Not happy if they are unable to practice their special art daily.\nBut I have all things, and abound: I am filled, having received from Epaphroditus the things that came from you, an odor of a sweet smell, a sacrifice acceptable, well-pleasing to God.\nFor we have not a high priest that cannot be touched with the feeling of our infirmities; but one that hath been in all points tempted like as we are, yet without sin.\nAnd after these things Joseph of Arimathæa, being a disciple of Jesus, but secretly for fear of the Jews, asked of Pilate that he might take away the body of Jesus: and Pilate gave him leave. He came therefore, and took away his body.\nSo Charlotte told him about another cousin of hers who was an aeronaut.\nWilbur’s heart brimmed with happiness.\nBut now they desire a better country, that is, a heavenly: wherefore God is not ashamed of them, to be called their God; for he hath prepared for them a city.\nAnd on the morrow we departed, and came unto Cæsarea: and entering into the house of Philip the evangelist, who was one of the seven, we abode with him.\nTherefore rejoice, O heavens, and ye that dwell in them. Woe for the earth and for the sea: because the devil is gone down unto you, having great wrath, knowing that he hath but a short time.\nwho shall not receive manifold more in this time, and in the world to come eternal life.\nFor this is a word of promise, According to this season will I come, and Sarah shall have a son.\nHe that reapeth receiveth wages, and gathereth fruit unto life eternal; that he that soweth and he that reapeth may rejoice together.\nBut if thine eye be evil, thy whole body shall be full of darkness. If therefore the light that is in thee be darkness, how great is the darkness!\nAnd he called to him one of the servants, and inquired what these things might be.\nThen eight. Then ten.\nCharley still sat, breathing deep.\nwho was faithful to him that appointed him, as also was Moses in all his house.\nThe disciples therefore said unto him, Lord, if he is fallen asleep, he will recover.\nAnd Jesus himself, when he began to teach, was about thirty years of age, being the son (as was supposed) of Joseph, the son of Heli,\nIf any man destroyeth the temple of God, him shall God destroy; for the temple of God is holy, and such are ye.\nLieutenant H. C. Smith to Colonel Haden Your favor of the 24th instant of August including your orders to find and “put into motion” toward the Indian Territories the fugitives said still to inhabit this region was duly received, and I have done my all to carry your wishes forward.\nGaius my host, and of the whole church, saluteth you. Erastus the treasurer of the city saluteth you, and Quartus the brother.\nI have responsibilities.\nIt resumes its inner life and allows you to see it.\nAnd there shall be night no more; and they need no light of lamp, neither light of sun; for the Lord God shall give them light: and they shall reign for ever and ever.\nAnd he said unto the disciples, The days will come, when ye shall desire to see one of the days of the Son of man, and ye shall not see it.\nforsaking the right way, they went astray, having followed the way of Balaam the son of Beor, who loved the hire of wrong-doing;\nGlad to have met you, and now I must be going. \nGreen Corn Moon, the weeks leading up to the summer solstice, had long been one of my favorite stretches of time.\nBear looked so old, everything about him drawn smaller except his knobby fingers.\nAnd they blindfolded him, and asked him, saying, Prophesy: who is he that struck thee?\nThe minister explained the miracle.\nNow! You still have two feet, said Rabbit.\nBut I said unto you, that ye have seen me, and yet believe not.\nBut it is good to be zealously sought in a good matter at all times, and not only when I am present with you.\n“You almost never leave your web.”\nand killed the Prince of life; whom God raised from the dead; whereof we are witnesses.\nHe walked away from the creek and began climbing a dry ridge to cross over to another cove whose creek he figured to descend toward the river and the camp.\nDays on the stage to the railhead.\nAnd they, when they came to Jesus, besought him earnestly, saying, He is worthy that thou shouldest do this for him;\nWolf still pretends he knows everything.\nThe sheep loathed them.\nAnd whoso shall receive one such little child in my name receiveth me:\nAre you a spring pig?”\nThen all those virgins arose, and trimmed their lamps.\nThe air was now so full of balloonists that the barn cellar looked almost as though a mist had gathered.\nTempleton and I must get in the crate right now and hide ourselves.”\nBut we are not of them that shrink back unto perdition; but of them that have faith unto the saving of the soul. \nDo I speak these things after the manner of men? or saith not the law also the same?\nThen they would move on to the next pen where the bigger pig lay.\naccording to my earnest expectation and hope, that in nothing shall I be put to shame, but that with all boldness, as always, so now also Christ shall be magnified in my body, whether by life, or by death.\nthat no flesh should glory before God.\nAnd Jesus with his disciples withdrew to the sea: and a great multitude from Galilee followed; and from Judæa,\nIt seemed important to me to let them all bear witness. I heard five separate stories that did not entirely correspond, but I believe I understand something fairly close to what actually happened, at least a few fragments, and that is better than most of what we know of history.\nI rushed to Cranshaw, after I heard Featherstone was gone, and found Claire bitter amid the wreckage of packing crates, slaves milling about directionless, fields untended, ragweed knee-deep among the cornstalks, suckers overwhelming the tomatoes, squash and pumpkins and melons growing tiny and pale as babies’ fists in the shade of rampant chickweed.\nbut unto them that are called, both Jews and Greeks, Christ the power of God, and the wisdom of God.\nWhere you’re going.\nThat year, the fashionable younger women—and a few of the older—wore their breasts cinched down low with vast creamy expanses of skin exposed by the low scoops of their necklines.\nSo the lieutenant decided to divide his men, sending part of them back to the fort with the prisoners, and now it was just the five of us to find Charley’s people and bring them in.\nand when the ship was caught, and could not face the wind, we gave way to it, and were driven.\nAnd after these things he went forth, and beheld a publican, named Levi, sitting at the place of toll, and said unto him, Follow me.\nThe truck backed slowly to the pigpen and stopped.\nThere then because of the Jews’ Preparation (for the tomb was nigh at hand) they laid Jesus. \nI don’t seem to have the energy I once had.\nIt sounded rather thin, but pleasant.\nYou’re no bundle of sweet peas yourself.\nAs thou didst send me into the world, even so sent I them into the world.\nThrashing through newly fallen leaves that lay knee-deep on the legs of the younger fugitives.\nFor we who have believed do enter into that rest; even as he hath said, As I sware in my wrath, They shall not enter into my rest: although the works were finished from the foundation of the world.\nhaving foreordained us unto adoption as sons through Jesus Christ unto himself, according to the good pleasure of his will,\nAnd Pilate again asked him, saying, Answerest thou nothing? behold how many things they accuse thee of.\nFor he is our peace, who made both one, and brake down the middle wall of partition,\nNow stop arguing and go get some sleep.\nThe apple tree replied, Yes, I am a big apple tree now and these yellow apples are very grad, but I will never forget my first apple, the one the Creator made red ...\nA heavy fur for the children to sleep beneath when snow comes.\nAt nine o'clock, Mr. Arable’s truck rolled into the Fair Grounds and came to a stop at Wilbur’s pen.\nIf any man see his brother sinning a sin not unto death, he shall ask, and God will give him life for them that sin not unto death. There is a sin unto death: not concerning this do I say that he should make request.\nSo we go up to Jenny’s room that she shares with this girl Kara, and I start talking to Jenny. I end up talking to her for so long that Michael eventually decides to leave and go up to bed.\nThe stunned look on his face suggested that his imprisonment had come as a surprise to him.\nAnd he said, Brethren and fathers, hearken: The God of glory appeared unto our father Abraham, when he was in Mesopotamia, before he dwelt in Haran,\n“You know,” he said, in an important voice, “I’ve thought all along that that pig of ours was an extra good one.\nAnd reckonest thou this, O man, who judgest them that practise such things, and doest the same, that thou shalt escape the judgment of God?\nBut when this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall come to pass the saying that is written, Death is swallowed up in victory.\nAnd if Christ is in you, the body is dead because of sin; but the spirit is life because of righteousness.\nsaying, The prison-house we found shut in all safety, and the keepers standing at the doors: but when we had opened, we found no man within.\nFor which is greater, he that sitteth at meat, or he that serveth? is not he that sitteth at meat? but I am in the midst of you as he that serveth.\nI'm too pretty as you know.\nAnd when he came upon the stairs, so it was that he was borne of the soldiers for the violence of the crowd;\nHere he comes now.\nAnd they come unto Bethsaida. And they bring to him a blind man, and beseech him to touch him.\nEvery morning, as soon as she got up, she warmed his milk, tied his bib on, and held the bottle for him.\nWashington city was being built on a landscape of utter insignificance, a mudflat by the river barely elevated above sea level, with a midsized southern town arising on it, with the distinguishing addition of a few scattered half-formed classical temples of enormous scale, in such a state of partiality that it was hard at first glance to tell whether they were falling or rising.\nFor it seemed good to the Holy Spirit, and to us, to lay upon you no greater burden than these necessary things:\nAll the saints salute you, especially they that are of Cæsar’s household.\nThe current is strong and you may be pulled down into the hole!\nbut of the Son he saith, Thy throne, O God, is for ever and ever; And the sceptre of uprightness is the sceptre of thy kingdom.\nAnd while he said these things, there came a cloud, and overshadowed them: and they feared as they entered into the cloud.\nThe Harvest Moon arrived like it intended to be about the same.\nOthers said, This is the Christ. But some said, What, doth the Christ come out of Galilee?\nSo they took the body of Jesus, and bound it in linen cloths with the spices, as the custom of the Jews is to bury.\nThen he got into his car and drove to the minister’s house.\nHow do I start?”\nAnd they said unto her, Thou art mad. But she confidently affirmed that it was even so. And they said, It is his angel.\nHer red blood.\nAnd who is he that overcometh the world, but he that believeth that Jesus is the Son of God?\nAnd the servant said, Lord, what thou didst command is done, and yet there is room.\nHer eight legs were very busy helping.\nWhy did I let myself in for this?”\n“Oh, yes, she’s always hungry.”\nThere was an awful lot of blood in the brown leaves, and the men with the hatchets turned in Smith’s direction.\nfor ye were bought with a price: glorify God therefore in your body. \nAnd he came again and found them sleeping, for their eyes were heavy.\nAnd they did so, and made them all sit down.\n“I was just thinking,” said the spider, “that people are very gullible.”\nAnd if I go and prepare a place for you, I come again, and will receive you unto myself; that where I am, there ye may be also.\nWhosoever hateth his brother is a murderer: and ye know that no murderer hath eternal life abiding in him.\nSkim milk, provender, leftover sandwich from Lurvy’s lunchbox, prune skins, a morsel of this, a bit of that, fried potatoes, marmalade drippings, a little more of this, a little more of that, a piece of baked apple, a scrap of upsidedown cake.\n“How many nights till frost?” sang the crickets.\nTherefore said his parents, He is of age; ask him.\nThey say ‘deganiyitsa,’ or ‘danisintanv’ - \nBut others said, It is Elijah. And others said, It is a prophet, even as one of the prophets.\nI know, and am persuaded in the Lord Jesus, that nothing is unclean of itself: save that to him who accounteth anything to be unclean, to him it is unclean.\nShe was dying, but she still had strength enough to move a little.\nAnd more was what the situation called for.\nand they are seven kings; the five are fallen, the one is, the other is not yet come; and when he cometh, he must continue a little while.\n“When I’m out here,” he said, “there’s no place to go but in.\nBut younger widows refuse: for when they have waxed wanton against Christ, they desire to marry;\nDay after day the spider waited, head-down, for an idea to come to her.\nAnd the scribes and the chief priests sought to lay hands on him in that very hour; and they feared the people: for they perceived that he spake this parable against them.\nIt's also the dirtiest trick I ever heard of.\nFor he knew him that should betray him; therefore said he, Ye are not all clean.\nA thin brown dog rose stiffly and stretched and circled and then moved a few inches closer to the blaze.\nI would say, offhand, that spiders and pigs were fully as interesting as Henry Fussy.\nAnd he hath said unto me, My grace is sufficient for thee: for my power is made perfect in weakness. Most gladly therefore will I rather glory in my weaknesses, that the power of Christ may rest upon me.\nWe like this place, and we like you.  \nAnd he measured the wall thereof, a hundred and forty and four cubits, according to the measure of a man, that is, of an angel.\nFor where your treasure is, there will your heart be also.\nwhen John had first preached before his coming the baptism of repentance to all the people of Israel.\nWherefore ye must needs be in subjection, not only because of the wrath, but also for conscience’ sake.\nAnd it came to pass, that he was going on the sabbath day through the grainfields; and his disciples began, as they went, to pluck the ears.\nShe shut her eyes tight and jumped.\nIf any man is hungry, let him eat at home; that your coming together be not unto judgment. And the rest will I set in order whensoever I come. \nI thank my God always concerning you, for the grace of God which was given you in Christ Jesus;\nAnd another angel came and stood over the altar, having a golden censer; and there was given unto him much incense, that he should add it unto the prayers of all the saints upon the golden altar which was before the throne.\nAnd a certain maid seeing him as he sat in the light of the fire, and looking stedfastly upon him, said, This man also was with him.\nlie not one to another; seeing that ye have put off the old man with his doings,\nFor many are called, but few chosen.\nTruth be told, it was my own racquet.\nThe brown chickens gathered and so did wild mourning doves.\nHe had tunnels and runways all over Mr. Zuckerman’s farm and could get from one place to another without being seen.\nElse what shall they do that are baptized for the dead? If the dead are not raised at all, why then are they baptized for them?\nApple blossoms come with the lilacs, and the bees visit around among the apple trees.\nThe harder the men pushed, the harder he held back.\nWherefore leaving the doctrine of the first principles of Christ, let us press on unto perfection; not laying again a foundation of repentance from dead works, and of faith toward God,\nPilate therefore said unto them, Take him yourselves, and judge him according to your law. The Jews said unto him, It is not lawful for us to put any man to death:\nAnd again I say unto you, It is easier for a camel to go through a needle’s eye, than for a rich man to enter into the kingdom of God.\nAnd when the day of Pentecost was now come, they were all together in one place.\nMartha therefore said unto Jesus, Lord, if thou hadst been here, my brother had not died.\nAnd they besought him, saying, Send us into the swine, that we may enter into them.\nHave we no right to eat and to drink?\nbut that we write unto them, that they abstain from the pollutions of idols, and from fornication, and from what is strangled, and from blood.\nand to make all men see what is the dispensation of the mystery which for ages hath been hid in God who created all things;\nStill not learning, thought Rabbit.\nWe have searched both sides of the Little Tennessee and about ten miles up the Tuckasegee, marching long days, though of little mileage, tracing every rumor and tiding mongered hereabouts.\nHe did not like being treated like a messenger boy.\nThough Lowan and Jake and George hunted daily, they had failed to kill a deer for the better part of a month.\nand before the throne, as it were a sea of glass like unto crystal; and in the midst of the throne, and round about the throne, four living creatures full of eyes before and behind.\nSkip and dance, jump and prance!\nFor John indeed baptized with water; but ye shall be baptized in the Holy Spirit not many days hence.\nGod forbid: for then how shall God judge the world?\nFaithful is he that calleth you, who will also do it.\nAnd the old sheep was right—the friend was still asleep.\never learning, and never able to come to the knowledge of the truth.\nAnd now why tarriest thou? arise, and be baptized, and wash away thy sins, calling on his name.\nwhatsoever ye do, work heartily, as unto the Lord, and not unto men;\n“Wash your hands and face, Avery!”\nHe had the hatchet in his right hand and the knife in his left hand with the edge up for good ripping after a deep belly stab.\nFor he hath said somewhere of the seventh day on this wise, And God rested on the seventh day from all his works;\nA good tree cannot bring forth evil fruit, neither can a corrupt tree bring forth good fruit.\nFinally, brethren, pray for us, that the word of the Lord may run and be glorified, even as also it is with you;\nThey say unto him, Because no man hath hired us. He saith unto them, Go ye also into the vineyard.\nFor this cause shall a man leave his father and mother, and shall cleave to his wife;\nSimon Peter, a servant and apostle of Jesus Christ, to them that have obtained a like precious faith with us in the righteousness of our God and the Saviour Jesus Christ:\nbut if they are questions about words and names and your own law, look to it yourselves; I am not minded to be a judge of these matters.\nThe goose took command and began to give orders.\nThen certain of the scribes and Pharisees answered him, saying, Teacher, we would see a sign from thee.\nIn the Fall Spearfinger would watch for the smoke to rise above the trees.  \n“Do you want a friend, Wilbur?” it said.\nI looked over, and the clerk had tears of joy in his eyes and a look of rapture beaming on his face.\nBut he, desiring to justify himself, said unto Jesus, And who is my neighbor?\nBut just call me Charlotte.”\nAnd this was his own country.\nFor ye remember, brethren, our labor and travail: working night and day, that we might not burden any of you, we preached unto you the gospel of God.\nAnd the way of peace have they not known:\nCharley curved around a cropping of rock and climbed steep to the crest of the ridge and then pitched down the sharp slope toward the next creek.\nAnd the brethren immediately sent away Paul and Silas by night unto Beroea: who when they were come thither went into the synagogue of the Jews.\nNow when Jesus was born in Bethlehem of Judæa in the days of Herod the king, behold, Wise-men from the east came to Jerusalem, saying,\nbut without thy mind I would do nothing; that thy goodness should not be as of necessity, but of free will.\nThis is a tree.\nJesus said unto them, Verily, verily, I say unto you, Before Abraham was born, I am.\nHe lined it with bits of dirty newspapers and rags, and whenever he found a trinket or a keepsake he carried it home and stored it there.\nSoldiers stood Charley and the boys up and walked them out near the riverbank and left them standing there in some confusion.\nRemember therefore whence thou art fallen, and repent and do the first works; or else I come to thee, and will move thy candlestick out of its place, except thou repent.\nCome unto me, all ye that labor and are heavy laden, and I will give you rest.\nAnd he saith unto them, Why are ye fearful, O ye of little faith? Then he arose, and rebuked the winds and the sea; and there was a great calm.\nFinally, brethren, farewell. Be perfected; be comforted; be of the same mind; live in peace: and the God of love and peace shall be with you.\nbut he left the linen cloth, and fled naked.\nWhen he discovered there was still a little water left in the bottom of the pail, he raised the pail high in the air and dumped the water on himself and made faces.\nhe that doeth sin is of the devil; for the devil sinneth from the beginning. To this end was the Son of God manifested, that he might destroy the works of the devil.\nOthers have said that maybe I felt crushing guilt and stayed there at the forks of the river under the big hemlock to reflect in solitude on my recent actions.\nAnd when I could not see for the glory of that light, being led by the hand of them that were with me I came into Damascus.\nSmith, of course, wanted to assign watches through the night.\nand might deliver all them who through fear of death were all their lifetime subject to bondage.\nsaying, I have sinned in that I betrayed innocent blood. But they said, What is that to us? see thou to it.\nBut be ye doers of the word, and not hearers only, deluding your own selves.\nBut the chief priests took counsel that they might put Lazarus also to death;\nAnd they laid hands on him, and took him.\nIt had rained since dawn, rain falling white against the trees.\nAnd when they were filled, he saith unto his disciples, Gather up the broken pieces which remain over, that nothing be lost.\nSimon, Simon, behold, Satan asked to have you, that he might sift you as wheat:\nif by any means I may attain unto the resurrection from the dead.\nAnd as John was fulfilling his course, he said, What suppose ye that I am? I am not he. But behold, there cometh one after me the shoes of whose feet I am not worthy to unloose.\nAnd they said, The Lord hath need of him.\nHaving confidence in thine obedience I write unto thee, knowing that thou wilt do even beyond what I say.\nBut it had the advantage of belonging neither to the Nation nor to any whiteman. It was on paper under his name.\nJesus answered them and said, Verily, verily, I say unto you, Ye seek me, not because ye saw signs, but because ye ate of the loaves, and were filled.\nXVII: Uncle  \nWhosoever abideth in him sinneth not: whosoever sinneth hath not seen him, neither knoweth him.\nThere is therefore now no condemnation to them that are in Christ Jesus.\nIf we let him thus alone, all men will believe on him: and the Romans will come and take away both our place and our nation.\nHe brushed his hand across his eyes and stared harder at Charlotte’s web.\nFor this cause many among you are weak and sickly, and not a few sleep.\nAnd there was given me a reed like unto a rod: and one said, Rise, and measure the temple of God, and the altar, and them that worship therein.\nI told how Spearfinger had been one of our people, a respected old woman until she went bad and began shifting shapes and became covered in scales as hard as plates of shale that no knife or arrow could break.\nCan’t you just see the web, sagging dangerously under the weight of the fish?\nThe same was well reported of by the brethren that were at Lystra and Iconium.\n“Alone?\nIf she says they plan to kill you, I’m sure it’s true.\nWhen Asmeret Asefaw Berhe goes for a walk in the woods, she looks at all these things.\nand Hezekiah begat Manasseh; and Manasseh begat Amon; and Amon begat Josiah;\nBut he that glorieth, let him glory in the Lord.\nPretty often, their idea of supper had been to wrap a few strips of bacon around a green stick and hold it over the fire and try to get it brown without lighting it ablaze.\nFor narrow is the gate, and straitened the way, that leadeth unto life, and few are they that find it.\nThis only would I learn from you, Received ye the Spirit by the works of the law, or by the hearing of faith?\nWinter will pass, the days will lengthen, the ice will melt in the pasture pond.\n“Fern,” he said gently, “you will have to learn to control yourself.”\nFor the Son of man shall come in the glory of his Father with his angels; and then shall he render unto every man according to his deeds.\nGoing west, I said. A long way.\nAnd it came to pass, when he drew nigh unto Bethphage and Bethany, at the mount that is called Olivet, he sent two of the disciples,\nAnd he answered and said, He that soweth the good seed is the Son of man;\nHis spit turned to mucilage, tongue stuck to the roof of his drying mouth.\nJesus therefore, knowing all the things that were coming upon him, went forth, and saith unto them, Whom seek ye?\nIt didn't seem to be a very good day she thought.\nSee with how large letters I write unto you with mine own hand.\nAnd he bought a linen cloth, and taking him down, wound him in the linen cloth, and laid him in a tomb which had been hewn out of a rock; and he rolled a stone against the door of the tomb.\nAnd again he came, and found them sleeping, for their eyes were very heavy; and they knew not what to answer him.\nAnd round about the throne were four and twenty thrones: and upon the thrones I saw four and twenty elders sitting, arrayed in white garments; and on their heads crowns of gold.\nLurvy pointed to the spider's web.\nAnd he said unto them, Wheresoever ye enter into a house, there abide till ye depart thence.\nThe officers therefore came to the chief priests and Pharisees; and they said unto them, Why did ye not bring him?\nThis persuasion came not of him that calleth you.\n“Watch out for the dog!” cried the sheep.\nPeople who had journeyed to see Wilbur when he was “some pig” came back again to see him now that he was “terrific.”\nHowbeit at that time, not knowing God, ye were in bondage to them that by nature are no gods:\nBut he that is greatest among you shall be your servant.\nBut behold, the hand of him that betrayeth me is with me on the table.\nSo the entire tally of electors is one?\nArise, let us be going: behold, he is at hand that betrayeth me.\nWe speak wisdom, however, among them that are fullgrown: yet a wisdom not of this world, nor of the rulers of this world, who are coming to nought:\nFern phoned and got her Aunt Edith, and her Aunt Edith hollered for Uncle Homer, and Uncle Homer came in from the barn and talked to Fern.\n“Die of a broken heart,” he mimicked.\nFor whosoever would save his life shall lose it: and whosoever shall lose his life for my sake shall find it.\nBut the boy drove a blade deep in the bear’s vitals.\nno longer as a servant, but more than a servant, a brother beloved, specially to me, but how much rather to thee, both in the flesh and in the Lord.\nAnd after they had held their peace, James answered, saying, Brethren, hearken unto me:\n“I believe what I need is a little piece of string to hold me.”\nIt covered house and barn and fields and woods.\n“I’m going to win a doll by spinning a wheel and it will stop at the right number,” said Fern.\nWilbur closed his eyes.\nThe Jews therefore murmured concerning him, because he said, I am the bread which came down out of heaven.\nYe therefore shall be perfect, as your heavenly Father is perfect. \nWe should teach him a lesson, the neighbors hooted.\n“Yes, but I’m near-sighted,” replied Charlotte.\nPig’s out!\nEvery animal stirred and lifted its head and became excited to know that one of his friends had got free and was no longer penned up or tied fast.\nto do whatsoever thy hand and thy council foreordained to come to pass.\nOnes with payments and ones without.\nI had at least gotten far enough to learn that Crockett and I held in common the experience of being bound boys, though in Crockett’s case he had violated the pact his father made by running away from his new master, a hog drover, on their first journey together.\nYou’re making this up.”\nAnd Jesus came to them and spake unto them, saying, All authority hath been given unto me in heaven and on earth.\nOnce again the boy went to the tree.\nAnd when the men of that place knew him, they sent into all that region round about, and brought unto him all that were sick;\nHowbeit what things were gain to me, these have I counted loss for Christ.\nAnd he said unto me, Depart: for I will send thee forth far hence unto the Gentiles.\nPeople sat far back from the flames and were only dark shapes.\nThe hunters backed away and raised their muskets.\nThe blackberries got ripe, and Mrs. Zuckerman failed to put up any blackberry jam.\nand said, Behold, I see the heavens opened, and the Son of man standing on the right hand of God.\nAnd he said unto them, Did ye never read what David did, when he had need, and was hungry, he, and they that were with him?\n“He is not,” said Avery.\nAnd there came unto him Pharisees, and asked him, Is it lawful for a man to put away his wife? trying him.\nThey had survived beyond fright into glazed and fatal blankness.\nAnd Jesus saith unto her, Woman, what have I to do with thee? mine hour is not yet come.\nand the sound of a trumpet, and the voice of words; which voice they that heard entreated that no word more should be spoken unto them;\nNevertheless in this rejoice not, that the spirits are subject unto you; but rejoice that your names are written in heaven.\nI met Crockett through the agency of Calhoun. Crockett was then at the height of his fame, at least pre-posthumously.\nAnd after six days Jesus taketh with him Peter, and James, and John his brother, and bringeth them up into a high mountain apart:\nHe scooped up his frog.\n“Say it slower!”\nNow I found the woods narcotic.\nFor neither doth the Father judge any man, but he hath given all judgment unto the Son;\nHearken, my beloved brethren; did not God choose them that are poor as to the world to be rich in faith, and heirs of the kingdom which he promised to them that love him?\nAnd behold, the veil of the temple was rent in two from the top to the bottom; and the earth did quake; and the rocks were rent;\nReally it must have been close to a mile out, there was a big field.\nTherefore is the kingdom of heaven likened unto a certain king, who would make a reckoning with his servants.\nFor every creature of God is good, and nothing is to be rejected, if it be received with thanksgiving:\nNow if Timothy come, see that he be with you without fear; for he worketh the work of the Lord, as I also do:\n“Liver, I eat... su sa sai”\nThey knew she would come as soon as she saw the smoke.\n“Templeton?”\nBut Peter said unto him, Although all shall be offended, yet will not I.\nHe went casting forward until that direction became hopeless, and then he backtracked to the last drop of blood and began circling, making wider and wider rounds without success.\nAnd the disciples, every man according to his ability, determined to send relief unto the brethren that dwelt in Judæa:\nEpaphras, my fellow-prisoner in Christ Jesus, saluteth thee;\nWhile he yet spake, they come from the ruler of the synagogue’s house, saying, Thy daughter is dead: why troublest thou the Teacher any further?\nAnd in praying use not vain repetitions, as the Gentiles do: for they think that they shall be heard for their much speaking.\nHe sat without a word for a long time and smoked a long-stemmed clay pipe down to ash.\nfor the showing, I say, of his righteousness at this present season: that he might himself be just, and the justifier of him that hath faith in Jesus.\n“You sound like three ganders,” muttered Charlotte.\nNevertheless do ye also severally love each one his own wife even as himself; and let the wife see that she fear her husband. \nAnd then at the climactic moment, Bear turned to a quartering position and pulled up the tail of his long hunting shirt, and the skin was becoming creped and hanging loose over the bones, but the scars were bright as ropes of rubbed silver, relics of an accomplishment that could be taken to the grave and perhaps beyond.\nLunch would be over at one.\nBut he went out, and began to publish it much, and to spread abroad the matter, insomuch that Jesus could no more openly enter into a city, but was without in desert places: and they came to him from every quarter. \nFor the Son of man is lord of the sabbath.\nThis might be the end of Charlotte if the boy succeeded in catching her.\nNow the God of hope fill you with all joy and peace in believing, that ye may abound in hope, in the power of the Holy Spirit.\nThey have over them as king the angel of the abyss: his name in Hebrew is Abaddon, and in the Greek tongue he hath the name Apollyon.\n“Watch out for pickpockets! ” cautioned their father.\nAnd there shall be signs in sun and moon and stars; and upon the earth distress of nations, in perplexity for the roaring of the sea and the billows;\nOr what man is there of you, who, if his son shall ask him for a loaf, will give him a stone;\nThe truck crept along slowly in low speed.\nGoodbye mother, I love you.\nUnfortunately, this Cooper is also a sharp lawyer and has long been under the spell of an old chief in these parts, and they have overmastered their fraction of Indians for quite some time.\nThe kingdom of heaven is likened unto a certain king, who made a marriage feast for his son,\nFor if they that are of the law are heirs, faith is made void, and the promise is made of none effect:\nAnd no man having drunk old wine desireth new; for he saith, The old is good. \nIt came from the name of a Cherokee Indian man who was alive when the United States was new.\nFor this cause I also, having heard of the faith in the Lord Jesus which is among you, and the love which ye show toward all the saints,\nwhose fan is in his hand, and he will thoroughly cleanse his threshing-floor; and he will gather his wheat into the garner, but the chaff he will burn up with unquenchable fire.\n“No, I’m not. I counted them.\nAnd he ran on before, and climbed up into a sycomore tree to see him: for he was to pass that way.\nAnd it had been revealed unto him by the Holy Spirit, that he should not see death, before he had seen the Lord’s Christ.\n“He isn’t dead,” hollered Zuckerman.\nHe therefore that sweareth by the altar, sweareth by it, and by all things thereon.\n“Well,” said Mrs. Zuckerman, “it seems to me you're a little off. It seems to me we have no ordinary spider.”\nJesus saith unto them, Did ye never read in the scriptures, The stone which the builders rejected, The same was made the head of the corner; This was from the Lord, And it is marvellous in our eyes?\nPut your marks where I say.\nAnd there was war in heaven: Michael and his angels going forth to war with the dragon; and the dragon warred and his angels;\nBut Peter said unto her, How is it that ye have agreed together to try the Spirit of the Lord? behold, the feet of them that have buried thy husband are at the door, and they shall carry thee out.\nWhosoever is begotten of God doeth no sin, because his seed abideth in him: and he cannot sin, because he is begotten of God.\nIt was still only about four o'clock but Wilbur was ready for bed.\nand when the sun was risen, it was scorched; and because it had no root, it withered away.\nWherever she went during the day, all traffic, both pedestrian and vehicular, came to a halt to watch her pass.\nEverything displaced, unfamiliar.\nCharlotte laughed so hard her web began to sway.\nwhereas our comely parts have no need: but God tempered the body together, giving more abundant honor to that part which lacked;\nAnd he took them the same hour of the night, and washed their stripes; and was baptized, he and all his, immediately.\nWilbur liked Charlotte better and better each day.\nIf therefore they shall say unto you, Behold, he is in the wilderness; go not forth: Behold, he is in the inner chambers; believe it not.\n“Your Uncle Homer sometimes raises a pig.\n“Coasting is the most fun there is,” said Avery.\nWhat I tell you in the darkness, speak ye in the light; and what ye hear in the ear, proclaim upon the house-tops.\nHe’s down there under that apple tree.”\nCharley reckoned his tools might suffice to kill this bear.\nAnd they spat upon him, and took the reed and smote him on the head.\nFern and Avery were in bed by eight.\nMy attention was drawn to a dish of fig pastries, each no bigger around than a gold dollar.\nI therefore so run, as not uncertainly; so fight I, as not beating the air:\nReally?” cried Wilbur.\nAnd no one was able to answer him a word, neither durst any man from that day forth ask him any more questions. \nVoices were raised and lowered and raised again, though I could not make out a word of what passed down below me.\nThey say unto him, Cæsar’s. Then saith he unto them, Render therefore unto Cæsar the things that are Cæsar’s; and unto God the things that are God’s.\nAnd after the carrying away to Babylon, Jechoniah begat Shealtiel; and Shealtiel begat Zerubbabel;\nAnd he opened his mouth for blasphemies against God, to blaspheme his name, and his tabernacle, even them that dwell in the heaven.\nAnd he that hath seen hath borne witness, and his witness is true: and he knoweth that he saith true, that ye also may believe.\nand they shall kill him, and the third day he shall be raised up. And they were exceeding sorry.\nHe might not be exactly what you think he is.\nLet each one of us please his neighbor for that which is good, unto edifying.\nand in your knowledge self-control; and in your self-control patience; and in your patience godliness;\nFor after this manner aforetime the holy women also, who hoped in God, adorned themselves, being in subjection to their own husbands:\nThe tunnel enabled him to get from the barn to his hiding place under the pig trough without coming out into the open.\nAnd the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye did it unto one of these my brethren, even these least, ye did it unto me.\nAs she walked away, Wilbur saw a new lamb following her.\n“A fair is a rat’s paradise.\nbut, when he was in Rome, he sought me diligently, and found me\nTempleton grinned.\nLoopholes opened high in the walls, which suggested the existence of banquettes inside to stand on and move from one loop to another to fire.\nAfter dark, he ventured to strike a little fire no bigger around than the mouth to a bucket.\nHe stayed for an hour and explained to the minister that a miracle had happened on the farm.\nin the midst of the street thereof. And on this side of the river and on that was the tree of life, bearing twelve manner of fruits, yielding its fruit every month: and the leaves of the tree were for the healing of the nations.\nwho found favor in the sight of God, and asked to find a habitation for the God of Jacob.\nCharley nodded to Nancy.\nThen one of the twelve, who was called Judas Iscariot, went unto the chief priests,\nFor this cause shall a man leave his father and mother, and shall cleave to his wife; and the two shall become one flesh.\nBest how? the purser said.\n“Some pigs were born last night.”\nShe never moved again.\nBrethren, children of the stock of Abraham, and those among you that fear God, to us is the word of this salvation sent forth.\nPerhaps we might, I said.\nHe wiggled his feet down at the bottom of the chaise to highlight them.\nAnd Mary said unto the angel, How shall this be, seeing I know not a man?\nAnd another of the disciples said unto him, Lord, suffer me first to go and bury my father.\nThe air smelled of the damp earth, of the spruce woods, of the sweet springtime.\nBut though he had done so many signs before them, yet they believed not on him:\n“One of the boards is loose.\nBy faith Abraham, being tried, offered up Isaac: yea, he that had gladly received the promises was offering up his only begotten son;\nAnd he took a cup, and when he had given thanks, he gave to them: and they all drank of it.\nMrs. Zuckerman and Mrs. Arable stood on the running board of the truck.\nand the prayer of faith shall save him that is sick, and the Lord shall raise him up; and if he have committed sins, it shall be forgiven him.\nGrace be with you all. Amen.\nAnd he called unto him the multitude with his disciples, and said unto them, If any man would come after me, let him deny himself, and take up his cross, and follow me.\nbut these are written, that ye may believe that Jesus is the Christ, the Son of God; and that believing ye may have life in his name. \nThen she opened them up and ate their livers.\nAnd they laughed him to scorn. But he, having put them all forth, taketh the father of the child and her mother and them that were with him, and goeth in where the child was.\nThese things command and teach.\nDon’t fall for it, don’t fall for it!\nAnd when Moses saw it, he wondered at the sight: and as he drew near to behold, there came a voice of the Lord,\nBut he answered and said, It is written, Man shall not live by bread alone, but by every word that proceedeth out of the mouth of God.\nThey live on animals and plants.\nFor such a high priest became us, holy, guileless, undefiled, separated from sinners, and made higher than the heavens;\nBut I have this against thee, that thou sufferest the woman Jezebel, who calleth herself a prophetess; and she teacheth and seduceth my servants to commit fornication, and to eat things sacrificed to idols.\nBut I hold not my life of any account as dear unto myself, so that I may accomplish my course, and the ministry which I received from the Lord Jesus, to testify the gospel of the grace of God.\nAnd this I also did in Jerusalem: and I both shut up many of the saints in prisons, having received authority from the chief priests, and when they were put to death I gave my vote against them.\nAnd fear took hold on all: and they glorified God, saying, A great prophet is arisen among us: and, God hath visited his people.\nFor they that have served well as deacons gain to themselves a good standing, and great boldness in the faith which is in Christ Jesus.\nSo that’s what happened to me one time.\nAnd they were not able to take hold of the saying before the people: and they marvelled at his answer, and held their peace.\nAnd her spirit returned, and she rose up immediately: and he commanded that something be given her to eat.\nWolf's feet were really hurting.\nand it came to pass, as he sowed, some seed fell by the way side, and the birds came and devoured it.\ncame unto me, and standing by me said unto me, Brother Saul, receive thy sight. And in that very hour I looked up on him.\n“She’s Wilbur’s best friend.\nJesus answered, Verily, verily, I say unto thee, Except one be born of water and the Spirit, he cannot enter into the kingdom of God.\nAnd the disciples went forth, and came into the city, and found as he had said unto them: and they made ready the passover.\nA round brown woman of indeterminate race opened the door.\nWhen they were done, Wolf sat down.\nAvery knelt in the dirt by Wilbur’s side, busily stroking him and showing off.\nDozens of people had visited his yard during the afternoon, and he had had to stand and pose, looking as terrific as he could.\nWatch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak.\nThe word bleak would pretty well describe every element of those footslogging days.\nDon't swim there Littlefish; you are beneath us and too small to see. We may squash you.\n“We're staying quietly—ietly-ietly at home.\nAnd what about any other fugitives hiding up in the mountains?\nAvery was kneeling by Wilbur’s head, stroking him.\nand neither in the temple did they find me disputing with any man or stirring up a crowd, nor in the synagogues, nor in the city.\nWe followed the dog for about a quarter mile, and he acted like he was after something; then suddenly he stopped at the big oak tree, and he barked as he circled the tree.\nFor first of all, when ye come together in the church, I hear that divisions exist among you; and I partly believe it.\n“It says ‘Crunchy.’ \nDown in the barn cellar, the animals, too, went to sleep early, all except Charlotte.\nEverybody stood at the pigpen and stared at the web and read the word, over and over, while Wilbur, who really felt terrific, stood quietly swelling out his chest and swinging his snout from side to side.\nStill a few days later the boy found the little apple tree sad and droopy.\n“Will the party who addressed me at bedtime last night kindly make himself or herself known by giving an appropriate sign or signal!”\nand he made us to be a kingdom, to be priests unto his God and Father; to him be the glory and the dominion for ever and ever. Amen.\nAnd I say unto you, that many shall come from the east and the west, and shall sit down with Abraham, and Isaac, and Jacob, in the kingdom of heaven:\n“Bring me back a word!” Charlotte called after him.\nbut (which becometh women professing godliness) through good works.\nI soon learned that the public galleries of the Senate chamber were an excellent place to meet ladies, both young and youngish.\nHim therefore I hope to send forthwith, so soon as I shall see how it will go with me:\nJesus said unto him, If thou wouldest be perfect, go, sell that which thou hast, and give to the poor, and thou shalt have treasure in heaven: and come, follow me.\nI tell you, Nay: but, except ye repent, ye shall all likewise perish.\nNo scrap of it horizontal enough for a short man to sleep on except where a damp gravel bed rose a handbreadth above a creek shoal.\n“That’s some pig!” said Mrs. Arable.\nFor I spake not from myself; but the Father that sent me, he hath given me a commandment, what I should say, and what I should speak.\n“Will you please play with me?” he asked.\n“Be quiet, Wilbur.\nbut ye know that because of an infirmity of the flesh I preached the gospel unto you the first time:\nWilbur sat bolt upright.\n“Is this true?” asked the rat, eyeing the sac suspiciously.\nAnd the merchants of the earth weep and mourn over her, for no man buyeth their merchandise any more;\nAnd the chief priests and the scribes heard it, and sought how they might destroy him: for they feared him, for all the multitude was astonished at his teaching.\n“Hmm. Remarkable.\n“I think about it all the time,” said Fern, picking snow from her ear.\nThe kings of the earth set themselves in array, And the rulers were gathered together, Against the Lord, and against his Anointed:\nFor God did put in their hearts to do his mind, and to come to one mind, and to give their kingdom unto the beast, until the words of God should be accomplished.\nAnd if the ear shall say, Because I am not the eye, I am not of the body; it is not therefore not of the body.\nI notice that it’s always me you come to when in trouble.\nAnd when Herod the king heard it, he was troubled, and all Jerusalem with him.\nNow while the Pharisees were gathered together, Jesus asked them a question,\nBut I made Ross nervous because I spoke Cherokee with a degree of polish, while Ross could barely comment on the weather, and even that topic was limited to the current moment, since the chief ’s understanding of his people’s language was limited to the present tense.\nAnd you, being in time past alienated and enemies in your mind in your evil works,\n“Is it something for me?” asked Wilbur.\nBe ye also ready: for in an hour that ye think not the Son of man cometh.\nAnd you, being dead through your trespasses and the uncircumcision of your flesh, you, I say, did he make alive together with him, having forgiven us all our trespasses;\nIf therefore Demetrius, and the craftsmen that are with him, have a matter against any man, the courts are open, and there are proconsuls: let them accuse one another.\nAnd after the sop, then entered Satan into him. Jesus therefore saith unto him, What thou doest, do quickly.\nAnd when the centurion heard it, he went to the chief captain and told him, saying, What art thou about to do? for this man is a Roman.\nSo speak ye, and so do, as men that are to be judged by a law of liberty.\nFor Adam was first formed, then Eve;\nBut he couldn’t resist boasting.\nbeholding your chaste behavior coupled with fear.\nBut all this is come to pass, that the scriptures of the prophets might be fulfilled. Then all the disciples left him, and fled.\nThink not that I came to destroy the law or the prophets: I came not to destroy, but to fulfil.\nNow the God of peace, who brought again from the dead the great shepherd of the sheep with the blood of an eternal covenant, even our Lord Jesus,\n“I’m done for,” she replied.\nAnd when they were come to the multitude, there came to him a man, kneeling to him, and saying,\nAnd I heard a voice from heaven saying, Write, Blessed are the dead who die in the Lord from henceforth: yea, saith the Spirit, that they may rest from their labors; for their works follow with them.\n“I don’t want to die,” he moaned.\nShe loved to weave and she was an expert at it.\nAnd they cast dust on their heads, and cried, weeping and mourning, saying, Woe, woe, the great city, wherein all that had their ships in the sea were made rich by reason of her costliness! for in one hour is she made desolate.\nI soon moved to the famous Indian Queen, even though I could not really afford my long stay there.\nHe has written a great raft of lawyer letters to his Washington City friends complaining that we had no right to deny his legitimate business and furthermore claiming he is owed a substantial reimbursement for vaguely specified expenses, some related to food and other supplies he says he gave the Indians after we failed to meet their basic needs.\nFor as many as have sinned without the law shall also perish without the law: and as many as have sinned under the law shall be judged by the law;\nAnd he is the head of the body, the church: who is the beginning, the firstborn from the dead; that in all things he might have the preeminence.\nTo ask if there is some mistake.\nAnd there shall be no curse any more: and the throne of God and of the Lamb shall be therein: and his servants shall serve him;\nDown along the coast, everything smelled of fish and salt water.\nNo argument had worked for the Indians on the Nation, not even the white ones, and I didn’t expect anything to work for Bear’s brown people either.\nThe only point of unanimity in their stories was that during the day’s march, when Nancy grew tired and dropped back, one of the boy soldiers prodded her forward with either the blunt end of his rifle barrel or the sharp end of a bayonet fixed beneath it.\nFor both he that sanctifieth and they that are sanctified are all of one: for which cause he is not ashamed to call them brethren,\ninsomuch that unto the sick were carried away from his body handkerchiefs or aprons, and the diseases departed from them, and the evil spirits went out.\nAnd it was given unto her that she should array herself in fine linen, bright and pure: for the fine linen is the righteous acts of the saints.\nAnd when they saw it, they made known concerning the saying which was spoken to them about this child.\nand a man’s foes shall be they of his own household.\nThe wind howled out of the northwest and carried the winter’s first pellets of snow.\nTears came to Fern’s eyes.\nand will turn away their ears from the truth, and turn aside unto fables.\nSanctify them in the truth: thy word is truth.\nAnd not as through one that sinned, so is the gift: for the judgment came of one unto condemnation, but the free gift came of many trespasses unto justification.\nUpon this many of his disciples went back, and walked no more with him.\nwho in the generations gone by suffered all the nations to walk in their own ways.\nAnd the jailor, being roused out of sleep and seeing the prison doors open, drew his sword and was about to kill himself, supposing that the prisoners had escaped.\nsaying, The Lord is risen indeed, and hath appeared to Simon.\nbecause we would fain have come unto you, I Paul once and again; and Satan hindered us.\nthou that sayest a man should not commit adultery, dost thou commit adultery? thou that abhorrest idols, dost thou rob temples?\nAnd they communed with each other of all these things which had happened.\nWatch me wrap up this ﬂy.”\nAnd he took bread, and when he had given thanks, he brake it, and gave to them, saying, This is my body which is given for you: this do in remembrance of me.\nThe sheep stayed near the barn, too, for protection.\nFor indeed we that are in this tabernacle do groan, being burdened; not for that we would be unclothed, but that we would be clothed upon, that what is mortal may be swallowed up of life.\nSequoyah, they say, gave up drawing a different symbol for each word. There were just too many marks and squiggles for anyone to remember.\nLieutenant Smith was left sitting with a flat inch of Moët’s in his flute.\nfor he had an only daughter, about twelve years of age, and she was dying. But as he went the multitudes thronged him.\nOr are ye ignorant that all we who were baptized into Christ Jesus were baptized into his death?\nFrom the far mountains. An orphan adopted by an Indian chief.\n“How?” asked Wilbur.\nIt left a shining trail across the desk like a slug’s passage.\n“Delicious.\nHim God raised up the third day, and gave him to be made manifest,\nAnd if any one say unto you, Why do ye this? say ye, The Lord hath need of him; and straightway he will send him back hither.\nFor a while the long glossy leaves turned water away from him, and then suddenly they did not.\nAll the brethren salute you. Salute one another with a holy kiss.\n“It's terribly hot,” said Mrs. Arable, fanning herself with an advertisement of a deep freeze.\nA very few cried and a few made grim humor of their situation, but mostly they went wordless with their faces composed into an expressionless mask, as if they had placed a large wager on whether or not they could conceal any hint of their thoughts or emotions.\nAnd he was parted from them about a stone’s cast; and he kneeled down and prayed,\nHe saith, Yea. And when he came into the house, Jesus spake first to him, saying, What thinkest thou, Simon? the kings of the earth, from whom do they receive toll or tribute? from their sons, or from strangers?\nI sat by the fire and told the story that everyone already knew.\nThen he could see the sheep and the lambs.\n“Can I, too?” asked Avery.\nFor a testament is of force where there hath been death: for it doth never avail while he that made it liveth.\nAnd ye have not his word abiding in you: for whom he sent, him ye believe not.\nClaire bending her head and her hair falling over her face like drawing curtains across a bright window.\nand he beholdeth the heaven opened, and a certain vessel descending, as it were a great sheet, let down by four corners upon the earth:\nAnd he sat down, and called the twelve; and he saith unto them, If any man would be first, he shall be last of all, and servant of all.\nEverywhere you look is life; even the little ball of spit on the weed stalk, if you poke it apart, has a green worm inside it.\nBut Saul increased the more in strength, and confounded the Jews that dwelt at Damascus, proving that this is the Christ.\nLife in the barn was very good — night and day, winter and summer, spring and fall, dull days and bright days.\nYou’re carrying on in a childish way.\nAvery had a balloon tied to his ear and was chewing a candied apple.\nAnd verily I say unto you, Wheresoever the gospel shall be preached throughout the whole world, that also which this woman hath done shall be spoken of for a memorial of her.\nEverybody knew that the Zuckermans had a wondrous pig.\nAnd as Jesus passed by from thence, two blind men followed him, crying out, and saying, Have mercy on us, thou son of David.\nand with all deceit of unrighteousness for them that perish; because they received not the love of the truth, that they might be saved.\nand above all these things put on love, which is the bond of perfectness.\nAnd they stoned Stephen, calling upon the Lord, and saying, Lord Jesus, receive my spirit.\nI can only see one.”\nBut I tell you of a truth, There are some of them that stand here, who shall in no wise taste of death, till they see the kingdom of God.\nFor where two or three are gathered together in my name, there am I in the midst of them.\nAnd in the hearing of all the people he said unto his disciples,\nTheir feet are swift to shed blood;\nLobbying must have seemed a little too much like real work, though I could have set him straight on that fear.\nand not only is there danger that this our trade come into disrepute; but also that the temple of the great goddess Diana be made of no account, and that she should even be deposed from her magnificence whom all Asia and the world worshippeth.\nto wit, that the Gentiles are fellow-heirs, and fellow-members of the body, and fellow-partakers of the promise in Christ Jesus through the gospel,\nLook therefore carefully how ye walk, not as unwise, but as wise;\nI could hardly sleep for fear of missing something.\nFor they had before seen with him in the city Trophimus the Ephesian, whom they supposed that Paul had brought into the temple.\nAnd Jesus said unto him, Why callest thou me good? none is good save one, even God.\nAvery had finished and was upstairs looking for his slingshot.\nYeah, she probably would have.\n“Don’t tell anybody else,” said the minister.\nBut when Paul had appealed to be kept for the decision of the emperor, I commanded him to be kept till I should send him to Cæsar.\nThen cometh Jesus with them unto a place called Gethsemane, and saith unto his disciples, Sit ye here, while I go yonder and pray.\nWilbur and the sheep and the lambs and the goose and the gander and the goslings and Charlotte and me.”\nThe rat yawned.\nAnd in that hour there was a great earthquake, and the tenth part of the city fell; and there were killed in the earthquake seven thousand persons: and the rest were affrighted, and gave glory to the God of heaven.\nThey were starving and weaponless but for one rusty shotgun with no loads and a bow with only three arrows and a blowgun with a handful of long darts whittled from buckeye wood and tufted with thistledown.\nBy faith the walls of Jericho fell down, after they had been compassed about for seven days.\n“Avery, you get out of that crate this instant!” commanded his mother.\nI’ve never done anything for you.”\nHigh, low. Near, far.\nwhereby, when ye read, ye can perceive my understanding in the mystery of Christ;\n“Well, break it up! said Templeton.\nSomewhere deep in their minds, they both imagined a future in which the Nation would become a state, a new star on the striped banner.\nAnd Jesus answered and said unto him, It is written, Thou shalt worship the Lord thy God, and him only shalt thou serve.\nAnd then, if we are not weaklings, we have to take possession of our old madness and try to soothe its issue.\nAgain I say unto you, that if two of you shall agree on earth as touching anything that they shall ask, it shall be done for them of my Father who is in heaven.\nWhen therefore the Lord knew that the Pharisees had heard that Jesus was making and baptizing more disciples than John\nand they say to the mountains and to the rocks, Fall on us, and hide us from the face of him that sitteth on the throne, and from the wrath of the Lamb:\nThese things said Isaiah, because he saw his glory; and he spake of him.\nBear ye one another’s burdens, and so fulfil the law of Christ.\nI regretted the comment as soon as it fell from my mouth.\n“And a fair is a good place to start, I guess.”\nThe colonel and his scrivener huddled together whispering, and then the scrivener sat at the end of the table and dipped his quill and began writing.\nEverybody lined up at the fence and stood for a moment admiring Wilbur and the beautiful green crate.\nAnd then shall many stumble, and shall deliver up one another, and shall hate one another.\nAll winter Wilbur watched over Charlotte’s egg sac as though he were guarding his own children.\nnor yet that he should offer himself often, as the high priest entereth into the holy place year by year with blood not his own;\nAnd all the people came early in the morning to him in the temple, to hear him. \nAnd he was three days without sight, and did neither eat nor drink.\nIt seemed as though everybody was after him.\nThe pig walked out to his yard.\nSo he inquired of them the hour when he began to amend. They said therefore unto him, Yesterday at the seventh hour the fever left him.\nFor as I passed along, and observed the objects of your worship, I found also an altar with this inscription, TO AN UNKNOWN GOD. What therefore ye worship in ignorance, this I set forth unto you.\nBut I say, Did Israel not know? First Moses saith, I will provoke you to jealousy with that which is no nation, With a nation void of understanding will I anger you.\nHe sat on a big downed log with a raucous group of old men drinking from a shared bottle.\nThen where we going?\nHe waited by the tree until dawn for the outcome to his prayer.\nHe worked until he had sweated through his clothes and something in the small of his back had given out and prevented him from standing up straight.\nAnd the scribes and the Pharisees bring a woman taken in adultery; and having set her in the midst,\nbut in every nation he that feareth him, and worketh righteousness, is acceptable to him.\nAnd a man cannot crawl under a rock and disappear.\nNow from the fig tree learn her parable: when her branch is now become tender, and putteth forth its leaves, ye know that the summer is nigh;\nand he shall say, I tell you, I know not whence ye are; depart from me, all ye workers of iniquity.\nAnd when they draw nigh unto Jerusalem, unto Bethphage and Bethany, at the mount of Olives, he sendeth two of his disciples,\nand they sat and watched him there.\nAnd angels that kept not their own principality, but left their proper habitation, he hath kept in everlasting bonds under darkness unto the judgment of the great day.\nHowbeit we know this man whence he is: but when the Christ cometh, no one knoweth whence he is.\nPeople get pushed too far, they lose their heads.\nthat, being justified by his grace, we might be made heirs according to the hope of eternal life.\nFor as touching those who were once enlightened and tasted of the heavenly gift, and were made partakers of the Holy Spirit,\nNow concerning spiritual gifts, brethren, I would not have you ignorant.\nThe air was filled with the terrible gases and smells from the rotten egg.\nIf they were this hungry now, just after the fall of leaves, what would it be when the Bone Moon came?\n“My, my. she said. “Henry Fussy. Think of that!”\nAnd a voice came unto him again the second time, What God hath cleansed, make not thou common.\nAnd those are they that were sown upon the good ground; such as hear the word, and accept it, and bear fruit, thirtyfold, and sixtyfold, and a hundredfold.\nOne day more than a hundred people came to stand at his yard and admire him.\nBut Philip was found at Azotus: and passing through he preached the gospel to all the cities, till he came to Cæsarea. \nFor if I do this of mine own will, I have a reward: but if not of mine own will, I have a stewardship intrusted to me.\n“It can handle anything.\nAnd coming into his own country he taught them in their synagogue, insomuch that they were astonished, and said, Whence hath this man this wisdom, and these mighty works?\nHe that speaketh from himself seeketh his own glory: but he that seeketh the glory of him that sent him, the same is true, and no unrighteousness is in him.\nFrom the edge of the woods, the white-throated sparrow  (which must come all the way from Boston) calls, “Oh, Peabody, Peabody, Peabody!”\nBut Peter said unto him, Thy silver perish with thee, because thou hast thought to obtain the gift of God with money.\nfrom the blood of Abel unto the blood of Zachariah, who perished between the altar and the sanctuary: yea, I say unto you, it shall be required of this generation.\nI owe my very life to her.\nIt often had a sort of peaceful smell — as though nothing bad could happen ever again in the world.\nAnd the woman whom thou sawest is the great city, which reigneth over the kings of the earth. \nAnd it was told him, Thy mother and thy brethren stand without, desiring to see thee.\nBut she is happier if she abide as she is, after my judgment: and I think that I also have the Spirit of God. \n“Goose?” said Charlotte.\nBut they, passing through from Perga, came to Antioch of Pisidia; and they went into the synagogue on the sabbath day, and sat down.\n“Templeton, said Wilbur, “if you weren't so dopey, you would have noticed that Charlotte has made an egg sac.\nGrace to you and peace be multiplied in the knowledge of God and of Jesus our Lord;\nFor he of whom these things are said belongeth to another tribe, from which no man hath given attendance at the altar.\nAnd it had started snowing a lot.\nLook to yourselves, that ye lose not the things which we have wrought, but that ye receive a full reward.\nAnd there came a scribe, and said unto him, Teacher, I will follow thee whithersoever thou goest.\nAnd they were all amazed, insomuch that they questioned among themselves, saying, What is this? a new teaching! with authority he commandeth even the unclean spirits, and they obey him.\nAnd he lifted up his eyes on his disciples, and said, Blessed are ye poor: for yours is the kingdom of God.\nFor which of you, desiring to build a tower, doth not first sit down and count the cost, whether he have wherewith to complete it?\nbeing only (with meats and drinks and divers washings) carnal ordinances, imposed until a time of reformation.\nBut the father said to his servants, Bring forth quickly the best robe, and put it on him; and put a ring on his hand, and shoes on his feet:\nSome of the multitude therefore, when they heard these words, said, This is of a truth the prophet.\nAnd they all wept sore, and fell on Paul’s neck and kissed him,\n“No trouble at all.\nShe uses a dry, tough thread for foundation lines, and she uses a sticky thread for snare lines—the ones that catch and hold insects.\nAnd it came to pass, as they were parting from him, Peter said unto Jesus, Master, it is good for us to be here: and let us make three tabernacles; one for thee, and one for Moses, and one for Elijah: not knowing what he said.\n“At my age it’s a good idea to keep gaining.”\nHalf of him they’d eaten fresh, and half of him had been shaved into thin strips and hung from drying frames to jerk near the fire.\n“I’ll be a friend to you.\nAnd then she started feeding her chickens from grain she held basined in her apron.\nBut I call God for a witness upon my soul, that to spare you I forbare to come unto Corinth.\nWest.\nBut if the truth of God through my lie abounded unto his glory, why am I also still judged as a sinner?\nBut mostly it smelled of hay, for there was always hay in the great loft up overhead.\nAnd when they had crossed over, they came to the land, unto Gennesaret.\nBut unto us God revealed them through the Spirit: for the Spirit searcheth all things, yea, the deep things of God.\nLet these words sink into your ears: for the Son of man shall be delivered up into the hands of men.\nbut his disciples took him by night, and let him down through the wall, lowering him in a basket.\nHer house was afire and black smoke rose to meet the low clouds before she made the second turning in the trail.\nbut how he now seeth, we know not; or who opened his eyes, we know not: ask him; he is of age; he shall speak for himself.\nthat the ordinance of the law might be fulfilled in us, who walk not after the flesh, but after the Spirit.\nThere are also celestial bodies, and bodies terrestrial: but the glory of the celestial is one, and the glory of the terrestrial is another.\nAnd it came to pass soon afterwards, that he went to a city called Nain; and his disciples went with him, and a great multitude.\nBut when he heard these things, he became exceeding sorrowful; for he was very rich.\nMrs. Zuckerman lay dreaming about a deep freeze unit.\nHe had been out alone under a low sky, moving up a narrow cove north of here into a deep closed landscape, a cut in earth so sharp he sometimes had to walk the creek like it was a trail because the cove walls narrowed and rose straight from the lapping water of the creek edge.\nWhen I am in the world, I am the light of the world.\nand those that weep, as though they wept not; and those that rejoice, as though they rejoiced not; and those that buy, as though they possessed not;\nEven when sickness half emptied their towns, they kept their writing.\nBrethren, my heart’s desire and my supplication to God is for them, that they may be saved.\nOf whom we have many things to say, and hard of interpretation, seeing ye are become dull of hearing.\nDon’t go.\nIt was the kind of barn that children like to play in.\nFor there shall arise false Christs, and false prophets, and shall show great signs and wonders; so as to lead astray, if possible, even the elect.\nNow the chief priests and the elders persuaded the multitudes that they should ask for Barabbas, and destroy Jesus.\nThe servant therefore fell down and worshipped him, saying, Lord, have patience with me, and I will pay thee all.\nHe findeth first his own brother Simon, and saith unto him, We have found the Messiah (which is, being interpreted, Christ).\nand asked of him letters to Damascus unto the synagogues, that if he found any that were of the Way, whether men or women, he might bring them bound to Jerusalem.\nwhether Paul, or Apollos, or Cephas, or the world, or life, or death, or things present, or things to come; all are yours;\nFor I am not ashamed of the gospel: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek.\nUpon the first day of the week let each one of you lay by him in store, as he may prosper, that no collections be made when I come.\nFor my yoke is easy, and my burden is light. \nNow, all of you must have noticed what’s been going on around here the last few days.\nI didn’t know all the names.\nAnd ye shall be hated of all men for my name’s sake: but he that endureth to the end, the same shall be saved.\nbut sin, finding occasion, wrought in me through the commandment all manner of coveting: for apart from the law sin is dead.\nbut God giveth it a body even as it pleased him, and to each seed a body of its own.\nTell us therefore, What thinkest thou? Is it lawful to give tribute unto Cæsar, or not?\nforbidding to marry, and commanding to abstain from meats, which God created to be received with thanksgiving by them that believe and know the truth.\nSoon, belief in these visions and revelations became widespread, and trails from the foothills up to the mountains began filling with pilgrims.\nAnd seeing a fig tree by the way side, he came to it, and found nothing thereon, but leaves only; and he saith unto it, Let there be no fruit from thee henceforward for ever. And immediately the fig tree withered away.\nFor he was numbered among us, and received his portion in this ministry.\nThis natural sympathy is kept alive by the appeals of those interested in their opposition to a removal and by the representation made to them of any thing but advantage in such an arrangement.\nMajor Ridge had sent them to Connecticut for their educations, and when they could read Latin and write fluently in every verse form common to the English language, they came back to the Nation dressed to the teeth in the latest fashion, riding in matched cabriolets drawn by matching teams, and married to matching white wives, all four of them unimaginably young and burning to make progressive reforms in every department of life you could name.\nAnd the two disciples heard him speak, and they followed Jesus.\nAnd there stood up one of them named Agabus, and signified by the Spirit that there should be a great famine over all the world: which came to pass in the days of Claudius.\n“Run uphill!” cried the sheep.\n“Hey, look at that big spider!” he said.\nFor this is the will of my Father, that every one that beholdeth the Son, and believeth on him, should have eternal life; and I will raise him up at the last day.\nHe had the habit of including the word perhaps in nearly every order he gave.\nHe watched his chance and when no one was looking he crept into the crate and buried himself in the straw at the bottom.\nThe runners would have to be on top of him to see it through the brush.\nbut like as he who called you is holy, be ye yourselves also holy in all manner of living;\nSalute Asyncritus, Phlegon, Hermes, Patrobas, Hermas, and the brethren that are with them.\nSeeing that many glory after the flesh, I will glory also.\nYe have lived delicately on the earth, and taken your pleasure; ye have nourished your hearts in a day of slaughter.\nAfterward came also the other virgins, saying, Lord, Lord, open to us.\nlet the women keep silence in the churches: for it is not permitted unto them to speak; but let them be in subjection, as also saith the law.\nMuch every way: first of all, that they were intrusted with the oracles of God.\nBut I say unto you that hear, Love your enemies, do good to them that hate you,\nNow the chief priests and the whole council sought witness against Jesus to put him to death; and found it not.\nThe fish was caught by one fin, Mother; its tail was wildly thrashing and shining in the sun.\nAnd he said unto them, Why are ye fearful? have ye not yet faith?\nBeing therefore always of good courage, and knowing that, whilst we are at home in the body, we are absent from the Lord\nAnd John’s disciples and the Pharisees were fasting: and they come and say unto him, Why do John’s disciples and the disciples of the Pharisees fast, but thy disciples fast not?\nIt began when Charley’s wife, Nancy, had grown tired.\nThere was set there a vessel full of vinegar: so they put a sponge full of the vinegar upon hyssop, and brought it to his mouth.\nShe would take a stick and trace the outline of his lower body as children trace their hands.\nMy little children, let no man lead you astray: he that doeth righteousness is righteous, even as he is righteous:\nIn that hour came the disciples unto Jesus, saying, Who then is greatest in the kingdom of heaven?\nOn the morrow he seeth Jesus coming unto him, and saith, Behold, the Lamb of God, that taketh away the sin of the world!\nShe held her nose and ran toward the house.\nThe next morning by the fire, with coffee boiling and side meat frying, Smith got all proper and priggish and said, I fault myself for an excess of frankness last night.\nHe had scooped out a special place in the manure for the sac, next to the board fence.\nSo the band and the chief captain, and the officers of the Jews, seized Jesus and bound him,\nWell; by their unbelief they were broken off, and thou standest by thy faith. Be not highminded, but fear:\nAnd he suffered him not, but saith unto him, Go to thy house unto thy friends, and tell them how great things the Lord hath done for thee, and how he had mercy on thee.\nbut I say unto you, that every one who is angry with his brother shall be in danger of the judgment; and whosoever shall say to his brother, Raca, shall be in danger of the council; and whosoever shall say, Thou fool, shall be in danger of the hell of fire.\nAnd when he was come, the Jews that had come down from Jerusalem stood round about him, bringing against him many and grievous charges which they could not prove;\nBut with me it is a very small thing that I should be judged of you, or of man’s judgment: yea, I judge not mine own self.\nBut I am going to save you, and I want you to quiet down immediately.\nhaving hope toward God, which these also themselves look for, that there shall be a resurrection both of the just and unjust.\nAh! what have we to do with thee, Jesus thou Nazarene? art thou come to destroy us? I know thee who thou art, the Holy One of God.\nAnd he said unto them, Which of you shall have a friend, and shall go unto him at midnight, and say to him, Friend, lend me three loaves;\nWilbur sank to his knees, all radiance gone.\nBut woe unto you that are rich! for ye have received your consolation.\nFrom henceforth I tell you before it come to pass, that, when it is come to pass, ye may believe that I am he.\nShe sat with head tucked under a wing.\nAnd he was teaching in one of the synagogues on the sabbath day.\nAnd they also, if they continue not in their unbelief, shall be grafted in: for God is able to graft them in again.\nThey said therefore one to another, Let us not rend it, but cast lots for it, whose it shall be: that the scripture might be fulfilled, which saith, They parted my garments among them, And upon my vesture did they cast lots.\nYour fathers ate the manna in the wilderness, and they died.\n“Seven is a lucky number.”\none Lord, one faith, one baptism,\nIt is not easy to look radiant, but Wilbur threw himself into it with a will.\nBut he spake of the temple of his body.\nAnd he entered into a boat, and crossed over, and came into his own city.\nFor when by reason of the time ye ought to be teachers, ye have need again that some one teach you the rudiments of the first principles of the oracles of God; and are become such as have need of milk, and not of solid food.\n“Welcome to the barn cellar.\n“The fish lost the fight.\n“Be quiet, Templeton!” said the sheep.\nThey therefore cried out, Away with him, away with him, crucify him! Pilate saith unto them, Shall I crucify your King? The chief priests answered, We have no king but Cæsar.\nAnd these are they by the way side, where the word is sown; and when they have heard, straightway cometh Satan, and taketh away the word which hath been sown in them.\nAnd the Lord said unto him, Now ye the Pharisees cleanse the outside of the cup and of the platter; but your inward part is full of extortion and wickedness.\nAnd there accompanied him as far as Asia, Sopater of Beroea, the son of Pyrrhus; and of the Thessalonians, Aristarchus and Secundus; and Gaius of Derbe, and Timothy; and of Asia, Tychicus and Trophimus.\nbut glory and honor and peace to every man that worketh good, to the Jew first, and also to the Greek:\nNow Judas also, who betrayed him, knew the place: for Jesus oft-times resorted thither with his disciples.\nLet us therefore give diligence to enter into that rest, that no man fall after the same example of disobedience.\nAre they ministers of Christ? (I speak as one beside himself) I more; in labors more abundantly, in prisons more abundantly, in stripes above measure, in deaths oft.\n“Wilbur’s all right now,” said Fern.\nAnd when they had read it, they rejoiced for the consolation.\nNay, in all these things we are more than conquerors through him that loved us.\n“But it’s unfair,” cried Fern.\nAnd he drove them from the judgment-seat.\nHe stepped through the fence into his yard.\nShe lived about three miles away.\nand when they were come over against Mysia, they assayed to go into Bithynia; and the Spirit of Jesus suffered them not;\nWhen he hath put forth all his own, he goeth before them, and the sheep follow him: for they know his voice.\n“Is it a plaything?”\nOnce when I was a young man, I had a girlfriend.\nThe man answered and said unto them, Why, herein is the marvel, that ye know not whence he is, and yet he opened mine eyes.\nOf course, not a broken one.\nFor every one shall be salted with fire.\nI desire therefore that the men pray in every place, lifting up holy hands, without wrath and disputing.\nbut if ye have respect of persons, ye commit sin, being convicted by the law as transgressors.\nCharley was too weary to hold any hope of killing a hog with just a hatchet.\nAnd he sent yet another servant: and him also they beat, and handled him shamefully, and sent him away empty.\nThe short of it was, French didn’t sound a bit like I thought it would.\nAnd he left them, and again entering into the boat departed to the other side.\n“Its name is Wilbur,” she whispered to herself.\n“Look out for Zuckerman!” yelled the gander.\nHe urgently needed to tell me about a visit to his homestead by a little party of pilgrims.\nConcerning therefore the eating of things sacrificed to idols, we know that no idol is anything in the world, and that there is no God but one.\nHis neighbors stopped laughing when Sequoyah's six-year-old daughter, Ayoka, learned to read.\nTo flee or hide or surrender?\nmen that have hazarded their lives for the name of our Lord Jesus Christ.\nBut to each one is given the manifestation of the Spirit to profit withal.\nThe border, leastways, said the Philadelphia boy.\nJesus saith unto him, Thou hast said: nevertheless I say unto you, Henceforth ye shall see the Son of man sitting at the right hand of Power, and coming on the clouds of heaven.\n“Now I knock him out, so he’ll be more comfortable.” She bit the ﬂy.\nWherefore remember, that once ye, the Gentiles in the flesh, who are called Uncircumcision by that which is called Circumcision, in the flesh, made by hands;\nThey believed him, for he looked every day of that age, and I vouched for his harmlessness and frailty.\nWilbur rushed out, ate everything in a hurry, and licked the trough.\nBrethren, let each man, wherein he was called, therein abide with God.\nSo then, my beloved, even as ye have always obeyed, not as in my presence only, but now much more in my absence, work out your own salvation with fear and trembling;\nThey stared and stared for a long time at Wilbur.\nBy any standard, I looked irreproachable.\nOn an apple bough, the phoebe teeters and wags its tail and says, “Phoebe, phoe-bee! ” The song sparrow, who knows how brief and lovely life is, says, “Sweet, sweet, sweet interlude; sweet, sweet, sweet interlude.”\nthat thou keep the commandment, without spot, without reproach, until the appearing of our Lord Jesus Christ:\nFor finding fault with them, he saith, Behold, the days come, saith the Lord, That I will make a new covenant with the house of Israel and with the house of Judah;\nFor if thou wast cut out of that which is by nature a wild olive tree, and wast grafted contrary to nature into a good olive tree; how much more shall these, which are the natural branches, be grafted into their own olive tree?\nWhen I get ready to lay eggs, I have to lay eggs, Fair or no Fair.\nwhich we have as an anchor of the soul, a hope both sure and stedfast and entering into that which is within the veil;\nThere is one glory of the sun, and another glory of the moon, and another glory of the stars; for one star differeth from another star in glory.\nSo he cometh to a city of Samaria, called Sychar, near to the parcel of ground that Jacob gave to his son Joseph:\nI went over and said, Boys, this is not your country, and I guess you feel uneasy in it.\nThen he dried himself with an imaginary towel.\nMy age, I guess.”\nJesus therefore said, Yet a little while am I with you, and I go unto him that sent me.\nBehold, your house is left unto you desolate.\nThat disciple therefore whom Jesus loved saith unto Peter, It is the Lord. So when Simon Peter heard that it was the Lord, he girt his coat about him (for he was naked), and cast himself into the sea.\nBlessed are they that hunger and thirst after righteousness: for they shall be filled.\nFlies, bugs, grasshoppers, choice beetles, moths, butterflies, tasty cockroaches, gnats, midges, daddy longlegs, centipedes, mosquitoes, crickets —  anything that is careless enough to get caught in my web. I have to live, don't I?”\n“Will Mr. Homer Zuckerman bring his famous pig to the judges’ booth in front of the grandstand.\nFor this people’s heart is waxed gross, And their ears are dull of hearing, And their eyes they have closed; Lest haply they should perceive with their eyes, And hear with their ears, And understand with their heart, And should turn again, And I should heal them.\nI John, your brother and partaker with you in the tribulation and kingdom and patience which are in Jesus, was in the isle that is called Patmos, for the word of God and the testimony of Jesus.\nLurvy was in bed by eight-thirty.\nThe next morning, as the soldiers prepared to drive them away, the men hid the hatchets under their clothes with no notion other than that edged implements might become useful.\nJesus therefore said unto them, Verily, verily, I say unto you, It was not Moses that gave you the bread out of heaven; but my Father giveth you the true bread out of heaven.\nWhen he returned to the barn, he carried in his mouth an advertisement he had torn from a crumpled magazine.\nAnd he went out, and followed; and he knew not that it was true which was done by the angel, but thought he saw a vision.\nBehold, the hire of the laborers who mowed your fields, which is of you kept back by fraud, crieth out: and the cries of them that reaped have entered into the ears of the Lord of Sabaoth.\nBut one night, it was cold, but I left her house that night close to midnight.\nThe goose knew a day in advance that they were coming—she could hear their weak voices calling from inside the egg.\nAnd I saw another beast coming up out of the earth; and he had two horns like unto a lamb, and he spake as a dragon.\nAnd he said unto them, Take nothing for your journey, neither staff, nor wallet, nor bread, nor money; neither have two coats.\nBut not even Titus who was with me, being a Greek, was compelled to be circumcised:\nThe pain revived Wilbur.\nHave we no right to lead about a wife that is a believer, even as the rest of the apostles, and the brethren of the Lord, and Cephas?\nBut he giveth more grace. Wherefore the scripture saith, God resisteth the proud, but giveth grace to the humble.\nBehold, ye despisers, and wonder, and perish; For I work a work in your days, A work which ye shall in no wise believe, if one declare it unto you.\nAnd a certain young man followed with him, having a linen cloth cast about him, over his naked body: and they lay hold on him;\nAnd those on the rock are they who, when they have heard, receive the word with joy; and these have no root, who for a while believe, and in time of temptation fall away.\nIt seemed unimaginably large.\nAnd Paul stood in the midst of the Areopagus, and said, Ye men of Athens, in all things I perceive that ye are very religious.\nHe and Mr. Arable and Lurvy and Avery grabbed the crate and boosted it over the side of the pen and up into the truck.\nCharley overturned creek rocks to find crawfish, and one by one as he found them, he pinched their whiskered heads and snapping foreclaws off between thumb and forefinger and ate the tails and whatever hind legs remained while they still pulsed in a last attempt at flight.\nNext morning when the first light came into the sky and the sparrows stirred in the trees, when the cows rattled their chains and the rooster crowed and the early automobiles went whispering along the road,  Wilbur awoke and looked for Charlotte.\nfor they are spirits of demons, working signs; which go forth unto the kings of the whole world, to gather them together unto the war of the great day of God, the Almighty.\nI met Mrs. Chapman at other parties and was initially only polite to her, given the Mrs. attached to her name.\nHe stood in the entryway to his cabin with one hand holding back the greasy deerhide that served as door and the other hand visored over his cloudy eyes, looking out to where we sat our horses in the rain.\nFor I would not, brethren, have you ignorant of this mystery, lest ye be wise in your own conceits, that a hardening in part hath befallen Israel, until the fulness of the Gentiles be come in;\nas it is written, He hath scattered abroad, he hath given to the poor; His righteousness abideth for ever.\n“Congratulations!” shouted Wilbur.\nMy, my!\nAnd that to feed a dozen people.\nBlessed are they that wash their robes, that they may have the right to come to the tree of life, and may enter in by the gates into the city.\nFor as the Father hath life in himself, even so gave he to the Son also to have life in himself:\nAnd don’t eat a lot of stuff that's going to make you sick to your stomachs.”\nI recollect that you’re an attorney.\n“Don't worry about my stomach,” snarled Templeton.\nFor verily I say unto you, Till heaven and earth pass away, one jot or one tittle shall in no wise pass away from the law, till all things be accomplished.\nBut the governor answered and said unto them, Which of the two will ye that I release unto you? And they said, Barabbas.\nI made it pretty far before I stopped; I turned back and in the distance… \nIf anybody can think of another message, or remark, I'll be glad to weave it into the web.\nAnd when much time was spent, and the voyage was now dangerous, because the Fast was now already gone by, Paul admonished them,\nOf easy wind and downy flake.\n“Bee-bee-bee!”\nBeware therefore, lest that come upon you which is spoken in the prophets:\nlonging to see thee, remembering thy tears, that I may be filled with joy;\nAnd straightway in the synagogues he proclaimed Jesus, that he is the Son of God.\nBright autumn, normally the driest month of the year, was like a new unsatisfactory season interjected into the year’s round, warm and wet and yet the tree limbs stark as shattered glass against the grey sky and the goldenrod and ironweed and joe-pye weed all beat down to brown trash on the ground.\nI have to get my own living. I live by my wits. I have to be sharp and clever, lest I go hungry.\n“I know where there's a package of soap flakes in the woodshed.\nOthers said, These are not the sayings of one possessed with a demon. Can a demon open the eyes of the blind?\n“Run along, if you want to see more of the Fair.”\nWhen he tired of this, he walked indoors, climbed to the top of the manure pile, and sat down. He didn’t feel like going to sleep, he didn’t feel like digging, he was tired of standing still, tired of lying down.\nFor he said unto him, Come forth, thou unclean spirit, out of the man.\nAnd his head was brought on a platter, and given to the damsel: and she brought it to her mother.\nAnd when Jesus saw her, he called her, and said to her, Woman, thou art loosed from thine infirmity.\nIt shall turn out unto you for a testimony.\nBut when the multitudes saw it, they were afraid, and glorified God, who had given such authority unto men.\nOne night when we returned home, our dog was barking fiercely as if he were barking at some animal close by.\nHe could have reached out and hit them with a stick.\nBut there stood up one in the council, a Pharisee, named Gamaliel, a doctor of the law, had in honor of all the people, and commanded to put the men forth a little while.\nlooking carefully lest there be any man that falleth short of the grace of God; lest any root of bitterness springing up trouble you, and thereby the many be defiled;\nBless my soul, I believe it was old Templeton.\nAnd behold, there appeared unto them Moses and Elijah talking with him.\nHe's modest and can’t stand praise.”\nBut they were urgent with loud voices, asking that he might be crucified. And their voices prevailed.\ntraitors, headstrong, puffed up, lovers of pleasure rather than lovers of God;\nThere was one thing that disturbed their happy lives . . . Spearfinger!  \nBear’s face did not shift one way or the other.\nHe sat with his back against a tree and looked up through the bare winter woods toward the highest peaks and sent out a prayer to the bear and all his animal brethren, speaking aloud without hope or despair.\nThen Pilate therefore took Jesus, and scourged him.\nA light for revelation to the Gentiles, And the glory of thy people Israel.\nAnd he asked them, But who say ye that I am? Peter answereth and saith unto him, Thou art the Christ.\nThe children of thine elect sister salute thee.\nwhose voice then shook the earth: but now he hath promised, saying, Yet once more will I make to tremble not the earth only, but also the heaven.\n“What's up? he asked, seeing the animals assembled.\nWhence come wars and whence come fightings among you? come they not hence, even of your pleasures that war in your members?\nThe horses were long gone—traded to Axe, first one and then the other—during late summer and early fall.\nYea and in your law it is written, that the witness of two men is true.\nOne day she was hanging around on the web and a tiny fish leaped into the air and got tangled in the web.\nWhat is it then? I will pray with the spirit, and I will pray with the understanding also: I will sing with the spirit, and I will sing with the understanding also.\n“Over and gone, over and gone.\nAnd Joseph arose from his sleep, and did as the angel of the Lord commanded him, and took unto him his wife;\nBut I say that so long as the heir is a child, he differeth nothing from a bondservant though he is lord of all;\n“Why can’t you?” asked the pig.\nOnly Wilbur—ilbur-ilbur is going to the Fair.”\nHis eyes grew wet with tears.\nAnd if also a man contend in the games, he is not crowned, except he have contended lawfully.\nFern was just about to jump up when a voice was heard.\nMet with many young representatives, and even a couple of old regal senators, one of them the famously contentious John C. Calhoun.\n“Hey, watch me!” yelled Avery, crawling on all fours into the crate.\nI'm in pain! I'm in pain!\nand when they had withdrawn, they spake one to another, saying, This man doeth nothing worthy of death or of bonds.\nHe was partly blinded.\nAnd he went out about the third hour, and saw others standing in the marketplace idle;\nbut the other proclaim Christ of faction, not sincerely, thinking to raise up affliction for me in my bonds.\nI stood and waited, and in a minute the colonel lost his place in his own thoughts and fell silent.\nAnd I saw a great white throne, and him that sat upon it, from whose face the earth and the heaven fled away; and there was found no place for them.\n“ ‘Humble’ has two meanings.\nThen, only a day later, nothing but watery grey soup of feet and necks and gizzards.\naccording to the custom of the priest’s office, his lot was to enter into the temple of the Lord and burn incense.\nAll my affairs shall Tychicus make known unto you, the beloved brother and faithful minister and fellow-servant in the Lord:\nBut this year the pigeons came only in ones and twos, and then after a few days they were suddenly gone altogether.\nNow the parable is this: The seed is the word of God.\nBut he that looketh into the perfect law, the law of liberty, and so continueth, being not a hearer that forgetteth but a doer that worketh, this man shall be blessed in his doing.\nSilver trinkets and talk of the Great White Father got nowhere with them.\nHe saith unto him the third time, Simon, son of John, lovest thou me? Peter was grieved because he said unto him the third time, Lovest thou me? And he said unto him, Lord, thou knowest all things; thou knowest that I love thee. Jesus saith unto him, Feed my sheep.\nNo man hath beheld God at any time: if we love one another, God abideth in us, and his love is perfected in us:\nBut Jesus said, Some one did touch me; for I perceived that power had gone forth from me.\nThey could smell the dust of the race track where the sprinkling cart had moistened it; and they could smell hamburgers frying and see balloons aloft.\nThe autumn days grew shorter, Lurvy brought the squashes and pumpkins in from the garden and piled them on the barn floor, where they wouldn't get nipped on frosty nights.\nYou see, I must stay looking strong\nThey say therefore unto the blind man again, What sayest thou of him, in that he opened thine eyes? And he said, He is a prophet.\nI'll have to ask you to try again.”\nAnd when his friends heard it, they went out to lay hold on him: for they said, He is beside himself.\nand there died the third part of the creatures which were in the sea, even they that had life; and the third part of the ships was destroyed.\nFaithful is the saying, and worthy of all acceptation.\nAnd when Jesus came into the ruler’s house, and saw the flute-players, and the crowd making a tumult,\nEveryone rejoiced to find that the miracle o f the web had been repeated.\nTo him therefore that knoweth to do good, and doeth it not, to him it is sin. \n“You’re certainly making a beautiful noise,” snapped the old sheep.\nAnd he said unto them, Cast the net on the right side of the boat, and ye shall find. They cast therefore, and now they were not able to draw it for the multitude of fishes.\nBear said.\n“What’s going on, Zuckerman?\nAnd he said unto them, I beheld Satan fallen as lightning from heaven.\nAnd they made a calf in those days, and brought a sacrifice unto the idol, and rejoiced in the works of their hands.\nLet them alone: they are blind guides. And if the blind guide the blind, both shall fall into a pit.\nThe travel with the soldiers, the capture of Charley, the killings.\nAnd what I say unto you I say unto all, Watch. \nSee my hands and my feet, that it is I myself: handle me, and see; for a spirit hath not flesh and bones, as ye behold me having.\nThinking was not what the moment called for.\nWhen I was daily with you in the temple, ye stretched not forth your hands against me: but this is your hour, and the power of darkness.\nAnd Jesus lifted up himself, and said unto her, Woman, where are they? did no man condemn thee?\nAt last Wilbur saw the creature that had spoken to him in such a kindly way.\nWherefore putting away all filthiness and overflowing of wickedness, receive with meekness the implanted word, which is able to save your souls.\nAnd there, where I was walking, something was suddenly standing in the middle of the road.\nYe look at the things that are before your face. If any man trusteth in himself that he is Christ’s, let him consider this again with himself, that, even as he is Christ’s, so also are we.\nThat began the period of time when I refused to wear any outfit in which the hat failed to correspond with the clothes.\nSo because thou art lukewarm, and neither hot nor cold, I will spew thee out of my mouth.\ninsomuch that they even carried out the sick into the streets, and laid them on beds and couches, that, as Peter came by, at the least his shadow might overshadow some one of them.\nBut Saul, yet breathing threatening and slaughter against the disciples of the Lord, went unto the high priest,\nHe decided to change the subject.\nAnd if ye salute your brethren only, what do ye more than others? do not even the Gentiles the same?\nWhat he believed then was that Green Man and God were not going to save him or his people.\nto speak evil of no man, not to be contentious, to be gentle, showing all meekness toward all men.\nWhat then shall we say that Abraham, our forefather, hath found according to the flesh?\n“Oh, keep quiet!” hollered Fern.\nAnd as Lydda was nigh unto Joppa, the disciples, hearing that Peter was there, sent two men unto him, entreating him, Delay not to come on unto us.\nyet, looking unto the promise of God, he wavered not through unbelief, but waxed strong through faith, giving glory to God,\n“It’s never been done.”\nBut certain of the Pharisees said, Why do ye that which it is not lawful to do on the sabbath day?\nNow when Jesus heard it, he withdrew from thence in a boat, to a desert place apart: and when the multitudes heard thereof, they followed him on foot from the cities.\nAnd they come again to Jerusalem: and as he was walking in the temple, there come to him the chief priests, and the scribes, and the elders;\n(for when Gentiles that have not the law do by nature the things of the law, these, not having the law, are the law unto themselves;\nHe said, I’m meant to come home someday with honors.\nThe pig stared at her.\nCome morning, I’d put the traveling clothes back on, wet and cold until they warmed up to body temperature, but that was better than being miserable all the time.\n“Everybody watch!” he cried.\n“Let's see it!” said Avery, setting his gun down.\nAnd Ananias departed, and entered into the house; and laying his hands on him said, Brother Saul, the Lord, even Jesus, who appeared unto thee in the way which thou camest, hath sent me, that thou mayest receive thy sight, and be filled with the Holy Spirit.\nFor hereunto were ye called: because Christ also suffered for you, leaving you an example, that ye should follow his steps:\nIt’s true, and I have to say what is true.\nHe vanished into the shadows.\nHowbeit the Most High dwelleth not in houses made with hands; as saith the prophet,\nAnd they come, bringing unto him a man sick of the palsy, borne of four.\nNow I beseech you, brethren, by our Lord Jesus Christ, and by the love of the Spirit, that ye strive together with me in your prayers to God for me;\n“Can I take this to mean,” asked Wilbur, “that you have definitely decided to live here in the barn cellar, and that I am going to have three friends?”\nThen they went running upward into the mountains.\n“You'll worry all right on a zero morning next January when Wilbur is dead and nobody comes down here with a nice pail of warm slops to pour into the trough.\nBut these rail at whatsoever things they know not: and what they understand naturally, like the creatures without reason, in these things are they destroyed.\nThe children no longer wept. They were all silent except for their hard breathing.\nWhite bones gnawed by porcupines.\nFor this Melchizedek, king of Salem, priest of God Most High, who met Abraham returning from the slaughter of the kings and blessed him,\nThat’s what the immediate future looked like it was shaping up to be.\nAnd he saith unto them, Come ye after me, and I will make you fishers of men.\nthe son of Jesse, the son of Obed, the son of Boaz, the son of Salmon, the son of Nahshon,\nEvery newspaper jackass with a pen and half an hour of unclaimed time gets to take a shot.\nSo then it is not of him that willeth, nor of him that runneth, but of God that hath mercy.\nJesus answered, Are there not twelve hours in the day? If a man walk in the day, he stumbleth not, because he seeth the light of this world.\nAnd when he was gone up, and had broken the bread, and eaten, and had talked with them a long while, even till break of day, so he departed.\nthat there should be no schism in the body; but that the members should have the same care one for another.\nHath not the scripture said that the Christ cometh of the seed of David, and from Bethlehem, the village where David was?\nAnd Jesus, full of the Holy Spirit, returned from the Jordan, and was led in the Spirit in the wilderness\nYea, they bind heavy burdens and grievous to be borne, and lay them on men’s shoulders; but they themselves will not move them with their finger.\nAnd when they heard this they were filled with wrath, and cried out, saying, Great is Diana of the Ephesians.\nThey have been alive for thousands of years.\nFor we have not here an abiding city, but we seek after the city which is to come.\nHe would talk as deep into the night as I would listen, telling me about his day and every flicker of thought and feeling that had crossed his mind.\nThen you'll see what trouble a pig can be.”\nVerily I say unto you, There are some of them that stand here, who shall in no wise taste of death, till they see the Son of man coming in his kingdom. \nto whom we gave place in the way of subjection, no, not for an hour; that the truth of the gospel might continue with you.\nBehold, I send you forth as sheep in the midst of wolves: be ye therefore wise as serpents, and harmless as doves.\nAnd when the living creatures shall give glory and honor and thanks to him that sitteth on the throne, to him that liveth for ever and ever,\nAnd Jesus returned in the power of the Spirit into Galilee: and a fame went out concerning him through all the region round about.\n“Now then — there is no time to be lost.\nBe not ashamed therefore of the testimony of our Lord, nor of me his prisoner: but suffer hardship with the gospel according to the power of God;\nWhen the group had finished putting their names to paper, one of them expressed the opinion that they had just signed their own execution warrants.\nWill the crowd please make way and let the truck pass.\nUnder such circumstances the result of our observations is that the great mass of the Indians in this section of the country are decidedly hostile to emigration, and what is to be lamented, the hope of remaining is kept alive by false representation to a degree that is truly surprising.\nLet's go for a walk in the woods with Asmeret.\n“The management of the Fair takes great pleasure in presenting Mr. Homer L. Zuckerman and his famous pig.\nNo soldier on service entangleth himself in the affairs of this life; that he may please him who enrolled him as a soldier.\nAnd they crucify him, and part his garments among them, casting lots upon them, what each should take.\nof how much sorer punishment, think ye, shall he be judged worthy, who hath trodden under foot the Son of God, and hath counted the blood of the covenant wherewith he was sanctified an unholy thing, and hath done despite unto the Spirit of grace?\nYe hypocrites, ye know how to interpret the face of the earth and the heaven; but how is it that ye know not how to interpret this time?\nand unto none of them was Elijah sent, but only to Zarephath, in the land of Sidon, unto a woman that was a widow.\nAnd when the angel that spake unto him was departed, he called two of his household-servants, and a devout soldier of them that waited on him continually;\nI cannot find a place to stay and wait, until winter is gone.\nBut though we, or an angel from heaven, should preach unto you any gospel other than that which we preached unto you, let him be anathema.\nBut they shall proceed no further: for their folly shall be evident unto all men, as theirs also came to be.\nWhat eating!\nBe it known therefore unto you, that this salvation of God is sent unto the Gentiles: they will also hear.\nI'll bring back a magazine clipping if I can find one.”\nAnd they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why then did ye not believe him?\nSo fighting was out.\nFinally he said that he did not intend to altercate.\nAnd all the people saw him walking and praising God:\nand hearing a multitude going by, he inquired what this meant.\nAnd again he went out from the borders of Tyre, and came through Sidon unto the sea of Galilee, through the midst of the borders of Decapolis.\nAnd I saw an angel standing in the sun; and he cried with a loud voice, saying to all the birds that fly in mid heaven, Come and be gathered together unto the great supper of God;\nBut ye are not in the flesh but in the Spirit, if so be that the Spirit of God dwelleth in you. But if any man hath not the Spirit of Christ, he is none of his.\nAn old hemlock grew on the highest part of this piece of land.\nand the cares of the world, and the deceitfulness of riches, and the lusts of other things entering in, choke the word, and it becometh unfruitful.\nBut when Herod was dead, behold, an angel of the Lord appeareth in a dream to Joseph in Egypt, saying,\nAnd behold, a woman who was in the city, a sinner; and when she knew that he was sitting at meat in the Pharisee’s house, she brought an alabaster cruse of ointment,\n“But I'm not terrific, Charlotte.\nShe sees soil and decomposers everywhere.\nknowing that the putting off of my tabernacle cometh swiftly, even as our Lord Jesus Christ signified unto me.\nAnd having gifts differing according to the grace that was given to us, whether prophecy, let us prophesy according to the proportion of our faith;\nWhen Mr. Arable returned to the house half an hour later, he carried a carton under his arm.\nIf you were a member of a clan, you were an Indian.\nand the second:\nOne afternoon she heard a most interesting conversation and witnessed a strange event.\nToday it is sunny outside.\nand shall dash thee to the ground, and thy children within thee; and they shall not leave in thee one stone upon another; because thou knewest not the time of thy visitation.\nTempleton, not wishing to come out in broad daylight,  stayed quietly under the straw at the bottom of the crate.\nAnd when he was come to the other side into the country of the Gadarenes, there met him two possessed with demons, coming forth out of the tombs, exceeding fierce, so that no man could pass by that way.\nWe are bound to give thanks to God always for you, brethren, even as it is meet, for that your faith groweth exceedingly, and the love of each one of you all toward one another aboundeth;\nOne man hath faith to eat all things: but he that is weak eateth herbs.\nNow Peter and they that were with him were heavy with sleep: but when they were fully awake, they saw his glory, and the two men that stood with him.\nFor these are days of vengeance, that all things which are written may be fulfilled.\nBy faith he kept the passover, and the sprinkling of the blood, that the destroyer of the firstborn should not touch them.\nAnd another also said, I will follow thee, Lord; but first suffer me to bid farewell to them that are at my house.\nFor it hath been the good pleasure of Macedonia and Achaia to make a certain contribution for the poor among the saints that are at Jerusalem.\nBut when they persecute you in this city, flee into the next: for verily I say unto you, Ye shall not have gone through the cities of Israel, till the Son of man be come.\nThe horse gathered himself low on his hindquarters and then galloped off downhill with Smith riding loose and his elbows sticking out and flapping like he wished to take flight.\nDraw nigh to God, and he will draw nigh to you. Cleanse your hands, ye sinners; and purify your hearts, ye doubleminded.\n“Please don't kill it!” she sobbed.\nFor unto which of the angels said he at any time, Thou art my Son, This day have I begotten thee? and again, I will be to him a Father, And he shall be to me a Son?\nIt was a delicious meal— skim milk, wheat middlings, leftover pancakes, half a doughnut, the rind of a summer squash, two pieces of stale toast, a third of a gingersnap, a fish tail, one orange peel, several noodles from a noodle soup, the scum off a cup of cocoa, an ancient jelly roll, a strip of paper from the lining of the garbage pail, and a spoonful of raspberry jello.\nIf you had been sitting quietly in the barn cellar that evening, you would have heard something like this: “Now for the R!\nAnd when it was day, they knew not the land: but they perceived a certain bay with a beach, and they took counsel whether they could drive the ship upon it.\nFor the bodies of those beasts whose blood is brought into the holy place by the high priest as an offering for sin, are burned without the camp.\nwhom I would fain have kept with me, that in thy behalf he might minister unto me in the bonds of the gospel:\nAt noon the Zuckermans and the Arables returned to the pigpen.\nas sorrowful, yet always rejoicing; as poor, yet making many rich; as having nothing, and yet possessing all things.\nWater and air mix with these things are part of the soil, too.\nWell, whether this is one of those times or not, I’d like you to listen to something and then hear what say you in response.\nIt looked like the aftermath of a train wreck.\nAnd Jesus looking upon him loved him, and said unto him, One thing thou lackest: go, sell whatsoever thou hast, and give to the poor, and thou shalt have treasure in heaven: and come, follow me.\nAnd Jesus rebuked him, saying, Hold thy peace, and come out of him.\n“Goodness, are you still thinking about that ol’ Ferris wheel?”  said Avery in disgust.\nsaying, Go your way into the village over against you; in which as ye enter ye shall find a colt tied, whereon no man ever yet sat: loose him, and bring him.\nAnd what we say is yet more abundantly evident, if after the likeness of Melchizedek there ariseth another priest,\nOtherwise, despair.\nAnd he went into their synagogues throughout all Galilee, preaching and casting out demons.\n“However, I have a feeling I’m not going to see the results of last night’s efforts.\nAnd the third angel sounded, and there fell from heaven a great star, burning as a torch, and it fell upon the third part of the rivers, and upon the fountains of the waters;\nWe can’t tell what may happen at the Fair Grounds.\nBut others mocking said, They are filled with new wine.\nBut all he did was raise one hand and give a dismissive gesture in my direction and then begin talking around his pastille about his new boots.\nuntil the day in which he was received up, after that he had given commandment through the Holy Spirit unto the apostles whom he had chosen:\nThen you straddled the knot, so that it acted as a seat.\nIn every direction, mountains hanging like green curtains from the sky.\nAnd his eyes are a flame of fire, and upon his head are many diadems; and he hath a name written which no one knoweth but he himself.\nNow there are diversities of gifts, but the same Spirit.\nA barn is never perfectly quiet.\nHe disappeared into his tunnel, pushing the goose egg in front of him.\nIf ye are reproached for the name of Christ, blessed are ye; because the Spirit of glory and the Spirit of God resteth upon you.\n“Say those names again, I didn’t catch them the first time.”\nLook at my web — doesn’t it show up well with the dew on it?”\n“Run around!” commanded Charlotte.\nThese things have I spoken unto you in dark sayings: the hour cometh, when I shall no more speak unto you in dark sayings, but shall tell you plainly of the Father.\nAnd if a son of peace be there, your peace shall rest upon him: but if not, it shall turn to you again.\nAnd the glory which thou hast given me I have given unto them; that they may be one, even as we are one;\n“Don’t tell me any more.\nWe don’t want Zuckerman to think Wilbur is crunchy.\nYe see that by works a man is justified, and not only by faith.\nWhat about Featherstone?\nAnd one of the elders answered, saying unto me, These that are arrayed in the white robes, who are they, and whence came they?\nThe Jews therefore strove one with another, saying, How can this man give us his flesh to eat?\nAnd he answered and said unto them, Unto you it is given to know the mysteries of the kingdom of heaven, but to them it is not given.\nThen shall two men be in the field; one is taken, and one is left:\nNot flight but slog.\n“It’s the old pail trick, Wilbur.\nHe that hath ears to hear, let him hear.\n“It would serve you right if you had an acute attack of indigestion.”\nso that ye became an ensample to all that believe in Macedonia and in Achaia.\nCharlotte noticed his embarrassment and she spoke sharply to the lamb.\nBut after no long time there beat down from it a tempestuous wind, which is called Euraquilo:\nThe river was high and thick and red with the clay it was carrying.\nAnd as they went forth, behold, there was brought to him a dumb man possessed with a demon.\nand there they preached the gospel.\nAnd he entered and was passing through Jericho.\nHe swam around until he found the entrance he came through.\nAnd Ananias hearing these words fell down and gave up the ghost: and great fear came upon all that heard it.\nand he took the seven loaves and the fishes; and he gave thanks and brake, and gave to the disciples, and the disciples to the multitudes.\nBut he spake exceeding vehemently, If I must die with thee, I will not deny thee. And in like manner also said they all.\nAfter this manner therefore pray ye: Our Father who art in heaven, Hallowed be thy name.\nAnd he gave some to be apostles; and some, prophets; and some, evangelists; and some, pastors and teachers;\nand was there until the death of Herod: that it might be fulfilled which was spoken by the Lord through the prophet, saying, Out of Egypt did I call my son.\nAnd the next day we touched at Sidon: and Julius treated Paul kindly, and gave him leave to go unto his friends and refresh himself.\nNow I would have you all speak with tongues, but rather that ye should prophesy: and greater is he that prophesieth than he that speaketh with tongues, except he interpret, that the church may receive edifying.\nBeware of false prophets, who come to you in sheep’s clothing, but inwardly are ravening wolves.\nto them that are without law, as without law, not being without law to God, but under law to Christ, that I might gain them that are without law.\nFor it is written, that Abraham had two sons, one by the handmaid, and one by the freewoman.\n“Why, how perfectly simple!” she said to herself.\nand they worshipped the dragon, because he gave his authority unto the beast; and they worshipped the beast, saying, Who is like unto the beast? and who is able to war with him?\nBut I'll tell you one thing, Templeton, if I ever catch you poking-oking-oking your ugly nose around our goslings, I'll give you the worst pounding a rat ever took.”\nAnd this report went forth concerning him in the whole of Judæa, and all the region round about.\nHis disciples say, Lo, now speakest thou plainly, and speakest no dark saying.\nFor this is the will of God, even your sanctification, that ye abstain from fornication;\nThe gander discovered the hole and led his family through, and they walked to the orchard and ate the apples that were lying on the ground.\nShe ate a small bug that she had been saving.\nAnd when he opened the seventh seal, there followed a silence in heaven about the space of half an hour.\nI want that pig to have clean, bright straw every day for his bedding.\nAnd amazement took hold on all, and they glorified God; and they were filled with fear, saying, We have seen strange things to-day.\n“Is this appetizing yarn of yours true?\nand a voice came out of the heavens, Thou art my beloved Son, in thee I am well pleased.\nAnd at the season he sent unto the husbandmen a servant, that they should give him of the fruit of the vineyard: but the husbandmen beat him, and sent him away empty.\n“There were eight eggs but one egg didn’t hatch and the goose told Templeton she didn’t want it any more, so he took it away.”\nin hope of eternal life, which God, who cannot lie, promised before times eternal;\nGovernor Ross or Governor Ridge living in a new executive mansion.\nThat's why those shoes hurt me, because they were too small.\n“That doesn't make a particle of difference,” replied Charlotte.\nShe had eight legs, and she was waving one of them at Wilbur in friendly greeting.\n“Well,” said her father, “he’s a runt.\nAs he walked he tried to be brave\nThe women gathered the few items that would help them in their escape.\nHe got out of sight just in time.\nas unknown, and yet well known; as dying, and behold, we live; as chastened, and not killed;\nAnd the city hath no need of the sun, neither of the moon, to shine upon it: for the glory of God did lighten it, and the lamp thereof is the Lamb.\nBut he charged them, and commanded them to tell this to no man;\nAnd into whatsoever city ye enter, and they receive you, eat such things as are set before you:\nThen Jesus therefore said unto them plainly, Lazarus is dead.\nfor indeed ye do it toward all the brethren that are in all Macedonia. But we exhort you, brethren, that ye abound more and more;\n“Scratch it!” yelled Avery, as he sailed back.\nOnce in a while I would go visit her at her house.\nDo all things without murmurings and questionings:\nBut they made light of it, and went their ways, one to his own farm, another to his merchandise;\nTherefore I say unto you, Be not anxious for your life, what ye shall eat, or what ye shall drink; nor yet for your body, what ye shall put on. Is not the life more than the food, and the body than the raiment?\nAnd about the ninth hour Jesus cried with a loud voice, saying, Eli, Eli, lama sabachthani? that is, My God, my God, why hast thou forsaken me?\nHe was a hard man to keep up with for more than a day or two, but I liked him and hated to miss good and useful entertainment.\nThe little spiders waved their forelegs at him.\nBut Jesus called them unto him, and said, Ye know that the rulers of the Gentiles lord it over them, and their great ones exercise authority over them.\n“Come, pig. said Mr. Zuckerman, tapping the pail.\nFor God gave us not a spirit of fearfulness; but of power and love and discipline.\nWherefore, O king Agrippa, I was not disobedient unto the heavenly vision:\nAnd even as Jannes and Jambres withstood Moses, so do these also withstand the truth; men corrupted in mind, reprobate concerning the faith.\nWilbur scrambled to the top of the manure pile.\nAll things therefore whatsoever ye would that men should do unto you, even so do ye also unto them: for this is the law and the prophets.\nAnd they, when they heard it, went out one by one, beginning from the eldest, even unto the last: and Jesus was left alone, and the woman, where she was, in the midst.\nOne only is the lawgiver and judge, even he who is able to save and to destroy: but who art thou that judgest thy neighbor?\n“I’m hungry,” said Stephen.\nThen you would drop down, down, down out of the sky and come sailing back into the barn almost into the hayloft, then sail out again (not quite so far this time), then in again (not quite so high), then out again, then in again, then out, then in; and then you’d jump off and fall down and let somebody else try it.\nFor I delivered unto you first of all that which also I received: that Christ died for our sins according to the scriptures;\nNow there was at Joppa a certain disciple named Tabitha, which by interpretation is called Dorcas: this woman was full of good works and almsdeeds which she did.\nIf any man hath ears to hear, let him hear.\nWhen we could not see anything up there, my dad aimed up toward the branch and fired a shot.\nAnd king Herod heard thereof; for his name had become known: and he said, John the Baptizer is risen from the dead, and therefore do these powers work in him.\n“Here,” she said.\nFinally, be strong in the Lord, and in the strength of his might.\nAnd it came to pass, that, as I made my journey, and drew nigh unto Damascus, about noon, suddenly there shone from heaven a great light round about me.\n“Yes, but you seem specially so today.\nBut when the Comforter is come, whom I will send unto you from the Father, even the Spirit of truth, which proceedeth from the Father, he shall bear witness of me:\nFor Christ is the end of the law unto righteousness to every one that believeth.\nFor this cause therefore the Jews sought the more to kill him, because he not only brake the sabbath, but also called God his own Father, making himself equal with God.\nJesus answered and said unto them, Murmur not among yourselves.\nThere was not a date as exact for that apocalypse as Jackson had given for this one.\nRender unto her even as she rendered, and double unto her the double according to her works: in the cup which she mingled, mingle unto her double.\nWherefore let no one glory in men. For all things are yours;\nHe'd be scared to go to the Fair.”\nHow can you argue against peace?\nThen Herod privily called the Wise-men, and learned of them exactly what time the star appeared.\nThese Indians were about as low as you can get to be.\nI thank God through Jesus Christ our Lord. So then I of myself with the mind, indeed, serve the law of God; but with the flesh the law of sin. \n“I think you’re beautiful,” said Wilbur.\nI liked him a great deal but I had no desire to become Davy Crockett’s understudy, his sidekick, his young buddy.\nAnd his disciples asked him, saying, Why then say the scribes that Elijah must first come?\nI am the living bread which came down out of heaven: if any man eat of this bread, he shall live for ever: yea and the bread which I will give is my flesh, for the life of the world.\nThe foundations of the wall of the city were adorned with all manner of precious stones. The first foundation was jasper; the second, sapphire; the third, chalcedony; the fourth, emerald;\nAnd there come unto him Sadducees, who say that there is no resurrection; and they asked him, saying,\nAnd the angel said unto them, Be not afraid; for behold, I bring you good tidings of great joy which shall be to all the people:\nInstead, they tell us, he invented letters to spell out the sounds of the language.\nWalk in wisdom toward them that are without, redeeming the time.\nLet's see what we can find.\nIt was on a day in early summer that the goose eggs hatched.\nAnd after a little while they that stood by came and said to Peter, Of a truth thou also art one of them; for thy speech maketh thee known.\nThe second is this, Thou shalt love thy neighbor as thyself. There is none other commandment greater than these.\nBeing therefore justified by faith, we have peace with God through our Lord Jesus Christ;\nShe got in the car and drove to his office in the village.\nAnd they that are of Christ Jesus have crucified the flesh with the passions and the lusts thereof.\n“Bath time!” said Zuckerman, cheerfully.\nfor fornicators, for abusers of themselves with men, for menstealers, for liars, for false swearers, and if there be any other thing contrary to the sound doctrine;\nWhen he heard the crowd begin to cheer and clap again, he suddenly fainted away.\n“Thank you,” said the gander.\nWhile I stood there looking at it, something happened to me.\nBut go ye and learn what this meaneth, I desire mercy, and not sacrifice: for I came not to call the righteous, but sinners.\nI glorified thee on the earth, having accomplished the work which thou hast given me to do.\nI can do all things in him that strengtheneth me.\nAnd after the space of about one hour another confidently affirmed, saying, Of a truth this man also was with him; for he is a Galilæan.\nAnd I baptized also the household of Stephanas: besides, I know not whether I baptized any other.\nA deal for services as guide and translator that only I was in a position to render.\nHe had not seen Galway Bay since he was nine years old, and he never expected to see it again this side of the grave.\nAnd he said, How shall we liken the kingdom of God? or in what parable shall we set it forth?\nI know thy works (behold, I have set before thee a door opened, which none can shut), that thou hast a little power, and didst keep my word, and didst not deny my name.\nhow he entered into the house of God, and ate the showbread, which it was not lawful for him to eat, neither for them that were with him, but only for the priests?\nDrops became rare as garnets cupped in fallen leaves.\nLet us therefore go forth unto him without the camp, bearing his reproach.\nShe poured warm milk into the bottle, fitted the nipple over the top, and handed it to Fern.\nBut the very hairs of your head are all numbered. Fear not: ye are of more value than many sparrows.\nI herewith send a sketch of the country above referred to in which the principal points are laid down with accuracy and very different in position from that exhibited on previous maps we have been able to procure.\nhaving despoiled the principalities and the powers, he made a show of them openly, triumphing over them in it.\nThen the soldiers of the governor took Jesus into the Prætorium, and gathered unto him the whole band.\nCautiously Templeton pulled himself up over the edge of the trough.\nAnd there are diversities of ministrations, and the same Lord.\nOr think ye that the scripture speaketh in vain? Doth the spirit which he made to dwell in us long unto envying?\nAnd ye know that he was manifested to take away sins; and in him is no sin.\nAs Wilbur was being shoved back into the crate, Lurvy came charging through the crowd carrying a pail of water.\nLet no man despise thy youth; but be thou an ensample to them that believe, in word, in manner of life, in love, in faith, in purity.\nFor the power of the horses is in their mouth, and in their tails: for their tails are like unto serpents, and have heads; and with them they hurt.\nThe generations surrounding me were as desperate as you can drive people to be.\nAs the truth of Christ is in me, no man shall stop me of this glorying in the regions of Achaia.\nBut all of them Indians?\nI went by the old rules.\nBrethren, I may say unto you freely of the patriarch David, that he both died and was buried, and his tomb is with us unto this day.\nAnd when the sabbath was past, Mary Magdalene, and Mary the mother of James, and Salome, bought spices, that they might come and anoint him.\nGod having provided some better thing concerning us, that apart from us they should not be made perfect. \nBut the word of God grew and multiplied.\nO Jerusalem, Jerusalem, that killeth the prophets, and stoneth them that are sent unto her! how often would I have gathered thy children together, even as a hen gathereth her chickens under her wings, and ye would not!\nAnd when they had preached the gospel to that city, and had made many disciples, they returned to Lystra, and to Iconium, and to Antioch,\nI’m in this thing pretty deep now—I might as well go the limit.”\nAnd then, damned if I didn’t pop right out and say it aloud.\n“I guess there's nothing wrong with him.”\nWho?\nI've got to tear my web apart and write ‘Terrific.’ \nThey’re wiped clean away.\nI know him.\nAt that season Jesus went on the sabbath day through the grainfields; and his disciples were hungry and began to pluck ears and to eat.\nWilbur stretched out on his side.\nIt turned out she did speak English, for she said in a loud clear voice, I spit on my past.\nShall we give, or shall we not give? But he, knowing their hypocrisy, said unto them, Why make ye trial of me? bring me a denarius, that I may see it.\nWherefore tongues are for a sign, not to them that believe, but to the unbelieving: but prophesying is for a sign, not to the unbelieving, but to them that believe.\nAnd he said unto them, Ye are they that justify yourselves in the sight of men; but God knoweth your hearts: for that which is exalted among men is an abomination in the sight of God.\nCharley wondered why his people possessed such unreasonable desire.\nIt were well for him if a millstone were hanged about his neck, and he were thrown into the sea, rather than that he should cause one of these little ones to stumble.\nIn early summer there are plenty of things for a child to eat and drink and suck and chew.\nThe Jews therefore came round about him, and said unto him, How long dost thou hold us in suspense? If thou art the Christ, tell us plainly.\nMoreover he must have good testimony from them that are without; lest he fall into reproach and the snare of the devil.\nNobody feeds me.\nAnd knowing their thoughts he said unto them, Every kingdom divided against itself is brought to desolation; and every city or house divided against itself shall not stand:\nbut he whose genealogy is not counted from them hath taken tithes of Abraham, and hath blessed him that hath the promises.\nand there shall be great earthquakes, and in divers places famines and pestilences; and there shall be terrors and great signs from heaven.\nFor the bread of God is that which cometh down out of heaven, and giveth life unto the world.\nBut if the Spirit of him that raised up Jesus from the dead dwelleth in you, he that raised up Christ Jesus from the dead shall give life also to your mortal bodies through his Spirit that dwelleth in you.\nyet when it is sown, groweth up, and becometh greater than all the herbs, and putteth out great branches; so that the birds of the heaven can lodge under the shadow thereof.\nDr. Dorian had a thick beard.\nBut his citizens hated him, and sent an ambassage after him, saying, We will not that this man reign over us.\nAnd if ye call on him as Father, who without respect of persons judgeth according to each man’s work, pass the time of your sojourning in fear:\nIs not this the carpenter, the son of Mary, and brother of James, and Joses, and Judas, and Simon? and are not his sisters here with us? And they were offended in him.\nBut he could follow the trail of disturbed leaves and broken branches and blood, and when there was no sign, he chose his forward path only by guessing how the bear would react to the flow of terrain and the way the forest plants might serve as obstacle or cover.\nWherefore Jesus also, that he might sanctify the people through his own blood, suffered without the gate.\nA few strands of her old web still hung in the doorway.\nyet because this widow troubleth me, I will avenge her, lest she wear me out by her continual coming.\nI know what this is, said Wolf.\nForasmuch then as Christ suffered in the flesh, arm ye yourselves also with the same mind; for he that hath suffered in the flesh hath ceased from sin;\nWhat then is Apollos? and what is Paul? Ministers through whom ye believed; and each as the Lord gave to him.\nDavid himself calleth him Lord; and whence is he his son? And the common people heard him gladly.\nFor what is there wherein ye were made inferior to the rest of the churches, except it be that I myself was not a burden to you? forgive me this wrong.\nAnd he went away, and communed with the chief priests and captains, how he might deliver him unto them.\nAnd certain of the scribes answering said, Teacher, thou hast well said.\nHaving therefore such a hope, we use great boldness of speech,\nAnd the gospel must first be preached unto all the nations.\nAnd a strong angel took up a stone as it were a great millstone and cast it into the sea, saying, Thus with a mighty fall shall Babylon, the great city, be cast down, and shall be found no more at all.\nAlthough he loved her children and grandchildren dearly, none of the new spiders ever quite took her place in his heart.\nWoe unto thee, Chorazin! woe unto thee, Bethsaida! for if the mighty works had been done in Tyre and Sidon, which were done in you, they would have repented long ago, sitting in sackcloth and ashes.\nI stood on a hill above the bank and saw it all from some distance, so that all the men were remote and small, actors on a distant stage beyond earshot.\nBut I was no preacher.\nAnd the Pharisees and the scribes ask him, Why walk not thy disciples according to the tradition of the elders, but eat their bread with defiled hands?\nFor whom he foreknew, he also foreordained to be conformed to the image of his Son, that he might be the firstborn among many brethren:\nAnd he saith unto them, Is it lawful on the sabbath day to do good, or to do harm? to save a life, or to kill? But they held their peace.\nBut we all, with unveiled face beholding as in a mirror the glory of the Lord, are transformed into the same image from glory to glory, even as from the Lord the Spirit. \nAnd this was not a singularity.\nThese things have I spoken unto you, that in me ye may have peace. In the world ye have tribulation: but be of good cheer; I have overcome the world. \nOh no! You cannot stay with me. Big oak began to turn his head.\nBut in vain do they worship me, Teaching as their doctrines the precepts of men.\nand he that bade thee and him shall come and say to thee, Give this man place; and then thou shalt begin with shame to take the lowest place.\n“You mean kill it?\nI had not slept in more than a day.\n“Wherever the wind takes us.\nBut felt lost in all the trees.\nAnd he taught, and said unto them, Is it not written, My house shall be called a house of prayer for all the nations? but ye have made it a den of robbers.\nJesus answered, The first is, Hear, O Israel; The Lord our God, the Lord is one:\nFurthermore, you are interrupting a very pleasant conversation.\nThe mullioned parlor windows were grey.\nWherefore be ye not foolish, but understand what the will of the Lord is.\nHe liked being a clown in a ring, with everybody watching, in front of a grandstand.\nNo more Nation.\nSuddenly he remembered Templeton’s fondness for food.\nThe Pharisees heard the multitude murmuring these things concerning him; and the chief priests and the Pharisees sent officers to take him.\nJesus saith unto her, Thy brother shall rise again.\nHe said, I am the voice of one crying in the wilderness, Make straight the way of the Lord, as said Isaiah the prophet.\nAnd Simon Peter answered and said, Thou art the Christ, the Son of the living God.\nI took out the caps and put the hammers down.\nFor if that first covenant had been faultless, then would no place have been sought for a second.\nFor I delight in the law of God after the inward man:\n“You go back to the house and I will bring the runt when I come in.\nthat ye may eat the flesh of kings, and the flesh of captains, and the flesh of mighty men, and the flesh of horses and of them that sit thereon, and the flesh of all men, both free and bond, and small and great.\nFern winked at Charlotte.\nAnd the day began to wear away; and the twelve came, and said unto him, Send the multitude away, that they may go into the villages and country round about, and lodge, and get provisions: for we are here in a desert place.\nso as to preach the gospel even unto the parts beyond you, and not to glory in another’s province in regard of things ready to our hand.\nOr how canst thou say to thy brother, Brother, let me cast out the mote that is in thine eye, when thou thyself beholdest not the beam that is in thine own eye? Thou hypocrite, cast out first the beam out of thine own eye, and then shalt thou see clearly to cast out the mote that is in thy brother’s eye.\nFor I say unto you, that none of those men that were bidden shall taste of my supper.\nThere were still a few wormy chestnuts and hickory nuts on the ground under leafless trees.\nMany of them therefore believed; also of the Greek women of honorable estate, and of men, not a few.\nThere was nothing to be done about it.\nSo then death worketh in us, but life in you.\nYe judge after the flesh; I judge no man.\nPilate said unto them, Ye have a guard: go, make it as sure as ye can.\nMr. Zuckerman poured some skim milk into Wilbur’s trough, pitched clean straw into his pen, and then he and Mrs. Zuckerman and the Arables walked away toward the cattle barn to look at purebred cows and to see the sights.\nWhen Charlotte's web said SOME PIG, Wilbur had tried hard to look like some pig.\nAnd the first creature was like a lion, and the second creature like a calf, and the third creature had a face as of a man, and the fourth creature was like a flying eagle.\nIf I need to do it to catch the killers, I’ll send in all the Army necessary to clean every Indian out of here, no matter whose land they claim to live on.\nHer heart was not beating as strongly as usual and she felt weary and old, but she was sure at last that she had saved Wilbur’s life, and she felt peaceful and contented.\nCharley concluded his hunting story by saying that until this night by the campfire with the tobacco smoke and brown whiskey, he had not spoken a word about his lost bear to any of his descendants but only whispered about it to Nancy the night of his return as they lay on their bed of hemlock boughs, and she held him and brushed his face with the big knuckles of her fingers and told him that he had tried but failed and sometimes that is all the victory we are allotted.\nAnd the Lord said unto him, Arise, and go to the street which is called Straight, and inquire in the house of Judas for one named Saul, a man of Tarsus: for behold, he prayeth;\nBut the Jews urged on the devout women of honorable estate, and the chief men of the city, and stirred up a persecution against Paul and Barnabas, and cast them out of their borders.\nMany of them were contemptible, but I guess no greater portion than the generality of people.\nIn the mean while the disciples prayed him, saying, Rabbi, eat.\nThey, too, were tired and hardly had energy enough to walk.\nWhen Lurvy showed up at lunchtime carrying a pail of food for Wilbur, he stopped short a few paces from the pigpen.\nand the enemy that sowed them is the devil: and the harvest is the end of the world; and the reapers are angels.\nNow when the Pharisee that had bidden him saw it, he spake within himself, saying, This man, if he were a prophet, would have perceived who and what manner of woman this is that toucheth him, that she is a sinner.\nBut without any dispute the less is blessed of the better.\nAnd the nations shall walk amidst the light thereof: and the kings of the earth bring their glory into it.\nI say then, Did they stumble that they might fall? God forbid: but by their fall salvation is come unto the Gentiles, to provoke them to jealousy.\nBe not therefore anxious for the morrow: for the morrow will be anxious for itself. Sufficient unto the day is the evil thereof. \nBut I say, that the things which the Gentiles sacrifice, they sacrifice to demons, and not to God: and I would not that ye should have communion with demons.\nOr what king, as he goeth to encounter another king in war, will not sit down first and take counsel whether he is able with ten thousand to meet him that cometh against him with twenty thousand?\nAvery hugged Fern.\nNow the centurion, and they that were with him watching Jesus, when they saw the earthquake, and the things that were done, feared exceedingly, saying, Truly this was the Son of God.\nyea and a sword shall pierce through thine own soul; that thoughts out of many hearts may be revealed.\nHe carried and stacked stones without stopping until he had built a tight mound to chest height, sufficient to keep out wolf and maybe bear, and imposing enough to invite every passerby to add a stone to the top of the pile.\nAnd the fourth poured out his bowl upon the sun; and it was given unto it to scorch men with fire.\nThen Paul took the men, and the next day purifying himself with them went into the temple, declaring the fulfilment of the days of purification, until the offering was offered for every one of them.\nAnd it came to pass, while he was in one of the cities, behold, a man full of leprosy: and when he saw Jesus, he fell on his face, and besought him, saying, Lord, if thou wilt, thou canst make me clean.\nLittlefish remembered what the big fish had said to him, so …\nWherefore, holy brethren, partakers of a heavenly calling, consider the Apostle and High Priest of our confession, even Jesus;\nBut when he saw many of the Pharisees and Sadducees coming to his baptism, he said unto them, Ye offspring of vipers, who warned you to flee from the wrath to come?\nAnd the demons besought him, saying, If thou cast us out, send us away into the herd of swine.\nand he that sat was to look upon like a jasper stone and a sardius: and there was a rainbow round about the throne, like an emerald to look upon.\nBut before all these things, they shall lay their hands on you, and shall persecute you, delivering you up to the synagogues and prisons, bringing you before kings and governors for my name’s sake.\nNow a mediator is not a mediator of one; but God is one.\nI’ve always numbered myself among the drunks.\nBut I was the one condemned.\nBut he said unto him, Leave the dead to bury their own dead; but go thou and publish abroad the kingdom of God.\nBut Peter said, Ananias, why hath Satan filled thy heart to lie to the Holy Spirit, and to keep back part of the price of the land?\nAll things have been delivered unto me of my Father: and no one knoweth the Son, save the Father; neither doth any know the Father, save the Son, and he to whomsoever the Son willeth to reveal him.\nIt came from a cedar tree\nAnd he said unto them, But who say ye that I am? And Peter answering said, The Christ of God.\nIt must be a lot of fun to spin a web.\nIts stout trunk was still six feet through at head height, and the ground underneath would be soft, hundreds of years deep with a bed of its needles and the loose black earth into which the needles decay.\nChristmas will come, then the snows of winter.\nCharlotte stopped.\nThe multitude therefore that was with him when he called Lazarus out of the tomb, and raised him from the dead, bare witness.\n“Leave it alone!” commanded Fern.\nFor if Abraham was justified by works, he hath whereof to glory; but not toward God.\nWhere did the name come from?\nand they cry with a great voice, saying, Salvation unto our God who sitteth on the throne, and unto the Lamb.\nConcerning whom, when the accusers stood up, they brought no charge of such evil things as I supposed;\nwe accept it in all ways and in all places, most excellent Felix, with all thankfulness.\nBy that point, it was too late to save anybody but yourself anyway.\nAnd Herod with his soldiers set him at nought, and mocked him, and arraying him in gorgeous apparel sent him back to Pilate.\nwhich is a manifest token of the righteous judgment of God; to the end that ye may be counted worthy of the kingdom of God, for which ye also suffer:\nThey answered and said unto him, Art thou also of Galilee? Search, and see that out of Galilee ariseth no prophet.\nand let him that is in the field not return back to take his cloak.\nBut it shall be more tolerable for Tyre and Sidon in the judgment, than for you.\nThen it dries and forms a crust.\nAnd he cometh the third time, and saith unto them, Sleep on now, and take your rest: it is enough; the hour is come; behold, the Son of man is betrayed into the hands of sinners.\nDid you ever hear of the Queensborough Bridge? Wilbur shook his head.\nAnd now I say unto you, Refrain from these men, and let them alone: for if this counsel or this work be of men, it will be overthrown:\nBut he answered and said unto them, When it is evening, ye say, It will be fair weather: for the heaven is red.\nBuddy, you must stay close to us For a very hard trip it will be.\nBut though I be rude in speech, yet am I not in knowledge; nay, in every way have we made this manifest unto you in all things.\nAnd they said unto him, In Bethlehem of Judæa: for thus it is written through the prophet,\nBring them in and we’re done with each other.\nAnd when he was entered into the house from the multitude, his disciples asked of him the parable.\nHe felt happy but dizzy.\nTempleton was asleep.\nHe couldn’t bear to watch any more.\nHe said, My grandfather.\nIs everything all right?”\nSo also it is written, The first man Adam became a living soul. The last Adam became a life-giving spirit.\n“Edith, you better phone the reporter on the Weekly Chronicle and tell him what has happened.\nAnd he that spake with me had for a measure a golden reed to measure the city, and the gates thereof, and the wall thereof.\nOnce you were just a seed, now you are an apple tree.\nCharlotte’s web never looked more beautiful than it looked this morning.\nAnd he began to say unto them, To-day hath this scripture been fulfilled in your ears.\nAnd Jesus answered and said, O faithless and perverse generation, how long shall I be with you? how long shall I bear with you? bring him hither to me.\nwhere we found brethren, and were entreated to tarry with them seven days: and so we came to Rome.\nBut when he did it the second time, my dad got curious and went in the house and got our shotgun.\nBut if it is by grace, it is no more of works: otherwise grace is no more grace.\nAnd there arose a reasoning among them, which of them was the greatest.\none who for a certain insurrection made in the city, and for murder, was cast into prison.\nThey had no weapon to slay it with.\nEven so let your light shine before men; that they may see your good works, and glorify your Father who is in heaven.\nSmith deferred to my judgment and drank the whisky slow and careful.\nAnd Judas and Silas, being themselves also prophets, exhorted the brethren with many words, and confirmed them.\nLater on that morning, the animals came up from the pasture—the sheep, the lambs, the gander, the goose, and the seven goslings.\n“It must be real nice and quiet down there.\nLet’s bring him in, Bear said.\nAnd in those days men shall seek death, and shall in no wise find it; and they shall desire to die, and death fleeth from them.\nFor we are a sweet savor of Christ unto God, in them that are saved, and in them that perish;\nThe Indian hunters, including Lichen, went and stood near Charley and the boys.\nThe hobbled horses had finished eating their oats, and they shuffled and whickered nervously off in the dark beyond the firelight.\nFern and Avery arrived, dragging a sled.\nFive dramatic heartbeats.\nTempleton’s teeth scraped loudly against the wood and made quite a racket.\nYe yourselves bear me witness, that I said, I am not the Christ, but, that I am sent before him.\nBlessed is the kingdom that cometh, the kingdom of our father David: Hosanna in the highest.\nI was raw to that flat country of piedmont and coastal plain.\nI think there are a few drops of milk left in my trough.”\nSadly, Wilbur lay down and listened to the rain.\nand so all Israel shall be saved: even as it is written, There shall come out of Zion the Deliverer; He shall turn away ungodliness from Jacob:\nThe slops ran creamily down around the pig’s eyes and ears.\nAll that day Wilbur stayed inside, taking life easy in the straw.\nwhereunto I was appointed a preacher, and an apostle, and a teacher.\nand he shall reign over the house of Jacob for ever; and of his kingdom there shall be no end.\nBut as he was being shoved into the crate, he looked up at Charlotte and gave her a wink.\nAnd they asked him, saying, Teacher, we know that thou sayest and teachest rightly, and acceptest not the person of any, but of a truth teachest the way of God:\nAnd he called the twelve together, and gave them power and authority over all demons, and to cure diseases.\nMrs. Arable opened her handbag.\nAnd many spread their garments upon the way; and others branches, which they had cut from the fields.\nAnd I saw in the midst of the throne and of the four living creatures, and in the midst of the elders, a Lamb standing, as though it had been slain, having seven horns, and seven eyes, which are the seven Spirits of God, sent forth into all the earth.\n“ ‘With new radiant action,’  repeated Charlotte, slowly.\nHe made no effort to separate meat from shell, but crunched them together between his back teeth and swallowed them down.\nAnd a certain man was there, who had been thirty and eight years in his infirmity.\nNobody said much of anything during the meal.\nwe are of good courage, I say, and are willing rather to be absent from the body, and to be at home with the Lord.\nAnd the Spirit and the bride say, Come. And he that heareth, let him say, Come. And he that is athirst, let him come: he that will, let him take the water of life freely.\nAs it was, they wept.\nI heard when we’re done here it’s Florida for us, Perry said.\nknowing, brethren beloved of God, your election,\nThe Pharisees therefore answered them, Are ye also led astray?\nAnd Paul stood up, and beckoning with the hand said, Men of Israel, and ye that fear God, hearken:\nThese are leaves that have decomposed into soil.\nFor ye all can prophesy one by one, that all may learn, and all may be exhorted;\nWashington and Jefferson had told them that to survive, those were the only terms.\nAnd the chief priests took the pieces of silver, and said, It is not lawful to put them into the treasury, since it is the price of blood.\nNow when they had passed through Amphipolis and Apollonia, they came to Thessalonica, where was a synagogue of the Jews:\nIt was wet and foggy and rainy a great deal of the year.\nBut I speak to you that are Gentiles. Inasmuch then as I am an apostle of Gentiles, I glorify my ministry;\nThis is good and acceptable in the sight of God our Saviour;\n“I’m going to knock that ol’ spider into this box,” he said.\nAnd he saith unto them, Because of your little faith: for verily I say unto you, If ye have faith as a grain of mustard seed, ye shall say unto this mountain, Remove hence to yonder place; and it shall remove; and nothing shall be impossible unto you.\nAnd the angel answered and said unto her, The Holy Spirit shall come upon thee, and the power of the Most High shall overshadow thee: wherefore also the holy thing which is begotten shall be called the Son of God.\nthat ye may become blameless and harmless, children of God without blemish in the midst of a crooked and perverse generation, among whom ye are seen as lights in the world,\nYou know spiders don’t tell stories.\nAnd because of it we cause pain farther on down the road.\nThey have all turned aside, they are together become unprofitable; There is none that doeth good, no, not so much as one:\nsorrowing most of all for the word which he had spoken, that they should behold his face no more. And they brought him on his way unto the ship. \nAnd another came, saying, Lord, behold, here is thy pound, which I kept laid up in a napkin:\nFor who maketh thee to differ? and what hast thou that thou didst not receive? but if thou didst receive it, why dost thou glory as if thou hadst not received it?\nFor if I pray in a tongue, my spirit prayeth, but my understanding is unfruitful.\nWhen Jesus saw him lying, and knew that he had been now a long time in that case, he saith unto him, Wouldest thou be made whole?\nThe Jews said unto him, Now we know that thou hast a demon. Abraham died, and the prophets; and thou sayest, If a man keep my word, he shall never taste of death.\nAnd they had breastplates, as it were breastplates of iron; and the sound of their wings was as the sound of chariots, of many horses rushing to war.\nFor, All flesh is as grass, And all the glory thereof as the flower of grass. The grass withereth, and the flower falleth:\nAnd straightway there fell from his eyes as it were scales, and he received his sight; and he arose and was baptized;\nThey’ve none of them got winders.\nFern nodded.\nAfter one year, the bag has decomposed.\nAnd they come unto a place which was named Gethsemane: and he saith unto his disciples, Sit ye here, while I pray.\nAnd the chief priests and the scribes stood, vehemently accusing him.\nand that most of the brethren in the Lord, being confident through my bonds, are more abundantly bold to speak the word of God without fear.\n“That’s a mercy,” replied Wilbur, and he lay down in the shade of his fence and went fast asleep.\neven as they delivered them unto us, who from the beginning were eyewitnesses and ministers of the word,\nCharlotte crouched and made herself as small as possible in the knothole, so Avery wouldn’t see her.\nCrowds of people surrounded it, and Mr. Arable had to drive very carefully in order not to run over anybody.\nThe language of the law is not a mystery to you.\n(for the weapons of our warfare are not of the flesh, but mighty before God to the casting down of strongholds);\nI can’t stand hysterics.”\nSo when his fellow-servants saw what was done, they were exceeding sorry, and came and told unto their lord all that was done.\nOr hath not the potter a right over the clay, from the same lump to make one part a vessel unto honor, and another unto dishonor?\nNow unto our God and Father be the glory for ever and ever. Amen.\n“Wilbur,” replied Fern, dreamily. \nAnd Paul, having tarried after this yet many days, took his leave of the brethren, and sailed thence for Syria, and with him Priscilla and Aquila: having shorn his head in Cenchreæ; for he had a vow.\nAnd it was given unto him to make war with the saints, and to overcome them: and there was given to him authority over every tribe and people and tongue and nation.\n“He gets these spells.\nAnd none too soon.\nAnd when they had mocked him, they took off from him the purple, and put on him his garments. And they lead him out to crucify him.\n“He-aa-aa!” answered the sheep all together.\nMany of them.\nAnd lo, he speaketh openly, and they say nothing unto him. Can it be that the rulers indeed know that this is the Christ?\nTake heed lest there shall be any one that maketh spoil of you through his philosophy and vain deceit, after the tradition of men, after the rudiments of the world, and not after Christ:\nYou lack two things needed for spinning a web.”\none saying to the sixth angel that had the trumpet, Loose the four angels that are bound at the great river Euphrates.\nand Josiah begat Jechoniah and his brethren, at the time of the carrying away to Babylon.\nYes, you are right, he said\nAnd when they were come to Jerusalem, they were received of the church and the apostles and the elders, and they rehearsed all things that God had done with them.\nFrom the post I would wake up and take my coffee onto the porch and if it wasn’t too foggy or rainy look down across the river to the fort and watch little groups of soldiers sally forth shortly after dawn to search the mountains and collect Indians cabin by cabin.\nAnd he said unto them, Ye men of Israel, take heed to yourselves as touching these men, what ye are about to do.\nAt nearly the same moment that Lowan made his move, another man, George maybe, must have taken a two-handed swipe at the Philadelphia boy and buried the hatchet head deep at the junction of his neck and shoulder.\nSo when I boarded the first riverboat of my life—a sort of broken-backed stern-wheeler in bad need of scraping and painting, a watercraft disappointingly far removed from my imaginings of the grand floating palaces of the Mississippi—I wanted to be taken for a young man of substance, traveling with a certain style.\nAnd he entered again into the synagogue; and there was a man there who had his hand withered.\nAnd even now the axe lieth at the root of the trees: every tree therefore that bringeth not forth good fruit is hewn down, and cast into the fire.\nBut primarily, the preacher was a citizen of the Nation and not America, so he had to go.\n“I have some very remarkable cousins.\nAnd they had been sent from the Pharisees.\n“It’s hard to believe that he was the runt of the litter.\nNow whatever will I do?\n“Good-bye!” it said, as it sailed through the doorway.\nWhen he had touched each of them, he bade them good night and went back and lay down under his blanket to sleep.\nAnd they reasoned among themselves, saying, We took no bread.\nAnd the evil spirit answered and said unto them, Jesus I know, and Paul I know; but who are ye?\nNow all this is come to pass, that it might be fulfilled which was spoken by the Lord through the prophet, saying,\nAnd coming to us, and taking Paul’s girdle, he bound his own feet and hands, and said, Thus saith the Holy Spirit, So shall the Jews at Jerusalem bind the man that owneth this girdle, and shall deliver him into the hands of the Gentiles.\nNo one tried to stop them.\nFor Moses from generations of old hath in every city them that preach him, being read in the synagogues every sabbath.\nand brought his head on a platter, and gave it to the damsel; and the damsel gave it to her mother.\nTo the angel of the church in Ephesus write: These things saith he that holdeth the seven stars in his right hand, he that walketh in the midst of the seven golden candlesticks:\nand they have been informed concerning thee, that thou teachest all the Jews who are among the Gentiles to forsake Moses, telling them not to circumcise their children, neither to walk after the customs.\nAnd when the demon was cast out, the dumb man spake: and the multitudes marvelled, saying, It was never so seen in Israel.\nconcerning his Son, who was born of the seed of David according to the flesh,\nFestus therefore, having come into the province, after three days went up to Jerusalem from Cæsarea.\nIs any among you sick? let him call for the elders of the church; and let them pray over him, anointing him with oil in the name of the Lord:\nGrace to you and peace from God our Father and the Lord Jesus Christ.\nNow late on the sabbath day, as it began to dawn toward the first day of the week, came Mary Magdalene and the other Mary to see the sepulchre.\nHowbeit he shook off the creature into the fire, and took no harm.\nShe studies soil and what makes soil.\n“Yes, he'll make a good pig,” said Mr. Zuckerman.\nAs she approached her chair, the carton wobbled, and there was a scratching noise.\nHe emerged from the house with boots, with oil, and with sword.\nIn your camp at night, you are able to pick out a distinct word now and then from the muddled voices in creek water, sometimes an entire sentence of deep import.\nand I give unto them eternal life; and they shall never perish, and no one shall snatch them out of my hand.\nEvery branch in me that beareth not fruit, he taketh it away: and every branch that beareth fruit, he cleanseth it, that it may bear more fruit.\nHe hath given help to Israel his servant, That he might remember mercy\nAnd certain also of the Asiarchs, being his friends, sent unto him and besought him not to adventure himself into the theatre.\nAnd they took up broken pieces, twelve basketfuls, and also of the fishes.\n“Listen!\nLet love of the brethren continue.\nAnd if Satan also is divided against himself, how shall his kingdom stand? because ye say that I cast out demons by Beelzebub.\nPut that Wayah Town behind me.\nAnd they went, and found as he had said unto them: and they made ready the passover.\n“Why don’t you come with me to the Fair Grounds and lay your eggs there?” pleaded Wilbur.\nIt was a white one.\neven he, whose coming is according to the working of Satan with all power and signs and lying wonders,\nLate in the fall, during the final diminishing parings of the Hunting Moon, I pieced together the rest of Charley’s story from what Nancy and Lowan and George and Jake told me.\nHe stepped there, where the trap lay…\nWhen Jesus therefore saw his mother, and the disciple standing by whom he loved, he saith unto his mother, Woman, behold, thy son!\nAnd he said unto them, Do ye not yet understand?\n“It sounds like a rich dessert.”\nBut the wise answered, saying, Peradventure there will not be enough for us and you: go ye rather to them that sell, and buy for yourselves.\nAnd on the morrow he took out two shillings, and gave them to the host, and said, Take care of him; and whatsoever thou spendest more, I, when I come back again, will repay thee.\nThese things I command you, that ye may love one another.\nHe that is of God heareth the words of God: for this cause ye hear them not, because ye are not of God.\nSend some thoughts this way to fill this empty place.\nAnd he said unto them, This is my blood of the covenant, which is poured out for many.\nShe calls him Wilbur.\nthat is, that I with you may be comforted in you, each of us by the other’s faith, both yours and mine.\nWe’re the same age.\nThis man led them forth, having wrought wonders and signs in Egypt, and in the Red sea, and in the wilderness forty years.\nShe liked it better when she could be all alone with her friends the animals.\nHere is the patience of the saints, they that keep the commandments of God, and the faith of Jesus.\nBe patient therefore, brethren, until the coming of the Lord. Behold, the husbandman waiteth for the precious fruit of the earth, being patient over it, until it receive the early and latter rain.\n“Seven,” replied Fern.\nAnd Philip opened his mouth, and beginning from this scripture, preached unto him Jesus.\nCharley had reached such a point when he went to sleep under his blanket up on a bald.\nWhat then shall we say to these things? If God is for us, who is against us?\nHis lord said unto him, Well done, good and faithful servant: thou hast been faithful over a few things, I will set thee over many things; enter thou into the joy of thy lord.\nFor as ye in time past were disobedient to God, but now have obtained mercy by their disobedience,\nCan't be bothered with a bird\nnot in the passion of lust, even as the Gentiles who know not God;\nThey found a key - long, of iron.\nfor Demas forsook me, having loved this present world, and went to Thessalonica; Crescens to Galatia, Titus to Dalmatia.\nSeeing ye have purified your souls in your obedience to the truth unto unfeigned love of the brethren, love one another from the heart fervently:\nXII. A Meeting  \nand these things we write, that our joy may be made full.\nFor I bear them witness that they have a zeal for God, but not according to knowledge.\nHe could not be at peace because soldiers had hunted them like wild deer.\nAnd their dead bodies lie in the street of the great city, which spiritually is called Sodom and Egypt, where also their Lord was crucified.\nin the day when God shall judge the secrets of men, according to my gospel, by Jesus Christ.\nBut the scripture shut up all things under sin, that the promise by faith in Jesus Christ might be given to them that believe.\nFor as in those days which were before the flood they were eating and drinking, marrying and giving in marriage, until the day that Noah entered into the ark,\nthat it might be fulfilled which was spoken through Isaiah the prophet, saying,\nfor there is born to you this day in the city of David a Saviour, who is Christ the Lord.\nYes, I said.\n“You are a famous pig and you are a good pig.\nFor we are not as the many, corrupting the word of God: but as of sincerity, but as of God, in the sight of God, speak we in Christ. \n“But I can’t help it.\nWho in the days of his flesh, having offered up prayers and supplications with strong crying and tears unto him that was able to save him from death, and having been heard for his godly fear,\nSlug\nAnd he said unto me, These words are faithful and true: and the Lord, the God of the spirits of the prophets, sent his angel to show unto his servants the things which must shortly come to pass.\nLet no man rob you of your prize by a voluntary humility and worshipping of the angels, dwelling in the things which he hath seen, vainly puffed up by his fleshly mind,\nAnd I saw the seven angels that stand before God; and there were given unto them seven trumpets.\nTherefore he that resisteth the power, withstandeth the ordinance of God: and they that withstand shall receive to themselves judgment.\nIf therefore thy whole body be full of light, having no part dark, it shall be wholly full of light, as when the lamp with its bright shining doth give thee light.\nbut when that which is perfect is come, that which is in part shall be done away.\nNow when even was come, he was sitting at meat with the twelve disciples;\nI speak not by way of commandment, but as proving through the earnestness of others the sincerity also of your love.\nWherefore comfort one another with these words. \nand she beholdeth two angels in white sitting, one at the head, and one at the feet, where the body of Jesus had lain.\nit is sown a natural body; it is raised a spiritual body. If there is a natural body, there is also a spiritual body.\nAnd the young men arose and wrapped him round, and they carried him out and buried him.\nThe dead organisms decompose.\nthat they all might be judged who believed not the truth, but had pleasure in unrighteousness.\nHe did not want them to disappear in the white man's world.\nhow that in much proof of affliction the abundance of their joy and their deep poverty abounded unto the riches of their liberality.\nAnd they led Jesus away to the high priest: and there come together with him all the chief priests and the elders and the scribes.\nI will remark briefly what has occurred to me as to the moral disposition of the Indians in relation to this subject.\nAnd when the multitudes were gathering together unto him, he began to say, This generation is an evil generation: it seeketh after a sign; and there shall no sign be given to it but the sign of Jonah.\n“I didn’t know you could lay eggs,” said Wilbur in amazement.\nNow Paul and his company set sail from Paphos, and came to Perga in Pamphylia: and John departed from them and returned to Jerusalem.\nIn the year before the Army arrived, the members of the Ridge bunch began leaving the plantations they had built, the mills and ferries and stores and printing presses, and pulled out to the West, taking a few of their house slaves with them but leaving most to follow later.\nAnd when it came to pass that we were parted from them and had set sail, we came with a straight course unto Cos, and the next day unto Rhodes, and from thence unto Patara:\nAnd they brought Alexander out of the multitude, the Jews putting him forward. And Alexander beckoned with the hand, and would have made a defence unto the people.\n“But we have received a sign, Edith — a mysterious sign.\nwhom not having seen ye love; on whom, though now ye see him not, yet believing, ye rejoice greatly with joy unspeakable and full of glory:\nThe only other sound’s the sweep\nAnd when he had gone through those parts, and had given them much exhortation, he came into Greece.\nFor if we have become united with him in the likeness of his death, we shall be also in the likeness of his resurrection;\n“What are they?” asked Wilbur, sadly.\nTempleton's whiskers quivered.\nFor we who live are always delivered unto death for Jesus’ sake, that the life also of Jesus may be manifested in our mortal flesh.\nHis yard was cold and wet.\nAnd I wept much, because no one was found worthy to open the book, or to look thereon:\nHow were we to know these few would put up a fight?\nBut we will continue stedfastly in prayer, and in the ministry of the word.\n“Perhaps,” she said, wearily.\nAnd as we tarried there some days, there came down from Judæa a certain prophet, named Agabus.\nFor as the Father raiseth the dead and giveth them life, even so the Son also giveth life to whom he will.\nThis saying therefore went forth among the brethren, that that disciple should not die: yet Jesus said not unto him, that he should not die; but, If I will that he tarry till I come, what is that to thee?\nAnd they came into the house and saw the young child with Mary his mother; and they fell down and worshipped him; and opening their treasures they offered unto him gifts, gold and frankincense and myrrh.\nAfter that, the dog did not bark like that anymore.\nLet's go hunt for another shoe.\n“Making something, as usual.”\nFor ye bear with the foolish gladly, being wise yourselves.\nCharley handed him his hatchet.\nAnd that in the good ground, these are such as in an honest and good heart, having heard the word, hold it fast, and bring forth fruit with patience.\nFor this cause left I thee in Crete, that thou shouldest set in order the things that were wanting, and appoint elders in every city, as I gave thee charge;\nIt got dark while we were there, so we decided to spend the night there.\nAnd whence is this to me, that the mother of my Lord should come unto me?\nFor there is nothing hid, save that it should be manifested; neither was anything made secret, but that it should come to light.\n“What ails you, Lurvy?\nI went looking for her.\nAnd John calling unto him two of his disciples sent them to the Lord, saying, Art thou he that cometh, or look we for another?\nIt was empty.\nIt was said to be nothing but white people up there now.\nAnd after the reading of the law and the prophets the rulers of the synagogue sent unto them, saying, Brethren, if ye have any word of exhortation for the people, say on.\n‘‘It will show up better if I make the whole thing with double lines.”\nSimon Peter therefore went up, and drew the net to land, full of great fishes, a hundred and fifty and three: and for all there were so many, the net was not rent.\nI will ask someone else for help.\nand coming forth out of the tombs after his resurrection they entered into the holy city and appeared unto many.\nwhere there cannot be Greek and Jew, circumcision and uncircumcision, barbarian, Scythian, bondman, freeman; but Christ is all, and in all.\n“I’m glad to see you.\nthe chief captain commanded him to be brought into the castle, bidding that he should be examined by scourging, that he might know for what cause they so shouted against him.\nThe Cherokees listened and remember those songs to this day.\nWilbur had gone to sleep thinking about these plans.\nNothing but a dent in the pillow, flapped-back sheets.\nTears came to his eyes.\nBlessed is that servant, whom his lord when he cometh shall find so doing.\nAnd the Jews also joined in the charge, affirming that these things were so.\nGive diligence to come before winter. Eubulus saluteth thee, and Pudens, and Linus, and Claudia, and all the brethren.\nand he shall set the sheep on his right hand, but the goats on the left.\n“All together, now, boys!\nIf thou art the Christ, tell us. But he said unto them, If I tell you, ye will not believe:\nwhose soever sins ye forgive, they are forgiven unto them; whose soever sins ye retain, they are retained.\nJesus saith unto her, Go, call thy husband, and come hither.\nand those parts of the body, which we think to be less honorable, upon these we bestow more abundant honor; and our uncomely parts have more abundant comeliness;\nBut know this, that if the master of the house had known in what hour the thief was coming, he would have watched, and not have left his house to be broken through.\nThe baptism of John, was it from heaven, or from men? answer me.\nAnd when he hath found it, he layeth it on his shoulders, rejoicing.\nto whom be the glory for ever and ever. Amen.\nDid then that which is good become death unto me? God forbid. But sin, that it might be shown to be sin, by working death to me through that which is good;—that through the commandment sin might become exceeding sinful.\nduring forty days, being tempted of the devil. And he did eat nothing in those days: and when they were completed, he hungered.\nThe book of the generation of Jesus Christ, the son of David, the son of Abraham.\nLet a woman learn in quietness with all subjection.\nand called and asked whether Simon, who was surnamed Peter, were lodging there.\nWe left the horses tied a half mile down the river and moved up as quietly as we could through the thick ground layer of frosted leaves.\nI used every tactic of rhetoric I had learned from Bear and from all the smart dead English writers I treasured and from all the days in court, teasing out disputes about land titles and property lines and whose cow broke down somebody’s pasture fence.\nThen Avery picked up a handful of straw and threw it high in the air and gave a loud yell.\nNathanael answered him, Rabbi, thou art the Son of God; thou art King of Israel.\nAnd he stood over her, and rebuked the fever; and it left her: and immediately she rose up and ministered unto them.\nFor even as we have many members in one body, and all the members have not the same office:\nPut it on! Put it on! they told Wolf.\n“I’m delighted that the egg never hatched,” she gabbled.\nThe ladies climbed in beside him.\nThen the king said to the servants, Bind him hand and foot, and cast him out into the outer darkness; there shall be the weeping and the gnashing of teeth.\nAnd he saith unto them, Be not amazed: ye seek Jesus, the Nazarene, who hath been crucified: he is risen; he is not here: behold, the place where they laid him!\n“Really?” said Wilbur.\n“No,” said Charlotte.\n“What’s the trouble?” asked Mr. Zuckerman.\nFor this cause I bow my knees unto the Father,\nI haven’t even strength enough to climb down into the crate.\nWilbur will soon be put into the crate.\nNow this I say, brethren, that flesh and blood cannot inherit the kingdom of God; neither doth corruption inherit incorruption.\nAnd they stirred up the people, and the elders, and the scribes, and came upon him, and seized him, and brought him into the council,\nA ﬂy that had been crawling along Wilbur’s trough had ﬂown up and blundered into the lower part of Charlotte’s web and was tangled in the sticky threads.\nOpen your hearts to us: we wronged no man, we corrupted no man, we took advantage of no man.\nBut I fleshed it out and used the best features of the language to make it live anew.\nLittlefish realized that somewhere along his journey he had grown into a large fish and that he was no longer afraid.\nAnd when the voice came, Jesus was found alone. And they held their peace, and told no man in those days any of the things which they had seen.\nSlough a skin, dismiss memory, move on.\nBut of the multitude many believed on him; and they said, When the Christ shall come, will he do more signs than those which this man hath done?\n“This is a very serious thing, Edith,” he replied.\nand say, We piped unto you, and ye did not dance; we wailed, and ye did not mourn.\n“The pig couldn't help being born small, could it?\nAnd when they saw him, they were astonished; and his mother said unto him, Son, why hast thou thus dealt with us? behold, thy father and I sought thee sorrowing.\nBut ye shall not be so: but he that is the greater among you, let him become as the younger; and he that is chief, as he that doth serve.\n“I’d be only too glad to help in any way I can.”\nWendy woke up early one morning.\nLet's find one more shoe.\nforbidding us to speak to the Gentiles that they may be saved; to fill up their sins always: but the wrath is come upon them to the uttermost.\nThen touched he their eyes, saying, According to your faith be it done unto you.\nthe younger men likewise exhort to be sober-minded:\nWhen therefore he heard that he was sick, he abode at that time two days in the place where he was.\nSo Littlefish swam on to the next pool where he heard a tiny voice say, Hello.\n“It’s a miserable inheritance,” said Wilbur, gloomily.\nFor an angel went down at a certain season into the pool, and troubled the water: whosoever then first after the troubling of the water stepped in was made whole of whatsoever disease he had.\nhenceforth expecting till his enemies be made the footstool of his feet.\nThen after this he saith to the disciples, Let us go into Judæa again.\nBleeding out or healing up.\nThe animals were left to themselves in the barn.\nJesus looking upon them saith, With men it is impossible, but not with God: for all things are possible with God.\nThe senator had coffee brought in and we left off business and talked more generally, as elder to younger.\nVan Buren followed him and his Indian policies like a swimmer caught in a riptide.\nLove worketh no ill to his neighbor: love therefore is the fulfilment of the law.\nFor he that doeth wrong shall receive again for the wrong that he hath done: and there is no respect of persons.\nShe would wave good-bye to him, and he would stand and watch the bus until it vanished around a turn.\nIf a man receiveth circumcision on the sabbath, that the law of Moses may not be broken; are ye wroth with me, because I made a man every whit whole on the sabbath?\nAll that are with me salute thee. Salute them that love us in faith. Grace be with you all.\nThe woman saith unto him, Sir, give me this water, that I thirst not, neither come all the way hither to draw.\nAnd a certain woman named Lydia, a seller of purple, of the city of Thyatira, one that worshipped God, heard us: whose heart the Lord opened to give heed unto the things which were spoken by Paul.\nBut ye denied the Holy and Righteous One, and asked for a murderer to be granted unto you,\nHe may need me.\nAnd he sought to see Jesus who he was; and could not for the crowd, because he was little of stature.\nMany days and nights passed as Littlefish met new friends on his journey.\nThrough him then let us offer up a sacrifice of praise to God continually, that is, the fruit of lips which make confession to his name.\nLurvy sprang from the judges’ ring and disappeared.\nThe Son of man goeth, even as it is written of him: but woe unto that man through whom the Son of man is betrayed! good were it for that man if he had not been born.\nStraightway the father of the child cried out, and said, I believe; help thou mine unbelief.\nAfterward Jesus findeth him in the temple, and said unto him, Behold, thou art made whole: sin no more, lest a worse thing befall thee.\nThe Jews answered and said unto him, Say we not well that thou art a Samaritan, and hast a demon?\nFrom one to two, Wilbur planned to sleep.\nIn that same hour he rejoiced in the Holy Spirit, and said, I thank thee, O Father, Lord of heaven and earth, that thou didst hide these things from the wise and understanding, and didst reveal them unto babes: yea, Father; for so it was well-pleasing in thy sight.\nCharley looked down the long view south, grey mountains lapped and stacked to the end of the world.\n“I do, too,” said Aranea.\nAnd blessed is he, whosoever shall find no occasion of stumbling in me.\nand because he needed not that any one should bear witness concerning man; for he himself knew what was in man. \nAnd other fell amidst the thorns; and the thorns grew with it, and choked it.\nI can’t.\nBut Charley’s no warrior.\nOf course, he gets into poison ivy and gets stung by wasps and bees and brings frogs and snakes home and breaks everything he lays his hands on.\nThe tusks of the boars were like pairs of long dirks that would lay you wide open.\nAll said they had never seen such a pig before in their lives.\nBut he sneaked away to the dump and was back in a while with a strip of cotton cloth.\nAt some point in recounting my brief history, I mentioned that I had taught myself French with no other help than a grammar and a dictionary, for there were many books in that language I had yearned to read, in particular Rousseau’s Meditations of a Solitary Walker and the Abbé Prévost’s Manon Lescaut, either of which, by the way, I would have considered entirely worth the effort, and so it was like I got Voltaire thrown in for free.\nNow the works of the flesh are manifest, which are these: fornication, uncleanness, lasciviousness,\nOr else, while the other is yet a great way off, he sendeth an ambassage, and asketh conditions of peace.\n“You there, Templeton?” he called.\nExpecting nothing.\nno brawler, no striker; but gentle, not contentious, no lover of money;\nIt didn’t seem natural for a little girl to be so interested in animals.\nNow we command you, brethren, in the name of our Lord Jesus Christ, that ye withdraw yourselves from every brother that walketh disorderly, and not after the tradition which they received of us.\nFor the body is not one member, but many.\nI protest by that glorying in you, brethren, which I have in Christ Jesus our Lord, I die daily.\nAnd he entered into one of the boats, which was Simon’s, and asked him to put out a little from the land. And he sat down and taught the multitudes out of the boat.\nAnd when the centurion, who stood by over against him, saw that he so gave up the ghost, he said, Truly this man was the Son of God.\nThe Zuckermans have fallen for it, and so has everybody else.\nAnd while Peter thought on the vision, the Spirit said unto him, Behold, three men seek thee.\nQuench not the Spirit;\n“A big grey one.\nLet not your heart be troubled: believe in God, believe also in me.\n“You know why they’re fattening you up, don’t you?”\nNow when I came to Troas for the gospel of Christ, and when a door was opened unto me in the Lord,\nOne day a tiny fish leaped into the air and got tangled in the web.\nI recited to her from memory my old poem “To C——,” taking care to note that it had actually been published in The Arcadian.\nBut he answered and said unto him that told him, Who is my mother? and who are my brethren?\nAt the base of a large mountain was a small pond.\nwhereby he hath granted unto us his precious and exceeding great promises; that through these ye may become partakers of the divine nature, having escaped from the corruption that is in the world by lust.\n“There are a lot of things Wilbur doesn’t know about life,” she thought.\nwhom God raised up, having loosed the pangs of death: because it was not possible that he should be holden of it.\nAnd he said unto his disciples, Therefore I say unto you, Be not anxious for your life, what ye shall eat; nor yet for your body, what ye shall put on.\nBut I haunted the salons until late, having discovered that the ladies on board found me exotic.\n“Maybe he’s dead,” said Avery.\nI said.\nThe hunters crawled close to the hole and shot arrows at Spearfinger, but the arrows broke and fell to the ground when they hit her stony skin.\nDozens and dozens of strangers stopped to stare at him and to admire his silky white coat, his curly tail, his kind and radiant expression.\nFor John said unto Herod, It is not lawful for thee to have thy brother’s wife.\nFor with what judgment ye judge, ye shall be judged: and with what measure ye mete, it shall be measured unto you.\nThe fact that the boys had seen no animal bigger than a groundhog failed to ease their minds.\nI want to breathe the beautiful air and lie in the beautiful sun.”\nBut ye are an elect race, a royal priesthood, a holy nation, a people for God’s own possession, that ye may show forth the excellencies of him who called you out of darkness into his marvellous light:\nAnd he said unto all, If any man would come after me, let him deny himself, and take up his cross daily, and follow me.\nSome men’s sins are evident, going before unto judgment; and some men also they follow after.\n“Get up! screamed Wilbur.\n“He can’t feel a thing now,” she remarked.\nBut I permit not a woman to teach, nor to have dominion over a man, but to be in quietness.\nHey, Charley, I said. Sit down here where it’s warm.\nin like manner the second also, and the third, unto the seventh.\nFinally, one morning toward the middle of July, the idea came.\nThe tunnel was an example of his skill and cunning.\nFor as in Adam all die, so also in Christ shall all be made alive.\nThe luminous brown contents of both vessels rocked with the effort of his writing.\n“This pig has won first prize already.”\nThey stared at the sign ZUCKERMAN’S FAMOUS PIG.\nEarthworm\n“And don’t get dirty!”\nand stedfastness, approvedness; and approvedness, hope:\nAxe argued that the whole slab of mountain range, all the southern slopes, the cuts where the creeks drain down to the rivers, the dry ridges leading up like ribs to the long crest of the chine, are indeed a vast and convoluted piece of terrain.\nWilbur looked everywhere.\nShe went back into her house and looked into her closet again.\nDo you really think so?”\nNot that which entereth into the mouth defileth the man; but that which proceedeth out of the mouth, this defileth the man.\n“It is true,” said the old sheep.\nYea, and all that would live godly in Christ Jesus shall suffer persecution.\nEight whole years.\nNow it came to pass, while he executed the priest’s office before God in the order of his course,\nand they lifted up their voices, saying, Jesus, Master, have mercy on us.\nI’ll skip forward to a point that I remember very clearly.\nThe rocks, the leaves and wood and even the animals could become soil someday.\nIt was warm too.\nBut then I spent some time around the man and noted that his black body servant rarely left his side and spoke in a rarefied English kind of accent he had learned in Bermuda.\nYe observe days, and months, and seasons, and years.\nIn my Father’s house are many mansions; if it were not so, I would have told you; for I go to prepare a place for you.\n“I never heard one say anything,” he replied.\nSome would be for eating.\nBut now abideth faith, hope, love, these three; and the greatest of these is love. \nIs it coming along pretty well?”\nAnd the Pharisees and their scribes murmured against his disciples, saying, Why do ye eat and drink with the publicans and sinners?\nWhen therefore he was gone out, Jesus saith, Now is the Son of man glorified, and God is glorified in him;\n“I don't want to be killed.\nMy little horse must think it queer\nThe boys were not cooks.\nBut Herod, when he heard thereof, said, John, whom I beheaded, he is risen.\nAnd when they had brought them, they set them before the council. And the high priest asked them,\nSo Wilbur cleared his throat.\n“Anybody would think we had three ganders, three geese, and twenty-one goslings.\nSimon, whom he also named Peter, and Andrew his brother, and James and John, and Philip and Bartholomew,\nand he shall wipe away every tear from their eyes; and death shall be no more; neither shall there be mourning, nor crying, nor pain, any more: the first things are passed away.\nBut Christ having come a high priest of the good things to come, through the greater and more perfect tabernacle, not made with hands, that is to say, not of this creation,\nEverybody knew it.\n(for the law made nothing perfect), and a bringing in thereupon of a better hope, through which we draw nigh unto God.\nAnd Jesus perceiving it withdrew from thence: and many followed him; and he healed them all,\nand then fell away, it is impossible to renew them again unto repentance; seeing they crucify to themselves the Son of God afresh, and put him to an open shame.\nAnd God is able to make all grace abound unto you; that ye, having always all sufficiency in everything, may abound unto every good work:\nAnd fear came upon every soul: and many wonders and signs were done through the apostles.\nHe didn’t swim too close to the bottom of the water.\nif by any means I may provoke to jealousy them that are my flesh, and may save some of them.\nsave that the Holy Spirit testifieth unto me in every city, saying that bonds and afflictions abide me.\nunto an inheritance incorruptible, and undefiled, and that fadeth not away, reserved in heaven for you,\nEvery day Wilbur would stand and look at the torn, empty web, and a lump would come to his throat.\nShe could tell by the sound of his breathing that he was sleeping peacefully, deep in the straw.\nA year ago he had a wife and child, a woman he loved and a brave bright-eyed boy.\nBut nobody pointed out that the web itself is a miracle.”\nIf then I am a wrong-doer, and have committed anything worthy of death, I refuse not to die; but if none of those things is true whereof these accuse me, no man can give me up unto them. I appeal unto Cæsar.\nFor if God spared not angels when they sinned, but cast them down to hell, and committed them to pits of darkness, to be reserved unto judgment;\nFor I bear him witness, that he hath much labor for you, and for them in Laodicea, and for them in Hierapolis.\nBut as the church is subject to Christ, so let the wives also be to their husbands in everything.\nI know him; because I am from him, and he sent me.\nI beseech you therefore, be ye imitators of me.\n“I need you, Charlotte.\nPaul, an apostle of Christ Jesus through the will of God, according to the promise of the life which is in Christ Jesus,\nOur fathers had the tabernacle of the testimony in the wilderness, even as he appointed who spake unto Moses, that he should make it according to the figure that he had seen.\nbecause the mind of the flesh is enmity against God; for it is not subject to the law of God, neither indeed can it be:\nAnd when they saw him, they worshipped him; but some doubted.\nthat aged women likewise be reverent in demeanor, not slanderers nor enslaved to much wine, teachers of that which is good;\nAnd the Spirit bade me go with them, making no distinction. And these six brethren also accompanied me; and we entered into the man’s house:\nThe colonel laughed as if I’d told the joke about Old Blue the coon dog.\nnot in the way of eyeservice, as men-pleasers; but as servants of Christ, doing the will of God from the heart;\nWherefore let him that thinketh he standeth take heed lest he fall.\nto the intent that now unto the principalities and the powers in the heavenly places might be made known through the church the manifold wisdom of God,\nthen hath he said, Lo, I am come to do thy will. He taketh away the first, that he may establish the second.\nMiddlings, warm water, apple parings, meat gravy, carrot scrapings, meat scraps, stale hominy, and the wrapper off a package of cheese.\nFor as many of you as were baptized into Christ did put on Christ.\nIt has writing on it.\nAt this point, Templeton showed his nose from his hiding place under Wilbur’s trough.\nBut they understood not the saying, and were afraid to ask him.\nAnd how hear we, every man in our own language wherein we were born?\n“I’ll tell you my name,” replied the first little spider, “if you'll tell me why you are trembling.”\nSome people say their shoes are too small and they hurt.\nI find then the law, that, to me who would do good, evil is present.\nCharlotte went back to her work. It was quite dark now.\nFor the name of God is blasphemed among the Gentiles because of you, even as it is written.\nIf any man loveth not the Lord, let him be anathema. Maranatha.\nAt the end of such days, Smith said he went to sleep with a bitter taste like ash from a coal fire in his mouth.\nfor neither can they die any more: for they are equal unto the angels; and are sons of God, being sons of the resurrection.\nand they came and besought them; and when they had brought them out, they asked them to go away from the city.\n“Struggle if you must,” said he, “but kindly remember that I’m hiding down here in this crate and I don’t want to be stepped on, or kicked in the face, or pummeled, or crushed in any way, or squashed, or buffeted about, or bruised, or lacerated, or scarred, or biffed.\nNay, already it is altogether a defect in you, that ye have lawsuits one with another. Why not rather take wrong? why not rather be defrauded?\ndespise not prophesyings;\nThe geese hung around the barnyard the way boys hang around a drug store, and Mr. Zuckerman fed them corn and turnips to keep them cheerful.\nAnd he said, Unto you it is given to know the mysteries of the kingdom of God: but to the rest in parables; that seeing they may not see, and hearing they may not understand.\nHe saith to him again a second time, Simon, son of John, lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love thee. He saith unto him, Tend my sheep.\nunto him be the glory in the church and in Christ Jesus unto all generations for ever and ever. Amen. \nThey sang the song of summer’s ending, a sad, monotonous song.\nHe will want to know about this.\n“Ever try to spin one?” asked Dr. Dorian.\nBeloved, while I was giving all diligence to write unto you of our common salvation, I was constrained to write unto you exhorting you to contend earnestly for the faith which was once for all delivered unto the saints.\n“Pull in your head—they’re coming.\nFor from within, out of the heart of men, evil thoughts proceed, fornications, thefts, murders, adulteries,\n“What’s unusual about the pig?”  asked Mrs. Zuckerman, who was beginning to recover from her scare.\nSo they gathered them up, and filled twelve baskets with broken pieces from the five barley loaves, which remained over unto them that had eaten.\n“Just the same, I intend to have a look at that spider.”\nThe scribe read the several pages of the letter through in silence.\nWorthy art thou, our Lord and our God, to receive the glory and the honor and the power: for thou didst create all things, and because of thy will they were, and were created. \nAnd the woman fled into the wilderness, where she hath a place prepared of God, that there they may nourish her a thousand two hundred and threescore days.\nAnd there came also publicans to be baptized, and they said unto him, Teacher, what must we do?\nAnd suddenly there was with the angel a multitude of the heavenly host praising God, and saying,\nand he bade them provide beasts, that they might set Paul thereon, and bring him safe unto Felix the governor.\n“Ouch!” he screamed.\nAnd Nathanael said unto him, Can any good thing come out of Nazareth? Philip saith unto him, Come and see.\n“What time is it?” whispered Wilbur to the goose.\nBy necessity, the firing squad killed the boy sitting on a log, for he was too terrified to stand.\nafter the same manner shall it be in the day that the Son of man is revealed.\n“Now make an attachment with your spinnerets, hurl yourself into space, and let out a dragline as you go down!”\nAnd the next night he did the same thing.\nThe man next to him reached out his pipe and Perry wiped the stem against the back of his wrist and took two draws and passed it back.\nKnow ye not that we shall judge angels? how much more, things that pertain to this life?\nYour future is assured.\n“Yes?” said the spider.\nAnd after Axe was finished telling his tale, I too wondered what varieties of woe Charley might bring upon us when the Army came searching.\nAnd Smith would take the last watch, from around four to sunup, which left those three boys to stand the worst of it. Smith reckoned to keep them awake two at a time, letting one always sleep, spelling one another every couple of hours.\nAnd when it came to pass that we had accomplished the days, we departed and went on our journey; and they all, with wives and children, brought us on our way till we were out of the city: and kneeling down on the beach, we prayed, and bade each other farewell;\nWoe unto them! for they went in the way of Cain, and ran riotously in the error of Balaam for hire, and perished in the gainsaying of Korah.\nAnd he saith unto me, The waters which thou sawest, where the harlot sitteth, are peoples, and multitudes, and nations, and tongues.\nBut I have a few things against thee, because thou hast there some that hold the teaching of Balaam, who taught Balak to cast a stumblingblock before the children of Israel, to eat things sacrificed to idols, and to commit fornication.\nLet’s say four hundred Indians.\nJesus said therefore unto the twelve, Would ye also go away?\nThe day grew fiercely hot.\nVerily I say unto thee, Thou shalt by no means come out thence, till thou have paid the last farthing.\nYea, I will give diligence that at every time ye may be able after my decease to call these things to remembrance.\nWherefore Come ye out from among them, and be ye separate, saith the Lord, And touch no unclean thing; And I will receive you,\nBehold what manner of love the Father hath bestowed upon us, that we should be called children of God; and such we are. For this cause the world knoweth us not, because it knew him not.\nI looked around at Smith.\nHe walked at a smart pace, and before long came to the creek and turned downstream.\nA spider has to pick up a living somehow or other, and I happen to be a trapper. I just naturally build a web and trap flies and other insects.\nI’d ask them for their support, and they would look me in the eye and go off talking on some vague other heartwarming topic, with the sincerity of a dying man addressing Jesus.\nFor it is written, As I live, saith the Lord, to me every knee shall bow, And every tongue shall confess to God.\nMost of them sailed away, on their balloons.\nAnd Jesus answering said unto him, Simon, I have somewhat to say unto thee. And he saith, Teacher, say on.\nNow on the last day, the great day of the feast, Jesus stood and cried, saying, If any man thirst, let him come unto me and drink.\nWhen thou art bidden of any man to a marriage feast, sit not down in the chief seat; lest haply a more honorable man than thou be bidden of him,\nNow if we put the horses’ bridles into their mouths that they may obey us, we turn about their whole body also.\nBut these, as creatures without reason, born mere animals to be taken and destroyed, railing in matters whereof they are ignorant, shall in their destroying surely be destroyed,\nIt is easier for a camel to go through a needle’s eye, than for a rich man to enter into the kingdom of God.\nAnd I saw a new heaven and a new earth: for the first heaven and the first earth are passed away; and the sea is no more.\nAnd I besought thy disciples to cast it out; and they could not.\nShe ascended slowly and returned to Wilbur’s pen.\nAnd Jesus rebuked him, saying, Hold thy peace, and come out of him. And when the demon had thrown him down in the midst, he came out of him, having done him no hurt.\nThe pen was grassy, and it was shaded from the sun by a shed roof.\nFor they that sleep sleep in the night; and they that are drunken are drunken in the night.\n“I’ll tell you in the morning,” she said.\nJesus saith unto him, Arise, take up thy bed, and walk.\nbut I buffet my body, and bring it into bondage: lest by any means, after that I have preached to others, I myself should be rejected. \nAnd now, Wilbur, it’s time you went to sleep.”\nCharley said the blanket bundle in his arms was airy as if it had been stuffed with cornhusks.\nShe found an earthworm with its droppings!\n“I just love it here in the barn, said Wilbur.\nJudge not according to appearance, but judge righteous judgment.\nThen cometh Jesus from Galilee to the Jordan unto John, to be baptized of him.\nIn such a place, the pale dome of the Capitol could loom high as Mont Blanc from the mud riverbanks, and the men who peopled it could consider themselves Goliaths.\nThe frog seemed tired after his morning in the swing.\nAnd when the ten heard it, they began to be moved with indignation concerning James and John.\nHe wrapped the blankets from his grandson’s bundle around his shoulders and began walking back down the trail.\nSo then let us follow after things which make for peace, and things whereby we may edify one another.\nServants, be obedient unto them that according to the flesh are your masters, with fear and trembling, in singleness of your heart, as unto Christ;\nWhen therefore they were gathered together, Pilate said unto them, Whom will ye that I release unto you? Barabbas, or Jesus who is called Christ?\n“You watch and see what he does.”\nIn like manner also the cup, after supper, saying, This cup is the new covenant in my blood: this do, as often as ye drink it, in remembrance of me.\nNobody noticed her.\nBut if any man thinketh that he behaveth himself unseemly toward his virgin daughter, if she be past the flower of her age, and if need so requireth, let him do what he will; he sinneth not; let them marry.\nBecause he saith also in another psalm, Thou wilt not give thy Holy One to see corruption.\ndoth not behave itself unseemly, seeketh not its own, is not provoked, taketh not account of evil;\nIn that part of the state, the men all talked in a certain style, with their lips run out and pooched up in front of them so that they reminded me of hens gabbling right after they have laid an egg.\nAnd when we were escaped, then we knew that the island was called Melita.\nIn a minute he had squeezed through the fence and was standing in the long grass outside his yard.\nFern was enchanted. It relieved her mind to know that her baby would sleep covered up, and would stay warm.\nAnd the great dragon was cast down, the old serpent, he that is called the Devil and Satan, the deceiver of the whole world; he was cast down to the earth, and his angels were cast down with him.\nHave this mind in you, which was also in Christ Jesus:\nExisting independently outside the Nation for many years.\nMost decomposers are so small that you can't even see them.\nThen saith Jesus unto them, Fear not: go tell my brethren that they depart into Galilee, and there shall they see me.\nAnd when he had said this, and had taken bread, he gave thanks to God in the presence of all; and he brake it, and began to eat.\nThat's a fine specimen of a pig — it’s no bigger than a white rat.”\nNevertheless, Ridge and I drank together some nights in the Queen and got along just fine when we were not talking business.\nIn whole burnt offerings and sacrifices for sin thou hadst no pleasure:\nAnd I will say to my soul, Soul, thou hast much goods laid up for many years; take thine ease, eat, drink, be merry.\nWhen the child fell asleep, Spearfinger would stab her with the long awl finger and take out her liver.\nBut the Jews that were disobedient stirred up the souls of the Gentiles, and made them evil affected against the brethren.\nThe same was in the beginning with God.\nA moment later a tear came to Wilbur’s eye.\nThe Son of man came eating and drinking, and they say, Behold, a gluttonous man and a winebibber, a friend of publicans and sinners! And wisdom is justified by her works.\nNow when Herod saw Jesus, he was exceeding glad: for he was of a long time desirous to see him, because he had heard concerning him; and he hoped to see some miracle done by him.\nStop your crying!\nand to them he said, Go ye also into the vineyard, and whatsoever is right I will give you. And they went their way.\nHe poured a bucket of warm slops into the trough,  and while Wilbur ate his breakfast Lurvy scratched him gently with a smooth stick.\nYe know that when ye were Gentiles ye were led away unto those dumb idols, howsoever ye might be led.\nShe wonders about what she observes in the soil.\n“Let's get busy! Edith, bring the buttermilk!”\nAnd it came to pass, as we were going to the place of prayer, that a certain maid having a spirit of divination met us, who brought her masters much gain by soothsaying.\nnamed of God a high priest after the order of Melchizedek.\nRemember Lot’s wife.\nAnd when the disciples heard it, they fell on their face, and were sore afraid.\nThat's when I do my thinking, because then all the blood is in my head.”\nBut you couldn’t say Jackson wasn’t warned about the temperament of his second in command, for Calhoun had also fallen out similarly when he was vice president the first time under Quincy Adams.\nHe said, George is out hunting.\nAnd the eye cannot say to the hand, I have no need of thee: or again the head to the feet, I have no need of you.\nAnd if ye love them that love you, what thank have ye? for even sinners love those that love them.\nAnd Jesus said unto them, How many loaves have ye? And they said, Seven, and a few small fishes.\nBut some of them said, Could not this man, who opened the eyes of him that was blind, have caused that this man also should not die?\nthen we that are alive, that are left, shall together with them be caught up in the clouds, to meet the Lord in the air: and so shall we ever be with the Lord.\nI and the Father are one.\nIf any one cometh unto you, and bringeth not this teaching, receive him not into your house, and give him no greeting:\nas free, and not using your freedom for a cloak of wickedness, but as bondservants of God.\nFor he accepted indeed our exhortation; but being himself very earnest, he went forth unto you of his own accord.\nI reached out and ran my finger across the four knobs of bone.\nTempleton, who had been resting in his home, scuttled away into the barn.\nThese things were done in Bethany beyond the Jordan, where John was baptizing.\nYour riches are corrupted, and your garments are moth-eaten.\na devout man, and one that feared God with all his house, who gave much alms to the people, and prayed to God always.\nwhere their worm dieth not, and the fire is not quenched.\nRain spattered against Mrs. Zuckerman’s kitchen windows and came gushing out of the downspouts.\nFor the unbelieving husband is sanctified in the wife, and the unbelieving wife is sanctified in the brother: else were your children unclean; but now are they holy.\nAnd behold, a man called by name Zacchæus; and he was a chief publican, and he was rich.\nFern disappeared after a while, walking down the road toward Zuckermans’.\nSo they don’t join up?\nI don’t spit on it.\nWhatsoever is sold in the shambles, eat, asking no question for conscience’ sake;\nThere was no justice in the world anymore.\nBut if we died with Christ, we believe that we shall also live with him;\nThe woman struck her palms against each other twice, with a hard brushing smack.\nAnd from that city many of the Samaritans believed on him because of the word of the woman, who testified, He told me all things that ever I did.\nDefraud ye not one the other, except it be by consent for a season, that ye may give yourselves unto prayer, and may be together again, that Satan tempt you not because of your incontinency.\nWe had better hurry along\nSufficient to such a one is this punishment which was inflicted by the many;\nYe have heard that it was said to them of old time, Thou shalt not kill; and whosoever shall kill shall be in danger of the judgment:\nSalute Philologus and Julia, Nereus and his sister, and Olympas, and all the saints that are with them.\nI could feel them beating in my wrists and temples.\nJesus therefore saith unto them, Children, have ye aught to eat? They answered him, No.\nYou know where I’d really like to be this evening?”\nA man that hath set at nought Moses’ law dieth without compassion on the word of two or three witnesses:\nIf a man therefore purge himself from these, he shall be a vessel unto honor, sanctified, meet for the master’s use, prepared unto every good work.\nBut they said, Not during the feast, lest a tumult arise among the people.\nI made the long journey to Washington and back three times during those years, each time with a stronger presentiment that all my efforts would be futile.\nGod forbid. We who died to sin, how shall we any longer live therein?\nAnd I saw thrones, and they sat upon them, and judgment was given unto them: and I saw the souls of them that had been beheaded for the testimony of Jesus, and for the word of God, and such as worshipped not the beast, neither his image, and received not the mark upon their forehead and upon their hand; and they lived, and reigned with Christ a thousand years.\nThe grace of our Lord Jesus Christ be with your spirit. Amen.\nPay out line!\nThe rain caused the stream to rise, and, now it would be deep enough for him to swim up stream.\nmerchandise of gold, and silver, and precious stone, and pearls, and fine linen, and purple, and silk, and scarlet; and all thyine wood, and every vessel of ivory, and every vessel made of most precious wood, and of brass, and iron, and marble;\nPaul, a servant of Jesus Christ, called to be an apostle, separated unto the gospel of God,\nAnd the God of all grace, who called you unto his eternal glory in Christ, after that ye have suffered a little while, shall himself perfect, establish, strengthen you.\nChrist redeemed us from the curse of the law, having become a curse for us; for it is written, Cursed is every one that hangeth on a tree:\nHe could see them showing the claws to their own grandchildren and telling the story of the day he came walking into camp bloody to the elbows, bent from the weight he packed over his shoulder, a great bear haunch in a black bundle made from its skin.\nAnd they all left him, and fled.\nI thank God, I speak with tongues more than you all:\nLord, have mercy on my son: for he is epileptic, and suffereth grievously; for oft-times he falleth into the fire, and oft-times into the water.\n“How’s that for a pig?” Mr. Zuckerman would ask, well pleased with himself.\nAnd after these things he was manifested in another form unto two of them, as they walked, on their way into the country.\nAnd the light shineth in the darkness; and the darkness apprehended it not.\n“Seems to me you're putting on weight.”\nHa! Thought Rabbit.\nThen said he to another, And how much owest thou? And he said, A hundred measures of wheat. He saith unto him, Take thy bond, and write fourscore.\nfor I will give you a mouth and wisdom, which all your adversaries shall not be able to withstand or to gainsay.\nYou might, by chance, know what it is.\nFor I say unto you, that except your righteousness shall exceed the righteousness of the scribes and Pharisees, ye shall in no wise enter into the kingdom of heaven.\nAnd when it was determined that we should sail for Italy, they delivered Paul and certain other prisoners to a centurion named Julius, of the Augustan band.\nAnd he that was sown among the thorns, this is he that heareth the word; and the care of the world, and the deceitfulness of riches, choke the word, and he becometh unfruitful.\nIt’s good in some ways, not so good in others.\nBut beware of men: for they will deliver you up to councils, and in their synagogues they will scourge you;\nAnd when they were at Salamis, they proclaimed the word of God in the synagogues of the Jews: and they had also John as their attendant.\nand if Christ hath not been raised, your faith is vain; ye are yet in your sins.\nthat each one of you know how to possess himself of his own vessel in sanctification and honor,\nas touching zeal, persecuting the church; as touching the righteousness which is in the law, found blameless.\nJudas then, having received the band of soldiers, and officers from the chief priests and the Pharisees, cometh thither with lanterns and torches and weapons.\nAnd I will give unto my two witnesses, and they shall prophesy a thousand two hundred and threescore days, clothed in sackcloth.\nIn these lay a multitude of them that were sick, blind, halt, withered.\nFor not through the law was the promise to Abraham or to his seed that he should be heir of the world, but through the righteousness of faith.\nand whosoever would be first among you shall be your servant:\nTo shine upon them that sit in darkness and the shadow of death; To guide our feet into the way of peace.\nsaying, These last have spent but one hour, and thou hast made them equal unto us, who have borne the burden of the day and the scorching heat.\nLet as many as are servants under the yoke count their own masters worthy of all honor, that the name of God and the doctrine be not blasphemed.\ntwo women shall be grinding at the mill; one is taken, and one is left.\n“Oh, making something,” she said.\nSmith said they had ridden out from the fort shortly after dawn to go round people up and escort them back to the stockade.\nFor if because of meat thy brother is grieved, thou walkest no longer in love. Destroy not with thy meat him for whom Christ died.\nand let him that is in the field not return back to take his cloak.\nAnd he answered and said unto them, Go and tell John the things which ye have seen and heard; the blind receive their sight, the lame walk, the lepers are cleansed, and the deaf hear, the dead are raised up, the poor have good tidings preached to them.\nbut now, having no more any place in these regions, and having these many years a longing to come unto you,\nbut each man is tempted, when he is drawn away by his own lust, and enticed.\nAnd when he had spent three months there, and a plot was laid against him by the Jews as he was about to set sail for Syria, he determined to return through Macedonia.\ntestifying both to Jews and to Greeks repentance toward God, and faith toward our Lord Jesus Christ.\nAfter these things I will return, And I will build again the tabernacle of David, which is fallen; And I will build again the ruins thereof, And I will set it up:\nBut it was popular among young men of bright prospect and also various Creek and Cherokee and Seminole legations come to Washington City to negotiate treaties.\nThe sheep lay motionless.\nFor he that is not against us is for us.\nsaying, This man persuadeth men to worship God contrary to the law.\n“So far,” said Zuckerman, “only four people on earth know about this miracle—myself, my wife Edith, my hired man Lurvy, and you.”\nAnd other fell among the thorns, and the thorns grew up, and choked it, and it yielded no fruit.\nI didn’t see Ancih’s husband and said so to Charley.\nThis Sequoyah must have been famous, we say.\nAnd Jesus called them to him, and saith unto them, Ye know that they who are accounted to rule over the Gentiles lord it over them; and their great ones exercise authority over them.\nbut he, because he abideth for ever, hath his priesthood unchangeable.\nHis opinion was, the new boots were close to the finest he had ever worn.\nIt was fine to jump in, and perfect to hide in.\nFor he that speaketh in a tongue speaketh not unto men, but unto God; for no man understandeth; but in the spirit he speaketh mysteries.\nBut we believe that we shall be saved through the grace of the Lord Jesus, in like manner as they.\nAnd many more happy, tranquil days followed.\nBrethren, be ye imitators together of me, and mark them that so walk even as ye have us for an ensample.\nAnd the scribes of the Pharisees, when they saw that he was eating with the sinners and publicans, said unto his disciples, How is it that he eateth and drinketh with publicans and sinners?\nAnd in the fourth watch of the night he came unto them, walking upon the sea.\nFor he hath looked upon the low estate of his handmaid: For behold, from henceforth all generations shall call me blessed.\nAnd the peace of God, which passeth all understanding, shall guard your hearts and your thoughts in Christ Jesus.\nAnd the Holy Spirit also beareth witness to us; for after he hath said,\nWhereupon he promised with an oath to give her whatsoever she should ask.\nAnd there also came together the multitude from the cities round about Jerusalem, bringing sick folk, and them that were vexed with unclean spirits: and they were healed every one.\nEven so faith, if it have not works, is dead in itself.\nAnd he that doth not take his cross and follow after me, is not worthy of me.\n“Easy to fool,” said Charlotte.\nI believe we have reached a deal, he said.\nand if any man shall take away from the words of the book of this prophecy, God shall take away his part from the tree of life, and out of the holy city, which are written in this book.\nHe doesn't know what it is, said Squirrel.\nfor I feared thee, because thou art an austere man: thou takest up that which thou layedst not down, and reapest that which thou didst not sow.\nSo they called a second time the man that was blind, and said unto him, Give glory to God: we know that this man is a sinner.\nwhich some professing have erred concerning the faith. Grace be with you.\nbut I trust in the Lord that I myself also shall come shortly.\nBut at midnight there is a cry, Behold, the bridegroom! Come ye forth to meet him.\nAnd it came to pass, on one of the days, as he was teaching the people in the temple, and preaching the gospel, there came upon him the chief priests and the scribes with the elders;\nAnd on the first day of unleavened bread, when they sacrificed the passover, his disciples say unto him, Where wilt thou that we go and make ready that thou mayest eat the passover?\nand were continually in the temple, blessing God.\nOn those actions, as opposed to a matter of chicken bones, Jackson had no comment one way or the other.\nAt four would come supper.\nI’m afraid he’s much bigger than you are.”\nAre you all right?\n“Good idea,” said Charlotte.\nI was trying to avoid saying that you look the fool.\nAnd he that sent me is with me; he hath not left me alone; for I do always the things that are pleasing to him.\nNeither shalt thou swear by thy head, for thou canst not make one hair white or black.\nto them that by patience in well-doing seek for glory and honor and incorruption, eternal life:\nI rose from behind the hickory trunk and started walking into camp, and as I went Smith was saying something to me in a hissing whisper inflected like he thought he was issuing orders.\nAnd Jesus said unto him, If thou canst! All things are possible to him that believeth.\nAnd forthwith he took soldiers and centurions, and ran down upon them: and they, when they saw the chief captain and the soldiers, left off beating Paul.\nAnd it came to pass, as he said these things, a certain woman out of the multitude lifted up her voice, and said unto him, Blessed is the womb that bare thee, and the breasts which thou didst suck.\n“No, the trough is dry, and I want you to go to sleep.\nNevertheless I tell you the truth: It is expedient for you that I go away; for if I go not away, the Comforter will not come unto you; but if I go, I will send him unto you.\nAnd no man putteth new wine into old wineskins; else the wine will burst the skins, and the wine perisheth, and the skins: but they put new wine into fresh wine-skins.\nAnd he showed me a river of water of life, bright as crystal, proceeding out of the throne of God and of the Lamb,\nAvery grabbed the jar and rushed to the truck.\nPerry had taken off all his wet clothes and was naked under his grey wool blanket, which he wore cowled over his head and drooping to his white shins.\nHe said, No money at all?\nAnd whenever he is not here going buck wild, full Indian in language and customs all the way down to playing their deadly violent ball game, he’s in Washington City dancing at fancy balls and bootlicking every wheelhorse and crony in the Government, which is why his bunch of Indians get to stay in their homes unmolested while all the rest are hunted up out of the woods like hogs in the fall.\nI had since visited every fine tailor and cobbler in the city and had acquired all the wardrobe I could afford.\nYe offspring of vipers, how can ye, being evil, speak good things? for out of the abundance of the heart the mouth speaketh.\nsaying, Behold, we go up to Jerusalem; and the Son of man shall be delivered unto the chief priests and the scribes; and they shall condemn him to death, and shall deliver him unto the Gentiles:\nBut we behold him who hath been made a little lower than the angels, even Jesus, because of the suffering of death crowned with glory and honor, that by the grace of God he should taste of death for every man.\nAfter being fed some beans and cold cornbread, the captives told where another dozen runners were hiding near the forks of a river two or three days away.\nwho through him are believers in God, that raised him from the dead, and gave him glory; so that your faith and hope might be in God.\nHe rose slowly to his feet, while the geese cheered.\nAnd they that fed them fled, and told it in the city, and in the country. And they came to see what it was that had come to pass.\nBut if we shall say, From men; we fear the multitude; for all hold John as a prophet.\nAnd the man in whom the evil spirit was leaped on them, and mastered both of them, and prevailed against them, so that they fled out of that house naked and wounded.\nAnd when he was alone, they that were about him with the twelve asked of him the parables.\nBut some of them said, By Beelzebub the prince of the demons casteth he out demons.\nAsmeret has found some decomposers under a log!\nThere can be no mistake about it.\nAnd if I by Beelzebub cast out demons, by whom do your sons cast them out? therefore shall they be your judges.\nHe didn't know whether he could endure the awful loneliness any more.\nAnd in the morning, It will be foul weather to-day: for the heaven is red and lowering. Ye know how to discern the face of the heaven; but ye cannot discern the signs of the times.\n“Fern,” said her mother sternly, “you must not invent things.\nHe shook hands with the minister, and left.\nWhat happened? ᎠᏆᏛᏅ.\nAnd soldiers also asked him, saying, And we, what must we do? And he said unto them, Extort from no man by violence, neither accuse any one wrongfully; and be content with your wages.\nFor if in anything I have gloried to him on your behalf, I was not put to shame; but as we spake all things to you in truth, so our glorying also which I made before Titus was found to be truth.\nI don’t know what the girls were expecting when they reached the young gentlemen’s ancestral home.\nBut their eyes were holden that they should not know him.\nThese things speak and exhort and reprove with all authority. Let no man despise thee. \nHe took the letter from the scribe and tossed it back among the clutter.\n“Nicely done, nicely done!” cried the goose.\nAnd he said unto them, How say they that the Christ is David’s son?\nAnd they came to Capernaum: and when he was in the house he asked them, What were ye reasoning on the way?\naccording to the foreknowledge of God the Father, in sanctification of the Spirit, unto obedience and sprinkling of the blood of Jesus Christ: Grace to you and peace be multiplied.\nFor so hath the Lord commanded us, saying, I have set thee for a light of the Gentiles, That thou shouldest be for salvation unto the uttermost part of the earth.\nClaire did not even lift her face from where it was pressed in the space between my neck and shoulder.\nAnd at the second time Joseph was made known to his brethren; and Joseph’s race became manifest unto Pharaoh.\nWriters can tell any lie that leaps into their heads.\nAnd he said unto them, When I sent you forth without purse, and wallet, and shoes, lacked ye anything? And they said, Nothing.\nAnd the apostles said unto the Lord, Increase our faith.\nI don’t feel good at all.\nseeing that his divine power hath granted unto us all things that pertain unto life and godliness, through the knowledge of him that called us by his own glory and virtue;\nSo, as much as in me is, I am ready to preach the gospel to you also that are in Rome.\nAnd Joseph sent, and called to him Jacob his father, and all his kindred, threescore and fifteen souls.\nWhere your fathers tried me by proving me, And saw my works forty years.\nWhich of you convicteth me of sin? If I say truth, why do ye not believe me?\nFor each tree is known by its own fruit. For of thorns men do not gather figs, nor of a bramble bush gather they grapes.\nAnd he opened the pit of the abyss; and there went up a smoke out of the pit, as the smoke of a great furnace; and the sun and the air were darkened by reason of the smoke of the pit.\nFor verily, when we were with you, we told you beforehand that we are to suffer affliction; even as it came to pass, and ye know.\nIn the forever that was, all the forest dwellers spoke Cherokee.\nand Jesse begat David the king. And David begat Solomon of her that had been the wife of Uriah;\nFor this cause it is of faith, that it may be according to grace; to the end that the promise may be sure to all the seed; not to that only which is of the law, but to that also which is of the faith of Abraham, who is the father of us all\nbut he whom God raised up saw no corruption.\nYea verily, and I count all things to be loss for the excellency of the knowledge of Christ Jesus my Lord: for whom I suffered the loss of all things, and do count them but refuse, that I may gain Christ,\nAnd the day following Paul went in with us unto James; and all the elders were present.\nThe first man to reach him was only a few years older than Wasseton, and he came crawling forward out of the half-light with a knife between his teeth and an awkward long musket on a strap over his shoulder banging against every limb and trunk.\nMr. Zuckerman and Mr. Arable and Lurvy grabbed the pig and pushed him headfirst toward the crate.\nOne day when the stream merged with a larger creek, Littlefish entered it without much fear at all.\nAnd they began to beseech him to depart from their borders.\nIn the law it is written, By men of strange tongues and by the lips of strangers will I speak unto this people; and not even thus will they hear me, saith the Lord.\nIV. Loneliness  \nI say unto you, that he will avenge them speedily. Nevertheless, when the Son of man cometh, shall he find faith on the earth?\nBut food will not commend us to God: neither, if we eat not, are we the worse; nor, if we eat, are we the better.\ninstructing us, to the intent that, denying ungodliness and worldly lusts, we should live soberly and righteously and godly in this present world;\nCharley sat by the fire a long time thinking about food.\nLurvy appeared, carrying an Indian blanket that he had won.\nwithout father, without mother, without genealogy, having neither beginning of days nor end of life, but made like unto the Son of God), abideth a priest continually.\nI have given them thy word; and the world hated them, because they are not of the world, even as I am not of the world.\nAnd we have beheld and bear witness that the Father hath sent the Son to be the Saviour of the world.\nThere can be neither Jew nor Greek, there can be neither bond nor free, there can be no male and female; for ye all are one man in Christ Jesus.\nfor thou hast had five husbands; and he whom thou now hast is not thy husband: this hast thou said truly.\nLet no man deceive you with empty words: for because of these things cometh the wrath of God upon the sons of disobedience.\n“Wilbur’s not dirty,” said Mr. Zuckerman proudly.\nand whosoever liveth and believeth on me shall never die. Believest thou this?\nAs touching the gospel, they are enemies for your sake: but as touching the election, they are beloved for the fathers’ sake.\nAnd Jesus said unto him, Friend, do that for which thou art come. Then they came and laid hands on Jesus, and took him.\nJesus said unto him, Thou hast both seen him, and he it is that speaketh with thee.\nNathanael saith unto him, Whence knowest thou me? Jesus answered and said unto him, Before Philip called thee, when thou wast under the fig tree, I saw thee.\nThings change, he said.\nBear kept close watch over all the dealings, and at one point he asked if I knew what the difference between us was.\nupon which when I had fastened mine eyes, I considered, and saw the fourfooted beasts of the earth and wild beasts and creeping things and birds of the heaven.\nAnd if Wilbur goes there to live, you can walk down the road and visit him as often as you like.”\nand in your godliness brotherly kindness; and in your brotherly kindness love.\nbut by equality: your abundance being a supply at this present time for their want, that their abundance also may become a supply for your want; that there may be equality:\n“My name,” said the spider, “is Charlotte.”\nif any man speaketh, speaking as it were oracles of God; if any man ministereth, ministering as of the strength which God supplieth: that in all things God may be glorified through Jesus Christ, whose is the glory and the dominion for ever and ever. Amen.\nand suddenly there was a great earthquake, so that the foundations of the prison-house were shaken: and immediately all the doors were opened; and every one’s bands were loosed.\nThe old sheep nodded.\n“I don’t deserve it.\nAnd they laid hands on them, and put them in ward unto the morrow: for it was now eventide.\n“Bee-bee-bee!”\nbut when they came to Jesus, and saw that he was dead already, they brake not his legs:\nLikewise even as it came to pass in the days of Lot; they ate, they drank, they bought, they sold, they planted, they builded;\nHe shall not strive, nor cry aloud; Neither shall any one hear his voice in the streets.\nAnd when they heard it, they marvelled, and left him, and went away.\nNow this he said not of himself: but being high priest that year, he prophesied that Jesus should die for the nation;\nWhen it was Perry’s turn he said Galway, walking down Quay Street to the waterfront right at sunset to watch the light fall away from Inishmore across the water.\nAnd he said unto them, Ye are from beneath; I am from above: ye are of this world; I am not of this world.\nTherefore seeing we have this ministry, even as we obtained mercy, we faint not:\nJesus therefore answered them, and said, My teaching is not mine, but his that sent me.\n“Charlotte A. Cavatica.\nAnd he answered and said unto it, No man eat fruit from thee henceforward for ever. And his disciples heard it.\nTill I come, give heed to reading, to exhortation, to teaching.\nAnd the disciples came, and said unto him, Why speakest thou unto them in parables?\nBecause the foolishness of God is wiser than men; and the weakness of God is stronger than men.\nand he said unto him, All these things will I give thee, if thou wilt fall down and worship me.\nAnd when we had sailed across the sea which is off Cilicia and Pamphylia, we came to Myra, a city of Lycia.\n“You call that miserable thing a pig? \nsaying, We strictly charged you not to teach in this name: and behold, ye have filled Jerusalem with your teaching, and intend to bring this man’s blood upon us.\nAnd then she straightened her clothes and smiled and kissed me a glancing blow on my cheekbone.\nFor he is not a Jew who is one outwardly; neither is that circumcision which is outward in the flesh:\nI didn’t know where to begin arguing with these people.\nBut I say unto you, that Elijah is come, and they have also done unto him whatsoever they would, even as it is written of him.\nFor Moses said, Honor thy father and thy mother; and, He that speaketh evil of father or mother, let him die the death:\neven he to whom it was said, In Isaac shall thy seed be called:\nAnd he went forward a little, and fell on his face, and prayed, saying, My Father, if it be possible, let this cup pass away from me: nevertheless, not as I will, but as thou wilt.\nHe sat up and pulled wisely at his long whiskers, then crept away to pay a visit to the dump.\nThey threw rocks at it.\nBut if a man walk in the night, he stumbleth, because the light is not in him.\nI have not written unto you because ye know not the truth, but because ye know it, and because no lie is of the truth.\nXXI: Last Day\nFor this ye know of a surety, that no fornicator, nor unclean person, nor covetous man, who is an idolater, hath any inheritance in the kingdom of Christ and God.\nBut if ye have bitter jealousy and faction in your heart, glory not and lie not against the truth.\nand he had in his hand a little book open: and he set his right foot upon the sea, and his left upon the earth;\nAnd when this was done, the rest also that had diseases in the island came, and were cured:\nAnd he shall send forth his angels with a great sound of a trumpet, and they shall gather together his elect from the four winds, from one end of heaven to the other.\n“I’m not inventing,” said Fern.\nBe ye free from the love of money; content with such things as ye have: for himself hath said, I will in no wise fail thee, neither will I in any wise forsake thee.\nFrom three to four, he planned to stand perfectly still and think of what it was like to be alive, and to wait for Fern.\nBut be it so, I did not myself burden you; but, being crafty, I caught you with guile.\nAnd upon this came his disciples; and they marvelled that he was speaking with a woman; yet no man said, What seekest thou? or, Why speakest thou with her?\nFor before that certain came from James, he ate with the Gentiles; but when they came, he drew back and separated himself, fearing them that were of the circumcision.\nAnd he answered and said unto them, Why do ye also transgress the commandment of God because of your tradition?\nThe best I could tell, my claim was not accepted, but neither was it rejected.\nand they cried with a great voice, saying, How long, O Master, the holy and true, dost thou not judge and avenge our blood on them that dwell on the earth?\nJesus, knowing that the Father had given all things into his hands, and that he came forth from God, and goeth unto God,\nAnd the scribes that came down from Jerusalem said, He hath Beelzebub, and, By the prince of the demons casteth he out the demons.\nHer eight legs were spread wide.\nfor, Whosoever shall call upon the name of the Lord shall be saved.\nFor we know in part, and we prophesy in part;\nThings change.\nMake for the woods!\nBut Jesus answered and said, Suffer ye them thus far. And he touched his ear, and healed him.\nBut he answered her not a word. And his disciples came and besought him, saying, Send her away; for she crieth after us.\nThere was the web, sagging dangerously under the weight of the fish.”\nThey cannot see ten feet beyond the passway, and they invent ambush from every fall of limb or call of bird and I have had to threaten to severely penalize any man who fires indiscriminately.\nNow we that are strong ought to bear the infirmities of the weak, and not to please ourselves.\nAnd also because he was stout enough to bear the unwilling responsibility toward all these people climbing ahead of him, none of whom would be gathered here starving and in flight but for some urge he once had on Nancy’s body.\nAnd he called him, and said unto him, What is this that I hear of thee? render the account of thy stewardship; for thou canst be no longer steward.\nThis is he, of whom it is written, Behold, I send my messenger before thy face, Who shall prepare thy way before thee.\nMoreover certain women of our company amazed us, having been early at the tomb;\nFor this cause I also, when I could no longer forbear, sent that I might know your faith, lest by any means the tempter had tempted you, and our labor should be in vain.\nHe is said to be a man of such make that he could preach temperance out of his mouth while at the same time digging in his pocket to make change for a bottle and not see any conflict between the two actions.\nIn the trampled grass of the infield you will find old discarded lunch boxes containing the foul remains of peanut butter sandwiches, hard-boiled eggs, cracker crumbs, bits of doughnuts, and particles of cheese.\nAnd straightway he called them: and they left their father Zebedee in the boat with the hired servants, and went after him.\nUp you go! Repeat! Attach! Descend! Pay out line.\n“The Zuckerman pig is now being taken from his crate,” boomed the voice of the loud speaker.\nThen saith he unto his disciples, The harvest indeed is plenteous, but the laborers are few.\n“O.K., Wilbur,” said Charlotte.\nAnd he left them again, and went away, and prayed a third time, saying again the same words.\nand they asked him, saying, Teacher, Moses wrote unto us, that if a man’s brother die, having a wife, and he be childless, his brother should take the wife, and raise up seed unto his brother.\nBe sober, be watchful: your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour:\nThere was this one time I was at Chapel Hill, and it was a Friday night.\n“When are you going to spin a web?” asked Wilbur.\nAnd they came with haste, and found both Mary and Joseph, and the babe lying in the manger.\nAll these sights and sounds and smells will be yours to enjoy, Wilbur—this lovely world, these precious days ...\nAnd demons also came out from many, crying out, and saying, Thou art the Son of God. And rebuking them, he suffered them not to speak, because they knew that he was the Christ.\nI come quickly: hold fast that which thou hast, that no one take thy crown.\nAnd when the sun was setting, all they that had any sick with divers diseases brought them unto him; and he laid his hands on every one of them, and healed them.\nThe colonel smiled at my foolish lack of skill in negotiating.\n“Oh, everybody in the barn cellar.\nIntimate with Nature.\nI awoke in the dark.\nI know thy tribulation, and thy poverty (but thou art rich), and the blasphemy of them that say they are Jews, and they are not, but are a synagogue of Satan.\n“ ‘Versatile’ means I can turn with ease from one thing to another.\nHis nose was so far up Jackson’s ass for so long he couldn’t smell honeysuckle, even if you presented him with an armload of blossoms.\nEven the goose was quiet.\nFor if they do these things in the green tree, what shall be done in the dry?\nThen saith Jesus unto them, All ye shall be offended in me this night: for it is written, I will smite the shepherd, and the sheep of the flock shall be scattered abroad.\nDemetrius hath the witness of all men, and of the truth itself: yea, we also bear witness; and thou knowest that our witness is true.\nBetween the woods and frozen lake\nbut having food and covering we shall be therewith content.\nAnd it came to pass, when the days of his ministration were fulfilled, he departed unto his house.\nOld men and women and children.\nFive hundred, about.\nArise, let us be going: behold, he that betrayeth me is at hand.\nBut I rejoice in the Lord greatly, that now at length ye have revived your thought for me; wherein ye did indeed take thought, but ye lacked opportunity.\nAnd if he shall come in the second watch, and if in the third, and find them so, blessed are those servants.\n“I get everything all beautifully planned out and it has to go and rain,” he said.\nBut he said, Yea rather, blessed are they that hear the word of God, and keep it.\n“We’re all going home today.\nAnd he took hold of the blind man by the hand, and brought him out of the village; and when he had spit on his eyes, and laid his hands upon him, he asked him, Seest thou aught?\nIt's just a common grey spider.”\n“I don’t know,” said Charlotte.\nAnd they drew nigh unto the village, whither they were going: and he made as though he would go further.\nI came to cast fire upon the earth; and what do I desire, if it is already kindled?\nThis is the bread which cometh down out of heaven, that a man may eat thereof, and not die.\nand he charged them that they should take nothing for their journey, save a staff only; no bread, no wallet, no money in their purse;\nEverybody climbed out.\nAnd this I say for your own profit; not that I may cast a snare upon you, but for that which is seemly, and that ye may attend upon the Lord without distraction.\nIt was a fraction of what our holdings would become a decade later, but enough to form a confusing principality, existing outside the Nation and inside the state.\nYe know this, my beloved brethren. But let every man be swift to hear, slow to speak, slow to wrath:\nAnd the people shouted, saying, The voice of a god, and not of a man.\nNow may our God and Father himself, and our Lord Jesus, direct our way unto you:\nAnd when the townclerk had quieted the multitude, he saith, Ye men of Ephesus, what man is there who knoweth not that the city of the Ephesians is temple-keeper of the great Diana, and of the image which fell down from Jupiter?\nAnd coming up at that very hour she gave thanks unto God, and spake of him to all them that were looking for the redemption of Jerusalem.\nAnother thing I did that people chose to interpret as an eccentricity was to take an umbrella into the woods for especially wet days.\nBut if thine enemy hunger, feed him; if he thirst, give him to drink: for in so doing thou shalt heap coals of fire upon his head.\nSo often in life, all the option Creation grants us is either shit or go blind.\nAnd he could there do no mighty work, save that he laid his hands upon a few sick folk, and healed them.\neven the righteousness of God through faith in Jesus Christ unto all them that believe; for there is no distinction;\nAfter a few games, with me whispering, Top left, bottom middle, Perry saw what he’d been missing.\nSalt therefore is good: but if even the salt have lost its savor, wherewith shall it be seasoned?\nAnd we see that they were not able to enter in because of unbelief. \n“Thanks,” said Charlotte.\nPerhaps we should let him be and give him some cornmeal.\nand through him to reconcile all things unto himself, having made peace through the blood of his cross; through him, I say, whether things upon the earth, or things in the heavens.\nBeloved, if our heart condemn us not, we have boldness toward God;\nThe trap clanged hard.\n“I can smell you from here.\nAnd he sat down over against the treasury, and beheld how the multitude cast money into the treasury: and many that were rich cast in much.\nPilate therefore entered again into the Prætorium, and called Jesus, and said unto him, Art thou the King of the Jews?\nAnd he said unto them, Why are ye troubled? and wherefore do questionings arise in your heart?\nHereby we know that we love the children of God, when we love God and do his commandments.\nFor indeed we are in danger to be accused concerning this day’s riot, there being no cause for it: and as touching it we shall not be able to give account of this concourse.\nWhen Charley returned to camp the next day, it was with neither a bloody haunch over his shoulder nor a heroic story to tell.\nknowing this first, that in the last days mockers shall come with mockery, walking after their own lusts,\nSay not ye, There are yet four months, and then cometh the harvest? behold, I say unto you, Lift up your eyes, and look on the fields, that they are white already unto harvest.\nAnd to him they agreed: and when they had called the apostles unto them, they beat them and charged them not to speak in the name of Jesus, and let them go.\nWeapons, leather goods, saddlebags, tin pots, and dirty linens.\nFather, I desire that they also whom thou hast given me be with me where I am, that they may behold my glory, which thou hast given me: for thou lovedst me before the foundation of the world.\nPartway there I saw her moving across the dark room without a candle.\n“That’s because you've never been to one,” remarked the old sheep.\nAnd another angel, a third, followed them, saying with a great voice, If any man worshippeth the beast and his image, and receiveth a mark on his forehead, or upon his hand,\nJohn came, who baptized in the wilderness and preached the baptism of repentance unto remission of sins.\nFor we know that the whole creation groaneth and travaileth in pain together until now.\nWhosoever goeth onward and abideth not in the teaching of Christ, hath not God: he that abideth in the teaching, the same hath both the Father and the Son.\nneither shall they say, Lo, here! or, There! for lo, the kingdom of God is within you.\nAnd I wrote this very thing, lest, when I came, I should have sorrow from them of whom I ought to rejoice; having confidence in you all, that my joy is the joy of you all.\nOn a hot day like this, Asmeret looks for decomposers under leaves and logs.\nAnd when Paul was minded to enter in unto the people, the disciples suffered him not.\nMade by whom?\nOne day later, and I’ll wipe all of you away to the Territories.\nWater fell in runnels from the leaves onto the chalky ground litter under the shelter of the rhododendron and pooled at his feet.\nCharley remembered that last deer, a fat buck.\nAnd Jesus began to say unto them, Take heed that no man lead you astray.\nShe climbed in with Wilbur and went to work.\nredeeming the time, because the days are evil.\nAnd as he journeyed, it came to pass that he drew nigh unto Damascus: and suddenly there shone round about him a light out of heaven:\nThey already had all the fight beat out of them some time ago.\nAnd he said unto them, The sabbath was made for man, and not man for the sabbath:\nAnd they reasoned with themselves, saying, If we shall say, From heaven; he will say, Why did ye not believe him?\nhaving a field, sold it, and brought the money and laid it at the apostles’ feet. \n“Yes, sir,” said Lurvy.\nAnd they went out of the prison, and entered into the house of Lydia: and when they had seen the brethren, they comforted them, and departed. \nAnd let the peace of Christ rule in your hearts, to the which also ye were called in one body; and be ye thankful.\nAnd the soldiers also mocked him, coming to him, offering him vinegar,\nThe web glistened in the light and made a pattern of loveliness and mystery,  like a delicate veil.\nAnd he had already abandoned fearfulness. All he could do was exercise an attitude of still acceptance.\nAnd Jesus asked him, What is thy name? And he said, Legion; for many demons were entered into him.\nReturn to thy house, and declare how great things God hath done for thee. And he went his way, publishing throughout the whole city how great things Jesus had done for him.\nAnd he felt like he should find some nice tree that he could stay with.\nThe slow water moved almost without sound.\nThey were willing therefore to receive him into the boat: and straightway the boat was at the land whither they were going.\nNo deadly plotting took place among them.\nAnd when he knocked at the door of the gate, a maid came to answer, named Rhoda.\nHe wanted all Indians gone, no matter how rich or how white, and the provision was stricken from the final document.\nNote the smoothness and whiteness of the coat, observe the spotless skin, the healthy pink glow of ears and snout.”\nLet’s go.\nAnd he said, Nay, father Abraham: but if one go to them from the dead, they will repent.\nAnd upon the first day of the week, when we were gathered together to break bread, Paul discoursed with them, intending to depart on the morrow; and prolonged his speech until midnight.\n“The old sheep was right—this Fair is a rat’s paradise.\nAnd behold, there came to him a leper and worshipped him, saying, Lord, if thou wilt, thou canst make me clean.\nBut because I say the truth, ye believe me not.\nThe soldiers stood spaced out.\nIt was about two miles from our house.\nand I made known unto them thy name, and will make it known; that the love wherewith thou lovedst me may be in them, and I in them. \nAnd they could not answer again unto these things.\nAnd the jailor reported the words to Paul, saying, The magistrates have sent to let you go: now therefore come forth, and go in peace.\nBut Sequoyah, they tell us, knew no English and couldn't read -- not even the letter A.\nA veil of blood streamed down my lower face.\nFor they were about five thousand men. And he said unto his disciples, Make them sit down in companies, about fifty each.\nwhom he gathered together, with the workmen of like occupation, and said, Sirs, ye know that by this business we have our wealth.\nI'll ask that big strong oak tree, I'm sure he'll have some room, he said.\n“I'm a pig!\nsend them away, that they may go into the country and villages round about, and buy themselves somewhat to eat.\nAnd when he saw Jesus from afar, he ran and worshipped him;\nFor if he that cometh preacheth another Jesus, whom we did not preach, or if ye receive a different spirit, which ye did not receive, or a different gospel, which ye did not accept, ye do well to bear with him.\nA look of complete bewilderment came over Mrs. Zuckerman’s face.\nAnd Saul arose from the earth; and when his eyes were opened, he saw nothing; and they led him by the hand, and brought him into Damascus.\nAnd their eyes were opened. And Jesus strictly charged them, saying, See that no man know it.\n“I bet I can get him to help,” said the old sheep.\nAre not two sparrows sold for a penny? and not one of them shall fall on the ground without your Father:\nBut Peter raised him up, saying, Stand up; I myself also am a man.\nAnd he must needs pass through Samaria.\nWilbur’s stomach was empty and his mind was full.\nWhere’s Papa going with that ax?” said Fern to her mother as they were setting the table for breakfast.\nFor what thanksgiving can we render again unto God for you, for all the joy wherewith we joy for your sakes before our God;\nWendy sighed.\nTears began to come to his eyes.\nAnd he prayed again; and the heaven gave rain, and the earth brought forth her fruit.\nand if Christ hath not been raised, then is our preaching vain, your faith also is vain.\nAnd he saith unto them, Draw out now, and bear unto the ruler of the feast. And they bare it.\nI am a bottom feeder and have seen many different kinds of fish.\nHe said therefore to the multitudes that went out to be baptized of him, Ye offspring of vipers, who warned you to flee from the wrath to come?\nAnd then, after four pours, he told that every day in these impenetrable woods and mountains left him terrified.\n“Catch his head again,” Charlie said.\nI think therefore that this is good by reason of the distress that is upon us, namely, that it is good for a man to be as he is.\nThe goslings have arrived.\n“This magnificent animal,” continued the loud speaker, “is truly terrific.\nAnd they said, Lord, behold, here are two swords. And he said unto them, It is enough.\nThey went to the high balds and camped in the long grass and waited.\nAnd straightway he constrained the disciples to enter into the boat, and to go before him unto the other side, till he should send the multitudes away.\nAnd Jesus saith unto him, Verily I say unto thee, that thou to-day, even this night, before the cock crow twice, shalt deny me thrice.\nAnd she went out, and said unto her mother, What shall I ask? And she said, The head of John the Baptizer.\nThe woods are lovely, dark, and deep,\n“That's where you're wrong, my friend, my friend,” said a voice.\nJesus answered, My kingdom is not of this world: if my kingdom were of this world, then would my servants fight, that I should not be delivered to the Jews: but now is my kingdom not from hence.\nAnd the nations were wroth, and thy wrath came, and the time of the dead to be judged, and the time to give their reward to thy servants the prophets, and to the saints, and to them that fear thy name, the small and the great; and to destroy them that destroy the earth.\nPhilip findeth Nathanael, and saith unto him, We have found him, of whom Moses in the law, and the prophets, wrote, Jesus of Nazareth, the son of Joseph.\nThe woman moved about the dooryard casting crumbled bits of dry leftover cornbread onto the ground with a rattling motion of her hand and wrist, like shaking and throwing dice.\n“What's inside it?” asked Wilbur.\nAnd Jesus said unto them, Neither tell I you by what authority I do these things.\nBut whoso hath the world’s goods, and beholdeth his brother in need, and shutteth up his compassion from him, how doth the love of God abide in him?\nYou know perfectly well animals don’t talk.”\n“I hope you brought a good one,” Charlotte said.\nFor of his fulness we all received, and grace for grace.\nAnd the multitude of them that believed were of one heart and soul: and not one of them said that aught of the things which he possessed was his own; but they had all things common.\nFor this is the covenant that I will make with the house of Israel After those days, saith the Lord; I will put my laws into their mind, And on their heart also will I write them: And I will be to them a God, And they shall be to me a people:\nShe repeated this, making it double.\nHere are a few decomposers.\nOn foggy mornings, Charlotte’s web was truly a thing of beauty.\nJesus therefore said, When ye have lifted up the Son of man, then shall ye know that I am he, and that I do nothing of myself, but as the Father taught me, I speak these things.\nI guess my face looked like a map in process of erasure.\nadded this also to them all, that he shut up John in prison.\nBut I’m working on a plan.”\nAs for my whereabouts, that’s easy.\nAll the meat left now was a little venison jerky, just tag ends and scraps that served no purpose beyond flavoring a pot of cornmeal soup.\nA real gorge!\nParthians and Medes and Elamites, and the dwellers in Mesopotamia, in Judæa and Cappadocia, in Pontus and Asia,\nyet hath he not root in himself, but endureth for a while; and when tribulation or persecution ariseth because of the word, straightway he stumbleth.\nAnd when he opened the third seal, I heard the third living creature saying, Come. And I saw, and behold, a black horse; and he that sat thereon had a balance in his hand.\nAlright, Wolf! said Rabbit.\nThese are they that were not defiled with women; for they are virgins. These are they that follow the Lamb whithersoever he goeth. These were purchased from among men, to be the firstfruits unto God and unto the Lamb.\n“Now let us feast.”\nspeaking one to another in psalms and hymns and spiritual songs, singing and making melody with your heart to the Lord;\nto all that are in Rome, beloved of God, called to be saints: Grace to you and peace from God our Father and the Lord Jesus Christ.\nBut if he hath wronged thee at all, or oweth thee aught, put that to mine account;\nBut I seek not mine own glory: there is one that seeketh and judgeth.\nBeloved, now are we children of God, and it is not yet made manifest what we shall be. We know that, if he shall be manifested, we shall be like him; for we shall see him even as he is.\nThere was a slight shift of wind from up the creek, and it carried an odor like wet dog. Charley began walking back toward the dark shape.\nThe lambs learned about it from their mothers.\nShe looked like an old woman that everyone knew in the village, but the wise elders knew it was Spearfinger in disguise, so no one said a word of caution to her. \nand if I ask you, ye will not answer.\nI will arise and go to my father, and will say unto him, Father, I have sinned against heaven, and in thy sight:\nOne evening, just before Christmas, snow began falling.\n“Templeton?”\nThou believest that God is one; thou doest well: the demons also believe, and shudder.\nWhen he was five weeks old, Mr. Arable said he was now big enough to sell, and would have to be sold. Fern broke down and wept.\nbut having suffered before and been shamefully treated, as ye know, at Philippi, we waxed bold in our God to speak unto you the gospel of God in much conflict.\nwhile it is said, To-day if ye shall hear his voice, Harden not your hearts, as in the provocation.\nWe know that we have passed out of death into life, because we love the brethren. He that loveth not abideth in death.\nShe fed him again at suppertime, and again just before going to bed.\n“Sure I'm a spring pig,” replied Uncle.\nWhat is it then, brethren? When ye come together, each one hath a psalm, hath a teaching, hath a revelation, hath a tongue, hath an interpretation. Let all things be done unto edifying.\nAnd Herodias set herself against him, and desired to kill him; and she could not;\nPutting away therefore all wickedness, and all guile, and hypocrisies, and envies, and all evil speakings,\nNaked because other children needed the clothes.\nAnd I saw the woman drunken with the blood of the saints, and with the blood of the martyrs of Jesus. And when I saw her, I wondered with a great wonder.\nAnd Peter calling to remembrance saith unto him, Rabbi, behold, the fig tree which thou cursedst is withered away.\nMany of you will recall that never—to-be-forgotten day last summer when the writing appeared mysteriously on the spider’s web in Mr. Zuckerman’s barn, calling the attention of all and sundry to the fact that this pig was completely out of the ordinary.\nI walked back to the Indian Queen shortly before dawn with only the late-night packs of half-wild dogs roaming the streets for company, the Corn Tassel Moon almost full.\nand having found a ship crossing over unto Phoenicia, we went aboard, and set sail.\nWhen it had made tea, he drank it out of a tin cup he kept tied to his rope belt with a smaller loop of rope.\nA man can’t live in the woods.\nAnd we know that the judgment of God is according to truth against them that practise such things.\nand being fully assured that what he had promised, he was able also to perform.\nHe wasn’t thinking of anything much.\nAnd he calleth unto him the twelve, and began to send them forth by two and two; and he gave them authority over the unclean spirits;\nAnd straightway he entered into the boat with his disciples, and came into the parts of Dalmanutha.\n“My cousin used to stand on her head and let out enough thread to form a balloon.\nto execute judgment upon all, and to convict all the ungodly of all their works of ungodliness which they have ungodly wrought, and of all the hard things which ungodly sinners have spoken against him.\nCharlotte, watching her chance, scrambled out of the crate and climbed a post to the under side of the roof.\nGet you no gold, nor silver, nor brass in your purses;\nSupper that night was beans and bacon and cornmeal mush fried crisp in lard.\nThe hungry he hath filled with good things; And the rich he hath sent empty away.\nAnd the kings of the earth, and the princes, and the chief captains, and the rich, and the strong, and every bondman and freeman, hid themselves in the caves and in the rocks of the mountains;\nAnd he began to teach them, that the Son of man must suffer many things, and be rejected by the elders, and the chief priests, and the scribes, and be killed, and after three days rise again.\nthou therefore that teachest another, teachest thou not thyself? thou that preachest a man should not steal, dost thou steal?\nHe therefore that supplieth to you the Spirit, and worketh miracles among you, doeth he it by the works of the law, or by the hearing of faith?\nHe looked at the boy and said, Hey.\nAnd why are ye anxious concerning raiment? Consider the lilies of the field, how they grow; they toil not, neither do they spin:\nBear looked at the crowd and waited in silence long enough for them to grow uncomfortable.\nThe future held no hope.\nAnd when they bring you before the synagogues, and the rulers, and the authorities, be not anxious how or what ye shall answer, or what ye shall say:\nfor he was crucified through weakness, yet he liveth through the power of God. For we also are weak in him, but we shall live with him through the power of God toward you.\nI was reading a Washington Irving book about the western prairies by candlelight reflected.\nif you’re a boy, or a young man, dating a girl, it’s kind of funny, you pretend to be brave all the time.\nBefore sunrise three mornings earlier, Lowan had killed a possum with a pouchful of babies. They stewed her and roasted the little ones on sharpened sticks over the fire, and the little ones were hardly a mouthful apiece.\nAnd John was clothed with camel’s hair, and had a leathern girdle about his loins, and did eat locusts and wild honey.\nCharlotte raced up to the top of the doorway.\nand I was afraid, and went away and hid thy talent in the earth: lo, thou hast thine own.\nPerhaps next time you might walk a little farther away from camp to shit.\nGoddamn, he said. There’s nothing to it at all.\nHe was naked and already arranged by the women into fetal compactness.\nOnce just a tiny seed, now you are an apple tree.\nAsmeret points to evidence of trees decomposing into soil.\nAs Wilbur came out of the crate, the crowd clapped and cheered.\nAnd this is his commandment, that we should believe in the name of his Son Jesus Christ, and love one another, even as he gave us commandment.\nAnd Jesus cried and said, He that believeth on me, believeth not on me, but on him that sent me.\nHe mentioned this to the goose, who was sitting quietly in a corner of the sheepfold.\nHe thought I was trying to scare him.\nHaden’s a detestable old sow.\nBlessed is the man that endureth temptation; for when he hath been approved, he shall receive the crown of life, which the Lord promised to them that love him.\nfor the things which are done by them in secret it is a shame even to speak of.\nAnd he said, Abba, Father, all things are possible unto thee; remove this cup from me: howbeit not what I will, but what thou wilt.\nBut he that is joined unto the Lord is one spirit.\nHe ran out of money.”\nIn good time he was to discover that he was mistaken about Charlotte.\nYe hypocrites, well did Isaiah prophesy of you, saying,\nbut in the day that Lot went out from Sodom it rained fire and brimstone from heaven, and destroyed them all:\nShabby as it was, there was almost nothing about the paddleboat and its passage eastward toward the Atlantic that I did not like.\nand be ye kind one to another, tenderhearted, forgiving each other, even as God also in Christ forgave you. \nbeing filled with all unrighteousness, wickedness, covetousness, maliciousness; full of envy, murder, strife, deceit, malignity; whisperers,\nHeaven and earth shall pass away: but my words shall not pass away.\nBut that’s not always the way it happens, even with your head opened up, and I’ll leave it at that without further detail.\nBut thou, O man of God, flee these things; and follow after righteousness, godliness, faith, love, patience, meekness.\nHer death was a sad victory for the people, for Spearfinger had once been one of them.\nWhen Mrs. Arable happened to look up into the starry sky and saw her little daughter sitting with Henry Fussy and going higher and higher into the air, and saw how happy Fern looked, she just shook her head.\nBut if they have not continency, let them marry: for it is better to marry than to burn.\nFor the word of God is living, and active, and sharper than any two-edged sword, and piercing even to the dividing of soul and spirit, of both joints and marrow, and quick to discern the thoughts and intents of the heart.\nBut of a truth I say unto you, There were many widows in Israel in the days of Elijah, when the heaven was shut up three years and six months, when there came a great famine over all the land;\nHe hath blinded their eyes, and he hardened their heart; Lest they should see with their eyes, and perceive with their heart, And should turn, And I should heal them.\nAnd he saith unto them, Are ye so without understanding also? Perceive ye not, that whatsoever from without goeth into the man, it cannot defile him;\nWolf Wears Shoes: Told by Sequoyah Guess  \nAnd while the day was coming on, Paul besought them all to take some food, saying, This day is the fourteenth day that ye wait and continue fasting, having taken nothing.\nThe morning light shone through its ears, turning them pink.\nAnd they gave him a piece of a broiled fish.\nPeter saith unto him, Thou shalt never wash my feet. Jesus answered him, If I wash thee not, thou hast no part with me.\nThe lieutenant did not even bother to get down off his horse but said, That old man won’t live out the winter.\nfor I say unto you, I shall not drink from henceforth of the fruit of the vine, until the kingdom of God shall come.\nand saying, Lord, my servant lieth in the house sick of the palsy, grievously tormented.\nBut when the kindness of God our Saviour, and his love toward man, appeared,\nA wife is bound for so long time as her husband liveth; but if the husband be dead, she is free to be married to whom she will; only in the Lord.\nAnd when the days of their purification according to the law of Moses were fulfilled, they brought him up to Jerusalem, to present him to the Lord\nAnd not a one of them with the vote.\nLittlefish said, Hello Mud Dog.\nThe earth beareth fruit of herself; first the blade, then the ear, then the full grain in the ear.\nJesus therefore said to them again, Peace be unto you: as the Father hath sent me, even so send I you.\nsaying, Father, if thou be willing, remove this cup from me: nevertheless not my will, but thine, be done.\nJesus therefore said unto them, Yet a little while is the light among you. Walk while ye have the light, that darkness overtake you not: and he that walketh in the darkness knoweth not whither he goeth.\nHe stood at the edge of the vast laurel hell, feeling the hard cold that spilled down the slopes so gently it did not even stir the leathery leaves that overlay one another dense as a wall in front of him.\nFor if we sin wilfully after that we have received the knowledge of the truth, there remaineth no more a sacrifice for sins,\nI can make a web in a single evening.”\nI’m shocked that a man of such rank is so misinformed, I said.\nBut Bear had put his hope in a fistful of deeds, and his faith never wavered.\nVI. Summer Days \nFor though we walk in the flesh, we do not war according to the flesh\nas newborn babes, long for the spiritual milk which is without guile, that ye may grow thereby unto salvation;\nFor as yet they knew not the scripture, that he must rise again from the dead.\nwho shall fashion anew the body of our humiliation, that it may be conformed to the body of his glory, according to the working whereby he is able even to subject all things unto himself. \nI qualified the judgment in that way because as a boy I knew a few old Indian warriors who still sported coifs from their youth way back in the previous century, styles that involved plucking half one’s head with mussel-shell tweezers and letting the other half grow long, festooning random braided locks with colored beads and silver fobs and making part or all of the remainder elevate in spikes with the assistance of bear grease.\n“But somebody taught you, didn’t they?”\nLater in the afternoon, the soldier boys squatted on the ground, gambling penny stakes on tic-tac-toe, the grids scratched in the dirt with the point of a knife.\nHe faced the water flowing downstream, closed his eyes, and although he was scared, he decided to swim on.\nAnd even if our gospel is veiled, it is veiled in them that perish:\nThen saith Jesus unto him, Get thee hence, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve.\nFor verily I say unto you, that many prophets and righteous men desired to see the things which ye see, and saw them not; and to hear the things which ye hear, and heard them not.\nBut cheer up, you don't need a web.\nand when he was cast out, Pharaoh’s daughter took him up, and nourished him for her own son.\nFor the Son of man came to seek and to save that which was lost.\nAnd after three months we set sail in a ship of Alexandria which had wintered in the island, whose sign was The Twin Brothers.\nI coveted no man’s silver, or gold, or apparel.\nBut the Spirit saith expressly, that in later times some shall fall away from the faith, giving heed to seducing spirits and doctrines of demons,\nAnd he said unto them, Doubtless ye will say unto me this parable, Physician, heal thyself: whatsoever we have heard done at Capernaum, do also here in thine own country.\nAnd he spread the blanket across the sideboards of the truck so that it was like a little tent.\nMoreover, brethren, we make known to you the grace of God which hath been given in the churches of Macedonia;\nWhen I shall send Artemas unto thee, or Tychicus, give diligence to come unto me to Nicopolis: for there I have determined to winter.\nThe frog jumped and landed in Mrs. Zuckerman’s dishpan full of soapy water.\nand others fell upon the good ground, and yielded fruit, some a hundredfold, some sixty, some thirty.\nAnd behold, a man named Joseph, who was a councillor, a good and righteous man\nAnd whatsoever ye shall ask in my name, that will I do, that the Father may be glorified in the Son.\nNo trouble.\nAnd now, behold, I go bound in the spirit unto Jerusalem, not knowing the things that shall befall me there:\n“Oh, they can’t, can’t they?” murmured Charlotte to herself.\nBut we will do the best we can, and stay until winter is gone.\nHe had other plans, too.\nAnd if a kingdom be divided against itself, that kingdom cannot stand.\nSo also ye, unless ye utter by the tongue speech easy to be understood, how shall it be known what is spoken? for ye will be speaking into the air.\n“Very well,” said Charlotte.\nLet your speech be always with grace, seasoned with salt, that ye may know how ye ought to answer each one.\nFor I had much joy and comfort in thy love, because the hearts of the saints have been refreshed through thee, brother.\nAnd he entered into the synagogue, and spake boldly for the space of three months, reasoning and persuading as to the things concerning the kingdom of God.\nUh, what do they say: ‘like a worm stuck onto me’\nAnd so as I was walking halfway between where I lived and where her place was, halfway there, a long time ago, someone lived there.\nThen cometh the end, when he shall deliver up the kingdom to God, even the Father; when he shall have abolished all rule and all authority and power.\nAnd Jesus went about all the cities and the villages, teaching in their synagogues, and preaching the gospel of the kingdom, and healing all manner of disease and all manner of sickness.\nand there shall in no wise enter into it anything unclean, or he that maketh an abomination and a lie: but only they that are written in the Lamb’s book of life.\nAnd when he had begun to reckon, one was brought unto him, that owed him ten thousand talents.\nHe lay down meekly in the manure, facing the door.\nFor out of the heart come forth evil thoughts, murders, adulteries, fornications, thefts, false witness, railings:\nWho saved Charlotte's life by scaring that Arable boy away with a rotten goose egg?\nFor whosoever shall be ashamed of me and of my words in this adulterous and sinful generation, the Son of man also shall be ashamed of him, when he cometh in the glory of his Father with the holy angels.\n“Yes,” replied the doctor.\nAnd as some spake of the temple, how it was adorned with goodly stones and offerings, he said,\nNow Squirrel saw another shoe.\nHis eyes closed.\nAs for you, let that abide in you which ye heard from the beginning. If that which ye heard from the beginning abide in you, ye also shall abide in the Son, and in the Father.\nO righteous Father, the world knew thee not, but I knew thee; and these knew that thou didst send me;\nThen Peter, filled with the Holy Spirit, said unto them, Ye rulers of the people, and elders,\nThe chickadee knew Spearfinger’s secret – that her heart was not in her chest.  \nAnd he that supplieth seed to the sower and bread for food, shall supply and multiply your seed for sowing, and increase the fruits of your righteousness:\nRain fell on the roof of the barn and dripped steadily from the eaves. Rain fell in the barnyard and ran in crooked courses down into the lane where thistles and pigweed grew.\nNo?\nBut now in Christ Jesus ye that once were far off are made nigh in the blood of Christ.\n“Fern’s father?”\nThe soldiers are riding up and down the river looking for runners.\nThen she’d let go and be lifted into the air and carried upward on the warm wind.”\n“Well,” he thought, “I’ve got a new friend, all right.\nHe was not the light, but came that he might bear witness of the light.\nand they took knowledge of him, that it was he that sat for alms at the Beautiful Gate of the temple; and they were filled with wonder and amazement at that which had happened unto him.\nDr. Dorian, do you believe animals talk?”\nWatch ye, stand fast in the faith, quit you like men, be strong.\nbeing sore troubled because they taught the people, and proclaimed in Jesus the resurrection from the dead.\nbut that the world may know that I love the Father, and as the Father gave me commandment, even so I do. Arise, let us go hence. \nAvery heard nothing but the applause.\nThe chief priests therefore and the Pharisees gathered a council, and said, What do we? for this man doeth many signs.\nFor according to their power, I bear witness, yea and beyond their power, they gave of their own accord,\nFor we must all be made manifest before the judgment-seat of Christ; that each one may receive the things done in the body, according to what he hath done, whether it be good or bad.\nHe saith unto him, Which? And Jesus said, Thou shalt not kill, Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not bear false witness,\nAnd when they were come to Capernaum, they that received the half-shekel came to Peter, and said, Doth not your teacher pay the half-shekel?\nAnd he spake to them many things in parables, saying, Behold, the sower went forth to sow;\nBut he answered and said, Verily I say unto you, I know you not.\nI know, because I have been down there and seen them.\nAnd he called unto him two of the centurions, and said, Make ready two hundred soldiers to go as far as Cæsarea, and horsemen threescore and ten, and spearmen two hundred, at the third hour of the night:\nwhen they now shoot forth, ye see it and know of your own selves that the summer is now nigh.\nMy idea of what an agent of the Indians, a member of a clan, a business chief, ought to wear for meetings with government officials expressed itself fully only on one occasion, my first visit to the office of the secretary of war, where all Indian business began and most of it ended.\nBut these things have I spoken unto you, that when their hour is come, ye may remember them, how that I told you. And these things I said not unto you from the beginning, because I was with you.\nas Sarah obeyed Abraham, calling him lord: whose children ye now are, if ye do well, and are not put in fear by any terror.\nBut the end of all things is at hand: be ye therefore of sound mind, and be sober unto prayer:\nThat’s why Wild Hemp had died back in the last century at the end of the Revolution.\nBut the wisdom that is from above is first pure, then peaceable, gentle, easy to be entreated, full of mercy and good fruits, without variance, without hypocrisy.\nRepent ye; for the kingdom of heaven is at hand.\nBut I write the more boldly unto you in some measure, as putting you again in remembrance, because of the grace that was given me of God,\nIt could very well be near kin to words like cotillion or promenade.\nbut Christ as a son, over his house; whose house are we, if we hold fast our boldness and the glorying of our hope firm unto the end.\nBut know this, that if the master of the house had known in what watch the thief was coming, he would have watched, and would not have suffered his house to be broken through.\nWilbur let the rat eat first.\nThe grace of our Lord Jesus Christ be with you.\n“Good night!” screamed Avery.\nThen, forgetting all about Wilbur’s breakfast, he walked back to the house and called Mr. Zuckerman.\nYea, and for this very cause adding on your part all diligence, in your faith supply virtue; and in your virtue knowledge;\nAnd there came a voice to him, Rise, Peter; kill and eat.\nFor we write no other things unto you, than what ye read or even acknowledge, and I hope ye will acknowledge unto the end:\nMy goodness, I would have starved to death waiting that long.\nOn Sunday morning Mr. and Mrs. Arable and Fern were sitting at breakfast in the kitchen.\nBut the husbandmen, when they saw the son, said among themselves, This is the heir; come, let us kill him, and take his inheritance.\nThe offense was failing to obey a command to pick up some chicken bones littering the ground.\nNow he was tired.\nBut if I was to cull, I’d say, the way the air flows, maybe fore is better than aft.\nThen she summoned all her strength and waved one of her front legs at him.\nFor Jesus himself testified, that a prophet hath no honor in his own country.\nAnd he said unto them, O foolish men, and slow of heart to believe in all that the prophets have spoken!\nAnd since then, all of us spiders have had to work the same trick.\nFor whosoever would save his life shall lose it; but whosoever shall lose his life for my sake, the same shall save it.\nmeekness, self-control; against such there is no law.\nAlmost every morning there was another new lamb in the sheepfold.\nWhat shall we say then? That the Gentiles, who followed not after righteousness, attained to righteousness, even the righteousness which is of faith:\nAnd the king was grieved; but for the sake of his oaths, and of them that sat at meat with him, he commanded it to be given;\n“So is yours!” cried Avery, sailing out again with the frog.\nBut unto each one of us was the grace given according to the measure of the gift of Christ.\nwhereof I was made a minister, according to the dispensation of God which was given me to you-ward, to fulfil the word of God,\nWhat a stink!\nCharley was the color of old polished cherrywood. His face was marked with hard wrinkles, running horizontal on his forehead and vertical on his cheeks and neck, and they were deep enough to lose a handful of river pearls in the folds.\nAnd there went out unto him all the country of Judæa, and all they of Jerusalem; and they were baptized of him in the river Jordan, confessing their sins.\nJesus answered, I told you that I am he; if therefore ye seek me, let these go their way:\nA balloon filled with hot breath.\nWilbur’s heart almost stopped when he saw what was going on.\nAnd he wrote a letter after this form:\nAnd being in an agony he prayed more earnestly; and his sweat became as it were great drops of blood falling down upon the ground.\nHer goal was to be done and gone before the soldiers came.\nBut he said unto him, A certain man made a great supper; and he bade many:\nBut he perceived their craftiness, and said unto them,\nYe are not straitened in us, but ye are straitened in your own affections.\nThem that sin reprove in the sight of all, that the rest also may be in fear.\nIn that day ye shall know that I am in my Father, and ye in me, and I in you.\nThe whole world will hear about you.\nSalute Prisca and Aquila my fellow-workers in Christ Jesus,\nArise and take the young child and his mother, and go into the land of Israel: for they are dead that sought the young child’s life.\nAnd God spake on this wise, that his seed should sojourn in a strange land, and that they should bring them into bondage, and treat them ill, four hundred years.\nTheir sharp hooves left him looking like he’d taken a beating with a war club.\nAnd Peter said, Lo, we have left our own, and followed thee.\nWhosoever doth not bear his own cross, and come after me, cannot be my disciple.\nAnd behold, all the city came out to meet Jesus: and when they saw him, they besought him that he would depart from their borders. \nI did not know what that might mean other than a girl proving to be married when you thought she was not.\nJesus answered and said unto her, If thou knewest the gift of God, and who it is that saith to thee, Give me to drink; thou wouldest have asked of him, and he would have given thee living water.\nand he fell upon the earth, and heard a voice saying unto him, Saul, Saul, why persecutest thou me?\nBut them that are without God judgeth. Put away the wicked man from among yourselves. \nThe morning sun shone through his pink ears.\nYou climbed a ladder to the hayloft.\nand Jesus that is called Justus, who are of the circumcision: these only are my fellow-workers unto the kingdom of God, men that have been a comfort unto me.\nShe has a web across the top of Wilbur’s doorway.\n“He’s very radiant,” said Fern, remembering the day he was born.\nAnd he, fastening his eyes upon him, and being affrighted, said, What is it, Lord? And he said unto him, Thy prayers and thine alms are gone up for a memorial before God.\nand charged them that they should not make him known:\nAnd they shall fall by the edge of the sword, and shall be led captive into all the nations: and Jerusalem shall be trodden down of the Gentiles, until the times of the Gentiles be fulfilled.\nAnd there was also a superscription over him, THIS IS THE KING OF THE JEWS.\nAnd we were in all in the ship two hundred threescore and sixteen souls.\n“How touching!\ncrying out, Men of Israel, help: This is the man that teacheth all men everywhere against the people, and the law, and this place; and moreover he brought Greeks also into the temple, and hath defiled this holy place.\nAnd behold, a certain lawyer stood up and made trial of him, saying, Teacher, what shall I do to inherit eternal life?\nFor though I was free from all men, I brought myself under bondage to all, that I might gain the more.\nMillipede\nFor this cause we also, since the day we heard it, do not cease to pray and make request for you, that ye may be filled with the knowledge of his will in all spiritual wisdom and understanding,\nOne afternoon, when Fern was sitting on her stool, the oldest sheep walked into the barn, and stopped to pay a call on Wilbur.\nAt that season Jesus answered and said, I thank thee, O Father, Lord of heaven and earth, that thou didst hide these things from the wise and understanding, and didst reveal them unto babes:\n“Salutations!” said the voice.\nAll our family have been trappers.\nWere they any good at it?\nBut Saul laid waste the church, entering into every house, and dragging men and women committed them to prison.\nbut the sons of the kingdom shall be cast forth into the outer darkness: there shall be the weeping and the gnashing of teeth.\nOr what woman having ten pieces of silver, if she lose one piece, doth not light a lamp, and sweep the house, and seek diligently until she find it?\nHaving eyes, see ye not? and having ears, hear ye not? and do ye not remember?\nShe simmered them in a black iron pot.\nand as he sowed, some seeds fell by the way side, and the birds came and devoured them:\nThe barn had stalls on the main floor for the work horses, tie-ups on the main floor for the cows, a sheepfold down below for the sheep, a pigpen down below for Wilbur, and it was full of all sorts of things that you find in barns: ladders, grindstones, pitch forks, monkey wrenches, scythes, lawn mowers, snow shovels, ax handles, milk pails, water buckets, empty grain sacks, and rusty rat traps.\nBut I say unto you, I shall not drink henceforth of this fruit of the vine, until that day when I drink it new with you in my Father’s kingdom.\nBut the king was wroth; and he sent his armies, and destroyed those murderers, and burned their city.\nJesus therefore said to those Jews that had believed him, If ye abide in my word, then are ye truly my disciples;\nBut Jesus said, Let her alone; why trouble ye her? she hath wrought a good work on me.\n“But I feel like the end of along day.”\nMake the crate large and paint it green with gold letters! ”\nI searched down long corridors for someone to whom I might present the letter.\nthat he might sanctify it, having cleansed it by the washing of water with the word,\nHe scraped at the words with his penknife and then shook pounce on the bad spot and rubbed it with agate and rewrote the colonel’s sentiments accurately.\nAll things are lawful for me; but not all things are expedient. All things are lawful for me; but I will not be brought under the power of any.\nThe man went away, and told the Jews that it was Jesus who had made him whole.\nHe sailed out through the door, frog and all, and into the sky, frog and all.\n“Charlotte?” he said, in a whisper.\nAbout all the Indian he could have had in him was a half-blood grandmother, but that was enough.\nThe crickets felt it was their duty to warn everybody that summertime cannot last forever.\nAnd he spake also a parable unto them, Can the blind guide the blind? shall they not both fall into a pit?\nFor we have found this man a pestilent fellow, and a mover of insurrections among all the Jews throughout the world, and a ringleader of the sect of the Nazarenes:\nEven at that desperate moment, they knew no altitude was high enough to offer sanctuary or refuge.\npray without ceasing;\nHer mother dusted the sitting room.\nThou gavest me no kiss: but she, since the time I came in, hath not ceased to kiss my feet.\nEveryone in camp still seemed to lie abed, though the sun had been up for nearly an hour.\nsaying, What have we to do with thee, Jesus thou Nazarene? art thou come to destroy us? I know thee who thou art, the Holy One of God.\nAnd Moses indeed was faithful in all his house as a servant, for a testimony of those things which were afterward to be spoken;\nNow lettest thou thy servant depart, Lord, According to thy word, in peace;\nThe Samaritan woman therefore saith unto him, How is it that thou, being a Jew, askest drink of me, who am a Samaritan woman? (For Jews have no dealings with Samaritans.)\nBut Peter, standing up with the eleven, lifted up his voice, and spake forth unto them, saying, Ye men of Judæa, and all ye that dwell at Jerusalem, be this known unto you, and give ear unto my words.\nAnd I saw, and I heard an eagle, flying in mid heaven, saying with a great voice, Woe, woe, woe, for them that dwell on the earth, by reason of the other voices of the trumpet of the three angels, who are yet to sound. \nThere were two shooters for each of the tied men, and it was arranged so that one would aim for the head and the other for the heart.\nLazily he placed his forepaws behind his head and crossed his knees, in an attitude of complete relaxation.\nAnd if thine eye cause thee to stumble, cast it out: it is good for thee to enter into the kingdom of God with one eye, rather than having two eyes to be cast into hell;\nYe shall seek me, and shall not find me: and where I am, ye cannot come.\nAnd as he was yet a coming, the demon dashed him down, and tare him grievously. But Jesus rebuked the unclean spirit, and healed the boy, and gave him back to his father.\nThe warriors saw this and knew it was a sign to aim there.\nAnd they watched him, and sent forth spies, who feigned themselves to be righteous, that they might take hold of his speech, so as to deliver him up to the rule and to the authority of the governor.\nBut I have a baptism to be baptized with; and how am I straitened till it be accomplished!\nThen they suborned men, who said, We have heard him speak blasphemous words against Moses, and against God.\nAnd the maid saw him, and began again to say to them that stood by, This is one of them.\nThe lamp of the body is the eye: if therefore thine eye be single, thy whole body shall be full of light.\nto deliver such a one unto Satan for the destruction of the flesh, that the spirit may be saved in the day of the Lord Jesus.\nAnd now, Lord, look upon their threatenings: and grant unto thy servants to speak thy word with all boldness,\nWhich things contain an allegory: for these women are two covenants; one from mount Sinai, bearing children unto bondage, which is Hagar.\n“It was a nice try.”\nThe geese saw Avery in the crate and cheered.\n“Who is Templeton?” asked Mrs. Arable.\nThese things have I spoken unto you, that ye should not be caused to stumble.\nLets in bugs.\nThen he looked up at the egg sac.\nAnd her neighbors and her kinsfolk heard that the Lord had magnified his mercy towards her; and they rejoiced with her.\nCharley looked at the muskets on the ground and grinned and said, Hey, Will.\nAnd as Paul was about to be brought into the castle, he saith unto the chief captain, May I say something unto thee? And he said, Dost thou know Greek?\nHe that believeth on the Son hath eternal life; but he that obeyeth not the Son shall not see life, but the wrath of God abideth on him. \nand art confident that thou thyself art a guide of the blind, a light of them that are in darkness,\nNow he that planteth and he that watereth are one: but each shall receive his own reward according to his own labor.\nAt this the crowd would yell and cheer.\nHe no longer worried about being killed, for he knew that Mr. Zuckerman would keep him as long as he lived.\nHe leaned over the fire as close as smoking meat, trying to get warmth.\nRejoice in the Lord always: again I will say, Rejoice.\nAs the seasons passed, the boy and the apple tree grew …\nThen she blew her nose.\nFor there must be also factions among you, that they that are approved may be made manifest among you.\nThey therefore that were scattered abroad upon the tribulation that arose about Stephen travelled as far as Phoenicia, and Cyprus, and Antioch, speaking the word to none save only to Jews.\nAnd the third day there was a marriage in Cana of Galilee; and the mother of Jesus was there:\nAnd as he talked with him, he went in, and findeth many come together:\nThe wind bloweth where it will, and thou hearest the voice thereof, but knowest not whence it cometh, and whither it goeth: so is every one that is born of the Spirit.\nApparently I was the biggest spectacle that the suitemates had seen in quite a while.\nFor there was a tabernacle prepared, the first, wherein were the candlestick, and the table, and the showbread; which is called the Holy place.\nThen he left the multitudes, and went into the house: and his disciples came unto him, saying, Explain unto us the parable of the tares of the field.\nNot that any man hath seen the Father, save he that is from God, he hath seen the Father.\nAnd when he had said this, he breathed on them, and saith unto them, Receive ye the Holy Spirit:\nWhen I arrived in Washington and heard the language aloud for the first time, it was a great disappointment to find that I could not understand a lick of it.\nA little maple tree in the swamp heard the cricket song and turned bright red with anxiety.\nAnd as we labored exceedingly with the storm, the next day they began to throw the freight overboard;\n“Tell us.”\nThe driver looked back at her.\nExhort servants to be in subjection to their own masters, and to be well-pleasing to them in all things; not gainsaying;\nMy sheep hear my voice, and I know them, and they follow me:\nAnd as he went, they spread their garments in the way.\nWhen the strong man fully armed guardeth his own court, his goods are in peace:\nI remember we spent the night there a couple of times.\n“Where are you?\nHe opened the blanket and baked for a while.\nMothers and fathers, brothers and sisters left notes around the house so that they could teach each other to read. People took trips so they could have the fun of writing letters and sending them back home.\n“I’m a pig!” cried Avery, tossing handfuls of straw into the air.\nI am the door; by me if any man enter in, he shall be saved, and shall go in and go out, and shall find pasture.\nThe first was their land. It was so difficult and beautiful that nobody wanted it but them. Most of it lay inconveniently vertical.\nbut if I tarry long, that thou mayest know how men ought to behave themselves in the house of God, which is the church of the living God, the pillar and ground of the truth.\nHe noticed that the end of Wilbur’s tail was within reach.\nAnd he sent them to Bethlehem, and said, Go and search out exactly concerning the young child; and when ye have found him, bring me word, that I also may come and worship him.\nBy and by an old woman came hobbling along the trail.  \nAnd I saw, and behold, a white horse, and he that sat thereon had a bow; and there was given unto him a crown: and he came forth conquering, and to conquer.\nThe red fish with the strange fins replied, Hello Littlefish, the people of the mountains call me Crawdaddy.\nI haven’t got your gift for words.\nEverybody is in the plot—- Lurvy, Zuckerman, even John Arable.”\nThe grace of the Lord Jesus be with the saints. Amen.\nLife is always a rich and steady time when you are waiting for something to happen or to hatch.\nFor these things came to pass, that the scripture might be fulfilled, A bone of him shall not be broken.\nHe that hath an ear, let him hear what the Spirit saith to the churches. \nif ye have tasted that the Lord is gracious:\nNobody had seen Templeton.\nAnd when they lead you to judgment, and deliver you up, be not anxious beforehand what ye shall speak: but whatsoever shall be given you in that hour, that speak ye; for it is not ye that speak, but the Holy Spirit.\nAny gesture of accomplishment could stand tall, for it would lack further reference or perspective beyond itself.\nAnd the foolish said unto the wise, Give us of your oil; for our lamps are going out.\nAnd he that sweareth by the heaven, sweareth by the throne of God, and by him that sitteth thereon.\nand had seen that some of his disciples ate their bread with defiled, that is, unwashen, hands.\nAnd no man taketh the honor unto himself, but when he is called of God, even as was Aaron.\n“Edith, you're crazy,” mumbled Zuckerman.\nIt’s going to be simply wonderful next spring in the barn cellar with five hundred and fourteen baby spiders running around all over the place.\nFor John said unto him, It is not lawful for thee to have her.\nHe that is unrighteous, let him do unrighteousness still: and he that is filthy, let him be made filthy still: and he that is righteous, let him do righteousness still: and he that is holy, let him be made holy still.\nNow that the broken egg was buried, the air cleared and the barn smelled good again.\n(Behold, I come as a thief. Blessed is he that watcheth, and keepeth his garments, lest he walk naked, and they see his shame.)\nThere’s not a second to be lost. The people are coming—they’ll be here in no time.\nGive us day by day our daily bread.\nCharley went alone, climbing through hardwoods, their leaves cupped and holding the little bit of grainy snow that had fallen to the ground like salt in a hand.\nAnd the chief priests accused him of many things.\nAnd when Jesus was come into Peter’s house, he saw his wife’s mother lying sick of a fever.\nPaul and Timothy, servants of Christ Jesus, to all the saints in Christ Jesus that are at Philippi, with the bishops and deacons:\nWilbur blushed.\n“Good-bye!” she whispered.\nThe beginning of the gospel of Jesus Christ, the Son of God.\nNeither do men light a lamp, and put it under the bushel, but on the stand; and it shineth unto all that are in the house.\n“Summer is over and gone,” repeated the crickets.\nFor I fear, lest by any means, when I come, I should find you not such as I would, and should myself be found of you such as ye would not; lest by any means there should be strife, jealousy, wraths, factions, backbitings, whisperings, swellings, tumults;\nThe multitude answered, Thou hast a demon: who seeketh to kill thee?\nThese things have I spoken unto you, that my joy may be in you, and that your joy may be made full.\nBut what kind of world would it be if we all took every opportunity presented to us to assault the weak?\nNow that no man is justified by the law before God, is evident: for, The righteous shall live by faith;\nBut whensoever it shall turn to the Lord, the veil is taken away.\nThou wilt say then, Branches were broken off, that I might be grafted in.\nAnd they went through the region of Phrygia and Galatia, having been forbidden of the Holy Spirit to speak the word in Asia;\nNow there is in Jerusalem by the sheep gate a pool, which is called in Hebrew Bethesda, having five porches.\nFor he perceived that for envy the chief priests had delivered him up.\nAs he swam closer still he heard a large fish yell.\nMr. Zuckerman sat down weakly and ate a doughnut.\nFor therein is revealed a righteousness of God from faith unto faith: as it is written, But the righteous shall live by faith.\nThe woman saith unto him, Sir, thou hast nothing to draw with, and the well is deep: whence then hast thou that living water?\nThen understood the disciples that he spake unto them of John the Baptist.\nPerhaps I should also add that with every upward step I feared that when I found them they would kill me and leave me in the deep woods for the wolves to break apart.\nthen let them that are in Judæa flee unto the mountains:\nHe saith unto them, How then doth David in the Spirit call him Lord, saying,\nShow ye therefore unto them in the face of the churches the proof of your love, and of our glorying on your behalf. \n“It’s the buttermilk,” whispered Mrs. Arable to Mrs. Zuckerman.\n“What was my mother’s middle initial?” asked the second spider.\nAnd the devil said unto him, To thee will I give all this authority, and the glory of them: for it hath been delivered unto me; and to whomsoever I will I give it.\nThe peas are always planted first.\nFor though I should glory somewhat abundantly concerning our authority (which the Lord gave for building you up, and not for casting you down), I shall not be put to shame:\n“Henry Fussy,” he mumbled.\nIn that very hour there came certain Pharisees, saying to him, Get thee out, and go hence: for Herod would fain kill thee.\nHe’s not proud and he’s near the ground.”\nIn a few days she would have to drop everything and build the beautiful little sac that would hold her eggs.\nThis was her hour of triumph.\nAnd he said, Lord, I believe. And he worshipped him.\nthat they may train the young women to love their husbands, to love their children,\nthat ye may walk becomingly toward them that are without, and may have need of nothing.\nAnd I heard also a voice saying unto me, Rise, Peter; kill and eat.\nAnd when he was come out from thence, the scribes and the Pharisees began to press upon him vehemently, and to provoke him to speak of many things;\nAnd he asked his father, How long time is it since this hath come unto him? And he said, From a child.\nSmith was barely older than the boys, but he did his best to act confident beyond his years and experience.\nAnd they rehearsed the things that happened in the way, and how he was known of them in the breaking of the bread.\nHe is not here, but is risen: remember how he spake unto you when he was yet in Galilee,\nIt was a perfect piece of designing and building.\nFor many bare false witness against him, and their witness agreed not together.\nWhere are you all going?\n“I’ve always been rather quiet.”\nThe Jews therefore did not believe concerning him, that he had been blind, and had received his sight, until they called the parents of him that had received his sight,\ncircumcised the eighth day, of the stock of Israel, of the tribe of Benjamin, a Hebrew of Hebrews; as touching the law, a Pharisee;\nNow there was there on the mountain side a great herd of swine feeding.\nAnd he went out, and wept bitterly.\n“What kind of an acrobat do you think I am?” said Charlotte in disgust.\nAnd behold, certain of the scribes said within themselves, This man blasphemeth.\nAnd again he denied with an oath, I know not the man.\nFollow after peace with all men, and the sanctification without which no man shall see the Lord:\nFor God called us not for uncleanness, but in sanctification.\nFern had a monkey doll in her arms and was eating Crackerjack.\nshouldest not thou also have had mercy on thy fellow-servant, even as I had mercy on thee?\nShe don’t need your little pasteboard, but I’ll tell her you’re calling.\nThey said therefore unto him, Where is thy Father? Jesus answered, Ye know neither me, nor my Father: if ye knew me, ye would know my Father also.\nTo proclaim the acceptable year of the Lord.\nbecause we are members of his body.\n The barn was very large. It was very old.\nHe looked as if he needed a nap or a drink.\n“Can I have a pig, too, Pop?” asked Avery.\nAnd except those days had been shortened, no flesh would have been saved: but for the elect’s sake those days shall be shortened.\nHe that is faithful in a very little is faithful also in much: and he that is unrighteous in a very little is unrighteous also in much.\nThen goeth he, and taketh to him seven other spirits more evil than himself; and they enter in and dwell there: and the last state of that man becometh worse than the first.\n“None of us like him much.”\nFrankly, sir, I cannot understand our continuing concern with this land and its inhabitants either white or red.\nMarvel not that I said unto thee, Ye must be born anew.\nHe loves Fern almost as much as we do, and I want him to know how queerly she is acting about that pig and everything.\nMy little children, guard yourselves from idols.\nand if we know that he heareth us whatsoever we ask, we know that we have the petitions which we have asked of him.\nSo we walked over to Granville Towers, and when they got there their friend came out the door to meet them.\nOur land was not the Nation, it was America.\n“It’s sunstroke,” said Zuckerman.\nSo that thou art no longer a bondservant, but a son; and if a son, then an heir through God.\nYe adulteresses, know ye not that the friendship of the world is enmity with God? Whosoever therefore would be a friend of the world maketh himself an enemy of God.\nYou people spit on peace.\nThis is a tree that died years ago.\nHe made them epic animals in his story, inhabitants of an old better world not to come round again.\nDid not my hand make all these things?\nLook for oats!\nWhen therefore he was raised from the dead, his disciples remembered that he spake this; and they believed the scripture, and the word which Jesus had said.\nthen shall ye begin to say, We did eat and drink in thy presence, and thou didst teach in our streets;\nNow there were certain Greeks among those that went up to worship at the feast:\nNow Bethany was nigh unto Jerusalem, about fifteen furlongs off;\n“Looks fine,” snapped Mr. Zuckerman, as he and Lurvy set the crate down in front of Wilbur.\nI counsel thee to buy of me gold refined by fire, that thou mayest become rich; and white garments, that thou mayest clothe thyself, and that the shame of thy nakedness be not made manifest; and eyesalve to anoint thine eyes, that thou mayest see.\nFlowers?\nBy faith Isaac blessed Jacob and Esau, even concerning things to come.\nAre all apostles? are all prophets? are all teachers? are all workers of miracles?\nEven as it is written, For thy sake we are killed all the day long; We were accounted as sheep for the slaughter.\nIf then thou countest me a partner, receive him as myself.\nFor they refreshed my spirit and yours: acknowledge ye therefore them that are such.\nYe think all this time that we are excusing ourselves unto you. In the sight of God speak we in Christ. But all things, beloved, are for your edifying.\nThe same dealt craftily with our race, and ill-treated our fathers, that they should cast out their babes to the end they might not live.\nneither to give heed to fables and endless genealogies, which minister questionings, rather than a dispensation of God which is in faith; so do I now.\nAfter a while, I went over and said, Look, son.\nI got started counting, so I kept on—just to keep my mind occupied.”\nand by some, that Elijah had appeared; and by others, that one of the old prophets was risen again.\nAre they not all ministering spirits, sent forth to do service for the sake of them that shall inherit salvation?\nAnd there came a cloud overshadowing them: and there came a voice out of the cloud, This is my beloved Son: hear ye him.\nFrom that time began Jesus to show unto his disciples, that he must go unto Jerusalem, and suffer many things of the elders and chief priests and scribes, and be killed, and the third day be raised up.\nThe rat, surprised out of a sound sleep, looked first dazed then disgusted.\nflies spent their time pestering others.\nYe were running well; who hindered you that ye should not obey the truth?\n“Never mind that—do as I say!\nHe walked to the trough and took a long drink of slops, sucking in the milk hungrily and chewing the popover.\nCharlotte's babies were disappearing at a great rate.\nAnd every priest indeed standeth day by day ministering and offering oftentimes the same sacrifices, the which can never take away sins:\nFrom eight to nine, Wilbur planned to take a nap outdoors in the sun.\nAnd it came to pass, that, when I had returned to Jerusalem, and while I prayed in the temple, I fell into a trance,\nHe backed them down.\nVerily, verily, I say unto thee, We speak that which we know, and bear witness of that which we have seen; and ye receive not our witness.\nAnd another said, I have bought five yoke of oxen, and I go to prove them; I pray thee have me excused.\namidst which they found me purified in the temple, with no crowd, nor yet with tumult: but there were certain Jews from Asia—\nThe board gave way.\nfor as Jonah was three days and three nights in the belly of the whale; so shall the Son of man be three days and three nights in the heart of the earth.\nAs a boy alone in the world, I slept best after the first grey of dawn began rising and dissipating the fear that collected in the dark.\nThey were a band of fugitives living hard and pressed, starving and hopeless, but together in body and purpose.\nAnd when the Lord saw her, he had compassion on her, and said unto her, Weep not.\nAnd to the angel of the church in Smyrna write: These things saith the first and the last, who was dead, and lived again:\nI like high living, and what you say tempts me.”\nLet no man deceive himself. If any man thinketh that he is wise among you in this world, let him become a fool, that he may become wise.\nthat it might be fulfilled which was spoken through Isaiah the prophet, saying,\nNow the passage of the scripture which he was reading was this, He was led as a sheep to the slaughter; And as a lamb before his shearer is dumb, So he openeth not his mouth:\nOne day Charlie and Stephen went out for groceries.\nnot because we have not the right, but to make ourselves an ensample unto you, that ye should imitate us.\nIf any man hath an ear, let him hear.\nThe things which ye both learned and received and heard and saw in me, these things do: and the God of peace shall be with you.\nI think myself happy, king Agrippa, that I am to make my defence before thee this day touching all the things whereof I am accused by the Jews:\nand many of the Jews had come to Martha and Mary, to console them concerning their brother.\n“Yes, I guess I am,” replied Wilbur.\nThey were without exception wild for gambling and would sit up all night in the little salon playing cards and swapping money to and fro among themselves.\nAll of which is to say that for the Government, Chief Ross and the Ridges were unsatisfactory Indians and hard to deal with.\nI don’t understand it, and I don’t like what I can’t understand.”\nthat ye no longer should live the rest of your time in the flesh to the lusts of men, but to the will of God.\nThe women and little children stood together, off to the side, guarded by a pair of young soldiers.\nWhat then? shall we sin, because we are not under law, but under grace? God forbid.\nIt was dark brown and seemed to be covered in mud.\nSimon Peter therefore beckoneth to him, and saith unto him, Tell us who it is of whom he speaketh.\nAnd seeing the multitudes, he went up into the mountain: and when he had sat down, his disciples came unto him:\nnor seeking glory of men, neither from you nor from others, when we might have claimed authority as apostles of Christ.\nWhen she opened her eyes she was looking up into the blue sky and was about to ﬂy back through the door.\nA few, though, resembled actual human beings and seemed shaken and saddened by what they were doing.\nThey chased her through the mountains, and then they dug a pit and trapped her in it.\nMuch more then, being now justified by his blood, shall we be saved from the wrath of God through him.\n“We’re leaving here on the warm updraft.\nFor the invisible things of him since the creation of the world are clearly seen, being perceived through the things that are made, even his everlasting power and divinity; that they may be without excuse:\nAnd when they sought to lay hold on him, they feared the multitudes, because they took him for a prophet. \nSoon was all the Green Man and God and the Black Rider had said.\nAnd it came to pass, on the next day, when they were come down from the mountain, a great multitude met him.\nAnd they feared exceedingly, and said one to another, Who then is this, that even the wind and the sea obey him?\nfor all have sinned, and fall short of the glory of God;\n“What finally happened?” asked her mother, whose curiosity began to get the better of her.\nNeither the seven loaves of the four thousand, and how many baskets ye took up?\nAnd other fell on the rock; and as soon as it grew, it withered away, because it had no moisture.\nThis is the disciple that beareth witness of these things, and wrote these things: and we know that his witness is true.\nI was met on deck by a little lean purser even younger than myself.\n“But I want you in bed again without delay.”\nMr. Zuckerman was the most pleased of all.\nAnd there came one of the seven angels that had the seven bowls, and spake with me, saying, Come hither, I will show thee the judgment of the great harlot that sitteth upon many waters;\nBut God said unto him, Thou foolish one, this night is thy soul required of thee; and the things which thou hast prepared, whose shall they be?\nHe did not know it, but his friend was very near.\neven as it is right for me to be thus minded on behalf of you all, because I have you in my heart, inasmuch as, both in my bonds and in the defence and confirmation of the gospel, ye all are partakers with me of grace.\nHe answered and said, And who is he, Lord, that I may believe on him?\nAnd they were in all about twelve men.\nBut the cold seeped through the weave of his clothing and chilled him deep in his joints.\nAnd when he had removed him, he raised up David to be their king; to whom also he bare witness and said, I have found David the son of Jesse, a man after my heart, who shall do all my will.\nOver in the pigpen, silent and alone, Charlotte rested. Her two front legs embraced the egg sac. Charlotte could hear everything that was said on the loud speaker.\nFern and Avery were standing in the body of the truck hanging on to the sideboards.\nAnd one of the multitude answered him, Teacher, I brought unto thee my son, who hath a dumb spirit;\n“Furthermore, each leg of mine has seven sections -— the coxa, the trochanter, the Fernur, the patella, the tibia, the metatarsus, and the tarsus.”\nThere was no precedent for hunting your own people like game.\nThen one of the cows told one of the sheep, and soon all the sheep knew.\nThe geese cheered.\nCharley’s people went back into the shelters and talked among themselves, and then Charley and Lowan and Jake came and squatted by the fire.\nfor thus shall be richly supplied unto you the entrance into the eternal kingdom of our Lord and Saviour Jesus Christ.\na corrector of the foolish, a teacher of babes, having in the law the form of knowledge and of the truth;\nMy defence to them that examine me is this.\n“You lack a set of spinnerets, and you lack know-how.\nwhile we look not at the things which are seen, but at the things which are not seen: for the things which are seen are temporal; but the things which are not seen are eternal. \nI do not play when there are eggs to hatch.\nNobody said a word.\nFinally then, brethren, we beseech and exhort you in the Lord Jesus, that, as ye received of us how ye ought to walk and to please God, even as ye do walk,—that ye abound more and more.\nWhat kind of day is it? she thought.\nAnd they said unto him, Where wilt thou that we make ready?\nAnd I heard the altar saying, Yea, O Lord God, the Almighty, true and righteous are thy judgments.\nIt smelled of the perspiration of tired horses and the wonderful sweet breath of patient cows.\nso that ye may approve the things that are excellent; that ye may be sincere and void of offence unto the day of Christ;\nAll the people of the town.\nHe began to fall and sway.\nAnd they offered him wine mingled with myrrh: but he received it not.\nSo then, brethren, stand fast, and hold the traditions which ye were taught, whether by word, or by epistle of ours.\nAnd when he heard concerning Jesus, he sent unto him elders of the Jews, asking him that he would come and save his servant.\nBut this multitude that knoweth not the law are accursed.\nMrs. Arable gave him a feeding around noontime each day, when Fern was away in school.\nand the base things of the world, and the things that are despised, did God choose, yea and the things that are not, that he might bring to nought the things that are:\nI'm just about average for a pig.”\nBut there were some of them, men of Cyprus and Cyrene, who, when they were come to Antioch, spake unto the Greeks also, preaching the Lord Jesus.\nNo answer.\nAnd there were also women beholding from afar: among whom were both Mary Magdalene, and Mary the mother of James the less and of Joses, and Salome;\nThat which I speak, I speak not after the Lord, but as in foolishness, in this confidence of glorying.\nCalhoun said it was without a doubt the nastiest-sounding tongue practiced by any known people on the round globe and he himself spoke a very little of it, only what he could remember from his classes at Yale many years ago.\nBut I counted it necessary to send to you Epaphroditus, my brother and fellow-worker and fellow-soldier, and your messenger and minister to my need;\nBut fornication, and all uncleanness, or covetousness, let it not even be named among you, as becometh saints;\n“Yes, indeed,” replied Templeton, who saved string.\nAnd now I commend you to God, and to the word of his grace, which is able to build you up, and to give you the inheritance among all them that are sanctified.\nHowbeit the firm foundation of God standeth, having this seal, The Lord knoweth them that are his: and, Let every one that nameth the name of the Lord depart from unrighteousness.\nyet knowing that a man is not justified by the works of the law but through faith in Jesus Christ, even we believed on Christ Jesus, that we might be justified by faith in Christ, and not by the works of the law: because by the works of the law shall no flesh be justified.\nThe boy said he could smell squirrels, especially on damp days.\n“I’ve heard funnier ones, though.\nAnd Jesus said, Father, forgive them; for they know not what they do. And parting his garments among them, they cast lots.\nBack on the Nation, Chief Ross fumed and litigated on against America and, of course, denied the legitimacy of the Ridge agreement, rightfully pointing out that the Ridges had no authority to sell even an acre of Nation land to a non-Indian and had in fact committed a capital crime in doing so.\nBeloved, imitate not that which is evil, but that which is good. He that doeth good is of God: he that doeth evil hath not seen God.\nAnd if I bestow all my goods to feed the poor, and if I give my body to be burned, but have not love, it profiteth me nothing.\nRepent therefore of this thy wickedness, and pray the Lord, if perhaps the thought of thy heart shall be forgiven thee.\n“You ought to be ashamed of yourself,” said Charlotte in disgust.\nPaul, called to be an apostle of Jesus Christ through the will of God, and Sosthenes our brother,\nMr. Arable kissed Mrs. Arable.\nfor he beholdeth himself, and goeth away, and straightway forgetteth what manner of man he was.\n“Three of us are staying.\nHave peace.\nWhat we had before us were two bad choices.\nBut woe unto them that are with child and to them that give suck in those days!\nfor her sins have reached even unto heaven, and God hath remembered her iniquities.\nhow I shrank not from declaring unto you anything that was profitable, and teaching you publicly, and from house to house,\nor ministry, let us give ourselves to our ministry; or he that teacheth, to his teaching;\nAnd a certain one of them smote the servant of the high priest, and struck off his right ear.\n“That’s a fine spider and I’m going to capture it,” said Avery.\nAnd he said unto him, What is written in the law? how readest thou?\nAnd they come to Jerusalem: and he entered into the temple, and began to cast out them that sold and them that bought in the temple, and overthrew the tables of the money-changers, and the seats of them that sold the doves;\n“You can’t all go.\nPerry said, Every single time I try to cook chickens they end up with the feet burnt to charcoal and the thighs bleeding raw, and hardly any of it what you’d properly call done.\nto whom they all gave heed, from the least to the greatest, saying, This man is that power of God which is called Great.\nthat aged men be temperate, grave, sober-minded, sound in faith, in love, in patience:\nFor Herod himself had sent forth and laid hold upon John, and bound him in prison for the sake of Herodias, his brother Philip’s wife; for he had married her.\nGo ye, and stand and speak in the temple to the people all the words of this Life.\nWhile I was with them, I kept them in thy name which thou hast given me: and I guarded them, and not one of them perished, but the son of perdition; that the scripture might be fulfilled.\nThen Wilbur looked more closely.\nand that he appeared to Cephas; then to the twelve;\nin all things showing thyself an ensample of good works; in thy doctrine showing uncorruptness, gravity,\n“Hoorray. yelled the crowd.\nThe Revelation of Jesus Christ, which God gave him to show unto his servants, even the things which must shortly come to pass: and he sent and signified it by his angel unto his servant John;\nNot an issue if I get the killers.\nif so be that it is a righteous thing with God to recompense affliction to them that afflict you,\nBut forasmuch as he had not wherewith to pay, his lord commanded him to be sold, and his wife, and children, and all that he had, and payment to be made.\nA weeding hoe, a shovel plow, a short-handled axe.\nYe call me, Teacher, and, Lord: and ye say well; for so I am.\nThe Pharisees therefore said unto him, Thou bearest witness of thyself; thy witness is not true.\nThat kind of thing, you can’t get away with it anymore.\nand ye have forgotten the exhortation which reasoneth with you as with sons, My son, regard not lightly the chastening of the Lord, Nor faint when thou art reproved of him;\nNeither murmur ye, as some of them murmured, and perished by the destroyer.\n“Edith,” he said, trying to keep his voice steady, “I think you had best be told that we have a very unusual pig.”\nFor perhaps he was therefore parted from thee for a season, that thou shouldest have him for ever;\nAnd it came to pass in those days, that she fell sick, and died: and when they had washed her, they laid her in an upper chamber.\nFor I also am a man under authority, having under myself soldiers: and I say to this one, Go, and he goeth; and to another, Come, and he cometh; and to my servant, Do this, and he doeth it.\nNo more boundary lines.\nBut the rat was in no hurry.\nBut if any man buildeth on the foundation gold, silver, costly stones, wood, hay, stubble;\nwithal praying for us also, that God may open unto us a door for the word, to speak the mystery of Christ, for which I am also in bonds;\nBut she was greatly troubled at the saying, and cast in her mind what manner of salutation this might be.\nand to esteem them exceeding highly in love for their work’s sake. Be at peace among yourselves.\nAnd his affection is more abundantly toward you, while he remembereth the obedience of you all, how with fear and trembling ye received him.\nAnd there were the deeds Bear and I held to the land we occupied.\nto the one a savor from death unto death; to the other a savor from life unto life. And who is sufficient for these things?\nIt was considerably more difficult to arrange a meeting with Crockett than with the president.\nPeter therefore seeing him saith to Jesus, Lord, and what shall this man do?\n“Just once more—please!  said Charlotte.\nAnd he spake a parable unto them to the end that they ought always to pray, and not to faint;\nAnd if the firstfruit is holy, so is the lump: and if the root is holy, so are the branches.\nFor the children, one little leg apiece like upside-down water drops of meat. Small split breasts and bony backs for everyone else.\nConcerning this thing I besought the Lord thrice, that it might depart from me.\nFor though there be that are called gods, whether in heaven or on earth; as there are gods many, and lords many;\nThen another baby spider crawled to the top of the fence, stood on its head, made a balloon, and sailed away.\nAnd death and Hades were cast into the lake of fire. This is the second death, even the lake of fire.\nJesus saw Nathanael coming to him, and saith of him, Behold, an Israelite indeed, in whom is no guile!\nFor we are God’s fellow-workers: ye are God’s husbandry, God’s building.\nNow when they heard these things, they were cut to the heart, and they gnashed on him with their teeth.\nThere are many who can make new selves at a moment’s notice.\nAnd Simon answered and said, Master, we toiled all night, and took nothing: but at thy word I will let down the nets.\nHe swayed and toppled and landed on the edge of Wilbur’s trough.\nHunted like animals in your own country.\nBut ye, brethren, be not weary in well-doing.\nnor filthiness, nor foolish talking, or jesting, which are not befitting: but rather giving of thanks.\nThe air carried the smell of the river and the mudflats.\nand be found in him, not having a righteousness of mine own, even that which is of the law, but that which is through faith in Christ, the righteousness which is from God by faith:\nThen they also that are fallen asleep in Christ have perished.\nIn a ﬂash he was back on his feet.\nBut at the last moment of Bear Drowning Him’s strength, the bear died.\nthey gave him wine to drink mingled with gall: and when he had tasted it, he would not drink.\nand they that were troubled with unclean spirits were healed.\n“Very good!” said Charlotte.\nLet the elders that rule well be counted worthy of double honor, especially those who labor in the word and in teaching.\nAnd he called unto him his twelve disciples, and gave them authority over unclean spirits, to cast them out, and to heal all manner of disease and all manner of sickness.\nHis fatigue made him look every bit as young as he was, maybe younger, and I remembered that he was so fresh out of school he still remembered how to read a little bit of Greek.\nHe stood perfectly still and tried to look his best.\nFern chuckled softly, and her eyes grew wide with love for the pig.\nAnd he asked him, What is thy name? And he saith unto him, My name is Legion; for we are many.\nAnd the shepherds returned, glorifying and praising God for all the things that they had heard and seen, even as it was spoken unto them.\nbut the wise took oil in their vessels with their lamps.\nWet day, Smith said.\nBless them that persecute you; bless, and curse not.\nA rat can creep out late at night and have a feast.\nJesus answered and said unto them, This is the work of God, that ye believe on him whom he hath sent.\nIt might have seemed strange to me that these hapless boys should form the sharp edge of national policy, had I not moved among the men who made that policy.\nBut the angel said unto him, Fear not, Zacharias: because thy supplication is heard, and thy wife Elisabeth shall bear thee a son, and thou shalt call his name John.\nFor what have I to do with judging them that are without? Do not ye judge them that are within?\nFor as many as are led by the Spirit of God, these are sons of God.\nThe cows stayed in the barn all the time now, except on sunny mornings when they went out and stood in the barnyard in the lee of the straw pile.\nShe knew she didn’t have much time.\nkeep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life.\nAnd he sendeth two of his disciples, and saith unto them, Go into the city, and there shall meet you a man bearing a pitcher of water: follow him;\nSuddenly a voice was heard on the loud speaker.\nAnd he said, I pray thee therefore, father, that thou wouldest send him to my father’s house;\nA special award will be made there in twenty minutes.\nIf I told you earthly things and ye believe not, how shall ye believe if I tell you heavenly things?\nAfter these things I saw, and behold, a great multitude, which no man could number, out of every nation and of all tribes and peoples and tongues, standing before the throne and before the Lamb, arrayed in white robes, and palms in their hands;\nWilbur could see the goose a few feet away.\nBut Jesus knowing in himself that his disciples murmured at this, said unto them, Doth this cause you to stumble?\nAnd may the good Lord forgive me for this foolishness.”\n“Yes, I understand,” said Wilbur.\nThey answered and said unto him, Thou wast altogether born in sins, and dost thou teach us? And they cast him out.\n“I don’t want to die!\nAnd as they were coming down from the mountain, he charged them that they should tell no man what things they had seen, save when the Son of man should have risen again from the dead.\nIf you can’t get drunk when your entire world comes crashing down around your feet, why did God make alcohol to begin with?\nand Judah begat Perez and Zerah of Tamar; and Perez begat Hezron; and Hezron begat Ram;\nas also in all his epistles, speaking in them of these things; wherein are some things hard to be understood, which the ignorant and unstedfast wrest, as they do also the other scriptures, unto their own destruction.\nAnd I heard as it were the voice of a great multitude, and as the voice of many waters, and as the voice of mighty thunders, saying, Hallelujah: for the Lord our God, the Almighty, reigneth.\nCharley stopped and turned back around and saw a motionless square shape, a dark interruption in the luminous fog.\nChildren, obey your parents in the Lord: for this is right.\nfor they poured out the blood of saints and prophets, and blood hast thou given them to drink: they are worthy.\nConfess therefore your sins one to another, and pray one for another, that ye may be healed. The supplication of a righteous man availeth much in its working.\nAnd many believed on him there. \nAnd when they were come to him, he said unto them, Ye yourselves know, from the first day that I set foot in Asia, after what manner I was with you all the time,\n“It means nobody will be able to live here on account of the smell.\n“You needn't feel too badly, Wilbur,” she said.\nbut the heavens that now are, and the earth, by the same word have been stored up for fire, being reserved against the day of judgment and destruction of ungodly men.\nAnd all flesh shall see the salvation of God.\nFor men swear by the greater: and in every dispute of theirs the oath is final for confirmation.\nThe barn was still dark.\nSmoky and strange.\nFor I shrank not from declaring unto you the whole counsel of God.\n“Just in time for a piece of blueberry pie,” said Mrs. Zuckerman.\nThe neighbors therefore, and they that saw him aforetime, that he was a beggar, said, Is not this he that sat and begged?\nHumble yourselves therefore under the mighty hand of God, that he may exalt you in due time;\nBut we received, not the spirit of the world, but the spirit which is from God; that we might know the things that were freely given to us of God.\nHeaven and earth shall pass away: but my words shall not pass away.\nThis was the greatest moment in Mr. Zuckerman’s life.\nThe day was bright and blue, but at the far end of the stockade I was shown into a room with the shutters pulled, a square of space dim as evening.\nAnd of the angels he saith, Who maketh his angels winds, And his ministers a flame of fire:\nBut at some point, he said, it was just a job.\nopening and alleging that it behooved the Christ to suffer, and to rise again from the dead; and that this Jesus, whom, said he, I proclaim unto you, is the Christ.\nIn the cool of the evening, when shadows darkened the Fair Grounds, Templeton crept from the crate and looked around.\nAlso a newspaper, The Phoenix, printed in the syllabary. All situated in the capital city of New Echota, which was platted out and in progress of construction.\nI thank him that enabled me, even Christ Jesus our Lord, for that he counted me faithful, appointing me to his service;\nNow it was not written for his sake alone, that it was reckoned unto him;\nI. Before Breakfast  \nAnd for this cause we also thank God without ceasing, that, when ye received from us the word of the message, even the word of God, ye accepted it not as the word of men, but, as it is in truth, the word of God, which also worketh in you that believe.\nSummer was half gone.\nAnd as concerning that he raised him up from the dead, now no more to return to corruption, he hath spoken on this wise, I will give you the holy and sure blessings of David.\nMr. Zuckerman and Lurvy and Fern and Avery rode in back, hanging onto the sideboards.\nBut she paid no attention to him.\nRejoice in that day, and leap for joy: for behold, your reward is great in heaven; for in the same manner did their fathers unto the prophets.\nBut when the apostles, Barnabas and Paul, heard of it, they rent their garments, and sprang forth among the multitude, crying out\nBe ye merciful, even as your Father is merciful.\nthe son of Jacob, the son of Isaac, the son of Abraham, the son of Terah, the son of Nahor,\nthrough whom we received grace and apostleship, unto obedience of faith among all the nations, for his name’s sake;\nPeter therefore was kept in the prison: but prayer was made earnestly of the church unto God for him.\nAnd the report concerning them came to the ears of the church which was in Jerusalem: and they sent forth Barnabas as far as Antioch:\nof whom do thou also beware; for he greatly withstood our words.\nHe planned to leave half a noodle and a few drops of milk for Templeton.\nBrethren, be not children in mind: yet in malice be ye babes, but in mind be men.\nand a certain beggar named Lazarus was laid at his gate, full of sores,\nVast caravans of Indians and slaves, accompanied by soldiers and missionaries, emptying the old Nation and filling the new one.\nAnd when she hath found it, she calleth together her friends and neighbors, saying, Rejoice with me, for I have found the piece which I had lost.\nand as they were eating, he said, Verily I say unto you, that one of you shall betray me.\nClaire rode away as the condemned ride the final cart to the gallows.\n“Templeton!” screamed Wilbur.\nEven so ought husbands also to love their own wives as their own bodies. He that loveth his own wife loveth himself:\nNow after John was delivered up, Jesus came into Galilee, preaching the gospel of God,\nAnd a second time they say, Hallelujah. And her smoke goeth up for ever and ever.\nAnd he said unto them, Go ye into all the world, and preach the gospel to the whole creation.\n“There's never anything to do around here,” he thought.\nBesides, it wouldn’t make any sense for you to stay.\nbut he, when he had offered one sacrifice for sins for ever, sat down on the right hand of God;\nSettle it therefore in your hearts, not to meditate beforehand how to answer:\nAnd I fell down before his feet to worship him. And he saith unto me, See thou do it not: I am a fellow-servant with thee and with thy brethren that hold the testimony of Jesus: worship God: for the testimony of Jesus is the spirit of prophecy.\nMercy unto you and peace and love be multiplied.\nAnd let the prophets speak by two or three, and let the others discern.\nFor in Christ Jesus neither circumcision availeth anything, nor uncircumcision; but faith working through love.\nAnd he said unto another, Follow me. But he said, Lord, suffer me first to go and bury my father.\nYe are witnesses of these things.\n“Time for us to go home,” he said to the pig.\nBut when Jesus saw the reasoning of their heart, he took a little child, and set him by his side,\nShe knew that they were in a desperately cramped position inside the shell and were most anxious to break through and get out.\nDestruction and misery are in their ways;\nBelieve me that I am in the Father, and the Father in me: or else believe me for the very works’ sake.\nAnd the more I thought about it and imagined their conversation, the more disturbed I became.\nA bad sign.\nCount it all joy, my brethren, when ye fall into manifold temptations;\nOn a lonesome journey into the mountains, he had seen black riders come across the sky on their mounts and light to rest on a high peak, Tusquitte Bald to be exact.\nAnd he charged them that they should tell no man: but the more he charged them, so much the more a great deal they published it.\nThen it did something that came as a great surprise to Wilbur.\nWhen he looked up, they were all gone\nSo the last shall be first, and the first last.\nAnd he said, That which proceedeth out of the man, that defileth the man.\nnot giving heed to Jewish fables, and commandments of men who turn away from the truth.\nThe nutrients that were in the leaves are now in the soil.\nBut Peter said, Man, I know not what thou sayest. And immediately, while he yet spake, the cock crew.\n“You’ll be sorry-sorry-sorry,” called the goose.\nFrom nine to eleven he planned to dig a hole, or trench, and possibly find something good to eat buried in the dirt.\nA young spider knows how to spin a web without any instructions from anybody.\nNow this is come to pass, that it might be fulfilled which was spoken through the prophet, saying,\n“Don’t yell, Fern!” she said. “Your father is right. The pig would probably die anyway.”\n“Every time Lurvy slops him, the food runs down around the ears.\nLet every soul be in subjection to the higher powers: for there is no power but of God; and the powers that be are ordained of God.\nHowbeit with most of them God was not well pleased: for they were overthrown in the wilderness.\nThe elders therefore among you I exhort, who am a fellow-elder, and a witness of the sufferings of Christ, who am also a partaker of the glory that shall be revealed:\ngiving diligence to keep the unity of the Spirit in the bond of peace.\nyet to us there is one God, the Father, of whom are all things, and we unto him; and one Lord, Jesus Christ, through whom are all things, and we through him.\none God and Father of all, who is over all, and through all, and in all.\nThe world cannot hate you; but me it hateth, because I testify of it, that its works are evil.\nthat I may not seem as if I would terrify you by my letters.\nThey didn’t ask for it, she brought it.\nLurvy!\nSo then he hath mercy on whom he will, and whom he will he hardeneth.\nand shall deliver him unto the Gentiles to mock, and to scourge, and to crucify: and the third day he shall be raised up.\nIn like manner also the chief priests mocking him, with the scribes and elders, said,\nYea and on my servants and on my handmaidens in those days Will I pour forth of my Spirit; and they shall prophesy.\nFor we know that if the earthly house of our tabernacle be dissolved, we have a building from God, a house not made with hands, eternal, in the heavens.\nFor these are not drunken, as ye suppose; seeing it is but the third hour of the day;\nand wheresoever he shall enter in, say to the master of the house, The Teacher saith, Where is my guest-chamber, where I shall eat the passover with my disciples?\nRich soil has lots of nutrients.\nHis hair was going grey and he wore it blunt-cut below his ears where his wife, Nancy, trimmed it monthly by gathering up the excess at the back of his neck in her fist and lopping it off with one swipe of a skinning knife.\nAnd he cometh unto the disciples, and findeth them sleeping, and saith unto Peter, What, could ye not watch with me one hour?\nHe’s a dirt farmer.\nAnd when it was evening he cometh with the twelve.\nHe had plowed up quite a piece of ground before anyone noticed him. Mrs. Zuckerman was the first to see him.\nThey went to the storage house.\nwho moreover assayed to profane the temple: on whom also we laid hold: \nAnd the rest of the Jews dissembled likewise with him; insomuch that even Barnabas was carried away with their dissimulation.\nHe stopped and got down on his knees and dug in the black ground with a stick and then with the tines of his stubby and spatulate fingers, the knuckles swollen like galls in a blackberry cane.\nAnd Judas Iscariot, he that was one of the twelve, went away unto the chief priests, that he might deliver him unto them.\nHe that is a hireling, and not a shepherd, whose own the sheep are not, beholdeth the wolf coming, and leaveth the sheep, and fleeth, and the wolf snatcheth them, and scattereth them:\nHe glanced at Fern, then crept cautiously toward the goose, keeping close to the wall.\nMrs. Zuckerman wiped her eyes with her handkerchief.\nSo mightily grew the word of the Lord and prevailed.\nhim, being delivered up by the determinate counsel and foreknowledge of God, ye by the hand of lawless men did crucify and slay:\nAfter these things Jesus manifested himself again to the disciples at the sea of Tiberias; and he manifested himself on this wise.\nHe hasn’t touched his food.”\nHe regretted fighting against other Indians, even though the Creeks had been enemies of the Cherokee long before the first whiteman erupted into the world.\nThe door opened, and our neighbor got in and closed the door behind him.\nAnd as he said these things, all his adversaries were put to shame: and all the multitude rejoiced for all the glorious things that were done by him.\nI suppose it was true, because a few days later he died.\nAnd Havana cigars wrapped carefully in oilcloth.\nBut he said unto them, I must preach the good tidings of the kingdom of God to the other cities also: for therefore was I sent.\nand brought them out and said, Sirs, what must I do to be saved?\n“Well, I’m sort of sedentary myself, I guess,” said the pig.\nI wore a silk turban in the style recently adopted by many of the eastern Indians for occasions of high seriousness.\nThe boys were cooking a supper of potatoes and bacon and cabbage, a grey mess that was just rising to a boil in a pot hanging from an iron tripod.\nFor if that which passeth away was with glory, much more that which remaineth is in glory.\nThis is a tree that died many years ago.\nWolf walked along and moaned in agony.\n“Means I sit still a good part of the time and don’t go wandering all over creation.\nMrs. Chapman claimed to have handmade them herself.\nAnd many other things spake they against him, reviling him.\nIt wasn't a shoe.\nAnd when they found him on the other side of the sea, they said unto him, Rabbi, when camest thou hither?\nfor it is God who worketh in you both to will and to work, for his good pleasure.\nAnd they went forth from thence, and passed through Galilee; and he would not that any man should know it.\n“But Charlotte,” said Wilbur, “I’m not terrific.”\nTired from his romp, Wilbur lay down in the clean straw.\nNot a broken bird in my limbs.\nand ye are Christ’s; and Christ is God’s. \nThen she opened the lid again, lifted the pig out, and held it against her cheek.\nA quarter century after this bloody moment memorialized on the ground, I, as a middle-aged man, engaged personally in more than a few skirmishes, and I found them to be desperate and ugly encounters, gunfire spluttering in pulses, men yelling curses, brief confused silences between outbursts.\nShe stands on her head, lets out a lot of line, and is carried aloft on the wind.\nYou’re not the first young man ever to do so.\nHe awoke at six and saw the rain, and it seemed as though he couldn’t bear it.\n“Well, you're a good little pig, and radiant you shall be.\n“What?\nBut to whom ye forgive anything, I forgive also: for what I also have forgiven, if I have forgiven anything, for your sakes have I forgiven it in the presence of Christ;\nThen were gathered together the chief priests, and the elders of the people, unto the court of the high priest, who was called Caiaphas;\nIt was a single long piece of heavy rope tied to the beam over the north doorway.\nLurvy nailed some boards across the end, so Wilbur couldn't back out.\n“Now for the E!”\n“Charlotte,” said Wilbur.\nCold coffee and cream skinned over in a cup.\nAnd they of the circumcision that believed were amazed, as many as came with Peter, because that on the Gentiles also was poured out the gift of the Holy Spirit.\nThen I came into the regions of Syria and Cilicia.\nand the salutations in the marketplaces, and to be called of men, Rabbi.\nHer hands out at waist level, palms forward, to touch doorframes, table corners, chair arms, crates of packed china, trunks of clothing.\nbut they only heard say, He that once persecuted us now preacheth the faith of which he once made havoc;\nBut the witness which I have is greater than that of John; for the works which the Father hath given me to accomplish, the very works that I do, bear witness of me, that the Father hath sent me.\n“If you have a new friend here, you are probably disturbing his rest;  and the quickest way to spoil a friendship is to wake somebody up in the morning before he is ready.\nFor which cause I suffer also these things: yet I am not ashamed; for I know him whom I have believed, and I am persuaded that he is able to guard that which I have committed unto him against that day.\nThe sheep moved off down the lane, the gander waddled along behind them, pulling grass.\nWhen he heard that the price was only six dollars, he said he would buy the pig.\nThe crate was green.\nThe larger fish always bossed him around.\nthat he would grant you, according to the riches of his glory, that ye may be strengthened with power through his Spirit in the inward man;\nand James the son of Zebedee, and John the brother of James; and them he surnamed Boanerges, which is, Sons of thunder:\nO foolish Galatians, who did bewitch you, before whose eyes Jesus Christ was openly set forth crucified?\nYou will live to enjoy the beauty of the frozen world, for you mean a great deal to Zuckerman and he will not harm you, ever.\nwho also said, Ye men of Galilee, why stand ye looking into heaven? this Jesus, who was received up from you into heaven, shall so come in like manner as ye beheld him going into heaven.\nAnd it came to pass on the morrow, that their rulers and elders and scribes were gathered together in Jerusalem;\nBut she found that the barn was not nearly as pleasant — too many people.\nknowing this first, that no prophecy of scripture is of private interpretation.\nHe went by the name of Dull Hoe and sometimes John.\nthat the blood of all the prophets, which was shed from the foundation of the world, may be required of this generation;\nIf David then calleth him Lord, how is he his son?\nAnd the Father that sent me, he hath borne witness of me. Ye have neither heard his voice at any time, nor seen his form.\nHe crawled into the tunnel and disappeared from sight, completely covered with straw.\nNow when he heard that John was delivered up, he withdrew into Galilee;\n“Oh, good!” said Wilbur.\nthe son of Serug, the son of Reu, the son of Peleg, the son of Eber, the son of Shelah,\nBut on the morrow, desiring to know the certainty wherefore he was accused of the Jews, he loosed him, and commanded the chief priests and all the council to come together, and brought Paul down and set him before them. \nSo Smith squatted on the ground with the other soldiers and refilled his pipe and smoked.\nHe looked up at me from his puffing and said, You’re the lawyer?\nThis mystery is great: but I speak in regard of Christ and of the church.\nMany other signs therefore did Jesus in the presence of the disciples, which are not written in this book:\nFor nation shall rise against nation, and kingdom against kingdom; there shall be earthquakes in divers places; there shall be famines: these things are the beginning of travail.\nThey’ve emptied out.\nand said, O full of all guile and all villany, thou son of the devil, thou enemy of all righteousness, wilt thou not cease to pervert the right ways of the Lord?\nBut the man from whom the demons were gone out prayed him that he might be with him: but he sent him away, saying,\nThe woman came back to the door and said Claire was not receiving visitors.\nCharlotte stood quietly over the ﬂy, preparing to eat it.\nI beseech you, brethren, become as I am, for I also am become as ye are. Ye did me no wrong:\nSeeing it is God, that said, Light shall shine out of darkness, who shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ.\nOf his own will he brought us forth by the word of truth, that we should be a kind of firstfruits of his creatures.\nThese words spake he in the treasury, as he taught in the temple: and no man took him; because his hour was not yet come.\nAnd judge not, and ye shall not be judged: and condemn not, and ye shall not be condemned: release, and ye shall be released:\nBrethren, even if a man be overtaken in any trespass, ye who are spiritual, restore such a one in a spirit of gentleness; looking to thyself, lest thou also be tempted.\nThen you would zoom upward into the sky, and look up at the clouds, and the rope would twist and you would twist and turn with the rope.\nAnd when neither sun nor stars shone upon us for many days, and no small tempest lay on us, all hope that we should be saved was now taken away.\nLurvy went to shave and put on his plaid shirt and his purple necktie.\n“Certainly not,” said Charlotte.\nfor bodily exercise is profitable for a little; but godliness is profitable for all things, having promise of the life which now is, and of that which is to come.\n(howbeit there came boats from Tiberias nigh unto the place where they ate the bread after the Lord had given thanks):\nwho was delivered up for our trespasses, and was raised for our justification. \nEvery one therefore that heareth these words of mine, and doeth them, shall be likened unto a wise man, who built his house upon the rock:\nNow unto him that is able to do exceeding abundantly above all that we ask or think, according to the power that worketh in us,\nMr. and Mrs. Zuckerman were in bed by nine.\nTempleton, asleep in the straw, heard the commotion and awoke.\nAnd because iniquity shall be multiplied, the love of the many shall wax cold.\nBut I will tarry at Ephesus until Pentecost;\nGo your ways; behold, I send you forth as lambs in the midst of wolves.\nAnd all bare him witness, and wondered at the words of grace which proceeded out of his mouth: and they said, Is not this Joseph’s son?\nI was left to stand on the logic of my argument about the sanctity of property ownership.\nLet us rejoice and be exceeding glad, and let us give the glory unto him: for the marriage of the Lamb is come, and his wife hath made herself ready.\n“You didn't even look at my hair!” said Mrs. Zuckerman.\n“You coach me and I'll spin one.\nIt is my egg sac, my magnum opus.”\nBut he denied before them all, saying, I know not what thou sayest.\nHow to survive?\nWolf doesn't know everything!\nAnd they came to him, and awoke him, saying, Master, master, we perish. And he awoke, and rebuked the wind and the raging of the water: and they ceased, and there was a calm.\nA bear with yellow fat lying three fingers deep over the red muscles from a long autumn of gorging on chestnuts, hickory nuts, acorns, and huckleberries.\nsaying, Amen: Blessing, and glory, and wisdom, and thanksgiving, and honor, and power, and might, be unto our God for ever and ever. Amen.\nHe that hath ears, let him hear.\n“Let’s see ...one, two, three, four, five, six, seven.\nCharley’s littlest ambulatory grandchildren, the shortest boys and girls—each bearing some reference to his particular hands or hair or nose or slant of eyes—churned lattermost against the gravity of the mountain.\nHeavy-timbered steep land.\nAnd he said unto them, Well did Isaiah prophesy of you hypocrites, as it is written, This people honoreth me with their lips, But their heart is far from me.\nAnd I, brethren, when I came unto you, came not with excellency of speech or of wisdom, proclaiming to you the testimony of God.\nBut when the chief priests and the scribes saw the wonderful things that he did, and the children that were crying in the temple and saying, Hosanna to the son of David; they were moved with indignation,\nAnd when the seven thunders uttered their voices, I was about to write: and I heard a voice from heaven saying, Seal up the things which the seven thunders uttered, and write them not.\nMost of their bulk was in the thick muscles of their necks and shoulders, and this was further emphasized by the ruff of red bristles that roached up like porcupine quills from the base of their skulls and tapered away along their backbones.\nAnd the Lord said unto him, Loose the shoes from thy feet: for the place whereon thou standest is holy ground.\nThis parable spake Jesus unto them: but they understood not what things they were which he spake unto them.\nAnd now, behold, the hand of the Lord is upon thee, and thou shalt be blind, not seeing the sun for a season. And immediately there fell on him a mist and a darkness; and he went about seeking some to lead him by the hand.\nAnd the rest of mankind, who were not killed with these plagues, repented not of the works of their hands, that they should not worship demons, and the idols of gold, and of silver, and of brass, and of stone, and of wood; which can neither see, nor hear, nor walk:\nWilbur thought hard.\nTHE END \nThe string trailed behind him.\nThey are very big!\n“Listen to me,” whispered the old sheep to Wilbur.\nFor John was not yet cast into prison.\nRain fell on the backs of the sheep as they grazed in the meadow.\nI told them I would show them around, and they wanted to know where Granville Towers was, ‘cause that’s where their friend lived.\nwho can bear gently with the ignorant and erring, for that he himself also is compassed with infirmity;\nIn him was life; and the life was the light of men.\nLate that afternoon, Lurvy went to Mr. Zuckerman.\nHow’s Avery?” he asked, opening his eyes wide.\nWhen Ross’s efforts all continued to come to nothing, he soon began striking deals of his own to have America pay him, by the head, to move all the people to the West by overland routes.\nNow they know that all things whatsoever thou hast given me are from thee:\nShe found an old milking stool that had been discarded, and she placed the stool in the sheepfold next to Wilbur’s pen.\n“Good night, Charlotte!” said Wilbur.\ndelivering thee from the people, and from the Gentiles, unto whom I send thee,\nFor our light affliction, which is for the moment, worketh for us more and more exceedingly an eternal weight of glory;\nAt the bottom end of the rope was a fat knot to sit on.\nand asked them, saying, Is this your son, who ye say was born blind? how then doth he now see?\nFor the gifts and the calling of God are not repented of.\nYe fools and blind: for which is greater, the gold, or the temple that hath sanctified the gold?\nwhich is come unto you; even as it is also in all the world bearing fruit and increasing, as it doth in you also, since the day ye heard and knew the grace of God in truth;\nAnd from thence the brethren, when they heard of us, came to meet us as far as The Market of Appius and The Three Taverns; whom when Paul saw, he thanked God, and took courage.\nAnd Philip ran to him, and heard him reading Isaiah the prophet, and said, Understandest thou what thou readest?\nAnd both the Pharisees and the scribes murmured, saying, This man receiveth sinners, and eateth with them.\nJesus saith unto them, Come and break your fast. And none of the disciples durst inquire of him, Who art thou? knowing that it was the Lord.\nAnd his disciples answered him, Whence shall one be able to fill these men with bread here in a desert place?\nCharlotte climbed to a point at the top of the left hand side of the web.\nJust to see what might happen, I sent a carefully worded claim of state citizenship for all of Bear’s people to the appropriate department down in the capital.\nIn the distance he saw the Arables and the Zuckermans approaching.\nCries of “Good—bye, good-bye, good-bye!” came weakly to Wilbur’s ears.\nand to know the love of Christ which passeth knowledge, that ye may be filled unto all the fulness of God.\nBut he answered and said unto them, See ye not all these things? verily I say unto you, There shall not be left here one stone upon another, that shall not be thrown down.\n“Jump into the air!” cried Charlotte.\nAnd there followed him great multitudes from Galilee and Decapolis and Jerusalem and Judæa and from beyond the Jordan. \nwithout natural affection, implacable, slanderers, without self-control, fierce, no lovers of good,\nWhat made me truly like Crockett was noting, in moments of a public nature, a sad discontinuity between the upcurve of his smiling mouth and the bleak deadness of his eyes.\nAnd all his acquaintance, and the women that followed with him from Galilee, stood afar off, seeing these things.\nFather, glorify thy name. There came therefore a voice out of heaven, saying, I have both glorified it, and will glorify it again.\nHe that hath an ear, let him hear what the Spirit saith to the churches.\nbut the very hairs of your head are all numbered.\nFor this cause I write these things while absent, that I may not when present deal sharply, according to the authority which the Lord gave me for building up, and not for casting down.\nFor freedom did Christ set us free: stand fast therefore, and be not entangled again in a yoke of bondage.\nTherefore also said the wisdom of God, I will send unto them prophets and apostles; and some of them they shall kill and persecute;\nTwo Indians shouted at each other and then locked up and fought on the ground until soldiers waded in and grabbed them by their arms and snatched them apart.\n“Were you serious when you promised you would keep them from killing me?”\nfor I have five brethren; that he may testify unto them, lest they also come into this place of torment.\nIs it true what the old sheep says, Charlotte?\nThink not that I will accuse you to the Father: there is one that accuseth you, even Moses, on whom ye have set your hope.\nand when I was present with you and was in want, I was not a burden on any man; for the brethren, when they came from Macedonia, supplied the measure of my want; and in everything I kept myself from being burdensome unto you, and so will I keep myself.\nSmith watched them and then took a rundlet from his saddlebag and drank a long pull and stoppered it back and put it away in the bag.\nWhen a pig is to be butchered, everybody helps.\nThey were all draped about their chests and shoulders with powder horns and shot pouches.\nAnd he carried me away in the Spirit into a wilderness: and I saw a woman sitting upon a scarlet-colored beast, full of names of blasphemy, having seven heads and ten horns.\nSpirits dwelled there, people said, a long time ago, just right by the building where I needed to pass by.\nWherefore he saith, When he ascended on high, he led captivity captive, And gave gifts unto men.\nBut godliness with contentment is great gain:\nbut sanctify in your hearts Christ as Lord: being ready always to give answer to every man that asketh you a reason concerning the hope that is in you, yet with meekness and fear:\nCould you go tell that to the boys? Smith said.\nThese are murmurers, complainers, walking after their lusts (and their mouth speaketh great swelling words), showing respect of persons for the sake of advantage.\nI am much too tired and too cold to keep trying to go on.\nFor as touching the ministering to the saints, it is superfluous for me to write to you:\nBut they shook off the dust of their feet against them, and came unto Iconium.\nBut not that year.\nThe Jews therefore marvelled, saying, How knoweth this man letters, having never learned?\nThese all with one accord continued stedfastly in prayer, with the women, and Mary the mother of Jesus, and with his brethren.\nMost of the principal streets were paved with cobbles, so there was always a racket from the metal hoops of carriage wheels clashing against them, and at night the calkins of horseshoes struck sparks off them.\n“Let Wilbur alone!” she said.\nAnd even now I know that, whatsoever thou shalt ask of God, God will give thee.\nAnd when he had spent all, there arose a mighty famine in that country; and he began to be in want.\nPeter therefore denied again: and straightway the cock crew.\n“The way to save Wilbur’s life is to play a trick on Zuckerman.\nHis trough had an inch of rainwater in it.\n“A rat is a rat,” said Charlotte.\nI don’t play with pigs.”\nAnd when they saw the star, they rejoiced with exceeding great joy.\nBut if we discerned ourselves, we should not be judged.\nThis is my first trip South I can hardly wait to know OH!\nBut the Lord is faithful, who shall establish you, and guard you from the evil one.\nThe Old Possum was implacable, and he meant to put an end to Indians.\n“I’m afraid not,” she said.\nSalute Apelles the approved in Christ. Salute them that are of the household of Aristobulus.\nby which also ye are saved, if ye hold fast the word which I preached unto you, except ye believed in vain.\nBut all these things are the beginning of travail.\nBut he, being full of the Holy Spirit, looked up stedfastly into heaven, and saw the glory of God, and Jesus standing on the right hand of God,\nand saith unto him, If thou art the Son of God, cast thyself down: for it is written, He shall give his angels charge concerning thee: and, On their hands they shall bear thee up, Lest haply thou dash thy foot against a stone.\nand saying, If thou art the King of the Jews, save thyself.\nAvery lay dreaming that the Ferris wheel had stopped and that he was in the top car.\nyea, Father, for so it was well-pleasing in thy sight.\nAnd he went his way, and began to publish in Decapolis how great things Jesus had done for him: and all men marvelled.\nand not only so, but who was also appointed by the churches to travel with us in the matter of this grace, which is ministered by us to the glory of the Lord, and to show our readiness:\nAnd he saith unto them, Come ye yourselves apart into a desert place, and rest a while. For there were many coming and going, and they had no leisure so much as to eat.\nHe was heavily armed — an air rifle in one hand, a wooden dagger in the other. “What’s that?” he demanded. “What’s Fern got?”\nRest from care, my one and only, Deep in the dung and the dark!” But Wilbur was already asleep. When the song ended, Fern got up and went home.\nSuffer hardship with me, as a good soldier of Christ Jesus.\nMy argument is about ownership of land, not blood.\nAnd then Charley told a new story from the past month, another hunting tale.\nWherefore I say unto thee, Her sins, which are many, are forgiven; for she loved much: but to whom little is forgiven, the same loveth little.\nAs I exhorted thee to tarry at Ephesus, when I was going into Macedonia, that thou mightest charge certain men not to teach a different doctrine,\nthat thine alms may be in secret: and thy Father who seeth in secret shall recompense thee.\nand they found it not, though many false witnesses came. But afterward came two,\n“Thank you, Templeton,” he said.\nand that ye be renewed in the spirit of your mind,\nBut because I have spoken these things unto you, sorrow hath filled your heart.\nI would like to stay and hear of all the different fish you have seen and met but this pond is too small for both of us, so I must swim on. Goodbye, Knottyhead.\nThe Lord grant mercy unto the house of Onesiphorus: for he oft refreshed me, and was not ashamed of my chain;\n“Attention, please!” he said in a loud, firm voice.\nAnd this commandment have we from him, that he who loveth God love his brother also. \nThe news of the wonderful pig spread clear up into the hills, and farmers came rattling down in buggies and buckboards, to stand hour after hour at Wilbur’s pen admiring the miraculous animal.\nAnd I gave her time that she should repent; and she willeth not to repent of her fornication.\n“He’s got to go, Fern,” he said.\nAnd the people were waiting for Zacharias, and they marvelled while he tarried in the temple.\nBut they held their peace: for they had disputed one with another on the way, who was the greatest.\nBlessed is the man to whom the Lord will not reckon sin.\nAvery noticed the spider web, and, coming closer, he saw Charlotte.\nand whosoever would be first among you, shall be servant of all.\nThe thought of death came to him and he began to tremble with fear.\n“In a forest looking for beechnuts and truffles and delectable roots, pushing leaves aside with my wonderful strong nose, searching and sniffing along the ground, smelling, smelling, smelling ...”\nAnd after these days we took up our baggage and went up to Jerusalem.\nAnd as these went their way, Jesus began to say unto the multitudes concerning John, What went ye out into the wilderness to behold? a reed shaken with the wind?\nThe people all walked away from their homes fearing what their new lives held for them.\nthey were stoned, they were sawn asunder, they were tempted, they were slain with the sword: they went about in sheepskins, in goatskins; being destitute, afflicted, ill-treated\nNow we know that what things soever the law saith, it speaketh to them that are under the law; that every mouth may be stopped, and all the world may be brought under the judgment of God:\nIt was a still day, and I could hear voices inside.\nBut Jesus said unto him, No man, having put his hand to the plow, and looking back, is fit for the kingdom of God. \nHe sniffed the air and made a face.\nBut arise, and stand upon thy feet: for to this end have I appeared unto thee, to appoint thee a minister and a witness both of the things wherein thou hast seen me, and of the things wherein I will appear unto thee;\nbecause that, knowing God, they glorified him not as God, neither gave thanks; but became vain in their reasonings, and their senseless heart was darkened.\nAfter Christmas the thermometer dropped to ten below zero.\nAnd behold, there came a man named Jairus, and he was a ruler of the synagogue: and he fell down at Jesus’ feet, and besought him to come into his house;\nWilbur rushed to the front of his pen.\nClaire was beautiful, beautiful.\n“Don’t shout, Fern!” said her mother.\nfor it is sanctified through the word of God and prayer.\nWhen I was a child, I spake as a child, I felt as a child, I thought as a child: now that I am become a man, I have put away childish things.\nThis is the same bag after one month.\nHow can something be less than nothing?\nI took pleasure in noting that few if any of them had run up against Charleston women.\nin which also he went and preached unto the spirits in prison,\nBreakfast would be finished at seven.\nAnd he said, All these things have I observed from my youth up.\nAnd as we have borne the image of the earthy, we shall also bear the image of the heavenly.\nAnd they all laid hold on Sosthenes, the ruler of the synagogue, and beat him before the judgment-seat. And Gallio cared for none of these things.\nYou worthless little shitheel, he said.\nAnd this I pray, that your love may abound yet more and more in knowledge and all discernment;\nAnd after some business there, on to navigable water.\nAnd she brought forth her firstborn son; and she wrapped him in swaddling clothes, and laid him in a manger, because there was no room for them in the inn.\nAnd he said unto them the third time, Why, what evil hath this man done? I have found no cause of death in him: I will therefore chastise him and release him.\nHearing this, Wilbur threw himself down in an agony of pain and sorrow.\nA bound boy, I thought.\nThen came he out of the land of the Chaldæans, and dwelt in Haran: and from thence, when his father was dead, God removed him into this land, wherein ye now dwell:\nAnd by reason of the exceeding greatness of the revelations, that I should not be exalted overmuch, there was given to me a thorn in the flesh, a messenger of Satan to buffet me, that I should not be exalted overmuch.\nThere, before the door, lay a great serpent.\nHe answered, The man that is called Jesus made clay, and anointed mine eyes, and said unto me, Go to Siloam, and wash: so I went away and washed, and I received sight.\n“No,” said Wilbur.\nTake up that which is thine, and go thy way; it is my will to give unto this last, even as unto thee.\n(but if a man knoweth not how to rule his own house, how shall he take care of the church of God?)\nAnd this word, Yet once more, signifieth the removing of those things that are shaken, as of things that have been made, that those things which are not shaken may remain.\nMine was deep purple and patterned with yellow figures of pineapples.\nBut God turned, and gave them up to serve the host of heaven; as it is written in the book of the prophets, Did ye offer unto me slain beasts and sacrifices Forty years in the wilderness, O house of Israel?\nThere, inside, looking up at her, was the newborn pig.\nThe thorny chestnut husks had fallen and the nuts had been eaten every way there was to eat them.\nAnd when he was entered into Capernaum, there came unto him a centurion, beseeching him,\nfor ye are yet carnal: for whereas there is among you jealousy and strife, are ye not carnal, and do ye not walk after the manner of men?\nWhat a silly thing to say.\nNow while they were going, behold, some of the guard came into the city, and told unto the chief priests all the things that were come to pass.\nOr somewhat fewer.\n“Then my name is Aranea,” said the spider.\nSeveral of Lichen’s hunters began working at the loads to their muskets, fooling with shot pouches and powder horns, checking the pans and priming.\nAnd when we had finished the voyage from Tyre, we arrived at Ptolemais; and we saluted the brethren, and abode with them one day.\nJesus saith unto her, Woman, believe me, the hour cometh, when neither in this mountain, nor in Jerusalem, shall ye worship the Father.\nAnd these in like manner are they that are sown upon the rocky places, who, when they have heard the word, straightway receive it with joy;\npursued, yet not forsaken; smitten down, yet not destroyed;\nAnd if ye do good to them that do good to you, what thank have ye? for even sinners do the same.\nAnd plenty of ways to come out ashamed and disappointed in yourself for the remainder of life, with stories you wouldn’t even care to tell drunk.\nBut after I am raised up, I will go before you into Galilee.\nHe's absolutely perfect.”\nIn like manner also the chief priests mocking him among themselves with the scribes said, He saved others; himself he cannot save.\nIf ye died with Christ from the rudiments of the world, why, as though living in the world, do ye subject yourselves to ordinances,\nActually, Wilbur felt queer to be outside his fence, with nothing between him and the big world.\nWe drove the carriage at high speed along the valley roads at any hour that suited us from dawn to midnight.\nEvery one therefore who shall confess me before men, him will I also confess before my Father who is in heaven.\nWilbur didn’t understand the word “languish” and he hated to bother Charlotte by asking her to explain.\nAnd the second came, saying, Thy pound, Lord, hath made five pounds.\nand leaving Nazareth, he came and dwelt in Capernaum, which is by the sea, in the borders of Zebulun and Naphtali:\n“Maybe he’s older than I am, and has had more time to grow,” suggested Wilbur.\nAt intervals he found gouts of blood on the forest floor and broad smears against tree bark to confirm the correct working of his imagination.\nSo when he came into Galilee, the Galilæans received him, having seen all the things that he did in Jerusalem at the feast: for they also went unto the feast.\nAnd he said unto them, Behold, when ye are entered into the city, there shall meet you a man bearing a pitcher of water; follow him into the house whereinto he goeth.\nBut as he lay there he remembered what the old sheep had told him.\nFor rulers are not a terror to the good work, but to the evil. And wouldest thou have no fear of the power? do that which is good, and thou shalt have praise from the same:\nFor David saith concerning him, I beheld the Lord always before my face; For he is on my right hand, that I should not be moved:\nAnd he commanded them to be baptized in the name of Jesus Christ. Then prayed they him to tarry certain days. \nFor nation shall rise against nation, and kingdom against kingdom; and there shall be famines and earthquakes in divers places.\nAnd he, when he is come, will convict the world in respect of sin, and of righteousness, and of judgment:\nand the rain descended, and the floods came, and the winds blew, and smote upon that house; and it fell: and great was the fall thereof.\nYe are our epistle, written in our hearts, known and read of all men;\nBut when they perceived that he was a Jew, all with one voice about the space of two hours cried out, Great is Diana of the Ephesians.\nAnd, ye masters, do the same things unto them, and forbear threatening: knowing that he who is both their Master and yours is in heaven, and there is no respect of persons with him.\nBeloved, if God so loved us, we also ought to love one another.\nMaybe every life has one moment where everything could have been different if you’d climbed on the cart.\n“five hundred and fourteen?” said Wilbur.\n“Do a back ﬂip with a half twist in it!” cried Charlotte.\nSo when the Samaritans came unto him, they besought him to abide with them: and he abode there two days.\nThis is a leaf that died months ago.\nBut his countenance fell at the saying, and he went away sorrowful: for he was one that had great possessions.\nAnkle-deep, she stopped, wavering.\nEvery morning after breakfast, Wilbur walked out to the road with Fern and waited with her till the bus came.\nThen he looked at Lurvy.\nOkay, said Wolf.\nNow there were at Antioch, in the church that was there, prophets and teachers, Barnabas, and Symeon that was called Niger, and Lucius of Cyrene, and Manaen the foster-brother of Herod the tetrarch, and Saul.\nSaying that since the beginning of time, animals have willingly sacrificed themselves to the needs of people, have given us their pain and blood as a gift along with their fat and meat.\n“Sorry, sorry, sorry,” said the goose.\nThey talked and laughed and seemed able to let their larger circumstances not weigh on their thoughts for now.\nLargest, finest, cleanest, brightest. Those sorts of things. Your best.\nNow when Jesus was in Bethany, in the house of Simon the leper,\nAnd they all ate, and were filled: and they took up that which remained over of the broken pieces, twelve baskets full.\nGod also bearing witness with them, both by signs and wonders, and by manifold powers, and by gifts of the Holy Spirit, according to his own will.\nShe spoke up and told how splendid and terrifying the court was and how, nevertheless, Bear and his lawyer had swept all before them and set her free.\nBut Michael the archangel, when contending with the devil he disputed about the body of Moses, durst not bring against him a railing judgment, but said, The Lord rebuke thee.\nfor the perfecting of the saints, unto the work of ministering, unto the building up of the body of Christ:\nBut Jesus said unto them, They have no need to go away; give ye them to eat.\nAnd Herod said, John I beheaded: but who is this, about whom I hear such things? And he sought to see him.\nI rejoice greatly that I have found certain of thy children walking in truth, even as we received commandment from the Father.\nTheir eyes were dead and hopeless as polished river stones.\nAnd when he was come into the temple, the chief priests and the elders of the people came unto him as he was teaching, and said, By what authority doest thou these things? and who gave thee this authority?\nFor what glory is it, if, when ye sin, and are buffeted for it, ye shall take it patiently? but if, when ye do well, and suffer for it, ye shall take it patiently, this is acceptable with God.\nIn nothing be anxious; but in everything by prayer and supplication with thanksgiving let your requests be made known unto God.\nA fire of red cedar logs burned on the ground outside the house, and the smoke in the air smelled like incense.\nA voice was heard in Ramah, Weeping and great mourning, Rachel weeping for her children; And she would not be comforted, because they are not.\nAnd the boy Wasseton and the married daughter Ancih, and a few other women.\nWe love our big summer garden, but no body likes to pick green beans on hot summer days!\nThen a hard left to the head, while the web swayed and stretched.”\nAnd he said unto them, Is the lamp brought to be put under the bushel, or under the bed, and not to be put on the stand?\nAnd it shall be, that every soul that shall not hearken to that prophet, shall be utterly destroyed from among the people.\nMy little children, let us not love in word, neither with the tongue; but in deed and truth.\nthat in the ages to come he might show the exceeding riches of his grace in kindness toward us in Christ Jesus:\nAnd a voice came forth from the throne, saying, Give praise to our God, all ye his servants, ye that fear him, the small and the great.\nNow ye are the body of Christ, and severally members thereof.\nBut if what I would not, that I do, I consent unto the law that it is good.\nBut they held their peace. And he took him, and healed him, and let him go.\nYe cannot drink the cup of the Lord, and the cup of demons: ye cannot partake of the table of the Lord, and of the table of demons.\nFar away.\nShe was brilliant, beautiful, and loyal to the end.\nBut ye shall be delivered up even by parents, and brethren, and kinsfolk, and friends; and some of you shall they cause to be put to death.\nI calculated that it was but a half day’s ride to Welch’s Tavern, at least for me, knowing the shortcuts and going at a good clip on a fine horse.\nAnd straightway Jesus, perceiving in his spirit that they so reasoned within themselves, saith unto them, Why reason ye these things in your hearts?\nBut when the disciples saw it, they had indignation, saying, To what purpose is this waste?\nDo ye not yet perceive, neither remember the five loaves of the five thousand, and how many baskets ye took up?\n Everyone will be warm down south\nHe reckoned that taking nothing but a cup of bitter tea without honey for the entire day was about the same as the hunter’s fast of the old times.\nBoth men were wealthy plantation owners and almost equally powerful within the Nation, which was a new and uncertain country set inside America like a reflection in an imperfect mirror.\nI heard horses in the woods and went and collected the three and tailed them one to the other for travel.\nI said that by killing the soldiers, Charley and his people had brought similar threat of annihilation to all our people.\nAlso a tin of ginger candies and a bottle of good Tennessee whiskey.\nBut this I confess unto thee, that after the Way which they call a sect, so serve I the God of our fathers, believing all things which are according to the law, and which are written in the prophets;\nAnd Jesus answering saith unto them, Have faith in God.\nBut he, beckoning unto them with the hand to hold their peace, declared unto them how the Lord had brought him forth out of the prison. And he said, Tell these things unto James, and to the brethren. And he departed, and went to another place.\n“Wait a minute!” screamed Wilbur.\n“Oh, I'll work it out alone,” said Charlotte.\nThere remaineth therefore a sabbath rest for the people of God.\nThe numbers of the hunters had grown by the day.\n“Look out, the people are coming-oming-oming!” shouted the gander.\nAnd he said unto him, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind.\nAnd all the people when they heard, and the publicans, justified God, being baptized with the baptism of John.\nThen he shook hands with Mr. Zuckerman while Wilbur blushed.\nFaithful is the saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief:\nI testify unto every man that heareth the words of the prophecy of this book, If any man shall add unto them, God shall add unto him the plagues which are written in this book:\nThink no more of it.\nThis is your big day today.\nJesus Christ is the same yesterday and to-day, yea and for ever.\nI had known Charley a little since boyhood and felt disoriented in a world where a subsistence farmer and his family could become transformed into dangerous fugitives.\nBut when it was the good pleasure of God, who separated me, even from my mother’s womb, and called me through his grace,\nYe are of your father the devil, and the lusts of your father it is your will to do. He was a murderer from the beginning, and standeth not in the truth, because there is no truth in him. When he speaketh a lie, he speaketh of his own: for he is a liar, and the father thereof.\n“I have decided to go with Wilbur.\nfor sin, finding occasion, through the commandment beguiled me, and through it slew me.\nLord, they have killed thy prophets, they have digged down thine altars; and I am left alone, and they seek my life.\nKindly stand back and give the truck room to proceed!\nAnd he went down with them, and came to Nazareth; and he was subject unto them: and his mother kept all these sayings in her heart.\nLet not then your good be evil spoken of:\nThat moment has haunted me all my life.\nthat, according as it is written, He that glorieth, let him glory in the Lord. \nNext day Wilbur was taken from his home under the apple tree and went to live in a manure pile in the cellar of Zuckerman’s barn.\nHe dug roots and brushed the dirt off and ate them raw as apples.\nI remember once when I was just a boy, there was an old man who had been sick for several days, and each day he seemed to get worse.\nHe that believeth on him is not judged: he that believeth not hath been judged already, because he hath not believed on the name of the only begotten Son of God.\nVarious house clutter, basins, spoons, and dippers.\n“Please, please, please take us to the Fair!” begged a gosling. Then all seven began teasing to go. “Please, please, please, please, please, please… They made quite a racket.\nAnd most of all for not acting on it.\nUp overhead, in the shadows of the ceiling, Charlotte crouched unseen,  her front legs encircling her egg sac.\nOr to the George Town heights to look across the river in the direction of Alexandria and on back to the Capitol across the thin scattering of homes and government buildings.\nAnd he said unto them, What things? And they said unto him, The things concerning Jesus the Nazarene, who was a prophet mighty in deed and word before God and all the people:\nWe heard him say, I will destroy this temple that is made with hands, and in three days I will build another made without hands.\n “What does sedentary mean?” asked Wilbur.\nfor in him were all things created, in the heavens and upon the earth, things visible and things invisible, whether thrones or dominions or principalities or powers; all things have been created through him, and unto him;\nBut he didn’t much want to try at all. He wondered if you could be said to have survived if at the end you didn’t even recognize yourself or your new life or your homeland.\nNow these were more noble than those in Thessalonica, in that they received the word with all readiness of mind, examining the scriptures daily, whether these things were so.\nAnd when they had prayed, the place was shaken wherein they were gathered together; and they were all filled with the Holy Spirit, and they spake the word of God with boldness.\nAnd I saw the heaven opened; and behold, a white horse, and he that sat thereon called Faithful and True; and in righteousness he doth judge and make war.\nThen, suddenly, the sound of runners coming close.\nPaul, a servant of God, and an apostle of Jesus Christ, according to the faith of God’s elect, and the knowledge of the truth which is according to godliness,\nAnd he called to him the multitude, and said unto them, Hear, and understand:\nSmith became suddenly occupied with the tedium of writing.\nThe cocker spaniel heard the commotion and he ran out from the barn to join the chase.\nEven as it is written, Jacob I loved, but Esau I hated.\nAnd it was the day of the Preparation, and the sabbath drew on.\nZuckerman will be proud and happy to own such a pig.\nAnd they ran both together: and the other disciple outran Peter, and came first to the tomb;\nHe pretended he was taking a shower bath; he made faces and danced around and rubbed imaginary soap under his armpits.\nBut now I come to thee; and these things I speak in the world, that they may have my joy made full in themselves.\nAnd while he was in Bethany in the house of Simon the leper, as he sat at meat, there came a woman having an alabaster cruse of ointment of pure nard very costly; and she brake the cruse, and poured it over his head.\nAnd the scribes and the Pharisees began to reason, saying, Who is this that speaketh blasphemies? Who can forgive sins, but God alone?\nAnd there arose a great clamor: and some of the scribes of the Pharisees’ part stood up, and strove, saying, We find no evil in this man: and what if a spirit hath spoken to him, or an angel?\n“There is to be no more cow manure thrown down into that pigpen.\nAnd Major Ridge, though dark-skinned, dressed somewhat better than all but the richest senators and carried himself with an arrogant attitude that created a suspicion that he was of superior intelligence.\nIt had no gold.\nAll would laugh if they heard.\nAnd many women were there beholding from afar, who had followed Jesus from Galilee, ministering unto him:\nAnd I knew that thou hearest me always: but because of the multitude that standeth around I said it, that they may believe that thou didst send me.\nBut if the ministration of death, written, and engraven on stones, came with glory, so that the children of Israel could not look stedfastly upon the face of Moses for the glory of his face; which glory was passing away:\neven so ye also, when ye see these things coming to pass, know ye that he is nigh, even at the doors.\nAnd he saith unto them, Whosoever shall put away his wife, and marry another, committeth adultery against her:\nThese are the two olive trees and the two candlesticks, standing before the Lord of the earth.\nHis father an old veteran of 1812, his mother somewhat younger but now dead.\nFor verily in this we groan, longing to be clothed upon with our habitation which is from heaven:\nNow it was the sabbath on the day when Jesus made the clay, and opened his eyes.\n“You can't stay here.\nAnd they had no child, because that Elisabeth was barren, and they both were now well stricken in years.\nAnd without being weakened in faith he considered his own body now as good as dead (he being about a hundred years old), and the deadness of Sarah’s womb;\nJust then Charlotte interrupted.\n“You don’t suppose that that spider...” began Mr. Zuckerman — but he shook his head and didn’t finish the sentence.\nIf therefore thou art offering thy gift at the altar, and there rememberest that thy brother hath aught against thee,\nSo the tongue also is a little member, and boasteth great things. Behold, how much wood is kindled by how small a fire!\nTell us, when shall these things be? and what shall be the sign when these things are all about to be accomplished?\nI therefore, the prisoner in the Lord, beseech you to walk worthily of the calling wherewith ye were called,\n“Well,” said Wilbur.\nI wanted to kiss them, but when I tried to pull her hand to me, she pulled it away.\nAt least the wooden wine cases made fine bookshelves when stacked in a staggered fashion along the walls of the store’s sleeping room.\nSoon, he sat down.\nAnd be not drunken with wine, wherein is riot, but be filled with the Spirit;\nThey closed awkwardly together, neither finding much purchase against the round slick stones of the riverbed.\nFor the Son of man goeth, even as it is written of him: but woe unto that man through whom the Son of man is betrayed! good were it for that man if he had not been born.\n“Couldn't be worse.\nAnd if ye are Christ’s, then are ye Abraham’s seed, heirs according to promise. \nAnd all the city was moved, and the people ran together; and they laid hold on Paul, and dragged him out of the temple: and straightway the doors were shut.\nAnd Philip said, If thou believest with all thine heart, thou mayest. And he answered and said, I believe that Jesus Christ is the Son of God.\nMay I offer my sincere congratulations!”\nAnd as he went forth out of the temple, one of his disciples saith unto him, Teacher, behold, what manner of stones and what manner of buildings!\nSalute all the brethren with a holy kiss.\nHe said, Speaking of loss, you’re about to lose something too.\nFor neither did I receive it from man, nor was I taught it, but it came to me through revelation of Jesus Christ.\nWilbur examined it.\nThe ﬂy was beating its wings furiously, trying to break loose and free itself.\nBut she had left them no choice.\nAvery obeyed his mother and climbed into the back of the truck so he could see better.\nBut they that are minded to be rich fall into a temptation and a snare and many foolish and hurtful lusts, such as drown men in destruction and perdition.\nBut wilt thou know, O vain man, that faith apart from works is barren?\nSuddenly a small fish came by and said, Hello Bigfish, and swam on.\nAnd the steward said within himself, What shall I do, seeing that my lord taketh away the stewardship from me? I have not strength to dig; to beg I am ashamed.\nHe began to squeal.\nFor godly sorrow worketh repentance unto salvation, a repentance which bringeth no regret: but the sorrow of the world worketh death.\nThe Zuckermans and the Arables stared at the tag.\nLurvy was still standing there, and Mr. and Mrs. Zuckerman, all three, stood for about an hour, reading the words on the web over and over, and watching Wilbur.\nDown by the river, on an expanse of flat ground, they razed away a vast canebrake in a conflagration that looked for a short span of minutes like the end of the world.\nAnd when they had set them in the midst, they inquired, By what power, or in what name, have ye done this?\nAvery's wet trousers made a big wet spot on the seat.\nstanding afar off for the fear of her torment, saying, Woe, woe, the great city, Babylon, the strong city! for in one hour is thy judgment come.\nForasmuch as we have heard that certain who went out from us have troubled you with words, subverting your souls; to whom we gave no commandment;\nHow many, then?\nif we endure, we shall also reign with him: if we shall deny him, he also will deny us:\nFor David, after he had in his own generation served the counsel of God, fell asleep, and was laid unto his fathers, and saw corruption:\nFor this cause God gave them up unto vile passions: for their women changed the natural use into that which is against nature:\nFor he taught his disciples, and said unto them, The Son of man is delivered up into the hands of men, and they shall kill him; and when he is killed, after three days he shall rise again.\nAnd he sighed deeply in his spirit, and saith, Why doth this generation seek a sign? verily I say unto you, There shall no sign be given unto this generation.\nWe really liked to visit our neighbors.\nAnd the disciples were filled with joy and with the Holy Spirit. \nBear had narrated the story to Charley’s children several years ago when, on a hunting trip, he had spent a rainy night in their cabin.\nTempleton, of course, was miserable over the loss of his beloved egg.\nAnd Paul went down, and fell on him, and embracing him said, Make ye no ado; for his life is in him.\nAnd then he sang the bear hunter’s song.\nAnd there appeared unto him an angel of the Lord standing on the right side of the altar of incense.\nMoreover when ye fast, be not, as the hypocrites, of a sad countenance: for they disfigure their faces, that they may be seen of men to fast. Verily I say unto you, They have received their reward.\n“Are you awake, Charlotte?” he said softly.\nAnd the court which is without the temple leave without, and measure it not; for it hath been given unto the nations: and the holy city shall they tread under foot forty and two months.\nHer blue skirt draped in her lap to outline her thighs, a shadowed valley between them.\nSam Houston had been a regular before he fled to Texas, and the management still talked of him with sad affection.\nSet your mind on the things that are above, not on the things that are upon the earth.\nIf ye keep my commandments, ye shall abide in my love; even as I have kept my Father’s commandments, and abide in his love.\nBut ye shall receive power, when the Holy Spirit is come upon you: and ye shall be my witnesses both in Jerusalem, and in all Judæa and Samaria, and unto the uttermost part of the earth.\nAnd when the first came, they supposed that they would receive more; and they likewise received every man a shilling.\nfor in one hour so great riches is made desolate. And every shipmaster, and every one that saileth any whither, and mariners, and as many as gain their living by sea, stood afar off,\nBut when they believed Philip preaching good tidings concerning the kingdom of God and the name of Jesus Christ, they were baptized, both men and women.\nBut Jesus called them unto him, saying, Suffer the little children to come unto me, and forbid them not: for to such belongeth the kingdom of God.\nDavid himself said in the Holy Spirit, The Lord said unto my Lord, Sit thou on my right hand, Till I make thine enemies the footstool of thy feet.\nWe know that God heareth not sinners: but if any man be a worshipper of God, and do his will, him he heareth.\nLurvy reached out and grabbed.\nOne of his disciples, Andrew, Simon Peter’s brother, saith unto him,\nwho saved us, and called us with a holy calling, not according to our works, but according to his own purpose and grace, which was given us in Christ Jesus before times eternal,\nand he came and preached peace to you that were far off, and peace to them that were nigh:\nAnd straightway, when they were come out of the synagogue, they came into the house of Simon and Andrew, with James and John.\nAnd the whole multitude of the people were praying without at the hour of incense.\n“Oh, look at him!\nAnd it came to pass, when Jesus had finished these parables, he departed thence.\n“But Fern, darling, I wish you would play outdoors today instead of going to Uncle Homer's barn. Find some of your playmates and do something nice outdoors.\nNow Simon’s wife’s mother lay sick of a fever; and straightway they tell him of her:\nGive us this day our daily bread.\nWhen he jumped off, he threw the swing up to his sister.\nAnd Peter answered and said unto him, Declare unto us the parable.\n“I need it to spin a web.”\n“Why, it was old Templeton!\nTherefore we ought to give the more earnest heed to the things that were heard, lest haply we drift away from them.\nLove not the world, neither the things that are in the world. If any man love the world, the love of the Father is not in him.\nAnd God, who knoweth the heart, bare them witness, giving them the Holy Spirit, even as he did unto us;\nAnd to these also Enoch, the seventh from Adam, prophesied, saying, Behold, the Lord came with ten thousands of his holy ones,\nAnd the scribe said unto him, Of a truth, Teacher, thou hast well said that he is one; and there is none other but he:\nIt was necessary therefore that the copies of the things in the heavens should be cleansed with these; but the heavenly things themselves with better sacrifices than these.\nAnd they were astonished exceedingly, saying unto him, Then who can be saved?\nI am not entirely happy about my diet of flies and bugs, but it’s the way I’m made.\nbut lay up for yourselves treasures in heaven, where neither moth nor rust doth consume, and where thieves do not break through nor steal:\nAnd a woman, who had an issue of blood twelve years,\nNeglect not the gift that is in thee, which was given thee by prophecy, with the laying on of the hands of the presbytery.\nI managed to hold my tongue but resolved within myself that all Smith had to do was utter one more word and I’d mount up and ride away and they could discover their own route out of the mazy mountains and wave hand signals in the air to communicate with their captives.\nbut taking his leave of them, and saying, I will return again unto you if God will, he set sail from Ephesus.\nAnd it shall be in the last days, saith God, I will pour forth of my Spirit upon all flesh: And your sons and your daughters shall prophesy, And your young men shall see visions, And your old men shall dream dreams:\nCass sat looking at me, at the hue of skin visible outside my clothing—my face and neck and handbacks—judging blood degree.\nAnd I turned to see the voice that spake with me. And having turned I saw seven golden candlesticks;\nAll morning people wandered past Wilbur’s pen.\nbut their minds were hardened: for until this very day at the reading of the old covenant the same veil remaineth, it not being revealed to them that it is done away in Christ.\nAvery straddled the rope and jumped.\nThe elder unto Gaius the beloved, whom I love in truth.\n“Imagine wanting a junky old rotten egg!” he muttered.\nHe that spared not his own Son, but delivered him up for us all, how shall he not also with him freely give us all things?\n“You don’t have to stay in that dirty-little dirty-little dirty-little yard,” said the goose, who talked rather fast.\nand have no fellowship with the unfruitful works of darkness, but rather even reprove them;\nAnd they that stood by said, Revilest thou God’s high priest?\nAnd Jesus said unto them, Verily I say unto you, that ye who have followed me, in the regeneration when the Son of man shall sit on the throne of his glory, ye also shall sit upon twelve thrones, judging the twelve tribes of Israel.\n“What a night!”\nNot every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father who is in heaven.\nBesides those things that are without, there is that which presseth upon me daily, anxiety for all the churches.\n“Look!” cried Fern.\nWilbur stared back and tried to look extra good.\nFor the Son of man also came not to be ministered unto, but to minister, and to give his life a ransom for many.\nand others fell upon the rocky places, where they had not much earth: and straightway they sprang up, because they had no deepness of earth:\nFor his disciples were gone away into the city to buy food.\nhaving a wall great and high; having twelve gates, and at the gates twelve angels; and names written thereon, which are the names of the twelve tribes of the children of Israel:\nand saith unto him, See thou say nothing to any man: but go show thyself to the priest, and offer for thy cleansing the things which Moses commanded, for a testimony unto them.\n“But I'm not sure Templeton will be willing to help.\n“Go to sleep.\nand shall begin to beat his fellow-servants, and shall eat and drink with the drunken;\nTheir slim charred bones and tiny skulls were mixed with the white ashes of the fire pit.\nNow there were some present at that very season who told him of the Galilæans, whose blood Pilate had mingled with their sacrifices.\nBut the spider was already out of sight.\n“We can start. I want to take a ride in the Ferris wheel.”\nsaying, Teacher, Moses said, If a man die, having no children, his brother shall marry his wife, and raise up seed unto his brother.\n… yellow apples took their place.\nBehold, I cast her into a bed, and them that commit adultery with her into great tribulation, except they repent of her works.\nAnd when he had destroyed seven nations in the land of Canaan, he gave them their land for an inheritance, for about four hundred and fifty years:\nYou’re the smelliest creature in the place.”\nFor every high priest, being taken from among men, is appointed for men in things pertaining to God, that he may offer both gifts and sacrifices for sins:\nMr. Arable started the motor.\nSo also ye, since ye are zealous of spiritual gifts, seek that ye may abound unto the edifying of the church.\nHe scampered over to the crate, crawled between the slats, and pulled straw up over him so he was hidden from sight.\nWinter was falling soon, and they would need more shelter.\neven us, whom he also called, not from the Jews only, but also from the Gentiles?\nTell your Uncle Homer you've got a pig you'll sell for six dollars, and see what he says.”\nThey brawled down a hillside and then to the river’s edge and then onward until they were waist-deep in the water.\nbut to sit on my right hand or on my left hand is not mine to give; but it is for them for whom it hath been prepared.\nPeter, turning about, seeth the disciple whom Jesus loved following; who also leaned back on his breast at the supper, and said, Lord, who is he that betrayeth thee?\nyea, we ourselves have had the sentence of death within ourselves, that we should not trust in ourselves, but in God who raiseth the dead:\nbut he that knew not, and did things worthy of stripes, shall be beaten with few stripes. And to whomsoever much is given, of him shall much be required: and to whom they commit much, of him will they ask the more.\nAnd their sins and their iniquities will I remember no more.\nAnd the Spirit said unto Philip, Go near, and join thyself to this chariot.\nAnd there was much joy in that city.\n“Ho-mer!” she cried.\nthe lord of that servant shall come in a day when he expecteth not, and in an hour when he knoweth not, and shall cut him asunder, and appoint his portion with the unfaithful.\nWithout hesitating a second, he dashed the water at Wilbur.\nSo ye are witnesses and consent unto the works of your fathers: for they killed them, and ye build their tombs.\nand came to him, and bound up his wounds, pouring on them oil and wine; and he set him on his own beast, and brought him to an inn, and took care of him.\nWilbur leapt to his feet.\nAnd again, Praise the Lord, all ye Gentiles; And let all the peoples praise him.\nfor a friend of mine is come to me from a journey, and I have nothing to set before him;\nAnd as Jesus returned, the multitude welcomed him; for they were all waiting for him.\n“What in thunder?” he said.\nWilbur was merely suffering the doubts and fears that often go with finding a new friend.\nHe heard his mother's voice, Littlefish, Littlefish, are you okay? I cannot fit through to come and get you, but you are a strong Littlefish and will find your own home some day.\nThe grownups and the children joined hands and stood there, studying the new sign.\nCharlotte got so interested in her work, she began to talk to herself, as though to cheer herself on.\nhe is puffed up, knowing nothing, but doting about questionings and disputes of words, whereof cometh envy, strife, railings, evil surmisings,\nThey would bring with them quilts and pillows, and when it got late, some would make their pallets on the group and sleep.\nwhich he promised afore through his prophets in the holy scriptures,\nPeace I leave with you; my peace I give unto you: not as the world giveth, give I unto you. Let not your heart be troubled, neither let it be fearful.\nwho devour widows’ houses, and for a pretence make long prayers: these shall receive greater condemnation. \n“In a day or two I'll be dead.\nI’m to make this my life and advance in it, he said.\nFor they indeed for a few days chastened us as seemed good to them; but he for our profit, that we may be partakers of his holiness.\nStephen caught the beast’s head in the wooden tube and buried it in the rocky soil.\nAnd running under the lee of a small island called Cauda, we were able, with difficulty, to secure the boat:\nBut his lord answered and said unto him, Thou wicked and slothful servant, thou knewest that I reap where I sowed not, and gather where I did not scatter;\n“The plan is still in its early stages and hasn't completely shaped up yet, but I’m working on it.”\nFor Christ also pleased not himself; but, as it is written, The reproaches of them that reproached thee fell upon me.\nI am he that beareth witness of myself, and the Father that sent me beareth witness of me.\nAnd he looked up, and said, I see men; for I behold them as trees, walking.\n“You're too stuffed and bloated to know what you're saying.\nWhat happened to the other egg? Why didn’t it hatch?”\nRabbit knew very well what it was.\n“He's quite a pig,” said Lurvy.\nwho only hath immortality, dwelling in light unapproachable; whom no man hath seen, nor can see: to whom be honor and power eternal. Amen.\nand shall not the uncircumcision which is by nature, if it fulfil the law, judge thee, who with the letter and circumcision art a transgressor of the law?\nIt had been a busy day—his first day of being terrific.\n“All together, now, boys!” said Mr. Zuckerman.\nthat the word of Jesus might be fulfilled, which he spake, signifying by what manner of death he should die.\nAnd seeing one of them suffer wrong, he defended him, and avenged him that was oppressed, smiting the Egyptian:\nAnd I heard a voice from heaven, as the voice of many waters, and as the voice of a great thunder: and the voice which I heard was as the voice of harpers harping with their harps:\n“We don’t know what it means yet, but perhaps if I give thought to it, I can explain it in my sermon next Sunday.\n“Alone?” said Fern.\nHe wished Fern were there to take him in her arms and comfort him.\nWhose mouth is full of cursing and bitterness:\nOr if he shall ask an egg, will he give him a scorpion?\nLittlefish thought about the stream that had brought him to the creek.\nI say unto you, This man went down to his house justified rather than the other: for every one that exalteth himself shall be humbled; but he that humbleth himself shall be exalted.\nMore pleasantly, in Wilmington I found a waterside place that took pride in their cool grey oysters pulled fresh from the sea and arrayed still quivering in their opened shells and eaten alongside glasses of straw-colored wine from France.\nBut Tychicus I sent to Ephesus.\nSalute every saint in Christ Jesus. The brethren that are with me salute you.\n“He’s up!” said Mr. Arable.\nOr ‘ayatso’?\n“Sleep, sleep, my love, my only, Deep, deep, in the dung and the dark; Be not afraid and be not lonely!\nThe baptism of John, was it from heaven, or from men?\nWhen therefore thou doest alms, sound not a trumpet before thee, as the hypocrites do in the synagogues and in the streets, that they may have glory of men. Verily I say unto you, They have received their reward.\nIf I had been very small at birth, would you have killed me?”\nbut I say unto you, that every one that putteth away his wife, saving for the cause of fornication, maketh her an adulteress: and whosoever shall marry her when she is put away committeth adultery.\nand behold, a spirit taketh him, and he suddenly crieth out; and it teareth him that he foameth, and it hardly departeth from him, bruising him sorely.\nHe climbed up into a stand of gloomy balsam fir to a ragged rock face streaked with dark ribbons of seepage and hung with long icicles and encrusted with scabbed patches of bright orange lichen.\nCalhoun’s letter in pocket, I walked up to the White House, past the paddock where Jackson’s horse stood switching flies and dozing, and on through the door.\nThey nearly faded into the darkness, except for vague blurs of faces, the pale movements of hands.\nBy this shall all men know that ye are my disciples, if ye have love one to another.\nHe enjoyed good health and he gained a lot of weight.\nnor height, nor depth, nor any other creature, shall be able to separate us from the love of God, which is in Christ Jesus our Lord. \nin diligence not slothful; fervent in spirit; serving the Lord;\nWhen the Congress was in session, the houses were full from dusk until dawn.\nEvery single part of her.\nNow if their fall is the riches of the world, and their loss the riches of the Gentiles; how much more their fulness?\nand there were lightnings, and voices, and thunders; and there was a great earthquake, such as was not since there were men upon the earth, so great an earthquake, so mighty.\nand I will give him the morning star.\nAnd behold, one came to him and said, Teacher, what good thing shall I do, that I may have eternal life?\nDid ye suffer so many things in vain? if it be indeed in vain.\nNow at the feast he used to release unto them one prisoner, whom they asked of him.\nWatch therefore, for ye know not the day nor the hour.\nThey saw only a pig.\nIt was a configuration of terrain that had an old appeal to the Cherokee and to the people before them.\nAnd in the house the disciples asked him again of this matter.\n“What does she look like?” asked Mrs. Arable.\n“And if you go in those swings,” said Mrs. Arable, “you hang on tight! You hang on very tight.\n“It is the last word I shall ever write.”\nHitherto have ye asked nothing in my name: ask, and ye shall receive, that your joy may be made full.\n“I see no difference,” replied Fern, still hanging on to the ax.\nIf I had not done among them the works which none other did, they had not had sin: but now have they both seen and hated both me and my Father.\nAxe looked at Charley and rubbed his hands down his face to compose himself for wakefulness.\nAnd then he looked more closely and said, You favor a man I once knew.\nThe light from the east struck it and made it all plain and clear.\n“What are you going to do with it?” continued Templeton, his little round beady eyes fixed on the goose.\nfor the multitude of the people followed after, crying out, Away with him.\nThe first man is of the earth, earthy: the second man is of heaven.\nNow some are puffed up, as though I were not coming to you.\nThey sat with their wool-socked feet close to the fire, steam rising from their toes.\nThe multitude therefore answered him, We have heard out of the law that the Christ abideth for ever: and how sayest thou, The Son of man must be lifted up? who is this Son of man?\n“Fine!” said Charlotte.\nShe made a speech.\nFor the Lord himself shall descend from heaven, with a shout, with the voice of the archangel, and with the trump of God: and the dead in Christ shall rise first;\nthey became aware of it, and fled unto the cities of Lycaonia, Lystra and Derbe, and the region round about:\nSalute all them that have the rule over you, and all the saints. They of Italy salute you.\nThe hogs went about their work all hunched forward.\nhe said, Give place: for the damsel is not dead, but sleepeth. And they laughed him to scorn.\nSimon answered and said, He, I suppose, to whom he forgave the most. And he said unto him, Thou hast rightly judged.\nFor it was the good pleasure of the Father that in him should all the fulness dwell;\nThe children ran to the barn.\nBlessed are the peacemakers: for they shall be called sons of God.\nAnd being warned of God in a dream that they should not return to Herod, they departed into their own country another way.\nAnd Peter remembered the word which Jesus had said, Before the cock crow, thou shalt deny me thrice. And he went out, and wept bitterly. \nAnd immediately he rose up before them, and took up that whereon he lay, and departed to his house, glorifying God.\n“Bee-bee-bee!”\nHe will not see me stopping here\nand he shall rule them with a rod of iron, as the vessels of the potter are broken to shivers; as I also have received of my Father:\nAnd when they had spoken the word in Perga, they went down to Attalia;\nYour gold and your silver are rusted; and their rust shall be for a testimony against you, and shall eat your flesh as fire. Ye have laid up your treasure in the last days.\nWith her broad bill the goose pushed the unhatched egg out of the nest, and the entire company watched in disgust while the rat rolled it away.\nPaul, an apostle (not from men, neither through man, but through Jesus Christ, and God the Father, who raised him from the dead),\nneither is he served by men’s hands, as though he needed anything, seeing he himself giveth to all life, and breath, and all things;\nNow there was there a herd of many swine feeding on the mountain: and they entreated him that he would give them leave to enter into them. And he gave them leave.\nIts tail stretched across half the sky, and it had fallen through the night for weeks.\nI'm afraid to be alone, he thought\nOver in their favorite corner, the goslings whistled a night song.\nsaying, Woe, woe, the great city, she that was arrayed in fine linen and purple and scarlet, and decked with gold and precious stone and pearl!\nBut what a gamble friendship is!\nAnd Templeton, the rat, crept stealthily along the wall and disappeared into a private tunnel that he had dug between the door and the trough in Wilbur’s yard.\nAnd this they said, trying him, that they might have whereof to accuse him. But Jesus stooped down, and with his finger wrote on the ground.\nAnd again he went away, and prayed, saying the same words.\nwho, when they had examined me, desired to set me at liberty, because there was no cause of death in me.\nAnd they straightway left the boat and their father, and followed him.\nAnd I heard a great voice out of the temple, saying to the seven angels, Go ye, and pour out the seven bowls of the wrath of God into the earth.\nThe grace of our Lord Jesus Christ be with you all. Amen.\nThe little spider waved at him.\nThe response was worded in such exquisite bureaucratic cant that it took me three readings to decipher its meaning.\nSeeing therefore it remaineth that some should enter thereinto, and they to whom the good tidings were before preached failed to enter in because of disobedience,\nOne of these latter officers was a young lieutenant named Smith.\nNow the woman was a Greek, a Syrophoenician by race. And she besought him that he would cast forth the demon out of her daughter.\nAnd I, brethren, could not speak unto you as unto spiritual, but as unto carnal, as unto babes in Christ.\nBeing therefore by the right hand of God exalted, and having received of the Father the promise of the Holy Spirit, he hath poured forth this, which ye see and hear.\nAnd I, being perplexed how to inquire concerning these things, asked whether he would go to Jerusalem and there be judged of these matters.\nAfter that, right through until dawn, the younger representatives came and went.\nThis might be regarded as contributing some what to their resources in that respect.\nBeloved, no new commandment write I unto you, but an old commandment which ye had from the beginning: the old commandment is the word which ye heard.\nwhere they crucified him, and with him two others, on either side one, and Jesus in the midst.\n“Run downhill!” suggested the cows.\nand not for the nation only, but that he might also gather together into one the children of God that are scattered abroad.\nthat I may know him, and the power of his resurrection, and the fellowship of his sufferings, becoming conformed unto his death;\nBut Jesus no more answered anything; insomuch that Pilate marvelled.\nA child would lay her head down to be petted and the old woman would stroke her hair with that deadly spear finger.\nWhen they pulled into the Fair Grounds, they could hear music and see the Ferris wheel turning in the sky.\nAnd casting off the anchors, they left them in the sea, at the same time loosing the bands of the rudders; and hoisting up the foresail to the wind, they made for the beach.\nWith many other exhortations therefore preached he good tidings unto the people;\nAnd if so be that he find it, verily I say unto you, he rejoiceth over it more than over the ninety and nine which have not gone astray.\nThese have one mind, and they give their power and authority unto the beast.\nAnd they were all amazed, and were perplexed, saying one to another, What meaneth this?\nbut whoso keepeth his word, in him verily hath the love of God been perfected. Hereby we know that we are in him:\nAnd I myself also am persuaded of you, my brethren, that ye yourselves are full of goodness, filled with all knowledge, able also to admonish one another.\nIt was a bad time of year to be a fugitive living off the land.\nAnd they departed quickly from the tomb with fear and great joy, and ran to bring his disciples word.\nfor he had healed many; insomuch that as many as had plagues pressed upon him that they might touch him.\nand the third day they cast out with their own hands the tackling of the ship.\nAnd he said unto her, What wouldest thou? She saith unto him, Command that these my two sons may sit, one on thy right hand, and one on thy left hand, in thy kingdom.\n“I pledge mine,” said Joy.\nAnd when they were gone up into the boat, the wind ceased.\n“You’re going with me, aren’t you, Charlotte?” he said.\nNow is the judgment of this world: now shall the prince of this world be cast out.\nHe said therefore again unto them, I go away, and ye shall seek me, and shall die in your sin: whither I go, ye cannot come.\nAnd when he was at the place, he said unto them, Pray that ye enter not into temptation.\nThe beast hissed menacingly and thrashed around, its great maw gaping.\nThat night, I told the boys to toss out their charred cabbage.\nShadows lengthened.\nCome, see a man, who told me all things that ever I did: can this be the Christ?\n“That remains to be seen.\nAnd their eyes were opened, and they knew him; and he vanished out of their sight.\nAnd behold, there was before him a certain man that had the dropsy.\nDry dead laurel leaves under his hands and knees and feet were thick as nutshells.\nAnd the robbers also that were crucified with him cast upon him the same reproach.\nFor, He that would love life, And see good days, Let him refrain his tongue from evil, And his lips that they speak no guile:\n“You wait! ” said Mrs. Arable.\nAll things have been delivered unto me of my Father: and no one knoweth who the Son is, save the Father; and who the Father is, save the Son, and he to whomsoever the Son willeth to reveal him.\nAnd the only reason for her death was that Indians had sided with the English, and the English had lost.\nNo servant can serve two masters: for either he will hate the one, and love the other; or else he will hold to one, and despise the other. Ye cannot serve God and mammon.\nShe closed the carton carefully.\nBut her father was firm about it.\nAnd when he opened the fifth seal, I saw underneath the altar the souls of them that had been slain for the word of God, and for the testimony which they held:\nthe son of Methuselah, the son of Enoch, the son of Jared, the son of Mahalaleel, the son of Cainan,\nAnd the men that held Jesus mocked him, and beat him.\nBut whosoever shall deny me before men, him will I also deny before my Father who is in heaven.\nand that every tongue should confess that Jesus Christ is Lord, to the glory of God the Father.\nAnd I heard the angel of the waters saying, Righteous art thou, who art and who wast, thou Holy One, because thou didst thus judge:\nAnd it had fallen on Charley to make the call for all of them. It was a weight shifted onto him by reason of age alone, for he knew he had no particular wisdom left in him.\nAround the first of July, the work horses were hitched to the mowing machine, and Mr. Zuckerman climbed into the seat and drove into the field.\nAnd when he learned it of the centurion, he granted the corpse to Joseph.\nFor if a man thinketh himself to be something when he is nothing, he deceiveth himself.\nHunters had reported to him that people were hiding somewhere up among the highest mountains, starving and cold and sick. Lichen’s bunch.\nwith all prayer and supplication praying at all seasons in the Spirit, and watching thereunto in all perseverance and supplication for all the saints,\nAnd Jesus answered and said unto them, Verily I say unto you, If ye have faith, and doubt not, ye shall not only do what is done to the fig tree, but even if ye shall say unto this mountain, Be thou taken up and cast into the sea, it shall be done.\nHe didn’t know a thing about them and did not ever care to know.\nBut let him ask in faith, nothing doubting: for he that doubteth is like the surge of the sea driven by the wind and tossed.\nWhen he finally got to the head, he broke it off and put it in his mouth and worked it around for quite some time like he was gumming tobacco.\nI indeed baptize you in water unto repentance: but he that cometh after me is mightier than I, whose shoes I am not worthy to bear: he shall baptize you in the Holy Spirit and in fire:\n“What is that nifty little thing?\n“Look at this!”\nEven so ye also, when ye see these things coming to pass, know ye that the kingdom of God is nigh.\nI’d take it as a favor if you’d lap that blanket shut before you turn around, the Charleston boy said.\nWherefore, my brethren, desire earnestly to prophesy, and forbid not to speak with tongues.\nAnd it came to pass, while they were perplexed thereabout, behold, two men stood by them in dazzling apparel:\nThat afternoon, when the wind had died down and the barnyard was quiet and warm, the grey goose led her seven goslings off the nest and out into the world.\nLook at all the fish around us.\nBlessed are ye that hunger now: for ye shall be filled. Blessed are ye that weep now: for ye shall laugh.\nIf any man’s work shall abide which he built thereon, he shall receive a reward.\nAnd we know that the Son of God is come, and hath given us an understanding, that we know him that is true, and we are in him that is true, even in his Son Jesus Christ. This is the true God, and eternal life.\nThe sisters therefore sent unto him, saying, Lord, behold, he whom thou lovest is sick.\nAnd he saith unto them, Let us go elsewhere into the next towns, that I may preach there also; for to this end came I forth.\nSo that the law is holy, and the commandment holy, and righteous, and good.\nBy faith Joseph, when his end was nigh, made mention of the departure of the children of Israel; and gave commandment concerning his bones.\nIt took them the better part of two months to make the journey back to the Nation, because they paused on the way in New York City to watch a few plays and in Washington City to go to parties attended by members of both houses of Congress.\nEvery valley shall be filled, And every mountain and hill shall be brought low; And the crooked shall become straight, And the rough ways smooth;\nHe was a half-blood and lived on the outskirts of our land.\nBook me a cabin to the fore, then.\nMe and Will can save us.\nAnd into whatsoever house ye shall enter, first say, Peace be to this house.\nBut some of them went away to the Pharisees, and told them the things which Jesus had done.\nHe that loveth me not keepeth not my words: and the word which ye hear is not mine, but the Father’s who sent me.\nfor then shall be great tribulation, such as hath not been from the beginning of the world until now, no, nor ever shall be.\nFern took no notice of the others in the bus. She just sat and stared out of the window, thinking what a blissful world it was and how lucky she was to have entire charge of a pig.\nThe old sheep spoke to him about his size one day.\nI know a man in Christ, fourteen years ago (whether in the body, I know not; or whether out of the body, I know not; God knoweth), such a one caught up even to the third heaven.\nHe would have felt lonely and homesick, had Charlotte not been with him.\n“I’m not going to spend all my time fetching and carrying.\nAnd the king rose up, and the governor, and Bernice, and they that sat with them:\nHereby know ye the Spirit of God: every spirit that confesseth that Jesus Christ is come in the flesh is of God:\nPilate therefore said unto him, Art thou a king then? Jesus answered, Thou sayest that I am a king. To this end have I been born, and to this end am I come into the world, that I should bear witness unto the truth. Every one that is of the truth heareth my voice.\nAnd with many such parables spake he the word unto them, as they were able to hear it;\nand saith unto them, Go your way into the village that is over against you: and straightway as ye enter into it, ye shall find a colt tied, whereon no man ever yet sat; loose him, and bring him.\nThen he poureth water into the basin, and began to wash the disciples’ feet, and to wipe them with the towel wherewith he was girded.\nFor to this end we labor and strive, because we have our hope set on the living God, who is the Saviour of all men, specially of them that believe.\nMr. Zuckerman had the best swing in the county.\nAnd they set up over his head his accusation written, THIS IS JESUS THE KING OF THE JEWS.\nAnd this gospel of the kingdom shall be preached in the whole world for a testimony unto all the nations; and then shall the end come.\nAnd it came to pass, when he went into the house of one of the rulers of the Pharisees on a sabbath to eat bread, that they were watching him.\nAnd he said to him also that had bidden him, When thou makest a dinner or a supper, call not thy friends, nor thy brethren, nor thy kinsmen, nor rich neighbors; lest haply they also bid thee again, and a recompense be made thee.\nThis is what they do when they put on shoes, said Wolf, nearly crying\n“Charlotte never fibs.\nThe goose shouted to the nearest cow that Wilbur was free, and soon all the cows knew.\naccounting that God is able to raise up, even from the dead; from whence he did also in a figure receive him back.\nOf the tribe of Zebulun twelve thousand; Of the tribe of Joseph twelve thousand; Of the tribe of Benjamin were sealed twelve thousand.\nPerhaps, Private Perry, you might build the woodpile a bit higher before dark.\n“Thank you, thank you, thank you!” said the goose, nodding and bowing shamelessly.\nWhosoever believeth that Jesus is the Christ is begotten of God: and whosoever loveth him that begat loveth him also that is begotten of him.\nMight have been that your horse wheeled and bolted as you were trying to unholster your pistol.\nLong curved claws the color of charcoal for his grandchildren to auger holes through and string into necklaces and keep as relics to remember Charley, evidence of his existence long after he was gone.\nNow what about your other foot?\nWilbur hesitated a moment, then jumped out into the air.\nwhich he wrought in Christ, when he raised him from the dead, and made him to sit at his right hand in the heavenly places,\n“You may have the egg.\nyea, I beseech you, that I may not when present show courage with the confidence wherewith I count to be bold against some, who count of us as if we walked according to the flesh.\nAnd from the days of John the Baptist until now the kingdom of heaven suffereth violence, and men of violence take it by force.\nAt which point the men righteously objected and drew their hidden hatchets.\nAnd the soldiers led him away within the court, which is the Prætorium; and they call together the whole band.\nand because he was of the same trade, he abode with them, and they wrought; for by their trade they were tentmakers.\nand Andrew, and Philip, and Bartholomew, and Matthew, and Thomas, and James the son of Alphæus, and Thaddæus, and Simon the Cananæan,\nGood morning!\n“Charlotte,” he moaned.\nI say unto you, that unto every one that hath shall be given; but from him that hath not, even that which he hath shall be taken away from him.\nAnd when the chief Shepherd shall be manifested, ye shall receive the crown of glory that fadeth not away.\nFor I am jealous over you with a godly jealousy: for I espoused you to one husband, that I might present you as a pure virgin to Christ.\nWherefore judge nothing before the time, until the Lord come, who will both bring to light the hidden things of darkness, and make manifest the counsels of the hearts; and then shall each man have his praise from God.\nAnd they platted a crown of thorns and put it upon his head, and a reed in his right hand; and they kneeled down before him, and mocked him, saying, Hail, King of the Jews!\nIt's a little service I throw in.”\n“Look,” he began in his sharp voice, “you say you have seven goslings.\nAnd he that falleth on this stone shall be broken to pieces: but on whomsoever it shall fall, it will scatter him as dust.\nBlessed are they that mourn: for they shall be comforted.\nHe dropped to his knees and uttered a short prayer.\nWilbur heard the words of praise.\nLook at you!\nand upon her forehead a name written, MYSTERY, BABYLON THE GREAT, THE MOTHER OF THE HARLOTS AND OF THE ABOMINATIONS OF THE EARTH.\nAnd to the angel of the church in Sardis write: These things saith he that hath the seven Spirits of God, and the seven stars: I know thy works, that thou hast a name that thou livest, and thou art dead.\nAnd Jesus said, For judgment came I into this world, that they that see not may see; and that they that see may become blind.\nBut I say unto you, it shall be more tolerable for Tyre and Sidon in the day of judgment, than for you.\nAnd the four and twenty elders, who sit before God on their thrones, fell upon their faces and worshipped God,\nOn the morrow the multitude that stood on the other side of the sea saw that there was no other boat there, save one, and that Jesus entered not with his disciples into the boat, but that his disciples went away alone\nAnd then if any man shall say unto you, Lo, here is the Christ; or, Lo, there; believe it not:\nWatch and pray, that ye enter not into temptation: the spirit indeed is willing, but the flesh is weak.\nI said, Well, I do wear shoes and can count to twenty with them on and everything, but there are lots of chiefs.\nIn your patience ye shall win your souls.\nBut when the king came in to behold the guests, he saw there a man who had not on a wedding-garment:\nWilbur looked up.\nAnd he taketh with him Peter and James and John, and began to be greatly amazed, and sore troubled.\nThis morning each thin strand was decorated with dozens of tiny beads of water.\nTempleton had quit work and gone off somewhere on an errand.\nAnd they said unto him, The disciples of John fast often, and make supplications; likewise also the disciples of the Pharisees; but thine eat and drink.\nAnnas therefore sent him bound unto Caiaphas the high priest.\nThere wasn’t time to say anything.\nWe must work the works of him that sent me, while it is day: the night cometh, when no man can work.\nWatch therefore: for ye know not on what day your Lord cometh.\nAnd when the Pharisee saw it, he marvelled that he had not first bathed himself before dinner.\nAnd in that day ye shall ask me no question. Verily, verily, I say unto you, If ye shall ask anything of the Father, he will give it you in my name.\nThe next day was foggy.\nHe had never actually seen it done.\nand he saith unto them, It is written, My house shall be called a house of prayer: but ye make it a den of robbers.\nXX:The Hour of Triumph\nThe younger men—Lowan and George, Jake, and the boy Wasseton—wore brown felt hats, and old Charley had on a white headcloth tied in a band around his forehead.\nOr the big cleared fields planted with indigo or cotton, their dizzying furrows running in converging lines to a distant flat horizon unlike any I had ever seen before.\nAnd the disciples did as Jesus appointed them; and they made ready the passover.\nAnd he left them, and went forth out of the city to Bethany, and lodged there.\nNicodemus answered and said unto him, How can these things be?\nAnd Joseph took the body, and wrapped it in a clean linen cloth,\nThe bear did not charge but made a single plosive utterance, a huff.\nBut by the grace of God I am what I am: and his grace which was bestowed upon me was not found vain; but I labored more abundantly than they all: yet not I, but the grace of God which was with me.\nAnd the day of unleavened bread came, on which the passover must be sacrificed.\nEven now, when Bear wanted to cut a dash for children, he sometimes exhibited the parallel welted scars across his back and ribs where the claws had scored him to the bone in their last embrace.\nAnd they had then a notable prisoner, called Barabbas.\nThat was freedom.\n“Please come with me!” begged Wilbur.\n“Slowly, slowly. said Charlotte.\nThey took Jesus therefore: and he went out, bearing the cross for himself, unto the place called The place of a skull, which is called in Hebrew Golgotha:\nAnd Pilate said unto them, Why, what evil hath he done? But they cried out exceedingly, Crucify him.\nAgain therefore Jesus spake unto them, saying, I am the light of the world: he that followeth me shall not walk in the darkness, but shall have the light of life.\nYou will live, secure and safe, Wilbur.\nFor if Joshua had given them rest, he would not have spoken afterward of another day.\nMother, wouldn’t you simply love to do that?”\nWhat then is my reward? That, when I preach the gospel, I may make the gospel without charge, so as not to use to the full my right in the gospel.\nand crying out with a loud voice, he saith, What have I to do with thee, Jesus, thou Son of the Most High God? I adjure thee by God, torment me not.\nEven as Abraham believed God, and it was reckoned unto him for righteousness.\nAnd he saith unto them, Whose is this image and superscription?\nBut solid food is for fullgrown men, even those who by reason of use have their senses exercised to discern good and evil. \nFor I am the least of the apostles, that am not meet to be called an apostle, because I persecuted the church of God.\nBut she also looks at something you might not notice -- soil.\nNo man can serve two masters: for either he will hate the one, and love the other; or else he will hold to one, and despise the other. Ye cannot serve God and mammon.\nWay down the cove they could hear a long cackling laugh.\nBut did you know, from this day on - a legend it may well be - But once a year at a certain time we honor the evergreen tree.\nthe son of Matthat, the son of Levi, the son of Melchi, the son of Jannai, the son of Joseph,\nAnd call no man your father on the earth: for one is your Father, even he who is in heaven.\nAnd all things, whatsoever ye shall ask in prayer, believing, ye shall receive.\nFor, He put all things in subjection under his feet. But when he saith, All things are put in subjection, it is evident that he is excepted who did subject all things unto him.\nUp we go!\nthen he appeared to above five hundred brethren at once, of whom the greater part remain until now, but some are fallen asleep;\nRebuke not an elder, but exhort him as a father; the younger men as brethren:\nand Simon he surnamed Peter;\nBy that point in the night, all the other officers had wandered back down the hill.\nI dare say my trick will work and Wilbur’s life can be saved.\nBut when ye see Jerusalem compassed with armies, then know that her desolation is at hand.\n“Then my name is Joy,” said the first spider.\nBut Peter arose, and ran unto the tomb; and stooping and looking in, he seeth the linen cloths by themselves; and he departed to his home, wondering at that which was come to pass.\nin the highpriesthood of Annas and Caiaphas, the word of God came unto John the son of Zacharias in the wilderness.\nAnd it came to pass in those days, that Jesus came from Nazareth of Galilee, and was baptized of John in the Jordan.\nThen one morning we rode up unexpectedly on sixteen fugitives camped right out in the open by the river with no apparent thought to concealment.\nAnd he suffered no man to follow with him, save Peter, and James, and John the brother of James.\nAnd then when he was done, he reached in a finger and pulled out a bare little skull and showed it cupped in his palm like it was a fine achievement, his own creation worthy of favorable comment.\nand he said unto them, Did ye receive the Holy Spirit when ye believed? And they said unto him, Nay, we did not so much as hear whether the Holy Spirit was given.\nWherefore, my brethren, when ye come together to eat, wait one for another.\nCircumcision is nothing, and uncircumcision is nothing; but the keeping of the commandments of God.\nFor he must reign, till he hath put all his enemies under his feet.\nShe was about the size of a gumdrop.\nAnd other fell on the rocky ground, where it had not much earth; and straightway it sprang up, because it had no deepness of earth:\nWilbur heard the trill of the tree toad and the occasional slamming of the kitchen door.\nWhen a small ﬂy blundered into the web, just beyond the word “pig,” Charlotte dropped quickly down, rolled the ﬂy up, and carried it out of the way.\neven as the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many.\nThe Green Man laid down all these conditions, and God offered no additional opinions on his own but just kicked his bare feet against the air and pulled at the leaves of the man’s tunic and looked around as if seeing everything he had made for the first time, and his attitude was one of surprise and delight.\n“Stop showing off!”\nHe said therefore, Unto what is the kingdom of God like? and whereunto shall I liken it?\nFor there is no good tree that bringeth forth corrupt fruit; nor again a corrupt tree that bringeth forth good fruit.\n“Pig, pig!” said Mr. Zuckerman in a kind voice, and began walking slowly toward the barnyard, looking all about him innocently, as if he didn’t know that a little white pig was following along behind him.\nBut ye, beloved, building up yourselves on your most holy faith, praying in the Holy Spirit,\nShe said, You might consider just letting people think a chief is whatever they imagine it to be without further correction.\nFor neither at any time were we found using words of flattery, as ye know, nor a cloak of covetousness, God is witness;\nHe swam closer and watched leaves and small twigs float down the hole.\nHe set about peeling and slicing them and brewing a pot of bitter tea the color of strong urine.\nYou can hear them now.”\nPeter saith unto him, Lord, why cannot I follow thee even now? I will lay down my life for thee.\nHasp and staple, collar and hames.\nWhen Templeton got back from the dump, around midnight, the spider was still at work.\nthe son of Symeon, the son of Judas, the son of Joseph, the son of Jonam, the son of Eliakim,\nThe sower went forth to sow his seed: and as he sowed, some fell by the way side; and it was trodden under foot, and the birds of the heaven devoured it.\nfor God is not unrighteous to forget your work and the love which ye showed toward his name, in that ye ministered unto the saints, and still do minister.\nWilbur heard them coming and got up.\nFor he whom God hath sent speaketh the words of God: for he giveth not the Spirit by measure.\nBut always two or three stayed and set up housekeeping in the doorway.\nAnd straightway all the multitude, when they saw him, were greatly amazed, and running to him saluted him.\nBecause thou didst keep the word of my patience, I also will keep thee from the hour of trial, that hour which is to come upon the whole world, to try them that dwell upon the earth.\nI want you to get plenty of sleep, and stop worrying.\nHe must have been as tall and as strong as these trees.\nand by reason thereof is bound, as for the people, so also for himself, to offer for sins.\nAnd when he cometh home, he calleth together his friends and his neighbors, saying unto them, Rejoice with me, for I have found my sheep which was lost.\nIt’s a lovely evening.”\nGod forbid: yea, let God be found true, but every man a liar; as it is written, That thou mightest be justified in thy words, And mightest prevail when thou comest into judgment.\nAnd I saw, and behold, a pale horse: and he that sat upon him, his name was Death; and Hades followed with him. And there was given unto them authority over the fourth part of the earth, to kill with sword, and with famine, and with death, and by the wild beasts of the earth.\nFern and Avery climbed into the truck and lay down.\nIt is quite possible that an animal has spoken civilly to me and that I didn’t catch the remark because I wasn’t paying attention.\nBut if I by the Spirit of God cast out demons, then is the kingdom of God come upon you.\nMr. Zuckerman took off his cap and bowed.\nOr how can one enter into the house of the strong man, and spoil his goods, except he first bind the strong man? and then he will spoil his house.\nIt had been a narrow escape.\nWere there none found that returned to give glory to God, save this stranger?\nI would like you to have my first apple.\nTogether they studied the soap ad.\nAnd they were not able to withstand the wisdom and the Spirit by which he spake.\nLet none be enrolled as a widow under threescore years old, having been the wife of one man,\n“Do they taste good?”\nAnd John bare witness, saying, I have beheld the Spirit descending as a dove out of heaven; and it abode upon him.\nAnd they that passed by railed on him, wagging their heads, and saying, Ha! thou that destroyest the temple, and buildest it in three days,\nAnd I saw coming out of the mouth of the dragon, and out of the mouth of the beast, and out of the mouth of the false prophet, three unclean spirits, as it were frogs:\nand shall come forth; they that have done good, unto the resurrection of life; and they that have done evil, unto the resurrection of judgment.\nOne day, drinking in the lounge of the Queen, Crockett noted that there had been a withering attack on him in one of the morning papers.\nCharley went at a near trot, bent double to look for fading sign.\nLittlefish was afraid but swam up to it anyway and said, Hello, I am called Littlefish and I have never seen a fish like you.\nShove!”\nthe son of Jesus, the son of Eliezer, the son of Jorim, the son of Matthat, the son of Levi,\nEach spring there were new little spiders hatching out to take the place of the old.\nAnd now, behold, I know that ye all, among whom I went about preaching the kingdom, shall see my face no more.\nwho, existing in the form of God, counted not the being on an equality with God a thing to be grasped,\n“So it’s old Templeton to the rescue again, is it?\nNow he was highly displeased with them of Tyre and Sidon: and they came with one accord to him, and, having made Blastus the king’s chamberlain their friend, they asked for peace, because their country was fed from the king’s country.\nHaving promised Wilbur that she would save his life, she was determined to keep her promise.\nThe nutrients from the snake are becoming part of the soil.\nbecause for the work of Christ he came nigh unto death, hazarding his life to supply that which was lacking in your service toward me. \nAnd it was given unto him to give breath to it, even to the image of the beast, that the image of the beast should both speak, and cause that as many as should not worship the image of the beast should be killed.\nHis young clerks traded right by the stockade, where they were penned until the cart they sold from was ordered to be confiscated.\nI press on toward the goal unto the prize of the high calling of God in Christ Jesus.\nBusted all to fuck, he said.\nJust before they left the pigpen, Mr. Zuckerman took one last look at Wilbur.\nThe bishop therefore must be without reproach, the husband of one wife, temperate, sober-minded, orderly, given to hospitality, apt to teach;\nFor every one that exalteth himself shall be humbled; and he that humbleth himself shall be exalted.\nI loved the old man and would do anything for him, and also I believed that Bear’s people had as much right to decide where they cared to live as anybody else.\nAnd they began to question among themselves, which of them it was that should do this thing.\nAnd after they had spent some time there, they were dismissed in peace from the brethren unto those that had sent them forth.\nHumble yourselves in the sight of the Lord, and he shall exalt you.\neven so, being affectionately desirous of you, we were well pleased to impart unto you, not the gospel of God only, but also our own souls, because ye were become very dear to us.\nHe looked out the window for a minute of deep contemplation and then, all at one fast swoop, said, During the period of detention, this Cooper sold the Indians popskull liquor at prices that would buy a whiteman bonded Tennessee whiskey.\nThe children were hot and dirty.\nFor the grace of God hath appeared, bringing salvation to all men,\nInfluential Chiefs and some white residents among them, stimulated by sordid views and either feeling or pretending to feel for their situation encourage every proposition adverse to their own true interest and the wishes of the U.S. Government.\nand came and dwelt in a city called Nazareth; that it might be fulfilled which was spoken through the prophets, that he should be called a Nazarene. \nHe noticed that something was wrong with the pig.\nAnd he said unto him, Arise, and go thy way: thy faith hath made thee whole.\nMy love be with you all in Christ Jesus. Amen.\nThere cometh a woman of Samaria to draw water: Jesus saith unto her, Give me to drink.\nwe are pressed on every side, yet not straitened; perplexed, yet not unto despair;\nHe sat drafting his report atop a little folding table, and the ground at his feet was littered with balled sheets of paper.\nbut unto them that are factious, and obey not the truth, but obey unrighteousness, shall be wrath and indignation,\nand sent forth his servants to call them that were bidden to the marriage feast: and they would not come.\nBy faith Jacob, when he was dying, blessed each of the sons of Joseph; and worshipped, leaning upon the top of his staff.\nBut the boat was now in the midst of the sea, distressed by the waves; for the wind was contrary.\nWhen Mr. Zuckerman reached the pigpen, he climbed over the fence and poured the slops into the trough. Then he pulled the loose board away from the fence, so that there was a wide hole for Wilbur to walk through.\nSpearfinger the Monster.\nBut if any of you lacketh wisdom, let him ask of God, who giveth to all liberally and upbraideth not; and it shall be given him.\nFor if a woman is not veiled, let her also be shorn: but if it is a shame to a woman to be shorn or shaven, let her be veiled.\n“Charlotte?” he said.\nArt thou not then the Egyptian, who before these days stirred up to sedition and led out into the wilderness the four thousand men of the Assassins?\nHe that loveth father or mother more than me is not worthy of me; and he that loveth son or daughter more than me is not worthy of me.\nthat ye may eat and drink at my table in my kingdom; and ye shall sit on thrones judging the twelve tribes of Israel.\nThough Bear and I had sat up late nights for years planning the future—hoping and despairing over it, resolving to fight against it all we could—most of the people didn’t at all understand what immediate threat of losing their homeland they now lived under.\nBut this I say, brethren, the time is shortened, that henceforth both those that have wives may be as though they had none;\nAnd after he had taken leave of them, he departed into the mountain to pray.\nand Salmon begat Boaz of Rahab; and Boaz begat Obed of Ruth; and Obed begat Jesse;\n“Oh, no,” said Zuckcrman.\nbut in the days of the voice of the seventh angel, when he is about to sound, then is finished the mystery of God, according to the good tidings which he declared to his servants the prophets.\nWork not for the food which perisheth, but for the food which abideth unto eternal life, which the Son of man shall give unto you: for him the Father, even God, hath sealed.\nFor he received from God the Father honor and glory, when there was borne such a voice to him by the Majestic Glory, This is my beloved Son, in whom I am well pleased:\nAnd the gander opened his strong wings and beat the air with them to show his power.\nThen released he unto them Barabbas; but Jesus he scourged and delivered to be crucified.\nThe dog kept barking fiercely.\nAnd I say unto you, Make to yourselves friends by means of the mammon of unrighteousness; that, when it shall fail, they may receive you into the eternal tabernacles.\nYour pants are coming down.”\n“What’s wrong?” asked the loud speaker.\nAnd he appointed twelve, that they might be with him, and that he might send them forth to preach,\nBut to you I say, to the rest that are in Thyatira, as many as have not this teaching, who know not the deep things of Satan, as they are wont to say; I cast upon you none other burden.\nAlright, said Wolf, barely.\nWe sprawled on the broad river rocks at noon, and the sun scalded our buttocks as in days of yesteryear.\nbut contrariwise, when they saw that I had been intrusted with the gospel of the uncircumcision, even as Peter with the gospel of the circumcision\n(for he that wrought for Peter unto the apostleship of the circumcision wrought for me also unto the Gentiles);\nFor when one saith, I am of Paul; and another, I am of Apollos; are ye not men?\nthat the God of our Lord Jesus Christ, the Father of glory, may give unto you a spirit of wisdom and revelation in the knowledge of him;\nCharley’s fire would have fit in his pair of hands, and when it began dying he covered it with dirt, for it is a bad and unbalancing thing to put out fires with water.\nFor I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed to us-ward.\nThen saith he to the man, Stretch forth thy hand. And he stretched it forth; and it was restored whole, as the other.\nAnd when he was accused by the chief priests and elders, he answered nothing.\nor unto governors, as sent by him for vengeance on evil-doers and for praise to them that do well.\nJust watch what you're doing, Mr. Radiant, when they get shoving you in!”\n“I’m back here,” she answered.\nAnd they put forward two, Joseph called Barsabbas, who was surnamed Justus, and Matthias.\nAnd it came to pass, when he had sat down with them to meat, he took the bread and blessed; and breaking it he gave to them.\nAnd I felt like there was something following close behind me.\n“I'm a doctor.\nAnd behold, two blind men sitting by the way side, when they heard that Jesus was passing by, cried out, saying, Lord, have mercy on us, thou son of David.\n“Hurry up, Templeton!”\nAnd the eunuch answered Philip, and said, I pray thee, of whom speaketh the prophet this? of himself, or of some other?\nhaving been buried with him in baptism, wherein ye were also raised with him through faith in the working of God, who raised him from the dead.\nFor behold, the days are coming, in which they shall say, Blessed are the barren, and the wombs that never bare, and the breasts that never gave suck.\nExcept for the goose herself, Charlotte was the first to know that the goslings had at last arrived.\nand is divided. So also the woman that is unmarried and the virgin is careful for the things of the Lord, that she may be holy both in body and in spirit: but she that is married is careful for the things of the world, how she may please her husband.\nAnd Pilate, wishing to content the multitude, released unto them Barabbas, and delivered Jesus, when he had scourged him, to be crucified.\nAll I could say was that the ball remained in play.\nBut love your enemies, and do them good, and lend, never despairing; and your reward shall be great, and ye shall be sons of the Most High: for he is kind toward the unthankful and evil.\nWhen Pilate therefore heard this saying, he was the more afraid;\n“You’re getting your pie on you,” said Fern.\nNow to Abraham were the promises spoken, and to his seed. He saith not, And to seeds, as of many; but as of one, And to thy seed, which is Christ.\nDon't pay any attention to him, Wilbur! \nIt was arranged so that you could swing without being pushed.\nFor we did not follow cunningly devised fables, when we made known unto you the power and coming of our Lord Jesus Christ, but we were eyewitnesses of his majesty.\nand this, not as we had hoped, but first they gave their own selves to the Lord, and to us through the will of God.\nto the end that ye should walk worthily of God, who calleth you into his own kingdom and glory.\nWherefore also it was reckoned unto him for righteousness.\n“I’m sitting- sitting on my eggs.\nAnd Jesus looked round about, and saith unto his disciples, How hardly shall they that have riches enter into the kingdom of God!\nAnd seeing a fig tree afar off having leaves, he came, if haply he might find anything thereon: and when he came to it, he found nothing but leaves; for it was not the season of figs.\nEveryone but Charley stood off in the trees and waited.\nthat he might redeem them that were under the law, that we might receive the adoption of sons.\nAnd they were bringing unto him little children, that he should touch them: and the disciples rebuked them.\nAnd they were more than forty that made this conspiracy.\nfor the Holy Spirit shall teach you in that very hour what ye ought to say.\nThe youngest boy was named Wasseton in honor of the first president, and he led a little small-boned packhorse loaded with a lumpy burden of food and pots and blankets.\nhaving the glory of God: her light was like unto a stone most precious, as it were a jasper stone, clear as crystal:\n“Well,” said Charlotte, “you and I lead different lives.\nDecomposers break dead things down into soil.\nHe wished he had a great double-barreled gun as long as he was tall with which to kill whoever he could until they overwhelmed him.\n(As he spake by the mouth of his holy prophets that have been from of old),\nWhen I knew him, he was a figure of folklore; it took the Alamo to elevate him all the way to myth.\nAnd his disciples came, and took up the corpse, and buried him; and they went and told Jesus.\nBut how do dead plants and animals become soil?\nThe whites of the colonel’s eyes were the color of the suet, and he looked at me a long time before saying, How did it ever occur to me to send you two out together?\nI started to remind Smith that I was not under his command and had not taken a cent in pay from the Government and would do as I pleased and call my own orders.\nThe Son of man shall send forth his angels, and they shall gather out of his kingdom all things that cause stumbling, and them that do iniquity,\nand when they found not his body, they came, saying, that they had also seen a vision of angels, who said that he was alive.\nIn that place, worms never die, and the fire is never put out.\nand cried out as they looked upon the smoke of her burning, saying, What city is like the great city?\nRemember Jesus Christ, risen from the dead, of the seed of David, according to my gospel:\nAnd Jesus answered and said unto them, Go and tell John the things which ye hear and see:\nLike Fern, she was truly fond of Wilbur, whose smelly pen and stale food attracted the flies that she needed,  and she was proud to see that he was not a quitter and was willing to try again to spin a web.\nAnd it was so, that the father of Publius lay sick of fever and dysentery: unto whom Paul entered in, and prayed, and laying his hands on him healed him.\nthis man went to Pilate, and asked for the body of Jesus.\nAnd the first went, and poured out his bowl into the earth; and it became a noisome and grievous sore upon the men that had the mark of the beast, and that worshipped his image.\nAnd he also that received the two talents came and said, Lord, thou deliveredst unto me two talents: lo, I have gained other two talents.\nYou’re a man with payments.\nAnd a second like unto it is this, Thou shalt love thy neighbor as thyself.\nif so be that ye have heard of the dispensation of that grace of God which was given me to you-ward;\nThe officers drank all the Moët’s and Macallan’s Scotch that could be kept coming by the wagonload up the roads from Charleston.\nAnd that is also why I did not arrive at the killing ground until the morning after and had to piece together what happened from the sign on the ground.\n I'll wait until it is morning, then I'll go, he thought, feeling bold.\nFor it were better for them not to have known the way of righteousness, than, after knowing it, to turn back from the holy commandment delivered unto them.\nNot at all lonely.”\nAnd he questioned him in many words; but he answered him nothing.\nfor with the heart man believeth unto righteousness; and with the mouth confession is made unto salvation.\nAnd he said, I tell thee, Peter, the cock shall not crow this day, until thou shalt thrice deny that thou knowest me.\nIf you’re going to water it down, you might as well be drinking the piss Welch sells at the tavern.\nThe Commandments were, as always, especially favorable to the rulers.\nand that he might make known the riches of his glory upon vessels of mercy, which he afore prepared unto glory,\nWhen they got there Charlie gave a warning shout.\nAnd it came to pass on one of those days, that he was teaching; and there were Pharisees and doctors of the law sitting by, who were come out of every village of Galilee and Judæa and Jerusalem: and the power of the Lord was with him to heal.\nand their word will eat as doth a gangrene: of whom is Hymenæus and Philetus;\nAnd might have been that if I’d come along with you I could have said something that would have mattered.\nYea and thou, child, shalt be called the prophet of the Most High: For thou shalt go before the face of the Lord to make ready his ways;\nNow this man had four virgin daughters, who prophesied.\nFern bit into a raspberry that had a bad-tasting bug inside it, and got discouraged.\nwhose end is perdition, whose god is the belly, and whose glory is in their shame, who mind earthly things.\nFern was happy, for she felt that Charlotte’s trick was working and that Wilbur’s life would be saved.\nThe boy took two strips of deer jerky from a pouch and reached them to Charley.\nEverybody keep quiet while I put the matter up to him!”\nThen, when Mrs. Arable complained, he was moved to a bigger box in the woodshed.\nVerily, verily, I say unto you, He that entereth not by the door into the fold of the sheep, but climbeth up some other way, the same is a thief and a robber.\nTalk it up, geese!”\nFor the Son of man indeed goeth, as it hath been determined: but woe unto that man through whom he is betrayed!\nAnd Zacharias was troubled when he saw him, and fear fell upon him.\nAnd he gave heed unto them, expecting to receive something from them.\nAnd if any man obeyeth not our word by this epistle, note that man, that ye have no company with him, to the end that he may be ashamed.\nRepent ye therefore, and turn again, that your sins may be blotted out, that so there may come seasons of refreshing from the presence of the Lord;\nWhere their worm dieth not, and the fire is not quenched.\nAnd when all things have been subjected unto him, then shall the Son also himself be subjected to him that did subject all things unto him, that God may be all in all.\nMary therefore, when she came where Jesus was, and saw him, fell down at his feet, saying unto him, Lord, if thou hadst been here, my brother had not died.\nNevertheless I must go on my way to-day and to-morrow and the day following: for it cannot be that a prophet perish out of Jerusalem.\nAnd in the synagogue there was a man, that had a spirit of an unclean demon; and he cried out with a loud voice,\nVerily I say unto you, Whosoever shall say unto this mountain, Be thou taken up and cast into the sea; and shall not doubt in his heart, but shall believe that what he saith cometh to pass; he shall have it.\nAnd this is love, that we should walk after his commandments. This is the commandment, even as ye heard from the beginning, that ye should walk in it.\nAnd when even was come, the disciples came to him, saying, The place is desert, and the time is already past; send the multitudes away, that they may go into the villages, and buy themselves food.\nPeople suffer and die in ignorance and delusion.\nSo he reasoned in the synagogue with the Jews and the devout persons, and in the marketplace every day with them that met him.\nAnd the king was exceeding sorry; but for the sake of his oaths, and of them that sat at meat, he would not reject her.\nand chief seats in the synagogues, and chief places at feasts:\nWhat good is an apple tree that makes no apples? asked the little tree.\nFor he knew that for envy they had delivered him up.\nAnd the dragon waxed wroth with the woman, and went away to make war with the rest of her seed, that keep the commandments of God, and hold the testimony of Jesus:\nThe rat grinned.\nAnd he released him that for insurrection and murder had been cast into prison, whom they asked for; but Jesus he delivered up to their will.\nLet no man seek his own, but each his neighbor’s good.\nAnother parable set he before them, saying, The kingdom of heaven is like unto a grain of mustard seed, which a man took, and sowed in his field:\nAnd the kings of the earth, who committed fornication and lived wantonly with her, shall weep and wail over her, when they look upon the smoke of her burning,\nand madest them to be unto our God a kingdom and priests; and they reign upon the earth.\nAnd a certain ruler asked him, saying, Good Teacher, what shall I do to inherit eternal life?\n“She's got a guest for breakfast,” said Mrs. Arable.\nAnd the scripture was fulfilled, which saith, And he was numbered with the transgressors.\nIt was necessary to draw the line somewhere.\nIf a man say, I love God, and hateth his brother, he is a liar: for he that loveth not his brother whom he hath seen, cannot love God whom he hath not seen.\nAnd of course he was right.\nBrethren, I count not myself yet to have laid hold: but one thing I do, forgetting the things which are behind, and stretching forward to the things which are before,\nThey're wearing them with wider brims and rounder crowns of late.\n“No good,” said Charlotte.\nWe were buried therefore with him through baptism into death: that like as Christ was raised from the dead through the glory of the Father, so we also might walk in newness of life.\nand looking up to heaven, he sighed, and saith unto him, Ephphatha, that is, Be opened.\nwho gave himself for us, that he might redeem us from all iniquity, and purify unto himself a people for his own possession, zealous of good works.\nAnd when this sound was heard, the multitude came together, and were confounded, because that every man heard them speaking in his own language.\nLet no corrupt speech proceed out of your mouth, but such as is good for edifying as the need may be, that it may give grace to them that hear.\nBut he again denied it. And after a little while again they that stood by said to Peter, Of a truth thou art one of them; for thou art a Galilæan.\n“I don’t think there is any such thing as less than nothing.\n“No,” she replied.\n“Got a little piece of string I could borrow?” asked Wilbur.\nThere was a way about their eyes meeting, a way their hands touched in the passing of a teacup, tones of voice in speaking to each other.\nAnd they took him, and beat him, and sent him away empty.\nOne evening it had just gotten dark. I was driving back from the store going home.\nI am the Alpha and the Omega, saith the Lord God, who is and who was and who is to come, the Almighty.\nThere was a state highway about a quarter of a mile from our house, and a neighbor lived just on the other side of us, and you would see him walking these roads all the time.\nand said, What are ye willing to give me, and I will deliver him unto you? And they weighed unto him thirty pieces of silver.\nAnd when they led him away, they laid hold upon one Simon of Cyrene, coming from the country, and laid on him the cross, to bear it after Jesus.\nIt just shows what can happen if a person gets out of bed promptly. Let's eat!”\nThe former treatise I made, O Theophilus, concerning all that Jesus began both to do and to teach,\nShe climbed back up, moved over about an inch to the left, touched her spinnerets to the web, and then carried a line across to the right, forming the top of the T.\nTempleton poked his head from the straw.\nBelow the apple orchard, at the end of a path, was the dump where Mr. Zuckerman threw all sorts of trash and stuff that nobody wanted any more.\nAnd even as they refused to have God in their knowledge, God gave them up unto a reprobate mind, to do those things which are not fitting;\nThe children ate it and became all big-eyed with wonder at the taste, and the soldier boys, including the lieutenant, were not far behind in their appreciation.\n“You’ll miss your freedom,” honked the goose.\nBut Jesus turning and seeing her said, Daughter, be of good cheer; thy faith hath made thee whole. And the woman was made whole from that hour.\nThe sky seemed wider and a warm wind blew.\nSecrets are hard to keep.\nTherefore we have been comforted: and in our comfort we joyed the more exceedingly for the joy of Titus, because his spirit hath been refreshed by you all.\nBut the other disciples came in the little boat (for they were not far from the land, but about two hundred cubits off), dragging the net full of fishes.\nI Tertius, who write the epistle, salute you in the Lord.\nHe’s appealing to your stomach.”\nBuddy flew right into the limb\nAnd if thy brother sin against thee, go, show him his fault between thee and him alone: if he hear thee, thou hast gained thy brother.\nOne warm afternoon, Fern and Avery put on bathing suits and went down to the brook for a swim.\nI sliced potatoes in thin rounds and arrayed them pinwheel fashion in an iron skillet and daubed the top with butter and some more bacon slivers and lidded it and let it cook slow over grey coals until it was done.\nAnd Mary arose in these days and went into the hill country with haste, into a city of Judah;\nhe lodgeth with one Simon a tanner, whose house is by the sea side.\nThere is no fear of God before their eyes.\nAnd Pilate wrote a title also, and put it on the cross. And there was written, JESUS OF NAZARETH, THE KING OF THE JEWS.\nand when they come from the marketplace, except they bathe themselves, they eat not; and many other things there are, which they have received to hold, washings of cups, and pots, and brasen vessels.)\nMrs. Zuckerman prepared special meals for Wilbur.\nLetting constant motion stand in place of actual achievement, everything done half-assed, both tending to business and to the heart.\nWilbur was trembling again, but Charlotte was cool and collected.\nWhether therefore ye eat, or drink, or whatsoever ye do, do all to the glory of God.\nthat ye should remember the words which were spoken before by the holy prophets, and the commandment of the Lord and Saviour through your apostles:\nSimon Peter saith unto him, Lord, whither goest thou? Jesus answered, Whither I go, thou canst not follow me now; but thou shalt follow afterwards.\nBut he was determined to get in touch with his unknown friend.\nFor in the resurrection they neither marry, nor are given in marriage, but are as angels in heaven.\nhow that by revelation was made known unto me the mystery, as I wrote before in few words,\nThe lieutenant was sitting a little distance away with a candle lantern, writing up his report for the day.\nThe blacker and noisier the better.\n“Now the trouble starts,” thought Wilbur.\nEvery one that putteth away his wife, and marrieth another, committeth adultery: and he that marrieth one that is put away from a husband committeth adultery.\nBut Jesus perceiving their reasonings, answered and said unto them, Why reason ye in your hearts?\nno wallet for your journey, neither two coats, nor shoes, nor staff: for the laborer is worthy of his food.\nbut after thy hardness and impenitent heart treasurest up for thyself wrath in the day of wrath and revelation of the righteous judgment of God;\nI said, So the gist of your story is that you worry how many times during your rounds you can note knife cuts in wooden doorframes to memorialize the heights of children at various moments of infancy and still find it poignant?\nBe not ye therefore partakers with them;\nEveryone climbed in, and off they drove to the judge's booth in front of the grandstand.\nAll men and most women found her sidling manner charming in the extreme.\nNot that I have already obtained, or am already made perfect: but I press on, if so be that I may lay hold on that for which also I was laid hold on by Christ Jesus.\nI put Perry to work helping cook while the other two stood watch at the edge of camp.\nAt that time we had Bear’s thousand acres, which he owned outright, and my more extensive land, which I controlled mainly through a series of notes and IOUs as interlocked and tangled and messy as an old weathered osprey nest.\nI'll teach him, thought Rabbit.\nThe colonel touched a forefinger into the cold grey juice in his plate and then put the first joint of the finger into his mouth.\nAnd he said unto them, Take heed, and keep yourselves from all covetousness: for a man’s life consisteth not in the abundance of the things which he possesseth.\nAll the other fish called him Littlefish.\nShe doesn't like to find trash in the woods.\nhe foreseeing this spake of the resurrection of the Christ, that neither was he left unto Hades, nor did his flesh see corruption.\nVerily I say unto you, This generation shall not pass away, till all these things be accomplished.\nAnd he answereth them, and saith, Who is my mother and my brethren?\nA little leaven leaveneth the whole lump.\nAnd I saw when he opened the sixth seal, and there was a great earthquake; and the sun became black as sackcloth of hair, and the whole moon became as blood;\nand thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind, and with all thy strength.\nHe gulped and sucked, and sucked and gulped, making swishing and swooshing noises, anxious to get everything at once.\n“He’s long, and he’s smooth,” said Zuckerman.\nThe grace of our Lord Jesus Christ be with your spirit, brethren. Amen.\nThis is a picture of bacteria.\nAnd he charged us to preach unto the people, and to testify that this is he who is ordained of God to be the Judge of the living and the dead.\n“Oh, be quiet!” said the lamb.\nHe talked and we drank most of the night.\n“You know it couldn’t happen.\nFor this people’s heart is waxed gross, And their ears are dull of hearing, And their eyes they have closed; Lest haply they should perceive with their eyes, And hear with their ears, And understand with their heart, And should turn again, And I should heal them.\nThe thief cometh not, but that he may steal, and kill, and destroy: I came that they may have life, and may have it abundantly.\nAnd by the way, I've got some bad news.\nWhat do you think I am, anyway, a rat-of-all—work?”\nShe catches flies and sucks their blood.\n“No,” said her father.\nYe search the scriptures, because ye think that in them ye have eternal life; and these are they which bear witness of me;\nI said.\nI suppose the next thing you'll want me to fetch is a dictionary. \nThere isn’t a pig in the whole state that is as terrific as our pig.”\nBut it was meet to make merry and be glad: for this thy brother was dead, and is alive again; and was lost, and is found. \nShe's terribly clever.”\n“Many, many, many thanks!” they always said, when they saw food coming.\nI sent you to reap that whereon ye have not labored: others have labored, and ye are entered into their labor.\nwherefore neither thought I myself worthy to come unto thee: but say the word, and my servant shall be healed.\nI have therefore my glorying in Christ Jesus in things pertaining to God.\nI have a terrific pig.\nAnd they stripped him, and put on him a scarlet robe.\nWhen therefore the people saw the sign which he did, they said, This is of a truth the prophet that cometh into the world.\nWomen in like manner must be grave, not slanderers, temperate, faithful in all things.\nAnd when evening came, his disciples went down unto the sea;\nCome now, ye rich, weep and howl for your miseries that are coming upon you.\nWigwams and feather headdresses, maybe.\nSome therefore of them of Jerusalem said, Is not this he whom they seek to kill?\nBut wherefore went ye out? to see a prophet? Yea, I say unto you, and much more than a prophet.\nNow it came to pass, when all the people were baptized, that, Jesus also having been baptized, and praying, the heaven was opened,\nBut he had a counteroffer.\nAnd every day he was teaching in the temple; and every night he went out, and lodged in the mount that is called Olivet.\nthe lord of that servant shall come in a day when he expecteth not, and in an hour when he knoweth not,\nfor kings and all that are in high place; that we may lead a tranquil and quiet life in all godliness and gravity.\n“I have to hang around here whether I want to or not.\nHomer!\nLet such a one reckon this, that, what we are in word by letters when we are absent, such are we also in deed when we are present.\nA rotten egg is a regular stink bomb.”\n“Can I have some money?” asked Fern.\nFor he that lacketh these things is blind, seeing only what is near, having forgotten the cleansing from his old sins.\n“When do you work on it?” begged Wilbur.\nwild waves of the sea, foaming out their own shame; wandering stars, for whom the blackness of darkness hath been reserved for ever.\nthen he appeared to James; then to all the apostles;\n“Look out for Lurvy! called the cows.\n“I’ve sometimes wondered.\nThese are good spots for decomposers to hide from the sunlight.\nwhich he poured out upon us richly, through Jesus Christ our Saviour;\nWill the owner of a Pontiac car, license number H-2439, please move your car away from the fireworks shed!”\nThen shall they begin to say to the mountains, Fall on us; and to the hills, Cover us.\nHe put a sign around the tree, so no one would step on it.\nThou blind Pharisee, cleanse first the inside of the cup and of the platter, that the outside thereof may become clean also.\nAt two weeks of age, he was moved outdoors.\nNow in the fifteenth year of the reign of Tiberius Cæsar, Pontius Pilate being governor of Judæa, and Herod being tetrarch of Galilee, and his brother Philip tetrarch of the region of Ituræa and Trachonitis, and Lysanias tetrarch of Abilene,\nMy last one.\nAnd he gave him no answer, not even to one word: insomuch that the governor marvelled greatly.\nI was sleeping on this huge purple stuffed bear and there were people looking down on me from all directions.\nFor ye, brethren, became imitators of the churches of God which are in Judæa in Christ Jesus: for ye also suffered the same things of your own countrymen, even as they did of the Jews;\nAnd when we heard these things, both we and they of that place besought him not to go up to Jerusalem.\n“Once upon a time,” she began, “I had a beautiful cousin who managed to build her web across a small stream.\nBut on the first day of the week, at early dawn, they came unto the tomb, bringing the spices which they had prepared.\nand whom he foreordained, them he also called: and whom he called, them he also justified: and whom he justified, them he also glorified.\nlet him know, that he who converteth a sinner from the error of his way shall save a soul from death, and shall cover a multitude of sins.\nThe God of this people Israel chose our fathers, and exalted the people when they sojourned in the land of Egypt, and with a high arm led he them forth out of it.\nWilbur could see by the way they acted that they were glad to see him.\nAnd you did he make alive, when ye were dead through your trespasses and sins,\n“Can't a rat catch a wink of sleep without being rudely popped into the air?”\nCharley went into the clearing, walking effortfully on bowed legs like an old horseman, though he had seldom ridden.\nand that he may send the Christ who hath been appointed for you, even Jesus:\nI collected the two muskets, old worn trade pieces, where they lay propped against the hemlock trunk.\nAs the living Father sent me, and I live because of the Father; so he that eateth me, he also shall live because of me.\nand we toil, working with our own hands: being reviled, we bless; being persecuted, we endure;\nFor whether we live, we live unto the Lord; or whether we die, we die unto the Lord: whether we live therefore, or die, we are the Lord’s.\nAnd Jesus answered and said unto him, Blessed art thou, Simon Bar-Jonah: for flesh and blood hath not revealed it unto thee, but my Father who is in heaven.\nFor there are many unruly men, vain talkers and deceivers, specially they of the circumcision,\nI should say not.\nand he made of one every nation of men to dwell on all the face of the earth, having determined their appointed seasons, and the bounds of their habitation;\nBut when they continued asking him, he lifted up himself, and said unto them, He that is without sin among you, let him first cast a stone at her.\n“Fern’s got the itch! ” sang Avery.\nThen were they all of good cheer, and themselves also took food.\nLilacs bloom and make the air sweet, and then fade.\nBut I, brethren, if I still preach circumcision, why am I still persecuted? then hath the stumbling-block of the cross been done away.\n“Congratulations! ” murmured Templeton.\nAnd there are gathered together unto him the Pharisees, and certain of the scribes, who had come from Jerusalem,\n“How's that? \nconfirming the souls of the disciples, exhorting them to continue in the faith, and that through many tribulations we must enter into the kingdom of God.\nCarry no purse, no wallet, no shoes; and salute no man on the way.\nknowing that the proving of your faith worketh patience.\nBut he answered and said, Every plant which my heavenly Father planted not, shall be rooted up.\nThe lamp of thy body is thine eye: when thine eye is single, thy whole body also is full of light; but when it is evil, thy body also is full of darkness.\nunto which promise our twelve tribes, earnestly serving God night and day, hope to attain. And concerning this hope I am accused by the Jews, O king!\n“It pays to save things,” he said in his surly voice.\nwhose fan is in his hand, thoroughly to cleanse his threshing-floor, and to gather the wheat into his garner; but the chaff he will burn up with unquenchable fire.\nThe short of it was, Charley’s people had put us in danger.\neven Jesus of Nazareth, how God anointed him with the Holy Spirit and with power: who went about doing good, and healing all that were oppressed of the devil; for God was with him.\nthat in everything ye were enriched in him, in all utterance and all knowledge;\nholding forth the word of life; that I may have whereof to glory in the day of Christ, that I did not run in vain neither labor in vain.\nBut in giving you this charge, I praise you not, that ye come together not for the better but for the worse.\nHe would kill a gosling if he could get away with it—the goose knew that.\nfor this cause ought the woman to have a sign of authority on her head, because of the angels.\nout of the same mouth cometh forth blessing and cursing. My brethren, these things ought not so to be.\nFor this is the message which ye heard from the beginning, that we should love one another:\nnot by works done in righteousness, which we did ourselves, but according to his mercy he saved us, through the washing of regeneration and renewing of the Holy Spirit,\nAnd then I reached this line: Here roamed the red men of the forest, free as the breezes which fanned their raven locks.\nAnd they said unto him, We are able. And Jesus said unto them, The cup that I drink ye shall drink; and with the baptism that I am baptized withal shall ye be baptized:\nBut there was no direction to go other than forward.\nFor the life is more than the food, and the body than the raiment.\n“That’s wonderful,” said Wilbur.\nAnd upon a set day Herod arrayed himself in royal apparel, and sat on the throne, and made an oration unto them.\nPut it on! Put it on! they told Wolf.\nHe remembered what Charlotte had told him—that the sac was waterproof and strong.\nWho then is the faithful and wise servant, whom his lord hath set over his household, to give them their food in due season?\nUpstairs, Avery was already in bed and asleep.\nShe seemed to have shrunk during the night.\nAnd he said unto them, With desire I have desired to eat this passover with you before I suffer:\nI have never seen the thing that I found before.\n“May I get a drink of milk?\nhaving blotted out the bond written in ordinances that was against us, which was contrary to us: and he hath taken it out of the way, nailing it to the cross;\nand Asa begat Jehoshaphat; and Jehoshaphat begat Joram; and Joram begat Uzziah;\nFrom across the road a bird sang “Whippoorwill, whippoorwill! ” \nto Titus, my true child after a common faith: Grace and peace from God the Father and Christ Jesus our Saviour.\nThe word which he sent unto the children of Israel, preaching good tidings of peace by Jesus Christ (he is Lord of all)—\nThe man held the bowl and looked at the stem and then made a show of waving it across the flame of the fire to clean it.\nand without a parable spake he not unto them: but privately to his own disciples he expounded all things.\nWilbur looked at his friend.\nNow Jesus stood before the governor: and the governor asked him, saying, Art thou the King of the Jews? And Jesus said unto him, Thou sayest.\nJesus answered, Sayest thou this of thyself, or did others tell it thee concerning me?\nFor a man indeed ought not to have his head veiled, forasmuch as he is the image and glory of God: but the woman is the glory of the man.\nEven in a great pressing party crowd, everyone knew exactly where Crockett was at all times.\nIf we say that we have not sinned, we make him a liar, and his word is not in us. \nAt Cowee, he had been noted for his success with apple trees, which over the years he had planted at the spots where his outhouses had stood.\nBut we must be cast upon a certain island.\nAnd right spang in the middle of the web there were the words ‘Some Pig.’ The words were woven right into the web.\nAnd Joseph, who by the apostles was surnamed Barnabas (which is, being interpreted, Son of exhortation), a Levite, a man of Cyprus by race,\nTherefore, as through one man sin entered into the world, and death through sin; and so death passed unto all men, for that all sinned:—\nThen answered Peter and said unto him, Lo, we have left all, and followed thee; what then shall we have?\n“Run toward me!” yelled the gander.\nAnd sometimes Avery would find a little grass snake in the hay, and would add it to the other things in his pocket.\nThe sick man answered him, Sir, I have no man, when the water is troubled, to put me into the pool: but while I am coming, another steppeth down before me.\nOkay, said Wolf.\nHe is too familiar, too noisy, and he cracks weak jokes.\nIf we say that we have no sin, we deceive ourselves, and the truth is not in us.\nAnd he said unto them, Full well do ye reject the commandment of God, that ye may keep your tradition.\nAnd the four angels were loosed, that had been prepared for the hour and day and month and year, that they should kill the third part of men.\nI would that they that unsettle you would even go beyond circumcision.\nWilbur came and stood directly under the web.\nAnd except the Lord had shortened the days, no flesh would have been saved; but for the elect’s sake, whom he chose, he shortened the days.\n“Is it a web?”\nYoung Ridge was the only son, and the other was a nephew, Elias Boudinot, who had been born Buck Watie but had decided to take a name that better suited him.\nThink not that I came to send peace on the earth: I came not to send peace, but a sword.\nI have written unto you, fathers, because ye know him who is from the beginning. I have written unto you, young men, because ye are strong, and the word of God abideth in you, and ye have overcome the evil one.\nAnd he arose and took the young child and his mother by night, and departed into Egypt;\nThey can stay or go.\nI am afraid of you, lest by any means I have bestowed labor upon you in vain.\nHogs ran free range right into the edges of town.\nI flurried about, always a-saddle.\nThe surface of the river before her was black, bottomless.\nNeither Smith nor the boys from Ireland and Philadelphia and Charleston were ever cruel.\nOn his way, he saw Hogsucker, Crawdaddy, Mud Dog and Knottyhead.\nJesus answered and said unto them, I did one work, and ye all marvel because thereof.\nPigs need warmth, and it was warm and comfortable down there in the barn cellar on the south side.\nbut declared both to them of Damascus first, and at Jerusalem, and throughout all the country of Judæa, and also to the Gentiles, that they should repent and turn to God, doing works worthy of repentance.\nAnd they said one to another, Was not our heart burning within us, while he spake to us in the way, while he opened to us the scriptures?\nthe four and twenty elders shall fall down before him that sitteth on the throne, and shall worship him that liveth for ever and ever, and shall cast their crowns before the throne, saying,\nAnd not a hair of your head shall perish.\nBut no child ever did.\nand he took food and was strengthened. And he was certain days with the disciples that were at Damascus.\nwith whom the kings of the earth committed fornication, and they that dwell in the earth were made drunken with the wine of her fornication.\nin the power of signs and wonders, in the power of the Holy Spirit; so that from Jerusalem, and round about even unto Illyricum, I have fully preached the gospel of Christ;\nA lot of our people had never been farther from their own farms than the top of the most distant ridge they could see.\nAnd when the day was now far spent, his disciples came unto him, and said, The place is desert, and the day is now far spent;\nBut for the fearful, and unbelieving, and abominable, and murderers, and fornicators, and sorcerers, and idolaters, and all liars, their part shall be in the lake that burneth with fire and brimstone; which is the second death.\nFor I know that in me, that is, in my flesh, dwelleth no good thing: for to will is present with me, but to do that which is good is not.\nSo both your front feet will have shoes.\nAnd then how the women started cooking the meat and the men all followed Charley back up the mountain to finish butchering the bear, and then how they all sat about the cook fire for days, eating until their bellies hurt.\nAnd he called unto him his disciples, and said unto them, Verily I say unto you, This poor widow cast in more than all they that are casting into the treasury:\nHe followed a rill of water no wider than his hand back to its source, for it is widely known that certain springs offer entrance into the world underneath the world, a refuge.\nIt is very nice to meet you, Hogsucker, but I have been swimming for a long time and still have a long way to go. I must swim on. Goodbye, Hogsucker.\nIt was peach-colored and looked as though it were made of cotton candy.\nJesus answereth, Wilt thou lay down thy life for me? Verily, verily, I say unto thee, The cock shall not crow, till thou hast denied me thrice. \nEveryone watched him, for he was not well liked, not trusted.\nBut woe unto you Pharisees! for ye tithe mint and rue and every herb, and pass over justice and the love of God: but these ought ye to have done, and not to leave the other undone.\n“I want a candied apple.”\nAnd he taught in their synagogues, being glorified of all.\nPut them in mind to be in subjection to rulers, to authorities, to be obedient, to be ready unto every good work,\nThe wife hath not power over her own body, but the husband: and likewise also the husband hath not power over his own body, but the wife.\nHe raced round and round the pen.\nAnd when the thousand years are finished, Satan shall be loosed out of his prison,\n“But this is different.\nThe Pharisees therefore said among themselves, Behold how ye prevail nothing; lo, the world is gone after him.\nThis egg sac is my great work—the finest thing I have ever made.”\nI am the true vine, and my Father is the husbandman.\nand we went on board the ship, but they returned home again.\nHe saw the three boys cut down while he was still fumbling.\nHis stomach was as big around as a jelly jar.\nIt will work better for you. Then she eased out the door.\nI exhort Euodia, and I exhort Syntyche, to be of the same mind in the Lord.\nThis strange fish had fins in the front that resembled the beak of a bird and crawled along the bottom of the stream on legs like a centipede.\nHarden not your hearts, as in the provocation, Like as in the day of the trial in the wilderness,\nSimon Peter answered him, Lord, to whom shall we go? thou hast the words of eternal life.\nNay but, O man, who art thou that repliest against God? Shall the thing formed say to him that formed it, Why didst thou make me thus?\nBlessed be the God and Father of our Lord Jesus Christ, who according to his great mercy begat us again unto a living hope by the resurrection of Jesus Christ from the dead,\nBut the witness which I receive is not from man: howbeit I say these things, that ye may be saved.\nHe turned to swim away, but it was too late.\nAnd a woman having an issue of blood twelve years, who had spent all her living upon physicians, and could not be healed of any,\nAnd also, my invitations to parties increased.\n“Where?”\nWives, be in subjection to your husbands, as is fitting in the Lord.\nAnd they compel one passing by, Simon of Cyrene, coming from the country, the father of Alexander and Rufus, to go with them, that he might bear his cross.\nIn the resurrection therefore whose wife shall she be of the seven? for they all had her.\nhe shall not honor his father. And ye have made void the word of God because of your tradition.\nFor not even they who receive circumcision do themselves keep the law; but they desire to have you circumcised, that they may glory in your flesh.\nWilbur fainted away.\nand he said unto them, Thus it is written, that the Christ should suffer, and rise again from the dead the third day;\nAsmeret looks under another log.\nI wrote somewhat unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not.\nThe fame of this unique animal has spread to the far corners of the earth, attracting many valuable tourists to our great State.\nFor some now unaccountable reason specific to young men, we didn’t.\nbut in everything commending ourselves, as ministers of God, in much patience, in afflictions, in necessities, in distresses,\nAnd they called Barnabas, Jupiter; and Paul, Mercury, because he was the chief speaker.\nBut, along came a little bird, a titmouse.  \nJesus answered, Neither did this man sin, nor his parents: but that the works of God should be made manifest in him.\nYe do the works of your father. They said unto him, We were not born of fornication; we have one Father, even God.\nThese are they who are hidden rocks in your love-feasts when they feast with you, shepherds that without fear feed themselves; clouds without water, carried along by winds; autumn trees without fruit, twice dead, plucked up by the roots;\n“The pig has passed out,” said Mrs. Zuckerman.\nAnd I saw a strong angel proclaiming with a great voice, Who is worthy to open the book, and to loose the seals thereof?\nI put my palm on my chest.\nDoth our law judge a man, except it first hear from himself and know what he doeth?\nThey either will or they won’t.\nTrapped as the creature was then, Charlie crept up on it.\n“Springtime,” said the old sheep, thoughtfully.\nAnd as the Gentiles heard this, they were glad, and glorified the word of God: and as many as were ordained to eternal life believed.\n“It was good management and hard work.”\nIs any among you suffering? let him pray. Is any cheerful? let him sing praise.\nThey said therefore unto him, What then doest thou for a sign, that we may see, and believe thee? what workest thou?\nThe bald was thick with feral hogs.\nand have put on the new man, that is being renewed unto knowledge after the image of him that created him:\nNo help at all.\n“Sorry, sorry, sorry,” said the gander.\nPeople drank deep to achieve immediate stupor.\n“Some pig!” whispered Mr. Zuckerrnan.\n“Appetite good?”\nAnd if he was very tired, he would close his eyes and go to sleep under the doll’s blanket. He looked cute when his eyes were closed, because his lashes were so long.\nMrs. Zuckerman came walking down from the house.\nThe rat had done his work well.\nfor our God is a consuming fire. \nCharley started walking downhill again, and the fog thickened as he descended into it.\nI got up, met everybody, and decided I would take my leave.\nI have a busy evening ahead of me.\nAnd they gave lots for them; and the lot fell upon Matthias; and he was numbered with the eleven apostles. \nIn Damascus the governor under Aretas the king guarded the city of the Damascenes in order to take me:\nAgain, he sent other servants more than the first: and they did unto them in like manner.\n“Wait a minute!” cried Avery.\nWilbur never forgot Charlotte.\nTry your own selves, whether ye are in the faith; prove your own selves. Or know ye not as to your own selves, that Jesus Christ is in you? unless indeed ye be reprobate.\nShe was tall and angular and beautiful, and a soft warm light seemed to shine down on her, following wherever she moved.\nI’m abiding by the old lines.\nNow while Peter was much perplexed in himself what the vision which he had seen might mean, behold, the men that were sent by Cornelius, having made inquiry for Simon’s house, stood before the gate,\nThe only sound was a slight scraping noise from the rooftop, where the weather-vane swung back and forth.\nThen said Jesus unto his disciples, If any man would come after me, let him deny himself, and take up his cross, and follow me.\nWhat I wanted to do was slap him down a bit with wit and words.\nYe know that after two days the passover cometh, and the Son of man is delivered up to be crucified.\nShe is going to become a mother.\nIf I had not come and spoken unto them, they had not had sin: but now they have no excuse for their sin.\nYou’ll not be sorry.\nAnd Agrippa said unto Festus, This man might have been set at liberty, if he had not appealed unto Cæsar. \nWherefore take up the whole armor of God, that ye may be able to withstand in the evil day, and, having done all, to stand.\n“I like to sit still,” she said.\nFrom the pond, in shrill chorus, came the voices of hundreds of little frogs.\nCharley pinched the last little bit of fat at his belly and judged he could live only a short while longer on water and nuts.\n“It’s cruel,” replied Wilbur, who did not intend to be argued out of his position.\nTake heed to yourselves: if thy brother sin, rebuke him; and if he repent, forgive him.\nFor whatsoever things were written aforetime were written for our learning, that through patience and through comfort of the scriptures we might have hope.\nIn the days that followed, he was very happy.\nBut Jesus said unto him, Judas, betrayest thou the Son of man with a kiss?\nnot to all the people, but unto witnesses that were chosen before of God, even to us, who ate and drank with him after he rose from the dead.\nWhat he found himself under was a grunting squealing eruption of hogs, a resurgence of the wild.\nBut the Pharisees said, By the prince of the demons casteth he out demons.\nand make straight paths for your feet, that that which is lame be not turned out of the way, but rather be healed.\nWilbur trembled when he heard this speech.\nSo his fellow-servant fell down and besought him, saying, Have patience with me, and I will pay thee.\nThe boy sat up and took the knife out of his mouth and wiped the spit against his britches.\nin a moment, in the twinkling of an eye, at the last trump: for the trumpet shall sound, and the dead shall be raised incorruptible, and we shall be changed.\nbut Paul chose Silas, and went forth, being commended by the brethren to the grace of the Lord.\nIn this the children of God are manifest, and the children of the devil: whosoever doeth not righteousness is not of God, neither he that loveth not his brother.\nFor this cause have I sent unto you Timothy, who is my beloved and faithful child in the Lord, who shall put you in remembrance of my ways which are in Christ, even as I teach everywhere in every church.\nHe shuffled among the scattered papers and came up with a sheet that he studied to himself a moment and then handed to the scribe.\nEven when English-speaking teachers ruled their classrooms, long after Sequoyah had passed away, they remembered their letters.\nWherefore, if meat causeth my brother to stumble, I will eat no flesh for evermore, that I cause not my brother to stumble. \nSome therefore of the Pharisees said, This man is not from God, because he keepeth not the sabbath. But others said, How can a man that is a sinner do such signs? And there was a division among them.\nCrate your pig, please, Mr. Zuckerman, and report to the judges’ booth promptly!”\nDoing nothing.\nsaying, If thou hadst known in this day, even thou, the things which belong unto peace! but now they are hid from thine eyes.\nBut if we hope for that which we see not, then do we with patience wait for it.\nwho, when he was reviled, reviled not again; when he suffered, threatened not; but committed himself to him that judgeth righteously:\nBut he withdrew himself in the deserts, and prayed.\nWolf went to where the trap lay.\nJesus heard that they had cast him out; and finding him, he said, Dost thou believe on the Son of God?\nHowbeit there is not in all men that knowledge: but some, being used until now to the idol, eat as of a thing sacrificed to an idol; and their conscience being weak is defiled.\nNow on the morrow, as they were on their journey, and drew nigh unto the city, Peter went up upon the housetop to pray, about the sixth hour:\nBut when the husbandmen saw him, they reasoned one with another, saying, This is the heir; let us kill him, that the inheritance may be ours.\nNow this I mean, that each one of you saith, I am of Paul; and I of Apollos; and I of Cephas; and I of Christ.\nVerily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall in no wise enter therein.\nShe has seen many a spring pig come and go.\nI’m going.”\nThen if any man shall say unto you, Lo, here is the Christ, or, Here; believe it not.\nHe found a small strip of potato skin and ate it.\nthat, as sin reigned in death, even so might grace reign through righteousness unto eternal life through Jesus Christ our Lord. \nAnd when he would not be persuaded, we ceased, saying, The will of the Lord be done.\nStraightway he that received the five talents went and traded with them, and made other five talents.\nIf this man were not from God, he could do nothing.\n(the Lord grant unto him to find mercy of the Lord in that day); and in how many things he ministered at Ephesus, thou knowest very well. \nHe knew it was almost time for the County Fair, and he was looking forward to the trip.\nJesus therefore said unto them, Verily, verily, I say unto you, Except ye eat the flesh of the Son of man and drink his blood, ye have not life in yourselves.\nand he saith with a great voice, Fear God, and give him glory; for the hour of his judgment is come: and worship him that made the heaven and the earth and sea and fountains of waters.\nThe same heard Paul speaking: who, fastening his eyes upon him, and seeing that he had faith to be made whole,\nJesus answered and said unto him, Because I said unto thee, I saw thee underneath the fig tree, believest thou? thou shalt see greater things than these.\nto whom God was pleased to make known what is the riches of the glory of this mystery among the Gentiles, which is Christ in you, the hope of glory:\nOne day, all anyone had to eat was a clear broth made from a single goldfinch, so dilute you could have gotten as much flavor from dropping a stone into the water.\nAnd he forsook all, and rose up and followed him.\nHe went on and on, walking stooped when he could, but mostly crawling where the tangled trunks and limbs left no choice.\nFor what is a man profited, if he gain the whole world, and lose or forfeit his own self?\nand they besought him that they might only touch the border of his garment: and as many as touched were made whole. \nDoctors are supposed to understand everything.\nNow as he spake, a Pharisee asketh him to dine with him: and he went in, and sat down to meat.\nAnd immediately an angel of the Lord smote him, because he gave not God the glory: and he was eaten of worms, and gave up the ghost.\nWait till he gets hankering for some fresh pork and smoked ham and crisp bacon!\nThe white sky was entirely free of birds.\nAsmeret shows us evidence of leaves decomposing into soil, too.\nShe sits on a milk stool in a comer of the barn cellar, near the pigpen, and watches animals, hour after hour. She just sits and listens.”\nBut I’m pulling for Florida, Perry said.\nAnd I say unto you, that every idle word that men shall speak, they shall give account thereof in the day of judgment.\nand this voice we ourselves heard borne out of heaven, when we were with him in the holy mount.\nWild Hemp died as a result of forces she didn’t understand or even acknowledge.\nif we this day are examined concerning a good deed done to an impotent man, by what means this man is made whole;\nPigs always resist when they are being loaded.”\nAnd there came also Nicodemus, he who at the first came to him by night, bringing a mixture of myrrh and aloes, about a hundred pounds.\nAnd when they that fed them saw what had come to pass, they fled, and told it in the city and in the country.\nHis parents answered and said, We know that this is our son, and that he was born blind:\nHour by hour she sat motionless, deep in thought.\nNevertheless, neither is the woman without the man, nor the man without the woman, in the Lord.\nWherefore my judgment is, that we trouble not them that from among the Gentiles turn to God;\nThe second Woe is past: behold, the third Woe cometh quickly.\nBut we have this treasure in earthen vessels, that the exceeding greatness of the power may be of God, and not from ourselves;\nAnd they answered, that they knew not whence it was.\nThe Charleston boy looked at me and wiped the last grid away with a sweep of his palm and said, Hell, I could have won tobacco money off him from now on out, but you’ve boogered that all up.\nI became really scared.\nand they, when they came to Cæsarea and delivered the letter to the governor, presented Paul also before him.\nKaweh!! It clanged hard.\nIf others partake of this right over you, do not we yet more? Nevertheless we did not use this right; but we bear all things, that we may cause no hindrance to the gospel of Christ.\nKnow ye not, that to whom ye present yourselves as servants unto obedience, his servants ye are whom ye obey; whether of sin unto death, or of obedience unto righteousness?\nI am a Jew, born in Tarsus of Cilicia, but brought up in this city, at the feet of Gamaliel, instructed according to the strict manner of the law of our fathers, being zealous for God, even as ye all are this day:\nHe hath put down princes from their thrones, And hath exalted them of low degree.\nThen his lord called him unto him, and saith to him, Thou wicked servant, I forgave thee all that debt, because thou besoughtest me:\nWe hadn’t killed anybody, except in our dreams, but we would be punished just the same by reason of blood identity.\nThere are, it may be, so many kinds of voices in the world, and no kind is without signification.\nCharley took it that the bear was willing to fight.\nAll those experiences stood me in good stead, at least to the extent that I convinced Lichen and his people not to kill me.\nAnd I say unto you my friends, Be not afraid of them that kill the body, and after that have no more that they can do.\nStretched across the upper part of the doorway was a big spiderweb, and hanging from the top of the web, head down, was a large grey spider.\nDon’t you think that was a pleasant thing for her to say?”\nSo also is the resurrection of the dead. It is sown in corruption; it is raised in incorruption:\nMurmur not, brethren, one against another, that ye be not judged: behold, the judge standeth before the doors.\nThis is he that came by water and blood, even Jesus Christ; not with the water only, but with the water and with the blood.\nbut hath now been manifested by the appearing of our Saviour Christ Jesus, who abolished death, and brought life and immortality to light through the gospel,\nAnd they brought him unto him: and when he saw him, straightway the spirit tare him grievously; and he fell on the ground, and wallowed foaming.\nAnd he took a cup, and gave thanks, and gave to them, saying, Drink ye all of it;\nmaking request, if by any means now at length I may be prospered by the will of God to come unto you.\nAnd straightway coming up out of the water, he saw the heavens rent asunder, and the Spirit as a dove descending upon him:\nThe officers, though, seemed to have a considerably greater scope of personal freedom. Most days of the week, they hung about my trading post.\nAnd they ate, and were all filled: and there was taken up that which remained over to them of broken pieces, twelve baskets.\nand the Holy Spirit descended in a bodily form, as a dove, upon him, and a voice came out of heaven, Thou art my beloved Son; in thee I am well pleased.\n“How are you going to save me?” asked Wilbur, whose curiosity was very strong on this point.\n“I’ve got something to tell you, Edith,” he said.\nNow I Paul myself entreat you by the meekness and gentleness of Christ, I who in your presence am lowly among you, but being absent am of good courage toward you:\nAnd the disciples of John told him of all these things.\nfor in him dwelleth all the fulness of the Godhead bodily,\nWhat do you need?\nWell, I don’t think you have anything to worry about.\nAnd Jesus arose, and followed him, and so did his disciples.\n“Skip around, run toward me, slip in and out, in and out, in and out!\nStraightway I was in the Spirit: and behold, there was a throne set in heaven, and one sitting upon the throne;\nThen organisms like millipedes can still live there.\nand that which was a temptation to you in my flesh ye despised not, nor rejected; but ye received me as an angel of God, even as Christ Jesus.\nand heal the sick that are therein, and say unto them, The kingdom of God is come nigh unto you.\nlest by any means, if there come with me any of Macedonia and find you unprepared, we (that we say not, ye) should be put to shame in this confidence.\n“Where do you think I’d better go?”\nApples grew on his trees huge as dreams of apples.\nAnd this became known to all, both Jews and Greeks, that dwelt at Ephesus; and fear fell upon them all, and the name of the Lord Jesus was magnified.\nAnd Jesus answered and said, as he taught in the temple, How say the scribes that the Christ is the son of David?\nand changed the glory of the incorruptible God for the likeness of an image of corruptible man, and of birds, and four-footed beasts, and creeping things.\nWherefore even the first covenant hath not been dedicated without blood.\nThe snows melted and ran away.\nYou are beautiful!\nFor ye received not the spirit of bondage again unto fear; but ye received the spirit of adoption, whereby we cry, Abba, Father.\nAnd as he held Peter and John, all the people ran together unto them in the porch that is called Solomon’s, greatly wondering.\nHe crawled over dirt like powdered ashes, trunks and branches spreading all around bare as old bones, broken-down skeletons.\nLong time therefore they tarried there speaking boldly in the Lord, who bare witness unto the word of his grace, granting signs and wonders to be done by their hands.\nI am not going to let you die, Wilbur.”\nAll the saints salute you.\nfor the law worketh wrath; but where there is no law, neither is there transgression.\nWherefore if any man is in Christ, he is a new creature: the old things are passed away; behold, they are become new.\nYou could do the accounting with your eyes shut, for every place was materially the same.\nBut the days will come, when the bridegroom shall be taken away from them, and then will they fast in that day.\nBye, bye, my humble Wilbur!\n“How's this?” he asked.\nFor God appointed us not unto wrath, but unto the obtaining of salvation through our Lord Jesus Christ,\nThere is a great deal of mast, mostly chestnut, but little or no game to be seen as it has all been hunted out to near barrenness, buffalo and elk thirty years gone and deer failing fast, and many nights we have had to make do with our dry provisions.\nThe women drew them together and the younger children stood behind the women and leaned out to look from behind the barrier of calico skirts that were thin and pale from long wear.\nLurvy dumped the slops, scraped the pail, and walked away.\nBut I was all for it, since it meant that Claire and Featherstone could remain at Cranshaw, and just her proximity offered hope, for time back then seemed long enough for anything to happen, even the softening of a heart inexplicably hardened against you.\nAnd he that was dead sat up, and began to speak. And he gave him to his mother.\nDon’t you regard that as a miracle?”\n“The goose did what?” asked Mrs. Arable, gazing at her daughter with a queer, worried look.\n“Well,” said Mrs. Zuckerman, “he’s clean, anyway.\nAnd in covetousness shall they with feigned words make merchandise of you: whose sentence now from of old lingereth not, and their destruction slumbereth not.\nChildren almost always hang onto things tighter than their parents think they will.\nAnd when he was entered into a boat, his disciples followed him.\nThey are of the world: therefore speak they as of the world, and the world heareth them.\nAround his neck he wore a medal of honor; in his mouth he held a sac of spider’s eggs.\nAbide in me, and I in you. As the branch cannot bear fruit of itself, except it abide in the vine; so neither can ye, except ye abide in me.\nTeams of yellow oxen snaked the straight trunks out of the woods.\nAnd for this cause he is the mediator of a new covenant, that a death having taken place for the redemption of the transgressions that were under the first covenant, they that have been called may receive the promise of the eternal inheritance.\n“You may call me Nellie.”\nAs if she had never lived.\nAnd he spake to them a parable: Behold the fig tree, and all the trees:\nWherefore thou art without excuse, O man, whosoever thou art that judgest: for wherein thou judgest another, thou condemnest thyself; for thou that judgest dost practise the same things.\nbut whosoever drinketh of the water that I shall give him shall never thirst; but the water that I shall give him shall become in him a well of water springing up unto eternal life.\nFor many walk, of whom I told you often, and now tell you even weeping, that they are the enemies of the cross of Christ:\nEverything’s gone.\nHe finished his smoke and knocked out his pipe bowl against his boot heel.\nHistory in the making, at least on the personal level, is almost exclusively pathetic.\nBut Mary was standing without at the tomb weeping: so, as she wept, she stooped and looked into the tomb;\nEverything happened all at once.\nBut I am afraid my efforts have produced little gain.\nFor to this end Christ died and lived again, that he might be Lord of both the dead and the living.\nBut John would have hindered him, saying, I have need to be baptized of thee, and comest thou to me?\nSympathetic lawmakers ranted righteous opposition to Jackson and then moved on to more pressing matters.\nNow the names of the twelve apostles are these: The first, Simon, who is called Peter, and Andrew his brother; James the son of Zebedee, and John his brother;\nFaithful is the saying, If a man seeketh the office of a bishop, he desireth a good work.\nThou seest that faith wrought with his works, and by works was faith made perfect;\nXIX: The Egg Sac \nAnd because the haven was not commodious to winter in, the more part advised to put to sea from thence, if by any means they could reach Phoenix, and winter there; which is a haven of Crete, looking north-east and south-east.\nI thank God that I baptized none of you, save Crispus and Gaius;\nClaire looked around at Cranshaw and said, I would have burnt all this down at a word from you.\nAgain, ye have heard that it was said to them of old time, Thou shalt not forswear thyself, but shalt perform unto the Lord thine oaths:\nEverybody heard the song of the crickets.\nbut we speak God’s wisdom in a mystery, even the wisdom that hath been hidden, which God foreordained before the worlds unto our glory:\nHe looked at the working of his hand as if it were fascinating.\nAt six-thirty Wilbur heard the banging of a pail.\nthat God hath fulfilled the same unto our children, in that he raised up Jesus; as also it is written in the second psalm, Thou art my Son, this day have I begotten thee.\nIn the last analysis, we simply know that we are dealing with supernatural forces here, and we should all feel proud and grateful.\nAnd this is the judgment, that the light is come into the world, and men loved the darkness rather than the light; for their works were evil.\nAnd they, having heard the king, went their way; and lo, the star, which they saw in the east, went before them, till it came and stood over where the young child was.\nThen Wolf's tail and ears stiffened.\nIf ye know that he is righteous, ye know that every one also that doeth righteousness is begotten of him. \nPurge out the old leaven, that ye may be a new lump, even as ye are unleavened. For our passover also hath been sacrificed, even Christ:\nby which means the world that then was, being overflowed with water, perished:\nBut the Jerusalem that is above is free, which is our mother.\nWe would start out on foot to go to his home.\nall these evil things proceed from within, and defile the man.\nI don’t know how the first spider in the early days of the world happened to think up this fancy idea of spinning a web, but she did, and it was clever of her, too.\nand walk in love, even as Christ also loved you, and gave himself up for us, an offering and a sacrifice to God for an odor of a sweet smell.\nHis plans for the day went something like this: Breakfast at six-thirty.\nI’m not going, Charley said.\nand if it bear fruit thenceforth, well; but if not, thou shalt cut it down.\nAnd when the men were come unto him, they said, John the Baptist hath sent us unto thee, saying, Art thou he that cometh, or look we for another?\nAnd God hath set some in the church, first apostles, secondly prophets, thirdly teachers, then miracles, then gifts of healings, helps, governments, divers kinds of tongues.\nThe woman looked at the face of the card and ran a finger over the raised lettering, and then she turned it over and looked at the blank back with equal interest.\nThey had come down out of their home on Nantayale Creek and followed the river through its narrow black gorge where the water ran white between great smooth boulders and the walls were so high and close that the sun only shone at midday.\nGouts became drops.\n“Just the same, I don’t envy you,” said the old sheep.\nWhat then? only that in every way, whether in pretence or in truth, Christ is proclaimed; and therein I rejoice, yea, and will rejoice.\nThe birds mingled together and scratched the ground with their tripartite toes and ate the crumbs of bread, and then the chickens scattered across the bare ground and the doves flew away, their wings beating with a sound of mittened children clapping hands.\nThere was the sound of a solid blow struck, but he could not see what he had hit.\nNot that I seek for the gift; but I seek for the fruit that increaseth to your account.\n“Don’t worry, you'll get used to it,” said Templeton.\nThen she sighed.\nWhen morning came he went out and plowed the drifts in his yard, for the fun of it.\nWithout saying anything to anybody, he started off.\nAnd he said unto her, Let the children first be filled: for it is not meet to take the children’s bread and cast it to the dogs.\nI held one of my tracts by such convoluted means that a second mortgage on a prime field hand figured prominently in the deal.\nShe was sixteen or seventeen, somewhere in there.\nPigs mean less than nothing to me.”\nGod is faithful, through whom ye were called into the fellowship of his Son Jesus Christ our Lord.\n“I think you’d better come down to the pigpen,” he said.\nTomorrow would be Fair Day.\nUpon arrival in the Nation, the two young Yankee brides were reported to look pale and stunned but game for the new lives they’d chosen with their brilliant and exotic new husbands.\nOne spider climbed to the top of the fence.\nShe could change her appearance from looking like a monster to looking like an old woman.  \nAnd when they were come, they say unto him, Teacher, we know that thou art true, and carest not for any one; for thou regardest not the person of men, but of a truth teachest the way of God: Is it lawful to give tribute unto Cæsar, or not?\nIf it was during the summer, they would build a fire to produce smoke to repel the mosquitoes as they kept watch.\nSmith reached to his canteen to cut it, but I would not hear of it.\nI reached into a breast pocket and took out one of my cards, printed at excessive expense at the same Washington stationers that now made my journals.\nBut know this, that in the last days grievous times shall come.\n“Can’t you see I’m busy?” replied Avery in disgust.\nbut with you it may be that I shall abide, or even winter, that ye may set me forward on my journey whithersoever I go.\nYou'll get some extra good ham and bacon, Homer, when it comes time to kill that pig.”\nJohn answered, saying unto them all, I indeed baptize you with water; but there cometh he that is mightier than I, the latchet of whose shoes I am not worthy to unloose: he shall baptize you in the Holy Spirit and in fire:\nTherefore doth the Father love me, because I lay down my life, that I may take it again.\nAnd the geese will have a new set of goslings, and the sheep will have their new lambs ...”\n“I’m back,” he said in a husky voice.\nWhat is this word that he said, Ye shall seek me, and shall not find me; and where I am, ye cannot come?\n“Unload your pig, please!” said the loud speaker.\nThis miracle has never been fully explained,  although learned men have visited the Zuckerman pigpen to study and observe the phenomenon.\nBut many of them that heard the word believed; and the number of the men came to be about five thousand.\nAnd the centurion answered and said, Lord, I am not worthy that thou shouldest come under my roof; but only say the word, and my servant shall be healed.\nBut being goes on regardless.\nAnd if thy foot cause thee to stumble, cut it off: it is good for thee to enter into life halt, rather than having thy two feet to be cast into hell.\nAnd whatsoever ye do, in word or in deed, do all in the name of the Lord Jesus, giving thanks to God the Father through him.\nAnd all the multitudes that came together to this sight, when they beheld the things that were done, returned smiting their breasts.\nJesus saith unto them, Fill the waterpots with water. And they filled them up to the brim.\nI shall find it inconvenient to leave home, even for a few days.”\nEven more, he wished deep in his heart that he had not squandered the opportunity to kill Jackson back then, for they had stood an arm’s length apart on several occasions, and it was well known that Bear always had a quick hand with a knife.\nNow after two days was the feast of the passover and the unleavened bread: and the chief priests and the scribes sought how they might take him with subtlety, and kill him:\nAnd he said unto them, Then render unto Cæsar the things that are Cæsar’s, and unto God the things that are God’s.\nI’m not young any more, Wilbur.\nThey cried out with fear, dropping their burdens.\neven as he chose us in him before the foundation of the world, that we should be holy and without blemish before him in love:\nHe did not want their Cherokee voices to fade away.\nNow Caiaphas was he that gave counsel to the Jews, that it was expedient that one man should die for the people.\nBe no longer a drinker of water, but use a little wine for thy stomach’s sake and thine often infirmities.\nnor do ye take account that it is expedient for you that one man should die for the people, and that the whole nation perish not.\nFor I determined not to know anything among you, save Jesus Christ, and him crucified.\nWho shall not fear, O Lord, and glorify thy name? for thou only art holy; for all the nations shall come and worship before thee; for thy righteous acts have been made manifest.\nYe stiffnecked and uncircumcised in heart and ears, ye do always resist the Holy Spirit: as your fathers did, so do ye.\nAnd they worshipped him, and returned to Jerusalem with great joy:\nWheresoever the carcase is, there will the eagles be gathered together.\nStop thrashing about!”\nIn short order, Mrs. Chapman and I began seeing a great deal of each other.\nAnd behold, men bring on a bed a man that was palsied: and they sought to bring him in, and to lay him before him.\nI’ll set the record straight, though it is not in the least to my credit.\n“Where do you think you’re going?”\nThe sheep looked at each other in disgust.\nAs he spake these things, many believed on him.\nAnd they shall come from the east and west, and from the north and south, and shall sit down in the kingdom of God.\nIf the soldiers came marching into the mountains and began collecting everyone on the Nation together and taking them off to the West, I had little faith our sheaf of inconclusive letters and vague legal papers would stop them from coming on up to Wayah and emptying our coves too, deeds or no deeds.\nAnd they say unto him, We have here but five loaves, and two fishes.\nWherein God, being minded to show more abundantly unto the heirs of the promise the immutability of his counsel, interposed with an oath;\nBe ye angry, and sin not: let not the sun go down upon your wrath:\n“Now let's see, the first letter is T.”\nOf whom I have no certain thing to write unto my lord. Wherefore I have brought him forth before you, and specially before thee, king Agrippa, that, after examination had, I may have somewhat to write.\nWherefore exhort one another, and build each other up, even as also ye do.\nIf ye had known me, ye would have known my Father also: from henceforth ye know him, and have seen him.\nAnd having sent into Macedonia two of them that ministered unto him, Timothy and Erastus, he himself stayed in Asia for a while.\nFor he that herein serveth Christ is well-pleasing to God, and approved of men.\nTo him that smiteth thee on the one cheek offer also the other; and from him that taketh away thy cloak withhold not thy coat also.\nSo then the Lord Jesus, after he had spoken unto them, was received up into heaven, and sat down at the right hand of God.\n“How about ‘Pig Supreme’?” asked one of the lambs.\n“You’re kidding,” he said.\nI baptized you in water; but he shall baptize you in the Holy Spirit.\nAnd they clothe him with purple, and platting a crown of thorns, they put it on him;\n“Yes, it is pretty,” replied Charlotte, patting the sac with her two front legs.\nAnd the great city was divided into three parts, and the cities of the nations fell: and Babylon the great was remembered in the sight of God, to give unto her the cup of the wine of the fierceness of his wrath.\nhaving heard of your faith in Christ Jesus, and of the love which ye have toward all the saints,\nand love the chief place at feasts, and the chief seats in the synagogues,\nShe that is in Babylon, elect together with you, saluteth you; and so doth Mark my son.\nAnd very early on the first day of the week, they come to the tomb when the sun was risen.\nAnd if I by Beelzebub cast out demons, by whom do your sons cast them out? therefore shall they be your judges.\nHe found the entrance and yelled, Hello mother! It is Littlefish.\nAnd I saw the holy city, new Jerusalem, coming down out of heaven from God, made ready as a bride adorned for her husband.\nI didn’t spend a second wondering what it meant or how I felt about it.\nBut there arose certain of them that were of the synagogue called the synagogue of the Libertines, and of the Cyrenians, and of the Alexandrians, and of them of Cilicia and Asia, disputing with Stephen.\nAnd now I exhort you to be of good cheer; for there shall be no loss of life among you, but only of the ship.\nThere is none that understandeth, There is none that seeketh after God;\nAnd ought not this woman, being a daughter of Abraham, whom Satan had bound, lo, these eighteen years, to have been loosed from this bond on the day of the sabbath?\nThen came Peter and said to him, Lord, how oft shall my brother sin against me, and I forgive him? until seven times?\neach man’s work shall be made manifest: for the day shall declare it, because it is revealed in fire; and the fire itself shall prove each man’s work of what sort it is.\nUnwashed, unshowered, and unfettered by rule of law I strode through the cool breeze, back along Franklin Street.\nAnd Simon also himself believed: and being baptized, he continued with Philip; and beholding signs and great miracles wrought, he was amazed.\nHe sheathed the knife and went and retrieved the bloody hatchet where it lay on the ground and took off running hard.\nfor he that hath died is justified from sin.\nFor I also am a man set under authority, having under myself soldiers: and I say to this one, Go, and he goeth; and to another, Come, and he cometh; and to my servant, Do this, and he doeth it.\nAnd his tail draweth the third part of the stars of heaven, and did cast them to the earth: and the dragon standeth before the woman that is about to be delivered, that when she is delivered he may devour her child.\nShe handed back the card and shut the door in my face.\nShe was now a stout woman of middle age with a half dozen children, most of them grown.\n“Or are you just making it up?”\n“Yes, I suppose they do,” said Mrs. Arable, vaguely.\nSalute Rufus the chosen in the Lord, and his mother and mine.\nThe soldiers ate in total silence until their plates were empty but for a scattering of fine clean bones and a few little grey shotgun pellets, and then Perry wiped his mouth on his sleeve and said, Great God.\n“Then what happened?” asked Wilbur.\nprove all things; hold fast that which is good;\nFor if the readiness is there, it is acceptable according as a man hath, not according as he hath not.\nHello Littlefish, I am called Mud Dog by the Cherokee and I am not a fish, I am a large salamander.\nBear was a spectator that day.\nYou took all they had.\nAnd the four living creatures, having each one of them six wings, are full of eyes round about and within: and they have no rest day and night, saying, Holy, holy, holy, is the Lord God, the Almighty, who was and who is and who is to come.\nAnd from thence we made a circuit, and arrived at Rhegium: and after one day a south wind sprang up, and on the second day we came to Puteoli;\nor who hath first given to him, and it shall be recompensed unto him again?\nFor it is written in the book of Psalms, Let his habitation be made desolate, And let no man dwell therein: and, His office let another take.\nThen saith he to the disciple, Behold, thy mother! And from that hour the disciple took her unto his own home.\nWherefore? Because they sought it not by faith, but as it were by works. They stumbled at the stone of stumbling;\nthat by two immutable things, in which it is impossible for God to lie, we may have a strong encouragement, who have fled for refuge to lay hold of the hope set before us:\nBut Peter answered and said unto him, If all shall be offended in thee, I will never be offended.\nAnd if I have the gift of prophecy, and know all mysteries and all knowledge; and if I have all faith, so as to remove mountains, but have not love, I am nothing.\nHow about boys — does she know any boys?”\nFor I long to see you, that I may impart unto you some spiritual gift, to the end ye may be established;\nMasters, render unto your servants that which is just and equal; knowing that ye also have a Master in heaven.\nfor the earth is the Lord’s, and the fulness thereof.\nAnd he guessed they could hear him too.\nAnd they took counsel, and bought with them the potter’s field, to bury strangers in.\nAnd Zacharias said unto the angel, Whereby shall I know this? for I am an old man, and my wife well stricken in years.\nneither give place to the devil.\nHonor widows that are widows indeed.\nThe light strengthened, the mornings came sooner.\nGive not that which is holy unto the dogs, neither cast your pearls before the swine, lest haply they trample them under their feet, and turn and rend you.\nAnd the smoke of the incense, with the prayers of the saints, went up before God out of the angel’s hand.\nJohn answered them, saying, I baptize in water: in the midst of you standeth one whom ye know not,\nBut when two years were fulfilled, Felix was succeeded by Porcius Festus; and desiring to gain favor with the Jews, Felix left Paul in bonds. \nAnd he asked them, How many loaves have ye? And they said, Seven.\n“Well, when the first gosling stuck its little head out from under the goose, I was sitting on my stool in the comer and Charlotte was on her web.\nAnd when they saw it, they all murmured, saying, He is gone in to lodge with a man that is a sinner.\nFollow after love; yet desire earnestly spiritual gifts, but rather that ye may prophesy.\nAnd it came to pass, while he blessed them, he parted from them, and was carried up into heaven.\nHe was only about sixty, but he looked eighty and was a grandfather several times over.\nWe have to make him stop.\nWithout even a courtesy clearing of throat, the colonel’s little scraggle-haired scrivener came into Smith’s tent and said, Both of you, right now.\nMoses indeed said, A prophet shall the Lord God raise up unto you from among your brethren, like unto me; to him shall ye hearken in all things whatsoever he shall speak unto you.\nShe wrapped the fish up, then she ate him when she got good and ready.\nA half-full bottle of whiskey and a half-full glass stood side by side on his desk.\n“My mother taught me.”\nNow Herod the tetrarch heard of all that was done: and he was much perplexed, because that it was said by some, that John was risen from the dead;\nI’d like your best cabin, I said.\nAnd Saul was consenting unto his death. And there arose on that day a great persecution against the church which was in Jerusalem; and they were all scattered abroad throughout the regions of Judæa and Samaria, except the apostles.\nCharley kept searching until it was so dark he could not tell one kind of fallen leaf from another.\nBooming down the river through all that coastal area with its pine savannas and cypress swamps cut through by guts and creeks—which were not at all like creeks where I came from but were just tidal ditches of black mud and stinking salt water, but they seemed exotic and like the places that travel writers got all worked up over in the quarterly journals I favored.\nBut as the time of the promise drew nigh which God vouchsafed unto Abraham, the people grew and multiplied in Egypt,\nAnd I saw the beast, and the kings of the earth, and their armies, gathered together to make war against him that sat upon the horse, and against his army.\nNow his elder son was in the field: and as he came and drew nigh to the house, he heard music and dancing.\nAnd some shouted one thing, some another, among the crowd: and when he could not know the certainty for the uproar, he commanded him to be brought into the castle.\n“What kind of story did she tell?” asked Mrs. Arable.\nWhose woods these are I think I know.\nShe daintily fastened her orb line to the next spoke of the web.\nI started out trying to be discreet in front of the help, but Claire did not care what tales the servants might carry to the West.\nGood food and regular hours were showing results: Wilbur was a pig any man would be proud of.\nAnd as he was praying, the fashion of his countenance was altered, and his raiment became white and dazzling.\nIn the distance he could still hear the music of the merry-go-round.\nHe will come and destroy these husbandmen, and will give the vineyard unto others. And when they heard it, they said, God forbid.\nAnd then shall be revealed the lawless one, whom the Lord Jesus shall slay with the breath of his mouth, and bring to nought by the manifestation of his coming;\nDid not Moses give you the law, and yet none of you doeth the law? Why seek ye to kill me?\nNow there was a man of the Pharisees, named Nicodemus, a ruler of the Jews:\nto whom he also showed himself alive after his passion by many proofs, appearing unto them by the space of forty days, and speaking the things concerning the kingdom of God:\nHe gave a jump in the air, twirled, ran a few steps, stopped, looked all around, sniffed the smells of afternoon, and then set off walking down through the orchard.\nAnd he said unto him, Verily I say unto thee, To-day shalt thou be with me in Paradise.\nBy faith he forsook Egypt, not fearing the wrath of the king: for he endured, as seeing him who is invisible.\nAgain, the kingdom of heaven is like unto a man that is a merchant seeking goodly pearls:\nAdopted.\nAnd fear came on all that dwelt round about them: and all these sayings were noised abroad throughout all the hill country of Judæa.\nAnd when they heard that he spake unto them in the Hebrew language, they were the more quiet: and he saith,\nYet as he walked away, he saw the tree still looked sad.\nFor thou verily givest thanks well, but the other is not edified.\nEither drink it or don’t, I said.\nBut they were terrified and affrighted, and supposed that they beheld a spirit.\nI commended them to what god they claimed and then walked about the perimeter, observing the order of the scene.\nAnd he said unto the woman, Thy faith hath saved thee; go in peace. \nWilbur was loaded into the truck.\nBut he guessed she did not understand a word of English, and perhaps the longevity of the chickens was not her point of concern but just her stewardship, maintaining it until the last moment.\nRepeat! Now in to the left! Attach! Climb! Repeat! O.K.! Easy, keep those lines together! Now, then, out and down for the leg of the R! Steady now! Attach! Climb! Attach! Over to the right! Pay out line! Attach!\nAnd behold, Elisabeth thy kinswoman, she also hath conceived a son in her old age; and this is the sixth month with her that was called barren.\nNo longer do I call you servants; for the servant knoweth not what his lord doeth: but I have called you friends; for all things that I heard from my Father I have made known unto you.\nAnd the serpent was never seen or heard from again.\n“Why can’t you just say ‘here’? Why do you have to repeat everything?”\n“A,” said Wilbur.\nFor ye both had compassion on them that were in bonds, and took joyfully the spoiling of your possessions, knowing that ye have for yourselves a better possession and an abiding one.\nThe Jews therefore said among themselves, Whither will this man go that we shall not find him? will he go unto the Dispersion among the Greeks, and teach the Greeks?\nSpearfinger had magic powers and she was always hungry.  \nNow you've seen how a soil scientist like Asmeret looks at the woods.\nAnd what shall I more say? for the time will fail me if I tell of Gideon, Barak, Samson, Jephthah; of David and Samuel and the prophets:\n“I shall go, too,” she said, softly.\nAnd when he had fasted forty days and forty nights, he afterward hungered.\nAnd a stranger will they not follow, but will flee from him: for they know not the voice of strangers.\nAnd he said unto him, Why askest thou me concerning that which is good? One there is who is good: but if thou wouldest enter into life, keep the commandments.\n“Will you come over and play with me?” he asked.\nand to have authority to cast out demons:\nknowing that from the Lord ye shall receive the recompense of the inheritance: ye serve the Lord Christ.\nAnybody got a loaner?\nAnd the high priest stood up, and said unto him, Answerest thou nothing? what is it which these witness against thee?\nNow white voices and Indian voices both hunted him.\nbackbiters, hateful to God, insolent, haughty, boastful, inventors of evil things, disobedient to parents,\n“Fern, dear, how would a fish get in a spider’s web?” said Mrs. Arable.\nSeeing that these things are thus all to be dissolved, what manner of persons ought ye to be in all holy living and godliness,\nBut no—with men it's rush, rush, rush, every minute.\nand to wait for his Son from heaven, whom he raised from the dead, even Jesus, who delivereth us from the wrath to come. \nAnd he brought them up into his house, and set food before them, and rejoiced greatly, with all his house, having believed in God.\nAs to peace, I said, I had spent most of the past few years trying to find a path to it.\nit is sown in dishonor; it is raised in glory: it is sown in weakness; it is raised in power:\nHe took another step toward the pail.\nBut he, knowing their thoughts, said unto them, Every kingdom divided against itself is brought to desolation; and a house divided against a house falleth.\nIts only value to the white settlers is as a range for cattle and swine and the country must become much more thickly inhabited before it will be used for that, and if in the meantime the small number of fugitive Indians who presumably now occupy it are left undisturbed the worst injury which can arise from their continuing presence will be the loss of a few hogs and a little corn to the whites in the vicinity, who I should point out purchased all they have of both from these very Indians.\nOr thinkest thou that I cannot beseech my Father, and he shall even now send me more than twelve legions of angels?\nHath any of the rulers believed on him, or of the Pharisees?\nA breeze brought him the smell of clover—the sweet-smelling world beyond his fence.\nAnd neither would war save them.\nOn the third night, we fell asleep fully clothed, exhausted.\nBut an angel of the Lord by night opened the prison doors, and brought them out, and said,\nYe heard how I said to you, I go away, and I come unto you. If ye loved me, ye would have rejoiced, because I go unto the Father: for the Father is greater than I.\nAnd when they had crossed over, they came to the land unto Gennesaret, and moored to the shore.\nbut this is that which hath been spoken through the prophet Joel:\nBut he saw nothing new.\nAnd Isaiah crieth concerning Israel, If the number of the children of Israel be as the sand of the sea, it is the remnant that shall be saved:\nAnother miracle.\n“Can I have some money?” asked Fern.\nAnd straightway the second time the cock crew. And Peter called to mind the word, how that Jesus said unto him, Before the cock crow twice, thou shalt deny me thrice. And when he thought thereon, he wept. \nAnd the beast was taken, and with him the false prophet that wrought the signs in his sight, wherewith he deceived them that had received the mark of the beast and them that worshipped his image: they two were cast alive into the lake of fire that burneth with brimstone:\nI say unto you, that even so there shall be joy in heaven over one sinner that repenteth, more than over ninety and nine righteous persons, who need no repentance.\nAnd I will most gladly spend and be spent for your souls. If I love you more abundantly, am I loved the less?\nfor the Lord will execute his word upon the earth, finishing it and cutting it short.\nBut I found that he had committed nothing worthy of death: and as he himself appealed to the emperor I determined to send him.\nShe spread the blankets on the porch floor and folded some of the herbs and the pot into the blankets, and with a quick knot she fashioned a shoulder sling of the bundle.\nAnd he went with him; and a great multitude followed him, and they thronged him.\nBut when the morning came again He knew he could not fly\nAnd they send to him their disciples, with the Herodians, saying, Teacher, we know that thou art true, and teachest the way of God in truth, and carest not for any one: for thou regardest not the person of men.\nNow concerning virgins I have no commandment of the Lord: but I give my judgment, as one that hath obtained mercy of the Lord to be trustworthy.\nPausing in the shade of an apple tree, he put his strong snout into the ground and began pushing, digging, and rooting.\nAll in all, the Zuckermans’ pigpen was the center of attraction.\nYou talked with that colonel?\nfor this my son was dead, and is alive again; he was lost, and is found. And they began to be merry.\nAnd they came to the other side of the sea, into the country of the Gerasenes.\nAnd Jesus said unto them, Can the sons of the bridechamber mourn, as long as the bridegroom is with them? but the days will come, when the bridegroom shall be taken away from them, and then will they fast.\nWherefore, my brethren beloved and longed for, my joy and crown, so stand fast in the Lord, my beloved.\nand said unto them, Ye brought unto me this man, as one that perverteth the people: and behold, I, having examined him before you, found no fault in this man touching those things whereof ye accuse him:\nThat takes real leg work.”\nKnow ye that our brother Timothy hath been set at liberty; with whom, if he come shortly, I will see you.\nFor being ignorant of God’s righteousness, and seeking to establish their own, they did not subject themselves to the righteousness of God.\nAnd when ye see a south wind blowing, ye say, There will be a scorching heat; and it cometh to pass.\n“Everybody in!” called Mr. Arable.\nHe barely took note that the sky was closing down over him, becoming a grey press of moisture.\nWhat do the people do when they put on shoes? Said Rabbit.\nAlso the long column of spine and the many curved keen ribs of a big rattler that Wasseton had hit right in the soft underside of its head as it rose up in striking posture and then finished off with thrown rocks until it lay twisting, head crushed, in the leaves.\nI beseech thee for my child, whom I have begotten in my bonds, Onesimus,\nJake closed with him and struck again and hit more with the flat than the sharp part of the blade.\nJesus saith unto her, Woman, why weepest thou? whom seekest thou? She, supposing him to be the gardener, saith unto him, Sir, if thou hast borne him hence, tell me where thou hast laid him, and I will take him away.\nand thence they sailed to Antioch, from whence they had been committed to the grace of God for the work which they had fulfilled.\nDodge about, dodge about!” cried the goose.\nHe walked slowly to his food trough and sniffed to see if anything had been overlooked at lunch.\nif so be that ye heard him, and were taught in him, even as truth is in Jesus:\nKids think they hear all sorts of things.”\nBut for that matter I don’t understand how a spider learned to spin a web in the first place.\nHe dug elbow-deep in the dirt and then came out with a root, pulling it from the ground as if he were a fisherman with his hands plunged in muddy water grabbling out a heavy and reluctant catfish.\nOr I only and Barnabas, have we not a right to forbear working?\nThese have the power to shut the heaven, that it rain not during the days of their prophecy: and they have power over the waters to turn them into blood, and to smite the earth with every plague, as often as they shall desire.\nand she was with child; and she crieth out, travailing in birth, and in pain to be delivered.\nThere were seven brethren: and the first took a wife, and dying left no seed;\nEnough light to shape the ridges against the sky, enough light to know that though the mountains are not permanent, they are persistent.\nI do not see how this place could support a lone man in the wild, much less a large population of fugitives.\nAnd she said, No man, Lord. And Jesus said, Neither do I condemn thee: go thy way; from henceforth sin no more.]\nSomewhere in their eastward progress, they had crossed the boundary line and had left the Nation and entered America and become fugitives.\nOne day while swimming around beside a large rock he noticed a small hole through which pond water flowed.\n“Did you hear the way she rambled on about the animals, pretending that they talked?” Mr. Arable chuckled.\nSetting the pail down, he picked up the stick that Avery had dropped and pried the trough up.\nlet no man therefore despise him. But set him forward on his journey in peace, that he may come unto me: for I expect him with the brethren.\nAnd go quickly, and tell his disciples, He is risen from the dead; and lo, he goeth before you into Galilee; there shall ye see him: lo, I have told you.\nHowbeit, after I am raised up, I will go before you into Galilee.\nI do not make void the grace of God: for if righteousness is through the law, then Christ died for nought. \nTake heed that ye do not your righteousness before men, to be seen of them: else ye have no reward with your Father who is in heaven.\nThou foolish one, that which thou thyself sowest is not quickened except it die:\nBut from the beginning of the creation, Male and female made he them.\nFern looked at her father.\nServants, be in subjection to your masters with all fear; not only to the good and gentle, but also to the froward.\nBut his partner I didn't recognize. As I caught up with them, I stopped the car to give them a ride.\nA sparrow with a streaky breast arrived and sang.\nWhich thou hast prepared before the face of all peoples;\nBut at least Calhoun saw some prospect in me, or some element of entertainment.\nthat your glorying may abound in Christ Jesus in me through my presence with you again.\nand being made free from sin, ye became servants of righteousness.\n“I could spin a web if I tried,” said Wilbur, boasting.\nMr. Zuckerman took fine care of Wilbur all the rest of his days, and the pig was often visited by friends and admirers, for nobody ever forgot the year of his triumph and the miracle of the web.\nBut there rose up certain of the sect of the Pharisees who believed, saying, It is needful to circumcise them, and to charge them to keep the law of Moses.\nWas any man called being circumcised? let him not become uncircumcised. Hath any been called in uncircumcision? let him not be circumcised.\n Look! Other trees had lost their leaves, but this one was forever green.\nAnd Jesus answered him, and said, What wilt thou that I should do unto thee? And the blind man said unto him, Rabboni, that I may receive my sight.\nso we, who are many, are one body in Christ, and severally members one of another.\n“Sure,” said the doctor.\nThe children walked slowly up toward the barn.\nNevertheless death reigned from Adam until Moses, even over them that had not sinned after the likeness of Adam’s transgression, who is a figure of him that was to come.\nNow the chief priests and the whole council sought false witness against Jesus, that they might put him to death;\nYe lust, and have not: ye kill, and covet, and cannot obtain: ye fight and war; ye have not, because ye ask not.\nSome of the paler among the rich Indians might have been tempted to cross out of the Nation and melt into the surrounding white populations, but the bordering states, Georgia in particular, were vigilant in arresting fugitives of whatever blood degree and deporting them to the West under conditions suitable only for convicts.\n(all which things are to perish with the using), after the precepts and doctrines of men?\nHer sitting on the tailboard of the wagon, going away, the driver rattling the reins and the mules pulling and the wooden members of the wagon rubbing and rattling against one another as the wheels rolled through the mud.\nand to Apphia our sister, and to Archippus our fellow-soldier, and to the church in thy house:\nand when they found him not, they returned to Jerusalem, seeking for him.\nIt made it easier to stay hidden until she was ready to strike her next victim.\n“For goodness’ sake!” bellowed Mr. Zuckerman, who was really drenched.\nCommand therefore that the sepulchre be made sure until the third day, lest haply his disciples come and steal him away, and say unto the people, He is risen from the dead: and the last error will be worse than the first.\nAnd when one of them that sat at meat with him heard these things, he said unto him, Blessed is he that shall eat bread in the kingdom of God.\nAnd he said unto them, The Son of man is lord of the sabbath.\nAs the days went by, Wilbur grew and grew.\nBy faith Moses, when he was grown up, refused to be called the son of Pharaoh’s daughter;\n“So am I,” said another tiny voice.\nAn old man.\nI say it not to condemn you: for I have said before, that ye are in our hearts to die together and live together.\nOne day he caught a trout by spearing it with a sharp hickory stick and ventured to light a fire no bigger than he could have cupped in his hand to sear it over.\nFor it is as when a man, going into another country, called his own servants, and delivered unto them his goods.\n“What are your names, please?” asked Wilbur, trembling with joy.\n“fine, I like that very much,” said the third spider.\nEverything that is living will die one day.\nNay, much rather, those members of the body which seem to be more feeble are necessary:\n“Kill you.\nFor there is one God, one mediator also between God and men, himself man, Christ Jesus,\nand Uzziah begat Jotham; and Jotham begat Ahaz; and Ahaz begat Hezekiah;\nAnd he answered and said, Have ye not read, that he who made them from the beginning made them male and female,\nFor I am come down from heaven, not to do mine own will, but the will of him that sent me.\nYe men of Israel, hear these words: Jesus of Nazareth, a man approved of God unto you by mighty works and wonders and signs which God did by him in the midst of you, even as ye yourselves know;\nSo when he had washed their feet, and taken his garments, and sat down again, he said unto them, Know ye what I have done to you?\nBut when thou art bidden, go and sit down in the lowest place; that when he that hath bidden thee cometh, he may say to thee, Friend, go up higher: then shalt thou have glory in the presence of all that sit at meat with thee.\nBut having the same spirit of faith, according to that which is written, I believed, and therefore did I speak; we also believe, and therefore also we speak;\nThe end\nAnd I knew him not: but he that sent me to baptize in water, he said unto me, Upon whomsoever thou shalt see the Spirit descending, and abiding upon him, the same is he that baptizeth in the Holy Spirit.\nNone.\nFor such men are false apostles, deceitful workers, fashioning themselves into apostles of Christ.\nMrs. Zuckerman wanted to see a deep freeze.\nFor we rejoice, when we are weak, and ye are strong: this we also pray for, even your perfecting.\nThen went the Pharisees, and took counsel how they might ensnare him in his talk.\nto the general assembly and church of the firstborn who are enrolled in heaven, and to God the Judge of all, and to the spirits of just men made perfect,\nHave ye understood all these things? They say unto him, Yea.\nOr are ye ignorant, brethren (for I speak to men who know the law), that the law hath dominion over a man for so long time as he liveth?\nEven today the titmouse has a short tongue and Cherokee people know it is a liar.\nWhen Lurvy arrived with breakfast, there was the handsome pig, and over him, woven neatly in block letters, was the word TERRIfiC.\nCharlotte needs new ideas so she can write messages in her web and save Wilbur's life.”\n“Plaything?\nNow I rejoice in my sufferings for your sake, and fill up on my part that which is lacking of the afflictions of Christ in my flesh for his body’s sake, which is the church;\nJust Charley and Nancy and their grown boys, Nantayale Jake and Lowan.\nAnd the multitude went up and began to ask him to do as he was wont to do unto them.\nHis brethren therefore said unto him, Depart hence, and go into Judæa, that thy disciples also may behold thy works which thou doest.\nFinally, he came to the small pond at the base of the large rock.\nThe grass was wet and the earth smelled of springtime. Fern’s sneakers were sopping by the time she caught up with her father.\nHe that descended is the same also that ascended far above all the heavens, that he might fill all things.)\nFor through thy knowledge he that is weak perisheth, the brother for whose sake Christ died.\nWilbur heard several people make favorable remarks about Uncle’s great size.\nBut Paul and Barnabas tarried in Antioch, teaching and preaching the word of the Lord, with many others also.\nAnd then shall they see the Son of man coming in a cloud with power and great glory.\nAnd he charged them much that they should not make him known.\nArriving at the house once more, they spied a giant boulder upon the hillside.\nTo him bear all the prophets witness, that through his name every one that believeth on him shall receive remission of sins.\nAt least that’s the story the book told.\nStop inventing these wild tales!”\nAnd Jesus perceiving it said, O ye of little faith, why reason ye among yourselves, because ye have no bread?\nAnd we are witnesses of these things; and so is the Holy Spirit, whom God hath given to them that obey him.\nOn that first trip, I was so excited about train travel that for the first fifty miles after the railhead, I sat up front in the locomotive conversing with the engineer and the fireman and helping feed wood into the firebox.\nAnd they were glad, and covenanted to give him money.\nAnd he that sweareth by the temple, sweareth by it, and by him that dwelleth therein.\n“Give him two spoonfuls of sulphur and a little molasses,” said Mr. Zuckerman.\nI say this to move you to shame. What, cannot there be found among you one wise man who shall be able to decide between his brethren,\nFor he that said, Do not commit adultery, said also, Do not kill. Now if thou dost not commit adultery, but killest, thou art become a transgressor of the law.\nWilbur ate heartily.\nAnd when they had kindled a fire in the midst of the court, and had sat down together, Peter sat in the midst of them.\nShe was still thinking about the pig when the teacher said: “Fern, what is the capital of Pennsylvania?”\nMr. Arable was not willing to provide for him any longer.\nCare to memorialize this agreement on paper?\nBut as he had neglected to fasten the other end to anything, it didn’t really do any good, and Wilbur landed with a thud, crushed and hurt.\nBut that it spread no further among the people, let us threaten them, that they speak henceforth to no man in this name.\nBut what saith it? The word is nigh thee, in thy mouth, and in thy heart: that is, the word of faith, which we preach:\nThere’s no honor here.\nGrace to you and peace from God the Father and the Lord Jesus Christ.\nHe wore his good clothes all the time now—got right into them when he got up in the morning.\nNow I beseech you, brethren, mark them that are causing the divisions and occasions of stumbling, contrary to the doctrine which ye learned: and turn away from them.\n“Come and see for yourself.”\nThe rat didn’t waste a minute.\nAnd every created thing which is in the heaven, and on the earth, and under the earth, and on the sea, and all things that are in them, heard I saying, Unto him that sitteth on the throne, and unto the Lamb, be the blessing, and the honor, and the glory, and the dominion, for ever and ever.\nAnd to whom sware he that they should not enter into his rest, but to them that were disobedient?\n“Then don’t worry,” said the doctor.\nAnd it came to pass, as he sat at meat in the house, behold, many publicans and sinners came and sat down with Jesus and his disciples.\nBut Templeton worked away at the job, and managed to cut the sac adrift and carry it to the ground, where he dropped it in front of Wilbur.\nAnd there were shepherds in the same country abiding in the field, and keeping watch by night over their flock.\nBut watch ye at every season, making supplication, that ye may prevail to escape all these things that shall come to pass, and to stand before the Son of man.\nFor if the blood of goats and bulls, and the ashes of a heifer sprinkling them that have been defiled, sanctify unto the cleanness of the flesh:\nhath at the end of these days spoken unto us in his Son, whom he appointed heir of all things, through whom also he made the worlds;\nThey just figured it was better to be armed than disarmed.\n“That sign ought to say ‘Zuckerman’s Famous Pig and Two Stowaways.\nAnd he answering said, Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy strength, and with all thy mind; and thy neighbor as thyself.\n(he had not consented to their counsel and deed), a man of Arimathæa, a city of the Jews, who was looking for the kingdom of God:\nYou go there almost every afternoon, don’t you?”\nSpearfinger was a terrible old monster who lived high in the mountains.  \nand through a window was I let down in a basket by the wall, and escaped his hands. \nAnd Paul said, I knew not, brethren, that he was high priest: for it is written, Thou shalt not speak evil of a ruler of thy people.\nEven things without life, giving a voice, whether pipe or harp, if they give not a distinction in the sounds, how shall it be known what is piped or harped?\nHe knew he would have to act quickly.\nAnd when he was come down from the mountain, great multitudes followed him.\nAnd it came to pass when Jesus had finished commanding his twelve disciples, he departed thence to teach and preach in their cities.\nI’m an old sheep and I see the same thing, same old business, year after year.\nIn the kitchen, Mrs. Zuckerman suddenly made an announcement.\nAmong humans, they call it a 'shoe.'\nAs they passed the Ferris wheel, Fern gazed up at it and wished she were in the topmost car with Henry Fussy at her side.\nAlong the way, we collected a few more fugitive stragglers.\nThis is a dead tree.\nFern came slowly down the stairs.\nAnd in turn they shared their dinner with me, fat yeasty bread rolls and thin beefsteaks seasoned with a great deal of crushed black and red pepper and seared fast in a dry long-handled iron skillet heated nearly red-hot over the fire.\nIf any man’s work shall be burned, he shall suffer loss: but he himself shall be saved; yet so as through fire.\nAnd when he had seen the vision, straightway we sought to go forth into Macedonia, concluding that God had called us to preach the gospel unto them.\nCharlotte watched in delight.\nOne place, full of little stout Dutchmen, had the finest sausages I had ever eaten, cooked over hickory coals and served with sauerkraut and brown ale drawn from brown glazed crocks cooled in the creek.\nand the light of a lamp shall shine no more at all in thee; and the voice of the bridegroom and of the bride shall be heard no more at all in thee: for thy merchants were the princes of the earth; for with thy sorcery were all the nations deceived.\n“He claims he’s a spring pig,” reported Charlotte, “and perhaps he is.\nAnd they all ate, and were filled.\nYou have nothing to fear, Wilbur—nothing to worry about.\nBut with me helping you, it can be done.”\nRejoice always;\nBut certain also of the strolling Jews, exorcists, took upon them to name over them that had the evil spirits the name of the Lord Jesus, saying, I adjure you by Jesus whom Paul preacheth.\nThen, when they had fasted and prayed and laid their hands on them, they sent them away.\nBy these three plagues was the third part of men killed, by the fire and the smoke and the brimstone, which proceeded out of their mouths.\nFor the Father loveth the Son, and showeth him all things that himself doeth: and greater works than these will he show him, that ye may marvel.\nAnd Jesus answering them said, Have ye not read even this, what David did, when he was hungry, he, and they that were with him;\nNow know we that thou knowest all things, and needest not that any man should ask thee: by this we believe that thou camest forth from God.\nAnd no man putteth a piece of undressed cloth upon an old garment; for that which should fill it up taketh from the garment, and a worse rent is made.\nand she had been a widow even unto fourscore and four years), who departed not from the temple, worshipping with fastings and supplications night and day.\nFungus\nIt was in the fall, and the leaves had fallen, and the moon was shining brightly.\nBut when the fourteenth night was come, as we were driven to and fro in the sea of Adria, about midnight the sailors surmised that they were drawing near to some country:\nAnd they went to another village.\nNo man seweth a piece of undressed cloth on an old garment: else that which should fill it up taketh from it, the new from the old, and a worse rent is made.\nAnd he took the five loaves and the two fishes, and looking up to heaven, he blessed, and brake the loaves; and he gave to the disciples to set before them; and the two fishes divided he among them all.\nAnd when the dragon saw that he was cast down to the earth, he persecuted the woman that brought forth the man child.\nAnd he came nigh and touched the bier: and the bearers stood still. And he said, Young man, I say unto thee, Arise.\nAnd as he sat on the mount of Olives, the disciples came unto him privately, saying, Tell us, when shall these things be? and what shall be the sign of thy coming, and of the end of the world?\n“A buttermilk bath.\nDipping her paddle in the buttermilk, she rubbed him all over.\nThese they took back toward the beast, with plans to snare its head.\nAnd of which of you that is a father shall his son ask a loaf, and he give him a stone? or a fish, and he for a fish give him a serpent?\nI guess I was about sixteen years old, and I had just gotten my operator's license.\nAnd the people stood beholding. And the rulers also scoffed at him, saying, He saved others; let him save himself, if this is the Christ of God, his chosen.\nBut Bear had seen Jackson at work.\nLet each man abide in that calling wherein he was called.\nBut forget not this one thing, beloved, that one day is with the Lord as a thousand years, and a thousand years as one day.\nand every spirit that confesseth not Jesus is not of God: and this is the spirit of the antichrist, whereof ye have heard that it cometh; and now it is in the world already.\nBut just at the first point of slumber, he had a dream of falling and gave out a little yell.\nSo that with good courage we say, The Lord is my helper; I will not fear: What shall man do unto me?\nthat it may be well with thee, and thou mayest live long on the earth.\n“Nothing,” said Charlotte.\n“But that proves nothing.\nAnd Jesus seeing their faith saith unto the sick of the palsy, Son, thy sins are forgiven.\nYea, brother, let me have joy of thee in the Lord: refresh my heart in Christ.\nWhile he yet spake, behold, a multitude, and he that was called Judas, one of the twelve, went before them; and he drew near unto Jesus to kiss him.\nThese things said his parents, because they feared the Jews: for the Jews had agreed already, that if any man should confess him to be Christ, he should be put out of the synagogue.\nAnd as they tarried there many days, Festus laid Paul’s case before the king, saying, There is a certain man left a prisoner by Felix;\nWe scoured the rivers and creeks and streams like hounds after foxes.\nSo she sat quite still, and talked less than usual.\n“Just keep calm.”\nThe people, they say, learned the Cherokee letters quickly.\nthe son of Melea, the son of Menna, the son of Mattatha, the son of Nathan, the son of David,\nAnd we have confidence in the Lord touching you, that ye both do and will do the things which we command.\nWhen he quit beating, he started talking, and his words matched up with the story of the Green Man and God.\nWhen I was growing up, I guess it was about the year 1957, we did not have electricity in our house yet.\nNow in the place where he was crucified there was a garden; and in the garden a new tomb wherein was never man yet laid.\nNow we beseech you, brethren, touching the coming of our Lord Jesus Christ, and our gathering together unto him;\nI came out from the Father, and am come into the world: again, I leave the world, and go unto the Father.\nFrom two to three, he planned to scratch itchy places by rubbing against the fence.\nBut the things which God foreshowed by the mouth of all the prophets, that his Christ should suffer, he thus fulfilled.\nFor the Son of Man has come to save that which was lost.\nWould that ye could bear with me in a little foolishness: but indeed ye do bear with me.\nAnd he said unto her, For this saying go thy way; the demon is gone out of thy daughter.\nHow to save the broken fragments of the world?\nBut I say unto you that it shall be more tolerable for the land of Sodom in the day of judgment, than for thee.\n“I want to go out on the midway.”\nAnd he answered and said, He that dipped his hand with me in the dish, the same shall betray me.\nbut if it beareth thorns and thistles, it is rejected and nigh unto a curse; whose end is to be burned.\nNot all of us do, I said.\n“I worry about Fern,” she said.\n“It's my turn,” said Fern.\nAnd we desire that each one of you may show the same diligence unto the fulness of hope even to the end:\nShe jabbed around in every direction trying to stab anyone who came near the top of the pitfall.\nFor ye are not come unto a mount that might be touched, and that burned with fire, and unto blackness, and darkness, and tempest,\nAnd he laid hold on the dragon, the old serpent, which is the Devil and Satan, and bound him for a thousand years,\nHe that overcometh shall inherit these things; and I will be his God, and he shall be my son.\nAnd the things which thou hast heard from me among many witnesses, the same commit thou to faithful men, who shall be able to teach others also.\nCharlotte was both.\nFlee fornication. Every sin that a man doeth is without the body; but he that committeth fornication sinneth against his own body.\nHe that heareth you heareth me; and he that rejecteth you rejecteth me; and he that rejecteth me rejecteth him that sent me.\nAnd they were all astonished at the majesty of God. But while all were marvelling at all the things which he did, he said unto his disciples,\nTempleton seized the string, passed it around the end of the pig's tail, and tied two half hitches.\n“Just the same, I do worry about her,” replied Mrs. Arable.\nasking a favor against him, that he would send for him to Jerusalem; laying a plot to kill him on the way.\nI beseech you therefore, brethren, by the mercies of God, to present your bodies a living sacrifice, holy, acceptable to God, which is your spiritual service.\nThey answered and said unto him, If this man were not an evil-doer, we should not have delivered him up unto thee.\n“Stop acting like a spoiled child!”\nAnd they that were with me beheld indeed the light, but they heard not the voice of him that spake to me.\n“None of us do,” said Dr. Dorian, sighing.\nwhich, when it was filled, they drew up on the beach; and they sat down, and gathered the good into vessels, but the bad they cast away.\nSo were her teeth.\nWherefore, though I have all boldness in Christ to enjoin thee that which is befitting,\nThe rat was swollen to twice his normal size.\nIn the resurrection therefore whose wife of them shall she be? for the seven had her to wife.\nJesus answered and said unto them, Even if I bear witness of myself, my witness is true; for I know whence I came, and whither I go; but ye know not whence I come, or whither I go.\nThen come to him the disciples of John, saying, Why do we and the Pharisees fast oft, but thy disciples fast not?\nFinally he decided he would have to speak up.\nthat it might be fulfilled which was spoken through the prophet, saying, I will open my mouth in parables; I will utter things hidden from the foundation of the world.\nAs soon as the people were gone, Charlotte spoke to Wilbur.\nThe day was hot.\n“I know,” he said; “she’d kill you if you did.”\nIt was the kind of barn that swallows like to build their nests in.\nThese things spake Jesus; and lifting up his eyes to heaven, he said, Father, the hour is come; glorify thy Son, that the Son may glorify thee:\nAll of a sudden she had an idea.\nThe truck began to move ahead.\nAnd after these days Elisabeth his wife conceived; and she hid herself five months, saying,\nFor thou shalt be a witness for him unto all men of what thou hast seen and heard.\nAnd he took a little child, and set him in the midst of them: and taking him in his arms, he said unto them,\nSaying above, Sacrifices and offerings and whole burnt offerings and sacrifices for sin thou wouldest not, neither hadst pleasure therein (the which are offered according to the law),\nIt is thought that there are not more than 400 rifles among them, and those for the most part useless or in bad repair.\nAnd Jesus stood, and commanded him to be brought unto him: and when he was come near, he asked him,\nAnd when they found them not, they dragged Jason and certain brethren before the rulers of the city, crying, These that have turned the world upside down are come hither also;\n“I’ll appeal to his baser instincts, of which he has plenty.\nSimon Peter saith unto him, Lord, not my feet only, but also my hands and my head.\nJackson was stretched out on a chaise, alternately talking and sucking on a pastille. The pleated skin around his mouth opened and closed rhythmically as a bellows.\nIf ye love me, ye will keep my commandments.\nIf ye abide in me, and my words abide in you, ask whatsoever ye will, and it shall be done unto you.\nUnto you first God, having raised up his Servant, sent him to bless you, in turning away every one of you from your iniquities. \nSomething along those lines, Smith said.\nBy helping you, perhaps I was trying to lift up my life a trifle.\nhow that he was caught up into Paradise, and heard unspeakable words, which it is not lawful for a man to utter.\nIt is as when a man, sojourning in another country, having left his house, and given authority to his servants, to each one his work, commanded also the porter to watch.\nAgain, the kingdom of heaven is like unto a net, that was cast into the sea, and gathered of every kind:\nThe salutation of me Paul with mine own hand.\nDivisions of governance no bigger than cove bottoms but assigned the names of lost clans.\nIn the beginning was the Word, and the Word was with God, and the Word was God.\nYet in like manner these also in their dreamings defile the flesh, and set at nought dominion, and rail at dignities.\nAnd behold, forthwith three men stood before the house in which we were, having been sent from Cæsarea unto me.\nThe nobleman saith unto him, Sir, come down ere my child die.\nthat with one accord ye may with one mouth glorify the God and Father of our Lord Jesus Christ.\nThe diameter of their world was tightly drawn, just as it was for most of their white neighbors, and its topography was confined to the coves and ridges and watercourses they had seen with their eyes and walked with their legs. Whatever larger geography they held in mind was theoretical.\nAnd they went out to see what had come to pass; and they came to Jesus, and found the man, from whom the demons were gone out, sitting, clothed and in his right mind, at the feet of Jesus: and they were afraid.\nAnd Jesus looking upon them said to them, With men this is impossible; but with God all things are possible.\nNow there was a certain rich man, and he was clothed in purple and fine linen, faring sumptuously every day:\nMr. Arable set the carton down at Fern’s place.\nThe Jews therefore said unto him, Thou art not yet fifty years old, and hast thou seen Abraham?\nThey shall put you out of the synagogues: yea, the hour cometh, that whosoever killeth you shall think that he offereth service unto God.\nHowever, I was around him enough to think that being Crockett in those days would have been pretty fine.\nWe heard it again the third time, and we knew for sure it was coming toward us, as the meows were getting louder.\nPeople sat in small groups talking.\nJesus saith unto him, Because thou hast seen me, thou hast believed: blessed are they that have not seen, and yet have believed.\nand I appoint unto you a kingdom, even as my Father appointed unto me,\nThis is again the second sign that Jesus did, having come out of Judæa into Galilee. \nAnd when the seven among the four thousand, how many basketfuls of broken pieces took ye up? And they say unto him, Seven.\nPut to death therefore your members which are upon the earth: fornication, uncleanness, passion, evil desire, and covetousness, which is idolatry;\nAnd I saw, and behold, a white cloud; and on the cloud I saw one sitting like unto a son of man, having on his head a golden crown, and in his hand a sharp sickle.\nabout whom, when I was at Jerusalem, the chief priests and the elders of the Jews informed me, asking for sentence against him.\nIn Charley’s telling, it was a miraculous process, at the end of which he suddenly had new pants.\nAnd when he had said this, he showed them his hands and his feet.\nAnd the sea gave up the dead that were in it; and death and Hades gave up the dead that were in them: and they were judged every man according to their works.\nAnd another angel came out from the temple, crying with a great voice to him that sat on the cloud, Send forth thy sickle, and reap: for the hour to reap is come; for the harvest of the earth is ripe.\nand he said unto them, Ye yourselves know how it is an unlawful thing for a man that is a Jew to join himself or come unto one of another nation; and yet unto me hath God showed that I should not call any man common or unclean:\nThe losers leave their dead and wounded where they fall and flee in vomitous panic.\nand the stars of the heaven fell unto the earth, as a fig tree casteth her unripe figs when she is shaken of a great wind.\nAbout half an hour before dawn, Wilbur woke and listened.\nHe tried to look radiant without getting food in his ears.\nAnd this continued for the space of two years; so that all they that dwelt in Asia heard the word of the Lord, both Jews and Greeks.\nThen understood they that he bade them not beware of the leaven of bread, but of the teaching of the Pharisees and Sadducees.\nHe began to cry.\nThe first evening at dinner, she straddled me in my chair, her dress in a bunch around us.\n(for that righteous man dwelling among them, in seeing and hearing, vexed his righteous soul from day to day with their lawless deeds):\nTake heed unto yourselves, and to all the flock, in which the Holy Spirit hath made you bishops, to feed the church of the Lord which he purchased with his own blood.\nAnything to oblige.”\nYe have heard that it was said, Thou shalt not commit adultery:\nBut to do good and to communicate forget not: for with such sacrifices God is well pleased.\n“But it all started with that pig we let Fern raise on a bottle.\nI cooked the best quail any of them had ever tasted.\nOkay, said Wolf.\nAnd Jesus said unto the centurion, Go thy way; as thou hast believed, so be it done unto thee. And the servant was healed in that hour.\nBut ye have a custom, that I should release unto you one at the passover: will ye therefore that I release unto you the King of the Jews?\nAnd when he had taken him, he put him in prison, and delivered him to four quaternions of soldiers to guard him; intending after the Passover to bring him forth to the people.\nIf the world hateth you, ye know that it hath hated me before it hated you.\nThen saith Pilate unto him, Hearest thou not how many things they witness against thee?\nI could feel everything falling apart.\nThe strange new fish walked along the bottom of the stream on four legs.\nThe dog carried her triangular head hanging loose, almost touching the ground, and her nose often pulled her out into the woods on some fascinating scent-path.\nwhen he shall come to be glorified in his saints, and to be marvelled at in all them that believed (because our testimony unto you was believed) in that day.\n“It’s a good thing you can’t see what I see,” she said.\nBut he said unto them, Not all men can receive this saying, but they to whom it is given.\n“Come out at once!” cried Mrs. Arable.\nBut the water was flowing too fast for such a small fish to swim against.\n“He'll make a perfect breakfast for me.”\nI paused to think but then realized that not much thought was required.\nHe must have fought bravely and led his people well.\nThen charged he the disciples that they should tell no man that he was the Christ.\nand they repented not of their murders, nor of their sorceries, nor of their fornication, nor of their thefts. \nThen said Paul unto him, God shall smite thee, thou whited wall: and sittest thou to judge me according to the law, and commandest me to be smitten contrary to the law?\nWhen I woke up in the morning it was amidst the sound of a crowd, all wondering what I was doing lying there on the floor.\nBehold, we go up to Jerusalem; and the Son of man shall be delivered unto the chief priests and scribes; and they shall condemn him to death,\nAnd by chance a certain priest was going down that way: and when he saw him, he passed by on the other side.\nAnd he that sat on the cloud cast his sickle upon the earth; and the earth was reaped.\nHe that loveth not knoweth not God; for God is love.\nThat's some pig!”\nHe was a short man who spoke Cherokee so poorly that he would not attempt it in public, nor could he even read the syllabary.\nAnd also that Crockett knew it to be a flaw in his public image but could do nothing to correct it other than, when outdoors, to cock his hat so that it rode low on his brow, its brim casting deep shade to the bridge of his nose.\nand I persecuted this Way unto the death, binding and delivering into prisons both men and women.\nAnd another horse came forth, a red horse: and to him that sat thereon it was given to take peace from the earth, and that they should slay one another: and there was given unto him a great sword.\nPlease present this to Mrs. Featherstone, I said.\nThey were actually part of the web, Edith.\nAnd there come his mother and his brethren; and, standing without, they sent unto him, calling him.\nThe Jews therefore answered and said unto him, What sign showest thou unto us, seeing that thou doest these things?\nAfter all, what’s a life, anyway?\nand saith unto him, Every man setteth on first the good wine; and when men have drunk freely, then that which is worse: thou hast kept the good wine until now.\n“What does ‘languishing’ mean?”\nThey profess that they know God; but by their works they deny him, being abominable, and disobedient, and unto every good work reprobate. \nAnd they rose up that very hour, and returned to Jerusalem, and found the eleven gathered together, and them that were with them,\nHe told how he and his family had been set to sail for America, and they had gone from Galway out past Spiddal for a last visit.\nTeacher, which is the great commandment in the law?\nHe examined the window ledge, stared up at the ceiling.\nIt is a fearful thing to fall into the hands of the living God.\nVII. Bad News  \nContinue stedfastly in prayer, watching therein with thanksgiving;\nThis time when she stepped outside … she was wearing her scarf and boots.\n“That is, I guess I like it.”\nNo way to come out the other side feeling noble or even whole anymore.\nOne of the two that heard John speak, and followed him, was Andrew, Simon Peter’s brother.\nBut speak thou the things which befit the sound doctrine:\nThe rat had no morals, no conscience, no scruples, no consideration, no decency, no milk of rodent kindness, no compunctions, no higher feeling, no friendliness, no anything.\nAnd they departed, and went throughout the villages, preaching the gospel, and healing everywhere.\nAnd the second poured out his bowl into the sea; and it became blood as of a dead man; and every living soul died, even the things that were in the sea.\nThat morning, Lieutenant Smith’s party had ridden up a green cove, their first mission of the day to roust out an old woman, a widow living solitary in a cabin with tied bundles of sage hanging stems-up under the eaves of her porch to dry, the cabin hemmed in by fenced garden plots, corn and beans and squash growing in her fields, chickens scratching in the yard, straw skeps humming with bees, carefully pruned apple and peach trees busy putting out fruit.\nFor verily that which hath been made glorious hath not been made glorious in this respect, by reason of the glory that surpasseth.\nFor when God made promise to Abraham, since he could swear by none greater, he sware by himself,\nYea, it hath been their good pleasure; and their debtors they are. For if the Gentiles have been made partakers of their spiritual things, they owe it to them also to minister unto them in carnal things.\nAnd if any man desireth to hurt them, fire proceedeth out of their mouth and devoureth their enemies; and if any man shall desire to hurt them, in this manner must he be killed.\nand to you that are afflicted rest with us, at the revelation of the Lord Jesus from heaven with the angels of his power in flaming fire,\n“Put it on her chair!” said Mrs. Arable.\nOthers said, It is he: others said, No, but he is like him. He said, I am he.\nIf we sowed unto you spiritual things, is it a great matter if we shall reap your carnal things?\nNow when they heard of the resurrection of the dead, some mocked; but others said, We will hear thee concerning this yet again.\nAnd as he was going forth into the way, there ran one to him, and kneeled to him, and asked him, Good Teacher, what shall I do that I may inherit eternal life?\n“That pig is radiant.”\nWilbur lay asleep in the straw.\n“Furthermore,” said Mr. Zuckerman, “I want you to start building a crate for Wilbur.\nAnd he would not: but went and cast him into prison, till he should pay that which was due.\nHe could reliably drive a dart through a pigeon’s head at nearly the distance he could throw a rock.\nIf to others I am not an apostle, yet at least I am to you; for the seal of mine apostleship are ye in the Lord.\nBut call to remembrance the former days, in which, after ye were enlightened, ye endured a great conflict of sufferings;\nneither did we eat bread for nought at any man’s hand, but in labor and travail, working night and day, that we might not burden any of you:\nFor I could wish that I myself were anathema from Christ for my brethren’s sake, my kinsmen according to the flesh:\nAnd every evening he went forth out of the city.\n“Roll it away and add it to that nasty collection of yours.”\nto enrol himself with Mary, who was betrothed to him, being great with child.\nit was winter; and Jesus was walking in the temple in Solomon’s porch.\nWhat people don't think of!”\nHe couldn’t help overhearing these remarks, and he couldn't help worrying.\nChildren, obey your parents in all things, for this is well-pleasing in the Lord.\nso that contrariwise ye should rather forgive him and comfort him, lest by any means such a one should be swallowed up with his overmuch sorrow.\nYou smell less of everybody’s chamberpots in the morning.\nSome therefore cried one thing, and some another: for the assembly was in confusion; and the more part knew not wherefore they were come together.\nNothing colorful at all except for a few stunted pumpkins still glowing in the fields and a few persistent apples hanging red in the skeletal orchards.\nYou can tell all kinds of stories in the space between dark and dawn.\nThese autumn days will shorten and grow cold.\nFor a great storm was coming soon, with hailstones as big as hominy blocks falling from a black sky, killing all the whites and anyone else who did not go to refuge in the highest mountains.\nThey got soaking wet.\nKnow ye not that your bodies are members of Christ? shall I then take away the members of Christ, and make them members of a harlot? God forbid.\n“I won’t leave you here alone to die.\nSo Christ also glorified not himself to be made a high priest, but he that spake unto him, Thou art my Son, This day have I begotten thee:\nFill ye up then the measure of your fathers.\nfor as the lightning, when it lighteneth out of the one part under the heaven, shineth unto the other part under heaven; so shall the Son of man be in his day.\nNot the word you wanted spoken to you out alone in the high mountains.\nShe fell back to the end of the group and then stopped.\nAnd many came unto him; and they said, John indeed did no sign: but all things whatsoever John spake of this man were true.\nDo you wonder where soil comes from?\nBut they did not all hearken to the glad tidings. For Isaiah saith, Lord, who hath believed our report?\nFor what is our hope, or joy, or crown of glorying? Are not even ye, before our Lord Jesus at his coming?\nBut he answered and said to one of them, Friend, I do thee no wrong: didst not thou agree with me for a shilling?\nand they beckoned unto their partners in the other boat, that they should come and help them. And they came, and filled both the boats, so that they began to sink.\n“There's no denying that.\nLurvy pulled his big handkerchief from his pocket and wiped the sweat from the back of his neck.\nThe woods refused sustenance.\nThe truck, driven by Mr. Arable, crawled slowly back to the pigpen.\nBut they’re not going to be gained here.\n“My cousin kept the fish for a while, and then, when she got good and ready, she ate it.”\nThe salutation of me Paul with mine own hand. Remember my bonds. Grace be with you.\n“I think there’s something wrong with that pig of yours.\n“Wash up and eat your breakfast, Avery!” said his mother.\nand sent messengers before his face: and they went, and entered into a village of the Samaritans, to make ready for him.\nBehold, I stand at the door and knock: if any man hear my voice and open the door, I will come in to him, and will sup with him, and he with me.\nAnd the cup in like manner after supper, saying, This cup is the new covenant in my blood, even that which is poured out for you.\nJesus therefore came out, wearing the crown of thorns and the purple garment. And Pilate saith unto them, Behold, the man!\nHow is it that ye do not perceive that I spake not to you concerning bread? But beware of the leaven of the Pharisees and Sadducees.\nHello, said Wolf.\nAnd when his disciples James and John saw this, they said, Lord, wilt thou that we bid fire to come down from heaven, and consume them?\nHis friends the sheep and the geese were glad to see him back.\nHe was pleased with his new home.\nAll they had brought in the trade was a puzzlingly small quantity of beans and cornmeal and a few pumpkins and cabbages.\nThe Spirit himself beareth witness with our spirit, that we are children of God:\nAnd Paul called unto him one of the centurions, and said, Bring this young man unto the chief captain; for he hath something to tell him.\nfor I was hungry, and ye gave me to eat; I was thirsty, and ye gave me drink; I was a stranger, and ye took me in;\nwho hath been made, not after the law of a carnal commandment, but after the power of an endless life:\nAnd when they had brought their boats to land, they left all, and followed him.\nand he came down with them, and stood on a level place, and a great multitude of his disciples, and a great number of the people from all Judæa and Jerusalem, and the sea coast of Tyre and Sidon, who came to hear him, and to be healed of their diseases;\nunto the church of God which is at Corinth, even them that are sanctified in Christ Jesus, called to be saints, with all that call upon the name of our Lord Jesus Christ in every place, their Lord and ours:\nBut that ye also may know my affairs, how I do, Tychicus, the beloved brother and faithful minister in the Lord, shall make known to you all things:\nWilbur couldn't believe what was happening to him when Lurvy caught him and forced the medicine down his throat.\nI can of myself do nothing: as I hear, I judge: and my judgment is righteous; because I seek not mine own will, but the will of him that sent me.\nLet each man do according as he hath purposed in his heart: not grudgingly, or of necessity: for God loveth a cheerful giver.\nAnd I will kill her children with death; and all the churches shall know that I am he that searcheth the reins and hearts: and I will give unto each one of you according to your works.\nIt's a shoe? said the others.\nand so fearful was the appearance, that Moses said, I exceedingly fear and quake:\nBy the time the bus reached school, Fern had named her pet, selecting the most beautiful name she could think of.\nhaving been reminded of the unfeigned faith that is in thee; which dwelt first in thy grandmother Lois, and thy mother Eunice; and, I am persuaded, in thee also.\nThe year before the Removal, Bear and I between us could fairly accurately claim control over about ten thousand acres.\nLurvy!\nKing Agrippa, believest thou the prophets? I know that thou believest.\nAnd his mouth was opened immediately, and his tongue loosed, and he spake, blessing God.\nand being found in fashion as a man, he humbled himself, becoming obedient even unto death, yea, the death of the cross.\nBut Paul said unto them, They have beaten us publicly, uncondemned, men that are Romans, and have cast us into prison; and do they now cast us out privily? nay verily; but let them come themselves and bring us out.\n“Why?” asked Wilbur.\nBut woe unto you, scribes and Pharisees, hypocrites! because ye shut the kingdom of heaven against men: for ye enter not in yourselves, neither suffer ye them that are entering in to enter.\nAnd going on a little further, he saw James the son of Zebedee, and John his brother, who also were in the boat mending the nets.\nIsn't your friend going to ride with us? I asked him.\nBut it is my country.\n“If I struggle I'll get dirty,” said Wilbur.\nand they shall bring the glory and the honor of the nations into it:\n“Well, he's dirty, and he’s going to have a bath.”\nWherefore? because I love you not? God knoweth.\nAnd it was the third hour, and they crucified him.\nYe are the salt of the earth: but if the salt have lost its savor, wherewith shall it be salted? it is thenceforth good for nothing, but to be cast out and trodden under foot of men.\nwhereas ye know not what shall be on the morrow. What is your life? For ye are a vapor that appeareth for a little time, and then vanisheth away.\nTwo of them started loading pipes, tamping tobacco with their thumbs like filling a posthole.\nThey said therefore unto him, How then were thine eyes opened?\nfor he taught them as one having authority, and not as their scribes. \nBlessed are the pure in heart: for they shall see God.\nLet us fear therefore, lest haply, a promise being left of entering into his rest, any one of you should seem to have come short of it.\nAnd his father and his mother were marvelling at the things which were spoken concerning him;\nFern jumped aboard and sat on top of the crate.\nAnd it was given them that they should not kill them, but that they should be tormented five months: and their torment was as the torment of a scorpion, when it striketh a man.\n“Who’s ‘us’?” asked Mr. Arable.\nbut they, when they saw him walking on the sea, supposed that it was a ghost, and cried out;\nbut if a man suffer as a Christian, let him not be ashamed; but let him glorify God in this name.\nthat they said to you, In the last time there shall be mockers, walking after their own ungodly lusts.\nFor he that soweth unto his own flesh shall of the flesh reap corruption; but he that soweth unto the Spirit shall of the Spirit reap eternal life.\nPeople are already getting sick of reading the words ‘Some Pig!’ \nIf any man thinketh that he knoweth anything, he knoweth not yet as he ought to know;\n“Oh, dear!”\nAnd to the angel of the church in Pergamum write: These things saith he that hath the sharp two-edged sword:\nAnd when the disciples saw it, they marvelled, saying, How did the fig tree immediately wither away?\nAnd there was one Anna, a prophetess, the daughter of Phanuel, of the tribe of Asher (she was of a great age, having lived with a husband seven years from her virginity,\nusing hospitality one to another without murmuring:\nBut if that servant shall say in his heart, My lord delayeth his coming; and shall begin to beat the menservants and the maidservants, and to eat and drink, and to be drunken;\nand let him that is on the housetop not go down, nor enter in, to take anything out of his house:\nHe would dream that men were coming to get him with knives and guns.\nand having been made perfect, he became unto all them that obey him the author of eternal salvation;\nAnd Agrippa said unto Paul, Thou art permitted to speak for thyself. Then Paul stretched forth his hand, and made his defence:\nNow the passover, the feast of the Jews, was at hand.\n“Let’s let the children go off by themselves,” suggested Mr. Arable.\nAnd they answering say unto him, Where, Lord? And he said unto them, Where the body is, thither will the eagles also be gathered together. \nHe saith unto them, My cup indeed ye shall drink: but to sit on my right hand, and on my left hand, is not mine to give; but it is for them for whom it hath been prepared of my Father.\nAnd he said, Why, what evil hath he done? But they cried out exceedingly, saying, Let him be crucified.\nBut she was shot down by the Americans nevertheless.\nA missionary named Worcester helped Sequoyah turn his beautiful loops and spirals into sturdy, English-looking symbols that could be printed with lead type.\nJesus saith unto him, If I will that he tarry till I come, what is that to thee? follow thou me.\nAgain a second time he went away, and prayed, saying, My Father, if this cannot pass away, except I drink it, thy will be done.\nBut Solomon built him a house.\nBut he was in a sort of strange mood, and so he walked out slowly among them, and the stout blue shadows they cast across the bald merged with his own.\nOur first meeting was in his office in the Capitol and we got along like equals, even though Crockett was old enough to be my natural daddy.\nThen Charlie went to fetch his armor.\nthat the proof of your faith, being more precious than gold that perisheth though it is proved by fire, may be found unto praise and glory and honor at the revelation of Jesus Christ:\nSmith made broad encompassing motions using the whole of both arms, as if to implicate the wide landscape in the coming actions.\nThe boys lay spaced apart, and the ground was marked everywhere with sign of what had taken place.\nAnd the Pharisees went out, and straightway with the Herodians took counsel against him, how they might destroy him.\nMrs. Arable found a baby's nursing bottle and a rubber nipple.\nAnd there appeared unto him an angel from heaven, strengthening him.\nMy cousin was very much surprised, of course.\nWhen the peas come in, they are so sweet we pick and eat them right there.\nAnd when the ten heard it, they were moved with indignation concerning the two brethren.\nHe had indeed the pointed face, tiny blank eyes, and sharp snapping teeth of a possum.\nNow consider how great this man was, unto whom Abraham, the patriarch, gave a tenth out of the chief spoils.\nI laughed.\nAnd he hath on his garment and on his thigh a name written, KING OF KINGS, AND LORD OF LORDS.\nAnd I took the little book out of the angel’s hand, and ate it up; and it was in my mouth sweet as honey: and when I had eaten it, my belly was made bitter.\nAnd he is arrayed in a garment sprinkled with blood: and his name is called The Word of God.\nTherefore, behold, I send unto you prophets, and wise men, and scribes: some of them shall ye kill and crucify; and some of them shall ye scourge in your synagogues, and persecute from city to city:\n“What fantastic creatures boys are!\nWoe unto you, ye blind guides, that say, Whosoever shall swear by the temple, it is nothing; but whosoever shall swear by the gold of the temple, he is a debtor.\nfor ye are all sons of light, and sons of the day: we are not of the night, nor of darkness;\nAnd he commanded the chariot to stand still: and they both went down into the water, both Philip and the eunuch; and he baptized him.\nBut foolish and ignorant questionings refuse, knowing that they gender strifes.\nI was a stranger, and ye took me not in; naked, and ye clothed me not; sick, and in prison, and ye visited me not.\nHis catch went into the creel with its fellow roots, and Charley closed the lid as if they might otherwise escape.\nI love you Bigfish. Swim on, swim on…\nand from Jesus Christ, who is the faithful witness, the firstborn of the dead, and the ruler of the kings of the earth. Unto him that loveth us, and loosed us from our sins by his blood;\nI was in the city of Joppa praying: and in a trance I saw a vision, a certain vessel descending, as it were a great sheet let down from heaven by four corners; and it came even unto me:\nAnd they answered Jesus, and said, We know not. He also said unto them, Neither tell I you by what authority I do these things.\nThe barn was pleasantly warm in winter when the animals spent most of their time indoors, and it was pleasantly cool in summer when the big doors stood wide open to the breeze.\nFor the mystery of lawlessness doth already work: only there is one that restraineth now, until he be taken out of the way.\nand he gave him authority to execute judgment, because he is a son of man.\nAfter these things Jesus went away to the other side of the sea of Galilee, which is the sea of Tiberias.\nHe that receiveth a prophet in the name of a prophet shall receive a prophet’s reward: and he that receiveth a righteous man in the name of a righteous man shall receive a righteous man’s reward.\nBut Paul thought not good to take with them him who withdrew from them from Pamphylia, and went not with them to the work.\nWhereupon as I journeyed to Damascus with the authority and commission of the chief priests,\nfor neither was the man created for the woman; but the woman for the man:\nYe serpents, ye offspring of vipers, how shall ye escape the judgment of hell?\nthat no man transgress, and wrong his brother in the matter: because the Lord is an avenger in all these things, as also we forewarned you and testified.\nand looking up, they see that the stone is rolled back: for it was exceeding great.\nAnd they took him, and killed him, and cast him forth out of the vineyard.\nAnd Paul, looking stedfastly on the council, said, Brethren, I have lived before God in all good conscience until this day.\nThe chickens would not live out the morning but would have their necks wrung and be roasting on a spit for someone’s dinner.\nNothing to keep you awake fretting.\nand when they perceived the grace that was given unto me, James and Cephas and John, they who were reputed to be pillars, gave to me and Barnabas the right hands of fellowship, that we should go unto the Gentiles, and they unto the circumcision;\nBeing therefore a prophet, and knowing that God had sworn with an oath to him, that of the fruit of his loins he would set one upon his throne;\nI kept a set of clean dry clothes in an oilcloth bag.\nfor no man ever hated his own flesh; but nourisheth and cherisheth it, even as Christ also the church;\nA photographer took Wilbur’s picture.\nTake, brethren, for an example of suffering and of patience, the prophets who spake in the name of the Lord.\nAnd he called to him the multitude again, and said unto them, Hear me all of you, and understand:\nHe waved his hand in front of his face and could not see a thing.\nAnd take it easy—don’t rush him!\nWilbur was desperate.\nAnother parable spake he unto them; The kingdom of heaven is like unto leaven, which a woman took, and hid in three measures of meal, till it was all leavened.\nand think not to say within yourselves, We have Abraham to our father: for I say unto you, that God is able of these stones to raise up children unto Abraham.\nWherefore lift up the hands that hang down, and the palsied knees;\nTomorrow will go fine.\nWhy do we also stand in jeopardy every hour?\nBut, constantly and a little awkwardly, she tried to step just out of its beam, and thus she went about with a dodging motion, as if always apologizing for herself.\nBut he saith, Nay; lest haply while ye gather up the tares, ye root up the wheat with them.\n“There was my cousin, slipping in, dodging out, beaten mercilessly over the head by the wildly thrashing fish, dancing in, dancing out, throwing her threads and fighting hard. \nHe breathed the morning air into his lungs.\nhaving condemnation, because they have rejected their first pledge.\n“It’s something for me, for a change.”\nIn a week, armed with only a few letters of introduction, you could meet everyone of political or social consequence, right up to the president.\n“Oh, don’t pay any attention to me,” said Charlotte.\nGrandpa always tries the hottest kinds, even some from South America.\nI put the book down and tried not to let it color my view of the man, for Crockett had no say in its production.\n“My little niece calls him Wilbur.\none that ruleth well his own house, having his children in subjection with all gravity;\n“Come out of that pigpen immediately!” cried Mrs. Arable.\nbut Israel, following after a law of righteousness, did not arrive at that law.\nThe clerk was enormously delighted to be staying, to his complete astonishment, at the famous Indian Queen Hotel, and he could not stop talking about it as we walked.\nWhen the stampede was over, he was bleeding and bruised, but nothing was broken.\n“How many goslings are there?\nFor this, Thou shalt not commit adultery, Thou shalt not kill, Thou shalt not steal, Thou shalt not covet, and if there be any other commandment, it is summed up in this word, namely, Thou shalt love thy neighbor as thyself.\nThen remember the day when the word ‘radiant’ appeared clearly on the web.\nAnd he said unto him, Son, thou art ever with me, and all that is mine is thine.\nA thing of wonder, but only to be admired briefly and then shut carefully away again.\n“Good night, Wilbur!”\nAnd the shapes of the locusts were like unto horses prepared for war; and upon their heads as it were crowns like unto gold, and their faces were as men’s faces.\nThe geese cheered.\nBut when Jesus heard it, he said, This sickness is not unto death, but for the glory of God, that the Son of God may be glorified thereby.\nWoe unto you, scribes and Pharisees, hypocrites! for ye cleanse the outside of the cup and of the platter, but within they are full from extortion and excess.\nX. An Explosion  \nLong before Sunday came, the news spread all over the county.\nAs we neared the door of the colonel’s office, Smith slowed and entered behind me.\nThe clearing in the woods where I came upon the boys hewn to death was hardly bigger than the stage of a theater, a brief and roughly circular interruption in the dense forest.\nFor scarcely for a righteous man will one die: for peradventure for the good man some one would even dare to die.\nHe spun and looked behind him and saw the blurred black shape of what might be bear at the edge of vision.\nWhile ye have the light, believe on the light, that ye may become sons of light. These things spake Jesus, and he departed and hid himself from them.\nIt seemed to sleep.\nand shall cut him asunder, and appoint his portion with the hypocrites: there shall be the weeping and the gnashing of teeth. \nAnd Jesus said unto them, A prophet is not without honor, save in his own country, and among his own kin, and in his own house.\nAfter he had ended all his sayings in the ears of the people, he entered into Capernaum.\nAnd he that beholdeth me beholdeth him that sent me.\nAnd as they went on the way, they came unto a certain water; and the eunuch saith, Behold, here is water; what doth hinder me to be baptized?\nThe God and Father of the Lord Jesus, he who is blessed for evermore knoweth that I lie not.\nThen Festus, when he had conferred with the council, answered, Thou hast appealed unto Cæsar: unto Cæsar shalt thou go.\nand delivered righteous Lot, sore distressed by the lascivious life of the wicked\nto whom our fathers would not be obedient, but thrust him from them, and turned back in their hearts unto Egypt,\nAnd ye shall say unto the master of the house, The Teacher saith unto thee, Where is the guest-chamber, where I shall eat the passover with my disciples?\nNothing could ever again match the times when Houston was in residence at the Queen and held court late into the night in the lounge, often until the first flicker of dawn, for he didn’t sleep well in the dark and liked to pass the night drinking and talking and listening to fiddle music.\nYeah, something like that.\nJesus saith unto him, Go thy way; thy son liveth. The man believed the word that Jesus spake unto him, and he went his way.\nbut if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus his Son cleanseth us from all sin.\nand they may recover themselves out of the snare of the devil, having been taken captive by him unto his will. \n“Of course it is,” replied Lurvy.\nOne night, I played the old Washington hand, giving a walking tour to the clerk of a new senator just arrived from some little hard-shell Baptist-ridden town in Alabama.\nNow in the morning as he returned to the city, he hungered.\n“Luck had nothing to do with this,” said the goose.\nMostly full-bloods.\nSo they took away the stone. And Jesus lifted up his eyes, and said, Father, I thank thee that thou heardest me.\n“Neither will I,” said the rat, picking his teeth.\n“What a lot of fuss about nothing!”\nLooking back upon my first meeting with them in the social room of the Queen, it seems like we should have gotten along.\nFor what should a man give in exchange for his life?\nNow there went with him great multitudes: and he turned, and said unto them,\nAnd he said, Jesus, remember me when thou comest in thy kingdom.\nYou refer to assistance reportedly given to the fugitives by the few bad white men scattered among the mountains, but I have yet found no evidence of such assistance.\nSleep hard and dream of your sweethearts.\nthat in the name of Jesus every knee should bow, of things in heaven and things on earth and things under the earth,\nIn that day, he that shall be on the housetop, and his goods in the house, let him not go down to take them away: and let him that is in the field likewise not return back.\nThe Cherokees were never safe and tried to always stay together in groups of 2 or more.\neven when we were dead through our trespasses, made us alive together with Christ (by grace have ye been saved),\nWhen therefore he said unto them, I am he, they went backward, and fell to the ground.\nWho shall separate us from the love of Christ? shall tribulation, or anguish, or persecution, or famine, or nakedness, or peril, or sword?\nand when they had hoisted it up, they used helps, under-girding the ship; and, fearing lest they should be cast upon the Syrtis, they lowered the gear, and so were driven.\nAnd the white Indians of the Nation had gone at it to the best of their understanding.\nwhom God set forth to be a propitiation, through faith, in his blood, to show his righteousness because of the passing over of the sins done aforetime, in the forbearance of God;\nOne night we built a fire in the yard in the old black circle.\nAnd they said unto them even as Jesus had said: and they let them go.\nI am the God of Abraham, and the God of Isaac, and the God of Jacob? God is not the God of the dead, but of the living.\nBut the Possum always had something about him that moved many folks his way, like the wind pushed them or gravity pulled them in his direction.\nHe that rejecteth me, and receiveth not my sayings, hath one that judgeth him: the word that I spake, the same shall judge him in the last day.\nNow Jesus loved Martha, and her sister, and Lazarus.\n“Meetings bore me. \nThe heaven is my throne, And the earth the footstool of my feet: What manner of house will ye build me? saith the Lord: Or what is the place of my rest?\nAnd now, Father, glorify thou me with thine own self with the glory which I had with thee before the world was.\nThey said therefore unto him, What must we do, that we may work the works of God?\nstrengthened with all power, according to the might of his glory, unto all patience and longsuffering with joy;\nAnd putting to sea from thence, we sailed under the lee of Cyprus, because the winds were contrary.\n“There! he said, triumphantly.\nNow when Jesus came into the parts of Cæsarea Philippi, he asked his disciples, saying, Who do men say that the Son of man is?\n“It would be wonderful fun.”\nThey bring to the Pharisees him that aforetime was blind.\nNot from the spider, we can rest assured of that.\nEveryone looked at me.\nI know thy works, and thy toil and patience, and that thou canst not bear evil men, and didst try them that call themselves apostles, and they are not, and didst find them false;\nBut when these things begin to come to pass, look up, and lift up your heads; because your redemption draweth nigh.\nIs the law then against the promises of God? God forbid: for if there had been a law given which could make alive, verily righteousness would have been of the law.\nBefore she finished the sentence, Wilbur was asleep.\nI fast twice in the week; I give tithes of all that I get.\n“Yes, it is,” agreed Charlotte.\nI think I left just a tiny bit of mashed potato.”\nTake heed, brethren, lest haply there shall be in any one of you an evil heart of unbelief, in falling away from the living God:\nAnd Simon answered and said, Pray ye for me to the Lord, that none of the things which ye have spoken come upon me.\nJesus said unto them, I am the bread of life: he that cometh to me shall not hunger, and he that believeth on me shall never thirst.\nHe said he believed that you could think about our situation for a month and come to the same conclusion, for our dilemma was simple.\nknowing that such a one is perverted, and sinneth, being self-condemned.\nI am a glutton but not a merry-maker.\nand having rehearsed all things unto them, he sent them to Joppa.\nMr. Zuckerman knew that a manure pile is a good place to keep a young pig.\n“No name,” he said in a big, hearty voice.\nBut when we are judged, we are chastened of the Lord, that we may not be condemned with the world.\nBrethren, it was needful that the scripture should be fulfilled, which the Holy Spirit spake before by the mouth of David concerning Judas, who was guide to them that took Jesus.\nFor Moses writeth that the man that doeth the righteousness which is of the law shall live thereby.\nIt sounded as if the thicket itself were closing around him, the limbs tightening and reforming from wild tangle into something much simpler, a harsh-spoked wheel with him at the hub.\nBut old Spearfinger was clever and would sneak up on someone who was out alone. She would cut out their liver and disappear back into the fog.\n“He lays in clean straw,” corrected Mr. Zuckerman.\nAnd being moved with compassion, he stretched forth his hand, and touched him, and saith unto him, I will; be thou made clean.\nWhat shall we say then? Is the law sin? God forbid. Howbeit, I had not known sin, except through the law: for I had not known coveting, except the law had said, Thou shalt not covet:\npreaching boldly in the name of the Lord: and he spake and disputed against the Grecian Jews; but they were seeking to kill him.\nAnd in these days Peter stood up in the midst of the brethren, and said (and there was a multitude of persons gathered together, about a hundred and twenty),\nand he told us how he had seen the angel standing in his house, and saying, Send to Joppa, and fetch Simon, whose surname is Peter;\nHe came therefore again unto Cana of Galilee, where he made the water wine. And there was a certain nobleman, whose son was sick at Capernaum.\nNevertheless that which ye have, hold fast till I come.\nIf ye were of the world, the world would love its own: but because ye are not of the world, but I chose you out of the world, therefore the world hateth you.\nAnd when forty years were fulfilled, an angel appeared to him in the wilderness of mount Sinai, in a flame of fire in a bush.\nHe would stand and gaze up at her with adoring eyes.\nI love you.\nAnd I saw another strong angel coming down out of heaven, arrayed with a cloud; and the rainbow was upon his head, and his face was as the sun, and his feet as pillars of fire;\nBut he that hateth his brother is in the darkness, and walketh in the darkness, and knoweth not whither he goeth, because the darkness hath blinded his eyes.\nAnd as they went out from Jericho, a great multitude followed him.\nThis is my commandment, that ye love one another, even as I have loved you.\nWhile he was yet speaking, behold, a bright cloud overshadowed them: and behold, a voice out of the cloud, saying, This is my beloved Son, in whom I am well pleased; hear ye him.\nEverybody I talked to came to the same conclusion as the secretary of war.\nBut let the brother of low degree glory in his high estate:\nLittlefish thought to himself, They only say these things because I am so small and they are so big.\nFor this they wilfully forget, that there were heavens from of old, and an earth compacted out of water and amidst water, by the word of God;\nYe ask, and receive not, because ye ask amiss, that ye may spend it in your pleasures.\nand he supposed that his brethren understood that God by his hand was giving them deliverance; but they understood not.\nAnd they were all filled with the Holy Spirit, and began to speak with other tongues, as the Spirit gave them utterance.\nAnd there arose a sharp contention, so that they parted asunder one from the other, and Barnabas took Mark with him, and sailed away unto Cyprus:\nWhen he woke it was late afternoon.\nAnd I say unto you, Every one who shall confess me before men, him shall the Son of man also confess before the angels of God:\nHe stopped to listen, and there was silence, even when he opened his mouth wide to aid his hearing.\nfor he was a good man, and full of the Holy Spirit and of faith: and much people was added unto the Lord.\nBut, according to his promise, we look for new heavens and a new earth, wherein dwelleth righteousness.\n Then went falling to the ground\nAfter these things came Jesus and his disciples into the land of Judæa; and there he tarried with them, and baptized.\nfor we are become partakers of Christ, if we hold fast the beginning of our confidence firm unto the end:\nYou’ve got to quit thinking that way, I said.\nAnd the Lord’s servant must not strive, but be gentle towards all, apt to teach, forbearing,\nbeing confident of this very thing, that he who began a good work in you will perfect it until the day of Jesus Christ:\nand Eliud begat Eleazar; and Eleazar begat Matthan; and Matthan begat Jacob;\nThen after three years I went up to Jerusalem to visit Cephas, and tarried with him fifteen days.\nStill, I don’t understand how those words got into the web.\nAnd when the devil had completed every temptation, he departed from him for a season.\nIn his excitement he missed his aim, and the water splashed all over Mr. Zuckerman and Avery.\nwho through faith subdued kingdoms, wrought righteousness, obtained promises, stopped the mouths of lions,\nSpiders are very clever at weaving their webs, but needless to say spiders cannot write.”\nin whom ye were also circumcised with a circumcision not made with hands, in the putting off of the body of the flesh, in the circumcision of Christ;\nBut the fruit of the Spirit is love, joy, peace, longsuffering, kindness, goodness, faithfulness,\nAnd if any man hear my sayings, and keep them not, I judge him not: for I came not to judge the world, but to save the world.\nWilbur's food is your food; therefore Wilbur's destiny and your destiny are closely linked.\nNancy mashed pinto beans and mixed them with cornmeal and wood-ash lye and rolled the mixture between her palms into little loaves and wrapped them in scalded fodder blades and held the packages together with thin strips shredded from fodder blades and tied in neat knots.\nNear dusk, the faces in tree bark cease hiding and stare out at you, the welcoming ones and also the malevolent, open in their curiosity.\nhowbeit in the church I had rather speak five words with my understanding, that I might instruct others also, than ten thousand words in a tongue.\nSmith rose and went to a trunk and took out another glass and poured me a drink from his bottle.\nWilbur didn’t care.\n“What are you thinking about, Charlotte?” he asked.\nCharlotte was not satisfied, however.\n“He’s humble, too,” said a woman, reading the sign on the web.\n“Avery is always fine.\nBut the day of the Lord will come as a thief; in the which the heavens shall pass away with a great noise, and the elements shall be dissolved with fervent heat, and the earth and the works that are therein shall be burned up.\nThe Ferris wheel was lighted now.\nlest any man should say that ye were baptized into my name.\nAnd when they were assembled with the elders, and had taken counsel, they gave much money unto the soldiers,\nWhen he recovered from his emotion, he spoke again.\nThe disciples say unto him, If the case of the man is so with his wife, it is not expedient to marry.\nThere was a joy in descent, in suddenly finding the pull of the earth acting consonant with your needs.\n“He’s in that corner, under the straw, asleep,” said Charlotte.\nAnd Jesus went about in all Galilee, teaching in their synagogues, and preaching the gospel of the kingdom, and healing all manner of disease and all manner of sickness among the people.\nBut from then forward, I elaborated on my life a bit more fully and romantically during dinner conversation, and if anybody wanted to call me chief, they were welcome to it.\nThen are there crucified with him two robbers, one on the right hand and one on the left.\nNow concerning things sacrificed to idols: We know that we all have knowledge. Knowledge puffeth up, but love edifieth.\nAnd they said, What further need have we of witness? for we ourselves have heard from his own mouth. \nAnd I am glad for your sakes that I was not there, to the intent ye may believe; nevertheless let us go unto him.\nThe Jews answered him, For a good work we stone thee not, but for blasphemy; and because that thou, being a man, makest thyself God.\nAll flesh is not the same flesh: but there is one flesh of men, and another flesh of beasts, and another flesh of birds, and another of fishes.\nThey now had their own laws and head chief and bicameral legislature housed in a big townhouse, and a supreme court and even a national academy and a museum displaying the long culture of the people.\neven as thou gavest him authority over all flesh, that to all whom thou hast given him, he should give eternal life.\nThe sun shall be turned into darkness, And the moon into blood, Before the day of the Lord come, That great and notable day:\nLight comes from everywhere at once, shapes shift, and sounds are muffled and magnified unpredictably.\nLove suffereth long, and is kind; love envieth not; love vaunteth not itself, is not puffed up,\nA little while, and ye behold me no more; and again a little while, and ye shall see me.\nShe’s a rather queer child — full of notions.\nbut we have renounced the hidden things of shame, not walking in craftiness, nor handling the word of God deceitfully; but by the manifestation of the truth commending ourselves to every man’s conscience in the sight of God.\nAnd the rat began to climb a rope that hung against the wall.\nHis medal still hung from his neck; by looking out of the corner of his eye he could see it.\nThey got up, and together they walked down to Wilbur’s yard.\nAnd on that day, when even was come, he saith unto them, Let us go over unto the other side.\nAnd when they had appointed him a day, they came to him into his lodging in great number; to whom he expounded the matter, testifying the kingdom of God, and persuading them concerning Jesus, both from the law of Moses and from the prophets, from morning till evening.\nHis name was Perry.\nAnd with many other words he testified, and exhorted them, saying, Save yourselves from this crooked generation.\nSome indeed preach Christ even of envy and strife; and some also of good will:\nAnd he went out from thence; and he cometh into his own country; and his disciples follow him.\nA flat of bottomland cut to red mud by men and horses, the unbroken brown face of a broad river running straight and then curving away, green mountains rising in steep pitches to the four cardinal directions.\nHe carefully took the little bundle in his mouth and held it there on top of his tongue.\nBut to him that worketh not, but believeth on him that justifieth the ungodly, his faith is reckoned for righteousness.\nToo much going on around here.”\nHe saith unto them, But who say ye that I am?\nShe tipped her head in the direction of forward.\nThou knowest the commandments, Do not commit adultery, Do not kill, Do not steal, Do not bear false witness, Honor thy father and mother.\nAnd I also say unto thee, that thou art Peter, and upon this rock I will build my church; and the gates of Hades shall not prevail against it.\nAnd when he drew nigh, he saw the city and wept over it,\nThe rat mumbled something to himself and disappeared into the shadows.\nAnd all that dwell on the earth shall worship him, every one whose name hath not been written from the foundation of the world in the book of life of the Lamb that hath been slain.\nThen he tied the medal around Wilbur’s neck.\nCircle their houses and give them half an hour to collect only what they could easily carry and then herd them down the road or trail to the next farmstead and do the same there.\nBut of that day or that hour knoweth no one, not even the angels in heaven, neither the Son, but the Father.\nThe chief priests of the Jews therefore said to Pilate, Write not, The King of the Jews; but, that he said, I am King of the Jews.\nThe families had gone to look for Fern.\nwhich in its own times he shall show, who is the blessed and only Potentate, the King of kings, and Lord of lords;\nHe closed his eyes, pulled some straw over himself, and dropped off into a deep sleep.\nAnd furthermore,” said Charlotte, shaking one of her legs, “do you realize that if I didn't catch bugs and eat them, bugs would increase and multiply and get so numerous that they’d destroy the earth, wipe out everything?”\nAnd many shall follow their lascivious doings; by reason of whom the way of the truth shall be evil spoken of.\nRemember the word that I said unto you, A servant is not greater than his lord. If they persecuted me, they will also persecute you; if they kept my word, they will keep yours also.\nAnd he had in his right hand seven stars: and out of his mouth proceeded a sharp two-edged sword: and his countenance was as the sun shineth in his strength.\nBut he that standeth stedfast in his heart, having no necessity, but hath power as touching his own will, and hath determined this in his own heart, to keep his own virgin daughter, shall do well.\nAnd as the sailors were seeking to flee out of the ship, and had lowered the boat into the sea, under color as though they would lay out anchors from the foreship,\nsaying, Thou wentest in to men uncircumcised, and didst eat with them.\nBut I will warn you whom ye shall fear: Fear him, who after he hath killed hath power to cast into hell; yea, I say unto you, Fear him.\nBut he answered and said unto them, Give ye them to eat. And they say unto him, Shall we go and buy two hundred shillings’ worth of bread, and give them to eat?\nFor this is he that was spoken of through Isaiah the prophet, saying, The voice of one crying in the wilderness, Make ye ready the way of the Lord, Make his paths straight.\nThis was an important event in the barn cellar.\nonly, whereunto we have attained, by that same rule let us walk.\nAt any rate, don't worry about Fern—she’s just got a lively imagination.\nTake my yoke upon you, and learn of me; for I am meek and lowly in heart: and ye shall find rest unto your souls.\nFor our glorying is this, the testimony of our conscience, that in holiness and sincerity of God, not in fleshly wisdom but in the grace of God, we behaved ourselves in the world, and more abundantly to you-ward.\nBut I am in a strait betwixt the two, having the desire to depart and be with Christ; for it is very far better:\nBut Simon Peter, when he saw it, fell down at Jesus’ knees, saying, Depart from me; for I am a sinful man, O Lord.\nBut what think ye? A man had two sons; and he came to the first, and said, Son, go work to-day in the vineyard.\nNow where remission of these is, there is no more offering for sin.\nTill I make thine enemies the footstool of thy feet.\nWe have an altar, whereof they have no right to eat that serve the tabernacle.\nAnd he killed James the brother of John with the sword.\nThey were telling tales, and I nodded at them to keep on with what they were doing.\nWhat he hath seen and heard, of that he beareth witness; and no man receiveth his witness.\nFor this ointment might have been sold for much, and given to the poor.\n“Saved from an untimely death.\nand they spake, saying unto him, Tell us: By what authority doest thou these things? or who is he that gave thee this authority?\nWilbur didn’t care.\nThen Judas, who betrayed him, when he saw that he was condemned, repented himself, and brought back the thirty pieces of silver to the chief priests and elders,\nAll unrighteousness is sin: and there is a sin not unto death.\nHe tried to yell back to her, but his tiny voice disappeared in the roar of the water.\nAnd the whole company of them rose up, and brought him before Pilate.\n“Don't say that!” groaned Wilbur. “Please don't say things like that!”\nAnd I answered, Who art thou, Lord? And he said unto me, I am Jesus of Nazareth, whom thou persecutest.\nAnd in that same house remain, eating and drinking such things as they give: for the laborer is worthy of his hire. Go not from house to house.\nAnd behold, a woman that had a spirit of infirmity eighteen years; and she was bowed together, and could in no wise lift herself up.\nand he put all things in subjection under his feet, and gave him to be head over all things to the church,\nTwo men went up into the temple to pray; the one a Pharisee, and the other a publican.\nand there was a widow in that city; and she came oft unto him, saying, Avenge me of mine adversary.\nYea, and we are found false witnesses of God; because we witnessed of God that he raised up Christ: whom he raised not up, if so be that the dead are not raised.\nAnd the rat was failing him.\nAnd thou shalt have joy and gladness; and many shall rejoice at his birth.\n“Do you understand how there could be any writing in a spider’s web?”\n“I can’t see you.\nThrough the woods they traveled, and to the market.\nShe mentioned that she knew a vastly famous old Boston writer, who had told her he could not get through a day in any peace unless he had written a specific quantity of lines.\nAnd at the season he sent to the husbandmen a servant, that he might receive from the husbandmen of the fruits of the vineyard.\nAnd he said, For this cause have I said unto you, that no man can come unto me, except it be given unto him of the Father.\nAnd when he came out, he could not speak unto them: and they perceived that he had seen a vision in the temple: and he continued making signs unto them, and remained dumb.\nbut had certain questions against him of their own religion, and of one Jesus, who was dead, whom Paul affirmed to be alive.\nBe it known unto you therefore, brethren, that through this man is proclaimed unto you remission of sins:\nFlattering portraits notwithstanding, Jackson looked older than he was, sixty-five or thereabouts.\nWherefore I take pleasure in weaknesses, in injuries, in necessities, in persecutions, in distresses, for Christ’s sake: for when I am weak, then am I strong.\nAt another party, we created a minor scandal by dancing every dance exclusively together.\nsaying unto them, Go into the village that is over against you, and straightway ye shall find an ass tied, and a colt with her: loose them, and bring them unto me.\nAnd taking the child by the hand, he saith unto her, Talitha cumi; which is, being interpreted, Damsel, I say unto thee, Arise.\n“You're kidding.”\nNow after these things the Lord appointed seventy others, and sent them two and two before his face into every city and place, whither he himself was about to come.\nAt the end of a day’s travel, I’d strip out of my wet clothes and wash in the creek and then dress in my dry evening attire.\nFor they themselves report concerning us what manner of entering in we had unto you; and how ye turned unto God from idols, to serve a living and true God,\nPilate answered, What I have written I have written.\nWherefore, my beloved brethren, be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labor is not vain in the Lord. \nthat the word of Isaiah the prophet might be fulfilled, which he spake, Lord, who hath believed our report? And to whom hath the arm of the Lord been revealed?\nWhat therefore will the lord of the vineyard do? he will come and destroy the husbandmen, and will give the vineyard unto others.\nAnd all the people answered and said, His blood be on us, and on our children.\nCharlotte rested and ate a grasshopper.\nThe children in the grandstand screamed with appreciation.\nSometime when no one was looking, George had slipped back into camp to share the fate of his wife and children.\nAnd he went and joined himself to one of the citizens of that country; and he sent him into his fields to feed swine.\nand all that heard him were amazed at his understanding and his answers.\nSimon Peter therefore having a sword drew it, and struck the high priest’s servant, and cut off his right ear. Now the servant’s name was Malchus.\n“I am,” said Charlotte.\nand when he had given thanks, he brake it, and said, This is my body, which is for you: this do in remembrance of me.\nThe same following after Paul and us cried out, saying, These men are servants of the Most High God, who proclaim unto you the way of salvation.\nAnd unto one he gave five talents, to another two, to another one; to each according to his several ability; and he went on his journey.\nThey also reasoned that a hatchet, like a knife, is both weapon and tool, and for all they knew, the Army allowed its prisoners to keep their knives and hatchets.\nNow the servants and the officers were standing there, having made a fire of coals; for it was cold; and they were warming themselves: and Peter also was with them, standing and warming himself.\nabstain from every form of evil.\nHowbeit ye did well that ye had fellowship with my affliction.\nYou couldn’t cut a wagon road through even the easiest parts without the greatest difficulty.\nAnd Jesus saith unto him, The foxes have holes, and the birds of the heaven have nests; but the Son of man hath not where to lay his head.\nAnd others fell upon the thorns; and the thorns grew up and choked them:\nAmerica took Ross’s low bid and got what they paid for.\nThis was certainly the worst day of his life.\nNow to him that is able to establish you according to my gospel and the preaching of Jesus Christ, according to the revelation of the mystery which hath been kept in silence through times eternal,\n“What do you think you are?”\nand said unto him, Go, wash in the pool of Siloam (which is by interpretation, Sent). He went away therefore, and washed, and came seeing.\nAnd according to the law, I may almost say, all things are cleansed with blood, and apart from shedding of blood there is no remission.\nThis had been a tiring afternoon.\nWith inhabitants of unclear citizenship and all possible degrees of blood, but so remote from the state capital that nobody in government much cared who we were or what we did way out in our doleful coves.\nHens were shaken from their roosts onto the dirt, and treetops swayed though there was no wind whatsoever.\nHe said again, Come to me.\nNow while Paul waited for them at Athens, his spirit was provoked within him as he beheld the city full of idols.\nBut concerning love of the brethren ye have no need that one write unto you: for ye yourselves are taught of God to love one another;\nAnd account that the longsuffering of our Lord is salvation; even as our beloved brother Paul also, according to the wisdom given to him, wrote unto you;\nwhom I have sent back to thee in his own person, that is, my very heart:\nWilbur, feeling the cold water, came to.\nbut now is manifested, and by the scriptures of the prophets, according to the commandment of the eternal God, is made known unto all the nations unto obedience of faith:\nShe left that afternoon to meet Boudinot nearby and be surreptitiously married by a sympathetic preacher, and afterward they set out south with young Ridge and his equally stunned bride.\namong whom are ye also, called to be Jesus Christ’s:\nWhen organisms decompose, they make rich soil.\nbut if any man loveth God, the same is known by him.\nEnd-times are tricky things to deal with, Bear said.\nfor the truth’s sake which abideth in us, and it shall be with us for ever:\nHe said, These goddamn fucking mountains.\nThere arose therefore a questioning on the part of John’s disciples with a Jew about purifying.\nHe parted laurel boughs and they rattled against him as he passed through their gates at a stoop.\nHis view was that they needed a great deal more such land.\nBut it is not as though the word of God hath come to nought. For they are not all Israel, that are of Israel:\nThey sought again to take him: and he went forth out of their hand.\nAnd passing along by the sea of Galilee, he saw Simon and Andrew the brother of Simon casting a net in the sea; for they were fishers.\nNo one had ever had such a friend—-so affectionate, so loyal, and so skillful.\nThere was no answer.\nwhom I have sent unto you for this very purpose, that ye may know our state, and that he may comfort your hearts.\n“Let’s go!”\nAnd on both ends of the transaction, I had ways to get hold of scrivener’s copies.\nHe was tired, and the whisky had hit him fast.\nfrom whom every family in heaven and on earth is named,\nFrom that point, the bloody little moment unfolded in less time than drawing five breaths.\nIf I partake with thankfulness, why am I evil spoken of for that for which I give thanks?\n“No, I only distribute pigs to early risers,” said Mr. Arable.\nBut if he hear thee not, take with thee one or two more, that at the mouth of two witnesses or three every word may be established.\nHere she sat quietly during the long afternoons, thinking and listening and watching Wilbur.\nHis color was like wood ash, and his eyes were dark and swollen below the underlids, and he was sheened with sweat even in the cool of evening.\nWhere is he that is born King of the Jews? for we saw his star in the east, and are come to worship him.\nArt thou greater than our father Jacob, who gave us the well, and drank thereof himself, and his sons, and his cattle?\nAnd as they were loosing the colt, the owners thereof said unto them, Why loose ye the colt?\nThe fish had many names, but the Cherokee people called them Rainbow Trout.\nBut Jesus perceived their wickedness, and said, Why make ye trial of me, ye hypocrites?\nThose of the Pharisees who were with him heard these things, and said unto him, Are we also blind?\nSo when Pilate saw that he prevailed nothing, but rather that a tumult was arising, he took water, and washed his hands before the multitude, saying, I am innocent of the blood of this righteous man; see ye to it.\nTherefore I say unto you, Every sin and blasphemy shall be forgiven unto men; but the blasphemy against the Spirit shall not be forgiven.\nHe can tear out bits of advertisements and bring them up here to the barn cellar, so that Charlotte can have something to copy.”\nNeither be ye called masters: for one is your master, even the Christ.\nAnd for so long I have hated my nature for failing to say what I felt.\neven the Spirit of truth: whom the world cannot receive; for it beholdeth him not, neither knoweth him: ye know him; for he abideth with you, and shall be in you.\nAnd I will show wonders in the heaven above, And signs on the earth beneath; Blood, and fire, and vapor of smoke:\nIt is deeply satisfying to win a prize in front of a lot of people.\nOur orbits were duplicated in a great rippling framed mirror on the wall.\nMeats for the belly, and the belly for meats: but God shall bring to nought both it and them. But the body is not for fornication, but for the Lord; and the Lord for the body:\nAnd behold, there are last who shall be first, and there are first who shall be last.\nAnd when eight days were fulfilled for circumcising him, his name was called JESUS, which was so called by the angel before he was conceived in the womb.\nAgain therefore he asked them, Whom seek ye? And they said, Jesus of Nazareth.\nAnd who is he that will harm you, if ye be zealous of that which is good?\nThere were no digging tools to be had, so the burial would be in the fashion of a stone barrow.\n They were going south, you see.\nHis hat was off and his blond hair stood in points, and every once in a while he would rake his fingers through it as if to smooth it down.\nAnd with him they crucify two robbers; one on his right hand, and one on his left.\nIf the whole body were an eye, where were the hearing? If the whole were hearing, where were the smelling?\nPhiladelphia wanted to fall and went as far as his knees, but George kept yanking him upright, trying to get his hatchet out.\nI thank my God always, making mention of thee in my prayers,\nIf therefore the Son shall make you free, ye shall be free indeed.\n“Oh,” she whispered.\nNone of them had ever fired a weapon except in training or for amusement or in highly amateur attempts at hunting.\nThey were not afraid of Wolf, but they thought that he was truly annoying.\nAnd he answered and said, I will not: but afterward he repented himself, and went.\nand having found one pearl of great price, he went and sold all that he had, and bought it.\nThe cloak that I left at Troas with Carpus, bring when thou comest, and the books, especially the parchments.\nHe said therefore, A certain nobleman went into a far country, to receive for himself a kingdom, and to return.\nbecause that which is known of God is manifest in them; for God manifested it unto them.\nAnd they went out, and preached that men should repent.\nPlease, please, please, Templeton, climb up and get the egg sac.”\n“Do you know what Charlotte said when the goslings hatched?”\nHe found what Beaver was talking about.\nIf any man speaketh in a tongue, let it be by two, or at the most three, and that in turn; and let one interpret:\nAnd inasmuch as it is not without the taking of an oath\nGrace to you and peace from God our Father and the Lord Jesus Christ.\nAnd when Peter saw it, he answered unto the people, Ye men of Israel, why marvel ye at this man? or why fasten ye your eyes on us, as though by our own power or godliness we had made him to walk?\nMr. Arable cut the motor, got out, walked around to the rear, and lowered the tailgate.\nAnd bring us not into temptation, but deliver us from the evil one.\n“Get around behind him, Lurvy,” said Mr. Zuckerman, “and drive him toward the barn!\nand not by his coming only, but also by the comfort wherewith he was comforted in you, while he told us your longing, your mourning, your zeal for me; so that I rejoiced yet more.\nBut when the Son of man shall come in his glory, and all the angels with him, then shall he sit on the throne of his glory:\nEverything had gone wrong, but how could it not have?\nOnly Luke is with me. Take Mark, and bring him with thee; for he is useful to me for ministering.\nAnd Jesus said unto them, The sons of this world marry, and are given in marriage:\nJesus saith unto her, Mary. She turneth herself, and saith unto him in Hebrew, Rabboni; which is to say, Teacher.\nLurvy shaved and got a haircut; and his principal farm duty was to feed the pig while people looked on.\nI have fought the good fight, I have finished the course, I have kept the faith:\nFor I rejoiced greatly, when brethren came and bare witness unto thy truth, even as thou walkest in truth.\nWherefore let them also that suffer according to the will of God commit their souls in well-doing unto a faithful Creator. \nThey marched nobody away with a bayonet point to their buttocks.\nAnd they began to accuse him, saying, We found this man perverting our nation, and forbidding to give tribute to Cæsar, and saying that he himself is Christ a king.\nLurvy shook hands with everybody.\nBut the righteousness which is of faith saith thus, Say not in thy heart, Who shall ascend into heaven? (that is, to bring Christ down:)\nI speak not of you all: I know whom I have chosen: but that the scripture may be fulfilled, He that eateth my bread lifted up his heel against me.\n“Maybe you're right, he said gruffly.\nOh, you look just fine to me.\nThe current of the water was too strong and Littlefish closed his eyes as it pulled him through into a smaller pool.\nAnd suddenly there came from heaven a sound as of the rushing of a mighty wind, and it filled all the house where they were sitting.\nAnd the report of him went out straightway everywhere into all the region of Galilee round about.\nand raised us up with him, and made us to sit with him in the heavenly places, in Christ Jesus:\nNow in the things which we are saying the chief point is this: We have such a high priest, who sat down on the right hand of the throne of the Majesty in the heavens,\nLittle fingers push through to reach for a string to hold onto.\nAnd no marvel; for even Satan fashioneth himself into an angel of light.\nPaul, an apostle of Christ Jesus through the will of God, and Timothy our brother,\nThe children ran out to the road and climbed into the bus.\nOr know ye not that your body is a temple of the Holy Spirit which is in you, which ye have from God? and ye are not your own;\nI’m not proud to report it.\n“Look,” said the old sheep, “next time you go to the dump, Templeton, bring back a clipping from a magazine.\nBut they cried out with a loud voice, and stopped their ears, and rushed upon him with one accord;\nCan you hear me?\n“What are they, and where are you?” screamed Wilbur.\nand that the Gentiles might glorify God for his mercy; as it is written, Therefore will I give praise unto thee among the Gentiles, And sing unto thy name.\nIt started to rain and the wind blew her hat in the puddle.\nWolf was in serious pain.\nThe droppings put nutrients in the soil.\nHear me? ”\n“You asked for water,” said Lurvy meekly.\nthey that devour widows’ houses, and for a pretence make long prayers; these shall receive greater condemnation.\nLet them therefore, saith he, that are of power among you go down with me, and if there is anything amiss in the man, let them accuse him.\nand, being assembled together with them, he charged them not to depart from Jerusalem, but to wait for the promise of the Father, which, said he, ye heard from me:\nand in nothing affrighted by the adversaries: which is for them an evident token of perdition, but of your salvation, and that from God;\nCharlotte felt greatly relieved to see him go.\nMr. Arable stopped walking.\nIn the distance, fireworks began going off — rockets,  scattering fiery balls in the sky.\nHatchets appeared from under blanket cloaks.\nBut if nothing is nothing, then nothing has nothing that is less than it is.”\nand the name of the star is called Wormwood: and the third part of the waters became wormwood; and many men died of the waters, because they were made bitter.\nVery nice to meet you Crawdaddy, but I must swim on, said Littlefish.\nAnd it came to pass, that after three days he called together those that were the chief of the Jews: and when they were come together, he said unto them, I, brethren, though I had done nothing against the people, or the customs of our fathers, yet was delivered prisoner from Jerusalem into the hands of the Romans:\nAnd not a few of them that practised magical arts brought their books together and burned them in the sight of all; and they counted the price of them, and found it fifty thousand pieces of silver.\nAnd seeing the man that was healed standing with them, they could say nothing against it.\nFor by thy words thou shalt be justified, and by thy words thou shalt be condemned.\nwhereunto I was appointed a preacher and an apostle (I speak the truth, I lie not), a teacher of the Gentiles in faith and truth.\nAnd as he reasoned of righteousness, and self-control, and the judgment to come, Felix was terrified, and answered, Go thy way for this time; and when I have a convenient season, I will call thee unto me.\nFor it is written in the law of Moses, Thou shalt not muzzle the ox when he treadeth out the corn. Is it for the oxen that God careth,\n“I never looked at it that way before.\nSeven baby geese.\nI said to the colonel, What about our previous agreement?\nIn gold letters it said:  ZUCKERMAN’S FAMOUS PIG  Charlotte had her web looking fine for the occasion.\nA great feeling of happiness swept over the Zuckermans and the Arables.\nAnd behold, two of them were going that very day to a village named Emmaus, which was threescore furlongs from Jerusalem.\nThese things have I spoken unto you, while yet abiding with you.\nShe went through the mountains singing a song, and it was pretty if you didn’t listen closely to the words, for they were all about eating people’s livers.\nFor he shall be delivered up unto the Gentiles, and shall be mocked, and shamefully treated, and spit upon:\nThank you, the boy said.\nChief Ross had more Scots blood than anything else—seven-eighths majority of it, in fact.\nHe lifted his nose and sniffed. The smell was delicious —warm milk, potato skins, wheat middlings, Kellogg's Corn Flakes, and a popover left from the Zuckermans’ breakfast.\nWe both traced the outline of her lips and said the word garnet, as if it were the most ridiculous word in the entire English lexicon.\nAnd when he was come to Jerusalem, he assayed to join himself to the disciples: and they were all afraid of him, not believing that he was a disciple.\nBut he was angry, and would not go in: and his father came out, and entreated him.\nThe law and the prophets were until John: from that time the gospel of the kingdom of God is preached, and every man entereth violently into it.\nIn a short time he had dug a tunnel in the straw.\n“I’m no good at making speeches.\nand they said to the woman, Now we believe, not because of thy speaking: for we have heard for ourselves, and know that this is indeed the Saviour of the world.\nBut there was no sign of bear along the rill.\nand said, Where have ye laid him? They say unto him, Lord, come and see.\nrooted and builded up in him, and established in your faith, even as ye were taught, abounding in thanksgiving.\n“Can't I please have some money?” asked Fern.\nBut now hath God set the members each one of them in the body, even as it pleased him.\n“Good. said Charlotte, winking at the old sheep.\nBut the Jews, being moved with jealousy, took unto them certain vile fellows of the rabble, and gathering a crowd, set the city on an uproar; and assaulting the house of Jason, they sought to bring them forth to the people.\nHe that overcometh, I will make him a pillar in the temple of my God, and he shall go out thence no more: and I will write upon him the name of my God, and the name of the city of my God, the new Jerusalem, which cometh down out of heaven from my God, and mine own new name.\nEven so every good tree bringeth forth good fruit; but the corrupt tree bringeth forth evil fruit.\nMr. Zuckerman ordered Lurvy to increase Wilbur’s feedings from three meals a day to four meals a day.\nThe next morning, which was a Sunday, she got up and dressed in her best clothes and walked alone straight through town, past the grey and still-smoking ashes of her pyre and into the church, where she sat on the front pew with her face set and let the congregation all glare hatred at the back of her head for an hour.\nMrs. Zuckerman sank into a chair.\nHereby shall we know that we are of the truth, and shall assure our heart before him:\n“It's real thoughtful of you to do that, Charlotte,” he said.\nHe had only his creel of withered roots.\nAnd the city lieth foursquare, and the length thereof is as great as the breadth: and he measured the city with the reed, twelve thousand furlongs: the length and the breadth and the height thereof are equal.\nAnd I said, Who art thou, Lord? And the Lord said, I am Jesus whom thou persecutest.\nThe disciples therefore said one to another, Hath any man brought him aught to eat?\nAnd the disciples came to the other side and forgot to take bread.\nBut Jesus, not heeding the word spoken, saith unto the ruler of the synagogue, Fear not, only believe.\nAnd I saw as it were a sea of glass mingled with fire; and them that come off victorious from the beast, and from his image, and from the number of his name, standing by the sea of glass, having harps of God.\nCharley went on upward, one red drop at a time until the sign died entirely before him.\nWhosoever shall confess that Jesus is the Son of God, God abideth in him, and he in God.\nEach strand held dozens of bright drops of early morning dew.\n“How much did the fish weigh?” asked Wilbur eagerly.\nAs he swam on, Littlefish though about what the big fish had said.\nFern was crying.\nYet if the unbelieving departeth, let him depart: the brother or the sister is not under bondage in such cases: but God hath called us in peace.\nFor he that was called in the Lord being a bondservant, is the Lord’s freedman: likewise he that was called being free, is Christ’s bondservant.\nlooking for and earnestly desiring the coming of the day of God, by reason of which the heavens being on fire shall be dissolved, and the elements shall melt with fervent heat?\nAnd when he opened the second seal, I heard the second living creature saying, Come.\nThey are called Giant Sequoia.\nHa! Really not learning anything, thought Rabbit…\nHowever, this kind does not go out except by prayer and fasting\nTherewith bless we the Lord and Father; and therewith curse we men, who are made after the likeness of God:\nAnd of course he couldn’t say anything.\nBut there arose false prophets also among the people, as among you also there shall be false teachers, who shall privily bring in destructive heresies, denying even the Master that bought them, bringing upon themselves swift destruction.\nFor what purpose?\nAnd when he was come into Jerusalem, all the city was stirred, saying, Who is this?\n“Lambs?”\nFor this cause I Paul, the prisoner of Christ Jesus in behalf of you Gentiles,—\nAnd she was delivered of a son, a man child, who is to rule all the nations with a rod of iron: and her child was caught up unto God, and unto his throne.\nHe that hath an ear, let him hear what the Spirit saith to the churches. To him that overcometh, to him will I give to eat of the tree of life, which is in the Paradise of God.\nwith all lowliness and meekness, with longsuffering, forbearing one another in love;\nand the Living one; and I was dead, and behold, I am alive for evermore, and I have the keys of death and of Hades.\nAnd the world passeth away, and the lust thereof: but he that doeth the will of God abideth for ever.\na horse was standing there \nAnd straightway the damsel rose up, and walked; for she was twelve years old. And they were amazed straightway with a great amazement.\nHe didn’t like being the center of all this fuss.\nFor the husband is the head of the wife, as Christ also is the head of the church, being himself the saviour of the body.\nAnd as they spake these things, he himself stood in the midst of them, and saith unto them, Peace be unto you.\nFor the whole law is fulfilled in one word, even in this: Thou shalt love thy neighbor as thyself.\nAnd they that went before rebuked him, that he should hold his peace: but he cried out the more a great deal, Thou son of David, have mercy on me.\nI would be left alone, with no friends.\nwho seeing Peter and John about to go into the temple, asked to receive an alms.\nAnd a certain man that was lame from his mother’s womb was carried, whom they laid daily at the door of the temple which is called Beautiful, to ask alms of them that entered into the temple;\nCharley’s people sat by the fire with Axe and his wife and ate the meal off wood trays with cane-stalk implements.\nFor many deceivers are gone forth into the world, even they that confess not that Jesus Christ cometh in the flesh. This is the deceiver and the anti-christ.\nNow he is not the God of the dead, but of the living: for all live unto him.\nAwake to soberness righteously, and sin not; for some have no knowledge of God: I speak this to move you to shame.\nThe salutation of me Paul with mine own hand, which is the token in every epistle: so I write.\nWhen he looked up at me, tears were brimming at his lids.\n“Of course you do,” said Charlotte.\n‘‘He’s really a very innocent little pig.\nNow we, brethren, as Isaac was, are children of promise.\nthere is nothing from without the man, that going into him can defile him; but the things which proceed out of the man are those that defile the man.\nFor we are his workmanship, created in Christ Jesus for good works, which God afore prepared that we should walk in them.\n“Another spring.”\n“I can’t be quiet,” screamed Wilbur, racing up and down.\nAnd the day following he appeared unto them as they strove, and would have set them at one again, saying, Sirs, ye are brethren; why do ye wrong one to another?\nFor whosoever would save his life shall lose it; and whosoever shall lose his life for my sake and the gospel’s shall save it.\nAnd by the way, don’t ever ignore my orders again.\nMarvel not, brethren, if the world hateth you.\nI will no more speak much with you, for the prince of the world cometh: and he hath nothing in me;\nbut I made supplication for thee, that thy faith fail not; and do thou, when once thou hast turned again, establish thy brethren.\nwho delivered us out of so great a death, and will deliver: on whom we have set our hope that he will also still deliver us;\nAnd as Jesus was going up to Jerusalem, he took the twelve disciples apart, and on the way he said unto them,\nAnd when a convenient day was come, that Herod on his birthday made a supper to his lords, and the high captains, and the chief men of Galilee;\nAnd for me, it was as Romantic as all of Byron’s poetry put together.\nEvery man praying or prophesying, having his head covered, dishonoreth his head.\nAnd it was about the space of three hours after, when his wife, not knowing what was done, came in.\nMr. Zuckerman spied them when he came with Wilbur’s supper.\nWhen they got ready to leave, she had said, Be off with you, then.\nSalute the brethren that are in Laodicea, and Nymphas, and the church that is in their house.\nHe walked to the wall and started to climb.\nyea and before governors and kings shall ye be brought for my sake, for a testimony to them and to the Gentiles.\nbut he was rebuked for his own transgression: a dumb ass spake with man’s voice and stayed the madness of the prophet.\nEvery one that cometh unto me, and heareth my words, and doeth them, I will show you to whom he is like:\nI say again, Let no man think me foolish; but if ye do, yet as foolish receive me, that I also may glory a little.\nBut some one will say, How are the dead raised? and with what manner of body do they come?\nAnd there came one of the seven angels who had the seven bowls, who were laden with the seven last plagues; and he spake with me, saying, Come hither, I will show thee the bride, the wife of the Lamb.\ncasting all your anxiety upon him, because he careth for you.\nShe grabbed the ﬂy, threw a few jets of silk around it, and rolled it over and over, wrapping it so that it couldn't move.\nPersonal goods and clothing lay scattered about.\nBut I have used none of these things: and I write not these things that it may be so done in my case; for it were good for me rather to die, than that any man should make my glorying void.\nbut given to hospitality, a lover of good, sober-minded, just, holy, self-controlled;\nFathers, provoke not your children, that they be not discouraged.\nbeing defamed, we entreat: we are made as the filth of the world, the offscouring of all things, even until now.\nAnd when she was baptized, and her household, she besought us, saying, If ye have judged me to be faithful to the Lord, come into my house, and abide there. And she constrained us.\nHaving such an important pig was going to mean plenty of extra work, he could see that.\nJaggy stones of all sizes lay scattered on the ground, sloughed off the rock face.\nAnd all the multitude sought to touch him; for power came forth from him, and healed them all.\nAnd if Charlotte needs help in finding words, I think she can get it from our friend Templeton.\nand they knew not until the flood came, and took them all away; so shall be the coming of the Son of man.\nAnd the apostles gather themselves together unto Jesus; and they told him all things, whatsoever they had done, and whatsoever they had taught.\nAnd so Wilbur came home to his beloved manure pile in the barn cellar.\nThe Lord is not slack concerning his promise, as some count slackness; but is longsuffering to you-ward, not wishing that any should perish, but that all should come to repentance.\nJesus therefore said, Suffer her to keep it against the day of my burying.\nThey thrust their little necks out and kept up a musical whistling, like a tiny troupe of pipers.\nHe closed his eyes.\nThere is romance in the lone fugitive.\nThen you got up all your nerve, took a deep breath, and jumped.\nwho delivered us out of the power of darkness, and translated us into the kingdom of the Son of his love;\n“I’m too tired.”\nBy faith they passed through the Red sea as by dry land: which the Egyptians assaying to do were swallowed up.\nThey said therefore unto him, Lord, evermore give us this bread.\n“You'll have to read it for me.”\nI looked back, and a vigorous plume of vapor puffed from Smith’s mouth.\nNow unto him that is able to guard you from stumbling, and to set you before the presence of his glory without blemish in exceeding joy,\nBut when the young man heard the saying, he went away sorrowful; for he was one that had great possessions.\nAll things are lawful; but not all things are expedient. All things are lawful; but not all things edify.\nI receive not glory from men.\nOr how wilt thou say to thy brother, Let me cast out the mote out of thine eye; and lo, the beam is in thine own eye?\nPerhaps some green young lieutenant unacquainted with the facts.\nCharley looked at Lowan and George and Jake, and they seemed to have no opinion on this matter or any other.\nWilbur didn’t know what to do or which way to run.\nAnd when Paul had laid his hands upon them, the Holy Spirit came on them; and they spake with tongues, and prophesied.\nand hope putteth not to shame; because the love of God hath been shed abroad in our hearts through the Holy Spirit which was given unto us.\nI say unto you, Though he will not rise and give him because he is his friend, yet because of his importunity he will arise and give him as many as he needeth.\nAs I wove my way through the yard, overhearing a thin slice of the sermon, I reckoned the slaves must be doubly stunned, seeing how their Indian masters were suddenly powerless and stripped of nearly every item of private property except for themselves.\nNow at the feast the governor was wont to release unto the multitude one prisoner, whom they would.\nand passing by Mysia, they came down to Troas.\nAnd perhaps that was the point.\nMrs. Arable hugged Mrs. Zuckerman.\nwho gave himself for our sins, that he might deliver us out of this present evil world, according to the will of our God and Father:\nBeloved, I beseech you as sojourners and pilgrims, to abstain from fleshly lusts, which war against the soul;\nbut all these worketh the one and the same Spirit, dividing to each one severally even as he will.\nBut so much the more went abroad the report concerning him: and great multitudes came together to hear, and to be healed of their infirmities.\nWhat to say to her other than Love me, love me.\nAnd the son said unto him, Father, I have sinned against heaven, and in thy sight: I am no more worthy to be called thy son.\nWe know that we are of God, and the whole world lieth in the evil one.\nAnd they said unto him, We neither received letters from Judæa concerning thee, nor did any of the brethren come hither and report or speak any harm of thee.\nAnd the angel said unto her, Fear not, Mary: for thou hast found favor with God.\nBut that didn't matter to Sequoyah.\nAnd with the rain, the creek grew deeper and the water flowed faster.\nAnd while they were looking stedfastly into heaven as he went, behold two men stood by them in white apparel;\nHe hoped he would not have to cross that boundary, for the only time he had done so a giant owl had glided silent and big-headed right past him in the half dark that was day under the balsams.\nthat I have great sorrow and unceasing pain in my heart.\nBut Peter said, Silver and gold have I none; but what I have, that give I thee. In the name of Jesus Christ of Nazareth, walk.\nand likewise also the men, leaving the natural use of the woman, burned in their lust one toward another, men with men working unseemliness, and receiving in themselves that recompense of their error which was due.\n“Sleep is important.”\nThese are they who make separations, sensual, having not the Spirit.\nRaw and roasted in the fire and made into bread.\nCharlotte was naturally patient.\nBut Jesus took him by the hand, and raised him up; and he arose.\nAnd there followed him a great multitude of the people, and of women who bewailed and lamented him.\nAnd another, a second angel, followed, saying, Fallen, fallen is Babylon the great, that hath made all the nations to drink of the wine of the wrath of her fornication.\nMrs. Featherstone.\nbut ye say, If a man shall say to his father or his mother, That wherewith thou mightest have been profited by me is Corban, that is to say, Given to God;\nTherefore be ye also ready; for in an hour that ye think not the Son of man cometh.\nso then let us not sleep, as do the rest, but let us watch and be sober.\nbecause it is written, Ye shall be holy; for I am holy.\nAnd I saw in the right hand of him that sat on the throne a book written within and on the back, close sealed with seven seals.\nAfter the killings, the horses bolted off into the woods and then stopped and came back and milled about in confusion, stepping awkwardly on their fallen reins and whickering among themselves.\nAnd she came in straightway with haste unto the king, and asked, saying, I will that thou forthwith give me on a platter the head of John the Baptist.\nAnd he arose and took the young child and his mother, and came into the land of Israel.\nA miracle has happened on this farm.\nHe began the council with a confession.\nFor whosoever shall do the will of my Father who is in heaven, he is my brother, and sister, and mother. \nAnd many of the children of Israel shall he turn unto the Lord their God.\nThe day immediately dimmed to twilight, but stained green, and he moved through it as if crawling across the bottom of a slow deep river.\nBut later, when Charley’s people had made camp in the clearing and fallen asleep, Axe and his wife lay in bed and talked quietly in the dark about how they might gracefully rid themselves of these dangerous guests.\nJohn beareth witness of him, and crieth, saying, This was he of whom I said, He that cometh after me is become before me: for he was before me.\nI understood the injury as justice.\nAnd it came to pass, when Jesus had finished all these words, he said unto his disciples,\nOr know ye not that the saints shall judge the world? and if the world is judged by you, are ye unworthy to judge the smallest matters?\nand he became hungry, and desired to eat: but while they made ready, he fell into a trance;\nThe goose chuckled.\nAnd he stretched forth his hand, and touched him, saying, I will; be thou made clean. And straightway the leprosy departed from him.\nThen the oldest sheep spoke up. “I agree that there should be something new written in the web if Wilbur’s life is to be saved.\nfor there shall be from henceforth five in one house divided, three against two, and two against three.\nSummer is dying, dying.”\nAnd Levi made him a great feast in his house: and there was a great multitude of publicans and of others that were sitting at meat with them.\nStrong stuff, Smith said after throwing back a shot.\nbeareth all things, believeth all things, hopeth all things, endureth all things.\nIf one of them that believe not biddeth you to a feast, and ye are disposed to go; whatsoever is set before you, eat, asking no question for conscience’ sake.\nand from thence to Philippi, which is a city of Macedonia, the first of the district, a Roman colony: and we were in this city tarrying certain days.\nfar above all rule, and authority, and power, and dominion, and every name that is named, not only in this world, but also in that which is to come:\nCharley said again, I’m not going.\nNow I desire to put you in remembrance, though ye know all things once for all, that the Lord, having saved a people out of the land of Egypt, afterward destroyed them that believed not.\nBut if there is no resurrection of the dead, neither hath Christ been raised:\nand they found him, and say unto him, All are seeking thee.\nFor no one will let me stay\nI remember one evening in particular, but I’m not sure why, for it was about like all the others.\nAnd when he had read it, he asked of what province he was; and when he understood that he was of Cilicia,\nand tasted the good word of God, and the powers of the age to come,\nIf any man have ears to hear, let him hear.\nAnd when he did, the hogs broke to run, and the direction they went was right over the top of him.\nfor we cannot but speak the things which we saw and heard.\nHow much then is a man of more value than a sheep! Wherefore it is lawful to do good on the sabbath day.\nThe poplars, simplified by having shed their broad palmate leaves, stood as bright vertical slashes against the brown hillsides.\nAnd they were offended in him. But Jesus said unto them, A prophet is not without honor, save in his own country, and in his own house.\nThrough the fog, Charley could see the bear’s ears and tan muzzle.\nAre they Hebrews? so am I. Are they Israelites? so am I. Are they the seed of Abraham? so am I.\nSee that ye refuse not him that speaketh. For if they escaped not when they refused him that warned them on earth, much more shall not we escape who turn away from him that warneth from heaven:\nWe take to the breeze, we go as we please.”\nFor as many as are of the works of the law are under a curse: for it is written, Cursed is every one who continueth not in all things that are written in the book of the law, to do them.\nAnd it came to pass, as Peter went throughout all parts, he came down also to the saints that dwelt at Lydda.\nHe told Stephen to hold the beast while he soaked it in oil.\nAs they were walking near the river, suddenly Wolf appeared at their side.\nsaying, Blessed are they whose iniquities are forgiven, And whose sins are covered.\nBut she said, Yea, Lord: for even the dogs eat of the crumbs which fall from their masters’ table.\nNeither for these only do I pray, but for them also that believe on me through their word;\nI doubt if I have enough silk in my spinnerets to lower me to the ground.”\nI verily thought with myself that I ought to do many things contrary to the name of Jesus of Nazareth.\nthat ye may be sons of your Father who is in heaven: for he maketh his sun to rise on the evil and the good, and sendeth rain on the just and the unjust.\nThe boy came up and slung the water out of his hair, and he still had the knife in his fist, the blade shining and clean from the water.\nThe trail where they cried.\nand he entered into the Prætorium again, and saith unto Jesus, Whence art thou? But Jesus gave him no answer.\nNo pig ever had truer friends, and he realized that friendship is one of the most satisfying things in the world.\nThere was some kind of altercation, and the other boys dismounted as well.\nThe grace of the Lord Jesus Christ be with your spirit.\n“Oh, yes.”\n“And tighten your belt.\nFor he that eateth and drinketh, eateth and drinketh judgment unto himself, if he discern not the body.\nThe Old Possum finished out his eight years and began rusticating outside Nashville, a hermit in his Hermitage but still savoring the sweep of his hand across the land even in absentia.\n“Well, we can’t give a prize to a dead pig,” said the loud speaker.\nThe cave held the heat of the wood fire close.\n“I’m right up here,” said the voice.\nTwelve o’clock—lunchtime.\nSome of the women skinned and gutted the squirrels as handy as shucking an ear of corn and ran them through from ass to mouth with sharp birch skewers and set them to roasting over the fire coals.\nAnd he said unto them, It is not for you to know times or seasons, which the Father hath set within his own authority.\nFor in one Spirit were we all baptized into one body, whether Jews or Greeks, whether bond or free; and were all made to drink of one Spirit.\nThey’ll be wanting your blades.\nBut the Pharisees, when they heard that he had put the Sadducees to silence, gathered themselves together.\nThe school bus honked from the road.\nFor not he that commendeth himself is approved, but whom the Lord commendeth. \nfor we take thought for things honorable, not only in the sight of the Lord, but also in the sight of men.\nI roasted coffee beans and directed Perry in the assembly of a big pot of porridge with dried peaches minced in it and flavored with a profligate amount of cinnamon and dark sugar and butter.\nAnd if Satan hath risen up against himself, and is divided, he cannot stand, but hath an end.\n“Well,” said Dr. Dorian, “I think she will always love animals.\nOne afternoon in June, when Wilbur was almost two months old, he wandered out into his small yard outside the barn.\nMany fish lived in the pond.\nBecause thou wilt not leave my soul unto Hades, Neither wilt thou give thy Holy One to see corruption.\n“And now, with Charlotte not feeling well ...” he thought.\nTo live is to suffer.\nThen he made a sort of bow to Charley, at least to the extent possible given that they were both sitting. An acknowledgment of Charley’s will to live.\nAnd when he again bringeth in the firstborn into the world he saith, And let all the angels of God worship him.\nThen said I, Lo, I am come (In the roll of the book it is written of me) To do thy will, O God.\nBut he began to curse, and to swear, I know not this man of whom ye speak.\nThe corn needed hoeing, and Lurvy didn't find time to hoe it.\nWhen he came back he had a strip of blue-and-white cardboard in his teeth.\nNow there were six waterpots of stone set there after the Jews’ manner of purifying, containing two or three firkins apiece.\nNever have I seen such leavings, and everything well-ripened and seasoned with the passage of time and the heat of the day. Oh, it was rich, my friends, rich!”\nAnd whosoever shall not receive you, nor hear your words, as ye go forth out of that house or that city, shake off the dust of your feet.\nShe saith unto him, Yea, Lord: I have believed that thou art the Christ, the Son of God, even he that cometh into the world.\nYe are of God, my little children, and have overcome them: because greater is he that is in you than he that is in the world.\nSpearfinger looked dead, but to make sure the Cherokees threw her on the big fire they had built.  \nAnd when he had said these things, as they were looking, he was taken up; and a cloud received him out of their sight.\nThe snow is coming down so fast\nthat the word might be fulfilled which he spake, Of those whom thou hast given me I lost not one.\nWhen the words appeared, everyone said they were a miracle.\nFor he hath been counted worthy of more glory than Moses, by so much as he that built the house hath more honor than the house.\nOn behalf of such a one will I glory: but on mine own behalf I will not glory, save in my weaknesses.\na minister of the sanctuary, and of the true tabernacle, which the Lord pitched, not man.\nto take the place in this ministry and apostleship from which Judas fell away, that he might go to his own place.\nConcerning which salvation the prophets sought and searched diligently, who prophesied of the grace that should come unto you:\nBut, that I be not further tedious unto thee, I entreat thee to hear us of thy clemency a few words.\nAnd this is the promise which he promised us, even the life eternal.\nFor if I make you sorry, who then is he that maketh me glad but he that is made sorry by me?\nnot at all meaning with the fornicators of this world, or with the covetous and extortioners, or with idolaters; for then must ye needs go out of the world:\nyet I say unto you, that even Solomon in all his glory was not arrayed like one of these.\nLet no man say when he is tempted, I am tempted of God; for God cannot be tempted with evil, and he himself tempteth no man:\nPeter therefore went forth, and the other disciple, and they went toward the tomb.\nOne thing is certain, he has a most unattractive personality.\nthat I may make it manifest, as I ought to speak.\nNow on the first day of the week cometh Mary Magdalene early, while it was yet dark, unto the tomb, and seeth the stone taken away from the tomb.\nThe horses detested them.\nHe spent long hours lying on his side, half asleep, dreaming pleasant dreams.\nRed fire and black smoke rose to the top of the sky, and for two days grey twists of cane ashes kited on the wind and then rained down on Valley River.\n“I’m just telling you the facts.”\nAlready ye are clean because of the word which I have spoken unto you.\n(for he saith, At an acceptable time I hearkened unto thee, And in a day of salvation did I succor thee: behold, now is the acceptable time; behold, now is the day of salvation):\nThis man had been instructed in the way of the Lord; and being fervent in spirit, he spake and taught accurately the things concerning Jesus, knowing only the baptism of John:\nnot looking each of you to his own things, but each of you also to the things of others.\nKnow ye not that they that run in a race run all, but one receiveth the prize? Even so run; that ye may attain.\nAnd his father Zacharias was filled with the Holy Spirit, and prophesied, saying,\ntogether with Onesimus, the faithful and beloved brother, who is one of you. They shall make known unto you all things that are done here.\nFor he was commanding the unclean spirit to come out from the man. For oftentimes it had seized him: and he was kept under guard, and bound with chains and fetters; and breaking the bands asunder, he was driven of the demon into the deserts.\nShe screamed and clawed at the sides of the pit with her sharp awl finger.  \nTempleton was a crafty rat, and he had things pretty much his own way.\nTo show mercy towards our fathers, And to remember his holy covenant;\nAnd when they’re done fighting, men lie dead and dying, stunned and bleeding and pale.\nOf the tribe of Asher twelve thousand; Of the tribe of Naphtali twelve thousand; Of the tribe of Manasseh twelve thousand;\nAnd fearing lest haply we should be cast ashore on rocky ground, they let go four anchors from the stern, and wished for the day.\n(but should she depart, let her remain unmarried, or else be reconciled to her husband); and that the husband leave not his wife.\nJesus saith unto her, I that speak unto thee am he.\nHe that receiveth you receiveth me, and he that receiveth me receiveth him that sent me.\nOn that day there came to him Sadducees, they that say that there is no resurrection: and they asked him,\nNot so shall it be among you: but whosoever would become great among you shall be your minister;\nThe buttermilk certainly helped.” Mr. Arable studied Wilbur carefully. “Yes, he’s a wonderful pig,” he said.\nbut God chose the foolish things of the world, that he might put to shame them that are wise; and God chose the weak things of the world, that he might put to shame the things that are strong;\nBut Charlotte's children and grandchildren and great grandchildren, year after year, lived in the doorway.\nAnd the rest of them agreed entirely.\nAnd Cornelius said, Four days ago, until this hour, I was keeping the ninth hour of prayer in my house; and behold, a man stood before me in bright apparel,\nAlmost all spiders are rather nice-looking.\nWhat I desired was Claire, but the gallery ladies were better than lone bachelorhood.\nAnd Jesus, crying with a loud voice, said, Father, into thy hands I commend my spirit: and having said this, he gave up the ghost.\nAnd great fear came upon the whole church, and upon all that heard these things.\nThese things said he in the synagogue, as he taught in Capernaum.\nHe wanted them to stand as tall as any people on earth.\n“Attention, please!” it said.\nI do not like being a little fish.\nHerein is my Father glorified, that ye bear much fruit; and so shall ye be my disciples.\nI will hear thee fully, said he, when thine accusers also are come: and he commanded him to be kept in Herod’s palace. \nKnowing therefore the fear of the Lord, we persuade men, but we are made manifest unto God; and I hope that we are made manifest also in your consciences.\n“A what?” said Mr. Zuckerman.\nMost of the faces gleamed up from brown darkness, bathed in a flattering buttery light, eyes liquid and searching.\nEven deducting for decades of exaggeration, that was still a big bear.\nIn the bend of the river, there was a grassy piece of flat ground with just a scattering of old grey birches and a few big rocks.\nHe that hath received his witness hath set his seal to this, that God is true.\nFor that which I do I know not: for not what I would, that do I practise; but what I hate, that I do.\nWhat is your name, please? May I have your name?”\nI commend unto you Phoebe our sister, who is a servant of the church that is at Cenchreæ:\nFor a while he stood gloomily indoors.\nI can’t arrange my family duties to suit the management of the County Fair.\nWith these new signs, the Cherokee nation published newspapers and books and made sure that their words would never fade away.\nWhen they came back they had heavy loads.\nholding a form of godliness, but having denied the power thereof: from these also turn away.\nLikewise, ye younger, be subject unto the elder. Yea, all of you gird yourselves with humility, to serve one another: for God resisteth the proud, but giveth grace to the humble.\nAnd then, in the casual tone of bidding good morning to a stranger you pass on the roadway, I said, Do not fear the universe, young lieutenant.\nA shoe. Humans' feet hurt if they don't wear shoes.\nAnd they were beyond measure astonished, saying, He hath done all things well; he maketh even the deaf to hear, and the dumb to speak. \n‘It’s a ghost!’ I thought then.\nAnd behold, there talked with him two men, who were Moses and Elijah;\nAnd the four living creatures said, Amen. And the elders fell down and worshipped. \nThe last remaining strands of Charlotte's old web floated away and vanished.\nwho also made us sufficient as ministers of a new covenant; not of the letter, but of the spirit: for the letter killeth, but the spirit giveth life.\nNicodemus saith unto him, How can a man be born when he is old? can he enter a second time into his mother’s womb, and be born?\nCharlotte's cousin kept slipping in, dodging out, and she was beaten mercilessly over the head by the wildly thrashing fish, dancing in, dancing out, throwing...”\n“Stop it!\nThe goose was proud of her share in the adventure.\nThere was a great deal more to Charley’s story.\nWhosoever therefore shall humble himself as this little child, the same is the greatest in the kingdom of heaven.\nBut not as the trespass, so also is the free gift. For if by the trespass of the one the many died, much more did the grace of God, and the gift by the grace of the one man, Jesus Christ, abound unto the many.\nAnd there was given them to each one a white robe; and it was said unto them, that they should rest yet for a little time, until their fellow-servants also and their brethren, who should be killed even as they were, should have fulfilled their course.\nAnd Jesus said unto them, Take heed and beware of the leaven of the Pharisees and Sadducees.\nFor the scripture saith, Whosoever believeth on him shall not be put to shame.\nAnd I say unto you, Whosoever shall put away his wife, except for fornication, and shall marry another, committeth adultery: and he that marrieth her when she is put away committeth adultery.\nlooking for the blessed hope and appearing of the glory of the great God and our Saviour Jesus Christ;\nIn the tall grass behind the cattle barn he found a folded newspaper.\nIt itches! called Fern.\nBut if ye do not forgive, neither will your Father which is in heaven forgive your trespasses.\nWe can't stay here very long.\nNow touching the things which I write unto you, behold, before God, I lie not.\nLand and people and everything.\nWilbur checked himself and crept slowly to his trough.\nPerry fell face down.\nAnd as they cried out, and threw off their garments, and cast dust into the air,\nhe is like a man building a house, who digged and went deep, and laid a foundation upon the rock: and when a flood arose, the stream brake against that house, and could not shake it: because it had been well builded.\nAs he swam up to a big fish and said, Hello, I'm called Littlefish and you look like me.\nIt would appear obvious that if they could provision themselves in these fastnesses of nature, and possessed arms and ammunition, they would be enabled to oppose every formidable resistance to any attempt to dislodge them, for it must be considered that they have the range of not merely the mountain region within the territory now occupied by them but that of a very extensive bed of mountains, so sparsely inhabited by whites as to offer them a secure and inaccessible shelter from invasion and yet a fertile field for their predatory incursions.\nWhen he looked up and saw Mr. Zuckerman standing quite close to him, holding a pail of warm slops, he felt relieved.\nIt is not often that someone comes along who is a true friend and a good writer.\nI have been crucified with Christ; and it is no longer I that live, but Christ liveth in me: and that life which I now live in the flesh I live in faith, the faith which is in the Son of God, who loved me, and gave himself up for me.\nFor I would have you know how greatly I strive for you, and for them at Laodicea, and for as many as have not seen my face in the flesh;\nSo the disciples went away again unto their own home.\nUp against one palisade, a minister sat with his ass upon a crate that had held wine bottles.\nLet all bitterness, and wrath, and anger, and clamor, and railing, be put away from you, with all malice:\nTherefore by their fruits ye shall know them.\n“Edith, something has happened,” he said, in a weak voice.\nAt this moment her brother Avery came into the room.\nThe big truck with Mr. Arable at the wheel backed slowly down toward the barnyard. Lurvy and Mr. Zuckerman walked alongside.\nHe scratched them on slats of wood and filled his cabin with shingles of writing.\nOne by one they climbed into the truck and opened lunch boxes.\nNow Peter was sitting without in the court: and a maid came unto him, saying, Thou also wast with Jesus the Galilæan.\nThese shall war against the Lamb, and the Lamb shall overcome them, for he is Lord of lords, and King of kings; and they also shall overcome that are with him, called and chosen and faithful.\nBut the crowd loved it.\nand Simeon blessed them, and said unto Mary his mother, Behold, this child is set for the falling and the rising of many in Israel; and for a sign which is spoken against;\nthat the fellowship of thy faith may become effectual, in the knowledge of every good thing which is in you, unto Christ.\nI said, It was the spirit of the evening and the Scotch whisky.\nAnd Jesus said unto him, To-day is salvation come to this house, forasmuch as he also is a son of Abraham.\nSet forward Zenas the lawyer and Apollos on their journey diligently, that nothing be wanting unto them.\nAnd, Thou, Lord, in the beginning didst lay the foundation of the earth, And the heavens are the works of thy hands:\n“Another crisis!” groaned Fern.\nA sally port opened on the side of the square they considered the front.\nrendering vengeance to them that know not God, and to them that obey not the gospel of our Lord Jesus:\nbut brother goeth to law with brother, and that before unbelievers?\nI was delighted by the variety of towns along the way, whether I stopped for the night or just for an hour of rest and food.\nAnd the angel taketh the censer; and he filled it with the fire of the altar, and cast it upon the earth: and there followed thunders, and voices, and lightnings, and an earthquake.\nand great multitudes followed him; and he healed them there.\nAnd the multitude cometh together again, so that they could not so much as eat bread.\nand before him shall be gathered all the nations: and he shall separate them one from another, as the shepherd separateth the sheep from the goats;\nAnd when they came up out of the water, the Spirit of the Lord caught away Philip; and the eunuch saw him no more, for he went on his way rejoicing.\nNow when he was risen early on the first day of the week, he appeared first to Mary Magdalene, from whom he had cast out seven demons.\nfor they all saw him, and were troubled. But he straightway spake with them, and saith unto them, Be of good cheer: it is I; be not afraid.\nBirds?\nPilate answered, Am I a Jew? Thine own nation and the chief priests delivered thee unto me: what hast thou done?\nAnd again he saith, Rejoice, ye Gentiles, with his people.\nYe foolish ones, did not he that made the outside make the inside also?\nNellie!” he began.\nAnd when they had eaten enough, they lightened the ship, throwing out the wheat into the sea.\nPerry dug the spoon into the grey mess and turned up the burnt bottom, black as cinders.\nBut of which of the angels hath he said at any time, Sit thou on my right hand, Till I make thine enemies the footstool of thy feet?\nThere, into the tall grass, went Wolf.\nAnd the demons came out from the man, and entered into the swine: and the herd rushed down the steep into the lake, and were drowned.\nFurthermore, I wouldn't be surprised if Zuckerman changes his mind about you.\nand they entered into a boat, and were going over the sea unto Capernaum. And it was now dark, and Jesus had not yet come to them.\nthen he received him into his arms, and blessed God, and said,\nAnd all the city was gathered together at the door.\nOne useful thing I learned from Crockett on those nights was to alternate my Scotch with glasses of chilled mineral water, preferably from the mountains of Virginia.\nWhen the sheep tired of standing in the rain, they walked slowly up the lane and into the fold.\n“Tie one end to my tail, will you, Templeton?”\nThe leaves of the poplars and maples and chestnuts lay on the ground, and at night the bare limbs cast jagged moon shadows across the rocks of the river.\n“What does ‘gullible’ mean?”\nReal property was a bond as strong as blood.\nLike Major Ridge, Featherstone chose—in his words—to eschew the toilsome overland route to the new Nation in favor of the more comfortable water passage, where one might eat dinner at a cloth-covered table and take a morning shit through a buttock-shaped hole in a sternward outhouse overhanging the passing brown river face all a-churn from the turning paddle wheel.\nElijah was a man of like passions with us, and he prayed fervently that it might not rain; and it rained not on the earth for three years and six months.\nJesus answered, I have not a demon; but I honor my Father, and ye dishonor me.\nAs he was dropping off to sleep he spoke to Charlotte.\nBecause it is contained in scripture, Behold, I lay in Zion a chief corner stone, elect, precious: And he that believeth on him shall not be put to shame.\nFor the creation was subjected to vanity, not of its own will, but by reason of him who subjected it, in hope\nHow can ye believe, who receive glory one of another, and the glory that cometh from the only God ye seek not?\nwho died for us, that, whether we wake or sleep, we should live together with him.\nShe has only a short time to live.\n“Well,” began Fern, “she told us about a cousin of hers who caught a fish in her web.\nAnd as he sat on the mount of Olives over against the temple, Peter and James and John and Andrew asked him privately,\nAnd he went away again beyond the Jordan into the place where John was at the first baptizing; and there he abode.\nNow I make known unto you brethren, the gospel which I preached unto you, which also ye received, wherein also ye stand,\nand ye also bear witness, because ye have been with me from the beginning. \nBut shouldest thou marry, thou hast not sinned; and if a virgin marry, she hath not sinned. Yet such shall have tribulation in the flesh: and I would spare you.\nHer eyes were brimming with tears.\nWilbur tried not to think about what the rat had just said.\nReady with knife and hand axe in case a dark shape separated itself from the night and came to him, offering him its life.\nI'm almost ready, said his mom \nFor as the lightning cometh forth from the east, and is seen even unto the west; so shall be the coming of the Son of man.\nAll Indians? the secretary said.\nHe felt radiant and happy.\nSmith walked over and pulled Wasseton from the group and led him away toward the women.\nAnd the first sounded, and there followed hail and fire, mingled with blood, and they were cast upon the earth: and the third part of the earth was burnt up, and the third part of the trees was burnt up, and all green grass was burnt up.\nand he was returning and sitting in his chariot, and was reading the prophet Isaiah.\nBear said that every time he had been to the flatlands, he felt like he might slide off the end of the world, for there was nothing upright to stop him from the void.\n“In the first place, I cannot get into your pen, as I am not old enough to jump over the fence.\nAnd there come near unto him James and John, the sons of Zebedee, saying unto him, Teacher, we would that thou shouldest do for us whatsoever we shall ask of thee.\nAnd the saying pleased the whole multitude: and they chose Stephen, a man full of faith and of the Holy Spirit, and Philip, and Prochorus, and Nicanor, and Timon, and Parmenas, and Nicolaus a proselyte of Antioch;\nThen he turned a back ﬂip.\nAnd when he had taken the book, the four living creatures and the four and twenty elders fell down before the Lamb, having each one a harp, and golden bowls full of incense, which are the prayers of the saints.\nAnd they prayed, and said, Thou, Lord, who knowest the hearts of all men, show of these two the one whom thou hast chosen,\nAnd I would not have you ignorant, brethren, that oftentimes I purposed to come unto you (and was hindered hitherto), that I might have some fruit in you also, even as in the rest of the Gentiles.\nthat ye receive her in the Lord, worthily of the saints, and that ye assist her in whatsoever matter she may have need of you: for she herself also hath been a helper of many, and of mine own self.\nBut if what I would not, that I do, it is no more I that do it, but sin which dwelleth in me.\nA cord of dry split hickory must be a thing of absolute wonder to such people.\nO the depth of the riches both of the wisdom and the knowledge of God! how unsearchable are his judgments, and his ways past tracing out!\nBut this I say by way of concession, not of commandment.\nand to Jesus the mediator of a new covenant, and to the blood of sprinkling that speaketh better than that of Abel.\nIn a few moments the pig will be unloaded in the special judging ring in front of the grandstand, where a special award will be made.\nBut Jesus held his peace. And the high priest said unto him, I adjure thee by the living God, that thou tell us whether thou art the Christ, the Son of God.\n“When they open the crate and try to put you in, struggle!\nThomas therefore, who is called Didymus, said unto his fellow-disciples, Let us also go, that we may die with him.\nand the field is the world; and the good seed, these are the sons of the kingdom; and the tares are the sons of the evil one;\nOr is God the God of Jews only? is he not the God of Gentiles also? Yea, of Gentiles also:\nBut Fern couldn't eat until her pig had had a drink of milk.\nand they glorified God in me. \nIn the old days, they had usually built their mounds and villages in such places, both for practical reasons of defense and agriculture and flat ground for dances and ball games, and also because watercourses held spiritual import for them.\na doubleminded man, unstable in all his ways.\n“Won’t he be cold at night?” asked Fern.\nHe was as big as a young woodchuck.\nWrite therefore the things which thou sawest, and the things which are, and the things which shall come to pass hereafter;\nSo then neither is he that planteth anything, neither he that watereth; but God that giveth the increase.\nFor it is easier for a camel to enter in through a needle’s eye, than for a rich man to enter into the kingdom of God.\nAnd that’s where I was walking that night, really afraid.\nBut I hope in the Lord Jesus to send Timothy shortly unto you, that I also may be of good comfort, when I know your state.\nThe disciples say unto him, Rabbi, the Jews were but now seeking to stone thee; and goest thou thither again?\nDavid therefore calleth him Lord, and how is he his son?\nSomebody’s got to go along who knows how to write.\nfor we are the circumcision, who worship by the Spirit of God, and glory in Christ Jesus, and have no confidence in the flesh:\nAnd when Herod was about to bring him forth, the same night Peter was sleeping between two soldiers, bound with two chains: and guards before the door kept the prison.\nhaving your behavior seemly among the Gentiles; that, wherein they speak against you as evil-doers, they may by your good works, which they behold, glorify God in the day of visitation.\n“Thith thtuff thticks in my mouth,” complained the rat. “It’th worth than caramel candy.”\nTake them off! Take them off! screamed Wolf.\nThere hath no temptation taken you but such as man can bear: but God is faithful, who will not suffer you to be tempted above that ye are able; but will with the temptation make also the way of escape, that ye may be able to endure it.\neven as ye learned of Epaphras our beloved fellow-servant, who is a faithful minister of Christ on our behalf,\nIf then I know not the meaning of the voice, I shall be to him that speaketh a barbarian, and he that speaketh will be a barbarian unto me.\nThey hated each other and yet continued to share their lofty hairstyles, which struck me as having all the features of placing exploding possums on their heads.\nIf any man thinketh himself to be a prophet, or spiritual, let him take knowledge of the things which I write unto you, that they are the commandment of the Lord.\nThese things have I written unto you, that ye may know that ye have eternal life, even unto you that believe on the name of the Son of God.\nAnd the lord of the vineyard said, What shall I do? I will send my beloved son; it may be they will reverence him.\nOn Sundays we often went riding, usually to view the stone locks on the towpath of the Chesapeake and Ohio Canal.\nBut we beseech you, brethren, to know them that labor among you, and are over you in the Lord, and admonish you;\nHe stepped closer and stared.\nWhosoever therefore shall break one of these least commandments, and shall teach men so, shall be called least in the kingdom of heaven: but whosoever shall do and teach them, he shall be called great in the kingdom of heaven.\nthat upon you may come all the righteous blood shed on the earth, from the blood of Abel the righteous unto the blood of Zachariah son of Barachiah, whom ye slew between the sanctuary and the altar.\nwherein I suffer hardship unto bonds, as a malefactor; but the word of God is not bound.\nand were all baptized unto Moses in the cloud and in the sea;\nHis own people running him through the woods like an old boar.\nsubjecting yourselves one to another in the fear of Christ.\n“Goodness!” said Wilbur, looking down at his own chubby legs. “I don’t think my legs have seven sections.”\nin meekness correcting them that oppose themselves; if peradventure God may give them repentance unto the knowledge of the truth,\nbeing darkened in their understanding, alienated from the life of God, because of the ignorance that is in them, because of the hardening of their heart;\nSend therefore to Joppa, and call unto thee Simon, who is surnamed Peter; he lodgeth in the house of Simon a tanner, by the sea side.\nBut if thou bearest the name of a Jew, and restest upon the law, and gloriest in God,\nHer hair was parted in a strict line down the top of her head and was threaded with white.\nI tell you, Nay: but, except ye repent, ye shall all in like manner perish.\nThe people that sat in darkness Saw a great light, And to them that sat in the region and shadow of death, To them did light spring up.\nFor days after that, all you could hear was the ringing of axes as the soldiers cut and limbed pine trees.\nAnd he arose and went: and behold, a man of Ethiopia, a eunuch of great authority under Candace, queen of the Ethiopians, who was over all her treasure, who had come to Jerusalem to worship;\nYea and if I judge, my judgment is true; for I am not alone, but I and the Father that sent me.\nfor if God spared not the natural branches, neither will he spare thee.\nsaying, There was in a city a judge, who feared not God, and regarded not man:\nbecause of the hope which is laid up for you in the heavens, whereof ye heard before in the word of the truth of the gospel,\nsaying, What shall we do to these men? for that indeed a notable miracle hath been wrought through them, is manifest to all that dwell in Jerusalem; and we cannot deny it.\nThis is what had happened in this story that I am telling.\nPerry and Charleston lay still, and Philadelphia, bleeding heavily, made motions with his hands like trying to get a grip on the earth.\nAnd it shall be, that whosoever shall call on the name of the Lord shall be saved.\nThe baptism of John, whence was it? from heaven or from men? And they reasoned with themselves, saying, If we shall say, From heaven; he will say unto us, Why then did ye not believe him?\nFor your information, there are five hundred and fourteen eggs in that peachy little sac.”\nAnd as they came out, they found a man of Cyrene, Simon by name: him they compelled to go with them, that he might bear his cross.\nAnd I was still unknown by face unto the churches of Judæa which were in Christ:\nbut let it be the hidden man of the heart, in the incorruptible apparel of a meek and quiet spirit, which is in the sight of God of great price.\nfor we have heard him say, that this Jesus of Nazareth shall destroy this place, and shall change the customs which Moses delivered unto us.\nHe was the lamp that burneth and shineth; and ye were willing to rejoice for a season in his light.\nThis is a leaf.\nWilbur had already decided how he would carry the egg sac—there was only one way possible.\nYou have a month from today.\nLike anybody else of good sense, when he stayed up all night drinking, he favored Scotch whisky of the highest quality, as long as somebody else was buying.\n He looked with teary eyes so wide.\nAnd there the centurion found a ship of Alexandria sailing for Italy; and he put us therein.\nFor we are not bold to number or compare ourselves with certain of them that commend themselves: but they themselves, measuring themselves by themselves, and comparing themselves with themselves, are without understanding.\nYe did not choose me, but I chose you, and appointed you, that ye should go and bear fruit, and that your fruit should abide: that whatsoever ye shall ask of the Father in my name, he may give it you.\nOne day, as he swam in the large creek, it started to rain.\nBut Smith looked tired and white-eyed with fatigue and the nervous strain of this woods duty, which had been confusing and frightening to him.\nAnd if the righteous is scarcely saved, where shall the ungodly and sinner appear?\nfor the Lamb that is in the midst of the throne shall be their shepherd, and shall guide them unto fountains of waters of life: and God shall wipe away every tear from their eyes. \n“Of course,” said Charlotte.\nThen began he to curse and to swear, I know not the man. And straightway the cock crew.\nSkirmish is such an airy-sounding word.\nbut they shouted, saying, Crucify, crucify him.\nwho also sealed us, and gave us the earnest of the Spirit in our hearts.\nBut when the blade sprang up and brought forth fruit, then appeared the tares also.\nBut we would not have you ignorant, brethren, concerning them that fall asleep; that ye sorrow not, even as the rest, who have no hope.\nwhose mouths must be stopped; men who overthrow whole houses, teaching things which they ought not, for filthy lucre’s sake.\nNow when they were departed, behold, an angel of the Lord appeareth to Joseph in a dream, saying, Arise and take the young child and his mother, and flee into Egypt, and be thou there until I tell thee: for Herod will seek the young child to destroy him.\nVerily I say unto you, What things soever ye shall bind on earth shall be bound in heaven; and what things soever ye shall loose on earth shall be loosed in heaven.\nThe baby spiders felt the warm updraft.\nand in the midst of the candlesticks one like unto a son of man, clothed with a garment down to the foot, and girt about at the breasts with a golden girdle.\nFor every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened.\nAnd without faith it is impossible to be well-pleasing unto him; for he that cometh to God must believe that he is, and that he is a rewarder of them that seek after him.\nAnd Peter answereth and saith to Jesus, Rabbi, it is good for us to be here: and let us make three tabernacles; one for thee, and one for Moses, and one for Elijah.\nWhich of the two did the will of his father? They say, The first. Jesus saith unto them, Verily I say unto you, that the publicans and the harlots go into the kingdom of God before you.\n“Homer,” she said to her husband, “I am going to give that pig a buttermilk bath.”\nThen after the space of fourteen years I went up again to Jerusalem with Barnabas, taking Titus also with me.\nFor I would not, brethren, have you ignorant, that our fathers were all under the cloud, and all passed through the sea;\nWherefore when he cometh into the world, he saith, Sacrifice and offering thou wouldest not, But a body didst thou prepare for me;\nAnd after some days Paul said unto Barnabas, Let us return now and visit the brethren in every city wherein we proclaimed the word of the Lord, and see how they fare.\nfor until the law sin was in the world; but sin is not imputed when there is no law.\nAll in all, it was a companionable breakfast.\nYe are my friends, if ye do the things which I command you.\nNow it came to pass on one of those days, that he entered into a boat, himself and his disciples; and he said unto them, Let us go over unto the other side of the lake: and they launched forth.\nOr did I commit a sin in abasing myself that ye might be exalted, because I preached to you the gospel of God for nought?\nI cut it like pie and flipped the slices upside down on their plates, and the top was crisp and brown, and the inside was soft and had almost melted.\nNow Jesus had spoken of his death: but they thought that he spake of taking rest in sleep.\n“You have been my friend,” replied Charlotte.\nNow these things were our examples, to the intent we should not lust after evil things, as they also lusted.\n“You can go back to sleep.\nAnd the word of the Lord was spread abroad throughout all the region.\nAnd now I stand here to be judged for the hope of the promise made of God unto our fathers;\nBut, beloved, we are persuaded better things of you, and things that accompany salvation, though we thus speak:\nThe wolf's feet were really hurting.\nfor I will show him how many things he must suffer for my name’s sake.\nFor thou bringest certain strange things to our ears: we would know therefore what these things mean.\nI slurped down two dozen in quick succession, and even after I could eat no more, I kept now and again between swallows of wine lifting an empty half shell to my nose and sniffing the pearly cup to remind myself of the existence of this marvelous and completely unexpected food.\nthe colonel said.\nEverything on the farm was dripping wet.\nholding to the faithful word which is according to the teaching, that he may be able both to exhort in the sound doctrine, and to convict the gainsayers.\nJohn answered and said, A man can receive nothing, except it have been given him from heaven.\nThis wisdom is not a wisdom that cometh down from above, but is earthly, sensual, devilish.\nAbraham begat Isaac; and Isaac begat Jacob; and Jacob begat Judah and his brethren;\nJesus answered them, Many good works have I showed you from the Father; for which of those works do ye stone me?\nHe had no time to hide and just squatted with his back against the trunk of the tree and became utterly still.\nAnd he dwelt there a year and six months, teaching the word of God among them.\nIf she went into the house, Wilbur went, too.\nAnd Mary abode with her about three months, and returned unto her house.\nAnd the veil of the temple was rent in two from the top to the bottom.\nAnd certain of them that were with us went to the tomb, and found it even so as the women had said: but him they saw not.\nAnd be not fashioned according to this world: but be ye transformed by the renewing of your mind, that ye may prove what is the good and acceptable and perfect will of God.\nAnd Satan entered into Judas who was called Iscariot, being of the number of the twelve.\n“I haven't the faintest idea,” said Mr. Arable.\nBut there was a certain man, Simon by name, who beforetime in the city used sorcery, and amazed the people of Samaria, giving out that himself was some great one:\nAnd if ye are willing to receive it, this is Elijah, that is to come.\nIt was not long, they tell us, before everyone was reading and writing.\nNow when they heard this, they were pricked in their heart, and said unto Peter and the rest of the apostles, Brethren, what shall we do?\nWilbur was in a panic.\nbecause if our heart condemn us, God is greater than our heart, and knoweth all things.\nabove all things being fervent in your love among yourselves; for love covereth a multitude of sins:\nA few families would come to watch the television.\nThe blood led on, but thinned down.\nFor the man was more than forty years old, on whom this miracle of healing was wrought.\nBack and forth on the daylong ride between Valley River and Wayah.\nAnd if he refuse to hear them, tell it unto the church: and if he refuse to hear the church also, let him be unto thee as the Gentile and the publican.\nAnd he sent them forth to preach the kingdom of God, and to heal the sick.\nNow as soon as it was day, there was no small stir among the soldiers, what was become of Peter.\nAnd we indeed justly; for we receive the due reward of our deeds: but this man hath done nothing amiss.\nneither as lording it over the charge allotted to you, but making yourselves ensamples to the flock.\nfor the children being not yet born, neither having done anything good or bad, that the purpose of God according to election might stand, not of works, but of him that calleth,\nAnd the apostles and the elders were gathered together to consider of this matter.\nRemember them that are in bonds, as bound with them; them that are ill-treated, as being yourselves also in the body.\nand God both raised the Lord, and will raise up us through his power.\nWhen that happened, she knew the Cherokees were burning the leaves to get the chestnuts on the ground.\nShe hath done what she could; she hath anointed my body beforehand for the burying.\nthe son of Joanan, the son of Rhesa, the son of Zerubbabel, the son of Shealtiel, the son of Neri,\nThou madest known unto me the ways of life; Thou shalt make me full of gladness with thy countenance.\nThen was Jesus led up of the Spirit into the wilderness to be tempted of the devil.\nFor they that are after the flesh mind the things of the flesh; but they that are after the Spirit the things of the Spirit.\nJudge not, that ye be not judged.\n“They'll never-never-never catch you in the woods.”\nAnd it was now about the sixth hour, and a darkness came over the whole land until the ninth hour,\nThen she crawled along a beam till she was directly over the next pen.\nThen laid they their hands on them, and they received the Holy Spirit.\n“Not many creatures can spin webs.\nThey therefore that were scattered abroad went about preaching the word.\n“N-not exactly,” said Lurvy.\nAnd they, when they heard it, were glad, and promised to give him money. And he sought how he might conveniently deliver him unto them.\n“You’re all right, Edith,” said Mrs. Arable.\nBig muscles that would make good eating.\nlet us hold fast the confession of our hope that it waver not; for he is faithful that promised:\nBut shun profane babblings: for they will proceed further in ungodliness,\nbut go rather to the lost sheep of the house of Israel.\nIf I speak with the tongues of men and of angels, but have not love, I am become sounding brass, or a clanging cymbal.\nThe ghosts of animals reveal themselves to you without prejudice toward your humanity.\nBut if ye seek anything about other matters, it shall be settled in the regular assembly.\nAnd one of the Pharisees desired him that he would eat with him. And he entered into the Pharisee’s house, and sat down to meat.\nRemember them that had the rule over you, men that spake unto you the word of God; and considering the issue of their life, imitate their faith.\nFurthermore, we had the fathers of our flesh to chasten us, and we gave them reverence: shall we not much rather be in subjection unto the Father of spirits, and live?\nDarkness settled over everything.\nWhat say I then? that a thing sacrificed to idols is anything, or that an idol is anything?\nBut many that are first shall be last; and the last first.\nWilbur heard these words and his heart almost stopped. “I think I’m going to faint,” he whispered to the old sheep, who was watching.\nFern pushed a chair out of the way and ran outdoors.\nWilbur’s appetite had increased; he was beginning to eat scraps of food in addition to milk.\nAnd my speech and my preaching were not in persuasive words of wisdom, but in demonstration of the Spirit and of power:\nJesus answered and said, This voice hath not come for my sake, but for your sakes.\nBut Martha was cumbered about much serving; and she came up to him, and said, Lord, dost thou not care that my sister did leave me to serve alone? bid her therefore that she help me.\nThen opened he their mind, that they might understand the scriptures;\nNext day, as the Ferris wheel was being taken apart and the race horses were being loaded into vans and the entertainers were packing up their belongings and driving away in their trailers, Charlotte died.\nwherein they think it strange that ye run not with them into the same excess of riot, speaking evil of you:\nCharley circled the calf of the boy’s leg with just his thumb and index finger and there was room to spare.\nOther men go on calmly about their business.\nfor there is no respect of persons with God.\nAnd the night following the Lord stood by him, and said, Be of good cheer: for as thou hast testified concerning me at Jerusalem, so must thou bear witness also at Rome.\nNow if Christ is preached that he hath been raised from the dead, how say some among you that there is no resurrection of the dead?\nWoe unto you, scribes and Pharisees, hypocrites! for ye are like unto whited sepulchres, which outwardly appear beautiful, but inwardly are full of dead men’s bones, and of all uncleanness.\nbut now, I say, I go unto Jerusalem, ministering unto the saints.\nFor I make known to you, brethren, as touching the gospel which was preached by me, that it is not after man.\nThey were artists of misdirection as sure as any thimblerigger shifting his three shells and one wizened pea.\nAnd while they went away to buy, the bridegroom came; and they that were ready went in with him to the marriage feast: and the door was shut.\nOr know ye not that the unrighteous shall not inherit the kingdom of God? Be not deceived: neither fornicators, nor idolaters, nor adulterers, nor effeminate, nor abusers of themselves with men,\nHe is not the God of the dead, but of the living: ye do greatly err.\nI am debtor both to Greeks and to Barbarians, both to the wise and to the foolish.\nSimultaneously, Jake had struck at Charleston’s head, hoping to lay him out quickly, but it was a glancing blow and only staggered him and raised a peel of scalp over his ear.\nAnd Crispus, the ruler of the synagogue, believed in the Lord with all his house; and many of the Corinthians hearing believed, and were baptized.\nHe listened to the water as it flowed through the hole and wondered where the water, leaves, and twigs were going.\nWherefore whosoever shall eat the bread or drink the cup of the Lord in an unworthy manner, shall be guilty of the body and the blood of the Lord.\nThe goose had been listening to this conversation and chuckling to herself.\nAnd the lord of that servant, being moved with compassion, released him, and forgave him the debt.\nfor the kingdom of God is not eating and drinking, but righteousness and peace and joy in the Holy Spirit.\nWilbur lay down and closed his eyes.\nFern came almost every day to visit him.\nPresided over by a stout big-haired patriarch who went by the title of major and wore ruffled shirts and waistcoats and anything else white men were wearing in America.\nand the scripture was fulfilled which saith, And Abraham believed God, and it was reckoned unto him for righteousness; and he was called the friend of God.\nChief Ross and the Ridges had constructed years and years’ worth of arguments, and nothing they did or said changed a thing.\nAs Charley walked, he began to feel a presence in the woods, a sense of being watched from out of the fog.\nbut if it is of God, ye will not be able to overthrow them; lest haply ye be found even to be fighting against God.\nI’ve never been much of a one for prayer, but I looked at the dead boys and prayed that in the future it would be the likes of Jackson sprawled on the ground and not poor boys with hardly two pennies to rub together dying for the foolish ideas of greedy old men.\nFor when they shall rise from the dead, they neither marry, nor are given in marriage; but are as angels in heaven.\nFor example, better views than others?\nI am the God of thy fathers, the God of Abraham, and of Isaac, and of Jacob. And Moses trembled, and durst not behold.\nThen he told another story, of his journey to Charleston and his discovery of the workings of the law and how he found a way to use it in his favor, like an axe, by keeping its sharp edge turned away from himself and his desires.\nTwo men shall be in the field; the one shall be taken, and the other left.\n“Do you see what I see?” he asked.\nThe slant light of afternoon fell in broken beams through the yellow leaves and straight trunks.\nAnd so well-spoken.\nand they could not find what they might do; for the people all hung upon him, listening. \nWhat is it therefore? they will certainly hear that thou art come.\nAnd with great power gave the apostles their witness of the resurrection of the Lord Jesus: and great grace was upon them all.\nBut if any man is ignorant, let him be ignorant.\nAnd they came to Ephesus, and he left them there: but he himself entered into the synagogue, and reasoned with the Jews.\nHe whistled a sharp note down the line of wagons, and the whole train lurched forward.\naccording as it is written, God gave them a spirit of stupor, eyes that they should not see, and ears that they should not hear, unto this very day.\nand he began to speak boldly in the synagogue. But when Priscilla and Aquila heard him, they took him unto them, and expounded unto him the way of God more accurately.\n“This has been a night!”\nwho needeth not daily, like those high priests, to offer up sacrifices, first for his own sins, and then for the sins of the people: for this he did once for all, when he offered up himself.\nHe liked this.\nAnd when they heard this, they were baptized into the name of the Lord Jesus.\nWhen she was done marking, Charley got up carefully, and Nancy would scribe lines to show his waist and the bottoms of his pantlegs.\nI was wandering around the campus and I ran into these 3 girls that had come over from another school.\nHe who testifieth these things saith, Yea: I come quickly. Amen: come, Lord Jesus.\nAnd when Peter was come to himself, he said, Now I know of a truth, that the Lord hath sent forth his angel and delivered me out of the hand of Herod, and from all the expectation of the people of the Jews.\nThen he sailed back into the barn.\nGrace to you and peace from God the Father, and our Lord Jesus Christ,\nNow when certain days were passed, Agrippa the king and Bernice arrived at Cæsarea, and saluted Festus.\nFor if I build up again those things which I destroyed, I prove myself a transgressor.\n“What is an aeronaut?” asked Wilbur.\nFern grew rigid on her stool.\nhaving a good conscience; that, wherein ye are spoken against, they may be put to shame who revile your good manner of life in Christ.\nHis appearance was as lightning, and his raiment white as snow:\nPig’s out.\nFriendless, dejected, and hungry, he threw himself down in the manure and sobbed.\nHe went and addressed himself to the fire, standing close, his back to the other men.\nThen came the disciples, and said unto him, Knowest thou that the Pharisees were offended, when they heard this saying?\nsay ye of him, whom the Father sanctified and sent into the world, Thou blasphemest; because I said, I am the Son of God?\nAnd the Word became flesh, and dwelt among us (and we beheld his glory, glory as of the only begotten from the Father), full of grace and truth.\nSave me, somebody!\nIf ye then, being evil, know how to give good gifts unto your children, how much more shall your heavenly Father give the Holy Spirit to them that ask him?\nA new commandment I give unto you, that ye love one another; even as I have loved you, that ye also love one another.\nAnd when they had gone through the whole island unto Paphos, they found a certain sorcerer, a false prophet, a Jew, whose name was Bar-Jesus;\nand knew her not till she had brought forth a son: and he called his name JESUS. \nAnd what agreement hath a temple of God with idols? for we are a temple of the living God; even as God said, I will dwell in them, and walk in them; and I will be their God, and they shall be my people.\nAnd then immediately the brethren sent forth Paul to go as far as to the sea: and Silas and Timothy abode there still.\nSo the churches were strengthened in the faith, and increased in number daily.\nShe prepared our beds for us, and we all went to bed, but before any of us fell asleep, we heard a faint meowing of a cat somewhere off in the distance.\nFor if the dead are not raised, neither hath Christ been raised:\nThen they stared at Uncle.\nWhen the next rain came, the pool would fill up again.\nWilbur loved the barn when it was like this - calm and quiet, waiting for light.\nAnd to the Jews I became as a Jew, that I might gain Jews; to them that are under the law, as under the law, not being myself under the law, that I might gain them that are under the law;\nWhen she stepped onto the pitfall and tumbled through the branches into the hole she turned back into Spearfinger.  \nAnd this is life eternal, that they should know thee the only true God, and him whom thou didst send, even Jesus Christ.\nThe oath which he sware unto Abraham our father,\nThey do not swim in the middle where the fast water flows. That is where the big fish swim and that is where we are now!\nwherefore also I came without gainsaying, when I was sent for. I ask therefore with what intent ye sent for me.\nAnd the disciples say unto him, Whence should we have so many loaves in a desert place as to fill so great a multitude?\n“I’ll tend to this,” he chuckled.\nIt was hard to farm.\nand, On their hands they shall bear thee up, Lest haply thou dash thy foot against a stone.\n“My legs are hairy for a good reason,” replied Charlotte.\n“Oh, Avery,” chuckled Mrs. Arable.\nAnd Jesus said unto them, Come ye after me, and I will make you to become fishers of men.\nAstride her web, Charlotte sat moodily eating a horsefly and thinking about the future.\nLay not up for yourselves treasures upon the earth, where moth and rust consume, and where thieves break through and steal:\nI see the other birds leaving\nAnd he consented, and sought opportunity to deliver him unto them in the absence of the multitude.\nFinally, be ye all likeminded, compassionate, loving as brethren, tenderhearted, humbleminded:\nAnd he said unto them, The kings of the Gentiles have lordship over them; and they that have authority over them are called Benefactors.\nAvery put one leg over the fence of the pigpen.\nAnd besides all this, between us and you there is a great gulf fixed, that they that would pass from hence to you may not be able, and that none may cross over from thence to us.\nI know how to be abased, and I know also how to abound: in everything and in all things have I learned the secret both to be filled and to be hungry, both to abound and to be in want.\nRight there the rabbit fell down, knowing that the wolf had learned nothing.\nLuke, the beloved physician, and Demas salute you.\nAnd when they drew nigh unto Jerusalem, and came unto Bethphage, unto the mount of Olives, then Jesus sent two disciples,\nBut he that entereth in by the door is the shepherd of the sheep.\nbecause if thou shalt confess with thy mouth Jesus as Lord, and shalt believe in thy heart that God raised him from the dead, thou shalt be saved:\nfirst she kissed her father, then she kissed her mother.\nBear stood and walked around the fire and used the light to his advantage—like an actor moving in and out of the yellow glow of footlights—revealing and then retreating.\n(and the life was manifested, and we have seen, and bear witness, and declare unto you the life, the eternal life, which was with the Father, and was manifested unto us);\n“I'll tell you what I'll do, said Templeton.\nJesus therefore said unto him, Except ye see signs and wonders, ye will in no wise believe.\nand he is before all things, and in him all things consist.\nAvery was the busiest helper of all.\nAnd when he had tarried among them not more than eight or ten days, he went down unto Cæsarea; and on the morrow he sat on the judgment-seat, and commanded Paul to be brought.\nHer mother was a trapper before her.\nHe looked into the air.\nI feel cold…. he shook and shook and shook.\nand God shall glorify him in himself, and straightway shall he glorify him.\nAs we have said before, so say I now again, If any man preacheth unto you any gospel other than that which ye received, let him be anathema.\nAgain he sent forth other servants, saying, Tell them that are bidden, Behold, I have made ready my dinner; my oxen and my fatlings are killed, and all things are ready: come to the marriage feast.\nBut the Pharisees, when they saw it, said unto him, Behold, thy disciples do that which it is not lawful to do upon the sabbath.\n(Now this, He ascended, what is it but that he also descended into the lower parts of the earth?\nAnd it came to pass on the eighth day, that they came to circumcise the child; and they would have called him Zacharias, after the name of his father.\nAnd when even was come, there came a rich man from Arimathæa, named Joseph, who also himself was Jesus’ disciple:\nTake heed therefore how ye hear: for whosoever hath, to him shall be given; and whosoever hath not, from him shall be taken away even that which he thinketh he hath.\nFor David himself saith in the book of Psalms, The Lord said unto my Lord, Sit thou on my right hand,\nShe shed it onto the frothy hummock of pale silk and bombazine and linen and stood pale and slim in the moonlight.\nSpecial announcement!” said the loud speaker in a pompous voice.\nEverything was a shade of brown, the people and their clothes, horses and wagons, and even the muddy road itself.\nDenial was what the Army was for.\nAnd when he was come into the house, his disciples asked him privately, How is it that we could not cast it out?\nWilbur?”\nPoor, ignorant of economy of time, or money, cultivating the soil for a base subsistence, they prefer the chase of the deer or deer idleness to more useful employment.\nNow therefore why make ye trial of God, that ye should put a yoke upon the neck of the disciples which neither our fathers nor we were able to bear?\nSmith sat looking at the fire in a daze.\nThe fire was burning low and a layer of pale smoke thick as meringue settled against the ceiling of rock, unable to find a passage out.\nsaid with a loud voice, Stand upright on thy feet. And he leaped up and walked.\nHe pointed to the blue tag on Uncle’s pen.\nAnd after five days the high priest Ananias came down with certain elders, and with an orator, one Tertullus; and they informed the governor against Paul.\nSmith, finished with his report, came over and said, Perhaps one of you might stir that pot.\nAnd when I arrive, whomsoever ye shall approve, them will I send with letters to carry your bounty unto Jerusalem:\nThe goose egg was right underneath.\nBut take heed lest by any means this liberty of yours become a stumblingblock to the weak.\nThe woods seemed a long way off, and anyway, he had never been down there in the woods and wasn’t sure he would like it.\n“You better sit down.”\nFinally Mrs. Arable made up her mind she would pay a call on old Doctor Dorian and ask his advice.\nThere was the true light, even the light which lighteth every man, coming into the world.\nBut he that doubteth is condemned if he eat, because he eateth not of faith; and whatsoever is not of faith is sin. \nHe opened his mouth and some buttermilk ran in.\nHe brought him unto Jesus. Jesus looked upon him, and said, Thou art Simon the son of John: thou shalt be called Cephas (which is by interpretation, Peter).\nAnd when he knew that he was of Herod’s jurisdiction, he sent him unto Herod, who himself also was at Jerusalem in these days.\nAnd again, Isaiah saith, There shall be the root of Jesse, And he that ariseth to rule over the Gentiles; On him shall the Gentiles hope.\nAnd let him turn away from evil, and do good; Let him seek peace, and pursue it.\nNow when the apostles that were at Jerusalem heard that Samaria had received the word of God, they sent unto them Peter and John:\nWilbur took a step toward the pail.\nSo although I wrote unto you, I wrote not for his cause that did the wrong, nor for his cause that suffered the wrong, but that your earnest care for us might be made manifest unto you in the sight of God.\nWherefore, even as the Holy Spirit saith, To-day if ye shall hear his voice,\nBut this cometh to pass, that the word may be fulfilled that is written in their law, They hated me without a cause.\nNow he that wrought us for this very thing is God, who gave unto us the earnest of the Spirit.\nbut even as we have been approved of God to be intrusted with the gospel, so we speak; not as pleasing men, but God who proveth our hearts.\nThere was, understandably, a considerable markup, and the officers seemed compelled to announce that they could buy it back in New Jersey for half that price.\nAnd he will show you a large upper room furnished: there make ready.\nfor which I am an ambassador in chains; that in it I may speak boldly, as I ought to speak.\nWoe unto you, when all men shall speak well of you! for in the same manner did their fathers to the false prophets.\nThey ate, they drank, they married, they were given in marriage, until the day that Noah entered into the ark, and the flood came, and destroyed them all.\nAnd this he said to prove him: for he himself knew what he would do.\nLook ye out therefore, brethren, from among you seven men of good report, full of the Spirit and of wisdom, whom we may appoint over this business.\nI told him that what he was asking might well cost me my life, and that he hadn’t enough Federal money at his disposal to compensate me for its loss.\nAnd there appeared unto them tongues parting asunder, like as of fire; and it sat upon each one of them.\nAnd they brought him to Jesus: and they threw their garments upon the colt, and set Jesus thereon.\nand that ye study to be quiet, and to do your own business, and to work with your hands, even as we charged you;\nVerily I say unto you, that he will set him over all that he hath.\nAnd when Jesus heard it, he marvelled, and said to them that followed, Verily I say unto you, I have not found so great faith, no, not in Israel.\nThe grass looked like a magic carpet.\nAnd when even was come, the lord of the vineyard saith unto his steward, Call the laborers, and pay them their hire, beginning from the last unto the first.\n“Is there anything I can get you?\nShow me the tribute money. And they brought unto him a denarius.\nBut above all things, my brethren, swear not, neither by the heaven, nor by the earth, nor by any other oath: but let your yea be yea, and your nay, nay; that ye fall not under judgment.\nAnd they go into Capernaum; and straightway on the sabbath day he entered into the synagogue and taught.\nPilate saith unto him, What is truth? And when he had said this, he went out again unto the Jews, and saith unto them, I find no crime in him.\nAnd gathering together all the chief priests and scribes of the people, he inquired of them where the Christ should be born.\nI have surely seen the affliction of my people that is in Egypt, and have heard their groaning, and I am come down to deliver them: and now come, I will send thee into Egypt.\nFor I will be merciful to their iniquities, And their sins will I remember no more.\nFor the sun ariseth with the scorching wind, and withereth the grass; and the flower thereof falleth, and the grace of the fashion of it perisheth: so also shall the rich man fade away in his goings.\nBig woods rose black all around.\nAnd he arose, and came to his father. But while he was yet afar off, his father saw him, and was moved with compassion, and ran, and fell on his neck, and kissed him.\nand Jacob’s well was there. Jesus therefore, being wearied with his journey, sat thus by the well. It was about the sixth hour.\nAnd when it was shown to me that there would be a plot against the man, I sent him to thee forthwith, charging his accusers also to speak against him before thee.\nWe went around the oak tree, but we did not seen anything up in the tree.\nAnd they constrained him, saying, Abide with us; for it is toward evening, and the day is now far spent. And he went in to abide with them.\nand in the same manner do ye also joy, and rejoice with me.\nFor if, by the trespass of the one, death reigned through the one; much more shall they that receive the abundance of grace and of the gift of righteousness reign in life through the one, even Jesus Christ.\nWhen I brake the five loaves among the five thousand, how many baskets full of broken pieces took ye up? They say unto him, Twelve.\n“Nothing,” said Charlotte.\nMy best friends are in the barn cellar.\nAnd though they found no cause of death in him, yet asked they of Pilate that he should be slain.\nfor if ye live after the flesh, ye must die; but if by the Spirit ye put to death the deeds of the body, ye shall live.\nAnd they went forth, and preached everywhere, the Lord working with them, and confirming the word by the signs that followed. Amen.\nAnd if thine eye causeth thee to stumble, pluck it out, and cast it from thee: it is good for thee to enter into life with one eye, rather than having two eyes to be cast into the hell of fire.\nwherein were all manner of fourfooted beasts and creeping things of the earth and birds of the heaven.\nAnd when he saw them, he said unto them, Go and show yourselves unto the priests. And it came to pass, as they went, they were cleansed.\n“Well, I don’t know,” replied Charlotte. “The Fair comes at a bad time for me.\nAnd he departed thence, and went into their synagogue:\nWilbur listened to the sound with love in his heart.\nWhen therefore ye assemble yourselves together, it is not possible to eat the Lord’s supper:\nFor if these things are yours and abound, they make you to be not idle nor unfruitful unto the knowledge of our Lord Jesus Christ.\nwhom Jason hath received: and these all act contrary to the decrees of Cæsar, saying that there is another king, one Jesus.\nHe was particularly glad that she always put her victim to sleep before eating it.\nEvery brothel we passed was tinkling with piano music and breathing out its own particular fragrance of perfume and sweat into the evening.\nTherefore, if I come, I will bring to remembrance his works which he doeth, prating against us with wicked words: and not content therewith, neither doth he himself receive the brethren, and them that would he forbiddeth and casteth them out of the church.\nAnd he did not many mighty works there because of their unbelief. \nAnd straightway he constrained his disciples to enter into the boat, and to go before him unto the other side to Bethsaida, while he himself sendeth the multitude away.\nNow while the bridegroom tarried, they all slumbered and slept.\nhaving been begotten again, not of corruptible seed, but of incorruptible, through the word of God, which liveth and abideth.\nAnd at least Smith had sense to say, I thank you.\nHe blinked his little vicious dark eyes beneath his upreaching, pyrotechnic white hair and registered scant interest in me beyond an assessment of how difficult I might be to kill in a formal pistol duel or an impromptu tavern knife fight, both of which he had successfully fought in his youth and middle age.\nThe fungus breaks wood down into soil.\n“Did you have a good time at the Fair?” she asked as she kissed her daughter.\nWherefore, brethren, give the more diligence to make your calling and election sure: for if ye do these things, ye shall never stumble:\nBe afflicted, and mourn, and weep: let your laughter be turned to mourning, and your joy to heaviness.\nBut flee youthful lusts, and follow after righteousness, faith, love, peace, with them that call on the Lord out of a pure heart.\nAnd these shall go away into eternal punishment: but the righteous into eternal life. \n“I've just never tried.”\nAnd he spake to his disciples, that a little boat should wait on him because of the crowd, lest they should throng him:\nI stay put and wait for what comes.\nLurvy was standing outside in the rain, stirring up breakfast.\nnor by the earth, for it is the footstool of his feet; nor by Jerusalem, for it is the city of the great King.\n“I’m really too young to go out into the world alone,” he thought as he lay down.\nBut the things which proceed out of the mouth come forth out of the heart; and they defile the man.\nCharley opened his mouth wide and cocked his head, listening for the sounds of the manhunt, but his own people made such a racket that he couldn’t tell how far away the runners might be.\n“There are seven,” said the goose.\nAnd lifting up their eyes, they saw no one, save Jesus only.\nSo they took the money, and did as they were taught: and this saying was spread abroad among the Jews, and continueth until this day.\nAnd they sought to lay hold on him; and they feared the multitude; for they perceived that he spake the parable against them: and they left him, and went away.\nFor there are certain men crept in privily, even they who were of old written of beforehand unto this condemnation, ungodly men, turning the grace of our God into lasciviousness, and denying our only Master and Lord, Jesus Christ.\nThe web dried off and the words didn't show up so plainly.\n“See you tomorrow.”\nZuckerman thinks Wilbur is an unusual pig, and therefore he won't want to kill him and eat him.\nAnd of course nobody noticed Charlotte.\nTimothy my fellow-worker saluteth you; and Lucius and Jason and Sosipater, my kinsmen.\nFor there are eunuchs, that were so born from their mother’s womb: and there are eunuchs, that were made eunuchs by men: and there are eunuchs, that made themselves eunuchs for the kingdom of heaven’s sake. He that is able to receive it, let him receive it.\nAnd they were both righteous before God, walking in all the commandments and ordinances of the Lord blameless.\nAnd one said unto him, Lord, are they few that are saved? And he said unto them,\nThey therefore, when they were come together, asked him, saying, Lord, dost thou at this time restore the kingdom to Israel?\nMillipedes eat dead plants and then leave droppings on the ground.\nPure religion and undefiled before our God and Father is this, to visit the fatherless and widows in their affliction, and to keep oneself unspotted from the world. \nAnd when the pink blossoms fell off …\nWilbur began to struggle.\nPeter began to say unto him, Lo, we have left all, and have followed thee.\nWilbur galloped back.\nThey just stared at the tag.\nOne day the Cherokees decided they had to stop living in fear of  Spearfinger.  \nAnd Moses fled at this saying, and became a sojourner in the land of Midian, where he begat two sons.\n“Go play by yourself!\nFor a certain man named Demetrius, a silversmith, who made silver shrines of Diana, brought no little business unto the craftsmen;\n“Just the wrong idea,” replied Charlotte.\n“The Fair was weeks and weeks ago.”\nTo the weak I became weak, that I might gain the weak: I am become all things to all men, that I may by all means save some.\nPeople believe almost anything they see in print.\nClaire.\nI adjure you by the Lord that this epistle be read unto all the brethren.\n“Well,” said the spider, plucking thoughtfully at her web, “the old sheep has been around this barn a long time.\nSo the church throughout all Judæa and Galilee and Samaria had peace, being edified; and, walking in the fear of the Lord and in the comfort of the Holy Spirit, was multiplied.\nbut insomuch as ye are partakers of Christ’s sufferings, rejoice; that at the revelation of his glory also ye may rejoice with exceeding joy.\nAnd when the barbarians saw the venomous creature hanging from his hand, they said one to another, No doubt this man is a murderer, whom, though he hath escaped from the sea, yet Justice hath not suffered to live.\nAnd it was the feast of the dedication at Jerusalem:\nIt means I don’t have to limit my activities to spinning and trapping and stunts like that.”\nThat pig is as solid as they come.\nAnd the woman that hath an unbelieving husband, and he is content to dwell with her, let her not leave her husband.\nAnd when they came that were hired about the eleventh hour, they received every man a shilling.\nI have traveled far.\nAnd he came, and he taketh it out of the right hand of him that sat on the throne.\n“There's Henry!”\nAnd they were astonished at his teaching: for he taught them as having authority, and not as the scribes.\nAfter all, Wilbur was a very young pig—not much more than a baby, really.\nFor none of us liveth to himself, and none dieth to himself.\n“What a mess!” thought the rat.\nFor when we were in the flesh, the sinful passions, which were through the law, wrought in our members to bring forth fruit unto death.\nAnd he saith unto me, See thou do it not: I am a fellow-servant with thee and with thy brethren the prophets, and with them that keep the words of this book: worship God.\nHowbeit what saith the scripture? Cast out the handmaid and her son: for the son of the handmaid shall not inherit with the son of the freewoman.\nFor every one that partaketh of milk is without experience of the word of righteousness; for he is a babe.\nSo they went, and made the sepulchre sure, sealing the stone, the guard being with them. \nHe'll take the knife to you, my boy.”\nAnd while he yet spake, lo, Judas, one of the twelve, came, and with him a great multitude with swords and staves, from the chief priests and elders of the people.\nAnd when even was come, they brought unto him many possessed with demons: and he cast out the spirits with a word, and healed all that were sick:\nThen he would breathe deeply.\nbecause that he had been often bound with fetters and chains, and the chains had been rent asunder by him, and the fetters broken in pieces: and no man had strength to tame him.\nYou still have one foot, he told Wolf.\n“If I write the word ‘Terrific’ with sticky thread,” she thought, “every bug that comes along will get stuck in it and spoil the effect.”\nAnd his head and his hair were white as white wool, white as snow; and his eyes were as a flame of fire;\nFor we would not have you ignorant, brethren, concerning our affliction which befell us in Asia, that we were weighed down exceedingly, beyond our power, insomuch that we despaired even of life:\nShe knew from experience that if she waited long enough, a ﬂy would come to her web; and she felt sure that if she thought long enough about Wilbur’s problem, an idea would come to her mind.\nThe riverboat cabins were hardly bigger than tipped outhouses and not much better smelling, with their sleeping pallets stained by every fluid the human body is able to produce and unemptied chamberpots and poor ventilation.\nThey say unto him, Lord, that our eyes may be opened.\nAfter which it would just keep moving forward like a wave on the sea, oblivious to individual pain.\nVery pleased to meet you.\nThen he saith, I will return into my house whence I came out; and when he is come, he findeth it empty, swept, and garnished.\nDie otherwise.\nAnd I know that his commandment is life eternal; the things therefore which I speak, even as the Father hath said unto me, so I speak. \nThen he said, And now the second thing we have is our own lawyer, who is one of us.\nand to offer a sacrifice according to that which is said in the law of the Lord, A pair of turtledoves, or two young pigeons.\nAnd it came to pass on another sabbath, that he entered into the synagogue and taught: and there was a man there, and his right hand was withered.\nAnd during supper, the devil having already put into the heart of Judas Iscariot, Simon’s son, to betray him,\nI had no relief for my spirit, because I found not Titus my brother: but taking my leave of them, I went forth into Macedonia.\nTempleton knew the dump and liked it.\nHaw, haw—that’s a good one, eh, Sister?”\nAnd he saith unto them, How many loaves have ye? go and see. And when they knew, they say, Five, and two fishes.\nWhenever any creature broke loose on Zuckerman’s farm, the event was of great interest to the others.\nThe smaller children make holes with a stick and drop a dried up pea into each one.\nRoot up everything!\nThe whole thing had taken three minutes.\nBut he said, The things which are impossible with men are possible with God.\nThe land of Zebulun and the land of Naphtali, Toward the sea, beyond the Jordan, Galilee of the Gentiles,\nthat I may be delivered from them that are disobedient in Judæa, and that my ministration which I have for Jerusalem may be acceptable to the saints;\nBut the chief captain Lysias came upon us, and with great violence took him away out of our hands,\nWhich things also we speak, not in words which man’s wisdom teacheth, but which the Spirit teacheth; combining spiritual things with spiritual words.\nI in them, and thou in me, that they may be perfected into one; that the world may know that thou didst send me, and lovedst them, even as thou lovedst me.\n“Of course, they won't show up till next spring.”\nFor this cause the Jews seized me in the temple, and assayed to kill me.\nI say unto you, Among them that are born of women there is none greater than John: yet he that is but little in the kingdom of God is greater than he.\nAnd for this cause the Jews persecuted Jesus, because he did these things on the sabbath.\nEvery afternoon, when the school bus stopped in front of her house, she jumped out and ran to the kitchen to fix another bottle for him.\nThen let them that are in Judæa flee unto the mountains; and let them that are in the midst of her depart out; and let not them that are in the country enter therein.\n“I'm trembling with joy,” said Wilbur.\nCome now, ye that say, To-day or to-morrow we will go into this city, and spend a year there, and trade, and get gain:\nThe dead and their wounds, though, were certain.\nIf then ye have to judge things pertaining to this life, do ye set them to judge who are of no account in the church?\nfor he is a minister of God to thee for good. But if thou do that which is evil, be afraid; for he beareth not the sword in vain: for he is a minister of God, an avenger for wrath to him that doeth evil.\nBut the Pharisees and the lawyers rejected for themselves the counsel of God, being not baptized of him.\nPeace be to the brethren, and love with faith, from God the Father and the Lord Jesus Christ.\nThat the residue of men may seek after the Lord, And all the Gentiles, upon whom my name is called,\n And he hit it so very hard that his head went round and round.\nAnd I soon saw how the business was done but realized I did not have the money to do it very well.\nbut exhort one another day by day, so long as it is called To-day; lest any one of you be hardened by the deceitfulness of sin:\nShe paused and then mentioned the exact melancholy number.\nWe give thanks to God the Father of our Lord Jesus Christ, praying always for you,\nServes me right. \nNow I beseech you, brethren, through the name of our Lord Jesus Christ, that ye all speak the same thing, and that there be no divisions among you; but that ye be perfected together in the same mind and in the same judgment.\nAnd the city was filled with the confusion: and they rushed with one accord into the theatre, having seized Gaius and Aristarchus, men of Macedonia, Paul’s companions in travel.\nAt one party held at the house of a noted art collector, Mrs. Chapman and I danced not a step but spent time going from canvas to canvas. We decided to bypass landscape, my usual favorite, and also still life, for she did not find bowls of grapes and apples very interesting.\nSo then, as we have opportunity, let us work that which is good toward all men, and especially toward them that are of the household of the faith.\nfor it is witnessed of him, Thou art a priest for ever After the order of Melchizedek.\nAnd he took them in his arms, and blessed them, laying his hands upon them.\nThe disciple is not above his teacher: but every one when he is perfected shall be as his teacher.\nThey therefore departed from the presence of the council, rejoicing that they were counted worthy to suffer dishonor for the Name.\nwhich is his body, the fulness of him that filleth all in all. \n“Charlotte is the best storyteller I ever heard,” said Fern, poking her dish towel into a cereal bowl.\nHe barely spoke…\nYea, and if I am offered upon the sacrifice and service of your faith, I joy, and rejoice with you all:\nBut the word of the Lord abideth for ever. And this is the word of good tidings which was preached unto you. \nAnd Stephen, full of grace and power, wrought great wonders and signs among the people.\nWhen I therefore was thus minded, did I show fickleness? or the things that I purpose, do I purpose according to the flesh, that with me there should be the yea yea and the nay nay?\n“Use extreme care!” he said.\nThe woman saith unto him, Sir, I perceive that thou art a prophet.\nVerily I say unto you, I shall no more drink of the fruit of the vine, until that day when I drink it new in the kingdom of God.\nThey all wore moccasins and britches and shirts of linen and faded red calico.\nThou hast neither part nor lot in this matter: for thy heart is not right before God.\nThe world would be wiped clean.\nThe passway lay narrow and slick underfoot, and his best idea for navigation was to keep the creek within hearing to his left and not climb any ridges to the right.\nAnd there was usually a tin can with food still clinging to the inside.\nAfter she had left the room, Mrs. Arable spoke in a low voice to her husband.\nWhen any one heareth the word of the kingdom, and understandeth it not, then cometh the evil one, and snatcheth away that which hath been sown in his heart. This is he that was sown by the way side.\nThis title therefore read many of the Jews, for the place where Jesus was crucified was nigh to the city; and it was written in Hebrew, and in Latin, and in Greek.\n“Here, here, here!” said the goose.\nFor, uttering great swelling words of vanity, they entice in the lusts of the flesh, by lasciviousness, those who are just escaping from them that live in error;\nAnd I went unto the angel, saying unto him that he should give me the little book. And he saith unto me, Take it, and eat it up; and it shall make thy belly bitter, but in thy mouth it shall be sweet as honey.\nMy little children, these things write I unto you that ye may not sin. And if any man sin, we have an Advocate with the Father, Jesus Christ the righteous:\nAnd they were all filled with wrath in the synagogue, as they heard these things;\nAnd the tongue is a fire: the world of iniquity among our members is the tongue, which defileth the whole body, and setteth on fire the wheel of nature, and is set on fire by hell.\nFor men shall be lovers of self, lovers of money, boastful, haughty, railers, disobedient to parents, unthankful, unholy,\nand they said unto him, By what authority doest thou these things? or who gave thee this authority to do these things?\nWhen she stepped outside, the sun was shining, but it was very cold and she started to shiver.\nThou hast loved righteousness, and hated iniquity; Therefore God, thy God, hath anointed thee With the oil of gladness above thy fellows.\nAnd they that had taken Jesus led him away to the house of Caiaphas the high priest, where the scribes and the elders were gathered together.\n“Keep your knees straight and touch the ground with your ears!” called Charlotte.\nIn another hour or two, a steady stream of people would pass by, admiring it, and reading it, and looking at Wilbur, and marveling at the miracle.\nWilbur blushed.\n“No, I'm not, either.”\nthe mystery of the seven stars which thou sawest in my right hand, and the seven golden candlesticks. The seven stars are the angels of the seven churches: and the seven candlesticks are seven churches. \nin the name of our Lord Jesus, ye being gathered together, and my spirit, with the power of our Lord Jesus,\nBut when his brethren were gone up unto the feast, then went he also up, not publicly, but as it were in secret.\nAll that which the Father giveth me shall come unto me; and him that cometh to me I will in no wise cast out.\nthat all may honor the Son, even as they honor the Father. He that honoreth not the Son honoreth not the Father that sent him.\n“How enchanting!” he said.\nbut she shall be saved through her child-bearing, if they continue in faith and love and sanctification with sobriety. \nI passed out cigars to the men, and we lit them with a twig caught alight in the fire and passed the bottle around.\nand the third took her; and likewise the seven also left no children, and died.\nPilate therefore saith unto him, Speakest thou not unto me? knowest thou not that I have power to release thee, and have power to crucify thee?\n“Nothing wrong with this pig,” said Mr. Zuckerman cheerfully, pressing his knee against Wilbur’s behind.\nHe searched his pen thoroughly.\nFor they that dwell in Jerusalem, and their rulers, because they knew him not, nor the voices of the prophets which are read every sabbath, fulfilled them by condemning him.\nAnd when they had appointed for them elders in every church, and had prayed with fasting, they commended them to the Lord, on whom they had believed.\nAre not five sparrows sold for two pence? and not one of them is forgotten in the sight of God.\nI know trees are good and kind.\nFor behold, this selfsame thing, that ye were made sorry after a godly sort, what earnest care it wrought in you, yea what clearing of yourselves, yea what indignation, yea what fear, yea what longing, yea what zeal, yea what avenging! In everything ye approved yourselves to be pure in the matter.\nThe ground they passed over looked like it had been turned by plows.\nmake full my joy, that ye be of the same mind, having the same love, being of one accord, of one mind;\nAnd such confidence have we through Christ to God-ward:\nSo Charlotte sang a lullaby, while crickets chirped in the grass and the barn grew dark.\nand cast him into the abyss, and shut it, and sealed it over him, that he should deceive the nations no more, until the thousand years should be finished: after this he must be loosed for a little time.\nSalute Mary, who bestowed much labor on you.\n“How does it feel to be free?” she asked.\non the east were three gates; and on the north three gates; and on the south three gates; and on the west three gates.\n“Certainly not,” said the lamb.\nDr. Dorian leaned back and closed his eyes.\nBut I said, Not so, Lord: for nothing common or unclean hath ever entered into my mouth.\nknowing this, that our old man was crucified with him, that the body of sin might be done away, that so we should no longer be in bondage to sin;\nMr. Arable patted him.\nSo Lichen would agree neither to come down from the mountains nor to join in the hunt for Charley.\nA dying fire sent up white smoke from its bed of ashes, and Smith said he could see muskets propped against the hemlock trunk nearby.\nAnd which of you by being anxious can add a cubit unto the measure of his life?\nAnd they that went before, and they that followed, cried, Hosanna; Blessed is he that cometh in the name of the Lord:\nwho will render to every man according to his works:\nIn a rambling sort of way, the colonel was talking out a letter to a young scribe, who sat at a corner of the table and scratched fiercely at a sheet of paper, trying to keep up with the rapid flow of words.\nEvery morning he awoke twisted in his blankets, more exhausted than when he went to bed.\nLet all the house of Israel therefore know assuredly, that God hath made him both Lord and Christ, this Jesus whom ye crucified.\nBut the multitude of the city was divided; and part held with the Jews, and part with the apostles.\nNeither man spoke.\nAnd when Paul and Barnabas had no small dissension and questioning with them, the brethren appointed that Paul and Barnabas, and certain other of them, should go up to Jerusalem unto the apostles and elders about this question.\nAnd he said unto them that stood by, Take away from him the pound, and give it unto him that hath the ten pounds.\nIt would make one’s feelings about this go down easier if they had put up a fight.\nAlthough it is made of thin, delicate strands, the web is not easily broken.\nA bird told them where to aim their arrows between the scales of rock to strike her heart.\nand they were baptized of him in the river Jordan, confessing their sins.\nThis particular old Indian woman had her grey hair pulled back into a fist-sized bun, and she wore a greasy apron over a blue skirt that fell in limp folds from her wide hips.\nAnd he departed thence, and went into the house of a certain man named Titus Justus, one that worshipped God, whose house joined hard to the synagogue.\nAnd Peter had followed him afar off, even within, into the court of the high priest; and he was sitting with the officers, and warming himself in the light of the fire.\nThe pasture was bleak and frozen.\nAnd as he was entering into the boat, he that had been possessed with demons besought him that he might be with him.\n“And so do I,” said Nellie, who had just managed to catch a small gnat.\nPhiladelphia grabbed the handle just behind the head and they disputed over it, and even then George could not retrieve his hatchet.\nThat morning, just as Wilbur fell asleep, Avery Arable wandered into the Zuckerman’s front yard, followed by Fern.\nWilbur paused and listened.\nbecause by the works of the law shall no flesh be justified in his sight; for through the law cometh the knowledge of sin.\nAnd Pilate asked him, Art thou the King of the Jews? And he answering saith unto him, Thou sayest.\nBut a certain Samaritan, as he journeyed, came where he was: and when he saw him, he was moved with compassion,\nAnd behold, there arose a great tempest in the sea, insomuch that the boat was covered with the waves: but he was asleep.\nThe Zuckermans and Lurvy walked back to the house.\nYou are beautiful!\nsaying, This man began to build, and was not able to finish.\nThe boy replied, When we are big we will both be able to do lots of things!\n“Well-l,” said Fern, thoughtfully, “she has eight legs.\nAnd the angel answered and said unto the women, Fear not ye; for I know that ye seek Jesus, who hath been crucified.\n“You have awfully hairy legs, Charlotte,” said Wilbur,  as the spider busily worked at her task.\nAnd the goose raised herself a bit and poked her eggs a little further under her so that they would receive the full heat from her warm body and soft feathers.\nHe said being in a place without mountains was like riding in the bed of a careening wagon without side rails.\nWast thou called being a bondservant? care not for it: nay, even if thou canst become free, use it rather.\nAnd we have sent with them our brother, whom we have many times proved earnest in many things, but now much more earnest, by reason of the great confidence which he hath in you.\nAnd he commanded the multitude to sit down on the ground;\nWhen Jesus had thus said, he was troubled in the spirit, and testified, and said, Verily, verily, I say unto you, that one of you shall betray me.\nCharlotte read the words: “With New Radiant Action.”\nThou hypocrite, cast out first the beam out of thine own eye; and then shalt thou see clearly to cast out the mote out of thy brother’s eye.\n“I am sure,” she said, “that every one of us here will be gratified to learn that after four weeks of unremitting effort and patience on the part of our friend the goose, she now has something to show for it.\n“I’m sure you would.\nJesus perceived that they were desirous to ask him, and he said unto them, Do ye inquire among yourselves concerning this, that I said, A little while, and ye behold me not, and again a little while, and ye shall see me?\nIn the next pool, Littlefish saw a small fish that seemed to be stuck to a rock.\nThe famous Bear Drowning Him, now mostly just called Bear, was said to have gotten his name when he was still a boy by killing the master bear of all this territory, wounding it first with an arrow to the lungs and then fighting it with a knife in his fist until they both streamed blood.\nAll of the bacteria in this picture could fit on the period at the end of this sentence.\nWherefore we faint not; but though our outward man is decaying, yet our inward man is renewed day by day.\nAnd he said unto them, When ye pray, say, Father, Hallowed be thy name. Thy kingdom come.\n“I want to stay alive, right here in my comfortable manure pile with all my friends.\nAnd withal they learn also to be idle, going about from house to house; and not only idle, but tattlers also and busybodies, speaking things which they ought not.\nYou've just got to come.”\nall things therefore whatsoever they bid you, these do and observe: but do not ye after their works; for they say, and do not.\nbeing built upon the foundation of the apostles and prophets, Christ Jesus himself being the chief corner stone;\nAnd it came to pass, as they were on the way to Jerusalem, that he was passing along the borders of Samaria and Galilee.\nIf then God gave unto them the like gift as he did also unto us, when we believed on the Lord Jesus Christ, who was I, that I could withstand God?\nWilbur rushed over, pushed his strong snout under the rat, and tossed him into the air.\nAnd there was one called Barabbas, lying bound with them that had made insurrection, men who in the insurrection had committed murder.\n“Well, who taught a spider?\n“Not till tomorrow,” said Mr. Zuckerman.\nand his feet like unto burnished brass, as if it had been refined in a furnace; and his voice as the voice of many waters.\nIf so, it stood square to the ground looking his way, motionless.\nAnd the gates thereof shall in no wise be shut by day (for there shall be no night there):\nSo then they that are of faith are blessed with the faithful Abraham.\nIt was only a few hours old.\nThere's a regular conspiracy around here to kill you at Christmastime.\nWhen the game was over and my team had come out on the bottom, Bear asked me whether I had won or lost in the bigger game against the Government.\nFor whosoever hath, to him shall be given, and he shall have abundance: but whosoever hath not, from him shall be taken away even that which he hath.\nThen he remembered that the rat had been useful in saving Charlotte’s life, and that Charlotte was trying to save his life.\nAnd there came unto him Pharisees, trying him, and saying, Is it lawful for a man to put away his wife for every cause?\nOr despisest thou the riches of his goodness and forbearance and longsuffering, not knowing that the goodness of God leadeth thee to repentance?\nIn regard to the locale of the Indians in the mountain district much may be said in its adaptation to their mode of warfare and for the purposes of concealment.\nThey are not likely to come in if they see us, I said.\nAnd while they abode in Galilee, Jesus said unto them, The Son of man shall be delivered up into the hands of men;\nFor behold your calling, brethren, that not many wise after the flesh, not many mighty, not many noble, are called:\nWherefore also God highly exalted him, and gave unto him the name which is above every name;\nNot that I speak in respect of want: for I have learned, in whatsoever state I am, therein to be content.\nA great bloom of red blossomed on the white forehead band of Charley’s turban.\nand if she herself shall put away her husband, and marry another, she committeth adultery.\nAnd in the morning, a great while before day, he rose up and went out, and departed into a desert place, and there prayed.\nI went to the creek and stanched it with cold water and went on playing.\nFor I have no man likeminded, who will care truly for your state.\nWhich also our fathers, in their turn, brought in with Joshua when they entered on the possession of the nations, that God thrust out before the face of our fathers, unto the days of David;\nNow when the captain of the temple and the chief priests heard these words, they were much perplexed concerning them whereunto this would grow.\nAnd he answered and said, Elijah indeed cometh, and shall restore all things:\nAnd out of the smoke came forth locusts upon the earth; and power was given them, as the scorpions of the earth have power.\nPerhaps we might choose one to enter?\nFor we stretch not ourselves overmuch, as though we reached not unto you: for we came even as far as unto you in the gospel of Christ:\n“Good night!”  \nAll morning you could hear the rattle of the machine as it went round and round, while the tall grass fell down behind the cutter bar in long green swathes.\nBut concerning the times and the seasons, brethren, ye have no need that aught be written unto you.\nFor all that is in the world, the lust of the flesh and the lust of the eyes and the vainglory of life, is not of the Father, but is of the world.\nButterfiles, birds, and honey bees came to visit.\n“That’s just the thing,” he said.\nBut I know you, that ye have not the love of God in yourselves.\nI just held her tight and let myself be happy and hopeless and free of further desire, in case that moment was all we would ever have.\nFor verily not to angels doth he give help, but he giveth help to the seed of Abraham.\nthat your faith should not stand in the wisdom of men, but in the power of God.\nAnd he said unto his disciples, It is impossible but that occasions of stumbling should come; but woe unto him, through whom they come!\nAnd they come to Jericho: and as he went out from Jericho, with his disciples and a great multitude, the son of Timæus, Bartimæus, a blind beggar, was sitting by the way side.\nNow it is soil.\nand Joanna the wife of Chuzas Herod’s steward, and Susanna, and many others, who ministered unto them of their substance.\nAnd then shall they see the Son of man coming in clouds with great power and glory.\nBut these mine enemies, that would not that I should reign over them, bring hither, and slay them before me.\nBut if ye are led by the Spirit, ye are not under the law.\nAnd he will himself show you a large upper room furnished and ready: and there make ready for us.\nI lived in fear that if one twig was pulled from it, the whole nest would collapse and fall to the ground.\nand here he hath authority from the chief priests to bind all that call upon thy name.\nand he received the sign of circumcision, a seal of the righteousness of the faith which he had while he was in uncircumcision: that he might be the father of all them that believe, though they be in uncircumcision, that righteousness might be reckoned unto them;\nThen it seemed good to the apostles and the elders, with the whole church, to choose men out of their company, and send them to Antioch with Paul and Barnabas; namely, Judas called Barsabbas, and Silas, chief men among the brethren:\n“Can I have some money?” asked Fern.\nNow the God of patience and of comfort grant you to be of the same mind one with another according to Christ Jesus:\n“I don’t want a single one of those eggs harmed.”\nBlessed be the God and Father of our Lord Jesus Christ, the Father of mercies and God of all comfort;\nTheir leader was beating a drum, and the whole world vibrated to its urgent rhythm.\nHere's another! Here's another! said Beaver.\n“Charlotte's cousin won.\nWhen mom and dad came back again he told them what he had done and seen\nHe wanted to go home.\nAnd he came forth and saw a great multitude, and he had compassion on them, because they were as sheep not having a shepherd: and he began to teach them many things.\nAnd they gathered them together into the place which is called in Hebrew Har-Magedon.\nHis wet clothes hung limp on a tripod of sticks near the fire.\nHaving therefore, brethren, boldness to enter into the holy place by the blood of Jesus,\nAnd they said, Is not this Jesus, the son of Joseph, whose father and mother we know? how doth he now say, I am come down out of heaven?\nBring forth therefore fruits worthy of repentance, and begin not to say within yourselves, We have Abraham to our father: for I say unto you, that God is able of these stones to raise up children unto Abraham.\n“That’s Latin,” explained Charlotte.\nAnd there came to him certain of the Sadducees, they that say that there is no resurrection;\nScientists study the natural world.\nThe rat crawled in and ate everything.\nWhen he had finished the last drop, he grunted and walked sleepily into the box.\nThe geese cheered.\nI have sent him therefore the more diligently, that, when ye see him again, ye may rejoice, and that I may be the less sorrowful.\n“Gander?”\nAnd herein I give my judgment: for this is expedient for you, who were the first to make a beginning a year ago, not only to do, but also to will.\nAnd his disciples asked him what this parable might be.\n“Oh, I just don’t feel like leaving my web.\nAnd when even was come, the boat was in the midst of the sea, and he alone on the land.\nBlessed are the merciful: for they shall obtain mercy.\n“I don't know what a magnum opus is,” said Wilbur.\nAs also the high priest doth bear me witness, and all the estate of the elders: from whom also I received letters unto the brethren, and journeyed to Damascus to bring them also that were there unto Jerusalem in bonds to be punished.\nAnd I know such a man (whether in the body, or apart from the body, I know not; God knoweth),\nNo one taketh it away from me, but I lay it down of myself. I have power to lay it down, and I have power to take it again. This commandment received I from my Father.\nHe shall glorify me: for he shall take of mine, and shall declare it unto you.\nBut let all things be done decently and in order. \nIf we have only hoped in Christ in this life, we are of all men most pitiable.\nAnd in none other is there salvation: for neither is there any other name under heaven, that is given among men, wherein we must be saved.\nAnd they troubled the multitude and the rulers of the city, when they heard these things.\nRabbit, however, knew that Wolf was lying.\nIt is also waterproof.\nAnd I saw another angel flying in mid heaven, having eternal good tidings to proclaim unto them that dwell on the earth, and unto every nation and tribe and tongue and people;\nIt also comes from dead organisms.\nPaul, a prisoner of Christ Jesus, and Timothy our brother, to Philemon our beloved and fellow-worker,\nAnd as they spake unto the people, the priests and the captain of the temple and the Sadducees came upon them,\nIf a brother or sister be naked and in lack of daily food,\nAristarchus my fellow-prisoner saluteth you, and Mark, the cousin of Barnabas (touching whom ye received commandments; if he come unto you, receive him),\nAnd the unclean spirit, tearing him and crying with a loud voice, came out of him.\nBut not endless.\nBut it was all the same to her, for she didn’t look back.\nYes.\nAnd as the people were in expectation, and all men reasoned in their hearts concerning John, whether haply he were the Christ;\nAnd he spake also a parable unto them: No man rendeth a piece from a new garment and putteth it upon an old garment; else he will rend the new, and also the piece from the new will not agree with the old.\nThis man called Sequoyah was crippled.\nCharley was doing most of the talking, telling a hunting story from the days of elk and bison, neither of which anyone in attendance but Charley had ever seen.\n“What kind of work?” asked Wilbur.\nShe would have him lie down on his back on a smooth patch of bare dirt outside their door.\nAll of them headed in the direction of the river.\nFor they heard them speak with tongues, and magnify God. Then answered Peter,\nBy faith Moses, when he was born, was hid three months by his parents, because they saw he was a goodly child; and they were not afraid of the king’s commandment.\nmaking known unto us the mystery of his will, according to his good pleasure which he purposed in him\nSo the Jews said unto him that was cured, It is the sabbath, and it is not lawful for thee to take up thy bed.\nAnd at Lystra there sat a certain man, impotent in his feet, a cripple from his mother’s womb, who never had walked.\n“Told Templeton she didn’t want the egg any more,” repeated Fern.\nAt last he managed to reach the judges’ stand.\nthese are the things which defile the man; but to eat with unwashen hands defileth not the man.\nthat thou be not seen of men to fast, but of thy Father who is in secret: and thy Father, who seeth in secret, shall recompense thee.\nFor indeed we have had good tidings preached unto us, even as also they: but the word of hearing did not profit them, because it was not united by faith with them that heard.\nGod did not cast off his people which he foreknew. Or know ye not what the scripture saith of Elijah? how he pleadeth with God against Israel:\n“Cheer up,” replied Mrs. Arable, “this is fun.”\nunto a dispensation of the fulness of the times, to sum up all things in Christ, the things in the heavens, and the things upon the earth; in him, I say,\nImmediately upon my return to Wayah, I engaged in a three-hour-long ball game in which my nose was broken by a blow from a racquet.\n“Does my hair look all right?” asked Mrs. Zuckerman.\nGrace be with all them that love our Lord Jesus Christ with a love incorruptible.\nThe women and children had no energy and they hardly spoke.\nJesus made answer and said, A certain man was going down from Jerusalem to Jericho; and he fell among robbers, who both stripped him and beat him, and departed, leaving him half dead.\nAnd at even, when the sun did set, they brought unto him all that were sick, and them that were possessed with demons.\nBehold Israel after the flesh: have not they that eat the sacrifices communion with the altar?\n“Tum and twist!” honked the goose.\nAnd when he was twelve years old, they went up after the custom of the feast;\nAt the top of the doorway three small webs were being constructed.\nAnd he went on his way through cities and villages, teaching, and journeying on unto Jerusalem.\n“I think I'll try again,” said Wilbur, cheerfully.\nnot of works, that no man should glory.\nWhile Wilbur was being unloaded and taken out of his crate and into his new pigpen, crowds gathered to watch.\nThey lead Jesus therefore from Caiaphas into the Prætorium: and it was early; and they themselves entered not into the Prætorium, that they might not be defiled, but might eat the passover.\nConsider the lilies, how they grow: they toil not, neither do they spin; yet I say unto you, Even Solomon in all his glory was not arrayed like one of these.\n“Approximately-oximately thirty days, all told,” answered the goose.\n“That in itself is a tremendous thing.\nLook at you!\nAnd when they had fulfilled all things that were written of him, they took him down from the tree, and laid him in a tomb.\nHe had yet one, a beloved son: he sent him last unto them, saying, They will reverence my son.\nHe also has a smudge on one side where he lays in the manure.”\nNotwithstanding it pleased Silas to abide there still.\nfor the Father himself loveth you, because ye have loved me, and have believed that I came forth from the Father.\nAnd the angel cast his sickle into the earth, and gathered the vintage of the earth, and cast it into the winepress, the great winepress, of the wrath of God.\nWhile it remained, did it not remain thine own? and after it was sold, was it not in thy power? How is it that thou hast conceived this thing in thy heart? thou hast not lied unto men, but unto God.\nThen entered in therefore the other disciple also, who came first to the tomb, and he saw, and believed.\nBut they went forth, and spread abroad his fame in all that land.\nand shall cast them into the furnace of fire: there shall be the weeping and the gnashing of teeth.\nBut ye, brethren, are not in darkness, that that day should overtake you as a thief:\nI asked when might be a more convenient time to return, and she said, There’s not likely to be one.\nwranglings of men corrupted in mind and bereft of the truth, supposing that godliness is a way of gain.\nneither present your members unto sin as instruments of unrighteousness; but present yourselves unto God, as alive from the dead, and your members as instruments of righteousness unto God.\nAnd he preached, saying, There cometh after me he that is mightier than I, the latchet of whose shoes I am not worthy to stoop down and unloose.\nFor what shall a man be profited, if he shall gain the whole world, and forfeit his life? or what shall a man give in exchange for his life?\nMy head with oil thou didst not anoint: but she hath anointed my feet with ointment.\n“We're holding a directors’ meeting,” replied the old sheep.\nJesus answered, If I glorify myself, my glory is nothing: it is my Father that glorifieth me; of whom ye say, that he is your God;\nBut there is nothing covered up, that shall not be revealed; and hid, that shall not be known.\nThe pupils giggled. Fern blushed.\nWilbur next tried one of the lambs.\nFor as the body apart from the spirit is dead, even so faith apart from works is dead. \nFor even his brethren did not believe on him.\nFor where jealousy and faction are, there is confusion and every vile deed.\nNow in these days, when the number of the disciples was multiplying, there arose a murmuring of the Grecian Jews against the Hebrews, because their widows were neglected in the daily ministration.\nBut he said unto him, Man, who made me a judge or a divider over you?\nwhom we proclaim, admonishing every man and teaching every man in all wisdom, that we may present every man perfect in Christ;\nFor whatsoever is begotten of God overcometh the world: and this is the victory that hath overcome the world, even our faith.\nunto Timothy, my true child in faith: Grace, mercy, peace, from God the Father and Christ Jesus our Lord.\nThis – what do they call this here?\nIf he went outside to piss, word of it spread from one end of a ballroom to the other before he could button up and get back indoors.\nBut that servant went out, and found one of his fellow-servants, who owed him a hundred shillings: and he laid hold on him, and took him by the throat, saying, Pay what thou owest.\nA bout of drear military school.\nLet us therefore, as many as are perfect, be thus minded: and if in anything ye are otherwise minded, this also shall God reveal unto you:\nSo then am I become your enemy, by telling you the truth?\nFor of him, and through him, and unto him, are all things. To him be the glory for ever. Amen. \nThe grace of our Lord Jesus Christ be with you all.\nDo you dissipate like a drop of blood in a bucket of milk, or do you persist, a small stone tossed into a rushing river?\nAvery jumped down and joined the men.\n But in all the excitement A limb, Buddy did not see.\nAnd he called for lights and sprang in, and, trembling for fear, fell down before Paul and Silas,\nAnd Jesus called unto him his disciples, and said, I have compassion on the multitude, because they continue with me now three days and have nothing to eat: and I would not send them away fasting, lest haply they faint on the way.\nIf ye then, being evil, know how to give good gifts unto your children, how much more shall your Father who is in heaven give good things to them that ask him?\n“They're going to what?” screamed Wilbur.\nAnd the multitudes that went before him, and that followed, cried, saying, Hosanna to the son of David: Blessed is he that cometh in the name of the Lord; Hosanna in the highest.\nAnd they were about four thousand: and he sent them away.\nThese new white people took all the fun out of war and just won and kept winning, as if that was all that mattered.\nAsmeret wonders if we will find many decomposers.\nLay low, Charlotte!\nAnd he answered and said unto them, He that hath two coats, let him impart to him that hath none; and he that hath food, let him do likewise.\n“Listen to me!” cried Wilbur.\nbut Herod the tetrarch, being reproved by him for Herodias his brother’s wife, and for all the evil things which Herod had done,\nto walk worthily of the Lord unto all pleasing, bearing fruit in every good work, and increasing in the knowledge of God;\nFor the law of the Spirit of life in Christ Jesus made me free from the law of sin and of death.\nFor of these are they that creep into houses, and take captive silly women laden with sins, led away by divers lusts,\nAscend! Now right and down and swing that loop and around and around!\nAnd others fell into the good ground, and yielded fruit, growing up and increasing; and brought forth, thirtyfold, and sixtyfold, and a hundredfold.\nAnd they said unto her, There is none of thy kindred that is called by this name.\nFor it became him, for whom are all things, and through whom are all things, in bringing many sons unto glory, to make the author of their salvation perfect through sufferings.\nBut of him are ye in Christ Jesus, who was made unto us wisdom from God, and righteousness and sanctification, and redemption:\nAnd he came forth, and saw a great multitude, and he had compassion on them, and healed their sick.\nBehold then the goodness and severity of God: toward them that fell, severity; but toward thee, God’s goodness, if thou continue in his goodness: otherwise thou also shalt be cut off.\ntribulation and anguish, upon every soul of man that worketh evil, of the Jew first, and also of the Greek;\nThis was from the Lord, And it is marvellous in our eyes?\nyea, making it my aim so to preach the gospel, not where Christ was already named, that I might not build upon another man’s foundation;\nAvery jumped out and lowered the tailgate.\nPerry, perhaps you could try not to burn that bacon to a cinder.\nAnd straightway the Spirit driveth him forth into the wilderness.\nShe hadn’t raised a finger against either Americans or English and could not even tell the difference between them and was confused by why they were fighting each other to begin with.\nI planted, Apollos watered; but God gave the increase.\nThe colonel sat at his table behind the leavings of a boiled-beef dinner, the plate rim-full of grey juice afloat with fat pearls of congealed suet.\nAnd I saw one of his heads as though it had been smitten unto death; and his death-stroke was healed: and the whole earth wondered after the beast;\nWherefore receive ye one another, even as Christ also received you, to the glory of God.\n“It was a never-to-be-forgotten battle,” said Charlotte.\nLet Fern associate with her friends in the barn if she wants to.\nAnd the four and twenty elders and the four living creatures fell down and worshipped God that sitteth on the throne, saying, Amen; Hallelujah.\n“Why not?\nwhereof I was made a minister, according to the gift of that grace of God which was given me according to the working of his power.\nFor the time will come when they will not endure the sound doctrine; but, having itching ears, will heap to themselves teachers after their own lusts;\nThe words for blood fractions went even smaller than that, down to the thirty-second part of dark blood that in some states still disqualified one from the many entitlements of being white.\nBut every woman praying or prophesying with her head unveiled dishonoreth her head; for it is one and the same thing as if she were shaven.\n“No, said Charlotte.\nI was just a young man, but I was real cowardly.\nAnd straightway they left the nets, and followed him.\nAnd having found the disciples, we tarried there seven days: and these said to Paul through the Spirit, that he should not set foot in Jerusalem.\nAnd again another scripture saith, They shall look on him whom they pierced.\nHow then should the scriptures be fulfilled, that thus it must be?\nSmith and I sat studying the fire and Smith had almost nothing to say.\nAnd he that received the five talents came and brought other five talents, saying, Lord, thou deliveredst unto me five talents: lo, I have gained other five talents.\nShe still had straw in her hair and looked very pretty and excited.\nThe droppings help make new soil.\nBut thanks be to God, who putteth the same earnest care for you into the heart of Titus.\nsaying, Say ye, His disciples came by night, and stole him away while we slept.\ncame behind him, and touched the border of his garment: and immediately the issue of her blood stanched.\nAnd he said, He that showed mercy on him. And Jesus said unto him, Go, and do thou likewise.\nHerein I also exercise myself to have a conscience void of offence toward God and men always.\n“Yes,” said Mrs. Arable.\nFor ye were once darkness, but are now light in the Lord: walk as children of light\n“You stop it, Avery!” cried Fern.\nFor it seemeth to me unreasonable, in sending a prisoner, not withal to signify the charges against him. \nFor though I am absent in the flesh, yet am I with you in the spirit, joying and beholding your order, and the stedfastness of your faith in Christ.\nAnd one of the lawyers answering saith unto him, Teacher, in saying this thou reproachest us also.\nand stooping and looking in, he seeth the linen cloths lying; yet entered he not in.\nThe sheep heard the crickets, and they felt so uneasy they broke a hole in the pasture fence and wandered up into the field across the road.\nAnd as he passed by, he saw a man blind from his birth.\nTherefore in one day shall her plagues come, death, and mourning, and famine; and she shall be utterly burned with fire; for strong is the Lord God who judged her.\nAnd on his way to Washington City to lobby Congress and the Jackson administration on behalf of his people.\nBeloved, believe not every spirit, but prove the spirits, whether they are of God; because many false prophets are gone out into the world.\nbut in his own seasons manifested his word in the message, wherewith I was intrusted according to the commandment of God our Saviour;\nBut we hoped that it was he who should redeem Israel. Yea and besides all this, it is now the third day since these things came to pass.\nAnd they entered in, and found not the body of the Lord Jesus.\nSee that none render unto any one evil for evil; but always follow after that which is good, one toward another, and toward all.\nWilbur had never seen snow before.\nAnd now, brethren, I know that in ignorance ye did it, as did also your rulers.\nLet us not become vainglorious, provoking one another, envying one another. \nAnd he that overcometh, and he that keepeth my works unto the end, to him will I give authority over the nations:\nAnd they went away in the boat to a desert place apart.\nMy age exactly.\nBut I will come to you shortly, if the Lord will; and I will know, not the word of them that are puffed up, but the power.\nThen shall the King say unto them on his right hand, Come, ye blessed of my Father, inherit the kingdom prepared for you from the foundation of the world:\n“Now back again, faster!” said Charlotte.\nAnd they said, Cornelius a centurion, a righteous man and one that feareth God, and well reported of by all the nation of the Jews, was warned of God by a holy angel to send for thee into his house, and to hear words from thee.\nIt was a fancy ball where only the eldest senators were excused for arriving en habit de ville—a phrase I overheard Calhoun use in begging the pardon of the hostess for his failure to find a suitable costume.\nCalhoun’s nature demanded that he buck against anybody who sat above him, and yet he never managed to get himself all the way on top.\nAnd again he sent unto them another servant; and him they wounded in the head, and handled shamefully.\nAnd they made signs to his father, what he would have him called.\nAnd I was with you in weakness, and in fear, and in much trembling.\nRun for some water, Lurvy!”\n“It’s unfair.”\nI’ll bring them in.\nEven so ye also outwardly appear righteous unto men, but inwardly ye are full of hypocrisy and iniquity.\nAn arrow struck her palm and she was dead.   \nfor they understood not concerning the loaves, but their heart was hardened.\nAnd the passover of the Jews was at hand, and Jesus went up to Jerusalem.\nAnd whatsoever place shall not receive you, and they hear you not, as ye go forth thence, shake off the dust that is under your feet for a testimony unto them.\nVerily, verily, I say unto you, He that believeth hath eternal life.\nAnd the Pharisees said unto him, Behold, why do they on the sabbath day that which is not lawful?\nBut when they deliver you up, be not anxious how or what ye shall speak: for it shall be given you in that hour what ye shall speak.\nFern couldn't take her eyes off the tiny pig.\nAnd the seventy returned with joy, saying, Lord, even the demons are subject unto us in thy name.\nAnd they brought the lad alive, and were not a little comforted.\nFor behold, when the voice of thy salutation came into mine ears, the babe leaped in my womb for joy.\nBut Festus, desiring to gain favor with the Jews, answered Paul and said, Wilt thou go up to Jerusalem, and there be judged of these things before me?\nwhich none of the rulers of this world hath known: for had they known it, they would not have crucified the Lord of glory:\nBeyond looking for a cave, Charley had no plan for winter.\nWhen Charley was done, the snow was falling again in little grains, rattling in the tree branches.\nAnd ye see and hear, that not alone at Ephesus, but almost throughout all Asia, this Paul hath persuaded and turned away much people, saying that they are no gods, that are made with hands:\nThen was fulfilled that which was spoken through Jeremiah the prophet, saying,\nAgree with thine adversary quickly, while thou art with him in the way; lest haply the adversary deliver thee to the judge, and the judge deliver thee to the officer, and thou be cast into prison.\n“Nothing,” said Charlotte.\nAnd why beholdest thou the mote that is in thy brother’s eye, but considerest not the beam that is in thine own eye?\nAll that came before me are thieves and robbers: but the sheep did not hear them.\nYe have not yet resisted unto blood, striving against sin:\nAnd when they had laid many stripes upon them, they cast them into prison, charging the jailor to keep them safely:\nIf he could distinguish himself at the Fair, and maybe win some prize money, he was sure Zuckerman would let him live.\nYou know how he is always looking out for himself, never thinking of the other fellow.”\n“I was never more serious in my life.\nTherefore he that rejecteth, rejecteth not man, but God, who giveth his Holy Spirit unto you.\nand sware by him that liveth for ever and ever, who created the heaven and the things that are therein, and the earth and the things that are therein, and the sea and the things that are therein, that there shall be delay no longer:\nBut a voice answered the second time out of heaven, What God hath cleansed, make not thou common.\nBut I would have you to be free from cares. He that is unmarried is careful for the things of the Lord, how he may please the Lord:\nwho, knowing the ordinance of God, that they that practise such things are worthy of death, not only do the same, but also consent with them that practise them. \nFor God said, Honor thy father and thy mother: and, He that speaketh evil of father or mother, let him die the death.\nAnd do.\nAnd forgive us our debts, as we also have forgiven our debtors.\n“Try it again, try it again!”\nAnd he saith unto him, Verily, verily, I say unto you, Ye shall see the heaven opened, and the angels of God ascending and descending upon the Son of man. \nJudas (not Iscariot) saith unto him, Lord, what is come to pass that thou wilt manifest thyself unto us, and not unto the world?\nThe unclean spirit when he is gone out of the man, passeth through waterless places, seeking rest, and finding none, he saith, I will turn back unto my house whence I came out.\nThey say it stays warm all winter and there’s plenty of fish to fry.\n“Stop!” screamed Wilbur.\nThat is, it is not the children of the flesh that are children of God; but the children of the promise are reckoned for a seed.\nAnd straightway he came to Jesus, and said, Hail, Rabbi; and kissed him.\nJesus therefore perceiving that they were about to come and take him by force, to make him king, withdrew again into the mountain himself alone.\nShe roamed through the forests and any time she wanted to she could shapeshift.  \nAnd he said unto them, The harvest indeed is plenteous, but the laborers are few: pray ye therefore the Lord of the harvest, that he send forth laborers into his harvest.\nWilbur ran to her and she held the bottle for him while he sucked.\nWilbur stood in the trough, drooling with hunger. Lurvy poured.\n“Now I’ll catch it.”\nand the seven left no seed. Last of all the woman also died.\nWhile he yet spake, there cometh one from the ruler of the synagogue’s house, saying, Thy daughter is dead; trouble not the Teacher.\nJesus answered and said unto him, What I do thou knowest not now; but thou shalt understand hereafter.\n“Rats!” he said. “Fhew! I might a’ known a rat would make a nest under this trough.\nThere were other such forts scattered about the old Nation, each host to its own drab procession heading out to the West.\nHe leaning back, as he was, on Jesus’ breast saith unto him, Lord, who is it?\n“I’m hungry too,” said Charlie.\nCongratu—congratu-congratulations!” they cried.\nand when they had brought them unto the magistrates, they said, These men, being Jews, do exceedingly trouble our city,\nPerhaps if people talked less, animals would talk more.\nAnd from among the peoples and tribes and tongues and nations do men look upon their dead bodies three days and a half, and suffer not their dead bodies to be laid in a tomb.\nIt was probably a tree stump or a wet rock.\nBeaver found something near the river, said Rabbit.\nAnd our people?\nBut some trash never decomposes.\nGive no occasion of stumbling, either to Jews, or to Greeks, or to the church of God:\nI put the narrow-brimmed creased-crowned specimen back on its display block.\nand the spirits of the prophets are subject to the prophets;\nEpaphras, who is one of you, a servant of Christ Jesus, saluteth you, always striving for you in his prayers, that ye may stand perfect and fully assured in all the will of God.\nand to them that sold the doves he said, Take these things hence; make not my Father’s house a house of merchandise.\nBut those husbandmen said among themselves, This is the heir; come, let us kill him, and the inheritance shall be ours.\nbut rise, and enter into the city, and it shall be told thee what thou must do.\nAnd they have tails like unto scorpions, and stings; and in their tails is their power to hurt men five months.\nAvery was led from the ring by his mother and placed on the seat of the truck to dry off.\nHis ratty home under the pig trough was too chilly, so he fixed himself a cozy nest in the barn behind the grain bins.\nJesus answered them, Verily, verily, I say unto you, Every one that committeth sin is the bondservant of sin.\nGo get another word, please, Templeton!”\nThink ye that I am come to give peace in the earth? I tell you, Nay; but rather division:\nAnd he said unto them, Unto you is given the mystery of the kingdom of God: but unto them that are without, all things are done in parables:\nIf he could have swiped his hand across the world and made every one of them not ever have been at all, he would have done so.\nBeloved, think it not strange concerning the fiery trial among you, which cometh upon you to prove you, as though a strange thing happened unto you:\nBut Peter put them all forth, and kneeled down, and prayed; and turning to the body, he said, Tabitha, arise. And she opened her eyes; and when she saw Peter, she sat up.\nKnow ye not that ye are a temple of God, and that the Spirit of God dwelleth in you?\nAren’t you spending quite a lot of time there?\nCrossing into the village, they came close to Stephen’s door.\nEven when soldiers forced the people from their lands and sent them west in the 1830s, the Cherokee held on to their books.\nWell, home we go!”\nWilbur noticed that Charlotte's voice sounded sad.\nNow isn’t that lovely!”  \nPray for us: for we are persuaded that we have a good conscience, desiring to live honorably in all things.\nbut as it is written, Things which eye saw not, and ear heard not, And which entered not into the heart of man, Whatsoever things God prepared for them that love him.\nWhy do thy disciples transgress the tradition of the elders? for they wash not their hands when they eat bread.\nI would swim back up to see you, but I'm too big to fit through.\nThe trap was hooked there.\nAnd it was that Mary who anointed the Lord with ointment, and wiped his feet with her hair, whose brother Lazarus was sick.\nLurvy sat down under an apple tree and lit his pipe; the animals sniffed the familiar smell of strong tobacco.\nWilbur didn't want food, he wanted love.\nAnd he found in the temple those that sold oxen and sheep and doves, and the changers of money sitting:\nAnd he sent yet a third: and him also they wounded, and cast him forth.\nThe doings of the larger world, even Jackson’s will to put an end to Indians east of the Mississippi, seemed as distant and uninteresting as wars conducted by the King of Siam.\nSome lay curled up, knees to chest, trying to sleep.\nWherefore ye witness to yourselves, that ye are sons of them that slew the prophets.\nJesus therefore took the loaves; and having given thanks, he distributed to them that were set down; likewise also of the fishes as much as they would.\nSo there arose a division in the multitude because of him.\nSo it was a wonder to me that they didn’t find themselves out of an early morning by the misty Potomac squaring off in a pistol duel.\nAnd Peter arose and went with them. And when he was come, they brought him into the upper chamber: and all the widows stood by him weeping, and showing the coats and garments which Dorcas made, while she was with them.\nAnd Jesus answering said unto them, They that are in health have no need of a physician; but they that are sick.\nIt says, ‘Some Pig,’ just as clear as clear can be.\nAll that remained visible was the muscled hump of the bear’s back breaking the dark surface of the river.\nAnd the Pharisees, who were lovers of money, heard all these things; and they scoffed at him.\nHeaven knows anyone’s life can stand a little of that.”\nOne of the soldier boys dismounted and went to see what was the matter.\nYou can stay as long as you like If you care to stay with me.\nNow it came to pass, while the multitude pressed upon him and heard the word of God, that he was standing by the lake of Gennesaret;\n“But I can’t see you,” said Wilbur, jumping to his feet.\nAnd he arose, and straightway took up the bed, and went forth before them all; insomuch that they were all amazed, and glorified God, saying, We never saw it on this fashion.\nThe passenger list was shuffled up at each stop down the river as people came and went from town to town.\nThe wind began to blow so hard\nHe backed up to where the trap lay and stepped on it with his rear foot.\nLow on the ground.\nand said, This man said, I am able to destroy the temple of God, and to build it in three days.\nThis is a dead leaf.\nthat they should seek God, if haply they might feel after him and find him, though he is not far from each one of us:\nHis house is in the village, though;\nWhence came this mysterious writing?\nThe hunters thought the titmouse was saying “unahu”, which means heart. They aimed their arrows at Spearfinger’s heart, but the arrows just broke and fell to the ground.\n“Oh, yes.”\nWho art thou that judgest the servant of another? to his own lord he standeth or falleth. Yea, he shall be made to stand; for the Lord hath power to make him stand.\nBut he answered and said unto them, My mother and my brethren are these that hear the word of God, and do it.\nAnd he said unto them, What man shall there be of you, that shall have one sheep, and if this fall into a pit on the sabbath day, will he not lay hold on it, and lift it out?\nA decimated round of warm butter slumping on its dish.\nthe son of Melchi, the son of Addi, the son of Cosam, the son of Elmadam, the son of Er,\nWho was I to deny them comfort?\nThey had their muskets aimed generally at the bunched people.\nWherefore whatsoever ye have said in the darkness shall be heard in the light; and what ye have spoken in the ear in the inner chambers shall be proclaimed upon the housetops.\nAnd they said, Some say John the Baptist; some, Elijah; and others, Jeremiah, or one of the prophets.\n“He's fading away!”\nAnd seeing their faith, he said, Man, thy sins are forgiven thee.\nAnd straightway the fountain of her blood was dried up; and she felt in her body that she was healed of her plague.\nThe Jews answered him, We have a law, and by that law he ought to die, because he made himself the Son of God.\nBut let us, since we are of the day, be sober, putting on the breastplate of faith and love; and for a helmet, the hope of salvation.\nAnd he said, Bring them hither to me.\nThey live in the soil.\nIf we live by the Spirit, by the Spirit let us also walk.\nAnd no man putteth new wine into old wine-skins; else the new wine will burst the skins, and itself will be spilled, and the skins will perish.\nto the only God our Saviour, through Jesus Christ our Lord, be glory, majesty, dominion and power, before all time, and now, and for evermore. Amen.\nThe next day was Saturday.\nFern got up from her stool and started for home, her mind full of everything she had seen and heard.\n“I’ve been hearing things about that pig,” said Dr. Dorian, opening his eyes.\nbut I say unto you, that every one that looketh on a woman to lust after her hath committed adultery with her already in his heart.\nthat thou mightest know the certainty concerning the things wherein thou wast instructed.\nSo then if, while the husband liveth, she be joined to another man, she shall be called an adulteress: but if the husband die, she is free from the law, so that she is no adulteress, though she be joined to another man.\nWhite plates with smears of dark yellow where the yolks of soft-fried eggs had run and congealed.\n(for they indeed have been made priests without an oath; but he with an oath by him that saith of him, The Lord sware and will not repent himself, Thou art a priest for ever);\nThou didst put all things in subjection under his feet. For in that he subjected all things unto him, he left nothing that is not subject to him. But now we see not yet all things subjected to him.\nwell reported of for good works; if she hath brought up children, if she hath used hospitality to strangers, if she hath washed the saints’ feet, if she hath relieved the afflicted, if she hath diligently followed every good work.\nFor the man is not of the woman; but the woman of the man:\nWhat then? That which Israel seeketh for, that he obtained not; but the election obtained it, and the rest were hardened:\nAnd when the centurion saw what was done, he glorified God, saying, Certainly this was a righteous man.\nWhen Littlefish swam near the side of the pond, they would say, Don't swim there Littlefish, the raccoon family will grab you and gobble you up!\nI wove my webs for you because I liked you.\nto be sober-minded, chaste, workers at home, kind, being in subjection to their own husbands, that the word of God be not blasphemed:\nI, on the other hand, enjoyed trailside cookery and even traveled with a coffee grinder and green beans, which I roasted in a dry skillet until they were black and sweating a sheen of oil.\nAs the night closed in the dark he began to feel the cold.\nBut take ye heed to yourselves: for they shall deliver you up to councils; and in synagogues shall ye be beaten; and before governors and kings shall ye stand for my sake, for a testimony unto them.\nI say unto thee, Arise, take up thy bed, and go unto thy house.\nAnd Jesus answered and said, O faithless and perverse generation, how long shall I be with you, and bear with you? bring hither thy son.\nAnd we have the word of prophecy made more sure; whereunto ye do well that ye take heed, as unto a lamp shining in a dark place, until the day dawn, and the day-star arise in your hearts:\nEver since the spider had befriended him,  he had done his best to live up to his reputation.\nHow many Indians are you representing? the secretary said.\nPeter saith unto him, Even if I must die with thee, yet will I not deny thee. Likewise also said all the disciples.\nHave you ever tried to sleep while sitting on eight eggs?”\nthe son of Enos, the son of Seth, the son of Adam, the son of God. \nI know a good thing when I see it, and my web is a good thing.\nBut he, taking her by the hand, called, saying, Maiden, arise.\n“Look!” screamed Fern.\nOne day a little Cherokee boy planted an apple seed in his backyard.\nMy cousin hardly dared tackle it.\nOr at least back to your tent.\n“Can I have a frozen custard and a cheeseburger and some raspberry soda pop?” asked Avery.\nEven Templeton poked his head out cautiously, to watch Wilbur get a buttermilk bath.\nGo down through the garden, dig up the radishes!\nThen was fulfilled that which was spoken through Jeremiah the prophet, saying, And they took the thirty pieces of silver, the price of him that was priced, whom certain of the children of Israel did price;\nAnd he took with him Peter and the two sons of Zebedee, and began to be sorrowful and sore troubled.\neven he that cometh after me, the latchet of whose shoe I am not worthy to unloose.\nAnd when the sabbath was come, he began to teach in the synagogue: and many hearing him were astonished, saying, Whence hath this man these things? and, What is the wisdom that is given unto this man, and what mean such mighty works wrought by his hands?\nShe looked outside and saw the sun shining.\nThey zealously seek you in no good way; nay, they desire to shut you out, that ye may seek them.\nHe that overcometh shall thus be arrayed in white garments; and I will in no wise blot his name out of the book of life, and I will confess his name before my Father, and before his angels.\nNow to him that worketh, the reward is not reckoned as of grace, but as of debt.\nIn the Spring, when the children were on the hillsides picking wild strawberries she would come upon them, looking like their old grandmother.\nNeither do men put new wine into old wine-skins: else the skins burst, and the wine is spilled, and the skins perish: but they put new wine into fresh wine-skins, and both are preserved.\n“Good night!”\nThe blade had caught hard in the bones, buried as in a dry log butt.\nWhen Christ, who is our life, shall be manifested, then shall ye also with him be manifested in glory.\nAnd when they had crucified him, they parted his garments among them, casting lots;\nThen, a few minutes later, Fern and Avery showed up.\nAcross the river I could see the fire circle where Charley and I had sat up talking all night.\nBut put ye on the Lord Jesus Christ, and make not provision for the flesh, to fulfil the lusts thereof. \nAnd devout men buried Stephen, and made great lamentation over him.\nand saying, The time is fulfilled, and the kingdom of God is at hand: repent ye, and believe in the gospel.\nAnd he sent him away to his home, saying, Do not even enter into the village.\nThe roads were filled with uniformed Federal soldiers and heavily armed Tennessee mercenaries dressed like bandits and hired just for the summer by the Government to roust out Indians.\nThen came to him the mother of the sons of Zebedee with her sons, worshipping him, and asking a certain thing of him.\nBut a certain one of them that stood by drew his sword, and smote the servant of the high priest, and struck off his ear.\nBlessed are ye when men shall reproach you, and persecute you, and say all manner of evil against you falsely, for my sake.\nno, nor yet Herod: for he sent him back unto us; and behold, nothing worthy of death hath been done by him.\nKnow therefore that they that are of faith, the same are sons of Abraham.\nWhat they found on arrival was the plantation house of Ridge’s family, hundreds of acres with slaves working vast fields of cotton and tobacco, moving down the rows like the shadow of storm clouds settling over the land.\nWhere is the rest of the snake?\nHe closed his eyes.\nAnd it came to pass, that the beggar died, and that he was carried away by the angels into Abraham’s bosom: and the rich man also died, and was buried.\nSince then the children are sharers in flesh and blood, he also himself in like manner partook of the same; that through death he might bring to nought him that had the power of death, that is, the devil;\nAnd he saith unto me, Write, Blessed are they that are bidden to the marriage supper of the Lamb. And he saith unto me, These are true words of God.\nHe was afraid, but he swam up to the new fish and said in his tiny frightened voice, Hello, I am called Littlefish and I've never seen a fish like you.\nAnd I, if I be lifted up from the earth, will draw all men unto myself.\nAnd he believed the same now.\nJesus said unto him, Verily I say unto thee, that this night, before the cock crow, thou shalt deny me thrice.\nA few years younger than I was, but when you’re that young two or three years still seems significant.\nFern was there, sitting on her stool, when it happened.\nHelping them in their decision was the old major’s very concrete experience, all the way back into the previous century, of fighting both for and against white men.\nAnd there was much murmuring among the multitudes concerning him: some said, He is a good man; others said, Not so, but he leadeth the multitude astray.\nCharley’s people had built insubstantial shelters under the tree, a tentative-looking pole shed and an arbor, both lashed together with vines and roofed with brush and leaves and pine boughs.\nIf I must needs glory, I will glory of the things that concern my weakness.\nand said unto his servants, This is John the Baptist; he is risen from the dead; and therefore do these powers work in him.\n“I’ve left it tonight,” she said.\nPerry said.\nAnd Moses was instructed in all the wisdom of the Egyptians; and he was mighty in his words and works.\nAnd the rest said, Let be; let us see whether Elijah cometh to save him.\nHe might go on to the highest ridges and follow them northeast until he was far away from the hunters. But then what?\nHe wondered where Nancy was tonight, and all the children.\nIt was said also, Whosoever shall put away his wife, let him give her a writing of divorcement:\nand they sold their possessions and goods, and parted them to all, according as any man had need.\nMany shall come in my name, saying, I am he; and shall lead many astray.\nAnd the disciples went, and did even as Jesus appointed them,\nand why not (as we are slanderously reported, and as some affirm that we say), Let us do evil, that good may come? whose condemnation is just.\nThese things spake he: and after this he saith unto them, Our friend Lazarus is fallen asleep; but I go, that I may awake him out of sleep.\nYou notice how solid he is around the shoulders, Lurvy?”\nWriggling free of its bonds, it fled for the nearby rocks.\nAnd having spent some time there, he departed, and went through the region of Galatia, and Phrygia, in order, establishing all the disciples.\nAnd they that heard it said, Then who can be saved?\nThey’re all of a kind.\nSo he took him, and brought him to the chief captain, and saith, Paul the prisoner called me unto him, and asked me to bring this young man unto thee, who hath something to say to thee.\nI wrote a poem rather more about my moping than about Mrs. Chapman, and it was published in The Chesapeake Review.\n“Terrific!” breathed Zuckerman, in joyful admiration.\nHe that eateth my flesh and drinketh my blood abideth in me, and I in him.\nAnd in his teaching he said, Beware of the scribes, who desire to walk in long robes, and to have salutations in the marketplaces,\nBut when he saw the wind, he was afraid; and beginning to sink, he cried out, saying, Lord, save me.\nFor the foolish, when they took their lamps, took no oil with them:\nThe soldiers therefore came, and brake the legs of the first, and of the other that was crucified with him:\nAnd seeing them distressed in rowing, for the wind was contrary unto them, about the fourth watch of the night he cometh unto them, walking on the sea; and he would have passed by them:\nBeloved, I pray that in all things thou mayest prosper and be in health, even as thy soul prospereth.\nleave there thy gift before the altar, and go thy way, first be reconciled to thy brother, and then come and offer thy gift.\nI am the Alpha and the Omega, the first and the last, the beginning and the end.\nhaving knowledge of me from the first, if they be willing to testify, that after the straitest sect of our religion I lived a Pharisee.\nWhere then is that gratulation of yourselves? for I bear you witness, that, if possible, ye would have plucked out your eyes and given them to me.\nSmith and the boys were miserable.\nThen again he laid his hands upon his eyes; and he looked stedfastly, and was restored, and saw all things clearly.\n“Good!” said the doctor.\nand to another workings of miracles; and to another prophecy; and to another discernings of spirits: to another divers kinds of tongues; and to another the interpretation of tongues:\nBut he never had any fun — no walks, no rides, no swims.\nHe and Mrs. Zuckerman and Avery climbed into Wilbur’s pen.\nWith Smith’s party moving at foot pace, I had time to drop in for a night with Welch’s accommodating female employees before catching back up the next day.\nThou madest him a little lower than the angels; Thou crownedst him with glory and honor, And didst set him over the works of thy hands:\nBut an angel of the Lord spake unto Philip, saying, Arise, and go toward the south unto the way that goeth down from Jerusalem unto Gaza: the same is desert.\nThere is one body, and one Spirit, even as also ye were called in one hope of your calling;\nSchool ends, and children have time to play and to fish for trouts in the brook.\nAnd thus, having patiently endured, he obtained the promise.\nBut no one can enter into the house of the strong man, and spoil his goods, except he first bind the strong man; and then he will spoil his house.\nWherefore I beseech you to confirm your love toward him.\n“Cut that down to one ‘terrific’ and it will do very nicely,” said Charlotte.\nShe descended to the center of the web and there she began to cut some of her lines.\nThey are like unto children that sit in the marketplace, and call one to another; who say, We piped unto you, and ye did not dance; we wailed, and ye did not weep.\nHe moved in the bear’s wake all afternoon, climbing without letup.\nChoctaws had been cut down likewise.\n“That’s right,” agreed Lurvy.\nFor God so loved the world, that he gave his only begotten Son, that whosoever believeth on him should not perish, but have eternal life.\nBut the centurion, desiring to save Paul, stayed them from their purpose; and commanded that they who could swim should cast themselves overboard, and get first to the land;\nand they sounded, and found twenty fathoms; and after a little space, they sounded again, and found fifteen fathoms.\nHonor thy father and thy mother; and, Thou shalt love thy neighbor as thyself.\nwho had his dwelling in the tombs: and no man could any more bind him, no, not with a chain;\nAnd he said unto them, Verily I say unto you, There are some here of them that stand by, who shall in no wise taste of death, till they see the kingdom of God come with power.\nand said unto them, Sirs, I perceive that the voyage will be with injury and much loss, not only of the lading and the ship, but also of our lives.\nBut I don’t understand everything, and I don’t intend to let it worry me.”\nAnd shall not God avenge his elect, that cry to him day and night, and yet he is longsuffering over them?\nBut she that giveth herself to pleasure is dead while she liveth.\nAnd these signs shall accompany them that believe: in my name shall they cast out demons; they shall speak with new tongues;\nThey made no effort now to move silently, and the sounds of the men crawling in the ground litter and of the laurel boughs brushing and sometimes breaking against their bodies came from all sides.\nThis I say, that no one may delude you with persuasiveness of speech.\nI am come in my Father’s name, and ye receive me not: if another shall come in his own name, him ye will receive.\nSetting sail therefore from Troas, we made a straight course to Samothrace, and the day following to Neapolis;\nCharley said, Where we going?\nHe and the three younger men flared off from one another, Charley taking the path straight up.\nhow that the Christ must suffer, and how that he first by the resurrection of the dead should proclaim light both to the people and to the Gentiles.\nI'm not very pretty at all, and my limbs are not so strong. \nBut when Jesus saw it, he was moved with indignation, and said unto them, Suffer the little children to come unto me; forbid them not: for to such belongeth the kingdom of God.\nBeing then the offspring of God, we ought not to think that the Godhead is like unto gold, or silver, or stone, graven by art and device of man.\nNot together, Nancy said.\nIn this ugly little encounter smeared on the ground before me, it looked like one of the men, let’s say Lowan, struck high, a hard and solid hatchet stroke opening Perry’s head from the hairline to the teeth.\nEvery creature planned to get up early to see Wilbur off on his great adventure.\nBut if ye forgive not men their trespasses, neither will your Father forgive your trespasses.\npersecutions, sufferings; what things befell me at Antioch, at Iconium, at Lystra; what persecutions I endured: and out of them all the Lord delivered me.\nThe seven goslings paraded round and round their mother.\nContrary to the purser’s assessment, I found the food excellent, though supper might be no more complicated than a good fish soup with little beads of yellow butter afloat on the surface of a thinnish milk broth, accompanied by fine-crumbed corncakes and little gherkins, heaped bright green on a white plate with the stained vinegar pooling underneath.\nAnd when they that were about him saw what would follow, they said, Lord, shall we smite with the sword?\nGain weight and stay well—that’s the way you can help. Keep fit, and don’t lose your nerve.\nHer eyes were red from crying.\nFor therein the elders had witness borne to them.\nCharlotte liked to do her weaving during the late afternoon, and Fern liked to sit nearby and watch.\nThen the high priest rent his garments, saying, He hath spoken blasphemy: what further need have we of witnesses? behold, now ye have heard the blasphemy:\nFor it is not ye that speak, but the Spirit of your Father that speaketh in you.\nAnd again, I will put my trust in him. And again, Behold, I and the children whom God hath given me.\nI said therefore unto you, that ye shall die in your sins: for except ye believe that I am he, ye shall die in your sins.\nWhile Peter yet spake these words, the Holy Spirit fell on all them that heard the word.\nAnd he took the five loaves and the two fishes, and looking up to heaven, he blessed them, and brake; and gave to the disciples to set before the multitude.\nthe son of Amminadab, the son of Arni, the son of Hezron, the son of Perez, the son of Judah,\nI hesitated.\nWoe unto you, scribes and Pharisees, hypocrites! for ye build the sepulchres of the prophets, and garnish the tombs of the righteous,\nAmong the hunters from Lichen’s bunch, disagreements appeared to run in many different directions.\nThey said therefore, What is this that he saith, A little while? We know not what he saith.\nI have decided to take the pig to the County Fair on September sixth.\nand our hope for you is stedfast; knowing that, as ye are partakers of the sufferings, so also are ye of the comfort.\nin whom ye also are builded together for a habitation of God in the Spirit. \nAnd he said unto him, Well done, thou good servant: because thou wast found faithful in a very little, have thou authority over ten cities.\nFirst his house and animals and crops and neighbors, then his family.\n“You can't spin a web, Wilbur, and I advise you to put the idea out of your mind.\nThe two men walked silently down to Wilbur’s yard.\nThen they both began to tremble.\nThey are very illy provided with arms and ammunition.\nAnd he said, Are ye also even yet without understanding?\nI lounged with the three boys around a small fire that pushed back the dark only to arm’s length.\nbut Jesus went unto the mount of Olives.\nBut on the morrow they left the horsemen to go with him, and returned to the castle:\nlooking unto Jesus the author and perfecter of our faith, who for the joy that was set before him endured the cross, despising shame, and hath sat down at the right hand of the throne of God.\nbut one thing is needful: for Mary hath chosen the good part, which shall not be taken away from her. \n“This afternoon, late, if I’m not too tired,” said Charlotte. “The least thing tires me these days.\nFor every kind of beasts and birds, of creeping things and things in the sea, is tamed, and hath been tamed by mankind:\nTwo days later, back in Wayah, I sat in the dim midday townhouse with Bear.\nWhat advantage then hath the Jew? or what is the profit of circumcision?\nif so be that being clothed we shall not be found naked.\nAsmeret points to some trash near the trail.\nAnd Peter answered unto her, Tell me whether ye sold the land for so much. And she said, Yea, for so much.\n“Good-bye!” they called.\nHow can I learn to like her, even though she is pretty and, of course, clever?”\nThey perceived not that he spake to them of the Father.\nCharley and his people had camped on a piece of land where two rivers joined together.\n“Oh, it happened all right,” replied Fern.\nBut what I did was stand up beside Bear in the firelight and say that at least I’d give it a try. Go to Washington City and see what I could do in our behalf.\nBut we know that the law is good, if a man use it lawfully,\nBut aloud I said, With me it’s the other way around.\n“Nice work.”\nand shall cast them into the furnace of fire: there shall be the weeping and the gnashing of teeth.\nIn the afternoon I watched them march families and old folks into the holding pen that the fort had become.\nYea, I beseech thee also, true yokefellow, help these women, for they labored with me in the gospel, with Clement also, and the rest of my fellow-workers, whose names are in the book of life.\nHe's a solid pig.\nbecause to you it hath been granted in the behalf of Christ, not only to believe on him, but also to suffer in his behalf:\nAnd such were some of you: but ye were washed, but ye were sanctified, but ye were justified in the name of the Lord Jesus Christ, and in the Spirit of our God.\nOf the tribe of Simeon twelve thousand; Of the tribe of Levi twelve thousand; Of the tribe of Issachar twelve thousand;\nAre we beginning again to commend ourselves? or need we, as do some, epistles of commendation to you or from you?\n“Isn’t it hot?” said Mrs. Zuckerman.\nBehold, we call them blessed that endured: ye have heard of the patience of Job, and have seen the end of the Lord, how that the Lord is full of pity, and merciful.\nEvery night we cover the seedlings and wait until it is warm enough during the day to set them out for sunshine.\nAsmeret says everything in the woods could become part of the soil.\nThese are springs without water, and mists driven by a storm; for whom the blackness of darkness hath been reserved.\n“You're ever so much cleverer and brighter than I am, Charlotte.\nThat means he has won first prize.\nFor several days and several nights they crawled here and there, up and down, around and about, waving at Wilbur, trailing tiny draglines behind them, and exploring their home.\nWherefore, beloved, seeing that ye look for these things, give diligence that ye may be found in peace, without spot and blameless in his sight.\nWoe unto you, scribes and Pharisees, hypocrites! for ye devour widows' houses, and for a pretence make long prayer: therefore ye shall receive the greater damnation.\nBut it is not so among you: but whosoever would become great among you, shall be your minister;\nNobody seemed hungry.\nNow run along!”\nwho, when they were come down, prayed for them, that they might receive the Holy Spirit:\nFor what doth it profit a man, to gain the whole world, and forfeit his life?\nand said, Verily I say unto you, Except ye turn, and become as little children, ye shall in no wise enter into the kingdom of heaven.\nAnd he also that had received the one talent came and said, Lord, I knew thee that thou art a hard man, reaping where thou didst not sow, and gathering where thou didst not scatter;\nA certain lender had two debtors: the one owed five hundred shillings, and the other fifty.\n“How about me?” asked the third spider.\n(Now this man obtained a field with the reward of his iniquity; and falling headlong, he burst asunder in the midst, and all his bowels gushed out.\nAnd the twelve called the multitude of the disciples unto them, and said, It is not fit that we should forsake the word of God, and serve tables.\nNow a certain Jew named Apollos, an Alexandrian by race, an eloquent man, came to Ephesus; and he was mighty in the scriptures.\nAnd if thy hand cause thee to stumble, cut it off: it is good for thee to enter into life maimed, rather than having thy two hands to go into hell, into the unquenchable fire.\nAnd with whom was he displeased forty years? was it not with them that sinned, whose bodies fell in the wilderness?\nSeeing then that these things cannot be gainsaid, ye ought to be quiet, and to do nothing rash.\nWithout getting up from where she sat, Nancy turned and slapped him hard across the face where he sat beside her, striking him twice, first backhand and then with her hard palm.\nAnd, as Isaiah hath said before, Except the Lord of Sabaoth had left us a seed, We had become as Sodom, and had been made like unto Gomorrah.\nWilbur jumped as high as he could.\nBack in Wayah, I told Bear all the details of my recent past.\nand when the sun was risen, they were scorched; and because they had no root, they withered away.\nHowbeit the son by the handmaid is born after the flesh; but the son by the freewoman is born through promise.\nAnd he answered and said unto them, Think ye that these Galilæans were sinners above all the Galilæans, because they have suffered these things?\nAnd they did not receive him, because his face was as though he were going to Jerusalem.\nsaying, The scribes and the Pharisees sit on Moses’ seat:\nAnd he went forth to Tarsus to seek for Saul;\n“He's almost dead, that frog.”\nAnd pray ye that it be not in the winter.\nI ate one and offered the bland opinion that it was especially good.\nAnd then the Philadelphia boy said he’d like to be walking down South Street.\nthat the name of our Lord Jesus may be glorified in you, and ye in him, according to the grace of our God and the Lord Jesus Christ. \nin Phrygia and Pamphylia, in Egypt and the parts of Libya about Cyrene, and sojourners from Rome, both Jews and proselytes,\nCharley was like the bear in his squat build, his power all settled in his ass and thighs, and he ran lumbering but strong, and his short legs were good for climbing.\nBabies cried, though all they had to undergo in regard to suffering was to be carried jostling across broken ground in their mothers’ arms, pressed against soft breasts that had ceased to give milk.\nIf we confess our sins, he is faithful and righteous to forgive us our sins, and to cleanse us from all unrighteousness.\nHe didn't swim too close to the top of the water.\nAxe sat asleep in a straight chair by the fire with his hands folded in his lap and his chin on his chest.\nFor if I preach the gospel, I have nothing to glory of; for necessity is laid upon me; for woe is unto me, if I preach not the gospel.\nAnd they that saw it told them how he that was possessed with demons was made whole.\nhaving abolished in his flesh the enmity, even the law of commandments contained in ordinances; that he might create in himself of the two one new man, so making peace;\nNever a kind word for old Templeton, only abuse and wisecracks and side remarks.\nThe grownups climbed slowly into the truck and Wilbur heard the engine start and then heard the truck moving away in low speed.\nBut God raised him from the dead:\nHe that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him;\nSmith wanted to tell her not to bother.\nHe that hateth me hateth my Father also.\nand he saw two boats standing by the lake: but the fishermen had gone out of them, and were washing their nets.\nFor when every commandment had been spoken by Moses unto all the people according to the law, he took the blood of the calves and the goats, with water and scarlet wool and hyssop, and sprinkled both the book itself and all the people,\nIt is the spirit that giveth life; the flesh profiteth nothing: the words that I have spoken unto you are spirit, and are life.\nThen saith he to his servants, The wedding is ready, but they that were bidden were not worthy.\nThe Ridges and their followers stalled as long as they could, but before the axe fell they made a desperate and almost actuarial calculation to determine their best chances of personal and financial survival.\nhowbeit one of the soldiers with a spear pierced his side, and straightway there came out blood and water.\nFor nothing is hid, that shall not be made manifest; nor anything secret, that shall not be known and come to light.\n“Can I have a balloon?” asked Fern.\nDid you make it?”\nLichen said I was not the issue.\nJesus saith to him, He that is bathed needeth not save to wash his feet, but is clean every whit: and ye are clean, but not all.\nNow from the fig tree learn her parable: when her branch is now become tender, and putteth forth its leaves, ye know that the summer is nigh;\nAnd the high priest said, Are these things so?\nI’m done with commerce for this evening.\nBut the officers that came found them not in the prison; and they returned, and told,\nAnd we sailed away from Philippi after the days of unleavened bread, and came unto them to Troas in five days; where we tarried seven days.\nYou're my best friend, and I think you're sensational.\nAlso, he’s not anywhere near as clean as you are, nor as pleasant.\nThen he and Mr. Zuckerman leaned lazily on the fence and Mr. Zuckerman scratched Wilbur’s back with a stick.\n“Good night!\nAnd in the past, Wasseton would dart them out of the trees with his long blowgun until the muscles of his diaphragm and stomach became weak from the effort of deep and sharp exhalations, and his six hickory darts became heavy and dark with blood all the way to the thistledown fletching.\n“It's true,” replied Charlotte.\nOn very cold nights he lay so that his breath would warm it. For Wilbur, nothing in life was so important as this small round object—nothing else mattered.\nThey shall be divided, father against son, and son against father; mother against daughter, and daughter against her mother; mother in law against her daughter in law, and daughter in law against her mother in law.\nFor as through the one man’s disobedience the many were made sinners, even so through the obedience of the one shall the many be made righteous.\nSo on the morrow, when Agrippa was come, and Bernice, with great pomp, and they were entered into the place of hearing with the chief captains and the principal men of the city, at the command of Festus Paul was brought in.\nAnd Peter answered him and said, Lord, if it be thou, bid me come unto thee upon the waters.\nWilbur grunted.\nHe still stood behind me, and he was looking off to the side.\nDr. Dorian closed his eyes again and went into deep thought.\nI backed directly into Smith.\nFor the scripture saith unto Pharaoh, For this very purpose did I raise thee up, that I might show in thee my power, and that my name might be published abroad in all the earth.\nTempleton crouched under the straw at the bottom of the crate.\nFor he knew not what to answer; for they became sore afraid.\nAnd the angel answering said unto him, I am Gabriel, that stand in the presence of God; and I was sent to speak unto thee, and to bring thee these good tidings.\nDuring that time he had witnessed Jackson order a boy soldier shot for insubordination.\nSo then ye are no more strangers and sojourners, but ye are fellow-citizens with the saints, and of the household of God,\nSalute one another with a holy kiss. All the churches of Christ salute you.\nHe trusteth on God; let him deliver him now, if he desireth him: for he said, I am the Son of God.\nFrom eleven to twelve he planned to stand still and watch flies on the boards, watch bees in the clover, and watch swallows in the air.\nWoe unto you, scribes and Pharisees, hypocrites! for ye tithe mint and anise and cummin, and have left undone the weightier matters of the law, justice, and mercy, and faith: but these ye ought to have done, and not to have left the other undone.\nTwo bark-roofed blockhouses projected from the walls at opposing corners like crude bastions from which you could fire down upon attackers on either of the two sides they each commanded.\nAnd the scribes and the Pharisees watched him, whether he would heal on the sabbath; that they might find how to accuse him.\nAnd they told him, that Jesus of Nazareth passeth by.\nAnd the unclean spirits, whensoever they beheld him, fell down before him, and cried, saying, Thou art the Son of God.\nAnd as they were coming down from the mountain, Jesus commanded them, saying, Tell the vision to no man, until the Son of man be risen from the dead.\nAfter the heat of the day, the evening came as a welcome relief to all.\nHe grew to a great size.\nAnd he cried, saying, Jesus, thou son of David, have mercy on me.\nHe glanced hastily behind to see if a piece of rope was following him to check his fall, but nothing seemed to be happening in his rear, and the next thing he knew he landed with a thump.\nBut the multitudes perceiving it followed him: and he welcomed them, and spake to them of the kingdom of God, and them that had need of healing he cured.\nFor the ministration of this service not only filleth up the measure of the wants of the saints, but aboundeth also through many thanksgivings unto God;\nI have many things to speak and to judge concerning you: howbeit he that sent me is true; and the things which I heard from him, these speak I unto the world.\nThe disciples looked one on another, doubting of whom he spake.\nAnd he began to speak unto the people this parable: A man planted a vineyard, and let it out to husbandmen, and went into another country for a long time.\nBut when babies are involved and exhausted young mothers and grey-haired elders with swollen finger joints, being a fugitive is just terrifying and hopeless.\nAnd when he met us at Assos, we took him in, and came to Mitylene.\nIt was more than clear to everyone in Washington that Calhoun and Jackson, though both old men, were still violent as fighting cocks at their cores and would very much like to kill each other.\nsaying, Blessed is the King that cometh in the name of the Lord: peace in heaven, and glory in the highest.\nIf we receive the witness of men, the witness of God is greater: for the witness of God is this, that he hath borne witness concerning his Son.\n“Mr. Arable?” sobbed Wilbur.\nDecomposers will break it all down into soil.\nPhilip saith unto him, Lord, show us the Father, and it sufficeth us.\nThe fire in the center of the townhouse was built small, burned down mostly to coals with blue and yellow flames rising low and sporadic from checkered and nearly consumed logs of hickory and chestnut.\nAnd he carried me away in the Spirit to a mountain great and high, and showed me the holy city Jerusalem, coming down out of heaven from God,\nAnd they that ate the loaves were five thousand men.\nnot a novice, lest being puffed up he fall into the condemnation of the devil.\nBut from henceforth shall the Son of man be seated at the right hand of the power of God.\nThe unpaved road up the hill to the Capitol was like a winding stream of black mud, such an axle-deep mire that drivers mostly forsook the roadway and set out cross-country directly up the slopes of the hill, which had become cut like new-plowed ground with the parallel tracks of wheels and the cupped prints of horses and mules right to the Capitol steps.\nin whom we have boldness and access in confidence through our faith in him.\nThen, when Templeton couldn’t hold another mouthful, Wilbur would eat.\nWhat she liked best was to eat the livers of Cherokee children!  \nAny suggestions for a new slogan?”\n“How much money should I ask for him?” Fern wanted to know.\nthey say unto him, Teacher, this woman hath been taken in adultery, in the very act.\nThen he planted his front feet and came to a stop in front of Charlotte's children.\nOne morning a seedling appeared.\nOn the morrow a great multitude that had come to the feast, when they heard that Jesus was coming to Jerusalem,\nNow in the neighborhood of that place were lands belonging to the chief man of the island, named Publius; who received us, and entertained us three days courteously.\nXVI: Off to the Fair \nI was fairly furious at his high-handed manner and the assumptions he was making about how the lines of authority ran within our little party.\nAnd the priest of Jupiter whose temple was before the city, brought oxen and garlands unto the gates, and would have done sacrifice with the multitudes.\nAnd the seven angels that had the seven trumpets prepared themselves to sound.\nWilbur's leftover food is your chief source of supply, Templeton.\nCome back in a couple of years and they’ll be wearing them high, hove up nearly to their chins.\nIt has happened unto them according to the true proverb, The dog turning to his own vomit again, and the sow that had washed to wallowing in the mire. \n“Play?\nEven men aren't as good at it as spiders, although they think they're pretty good, and they'll try anything.\nAnd Lurvy dragged Wilbur’s trough across the yard and kicked some dirt into the rat’s nest, burying the broken egg and all Templeton’s other possessions.\nEvery tree that bringeth not forth good fruit is hewn down, and cast into the fire.\nPhilip cometh and telleth Andrew: Andrew cometh, and Philip, and they tell Jesus.\nBut far be it from me to glory, save in the cross of our Lord Jesus Christ, through which the world hath been crucified unto me, and I unto the world.\nThe Pharisee stood and prayed thus with himself, God, I thank thee, that I am not as the rest of men, extortioners, unjust, adulterers, or even as this publican.\nBut a certain man named Ananias, with Sapphira his wife, sold a possession,\namong whom was Mary Magdalene, and Mary the mother of James and Joses, and the mother of the sons of Zebedee.\nBut Ananias answered, Lord, I have heard from many of this man, how much evil he did to thy saints at Jerusalem:\nHe must increase, but I must decrease.\nLurvy soon got busy.\nWhereupon all the attending young men, in turn, commented favorably on their every superlative feature, from heels to lacing.\nAnd all the multitudes were amazed, and said, Can this be the son of David?\nand saith, Cornelius, thy prayer is heard, and thine alms are had in remembrance in the sight of God.\nAnd he said unto them, Therefore every scribe who hath been made a disciple to the kingdom of heaven is like unto a man that is a householder, who bringeth forth out of his treasure things new and old.\nfor I know your readiness, of which I glory on your behalf to them of Macedonia, that Achaia hath been prepared for a year past; and your zeal hath stirred up very many of them.\nhe fleeth because he is a hireling, and careth not for the sheep.\nAnd there ariseth a great storm of wind, and the waves beat into the boat, insomuch that the boat was now filling.\n“Can I look for eggs in the henhouse, Aunt Edith?”\nhow shall not rather the ministration of the spirit be with glory?\nI’m a pig!”\nAnd furthermore, I said, if he wanted to call me white, that was his privilege.\nCharlotte glared at her.\nWherefore also we make it our aim, whether at home or absent, to be well-pleasing unto him.\nAnd not only so; but Rebecca also having conceived by one, even by our father Isaac—\nAnd when it came to pass that Peter entered, Cornelius met him, and fell down at his feet, and worshipped him.\nThen the hay would be hoisted, sweet and warm, into the big loft, until the whole barn seemed like a wonderful bed of timothy and clover.\nAnd if any one say aught unto you, ye shall say, The Lord hath need of them; and straightway he will send them.\nTwo more little spiders crawled out and waved.\nBy faith Abel offered unto God a more excellent sacrifice than Cain, through which he had witness borne to him that he was righteous, God bearing witness in respect of his gifts: and through it he being dead yet speaketh.\nNow he that betrayed him had given them a token, saying, Whomsoever I shall kiss, that is he; take him, and lead him away safely.\nMrs. Arable said goodbye and thanked Dr. Dorian very much for his advice.\nAnd unto them is fulfilled the prophecy of Isaiah, which saith, By hearing ye shall hear, and shall in no wise understand; And seeing ye shall see, and shall in no wise perceive:\nBut Peter continued knocking: and when they had opened, they saw him, and were amazed.\nAnd whosoever shall cause one of these little ones that believe on me to stumble, it were better for him if a great millstone were hanged about his neck, and he were cast into the sea.\nZuckerman stared at the writing on the web.\nCharley turned and nodded again.\nAnd Peter took him, and began to rebuke him, saying, Be it far from thee, Lord: this shall never be unto thee.\nwho was foreknown indeed before the foundation of the world, but was manifested at the end of the times for your sake,\nShe went to the truck and came back with a gallon jar of buttermilk.\nSymeon hath rehearsed how first God visited the Gentiles, to take out of them a people for his name.\n“Hundreds of people are looking at us.”\nglory not over the branches: but if thou gloriest, it is not thou that bearest the root, but the root thee.\nWherefore I shall be ready always to put you in remembrance of these things, though ye know them, and are established in the truth which is with you.\nYea and all the prophets from Samuel and them that followed after, as many as have spoken, they also told of these days.\nAs I turned off the state highway and onto the dirt road, the lights of our car shined down the road, and I saw two men walking.\nAnd he said unto her, Daughter, thy faith hath made thee whole; go in peace.\nGliding silently, keeping her bare feet close to the oak floorboards so not to stumble.\nNot the Hell.\n“And don’t get lost!” said Mrs. Zuckerman.\nHow then shall they call on him in whom they have not believed? and how shall they believe in him whom they have not heard? and how shall they hear without a preacher?\nAs he saith also in Hosea, I will call that my people, which was not my people; And her beloved, that was not beloved.\n“O.K.,” replied Wilbur.\nin everything give thanks: for this is the will of God in Christ Jesus to you-ward.\nHe didn’t swim too close to the side of the water.\nthat aforetime were disobedient, when the longsuffering of God waited in the days of Noah, while the ark was a preparing, wherein few, that is, eight souls, were saved through water:\nAnd when the wine failed, the mother of Jesus saith unto him, They have no wine.\nKnow ye not that they that minister about sacred things eat of the things of the temple, and they that wait upon the altar have their portion with the altar?\n“No-no-no!” said the goose.\nAs it was, Beaver had to fell the tree.\nknowing that ye were redeemed, not with corruptible things, with silver or gold, from your vain manner of life handed down from your fathers;\nIn the mean time, when the many thousands of the multitude were gathered together, insomuch that they trod one upon another, he began to say unto his disciples first of all, Beware ye of the leaven of the Pharisees, which is hypocrisy.\nwhensoever I go unto Spain (for I hope to see you in my journey, and to be brought on my way thitherward by you, if first in some measure I shall have been satisfied with your company)—\nThe rat sat up.\nWhen I next visited Valley River to check on the post there, I was told immediately upon arrival that Claire and Featherstone had returned during my long absence.\nthrough the hypocrisy of men that speak lies, branded in their own conscience as with a hot iron;\nThe peppers grow in a rainbow of colors: purple, yellow, green, red, orange, and white.\nIf she went upstairs, Wilbur would wait at the bottom step until she came down again.\nFor in that she poured this ointment upon my body, she did it to prepare me for burial.\nAnd they called them, and charged them not to speak at all nor teach in the name of Jesus.\nhenceforth there is laid up for me the crown of righteousness, which the Lord, the righteous judge, shall give to me at that day; and not to me only, but also to all them that have loved his appearing.\nAt the end of the story, I paused.\nHe saith unto them, Come, and ye shall see. They came therefore and saw where he abode; and they abode with him that day: it was about the tenth hour.\nSpeak not one against another, brethren. He that speaketh against a brother, or judgeth his brother, speaketh against the law, and judgeth the law: but if thou judgest the law, thou art not a doer of the law, but a judge.\nHe shook his big stoppered gourd to check if it was still full from the most recent creek.\nThen Paul answered, What do ye, weeping and breaking my heart? for I am ready not to be bound only, but also to die at Jerusalem for the name of the Lord Jesus.\nSuddenly Wilbur felt lonely and friendless.\nIn a country like this and at a season the most unpropitious for surveying operations, it is natural to suppose many difficulties have been encountered.\nShe gripped the edge of the tailboard so hard her knuckles went white.\nThe crowd roared with laughter.\nThere were ten boys, all from big towns.\nAnd if they were all one member, where were the body?\nAnd if they would learn anything, let them ask their own husbands at home: for it is shameful for a woman to speak in the church.\nAnd Jesus said unto them, I will ask of you one question, and answer me, and I will tell you by what authority I do these things.\n“Homer Zuckerman, what in the world are you talking about?” she said.\nAsmeret carefully puts the log back the way she found it.\nThe geese gave him a noisy welcome.\nWhat soldier ever serveth at his own charges? who planteth a vineyard, and eateth not the fruit thereof? or who feedeth a flock, and eateth not of the milk of the flock?\nHis lord said unto him, Well done, good and faithful servant: thou hast been faithful over a few things, I will set thee over many things; enter thou into the joy of thy lord.\nAnd his parents went every year to Jerusalem at the feast of the passover.\nAnd he charged him to tell no man: but go thy way, and show thyself to the priest, and offer for thy cleansing, according as Moses commanded, for a testimony unto them.\nAll color was damped down to shades of grey.\nand they shall see his face; and his name shall be on their foreheads.\nThey could hear sheep blatting in their pens.\nI'll let you start it on a bottle, like a baby.\nAm I not free? am I not an apostle? have I not seen Jesus our Lord? are not ye my work in the Lord?\nAnd Jesus knowing their thoughts said, Wherefore think ye evil in your hearts?\nFor Paul had determined to sail past Ephesus, that he might not have to spend time in Asia; for he was hastening, if it were possible for him, to be at Jerusalem the day of Pentecost.\nin whom we have our redemption, the forgiveness of our sins:\nI robbed other churches, taking wages of them that I might minister unto you;\nChildren pay better attention than grownups.\nThe elder unto the elect lady and her children, whom I love in truth; and not I only, but also all they that know the truth;\nYour mother wouldn’t want that to happen, I’m sure.”\nColonel Haden was a big hog of a man, with biscuit crumbs in his whiskers and gravy stains down his shirtfront.\nFor to me to live is Christ, and to die is gain.\nAnd when there was made an onset both of the Gentiles and of the Jews with their rulers, to treat them shamefully and to stone them,\nLet the word of Christ dwell in you richly; in all wisdom teaching and admonishing one another with psalms and hymns and spiritual songs, singing with grace in your hearts unto God.\nWhen the children grew tired of swinging, they went down toward the pasture and picked wild raspberries and ate them.\nand had suffered many things of many physicians, and had spent all that she had, and was nothing bettered, but rather grew worse,\nShe felt the dizzy drop, then the supporting lift of the swing.\n“This is a matter of life and death, and you talk about controlling myself.”\nBuddy could not believe his ears \nAvery found an empty candy box and put his frog in it.\nand I advanced in the Jews’ religion beyond many of mine own age among my countrymen, being more exceedingly zealous for the traditions of my fathers.\n“Charlotte?” said Mrs. Arable.\nA date certain had been set, and though it was many seasons away, it was rushing toward them. Some of the Scottish Indians on the Nation paid little heed to it. They believed in their ability to make a deal.\nOnly, as the Lord hath distributed to each man, as God hath called each, so let him walk. And so ordain I in all the churches.\nDull Hoe was a man who did not just visit the spirit world but resided there nearly full-time and only experienced this world as a vague troubling dream.\nEverybody knew that a sign had appeared in a spider's web on the Zuckerman place.\nThe passway across the ridge crest bent around the face and went on forever into the north, a thin wavering line that had carried trade and war as long as there had been people to walk it.\nAnd he cometh, and findeth them sleeping, and saith unto Peter, Simon, sleepest thou? couldest thou not watch one hour?\n“He’s yours,” said Mr. Arable.\nAnd they that did eat were about five thousand men, besides women and children.\nMajor Cotton, he said.\nThe straw seemed scratchy —not as comfortable as the cow manure, which was always delightfully soft to lie in.\nAnd not only so, but we also rejoice in our tribulations: knowing that tribulation worketh stedfastness;\nWherefore, brethren, we are not children of a handmaid, but of the freewoman. \nin journeyings often, in perils of rivers, in perils of robbers, in perils from my countrymen, in perils from the Gentiles, in perils in the city, in perils in the wilderness, in perils in the sea, in perils among false brethren;\nAnd a great multitude followed him, because they beheld the signs which he did on them that were sick.\n“Lurvy, help with the crate!”\nWhen the people had been up on the mountaintops so long that by anyone’s reckoning soon had long since passed without any sign of a cleansing storm gathering on the horizon, they journeyed back down to the same hopeless world they had fled.\nBut Peter said, Not so, Lord; for I have never eaten anything that is common and unclean.\nThen she slept.\nIt’s wonderful out here.”\nTempleton was down there now, rummaging around.\nThe little tree was not so beautiful, but because the little boy loved the tree so much, the tree felt beautiful.\nBill Axe sought me out immediately upon my arrival.\nAnd some believed the things which were spoken, and some disbelieved.\nAnd they watched him, whether he would heal him on the sabbath day; that they might accuse him.\nAnd I was not content with just the quail.\n“Up in this back corner.”\nexcept it be for this one voice, that I cried standing among them, Touching the resurrection of the dead I am called in question before you this day.\nVerily, verily, I say unto you, Except a grain of wheat fall into the earth and die, it abideth by itself alone; but if it die, it beareth much fruit.\n“Yes, it’s true,” sighed Charlotte.\nJesus saith unto him, Have I been so long time with you, and dost thou not know me, Philip? he that hath seen me hath seen the Father; how sayest thou, Show us the Father?\nI charge thee in the sight of God, and of Christ Jesus, who shall judge the living and the dead, and by his appearing and his kingdom:\nI flushed red to the hairline and got up and gave a little one-inch head bob of a bow and left.\nFor as the body is one, and hath many members, and all the members of the body, being many, are one body; so also is Christ.\nfor every one that asketh receiveth; and he that seeketh findeth; and to him that knocketh it shall be opened.\n“Oh, no,” said Dr. Dorian.\nHad the conviction been fully and universally impressed upon their mind that they must go, they would long since have accommodated themselves to the idea and been prepared to meet their destiny.\nand they wrote thus by them, The apostles and the elders, brethren, unto the brethren who are of the Gentiles in Antioch and Syria and Cilicia, greeting:\nSoil comes from rocks breaking down.\nwherein ye also once walked, when ye lived in these things;\nWasseton blinked back tears and shut up.\nNow for a recompense in like kind (I speak as unto my children), be ye also enlarged.\nthe one do it of love, knowing that I am set for the defence of the gospel;\nIt looked just like Charlotte.\nAnd he said also unto the disciples, There was a certain rich man, who had a steward; and the same was accused unto him that he was wasting his goods.\nThe common people therefore of the Jews learned that he was there: and they came, not for Jesus’ sake only, but that they might see Lazarus also, whom he had raised from the dead.\nWe had frightened each other as he had been standing in the middle of the road sleeping.\nFor if the casting away of them is the reconciling of the world, what shall the receiving of them be, but life from the dead?\nAnd then the bear lurched forward and pressed the boy down under the water with his full weight.\nAnd ye have an anointing from the Holy One, and ye know all things.\nEven Wilbur, who could eat almost anything, was appalled.\nwhich indeed is less than all seeds; but when it is grown, it is greater than the herbs, and becometh a tree, so that the birds of the heaven come and lodge in the branches thereof.\nDrops of dew, catching the sun, made the web stand out clearly.\nthough I was before a blasphemer, and a persecutor, and injurious: howbeit I obtained mercy, because I did it ignorantly in unbelief;\nIf therefore the whole church be assembled together and all speak with tongues, and there come in men unlearned or unbelieving, will they not say that ye are mad?\nAnd the nation to which they shall be in bondage will I judge, said God: and after that shall they come forth, and serve me in this place.\nEverything of value was noted down in his ledger.\nWilbur lay resting after the excitement and strain of the ceremony.\nand so do Mark, Aristarchus, Demas, Luke, my fellow-workers.\nLate that night while her husband was still at cards, the indigo factor’s wife pecked on my cabin door with a knuckle, and we had a fumbling and fully clothed congress rather less than fully reclined on the miserable pallet.\nAnd hereby we know that we know him, if we keep his commandments.\nand on my behalf, that utterance may be given unto me in opening my mouth, to make known with boldness the mystery of the gospel,\nAnd being asked by the Pharisees, when the kingdom of God cometh, he answered them and said, The kingdom of God cometh not with observation:\nAnd the next sabbath almost the whole city was gathered together to hear the word of God.\nfor there shall arise false Christs and false prophets, and shall show signs and wonders, that they may lead astray, if possible, the elect.\nAnd the chief captain answered, With a great sum obtained I this citizenship. And Paul said, But I am a Roman born.\nAnd looking round on them that sat round about him, he saith, Behold, my mother and my brethren!\n“Oink, oink, oink!”\nAnd in those days cometh John the Baptist, preaching in the wilderness of Judæa, saying,\nMajor Ridge, who had been given his rank by Jackson back in the Creek War, had his boys with him, both approximately my age.\nBut, lest we cause them to stumble, go thou to the sea, and cast a hook, and take up the fish that first cometh up; and when thou hast opened his mouth, thou shalt find a shekel: that take, and give unto them for me and thee. \nFern and Avery jumped to the ground.\nWhen he finished, they headed toward the river.\nAnd the witness is this, that God gave unto us eternal life, and this life is in his Son.\nHe crept down into his hole, pushed the goose egg out of the way, and returned with an old piece of dirty white string.\nIf any woman that believeth hath widows, let her relieve them, and let not the church be burdened; that it may relieve them that are widows indeed.\nelse must he often have suffered since the foundation of the world: but now once at the end of the ages hath he been manifested to put away sin by the sacrifice of himself.\nWilbur burst into tears.\nPerry settled back against his bedroll.\nFor all things are for your sakes, that the grace, being multiplied through the many, may cause the thanksgiving to abound unto the glory of God.\nNow a certain man was sick, Lazarus of Bethany, of the village of Mary and her sister Martha.\nThen he picked up a stick.\n“Well,” said the goose, “that’s not my trouble.\nI was terrified. \nThe God of our fathers raised up Jesus, whom ye slew, hanging him on a tree.\nJesus said unto them, If ye were blind, ye would have no sin: but now ye say, We see: your sin remaineth. \nAnd after them all, the woman died.\n“A blanket.”\nwherefore let us keep the feast, not with old leaven, neither with the leaven of malice and wickedness, but with the unleavened bread of sincerity and truth.\nAnd whosoever shall exalt himself shall be humbled; and whosoever shall humble himself shall be exalted.\nbut a certain fearful expectation of judgment, and a fierceness of fire which shall devour the adversaries.\nthe blind receive their sight, and the lame walk, the lepers are cleansed, and the deaf hear, and the dead are raised up, and the poor have good tidings preached to them.\nAnd the Lord turned, and looked upon Peter. And Peter remembered the word of the Lord, how that he said unto him, Before the cock crow this day thou shalt deny me thrice.\nBrethren, pray for us.\nFor if any one is a hearer of the word and not a doer, he is like unto a man beholding his natural face in a mirror:\nwho also declared unto us your love in the Spirit.\nHis greatest wish was to operate a store selling clothing, men’s and women’s, of the most recent fashion.\nAnd the seventh poured out his bowl upon the air; and there came forth a great voice out of the temple, from the throne, saying, It is done:\nThe Irishman recalled how his grandmother had refused to acknowledge that the journey meant she would never see any of them again in this life.\nAnd there were seven sons of one Sceva, a Jew, a chief priest, who did this.\nBut I feel peaceful.\nNot one of them other than Smith had yet passed twenty.\nThe faith which thou hast, have thou to thyself before God. Happy is he that judgeth not himself in that which he approveth.\nAnd this is the message which we have heard from him and announce unto you, that God is light, and in him is no darkness at all.\nAnd after these things Jesus walked in Galilee: for he would not walk in Judæa, because the Jews sought to kill him.\nAnd whither I go, ye know the way.\nThe runners in the distance made a sound like a rising wind below them.\nAnd Pilate answered them, saying, Will ye that I release unto you the King of the Jews?\nBut if any hath caused sorrow, he hath caused sorrow, not to me, but in part (that I press not too heavily) to you all.\nBut in those sacrifices there is a remembrance made of sins year by year.\nFor there are three who bear witness, the Spirit, and the water, and the blood: and the three agree in one.\nHaving then a great high priest, who hath passed through the heavens, Jesus the Son of God, let us hold fast our confession.\nSeems to be, there’s two kinds of men in this new world the white people are making.\nLet's get out of here!”\nAnd he stretched forth his hand towards his disciples, and said, Behold, my mother and my brethren!\nIt's a Wendy day!\nFor yourselves know perfectly that the day of the Lord so cometh as a thief in the night.\nBut we, brethren, being bereaved of you for a short season, in presence not in heart, endeavored the more exceedingly to see your face with great desire:\nBut withal prepare me also a lodging: for I hope that through your prayers I shall be granted unto you.\nBut Paul’s sister’s son heard of their lying in wait, and he came and entered into the castle and told Paul.\nNow I praise you that ye remember me in all things, and hold fast the traditions, even as I delivered them to you.\nBut Peter began, and expounded the matter unto them in order, saying,\nand he gave him none inheritance in it, no, not so much as to set his foot on: and he promised that he would give it to him in possession, and to his seed after him, when as yet he had no child.\nBut when they had commanded them to go aside out of the council, they conferred among themselves,\n“It's a dud, I guess,” said the goose.\nEvery day was a happy day, and every night was peaceful.\nSo they made him a supper there: and Martha served; but Lazarus was one of them that sat at meat with him.\nThere were chairs farther along the gallery, but I went to the steps and sat down with my back to the door.\nA desperate passage through a landscape rising against you, the beautiful world you love suddenly risky and dangerous.\nAnd they bring the colt unto Jesus, and cast on him their garments; and he sat upon him.\nAnd on the under side of the leaf of the potato vine are the bright orange eggs of the potato bug.\nThe night seemed long.\nRender to all their dues: tribute to whom tribute is due; custom to whom custom; fear to whom fear; honor to whom honor.\nand be ye yourselves like unto men looking for their lord, when he shall return from the marriage feast; that, when he cometh and knocketh, they may straightway open unto him.\nneither, because they are Abraham’s seed, are they all children: but, In Isaac shall thy seed be called.\nAll chastening seemeth for the present to be not joyous but grievous; yet afterward it yieldeth peaceable fruit unto them that have been exercised thereby, even the fruit of righteousness.\nAnd Jesus, when he was baptized, went up straightway from the water: and lo, the heavens were opened unto him, and he saw the Spirit of God descending as a dove, and coming upon him;\nLook therefore whether the light that is in thee be not darkness.\nAnd, Whosoever shall swear by the altar, it is nothing; but whosoever shall swear by the gift that is upon it, he is a debtor.\nGot to keep them toasty-oasty—oasty warm.\nWherefore also he is able to save to the uttermost them that draw near unto God through him, seeing he ever liveth to make intercession for them.\nof whom is Hymenæus and Alexander; whom I delivered unto Satan, that they might be taught not to blaspheme. \nAnd the soldiers platted a crown of thorns, and put it on his head, and arrayed him in a purple garment;\nBut he answered and said to his father, Lo, these many years do I serve thee, and I never transgressed a commandment of thine; and yet thou never gavest me a kid, that I might make merry with my friends:\nShe laughed a tinkling little laugh.\nTempleton’s keen nose detected many fine smells in the air.\nAnd the temple was filled with smoke from the glory of God, and from his power; and none was able to enter into the temple, till the seven plagues of the seven angels should be finished. \nThe women and children stood watching, emotionless and completely still, grouped in near symmetry so that the memory of them would stay with Smith all his life, coming to rest in his mind like a family portrait.\nMy little children, of whom I am again in travail until Christ be formed in you—\nAnd they shall say to you, Lo, there! Lo, here! go not away, nor follow after them:\nFern had arrived and seated herself quietly on her stool in the corner.\nPolished ankle boots dangled in space.\nsaying, Give me also this power, that on whomsoever I lay my hands, he may receive the Holy Spirit.\n“If this is what it’s like to be free,” he thought, “I believe I’d rather be penned up in my own yard.”\nWilbur didn’t care.\nI will invent writing for our people, he said.\nIs this blessing then pronounced upon the circumcision, or upon the uncircumcision also? for we say, To Abraham his faith was reckoned for righteousness.\nHe's fine.”\nHow then was it reckoned? when he was in circumcision, or in uncircumcision? Not in circumcision, but in uncircumcision:\nAnd many were gathered together, so that there was no longer room for them, no, not even about the door: and he spake the word unto them.\nunto whom coming, a living stone, rejected indeed of men, but with God elect, precious,\nAnd when he had given him leave, Paul, standing on the stairs, beckoned with the hand unto the people; and when there was made a great silence, he spake unto them in the Hebrew language, saying, \nBut the chief priests stirred up the multitude, that he should rather release Barabbas unto them.\nWhen Jesus therefore saw her weeping, and the Jews also weeping who came with her, he groaned in the spirit, and was troubled,\nThe spider stood on its head, pointed its spinnerets in the air, and let loose a cloud of fine silk. The silk formed a balloon.\nAnd then shall he send forth the angels, and shall gather together his elect from the four winds, from the uttermost part of the earth to the uttermost part of heaven.\nAnd it came to pass when Jesus had finished these words, he departed from Galilee, and came into the borders of Judæa beyond the Jordan;\nso that the Son of man is lord even of the sabbath. \nDon’t come all white-faced telling me about peace.\nAnd Jesus stood still, and called them, and said, What will ye that I should do unto you?\nAnd the multitudes gave heed with one accord unto the things that were spoken by Philip, when they heard, and saw the signs which he did.\nFor of necessity he must have let one loose unto them at the feast.\nThus Paul went out from among them.\neven as it is written, Behold, I lay in Zion a stone of stumbling and a rock of offence: And he that believeth on him shall not be put to shame. \nHe shall be great, and shall be called the Son of the Most High: and the Lord God shall give unto him the throne of his father David:\nThis helps keep it wet and dark under the log.\nand they came unto him, and said, Hail, King of the Jews! and they struck him with their hands.\nlaying wait for him, to catch something out of his mouth. \nCharlotte just sat quietly.\nFirst she threw a left around the tail. The fish lashed back. Then a left to the tail and a right to the midsection. The fish lashed back. Then she dodged to one side and threw a right, and another right to the fin.\nThen he walked drearily to the doorway, where Charlotte's web used to be.\nAnd as soon as it was day, the assembly of the elders of the people was gathered together, both chief priests and scribes; and they led him away into their council, saying,\nAnd Jesus said unto him, The foxes have holes, and the birds of the heaven have nests; but the Son of man hath not where to lay his head.\nAnd in like manner a Levite also, when he came to the place, and saw him, passed by on the other side.\nYe blind: for which is greater, the gift, or the altar that sanctifieth the gift?\nI vote.\nAll things were made through him; and without him was not anything made that hath been made.\nOne winter night in New Echota, a small roomful of wealthy Ridge men, Featherstone among them, huddled about a white paper centered on a candlelit table and autographed a secret nighttime treaty, selling all of the Nation to America under the most favorable terms they believed they could get and agreeing for all their people, without consultation, to remove to the new Indian Territories.\nHe saved everything.) Certainly-ertainly-ertainly,” said the gander.\nAnd he said, A hundred measures of oil. And he said unto him, Take thy bond, and sit down quickly and write fifty.\nye being enriched in everything unto all liberality, which worketh through us thanksgiving to God.\nNow concerning the collection for the saints, as I gave order to the churches of Galatia, so also do ye.\nAnd he goeth up into the mountain, and calleth unto him whom he himself would; and they went unto him.\nFor, His letters, they say, are weighty and strong; but his bodily presence is weak, and his speech of no account.\nI have said beforehand, and I do say beforehand, as when I was present the second time, so now, being absent, to them that have sinned heretofore, and to all the rest, that, if I come again, I will not spare;\n“Attention, please!” he said.\nand might reconcile them both in one body unto God through the cross, having slain the enmity thereby:\nAnd all that sat in the council, fastening their eyes on him, saw his face as it had been the face of an angel. \nWe have never been more than a thousand souls.\nBut all these things will they do unto you for my name’s sake, because they know not him that sent me.\nAnd the multitude rose up together against them: and the magistrates rent their garments off them, and commanded to beat them with rods.\nNow they were Mary Magdalene, and Joanna, and Mary the mother of James: and the other women with them told these things unto the apostles.\nBut we, going before to the ship, set sail for Assos, there intending to take in Paul: for so had he appointed, intending himself to go by land.\nFor as soon as Bear died, the memory of Wild Hemp would pass entirely from the world, never to be retrieved again.\nAnd into whatsoever city or village ye shall enter, search out who in it is worthy; and there abide till ye go forth.\nThe early summer days on a farm are the happiest and fairest days of the year.\nand the second took her, and died, leaving no seed behind him; and the third likewise:\nAnd the Lord said, Hear what the unrighteous judge saith.\nI sat in a camp chair and waited for what he had to say.\nAnd they kept the saying, questioning among themselves what the rising again from the dead should mean.\nBut as touching the Gentiles that have believed, we wrote, giving judgment that they should keep themselves from things sacrificed to idols, and from blood, and from what is strangled, and from fornication.\nAnd many more believed because of his word;\n“Well!” said Mrs. Arable.\nOh.\nThe Nut Moon had hardly made an appearance during its cloudy month.\n“I don't see why he needs an ax,” continued Fern, who was only eight.\nI pray not that thou shouldest take them from the world, but that thou shouldest keep them from the evil one.\nAnd he said, Take heed that ye be not led astray: for many shall come in my name, saying, I am he; and, The time is at hand: go ye not after them.\nThen the devil taketh him into the holy city; and he set him on the pinnacle of the temple,\nThe Jews therefore sought him at the feast, and said, Where is he?\n“I'm sorry, Templeton,” she said, “but ‘Pre-shrunk’ is out of the question.\nAnd why call ye me, Lord, Lord, and do not the things which I say?\nAfter days of chase—down creeks, over ridges, up coves—the hunters were right behind them in the grey open woods.\nAnd the serpent cast out of his mouth after the woman water as a river, that he might cause her to be carried away by the stream.\nBehold, my servant whom I have chosen; My beloved in whom my soul is well pleased: I will put my Spirit upon him, And he shall declare judgment to the Gentiles.\nSo is he that layeth up treasure for himself, and is not rich toward God.\nProvisional structures that would fall apart and melt into the ground in a few seasons.\nand they were astonished at his teaching; for his word was with authority.\nWhat man of you, having a hundred sheep, and having lost one of them, doth not leave the ninety and nine in the wilderness, and go after that which is lost, until he find it?\nI came to this Fair to enjoy myself, not to deliver papers.”\nAnd it came to pass in Iconium that they entered together into the synagogue of the Jews, and so spake that a great multitude both of Jews and of Greeks believed.\nBeware of the scribes, who desire to walk in long robes, and love salutations in the marketplaces, and chief seats in the synagogues, and chief places at feasts;\n“It’s just a common grey spider,” said Zuckerman.\nAnd another said, I have married a wife, and therefore I cannot come.\n“I am naturally a heavy eater and I get untold satisfaction from the pleasures of the feast.”\nthat whosoever believeth may in him have eternal life.\nI know where thou dwellest, even where Satan’s throne is; and thou holdest fast my name, and didst not deny my faith, even in the days of Antipas my witness, my faithful one, who was killed among you, where Satan dwelleth.\nWilbur crouched low, with his thin, curly tail toward the rat.\nbut supposing him to be in the company, they went a day’s journey; and they sought for him among their kinsfolk and acquaintance:\nWe didn't pay much attention to him that first night.\nAnd when saw we thee sick, or in prison, and came unto thee?\nFern met her friend Henry Fussy, and he invited her to ride with him in the Ferris wheel.\nand Matthew and Thomas, and James the son of Alphæus, and Simon who was called the Zealot,\nHe that loveth his brother abideth in the light, and there is no occasion of stumbling in him.\nAnd she went away unto her house, and found the child laid upon the bed, and the demon gone out.\nAs for these things which ye behold, the days will come, in which there shall not be left here one stone upon another, that shall not be thrown down.\nLurvy rushed and called Mr. Zuckerman.\nI marvel that ye are so quickly removing from him that called you in the grace of Christ unto a different gospel;\nAnd it came to pass, while they were there, the days were fulfilled that she should be delivered.\nWe know that God hath spoken unto Moses: but as for this man, we know not whence he is.\nFor a moment after this announcement, the Arables and the Zuckermans were unable to speak or move.\nHe was born in eastern Tennessee in the 1760s, the son of a Cherokee woman and a white man he never knew.\nI am, Sir, with respect W. G. WILLIAMS CAPT. U.S. Top Ensgn.\nAnd it became known throughout all Joppa: and many believed on the Lord.\nFor if the ministration of condemnation hath glory, much rather doth the ministration of righteousness exceed in glory.\nHe handed Mr. Zuckerman two ten dollar bills and a five dollar bill.\nWith a final heave they jammed him into the crate.\nThe truck, with no one at the wheel, had started to roll downhill.\nAs Bear saw it, his people had only a pair of things in their favor.\nMrs. Arable worked silently.\nHe talked to it in a low voice. He said, Come to me. Come to me.\nAnd he went through Syria and Cilicia, confirming the churches. \nAnd when he said, From strangers, Jesus said unto him, Therefore the sons are free.\nDeep woods are haunted places in the fog.\nI will not leave you desolate: I come unto you.\nAnd when he entered again into Capernaum after some days, it was noised that he was in the house.\nNow she that is a widow indeed, and desolate, hath her hope set on God, and continueth in supplications and prayers night and day.\nAnd when they had taken security from Jason and the rest, they let them go.\nAnd the tempter came and said unto him, If thou art the Son of God, command that these stones become bread.\nJesus answered them, Did not I choose you the twelve, and one of you is a devil?\nThe soles of his feet were a color of white that Charley had never seen before, even on a whiteman.\nHe lay all day by the ashes of the fire with his mind blank, wishing he would die here and never be found.\nthey shall take up serpents, and if they drink any deadly thing, it shall in no wise hurt them; they shall lay hands on the sick, and they shall recover.\nClaire gone.\nand he opened his mouth and taught them, saying,\n“It means ‘great work.’ \nwho shall speak unto thee words, whereby thou shalt be saved, thou and all thy house.\nWhy is it judged incredible with you, if God doth raise the dead?\nMany therefore of the Jews, who came to Mary and beheld that which he did, believed on him.\nAnd amazement came upon all, and they spake together, one with another, saying, What is this word? for with authority and power he commandeth the unclean spirits, and they come out.\nJust get in.\nI have yet many things to say unto you, but ye cannot bear them now.\nThe sweet peppers are crisp and watery and they taste and smell like summer.\nWherefore I testify unto you this day, that I am pure from the blood of all men.\n“I’ve always noticed that pig. He’s quite a pig.”\nAnd a great sign was seen in heaven: a woman arrayed with the sun, and the moon under her feet, and upon her head a crown of twelve stars;\nAnd as they sat and were eating, Jesus said, Verily I say unto you, One of you shall betray me, even he that eateth with me.\nand he reasoned within himself, saying, What shall I do, because I have not where to bestow my fruits?\nLet's hunt down two more shoes.\nOn these two commandments the whole law hangeth, and the prophets.\nYe are severed from Christ, ye who would be justified by the law; ye are fallen away from grace.\nAnd this, knowing the season, that already it is time for you to awake out of sleep: for now is salvation nearer to us than when we first believed.\nThey said therefore unto him, Who art thou? Jesus said unto them, Even that which I have also spoken unto you from the beginning.\nAnd, so to say, through Abraham even Levi, who receiveth tithes, hath paid tithes;\nAnd David saith, Let their table be made a snare, and a trap, And a stumblingblock, and a recompense unto them:\n“I feel as though I’d eaten a spool of thread.\nIt was a chase suited for an old man, very slow and mostly on hands and knees.\nHe thought it was a ruse, and he began whispering about ambush and his plans to avoid it, all of which were unnecessarily complicated and impractical and based on the assumption that these baffled and powerless people—whose country had, as if by conjuration, dissolved beneath them and been reconstituted far off on some blank western territory—would put up a fight.\nWhen Littlefish swam near the top of the pond they would say, Don't swim near there Littlefish, the Kingfisher bird will fly by and scoop you up!\n“I shall be writing tonight for the last time. \nAnd he looked up, and saw the rich men that were casting their gifts into the treasury.\nAnd as they went on their way through the cities, they delivered them the decrees to keep which had been ordained of the apostles and elders that were at Jerusalem.\nClaire finally descended through the layers to a doeskin summer corset, light as a second layer of flesh, the color of chamois and trimmed in green satin.\nFinally Mr. Zuckerman had to laugh, too.\n(although Jesus himself baptized not, but his disciples),\nShe left the radial lines alone, as they were needed for support.\nBut Paul said, I am a Jew, of Tarsus in Cilicia, a citizen of no mean city: and I beseech thee, give me leave to speak unto the people.\nThis was not his home country, and he did not yet know it well, but he reckoned he could reach camp and the heat of the fire long before dark.\nNo answer.\nchoosing rather to share ill treatment with the people of God, than to enjoy the pleasures of sin for a season;\nA spider’s web is stronger than it looks.\nTo you, her daughters, I pledge my friendship, forever and ever.”\nAnd some of the Pharisees from the multitude said unto him, Teacher, rebuke thy disciples.\nThe other disciples therefore said unto him, We have seen the Lord. But he said unto them, Except I shall see in his hands the print of the nails, and put my finger into the print of the nails, and put my hand into his side, I will not believe.\nFor let none of you suffer as a murderer, or a thief, or an evil-doer, or as a meddler in other men’s matters:\nFor the Son of God, Jesus Christ, who was preached among you by us, even by me and Silvanus and Timothy, was not yea and nay, but in him is yea.\nAnd then with little warning the play’s run was over and Mrs. Chapman was off to another city, and I moped about the riverbank for days on end and neglected my correspondence to various departments of government and back home to Tallent.\nHaving many things to write unto you, I would not write them with paper and ink: but I hope to come unto you, and to speak face to face, that your joy may be made full.\nBut he answered them, He that made me whole, the same said unto me, Take up thy bed, and walk.\nBut we will not glory beyond our measure, but according to the measure of the province which God apportioned to us as a measure, to reach even unto you.\nBut if ye are without chastening, whereof all have been made partakers, then are ye bastards, and not sons.\nBut I don’t want you to worry about me.\nPush on it, push-push-push on it, and come on out!”\nAnd there was opened the temple of God that is in heaven; and there was seen in his temple the ark of his covenant; and there followed lightnings, and voices, and thunders, and an earthquake, and great hail. \nhaving become by so much better than the angels, as he hath inherited a more excellent name than they.\nAnd if ye have not been faithful in that which is another’s, who will give you that which is your own?\nI’ve worked so long for Bear, for our people.\nAnd as he thus made his defence, Festus saith with a loud voice, Paul, thou art mad; thy much learning is turning thee mad.\nHis skin shone.\nIn those days, when there was again a great multitude, and they had nothing to eat, he called unto him his disciples, and saith unto them,\nNow that school was over, Fern visited the barn almost every day, to sit quietly on her stool.\nJesus therefore six days before the passover came to Bethany, where Lazarus was, whom Jesus raised from the dead.\nYe blind guides, that strain out the gnat, and swallow the camel!\nand that because of the false brethren privily brought in, who came in privily to spy out our liberty which we have in Christ Jesus, that they might bring us into bondage:\nBut the Comforter, even the Holy Spirit, whom the Father will send in my name, he shall teach you all things, and bring to your remembrance all that I said unto you.\nBright and early, Lurvy put clean straw in Wilbur’s crate and lifted it into the pigpen.\n“Tell me a story, Charlotte!” said Wilbur, as he lay waiting for sleep to come. “Tell me a story!  So Charlotte, although she, too, was tired, did what Wilbur wanted.\nAnd the whole thing was owned by Fern’s uncle, Mr. Homer L. Zuckerman.\nSo they, being sent forth by the Holy Spirit, went down to Seleucia; and from thence they sailed to Cyprus.\nWhen their delegations arrived, I half expected Featherstone to be among them, but he was not.\nand he sent forth his servant at supper time to say to them that were bidden, Come; for all things are now ready.\nAnd then back outside the Nation in Wayah, I found Bear awake long nights in his townhouse, plotting out the organization of a new miniature world in the pattern of the vast old one.\nknowing that he that raised up the Lord Jesus shall raise up us also with Jesus, and shall present us with you.\nLay hands hastily on no man, neither be partaker of other men’s sins: keep thyself pure.\nto another faith, in the same Spirit; and to another gifts of healings, in the one Spirit;\nThis is now, beloved, the second epistle that I write unto you; and in both of them I stir up your sincere mind by putting you in remembrance;\nAll the chambermaids and desk clerks agreed that those were the days, and it had all been downhill since.\nYour glorying is not good. Know ye not that a little leaven leaveneth the whole lump?\nBut Paul said, I am standing before Cæsar’s judgment-seat, where I ought to be judged: to the Jews have I done no wrong, as thou also very well knowest.\nhereby we know that we abide in him and he in us, because he hath given us of his Spirit.\nin whom ye also, having heard the word of the truth, the gospel of your salvation,—in whom, having also believed, ye were sealed with the Holy Spirit of promise,\nAnd they came to him, and awoke him, saying, Save, Lord; we perish.\nAnd they ate, and were filled: and they took up, of broken pieces that remained over, seven baskets.\n(of whom the world was not worthy), wandering in deserts and mountains and caves, and the holes of the earth.\nThou therefore, my child, be strengthened in the grace that is in Christ Jesus.\nAnd touching at Syracuse, we tarried there three days.\nI took quite a dislike to him in our brief interview.\nFor we also once were foolish, disobedient, deceived, serving divers lusts and pleasures, living in malice and envy, hateful, hating one another.\nThere would be no one to feed you.\nwho were born, not of blood, nor of the will of the flesh, nor of the will of man, but of God.\naccording to the gospel of the glory of the blessed God, which was committed to my trust.\nO Timothy, guard that which is committed unto thee, turning away from the profane babblings and oppositions of the knowledge which is falsely so called;\nBut unto this day, whensoever Moses is read, a veil lieth upon their heart.\nNo hares or coons.\nAnd they came to the chief priests and the elders, and said, We have bound ourselves under a great curse, to taste nothing until we have killed Paul.\nso Christ also, having been once offered to bear the sins of many, shall appear a second time, apart from sin, to them that wait for him, unto salvation. \nCharlotte returned to her weaving.\nAnd every one that hath this hope set on him purifieth himself, even as he is pure.\nand the tombs were opened; and many bodies of the saints that had fallen asleep were raised;\nThere, in the direction of the river, Beaver was coming.\nSo many yellow apples, the branches bowed from the weight.\nSoon another little bird, a chickadee, flew down from the high branches and lighted on the witch’s right hand.  \nAnd the number of the armies of the horsemen was twice ten thousand times ten thousand: I heard the number of them.\nThe days of the year were too evasive for planning. They fled shapeless before him.\nAnd when we were come to Jerusalem, the brethren received us gladly.\nOh, honestly!”\nHis bowels suffered greatly from such diet.\nBe thou watchful, and establish the things that remain, which were ready to die: for I have found no works of thine perfected before my God.\nTo him be the dominion for ever and ever. Amen.\nAnd the scripture, foreseeing that God would justify the Gentiles by faith, preached the gospel beforehand unto Abraham, saying, In thee shall all the nations be blessed.\n“When I say ‘salutations,’ it’s just my fancy way of saying hello or good morning.\nand he that searcheth the hearts knoweth what is the mind of the Spirit, because he maketh intercession for the saints according to the will of God.\nOne of those new sorts then, I said.\nFor it is better, if the will of God should so will, that ye suffer for well-doing than for evil-doing.\nThe Jews therefore said, Behold how he loved him!\nNo one believed him.\nOf the several interpretations that were possible to make, this is how I shaped a narrative from the attitudes of the dead boys and their scattered effects and the scripture on the ground that the skirmish had left.\nAnd by the hands of the apostles were many signs and wonders wrought among the people: and they were all with one accord in Solomon’s porch.\nIf the foot shall say, Because I am not the hand, I am not of the body; it is not therefore not of the body.\nHowbeit when he, the Spirit of truth, is come, he shall guide you into all the truth: for he shall not speak from himself; but what things soever he shall hear, these shall he speak: and he shall declare unto you the things that are to come.\nRight through to the backbone with a Bowie knife, which I had on my hip.\n“But where?” asked Wilbur.\n“What do you see?” asked Wilbur.\nBoudinot and young Ridge featured themselves to be darkly Byronic figures, an image countless young men—myself included—held of themselves.\nSo the father knew that it was at that hour in which Jesus said unto him, Thy son liveth: and himself believed, and his whole house.\nAnd not only so, but ourselves also, who have the first-fruits of the Spirit, even we ourselves groan within ourselves, waiting for our adoption, to wit, the redemption of our body.\nAnd if thy right eye causeth thee to stumble, pluck it out, and cast it from thee: for it is profitable for thee that one of thy members should perish, and not thy whole body be cast into hell.\nThe food smelled appetizing.\nAfter these things I saw, and behold, a door opened in heaven, and the first voice that I heard, a voice as of a trumpet speaking with me, one saying, Come up hither, and I will show thee the things which must come to pass hereafter.\nFor after all these things do the Gentiles seek; for your heavenly Father knoweth that ye have need of all these things.\nFor the word of the cross is to them that perish foolishness; but unto us who are saved it is the power of God.\nAnd the multitudes asked him, saying, What then must we do?\nWhile the rat and the spider and the little girl watched, Wilbur climbed again to the top of the manure pile, full of energy and hope.\nand they have no root in themselves, but endure for a while; then, when tribulation or persecution ariseth because of the word, straightway they stumble.\nAnd the devil that deceived them was cast into the lake of fire and brimstone, where are also the beast and the false prophet; and they shall be tormented day and night for ever and ever.\nAnd he reasoned in the synagogue every sabbath, and persuaded Jews and Greeks.\nThe afternoon passed, and evening came.\nFor in that he himself hath suffered being tempted, he is able to succor them that are tempted. \nShe and I would watch television; whatever they were doing on there, until really late in the night. \nBut desire earnestly the greater gifts. And moreover a most excellent way show I unto you. \nCharley’s people consulted, and decided that the horses would be an impediment up among the trackless peaks, and so they left them standing nervous and confused with the dead boys.\nBut if any man say unto you, This hath been offered in sacrifice, eat not, for his sake that showed it, and for conscience’ sake:\nThe goose heard the racket and she, too, started hollering. “Run-run-run downhill, make for the woods, the woods!” she shouted to Wilbur.\nAnd he cried with a mighty voice, saying, Fallen, fallen is Babylon the great, and is become a habitation of demons, and a hold of every unclean spirit, and a hold of every unclean and hateful bird.\nOur mouth is open unto you, O Corinthians, our heart is enlarged.\nClaire leaned back and shifted the mass of hair from her face with a raking motion of wrist and forearm.\nAnd these words appeared in their sight as idle talk; and they disbelieved them.\nThen the proconsul, when he saw what was done, believed, being astonished at the teaching of the Lord.\nHim would Paul have to go forth with him; and he took and circumcised him because of the Jews that were in those parts: for they all knew that his father was a Greek.\nYou can imagine Wilbur’s surprise when, out of the darkness, came a small voice he had never heard before.\nI speak by way of disparagement, as though we had been weak. Yet whereinsoever any is bold (I speak in foolishness), I am bold also.\nAnd in like manner the Spirit also helpeth our infirmity: for we know not how to pray as we ought; but the Spirit himself maketh intercession for us with groanings which cannot be uttered;\nHe looked up into the trees and the sky beyond, for it seemed as if at some point the bear had spread wings and taken flight.\nGo ye therefore unto the partings of the highways, and as many as ye shall find, bid to the marriage feast.\nAnd he shall go before his face in the spirit and power of Elijah, to turn the hearts of the fathers to the children, and the disobedient to walk in the wisdom of the just; to make ready for the Lord a people prepared for him.\nNow I think, What more could she have said?\n“All right,” said Charlotte, “I’m next.”\nShe climbed up and made another attachment, right next to the first.\nof sin, because they believe not on me;\nThis is he of whom I said, After me cometh a man who is become before me: for he was before me.\nIf any man teacheth a different doctrine, and consenteth not to sound words, even the words of our Lord Jesus Christ, and to the doctrine which is according to godliness;\nThere was a woodpile, and I stoked the fire and motioned for Smith and the boys to come on in.\nOne day he realized the pool seemed smaller.\nAnd he called to him a little child, and set him in the midst of them,\nAnd they, when they heard it, lifted up their voice to God with one accord, and said, O Lord, thou that didst make the heaven and the earth and the sea, and all that in them is:\nHaving therefore obtained the help that is from God, I stand unto this day testifying both to small and great, saying nothing but what the prophets and Moses did say should come;\nAnd many false prophets shall arise, and shall lead many astray.\nAnd they indeed have been made priests many in number, because that by death they are hindered from continuing:\nAnd in their mouth was found no lie: they are without blemish.\nI say unto thee, Thou shalt by no means come out thence, till thou have paid the very last mite. \nWilbur’s new home was in the lower part of the barn, directly underneath the cows.\nNow the birth of Jesus Christ was on this wise: When his mother Mary had been betrothed to Joseph, before they came together she was found with child of the Holy Spirit.\nThe laurel could feel the cold too, for they were beginning to curl their leaves into themselves in long rolls that looked no more alive than strips of deer jerky.\nFinally, my brethren, rejoice in the Lord. To write the same things to you, to me indeed is not irksome, but for you it is safe.\nWet wrinkled boots lay with the open ends to the blaze in hopeless effort to render them dry, if only briefly, so that in the morning the boys might not have to start the day with cold sodden footwear.\nBut whereunto shall I liken this generation? It is like unto children sitting in the marketplaces, who call unto their fellows\nBut of the rest durst no man join himself to them: howbeit the people magnified them;\nCan you imagine this forest without decomposers?\nHe would turn his head slightly and blink his long eye-lashes.\nNow there were with us seven brethren: and the first married and deceased, and having no seed left his wife unto his brother;\nby the way which he dedicated for us, a new and living way, through the veil, that is to say, his flesh;\nFor our wrestling is not against flesh and blood, but against the principalities, against the powers, against the world-rulers of this darkness, against the spiritual hosts of wickedness in the heavenly places.\nHe began imitating Wilbur’s voice.\nWhen Lieutenant Smith had failed to uncover the hatchets in his search of the shelters, the men figured they were not responsible for calling attention to them.\n“Are all of you going?” asked Wilbur.\nJesus answered them, I told you, and ye believe not: the works that I do in my Father’s name, these bear witness of me.\nBe subject therefore unto God; but resist the devil, and he will flee from you.\nWhile Wilbur ate, Lurvy fetched a hammer and some 8-penny nails and nailed the board in place.\nThe news spread.\nAnd he that keepeth his commandments abideth in him, and he in him. And hereby we know that he abideth in us, by the Spirit which he gave us. \nTherefore let us also, seeing we are compassed about with so great a cloud of witnesses, lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us,\nAnd working together with him we entreat also that ye receive not the grace of God in vain\nThey are redwood trees.\nSpearfinger\nAfter a bit she spoke.\nHe took the cover off the candy box.\nThe next day he did not even get up off the ground where he had slept.\nAnd while he was sitting on the judgment-seat, his wife sent unto him, saying, Have thou nothing to do with that righteous man; for I have suffered many things this day in a dream because of him.\nSome of his disciples therefore said one to another, What is this that he saith unto us, A little while, and ye behold me not; and again a little while, and ye shall see me: and, Because I go to the Father?\nBut as ye abound in everything, in faith, and utterance, and knowledge, and in all earnestness, and in your love to us, see that ye abound in this grace also.\nAnd he said, The Jews have agreed to ask thee to bring down Paul tomorrow unto the council, as though thou wouldest inquire somewhat more exactly concerning him.\nShe stared at me hard, lips parted.\nIf there were something that was less than nothing, then nothing would not be nothing, it would be something- even though it’s just a very little bit of something.\n“Well, I am pretty,” replied Charlotte.\nThrough a small window, a faint gleam appeared.\nI played seldom and carefully and quit early, for I did not care to lose much money.\nAnd it came to pass, that he abode many days in Joppa with one Simon a tanner. \nNow in a great house there are not only vessels of gold and of silver, but also of wood and of earth; and some unto honor, and some unto dishonor.\nBut I have this against thee, that thou didst leave thy first love.\nThe geese gathered around to see the fun, and so did the sheep and lambs.\n“You children be quiet till we get the pig unloaded,” said Mrs. Arable.\nBut you have saved me, Charlotte, and I would gladly give my life for you — I really would.”\nDead leaves and black humus and pale pipe plants broke apart under their struggling feet.\nSmith did not have a response, and when the boys returned leading the horses, I turned my attention to the food.\n Oh come back! he cried and cried\nAnd I saw when the Lamb opened one of the seven seals, and I heard one of the four living creatures saying as with a voice of thunder, Come.\nbut whosoever shall blaspheme against the Holy Spirit hath never forgiveness, but is guilty of an eternal sin:\nin whom each several building, fitly framed together, groweth into a holy temple in the Lord;\nI'm getting sleepy.\nSkim milk, crusts, middlings, bits of doughnuts, wheat cakes with drops of maple syrup sticking to them, potato skins, leftover custard pudding with raisins, and bits of Shredded Wheat.\n“Play? ” said Templeton, twirling his whiskers.\nBut when Gallio was proconsul of Achaia, the Jews with one accord rose up against Paul and brought him before the judgment-seat,\nWasseton had darted all the squirrels within a mile of the camp with his blowgun.\nand ye will not come to me, that ye may have life.\nYe have sent unto John, and he hath borne witness unto the truth.\nBut if a revelation be made to another sitting by, let the first keep silence.\navoiding this, that any man should blame us in the matter of this bounty which is ministered by us:\nBut when the fruit is ripe, straightway he putteth forth the sickle, because the harvest is come.\nBut if ye believe not his writings, how shall ye believe my words?\nFor the bishop must be blameless, as God’s steward; not self-willed, not soon angry, no brawler, no striker, not greedy of filthy lucre;\nThe spider, however, stayed wide awake, gazing affectionately at him and making plans for his future.\nThey knew that school would soon begin again.\nAnd they that fed them fled, and went away into the city, and told everything, and what was befallen to them that were possessed with demons.\nWhen she had thus said, she turned herself back, and beholdeth Jesus standing, and knew not that it was Jesus.\nIf therefore the uncircumcision keep the ordinances of the law, shall not his uncircumcision be reckoned for circumcision?\n“I know what I'm doing.\nBut one hath somewhere testified, saying, What is man, that thou art mindful of him? Or the son of man, that thou visitest him?\nThe Son of man is come eating and drinking; and ye say, Behold, a gluttonous man, and a winebibber, a friend of publicans and sinners!\nPerceive ye not, that whatsoever goeth into the mouth passeth into the belly, and is cast out into the draught?\n“Let’s build a tree house,” suggested Avery.\nWhen he was fifty, they say, he decided to capture the people's voices in writing.\nWhen you go for a walk in the woods, what do you look at?\nThe geese cheered.\nSaith the Lord, who maketh these things known from of old.\nAs therefore the tares are gathered up and burned with fire; so shall it be in the end of the world.\nTwist and turn!” \nJesus answered and said unto him, Verily, verily, I say unto thee, Except one be born anew, he cannot see the kingdom of God.\nThen spake Jesus to the multitudes and to his disciples,\nI am the vine, ye are the branches: He that abideth in me, and I in him, the same beareth much fruit: for apart from me ye can do nothing.\nEvery one that falleth on that stone shall be broken to pieces; but on whomsoever it shall fall, it will scatter him as dust.\nBut Peter followed him afar off, unto the court of the high priest, and entered in, and sat with the officers, to see the end.\nLittle children, it is the last hour: and as ye heard that antichrist cometh, even now have there arisen many antichrists; whereby we know that it is the last hour.\nwho shall suffer punishment, even eternal destruction from the face of the Lord and from the glory of his might,\nWilbur often thought of Charlotte.\nAnd no one in the heaven, or on the earth, or under the earth, was able to open the book, or to look thereon.\nWe’re famous for our moisture, I said.\nHe came over and sat down.\nI charge thee in the sight of God, who giveth life to all things, and of Christ Jesus, who before Pontius Pilate witnessed the good confession;\nand he would not suffer that any man should carry a vessel through the temple.\nAnd ye became imitators of us, and of the Lord, having received the word in much affliction, with joy of the Holy Spirit;\nfor true and righteous are his judgments; for he hath judged the great harlot, her that corrupted the earth with her fornication, and he hath avenged the blood of his servants at her hand.\nWhile the party went on in an adjoining room, she and I circled awkwardly around a long dark mahogany table burdened with china platters filled with various delicate foods.\nWhen the cooking was done, the squirrels looked awfully little with the hair and skin off, but they were sizzling brown and shining with grease.\nFor he that is mighty hath done to me great things; And holy is his name.\nThis thou knowest, that all that are in Asia turned away from me; of whom are Phygelus and Hermogenes.\n“Wilbur!” she called.\nEverybody walked toward Wilbur and Wilbur didn’t know what to do.\nThis fungus lives on a dead tree.\nHe knew Templeton was getting soaked, out there in the pouring rain, but even that didn’t comfort him.\nand she lifted up her voice with a loud cry, and said, Blessed art thou among women, and blessed is the fruit of thy womb.\nBut now apart from the law a righteousness of God hath been manifested, being witnessed by the law and the prophets;\nSo therefore whosoever he be of you that renounceth not all that he hath, he cannot be my disciple.\nI looked at the final few leaves on the trees to see the way the wind moved, and then I looked at Smith, who kept his scope to his eye and made no attempt to keep the boys from lighting up, so I motioned back to them with both hands like pushing something down to the ground and they stopped.\nAnd it came to pass, as he was praying in a certain place, that when he ceased, one of his disciples said unto him, Lord, teach us to pray, even as John also taught his disciples.\nSo, my dad, my brother, and I followed the dog.\n“You asked for words and I brought them.\nWhy should you worry about trapping food? Wilbur sighed.\n“Come back, children!” he cried.\nVIII. A Talk At Home  \nand saw him saying unto me, Make haste, and get thee quickly out of Jerusalem; because they will not receive of thee testimony concerning me.\nMr. Zuckerman took the medal from Wilbur’s neck and hung it on a nail over the pigpen, where visitors could examine it.\nFor our citizenship is in heaven; whence also we wait for a Saviour, the Lord Jesus Christ:\n“Fern,” said Mr. Arable, “I know more about raising a litter of pigs than you do.\nAnd they that did eat were four thousand men, besides women and children.\nThe days were all alike, Smith said.\nBut in the stories, the men had always first wounded the animal with bow or gun and then let it bleed awhile to weaken.\nThat year, getups of Asian flavor were predominant for both men and women, though there were also the usual scatterings of pirates and gauchos and Indian maidens and chiefs, so I found an unexpected use for my purple turban and tall moccasins.\nbut they that are accounted worthy to attain to that world, and the resurrection from the dead, neither marry, nor are given in marriage:\nThe winter ended at last.\nBecause of the tender mercy of our God, Whereby the dayspring from on high shall visit us,\nJesus therefore cried in the temple, teaching and saying, Ye both know me, and know whence I am; and I am not come of myself, but he that sent me is true, whom ye know not.\nin the word of truth, in the power of God; by the armor of righteousness on the right hand and on the left,\nThis beginning of his signs did Jesus in Cana of Galilee, and manifested his glory; and his disciples believed on him.\n“That crazy rat!” thought Wilbur.\nAsmeret has found a beautiful fungus.\nCharley stood and listened to the cracking of limbs and imagined the working of the massive hams and buttocks.\nThe killers.\nAnd as many as receive you not, when ye depart from that city, shake off the dust from your feet for a testimony against them.\nHe was like a lot of them down on the Nation; he thought becoming as white as he could would protect him.\nAlright, said rabbit, let's go.\nand saying, Sirs, why do ye these things? We also are men of like passions with you, and bring you good tidings, that ye should turn from these vain things unto a living God, who made the heaven and the earth and the sea, and all that in them is:\nThe woman answered and said unto him, I have no husband. Jesus saith unto her, Thou saidst well, I have no husband:\nAnd leaving the multitude, they take him with them, even as he was, in the boat. And other boats were with him.\nIt was a splendid outfit.\nI want to lay them low on the ground.\nfor he was yet in the loins of his father, when Melchizedek met him.\n“Let's see you do it,” said Charlotte.\n“I want to see you in action, to see if you are radiant.”\nThen she climbed the side of the crate and hid herself inside a knothole in the top board.\nAs many as desire to make a fair show in the flesh, they compel you to be circumcised; only that they may not be persecuted for the cross of Christ.\nNow when Simon saw that through the laying on of the apostles’ hands the Holy Spirit was given, he offered them money,\nEven so it is not the will of your Father who is in heaven, that one of these little ones should perish.\nMy mother was a trapper before me.\nAnd no one hath ascended into heaven, but he that descended out of heaven, even the Son of man, who is in heaven.\nAnd every island fled away, and the mountains were not found.\nAnd I do all things for the gospel’s sake, that I may be a joint partaker thereof.\nBut there were certain of the scribes sitting there, and reasoning in their hearts,\nBut I say, Walk by the Spirit, and ye shall not fulfil the lust of the flesh.\nNever hurry and never worry!\nHe saith unto them, Moses for your hardness of heart suffered you to put away your wives: but from the beginning it hath not been so.\nAnd they said unto him, Lord, he hath ten pounds.\nWilbur breathed deeply.\nThe husbandman that laboreth must be the first to partake of the fruits.\nAll his clothes were made of green leaves, big sycamore and poplar leaves fashioned so that they lapped one another like snake scales, and he had his head covered with a broad hat of waxy laurel leaves.\nFor the time is come for judgment to begin at the house of God: and if it begin first at us, what shall be the end of them that obey not the gospel of God?\nArt thou bound unto a wife? seek not to be loosed. Art thou loosed from a wife? seek not a wife.\nAnd an angel of the Lord stood by them, and the glory of the Lord shone round about them: and they were sore afraid.\nBlessed are ye, when men shall hate you, and when they shall separate you from their company, and reproach you, and cast out your name as evil, for the Son of man’s sake.\nI wish I’d never laid eyes on them.\nSee how the smaller ones swim along the side, not too close, not too deep, and not too high.\nAnd they gave heed to him, because that of long time he had amazed them with his sorceries.\nThe soldier boys ate their supper and then tried to get in an hour or two of sleep, but they just rolled around in their blankets and muttered to one another.\nWilbur was frantic.\nAnd the most part of the multitude spread their garments in the way; and others cut branches from the trees, and spread them in the way.\nWe reckon therefore that a man is justified by faith apart from the works of the law.\nWe being Jews by nature, and not sinners of the Gentiles,\nBeaver had to gnaw the tree the trap was hooked to.\nPut on the whole armor of God, that ye may be able to stand against the wiles of the devil.\n“Charlotte is a spider?” asked Fern’s mother.\nAnd beginning from Moses and from all the prophets, he interpreted to them in all the scriptures the things concerning himself.\nThe big fish looked at him from one end to the other, and said, Why do they call you Littlefish?\nBut he turned, and said unto Peter, Get thee behind me, Satan: thou art a stumbling-block unto me: for thou mindest not the things of God, but the things of men.\nSmith started to get his back up and then thought better of it.\nAnd he spake a parable unto those that were bidden, when he marked how they chose out the chief seats; saying unto them,\nHe was tired from his wakeful night and from the excitement of meeting someone for the first time.\nNo man hath seen God at any time; the only begotten Son, who is in the bosom of the Father, he hath declared him.\nAnd behold, there was a man in Jerusalem, whose name was Simeon; and this man was righteous and devout, looking for the consolation of Israel: and the Holy Spirit was upon him.\nAt this hour, no people were around the pigpen, so the rat and the spider and the pig were by themselves.\nBut Jesus said, Suffer the little children, and forbid them not, to come unto me: for to such belongeth the kingdom of heaven.\nJesus said unto them, If God were your Father, ye would love me: for I came forth and am come from God; for neither have I come of myself, but he sent me.\nFor if there come into your synagogue a man with a gold ring, in fine clothing, and there come in also a poor man in vile clothing;\nEven unto this present hour we both hunger, and thirst, and are naked, and are buffeted, and have no certain dwelling-place;\nThey were looking for a friend of theirs that went to Chapel Hill, but they’d never actually been there before, so they were looking for directions.\nFear not therefore: ye are of more value than many sparrows.\nThis is the covenant that I will make with them After those days, saith the Lord: I will put my laws on their heart, And upon their mind also will I write them; then saith he,\nThis is a snake.\nAnd straightway the man was made whole, and took up his bed and walked. Now it was the sabbath on that day.\nHe closed his eyes and was silent for a while.\nWhy bother?\nit was said unto her, The elder shall serve the younger.\nHe that speaketh in a tongue edifieth himself; but he that prophesieth edifieth the church.\nThey sought therefore for Jesus, and spake one with another, as they stood in the temple, What think ye? That he will not come to the feast?\nJesus therefore said unto Peter, Put up the sword into the sheath: the cup which the Father hath given me, shall I not drink it?\n“Ooomp!” he grunted.\nAnd he marvelled because of their unbelief. And he went round about the villages teaching.\nIf he were Negro that would make him an octoroon.\nCharlotte gave her web a twitch and moodily watched it sway.\nAnd it was said unto them that they should not hurt the grass of the earth, neither any green thing, neither any tree, but only such men as have not the seal of God on their foreheads.\nLet love be without hypocrisy. Abhor that which is evil; cleave to that which is good.\nSo the distance to the West was entirely abstract, as was the length of time it might take to traverse such unimagined space and the danger that might wait along the way.\nThis Moses whom they refused, saying, Who made thee a ruler and a judge? him hath God sent to be both a ruler and a deliverer with the hand of the angel that appeared to him in the bush.\nI must have eaten the remains of thirty lunches.\n“Sure. Sure I do,” said Lurvy.\nIf they'd hang head-down at the top of the thing and wait quietly, maybe something good would come along.\nThen he walked to the sink and washed his hands and dried them on the roller towel.\nHe crept along till he reached the egg sac.\nAnd turning to the woman, he said unto Simon, Seest thou this woman? I entered into thy house, thou gavest me no water for my feet: but she hath wetted my feet with her tears, and wiped them with her hair.\nWhat shall we say then? Shall we continue in sin, that grace may abound?\nSummarize the relevant sections, please.\nI’m not as ﬂashy as some, but I’ll do.\nI exhorted Titus, and I sent the brother with him. Did Titus take any advantage of you? walked we not in the same spirit? walked we not in the same steps?\nAnd for about the time of forty years as a nursing-father bare he them in the wilderness.\n“Oh, yes indeed,” said Wilbur.\nThen saith he to Thomas, Reach hither thy finger, and see my hands; and reach hither thy hand, and put it into my side: and be not faithless, but believing.\nWe therefore ought to welcome such, that we may be fellow-workers for the truth.\nAnd he said unto them, Extort no more than that which is appointed you.\nBut when Jacob heard that there was grain in Egypt, he sent forth our fathers the first time.\nStopping by Woods on a Snowy Evening\nCarrying a bottle of milk, Fern sat down under the apple tree inside the yard.\nNext day, if there was no thunder shower, all hands would help rake and pitch and load, and the hay would be hauled to the barn in the high hay wagon, with Fern and Avery riding at the top of the load.\nAnd other sheep I have, which are not of this fold: them also I must bring, and they shall hear my voice; and they shall become one flock, one shepherd.\n“Who's Charlotte?”\nAnd he gave him the covenant of circumcision: and so Abraham begat Isaac, and circumcised him the eighth day; and Isaac begat Jacob, and Jacob the twelve patriarchs.\nAnd when Jesus came to the place, he looked up, and said unto him, Zacchæus, make haste, and come down; for to-day I must abide at thy house.\nThen they built a large fire near the trail and hid in the laurels.  \nIt was a deep throw, all the strength in his old stout body expressed in a flow of movements calibrated so that the hatchet would make two revolutions in air before burying its blade in the bear with great force.\nAnd then he said the last prayer before the kill: Let the leaves be covered with clotted blood, and may it never cease to be so.\nIn the camps, some of the women killed themselves.\nfor they could not endure that which was enjoined, If even a beast touch the mountain, it shall be stoned;\nand how shall they preach, except they be sent? even as it is written, How beautiful are the feet of them that bring glad tidings of good things!\nAnd it came to pass, that he was sitting at meat in his house, and many publicans and sinners sat down with Jesus and his disciples: for there were many, and they followed him.\nHonor all men. Love the brotherhood. Fear God. Honor the king.\nShe would not even accept an embrace in the dooryard but stood all rigid and looking off toward the river with her hands clasped tight behind her back.\nSheep?”\nMartha therefore, when she heard that Jesus was coming, went and met him: but Mary still sat in the house.\nThey jingled and crashed and thumped their way into camp and everyone in the two shelters woke up and rose fully dressed.\nBuckets with sour mash sticking to them, tin cans containing particles of tuna fish, greasy paper bags stuffed with rotten...”\nFaithful is the saying, and concerning these things I desire that thou affirm confidently, to the end that they who have believed God may be careful to maintain good works. These things are good and profitable unto men:\nTraversing the long dark upstairs halls, keeping my bearings by brushing fingertips against the plaster walls.\nshe said.\nAnd be not afraid of them that kill the body, but are not able to kill the soul: but rather fear him who is able to destroy both soul and body in hell.\nThen Herod, when he saw that he was mocked of the Wise-men, was exceeding wroth, and sent forth, and slew all the male children that were in Bethlehem, and in all the borders thereof, from two years old and under, according to the time which he had exactly learned of the Wise-men.\nI need new ideas for the web.\nBear and everyone who had taken me in as a boy, walking away to the West.\nInstead, he walked solemnly back up to the house and spoke to his wife.\nShe walked on, wobbling and uncertain, the arches of her feet shaping to the round stones of the river bottom.\nAnd he cried and said, Father Abraham, have mercy on me, and send Lazarus, that he may dip the tip of his finger in water, and cool my tongue; for I am in anguish in this flame.\nWilbur trotted over to the darkest corner of his pen and threw himself down.\nI was daily with you in the temple teaching, and ye took me not: but this is done that the scriptures might be fulfilled.\nBear had set his mind and heart on staying in his mountains, and nothing could change his mind, certainly not government decrees or new lines drawn on maps or old lines erased.\nWhat wilt thou that I should do unto thee? And he said, Lord, that I may receive my sight.\nFor if, while we were enemies, we were reconciled to God through the death of his Son, much more, being reconciled, shall we be saved by his life;\nAnd Jesus said unto them, Can ye make the sons of the bride-chamber fast, while the bridegroom is with them?\nHe saved others; himself he cannot save. He is the King of Israel; let him now come down from the cross, and we will believe on him.\nsaying, Fear not, Paul; thou must stand before Cæsar: and lo, God hath granted thee all them that sail with thee.\nFor the priesthood being changed, there is made of necessity a change also of the law.\nAbsolution was outside my range of talents or responsibilities.\nAs is the earthy, such are they also that are earthy: and as is the heavenly, such are they also that are heavenly.\nThe log fort sitting dark and squat in the middle like a lump of black wax impressed with the seal of fate.\nHe wrapped a tape measure around my head and said, Excellent.\nAnd Jesus went up into the mountain, and there he sat with his disciples.\nand kept back part of the price, his wife also being privy to it, and brought a certain part, and laid it at the apostles’ feet.\nAnd I had done my best to be a warrior.\nFor as the woman is of the man, so is the man also by the woman; but all things are of God.\nI was just assigning theoretical parts for the killers.\nWhen he paused, he could hear them coming.\nThou wilt say then unto me, Why doth he still find fault? For who withstandeth his will?\nThere, where rabbit and squirrel stood, Beaver arrived.\nCharley and I talked and Smith sat listening as if he expected to catch a word now and then.\nPretty soon quite a crowd had gathered.\nAnd he charged them that they should tell no man of him.\nYea, I testify again to every man that receiveth circumcision, that he is a debtor to do the whole law.\nThe queen of the south shall rise up in the judgment with the men of this generation, and shall condemn them: for she came from the ends of the earth to hear the wisdom of Solomon; and behold, a greater than Solomon is here.\nAnd when he rose up from his prayer, he came unto the disciples, and found them sleeping for sorrow,\n“You’ve been very helpful,” Charlotte said.\nFor when ye were servants of sin, ye were free in regard of righteousness.\nI rubbed a mixture of dried sage and salt and red pepper between my palms and let the dust fall over the plucked skins.\nFor even as Jonah became a sign unto the Ninevites, so shall also the Son of man be to this generation.\nHomer bought the pig, and ever since it left our place Fern has been going to her uncle’s to be near it.”\nwhat is it, Beaver? said Rabbit.\nFor if the word spoken through angels proved stedfast, and every transgression and disobedience received a just recompense of reward;\nAnd Pilate called together the chief priests and the rulers and the people,\nThe whole bunch of followers smelled of armpits and ramps.\nThe deer and bear and turkey are on the way to wherever the bison and elk already went.\nThe owl’s face as big as his own and pale as the moon.\nFor the love of money is a root of all kinds of evil: which some reaching after have been led astray from the faith, and have pierced themselves through with many sorrows.\nIs there anything you need?”\nI wanted to run far away from the kind of fight Bear was proposing.\nCharley made an exhaling noise between his teeth and lips like a long string of F’s.\n“Ho, ho.\nYet seek ye his kingdom, and these things shall be added unto you.\nWhen the evil magic of Spearfinger was finally destroyed, healing magic was released.  \nwhich are a shadow of the things to come; but the body is Christ’s.\nOf this man’s seed hath God according to promise brought unto Israel a Saviour, Jesus;\nPaul, an apostle of Christ Jesus through the will of God, and Timothy our brother, unto the church of God which is at Corinth, with all the saints that are in the whole of Achaia:\nAnd one Ananias, a devout man according to the law, well reported of by all the Jews that dwelt there,\nIt sounded like a puppy barking.\nHowever, I don’t want you to worry about it—you might lose weight. We'll leave it this way: I'll come to the Fair if I possibly can.”\nand one of you say unto them, Go in peace, be ye warmed and filled; and yet ye give them not the things needful to the body; what doth it profit?\n“Lurvy!” he called.\nAnd when they had done this, they inclosed a great multitude of fishes; and their nets were breaking;\nAnd I saw, and behold, the Lamb standing on the mount Zion, and with him a hundred and forty and four thousand, having his name, and the name of his Father, written on their foreheads.\nThe Jews therefore said, Forty and six years was this temple in building, and wilt thou raise it up in three days?\nAnd they said, Believe on the Lord Jesus, and thou shalt be saved, thou and thy house.\nthat ye abstain from things sacrificed to idols, and from blood, and from things strangled, and from fornication; from which if ye keep yourselves, it shall be well with you. Fare ye well.\nThat Cowee house was old, from the time when they still buried dead loved ones in the dirt floor, but Charley could not remember exactly whose bones had rested near as a lover beneath his low sleeping platform.\nEven as it is written in Isaiah the prophet, Behold, I send my messenger before thy face, Who shall prepare thy way;\nThe raw new city amounted to not much.\nShe raised the pig on a bottle and I bought him from her when he was a month old.”\nAnd he spake unto them this parable, saying,\nbut as it is, I wrote unto you not to keep company, if any man that is named a brother be a fornicator, or covetous, or an idolater, or a reviler, or a drunkard, or an extortioner; with such a one no, not to eat.\nThen she put on her prettiest dress because she knew she would see boys at the Fair. Mrs. Arable scrubbed the back of Avery's neck, and wet his hair, and parted it, and brushed it down hard till it stuck to the top of his head—all but about six hairs that stood straight up. Avery put on clean underwear, clean blue jeans, and a clean shirt. Mr. Arable dressed, ate breakfast, and then went out and polished his truck. He had offered to drive everybody to the Fair, including Wilbur.\nShe knew that she couldn’t help Wilbur much longer.\nThey say unto him, He will miserably destroy those miserable men, and will let out the vineyard unto other husbandmen, who shall render him the fruits in their seasons.\nFor who, when they heard, did provoke? nay, did not all they that came out of Egypt by Moses?\nFor we hear of some that walk among you disorderly, that work not at all, but are busybodies.\nJesus therefore answereth, He it is, for whom I shall dip the sop, and give it him. So when he had dipped the sop, he taketh and giveth it to Judas, the son of Simon Iscariot.\nBlossom, the girl he had redeemed from slavery, was among the people in the townhouse.\nNone of the others, not even the goose, noticed that she was at work.\nOne day the bones will be soil, too.\nAnd I John am he that heard and saw these things. And when I heard and saw, I fell down to worship before the feet of the angel that showed me these things.\n“How about ‘Terrific, terrific, terrific’?” asked the goose.\nAnd Simon and they that were with him followed after him;\nGo home, Lieutenant, I said.\nAnd immediately he received his sight, and followed him, glorifying God: and all the people, when they saw it, gave praise unto God. \nhaving the eyes of your heart enlightened, that ye may know what is the hope of his calling, what the riches of the glory of his inheritance in the saints,\nPaul, and Silvanus, and Timothy, unto the church of the Thessalonians in God the Father and the Lord Jesus Christ: Grace to you and peace.\n“And don’t point!”\nAnd they heard a great voice from heaven saying unto them, Come up hither. And they went up into heaven in the cloud; and their enemies beheld them.\nand from among your own selves shall men arise, speaking perverse things, to draw away the disciples after them.\nBe subject to every ordinance of man for the Lord’s sake: whether to the king, as supreme;\nThe kingdom of heaven is like unto a treasure hidden in the field; which a man found, and hid; and in his joy he goeth and selleth all that he hath, and buyeth that field.\nAnd all the multitude kept silence; and they hearkened unto Barnabas and Paul rehearsing what signs and wonders God had wrought among the Gentiles through them.\nHe therefore answered, Whether he is a sinner, I know not: one thing I know, that, whereas I was blind, now I see.\nClaire reached the front door, crossed the porch, walked down the lawn to the riverbank.\n“What makes you sound so down-hearted?\nNow there was a certain disciple at Damascus, named Ananias; and the Lord said unto him in a vision, Ananias. And he said, Behold, I am here, Lord.\nWilbur raced to the end of his yard.\nand Jacob begat Joseph the husband of Mary, of whom was born Jesus, who is called Christ.\nAnd as with any job, you can become accustomed to it.\nSoon each was as big as a BB shot.\nWhy was not this ointment sold for three hundred shillings, and given to the poor?\nAnd they took him, and cast him forth out of the vineyard, and killed him.\nAnd when he had left speaking, he said unto Simon, Put out into the deep, and let down your nets for a draught.\nthou oughtest therefore to have put my money to the bankers, and at my coming I should have received back mine own with interest.\nRemember ye not, that, when I was yet with you, I told you these things?\nThen she lifted the lid of the carton.\nAnd they come to the house of the ruler of the synagogue; and he beholdeth a tumult, and many weeping and wailing greatly.\nAnd the fourth angel sounded, and the third part of the sun was smitten, and the third part of the moon, and the third part of the stars; that the third part of them should be darkened, and the day should not shine for the third part of it, and the night in like manner.\namong whom we also all once lived in the lusts of our flesh, doing the desires of the flesh and of the mind, and were by nature children of wrath, even as the rest:—\nCharlotte tore quite a section out of her web, leaving an open space in the middle.\nAnd it came to pass, that, while Apollos was at Corinth, Paul having passed through the upper country came to Ephesus, and found certain disciples:\nYou know that.\nWhat's the trouble with your pig?”\nWhat? was it from you that the word of God went forth? or came it unto you alone?\nBut I took my clan membership to heart.\nwhose are the fathers, and of whom is Christ as concerning the flesh, who is over all, God blessed for ever. Amen.\nPut on therefore, as God’s elect, holy and beloved, a heart of compassion, kindness, lowliness, meekness, longsuffering;\nVerily, verily, I say unto you, He that believeth on me, the works that I do shall he do also; and greater works than these shall he do; because I go unto the Father.\n“five hundred and fourteen of them,” she replied.\nJesus saith unto him, I am the way, and the truth, and the life: no one cometh unto the Father, but by me.\nfor not the hearers of the law are just before God, but the doers of the law shall be justified;\nFor he was amazed, and all that were with him, at the draught of the fishes which they had taken;\nAnd this is my covenant unto them, When I shall take away their sins.\nIt's wet and dark there.\nfor indeed he was sick nigh unto death: but God had mercy on him; and not on him only, but on me also, that I might not have sorrow upon sorrow.\nAnd behold, one of them that were with Jesus stretched out his hand, and drew his sword, and smote the servant of the high priest, and struck off his ear.\nThy kingdom come. Thy will be done, as in heaven, so on earth.\nAnd behold, there was a great earthquake; for an angel of the Lord descended from heaven, and came and rolled away the stone, and sat upon it.\nEven on the most beautiful days in the whole year — the days when summer is changing into fall — the crickets spread the rumor of sadness and change.\nHe never felt lonely when she was near.\nHis stomach was still swollen from last night’s gorge.\nBut he that prophesieth speaketh unto men edification, and exhortation, and consolation.\nAnd he said unto them, Elijah indeed cometh first, and restoreth all things: and how is it written of the Son of man, that he should suffer many things and be set at nought?\nBut as to Israel he saith, All the day long did I spread out my hands unto a disobedient and gainsaying people. \nOn warm afternoons,  I just pull a little straw over the eggs and go out for a walk.” Wilbur yawned and went back to sleep. In his dreams he heard again the voice saying, “I'll be a friend to you. Go to sleep—-you'll see me in the morning.”\nI judged the heels too high to be strictly proper for a man but kept that opinion to myself and occupied my mind, during the round of praise from the cronies, in looking at Jackson’s head and thinking that, between them, Jackson and Calhoun had the two most alarming manes of hair I had ever seen on white men.\nFor the law was given through Moses; grace and truth came through Jesus Christ.\nBut thou, why dost thou judge thy brother? or thou again, why dost thou set at nought thy brother? for we shall all stand before the judgment-seat of God.\nBut that was only a dream.\nBut she answered and saith unto him, Yea, Lord; even the dogs under the table eat of the children’s crumbs.\nfor which things’ sake cometh the wrath of God upon the sons of disobedience:\nOne man esteemeth one day above another: another esteemeth every day alike. Let each man be fully assured in his own mind.\nWoe unto you Pharisees! for ye love the chief seats in the synagogues, and the salutations in the marketplaces.\nEvery scripture inspired of God is also profitable for teaching, for reproof, for correction, for instruction which is in righteousness:\nCharlotte had worries of her own, but she kept quiet about them.\nSeveral dozen fugitives from at least three generations.\n“It’s a label off an old shirt.”\nWe know that whosoever is begotten of God sinneth not; but he that was begotten of God keepeth himself, and the evil one toucheth him not.\nDays on horseback east to the nearest town with stage service.\nNo one was with her when she died.\nGoing to water.\nto wit, that God was in Christ reconciling the world unto himself, not reckoning unto them their trespasses, and having committed unto us the word of reconciliation.\nWhether any inquire about Titus, he is my partner and my fellow-worker to you-ward; or our brethren, they are the messengers of the churches, they are the glory of Christ.\n“Take that frog out!” ordered Fern.\n“How’s this?” he asked, showing the ad to Charlotte.\nEast, west. North, south.\nfor he looked for the city which hath the foundations, whose builder and maker is God.\nIt made her happy just to be near the pig, and it made Wilbur happy to know that she was sitting there, right outside his pen.\nrejoicing in hope; patient in tribulation; continuing stedfastly in prayer;\nThey shall hunger no more, neither thirst any more; neither shall the sun strike upon them, nor any heat:\nAnd as they heard these things, he added and spake a parable, because he was nigh to Jerusalem, and because they supposed that the kingdom of God was immediately to appear.\nLurvy returned with cold water and dashed it on Wilbur.\nThe asparagus patch looked like a silver forest.\nAnd always, night and day, in the tombs and in the mountains, he was crying out, and cutting himself with stones.\nAnd as Peter was beneath in the court, there cometh one of the maids of the high priest;\nand he looked upon Jesus as he walked, and saith, Behold, the Lamb of God!\nSoldiers on horseback, wagons loaded with provisions under their canvas coverlids, Indians and their slaves following afoot behind, children walking and babies being carried.\nShe swooped down and threw great masses of wrapping material around the fish and fought bravely to capture it.”\nThe barn smelled good.\nThen another.\nWherefore it behooved him in all things to be made like unto his brethren, that he might become a merciful and faithful high priest in things pertaining to God, to make propitiation for the sins of the people.\nAgain, the devil taketh him unto an exceeding high mountain, and showeth him all the kingdoms of the world, and the glory of them;\nThere shall be the weeping and the gnashing of teeth, when ye shall see Abraham, and Isaac, and Jacob, and all the prophets, in the kingdom of God, and yourselves cast forth without.\nThe children ran for the kitchen.\nSo all the generations from Abraham unto David are fourteen generations; and from David unto the carrying away to Babylon fourteen generations; and from the carrying away to Babylon unto the Christ fourteen generations.\nHow I hate a rat!”\nBut we desire to hear of thee what thou thinkest: for as concerning this sect, it is known to us that everywhere it is spoken against.\nAnd there were many lepers in Israel in the time of Elisha the prophet; and none of them was cleansed, but only Naaman the Syrian.\nBut when Silas and Timothy came down from Macedonia, Paul was constrained by the word, testifying to the Jews that Jesus was the Christ.\nFor yourselves know how ye ought to imitate us: for we behaved not ourselves disorderly among you;\n“One day just like another,” he groaned.\n“Go to the Fair, Templeton.\nand Judas the son of James, and Judas Iscariot, who became a traitor;\nAnd every one that heareth these words of mine, and doeth them not, shall be likened unto a foolish man, who built his house upon the sand:\nHe gives his harness bells a shake\n“You would live longer,” said the old sheep, “if you ate less.”\nSince I was there to represent the Cherokee, I dressed the part.\nAnd one of the malefactors that were hanged railed on him, saying, Art not thou the Christ? save thyself and us.\nNext morning, Wilbur arose and stood beneath the web.\nAnd Jesus said unto him, Receive thy sight: thy faith hath made thee whole.\nor saith he it assuredly for our sake? Yea, for our sake it was written: because he that ploweth ought to plow in hope, and he that thresheth, to thresh in hope of partaking.\nWolf went to where the trap lay and stepped in it.\nAnd he that sitteth on the throne said, Behold, I make all things new. And he saith, Write: for these words are faithful and true.\nand he cried with a great voice, as a lion roareth: and when he cried, the seven thunders uttered their voices.\nDo not they blaspheme the honorable name by which ye are called?\nIt felt funny on his tongue and made him drool a bit.\nBut he looked upon them, and said, What then is this that is written, The stone which the builders rejected, The same was made the head of the corner?\nMen had done such things before, or at least people told stories of killing bear in close combat.\nseeing that we, who are many, are one bread, one body: for we all partake of the one bread.\nCherokees call the chickadee “truth teller”.\nOne fine sunny morning, after breakfast, Wilbur stood watching his precious sac.\nTo whom I answered, that it is not the custom of the Romans to give up any man, before that the accused have the accusers face to face, and have had opportunity to make his defence concerning the matter laid against him.\nYou will be okay Littlefish, so swim on, swim on.\nAnd he that was sown upon the rocky places, this is he that heareth the word, and straightway with joy receiveth it;\nAnd the voice which I heard from heaven, I heard it again speaking with me, and saying, Go, take the book which is open in the hand of the angel that standeth upon the sea and upon the earth.\nas children of obedience, not fashioning yourselves according to your former lusts in the time of your ignorance:\nUnto me, who am less than the least of all saints, was this grace given, to preach unto the Gentiles the unsearchable riches of Christ;\nThe old hag loved fog and smoke.  \nAnd we know that to them that love God all things work together for good, even to them that are called according to his purpose.\nAnd as I began to speak, the Holy Spirit fell on them, even as on us at the beginning.\nAnd as they ministered to the Lord, and fasted, the Holy Spirit said, Separate me Barnabas and Saul for the work whereunto I have called them.\nGroaning and complaining, he pulled himself slowly to the ceiling.\nthe sun’s light failing: and the veil of the temple was rent in the midst.\nMrs. Zuckerman wasted no time.\nBut the Lord answered and said unto her, Martha, Martha, thou art anxious and troubled about many things:\nThat afternoon, when Mr. Zuckerman went to milk the cows and clean out the tie—ups, he was still thinking about what a wondrous pig he owned.\n“Not a particle.\nTeacher, Moses wrote unto us, If a man’s brother die, and leave a wife behind him, and leave no child, that his brother should take his wife, and raise up seed unto his brother.\nHe said that the words on the spider's web proved that human beings must always be on the watch for the coming of wonders.\nBut the other answered, and rebuking him said, Dost thou not even fear God, seeing thou art in the same condemnation?\nTomorrow you will probably win a prize.\nAnd all that believed were together, and had all things common;\nSow bugs\nHe fixed his eyes on the ground between his feet, for it is the meeting of eyes that most identifies prey to predator.\nwho also honored us with many honors; and when we sailed, they put on board such things as we needed.\n“I heard the frogs today,” said the old sheep one evening.\nAnd as ye go, preach, saying, The kingdom of heaven is at hand.\nHe climbed the rope that hung on the wall and disappeared through a hole in the ceiling.\nThen he tore a word out of the paper, rolled it up, and started back to Wilbur’s pen.\nDo you feel all right?”\nThe second time Wilbur woke, he heard the goose turning on her nest and chuckling to herself.\nThere seemed to be few turkey or quail or even songbirds left in the woods.\nWhen the soldiers had a great heap of timber, enough to build a whole settlement of cabins, they dug a huge rectangular trench and sank the butts of the pine trunks and erected them each by each like a giant pale fence to make a palisade, the logs with the bark still on but white and sharp at the tips as trimmed pencils.\nThe Jews then who were with her in the house, and were consoling her, when they saw Mary, that she rose up quickly and went out, followed her, supposing that she was going unto the tomb to weep there.\nHe hated to break the lovely stillness of dawn by using his voice, but he couldn't think of any other way to locate the mysterious new friend who was nowhere to be seen.\nZuckerman supplies you with three big meals a day.\nI’m not sure Wilbur’s action is exactly radiant, but it’s interesting.”\nBut him that is weak in faith receive ye, yet not for decision of scruples.\nIn the southern mountains, a hell is a bad stretch of land, a hard place to get through, a laurel thicket so vast and dense that men go in and can’t find their way out and die there.\nFor there stood by me this night an angel of the God whose I am, whom also I serve,\n“What a night! he repeated, hoarsely.\nThen shall they also answer, saying, Lord, when saw we thee hungry, or athirst, or a stranger, or naked, or sick, or in prison, and did not minister unto thee?\nSuddenly he had an idea—he thought of the egg sac and the five hundred and fourteen little spiders that would hatch in the spring.\n“How should I know? said Templeton.\nand that from a babe thou hast known the sacred writings which are able to make thee wise unto salvation through faith which is in Christ Jesus.\n“Never hurry and never worry!”\nFor what the law could not do, in that it was weak through the flesh, God, sending his own Son in the likeness of sinful flesh and for sin, condemned sin in the flesh:\nwho comforteth us in all our affliction, that we may be able to comfort them that are in any affliction, through the comfort wherewith we ourselves are comforted of God.\nJust the oaks held out against the cold with a few yellow-brown leaves left rattling in the wind.\nMr. Arable dashed to the driver's seat and pulled on the emergency brake.\nAnd the child grew, and waxed strong, filled with wisdom: and the grace of God was upon him.\nI know that ye are Abraham’s seed, yet ye seek to kill me, because my word hath not free course in you.\nThey then that were about to examine him straightway departed from him: and the chief captain also was afraid when he knew that he was a Roman, and because he had bound him.\nForget not to show love unto strangers: for thereby some have entertained angels unawares.\nand beseecheth him much, saying, My little daughter is at the point of death: I pray thee, that thou come and lay thy hands on her, that she may be made whole, and live.\nGo ye up unto the feast: I go not up unto this feast; because my time is not yet fulfilled.\nfor a great door and effectual is opened unto me, and there are many adversaries.\nTrash takes a long time to decompose.\nVerily I say unto you, This generation shall not pass away, until all these things be accomplished.\nThey then that received his word were baptized: and there were added unto them in that day about three thousand souls.\nIs it true they are going to kill me when the cold weather comes?”\nAnd they that have believing masters, let them not despise them, because they are brethren; but let them serve them the rather, because they that partake of the benefit are believing and beloved. These things teach and exhort.\nThis is what they do, said Wolf.\n“Eggs?”\nCrockett was philosophical on the matter.\nI had hardly looped Waverley’s reins around the hitching post when she came rushing down the front steps and fell into my arms.\nand entered into the house of Zacharias and saluted Elisabeth.\nShe grew a forefinger like a spear point and poked everyone she met to the heart, men and women and children.\nThey never let them disappear.\nAnd they say unto me, Thou must prophesy again over many peoples and nations and tongues and kings. \nXV: The Crickets  \nThe young geese heard it and knew that they would never be little goslings again. Charlotte heard it and knew that she hadn’t much time left.\nWilbur and Charlotte were glad to be rid of him for a while.\nWherefore also I was hindered these many times from coming to you:\n“Of course you don’t,” said Charlotte in a comforting voice.\n“I haven’t the slightest interest in fairs.”\nwhich is not another gospel: only there are some that trouble you, and would pervert the gospel of Christ.\nAnd when his disciples heard thereof, they came and took up his corpse, and laid it in a tomb.\nWe poured another drink and sipped without further comment, neither of us truly believing the generous interpretation of the other.\nAnd this was done thrice: and all were drawn up again into heaven.\n“Did you know that Uncle Homer's goslings had hatched?” asked Fern.\nBut these had gone before, and were waiting for us at Troas.\nA career.\nHe could not even see the far bank, just a ribbon of dark water and the mossy rocks rising from it.\nwho is the image of the invisible God, the firstborn of all creation;\nI will therefore chastise him, and release him.\nWhile Fern was in school, Wilbur was shut up inside his yard.\nNow when they beheld the boldness of Peter and John, and had perceived that they were unlearned and ignorant men, they marvelled; and they took knowledge of them, that they had been with Jesus.\nVerily, verily, I say unto thee, When thou wast young, thou girdedst thyself, and walkedst whither thou wouldest: but when thou shalt be old, thou shalt stretch forth thy hands, and another shall gird thee, and carry thee whither thou wouldest not.\n“What do you mean, less than nothing?” replied Wilbur.\nAnd when the seven days were almost completed, the Jews from Asia, when they saw him in the temple, stirred up all the multitude and laid hands on him,\nAnd when they were come unto a place called Golgotha, that is to say, The place of a skull,\nwhereunto he called you through our gospel, to the obtaining of the glory of our Lord Jesus Christ.\nAnd contrary to the devout belief of his Yankee people, money was not the engine that wheeled the stars across the night sky.\nAnd when they were come in, they went up into the upper chamber, where they were abiding; both Peter and John and James and Andrew, Philip and Thomas, Bartholomew and Matthew, James the son of Alphæus, and Simon the Zealot, and Judas the son of James.\nAnd having said these things unto them, he abode still in Galilee.\nHe was banned from entering the stockade until the primary departure.\nWhen I'm indoors, there's no place to go but out in the yard.”\nBut there came Jews thither from Antioch and Iconium: and having persuaded the multitudes, they stoned Paul, and dragged him out of the city, supposing that he was dead.\nAnd here men that die receive tithes; but there one, of whom it is witnessed that he liveth.\nFern had not arrived for her usual visit.\n“Egg laying.\nBut immediately after the tribulation of those days the sun shall be darkened, and the moon shall not give her light, and the stars shall fall from heaven, and the powers of the heavens shall be shaken:\n“But I cheat a little.\nAll you could do was try to go on living as a form of vengeance, to keep your memory alive as long as possible.\nThey were like everyone else; all they truly knew was locked in the body.\nand, A stone of stumbling, and a rock of offence; for they stumble at the word, being disobedient: whereunto also they were appointed.\nOh yes you can! said a voice\nFor the death that he died, he died unto sin once: but the life that he liveth, he liveth unto God.\nI don’t expect we’re going to have any trouble here today, I said.\nWilbur admired the way Charlotte managed.\nand for fear of him the watchers did quake, and became as dead men.\nThe news of Wilbur’s escape spread rapidly among the animals on the place.\nHe squatted under the canopy of rhododendron and felt that his insides were being twisted like a dirty dishrag.\nseeing that ye seek a proof of Christ that speaketh in me; who to you-ward is not weak, but is powerful in you:\nVerily I say unto you, All their sins shall be forgiven unto the sons of men, and their blasphemies wherewith soever they shall blaspheme:\nOf these things put them in remembrance, charging them in the sight of the Lord, that they strive not about words, to no profit, to the subverting of them that hear.\nNevertheless, he sold them liquor in any quantity they desired and could afford, from the demijohn to the noggin.\nLight snow capped the highest balsam ridges, a bright band between the grey slopes and the dark sky, and it did not melt away until nearly midday.\nFor the Sadducees say that there is no resurrection, neither angel, nor spirit; but the Pharisees confess both.\nAnd he said unto him, Lord, with thee I am ready to go both to prison and to death.\nBehold the birds of the heaven, that they sow not, neither do they reap, nor gather into barns; and your heavenly Father feedeth them. Are not ye of much more value than they?\nneither went I up to Jerusalem to them that were apostles before me: but I went away into Arabia; and again I returned unto Damascus.\nColonel Haden is fond of referring to the people hiding in these mountains as fugitive warriors.\nAnd the men that journeyed with him stood speechless, hearing the voice, but beholding no man.\nTalking with Templeton was not the most interesting occupation in the world but it was better than nothing.\nHe looked around until he saw a red fish emerge from under a rock.\nAnd he led them out until they were over against Bethany: and he lifted up his hands, and blessed them.\nThen were there brought unto him little children, that he should lay his hands on them, and pray: and the disciples rebuked them.\nBut as soon as she got home in the afternoon, she would take him out and he would follow her around the place.\nThe days grow warm and soft.\nHeal the sick, raise the dead, cleanse the lepers, cast out demons: freely ye received, freely give.\n“You'll worry all right when next winter comes,” said the sheep.\nBut Elymas the sorcerer (for so is his name by interpretation) withstood them, seeking to turn aside the proconsul from the faith.\nFrom his long and somewhat error-prone life, his greatest regret was that long ago he had let old obsolete hatreds mislead him into fighting under Jackson during the Creek War.\nAnd Mary said, Behold, the handmaid of the Lord; be it unto me according to thy word. And the angel departed from her.\nI have seen and met many different fish along the way and now I must swim back because I am too big for this pond.\nPhiladelphia fell forward and lay dying, half propped up by the handle and grabbing desperately at the ground.\nCharley’s grandson had lived five years.\nthat seeing they may see, and not perceive; and hearing they may hear, and not understand; lest haply they should turn again, and it should be forgiven them.\nIt being fashionable among gentlemen at the time to be naturalists, Boudinot and young Ridge noted in their journals the passing varieties of wildlife and plant life.\nFor a while there was no sound.\nwhereas angels, though greater in might and power, bring not a railing judgment against them before the Lord.\nAnd let these also first be proved; then let them serve as deacons, if they be blameless.\nThe cocker spaniel sprang for Wilbur’s hind leg.\nSome would say that fact is all that matters.\nI rode back to Wayah, through the gloomy gorge, with the feeling that the whole world was splitting apart.\nAsmeret takes a handful of soil.\nO Jerusalem, Jerusalem, that killeth the prophets, and stoneth them that are sent unto her! how often would I have gathered thy children together, even as a hen gathereth her own brood under her wings, and ye would not!\nAt times.\nYou were once just a seed, now you are a big apple tree.\nAnd Jesus answering said, Were not the ten cleansed? but where are the nine?\ncasting down imaginations, and every high thing that is exalted against the knowledge of God, and bringing every thought into captivity to the obedience of Christ;\npromising them liberty, while they themselves are bondservants of corruption; for of whom a man is overcome, of the same is he also brought into bondage.\nand the law is not of faith; but, He that doeth them shall live in them.\nTo grant unto us that we being delivered out of the hand of our enemies Should serve him without fear,\nAnd the angel said unto me, Wherefore didst thou wonder? I will tell thee the mystery of the woman, and of the beast that carrieth her, which hath the seven heads and the ten horns.\nIf any man thinketh himself to be religious, while he bridleth not his tongue but deceiveth his heart, this man’s religion is vain.\nWilbur stood in the sun feeling lonely and bored.\nVerily I say unto you, Among them that are born of women there hath not arisen a greater than John the Baptist: yet he that is but little in the kingdom of heaven is greater than he.\nYet a little while, and the world beholdeth me no more; but ye behold me: because I live, ye shall live also.\nWherefore, sirs, be of good cheer: for I believe God, that it shall be even so as it hath been spoken unto me.\nIn the next pool of water he saw an odd looking fish.\n‘Crunchy’ would be a good word to write in your web.”\n“Run outdoors, both of you!\nSmith lay behind a blown-down hickory trunk glassing the camp.\nThis was the song she sang.\nThis formed the upright part of the letter T.\n“Throw some on me!” cried Avery. “I’m hot, too.”\nWho shall lay anything to the charge of God’s elect? It is God that justifieth;\nLet's not talk any more for a while, Charlotte.\nMeat to last into the next moon.\nAs she dropped, a tiny silken thread unwound from her rear end.\nThe good man out of his good treasure bringeth forth good things: and the evil man out of his evil treasure bringeth forth evil things.\nWilbur jumped to his feet.\n“At-at—at, at the risk of repeating myself,” said the goose, “I suggest that you come on out.\nAnd brother shall deliver up brother to death, and the father his child: and children shall rise up against parents, and cause them to be put to death.\nNow Simon Peter was standing and warming himself. They said therefore unto him, Art thou also one of his disciples? He denied, and said, I am not.\nWe'll all see them.\nand when he had found him, he brought him unto Antioch. And it came to pass, that even for a whole year they were gathered together with the church, and taught much people; and that the disciples were called Christians first in Antioch.\nTo give knowledge of salvation unto his people In the remission of their sins,\nnot that we are sufficient of ourselves, to account anything as from ourselves; but our sufficiency is from God;\nand that we may be delivered from unreasonable and evil men; for all have not faith.\nShe washed her face, brushed her teeth, and began choosing clothes to wear.\nThey would thus be driven to the mountain fastness, where it is true, they would be almost inaccessible to attack, but at the same time they would be destitute of provisions and the necessary appliances of war.\nShe was growing up, and was careful to avoid childish things, like sitting on a milk stool near a pigpen.\nThen go, I said.\nSometimes disaster happens for a reason. Sometimes it says: Follow a different path.\nSimon the Cananæan, and Judas Iscariot, who also betrayed him.\nShe put on green shorts and a blue and white striped tank top.\nAnd I will pray the Father, and he shall give you another Comforter, that he may be with you for ever,\nThe Fair Grounds will soon be empty and deserted.”\nAnd his mercy is unto generations and generations On them that fear him.\nI write not these things to shame you, but to admonish you as my beloved children.\nThose days, it was hard to be noted as a character in Washington, what with Crockett strutting and flashing about town being the wild frontiersman.\nholding the mystery of the faith in a pure conscience.\nAnd Barnabas and Saul returned from Jerusalem, when they had fulfilled their ministration, taking with them John whose surname was Mark. \nAnd the God of peace shall bruise Satan under your feet shortly. The grace of our Lord Jesus Christ be with you.\n“No,” replied Wilbur.\nTempleton do this, Templeton do that, Templeton please run down to the dump and get me a magazine clipping, Templeton please lend me a piece of string so I can spin a web.”\nRun all over!\nHe's going to be a hard pig to beat, though, Wilbur, on account of his size and weight.\n“Some pig. muttered Lurvy in a low voice.\nIf any man willeth to do his will, he shall know of the teaching, whether it is of God, or whether I speak from myself.\nA dog loped along with them, and she was of such antique configuration that she might have been a recent convert from the tribe of red wolves hunted nearly to absence by whites who could not abide their existence and also by Indians recently forgetful of the old pledge never to kill them due to the close blood relation between wolf and man.\nShe wiped her mouth and ran upstairs.\nIn like manner, ye wives, be in subjection to your own husbands; that, even if any obey not the word, they may without the word be gained by the behavior of their wives;\nHe would run after it and then run back, barking all along.\nSalute Andronicus and Junias, my kinsmen, and my fellow-prisoners, who are of note among the apostles, who also have been in Christ before me.\nBut let him that is taught in the word communicate unto him that teacheth in all good things.\n“Cheese it, cheese it, cheese it!”\nWhen she saw who they were and what they had come for, she went into the cabin and came out very quickly with two blankets and a little black pot.\nBear’s people were too small and remote to be of interest to America.\nnaked, and ye clothed me; I was sick, and ye visited me; I was in prison, and ye came unto me.\nAs Stephen fought to hold it, some townspeople approached.\n“The most fun there is,” retorted Fern, “is when the Ferris wheel stops and Henry and I are in the top car and Henry makes the car swing and we can see everything for miles and miles and miles.”\nHe did not know what would happen to his family.\nBut it is easier for heaven and earth to pass away, than for one tittle of the law to fall.\nbut we preach Christ crucified, unto Jews a stumblingblock, and unto Gentiles foolishness;\nAsmeret even finds evidence of animals decomposing into soil.\nbut emptied himself, taking the form of a servant, being made in the likeness of men;\nStand therefore, having girded your loins with truth, and having put on the breastplate of righteousness,\nMrs. Arable stood quietly and watched them go.\nBut whether we are afflicted, it is for your comfort and salvation; or whether we are comforted, it is for your comfort, which worketh in the patient enduring of the same sufferings which we also suffer:\nWhich of these three, thinkest thou, proved neighbor unto him that fell among the robbers?\nHe that hath an ear, let him hear what the Spirit saith to the churches. To him that overcometh, to him will I give of the hidden manna, and I will give him a white stone, and upon the stone a new name written, which no one knoweth but he that receiveth it.\nTruly the signs of an apostle were wrought among you in all patience, by signs and wonders and mighty works.\nNow on the first day of unleavened bread the disciples came to Jesus, saying, Where wilt thou that we make ready for thee to eat the passover?\nIt wheeled and ran uphill at amazing speed, crashing through a stand of laurel and disappearing into the fog.\nIt is actually reported that there is fornication among you, and such fornication as is not even among the Gentiles, that one of you hath his father’s wife.\nHe that hath my commandments, and keepeth them, he it is that loveth me: and he that loveth me shall be loved of my Father, and I will love him, and will manifest myself unto him.\nhaving eyes full of adultery, and that cannot cease from sin; enticing unstedfast souls; having a heart exercised in covetousness; children of cursing;\nThey asked him, Who is the man that said unto thee, Take up thy bed, and walk?\n“There’s a pig in the next pen and he’s enormous.\nPaul said to the centurion and to the soldiers, Except these abide in the ship, ye cannot be saved.\nBut now hath Christ been raised from the dead, the firstfruits of them that are asleep.\nAnd a certain centurion’s servant, who was dear unto him, was sick and at the point of death.\nHowbeit Festus answered, that Paul was kept in charge at Cæsarea, and that he himself was about to depart thither shortly.\nChildren wandered about, aimless and blank.\nThe children felt refreshed after their nap.\nBut when you reach the point that you no longer trust the world, you live in never-ending fear.\nThe tomatoes are as big as softballs and some are smaller than walnuts.\nThen did they spit in his face and buffet him: and some smote him with the palms of their hands,\nCongress was in town, so Washington City was a busy place.\nAnd when he saw that it pleased the Jews, he proceeded to seize Peter also. And those were the days of unleavened bread.\nIf I was afoot, I would wedge the handle between my knapsack and back, leaving my hands free, and I guess it did look a little strange to meet up with me on the trail.\nMrs. Arable got out of the truck.\n“Summer is over and gone,” they sang.\nThe next morning Featherstone set out for the West on a sort of middling-quality horse which he planned to sell at the river before embarking.\n“Does he really?” said Mrs. Arable, rather vaguely.\nI handle stuff like this all the time.”\nAnd when he had thus spoken, he cried with a loud voice, Lazarus, come forth.\nAnd when they agreed not among themselves, they departed after that Paul had spoken one word, Well spake the Holy Spirit through Isaiah the prophet unto your fathers,\nThen he walked to the door and looked out.\n“Anywhere you like, anywhere you like,” said the goose.\nAnd there came unto him great multitudes, having with them the lame, blind, dumb, maimed, and many others, and they cast them down at his feet; and he healed them:\nI stood in the doorway and watched as she undressed in the moonlight.\nAnd me saying nothing.\nThe first Woe is past: behold, there come yet two Woes hereafter.\nNow these things, brethren, I have in a figure transferred to myself and Apollos for your sakes; that in us ye might learn not to go beyond the things which are written; that no one of you be puffed up for the one against the other.\nDoth not even nature itself teach you, that, if a man have long hair, it is a dishonor to him?\nFor we know him that said, Vengeance belongeth unto me, I will recompense. And again, The Lord shall judge his people.\nAnd I remembered the word of the Lord, how he said, John indeed baptized with water; but ye shall be baptized in the Holy Spirit.\nAnd the twelve gates were twelve pearls; each one of the several gates was of one pearl: and the street of the city was pure gold, as it were transparent glass.\nI must needs glory, though it is not expedient; but I will come to visions and revelations of the Lord.\nand the grace of our Lord abounded exceedingly with faith and love which is in Christ Jesus.\nIf a man abide not in me, he is cast forth as a branch, and is withered; and they gather them, and cast them into the fire, and they are burned.\nAnd John answered and said, Master, we saw one casting out demons in thy name; and we forbade him, because he followeth not with us.\nAnd as for you, the anointing which ye received of him abideth in you, and ye need not that any one teach you; but as his anointing teacheth you concerning all things, and is true, and is no lie, and even as it taught you, ye abide in him.\nThe cup of blessing which we bless, is it not a communion of the blood of Christ? The bread which we break, is it not a communion of the body of Christ?\nAs I sware in my wrath, They shall not enter into my rest.\nAnd when he had said this, one of the officers standing by struck Jesus with his hand, saying, Answerest thou the high priest so?\nWhen Pilate therefore heard these words, he brought Jesus out, and sat down on the judgment-seat at a place called The Pavement, but in Hebrew, Gabbatha.\nBrethren, I speak after the manner of men: Though it be but a man’s covenant, yet when it hath been confirmed, no one maketh it void, or addeth thereto.\nAnd this is the will of him that sent me, that of all that which he hath given me I should lose nothing, but should raise it up at the last day.\n“It’s a perfectly beautiful egg sac,” said Wilbur, feeling as happy as though he had constructed it himself.\nthat the man of God may be complete, furnished completely unto every good work. \nWe are aeronauts and we are going out into the world to make webs for ourselves.”\nAnd when we had sailed slowly many days, and were come with difficulty over against Cnidus, the wind not further suffering us, we sailed under the lee of Crete, over against Salmone;\nThe smell from the toilet pits brought tears to my eyes.\nAnd he said unto them, Go. And they came out, and went into the swine: and behold, the whole herd rushed down the steep into the sea, and perished in the waters.\nFor who among men knoweth the things of a man, save the spirit of the man, which is in him? even so the things of God none knoweth, save the Spirit of God.\nHusbands, love your wives, and be not bitter against them.\nHe backed up to it.\nJesus said unto them, Is it not for this cause that ye err, that ye know not the scriptures, nor the power of God?\nHe wanted a friend—someone who would play with him.\nThe store was about three miles from where we lived.\nTempleton poked his head up through the straw.\nbut, as it is written, They shall see, to whom no tidings of him came, And they who have not heard shall understand.\n“What’s miraculous about a spider's web?” said Mrs. Arable.\nUnder the wild apple trees in the pasture, the red little apples lay thick on the ground, and the sheep gnawed them and the geese gnawed them and foxes came in the night and sniffed them.\nand above it cherubim of glory overshadowing the mercy-seat; of which things we cannot now speak severally.\nBut the high priest rose up, and all they that were with him (which is the sect of the Sadducees), and they were filled with jealousy,\nFor a second you seemed to be falling to the barn floor far below, but then suddenly the rope would begin to catch you, and you would sail through the barn door going a mile a minute, with the wind whistling in your eyes and ears and hair.\nand the smoke of their torment goeth up for ever and ever; and they have no rest day and night, they that worship the beast and his image, and whoso receiveth the mark of his name.\nand laid it in his own new tomb, which he had hewn out in the rock: and he rolled a great stone to the door of the tomb, and departed.\nFor the love of Christ constraineth us; because we thus judge, that one died for all, therefore all died;\nWendy went back into the house and put on her snowsuit.\n“A balloonist,” said Charlotte.\nFurthermore, I said that if I was to die I didn’t want to go under the ground as a hireling.\nBehold, this is the third time I am ready to come to you; and I will not be a burden to you: for I seek not yours, but you: for the children ought not to lay up for the parents, but the parents for the children.\nAgain on the morrow John was standing, and two of his disciples;\nEight of them.\nAnd he charged them, saying, Take heed, beware of the leaven of the Pharisees and the leaven of Herod.\nFor herein is the saying true, One soweth, and another reapeth.\n“You don’t think I need worry about her?”\nJesus answered him, Thou wouldest have no power against me, except it were given thee from above: therefore he that delivered me unto thee hath greater sin.\nJudge ye in yourselves: is it seemly that a woman pray unto God unveiled?\nHe put his front feet up on the top board and gazed around.\nThey were farmers, I said.\nBut that is not a skill I ever acquired.\nThen, holding the rope, you stood at the edge and looked down, and were scared and dizzy.\nBabies crying in piercing tones, elders coughing with a deep rattle in the lung.\nhe that opposeth and exalteth himself against all that is called God or that is worshipped; so that he sitteth in the temple of God, setting himself forth as God.\nAnd when the hour was come, he sat down, and the apostles with him.\nBut when day was now breaking, Jesus stood on the beach: yet the disciples knew not that it was Jesus.\nAnd his sisters, are they not all with us? Whence then hath this man all these things?\nHe took out his hand axe and knife and felt their heft and looked at their edges, honed bright with spit and a flat river rock.\nAnd he arose, and departed to his house.\nAnd he asked them, What question ye with them?\nAnd when the disciples heard it, they were astonished exceedingly, saying, Who then can be saved?\nAnd my God shall supply every need of yours according to his riches in glory in Christ Jesus.\nBut ye know the proof of him, that, as a child serveth a father, so he served with me in furtherance of the gospel.\nI know that after my departing grievous wolves shall enter in among you, not sparing the flock;\nFare thee well, Charlotte, you old schemer!\nAnother town had a tavern where they alleged the T-bone beefsteak had been invented, though I did not see how that claim could possibly be true since beeves had surely gone around with that part of their insides for quite some time.\nA column of four soldiers, if just four could be called a column.\nHe sat in his underwear cross-legged on a blanket with his coat draped over his shoulders like a cape and his boots unlaced and flapped open on his feet.\nFor ye know that even when he afterward desired to inherit the blessing, he was rejected; for he found no place for a change of mind in his father, though he sought it diligently with tears.\n“Take a deep breath!” said Charlotte, smiling.\nWas not Abraham our father justified by works, in that he offered up Isaac his son upon the altar?\n“Why doesn’t Fern come?”\nThe truck bearing this extraordinary animal is now approaching the infield.\nOf the tribe of Judah were sealed twelve thousand; Of the tribe of Reuben twelve thousand; Of the tribe of Gad twelve thousand;\nTrees?\n“Don’t be ridiculous,” said Charlotte.\nThere shall be two women grinding together; the one shall be taken, and the other shall be left.\nWoe unto you! for ye build the tombs of the prophets, and your fathers killed them.\nFor no word from God shall be void of power.\nsaying, What thou seest, write in a book and send it to the seven churches: unto Ephesus, and unto Smyrna, and unto Pergamum, and unto Thyatira, and unto Sardis, and unto Philadelphia, and unto Laodicea.\nNow he that betrayed him gave them a sign, saying, Whomsoever I shall kiss, that is he: take him.\nThe Lord be with thy spirit. Grace be with you.\nHe that regardeth the day, regardeth it unto the Lord: and he that eateth, eateth unto the Lord, for he giveth God thanks; and he that eateth not, unto the Lord he eateth not, and giveth God thanks.\nIs it very far down there?\nBehold, I give of the synagogue of Satan, of them that say they are Jews, and they are not, but do lie; behold, I will make them to come and worship before thy feet, and to know that I have loved thee.\nAnd now one of the judges climbed into the ring with the prizes.\nThen flying along on the train for two days at dizzying speeds occasionally approaching twenty miles an hour to the state capital.\nI am resolved what to do, that, when I am put out of the stewardship, they may receive me into their houses.\nAnd going on from thence he saw two other brethren, James the son of Zebedee, and John his brother, in the boat with Zebedee their father, mending their nets; and he called them.\nNow in the sixth month the angel Gabriel was sent from God unto a city of Galilee, named Nazareth,\nAxe said, You’re taking the wrong direction.\n“That I did, that I did,” said the goose.\nAnd they were so close and hot in the summertime that on the few nights when the mosquitoes were at all calm I preferred to sleep on deck, swinging in a string hammock and watching the moonlight fall on the river and the dark woods pass above the steep sandy banks.\nShe sat without moving a muscle, and listened to the conversation of the people.\nThe Indian trackers would certainly not kill women and children, and perhaps the soldiers would spare them as well.\n“Good night, Wilbur!”\nAnd inasmuch as it is appointed unto men once to die, and after this cometh judgment;\nAnd the men marvelled, saying, What manner of man is this, that even the winds and the sea obey him?\nEvery cabin here, you walk in and shut the door, it’s like you’ve shut your eyes.\nTake heed to thyself, and to thy teaching. Continue in these things; for in doing this thou shalt save both thyself and them that hear thee. \nThere was a dull explosion as the egg broke, and then a horrible smell.\nAnd afterward they asked for a king: and God gave unto them Saul the son of Kish, a man of the tribe of Benjamin, for the space of forty years.\nAnd ye shall be hated of all men for my name’s sake: but he that endureth to the end, the same shall be saved.\nI couldn’t see the faces of the people around me and knew them only by their voices, but I had known some of them since I was a boy.\nThe rat poked his head out from under the trough.\nFor David ascended not into the heavens: but he saith himself, The Lord said unto my Lord, Sit thou on my right hand,\nBut this I say, He that soweth sparingly shall reap also sparingly; and he that soweth bountifully shall reap also bountifully.\nLittlefish thought of what his mother had said, and although he was scared, he decided to swim on.\nAnd when he would have put him to death, he feared the multitude, because they counted him as a prophet.\nBut if our unrighteousness commendeth the righteousness of God, what shall we say? Is God unrighteous who visiteth with wrath? (I speak after the manner of men.)\nIn Wayah, Bear didn’t think he and his people could turn white no matter how hard they tried.\nHe saw many different fish of all shapes, sizes, and colors.\nAnd one out of the multitude said unto him, Teacher, bid my brother divide the inheritance with me.\nThe young lieutenant and three enlisted men, boys from Ireland and Philadelphia and Charleston.\nHe had already sold Wilbur’s ten brothers and sisters.\nAnd he, casting away his garment, sprang up, and came to Jesus.\nHe is crazy, the people jeered.\nA little girl is one thing, a little runty pig is another.”\nLook white, dress white, act white, be white.\nhearing of thy love, and of the faith which thou hast toward the Lord Jesus, and toward all the saints;\nAnd I went up by revelation; and I laid before them the gospel which I preach among the Gentiles but privately before them who were of repute, lest by any means I should be running, or had run, in vain.\nAnd the chief captain took him by the hand, and going aside asked him privately, What is it that thou hast to tell me?\nAnd Jesus stood still, and said, Call ye him. And they call the blind man, saying unto him, Be of good cheer: rise, he calleth thee.\nBy faith Abraham, when he was called, obeyed to go out unto a place which he was to receive for an inheritance; and he went out, not knowing whither he went.\nAnd when the south wind blew softly, supposing that they had obtained their purpose, they weighed anchor and sailed along Crete, close in shore.\nfrom whom all the body fitly framed and knit together through that which every joint supplieth, according to the working in due measure of each several part, maketh the increase of the body unto the building up of itself in love.\nAnd the patriarchs, moved with jealousy against Joseph, sold him into Egypt: and God was with him,\nThey feared his signs were evil.\nBut there were some that had indignation among themselves, saying, To what purpose hath this waste of the ointment been made?\nThat's what I like.”\n“Charlotte,” said Wilbur dreamily, “are you really going to have five hundred and fourteen children?”\nThese organisms are called decomposers.\n“Well,” said her mother, “one of the pigs is a runt.\nAnd Jesus answered unto him, It is written, Man shall not live by bread alone.\nBut Barnabas took him, and brought him to the apostles, and declared unto them how he had seen the Lord in the way, and that he had spoken to him, and how at Damascus he had preached boldly in the name of Jesus.\nlet him that is on the housetop not go down to take out the things that are in his house:\nBut Felix, having more exact knowledge concerning the Way, deferred them, saying, When Lysias the chief captain shall come down, I will determine your matter.\nThen over and over for more than two months, the old and dying earth shook until one wall of the townhouse had fallen away and the roof collapsed.\nTwo other Indians went and propped their muskets against a rock and walked into the forest and did not return.\n“Charlotte,” he said, after a while, “do you really think Zuckerman will let me live and not kill me when the cold weather comes?\nnot rendering evil for evil, or reviling for reviling; but contrariwise blessing; for hereunto were ye called, that ye should inherit a blessing.\n“She knows Henry Fussy,” said Mrs. Arable brightly.\nI am not come to call the righteous but sinners to repentance.\nBut Mary kept all these sayings, pondering them in her heart.\nAnd they that passed by railed on him, wagging their heads,\nand Annas the high priest was there, and Caiaphas, and John, and Alexander, and as many as were of the kindred of the high priest.\nLurvy took out an enormous handkerchief and blew his nose very loud — so loud, in fact, that the noise was heard by stableboys over at the horse barn.\nNow in these days there came down prophets from Jerusalem unto Antioch.\nBut if the western territories were as fine as they were made out to be, the white people would soon come and take that land away from them too, for it was the nature of white people that they could never be satisfied.\nFor the land which hath drunk the rain that cometh oft upon it, and bringeth forth herbs meet for them for whose sake it is also tilled, receiveth blessing from God:\nFor neither is circumcision anything, nor uncircumcision, but a new creature.\nThey said therefore unto him, Who art thou? that we may give an answer to them that sent us. What sayest thou of thyself?\nNeither be ye idolaters, as were some of them; as it is written, The people sat down to eat and drink, and rose up to play.\nBut unto the married I give charge, yea not I, but the Lord, That the wife depart not from her husband\nWilbur was modest; fame did not spoil him.\nWhy doth this man thus speak? he blasphemeth: who can forgive sins but one, even God?\n“Charlotte can,” replied Fern.\nThe cool and kindly breath of evening entered through doors and windows.\nIt was good to be home again.\nAnd he stretched forth his hand, and touched him, saying, I will; be thou made clean. And straightway his leprosy was cleansed.\n(Now Jesus was not yet come into the village, but was still in the place where Martha met him.)\nAnd when I saw him, I fell at his feet as one dead. And he laid his right hand upon me, saying, Fear not; I am the first and the last,\nHe opened the blankets and lifted the weightless boy in his hands and laid him on the frozen ground. The boy had been dead less than a day, but the skin was grey as wood ash and his long black hair seemed unaccountably full of pale dust.\nBlessed is he that readeth, and they that hear the words of the prophecy, and keep the things that are written therein: for the time is at hand.\nFor so is the will of God, that by well-doing ye should put to silence the ignorance of foolish men:\nHe was a short man but broad at the shoulders, stout through the barrel of his body, round-headed and big-handed.\nAnd all that heard them laid them up in their heart, saying, What then shall this child be? For the hand of the Lord was with him.\nAnd they that were sent went away, and found even as he had said unto them.\nAnd I heard a great voice in heaven, saying, Now is come the salvation, and the power, and the kingdom of our God, and the authority of his Christ: for the accuser of our brethren is cast down, who accuseth them before our God day and night.\nFor John came neither eating nor drinking, and they say, He hath a demon.\nAnd as many as shall walk by this rule, peace be upon them, and mercy, and upon the Israel of God.\n“I don’t understand it.\nTwo spermaceti candles burned in pewter holders.\nFor if ye love them that love you, what reward have ye? do not even the publicans the same?\nTherefore I endure all things for the elect’s sake, that they also may obtain the salvation which is in Christ Jesus with eternal glory.\nAnd they all said, Art thou then the Son of God? And he said unto them, Ye say that I am.\nAnd he saith unto them, My soul is exceeding sorrowful even unto death: abide ye here, and watch.\nwhich also after a true likeness doth now save you, even baptism, not the putting away of the filth of the flesh, but the interrogation of a good conscience toward God, through the resurrection of Jesus Christ;\nAt my first defence no one took my part, but all forsook me: may it not be laid to their account.\nIt’s amazing how children change from year to year.\nAnd the chief captain came and said unto him, Tell me, art thou a Roman? And he said, Yea.\nand they cast him out of the city, and stoned him: and the witnesses laid down their garments at the feet of a young man named Saul.\nFor consider him that hath endured such gainsaying of sinners against himself, that ye wax not weary, fainting in your souls.\nwho, when he was in Galilee, followed him, and ministered unto him; and many other women that came up with him unto Jerusalem.\nBut when thou doest alms, let not thy left hand know what thy right hand doeth:\nLove never faileth: but whether there be prophecies, they shall be done away; whether there be tongues, they shall cease; whether there be knowledge, it shall be done away.\nWe are of God: he that knoweth God heareth us; he who is not of God heareth us not. By this we know the spirit of truth, and the spirit of error.\nI’ll just say that I walked a long way and finally tracked Lichen’s bunch to their cave.\nFor much of his life, Sequoyah was nobody famous.\nAnd the woman was arrayed in purple and scarlet, and decked with gold and precious stone and pearls, having in her hand a golden cup full of abominations, even the unclean things of her fornication,\nI have nothing at all on my mind, but I've too many things under my behind.\n“That’s enough!” cried Templeton.\nPilate therefore went out unto them, and saith, What accusation bring ye against this man?\nHe was not afraid as he was when he started his journey, so he swam up to it ad said, Hello, I'm called Littlefish and I've never seen a fish like you.\n“It says ‘Humble,’ ” replied the rat.\nand behold, a man having a withered hand. And they asked him, saying, Is it lawful to heal on the sabbath day? that they might accuse him.\nAnd Jesus answered and said unto them, Are ye come out, as against a robber, with swords and staves to seize me?\nsaying, Prophesy unto us, thou Christ: who is he that struck thee?\nAnd the ten horns which thou sawest, and the beast, these shall hate the harlot, and shall make her desolate and naked, and shall eat her flesh, and shall burn her utterly with fire.\nI would like to make the concluding act of Charley's story an epic and tragic tale. But almost nothing in life is epic or tragic at the moment of its enactment.\nAnd Agrippa said unto Paul, With but little persuasion thou wouldest fain make me a Christian.\nAn evil and adulterous generation seeketh after a sign; and there shall no sign be given unto it, but the sign of Jonah. And he left them, and departed.\nAnd Pilate went out again, and saith unto them, Behold, I bring him out to you, that ye may know that I find no crime in him.\nYe are the light of the world. A city set on a hill cannot be hid.\nsaying, The Son of man must suffer many things, and be rejected of the elders and chief priests and scribes, and be killed, and the third day be raised up.\nIf we say that we have fellowship with him and walk in the darkness, we lie, and do not the truth:\nAnd when Jesus saw that he answered discreetly, he said unto him, Thou art not far from the kingdom of God. And no man after that durst ask him any question.\nSalute Tryphæna and Tryphosa, who labor in the Lord. Salute Persis the beloved, who labored much in the Lord.\nNow the chief priests and the Pharisees had given commandment, that, if any man knew where he was, he should show it, that they might take him. \nIf it be possible, as much as in you lieth, be at peace with all men.\nMiles away, at the Arables’ house, the men sat around the kitchen table eating a dish of canned peaches and talking over the events of the day.\nAs we rode away from the house, I was thinking that a man’s in a bad way when fellows younger than your grandchildren get to decide how your life goes from now on out.\nBut first must he suffer many things and be rejected of this generation.\nLet us walk becomingly, as in the day; not in revelling and drunkenness, not in chambering and wantonness, not in strife and jealousy.\nBut what went ye out to see? a man clothed in soft raiment? Behold, they that are gorgeously apparelled, and live delicately, are in kings’ courts.\n“Certainly.\n“Look at Charlotte's web!\nand from Jerusalem, and from Idumæa, and beyond the Jordan, and about Tyre and Sidon, a great multitude, hearing what great things he did, came unto him.\nTo him the porter openeth; and the sheep hear his voice: and he calleth his own sheep by name, and leadeth them out.\nAnd when they had sung a hymn, they went out unto the mount of Olives.\nIf therefore ye have not been faithful in the unrighteous mammon, who will commit to your trust the true riches?\nHe passed his hands across the red bristles on their backs and talked to them and said he required nothing from them and only wished them well in their endeavors.\nHis wife went to the woodshed.\n“I’m awfully sorry to hear that you're feeling poorly, Charlotte,” he said.\nand will not rather say unto him, Make ready wherewith I may sup, and gird thyself, and serve me, till I have eaten and drunken; and afterward thou shalt eat and drink?\nHe saw in a vision openly, as it were about the ninth hour of the day, an angel of God coming in unto him, and saying to him, Cornelius.\nAnd when they heard this, they entered into the temple about daybreak, and taught. But the high priest came, and they that were with him, and called the council together, and all the senate of the children of Israel, and sent to the prison-house to have them brought.\nand as they were affrighted and bowed down their faces to the earth, they said unto them, Why seek ye the living among the dead?\nAvery often brought a trout home in his pocket, warm and stiff and ready to be fried for supper.\nThere were towns noted for pig cookery, where they dug pits in the ground and built fires in them and let the wood burn down to red coals and then put in the pig and buried fire and carcass together in red clay.\nAnd he awoke, and rebuked the wind, and said unto the sea, Peace, be still. And the wind ceased, and there was a great calm.\nHis back itched, so he leaned against the fence and rubbed against the boards.\n“This is getting to be quite a meeting,” said Charlotte.\nShe was very quiet.\nAfter this man rose up Judas of Galilee in the days of the enrolment, and drew away some of the people after him: he also perished; and all, as many as obeyed him, were scattered abroad.\n“The last time I swang in this swing, I almost crashed into a barn swallow,” he yelled.\nNow after some years I came to bring alms to my nation, and offerings:\nAnd ye therefore now have sorrow: but I will see you again, and your heart shall rejoice, and your joy no one taketh away from you.\n“Well, they've got to grow up some time,” said Mr. Arable.\nLieutenant Smith and another officer huddled together and there was a long period of talk between them, and then they seemed to argue.\nIn holiness and righteousness before him all our days.\nAnd Joseph her husband, being a righteous man, and not willing to make her a public example, was minded to put her away privily.\nAnd this is the witness of John, when the Jews sent unto him from Jerusalem priests and Levites to ask him, Who art thou?\nDare any of you, having a matter against his neighbor, go to law before the unrighteous, and not before the saints?\nAnd he said unto them, This kind can come out by nothing, save by prayer.\nAnd Jesus saith unto him, See thou tell no man; but go, show thyself to the priest, and offer the gift that Moses commanded, for a testimony unto them.\nSo from that day forth they took counsel that they might put him to death.\nFor they that are such serve not our Lord Christ, but their own belly; and by their smooth and fair speech they beguile the hearts of the innocent.\nAnd as they were eating, Jesus took bread, and blessed, and brake it; and he gave to the disciples, and said, Take, eat; this is my body.\nThe Zuckermans’ driveway was full of cars and trucks from morning till night—Fords and Chevvies and Buick roadmasters  and GMC pickups and Plymouths and Studebakers and Packards and De Sotos with gyromatic transmissions and Oldsmobiles with rocket engines and Jeep station wagons and Pontiacs.\nShe hoped Fern would go out and play with other children, instead of heading for the Zuckermans’ barn to sit and watch animals.\n“Well,” said one of the lambs, “this whole business is all well and good for Charlotte, but what about the rest of us?\nWith the flat of his sword, he hoisted it into the air and flung it into the woods.\nMrs. Zuckerman ran to the phone and called the Arables.\nAfter that, I quit worrying and let desire rule.\nWherefore, my brethren, ye also were made dead to the law through the body of Christ; that ye should be joined to another, even to him who was raised from the dead, that we might bring forth fruit unto God.\nso that my bonds became manifest in Christ throughout the whole prætorian guard, and to all the rest;\nBear had guessed at Lichen’s response and had suggested that at some point I might need to tell the tale of U’tlunta.\nwho appeared in glory, and spake of his decease which he was about to accomplish at Jerusalem.\nErastus remained at Corinth: but Trophimus I left at Miletus sick.\nHe had his black slaves and a few Christian Indians fanned around him, listening to some of the pronouncements of God on the subject of how people ought to act.\nWell, the story just got the more unbelievable the farther I proceeded.\nHe needs to be gutted, and I had about half a mind to do it.\nAnd when the governor had beckoned unto him to speak, Paul answered, Forasmuch as I know that thou hast been of many years a judge unto this nation, I cheerfully make my defence:\nHe saith unto him, Out of thine own mouth will I judge thee, thou wicked servant. Thou knewest that I am an austere man, taking up that which I laid not down, and reaping that which I did not sow;\nWithout are the dogs, and the sorcerers, and the fornicators, and the murderers, and the idolaters, and every one that loveth and maketh a lie.\n“Now I called this meeting in order to get suggestions.\nHis disciples remembered that it was written, Zeal for thy house shall eat me up.\nWives, be in subjection unto your own husbands, as unto the Lord.\nBlessed and holy is he that hath part in the first resurrection: over these the second death hath no power; but they shall be priests of God and of Christ, and shall reign with him a thousand years.\nFern loved Wilbur more than anything.\nAnd when there arose a great dissension, the chief captain, fearing lest Paul should be torn in pieces by them, commanded the soldiers to go down and take him by force from among them, and bring him into the castle.\nThe pig, although tiny, had a good appetite and caught on quickly.\nBut God commendeth his own love toward us, in that, while we were yet sinners, Christ died for us.\n“And now, Fern, it’s time to get ready for Sunday School.\nAnd others, trying him, sought of him a sign from heaven.\nAnd he made haste, and came down, and received him joyfully.\nThe sheds and buildings were empty and forlorn.\nAnd he came out, and went, as his custom was, unto the mount of Olives; and the disciples also followed him.\nIt began raining hard, straight down, as if the air had turned to water.\nVerily I say unto you, Whosoever shall not receive the kingdom of God as a little child, he shall in no wise enter therein.\nHe carried a child in the crook of one arm, and he claimed the child was God and God was fixing to destroy earth soon unless the people returned to the old ways and gave up clothes of woven cloth and guns and plows and nearly all metal whatsoever, and quit growing yellow corn and went back to real corn—the old mottled ears—and stopped grinding their kernels between the stones of water mills and went back to pounding it into meal by hand in log mortars, and resettled the old towns and rebuilt the townhouses on top of the mounds and recommenced observing all the old sacred festivals and dances in the squaregrounds at the foot of the mounds.\nthe fifth, sardonyx; the sixth, sardius; the seventh, chrysolite; the eighth, beryl; the ninth, topaz; the tenth, chrysoprase; the eleventh, jacinth; the twelfth, amethyst.\nThe cows hated them.\nWhile he was yet speaking to the multitudes, behold, his mother and his brethren stood without, seeking to speak to him.\nI will give unto thee the keys of the kingdom of heaven: and whatsoever thou shalt bind on earth shall be bound in heaven; and whatsoever thou shalt loose on earth shall be loosed in heaven.\nthe son of Maath, the son of Mattathias, the son of Semein, the son of Josech, the son of Joda,\nI won’t tell every lone camp and miserable thought that crossed my mind those days except to say I lay awake every night, flat on my back, watching the stars transit through the tree limbs and wondering if Claire had made it to the West and fearing she had not.\nHas it ever occurred to you that I’m sick of running errands and doing favors? \nOn the Nation, some of the people had decided that becoming as much like the whites as possible was the way.\nlest there be any fornicator, or profane person, as Esau, who for one mess of meat sold his own birthright.\nAnd John also was baptizing in Ænon near to Salim, because there was much water there: and they came, and were baptized.\nSo Smith assigned me the first watch, from just after sundown to bedtime, as if that had been his plan all along and my objecting to the watches had nothing to do with it.\nand he hath seen a man named Ananias coming in, and laying his hands on him, that he might receive his sight.\nAnd another angel came out from the altar, he that hath power over fire; and he called with a great voice to him that had the sharp sickle, saying, Send forth thy sharp sickle, and gather the clusters of the vine of the earth; for her grapes are fully ripe.\nThese things also command, that they may be without reproach.\nwho serve that which is a copy and shadow of the heavenly things, even as Moses is warned of God when he is about to make the tabernacle: for, See, saith he, that thou make all things according to the pattern that was showed thee in the mount.\nBut seek ye first his kingdom, and his righteousness; and all these things shall be added unto you.\nquenched the power of fire, escaped the edge of the sword, from weakness were made strong, waxed mighty in war, turned to flight armies of aliens.\n“Sing me that song again, about the dung and the dark,” he begged.\ngiving no occasion of stumbling in anything, that our ministration be not blamed;\n“Coxa, trochanter, femur, patella, tibia, metatarsus, and tarsus.”\nAnd when the season of the fruits drew near, he sent his servants to the husbandmen, to receive his fruits.\nAnd certain men came down from Judæa and taught the brethren, saying, Except ye be circumcised after the custom of Moses, ye cannot be saved.\n“All ready, boys!” cried Mr. Zuckerman.\nthese take, and purify thyself with them, and be at charges for them, that they may shave their heads: and all shall know that there is no truth in the things whereof they have been informed concerning thee; but that thou thyself also walkest orderly, keeping the law.\nThe next morning after he awoke, he sat motionless a long while trueing up his mind.\n“I think ‘terrific’ might impress Zuckerman.”\nthat ye were at that time separate from Christ, alienated from the commonwealth of Israel, and strangers from the covenants of the promise, having no hope and without God in the world.\nAnd it came to pass, when Jesus had finished these words, the multitudes were astonished at his teaching:\nand Judas Iscariot, who also betrayed him. And he cometh into a house.\nAnd he answered and said unto them, I also will ask you a question; and tell me:\nOne evening, a few days after the writing had appeared in Charlotte's web, the spider called a meeting of all the animals in the barn cellar.\nThis seemed like the end of the world, to be deserted by Charlotte's children.\nFor I say that Christ hath been made a minister of the circumcision for the truth of God, that he might confirm the promises given unto the fathers,\nThen was brought unto him one possessed with a demon, blind and dumb: and he healed him, insomuch that the dumb man spake and saw.\nAnd blessed is he, whosoever shall find no occasion of stumbling in me.\nin whom we have our redemption through his blood, the forgiveness of our trespasses, according to the riches of his grace,\nJesus answered and said unto him, Art thou the teacher of Israel, and understandest not these things?\nBlessed are the meek: for they shall inherit the earth.\nTill I make thine enemies the footstool of thy feet.\nNow if he were on earth, he would not be a priest at all, seeing there are those who offer the gifts according to the law;\nand he is the propitiation for our sins; and not for ours only, but also for the whole world.\nDon't spend it all the first few minutes.\nNow there was afar off from them a herd of many swine feeding.\nThere would be no regaining what was lost.\nYou go ahead and finish fixing your web and I'll just lie here and watch you.\nShe said, Many are.\nAnd some of them that stood there, when they heard it, said, This man calleth Elijah.\nThere are all kinds of peppers in our garden.\nThough Ross and Ridge shared the same goal, the survival of the Nation, they hated each other more than Calhoun and Jackson did.\nMrs. Arable put a pitcher of cream on the table.\nI was out to dinners and dances at least five nights a week.\nAnd Jesus went with them. And when he was now not far from the house, the centurion sent friends to him, saying unto him, Lord, trouble not thyself; for I am not worthy that thou shouldest come under my roof:\nVerily I say unto you, Wheresoever this gospel shall be preached in the whole world, that also which this woman hath done shall be spoken of for a memorial of her.\nand they took counsel together that they might take Jesus by subtlety, and kill him.\nBut when he thought on these things, behold, an angel of the Lord appeared unto him in a dream, saying, Joseph, thou son of David, fear not to take unto thee Mary thy wife: for that which is conceived in her is of the Holy Spirit.\nNow the apostles and the brethren that were in Judæa heard that the Gentiles also had received the word of God.\nBear said, We’ll start tracking Charley from here.\nOn the morrow he was minded to go forth into Galilee, and he findeth Philip: and Jesus saith unto him, Follow me.\nThe sheep soon got to know her and trust her.\nCharley squatted, and his knees made a crackling sound like dropping an armload of firewood.\n“Good-bye, summer, good-bye, good-bye!”\nEvery one that doeth sin doeth also lawlessness; and sin is lawlessness.\nThen shall the kingdom of heaven be likened unto ten virgins, who took their lamps, and went forth to meet the bridegroom.\nHere is the mind that hath wisdom. The seven heads are seven mountains, on which the woman sitteth:\nAnd wheresoever he entered, into villages, or into cities, or into the country, they laid the sick in the marketplaces, and besought him that they might touch if it were but the border of his garment: and as many as touched him were made whole. \nAnd he came also to Derbe and to Lystra: and behold, a certain disciple was there, named Timothy, the son of a Jewess that believed; but his father was a Greek.\nEverything had fallen away from him.\nThe Supreme Court rendered a decision siding with the Indians, and Jackson said, Now let them enforce it.\nAnd he took him aside from the multitude privately, and put his fingers into his ears, and he spat, and touched his tongue;\nThey began to be sorrowful, and to say unto him one by one, Is it I?\nA pile of chestnuts lay roasting in the outer ashes.\nNot that we have lordship over your faith, but are helpers of your joy: for in faith ye stand fast.\nAnd every man that striveth in the games exerciseth self-control in all things. Now they do it to receive a corruptible crown; but we an incorruptible.\nCan’t you see the pig is all right?”\nFor sin shall not have dominion over you: for ye are not under law, but under grace.\nDrops of rain struck his face.\nAnd the third poured out his bowl into the rivers and the fountains of the waters; and it became blood.\nbut I say unto you, Resist not him that is evil: but whosoever smiteth thee on thy right cheek, turn to him the other also.\nI had first taken a room in a boardinghouse that was cheap and bleak and not at all well situated and was popular only among the youngest and least influential congressional aides and other useless wayfarers.\nAnd he spake also this parable unto certain who trusted in themselves that they were righteous, and set all others at nought:\nThe colonel asked for our help, I said.\nAll through that unsettled weather, I rode with Lieutenant Smith and his soldiers, scouring the coves for fugitives.\nIn like manner, that women adorn themselves in modest apparel, with shamefastness and sobriety; not with braided hair, and gold or pearls or costly raiment;\nThis is now the third time that Jesus was manifested to the disciples, after that he was risen from the dead.\nFor there is a disannulling of a foregoing commandment because of its weakness and unprofitableness\nStephen was inclined to defer to his wisdom.\n“I don’t see why you say a web is a miracle - it’s just a web.”\nAnd about that time there arose no small stir concerning the Way.\nFor the woman that hath a husband is bound by law to the husband while he liveth; but if the husband die, she is discharged from the law of the husband.\nUpon this Pilate sought to release him: but the Jews cried out, saying, If thou release this man, thou art not Cæsar’s friend: every one that maketh himself a king speaketh against Cæsar.\nThen you must also be a Littlefish, replied Littlefish.\nand all the brethren that are with me, unto the churches of Galatia:\nMuch less a family, three generations extending from Charley down to members not yet weaned and still wavery on their feet.\nCharley said, I’m abiding by the old lines.\nSmith rode half asleep with his reins loose and his pipestem clamped between his teeth.\nBut when he was well-nigh forty years old, it came into his heart to visit his brethren the children of Israel.\nMight have been.\nThe first time he woke, he heard Templeton gnawing a hole in the grain bin.\nAnd all the angels were standing round about the throne, and about the elders and the four living creatures; and they fell before the throne on their faces, and worshipped God,\nBut woe unto them that are with child and to them that give suck in those days!\nHear then ye the parable of the sower.\nAnd Paul said, I would to God, that whether with little or with much, not thou only, but also all that hear me this day, might become such as I am, except these bonds.\nBut he that endureth to the end, the same shall be saved.\nAnd I have seen, and have borne witness that this is the Son of God.\n“Anything wrong with the pig?”\nAs a result of overeating, Templeton grew bigger and fatter than any rat you ever saw. He was gigantic.\nAnd what thanks do I ever get for these services, I would like to know?  \nUp it looked as the stone fell from above.\nI always thought it a sign of their generosity that they found water spiritual even in a land so wet that water is more often a nuisance than anything else.\nWilbur had been feeling dizzier and dizzier through this long, complimentary speech.\nThe serpent went mad with the oil fumes.\nWe intend for you to help us bring in the runners, the colonel said.\nA woman when she is in travail hath sorrow, because her hour is come: but when she is delivered of the child, she remembereth no more the anguish, for the joy that a man is born into the world.\nAnd they shall not teach every man his fellow-citizen, And every man his brother, saying, Know the Lord: For all shall know me, From the least to the greatest of them.\nAnd in his name shall the Gentiles hope.\nSome of Wilbur’s friends in the barn worried for fear all this attention would go to his head and make him stuck up.\nWilbur cried himself to sleep.\n“I shall begin by calling the roll.\nAnd Peter went down to the men, and said, Behold, I am he whom ye seek: what is the cause wherefore ye are come?\nStrive to enter in by the narrow door: for many, I say unto you, shall seek to enter in, and shall not be able.\nGives me a chance to think.”\nthe son of Cainan, the son of Arphaxad, the son of Shem, the son of Noah, the son of Lamech,\nZuckerman and Lurvy and John Arable and the others will be back any minute now, and they'll shove you into that crate and away you'll go.\nbut chiefly them that walk after the flesh in the lust of defilement, and despise dominion. Daring, self-willed, they tremble not to rail at dignities:\nAnd he was with them going in and going out at Jerusalem,\nAnd I heard as it were a voice in the midst of the four living creatures saying, A measure of wheat for a shilling, and three measures of barley for a shilling; and the oil and the wine hurt thou not.\nAnd I wondered, but did not ask, how the size of my head might be worthy of such a superlative.\nHe went into the living room and sat down, and Mrs. Zuckerman followed.\nsaying with a great voice, Worthy is the Lamb that hath been slain to receive the power, and riches, and wisdom, and might, and honor, and glory, and blessing.\nAnd there he stayed until spring with the nicest, kindest tree.\nAnd these things will they do, because they have not known the Father, nor me.\nSalvation from our enemies, and from the hand of all that hate us;\n“I’m versatile.”\nAnd the armies which are in heaven followed him upon white horses, clothed in fine linen, white and pure.\nI can’t stand going to the Fair without you.\ncommunicating to the necessities of the saints; given to hospitality.\nMy true friend!”\nThe council decided to trap her in a pit and hoped that if all the warriors attacked her with arrows at the same time they could finally pierce her stony skin.\nThe boy watered the seed and kept the weeds away.\nWilbur went over backwards, writhing and twisting as he went.\nAnd there went forth a rumor concerning him into every place of the region round about.\nThis is what they do, he said.\naccounting the reproach of Christ greater riches than the treasures of Egypt: for he looked unto the recompense of reward.\nEveryone was tired and happy.\nEveryone was delighted.\nwho ought to have been here before thee, and to make accusation, if they had aught against me.\nHow much soever she glorified herself, and waxed wanton, so much give her of torment and mourning: for she saith in her heart, I sit a queen, and am no widow, and shall in no wise see mourning.\nCretans and Arabians, we hear them speaking in our tongues the mighty works of God.\nAnd I saw no temple therein: for the Lord God the Almighty, and the Lamb, are the temple thereof.\nStephen wanted to light it aflame, but Charlie held him back.\n“Well, I don’t really know yet,” said Mr. Zuckerman.\nIn the words of the spider's web, ladies and gentlemen, this is some pig.”\n“Come pig!”\nOn the other hand, after the fight at Horseshoe Bend, Jackson’s men cut bridle reins from the back hide of dead Creek warriors and collected their noses to verify the numeration of dead.\nAnd after six days Jesus taketh with him Peter, and James, and John, and bringeth them up into a high mountain apart by themselves: and he was transfigured before them;\nWoe unto you, ye that are full now! for ye shall hunger. Woe unto you, ye that laugh now! for ye shall mourn and weep.\nSmith went and looked in the shelters for weapons and found none.\nAnd he said unto them, It is one of the twelve, he that dippeth with me in the dish.\nThat's the reason the wolf walks around alone.\nNow them that are such we command and exhort in the Lord Jesus Christ, that with quietness they work, and eat their own bread.\nWhether then it be I or they, so we preach, and so ye believed.\nWhen it was completed, she felt hungry.\nAnd Peter opened his mouth, and said, Of a truth I perceive that God is no respecter of persons:\nWhose adorning let it not be the outward adorning of braiding the hair, and of wearing jewels of gold, or of putting on apparel;\nAnd Pilate asked him, saying, Art thou the King of the Jews? And he answered him and said, Thou sayest.\nWell then of course they all started screeching real loud like they do, and I was relieved to see my friend Michael standing there.\nHe that hath the bride is the bridegroom: but the friend of the bridegroom, that standeth and heareth him, rejoiceth greatly because of the bridegroom’s voice: this my joy therefore is made full.\nAnd when he was come into the house, the blind men came to him: and Jesus saith unto them, Believe ye that I am able to do this? They say unto him, Yea, Lord.\n“It’s the pig that’s unusual.\nAnd he touched her hand, and the fever left her; and she arose, and ministered unto him.\n“It's tremenjus.”\nThe people were coming.\nAnd to this agree the words of the prophets; as it is written,\n“And don’t cross the race track when the horses are coming!” cried Mrs. Zuckerman.\nDoes anybody here know how to spell ‘terrific’?’’ \nGoodbye.\nEven as David also pronounceth blessing upon the man, unto whom God reckoneth righteousness apart from works,\nFor ye died, and your life is hid with Christ in God.\n“The Fair only comes once a year.”\nAnd Peter said, Lord, speakest thou this parable unto us, or even unto all?\nand there was given to him a mouth speaking great things and blasphemies; and there was given to him authority to continue forty and two months.\nIts legs were grey and tan.\nA warm draft of rising air blew softly through the barn cellar.\nI went on and walked into camp and got between the people and their guns.\nlet no man beguile you in any wise: for it will not be, except the falling away come first, and the man of sin be revealed, the son of perdition,\nWherefore watch ye, remembering that by the space of three years I ceased not to admonish every one night and day with tears.\nConsider what I say; for the Lord shall give thee understanding in all things.\n“Wilbur’s out,” they said.\nI’m not going.\nWe can deal with that when we get there.\nand brought the ass, and the colt, and put on them their garments; and he sat thereon.\nThey wanted to live and so they climbed.\nFor whom the Lord loveth he chasteneth, And scourgeth every son whom he receiveth.\nFor those days shall be tribulation, such as there hath not been the like from the beginning of the creation which God created until now, and never shall be.\nAgain therefore the Pharisees also asked him how he received his sight. And he said unto them, He put clay upon mine eyes, and I washed, and I see.\nFor seeing that in the wisdom of God the world through its wisdom knew not God, it was God’s good pleasure through the foolishness of the preaching to save them that believe.\nfor as yet it was fallen upon none of them: only they had been baptized into the name of the Lord Jesus.\nAs many as I love, I reprove and chasten: be zealous therefore, and repent.\nSpearfinger forced the people to band together and find a way to kill her.\nYes.\nAnd he came in unto her, and said, Hail, thou that art highly favored, the Lord is with thee.\nAnd he said, How can I, except some one shall guide me? And he besought Philip to come up and sit with him.\nPerry pitched the pipe shards off into the dark and put the stem in his coat pocket until such time as he could buy another bowl or at least come upon a corncob he could core out and fit it to.\nsaying, Surely blessing I will bless thee, and multiplying I will multiply thee.\nI had many things to write unto thee, but I am unwilling to write them to thee with ink and pen:\nAnd Jesus said unto him, Why callest thou me good? none is good, save one, even God.\nHe was sad because his new friend was so bloodthirsty.\nit seemed good to me also, having traced the course of all things accurately from the first, to write unto thee in order, most excellent Theophilus;\nWe must advertise Wilbur’s noble qualities, not his tastiness.\nAnd hath raised up a horn of salvation for us In the house of his servant David\nAnd the high priest stood up in the midst, and asked Jesus, saying, Answerest thou nothing? what is it which these witness against thee?\nNow when John heard in the prison the works of the Christ, he sent by his disciples\nwho gave himself a ransom for all; the testimony to be borne in its own times;\nAnd forgive us our sins; for we ourselves also forgive every one that is indebted to us. And bring us not into temptation.\nThe young man saith unto him, All these things have I observed: what lack I yet?\n“What does ‘versatile’ mean—full of eggs?” asked Wilbur.\nBut if God doth so clothe the grass in the field, which to-day is, and to-morrow is cast into the oven; how much more shall he clothe you, O ye of little faith?\nIt is part of the soil.\nBut when Herod’s birthday came, the daughter of Herodias danced in the midst, and pleased Herod.\n“Yes, Wilbur?”\nAnd he came to Nazareth, where he had been brought up: and he entered, as his custom was, into the synagogue on the sabbath day, and stood up to read.\n“Probably-obably-obably about half-past eleven,” said the goose.\nWilbur was now the center of attraction on the farm.\nHereby know we love, because he laid down his life for us: and we ought to lay down our lives for the brethren.\nA fungus is a decomposer, too.\nShe looked pale and frightened.\nThen returned they unto Jerusalem from the mount called Olivet, which is nigh unto Jerusalem, a sabbath day’s journey off.\nHe found a bit of potato, chewed it carefully, swallowed it, and walked back to bed.\nAnd there came a poor widow, and she cast in two mites, which make a farthing.\n“Throw water on him!”\nAnd whensoever ye stand praying, forgive, if ye have aught against any one; that your Father also who is in heaven may forgive you your trespasses.\nAnd he said, Verily I say unto you, No prophet is acceptable in his own country.\nIt was no bigger than a grain of sand, no bigger than the head of a pin.\nFor Herod had laid hold on John, and bound him, and put him in prison for the sake of Herodias, his brother Philip’s wife.\nand Ram begat Amminadab; and Amminadab begat Nahshon; and Nahshon begat Salmon;\nAnd they that were in the boat worshipped him, saying, Of a truth thou art the Son of God.\nAnd thou Bethlehem, land of Judah, Art in no wise least among the princes of Judah: For out of thee shall come forth a governor, Who shall be shepherd of my people Israel.\nBut now, brethren, if I come unto you speaking with tongues, what shall I profit you, unless I speak to you either by way of revelation, or of knowledge, or of prophesying, or of teaching?\nDo therefore this that we say to thee: We have four men that have a vow on them;\nBut the centurion gave more heed to the master and to the owner of the ship, than to those things which were spoken by Paul.\nObey them that have the rule over you, and submit to them: for they watch in behalf of your souls, as they that shall give account; that they may do this with joy, and not with grief: for this were unprofitable for you.\nFor whosoever shall do the will of God, the same is my brother, and sister, and mother. \nIt was delicious.\nAnd they send unto him certain of the Pharisees and of the Herodians, that they might catch him in talk.\nThere were dozens and dozens of them.\nbecause they said, He hath an unclean spirit.\nAnd he doeth great signs, that he should even make fire to come down out of heaven upon the earth in the sight of men.\nlest coming suddenly he find you sleeping.\nThe yard of the stockade was packed with people, internees.\nThe Jews took up stones again to stone him.\nAnd about the eleventh hour he went out, and found others standing; and he saith unto them, Why stand ye here all the day idle?\nAnd when he had so said, there arose a dissension between the Pharisees and Sadducees; and the assembly was divided.\nI pray for them: I pray not for the world, but for those whom thou hast given me; for they are thine:\nAnd there he found a certain man named Aeneas, who had kept his bed eight years; for he was palsied.\n“Templeton,’ said Wilbur in desperation, “if you don't stop talking and get busy, all will be lost, and I will die of a broken heart.\nAnd when the brethren knew it, they brought him down to Cæsarea, and sent him forth to Tarsus.\nThey both grew tall and strong.\nyet for love’s sake I rather beseech, being such a one as Paul the aged, and now a prisoner also of Christ Jesus:\nand laid them at the apostles’ feet: and distribution was made unto each, according as any one had need.\nMajor Ridge and his wife chose to travel out to the new Nation by riverboat, quickly and uneventfully.\nMr. Zuckerman lay dreaming about Wilbur.\nBut when he came to himself he said, How many hired servants of my father’s have bread enough and to spare, and I perish here with hunger!\nAnd he went up unto them into the boat; and the wind ceased: and they were sore amazed in themselves;\nAnd one of them, a lawyer, asked him a question, trying him:\nAnd he came down to Capernaum, a city of Galilee. And he was teaching them on the sabbath day:\n“He lets me scratch him between the eyes.”\nIn love of the brethren be tenderly affectioned one to another; in honor preferring one another;\nBy faith we understand that the worlds have been framed by the word of God, so that what is seen hath not been made out of things which appear.\nWhat if God, willing to show his wrath, and to make his power known, endured with much longsuffering vessels of wrath fitted unto destruction:\n“So it’s ‘Hurry up, Templeton,’ is it?” he said.\nYes.\ndo ye not make distinctions among yourselves, and become judges with evil thoughts?\nAnd they seized him, and led him away, and brought him into the high priest’s house. But Peter followed afar off.\nLittle children, yet a little while I am with you. Ye shall seek me: and as I said unto the Jews, Whither I go, ye cannot come; so now I say unto you.\nJesus said, Make the people sit down. Now there was much grass in the place. So the men sat down, in number about five thousand.\nand the Lord make you to increase and abound in love one toward another, and toward all men, even as we also do toward you;\nBe not deceived: Evil companionships corrupt good morals.\nThe leaves will shake loose from the trees and fall.\nAnd if any was not found written in the book of life, he was cast into the lake of fire. \nThen goeth he, and taketh with himself seven other spirits more evil than himself, and they enter in and dwell there: and the last state of that man becometh worse than the first. Even so shall it be also unto this evil generation.\n“Charlotte!\nBut when Paul perceived that the one part were Sadducees and the other Pharisees, he cried out in the council, Brethren, I am a Pharisee, a son of Pharisees: touching the hope and resurrection of the dead I am called in question.\nWhen she got shoulder-deep she looked up into the strip of sky the river cut through the trees, a mirror of the river’s shape.\nBesides the Indians, bear and wolves and panthers still roamed all through these forests.\nThey did not know that under the straw was a rat, and inside a knothole was a big grey spider.\nAnd will be to you a Father, And ye shall be to me sons and daughters, saith the Lord Almighty.\nfor all these did of their superfluity cast in unto the gifts; but she of her want did cast in all the living that she had.\n“Run!” commanded Mrs. Arable, taking the pig from Fern and slipping a doughnut into her hand.\n“I’m going to make a night of it,” he said.\nFern lay dreaming that she was getting sick in the swings.\nFor ye are all sons of God, through faith, in Christ Jesus.\n“And remember, the money has to last all day.\nAnd Peter, fastening his eyes upon him, with John, said, Look on us.\nFor ye bear with a man, if he bringeth you into bondage, if he devoureth you, if he taketh you captive, if he exalteth himself, if he smiteth you on the face.\nNow therefore do ye with the council signify to the chief captain that he bring him down unto you, as though ye would judge of his case more exactly: and we, before he comes near, are ready to slay him.\nSave me!”\nhow shall we escape, if we neglect so great a salvation? which having at the first been spoken through the Lord, was confirmed unto us by them that heard;\nThen there come to Jesus from Jerusalem Pharisees and scribes, saying,\n“Charlotte,” said Wilbur after a while, “why are you so quiet?”\n“You see, Edith?\nAnd in this confidence I was minded to come first unto you, that ye might have a second benefit;\nAnd don’t bother the hens!”\nNow Beaver cut down the tree that the trap was tied to.\nBut I soon got the distinct impression that Mr. Chapman, whoever he had been, had long since passed to another world, or at least to an unimaginably distant state like Ohio or Illinois.\nAnd if any man would go to law with thee, and take away thy coat, let him have thy cloak also.\n“I will not be going back to the barn,” she said.\nIt is, therefore, to be regretted that these delusions of false hopes will only be dashed to the ground at the very period when it will be necessary to carry out the conditions of the treaty, and it is much to be feared that, referring to general principles of human nature, an irritation of feeling may grow out of their sudden disappointment and incite them to acts of desperation.\n“Well, I feel better about Fern,” said Mrs. Arable.\nthat they may all be one; even as thou, Father, art in me, and I in thee, that they also may be in us: that the world may believe that thou didst send me.\nbut I say unto you, Swear not at all; neither by the heaven, for it is the throne of God;\nFor for this cause ye pay tribute also; for they are ministers of God’s service, attending continually upon this very thing.\nAvery put the frog in his pocket and climbed to the hayloft.\nIn sorrow he sank to the ground and closed his eyes.\nBehold, the hour cometh, yea, is come, that ye shall be scattered, every man to his own, and shall leave me alone: and yet I am not alone, because the Father is with me.\nAnd I said, Lord, they themselves know that I imprisoned and beat in every synagogue them that believed on thee:\nAnd, ye fathers, provoke not your children to wrath: but nurture them in the chastening and admonition of the Lord.\nTheir saddles and rolled wool blankets served as backrests.\nI Paul write it with mine own hand, I will repay it: that I say not unto thee that thou owest to me even thine own self besides.\nWhen the treaty reached the White House, however, Jackson ranted against any exemptions whatsoever.\nThe men have been in ill temper and poor health.\nbut if there be no interpreter, let him keep silence in the church; and let him speak to himself, and to God.\nYou live with such choices until you die.\nPlease tell me where you are, if you are my friend!”\nThere is a lad here, who hath five barley loaves, and two fishes: but what are these among so many?\nAnd as he passed by, he saw Levi the son of Alphæus sitting at the place of toll, and he saith unto him, Follow me. And he arose and followed him.\nThe frog kicked, splashing soapy water onto the blueberry pie.\nThere’s nothing you can count on.\nAnd certain of them that stood there said unto them, What do ye, loosing the colt?\nAlexander the coppersmith did me much evil: the Lord will render to him according to his works:\nAnd Barnabas was minded to take with them John also, who was called Mark.\nfor the great day of their wrath is come; and who is able to stand?\nI've watched you all day and I like you.”\nFern raced off, ducking and dodging through the crowd, in search of Henry.\nAnd entering into the tomb, they saw a young man sitting on the right side, arrayed in a white robe; and they were amazed.\nThe bear was claimed to have measured a full arms’ span across at the ass.\nLet us therefore draw near with boldness unto the throne of grace, that we may receive mercy, and may find grace to help us in time of need. \nthe Lord knoweth how to deliver the godly out of temptation, and to keep the unrighteous under punishment unto the day of judgment;\n“His pie is all over his front.”\nFor this we say unto you by the word of the Lord, that we that are alive, that are left unto the coming of the Lord, shall in no wise precede them that are fallen asleep.\nFor the kingdom of God is not in word, but in power.\nCharley put his back to a big chestnut tree and slept sitting up, forehead to knees, cowled in his blanket.\nBe not carried away by divers and strange teachings: for it is good that the heart be established by grace; not by meats, wherein they that occupied themselves were not profited.\n… just to show how much I am loved.\nIt tasted of the minerals in the rock it had passed through.\nHe that believeth on me, as the scripture hath said, from within him shall flow rivers of living water.\nOne choice that lay before them was to go west as Jackson had commanded them to do.\nAnd as a mantle shalt thou roll them up, As a garment, and they shall be changed: But thou art the same, And thy years shall not fail.\nBill Axe’s cabin stood in a clearing of tulip trees above the north bank of the river.\nAnd there came to him his mother and brethren, and they could not come at him for the crowd.\nCooking grease for the entire winter.\nwhat think ye? They answered and said, He is worthy of death.\nAnd he charged them much that no man should know this: and he commanded that something should be given her to eat. \nNow the natural man receiveth not the things of the Spirit of God: for they are foolishness unto him; and he cannot know them, because they are spiritually judged.\nBut I determined this for myself, that I would not come again to you with sorrow.\nThe Indians are ignorant beyond all reckoning and the whites too, mostly the dregs of Scotland and Ireland fled here for lack of alternative.\nWherefore, receiving a kingdom that cannot be shaken, let us have grace, whereby we may offer service well-pleasing to God with reverence and awe:\n“Perhaps if you spin a web and catch a couple of flies you'll feel better.”\nIs it lawful for us to give tribute unto Cæsar, or not?\n“She’s eight.”\nBut when the Pharisees heard it, they said, This man doth not cast out demons, but by Beelzebub the prince of the demons.\n“Yes, I would, come to think of it,” replied Mrs. Arable.\nAnd they returned, and prepared spices and ointments. And on the sabbath they rested according to the commandment.\nAnd it came to pass, when the days were well-nigh come that he should be received up, he stedfastly set his face to go to Jerusalem,\nBut Jesus said unto them, For your hardness of heart he wrote you this commandment.\nThey fear them and fervently wish us to rout them out.\nBut now complete the doing also; that as there was the readiness to will, so there may be the completion also out of your ability.\nAs she worked, her eight legs were a great help to her.\nJesus wept.\nYou have chosen a hallowed doorway from which to string your webs.\nSo they burned his cabin down and turned his writing into smoke.\nAnd Peter answered, and said unto Jesus, Lord, it is good for us to be here: if thou wilt, I will make here three tabernacles; one for thee, and one for Moses, and one for Elijah.\nAnd every one that hath left houses, or brethren, or sisters, or father, or mother, or children, or lands, for my name’s sake, shall receive a hundredfold, and shall inherit eternal life.\nWilbur walked into his yard just at that moment.\nAnd others are they that are sown among the thorns; these are they that have heard the word,\nAnd Mary Magdalene and Mary the mother of Joses beheld where he was laid. \nthat I should be a minister of Christ Jesus unto the Gentiles, ministering the gospel of God, that the offering up of the Gentiles might be made acceptable, being sanctified by the Holy Spirit.\nAnd as it came to pass in the days of Noah, even so shall it be also in the days of the Son of man.\nRepent therefore; or else I come to thee quickly, and I will make war against them with the sword of my mouth.\nAnd he came to the second, and said likewise. And he answered and said, I go, sir: and went not.\nI fed you with milk, not with meat; for ye were not yet able to bear it: nay, not even now are ye able;\nHe sighed with relief.\nand should sleep and rise night and day, and the seed should spring up and grow, he knoweth not how.\nbut speaking truth in love, may grow up in all things into him, who is the head, even Christ;\nBut we are bound to give thanks to God always for you, brethren beloved of the Lord, for that God chose you from the beginning unto salvation in sanctification of the Spirit and belief of the truth:\nThe fish was thrashing wildly.\nFor God hath shut up all unto disobedience, that he might have mercy upon all.\nThe men stood a better chance of escape on their own.\nAnd on the morrow they entered into Cæsarea. And Cornelius was waiting for them, having called together his kinsmen and his near friends.\nBlessed be the God and Father of our Lord Jesus Christ, who hath blessed us with every spiritual blessing in the heavenly places in Christ:\nAnd when we entered into Rome, Paul was suffered to abide by himself with the soldier that guarded him.\nI said.\nDeadly markings it bore upon its carapace scales.\nJesus saith unto him, I say not unto thee, Until seven times; but, Until seventy times seven.\nFor the good which I would I do not: but the evil which I would not, that I practise.\nknowing that whatsoever good thing each one doeth, the same shall he receive again from the Lord, whether he be bond or free.\nHe had reached into his saddlebag and come out with a wooden stem and the shards of a yellowed clay pipe bowl cupped in his palm.\nHe is the stone which was set at nought of you the builders, which was made the head of the corner.\n“Why does he have to stay up all night, grinding his clashers and destroying people's property?\nThe dissolution of the Nation and the exile of its people to the West had no bearing on our situation, for we owned our land outright.\nNow Philip was from Bethsaida, of the city of Andrew and Peter.\nHardly anybody around the farm had a good word to say for a ﬂy.\nBut thou hast a few names in Sardis that did not defile their garments: and they shall walk with me in white; for they are worthy.\nFor I know nothing against myself; yet am I not hereby justified: but he that judgeth me is the Lord.\nHe was just about to raise his stick to hit Charlotte when he lost his balance.\"For the prophecy came not in old time by the will of man: but holy men of God spake as they were moved by the Holy Ghost.\"\nPeter 1:21\nGenesis\nChapter 1\nIn the beginning God created the heaven and the earth.\nAnd the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters.\nAnd God said, Let there be light: and there was light.\nAnd God saw the light, that it was good: and God divided the light from the darkness.\nAnd God called the light Day, and the darkness he called Night. And the evening and the morning were the first day.\nAnd God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters.\nAnd God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so.\nAnd God called the firmament Heaven, And the evening and the morning were the second day.\nAnd God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so.\nAnd God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good.\nAnd God said, Let the earth bring forth grass, the herb yielding seed, and the fruit tree yielding fruit after his kind, whose seed is in itself, upon the earth: and it was so.\nAnd the earth brought forth grass, and herb yielding seed after his kind, and the tree yielding fruit, whose seed was in itself, after his kind: and God saw that it was good.\nAnd the evening and the morning were the third day.\nAnd God said, Let there be lights in e firmament of the heaven to divide Ne day from the night; and let them be for signs, and for seasons, and for Ways, and years:\nAnd let them be for lights in the firmament of the heaven to give light upon the earth: and it was so.\nAnd God made two great lights; the greater light to rule the day, and the lesser light to rule the night: he made the stars also.\nAnd God set them in the firmament of the heaven to give light upon the earth,\nAnd to rule over the day and over the night, and to divide the light from the darkness: and God saw that it was good.\nAnd the evening and the morning were the fourth day.\nAnd God said, Let the waters bring forth abundantly the moving creature that hath life, and fowl that may fly above the earth in the open firmament of heaven.\nAnd God created great whales, and every living creature that moveth, which the waters brought forth abundantly, after their kind, and every winged fowl after his kind: and God saw that it was good.\nAnd God blessed them, saying, Be (fruitful, and multiply, and fill the waters in the seas, and let fowl multiply in the earth.\nAnd the evening and the morning were the fifth day.\nAnd God said, Let the earth bring forth the living creature after his kind, cattle, and creeping thing, and beast of the earth after his kind: and it was so.\nAnd God made the beast of the earth after his kind, and cattle after their kind, and every thing that creepeth upon the earth after his kind: and God saw that it was good.\nAnd God said, Let us make man in our image, after our likeness: and let them have dominion over the fish of the sea, and over the fowl of the air, and over the cattle, and over all the earth, and over every creeping thing that creepeth upon the earth.\nSo God created man in his own image, in the image of God created he him; male and female created he them.\nAnd God blessed them, and God said unto them, Be fruitful, and multiply, and replenish the earth, and subdue it: and have dominion over the fish of the sea, and over the fowl of the air, and over every living thing that moveth upon the earth.\nAnd God said, Behold, I have given you every herb bearing seed, which is upon the face of all the earth, and every tree, in the which is the fruit of a tree yielding seed; to you it shall be for meat.\nAnd to every beast of the earth, and to every fowl of the air, and to every thing that creepeth upon the earth, wherein there is life, have given every green herb for meat: and it was so.\nAnd God saw every thing that he had made, and, behold, it was very good. And the evening and the morning were the sixth day.\nChapter 2\nThus the heavens and the earth were finished, and all the host of them.\nAnd on the seventh day God ended his work which he had made; and he rested on the seventh day from all his work which he had made.\nAnd God blessed the seventh day, and sanctified it: because that in it he had rested from all his work which God created and made.\nThese are the generations of the heavens and of the earth when they were created, in the day that the LORD God made the earth and the heavens,\nAndevery plant of the field before it was in the earth, and every herb of the field before it grew: for the LORD God had not caused it to rain upon the earth, and there was not a man to till the ground.\nBut there went up a mist from the earth, and watered the whole face of the ground.\nAnd the LORD God formed man of the dust of the ground, and breathed into his nostrils the breath of life; and man became a living soul.\nAnd the LORD God planted a garden eastward in Eden; and there he put the man whom he had formed.\nAnd out of the ground made the LORD God to grow every tree that is pleasant to the sight, and good for food; the tree of life also in the midst of the garden, and the tree of knowledge of good and evil.\nAnd a river went out of Eden to water the garden; and from thence it was parted, and became into four heads.\nThe name of the first is Pison: that is it which compasseth the whole land of Havilah, where there is gold;\nAnd the gold of that land is good: there is bdellium and the onyx stone.\nAnd the name of the second river is Gihon: the same is it that compasseth the whole land of Ethiopia.\nAnd the name of the third river is Hiddekel: that is it which goeth toward the east of Assyria. And the fourth river is Euphrates.\nAnd the LORD God took the man, and put him into the garden of Eden to dress it and to keep it.\nAnd the LORD God commanded the man, saying, Of every tree of the garden thou mayest freely eat:\nBut of the tree of the knowledge of good and evil, thou shalt not eat of it: for in the day that thou eatest thereof thou shalt surely die.\nAnd the LORD God said, It is not good that the man should be alone; I will make him an help meet for him.\nAnd out of the ground the LORD God formed every beast of the field, and every fowl of the air; and brought them unto Adam to see what he would call them: and whatsoever Adam called every living creature, that was the name thereof.\nAnd Adam gave names to all cattle, and to the fowl of the air, and to every beast of the field; but for Adam there was not found an help meet for him.\nAnd the LORD God caused a deep sleep to fall upon Adam, and he slept: and he took one of his ribs, and closed up the flesh instead thereof;\nAnd the rib, which the LORD God had taken from man, made he a woman, and brought her unto the man.\nAnd Adam said, This is now bone of my bones, and flesh of my flesh: she shall be called Woman, because she was taken out of Man.\nTherefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh.\nAnd they were both naked, the man and his wife, and were not ashamed.\nChapter 3\nNow the serpent was more subtil than any beast of the field which the LORD God had made. And he said unto the woman, Yea, hath God said, Ye shall not eat of every tree of the garden?\nAnd the woman said unto the serpent, We may eat of the fruit of the trees of the garden:\nBut of the fruit of the tree which is in the midst of the garden, God hath said, Ye shall not eat of it, neither shall ye touch it, lest ye die.\nAnd the serpent said unto the woman, Ye shall not surely die:\nFor God doth know that in the day ye eat thereof, then your eyes shall be opened, and ye shall be as gods, knowing good and evil.\nAnd when the woman saw that the tree was good for food, and that it was pleasant to the eyes, and a tree to be desired to make one wise, she took of the fruit thereof, and did eat, and gave also unto her husband with her; and he did eat.\nAnd the eyes of them both were opened, and they knew that they were naked; and they sewed fig leaves together, and made themselves aprons.\nAnd they heard the voice of the LORD God walking in the garden in the cool of the day: and Adam and his wife hid themselves from the presence of the LORD God amongst the trees of the garden.\nAnd the LORD God called unto Adam, and said unto him, Where art thou?\nAnd he said, I heard thy voice in the garden, and I was afraid, because I was naked; and I hid myself.\nAnd he said, Who told thee that thou wast naked? Hast thou eaten of the tree, whereof I commanded thee that thou shouldest not eat?\nAnd the man said, The woman whom thou gavest to be with me, she gave me of the tree, and I did eat.\nAnd the LORD God said unto the woman, What is this that thou hast done? And the woman said, The serpent beguiled me, and I did eat.\nAnd the LORD God said unto the serpent, Because thou hast done this, thou art cursed above all cattle, and above every beast of the field; upon thy belly shalt thou go, and dust shalt thou eat all the days of thy life:\nAndI will put enmity between thee and the woman, and between thy seed and her seed; it shall bruise thy head, and thou shalt bruise his heel.\nUnto the woman he said, I will greatly multiply thy sorrow and thy conception; in sorrow thou shalt bring forth children; and thy desire shall be to thy husband, and he shall rule over thee.\nAnd unto Adam he said, Because thou hast hearkened unto the voice of thy wife, and hast eaten of the tree, of which I commanded thee, saying, Thou shalt not eat of it: cursed is the ground for thy sake; in sorrow shalt thou eat of it all the days of thy life;\nThorns also and thistles shall it bring forth to thee; and thou shalt eat the herb of the field;\nIn the sweat of thy face shalt thou eat bread, till thou return unto the ground; for out of it wast thou taken: for dust thou art, and unto dust shalt thou return.\nAnd Adam called his wife’s name Eve; because she was the mother of all living.\nUnto Adam also and to his wife did the LORD God make coats of skins, and clothed them.\nAnd the LORD God said, Behold, the man is become as one of us, to know good and evil: and now, lest he put forth his hand, and take also of the tree of life, and eat, and live for ever:\nTherefore the LORD God sent him forth from the garden of Eden, to till the ground from whence he was taken.\nSo he drove out the man; and he placed at the east of the garden of Eden Cherubims, and a flaming sword which turned every way, to keep the way of the tree of life.\nChapter 4\nAnd Adam knew Eve his wife; and she conceived, and bare Cain, and said, I have gotten a man from the LORD.\nAnd she again bare his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground.\nAnd in process of time it came to pass, that Cain brought of the fruit of the ground an offering unto the LORD.\nAnd Abel, he also brought of the firstlings of his flock and of the fat thereof. And the LORD had respect unto Abel and to his offering:\nBut unto Cain and to his offering he had not respect. And Cain was very wroth, and his countenance fell.\nAnd the LORD said unto Cain, Why art thou wroth? and why is thy countenance fallen?\nIf thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto thee shall be his desire, and thou shalt rule over him.\nAnd Cain talked with Abel his brother: and it came to pass, when they were in the field, that Cain rose up against Abel his brother, and slew him.\nAnd the LORD said unto Cain, Where is Abel thy brother? And he said, I know not: Am I my brother’s keeper?\nAnd he said, What hast thou done? the voice of thy brother’s blood crieth unto me from the ground.\nAnd now art thou cursed from the earth, which hath opened her mouth to receive thy brother’s blood from thy hand;\nWhen thou tillest the ground, it shall not henceforth yield unto thee her strength; a fugitive and a vagabond shalt thou be in the earth.\nAnd Cain said unto the LORD, My punishment is greater than I can bear.\nBehold, thou hast driven me out this day from the face of the earth; and from thy face shall I be hid; and I shall be a fugitive and a vagabond in the earth; and it shall come to pass, that every one that findeth me shall slay me.\nAnd the LORD said unto him, Therefore whosoever slayeth Cain, vengeance shall be taken on him sevenfold. And the LORD set a mark upon Cain, lest any finding him should kill him.\nAnd Cain went out from the presence of the LORD, and dwelt in the land of Nod, on the east of Eden.\nAnd Cain knew his wife; and she conceived, and bare Enoch: and he builded a city, and called the name of the city, after the name of his son, Enoch.\nAnd unto Enoch was born Irad: and Irad begat Mehujael: and Mehujael begat Methusael: and Methusael begat Lamech.\nAnd Lamech took unto him two wives: the name of the one was Adah, and the name of the other Zillah.\nAnd Adah bare Jabal: he was the father of such as dwell in tents, and of such as have cattle.\nAnd his brother’s name was Jubal: he was the father of all such as handle the harp and organ.\nAnd Zillah, she also bare Tubalcain, an instructer of every artificer in brass and iron: and the sister of Tubalcain was Naamah.\nAnd Lamech said unto his wives, Adah and Zillah, Hear my voice; ye wives of Lamech, hearken unto my speech: for I have slain a man to my wounding, and a young man to my hurt.\nIf Cain shall be avenged sevenfold, truly Lamech seventy and sevenfold.\nAnd Adam knew his wife again; and she bare a son, and called his name Seth: For God, said she, hath appointed me another seed instead of Abel, whom Cain slew.\nAnd to Seth, to him also there was born a son; and he called his name Enos: then began men to call upon the name of the LORD.\nChapter 5\nThis is the book of the generations of Adam. In the day that God created man, in the likeness of God made he him;\nMale and female created he them; and blessed them, and called their name Adam, in the day when they were created.\nAnd Adam lived an hundred and thirty years, and begat a son in his own likeness, after his image; and called his name Seth:\nAnd the days of Adam after he had begotten Seth were eight hundred years: and he begat sons and daughters:\nAnd all the days that Adam lived were nine hundred and thirty years: and he died.\nAnd Seth lived an hundred and five years, and begat Enos:\nAnd Seth lived after he begat Enos eight hundred and seven years, and begat sons and daughters:\nAnd all the days of Seth were nine hundred and twelve years: and he died.\nAnd Enos lived ninety years, and begat Cainan:\nAnd Enos lived after he begat Cainan eight hundred and fifteen years, and begat sons and daughters:\nAnd all the days of Enos were nine hundred and five years: and he died.\nAnd Cainan lived seventy years, and begat Mahalaleel:\nAnd Cainan lived after he begat Mahalaleel eight hundred and forty years, and begat sons and daughters:\nAnd all the days of Cainan were nine hundred and ten years: and he died.\nAnd Mahalaleel lived sixty and five years, and begat Jared:\nAnd Mahalaleel lived after he begat Jared eight hundred and thirty years, and begat sons and daughters:\nAnd all the days of Mahalaleel were eight hundred ninety and five years: and he died.\nAnd Jared lived an hundred sixty and two years, and he begat Enoch:\nAnd Jared lived after he begat Enoch eight hundred years, and begat sons and daughters:\nAnd all the days of Jared were nine hundred sixty and two years: and he died.\nAnd Enoch lived sixty and five years, and begat Methuselah:\nAnd Enoch walked with God after he begat Methuselah three hundred years, and begat sons and daughters:\nAnd all the days of Enoch were three hundred sixty and five years:\nAnd Enoch walked with God: and he was not; for God took him.\nAnd Methuselah lived an hundred eighty and seven years, and begat Lamech:\nAnd Methuselah lived after he begat Lamech seven hundred eighty and two years, and begat sons and daughters:\nAnd all the days of Methuselah were nine hundred sixty and nine years: and he died.\nAnd Lamech lived an hundred eighty and two years, and begat a son:\nAnd he called his name Noah, saying, This same shall comfort us concerning our work and toil of our hands, because of the ground which the LORD hath cursed.\nAnd Lamech lived after he begat Noah five hundred ninety and five years, and begat sons and daughters:\nAnd all the days of Lamech were seven hundred seventy and seven years: and he died.\nAnd Noah was five hundred years old: and Noah begat Shem, Ham, and Japheth.\nChapter 6\nAnd it came to pass, when men began to multiply on the face of the earth, and daughters were born unto them,\nThat the sons of God saw the daughters of men that they were fair; and they took them wives of all which they chose.\nAnd the LORD said, My spirit shall not always strive with man, for that he also is flesh: yet his days shall be an hundred and twenty years.\nThere were giants in the earth in those days; and also after that, when the sons of God came in unto the daughters of men, and they bare children to them, the same became mighty men which were of old, men of renown.\nAnd GOD saw that the wickedness of man was great in the earth, and that every imagination of the thoughts of his heart was only evil continually.\nAnd it repented the LORD that he had made man on the earth, and it grieved him at his heart.\nAnd the LORD said, I will destroy man whom I have created from the face of the earth; both man, and beast, and the creeping thing, and the fowls of the air; for it repenteth me that have made them.\nBut Noah found grace in the eyes of the LORD.\nThese are the generations of Noah: Noah was a just man and perfect in his generations, and Noah walked with God.\nAnd Noah begat three sons, Shem, Ham, and Japheth.\nThe earth also was corrupt before God, and the earth was filled with violence.\nAnd God looked upon the earth, and, behold, it was corrupt; for all flesh had corrupted his way upon the earth.\nAnd God said unto Noah, The end of all flesh is come before me; for the earth is filled with violence through them; and, behold, I will destroy them with the earth.\nMake thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch.\nAnd this is the fashion which thou shalt make it of: The length of the ark shall be three hundred cubits, the breadth of it fifty cubits, and the height of it thirty cubits.\nA window shalt thou make to the ark, and in a cubit shalt thou finish it above; and the door of the ark shalt thou set in the side thereof; with lower, second, and third stories shalt thou make it.\nAnd, behold, I, even I, do bring a flood of waters upon the earth, to destroy all flesh, wherein is the breath of life, from under heaven; and every thing that is in the earth shall die.\nBut with thee will I establish my covenant; and thou shalt come into the ark, thou, and thy sons, and thy wife, and thy sons’ wives with thee.\nAnd of every living thing of all flesh, two of every sort shalt thou bring into the ark, to keep them alive with thee; they shall be male and female.\nOf fowls after their kind, and of cattle after their kind, of every creeping thing of the earth after his kind, two of every sort shall come unto thee, to keep them alive.\nAnd take thou unto thee of all food that is eaten, and thou shalt gather it to thee; and it shall be for food for thee, and for them.\nThus did Noah; according to all that God commanded him, so did he.\nChapter 7\nAnd the LORD said unto Noah, Come thou and all thy house into the ark; for thee have I seen righteous before me in this generation.\nOf every clean beast thou shalt take to thee by sevens, the male and his female: and of beasts that are not clean by two, the male and his female.\nOf fowls also of the air by sevens, the male and the female; to keep seed alive upon the face of all the earth.\nFor yet seven days, and I will cause it to rain upon the earth forty days and forty nights; and every living substance that I have made will I destroy from off the face of the earth.\nAnd Noah did according unto all that the LORD commanded him.\nAnd Noah was six hundred years old when the flood of waters was upon the earth.\nAnd Noah went in, and his sons, and his wife, and his sons’ wives with him, into the ark, because of the waters of the flood.\nOf clean beasts, and of beasts that are not clean, and of fowls, and of every thing that creepeth upon the earth,\nThere went in two and two unto Noah into the ark, the male and the female, as God had commanded Noah.\nAnd it came to pass after seven days, that the waters of the flood were upon the earth.\nIn the six hundredth year of Noah’s life, in the second month, the seventeenth day of the month, the same day were all the fountains of the great deep broken up, and the windows of heaven were opened.\nAnd the rain was upon the earth forty days and forty nights.\nIn the selfsame day entered Noah, and Shem, and Ham, and Japheth, the sons of Noah, and Noah’s wife, and the three wives of his sons with them, into the ark;\nThey, and every beast after his kind, and all the cattle after their kind, and every creeping thing that creepeth upon the earth after his kind, and every fowl after his kind, every bird of every sort.\nAnd they went in unto Noah into the ark, two and two of all flesh, wherein is the breath of life.\nAnd they that went in, went in male and female of all flesh, as God had commanded him: and the LORD shut him in.\nAnd the flood was forty days upon the earth; and the waters increased, and bare up the ark, and it was lift up above the earth.\nAnd the waters prevailed, and were increased greatly upon the earth; and the ark went upon the face of the waters.\nAnd the waters prevailed exceedingly upon the earth; and all the high hills, that were under the whole heaven, were covered.\nFifteen cubits upward did the waters prevail; and the mountains were covered.\nAnd all flesh died that moved upon the earth, both of fowl, and of cattle, and of beast, and of every creeping thing that creepeth upon the earth, and every man:\nAll in whose nostrils was the breath of life, of all that was in the dry land, died.\nAnd every living substance was destroyed which was upon the face of the ground, both man, and cattle, and the creeping things, and the fowl of the heaven; and they were destroyed from the earth: and Noah only remained alive, and they that were with him in the ark.\nAnd the waters prevailed upon the earth an hundred and fifty days.\nChapter 8\nAnd God remembered Noah, and every living thing, and all the cattle that was with him in the ark: and God made a wind to pass over the earth, and the waters asswaged;\nThe fountains also of the deep and the windows of heaven were stopped, and the rain from heaven was restrained;\nAnd the waters returned from off the earth continually: and after the end of the hundred and fifty days the waters were abated.\nAnd the ark rested in the seventh month, on the seventeenth day of the month, upon the mountains of Ararat.\nAnd the waters decreased continually until the tenth month: in the tenth month, on the first day of the month, were the tops of the mountains seen.\nAnd it came to pass at the end of forty days, that Noah opened the window of the ark which he had made:\nAnd he sent forth a raven, which went forth to and fro, until the waters were dried up from off the earth.\nAlso he sent forth a dove from him, to see if the waters were abated from off the face of the ground;\nBut the dove found no rest for the sole of her foot, and she returned unto him into the ark, for the waters were on the face of the whole earth: then he put forth his hand, and took her, and pulled her in unto him into the ark.\nAnd he stayed yet other seven days; and again he sent forth the dove out of the ark;\nAnd the dove came in to him in the evening; and, lo, in her mouth was an olive leaf pluckt off: so Noah knew that the waters were abated from off the earth.\nAnd he stayed yet other seven days; and sent forth the dove; which returned not again unto him any more.\nAnd it came to pass in the six hundredth and first year, in the first month, the first day of the month, the waters were dried up from off the earth: and Noah removed the covering of the ark, and looked, and, behold, the face of the ground was dry.\nAnd in the second month, on the seven and twentieth day of the month, was the earth dried.\nAnd God spake unto Noah, saying,\nGo forth of the ark, thou, and thy wife, and thy sons, and thy sons’ wives with thee.\nBring forth with thee every living thing that is with thee, of all flesh, both of fowl, and of cattle, and of every creeping thing that creepeth upon the earth; that they may breed abundantly in the earth, and be fruitful, and multiply upon the earth.\nAnd Noah went forth, and his sons, and his wife, and his sons’ wives with him:\nEvery beast, every creeping thing, and every fowl, and whatsoever creepeth upon the earth, after their kinds, went forth out of the ark.\nAnd Noah builded an altar unto the LORD; and took of every clean beast, and of every clean fowl, and offered purnt offerings on the altar.\nAnd the LORD smelled a sweet savour; and the LORD said in his heart, I will not again curse the ground any more for man’s sake; for the imagination of man’s heart is evil from his youth; neither will I again smite any more every thing living, as I have done.\nWhile the earth remaineth, seedtime and harvest, and cold and heat, and summer and winter, and day and night shall not cease.\nChapter 9\nAnd God blessed Noah and his sons, and said unto them, Be fruitful, and multiply, and replenish the earth.\nAnd the fear of you and the dread of you shall be upon every beast of the earth, and upon every fowl of the air, upon all that moveth upon the earth, and upon all the fishes of the sea; into your hand are they delivered.\nEvery moving thing that liveth shall be meat for you; even as the green herb have I given you all things.\nBut flesh with the life thereof, which is the blood thereof, shall ye not eat.\nAnd surely your blood of your lives will I require; at the hand of every beast will I require it, and at the hand of man; at the hand of every man’s brother will I require the life of man.\nWhoso sheddeth man’s blood, by man shall his blood be shed: for in the image of God made he man.\nAnd you, be ye fruitful, and multiply; bring forth abundantly in the earth, and multiply therein.\nAnd God spake unto Noah, and to his sons with him, saying,\nAnd I, behold, I establish my covenant with you, and with your seed after you;\nAnd with every living creature that is with you, of the fowl, of the cattle, and of every beast of the earth with you; from all that go out of the ark, to every beast of the earth.\nAnd I will establish my covenant with you; neither shall all flesh be cut off any more by the waters of a flood; neither shall there any more be a flood to destroy the earth.\nAnd God said, This is the token of the covenant which I make between me and you and every living creature that is with you, for perpetual generations:\nI do set my bow in the cloud, and it shall be for a token of a covenant between me and the earth.\nAnd it shall come to pass, when I bring a cloud over the earth, that the bow shall be seen in the cloud:\nAnd I will remember my covenant, which is between me and you and every living creature of all flesh; and the waters shall no more become a flood to destroy all flesh.\nAnd the bow shall be in the cloud; and I will look upon it, that I may remember the everlasting covenant between God and every living creature of all flesh that is upon the earth.\nAnd God said unto Noah, This is the token of the covenant, which I have established between me and all flesh that is upon the earth.\nAnd the sons of Noah, that went forth of the ark, were Shem, and Ham, and Japheth: and Ham is the father of Canaan.\nThese are the three sons of Noah: and of them was the whole earth overspread.\nAnd Noah began to be an husbandman, and he planted a vineyard:\nAnd he drank of the wine, and was drunken; and he was uncovered within his tent.\nAnd Ham, the father of Canaan, saw the nakedness of his father, and told his two brethren without.\nAnd Shem and Japheth took a garment, and laid it upon both their shoulders, and went backward, and covered the nakedness of their father; and their faces were backward, and they saw not their father’s nakedness.\nAnd Noah awoke from his wine, and knew what his younger son had done unto him.\nAnd he said, Cursed be Canaan; a servant of servants shall he be unto his brethren.\nAnd he said, Blessed be the LORD God of Shem; and Canaan shall be his servant.\nGod shall enlarge Japheth, and he shall dwell in the tents of Shem; and Canaan shall be his servant.\nAnd Noah lived after the flood three hundred and fifty years.\nAnd all the days of Noah were nine hundred and fifty years: and he died.\nChapter 10\nNow these are the generations of the sons of Noah, Shem, Ham, and Japheth: and unto them were sons born after the flood.\nThe sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.\nAnd the sons of Gomer; Ashkenaz, and Riphath, and Togarmah.\nAnd the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.\nBy these were the isles of the Gentiles divided in their lands; every one after his tongue, after their families, in their nations.\nAnd the sons of Ham; Cush, and Mizraim, and Phut, and Canaan.\nAnd the sons of Cush; Seba, and Havilah, and Sabtah, and Raamah, and Sabtecha: and the sons of Raamah; Sheba, and Dedan.\nAnd Cush begat Nimrod: he began to be a mighty one in the earth.\nHe was a mighty hunter before the LORD: wherefore it is said, Even as Nimrod the mighty hunter before the LORD.\nAnd the beginning of his kingdom was Babel, and Erech, and Accad, and Calneh, in the land of Shinar.\nOut of that land went forth Asshur, and builded Nineveh, and the city Rehoboth, and Calah,\nAnd Resen between Nineveh and Calah: the same is a great city.\nAnd Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,\nAnd Pathrusim, and Casluhim, (out of whom came Philistim,) and Caphtorim.\nAnd Canaan begat Sidon his firstborn, and Heth,\nAnd the Jebusite, and the Amorite, and the Girgasite,\nAnd the Hivite, and the Arkite, and the Sinite,\nAnd the Arvadite, and the Zemarite, and the Hamathite: and afterward were the families of the Canaanites spread abroad.\nAnd the border of the Canaanites was from Sidon, as thou comest to Gerar, unto Gaza; as thou goest, unto Sodom, and Gomorrah, and Admah, and Zeboim, even unto Lasha.\nThese are the sons of Ham, after their families, after their tongues, in their countries, and in their nations.\nUnto Shem also, the father of all the children of Eber, the brother of Japheth the elder, even to him were children born.\n22, The children of Shem; Elam, and Asshur, and Arphaxad, and Lud, and\nAnd the children of Aram; Uz, and Hul, and Gether, and Mash.\nAnd Arphaxad begat Salah; and Salah begat Eber.\nAnd unto Eber were born two sons: the name of one was Peleg; for in his days was the earth divided; and his brother’s name was Joktan.\nAnd Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,\nAnd Hadoram, and Uzal, and Diklah,\nAnd Obal, and Abimael, and Sheba,\nAnd Ophir, and Havilah, and Jobab: all these were the sons of Joktan.\nAnd their dwelling was from Mesha, as thou goest unto Sephar a mount of the east.\nThese are the sons of Shem, after their families, after their tongues, in their lands, after their nations.\nThese are the families of the sons of Noah, after their generations, in their nations: and by these were the nations divided in the earth after the flood.\nChapter 11\nAnd the whole earth was of one language, and of one speech.\nAnd it came to pass, as they journeyed from the east, that they found a plain in the land of Shinar; and they dwelt there.\nAnd they said one to another, Go to, let us make brick, and burn them throughly. And they had brick for stone, and slime had they for morter.\nAnd they said, Go to, let us build us a city and a tower, whose top may reach unto heaven; and let us make us a name, lest we be scattered abroad upon the face of the whole earth.\nAnd the LORD came down to see the city and the tower, which the children of men builded.\nAnd the LORD said, Behold, the people is one, and they have all one language; and this they begin to do: and now nothing will be restrained from them, which they have imagined to do.\nGo to, let us go down, and there confound their language, that they may not understand one another’s speech.\nSo the LORD scattered them abroad from thence upon the face of all the earth: and they left off to build the city.\nTherefore is the name of it called Babel; because the LORD did there confound the language of all the earth: and from thence did the LORD scatter them abroad upon the face of all the earth.\nThese are the generations of Shem: Shem was an hundred years old, and begat Arphaxad two years after the flood:\nAnd Shem lived after he begat Arphaxad five hundred years, and begat sons and daughters.\nAnd Arphaxad lived five and thirty years, and begat Salah:\nAnd Arphaxad lived after he begat Salah four hundred and three years, and begat sons and daughters.\nAnd Salah lived thirty years, and begat Eber:\nAnd Salah lived after he begat Eber four hundred and three years, and begat sons and daughters.\nAnd Eber lived four and thirty years, and begat Peleg:\nAnd Eber lived after he begat Peleg four hundred and thirty years, and beat sons and daughters.\nAnd Peleg lived thirty years, and begat Reu:\nAnd Peleg lived after he begat Reu two hundred and nine years, and begat sons and daughters.\nAnd Reu lived two and thirty years, and begat Serug:\nAnd Reu lived after he begat Serug two hundred and seven years, and begat sons and daughters.\nAnd Serug lived thirty years, and begat Nahor:\nAnd Serug lived after he begat Nahor two hundred years, and begat sons and daughters.\nAnd Nahor lived nine and twenty years, and begat Terah:\nAnd Nahor lived after he begat Terah an hundred and nineteen years, and begat sons and daughters.\nAnd Terah lived seventy years, and begat Abram, Nahor, and Haran.\nNow these are the generations of Terah: Terah begat Abram, Nahor, and Haran; and Haran begat Lot.\nAnd Haran died before his father Terah in the land of his nativity, in Ur of the Chaldees.\nAnd Abram and Nahor took them wives: the name of Abram’s wife was Sarai; and the name of Nahor’s wife, Milcah, the daughter of Haran, the father of Milcah, and the father of Iscah.\nBut Sarai was barren; she had no child.\nAnd Terah took Abram his son, and Lot the son of Haran his son’s son, and Sarai his daughter in law, his son Abram’s wife; and they went forth with them from Ur of the Chaldees, to go into the land of Canaan; and they came unto Haran, and dwelt there.\nAnd the days of Terah were two hundred and five years: and Terah died in Haran.\nChapter 12\nNow the LORD had said unto Abram, Get thee out of thy country, and from thy kindred, and from thy father’s house, unto a land that I will shew thee:\nAnd I will make of thee a great nation, and I will bless thee, and make thy name great; and thou shalt be a blessing:\nAnd I will bless them that bless thee, and curse him that curseth thee: and in thee shall all families of the earth be blessed.\nSo Abram departed, as the LORD had spoken unto him; and Lot went with him: and Abram was seventy and five years old when he departed out of Haran.\nAnd Abram took Sarai his wife, and Lot his brother’s son, and all their substance that they had gathered, and the souls that they had gotten in Haran; and they went forth to go into the land of Canaan; and into the land of Canaan they came.\nAnd Abram passed through the land unto the place of Sichem, unto the plain of Moreh. And the Canaanite was then in the land.\nAnd the LORD appeared unto Abram, and said, Unto thy seed will I give this land: and there builded he an altar unto the LORD, who appeared unto him.\nAnd he removed from thence unto a mountain on the east of Beth-el, and pitched his tent, having Beth-el on the west, and Hai on the east: and there he builded an altar unto the LORD, and called upon the name of the LORD.\nAnd Abram journeyed, going on still toward the south.\nAnd there was a famine in the land: and Abram went down into Egypt to sojourn there; for the famine was grievous in the land.\nAnd it came to pass, when he was come near to enter into Egypt, that he said unto Sarai his wife, Behold now, I know that thou art a fair woman to look upon:\nTherefore it shall come to pass, when the Egyptians shall see thee, that they shall say, This is his wife: and they will kill me, but they will save thee alive.\nSay, I pray thee, thou art my sister: that it may be well with me for thy sake; and my soul shall live because of thee.\nAnd it came to pass, that, when Abram was come into Egypt, the Egyptians beheld the woman that she was very fair.\nThe princes also of Pharaoh saw her, and commended her before Pharaoh: and the woman was taken into Pharaoh’s house.\nAnd he entreated Abram well for her sake: and he had sheep, and oxen, and he asses, and menservants, and maidservants, and she asses, and camels.\nAnd the LORD plagued Pharaoh and his house with great plagues because of Sarai Abram’s wife.\nAnd Pharaoh called Abram, and said, What is this that thou hast done unto me? why didst thou not tell me that she was thy wife?\nWhy saidst thou, She is my sister? so I might have taken her to me to wife: Now therefore behold thy wife, take her, and go thy way.\nAnd Pharaoh commanded his men concerning him: and they sent him away, and his wife, and all that he had.\nChapter 13\nAnd Abram went up out of Egypt, he, and his wife, and all that he had, and Lot with him, into the south.\nAnd Abram was very rich in cattle, in silver, and in gold.\nAnd he went on his journeys from the south even to Beth-el, unto the place where his tent had been at the beginning, between Beth-el and Hai;\nUnto the place of the altar, which he had made there at the first: and there Abram called on the name of the LORD.\nAnd Lot also, which went with Abram, had flocks, and herds, and tents.\nAnd the land was not able to bear them, that they might dwell together: for their substance was great, so that they could not dwell together.\nAnd there was a strife between the herdmen of Abram’s cattle and the herdmen of Lot’s cattle: and the Canaanite and the Perizzite dwelled then in the land.\nAnd Abram said unto Lot, Let there be no strife, I pray thee, between me and thee, and between my herdmen and thy herdmen; for we be brethren.\nIs not the whole land before thee? separate thyself, I pray thee, from me: if thou wilt take the left hand, then I will go to the right; or if thou depart to the right hand, then I will go to the left.\nAnd Lot lifted up his eyes, and beheld all the plain of Jordan, that it was well watered every where, before the LORD destroyed Sodom and Gomorrah, even as the garden of the LORD, like the land of Egypt, as thou comest unto Zoar.\nThen Lot chose him all the plain of Jordan; and Lot journeyed east: and they separated themselves the one from the other.\nAbram dwelled in the land of Canaan, and Lot dwelled in the cities of the plain, and pitched his tent toward Sodom.\nBut the men of Sodom were wicked and sinners before the LORD exceedingly.\nAnd the LORD said unto Abram, after that Lot was separated from him, Lift up now thine eyes, and look from the place where thou art northward, and southward, and eastward, and westward:\nFor all the land which thou seest, to thee will I give it, and to thy seed for ever.\nAnd I will make thy seed as the dust of the earth: so that if a man can number the dust of the earth, then shall thy seed also be numbered.\nArise, walk through the land in the length of it and in the breadth of it; for I will give it unto thee.\nThen Abram removed his tent, and came and dwelt in the plain of Mamre, which is in Hebron, and built there an altar unto the LORD.\nChapter 14\nAnd it came to pass in the days of Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of nations;\nThat these made war with Bera king of Sodom, and with Birsha king of Gomorrah, Shinab king of Admah, and Shemeber king of Zeboiim, and the king of Bela, which is Zoar.\nAll these were joined together in the vale of Siddim, which is the salt sea.\nTwelve years they served Chedorlaomer, and in the thirteenth year they rebelled.\nAnd in the fourteenth year came Chedorlaomer, and the kings that were with him, and smote the Rephaims in Ashteroth Karnaim, and the Zuzims in Ham, and the Emims in Shaveh Kiriathaim,\nAnd the Horites in their mount Seir, unto El-paran, which is by the wilderness.\nAnd they returned, and came to Enmishpat, which is Kadesh, and smote all the country of the Amalekites, and also the Amorites, that dwelt in Hazezon-tamar.\nAnd there went out the king of Sodom, and the king of Gomorrah, and the king of Admah, and the king of Zeboiim, and the king of Bela (the same is Zoar;) and they joined battle with them in the vale of Siddim;\nWith Chedorlaomer the king of Elam, and with Tidal king of nations, and Amraphel king of Shinar, and Arioch king of Ellasar; four kings with five.\nAnd the vale of Siddim was full of slimepits; and the kings of Sodom and Gomorrah fled, and fell there; and they that remained fled to the mountain.\nAnd they took all the goods of Sodom and Gomorrah, and all their victuals, and went their way.\nAnd they took Lot, Abram’s brother’s son, who dwelt in Sodom, and his goods, and departed.\nAnd there came one that had escaped, and told Abram the Hebrew; for he dwelt in the plain of Mamre the Amorite, brother of Eshcol, and brother of Aner: and these were confederate with Abram.\nAnd when Abram heard that his prother was taken captive, he armed pis trained servants, born in his own house, three hundred and eighteen, and ursued them unto Dan.\nAnd he divided himself against them, he and his servants, by night, and smote them, and pursued them unto Hobah, which is on the left hand of Damascus.\nAnd he brought back all the goods, and also brought again his brother Lot, and his goods, and the women also, and the people.\nAnd the king of Sodom went out to meet him after his return from the slaughter of Chedorlaomer, and of the kings that were with him, at the valley of Shaveh, which is the king’s dale.\nAnd Melchizedek king of Salem brought forth bread and wine: and he was the priest of the most high God.\nAnd he blessed him, and said, Blessed be Abram of the most high God, possessor of heaven and earth:\nAnd blessed be the most high God, which hath delivered thine enemies into thy hand. And he gave him tithes of all.\nAnd the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself.\nAnd Abram said to the king of Sodom, I have lift up mine hand unto the LORD, the most high God, the possessor of heaven and earth,\nThat I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich:\nSave only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion.\nChapter 15\nAfter these things the word of the LORD came unto Abram in a vision, saying, Fear not, Abram: I am thy shield, and thy exceeding great reward.\nAnd Abram said, Lord GOD, what wilt thou give me, seeing I go childless, and the steward of my house is this Eliezer of Damascus?\nAnd Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir.\nAnd, behold, the word of the LORD came unto him, saying, This shall not be thine heir; but he that shall come forth out of thine own bowels shall be thine heir.\nAnd he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be.\nAnd he believed in the LORD; and he counted it to him for righteousness.\nAnd he said unto him, I am the LORD that brought thee out of Ur of the Chaldees, to give thee this land to inherit it.\nAnd he said, Lord GOD, whereby shall I know that I shall inherit it?\nAnd he said unto him, Take me an heifer of three years old, and a she goat of three years old, and a ram of three years old, and a turtle-dove, and a young pigeon.\nAnd he took unto him all these, and divided them in the midst, and laid each piece one against another: but the birds divided he not.\nAnd when the fowls came down upon the carcases, Abram drove them away.\nAnd when the sun was going down, a deep Sleep fell upon Abram; and, lo, an horror of great darkness fell upon him.\nAnd he said unto Abram, Know of a surety that thy seed shall be a stranger in a land that is not theirs, and shall serve them; and they shall afflict them four hundred years;\nAnd also that nation, whom they shall serve, will I judge: and afterward shall they come out with great substance.\nAnd thou shalt go to thy fathers in peace; thou shalt be buried in a good old age.\nBut in the fourth generation they shall come hither again: for the iniquity of the Amorites is not yet full.\nAnd it came to pass, that, when the sun went down, and it was dark, behold a smoking furnace, and a burning lamp that passed between those pieces.\nIn the same day the LORD made a covenant with Abram, saying, Unto thy seed have I given this land, from the river of Egypt unto the great river, the river Euphrates:\nThe Kenites, and the Kenizzites, and the Kadmonites,\nAnd the Hittites, and the Perizzites, and the Rephaims,\nAnd the Amorites, and the Canaanites, and the Girgashites, and the Jebusites.\nChapter 16\nNow Sarai Abram’s wife bare him no children: and she had an handmaid, an Egyptian, whose name was Hagar.\nAnd Sarai said unto Abram, Behold now, the LORD hath restrained me from bearing: I pray thee, go in unto my maid; it may be that I may obtain children by her. And Abram hearkened to the voice of Sarai.\nAnd Sarai Abram’s wife took Hagar her maid the Egyptian, after Abram had dwelt ten years in the land of Canaan, and gave her to her husband Abram to be his wife.\nAnd he went in unto Hagar, and she conceived: and when she saw that she had conceived, her mistress was despised in her eyes.\nAnd Sarai said unto Abram, My wrong be upon thee: I have given my maid into thy bosom; and when she saw that she had conceived, I was despised in her eyes: the LORD judge between me and thee.\nBut Abram said unto Sarai, Behold, thy maid is in thy hand; do to her as it pleaseth thee. And when Sarai dealt hardly with her, she fled from her face.\nAnd the angel of the LORD found her by a fountain of water in the wilderness, by the fountain in the way to Shur.\nAnd he said, Hagar, Sarai’s maid, whence camest thou? and whither wilt thou go? And she said, I flee from the face of my mistress Sarai.\nAnd the angel of the LORD said unto her, Return to thy mistress, and submit thyself under her hands.\nAnd the angel of the LORD said unto her, I will multiply thy seed exceedingly, that it shall not be numbered for multitude.\nAnd the angel of the LORD said unto her, Behold, thou art with child, and shalt bear a son, and shalt call his name Ishmael; because the LORD hath heard thy affliction.\nAnd he will be a wild man; his hand will be against every man, and every man’s hand against him; and he shali dwell in the presence of all his brethren.\nAnd she called the name of the LORD that spake unto her, Thou God seest me: for she said, Have I also here looked after him that seeth me?\nWherefore the well was called Beer-lahai-roi; behold, it is between Kadesh and Bered.\nAnd Hagar bare Abram a son: and Abram called his son’s name, which Hagar bare, Ishmael.\nAnd Abram was fourscore and six years old, when Hagar bare Ishmael to Abram.\nChapter 17\nAnd when Abram was ninety years old and nine, the LORD appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect.\n2, And I will make my covenant between me and thee, and will multiply thee exceedingly.\nAnd Abram fell on his face: and God talked with him, saying,\nAs for me, behold, my covenant is with thee, and thou shalt be a father of many nations.\nNeither shall thy name any more be called Abram, but thy name shall be Abraham; for a father of many nations have I made thee.\nAnd I will make thee exceeding fruitful, and I will make nations of thee, and kings shall come out of thee.\nAnd I will establish my covenant between me and thee and thy seed after thee in their generations for an everlasting covenant, to be a God unto thee, and to thy seed after thee.\nAnd I will give unto thee, and to thy seed after thee, the land wherein thou art a stranger, all the land of Canaan, for an everlasting possession; and I will be their God.\nAnd God said unto Abraham, Thou shalt keep my covenant therefore, thou, and thy seed after thee in their generations.\nThis is my covenant, which ye shall keep, between me and you and thy seed after thee; Every man child among you shall be circumcised.\nAnd ye shall circumcise the flesh of your foreskin; and it shall be a token of the covenant betwixt me and you.\nAnd he that is eight days old shall be circumcised among you, every man child in your generations, he that is born in the house, or bought with money of any stranger, which is not of thy seed.\nHe that is born in thy house, and he that is bought with thy money, must needs be circumcised: and my covenant shall be in your flesh for an everlasting covenant.\nAnd the uncircumcised man child whose flesh of his foreskin is not circumcised, that soul shall be cut off from his people; he hath broken my covenant.\nAnd God said unto Abraham, As for Sarai thy wife, thou shalt not call her name Sarai, but Sarah shall her name be.\nAnd I will bless her, and give thee a son also of her: yea, I will bless her, and she shall be a mother of nations; kings of people shall be of her.\nThen Abraham fell upon his face, and laughed, and said in his heart, Shall a child be born unto him that is an hundred years old? and shall Sarah, that is ninety years old, bear?\nAnd Abraham said unto God, O that Ishmael might live before thee!\nAnd God said, Sarah thy wife shall bear thee a son indeed; and thou shalt call his name Isaac: and I will establish my covenant with him for an everlasting covenant, and with his seed after him.\nAnd as for Ishmael, I have heard thee: Behold, I have blessed him, and will make him fruitful, and will multiply him exceedingly; twelve princes shall he beget, and I will make him a reat nation.\nBut my covenant will I establish with Isaac, which Sarah shall bear unto thee at this set time in the next year.\nAnd he left off talking with him, and God went up from Abraham.\nAnd Abraham took Ishmael his son, and all that were born in his house, and all that were bought with his money, every male among the men of Abraham’s house; and circumcised the flesh of their foreskin in the selfsame day, as God had said unto him.\nAnd Abraham was ninety years old and nine, when he was circumcised in the flesh of his foreskin.\nAnd Ishmael his son was thirteen years old, when he was circumcised in the flesh of his foreskin.\nIn the selfsame day was Abraham circumcised, and Ishmael his son.\nAnd all the men of his house, born in the house, and bought with money of the stranger, were circumcised with him.\nChapter 18\nAnd the LORD appeared unto him in the plains of Mamre: and he sat in the tent door in the heat of the day;\nAnd he lift up his eyes and looked, and, lo, three men stood by him: and when he saw them, he ran to meet them from the tent door, and bowed himself toward the ground,\nAnd said, My Lord, if now I have found favour in thy sight, pass not away, I pray thee, from thy servant:\nLet a little water, I pray you, be fetched, and wash your feet, and rest yourselves under the tree:\nAnd] will fetch a morsel of bread, and comfort ye your hearts; after that ye shall pass on: for therefore are ye come to your servant. And they said, So do, as thou hast said.\nAnd Abraham hastened into the tent unto Sarah, and said, Make ready quickly three measures of fine meal, knead it, and make cakes upon the hearth.\nAnd Abraham ran unto the herd, and fetcht a calf tender and good, and gave it unto a young man, and he hasted to dress it.\nAnd he took butter, and milk, and the calf which he had dressed, and set it before them; and he stood by them under the tree, and they did eat.\nAnd they said unto him, Where is Sarah thy wife? And he said, Behold, in the tent.\nAnd he said, I will certainly return unto thee according to the time of life; and, lo, Sarah thy wife shall have a son. And Sarah heard if in the tent door, which was behind him.\nNow Abraham and Sarah were old and well stricken in age; and it ceased to be with Sarah after the manner of women.\nTherefore Sarah laughed within herself, saying, After I am waxed old shall I have pleasure, my lord being old also?\nAnd the LORD said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a surety bear a child, which am old?\nIs any thing too hard for the LORD? At the time appointed I will return unto thee, according to the time of life, and Sarah shall have a son.\nThen Sarah denied, saying, I laughed not; for she was afraid. And he said, Nay; but thou didst laugh.\nAnd the men rose up from thence, and looked toward Sodom: and Abraham went with them to bring them on the way.\nAnd the LORD said, Shall I hide from Abraham that thing which I do;\nSeeing that Abraham shall surely become a great and mighty nation, and all the nations of the earth shall be blessed in him?\nFor I know him, that he will command his children and his household after him, and they shall keep the way of the LORD, to do justice and judgment; that the LORD may bring upon Abraham that which he hath spoken of him.\nAnd the LORD said, Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous;\nI will go down now, and see whether they have done altogether according to the cry of it, which is come unto me; and if not, I will know.\nAnd the men turned their faces from thence, and went toward Sodom: but Abraham stood yet before the LORD.\n23. And Abraham drew near, and said, Wilt thou also destroy the righteous with the wicked?\nPeradventure there be fifty righteous within the city: wilt thou also destroy and not spare the place for the fifty righteous that are therein?\nThat be far from thee to do after this manner, to slay the righteous with the wicked: and that the righteous should be as the wicked, that be far from thee: Shall not the Judge of all the earth do right?\nAnd the LORD said, If I find in Sodom fifty righteous within the city, then I will spare all the place for their sakes.\nAnd Abraham answered and said, Behold now, I have taken upon me to speak unto the Lord, which am but dust and ashes:\nPeradventure there shall lack five of the fifty righteous: wilt thou destroy all the city for lack of five? And he said, If I find there forty and five, I will not destroy it.\nAnd he spake unto him yet again, and said, Peradventure there shall be forty found there. And he said, I will not do it for forty’s sake.\nAnd he said unto him, Oh let not the Lord be angry, and I will speak: Peradventure there shall thirty be found there. And he said, I will not do it, if I find thirty there.\nAnd he said, Behold now, I have taken upon me to speak unto the Lord: Peradventure there shall be twenty found there. And he said, I will not destroy it for twenty’s sake.\nAnd he said, Oh let not the Lord be angry, and I will speak yet but this once: Peradventure ten shall be found there. And he said, I will not destroy it for ten’s sake.\nAnd the LORD went his way, as soon as he had left communing with Abraham: and Abraham returned unto his place.\nChapter 19\nAnd there came two angels to Sodom at even; and Lot sat in the gate of Sodom: and Lot seeing them rose up to meet them; and he bowed himself with his face toward the ground;\nAnd he said, Behold now, my lords, turn in, I pray you, into your servant’s house, and tarry all night, and wash your feet, and ye shall rise up early, and go on your ways. And they said, Nay; but we will abide in the street all night.\nAnd he pressed upon them greatly; and they turned in unto him, and entered into his house; and he made them a feast, and did bake unleavened bread, and they did eat.\nBut before they lay down, the men of the city, even the men of Sodom, compassed the house round, both old and young, all the people from every quarter:\nAnd they called unto Lot, and said unto him, Where are the men which came in to thee this night? bring them out unto us, that we may know them.\nAnd Lot went out at the door unto them, and shut the door after him,\nAnd said, I pray you, brethren, do not so wickedly.\nBehold now, I have two daughters which have not known man; let me, I pray you, bring them out unto you, and do ye to them as is good in your eyes: only unto these men do nothing; for therefore came they under the shadow of my roof.\nAnd they said, Stand back. And they said again, This one fellow came in to sojourn, and he will needs be a judge: now will we deal worse with thee, than with them. And they pressed sore upon the man, even Lot, and came near to break the door.\nBut the men put forth their hand, and pulled Lot into the house to them, and shut to the door.\nAnd they smote the men that were at the door of the house with blindness, both small and great: so that they wearied themselves to find the door.\nAnd the men said unto Lot, Hast thou here any besides? son in law, and thy sons, and thy daughters, and whatsoever thou hast in the city, bring them out of this place:\nFor we will destroy this place, beCause the cry of them is waxen great before the face of the LORD; and the LORD hath sent us to destroy it.\nAnd Lot went out, and spake unto his sons in law, which married his daughters, and said, Up, get you out of this place; for the LORD will destroy this city. But he seemed as one that mocked unto his sons in law.\nAnd when the morning arose, then the angels hastened Lot, saying, Arise, take thy wife, and thy two daughters, which are here; lest thou be consumed in the iniquity of the city.\nAnd while he lingered, the men laid hold upon his hand, and upon the hand of his wife, and upon the hand of his two daughters; the LORD being merciful unto him: and they brought him forth, and set him without the city.\nAnd it came to pass, when they had brought them forth abroad, that he said, Escape for thy life; look not behind thee, neither stay thou in all the plain; escape to the mountain, lest thou be consumed.\nAnd Lot said unto them, Oh, not so, my Lord:\nBehold now, thy servant hath found grace in thy sight, and thou hast magnified thy mercy, which thou hast shewed unto me in saving my life; and I cannot escape to the mountain, lest some evil take me, and I die:\nBehold now, this city is near to flee unto, and it is a little one: Oh, let me escape thither, (is it not a little one?) and my soul shall live.\nAnd he said unto him, See, I have accepted thee concerning this thing also, that I will not overthrow this city, for the which thou hast spoken.\nHaste thee, escape thither; for I cannot do any thing till thou be come thither. Therefore the name of the city was called Zoar.\nThe sun was risen upon the earth when Lot entered into Zoar.\nThen the LORD rained upon Sodom and upon Gomorrah brimstone and fire from the LORD out of heaven;\nAnd he overthrew those cities, and all the plain, and all the inhabitants of the cities, and that which grew upon the ground.\nBut his wife looked back from behind him, and she became a pillar of salt.\nAnd Abraham gat up early in the morning to the place where he stood before the LORD:\nAnd he looked toward Sodom and Gomorrah, and toward all the land of the plain, and beheld, and, lo, the smoke of the country went up as the smoke of a furnace.\nAnd it came to pass, when God destroyed the cities of the plain, that God remembered Abraham, and sent Lot out of the midst of the overthrow, when he overthrew the cities in the which Lot dwelt.\nAnd Lot went up out of Zoar, and dwelt in the mountain, and his two daughters with him; for he feared to dwell in Zoar: and he dwelt in a cave, he and his two daughters.\nAnd the firstborn said unto the younger, Our father is old, and there is not a man in the earth to come in unto us after the manner of all the earth:\nCome, let us make our father drink wine, and we will lie with him, that we may preserve seed of our father.\nAnd they made their father drink Wine that night: and the firstborn went in, and lay with her father; and he perceived not when she lay down, nor when she arose.\nAnd it came to pass on the morrow, that the firstborn said unto the younger, Behold, I lay yesternight with my father: let us make him drink wine this night also; and go thou in, and lie with him, that we may preserve seed of our father.\nAnd they made their father drink wine that night also: and the younger arose, and lay with him; and he perceived not when she lay down, nor when she arose.\nThus were both the daughters of Lot with child by their father.\nAnd the firstborn bare a son, and called his name Moab: the same is the father of the Moabites unto this day.\nAnd the younger, she also bare a son, and called his name Ben-ammi: the same is the father of the children of Ammon unto this day,\nChapter 20\nAnd Abraham journeyed from thence toward the south country, and dwelled between Kadesh and Shur, and sojourned in Gerar.\nAnd Abraham said of Sarah his wife, She is my sister: and Abimelech king of Gerar sent, and took Sarah.\nBut God came to Abimelech in a dream by night, and said to him, Behold, thou art but a dead man, for the woman which thou hast taken; for she is a man’s wife.\nBut Abimelech had not come near her: and he said, Lord, wilt thou slay also a righteous nation?\nSaid he not unto me, She is my sister? and she, even she herself said, He is my brother: in the integrity of my heart and innocency of my hands have I done this.\nAnd God said unto him in a dream, Yea, I know that thou didst this in the integrity of thy heart; for I also withheld thee from sinning against me: therefore suffered I thee not to touch her.\nNow therefore restore the man his wife; for he is a prophet, and he shall pray for thee, and thou shait live: and if thou restore her not, know thou that thou shalt surely die, thou, and all that are thine. .\nTherefore Abimelech Tose early in the morning, and called all his servants, and told all these things in their ears: and the men were sore afraid.\nThen Abimelech called Abraham, and said unto him, What hast thou done unto us? and what have I offended thee, that thou hast brought on me and on my kingdom a great sin? thou hast done deeds unto me that ought not to be done.\nAnd Abimelech said unto Abraham, What sawest thou, that thou hast done this thing?\nAnd Abraham said, Because I thought, Surely the fear of God is not in this place; and they will slay me for my wife’s sake.\nAnd yet indeed she is my sister; she is the daughter of my father, but not the daughter of my mother; and she became my wife.\nAnd it came to pass, when God caused me to wander from my father’s house, that I said unto her, This is thy kindness which thou shalt shew unto me; at every place whither we shall come, say of me, He is my brother.\nAnd Abimelech took sheep, and oxen, and menservants, and womenservants, and gave them unto Abraham, and restored him Sarah his wife.\nAnd Abimelech said, Behold, my land is before thee: dwell where it pleaseth thee.\nAnd unto Sarah he said, Behold, have given thy brother a thousand pieces of silver: behold, he is to thee a covering of the eyes, unto all that are with thee, and with all other: thus she was reproved.\nSo Abraham prayed unto God: and God healed Abimelech, and his wife, and his maidservants; and they bare children.\nFor the LORD had fast closed up all the wombs of the house of Abimelech, because of Sarah Abraham’s wife.\nChapter 21\nAnd the LORD visited Sarah as he had said, and the LORD did unto Sarah as he had spoken.\nFor Sarah conceived, and bare Abraham a son in his old age, at the set time of which God had spoken to him.\nAnd Abraham called the name of his son that was born unto him, whom Sarah bare to him, Isaac.\nAnd Abraham circumcised his son Isaac being eight days old, as God had commanded him.\nAnd Abraham was an hundred years old, when his son Isaac was born unto him.\nAnd Sarah said, God hath made me to laugh, so that all that hear will laugh with me.\nAnd she said, Who would have said unto Abraham, that Sarah should have given children suck? for I have born him a son in his old age.\nAnd the child grew, and was weaned: and Abraham made a great feast the same day that Isaac was weaned.\nAnd Sarah saw the son of Hagar the Egyptian, which she had born unto Abraham, mocking.\nWherefore she said unto Abraham, Cast out this bondwoman and her son: for the son of this bondwoman shall not be heir with my son, even with Isaac.\nAnd the thing was very grievous in Abraham’s sight because of his son.\nAnd God said unto Abraham, Let it not be grievous in thy sight because of the lad, and because of thy bondwoman; in all that Sarah hath said to thee, hearken unto her voice; for in Isaac shall thy seed be called.\nAnd also of the son of the bondwoman will I make a nation, because he is thy seed.\nAnd Abraham rose up early in the morning, and took bread, and a bottle of water, and gave if unto Hagar, putting it on her shoulder, and the child, and sent her away: and she departed, and wandered in the wilderness of Beer-sheba.\nAnd the water was spent in the bottle, and she cast the child under one of the shrubs.\nAnd she went, and sat her down over against him a good way off, as it were a bowshot: for she said, Let me not see the death of the child. And she sat over against him, and lift up her voice, and wept.\nAnd God heard the voice of the lad; and the angel of God called to Hagar out of heaven, and said unto her, What aileth thee, Hagar? fear not; for God hath heard the voice of the lad where he is.\nArise, lift up the lad, and hold him in thine hand; for I will make him a great nation.\nAnd God opened her eyes, and she saw a well of water; and she went, and filled the bottle with water, and gave the lad drink.\nAnd God was with the lad; and he grew, and dwelt in the wilderness, and became an archer.\nAnd he dwelt in the wilderness of Paran: and his mother took him a wife out of the land of Egypt.\nAnd it came to pass at that time, that Abimelech and Phichol the chief captain of his host spake unto Abraham, saying, God is with thee in all that thou doest:\nNow therefore swear unto me here by God that thou wilt not deal falsely with me, nor with my son, nor with my son’s son: but according to the kindness that I have done unto thee, thou shalt do unto me, and to the land wherein thou hast sojourned.\nAnd Abraham said, I will swear.\nAnd Abraham reproved Abimelech because of a well of water, which Abimelech’s servants had violently taken away.\nAnd Abimelech said, I wot not who hath done this thing: neither didst thou tell me, neither yet heard I of it, but to day.\nAnd Abraham took sheep and oxen, and gave them unto Abimelech; and both of them made a covenant.\nAnd Abraham set seven ewe lambs of the flock by themselves.\nAnd Abimelech said unto Abraham, What mean these seven ewe lambs which thou hast set by themselves?\nAnd he said, For these seven ewe lambs shalt thou take of my hand, that they may be a witness unto me, that I have digged this well.\nWherefore he called that place Beer-sheba; because there they sware both of them.\nThus they made a covenant at Beer-sheba: then Abimelech rose up, and Phichol the chief captain of his host, and they returned into the land of the Philistines.\nAnd Abraham planted a grove in Beer-sheba, and called there on the name of the LORD, the everlasting God.\nAnd Abraham sojourned in the Philistines’ land many days.\nChapter 22\nAnd it came to pass after these things, that God did tempt Abraham, and said unto him, Abraham: and he said, Behold, here I am.\nAnd he said, Take now thy son, thine only son Isaac, whom thou jovest, and get thee into the land of Moriah; and offer him there for a burnt offering upon one of the mountains which I will tell thee of.\nAnd Abraham rose up early in the morning, and saddled his ass, and took two of his young men with him, and Isaac his son, and clave the wood for the burnt offering, and rose up, and went unto the place of which God had told him.\nThen on the third day Abraham lifted up his eyes, and saw the place afar off.\nAnd Abraham said unto his young men, Abide ye here with the ass; and I and the lad will go yonder and worship, and come again to you.\nAnd Abraham took the wood of the burnt offering, and laid it upon Isaac his son; and he took the fire in his hand, and a knife; and they went both of them together.\nAnd Isaac spake unto Abraham his father, and said, My father: and he said, Here am I, my son. And he said, Behold the fire and the wood: but where is the lamb for a burnt offering?\nAnd Abraham said, My son, God will provide himself a lamb for a burnt offering: so they went both of them together.\nAnd they came to the place which God had told him of; and Abraham built an altar there, and laid the wood in order, and bound Isaac his son, and laid him on the altar upon the wood.\nAnd Abraham stretched forth his hand, and took the knife to slay his son.\nAnd the angel of the LORD called unto him out of heaven, and said, Abraham, Abraham: and he said, Here am I.\nAnd he said, Lay not thine hand upon the lad, neither do thou any thing unto him: for now I know that thou fearest God, seeing thou hast not withheld thy son, thine only son from me.\nAnd Abraham lifted up his eyes, and looked, and behold behind him a ram caught in a thicket by his horns: and Abraham went and took the ram, and offered him up for a burnt offering in the stead of his son.\nAnd Abraham called the name of that place Jehovah-jireh: as it is said to this day, In the mount of the LORD it shall be seen.\nAnd the angel of the LORD called unto Abraham out of heaven the second time,\nAnd said, By myself have I sworn, saith the LORD, for because thou hast done this thing, and hast not withheld thy son, thine only son:\nThat in blessing I will bless thee, and in multiplying I will multiply thy seed as the stars of the heaven, and as the sand which is upon the sea shore; and thy seed shall possess the gate of his enemies;\nAnd in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice.\nSo Abraham returned unto his young men, and they rose up and went together to Beer-sheba; and Abraham dwelt at Beer-sheba.\nAnd it came to pass after these things, that it was told Abraham, saying, Behold, Milcah, she hath also born children unto thy brother Nahor;\nHuz his firstborn, and Buz his brother, and Kemuel the father of Aram,\nAnd Chesed, and Hazo, and Pildash, and Jidlaph, and Bethuel.\nAnd Bethuel begat Rebekah: these eight Milcah did bear to Nahor, Abraham’s brother.\nAnd his concubine, whose name was Reumah, she bare also Tebah, and Gaham, and Thahash, and Maachah.\nChapter 23\nAnd Sarah was an hundred and seven and twenty years old: these were the years of the life of Sarah.\nAnd Sarah died in Kirjath-arba; the same is Hebron in the land of Canaan: and Abraham came to mourn for Sarah, and to weep for her.\nAnd Abraham stood up from before his dead, and spake unto the sons of Heth, saying,\nI am a Stranger and a sojourner with you: give me a possession of a burying place with you, that I may bury my dead out of my sight.\nAnd the children of Heth answered Abraham, saying unto him,\nHear us, my lord: thou art a mighty prince among us: in the choice of our sepulchres bury thy dead; none of us shall withhold from thee his sepulchre, but that thou mayest bury thy dead.\nAnd Abraham stood up, and bowed himself to the people of the land, even to the children of Heth.\nAnd he communed with them, saying, If it be your mind that I should bury my dead out of my sight; hear me, and intreat for me to Ephron the son of Zohar,\nThat he may give me the cave of Machpelah, which he hath, which is in the end of his field; for as much money a it is worth he shall give it me for a Possession of a buryingplace amongst you.\nAnd Ephron dwelt among the children of Heth: and Ephron the Hittite answered Abraham in the audience of the children of Heth, even of all that went in at the gate of his city, saying,\nNay, my lord, hear me: the field give I thee, and the cave that is therein, I give it thee; in the presence of the sons of my people give I it thee: bury thy dead.\nAnd Abraham bowed down himself before the people of the land.\nAnd he spake unto Ephron in the audience of the people of the land, saying, But if thou wilt give it, I pray thee, hear me: I will give thee money for the field; take it of me, and I will bury my dead there.\nAnd Ephron answered Abraham, saying unto him,\nMy lord, hearken unto me: the land is worth four hundred shekels of silver; what is that betwixt me and thee? bury therefore thy dead.\nAnd Abraham hearkened unto Ephron; and Abraham weighed to Ephron the silver, which he had named in the audience of the sons of Heth, four hundred shekels of silver, current money with the merchant.\nAnd the field of Ephron, which was in Machpelah, which was before Mamre, the field, and the cave which was therein, and all the trees that were in the field, that were in all the borders round about, were made sure\nUnto Abraham for a possession in the presence of the children of Heth, before all that went in at the gate of his city.\nAnd after this, Abraham buried Sarah his wife in the cave of the field of Machpelah before Mamre: the same is Hebron in the land of Canaan.\nAnd the field, and the cave that is therein, were made sure unto Abraham for a possession of a buryingplace by tie sons of Heth.\nChapter 24\nAnd Abraham was old, and well stricken in age: and the LORD had blessed Abraham in all things.\n2. And Abraham said unto his eldest servant of his house, that ruled over all that he had, Put, I pray thee, thy hand under my thigh:\nAnd I will make thee swear by the LORD, the God of heaven, and the God of the earth, that thou shalt not take a wife unto my son of the daughters of the Canaanites, among whom I dwell:\nBut thou shalt go unto my country, and to my kindred, and take a wife unto my son Isaac.\nAnd the servant said unto him, Peradventure the woman will not be willing to follow me unto this land: must I needs bring thy son again unto the land from whence thou camest?\nAnd Abraham said unto him, Beware thou that thou bring not my son thither again.\nThe LORD God of heaven, which took me from my father’s house, and from the land of my kindred, and which spake unto me, and that sware unto me, saying, Unto thy seed will I give this land; he shall send his angel before thee, and thou shalt take a wife unto my son from thence.\nAnd if the woman will not be willing to follow thee, then thou shalt be clear from this my oath: only bring not my son thither again.\nAnd the servant put his hand under the thigh of Abraham his master, and sware to him concerning that matter.\nAnd he made his camels to kneel down without the city by a well of water at the time of the evening, even the time that women go out to draw water.\nAnd he said, O LORD God of my master Abraham, I pray thee, send me good speed this day, and shew kindness unto my master Abraham.\nBehold, I stand here by the well of water; and the daughters of the men of the city come out to draw water:\nAnd let it come to pass, that the damsel to whom I shall say, Let down thy pitcher, I pray thee, that I may drink; and she shall say, Drink, and I will give thy camels drink also: let the same be she that thou hast appointed for thy servant Isaac; and thereby shall I know that thou hast shewed kindness unto my master.\nAnd it came to pass, before he had done speaking, that, behold, Rebekah came out, who was born to Bethuel, son of Milcah, the wife of Nahor, Abraham’s brother, with her pitcher upon her shoulder.\nAnd the damsel was very fair to look upon, a virgin, neither had any man known her: and she went down to the well, and filled her pitcher, and came up.\nAnd the servant ran to meet her, and said, Let me, I pray thee, drink a little water of thy pitcher.\nAnd she said, Drink, my lord: and she hasted, and let down her pitcher upon her hand, and gave him drink.\nAnd when she had done giving him drink, she said, I will draw water for thy camels also, until they have done drinking.\nAnd she hasted, and emptied her pitcher into the trough, and ran again unto the well to draw water, and drew for all his camels.\nAnd the man wondering at her held his peace, to wit whether the LORD had made his journey prosperous or not\nAnd it came to pass, as the camels had done drinking, that the man took a golden earring of half a shekel weight, and two bracelets for her hands of ten shekels weight of gold;\nAnd said, Whose daughter art thou? tell me, I pray thee: is there room in thy father’s house for us to lodge in?\nAnd she said unto him, I am the daughter of Bethuel the son of Milcah, which she bare unto Nahor.\nShe said moreover unto him, We have both straw and provender enough, and room to lodge in.\nAnd the man bowed down his head, and worshipped the LORD.\nAnd he said, Blessed be the LORD God of my master Abraham, who hath not left destitute my master of his mercy and his truth: I being in the way, the LORD led me to the house of my master’s brethren.\nAnd the damsel ran, and told them of her mother’s house these things.\nAnd Rebekah had a brother, and his name was Laban: and Laban ran out unto the man, unto the well.\nAnd it came to pass, when he saw the earring and bracelets upon his sister’s hands, and when he heard the words of Rebekah his sister, saying, Thus spake the man unto me; that he came unto the man; and, behold, he stood by the camels at the well.\nAnd he said, Come in, thou blessed of the LORD; wherefore standest thou Without? for I have prepared the house, and room for the camels.\nAnd the man came into the house: and he ungirded his camels, and gave straw and provender for the camels, and Water to wash his feet, and the men’s feet that were with him.\nAnd there was set meat before him to eat: but he said, I will not eat, until I have told mine errand. And he said, Speak on.\nAnd he said, lam Abraham’s servant.\nAnd the LORD hath blessed my master greatly; and he is become great: and he hath given him flocks, and herds, and silver, and gold, and menservants, and maidservants, and camels, and asses.\nAnd Sarah my master’s wife bare a son to my master when she was old: and unto him hath he given all that he hath.\nAnd my master made me swear, saying, Thou shalt not take a wife to my son of the daughters of the Canaanites, in whose land I dwell:\nBut thou shalt go unto my father’s house, and to my kindred, and take a wife unto my son.\nAnd I said unto my master, Peradventure the woman will not follow me.\nAnd he said unto me, The LORD, before whom I walk, will send his angel with thee, and prosper thy way; and thou shalt take a wife for my son of my kindred, and of my father’s house:\nThen shalt thou be clear from this my oath, when thou comest to my kindred; and if they give not thee one, thou shalt be clear from my oath.\n42. And I came this day unto the well, and said, O LORD God of my master Abraham, if now thou do prosper my way which I go:\nBehold, I stand by the well of water; and it shall come to pass, that when the virgin cometh forth to draw water, and I say to her, Give me, I pray thee, a little water of thy pitcher to drink;\nAnd she say to me, Both drink thou, and I will also draw for thy camels: Jet the same be the woman whom the LORD hath appointed out for my master's Son.\nAnd before I had done speaking in mine heart, behold, Rebekah came forth with her pitcher on her shoulder; and she went down unto the well, and drew water: and I said unto her, Let me drink, I pray thee.\nAnd she made haste, and let down her pitcher from her shoulder, and said, Drink, and I will give thy camels drink also: so I drank, and she made the camels drink also.\nAnd I asked her, and said, Whose daughter art thou? And she said, The daughter of Bethuel, Nahor’s son, whom Milcah bare unto him: and I put the earring upon her face, and the bracelets upon her hands.\nAnd I bowed down my head, and worshipped the LORD, and blessed the LORD God of my master Abraham, which had led me in the right way to take my master’s brother’s daughter unto his son.\nAnd now if ye will deal kindly and truly with my master, tell me: and if not, tell me; that I may turn to the right hand, or to the left.\nThen Laban and Bethuel answered and said, The thing proceedeth from the LORD: we cannot speak unto thee bad or good.\nBehold, Rebekah is before thee, take her, and go, and let her be thy master’s son’s wife, as the LORD hath spoken.\nAnd it came to pass, that, when Abraham’s servant heard their words, he worshipped the LORD, bowing himself to the earth.\nAnd the servant brought forth jewels of silver, and jewels of gold, and raiment, and gave them to Rebekah: he gave also to her brother and to her mother precious things.\nAnd they did eat and drink, he and the men that were with him, and tarried all night; and they rose up in the morning, and he said, Send me away unto my master.\nAnd her brother and her mother said, Let the damsel abide with us a few days, at the least ten; after that she shall go.\nAnd he said unto them, Hinder me not, seeing the LORD hath prospered my way; send me away that I may go to my master.\nAnd they said, We will call the damsel, and enquire at her mouth.\nAnd they called Rebekah, and said unto her, Wilt thou go with this man? And she said, I will go.\nAnd they sent away Rebekah their sister, and her nurse, and Abraham’s servant, and his men.\nAnd they blessed Rebekah, and said unto her, Thou art our sister, be thou the mother of thousands of millions, and let thy seed possess the gate of those which hate them.\nAnd Rebekah arose, and her damsels, and they rode upon the camels, and followed the man: and the servant took Rebekah, and went his way.\nAnd Isaac came from the way of the well Lahai-roi; for he dwelt in the south country.\nAnd Isaac went out to meditate in the field at the eventide: and he lifted up his eyes, and saw, and, behold, the camels were coming.\nAnd Rebekah lifted up her eyes, and when she saw Isaac, she lighted off the camel.\nFor she had said unto the servant, What man is this that walketh in the field to meet us? And the servant had said, It is my master: therefore she took a vail, and covered herself.\nAnd the servant told Isaac all things that he had done.\nAnd Isaac brought her into his mother Sarah’s tent, and took Rebekah, and she became his wife; and he loved her: and Isaac was comforted after his mother’s death.\nChapter 25\nThen again Abraham took a wife, and her name was Keturah.\nAnd she bare him Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah.\nAnd Jokshan begat Sheba, and Dedan. And the sons of Dedan were Asshurim, and Letushim, and Leummim.\nAnd the sons of Midian; Ephah, and Epher, and Hanoch, and Abida, and Eldaah. All these were the children of Keturah.\nAnd Abraham gave all that he had unto Isaac.\nBut unto the sons of the concubines, which Abraham had, Abraham gave gifts, and sent them away from Isaac his son, while he yet lived, eastward, unto the east country.\nAnd these are the days of the years of Abraham’s life which he lived, an hundred threescore and fifteen years.\nThen Abraham gave up the ghost, and died in a good old age, an old man, and full of years; and was gathered to his people.\nAnd his sons Isaac and Ishmael buried him in the cave of Machpelah, in the field of Ephron the son of Zohar the Hittite, which is before Mamre;\nThe field which Abraham purchased of the sons of Heth: there was Abraham buried, and Sarah his wife.\nAnd it came to pass after the death of Abraham, that God blessed his son Isaac; and Isaac dwelt by the well Lahai-roi.\nNow these are the generations of Ishmael, Abraham’s son, whom Hagar the Egyptian, Sarah’s handmaid, bare unto Abraham:\nAnd these are the names of the sons of Ishmael, by their names, according to their generations: the firstborn of Ishmael, Nebajoth; and Kedar, and Adbeel, and Mibsam,\nAnd Mishma, and Dumah, and Massa,\nHadar, and Tema, Jetur, Naphish, and Kedemah:\nThese are the sons of Ishmael, and these are their names, by their towns, and by their castles; twelve princes according to their nations.\nAnd these are the years of the life of Ishmael, an hundred and thirty and seven years: and he gave up the ghost and died; and was gathered unto his people.\nAnd they dwelt from Havilah unto Shur, that is before Egypt, as thou goest toward Assyria: and he died in the presence of all his brethren.\nAnd these are the generations of Isaac, Abraham’s son: Abraham begat Isaac:\nAnd Isaac was forty years old when he took Rebekah to wife, the daughter of Bethuel the Syrian of Padan-aram, the sister to Laban the Syrian.\nAnd Isaac intreated the LORD for his wife, because she was barren: and the LORD was intreated of him, and Rebekah his wife conceived.\nAnd the children struggled together within her; and she said, If it be so, why am I thus? And she went to enquire of the LORD.\nAnd the LORD said unto her, Two nations are in thy womb, and two manner of people shall be separated from thy bowels; and the one people shall be stronger than the other people; and the elder shall serve the younger.\nAnd when her days to be delivered were fulfilled, behold, there were twins in her womb.\nAnd the first came out red, all over like an hairy garment; and they called his name Esau.\nAnd after that came his brother out, and his hand took hold on Esau’s heel; and his name was called Jacob: and Isaac was threescore years old when she bare them.\nAnd the boys grew: and Esau was a cunning hunter, a man of the field; and Jacob was a plain man, dwelling in tents.\nAnd Isaac loved Esau, because he did eat of his venison: but Rebekah loved Jacob.\nAnd Jacob sod pottage: and Esau came from the field, and he was faint:\nAnd Esau said to Jacob, Feed me, I ray thee, with that same red pottage; for I am faint: therefore was his name called Edom.\nAnd Jacob said, Sell me this day thy birthright.\nAnd Esau said, Behold, I am at the point to die: and what profit shall this birthright do to me?\nAnd Jacob said, Swear to me this day; and he sware unto him: and he sold his birthright unto Jacob.\nThen Jacob gave Esau bread and pottage of lentiles; and he did eat and drink, and rose up, and went his way: thus Esau despised his birthright.\nChapter 26\nAnd there was a famine in the land, beside the first famine that was in the days of Abraham. And Isaac went unto Abimelech king of the Philistines unto Gerar.\nAnd the LORD appeared unto him, and said, Go not down into Egypt; dwell in the land which I shall tell thee of:\nSojourn in this land, and I will be with thee, and will bless thee; for unto thee, and unto thy seed, I will give all these countries, and I will perform the oath which I sware unto Abraham thy father;\nAnd I will make thy seed to multiply as the stars of heaven, and will give unto thy seed all these countries; and in thy seed shall all the nations of the earth be blessed;\nBecause that Abraham obeyed my voice, and kept my charge, my commandments, my statutes, and my laws.\nAnd Isaac dwelt in Gerar:\nAnd the men of the place asked him of his wife; and he said, She is my sister: for he feared to say, She is my wife; lest, said he, the men of the place should kill me for Rebekah; because she was fair to look upon.\nAnd it came to pass, when he had been there a long time, that Abimelech king of the Philistines looked out at a window, and saw, and, behold, Isaac was sporting with Rebekah his wife.\nAnd Abimelech called Isaac, and said, Behold, of a surety she is thy wife: and how saidst thou, She is my sister? And Isaac said unto him, Because I said, Lest I die for her.\nAnd Abimelech said, What is this thou hast done unto us? one of the people might lightly have lien with thy wife, and thou shouldest have brought guiltiness upon us.\nAnd Abimelech charged all his people, saying, He that toucheth this man or his wife shall surely be put to death.\nThen Isaac sowed in that land, and received in the same year an hundredfold: and the LORD blessed him.\nAnd the man waxed great, and went forward, and grew until he became very great:\nFor he had possession of flocks, and possession of herds, and great store of servants: and the Philistines envied him.\nFor all the wells which his father’s servants had digged in the days of Abraham his father, the Philistines had stopped them, and filled them with earth.\nAnd Abimelech said unto Isaac, Go from us; for thou art much mightier than we.\nAnd Isaac departed thence, and itched his tent in the valley of Gerar, and dwelt there.\nAnd Isaac digged again the wells of water, which they had digged in the days of Abraham his father; for the Philistines had stopped them after the death of Abraham: and he called their names after the names by which his father had called them.\nAnd Isaac’s servants digged in the valley, and found there a well of springing water.\nAnd the herdmen of Gerar did strive with Isaac’s herdmen, saying, The water is ours: and he called the name of the well Esek; because they strove with him.\nAnd they digged another well, and strove for that also: and he called the name of it Sitnah.\nAnd he removed from thence, and digged another well; and for that they strove not: and he called the name of it Rehoboth; and he said, For now the LORD hath made room for us, and we shall be fruitful in the land.\nAnd he went up from thence to Beer-sheba.\nAnd the LORD appeared unto him same night, and said, I am the God of Abraham thy father: fear not, for I am with thee, and will bless thee, and multiply thy seed for my servant Abraham’s sake.\nAnd he builded an altar there, and called upon the name of the LORD, and pitched his tent there: and there Isaac’s servants digged a well.\nThen Abimelech went to him from Gerar, and Ahuzzath one of his friends, and Phichol the chief captain of his army.\nAnd Isaac said unto them, Wherefore come ye to me, seeing ye hate me, and have sent me away from you?\nAnd they said, We saw certainly that the LORD was with thee: and we said, Let there be now an oath betwixt us, even betwixt us and thee, and let us make a covenant with thee;\nThat thou wilt do us no hurt, as we have not touched thee, and as we have done unto thee nothing but good, and have sent thee away in peace: thou art now the blessed of the LORD.\nAnd he made them a feast, and they did eat and drink.\nAnd they rose up betimes in the morning, and sware one to another: and Isaac sent them away, and they departed from him in peace.\nAnd it came to pass the same day, that Isaac’s servants came, and told him concerning the well which they had digged, and said unto him, We have found water.\nAnd he called it Shebah: therefore the name of the city is Beer-sheba unto this day.\nAnd Esau was forty years old when he took to wife Judith the daughter of Beeri the Hittite, and Bashemath the daughter of Elon the Hittite:\nWhich were a grief of mind unto Isaac and to Rebekah.\nChapter 27\nAnd it came to pass, that when Isaac was old, and his eyes were dim, so that he could not see, he called Esau his eldest son, and said unto him, My son: and he said unto him, Behold, here am I.\nAnd he said, Behold now, Lam old, I know not the day of my death:\nNow therefore take, I pray thee, thy weapons, thy quiver and thy bow, and go out to the field, and take me some venison;\nAnd make me savoury meat, such as I love, and bring if to me, that I may eat; that my soul may bless thee before I die.\nAnd Rebekah heard when Isaac spake to Esau his son. And Esau went to the field to hunt for venison, and to bring it.\nAnd Rebekah spake unto Jacob her son, saying, Behold, I heard thy father speak unto Esau thy brother, saying,\nBring me venison, and make me savoury meat, that I may eat, and bless thee before the LORD before my death.\nNow therefore, my son, obey my voice according to that which I command thee.\nGo now to the flock, and fetch me from thence two good kids of the goats; and I will make them savoury meat for thy father, such as he loveth:\nAnd thou shalt bring it to thy father, that he may eat, and that he may bless thee before his death.\nAnd Jacob said to Rebekah his mother, Behold, Esau my brother is a hairy man, and I am a smooth man:\nMy father peradventure will feel me, and I shall seem to him as a deceiver; and I shall bring a curse upon Me, and not a blessing.\nAnd his mother said unto him, Upon me be thy curse, my son: only Obey my voice, and go fetch me them.\nAnd he went, and fetched, and brought them to his mother: and his mother made savoury meat, such as his father loved.\nAnd Rebekah took goodly raiment of her eldest son Esau, which were with her in the house, and put them upon Jacob her younger son:\nAnd she put the skins of the kids of the goats upon his hands, and upon the smooth of his neck:\nAnd she gave the savoury meat and the bread, which she had prepared, into the hand of her son Jacob.\nAnd he came unto his father, and said, My father: and he said, Here am I; who art thou, my son?\nAnd Jacob said unto his father, IL am Esau thy firstborn; I have done according as thou badest me: arise, I pray thee, sit and eat of my venison, that thy soul may bless me.\nAnd Isaac said unto his son, How is it that thou hast found it so quickly, my son? And he said, Because the LORD thy God brought it to me.\nAnd Isaac said unto Jacob, Come near, I pray thee, that I may feel thee, my son, whether thou be my very son Esau or not.\nAnd Jacob went near unto Isaac his father; and he felt him, and said, The voice is Jacob’s voice, but the hands are the hands of Esau.\nAnd he discerned him not, because his hands were hairy, as his brother Esau’s hands: so he blessed him.\nAnd he said, Art thou my very son Esau? And he said, I am.\nAnd he said, Bring it near to me, and I will eat of my son’s venison, that my soul may bless thee. And he brought it near to him, and he did eat: and he brought him wine, and he drank.\nAnd his father Isaac said unto him, Come near now, and kiss me, my son.\nAnd he came near, and kissed him: and he smelled the smell of his raiment. and blessed him, and said, See, the smell of my son is as the smell of a field which the LORD hath blessed:\nTherefore God give thee of the dew of heaven, and the fatness of the earth, and plenty of corn and wine:\nLet people serve thee, and nations bow down to thee: be lord over thy brethren, and let thy mother’s sons bow down to thee: cursed be every one that curseth thee, and blessed be he that blesseth thee.\nAnd it came to pass, as soon as Isaac had made an end of blessing Jacob, and Jacob was yet scarce gone out from the presence of Isaac his father, that Esau his brother came in from his hunting.\nAnd he also had made savoury meat, and brought it unto his father, and said unto his father, Let my father arise, and eat of his son’s venison, that thy soul may bless me.\nAnd Isaac his father said unto him, Who art thou? And he said, I am thy son, thy firstborn Esau.\nAnd Isaac trembled very exceedingly, and said, Who? where is he that hath taken venison, and brought it me, and I have eaten of all before thou camest, and have blessed him? yea, and he shall be blessed.\nAnd when Esau heard the words of his father, he cried with a great and exceeding bitter cry, and said unto his father, Bless me, even me also, O my father.\nAnd he said, Thy brother came with subtilty, and hath taken away thy blessing.\nAnd he said, Is not he rightly named Jacob? for he hath supplanted Mme these two times: he took away my birthright; and, behold, now he hath taken away my blessing. And he said, Hast thou not reserved a blessing for me?\nAnd Isaac answered and said unto Esau, Behold, I have made him thy lord, and all his brethren have I given to him for servants; and with corn and wine have I sustained him: and what shall I do now unto thee, my son?\nAnd Esau said unto his father, Hast thou but one blessing, my father? bless me, even me also, O my father. And Esau lifted up his voice, and wept.\nAnd Isaac his father answered and said unto him, Behold, thy dwelling shall be the fatness of the earth, and of the dew of heaven from above;\nAnd by thy sword shalt thou live, and shalt serve thy brother; and it shall come to pass when thou shalt have the dominion, that thou shalt break his yoke from off thy neck.\nAnd Esau hated Jacob because of the blessing wherewith his father blessed him: and Esau said in his heart, The days of mourning for my father are at hand; then will I slay my brother Jacob.\nAnd these words of Esau her elder son were told to Rebekah: and she sent and called Jacob her younger son, and said unto him, Behold, thy brother Esau, as touching thee, doth comfort himself, purposing to kill thee.\nNow therefore, my son, obey my voice; and arise, flee thou to Laban my brother to Haran;\nAnd tarry with him a few days, until thy brother’s fury turn away,\nUntil thy brother’s anger turn away from thee, and he forget that which thou hast done to him: then I will send, and fetch thee from thence: why should I be deprived also of you both in one day?\nAnd Rebekah said to Isaac, Jam weary of my life because of the daughters of Heth: if Jacob take a wife of the daughters of Heth, such as these which are of the daughters of the land, what good shall my life do me?\nChapter 28\nAnd Isaac called Jacob, and blessed him, and charged him, and said unto him, Thou shalt not take a wife of the daughters of Canaan.\nArise, go to Padan-aram, to the house of Bethuel thy mother’s father; and take thee a wife from thence of the daughters of Laban thy mother’s brother.\nAnd God Almighty bless thee, and make thee fruitful, and multiply thee, that thou mayest be a multitude of people;\nAnd give thee the blessing of Abraham, to thee, and to thy seed with thee; that thou mayest inherit the land wherein thou art a stranger, which God gave unto Abraham.\nAnd Isaac sent away Jacob: and he went to Padan-aram unto Laban, son of Bethuel the Syrian, the brother of Rebekah, Jacob’s and Esau’s mother.\nWhen Esau saw that Isaac had blessed Jacob, and sent him away to Padan-aram, to take him a wife from thence; and that as he blessed him he gave him a charge, saying, Thou shalt not take a wife of the daughters of Canaan;\nAnd that Jacob obeyed his father and his mother, and was gone to Padan-aram;\nAnd Esau seeing that the daughters of Canaan pleased not Isaac his father;\nThen went Esau unto Ishmael, and took unto the wives which he had Mahalath the daughter of Ishmael Abraham’s son, the sister of Nebajoth, to be his wife.\nAnd Jacob went out from Beersheba, and went toward Haran.\nAnd he lighted upon a certain Place, and tarried there all night, because the sun was set; and he took of the stones of that place, and put them for his pillows, and lay down in that place to sleep.\nAnd he dreamed, and behold a ladder set up on the earth, and the top of it reached to heaven: and behold the angels of God ascending and descending on it.\nAnd, behold, the LORD stood above it, and said, I am the LORD God of Abraham thy father, and the God of Isaac: the land whereon thou liest, to thee will I give it, and to thy seed;\nAnd thy seed shall be as the dust of the earth, and thou shalt spread abroad to the west, and to the east, and to the north, and to the south: and in thee and in thy seed shall all the families of the earth be blessed.\nAnd, behold, I am with thee, and will keep thee in all places whither thou goest, and will bring thee again into this land; for I will not leave thee, until I have done that which I have spoken to thee of.\nAnd Jacob awaked out of his sleep, and he said, Surely the LORD is in this place; and I knew it not.\nAnd he was afraid, and said, How dreadful is this place! this is none other but the house of God, and this is the gate of heaven.\nAnd Jacob rose up early in the morning, and took the stone that he had put for his pillows, and set it up for a pillar, and poured oil upon the top of it.\nAnd he called the name of that place Beth-el: but the name of that city was called Luz at the first.\nAnd Jacob vowed a vow, saying, If God will be with me, and will keep me in this way that I go, and will give me bread to eat, and raiment to put on,\nSo that I come again to my father’s house in peace; then shall the LORD be my God:\nAnd this stone, which I have set for a pillar, shall be God’s house: and of all that thou shalt give me I will surely give the tenth unto thee.\nChapter 29\nThen Jacob went on his journey, and came into the land of the people of the east.\nAnd he looked, and behold a well in the field, and, lo, there were three flocks of sheep lying by it; for out of that well they watered the flocks: and a great stone was upon the well’s mouth.\nAnd thither were all the flocks gathered: and they rolled the stone from the well’s mouth, and watered the sheep, and put the stone again upon the well’s mouth in his place.\nAnd Jacob said unto them, My brethren, whence be ye? And they said, Of Haran are we.\nAnd he said unto them, Know ye Laban the son of Nahor? And they said, We know him.\nAnd he said unto them, /s he well? And they said, He is well: and, behold, Rachel his daughter cometh with the sheep.\nAnd he said, Lo, it is yet high day, neither is it time that the cattle should be gathered together: water ye the sheep, and go and feed them.\nAnd they said, We cannot, until all the flocks be gathered together, and till they roll the stone from the well’s Mouth; then we water the sheep.\nAnd while he yet spake with them, Rachel came with her father’s sheep: for she kept them.\nAnd it came to pass, when Jacob saw Rachel the daughter of Laban his mother’s brother, and the sheep of Laban his mother’s brother, that Jacob went near, and rolled the stone from the well’s mouth, and watered the flock of Laban his mother’s brother.\nAnd Jacob kissed Rachel, and lifted up his voice, and wept.\nAnd Jacob told Rachel that he was her father’s brother, and that he was Rebekah’s son: and she ran and told her father.\nAnd it came to pass, when Laban heard the tidings of Jacob his sister’s son, that he ran to meet him, and embraced him, and kissed him, and brought him to his house. And he told Laban all these things.\nAnd Laban said to him, Surely thou art my bone and my flesh. And he abode with him the space of a month.\nAnd Laban said unto Jacob, Because thou art my brother, shouldest thou therefore serve me for nought? tell me, what shall thy wages be?\nAnd Laban had two daughters: the name of the elder was Leah, and the name of the younger was Rachel.\nLeah was tender eyed; but Rachel was beautiful and well favoured.\nAnd Jacob loved Rachel; and said, I will serve thee seven years for Rachel thy younger daughter.\nAnd Laban said, /t is better that I give her to thee, than that I should give her to another man: abide with me.\nAnd Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her.\nAnd Jacob said unto Laban, Give me my wife, for my days are fulfilled, that I may go in unto her.\nAnd Laban gathered together all the men of the place, and made a feast.\nAnd it came to pass in the evening, that he took Leah his daughter, and brought her to him; and he went in unto her.\nAnd Laban gave unto his daughter Leah Zilpah his maid for an handmaid.\nAnd it came to pass, that in the morning, behold, it was Leah: and he said to Laban, What is this thou hast done unto me? did not I serve with thee for Rachel? wherefore then hast thou beguiled me? ;\nAnd Laban said, It must not be so done in our country, to give the younger before the firstborn.\nFulfil her week, and we will give thee this also for the service which thou shalt serve with me yet seven other years.\nAnd Jacob did so, and fulfilled her week: and he gave him Rachel his daughter to wife also.\nAnd Laban gave to Rachel his daughter Bilhah his handmaid to be her maid.\nAnd he went in also unto Rachel, and he loved also Rachel more than Leah, and served with him yet seven other years.\nAnd when the LORD saw that Leah was hated, he opened her womb: but Rachel was barren.\nAnd Leah conceived, and bare a son, and she called his name Reuben: for she said, Surely the LORD hath looked upon my affliction; now therefore my husband will love me.\nAnd she conceived again, and bare a son; and said, Because the LORD hath heard that I was hated, he hath therefore given me this son also: and she called his name Simeon.\nAnd she conceived again, and bare 4son; and said, Now this time will my husband be joined unto me, because I have born him three sons: therefore was his name called Levi.\nAnd she conceived again, and bare a son: and she said, Now will I praise the LORD: therefore she called his name Judah; and left bearing.\nChapter 30\nAnd when Rachel saw that she bare Jacob no children, Rachel envied her sister; and said unto Jacob, Give me children, or else I die.\nAnd Jacob’s anger was kindled against Rachel: and he said, Am I in God’s stead, who hath withheld from thee the fruit of the womb?\nAnd she said, Behold my maid Bilhah, go in unto her; and she shall bear upon my knees, that I may also have children by her.\nAnd she gave him Bilhah her handmaid to wife: and Jacob went in unto her.\nAnd Bilhah conceived, and bare Jacob a son.\nAnd Rachel said, God hath judged me, and hath also heard my voice, and hath given me a son: therefore called she his name Dan.\nAnd Bilhah Rachel’s maid conceived again, and bare Jacob a second son.\nAnd Rachel said, With great wrestlings have I wrestled with my sister, and I have prevailed: and she called his name Naphtali.\nWhen Leah saw that she had left bearing, she took Zilpah her maid, and gave her Jacob to wife.\nAnd Zilpah Leah’s maid bare Jacob a son.\nAnd Leah said, A troop cometh: and she called his name Gad.\nAnd Zilpah Leah’s maid bare Jacob a second son.\nAnd Leah said, Happy am I, for the daughters will call me blessed: and she called his name Asher.\nAnd Reuben went in the days of wheat harvest, and found mandrakes in the field, and brought them unto his mother Leah. Then Rachel said to Leah, Give me, I pray thee, of thy son’s mandrakes.\nAnd she said unto her, Is it a small matter that thou hast taken my husband? and wouldest thou take away my son’s mandrakes also? And Rachel said, Therefore he shall lie with thee to night for thy son’s mandrakes.\nAnd Jacob came out of the field in the evening, and Leah went out to meet him, and said, Thou must come in unto me; for surely I have hired thee with my son’s mandrakes. And he lay with her that night.\nAnd God hearkened unto Leah, and she conceived, and bare Jacob the fifth son.\nAnd Leah said, God hath given me my hire, because I have given my maiden to my husband: and she called his name Issachar.\nAnd Leah conceived again, and bare Jacob the sixth son.\nAnd Leah said, God hath endued me with a good dowry; now will my husband dwell with me, because I have born him six sons: and she called his name Zebulun.\nAnd afterwards she bare a daughter, and called her name Dinah.\nAnd God remembered Rachel, and God hearkened to her, and opened her womb.\nAnd she conceived, and bare a son; and said, God hath taken away my reproach:\nAnd she called his name Joseph; and said, The LORD shall add to me another son.\nAnd it came to pass, when Rachel had born Joseph, that Jacob said unto Laban, Send me away, that I may go unto mine own place, and to my country.\nGive me my wives and my children, for whom I have served thee, and let me go: for thou knowest my service which I have done thee.\nAnd Laban said unto him, I pray thee, if I have found favour in thine eyes, tarry: for I have learned by experience that the LORD hath blessed me for thy sake.\nAnd he said, Appoint me thy wages, and I will give it.\nAnd he said unto him, Thou knowest how I have served thee, and how thy cattle was with me.\nFor it was little which thou hadst before I came, and it is now increased unto a multitude; and the LORD hath blessed thee since my coming: and now when shall I provide for mine own house also?\nAnd he said, What shall I give thee? And Jacob said, Thou shalt not give me any thing: if thou wilt do this thing for me, I will again feed and keep thy flock:\nI will pass through all thy flock to day, removing from thence all the speckled and spotted cattle, and all the brown cattle among the sheep, and the spotted and speckled among the goats: and of such shall be my hire.\nSo shall my righteousness answer for me in time to come, when it shall come for my hire before thy face: every one that is not speckled and spotted among the goats, and brown among the sheep, that shall be counted stolen with me.\nAnd Laban said, Behold, I would it might be according to thy word.\nAnd he removed that day the he goats that were ringstraked and spotted, and all the she goats that were speckled and spotted, and every one that had some white in it, and all the brown among the sheep, and gave them into the hand of his sons.\nAnd he set three days’ journey betwixt himself and Jacob: and Jacob fed the rest of Laban’s flocks.\nAnd Jacob took him rods of green poplar, and of the hazel and chesnut tree; and pilled white strakes in them, and made the white appear which was in the rods.\nAnd he set the rods which he had pilled before the flocks in the gutters in the watering troughs when the flocks.came to drink, that they should conceive when they came to drink.\nAnd the flocks conceived before the rods, and brought forth cattle ringstraked, speckled, and spotted.\nAnd Jacob did separate the lambs, and set the faces of the flocks toward the ringstraked, and all the brown in the flock of Laban; and he put his own flocks by themselves, and put them not unto Laban’s cattle.\nAnd it came to pass, whensoever the stronger cattle did conceive, that Jacob laid the rods before the eyes of the cattle in the gutters, that they might conceive among the rods.\nBut when the cattle were feeble, he put them not in: so the feebler were Laban’s, and the stronger Jacob’s.\nAnd the man increased exceedingly, and had much cattle, and maidservants, and menservants, and camels, and asses.\nChapter 31\nAnd he heard the words of Laban’s sons, saying, Jacob hath taken away all that was our father’s; and of that which was our father’s hath he gotten all this glory.\nAnd Jacob beheld the countenance of Laban, and, behold, it was not toward him as before.\nAnd the LORD said unto Jacob, Return unto the land of thy fathers, and to thy kindred; and I will be with thee.\nAnd Jacob sent and called Rachel and Leah to the field unto his flock,\nAnd said unto them, I see your father’s countenance, that it is not toward me as before; but the God of my father hath been with me.\nAnd ye know that with all my power I have served your father.\nAnd your father hath deceived me, and changed my wages ten times; but God suffered him not to hurt me.\nIf he said thus, The speckled shall be thy wages; then all the cattle bare speckled: and if he said thus, The ringstraked shall be thy hire; then bare all the cattle ringstraked.\nThus God hath taken away the cattle of your father, and given them to me.\nAnd it came to pass at the time that the cattle conceived, that I lifted up mine eyes, and saw in a dream, and, behold, the rams which leaped upon the cattle were ringstraked, speckled, and grisled.\nAnd the angel of God spake unto me in a dream, saying, Jacob: And I said, Here am I.\nAnd he said, Lift up now thine eyes, and see, all the rams which leap upon the cattle are ringstraked, speckled, and grisled: for I have seen all that Laban doeth unto thee.\nI am the God of Beth-el, where thou anointedst the pillar, and where thou vowedst a vow unto me: now arise, get thee out from this land, and return unto the land of thy kindred.\nAnd Rachel and Leah answered and said unto him, Js there yet any portion or inheritance for us in our father’s house?\nAre we not counted of him strangers? for he hath sold us, and hath quite devoured also our money.\nFor all the riches which God hath taken from our father, that is ours, and our children’s: now then, whatsoever God hath said unto thee, do.\nThen Jacob rose up, and set his sons and his wives upon camels;\nAnd he carried away all his cattle, and all his goods which he had gotten, the cattle of his getting, which he had gotten in Padan-aram, for to go to Isaac his father in the land of Canaan.\nAnd Laban went to shear his sheep: and Rachel had stolen the images that were her father’s.\nAnd Jacob stole away unawares to Laban the Syrian, in that he told him not that he fled.\nSohe fled with all that he had; and he rose up, and passed over the river, and set his face toward the mount Gilead.\n22, And it was told Laban on the third day that Jacob was fled.\nAnd he took his brethren with him, and pursued after him seven days’ journey; and they overtook him in the mount Gilead.\nAnd God came to Laban the Syrian in a dream by night, and said unto him, Take heed that thou speak not to Jacob either good or bad.\nThen Laban overtook Jacob. Now Jacob had pitched his tent in the mount: and Laban with his brethren pitched in the mount of Gilead.\nAnd Laban said to Jacob, What hast thou done, that thou hast stolen away unawares to me, and carried away my daughters, as captives taken with the sword?\nWherefore didst thou flee away secretly, and steal away from me; and didst not tell me, that I might have sent thee away with mirth, and with songs, with tabret, and with harp?\nAnd hast not suffered me to kiss My sons and my daughters? thou hast Now done foolishly in so doing.\nIt is in the power of my hand to do you hurt: but the God of your father spake unto me yesternight, saying, Take thou heed that thou speak not to Jacob either good or bad.\nAnd now, though thou wouldest needs be gone, because thou sore longedst after thy father’s house, yer wherefore hast thou stolen my gods?\nAnd Jacob answered and said to Laban, Because I was afraid: for I said, Peradventure thou wouldest take by force thy daughters from me.\nWith whomsoever thou findest thy gods, let him not live: before our brethren discern thou what is thine with me, and take it to thee. For Jacob knew not that Rachel had stolen them.\nAnd Laban went into Jacob’s tent, and into Leah’s tent, and into the two maidservants’ tents; but he found them not. Then went he out of Leah’s tent, and entered into Rachel’s tent.\nNow Rachel had taken the images, and put them in the camel’s furniture, and sat upon them. And Laban searched all the tent, but found them not.\nAnd she said to her father, Let it not displease my lord that I cannot rise up before thee; for the custom of women is upon me. And he searched, but found not the images.\nAnd Jacob was wroth, and chode with Laban: and Jacob answered and said to Laban, What is my trespass? what is my sin, that thou hast so hotly pursued after me?\nWhereas thou hast searched all my stuff, what hast thou found of all thy household stuff? set it here before my brethren and thy brethren, that they may judge betwixt us both.\nThis twenty years have I been with thee; thy ewes and thy she goats have not cast their young, and the rams of thy flock have I not eaten.\nThat which was torn of beasts I brought not unto thee; I bare the loss of it; of my hand didst thou require it, whether stolen by day, or stolen by night.\nThus I was; in the day the drought consumed me, and the frost by night; and my sleep departed from mine eyes.\nThus have I been twenty years in thy house; Iserved thee fourteen years for thy two daughters, and six years for thy cattle: and thou hast changed my wages ten times.\nExcept the God of my father, the God of Abraham, and the fear of Isaac, had been with me, surely thou hadst sent me away now empty. God hath seen mine affliction and the labour of my hands, and rebuked thee yesternight.\nAnd Laban answered and said unto Jacob, These daughters are my daughters, and these children are my children, and these cattle are my cattle, and all that thou seest is mine: and what can I do this day unto these my daughters, or unto their children which they have born?\nNow therefore come thou, let us make a covenant, I and thou; and let it be for a witness between me and thee.\nAnd Jacob took a stone, and set it up for a pillar.\nAnd Jacob said unto his brethren, Gather stones; and they took stones, and made an heap: and they did eat there upon the heap.\nAnd Laban called it Jegarsahadutha: but Jacob called it Galeed.\nAnd Laban said, This heap is a witness between me and thee this day. Therefore was the name of it called Galeed;\nAnd Mizpah; for he said, The LORD watch between me and thee, when we are absent one from another.\nIf thou shalt afflict my daughters, or if thou shalt take other wives beside my daughters, no man is with us; see, God is witness betwixt me and thee.\nAnd Laban said to Jacob, Behold this heap, and behold this pillar, which I have cast betwixt me and thee;\nThis heap be witness, and this pillar be witness, that I will not pass over this heap to thee, and that thou shalt not pass over this heap and this pillar unto me, for harm.\nThe God of Abraham, and the God of Nahor, the God of their father, judge betwixt us. And Jacob sware by the fear of his father Isaac.\nThen Jacob offered sacrifice upon the mount, and called his brethren to eat bread: and they did eat bread, and tarried all night in the mount.\nAnd early in the morning Laban rose up, and kissed his sons and his daughters, and blessed them: and Laban departed, and returned unto his place.\nChapter 32\nAnd Jacob went on his way, and the angels of God met him.\nAnd when Jacob saw them, he said, This is God’s host: and he called the name of that place Mahanaim.\nAnd Jacob sent messengers before him to Esau his brother unto the land of Seir, the country of Edom.\nAnd he commanded them, saying, Thus shall ye speak unto my lord Esau; Thy servant Jacob saith thus, I have sojourned with Laban, and stayed there until now:\nAnd I have oxen, and asses, flocks, and menservants, and womenservants: and I have sent to tell my lord, that I may find grace in thy sight.\nAnd the messengers returned to Jacob, saying, We came to thy brother Esau, and also he cometh to meet thee, and four hundred men with him.\nThen Jacob was greatly afraid and distressed: and he divided the people that was with him, and the flocks, and herds, and the camels, into two bands;\nAnd said, If Esau come to the one company, and smite it, then the other company which is left shall escape.\nAnd Jacob said, O God of my father Abraham, and God of my father Isaac, the LORD which saidst unto me, Return unto thy country, and to thy kindred, and I will deal well with thee:\nI am not worthy of the least of all the mercies, and of all the truth, which thou hast shewed unto thy servant; for with my staff I passed over this Jordan; and now I am become two bands.\nDeliver me, I pray thee, from the hand of my brother, from the hand of Esau: for I fear him, lest he will come and smite me, and the mother with the children.\nAnd thou saidst, I will surely do thee good, and make thy seed as the sand of the sea, which cannot be numbered for multitude.\nAnd he lodged there that same night; and took of that which came to his hand a present for Esau his brother;\nTwo hundred she goats, and twenty he goats, two hundred ewes, and twenty rams,\nThirty milch camels with their colts, forty kine, and ten bulls, twenty she asses, and ten foals.\nAnd he delivered them into the hand of his servants, every drove by themselves; and said unto his servants, Pass over before me, and put a space betwixt drove and drove.\nAnd he commanded the foremost, saying, When Esau my brother meeteth thee, and asketh thee, saying, Whose art thou? and whither goest thou? and whose are these before thee?\nThen thou shalt say, They be thy servant Jacob’s; it is a present sent unto my lord Esau: and, behold, also he is behind us.\nAnd so commanded he the second, and the third, and all that followed the droves, saying, On this manner shall ye speak unto Esau, when ye find him.\nAnd say ye moreover, Behold, thy servant Jacob is behind us. For he said, I will appease him with the present that goeth before me, and afterward I will see his face; peradventure he will accept of me.\nSo went the present over before him: and himself lodged that night in the company.\nAnd he rose up that night, and took his two wives, and his two womenservants, and his eleven sons, and passed over the ford Jabbok.\nAnd he took them, and sent them over the brook, and sent over that he had.\nAnd Jacob was left alone; and there wrestled a man with him until the breaking of the day.\nAnd when he saw that he prevailed not against him, he touched the hollow of his thigh; and the hollow of J acob’s thigh was out of joint, as he wrestled with him.\nAnd he said, Let me go, for the day breaketh. And he said, I will not let thee go, except thou bless me.\nAnd he said unto him, What is thy name? And he said, Jacob.\nAnd he said, Thy name shall be called no more Jacob, but Israel: for as a prince hast thou power with God and with men, and hast prevailed.\nAnd Jacob asked him, and said, Tell me, I pray thee, thy name. And he said, Wherefore is it that thou dost ask after my name? And he blessed him there.\nAnd Jacob called the name of the lace Peniel: for I have seen God face to face, and my life is preserved.\nAnd as he passed over Penuel the sun rose upon him, and he halted upon his thigh. ;\nTherefore the children of Israel eat not of the sinew which shrank, which is upon the hollow of the thigh, unto this day: because he touched the hollow of Jacob’s thigh in the sinew that shrank.\nChapter 33\nAnd Jacob lifted up his eyes, and looked, and, behold, Esau came, and with him four hundred men. And he divided the children unto Leah, and unto Rachel, and unto the two handmaids.\nAnd he put the handmaids and their children foremost, and Leah and her children after, and Rachel and Joseph hindermost.\nAnd he passed over before them, and bowed himself to the ground seven times, until he came near to his brother.\nAnd Esau ran to meet him, and embraced him, and fell on his neck, and kissed him: and they wept.\nAnd he lifted up his eyes, and saw the women and the children; and said, Who are those with thee? And he said, The children which God hath graciously given thy servant.\nThen the handmaidens came near, they and their children, and they bowed themselves.\nAnd Leah also with her children came near, and bowed themselves: and after came Joseph near and Rachel, and they bowed themselves.\nAnd he said, What meanest thou by all this drove which I met? And he said, These are to find grace in the sight of my lord.\nAnd Esau said, I have enough, my brother; keep that thou hast unto thyself.\nAnd Jacob said, Nay, I pray thee, if now I have found grace in thy sight, then receive my present at my hand: for therefore I have seen thy face, as though I had seen the face of God, and thou wast pleased with me.\nTake, I pray thee, my blessing that is brought to thee; because God hath dealt graciously with me, and because I have enough. And he urged him, and he took it.\nAnd he said, Let us take our journey, and let us go, and I will go before thee.\nAnd he said unto him, My lord knoweth that the children are tender, and the flocks and herds with young are with me: and if men should overdrive them one day, all the flock will die.\nLet my lord, I pray thee, pass over before his servant: and I will lead on softly, according as the cattle that goeth before me and the children be able to endure, until I come unto my lord unto Seir.\nAnd Esau said, Let me now leave with thee some of the folk that are with me. And he said, What needeth it? let me find grace in the sight of my lord.\nSo Esau returned that day on his way unto Seir.\nAnd Jacob journeyed to Succoth, and built him an house, and made booths for his cattle: therefore the name of the place is called Succoth.\nAnd Jacob came to Shalem, a city of Shechem, which is in the land of Canaan, when he came from Padanaram; and pitched his tent before the city.\nAnd he bought a parcel of a field, where he had spread his tent, at the hand of the children of Hamor, Shechem’s father, for an hundred pieces of money.\nAnd he erected there an altar, and called it El-elohe-Israel.\nChapter 34\nAnd Dinah the daughter of Leah, which she bare unto Jacob, went out to see the daughters of the land.\nAnd when Shechem the son of Hamor the Hivite, prince of the country, saw her, he took her, and lay with her, and defiled her.\nAnd his soul clave unto Dinah the daughter of Jacob, and he loved the damsel, and spake kindly unto the damsel.\nAnd Shechem spake unto his father Hamor, saying, Get me this damsel to wife.\nAnd Jacob heard that he had defiled Dinah his daughter: now his sons were with his cattle in the field: and Jacob held his peace until they were come.\nAnd Hamor the father of Shechem went out unto Jacob to commune with him.\nAnd the sons of Jacob came out of the field when they heard it: and the men were grieved, and they were very wroth, because he had wrought folly in Israel in lying with Jacob’s daughter; which thing ought not to be done.\nAnd Hamor communed with them, saying, The soul of my son Shechem longeth for your daughter: I pray you give her him to wife.\nAnd make ye marriages with us, and give your daughters unto us, and take our daughters unto you.\nAnd ye shall dwell with us: and the land shall be before you; dwell and trade ye therein, and get you possessions therein.\nAnd Shechem said unto her father and unto her brethren, Let me find grace in your eyes, and what ye shall say unto me I will give.\nAsk me never so much dowry and gift, and I will give according as ye shall say unto me: but give me the damsel to wife.\nAnd the sons of Jacob answered Shechem and Hamor his father deceitfully, and said, because he had defiled Dinah their sister:\nAnd they said unto them, We cannot do this thing, to give our sister to one that is uncircumcised; for that were a reproach unto us:\nBut in this will we consent unto you: If ye will be as we be, that every male of you be circumcised;\nThen will we give our daughters unto you, and we will take your daughters to us, and we will dwell with you, and we will become one people.\nButif ye will not hearken unto us, to be circumcised; then will we take our daughter, and we will be gone.\nAnd their words pleased Hamor, and Shechem Hamor’s son.\nAnd the young man deferred not to do the thing, because he had delight in Jacob’s daughter: and he was more honourable than all the house of his father.\nAnd Hamor and Shechem his son came unto the gate of their city, and communed with the men of their city, saying,\nThese men are peaceable with us; therefore let them dwell in the land, and trade therein; for the land, behold, it is large enough for them; let us take their daughters to us for wives, and let us give them our daughters.\nOnly herein will the men consent unto us for to dwell with us, to be one people, if every male among us be circumcised, as they are circumcised.\nShall not their cattle and their substance and every beast of theirs be ours? only let us consent unto them, and they will dwell with us.\nAnd unto Hamor and unto Shechem his son hearkened all that went out of the gate of his city; and every male was circumcised, all that went out of the gate of his city.\nAnd it came to pass on the third day, when they were sore, that two of the sons of Jacob, Simeon and Levi, Dinah’s brethren, took each man his sword, and came upon the city boldly, and slew all the males.\nAnd they slew Hamorand Shechem his son with the edge of the sword, and took Dinah out of Shechem’s house, and went out.\nThe sons of Jacob came upon the slain, and spoiled the city, because they had defiled their sister.\nThey took their sheep, and their oxen, and their asses, and that which was in the city, and that which was in the field,\nAnd all their wealth, and all their little ones, and their wives took they captive, and spoiled even all that was in the house.\nAnd Jacob said to Simeon and Levi, Ye have troubled me to make me to stink among the inhabitants of the land, among the Canaanites and the Perizzites: and I being few in number, they shall gather themselves together against me, and slay me; and I shall be destroyed, I and my house.\nAnd they said, Should he deal with our sister as with an harlot?\nChapter 35\nAnd God said unto Jacob, Arise, go up to Beth-el, and dwell there: and make there an altar unto God, that appeared unto thee when thou fleddest from the face of Esau thy brother.\nThen Jacob said unto his household, and to all that were with him, Put away the strange gods that are among you, and be clean, and change your garments:\nAnd let us arise, and go up to Bethel; and I will make there an altar unto God, who answered me in the day of my distress, and was with me in the way which I went.\nAnd they gave unto Jacob all the strange gods which were in their hand, and all their earrings which were in their ears; and Jacob hid them under the oak which was by Shechem.\nAnd they journeyed: and the terror of God was upon the cities that were round about them, and they did not pursue after the sons of Jacob.\nSo Jacob came to Luz, which is in the land of Canaan, that is, Beth-el, he and all the people that were with him.\nAnd he built there an altar, and called the place El-Beth-el: because there God appeared unto him, when he fled from the face of his brother.\nBut Deborah Rebekah’s nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allon-bachuth.\nAnd God appeared unto Jacob again, when he came out of Padanaram, and blessed him.\nAnd God said unto him, Thy name is Jacob: thy name shall not be called any more Jacob, but Israel shall be thy name: and he called his name Israel.\nAnd God said unto him, I am God Almighty: be fruitful and multiply; a nation and a company of nations shall be of thee, and kings shall come out of thy loins;\nAnd the land which I gave Abraham and Isaac, to thee I will give it, and to thy seed after thee will I give the land.\nAnd God went up from him in the Jace where he talked with him.\nAnd Jacob set up a pillar in the place where he talked with him, even a pillar of stone: and he poured a drink offering thereon, and he poured oil thereon.\nAnd Jacob called the name of the place where God spake with him, Bethel.\nAnd they journeyed from Beth-el; and there was but a little way to come to Ephrath: and Rachel travailed, and she had hard labour.\nAnd it came to pass, when she was in hard labour, that the midwife said unto her, Fear not; thou shalt have this son also.\nAnd it came to pass, as her soul was in departing, (for she died) that she called his name Ben-oni: but his father called him Benjamin.\nAnd Rachel died, and was buried in the way to Ephrath, which is Bethlehem.\nAnd Jacob set a pillar upon her grave: that is the pillar of Rachel’s grave unto this day.\nAnd Israel journeyed, and spread his tent beyond the tower of Edar.\nAnd it came to pass, when Israel dwelt in that land, that Reuben went and lay with Bilhah his father’s concubine: and Israel heard it. Now the sons of Jacob were twelve:\nThe sons of Leah; Reuben, Jacob’s firstborn, and Simeon, and Levi, and Judah, and Issachar, and Zebulun:\nThe sons of Rachel; Joseph, and Benjamin:\nAnd the sons of Bilhah, Rachel’s handmaid; Dan, and Naphtali:\nAnd the sons of Zilpah, Leah’s handmaid; Gad, and Asher: these are the sons of Jacob, which were born to im in Padan-aram.\nAnd Jacob came unto Isaac his father unto Mamre, unto the city of Arbah, which is Hebron, where Abraham and Isaac sojourned.\nAnd the days of Isaac were an hundred and fourscore years.\nAnd Isaac gave up the ghost, and died, and was gathered unto his people, being old and full of days: and his sons Esau and Jacob buried him.\nChapter 36\nNow these are the generations of Esau, who is Edom.\nEsau took his wives of the daughters of Canaan; Adah the daughter of Elon the Hittite, and Aholibamah the daughter of Anah the daughter of Zibeon the Hivite;\nAnd Bashemath Ishmael’s daughter, sister of Nebajoth.\nAnd Adah bare to Esau Eliphaz; and Bashemath bare Reuel;\nAnd Aholibamah bare Jeush, and Jaalam, and Korah: these are the sons of Esau, which were born unto him in the land of Canaan.\nAnd Esau took his wives, and his sons, and his daughters, and all the persons of his house, and his cattle, and all his beasts, and all his substance, which he had got in the land of Canaan; and went into the country from the face of his brother Jacob.\nFor their riches were more than that they might dwell together; and the land wherein they were strangers could not bear them because of their cattle.\nThus dwelt Esau in mount Seir: Esau is Edom.\nAnd these are the generations of Esau the father of the Edomites in mount Seir:\nThese are the names of Esau’s sons; Eliphaz the son of Adah the wife of Esau, Reuel the son of Bashemath the wife of Esau.\nAnd the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz.\nAnd Timna was concubine to Eliphaz Esau’s son; and she bare to Eliphaz Amalek: these were the sons of Adah Esau’s wife.\nAnd these are the sons of Reuel; Nahath, and Zerah, Shammah, and Mizzah: these were the sons of Bashemath Esau’s wife.\nAnd these were the sons of Aholibamah, the daughter of Anah the daughter of Zibeon, Esau’s wife: and she bare to Esau Jeush, and Jaalam, and Korah.\nThese were dukes of the sons of Esau: the sons of Eliphaz the firstborn son of Esau; duke Teman, duke Omar, duke Zepho, duke Kenaz,\nDuke Korah, duke Gatam, and duke Amalek: these are the dukes that came of Eliphaz in the land of Edom; these were the sons of Adah.\nAnd these are the sons of Reuel Esau’s son; duke Nahath, duke Zerah, duke Shammah, duke Mizzah: these are the dukes that came of Reuel in the land of Edom; these are the sons of Bashemath Esau’s wife.\nAnd these are the sons of Aholibamah Esau’s wife; duke Jeush, duke Jaalam, duke Korah: these were the dukes that came of Aholibamah the daughter of Anah, Esau’s wife.\nThese are the sons of Esau, who is Edom, and these are their dukes.\nThese are the sons of Seir the Horite, who inhabited the land; Lotan, and Shobal, and Zibeon, and Anah,\nAnd Dishon, and Ezer, and Dishan: these are the dukes of the Horites, the children of Seir in the land of Edom.\nAnd the children of Lotan were Hori and Hemam; and Lotan’s sister was Timna.\nAnd the children of Shobal were these; Alvan, and Manahath, and Ebal, Shepho, and Onam.\nAnd these are the children of Zibeon; both Ajah, and Anah: this was that Anah that found the mules in the wilderness, as he fed the asses of Zibeon his father.\nAnd the children of Anah were these; Dishon, and Aholibamah the daughter of Anah.\nAnd these are the children of Dishon; Hemdan, and Eshban, and Ithran, and Cheran.\nThe children of Ezer are these; Bilhan, and Zaavan, and Akan.\nThe children of Dishan are these; Uz, and Aran.\nThese are the dukes that came of the Horites; duke Lotan, duke Shobal, duke Zibeon, duke Anah,\nDuke Dishon, duke Ezer, duke Dishan: these are the dukes that came of Hori, among their dukes in the land of Seir.\nAnd these are the kings that reigned in the land of Edom, before there reigned any king over the children of Israel.\nAnd Bela the son of Beor reigned in Edom: and the name of his city was Dinhabah.\nAnd Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead.\nAnd Jobab died, and Husham of the land of Temani reigned in his stead.\nAnd Husham died, and Hadad the son of Bedad, who smote Midian in the field of Moab, reigned in his stead: and the name of his city was Avith.\nAnd Hadad died, and Samlah of Masrekah reigned in his stead.\nAnd Samlah died, and Saul of Rehoboth by the river reigned in his stead.\nAnd Saul died, and Baal-hanan the son of Achbor reigned in his stead.\nAnd Baal-hanan the son of Achbor died, and Hadar reigned in his stead: and the name of his city was Pau; and his wife’s name was Mehetabel, the daughter of Matred, the daughter of Mezahab.\nAnd these are the names of the dukes that came of Esau, according to their families, after their places, by their names; duke Timnah, duke Alvah, duke Jetheth,\nDuke Aholibamah, duke Elah, duke Pinon,\nDuke Kenaz, duke Teman, duke Mibzar,\nDuke Magdiel, duke Iram: these be the dukes of Edom, according to their habitations in the land of their possession: he is Esau the father of the Edomites.\nChapter 37\nAnd Jacob dwelt in the land wherein his father was a stranger, in the land of Canaan.\nThese are the generations of Jacob. Joseph, being seventeen years old, was feeding the flock with his brethren; and the lad was with the sons of Bilhah, and with the sons of Zilpah, his father’s wives: and Joseph brought unto his father their evil report.\nNow Israel loved Joseph more than all his children, because he was the son of his old age: and he made him a coat of many colours.\nAnd when his brethren saw that their father loved him more than all his brethren, they hated him, and could not speak peaceably unto him.\nAnd Joseph dreamed a dream, and he told it his brethren: and they hated him yet the more.\nAnd he said unto them, Hear, I pray you, this dream which I have dreamed:\nFor, behold, we were binding sheaves in the field, and, lo, my sheaf arose, and also stood upright; and, behold, your sheaves stood round about, and made obeisance to my sheaf.\nAnd his brethren said to him, Shalt thou indeed reign over us? or shalt thou indeed have dominion over us? And they hated him yet the more for his dreams, and for his words.\nAnd he dreamed yet another dream, and told it his brethren, and said, Behold, I have dreamed a dream more; and, behold, the sun and the moon and the eleven stars made obeisance to me.\nAnd he told it to his father, and to his brethren: and his father rebuked him, and said unto him, What is this dream that thou hast dreamed? Shall I and thy mother and thy brethren indeed come to bow down ourselves to thee to the earth?\nAnd his brethren envied him; but his father observed the saying.\nAnd his brethren went to feed their father’s flock in Shechem.\nAnd Israel said unto Joseph, Do not thy brethren feed the flock in Shechem? come, and I will send thee unto them. And he said to him, Here am I.\nAnd he said to him, Go, I pray thee, see whether it be well with thy brethren, and well with the flocks; and bring me word again. So he sent him out of the vale of Hebron, and he came to Shechem.\nAnd acertain man found him, and, behold, he was wandering in the field: and the man asked him, saying, What seekest thou?\nAnd he said, I seek my brethren: tell me, I pray thee, where they feed their flocks.\nAnd the man said, They are departed hence; for I heard them say, Let us go to Dothan. And Joseph went after his brethren, and found them in Dothan. .\nAnd when they saw him afar off, even before he came near unto them, they conspired against him to slay him.\nAnd they said one to another, Behold, this dreamer cometh.\nCome now therefore, and let us slay him, and cast him into some pit, and we will say, Some evil beast hath devoured him: and we shall see what will become of his dreams.\nAnd Reuben heard it, and he delivered him out of their hands; and said, Let us not kill him.\n22, And Reuben said unto them, Shed no blood, but cast him into this pit that is in the wilderness, and lay no hand upon him; that he might rid him out of their hands, to deliver him to his father again.\nAnd it came to pass, when Joseph was come unto his brethren, that they stript Joseph out of his coat, his coat of many colours that was on him;\nAnd they took him, and cast him into a pit: and the pit was empty, there was no water in it.\nAnd they sat down to eat bread: and they lifted up their eyes and looked, and, behold, a company of Ishmeelites came from Gilead with their camels bearing spicery and balm and myrrh, going to carry it down to Egypt.\nAnd Judah said unto his brethren, What profit is it if we slay our brother, and conceal his blood?\nCome, and let us sell him to the Ishmeelites, and let not our hand be upon him; for he is our brother and our flesh. And his brethren were content.\nThen there passed by Midianites Merchantmen; and they drew and lifted up Joseph out of the pit, and sold Joseph to the Ishmeelites for twenty pieces of silver: and they brought Joseph into Egypt.\nAnd Reuben returned unto the pit; and, behold, Joseph was not in the pit; and he rent his clothes.\nAnd he returned unto his brethren, and said, The child is not; and I, whither shall I go?\nAnd they took Joseph’s coat, and killed a kid of the goats, and dipped the coat in the blood;\nAnd they sent the coat of many colours, and they brought if to their father; and said, This have we found: know now whether it be thy son’s coat or no.\nAnd he knew it, and said, It is my son’s coat; an evil beast hath devoured him; Joseph is without doubt rent in pieces.\nAnd Jacob rent his clothes, and put sackcloth upon his loins, and mourned for his son many days.\nAnd all his sons and all his daughters rose up to comfort him; but he refused to be comforted; and he said, For I will go down into the grave unto my son mourning. Thus his father wept for him.\nAnd the Midianites sold him into Egypt unto Potiphar, an officer of Pharaoh’s, and captain of the guard.\nChapter 38\nAnd it came to pass at that time, that Judah went down from his brethren, and turned in to a certain Adullamite, whose name was Hirah.\nAnd Judah saw there a daughter of a certain Canaanite, whose name was Shuah; and he took her, and went in unto her.\nAnd she conceived, and bare a son; and he called his name Er.\nAnd she conceived again, and bare a son; and she called his name Onan.\nAnd she yet again conceived, and bare a SON; and called his name Shelah: and he was at Chezib, when she bare him.\nAnd Judah took a wife for Er his firstborn, whose name was Tamar.\nAnd Er, Judah’s firstborn, was wicked in the sight of the LORD; and the LORD slew him.\nAnd Judah said unto Onan, Go in unto thy brother’s wife, and marry her, and raise up seed to thy brother.\nAnd Onan knew that the seed should not be his; and it came to pass, when he went in unto his brother’s wife, that he spilled it on the ground, lest that he should give seed to his brother.\nAnd the thing which he did displeased the LORD: wherefore he slew him also.\nThen said Judah to Tamar his daughter in law, Remain a widow at thy father’s house, till Shelah my son be grown: for he said, Lest peradventure he die also, as his brethren did. And Tamar went and dwelt in her father’s house.\nAnd in process of time the daughter of Shuah Judah’s wife died; and Judah was comforted, and went up unto his sheepshearers to Timnath, he and his friend Hirah the Adullamite.\nAnd it was told Tamar, saying, Behold thy father in law goeth up to Timnath to shear his sheep.\nAnd she put her widow’s garments off from her, and covered her with a vail, and wrapped herself, and sat in an open place, which is by the way to Timnath; for she saw that Shelah was grown, and she was not given unto him to wife.\nWhen Judah saw her, he thought her to be an harlot; because she had Covered her face.\nAnd he turned unto her by the way, and said, Go to, I pray thee, let me come in unto thee; (for he knew not that she was his daughter in law.) And she said, What wilt thou give me, that thou mayest come in unto me?\nAnd he said, I will send thee a kid from the flock. And she said, Wilt thou give me a pledge, till thou send it?\nAnd he said, What pledge shall I give thee? And she said, Thy signet, and thy bracelets, and thy staff that is in thine hand. And he gave it her, and came in unto her, and she conceived by him.\nAnd she arose, and went away, and laid by her vail from her, and put on the garments of her widowhood.\nAnd Judah sent the kid by the hand of his friend the Adullamite, to receive his pledge from the woman’s hand: but he found her not.\nThen he asked the men of that place, saying, Where is the harlot, that was openly by the way side? And they said, There was no harlot in this place.\nAnd he returned to Judah, and said, I cannot find her; and also the men of the place said, that there was no harlot in this place.\nAnd Judah said, Let her take it to her, lest we be shamed: behold, I sent this kid, and thou hast not found her.\nAnd it came to pass about three months after, that it was told Judah, saying, Tamar thy daughter in law hath played the harlot; and also, behold, she is with child by whoredom. And Judah said, Bring her forth, and let her be burnt.\nWhen she was brought forth, she sent to her father in law, saying, By the man, whose these are, am I with child: and she said, Discern, I pray thee, whose are these, the signet, and bracelets, and staff.\nAnd Judah acknowledged them, and said, She hath been more righteous than I; because that I gave her not to Shelah my son. And he knew her again no more.\nAnd it came to pass in the time of her travail, that, behold, twins were in her womb.\nAnd it came to pass, when she travailed, that the one put out his hand: and the midwife took and bound upon his hand a scarlet thread, saying, This came out first.\nAnd it came to pass, as he drew back his hand, that, behold, his brother came out: and she said, How hast thou broken forth? this breach be upon thee: therefore his name was called Pharez.\nAnd afterward came out his brother, that had the scarlet thread upon his hand: and his name was called Zarah.\nChapter 39\nAnd Joseph was brought down to Egypt; and Potiphar, an officer of Pharaoh, captain of the guard, an Egyptian, bought him of the hands of the Ishmeelites, which had brought him down thither.\nAnd the LORD was with Joseph, and he was a prosperous man; and he was in the house of his master the Egyptian.\nAnd his master saw that the LORD was with him, and that the LORD made all that he did to prosper in his hand.\nAnd Joseph found grace in his sight, and he served him: and he made him overseer over his house, and all that he had he put into his hand.\nAnd it came to pass from the time that he had made him overseer in his house, and over all that he had, that the LORD blessed the Egyptian’s house for Joseph’s sake; and the blessing of the LORD was upon all that he had in the house, and in the field.\nAnd he left all that he had in Joseph’s hand; and he knew not ought he had, save the bread which he did eat. And Joseph was a goodly person, and well favoured.\nAnd it came to pass after these things, that his master’s wife cast her eyes upon Joseph; and she said, Lie with me.\nBut he refused, and said unto his master’s wife, Behold, my master wotteth not what is with me in the house, and he hath committed all that he hath to my hand;\nThere is none greater in this house than I; neither hath he kept back any thing from me but thee, because thou art his wife: how then can I do this great wickedness, and sin against God?\nAnd it came to pass, as she spake to Joseph day by day, that he hearkened not unto her, to lie by her, or to be with her.\nAnd it came to pass about this time, that Joseph went into the house to do his business; and there was none of the men of the house there within.\nAnd she caught him by his garment, saying, Lie with me: and he left his garment in her hand, and fled, and got him out.\nAnd it came to pass, when she saw that he had left his garment in her hand, and was fled forth,\nThat she called unto the men of her house, and spake unto them, saying, See, he hath brought in an Hebrew unto us to mock us; he came in unto me to lie with me, and I cried with a loud voice:\nAnd it came to pass, when he heard that I lifted up my voice and cried, that he left his garment with me, and fled, and got him out.\nAnd she laid up his garment by her, til his lord came home.\nAnd she spake unto him according to these words, saying, The Hebrew servant, which thou hast brought unto us, came in unto me to mock me:\nAnd it came to pass, as I lifted up my voice and cried, that he left his garment with me, and fled out.\nAnd it came to pass, when his master heard the words of his wife, which she spake unto him, saying, After this manner did thy servant to me; that his wrath was kindled.\nAnd Joseph’s master took him, and put him into the prison, a place where the king’s prisoners were bound: and he was there in the prison.\nBut the LORD was with Joseph, and shewed him mercy, and gave him favour in the sight of the keeper of the prison.\nAnd the keeper of the prison committed to Joseph’s hand all the prisoners that were in the prison; and whatsoever they did there, he was the doer of it.\nThe keeper of the prison looked not to any thing that was under his hand; because the LORD was with him, and that which he did, the LORD made it to prosper.\nChapter 40\nAnd it came to pass after these things, that the butler of the king of Egypt and his baker had offended their lord the king of Egypt.\nAnd Pharaoh was wroth against two of his officers, against the chief Of the butlers, and against the chief of the bakers.\nAnd he put them in ward in the house of the captain of the guard, into the prison, the place where Joseph was bound.\nAnd the captain of the guard charged Joseph with them, and he served them: and they continued a season in ward.\nAnd they dreamed a dream both of them, each man his dream in one night, each man according to the interpretation of his dream, the butler and the baker of the king of Egypt, which were bound in the prison.\nAnd Joseph came in unto them in the morning, and looked upon them, and, behold, they were sad.\nAnd he asked Pharaoh’s officers that were with him in the ward of his lord’s house, saying, Wherefore look ye so sadly to day?\nAnd they said unto him, We have dreamed a dream, and there is no interpreter of it. And Joseph said unto them, Do not interpretations belong to God? tell me them, I pray you.\nAnd the chief butler told his dream to Joseph, and said to him, In my dream, behold, a vine was before me;\nAnd in the vine were three branches: and it was as though it budded, and her blossoms shot forth; and the clusters thereof brought forth ripe grapes:\nAnd Pharaoh’s cup was in my hand: and I took the grapes, and pressed them into Pharaoh’s cup, and I gave the cup into Pharaoh’s hand.\nAnd Joseph said unto him, This is the interpretation of it: The three branches are three days:\nYet within three days shall Pharaoh lift up thine head, and restore thee unto thy place: and thou shalt deliver Pharaoh’s cup into his hand, after the former manner when thou wast his butler.\nBut think on me when it shall be well with thee, and shew kindness, I pray thee, unto me, and make mention of me unto Pharaoh, and bring me out of this house:\nFor indeed I was stolen away out of the land of the Hebrews: and here also have I done nothing that they should put me into the dungeon.\nWhen the chief baker saw that the interpretation was good, he said unto Joseph, I also was in my dream, and, behold, I had three white baskets on my head:\nAnd in the uppermost basket there was of all manner of bakemeats for Pharaoh; and the birds did eat them out of the basket upon my head.\nAnd Joseph answered and said, This is the interpretation thereof: The three baskets are three days:\nYet within three days shall Pharaoh liftup thy head from off thee, and shall hang thee on a tree; and the birds shall eat thy flesh from off thee.\nAnd it came to pass the third day, which was Pharaoh’s birthday, that he made a feast unto all his servants: and he lifted up the head of the chief butler and of the chief baker among his servants.\nAnd he restored the chief butler unto his butlership again; and he gave the cup into Pharaoh’s hand:\nBut he hanged the chief baker: as Joseph had interpreted to them.\nYet did not the chief butler remember Joseph, but forgat him.\nChapter 41\nAnd it came to pass at the end of two full years, that Pharaoh dreamed: and, behold, he stood by the river.\nAnd, behold, there came up out of the river seven well favoured kine and fatfleshed; and they fed in a meadow.\nAnd, behold, seven other kine Came up after them out of the river, ill favoured and leanfleshed; and stood by the other kine upon the brink of the river.\nAnd the ill favoured and leanfleshed kine did eat up the seven well favoured and fat kine. So Pharaoh awoke.\nAnd he slept and dreamed the second time: and, behold, seven ears of corn came up upon one stalk, rank and good.\nAnd, behold, seven thin ears and blasted with the east wind sprung up after them.\nAnd the seven thin ears devoured the seven rank and full ears. And Pharaoh awoke, and, behold, it was a dream.\nAnd it came to pass in the morning that his spirit was troubled; and he sent and called for all the magicians of Egypt, and all the wise men thereof: and Pharaoh told them his dream; but there was none that could interpret them unto Pharaoh.\nThen spake the chief butler unto Pharaoh, saying, I do remember my faults this day:\nPharaoh was wroth with his servants, and put me in ward in the captain of the guard’s house, both me and the chief baker:\nAnd we dreamed a dream in one night, I and he; we dreamed each man according to the interpretation of his dream.\nAnd there was there with us a young man, an Hebrew, servant to the captain of the guard; and we told him, and he interpreted to us our dreams; to each man according to his dream he did interpret.\nAnd it came to pass, as he interpreted to us, so it was; me he restored unto mine office, and him he hanged.\nThen Pharaoh sent and called Joseph, and they brought him hastily out of the dungeon: and he shaved himself, and changed his raiment, and came in Unto Pharaoh.\nAnd Pharaoh said unto Joseph, I have dreamed a dream, and there is none that can interpret it: and I have heard say of thee, that thou canst understand a dream to interpret it.\nAnd Joseph answered Pharaoh, saying. It is not in me: God shall give Pharaoh an answer of peace.\nAnd Pharaoh said unto Joseph, In my dream, behold, I stood upon the bank of the river:\nAnd, behold, there came up out of the river seven kine, fatfleshed and well favoured; and they fed in a meadow:\nAnd, behold, seven other kine came up after them, poor and very ill favoured and leanfleshed, such as I n all the land of Egypt for badness;\nAnd the lean and the ill favoured kine did eat up the first seven fat kine:\nAnn they had eaten them up, it could not be known that they had eaten them; but they were still ill favoured, as at the beginning. So I awoke.\nAnd I saw in my dream, and, behold, seven ears came up in one stalk, full and good.\nAnd, behold, seven ears, withered, thin, and blasted with the east wind, sprung up after them:\nAnd the thin ears devoured the seven good ears: and I told this unto the magicians; but there was none that could declare it to me.\nAnd Joseph said unto Pharaoh, The dream of Pharaoh is one: God hath shewed Pharaoh what he is about to do.\nThe seven good kine are seven Years; and the seven good ears are seven years; the dream is one.\nAnd the seven thin and ill favoured kine that came up after them are seven years; and the seven empty ears blasted with the east wind shall be seven years of famine.\nThis is the thing which I have spoken unto Pharaoh: What God is about to do he sheweth unto Pharaoh.\nBehold, there come seven years of great plenty throughout all the land of Egypt:\nAnd there shall arise after them seven years of famine; and all the plenty shall be forgotten in the land of Egypt; and the famine shall consume the land;\nAnd the plenty shall not be known in the land by reason of that famine following; for it shall be very grievous.\nAnd for that the dream was doubled unto Pharaoh twice; it is because the thing is established by God, and God will shortly bring it to pass.\nNow therefore let Pharaoh look out a man discreet and wise, and set him over the land of Egypt.\nLet Pharaoh do this, and let him appoint officers over the land, and take up the fifth part of the land of Egypt in the seven plenteous years.\nAnd let them gather all the food of those good years that come, and lay up com under the hand of Pharaoh, and let them keep food in the cities.\nAnd that food shall be for store to the land against the seven years of famine, which shall be in the land of Egypt; that the land perish not through the famine.\nAnd the thing was good in the eyes of Pharaoh, and in the eyes of all his servants.\nAnd Pharaoh said unto his servants, Can we find such a one as this is, a man in whom the Spirit of God is?\nAnd Pharaoh said unto Joseph, Forasmuch as God hath shewed thee all this, there is none so discreet and wise as thou art:\nThou shalt be over my house, and according unto thy word shall all my ople be ruled: only in the throne will I be greater than thou.\nAnd Pharaoh said unto Joseph, See, I have set thee over all the land of Egypt. .\nAnd Pharaoh took off his ring from his hand, and put it upon Joseph’s hand, and arrayed him in vestures of fine linen, and put a gold chain about his neck;\nAnd he made him to ride in the second chariot which he had; and they cried before him, Bow the knee: and he made him ruler over all the land of Egypt.\nAnd Pharaoh said unto Joseph, I am Pharaoh, and without thee shall no man lift up his hand or foot in all the land of Egypt.\nAnd Pharaoh called Joseph’s name Zaphnath-paaneah; and he gave him to wife Asenath the daughter of Potipherah priest of On. And Joseph went out over all the land of Egypt.\nAnd Joseph was thirty years old when he stood before Pharaoh king of Egypt. And Joseph went out from the presence of Pharaoh, and went throughout all the land of Egypt.\nAnd in the seven plenteous years the earth brought forth by handfuls.\nAnd he gathered up all the food of the seven years, which were in the land of Egypt, and laid up the food in the cities: the food of the field, which was round about every city, laid he up in the same.\nAnd Joseph gathered corn as the sand of the sea, very much, until he left numbering; for it was without number.\nAnd unto Joseph were born two sons before the years of famine came, which Asenath the daughter of Potipherah priest of On bare unto him.\nAnd Joseph called the name of the firstborn Manasseh: For God, said he, hath made me forget all my toil, and all my father’s house.\nAnd the name of the second called he Ephraim: For God hath caused me to be fruitful in the land of my affliction.\nAnd the seven years of plenteousness, that was in the land of Egypt, were ended.\nAnd the seven years of dearth began to come, according as Joseph had said: and the dearth was in all lands; but in all the land of Egypt there was bread.\nAnd when all the land of Egypt was famished, the people cried to Pharaoh for bread: and Pharaoh said unto all the Egyptians, Go unto Joseph; what he saith to you, do.\nAnd the famine was over all the face of the earth: And Joseph opened all the storehouses, and sold unto the Egyptians; and the famine waxed sore in the land of Egypt.\nAnd all countries came into Egypt to Joseph for to buy corn; because that the famine was so sore in all lands.\nChapter 42\nNow when Jacob saw that there was corn in Egypt, Jacob said unto his sons, Why do ye look one upon another?\nAnd he said, Behold, I have heard that there is corn in Egypt: get you down thither, and buy for us from thence; that we may live, and not die.\nAnd Joseph’s ten brethren went down to buy corn in Egypt.\nBut Benjamin, Joseph’s brother, cob sent not with his brethren; for he said, Lest peradventure mischief befall him.\nAnd the sons of Israel came to buy corn among those that came: for the famine was in the land of Canaan.\nAnd Joseph was the governor over the land, and he it was that sold to all the people of the land: and Joseph’s brethren came, and bowed down themselves before him with their faces to the earth.\nAnd Joseph saw his brethren, and he knew them, but made himself strange unto them, and spake roughly unto them; and he said unto them, Whence come ye? And they said, From the land of Canaan to buy food.\nAnd Joseph knew his brethren, but they knew not him.\nAnd Joseph remembered the dreams which he dreamed of them, and said unto them, Ye are spies; to see the nakedness of the land ye are come.\nAnd they said unto him, Nay, my lord, but to buy food are thy servants come.\nWeare all one man’s sons; we are true men, thy servants are no spies.\nAnd he said unto them, Nay, but to see the nakedness of the land ye are come.\nAnd they said, Thy servants are twelve brethren, the sons of one man inthe land of Canaan; and, behold, the youngest is this day with our father, and one is not.\nAnd Joseph said unto them, That is it that I spake unto you, saying, Ye are spies:\nHereby ye shall be proved: By the life of Pharaoh ye shall not go forth hence, except your youngest brother come hither.\nSend one of you, and let him fetch Your brother, and ye shall be kept in whether there be any truth in you: or else by the life of Pharaoh surely ye are spies.\nAnd he put them all together into ward three days.\nAnd Joseph said unto them the third day, This do, and live; for I fear God:\nIf ye be true men, let one of your brethren be bound in the house of your prison: go ye, carry corn for the famine of your houses:\nBut bring your youngest brother unto me; so shall your words be verified, and ye shall not die. And they did so.\nAnd they said one to another, We are verily guilty concerning our brother, in that we saw the anguish of his soul, when he besought us, and we would not hear; therefore is this distress come upon us.\nAnd Reuben answered them, saying, Spake I not unto you, saying, Do not sin against the child; and ye would not hear? therefore, behold, also his blood is required.\nAnd they knew not that Joseph understood them; for he spake unto them by an interpreter.\nAnd he turned himself about from them, and wept; and returned to them again, and communed with them, and took from them Simeon, and bound him before their eyes.\nThen Joseph commanded to fill their sacks with corn, and to restore every man’s money into his sack, and to give them provision for the way: and thus did he unto them.\nAnd they laded their asses with the corn, and departed thence.\nAnd as one of them opened his sack to give his ass provender in the inn, he espied his money; for, behold, it was in his sack’s mouth.\nAnd he said unto his brethren, My money is restored; and, lo, it is even in sack: and their heart failed them, and they were afraid, saying one to another, What is this that God hath done unto us?\nAnd they came unto Jacob their father unto the land of Canaan, and told him all that befell unto them; saying,\nThe man, who is the lord of the Jand, spake roughly to us, and took us for spies of the country.\nAnd we said unto him, We are true men; we are no spies:\nWe be twelve brethren, sons of our father; one is not, and the youngest is this day with our father in the land of Canaan.\nAnd the man, the lord of the country, said unto us, Hereby shall I know that ye are true men; leave one of your brethren here with me, and take food for the famine of your households, and be gone:\nAnd bring your youngest brother unto me: then shall I know that ye are no spies, but that ye are true men: so will I deliver you your brother, and ye shall traffick in the land.\nAnd it came to pass as they emptied their sacks, that, behold, every man’s bundle of money was in his sack: and when both they and their father saw the bundles of money, they were afraid.\nAnd Jacob their father said unto them, Me have ye bereaved of my children: Joseph is not, and Simeon is not, and ye will take Benjamin away: all these things are against me.\nAnd Reuben spake unto his father, saying, Slay my two sons, if I bring him not to thee: deliver him into my hand, and I will bring him to thee again.\nAnd he said, My son shall not go down with you; for his brother is dead, and he is left alone: if mischief befall him by the way in the which ye go, then shall ye bring down my gray hairs with sorrow to the grave.\nChapter 43\nAnd the famine was sore in the land.\nAnd it came to pass, when they had eaten up the corn which they had brought out of Egypt, their father said unto them, Go again, buy us a little food.\nAnd Judah spake unto him, saying, The man did solemnly protest unto us, saying, Ye shall not see my face, except your brother be with you.\nIf thou wilt send our brother with us, we will go down and buy thee food:\nBut if thou wilt not send him, we will not go down: for the man said unto us, Ye shall not see my face, except your brother be with you.\nAnd Israel said, Wherefore dealt ye so ill with me, as to tell the man whether ye had yet a brother?\nAnd they said, The man asked us straitly of our state, and of our kindred, saying, /s your father yet alive? have ye another brother? and we told him according to the tenor of these words: could we certainly know that he would say, Bring your brother down?\nAnd Judah said unto Israel his father, Send the lad with me, and we will arise and go; that we may live, and not die, both we, and thou, and also our little ones.\nI will be surety for him; of my hand shalt thou require him: if I bring him not unto thee, and set him before thee, then let me bear the blame for ever:\nFor except we had lingered, surely now we had returned this second time.\nAnd their father Israel said unto them, If it must be so now, do this; take of the best fruits in the land in your vessels, and carry down the man a present, a little balm, and a little honey, spices, and myrrh, nuts, and almonds:\nAnd take double money in your hand; and the money that was brought again in the mouth of your sacks, carry it again in your hand; peradventure it was an oversight:\nTake also your brother, and arise, o again unto the man:\nAnd God Almighty give you mercy before the man, that he may send away your other brother, and Benjamin. If I be bereaved of my children, I am bereaved.\nAnd the men took that present, and they took double money in their hand, and Benjamin; and rose up, and went down to Egypt, and stood before Joseph.\nAnd when Joseph saw Benjamin with them, he said to the ruler of his house, Bring these men home, and slay, and make ready; for these men shall dine with me at noon.\nAnd the man did as Joseph bade; and the man brought the men into Joseph’s house.\nAnd the men were afraid, because they were brought into Joseph’s house; and they said, Because of the money that was returned in our sacks at the first time are we brought in; that he may seek occasion against us, and fall upon us, and take us for bondmen, and our asses.\nAnd they came near to the steward of Joseph’s house, and they communed with him at the door of the house,\nAnd said, O sir, we came indeed down at the first time to buy food:\nAnd it came to pass, when we came fo the inn, that we opened our sacks, and, behold, every man’s money was in the mouth of his sack, our money in full weight: and we have brought it again in our hand.\nAnd other money have we brought down in our hands to buy food: we cannot tell who put our money in our sacks.\nAnd he said, Peace be to you, fear not: your God, and the God of your father, hath given you treasure in your sacks: I had your money. And he brought Simeon out unto them.\nAnd the man brought the men into Joseph’s house, and gave them water, and they washed their feet; and he gave their asses provender.\nAnd they made ready the present against Joseph came at noon: for they heard that they should eat bread there.\nAnd when Joseph came home, they brought him the present which was in their hand into the house, and bowed themselves to him to the earth.\nAnd he asked them of their welfare, and said, Js your father well, the old man of whom ye spake? /s he yet alive?\nAnd they answered, Thy servant our father is in good health, he is yet alive. And they bowed down their heads, and made obeisance.\nAnd he lifted up his eyes, and saw his brother Benjamin, his mother’s son, and said, /s this your younger brother, of whom ye spake unto me? And he said, God be gracious unto thee, my son.\nAnd Joseph made haste; for his bowels did yearn upon his brother: and he sought where to weep; and he entered into his chamber, and wept there.\nAnd he washed his face, and went out, and refrained himself, and said, Set on bread.\nAnd they set on for him by himself, and for them by themselves, and for the Egyptians, which did eat with him, by themselves: because the Egyptians might not eat bread with the Hebrews; for that is an abomination unto the Egyptians. .\nAnd they sat before him, the firstborn according to his birthright, and the youngest according to his youth: and the men marvelled one at another.\nAnd he took and sent messes unto them from before him: but Benjamin’s mess was five times so much as any of theirs. And they drank, and were merry with him.\nChapter 44\nAnd he commanded the steward of his house, saying, Fill the men’s sacks with food, as much as they can carry, and put every man’s money in his sack’s mouth.\nAnd put my cup, the silver cup, in the sack’s mouth of the youngest, and his corn money. And he did according to the word that Joseph had spoken.\nAs soon as the morning was light, the men were sent away, they and their asses.\nAnd when they were gone out of the city, and not yer far off, Joseph said unto his steward, Up, follow after the men; and when thou dost overtake them, say unto them, Wherefore have ye rewarded evil for good?\nIs not this it in which my lord drinketh, and whereby indeed he divineth? ye have done evil in so doing.\nAnd he overtook them, and he spake unto them these same words.\nAnd they said unto him, Wherefore saith my lord these words? God forbid that thy servants should do according to this thing:\nBehold, the money, which we found in our sacks’ mouths, we brought again unto thee out of the land of Canaan: how then should we steal out of thy lord’s house silver or gold?\nWith whomsoever of thy servants it be found, both let him die, and we also will be my lord’s bondmen.\nAnd he said, Now also Jet it be according unto your words: he with whom it is found shall be my servant; and ye shall be blameless.\nThen they speedily took down every man his sack to the ground, and opened every man his sack.\nAnd he searched, and began at the eldest, and left at the youngest: and the cup was found in Benjamin’s sack.\nThen they rent their clothes, and laded every man his ass, and returned to the city.\nAnd Judah and his brethren came to Joseph’s house; for he was yet there: and they fell before him on the ground.\nAnd Joseph said unto them, What deed is this that ye have done? wot ye not that such a man as I can certainly divine?\nAnd Judah said, What shall we say unto my lord? what shall we speak? or how shall we clear ourselves? God hath found out the iniquity of thy servants: behold, we are my lord’s servants, both we, and he also with whom the cup is found.\nAnd he said, God forbid that I should do so: but the man in whose hand the cup is found, he shall be my servant; and as for you, get you up in peace unto your father.\nThen Judah came near unto him, and said, Oh my lord, let thy servant, I pray thee, speak a word in my lord’s ears, and let not thine anger burn against thy servant: for thou art even as Pharaoh.\nMy lord asked his servants, saying, Have ye a father, or a brother?\nAnd we said unto my lord, We ye a father, an old man, and a child f his old age, a little one; and his brother is dead, and he alone is left of his mother, and his father loveth him.\nAnd thou saidst unto thy servants, Bring him down unto me, that I may mine eyes upon him.\nAnd we said unto my lord, The lad cannot leave his father: for if he should leave his father, his father would die.\nAnd thou saidst unto thy servants, Except your youngest brother come down with you, ye shall see my face no more.\nAnd it came to pass when we came up unto thy servant my father, we told him the words of my lord.\nAnd our father said, Go again, and buy us a little food.\nAnd we said, We cannot go down: if our youngest brother be with us, then will we go down: for we may not see the man’s face, except our youngest brother be with us.\nAnd thy servant my father said unto us, Ye know that my wife bare me two sons:\nAnd the one went out from me, and I said, Surely he is torn in pieces; and I saw him not since:\nAnd if ye take this also from me, and mischief befall him, ye shall bring down my gray hairs with sorrow to the grave.\nNow therefore when I come to thy Servant my father, and the lad be not with us; seeing that his life is bound up in the lad’s life;\nIt shall come to pass, when he seeth that the lad is not with us, that he will die: and thy servants shall bring down the gray hairs of thy servant our father with sorrow to the grave.\nFor thy servant became surety for the lad unto my father, saying, If I bring him not unto thee, then I shall bear the blame to my father for ever.\nNow therefore, I pray thee, let thy servant abide instead of the lad a bondman to my lord; and let the lad go up with his brethren.\nFor how shall I go up to my father, and the lad be not with me? lest peradventure I see the evil that shall come on my father.\nChapter 45\nThen Joseph could not refrain himself before all them that stood by him; and he cried, Cause every man to go out from me. And there stood no man with him, while Joseph made himself known unto his brethren.\nAnd he wept aloud: and the Egyptians and the house of Pharaoh heard.\nAnd Joseph said unto his brethren, I am Joseph; doth my father yet live? And his brethren could not answer him; for they were troubled at his presence.\nAnd Joseph said unto his brethren, Come near to me, I pray you. And they came near. And he said, I am Joseph your brother, whom ye sold into Egypt.\nNow therefore be not grieved, nor angry with yourselves, that ye sold me hither: for God did send me before you to preserve life.\nFor these two years hath the famine been in the land: and yet there are five years, in the which there shall neither be earing nor harvest.\nAnd God sent me before you to preserve you a posterity in the earth, and to save your lives by a great deliverance.\nSo now it was not you that sent me hither, but God: and he hath made me a father to Pharaoh, and lord of all his house, and a ruler throughout all the land of Egypt.\nHaste ye, and go up to my father, and say unto him, Thus saith thy son Joseph, God hath made me lord of all Egypt: come down unto me, tarry not:\nAnd thou shalt dwell in the land of Goshen, and thou shalt be near unto me, thou, and thy children, and thy children’s children, and thy flocks, and thy herds, and all that thou hast:\nAnd there will I nourish thee; for yet there are five years of famine; lest thou, and thy household, and all that thou hast, come to poverty.\nAnd, behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaketh unto you.\nAnd ye shall tell my father of all my glory in Egypt, and of all that ye have seen; and ye shall haste and bring down my father hither.\nAnd he fell upon his brother Benjamin’s neck, and wept; and Benjamin wept upon his neck.\nMoreover he kissed all his brethren, and wept upon them: and after that his brethren talked with him.\nAnd the fame thereof was heard in Pharaoh’s house, saying, Joseph’s brethren are come: and it pleased Pharaoh well, and his servants.\nAnd Pharaoh said unto Joseph, Say unto thy brethren, This do ye; lade your beasts, and go, get you unto the land of Canaan;\nAnd take your father and your households, and come unto me: and I will give you the good of the land of Egypt, and ye shall eat the fat of the land.\nNow thou art commanded, this do ye; take you wagons out of the land of Egypt for your little ones, and for your wives, and bring your father, and come,\nAlso regard not your stuff; for the 800d of all the land of Egypt is yours.\nAnd the children of Israel did so: and Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way.\nTo all of them he gave each man changes of raiment; but to Benjamin he gave three hundred pieces of silver, and five changes of raiment.\nAnd to his father he sent after this manner; ten asses laden with the good things of Egypt, and ten she asses laden with corn and bread and meat for his father by the way.\nSo he sent his brethren away, and they departed: and he said unto them, See that ye fall not out by the way.\nAnd they went up out of Egypt, and came into the land of Canaan unto Jacob their father,\nAnd told him, saying, Joseph is yet alive, and he is governor over all the land of Egypt. And Jacob’s heart fainted, for he believed them not.\nAnd they told him all the words of Joseph, which he had said unto them: and when he saw the wagons which Joseph had sent to carry him, the spirit of Jacob their father revived:\nAnd Israel said, /t is enough; Joseph my son is yet alive: I will go and see him before I die.\nChapter 46\nAnd Israel took his journey with all that he had, and came to Beer-sheba, and offered sacrifices unto the God of his father Isaac.\nAnd God spake unto Israel in the visions of the night, and said, Jacob, Jacob. And he said, Here am I.\nAnd he said, I am God, the God of thy father: fear not to go down into Egypt; for I will there make of thee a great nation:\nI will go down with thee into Egypt; and I will also surely bring thee up again: and Joseph shall put his hand upon thine eyes.\nAnd Jacob rose up from Beersheba: and the sons of Israel carried Jacob their father, and their little ones, and their wives, in the wagons which Pharaoh had sent to carry him.\nAnd they took their cattle, and their goods, which they had gotten in the land of Canaan, and came into Egypt, Jacob, and all his seed with him:\nHis sons, and his sons’ sons with him, his daughters, and his sons’ daughters, and all his seed brought he with him into Egypt.\nAnd these are the names of the children of Israel, which came into Egypt, Jacob and his sons: Reuben, Jacob's firstborn.\nAnd the sons of Reuben; Hanoch, and Hezron, and Hezron, and Carmi.\nAnd the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman.\nAnd the sons of Levi; Gershon, Kohath, and Merari.\nAnd the sons of Judah; Er, and Onan, and Shelah, and Pharez, and Zerah: but Er and Onan died in the land of Canaan. And the sons of Pharez were Hezron and Hamul.\nAnd the sons of Issachar; Tola, and Phuvah, and Job and Shimron.\nAnd the sons of Zebulun; Sered, and Elon, and Jahleel.\nThese be the sons of Leah, which she bare unto Jacob in Padan-aram, with his daughter Dinah: all the souls of his sons and his daughters were thirty and three.\nAnd the sons of Gad; Ziphion, and Haggi, Shuni, and Ezbon, Eri, and Arodi, and Areli.\nAnd the sons of Asher; Jimnah, and Ishuah and Isui, and Beriah, and Serah their sister: and the sons of Beriah; Heber, and Malchiel.\nThese are the sons of Zilpah, whom Laban gave to Leah his daughter, and these she bare unto Jacob, even sixteen souls.\nThe sons of Rachel Jacob’s wife; Joseph, and Benjamin.\nAnd unto Joseph in the land of Egypt were born Manasseh and Ephraim, which Asenath the daughter of Poti-pherah priest of On bare unto him.\nAnd the sons of Benjamin were Belah, and Becher, and Ashbel, Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard.\nThese are the sons of Rachel, which were born to Jacob: all the souls were fourteen.\nAnd the sons of Dan; Hushim.\nAnd the sons of Naphtali; Jahzeel, and Guni, and Jezer, and Shillem.\nThese are the sons of Bilhah, which Laban gave unto Rachel his daughter, and she bare these unto Jacob: all the souls were seven.\nAll the souls that came with Jacob into Egypt, which came out of his loins, besides Jacob’s sons’ wives, all the souls were threescore and six;\nAnd the sons of Joseph, which were born him in Egypt, were two souls: all the souls of the house of Jacob, which came into Egypt, were threescore and ten.\nAnd he sent Judah before him unto Joseph, to direct his face unto Goshen; and they came into the land of Goshen.\nAnd Joseph made ready his chariot, and went up to meet Israel his father, to Goshen, and presented himself unto him; and he fell on his neck, and wept on his neck a good while.\nAnd Israel said unto Joseph, Now let me die, since I have seen thy face, because thou art yet alive.\nAnd Joseph said unto his brethren, and unto his father’s house, I will go up, and shew Pharaoh, and say unto him, My brethren, and my father’s house, which were in the land of Canaan, are come unto me;\nAnd the men are shepherds, for their trade hath been to feed cattle; and they have brought their flocks, and their herds, and all that they have.\nAnd it shall come to pass, when Pharaoh shall call you, and shall say, What is your occupation?\nThat ye shall say, Thy servants’ trade hath been about cattle from our youth even until now, both we, and also our fathers: that ye may dwell in the land of Goshen; for every shepherd is an abomination unto the Egyptians.\nChapter 47\nThen Joseph came and told Pharaoh, and said, My father and my brethren, and their flocks, and their herds, and all that they have, are come out of the land of Canaan; and, behold, they are in the land of Goshen.\nAnd he took some of his brethren, even five men, and presented them unto Pharaoh.\nAnd Pharaoh said unto his brethren, What is your occupation? And they said unto Pharaoh, Thy servants are shepherds, both we, and also our fathers.\nThey said moreover unto Pharaoh, For to sojourn in the land are we come; for thy servants have no pasture for their flocks; for the famine is sore in the land of Canaan: now therefore, we pray thee, let thy servants dwell in the land of Goshen.\nAnd Pharaoh spake unto Joseph, Saying, Thy father and thy brethren are come unto thee:\nThe land of Egypt is before thee; In the best of the land make thy father and brethren to dwell; in the land of Goshen let them dwell: and if thou knowest any men of activity among them, then make them rulers over my cattle.\nAnd Joseph brought in Jacob his father, and set him before Pharaoh: and Jacob blessed Pharaoh.\nAnd Pharaoh said unto Jacob, How old art thou?\nAnd Jacob said unto Pharaoh, The days of the years of my pilgrimage are an hundred and thirty years: few and evil have the days of the years of my life been, and have not attained unto the days of the years of the life of my fathers in the days of their pilgrimage.\nAnd Jacob blessed Pharaoh, and went out from before Pharaoh.\nAnd Joseph placed his father and his brethren, and gave them a possession in the land of Egypt, in the best of the land, in the land of Rameses, as Pharaoh had commanded.\nAnd Joseph nourished his father, and his brethren, and all his father’s household, with bread, according to their families.\nAnd there was no bread in all the land; for the famine was very sore, so that the land of Egypt and all the land of Canaan fainted by reason of the famine.\nAnd Joseph gathered up all the money that was found in the land of Egypt, and in the land of Canaan, for the corn which they bought: and Joseph brought the money into Pharaoh’s house.\nAnd when money failed in the land of Egypt, and in the land of Canaan, all the Egyptians came unto Joseph, and said, Give us bread: for why should we die in thy presence? for the money faileth.\nAnd Joseph said, Give your cattle; and I will give you for your cattle, if money fail.\nAnd they brought their cattle unto Joseph: and Joseph gave them bread in exchange for horses, and for the flocks, and for the cattle of the herds, and for e asses: and he fed them with bread for all their cattle for that year.\nWhen that year was ended, they came unto him the second year, and said unto him, We will not hide it from lord, how that our money is spent; my lord also hath our herds of cattle; there is not ought left in the sight of my lord, but our bodies, and our lands:\nWherefore shall we die before thine eyes, both we and our land? buy us and our land for bread, and we and our land will be servants unto Pharaoh: and give us seed, that we may live, and not die, that the land be not desolate.\nAnd Joseph bought all the land of Egypt for Pharaoh; for the Egyptians sold every man his field, because the famine prevailed over them: so the land became Pharaoh’s.\nAnd as for the people, he removed them to cities from one end of the borders of Egypt even to the other end thereof.\nOnly the land of the priests bought he not; for the priests had a portion assigned them of Pharaoh, and did eat their portion which Pharaoh gave them: wherefore they sold not their lands.\nThen Joseph said unto the people, Behold, I have bought you this day and your land for Pharaoh: lo, here is seed for you, and ye shall sow the land.\nAnd it shall come to pass in the Increase, that ye shall give the fifth part unto Pharaoh, and four parts shall be your own, for seed of the field, and for your food, and for them of your households, and for food for your little Ones.\nAnd they said, Thou hast saved our lives: let us find grace in the sight of my lord, and we will be Pharaoh’s servants.\nAnd Joseph made it a law over the land of Egypt unto this day, that Pharaoh should have the fifth part; except the land of the priests only, which became not Pharaoh’s.\nAnd Israel dwelt in the land of Egypt, in the country of Goshen; and they had possessions therein, and grew, and multiplied exceedingly.\nAnd Jacob lived in the land of Egypt seventeen years: so the whole age of Jacob was an hundred forty and seven years.\nAnd the time drew nigh that Israel must die: and he called his son Joseph, and said unto him, If now I have found grace in thy sight, put, I pray thee, thy hand under my thigh, and deal kindly and truly with me; bury me not, I pray thee, in Egypt:\nBut I will lie with my fathers, and thou shalt carry me out of Egypt, and bury me in their buryingplace. And he said, I will do as thou hast said.\nAnd he said, Swear unto me. And he sware unto him. And Israel bowed himself upon the bed’s head.\nChapter 48\nAnd it came to pass after these things, that one told Joseph, Behold, thy father is sick: and he took with him his two sons, Manasseh and Ephraim.\nAnd one told Jacob, and said, Behold, thy son Joseph cometh unto thee: and Israel strengthened himself, and sat upon the bed.\nAnd Jacob said unto Joseph, God Almighty appeared unto me at Luz in the land of Canaan, and blessed me,\nAnd said unto me, Behold, I will make thee fruitful, and multiply thee, and I will make of thee a multitude of people; and will give this land to thy seed after thee for an everlasting possession.\nAnd now thy two sons, Ephraim dd Manasseh, which were born unto thee in the land of Egypt before I came unto thee into Egypt, are mine; as Reuben and Simeon, they shall be mine.\nAnd thy issue, which thou begettest after them, shall be thine, and shall be called after the name of their brethren in their inheritance.\nAnd as for me, when I came from Padan, Rachel died by me in the land of Canaan in the way, when yet there was but a little way to come unto Ephrath: and I buried her there in the way of Ephrath; the same is Beth-lehem.\nAnd Israel beheld Joseph’s sons, and said, Who are these?\nAnd Joseph said unto his father, They are my sons, whom God hath given me in this place. And he said, Bring them, I pray thee, unto me, and I will bless them.\nNow the eyes of Israel were dim for age, so that he could not see. And he brought them near unto him; and he kissed them, and embraced them.\nAnd Israel said unto Joseph, I had not thought to see thy face: and, lo, God hath shewed me also thy seed.\nAnd Joseph brought them out from between his knees, and he bowed himself with his face to the earth.\nAnd Joseph took them both, Ephraim in his right hand toward Israel’s left hand, and Manasseh in his left hand toward Israel’s right hand, and brought them near unto him.\nAnd Israel stretched out his right hand, and laid if upon Ephraim’s head, who was the younger, and his left hand upon Manasseh’s head, guiding his hands wittingly; for Manasseh was the firstborn,\nAnd he blessed Joseph, and said, God, before whom my fathers Abraand Isaac did walk, the God which ed me all my life long unto this day,\nThe Angel which redeemed me from all evil, bless the lads; and let my name be named on them, and the name of my fathers Abraham and Isaac; and let them grow into a multitude in the midst of the earth.\nAnd when Joseph saw that his father laid his right hand upon the head of Ephraim, it displeased him: and he held up his father’s hand, to remove it from Ephraim’s head unto Manasseh’s head.\nAnd Joseph said unto his father, Not so, my father: for this is the firstborn; put thy right hand upon his head.\nAnd his father refused, and said, I know it, my son, I know it: he also shall become a people, and he also shall be great: but truly his younger brother shall be greater than he, and his seed shall become a multitude of nations.\nAnd he blessed them that day, saying, In thee shall Israel bless, saying, God make thee as Ephraim and as Manasseh: and he set Ephraim before Manasseh.\nAnd Israel said unto Joseph, Behold, I die: but God shall be with you, and bring you again unto the land of your fathers.\nMoreover I have given to thee one portion above thy brethren, which I took out of the hand of the Amorite with my sword and with my bow.\nChapter 49\nAnd Jacob called unto his sons, and said, Gather yourselves together, that I may tell you that which shall befall you in the last days.\nGather yourselves together, and hear, ye sons of Jacob; and hearken unto Israel your father.\nReuben, thou art my firstborn, my might, and the beginning of my strength, the excellency of dignity, and the excellency of power:\nUnstable as water, thou shalt not excel; because thou wentest up to thy father’s bed; then defiledst thou it: he went up to my couch.\nSimeon and Levi are brethren; instruments of cruelty are in their habitations.\nO my soul, come not thou into their secret; unto their assembly, mine honour, be not thou united: for in their anger they slew a man, and in their selfwill they digged down a wall.\nCursed be their anger, for it was fierce; and their wrath, for it was cruel: I will divide them in Jacob, and scatter them in Israel.\nJudah, thou art he whom thy brethren shall praise: thy hand shall be in the neck of thine enemies; thy father’s children shall bow down before thee.\nJudah is a lion’s whelp: from the prey, my son, thou art gone up: he stooped down, he couched as a lion, and as an old lion; who shall rouse him up?\nThe sceptre shall not depart from Judah, nor a lawgiver from between his feet, until Shiloh come; and unto him shall the gathering of the people be.\nBinding his foal unto the vine, and his ass’s colt unto the choice vine; he washed his garments in wine, and his clothes in the blood of grapes:\nHis eyes shall be red with wine, and his teeth white with milk.\nZebulun shall dwell at the haven of the Sea; and he shall be for an haven Of ships; and his border shall be unto Zidon.\nIssachar is a strong ass couching down between two burdens:\nAnd he saw that rest was good, and the land that it was pleasant; and bowed his shoulder to bear, and became a servant unto tribute.\nDan shall judge his people, as one of the tribes of Israel.\nDan shall be a serpent by the way, an adder in the path, that biteth the horse heels, so that his rider shall fall backward.\nI have waited for thy salvation, O LORD.\nGad, a troop shall overcome him: but he shall overcome at the last.\nOut of Asher his bread shall be fat, and he shall yield royal dainties.\nNaphtali is a hind let loose: he giveth goodly words.\nJoseph is a fruitful bough, even a fruitful bough by a well; whose branches run over the wall:\nThe archers have sorely grieved him, and shot at him, and hated him:\nBut his bow abode in strength, and the arms of his hands were made strong by the hands of the mighty God of Jacob; (from thence is the shepherd, the stone of Israel:)\nEven by the God of thy father, who shall help thee; and by the Almighty, who shall bless thee with blessings of heaven above, blessings of the deep that lieth under, blessings of the breasts, and of the womb:\nThe blessings of thy father have prevailed above the blessings of my progenitors unto the utmost bound of the everlasting hills: they shall be on the head of Joseph, and on the crown of the head of him that was separate from his brethren. ; ;\nBenjamin shall ravin as a wolf: in the morning he shall devour the prey, and at night he shall divide the spoil.\nAll these are the twelve tribes of Israel: and this is it that their father spake unto them, and blessed them; every one according to his blessing he blessed them.\nAnd he charged them, and said unto them, I am to be gathered unto my people: bury me with my fathers in the cave that is in the field of Ephron the Hittite,\nIn the cave that is in the field of Machpelah, which is before Mamre, in the land of Canaan, which Abraham bought with the field of Ephron the Hittite for a possession of a buryinglace.\nThere they buried Abraham and Sarah his wife; there they buried Isaac and Rebekah his wife; and there I buried Leah.\nThe purchase of the field and of the cave that is therein was from the children of Heth.\nAnd when Jacob had made an end of commanding his sons, he gathered up his feet into the bed, and yielded up the ghost, and was gathered unto his people.\nChapter 50\nAnd Joseph fell upon his father’s pce. and wept upon him, and kissed im.\nAnd Joseph commanded his servants the physicians to embalm his father: and the physicians embalmed Israel.\nAnd forty days were fulfilled for him; for so are fulfilled the days of those which are embalmed: and the Egyptians mourned for him threescore and ten days.\nAnd when the days of his mourning were past, Joseph spake unto the house of Pharaoh, saying, If now I have found grace in your eyes, speak, I pray you, in the ears of Pharaoh, saying,\nMy father made me swear, saying, Lo, I die: in my grave which I have digged for me in the land of Canaan, there shalt thou bury me. Now therefore let me go up, I pray thee, and bury my father, and I will come again.\nAnd Pharaoh said, Go up, and bury thy father, according as he made thee swear.\nAnd Joseph went up to bury his father: and with him went up all the servants of Pharaoh, the elders of his house, and all the elders of the land of Egypt,\nAnd all the house of Joseph, and his brethren, and his father’s house: only their little ones, and their flocks, and their herds, they left in the land of Goshen.\nAnd there went up with him both chariots and horsemen: and it was a very great company.\nAnd they came to the threshingfloor of Atad, which is beyond Jordan, and there they mourned with a great and very sore lamentation: and he made a mourning for his father seven days.\nAnd when the inhabitants of the land, the Canaanites, saw the mourning in the floor of Atad, they said, This is a grievous mourning to the Egyptians: wherefore the name of it was called Abel-mizraim, which is beyond Jordan.\nAnd his sons did unto him according as he commanded them:\nFor his sons carried him into the land of Canaan, and buried him in the cave of the field of Machpelah, which Abraham bought with the field for a possession of a buryingplace of Ephthe Hittite, before Mamre.\nAnd Joseph returned into Egypt, he and his brethren, and all that went up with him to bury his father, after he had buried his father.\nAnd when Joseph’s brethren saw that their father was dead, they said, Joseph will peradventure hate us, and will certainly requite us all the evil which we did unto him.\nAnd they sent a messenger unto Joseph, saying, Thy father did command before he died, saying,\nSo shall ye say unto Joseph, Forgive, ] pray thee now, the trespass of thy brethren, and their sin; for they did unto thee evil: and now, we pray thee, forgive the trespass of the servants of the God of thy father. And Joseph wept when they spake unto him.\nAnd his brethren also went and fell down before his face; and they said, Behold, we be thy servants.\nAnd Joseph said unto them, Fear not: for am I in the place of God?\nBut as for you, ye thought evil against me; but God meant it unto good, to bring to pass, as it is this day, to save much people alive.\nNow therefore fear ye not: I will nourish you, and your little ones. And he comforted them, and spake kindly unto them.\nAnd Joseph dwelt in Egypt, he, and his father’s house: and Joseph lived an hundred and ten years.\nAnd Joseph saw Ephraim’s children of the third generation: the children also of Machir the son of Manasseh were brought up upon Joseph’s knees.\nAnd Joseph said unto his brethren, Idie: and God will surely visit you, and ring you out of this land unto the land Which he sware to Abraham, to Isaac, and to Jacob.\nAnd Joseph took an oath of the children of Israel, saying, God will surely visit you, and ye shall carry up my bones from hence.\nNow these are the names of the children of Israel, which came into Egypt; every man and his household came with Jacob.\nReuben, Simeon, Levi, and Judah,\nIssachar, Zebulun, and Benjamin,\nDan, and Naphtali, Gad, and Asher.\nAnd all the souls that came out of the loins of Jacob were seventy souls: for Joseph was in Egypt already.\nAnd Joseph died, and all his brethren, and all that generation.\nAnd the children of Israel were fruitful, and increased abundantly, and multiplied, and waxed exceeding mighty; and the land was filled with them.\nNow there arose up a new king over Egypt, which knew not Joseph.\nAnd he said unto his people, Behold, the people of the children of Israel are more and mightier than we:\nCome on, let us deal wisely with them; lest they multiply, and it come to pass, that, when there falleth out any war, they join also unto our enemies, and fight against us, and so get them up out of the land.\nTherefore they did set over them taskmasters to afflict them with their burdens. And they built for Pharaoh treasure cities, Pithom and Raamses.\nBut the more they afflicted them, the more they multiplied and grew. And they were grieved because of the children of Israel.\nAnd the Egyptians made the children of Israel to serve with rigour:\nAnd they made their lives bitter with hard bondage, in morter, and in brick, and in all manner of service in the field: all their service, wherein they made them serve, was with rigour.\nAnd the king of Egypt spake to the Hebrew midwives, of which the name of the one was Shiphrah, and the name of the other Puah:\nAnd he said, When ye do the office of a midwife to the Hebrew women, and see them upon the stools; if it be a son, then ye shall kill him: but if it be a daughter, then she shall live.\nBut the midwives feared God, and did not as the king of Egypt commanded them, but saved the men children alive.\nAnd the king of Egypt called for the midwives, and said unto them, Why have ye done this thing, and have saved the men children alive?\nAnd the midwives said unto Pharaoh, Because the Hebrew women are not as the Egyptian women; for they are lively, and are delivered ere the midwives come in unto them.\nTherefore God dealt well with the midwives: and the people multiplied, and waxed very mighty.\nAnd it came to pass, because the midwives feared God, that he made them houses.\nAnd Pharaoh charged all his people, saying, Every son that is born ye shall cast into the river, and every daughter ye shall save alive.\nAnd there went a man* [Amram] of the house of Levi, and took to wife* [Jachobed] a daughter of Levi.\nAnd the woman conceived, and bare a son: and when she saw him that he was a goodly child, she hid him three months.\nAnd when she could not longer hide him, she took for him an ark of bulrushes, and daubed it with slime and with pitch, and put the child therein; and she laid it in the flags by the river's brink.\nAnd his sister stood afar off, to wit what would be done to him.\nAnd the daughter of Pharaoh came down to wash herself at the river; and her maidens walked along by the river's side; and when she saw the ark among the flags, she sent her maid to fetch it.\nAnd when she had opened it, she saw the child: and, behold, the babe wept. And she had compassion on him, and said, This is one of the Hebrews' children.\nThen said his sister to Pharaoh's daughter, Shall I go and call to thee a nurse of the Hebrew women, that she may nurse the child for thee?\nAnd Pharaoh's daughter said to her, Go. And the maid went and called the child's mother.\nAnd Pharaoh's daughter said unto her, Take this child away, and nurse it for me, and I will give thee thy wages. And the women took the child, and nursed it.\nAnd the child grew, and she brought him unto Pharaoh's daughter, and he became her son. And she called his name Moses: and she said, Because I drew him out of the water.\nAnd it came to pass in those days, when Moses was grown, that he went out unto his brethren, and looked on their burdens: and he spied an Egyptian smiting an Hebrew, one of his brethren.\nAnd he looked this way and that way, and when he saw that there was no man, he slew the Egyptian, and hid him in the sand.\nAnd when he went out the second day, behold, two men of the Hebrews strove together: and he said to him that did the wrong, Wherefore smitest thou thy fellow?\nAnd he said, Who made thee a prince and a judge over us? intendest thou to kill me, as thou killedst the Egyptian? And Moses feared, and said, Surely this thing is known.\nNow when Pharaoh heard this thing, he sought to slay Moses. But Moses fled from the face of Pharaoh, and dwelt in the land of Midian: and he sat down by a well.\nNow the priest of Midian had seven daughters: and they came and drew water, and filled the troughs to water their father's flock.\nAnd the shepherds came and drove them away: but Moses stood up and helped them, and watered their flock.\nAnd when they came to Reuel their father, he said, How is it that ye are come so soon to day?\nAnd they said, An Egyptian delivered us out of the hand of the shepherds, and also drew water enough for us, and watered the flock.\nAnd he said unto his daughters, And where is he? why is it that ye have left the man? call him, that he may eat bread.\nAnd Moses was content to dwell with the man: and he gave Moses Zipporah his daughter.\nAnd she bare him a son, and he called his name Gershom: for he said, I have been a stranger in a strange land.\nAnd it came to pass in process of time, that the king of Egypt died: and the children of Israel sighed by reason of the bondage, and they cried, and their cry came up unto God by reason of the bondage.\nAnd God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob.\nAnd God looked upon the children of Israel, and God had respect unto them.\nNow Moses kept the flock of Jethro his father in law, the priest of Midian: and he led the flock to the backside of the desert, and came to the mountain of God, even to Horeb\nAnd the angel of the Lord appeared unto him in a flame of fire out of the midst of a bush: and he looked, and, behold, the bush burned with fire, and the bush was not consumed.\nAnd Moses said, I will now turn aside, and see this great sight, why the bush is not burnt.\nAnd when the Lord saw that he turned aside to see, God called unto him out of the midst of the bush, and said, Moses, Moses. And he said, \"Here am I.\"\nAnd he said, Draw not nigh hither: put off thy shoes from off thy feet, for the place whereon thou standest is holy ground.\nMoreover he said, I am the God of thy father, the God of Abraham, the God of Isaac, and the God of Jacob. And Moses hid his face; for he was afraid to look upon God.\nAnd the Lord said, I have surely seen the affliction of my people which are in Egypt, and have heard their cry by reason of their taskmasters; for I know their sorrows;\nAnd I am come down to deliver them out of the hand of the Egyptians, and to bring them up out of that land unto a good land and a large, unto a land flowing with milk and honey; unto the place of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites.\nNow therefore, behold, the cry of the children of Israel is come unto me: and I have also seen the oppression wherewith the Egyptians oppress them.\nCome now therefore, and I will send thee unto Pharaoh, that thou mayest bring forth my people the children of Israel out of Egypt.\nAnd Moses said unto God, Who am I, that I should go unto Pharaoh, and that I should bring forth the children of Israel out of Egypt?\nAnd he said, Certainly I will be with thee; and this shall be a token unto thee, that I have sent thee: When thou hast brought forth the people out of Egypt, ye shall serve God upon this mountain.\nAnd Moses said unto God, Behold, when I come unto the children of Israel, and shall say unto them, The God of your fathers hath sent me unto you; and they shall say to me, What is his name? what shall I say unto them?\nAnd God said unto Moses, I Am That I Am: and he said, Thus shalt thou say unto the children of Israel, I Am hath sent me unto you.\nAnd God said moreover unto Moses, Thus shalt thou say unto the children of Israel, the Lord God of your fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath sent me unto you: this is my name for ever, and this is my memorial unto all generations.\nGo, and gather the elders of Israel together, and say unto them, The Lord God of your fathers, the God of Abraham, of Isaac, and of Jacob, appeared unto me, saying, I have surely visited you, and seen that which is done to you in Egypt:\nAnd I have said, I will bring you up out of the affliction of Egypt unto the land of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites, unto a land flowing with milk and honey.\nAnd they shall hearken to thy voice: and thou shalt come, thou and the elders of Israel, unto the king of Egypt, and ye shall say unto him, The Lord God of the Hebrews hath met with us: and now let us go, we beseech thee, three days' journey into the wilderness, that we may sacrifice to the Lord our God.\nAnd I am sure that the king of Egypt will not let you go, no, not by a mighty hand.\nAnd I will stretch out my hand, and smite Egypt with all my wonders which I will do in the midst thereof: and after that he will let you go.\nAnd I will give this people favour in the sight of the Egyptians: and it shall come to pass, that, when ye go, ye shall not go empty.\nBut every woman shall borrow of her neighbour, and of her that sojourneth in her house, jewels of silver, and jewels of gold, and raiment: and ye shall put them upon your sons, and upon your daughters; and ye shall spoil the Egyptians.\nAnd Moses answered and said, But, behold, they will not believe me, nor hearken unto my voice: for they will say, The Lord hath not appeared unto thee.\nAnd the Lord said unto him, What is that in thine hand? And he said, A rod.\nAnd he said, Cast it on the ground. And he cast it on the ground, and it became a serpent; and Moses fled from before it.\nAnd the Lord said unto Moses, Put forth thine hand, and take it by the tail. And he put forth his hand, and caught it, and it became a rod in his hand:\nThat they may believe that the Lord God of their fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath appeared unto thee.\nAnd the Lord said furthermore unto him, Put now thine hand into thy bosom. And he put his hand into his bosom: and when he took it out, behold, his hand was leprous as snow.\nAnd he said, Put thine hand into thy bosom again. And he put his hand into his bosom again; and plucked it out of his bosom, and, behold, it was turned again as his other flesh.\nAnd it shall come to pass, if they will not believe thee, neither hearken to the voice of the first sign, that they will believe the voice of the latter sign.\nAnd it shall come to pass, if they will not believe also these two signs, neither hearken unto thy voice, that thou shalt take of the water of the river, and pour it upon the dry land: and the water which thou takest out of the river shall become blood upon the dry land.\nAnd Moses said unto the Lord, O my Lord, I am not eloquent, neither heretofore, nor since thou hast spoken unto thy servant: but I am slow of speech, and of a slow tongue.\nAnd the Lord said unto him, Who hath made man's mouth? or who maketh the dumb, or deaf, or the seeing, or the blind? have not I the Lord?\nNow therefore go, and I will be with thy mouth, and teach thee what thou shalt say.\nAnd he said, O my Lord, send, I pray thee, by the hand of him whom thou wilt send.\nAnd the anger of the Lord was kindled against Moses, and he said, Is not Aaron the Levite thy brother? I know that he can speak well. And also, behold, he cometh forth to meet thee: and when he seeth thee, he will be glad in his heart.\nAnd thou shalt speak unto him, and put words in his mouth: and I will be with thy mouth, and with his mouth, and will teach you what ye shall do.\nAnd he shall be thy spokesman unto the people: and he shall be, even he shall be to thee instead of a mouth, and thou shalt be to him instead of God.\nAnd thou shalt take this rod in thine hand, wherewith thou shalt do signs.\nAnd Moses went and returned to Jethro his father in law, and said unto him, Let me go, I pray thee, and return unto my brethren which are in Egypt, and see whether they be yet alive. And Jethro said to Moses, Go in peace.\nAnd the Lord said unto Moses in Midian, Go, return into Egypt: for all the men are dead which sought thy life.\nAnd Moses took his wife and his sons, and set them upon an ass, and he returned to the land of Egypt: and Moses took the rod of God in his hand.\nAnd the Lord said unto Moses, When thou goest to return into Egypt, see that thou do all those wonders before Pharaoh, which I have put in thine hand: but I will harden* his heart, that he shall not let the people go.\nAnd thou shalt say unto Pharaoh, Thus saith the Lord, Israel is my son, even my firstborn:\nAnd I say unto thee, Let my son go, that he may serve me: and if thou refuse to let him go, behold, I will slay thy son, even thy firstborn.\nAnd it came to pass by the way in the inn, that the Lord met him, and sought to kill him.\nThen Zipporah took a sharp stone, and cut off the foreskin of her son, and cast it at his feet, and said, Surely a bloody husband art thou to me.\nSo he let him go: then she said, A bloody husband thou art, because of the circumcision.\nAnd the Lord said to Aaron, Go into the wilderness to meet Moses. And he went, and met him in the mount of God, and kissed him.\nAnd Moses told Aaron all the words of the Lord who had sent him, and all the signs which he had commanded him.\nAnd Moses and Aaron went and gathered together all the elders of the children of Israel:\nAnd Aaron spake all the words which the Lord had spoken unto Moses, and did the signs in the sight of the people.\nAnd the people believed: and when they heard that the Lord had visited the children of Israel, and that he had looked upon their affliction, then they bowed their heads and worshipped.\nAnd afterward Moses and Aaron went in, and told Pharaoh, Thus saith the Lord God of Israel, Let my people go, that they may hold a feast unto me in the wilderness.\nAnd Pharaoh said, Who is the Lord, that I should obey his voice to let Israel go? I know not the Lord, neither will I let Israel go.\nAnd they said, The God of the Hebrews hath met with us: let us go, we pray thee, three days' journey into the desert, and sacrifice unto the Lord our God; lest he fall upon us with pestilence, or with the sword.\nAnd the king of Egypt said unto them, Wherefore do ye, Moses and Aaron, let the people from their works? get you unto your burdens.\nAnd Pharaoh said, Behold, the people of the land now are many, and ye make them rest from their burdens.\nAnd Pharaoh commanded the same day the taskmasters of the people, and their officers, saying,\nYe shall no more give the people straw to make brick, as heretofore: let them go and gather straw for themselves.\nAnd the tale of the bricks, which they did make heretofore, ye shall lay upon them; ye shall not diminish ought thereof: for they be idle; therefore they cry, saying, Let us go and sacrifice to our God.\nLet there more work be laid upon the men, that they may labour therein; and let them not regard vain words.\nAnd the taskmasters of the people went out, and their officers, and they spake to the people, saying, Thus saith Pharaoh, I will not give you straw.\nGo ye, get you straw where ye can find it: yet not ought of your work shall be diminished.\nSo the people were scattered abroad throughout all the land of Egypt to gather stubble instead of straw.\nAnd the taskmasters hasted them, saying, Fulfill your works, your daily tasks, as when there was straw.\nAnd the officers of the children of Israel, which Pharaoh's taskmasters had set over them, were beaten, and demanded, Wherefore have ye not fulfilled your task in making brick both yesterday and to day, as heretofore?\nThen the officers of the children of Israel came and cried unto Pharaoh, saying, Wherefore dealest thou thus with thy servants?\nThere is no straw given unto thy servants, and they say to us, Make brick: and, behold, thy servants are beaten; but the fault is in thine own people.\nBut he said, Ye are idle, ye are idle: therefore ye say, Let us go and do sacrifice to the Lord.\nGo therefore now, and work; for there shall no straw be given you, yet shall ye deliver the tale of bricks.\nAnd the officers of the children of Israel did see that they were in evil case, after it was said, Ye shall not minish ought from your bricks of your daily task.\nAnd they met Moses and Aaron, who stood in the way, as they came forth from Pharaoh:\nAnd they said unto them, The Lord look upon you, and judge; because ye have made our savour to be abhorred in the eyes of Pharaoh, and in the eyes of his servants, to put a sword in their hand to slay us.\nAnd Moses returned unto the Lord, and said, Lord, wherefore hast thou so evil entreated this people? why is it that thou hast sent me?\nFor since I came to Pharaoh to speak in thy name, he hath done evil to this people; neither hast thou delivered thy people at all.\nThen the Lord said unto Moses, Now shalt thou see what I will do to Pharaoh: for with a strong hand shall he let them go, and with a strong hand shall he drive them out of his land.\nAnd God spake unto Moses, and said unto him, I am the Lord:\nAnd I appeared unto Abraham, unto Isaac, and unto Jacob, by the name of God Almighty, but by my name Jehovah was I not known to them.\nAnd I appeared unto Abraham, unto Isaac, and unto Jacob, by the name of God Almighty, but by my name JEHOVAH was I not known to them.\nAnd I have also established my covenant with them, to give them the land of Canaan, the land of their pilgrimage, wherein they were strangers.\nAnd I have also heard the groaning of the children of Israel, whom the Egyptians keep in bondage; and I have remembered my covenant.\nWherefore say unto the children of Israel, I am the Lord, and I will bring you out from under the burdens of the Egyptians, and I will rid you out of their bondage, and I will redeem you with a stretched out arm, and with great judgments:\nAnd I will take you to me for a people, and I will be to you a God: and ye shall know that I am the Lord your God, which bringeth you out from under the burdens of the Egyptians.\nAnd I will bring you in unto the land, concerning the which I did swear to give it to Abraham, to Isaac, and to Jacob; and I will give it you for an heritage: I am the Lord.\nAnd Moses spake so unto the children of Israel: but they hearkened not unto Moses for anguish of spirit, and for cruel bondage.\nAnd the Lord spake unto Moses, saying,\nGo in, speak unto Pharaoh king of Egypt, that he let the children of Israel go out of his land.\nAnd Moses spake before the Lord, saying, Behold, the children of Israel have not hearkened unto me; how then shall Pharaoh hear me, who am of uncircumcised lips?\nAnd the Lord spake unto Moses and unto Aaron, and gave them a charge unto the children of Israel, and unto Pharaoh king of Egypt, to bring the children of Israel out of the land of Egypt.\nThese be the heads of their fathers' houses: The sons of Reuben the firstborn of Israel; Hanoch, and Pallu, Hezron, and Carmi: these be the families of Reuben.\nAnd the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman: these are the families of Simeon.\nAnd these are the names of the sons of Levi according to their generations; Gershon, and Kohath, and Merari: and the years of the life of Levi were an hundred thirty and seven years.\nThe sons of Gershon; Libni, and Shimi, according to their families.\nAnd the sons of Kohath; Amram, and Izhar, and Hebron, and Uzziel: and the years of the life of Kohath were an hundred thirty and three years.\nAnd the sons of Merari; Mahali and Mushi: these are the families of Levi according to their generations.\nAnd Amram took him Jochebed his father's sister to wife; and she bare him Aaron and Moses: and the years of the life of Amram were an hundred and thirty and seven years.\nAnd the sons of Izhar; Korah, and Nepheg, and Zichri.\nAnd the sons of Uzziel; Mishael, and Elzaphan, and Zithri.\nAnd Aaron took him Elisheba, daughter of Amminadab, sister of Naashon, to wife; and she bare him Nadab, and Abihu, Eleazar, and Ithamar.\nAnd the sons of Korah; Assir, and Elkanah, and Abiasaph: these are the families of the Korhites.\nAnd Eleazar Aaron's son took him one of the daughters of Putiel to wife; and she bare him Phinehas: these are the heads of the fathers of the Levites according to their families.\nThese are that Aaron and Moses, to whom the Lord said, Bring out the children of Israel from the land of Egypt according to their armies.\nThese are they which spake to Pharaoh king of Egypt, to bring out the children of Israel from Egypt: these are that Moses and Aaron.\nAnd it came to pass on the day when the Lord spake unto Moses in the land of Egypt,\nThat the Lord spake unto Moses, saying, I am the Lord: speak thou unto Pharaoh king of Egypt all that I say unto thee.\nAnd Moses said before the Lord, Behold, I am of uncircumcised lips, and how shall Pharaoh hearken unto me?\nAnd the Lord said unto Moses, See, I have made thee a god to Pharaoh: and Aaron thy brother shall be thy prophet.\nThou shalt speak all that I command thee: and Aaron thy brother shall speak unto Pharaoh, that he send the children of Israel out of his land.\nAnd I will harden Pharaoh's heart, and multiply my signs and my wonders in the land of Egypt.\nBut Pharaoh shall not hearken unto you, that I may lay my hand upon Egypt, and bring forth mine armies, and my people the children of Israel, out of the land of Egypt by great judgments.\nAnd the Egyptians shall know that I am the Lord, when I stretch forth mine hand upon Egypt, and bring out the children of Israel from among them.\nAnd Moses and Aaron did as the Lord commanded them, so did they.\nAnd Moses was fourscore years old, and Aaron fourscore and three years old, when they spake unto Pharaoh.\nAnd the Lord spake unto Moses and unto Aaron, saying,\nWhen Pharaoh shall speak unto you, saying, Shew a miracle for you: then thou shalt say unto Aaron, Take thy rod, and cast it before Pharaoh, and it shall become a serpent.\nAnd Moses and Aaron went in unto Pharaoh, and they did so as the Lord had commanded: and Aaron cast down his rod before Pharaoh, and before his servants, and it became a serpent.\nThen Pharaoh also called the wise men and the sorcerers: now the magicians of Egypt, they also did in like manner with their enchantments.\nFor they cast down every man his rod, and they became serpents: but Aaron's rod swallowed up their rods.\nAnd he hardened Pharaoh's heart, that he hearkened not unto them; as the Lord had said.\nAnd the Lord said unto Moses, Pharaoh's heart is hardened, he refuseth to let the people go.\nGet thee unto Pharaoh in the morning; lo, he goeth out unto the water; and thou shalt stand by the river's brink against he come; and the rod which was turned to a serpent shalt thou take in thine hand.\nAnd thou shalt say unto him, The Lord God of the Hebrews hath sent me unto thee, saying, Let my people go, that they may serve me in the wilderness: and, behold, hitherto thou wouldest not hear.\nThus saith the Lord, In this thou shalt know that I am the Lord: behold, I will smite with the rod that is in mine hand upon the waters which are in the river, and they shall be turned to blood.\nAnd the fish that is in the river shall die, and the river shall stink; and the Egyptians shall loathe to drink of the water of the river.\nAnd the Lord spake unto Moses, Say unto Aaron, Take thy rod, and stretch out thine hand upon the waters of Egypt, upon their streams, upon their rivers, and upon their ponds, and upon all their pools of water, that they may become blood; and that there may be blood throughout all the land of Egypt, both in vessels of wood, and in vessels of stone.\nAnd Moses and Aaron did so, as the Lord commanded; and he lifted up the rod, and smote the waters that were in the river, in the sight of Pharaoh, and in the sight of his servants; and all the waters that were in the river were turned to blood.\nAnd the fish that was in the river died; and the river stank, and the Egyptians could not drink of the water of the river; and there was blood throughout all the land of Egypt.\nAnd the magicians of Egypt did so with their enchantments: and Pharaoh's heart was hardened, neither did he hearken unto them; as the Lord had said.\nAnd Pharaoh turned and went into his house, neither did he set his heart to this also.\nAnd all the Egyptians digged round about the river for water to drink; for they could not drink of the water of the river.\nAnd seven days were fulfilled, after that the Lord had smitten the river.\nAnd the Lord spake unto Moses, Go unto Pharaoh, and say unto him, Thus saith the Lord, Let my people go, that they may serve me.\nAnd if thou refuse to let them go, behold, I will smite all thy borders with frogs:\nAnd the river shall bring forth frogs abundantly, which shall go up and come into thine house, and into thy bedchamber, and upon thy bed, and into the house of thy servants, and upon thy people, and into thine ovens, and into thy kneadingtroughs:\nAnd the frogs shall come up both on thee, and upon thy people, and upon all thy servants.\nAnd the Lord spake unto Moses, Say unto Aaron, Stretch forth thine hand with thy rod over the streams, over the rivers, and over the ponds, and cause frogs to come up upon the land of Egypt.\nAnd Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt.\nAnd the magicians did so with their enchantments, and brought up frogs upon the land of Egypt.\nThen Pharaoh called for Moses and Aaron, and said, Intreat the Lord, that he may take away the frogs from me, and from my people; and I will let the people go, that they may do sacrifice unto the Lord.\nAnd Moses said unto Pharaoh, Glory over me: when shall I intreat for thee, and for thy servants, and for thy people, to destroy the frogs from thee and thy houses, that they may remain in the river only?\nAnd he said, To morrow. And he said, Be it according to thy word: that thou mayest know that there is none like unto the Lord our God.\nAnd the frogs shall depart from thee, and from thy houses, and from thy servants, and from thy people; they shall remain in the river only.\nAnd Moses and Aaron went out from Pharaoh: and Moses cried unto the Lord because of the frogs which he had brought against Pharaoh.\nAnd the Lord did according to the word of Moses; and the frogs died out of the houses, out of the villages, and out of the fields.\nAnd they gathered them together upon heaps: and the land stank.\nBut when Pharaoh saw that there was respite, he hardened his heart, and hearkened not unto them; as the Lord had said.\nAnd the Lord said unto Moses, Say unto Aaron, Stretch out thy rod, and smite the dust of the land, that it may become lice throughout all the land of Egypt.\nAnd they did so; for Aaron stretched out his hand with his rod, and smote the dust of the earth, and it became lice in man, and in beast; all the dust of the land became lice throughout all the land of Egypt.\nAnd the magicians did so with their enchantments to bring forth lice, but they could not: so there were lice upon man, and upon beast.\nThen the magicians said unto Pharaoh, This is the finger of God: and Pharaoh's heart was hardened, and he hearkened not unto them; as the Lord had said.\nAnd the Lord said unto Moses, Rise up early in the morning, and stand before Pharaoh; lo, he cometh forth to the water; and say unto him, Thus saith the Lord, Let my people go, that they may serve me.\nElse, if thou wilt not let my people go, behold, I will send swarms of flies upon thee, and upon thy servants, and upon thy people, and into thy houses: and the houses of the Egyptians shall be full of swarms of flies, and also the ground whereon they are.\nAnd I will sever in that day the land of Goshen, in which my people dwell, that no swarms of flies shall be there; to the end thou mayest know that I am the Lord in the midst of the earth.\nAnd I will put a division between my people and thy people: to morrow shall this sign be.\nAnd the Lord did so; and there came a grievous swarm of flies into the house of Pharaoh, and into his servants' houses, and into all the land of Egypt: the land was corrupted by reason of the swarm of flies.\nAnd Pharaoh called for Moses and for Aaron, and said, Go ye, sacrifice to your God in the land.\nAnd Moses said, It is not meet so to do; for we shall sacrifice the abomination of the Egyptians to the Lord our God: lo, shall we sacrifice the abomination of the Egyptians before their eyes, and will they not stone us?\nWe will go three days' journey into the wilderness, and sacrifice to the Lord our God, as he shall command us.\nAnd Pharaoh said, I will let you go, that ye may sacrifice to the Lord your God in the wilderness; only ye shall not go very far away: entreat for me.\nAnd Moses said, Behold, I go out from thee, and I will intreat the Lord that the swarms of flies may depart from Pharaoh, from his servants, and from his people, to morrow: but let not Pharaoh deal deceitfully any more in not letting the people go to sacrifice to the Lord.\nAnd Moses went out from Pharaoh, and entreated the Lord.\nAnd the Lord did according to the word of Moses; and he removed the swarms of flies from Pharaoh, from his servants, and from his people; there remained not one.\nAnd Pharaoh hardened his heart at this time also, neither would he let the people go.\nThen the Lord said unto Moses, Go in unto Pharaoh, and tell him, Thus saith the Lord God of the Hebrews, Let my people go, that they may serve me.\nFor if thou refuse to let them go, and wilt hold them still,\nBehold, the hand of the Lord is upon thy cattle which is in the field, upon the horses, upon the asses, upon the camels, upon the oxen, and upon the sheep: there shall be a very grievous murrain.\nAnd the Lord shall sever between the cattle of Israel and the cattle of Egypt: and there shall nothing die of all that is the children's of Israel.\nAnd the Lord appointed a set time, saying, To morrow the Lord shall do this thing in the land.\nAnd the Lord did that thing on the morrow, and all the cattle of Egypt died: but of the cattle of the children of Israel died not one.\nAnd Pharaoh sent, and, behold, there was not one of the cattle of the Israelites dead. And the heart of Pharaoh was hardened, and he did not let the people go.\nAnd the Lord said unto Moses and unto Aaron, Take to you handfuls of ashes of the furnace, and let Moses sprinkle it toward the heaven in the sight of Pharaoh.\nAnd it shall become small dust in all the land of Egypt, and shall be a boil breaking forth with blains upon man, and upon beast, throughout all the land of Egypt.\nAnd they took ashes of the furnace, and stood before Pharaoh; and Moses sprinkled it up toward heaven; and it became a boil breaking forth with blains upon man, and upon beast.\nAnd the magicians could not stand before Moses because of the boils; for the boil was upon the magicians, and upon all the Egyptians.\nAnd the Lord hardened the heart of Pharaoh, and he hearkened not unto them; as the Lord had spoken unto Moses.\nAnd the Lord said unto Moses, Rise up early in the morning, and stand before Pharaoh, and say unto him, Thus saith the Lord God of the Hebrews, Let my people go, that they may serve me.\nFor I will at this time send all my plagues upon thine heart, and upon thy servants, and upon thy people; that thou mayest know that there is none like me in all the earth.\nFor now I will stretch out my hand, that I may smite thee and thy people with pestilence; and thou shalt be cut off from the earth.\nAnd in very deed for this cause have I raised thee up, for to shew in thee my power; and that my name may be declared throughout all the earth.\nAs yet exaltest thou thyself against my people, that thou wilt not let them go?\nBehold, to morrow about this time I will cause it to rain a very grievous hail, such as hath not been in Egypt since the foundation thereof even until now.\nSend therefore now, and gather thy cattle, and all that thou hast in the field; for upon every man and beast which shall be found in the field, and shall not be brought home, the hail shall come down upon them, and they shall die.\nHe that feared the word of the Lord among the servants of Pharaoh made his servants and his cattle flee into the houses:\nAnd he that regarded not the word of the Lord left his servants and his cattle in the field.\nAnd the Lord said unto Moses, Stretch forth thine hand toward heaven, that there may be hail in all the land of Egypt, upon man, and upon beast, and upon every herb of the field, throughout the land of Egypt.\nAnd Moses stretched forth his rod toward heaven: and the Lord sent thunder and hail, and the fire ran along upon the ground; and the Lord rained hail upon the land of Egypt.\nSo there was hail, and fire mingled with the hail, very grievous, such as there was none like it in all the land of Egypt since it became a nation.\nAnd the hail smote throughout all the land of Egypt all that was in the field, both man and beast; and the hail smote every herb of the field, and brake every tree of the field.\nOnly in the land of Goshen, where the children of Israel were, was there no hail.\nAnd Pharaoh sent, and called for Moses and Aaron, and said unto them, I have sinned this time: the Lord is righteous, and I and my people are wicked.\nIntreat the Lord (for it is enough) that there be no more mighty thunderings and hail; and I will let you go, and ye shall stay no longer.\nAnd Moses said unto him, As soon as I am gone out of the city, I will spread abroad my hands unto the Lord; and the thunder shall cease, neither shall there be any more hail; that thou mayest know how that the earth is the Lord's.\nBut as for thee and thy servants, I know that ye will not yet fear the Lord God.\nAnd the flax and the barley was smitten: for the barley was in the ear, and the flax was bolled.\nBut the wheat and the rie were not smitten: for they were not grown up.\nAnd Moses went out of the city from Pharaoh, and spread abroad his hands unto the Lord: and the thunders and hail ceased, and the rain was not poured upon the earth.\nAnd when Pharaoh saw that the rain and the hail and the thunders were ceased, he sinned yet more, and hardened his heart, he and his servants.\nAnd the Lord said unto Moses, Go in unto Pharaoh: for I have hardened his heart, and the heart of his servants, that I might shew these my signs before him:\nAnd that thou mayest tell in the ears of thy son, and of thy son's son, what things I have wrought in Egypt, and my signs which I have done among them; that ye may know how that I am the Lord.\nAnd Moses and Aaron came in unto Pharaoh, and said unto him, Thus saith the Lord God of the Hebrews, How long wilt thou refuse to humble thyself before me? let my people go, that they may serve me.\nElse, if thou refuse to let my people go, behold, to morrow will I bring the locusts into thy coast:\nAnd they shall cover the face of the earth, that one cannot be able to see the earth: and they shall eat the residue of that which is escaped, which remaineth unto you from the hail, and shall eat every tree which groweth for you out of the field:\nAnd they shall fill thy houses, and the houses of all thy servants, and the houses of all the Egyptians; which neither thy fathers, nor thy fathers' fathers have seen, since the day that they were upon the earth unto this day. And he turned himself, and went out from Pharaoh.\nAnd Pharaoh's servants said unto him, How long shall this man be a snare unto us? let the men go, that they may serve the Lord their God: knowest thou not yet that Egypt is destroyed?\nAnd Moses and Aaron were brought again unto Pharaoh: and he said unto them, Go, serve the Lord your God: but who are they that shall go?\nAnd Moses said, We will go with our young and with our old, with our sons and with our daughters, with our flocks and with our herds will we go; for we must hold a feast unto the Lord.\nAnd he said unto them, Let the Lord be so with you, as I will let you go, and your little ones: look to it; for evil is before you.\nNot so: go now ye that are men, and serve the Lord; for that ye did desire. And they were driven out from Pharaoh's presence.\nAnd the Lord said unto Moses, Stretch out thine hand over the land of Egypt for the locusts, that they may come up upon the land of Egypt, and eat every herb of the land, even all that the hail hath left.\nAnd Moses stretched forth his rod over the land of Egypt, and the Lord brought an east wind upon the land all that day, and all that night; and when it was morning, the east wind brought the locusts.\nAnd the locust went up over all the land of Egypt, and rested in all the coasts of Egypt: very grievous were they; before them there were no such locusts as they, neither after them shall be such.\nFor they covered the face of the whole earth, so that the land was darkened; and they did eat every herb of the land, and all the fruit of the trees which the hail had left: and there remained not any green thing in the trees, or in the herbs of the field, through all the land of Egypt.\nThen Pharaoh called for Moses and Aaron in haste; and he said, I have sinned against the Lord your God, and against you.\nNow therefore forgive, I pray thee, my sin only this once, and intreat the Lord your God, that he may take away from me this death only.\nAnd he went out from Pharaoh, and intreated the Lord.\nAnd the Lord turned a mighty strong west wind, which took away the locusts, and cast them into the Red sea; there remained not one locust in all the coasts of Egypt.\nBut the Lord hardened Pharaoh's heart, so that he would not let the children of Israel go.\nAnd the Lord said unto Moses, Stretch out thine hand toward heaven, that there may be darkness over the land of Egypt, even darkness which may be felt.\nAnd Moses stretched forth his hand toward heaven; and there was a thick darkness in all the land of Egypt three days:\nThey saw not one another, neither rose any from his place for three days: but all the children of Israel had light in their dwellings.\nAnd Pharaoh called unto Moses, and said, Go ye, serve the Lord; only let your flocks and your herds be stayed: let your little ones also go with you.\nAnd Moses said, Thou must give us also sacrifices and burnt offerings, that we may sacrifice unto the Lord our God.\nOur cattle also shall go with us; there shall not an hoof be left behind; for thereof must we take to serve the Lord our God; and we know not with what we must serve the Lord, until we come thither.\nBut the Lord hardened Pharaoh's heart, and he would not let them go.\nAnd Pharaoh said unto him, Get thee from me, take heed to thyself, see my face no more; for in that day thou seest my face thou shalt die.\nAnd Moses said, Thou hast spoken well, I will see thy face again no more.\nAnd the Lord said unto Moses, Yet will I bring one plague more upon Pharaoh, and upon Egypt; afterwards he will let you go hence: when he shall let you go, he shall surely thrust you out hence altogether.\nSpeak now in the ears of the people, and let every man borrow of his neighbour, and every woman of her neighbour, jewels of silver and jewels of gold.\nAnd the Lord gave the people favour in the sight of the Egyptians. Moreover the man Moses was very great in the land of Egypt, in the sight of Pharaoh's servants, and in the sight of the people.\nAnd Moses said, Thus saith the Lord, About midnight will I go out into the midst of Egypt:\nAnd all the firstborn in the land of Egypt shall die, from the first born of Pharaoh that sitteth upon his throne, even unto the firstborn of the maidservant that is behind the mill; and all the firstborn of beasts.\nAnd there shall be a great cry throughout all the land of Egypt, such as there was none like it, nor shall be like it any more.\nBut against any of the children of Israel shall not a dog move his tongue, against man or beast: that ye may know how that the Lord doth put a difference between the Egyptians and Israel.\nAnd all these thy servants shall come down unto me, and bow down themselves unto me, saying, Get thee out, and all the people that follow thee: and after that I will go out. And he went out from Pharaoh in a great anger.\nAnd the Lord said unto Moses, Pharaoh shall not hearken unto you; that my wonders may be multiplied in the land of Egypt.\nAnd Moses and Aaron did all these wonders before Pharaoh: and the Lord hardened Pharaoh's heart, so that he would not let the children of Israel go out of his land.\n And the Lord spake unto Moses and Aaron in the land of Egypt saying,\nThis month shall be unto you the beginning of months: it shall be the first month of the year to you.\nSpeak ye unto all the congregation of Israel, saying, In the tenth day of this month they shall take to them every man a lamb, according to the house of their fathers, a lamb for an house:\nAnd if the household be too little for the lamb, let him and his neighbour next unto his house take it according to the number of the souls; every man according to his eating shall make your count for the lamb.\nYour lamb shall be without blemish, a male of the first year: ye shall take it out from the sheep, or from the goats:\nAnd ye shall keep it up until the fourteenth day of the same month: and the whole assembly of the congregation of Israel shall kill it in the evening.\nAnd they shall take of the blood, and strike it on the two side posts and on the upper door post of the houses, wherein they shall eat it.\nAnd they shall eat the flesh in that night, roast with fire, and unleavened bread; and with bitter herbs they shall eat it.\nEat not of it raw, nor sodden at all with water, but roast with fire; his head with his legs, and with the purtenance thereof.\nAnd ye shall let nothing of it remain until the morning; and that which remaineth of it until the morning ye shall burn with fire.\nAnd thus shall ye eat it; with your loins girded, your shoes on your feet, and your staff in your hand; and ye shall eat it in haste: it is the Lord's passover.\nFor I will pass through the land of Egypt this night, and will smite all the firstborn in the land of Egypt, both man and beast; and against all the gods of Egypt I will execute judgment: I am the Lord.\nAnd the blood shall be to you for a token upon the houses where ye are: and when I see the blood, I will pass over you, and the plague shall not be upon you to destroy you, when I smite the land of Egypt.\nAnd this day shall be unto you for a memorial; and ye shall keep it a feast to the Lord throughout your generations; ye shall keep it a feast by an ordinance for ever.\nSeven days shall ye eat unleavened bread; even the first day ye shall put away leaven out of your houses: for whosoever eateth leavened bread from the first day until the seventh day, that soul shall be cut off from Israel.\nAnd in the first day there shall be an holy convocation, and in the seventh day there shall be an holy convocation to you; no manner of work shall be done in them, save that which every man must eat, that only may be done of you.\nAnd ye shall observe the feast of unleavened bread; for in this selfsame day have I brought your armies out of the land of Egypt: therefore shall ye observe this day in your generations by an ordinance for ever.\nIn the first month, on the fourteenth day of the month at even, ye shall eat unleavened bread, until the one and twentieth day of the month at even.\nSeven days shall there be no leaven found in your houses: for whosoever eateth that which is leavened, even that soul shall be cut off from the congregation of Israel, whether he be a stranger, or born in the land.\nYe shall eat nothing leavened; in all your habitations shall ye eat unleavened bread.\nThen Moses called for all the elders of Israel, and said unto them, Draw out and take you a lamb according to your families, and kill the passover.\nAnd ye shall take a bunch of hyssop, and dip it in the blood that is in the bason, and strike the lintel and the two side posts with the blood that is in the bason; and none of you shall go out at the door of his house until the morning.\nFor the Lord will pass through to smite the Egyptians; and when he seeth the blood upon the lintel, and on the two side posts, the Lord will pass over the door, and will not suffer the destroyer to come in unto your houses to smite you.\nAnd ye shall observe this thing for an ordinance to thee and to thy sons for ever.\nAnd it shall come to pass, when ye be come to the land which the Lord will give you, according as he hath promised, that ye shall keep this service.\nAnd it shall come to pass, when your children shall say unto you, What mean ye by this service?\nThat ye shall say, It is the sacrifice of the Lord's passover, who passed over the houses of the children of Israel in Egypt, when he smote the Egyptians, and delivered our houses. And the people bowed the head and worshipped.\nAnd the children of Israel went away, and did as the Lord had commanded Moses and Aaron, so did they.\nAnd it came to pass, that at midnight the Lord smote all the firstborn in the land of Egypt, from the firstborn of Pharaoh that sat on his throne unto the firstborn of the captive that was in the dungeon; and all the firstborn of cattle.\nAnd Pharaoh rose up in the night, he, and all his servants, and all the Egyptians; and there was a great cry in Egypt; for there was not a house where there was not one dead.\nAnd he called for Moses and Aaron by night, and said, Rise up, and get you forth from among my people, both ye and the children of Israel; and go, serve the Lord, as ye have said.\nAlso take your flocks and your herds, as ye have said, and be gone; and bless me also.\nAnd the Egyptians were urgent upon the people, that they might send them out of the land in haste; for they said, We be all dead men.\nAnd the people took their dough before it was leavened, their kneadingtroughs being bound up in their clothes upon their shoulders.\nAnd the children of Israel did according to the word of Moses; and they borrowed of the Egyptians jewels of silver, and jewels of gold, and raiment:\nAnd the Lord gave the people favour in the sight of the Egyptians, so that they lent unto them such things as they required. And they spoiled the Egyptians.\nAnd the children of Israel journeyed from Rameses to Succoth, about six hundred thousand on foot that were men, beside children.\nAnd a mixed multitude went up also with them; and flocks, and herds, even very much cattle.\nAnd they baked unleavened cakes of the dough which they brought forth out of Egypt, for it was not leavened; because they were thrust out of Egypt, and could not tarry, neither had they prepared for themselves any victual.\nNow the sojourning of the children of Israel, who dwelt in Egypt, was four hundred and thirty years.\nAnd it came to pass at the end of the four hundred and thirty years, even the selfsame day it came to pass, that all the hosts of the Lord went out from the land of Egypt.\nIt is a night to be much observed unto the Lord for bringing them out from the land of Egypt: this is that night of the Lord to be observed of all the children of Israel in their generations.\nAnd the Lord said unto Moses and Aaron, This is the ordinance of the passover: There shall no stranger eat thereof:\nBut every man's servant that is bought for money, when thou hast circumcised him, then shall he eat thereof.\nA foreigner and an hired servant shall not eat thereof.\nIn one house shall it be eaten; thou shalt not carry forth ought of the flesh abroad out of the house; neither shall ye break a bone thereof.\nAll the congregation of Israel shall keep it.\nAnd when a stranger shall sojourn with thee, and will keep the passover to the Lord, let all his males be circumcised, and then let him come near and keep it; and he shall be as one that is born in the land: for no uncircumcised person shall eat thereof.\nOne law shall be to him that is homeborn, and unto the stranger that sojourneth among you.\nThus did all the children of Israel; as the Lord commanded Moses and Aaron, so did they.\nAnd it came to pass the selfsame day, that the Lord did bring the children of Israel out of the land of Egypt by their armies.\nAnd the Lord spake unto Moses, saying,\nSanctify unto me all the firstborn, whatsoever openeth the womb among the children of Israel, both of man and of beast: it is mine.\nAnd Moses said unto the people, Remember this day, in which ye came out from Egypt, out of the house of bondage; for by strength of hand the Lord brought you out from this place: there shall no leavened bread be eaten.\nThis day came ye out in the month Abib.\nAnd it shall be when the Lord shall bring thee into the land of the Canaanites, and the Hittites, and the Amorites, and the Hivites, and the Jebusites, which he sware unto thy fathers to give thee, a land flowing with milk and honey, that thou shalt keep this service in this month.\nSeven days thou shalt eat unleavened bread, and in the seventh day shall be a feast to the Lord.\nUnleavened bread shall be eaten seven days; and there shall no leavened bread be seen with thee, neither shall there be leaven seen with thee in all thy quarters.\nAnd thou shalt shew thy son in that day, saying, This is done because of that which the Lord did unto me when I came forth out of Egypt.\nAnd it shall be for a sign unto thee upon thine hand, and for a memorial between thine eyes, that the Lord's law may be in thy mouth: for with a strong hand hath the Lord brought thee out of Egypt.\nThou shalt therefore keep this ordinance in his season from year to year.\nAnd it shall be when the Lord shall bring thee into the land of the Canaanites, as he sware unto thee and to thy fathers, and shall give it thee,\nThat thou shalt set apart unto the Lord all that openeth the matrix, and every firstling that cometh of a beast which thou hast; the males shall be the Lord's.\nAnd every firstling of an ass thou shalt redeem with a lamb; and if thou wilt not redeem it, then thou shalt break his neck: and all the firstborn of man among thy children shalt thou redeem.\nAnd it shall be when thy son asketh thee in time to come, saying, What is this? that thou shalt say unto him, By strength of hand the Lord brought us out from Egypt, from the house of bondage:\nAnd it came to pass, when Pharaoh would hardly let us go, that the Lord slew all the firstborn in the land of Egypt, both the firstborn of man, and the firstborn of beast: therefore I sacrifice to the Lord all that openeth the matrix, being males; but all the firstborn of my children I redeem.\nAnd it shall be for a token upon thine hand, and for frontlets between thine eyes: for by strength of hand the Lord brought us forth out of Egypt.\nAnd it came to pass, when Pharaoh had let the people go, that God led them not through the way of the land of the Philistines, although that was near; for God said, Lest peradventure the people repent when they see war, and they return to Egypt:\nBut God led the people about, through the way of the wilderness of the Red sea: and the children of Israel went up harnessed out of the land of Egypt.\nAnd Moses took the bones of Joseph with him: for he had straitly sworn the children of Israel, saying, God will surely visit you; and ye shall carry up my bones away hence with you.\nAnd they took their journey from Succoth, and encamped in Etham, in the edge of the wilderness.\nAnd the Lord went before them by day in a pillar of a cloud, to lead them the way; and by night in a pillar of fire, to give them light; to go by day and night:\nHe took not away the pillar of the cloud by day, nor the pillar of fire by night, from before the people.\nAnd the Lord spake unto Moses, saying,\nSpeak unto the children of Israel, that they turn and encamp before Pihahiroth, between Migdol and the sea, over against Baalzephon: before it shall ye encamp by the sea.\nFor Pharaoh will say of the children of Israel, They are entangled in the land, the wilderness hath shut them in.\nAnd I will harden Pharaoh's heart, that he shall follow after them; and I will be honoured upon Pharaoh, and upon all his host; that the Egyptians may know that I am the Lord. And they did so.\nAnd it was told the king of Egypt that the people fled: and the heart of Pharaoh and of his servants was turned against the people, and they said, Why have we done this, that we have let Israel go from serving us?\nAnd he made ready his chariot, and took his people with him:\nAnd he took six hundred chosen chariots, and all the chariots of Egypt, and captains over every one of them.\nAnd the Lord hardened the heart of Pharaoh king of Egypt, and he pursued after the children of Israel: and the children of Israel went out with an high hand.\nBut the Egyptians pursued after them, all the horses and chariots of Pharaoh, and his horsemen, and his army, and overtook them encamping by the sea, beside Pihahiroth, before Baalzephon.\nAnd when Pharaoh drew nigh, the children of Israel lifted up their eyes, and, behold, the Egyptians marched after them; and they were sore afraid: and the children of Israel cried out unto the Lord.\nAnd they said unto Moses, Because there were no graves in Egypt, hast thou taken us away to die in the wilderness? wherefore hast thou dealt thus with us, to carry us forth out of Egypt?\nIs not this the word that we did tell thee in Egypt, saying, Let us alone, that we may serve the Egyptians? For it had been better for us to serve the Egyptians, than that we should die in the wilderness.\nAnd Moses said unto the people, Fear ye not, stand still, and see the salvation of the Lord, which he will shew to you to day: for the Egyptians whom ye have seen to day, ye shall see them again no more for ever.\nThe Lord shall fight for you, and ye shall hold your peace.\nAnd the Lord said unto Moses, Wherefore criest thou unto me? speak unto the children of Israel, that they go forward:\nBut lift thou up thy rod, and stretch out thine hand over the sea, and divide it: and the children of Israel shall go on dry ground through the midst of the sea.\nAnd I, behold, I will harden the hearts of the Egyptians, and they shall follow them: and I will get me honour upon Pharaoh, and upon all his host, upon his chariots, and upon his horsemen.\nAnd the Egyptians shall know that I am the Lord, when I have gotten me honour upon Pharaoh, upon his chariots, and upon his horsemen.\nAnd the angel of God, which went before the camp of Israel, removed and went behind them; and the pillar of the cloud went from before their face, and stood behind them:\nAnd it came between the camp of the Egyptians and the camp of Israel; and it was a cloud and darkness to them, but it gave light by night to these: so that the one came not near the other all the night.\nAnd Moses stretched out his hand over the sea; and the Lord caused the sea to go back by a strong east wind all that night, and made the sea dry land, and the waters were divided.\nAnd the children of Israel went into the midst of the sea upon the dry ground: and the waters were a wall unto them on their right hand, and on their left.\nAnd the Egyptians pursued, and went in after them to the midst of the sea, even all Pharaoh's horses, his chariots, and his horsemen.\nAnd it came to pass, that in the morning watch the Lord looked unto the host of the Egyptians through the pillar of fire and of the cloud, and troubled the host of the Egyptians,\nAnd took off their chariot wheels, that they drave them heavily: so that the Egyptians said, Let us flee from the face of Israel; for the Lord fighteth for them against the Egyptians.\nAnd the Lord said unto Moses, Stretch out thine hand over the sea, that the waters may come again upon the Egyptians, upon their chariots, and upon their horsemen.\nAnd Moses stretched forth his hand over the sea, and the sea returned to his strength when the morning appeared; and the Egyptians fled against it; and the Lord overthrew the Egyptians in the midst of the sea.\nAnd the waters returned, and covered the chariots, and the horsemen, and all the host of Pharaoh that came into the sea after them; there remained not so much as one of them.\nBut the children of Israel walked upon dry land in the midst of the sea; and the waters were a wall unto them on their right hand, and on their left.\nThus the Lord saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead upon the sea shore.\nAnd Israel saw that great work which the Lord did upon the Egyptians: and the people feared the Lord, and believed the Lord, and his servant Moses.\nThen sang Moses and the children of Israel this song unto the YHWH, and spake, saying, I will sing unto the YHWH, for he hath triumphed gloriously: the horse and his rider hath he thrown into the sea.\nThe YHWH is my strength and song, and he is become my salvation: he is my God, and I will prepare him an habitation; my father's God, and I will exalt him.\nThe YHWH is a man of war: the YHWH is his name.\nPharaoh's chariots and his host hath he cast into the sea: his chosen captains also are drowned in the Red sea.\nThe depths have covered them: they sank into the bottom as a stone.\nThy right hand, O Lord, is become glorious in power: thy right hand, O Lord, hath dashed in pieces the enemy.\nAnd in the greatness of thine excellency thou hast overthrown them that rose up against thee: thou sentest forth thy wrath, which consumed them as stubble.\nAnd with the blast of thy nostrils the waters were gathered together, the floods stood upright as an heap, and the depths were congealed in the heart of the sea.\nThe enemy said, I will pursue, I will overtake, I will divide the spoil; my lust shall be satisfied upon them; I will draw my sword, my hand shall destroy them.\nThou didst blow with thy wind, the sea covered them: they sank as lead in the mighty waters.\nWho is like unto thee, O Lord, among the gods? who is like thee, glorious in holiness, fearful in praises, doing wonders?\nThou stretchedst out thy right hand, the earth swallowed them.\nThou in thy mercy hast led forth the people which thou hast redeemed: thou hast guided them in thy strength unto thy holy habitation.\nThe people shall hear, and be afraid: sorrow shall take hold on the inhabitants of Palestina.\nThen the dukes of Edom shall be amazed; the mighty men of Moab, trembling shall take hold upon them; all the inhabitants of Canaan shall melt away.\nFear and dread shall fall upon them; by the greatness of thine arm they shall be as still as a stone; till thy people pass over, O Lord, till the people pass over, which thou hast purchased.\nThou shalt bring them in, and plant them in the mountain of thine inheritance, in the place, O Lord, which thou hast made for thee to dwell in, in the Sanctuary, O Lord, which thy hands have established.\nThe Lord shall reign for ever and ever.\nFor the horse of Pharaoh went in with his chariots and with his horsemen into the sea, and the Lord brought again the waters of the sea upon them; but the children of Israel went on dry land in the midst of the sea.\nAnd Miriam the prophetess, the sister of Aaron, took a timbrel in her hand; and all the women went out after her with timbrels and with dances.\nAnd Miriam answered them, Sing ye to the Lord, for he hath triumphed gloriously; the horse and his rider hath he thrown into the sea.\nSo Moses brought Israel from the Red sea, and they went out into the wilderness of Shur; and they went three days in the wilderness, and found no water.\nAnd when they came to Marah, they could not drink of the waters of Marah, for they were bitter: therefore the name of it was called Marah.\nAnd the people murmured against Moses, saying, What shall we drink?\nAnd he cried unto the Lord; and the Lord shewed him a tree, which when he had cast into the waters, the waters were made sweet: there he made for them a statute and an ordinance, and there he proved them,\nAnd said, If thou wilt diligently hearken to the voice of the Lord thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the Lord that healeth thee.\nAnd they took their journey from Elim, and all the congregation of the children of Israel came unto the wilderness of Sin, which is between Elim and Sinai, on the fifteenth day of the second month after their departing out of the land of Egypt.\nAnd the whole congregation of the children of Israel murmured against Moses and Aaron in the wilderness:\nAnd the children of Israel said unto them, Would to God we had died by the hand of the Lord in the land of Egypt, when we sat by the flesh pots, and when we did eat bread to the full; for ye have brought us forth into this wilderness, to kill this whole assembly with hunger.\nThen said the Lord unto Moses, Behold, I will rain bread from heaven for you; and the people shall go out and gather a certain rate every day, that I may prove them, whether they will walk in my law, or no.\nAnd it shall come to pass, that on the sixth day they shall prepare that which they bring in; and it shall be twice as much as they gather daily.\nAnd Moses and Aaron said unto all the children of Israel, At even, then ye shall know that the Lord hath brought you out from the land of Egypt:\nAnd in the morning, then ye shall see the glory of the Lord; for that he heareth your murmurings against the Lord: and what are we, that ye murmur against us?\nAnd Moses said, This shall be, when the Lord shall give you in the evening flesh to eat, and in the morning bread to the full; for that the Lord heareth your murmurings which ye murmur against him: and what are we? your murmurings are not against us, but against the Lord.\nAnd Moses spake unto Aaron, Say unto all the congregation of the children of Israel, Come near before the Lord: for he hath heard your murmurings.\nAnd it came to pass, as Aaron spake unto the whole congregation of the children of Israel, that they looked toward the wilderness, and, behold, the glory of the Lord appeared in the cloud.\nAnd the Lord spake unto Moses, saying,\nI have heard the murmurings of the children of Israel: speak unto them, saying, At even ye shall eat flesh, and in the morning ye shall be filled with bread; and ye shall know that I am the Lord your God.\nAnd it came to pass, that at even the quails came up, and covered the camp: and in the morning the dew lay round about the host.\nAnd when the dew that lay was gone up, behold, upon the face of the wilderness there lay a small round thing, as small as the hoar frost on the ground.\nAnd when the children of Israel saw it, they said one to another, It is manna: for they wist not what it was. And Moses said unto them, This is the bread which the Lord hath given you to eat.\nThis is the thing which the Lord hath commanded, Gather of it every man according to his eating, an omer for every man, according to the number of your persons; take ye every man for them which are in his tents.\nAnd the children of Israel did so, and gathered, some more, some less.\nAnd when they did mete it with an omer, he that gathered much had nothing over, and he that gathered little had no lack; they gathered every man according to his eating.\nAnd Moses said, Let no man leave of it till the morning.\nNotwithstanding they hearkened not unto Moses; but some of them left of it until the morning, and it bred worms, and stank: and Moses was wroth with them.\nAnd they gathered it every morning, every man according to his eating: and when the sun waxed hot, it melted.\nAnd it came to pass, that on the sixth day they gathered twice as much bread, two omers for one man: and all the rulers of the congregation came and told Moses.\nAnd he said unto them, This is that which the Lord hath said, To morrow is the rest of the holy sabbath unto the Lord: bake that which ye will bake to day, and seethe that ye will seethe; and that which remaineth over lay up for you to be kept until the morning.\nAnd they laid it up till the morning, as Moses bade: and it did not stink, neither was there any worm therein.\nAnd Moses said, Eat that to day; for to day is a sabbath unto the Lord: to day ye shall not find it in the field.\nSix days ye shall gather it; but on the seventh day, which is the sabbath, in it there shall be none.\nAnd it came to pass, that there went out some of the people on the seventh day for to gather, and they found none.\nAnd the Lord said unto Moses, How long refuse ye to keep my commandments and my laws?\nSee, for that the Lord hath given you the sabbath, therefore he giveth you on the sixth day the bread of two days; abide ye every man in his place, let no man go out of his place on the seventh day.\nSo the people rested on the seventh day.\nAnd the house of Israel called the name thereof Manna: and it was like coriander seed, white; and the taste of it was like wafers made with honey.\nAnd Moses said, This is the thing which the Lord commandeth, Fill an omer of it to be kept for your generations; that they may see the bread wherewith I have fed you in the wilderness, when I brought you forth from the land of Egypt.\nAnd Moses said unto Aaron, Take a pot, and put an omer full of manna therein, and lay it up before the Lord, to be kept for your generations.\nAs the Lord commanded Moses, so Aaron laid it up before the Testimony, to be kept.\nAnd the children of Israel did eat manna forty years, until they came to a land inhabited; they did eat manna, until they came unto the borders of the land of Canaan.\nNow an omer is the tenth part of an ephah.\nAnd all the congregation of the children of Israel journeyed from the wilderness of Sin, after their journeys, according to the commandment of the Lord, and pitched in Rephidim: and there was no water for the people to drink.\nWherefore the people did chide with Moses, and said, Give us water that we may drink. And Moses said unto them, Why chide ye with me? wherefore do ye tempt the Lord?\nAnd the people thirsted there for water; and the people murmured against Moses, and said, Wherefore is this that thou hast brought us up out of Egypt, to kill us and our children and our cattle with thirst?\nAnd Moses cried unto the Lord, saying, What shall I do unto this people? they be almost ready to stone me.\nAnd the Lord said unto Moses, Go on before the people, and take with thee of the elders of Israel; and thy rod, wherewith thou smotest the river, take in thine hand, and go.\nBehold, I will stand before thee there upon the rock in Horeb; and thou shalt smite the rock, and there shall come water out of it, that the people may drink. And Moses did so in the sight of the elders of Israel.\nAnd he called the name of the place Massah, and Meribah, because of the chiding of the children of Israel, and because they tempted the Lord, saying, Is the Lord among us, or not?\nThen came Amalek, and fought with Israel in Rephidim.\nAnd Moses said unto Joshua, Choose us out men, and go out, fight with Amalek: to morrow I will stand on the top of the hill with the rod of God in mine hand.\nSo Joshua did as Moses had said to him, and fought with Amalek: and Moses, Aaron, and Hur went up to the top of the hill.\nAnd it came to pass, when Moses held up his hand, that Israel prevailed: and when he let down his hand, Amalek prevailed.\nBut Moses hands were heavy; and they took a stone, and put it under him, and he sat thereon; and Aaron and Hur stayed up his hands, the one on the one side, and the other on the other side; and his hands were steady until the going down of the sun.\nAnd Joshua discomfited Amalek and his people with the edge of the sword.\nAnd the Lord said unto Moses, Write this for a memorial in a book, and rehearse it in the ears of Joshua: for I will utterly put out the remembrance of Amalek from under heaven.\nAnd Moses built an altar, and called the name of it Jehovahnissi:\nFor he said, Because the Lord hath sworn that the Lord will have war with Amalek from generation to generation.\nWhen Jethro, the priest of Midian, Moses' father in law, heard of all that God had done for Moses, and for Israel his people, and that the Lord had brought Israel out of Egypt;\nThen Jethro, Moses' father in law, took Zipporah, Moses' wife, after he had sent her back,\nAnd her two sons; of which the name of the one was Gershom; for he said, I have been an alien in a strange land:\nAnd the name of the other was Eliezer; for the God of my father, said he, was mine help, and delivered me from the sword of Pharaoh:\nAnd Jethro, Moses' father in law, came with his sons and his wife unto Moses into the wilderness, where he encamped at the mount of God:\nAnd he said unto Moses, I thy father in law Jethro am come unto thee, and thy wife, and her two sons with her.\nAnd Moses went out to meet his father in law, and did obeisance, and kissed him; and they asked each other of their welfare; and they came into the tent.\nAnd Moses told his father in law all that the Lord had done unto Pharaoh and to the Egyptians for Israel's sake, and all the travail that had come upon them by the way, and how the Lord delivered them.\nAnd Jethro rejoiced for all the goodness which the Lord had done to Israel, whom he had delivered out of the hand of the Egyptians.\nAnd Jethro said, Blessed be the Lord, who hath delivered you out of the hand of the Egyptians, and out of the hand of Pharaoh, who hath delivered the people from under the hand of the Egyptians.\nNow I know that the Lord is greater than all gods: for in the thing wherein they dealt proudly he was above them.\nAnd Jethro, Moses' father in law, took a burnt offering and sacrifices for God: and Aaron came, and all the elders of Israel, to eat bread with Moses' father in law before God.\nAnd it came to pass on the morrow, that Moses sat to judge the people: and the people stood by Moses from the morning unto the evening.\nAnd when Moses' father in law saw all that he did to the people, he said, What is this thing that thou doest to the people? why sittest thou thyself alone, and all the people stand by thee from morning unto even?\nAnd Moses said unto his father in law, Because the people come unto me to enquire of God:\nWhen they have a matter, they come unto me; and I judge between one and another, and I do make them know the statutes of God, and his laws.\nAnd Moses' father in law said unto him, The thing that thou doest is not good.\nThou wilt surely wear away, both thou, and this people that is with thee: for this thing is too heavy for thee; thou art not able to perform it thyself alone.\nHearken now unto my voice, I will give thee counsel, and God shall be with thee: Be thou for the people to God-ward, that thou mayest bring the causes unto God:\nAnd thou shalt teach them ordinances and laws, and shalt shew them the way wherein they must walk, and the work that they must do.\nMoreover thou shalt provide out of all the people able men, such as fear God, men of truth, hating covetousness; and place such over them, to be rulers of thousands, and rulers of hundreds, rulers of fifties, and rulers of tens:\nAnd let them judge the people at all seasons: and it shall be, that every great matter they shall bring unto thee, but every small matter they shall judge: so shall it be easier for thyself, and they shall bear the burden with thee.\nIf thou shalt do this thing, and God command thee so, then thou shalt be able to endure, and all this people shall also go to their place in peace.\nSo Moses hearkened to the voice of his father in law, and did all that he had said.\nAnd Moses chose able men out of all Israel, and made them heads over the people, rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens.\nAnd they judged the people at all seasons: the hard causes they brought unto Moses, but every small matter they judged themselves.\nAnd Moses let his father in law depart; and he went his way into his own land.\nIn the third month, when the children of Israel were gone forth out of the land of Egypt, the same day came they into the wilderness of Sinai.\nFor they were departed from Rephidim, and were come to the desert of Sinai, and had pitched in the wilderness; and there Israel camped before the mount.\nAnd Moses went up unto God, and the Lord called unto him out of the mountain, saying, Thus shalt thou say to the house of Jacob, and tell the children of Israel;\nYe have seen what I did unto the Egyptians, and how I bare you on eagles' wings, and brought you unto myself.\nNow therefore, if ye will obey my voice indeed, and keep my covenant, then ye shall be a peculiar treasure unto me above all people: for all the earth is mine:\nAnd ye shall be unto me a kingdom of priests, and an holy nation. These are the words which thou shalt speak unto the children of Israel.\nAnd Moses came and called for the elders of the people, and laid before their faces all these words which the Lord commanded him.\nAnd all the people answered together, and said, All that the Lord hath spoken we will do. And Moses returned the words of the people unto the Lord.\nAnd the Lord said unto Moses, Lo, I come unto thee in a thick cloud, that the people may hear when I speak with thee, and believe thee for ever. And Moses told the words of the people unto the Lord.\nAnd the Lord said unto Moses, Go unto the people, and sanctify them to day and to morrow, and let them wash their clothes,\nAnd be ready against the third day: for the third day the Lord will come down in the sight of all the people upon mount Sinai.\nAnd thou shalt set bounds unto the people round about, saying, Take heed to yourselves, that ye go not up into the mount, or touch the border of it: whosoever toucheth the mount shall be surely put to death:\nThere shall not an hand touch it, but he shall surely be stoned, or shot through; whether it be beast or man, it shall not live: when the trumpet soundeth long, they shall come up to the mount.\nAnd Moses went down from the mount unto the people, and sanctified the people; and they washed their clothes.\nAnd he said unto the people, Be ready against the third day: come not at your wives.\nAnd it came to pass on the third day in the morning, that there were thunders and lightnings, and a thick cloud upon the mount, and the voice of the trumpet exceeding loud; so that all the people that was in the camp trembled.\nAnd Moses brought forth the people out of the camp to meet with God; and they stood at the nether part of the mount.\nAnd mount Sinai was altogether on a smoke, because the Lord descended upon it in fire: and the smoke thereof ascended as the smoke of a furnace, and the whole mount quaked greatly.\nAnd when the voice of the trumpet sounded long, and waxed louder and louder, Moses spake, and God answered him by a voice.\nAnd the Lord came down upon mount Sinai, on the top of the mount: and the Lord called Moses up to the top of the mount; and Moses went up.\nAnd the Lord said unto Moses, Go down, charge the people, lest they break through unto the Lord to gaze, and many of them perish.\nAnd let the priests also, which come near to the Lord, sanctify themselves, lest the Lord break forth upon them.\nAnd Moses said unto the Lord, The people cannot come up to mount Sinai: for thou chargedst us, saying, Set bounds about the mount, and sanctify it.\nAnd the Lord said unto him, Away, get thee down, and thou shalt come up, thou, and Aaron with thee: but let not the priests and the people break through to come up unto the Lord, lest he break forth upon them.\nSo Moses went down unto the people, and spake unto them.\nAnd God spake all these words, saying,\nI am the Lord thy God, which have brought thee out of the land of Egypt, out of the house of bondage.\nThou shalt have no other gods before me.\nThou shalt not make unto thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the water under the earth.\nThou shalt not bow down thyself to them, nor serve them: for I the Lord thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me;\nAnd shewing mercy unto thousands of them that love me, and keep my commandments.\nThou shalt not take the name of the Lord thy God in vain; for the Lord will not hold him guiltless that taketh his name in vain.\nRemember the sabbath day, to keep it holy.\nSix days shalt thou labour, and do all thy work:\nBut the seventh day is the sabbath of the Lord thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, thy manservant, nor thy maidservant, nor thy cattle, nor thy stranger that is within thy gates:\nFor in six days the Lord made heaven and earth, the sea, and all that in them is, and rested the seventh day: wherefore the Lord blessed the sabbath day, and hallowed it.\nHonour thy father and thy mother: that thy days may be long upon the land which the Lord thy God giveth thee.\nThou shalt not kill.\nThou shalt not commit adultery.\nThou shalt not steal.\nThou shalt not bear false witness against thy neighbour.\nThou shalt not covet thy neighbour's house, thou shalt not covet thy neighbour's wife, nor his manservant, nor his maidservant, nor his ox, nor his ass, nor any thing that is thy neighbour's.\nAnd all the people saw the thunderings, and the lightnings, and the noise of the trumpet, and the mountain smoking: and when the people saw it, they removed, and stood afar off.\nAnd they said unto Moses, Speak thou with us, and we will hear: but let not God speak with us, lest we die.\nAnd Moses said unto the people, Fear not: for God is come to prove you, and that his fear may be before your faces, that ye sin not.\nAnd the people stood afar off, and Moses drew near unto the thick darkness where God was.\nAnd the Lord said unto Moses, Thus thou shalt say unto the children of Israel, Ye have seen that I have talked with you from heaven.\nYe shall not make with me gods of silver, neither shall ye make unto you gods of gold.\nAn altar of earth thou shalt make unto me, and shalt sacrifice thereon thy burnt offerings, and thy peace offerings, thy sheep, and thine oxen: in all places where I record my name I will come unto thee, and I will bless thee.\nAnd if thou wilt make me an altar of stone, thou shalt not build it of hewn stone: for if thou lift up thy tool upon it, thou hast polluted it.\nNeither shalt thou go up by steps unto mine altar, that thy nakedness be not discovered thereon.\nNow these are the judgments which thou shalt set before them.\nIf thou buy an Hebrew servant, six years he shall serve: and in the seventh he shall go out free for nothing.\nIf he came in by himself, he shall go out by himself: if he were married, then his wife shall go out with him.\nIf his master have given him a wife, and she have born him sons or daughters; the wife and her children shall be her master's, and he shall go out by himself.\nAnd if the servant shall plainly say, I love my master, my wife, and my children; I will not go out free:\nThen his master shall bring him unto the judges; he shall also bring him to the door, or unto the door post; and his master shall bore his ear through with an aul; and he shall serve him for ever.\nAnd if a man sell his daughter to be a maidservant, she shall not go out as the menservants do.\nIf she please not her master, who hath betrothed her to himself, then shall he let her be redeemed: to sell her unto a strange nation he shall have no power, seeing he hath dealt deceitfully with her.\nAnd if he have betrothed her unto his son, he shall deal with her after the manner of daughters.\nIf he take him another wife; her food, her raiment, and her duty of marriage, shall he not diminish.\nAnd if he do not these three unto her, then shall she go out free without money.\nHe that smiteth a man, so that he die, shall be surely put to death.\nAnd if a man lie not in wait, but God deliver him into his hand; then I will appoint thee a place whither he shall flee.\nBut if a man come presumptuously upon his neighbour, to slay him with guile; thou shalt take him from mine altar, that he may die.\nAnd he that smiteth his father, or his mother, shall be surely put to death.\nAnd he that stealeth a man, and selleth him, or if he be found in his hand, he shall surely be put to death.\nAnd he that curseth his father, or his mother, shall surely be put to death.\nAnd if men strive together, and one smite another with a stone, or with his fist, and he die not, but keepeth his bed:\nIf he rise again, and walk abroad upon his staff, then shall he that smote him be quit: only he shall pay for the loss of his time, and shall cause him to be thoroughly healed.\nAnd if a man smite his servant, or his maid, with a rod, and he die under his hand; he shall be surely punished.\nNotwithstanding, if he continue a day or two, he shall not be punished: for he is his money.\nIf men strive, and hurt a woman with child, so that her fruit depart from her, and yet no mischief follow: he shall be surely punished, according as the woman's husband will lay upon him; and he shall pay as the judges determine.\nAnd if any mischief follow, then thou shalt give life for life,\nEye for eye, tooth for tooth, hand for hand, foot for foot,\nBurning for burning, wound for wound, stripe for stripe.\nAnd if a man smite the eye of his servant, or the eye of his maid, that it perish; he shall let him go free for his eye's sake.\nAnd if he smite out his manservant's tooth, or his maidservant's tooth; he shall let him go free for his tooth's sake.\nIf an ox gore a man or a woman, that they die: then the ox shall be surely stoned, and his flesh shall not be eaten; but the owner of the ox shall be quit.\nBut if the ox were wont to push with his horn in time past, and it hath been testified to his owner, and he hath not kept him in, but that he hath killed a man or a woman; the ox shall be stoned, and his owner also shall be put to death.\nIf there be laid on him a sum of money, then he shall give for the ransom of his life whatsoever is laid upon him.\nWhether he have gored a son, or have gored a daughter, according to this judgment shall it be done unto him.\nIf the ox shall push a manservant or a maidservant; he shall give unto their master thirty shekels of silver, and the ox shall be stoned.\nAnd if a man shall open a pit, or if a man shall dig a pit, and not cover it, and an ox or an ass fall therein;\nThe owner of the pit shall make it good, and give money unto the owner of them; and the dead beast shall be his.\nAnd if one man's ox hurt another's, that he die; then they shall sell the live ox, and divide the money of it; and the dead ox also they shall divide.\nOr if it be known that the ox hath used to push in time past, and his owner hath not kept him in; he shall surely pay ox for ox; and the dead shall be his own.\nIf a man shall steal an ox, or a sheep, and kill it, or sell it; he shall restore five oxen for an ox, and four sheep for a sheep.\nIf a thief be found breaking up, and be smitten that he die, there shall no blood be shed for him.\nIf the sun be risen upon him, there shall be blood shed for him; for he should make full restitution; if he have nothing, then he shall be sold for his theft.\nIf the theft be certainly found in his hand alive, whether it be ox, or ass, or sheep; he shall restore double.\nIf a man shall cause a field or vineyard to be eaten, and shall put in his beast, and shall feed in another man's field; of the best of his own field, and of the best of his own vineyard, shall he make restitution.\nIf fire break out, and catch in thorns, so that the stacks of corn, or the standing corn, or the field, be consumed therewith; he that kindled the fire shall surely make restitution.\nIf a man shall deliver unto his neighbour money or stuff to keep, and it be stolen out of the man's house; if the thief be found, let him pay double.\nIf the thief be not found, then the master of the house shall be brought unto the judges, to see whether he have put his hand unto his neighbour's goods.\nFor all manner of trespass, whether it be for ox, for ass, for sheep, for raiment, or for any manner of lost thing which another challengeth to be his, the cause of both parties shall come before the judges; and whom the judges shall condemn, he shall pay double unto his neighbour.\nIf a man deliver unto his neighbour an ass, or an ox, or a sheep, or any beast, to keep; and it die, or be hurt, or driven away, no man seeing it:\nThen shall an oath of the Lord be between them both, that he hath not put his hand unto his neighbour's goods; and the owner of it shall accept thereof, and he shall not make it good.\nAnd if it be stolen from him, he shall make restitution unto the owner thereof.\nIf it be torn in pieces, then let him bring it for witness, and he shall not make good that which was torn.\nAnd if a man borrow ought of his neighbour, and it be hurt, or die, the owner thereof being not with it, he shall surely make it good.\nBut if the owner thereof be with it, he shall not make it good: if it be an hired thing, it came for his hire.\nAnd if a man entice a maid that is not betrothed, and lie with her, he shall surely endow her to be his wife.\nIf her father utterly refuse to give her unto him, he shall pay money according to the dowry of virgins.\nThou shalt not suffer a witch to live.\nWhosoever lieth with a beast shall surely be put to death.\nHe that sacrificeth unto any god, save unto the Lord only, he shall be utterly destroyed.\nThou shalt neither vex a stranger, nor oppress him: for ye were strangers in the land of Egypt.\nYe shall not afflict any widow, or fatherless child.\nIf thou afflict them in any wise, and they cry at all unto me, I will surely hear their cry;\nAnd my wrath shall wax hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless.\nIf thou lend money to any of my people that is poor by thee, thou shalt not be to him as an usurer, neither shalt thou lay upon him usury.\nIf thou at all take thy neighbour's raiment to pledge, thou shalt deliver it unto him by that the sun goeth down:\nFor that is his covering only, it is his raiment for his skin: wherein shall he sleep? and it shall come to pass, when he crieth unto me, that I will hear; for I am gracious.\nThou shalt not revile the gods, nor curse the ruler of thy people.\nThou shalt not delay to offer the first of thy ripe fruits, and of thy liquors: the firstborn of thy sons shalt thou give unto me.\nLikewise shalt thou do with thine oxen, and with thy sheep: seven days it shall be with his dam; on the eighth day thou shalt give it me.\nAnd ye shall be holy men unto me: neither shall ye eat any flesh that is torn of beasts in the field; ye shall cast it to the dogs.\nThou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness.\nThou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment:\nNeither shalt thou countenance a poor man in his cause.\nIf thou meet thine enemy's ox or his ass going astray, thou shalt surely bring it back to him again.\nIf thou see the ass of him that hateth thee lying under his burden, and wouldest forbear to help him, thou shalt surely help with him.\nThou shalt not wrest the judgment of thy poor in his cause.\nKeep thee far from a false matter; and the innocent and righteous slay thou not: for I will not justify the wicked.\nAnd thou shalt take no gift: for the gift blindeth the wise, and perverteth the words of the righteous.\nAlso thou shalt not oppress a stranger: for ye know the heart of a stranger, seeing ye were strangers in the land of Egypt.\nAnd six years thou shalt sow thy land, and shalt gather in the fruits thereof:\nBut the seventh year thou shalt let it rest and lie still; that the poor of thy people may eat: and what they leave the beasts of the field shall eat. In like manner thou shalt deal with thy vineyard, and with thy oliveyard.\nSix days thou shalt do thy work, and on the seventh day thou shalt rest: that thine ox and thine ass may rest, and the son of thy handmaid, and the stranger, may be refreshed.\nAnd in all things that I have said unto you be circumspect: and make no mention of the name of other gods, neither let it be heard out of thy mouth.\nThree times thou shalt keep a feast unto me in the year.\nThou shalt keep the feast of unleavened bread: (thou shalt eat unleavened bread seven days, as I commanded thee, in the time appointed of the month Abib; for in it thou camest out from Egypt: and none shall appear before me empty:)\nAnd the feast of harvest, the firstfruits of thy labours, which thou hast sown in the field: and the feast of ingathering, which is in the end of the year, when thou hast gathered in thy labours out of the field.\nThree times in the year all thy males shall appear before the Lord God.\nThou shalt not offer the blood of my sacrifice with leavened bread; neither shall the fat of my sacrifice remain until the morning.\nThe first of the firstfruits of thy land thou shalt bring into the house of the Lord thy God. Thou shalt not seethe a kid in his mother's milk.\nBehold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared.\nBeware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him.\nBut if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries.\nFor mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off.\nThou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images.\nAnd ye shall serve the Lord your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee.\nThere shall nothing cast their young, nor be barren, in thy land: the number of thy days I will fulfil.\nI will send my fear before thee, and will destroy all the people to whom thou shalt come, and I will make all thine enemies turn their backs unto thee.\nAnd I will send hornets before thee, which shall drive out the Hivite, the Canaanite, and the Hittite, from before thee.\nI will not drive them out from before thee in one year; lest the land become desolate, and the beast of the field multiply against thee.\nBy little and little I will drive them out from before thee, until thou be increased, and inherit the land.\nAnd I will set thy bounds from the Red sea even unto the sea of the Philistines, and from the desert unto the river: for I will deliver the inhabitants of the land into your hand; and thou shalt drive them out before thee.\nThou shalt make no covenant with them, nor with their gods.\nThey shall not dwell in thy land, lest they make thee sin against me: for if thou serve their gods, it will surely be a snare unto thee.\nAnd he said unto Moses, Come up unto the Lord, thou, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel; and worship ye afar off.\nAnd Moses alone shall come near the Lord: but they shall not come nigh; neither shall the people go up with him.\nAnd Moses came and told the people all the words of the Lord, and all the judgments: and all the people answered with one voice, and said, All the words which the Lord hath said will we do.\nAnd Moses wrote all the words of the Lord, and rose up early in the morning, and builded an altar under the hill, and twelve pillars, according to the twelve tribes of Israel.\nAnd he sent young men of the children of Israel, which offered burnt offerings, and sacrificed peace offerings of oxen unto the Lord.\nAnd Moses took half of the blood, and put it in basons; and half of the blood he sprinkled on the altar.\nAnd he took the book of the covenant, and read in the audience of the people: and they said, All that the Lord hath said will we do, and be obedient.\nAnd Moses took the blood, and sprinkled it on the people, and said, Behold the blood of the covenant, which the Lord hath made with you concerning all these words.\nThen went up Moses, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel:\nAnd they saw the God of Israel: and there was under his feet as it were a paved work of a sapphire stone, and as it were the body of heaven in his clearness.\nAnd upon the nobles of the children of Israel he laid not his hand: also they saw God, and did eat and drink.\nAnd the Lord said unto Moses, Come up to me into the mount, and be there: and I will give thee tables of stone, and a law, and commandments which I have written; that thou mayest teach them.\nAnd Moses rose up, and his minister Joshua: and Moses went up into the mount of God.\nAnd he said unto the elders, Tarry ye here for us, until we come again unto you: and, behold, Aaron and Hur are with you: if any man have any matters to do, let him come unto them.\nAnd Moses went up into the mount, and a cloud covered the mount.\nAnd the glory of the Lord abode upon mount Sinai, and the cloud covered it six days: and the seventh day he called unto Moses out of the midst of the cloud.\nAnd the sight of the glory of the Lord was like devouring fire on the top of the mount in the eyes of the children of Israel.\nAnd Moses went into the midst of the cloud, and gat him up into the mount: and Moses was in the mount forty days and forty nights.\nAnd the Lord spake unto Moses, saying,\nSpeak unto the children of Israel, that they bring me an offering: of every man that giveth it willingly with his heart ye shall take my offering.\nAnd this is the offering which ye shall take of them; gold, and silver, and brass,\nAnd blue, and purple, and scarlet, and fine linen, and goats' hair,\nAnd rams' skins dyed red, and badgers' skins, and shittim wood,\nOil for the light, spices for anointing oil, and for sweet incense,\nOnyx stones, and stones to be set in the ephod, and in the breastplate.\nAnd let them make me a sanctuary; that I may dwell among them.\nAccording to all that I shew thee, after the pattern of the tabernacle, and the pattern of all the instruments thereof, even so shall ye make it.\nAnd they shall make an ark of shittim wood: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof, and a cubit and a half the height thereof.\nAnd thou shalt overlay it with pure gold, within and without shalt thou overlay it, and shalt make upon it a crown of gold round about.\nAnd thou shalt cast four rings of gold for it, and put them in the four corners thereof; and two rings shall be in the one side of it, and two rings in the other side of it.\nAnd thou shalt make staves of shittim wood, and overlay them with gold.\nAnd thou shalt put the staves into the rings by the sides of the ark, that the ark may be borne with them.\nThe staves shall be in the rings of the ark: they shall not be taken from it.\nAnd thou shalt put into the ark the testimony which I shall give thee.\nAnd thou shalt make a mercy seat of pure gold: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof.\nAnd thou shalt make two cherubims of gold, of beaten work shalt thou make them, in the two ends of the mercy seat.\nAnd make one cherub on the one end, and the other cherub on the other end: even of the mercy seat shall ye make the cherubims on the two ends thereof.\nAnd the cherubims shall stretch forth their wings on high, covering the mercy seat with their wings, and their faces shall look one to another; toward the mercy seat shall the faces of the cherubims be.\nAnd thou shalt put the mercy seat above upon the ark; and in the ark thou shalt put the testimony that I shall give thee.\nAnd there I will meet with thee, and I will commune with thee from above the mercy seat, from between the two cherubims which are upon the ark of the testimony, of all things which I will give thee in commandment unto the children of Israel.\nThou shalt also make a table of shittim wood: two cubits shall be the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof.\nAnd thou shalt overlay it with pure gold, and make thereto a crown of gold round about.\nAnd thou shalt make unto it a border of an hand breadth round about, and thou shalt make a golden crown to the border thereof round about.\nAnd thou shalt make for it four rings of gold, and put the rings in the four corners that are on the four feet thereof.\nOver against the border shall the rings be for places of the staves to bear the table.\nAnd thou shalt make the staves of shittim wood, and overlay them with gold, that the table may be borne with them.\nAnd thou shalt make the dishes thereof, and spoons thereof, and covers thereof, and bowls thereof, to cover withal: of pure gold shalt thou make them.\nAnd thou shalt set upon the table shewbread before me alway.\nAnd thou shalt make a candlestick of pure gold: of beaten work shall the candlestick be made: his shaft, and his branches, his bowls, his knops, and his flowers, shall be of the same.\nAnd six branches shall come out of the sides of it; three branches of the candlestick out of the one side, and three branches of the candlestick out of the other side:\nThree bowls made like unto almonds, with a knop and a flower in one branch; and three bowls made like almonds in the other branch, with a knop and a flower: so in the six branches that come out of the candlestick.\nAnd in the candlesticks shall be four bowls made like unto almonds, with their knops and their flowers.\nAnd there shall be a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches that proceed out of the candlestick.\nTheir knops and their branches shall be of the same: all it shall be one beaten work of pure gold.\nAnd thou shalt make the seven lamps thereof: and they shall light the lamps thereof, that they may give light over against it.\nAnd the tongs thereof, and the snuffdishes thereof, shall be of pure gold.\nOf a talent of pure gold shall he make it, with all these vessels.\nAnd look that thou make them after their pattern, which was shewed thee in the mount.\nMoreover thou shalt make the tabernacle with ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubims of cunning work shalt thou make them.\nThe length of one curtain shall be eight and twenty cubits, and the breadth of one curtain four cubits: and every one of the curtains shall have one measure.\nThe five curtains shall be coupled together one to another; and other five curtains shall be coupled one to another.\nAnd thou shalt make loops of blue upon the edge of the one curtain from the selvedge in the coupling; and likewise shalt thou make in the uttermost edge of another curtain, in the coupling of the second.\nFifty loops shalt thou make in the one curtain, and fifty loops shalt thou make in the edge of the curtain that is in the coupling of the second; that the loops may take hold one of another.\nAnd thou shalt make fifty taches of gold, and couple the curtains together with the taches: and it shall be one tabernacle.\nAnd thou shalt make curtains of goats' hair to be a covering upon the tabernacle: eleven curtains shalt thou make.\nThe length of one curtain shall be thirty cubits, and the breadth of one curtain four cubits: and the eleven curtains shall be all of one measure.\nAnd thou shalt couple five curtains by themselves, and six curtains by themselves, and shalt double the sixth curtain in the forefront of the tabernacle.\nAnd thou shalt make fifty loops on the edge of the one curtain that is outmost in the coupling, and fifty loops in the edge of the curtain which coupleth the second.\nAnd thou shalt make fifty taches of brass, and put the taches into the loops, and couple the tent together, that it may be one.\nAnd the remnant that remaineth of the curtains of the tent, the half curtain that remaineth, shall hang over the backside of the tabernacle.\nAnd a cubit on the one side, and a cubit on the other side of that which remaineth in the length of the curtains of the tent, it shall hang over the sides of the tabernacle on this side and on that side, to cover it.\nAnd thou shalt make a covering for the tent of rams' skins dyed red, and a covering above of badgers' skins.\nAnd thou shalt make boards for the tabernacle of shittim wood standing up.\nTen cubits shall be the length of a board, and a cubit and a half shall be the breadth of one board.\nTwo tenons shall there be in one board, set in order one against another: thus shalt thou make for all the boards of the tabernacle.\nAnd thou shalt make the boards for the tabernacle, twenty boards on the south side southward.\nAnd thou shalt make forty sockets of silver under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons.\nAnd for the second side of the tabernacle on the north side there shall be twenty boards:\nAnd their forty sockets of silver; two sockets under one board, and two sockets under another board.\nAnd for the sides of the tabernacle westward thou shalt make six boards.\nAnd two boards shalt thou make for the corners of the tabernacle in the two sides.\nAnd they shall be coupled together beneath, and they shall be coupled together above the head of it unto one ring: thus shall it be for them both; they shall be for the two corners.\nAnd they shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board.\nAnd thou shalt make bars of shittim wood; five for the boards of the one side of the tabernacle,\nAnd five bars for the boards of the other side of the tabernacle, and five bars for the boards of the side of the tabernacle, for the two sides westward.\nAnd the middle bar in the midst of the boards shall reach from end to end.\nAnd thou shalt overlay the boards with gold, and make their rings of gold for places for the bars: and thou shalt overlay the bars with gold.\nAnd thou shalt rear up the tabernacle according to the fashion thereof which was shewed thee in the mount.\nAnd thou shalt make a vail of blue, and purple, and scarlet, and fine twined linen of cunning work: with cherubims shall it be made:\nAnd thou shalt hang it upon four pillars of shittim wood overlaid with gold: their hooks shall be of gold, upon the four sockets of silver.\nAnd thou shalt hang up the vail under the taches, that thou mayest bring in thither within the vail the ark of the testimony: and the vail shall divide unto you between the holy place and the most holy.\nAnd thou shalt put the mercy seat upon the ark of the testimony in the most holy place.\nAnd thou shalt set the table without the vail, and the candlestick over against the table on the side of the tabernacle toward the south: and thou shalt put the table on the north side.\nAnd thou shalt make an hanging for the door of the tent, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework.\nAnd thou shalt make for the hanging five pillars of shittim wood, and overlay them with gold, and their hooks shall be of gold: and thou shalt cast five sockets of brass for them.\nAnd thou shalt make an altar of shittim wood, five cubits long, and five cubits broad; the altar shall be foursquare: and the height thereof shall be three cubits.\nAnd thou shalt make the horns of it upon the four corners thereof: his horns shall be of the same: and thou shalt overlay it with brass.\nAnd thou shalt make his pans to receive his ashes, and his shovels, and his basons, and his fleshhooks, and his firepans: all the vessels thereof thou shalt make of brass.\nAnd thou shalt make for it a grate of network of brass; and upon the net shalt thou make four brasen rings in the four corners thereof.\nAnd thou shalt put it under the compass of the altar beneath, that the net may be even to the midst of the altar.\nAnd thou shalt make staves for the altar, staves of shittim wood, and overlay them with brass.\nAnd the staves shall be put into the rings, and the staves shall be upon the two sides of the altar, to bear it.\nHollow with boards shalt thou make it: as it was shewed thee in the mount, so shall they make it.\nAnd thou shalt make the court of the tabernacle: for the south side southward there shall be hangings for the court of fine twined linen of an hundred cubits long for one side:\nAnd the twenty pillars thereof and their twenty sockets shall be of brass; the hooks of the pillars and their fillets shall be of silver.\nAnd likewise for the north side in length there shall be hangings of an hundred cubits long, and his twenty pillars and their twenty sockets of brass; the hooks of the pillars and their fillets of silver.\nAnd for the breadth of the court on the west side shall be hangings of fifty cubits: their pillars ten, and their sockets ten.\nAnd the breadth of the court on the east side eastward shall be fifty cubits.\nThe hangings of one side of the gate shall be fifteen cubits: their pillars three, and their sockets three.\nAnd on the other side shall be hangings fifteen cubits: their pillars three, and their sockets three.\nAnd for the gate of the court shall be an hanging of twenty cubits, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework: and their pillars shall be four, and their sockets four.\nAll the pillars round about the court shall be filleted with silver; their hooks shall be of silver, and their sockets of brass.\nThe length of the court shall be an hundred cubits, and the breadth fifty every where, and the height five cubits of fine twined linen, and their sockets of brass.\nAll the vessels of the tabernacle in all the service thereof, and all the pins thereof, and all the pins of the court, shall be of brass.\nAnd thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always.\nIn the tabernacle of the congregation without the vail, which is before the testimony, Aaron and his sons shall order it from evening to morning before the Lord: it shall be a statute for ever unto their generations on the behalf of the children of Israel.\nAnd take thou unto thee Aaron thy brother, and his sons with him, from among the children of Israel, that he may minister unto me in the priest's office, even Aaron, Nadab and Abihu, Eleazar and Ithamar, Aaron's sons.\nAnd thou shalt make holy garments for Aaron thy brother for glory and for beauty.\nAnd thou shalt speak unto all that are wise hearted, whom I have filled with the spirit of wisdom, that they may make Aaron's garments to consecrate him, that he may minister unto me in the priest's office.\nAnd these are the garments which they shall make; a breastplate, and an ephod, and a robe, and a broidered coat, a mitre, and a girdle: and they shall make holy garments for Aaron thy brother, and his sons, that he may minister unto me in the priest's office.\nAnd they shall take gold, and blue, and purple, and scarlet, and fine linen.\nAnd they shall make the ephod of gold, of blue, and of purple, of scarlet, and fine twined linen, with cunning work.\nIt shall have the two shoulderpieces thereof joined at the two edges thereof; and so it shall be joined together.\nAnd the curious girdle of the ephod, which is upon it, shall be of the same, according to the work thereof; even of gold, of blue, and purple, and scarlet, and fine twined linen.\nAnd thou shalt take two onyx stones, and grave on them the names of the children of Israel:\nSix of their names on one stone, and the other six names of the rest on the other stone, according to their birth.\nWith the work of an engraver in stone, like the engravings of a signet, shalt thou engrave the two stones with the names of the children of Israel: thou shalt make them to be set in ouches of gold.\nAnd thou shalt put the two stones upon the shoulders of the ephod for stones of memorial unto the children of Israel: and Aaron shall bear their names before the Lord upon his two shoulders for a memorial.\nAnd thou shalt make ouches of gold;\nAnd two chains of pure gold at the ends; of wreathen work shalt thou make them, and fasten the wreathen chains to the ouches.\nAnd thou shalt make the breastplate of judgment with cunning work; after the work of the ephod thou shalt make it; of gold, of blue, and of purple, and of scarlet, and of fine twined linen, shalt thou make it.\nFoursquare it shall be being doubled; a span shall be the length thereof, and a span shall be the breadth thereof.\nAnd thou shalt set in it settings of stones, even four rows of stones: the first row shall be a sardius, a topaz, and a carbuncle: this shall be the first row.\nAnd the second row shall be an emerald, a sapphire, and a diamond.\nAnd the third row a ligure, an agate, and an amethyst.\nAnd the fourth row a beryl, and an onyx, and a jasper: they shall be set in gold in their inclosings.\nAnd the stones shall be with the names of the children of Israel, twelve, according to their names, like the engravings of a signet; every one with his name shall they be according to the twelve tribes.\nAnd thou shalt make upon the breastplate chains at the ends of wreathen work of pure gold.\nAnd thou shalt make upon the breastplate two rings of gold, and shalt put the two rings on the two ends of the breastplate.\nAnd thou shalt put the two wreathen chains of gold in the two rings which are on the ends of the breastplate.\nAnd the other two ends of the two wreathen chains thou shalt fasten in the two ouches, and put them on the shoulderpieces of the ephod before it.\nAnd thou shalt make two rings of gold, and thou shalt put them upon the two ends of the breastplate in the border thereof, which is in the side of the ephod inward.\nAnd two other rings of gold thou shalt make, and shalt put them on the two sides of the ephod underneath, toward the forepart thereof, over against the other coupling thereof, above the curious girdle of the ephod.\nAnd they shall bind the breastplate by the rings thereof unto the rings of the ephod with a lace of blue, that it may be above the curious girdle of the ephod, and that the breastplate be not loosed from the ephod.\nAnd Aaron shall bear the names of the children of Israel in the breastplate of judgment upon his heart, when he goeth in unto the holy place, for a memorial before the Lord continually.\nAnd thou shalt put in the breastplate of judgment the Urim and the Thummim; and they shall be upon Aaron's heart, when he goeth in before the Lord: and Aaron shall bear the judgment of the children of Israel upon his heart before the Lord continually.\nAnd thou shalt make the robe of the ephod all of blue.\nAnd there shall be an hole in the top of it, in the midst thereof: it shall have a binding of woven work round about the hole of it, as it were the hole of an habergeon, that it be not rent.\nAnd beneath upon the hem of it thou shalt make pomegranates of blue, and of purple, and of scarlet, round about the hem thereof; and bells of gold between them round about:\nA golden bell and a pomegranate, a golden bell and a pomegranate, upon the hem of the robe round about.\nAnd it shall be upon Aaron to minister: and his sound shall be heard when he goeth in unto the holy place before the Lord, and when he cometh out, that he die not.\nAnd thou shalt make a plate of pure gold, and grave upon it, like the engravings of a signet, Holiness To The Lord.\nAnd thou shalt put it on a blue lace, that it may be upon the mitre; upon the forefront of the mitre it shall be.\nAnd it shall be upon Aaron's forehead, that Aaron may bear the iniquity of the holy things, which the children of Israel shall hallow in all their holy gifts; and it shall be always upon his forehead, that they may be accepted before the Lord.\nAnd thou shalt embroider the coat of fine linen, and thou shalt make the mitre of fine linen, and thou shalt make the girdle of needlework.\nAnd for Aaron's sons thou shalt make coats, and thou shalt make for them girdles, and bonnets shalt thou make for them, for glory and for beauty.\nAnd thou shalt put them upon Aaron thy brother, and his sons with him; and shalt anoint them, and consecrate them, and sanctify them, that they may minister unto me in the priest's office.\nAnd thou shalt make them linen breeches to cover their nakedness; from the loins even unto the thighs they shall reach:\nAnd they shall be upon Aaron, and upon his sons, when they come in unto the tabernacle of the congregation, or when they come near unto the altar to minister in the holy place; that they bear not iniquity, and die: it shall be a statute for ever unto him and his seed after him.\nAnd take thou unto thee Aaron thy brother, and his sons with him, from among the children of Israel, that he may minister unto me in the priest's office, even Aaron, Nadab and Abihu, Eleazar and Ithamar, Aaron's sons.\nAnd unleavened bread, and cakes unleavened tempered with oil, and wafers unleavened anointed with oil: of wheaten flour shalt thou make them.\nAnd thou shalt put them into one basket, and bring them in the basket, with the bullock and the two rams.\nAnd Aaron and his sons thou shalt bring unto the door of the tabernacle of the congregation, and shalt wash them with water.\nAnd thou shalt take the garments, and put upon Aaron the coat, and the robe of the ephod, and the ephod, and the breastplate, and gird him with the curious girdle of the ephod:\nAnd thou shalt put the mitre upon his head, and put the holy crown upon the mitre.\nThen shalt thou take the anointing oil, and pour it upon his head, and anoint him.\nAnd thou shalt bring his sons, and put coats upon them.\nAnd thou shalt gird them with girdles, Aaron and his sons, and put the bonnets on them: and the priest's office shall be theirs for a perpetual statute: and thou shalt consecrate Aaron and his sons.\nAnd thou shalt cause a bullock to be brought before the tabernacle of the congregation: and Aaron and his sons shall put their hands upon the head of the bullock.\nAnd thou shalt kill the bullock before the Lord, by the door of the tabernacle of the congregation.\nAnd thou shalt take of the blood of the bullock, and put it upon the horns of the altar with thy finger, and pour all the blood beside the bottom of the altar.\nAnd thou shalt take all the fat that covereth the inwards, and the caul that is above the liver, and the two kidneys, and the fat that is upon them, and burn them upon the altar.\nBut the flesh of the bullock, and his skin, and his dung, shalt thou burn with fire without the camp: it is a sin offering.\nThou shalt also take one ram; and Aaron and his sons shall put their hands upon the head of the ram.\nAnd thou shalt slay the ram, and thou shalt take his blood, and sprinkle it round about upon the altar.\nAnd thou shalt cut the ram in pieces, and wash the inwards of him, and his legs, and put them unto his pieces, and unto his head.\nAnd thou shalt burn the whole ram upon the altar: it is a burnt offering unto the Lord: it is a sweet savour, an offering made by fire unto the Lord.\nAnd thou shalt take the other ram; and Aaron and his sons shall put their hands upon the head of the ram.\nThen shalt thou kill the ram, and take of his blood, and put it upon the tip of the right ear of Aaron, and upon the tip of the right ear of his sons, and upon the thumb of their right hand, and upon the great toe of their right foot, and sprinkle the blood upon the altar round about.\nAnd thou shalt take of the blood that is upon the altar, and of the anointing oil, and sprinkle it upon Aaron, and upon his garments, and upon his sons, and upon the garments of his sons with him: and he shall be hallowed, and his garments, and his sons, and his sons' garments with him.\nAlso thou shalt take of the ram the fat and the rump, and the fat that covereth the inwards, and the caul above the liver, and the two kidneys, and the fat that is upon them, and the right shoulder; for it is a ram of consecration:\nAnd one loaf of bread, and one cake of oiled bread, and one wafer out of the basket of the unleavened bread that is before the Lord:\nAnd thou shalt put all in the hands of Aaron, and in the hands of his sons; and shalt wave them for a wave offering before the Lord.\nAnd thou shalt receive them of their hands, and burn them upon the altar for a burnt offering, for a sweet savour before the Lord: it is an offering made by fire unto the Lord.\nAnd thou shalt take the breast of the ram of Aaron's consecration, and wave it for a wave offering before the Lord: and it shall be thy part.\nAnd thou shalt sanctify the breast of the wave offering, and the shoulder of the heave offering, which is waved, and which is heaved up, of the ram of the consecration, even of that which is for Aaron, and of that which is for his sons:\nAnd it shall be Aaron's and his sons' by a statute for ever from the children of Israel: for it is an heave offering: and it shall be an heave offering from the children of Israel of the sacrifice of their peace offerings, even their heave offering unto the Lord.\nAnd the holy garments of Aaron shall be his sons' after him, to be anointed therein, and to be consecrated in them.\nAnd that son that is priest in his stead shall put them on seven days, when he cometh into the tabernacle of the congregation to minister in the holy place.\nAnd thou shalt take the ram of the consecration, and seethe his flesh in the holy place.\nAnd Aaron and his sons shall eat the flesh of the ram, and the bread that is in the basket by the door of the tabernacle of the congregation.\nAnd they shall eat those things wherewith the atonement was made, to consecrate and to sanctify them: but a stranger shall not eat thereof, because they are holy.\nAnd if ought of the flesh of the consecrations, or of the bread, remain unto the morning, then thou shalt burn the remainder with fire: it shall not be eaten, because it is holy.\nAnd thus shalt thou do unto Aaron, and to his sons, according to all things which I have commanded thee: seven days shalt thou consecrate them.\nAnd thou shalt offer every day a bullock for a sin offering for atonement: and thou shalt cleanse the altar, when thou hast made an atonement for it, and thou shalt anoint it, to sanctify it.\nSeven days thou shalt make an atonement for the altar, and sanctify it; and it shall be an altar most holy: whatsoever toucheth the altar shall be holy.\nNow this is that which thou shalt offer upon the altar; two lambs of the first year day by day continually.\nThe one lamb thou shalt offer in the morning; and the other lamb thou shalt offer at even:\nAnd with the one lamb a tenth deal of flour mingled with the fourth part of an hin of beaten oil; and the fourth part of an hin of wine for a drink offering.\nAnd the other lamb thou shalt offer at even, and shalt do thereto according to the meat offering of the morning, and according to the drink offering thereof, for a sweet savour, an offering made by fire unto the Lord.\nThis shall be a continual burnt offering throughout your generations at the door of the tabernacle of the congregation before the Lord: where I will meet you, to speak there unto thee.\nAnd there I will meet with the children of Israel, and the tabernacle shall be sanctified by my glory.\nAnd I will sanctify the tabernacle of the congregation, and the altar: I will sanctify also both Aaron and his sons, to minister to me in the priest's office.\nAnd I will dwell among the children of Israel, and will be their God.\nAnd they shall know that I am the Lord their God, that brought them forth out of the land of Egypt, that I may dwell among them: I am the Lord their God.\nAnd thou shalt make an altar to burn incense upon: of shittim wood shalt thou make it.\nA cubit shall be the length thereof, and a cubit the breadth thereof; foursquare shall it be: and two cubits shall be the height thereof: the horns thereof shall be of the same.\nAnd thou shalt overlay it with pure gold, the top thereof, and the sides thereof round about, and the horns thereof; and thou shalt make unto it a crown of gold round about.\nAnd two golden rings shalt thou make to it under the crown of it, by the two corners thereof, upon the two sides of it shalt thou make it; and they shall be for places for the staves to bear it withal.\nAnd thou shalt make the staves of shittim wood, and overlay them with gold.\nAnd thou shalt put it before the vail that is by the ark of the testimony, before the mercy seat that is over the testimony, where I will meet with thee.\nAnd Aaron shall burn thereon sweet incense every morning: when he dresseth the lamps, he shall burn incense upon it.\nAnd when Aaron lighteth the lamps at even, he shall burn incense upon it, a perpetual incense before the Lord throughout your generations.\nYe shall offer no strange incense thereon, nor burnt sacrifice, nor meat offering; neither shall ye pour drink offering thereon.\nAnd Aaron shall make an atonement upon the horns of it once in a year with the blood of the sin offering of atonements: once in the year shall he make atonement upon it throughout your generations: it is most holy unto the Lord.\nAnd the Lord spake unto Moses, saying,\nWhen thou takest the sum of the children of Israel after their number, then shall they give every man a ransom for his soul unto the Lord, when thou numberest them; that there be no plague among them, when thou numberest them.\nThis they shall give, every one that passeth among them that are numbered, half a shekel after the shekel of the sanctuary: (a shekel is twenty gerahs:) an half shekel shall be the offering of the Lord.\nEvery one that passeth among them that are numbered, from twenty years old and above, shall give an offering unto the Lord.\nThe rich shall not give more, and the poor shall not give less than half a shekel, when they give an offering unto the Lord, to make an atonement for your souls.\nAnd thou shalt take the atonement money of the children of Israel, and shalt appoint it for the service of the tabernacle of the congregation; that it may be a memorial unto the children of Israel before the Lord, to make an atonement for your souls.\nAnd the Lord spake unto Moses, saying,\nThou shalt also make a laver of brass, and his foot also of brass, to wash withal: and thou shalt put it between the tabernacle of the congregation and the altar, and thou shalt put water therein.\nFor Aaron and his sons shall wash their hands and their feet thereat:\nWhen they go into the tabernacle of the congregation, they shall wash with water, that they die not; or when they come near to the altar to minister, to burn offering made by fire unto the Lord:\nSo they shall wash their hands and their feet, that they die not: and it shall be a statute for ever to them, even to him and to his seed throughout their generations.\nMoreover the Lord spake unto Moses, saying,\nTake thou also unto thee principal spices, of pure myrrh five hundred shekels, and of sweet cinnamon half so much, even two hundred and fifty shekels, and of sweet calamus two hundred and fifty shekels,\nAnd of cassia five hundred shekels, after the shekel of the sanctuary, and of oil olive an hin:\nAnd thou shalt make it an oil of holy ointment, an ointment compound after the art of the apothecary: it shall be an holy anointing oil.\nAnd thou shalt anoint the tabernacle of the congregation therewith, and the ark of the testimony,\nAnd the table and all his vessels, and the candlestick and his vessels, and the altar of incense,\nAnd the altar of burnt offering with all his vessels, and the laver and his foot.\nAnd thou shalt sanctify them, that they may be most holy: whatsoever toucheth them shall be holy.\nAnd thou shalt anoint Aaron and his sons, and consecrate them, that they may minister unto me in the priest's office.\nAnd thou shalt speak unto the children of Israel, saying, This shall be an holy anointing oil unto me throughout your generations.\nUpon man's flesh shall it not be poured, neither shall ye make any other like it, after the composition of it: it is holy, and it shall be holy unto you.\nWhosoever compoundeth any like it, or whosoever putteth any of it upon a stranger, shall even be cut off from his people.\nAnd the Lord said unto Moses, Take unto thee sweet spices, stacte, and onycha, and galbanum; these sweet spices with pure frankincense: of each shall there be a like weight:\nAnd thou shalt make it a perfume, a confection after the art of the apothecary, tempered together, pure and holy:\nAnd thou shalt beat some of it very small, and put of it before the testimony in the tabernacle of the congregation, where I will meet with thee: it shall be unto you most holy.\nAnd as for the perfume which thou shalt make, ye shall not make to yourselves according to the composition thereof: it shall be unto thee holy for the Lord.\nWhosoever shall make like unto that, to smell thereto, shall even be cut off from his people.\nAnd the Lord spake unto Moses, saying,\nSee, I have called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah:\nAnd I have filled him with the spirit of God, in wisdom, and in understanding, and in knowledge, and in all manner of workmanship,\nTo devise cunning works, to work in gold, and in silver, and in brass,\nAnd in cutting of stones, to set them, and in carving of timber, to work in all manner of workmanship.\nAnd I, behold, I have given with him Aholiab, the son of Ahisamach, of the tribe of Dan: and in the hearts of all that are wise hearted I have put wisdom, that they may make all that I have commanded thee;\nThe tabernacle of the congregation, and the ark of the testimony, and the mercy seat that is thereupon, and all the furniture of the tabernacle,\nAnd the table and his furniture, and the pure candlestick with all his furniture, and the altar of incense,\nAnd the altar of burnt offering with all his furniture, and the laver and his foot,\nAnd the cloths of service, and the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office,\nAnd the anointing oil, and sweet incense for the holy place: according to all that I have commanded thee shall they do.\nAnd the Lord spake unto Moses, saying,\nSpeak thou also unto the children of Israel, saying, Verily my sabbaths ye shall keep: for it is a sign between me and you throughout your generations; that ye may know that I am the Lord that doth sanctify you.\nYe shall keep the sabbath therefore; for it is holy unto you: every one that defileth it shall surely be put to death: for whosoever doeth any work therein, that soul shall be cut off from among his people.\nSix days may work be done; but in the seventh is the sabbath of rest, holy to the Lord: whosoever doeth any work in the sabbath day, he shall surely be put to death.\nWherefore the children of Israel shall keep the sabbath, to observe the sabbath throughout their generations, for a perpetual covenant.\nIt is a sign between me and the children of Israel for ever: for in six days the Lord made heaven and earth, and on the seventh day he rested, and was refreshed.\nAnd he gave unto Moses, when he had made an end of communing with him upon mount Sinai, two tables of testimony, tables of stone, written with the finger of God.\nAnd when the people saw that Moses delayed to come down out of the mount, the people gathered themselves together unto Aaron, and said unto him, Up, make us gods, which shall go before us; for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him.\nAnd Aaron said unto them, Break off the golden earrings, which are in the ears of your wives, of your sons, and of your daughters, and bring them unto me.\nAnd all the people brake off the golden earrings which were in their ears, and brought them unto Aaron.\nAnd he received them at their hand, and fashioned it with a graving tool, after he had made it a molten calf: and they said, These be thy gods, O Israel, which brought thee up out of the land of Egypt.\nAnd when Aaron saw it, he built an altar before it; and Aaron made proclamation, and said, To morrow is a feast to the Lord.\nAnd they rose up early on the morrow, and offered burnt offerings, and brought peace offerings; and the people sat down to eat and to drink, and rose up to play.\nAnd the Lord said unto Moses, Go, get thee down; for thy people, which thou broughtest out of the land of Egypt, have corrupted themselves:\nThey have turned aside quickly out of the way which I commanded them: they have made them a molten calf, and have worshipped it, and have sacrificed thereunto, and said, These be thy gods, O Israel, which have brought thee up out of the land of Egypt.\nAnd the Lord said unto Moses, I have seen this people, and, behold, it is a stiffnecked people:\nNow therefore let me alone, that my wrath may wax hot against them, and that I may consume them: and I will make of thee a great nation.\nAnd Moses besought the Lord his God, and said, Lord, why doth thy wrath wax hot against thy people, which thou hast brought forth out of the land of Egypt with great power, and with a mighty hand?\nWherefore should the Egyptians speak, and say, For mischief did he bring them out, to slay them in the mountains, and to consume them from the face of the earth? Turn from thy fierce wrath, and repent of this evil against thy people.\nRemember Abraham, Isaac, and Israel, thy servants, to whom thou swarest by thine own self, and saidst unto them, I will multiply your seed as the stars of heaven, and all this land that I have spoken of will I give unto your seed, and they shall inherit it for ever.\nAnd the Lord repented of the evil which he thought to do unto his people.\nAnd Moses turned, and went down from the mount, and the two tables of the testimony were in his hand: the tables were written on both their sides; on the one side and on the other were they written.\nAnd the tables were the work of God, and the writing was the writing of God, graven upon the tables.\nAnd when Joshua heard the noise of the people as they shouted, he said unto Moses, There is a noise of war in the camp.\nAnd he said, It is not the voice of them that shout for mastery, neither is it the voice of them that cry for being overcome: but the noise of them that sing do I hear.\nAnd it came to pass, as soon as he came nigh unto the camp, that he saw the calf, and the dancing: and Moses' anger waxed hot, and he cast the tables out of his hands, and brake them beneath the mount.\nAnd he took the calf which they had made, and burnt it in the fire, and ground it to powder, and strawed it upon the water, and made the children of Israel drink of it.\nAnd Moses said unto Aaron, What did this people unto thee, that thou hast brought so great a sin upon them?\nAnd Aaron said, Let not the anger of my lord wax hot: thou knowest the people, that they are set on mischief.\nFor they said unto me, Make us gods, which shall go before us: for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him.\nAnd I said unto them, Whosoever hath any gold, let them break it off. So they gave it me: then I cast it into the fire, and there came out this calf.\nAnd when Moses saw that the people were naked; (for Aaron had made them naked unto their shame among their enemies:)\nThen Moses stood in the gate of the camp, and said, Who is on the Lord's side? let him come unto me. And all the sons of Levi gathered themselves together unto him.\nAnd he said unto them, Thus saith the Lord God of Israel, Put every man his sword by his side, and go in and out from gate to gate throughout the camp, and slay every man his brother, and every man his companion, and every man his neighbour.\nAnd the children of Levi did according to the word of Moses: and there fell of the people that day about three thousand men.\nFor Moses had said, Consecrate yourselves today to the Lord, even every man upon his son, and upon his brother; that he may bestow upon you a blessing this day.\nAnd it came to pass on the morrow, that Moses said unto the people, Ye have sinned a great sin: and now I will go up unto the Lord; peradventure I shall make an atonement for your sin.\nAnd Moses returned unto the Lord, and said, Oh, this people have sinned a great sin, and have made them gods of gold.\nYet now, if thou wilt forgive their sin--; and if not, blot me, I pray thee, out of thy book which thou hast written.\nAnd the Lord said unto Moses, Whosoever hath sinned against me, him will I blot out of my book.\nTherefore now go, lead the people unto the place of which I have spoken unto thee: behold, mine Angel shall go before thee: nevertheless in the day when I visit I will visit their sin upon them.\nAnd the Lord plagued the people, because they made the calf, which Aaron made.\nAnd the Lord said unto Moses, Depart, and go up hence, thou and the people which thou hast brought up out of the land of Egypt, unto the land which I sware unto Abraham, to Isaac, and to Jacob, saying, Unto thy seed will I give it:\nAnd I will send an angel before thee; and I will drive out the Canaanite, the Amorite, and the Hittite, and the Perizzite, the Hivite, and the Jebusite:\nUnto a land flowing with milk and honey: for I will not go up in the midst of thee; for thou art a stiffnecked people: lest I consume thee in the way.\nAnd when the people heard these evil tidings, they mourned: and no man did put on him his ornaments.\nFor the Lord had said unto Moses, Say unto the children of Israel, Ye are a stiffnecked people: I will come up into the midst of thee in a moment, and consume thee: therefore now put off thy ornaments from thee, that I may know what to do unto thee.\nAnd the children of Israel stripped themselves of their ornaments by the mount Horeb.\nAnd Moses took the tabernacle, and pitched it without the camp, afar off from the camp, and called it the Tabernacle of the congregation. And it came to pass, that every one which sought the Lord went out unto the tabernacle of the congregation, which was without the camp.\nAnd it came to pass, when Moses went out unto the tabernacle, that all the people rose up, and stood every man at his tent door, and looked after Moses, until he was gone into the tabernacle.\nAnd it came to pass, as Moses entered into the tabernacle, the cloudy pillar descended, and stood at the door of the tabernacle, and the Lord talked with Moses.\nAnd all the people saw the cloudy pillar stand at the tabernacle door: and all the people rose up and worshipped, every man in his tent door.\nAnd the Lord spake unto Moses face to face, as a man speaketh unto his friend. And he turned again into the camp: but his servant Joshua, the son of Nun, a young man, departed not out of the tabernacle.\nAnd Moses said unto the Lord, See, thou sayest unto me, Bring up this people: and thou hast not let me know whom thou wilt send with me. Yet thou hast said, I know thee by name, and thou hast also found grace in my sight.\nNow therefore, I pray thee, if I have found grace in thy sight, shew me now thy way, that I may know thee, that I may find grace in thy sight: and consider that this nation is thy people.\nAnd he said, My presence shall go with thee, and I will give thee rest.\nAnd he said unto him, If thy presence go not with me, carry us not up hence.\nFor wherein shall it be known here that I and thy people have found grace in thy sight? is it not in that thou goest with us? so shall we be separated, I and thy people, from all the people that are upon the face of the earth.\nAnd the Lord said unto Moses, I will do this thing also that thou hast spoken: for thou hast found grace in my sight, and I know thee by name.\nAnd he said, I beseech thee, shew me thy glory.\nAnd he said, I will make all my goodness pass before thee, and I will proclaim the name of the Lord before thee; and will be gracious to whom I will be gracious, and will shew mercy on whom I will shew mercy.\nAnd he said, Thou canst not see my face: for there shall no man see me, and live.\nAnd the Lord said, Behold, there is a place by me, and thou shalt stand upon a rock:\nAnd it shall come to pass, while my glory passeth by, that I will put thee in a clift of the rock, and will cover thee with my hand while I pass by:\nAnd I will take away mine hand, and thou shalt see my back parts: but my face shall not be seen.\nAnd the Lord said unto Moses, Hew thee two tables of stone like unto the first: and I will write upon these tables the words that were in the first tables, which thou brakest.\nAnd be ready in the morning, and come up in the morning unto mount Sinai, and present thyself there to me in the top of the mount.\nAnd no man shall come up with thee, neither let any man be seen throughout all the mount; neither let the flocks nor herds feed before that mount.\nAnd he hewed two tables of stone like unto the first; and Moses rose up early in the morning, and went up unto mount Sinai, as the Lord had commanded him, and took in his hand the two tables of stone.\nAnd the Lord descended in the cloud, and stood with him there, and proclaimed the name of the Lord.\nAnd the Lord passed by before him, and proclaimed, The Lord, The Lord God, merciful and gracious, longsuffering, and abundant in goodness and truth,\nKeeping mercy for thousands, forgiving iniquity and transgression and sin, and that will by no means clear the guilty; visiting the iniquity of the fathers upon the children, and upon the children's children, unto the third and to the fourth generation.\nAnd Moses made haste, and bowed his head toward the earth, and worshipped.\nAnd he said, If now I have found grace in thy sight, O Lord, let my Lord, I pray thee, go among us; for it is a stiffnecked people; and pardon our iniquity and our sin, and take us for thine inheritance.\nAnd he said, Behold, I make a covenant: before all thy people I will do marvels, such as have not been done in all the earth, nor in any nation: and all the people among which thou art shall see the work of the Lord: for it is a terrible thing that I will do with thee.\nObserve thou that which I command thee this day: behold, I drive out before thee the Amorite, and the Canaanite, and the Hittite, and the Perizzite, and the Hivite, and the Jebusite.\nTake heed to thyself, lest thou make a covenant with the inhabitants of the land whither thou goest, lest it be for a snare in the midst of thee:\nBut ye shall destroy their altars, break their images, and cut down their groves:\nFor thou shalt worship no other god: for the Lord, whose name is Jealous, is a jealous God:\nLest thou make a covenant with the inhabitants of the land, and they go a whoring after their gods, and do sacrifice unto their gods, and one call thee, and thou eat of his sacrifice;\nAnd thou take of their daughters unto thy sons, and their daughters go a whoring after their gods, and make thy sons go a whoring after their gods.\nThou shalt make thee no molten gods.\nThe feast of unleavened bread shalt thou keep. Seven days thou shalt eat unleavened bread, as I commanded thee, in the time of the month Abib: for in the month Abib thou camest out from Egypt.\nAll that openeth the matrix is mine; and every firstling among thy cattle, whether ox or sheep, that is male.\nBut the firstling of an ass thou shalt redeem with a lamb: and if thou redeem him not, then shalt thou break his neck. All the firstborn of thy sons thou shalt redeem. And none shall appear before me empty.\nSix days thou shalt work, but on the seventh day thou shalt rest: in earing time and in harvest thou shalt rest.\nAnd thou shalt observe the feast of weeks, of the firstfruits of wheat harvest, and the feast of ingathering at the year's end.\nThrice in the year shall all your menchildren appear before the LordGod, the God of Israel.\nFor I will cast out the nations before thee, and enlarge thy borders: neither shall any man desire thy land, when thou shalt go up to appear before the Lord thy God thrice in the year.\nThou shalt not offer the blood of my sacrifice with leaven; neither shall the sacrifice of the feast of the passover be left unto the morning.\nThe first of the firstfruits of thy land thou shalt bring unto the house of the Lord thy God. Thou shalt not seethe a kid in his mother's milk.\nAnd the Lord said unto Moses, Write thou these words: for after the tenor of these words I have made a covenant with thee and with Israel.\nAnd he was there with the Lord forty days and forty nights; he did neither eat bread, nor drink water. And he wrote upon the tables the words of the covenant, the ten commandments.\nAnd it came to pass, when Moses came down from mount Sinai with the two tables of testimony in Moses' hand, when he came down from the mount, that Moses wist not that the skin of his face shone while he talked with him.\nAnd when Aaron and all the children of Israel saw Moses, behold, the skin of his face shone; and they were afraid to come nigh him.\nAnd Moses called unto them; and Aaron and all the rulers of the congregation returned unto him: and Moses talked with them.\nAnd afterward all the children of Israel came nigh: and he gave them in commandment all that the Lord had spoken with him in mount Sinai.\nAnd till Moses had done speaking with them, he put a vail on his face.\nBut when Moses went in before the Lord to speak with him, he took the vail off, until he came out. And he came out, and spake unto the children of Israel that which he was commanded.\nAnd the children of Israel saw the face of Moses, that the skin of Moses' face shone: and Moses put the vail upon his face again, until he went in to speak with him.\nAnd Moses gathered all the congregation of the children of Israel together, and said unto them, These are the words which the Lord hath commanded, that ye should do them.\nSix days shall work be done, but on the seventh day there shall be to you an holy day, a sabbath of rest to the Lord: whosoever doeth work therein shall be put to death.\nYe shall kindle no fire throughout your habitations upon the sabbath day.\nAnd Moses spake unto all the congregation of the children of Israel, saying, This is the thing which the Lord commanded, saying,\nTake ye from among you an offering unto the Lord: whosoever is of a willing heart, let him bring it, an offering of the Lord; gold, and silver, and brass,\nAnd blue, and purple, and scarlet, and fine linen, and goats' hair,\nAnd rams' skins dyed red, and badgers' skins, and shittim wood,\nAnd oil for the light, and spices for anointing oil, and for the sweet incense,\nAnd onyx stones, and stones to be set for the ephod, and for the breastplate.\nAnd every wise hearted among you shall come, and make all that the Lord hath commanded;\nThe tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets,\nThe ark, and the staves thereof, with the mercy seat, and the vail of the covering,\nThe table, and his staves, and all his vessels, and the shewbread,\nThe candlestick also for the light, and his furniture, and his lamps, with the oil for the light,\nAnd the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle,\nThe altar of burnt offering, with his brasen grate, his staves, and all his vessels, the laver and his foot,\nThe hangings of the court, his pillars, and their sockets, and the hanging for the door of the court,\nThe pins of the tabernacle, and the pins of the court, and their cords,\nThe cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office.\nAnd all the congregation of the children of Israel departed from the presence of Moses.\nAnd they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the Lord's offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments.\nAnd they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered offered an offering of gold unto the Lord.\nAnd every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats' hair, and red skins of rams, and badgers' skins, brought them.\nEvery one that did offer an offering of silver and brass brought the Lord's offering: and every man, with whom was found shittim wood for any work of the service, brought it.\nAnd all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen.\nAnd all the women whose heart stirred them up in wisdom spun goats' hair.\nAnd the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate;\nAnd spice, and oil for the light, and for the anointing oil, and for the sweet incense.\nThe children of Israel brought a willing offering unto the Lord, every man and woman, whose heart made them willing to bring for all manner of work, which the Lord had commanded to be made by the hand of Moses.\nAnd Moses said unto the children of Israel, See, the Lord hath called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah;\nAnd he hath filled him with the spirit of God, in wisdom, in understanding, and in knowledge, and in all manner of workmanship;\nAnd to devise curious works, to work in gold, and in silver, and in brass,\nAnd in the cutting of stones, to set them, and in carving of wood, to make any manner of cunning work.\nAnd he hath put in his heart that he may teach, both he, and Aholiab, the son of Ahisamach, of the tribe of Dan.\nThem hath he filled with wisdom of heart, to work all manner of work, of the engraver, and of the cunning workman, and of the embroiderer, in blue, and in purple, in scarlet, and in fine linen, and of the weaver, even of them that do any work, and of those that devise cunning work.\nThen wrought Bezaleel and Aholiab, and every wise hearted man, in whom the Lord put wisdom and understanding to know how to work all manner of work for the service of the sanctuary, according to all that the Lord had commanded.\nAnd Moses called Bezaleel and Aholiab, and every wise hearted man, in whose heart the Lord had put wisdom, even every one whose heart stirred him up to come unto the work to do it:\nAnd they received of Moses all the offering, which the children of Israel had brought for the work of the service of the sanctuary, to make it withal. And they brought yet unto him free offerings every morning.\nAnd all the wise men, that wrought all the work of the sanctuary, came every man from his work which they made;\nAnd they spake unto Moses, saying, The people bring much more than enough for the service of the work, which the Lord commanded to make.\nAnd Moses gave commandment, and they caused it to be proclaimed throughout the camp, saying, Let neither man nor woman make any more work for the offering of the sanctuary. So the people were restrained from bringing.\nFor the stuff they had was sufficient for all the work to make it, and too much.\nAnd every wise hearted man among them that wrought the work of the tabernacle made ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubims of cunning work made he them.\nThe length of one curtain was twenty and eight cubits, and the breadth of one curtain four cubits: the curtains were all of one size.\nAnd he coupled the five curtains one unto another: and the other five curtains he coupled one unto another.\nAnd he made loops of blue on the edge of one curtain from the selvedge in the coupling: likewise he made in the uttermost side of another curtain, in the coupling of the second.\nFifty loops made he in one curtain, and fifty loops made he in the edge of the curtain which was in the coupling of the second: the loops held one curtain to another.\nAnd he made fifty taches of gold, and coupled the curtains one unto another with the taches: so it became one tabernacle.\nAnd he made curtains of goats' hair for the tent over the tabernacle: eleven curtains he made them.\nThe length of one curtain was thirty cubits, and four cubits was the breadth of one curtain: the eleven curtains were of one size.\nAnd he coupled five curtains by themselves, and six curtains by themselves.\nAnd he made fifty loops upon the uttermost edge of the curtain in the coupling, and fifty loops made he upon the edge of the curtain which coupleth the second.\nAnd he made fifty taches of brass to couple the tent together, that it might be one.\nAnd he made a covering for the tent of rams' skins dyed red, and a covering of badgers' skins above that.\nAnd he made boards for the tabernacle of shittim wood, standing up.\nThe length of a board was ten cubits, and the breadth of a board one cubit and a half.\nOne board had two tenons, equally distant one from another: thus did he make for all the boards of the tabernacle.\nAnd he made boards for the tabernacle; twenty boards for the south side southward:\nAnd forty sockets of silver he made under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons.\nAnd for the other side of the tabernacle, which is toward the north corner, he made twenty boards,\nAnd their forty sockets of silver; two sockets under one board, and two sockets under another board.\nAnd for the sides of the tabernacle westward he made six boards.\nAnd two boards made he for the corners of the tabernacle in the two sides.\nAnd they were coupled beneath, and coupled together at the head thereof, to one ring: thus he did to both of them in both the corners.\nAnd there were eight boards; and their sockets were sixteen sockets of silver, under every board two sockets.\nAnd he made bars of shittim wood; five for the boards of the one side of the tabernacle,\nAnd five bars for the boards of the other side of the tabernacle, and five bars for the boards of the tabernacle for the sides westward.\nAnd he made the middle bar to shoot through the boards from the one end to the other.\nAnd he overlaid the boards with gold, and made their rings of gold to be places for the bars, and overlaid the bars with gold.\nAnd he made a vail of blue, and purple, and scarlet, and fine twined linen: with cherubims made he it of cunning work.\nAnd he made thereunto four pillars of shittim wood, and overlaid them with gold: their hooks were of gold; and he cast for them four sockets of silver.\nAnd he made an hanging for the tabernacle door of blue, and purple, and scarlet, and fine twined linen, of needlework;\nAnd the five pillars of it with their hooks: and he overlaid their chapiters and their fillets with gold: but their five sockets were of brass.\nAnd Bezaleel made the ark of shittim wood: two cubits and a half was the length of it, and a cubit and a half the breadth of it, and a cubit and a half the height of it:\nAnd he overlaid it with pure gold within and without, and made a crown of gold to it round about.\nAnd he cast for it four rings of gold, to be set by the four corners of it; even two rings upon the one side of it, and two rings upon the other side of it.\nAnd he made staves of shittim wood, and overlaid them with gold.\nAnd he put the staves into the rings by the sides of the ark, to bear the ark.\nAnd he made the mercy seat of pure gold: two cubits and a half was the length thereof, and one cubit and a half the breadth thereof.\nAnd he made two cherubims of gold, beaten out of one piece made he them, on the two ends of the mercy seat;\nOne cherub on the end on this side, and another cherub on the other end on that side: out of the mercy seat made he the cherubims on the two ends thereof.\nAnd the cherubims spread out their wings on high, and covered with their wings over the mercy seat, with their faces one to another; even to the mercy seatward were the faces of the cherubims.\nAnd he made the table of shittim wood: two cubits was the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof:\nAnd he overlaid it with pure gold, and made thereunto a crown of gold round about.\nAlso he made thereunto a border of an handbreadth round about; and made a crown of gold for the border thereof round about.\nAnd he cast for it four rings of gold, and put the rings upon the four corners that were in the four feet thereof.\nOver against the border were the rings, the places for the staves to bear the table.\nAnd he made the staves of shittim wood, and overlaid them with gold, to bear the table.\nAnd he made the vessels which were upon the table, his dishes, and his spoons, and his bowls, and his covers to cover withal, of pure gold.\nAnd he made the candlestick of pure gold: of beaten work made he the candlestick; his shaft, and his branch, his bowls, his knops, and his flowers, were of the same:\nAnd six branches going out of the sides thereof; three branches of the candlestick out of the one side thereof, and three branches of the candlestick out of the other side thereof:\nThree bowls made after the fashion of almonds in one branch, a knop and a flower; and three bowls made like almonds in another branch, a knop and a flower: so throughout the six branches going out of the candlestick.\nAnd in the candlestick were four bowls made like almonds, his knops, and his flowers:\nAnd a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches going out of it.\nTheir knops and their branches were of the same: all of it was one beaten work of pure gold.\nAnd he made his seven lamps, and his snuffers, and his snuffdishes, of pure gold.\nOf a talent of pure gold made he it, and all the vessels thereof.\nAnd he made the incense altar of shittim wood: the length of it was a cubit, and the breadth of it a cubit; it was foursquare; and two cubits was the height of it; the horns thereof were of the same.\nAnd he overlaid it with pure gold, both the top of it, and the sides thereof round about, and the horns of it: also he made unto it a crown of gold round about.\nAnd he made two rings of gold for it under the crown thereof, by the two corners of it, upon the two sides thereof, to be places for the staves to bear it withal.\nAnd he made the staves of shittim wood, and overlaid them with gold.\nAnd he made the altar of burnt offering of shittim wood: five cubits was the length thereof, and five cubits the breadth thereof; it was foursquare; and three cubits the height thereof.\nAnd he made the horns thereof on the four corners of it; the horns thereof were of the same: and he overlaid it with brass.\nAnd he made all the vessels of the altar, the pots, and the shovels, and the basons, and the fleshhooks, and the firepans: all the vessels thereof made he of brass.\nAnd he made for the altar a brasen grate of network under the compass thereof beneath unto the midst of it.\nAnd he cast four rings for the four ends of the grate of brass, to be places for the staves.\nAnd he made the staves of shittim wood, and overlaid them with brass.\nAnd he put the staves into the rings on the sides of the altar, to bear it withal; he made the altar hollow with boards.\nAnd he made the laver of brass, and the foot of it of brass, of the lookingglasses of the women assembling, which assembled at the door of the tabernacle of the congregation.\nAnd he made the court: on the south side southward the hangings of the court were of fine twined linen, an hundred cubits:\nTheir pillars were twenty, and their brasen sockets twenty; the hooks of the pillars and their fillets were of silver.\nAnd for the north side the hangings were an hundred cubits, their pillars were twenty, and their sockets of brass twenty; the hooks of the pillars and their fillets of silver.\nAnd for the west side were hangings of fifty cubits, their pillars ten, and their sockets ten; the hooks of the pillars and their fillets of silver.\nAnd for the east side eastward fifty cubits.\nThe hangings of the one side of the gate were fifteen cubits; their pillars three, and their sockets three.\nAnd for the other side of the court gate, on this hand and that hand, were hangings of fifteen cubits; their pillars three, and their sockets three.\nAll the hangings of the court round about were of fine twined linen.\nAnd the sockets for the pillars were of brass; the hooks of the pillars and their fillets of silver; and the overlaying of their chapiters of silver; and all the pillars of the court were filleted with silver.\nAnd the hanging for the gate of the court was needlework, of blue, and purple, and scarlet, and fine twined linen: and twenty cubits was the length, and the height in the breadth was five cubits, answerable to the hangings of the court.\nAnd their pillars were four, and their sockets of brass four; their hooks of silver, and the overlaying of their chapiters and their fillets of silver.\nAnd all the pins of the tabernacle, and of the court round about, were of brass.\nThis is the sum of the tabernacle, even of the tabernacle of testimony, as it was counted, according to the commandment of Moses, for the service of the Levites, by the hand of Ithamar, son to Aaron the priest.\nAnd Bezaleel the son Uri, the son of Hur, of the tribe of Judah, made all that the Lord commanded Moses.\nAnd with him was Aholiab, son of Ahisamach, of the tribe of Dan, an engraver, and a cunning workman, and an embroiderer in blue, and in purple, and in scarlet, and fine linen.\nAll the gold that was occupied for the work in all the work of the holy place, even the gold of the offering, was twenty and nine talents, and seven hundred and thirty shekels, after the shekel of the sanctuary.\nAnd the silver of them that were numbered of the congregation was an hundred talents, and a thousand seven hundred and threescore and fifteen shekels, after the shekel of the sanctuary:\nA bekah for every man, that is, half a shekel, after the shekel of the sanctuary, for every one that went to be numbered, from twenty years old and upward, for six hundred thousand and three thousand and five hundred and fifty men.\nAnd of the hundred talents of silver were cast the sockets of the sanctuary, and the sockets of the vail; an hundred sockets of the hundred talents, a talent for a socket.\nAnd of the thousand seven hundred seventy and five shekels he made hooks for the pillars, and overlaid their chapiters, and filleted them.\nAnd the brass of the offering was seventy talents, and two thousand and four hundred shekels.\nAnd therewith he made the sockets to the door of the tabernacle of the congregation, and the brasen altar, and the brasen grate for it, and all the vessels of the altar,\nAnd the sockets of the court round about, and the sockets of the court gate, and all the pins of the tabernacle, and all the pins of the court round about.\nAnd of the blue, and purple, and scarlet, they made cloths of service, to do service in the holy place, and made the holy garments for Aaron; as the Lord commanded Moses.\nAnd he made the ephod of gold, blue, and purple, and scarlet, and fine twined linen.\nAnd they did beat the gold into thin plates, and cut it into wires, to work it in the blue, and in the purple, and in the scarlet, and in the fine linen, with cunning work.\nThey made shoulder pieces for it, to couple it together: by the two edges was it coupled together.\nAnd the curious girdle of his ephod, that was upon it, was of the same, according to the work thereof; of gold, blue, and purple, and scarlet, and fine twined linen; as the Lord commanded Moses.\nAnd they wrought onyx stones inclosed in ouches of gold, graven, as signets are graven, with the names of the children of Israel.\nAnd he put them on the shoulders of the ephod, that they should be stones for a memorial to the children of Israel; as the Lord commanded Moses.\nAnd he made the breastplate of cunning work, like the work of the ephod; of gold, blue, and purple, and scarlet, and fine twined linen.\nIt was foursquare; they made the breastplate double: a span was the length thereof, and a span the breadth thereof, being doubled.\nAnd they set in it four rows of stones: the first row was a sardius, a topaz, and a carbuncle: this was the first row.\nAnd the second row, an emerald, a sapphire, and a diamond.\nAnd the third row, a ligure, an agate, and an amethyst.\nAnd the fourth row, a beryl, an onyx, and a jasper: they were inclosed in ouches of gold in their inclosings.\nAnd the stones were according to the names of the children of Israel, twelve, according to their names, like the engravings of a signet, every one with his name, according to the twelve tribes.\nAnd they made upon the breastplate chains at the ends, of wreathen work of pure gold.\nAnd they made two ouches of gold, and two gold rings; and put the two rings in the two ends of the breastplate.\nAnd they put the two wreathen chains of gold in the two rings on the ends of the breastplate.\nAnd the two ends of the two wreathen chains they fastened in the two ouches, and put them on the shoulderpieces of the ephod, before it.\nAnd they made two rings of gold, and put them on the two ends of the breastplate, upon the border of it, which was on the side of the ephod inward.\nAnd they made two other golden rings, and put them on the two sides of the ephod underneath, toward the forepart of it, over against the other coupling thereof, above the curious girdle of the ephod.\nAnd they did bind the breastplate by his rings unto the rings of the ephod with a lace of blue, that it might be above the curious girdle of the ephod, and that the breastplate might not be loosed from the ephod; as the Lord commanded Moses.\nAnd he made the robe of the ephod of woven work, all of blue.\nAnd there was an hole in the midst of the robe, as the hole of an habergeon, with a band round about the hole, that it should not rend.\nAnd they made upon the hems of the robe pomegranates of blue, and purple, and scarlet, and twined linen.\nAnd they made bells of pure gold, and put the bells between the pomegranates upon the hem of the robe, round about between the pomegranates;\nA bell and a pomegranate, a bell and a pomegranate, round about the hem of the robe to minister in; as the Lord commanded Moses.\nAnd they made coats of fine linen of woven work for Aaron, and for his sons,\nAnd a mitre of fine linen, and goodly bonnets of fine linen, and linen breeches of fine twined linen,\nAnd a girdle of fine twined linen, and blue, and purple, and scarlet, of needlework; as the Lord commanded Moses.\nAnd they made the plate of the holy crown of pure gold, and wrote upon it a writing, like to the engravings of a signet, Holiness To The Lord.\nAnd they tied unto it a lace of blue, to fasten it on high upon the mitre; as the Lord commanded Moses.\nThus was all the work of the tabernacle of the tent of the congregation finished: and the children of Israel did according to all that the Lord commanded Moses, so did they.\nAnd they brought the tabernacle unto Moses, the tent, and all his furniture, his taches, his boards, his bars, and his pillars, and his sockets,\nAnd the covering of rams' skins dyed red, and the covering of badgers' skins, and the vail of the covering,\nThe ark of the testimony, and the staves thereof, and the mercy seat,\nThe table, and all the vessels thereof, and the shewbread,\nThe pure candlestick, with the lamps thereof, even with the lamps to be set in order, and all the vessels thereof, and the oil for light,\nAnd the golden altar, and the anointing oil, and the sweet incense, and the hanging for the tabernacle door,\nThe brasen altar, and his grate of brass, his staves, and all his vessels, the laver and his foot,\nThe hangings of the court, his pillars, and his sockets, and the hanging for the court gate, his cords, and his pins, and all the vessels of the service of the tabernacle, for the tent of the congregation,\nThe cloths of service to do service in the holy place, and the holy garments for Aaron the priest, and his sons' garments, to minister in the priest's office.\nAccording to all that the Lord commanded Moses, so the children of Israel made all the work.\nAnd Moses did look upon all the work, and, behold, they had done it as the Lord had commanded, even so had they done it: and Moses blessed them.\nAnd the Lord spake unto Moses, saying,\nOn the first day of the first month shalt thou set up the tabernacle of the tent of the congregation.\nAnd thou shalt put therein the ark of the testimony, and cover the ark with the vail.\nAnd thou shalt bring in the table, and set in order the things that are to be set in order upon it; and thou shalt bring in the candlestick, and light the lamps thereof.\nAnd thou shalt set the altar of gold for the incense before the ark of the testimony, and put the hanging of the door to the tabernacle.\nAnd thou shalt set the altar of the burnt offering before the door of the tabernacle of the tent of the congregation.\nAnd thou shalt set the laver between the tent of the congregation and the altar, and shalt put water therein.\nAnd thou shalt set up the court round about, and hang up the hanging at the court gate.\nAnd thou shalt take the anointing oil, and anoint the tabernacle, and all that is therein, and shalt hallow it, and all the vessels thereof: and it shall be holy.\nAnd thou shalt anoint the altar of the burnt offering, and all his vessels, and sanctify the altar: and it shall be an altar most holy.\nAnd thou shalt anoint the laver and his foot, and sanctify it.\nAnd thou shalt bring Aaron and his sons unto the door of the tabernacle of the congregation, and wash them with water.\nAnd thou shalt put upon Aaron the holy garments, and anoint him, and sanctify him; that he may minister unto me in the priest's office.\nAnd thou shalt bring his sons, and clothe them with coats:\nAnd thou shalt anoint them, as thou didst anoint their father, that they may minister unto me in the priest's office: for their anointing shall surely be an everlasting priesthood throughout their generations.\nThus did Moses: according to all that the Lord commanded him, so did he.\nAnd it came to pass in the first month in the second year, on the first day of the month, that the tabernacle was reared up.\nAnd Moses reared up the tabernacle, and fastened his sockets, and set up the boards thereof, and put in the bars thereof, and reared up his pillars.\nAnd he spread abroad the tent over the tabernacle, and put the covering of the tent above upon it; as the Lord commanded Moses.\nAnd he took and put the testimony into the ark, and set the staves on the ark, and put the mercy seat above upon the ark:\nAnd he brought the ark into the tabernacle, and set up the vail of the covering, and covered the ark of the testimony; as the Lord commanded Moses.\nAnd he put the table in the tent of the congregation, upon the side of the tabernacle northward, without the vail.\nAnd he set the bread in order upon it before the Lord; as the Lord had commanded Moses.\nAnd he put the candlestick in the tent of the congregation, over against the table, on the side of the tabernacle southward.\nAnd he lighted the lamps before the Lord; as the Lord commanded Moses.\nAnd he put the golden altar in the tent of the congregation before the vail:\nAnd he burnt sweet incense thereon; as the Lord commanded Moses.\nAnd he set up the hanging at the door of the tabernacle.\nAnd he put the altar of burnt offering by the door of the tabernacle of the tent of the congregation, and offered upon it the burnt offering and the meat offering; as the Lord commanded Moses.\nAnd he set the laver between the tent of the congregation and the altar, and put water there, to wash withal.\nAnd Moses and Aaron and his sons washed their hands and their feet thereat:\nWhen they went into the tent of the congregation, and when they came near unto the altar, they washed; as the Lord commanded Moses.\nAnd he reared up the court round about the tabernacle and the altar, and set up the hanging of the court gate. So Moses finished the work.\nThen a cloud covered the tent of the congregation, and the glory of the Lord filled the tabernacle.\nAnd Moses was not able to enter into the tent of the congregation, because the cloud abode thereon, and the glory of the Lord filled the tabernacle.\nAnd when the cloud was taken up from over the tabernacle, the children of Israel went onward in all their journeys:\nBut if the cloud were not taken up, then they journeyed not till the day that it was taken up.\nFor the cloud of the Lord was upon the tabernacle by day, and fire was on it by night, in the sight of all the house of Israel, throughout all their journeys.\nPsalms\nBlessed is the man that walketh not in the counsel of the ungodly, nor standeth in the way of sinners, nor sitteth in the seat of the scornful.\nBut his delight is in the law of the Lord; and in his law doth he meditate day and night.\nAnd he shall be like a tree planted by the rivers of water, that bringeth forth his fruit in his season; his leaf also shall not wither; and whatsoever he doeth shall prosper.\nThe ungodly are not so: but are like the chaff which the wind driveth away.\nTherefore the ungodly shall not stand in the judgment, nor sinners in the congregation of the righteous.\nFor the Lord knoweth the way of the righteous: but the way of the ungodly shall perish.\nWhy do the heathen rage, and the people imagine a vain thing?\nThe kings of the earth set themselves, and the rulers take counsel together, against the Lord, and against his anointed, saying,\nLet us break their bands asunder, and cast away their cords from us.\nHe that sitteth in the heavens shall laugh: the Lord shall have them in derision.\nThen shall he speak unto them in his wrath, and vex them in his sore displeasure.\nYet have I set my king upon my holy hill of Zion.\nI will declare the decree: the Lord hath said unto me, Thou art my Son; this day have I begotten thee.\nAsk of me, and I shall give thee the heathen for thine inheritance, and the uttermost parts of the earth for thy possession.\nThou shalt break them with a rod of iron; thou shalt dash them in pieces like a potter's vessel.\nBe wise now therefore, O ye kings: be instructed, ye judges of the earth.\nServe the Lord with fear, and rejoice with trembling.\nKiss the Son, lest he be angry, and ye perish from the way, when his wrath is kindled but a little. Blessed are all they that put their trust in him.\nLord, how are they increased that trouble me! many are they that rise up against me.\nMany there be which say of my soul, There is no help for him in God. Selah.\nBut thou, O Lord, art a shield for me; my glory, and the lifter up of mine head.\nI cried unto the Lord with my voice, and he heard me out of his holy hill. Selah.\nI laid me down and slept; I awaked; for the Lord sustained me.\nI will not be afraid of ten thousands of people, that have set themselves against me round about.\nArise, O Lord; save me, O my God: for thou hast smitten all mine enemies upon the cheek bone; thou hast broken the teeth of the ungodly.\nSalvation belongeth unto the Lord: thy blessing is upon thy people. Selah.\nHear me when I call, O God of my righteousness: thou hast enlarged me when I was in distress; have mercy upon me, and hear my prayer.\nO ye sons of men, how long will ye turn my glory into shame? how long will ye love vanity, and seek after leasing? Selah.\nBut know that the Lord hath set apart him that is godly for himself: the Lord will hear when I call unto him.\nStand in awe, and sin not: commune with your own heart upon your bed, and be still. Selah.\nOffer the sacrifices of righteousness, and put your trust in the Lord.\nThere be many that say, Who will shew us any good? Lord, lift thou up the light of thy countenance upon us.\nThou hast put gladness in my heart, more than in the time that their corn and their wine increased.\nI will both lay me down in peace, and sleep: for thou, Lord, only makest me dwell in safety.\nGive ear to my words, O Lord, consider my meditation.\nHearken unto the voice of my cry, my King, and my God: for unto thee will I pray.\nMy voice shalt thou hear in the morning, O Lord; in the morning will I direct my prayer unto thee, and will look up.\nFor thou art not a God that hath pleasure in wickedness: neither shall evil dwell with thee.\nThe foolish shall not stand in thy sight: thou hatest all workers of iniquity.\nThou shalt destroy them that speak leasing: the Lord will abhor the bloody and deceitful man.\nBut as for me, I will come into thy house in the multitude of thy mercy: and in thy fear will I worship toward thy holy temple.\nLead me, O Lord, in thy righteousness because of mine enemies; make thy way straight before my face.\nFor there is no faithfulness in their mouth; their inward part is very wickedness; their throat is an open sepulchre; they flatter with their tongue.\nDestroy thou them, O God; let them fall by their own counsels; cast them out in the multitude of their transgressions; for they have rebelled against thee.\nBut let all those that put their trust in thee rejoice: let them ever shout for joy, because thou defendest them: let them also that love thy name be joyful in thee.\nFor thou, Lord, wilt bless the righteous; with favour wilt thou compass him as with a shield.\nO Lord, rebuke me not in thine anger, neither chasten me in thy hot displeasure.\nHave mercy upon me, O Lord; for I am weak: O Lord, heal me; for my bones are vexed.\nMy soul is also sore vexed: but thou, O Lord, how long?\nReturn, O Lord, deliver my soul: oh save me for thy mercies' sake.\nFor in death there is no remembrance of thee: in the grave who shall give thee thanks?\nI am weary with my groaning; all the night make I my bed to swim; I water my couch with my tears.\nMine eye is consumed because of grief; it waxeth old because of all mine enemies.\nDepart from me, all ye workers of iniquity; for the Lord hath heard the voice of my weeping.\nThe Lord hath heard my supplication; the Lord will receive my prayer.\nLet all mine enemies be ashamed and sore vexed: let them return and be ashamed suddenly.\nO Lord, our Lord, how excellent is thy name in all the earth! who hast set thy glory above the heavens.\nOut of the mouth of babes and sucklings hast thou ordained strength because of thine enemies, that thou mightest still the enemy and the avenger.\nWhen I consider thy heavens, the work of thy fingers, the moon and the stars, which thou hast ordained;\nWhat is man, that thou art mindful of him? and the son of man, that thou visitest him?\nFor thou hast made him a little lower than the angels, and hast crowned him with glory and honour.\nThou madest him to have dominion over the works of thy hands; thou hast put all things under his feet:\nAll sheep and oxen, yea, and the beasts of the field;\nThe fowl of the air, and the fish of the sea, and whatsoever passeth through the paths of the seas.\nO Lord our Lord, how excellent is thy name in all the earth!\nLord, who shall abide in thy tabernacle? who shall dwell in thy holy hill?\nHe that walketh uprightly, and worketh righteousness, and speaketh the truth in his heart.\nHe that backbiteth not with his tongue, nor doeth evil to his neighbour, nor taketh up a reproach against his neighbour.\nIn whose eyes a vile person is contemned; but he honoureth them that fear the Lord. He that sweareth to his own hurt, and changeth not.\nHe that putteth not out his money to usury, nor taketh reward against the innocent. He that doeth these things shall never be moved.\nThe heavens declare the glory of God; and the firmament sheweth his handywork.\nDay unto day uttereth speech, and night unto night sheweth knowledge.\nThere is no speech nor language, where their voice is not heard.\nTheir line is gone out through all the earth, and their words to the end of the world. In them hath he set a tabernacle for the sun,\nWhich is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race.\nHis going forth is from the end of the heaven, and his circuit unto the ends of it: and there is nothing hid from the heat thereof.\nThe law of the Lord is perfect, converting the soul: the testimony of the Lord is sure, making wise the simple.\nThe statutes of the Lord are right, rejoicing the heart: the commandment of the Lord is pure, enlightening the eyes.\nThe fear of the Lord is clean, enduring for ever: the judgments of the Lord are true and righteous altogether.\nMore to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb.\nMoreover by them is thy servant warned: and in keeping of them there is great reward.\nWho can understand his errors? cleanse thou me from secret faults.\nKeep back thy servant also from presumptuous sins; let them not have dominion over me: then shall I be upright, and I shall be innocent from the great transgression.\nLet the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O Lord, my strength, and my redeemer.\nThe Lord is my shepherd; I shall not want.\nHe maketh me to lie down in green pastures: he leadeth me beside the still waters.\nHe restoreth my soul: he leadeth me in the paths of righteousness for his name's sake.\nYea, though I walk through the valley of the shadow of death, I will fear no evil: for thou art with me; thy rod and thy staff they comfort me.\nThou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over.\nSurely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord for ever.\nThe Lord is my light and my salvation; whom shall I fear? the Lord is the strength of my life; of whom shall I be afraid?\nWhen the wicked, even mine enemies and my foes, came upon me to eat up my flesh, they stumbled and fell.\nThough an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident.\nOne thing have I desired of the Lord, that will I seek after; that I may dwell in the house of the Lord all the days of my life, to behold the beauty of the Lord, and to enquire in his temple.\nFor in the time of trouble he shall hide me in his pavilion: in the secret of his tabernacle shall he hide me; he shall set me up upon a rock.\nAnd now shall mine head be lifted up above mine enemies round about me: therefore will I offer in his tabernacle sacrifices of joy; I will sing, yea, I will sing praises unto the Lord.\nHear, O Lord, when I cry with my voice: have mercy also upon me, and answer me.\nWhen thou saidst, Seek ye my face; my heart said unto thee, Thy face, Lord, will I seek.\nHide not thy face far from me; put not thy servant away in anger: thou hast been my help; leave me not, neither forsake me, O God of my salvation.\nWhen my father and my mother forsake me, then the Lord will take me up.\nTeach me thy way, O Lord, and lead me in a plain path, because of mine enemies.\nDeliver me not over unto the will of mine enemies: for false witnesses are risen up against me, and such as breathe out cruelty.\nI had fainted, unless I had believed to see the goodness of the Lord in the land of the living.\nWait on the Lord: be of good courage, and he shall strengthen thine heart: wait, I say, on the Lord.\nI said, I will take heed to my ways, that I sin not with my tongue: I will keep my mouth with a bridle, while the wicked is before me.\nI was dumb with silence, I held my peace, even from good; and my sorrow was stirred.\nMy heart was hot within me, while I was musing the fire burned: then spake I with my tongue,\nLord, make me to know mine end, and the measure of my days, what it is: that I may know how frail I am.\nBehold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah.\nSurely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them.\nAnd now, Lord, what wait I for? my hope is in thee.\nDeliver me from all my transgressions: make me not the reproach of the foolish.\nI was dumb, I opened not my mouth; because thou didst it.\nRemove thy stroke away from me: I am consumed by the blow of thine hand.\nWhen thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah.\nHear my prayer, O Lord, and give ear unto my cry; hold not thy peace at my tears: for I am a stranger with thee, and a sojourner, as all my fathers were.\nO spare me, that I may recover strength, before I go hence, and be no more.\nAs the hart panteth after the water brooks, so panteth my soul after thee, O God.\nMy soul thirsteth for God, for the living God: when shall I come and appear before God?\nMy tears have been my meat day and night, while they continually say unto me, Where is thy God?\nWhen I remember these things, I pour out my soul in me: for I had gone with the multitude, I went with them to the house of God, with the voice of joy and praise, with a multitude that kept holyday.\nWhy art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance.\nO my God, my soul is cast down within me: therefore will I remember thee from the land of Jordan, and of the Hermonites, from the hill Mizar.\nDeep calleth unto deep at the noise of thy waterspouts: all thy waves and thy billows are gone over me.\nYet the Lord will command his lovingkindness in the day time, and in the night his song shall be with me, and my prayer unto the God of my life.\nI will say unto God my rock, Why hast thou forgotten me? why go I mourning because of the oppression of the enemy?\nAs with a sword in my bones, mine enemies reproach me; while they say daily unto me, Where is thy God?\nWhy art thou cast down, O my soul? and why art thou disquieted within me? hope thou in God: for I shall yet praise him, who is the health of my countenance, and my God.\nGod is our refuge and strength, a very present help in trouble.\nTherefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea;\nThough the waters thereof roar and be troubled, though the mountains shake with the swelling thereof. Selah.\nThere is a river, the streams whereof shall make glad the city of God, the holy place of the tabernacles of the most High.\nGod is in the midst of her; she shall not be moved: God shall help her, and that right early.\nThe heathen raged, the kingdoms were moved: he uttered his voice, the earth melted.\nThe Lord of hosts is with us; the God of Jacob is our refuge. Selah.\nCome, behold the works of the Lord, what desolations he hath made in the earth.\nHe maketh wars to cease unto the end of the earth; he breaketh the bow, and cutteth the spear in sunder; he burneth the chariot in the fire.\nBe still, and know that I am God: I will be exalted among the heathen, I will be exalted in the earth.\nThe Lord of hosts is with us; the God of Jacob is our refuge. Selah.\nHave mercy upon me, O God, according to thy loving kindness: according unto the multitude of thy tender mercies blot out my transgressions.\nWash me thoroughly from mine iniquity, and cleanse me from my sin.\nFor I acknowledge my transgressions: and my sin is ever before me.\nAgainst thee, thee only, have I sinned, and done this evil in thy sight: that thou mightest be justified when thou speakest, and be clear when thou judgest.\nBehold, I was shapen in iniquity; and in sin did my mother conceive me.\nBehold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom.\nPurge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow.\nMake me to hear joy and gladness; that the bones which thou hast broken may rejoice.\nHide thy face from my sins, and blot out all mine iniquities.\nCreate in me a clean heart, O God; and renew a right spirit within me.\nCast me not away from thy presence; and take not thy holy spirit from me.\nRestore unto me the joy of thy salvation; and uphold me with thy free spirit.\nThen will I teach transgressors thy ways; and sinners shall be converted unto thee.\nDeliver me from bloodguiltiness, O God, thou God of my salvation: and my tongue shall sing aloud of thy righteousness.\nO Lord, open thou my lips; and my mouth shall shew forth thy praise.\nFor thou desirest not sacrifice; else would I give it: thou delightest not in burnt offering.\nThe sacrifices of God are a broken spirit: a broken and a contrite heart, O God, thou wilt not despise.\nDo good in thy good pleasure unto Zion: build thou the walls of Jerusalem.\nThen shalt thou be pleased with the sacrifices of righteousness, with burnt offering and whole burnt offering: then shall they offer bullocks upon thine altar.\nGive the king thy judgments, O God, and thy righteousness unto the king's son.\nHe shall judge thy people with righteousness, and thy poor with judgment.\nThe mountains shall bring peace to the people, and the little hills, by righteousness.\nHe shall judge the poor of the people, he shall save the children of the needy, and shall break in pieces the oppressor.\nThey shall fear thee as long as the sun and moon endure, throughout all generations.\nHe shall come down like rain upon the mown grass: as showers that water the earth.\nIn his days shall the righteous flourish; and abundance of peace so long as the moon endureth.\nHe shall have dominion also from sea to sea, and from the river unto the ends of the earth.\nThey that dwell in the wilderness shall bow before him; and his enemies shall lick the dust.\nThe kings of Tarshish and of the isles shall bring presents: the kings of Sheba and Seba shall offer gifts.\nYea, all kings shall fall down before him: all nations shall serve him.\nFor he shall deliver the needy when he crieth; the poor also, and him that hath no helper.\nHe shall spare the poor and needy, and shall save the souls of the needy.\nHe shall redeem their soul from deceit and violence: and precious shall their blood be in his sight.\nAnd he shall live, and to him shall be given of the gold of Sheba: prayer also shall be made for him continually; and daily shall he be praised.\nThere shall be an handful of corn in the earth upon the top of the mountains; the fruit thereof shall shake like Lebanon: and they of the city shall flourish like grass of the earth.\nHis name shall endure for ever: his name shall be continued as long as the sun: and men shall be blessed in him: all nations shall call him blessed.\nBlessed be the Lord God, the God of Israel, who only doeth wondrous things.\nAnd blessed be his glorious name for ever: and let the whole earth be filled with his glory; Amen, and Amen.\nThe prayers of David the son of Jesse are ended.\nHow amiable are thy tabernacles, O Lord of hosts!\nMy soul longeth, yea, even fainteth for the courts of the Lord: my heart and my flesh crieth out for the living God.\nYea, the sparrow hath found an house, and the swallow a nest for herself, where she may lay her young, even thine altars, O Lord of hosts, my King, and my God.\nBlessed are they that dwell in thy house: they will be still praising thee. Selah.\nBlessed is the man whose strength is in thee; in whose heart are the ways of them.\nWho passing through the valley of Baca make it a well; the rain also filleth the pools.\nThey go from strength to strength, every one of them in Zion appeareth before God.\nO Lord God of hosts, hear my prayer: give ear, O God of Jacob. Selah.\nBehold, O God our shield, and look upon the face of thine anointed.\nFor a day in thy courts is better than a thousand. I had rather be a doorkeeper in the house of my God, than to dwell in the tents of wickedness.\nFor the Lord God is a sun and shield: the Lord will give grace and glory: no good thing will he withhold from them that walk uprightly.\nO Lord of hosts, blessed is the man that trusteth in thee.\nLord, thou hast been our dwelling place in all generations.\nBefore the mountains were brought forth, or ever thou hadst formed the earth and the world, even from everlasting to everlasting, thou art God.\nThou turnest man to destruction; and sayest, Return, ye children of men.\nFor a thousand years in thy sight are but as yesterday when it is past, and as a watch in the night.\nThou carriest them away as with a flood; they are as a sleep: in the morning they are like grass which groweth up.\nIn the morning it flourisheth, and groweth up; in the evening it is cut down, and withereth.\nFor we are consumed by thine anger, and by thy wrath are we troubled.\nThou hast set our iniquities before thee, our secret sins in the light of thy countenance.\nFor all our days are passed away in thy wrath: we spend our years as a tale that is told.\nThe days of our years are threescore years and ten; and if by reason of strength they be fourscore years, yet is their strength labour and sorrow; for it is soon cut off, and we fly away.\nWho knoweth the power of thine anger? even according to thy fear, so is thy wrath.\nSo teach us to number our days, that we may apply our hearts unto wisdom.\nReturn, O Lord, how long? and let it repent thee concerning thy servants.\nO satisfy us early with thy mercy; that we may rejoice and be glad all our days.\nMake us glad according to the days wherein thou hast afflicted us, and the years wherein we have seen evil.\nLet thy work appear unto thy servants, and thy glory unto their children.\nAnd let the beauty of the Lord our God be upon us: and establish thou the work of our hands upon us; yea, the work of our hands establish thou it.\nMake a joyful noise unto the Lord, all ye lands.\nServe the Lord with gladness: come before his presence with singing.\nKnow ye that the Lord he is God: it is he that hath made us, and not we ourselves; we are his people, and the sheep of his pasture.\nEnter into his gates with thanksgiving, and into his courts with praise: be thankful unto him, and bless his name.\nFor the Lord is good; his mercy is everlasting; and his truth endureth to all generations.\nBless the Lord, O my soul: and all that is within me, bless his holy name.\nBless the Lord, O my soul, and forget not all his benefits:\nWho forgiveth all thine iniquities; who healeth all thy diseases;\nWho redeemeth thy life from destruction; who crowneth thee with lovingkindness and tender mercies;\nWho satisfieth thy mouth with good things; so that thy youth is renewed like the eagle's.\nThe Lord executeth righteousness and judgment for all that are oppressed.\nHe made known his ways unto Moses, his acts unto the children of Israel.\nThe Lord is merciful and gracious, slow to anger, and plenteous in mercy.\nHe will not always chide: neither will he keep his anger for ever.\nHe hath not dealt with us after our sins; nor rewarded us according to our iniquities.\nFor as the heaven is high above the earth, so great is his mercy toward them that fear him.\nAs far as the east is from the west, so far hath he removed our transgressions from us.\nLike as a father pitieth his children, so the Lord pitieth them that fear him.\nFor he knoweth our frame; he remembereth that we are dust.\nAs for man, his days are as grass: as a flower of the field, so he flourisheth.\nFor the wind passeth over it, and it is gone; and the place thereof shall know it no more.\nBut the mercy of the Lord is from everlasting to everlasting upon them that fear him, and his righteousness unto children's children;\nTo such as keep his covenant, and to those that remember his commandments to do them.\nThe Lord hath prepared his throne in the heavens; and his kingdom ruleth over all.\nBless the Lord, ye his angels, that excel in strength, that do his commandments, hearkening unto the voice of his word.\nBless ye the Lord, all ye his hosts; ye ministers of his, that do his pleasure.\nBless the Lord, all his works in all places of his dominion: bless the Lord, O my soul.\nI love the Lord, because he hath heard my voice and my supplications.\nBecause he hath inclined his ear unto me, therefore will I call upon him as long as I live.\nThe sorrows of death compassed me, and the pains of hell gat hold upon me: I found trouble and sorrow.\nThen called I upon the name of the Lord; O Lord, I beseech thee, deliver my soul.\nGracious is the Lord, and righteous; yea, our God is merciful.\nThe Lord preserveth the simple: I was brought low, and he helped me.\nReturn unto thy rest, O my soul; for the Lord hath dealt bountifully with thee.\nFor thou hast delivered my soul from death, mine eyes from tears, and my feet from falling.\nI will walk before the Lord in the land of the living.\nI believed, therefore have I spoken: I was greatly afflicted:\nI said in my haste, All men are liars.\nWhat shall I render unto the Lord for all his benefits toward me?\nI will take the cup of salvation, and call upon the name of the Lord.\nI will pay my vows unto the Lord now in the presence of all his people.\nPrecious in the sight of the Lord is the death of his saints.\nO Lord, truly I am thy servant; I am thy servant, and the son of thine handmaid: thou hast loosed my bonds.\nI will offer to thee the sacrifice of thanksgiving, and will call upon the name of the Lord.\nI will pay my vows unto the Lord now in the presence of all his people.\nIn the courts of the Lord's house, in the midst of thee, O Jerusalem. Praise ye the Lord.\nO praise the Lord, all ye nations: praise him, all ye people.\nFor his merciful kindness is great toward us: and the truth of the Lord endureth for ever. Praise ye the Lord.\nI will lift up mine eyes unto the hills, from whence cometh my help.\nMy help cometh from the Lord, which made heaven and earth.\nHe will not suffer thy foot to be moved: he that keepeth thee will not slumber.\nBehold, he that keepeth Israel shall neither slumber nor sleep.\nThe Lord is thy keeper: the Lord is thy shade upon thy right hand.\nThe sun shall not smite thee by day, nor the moon by night.\nThe Lord shall preserve thee from all evil: he shall preserve thy soul.\nThe Lord shall preserve thy going out and thy coming in from this time forth, and even for evermore.\nI was glad when they said unto me, Let us go into the house of the Lord.\nOur feet shall stand within thy gates, O Jerusalem.\nJerusalem is builded as a city that is compact together:\nWhither the tribes go up, the tribes of the Lord, unto the testimony of Israel, to give thanks unto the name of the Lord.\nFor there are set thrones of judgment, the thrones of the house of David.\nPray for the peace of Jerusalem: they shall prosper that love thee.\nPeace be within thy walls, and prosperity within thy palaces.\nFor my brethren and companions' sakes, I will now say, Peace be within thee.\nBecause of the house of the Lord our God I will seek thy good.\nBehold, how good and how pleasant it is for brethren to dwell together in unity!\nIt is like the precious ointment upon the head, that ran down upon the beard, even Aaron's beard: that went down to the skirts of his garments;\nAs the dew of Hermon, and as the dew that descended upon the mountains of Zion: for there the Lord commanded the blessing, even life for evermore.\nBy the rivers of Babylon, there we sat down, yea, we wept, when we remembered Zion.\nWe hanged our harps upon the willows in the midst thereof.\nFor there they that carried us away captive required of us a song; and they that wasted us required of us mirth, saying, Sing us one of the songs of Zion.\nHow shall we sing the Lord's song in a strange land?\nIf I forget thee, O Jerusalem, let my right hand forget her cunning.\nIf I do not remember thee, let my tongue cleave to the roof of my mouth; if I prefer not Jerusalem above my chief joy.\nRemember, O Lord, the children of Edom in the day of Jerusalem; who said, Rase it, rase it, even to the foundation thereof.\nO daughter of Babylon, who art to be destroyed; happy shall he be, that rewardeth thee as thou hast served us.\nHappy shall he be, that taketh and dasheth thy little ones against the stones.\nO lord, thou hast searched me, and known me.\nThou knowest my downsitting and mine uprising, thou understandest my thought afar off.\nThou compassest my path and my lying down, and art acquainted with all my ways.\nFor there is not a word in my tongue, but, lo, O Lord, thou knowest it altogether.\nThou hast beset me behind and before, and laid thine hand upon me.\nSuch knowledge is too wonderful for me; it is high, I cannot attain unto it.\nWhither shall I go from thy spirit? or whither shall I flee from thy presence?\nIf I ascend up into heaven, thou art there: if I make my bed in hell, behold, thou art there.\nIf I take the wings of the morning, and dwell in the uttermost parts of the sea;\nEven there shall thy hand lead me, and thy right hand shall hold me.\nIf I say, Surely the darkness shall cover me; even the night shall be light about me.\nYea, the darkness hideth not from thee; but the night shineth as the day: the darkness and the light are both alike to thee.\nFor thou hast possessed my reins: thou hast covered me in my mother's womb.\nI will praise thee; for I am fearfully and wonderfully made: marvellous are thy works; and that my soul knoweth right well.\nMy substance was not hid from thee, when I was made in secret, and curiously wrought in the lowest parts of the earth.\nThine eyes did see my substance, yet being unperfect; and in thy book all my members were written, which in continuance were fashioned, when as yet there was none of them.\nHow precious also are thy thoughts unto me, O God! how great is the sum of them!\nIf I should count them, they are more in number than the sand: when I awake, I am still with thee.\nSurely thou wilt slay the wicked, O God: depart from me therefore, ye bloody men.\nFor they speak against thee wickedly, and thine enemies take thy name in vain.\nDo not I hate them, O Lord, that hate thee? and am not I grieved with those that rise up against thee?\nI hate them with perfect hatred: I count them mine enemies.\nSearch me, O God, and know my heart: try me, and know my thoughts:\nAnd see if there be any wicked way in me, and lead me in the way everlasting.\nThe vision of Isaiah the son of Amoz, which he saw concerning Judah and Jerusalem in the days of Uzziah, Jotham, Ahaz, and Hezekiah, kings of Judah.\nHear, O heavens, and give ear, O earth: for the Lord hath spoken, I have nourished and brought up children, and they have rebelled against me.\nThe ox knoweth his owner, and the ass his master's crib: but Israel doth not know, my people doth not consider.\nAh sinful nation, a people laden with iniquity, a seed of evildoers, children that are corrupters: they have forsaken the Lord, they have provoked the Holy One of Israel unto anger, they are gone away backward.\nWhy should ye be stricken any more? ye will revolt more and more: the whole head is sick, and the whole heart faint.\nFrom the sole of the foot even unto the head there is no soundness in it; but wounds, and bruises, and putrifying sores: they have not been closed, neither bound up, neither mollified with ointment.\nYour country is desolate, your cities are burned with fire: your land, strangers devour it in your presence, and it is desolate, as overthrown by strangers.\nAnd the daughter of Zion is left as a cottage in a vineyard, as a lodge in a garden of cucumbers, as a besieged city.\nExcept the Lord of hosts had left unto us a very small remnant, we should have been as Sodom, and we should have been like unto Gomorrah.\nHear the word of the Lord, ye rulers of Sodom; give ear unto the law of our God, ye people of Gomorrah.\nTo what purpose is the multitude of your sacrifices unto me? saith the Lord: I am full of the burnt offerings of rams, and the fat of fed beasts; and I delight not in the blood of bullocks, or of lambs, or of he goats.\nWhen ye come to appear before me, who hath required this at your hand, to tread my courts?\nBring no more vain oblations; incense is an abomination unto me; the new moons and sabbaths, the calling of assemblies, I cannot away with; it is iniquity, even the solemn meeting.\nYour new moons and your appointed feasts my soul hateth: they are a trouble unto me; I am weary to bear them.\nAnd when ye spread forth your hands, I will hide mine eyes from you: yea, when ye make many prayers, I will not hear: your hands are full of blood.\nWash you, make you clean; put away the evil of your doings from before mine eyes; cease to do evil;\nLearn to do well; seek judgment, relieve the oppressed, judge the fatherless, plead for the widow.\nCome now, and let us reason together, saith the Lord: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool.\nIf ye be willing and obedient, ye shall eat the good of the land:\nBut if ye refuse and rebel, ye shall be devoured with the sword: for the mouth of the Lord hath spoken it.\nHow is the faithful city become an harlot! it was full of judgment; righteousness lodged in it; but now murderers.\nThy silver is become dross, thy wine mixed with water:\nThy princes are rebellious, and companions of thieves: every one loveth gifts, and followeth after rewards: they judge not the fatherless, neither doth the cause of the widow come unto them.\nTherefore saith the Lord, the Lord of hosts, the mighty One of Israel, Ah, I will ease me of mine adversaries, and avenge me of mine enemies:\nAnd I will turn my hand upon thee, and purely purge away thy dross, and take away all thy tin:\nAnd I will restore thy judges as at the first, and thy counsellors as at the beginning: afterward thou shalt be called, The city of righteousness, the faithful city.\nZion shall be redeemed with judgment, and her converts with righteousness.\nAnd the destruction of the transgressors and of the sinners shall be together, and they that forsake the Lord shall be consumed.\nFor they shall be ashamed of the oaks which ye have desired, and ye shall be confounded for the gardens that ye have chosen.\nFor ye shall be as an oak whose leaf fadeth, and as a garden that hath no water.\nAnd the strong shall be as tow, and the maker of it as a spark, and they shall both burn together, and none shall quench them.\nThe word that Isaiah the son of Amoz saw concerning Judah and Jerusalem.\nAnd it shall come to pass in the last days, that the mountain of the Lord's house shall be established in the top of the mountains, and shall be exalted above the hills; and all nations shall flow unto it.\nAnd many people shall go and say, Come ye, and let us go up to the mountain of the Lord, to the house of the God of Jacob; and he will teach us of his ways, and we will walk in his paths: for out of Zion shall go forth the law, and the word of the Lord from Jerusalem.\nAnd he shall judge among the nations, and shall rebuke many people: and they shall beat their swords into plowshares, and their spears into pruninghooks: nation shall not lift up sword against nation, neither shall they learn war any more.\nO house of Jacob, come ye, and let us walk in the light of the Lord.\nTherefore thou hast forsaken thy people the house of Jacob, because they be replenished from the east, and are soothsayers like the Philistines, and they please themselves in the children of strangers.\nTheir land also is full of silver and gold, neither is there any end of their treasures; their land is also full of horses, neither is there any end of their chariots:\nTheir land also is full of idols; they worship the work of their own hands, that which their own fingers have made:\nAnd the mean man boweth down, and the great man humbleth himself: therefore forgive them not.\nEnter into the rock, and hide thee in the dust, for fear of the Lord, and for the glory of his majesty.\nThe lofty looks of man shall be humbled, and the haughtiness of men shall be bowed down, and the Lord alone shall be exalted in that day.\nFor the day of the Lord of hosts shall be upon every one that is proud and lofty, and upon every one that is lifted up; and he shall be brought low:\nAnd upon all the cedars of Lebanon, that are high and lifted up, and upon all the oaks of Bashan,\nAnd upon all the high mountains, and upon all the hills that are lifted up,\nAnd upon every high tower, and upon every fenced wall,\nAnd upon all the ships of Tarshish, and upon all pleasant pictures.\nAnd the loftiness of man shall be bowed down, and the haughtiness of men shall be made low: and the Lord alone shall be exalted in that day.\nAnd the idols he shall utterly abolish.\nAnd they shall go into the holes of the rocks, and into the caves of the earth, for fear of the Lord, and for the glory of his majesty, when he ariseth to shake terribly the earth.\nIn that day a man shall cast his idols of silver, and his idols of gold, which they made each one for himself to worship, to the moles and to the bats;\nTo go into the clefts of the rocks, and into the tops of the ragged rocks, for fear of the Lord, and for the glory of his majesty, when he ariseth to shake terribly the earth.\nCease ye from man, whose breath is in his nostrils: for wherein is he to be accounted of ?\nThe proverbs of Solomon the son of David, king of Israel;\nTo know wisdom and instruction; to perceive the words of understanding;\nTo receive the instruction of wisdom, justice, and judgment, and equity;\nTo give subtilty to the simple, to the young man knowledge and discretion.\nA wise man will hear, and will increase learning; and a man of understanding shall attain unto wise counsels:\nTo understand a proverb, and the interpretation; the words of the wise, and their dark sayings.\nThe fear of the Lord is the beginning of knowledge: but fools despise wisdom and instruction.\nMy son, hear the instruction of thy father, and forsake not the law of thy mother:\nFor they shall be an ornament of grace unto thy head, and chains about thy neck.\nMy son, if sinners entice thee, consent thou not.\nIf they say, Come with us, let us lay wait for blood, let us lurk privily for the innocent without cause:\nLet us swallow them up alive as the grave; and whole, as those that go down into the pit:\nWe shall find all precious substance, we shall fill our houses with spoil:\nCast in thy lot among us; let us all have one purse:\nMy son, walk not thou in the way with them; refrain thy foot from their path:\nFor their feet run to evil, and make haste to shed blood.\nSurely in vain the net is spread in the sight of any bird.\nAnd they lay wait for their own blood; they lurk privily for their own lives.\nSo are the ways of every one that is greedy of gain; which taketh away the life of the owners thereof.\nWisdom crieth without; she uttereth her voice in the streets:\nShe crieth in the chief place of concourse, in the openings of the gates: in the city she uttereth her words, saying,\nHow long, ye simple ones, will ye love simplicity? and the scorners delight in their scorning, and fools hate knowledge?\nTurn you at my reproof: behold, I will pour out my spirit unto you, I will make known my words unto you.\nBecause I have called, and ye refused; I have stretched out my hand, and no man regarded;\nBut ye have set at nought all my counsel, and would none of my reproof:\nI also will laugh at your calamity; I will mock when your fear cometh;\nWhen your fear cometh as desolation, and your destruction cometh as a whirlwind; when distress and anguish cometh upon you.\nThen shall they call upon me, but I will not answer; they shall seek me early, but they shall not find me:\nFor that they hated knowledge, and did not choose the fear of the Lord:\nThey would none of my counsel: they despised all my reproof.\nTherefore shall they eat of the fruit of their own way, and be filled with their own devices.\nFor the turning away of the simple shall slay them, and the prosperity of fools shall destroy them.\nBut whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil.\nMy son, keep my words, and lay up my commandments with thee.\nKeep my commandments, and live; and my law as the apple of thine eye.\nBind them upon thy fingers, write them upon the table of thine heart.\nSay unto wisdom, Thou art my sister; and call understanding thy kinswoman:\nThat they may keep thee from the strange [prostitute]woman, from the stranger [prostitute] which flattereth with her words.\nFor at the window of my house I looked through my casement,\nAnd beheld among the simple ones, I discerned among the youths, a young man void of understanding,\nPassing through the street near her corner; and he went the way to her house,\nIn the twilight, in the evening, in the black and dark night:\nAnd, behold, there met him a woman with the attire of an harlot [prostitute], and subtil of heart.\n(She is loud and stubborn; her feet abide not in her house:[euphemism for a prostitute]\nNow is she without, now in the streets, and lieth in wait at every corner.)\nSo she caught him, and kissed him, and with an impudent face said unto him,\nI have peace offerings with me; this day have I payed my vows.\nTherefore came I forth to meet thee, diligently to seek thy face, and I have found thee.\nI have decked my bed with coverings of tapestry, with carved works, with fine linen of Egypt.\nI have perfumed my bed with myrrh, aloes, and cinnamon.\nCome, let us take our fill of love until the morning: let us solace ourselves with loves.\nFor the goodman is not at home, he is gone a long journey:\nHe hath taken a bag of money with him, and will come home at the day appointed.\nWith her much fair speech she caused him to yield, with the flattering of her lips she forced [compelled/persuaded] him\nHe goeth after her straightway, as an ox goeth to the slaughter, or as a fool to the correction of the stocks;\nTill a dart strike through his liver; as a bird hasteth to the snare, and knoweth not that it is for his life.\nHearken unto me now therefore, O ye children, and attend to the words of my mouth.\nLet not thine heart decline to her ways, go not astray in her paths.\nFor she hath cast down many wounded: yea, many strong men have been slain by her.\nHer house is the way to hell, going down to the chambers of death."
  },
  {
    "path": "a4/collect_submission.bat",
    "content": "@echo off\r\ndel /f assignment4.zip\r\ntar.exe -r -f assignment4.zip *.py chr_en_data sanity_check_en_es_data outputs"
  },
  {
    "path": "a4/collect_submission.sh",
    "content": "rm -f assignment4.zip\nzip -r assignment4.zip *.py ./chr_en_data ./sanity_check_en_es_data ./outputs"
  },
  {
    "path": "a4/gpu_requirements.txt",
    "content": "nltk\ndocopt\ntqdm==4.29.1\nsentencepiece\nsacrebleu\ntorch\n"
  },
  {
    "path": "a4/local_env.yml",
    "content": "name: local_nmt\nchannels:\n  - pytorch\n  - defaults\ndependencies:\n  - python=3.7\n  - numpy\n  - scipy\n  - tqdm\n  - docopt\n  - pytorch\n  - nltk\n  - torchvision\n  - pip\n  - pip:\n    - sentencepiece\n    - sacrebleu\n"
  },
  {
    "path": "a4/model_embeddings.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n\"\"\"\nCS224N 2020-21: Homework 4\nmodel_embeddings.py: Embeddings for the NMT model\nPencheng Yin <pcyin@cs.cmu.edu>\nSahil Chopra <schopra8@stanford.edu>\nAnand Dhoot <anandd@stanford.edu>\nVera Lin <veralin@stanford.edu>\n\"\"\"\n\nimport torch.nn as nn\n\nclass ModelEmbeddings(nn.Module): \n    \"\"\"\n    Class that converts input words to their embeddings.\n    \"\"\"\n    def __init__(self, embed_size, vocab):\n        \"\"\"\n        Init the Embedding layers.\n\n        @param embed_size (int): Embedding size (dimensionality)\n        @param vocab (Vocab): Vocabulary object containing src and tgt languages\n                              See vocab.py for documentation.\n        \"\"\"\n        super(ModelEmbeddings, self).__init__()\n        self.embed_size = embed_size\n\n        # default values\n        self.source = None\n        self.target = None\n\n        src_pad_token_idx = vocab.src['<pad>']\n        tgt_pad_token_idx = vocab.tgt['<pad>']\n\n        ### YOUR CODE HERE (~2 Lines)\n        ### TODO - Initialize the following variables:\n        ###     self.source (Embedding Layer for source language)\n        ###     self.target (Embedding Layer for target langauge)\n        ###\n        ### Note:\n        ###     1. `vocab` object contains two vocabularies:\n        ###            `vocab.src` for source\n        ###            `vocab.tgt` for target\n        ###     2. You can get the length of a specific vocabulary by running:\n        ###             `len(vocab.<specific_vocabulary>)`\n        ###     3. Remember to include the padding token for the specific vocabulary\n        ###        when creating your Embedding.\n        ###\n        ### Use the following docs to properly initialize these variables:\n        ###     Embedding Layer:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.Embedding\n        \n        self.source = nn.Embedding(len(vocab.src), self.embed_size, padding_idx=src_pad_token_idx)\n        self.target = nn.Embedding(len(vocab.tgt), self.embed_size, padding_idx=tgt_pad_token_idx)\n\n        ### END YOUR CODE\n\n\n"
  },
  {
    "path": "a4/nmt_model.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n\"\"\"\nCS224N 2020-21: Homework 4\nnmt_model.py: NMT Model\nPencheng Yin <pcyin@cs.cmu.edu>\nSahil Chopra <schopra8@stanford.edu>\nVera Lin <veralin@stanford.edu>\n\"\"\"\nfrom collections import namedtuple\nimport sys\nfrom typing import List, Tuple, Dict, Set, Union\nimport torch\nimport torch.nn as nn\nimport torch.nn.utils\nimport torch.nn.functional as F\nfrom torch.nn.utils.rnn import pad_packed_sequence, pack_padded_sequence\n\nfrom model_embeddings import ModelEmbeddings\nHypothesis = namedtuple('Hypothesis', ['value', 'score'])\n\n\nclass NMT(nn.Module):\n    \"\"\" Simple Neural Machine Translation Model:\n        - Bidrectional LSTM Encoder\n        - Unidirection LSTM Decoder\n        - Global Attention Model (Luong, et al. 2015)\n    \"\"\"\n    def __init__(self, embed_size, hidden_size, vocab, dropout_rate=0.2):\n        \"\"\" Init NMT Model.\n\n        @param embed_size (int): Embedding size (dimensionality)\n        @param hidden_size (int): Hidden Size, the size of hidden states (dimensionality)\n        @param vocab (Vocab): Vocabulary object containing src and tgt languages\n                              See vocab.py for documentation.\n        @param dropout_rate (float): Dropout probability, for attention\n        \"\"\"\n        super(NMT, self).__init__()\n        self.model_embeddings = ModelEmbeddings(embed_size, vocab)\n        self.hidden_size = hidden_size\n        self.dropout_rate = dropout_rate\n        self.vocab = vocab\n\n        # default values\n        self.encoder = None \n        self.decoder = None\n        self.h_projection = None\n        self.c_projection = None\n        self.att_projection = None\n        self.combined_output_projection = None\n        self.target_vocab_projection = None\n        self.dropout = None\n        # For sanity check only, not relevant to implementation\n        self.gen_sanity_check = False\n        self.counter = 0\n\n\n        ### YOUR CODE HERE (~8 Lines)\n        ### TODO - Initialize the following variables:\n        ###     self.encoder (Bidirectional LSTM with bias)\n        ###     self.decoder (LSTM Cell with bias)\n        ###     self.h_projection (Linear Layer with no bias), called W_{h} in the PDF.\n        ###     self.c_projection (Linear Layer with no bias), called W_{c} in the PDF.\n        ###     self.att_projection (Linear Layer with no bias), called W_{attProj} in the PDF.\n        ###     self.combined_output_projection (Linear Layer with no bias), called W_{u} in the PDF.\n        ###     self.target_vocab_projection (Linear Layer with no bias), called W_{vocab} in the PDF.\n        ###     self.dropout (Dropout Layer)\n        ###\n        ### Use the following docs to properly initialize these variables:\n        ###     LSTM:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.LSTM\n        ###     LSTM Cell:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.LSTMCell\n        ###     Linear Layer:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.Linear\n        ###     Dropout Layer:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.Dropout\n\n        self.encoder = nn.LSTM(input_size=embed_size, hidden_size=self.hidden_size, bias=True, bidirectional=True)\n        self.decoder = nn.LSTMCell(input_size=embed_size + self.hidden_size, hidden_size=self.hidden_size, bias=True)\n        self.h_projection = nn.Linear(self.hidden_size*2, self.hidden_size, bias=False) # W_{h}\n        self.c_projection = nn.Linear(self.hidden_size*2, self.hidden_size, bias=False) # W_{c}\n        self.att_projection = nn.Linear(self.hidden_size*2, self.hidden_size, bias=False) #  W_{attProj} \n        self.combined_output_projection = nn.Linear(self.hidden_size*3, self.hidden_size , bias=False) # W_{u}\n        self.target_vocab_projection = nn.Linear(self.hidden_size, len(self.vocab.tgt), bias=False) # W_vocab\n        self.dropout = nn.Dropout(p=self.dropout_rate)\n\n        ### END YOUR CODE\n\n\n    def forward(self, source: List[List[str]], target: List[List[str]]) -> torch.Tensor:\n        \"\"\" Take a mini-batch of source and target sentences, compute the log-likelihood of\n        target sentences under the language models learned by the NMT system.\n\n        @param source (List[List[str]]): list of source sentence tokens\n        @param target (List[List[str]]): list of target sentence tokens, wrapped by `<s>` and `</s>`\n\n        @returns scores (Tensor): a variable/tensor of shape (b, ) representing the\n                                    log-likelihood of generating the gold-standard target sentence for\n                                    each example in the input batch. Here b = batch size.\n        \"\"\"\n        # Compute sentence lengths\n        source_lengths = [len(s) for s in source]\n\n        # Convert list of lists into tensors\n        source_padded = self.vocab.src.to_input_tensor(source, device=self.device)   # Tensor: (src_len, b)\n        target_padded = self.vocab.tgt.to_input_tensor(target, device=self.device)   # Tensor: (tgt_len, b)\n\n        ###     Run the network forward:\n        ###     1. Apply the encoder to `source_padded` by calling `self.encode()`\n        ###     2. Generate sentence masks for `source_padded` by calling `self.generate_sent_masks()`\n        ###     3. Apply the decoder to compute combined-output by calling `self.decode()`\n        ###     4. Compute log probability distribution over the target vocabulary using the\n        ###        combined_outputs returned by the `self.decode()` function.\n\n        enc_hiddens, dec_init_state = self.encode(source_padded, source_lengths)\n        enc_masks = self.generate_sent_masks(enc_hiddens, source_lengths)\n        combined_outputs = self.decode(enc_hiddens, enc_masks, dec_init_state, target_padded)\n        P = F.log_softmax(self.target_vocab_projection(combined_outputs), dim=-1)\n\n        # Zero out, probabilities for which we have nothing in the target text\n        target_masks = (target_padded != self.vocab.tgt['<pad>']).float()\n        \n        # Compute log probability of generating true target words\n        target_gold_words_log_prob = torch.gather(P, index=target_padded[1:].unsqueeze(-1), dim=-1).squeeze(-1) * target_masks[1:]\n        scores = target_gold_words_log_prob.sum(dim=0)\n        return scores\n\n\n    def encode(self, source_padded: torch.Tensor, source_lengths: List[int]) -> Tuple[torch.Tensor, Tuple[torch.Tensor, torch.Tensor]]:\n        \"\"\" Apply the encoder to source sentences to obtain encoder hidden states.\n            Additionally, take the final states of the encoder and project them to obtain initial states for decoder.\n\n        @param source_padded (Tensor): Tensor of padded source sentences with shape (src_len, b), where\n                                        b = batch_size, src_len = maximum source sentence length. Note that \n                                       these have already been sorted in order of longest to shortest sentence.\n        @param source_lengths (List[int]): List of actual lengths for each of the source sentences in the batch\n        @returns enc_hiddens (Tensor): Tensor of hidden units with shape (b, src_len, h*2), where\n                                        b = batch size, src_len = maximum source sentence length, h = hidden size.\n        @returns dec_init_state (tuple(Tensor, Tensor)): Tuple of tensors representing the decoder's initial\n                                                hidden state and cell.\n        \"\"\"\n        enc_hiddens, dec_init_state = None, None\n\n        ### YOUR CODE HERE (~ 8 Lines)\n        ### TODO:\n        ###     1. Construct Tensor `X` of source sentences with shape (src_len, b, e) using the source model embeddings.\n        ###         src_len = maximum source sentence length, b = batch size, e = embedding size. Note\n        ###         that there is no initial hidden state or cell for the decoder.\n        ###     2. Compute `enc_hiddens`, `last_hidden`, `last_cell` by applying the encoder to `X`.\n        ###         - Before you can apply the encoder, you need to apply the `pack_padded_sequence` function to X.\n        ###         - After you apply the encoder, you need to apply the `pad_packed_sequence` function to enc_hiddens.\n        ###         - Note that the shape of the tensor returned by the encoder is (src_len, b, h*2) and we want to\n        ###           return a tensor of shape (b, src_len, h*2) as `enc_hiddens`.\n        ###     3. Compute `dec_init_state` = (init_decoder_hidden, init_decoder_cell):\n        ###         - `init_decoder_hidden`:\n        ###             `last_hidden` is a tensor shape (2, b, h). The first dimension corresponds to forwards and backwards.\n        ###             Concatenate the forwards and backwards tensors to obtain a tensor shape (b, 2*h).\n        ###             Apply the h_projection layer to this in order to compute init_decoder_hidden.\n        ###             This is h_0^{dec} in the PDF. Here b = batch size, h = hidden size\n        ###         - `init_decoder_cell`:\n        ###             `last_cell` is a tensor shape (2, b, h). The first dimension corresponds to forwards and backwards.\n        ###             Concatenate the forwards and backwards tensors to obtain a tensor shape (b, 2*h).\n        ###             Apply the c_projection layer to this in order to compute init_decoder_cell.\n        ###             This is c_0^{dec} in the PDF. Here b = batch size, h = hidden size\n        ###\n        ### See the following docs, as you may need to use some of the following functions in your implementation:\n        ###     Pack the padded sequence X before passing to the encoder:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.utils.rnn.pack_padded_sequence\n        ###     Pad the packed sequence, enc_hiddens, returned by the encoder:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.utils.rnn.pad_packed_sequence\n        ###     Tensor Concatenation:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.cat\n        ###     Tensor Permute:\n        ###         https://pytorch.org/docs/stable/tensors.html#torch.Tensor.permute\n\n        X = self.model_embeddings.source(source_padded) # X.shape (src_len, b, e)\n        X_packed = pack_padded_sequence(X, source_lengths) # X-packed.shape (src_len, b, e)\n        enc_hiddens, (last_hidden, last_cell) = self.encoder(X_packed) # enc.hiddens.shape (src_len, b, h*2)\n        enc_hiddens, len_pad =  pad_packed_sequence(enc_hiddens, batch_first=True) # shape (b, src_len, h*2)\n        init_decoder_hidden = self.h_projection(torch.cat((last_hidden[0], last_hidden[1]), 1)) # shape (b, 2*h)\n        init_decoder_cell = self.c_projection(torch.cat((last_cell[0], last_cell[1]), 1)) # shape (b, 2*h)\n        dec_init_state = (init_decoder_hidden, init_decoder_cell)\n        \n        ### END YOUR CODE\n\n        return enc_hiddens, dec_init_state\n\n\n    def decode(self, enc_hiddens: torch.Tensor, enc_masks: torch.Tensor,\n                dec_init_state: Tuple[torch.Tensor, torch.Tensor], target_padded: torch.Tensor) -> torch.Tensor:\n        \"\"\"Compute combined output vectors for a batch.\n\n        @param enc_hiddens (Tensor): Hidden states (b, src_len, h*2), where\n                                     b = batch size, src_len = maximum source sentence length, h = hidden size.\n        @param enc_masks (Tensor): Tensor of sentence masks (b, src_len), where\n                                     b = batch size, src_len = maximum source sentence length.\n        @param dec_init_state (tuple(Tensor, Tensor)): Initial state and cell for decoder\n        @param target_padded (Tensor): Gold-standard padded target sentences (tgt_len, b), where\n                                       tgt_len = maximum target sentence length, b = batch size. \n\n        @returns combined_outputs (Tensor): combined output tensor  (tgt_len, b,  h), where\n                                        tgt_len = maximum target sentence length, b = batch_size,  h = hidden size\n        \"\"\"\n        # Chop of the <END> token for max length sentences.\n        target_padded = target_padded[:-1]\n\n        # Initialize the decoder state (hidden and cell)\n        dec_state = dec_init_state\n\n        # Initialize previous combined output vector o_{t-1} as zero\n        batch_size = enc_hiddens.size(0)\n        o_prev = torch.zeros(batch_size, self.hidden_size, device=self.device)\n\n        # Initialize a list we will use to collect the combined output o_t on each step\n        combined_outputs = []\n\n        ### YOUR CODE HERE (~9 Lines)\n        ### TODO:\n        ###     1. Apply the attention projection layer to `enc_hiddens` to obtain `enc_hiddens_proj`,\n        ###         which should be shape (b, src_len, h),\n        ###         where b = batch size, src_len = maximum source length, h = hidden size.\n        ###         This is applying W_{attProj} to h^enc, as described in the PDF.\n        ###     2. Construct tensor `Y` of target sentences with shape (tgt_len, b, e) using the target model embeddings.\n        ###         where tgt_len = maximum target sentence length, b = batch size, e = embedding size.\n        ###     3. Use the torch.split function to iterate over the time dimension of Y.\n        ###         Within the loop, this will give you Y_t of shape (1, b, e) where b = batch size, e = embedding size.\n        ###             - Squeeze Y_t into a tensor of dimension (b, e). \n        ###             - Construct Ybar_t by concatenating Y_t with o_prev on their last dimension\n        ###             - Use the step function to compute the the Decoder's next (cell, state) values\n        ###               as well as the new combined output o_t.\n        ###             - Append o_t to combined_outputs\n        ###             - Update o_prev to the new o_t.\n        ###     4. Use torch.stack to convert combined_outputs from a list length tgt_len of\n        ###         tensors shape (b, h), to a single tensor shape (tgt_len, b, h)\n        ###         where tgt_len = maximum target sentence length, b = batch size, h = hidden size.\n        ###\n        ### Note:\n        ###    - When using the squeeze() function make sure to specify the dimension you want to squeeze\n        ###      over. Otherwise, you will remove the batch dimension accidentally, if batch_size = 1.\n        ###   \n        ### You may find some of these functions useful:\n        ###     Zeros Tensor:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.zeros\n        ###     Tensor Splitting (iteration):\n        ###         https://pytorch.org/docs/stable/torch.html#torch.split\n        ###     Tensor Dimension Squeezing:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.squeeze\n        ###     Tensor Concatenation:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.cat\n        ###     Tensor Stacking:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.stack\n\n        enc_hiddens_proj = self.att_projection(enc_hiddens) # shape (b, src_len, h)\n        Y = self.model_embeddings.target(target_padded) # shape shape (tgt_len, b, e)\n        for i in torch.split(Y, 1, dim=0): # torch.split(tensor, split_size_or_section, dim=0), Y_t.shape (1, b, e) \n          Y_t = i.squeeze(0) # Y_t.shape (b, e), o_prev.shape (b, h), squeeze explicitly at location\n          Ybar_t = torch.cat((Y_t, o_prev), dim=1)  # Ybar_t.shape(b, e+h), torch.cat(tensors, dim=0, out=None)\n          dec_state, o_t, e_t = self.step(Ybar_t, dec_state, enc_hiddens, enc_hiddens_proj, enc_masks) # dec_state, combined_output, e_t\n          combined_outputs.append(o_t) # shape (b, h)\n          o_prev = o_t\n        combined_outputs = torch.stack(combined_outputs, dim=0) # (tgt_len, b, h)\n\n        ### END YOUR CODE\n\n        return combined_outputs\n\n\n    def step(self, Ybar_t: torch.Tensor,\n            dec_state: Tuple[torch.Tensor, torch.Tensor],\n            enc_hiddens: torch.Tensor,\n            enc_hiddens_proj: torch.Tensor,\n            enc_masks: torch.Tensor) -> Tuple[Tuple, torch.Tensor, torch.Tensor]:\n        \"\"\" Compute one forward step of the LSTM decoder, including the attention computation.\n\n        @param Ybar_t (Tensor): Concatenated Tensor of [Y_t o_prev], with shape (b, e + h). The input for the decoder,\n                                where b = batch size, e = embedding size, h = hidden size.\n        @param dec_state (tuple(Tensor, Tensor)): Tuple of tensors both with shape (b, h), where b = batch size, h = hidden size.\n                First tensor is decoder's prev hidden state, second tensor is decoder's prev cell.\n        @param enc_hiddens (Tensor): Encoder hidden states Tensor, with shape (b, src_len, h * 2), where b = batch size,\n                                    src_len = maximum source length, h = hidden size.\n        @param enc_hiddens_proj (Tensor): Encoder hidden states Tensor, projected from (h * 2) to h. Tensor is with shape (b, src_len, h),\n                                    where b = batch size, src_len = maximum source length, h = hidden size.\n        @param enc_masks (Tensor): Tensor of sentence masks shape (b, src_len),\n                                    where b = batch size, src_len is maximum source length. \n\n        @returns dec_state (tuple (Tensor, Tensor)): Tuple of tensors both shape (b, h), where b = batch size, h = hidden size.\n                First tensor is decoder's new hidden state, second tensor is decoder's new cell.\n        @returns combined_output (Tensor): Combined output Tensor at timestep t, shape (b, h), where b = batch size, h = hidden size.\n        @returns e_t (Tensor): Tensor of shape (b, src_len). It is attention scores distribution.\n                                Note: You will not use this outside of this function.\n                                      We are simply returning this value so that we can sanity check\n                                      your implementation.\n        \"\"\"\n\n        combined_output = None\n\n        ### YOUR CODE HERE (~3 Lines)\n        ### TODO:\n        ###     1. Apply the decoder to `Ybar_t` and `dec_state`to obtain the new dec_state.\n        ###     2. Split dec_state into its two parts (dec_hidden, dec_cell)\n        ###     3. Compute the attention scores e_t, a Tensor shape (b, src_len). \n        ###        Note: b = batch_size, src_len = maximum source length, h = hidden size.\n        ###\n        ###       Hints:\n        ###         - dec_hidden is shape (b, h) and corresponds to h^dec_t in the PDF (batched)\n        ###         - enc_hiddens_proj is shape (b, src_len, h) and corresponds to W_{attProj} h^enc (batched).\n        ###         - Use batched matrix multiplication (torch.bmm) to compute e_t (be careful about the input/ output shapes!)\n        ###         - To get the tensors into the right shapes for bmm, you will need to do some squeezing and unsqueezing.\n        ###         - When using the squeeze() function make sure to specify the dimension you want to squeeze\n        ###             over. Otherwise, you will remove the batch dimension accidentally, if batch_size = 1.\n        ###\n        ### Use the following docs to implement this functionality:\n        ###     Batch Multiplication:\n        ###        https://pytorch.org/docs/stable/torch.html#torch.bmm\n        ###     Tensor Unsqueeze:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.unsqueeze\n        ###     Tensor Squeeze:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.squeeze\n\n        (dec_hidden, dec_cell) = self.decoder(Ybar_t, dec_state) \n        dec_state = (dec_hidden, dec_cell)\n        e_t = torch.bmm(enc_hiddens_proj, dec_hidden.unsqueeze(2)).squeeze(2) \n\n        ### END YOUR CODE\n\n        # Set e_t to -inf where enc_masks has 1\n        if enc_masks is not None:\n            e_t.data.masked_fill_(enc_masks.bool(), -float('inf'))\n\n        ### YOUR CODE HERE (~6 Lines)\n        ### TODO:\n        ###     1. Apply softmax to e_t to yield alpha_t\n        ###     2. Use batched matrix multiplication between alpha_t and enc_hiddens to obtain the\n        ###         attention output vector, a_t.\n        #$$     Hints:\n        ###           - alpha_t is shape (b, src_len)\n        ###           - enc_hiddens is shape (b, src_len, 2h)\n        ###           - a_t should be shape (b, 2h)\n        ###           - You will need to do some squeezing and unsqueezing.\n        ###     Note: b = batch size, src_len = maximum source length, h = hidden size.\n        ###\n        ###     3. Concatenate dec_hidden with a_t to compute tensor U_t\n        ###     4. Apply the combined output projection layer to U_t to compute tensor V_t\n        ###     5. Compute tensor O_t by first applying the Tanh function and then the dropout layer.\n        ###\n        ### Use the following docs to implement this functionality:\n        ###     Softmax:\n        ###         https://pytorch.org/docs/stable/nn.html#torch.nn.functional.softmax\n        ###     Batch Multiplication:\n        ###        https://pytorch.org/docs/stable/torch.html#torch.bmm\n        ###     Tensor View:\n        ###         https://pytorch.org/docs/stable/tensors.html#torch.Tensor.view\n        ###     Tensor Concatenation:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.cat\n        ###     Tanh:\n        ###         https://pytorch.org/docs/stable/torch.html#torch.tanh\n\n        alpha_t = F.softmax(e_t, dim= 1) # alpha_t.shape (b, src_len)\n        a_t = torch.bmm(alpha_t.unsqueeze(1), enc_hiddens).squeeze(1) # a_t.shape (b, 2h)\n        U_t = torch.cat((dec_hidden, a_t), 1) # (b, 3h)\n        V_t = self.combined_output_projection(U_t) #(b, h, 3h)\n        O_t = self.dropout(torch.tanh(V_t)) # O_t.shape (b, h)\n\n        ### END YOUR CODE\n\n        combined_output = O_t\n        return dec_state, combined_output, e_t\n\n    def generate_sent_masks(self, enc_hiddens: torch.Tensor, source_lengths: List[int]) -> torch.Tensor:\n        \"\"\" Generate sentence masks for encoder hidden states.\n\n        @param enc_hiddens (Tensor): encodings of shape (b, src_len, 2*h), where b = batch size,\n                                     src_len = max source length, h = hidden size. \n        @param source_lengths (List[int]): List of actual lengths for each of the sentences in the batch.\n        \n        @returns enc_masks (Tensor): Tensor of sentence masks of shape (b, src_len),\n                                    where src_len = max source length, h = hidden size.\n        \"\"\"\n        enc_masks = torch.zeros(enc_hiddens.size(0), enc_hiddens.size(1), dtype=torch.float)\n        for e_id, src_len in enumerate(source_lengths):\n            enc_masks[e_id, src_len:] = 1\n        return enc_masks.to(self.device)\n\n\n    def beam_search(self, src_sent: List[str], beam_size: int=5, max_decoding_time_step: int=70) -> List[Hypothesis]:\n        \"\"\" Given a single source sentence, perform beam search, yielding translations in the target language.\n        @param src_sent (List[str]): a single source sentence (words)\n        @param beam_size (int): beam size\n        @param max_decoding_time_step (int): maximum number of time steps to unroll the decoding RNN\n        @returns hypotheses (List[Hypothesis]): a list of hypothesis, each hypothesis has two fields:\n                value: List[str]: the decoded target sentence, represented as a list of words\n                score: float: the log-likelihood of the target sentence\n        \"\"\"\n        src_sents_var = self.vocab.src.to_input_tensor([src_sent], self.device)\n\n        src_encodings, dec_init_vec = self.encode(src_sents_var, [len(src_sent)])\n        src_encodings_att_linear = self.att_projection(src_encodings)\n\n        h_tm1 = dec_init_vec\n        att_tm1 = torch.zeros(1, self.hidden_size, device=self.device)\n\n        eos_id = self.vocab.tgt['</s>']\n\n        hypotheses = [['<s>']]\n        hyp_scores = torch.zeros(len(hypotheses), dtype=torch.float, device=self.device)\n        completed_hypotheses = []\n\n        t = 0\n        while len(completed_hypotheses) < beam_size and t < max_decoding_time_step:\n            t += 1\n            hyp_num = len(hypotheses)\n\n            exp_src_encodings = src_encodings.expand(hyp_num,\n                                                     src_encodings.size(1),\n                                                     src_encodings.size(2))\n\n            exp_src_encodings_att_linear = src_encodings_att_linear.expand(hyp_num,\n                                                                           src_encodings_att_linear.size(1),\n                                                                           src_encodings_att_linear.size(2))\n\n            y_tm1 = torch.tensor([self.vocab.tgt[hyp[-1]] for hyp in hypotheses], dtype=torch.long, device=self.device)\n            y_t_embed = self.model_embeddings.target(y_tm1)\n\n            x = torch.cat([y_t_embed, att_tm1], dim=-1)\n\n            (h_t, cell_t), att_t, _  = self.step(x, h_tm1,\n                                                      exp_src_encodings, exp_src_encodings_att_linear, enc_masks=None)\n\n            # log probabilities over target words\n            log_p_t = F.log_softmax(self.target_vocab_projection(att_t), dim=-1)\n\n            live_hyp_num = beam_size - len(completed_hypotheses)\n            contiuating_hyp_scores = (hyp_scores.unsqueeze(1).expand_as(log_p_t) + log_p_t).view(-1)\n            top_cand_hyp_scores, top_cand_hyp_pos = torch.topk(contiuating_hyp_scores, k=live_hyp_num)\n\n            prev_hyp_ids = top_cand_hyp_pos // len(self.vocab.tgt)\n            hyp_word_ids = top_cand_hyp_pos % len(self.vocab.tgt)\n\n            new_hypotheses = []\n            live_hyp_ids = []\n            new_hyp_scores = []\n\n            for prev_hyp_id, hyp_word_id, cand_new_hyp_score in zip(prev_hyp_ids, hyp_word_ids, top_cand_hyp_scores):\n                prev_hyp_id = prev_hyp_id.item()\n                hyp_word_id = hyp_word_id.item()\n                cand_new_hyp_score = cand_new_hyp_score.item()\n\n                hyp_word = self.vocab.tgt.id2word[hyp_word_id]\n                new_hyp_sent = hypotheses[prev_hyp_id] + [hyp_word]\n                if hyp_word == '</s>':\n                    completed_hypotheses.append(Hypothesis(value=new_hyp_sent[1:-1],\n                                                           score=cand_new_hyp_score))\n                else:\n                    new_hypotheses.append(new_hyp_sent)\n                    live_hyp_ids.append(prev_hyp_id)\n                    new_hyp_scores.append(cand_new_hyp_score)\n\n            if len(completed_hypotheses) == beam_size:\n                break\n\n            live_hyp_ids = torch.tensor(live_hyp_ids, dtype=torch.long, device=self.device)\n            h_tm1 = (h_t[live_hyp_ids], cell_t[live_hyp_ids])\n            att_tm1 = att_t[live_hyp_ids]\n\n            hypotheses = new_hypotheses\n            hyp_scores = torch.tensor(new_hyp_scores, dtype=torch.float, device=self.device)\n\n        if len(completed_hypotheses) == 0:\n            completed_hypotheses.append(Hypothesis(value=hypotheses[0][1:],\n                                                   score=hyp_scores[0].item()))\n\n        completed_hypotheses.sort(key=lambda hyp: hyp.score, reverse=True)\n\n        return completed_hypotheses\n\n    @property\n    def device(self) -> torch.device:\n        \"\"\" Determine which device to place the Tensors upon, CPU or GPU.\n        \"\"\"\n        return self.model_embeddings.source.weight.device\n\n    @staticmethod\n    def load(model_path: str):\n        \"\"\" Load the model from a file.\n        @param model_path (str): path to model\n        \"\"\"\n        params = torch.load(model_path, map_location=lambda storage, loc: storage)\n        args = params['args']\n        model = NMT(vocab=params['vocab'], **args)\n        model.load_state_dict(params['state_dict'])\n\n        return model\n\n    def save(self, path: str):\n        \"\"\" Save the odel to a file.\n        @param path (str): path to the model\n        \"\"\"\n        print('save model parameters to [%s]' % path, file=sys.stderr)\n\n        params = {\n            'args': dict(embed_size=self.model_embeddings.embed_size, hidden_size=self.hidden_size, dropout_rate=self.dropout_rate),\n            'vocab': self.vocab,\n            'state_dict': self.state_dict()\n        }\n\n        torch.save(params, path)\n"
  },
  {
    "path": "a4/outputs/.gitignore",
    "content": ""
  },
  {
    "path": "a4/outputs/test_outputs.txt",
    "content": " The Abraham said unto him, Moses and prophets; that he may be with them.\n “Well,” said Charlotte.\n Therefore shall not be ashamed of them, but shall not be given unto them, but to them that are in the flesh of their works.\n When he was going to the other side.\n And he shall say unto them, Because there be called by them, ye shall enter into the fire of fire, who is the devil and his angels.\n not in the evil work, but the righteousness of righteousness;\n which is not worthy of you, neither is no more with him:\n And there was no root of them, that the faith of faith were with them.\n And they were all amazed, they said to another, Know ye, not all these things are of Galilee?\n He took one of his own hand, but I’m not see the way of the mountains, but he could not be able to see it.\n Therefore is the throne of God before the throne, and found nothing of the temple, that day and night: and he that sitteth on the throne shall be with him.\n This is this to pass to God, for God hath been given to the Son of the world, that I may eternal life, that I may eternal life.\n But if we cast out demons in the temple of God, ye shall not see the kingdom of God.\n I guess I was a tree in the tree, and I would have a tree.”\n If he would make one of them, that ye may make one of them, all that thou hast made me: and if it is one of them, that he may be one for all.\n It went into the air and wiped their noses and ate.\n Even as it is written in the law of the law in the law of Israel;\n It was like so as it was in the day, the day of the day was in the day, and it was in the morning.\n Wilbur stood asleep.\n And they shall speak in the end of the tabernacle, to the rest of the rest of the Gentiles; but hope, that ye may be saved, ye may give me to go away from me;\n I’m going to me.\n He sat on the edge of the other side, he put them into heaven.\n I started a short man to keep a short man to keep a short man, and then the word that is at the ground, then then I was like a knife in the ground.\n Her egg sac sac.\n And as he had seen it, he took bread, and gave thanks, he gave them, and gave them, and said, This is my body.\n Perry went back to the ground and the sounds of the man, wet wet.\n Not me.\n And when they were come to pass, they were astonished, they began to say, Who is this, who did also also also?\n This was three days, when he went out again unto the second time.\n And if thy hand shall cause thee to stumble, it shall be cut off, and thou shalt eat: for it is good for thee, and thou shalt make it: for it is good for thee, that thou mayest be cast into the body.\n “I don’t feel life for the barn’s barn.\n But there was not a curse, even as it is a serpent; and when it was come, as I have sent you, even as ye are in Christ.\n And they shall not say that it is written, that the stones of the chief corner;\n “Oh, Charlotte,” she said.\n “I’m going to the Ferris wheel, but I’m not need.\n I say unto you, I will keep you; for it is, I will give you: I pray thee, ye shall die.\n whose Father is greater than all, and I cannot be able to my Father.\n The spider seemed to the web, This is the web seemed to the spider.\n It was like the winds of the air.\n Yea, who is the law of the law, but the law of the law,\n And he said unto him, Friend, why do ye that thou art here that thou art? And they were afraid.\n Salute another with love with love.\n <unk>II.\n For whatsoever is no one that is in the things; he that doeth all things are the things of God.\n “What are you going to do?” asked asked.\n And Jesus answered and said, Nay, I know not the way of your fathers, what ye shall see the cup of the cup of the cup of the cup of the cup, and it is able to do with me?\n And they took the fire in the fire, and the fish, and the fishes.\n But though it is good for thee for thee.\n “I’m going to eat, and his tail was sitting in the sun.\n And when we had seen, we saw, and set on the right hand, and found on the right hand of the ship; and there was a ship of the ship.\n Now I say, And ye shall speak in the name of the Lord, that ye should not receive the rest of the Gentiles according to the rest of the Gentiles,\n Know ye not, that the sabbath day of the sabbath day in the sabbath, and not seen the sabbath, and have not seen the things which are in the sabbath.\n You'll get you, Wilbur!\n Remember the law, that thou shalt not commit adultery, Thou shalt not steal, Thou shalt not steal, Thou shalt not steal, thy father, and thy mother.\n And when he went to the door of the door, and said unto Peter, Art thou also this man? I am not.\n For this is the love of God, that he may keep his commandments to the law; and the law is not.\n “I don’t think it’s going to sleep, Wilbur, in the corner of his mouth and Wilbur would not be the way of Charlotte’s children.\n And in the blue, of gold, with gold, with their handss.\n <unk>erily I say unto you, This generation shall not pass away.\n You’re all my morning.”\n And there are the disciples of the disciples.\n and when I beseech thee, I pray thee, I pray thee not a new law; I am not a new law;\n He went back to the dump and went back to his house.\n And, behold, this voice came out of heaven, This is my beloved son, that it is well.\n Then do good good tree, and shall be done evil evil evil; for it is a tree that is in the world.\n One morning Wilbur.\n Mrs milk.”\n And he that followed him, and saw him; and the flood was left, and took him.\n But let him know that the Son of man shall be in the world, then saith unto him, Arise, go up unto thee, and go.\n Bear, when we went up to the mountains, and he could not see the other side of the other, but he didn’t feel the other.\n <unk>nto the multitude of the multitude, because they were three days three days, because they were not three days;\n And they that were with him, they brought him out of the demons, and gave him a pig.\n For as I had known unto God, the people of the testimony of the testimony of the law, that they may eat and rulers, and for them that are in the same.\n For your faith were gone down from all men.\n And when they heard these things, and they that were with him, they were not afraid.\n Now there was a certain man named C<unk>sarea, a centurion, a centurion, a centurion, of the centurion.\n Fern was sitting in the edge of Fern, and I’d going to another.\n And he said also a parable unto them: There is one of the fig tree that he had taken out of the vineyard: and when he was come, he rose up, and he was not afraid.\n And I will give thee thee, and ye shall be with me: and because I have found me.\n And Philip said unto him, two hundred and the bread that is not able to make one of them.\n And he went out another, and said unto them that were bidden, and said unto them that were with us.\n When he fell down to the ground.\n Then another spider.\n And when John came to him, and began to say unto John the people; how are ye into the wilderness?\n But they told them not.\n But when I saw it, though I have found you in the book of the book, ye cannot do evil evil, but evil evil: for it is in evil evil evil.\n But we know that the truth is true, and I thought that they might have been made.\n He went back to be a long time to be a long time to be a long time to be the water.\n There was also that two thousand came also two talents.\n Then he went on the eleven disciples to the disciples,\n The Jews therefore said, What shall I tell him? saying, I will not go.\n When it came to the top of the air, and she sat down from the ground, and then it was a deep.\n And they brought him to him, Paul said unto him, The centurion came unto the centurion of the centurion.\n “Look out for it!” he Fern.\n Lurvy went and went up and went on his own hand.\n It was like a lot of wood.\n He that is born in his own body, that we might receive the body, that we might be made for a sin unto righteousness;\n This will I live with me.\n He would have a swim in the straw.\n And in the midst of the web.\n And they said, Because thou hast found in the presence of Moses, and in the country.\n And they that were not ignorant, let him hear. And they tell me, whose is the greatest?\n Mr.\n He was tired and happy.\n “Well, Wilbur!” said the old sheep.\n By faith he himself, and the child, and the child in the child, because that which was come to pass, because that he was promised, because he was promised.\n But I say, Is not I say unto you? yea, indeed ye have heard the world, and from the end of the earth.\n “Don’t worry, Templeton!” said Charlotte.\n But when he was gone away, but I’m not going to be, when he didn’t want to sleep.\n So that we may make one of each one of each one of God.\n For I say unto you, There shall not come unto you, until ye say, This is the name of the Lord:\n And he answered and said, There is no man in the house of Egypt, the sheep of the sheep of the house of Israel.\n Beloved, because it is love: for love is the God of God, and one of the God of God;\n And these things also Abraham with all these things, that they should take them out of the first; and the first part of the Lord is faithful, even the Lord, who is in peace.\n Charley started with a stone in a rock, and put it into the top of his head.\n From the <unk>ueens, and rolled to the Ridges, and I’d like the Ridges of the Nation.\n “Yes, it is,” said Wilbur.\n <unk>p!\n And the last egg, he said, I will surely my son.\n “It’s name of him.\n “Well,” said the goose.\n “Good!” said Charlotte.\n They had seen the ground and then I had seen the best of the Nation and their own ones that had been able to visit their eyes in their eyes.\n For there are all things that are in the sight of God, yea, and <unk>erily is in the sight of God.\n In that, I’ll make me in the midst of the colonel’s office, the people’s people did not because of the peoples of many peoples of people.\n These are they that are sown in the way, that they went into the country, and went down into the midst of his hands,\n Please, I'm going to sleep!”\n <unk>erily he said this, “I’m going to know this barn in the barn cellar, and then the goose had been done to the goose.\n It was a brown and then in the ground, he sat down with two legs, and he began to keep the top of the ground, and he began to keep the top of the ground.\n For ye shall say unto the bread of bread, and this cup, The cup of the Lord, until he come.\n And if he rose up into the fire, and cast it out of the fire, that they may put him to him; but if thou shalt say unto thee, that ye may kill him, and doth me.\n Take heed unto you, and pray thee, if any man thinketheth me, if any man hath given you, even as ye also do.\n But ye shall not be of them, for your Father because ye have your father before you.\n This is the work which thou hast given me, my beloved brother, even as thou hast given me to be comforted.\n And I pray thee, and be filled with me, and in my name;\n Wherefore, my beloved, beloved, ye know that the things which is with you?\n The days seemed up and the Zuckermans and the Zuckermans were gone up.\n And the scribes of the one came to him, when they heard that they were sick, and saw that he had said that he had said, What is the works of the law?\n <unk>nto the name of John, in the midst of the seven times; Grace with you and peace from you that is before you, and, who is the seven spirits which are before thee:\n Mr.\n The chief priests and the chief priests and the elders shall come to death, and they shall see.\n And there was one of the four living creatures seven angels and seven angels, and the wrath of God, even for ever and ever.\n But concerning the Son of man’s Son, whose Son are in the world,\n And behold, I came to pass; and I will say unto you, I will give thee to give unto you, to give it to every man according to his works.\n These which I had said unto them, that the first which I had brought them before them in the sight of my people, to all the Jews, all the Jews,\n But Peter sent up the door at the door. Now the other disciple, and the chief priests, the high priest, and the chief priests, and the chief captain of him.\n The horses seemed to the goose, but the goose said.\n This is a good world.\n They answered him and said unto him, I am Abraham of Abraham’s seed, and I will not see it?\n And he that sent him by the way of them, when he saw it in the sight of it.\n And he said unto her a man, half a half.\n But if thou refuse to him, let him go to the poor to the poor, that they might receive the poor, and the blind;\n They shall not be with a stranger, let it be no wise.\n So in the end of sin is sin; and sin is the death of death.\n One house in a house in the house of it rose up in the dirt, and put it into the top of the fire, and in the top of the fire, and in the two side,\n “I’ll worry about here,” said Fern.\n “I don’t know what I don’t know the word.”\n “Yes,” he said.\n And when I was come to because of the time, I was in the sight of the swine.\n Then he looked up into the air.\n that the righteousness of righteousness, which is in the resurrection, the resurrection of the resurrection; and they gave them away of the resurrection.\n It seemed to the end of the end of it was very grievous to be.\n Perry’t not going to be a good way to the West, but I guessed it was not.\n “Do Fern Fern?”\n He that would not be found in the house of the dead, and see Mr. Zuckerman.\n And straightway the voice of Jesus went out from him, and said unto him, Sirs is, because thou art in the earth?\n And the Sodom of Sodom and they were casting into the dust of the dust: and he gave them that he had given unto them, and that he might be fulfilled that were in the sight of God,\n And he began to say unto them a vineyard, and found a vineyard, and took the wine of the wine, and laid the wine into the field, and went out from the field, and went out to the field.\n But when he was going out from the way, when she was in her corner, when she was going to Fern, that she would go back into the corner.\n This Moses spake unto Moses, that he said unto the children of Israel, The Lord shall be given unto you in the sight of your brethren.\n “This, one seven?”\n When he had left him, and went away to the master’s wombs, that they might make all that were with him.\n “Oalutations!”\n And he went to sleep.\n And he arose, and went up into the country, and dwelt in the midst of Olives; and he entered into the country; and not of him not.\n The goose came to pass, the seven goslings had gone up and seven goslings.\n whose are they that are not of the world, that they might not receive them, that they might not be able to speak unto the gospel of Christ, even as God.\n But he spake unto him, and said unto his hand, Arise, and sat down. And he arose and sat down.\n But when they saw it, when they were going down, and his wife shall be taken away; but when they were come down, and saw that, when they were gone, and saw the heaven.\n That he was coming from the city.\n But the other part of some rose up, and fell upon the ship.\n And there came to him, and took him on him, and said unto him, If thou wilt, thou canst make me.\n Wherefore he sent to me, that he might send them out of them.\n It was a few time, one of the other fish.\n And in the day, it is written in the book of David, until day, even as it is said, This day is this day, if ye shall say, This day is this day, if ye shall say unto you, to this day.\n And he said, This is I said, I pray thee, I pray thee, that I may go with them: and there shall I speak in all my sight and my mother.\n I'll let you see the pig.\n Don't now now!”\n This Crockett had been done to be with her friends, if he could be cut off the ground, and he could not be able to be a balloon.\n He went back into his yard.\n Sack for the first Grounds of the Fair Grounds, all the Zuckermans’s life.\n This is the things which I have spoken unto you, that they might eat.\n For if it was not able, that they might not drink of him: for the works of it is one of the one, no more.\n And they brought all his hand.\n And when they were in those days, that they were able to God; but when he had seen all the people all the people,\n And the morrow he brought them out of them, and took them with them. And the morrow was Peter, and to him that were with him in the brethren.\n And Peter and John came with them with them, and asked him, and John came into the third hour.\n And some of them believed, and gave them forth to Paul and Silas, and many rulers of God,\n <unk>for this is written, The multitude of the Gentiles have gone up into their father, whose are the Gentiles, who is the dead, whose are the dead,\n These things are the church of the church: If they say unto you, that ye may be saved, the disciples of God, are good.\n And they said, John the Baptist; but some of Elijah is Elijah; and others, a certain prophets.\n For ye know that the grace of our Lord Jesus Christ, who was given for us, but for you because of the works of his life, that ye may be given unto you.\n When they were going down.\n The length of the court was gone up, and I had a stone of stone: and the third part of the boat was upon the ship; and when the boat was in the earth;\n And he sent unto him Peter and John, saying, Go into the passover, that it may be light.\n and he did not know that he did not know that in Jesus: for Jesus went away from them; for they were there.\n Arise, behold, the sower went forth; behold, the sower went forth;\n Templeton.\n And all men shall be for all men’s sake.\n And they knew not no man: and there was no more come out of heaven.\n Wash you, that every good work of good work, that it may be well-pleasing to the gospel of Jesus Christ: for it shall be for ever and ever.\n I am the light of the world, that he that believeth on me is no more in darkness.\n And when Jesus saw it, he said unto them, Why do ye not bread with bread? yet yet yet ye received not the word of your own?\n On the morrow was in the morrow, he was standing in the morrow,\n I beseech you in the woods in the woods, I was able to be able to see the woods in the woods, I was able to see with the women.\n It was in his own.\n But he charged them, and said, It is not lawful in the spirit of you.\n but this is written, It is written, Behold, I send my servant before thy face, that thou shalt take before thee before thee.\n “Look, it!” cried Wilbur.\n And the angel said unto him, Go on, and thou shalt eat his feet. And he said unto him, Give me and drink.\n And the women of the women shall be with women, as the men of women, as the women of women were evil.\n Wilbur lay down his head.\n Because of us, in the knowledge of knowledge, now now we may be justified in the Holy Spirit, and the Holy Spirit is in love.\n But he was very far to the city.\n But he said unto him, If we be not ashamed of Moses, and the prophets, not also also also, whosoever was dead.\n Where is a man? Where is the old? Where is a piece of the world? Is not to God that are in the world?\n Everybody was proud in my mouth and said to his life in the world.\n I’m not here.\n He answered and said unto him, Whosoever shall hear me in the second time;\n He looked at a long time of his own hand, and I'll be across the top of his head, and I'll tell him across the ground.\n The boy said to the tree,\n Jesus said unto them, If you say, I pray you, some of the fishes?\n None of them.\n For a man loveth his wife according to the love: and so also the woman also with her husband.\n There was not able to live.\n He went back into the house and looked in the house.\n And he was dead, and took his hands with his hands, and took his hands on the way of the robe, and his face with his face.\n And Mary Mary, he made an Adullamite, whose name was pure; and he rose up with his feet, and sat in his feet with his feet.\n I will take my peace and ever.\n In that day ye shall go, and ye shall die: and I will not see the Father;\n that the faith of faith shall be justified in the power of God, that ye may be filled in the last last.\n And some of them would see Wilbur, that he would not make it a fire in the fire.\n And when he had said, And he had said, and the mystery of the mystery of Mary, saying, This is he that is with him.\n I know thy works, that thou mayest eat and drink; but I will not hear thee, and thou shalt live.\n In the Cherokees of the Cherokee people had been in the mountains.\n This is a good pig and a good pig.\n For the other side of the river was gone out of the river, and Fern had left the creek.\n And when they had come to him, brethren, brethren’s brethren, to say to them that believe: and when he was come, he spake to God the word of God.\n It was a knife in the creek, and I saw the end of the end of the month, by the end of the grandstand.\n And they could not be able to pass, this is now.\n “It’s all all.\n But I don’t know that I’m not. I’m not what it is like a long time.\n And there was a great multitude, and in the ark, and came into the ark, and went away to the ark.\n “Can I see?” asked the doctor.\n Having to be baptized of your hearts;\n After a while, he saw her back, he saw his head.\n He climbed into the edge of his pocket, and came back into the blanket, and came back into the woods.\n The men of the people go up to the ground, and they could not go out from the ground.\n <unk>for we would have been in the days of Christ, that we may believe in Christ.\n whose are they that believe not, because of all the land of righteousness, in all things have been made manifest.\n For ye know that ye know, brethren, that they might not be vain.\n to whom the glory of the glory of the glory which is given unto us:\n And they shall keep the hem of his mouth.\n And when he came near, there came near, there was a mount of Olives, all the mount of Olives, all that were done by the disciples, and told him a great multitude.\n Therefore saith therefore, Thou shalt eat thee, and go up unto the dead, and go up unto the dead, and Christ shall come unto me.\n They went back to the smoke of the air and was a pomegranate in the air.\n Now now, Lord, the Lord hath eternal eternal, neither shall not be able to God, and glory for ever and ever: Amen.\n Jesus said unto them, Because of the will of the will of his will, and that his works may be given me, that I may go.\n And I heard a voice of all things that are in the temple, and an hundred and forty years of the children of Israel.\n Be not therefore for them: for there is not nothing, that it should not be manifested, neither is nothing, neither is nothing.\n And Jesus lifted up his eyes, and saw a great multitude, he saith unto Philip, Whence I have done.\n Know ye not this, that they may know the Christ, and shall keep the glory of his glory.\n And the servant of the servant shall say these things. And the sons of the house shall say unto his servant, Go into the city, and in the city, and to the poor, and to the blind, and the blind.\n If I was not a very grievous to the ground and she was like a balloon.\n And when he had come to him, and say unto him, The good thing shall come to pass, and the poor shall say unto you, Thou art a good thing, and in the sight of my fathers,\n Wherefore, brethren, I pray thee, ye are not flesh, who are in the flesh.\n Charlotte felt Charlotte, and Wilbur was going to Wilbur.\n Furthermore, and I guess it was in the way, he was in the air.\n And he spake unto him, saying, Take heed unto us, how shall ye do? how long shall I give you?\n Salute the glory of our Lord Jesus Christ, because two of the Lord Jesus Christ.\n And all that were gathered together, and the governor, and the Lord.\n He was tired and she was going to sleep.\n The people seemed not the Cherokees of the Nation.\n But as as as as as as they were going, as ye were baptized; ye are afraid.\n It was a little city.\n But whosoever shall deliver me before men, because of the angels of God.\n The next day of the day we were going up to the day.\n And he took his garments, as as as as as were as as as as as as as he could no man in the world; it was no man in the world.\n Then, the web,” said the web, “I’m going to sleep.\n They beseech you, I pray you: I know that I am full of good; and I will establish you in all things of all things.\n Wherefore, brethren, we have sent you with you in all things, in all things, for your faith.\n I’m going to stand in the killers.\n And some of the fish, a fish of a large fish, a fish of the fish.\n But he knew that he could not believe it.\n And when Jesus saw him, the multitude of many witnesses were gathered together, and the Holy Spirit, and said unto him, <unk>nto the Spirit, I pray thee, and be no more.\n Now these are the scriptures, that they may be filled in the sight of their works, even so also I also.\n And there was a great house in the house of the house’s head and the knife were rolled up to the whites and his teeth.\n And I saw their eyes, and the birds of the Nation, and the power of the bridegroom, and of the tree which is in all manner of life:\n With some of the web I'll get a web in the spider, and the spider’s spider.\n And the fish shall say, Thou shalt eat the serpent?\n And there is a vow in her hand; and he leadeth his own hand, and casting them into the air, and gave him; but thy disciples came to pass; but they could not.\n In the end of it was across the log, and I was in the top of the trail, when they were in the top of the trail, and in the end of the trail in the trail.\n And when they were gone away, straightway they were left.\n For a while the old man had been gone to the old man.\n If ye know this, I know it.\n The spider's a spider’s web in the barn and the barn was a pigpen in the barn.\n “I don’t want to die!” he cried in a loud voice voice,\n And when he had taken the four corners of the four corners of his own wood.\n As at the way, there came across across the dark side.\n James, the God and Jesus Christ, who is called unto you, who are called you,\n If I said not to see the people’s people’s people’s people, I would have a young man and my mother’s sake and my mother’s neck, and I would have seen you.\n For I am not to speak unto you, but I hope to see you, but I hope to give you unto you, except the Lord.\n This is the first and the law.\n But thou shalt make it with you, and make thy brethren with thy brethren.\n Jesus therefore said unto him, I pray thee, I pray thee with a sword, with all the sword, with all the sword with the sword.\n And he took his head with his head with his head, and took with him a flood, and put it upon his head with him, and put upon the breastplate,\n For there shall be one according to the sin, that he should not receive the power of God, that he might be fulfilled of God;\n Now when it was no more, he went up into the mountains.\n And they went up to the rest, and they would not believe.\n “I’m going to sleep,” she thought.\n I don’t know what I said.\n And the officers that heard these things were come to pass. And when they heard it, they heard that they heard.\n “How?” said Charlotte.\n The little tree, what? said the boy.\n Blessed are they that dwell in the house, when they shall come in the way: <unk>erily, verily, I will say, <unk>erily I will say unto you.\n “That’s all,” said Wilbur.\n The chief priests and the officers saw him, they cried out, they cried out, and cried out, and said, Thou shalt not die.\n When Mr. Zuckerman went back into the house, and took her back into the pigpen.\n And let us make their hearts in your love and love, love in love and work,\n But Paul cried with a loud voice, saying, Thou shalt not kill thee, for we are here in all.\n This would have been done, he said.\n And the devil took him away from the mountain, and took him to him that were in the midst of the earth.\n For the grace of your faith are faith with faith; and it is not for yourselves;\n And when he had gone him out of all the region of Siddim, and they that were sick, they were amazed, and filled, and they that had possessed with demons, and with their heart; and they took them.\n And I saw the third part of the four living, like a mouth, and his mouth, and his mouth was like unto his mouth; and the dragon opened his mouth according to his mouth; and he shall bear his mouth in the sight of his mouth.\n Then he was like the top of the ground and it was a little sheep to the ground.\n “I don’t noticed a pig of Charlotte.\n And to the angel of the church: This saith the Son of God:\n And straightway the ears of them that were opened; and he laid them out of them, and blessed him.\n But I say unto you, Thou shalt love your hearts, that ye may do good good, and do good good, and blessed them.\n And when they heard it, they brought him to the Lord.\n But now now the law of the law because of the dead, because that he was dead; that there is a new Spirit unto him, and not in the sight of all.\n Are you all?\n Fern had buried her hair in her hair.\n I say unto you, that they should send them away from them?\n Take heed unto you, all that are in the flesh of the flesh: not as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as\n Wilbur.\n In the door of the door in the door, for the door of death, and to keep the way in the way to come to death.\n For the angels that are in the world, which is in the world, that he might be saved.\n And when they had sat down on the mountain, went on the mount.\n “You’s going on the web, there is a big-handed.”\n There was no any man.\n And in the blood of Stephen shall be in the blood of his blood; and when I came near to the dead, and to eat the dead, and to eat their garments.\n She went out of the river.\n As the children of children, the children, whoses, the children, too.\n Wherefore my heart is good, and I will eat with you, and also also in the hope of his hope;\n There was no more.\n Moreover the church also in the church where they were in the church. Salute my beloved beloved, who is in the beginning of Christ.\n This man shall come to pass in the sight of the Lord, and bring them up in the sight of the people, but as it was gone up.\n But the God of God is with grace, beingcause of our own salvation;\n The hot was hot.\n For whosoever shall be with him, and he shall die: but whosoever shall not be left, he shall be left.\n The younger people stood at the kitchen, and he walked back to them.\n And Jesus went forth to the disciples to the disciples.\n They were of the people rose up on the two men, and they took the other.\n And he that is in the temple, all the temple, and the flocks, and the sheep, and put it into the sheep, and gave them up to drink.\n Therefore then this is the birds of the birds, and I will send unto you, This shall I give you, and I will say unto you, I pray thee, and ye shall see it.\n Jesus said unto him, Dost thou not this, and if it is good, thou shalt receive the glory of God.\n And it was good good for God, that I may be given unto you, and with you.\n Jesus therefore therefore, when he was in all, that they might be fulfilled, that the scripture might be fulfilled, that he might be saved.\n Every one that walketh in the days of Christ, even as we have heard the mystery of God.\n One evening, when she had been across the top of the air and I’d her her wife to keep my wife, and I said.\n Don't tell you a little fish!\n But I say unto you, that Elijah came, and they knew not, but they would have no more. And the Son of man shall be according to the Son of man.\n If it came to the Fair, and he walked back to keep it for it.\n It seemed to be a minute in the mountains.\n And he said, <unk>erily I say unto you, This is the poor more than the more.\n One man shall say unto me that I am my name’s sake: and whosoever receiveth me, I am not of you, but that he sent me.\n He had two two men, and children and children and children and children.\n From it, that they would have something’s that which was something’s soil.\n And when he was come into the sea, he was filled with her hand: and they were afraid, and said unto him, Teacher, thou wiltst thou nothing?\n And there is no man that believeth on the lamp, neither shall not make it for it, neither is it, whose name is the light.\n The geese cheered.\n If ye shall ask in my name, that he may do.\n to whom he was come, and saw the grace of God, and he spake to the power of all the power of the Lord.\n In that day Jesus went into the house of Jesus, and the breadth thereof.\n And he called our brother’s brother, and I was afraid to see his brethren; but he would not see that it is not to come to come to come to come to death.\n And when he saw that he was round about the region round about, and went out of the heart of the heart, saying unto the man. And he went out from his hand, and let him eat.\n and not only, but God also with our Lord Jesus Christ, that ye may receive this day.\n He wanted to the new new world, he was peaceful.\n For our God abideth with us in Christ Jesus.\n And Philip, brethren, and Thomas, and Thomas, and James the son of Zohar,\n And in the synagogues, there was a spirit of unclean spirit, and rose up,\n And the next day, a boy.\n It was a long of wood, and I didn’t catch it a good way to the soldiers.\n I rose up with me.\n The heart of his heart shall not be ashamed of his heart, but in the sight, and in the sight of his life?\n “I don’t get on the other side of the air,” he said, “I’m going to get up.\n And he said unto them, What is a little multitude? John John.\n And he put the right hand into the hand of the hand; and straightway he left his feet, and took him on his hand.\n He sat on the table and his hands on the top of his hands and sat down on the top of his hands.\n The boy said, We’m going to the rest.\n This are the egg sac.”\n It was a good thing.\n Or Spirit I say unto you, Thou shalt not know thy soul: for what is I to do that I am of the Spirit?\n If I say unto you, I will not go unto you: for it is indeed, because I have seen you; but because of it is not, because I am not lawful for me.\n For they said, Take heed out of the land.\n And when Herod was taken away, and put him away his feet, and commanded him.\n Because of the beginning of the Lord Jesus our Lord Jesus, that he might receive his life in us.\n And I saw them that sat on the way; and the time of this time shall be done unto all these things.\n Grace to you and peace from God, and the Lord Jesus Christ.\n O Lord, ye that are of you, that ye may be one of you; but whosoever ye shall receive it, that no man may be saved.\n “I’m not going to sleep in the midst of the country.\n He fell down his head, and his knees, and his neck.\n By faith he shall be a stranger in the land of the land, as a great country, in the land of the land, even as many as Isaac with Jacob.\n What then shall they do? Shall I come with me? or he that is love, and the Spirit?\n And they made the other side of the gold.\n And when he got to the Avery, Avery, too.\n For though I am I to have a flesh in the flesh, if any man shall be able to speak in the flesh, I am the more.\n For there shall we say unto men? God is good? or if a good man doth not to my master?\n But I say unto you, that ye shall receive the glory of the day of the day of the day of the city.\n Now when they had told him, he showed the things concerning these things,\n And I will make thy right hand.\n And when they had brought their many multitude, and rose up, and gave them to them in the sight of them; and the multitudes were made.\n And he answered and said unto the Lord, Behold, Lord, in the midst of the poor; and if any man is given to the poor.\n But he made a rich man, but as a flower of a flower, even as it is like.\n The next day was dark and dark.\n And he spake unto him, and rolled him with him; and he was dead as he was as a very grievous; so that there was a great multitude,\n He that sat on his head across the fire with a knife.\n of the grace of Christ Jesus:\n “It’s a very hour,” said Charlotte.\n They fell down down.\n And there came to the other part of the other side of the mountains, when they had put it out of the top of the field, and it’t get it out of the top of the air, and it’t get it in the wilderness.\n For as he came to pass in the days of Noah, according to the Son of man.\n “I’m nothing to eat.\n And after these things I saw, and, behold, the ruler of the ark are the tabernacle;\n When Bear was in Bear’s day, Charley had been seen that which was not worthy of Bear.\n If I was going to pass in the mountains, down on the days of the days, and I sat down in the days of the days.\n And when he was very old in the old land of the ground in the city of the city, the words of the covenants on the Nation.\n It is very nice to you, but I said.\n And all the whole earth, and took them up with the saints, and blessed the city; and the fire may be put away from the heaven, and they eat.\n But But ye fast, let them go out, and let them go,\n And God shall be filled with the works of God,\n The second time I’ll see him, and I’ll see the pig.\n And when they had seen the people, they came to them that were with him, they spake unto them:\n And there shall be filled with him that he should not die.\n The truck of the truck, as it was like to the truck that had been like to the West.\n These things had the ground.\n Charlotte was afraid to see the web.\n And they could not see the child.\n For the Christ hath not been given to me, but to the gospel of the gospel; I am not worthy of them that believe, because of the gospel of Christ.\n And when even when it was come, the same is it unto you, that he might light on the day.\n And when he had brought it out of the people, he entered into his hand, and kissed him.\n And if ye shall be given unto you in peace, be peace in peace.\n Ye have heard that it is said, Thou shalt love thy neighbour, and take thy neighbor.\n He,” he said.\n That I have said unto you, and to see the day of Israel, for the children of Israel hath been spoken unto me.\n The woods are in the woods.\n They were gone down into the barn.\n But if ye shall eat of you, lest ye know that ye have no wise.\n Behold, your father is gone.\n even as ye know that we may believe with us, and now I have spoken of you.\n In the next day I came back to the ground, and I found in the three days of the next day.\n <unk>pons because he was gone up.\n From blood,” said Charlotte, in a man.\n And when he was come into the seventh day, the disciples came into the house, and followed him.\n And all the multitudes rose up throughout all the cities of all that were with him; for they were sore afraid; and he went out unto them.\n When Mr. Zuckerman heard the door, he planned to the door,\n “You’m going to the web,” said Mrs. Arable.\n “I’m going to know it.\n And ye all things, that ye may do one to another, according to the gospel of God.\n So that he was gone away, and they were amazed.\n But when they were going into the boat, and the wind fell upon the sea; and they were filled with the sea; and they were filled with water;\n Then the man’s servants came unto his servants, and said unto him, Art thou not a good seed to give thee? how shall they eat that which is evil?\n “What are your web?” asked Wilbur.\n and that no man should not let him not because of him, that he may save himself, and the name of the beast, and in his name.\n The colonel seemed to the colonel and the colonel would have the colonel.\n And he said, Peter, and he began to tell him.\n having been that which was given unto death, that death should not see death: and he is not worthy of God: for he yet yet he that had been made, for the works of God was made manifest.\n I'll know what the barn cellar.\n He said I was like a <unk>ueens.\n I don’t want to the Fair, and I'm too.\n And straightway he went out of the one, and took him into the castle, and put him out of the robe, and put them into the castle, and put them into the midst of the sea.\n Jesus saith unto him, I am the resurrection and life. He that believeth on me is dead, because he is dead.\n The next morning, as it were across the next morning, as it was like across the stockade.\n <unk>II.\n But when he saw, and his disciples came unto him, saying, I pray thee, I pray thee: for I was not afraid of her, but to the people.\n Let not be ashamed of his own mind, but some of them that believe; and it is good, that ye may know that ye have done unto you.\n For all the nations shall be made of the wine of the wine of the earth, and kings of the earth, and the kings of the earth, and the kings of the earth, that they should eat them out of them.\n to the power, because of righteousness, evilly, uncleanness, uncleanness, inwardly, in necessities,\n And he charged them all the evil evil, and to do the good thing that is in the land of Egypt, and to come in the sight of Pharaoh, and of all his house.\n and they shall put the head in the head, wherewith the whole body had made the body, and casting them out of them, and casting them out of them;\n And they all heard that they were gathered together with the sheep.\n But if if if if I could not make you if we would live.\n Jesus answered and said unto them, This is the temple in the temple, and in the day of the day I shall see me.\n All of all that Crockett had been in all.\n If I am not because I’m not because of it.\n Not that I would not go out of you, that he might bless him, and gave us out from heaven, and in the day that is in heaven;\n And they were gathered together with them, and told him, and told all the chief priests and the elders.\n The day was gone.\n Be not your brethren, ye know that ye know that ye have no more.\n Beware of God, according to the flesh of his sons;\n Templeton.\n unto the brethren, and your brethren in Christ, and peace from peace from God our Father and the Lord Jesus Christ.\n She’s head and the boys would not see the ground, they went out.\n I'll be a good time?”\n And he said unto him, Cast thee out and thee, and I will give thee a land unto thee.\n He sat in the midst.\n They went out, I said, I said.\n I will go down down to the ground.\n Then they all the second time, saying, It is not this man, but he is called Barabbas.\n He leaned with the rope.\n These are the Son of Zebedee, Mary his mother, and his brethren, and Simon, and Simon, and Simon?\n This is going to sleep.\n For the Lord hardened the eyes of the Lord, and the children of them, but the face of the Lord.\n If therefore shall come unto thee, and shall give thee to stumble, it shall be cut off from thee, and will give thee: it is good for thee, and thou shalt eat of the fire.\n Wherefore we sent unto him, that he might touch him, according to the end of his mind, according to the end of it.\n Mrs. Arable had to see the door, the door came down to the door, his hair with her hair with her hair.\n and Ram begat Jotham; and there begat Arphaxad; and Manasseh begat Arphaxad; and Manasseh begat Hezekiah;\n And they departed, they went away to the disciples, beholding him, and said. And when they came, they bowed on him, he fell down to the ground.\n But he said unto them, I have sinned my word.\n Now ye know that ye have no more, that I have no new, that I am not worthy of you, and that ye are true, we also also with us.\n Be not therefore that ye shall say, What is it, and what is it, and what shall they eat?\n They could not see them.\n And they gathered together all the way.\n And they that dwell on the law shall be given unto them, but they that were born of the law, and in the sight of the law.\n which whosoever rejecteth them that are sick;\n He that’s because of Bear’s office.\n And I beseech you, brethren, that ye may be given unto you; for ye shall speak in the book of the book.\n Mrs.\n And when the good priests and the officers went forth to meet them: for they feared the multitude, they are a stone.\n And in the manner of the roots of the roots of the trees: so that every tree that is good among you shall not be cast down into the fire.\n And they made a little while, he fell down and worshipped him, and worshipped him.\n This was come to come.\n From three days were gone up, even as I had been done in the ground.\n And in the end, I saw the chief captain of the colonel’s hand and I had told all the colonel’s bunch, and I had told all the word of Charley’s life.\n the son of Martha, the son of Matthat, the son of Matthat, the son of Matthat, the son of Melchi, the son of Zibeon,\n Thou shalt not the man of the Lord.\n “I’m all.\n For this cause we say, I am, and do nothing to me; and thou shalt not be evil of evil, and because of my salvation, or to be done,\n And Jesus answered and said unto them, I am one of you, If I say unto you, If ye know that I may tell you in my sight, this is this.\n And when he entered into the hand, he sat down, and was night.\n but there is a great body, but one body.\n That I had done all the people, I had told them out of them that had been spoken to them.\n And he took one of them, and said unto him, Shall we go to Jerusalem, and because thou knew that which is these things?\n But if ye do all things, that there is no man, or a man, whosoever believeth on him, and every one that doetheth him;\n “Aoets?”\n For he hath loved love the people, and in that day I will come to pass.\n Thou shalt make the law with the law, thou shalt make the commandments of the law;\n Lurvy Wilbur’s straw for Wilbur’s pen.\n For whosoever shall cup in the cup of the cup with my name in Christ: therefore I say unto you, I say unto you, I shall not see it.\n “How shall they see Wilbur?” asked Mrs. Zuckerman.\n But I sat down in the way, until I come unto me: then then shall I say unto him, Give me, and walk in the sight of the Lord.\n For there is no one that loveth him, he shall say unto him, that it is written, the world appeared unto you.\n “How is true,” he thought.\n The Cherokees of the Nation, I said.\n This is the ground.\n Beware of them, knowing that evil evil; but ye shall ask of them.\n But if ye shall be baptized in the law of the prophet, What shall not make a prophet in a prophet?\n Whosoever shall lose his life shall lose it: and whosoever shall lose his life in the world, who shall be to eternal life.\n She climbed to the ground, and she fell down down, and then bowed down.\n and he charged them that they were sitting in the midst of the house, and said unto them, Shall we have no house in the house of Jerusalem?\n But the Lord came near, and I say unto them, that I might be made manifest to the work, and to all the nations; and I was afraid of the mouth of my mouth.\n And it came to pass, as they came near unto him, when he came near unto him, a certain man was sitting into the tomb;\n Be not therefore that are in the sight of the faith, which is of the body.\n So then they would make them that they could eat them that they had fed them in the ground with them.\n And the people saw him, and followed him, and followed him, and fell down to the tomb, and they bowed down unto them.\n “He!” he said.\n I’ll get it back on Charley.\n The sabbath was very old.\n He sat down to the web.\n “I am,” said Wilbur.\n And I saw it, and I was going down in the night when I had said, I am a few.\n But that ye may know that the Son of man is able to save the world, <unk>erily I say unto thee, Arise, Take thy bed, and go thy way.\n The stone seemed a stone between a stone, and then it was a rock.\n “Charlotte?”\n <unk>II.\n And Jesus said unto him, Fear not: for whosoever is not lawful for us.\n And they also set their little little children, that he might eat: but the disciples saw that they saw him.\n Avery jumped to the other.\n And they appeared unto them that Elijah, and spake unto Moses; and Jesus said unto him.\n And he entered into the temple, and took him: and he sent him to the saints and widows, and brought them out of the living.\n And they that were in the midst of the horses’s ass, whose mouth was cast into his mouth, that his mouth was cast into the mouth of his mouth.\n “Oh, here, here!” said the gander.\n saying, What is ye that thou son of Christ, who is the Son of man?\n “I’m going to me.”\n And they said to another, Who shall I make a stone to the tomb?\n And the seventh angel sounded, and from heaven a great voice out of the earth; and they shall say unto the earth, and to them that are in Christ:\n For the poor always always; but I will not always always.\n But when Jesus heard it, he said unto them, that they should have no need of them, but they that are sick.\n He shall make one a wife, and the good sons and his head.\n Fear not: for your Father is good in the Lord.\n Woe unto you, scribes and Pharisees, hypocrites! for ye are the sea and the earth, and in the land of your faith.\n And they shall put him into the castle, he would not die:\n None of it is there, for that he is.\n Take your hands on you, and put it into your hands; ye shall be no wallet in his sacks, that they may not see the thief, that they should not take away.\n And when they had come to the church, and brought the church in the church of God, and gave them out of the Gentiles.\n Jesus was a demon with a demon; and the devil went a boy, and was made in the hour.\n I will go.\n And when he was in those days, that the same is begotten of the Spirit, even so is now.\n It was a grey grey body, he sat down under the ground.\n The barn was gone out from the barn, when he could see the fence of the fence.\n Seeing all these things that are sown in subjection unto them; and who will keep me in the last world.\n Asmeret climbed in the woods in the woods in the woods in the woods.\n Charley’s going to Charley’s tail, and the crowds and ate the ground and ate the men.\n But when Jesus saw it, when he saw much evil, he said, All things that are in the kingdom of God!\n who also also also the father of the circumcision, which is not of the circumcision, but also in the sight of our father Abraham, who was with us in uncircumcision.\n This is the thing of the land of the earth because of the thousand years.\n “Look out of it, Avery!” cried Mrs. Zuckerman.\n The children seemed in the air and then shall be in the air.\n Go back from me.\n And he spake unto the multitudes, and took the five loaves and the five loaves and the two fishes and two fishes.\n Then she looked for a while.\n but to the grace of our Lord and our Saviour Jesus Christ; for the glory for ever and ever. Amen.\n And the Lord said, Who is the good and the house of the house, that the lord of the lord of the lord of the lord of the lord of his lord’s house, that they might eat for them?\n I'm back to me.\n in the body of the body, having made manifest unto the body, that we may be manifested unto the body, that ye may be manifested from the body, and because of him;\n And after the two days he went forth, and went into Galilee.\n And Jesus went up from thence from thence, and went away from thence.\n A children of children, and then all the Fair.\n And he spake unto them, and went up, and went with them in the temple, and went with them in the temple,\n And behold, there came a certain ruler of the synagogue, he was called: and when he saw him, he fell on his feet,\n For that ye shall be in peace, then ye shall say, even as the woman hath taken away; and they shall not eat.\n “Good night, Charlotte!”\n For verily, I pray thee in the sight of thy son, and of the people, and of the people, and the people of Israel,\n and let not the poor of the Holy Spirit of God, that ye may receive him until day.\n He sat on the fence and went into the fence and went out into the pigpen.\n It’m going.\n “I’m going to me.”\n And when we came to pass, when we were come to pass at Macedonia, and sent into Macedonia into the second time, and go into Jud<unk>a, and go into Jud<unk>a, I pray thee.\n Now therefore the man shall cast out the hand of the ephod.\n The chief priests and the Pharisees heard it, and they heard that he had said.\n Ye are my beloved, and also God, with all things and righteousness, and I am not worthy of you;\n For we have been able to see the day, in that which is the power of the circumcision, that is the mystery of fornication,\n “This you!”\n And he charged them many things, and said unto his teaching,\n He was like a good way to Wilbur.\n And she took his own child, men’s child.\n And Paul said unto them in the night: and a certain man shall be called by him, he spake unto him, saying, Behold, I pray thee, and didst eat.\n In the ground of the ground.\n And God is the kingdom of God, because they were gathered together, because they say, and not the evil of their works.\n And whatsoever ye have done with us, because ye have heard of the law, and have mercy with them, that he might bless us.\n And he that sat in his house shall be well: but he that eateth not, he shall live.\n but he that walketh in the sight of God in the sight of God.\n Mrs, and two years came to Fern.\n I’m like a very grievous, and I’m like to get with you.\n The disciples therefore came to him, saying, Why do we that we should do?\n I was very fair to me.\n Wilbur didn’t understand.\n Mr.\n It was like the ground in the ground, though he could hear.\n Now I beseech you, brethren, because of his house’s house, that the first of the first shall be before you, and for his own saints,\n And they rose up again again the temple, and all the people came to him; and they went down, and kissed them.\n And they were filled with their heart.\n Wherefore therefore therefore that thou hast taken away from thee, which I have said unto thee, that I may be brought for you.\n Now there was before the mount side of Mary.\n The rat’s going in the rat’s in the rat’s in the top of the top of the truck.”\n And Jesus spake unto them their eyes, and straightway it was come: and they followed him.\n And they all their garments according to every man’s sake.\n “I’m going to eat one?”\n And it came to pass in those days, that they came unto C<unk>sarea into the earth.\n He wanted to stay and in the country.\n But I saw that which I have put to another law, that the law of the law is upon the law of the law of sin, and I will send them up to the law of the law of the law of the law of sin;\n Now a certain man was a certain man named God.\n But if a man be a widow or his sons, that they may receive them in their own lusts, and to eat them; for it is good, and because of God.\n who also also the things which I have done, that ye may be according to the same, that in the power of his power.\n And it shall be called unto God in the day of God for ever for the light of Christ, and showeth the things that is in Christ;\n I told you, when he was very old, but when he was very idea to them.\n But we are not vain of men that are of men.\n But when he went out and went out from the ground, it was a very little, and then he would have to see the scribe.\n And while they were yet, and sent them on the passover, Jesus was risen from the world, and I came to the world, that the Father would come unto the earth.\n This is a few time I appeared to pass.\n Many of them that sat down in the mountains’s office, they took them out of them.\n When the voice of the wilderness, saith he saith, Beware of the wilderness, saying, Make the Lord, let him go away.\n He climbed up into the straw, in the manure pile.\n He that would have been done, so that the blind man would come out of the river.\n But because of God, that ye have received the sin of sin, but ye received the things that were in the beginning.\n The cows and the barn grew to him.\n One of them, when I was going down to the city and came to the ground in the wilderness.\n What then shall we say then? Are ye not the truth? God forbid.\n And the foundation of the earth shall be done in the sight of the beast, and said unto them, This is the things that are upon the earth, which is the beast of the earth, which is the beast of the earth.\n And Jesus said unto him, I will go again.\n For we are not ourselves in our hearts, but Christ Jesus: and the things of the Lord Jesus.\n And there was a certain man that is in the place of the place: for they were very grievous concerning us all, because they had left him.\n And they were all, and were filled; and when he saw the broken pieces, seven baskets.\n I said, I didn’t want to keep the ground with the ground.\n “It’s a boy with me?”\n And he went away from the way of the tomb, that he might be fulfilled the signs which he had done for all things.\n Are ye greater than Abraham than the father of Abraham, who is the prophets? and there is the prophets.\n And Mary said, My soul shall be filled with us,\n In the sun was like the sun, the lights of the light, red and purple, and it seemed to beads of the barn, and then it was at the barn.\n which he gave us all things in all things and joy;\n And the mouth of his mouth cast out his mouth with his mouth with a great nation, whose people had a great nation; and they made a vineyard with a vineyard, and with the vineyard of God.\n “Do you Templeton?” asked Wilbur.\n For the Lord hath been given unto you also, that the Lord Jesus, in the night of the night;\n If I say unto you the word of your own husbands, but as it is as it: for some of them was going out from thee.\n And it came to pass on the sabbath on the first time, that the field was in the field; and the disciples went forth out of the field; and the disciples went forth out of their hands.\n Asmeret’s soil.\n “I’m going into the web,” said Mrs. Zuckerman.\n And when they had seen the word, they were astonished,\n And in the day we have been done unto you, that I may come unto you, that thou mightest the things that I may come to pass in the sight of it.\n “Yes,” said the spider.\n And Peter and apostles answered the apostles, and said, God is with you, and not the people.\n And the devil was a demon, and was afraid.\n “You's a web,” said Wilbur.\n Then he looked again and saw it, and saw it.\n Now we were sailing into the boat, and we had found a certain while we had found a certain man, whose name is a man, whose name of Macedonia;\n The rat, Wilbur, the warm, warming the goose.\n And straightway he sent forth the governor, and gave it to be given to his head; and he went, and sat down into the prison,\n He went to the other hand to the hand of his hand, and he left his hand across his hand in his pocket.\n Now now, they would go.\n And all the Jerusalem that were in Jerusalem heard him, for the field of the field, which is in the field, which is blood.\n and he gaveth him a certain priest of God’s house;\n He that sat on the people drew near to the people, and then they could see them that had been in the woods.\n They didn't tell him in the two days, and a while he was a while.\n For in whom I am both both of the Spirit, Father and Father.\n It seemed to sleep.\n And they rose up, and took him in the way of the tomb that were with him in the tomb.\n And Jesus answered and said unto them, Go to them, and Pharisees, and Pharisees:\n And he cried out with a loud voice, saying, Lord, let us not these things. And when he had said this.\n The rat would have to take their noses and climbed to wearing the rat.\n For it was a certain multitude of the Jews, and Jesus.\n For the end of these were the third part of the third part of silver, and for them that had been made unto them.\n Grace to you and peace from God, and the Lord Jesus Christ.\n Why do ye not say to me? but because ye have not able to speak.\n And they that received the word of God, and Jesus Christ, who all things things.\n But ye are not in the sight of the Lord,\n Beware and good joy; for as his mother shall be in heaven; for he shall be in the sight of the prophets.\n And there were certain of them that were able to enter into the midst of the elders and of their fathers, whose name is the seven spirits, whose are the seven spirits of the demons, who gave him out of the demons,\n Return that thou shalt take them out of the synagogues, and of the wonders of the truth in the name of Jesus.\n Wherefore I speak unto you, that ye may know all things.\n And they went to the Jews that followed him.\n And behold, there was a man with a great man, when he saw that it was a Pharisee: and when Jesus saw that it was written, he said unto him, My son, and it will be forgiven thee.\n He looked up.\n And Jesus shall love the truth and the people of God.\n And he said unto him, This man shall leave his father and his mother, and his mother’s wife, and the two flesh?\n “This, Wilbur!”\n I went back to the West, but to the West, to the West.\n They were both of the loaves of bread in the rivers of bread, arrayed up in the air, and a doughnut.\n Wilbur noticed the fence and told him the goose.\n Thou shalt not let any man go away: for I will give my mouth for the Lord Jesus.\n And thou shalt make a son of him, that Jesus shall go on him, and his people shall save him.\n He couldn’t want to his own, and his blood would have a good blood.\n The trap was hungry, and I’m going.\n I’m going to keep it, and I say, He.\n And the devil said unto him, If thou art the Son of God, that thou shalt say this bread.\n And when the Pharisees saw it, he said unto his disciples, Why doth not the publicans and sinners?\n Wilbur jumped.\n And while they were not filled with them, and asked them, and said unto them, Why have ye food?\n And when they heard these things, they were filled with their heart, and they should eat.\n having one of them that were dead, even as the stars of the stars shall be as the stars of the heaven, and in the sea of the sea;\n She was gone away from the dead, and he was dead.\n But it was very hand of it’s hand, that it might be able to say this time.\n And another angel came down into the east, and came to the east, that the life of God hath been given to God; and he cried out out of the four angels and the sea; and he cried out out of the four angels and the sea;\n And others fell upon them, and took up his face, and took his face with him, and took his face on him, and they have left his face, and said unto him,\n Blessed is the servant that servant, who shall come unto him.\n “I don't tell it, said Wolf. “I’m going.”\n But they that are unleavened bread by bread, that they may be the feast.\n When the night was at the night, when they were going out of darkness, that ye may eat the darkness, and bringeth them on the light.\n For when he had gone out of the way, he went out from them, the men of four hundred hundred and their hundred hundred and all that were with me.\n I went back to the mountains, and the river came out of the river, and across the river cellar.\n And when his sister was not known that he was not of them that had been done, than I had been done in the <unk>ueens.\n Woe unto you, ye!\n good good work in his heart: and evil evil evil evil evil evil evil: for he was in the heart of his mouth.\n I was afraid.\n And behold, an angel of the Lord spake unto him, and the day that he had brought him into the prison: and when he was come to Peter, he departed, saying, Arise.\n And it came to pass, when when she heard these things, when she heard these things, the child took her; and with him that were with the Holy Spirit,\n “It’s going,” he said.\n He sat out of his mouth and made red wine.\n They are of soil.\n This things Jesus spake unto them many things, and gave them not unto them.\n For it is written in the day, I pray thee, that they may eat, and the things which thou hast given me.\n And he answered and said unto him, Lord, I pray thee, now also, until I eat, until I eat, and will bless thee.\n But when the Jews saw the Jews, that I should send unto him unto C<unk>sarea; and I was not afraid that I should know that I should know that I should serve them.\n Mrs.\n I found one of them in a little time, though I had been in all all all that had been with me, and I was going out from the air and went out to the ground.\n And when he had said this.\n “I’m going to the end of the <unk>ueens, in the middle of the rocks, and a few wind, with a big wind, and a big wind, and a hinds, and a big wind, and a hints, with them that were in the air,\n But when they could swim in the mountains, and it was almost in the mountains, and in the top of the fire, and the top of it were in the air.\n What is a little thing? Shall say, He that is sown?\n rose up out from heaven!”\n She got to the ground.\n Jesus therefore, Jesus said unto Simon, Simon, thou art a son of daughter, thou art greater than him? He saith unto him, Yea, Lord, thou knowest that I love thee.\n Blessed are ye, as the Lord, as as as as as as as as as men;\n For the knowledge of the world shall be fulfilled of God; for it is written, Thou shalt not say unto you the word of the world.\n This is this <unk>which’s <unk>ncle throughout all.\n And they shall say that they should not go in the way: there shall be the weeping and the gnashing of teeth.\n If the brethren have said unto them, Thou shalt love the word of the faith of Christ, having been made known unto the faith of faith, and the gospel which is in Christ.\n Bear would have to be a short time to Bear.\n I looked back to me, what I would have to you to be a while.\n Now I’s children’s sons and her children’s children.”\n And he came to him in the city of Galilee, and asked him, saying, We know that we have heard the name of Jesus.\n For there is not the ox and the sheep of the blood of sin.\n Ye are the prophets, and the sons of the sons of God, which God spake unto the fathers of Abraham, and of thy seed shall be blessed.\n “How?” asked Wilbur.\n Mr.\n She was a loud time, and he could see it.\n If you would have to keep you to keep the way to keep the child: and there shall be a little while thou shalt be of them:\n And then, when he had gone out of the ground, and Mrs.\n The Spirit of the Lord because of the Lord’s hand, I pray thee to the gospel of the poor; I pray thee to the gospel of the poor;\n And the heavens shall be of the Son of man’s house, and then shall all the earth, and the Son of man in the earth, and the power of great glory.\n Brethren, brethren, and our brethren, ye shall say unto me, when I came nigh unto me.\n Moreover, the Lord knoweth the word of the Lord, that is in vain.\n My righteousness is true, and then shall be taken away:\n And he shall be called unto the Lord, and neither shall not drink of wine, and of shittim wood; and it shall be full of the Holy Spirit.\n But when it was come to pass in the days of death, God gave to the law,\n Behold, there was the ship of the ship, and they that are in the air, but they that were in the air, but when they saw that they should kill them.\n It was like a minute in the manure’s pen.\n I reached to me, I don’t say to me, in Wilbur.\n This is a night by the night.\n Martha saith unto him, Lord, I am not lawful: how how shall we know that he is.\n Ye because of the gospel of the gospel which is written in the first day:\n And they rose up unto them, and told him every man said unto him, Lord, we do it?\n But when he saw Peter, he was asleep, and said, Thou also also also with us with us.\n Let take your glory with him.\n And he sent forth another another; and they did eat him; and there was many other; but some of them, and others.\n And he answered them, and said unto them, Whose shall eat of you, and the ox that is in the sabbath?\n the son of whom the son of the Gentiles, that I should show him unto the Gentiles; straightway they were not, and blood of blood;\n And the child grew, and gave it out of the country, and went down in the midst of Israel.\n He that overcometh, let him hear.\n “Well,” replied Fern.\n The truck into the truck,\n Do you have a few time you?”\n And when Jesus saw that he saw, he said unto them, Why do ye not the woman? for it was well with her head.\n For as many prophets is the prophets and the law of John.\n For John was come unto you in the sight of it, and did not believe: but the publicans and the women, and the women that were at the daughters of the women,\n And when they came to pass on the days, he sent forth his wife unto his wife, that he might be fulfilled, he spake unto Paul; and heard of the faith of Christ.\n She reached over his own hand, but as though it was like to the ground, and I did not again again.\n “I think that it was going to live in the air, Mr. Zuckerman.\n There was a few time in the year.\n whose shall I speak with thee, and thy son: and when they were gone out of them that believe.\n When he was a certain of man, who was a good man, who was a good way to the mother of his mother.\n For if we believe not, because we have seen God; and if I have given you, because I am.\n And it was a sign of the prophet.\n in that manner of the world was according to the end of the world, according to the Spirit of faith;\n And Jesus said unto them, All ye shall be with you in this night: for it is written, I will make the sheep of the sheep, and the sheep shall be healed.\n And when I saw the morrow on the morrow, I pray thee on the morrow, and on the morrow I came unto Damascus: and we went out from the morrow, we came to Damascus.\n And they rose up in the temple, and in the temple, and preaching the gospel of Jesus Christ.\n And he rose up many things: but Paul had said, and said unto him, The Spirit that is in the name of Jesus Christ; and when he went out from the way.\n He would not let us go away from our heart, and the power of faith, and of faith, and of faith, and in the wilderness,\n In the judgment, the Lord said unto the world of the world.\n And if it were some of some time, they took him into the wilderness, and put it into the wilderness to the tree that thou hast made me, and according to the tree that thou hast made me:\n Don’t want to go out of the ground.\n And straightway they spake before him, they took the one of the twelve, Judas, one of the twelve,\n And the flesh of the flesh is not worthy of God.\n For we are not able to speak, but because of the truth.\n “Oh, I can’t get for you,” he said.\n “You’s going to get down from Fern, so that the pig was about the pig.\n And after the four angels that were on the four angels that were on the four corners of the earth, they made a tree from the earth, that it may be made from the earth, and the tree.\n The word of the word which is spoken throughout all Jud<unk>a, Galilee of Galilee,\n “No,” said Charlotte, “I think I’m not a little pig.”\n And Jesus spake unto them, saying, Suffer the children of Jerusalem, let us not believe: but ye yourselves with yourselves, and your children.\n But he looked with him, he said nothing.\n And they rose up,” said Mrs. Arable, “I think it?”\n For I have not need of mine own hand.\n One one of them had brought them out of the stars.\n They ate them and ate them, and they would make their clothes on their clothes to them that they could make them out to the ground, but to make it to the ground.\n But there was no man among you, because of the Jews.\n To know the knowledge of your knowledge. He that rejecteth you, let him take a crown of life; for the men of men are six hundred and six.\n <unk>nto this day, that it is full of judgment, that ye may receive the judgment of judgment, because of the judgment which is in the judgment; because ye shall be in the world.\n That which the first came unto the first, that they might be according to the end of the Gentiles, according to the things which is written,\n And when the voice of his servants, and took him, and took him, and healed them.\n And when they heard it, they received their peace; and they glorified God, saying, This is the Gentiles that are God of God.\n Who is a truth, if it not that is in Christ Jesus Christ.\n But what saith he saith unto me, What is I to do with me? I am afraid of the seven thousand men.\n And when the door of the city came near unto the city, behold, a man was dead, and the son of her mother was with her mother, and was a widow: and there was a great city.\n And these are the good thing that was good, and the altar of the first month, the first part of the first month, to the end of it.\n Be not therefore to speak with you: but these things shall not be saved, that he may eat and drink of the brethren.\n Do you to get you out?\n “You'll get my right out!” said Avery, water water with water.\n And he said, What is it that he should give it? for the name of the Spirit is come to the dead;\n And on this day, I'll get everything on this day, everything on all.\n <unk>nto the God of God all, because of your hearts:\n I rode back from me to go down into the ground.\n And the multitude said, This is a prophet, of the prophet of Galilee.\n The sockets of the court were gone up to the water.\n And he came to his house, and his father did not believe.\n And when the cloud came out from the voice, saying, This is my beloved son, whom thou hast given me.\n “Charlotte?” he said.\n In the next time they had gone away, and it was a big time.\n “I think I said, I guess again again again again.\n Beware of the church of God, ye shall not speak with you, not with you, and not in your heart:\n They rose up to the Indians in the mountains to the mountains, and they were gone.\n And they took the name of the river, which came down to the ground, and the cocks of the air’s office.\n And it came to him that he would see it, and let him go away, and he would eat it in the mountains.\n If he was going out from the ground, and the boys had been in the <unk>ueens.\n “Well,” said Mr. Zuckerman.\n For there shall not enter into the holy place in the holy place, even the truth of the truth, which is in heaven; but from heaven,\n And thou shalt make the works of the law, that they may be able to speak with them;\n <unk>erily I say unto you, that he might send him into all that he had.\n “It’s going to be a half.”\n Wilbur closed his eyes.\n whom the name of the flesh is sown; which is the Spirit of the Spirit.\n And there was a great heaven in heaven.\n according to the Christ of Christ;\n And Pilate heard that he heard from Galilee, he asked the Galilee of Galilee, saying.\n Now now, and the birds of the world came to the world in the woods and of the world.\n But of you shall be of you, ye shall say unto you, that ye may come out of the field, that the field may come out from the field, straightway thou shalt say to me?\n I’m not know that the soldiers had been seen for the word, but as he could not see the boys, and they could not see them that they could not see them.\n and in the city of the city said unto him, The men of him that are sick against him, he sent forth out of them;\n It was a good time, and that his seed was with him, and with him that followed him.\n “I don’t know about Fern,” she said.\n The morning seemed in the woods and then it was not so as it was in the ground.\n “Oh, we'll go on a pail.\n For the power of the Jews spake unto him in the sight of the Jews, declaring to the scriptures in the scriptures Jesus Christ.\n But the Cherokees of the Ridge are the Ridges of the Ridge and Ridge Ridge, who had been seen in the city, and they could not see what they could not have been as as they had done.\n And, behold, thou shalt bring them forth, and shall be taken away, until the day of this day, because ye shall come to pass.\n And thou shalt make the breastplate of the gospel of peace;\n You'll tell this day.”\n But so ye also, if these things do these things, that he is in the door.\n They have some soil in soil.\n In the color of the Ridges and the Ridges of the air, the water of the water.\n And Seth lived, and begat Cainan;\n And he said unto them, The people shall rise against thee, and in the midst of the midst;\n Behold, I have a wife, and shall be a son, and shall be a son.\n Now in the sight of the days, I will be with you, in the sight of all men, and in knowledge of all men,\n And when they had done it in the Nation, but he didn’t swim for it.\n “I’m true.\n And he said unto them, Why do ye that ye hear? Because ye know that he should not enter into temptation.\n “Is it?”\n For he said, Thou shalt take his own hand, I pray thee.\n\n Wilbur grabbed the fence and the goose was gone.\n Why dost we have no more, Wilbur?”\n And she knew that he knew it’s children.\n But he said unto them, Be ye not.\n And when he was come to pass, and went into the wilderness; and the multitudes took him, and came to him, and came to him, that they should not drink.\n For it is all the book of the book, Thou shalt not make his right hand to the ox, and he doeth nothing.\n But he said, We have no poor to the poor, but the thief is a thief, but the thief is a thief;\n And as they that are with me <unk>which is the man; and it is good to the woman.\n “What do it?” asked Wilbur.\n They made their hands in their hand.\n And when they were come, he showed the word that is good; and that he might be justified in the sight of God our Saviour.\n “Fern,” said the mother of his mother.\n She knew that he knew it was.\n And he went out from Jud<unk>a and again again.\n He looked on the side, and Mr. Zuckerman and Mr. Zuckerman and Mr. Zuckerman.\n But he charged them, and told the disciples, and spake unto him, that he might go before him in Galilee;\n Now when we saw that, when we die, and he is hungry; and he was naked,\n Thou shalt not kill you:\n You’re going to you.\n And there came up unto Jerusalem, and all Jud<unk>a, and all that were in the Jordan,\n And he charged them, and said unto them, Why do ye good, and ye have heard? he is not only, but only.\n <unk>nto him, that they should not drink with him;\n And they drew near by him, and sat down in the land: and they went in, and sat down in the way.\n If I was going to pass on the mountains, and when he had been across the mountains to the mountains, and when they were going to the mountains.\n But he answered and said, It is not lawful to the children of the children of the children of the children of the children of the children of the children of the children of the children of the children of the children’s office.\n And there came to Jerusalem in Jerusalem the Jews to God in the sight of all the nations.\n And he saith unto me, These are I am with thee. I am the Alphy and the Amorite, the first and the last last.\n And the next day, when it came to pass, as the sun came near to the sun, and we came back unto the night by night.\n He came to him, that it might be fulfilled, that he might be saved.\n But I have sent unto you the gospel which ye have spoken unto you,\n And when he was come down from the Jordan, preaching the baptism of repentance, that they might be made manifest unto us;\n “I’m not going on the first time of the first time and the blood of blood!”\n But if thou shalt go in thy feet, and cast it into the house, and then shalt thou make in the door of thy father: and in secret shalt thou shalt surely come unto thee.\n The next day of the next pig, and then the next boys had taken up and here in the ground, and then they could see the water with them.\n “I don’t want to die.\n And when he sent me to me, and I will not any one of you, saying, Where art thou?\n for I am in remembrance of our faith.\n And I am not the world, but that I say, I am the world, that I will give you to my Father, that thou hast given me to be one, even as ye are one.\n In the light of the sky, the fats of the sky, the fats of the air, and the fats of the mountains, and the stars of the stars John.\n And he spake unto him all that were about all, he said unto the man, This is the man. And he gave her hand unto him: and he gave his hand unto the other.\n He stepped them.\n But they took both to another, and they would have to kill them.\n They came down down the ground on the ground, and there was across the ground in the ground.\n The book of the blood of the white whites of the fires of his teeth.\n It is like unto you, that, when I saw it, and I would not see it. And when they came out to the ground.\n And there was also Sodom and Gomorrah, and they that were near unto him, according to their fornication, according to the mystery of fornication,\n For as he would have been made manifest unto you all things.\n And he cried out the water of the water.\n And he came to Joseph a son of Joseph’s wife, the son of David was of David: and she was called Mary.\n That thou shalt make in the sight of him, that thou shalt take him, and that thou mayest be found manifest unto all all.\n She looked on the way.\n “Everye and gentlemen!” he said.\n The day, the apple tree.\n who is written in faith, that there may be filled with God, and rose up; and taking them in the flesh, and not with them.\n <unk>erily, verily, <unk>erily I say unto you, There is not greater than his lord; and he is not greater than he that is greater than he.\n For wherefore we have found them, ye shall be also.\n This people had been going to see Wilbur’s yard.\n In the edge of the fog, they would make the top of the ground in the front of the ground.\n And Jesus went up from thence from thence, he saw a man named <unk>us, and sat on him. And he arose and went away.\n And when they were very grievous in their own countrys of their own country.\n And the one of the city was twelve; and the twelve twelve, and the twelve twelve, and the twelve twelve, and the twelve Lamb,\n And one of them, who was a certain priest of the high priest, and said unto them, I know not, I know not, I know not what ye know nothing,\n And the king of the Lord said, This is we also in your hearts unto you: for I know that these things are not worthy of all things; for I know not this things.\n “Don’t worry, don't worry,” said the spider.\n When if the word of the Lord is the Lord, and the power of them.\n And again the second part of the tabernacle is the tabernacle of the tabernacle:\n But when they were come, they were afraid, that they might be on the day of the day of the judgment, and because of the man.\n of love the law is not of the law, and of goodness of faith;\n And there shall be a sign from heaven, and the signs of the seven angels, who are seven angels in the midst of the last: for the same God is in the wrath of God.\n When they could make the right hand of the snakess of his youths and rolled up across the top of the ground.\n It was like a few time, and for it.\n And when the dog had finished the dog, they would not see him.\n And when I went out from the middle of the scribe, with his sister’s office, and let us go out of the air.\n Mrs. Arable wanted to the table.\n But she looked asleep.\n You’ll us a sign in this point.\n The truck climbed to the truck.\n And when the high priest was high priest, a high priest’s mouth.\n"
  },
  {
    "path": "a4/run.bat",
    "content": "@echo off\nrem    Run this file on the command line of an environment that contains \"python\" in path\nrem    For example, in the terminal of your IDE\nrem    Or in the correct environment of your anaconda prompt\n\nif \"%1%\"==\"train\" (\n    set CUDA_VISIBLE_DEVICES=0 & python run.py train --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en --dev-src=./chr_en_data/dev.chr --dev-tgt=./chr_en_data/dev.en --vocab=vocab.json --cuda --lr=5e-4 --patience=1 --valid-niter=200 --batch-size=32 --dropout=.3\n) else if \"%1%\"==\"test\" (\n    set CUDA_VISIBLE_DEVICES=0 & python run.py decode model.bin ./chr_en_data/test.chr ./chr_en_data/test.en outputs/test_outputs.txt --cuda\n) else if \"%1%\"==\"train_local\" (\n    python run.py train --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en --dev-src=./chr_en_data/dev.chr --dev-tgt=./chr_en_data/dev.en --vocab=vocab.json --lr=5e-5\n) else if \"%1%\"==\"test_local\" (\n    python run.py decode model.bin ./chr_en_data/test.chr ./chr_en_data/test.en outputs/test_outputs.txt\n) else if \"%1%\"==\"vocab\" (\n    python vocab.py --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en vocab.json\n) else (\n    echo Invalid Option Selected\n)\n"
  },
  {
    "path": "a4/run.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n\"\"\"\nCS224N 2020-21: Homework 4\nrun.py: Run Script for Simple NMT Model\nPencheng Yin <pcyin@cs.cmu.edu>\nSahil Chopra <schopra8@stanford.edu>\nVera Lin <veralin@stanford.edu>\n\nUsage:\n    run.py train --train-src=<file> --train-tgt=<file> --dev-src=<file> --dev-tgt=<file> --vocab=<file> [options]\n    run.py decode [options] MODEL_PATH TEST_SOURCE_FILE OUTPUT_FILE\n    run.py decode [options] MODEL_PATH TEST_SOURCE_FILE TEST_TARGET_FILE OUTPUT_FILE\n\nOptions:\n    -h --help                               show this screen.\n    --cuda                                  use GPU\n    --train-src=<file>                      train source file\n    --train-tgt=<file>                      train target file\n    --dev-src=<file>                        dev source file\n    --dev-tgt=<file>                        dev target file\n    --vocab=<file>                          vocab file\n    --seed=<int>                            seed [default: 0]\n    --batch-size=<int>                      batch size [default: 32]\n    --embed-size=<int>                      embedding size [default: 256]\n    --hidden-size=<int>                     hidden size [default: 256]\n    --clip-grad=<float>                     gradient clipping [default: 5.0]\n    --log-every=<int>                       log every [default: 10]\n    --max-epoch=<int>                       max epoch [default: 30]\n    --input-feed                            use input feeding\n    --patience=<int>                        wait for how many iterations to decay learning rate [default: 5]\n    --max-num-trial=<int>                   terminate training after how many trials [default: 5]\n    --lr-decay=<float>                      learning rate decay [default: 0.5]\n    --beam-size=<int>                       beam size [default: 5]\n    --sample-size=<int>                     sample size [default: 5]\n    --lr=<float>                            learning rate [default: 0.001]\n    --uniform-init=<float>                  uniformly initialize all parameters [default: 0.1]\n    --save-to=<file>                        model save path [default: model.bin]\n    --valid-niter=<int>                     perform validation after how many iterations [default: 2000]\n    --dropout=<float>                       dropout [default: 0.3]\n    --max-decoding-time-step=<int>          maximum number of decoding time steps [default: 70]\n\"\"\"\nimport math\nimport sys\nimport pickle\nimport time\n\n\nfrom docopt import docopt\n# from nltk.translate.bleu_score import corpus_bleu, sentence_bleu, SmoothingFunction\nimport sacrebleu\nfrom nmt_model import Hypothesis, NMT\nimport numpy as np\nfrom typing import List, Tuple, Dict, Set, Union\nfrom tqdm import tqdm\nfrom utils import read_corpus, batch_iter\nfrom vocab import Vocab, VocabEntry\n\nimport torch\nimport torch.nn.utils\n\n\ndef evaluate_ppl(model, dev_data, batch_size=32):\n    \"\"\" Evaluate perplexity on dev sentences\n    @param model (NMT): NMT Model\n    @param dev_data (list of (src_sent, tgt_sent)): list of tuples containing source and target sentence\n    @param batch_size (batch size)\n    @returns ppl (perplixty on dev sentences)\n    \"\"\"\n    was_training = model.training\n    model.eval()\n\n    cum_loss = 0.\n    cum_tgt_words = 0.\n\n    # no_grad() signals backend to throw away all gradients\n    with torch.no_grad():\n        for src_sents, tgt_sents in batch_iter(dev_data, batch_size):\n            loss = -model(src_sents, tgt_sents).sum()\n\n            cum_loss += loss.item()\n            tgt_word_num_to_predict = sum(len(s[1:]) for s in tgt_sents)  # omitting leading `<s>`\n            cum_tgt_words += tgt_word_num_to_predict\n\n        ppl = np.exp(cum_loss / cum_tgt_words)\n\n    if was_training:\n        model.train()\n\n    return ppl\n\n\ndef compute_corpus_level_bleu_score(references: List[List[str]], hypotheses: List[Hypothesis]) -> float:\n    \"\"\" Given decoding results and reference sentences, compute corpus-level BLEU score.\n    @param references (List[List[str]]): a list of gold-standard reference target sentences\n    @param hypotheses (List[Hypothesis]): a list of hypotheses, one for each reference\n    @returns bleu_score: corpus-level BLEU score\n    \"\"\"\n    # remove the start and end tokens\n    if references[0][0] == '<s>':\n        references = [ref[1:-1] for ref in references]\n    \n    # detokenize the subword pieces to get full sentences\n    detokened_refs = [''.join(pieces).replace('▁', ' ') for pieces in references]\n    detokened_hyps = [''.join(hyp.value).replace('▁', ' ') for hyp in hypotheses]\n\n    # sacreBLEU can take multiple references (golden example per sentence) but we only feed it one\n    bleu = sacrebleu.corpus_bleu(detokened_hyps, [detokened_refs])\n\n    return bleu.score\n\n\ndef train(args: Dict):\n    \"\"\" Train the NMT Model.\n    @param args (Dict): args from cmd line\n    \"\"\"\n    train_data_src = read_corpus(args['--train-src'], source='src', vocab_size=21000)       \n    train_data_tgt = read_corpus(args['--train-tgt'], source='tgt', vocab_size=8000)\n\n    dev_data_src = read_corpus(args['--dev-src'], source='src', vocab_size=3000)\n    dev_data_tgt = read_corpus(args['--dev-tgt'], source='tgt', vocab_size=2000)\n\n    train_data = list(zip(train_data_src, train_data_tgt))\n    dev_data = list(zip(dev_data_src, dev_data_tgt))\n\n    train_batch_size = int(args['--batch-size'])\n    clip_grad = float(args['--clip-grad'])\n    valid_niter = int(args['--valid-niter'])\n    log_every = int(args['--log-every'])\n    model_save_path = args['--save-to']\n\n    vocab = Vocab.load(args['--vocab'])\n\n    # model = NMT(embed_size=int(args['--embed-size']),                                 \n    #             hidden_size=int(args['--hidden-size']),\n    #             dropout_rate=float(args['--dropout']),\n    #             vocab=vocab)\n\n    model = NMT(embed_size=1024,\n                hidden_size=1024,\n                dropout_rate=float(args['--dropout']),\n                vocab=vocab)\n    \n\n    model.train()\n\n    uniform_init = float(args['--uniform-init'])\n    if np.abs(uniform_init) > 0.:\n        print('uniformly initialize parameters [-%f, +%f]' % (uniform_init, uniform_init), file=sys.stderr)\n        for p in model.parameters():\n            p.data.uniform_(-uniform_init, uniform_init)\n\n    vocab_mask = torch.ones(len(vocab.tgt))\n    vocab_mask[vocab.tgt['<pad>']] = 0\n\n    device = torch.device(\"cuda:0\" if args['--cuda'] else \"cpu\")\n    print('use device: %s' % device, file=sys.stderr)\n\n    model = model.to(device)\n\n    optimizer = torch.optim.Adam(model.parameters(), lr=float(args['--lr']))\n\n    num_trial = 0\n    train_iter = patience = cum_loss = report_loss = cum_tgt_words = report_tgt_words = 0\n    cum_examples = report_examples = epoch = valid_num = 0\n    hist_valid_scores = []\n    train_time = begin_time = time.time()\n    print('begin Maximum Likelihood training')\n\n    while True:\n        epoch += 1\n\n        for src_sents, tgt_sents in batch_iter(train_data, batch_size=train_batch_size, shuffle=True):\n            train_iter += 1\n\n            optimizer.zero_grad()\n\n            batch_size = len(src_sents)\n\n            example_losses = -model(src_sents, tgt_sents) # (batch_size,)\n            batch_loss = example_losses.sum()\n            loss = batch_loss / batch_size\n\n            loss.backward()\n\n            # clip gradient\n            grad_norm = torch.nn.utils.clip_grad_norm_(model.parameters(), clip_grad)\n\n            optimizer.step()\n\n            batch_losses_val = batch_loss.item()\n            report_loss += batch_losses_val\n            cum_loss += batch_losses_val\n\n            tgt_words_num_to_predict = sum(len(s[1:]) for s in tgt_sents)  # omitting leading `<s>`\n            report_tgt_words += tgt_words_num_to_predict\n            cum_tgt_words += tgt_words_num_to_predict\n            report_examples += batch_size\n            cum_examples += batch_size\n\n            if train_iter % log_every == 0:\n                print('epoch %d, iter %d, avg. loss %.2f, avg. ppl %.2f ' \\\n                      'cum. examples %d, speed %.2f words/sec, time elapsed %.2f sec' % (epoch, train_iter,\n                                                                                         report_loss / report_examples,\n                                                                                         math.exp(report_loss / report_tgt_words),\n                                                                                         cum_examples,\n                                                                                         report_tgt_words / (time.time() - train_time),\n                                                                                         time.time() - begin_time), file=sys.stderr)\n\n                train_time = time.time()\n                report_loss = report_tgt_words = report_examples = 0.\n\n            # perform validation\n            if train_iter % valid_niter == 0:\n                print('epoch %d, iter %d, cum. loss %.2f, cum. ppl %.2f cum. examples %d' % (epoch, train_iter,\n                                                                                         cum_loss / cum_examples,\n                                                                                         np.exp(cum_loss / cum_tgt_words),\n                                                                                         cum_examples), file=sys.stderr)\n\n                cum_loss = cum_examples = cum_tgt_words = 0.\n                valid_num += 1\n\n                print('begin validation ...', file=sys.stderr)\n\n                # compute dev. ppl and bleu\n                dev_ppl = evaluate_ppl(model, dev_data, batch_size=128)   # dev batch size can be a bit larger\n                valid_metric = -dev_ppl\n\n                print('validation: iter %d, dev. ppl %f' % (train_iter, dev_ppl), file=sys.stderr)\n\n                is_better = len(hist_valid_scores) == 0 or valid_metric > max(hist_valid_scores)\n                hist_valid_scores.append(valid_metric)\n\n                if is_better:\n                    patience = 0\n                    print('save currently the best model to [%s]' % model_save_path, file=sys.stderr)\n                    model.save(model_save_path)\n\n                    # also save the optimizers' state\n                    torch.save(optimizer.state_dict(), model_save_path + '.optim')\n                elif patience < int(args['--patience']):\n                    patience += 1\n                    print('hit patience %d' % patience, file=sys.stderr)\n\n                    if patience == int(args['--patience']):\n                        num_trial += 1\n                        print('hit #%d trial' % num_trial, file=sys.stderr)\n                        if num_trial == int(args['--max-num-trial']):\n                            print('early stop!', file=sys.stderr)\n                            exit(0)\n\n                        # decay lr, and restore from previously best checkpoint\n                        lr = optimizer.param_groups[0]['lr'] * float(args['--lr-decay'])\n                        print('load previously best model and decay learning rate to %f' % lr, file=sys.stderr)\n\n                        # load model\n                        params = torch.load(model_save_path, map_location=lambda storage, loc: storage)\n                        model.load_state_dict(params['state_dict'])\n                        model = model.to(device)\n\n                        print('restore parameters of the optimizers', file=sys.stderr)\n                        optimizer.load_state_dict(torch.load(model_save_path + '.optim'))\n\n                        # set new lr\n                        for param_group in optimizer.param_groups:\n                            param_group['lr'] = lr\n\n                        # reset patience\n                        patience = 0\n\n                if epoch == int(args['--max-epoch']):\n                    print('reached maximum number of epochs!', file=sys.stderr)\n                    exit(0)\n\n\ndef decode(args: Dict[str, str]):\n    \"\"\" Performs decoding on a test set, and save the best-scoring decoding results.\n    If the target gold-standard sentences are given, the function also computes\n    corpus-level BLEU score.\n    @param args (Dict): args from cmd line\n    \"\"\"\n\n    print(\"load test source sentences from [{}]\".format(args['TEST_SOURCE_FILE']), file=sys.stderr)\n    test_data_src = read_corpus(args['TEST_SOURCE_FILE'], source='src', vocab_size=3000)\n    if args['TEST_TARGET_FILE']:\n        print(\"load test target sentences from [{}]\".format(args['TEST_TARGET_FILE']), file=sys.stderr)\n        test_data_tgt = read_corpus(args['TEST_TARGET_FILE'], source='tgt', vocab_size=2000)\n\n    print(\"load model from {}\".format(args['MODEL_PATH']), file=sys.stderr)\n    model = NMT.load(args['MODEL_PATH'])\n\n    if args['--cuda']:\n        model = model.to(torch.device(\"cuda:0\"))\n\n    hypotheses = beam_search(model, test_data_src,\n                            #  beam_size=int(args['--beam-size']),                      \n                             beam_size=10,\n                             max_decoding_time_step=int(args['--max-decoding-time-step']))\n\n    if args['TEST_TARGET_FILE']:\n        top_hypotheses = [hyps[0] for hyps in hypotheses]\n        bleu_score = compute_corpus_level_bleu_score(test_data_tgt, top_hypotheses)\n        print('Corpus BLEU: {}'.format(bleu_score), file=sys.stderr)\n\n    with open(args['OUTPUT_FILE'], 'w') as f:\n        for src_sent, hyps in zip(test_data_src, hypotheses):\n            top_hyp = hyps[0]\n            hyp_sent = ''.join(top_hyp.value).replace('▁', ' ')\n            f.write(hyp_sent + '\\n')\n\n\ndef beam_search(model: NMT, test_data_src: List[List[str]], beam_size: int, max_decoding_time_step: int) -> List[List[Hypothesis]]:\n    \"\"\" Run beam search to construct hypotheses for a list of src-language sentences.\n    @param model (NMT): NMT Model\n    @param test_data_src (List[List[str]]): List of sentences (words) in source language, from test set.\n    @param beam_size (int): beam_size (# of hypotheses to hold for a translation at every step)\n    @param max_decoding_time_step (int): maximum sentence length that Beam search can produce\n    @returns hypotheses (List[List[Hypothesis]]): List of Hypothesis translations for every source sentence.\n    \"\"\"\n    was_training = model.training\n    model.eval()\n\n    hypotheses = []\n    with torch.no_grad():\n        for src_sent in tqdm(test_data_src, desc='Decoding', file=sys.stdout):\n            example_hyps = model.beam_search(src_sent, beam_size=beam_size, max_decoding_time_step=max_decoding_time_step)\n\n            hypotheses.append(example_hyps)\n\n    if was_training: model.train(was_training)\n\n    return hypotheses\n\n\ndef main():\n    \"\"\" Main func.\n    \"\"\"\n    args = docopt(__doc__)\n\n    # Check pytorch version\n    assert(torch.__version__ >= \"1.0.0\"), \"Please update your installation of PyTorch. You have {} and you should have version 1.0.0\".format(torch.__version__)\n\n    # seed the random number generators\n    seed = int(args['--seed'])\n    torch.manual_seed(seed)\n    if args['--cuda']:\n        torch.cuda.manual_seed(seed)\n    np.random.seed(seed * 13 // 7)\n\n    if args['train']:\n        train(args)\n    elif args['decode']:\n        decode(args)\n    else:\n        raise RuntimeError('invalid run mode')\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "a4/run.sh",
    "content": "#!/bin/bash\n\nif [ \"$1\" = \"train\" ]; then\n\tCUDA_VISIBLE_DEVICES=0 python run.py train --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en --dev-src=./chr_en_data/dev.chr --dev-tgt=./chr_en_data/dev.en --vocab=vocab.json --cuda --lr=5e-4 --patience=1 --valid-niter=200 --batch-size=32 --dropout=.3\nelif [ \"$1\" = \"test\" ]; then\n        CUDA_VISIBLE_DEVICES=0 python run.py decode model.bin ./chr_en_data/test.chr ./chr_en_data/test.en outputs/test_outputs.txt --cuda\nelif [ \"$1\" = \"train_local\" ]; then\n\tpython run.py train --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en --dev-src=./chr_en_data/dev.chr --dev-tgt=./chr_en_data/dev.en --vocab=vocab.json --lr=5e-4\nelif [ \"$1\" = \"test_local\" ]; then\n    python run.py decode model.bin ./chr_en_data/test.chr ./chr_en_data/test.en outputs/test_outputs.txt\nelif [ \"$1\" = \"vocab\" ]; then\n\tpython vocab.py --train-src=./chr_en_data/train.chr --train-tgt=./chr_en_data/train.en vocab.json\t\t\nelse\n\techo \"Invalid Option Selected\"\nfi\n"
  },
  {
    "path": "a4/sanity_check.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n\"\"\"\nCS224N 2019-20: Homework 4\nsanity_check.py: sanity checks for assignment 4\nSahil Chopra <schopra8@stanford.edu>\nMichael Hahn <>\nVera Lin <veralin@stanford.edu>\n\nIf you are a student, please don't run overwrite_output_for_sanity_check as it will overwrite the correct output!\n\nUsage:\n    sanity_check.py 1d\n    sanity_check.py 1e\n    sanity_check.py 1f\n    sanity_check.py overwrite_output_for_sanity_check\n\"\"\"\nimport sys\n\nimport numpy as np\n\nfrom docopt import docopt\nfrom utils import batch_iter\nimport nltk\n# from utils import read_corpus\nfrom vocab import Vocab, VocabEntry\n\nfrom nmt_model import NMT\n\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.utils\n\n#----------\n# CONSTANTS\n#----------\nBATCH_SIZE = 5\nEMBED_SIZE = 3\nHIDDEN_SIZE = 3\nDROPOUT_RATE = 0.0\n\ndef reinitialize_layers(model):\n    \"\"\" Reinitialize the Layer Weights for Sanity Checks.\n    \"\"\"\n    def init_weights(m):\n        if type(m) == nn.Linear:\n            m.weight.data.fill_(0.3)\n            if m.bias is not None:\n                m.bias.data.fill_(0.1)\n        elif type(m) == nn.Embedding:\n            m.weight.data.fill_(0.15)\n        elif type(m) == nn.Dropout:\n            nn.Dropout(DROPOUT_RATE)\n    with torch.no_grad():\n        model.apply(init_weights)\n\n\ndef generate_outputs(model, source, target, vocab):\n    \"\"\" Generate outputs.\n    \"\"\"\n    print (\"-\"*80)\n    print(\"Generating Comparison Outputs\")\n    reinitialize_layers(model)\n    model.gen_sanity_check = True\n    model.counter = 0\n\n    # Compute sentence lengths\n    source_lengths = [len(s) for s in source]\n\n    # Convert list of lists into tensors\n    source_padded = model.vocab.src.to_input_tensor(source, device=model.device)\n    target_padded = model.vocab.tgt.to_input_tensor(target, device=model.device)\n\n    # Run the model forward\n    with torch.no_grad():\n        enc_hiddens, dec_init_state = model.encode(source_padded, source_lengths)\n        enc_masks = model.generate_sent_masks(enc_hiddens, source_lengths)\n        combined_outputs = model.decode(enc_hiddens, enc_masks, dec_init_state, target_padded)\n\n    # Save Tensors to disk\n    torch.save(enc_hiddens, './sanity_check_en_es_data/enc_hiddens.pkl')\n    torch.save(dec_init_state, './sanity_check_en_es_data/dec_init_state.pkl') \n    torch.save(enc_masks, './sanity_check_en_es_data/enc_masks.pkl')\n    torch.save(combined_outputs, './sanity_check_en_es_data/combined_outputs.pkl')\n    torch.save(target_padded, './sanity_check_en_es_data/target_padded.pkl')\n\n    # 1f\n    # Inputs\n    Ybar_t = torch.load('./sanity_check_en_es_data/Ybar_t.pkl')\n    enc_hiddens_proj = torch.load('./sanity_check_en_es_data/enc_hiddens_proj.pkl')\n    reinitialize_layers(model)\n    # Run Tests\n    with torch.no_grad():\n        dec_state_target, o_t_target, e_t_target = model.step(Ybar_t, dec_init_state, enc_hiddens, enc_hiddens_proj,\n                                                        enc_masks)\n    torch.save(dec_state_target, './sanity_check_en_es_data/dec_state.pkl')\n    torch.save(o_t_target, './sanity_check_en_es_data/o_t.pkl')\n    torch.save(e_t_target, './sanity_check_en_es_data/e_t.pkl')\n\n    model.gen_sanity_check = False\n\ndef question_1d_sanity_check(model, src_sents, tgt_sents, vocab):\n    \"\"\" Sanity check for question 1d. \n        Compares student output to that of model with dummy data.\n    \"\"\"\n    print(\"Running Sanity Check for Question 1d: Encode\")\n    print (\"-\"*80)\n\n    # Configure for Testing\n    reinitialize_layers(model)\n    source_lengths = [len(s) for s in src_sents]\n    source_padded = model.vocab.src.to_input_tensor(src_sents, device=model.device)\n\n    # Load Outputs\n    enc_hiddens_target = torch.load('./sanity_check_en_es_data/enc_hiddens.pkl')\n    dec_init_state_target = torch.load('./sanity_check_en_es_data/dec_init_state.pkl')\n\n    # Test\n    with torch.no_grad():\n        enc_hiddens_pred, dec_init_state_pred = model.encode(source_padded, source_lengths)\n    assert(enc_hiddens_target.shape == enc_hiddens_pred.shape), \"enc_hiddens shape is incorrect: it should be:\\n {} but is:\\n{}\".format(enc_hiddens_target.shape, enc_hiddens_pred.shape)\n    assert(np.allclose(enc_hiddens_target.numpy(), enc_hiddens_pred.numpy())), \"enc_hiddens is incorrect: it should be:\\n {} but is:\\n{}\".format(enc_hiddens_target, enc_hiddens_pred)\n    print(\"enc_hiddens Sanity Checks Passed!\")\n    assert(dec_init_state_target[0].shape == dec_init_state_pred[0].shape), \"dec_init_state[0] shape is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_init_state_target[0].shape, dec_init_state_pred[0].shape)\n    assert(np.allclose(dec_init_state_target[0].numpy(), dec_init_state_pred[0].numpy())), \"dec_init_state[0] is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_init_state_target[0], dec_init_state_pred[0])\n    print(\"dec_init_state[0] Sanity Checks Passed!\")\n    assert(dec_init_state_target[1].shape == dec_init_state_pred[1].shape), \"dec_init_state[1] shape is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_init_state_target[1].shape, dec_init_state_pred[1].shape) \n    assert(np.allclose(dec_init_state_target[1].numpy(), dec_init_state_pred[1].numpy())), \"dec_init_state[1] is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_init_state_target[1], dec_init_state_pred[1])\n    print(\"dec_init_state[1] Sanity Checks Passed!\")\n    print (\"-\"*80)\n    print(\"All Sanity Checks Passed for Question 1d: Encode!\")\n    print (\"-\"*80)\n\n\ndef question_1e_sanity_check(model, src_sents, tgt_sents, vocab):\n    \"\"\" Sanity check for question 1e. \n        Compares student output to that of model with dummy data.\n    \"\"\"\n    print (\"-\"*80)\n    print(\"Running Sanity Check for Question 1e: Decode\")\n    print (\"-\"*80)\n\n    # Load Inputs\n    dec_init_state = torch.load('./sanity_check_en_es_data/dec_init_state.pkl')\n    enc_hiddens = torch.load('./sanity_check_en_es_data/enc_hiddens.pkl')\n    enc_masks = torch.load('./sanity_check_en_es_data/enc_masks.pkl')\n    target_padded = torch.load('./sanity_check_en_es_data/target_padded.pkl')\n\n    # Load Outputs\n    combined_outputs_target = torch.load('./sanity_check_en_es_data/combined_outputs.pkl')\n    print(combined_outputs_target.shape)\n\n    # Configure for Testing\n    reinitialize_layers(model)\n    COUNTER = [0]\n    def stepFunction(Ybar_t, dec_state, enc_hiddens, enc_hiddens_proj, enc_masks):\n       dec_state = torch.load('./sanity_check_en_es_data/step_dec_state_{}.pkl'.format(COUNTER[0]))\n       o_t = torch.load('./sanity_check_en_es_data/step_o_t_{}.pkl'.format(COUNTER[0]))\n       COUNTER[0]+=1\n       return dec_state, o_t, None\n    model.step = stepFunction\n\n    # Run Tests\n    with torch.no_grad():\n        combined_outputs_pred = model.decode(enc_hiddens, enc_masks, dec_init_state, target_padded)\n    assert(combined_outputs_target.shape == combined_outputs_pred.shape), \"combined_outputs shape is incorrect: it should be:\\n {} but is:\\n{}\".format(combined_outputs_target.shape, combined_outputs_pred.shape)\n    assert(np.allclose(combined_outputs_pred.numpy(), combined_outputs_target.numpy())), \"combined_outputs is incorrect: it should be:\\n {} but is:\\n{}\".format(combined_outputs_target, combined_outputs_pred)\n    print(\"combined_outputs Sanity Checks Passed!\")\n    print (\"-\"*80)\n    print(\"All Sanity Checks Passed for Question 1e: Decode!\")\n    print (\"-\"*80)\n\ndef question_1f_sanity_check(model, src_sents, tgt_sents, vocab):\n    \"\"\" Sanity check for question 1f. \n        Compares student output to that of model with dummy data.\n    \"\"\"\n    print (\"-\"*80)\n    print(\"Running Sanity Check for Question 1f: Step\")\n    print (\"-\"*80)\n    reinitialize_layers(model)\n\n    # Inputs\n    Ybar_t = torch.load('./sanity_check_en_es_data/Ybar_t.pkl')\n    dec_init_state = torch.load('./sanity_check_en_es_data/dec_init_state.pkl')\n    enc_hiddens = torch.load('./sanity_check_en_es_data/enc_hiddens.pkl')\n    enc_masks = torch.load('./sanity_check_en_es_data/enc_masks.pkl')\n    enc_hiddens_proj = torch.load('./sanity_check_en_es_data/enc_hiddens_proj.pkl')\n\n    # Output\n    dec_state_target = torch.load('./sanity_check_en_es_data/dec_state.pkl')\n    o_t_target = torch.load('./sanity_check_en_es_data/o_t.pkl')\n    e_t_target = torch.load('./sanity_check_en_es_data/e_t.pkl')\n\n    # Run Tests\n    with torch.no_grad():\n        dec_state_pred, o_t_pred, e_t_pred= model.step(Ybar_t, dec_init_state, enc_hiddens, enc_hiddens_proj, enc_masks)\n    assert(dec_state_target[0].shape == dec_state_pred[0].shape), \"decoder_state[0] shape is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_state_target[0].shape, dec_state_pred[0].shape)\n    assert(np.allclose(dec_state_target[0].numpy(), dec_state_pred[0].numpy())), \"decoder_state[0] is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_state_target[0], dec_state_pred[0])\n    print(\"dec_state[0] Sanity Checks Passed!\")\n    assert(dec_state_target[1].shape == dec_state_pred[1].shape), \"decoder_state[1] shape is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_state_target[1].shape, dec_state_pred[1].shape)\n    assert(np.allclose(dec_state_target[1].numpy(), dec_state_pred[1].numpy())), \"decoder_state[1] is incorrect: it should be:\\n {} but is:\\n{}\".format(dec_state_target[1], dec_state_pred[1])\n    print(\"dec_state[1] Sanity Checks Passed!\")\n    assert(np.allclose(o_t_target.numpy(), o_t_pred.numpy())), \"combined_output is incorrect: it should be:\\n {} but is:\\n{}\".format(o_t_target, o_t_pred)\n    print(\"combined_output  Sanity Checks Passed!\")\n    assert(np.allclose(e_t_target.numpy(), e_t_pred.numpy())), \"e_t is incorrect: it should be:\\n {} but is:\\n{}\".format(e_t_target, e_t_pred)\n    print(\"e_t Sanity Checks Passed!\")\n    print (\"-\"*80)    \n    print(\"All Sanity Checks Passed for Question 1f: Step!\")\n    print (\"-\"*80)\n\n\ndef sanity_read_corpus(file_path, source):\n    \"\"\" Read file, where each sentence is dilineated by a `\\n`.\n    @param file_path (str): path to file containing corpus\n    @param source (str): \"tgt\" or \"src\" indicating whether text\n        is of the source language or target language\n    \"\"\"\n    data = []\n    for line in open(file_path):\n        sent = nltk.word_tokenize(line)\n        # only append <s> and </s> to the target sentence\n        if source == 'tgt':\n            sent = ['<s>'] + sent + ['</s>']\n        data.append(sent)\n\n    return data\n\n\ndef main():\n    \"\"\" Main func.\n    \"\"\"\n    args = docopt(__doc__)\n\n    # Check Python & PyTorch Versions\n    assert (sys.version_info >= (3, 5)), \"Please update your installation of Python to version >= 3.5\"\n    assert(torch.__version__ >= \"1.0.0\"), \"Please update your installation of PyTorch. You have {} and you should have version 1.0.0\".format(torch.__version__)\n\n    # Seed the Random Number Generators\n    seed = 1234\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed(seed)\n    np.random.seed(seed * 13 // 7)\n\n    # Load training data & vocabulary\n    train_data_src = sanity_read_corpus('./sanity_check_en_es_data/train_sanity_check.es', 'src')\n    train_data_tgt = sanity_read_corpus('./sanity_check_en_es_data/train_sanity_check.en', 'tgt')\n    train_data = list(zip(train_data_src, train_data_tgt))\n\n    for src_sents, tgt_sents in batch_iter(train_data, batch_size=BATCH_SIZE, shuffle=True):\n        src_sents = src_sents\n        tgt_sents = tgt_sents\n        break\n    vocab = Vocab.load('./sanity_check_en_es_data/vocab_sanity_check.json') \n\n    # Create NMT Model\n    model = NMT(\n        embed_size=EMBED_SIZE,\n        hidden_size=HIDDEN_SIZE,\n        dropout_rate=DROPOUT_RATE,\n        vocab=vocab)\n\n    if args['1d']:\n        question_1d_sanity_check(model, src_sents, tgt_sents, vocab)\n    elif args['1e']:\n        question_1e_sanity_check(model, src_sents, tgt_sents, vocab)\n    elif args['1f']:\n        question_1f_sanity_check(model, src_sents, tgt_sents, vocab)\n    elif args['overwrite_output_for_sanity_check']:\n        generate_outputs(model, src_sents, tgt_sents, vocab)\n    else:\n        raise RuntimeError('invalid run mode')\n\n\nif __name__ == '__main__':\n    main()\n    \n"
  },
  {
    "path": "a4/sanity_check_en_es_data/dev_sanity_check.en",
    "content": "And the question that I want to ask everybody here today  is are you guys all cool with that idea?\nBAA: Yes. What this is really doing is discovering,  creating hyperlinks, if you will, between images.\nIt's very gratifying to have this kind of reception here.\nNow, together the myriad cultures of the world  make up a web of spiritual life and cultural life  that envelops the planet,  and is as important to the well-being of the planet  as indeed is the biological web of life that you know as a biosphere.\nI'm not telling you about it because I want to use it.\nI look forward to talking with all of you.\nHere's an example of it:  there's an organism called  Deinococcus radiodurans  that can take three millions rads of radiation.\nBut -- I felt worse.\nHe was smuggled into the jail at the age of two  to hide beneath her skirt tails  because she couldn't bear to be without him.\nIt's nothing if not ambitious.\nAnd \"Ol!\" to you, nonetheless.\nNow, the fascinating things  are that the beta-carbolines found within that liana  are MAO inhibitors of the precise sort necessary  to potentiate the tryptamine. So you ask yourself a question.\nAnd you say, \"Doc, what should I do?\"\nI should just put it bluntly, because we're all sort of friends here now --  it's exceedingly likely that my greatest success is behind me.\nWhy do they market to us if we can't buy them?\nAnd the disasters around the world  have been increasing at an absolutely extraordinary  and unprecedented rate.\nThink of this:  we have a four-letter genetic code -- A, C, G and T.\nYou attach it to a particular sound and then tilt to adjust it.\nInitially, all we did was autograph it.\nMaybe this is an artificial way to read an e-book.\nAnd there's probably people in this audience  who would raise really legitimate scientific suspicions  about the notion of, basically, fairies  who follow people around rubbing fairy juice on their projects and stuff.\nThe official dogma of all Western industrial societies.\nI had very low, no particular expectations when they only came in one flavor.\nThen of course, there's all that  CO2 from this material  that ends up in the atmosphere.\nWe knew there's a mechanism called homologous recombination  that biology uses to repair DNA  that can put pieces together.\n"
  },
  {
    "path": "a4/sanity_check_en_es_data/dev_sanity_check.es",
    "content": "Y la pregunta que quiero hacerles a todos hoy es estn todos ustedes a gusto con esa idea?\nBAA: S. Lo que hace realmente es descubrir crear hipervnculos, si lo quieren, entre las imgenes.\nEs muy gratificante tener una recepcin as aqu.\nAhora, junto con las miles de culturas del mundo forman un entramado espiritual y cultural que abarca todo el planeta y es tan fundamental para su bienestar como el entramado biolgico conocido como biosfera.\nY no se los voy a decir porque yo quiero usarlo.\nEspero hablar con todos ustedes.\nAqu tenemos un ejemplo de ello. Hay un organismo llamado Deinococcus radiodurans que puede soportar hasta tres millones de rads de radiacin.\nPero me sent peor.\nl mismo fue encarcelado de contrabando a la edad de dos aos y se esconda entre las faldas de su madre porque ella no poda estar sin l.\nEs algo muy ambicioso.\nY \"Ol!\" para ti, de todas formas.\nAhora, lo fascinante de esto es que los componentes qumicos de esta liana son precisamente los inhibidores MAO necesarios para potenciar las triptaminas. Entonces, uno se pregunta:\nY uno dice: \"Doc qu debo hacer?\"\nDebera decirlo sin rodeos, porque somos todos como amigos aqu -- es extremadamente probable que mi mayor xito ya haya pasado.\nPor qu nos los mercadean si no los podemos comprar?\nY los desastres en todo el mundo se han incrementado a un ritmo totalmente inslito y sin precedentes.\nPiensen en esto: tenemos un cdigo gentico de cuatro letras: A, C, G y T.\nLo conectas a un sonido en particular y lo inclinas para ajustarlo.\nInicialmente, todo lo que hicimos fue autografiarlo.\nQuiz sea una forma algo artificial de leer un libro electrnico.\nY probablemente hay gente en esta audiencia que puede tener legtimas sospechas cientficas sobre la nocin de hadas, bsicamente, que siguen a la gente frotando zumo de hada en sus proyectos y cosas as.\nEl dogma oficial de todas las sociedades industriales occidentales.\nYo tena expectativas bajas. No tena expectativas particulares cuando slo haba un tipo.\nLuego, por supuesto, viene todo el CO2 procedente de este material que acaba en la atmsfera.\nSabamos que hay un mecanismo llamado recombinacin homloga, utilizado por la biologa para reparar el ADN, que puede juntar estas piezas.\n"
  },
  {
    "path": "a4/sanity_check_en_es_data/test_sanity_check.en",
    "content": "Ironically, by borrowing out their voices,  I'm able to maintain a temporary form of currency,  kind of like taking out a loan with a very high interest rate.\nI grew up there. I raised my sons there.\nA map actually carries somebody's view.\nJust as an aside, I wanted to mention,  cities are only two percent of the Earth's crust,  but they are 50 percent of the world's population.\nThat's the kind of shame that is a teacher.\n"
  },
  {
    "path": "a4/sanity_check_en_es_data/test_sanity_check.es",
    "content": "Irnicamente, al pedir prestadas sus voces, soy capaz de mantener una forma temporal de valor algo as como tomar un prstamo con una tasa de inters muy alta.\nYo crec ah. Cri a mis hijos ah.\nUn mapa implica la perspectiva de las personas.\nComo nota aparte quera mencionar que las ciudades son slo el 2% de la corteza del planeta pero representan el 50% de la poblacin mundial;\nEs esa vergenza que deja una enseanza.\n"
  },
  {
    "path": "a4/sanity_check_en_es_data/train_sanity_check.en",
    "content": "But what can you do? You're in the middle of the ocean.\nSo in this situation too, to decode the information contained in patterns like this, watching alone won't do.\nWell, at least, here at CERN.\nLet me share with those of you here in the first row.\nBut hey, sometimes these things are sent to you and you just have to take them when they come.\nAnd then from that point on, you're basically falling.\nIn the case of gun control, we really underestimated our opponents.\nLorna Sass came and donated books.\nAnd so I showed up in this dark, rambling New York apartment, and she called out to me, and she was in bed.\nNow, if President Obama invited me to be the next Czar of Mathematics, then I would have a suggestion for him that I think would vastly improve the mathematics education in this country.\nThat's how it seems to us.\nBut some of you do.\nBut it's not a joke. This is a real headline.\nIf you look at that truck there, it is the largest truck of its kind of the planet.\nI have some cards that maybe, maybe they don't mean anything.\nOkay, India.\nAnd he was the King of England, and that was the entire wealth of England at the time.\nAnd so, hopefully one day, we can all have that one extra uncle, that one mother, that one brother, sister, we can have that one more family member to love.\nIt just wouldn't work.\nIt suggests that we care about the fight, about the challenge.\nJT: Okay.\nThe benefits of doing so are enormous, the risks minimal.\nYou know, if you fall in love with a frog, that's it.\nLet's start by thinking about the member countries of the OECD, or the Organization of Economic Cooperation and Development.\nI hope to arrive at new territories to discover sounds I have never heard before.\nA lot of numbers there. A lot of numbers.\nThere was a burning question though that would not leave me.\nThey always felt that they could rely on the assurances that nature brought them through the ecosystem of the Gulf.\nThat's a moral problem but today I'm also going to tell you why it's an economic problem.\nMy home would have to be whatever I carried around inside me.\nThose plaques are plaques we've been installing around North America.\nWe have to make kids understand that their food choices make a big difference.\nThis was a world dominated by towering ice sheets, three to four kilometers high, with sweeping grass plains and frozen tundra.\nImagine somewhere in the world: Mumbai, Beijing, New York, London.\nHe looked at the hut. We went inside.\nStarted in corporate America, and I was absolutely convinced that it was just about the individual, that women and men would have just the same opportunities.\nThe arrival of countries like China and India -- between them 38 percent of the world's population -- and others like Indonesia and Brazil and so on, represent the most important single act of democratization in the last 200 years.\nSo what would happen here if, while the animal is recalling the memory of the blue box, we gave it a couple of mild foot shocks?\nI started building this project when I was about 12 or 13 years old.\nPM: So tell me, what do you look for in a friend?\nIn fact, if we count all the individual organisms, we would come at much larger numbers.\nSo, now you think, how is that possible?\nAnd Intel set aside 475 million dollars to fund the replacement of millions of chips to fix the flaw.\nThe kids can't sit still long enough to focus, so they don't learn.\nYou don't forget how to walk because you're thinking about what to have for dinner.\nWe've got a database of words which we recognize.\nI guess most of you by now realize that we do: 300 days of sun.\nFit into this other system and try to become a student.\"\nAnd then the third one is this idea of the end of oil, this entropic end, where all of our parts of cars, our tires, oil filters, helicopters, planes -- where are the landscapes where all of that stuff ends up?\nFor mom said, \"To be family, is to care and share and to look out for one another.\n"
  },
  {
    "path": "a4/sanity_check_en_es_data/train_sanity_check.es",
    "content": "Pero, qu puedes hacer? Ests en el medio del ocano.\nAs que en esta situacin tambin, para decodificar la informacin contenida en los patrones de este tipo, con slo mirar no basta;\nBueno, al menos, aqu en el CERN.\nDjenme compartir con ustedes aqu en la primera fila.\nPero a veces estas cosas slo vienen a ti y tienes que aprovecharlas cuando llegan.\nY a partir de eso momento, bsicamente ests cayendo.\nEn el caso de control de armas, realmente subestimamos a nuestros rivales.\nLorna Sass vino y don libros.\nY llegu a este oscuro, laberntico, departamento en Nueva York, y ella me llam, ella estaba en cama.\nAhora, si el Presidente Obama me invitara a ser el prximo Zar de las Matemticas le hara una sugerencia que mejorara bastante la enseanza de las matemticas en este pas.\nEso es lo que nos parece.\nPero algunos de ustedes s.\nPero no es una broma. Es un titular real,\nSi Uds. miran aquel camin de all, es el camin ms grande de su tipo en el planeta.\nTengo algunas cartas que tal vez, quizs, no significan nada.\nBueno, India.\nY l era el Rey de Inglaterra y ah se aglutinaba toda la riqueza de Inglaterra en el momento.\nY as espero que un da todos podamos tener un to extra, esa madre, ese hermano, esa hermana, que podamos tener ese familiar extra que amamos,\nNo funcion.\nSugiere que nos interesa el combate, el desafo.\nJT: Bien\nLos beneficios de hacerlo son enormes, los riesgos, mnimos.\nO sea, si te enamoras de un sapo, eso es todo.\nComencemos por pensar en los pases miembros de la OCDE, o la Organizacin para la Cooperacin y el Desarrollo Econmicos.\nYo espero llegar a territorios nuevos para descubrir sonidos que nunca haba odo antes.\nCon muchos nmeros. Un montn\nhubo una pregunta mental que no me abandonaba.\nSiempre pensaron que podra confiar en la seguridad que la naturaleza les traa a travs del ecosistema del Golfo.\nEste es un problema moral pero hoy tambin dir por qu es un problema econmico.\nMi hogar tendra que ser todo lo que llevaba dentro de m.\nAquellas placas son placas que hemos estado instalando alrededor de Norte Amrica.\nTenemos que hacer comprender a los chicos que las selecciones de comida que hacen marcan grandes diferencias.\nEra un mundo dominado por altas capas de hielo, de tres a cuatro kilmetros de altura, con llanuras de hierba y tundra congelada.\nImaginen un lugar en el mundo: Mumbai, Pekn, Nueva York, Londres.\nMir el refugio. Entr.\nEmpec en el mundo corporativo de EE.UU. y estaba absolutamente convencida de que todo dependa del individuo, que mujeres y hombres tendran las mismas oportunidades.\nLa llegada de pases como China e India -entre ambas el 38% de la poblacin mundial- y otros pases como Indonesia, Brasil, etc, representa el acto ms importante de democratizacin de los ltimos 200 aos.\nQu pasara aqu si, mientras el animal est recordando la memoria de la caja azul, le damos un par de choques elctricos suaves en el pie?\nComenc con este proyecto cuando tena 12  13 aos de edad.\nPM: Entonces, dganme, Qu buscan en una amiga?\nS contamos toda la poblacin llegamos a un nmero mucho mayor.\nPensarn, cmo es posible?\nE Intel reserv USD 475 millones para financiar el reemplazo de millones de chips para solucionar el defecto.\nLos nios no se pueden sentar quietos lo bastante para enfocarse, as que no aprenden.\nNo olvidas cmo caminar simplemente porque ests pensando qu vas a cenar.\nDisponemos de una base de datos de palabras que reconocemos.\nSupongo que la mayora de Uds. ya se han dado cuenta de lo que tenemos: 300 das soleados.\nEncaja en este otro sistema e intenta ser un estudiante\".\nY luego est el tercer captulo que es la idea del fin del petroleo su fin entrpico donde todas nuestras partes de autos, nuestras ruedas, filtros de aceite helicpteros, aviones -- dnde estn los paisajes en los que todas nuestras cosas terminan?\nMi madre deca, \"Ser familia es querer, compartir y cuidarnos los unos a los otros.\n"
  },
  {
    "path": "a4/sanity_check_en_es_data/vocab_sanity_check.json",
    "content": "{\n  \"src_word2id\": {\n    \"<pad>\": 0,\n    \"<s>\": 1,\n    \"</s>\": 2,\n    \"<unk>\": 3,\n    \"de\": 4,\n    \"que\": 5,\n    \"el\": 6,\n    \"en\": 7,\n    \"la\": 8,\n    \"a\": 9,\n    \"un\": 10,\n    \"y\": 11,\n    \"los\": 12,\n    \"es\": 13,\n    \"del\": 14,\n    \"para\": 15,\n    \"no\": 16,\n    \"este\": 17,\n    \"Y\": 18,\n    \"una\": 19,\n    \"con\": 20,\n    \"las\": 21,\n    \"lo\": 22,\n    \"qu\": 23,\n    \"aqu\": 24,\n    \"Pero\": 25,\n    \"me\": 26,\n    \"ser\": 27,\n    \"se\": 28,\n    \"por\": 29,\n    \"pases\": 30,\n    \"nuestras\": 31,\n    \"slo\": 32,\n    \"Bueno,\": 33,\n    \"compartir\": 34,\n    \"ustedes\": 35,\n    \"cosas\": 36,\n    \"cuando\": 37,\n    \"eso\": 38,\n    \"ests\": 39,\n    \"Nueva\": 40,\n    \"York,\": 41,\n    \"ella\": 42,\n    \"estaba\": 43,\n    \"si\": 44,\n    \"le\": 45,\n    \"bastante\": 46,\n    \"nos\": 47,\n    \"Uds.\": 48,\n    \"camin\": 49,\n    \"ms\": 50,\n    \"su\": 51,\n    \"Inglaterra\": 52,\n    \"toda\": 53,\n    \"as\": 54,\n    \"espero\": 55,\n    \"podamos\": 56,\n    \"tener\": 57,\n    \"esa\": 58,\n    \"ese\": 59,\n    \"No\": 60,\n    \"Los\": 61,\n    \"son\": 62,\n    \"problema\": 63,\n    \"Mi\": 64,\n    \"todo\": 65,\n    \"placas\": 66,\n    \"mundo\": 67,\n    \"como\": 68,\n    \"e\": 69,\n    \"poblacin\": 70,\n    \"Qu\": 71,\n    \"est\": 72,\n    \"cmo\": 73,\n    \"millones\": 74,\n    \"fin\": 75,\n    \"todas\": 76\n  },\n  \"tgt_word2id\": {\n    \"<pad>\": 0,\n    \"<s>\": 1,\n    \"</s>\": 2,\n    \"<unk>\": 3,\n    \"the\": 4,\n    \"of\": 5,\n    \"to\": 6,\n    \"that\": 7,\n    \"and\": 8,\n    \"in\": 9,\n    \"a\": 10,\n    \"you\": 11,\n    \"I\": 12,\n    \"have\": 13,\n    \"we\": 14,\n    \"was\": 15,\n    \"this\": 16,\n    \"at\": 17,\n    \"would\": 18,\n    \"one\": 19,\n    \"And\": 20,\n    \"is\": 21,\n    \"about\": 22,\n    \"But\": 23,\n    \"what\": 24,\n    \"are\": 25,\n    \"just\": 26,\n    \"they\": 27,\n    \"so\": 28,\n    \"for\": 29,\n    \"it\": 30,\n    \"all\": 31,\n    \"can\": 32,\n    \"So\": 33,\n    \"like\": 34,\n    \"here\": 35,\n    \"with\": 36,\n    \"them\": 37,\n    \"then\": 38,\n    \"our\": 39,\n    \"if\": 40,\n    \"be\": 41,\n    \"how\": 42,\n    \"look\": 43,\n    \"don't\": 44,\n    \"The\": 45,\n    \"by\": 46,\n    \"--\": 47,\n    \"where\": 48,\n    \"do.\": 49,\n    \"me\": 50,\n    \"share\": 51,\n    \"when\": 52,\n    \"on,\": 53,\n    \"you're\": 54,\n    \"In\": 55,\n    \"New\": 56,\n    \"she\": 57,\n    \"out\": 58,\n    \"me,\": 59,\n    \"That's\": 60,\n    \"some\": 61,\n    \"it's\": 62,\n    \"not\": 63,\n    \"This\": 64,\n    \"truck\": 65,\n    \"member\": 66,\n    \"It\": 67,\n    \"care\": 68,\n    \"You\": 69,\n    \"thinking\": 70,\n    \"countries\": 71,\n    \"or\": 72,\n    \"A\": 73,\n    \"lot\": 74,\n    \"numbers.\": 75,\n    \"me.\": 76,\n    \"tell\": 77,\n    \"around\": 78,\n    \"plaques\": 79,\n    \"We\": 80,\n    \"make\": 81,\n    \"kids\": 82,\n    \"most\": 83,\n    \"now\": 84\n  }\n}"
  },
  {
    "path": "a4/src.vocab",
    "content": "<unk>\t0\n<s>\t0\n</s>\t0\n,\t-2.54393\n.\t-3.04052\n▁ᎠᎴ\t-3.32008\n▁ᎾᏍᎩ\t-3.74462\n;\t-3.84657\nᏃ\t-4.05736\n▁ᎯᎠ\t-4.40361\n▁ᎨᏒ\t-4.69076\n▁\t-4.80196\nᎢ\t-4.89989\n▁ᎥᏝ\t-5.11018\n▁ᎨᏒᎢ\t-5.16483\nᏰᏃ\t-5.23888\nᎩ\t-5.29137\n▁ᎨᏎᏍᏗ\t-5.2919\n▁ᎤᏁᎳᏅᎯ\t-5.30573\n?\t-5.38227\n▁ᏃᎴ\t-5.41577\n▁Ꭴ\t-5.45954\n▁Ꭰ\t-5.55055\n▁ᏴᏫ\t-5.55698\nᏉ\t-5.62357\nᏗ\t-5.64492\n”\t-5.64664\nᎯ\t-5.71947\n▁ᎩᎶ\t-5.72385\n▁ᎾᏍᏉ\t-5.76501\n▁ᎢᏳᏍᏗ\t-5.80213\n▁ᎾᎿ\t-5.80755\n▁ᎾᏍᎩᏯ\t-5.81762\n⁠\t-5.8234\n▁ᎠᏎᏃ\t-5.83675\n▁ᎠᏴ\t-5.85629\nᎭ\t-5.90906\n▁ᏱᎩ\t-5.91544\n▁Ꮎ\t-5.91926\n-\t-5.94808\n▁ᏥᎩ\t-5.95764\n▁ᏱᎰᏩ\t-5.9588\n▁ᎪᎱᏍᏗ\t-5.9589\n▁ᏂᎦᏛ\t-5.98153\n▁ᏂᎯ\t-5.98992\n▁ᎢᎦ\t-5.99128\n▁ᎤᎬᏫᏳᎯ\t-6.01942\n▁ᏥᏌ\t-6.02006\n▁ᏂᎨᏒᎾ\t-6.0207\nᏱ\t-6.07666\n▁“\t-6.09282\nᎾ\t-6.13014\nᏍᎩᏂ\t-6.13869\n▁ᎣᏍᏛ\t-6.19801\nᏛ\t-6.20767\n▁ᎯᎠᏃ\t-6.2111\nᏍᏗ\t-6.25509\n▁ᎤᏪᏥ\t-6.28097\n▁Ꮷ\t-6.29606\n▁Ꮧ\t-6.2986\n▁ᎢᏳᏃ\t-6.30915\n▁ᎾᏍᎩᏃ\t-6.34215\n▁ᏧᏪᏥ\t-6.3612\n▁ᎦᎶᏁᏛ\t-6.38276\n▁ᏄᏪᏎᎢ\t-6.40358\nᏓ\t-6.40374\n▁ᎿᏉ\t-6.42033\n▁ᎡᎶᎯ\t-6.43418\n▁ᏞᏍᏗ\t-6.44641\n▁Ꮵ\t-6.46011\n▁ᎠᏂ\t-6.46347\n▁ᎨᏍᏗ\t-6.46512\n▁ᎿᏉᏃ\t-6.49601\n▁ᎤᏲ\t-6.53098\nᎦ\t-6.55188\n▁ᎤᏛᏁ\t-6.56483\n▁Ꮳ\t-6.57859\n!\t-6.57899\n▁ᎤᏣᏘ\t-6.59076\n▁ᎠᏥᎸ\t-6.62593\n▁Ᏹ\t-6.64234\n▁Ꮪ\t-6.64477\n▁”\t-6.65186\n▁ᏫᎵᎻ\t-6.67483\n▁ᎾᎯᏳ\t-6.68968\n▁ᏂᎦᎥ\t-6.70095\n▁ᎬᏂᎨᏒ\t-6.71179\n▁ᎠᏍᎦᏯ\t-6.7176\n▁ᎦᎸᏉᏗᏳ\t-6.72394\n▁ᎬᏂᏳᏉ\t-6.73303\n▁ᏄᏍᏛ\t-6.73545\n▁ᎦᏙ\t-6.75685\n▁ᎧᏃᎮᏛ\t-6.75916\nᏂ\t-6.75917\n▁ᎡᎯ\t-6.76817\n▁ᎤᏩᏒ\t-6.77375\n▁ᎠᏁᎯ\t-6.77487\n▁ᎦᎸᎳᏗ\t-6.77775\n▁ᎠᏰᎵ\t-6.80332\nᏅ\t-6.80338\n▁ᎠᏕᎸ\t-6.82547\n▁ᎨᏎᎢ\t-6.82773\n▁ᎤᏤᎵ\t-6.84908\n▁ᏌᏉ\t-6.85847\n▁ᏰᎵ\t-6.85913\n▁ᎤᏤᎵᎦ\t-6.86215\n▁ᎠᎹ\t-6.86622\n▁ᎢᏣ\t-6.87124\n▁ᎢᏴᏛ\t-6.879\nᎨ\t-6.88706\nᏗᏱ\t-6.89553\n▁ᎤᏂ\t-6.90173\nᏏ\t-6.90188\nᎸ\t-6.90294\nᎵ\t-6.90928\n▁ᎾᏂᎥ\t-6.9347\n▁Ꭲ\t-6.93579\n▁ᎣᏏᏳ\t-6.93811\n▁ᎠᏎ\t-6.94407\nᏳ\t-6.95606\n▁ᎦᏙᎯ\t-6.95677\n▁ᏔᎵ\t-6.96344\n▁ᎢᏏᎵ\t-6.97663\n▁[\t-6.98636\nᎴ\t-6.98876\n▁ᎤᏟ\t-6.99369\n]\t-6.99401\n▁ᎪᎯ\t-6.99443\n▁ᏗᎧᎿᏩᏛᏍᏗ\t-6.9957\n▁Ꭿ\t-7.02167\n▁ᎠᏓᏅᏙ\t-7.02702\n▁ᎣᏍᏓ\t-7.03024\n▁ᎠᏂᏍᎦᏯ\t-7.04526\nᏒ\t-7.0461\n▁Ꮣ\t-7.04851\n▁ᎨᏎ\t-7.05692\n▁ᎢᏥᏈᏱ\t-7.08677\n▁ᏔᎵᏁ\t-7.10111\n▁ᎼᏏ\t-7.1168\nᎲ\t-7.13121\nᏍᎪ\t-7.13154\n▁Ꭶ\t-7.14064\n▁ᎢᏳ\t-7.14731\n▁ᎨᏒᎩ\t-7.1595\n▁ᎬᏩ\t-7.16382\n▁⁠\t-7.16682\n▁ᎤᏍᏗ\t-7.18111\n▁ᎢᎬᏱ\t-7.18165\n▁ᏤᎦᏈ\t-7.18493\n▁ᏚᏳᎪᏛ\t-7.18566\n▁ᎤᏂᏣᏘ\t-7.21576\n▁ᎡᎳᏗ\t-7.21609\n▁ᎡᏆᎭᎻ\t-7.23123\n▁ᎢᏳᎵᏍᏙᏗᏱ\t-7.23196\n▁ᎦᏙᏃ\t-7.23475\n▁ᎠᏫ\t-7.23563\nᏍᎩ\t-7.23677\n▁Ᏻ\t-7.23678\n:\t-7.24095\nᎨᏍᏗ\t-7.24223\n▁ᎢᏗᏢ\t-7.24601\n▁ᏩᎦ\t-7.24864\nᎠ\t-7.25045\n▁ᏇᎵᏲ\t-7.26584\n▁Ꮻ\t-7.27065\n▁ᏏᏆ\t-7.28048\n▁ᎠᎨᏴ\t-7.29155\n▁ᏲᎾ\t-7.29204\nᎬ\t-7.30436\n▁ᎤᎾ\t-7.30633\n▁ᏦᏩ\t-7.30714\n▁ᏌᎳᏓ\t-7.31832\nᎪ\t-7.32028\n▁ᎠᏏ\t-7.32112\n▁ᎾᎥ\t-7.33324\nᏙᏗ\t-7.33524\n▁ᏄᏪᏒᎩ\t-7.34102\n▁ᏅᎩ\t-7.34627\n▁ᏄᏪᏎᎴᎢ\t-7.3555\n▁ᏂᎦᏓ\t-7.3728\n▁Ꮽ\t-7.37369\n▁ᏧᏓᎴᏅᏛ\t-7.39482\n▁ᏱᎨᏎᏍᏗ\t-7.40762\n▁ᏦᎢ\t-7.41118\nᏯ\t-7.4208\n▁ᎢᏥ\t-7.42788\nᏁ\t-7.43493\n▁ᎤᏙᎯᏳᎯᏯ\t-7.44203\n▁ᏥᏌᏃ\t-7.44586\n▁ᏅᏯ\t-7.4479\nᏥ\t-7.44922\n▁ᏂᏚᏪᏎᎴᎢ\t-7.47404\n▁Ꮿ\t-7.48\n▁ᎦᏚ\t-7.48764\n▁ᏐᏈᎵ\t-7.49101\n▁ᏝᏍᎪ\t-7.49119\n▁ᎠᏂᏧᏏ\t-7.49899\n▁Ꮔ\t-7.49976\n▁ᏣᎬᏫᏳᎯ\t-7.50372\n▁ᎤᎬᏩᎵ\t-7.50997\nᏎ\t-7.51424\n▁ᏧᏤᎵ\t-7.51456\n▁Ꮒ\t-7.5246\n▁ᎦᎵᏉᎩ\t-7.52823\n▁ᏓᎶᏂᎨ\t-7.52903\n▁Ꭼ\t-7.53577\n▁ᎬᏩᏍᏓᏩᏗᏙᎯ\t-7.53608\n▁ᏄᏪᏎᎸᎩ\t-7.5372\nᏍᎬ\t-7.54004\n▁ᎡᏍᎦ\t-7.54381\n▁ᎦᎪ\t-7.54804\n▁ᏂᎦᏗᏳ\t-7.54945\n▁ᎢᏧᎳᎭ\t-7.57203\n▁ᎬᏗ\t-7.57296\n▁ᏂᎪᎯᎸ\t-7.57373\n▁ᏰᎵᏉ\t-7.58062\nᎮ\t-7.58727\n▁ᎦᏓ\t-7.59046\nᎳ\t-7.5957\n▁Ꭸ\t-7.60402\n▁ᎠᏆ\t-7.60651\n▁ᎠᏓ\t-7.60854\n▁ᎤᏙᏓ\t-7.61492\n▁ᏚᏂ\t-7.61603\n▁ᏈᏓ\t-7.6189\n▁ᎣᏂ\t-7.62582\n▁ᏄᏪᏎᎴ\t-7.63331\n▁ᎤᏤᏍᏙ\t-7.64765\n▁Ꮥ\t-7.66036\n▁ᏥᎷᏏᎵᎻ\t-7.67007\n▁ᏂᏚᏪᏎᎸᎩ\t-7.67804\n▁ᎠᏏᏉ\t-7.67898\n▁ᏣᏂ\t-7.68536\n▁ᎦᏚᎲ\t-7.68665\n▁Ꭱ\t-7.68809\n▁ᏅᏗᎦᎵᏍᏙᏗᎭ\t-7.69324\n▁ᎠᏂᎨᏴ\t-7.70079\n▁ᎬᏂ\t-7.70575\n▁ᎤᏅᏒ\t-7.71095\n▁ᎢᎩ\t-7.714\n▁ᎪᏪᎵ\t-7.72109\n▁ᏉᎳ\t-7.73114\n▁ᏧᎾᏓᎴᏅᏛ\t-7.73244\n▁ᏱᎨᏎ\t-7.73936\n▁ᎢᏯᏂᏛ\t-7.74107\n▁ᎬᏂᏛ\t-7.74272\n▁ᎠᎩ\t-7.75133\n▁ᎡᏙᏓ\t-7.75528\n▁ᏄᎬᏫᏳᏒ\t-7.75675\nᏘ\t-7.75742\n▁ᏂᎬᎾᏛ\t-7.75769\n▁ᎢᎦᎢ\t-7.76605\n▁ᏍᎩ\t-7.76797\n▁ᎾᏍᎩᏯᎢ\t-7.77448\n▁ᏐᏉ\t-7.78269\n▁ᏣᎵ\t-7.78287\n▁ᎪᎯᏳᏗ\t-7.79302\nᏔᏅᎯ\t-7.79556\n▁ᎠᏂᏔᎵ\t-7.79599\nᏴ\t-7.80695\n▁ᎾᎥᏂ\t-7.81511\n▁ᎡᎳᏂ\t-7.81544\nᎰ\t-7.81952\n▁ᎤᎵᏂᎩᏛ\t-7.82499\n▁ᏄᎵᏍᏔᏁᎢ\t-7.82949\n▁ᎢᏴ\t-7.83184\n▁ᎤᏁᏨ\t-7.83563\n▁ᎤᏙᎯᏳᎯ\t-7.83687\n▁ᎼᏏᏃ\t-7.84193\n▁ᎤᏓᎵᎢ\t-7.84363\nᎸᎩ\t-7.84608\n▁ᏗᎦᎳᏫᎢᏍᏗᏱ\t-7.8463\n▁ᏧᏂ\t-7.85916\n▁ᎢᎬᏱᏗᏢ\t-7.86993\n▁ᎤᏓᏙᎵᏍᏗ\t-7.86996\n▁ᎠᏣᏗ\t-7.87027\n▁ᏄᏂᏪᏎᎢ\t-7.87037\n▁ᏥᎪ\t-7.87476\nᎸᎯ\t-7.87953\n▁Ꭽ\t-7.88172\nᎴᎢ\t-7.88202\nᏍᎨᏍᏗ\t-7.88779\n▁ᎢᎨᏎᏍᏗ\t-7.88852\nᎮᏍᏗ\t-7.89131\n▁ᏗᎧᎿᏩᏗᏙᎯ\t-7.90756\n▁Ꭷ\t-7.90945\nᎥ\t-7.90965\n▁Ꮩ\t-7.91141\n▁ᎯᏍᎩ\t-7.9125\n▁ᏗᎦᎸᏫᏍᏓᏁᏗ\t-7.91468\n▁ᎠᏯ\t-7.9163\n▁ᎢᏧᎳ\t-7.93395\n▁ᎤᏛᏅ\t-7.93687\n▁ᎡᏏᎩ\t-7.94026\n▁ᎠᎾᎵᏅᏟ\t-7.94646\n▁ᏌᏌ\t-7.94663\n▁ᏗᏣ\t-7.94748\n▁ᎩᎦᎨ\t-7.95654\n▁ᎰᎻ\t-7.96674\n▁ᎦᎶᎯᏍᏗᏱ\t-7.96769\n▁ᏅᏩᏓᎴ\t-7.97183\n▁ᎭᏫᏂ\t-7.97486\n▁ᏑᎾᎴ\t-7.97834\n▁ᏧᎾ\t-7.98076\n▁ᎠᎵᏍᏓᏴᏗ\t-7.98491\nᏔᏅ\t-7.98533\n▁ᏍᎩᎾᎾ\t-7.98662\nᏨ\t-7.99102\n▁ᏅᏙ\t-7.99471\nᏫ\t-7.99572\n▁ᏒᏃᏱ\t-7.99754\n▁ᎢᎬᏱᏱ\t-7.998\n▁ᎢᎾᎨ\t-8.00468\n▁ᎬᏩᎦᏘᏯ\t-8.00808\n▁ᎤᏃᏕᎾ\t-8.00809\n▁ᎠᏧᏣ\t-8.0081\n▁ᎤᏩᏌ\t-8.01805\n▁ᏔᎳᏚ\t-8.01871\nᏢ\t-8.02489\n▁ᎤᏥ\t-8.02713\n▁ᎦᎸᎶᎢ\t-8.03392\n▁ᏱᎨᏎᎢ\t-8.03932\n▁Ꭳ\t-8.04853\n▁ᏧᎬᏩᎶᏗ\t-8.05146\n▁ᎩᎳ\t-8.05295\n▁ᎤᏓ\t-8.05476\nᏌ\t-8.05588\n▁ᎤᎾᏤᎵᎦ\t-8.06581\nᏅᎯ\t-8.06871\n▁ᏚᏙᎥ\t-8.07207\n▁ᏚᎾ\t-8.0728\nᏣ\t-8.0769\n▁ᎢᏤ\t-8.0781\n▁ᎦᏲᏟ\t-8.08386\n▁ᏅᏩᏙᎯᏯᏛ\t-8.08503\n▁ᎠᏏᏴᏫ\t-8.08696\n▁Ꭵ\t-8.0908\nᏍᏛ\t-8.09162\nᏉᏍᎩᏂ\t-8.09391\n▁ᎢᎸᎯᏳ\t-8.09647\n▁ᎢᏓᎵᏅᏟ\t-8.0965\n▁ᏧᎾᏁᎶᏗ\t-8.09661\nᏍᎩᏂᏃᏅ\t-8.10708\nᏙ\t-8.10769\n▁ᏱᎨᏒᎾ\t-8.10811\n▁ᎤᏍᏆᏂᎪᏗ\t-8.11954\n▁ᎤᏚᎩ\t-8.12144\n▁ᏗᎦ\t-8.13494\n▁ᎠᏆᏤᎵ\t-8.1425\n▁ᎢᎪᎯᏛ\t-8.14405\n▁ᎠᎬᏱ\t-8.14433\nᏍ\t-8.14985\n▁ᎣᎩ\t-8.15074\n▁ᎠᏰᎸ\t-8.15184\n▁ᏄᎵᏍᏔᏅ\t-8.15312\n▁ᎡᏆ\t-8.15454\n▁ᎭᏫᏂᏗᏢ\t-8.15607\n▁ᎠᏇᏥ\t-8.15609\nᏕ\t-8.15911\n▁ᏧᏤᎵᎦ\t-8.16084\n▁ᎩᎳᏉ\t-8.16331\n▁ᏅᏓᏳᏓᎴᏅᎯ\t-8.16839\n▁ᏂᏨᏪᏎᎭ\t-8.1685\n▁ᏄᏂᏪᏒᎩ\t-8.16906\n▁ᎦᏓᎭ\t-8.17407\n▁ᎤᏇᏓᎵ\t-8.18069\n▁ᎦᏳᎳ\t-8.18094\n▁ᎤᎾᏓᏅᏘ\t-8.18119\nᏔ\t-8.18931\nᏎᎢ\t-8.19031\n▁ᎢᏳᏩᏂᏌᏛ\t-8.19352\n▁ᎢᏳᏰᏃ\t-8.19582\n▁ᎢᏐ\t-8.19624\n▁ᏥᏳ\t-8.2024\n▁ᏃᏗ\t-8.21085\n▁ᎢᎦᏛ\t-8.21697\n▁ᎤᏁᎳᎩ\t-8.21951\n▁ᎤᏕᎵᏛ\t-8.21955\n▁ᏧᏙᎢᏛ\t-8.21964\n▁ᏄᏪᏒ\t-8.22029\n▁ᏄᏍᏗ\t-8.22977\n▁Ꮫ\t-8.23103\n▁ᎢᏯᎦᏴᎵ\t-8.23248\n▁ᏧᏍᏆᏴᏍᏗ\t-8.23323\n▁ᎤᏛᏛᏁ\t-8.2376\n▁ᏗᎪᏢᏔᏅᎯ\t-8.24594\n▁Ꮶ\t-8.24675\nᏁᎢ\t-8.25229\n▁ᏓᏂ\t-8.25407\n▁ᏍᏉ\t-8.25825\n▁ᎠᏁᎲ\t-8.26153\n▁ᎦᎵᏦᏛ\t-8.26589\nᎮᎢ\t-8.2684\n▁ᏄᎵᏍᏔᏁ\t-8.27241\n▁Ꮹ\t-8.27293\n▁ᏄᏓᎴᏒ\t-8.27444\nᎸᎢ\t-8.27565\nᏍᏗᏱ\t-8.28093\n▁ᎠᏁᎲᎢ\t-8.28117\nᏒᎩ\t-8.28535\n▁ᎠᏍᏓᏯ\t-8.28886\nᏅᎩ\t-8.29477\n▁ᎤᎾᏤᎵ\t-8.29736\n▁ᎢᏳᎵᏍᏙᏗ\t-8.29902\n▁ᎠᎾᏙᎴᎰᏍᎩ\t-8.30102\n▁ᎦᏁᎸ\t-8.3018\n▁ᏐᎢ\t-8.30224\n▁ᏦᎢᏁ\t-8.30503\nᏙᏗᏱ\t-8.31096\n▁ᏃᏉ\t-8.31363\n▁ᎠᏍᎪᎯᏧᏈ\t-8.3156\n▁ᎡᎳᏆᏗ\t-8.33004\n▁ᏧᏅᏏᏓᏍᏗ\t-8.33009\n▁ᎩᎬ\t-8.33043\nᎨᎢ\t-8.33249\n▁ᏄᎵᏍᏔᏅᎩ\t-8.33568\nᎲᎢ\t-8.34121\n▁ᏌᏩᏂ\t-8.34448\n▁ᎠᏂᏆᎵᏏ\t-8.34449\n▁ᏠᎨᏏ\t-8.34468\n▁ᎠᏲᎱᎯᏍᏗ\t-8.34478\n▁ᎠᏓᏁᎸ\t-8.35452\n▁ᎧᏅᏂᏍᎩ\t-8.35529\n▁ᎠᎦᏴᎵᎨ\t-8.36819\n▁ᎠᎺᏉᎯ\t-8.37455\n▁ᏄᏂᎬᏫᏳᏒ\t-8.3746\n▁ᏧᏕᏘᏴᏛ\t-8.37461\n▁ᎤᏂᏃᏕᎾ\t-8.37464\n▁ᏥᏳᎯ\t-8.37473\n▁ᎤᏁᎬ\t-8.37607\n▁Ꮭ\t-8.37704\n▁ᎤᏒᎯ\t-8.37915\n▁Ꮟ\t-8.38834\n▁ᎤᏂᎬᏫᏳᎯ\t-8.39032\n▁ᎤᏃᎴ\t-8.39107\nᎪᎢ\t-8.39594\n▁ᎢᎦᏤᎵ\t-8.40446\n▁ᎠᏙᎴᎰᏍᎩ\t-8.40568\n▁ᎠᏍᎪᎵ\t-8.40614\n▁ᏕᏥ\t-8.40674\n▁ᏗᏂᎧᎿᏩᏗᏙᎯ\t-8.42144\n▁ᏣᏄᏏ\t-8.42179\n▁ᏅᏩᎾᏓᎴ\t-8.42953\n▁ᏂᎯᏍᎩᏂ\t-8.42996\n▁ᎠᏍᎦᏂ\t-8.43068\nᏤ\t-8.44456\n▁ᎾᎿᏂ\t-8.45385\nᎨᎶᎯ\t-8.46033\n▁ᎡᏣ\t-8.46765\n▁ᎤᏓᏅᏘ\t-8.47012\n▁ᏧᏂᏍᏆᏂᎪᏙᏗ\t-8.47104\n▁ᎥᎥ\t-8.47117\nᎶ\t-8.47736\n▁ᏗᏂᏲᎵ\t-8.47929\n▁ᏂᎬ\t-8.48106\n▁ᎤᏬᏰᏂ\t-8.48765\n▁ᎡᏆᎻ\t-8.48775\n▁ᎤᎵᏂᎩᏗᏳ\t-8.48795\n▁ᎡᏝᏪᎯ\t-8.48902\n▁ᏂᎬᏅ\t-8.4914\n▁ᎠᎦᏴᎵᎨᎢ\t-8.49595\n▁ᎤᎵᏏᎩ\t-8.5052\n▁ᎪᎰᏍᏗ\t-8.50522\n▁ᏨᏒ\t-8.50642\n▁ᎢᏨᏒ\t-8.50664\nᏁᎸ\t-8.5095\nᎬᎢ\t-8.51032\n▁ᎦᎸᎶ\t-8.5153\n▁ᎠᏲᎵ\t-8.51693\n▁ᎡᏥ\t-8.52006\n▁ᏤᏥ\t-8.52027\nᏍᏙᏗ\t-8.52215\n▁ᏔᎵᏁᏃ\t-8.52238\n▁ᎦᎾᏝᎢ\t-8.52263\n▁ᎠᏓᎨᏳᏗ\t-8.52278\n▁ᎨᎵᎵ\t-8.52311\n▁ᏥᎨᏒᎩ\t-8.52668\n▁ᏥᎨᏎᎢ\t-8.5288\n▁ᎨᏐᎢ\t-8.52912\nᎠᏁᎶᎯ\t-8.52929\nᎤ\t-8.53054\nᎣ\t-8.53148\nᏆ\t-8.53508\n▁ᏕᎦ\t-8.53959\n▁ᎤᏁᎳᏅᎯᏃ\t-8.54019\n)\t-8.54022\n▁ᎢᏯᎩᏳᏍᏈᏛ\t-8.54025\n▁ᎭᎾ\t-8.54176\n▁ᎢᏨ\t-8.54192\nᏍᎦ\t-8.54862\n▁ᎠᏄᏬ\t-8.55649\n▁ᏗᏃᏪᎵᏍᎩ\t-8.5584\n▁ᎠᏍᎩᎾ\t-8.55862\n▁ᎤᏤᎵᎪᎯ\t-8.55898\n▁ᎤᏅᏏᏓᏍᏗ\t-8.55911\n▁ᏕᏫ\t-8.55928\n▁ᎢᏗ\t-8.56025\nᏧ\t-8.56489\n▁ᎦᏰᎪᎩ\t-8.57713\n▁ᎠᏂᏴᏫᏯ\t-8.57736\n▁ᎢᎪᎯᏓ\t-8.57741\nᏍᎬᎢ\t-8.57746\n▁ᎠᎦᏔᎲᎢ\t-8.58157\n▁ᎭᏂ\t-8.58541\n▁ᎣᏓᎸ\t-8.58844\n▁ᏗᏥ\t-8.5903\n▁(\t-8.59578\nᏈ\t-8.59854\n▁ᎦᎸᏉᏗ\t-8.59886\nᎡ\t-8.59972\n▁Ꮨ\t-8.60893\nᎧ\t-8.61006\nᎦᎵ\t-8.61302\nᏒᎢ\t-8.61325\n▁ᏗᏆᏤᎵ\t-8.61366\n▁ᎤᏴᏍᏗ\t-8.61378\n▁ᎴᏆᏂ\t-8.61502\n▁ᎠᏃᎯᏳᎲᏍᎩ\t-8.61506\n▁ᏓᏆᎴᎳ\t-8.61514\n▁ᎤᏣᏔᏅᎯ\t-8.61519\n▁ᏥᏍᏕᏥ\t-8.61528\n▁ᎠᏰᎳᏍᏗ\t-8.61547\n▁ᎤᎬᏫᏳᏌᏕᎩ\t-8.61565\n▁ᎧᏁᏌᎢ\t-8.61595\n▁ᏄᏍᏕᏍᏗ\t-8.6161\n▁ᎨᏐ\t-8.62775\nᏔᏅᎩ\t-8.62948\nᏩ\t-8.62978\n▁ᏄᏓᎴ\t-8.63048\n▁ᏣᏤᎵ\t-8.63129\n▁ᎪᎢ\t-8.63388\n▁ᎠᏛ\t-8.63451\n▁ᎧᏁᏍᎦ\t-8.63465\n▁ᎠᏂᏍᎩᎾ\t-8.63468\n▁ᏗᎦᏙᎵ\t-8.6351\nᏍᎨᎢ\t-8.63719\n▁ᎠᎩᎾ\t-8.63758\n▁ᎨᎳᏍᏗᏱ\t-8.64248\n▁ᎤᏰᎸᏗ\t-8.64546\n▁ᎤᏛᎦᏅ\t-8.64747\n▁ᏫᏥ\t-8.65227\n▁ᎦᏚᎲᎢ\t-8.65446\n▁ᏗᏂᏲᏟ\t-8.65462\n▁ᎠᏌᎻᏓ\t-8.65462\n▁ᎨᏥᏅᏏᏛ\t-8.65471\n▁ᎺᎵ\t-8.65507\n▁ᎠᏗᎾ\t-8.65539\n▁ᏧᏁᏥ\t-8.65558\n▁ᎠᏂᏏᏴᏫᎭ\t-8.6556\n▁ᎤᏲᎱᏒ\t-8.65875\n▁ᎢᎦᏛᏃ\t-8.66187\n▁Ꮸ\t-8.66427\n▁ᎠᎾ\t-8.66519\n▁ᎤᏰᎸᏛ\t-8.66774\n▁ᏥᎨᏒ\t-8.67128\n▁ᎤᎪᎲ\t-8.67204\n▁ᏗᏣᏤᎵ\t-8.67368\n▁ᎢᎸᎯᏢ\t-8.67503\n▁ᎦᏩᏒᎩ\t-8.67503\n▁ᏧᏂᏲᎱᏒᎯ\t-8.67509\n▁ᎢᏳᏕᏘᏴᏛ\t-8.67513\n▁ᎤᏕᏁᎴᎢ\t-8.67532\n▁ᎪᏢᏔᏅᎯ\t-8.6757\n▁ᎢᏯ\t-8.67654\n▁ᎠᏥ\t-8.67724\n▁ᏑᏓᎵ\t-8.67894\n▁ᎠᏍᎪᎯ\t-8.67921\n▁ᎠᏎᏉ\t-8.68415\nᏧᏈ\t-8.68645\n▁ᎢᏳᏍᎩᏂ\t-8.68771\n▁ᏥᎨᏎ\t-8.69016\n▁ᎬᏅ\t-8.69018\nᏲ\t-8.69039\n▁Ꮁ\t-8.69549\n▁ᏅᏓᎬᏩᏓᎴᏅᏛ\t-8.6959\n▁ᏣᏁᎳᏅᎯ\t-8.69658\n▁ᏂᎪᎯᎸᎢ\t-8.69728\n▁ᎢᏳᎾᏍᏗ\t-8.69853\nᏍᎨ\t-8.7002\n▁ᎠᎦᏙᎥᎯᏍᏗ\t-8.70107\n▁ᎤᏒ\t-8.70267\nᎬᎾ\t-8.70293\nᏗᎦᎳᏫᎢᏍᏗᏱ\t-8.7079\n▁ᎤᎾᏓᏡᎬ\t-8.71026\n▁ᎧᏁᎬ\t-8.71051\n▁Ᏼ\t-8.7125\nᏍᎪᎢ\t-8.71408\nᏔᏁᎢ\t-8.71638\n▁ᏗᏓᏍᏚᏗᏱ\t-8.71715\n▁ᏃᏯ\t-8.71767\n▁Ꮕ\t-8.7177\n▁ᏅᏲᎯ\t-8.71779\nᏁᏗᏱ\t-8.7182\n▁ᏥᎦᏔᎭ\t-8.71907\nᎲᎩ\t-8.71948\nᏍᏔᏅ\t-8.72044\nᏟ\t-8.72229\no\t-8.72402\n▁ᏄᏪᏎ\t-8.72911\n▁ᏅᏗᎦᎵᏍᏙᏗᏍᎨ\t-8.72931\nᎭᏩ\t-8.73267\n▁ᎨᏴ\t-8.73359\n▁ᏔᏕᏲᎲᏍᎩ\t-8.73888\n▁ᏆᎴᏗ\t-8.73896\n▁ᏗᏤᏥ\t-8.73907\n▁ᎥᏣᏱ\t-8.73924\n▁ᎤᎾᏤᎵᎪᎯ\t-8.73928\n▁ᏗᎾᏓᏅᏟ\t-8.74074\n▁ᎤᏐᏅ\t-8.74237\n▁ᎤᎵ\t-8.75133\n▁ᎤᏅᏗ\t-8.75161\n▁ᎤᎾᏛᎦᏅ\t-8.75224\n▁ᏂᎦ\t-8.75402\n▁ᎠᎲ\t-8.75548\n▁ᎰᏩ\t-8.75775\n▁Ꮀ\t-8.75888\n▁ᏗᏂ\t-8.75982\n▁ᏅᎦᏍᎪᎯ\t-8.76112\n▁ᎤᎵᎮᎵᏍᏗ\t-8.76147\n▁ᎤᎴᏅᎮ\t-8.76162\n▁ᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ\t-8.76172\n▁ᎤᏲᎢᏳ\t-8.76238\n▁ᎠᎳᏂ\t-8.7626\n▁ᎬᏘ\t-8.76263\n▁ᏚᏬᎡᎢ\t-8.76269\n▁ᎡᎶᏛ\t-8.76314\n▁ᎤᏠᏱ\t-8.76349\n▁ᎠᏂᏯᏫᏍᎩ\t-8.7651\nᏎᏍᏗ\t-8.76577\nᏰ\t-8.76789\n▁ᏓᏔᎴᏒ\t-8.76953\n▁ᎠᏂᏐᎢ\t-8.77119\n▁ᎤᎷᏨ\t-8.77245\n▁ᎦᏁᎸᎢ\t-8.77285\n▁ᎦᎵᏦᏛᎢ\t-8.77321\n▁ᎤᏙᎯᏳ\t-8.77391\nᏔᏁ\t-8.77491\n▁-\t-8.77559\n▁ᎤᎧᏛ\t-8.77655\n▁ᎤᏅ\t-8.77782\nᎾᏍᎩ\t-8.77896\n▁ᏌᏉᏉ\t-8.78\n▁ᏂᎯᏃ\t-8.78057\nᏒᎯ\t-8.78104\n▁ᏗᏅᏃᏛ\t-8.7811\n▁ᎡᎺᏅ\t-8.78384\n▁ᎬᏩᏚᏫᏛ\t-8.78385\n▁ᎠᏂᏧᏣ\t-8.7839\n▁ᎩᎳᏈᏴ\t-8.78396\n▁ᎠᎬᏱᏣ\t-8.78442\n▁ᎭᏫᏂᏣ\t-8.78452\n▁ᎣᎯᏍᏙᏗ\t-8.78458\n▁ᎾᏍᎩᏍᎩᏂ\t-8.78482\n▁ᎬᏔᏅᎯ\t-8.78592\nᏐ\t-8.78769\n▁Ꭻ\t-8.79068\n▁ᎬᏂᎨ\t-8.79164\n▁ᎣᏂᏃ\t-8.79238\n▁ᎦᏍᎩᎸ\t-8.79975\n▁ᏂᏚᏪᏎᎴ\t-8.7999\n▁ᎤᏙᎴᎰᏒ\t-8.80192\n▁ᏥᏚ\t-8.80666\n▁ᎴᏥᎵ\t-8.8072\n▁ᎤᏣᎴᏍᏗ\t-8.80726\n▁ᏂᏣ\t-8.80961\n▁ᎦᎸᎳᏗᏢ\t-8.80971\n▁ᎭᏢ\t-8.81089\n▁Ꮴ\t-8.81984\nᎨᎳᏍᏗᏱ\t-8.82145\n▁ᏓᎦ\t-8.8235\n▁ᏥᎨᏐ\t-8.82357\n▁ᏂᏥᎥ\t-8.82373\n▁ᏍᎩᏴ\t-8.82523\n▁ᎤᏓᏅᏙ\t-8.82605\n▁ᏱᎦ\t-8.82769\n▁ᏗᏄᏬ\t-8.82892\n▁ᏫᎾᏍᏛᎾ\t-8.8309\n▁ᏧᏒᎯᏛ\t-8.83136\n▁ᏎᎵ\t-8.83215\n▁ᎤᏁ\t-8.83383\n▁ᏤᎯ\t-8.83529\n▁ᏗᎬᏩ\t-8.84602\n▁ᏚᏏᎳᏛ\t-8.84692\nᎬᎩ\t-8.84739\n▁ᎤᎾᏙᏓᏆᏍᎬ\t-8.84766\n▁ᎢᎸᏍᎩ\t-8.84923\n▁ᎢᏯᏂ\t-8.85012\nᏁᎸᎯ\t-8.85136\nᏍᏓ\t-8.85265\n▁ᏖᎸᎳᏗ\t-8.85529\n▁ᎦᎵᏦᏕ\t-8.85533\n▁ᎡᏉᏂ\t-8.85549\n▁ᎾᏂᏪᏍᎨᎢ\t-8.85616\n▁ᏔᎷᎩᏍᎩ\t-8.85759\n▁ᎠᏆᏤᎵᎦ\t-8.85836\n▁ᎡᎭ\t-8.86669\n▁ᏧᏗᏱ\t-8.86892\n▁ᎠᏋᏒ\t-8.87023\n▁ᎠᎦ\t-8.87758\n▁ᎨᎾᏂ\t-8.87812\n▁ᎭᏫᏯ\t-8.88031\n▁ᎤᏏᏙᎵ\t-8.88045\n▁ᎢᏳᏟᎶᏛ\t-8.88052\n▁ᏃᏈᏏ\t-8.88067\n▁ᏂᎬᏩᏪᏎᎴᎢ\t-8.88077\n▁ᏕᏣ\t-8.88218\n▁ᎪᏱᏁᎢ\t-8.88245\n▁ᎦᏚᏏ\t-8.88455\n▁ᏤᏍᏗ\t-8.88697\n▁ᎠᏂᎦᏔᎲ\t-8.89444\n▁ᎤᏁᏤ\t-8.89656\n▁ᎢᎾᎨᎢ\t-8.89814\nᏓᏁᏗ\t-8.90233\n▁ᏭᏕᎵᎬ\t-8.90593\n▁ᏗᏨᏍᏙᏗ\t-8.90598\n▁ᏑᎾᏓᏡᎩ\t-8.90601\nᏒᎾ\t-8.90632\n▁ᏧᏂᎸᏫᏍᏓᏁᎯ\t-8.90673\n▁ᎢᎾᏛ\t-8.90692\n▁ᎫᏩ\t-8.9083\n▁ᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ\t-8.9084\n▁ᎦᏍᎩᎶ\t-8.91181\n▁ᏥᎨᏐᎢ\t-8.91395\n▁ᎠᏴᏃ\t-8.91681\n▁ᎡᎯᏍᏗ\t-8.92185\nᎲᎾ\t-8.92284\n▁ᏗᎫᎪᏙᏗ\t-8.92291\n▁ᎤᏪᎵᏎ\t-8.9237\n▁ᏄᎾᏍᏛ\t-8.92471\nᏛᎾ\t-8.9258\n▁ᎤᏁᏤᎴ\t-8.92666\n▁ᎨᏥ\t-8.92685\n▁ᎣᎭᏁ\t-8.92798\nᏗᏍᎬ\t-8.93217\n▁ᎬᏃᏛ\t-8.93239\n▁ᏗᎵᏍᏓᏴᏗᏱ\t-8.9326\n▁ᎠᏥᎸᏉᏗᏳ\t-8.93312\n▁ᎤᏁᎳᏅᎯᏍᎩᏂ\t-8.93312\n▁ᎤᏙ\t-8.93334\n▁ᏂᏚ\t-8.9356\n▁Ꭺ\t-8.93778\nᎴᏍᏗ\t-8.93889\nᏗᏍᎩ\t-8.9415\nᎯᎠ\t-8.94181\n▁ᏂᎦᏪᏍᎬ\t-8.94673\n▁ᎤᎵᏏᎬ\t-8.9514\n▁ᎡᎶ\t-8.95147\n▁ᎤᏪᎷᏁ\t-8.95173\n▁ᏄᏛᏁᎴ\t-8.95196\n▁ᎬᏂᏳᏉᏃ\t-8.95225\n▁ᎠᏆᏓᏅᏙ\t-8.95421\n▁ᏥᏍᏆ\t-8.95649\nᎯᏳ\t-8.95705\n▁ᎢᏅ\t-8.95852\n▁ᎦᎵ\t-8.95862\n▁ᎤᏂᎷᏤ\t-8.95871\n▁ᏧᎾᏤᎵ\t-8.95889\n▁ᏂᎦᏪᎭ\t-8.95964\n▁ᎥᏞᏍᏗ\t-8.95967\n▁ᎠᎰᎵ\t-8.96028\n▁ᎠᎵ\t-8.96249\n▁ᎠᏎᏉᏉ\t-8.96405\n▁ᎣᎦ\t-8.96537\nᎷ\t-8.96863\n▁ᎤᎬᏫᏳ\t-8.97028\n▁ᎮᎾ\t-8.97048\nᏕᏍᏗ\t-8.97223\n▁ᏣᏥ\t-8.97257\n▁ᎡᎵ\t-8.97577\n▁ᎠᏰᎸᎢ\t-8.97587\nᏚ\t-8.97662\n▁ᏑᎾᎴᎢ\t-8.97792\n▁ᎠᏓᏅᏖᏍᎬ\t-8.97949\n▁ᎨᏣ\t-8.98219\nᏄ\t-8.98249\n▁ᎣᏥ\t-8.98307\nᎰᎢ\t-8.98394\n▁ᎠᎵᏍᎪᎸᏙᏗ\t-8.98499\n▁ᏫᏚ\t-8.98517\n▁ᎤᏍᎪᎸ\t-8.98568\n▁ᎩᎶᏍᎩᏂ\t-8.98701\n▁ᏦᎠᏍᎪᎯ\t-8.98706\n▁ᏧᏆᎶᎦ\t-8.98707\n▁ᎩᎦ\t-8.98712\n▁ᏗᏂᎳᏫᎩ\t-8.98741\n▁ᎤᎩᎬ\t-8.98762\n▁Ꮤ\t-8.98764\n▁ᏧᎾᏤᎵᎦ\t-8.98863\n▁ᏣᏁᎭ\t-8.98875\n▁ᎩᎦᎨᎢ\t-8.99192\nᎻ\t-8.9925\n▁ᎤᏩᏒᏉ\t-8.9958\nᏁᏢᏔᏅᏛ\t-9.00144\n▁ᏍᎩᎾ\t-9.00396\n▁ᏗᎬ\t-9.00465\n▁ᏓᏳ\t-9.00645\n▁ᏅᏗᎦᎵᏍᏙᏗᏍᎬ\t-9.00839\n▁ᎢᏣᎵᏍᏓᏁᏗ\t-9.01292\n▁ᏩᎭᏯ\t-9.01562\n▁ᏗᎧᎸᎬ\t-9.01563\n▁ᏙᏱᏗᏢ\t-9.01579\n▁ᏣᎳᎩ\t-9.01617\n▁ᎡᎶᏗ\t-9.01871\n▁ᎤᏠᏱᏉ\t-9.02037\n▁ᎠᏙᎯ\t-9.02187\nᏪ\t-9.02202\nᏙᎢᏳᏍᏗ\t-9.02568\nᎯᏍᏗ\t-9.0261\n▁ᏱᏓ\t-9.0269\n▁ᎦᎶᎯᏍᏗ\t-9.02829\n▁ᎤᏣᏘᏂ\t-9.03586\n▁ᎤᏚᎵᏍᎬ\t-9.03798\n▁ᎤᎾᏓ\t-9.03904\n▁ᎢᏳᎾᎵᏍᏓᏁᏗ\t-9.04275\n▁ᎢᏳᎾᏛᏁᏗ\t-9.04299\nᏁᎴ\t-9.04497\n▁ᎯᏍᎦᏍᎪᎯ\t-9.04503\n▁ᏂᏚᏳᎪᏛᎾ\t-9.04504\n▁ᏧᏬᏰᏂ\t-9.04507\n▁ᎠᏂᏲᏍᎩ\t-9.04519\n▁ᏣᏁᏢᏔᏅᎯ\t-9.04532\n▁ᏣᏙᏓ\t-9.04556\n▁ᎤᏂᏙᏓ\t-9.04575\n▁ᏩᏍᏛ\t-9.04595\n▁ᎬᏩᏂ\t-9.04609\n▁ᏱᏥᎦᏔᎭ\t-9.04622\n▁ᏥᎻ\t-9.04766\n▁ᎤᏍᏆᏂᎩᏗ\t-9.04816\n▁ᎶᏗ\t-9.04965\n▁ᎾᎥᏂᎨ\t-9.05187\nᏍᏓᏯ\t-9.05281\n▁ᎤᎦᏔ\t-9.05476\n▁ᎤᎵᏍᏆᎸᏗ\t-9.05735\n▁ᎠᏂᏅ\t-9.06074\nᏗᏍᎨᏍᏗ\t-9.06137\n▁ᎤᏐᏱ\t-9.06488\n▁ᎤᏩ\t-9.06525\n▁ᎤᏪ\t-9.06663\n▁ᎬᎩ\t-9.06677\n▁ᏱᏣ\t-9.06947\nᏔᏂ\t-9.07333\n▁ᎤᎵᏍᏓᏴᏗ\t-9.07362\n▁ᏕᎤ\t-9.07441\n▁ᎤᏪᏘ\t-9.07498\n▁ᏱᎦᎵᏍᏙᏓ\t-9.07537\n▁ᎵᎠ\t-9.07539\n▁ᎤᎵᏍᏈᏗ\t-9.07541\n▁ᎠᏥᏅᏏᏓᏍᏗ\t-9.07545\n▁ᏃᏊ\t-9.07548\n▁ᎢᏥᏍᎦᏯ\t-9.0756\n▁ᏎᎦ\t-9.07682\n▁ᎤᏁᎦ\t-9.07694\n▁ᎤᎧᎵᏨᎯ\t-9.07697\n▁ᏧᏓᏏ\t-9.07699\n▁ᎠᎦᏔᎲ\t-9.07748\n▁ᎤᎾᏝᎢ\t-9.07774\nᏊ\t-9.07874\nᏗᎭ\t-9.08146\n▁ᎤᏍᎪᏍ\t-9.08155\n▁Ᏺ\t-9.0817\n▁ᎢᏤᎲᎢ\t-9.08326\n--\t-9.08839\nᏛᎢ\t-9.09297\n▁ᎢᏤᎲ\t-9.09486\nᏁᏗ\t-9.09487\n▁ᎠᎹᏱ\t-9.0959\n▁ᏄᏪᏎᎸ\t-9.09729\n▁ᎠᏴᏍᎩᏂ\t-9.0989\n▁ᏓᎩ\t-9.10396\n▁ᎤᎷᏤ\t-9.10578\n▁ᎵᏇᎩ\t-9.10658\n▁ᏚᏅᏓᏒ\t-9.10659\n▁ᏒᎦᏔ\t-9.10659\n▁ᎤᎦᎾᏍᏛ\t-9.10666\n▁ᎦᎶᏇ\t-9.10681\n▁ᏏᏌ\t-9.10725\n▁ᏚᎾᏙᎥ\t-9.10731\n▁ᏥᏄᏍᏗ\t-9.10746\n▁ᎬᏙᏗ\t-9.10825\nᎸᎭ\t-9.10886\n▁ᎦᎸᎳᏗᏣ\t-9.10977\nᏍᏔᏁᎢ\t-9.11117\nᏝ\t-9.11446\n▁ᏧᏓ\t-9.11962\nᏍᏘ\t-9.1225\n▁ᎡᎲ\t-9.13064\n▁ᏡᎬ\t-9.13269\n▁ᏛᎦ\t-9.1341\nᎯᏍᏗᏱ\t-9.13652\n▁ᎢᏯᏛᏁᏗ\t-9.13658\n▁ᏱᏚ\t-9.13806\n▁ᏎᏓᏂ\t-9.13886\n▁ᏔᎴᎲᎦ\t-9.13886\n▁ᏥᎪᏪᎳ\t-9.13891\n▁ᎠᏂᏳᏩᏁᎦ\t-9.13892\n▁ᏧᏓᏆᏙᎩ\t-9.13897\n▁ᎠᏂᏴᏫ\t-9.139\n▁ᎢᎬᏁᎸᎯ\t-9.13919\n▁ᎦᏚᎢᏣ\t-9.13923\n▁ᎤᏲᎱᏎᎢ\t-9.14122\n▁ᏓᏥ\t-9.14243\n▁ᏭᎷᏤ\t-9.14331\n▁ᎢᏳᎵᏍᏓᏁᏗ\t-9.14453\n▁ᎠᏗᏔᏍᏗ\t-9.14455\n▁ᎬᏅᎢ\t-9.15086\n▁ᏄᎾ\t-9.15511\nᏖ\t-9.15589\n▁ᎨᎵ\t-9.15722\nᏏᏴᏫᎭ\t-9.15957\n▁ᎤᏬᏢ\t-9.16005\n▁ᎤᏂᏍᎦᏅᏨ\t-9.1612\n▁ᏕᎯ\t-9.16393\n▁ᎤᏛᎦᏁ\t-9.16453\n▁ᏄᎵᏍᏔᏂᏙᎸ\t-9.1646\n▁ᎦᏰ\t-9.16558\n▁ᏈᎵᎩ\t-9.17077\n▁ᎨᎻᎵ\t-9.17218\n▁ᏧᎸᏫᏍᏓᏁᎯ\t-9.17218\n▁ᏅᏓᎦᎵᏍᏔᏂ\t-9.17218\n▁ᏔᎳᏍᎪᎯ\t-9.17218\n▁ᎢᏣᎵᏅᏟ\t-9.1722\n▁ᎦᏅᏍᏙᏗ\t-9.17224\n▁ᏕᏧᎬ\t-9.17225\n▁ᎤᎾᏓᏤᎵᏛ\t-9.17228\n▁ᎯᏅᏏᏓᏍᏗ\t-9.17246\n▁ᎢᏥᏙᏓ\t-9.17248\n▁ᏧᎾᏛᏐᏅᎯ\t-9.17272\n▁ᎢᏣᏛᏁᏗᏱ\t-9.17301\n▁ᏂᏗ\t-9.17629\n▁ᎤᏕᏯᏙᏗ\t-9.17671\n▁ᎦᏚᎢ\t-9.17746\n▁ᏙᏱ\t-9.18117\n▁ᎤᏂᎪᎲ\t-9.1903\nᏙᎸᎢ\t-9.19111\n▁ᎤᎶᎩᎸ\t-9.19255\n▁ᎬᏗᏍᎬ\t-9.19691\nᎣᏍᏓ\t-9.19825\n▁ᏂᎯᏰᏃ\t-9.19942\n▁ᎤᏛᎾ\t-9.20537\n▁ᏐᎣᏁᎳ\t-9.20666\n▁ᎠᏂᎨᏯ\t-9.20667\n▁ᎤᎩᏨᏛ\t-9.20681\n▁ᏥᏂᎬᏅ\t-9.20689\n▁ᎢᏯᏛᏁᎯ\t-9.20692\n▁ᎠᏕᎳ\t-9.20699\n▁ᎢᏨᎨᏳᎢ\t-9.20706\n▁ᏂᎦᎵᏍᏗᎭ\t-9.20718\n▁ᎦᎸᏉᏙᏗ\t-9.20735\n▁ᎤᎴᏂᏙᎴᎢ\t-9.20758\n▁ᎦᏁᎦ\t-9.20767\n▁ᏓᎾ\t-9.20897\n▁ᎢᏯᏍᏗ\t-9.21003\n▁ᏭᎶᏎᎢ\t-9.21077\n▁ᎡᎮᎢ\t-9.21175\n▁ᎾᎯᏳᏉ\t-9.21253\n▁ᎦᎵᏉᎩᏁ\t-9.21415\n▁ᎤᎷᏨᎩ\t-9.21439\n▁ᎤᎪᎮ\t-9.21461\n▁ᎤᏪᏅᏎ\t-9.2168\n▁ᏂᎦᎥᏉ\t-9.22076\n▁ᎤᏁᏤᎸ\t-9.22816\n▁ᎦᏬᏂᏍᎬ\t-9.22955\nᎨᏳᎯᏳ\t-9.23126\nᎠᏗᏔᏍᏗ\t-9.23296\nᏗᎦᏅᏌᏗ\t-9.23323\nᏡ\t-9.23511\n▁ᏗᎨᏒ\t-9.23732\nᎧᏔᎮᎢ\t-9.23763\n▁ᏂᎬᎾᏛᎢ\t-9.23847\n▁ᎤᎵᏍᏆᏗᏍᏗ\t-9.23987\n▁ᏧᏂᎾᏫ\t-9.24024\n▁ᎠᏂᏍᎦᎾ\t-9.24168\n▁ᎤᎾᏫ\t-9.24248\n▁ᏓᏆᎴᎷ\t-9.24256\n▁ᏅᎬᏩᏪᏎᎸᎩ\t-9.24266\n▁ᎢᏥᎦᏔᎭ\t-9.24302\n▁ᏏᏓᏁᎸᎯ\t-9.24343\n▁ᎠᏂᏃᎯᎵᏙᎯ\t-9.24371\n▁ᎠᏓᏁᎯ\t-9.24376\n▁ᎤᏟᎯᏳ\t-9.24379\n▁ᎦᏛᎦ\t-9.24556\n▁ᎠᏤᎯ\t-9.2459\n▁ᏤᎭ\t-9.24869\n▁ᎢᎬᏩ\t-9.24936\n▁ᎢᎦᏓ\t-9.25161\n▁ᎠᏂᎦᏔᎲᎢ\t-9.25302\nᏇ\t-9.25491\nᏛᎩ\t-9.25594\n▁ᎦᏓᏁ\t-9.25763\n▁ᎠᏓᏅᏓᏗᏍᏗ\t-9.26017\nᎲᎦ\t-9.26432\n▁ᏴᏫᏉ\t-9.26667\n▁ᎪᏪᎸ\t-9.26748\n▁ᏅᏩᏓᎴᏃ\t-9.26766\n▁ᏥᏓ\t-9.26791\n▁ᎠᏂᏬᏂᏍᎬ\t-9.27189\n▁ᏄᏩᏁᎴ\t-9.27239\n▁ᏂᎦᎵᏍᏗᏍᎬ\t-9.27417\n▁ᎠᏠᏁᏗ\t-9.27941\n▁ᏓᎿᏩ\t-9.27941\n▁ᏅᏓᏳᎶᏒᎯ\t-9.27948\n▁ᎧᏃᎯᏰᎩ\t-9.2795\n▁ᎡᏉᎯᏳ\t-9.27951\n▁ᎠᎦᏘᏏᏗᏢ\t-9.27964\n▁ᏧᏳᎪᏗ\t-9.27976\n▁ᎾᏍᎩᏯᏉ\t-9.27979\n▁ᏗᏰᎸᎯ\t-9.27991\n▁ᎤᏔᎳᏬᎯᏍᏗ\t-9.28013\n▁ᎦᎷᏨᎭ\t-9.28026\n▁ᏅᏃᎯ\t-9.28114\n▁ᎠᎹᏟ\t-9.28121\n▁ᎠᏆᏛᏅ\t-9.28219\n▁ᎤᏂᏲ\t-9.28407\n▁ᎤᎾᎵ\t-9.28548\n▁ᏧᏂᏍᏗ\t-9.28771\n▁ᎪᏪᎸᎢ\t-9.28776\n▁ᎤᏁᏨᎩ\t-9.3009\n▁ᏄᏛᏁᎸ\t-9.30306\n▁ᎦᏙᎨ\t-9.30363\n---\t-9.30682\n▁ᏄᏍᏕ\t-9.30889\n▁ᎤᏕᏘᏴᏌᏗᏒ\t-9.31007\n▁ᏕᎤᏙᎥ\t-9.3104\n▁ᏓᏳᏓᎴᏅ\t-9.31053\n▁ᎠᏍᏛ\t-9.31196\n▁ᎦᏙᎬ\t-9.31306\n▁ᏗᏏᏓᎵ\t-9.31787\n▁ᎣᏣᎵᏅᏟ\t-9.31788\n▁ᏤᎩᏏᏂ\t-9.31788\n▁ᏆᏂᏆ\t-9.31789\n▁ᎯᎸᎢᏴ\t-9.3179\n▁ᎢᏓᏓᏅᏟ\t-9.31794\n▁ᎨᏥᎸᏉᏗ\t-9.31796\n▁ᏗᎨᎦᏁᎶᏗ\t-9.31798\n▁ᎠᏈᎻᎴᎩ\t-9.31807\n▁ᏗᏇᏥ\t-9.31807\n▁ᎤᎦᎵᏍᏗ\t-9.31811\nᏅᏏᏛ\t-9.3183\n▁ᏩᎶᏏ\t-9.31848\n▁ᎬᏩᏕᏁᎴᎢ\t-9.31888\n▁ᎾᎩᏪᏎᎸᎩ\t-9.31897\n▁ᏕᏣᏓᏅᏛᎢ\t-9.31979\n▁ᎠᏓᏫ\t-9.3198\n▁ᏦᏰᏂ\t-9.32048\n▁ᏧᏩ\t-9.3222\nᏱᎩ\t-9.32262\n▁ᎠᏂᎪᎢ\t-9.32321\n▁ᎪᏍᏓ\t-9.32414\n▁ᏧᎬ\t-9.33326\n▁ᎯᎪ\t-9.33464\n▁ᎪᏪᎵᎯ\t-9.33529\n▁ᎪᎳ\t-9.33561\n▁ᎠᏯᏙ\t-9.33672\nᏍᎪᎯ\t-9.3379\nᎢᏍᏗᏱ\t-9.34551\nᏁᎭ\t-9.34561\n▁ᏚᎴᏅ\t-9.34581\n▁ᎾᏃ\t-9.34836\n▁ᎦᎸ\t-9.34883\n▁ᏕᏣᏙᎥ\t-9.35013\nᏙᎯ\t-9.35158\n▁ᎢᏣᏤᎵ\t-9.35686\n▁ᏘᏅᏏᏓᏍᏗ\t-9.35794\n▁ᏄᏂᎬᏫᏳᏌᏕᎩ\t-9.358\n▁ᎥᏓᎵ\t-9.35806\n▁ᎢᎳᏯ\t-9.35815\n▁ᎤᎾᎵᏍᏕᎸᏙᏗ\t-9.35825\n▁ᏗᏘᏂᏙᎯ\t-9.35852\n▁ᏐᎳ\t-9.35873\n▁ᎠᏁᏙᎯ\t-9.35873\n▁ᏗᎨ\t-9.35983\n▁ᎤᏩᏒᎯᏳ\t-9.35988\n▁ᏎᎦᏨ\t-9.3599\n▁ᏗᏣᏤᎵᎦ\t-9.36091\n▁ᎤᏙᎯᏳᏒ\t-9.36131\n▁ᎤᏕᏅᎯ\t-9.36168\nᏨᎩ\t-9.3626\n▁ᎠᏍᏓᏱ\t-9.36292\n▁ᎬᏗᏍᎩ\t-9.36328\n▁ᎠᎦᏗ\t-9.36423\n▁ᏭᏂ\t-9.37062\n▁ᎠᏂᏓ\t-9.37318\nᎧᏂ\t-9.37368\nᏛᏁᏗ\t-9.37386\n▁Ꮑ\t-9.37389\n▁ᎣᏓᎸᎢ\t-9.37399\nᎦᏅᎯᏛ\t-9.37447\nᎢᏳᏍᏗ\t-9.37517\ne\t-9.38629\n▁ᎠᎵᏍᏚᎶ\t-9.38796\nᎩᏍᏗ\t-9.38884\n▁ᎥᎩ\t-9.3898\nᏌᏛ\t-9.39145\nᏅᏒ\t-9.39241\n▁ᎠᏥᎸᏱ\t-9.39287\n▁ᏱᏥ\t-9.3939\n▁ᏄᏩᏁᎸ\t-9.39571\n▁ᏙᏛ\t-9.39647\n▁ᎤᎶᏐᏅ\t-9.39687\n▁ᎠᎦᏴᎵ\t-9.39879\n▁ᎠᎧᎵᎢ\t-9.39888\n▁ᎠᏰᏙᎳᏛᏗ\t-9.39928\n▁ᏩᏏᏓᏂ\t-9.39954\n▁ᏓᏏᎳᏛ\t-9.39955\n▁ᏚᏬᏢᏔᏅᎩ\t-9.39967\n▁ᏗᏓᏅᏙ\t-9.3998\n▁ᎠᎨᏳᏣ\t-9.40001\n▁ᏱᏄᏍᏗ\t-9.40007\n▁ᏗᎨᏫ\t-9.40012\n▁ᏧᏂᎸᏫᏍᏓᏁᏗᏱ\t-9.40048\n▁ᎠᎹᏰᎵ\t-9.4007\n▁ᎤᏍᎦᏃᎵ\t-9.40081\n▁ᏥᏁᎬᎢ\t-9.40325\n▁ᏂᏥ\t-9.40416\n▁ᎠᏤ\t-9.40432\n▁ᎤᏲᎱᏒᎯ\t-9.4069\n▁ᎨᏂ\t-9.40714\n▁ᎪᎩ\t-9.4077\n▁ᎢᎬ\t-9.40871\n▁ᎫᏢᏗ\t-9.40899\nᎯᏍᏙᏗ\t-9.41011\nᎠᏂᎳᏍᏓᎸ\t-9.41036\nᏍᏙ\t-9.41139\n▁ᏗᎩ\t-9.4141\n▁ᎧᏁᎬᎢ\t-9.41442\nᏍᎬᎾ\t-9.41635\n▁Ꮡ\t-9.4166\n▁ᏚᏁᏤᎴ\t-9.41732\n▁ᏗᎦᎸᏉᏗ\t-9.41791\n▁ᎾᏂᎥᏉ\t-9.42418\n▁ᎠᎲᎢ\t-9.42597\nᏅᎢ\t-9.42617\n▁ᏚᏙᎥᎢ\t-9.42797\nᎨᏒ\t-9.42878\n▁ᎠᏦᏴ\t-9.43547\n▁ᏗᏓᎴᏂᏍᎬ\t-9.43552\n▁ᎤᏬᎸ\t-9.438\n▁ᎣᏏ\t-9.43815\nt\t-9.43816\n▁ᏗᎦᎫᏍᏛᏗ\t-9.44065\n▁ᏍᏈᏍᏓ\t-9.44302\n▁ᎠᏍᏆᎨᏂ\t-9.44302\n▁ᎵᏫ\t-9.44305\n▁ᎨᏥᏅᏏᏓᏍᏗ\t-9.44308\n▁ᎧᏂᎩᏓ\t-9.44331\n▁ᎦᏬᏂᏍᎩ\t-9.44334\n▁ᏚᏬᏢᏅᎩ\t-9.44336\n▁ᎢᎩᏙᏓ\t-9.44338\n▁ᎾᏍᎦᏅᎾ\t-9.44345\n▁ᎤᏗᎴᎩ\t-9.44347\n▁ᎧᏃᎮᏍᎩ\t-9.44348\n▁ᏍᏔᏯ\t-9.44389\n▁ᎤᎾᏁᎳᎩ\t-9.44423\n▁ᎢᏳᏍᏗᏉ\t-9.44424\n▁ᎤᏅᏌ\t-9.44438\n▁ᎠᏢᏗᏱ\t-9.44452\n▁ᎦᎶᏙᏗ\t-9.4446\nᏬ\t-9.44495\nᏕᎢ\t-9.44529\n▁ᎠᏲᎩ\t-9.44558\n▁ᎤᏓᏅᏘᏳ\t-9.44589\n▁ᎤᏂᏥ\t-9.44596\n▁ᎤᏅᏟ\t-9.44619\n▁ᏱᏗᏥ\t-9.44678\nᏒᎭ\t-9.44873\n▁ᎦᎶ\t-9.44906\n▁ᎤᎵᏍᏗ\t-9.44976\n▁ᎦᏅᎯᏛ\t-9.45233\n▁ᏕᎨ\t-9.4538\n▁ᏂᏓ\t-9.45393\n▁ᎡᎲᎢ\t-9.45627\n▁ᏥᏕ\t-9.4578\n▁ᎤᏓᏅᏖ\t-9.46332\nᏤᎢ\t-9.46452\n▁ᎠᏍᎦᎾ\t-9.46467\n▁ᏱᏗ\t-9.46715\n▁ᏅᏓ\t-9.46718\n▁ᏓᎬ\t-9.47235\n▁ᎠᏔᎴᏒ\t-9.47548\nᎠᎴ\t-9.4756\n▁ᏫᏣ\t-9.47866\n▁ᏦᎩ\t-9.47954\n▁ᏓᏓᎿᏩᏍᏛ\t-9.48041\n▁ᎤᏂᏣᏖ\t-9.48059\n▁ᏂᏚᎩᏨᏂᏒ\t-9.48066\nᏚᎵᏍᎬᎾ\t-9.48076\n▁ᏓᏆᏙᎥ\t-9.48085\n▁ᎢᎦᎦᏛ\t-9.48198\n▁ᏗᎧᏃᏗ\t-9.48649\n▁ᏧᎸᏫᏍᏓᏁᏗ\t-9.48675\n▁ᏩᏚᎵᏏ\t-9.48848\n▁ᎦᎷᏯᏍᏗ\t-9.48849\n▁ᎪᏍᏚ\t-9.48851\n▁ᏧᏯᏖᎾ\t-9.48852\nᎴᎯᏐᏗ\t-9.48855\n▁ᏧᏃᏰᏂ\t-9.48857\n▁ᏓᎦᎷᏥ\t-9.48868\n▁ᏅᏛᎩᏅᏏᏛ\t-9.4887\n▁ᏂᎦᏪᏍᎨᎢ\t-9.4887\n▁Ꭹ\t-9.48872\n▁ᏧᏂᏢᎩ\t-9.48884\n▁ᏗᏂᎦᏙᎵ\t-9.48887\n▁ᎾᏎᎵᏗ\t-9.48889\n▁ᎠᎩᏅᏏᏙᎯ\t-9.48894\n▁ᎯᎸᎯᏳ\t-9.48915\n▁ᎬᏂᏗᏳ\t-9.4892\n▁ᎠᏂᎩᏏ\t-9.48922\n▁ᎤᏍᏆᎸᎲ\t-9.4894\n▁ᏗᎧᏃᏗᏱ\t-9.49074\n▁ᎠᎩᏏ\t-9.49175\n▁ᎤᏂᎷᏨᎩ\t-9.4926\n▁ᎭᎾᎾ\t-9.49424\n▁ᎤᏥᎸᎢ\t-9.49556\nᏍᏆ\t-9.49598\n▁ᎠᎼ\t-9.49671\n▁ᎢᎦᏘ\t-9.49752\n▁ᏭᎷᏤᎢ\t-9.49968\nᏁᎯ\t-9.50019\nᏍᏉ\t-9.50071\n▁ᎢᎬᏁᏗ\t-9.50199\nᎠᏋᏌ\t-9.502\nᎦᏔᎲᎾ\t-9.5029\n▁ᏩᏯ\t-9.50435\nᏍᎬᎩ\t-9.50711\nᎡᎵ\t-9.50914\nᏅᎾ\t-9.51035\nᏍᎦᏅᎢᏍᏗ\t-9.51237\n▁Ꭾ\t-9.51272\nᎩᏎ\t-9.52251\n▁ᎤᏲᎢ\t-9.52289\n▁ᎤᏍᎦᏅᏨ\t-9.52489\n▁ᏥᏣ\t-9.5249\n▁ᎢᏤᎾ\t-9.52558\nᏤᏍᏗ\t-9.52622\n▁ᎠᎴᏬ\t-9.52735\nᎲᏏ\t-9.52748\n▁ᎦᏛᎬ\t-9.52802\n▁ᎦᎳᎨᏴ\t-9.52817\n▁ᏕᎦᏚᎲ\t-9.52822\n▁ᏗᎩᎦᏴᎵᎨ\t-9.52831\n▁ᏂᏣᏛᏁᎸ\t-9.52834\n▁ᏚᏂᎸᏫᏍᏓᏁᎲ\t-9.52857\n▁ᎦᏓᏅᏖᏍᎬ\t-9.52878\n▁ᏚᎾᏓᏅᏛ\t-9.52892\n▁ᎤᏕᏅ\t-9.52925\n▁ᎠᎪ\t-9.5301\n▁ᎦᏄᎸ\t-9.53127\nᏰᎵ\t-9.53184\n▁ᏇᏂ\t-9.53383\n▁ᏥᎦ\t-9.53432\n▁ᎤᎾᎵᏍᏓᏴᏗ\t-9.53487\n▁ᎢᏥᏈ\t-9.53576\nc\t-9.53576\n▁ᏗᎾ\t-9.536\n▁ᎢᏳᏩᎫᏗ\t-9.53609\n▁ᏒᎧᏔ\t-9.53609\n▁ᎢᏳᏓᎴᎩ\t-9.53609\n▁ᏄᏃᎯᏳᏒᎾ\t-9.53609\n▁ᎢᏥᏡᏱ\t-9.53609\n▁ᎦᎵᏆᏍᎪᎯ\t-9.5361\n▁ᏚᏙᎡᎢ\t-9.53612\n▁ᏙᎴᏛ\t-9.53617\n▁ᏫᏥᎢᎦ\t-9.53618\n▁ᏎᎷ\t-9.53618\n▁ᎠᏂᏣᎳᎩ\t-9.53621\n▁ᎢᏤᏯᏔᎮᏍᏗ\t-9.53624\n▁ᎤᏍᎦᏎᏗ\t-9.53625\n▁ᎢᏌᏯ\t-9.53625\n▁ᎢᏗᎦᏔᎭ\t-9.53638\n▁ᏅᏓᏳᎵᏍᏙᏔᏅᎩ\t-9.53646\n▁ᏄᎬᏫᏳᏌᏕᎩ\t-9.53654\n▁ᎢᏨᏲᏎᎭ\t-9.53664\n▁ᏗᎹᏗ\t-9.53671\n▁ᎠᏂᎪᏕᏍᎩ\t-9.53676\n▁ᎤᎯᏐᏗ\t-9.53682\n▁ᏧᏙᏓᏆᏓ\t-9.53708\n▁ᎾᏂᎥᎢ\t-9.53737\nᎵᎦ\t-9.5374\n▁ᎠᏏᎾᏌᏂ\t-9.53746\n▁ᎠᎫᏴᏙᏗ\t-9.53822\n▁ᏗᎦᎪᏗᏱ\t-9.5385\n▁ᎦᎾᏰᎯᏍᏗ\t-9.53854\n▁ᎤᎾᏄᎪᏫᏒᎯ\t-9.53918\n▁ᎤᎾᏫᏱ\t-9.53921\n▁ᎠᏆᏛᎦᏅᎩ\t-9.53969\n▁ᏗᏦᏢᏗ\t-9.54073\n▁ᎦᏬᏂᎯᏍᏗ\t-9.54094\n▁ᏁᎳ\t-9.54115\nᏁᎳᏅᎯ\t-9.54133\n▁ᏭᏴᎴᎢ\t-9.54146\n▁ᏩᏍᏗ\t-9.54311\n▁ᏉᎳᏃ\t-9.54341\n▁ᏧᏪ\t-9.54472\n▁ᎠᏗᎭ\t-9.54492\n▁ᏂᏕ\t-9.54571\n▁ᎤᏪᎿᎢ\t-9.54702\n▁ᏴᎩ\t-9.54812\n▁ᏗᏦ\t-9.54943\n▁ᏫᎦ\t-9.55029\n▁ᎢᏤᎯ\t-9.5507\n▁ᏅᏛ\t-9.55742\n▁ᎦᏥ\t-9.55833\n▁ᏄᏍᏛᎢ\t-9.55922\n▁ᎡᏘ\t-9.56526\nᏗᏍᎪ\t-9.56938\nᏂᏏ\t-9.57083\nᎡᎢ\t-9.57427\nᎦᏘ\t-9.57545\nᏕᎾ\t-9.57664\n▁ᏚᎪᎮ\t-9.57673\n▁ᏅᏗᎦᎵᏍᏙᏗᏍᎪ\t-9.57704\nᎤᏁᎳᏅᎯ\t-9.57762\n▁ᎠᏂᏃᎮᏍᎬ\t-9.57809\n▁ᏧᏪᏅᏒ\t-9.57812\n▁ᎤᏃᏴᎬ\t-9.57854\n▁ᏓᏓᏁᎸ\t-9.5788\n▁ᎯᏯ\t-9.58248\nᎲᏍᎩ\t-9.58319\nᏁᎳ\t-9.58398\nᎶᎯ\t-9.58423\nᏛᎬᎦ\t-9.58479\n▁ᎡᏉᏗ\t-9.58487\n▁ᎤᏂᏬᏂᎯᏍᏗ\t-9.58521\nᎾᏝᎢ\t-9.58536\n▁Cr\t-9.58609\n▁ᎢᏳᎾᏛᎿᏕᎩ\t-9.58609\n▁ᏍᎦᏚᎩ\t-9.58609\n▁ᏂᏥᏪᎭ\t-9.5861\n▁ᏎᎩᎵ\t-9.58611\n▁ᏧᏓᏕᏒᏛ\t-9.58615\n▁ᏗᏂᎭᏄᎸᎯ\t-9.58616\n▁ᎡᏈᏌ\t-9.58618\n▁ᏔᎷᏣ\t-9.58619\n▁ᎠᏦᎭᏴ\t-9.58622\n▁ᎠᎩᎵᏯ\t-9.5863\n▁ᏌᎪᏂᎨ\t-9.58635\n▁ᎢᎳᎪ\t-9.58639\n▁ᏍᎩᏃᎲᏏ\t-9.5864\n▁ᏗᎪᏪᎵᏍᎩ\t-9.58646\n▁ᎤᏩᏙᎯᏴᏓ\t-9.58647\n▁ᎢᏳᏓᎴᏅᏛ\t-9.58648\n▁ᎤᏂᎬᏫᏳᏌᏕᎩ\t-9.58649\n▁ᎢᏳᏩᏂᏐᏗᏱ\t-9.58651\n▁ᎢᏳᏩᏁᏗᏱ\t-9.5866\n▁ᏙᏰ\t-9.58693\n▁ᎤᏰᎯ\t-9.58695\n▁ᎤᏬᏗᎨ\t-9.58733\n▁ᏒᎮᏱᏣ\t-9.5877\n▁ᎢᎬᏁᎯ\t-9.58771\n▁ᏓᏯᎢ\t-9.58783\n▁ᎾᏍᎩᏉ\t-9.59039\n▁Ꮖ\t-9.59074\n▁ᎧᎸᎢ\t-9.59088\nᏙᎩ\t-9.59102\n▁ᏚᎸᏫᏍᏓᏁᎲᎢ\t-9.59117\n▁ᏚᎾᏓᏅᏛᎢ\t-9.59415\nᏁᎴᎢ\t-9.59503\n▁ᎤᎾᎵᎢ\t-9.59644\nᏔᏅᎭ\t-9.59915\n▁ᏄᏛᏁᎴᎢ\t-9.60039\nᏑᏴᎾ\t-9.60084\n▁ᎦᎸᎳᏗᏳ\t-9.60236\n▁ᎤᎾᏓᏡᎬᎢ\t-9.60411\n▁ᏣᏤᎵᎦ\t-9.60514\n▁ᎡᏓ\t-9.60617\n▁ᎨᎦ\t-9.60779\n▁ᎪᎯᏓ\t-9.60893\nᏁᎸᎩ\t-9.61148\n▁ᏂᎦᏗ\t-9.61183\n▁ᏴᎦ\t-9.6122\nᏁᎲ\t-9.61269\n▁ᎤᏓᏅᏖᏗ\t-9.61443\n▁ᏗᎧᎿᏩᏛᏍᏗᏱ\t-9.61662\n▁ᏱᏂ\t-9.61667\n▁ᏯᏆ\t-9.61679\n▁ᏗᎦᏓ\t-9.61818\n▁ᎯᎸ\t-9.62385\n▁ᎾᏍᎩᏴ\t-9.62414\n▁ᎾᏂ\t-9.62729\n▁ᎦᏃᎸᎥᏍᎬ\t-9.6291\n▁ᎧᎳᏩᏗᏒ\t-9.63043\nᎦᏔᎭ\t-9.63063\nᎢᏍᏗ\t-9.63083\n▁ᏗᎦᏚᎲ\t-9.63085\n▁ᎢᏦᎯᏳᏒ\t-9.63102\n▁ᎠᏤᎵᏍᏛ\t-9.63107\nᏥᏌ\t-9.63121\n▁ᎦᎨ\t-9.63244\n▁ᎠᏃ\t-9.63315\n▁ᎨᎳ\t-9.63452\n▁ᏭᎶᏒ\t-9.63458\n▁ᎠᏆᏚᎵ\t-9.63504\n▁ᎤᏅᏒᏉ\t-9.63578\n▁ᎦᏁᏌᎢ\t-9.63581\nᏍᏔᏂ\t-9.63599\n▁ᏙᎯ\t-9.63753\n▁ᏍᏆ\t-9.63806\n▁ᏨᏗᏓᎴᎲᏍᎦ\t-9.63872\n▁ᏧᏕᏘᏴᏓ\t-9.63874\n▁ᏗᏟᎶᏍᏔᏅᎯ\t-9.63875\n▁ᏗᏖᎵᏙ\t-9.6388\n▁ᎤᎪᏏᏓ\t-9.63886\n▁ᏦᏓᏂ\t-9.63887\n▁ᎠᏂᏫᏅ\t-9.63887\n▁ᏱᏅᏗᎦᎵᏍᏙᏗᎭ\t-9.63894\n▁ᎢᏳᎾᎵᏍᏙᏗᏱ\t-9.63904\n▁ᎤᎦᎾᏍᏓ\t-9.63913\n▁ᏧᎪᎳ\t-9.63921\n▁ᎢᏯᎾᏛᏁᎯ\t-9.63922\n▁ᎬᏩᏟᏍᏗ\t-9.63938\n▁ᎠᏥᏍᏛ\t-9.63954\n▁ᏧᏍᏗ\t-9.63963\n▁ᎪᎯᏗᏳ\t-9.63966\n▁ᎠᎵᏍᏕᎸᏙᏗ\t-9.64041\n▁ᎤᏚᎵᏍᎨᏍᏗ\t-9.64041\n▁ᎤᏚᎸᏗ\t-9.64109\n▁ᎢᏣᏤᎵᎦ\t-9.64119\n▁ᏣᏁᎳ\t-9.64127\n▁ᎢᎦᎦᏘ\t-9.64146\nᏁᎵ\t-9.64198\nᎪᎯ\t-9.64277\n▁ᏗᏆᏤᎵᎦ\t-9.64286\nᏛᎦ\t-9.6471\n▁ᎡᎵᏍᏗ\t-9.64714\n▁ᏱᎬ\t-9.64731\nᏉᏃ\t-9.64898\n▁ᏧᏓᏃ\t-9.65215\nᏕᎵ\t-9.65297\n▁ᏙᏓ\t-9.65539\n▁ᎤᏂᏣᏔ\t-9.65576\n▁ᎣᏂᏱ\t-9.65577\n▁ᎯᎠᏍᎩᏂ\t-9.65769\nᎪᏗ\t-9.65861\n▁ᏗᏆ\t-9.65944\nᎭᏂ\t-9.66095\n▁ᏃᏥ\t-9.66122\nᏁᎮᏍᏗ\t-9.66161\n▁ᏱᏨ\t-9.66606\n▁ᎠᏓᏁᎸᎢ\t-9.66621\n▁ᏭᎾ\t-9.66734\n▁ᏄᏪᏒᎢ\t-9.66994\n▁ᏄᎵᏍᏔᏅᎢ\t-9.67204\n▁ᏯᎩ\t-9.67561\n▁ᎾᎾᏛᏁᎲ\t-9.6779\n▁ᏞᎦ\t-9.67799\n▁ᎬᏩᎾ\t-9.67896\nᎷᎦ\t-9.68004\n▁ᏚᎳᏍᎬ\t-9.68466\n▁ᎤᏁᏨᎢ\t-9.68479\n▁ᏫᏓ\t-9.68534\n▁ᎤᎨᏓᎵᏴ\t-9.68599\n▁ᎤᏅᏏᏴ\t-9.68599\n▁ᏭᏯᏅᎮ\t-9.68606\nᎩᎶ\t-9.6862\n▁ᎠᎾᎢᏒ\t-9.68648\n▁ᎤᏂᎷᏨ\t-9.68671\n▁ᏕᎭᎷᎨ\t-9.68714\n▁ᎦᏅᏅ\t-9.68732\n▁ᏕᎩ\t-9.68872\n▁ᏭᎷᏨ\t-9.68935\n▁ᏧᎾᏍᏗ\t-9.68984\n▁ᎤᏒᎢ\t-9.69068\n▁ᏗᏥᎾᏫ\t-9.69193\n▁ᏐᏓᎻ\t-9.69194\n▁ᏓᏣ\t-9.69216\nᏌᎳᏓ\t-9.69295\n▁ᎤᎷᎯᏍᏗ\t-9.69371\n▁ᎤᏂᏴᏍᏗ\t-9.69417\n▁ᎠᎦᏘᏏ\t-9.69425\n▁Perry\t-9.69428\n▁ᏧᎦᎾᏮ\t-9.69428\nᏚᏓᎴᏍᏙᏗ\t-9.69428\n▁ᎥᏳᎩ\t-9.6943\n▁ᎠᎵᏍᏔᏴᏗ\t-9.69441\n▁ᎤᎩᏨᏓ\t-9.69443\n▁ᎧᏂᎩᏛ\t-9.69448\n▁ᏗᏕᏲᏗ\t-9.69456\n▁ᎤᎾᏰᎯᏍᏗ\t-9.69457\n▁ᎤᏫᏯ\t-9.69458\n▁ᎤᏂᎩᎬ\t-9.69458\n▁ᎤᏬᏢᏔᏅᎩ\t-9.6946\n▁ᏧᎾᎩᎸᏗ\t-9.69462\n▁ᏗᏓᏘᏂᏙᎯ\t-9.69465\n▁ᎤᏁᎫᏥᏛ\t-9.69466\n▁ᏗᎪ\t-9.69484\n▁ᎠᏆᏁᎳᏅᎯ\t-9.69485\n▁ᎠᎵᏍᎪᎸᏔᏅᎯ\t-9.69493\n▁ᏳᏚᎵᏍᎨ\t-9.69507\n▁ᎠᏍᏚᏗ\t-9.69514\n▁ᎨᎵᏍᎬ\t-9.69545\n▁ᏂᏗᎥ\t-9.69562\n▁ᏚᏓᏘᎾᎥᎢ\t-9.69664\n▁ᎤᏂᏍᏆᏂᎪᏎᎢ\t-9.69669\n▁ᎢᏳᎾᏛᏁᏗᏱ\t-9.69885\n▁ᎤᏍᏆᏂᎪᏗᏳ\t-9.69983\n▁ᏓᏆ\t-9.70038\n▁ᎣᏏᏉ\t-9.70186\n▁ᏄᏛᏁᎸᎩ\t-9.70193\n▁ᎤᎿ\t-9.70524\n▁ᏗᎨᏒᎢ\t-9.70642\n▁Ᏸ\t-9.70767\n▁ᎤᎾᎵᎪ\t-9.70771\n▁ᎠᏫᏅ\t-9.70975\nᏍᏕᎸᏗ\t-9.70997\n▁ᏂᎦᏪᏍᎬᎢ\t-9.71018\nᎴᏂ\t-9.71137\n▁ᎠᎩᏍᏗ\t-9.71161\nᎵᏍᏙᏗ\t-9.71229\nᎡᎯ\t-9.71498\n▁ᎢᏧ\t-9.71663\nᎵᏍᏗ\t-9.71838\n▁ᏅᎩᏁ\t-9.71896\nᎡᏗᏱ\t-9.71902\n▁ᏁᎰ\t-9.71981\n▁ᏳᎾ\t-9.71992\n▁ᎾᎥᎢ\t-9.72047\nᏍᏔ\t-9.72103\n▁ᎤᏁᏨᎯ\t-9.72112\nn\t-9.7221\n▁ᎠᏏᏴᏫᏃ\t-9.72425\n▁ᏣᎾ\t-9.72547\n▁ᏫᎬᏩ\t-9.72604\n▁ᏚᏳᎪᏛᎢ\t-9.72832\n▁ᎢᏳᎢ\t-9.73165\nᏗᏍᎨᎢ\t-9.73396\n▁ᎤᏥᎸ\t-9.7368\nᎶᏛ\t-9.73789\n▁ᎤᏪᎵᎯᏍᏗ\t-9.73882\n▁ᎤᏕᏁᎸ\t-9.74028\n▁ᎠᏰᏙᎳᏛ\t-9.74035\n▁ᎡᏙᎲ\t-9.74059\nᏗᏳ\t-9.74293\n▁ᎠᎾᏓ\t-9.74337\n▁ᎤᏓᏂᎵᎨ\t-9.74439\n▁ᎤᎵᏁᏨ\t-9.745\n▁ᏕᏡᎬ\t-9.74563\n▁ᏓᏁᏩᏗᏒ\t-9.74564\n▁ᏕᎨᏌᏗᏒ\t-9.74589\n▁ᎤᏓᏅᏖᎴ\t-9.74659\n▁ᎠᏆᏚᎵᏍᎬ\t-9.74712\n▁ᎤᏓᏴᏍᏗ\t-9.75108\n▁ᎷᏈᏂ\t-9.7531\n▁ᏗᏂᎵᎠᏅᎯᏛ\t-9.7531\n▁ᎢᏈᎬᎢ\t-9.7531\n▁ᎹᏏᏙᏂ\t-9.75314\n▁ᏞᎩᏳ\t-9.75317\n▁ᎠᎾᏓᏅᏟ\t-9.75319\n▁ᎬᏔᏂᏓᏍᏗ\t-9.75325\n▁ᎠᎪᏄ\t-9.75326\n▁ᏌᎺᎵᏱ\t-9.75331\n▁ᎠᏙᎳᏅᏍᏗ\t-9.75332\n▁ᎩᏟ\t-9.75343\n▁ᏗᎦᏅᏙᏗ\t-9.75346\n▁ᎠᏫᏄᏣ\t-9.75349\n▁ᎠᏟᎶᏍᏗ\t-9.75362\n▁ᎢᏨᏗᏍᎨᏍᏗ\t-9.75368\n▁ᎢᏳᏪᏅᏍᏗ\t-9.7537\n▁ᏧᏍᏆᏅᎾ\t-9.75375\n▁ᎡᏏᏱ\t-9.75399\n▁ᎤᏬᏚᎯ\t-9.75406\n▁ᎤᏬᏚᎯᏳ\t-9.75415\n▁ᎠᏥᎾᏝᎢ\t-9.75416\n▁ᎤᎶᏒᏍᏗ\t-9.75418\n▁ᏧᏓᎴᏅᏓ\t-9.7545\n▁ᎠᏓᎯ\t-9.75455\n▁ᏎᎳᏱ\t-9.75498\n▁ᎤᏂᏴᏍᏗᏱ\t-9.7559\n▁ᏔᎵᏧᏈ\t-9.75594\nᎤᏅ\t-9.75748\n▁ᎣᏁ\t-9.75768\n▁ᏚᏯ\t-9.75771\n▁ᏤᎮᎢ\t-9.75815\nᎶᏗ\t-9.75832\n▁ᎠᏁᎮᎢ\t-9.75898\n▁ᏚᎴᏁᎢ\t-9.76063\n▁ᏰᎭ\t-9.76092\n▁ᎠᏁᎭ\t-9.7618\n▁ᏐᎢᏱ\t-9.76283\n▁ᏱᏗᏣ\t-9.76477\nᎾᏏ\t-9.76528\nᏨᎯ\t-9.76582\n▁ᎢᏳᎾ\t-9.76584\n▁ᎠᎬ\t-9.76665\n▁ᏓᏨ\t-9.76938\n▁ᎦᏍᎩᎸᎢ\t-9.77266\n▁ᎠᏥᎸᏉᏗ\t-9.77274\nᏍᏊ\t-9.77736\nᏍᏗᏍᎬ\t-9.78051\n▁ᎤᎨᏳᎯ\t-9.78124\n▁ᎢᏓ\t-9.78304\n▁ᎤᏬᎵ\t-9.78356\n▁ᏙᎯᏱ\t-9.7837\n▁ᎠᏎᎩ\t-9.7867\n▁ᎠᏜ\t-9.78778\nᏛᏗ\t-9.7883\n▁ᏚᎴᏁ\t-9.78842\n▁ᎤᏁᏅᏎ\t-9.78929\n▁ᎤᎸ\t-9.79089\n▁ᏓᎾᏓ\t-9.79118\na\t-9.79247\nᏠᎾᏍᏗ\t-9.79268\nᏛᎯ\t-9.79489\nᎸᏉᏙᏗ\t-9.79647\nᏛᎭ\t-9.79886\nᎸᏉᏗᏳ\t-9.79954\n▁ᏅᏓᏳ\t-9.80132\n▁ᎠᏂᏙᎾᎥ\t-9.80185\nᏅᏒᎩ\t-9.80238\n▁ᏔᎵᎭ\t-9.80348\n▁ᏄᏂ\t-9.80464\n▁ᏗᏣᏓᏅᏙ\t-9.8055\n▁ᎡᏗ\t-9.80583\n▁ᎬᏆ\t-9.80643\nᎠᏯ\t-9.80643\n▁ᏨᏍᎩᏃ\t-9.80762\n▁ᎤᏰᏤ\t-9.80763\n▁ᎠᏆᎧᏛ\t-9.80773\n▁ᏓᏠᎯᏍᏛ\t-9.8081\n▁ᎠᏁᏙᎲ\t-9.80813\n▁ᏭᎶᏎ\t-9.80832\n▁ᎠᎾᏛ\t-9.80839\n▁ᎤᏓᏅᏎ\t-9.80971\n▁ᏗᏓ\t-9.81015\n▁ᏕᎦᎶᏗ\t-9.81247\n▁ᏏᎩᎻ\t-9.8127\n▁ᎠᏥᎦᏘᏗᏍᏗ\t-9.81296\n▁ᎤᏓᏅ\t-9.8134\n▁ᎤᏍᎪᎵ\t-9.81375\n▁ᎪᏪᎳ\t-9.81416\nᏐᎢ\t-9.81454\n▁ᎤᏕᎰᎯᏍᏗ\t-9.81458\n▁ᎢᏳᏛᏁᏗ\t-9.81488\ny\t-9.81549\n▁ᎦᎷᏯᏍᏘ\t-9.8156\n▁ᎢᏏᎺᎵ\t-9.8156\n▁ᎬᏩᏍᏓᏩᏛᏎᎢ\t-9.8156\n▁ᎤᎵᏗᏨ\t-9.8156\nett\t-9.81561\n▁ᏅᏓᏳᏂᎶᏒᎯ\t-9.81562\n▁ᏑᎾᏙᏓᏆᏍᏗ\t-9.81562\n▁ᎢᏯᏅᏙ\t-9.81564\n▁ᏗᎬᏔᏂᏓᏍᏗ\t-9.81564\n▁ᎢᎦᏪᏍᏗ\t-9.81565\n▁ᏂᎬᏩᏪᏎᎸᎩ\t-9.81565\n▁ᎤᏓᎵ\t-9.81567\n▁ᏗᏰᏙᎳᏛᏗ\t-9.81569\n▁ᎠᏖᎵᏙ\t-9.81569\n▁ᎭᏩᏧ\t-9.81573\n▁ᏚᏘᏅᏎ\t-9.81578\n▁ᎤᎴᏂᏙᎸ\t-9.81584\n▁ᏕᎹᏍᎦ\t-9.81593\n▁ᎠᏂᎨᎾᏂ\t-9.81593\n▁ᎠᏫᏒᏗᏱ\t-9.81593\n▁ᏗᏍᏓᏓᏅᏟ\t-9.81593\n▁ᎦᏂᎦᏔ\t-9.81595\n▁ᏣᏓᎵᎢ\t-9.81613\n▁ᎠᏂᎦᏓᎭ\t-9.81624\n▁ᏌᎾᏱ\t-9.81626\n▁ᏥᏚᏙᎥ\t-9.81628\n▁ᎤᏁᎵᏤᎢ\t-9.81636\n▁ᎤᎾᏁᎳᏅᎯ\t-9.81649\n▁ᎠᎪᏙᏗ\t-9.81653\n▁ᏙᏱᏨ\t-9.81659\n▁ᎤᎾᏠᎾᏍᏗ\t-9.81665\n▁ᏗᏦᏢᏙᏗ\t-9.81667\n▁ᎤᎾᏰᎯᏍᏗᏳ\t-9.81669\n▁ᏎᎻ\t-9.81687\n▁ᎤᏏᏩ\t-9.81742\n▁ᎤᏬᏚᏨ\t-9.81758\n▁ᎮᎦ\t-9.81768\n▁ᏁᎲᎾ\t-9.81768\n▁ᏂᎦᎵᏍᏓ\t-9.81795\n▁ᏱᏂᎦᎵᏍᏓ\t-9.81796\nᎢᏳ\t-9.81797\n▁ᎠᎩᏰᎸᎭ\t-9.81808\n▁ᎤᏂᎯᏍᏗᏱ\t-9.81817\n▁ᎢᎨ\t-9.81826\n▁ᏫᏗ\t-9.8183\n▁ᎠᏍᎪᎯᏁ\t-9.81842\n▁ᎤᏟᏍᏓ\t-9.81852\n▁ᎢᎬᏓ\t-9.81856\n▁ᎤᎷᎯᏍᏗᏱ\t-9.81864\n▁ᎾᏂᏪᏍᎬᎩ\t-9.81873\n▁ᏈᎳ\t-9.8188\nᏩᏛᎲ\t-9.81954\n▁ᎢᎬᏒ\t-9.82048\n▁ᏗᏂᏅᏌᏗ\t-9.82055\n▁ᎠᎱᏍᏕ\t-9.82056\n▁ᎠᏁᎩ\t-9.82172\nᎨᏳᏎᏍᏗ\t-9.82188\n▁ᎢᎾ\t-9.82262\n▁ᏄᎾᏛᏅᎢ\t-9.82268\n▁ᏓᏁᏩᏗᏒᎢ\t-9.82366\n▁ᏕᎭᎷᎨᎢ\t-9.82415\n▁ᏙᎩ\t-9.82706\nᏠ\t-9.82786\n▁ᎦᏂ\t-9.82909\n▁ᏕᎦᏛ\t-9.83227\nᏃᎮᎭ\t-9.833\n▁ᎨᏴᎢ\t-9.83809\nᎥᏍᎬ\t-9.84013\nᎥᎢ\t-9.84142\nᎳᏅᎯ\t-9.84142\nᎪᎵᏰᏍᎩ\t-9.8415\nᏩᏛᏗ\t-9.84151\nᏑ\t-9.84284\n▁ᎠᎩᎵᏲᎢᏍᏗ\t-9.84429\n▁ᎠᏙ\t-9.84503\n▁ᎯᎳ\t-9.8456\n▁ᎤᏂᏁ\t-9.84584\n▁ᏗᏤ\t-9.84985\n▁ᎤᏂᏠᏱ\t-9.85044\nᏉᏰᏃ\t-9.85236\n▁ᏕᏣᏓ\t-9.85619\n▁ᎤᎾᏙᎴᎰᏒ\t-9.85674\n▁ᎤᏇᏓᎸ\t-9.85947\n▁ᏗᏗ\t-9.86336\nᎦᏛ\t-9.86481\n▁ᏣᏉ\t-9.86508\nᎡᎭ\t-9.86569\n▁ᎦᏥᏯ\t-9.86629\n▁ᏔᎵᏁᎢ\t-9.86837\n▁ᏧᎾᏓ\t-9.86843\nᏅᏟ\t-9.8686\n▁ᏚᎸᏫᏍᏓᏁᎸ\t-9.86941\nᎿ\t-9.86999\n▁ᏯᎾ\t-9.87013\nᎸᎾ\t-9.87031\n▁ᎦᏁᎲ\t-9.87049\n▁ᎤᏴ\t-9.87094\nᎵᏱ\t-9.8711\nᏛᏅ\t-9.87238\n▁ᎤᏚᎵᏍᎨ\t-9.87274\n▁ᏁᎳᎩ\t-9.87347\n▁ᏕᏥᎸᏫᏍᏓᏁᎲ\t-9.87468\n▁ᏭᏴᎴ\t-9.87503\nᏯᏖᏅ\t-9.87505\nᎵᏍᏆᏗᏍᎩ\t-9.87512\n▁ᏙᏓᎸ\t-9.87567\n▁ᏄᎾᏛᏅ\t-9.87579\n▁ᎡᎮ\t-9.87668\n▁ᏗᏁᎲ\t-9.87739\nᎲᏍᎬ\t-9.87804\n▁ᏅᏗᎦᎵᏍᏙᏗ\t-9.87839\n▁ᎤᏁᎸ\t-9.87936\nᎱ\t-9.87946\n▁ᎤᏛᏁᎢ\t-9.87956\n▁ᎠᎾᏓᎾᏏᏂᏙᎯ\t-9.88227\n▁ᏯᎦᏔᎮ\t-9.88227\n▁ᎠᎵᏰᎾ\t-9.88228\n▁ᎦᏣᏄᎳ\t-9.8823\n▁ᎠᏨᏍᏙᏗ\t-9.88231\n▁ᏧᎦᏒᏍᏗ\t-9.88234\n▁ᎢᎬᏩᎵᏍᏙᏗ\t-9.88242\n▁ᎠᏒᎬ\t-9.88246\n▁ᎢᏣᎵᏍᏙᏗᏱ\t-9.88248\n▁ᏗᏥᏲᎵ\t-9.88252\n▁ᏗᏂᏏᏗ\t-9.88254\n▁ᎠᏤᎷᎩ\t-9.88256\n▁ᏥᏄᏪᏎᎢ\t-9.88256\n▁ᎠᏂᎩᎷᏫ\t-9.88264\n▁ᏧᎳᏏᏕᏂ\t-9.88271\n▁ᎤᏛ\t-9.88272\n▁ᏫᎦᎷᎩ\t-9.88294\n▁ᏥᏍᏚ\t-9.88299\n▁ᎤᎾᎳᏅᎯ\t-9.88313\n▁ᏗᏂᏰᎸ\t-9.88313\n▁ᏄᎾᏓᎴᏒ\t-9.8832\n▁ᎫᎫ\t-9.88335\nᏯᏅᏛ\t-9.88374\nᎵᏰᎢᎶᎯᏍᏗ\t-9.88414\n▁ᎤᏲᎱᎯᏍᏗᏱ\t-9.88424\n▁ᎤᎵᏍᎨᏛ\t-9.88435\n▁ᏏᏲ\t-9.88456\n▁ᎭᏫᏂᏨ\t-9.88461\n▁ᎧᏃᎮᏗ\t-9.8849\n▁ᎢᏳᏍᏘ\t-9.88491\n▁ᎠᎾᏓᏅᏖᏍᎬ\t-9.88501\n▁ᏚᎾᏓ\t-9.88508\n▁ᎫᎴ\t-9.88511\n▁ᎤᏂᏣᏛᎩ\t-9.88565\n▁ᏭᏂᎶᏎᎢ\t-9.88567\nᎦᏙᏃ\t-9.88572\n▁ᏗᎩᏏ\t-9.88574\n▁ᎠᏆᏚᎵᎭ\t-9.88594\n▁ᎠᎪᏩᏛᏗ\t-9.88595\n▁ᏓᏅᏅ\t-9.88605\n▁ᏂᎪᎯᎸᎾᏉ\t-9.88653\n▁ᎤᏲᏨ\t-9.88679\n▁ᏙᎦ\t-9.88684\n▁ᏥᎨᏳᎢ\t-9.88698\n▁ᏱᎨᏐᎢ\t-9.88729\nᎳᎻ\t-9.88734\nᏴᏫ\t-9.88766\n▁ᏂᎦᎵᏍᏙᏗ\t-9.88876\n▁ᎨᎵᎠ\t-9.88911\n▁ᎡᎮᏍᏗ\t-9.88966\n▁ᎡᎩ\t-9.88976\n▁ᏚᎸᏫᏍᏓᏁᎸᎢ\t-9.88992\n▁ᎠᏁ\t-9.88994\n▁ᎠᏁᏙᎲᎢ\t-9.89041\n▁ᎢᎦᏤᎵᎦ\t-9.89051\n▁ᎪᎨ\t-9.89117\n▁ᎡᏙᎲᎢ\t-9.89125\n▁ᏗᏁᎲᎢ\t-9.89156\n▁ᎤᏓᏅᏅ\t-9.89259\n▁ᎠᏓᏁᏗ\t-9.8947\n▁ᎠᏗ\t-9.89511\n▁Ꮠ\t-9.89754\n▁ᎡᎾ\t-9.8977\n▁ᏂᏙᏓᏳ\t-9.90156\n▁ᏂᎪᎯᎸᎾ\t-9.90201\n▁ᎤᏂᎷᏤᎢ\t-9.9038\n▁ᏂᏥᎥᎢ\t-9.90417\nᎦᏗᏓ\t-9.90601\n▁ᏧᏅ\t-9.90605\n▁ᏍᎩᏯ\t-9.90689\n▁ᎠᏂᏐ\t-9.90911\n▁ᎠᏋᏒᏉ\t-9.91243\n▁ᏣᏚ\t-9.91267\n▁Ꮜ\t-9.91308\n▁ᏴᎬ\t-9.91379\n▁ᏤᏣ\t-9.9146\nᏧᏈᏍᏗ\t-9.91553\nᎲᏍᎨᏍᏗ\t-9.92112\n▁ᎪᎯᏍᎩᏂ\t-9.92255\nᏙᎴᎰᎯᏍᏗ\t-9.92524\nᏢᏙᏗ\t-9.92633\nᎳᏗ\t-9.92791\nᏣᏘ\t-9.93071\n▁ᏕᎬᏩ\t-9.93942\n▁ᏚᏪ\t-9.94097\nᏂᎸ\t-9.94116\n▁ᏧᎾᏄᏬ\t-9.94315\nᎹ\t-9.94382\n▁ᏎᎳ\t-9.94498\nᎦᎶᏁᏛ\t-9.94502\n▁ᎠᏆᏛᎦᏅ\t-9.94537\n▁ᎡᎳᏪ\t-9.9456\n▁Ꮞ\t-9.94567\n▁ᏓᏫᏒ\t-9.94624\n▁ᎢᏳᏪ\t-9.94678\n▁ᏭᏂᎷᏨ\t-9.94858\nᏩᎬᏘ\t-9.9496\n▁ᏚᏁᎴ\t-9.94968\n▁ᏄᏛᏅ\t-9.95025\nᎵᏍᎦᏍᏙᏛ\t-9.95027\n▁ᎡᏝᏪ\t-9.95082\n▁ᎤᏓᏅᏛ\t-9.95151\n▁ᏗᎧᏃᎩᏍᏗ\t-9.95173\n▁ᎠᏛᎪᏗ\t-9.95202\n▁ᎬᏍᎦᎢᏍᏓᎩ\t-9.95369\n▁ᎠᏗᏆᎸᏕᏲ\t-9.9537\n▁ᏂᎦᏅᎯᏎᏍᏗ\t-9.9537\n▁ᎠᏂᏌᏚᏏ\t-9.9537\n▁ᏄᏜᏏᏛᏒᎾ\t-9.9537\n▁ᏌᏯᏂ\t-9.9537\n▁ᎤᎵᎪᎲᏍᏗ\t-9.9537\n▁ᏗᏁᎶᏙᏗ\t-9.9537\n▁ᏧᏃᏑᎶᏨᎯ\t-9.9537\n▁ᏥᏔᎦ\t-9.95371\n▁ᎤᎶᏒᏍᏔᏅᎯ\t-9.95372\n▁ᏧᎾᏦᎯᏍᏗ\t-9.95376\n▁ᎢᏨᏔᏲᏎᎭ\t-9.95376\n▁ᏧᎾᎳᏏᏕᏂ\t-9.95378\n▁ᎳᏏᎳ\t-9.95379\n▁ᎢᏳᏓᎨᏛ\t-9.95381\n▁ᎢᏣᏓᏙᎵᏍᏗᏍᎨᏍᏗ\t-9.95387\n▁ᎢᎩᏍᏕᎵᏍᎩ\t-9.95389\n▁ᎾᏛᏁᎮᏍᏗ\t-9.95389\n▁ᎤᏚᏫᏛ\t-9.95391\n▁ᏫᏂᎦᎵᏍᏓ\t-9.95392\n▁ᏫᏄᏒᎸ\t-9.95392\n▁ᎣᏌᏂ\t-9.95401\n▁ᎣᎦᏁᎳᏅᎯ\t-9.95401\n▁ᎤᏴᏣ\t-9.95402\n▁ᎤᎾᎴᏅᎮ\t-9.95405\n▁ᎦᏰᏌᏗ\t-9.95407\n▁ᏤᏈ\t-9.95409\n▁ᎠᎦᏘᏯ\t-9.9542\n▁ᎠᏂᎦᏔᎿᎢ\t-9.95423\n▁ᎬᎪᏩᏛᏗ\t-9.95424\n▁ᏗᏯᏖᎾ\t-9.95431\n▁ᎠᎵᎮᎵᏍᏗ\t-9.95432\n▁ᎢᎦᏪᏛ\t-9.95432\n▁ᎤᎵᏑᏫᏓ\t-9.95455\nᎭᏗ\t-9.95499\n▁ᎤᎦᏃᏩ\t-9.955\n▁ᏧᎾᏓᎵᎢ\t-9.95514\nᏛᏳᎨᏗ\t-9.95571\n▁ᎢᏳᏅᏁᏗᏱ\t-9.95574\n▁ᎢᎾᏓ\t-9.95607\n▁ᎪᎨᏱ\t-9.95614\n▁ᎤᏬᏢᏅᎯ\t-9.95621\n▁ᎤᎴᏫᏍᏔᏅ\t-9.9563\nᏔᏲᏎᎴ\t-9.95645\n▁ᎠᏓᏅᏖᏗ\t-9.95652\n▁ᎢᏍᏗ\t-9.95664\n▁ᏣᏁᎮᎢ\t-9.95679\n▁ᏧᎸᏫᏍᏓᏁᏗᏱ\t-9.95736\n▁ᏗᎦᎵᎠᏅᎯᏛ\t-9.95806\n▁ᏄᎾᏛᏁᎸᎩ\t-9.95815\n▁ᏚᏳᎪᏗ\t-9.95841\n▁ᎤᎾᏄᎪᏫᏎᎢ\t-9.95926\n▁ᎠᏥᎸᎠᏁᎶᎯ\t-9.95942\n▁ᎤᏔᎷᎩᏍᎩ\t-9.95986\n▁ᏥᏥ\t-9.96033\n▁ᎬᏩᏛᏛᏁ\t-9.96043\n▁ᏭᎶᏒᎩ\t-9.96078\n▁ᎠᎦᏔᎭ\t-9.96114\n▁ᎤᎵᏍᎨ\t-9.96164\n▁ᏧᎵᎢ\t-9.962\n▁ᎾᎥᏂᏳ\t-9.9621\n▁ᎠᏓᏰᏍ\t-9.96246\n▁ᏓᏠᎯᏍᏛᎢ\t-9.96253\n▁ᏕᎨᏌᏗᏒᎢ\t-9.963\n▁ᏚᎸᏫᏍᏓᏁᎲ\t-9.96328\n▁ᎤᏂᎵ\t-9.96374\n▁ᎭᏓᏅᏖᏍᎬ\t-9.96457\n▁ᎣᏣ\t-9.96531\n▁ᏍᎪᎯ\t-9.96555\nᏗᏍᎨ\t-9.9657\nᏌᏘ\t-9.96578\n▁ᎤᏁᏤᎸᎩ\t-9.96628\n▁ᎧᏁᎢᏍᏗ\t-9.96666\nᏅᏍᏗ\t-9.96672\nan\t-9.96736\nᎦᏘᏍᏙᏗ\t-9.96743\n▁ᏑᏓᎵᏁ\t-9.96764\n▁ᎤᏣᏛ\t-9.96776\n▁ᏳᏂ\t-9.96928\n▁ᏙᏳ\t-9.96939\n▁ᏗᎨᏥ\t-9.97044\n▁ᏥᏯ\t-9.97199\nᎵᏏ\t-9.97248\n▁ᎬᏗᏍᎬᎢ\t-9.9725\n▁ᏗᏣᏓ\t-9.9748\nᏃᎯᏎᎸ\t-9.97536\n▁ᎤᎴᏅ\t-9.97603\n▁ᎠᏰᎸᏗ\t-9.97823\n▁ᏳᏩ\t-9.97912\n▁ᏚᏅ\t-9.97927\nᎵᏍᏔᏅ\t-9.98101\n▁ᎤᏰᎸᏛᎢ\t-9.98162\nᏍᏔᏅᎩ\t-9.9831\n▁ᎤᏕ\t-9.9863\n▁ᎤᏲᏉ\t-9.98658\nᏁᏥ\t-9.98844\n▁ᏤᎩ\t-9.98884\nᎫ\t-9.9929\n▁ᎪᎯᏛ\t-9.99434\n▁ᎠᏓᏅᏙᏍᎩᏂ\t-9.99572\nᎯᎭ\t-9.99631\nᏟᏍᏗ\t-9.99633\n▁ᏍᎩᏃ\t-9.99759\n▁ᎯᎦᏔᎭ\t-9.99826\n▁ᎤᏬ\t-9.99938\n▁---\t-10.0004\n▁ᎢᏅᎯ\t-10.0006\n▁ᏱᎨ\t-10.0009\nᏂᏗᏳ\t-10.002\n▁ᏙᏓᎦ\t-10.0022\n▁Ꮼ\t-10.0025\n▁ᎤᎫᏴᏗ\t-10.0031\n▁ᏑᎾᎴᏃ\t-10.0068\n▁ᏩᏁ\t-10.0106\n▁ᏗᎬᏩᏂ\t-10.0112\n▁ᏥᏅᏏᏓᏍᏗ\t-10.0115\n▁ᏄᏍᏛᎾ\t-10.0117\n▁ᏧᎵ\t-10.0132\n▁ᎤᎪ\t-10.0161\n▁ᏛᎾ\t-10.0169\n▁Ꮲ\t-10.0201\n▁ᎠᏁᏙᎮ\t-10.0205\n▁ᏕᎨᏴ\t-10.0219\n▁ᎾᏑᏴ\t-10.0221\nᎪᏩᏛᏗ\t-10.0224\n▁ᏚᎾᏓᏡᏩᏗᏒ\t-10.0231\n▁ᎯᏆ\t-10.0232\n▁ᏅᏃ\t-10.0247\n▁ᎤᏄᎪᏨ\t-10.0255\n▁ᏚᎪᎲ\t-10.0265\n▁ᎦᏅᎬ\t-10.0266\n▁ᎤᏪᏙᎸ\t-10.0273\n▁ᎤᏪᏅᏍᏗ\t-10.0292\n▁ᏥᎬ\t-10.0293\n▁ᎠᏒᎨ\t-10.0294\n▁ᎠᎩᎾᏫ\t-10.0295\n▁ᎤᏲᎱᎯᏍᏗ\t-10.0296\n▁ᎠᏇ\t-10.0303\nᏄᎮᏛ\t-10.0306\n▁ᏅᏬᏘ\t-10.0306\n▁ᏑᏓᎴᎩ\t-10.0306\n▁ᎦᏃᏍᎩᏍᎩ\t-10.0306\n▁ᏀᎾ\t-10.0306\n▁ᏍᏏᏉᏯ\t-10.0306\n▁ᏗᎦᏙᏌᏗᏍᏗᏱ\t-10.0306\n▁ᏗᏂᎨᏫ\t-10.0306\n▁ᏌᏙᏂ\t-10.0306\n▁ᏧᎾᏦᏴᏍᏗ\t-10.0306\n▁ᎮᎳᏂ\t-10.0307\n▁ᏗᎪᏒᏔᏅ\t-10.0307\n▁ᎾᎦᎥ\t-10.0307\n▁ᎨᏣᏍᎦᎩ\t-10.0307\n▁ᎠᏉᏰᏂ\t-10.0307\n▁ᎦᏚᎢᏗᏢ\t-10.0307\n▁ᏇᏍᏓ\t-10.0307\n▁ᏗᏂᎰᎵ\t-10.0307\n▁ᏍᏗᏫ\t-10.0308\n▁ᏌᏊ\t-10.0308\n▁ᏚᏑᎬ\t-10.0308\n▁ᎤᎧᏲᏛᎯ\t-10.0308\n▁ᏁᏂᏏ\t-10.0308\n▁ᎨᎦᏑᏰᏛ\t-10.0308\n▁ᎠᏂᎦᏔᎾᎢ\t-10.0308\n▁ᏚᎦᏒᏍᏛ\t-10.0308\n▁ᏗᏍᏆᎾᎳᏗᏍᏗ\t-10.0309\n▁ᏄᏍᏗᏓᏅ\t-10.0309\n▁ᏗᎳᏑᎶ\t-10.0309\n▁ᎢᏳᏓᏅᎯᏓ\t-10.0309\n▁ᎬᎩᏍᎦᎩ\t-10.0309\n▁ᎣᏥᎦᏔᎭ\t-10.0309\n▁ᎤᏕᎶᎰᏎ\t-10.031\n▁ᏩᏛᎬᎦ\t-10.031\n▁ᎢᏥᏯᏫᏍᎨᏍᏗ\t-10.0312\n▁ᎣᎭᏂ\t-10.0312\nᎪᏣᎴᏛ\t-10.0312\n▁ᎠᏂᎩᏏᏙᎯ\t-10.0312\n▁ᎨᏆᏂ\t-10.0312\n▁ᎠᏂᎦᏔᎯ\t-10.0313\n▁ᏗᏥᎶᏍᏔᏅ\t-10.0313\n▁ᎢᏥᏅᏟ\t-10.0313\n▁ᎤᏓᏅᏖᎸ\t-10.0313\n▁ᎠᏍᎦᏰᎬᏍᏔ\t-10.0315\n▁ᏥᎮᎾ\t-10.0315\n▁ᏫᎶᎯ\t-10.0318\n▁ᎤᏙᎴᎰᏎ\t-10.0319\n▁ᎤᏪᎷᏅᎩ\t-10.0321\n▁ᏄᏕᏘᏴᎮᎢ\t-10.0322\nᏁᎲᎢ\t-10.0322\n▁ᏓᏳᎶᏒ\t-10.0323\n▁ᏂᎦᏚ\t-10.0325\n▁ᎤᏤ\t-10.0328\n▁ᏚᎧᎾᏁ\t-10.0331\n▁ᎤᏛᏐᏅᎯ\t-10.0334\n▁ᎤᏁᎷᏁᎢ\t-10.0334\n▁ᎢᏥᏍᎦᏅᏨᎢ\t-10.0334\n▁ᎪᏢᏅᎯ\t-10.0339\n▁ᏯᏂ\t-10.0339\n▁ᎤᎵᏍᏕᎸᏙᏗ\t-10.0339\n▁ᎤᏓᏅᏒᎩ\t-10.034\n▁ᎠᏧᏏ\t-10.0345\nᎠᏎᏃ\t-10.0345\n▁ᏕᎦᎶᏗᎯ\t-10.0348\n▁ᎠᎩᎪᎲᎩ\t-10.0349\n▁ᎤᏓᏔᏅᎯ\t-10.0349\n▁ᏓᎧᏅᎢ\t-10.0353\n▁ᏓᏓ\t-10.0355\n▁ᎬᏩᎷᏤᎸᎩ\t-10.0356\n▁ᎪᏢᏒᎢ\t-10.0359\n▁ᎡᎳᏗᏣ\t-10.036\nᎿᎨ\t-10.0361\n▁ᎢᏧᏩᏁ\t-10.0361\n▁ᎤᏄᎪᏤ\t-10.0363\nᏗᏍᎪᎢ\t-10.0365\n▁ᎠᏥᎸᎨᎶᎯ\t-10.0373\n▁ᎡᏙᎯ\t-10.0374\n▁ᏓᎬᎾ\t-10.0374\nᎶᎢ\t-10.0376\n▁ᎠᏁᎳ\t-10.0379\n▁ᎨᎾᏂᏱ\t-10.0379\n▁ᏚᎾᏓᏡᏩᏗᏒᎢ\t-10.0384\n▁ᎤᏁᎳᏅᎯᏱ\t-10.0384\n▁ᎤᏂᏍᎦᏅᏨᎯ\t-10.0389\nᏌᏂ\t-10.0389\nᏮ\t-10.039\n▁ᎤᎾᏓᏑᏴ\t-10.0395\n▁ᎪᏣᎴᏛ\t-10.0397\n▁ᎮᏗ\t-10.0397\n▁ᎤᏍᏘᏰᎬ\t-10.04\n▁ᏥᎪᎨ\t-10.0404\n▁ᏣᏂᏃ\t-10.0407\nᏙᏓ\t-10.0414\nᏖᎸᏗ\t-10.0417\n▁ᏚᏂᎸᏫᏍᏓᏁᎲᎢ\t-10.0432\nᏓᏥ\t-10.0438\n▁ᎠᏔᎴᏒᎢ\t-10.0439\nᎸᏗ\t-10.0448\n▁ᏂᎦᏪᏍᎬᎩ\t-10.0459\nᎵᏓᏍᏗ\t-10.0466\nᏕᎩ\t-10.0473\n▁ᏱᎦᎩ\t-10.0475\n▁ᎤᎪᎮᎢ\t-10.048\n▁ᏡᎬᎢ\t-10.0493\n▁ᎤᎴ\t-10.0545\n▁ᎤᏣ\t-10.0584\n▁ᏙᏗ\t-10.0601\n▁ᎠᏍᎦ\t-10.0607\n▁ᎤᏲᎱᏒᎢ\t-10.0607\n▁ᏓᏰ\t-10.0624\n▁ᎡᎳ\t-10.0642\n▁Ꮋ\t-10.0659\nᏴᏓ\t-10.0676\nᎵᏍᎪᎸᏓᏁᎸᎯ\t-10.0683\n▁ᎠᏂᏂ\t-10.069\n▁ᏥᏓᏂ\t-10.0702\n▁ᎤᏩᏛᏗ\t-10.0717\nᏚᎦ\t-10.0736\nᎴᎭ\t-10.0745\n▁ᏥᏴ\t-10.0752\nᏣᏓ\t-10.0769\nᎷᏥᏏ\t-10.0782\nᏖᏍᏗ\t-10.0783\n▁ᎤᏄᏬ\t-10.079\n▁ᎤᏂᏁᏨ\t-10.0792\nᎥᎾ\t-10.0793\n▁ᎦᎾ\t-10.0803\nᏓᏑᏯ\t-10.0829\nᏅᏎ\t-10.0874\nᏓᏂᎸᏨᎯ\t-10.0888\n▁ᎢᏍ\t-10.0914\nᏗᏣ\t-10.0914\n▁ᏱᎬᏩ\t-10.0924\n▁ᎤᏦ\t-10.0931\n▁ᎦᏁ\t-10.0933\n▁ᏏᎻᏯᏂ\t-10.095\nᏎᎸ\t-10.0952\n▁ᎪᎯᏳᏗᏍᎩ\t-10.0956\nᏤᎵ\t-10.0956\n▁ᎠᎯᏗ\t-10.0972\n▁ᎣᎦᏤᎵ\t-10.0983\nᏁᎶᏗ\t-10.0984\n▁ᎦᏛ\t-10.0989\nᏒᏅ\t-10.0992\n▁ᏂᎬᏁ\t-10.0994\n▁ᎧᏃᎮᏍᎬ\t-10.1009\n▁ᏄᎾᏛᏁᎸ\t-10.1012\n▁ᎠᏍᏓ\t-10.1032\n▁ᎠᏅᏗᏍᎬ\t-10.1056\n▁ᎤᏜᏅᏛ\t-10.1057\n▁ᎤᎿᏥ\t-10.1058\n▁ᏫᏚᏯᏅᎮ\t-10.1066\n▁ᎠᏨᏯ\t-10.1074\n▁ᎠᏂᏁᎬ\t-10.1078\n▁ᎤᎾᏚᎵᏍᎬ\t-10.1086\n▁ᎤᏂᎩᏎ\t-10.1087\nᎥᎯᏍᏗ\t-10.1089\n▁ᎪᏱᏁ\t-10.1089\n▁ᏚᎸᏌᏛ\t-10.109\n▁ᎠᏇᎵᏒ\t-10.1091\n▁ᏂᏚᏩᏁᎸ\t-10.1091\n▁ᎤᏪᏅᏒ\t-10.1094\nᎬᎭᎷᏴ\t-10.1095\n▁ᏥᏁᎬ\t-10.1098\n▁ᎠᏴᏫᏯ\t-10.11\nᎸᏌᏛ\t-10.1103\n▁ᎢᏨᏯ\t-10.1108\n▁ᏱᏥᎦᏔ\t-10.1109\nᎶᏒ\t-10.1114\n▁ᏫᎬ\t-10.1115\n▁ᎢᏯᏆᏛᏁᏗ\t-10.1117\n▁ᏂᏨᏁᎸ\t-10.1118\n▁ᎤᏁᏓᏍᏗ\t-10.1119\n▁ᏗᎦᎪᏗ\t-10.1122\n▁ᎠᏁᎵᏍᎨ\t-10.1126\n▁ᎡᎳᏂᎬ\t-10.1131\n▁ᎤᏩᏛᎲ\t-10.1138\n▁ᎤᎵᏬᏨ\t-10.1139\n▁ᎠᏂᏩᏥᏂ\t-10.114\n▁ᎦᎳᎱᏂ\t-10.114\n▁ᏕᎦᎳᏫᎥ\t-10.114\n▁ᏧᏓᎿᏩᏛ\t-10.114\n▁ᎢᏆᎶᏂ\t-10.114\n▁ᎾᎪᏔᏅᎾ\t-10.114\n▁ᏚᎾᎧᏛ\t-10.114\n▁ᏗᏂᏬᏂᏍᎩ\t-10.114\n▁ᏣᏔᎦ\t-10.114\n▁ᎤᏙᎴᎰᎯᏍᏗᏱ\t-10.114\n▁ᏚᏃᏢᏔᏅᎩ\t-10.114\n▁ᎢᏕᎯ\t-10.114\n▁ᏄᏓᎵᏓᏍᏛᎾ\t-10.114\n▁ᏗᎨᏥᎤᏍᏕᏎᎸᎯ\t-10.114\n▁ᏅᏓᎦᎵᏍᏙᏓ\t-10.114\n▁ᏗᏂᏍᎪᎵ\t-10.114\n▁ᏂᎦᎵᏍᏔᏂᏙᎲ\t-10.114\n▁ᎦᏂᏓᏛ\t-10.1141\n▁ᏍᎪᏯ\t-10.1141\n▁ᏧᏆᎶᎬ\t-10.1141\n▁ᏂᏣᏛᏁᎮᏍᏗ\t-10.1141\n▁ᎾᎵᏍᏆᏗᏍᎬᎾ\t-10.1141\n▁ᎢᏥᏰᎸᏎᏍᏗ\t-10.1141\n▁ᎢᏣᏅᏖᏍᏗ\t-10.1141\n▁ᎤᏬᏑᎶᏨᎯ\t-10.1141\n▁ᎥᎩᏅᏏᏛ\t-10.1141\n▁ᎠᏂᏃᏍᎩᏍᎩ\t-10.1142\n▁ᏗᏓᏬᏍᎩ\t-10.1142\n▁ᏓᎬᏩ\t-10.1142\n▁ᎢᏳᏕᏘᏴᏓ\t-10.1142\n▁ᎢᏧᎳᏗᏢ\t-10.1143\n▁ᎯᏍᎦᏯ\t-10.1143\n▁ᎢᏥᎦᏔᎮᏍᏗ\t-10.1143\n▁ᎡᏂᏗ\t-10.1143\n▁ᏂᏚᎾᏓᏪᏎᎴᎢ\t-10.1143\n▁ᎠᏌᏅᏙᏗ\t-10.1144\n▁ᏗᏑᏢᏛ\t-10.1144\n▁ᎣᏂᏗᏢ\t-10.1144\n▁ᏅᏓᎦᎵᏍᏙᏔᏂ\t-10.1144\n▁ᎠᎵᏥᏙᎲᏍᎩ\t-10.1144\n▁ᎢᏯᏍᏘ\t-10.1144\n▁ᎡᏈᎵ\t-10.1145\n▁ᎢᏥᎦᏙᎥᎯᏍᏗᏱ\t-10.1145\n▁ᏧᎾᎵᏂᎩᏛ\t-10.1145\n▁ᎠᎦᏯᎷᏗ\t-10.1146\n▁ᎠᏥᎤᏍᏕᏎᎸᎯ\t-10.1146\n▁ᎪᎯᏳᎲᏍᎩ\t-10.1146\n▁ᏂᎬᏪᏎᎭ\t-10.1146\n▁ᏣᏓᏅᏙ\t-10.1148\n▁ᏧᏍᎪᎵ\t-10.1148\n▁ᎦᎾᏍᏓ\t-10.1148\n▁ᏂᎦᎵᏍᏔᏅᎭ\t-10.1151\n▁ᏅᏧᎵᏍᏙᏔᏅ\t-10.1152\n▁ᏍᎩᏙᎵᎩ\t-10.1155\n▁ᎤᏕᎵᏒ\t-10.1155\n▁ᎢᏳᎵᏍᏔᏅᎯ\t-10.1157\n▁ᎤᎵᏍᏗᏳ\t-10.1159\n▁ᏧᏂᎳᏫᎢᏍᏗᏱ\t-10.1159\n▁ᎢᏕᎾ\t-10.1159\n▁ᏓᏓᏏ\t-10.116\n▁ᎠᎦᏔᎿᎢ\t-10.116\n▁ᎠᏆᎵᏏ\t-10.1161\n▁ᏚᏠᏱᎴᎢ\t-10.1161\n▁ᎤᏍᏆᏛ\t-10.1162\n▁ᎢᏯᏆᏛᏁᏗᏱ\t-10.1163\n▁ᎢᏓᎵ\t-10.1164\n▁ᎹᏗ\t-10.1168\n▁ᎤᏪᏗᏱ\t-10.1171\n▁ᎨᎥᎢ\t-10.1175\n▁ᎤᏟᏂᎩᏓ\t-10.1177\nᎷᏤᏗᏱ\t-10.1179\n▁ᎤᏂᎩᏒᎩ\t-10.1181\n▁ᏘᎵ\t-10.1185\n▁ᎡᏘᏴ\t-10.1187\n▁ᎤᎾᏛᏁᎢ\t-10.1188\n▁ᎤᏩᏅ\t-10.119\n▁ᎹᎩ\t-10.1191\n▁ᏂᏚᏩᏁᎸᎩ\t-10.1192\n▁ᏄᎾᏍᏗ\t-10.1195\n▁ᏧᏂᎾᏫᏱ\t-10.1196\n▁ᏫᏚᏂ\t-10.1198\n▁ᏧᏓᏅᏛᎢ\t-10.1201\n▁ᎬᏩᎪᎲ\t-10.1205\n▁ᏭᏂᎷᏤᎢ\t-10.1212\n▁ᎨᏙᎲ\t-10.1214\nᏢᏗ\t-10.1218\n▁ᎨᏂᏗ\t-10.1218\n▁ᏂᏙ\t-10.122\nᏃᏁᎸᎩ\t-10.124\nᏓᏡᎬ\t-10.1248\n▁Ꮘ\t-10.1251\n▁ᏂᏫ\t-10.1253\n▁ᏯᏆᏚᎵ\t-10.1261\n▁ᎠᏆᎵ\t-10.1262\n▁ᎤᏣᏖ\t-10.1267\n▁ᎭᎵ\t-10.1272\n▁ᏱᎰ\t-10.1275\n▁ᎯᎸᎯ\t-10.1276\n▁ᎦᏛᎬᎢ\t-10.1278\nᏁᏍᎨ\t-10.1282\n▁ᎤᎪᎲᎯ\t-10.1293\n▁ᎨᏓᎵ\t-10.1298\n▁ᎤᏁᎢᏍᏗ\t-10.1302\n▁ᎤᎭᎨ\t-10.1312\nᏙᎥ\t-10.1312\n▁ᏄᏛᏁᎸᎢ\t-10.1313\nᎡᏍᏗ\t-10.1315\nᏓᏅ\t-10.1324\nᏃᎲᏏ\t-10.1331\nᏙᎵᏍᏗ\t-10.1334\n▁ᎤᏩᎨᏫ\t-10.1334\nᏍᏆᏂᎪᏗ\t-10.1343\nᎫᏴᏙᏗ\t-10.1346\nᏪᏨᎯ\t-10.1363\n▁ᎤᎴᏅᎲ\t-10.1369\n▁ᏧᏪᏘ\t-10.1373\n▁ᎤᏯ\t-10.1386\n▁ᏗᎬᏙᏗ\t-10.1397\nᏅᎭ\t-10.1418\n▁ᎠᎩᎭ\t-10.1443\n▁ᎯᎾ\t-10.1456\nᏓᏏ\t-10.1468\nᏩᏛᎮ\t-10.1473\n▁ᎠᎦᏛ\t-10.1477\n▁ᏓᏥᏯ\t-10.1512\n▁ᎤᏔᏅ\t-10.1518\nᎠᏯᏗ\t-10.1521\n▁ᎤᏙᏓᏃ\t-10.1524\nᏂᏒ\t-10.1527\nᏅᏏᏙᎯ\t-10.1535\nᏍᏕᏍᏗ\t-10.1562\n▁ᎤᏛᏅᎩ\t-10.1624\n▁ᎨᎶᎯ\t-10.1647\n▁ᏭᏂᎷᏤ\t-10.1664\nᏁᎸᏔᏅ\t-10.1681\n▁ᏄᏓ\t-10.1708\n▁ᏂᏣᏛᏅᎢ\t-10.1744\nᏧᏏ\t-10.1746\nᎤᏙᎯᏳ\t-10.1748\nᏓᏁᎸ\t-10.1775\nᏙᎵ\t-10.1784\nᏴᎭ\t-10.1785\nᏐᏅ\t-10.1792\nᎩᏍᎨᏍᏗ\t-10.1805\nᎥᏝ\t-10.1808\nᏓᏅᎦᎸᏛ\t-10.1822\n▁ᎠᏂᏁ\t-10.1849\n▁ᎠᏍᎦᏅᏨ\t-10.1893\nᏓᎶᏂᎨ\t-10.1903\n▁ᎾᏆᏛᏁᎸ\t-10.1916\nᏔᎷᎩᏍᎩ\t-10.1917\nᎨᎳᏍᏗ\t-10.1921\nᏚᎵ\t-10.1924\n▁ᎠᎩᏁᏨ\t-10.1933\n▁ᎠᏓᏅᏖᏍᎨ\t-10.1948\n▁ᎡᎵᏍᎨ\t-10.1952\n▁ᏫᎦᏅᏅ\t-10.1955\n▁ᎠᏂᏨᏯ\t-10.1957\n▁ᎠᏓᏯ\t-10.196\n▁ᎤᎩᏨᏅ\t-10.196\n▁ᎤᎵᏂᎬᎬ\t-10.1961\n▁ᏕᎦᏅᏅ\t-10.1961\n▁ᏗᏤᎲ\t-10.1964\n▁ᎥᏓᎸ\t-10.1965\nᎩᎯ\t-10.1965\nᎢᏳᎾᏍᏗ\t-10.1965\n▁ᎤᏂᏃᎮᎸ\t-10.1967\n▁ᏣᎧᏛ\t-10.1969\n▁ᎦᏰᏌᏛ\t-10.197\n▁ᎬᏩᎷᏤᎴ\t-10.1971\n▁ᏗᏓᏁᎸ\t-10.1977\n▁ᏂᏣᏛᏅ\t-10.198\n▁ᎤᏰᎸᏁ\t-10.1982\nᏎᏗ\t-10.1985\n▁ᎤᎿᎥ\t-10.1985\n▁ᏗᏥᏰᎸ\t-10.1995\n▁ᏥᏙᎬ\t-10.1996\n▁ᏫᏚᏯᏅᎲ\t-10.1998\nᏍᏗᏍᎨᏍᏗ\t-10.1999\n▁ᎠᏍᏚᎲ\t-10.2004\nᏅᏓ\t-10.201\n▁ᎬᏩᎷᏤᎸ\t-10.2011\n▁ᏂᎪ\t-10.2014\n▁ᎠᏂᏃᎯᎵᏙ\t-10.2023\n▁ᏗᏄᎪᏗᏍᎩ\t-10.2025\n▁ᎢᎬᏩᏁᏗ\t-10.2025\n▁ᎠᏥᎢᏍᏗ\t-10.2026\n▁ᏱᏙ\t-10.2033\n▁ᎠᏁᎵᏍᎬ\t-10.2033\nᏔᏅᎢ\t-10.204\n▁ᏚᏅᏎ\t-10.204\n▁ᎠᏰᎲ\t-10.2044\n▁ᏂᏓᎪᏔᏅᎾ\t-10.2049\n▁ᎡᎩᎵᏈ\t-10.2049\n▁ᎢᏗᏍᏓᏓᎳ\t-10.2049\n▁ᎢᏯᎬᏁᎸᎯ\t-10.2049\n▁ᏌᏬᏚ\t-10.2049\n▁Chap\t-10.2049\n▁ᎠᏂᏈᎵᏍᏗ\t-10.2049\n▁ᏌᏱᎳ\t-10.2049\n▁ᎠᏰᎳᏍᏘ\t-10.2049\n▁ᏚᎧᏔᏍᏔᏁᎢ\t-10.2049\n▁ᏣᎦᏟᎶᏍᏔᏅᎯ\t-10.2049\n▁ᏥᏍᎪᏴ\t-10.2049\n▁ᏅᏓᎦᏥᏴᏁᎵ\t-10.2049\n▁ᏧᏓᏕᏍᏗᏱ\t-10.2049\n▁ᎠᏗᏒᏍᏗ\t-10.2049\n▁ᎮᎼ\t-10.2049\n▁ᎤᏲᏍᏛᏉ\t-10.2049\n▁ᎠᏕᏒᎲᏍᎩ\t-10.2049\n▁ᎢᏆᎻ\t-10.2049\n▁ᏗᏥᎦᏙᎵ\t-10.205\n▁ᏧᎾᏓᏅᏙ\t-10.205\n▁ᎤᏂᏁᎫᏥᏛ\t-10.205\n▁ᏥᏂᏣᏛᏅ\t-10.205\n▁ᎤᎳᎨᏯᏛᏤᎢ\t-10.2051\n▁ᎤᎩᏓᏟᏅᏯ\t-10.2051\n▁ᎢᏳᏛᏁᎸᎯ\t-10.2051\n▁ᏌᏚ\t-10.2051\n▁ᎠᎹᏳᎸᏓ\t-10.2051\n▁ᏱᏥᏍᎦᎢᎮᏍᏗ\t-10.2052\n▁ᎠᎩᎬᏫᏳᎯ\t-10.2052\n▁ᏣᏤᎵᎪᎯ\t-10.2052\n▁ᏏᎵᏱ\t-10.2052\n▁ᎦᎫᏍᏛᏗ\t-10.2052\n▁ᏤᏙᎲ\t-10.2053\n▁ᎤᏍᏚᎢᏒ\t-10.2053\n▁ᎤᏣᏔ\t-10.2054\n▁ᏭᎷᏣ\t-10.2054\n▁ᏇᏕᎵ\t-10.2054\n▁ᏗᎨᏥᎾᏌᎢ\t-10.2054\n▁ᎠᏂᏃᎮᏍᎩ\t-10.2054\n▁ᎧᏁᏍᎪ\t-10.2054\n▁ᏥᏲᏎᎸ\t-10.2055\n▁ᎠᏉᎳ\t-10.2055\n▁ᎠᎦᏔᎾᎢ\t-10.2055\n▁ᎤᎾᏗᏍᎦᎶᏗ\t-10.2055\n▁ᏓᎬᏔᏂ\t-10.2056\n▁ᎣᎩᏙᏓ\t-10.2056\n▁ᎬᏩᏍᏓᏩᏛᏒᎩ\t-10.2057\n▁ᏗᎦᏅᏍᎨᏂ\t-10.2057\n▁ᎬᎵᏍᏆᏗᏍᎩ\t-10.2057\n▁ᏗᎬᏩᎸᏌᏛ\t-10.2057\n▁ᎢᏳᏩᏁᎯ\t-10.2058\n▁ᏥᏥᎦᏔᎭ\t-10.2058\n▁ᎠᎵᏍᎪᎸᏓᏁᏗ\t-10.2058\n▁ᏚᏃᎡᎢ\t-10.2058\n▁ᏯᎦᏔᎭ\t-10.2059\n▁ᎠᏃᏍᏛ\t-10.206\n▁ᏓᎨᏏ\t-10.2061\n▁ᎾᏥᎾᏝᎥᎾ\t-10.2061\n▁ᎤᏁᏢᏔᏅᎯ\t-10.2061\n▁ᎾᎨ\t-10.2061\nᎬᏫᏳᏒ\t-10.2062\n▁ᎠᏂᏅᎢ\t-10.2062\n▁ᏦᎳᏂ\t-10.2062\n▁ᏧᏂᎦᏴᎵᎨ\t-10.2063\n▁ᏭᎶᎯᏍᏗᏱ\t-10.2064\n▁ᏳᏩᏁᎦ\t-10.2065\n▁ᎢᏣᏠᎾᏍᏗ\t-10.2065\n▁ᎪᏪᎳᏅᎯ\t-10.2067\n▁ᏦᏈ\t-10.2069\n▁ᎬᏂᎨᏒᎢᏳ\t-10.2071\n▁ᏥᏂᎦᏪᎭ\t-10.2072\n▁ᏦᎳ\t-10.2072\nᎦᏅᎯᏓ\t-10.2073\n▁ᎠᏥᏃᎮᏍᎬᎢ\t-10.2076\n▁ᏂᎦᏅᎯᏒᎩ\t-10.2081\n▁ᏧᏁᎬ\t-10.2081\n▁ᏂᏚᏍᏛ\t-10.2085\n▁ᎤᏬᏢᏅᎩ\t-10.2091\n▁ᎤᏢᎩ\t-10.2092\n▁ᎢᏳᏩ\t-10.2095\n▁ᎤᏅᏏᏙᎯ\t-10.2096\n▁ᎡᏉᏗᏱ\t-10.2096\n▁ᏕᏍᎩ\t-10.2096\n▁ᎤᏓᏅᏖᎸᎯ\t-10.2097\n▁ᎤᏕᏁᎸᎯ\t-10.2105\nᎾᏰᏍᎬᎾ\t-10.2105\nᎸᏉᏗ\t-10.2116\n▁ᎡᎳᏗᏢ\t-10.2117\n▁ᏓᏂᏁᎸᎢ\t-10.2119\n▁ᎠᎢᏒᎢ\t-10.2121\n▁ᎬᏂᏳ\t-10.2131\n▁ᎤᏍᎦᏅᏨᎯ\t-10.2131\nᎨᏳᏗ\t-10.2132\nᏏᏗᏒ\t-10.2133\nᏳᎯ\t-10.2134\n▁ᏧᏬᏚᎯ\t-10.2138\n▁ᎦᏅᎯᏓ\t-10.2139\n▁ᎠᎩᏍᏗᏱ\t-10.215\n▁ᎤᎿᎥᎢ\t-10.2151\n▁ᎨᎳᏍᏗ\t-10.2154\n▁ᎤᏄᏢ\t-10.216\nᏓᎵ\t-10.2163\n▁ᏤᏆ\t-10.2165\n▁ᏕᏡᎬᎢ\t-10.2174\nᏗᏍᎬᎢ\t-10.2183\nᏑᏰᏛ\t-10.2184\n▁ᎤᎾᏛᎦᏅᎯ\t-10.2197\n▁ᏥᎨ\t-10.2198\n▁ᎾᏆ\t-10.2201\n▁ᎤᎾᏛ\t-10.2204\n▁ᏕᏂ\t-10.2211\n▁ᏫᏍᎩ\t-10.2217\nᎡᎸᎯ\t-10.2226\n▁ᎠᎩᏰᎸ\t-10.2233\nᏅᏗ\t-10.2233\n▁ᎠᏆᏓᏅᏙᎩ\t-10.2234\n▁ᎦᏙᎬᎩ\t-10.2238\nᏄᎪᏫᏒᎩ\t-10.2242\nᏁᏃ\t-10.2248\n▁ᏂᎬᏁᎲ\t-10.2258\n▁ᎾᏛᏁᎲ\t-10.2259\nᏰᎯ\t-10.2259\nᏙᏓᏆᏓ\t-10.226\nᏙᏢᏅ\t-10.2265\nᏕᎶᎰᎯᏍᏗ\t-10.2267\n▁ᎤᏂᏍᎦᏅᏨᎢ\t-10.227\nᏔᏅᎾ\t-10.2273\n▁ᎤᎷᏤᎢ\t-10.2287\n▁ᏚᎦ\t-10.2287\n▁ᎤᏚ\t-10.2294\n▁ᏅᏗᎦᎵᏍᏙᏗᏍᎬᎢ\t-10.2306\n▁ᏕᎬ\t-10.2311\n▁ᎤᏯᏅ\t-10.2312\nᏂᏓᏍᏗᏱ\t-10.2315\n▁ᎠᎭ\t-10.233\nᎴᏅ\t-10.2331\nᏔᏲᏏ\t-10.2343\n▁ᎠᏒᎩ\t-10.2352\n▁ᎢᏒ\t-10.2357\n▁ᎬᏯ\t-10.2358\nᏤᎸ\t-10.2372\n▁ᏦᎯᏳᏒ\t-10.238\nᏦᏢᏗ\t-10.2382\nid\t-10.2387\nᏁᏤᎴ\t-10.2389\nᎦᏙ\t-10.2392\n▁ᏗᏨ\t-10.2396\n▁ᎠᎩᎪᎲ\t-10.241\n▁ᎤᏂᎲ\t-10.2411\nᏙᎴᎰᏏ\t-10.2451\nᎵᏏᏱ\t-10.2477\n▁ᎭᏩ\t-10.248\n▁ᎦᏲᎵ\t-10.2502\nᏉᏗ\t-10.2506\n▁ᏥᏙ\t-10.2511\nᏍᏔᏅᎯ\t-10.2522\nᎩᎳ\t-10.2528\nl\t-10.2532\nᎧᎵᎢ\t-10.2535\n▁ᎢᏥᏰᎸ\t-10.254\nᏌᏁ\t-10.255\nᏂᎩᏛ\t-10.2561\n▁ᎠᏂᏫᎾ\t-10.2575\nᏲᎯᏍᏗ\t-10.2639\n▁ᎢᏏᎵᏱ\t-10.2645\n▁ᏫᎩ\t-10.2648\n▁ᎠᏰ\t-10.265\nᏅᏓᏓ\t-10.2656\n▁ᎠᎾᎵ\t-10.2694\nᏁᏤᏗ\t-10.2695\nᎪᎵᏰᏗ\t-10.2696\nᏛᏂ\t-10.2704\n▁Ꮗ\t-10.2712\nᎵᏍᏔᏁ\t-10.2715\nᏒᏃ\t-10.2728\nᎩᏓ\t-10.2736\nᏄᎦ\t-10.2739\nᎶᏨ\t-10.2742\n▁ᏥᏄ\t-10.2749\n▁ᎯᏍᎩᏁ\t-10.2754\n▁ᎠᎢᏒ\t-10.2754\n▁ᎠᎦᏔ\t-10.2759\n▁ᏂᎨ\t-10.2784\nᏥᏲᏏ\t-10.279\nᏁᏤᎸᎯ\t-10.2792\n▁ᎠᏋ\t-10.2794\n▁ᏚᎾᎴᏁ\t-10.2822\n▁ᎯᎦᏘᏏ\t-10.2839\n▁ᎭᎻ\t-10.2841\nᏕᏅ\t-10.2852\nᏗᏢ\t-10.2866\nᎪᏩᏘᎭ\t-10.2872\nᏬᏂᎯᏍᏗ\t-10.2886\n▁ᏚᎧᎿᏅ\t-10.2906\n▁ᎤᏂᏣᏛ\t-10.2912\n▁ᎣᎩᎾ\t-10.2926\n▁ᎾᎩ\t-10.2938\nᎬᎿ\t-10.2939\n▁ᎠᏔᎴᎦᏒ\t-10.2953\n▁ᎤᏃᏁᎴ\t-10.2955\n▁ᏕᎦᏚᏩᏗᏒ\t-10.2966\n▁ᎤᏂᎷᏤᏗ\t-10.2969\n▁ᏧᏩᎫᏔᏅᏒ\t-10.2969\nᎾᏄᎪᏫᏏ\t-10.297\n▁ᏓᏕᏲᎲᏍᎬ\t-10.2972\n▁ᏱᎨᏐ\t-10.2976\n▁ᏚᏬᎡ\t-10.2982\n▁ᎠᎦᏍᎦᏂ\t-10.2983\n▁ᎠᏚᎢᏍᏛ\t-10.2985\n▁ᎦᎸᏉ\t-10.2986\n▁ᎤᏰᎸᏅ\t-10.2986\n▁ᏓᏂᏁᎸ\t-10.299\n▁ᎠᏓᏙᎵᏍᏗ\t-10.2994\nᏃᎮᏍᎬᎢ\t-10.2995\n▁ᎤᎦᏔᎲᏒ\t-10.2998\n▁ᎣᎵᏩ\t-10.3003\n▁ᎤᎷᏤᎴ\t-10.3011\n▁ᎤᏬᏚ\t-10.3012\n▁ᏤᎮ\t-10.3015\n▁ᏕᎪᏪᎸ\t-10.3015\n▁ᎤᏛᏐᏅ\t-10.3016\nᏲᎯᏍᏔᏅ\t-10.3022\n▁ᎦᎴᏂ\t-10.3034\nᏯᏅᎲ\t-10.3041\n▁ᎦᏁᏥ\t-10.3043\n▁ᎤᏅᏎ\t-10.3046\n▁ᏩᎩ\t-10.3046\nᏓᎴᏅᏛ\t-10.3047\nᎰᎲᏍᏗ\t-10.3049\n▁ᎡᏂᎾᏯ\t-10.3049\n▁ᎢᏍᎦᎳᏗ\t-10.3049\n▁ᎥᏘᎣᎩ\t-10.3049\n▁ᎦᏌᏆᎸ\t-10.3049\n▁ᏑᏓᎳᏍᎪᎯ\t-10.3049\n▁ᏗᎫᏓᎸᏗᏱ\t-10.3049\n▁ᏤᎦᎳᏯ\t-10.3049\n▁ᎡᎹᏂᏓ\t-10.3049\n▁ᏧᏙᏓᏋᏓ\t-10.3049\n▁ᏧᏯᏖᏃᎯ\t-10.3049\n▁ᏯᏃᎩᏳ\t-10.3049\n▁ᏫᏚᎧᎿᏁ\t-10.3049\n▁ᎤᏯᏖᏃᎯ\t-10.3049\n▁ᏗᏍᏆᎨᏂ\t-10.3049\n▁ᎢᏤᎳᏗᏙᎮᏍᏗ\t-10.3049\n▁ᎬᏉᏎᎰ\t-10.3049\n▁ᏕᎨᏥᏰᎸᏔᏅᎩ\t-10.3049\n▁ᎤᎾᏢᏉᏗ\t-10.3049\n▁ᎻᎾᏌ\t-10.3049\n▁ᏂᏣᏪᏒ\t-10.3049\n▁ᎢᏳᏩᏂᏌᏅᎯ\t-10.3049\n▁ᏑᎾᏓᎴᎩ\t-10.3049\n▁ᎦᎶᎯᏍᏗᏳᎶᏗ\t-10.3049\n▁ᎡᏥᎸᏉᏓ\t-10.3049\n▁ᎤᏂᏃᎮᎴ\t-10.3049\n▁ᏅᏓᏳᎵᏍᏙᏗᏱ\t-10.3049\n▁ᎨᏣᏍᏓᏩᏗᏙᎯ\t-10.305\n▁ᏗᎧᎾᏩᏛᏍᏗ\t-10.305\n▁ᎠᎦᎵᏍᎬ\t-10.305\n▁ᏄᎵᏍᏔᎾ\t-10.305\n▁ᏍᎩᏄᏍᏛ\t-10.305\n▁ᎢᏲᏍᏛ\t-10.305\n▁ᎦᏌᎾᎵ\t-10.305\n▁ᏅᏓᎬᏁᎵ\t-10.305\n▁ᏱᏅᎦᎵᏍᏓ\t-10.305\n▁ᎪᏌᏂ\t-10.305\n▁ᏱᏚᏂ\t-10.3051\n▁ᎢᏳᏩᏂᎸ\t-10.3051\n▁ᎠᏂᏈᎷ\t-10.3051\n▁ᎤᎵᏍᏔᏴᏗ\t-10.3051\n▁ᎤᏰᎸᎮ\t-10.3052\n▁ᏑᏕᏘᏴᏛ\t-10.3052\n▁ᏄᎾᎵᏍᏔᏁ\t-10.3053\n▁ᏭᏴᎸ\t-10.3053\n▁ᎯᎨᏴ\t-10.3053\n▁ᏗᏓᎴᎲᏍᎦ\t-10.3053\n▁ᎢᏳᏛᎿᏕᎩ\t-10.3054\n▁ᎢᎧᏁᏨᎯ\t-10.3054\nᏍᎦᎢᎲᎾ\t-10.3054\n▁ᏗᏓᏂᏐᏗᏱ\t-10.3054\n▁ᏓᏓᎶᏂ\t-10.3055\n▁ᏫᏨᎷᏤᏗᏱ\t-10.3055\nᎸᏉᏕᏍᏗ\t-10.3055\n▁ᎤᏂᎷᎯᏍᏗᏱ\t-10.3056\n▁ᎤᎵᏠᏯᏍᏕᏍᏗ\t-10.3056\n▁ᎠᏂᏦᎢ\t-10.3056\n▁ᏛᏍᏆᎸᎯ\t-10.3057\n▁ᎢᏣᎵᏍᏕᎸᏙᏗ\t-10.3058\n▁ᎢᏣᏛᎦᏅᎯ\t-10.3058\n▁ᏗᎦᎴᏂ\t-10.3058\n▁ᎠᏙᎴᎰᎯᏍᏙᏗ\t-10.3059\n▁ᎤᏂᎩᏍᏗ\t-10.3059\n▁ᎤᏛᎪᏗᏱ\t-10.306\n▁ᎢᏳᏩᏁᎸᎯ\t-10.306\n▁ᎠᎩᏅᏏᏛ\t-10.306\n▁ᏭᏂᎶᎯᏍᏗᏱ\t-10.306\n▁ᎤᏪᎵᏍᏗ\t-10.3061\n▁ᎤᏓᏙᎵᏍᏓᏁᎴᎢ\t-10.3061\n▁ᎢᏣᏓᏡᎬ\t-10.3061\n▁ᎾᏂᎦᏔᎲᎾ\t-10.3062\n▁ᎤᏁᎷᏅᎩ\t-10.3062\n▁ᎧᏃᎮᏓ\t-10.3063\n▁ᎤᏁᏍᏓᎳ\t-10.3063\n▁ᎤᏓᏙᎵᏣᏘᏳ\t-10.3063\n▁ᏦᏓᎸ\t-10.3064\n▁ᎤᏪᏙᎵᏍᏗ\t-10.3065\n▁ᎬᏩᏔᏲᏎᎴ\t-10.3066\n▁ᎢᎨᎬᏁᏗ\t-10.3067\n▁ᏙᏓᏳ\t-10.3068\n▁ᎾᎩᏪᏒᎩ\t-10.3068\n▁ᏂᎦᎵᏍᏗᏍᎨᏍᏗ\t-10.3069\n▁ᎤᏂᏇᏓᎸᎢ\t-10.307\n▁ᎪᏢᏅ\t-10.3072\n▁ᎠᎦᏍᎬ\t-10.3072\n▁ᏥᏍᏆᏯ\t-10.3072\n▁ᎤᏂᏁᎫ\t-10.3075\n▁ᏗᎦᎶᏗ\t-10.3077\nᎦᏴᎵᎨ\t-10.3079\n▁ᏙᎩᎾ\t-10.3083\n▁ᎤᎾᏕᏅᎯ\t-10.3085\n▁ᎤᏂᏃᎮᎸᎯ\t-10.3087\n▁ᏂᎬᏁᎭ\t-10.3088\n▁ᎤᎵᏬᏨᎯ\t-10.309\n▁ᎦᏁᎳ\t-10.309\n▁ᏴᎨᏥ\t-10.309\n▁ᎠᏂᏁᎵ\t-10.3092\n▁ᏚᏂᏅᏎ\t-10.3093\n▁ᏚᏁᏤᎸᎩ\t-10.3093\n▁ᏙᏧᎾᏓᏅᏛᎢ\t-10.3093\n▁ᎭᎴ\t-10.3095\n▁ᎢᏳᏛᏁᏗᏱ\t-10.3095\n▁ᎤᏪᏅᏍᏗᏱ\t-10.3096\n▁ᎤᏓᎴᏅᏛ\t-10.3099\n▁ᎤᏓᏑᏯ\t-10.3099\n▁ᎤᏰᎸᎯ\t-10.31\n▁ᎤᎾᎵᏍᏓᏴᏗᏱ\t-10.3102\n▁ᏤᎲᎩ\t-10.3102\n▁ᏄᎾᏛᏁᎴᎢ\t-10.3102\n▁ᎠᏆᏓᏅᏛ\t-10.3103\n▁ᏫᏚᏯᏅᎲᎩ\t-10.3107\n▁ᎣᎬᏒ\t-10.311\n▁ᎾᎦᏔᎲᎾ\t-10.3113\nᎦᏔᎯ\t-10.3113\n▁ᎤᏪᏅᏒᎩ\t-10.3115\n▁ᏚᏌᎳᏓᏁ\t-10.3117\n▁ᎤᏪᏙᎸᎩ\t-10.3118\n▁ᎾᏂᏪᏍᎬᎢ\t-10.3118\n▁ᎠᏥᎸᎨᎳᏍᏗᏱ\t-10.3121\n▁ᏓᏕᏲᎲᏍᎬᎢ\t-10.3126\n▁ᏧᏒᎯ\t-10.3127\n▁ᎨᎦᎫᏴᎡ\t-10.3128\n▁ᎧᏅᏑᎸ\t-10.3134\n▁ᎢᎾᎩ\t-10.3135\nᏏᏅᏓ\t-10.3136\n▁ᎤᏄᎪᏨᎩ\t-10.3137\n▁ᎠᏎᏍᎩᏂᏃᏅ\t-10.314\n▁ᎤᏰᎸᏁᎢ\t-10.3141\n▁ᎠᏨᏯᎢ\t-10.3142\nᏅᏃ\t-10.3145\n▁ᏩᎾ\t-10.3148\n▁ᎤᏂᏰ\t-10.3148\nᏓᏂ\t-10.3148\n▁ᏕᎳ\t-10.3159\nᏄᎪᏩ\t-10.318\n▁ᎤᏂᏰᎸᏁ\t-10.3182\n▁ᎠᏫᏍᎩ\t-10.3189\n▁ᎧᎪ\t-10.319\n▁ᎠᏤᎵᏍᏛᎢ\t-10.3199\nᏍᏔᏁ\t-10.3237\n▁ᏧᏙ\t-10.3238\n▁ᎤᏥᎸᏒ\t-10.324\nᏍᏛᎾ\t-10.3252\nᏁᎸᎾ\t-10.3255\n▁ᏄᏩᏁᎴᎢ\t-10.3267\n▁ᎦᏬᏂᏍᎬᎢ\t-10.3275\n▁ᎤᎶᎩᎸᎢ\t-10.3283\nᏅᏍᏗᏱ\t-10.3289\nᏓᏱᎵ\t-10.3296\n▁ᎣᎬ\t-10.3297\n▁ᎾᏋᏁᎸ\t-10.3316\nᏁᎮ\t-10.332\n▁ᏗᎦᏅᏌᏗ\t-10.3321\n▁ᎦᏰᏥ\t-10.3325\nᎨᏛ\t-10.3326\nᏆᎵ\t-10.3327\n▁ᏕᎪ\t-10.3329\n▁ᎠᏉ\t-10.3329\nᏲᎯ\t-10.3329\n▁ᏗᎪᏪᎶᏗ\t-10.3337\n▁ᏧᏬ\t-10.3338\n▁ᎤᎴᏁ\t-10.3338\nᎦᏓᏁ\t-10.3342\n▁ᏱᏏ\t-10.3367\n▁ᏕᎭ\t-10.337\nᎢᏴ\t-10.3389\nᏅᏏᏓᏍᏗ\t-10.3392\n▁ᎤᎧᏛᎢ\t-10.3406\nᎰᎵ\t-10.3428\nᏍᏓᏴ\t-10.3434\nᎦᏔᎰ\t-10.3444\n▁ᎤᎲᎢ\t-10.346\n▁ᏂᏕᎬᏁ\t-10.3475\nᏏᏆ\t-10.3476\nᏁᏆ\t-10.3482\n▁ᎩᎶᎢ\t-10.3501\nᎡᎸᎩ\t-10.3504\n▁ᎠᏲ\t-10.3514\nᏣᏛᏁᎯ\t-10.3516\nᏫᏍᏗ\t-10.353\nᏓᎳ\t-10.3533\nᏂᏌᏁ\t-10.3535\nᎾᎥ\t-10.3547\n▁ᎦᏃ\t-10.3549\nᏛᏙᏗ\t-10.3563\n▁ᏄᎵᏍᏔᏁᎮ\t-10.3568\n▁ᏱᏙᎦ\t-10.3577\nᏍᏆᏙᏅ\t-10.3579\nᏤᎵᎦ\t-10.3581\n▁ᏰᎵᏍᎨ\t-10.3583\nᎠᏈ\t-10.3588\n▁ᎢᎯ\t-10.3593\nᏥᎪᏩᏛ\t-10.3607\n▁ᎣᎩᏂ\t-10.3611\nᏗᏏ\t-10.3617\n▁ᎢᏣᏓᏅᏘ\t-10.3622\nᎦᏐᎯ\t-10.3639\nᏁᎮᎢ\t-10.3648\n▁ᎤᎲ\t-10.3653\n▁ᎢᎬᏁ\t-10.3654\nᎵᏯ\t-10.3657\nᏙᎮᏍᏗ\t-10.3681\nᎵᎪ\t-10.3687\n▁ᎩᎳᎯ\t-10.3699\nᎸᏉᏙᏗᏱ\t-10.3704\nᎾᏄᎪᏨᎯ\t-10.3718\nᎷᏣ\t-10.3731\n▁ᎡᏥᏁᏗ\t-10.3734\n▁ᎦᏅ\t-10.3736\n▁ᎤᎾᏛᎦᏁ\t-10.3739\n▁ᎢᎳ\t-10.3761\nᏍᏓᏩᏗᏙᎯ\t-10.3767\nᎪᎵᏰᎡ\t-10.3768\nᎯᏫ\t-10.3775\n▁Ꮾ\t-10.3791\n▁ᎤᎶᏒ\t-10.3791\n▁ᎤᏲᎱᏎ\t-10.38\n▁Ꮉ\t-10.3802\nᏰᏂ\t-10.3812\n▁ᎤᎶ\t-10.3812\nᏙᎸ\t-10.3814\nᏍᎦᎩ\t-10.3836\nᏅᏓᏗᏍᏙᏗ\t-10.3846\n▁ᏲᎩ\t-10.3849\n▁ᏥᎾ\t-10.3868\n▁ᏗᎾᏓ\t-10.3877\nᏍᏔᏱ\t-10.3904\n▁ᎠᏂᏐᎢᏃ\t-10.3914\n▁ᏥᏂᎦᏪ\t-10.3933\n▁ᏄᏪ\t-10.3938\n▁ᎾᎿᏉ\t-10.3959\n▁ᎠᏓᏅᏖᎵᏙ\t-10.3959\nᎨᏂ\t-10.3963\n▁ᏥᏂ\t-10.3964\nᏏᏁ\t-10.3966\nᎩᎡᎸ\t-10.3992\n▁ᎠᏍᎪᎯᏃ\t-10.4\n▁ᏫᏓᏂ\t-10.4002\nᎡᎴᎢ\t-10.4026\n▁ᏄᏂᏪᏒ\t-10.4026\nᏠᏱ\t-10.4028\n▁ᎪᏢᏒ\t-10.403\nᎠᏎ\t-10.4031\nᏰᎭ\t-10.4033\n▁ᏱᏗᎦ\t-10.4033\nᏍᏕ\t-10.4038\n▁ᎾᎬᏁᎸ\t-10.4039\n▁ᎾᏂᏪᏍᎬ\t-10.4042\n▁ᏥᏁᎸ\t-10.4046\n▁ᏣᏓ\t-10.4046\nᏗᏒ\t-10.4048\n▁ᏂᎦᎵᏍᏗᏍᎨ\t-10.4058\nᏎᎴ\t-10.4059\nᏗᏂᏅᏌᏗ\t-10.4062\nᎭᏕᏬ\t-10.4065\n▁ᎣᏓᏅᏛ\t-10.4065\n▁ᎤᏲᎯᏍᏔᏁ\t-10.407\nᎨᎵᎠ\t-10.4073\nᎪᎱᏍᏗ\t-10.4074\nᎠᏕᎸ\t-10.4076\nᎧᎵᏨᎯ\t-10.4081\nᏗᎦᏘᏯ\t-10.4084\nᎠᎩᎾ\t-10.4085\n▁ᎯᏰᎸ\t-10.4088\n▁ᎡᏙᎮ\t-10.4089\n▁ᎠᏕ\t-10.4089\n▁ᏧᏓᏅᏛ\t-10.409\n▁ᏕᎤᎴᏔᏅ\t-10.4091\n▁ᏚᏂᎸᏫᏍᏓᏁᎸ\t-10.4094\n▁ᎤᏁᎦᎸ\t-10.411\nᏠᎠᏏ\t-10.4112\n▁ᎠᏓᏁᏣᏍᏚᎶ\t-10.4112\n▁ᏧᎾᎴᎯᏐ\t-10.4113\nᎶᏐᏅ\t-10.4129\n▁ᎤᎾᎵᎮᎵᏤ\t-10.4131\n▁ᎢᏙᎻ\t-10.4133\n▁ᏏᏓᏁᎸ\t-10.4135\n▁ᏅᏲ\t-10.4136\n▁ᏧᏂᎳᏫᎢᏍᏗ\t-10.4137\n▁ᎠᏥᏍᏕᎸᏗ\t-10.4138\nᎵᏍᏗᏱ\t-10.4139\n▁ᎠᏲᎱᏒ\t-10.4141\n▁ᏣᎾᏫ\t-10.4143\n▁ᎤᎾᏕᏅ\t-10.4146\n▁ᏱᏓᏂ\t-10.4148\nᎶᎯᏍᏗᏱ\t-10.4149\nᏍᏕᎸᎯ\t-10.4151\nᎥᎩ\t-10.4153\n▁ᏗᎪᏪᎵ\t-10.4157\nᏲᎢᏴ\t-10.4157\nᎭᏄᎸᎯ\t-10.4158\nᏍᏆᏂᎪᏙᏗᏱ\t-10.4159\nrs\t-10.4159\n▁Philadelphia\t-10.416\n▁ᎠᏓᏪᎳᎩᏍᎩ\t-10.416\n▁ᏐᎵᎹᏅ\t-10.416\n▁ᏕᏦᎯᏳᏎᏍᏗ\t-10.416\n▁ᏚᏍᏆᎸᏔᏁ\t-10.416\n▁ᏱᏄᎵᏍᏔᎾ\t-10.416\n▁ᏆᎳᏆ\t-10.416\n▁ᏗᎦᏒᏍᏔᏅ\t-10.416\n▁ᎢᏦᎯᏳᎯ\t-10.416\n▁ᏇᏚᎡᎵ\t-10.416\n▁ᎤᏣᎴᏓ\t-10.416\n▁ᏗᎾᏕᏲᎲᏍᎩ\t-10.416\n▁ᏧᎴᎯᏌᏅᎯ\t-10.416\n▁ᎧᏂᎵᏯ\t-10.416\n▁ᏗᏇᏅᏒ\t-10.416\n▁ᏧᏴᏨ\t-10.416\n▁ᎤᏬᏓᎸ\t-10.416\n▁ᏚᎧᎿᏁ\t-10.416\n▁ᏓᏳᏂᎶᏒ\t-10.416\n▁ᎠᏚᎸᏗ\t-10.416\n▁ᎤᏓᏅᎵᏰᎥ\t-10.416\n▁ᎢᏗᏅᏁ\t-10.416\n▁ᏱᏣᏓᏅᏖᏗᏍᎨᏍᏗ\t-10.416\n▁ᎢᏥᏆᎵᏏ\t-10.416\n▁ᎬᏩᏠᏯᏍᏗ\t-10.4161\n▁ᎢᏧᎾᏓᎳ\t-10.4161\n▁ᏗᏥᎸᏫᏍᏓᏁᏗᏱ\t-10.4161\n▁ᏗᎦᎸᏫᏍᏓᏁᎸᎯ\t-10.4161\n▁ᎤᏓᏑᏱ\t-10.4161\n▁ᏚᏛᏛᏁ\t-10.4161\n▁ᎨᏅᎢᏍᏗ\t-10.4161\n▁ᎡᏣᏂᎵ\t-10.4161\n▁ᏕᎪᏪᎵᏍᎬ\t-10.4161\n▁ᏗᏛᏓᏅᎯ\t-10.4161\n▁ᏗᎨᏥᎾᏝᎢ\t-10.4161\n▁ᎤᏒᎯᏰᏱ\t-10.4161\n▁ᎦᏓᎷᏯᏛ\t-10.4161\n▁ᎠᎾᏛᎩᏍᎩ\t-10.4162\n▁ᏗᎬᎪᏩᏛᏗ\t-10.4162\n▁ᎠᎩᎷᏥᎸ\t-10.4162\n▁ᏱᎪᎵᎦ\t-10.4162\n▁ᎠᏍᏆᏚᎸ\t-10.4163\n▁ᎠᏂᎴᏴᏍᎩ\t-10.4163\n▁ᎠᎵᎮᎵᎬ\t-10.4163\n▁ᎤᏂᎪᎮ\t-10.4163\n▁ᏧᏓᎴᏅᎲ\t-10.4163\n▁ᎤᎾᏓᏓᏍᎬ\t-10.4163\n▁ᏂᏣᏛᎦ\t-10.4163\n▁ᎬᏩᏲᎱᎯᏍᏗ\t-10.4163\n▁ᎾᏯᏛᎡᏍᏗ\t-10.4163\n▁ᎠᏄᎦᎸ\t-10.4164\n▁ᎦᏣᏃᏍ\t-10.4164\n▁ᏥᏕᎦ\t-10.4164\n▁ᎧᏴᏐᎵ\t-10.4164\n▁ᏚᏃᏢᏅᎩ\t-10.4164\n▁ᏗᎪᏑᎴᏗᏱ\t-10.4164\n▁ᏧᏴᏢ\t-10.4164\n▁ᎤᏓᎴᏨ\t-10.4164\n▁ᏧᎴᏔᏅᎯ\t-10.4164\n▁ᎤᏄᎪᎢᏍᏗ\t-10.4165\n▁ᏥᎣᎵ\t-10.4165\n▁ᎬᏆᏛᏁᏗᏱ\t-10.4165\n▁ᎠᏓᏍᏓᏩᏗᏙᎯ\t-10.4165\n▁ᏂᏥᎦᏔᎲᎾ\t-10.4166\n▁ᏀᎢᏳ\t-10.4166\n▁ᎥᏥᎪᎥᎩ\t-10.4166\nᎳᏏᏕᎾ\t-10.4166\n▁ᎤᎾᎵᏗᎩᏛ\t-10.4166\n▁ᎤᏬᏪᎳᏅᎯ\t-10.4167\n▁ᏚᎷᏫᏍᏔᏁᎲ\t-10.4167\n▁ᎢᏧᏕᏘᏴᏛ\t-10.4167\n▁ᎠᎹᎴᎩ\t-10.4167\n▁ᏔᎸᏗ\t-10.4167\n▁ᎤᏗᏔᎲ\t-10.4167\n▁ᎢᎩᏅᏟ\t-10.4168\nᏛᏅᎢᏍᏙᏗᏱ\t-10.4168\n▁ᏍᎩᎾᏝᎢ\t-10.4169\n▁ᎤᎬᏫᏳᏎᏍᏗ\t-10.417\n▁ᎦᏅᏙᏗ\t-10.417\n▁ᏧᎾᏄᏩᎢ\t-10.417\n▁ᏄᏩᏅ\t-10.4171\n▁ᎾᏁᎲᎾ\t-10.4171\n▁ᎤᏂᏰᎸᏒᎩ\t-10.4172\n▁ᎤᏕᏁᎢ\t-10.4172\n▁ᎢᏳᏓᎵᎭ\t-10.4174\n▁ᎠᎩᏰᎸᎲ\t-10.4174\n▁ᎤᎧᎭᏛ\t-10.4174\n▁ᏭᏂᏴᎴᎢ\t-10.4175\n▁ᏩᎩᎷᏨ\t-10.4177\n▁ᎤᎴᏫᏍᏔᏁ\t-10.4177\nᏥᎯᏍᏗ\t-10.4178\n▁ᎠᎵᏥᏙᎲᏍᎨ\t-10.4179\n▁ᎤᎾᏗᏅᏗ\t-10.418\n▁ᎡᏙᎭ\t-10.418\n▁ᎤᏌᎳᏓᏅ\t-10.4182\n▁ᎨᏥᏁᎸᎯ\t-10.4183\n▁ᎥᎩᏙᏉ\t-10.4184\nᏲᎯᏎᎸᎩ\t-10.4184\n▁ᎠᏟᏍᏛᎢ\t-10.4186\n▁ᎤᏬᎯᏳ\t-10.4187\n▁ᏭᏂᎶᏒᎩ\t-10.4187\n▁ᏅᏓᎬ\t-10.4188\n▁ᎤᏪᎧᏅᎩ\t-10.4188\n▁ᎤᏅᏙᏗᏱ\t-10.4189\n▁ᏗᏂᎦᏘᏯ\t-10.4189\n▁ᎤᏕᏗᏱ\t-10.419\n▁ᎾᏍᎦᎢᎲᎾ\t-10.4192\n▁ᏄᏂᏪᏎᎸᎩ\t-10.4193\n▁ᎾᏂᎡᎢ\t-10.4193\n▁ᎤᎵᏏᏂ\t-10.4194\n▁ᏧᏬᎸ\t-10.4194\n▁ᎢᏗᎦᏪᏍ\t-10.4196\n▁ᎠᎧᎵᏬᎯ\t-10.4197\n▁ᎤᏨᏉᏗ\t-10.4198\n▁ᎤᏪᏁᎢ\t-10.4203\n▁ᏗᏟᏍᏗ\t-10.4203\n▁ᎤᏢ\t-10.4203\n▁ᏗᎦᎵᏍᏙᏗᎭ\t-10.4203\n▁ᎤᎪᏩᏛᏗ\t-10.4204\n▁ᎤᏔᎾ\t-10.4205\nᎾᏄᎪᎢᏍᏗ\t-10.4206\n▁ᏐᏓᎻᏱ\t-10.4208\n▁ᎢᎩᏁᎸᎯ\t-10.4208\n▁ᏧᏁᎳ\t-10.421\nᏗᏍᎪᏂᎯ\t-10.4211\n▁ᏓᏳᏓᎴᏅᏓ\t-10.4219\n▁ᏯᎩᎭ\t-10.422\n▁ᎢᎦᏁᎳᏅᎯ\t-10.4229\nᏁᎬ\t-10.4229\n▁ᎢᏯᎬᏁᏗ\t-10.423\n▁ᎤᏯᏅᎯ\t-10.4232\n▁ᎦᏁᏌᎢᎯ\t-10.4234\n▁ᏚᏂᎸᏫᏍᏓᏁᎸᎢ\t-10.4237\n▁ᏗᏐᎢ\t-10.4239\n▁ᎡᏙᎮᎢ\t-10.4239\n▁ᎭᎾᏂ\t-10.424\n▁ᏥᎨᏥ\t-10.4243\n▁ᎤᎾᏛᎦᏁᎢ\t-10.4245\n▁ᏓᏈ\t-10.4247\n▁ᎤᏩᏛᎮᎢ\t-10.4247\n▁ᏍᎩᎨᏳ\t-10.4251\nᏂᏯ\t-10.4251\n▁ᏗᏍᎩ\t-10.4254\n▁ᎧᎸ\t-10.4256\n▁ᏭᎷᏨᎩ\t-10.4267\n▁ᎤᏯᎢ\t-10.4268\n▁ᎡᎵᏍᎨᎢ\t-10.427\n▁ᎤᏎᎵᏔᏅ\t-10.4272\nᎡᏗ\t-10.4273\n▁ᎠᏒᎭ\t-10.4274\n▁ᎥᎵ\t-10.4277\nᎭᏲᎲ\t-10.4278\nᏓᏍᏗ\t-10.428\nᎳᏁᎢ\t-10.4282\n▁ᎤᏓᏅᏖᎸᎢ\t-10.4283\non\t-10.4285\n▁ᏕᏥᎸᏫᏍᏓᏁᎲᎢ\t-10.4293\n▁ᎬᏙᏗᏱ\t-10.4295\nᎪᎵᏯ\t-10.43\n▁ᎤᏓᏅᏛᎢ\t-10.4301\n▁ᎤᏃᎮᎴ\t-10.4301\n▁ᏇᎵᏥ\t-10.4307\n▁ᎤᏓᏅᏎᎢ\t-10.4308\n▁ᏗᎬᏗ\t-10.4317\n▁ᏚᏁᎴᎢ\t-10.4319\n▁ᎾᎾᏛᏁᎲᎢ\t-10.4322\n▁ᎢᏦᎯᏳᏒᎢ\t-10.4332\n▁ᎦᏓᏅᏖᏍᎬᎢ\t-10.4348\nᏁᎰᎢ\t-10.435\n▁ᎤᏲᎴ\t-10.4351\n▁ᎢᏦ\t-10.4353\nᎦᏨ\t-10.4354\n▁ᎠᏍᎦᎾᎢ\t-10.4361\n▁ᎠᏁᎰ\t-10.4364\n▁ᏦᎾ\t-10.4365\n▁ᏚᏁᏤᎴᎢ\t-10.4374\n▁ᎡᎲᎩ\t-10.4379\n▁ᎡᎵᎩ\t-10.4381\n▁ᏧᎴ\t-10.4384\n▁ᏌᎵ\t-10.4393\nᏍᏛᏱ\t-10.4398\nᎿᎢ\t-10.4399\nᏲᎰᏎᎸ\t-10.4402\n▁ᎤᏅᏅ\t-10.4414\n▁ᎤᏪᏅᏎᎢ\t-10.4423\n▁ᏧᎾᏄᎪᏫᏎᏗ\t-10.4429\n▁ᎠᏍᏛᎢ\t-10.4435\nᏍᎪᏃ\t-10.4436\n▁ᏅᏓᏳᎾᎵᏍᎪᎸᏔ\t-10.444\n▁ᎤᏩᏂ\t-10.4446\nᏕᏗ\t-10.4449\nᎦᏯ\t-10.4452\n▁ᏗᎬᏩᏓᏂᎸᎢᏍ\t-10.4453\n▁ᎪᏍᏔ\t-10.4469\n▁ᎩᎵ\t-10.4472\n▁ᎤᎪᎲᎩ\t-10.4485\n▁ᎠᏓᏅᏖᏍᎬᎢ\t-10.4487\n▁ᎤᎾᏄᎪᏫᏒ\t-10.4494\n▁ᎤᏪᎷᏁᎢ\t-10.4498\n▁ᏗᏂᏩᎾᎦᎳ\t-10.4502\nᏳᎵ\t-10.452\n▁ᎢᏯᏂᎢ\t-10.4531\n▁ᎢᏣᏓ\t-10.4532\n▁ᎤᎾᏙᏓᏆᏍᎬᎢ\t-10.4534\n▁ᎦᏨ\t-10.4548\n▁ᎤᏂᎬ\t-10.4552\n▁ᏗᏂᏃ\t-10.4569\n▁ᏅᏗᎦᎵᏍᏙᏗᏍᎨᎢ\t-10.4585\nᏙᎢ\t-10.4585\nᎴᏅᎯ\t-10.4586\n▁ᎠᏆᏓᏅᏖᏗ\t-10.4595\n▁ᎦᏚᏱ\t-10.4603\n▁ᎤᎩᎸ\t-10.4623\nᏓᏁᏟᏴᏛ\t-10.4623\nᎱᏍᏗ\t-10.4623\nᎲᏍᎦ\t-10.463\nᏎᎭ\t-10.464\nᎳᏏ\t-10.4644\nᏂᏫ\t-10.4649\n▁ᏚᏙ\t-10.4655\n▁ᏫᏚᎾ\t-10.466\n▁ᎤᏂᏩᏛᏗ\t-10.4661\n▁ᏙᏘ\t-10.4667\n▁Ꮮ\t-10.4691\n▁ᎠᏫᎾ\t-10.4712\n▁ᎬᏗᎭ\t-10.4716\nᏍᏆᏂᎪᏕᏍᏗ\t-10.4718\nᏁᏤᎵ\t-10.472\nᏢᏅ\t-10.4732\n▁ᏦᎦ\t-10.4751\n▁ᏗᏨᏂᏗ\t-10.4765\n▁ᎤᎾᏄᎪᏫᏎ\t-10.4769\n▁ᏣᏁ\t-10.4781\nᏥᏩᏛᎲ\t-10.4788\n▁ᏂᎦᎵᏍᏙᏗᏍᎨ\t-10.4793\n▁ᎤᎵᎮᎵᏤ\t-10.4796\n▁ᎦᏅᎨ\t-10.4799\n▁ᏚᏁᎸ\t-10.4807\nᎵᏍᎬ\t-10.4813\n▁ᎤᎬ\t-10.4818\nᏟᎶᏍᏙᏗ\t-10.482\n▁ᎠᎦᏕ\t-10.4822\nᎾᏄᎪᏫᏒᎯ\t-10.4826\n▁ᎧᏁᏉ\t-10.4828\n▁ᏗᎨᏣ\t-10.4829\n▁ᏧᏂᎵ\t-10.4837\nᎵᏍᏕᎸᏙᏗ\t-10.4844\nᏗᏍᎬᎾ\t-10.4846\nᎸᏓ\t-10.4854\n▁ᎢᏥᎩᏍᏗ\t-10.4857\n▁ᎠᏋᎭ\t-10.4878\n▁ᎠᎦᏘᏰ\t-10.4882\n▁ᎤᏁᎴ\t-10.4888\nᏏᏳ\t-10.4897\n▁ᏛᎩ\t-10.4907\nᎤᏅᏓᏕ\t-10.4912\nᏍᏕᎵᎭ\t-10.4928\n▁ᎥᏍᎩ\t-10.4931\n▁ᎤᏥᏃ\t-10.4939\nᎦᏙᎥᎯᏍᏗᏱ\t-10.4939\n▁ᎡᏣᎫᏴ\t-10.4939\nᎩᏍᎪ\t-10.4949\n▁ᎾᎦᏛ\t-10.4952\n▁Ꮏ\t-10.4964\nᏎᎸᎩ\t-10.4984\n▁ᏄᏅ\t-10.4999\nᎨᏍᏗᏗ\t-10.5003\n▁ᎤᏂᎸᏉᏗ\t-10.5016\n▁ᎢᏥᎲ\t-10.5019\n▁ᏛᏂ\t-10.5037\n▁ᏂᎯᏍᎪ\t-10.505\n▁ᎠᏲᎱᏍ\t-10.5052\n▁ᎡᎳᏪᏱ\t-10.5061\nᎢᏍᏔᏂ\t-10.5065\n▁ᏂᎬᏩ\t-10.5073\nᏚᎬ\t-10.5077\nᏁᏍᏗ\t-10.5105\nᏦᏅ\t-10.513\n▁ᏱᏫ\t-10.5142\n▁ᏣᎩ\t-10.5142\n▁ᎤᏂᏗ\t-10.5152\n▁ᏣᏆ\t-10.5153\nᏁᏟᏴᏍᏗ\t-10.5166\nᎬᏫᏳᎯ\t-10.5172\nᏂᎬᎦ\t-10.5172\nᏇᏓᎵ\t-10.5174\n▁ᎤᎧᏔ\t-10.5177\n▁ᎦᏗ\t-10.5191\n▁ᎠᏗᏍᎬ\t-10.5206\nᏲᎪ\t-10.521\nᎷᏨ\t-10.5214\n▁ᏁᎵᏍᎬ\t-10.5217\nᏎᎸᎯ\t-10.5227\n▁ᎣᏍᏗ\t-10.5227\nᎪᏩᏛ\t-10.5236\nh\t-10.5243\nᎥᎦ\t-10.5247\nᎴᏅᏛ\t-10.5258\nᏰᏌᏛ\t-10.527\n▁ᎤᏬᏂᏒ\t-10.5273\n▁ᏂᏚᏪᏎᎸ\t-10.528\n▁ᎯᎠᏉ\t-10.5281\nᎦᏔ\t-10.5298\n▁ᎾᏍ\t-10.5305\n▁ᎠᏲᏟ\t-10.5308\n▁ᏓᎵᏍᏗᎳᏁᎬ\t-10.5314\nr\t-10.5323\nᏥᎨᏳᎢ\t-10.5323\n▁ᎤᏬᎴ\t-10.5324\n▁ᏗᎦᏅᏬ\t-10.5324\n▁ᎤᏁᎵᏎ\t-10.5324\n▁ᎧᎸᎬ\t-10.5325\n▁ᎢᏕᎲ\t-10.5327\n▁ᏓᏂᎳᏫᎥ\t-10.533\n▁ᏗᏥᎦᏴᎵᎨ\t-10.533\n▁ᏓᏟᎶᏍᏛ\t-10.5331\n▁ᎤᏗᏛᎮ\t-10.5331\n▁ᎤᏚᎢᏍᏔᏅ\t-10.5333\n▁ᎢᎩᏍᎦᏅᏨ\t-10.5333\n▁ᎤᏬᏎᎴ\t-10.5333\n▁ᎤᏍᏓᎦᎸ\t-10.5334\nᎠᎹ\t-10.5335\nᏔᎾ\t-10.5337\n▁ᎠᏂᏙᎾᎡ\t-10.5338\n▁ᏚᎴᎯᏌᏅ\t-10.534\n▁ᎤᏪᎧᏁᎴ\t-10.5343\n▁ᎠᏂᎦᏴᎵᎨ\t-10.5348\n▁ᏓᏂᎧᏅ\t-10.535\n▁ᏧᎦᏴᎵᎨ\t-10.5352\n▁ᎤᏂᎦᏙᎥᏒ\t-10.5354\nᏘᏰ\t-10.5355\nᎵᏬᏨ\t-10.5355\nᏯᎠ\t-10.5355\nᎤᏍᏆᏂᎩᏗ\t-10.5356\nᏂᎦᏓ\t-10.5356\nᎬᏫᏳᏌᏕᎩ\t-10.5357\n▁ᏚᏁᏤᎸ\t-10.5368\nᎧᎵᏬᎯ\t-10.5368\n▁ᏳᏫ\t-10.537\n▁ᎤᏂᏴ\t-10.5372\n▁ᎤᏂᎩᏒ\t-10.5373\n▁ᎢᏣᏚᎵ\t-10.5375\nᏟᏂᎩᏓ\t-10.5376\n▁ᎠᏁᎮ\t-10.5376\n▁ᎤᏂᏍᏆᏂᎪᏙᏗ\t-10.5387\n▁ᎪᎹᎵ\t-10.5387\n▁ᏚᎷᏫᏍᏔᏁ\t-10.5388\n▁ᏣᎨ\t-10.5389\n▁ᎢᏥᏍᏆᏂᎪᏙᏗ\t-10.5391\n▁ᎢᏳᏅᏁᏗ\t-10.5395\n▁ᎤᎾᏅᏗ\t-10.5396\nᏔᏲᏎᎸᎩ\t-10.5396\nᎴᎯᏌᏅ\t-10.5397\n▁ᎨᏥᏁᏗ\t-10.5397\n▁ᎤᏩᏛᎮ\t-10.5399\n▁ᎤᎾᏅᏅ\t-10.5401\nᏴᏐᎵ\t-10.5406\nᎾᏓᎴᎩ\t-10.5409\n▁ᎡᏉᏄᎶᏗ\t-10.541\n▁ᎤᎭᎸᏂᎯ\t-10.541\n▁ᎤᏂᏚᏯᏍᏗ\t-10.541\n▁ᎤᏓᏏᏂᏕᎾ\t-10.541\n▁ᎤᏪᏲᏓᏛ\t-10.541\n▁ᏅᏓᎬᏴᏁᎵ\t-10.541\n▁ᏈᏯᏏᏆ\t-10.541\n▁ᏕᎨᎦᏨᏍᏗᏍᎬ\t-10.541\n▁ᏗᎾᏙᏂᏍᎩ\t-10.541\n▁ᏦᎩᎸᏫᏍᏓᏁᎯ\t-10.541\nᎦᏌᏯᏍᏕᏍᏗ\t-10.541\n▁ᎢᏰᏆ\t-10.541\n▁ᎦᎵᏦᏙᏙᏗ\t-10.541\n▁ᏆᎻᏆᏂ\t-10.541\n▁ᏚᏩᏂᎦᏢ\t-10.541\n▁ᎠᏣᏪᏐᎸᏍᏙᏗᏱ\t-10.541\n▁ᎯᎧᏅᎭ\t-10.541\n▁ᏧᏣᏲᏍ\t-10.541\n▁ᎯᎦᏙᎵ\t-10.541\n▁ᎠᎵᎮᎵᎨ\t-10.541\n▁ᎤᏓᏛᏛᏁ\t-10.541\n▁ᏧᎦᏃᏮ\t-10.541\n▁ᏂᏚᎾᏓᏪᏎᎸᎩ\t-10.541\n▁ᏫᏂᎦᎵᏍᏙᏓ\t-10.541\n▁ᏗᏉᏰᏂ\t-10.541\n▁ᏗᎾᏓᏂᏱᏍᎩ\t-10.541\n▁ᏗᎦᏃᏣᏟ\t-10.541\n▁ᎾᏂᎳᏍᏓᎸ\t-10.541\n▁ᏧᏙᎢᏓ\t-10.541\n▁ᏗᏆᎳᏏᏕᏂ\t-10.541\n▁ᏄᏬᎯᏳᏒᎾ\t-10.541\n▁ᏅᏓᎪᎯᏥ\t-10.541\n▁ᏅᏃᎱᎶᏗ\t-10.541\n▁ᏅᏩᏙᎯ\t-10.541\nᏍᎦᎣᏅ\t-10.541\n▁ᎤᏬᏞ\t-10.541\n▁ᎤᏪᏚᎲ\t-10.541\n▁ᏧᏩᏂᎦᏝᏅ\t-10.541\n▁ᎦᏣᏄᎸ\t-10.541\n▁ᏕᏥᏲᎵᎸᎭ\t-10.541\n▁ᎬᏩᏕᏁᎸᎯ\t-10.541\n▁ᏌᎶᎵ\t-10.5411\n▁ᎤᏂᎬᎥᏍᎩ\t-10.5411\n▁ᎪᏒᏔᏅ\t-10.5411\n▁ᎤᏂᎸᏉᏔᏁ\t-10.5411\n▁ᏱᏄᎵᏍᏔᏅ\t-10.5411\n▁ᎲᏗᏍᎨᏍᏗ\t-10.5411\nᎥᏍᎨᏍᏗ\t-10.5411\n▁ᎰᏪᎸᎦ\t-10.5411\n▁ᏧᏓᏘᎾᎢ\t-10.5411\n▁ᏗᎧᏁᎢᏍᏗ\t-10.5411\n▁ᎪᏢᏗ\t-10.5411\n▁ᎤᎾᏓᏑᏰᏛ\t-10.5411\n▁ᎥᎩᏅᏟ\t-10.5411\n▁ᎢᏨᏍᏗᏰᏗᎭ\t-10.5411\n▁ᎦᏯᎴᏍᏗ\t-10.5412\n▁ᎢᎬᏪᏅᏛ\t-10.5412\n▁ᎠᏓᏍᏓᏴᏗ\t-10.5412\n▁ᏕᎪᏢᏩᏗᏒ\t-10.5412\n▁ᏧᏃᏩ\t-10.5412\n▁ᏅᏓᏳᏓᎴᏅᏛ\t-10.5412\n▁ᏂᏚᏅᏏᏴ\t-10.5413\n▁ᏗᎩᏅᏒ\t-10.5413\n▁ᏄᏂᎲᎾ\t-10.5413\n▁ᏗᏁᏙᎲ\t-10.5413\n▁ᎠᏂᎾᏁᏍᎬ\t-10.5413\n▁ᏄᏠᎾᏍᏛᎾ\t-10.5413\n▁ᎤᏢᏉᏗ\t-10.5413\n▁ᏌᏈ\t-10.5414\n▁ᏚᎦᏌᏛ\t-10.5414\n▁ᎠᏆᎵᏍᏓᏴᏗ\t-10.5414\n▁ᎠᏓᏠᏍᏗ\t-10.5414\n▁ᎠᎹᏳᎶᏗ\t-10.5415\n▁ᎢᏥᏪᏍᏗᏱ\t-10.5415\nᏃᎴ\t-10.5415\n▁ᎤᏂᏑᎸᏓ\t-10.5415\n▁ᎡᏣᎸᏉᏗᏳ\t-10.5415\n▁ᎢᎠ\t-10.5415\n▁ᎬᏩᏓᏍᏕᎸᏗ\t-10.5415\n▁ᏫᎨᏥᏲᎵᎭ\t-10.5415\n▁ᎠᏂᏙᎾᎢ\t-10.5416\n▁ᏙᏗᏣᏓᏅᏛᎢ\t-10.5416\n▁ᎠᏁᏢᏔᏅᎯ\t-10.5416\nᏅᎪᏤ\t-10.5416\n▁ᎬᏁᏍᏗ\t-10.5416\n▁ᏓᎭᏃᏫ\t-10.5416\n▁ᏚᏦᎯᏍᏛ\t-10.5417\n▁ᎤᏘᏴᎯ\t-10.5417\n▁ᎠᎾᏓᏙᎵᏍᏓᏁᎯ\t-10.5417\n▁ᎡᏃᏱ\t-10.5417\nᎿᏕᎩ\t-10.5417\n▁ᎠᏯᏖᎾ\t-10.5418\n▁ᏧᏙᏓᏆᏛ\t-10.5418\n▁ᎠᎬᎭᎸᏛ\t-10.5418\n▁ᎠᏆᏓᎵᎢ\t-10.5418\n▁ᎠᏓᏪᎳᎩᏍᎬ\t-10.5418\n▁ᎢᎧᏁᎢᏍᏗ\t-10.5419\n▁ᎯᏬᏂᏍᎬ\t-10.5419\n▁ᏫᎦᎶᎯᏍᏗ\t-10.5419\n▁ᎤᏃᏍᏛ\t-10.5419\n▁ᎦᏆᏘ\t-10.5419\n▁ᎤᎶᎯᏍᏗ\t-10.5419\n▁ᎤᏍᏗᎩᏛ\t-10.5419\n▁ᎤᏂᎵᏦᏩᏛ\t-10.5419\n▁ᎤᎩᎵᏲᏨ\t-10.5419\n▁ᏥᏅᏗᎦᎵᏍᏙᏗᎭ\t-10.542\n▁ᏓᎬᏁᎵ\t-10.542\n▁ᏱᏍᎦᎢᎮᏍᏗ\t-10.542\n▁ᎤᎾᏛᏁᎸᏗ\t-10.542\n▁ᎤᏂᏍᏆᏂᎪᏒᎩ\t-10.542\nᎦᏃᎱᎩᏍᎬ\t-10.5421\n▁ᎤᏰᎸᏎ\t-10.5423\n▁ᏗᏓᏬᏍᏗ\t-10.5423\n▁ᎬᏩᏃᏁᎴ\t-10.5424\n▁ᎠᎪᏎᎮᏍᏗ\t-10.5424\n▁ᎦᎵᎡᎵᎦ\t-10.5424\n▁ᎹᎾ\t-10.5424\nᎳᎩᏒ\t-10.5425\n▁ᎢᎪᎯ\t-10.5425\n▁ᎠᏂᏯᎢ\t-10.5426\n▁ᏕᎬᏗᏍᎬ\t-10.5427\n▁ᎤᏛᏅᎢᏍᏔᏁ\t-10.5427\n▁ᎢᏥᏁᏍᏗ\t-10.5427\n▁ᎮᏂᎵ\t-10.5429\n▁ᎠᏓᏰᎨᏍᏗ\t-10.543\n▁ᎠᏴᏤᏂ\t-10.543\n▁ᎠᎪᏔᏅᎯ\t-10.543\n▁ᎤᏃᎯᏳᏗᏱ\t-10.543\n▁ᎠᎦᎸᏓ\t-10.5431\n▁ᎠᏥᏅᏏᏛ\t-10.5431\n▁ᏳᏚᎵ\t-10.5431\n▁ᏧᎾᏄᎪᏫᏒᎯ\t-10.5432\n▁ᎩᎾᎵᎢ\t-10.5433\n▁ᎭᏂᏣ\t-10.5433\n▁ᏕᎧᏁᏤ\t-10.5434\n▁ᏮᏛ\t-10.5435\n▁ᎠᏂᎯᏗ\t-10.5437\n▁ᎤᎾᎦᏙᏍᏕᎢ\t-10.5438\n▁ᏯᏗᎭ\t-10.5438\n▁ᎧᏃᎩᏍᏗ\t-10.5439\nᎲᏍᎬᎾ\t-10.544\n▁ᏄᎾᎵᏍᏓᏁᎸ\t-10.544\n▁ᎤᎾᏕᏗᏱ\t-10.544\n▁ᎠᏲᏙᏗ\t-10.5441\n▁ᏗᎵᏍᎪᎸᏓᏁᎸᎯ\t-10.5442\n▁ᎠᏥᎳ\t-10.5443\n▁ᎤᏂᏩᏛᎮ\t-10.5443\n▁ᎠᏇᏅᏍᏗ\t-10.5444\n▁ᏥᏍᎪᎵ\t-10.5448\nᏰᎢᎵᏓᏍᏗ\t-10.5448\nᏓᏅᏖᏗ\t-10.5448\n▁ᏕᏥᏁᎸ\t-10.545\n▁ᎤᏂᎩᏍᏗᏱ\t-10.5452\n▁ᎤᏂᏁᎬ\t-10.5452\n▁ᏬᎩᎷᏨᎩ\t-10.5455\n▁ᎤᏗᏗᏢ\t-10.5456\n▁ᎤᏡᏗᏍᎩ\t-10.5456\n▁ᏙᏥ\t-10.5457\n▁ᎠᎬᏗᏍᎬᎢ\t-10.5458\n▁ᎡᎮᎾ\t-10.5459\n▁ᎧᏫ\t-10.546\n▁ᎠᎴᏂᏍᎩ\t-10.5462\n▁ᎠᏓᎴᏂᏍᎬ\t-10.5462\nᏓᏁᎮ\t-10.5463\n▁ᎠᏂᎩᏍᎬ\t-10.5463\nᏲᎾ\t-10.5464\nᎤᏲ\t-10.5465\n▁ᏧᏁᏤᎢ\t-10.5465\n▁ᎤᏪᏅᎩ\t-10.5465\n▁ᏗᏥᎾᏫᏱ\t-10.5465\nᏓᏴᎳᏛ\t-10.5465\n▁ᎦᏟᎮ\t-10.5465\n▁ᎠᎪᎵᏰᏗ\t-10.5466\nᏛᏁᎲ\t-10.5468\n▁Ꮺ\t-10.5474\n▁ᎤᏰᎸᎭ\t-10.5474\nᏯᏔᎮᏍᏗ\t-10.5476\n▁ᏗᎧᏂᎨ\t-10.5476\n▁ᏓᏍᏛᎢ\t-10.5477\n▁ᎤᏌᎯᎸᎢ\t-10.5477\n▁ᏗᏁᎯ\t-10.548\n▁ᏕᏣᎧ\t-10.548\n▁ᏎᏉ\t-10.5481\n▁ᏄᏛᏅᎢ\t-10.5481\nᏍᏛᎢ\t-10.5482\n▁ᎠᏥᏛᏙᏗ\t-10.5482\n▁ᎾᏆᏍᏛ\t-10.5483\n▁ᏓᏆᎧᎾᏅ\t-10.5486\n▁ᎠᏯᎥ\t-10.549\nᏯᏅ\t-10.549\n▁ᎢᎩᏍᎦᏅᏨᎢ\t-10.549\n▁ᎤᏂᏁᏨᎩ\t-10.5495\n▁ᎤᎾᏓᏅᏎ\t-10.5495\n▁ᎦᏓᏍᎬᎢ\t-10.5496\n▁ᎮᏓ\t-10.5497\n▁ᎤᎴᏅᎩ\t-10.5506\n▁ᏓᏤᎸ\t-10.5514\n▁ᏙᏯ\t-10.5517\n▁ᎦᏁᏟᏴᏍᏗ\t-10.5525\n▁ᏚᏩᏛᎮ\t-10.5531\n▁ᎦᏄᎸᏒ\t-10.5532\n▁ᏗᎪᏢ\t-10.5534\n▁ᏅᎵᏌᎵᏉ\t-10.5536\n▁ᎤᏂᎩᏎᎢ\t-10.5541\nᏂᏍᏙᏗ\t-10.5541\n▁ᎣᏒ\t-10.555\n▁ᎬᎨᏳᎢ\t-10.5559\n▁ᎤᏂᎪᎲᎯ\t-10.5562\n▁ᏏᎳ\t-10.5563\n▁ᏣᏚᎵᏍᎬ\t-10.5566\nᎠᏆ\t-10.5566\nᏐᏉ\t-10.557\n▁ᏮᏓ\t-10.557\n▁ᎤᏩᏔᏅ\t-10.5575\nᏃᎮᎸ\t-10.5576\nᏕᏯᏙᏔᏅᎩ\t-10.5576\nᎥᏏ\t-10.5583\n▁ᎠᏍᏘ\t-10.5584\n▁ᎤᏍᏉᏟ\t-10.5585\n▁ᎦᎬᏩ\t-10.5587\n▁ᏗᎦᏅ\t-10.5587\n▁ᎤᏁᎳ\t-10.5592\nᏥᎶᏏ\t-10.5593\nᏔᏂᏓ\t-10.5595\n▁ᎦᏅᏅᎢ\t-10.5597\n▁ᎪᏪᎸᎩ\t-10.5598\n▁ᎠᎵᏍᏆᏗᏍ\t-10.5603\n▁ᎤᏁᏒ\t-10.5608\n▁ᎤᎦᏃ\t-10.561\n▁ᏓᎶᏂᎨᎢ\t-10.562\n▁ᏨᏗ\t-10.5621\n▁ᏄᏓᎴᎯ\t-10.5644\n▁ᎡᏍᎦᏂ\t-10.5646\n▁ᎤᏬᎸᎢ\t-10.565\nᎧᏏ\t-10.5657\n▁ᎠᎦᏙ\t-10.5663\n▁ᎠᏂᏲ\t-10.5664\nᎪᎲ\t-10.5665\nᏙᎳ\t-10.5669\n▁ᎤᏭ\t-10.568\nᏦᏩᏛ\t-10.5688\n▁ᎠᏂᏍᎦᎾᎢ\t-10.5699\nᎸᏉᏛᎾ\t-10.5699\n▁ᏄᏍᏕᎢ\t-10.5701\nᎯᏳᎲᏍᎦ\t-10.5705\n▁ᎮᎯ\t-10.5709\nᎡᎵᏍᏗ\t-10.571\n▁ᏅᏗ\t-10.5711\n▁ᎠᏓᏙᎵᏍᏙᏗ\t-10.5711\n▁ᎤᎦᏛ\t-10.5715\n▁ᎤᏁᏤᎸᎢ\t-10.5716\n▁ᏄᎵᏍᏔᏂᏙᎸᎢ\t-10.572\nᎯᏯ\t-10.5722\nᎬᎾᎨ\t-10.5737\n▁ᏲᏥ\t-10.5737\nᏍᎦᏃᎳ\t-10.5737\n▁ᎥᏣ\t-10.5739\n▁ᏅᏩᏍᏛ\t-10.5742\n▁ᏚᏬ\t-10.5753\n▁ᎤᎾᏛᎦᏅᎩ\t-10.5753\nᎩᏍᏗᏱ\t-10.5754\nᎧᏅ\t-10.5754\nᎵᎹ\t-10.5757\n▁ᎲᎦ\t-10.5761\n▁ᎵᏏ\t-10.5762\n▁ᏕᏅ\t-10.5764\nᏍᏙᏗᏱ\t-10.5764\n▁ᎧᎵ\t-10.5779\n▁ᎢᏥᎩ\t-10.5785\n▁ᏱᎾ\t-10.5786\nᎾᏉ\t-10.5789\nss\t-10.579\n▁ᎤᏍᎪ\t-10.5792\nᏦᏰᏂ\t-10.5811\n▁ᎤᏩᏁ\t-10.5817\nᏯᏅᎲᎩ\t-10.5834\n▁ᎯᏁᎸ\t-10.5836\ns\t-10.5838\nᏞ\t-10.5846\n▁ᎢᏣᏟᏂᎬᏁ\t-10.5855\n▁ᎠᏂᏔᎵᎭ\t-10.5859\n▁ᏥᎪᎥ\t-10.5881\nᏙᎵᏨ\t-10.5891\n▁ᎬᏩᏍᏓᏩᏗ\t-10.5905\n▁ᏣᏛ\t-10.5906\n▁ᎤᎵᏍᏚᎢ\t-10.5909\n▁ᎾᏕᏘᏴ\t-10.5915\n▁ᎤᏗᏔᏍᏗ\t-10.5916\nᎴᏃ\t-10.5922\n▁ᏗᎲ\t-10.5923\nᏬᏂᏍᎬ\t-10.5931\nᏓᏅᏖᎴ\t-10.5938\n▁ᏙᏉ\t-10.5941\nᏥᏃᎮᏍᎩ\t-10.5944\nᏰᎸᎭ\t-10.5945\nᏫᏒ\t-10.5946\n▁ᎤᏂᎷᏤᎸ\t-10.5957\n▁ᏱᏕ\t-10.5965\nᏘᏃᎮᎸᎩ\t-10.5991\n▁ᏓᏲ\t-10.5993\nᏦᏢᏙᏗ\t-10.6004\n▁ᎠᏌ\t-10.6014\nᏰᎸᎲ\t-10.6016\n▁ᎠᎩᏰᎸᏅ\t-10.6018\n▁ᎨᎩ\t-10.6024\nᏰᎸᏗ\t-10.6034\nᏍᏚᎢᏒ\t-10.6038\nᎶᏏ\t-10.6058\n▁ᏑᎾᎴᏉ\t-10.6077\nᏏᎾᏌᏂ\t-10.6078\nᏴᎵ\t-10.6079\n▁ᎢᏣᎵᎮᎵ\t-10.6089\n▁ᏥᏁ\t-10.6105\nᏣᎵᏍᏙ\t-10.6106\n▁ᎤᏪᏅᏎᏃ\t-10.6114\n▁ᏍᎦ\t-10.6116\n▁ᏗᎫ\t-10.6127\n▁ᎤᏁᏅ\t-10.614\nᎦᏘᏴ\t-10.6156\n▁ᎬᏩᎪᏩᏛ\t-10.6156\n▁ᎠᏁᎶᎯ\t-10.616\n▁ᏧᏄᏬ\t-10.6167\n▁ᏚᏃ\t-10.6168\n▁ᎬᎾ\t-10.6168\nᏍᏔᏅᎭ\t-10.617\nᎯᏓ\t-10.6173\n▁ᏕᎦᏅ\t-10.6178\n▁ᎠᎦᏔᎮ\t-10.618\n▁ᎦᏂᏏ\t-10.618\nᎷᏤᎸ\t-10.6206\nᏁᏎᎢ\t-10.6206\n▁ᏱᏂᎬ\t-10.6214\n▁ᏚᏂᏲ\t-10.6221\n▁ᏗᎩᎦ\t-10.6236\nᏕᎬ\t-10.6251\nᎾᏄᎪᏩ\t-10.6259\n▁ᎤᎦ\t-10.6262\nᏁᎸᎭ\t-10.6262\nᎳᏕ\t-10.6265\nᏛᏁᎵ\t-10.6266\nᏍᏖ\t-10.6269\n▁ᏓᏂᎸ\t-10.6314\n▁ᎤᏂᎶᏒ\t-10.6322\nᏏᎳ\t-10.6329\nᎤᏍᏗ\t-10.6329\n▁ᏗᎩᏲᎯ\t-10.6335\nᏭ\t-10.6349\nᏣᎵ\t-10.6354\nᏦ\t-10.6357\n▁ᎯᏍᎩᎦᏚ\t-10.6369\nᏣᏅᎩ\t-10.6378\nᏙᎬ\t-10.6379\n▁ᏱᏍᎩ\t-10.6392\n▁ᎤᏰ\t-10.6394\nᏅᏓᏗᏍᏗ\t-10.6401\nᏛᏔᏂ\t-10.6419\n▁ᎤᏍᏆᏂᎪᏙᏗ\t-10.6432\n▁ᎤᏩᏒᏍᎩᏂ\t-10.6438\n▁ᎠᏓᏅ\t-10.644\n▁ᏫᏨᏲᏪᎳ\t-10.6448\n▁ᎾᏓ\t-10.6457\n▁ᏄᏬ\t-10.6462\n▁ᏥᎦᏔᎲ\t-10.6463\n▁ᏂᏨ\t-10.6467\nᏲᏍᏔᏂ\t-10.6473\n▁ᏓᎨᏣ\t-10.6477\nᏋ\t-10.6479\nᏢᎢ\t-10.6479\n▁ᎤᎾᏕ\t-10.6484\nᎾᏄᎪᏫᏎᎸ\t-10.6494\n▁ᏂᎦᎥᎩ\t-10.6495\n▁ᏚᏂᎧᎵ\t-10.6507\nᎢᏍᏙᏗ\t-10.6521\nᏩᏛ\t-10.6535\nᏩᏒ\t-10.6543\n▁Ꮝ\t-10.6547\n▁ᏈᎵ\t-10.6552\n▁ᎢᏍᏓ\t-10.6554\nᏠᏍᏗ\t-10.6555\nᎵᏙᎴ\t-10.6564\nᎯᎯ\t-10.6584\n▁ᏕᏨ\t-10.6584\n▁ᏥᏚᏂ\t-10.6592\nᏥᎪᏩᏛᏗᏱ\t-10.6593\nᏆᏏ\t-10.6596\nᏘᏃᎸ\t-10.6597\nᏇᏅ\t-10.66\nᏍᏓᏱ\t-10.6606\nᏴᏗ\t-10.6606\n▁ᎤᎭ\t-10.6612\nᎸᏛ\t-10.663\n▁ᎤᎾᎩᎸ\t-10.6632\nᏁᏨ\t-10.6635\nᏨᏗ\t-10.666\n▁ᎤᏍᏗᏉ\t-10.6668\nᏍᏗᏍᎩ\t-10.6679\nᎪᏛ\t-10.6679\n▁ᎬᏩᏓ\t-10.6689\nᎴᎣ\t-10.6693\n▁ᎤᏃᎮᎸ\t-10.6701\n▁ᎢᏥᏠ\t-10.6706\nᏍᏚ\t-10.6718\n▁ᎤᎵᎮᎵᏨ\t-10.6726\nᏬᎥ\t-10.6734\n▁ᏂᏣᏛᏁᎲ\t-10.6735\nd\t-10.674\n▁ᎤᏂᏙ\t-10.6741\n▁ᏚᎾᏄᎪᏫᏎᎴ\t-10.6745\n▁ᎦᎦᎶ\t-10.6749\n▁ᏓᏂᏙᎨ\t-10.6751\nᏧᏍᏆᏴᏍᏗ\t-10.6751\n▁ᏙᏓᏆᏍᎬ\t-10.6751\nᏗᎦᎵᎠᏅᎯᏛ\t-10.6754\n▁ᏤᎲ\t-10.6755\n▁ᏕᎦᎶᎨᏒ\t-10.6755\nᏑᎾᎴ\t-10.6757\n▁ᎤᏦᏱᎴ\t-10.676\n▁ᏭᏂᎶᏎ\t-10.6763\n▁ᎤᏌᎯᎸ\t-10.6765\n▁ᏕᏣᏓᏅᏛ\t-10.6765\n▁ᎧᏁᏌ\t-10.6767\n▁ᎠᏍᏆᎵᏍᎬ\t-10.6768\n▁ᎤᏓᏑᏴ\t-10.6769\n▁ᎤᎾᏄᎪᏫᏎᎴ\t-10.677\n▁ᏗᏧ\t-10.677\nᏍᏆᏂᎪᏔᏂ\t-10.6771\n▁ᏙᏓᎬ\t-10.6772\nᎢᎦ\t-10.6772\n▁ᏄᎾᏛᏁᎴ\t-10.6773\nᎤᏙᎯᏳᎯ\t-10.6774\nᎳᏁ\t-10.6774\n▁ᎠᏂᏍᎦᎢᎲ\t-10.6776\nᏔᏲᏍᏗ\t-10.6778\n▁ᎤᏂᏴᎮ\t-10.6779\n▁ᏂᎨᏎ\t-10.678\n▁ᎤᏪᏴ\t-10.678\n▁ᏧᎵᏏ\t-10.678\nᏠᏨ\t-10.678\nᏓᎴᏂᏍᎬ\t-10.6781\nᏍᏈᏯ\t-10.6782\n▁ᎠᎫ\t-10.6786\n▁ᏬᎩᎷᏨ\t-10.6786\n▁ᏂᎦᏅᎯᏒ\t-10.6788\nᎦᎸ\t-10.6789\n▁ᎦᎢᏒ\t-10.6793\n▁ᎡᎵᏍᎬ\t-10.6795\nᎬᏁᎵ\t-10.6795\n▁ᎾᏯᏛᎥ\t-10.6795\n▁ᏕᎦᎧᎲ\t-10.6801\nᏓᏂᎸᎢᏍᏗ\t-10.6802\n▁ᎤᏁᏝᏅ\t-10.6804\nᏰᎸ\t-10.6805\n▁ᏓᎩᎸᏫᏍᏓᏁᎲ\t-10.6806\n▁ᏚᏩᏂᎦᎸ\t-10.6807\n▁ᎤᏁᎢᏍᏔᏅ\t-10.6809\nᎸᏫᏍᏓᏁᏗ\t-10.681\nᎵᏍᏓᏴᏙᏗ\t-10.6811\n▁ᏧᏭᎪᏙᏗ\t-10.6812\n▁ᎤᎾᏂᎩᏒ\t-10.6816\nᎦᎵᎷᎨᏍᏗ\t-10.682\n▁ᎥᏞ\t-10.6823\n▁ᏂᎦᏛᏁᎲ\t-10.6823\n▁ᎪᎵᏍᏗ\t-10.683\nᎦᏘᏕᎯ\t-10.6832\n▁ᏧᏂᎸᏫᏍᏓᏁᏗ\t-10.6834\n▁ᎠᏩᎾᎦᎳ\t-10.6837\n▁ᏥᎦᏘᏏ\t-10.6838\n▁ᎠᎵᏏᎾᎯᏍᏔᏅᎯ\t-10.6838\n▁ᎠᏂᏰᎪᎩ\t-10.6838\n▁ᎠᏲᏓᏌᎲ\t-10.6838\n▁ᎤᎾᏗᏍᎦᏟ\t-10.6838\n▁ᎤᏩᎭᏂᎴ\t-10.6838\n▁ᏂᎩᏪᏎᎸᎭ\t-10.6838\n▁ᏅᏧᏓᎴᏅᎲᎾ\t-10.6838\n▁ᏗᏦᏪᎵᏍᎩ\t-10.6838\n▁ᎠᏐᎥᏍᏙᏗ\t-10.6838\n▁ᏅᏛᏆᏓᎴᏅᎯ\t-10.6838\n▁ᏏᎵᏆ\t-10.6838\n▁ᏣᏓᏲᏁᎸᎩ\t-10.6838\n▁ᎠᎾᏓᏍᎦᎶᎩ\t-10.6838\n▁ᎦᏅᏃᏩ\t-10.6838\n▁ᏅᏥᏪᏎᎸᎩ\t-10.6838\n▁ᎤᏚᏓᎴᏛ\t-10.6838\n▁ᎠᏓᏪᎯ\t-10.6838\n▁ᏄᎾᏓᎡᏍᏗ\t-10.6838\n▁ᏦᏑᏫ\t-10.6838\n▁ᎤᏪᏐᏅᏴ\t-10.6838\n▁ᎤᏛᎴᎮ\t-10.6838\n▁ᎤᎿᎷᏒᎩ\t-10.6838\n▁ᎢᏣᏛᏓᏍᏓ\t-10.6838\n▁ᎢᎳᎩᏳ\t-10.6839\nᏲᎦ\t-10.6839\n▁ᎠᎪᏕᏍᎩ\t-10.6839\n▁ᏧᏁᎿᎢ\t-10.6839\n▁ᎠᏍᎩᏓᏍᎬ\t-10.6839\n▁ᏤᏆᎳᏂ\t-10.6839\n▁ᏧᏁᎵᏁ\t-10.6839\n▁ᎨᎴᏏᏱ\t-10.6839\n▁ᎤᎵᏏᏂᏕᏅ\t-10.6839\n▁ᎤᎵᏲᏗ\t-10.6839\n▁ᎢᎪᏪᎳ\t-10.6839\n▁ᏕᏥᏃᎩᏍᎨᏍᏗ\t-10.6839\n▁ᎾᎨᎢᏴ\t-10.6839\n▁ᎠᎾᏓᏍᏓᏩᏗᏙᎯ\t-10.6839\n▁ᎤᏂᎩᎵᏲᎢᏍᏗ\t-10.6839\n▁ᏓᏲᏤᏏ\t-10.6839\n▁ᏔᏘᏄᎦ\t-10.6839\n▁ᎠᎾᎵᏍᏕᎵᏍᎩ\t-10.6839\n▁ᏱᏂᎬᏁᎭ\t-10.6839\n▁ᎠᏓᏅᏖᏍᎪ\t-10.6839\n▁ᏂᎩᏪᏏ\t-10.6839\n▁ᏚᎨᏓᎵᏴ\t-10.6839\n▁ᎠᎾᏓᏤᎵ\t-10.6839\n▁ᎠᏦᎳᏅ\t-10.6839\n▁ᏕᏥᎧᎿᏩᏗᏙᎮᏍᏗ\t-10.6839\n▁ᏚᏍᏓᎦᎸ\t-10.684\n▁ᏱᏤᎵᎯᏍᎨᏍᏗ\t-10.684\n▁ᏗᎦᎶᏔᏅ\t-10.684\n▁ᏚᎭᏄᏮ\t-10.684\n▁ᏗᎧᏃᎩᏍᏙᏗ\t-10.684\n▁ᏧᎾᎬᏩᎶᏗ\t-10.684\n▁ᎤᏭᏢᏔᏅᎩ\t-10.684\nᏘᏯᏍᏓᏁ\t-10.684\n▁ᏗᎾᎢᏒ\t-10.684\n▁ᏕᎪᏪᎴᏍᏗ\t-10.684\n▁ᎤᏁᏉᏨ\t-10.684\n▁ᏫᏗᎶᎯ\t-10.684\n▁ᏓᎦᏛᏁᎵ\t-10.684\n▁ᏄᏪᎲᎾ\t-10.684\n▁ᎢᏦᎯᏳᏗᏱ\t-10.684\n▁ᎤᏛᎦᏍᏕ\t-10.684\n▁ᏓᏱᎾ\t-10.684\n▁ᎮᎵᎠ\t-10.6841\n▁ᎠᏓᏲᏁᎮᏍᏗ\t-10.6841\n▁ᎡᏥᏅᏏᏓᏍᏗ\t-10.6841\n▁ᎢᎬᏛᏁᏗ\t-10.6842\n▁ᎣᎦᏚᎵᎭ\t-10.6842\n▁ᏥᏚᏳᎪᏗ\t-10.6842\n▁ᏧᏂᎶᎸᏗ\t-10.6842\n▁ᎨᏥᏍᏕᎸᏗ\t-10.6842\n▁ᎠᎫᏩᏌ\t-10.6842\n▁ᎦᏂᎩᎸ\t-10.6842\n▁ᎢᏯᏥᎸᏉᏗ\t-10.6842\n▁ᎤᎬᎥᏍᎩ\t-10.6842\n▁ᏰᏙᎭ\t-10.6842\n▁ᎠᏂᎪᎲᎭ\t-10.6842\n▁ᎠᏰᏟ\t-10.6843\n▁ᎿᏛᎦ\t-10.6843\n▁ᎬᏬᎯᏳᏅᎩ\t-10.6843\n▁ᏧᏂᏁᏟᏴᏍᏗ\t-10.6843\n▁ᏣᎦᏨᏍ\t-10.6843\n▁ᎤᎴᏴᏒ\t-10.6843\n▁ᎠᏍᏕᏯᏓ\t-10.6844\n▁ᎢᏳᏪᏎᎸᎯ\t-10.6844\n▁ᎲᏓ\t-10.6844\n▁ᏓᎭᏏ\t-10.6844\n▁ᏍᎩᏍᏓᏩᏚᎦ\t-10.6844\n▁ᎤᏂᎪᏩᏛᏗᏱ\t-10.6844\n▁ᎯᎸᏉᏓ\t-10.6844\n▁ᏣᏙᎳᏅᏍᏗ\t-10.6844\n▁ᎤᏕᎶᎰᏒ\t-10.6844\n▁ᎭᏓᏅᎾ\t-10.6845\n▁ᏗᎫᎪᏗᏍᎩ\t-10.6845\n▁ᎤᎶᏗᏢ\t-10.6845\n▁ᏂᏴᏁᎸ\t-10.6845\n▁ᏂᏣᏛᎿᏕᎬᎢ\t-10.6845\n▁ᏗᎪᏢᏅᎯ\t-10.6845\n▁ᏑᏓᎵᏍᎪᎯ\t-10.6846\n▁ᎢᎩᏁᎸ\t-10.6846\n▁ᎠᏍᎩᏗᏍᎨᎢ\t-10.6846\n▁ᎢᏣᏚᎵᏍᎨᏍᏗ\t-10.6846\n▁ᏚᏯᏪᎨ\t-10.6846\n▁ᎢᏥᏯᎡᏍᏗ\t-10.6846\n▁ᏍᏈᏍᏔ\t-10.6846\n▁ᏗᏣᎧᏅᎦ\t-10.6846\n▁ᏫᏥᎷᏨᎭ\t-10.6847\n▁ᎢᏣᎵᎮᎵᎨᏍᏗ\t-10.6847\n▁ᎨᏥᏅᏒᎯ\t-10.6847\n▁ᏥᏣᏛᎩᎭ\t-10.6847\n▁ᏗᎩᎸᏫᏍᏓᏁᏗᏱ\t-10.6847\n▁ᏇᏗᏂᏱ\t-10.6848\n▁ᎶᎻ\t-10.6848\n▁ᎡᏥᏯᏅᏛ\t-10.6848\n▁ᎠᏠᏗᏱ\t-10.6848\n▁ᎤᏍᏆ\t-10.6848\n▁ᏎᏘ\t-10.6848\n▁ᏧᎳᏍᎩ\t-10.6849\n▁ᎤᎾᏛᏅᎩ\t-10.6849\n▁ᏧᎷᏫᏍᏔᏁᏗ\t-10.6849\n▁ᎠᏂᎦᏲᏟ\t-10.6849\n▁ᏗᏣᏓᎴᏅᏛ\t-10.6849\n▁ᏈᎵᏏ\t-10.685\n▁ᏍᎪᏁ\t-10.6851\n▁ᎠᎩᎵᎨᏂ\t-10.6851\n▁ᎤᏁᎯ\t-10.6851\n▁ᎠᏂᏴᎩ\t-10.6851\n▁ᎤᎾᏓᏙᎵᏍᏓᏁᎸᎩ\t-10.6851\n▁ᎦᏃᏙᏗᏱ\t-10.6853\n▁ᎪᎯᎢᏴ\t-10.6854\n▁ᎢᎦᎵᏍᏙᏗᏱ\t-10.6854\n▁ᏚᏃᎸ\t-10.6855\n▁ᎢᏨᏃᎮᎮᎸ\t-10.6855\n▁ᏂᏨᎦ\t-10.6856\n▁ᎢᎦᎦᏓ\t-10.6858\n▁ᎪᎰᏍ\t-10.6858\n▁ᎤᏓᏙᎵᏣᏛ\t-10.6859\n▁ᎠᏨᏍᏛ\t-10.6859\n▁ᎹᎦ\t-10.6859\n▁ᏓᎾᏕᏲᎲᏍᎬ\t-10.686\n▁ᏄᏩᏁᎰ\t-10.686\n▁ᎤᎦᏔᏔᏅᎯ\t-10.6861\n▁ᎤᏃᎯᏳᏅᎯ\t-10.6863\n▁ᎠᏓᏁᏣᏍᏚᎶᎩᎯ\t-10.6863\nᎡᎸ\t-10.6864\n▁ᎠᏍᎫᏕᏍᏗᏱ\t-10.6865\n▁ᎤᏰᏨ\t-10.6865\n▁ᏯᏂᎦᏔᎮ\t-10.6866\n▁ᏥᏁᎦ\t-10.6867\n▁ᎤᏛᏒᎯ\t-10.6867\n▁ᎢᏍᏕᎾ\t-10.6867\n▁ᏗᏘᏲᎯ\t-10.6867\n▁ᏃᎩᏪᏎᎸ\t-10.6869\n▁ᎠᎦᏔᎯᏳ\t-10.6869\n▁ᎤᏓᏴᏎᎢ\t-10.6869\n▁ᏧᏓᎴ\t-10.6869\n▁ᏥᏙᎦ\t-10.687\n▁ᎬᏩᏛᏗ\t-10.6871\n▁ᎤᏪᎧᏁᎢ\t-10.6871\n▁ᎤᎾᏕᏗ\t-10.6872\n▁ᏥᎪᏩᏘᏍᎬ\t-10.6873\n▁ᎤᏁᏉᏨᎯ\t-10.6873\n▁ᏓᎧᏅ\t-10.6873\n▁ᎩᎳᎯᏳ\t-10.6873\n▁ᎤᎾᏄᎪᎢᏍᏗ\t-10.6873\n▁ᎤᏂᎾᏫ\t-10.6875\n▁ᏇᎵᎩ\t-10.6875\n▁ᎪᏪᎴ\t-10.6875\n▁ᎤᏃᎯᏳᏅᎩ\t-10.6875\n▁ᏓᏨᏁᎵ\t-10.6876\n▁ᎡᎦ\t-10.6878\n▁ᎤᎪᏩᏛᏗᏱ\t-10.6878\n▁ᎨᎵᏍᎩ\t-10.6879\n▁ᏗᎦᏥ\t-10.6879\n▁ᏥᏯᎵᎡᎵᏤ\t-10.6879\nᏁᏉᏥ\t-10.688\n▁ᎡᏓᏍᏗ\t-10.6881\n▁ᎤᎾᏛᎪᏗᏱ\t-10.6881\n▁ᎤᏪᏍᎩᎸᎢ\t-10.6881\n▁ᏫᏥᎦᏛᎢ\t-10.6881\n▁ᏧᏓᎵᎢ\t-10.6882\n▁ᎤᎩᏒᎩ\t-10.6882\n▁ᎠᏂᏃᎮᎭ\t-10.6883\n▁ᏂᏚᏩᏁᎴᎢ\t-10.6883\n▁ᎤᏍᏆᏂᎪᏛ\t-10.6883\n▁ᎻᎳ\t-10.689\n▁ᎢᎦᎵᎢ\t-10.689\n▁ᎾᏯᏛᎥᎩ\t-10.6891\n▁ᎤᏓᏙᎵᏍᏔᏁᎢ\t-10.6892\n▁ᏗᎾᏓᎪᎾᏗᏍᎬᎢ\t-10.6893\n▁ᎠᎾᏓᎪᎾᏗᏍᎬᎢ\t-10.6893\nᏍᎦᏎᏗ\t-10.6893\n▁ᎤᎾᏂᎩᏒᎩ\t-10.6894\n▁ᎦᏓᏙᎵᏍᏗᏍᎬᎢ\t-10.6894\n▁ᎢᎪ\t-10.6895\n▁ᎢᏳᏒᎯ\t-10.6896\n▁ᎠᎦᏍᎩ\t-10.6898\nᏅᏬᏗᏱ\t-10.6901\n▁ᏥᏰᎸᎢ\t-10.6902\n▁ᎤᏬᏢᏅ\t-10.6902\n▁ᎣᎵᏩᏲ\t-10.6905\nᏓᏛᏍᎩ\t-10.6906\n▁ᎤᏇᏓᎵᏉ\t-10.6906\n▁ᎤᎾᏂᎩᏎᎢ\t-10.6907\n▁ᎤᎾᏓᏅᏖᎴ\t-10.6907\n▁ᎤᏩᏔᏅᎩ\t-10.6907\nᏂᏓᏍᏗ\t-10.6907\n▁ᎤᏂᏣᏖᏍᏗ\t-10.6908\n▁ᎠᏆᏣ\t-10.6909\n▁ᎤᎩᏎᎢ\t-10.6914\n▁ᏚᏩᏂᎦᎸᎢ\t-10.6917\n▁ᎤᏦᏱᎴᎢ\t-10.6917\n▁ᎤᎵᏍᏆᏛ\t-10.6918\n▁ᎠᎢᏒᎩ\t-10.6921\n▁ᎤᎾᏓᏅᏖᎸ\t-10.6922\n▁ᎦᏯᎸ\t-10.6923\nᏓᏂᎸᎩ\t-10.6924\n▁ᏥᏄᏍᏕ\t-10.6925\n▁ᏣᏗᎭ\t-10.6931\n▁ᎤᏍᎪᏒ\t-10.6932\n▁ᎤᏗᏛᎮᎢ\t-10.6933\n▁ᎢᏣᏓᏅᏖᏍᎬ\t-10.6936\n▁ᎤᏲᎢᏴ\t-10.6938\nᏰᏛ\t-10.6943\n▁ᏝᎨ\t-10.6949\n▁ᏭᏂᎷᏨᎩ\t-10.6949\nᏔᎵ\t-10.6953\nᏗᏂᏍᎪᏂᎯ\t-10.6955\n▁ᎤᏁᏍᏔ\t-10.6956\n▁ᎠᏓᎯᎯ\t-10.6956\n▁ᏫᎦᎷᎬ\t-10.6956\n▁ᎠᎩᏁᏨᎢ\t-10.6966\nᏚᎢᏍᏓᏁᎴ\t-10.6969\n▁ᏧᏁᎦ\t-10.6969\n▁ᎫᎦ\t-10.6969\n▁ᏍᎩᏍᏕᎸ\t-10.6974\n▁ᎢᏗᎬᏁ\t-10.6975\nᏃᎯᏎᎴ\t-10.6977\n▁ᏫᏚᏯᏅᎮᎢ\t-10.6979\n▁ᎤᏄᎪᏤᎢ\t-10.6985\n▁ᎢᏨᏗᏍᎬ\t-10.6985\n▁ᎢᏔ\t-10.6985\n▁ᏗᏐᏴ\t-10.6986\nᏯᎥᎢ\t-10.6986\n▁ᏂᏕᎬᏁᎲ\t-10.6988\n▁ᎤᏅᏎᎢ\t-10.699\n▁ᎯᎦᏔᎲ\t-10.6991\n▁ᎠᏁᎮᏍᏗ\t-10.6991\n▁ᏪᏣ\t-10.6996\nᏔᏁᏍᏗ\t-10.6996\nᏞᏍᏗ\t-10.6998\n▁ᏧᏁᏗᏱ\t-10.7001\n▁ᎤᏬᏨ\t-10.7002\nᏛᏁᏗᏱ\t-10.7003\nᎦᏛᎦ\t-10.7003\n▁ᎤᎪᎵᏰᎥ\t-10.7005\n▁ᎭᏗ\t-10.7005\n▁ᎤᎷᏤᎴᎢ\t-10.7007\nᏓᏁᎯ\t-10.7011\n▁ᏗᎬᏩᎾ\t-10.7011\n▁ᎤᏩᏔᏁ\t-10.7012\n▁ᎡᎾᎢ\t-10.7014\n▁ᎤᏁᏍᎩᎸ\t-10.7016\n▁ᎤᏬᏂᏎ\t-10.702\nᎳᏅᎩ\t-10.7025\nᏂᏗ\t-10.7026\n▁ᏚᏙᏍᏛ\t-10.7027\n▁ᎤᎾᏛᏁ\t-10.703\n▁ᏄᏩᏁᎸᎩ\t-10.7033\nᏍᏗᏍᎨᎢ\t-10.7035\nᎨᏎᎢ\t-10.7046\nᏟᏌᏂ\t-10.7046\n▁ᎤᎪᏗ\t-10.7049\nᎵᏍᏓᏴᎲᏍᎦ\t-10.7051\n▁ᎠᎾᎵᎮᎵᎨ\t-10.7051\nᎵᏍᎪᎸᏓᏁᏗᏱ\t-10.7057\nᏏᏐᏗ\t-10.7061\n▁ᏙᏓᎨ\t-10.7063\n▁ᏂᏥᏪᏎᎸ\t-10.7067\n▁ᏧᏁᏤᎴ\t-10.7067\n▁ᎤᏤᎸ\t-10.7074\n▁ᏗᎬᎩ\t-10.7076\nᎫᏩ\t-10.7076\n▁ᏥᏗ\t-10.7077\n▁ᎤᏂᎪᎲᎩ\t-10.7083\n▁ᏓᎬᎩ\t-10.7083\nᏁᎲᎩ\t-10.7086\n▁ᏗᎩᎦᏴᎵᎨᎢ\t-10.7089\nᏅᎦ\t-10.7093\nᏖᎵ\t-10.7094\nᏄᎪᏫᏏ\t-10.71\n▁ᏂᏚᎩᏨᏂᏒᎢ\t-10.7101\nᏢᎾᏁᏗ\t-10.7109\n▁ᎠᏦᏴᎢ\t-10.7113\n▁ᏧᎾᏦ\t-10.7114\n▁ᎤᏍᎦᏅᏨᎢ\t-10.7116\nᏅᏗᏍᎨᏍᏗ\t-10.7117\n▁ᏕᎬᏩᏂ\t-10.7121\n▁ᎪᎦ\t-10.7122\nᎲᏍᎪᎢ\t-10.7122\n▁ᎤᏁᏅᏍᏗ\t-10.7128\n▁ᏃᏳ\t-10.7132\n▁ᏱᏓᎩ\t-10.7135\nᏒᏗ\t-10.7135\n▁ᎤᏂᏅ\t-10.7135\n▁ᏕᏣᏙᎥᎢ\t-10.7139\nᏳᏍᏗ\t-10.7141\nᏇᎵ\t-10.7141\nᏰᎲ\t-10.7143\n▁ᎤᏓᏅᏙᎩ\t-10.7143\nᏪᏎᏗ\t-10.7147\n▁ᏗᏍᏆ\t-10.7156\nᏏᏩ\t-10.7164\nᏏᎳᏛᏗ\t-10.7167\n▁ᏃᎩ\t-10.7169\n▁ᎤᏍᏓᏱᏕ\t-10.717\n▁ᎤᎵᏍᏆᏕ\t-10.7172\n▁ᏣᎪ\t-10.7179\nᏟᏯ\t-10.718\n▁ᎤᎧᎵᎸ\t-10.7183\nᎳᏚ\t-10.7183\nᏨᎾ\t-10.7184\nᎬᏂᎨ\t-10.7186\nᏓᏁᎮᏍᏗ\t-10.7187\nᎧᏁᎸ\t-10.7195\nᎩᏍᎬ\t-10.7196\n▁ᎠᏂᏁᎸ\t-10.7198\n▁ᎤᏙᎯᏳᎭ\t-10.7199\nᎪᏅ\t-10.7206\nᏌᎳᏓᏁ\t-10.7209\n▁ᏗᎨᎦ\t-10.721\n▁ᏂᎬᏁᎸ\t-10.7211\nᏏᏗ\t-10.7216\n▁ᏗᏛ\t-10.7221\nᎦᏔᎲ\t-10.7223\n▁ᏦᏥ\t-10.7238\nᏂᏌᏂ\t-10.7238\n▁ᎠᏉᏢ\t-10.724\n▁ᎠᏃᎵ\t-10.7242\nᏅᎦᎸᏛ\t-10.7243\n▁ᏄᏪᏎᎸᎢ\t-10.7248\nᎪᎵᏂᏗ\t-10.7252\n▁ᎤᏓᏅᏒ\t-10.7256\n▁ᎤᏍᏆᎸ\t-10.7268\n▁ᎤᎧᎵ\t-10.7279\nᎦᏙᎥᏎ\t-10.7281\nᏙᎲᎢ\t-10.7299\n▁ᎤᏁᏅᏎᏃ\t-10.7303\nᏧᏂᏲᎯᏍᏗᏱ\t-10.7306\n▁ᏚᎸ\t-10.7313\nᏕᎦ\t-10.7314\n▁ᎠᏰᎵᏒ\t-10.7315\nᎯᎲᎢ\t-10.7316\nᏲᏏ\t-10.7317\n▁ᎤᏃᏴᎵ\t-10.7317\n▁ᎤᏁᏤᎢ\t-10.732\n▁ᎬᏒ\t-10.7323\n▁ᏳᎪ\t-10.7324\n▁ᏃᏒ\t-10.7329\n▁ᎤᏙᎯ\t-10.733\nᏂᏙᎸ\t-10.7343\nᏣᏗ\t-10.7343\nᎤᏩᏂᎦᎸ\t-10.7343\n▁ᎤᏁᏤᎴᎢ\t-10.7344\n▁ᎤᏙᏳ\t-10.7349\nᏉᏍᎪ\t-10.7359\nᏍᎦᎢᎮᏍᏗ\t-10.7362\n▁ᎾᏂᎥᎩ\t-10.7375\n▁ᏓᏔᎴᏒᎢ\t-10.7379\n▁ᎤᏅᏁ\t-10.739\n▁ᎠᏂᎸᏉᏗᏍᎨ\t-10.7392\n▁ᏦᏏ\t-10.7396\n▁ᏙᏓᏣ\t-10.7433\n▁ᏦᏒ\t-10.7447\nᏡᏗᏍᎩ\t-10.745\n▁ᎠᎹᏂ\t-10.7451\n▁ᏤᎳᏗ\t-10.7456\nᎵᏍᏓᏴᏗ\t-10.7471\n▁ᎦᏲᎦ\t-10.7471\n▁ᎤᎳ\t-10.7474\n▁ᏲᎦ\t-10.7475\nᏁᎢᏍᏓᏁᏗ\t-10.7479\n▁ᎡᏍᏗ\t-10.7483\n▁ᎠᎫᏴᏗ\t-10.75\nᎳᏛ\t-10.75\n▁ᎤᏂᏏᏗ\t-10.7503\nᏤᎭ\t-10.7507\n▁ᏚᏁᏤᎴᏃ\t-10.7508\n▁ᏥᏕᏣ\t-10.7519\n▁ᎢᎬᏱᏱᏉ\t-10.7521\n▁ᎨᎢ\t-10.7529\nᎬᏅ\t-10.753\n▁ᏓᎦᏥ\t-10.7531\nᏍᏓᏩᏕᎩ\t-10.7542\n▁ᎠᏥᏁᎸ\t-10.7543\nᏘᏍᏗᏍᎩ\t-10.7545\n▁ᎠᎩᏍᎦᏅᏨ\t-10.7546\nᎧᎯᏯᏍᏗ\t-10.7556\n▁ᏱᏥᏰᎸ\t-10.7557\nᏥᏧᏣ\t-10.7562\n▁ᎦᎾᏄᎪ\t-10.757\nᎦᏚ\t-10.7571\n▁ᎤᏂᏴᎸ\t-10.7581\nᏢᏅᎯ\t-10.759\nᏗᏯ\t-10.759\nᏗᏍᏔᏁ\t-10.7598\nᏲᎭ\t-10.7609\n▁ᏥᏳᎪ\t-10.761\nᏍᏓᏁ\t-10.762\nᏂᏆᏘᎯ\t-10.7624\nᏗᏔᏍᎬ\t-10.764\n▁ᏩᏴ\t-10.7646\nᎵᎢ\t-10.7649\n▁ᏗᎧ\t-10.7659\n▁ᏂᏛ\t-10.7669\nᏄᎵ\t-10.7673\n▁ᏥᎦᏔ\t-10.7678\nᏂᏴ\t-10.7694\n▁ᎪᏛ\t-10.77\n▁ᎠᎾᏗᏍᎨ\t-10.7701\n▁ᎤᏂᏄᎪᏨ\t-10.7711\n▁ᎢᏳᏂ\t-10.7721\n▁ᎤᏣᏅ\t-10.7729\nᏪᏎᎴᎢ\t-10.7731\nᏘᎾᏫᏛᎲᎩ\t-10.7737\nᏍᏆᎵ\t-10.7746\nᏫᏎᎴᎢ\t-10.7749\nᏍᎦᏰᎬᏍᏓ\t-10.7767\nᎶᏓ\t-10.7768\n▁ᎠᏩᏛ\t-10.7774\n▁ᏂᎦᎥᎢ\t-10.7776\nᏓᏱ\t-10.7778\nᏍᏕᎵᏍᎬ\t-10.7781\nᏁᏟᏴ\t-10.7789\n▁ᎢᎤ\t-10.7791\n▁ᎤᏪᏰ\t-10.781\n▁ᎤᎵᏍᏆᎸᏗᏃ\t-10.7812\nᏓᏎᎪᎩᏍ\t-10.7823\nᎩᏒ\t-10.7828\nᎦᎳ\t-10.7828\n▁ᎾᎯᏳᎢ\t-10.783\nᏛᏃᎯ\t-10.783\nᎸᏉᏗᏍᎩ\t-10.7833\n▁ᏚᏳ\t-10.7836\n▁ᏕᎨᏥ\t-10.7853\nᏲᏍᏗᏍᎬ\t-10.7853\nᏡᏗᏍᎬᎢ\t-10.7859\n▁ᏚᏲᏎ\t-10.7868\nᏫᏛ\t-10.7877\n▁ᎠᎨ\t-10.7882\n▁ᏱᎨᏣ\t-10.7885\nᏍᏗᏍᎬᎢ\t-10.7888\nᏍᏕᎵᏍᎩ\t-10.7899\nᏳᎳ\t-10.7915\nᏗᏍᏗᏍᎩ\t-10.793\nᏅᎪᎢᏍᏗ\t-10.7935\n▁ᎤᎵᏍᏆ\t-10.7938\nal\t-10.7947\nᏰᎸᎯ\t-10.7947\nᏂᏙᎯ\t-10.7951\n▁ᏯᏓᏅᏖ\t-10.7964\nᏑᏰᏒ\t-10.7965\n▁ᎠᎵᏰᎢᎵ\t-10.7968\n▁ᎦᏯ\t-10.7968\nᏢᏗᏱ\t-10.7976\n▁ᏭᏩ\t-10.7978\nᏴᏍᏗ\t-10.7978\nᎵᏳ\t-10.7983\n▁ᏕᎫ\t-10.7989\nᏂᎩᏍᎬ\t-10.7989\n▁ᎩᏯ\t-10.7993\n▁ᎢᏨᏲᏪᎳ\t-10.7997\nᏥᏍᎦᏯ\t-10.8006\n▁ᏓᏳᏂ\t-10.8013\n▁ᏄᏍᏛᎩ\t-10.8019\nᏍᎩᎸ\t-10.8026\nᎡᎰᎢ\t-10.803\n▁ᎠᏍᏆᏂᎪᏙᏗ\t-10.8033\nᏥᏁᎸ\t-10.8038\nᏅᏛ\t-10.8039\nᏓᏑᏰᏍᏗ\t-10.8043\nᏍᏓᏩᏛᏒᎩ\t-10.8044\nᏍᏓᏩᏗᏒ\t-10.8047\nᏛᏅᎢᏍᏓ\t-10.8049\n▁ᏥᏂᎬ\t-10.8054\n▁ᏔᏯ\t-10.8057\nᏓᎵᏓᏍᏗ\t-10.8058\nᎤᏍᏓᎦᏴᎯᏓ\t-10.8063\n▁ᏚᏭ\t-10.8067\n▁ᎨᏍᏗᏗ\t-10.8072\n▁ᎦᎬ\t-10.8074\n▁ᏚᏁ\t-10.8077\nᏲᏒᎩ\t-10.8077\n▁ᎢᏗᎦᏘ\t-10.8085\n▁ᎢᏳᏍᎩᏂᏃ\t-10.8101\nᎳᏓ\t-10.8108\nᎦᏁᎶᏗ\t-10.8108\nᏲᎵ\t-10.8114\nᎳᏂ\t-10.8119\n▁ᎥᎩᎸᏉ\t-10.8125\n▁ᎤᎵᏰ\t-10.8145\nᏓᏙᎵᏍᏗᏍᎬ\t-10.8149\nᎷᎯᏍᏗ\t-10.8153\nᏘᏃᎯᏍᏗᏱ\t-10.8159\nᏍᎦᏨᎯ\t-10.816\nᏂᎪᎲ\t-10.816\nᎦᏘᏓ\t-10.8167\n▁ᎢᏍᏛ\t-10.8179\n▁ᎬᏰᎸ\t-10.819\n▁ᏅᏓᎬᏩ\t-10.8195\n▁ᎠᏢ\t-10.8195\nᎧᏁ\t-10.8203\nᏙᎮ\t-10.8223\n▁ᎤᏂᏍᏆᏂᎪᏎ\t-10.8233\nᎸᏂ\t-10.8234\n▁ᏗᏣᏁᎶ\t-10.8237\n▁ᏗᏍᏚ\t-10.8248\nᏉᏂ\t-10.8249\n▁ᎤᎷ\t-10.8251\nᏓᏂᎸᏤᎢ\t-10.8259\n▁ᏳᏬᎯᏳ\t-10.8274\nᎶᎯᏍᏗ\t-10.8279\nᏩᏕᎬ\t-10.8293\nᎼ\t-10.8305\n▁ᎠᏂᎦ\t-10.8306\nᎦᏅᎦ\t-10.8313\n▁ᏄᏂᏪᏎ\t-10.8319\n▁ᏣᎦ\t-10.8321\n▁ᏧᏁᏨ\t-10.8327\nᏪᏎᎸᎩ\t-10.833\nᎿᎥᎢ\t-10.8332\n▁ᎤᎸᏉᏗ\t-10.8337\n▁ᎧᏃᎮ\t-10.834\nᏪᎶᏗ\t-10.8342\nᏍᏕᎸᏗᏱ\t-10.8345\nᎢᎦᎸᏉᏗ\t-10.8345\nᏦᏁ\t-10.8346\nᏢᏛ\t-10.8349\n▁ᎦᏟ\t-10.836\n▁ᎤᏁᎷᎬ\t-10.8365\nᏓᏬᏍᏗ\t-10.8367\n▁ᏧᎳᏑᎶ\t-10.8372\n▁ᎤᏃᎸ\t-10.8376\nᎯᏍᏔᏂ\t-10.8379\n▁ᏙᏧ\t-10.8381\n▁ᎤᏍᎦ\t-10.8385\n▁ᏕᎦᏄᎪᏫᏍ\t-10.8393\nᎪᎵᏰᎥᎯ\t-10.8398\n▁ᎥᏥ\t-10.8398\nᏍᎦᏃᎵ\t-10.8407\n▁ᎢᎩᏰᎸ\t-10.8407\n▁ᏕᎦᏄᎪᎬ\t-10.8409\n▁ᏕᎦᎳᏅᏛ\t-10.8411\nᎦᎸᎳᏗ\t-10.8412\n▁ᎤᏍᏆᏂᎪᏎ\t-10.8412\n▁ᎠᏐᏴ\t-10.8412\n▁ᎣᎦᏛᎦᏅ\t-10.8414\nᏓᎩᏍᎨ\t-10.8416\n▁ᎠᏓᏪᎵᎩᏍᎬ\t-10.8418\n▁ᏚᏲ\t-10.842\nᏄᏓᎴ\t-10.8421\nᏫᎵᎻ\t-10.8421\nᏗᎦᏛᎯ\t-10.8421\n▁ᎠᎩᏇᏓᎸ\t-10.8423\n▁ᏂᎦᎵᏍᏗᏍᎪ\t-10.8424\n▁ᏕᎦᏍᎩᎸ\t-10.8424\n▁ᎢᏣᏓᏙᎵᏍᏗᏍᎬ\t-10.8425\n▁ᏧᏁ\t-10.8426\n▁ᏱᎨᏥ\t-10.8427\n▁ᎬᏩᎾᏕ\t-10.8427\n▁ᎤᎵᏰᏔᏁ\t-10.8427\n▁ᏙᏧᎾᏓᏅᏛ\t-10.8428\n▁ᏱᏥᎦᏔᎮ\t-10.8431\n▁ᏄᏂᏪᏎᎴ\t-10.8433\n▁ᎢᏣᎵᎮᎵᎬ\t-10.8433\n▁ᎤᎾᏂᎩᏎ\t-10.8433\n▁ᏚᏓᏘᎾᎥ\t-10.8434\n▁ᎤᎶᎨᏒ\t-10.8435\n▁ᏯᏛᏅ\t-10.8436\n▁ᏱᏄᏍᏕ\t-10.844\n▁ᎤᏬᎯᏳᏒ\t-10.8442\nᎰᏩ\t-10.8445\n▁ᎤᏄᏩᎥ\t-10.8445\n▁ᏈᎬ\t-10.8451\n▁ᏕᎦᏬᏁᏗᏍᎬ\t-10.8451\n▁ᎾᎩᏪᏎᎸ\t-10.8455\nᎣᏏ\t-10.8456\nᎪᎲᏍᏙᏗ\t-10.8456\n▁ᏭᏯᏅᎲ\t-10.8458\n▁ᎠᎩᏩᏛᎲ\t-10.8459\n▁ᏄᏅᏁᎸ\t-10.846\n▁ᏄᏛᏁ\t-10.8461\nᎵᏙᎯ\t-10.8465\n▁ᎤᎵᏦᏛ\t-10.8465\n▁ᎥᎩᏙ\t-10.8466\nᏰᎳᏍᏗ\t-10.8466\n▁ᎢᎫᏩ\t-10.8471\n▁ᎾᏏ\t-10.8472\nᏬᏗᎨ\t-10.8474\n▁ᎠᏂᎪᏩᏘᏍᎬ\t-10.8475\nᎪᎵᏰ\t-10.8477\n▁ᏇᏓᏁᎳᎻ\t-10.8479\n▁ᎠᏓᎨᏗ\t-10.848\n▁ᏧᏂᎧᎿᏩᏛᏍᏗ\t-10.848\n▁ᏫᏗᎦ\t-10.8481\n▁ᎠᏍᎫᏕᏍᏗ\t-10.8481\nᎤᎷᏨ\t-10.8482\n▁ᎤᏬᎯᏳᏅ\t-10.8482\n▁ᏂᏕᎦᏪᏎᎲ\t-10.8483\n▁ᏗᎫᏍᏙᏍᏗ\t-10.8483\nᏒᏆᎶᏍᏗ\t-10.8484\n▁ᏗᎨᎫᎪᏓᏁᏗ\t-10.8486\n▁ᎤᏪᏓᏍᏗ\t-10.8487\nᏅᎵ\t-10.8487\nᏲᎱᎯᏎᎸᎯ\t-10.8487\n▁ᎠᏥᏁᏗ\t-10.849\n▁ᏭᎷᏤᎴ\t-10.8492\n▁ᏤᏅᏍᏗ\t-10.8492\nᎲᏎ\t-10.8496\n▁ᎤᎾᏛᎪᏗ\t-10.8496\n▁ᎠᏇᏓᏍᏗ\t-10.8496\n▁ᏅᏓᏰ\t-10.8499\n▁ᏚᏄᎪᏫᏒ\t-10.8505\n▁ᎠᏂᎾᏰᏍᎩ\t-10.8505\n▁ᎠᏂᏥᏊᏏ\t-10.8505\n▁ᎢᎨᎬᏁᎸᎯ\t-10.8505\n▁ᎢᎵᎡᏌ\t-10.8505\n▁ᎤᏍᏔᏲᏒ\t-10.8505\n▁ᎤᏖᎸᎳᏛ\t-10.8505\n▁ᎥᏆᎸᎢᏛ\t-10.8505\n▁ᎫᏫᏍᎫᏫ\t-10.8505\n▁ᎬᏬᎯᏳᎲᏍᎩ\t-10.8505\n▁ᎰᏢᏔᏅᎭ\t-10.8505\n▁ᎴᎣᏗᏏᏯ\t-10.8505\n▁ᎻᏚᏏᎳ\t-10.8505\n▁ᏂᏦᎵᎬᎾ\t-10.8505\n▁ᏇᏣᎵᎵ\t-10.8505\n▁ᏍᎪᏂᏗᏢ\t-10.8505\n▁ᏓᏇᎪᏔᏅ\t-10.8505\n▁ᏗᎾᏙᎴᏆᏍᎩ\t-10.8505\n▁ᏗᏓᎴᏅᏗᏍᎩ\t-10.8505\n▁ᏥᏈᎣᏂ\t-10.8505\n▁ᏧᏂᏦᏯᏍᏗ\t-10.8505\n▁ᎤᏂᎵᏅᏨᎯ\t-10.8505\n▁ᏗᎬᏩᎩᏨᏗ\t-10.8505\n▁ᏭᏕᎵᏤ\t-10.8505\n▁ᏓᏗᎶᏂ\t-10.8505\n▁ᏧᎾᏗᎩᏓ\t-10.8505\n▁ᎢᏯᏛᏁᎵᏓᏍᏗ\t-10.8505\n▁ᏗᏥᎨᏫ\t-10.8505\nᏫᏂᏗᏢ\t-10.8505\n▁ᏦᏍᏓᏓᏅᏟ\t-10.8505\n▁ᏥᏂᏨᏪᏎᎸᎩ\t-10.8505\n▁ᎠᏆᏗᏔᏍᏗ\t-10.8505\n▁ᎤᏪᏯᎸᏤᎢ\t-10.8505\n▁ᎠᎵᏏᎾᎯᏍᏙᏗ\t-10.8505\n▁ᎠᎾᎵᏖᎸᎲᏍᎩ\t-10.8505\n▁ᎢᎬᏆᏛᏁᏗ\t-10.8505\n▁ᎤᎵᏍᏛᏧᏁ\t-10.8505\n▁ᎠᏟᎶᎥ\t-10.8505\n▁ᏗᎨᏘᏂᏓᏍᏗ\t-10.8505\n▁ᎹᎺᎵ\t-10.8505\n▁ᎠᏂᎶᏍᎩ\t-10.8505\n▁ᏧᎬᏩᎳᏅᎯ\t-10.8505\n▁ᏭᏕᎵᏨ\t-10.8505\n▁ᎤᏦᎠᏎᏗ\t-10.8505\n▁ᎪᎯᏳᎲᏍᎨᏍᏗ\t-10.8505\n▁ᎤᎵᏃᎯᏴᎯ\t-10.8505\n▁ᎤᎦᏛᎾᏨᎯ\t-10.8505\n▁ᏣᎦᏑᎲᎢ\t-10.8505\n▁ᎠᎪᎲᏍᏔᏅᎯ\t-10.8505\n▁ᏆᏏᎹ\t-10.8505\n▁ᎢᏥᏁᎫ\t-10.8505\n▁ᏕᏥᏂᏴᏎᏍᏗ\t-10.8505\n▁ᏓᏲᏣᏛᏁᎵ\t-10.8505\n▁ᎠᏁᎸᏗᏍᎨᎢ\t-10.8505\n▁ᎢᎪᏂᏯ\t-10.8505\n▁ᏖᎹ\t-10.8505\n▁ᎬᏲᏎᎭ\t-10.8505\n▁ᏅᏓᏳᎾᏓᎴᏅᎯ\t-10.8505\n▁ᏗᎩᏲᎱᏒᎯ\t-10.8505\n▁ᏧᏃᏚᎯ\t-10.8505\n▁ᎾᏂᏍᎦᏅᎾ\t-10.8505\n▁ᏕᎦᏅᏙᎬ\t-10.8505\n▁ᏱᏥᎪᎵᏰᎣ\t-10.8505\n▁ᎦᏗᎨᏂ\t-10.8505\nᏙᎴᏋ\t-10.8505\n▁ᎠᏂᎪᏗᏳ\t-10.8506\n▁ᎾᏃᎯᏳᎲᏍᎬᎾ\t-10.8506\n▁ᏧᏈᏯ\t-10.8506\n▁ᏩᎩᎷᏣ\t-10.8506\nᎩᏏᏕᎩ\t-10.8506\n▁ᎬᏩᏕᏱᏛ\t-10.8506\n▁ᎢᏥᏇᏓᎸ\t-10.8506\n▁ᎠᏙᎴᎰᏒᎯ\t-10.8506\n▁ᎤᎦᏃᏮ\t-10.8506\n▁ᏄᎾᏛᏁᎵᏙᎸ\t-10.8506\n▁ᏓᏓᏛᏂ\t-10.8506\n▁ᏳᏲᎱᏒ\t-10.8506\n▁ᏗᎬᏩᏂᏰᎯ\t-10.8506\n▁ᏗᏂᏃᎨᏂ\t-10.8506\n▁ᎦᎶᏣᏗ\t-10.8506\n▁ᎤᏴᎵᎴ\t-10.8506\n▁ᎢᏳᎾᏓᎳ\t-10.8506\n▁ᏗᏂᏐᎯ\t-10.8506\n▁ᏁᏆᎸ\t-10.8506\n▁ᏘᎦᏙᎵ\t-10.8506\n▁ᎤᏆᏛᎩ\t-10.8506\n▁ᎢᎬᎾᏕᏅ\t-10.8506\n▁ᏚᏪᎧᏅᎩ\t-10.8506\n▁ᏫᏥᏲᎵᎦ\t-10.8506\n▁ᎶᏩᏂ\t-10.8506\n▁ᎦᎵᏆᏚ\t-10.8506\n▁ᎠᏂᎱᏣ\t-10.8506\n▁ᏚᏭᏢᏔᏅᎩ\t-10.8507\n▁ᎠᏆᏟᏂᎬᏁᎸ\t-10.8507\nᏌᎳᏛᎦ\t-10.8507\n▁ᏧᎾᎪᏅᏍᏓᎵ\t-10.8507\n▁ᎥᏃᏥ\t-10.8507\n▁ᏧᏬᏢᏅᎯ\t-10.8507\n▁ᏧᎵᎬᏩᏟ\t-10.8507\n▁ᏗᎦᎾᏌᎢ\t-10.8507\n▁ᎢᏯᏓᏛᏁᎯ\t-10.8507\n▁ᏓᎩᏯᏪᎦ\t-10.8507\n▁ᏐᏁᎳ\t-10.8507\n▁ᏗᏟᏍᏙᏗ\t-10.8507\nᏐᎭᏛ\t-10.8507\n▁ᎭᏛᏓᏍᏓ\t-10.8507\n▁ᎠᏂᏃᎮᏍᎨ\t-10.8507\n▁ᏗᏣᎴᎲᎦ\t-10.8507\n▁ᎤᎾᏚᎵᏍᎩ\t-10.8507\n▁ᏓᎦᏥᏁᎵ\t-10.8507\n▁ᎢᏯᏆᎵᏍᏙᏗᏱ\t-10.8507\n▁ᎪᎢᏳᎲᏍᎦ\t-10.8507\n▁ᏅᏁᎸᎭ\t-10.8507\n▁ᏗᎩᏴᏫ\t-10.8508\n▁ᎦᏥᏯᏁᎳᏅᎯ\t-10.8508\n▁ᏥᏍᎦᎢᎲ\t-10.8508\n▁ᏅᏓᏳᏅᏏᏛ\t-10.8508\n▁ᎱᎷᏣ\t-10.8508\n▁ᏕᎦᏰᏌᏛ\t-10.8508\n▁ᎤᎾᏙᎴᎰᎯᏍᏙᏗ\t-10.8508\n▁ᏓᏓᏂᎸᎨᏍᏗ\t-10.8508\n▁ᎡᏥᏲᎵᎸᎭ\t-10.8508\n▁ᎠᎬᏓᎨᏂ\t-10.8509\n▁ᏄᏓᏑᏴᎾ\t-10.8509\n▁ᎤᏃᎯᏳᎯ\t-10.8509\n▁ᏦᎨᏥ\t-10.8509\n▁ᎠᎾᏓᎭᏲᎯ\t-10.8509\n▁ᏕᏅᏙᎥ\t-10.8509\n▁ᏅᏓᏍᏆ\t-10.8509\n▁ᏗᏥᎸᏫᏍᏓᏁᎯ\t-10.851\n▁ᎠᏂᎡᎼᎵ\t-10.851\n▁ᎤᏂᏆᏘᏍᏗ\t-10.851\n▁ᎠᏆᏕᎶᎰᏒ\t-10.851\n▁ᎢᏥᎨᏴ\t-10.851\n▁ᎠᏆᏛᏅᎢᏍᏗ\t-10.851\n▁ᎤᎸᏉᏔᏁ\t-10.851\nᏡᏔᏂ\t-10.851\n▁ᎢᏧᏖ\t-10.851\n▁ᏗᏣᎳᏏ\t-10.8511\n▁ᏗᎭᎾᏬ\t-10.8511\n▁ᎤᎧ\t-10.8511\nᏲᎵᏍᏗᏱ\t-10.8511\n▁ᏬᏤ\t-10.8511\n▁ᏫᏂᏪᏏ\t-10.8511\n▁ᏚᏄᏌᏛ\t-10.8511\n▁ᏗᎦᎪᏙᏗ\t-10.8511\n▁ᎤᏓᏑᏰᏛ\t-10.8511\n▁ᎯᏍᎪᎵ\t-10.8511\nᏂᎴ\t-10.8512\n▁ᎪᏒᏅ\t-10.8512\nᏓᎴᏒ\t-10.8512\n▁ᏓᏂᏴᎬᎢ\t-10.8512\n▁ᏣᏓᎸᎩ\t-10.8513\n▁ᏥᎦᏚᎭ\t-10.8513\n▁ᏓᏂᏴᎨᏍᏗ\t-10.8513\n▁ᎬᏔᏲᏎᎭ\t-10.8513\n▁ᎤᏙᎳᏅᏍᏗ\t-10.8513\n▁ᏓᏂᏄᏙᎬᎢ\t-10.8513\n▁ᏚᏚᏓᏛᎢ\t-10.8513\n▁ᎠᎨᏯ\t-10.8513\n▁ᎠᏄᏬᎩᎯ\t-10.8513\n▁ᎢᏤᏅᏍᏗᏱ\t-10.8513\n▁ᎤᏬᏒᏅ\t-10.8513\n▁ᏚᏕᏲᏁ\t-10.8513\n▁ᏗᏣᎳᏏᏕᏂ\t-10.8513\n▁ᏓᏥᏁᎵ\t-10.8514\n▁ᏤᎵᎪ\t-10.8514\n▁ᎡᏈᎳ\t-10.8514\n▁ᏭᎳᎩᏒ\t-10.8514\n▁ᏭᎩᎶᏫᏎ\t-10.8514\n▁ᎠᏂᎩᎾ\t-10.8514\n▁ᏚᏬᏁᏔᏅᎩ\t-10.8514\n▁ᏧᏲᎯᏍᏗᏱ\t-10.8514\n▁ᎢᏨᏲᏪᎳᏁᎭ\t-10.8514\n▁ᏙᎳᏧᎦ\t-10.8514\nᎩᎾᏝᎢ\t-10.8515\n▁ᎤᎵᏦᎯᏛ\t-10.8515\nᏍᎦᎢᏍᏗ\t-10.8515\n▁ᏇᎵᏏ\t-10.8515\n▁ᏧᎸᏫᏍᏓᏁᎸᎯ\t-10.8515\n▁ᏅᏛᏛᏁᎵ\t-10.8516\n▁ᏕᎯᎧᏅ\t-10.8516\n▁ᎤᏅᏪ\t-10.8516\n▁ᏗᎦᏁᎲ\t-10.8516\n▁ᏧᏬᏪᎳᏅ\t-10.8516\n▁ᏚᏘᏃᎮᎴᎢ\t-10.8516\n▁ᏫᏄᏪᏎᎢ\t-10.8517\n▁ᏣᏔᎳᏬᎯᏍᏗ\t-10.8517\n▁ᎬᏯᎵᎡᎵᏤ\t-10.8517\n▁ᎢᏯᏓᏅᏖᏗ\t-10.8517\n▁Ꮇ\t-10.8517\n▁ᏚᏏᏔᏛ\t-10.8517\nᏄᏍᏗ\t-10.8517\n▁ᎠᏈᎷ\t-10.8518\n▁ᎠᏌᎳᏙᏗ\t-10.8518\n▁ᎢᏥᏁᏨ\t-10.8518\n▁ᏂᏥᏪᏍᎬ\t-10.8519\n▁ᏧᎧᎭᏲ\t-10.8519\n▁ᎧᏁᏍᎬ\t-10.8519\n▁ᎤᎵᏨᏓᏆᏓ\t-10.852\n▁ᎴᎻᎩ\t-10.852\n▁ᎢᏤᎵᎭ\t-10.852\n▁ᏧᎾᏁᎳᏅᎯ\t-10.852\n▁ᏓᎧᏁ\t-10.852\n▁ᎠᏁᏙᎭ\t-10.852\n▁ᎢᏣᎵᏍᏓᏴᏗᏱ\t-10.852\n▁ᎢᏨᏁᏗ\t-10.852\n▁ᎠᏆᏓᏅᏖᏛ\t-10.8521\n▁ᏣᏓᏅᏛᎢ\t-10.8521\n▁ᎠᏆᏛᏁᏗᏱ\t-10.8521\n▁ᎤᏬᏪᎳᏅᎩ\t-10.8521\n▁ᎤᏲᎱᏎᎮᏍᏗ\t-10.8521\n▁ᏑᏓᎵᏧᏈ\t-10.8521\n▁ᎡᏍᎦᏂᏳ\t-10.8522\n▁ᎠᎦᏙᎵ\t-10.8522\n-“\t-10.8522\n▁ᎠᏓᎬᎿ\t-10.8522\n▁ᎦᏰᎵᏍᏗ\t-10.8522\n▁ᎠᏂᏍᎦᏰᎬᏍᏓ\t-10.8523\n▁ᎤᏃᏪᎳᏅ\t-10.8524\n▁ᎠᏂᎦᏘᏯ\t-10.8524\n▁ᎠᏫᏌᏅ\t-10.8524\n▁ᎠᏤᏍᏙᎩᎯ\t-10.8524\n▁ᎤᏛᎦᎾ\t-10.8524\n▁ᎦᎪᎵᏍᏗ\t-10.8524\n▁ᎠᎺ\t-10.8525\n▁ᏗᏥᎧᎿᏩᏛᏍᏗᏱ\t-10.8525\n▁ᏚᏭᎪᏔᏅ\t-10.8525\n▁ᎤᏬᎳ\t-10.8525\n▁ᏚᏪᏴ\t-10.8526\n▁ᏣᏍᏆ\t-10.8526\n▁ᎤᏁᏅᏒᎩ\t-10.8526\n▁ᏳᏪᎭ\t-10.8526\n▁ᏓᎾᏠᏱᎲ\t-10.8527\n▁ᎤᏩᏂᎦᎸᎢ\t-10.8527\n▁ᎤᎾᏄᎪᏥᎸ\t-10.8527\n▁ᏱᏥᏏᎾ\t-10.8527\n▁ᎤᏂᎾᎥ\t-10.8528\n▁ᎤᏍᏆᏂᎪᏔᏁᎢ\t-10.8528\n▁ᎤᏂᏍᎦᎴᎢ\t-10.8528\n▁ᎠᏋᏔᏅᎯ\t-10.8529\n▁ᎤᏪᏙᎴᎢ\t-10.8529\n▁ᎢᏳᏩᎬᏗ\t-10.8529\n▁ᎦᏃᎯᎵᏙ\t-10.8529\n▁ᏗᎫᏍᏙᏍᏗᏱ\t-10.8529\n▁ᎭᏟᏂᎬᏁ\t-10.8531\n▁ᏱᏅᎦ\t-10.8531\n▁ᎾᏥᏪᏎᎴᎢ\t-10.8531\n▁ᎢᏳᏪᏍᏗ\t-10.8532\n▁ᎢᏣᏛᏁᏗ\t-10.8532\n▁ᎤᏂᏁᏉᏤ\t-10.8532\n▁ᎤᎦᎹ\t-10.8532\n▁ᎤᏂᏃᎮᏗᏱ\t-10.8532\n▁ᏧᎾᏛᎾ\t-10.8533\nᏥᎤᏍᏕᏎᎸᎾ\t-10.8533\n▁ᏂᏨᏁᎲ\t-10.8534\n▁ᎬᏩᏍᎦᎩ\t-10.8534\n▁ᎾᏥᎤᏍᏕᏎᎸᎾ\t-10.8534\n▁ᏱᏂᎦᎩ\t-10.8536\n▁ᎤᏕᏔᏅᎯ\t-10.8537\n▁ᏗᏥᏁᏟᏴ\t-10.8537\nᏴᎵᎸ\t-10.8537\nᏩᏛᎲᏍᏗᏱ\t-10.8538\n▁ᎤᏛᏅᏗᎦᎳᏫᎢᏍᏗᏱ\t-10.8538\n▁ᎤᎵᏍᎪᎸᏔᏅᎯ\t-10.8538\n▁ᏤᏣᎧᏃᏗ\t-10.8539\nᏁᏉᏣᏘ\t-10.854\n▁ᎤᏂᏚᎲᎢ\t-10.8541\n▁ᎢᏨᏙᏗᏱ\t-10.8542\n▁ᎠᎩᎷᏤᎸᎩ\t-10.8542\n▁ᏓᎪ\t-10.8542\n▁ᏥᏄᏍᏛ\t-10.8542\n▁ᏣᎾᏫᏱ\t-10.8543\n▁ᎤᎾᏅᏗᏱ\t-10.8543\n▁ᎢᏥᏁᏗ\t-10.8544\n▁ᏥᎬᏩ\t-10.8544\nᏁᏅ\t-10.8545\nᎵᏖᎸᏂᏍᏗ\t-10.8545\n▁ᎢᏣᏁᎳᏅᎯ\t-10.8546\n▁ᎤᏂᏰᎸᎯ\t-10.8546\n▁ᎦᏁᏥᏱ\t-10.8547\n▁ᏭᏓᏒᏍᏔᏁ\t-10.8547\n▁ᏭᏓᎪᎾᏛᏛ\t-10.8547\n▁ᎤᏴᎸᎩ\t-10.8547\n▁ᎤᏁᏝᏅᎯ\t-10.8547\n▁ᎤᎦᏔᎲᏎ\t-10.8548\n▁ᏍᎦᏰᎬᏍᏔ\t-10.8549\n▁ᎤᏦᏍᏗ\t-10.8549\n▁ᎠᏍᏕᎵᏍᎩ\t-10.855\n▁ᎱᏂᎷᏤ\t-10.855\n▁ᎡᏥᏁᎸᎯ\t-10.8551\n▁ᎯᏄᎪᎢ\t-10.8551\n▁ᎦᎬᏩᏐᏢ\t-10.8552\n▁ᏚᏃᏁᎴ\t-10.8553\n▁ᎠᏂᎩᎦᎨ\t-10.8553\n▁ᎣᎨᏅᏒ\t-10.8553\n▁ᏂᎨᏥᏪᏎᎸ\t-10.8554\n▁ᏗᎪᏩᏛᏗ\t-10.8554\n▁ᏧᎾᏍᏗᎦ\t-10.8556\n▁ᏩᎦᏛᎢ\t-10.8557\n▁ᎤᎾᏄᎪᏫᏍᏗᏱ\t-10.8559\n▁ᎤᎩᎵ\t-10.856\n▁ᎤᎾᏓᏟᏌᏅ\t-10.856\n▁ᎤᏔᏪᏙᏁᎢ\t-10.856\n▁ᎤᏍᏕᎸᏗᏱ\t-10.8562\n▁ᎠᎳᏑᎶ\t-10.8563\n▁ᎢᏓᏙᎴᎰᎯᏍᏗ\t-10.8563\n▁ᎠᎦᏅᎩ\t-10.8564\nᏘᏁᏒᎭ\t-10.8564\n▁ᎤᏅᏙᏗ\t-10.8564\n▁ᎤᏍᏚᏁ\t-10.8567\n▁ᏌᎻ\t-10.8568\n▁ᎠᎩᎪᏩᏛᏗᏱ\t-10.8568\nᏬᏁᏔᏁ\t-10.8569\n▁ᏕᎦᎧᎲᎩ\t-10.857\n▁ᎠᎾᏗᏍᎬ\t-10.857\n▁ᏧᏪᏥᏛᎯ\t-10.8571\n▁ᎹᎵ\t-10.8571\n▁ᎤᏂᏴᏗ\t-10.8572\n▁ᎠᏩᏛᏗ\t-10.8572\n▁ᎢᎾᏏ\t-10.8572\n▁ᎤᏬᏢᏁᎢ\t-10.8572\n▁ᏧᏓᎴᏁᎢ\t-10.8574\n▁ᏧᎦ\t-10.8574\n▁ᎤᏍᎦᏤ\t-10.8574\nᎧᎸ\t-10.8576\nᎴᏁᎯ\t-10.8576\n▁ᎦᏁᎮᎢ\t-10.8576\n▁ᎤᏍᏓᏩᏗᏙᎯ\t-10.8578\n▁ᏓᏥᏂ\t-10.8578\n▁ᏓᏍᏛ\t-10.8579\n▁ᏥᏅᎵ\t-10.8579\n▁Ꮌ\t-10.858\nᏎᏗᏱ\t-10.858\n▁ᎯᏴ\t-10.8581\n▁ᎢᎨᏣᏛᏁᏗ\t-10.8581\nᏂᏬᏂᎯᏍᏗ\t-10.8583\n▁ᏕᎠ\t-10.8586\n▁ᎦᏆᎵ\t-10.8586\n▁ᎤᎵᏰᏔᏁᎢ\t-10.8587\n▁ᎤᏄᏬᏍᏗ\t-10.8587\n▁ᎠᎩᏃᎮᎸ\t-10.8587\nᏍᏗᏰᏗᎭ\t-10.8591\n▁ᎤᏂᎾ\t-10.8592\n▁ᎤᎾᎴᏅᎲ\t-10.8596\n▁ᏕᎪᏪᎸᎩ\t-10.8598\n▁ᏭᏴᎸᎩ\t-10.86\n▁ᏂᏣᏛᏁᎲᎢ\t-10.8603\n▁ᏗᎦᎫᏍᏛᏗᏱ\t-10.8604\n▁ᎣᎩᎾᎵᎪ\t-10.8604\n▁ᎤᎶᎨᏒᎢ\t-10.8608\n▁ᎠᏫᏒᎯ\t-10.8608\n▁ᎤᏰᎬ\t-10.8611\n▁ᎤᏬᏢᏅᎢ\t-10.8612\n▁ᏭᎷᏤᎴᎢ\t-10.8612\n▁ᏩᎩᎦ\t-10.8613\nᏥᏁᎢᏍᏗᎭ\t-10.8614\n▁ᎤᏍᏓᎦᎸᎢ\t-10.8614\n▁ᏓᏟᎶᏍᏛᎢ\t-10.8614\n▁ᎠᏇᎵᏒᎩ\t-10.8618\n▁ᎦᎵᎷᎨᏍᏗ\t-10.8618\nᏕᎪᎢ\t-10.8619\n▁ᎧᏃᎮᏍᎬᎩ\t-10.8619\n▁ᏂᏗᎨ\t-10.862\nill\t-10.8621\n▁ᎢᏣᎴᏂᏙᎲ\t-10.8622\n▁ᎤᏬᎭ\t-10.8623\n▁ᏱᏍᏛ\t-10.8623\n▁ᏥᏂᎨᎬᏁ\t-10.8623\n▁ᎤᏂᏴᎮᎢ\t-10.8627\n▁ᏧᏃᎸ\t-10.8629\n▁ᎤᏬᏎᎴᎢ\t-10.8631\nᏢᏂ\t-10.8637\n▁ᎦᏲᏟᎨ\t-10.8638\nᏩᏔ\t-10.8638\n▁ᏎᎳᎩ\t-10.8638\nᎵᏓᏍᏔᏅ\t-10.8638\n▁ᎤᏄᎸ\t-10.8638\n▁ᏧᏩᎫᏔᏅᏒᎢ\t-10.8643\nᎶᎸᏗ\t-10.8643\nᏕᎶᎰᏌ\t-10.8646\nᏓᏅᎡᎮᏍᏗ\t-10.8646\nᏘᏱ\t-10.8647\n▁ᎬᏩᎦ\t-10.8648\n▁ᎤᎾᏙᎴᎰᏒᎩ\t-10.865\nᎠᎩᏏᏙᎯ\t-10.865\n▁ᎭᏕᏬ\t-10.8653\n▁ᎯᏌ\t-10.8654\nᏯᏪᎢᏍᏗ\t-10.8657\nᎵᏎᎲ\t-10.8658\n▁ᏣᎧᏛᎢ\t-10.8658\n▁ᏚᏂᎪᎲ\t-10.8658\n▁ᎾᏆᏛᏁᎸᎢ\t-10.8659\nᏛᏛᎾ\t-10.8663\n▁ᎬᏩᎷᏤᎴᎢ\t-10.8664\n▁ᎡᏙᎲᎩ\t-10.867\n▁ᎠᏥᎾ\t-10.8673\n▁ᎨᏙᎲᎢ\t-10.8675\nᎦᎶᎨᏒ\t-10.8675\n▁ᎠᏂᏁᎬᎢ\t-10.8677\n▁ᎾᏛᏁᎲᎢ\t-10.8678\nᏚᎵᏍᎪ\t-10.8678\n▁ᏤᏏ\t-10.8679\n▁ᎦᎵᏦᏙᏗ\t-10.868\n▁ᎦᏁᎯ\t-10.8684\nᎳᏗᏍᎬ\t-10.8686\nᏚᏓᎴᏍᏗᏱ\t-10.869\n▁ᏏᎦ\t-10.8692\n▁ᎢᏌ\t-10.8694\n▁ᎤᏪᎭ\t-10.8698\n▁ᏯᎩᏰᎸ\t-10.8699\n▁ᎢᏥᎲᎢ\t-10.8699\n▁ᎾᏛᎦ\t-10.8699\n▁ᏓᏫᏒᎢ\t-10.8704\n▁ᏧᎾᏗᏔᏍᏗ\t-10.8708\n▁ᎢᏢ\t-10.871\n▁ᏣᏍᎦᏅᏨ\t-10.8712\n▁ᎠᎢᏎ\t-10.8718\nᎵᏍᎪᎸᏙᏗ\t-10.8718\nᏙᎡᏍᏗ\t-10.8718\n▁ᎠᎩᎲ\t-10.8719\n▁ᎡᎳᏂᎬᎢ\t-10.8719\n▁ᎤᏂᎯ\t-10.872\nᏍᏚᏟᏍᏗ\t-10.8721\n▁ᏚᎷᎬ\t-10.8723\nᎩᏳᏍᏈᏛ\t-10.8723\n▁ᏙᏓᎸᎢ\t-10.8727\nha\t-10.8732\n▁ᎤᏄᏪ\t-10.8737\n▁ᏕᎨᏒ\t-10.874\n▁ᏕᎯᏁᎸ\t-10.8745\n▁ᏥᎩᎵᏲᎬ\t-10.8757\n▁ᎤᏚᎸᎲ\t-10.876\n▁ᎠᎾᎢᏒᎢ\t-10.8761\nᏱᏆ\t-10.8765\n▁ᎠᎦᎵᏍᎪᎸᏓᏁᎸ\t-10.8768\n▁ᏁᏣ\t-10.8771\nᏌᏛᏗ\t-10.8771\n▁ᏄᎳ\t-10.8772\n▁ᏗᏍᎩᎧᏁ\t-10.8776\n▁ᏅᎩᏃ\t-10.8776\n▁ᎤᏁᎳᏅ\t-10.8776\nᎵᏍᏗᏍᎩ\t-10.8779\n▁ᏥᎳ\t-10.8779\n▁ᏗᏟ\t-10.8785\n▁ᎠᏣ\t-10.8786\nᎧᎾ\t-10.879\n▁ᏂᎩ\t-10.8792\n▁ᏓᏓᏁᎸᎢ\t-10.8792\n▁ᏙᎤ\t-10.8794\n▁ᎤᎷᏨᎯ\t-10.8801\n▁ᎦᎳᎨᏴᎢ\t-10.8805\n▁ᏕᎦᏚᎲᎢ\t-10.8805\nᏴᎮᎢ\t-10.8805\n▁ᏂᏣᏛᏁᎸᎢ\t-10.8805\nᏌᏛᎥᏍᎩ\t-10.8807\nᏫᏍᎩ\t-10.8819\n▁ᏓᏆᏙᎥᎢ\t-10.882\n▁ᎢᏥᏍᏆ\t-10.8824\n▁ᎤᏕᎸ\t-10.8824\nᏬᎭ\t-10.8827\nᏓᎴᎾᏍᏗ\t-10.8828\n▁ᎩᏓ\t-10.8831\n▁ᎡᏏ\t-10.8832\n▁ᎵᏍᏗ\t-10.8832\n▁ᎤᏓᏅᏖᎢ\t-10.8832\n▁ᎭᏗᏔ\t-10.8835\n▁ᎤᏃᏢᏅ\t-10.8839\n▁ᏂᏣᏍᏛ\t-10.8843\n▁ᎦᎸᏍᏗ\t-10.8847\nᏂᏲᏏᏍᎩ\t-10.885\n▁ᎬᏩᏛᏛ\t-10.8855\nᎵᏦᏩᏛ\t-10.8858\nᎤᏣ\t-10.8874\n▁ᏔᎵᏍᎪ\t-10.8881\n▁ᏥᏂᎦ\t-10.8884\nᏓᎾᏫᏛᎮ\t-10.8884\nᏏᎳᏛ\t-10.8889\n▁ᎠᏍᎩ\t-10.8894\n▁ᎠᏂᏬᏂᏍᎬᎢ\t-10.8894\n▁ᎤᏕᎵ\t-10.8896\nᏏᏂ\t-10.89\n▁ᎤᏓᎨᏳ\t-10.8901\n▁ᏏᏆᏏ\t-10.8905\n▁ᏃᎦ\t-10.8906\n▁ᏣᎬ\t-10.8911\nᏙᎴ\t-10.8932\n▁ᎠᎵᏍᏓᏴᏗᏱ\t-10.8934\n▁ᏱᏣᏓᏅᏖ\t-10.8937\n▁ᏥᏫ\t-10.8939\n▁ᎠᎾᏛᎩᏍᎨ\t-10.8941\n▁ᎢᏆ\t-10.8942\n▁ᎤᏛᎦᏁᎢ\t-10.8942\n▁ᎠᏑ\t-10.8948\nᏂᏍᏆᏂᎪ\t-10.8951\nᎾᏄᎪᏫᏍᎨᏍᏗ\t-10.8965\n▁ᎦᏳ\t-10.8965\n▁ᎠᏏᎾ\t-10.897\nᎵᎭ\t-10.8971\nᎵᏱᎶᎯᏍᏗ\t-10.8979\nᏛᏁᎲᎢ\t-10.8989\n▁ᏥᏰᎸ\t-10.899\nᎯᏗᏳ\t-10.8992\n▁ᏇᎳ\t-10.8992\n▁ᏕᏗ\t-10.8992\nᏏᏏ\t-10.9001\n▁ᏂᏚᏓᎴ\t-10.9007\nᏙᎵᎩ\t-10.9007\nᏰᎵᏉ\t-10.9009\nᎩᏯ\t-10.9013\n▁ᏃᏉᏗ\t-10.9015\n▁ᏄᏅᏁ\t-10.9017\n▁ᎤᎶᏎ\t-10.9021\nᎵᏍᎪᎸᏓᏏ\t-10.9029\n▁ᎨᏍ\t-10.9031\nᏗᏅᏓ\t-10.904\nᏯᎡᏍᏗ\t-10.9045\nᏝᎡ\t-10.9048\nᏓᏅᏖᏙᏗ\t-10.9051\n▁ᏚᏂᎸ\t-10.9053\n▁ᏱᏂᏣᏛᏁ\t-10.9056\nᏯᏔᏬ\t-10.9062\nᏅᏁᎮᏍᏗ\t-10.9068\n▁ᎢᏥᎷᏤᎸ\t-10.9068\n▁ᏳᏰᎸ\t-10.907\nᏏᏔᏛ\t-10.9071\n▁ᎢᏍᏕ\t-10.9076\n▁ᎠᎾᏓᏙᎵᏍᏗᏍᎨ\t-10.9079\nᎦᏍᎪ\t-10.9092\nᏍᏗᎭ\t-10.9098\nᏟᏂᎬᎬ\t-10.9099\n▁ᎠᏍᏆᏂᎪᏗᏍᎨ\t-10.9133\n▁ᎢᎸ\t-10.9134\nᎰᎸ\t-10.9147\n▁ᎤᎩᏒ\t-10.9152\n▁ᎠᏆᏓ\t-10.9156\n▁ᏂᎬᏁᎮ\t-10.916\n▁ᎤᏭᏢ\t-10.917\n▁ᎤᏂᎬᏫᏳ\t-10.9176\nᎷᏤ\t-10.9181\n▁ᏭᏍᏗ\t-10.9192\nᏗᎦᏅᎯᏛ\t-10.9194\n▁ᏍᎩᏰᎸᏗ\t-10.9203\n▁ᏧᏲᎯᏎᏗ\t-10.9206\n▁ᏍᎩᏳ\t-10.9226\n▁ᎣᏍ\t-10.9228\n▁ᏣᎵᏍᎪᎸᏙᏗ\t-10.9231\nᏰᎵᏎ\t-10.9234\nᏛᏅᎩ\t-10.9237\n▁ᏧᏁᏤ\t-10.9247\nᎵᏍᎦᏍᏙᏗ\t-10.9271\nᎵᏍᏓᏏ\t-10.9274\nᎾᏗ\t-10.9276\n▁ᎾᏥ\t-10.9283\n▁ᎢᎡ\t-10.9284\n▁ᎠᏁᎲᎩ\t-10.9297\nᏅᏍᏓᏕᎸᎩ\t-10.9304\nᏥᎾᏄᎪᏫᏏ\t-10.9305\n▁ᎠᏂᏤ\t-10.9309\n▁ᎤᏆ\t-10.9312\n▁ᎾᏛᏁᎰ\t-10.9317\n▁ᎡᏙ\t-10.9327\nᏘᏃᎦ\t-10.9328\nᏤᎴ\t-10.9331\nᏁᏤᎸ\t-10.9334\n▁ᎤᏍᏆᎸᎯᏗ\t-10.9336\n▁ᏰᎵᎦ\t-10.9345\n▁ᎠᎪᎢ\t-10.936\nᏚᏃᏴᎬ\t-10.937\nᏓᏁᎸᎯ\t-10.937\nᎸᏍᏗᏱ\t-10.9375\nᎬᏓ\t-10.9381\n▁ᎢᏥᎭ\t-10.9387\nᏒᎲᏍᏗ\t-10.9394\n▁ᎣᏤ\t-10.9398\n▁Ꮢ\t-10.9403\n▁ᎠᏫᏃ\t-10.9406\n▁ᎪᏢ\t-10.9407\n▁ᎠᏓᏲᏁ\t-10.9408\nᏐᏁ\t-10.9408\nᏐᏗ\t-10.9416\n▁ᎢᏗᎦ\t-10.9419\nᎳᏗᏍᏗ\t-10.9434\n▁ᏣᏁᎩ\t-10.9439\nᏂᎲ\t-10.9441\n▁ᏦᎢᎭ\t-10.9451\n▁ᎾᏯ\t-10.9458\nᏲᎯᏎᏗᏱ\t-10.946\nᏓᏎᎪᎩ\t-10.9465\nᏓᏬᎯᎳ\t-10.9468\nᏙᏂ\t-10.9476\nᏩᏗᏒᎢ\t-10.9487\n▁ᎤᎵᏏᏅ\t-10.9517\nᎩᎵ\t-10.952\n▁ᎤᎵᎢ\t-10.9523\n▁ᏆᎾ\t-10.9529\nᏢᏅᎩ\t-10.9536\nᎯᎮᏍᏗ\t-10.9538\nᏍᏗᏍᎨ\t-10.954\nᎪᎦ\t-10.9542\n▁ᏚᏓ\t-10.9551\nᎨᎯᏓᏍᏗ\t-10.9554\n▁ᏫᏱ\t-10.9557\nᎮᎾ\t-10.9562\nᎪᎩ\t-10.9562\nᎩᎨᏳᎯᏳ\t-10.9568\nᏥᎦᏔᎲᎾ\t-10.9568\nᏓᏁᏗᏱ\t-10.9571\nᏍᏇᏚ\t-10.9573\nᎲᏍᎨᎢ\t-10.9574\n▁ᏓᏌ\t-10.9581\nᎾᏔ\t-10.9591\nᏍᏕᎾ\t-10.9599\n▁ᎢᏲ\t-10.96\nᎦᏕ\t-10.9621\nᎾᏛᎦ\t-10.9621\nᏤᏗ\t-10.9627\n▁ᎦᏘ\t-10.9628\n▁ᏙᏣ\t-10.9632\nᏌᏕ\t-10.9633\nᎵᏓᏍᏗᏱ\t-10.9636\nᏴᏔᏁᎢ\t-10.965\n▁ᎯᏃ\t-10.9651\n▁ᎠᏂᏉ\t-10.9662\n▁ᎢᏥᏍᏆᏂᎪ\t-10.9664\n▁ᎤᏪᏅ\t-10.9666\nᏥᎦᏔᎭ\t-10.9666\nᎳᎩᏍᏗ\t-10.9672\n▁ᏰᏣ\t-10.9679\n▁ᏣᏓᏰ\t-10.9683\n▁ᏂᏚᏅ\t-10.9695\n▁ᏱᏣᏓ\t-10.9707\nᏰᎸᏍᎬ\t-10.9709\n▁ᏓᎾᎵ\t-10.9712\nᏦᎯ\t-10.9717\nᏁᎰ\t-10.9724\nᏌᏅ\t-10.9726\nᎸᏅᎯ\t-10.9727\nᏛᏁᎭ\t-10.9733\n▁ᎠᎾᏘ\t-10.9742\nᎩᏏ\t-10.9742\nᏅᏔ\t-10.9743\nᏘᏅᏒᎩ\t-10.9759\nᏤᎷᎯᏒ\t-10.9766\n▁ᎦᎶᏁᏛᏰᏃ\t-10.9766\nᏡᎬ\t-10.9772\n▁ᎠᏏᏴᏫᏉ\t-10.9774\n▁ᏥᏕᏥ\t-10.9793\nᎪᎳ\t-10.9794\n▁ᎬᎾᏬ\t-10.9806\nᏰᏍᏗ\t-10.9812\n▁ᏱᏙᎩ\t-10.9815\n▁ᎤᏪᏯ\t-10.9816\nᎵᏍᎪᎸᏙᏗᏱ\t-10.9816\nᏛᏁ\t-10.9816\n▁ᏗᏍᏓ\t-10.9824\nᏕᏅᎯ\t-10.9829\nᏍᏗᏉ\t-10.9833\nᎦᏬᏂᎯᏍᏗ\t-10.984\nᏬᎢ\t-10.9841\nᏅᏤᎢ\t-10.9846\nᏛᏂᏏ\t-10.9865\nᎦᏎᏍᏕᏍᏗ\t-10.9873\nᏬᏣ\t-10.9879\nᏑᏫᏓ\t-10.9883\nᏍᏆᏂᎩᏗ\t-10.9885\nᏎᎮᏍᏗ\t-10.9891\n▁ᏚᏂᏍᏚ\t-10.9893\n▁ᎠᏚᎢᏍ\t-10.9897\n▁ᏂᎦᏪ\t-10.9898\n▁ᏓᏥᏲ\t-10.991\nᏂᏴᏛ\t-10.9914\nᏁᎳᎩ\t-10.9918\n▁ᏥᏅ\t-10.9925\nᎧᏯ\t-10.9928\nᏕᎰ\t-10.9932\nᏤᎦᏈᏃ\t-10.9932\nᎪᏩᏘᏍᎬᎾ\t-10.9933\nᏓᎾ\t-10.9936\n▁ᎠᏂᏧᏏᏃ\t-10.994\n▁ᏳᏓ\t-10.9943\n▁ᎠᎵᏥᏙ\t-10.9944\nᎻᏂ\t-10.9947\n▁ᎤᏰᎸ\t-10.9951\n▁ᎩᏂ\t-10.9958\nᏥᏁᏤᎸ\t-10.9961\nᏯᏙ\t-10.9973\nᏄᎪ\t-10.9982\n▁ᎤᏩᏗ\t-10.9989\n▁ᎦᎵᏦ\t-10.9994\n▁ᏂᏯ\t-10.9995\n▁ᏥᏍ\t-10.9998\nᏙᎭ\t-11.0003\nᏍᎦᎳᏁᎸ\t-11.0003\nᎪᏎᎭ\t-11.0014\nᎦᏅᏓᏗᏍᏙᏗ\t-11.0017\n▁ᏘᏅ\t-11.0023\nᏞᎢ\t-11.003\n▁ᎠᎦᏓ\t-11.0033\n▁ᎦᎶᏗ\t-11.0044\nᏛᏁᎯ\t-11.0055\nᏯᏅᏗ\t-11.0073\nᎵᏍᏕᎵᏍᎬ\t-11.0075\n▁ᏱᏂᎪ\t-11.0077\nᏰᎢ\t-11.009\n▁ᏧᏂᏅ\t-11.0096\n▁ᏣᎫ\t-11.0096\nᏍᏔᎾ\t-11.0098\n▁ᏓᏛ\t-11.0106\n▁ᎠᎩᏁ\t-11.0106\n▁ᎤᏓᏁ\t-11.0118\nᎦᏔᏁᎢ\t-11.0131\nᏂᎯ\t-11.0134\n▁ᎢᏣᏓᏅᏖ\t-11.0136\nᏟᏐᏗᏱ\t-11.0153\nᏕᏘᏱ\t-11.0156\n▁ᏂᎤ\t-11.0167\nᏲᏍᎬ\t-11.0169\nᏖᎢ\t-11.0173\n▁ᏚᏂᏁ\t-11.0181\nᎦᏔᎮᏍᏗ\t-11.0182\n▁ᎢᏥᏍᎦᎾ\t-11.0193\nᏁᏤᏗᏱ\t-11.0195\n▁ᎤᏅᏤ\t-11.0196\nᏘᏄᎦ\t-11.0196\n▁ᎢᏗᏣ\t-11.0198\nᎪᏕᏍᏗ\t-11.02\nᏎᎮ\t-11.0203\nᎪᎾᏛ\t-11.0204\n▁ᎠᏂᏍᎦᎢᎮ\t-11.0205\nᏣᏛ\t-11.0205\nᎵᎰ\t-11.0214\n▁ᎠᏎᎵ\t-11.0218\n▁ᎤᏂᏩ\t-11.0221\n▁ᏂᏚᏩ\t-11.0229\n▁ᎠᏂᏍᎦ\t-11.0246\n▁ᎠᏥᎸᏳ\t-11.0248\nᎬᏩᎶᏓᏁ\t-11.0252\nᏁᏤᎲ\t-11.0253\nᎾᏄᎪᏫᏍᏗᏱ\t-11.0256\n▁ᎠᏲᎱ\t-11.0265\nᏔᏲᏎᎭ\t-11.0266\n▁ᎤᏄ\t-11.0268\n▁ᏛᏆ\t-11.0271\n▁ᏧᏲ\t-11.0274\nᏴᏛ\t-11.0275\nᏚᎯ\t-11.0278\n▁ᎦᏬᏂ\t-11.0279\n▁ᎯᏥ\t-11.0281\nᏅᏓᏛ\t-11.0282\nᏇᏅᎯ\t-11.0283\n▁ᏗᏂᏅ\t-11.0293\nᏄᏬᏍᏗ\t-11.0297\nᎦᏄᎪᏫᏍᎦ\t-11.0299\n▁ᎤᏲᎢᏍᏗ\t-11.0304\n▁ᏕᏍ\t-11.0306\nᎷᏥ\t-11.0314\n▁ᏙᎩᏂ\t-11.0316\n▁ᎤᏪᎵ\t-11.0322\nᏁᎾ\t-11.0322\nᏛᏗᏍᎩ\t-11.0324\n▁ᎤᏁᏙᎸ\t-11.033\n▁ᎠᏚᏓᎴᏍᏗ\t-11.0336\n▁ᎤᎾᏣᎢ\t-11.0341\n▁ᏤᏈᏛ\t-11.0343\n▁ᏗᎧᏃᎩ\t-11.0343\nᏂᎵ\t-11.0348\n▁ᏫᏂ\t-11.0349\n▁ᏱᎬᎩ\t-11.0355\n▁ᏣᏤᏍᏙ\t-11.0356\nᎨᎾ\t-11.0359\n▁ᏙᏓᎧ\t-11.0371\nᏯᏗ\t-11.0373\nᎬᎭ\t-11.0373\n▁ᏦᎩᏂ\t-11.0377\n▁ᎦᏬᏂᏍᎨ\t-11.0386\nᏍᏆᎳ\t-11.039\n▁ᎤᏂᏰᎸᏎ\t-11.0396\n▁ᏥᏨ\t-11.0398\nᏓᏍᏗᏱ\t-11.0405\n▁ᏫᏚᎧᎾᏁ\t-11.0409\n▁ᎦᏍᎩᏓᏍᎬ\t-11.0409\n▁ᎠᏥᏃᏁᎴ\t-11.041\n▁ᏙᎩᎸᏫᏍᏓᏁᎲ\t-11.0411\n▁ᎢᏛᏗᏍᎬ\t-11.0414\n▁ᎠᎾᏛᎩᏍᎬ\t-11.0415\n▁ᎠᎾᎵᎮᎵᎬ\t-11.0416\n▁ᏗᎩᏲ\t-11.0419\n▁ᎤᏃᎯᏳᏒ\t-11.042\n▁ᏕᎤᎷᎬ\t-11.0421\n▁ᏂᏓᏕᏘᏴᎯᏒ\t-11.0422\n▁ᎠᏂᎩᎵᏲᎬ\t-11.0422\nᎾᏰᎯᏍᏗ\t-11.0423\nᏟᏏᏍᎪ\t-11.0423\nᎢᏏᎵ\t-11.0423\nᎡᏝᏪᎯ\t-11.0423\n▁ᎤᏒᏂᎴ\t-11.0427\n▁ᏗᎾᏓᎪᎾᏗᏍᎬ\t-11.0427\nᎠᎳᏂ\t-11.0428\n▁ᎯᏁᎬ\t-11.0428\n▁ᎠᏂᎧᎸ\t-11.0428\n▁ᎤᏃᎯᏳᏅ\t-11.043\nᎠᏍᎦᏯ\t-11.043\n▁ᎤᏁᎷᏁ\t-11.043\nᎾᏄᎪᏫᏎ\t-11.0431\n▁ᎠᎩᏍᏛᏗᏍᎬ\t-11.0431\nᏴᏔᏂᎸ\t-11.0433\n▁ᎠᎬᏗᏍᎬ\t-11.0433\n▁ᎠᎾᏕᎲᏍᎬ\t-11.0433\n▁ᏦᎢᏉ\t-11.0434\n▁ᎤᏓᏙᎵᏍᏔᏅ\t-11.0436\n▁ᎤᏍᏗᏰᏔᏁ\t-11.0436\n▁ᎤᎾᏓᏙᎵᏍᏔᏅ\t-11.0441\nᏆᎴ\t-11.0441\n▁ᎾᏆᎵᏍᏔᏅ\t-11.0443\nᏄᏕᏘᏴᎲ\t-11.0445\n▁ᎪᏙ\t-11.0446\n▁ᎦᏓᏙᎵᏍᏗᏍᎬ\t-11.0448\n▁ᎤᏦᎯ\t-11.0452\n▁ᎠᏇᏅᏒ\t-11.0453\n▁ᎤᏂᏰᎸᏅ\t-11.0455\n▁ᏭᏂᎶᏒ\t-11.0455\n▁ᎤᏪᎧᏅ\t-11.0456\n▁ᏥᏃᎮᏍᎬ\t-11.0458\n▁ᏅᏓᎦᎵᏍᏙᏗᏍᎬ\t-11.0458\n▁ᎠᎾᏓᎪᎾᏗᏍᎬ\t-11.046\n▁ᎢᏗᏂ\t-11.046\nᏈᎳ\t-11.0461\n▁ᏗᎦᏁᎸ\t-11.0462\n▁ᏧᎶᏒ\t-11.0463\n▁ᎠᏉᏪᎳᏅ\t-11.0463\n▁ᏨᏌ\t-11.0465\n▁ᏅᏗᎦᎵᏍᏙ\t-11.0466\nᏓᏍᏕᎸᏗ\t-11.0467\n▁ᏧᏓᎴᏁ\t-11.0468\nᎠᏁᎯ\t-11.0468\n▁ᏭᏓᎪᎾᏛ\t-11.0469\n▁ᎢᏯᏅᏁ\t-11.047\n▁ᏚᎪ\t-11.0471\n▁ᎤᏙᎯᏳᏁ\t-11.0474\n▁ᏧᎾᏛᏐᏅ\t-11.0474\n▁ᎢᏓᎵᎮᎵ\t-11.0475\n▁ᏗᎩᎾᏫ\t-11.0476\n▁ᎢᏳᎵᏍᏔᏂᏓᏍᏗ\t-11.0479\nᎸᏙᏗ\t-11.0479\nᏁᎵᏍᎬᎾ\t-11.0479\nᏎᎪᎩᏍᏗ\t-11.0479\n▁ᏗᎪᏪᎳᏅ\t-11.0481\nᏲᎯᎲ\t-11.0481\n▁ᎨᏥᏛᏙᏗ\t-11.0481\nᏥᎾᏝᎥᎾ\t-11.0481\n▁ᏓᎦᏥᏯ\t-11.0482\n▁ᏕᏣᏓᏂᎸᏨ\t-11.0483\n▁ᏭᏂᎶᎯᏍᏗ\t-11.0483\n▁ᏂᎦᎵᏍᏔᏅ\t-11.0483\n▁ᏗᏥᎧᎿᏩᏛᏍᏗ\t-11.0484\n▁ᏗᏍᏆᏂᎪᏙᏗ\t-11.0485\n▁ᏣᏍᏆᏂᎪᏙᏗ\t-11.0488\n▁ᏭᎶᎯᏍᏗ\t-11.0491\n▁ᏗᎦᎵᏦ\t-11.0492\n▁ᎢᏳᏟᎶ\t-11.0494\n▁ᎠᏁᎵ\t-11.0495\n▁ᎤᏂᏃᎮᏗ\t-11.0495\n▁ᎤᎵᏂᎩᏗ\t-11.0496\n▁ᏩᎾᎢ\t-11.0497\n▁ᏗᏣᎸᏫᏍᏓᏁᏗ\t-11.0497\n▁ᏩᏥᎳ\t-11.0498\nᏠᎾᏍᏛᎾ\t-11.0499\n▁ᎪᎵᎬ\t-11.0499\n▁ᎨᏨ\t-11.05\nᎰᏢᏅᎭ\t-11.05\nᏁᏔᏁ\t-11.0501\nes\t-11.0501\nᏥᏁᎸᎯ\t-11.0501\n▁ᎤᏂᎸ\t-11.0502\nᏦᎢ\t-11.0502\ndinot\t-11.0505\n▁ᎠᎰᎵᏆᎹ\t-11.0505\n▁ᎤᎧᏖᏃᎴ\t-11.0505\n▁ᎤᎬᏩᎳ\t-11.0505\n▁ᎱᏁᏅᏎ\t-11.0505\n▁ᎾᎵᏍᏓᏴᎲᏍᎬᎾ\t-11.0505\n▁ᏂᏥᎪᎸᎾ\t-11.0505\n▁ᏂᏥᏪᎠ\t-11.0505\n▁ᏕᏏᎶᏂᎦ\t-11.0505\n▁ᏗᎦᏃᏣᏝᏍᎩ\t-11.0505\n▁ᏗᎦᏌᏆᎸ\t-11.0505\n▁ᏧᎾᏍᏕᏥ\t-11.0505\n▁ᏧᏂᎳᎾᎢ\t-11.0505\n▁ᏬᎩᎶᏒᎩ\t-11.0505\n▁ᏭᎩᏨᏅ\t-11.0505\n▁ᏱᏕᏍᎬᏏ\t-11.0505\n▁ᎠᏳᎾᎦ\t-11.0505\n▁ᎤᏔᎳᏬᏎᎢ\t-11.0505\n▁ᏧᏩᏗᏔᏯ\t-11.0505\n▁ᏱᏅᏎᎦᎩ\t-11.0505\n▁ᎤᏓᏥᎾᏍ\t-11.0505\n▁ᎤᏔᎴᎦᏒ\t-11.0505\n▁ᎤᏩᏯᎨᎢ\t-11.0505\n▁ᏂᏣᏛᎿᏕᎨᏍᏗ\t-11.0505\n▁ᎤᏕᏯᏔᏁᎴ\t-11.0505\n▁ᏄᎾᏓᏅᏛᎾ\t-11.0505\n▁ᏗᎦᏩᏒᎩ\t-11.0505\n▁ᎤᏓᏩᏗᏍᏙᏛ\t-11.0505\n▁ᎾᏅᏛᏁᎰ\t-11.0505\n▁ᏅᏧᎵᏍᏙᏔᏁ\t-11.0505\n▁ᏍᎩᏁᎲᏏ\t-11.0505\n▁ᎠᎩᏍᏓᏩᏕᎨᏍᏗ\t-11.0505\n▁ᎠᎵᏰᎢᎶᎸᎭ\t-11.0505\n▁ᎢᏣᏛᏅᎢᏍᏙᎢ\t-11.0505\n▁ᎣᏍᏓᏓᏤᎵ\t-11.0505\n▁ᎤᏁᎳᏫᏎᎸ\t-11.0505\n▁ᎨᎢᎾᏂ\t-11.0505\n▁ᏗᏔᎳᏗᏍᏗᏱ\t-11.0505\n▁ᏥᏂᏥᏪᎭ\t-11.0505\n▁ᏗᏠᏍᎩ\t-11.0505\n▁ᎠᏓᏪᎵᎩᏍᎩ\t-11.0505\n▁ᏄᎾᏛᎾᏕᎬ\t-11.0505\n▁ᏫᏂᏨᎦ\t-11.0505\n▁ᎤᎬᏩᎴ\t-11.0505\n▁ᎤᏍᏔᏩᏛ\t-11.0505\n▁ᏙᏓᎫᎪᏓᏁᎵ\t-11.0505\n▁ᏅᏓᏣᏓᎴᏅᎯ\t-11.0505\n▁ᏗᎫᎪᏓᏁᎯ\t-11.0505\n▁ᏂᎪᎯᏳᎲᏍᎬᎾ\t-11.0505\n▁ᎢᎦᏪᏍᎩ\t-11.0505\n▁ᎥᎨᏒᎩ\t-11.0505\nᏁᏉᏣᏖᏍᏗ\t-11.0505\n▁ᎢᎬᏩᎾᏛᏁᏗ\t-11.0505\n▁ᎤᎬᏩᎸ\t-11.0505\n▁ᎤᎵᏘᎾᎥ\t-11.0505\n▁ᏥᏕᏣᎪᎲᎩ\t-11.0505\n▁ᏅᏓᏥᏴᏁᎵ\t-11.0505\n▁ᏴᎦᏥᏛᏓ\t-11.0505\n▁ᏂᎬᏠᏍᎬᎾ\t-11.0505\n▁ᎠᎵᏛᏓ\t-11.0505\n▁ᎠᎨᏲᏅ\t-11.0505\n▁ᏣᏃᎮᎸᎩ\t-11.0505\n▁ᏍᎨᏫ\t-11.0505\n▁ᏱᏂᎦᏛᏁᎭ\t-11.0505\n▁ᏗᎪᏏᏏᏍᎩ\t-11.0505\n▁ᏤᎿᎠ\t-11.0505\n▁ᎥᏓᎷᎶᏗ\t-11.0505\n▁ᏕᎭᏓᏅᎡᎮᏍᏗ\t-11.0505\n▁ᏧᎾᎴᏐᏛ\t-11.0505\n▁ᏗᏂᎧᎿᏩᏕᎩ\t-11.0505\n▁ᏥᏨᏰᎳᏗᏙᎲᎩ\t-11.0505\n▁ᎤᏩᏃᏪ\t-11.0506\n▁ᏥᏚᎸᏫᏍᏓᏁᎭ\t-11.0506\n▁ᏕᎪᏢᏎᏍᏗ\t-11.0506\n▁ᏚᏜᏅᏛ\t-11.0506\n▁ᏂᏕᎤᏍᏕᏍᏗ\t-11.0506\n▁ᏔᏘᏂᏙᎯ\t-11.0506\n▁ᏅᏓᎬᏯᏛᏁᎵ\t-11.0506\n▁ᎤᎾᏗᎦᎴᏲᏨᎯ\t-11.0506\n▁ᏄᏍᎦᏅᏨᎾ\t-11.0506\n▁ᏂᎩᏴᏁᎸ\t-11.0506\n▁ᏕᎯᏁᏤᎮᏍᏗ\t-11.0506\n▁ᎰᏌᎾ\t-11.0506\n▁ᎤᎾᎵᏍᏔᏴᏗ\t-11.0506\n▁ᏂᎨᎵᏍᎬ\t-11.0506\n▁ᏗᎾᏂᏏᎲᏍᎩ\t-11.0506\n▁ᏗᏣᏓᎵᎢ\t-11.0506\n▁ᎠᎾᏛᏁᎵᏍᎩ\t-11.0506\n▁ᏕᏥᏙᎨᏍᏗ\t-11.0506\n▁ᏍᎩᏲᎮᏍᏗ\t-11.0506\n▁ᏗᏥᏲᎱᏒᎯ\t-11.0506\n▁ᎤᏄᏬᏍᏕᏍᏗ\t-11.0506\n▁ᏂᏪᏍᎬᎢ\t-11.0506\nᏤᏬᎩ\t-11.0506\nans\t-11.0506\n▁ᏂᏑᏪᏎᎴᎢ\t-11.0506\nᎵᏍᎪᎸᏗᏍᎨᏍᏗ\t-11.0506\n▁ᏅᏓᏨᏁᎵ\t-11.0506\n▁ᏱᏄᏪᏒ\t-11.0506\n▁ᏗᏂᏲᎤᎵ\t-11.0506\n▁ᎤᏂᎾᏰᏎᎢ\t-11.0506\n▁ᎢᏣᎦᏌᏯᏍᏓ\t-11.0506\n▁ᏧᏯᏍᎦ\t-11.0506\n▁ᎤᏩᎾᏕ\t-11.0506\n▁ᎠᎩᏍᎦᏅᏥᏙᎸᎢ\t-11.0507\n▁ᎠᎾᏁᎸᏗᏍᎬ\t-11.0507\n▁ᎢᏳᏩᎦᏘ\t-11.0507\n▁ᏚᏌᎯᎸ\t-11.0507\n▁ᏂᏥᏍᎦᎢᎲᎾ\t-11.0507\n▁ᏚᏓᏂᎸᏨ\t-11.0507\n▁ᏧᎾᏘᏂᏙᎯ\t-11.0507\n▁ᏗᏣᏘᏂᏙᎯ\t-11.0507\n▁ᏂᎦᏪᏍᎪᎢ\t-11.0507\n▁ᎤᏁᎾᎢ\t-11.0507\nᏙᎴᏇ\t-11.0507\nay\t-11.0507\n▁ᎤᏃᏢᏔᏅᎩ\t-11.0507\n▁ᎨᎵᏌᏕ\t-11.0507\n▁ᎬᏩᎾᎦᏌᏯᏍᏗᏕᎩ\t-11.0507\n▁ᎨᎦᎫᏴᏓᏁᏗ\t-11.0507\n▁ᏚᏆᏛ\t-11.0507\n▁ᏙᏛᏛᏔᏂ\t-11.0507\n▁ᏗᎾᏓᎾᏌᎲᏍᎩ\t-11.0507\n▁ᎤᏛᏒ\t-11.0507\n▁ᎭᏓᏅᏓᏓ\t-11.0507\n▁ᏗᏕᏲᎲᏍᎩ\t-11.0507\n▁ᏧᏔᎾᎶ\t-11.0507\n▁ᏲᏥᎦᏔᎭ\t-11.0508\n▁ᎢᏨᏰᎳᏗᏙᎭ\t-11.0508\n▁ᏧᎳᏏᏕᏅ\t-11.0508\n▁ᎢᏣᏓᏅᏟ\t-11.0508\n▁ᎦᏙᎴᎣᏍ\t-11.0508\n▁ᎠᏂᎶᎻ\t-11.0508\n▁ᏂᎦᏚᏏᏁ\t-11.0508\n▁ᎤᏗᏌᏓᏛ\t-11.0508\n▁ᎠᎵᏍᎦᏁᏛ\t-11.0508\n▁ᎡᎭᎦᏔ\t-11.0508\n▁ᏳᏓᏬᎠ\t-11.0508\n▁ᎠᏂᏬᏂᏍᎩ\t-11.0508\n▁ᏂᏤᎲᎾ\t-11.0508\n▁ᎨᏥᏍᎦᎩ\t-11.0508\nᎸᏂᏗᏍᎩ\t-11.0508\n▁ᎠᎩᏬᏂᎯᏍᏗᏱ\t-11.0508\n▁ᎾᏅᏁᎲ\t-11.0508\n▁ᎨᎦᎵᏍᎪᎸᏓᏁᎸᎯ\t-11.0508\n▁ᏩᎵᏰᎢᎶᎯᎭ\t-11.0509\n▁ᎠᏛᏂᏗᏍᏙᏗ\t-11.0509\n▁ᎢᏥᎪᏩᏘᏍᎨᏍᏗ\t-11.0509\n▁ᏣᏂᎧᎳ\t-11.0509\n▁ᏭᏓᏐᎴ\t-11.0509\n▁ᏓᎩᎸᏫᏍᏓᏁᎸ\t-11.0509\n▁ᏂᎦᎾᏰᏍᎬᎾ\t-11.0509\n▁ᎢᏣᏤᎵᎪᎯ\t-11.0509\n▁ᎢᏰᏨᏁᎸᎯ\t-11.0509\n▁ᎡᏣᏅᏏᏓᏍᏗ\t-11.0509\n▁ᎤᏓᏴᏛ\t-11.0509\n▁ᏧᏚᎪᏔᏅ\t-11.0509\n▁ᏓᏥᏍᏓᏱᏕᎵ\t-11.0509\n▁ᏤᏌᏂ\t-11.0509\n▁ᎤᏮᏙᏗᏱ\t-11.051\n▁Ꮰ\t-11.051\n▁ᎣᎾᏂ\t-11.051\n▁ᏂᏣᏓᏅᏛᎾ\t-11.051\n▁ᎤᎾᎵᏏᎾᎯᏍᏗ\t-11.051\n▁ᎬᎩᏁᏉᏤᏗᏱ\t-11.051\n▁ᏚᏕᏘᏴᏌᏗᏒ\t-11.051\n▁ᏂᏍᎦᏅᎾ\t-11.051\n▁ᏂᏣᏛᏁᎭ\t-11.051\nᏓᏬᏅᏛ\t-11.051\n▁ᏓᎾᏤᎸ\t-11.051\n▁ᏣᏃᏍᎩᏒᎩ\t-11.051\n▁ᏯᏆᏚᎵᏍᎨ\t-11.051\n▁ᎤᏬᏯᏁᏒ\t-11.051\n▁ᏕᎬᏆ\t-11.051\n▁ᏗᎧᎿᏩᏕᎩ\t-11.051\n▁ᎠᎪᏎ\t-11.051\n▁ᎣᏩᏒ\t-11.0511\n▁ᎠᏇᏲᏅ\t-11.0511\n▁ᎤᏯᏖᎾ\t-11.0511\n▁ᎤᏔᏂᏗᎨ\t-11.0511\n▁ᏭᎪᎮ\t-11.0511\n▁ᎠᎩᏍᏕᎵᏍᎩ\t-11.0511\n▁ᏗᎩᏲᎯᏍᏗᏱ\t-11.0511\n▁ᏗᏂᎴᏂ\t-11.0511\n▁ᎤᏂᎬᎥᏍᎬ\t-11.0511\n▁ᏣᏓᏴᎳᏔᏍ\t-11.0511\n▁ᏭᏂᎷᏣ\t-11.0511\n▁ᎹᏓ\t-11.0512\n▁ᎠᎱᎵ\t-11.0512\n▁ᏧᏂᏴᏍᏕᏍᎩ\t-11.0512\n▁ᎢᏥᏩᏛᏗᏱ\t-11.0512\n▁ᏕᎤᏙᏍᏛ\t-11.0512\n▁ᎤᎾᏕᏘᏱ\t-11.0512\n▁ᎬᏩᏃᎮᏍᎩ\t-11.0512\n▁ᏙᏓᏰ\t-11.0512\n▁ᎡᏥᎾᏰᏍᎨᏍᏗ\t-11.0512\n▁ᏣᎢᏎᏍᏗ\t-11.0512\n▁ᎡᏤᎾ\t-11.0512\n▁ᏛᏓᎴᎲᏍᎬᎩ\t-11.0512\n▁ᎤᏂᏃᏁᏗᏱ\t-11.0513\n▁ᏁᎳᏚ\t-11.0513\n▁ᏚᎿᏍᏕᏢ\t-11.0513\n▁ᏱᏙᎨᏥ\t-11.0513\n▁ᏗᎦᏟᏓ\t-11.0513\n▁ᏚᏅᏍᏓᏕᎴ\t-11.0513\n▁ᏗᏣᎦᏴᎵᎨ\t-11.0513\n▁ᎠᎩᏃᎮᏍᎩ\t-11.0513\n▁ᏫᏥᎦᏘ\t-11.0513\n▁ᏗᏆᎵᎢ\t-11.0513\nᏨᏁᏗ\t-11.0513\n▁ᎠᎾᏛᎬᎦ\t-11.0514\nᎦᏘᎴᏅ\t-11.0514\n▁ᎤᏍᏗᎩᏳ\t-11.0514\n▁ᎪᏢᏍᎩ\t-11.0514\n▁ᎢᏏᎦ\t-11.0514\n▁ᏍᎩᏅᏏᏓᏍᏗ\t-11.0514\n▁ᏗᏲᏍᏙᏗ\t-11.0514\nᎾᏌᎾᎩ\t-11.0514\n▁ᏏᏐᎢ\t-11.0514\n▁ᏥᏄᎵᏍᏔᏅ\t-11.0514\nᏂᎬᎬ\t-11.0515\n▁ᎢᏥᎷᎩ\t-11.0515\n▁ᎢᏨᏃᏁᎭ\t-11.0515\n▁ᏗᎧᏃᎨᏂ\t-11.0515\n▁ᎡᎿᎢ\t-11.0515\n▁ᏣᏃᏎᎰᎢ\t-11.0515\n▁ᎦᏟᎲ\t-11.0515\n▁ᏭᏴᎮ\t-11.0515\n▁ᎪᏱᏅᏍᏗ\t-11.0515\n▁ᎡᏥᏍᏕᎸᏗᏱ\t-11.0516\n▁ᎢᏥᎦᏔᎲ\t-11.0516\n▁ᏲᏨᏗᏍᎨ\t-11.0516\n▁ᎢᏥᎬᏫᏳᎯ\t-11.0516\nᏍᏓᏩᏛᏍᏗᏱ\t-11.0516\n▁ᎠᎵᏥᏙᎲᏍᎬ\t-11.0516\n▁ᎤᏂᏂᏴᏗᏱ\t-11.0516\n▁ᎠᏥᎸᎨᎳᏍᏗ\t-11.0516\n▁ᏂᎦᎡᏍᏗ\t-11.0517\n▁ᏂᏨᏴᏁᎭ\t-11.0517\n▁ᏗᏨᏲᎯᏎᏗᏱ\t-11.0517\n▁ᎤᏛᏓᏍᏓᏁᎴ\t-11.0517\n▁ᏓᎪᏄᎸ\t-11.0517\n▁ᎡᏚᏥ\t-11.0517\n▁ᎤᎾᏙᎴᎰᎯᏍᏗᏱ\t-11.0517\n▁ᎬᏁᏤᎭ\t-11.0517\n▁ᎠᏂᎦᏲᎵᏳ\t-11.0517\n▁ᏧᏬᎳ\t-11.0517\n▁ᎠᎩᏰᎸᎰ\t-11.0517\n▁ᏗᏑᏱ\t-11.0518\nᎵᏛᏓᏁ\t-11.0518\n▁ᎤᏛᎪᏗ\t-11.0518\n▁ᏚᎵᏍᏚᎢᏎᎢ\t-11.0518\n▁ᎢᏥᎦᏴᎵᎨ\t-11.0518\n▁ᎦᏓᎷᎪᏗ\t-11.0518\n▁ᎬᎥᏏ\t-11.0519\n▁ᏚᎸᏫᏍᏓᏁᎮᏍᏗ\t-11.0519\n▁ᎤᎵᏖᎸᏅᎩ\t-11.0519\n▁ᏓᏦᎯᏍᏛ\t-11.0519\n▁ᎬᏩᏔᏲᏎᎸᎩ\t-11.052\n▁ᎠᏴᏓᏆᎶᏍᎩ\t-11.052\n▁ᏚᏘᏅᏒᎩ\t-11.052\n▁ᏍᎩᎷᏥᏏ\t-11.0521\n▁ᏭᏅᏥᎴ\t-11.0521\n▁ᏧᏕᏲᏅᎯ\t-11.0521\n▁ᎡᏣᎫᏴᎡᏗ\t-11.0521\n▁ᏗᏙᎴᏆᏍᏗ\t-11.0521\n▁ᏗᏣᏄᏬ\t-11.0521\n▁ᎦᎶᏐᏅᎭ\t-11.0521\n▁ᏍᏋ\t-11.0522\n▁ᎤᎾᏤ\t-11.0522\n▁ᎠᎾᏗᏍᎪ\t-11.0522\n▁ᏣᎾᎥᎢ\t-11.0522\n▁ᏂᎦᏥᏴᏁᎸᎭ\t-11.0522\n▁ᏓᎬᎩᎵ\t-11.0522\n▁ᎢᏥᎪᏩᏘᎭ\t-11.0522\n▁ᎣᏓᎵ\t-11.0522\n▁ᏗᎵᏒᏍᏗ\t-11.0523\n▁ᏭᏃᏁᎸᎩ\t-11.0523\n▁ᏧᎪᎸ\t-11.0523\n▁ᏍᎩᎥᏏ\t-11.0524\n▁ᏗᎦᏘᎴᎩ\t-11.0524\n▁ᏥᏂᎦᎵᏍᏗᎭ\t-11.0524\n▁ᏩᏍᏘ\t-11.0524\n▁ᏗᎦᎳᏫᎩ\t-11.0525\n▁ᏫᎨᏥᏯᏅᏛ\t-11.0525\nᏰᎸᏍᎦ\t-11.0525\n▁ᏗᏂᏢᏗᏱ\t-11.0525\n▁ᏧᏂᏲᎱᎯᏍᏗᏱ\t-11.0525\n▁ᏅᎩᏦᏁ\t-11.0526\n▁ᎯᎰᎵ\t-11.0526\n▁ᏂᎨᏳᏎᏍᏗ\t-11.0526\n▁ᎠᏂᏍᏓᏩᏕᎩ\t-11.0526\n▁ᏅᎦ\t-11.0526\n▁ᎤᎾᎵᏃᎮᎴ\t-11.0526\n▁ᎦᏂᎳ\t-11.0526\n▁ᎠᏛᎩᏍᎨᏍᏗ\t-11.0527\n▁ᎾᏂᏪᏍᎨᏍᏗ\t-11.0527\n▁ᎤᎾᏓᏓᏍᎩ\t-11.0527\n▁ᎦᎸᏉᏗᏍᎨ\t-11.0527\nᏨᎭ\t-11.0528\n▁ᎨᏥᏯᏅᏛ\t-11.0528\nᏃᎯᏎᎲ\t-11.0528\n▁ᎤᎵᏃᎮᏔᏅᎢ\t-11.0528\n▁ᎠᎾᏓᏙᎵᏍᏗᏍᎬ\t-11.0528\n▁ᏕᎦᏅᏌᏛ\t-11.0529\n▁ᎢᏥᏔᏲ\t-11.0529\n▁ᏄᎾᎵᏍᏔᏅ\t-11.053\n▁ᎠᎩᏠᏫᏍ\t-11.053\n▁ᏥᏤᎭ\t-11.0531\n▁ᎤᏂᎨᏳᎯ\t-11.0531\n▁ᏗᏆᏓᏅᏛ\t-11.0531\n▁ᎡᏦᎢᏳᏒ\t-11.0531\n▁ᎠᏓᏙᎵᏍᏓᏁᎯ\t-11.0531\n▁ᎤᎧᎵᏨ\t-11.0532\n▁ᏄᎵᏂᎬᎬ\t-11.0532\n▁ᏄᎾᏓᎴ\t-11.0533\n▁ᎢᎨᏎᎢ\t-11.0533\n▁ᏫᏚᏂᏯᏅᎲ\t-11.0534\nᏓᎸᏛ\t-11.0534\n▁ᎤᏍᏓᏲᏒ\t-11.0535\n▁ᏓᏰᏏ\t-11.0535\nᏢᏔᏂ\t-11.0535\n▁ᎠᏩᎾᎦᎳᎯᏳ\t-11.0536\n▁ᎤᎾᏓᏅᏒᎩ\t-11.0537\n▁ᎾᏅᏁᎭ\t-11.0537\n▁ᎢᏥᎷᏤᏗᏱ\t-11.0537\n▁ᏰᎵᎦᏯ\t-11.0537\n▁ᏄᏩᏂᏌᏅ\t-11.0538\nᏒᎾᏔᏅ\t-11.0538\n▁ᏣᏰᎯ\t-11.0539\n▁ᏕᎾᏓᎪᎲᏳ\t-11.0539\n▁ᏭᏂᏴᎸᎩ\t-11.0539\n▁ᎯᏍᎩᏍᎪᎯ\t-11.054\n▁ᏗᎦᏚᎲᏍᎩ\t-11.054\n▁ᎠᎪᏩᏘᏍᎬ\t-11.054\n▁ᎠᏂᎷᎩ\t-11.054\n▁ᎤᏕᎰᎯᏍᏗᏳ\t-11.0541\n▁ᎢᏯᏅᏁᎯ\t-11.0541\n▁ᏣᏓᏅᏖᏍᏗ\t-11.0542\n▁ᎾᎦᎸᎳᏗ\t-11.0542\n▁ᎯᎷᎦ\t-11.0542\n▁ᏯᏃᏉ\t-11.0543\nᎷᎬ\t-11.0543\n▁ᏥᏍᎦᏅᏤᎸ\t-11.0544\n▁ᎤᏁᏙᎸᎯ\t-11.0544\n▁ᏣᏚᎵᏍᎪ\t-11.0544\n▁ᎦᏓᎥ\t-11.0545\n▁ᎬᏩᎪᎮᎢ\t-11.0545\n▁ᎿᏛᏁᎲ\t-11.0545\nᏚᎸᏅᎥᏍᎬ\t-11.0545\n▁ᎤᏍᏉᎵᏱ\t-11.0545\nᎹᏂ\t-11.0545\n▁ᎤᏓᏔᏅ\t-11.0547\n▁ᎤᏓᏅᏍᏗᏱ\t-11.0547\n▁ᎡᏈ\t-11.0547\n▁ᎣᏤᎯ\t-11.0548\n▁ᏚᎾᎴᏅᎩ\t-11.0548\nᏅᏓᏛᎩ\t-11.0548\n▁ᎠᎦᏛᏅᎯ\t-11.055\nᎣᏏᏉ\t-11.055\n▁ᏕᏣᎸᏫᏍᏓᏁᎲᎢ\t-11.055\n▁ᏓᎩᏏᎳᏛᎢ\t-11.055\n▁ᏚᏬᏢᏁᎢ\t-11.055\n▁ᏧᏑᏰᏛ\t-11.055\n▁ᎤᎾᎵᏎᎢ\t-11.0551\n▁ᏗᎬᏔᏅᎯ\t-11.0551\n▁ᎢᎦᎵᏍᏕᎸᏙᏗ\t-11.0552\nᏁᏅᏍᏗᏱ\t-11.0552\nᏂᏃᏁᎴ\t-11.0552\n▁ᎤᎳᏏᏕᏂ\t-11.0553\n▁ᎪᎵᏍᏗᏱ\t-11.0553\n▁ᎢᎨᏨᏁᏗ\t-11.0554\n▁ᏚᏂᎧᏁᎢ\t-11.0554\n▁ᎾᏆᏍᏗ\t-11.0554\n▁ᎠᏇᎷᏅ\t-11.0558\n▁ᎠᏯᏫᏍᎩ\t-11.0558\n▁ᏚᏪᎧᎲ\t-11.0559\n▁ᏓᏰᏂ\t-11.0559\n▁ᎤᏂᎦᎸ\t-11.0559\n▁ᎠᏂᏍᏆᏂᎪᏗᏍᎩ\t-11.0561\n▁ᎤᎸᏁᎢ\t-11.0561\n▁ᏧᏁᎶᏗ\t-11.0561\n▁ᎠᏇᏅᏒᎩ\t-11.0561\n▁ᏦᏍᏛ\t-11.0562\n▁ᏦᎴᏍᏗ\t-11.0562\n▁ᏴᎨᏨ\t-11.0562\n▁ᏂᏚᏂᏪᏎᎴᎢ\t-11.0562\n▁ᎤᏂᏰᎸᎭ\t-11.0563\nᎿᎷᏒ\t-11.0564\nᎦᏁᎳᏅᎯ\t-11.0565\n▁ᎤᏓᏅᏍᏗ\t-11.0565\n▁ᏪᎯ\t-11.0566\n▁ᏱᏍᏆ\t-11.0566\n▁ᎤᎵᏍᏙᏔᏅ\t-11.0567\n▁ᏕᎤᎸᏫᏍᏓᏁᎲᎢ\t-11.0568\n▁ᎲᏅᎢ\t-11.0569\n▁ᏓᎾᎵᏍᏓᏴᎲᏍᎬᎢ\t-11.0569\n▁ᏄᎵᏍᏓᏁᎸᎢ\t-11.0569\n▁ᏓᏘᏁᎲᎢ\t-11.0569\n▁ᏚᏂᎸᏫᏍᏓᏁᎮ\t-11.0569\nᎧᎵᎢᏍᏗᏱ\t-11.0569\n▁ᎠᏓᎴᏒᎢ\t-11.057\n▁ᎤᎫᏴᎡᏗ\t-11.057\n▁ᎤᏁᏓᏍᏗᏱ\t-11.057\n▁ᏚᏓᏘᎿᎥᎢ\t-11.057\n▁ᏪᏙᎮ\t-11.057\n▁ᎤᏓᏅᎡᎴᎢ\t-11.0571\n▁ᎠᎧᏘ\t-11.0571\n▁ᏕᎦᏬᏁᏗᏍᎬᎩ\t-11.0572\n▁ᎨᎳᏍᏙᏗ\t-11.0572\n▁ᎤᏁᎷᎬᎩ\t-11.0573\n▁ᎠᏓᏁᏣᏍᏚᎶᎩ\t-11.0573\n▁ᎠᏰᎸᏒᎩ\t-11.0574\nᏛᏗᏍᎪᎢ\t-11.0575\n▁ᎤᏚᎵᎭ\t-11.0576\nᎦᏂᏌᎲ\t-11.0577\n▁ᎤᏬᎯᏳᏅᎩ\t-11.0577\n▁ᏧᎧ\t-11.0578\n▁ᎤᏂᏁᎢᏍᏔᏅ\t-11.0578\nᎦᏌᎴ\t-11.0578\n▁ᏓᎻ\t-11.0581\nᏆᏠ\t-11.0582\n▁ᎨᏍᏓ\t-11.0582\nᏰᏲᎲᏍᎩ\t-11.0585\nᏃᎯᏎᏗ\t-11.0586\n▁ᏗᏍᏓᏱ\t-11.0587\n▁ᎠᏂᏍᎦᎢᎮᎢ\t-11.0588\n▁ᏚᎾᏄᎪᏫᏎᎸ\t-11.0588\n▁ᎠᏁᎵᏍᎪ\t-11.0592\nᏙᏱ\t-11.0592\n▁ᎤᎵᎮᎵᏨᎯ\t-11.0593\nᏠᎯᏍᏓ\t-11.0593\n▁ᏥᏯᎥᎢ\t-11.0593\n▁ᎡᎶᏗᏏ\t-11.0594\n▁ᏑᏟᎶᏛᏉ\t-11.0594\nᎨᏳᏅᎾ\t-11.0594\n▁ᏚᏂᏍᏘᏰᎬ\t-11.0597\n▁ᏂᏓᏛᏁᎲ\t-11.0598\n▁ᏥᎪᎥᎩ\t-11.0601\n▁ᏧᎴᎯᏐᏗ\t-11.0602\n▁ᏕᏨᏅ\t-11.0603\n▁ᏄᏕᏘᏴᎲ\t-11.0603\n▁ᎤᏒᏂᎴᎢ\t-11.0605\n▁ᎤᏃᏛ\t-11.0607\n▁ᏌᎾ\t-11.0608\n▁ᎤᏂᏂᏴᎮ\t-11.0608\n▁ᎠᎾᏗᏍᎬᎢ\t-11.0609\n▁ᎦᏓᏍᎬ\t-11.061\n▁ᎤᎾᏄᎪᏫᏏ\t-11.061\n▁ᏁᏨᏁᎸ\t-11.061\n▁ᏚᏂᏏᏂᏙᎸ\t-11.061\n▁ᎦᏰᏥᏐᏢ\t-11.0611\n▁ᏂᏕᏨᏁᎸ\t-11.0611\nᏣᏉᎯ\t-11.0613\n▁ᏚᏯᏪ\t-11.0614\n▁ᏦᏨ\t-11.0615\n▁ᎨᏥᏚᎢᏍᏓᏁᎸ\t-11.0618\nᏳᏓᎴᏏ\t-11.0621\nᏓᏂᎧᎿᏩᏕ\t-11.0621\n▁ᏧᏂᏲ\t-11.0621\n▁ᏅᏔ\t-11.0622\n▁ᎤᏪᏴᎢ\t-11.0624\n▁ᎤᏰᎸᏅᎩ\t-11.0624\nᏓᏙᎵᏍᏔᏂ\t-11.0624\n▁ᎵᏳ\t-11.0625\nᏗᎦᎵᏍᏙᏗ\t-11.0627\nᏙᎥᎯᏍᏗ\t-11.0628\n▁ᎤᏂᏅᏅ\t-11.0629\n▁ᎤᎾᏄᎪᏫᏎᎴᎢ\t-11.063\n▁ᎢᏍᎩ\t-11.0631\n▁ᎠᎴᏂᏍᎬ\t-11.0633\n▁ᎠᏁᎵᏍᎬᎩ\t-11.0633\nᏁᎩᏎᎢ\t-11.0634\nᏲᎵᎸ\t-11.0637\nᏙᎲ\t-11.0638\n▁ᏂᎨᏎᎢ\t-11.0638\n▁ᎡᎵᏍᎬᎢ\t-11.0639\nᏓᏁᎲ\t-11.064\n▁ᏓᏂᎧᏅᎢ\t-11.064\n▁ᎠᏂᏙᎾᎡᎢ\t-11.0641\n▁ᏓᏂᎳᏫᎥᎢ\t-11.0641\n▁ᎾᏋ\t-11.0641\n▁ᏂᏚᏪᏎᎸᎢ\t-11.0641\nᏂᎷᏥ\t-11.0643\n▁ᎢᏣᏕᎶᏆ\t-11.0643\n▁ᏄᏛᏁᎸᎾ\t-11.0645\n▁ᎤᏛᎦ\t-11.0648\n▁ᎤᎩᏎ\t-11.065\n▁ᏭᏂᏴᎮ\t-11.0653\n▁ᎯᎩ\t-11.0654\n▁ᎡᎳᏪᏉ\t-11.0655\n▁ᏣᎩᏍᏗ\t-11.0656\n▁ᏗᎦᏙᏗ\t-11.0659\n▁ᏚᏲᎯᏎᎴ\t-11.0663\n▁ᏧᏬᎸᎢ\t-11.0664\n▁ᎾᏉᎯᏳ\t-11.0664\n▁ᎠᎦᏔᎯ\t-11.0666\nᎦᏙᎥᏒᎯ\t-11.0668\n▁ᏥᏕᎭ\t-11.0671\n▁ᏄᎵᏍᏔᏁᎴ\t-11.0672\n▁ᏣᎪᏩᏘᏍᎪ\t-11.0673\nᎳᏅᏛ\t-11.0674\n▁ᏥᏰ\t-11.0675\n▁ᎤᏍ\t-11.0676\n▁ᏄᏂᏪᏎᎸ\t-11.0677\n▁ᎠᏚᎢᏍᏛᎢ\t-11.0678\nᏪᎳ\t-11.0682\n▁ᏟᏗ\t-11.0685\nᎯᏉ\t-11.0686\n▁ᎤᎾᏓᏅᏖ\t-11.0689\n▁ᏩᎾᎢᏒ\t-11.0689\n▁ᎤᏂᏲᎭ\t-11.0692\n▁ᎤᏕᏗ\t-11.0692\nᎦᏍᎦᏂᏗᏢ\t-11.0696\nᏍᏕᎸ\t-11.0698\n▁ᏫᏯ\t-11.0699\n▁ᏗᎦᏘᏯ\t-11.07\n▁ᎦᏁᎲᎩ\t-11.0701\n▁ᎠᎾᎵᏥᏙᎲᏍ\t-11.0701\n▁ᎤᏢᏗ\t-11.0702\n▁ᎠᏂᏙᎾᎥᎩ\t-11.0702\n▁ᏣᏉᎩ\t-11.0704\nᎴᏂᏓᏍᏗ\t-11.0704\n▁ᎣᎦᎵᎪ\t-11.0705\nᏓᎴᏅᎯ\t-11.0707\n▁ᏚᏅᏎᎢ\t-11.071\n▁ᏱᏗᏓ\t-11.0714\nᏗᏔᎯ\t-11.0715\nᏔᎳᏬᎯᏍᏗ\t-11.0715\n▁ᏄᎾᏛᏁᎸᎢ\t-11.0716\nᏆᎳ\t-11.0717\n▁ᏚᎾᎵ\t-11.0721\nᏲᎦᏛᏅ\t-11.0721\n▁ᎤᏩᎨᏫᏎ\t-11.0722\n▁ᏪᏥ\t-11.0723\nᏅᏓᏗᏍᎬ\t-11.0723\n▁ᎠᎩᏍᎨᏍᏗ\t-11.0726\n▁ᎧᏃᎮᏍᎬᎢ\t-11.0726\nᏚᎪᏓᏁᏗ\t-11.0728\n▁ᎠᏍᏆᎸ\t-11.0732\n▁ᎠᏂᎵ\t-11.0735\n▁ᎦᏅᎬᎢ\t-11.0735\n▁ᎬᏩᎷᏤᎮ\t-11.0737\n▁ᎢᏧᏓᎴ\t-11.0741\n▁ᎤᏂᏄᎪᏨᏃ\t-11.0745\nᏤᎯ\t-11.0752\n▁ᎤᎶᏗ\t-11.0756\n▁ᏇᎵ\t-11.0756\n▁ᎠᏗᏍᎨ\t-11.0757\nᏃᎮᎮᎸ\t-11.0758\nᏅᎡᎵ\t-11.0758\nᎦᏍᏙᏗ\t-11.0758\nᏍᏓᏁᎸᎯ\t-11.0761\n▁ᎤᏅᏏᏛ\t-11.0762\nᏁᎵᏍᎬ\t-11.0765\n▁ᎤᎷᏤᎸ\t-11.0765\n▁ᏱᏙᎨ\t-11.0766\n▁ᎤᏪᎷᎬ\t-11.0767\nᏥᏄᎪᏫᏍᏗ\t-11.0768\nᏅᏗᏍᎪ\t-11.0769\n▁ᎧᏁ\t-11.0769\n▁ᎢᏥᏍᎦᏅᏨ\t-11.0771\n▁ᏮᏓᏲ\t-11.0777\nᏆᏓ\t-11.0779\n▁ᏨᏍᎩᏃᎢ\t-11.0787\n▁ᏱᏗᏗ\t-11.0787\n▁ᎠᏆᎧᏛᎢ\t-11.0787\n▁ᎤᏁᎵᏍᏗ\t-11.0788\n▁ᎤᏪᎯ\t-11.0789\n▁ᎤᏂᏣᏖᏰᏃ\t-11.0791\n▁ᎤᏰᏤᎢ\t-11.0794\nᏣᏘᏃᎵ\t-11.0794\n▁ᎤᏃᏢᏗ\t-11.0795\n▁ᏯᏛ\t-11.0795\n▁ᏥᎦᎶ\t-11.0796\n▁ᏫᏓᎦ\t-11.08\n▁ᎦᏁᎲᎢ\t-11.0803\nᏓᏅᎯᏓ\t-11.0806\n▁ᎠᏰᏙᎳᏛᎢ\t-11.0807\n▁ᏚᎴᏅᎩ\t-11.0808\nᏴᏍᏗᏱ\t-11.0811\nᏅᎢᏍᏗᏱ\t-11.0813\n▁ᎤᏁᏅᏎᎢ\t-11.0813\nᏥᎶᏍᏔᏅ\t-11.0813\nᎩᎪᏩᏛᏗᏱ\t-11.0813\nᏣᏛᏂᏏ\t-11.0824\n▁ᎢᏨᏴ\t-11.0831\n▁ᎦᎶᏍᎬ\t-11.0831\nᎴᏫᏍᏔᎾ\t-11.0832\n▁ᎤᏬᎯᏳᏁ\t-11.0834\n▁ᏧᎳ\t-11.0839\n▁ᏗᎵ\t-11.0842\n▁ᎤᏴᏍᏗᏱ\t-11.0843\n▁ᏗᏦᎸ\t-11.0844\nᎵᏂᎩᏛ\t-11.0846\n▁ᎦᏬᏂᏍᎬᎩ\t-11.0846\nᏛᏅᎢᏍᏕ\t-11.0848\nᎷᏤᎸᎩ\t-11.0849\n▁ᏓᏯ\t-11.0852\n▁ᎤᏁᏤᎸᎯ\t-11.086\n▁ᎤᎯᏍᏗᏱ\t-11.086\n▁ᏧᏪᏅᏒᎢ\t-11.0861\n▁ᎤᏃᏴᎬᎢ\t-11.0862\n▁ᏳᏂᏰᎸ\t-11.0864\n▁ᎢᏣᎵ\t-11.0865\n▁ᎤᏂᎲᎢ\t-11.0866\n▁ᏕᎨᎦᎸ\t-11.0874\n▁ᏳᎳ\t-11.0878\nᏯᎩᏍᏗ\t-11.0879\n▁ᏚᏭᏢ\t-11.088\n▁ᎤᏕᏅᎢ\t-11.0882\n▁ᏕᎦᏁᎲ\t-11.0882\n▁ᎤᏃᏢ\t-11.089\n▁ᎦᎪᎨ\t-11.0896\nᏛᏃ\t-11.0902\n▁ᎠᎦᏛᏅ\t-11.0915\n▁ᏚᎧᎿᏅᏃ\t-11.0916\n▁ᎢᎦᏛᏍᎩᏂ\t-11.0916\n▁ᎢᎩᏴᏁᏗ\t-11.0916\nᏒᏍᏗ\t-11.0916\n▁ᏗᏓᎴᏂᏍᎬᎢ\t-11.0917\n▁ᎢᏳᎾᎵᏍᏔᏅ\t-11.0917\n▁ᎠᎢᏒᏃ\t-11.0923\n▁ᏗᎦᎦ\t-11.0933\n▁ᎨᏥᏁᏤᎸ\t-11.0939\nᏍᎦᎳᏁ\t-11.0943\n▁ᏕᎨᎦᏛ\t-11.0943\n▁ᎦᏅᎦ\t-11.0943\nᎵᏂᎩᏗᏳ\t-11.0946\n▁ᏩᏥ\t-11.0948\n▁ᎨᏆ\t-11.0956\n▁ᎢᏨᏯᎵᏥᏙᏁᎸ\t-11.0957\n▁ᎤᏂᏣᏘᏰᏃ\t-11.0971\n▁ᏚᏂᎩᏒ\t-11.0972\n▁ᎤᏕᏘᏴᏌᏗᏒᎢ\t-11.0972\nᎠᏤ\t-11.0973\n▁ᏕᎤᏙᎥᎢ\t-11.0973\n▁ᎮᎵᏍᎬ\t-11.0993\nᏴᎮ\t-11.0998\n▁ᎨᎥ\t-11.1002\n▁ᎤᎾᏓᏅᏛ\t-11.1005\nᏨᎢ\t-11.1005\n▁ᏏᎻᏯᏂᏃ\t-11.1007\n▁ᎣᏂᎦ\t-11.1008\nᎧᏔᎭ\t-11.1008\n▁ᎤᏲᎯ\t-11.1009\nᏴᏙᏗᏱ\t-11.101\n▁ᎤᏙᏢᏒ\t-11.1014\nᏌᎥ\t-11.1014\n▁ᎤᏂᏁᏨᏃ\t-11.1015\nᏚᎧᎾᏅ\t-11.1016\nᏴᎯᎮᏍᏗ\t-11.1028\nᎳᏅ\t-11.1031\nᏥᏯᏅᏗ\t-11.1035\n▁ᎤᎾᏓᏃᏴᎵᏍ\t-11.104\n▁ᏗᏍᏛ\t-11.104\nᏳᏩᏅ\t-11.104\nᏓᏛᏁᎮᏍᏗ\t-11.1049\nᎦᏖᏃᎲ\t-11.1054\nᏟᎶ\t-11.1054\n▁ᎤᏚᎵ\t-11.1069\nᏥᏐᏅᏅ\t-11.1074\nᏏᎸ\t-11.1074\n▁ᎠᏆᏓᏅᏖᎸ\t-11.1074\n▁ᏗᎦᎸᏫᏍᏓᏁᏗᏱ\t-11.1083\nᏴᎢ\t-11.1096\n▁ᏱᏚᎾ\t-11.1096\nᎪᎲᎩ\t-11.1098\nᏲᎯᏎᎸᎯ\t-11.1103\n▁ᎤᏲᎱᏒᎩ\t-11.1113\nᏥᏍᎦᏨᎯ\t-11.1122\nᎸᏎ\t-11.1123\nᎵᎸ\t-11.1125\n▁ᏓᏕᏲᎲᏍᎨ\t-11.1126\nᏁᏟᏴᏛ\t-11.1127\n▁ᎤᏁᏗ\t-11.1136\nᏍᏛᎩ\t-11.1138\n▁ᏥᏩ\t-11.1142\n▁ᎢᎩᏛ\t-11.1148\n▁ᎢᏳᏓᎵ\t-11.1153\nᎪᏩᏘᏍᎪ\t-11.1159\nᎰᏅ\t-11.1161\nᏣᏓᏙᎵᏍᏗ\t-11.1161\nᏏᏱ\t-11.1162\nᏕᎭ\t-11.1166\nᏣᎾᏄᎪᏫᏎᎸ\t-11.1167\nᎲᏒ\t-11.1173\n▁ᎤᏃᎮᏗ\t-11.1174\n▁ᎦᏅᎢ\t-11.1176\nᏕᎶᏆᏍᏗ\t-11.1177\n▁ᎠᎩᏢ\t-11.1178\n▁ᎤᎵᏏᎬᎢ\t-11.1181\nᎾᎥᎢ\t-11.1184\nᏤᎮ\t-11.1184\n▁ᏧᎾᏙ\t-11.1187\nᎾᏰᏍᎨᏍᏗ\t-11.1188\n▁ᎠᏂᎪ\t-11.1189\n▁ᎦᎸᎳᏗᎨ\t-11.1191\nᏔᏂᏓᏍᏗ\t-11.1192\nᏍᎦᎾᎯᏳ\t-11.1198\nᏄᏬ\t-11.1198\n▁ᎤᎾᏓᏅᏖᏗ\t-11.1199\nᏩᏛᏗᏱ\t-11.1202\n▁ᏕᏣᏂᏴ\t-11.1214\n▁ᏓᏥᏩᏛᎯ\t-11.1214\n▁ᎣᏍᏕ\t-11.122\n▁ᏣᎵᏍᎦᏍᏙᏗ\t-11.1229\nᎦᏓᎭ\t-11.1231\n▁ᏚᏂᎬ\t-11.1233\n▁ᎤᏪᎷ\t-11.1238\nᏥᎶᏍᏗ\t-11.124\n▁ᎠᏐ\t-11.124\n▁ᎬᏓ\t-11.1243\nᏛᎦᏁᎰᎢ\t-11.1245\nᏒᏰᏃ\t-11.1249\nᏂᏪᏏ\t-11.1252\n▁ᎢᏥᏁ\t-11.1259\nᏅᏗᏱ\t-11.1261\nᎩᏍᏙᏗ\t-11.1282\n▁ᏚᏩ\t-11.1287\nᎲᏍᎬᎢ\t-11.1295\nᏢᏈᏍᏗᏱ\t-11.1296\n▁ᏕᏥᎧ\t-11.1299\nᎯᏰ\t-11.1301\nᏛᏅᎯ\t-11.1303\nᏂᎦ\t-11.1311\nᏁᏪᏎᎢ\t-11.1312\n▁ᎢᏥᏴ\t-11.1321\n▁ᏦᎨ\t-11.1334\nᎾᏓ\t-11.1336\nᎨᏴ\t-11.1345\nᏘᏍᎬ\t-11.1347\n▁ᎤᏂᏅᏁ\t-11.1359\n▁ᎤᏍᏕᎸᎲ\t-11.1364\n▁ᏧᏃᏢ\t-11.1368\nᎪᏍᎬ\t-11.1372\nᎦᏘᎴᎩ\t-11.1388\nᎢᏣ\t-11.1397\n▁ᏧᏂᏰᎸ\t-11.1398\nᏂᏏᏅᎯ\t-11.1401\nᏗᏗᏱ\t-11.1402\n▁ᎤᎪᎲᎢ\t-11.1413\n▁ᎢᎭ\t-11.1417\n▁ᏗᎧᎾ\t-11.1428\n▁ᏕᏤ\t-11.1431\n▁ᏚᏲᎯᏎᎸ\t-11.1432\n▁ᏂᎦᏪᏎ\t-11.1435\n▁ᎤᏂᎷᏤᎴ\t-11.1446\n▁ᎪᎱ\t-11.1447\n▁ᏗᏅᏂ\t-11.1454\nᎾᏕᏘᏴᏛ\t-11.1454\nᏅᎯᏒ\t-11.1466\n▁ᏱᏙᏥ\t-11.1467\nᏓᏁᎸᎩ\t-11.1467\nᎧᎭ\t-11.1473\nᏓᏯᏂᏍᎪ\t-11.1475\n▁ᎨᎾ\t-11.148\nᏅᏒᎾ\t-11.1499\nᏁᏤᎸᎭ\t-11.1511\nᏲᎮᎢ\t-11.1511\n▁ᏗᏥᏲᎯᏍᏗ\t-11.1512\n▁ᏧᎾᏓᎴᏅ\t-11.1515\nᏁᎩ\t-11.1518\nᏃᎯᏍᏗ\t-11.1521\nᎨᏳᎭ\t-11.1525\nᎶᏃ\t-11.1532\nᏅᏁᏗᏱ\t-11.1542\nᏎᎴᎢ\t-11.1546\nᎵᏙᎮ\t-11.1548\n▁ᎬᏛᎪ\t-11.1556\n▁ᏍᎩᏉ\t-11.1556\nᎩᏍᏆᏂᎪᏔᏅ\t-11.1557\nᏓᏁᎴ\t-11.1558\nᏆᏟ\t-11.1571\nᏧᎬ\t-11.1572\n▁ᎤᎦᏙᏍᏕ\t-11.1572\nᎵᏦᏛ\t-11.1575\n▁ᎨᎪᏎ\t-11.1583\n▁ᎠᏍᏓᏱᏛ\t-11.1587\n▁ᎠᏂᏫᎾᎨ\t-11.1588\nᎨᏩ\t-11.1598\n▁ᏫᏙ\t-11.1603\nᏑᎶ\t-11.1606\n▁ᏱᏚᏳᎪ\t-11.1609\n▁ᏱᏅ\t-11.161\n▁ᏥᎶ\t-11.1614\nᏓᏴᏎ\t-11.1614\nᎾᎲ\t-11.1622\nᎦᏛᏁ\t-11.1629\nᎢᏍᏔᏅ\t-11.1632\n▁ᎨᏛ\t-11.1641\nᏂᏏᏍᎨᏍᏗ\t-11.1647\n▁ᏦᎠ\t-11.1653\n▁ᎦᏙᎨᏃ\t-11.1663\n▁Ꮦ\t-11.1663\n▁ᏅᏩᎾᏓᎴᎢ\t-11.1668\n▁ᎡᏉ\t-11.1671\nᎴᏙᏗ\t-11.1675\n▁ᎦᎶᎯᏍᏗᏳ\t-11.1676\n▁ᎢᏦᎵᏍ\t-11.1678\n▁ᎤᎾᏚᎵᏍᎨ\t-11.168\nᏂᎩᏓ\t-11.1681\nᏓᏅᏛᎵ\t-11.1681\nᏣᎦᏌᏯᏍᏗᏕᎩ\t-11.1682\n▁ᎤᎮᏍᏗ\t-11.1686\n▁ᎢᏣᏓᏅᏛ\t-11.1694\n▁ᎠᎾᎵᎮᎵ\t-11.1706\n▁ᎤᎸᎢ\t-11.1708\n▁ᏱᏘ\t-11.1712\nᏗᏍᎬᎩ\t-11.1716\n▁ᎠᏥᏅ\t-11.1716\n▁ᎧᏃ\t-11.172\n▁ᏍᎩᏍᏓᏩᏕ\t-11.1721\nᏌᎳᏓᏅ\t-11.1727\nᎧᎵᏎ\t-11.1733\n▁ᏫᏍᏗ\t-11.1734\nᏩᏛᎯᏙ\t-11.1736\nᏍᏓᏁᎸ\t-11.1747\n▁ᎦᏙᎦ\t-11.1753\nᎵᏎ\t-11.1768\n▁ᎤᎾᎵᎪᏎ\t-11.1772\nᏎᏃ\t-11.1776\nᎪᏩᏘᏍᎬ\t-11.1781\n▁ᎠᏍᎪ\t-11.1782\n▁ᎡᏥᏁ\t-11.1783\n▁ᏕᎤᏲ\t-11.1784\n▁ᎤᏂᎧᎵ\t-11.1785\n▁ᏓᏘ\t-11.1791\nᏛᎯᏍᏙᏗ\t-11.1794\nᎵᏍᏓ\t-11.18\n▁ᎠᏉᎯᏳ\t-11.18\n▁ᎠᎦᏅ\t-11.1802\n▁ᏂᎦᏛᏉ\t-11.1808\n▁ᏙᎯᏱᏉ\t-11.1811\nᏣᏉ\t-11.1815\n▁ᏥᏩᎾᎦ\t-11.1816\nᏂᎦᏔᎲᎾ\t-11.1826\n▁ᏯᏇ\t-11.1833\nᏓᏛᏁᏗ\t-11.1841\n▁ᎤᏬᏂᎯᏍᏗ\t-11.1846\nᏏᏯ\t-11.1851\nᏙᎴᎰᏒ\t-11.1852\n▁ᎠᏂᎪᏩᏘᏍᎨ\t-11.1864\n▁ᏨᏆ\t-11.1865\nᏍᏆᏂᎪᏓᏁᏗ\t-11.1866\n▁ᎠᏆᏓᏅ\t-11.1867\nᏥᏍᏔᏅ\t-11.1872\n▁ᏱᏅᏩᏍᏗ\t-11.1877\n▁ᎠᏆᏓᏅᏖ\t-11.1884\nᏬᏁᏔᏅ\t-11.1888\nᏬᏁᏙᏗ\t-11.1894\nᏪᏏ\t-11.1899\nᏲᏍᏔᏅ\t-11.1903\nᏘᏍᎩ\t-11.1904\nᏔᎴᏒ\t-11.1914\nᎨᏎ\t-11.1915\nᎴᏗᏱ\t-11.1917\nᏥᎵ\t-11.1922\nᏎᎵᏙᏗ\t-11.1929\n▁ᎢᏣᏓᏙᎵᏍᏗ\t-11.1939\nᏁᎸᏗᏍᎬ\t-11.1939\nᎵᏍᏕᎸ\t-11.1944\nᏩᏛᎯ\t-11.1948\n▁ᏴᎦᏥ\t-11.1951\n▁ᎠᏍᏚ\t-11.1951\n▁ᏳᏲ\t-11.1955\n▁ᎤᎾᏓᏅ\t-11.196\nᏅᏂ\t-11.196\nᏄᎪᏨᎩ\t-11.1962\n▁ᏕᎦᏘ\t-11.1964\nᏯᏅᎯ\t-11.1967\nᏅᏓᏗᏍᎨᏍᏗ\t-11.1975\nᏍᏕᎸᎯᏙᎯ\t-11.1982\n▁ᎥᏝᏍᎩᏂ\t-11.1998\n▁ᏴᏗ\t-11.2\nᏍᏙᎢ\t-11.2003\nᏩᏓ\t-11.2011\nᏍᏓᏲ\t-11.202\nᏚᎵᎭ\t-11.2023\nᎧᏂᏍᎬ\t-11.2025\nᎮᎵ\t-11.2028\nᎶᏅ\t-11.2042\n▁ᎠᏰᎵᏉ\t-11.2047\nᎵᏍᎩ\t-11.2048\nᏁᎦ\t-11.2049\nᏂᏪᏎ\t-11.2052\n▁ᎤᏄᎪᏫᏎ\t-11.2054\n▁ᎠᏍᏆ\t-11.2055\nᏪᏎᎵ\t-11.2059\n▁ᎠᏎᏍᎩᏂ\t-11.206\n▁ᏳᎸ\t-11.2065\nᏁᎶᏕᏍᏗ\t-11.207\n▁ᎤᏂᏩᏛ\t-11.2076\nᏣᎷᏤᏗᏱ\t-11.2084\n▁ᏱᎬᏆ\t-11.2107\nᏙᎵᎪ\t-11.2109\nᎸᎮ\t-11.2115\nᏓᎴᎲᎦ\t-11.2116\n▁ᎦᏪ\t-11.2138\nᏔᏪᏙ\t-11.214\nᏍᏆᏂᎪᏓ\t-11.2142\nᎥᏍᎨᎢ\t-11.2156\nᏲᏙᏗ\t-11.2157\nᎵᎻ\t-11.2164\n▁ᎠᏂᎪᎵᏰᏍᎨ\t-11.2169\nᎵᏍᏆᏙᎾ\t-11.2178\nᏢᏁᎢ\t-11.2185\nᎮᎸ\t-11.2195\nᏦᏒ\t-11.2201\n▁ᎤᏂᏃ\t-11.2201\n▁ᎦᏲ\t-11.2201\n▁ᏯᏆᏓ\t-11.2205\n▁ᎠᎩᏁᎸ\t-11.2219\nᏌᎲ\t-11.2221\nᏥᏓ\t-11.2226\n▁ᎥᏝᏍᏗ\t-11.2227\n▁ᏥᏍᎦᎾ\t-11.2227\n▁ᎤᏩᏎ\t-11.2228\nᏜᏗ\t-11.2229\nᏉᎯ\t-11.223\nᎷᎩᏍᎩ\t-11.2231\nᏰᎬ\t-11.2235\nᏓᏛᏁᎵ\t-11.2235\n▁ᏫᏯᏅ\t-11.2237\nᏇᏓ\t-11.2238\n▁ᏣᏢ\t-11.2242\n▁ᎢᏥᏍᎦᏅ\t-11.2249\n▁ᎤᎩᏍᏗ\t-11.2249\nᎲᏍᎨ\t-11.2254\nᏓᏁᎢ\t-11.2254\nᏛᏁᎰ\t-11.2256\nᎴᏅᏓ\t-11.2258\n▁ᎩᎳᎢ\t-11.2267\nᏓᏑᏴ\t-11.2269\n▁ᎬᏩᎵᎪᏁ\t-11.2271\nᎪᎨ\t-11.2274\n▁ᎠᏑᏴ\t-11.2293\nᎦᏛᎩ\t-11.2297\n▁ᎤᏲᏍᏔᏅ\t-11.2305\n▁ᏗᏕᎶᏆᏍ\t-11.2306\n▁ᎭᏓᏅᏖ\t-11.2309\n▁ᏕᎨᏣ\t-11.2312\n▁ᏙᎬ\t-11.2314\n▁ᏩᏂᎷ\t-11.2316\nᎾᎵ\t-11.2325\n▁ᎠᎩᎨᏳᎯ\t-11.2329\n▁ᏓᏍᎩ\t-11.233\n▁ᎤᏩᏙ\t-11.2333\nᎡᎲᎢ\t-11.2336\nᎴᏅᎮ\t-11.2339\n▁ᎭᏓ\t-11.234\nᏓᏙᎵᏍᏓᏏ\t-11.2344\nᏑᎸᏓ\t-11.2349\nᏍᏔᏅᎢ\t-11.2352\n▁ᎠᏂᎾ\t-11.2354\nᎨᎯᏙᎸ\t-11.2354\n▁ᏄᏩᏁ\t-11.2359\n▁ᏳᏓᏑ\t-11.2363\nᏲᏎᎸ\t-11.2375\nᏪᏒ\t-11.2375\nᎨᏥᏁᏗᏱ\t-11.2377\nᏥᎾᏄᎪᏫᏎᎸ\t-11.2378\nᏍᎪᏒ\t-11.2379\nᎣᏁ\t-11.238\n▁ᏗᏍ\t-11.24\nᎾᎡ\t-11.2406\nᎵᏓ\t-11.2409\nᏲᎮᏗ\t-11.2417\nᎲᏍᏗᏱ\t-11.2417\n▁ᏓᎨ\t-11.2419\n▁ᏂᏥᏪᏎ\t-11.2429\n▁ᎠᏥᎸᏃ\t-11.2434\n▁ᎤᏍᏛ\t-11.2436\n▁ᏈᏂ\t-11.2441\nᏂᏍᎨᏍᏗ\t-11.2441\nᏚᎸᏅᏗ\t-11.2442\nᎵᏬ\t-11.2443\n▁ᎦᏐ\t-11.2444\nᏂᏢᏗᏱ\t-11.2444\nᏕᎨ\t-11.2449\n▁ᏩᏆ\t-11.2451\n▁ᏬᎩ\t-11.2455\nᏤᏪ\t-11.2456\nᏍᎦᏯ\t-11.2457\n▁ᎾᏥᎸᏉ\t-11.2462\nᏅᏩᏍᏗᏉ\t-11.2465\nᏓᎨᏳᏗ\t-11.2468\nᏥᏯᏅᏛ\t-11.2472\nᎩᏛ\t-11.2475\nᏲᎱᎯ\t-11.2482\nᏘᏎᎢ\t-11.2483\nᏍᏓᏩᏕᏏ\t-11.2483\nᎪᏒ\t-11.2483\nᎪᎵᏰᏍᎨᎢ\t-11.2485\nᏣᏁ\t-11.2486\n▁ᏚᎵ\t-11.2492\nᏓᏘᏂᏙᎯ\t-11.2501\n▁ᏚᎾᎵᎪ\t-11.2507\n▁ᏄᎵᏍ\t-11.2508\nᏠᎠᎯ\t-11.2514\nᏃᎮᏗ\t-11.2525\n▁ᎤᎷᏨᏃ\t-11.2527\nᎳᏏᏕᏂ\t-11.2528\n▁ᎠᏆᏛ\t-11.253\n▁ᏳᏪ\t-11.2531\nᏂᏱᏍᎨ\t-11.2542\nᎴᏅᎲ\t-11.2542\nᏙᎾ\t-11.2542\n▁ᎠᏂᏯᏫᏍᎩᏃ\t-11.2543\nᏐᏢ\t-11.2546\n▁ᎠᏴᏉ\t-11.255\nᏕᏣᏙ\t-11.2569\nᏍᎦᏅᏨᎢ\t-11.2569\nᏍᏛᏗ\t-11.2571\n▁ᎠᏂᎡ\t-11.2581\n▁ᏧᏅᏏ\t-11.2588\nᏲᎱᎯᏍᏗ\t-11.2593\nᎦᏓ\t-11.2594\nᏓᏗᏍᏗ\t-11.26\n▁ᎠᎵᏥ\t-11.2604\nᏛᏛᎲᏍᎦ\t-11.2607\n▁ᎠᏓᏍᏕᎵ\t-11.2607\n▁ᏂᏣᎵᏍᏓᏁ\t-11.2609\n▁ᎤᏐᏅᎢ\t-11.2614\nᏒᎦᎸ\t-11.262\nᏍᎪᎵ\t-11.2628\nᏚᎩ\t-11.2634\n▁ᏳᏃᏴ\t-11.2643\nᏨᏍᏗᏱ\t-11.2643\nᏙᎦ\t-11.2644\n▁ᎥᏆ\t-11.2645\n▁ᎠᏍ\t-11.2657\nᎮᎯ\t-11.2661\nᏢᏔᏅᎯ\t-11.2664\nᏚᎵᏍᎨ\t-11.2675\nᎯᏍᏗᏍᎬ\t-11.2676\nᎦᏉ\t-11.268\nᏥᎦᏔ\t-11.2687\n▁ᏂᎦᏥᏴᏁ\t-11.269\nᎸᏉᏓ\t-11.2691\nᏫᏎᎢ\t-11.2695\nᏎᎸᎢ\t-11.2703\nᏄᎪᏫᏒᎯ\t-11.2713\n▁ᏅᏓᏳᏓᎴ\t-11.2725\n▁ᏗᎩᏍᏗ\t-11.2732\n▁ᏅᎵᏌᎵ\t-11.2742\nᏘᏃᎯᏍᏗ\t-11.2746\n▁ᏅᏩ\t-11.2747\nᏥᏲᏍᏙᏓᏁ\t-11.2752\nᏲᎯᏏ\t-11.2756\nᏍᏗᏂ\t-11.2757\nᏍᏚᎩᏒ\t-11.2759\n▁ᎠᏕᎸᏃ\t-11.2764\nᎶᎥ\t-11.2764\nᎪᏩᏗᏍᎬ\t-11.2766\nᏍᎬᎾᏉ\t-11.2767\nᏣᎴᏛ\t-11.2767\n▁ᏱᏚᏓ\t-11.2767\nᏃᏅᎯ\t-11.2772\n▁ᏯᎩᎪ\t-11.2774\nᎦᎵᎰ\t-11.2782\nᎦᎶ\t-11.2788\nᏢᎭ\t-11.2793\nᏴᏔᏅᎩ\t-11.2795\nᎯᏛ\t-11.2796\nᏚᏓᏲᏎ\t-11.2796\nᏧᏔᏅ\t-11.2799\nᏐᎾ\t-11.2799\nᏍᏕᎢ\t-11.2799\n▁ᏁᏩᏔᎵ\t-11.28\n▁ᏯᎦᏓ\t-11.2803\n▁ᏚᏩᏛᎲ\t-11.2803\nᏎᎰᎢ\t-11.281\n▁ᎯᏁᎩ\t-11.2813\nᏏᏅᏍᏗ\t-11.2815\nᏍᏆᎵᏍᎬ\t-11.2815\n▁ᏕᏥᏯ\t-11.2817\nᎪᎰᏍ\t-11.2825\nᏛᎦᏅ\t-11.2839\nᎡᏃ\t-11.2839\n▁ᏘᏁ\t-11.2839\n▁ᎤᎾᎴᏅ\t-11.2843\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎬ\t-11.2845\n▁ᎬᏩᏃᎯᏳ\t-11.2849\nᎾᏄᎪᏫᏒ\t-11.2851\nᎪᎯᏳ\t-11.2853\n▁ᏕᎪᏢᏒ\t-11.2855\nᎦᏌᏯᏍᏙᏗ\t-11.2856\n▁ᎦᎦ\t-11.2861\nᏗᏢᏍᏙᏗ\t-11.2864\nᏁᎢᏍᏗᏍᎬ\t-11.2867\n▁ᎤᏂᏩᏒ\t-11.2871\nᎩᏍᏓ\t-11.2874\n▁ᎤᏢᎬ\t-11.2882\nᎨᏳᎯ\t-11.2882\n▁ᎠᏥᏰᎸᎾᏁ\t-11.2889\nᏥᎷᎩ\t-11.289\nᏙᎴᎰᏎ\t-11.289\nᏘᏓ\t-11.2891\nᏍᏕᎵᏍᎪ\t-11.2892\n▁ᏓᏟᎶᏍᏗ\t-11.2894\n▁ᏑᏟᎶᏛ\t-11.2895\n▁ᏭᏭᏍ\t-11.2895\nᏚᏲᏎ\t-11.2899\n▁ᏆᏏ\t-11.2899\n▁ᏱᏓᎾ\t-11.2901\n▁ᎦᏅᎪᎢ\t-11.2902\nᎦᎸᎲᎩ\t-11.2905\nᏗᏉ\t-11.2906\n▁ᏴᏓ\t-11.2907\n▁ᎤᏅᏂ\t-11.291\n▁ᏂᏓᏙᏓᏈᏒ\t-11.291\n▁ᎾᎬᏁᎴ\t-11.291\n▁ᎠᎧᎵ\t-11.291\n▁ᏂᏚᏍᏕ\t-11.2913\nᎤᏨᏉᏗ\t-11.2913\nᎢᏗᎦᏘ\t-11.2914\nᏘᏅᏍᏔᏁᎢ\t-11.2914\n▁ᏚᏄᏩᎥ\t-11.2916\nᎤᏂᎷᏤᎢ\t-11.2916\n▁ᎤᎾᏅᏁ\t-11.2916\nᏒᎮᏱᏣ\t-11.2917\n▁ᎡᏌ\t-11.2918\n▁ᏕᏣᎸᏫᏍᏓᏁᎸ\t-11.2918\nᎧᏃᎮᏛ\t-11.2918\nᎢᏥᏈᏱ\t-11.2918\n▁ᎦᎵᎡᎵᎬ\t-11.2919\nᎠᎬᏱ\t-11.2919\n▁ᎾᎩᏪᏒ\t-11.2919\n▁ᎤᏃᎯᏳᏁ\t-11.292\nᎵᎪᎯ\t-11.2923\n▁ᎾᏂᏪᏍᎨ\t-11.2924\n▁ᏚᏓᏘᎿᎥ\t-11.2924\n▁ᏕᎤᎸᏫᏍᏓᏁᎲ\t-11.2925\n▁ᏚᏍᎫᏓᏛ\t-11.2925\n▁ᏄᎵᏍᏓᏁᎸ\t-11.2925\n▁ᎤᎵᏖᎸᏁ\t-11.2925\nᏇᎵᏥ\t-11.2925\nᏉᎡᏗ\t-11.2926\n▁ᎤᏔᏪᏙᏁ\t-11.2926\n▁ᎤᏎᎵ\t-11.2926\n▁ᏂᏣᏓᎨᏳᏒ\t-11.2926\n▁ᎤᏓᏙᎵᏍᏔᏁ\t-11.2927\n▁ᏚᏄᎪᏔᏅ\t-11.2929\n▁ᎤᏪᏍᎩᎸ\t-11.2929\n▁ᏱᏄᎵᏍᏔᏁ\t-11.293\n▁ᏚᏂᏢᎬ\t-11.293\n▁ᏧᎶᏎ\t-11.293\n▁ᎤᎴᏂᏙᎴ\t-11.2931\n▁ᎲᏅ\t-11.2932\n▁ᎢᏣᏚᎵᏍᎬ\t-11.2932\n▁ᏓᎾᎵᏍᏓᏴᎲᏍᎬ\t-11.2932\n▁ᎢᏥᏁᎬ\t-11.2933\n▁ᏫᏥᎦᏛ\t-11.2935\n▁ᎤᏓᏅᎡᎴ\t-11.2935\n▁ᏂᏚᏩᏁᎴ\t-11.2936\n▁ᏓᏅᏗᏍᎬ\t-11.2936\nᎯᏢᎾ\t-11.2938\nᏍᏓᏩᏛᏎ\t-11.2939\n▁ᎾᏂᎡ\t-11.294\n▁ᎤᏍᎩᏓᏒ\t-11.294\n▁ᎠᏥᏃᎮᏍᎬ\t-11.294\n▁ᎢᏳᎵᏍᏔᏅ\t-11.294\n▁ᎢᏨᏰᎳᏗᏙᎲ\t-11.2941\n▁ᎤᏍᏓᏱᏛ\t-11.2941\nᎵᎨᏂ\t-11.2945\n▁ᎨᎬ\t-11.2945\n▁ᎤᏍᎦᎴ\t-11.2948\nᏚᏓᏕᏫᏒ\t-11.2948\n▁ᎤᏑᎵᎪᏨ\t-11.2948\n▁ᎤᏮᏔᏅ\t-11.2949\n▁ᏚᏂᏲᎱᏒ\t-11.295\n▁ᎤᏓᏅᏁ\t-11.2951\nᏍᏉᎵᏱ\t-11.2951\n▁ᏂᎦᎵᏍᏗ\t-11.2952\n▁ᎠᏄᎯᏍᏗᏍᎬ\t-11.2953\nᎦᏘᏗᏍᏗᏱ\t-11.2955\n▁ᏥᏬᏂᏍᎬ\t-11.2955\nᏍᎩᏓᏎᎢ\t-11.2957\nᎵᏍᎪᎸᏗᏍᎬ\t-11.2957\n▁ᏚᎾᎴᏅ\t-11.296\n▁ᎤᏯᏅᎮ\t-11.2961\n▁ᏣᏁᏨ\t-11.2961\n▁ᎠᏆᎴᏅ\t-11.2964\n▁ᏪᏙ\t-11.2964\nᎸᎥᏍᎬ\t-11.2964\n▁ᎣᎪᎯᏳ\t-11.2964\nᎸᏍᎦ\t-11.2964\n▁ᎣᎦᏣᏅ\t-11.2966\nᎾᎾᏛᏁᎰ\t-11.2968\nᎩᏍᏓᏩᏕ\t-11.2968\n▁ᎦᏁᎮ\t-11.2969\nᏙᏢᎾ\t-11.297\n▁ᏗᏘᏲ\t-11.2971\nᏒᎵ\t-11.2971\n▁ᎤᏍᏓᏩᏛᏎ\t-11.2972\n▁ᏗᏘᏂᏙ\t-11.2972\n▁ᎤᏪᎧᎲ\t-11.2974\nᎦᏔᎲᏍᎬ\t-11.2977\nᏲᎵᎴ\t-11.2977\nᏍᏕᎸᎲᎩ\t-11.2978\nᏴᏤᏂ\t-11.2978\n▁ᏦᎩᎾᏫ\t-11.2979\nᏓᏓᏍᎬ\t-11.298\n▁ᏱᏙᎬ\t-11.298\n▁ᏥᎪᏩᏛ\t-11.298\nᏁᎵᏎᎢ\t-11.298\nᎸᏉᏔᏂ\t-11.2981\n▁ᎡᎩᏍᏕᎸᏗ\t-11.2981\n▁ᎦᏅᏆᎶ\t-11.2982\nᏒᎲᏍᎦ\t-11.2982\n▁ᎢᏳᏩᏂᏐᏗ\t-11.2983\n▁ᏗᎬᏩᎸᏌ\t-11.2984\n▁ᎠᏂᏛ\t-11.2984\n▁ᏧᏂᏒᏍᏗ\t-11.2985\n▁ᏣᏁᎮ\t-11.2985\n▁ᎢᏣᏓᏅᎦᎸ\t-11.2986\n▁ᎢᏨᏲᏎ\t-11.2987\n▁ᎤᎩᎵᏲᎢᏍᏗ\t-11.2988\nᏩᏁᎦ\t-11.2988\n▁ᏂᎦᎵᏍᏔᏂ\t-11.299\n▁ᎤᏬᏢᏁ\t-11.2992\n▁ᏗᎧᏃᎨ\t-11.2993\nᏍᏆᏂᎪᏗᏳ\t-11.2994\nᏏᏔᏗᏍᏗ\t-11.2995\n▁ᏩᏚ\t-11.2995\nᏠᎠᏒ\t-11.2996\n▁ᎢᏣᎵᏍᏓᏴᏗ\t-11.2996\n▁ᏗᎦᏤᎵ\t-11.2998\n▁ᎦᎷᏨ\t-11.2998\nᏕᏲᏅᎯ\t-11.2999\n▁ᎠᏂᏍᏆᏂᎪᏗᏍ\t-11.2999\nᏄᏬᎡᎢ\t-11.3\nᏂᏁᏨ\t-11.3\nᏓᏂᎵᎨ\t-11.3001\n▁ᎤᏂᏲᎴ\t-11.3001\nᏃᎵᏤ\t-11.3001\nᏚᏅᏏᏴ\t-11.3002\nᏙᎴᏆᏍᏗ\t-11.3002\n▁ᎠᏛᎩᏍᎨ\t-11.3002\n▁ᏭᏓ\t-11.3003\nᏁᏤᎮᏍᏗ\t-11.3003\nᏦᏎᎭ\t-11.3004\n▁ᏥᏯᎥ\t-11.3004\nᏓᏅᏓᏗᏍᏗᏍᎩ\t-11.3004\n▁ᎠᏓᎴᏒ\t-11.3005\n▁ᏱᎡᏦᎢᏳ\t-11.3005\nᏓᎾᏕᏒᎲᏍᎪᎢ\t-11.3005\n▁ᎠᏁᏯᏔᎯ\t-11.3005\n▁ᎠᏂᎢᏏᎺᎵ\t-11.3005\n▁ᎠᏍᏕᏱᏛ\t-11.3005\n▁ᎢᏍᎪᏂᏗᏢ\t-11.3005\n▁ᎢᏯᏆᏕᏘᏴᏓ\t-11.3005\n▁ᎤᎾᏓᎪᎾᏙᏗ\t-11.3005\n▁ᎤᎾᏗᏍᎦᏢ\t-11.3005\n▁ᎤᏔᏲᎴ\t-11.3005\n▁ᎤᏩᎬᏘᎶᏓ\t-11.3005\n▁ᎤᏩᎾᏓᎴ\t-11.3005\n▁ᎥᏖᎣᎩ\t-11.3005\n▁ᏁᏥᏪᏎᎸᎭ\t-11.3005\n▁ᏂᎦᏗᎹᏏ\t-11.3005\n▁ᏂᏓᏁᏢᏛᎾ\t-11.3005\n▁ᏂᏗᎬᏩᏓᎴ\t-11.3005\n▁ᏂᏧᏪᏎ\t-11.3005\n▁ᏄᏃᎯᏳᏅᎾ\t-11.3005\n▁ᏒᏗᏩᏟ\t-11.3005\n▁ᏓᎱᏃᎲ\t-11.3005\n▁ᏓᎾᏦᎭᏱᎲ\t-11.3005\n▁ᏓᏂᎳᏍᏓᎳᏩᏗᏒᎢ\t-11.3005\n▁ᏓᏂᎶᏄᎮᏍ\t-11.3005\n▁ᏓᏊᎪᏔᏅ\t-11.3005\n▁ᏓᏟᏰᎵᏙ\t-11.3005\n▁ᏗᎾᎵᏦᎯᏛ\t-11.3005\n▁ᏗᏝᏗᏍᏗᏱ\t-11.3005\n▁ᏙᏛᎾᏓᏡᏔᏂ\t-11.3005\n▁ᏥᏂᏥᏪᎠ\t-11.3005\n▁ᏥᏓᎩᎸᏫᏍᏓᏁᎭ\t-11.3005\n▁ᏥᏕᎭᏘᏁᎭ\t-11.3005\n▁ᏧᏄᏩᎢ\t-11.3005\n▁ᏯᏙᎴᎰᏍᎦ\t-11.3005\n▁ᏱᏓᎴᏂᏙᎭ\t-11.3005\n▁ᏱᏣᏁᎢᏍᏔᏁᏍᏗ\t-11.3005\n▁ᏱᏫᏣᏴᎸ\t-11.3005\n▁ᎤᎩᏠᏫᏎ\t-11.3005\n▁ᎨᏥᎦᏘᏗᏍᏗ\t-11.3005\n▁ᎺᎮᎴᎵ\t-11.3005\n▁ᏂᏚᎾᏁᎶᏛᎾ\t-11.3005\n▁ᏄᏛᎿᏕᎬ\t-11.3005\n▁ᏆᎻᏈᎵᏱ\t-11.3005\n▁ᏓᎦᎫᏴᎯ\t-11.3005\n▁ᏚᏬᏏᏌᏁ\t-11.3005\n▁ᏥᎪᎵᏰᏍᎬ\t-11.3005\n▁ᏨᏓᏯᎢ\t-11.3005\nᎵᏍᎨᏗᏴ\t-11.3005\n▁ᎠᎵᎮᎵᎪ\t-11.3005\n▁ᎤᏪᏟᏌᏁ\t-11.3005\n▁ᎹᎻᎵ\t-11.3005\n▁ᏁᏓᏈ\t-11.3005\n▁ᏙᏓᏥᏲᎱᏏ\t-11.3005\n▁ᏙᏗᎾᎵᏍᏓᏴᎲᏍᎬ\t-11.3005\n▁ᏛᎾᏛᎦᏂ\t-11.3005\n▁ᏮᏘᏯᏅᎯ\t-11.3005\n▁ᏳᎵᏃᎯᏰ\t-11.3005\n▁ᏓᏍᏗᏰᏗᏍᎬ\t-11.3005\nᎩᏪᏎᎲᎩ\t-11.3005\n▁ᎡᎻᎳ\t-11.3005\n▁ᎢᎦᏗᏍᎦᎶᏗᏱ\t-11.3005\n▁ᎩᏅᎪᎢ\t-11.3005\n▁ᏁᎨᏒᎾ\t-11.3005\n▁ᏂᏨᏴᏁᎸ\t-11.3005\n▁ᏧᎾᏓᏂᎸᎢᏍᏗᏱ\t-11.3005\n▁ᏯᏎᎦᎩ\t-11.3005\n▁ᎠᏲᏓᏝᎲᎢ\t-11.3005\n▁ᏚᏂᎧᎮᏍᏗ\t-11.3005\n▁ᏚᏟᏂᏆᏅᏁ\t-11.3005\n▁ᏮᏘᎶᏏ\t-11.3005\n▁ᏯᎵᏖᎸᎮᏍᎬᎾ\t-11.3005\nᎦᎭᎾᏅ\t-11.3005\n▁ᎢᏖᎳ\t-11.3005\n▁ᏂᏪᏎᎸᎭ\t-11.3005\n▁ᏓᏤᎵᏍᏛ\t-11.3005\n▁ᏕᎷᎨ\t-11.3005\n▁ᏬᎩᏅᏍᏔᏅᎩ\t-11.3005\n▁ᎢᎬᏩᏛᏛᏁ\t-11.3005\n▁ᏯᏓᏅᏍᎬᎾ\t-11.3005\n▁ᏥᏄᏩᏁᎸ\t-11.3005\n▁ᎤᏪᏯᎸᏅᎩ\t-11.3005\n▁ᎠᎦᏔᏛᏍᎩ\t-11.3005\n▁ᎤᏎᎦᏨᎯ\t-11.3005\n▁ᎪᎶᏁᏛ\t-11.3005\n▁ᎬᏩᏴᎸᎯ\t-11.3005\n▁ᏘᏰᎸᏂ\t-11.3005\n▁ᏚᎵᏃᎮᏔᏁᎢ\t-11.3005\nᏬᏁᏗᏍᎪ\t-11.3005\n▁ᎬᏍᎦᎵ\t-11.3005\n▁ᏧᏘᏲ\t-11.3005\n▁ᏫᎬᏲᏪᎳᏏ\t-11.3005\n▁ᎡᏗᏂᏱ\t-11.3005\n▁ᏄᏍᏆᏂᎩᏛ\t-11.3005\n▁ᏛᏂᎾᏄᎪᏥ\t-11.3005\n▁ᎢᏦᎵᎩ\t-11.3005\n▁ᏣᏔᎳᏬᏍᎬ\t-11.3005\n▁ᎤᏂᏔᎳᏬᏍᎬᎢ\t-11.3005\n▁ᏁᏍᏗᏪᏎᎸᎭ\t-11.3005\n▁ᎢᏳᎾᏛᎾᏕᎩ\t-11.3005\n▁ᎤᎯᏐᏓᏁ\t-11.3005\n▁ᎤᏕᏒᏂᎸᎯ\t-11.3005\n▁ᎤᎾᎵᏃᎯᏴᎯ\t-11.3005\n▁ᏂᏦᎯᏳ\t-11.3005\n▁ᏓᏑᏫᏍᎬ\t-11.3005\n▁ᎠᏍᎫᏕᏒ\t-11.3005\n▁ᎠᏍᏙᏍᎩ\t-11.3005\n▁ᎤᎵᏌᎵᏓᏁ\t-11.3005\n▁ᏱᏗᏣᏰᎸᏁᎢ\t-11.3005\n▁ᎤᏩᏂᎦᏢ\t-11.3005\n▁ᎠᏙᏂᏍᎩ\t-11.3005\n▁ᎦᏄᎾᏓᎴᎩ\t-11.3005\n▁ᏗᏂᎬᏓᎨᏂ\t-11.3005\n▁ᎢᏣᏓᏟᏌ\t-11.3005\n▁ᏓᏥᏯᏓᏙᎵᏍᏓᏁᎵ\t-11.3005\n▁ᎣᎨᏙᎸ\t-11.3005\n▁ᏙᏛᎾᎴᏂ\t-11.3005\n▁ᏯᏂᎷᎬᎾ\t-11.3005\n▁ᏗᎾᏓᏲᏁᎯ\t-11.3005\n▁ᏧᎵᎦᎸᏓ\t-11.3005\n▁ᏂᏗᎨᏥᎾᏝᎥᎾ\t-11.3005\n▁ᏂᏦᎯᏳᎲᏍᎬᎾ\t-11.3005\n▁ᏗᎨᎦᏛᏅᎯ\t-11.3005\n▁ᏗᏐᏂ\t-11.3005\nᏓᏫᏍᎦᎨ\t-11.3005\n▁ᎠᏂᎷᏨᎭ\t-11.3005\n▁ᎢᏣᏕᏗᏱ\t-11.3005\n▁ᎤᎬᏍᏕᎵ\t-11.3005\n▁ᎪᏢᏅᎥᏍᎩ\t-11.3005\n▁ᏌᎶᎻ\t-11.3005\n▁ᏓᏆᏓᏂᎸᎨᏍᏗ\t-11.3005\n▁ᏙᎩᎾᏦᏒ\t-11.3005\n▁ᎦᎵᏒᏍᏗᏍᎬ\t-11.3005\n▁ᏕᎫᏓᏛ\t-11.3005\n▁ᎢᎬᏂᎮᏍᏗ\t-11.3005\nᎨᏅᏴ\t-11.3005\n▁ᏗᎦᎶᎩᏍᎩ\t-11.3005\n▁ᏗᎾᏓᏙᎵᏍᏓᏁᎯ\t-11.3005\n▁ᎤᏔᏲᎸ\t-11.3005\n▁ᎤᎾᎵᏍᏓᏴᏁᏃ\t-11.3005\n▁ᏂᏓᎾᏓ\t-11.3005\n▁ᏱᏨᏰᎵᏎᎭ\t-11.3005\n▁ᏗᏓᏂᏱᏍᎩ\t-11.3005\n▁ᎩᎵᏯᏗ\t-11.3005\n▁ᏓᏓᏂᏌᎲ\t-11.3005\nᏧᎪᏓᏏ\t-11.3005\n▁ᏅᏓᏳᎵᏍᎪᎸᏔᏅᎯ\t-11.3005\n▁ᎢᏣᏄᏬᏍᏕᏍᏗ\t-11.3005\n▁ᏂᏕᏣᏛᏁᎮᏍᏗ\t-11.3006\n▁ᏍᎩᏯᏛᎦᏁᎸᎯ\t-11.3006\n▁ᎤᎿᎷᏎ\t-11.3006\n▁ᏄᎾᏓᏛᎩ\t-11.3006\n▁ᏙᏓᏳᏲᏏ\t-11.3006\n▁ᎤᏁᎢᎸᏗ\t-11.3006\n▁ᏍᎩᏯᏅᏓᏗᏍᎨᏍᏗ\t-11.3006\n▁ᎤᏓᏁᏟᏴᏍᏓᏁᎴ\t-11.3006\n▁ᎩᏂᏙᏓ\t-11.3006\n▁ᎡᏗᎸᏉᏓ\t-11.3006\n▁ᏕᎦᎧᎮᏍᏗ\t-11.3006\n▁ᏚᎾᎭᏄᏮ\t-11.3006\n▁ᎥᏇᎵᏎᎸ\t-11.3006\nᎯᏣᏛᎦᏍᏓ\t-11.3006\n▁ᎠᎩᎵᏬᎢᏍᏗ\t-11.3006\n▁ᏂᏕᎦᎵᏍᏗᏍᎨ\t-11.3006\n▁ᎠᏛᎩᏍᎩ\t-11.3006\n▁ᎠᏥᏅᏩᏅᎯ\t-11.3006\nᏔᎴᏐ\t-11.3006\n▁ᏅᏛᏂᏪᏏ\t-11.3006\nᎬᏲᎵᎭ\t-11.3006\n▁ᏓᎬᏅᏏ\t-11.3006\n▁ᏗᎩᏂᏴᏗᏱ\t-11.3006\n▁ᏴᎨᏥᎪᏩᏛ\t-11.3006\nᏯᏛᏁᎮᏍᏗ\t-11.3006\n▁ᏓᏂᏂᏓᏛ\t-11.3006\n▁ᏣᎵᏍᏓᏴᏗ\t-11.3006\n▁ᏗᎫᏓᏙᏗ\t-11.3006\n▁ᏧᎾᏓᏅᏬᏗᏱ\t-11.3006\nran\t-11.3006\n▁ᏫᏄᎾᎵᏍᏓᏏ\t-11.3006\n▁ᏗᎦᏃᏙᏗᏱ\t-11.3006\n▁ᎠᏂᏁᏉᎨ\t-11.3006\n▁ᎠᏍᎦᏲᎯ\t-11.3006\n▁ᎬᏍᎦᏅᏤᎸ\t-11.3006\n▁ᎾᏆᏛᏁᎵᏙᎸ\t-11.3006\n▁ᏗᏗᏰᎸ\t-11.3006\n▁ᎤᏁᎵᏨ\t-11.3006\n▁ᏳᏲᎱᏎᎸ\t-11.3006\n▁ᎤᎸᏫᏒ\t-11.3006\n▁ᎬᏩᏂᏅᏫᏍᏔᏂᏙᎯ\t-11.3006\n▁ᏂᏨᏁᎮᏍᏗ\t-11.3006\n▁ᏧᎵᎩᏏ\t-11.3006\n▁ᎠᎾᏟᎲ\t-11.3006\nᏓᏒᏍᏓ\t-11.3006\nᎬᏩᏳᎪᏗ\t-11.3006\nᏍᏓᏩᏗᏒᎩ\t-11.3006\n▁ᏕᎬᏩᏠᏎᎢ\t-11.3006\n▁ᎫᎭᎳ\t-11.3006\n▁ᏧᏭᏓᎴᏍᏗᏱ\t-11.3007\n▁ᏓᏍᏆᏚᎸ\t-11.3007\n▁ᎢᏥᎧᎵᏣ\t-11.3007\n▁ᎠᎾᏟᏃᎮᏍᎬ\t-11.3007\n▁ᏓᏅᏩ\t-11.3007\n▁ᏚᎩᏒᎩ\t-11.3007\n▁ᎤᏓᎾᏏᏅ\t-11.3007\nᏠᏯᏍᏗᏍᎨᏍᏗ\t-11.3007\n▁ᎪᏢᏛᎩ\t-11.3007\n▁ᏧᏁᏅᏒ\t-11.3007\n▁ᎠᎩᏲᏏᏍᎬ\t-11.3007\n▁ᏚᏁᏅᏒ\t-11.3007\n▁ᏃᎦᏛᏅ\t-11.3007\n▁ᏗᎩᏣᏗ\t-11.3007\n▁ᏭᏓᏓᎩᏅᏎ\t-11.3007\n▁ᎢᏍᏗᏙᏓ\t-11.3007\n▁ᏫᏲᏪᎳᏏ\t-11.3007\n▁ᎡᎶᏂᎵ\t-11.3007\n▁ᏗᏂᎦᏘᎴᎩ\t-11.3007\nᏏᏀᎥ\t-11.3007\nᎫᏘᎶ\t-11.3007\n▁ᎠᏆᎵᏥᏙᏗᏱ\t-11.3007\n▁ᏱᏂᏓᎦᎵᏍᏔᏂ\t-11.3007\n▁ᎤᏓᏍᏛᏗᏍᏗ\t-11.3007\n▁ᏚᏙᏓᏈᏒ\t-11.3007\n▁ᏚᎵᎬᏩᏢ\t-11.3007\n▁ᏫᎦᎢᏒ\t-11.3007\n▁ᏭᏕᏁᎢ\t-11.3007\n▁ᏱᏄᏩᏁᎰ\t-11.3007\n▁ᎢᎬᏩᏍᏗᎭ\t-11.3007\n▁ᏕᏣᏓᎨᏳᏎᏍᏗ\t-11.3007\ners\t-11.3008\n▁ᏱᏓᏲᎩ\t-11.3008\n▁ᎠᏓᏅᏖᎸ\t-11.3008\nᎾᏞᎬ\t-11.3008\n▁ᎠᏓᎦᎵᏍᏓᏗᏍᎩ\t-11.3008\n▁ᏘᎹᏂ\t-11.3008\n▁ᏙᏓᎬᏁᎵ\t-11.3008\n▁ᏥᏕᏣᎸᏫᏍᏓᏁᎭ\t-11.3008\n▁ᎤᏪᎷᏅ\t-11.3008\n▁ᏕᏣᎧᎿᏩᏗᏙᎮᏍᏗ\t-11.3008\nᏈᎪᎵ\t-11.3008\n▁ᏕᎦᎵᏦᏛ\t-11.3008\n▁ᎣᏣᎵᎡᎵᏤ\t-11.3008\n▁ᎤᏂᎧᎲ\t-11.3008\n▁ᏥᏍᎦᏅᎩ\t-11.3008\n▁ᎤᏅᏂᏍᏗᏱ\t-11.3008\n▁ᏗᎤᏁᏤ\t-11.3008\n▁ᎠᏂᏍᏆᏂᎪᏍᎨ\t-11.3008\n▁ᏚᎪᏄᎶᏎ\t-11.3008\n▁ᏌᎪᏗ\t-11.3008\n▁ᎢᏥᎩᎵᏲᎬᎢ\t-11.3008\n▁ᎬᏩᏂᏍᏓᏩᏗᏙᎯ\t-11.3008\n▁ᏧᏓᏅᏓᏗᏍᏙᏗᏱ\t-11.3008\n▁ᏧᏪᎷᏁ\t-11.3008\n▁ᏧᏅᎨᏫ\t-11.3008\n▁ᏗᏓᏙᏕᏍᏗᏍᎩ\t-11.3008\n▁ᏚᏃᎩᏎ\t-11.3008\n▁ᏗᏂᏙᎬ\t-11.3008\n▁ᏗᏜᏍᏔᏅᎯ\t-11.3009\nᎵᏍᏘᏂᎸ\t-11.3009\n▁ᏗᎩᏙᏓ\t-11.3009\n▁ᎤᏂᏃᎮᏛ\t-11.3009\n▁ᏄᏂᎪᎸᎾ\t-11.3009\n▁ᎱᎷᏨ\t-11.3009\n▁ᏂᏗᏣᏓ\t-11.3009\n▁ᎠᎩᏲᎱᎯᏍᏗᏱ\t-11.3009\n▁ᏗᎬᏯᏠ\t-11.3009\n▁ᎤᎾᏓᏛᏅᎯ\t-11.3009\n▁ᎢᏣᎵᏍᏓᏴᏗᏍᎨᏍᏗ\t-11.3009\nᏅᏓᏥᏪᏎᎵ\t-11.3009\n▁ᏓᎦᎾᏄᎪᏫᏏ\t-11.3009\n▁ᏣᎩᏯᎠ\t-11.3009\n▁ᎬᏬᎳᏕᏍᎬ\t-11.3009\n▁ᏗᏂᏁᎵᏛ\t-11.3009\n▁ᎠᏥᏂᏌᏅ\t-11.3009\n▁ᏂᏓᎾᏤ\t-11.3009\n▁ᎠᎵᏍᏆᏓ\t-11.3009\n▁ᏓᎬᎷᏤᎵ\t-11.3009\n▁ᎡᏣᏙᎵᎩ\t-11.301\n▁ᏍᎩᏲᏍᏓ\t-11.301\n▁ᎭᏠᎠᎯ\t-11.301\n▁ᎢᏥᎦᏛᏂᏙᎯᏉ\t-11.301\n▁ᏅᏯᏗᎦᎪᏗᏱ\t-11.301\n▁ᎦᎶᎪᏗ\t-11.301\n▁ᏱᎦᏬᏂᎭ\t-11.301\n▁ᎤᎾᏨᏓᎵ\t-11.301\n▁ᎣᎩᎵᏦᏩᏛ\t-11.301\n▁ᏗᏍᎩᏲᎯᏏ\t-11.301\n▁ᎠᎩᎩᎬ\t-11.301\n▁ᎤᏰᎶᎢᏍᏔ\t-11.301\n▁ᏦᏚᎯ\t-11.301\n▁ᏗᎨᏥᏲᎯᏎᎸᎯ\t-11.301\n▁ᏧᏬᏪᎳᏁ\t-11.301\n▁ᎠᏥᏂᏌᏁ\t-11.301\n▁ᎤᏣᏪᏐᎸᏍᏕ\t-11.301\n▁ᏅᏓᏳᎶᎯᏍᏗᏱ\t-11.301\n▁ᏁᏓᏂᎵ\t-11.3011\n▁ᏌᏆᏯ\t-11.3011\n▁ᎾᎩᎲᎾ\t-11.3011\n▁ᏧᎾᏂᏏᏗᏱ\t-11.3011\nᎫᏓᎴᏍᎩ\t-11.3011\n▁ᏂᎦᏖᏍᏗ\t-11.3011\nᏍᏕᎵ\t-11.3011\n▁ᏧᏙᏍᏙᏗ\t-11.3011\nᏰᎸᎾ\t-11.3011\n▁ᎤᎩᏢ\t-11.3011\n▁ᏂᎨᏨᏁ\t-11.3011\n▁ᎨᏥᎩᎵᏲᎢᏍᏙᏗᏱ\t-11.3011\n▁ᏕᎧᏅ\t-11.3011\n▁ᎤᏗᏩᏒᎯ\t-11.3012\n▁ᏓᎶᎨ\t-11.3012\n▁ᏧᎦᏌᏬᎸ\t-11.3012\n▁ᎢᏓᎻ\t-11.3012\nᎾᎵᏍᏓᏁᏗ\t-11.3012\n▁ᏧᏬᏪᎶᏗ\t-11.3012\nᎦᎫᏍᏓᎥ\t-11.3012\n▁ᎠᎦᏙᎥᎯᏍᏙᏗ\t-11.3012\n▁ᏕᎰᏢᏅᎭ\t-11.3012\nᏂᎸᎬᎾ\t-11.3012\n▁ᎪᎭᏗ\t-11.3012\n▁ᎯᏌᏙᏯ\t-11.3012\n▁ᎢᏣᏛᏁᎸᎯ\t-11.3012\n▁ᎤᎾᎵᏍᏓᏴᏁᎢ\t-11.3012\n▁ᏛᏂᎪᎯ\t-11.3013\n▁ᏱᏥᏯᎠ\t-11.3013\n▁ᎪᎵ\t-11.3013\n▁ᎤᎾᏓᏅᏓᏕᎢ\t-11.3013\n▁ᎠᏂᏏᎾᏌᏅ\t-11.3013\n▁ᎤᏯᏪᏐᎴ\t-11.3013\n▁ᎧᏃᎨᏂ\t-11.3013\n▁ᎤᏄᎩᏣᏁ\t-11.3013\nᎾᏙᏓᏆᏍᏗ\t-11.3013\n▁ᎠᏓᏛᏗᏍᎩ\t-11.3013\n▁ᎢᏗᎬᏁᎸᎯ\t-11.3013\n▁ᏧᎾᏨᏍᏗᏱ\t-11.3013\n▁ᏳᏃᎵᏤ\t-11.3013\n▁ᎣᎩᏅᏏᏓᏍᏗ\t-11.3013\n▁ᏗᏥᏅᏏᏓᏍᏗ\t-11.3013\n▁ᎣᎩᎷᏤᎸ\t-11.3013\n▁ᏯᏕᎶᎰᏍ\t-11.3014\n▁ᎭᎦᏌᏯᏍᏓ\t-11.3014\n▁ᏗᏂᎾᏕᎩ\t-11.3014\n▁ᎠᏓᏴᏍᏔᎩᏍᎩ\t-11.3014\n▁ᎤᏁᏐᎠᏒᎩ\t-11.3014\n▁ᎬᏩᎾᏰᏍᎩ\t-11.3014\n▁ᎴᎹᎩ\t-11.3014\n▁ᎠᏥᎶᎥ\t-11.3014\n▁ᎦᏌᎴᏅ\t-11.3014\n▁ᏍᏊᏓᎳᎩ\t-11.3014\nᏓᏅᏛᎳ\t-11.3014\n▁ᏣᏍᎦᎸᎩ\t-11.3014\n▁ᏂᏚᏂᏪᏎᎸᎩ\t-11.3014\n▁ᎰᎯᏳᎲᏍᎦ\t-11.3014\n▁ᏧᏄᎪᏔᏅ\t-11.3014\n▁ᏚᏭᏓᏔᏅᎩ\t-11.3014\n▁ᏚᏂᏚᎲ\t-11.3014\n▁ᎠᏗᏔᏍᎨᏍᏗ\t-11.3015\n▁ᏓᏕᏏ\t-11.3015\n▁ᎠᏍᏆᏂᎪᎯᏍᏗ\t-11.3015\n▁ᎤᎾᏗᏔᏍᏗ\t-11.3015\n▁ᎤᎵᏨᏓᏆᏛ\t-11.3015\n▁ᎠᏖᎵᏙᎩᎯ\t-11.3015\n▁ᏯᏆᏛᏁᎸ\t-11.3015\n▁ᏧᏂᏄᎪᏫᏍᏗᏱ\t-11.3015\n▁ᎤᏁᏍᏔᎳ\t-11.3015\n▁ᎢᏣᎵᏏᎾᎯᏍᏗ\t-11.3015\n▁ᎢᏥᏴᏍᏗᏱ\t-11.3015\n▁ᏕᎦᎶᏛ\t-11.3016\n▁ᎤᏩᏂᎸᎩ\t-11.3016\n▁ᎬᏩᏄᎯ\t-11.3016\n▁ᏗᏣᎵᏂᎩᏗᏳ\t-11.3016\n▁ᏣᏰᎸᏅ\t-11.3016\n▁ᎻᏗᏂᏱ\t-11.3016\n▁ᏫᏥᎶᎯ\t-11.3016\nᎤᏁᏨ\t-11.3016\nᏚᎧᎾᎾ\t-11.3016\nᏪᏎᎸᎯ\t-11.3016\n▁ᏗᎵᏍᏚᎶ\t-11.3016\n▁ᎢᏥᏯᎥᎢ\t-11.3016\nᏕᏯᏙᏗ\t-11.3016\n▁ᏱᎰᏣ\t-11.3016\n▁ᎤᎾᏛᏅᎢᏍᏔᏁ\t-11.3016\n▁ᏗᎧᎿ\t-11.3016\n▁ᏥᏥᏯᎠ\t-11.3017\n▁ᎢᏯᏋᏁᏗᏱ\t-11.3017\n▁ᎤᏓᎪᎵᏰᏗ\t-11.3017\n▁ᎬᎩᏁᏤᎸᎯ\t-11.3017\n▁ᎡᏥᎨᏳᎢ\t-11.3017\n▁ᎠᎩᏅᏏᏓᏍᏗ\t-11.3018\n▁ᎠᏂᎨᏳᏣ\t-11.3018\n▁ᎣᏥᏃᎮᏍᎩ\t-11.3018\n▁ᎤᏓᏅᎡᎸᎩ\t-11.3018\nᏍᏔᏁᎰ\t-11.3018\n▁ᎤᎾᎵᏓᎩᏛ\t-11.3018\n▁ᎬᏩᏂᏴᏗᏱ\t-11.3018\n▁ᎤᏓᏅᏓᏕᎢ\t-11.3018\n▁ᏅᏧᏪᏎᎢ\t-11.3018\n▁ᎤᏙᏯᏅᎯᏛ\t-11.3018\n▁ᎤᏓᏱᎴᎢ\t-11.3018\n▁ᎤᏇᏓᏢ\t-11.3019\n▁ᏥᏄᎾᏍᏗ\t-11.3019\n▁ᎤᎾᏛᏅᎢᏍᏗ\t-11.3019\n▁ᏳᎨᏳᎭ\t-11.3019\n▁ᎤᏂᏍᏆᏂᎪᏔᏅ\t-11.3019\n▁ᏗᎦᏃᎸᏗᏍᎬ\t-11.3019\n▁ᎤᎾᏍᎪᏎ\t-11.3019\n▁ᏦᎨᏅᏒ\t-11.3019\nᏍᏓᏱᏗᏍᏗᏱ\t-11.3019\n▁ᎤᏁᏍᏓ\t-11.302\n▁ᏧᎵᏏᎬ\t-11.302\n▁ᎦᎬᏩᏐᏢᏕᎢ\t-11.302\n▁ᏫᎤᎶᏎᎢ\t-11.302\n▁ᎤᏂᎾᏰᎯᏍᏗ\t-11.302\n▁ᎤᎾᏓᏍᏔᏴ\t-11.302\n▁ᏥᏥᎪᏩᏘᎭ\t-11.302\n▁ᏁᏪᏎᎴᎢ\t-11.302\nᏩᏘᏍᎩ\t-11.3021\nᏌᎩᏒ\t-11.3021\n▁ᏒᎦᎾᏲᎪ\t-11.3021\n▁ᎥᎦᏥᎪᎥᎩ\t-11.3021\n▁ᏧᎾᎵᏍᏓᏴᏗᏱ\t-11.3021\n▁ᏕᎩᎸᏫᏍᏓᏁᎲ\t-11.3021\n▁ᏅᏋᏁᎸ\t-11.3021\n▁ᏭᏩᏅᏓᏕ\t-11.3021\n▁ᎣᎦᎵᎪᏅ\t-11.3021\n▁ᎤᎧᎭᏲᏛ\t-11.3021\n▁ᎦᎸᏍᏙᏗ\t-11.3021\n▁ᏕᎦᏃᏣᎸ\t-11.3021\n▁ᎣᎦᏚᎵᏍᎬ\t-11.3022\n▁ᎤᏓᏅᎦᎸᏓ\t-11.3022\n▁ᏓᎩᏲᎯᏎᎸ\t-11.3022\n▁ᏗᎵᏍᎪᎸᏔᏅᎯ\t-11.3022\n▁ᎭᏙᎴᎰᎯ\t-11.3022\n▁ᎡᎦᏔ\t-11.3022\n▁ᏳᎷᏨ\t-11.3022\n▁ᎠᏗᏍᎦᎶᏗ\t-11.3022\n▁ᏚᏌᎳᏓᏅ\t-11.3023\n▁ᎠᎾᎦᎵᏍᎩ\t-11.3023\nᏒᏁᎰ\t-11.3023\n▁ᎠᏁᎷᎲᏍᎨ\t-11.3023\n▁ᏥᏐᎯ\t-11.3023\n▁ᏓᏍᎩᏁᎵ\t-11.3023\n▁ᏱᏂᏣᏛᏁᎸ\t-11.3023\n▁ᎢᏥᎷᏨᎭ\t-11.3023\n▁ᏧᏄᎪᏙᏗᏱ\t-11.3023\n▁ᏂᎬᏩᏂᏪᏎ\t-11.3023\n▁ᎢᏣᏛᎪᏗᏱ\t-11.3023\n▁ᎢᏳᏂᏪᏍᏗᏱ\t-11.3023\n▁ᏧᏂᎷᏫᏍᏔᏁᏗ\t-11.3023\n▁ᏚᏲᎵᎸ\t-11.3023\n▁ᎤᎾᎵᏍᏓᏴᏅᎯ\t-11.3023\n▁ᎯᏥᏧᏣ\t-11.3023\n▁ᏚᏂᏲᏎ\t-11.3023\n▁ᏓᏞᏍᏗ\t-11.3023\n▁ᎠᎦᎫᏴᎡᏗ\t-11.3023\n▁ᎶᏔᏂ\t-11.3024\n▁ᏧᏏᎳᏛᏙᏗ\t-11.3024\n▁ᎠᏆᏡᏗᏍᎩ\t-11.3024\n▁ᏓᏥᎷᏥ\t-11.3024\nᏗᎦᎴᏲᏤ\t-11.3024\nᎦᎿᏩ\t-11.3024\n▁ᎠᏨᏏᏰᏗ\t-11.3025\n▁ᎾᎾᏛᏁᎮᏍᏗ\t-11.3025\n▁ᎢᏥᎦᏔᎰ\t-11.3025\n▁ᎤᏩᏇᏅᏔᏁ\t-11.3025\n▁ᏱᏣᏞ\t-11.3025\n▁ᏭᏘᏅᏍᏔᏁᎢ\t-11.3026\n▁ᎤᏓᎷᎸ\t-11.3026\n▁ᎠᏛᎯᏍᏗᏍᎩ\t-11.3026\n▁ᎠᏔᏲᎯᎮᏍᏗ\t-11.3026\n▁ᎤᏂᏰᏨ\t-11.3026\n▁ᎤᏪᏙᎵᏤᎢ\t-11.3026\n▁ᎤᏓᏴᎳᏔᏅ\t-11.3026\n▁ᎠᏲᎱᏍᎨᏍᏗ\t-11.3026\n▁ᏭᏴᏍᏗᏱ\t-11.3026\n▁ᎤᏁᎳᏗᏍᏗᏱ\t-11.3027\n▁ᎧᏃᏍᎦ\t-11.3027\n▁ᎦᎾᏄᎪᏥᎸᎭ\t-11.3027\n▁ᏥᏍᎦ\t-11.3027\n▁ᎤᏘᏅᏎ\t-11.3027\n▁ᎤᎬᏍᎪᎸᏁ\t-11.3027\n▁ᎡᏥᏁᎸ\t-11.3028\n▁ᏤᏏᏂ\t-11.3028\n▁ᏗᎦᎸ\t-11.3028\n▁ᎨᏥᏰᎸᎯ\t-11.3028\n▁ᏗᎦᎫᏍ\t-11.3028\n▁ᏥᎧᏍᎨᏂ\t-11.3029\n▁ᎢᏣᏙᎴᎰᎯ\t-11.3029\n▁ᎡᏥᎦᏔᎭ\t-11.3029\n▁ᏱᎾᏛᎦ\t-11.3029\n▁ᎠᏂᏐᏢᎢᏍᏗᏍᎩ\t-11.3029\n▁ᏚᏅᏩᏅᎩ\t-11.3029\n▁ᏫᏓᏆᎧᎾᏅᎩ\t-11.3029\n▁ᎤᏂᏁᎢᏍᏗᏱ\t-11.303\n▁ᏂᏕᎲᏁ\t-11.303\n▁ᎬᎭᏃ\t-11.303\n▁ᎤᏍᏔᎦ\t-11.303\n▁ᎤᎩᎵᏲᎢᏍᏗᏱ\t-11.303\n▁ᎤᎾᏓᏅᏍᏗᏱ\t-11.303\n▁ᏕᏛᏅ\t-11.3031\n▁ᏳᏪᎾ\t-11.3031\n▁ᎮᎮᏍᏗ\t-11.3031\n▁ᏚᏪᏐᏤ\t-11.3031\n▁ᎠᏤᎷᎯᏍᏗ\t-11.3031\n▁ᎯᏍᎩᏍᏆ\t-11.3032\n▁ᎾᏅᏁᎰ\t-11.3032\n▁ᎪᏍᏔᏴ\t-11.3032\nᎠᏍᎦ\t-11.3033\nᏐᏍᏙᏗ\t-11.3033\n▁ᎠᏆᏕᏗᏱ\t-11.3033\n▁ᎠᏥᎤᏍᏕᏎ\t-11.3033\nᏌᎳᏙᏗᏱ\t-11.3033\nᎾᏝᎥᎾ\t-11.3034\n▁ᎤᎾᏠᎾᏍᏛ\t-11.3034\n▁ᏚᎵᏰ\t-11.3034\n▁ᎤᏍᏆᏂᎩ\t-11.3034\n▁ᎠᏅ\t-11.3035\n▁ᎤᎾᏗᏔᏍᏗᏱ\t-11.3035\n▁ᎬᏩᏂᏴᎲᎩ\t-11.3035\n▁ᏣᎾᏗᎭ\t-11.3035\nᏍᎩᏰᎵᏎᎮᏍᏗ\t-11.3035\n▁ᎤᎵᏌᎳᏓᏁ\t-11.3036\n▁ᎠᏂᏣᏗ\t-11.3037\n▁ᏔᏔ\t-11.3037\n▁ᏱᏓᏚ\t-11.3037\n▁ᎠᏲᏍᏙᏗ\t-11.3037\n▁ᏧᏍᏕᎸᏗᏱ\t-11.3037\n▁ᎠᏂᎦᏘᏴ\t-11.3038\n▁ᎢᎬᏴ\t-11.3038\n▁ᎠᏍᏓᏱᏗᏍᎩ\t-11.3038\nᏦᎦᏓᎵ\t-11.3038\n▁ᎠᎩᏁᏤᎸᎩ\t-11.3038\n▁ᎩᎳᏊ\t-11.3039\n▁ᏗᏍᏕᎵᏍᎩ\t-11.304\n▁ᏗᎬᏩᏁᎶᏗ\t-11.304\n▁ᏣᎦᏙᎥᎯᏍᏗᏱ\t-11.304\n▁ᏧᏏᎳᏛᏗ\t-11.3041\nᏓᏙᎵᏍᏓᏁᎭ\t-11.3041\n▁ᎠᎾᏓᏩᏛᎯᏙᎢ\t-11.3041\n▁ᎤᏅᏓᏗᏗᏒᎢ\t-11.3041\n▁ᏓᏓᏁᎳᏗᏒᎢ\t-11.3041\n▁ᏗᏆᏓᎴᏅᎢ\t-11.3041\n▁ᏚᏠᏒᏎᎢ\t-11.3041\n▁ᏚᏚᎪᏔᏅᎢ\t-11.3041\n▁ᎤᏓᏏᏁᎢ\t-11.3041\n▁ᎤᏂᏌᏛᏗ\t-11.3041\n▁ᏕᏣᏓᏘᎾᎥᎢ\t-11.3041\n▁ᏧᎾᏄᎪᏫᏎᎴᎢ\t-11.3041\n▁ᏳᏫᎦ\t-11.3042\n▁ᏓᎬᏩᎵ\t-11.3042\n▁ᏗᏒᏆᎶᏍᏗ\t-11.3042\n▁ᏣᏍᎦᎩ\t-11.3042\n▁ᏚᎾᏄᎪᏫᏎᎢ\t-11.3042\n▁ᎢᏣᏂᎩ\t-11.3042\n▁ᏧᏛᏒ\t-11.3042\n▁ᎠᏕᎸᏓᎶᏂᎨ\t-11.3043\n▁ᏙᏣᏓ\t-11.3043\n▁ᎤᏛᎦᏍᏔᏁᎢ\t-11.3043\n▁ᏗᎦᎵᏦᏛᎢ\t-11.3043\nᏍᏓᏁᎭ\t-11.3043\n▁ᏚᎾᏓᏂᎸᏨ\t-11.3043\n▁ᏍᎩᎨᏳᎯᏳ\t-11.3044\nᏅᏍᏔᏅᎯ\t-11.3044\n▁ᎧᏁᎨᎢ\t-11.3045\n▁ᎠᏂᎦᏔᎮᏍᏗ\t-11.3045\n▁ᎣᏤᎲᎢ\t-11.3045\nᎧᎲᏍᏗᏱ\t-11.3045\n▁ᏣᏚᎵᎭ\t-11.3045\n▁ᏴᎦᎬ\t-11.3045\n▁ᎤᎵᏏᎾᎯᏍᏗ\t-11.3046\n▁ᎤᏂᏲᎸᎩ\t-11.3046\n▁ᎠᎩᏰᎯ\t-11.3046\n▁ᎤᏢᎦ\t-11.3046\n▁ᎣᎦᏓᏅᏔᏩᏕ\t-11.3047\n▁ᎠᏓᎾᏅ\t-11.3047\n▁ᏥᏃᎪᎢ\t-11.3047\n▁ᏂᎤᏍᏗ\t-11.3047\n▁ᎤᎾᏛᏓᏍᏛ\t-11.3047\n▁ᎠᏥᏯᏅᎲ\t-11.3047\nᎬᎭᎷᏰᎢ\t-11.3048\n▁ᎠᏍᏆᏂᎪᏛ\t-11.3048\n▁ᎠᏍᎦᎢᎮᏰᏃ\t-11.3048\n▁ᎮᏙᎭ\t-11.3049\n▁ᏄᏁᎩᏴ\t-11.3049\n▁ᎾᏆᎵᏍᏓᏁᎸᎩ\t-11.3049\nᏛᏂᏗᏍᏕᏍᏗ\t-11.3049\n▁ᏥᏚᏁᏤᎴ\t-11.305\n▁ᏕᎨᏥᏲ\t-11.305\n▁ᏳᏛᎦ\t-11.305\nᏍᏆᏂᎪᏔᏅ\t-11.305\n▁ᎢᎬᏩᏅᏁ\t-11.305\n▁ᎠᏥᏍᏛᏗᏍᏙᏗ\t-11.3051\n▁ᎾᏂᎠ\t-11.3051\nᏍᏚᎲᏍᎪ\t-11.3051\n▁ᎤᎾᏄᎪᎢᏍᏗᏱ\t-11.3052\n▁ᎤᏁᏉᎢᏍᏗᏱ\t-11.3052\nᏄᏪᏎ\t-11.3052\n▁ᏕᏥᎳᏫᎩ\t-11.3052\n▁ᎠᎫᏤᎵ\t-11.3053\n▁ᎤᏁᏙᎴᎢ\t-11.3053\n▁ᏧᏍᎩᏃ\t-11.3053\n▁ᎠᏂᎵᎾ\t-11.3054\n▁ᎠᎩᎸᏙᏗ\t-11.3054\n▁ᎤᏪᏁ\t-11.3054\n▁ᏧᏅᎪᏤ\t-11.3055\n▁ᏧᏂᏍᏓ\t-11.3055\n▁ᎤᏁᎫ\t-11.3055\n▁ᎤᎾᎵᎪᎲ\t-11.3055\n▁ᏚᏑᏰᏒ\t-11.3055\n▁ᎤᎾᏛᎦ\t-11.3056\n▁ᎠᏓᏅᏙᎩᎯ\t-11.3056\n▁ᏯᎩᏰᎸᎭ\t-11.3056\n▁ᎠᏯᏫᏍ\t-11.3056\n▁ᏗᎻᎾ\t-11.3057\n▁ᏚᎾᏔᏅᎩ\t-11.3058\nᎵᏍᏔᏅᎯ\t-11.3058\nᎧᏁᏗ\t-11.3058\nᎷᏤᎴᎢ\t-11.3059\n▁ᎤᏁᎸᏙᏗ\t-11.3059\n▁ᎨᏥᏍᏕᎸᏗᏱ\t-11.3059\n▁ᎪᎹᎵᏱ\t-11.3059\n▁ᎤᏂᎶᏐᏅ\t-11.3059\n▁ᏂᏚᏛᏁᎸ\t-11.3059\n▁ᎦᎵᎡᎵ\t-11.3059\n▁ᎠᏂᎦᏔᎯᏳ\t-11.306\n▁ᏗᏤᏅᏒ\t-11.3061\nᎨᎮᎩ\t-11.3061\n▁ᏚᏂᏲᎱᏒᎩ\t-11.3061\n▁ᏕᏥᎧᏅ\t-11.3061\n▁ᎠᎾᏓᏅ\t-11.3061\n▁ᏂᎪᎯ\t-11.3062\n▁ᏄᏪᎡᎢ\t-11.3063\n▁ᏧᏪᎳ\t-11.3063\n▁ᎣᎦᏛᎦᏅᎯ\t-11.3063\n▁ᎣᎦᏣᏅᎩ\t-11.3064\n▁ᎣᏥᏬᏂᏍᎬ\t-11.3064\n▁ᎾᏆᏛᏅᎢ\t-11.3065\n▁ᎤᏔᎳᏬᏍᎬᎢ\t-11.3065\n▁ᎣᎦᏤᎵᎦ\t-11.3065\n▁ᏮᏓᏥ\t-11.3065\n▁ᏚᏪᏲᏁᎢ\t-11.3065\n▁ᎤᏪᏓᏍᏗᏱ\t-11.3065\nᏅᏬᏒ\t-11.3066\n▁ᎤᏢᎬᎩ\t-11.3066\n▁ᎠᏫᎾᎨᏍᏗ\t-11.3066\nᏲᏓᎬ\t-11.3067\n▁ᎩᏥ\t-11.3067\n▁ᎤᏍᎩᏓᏎᎢ\t-11.3067\nᎦᏔᎿᎢ\t-11.3067\n▁ᎤᏂᎩᏌ\t-11.3067\n▁ᎮᏙᎲᎢ\t-11.3068\n▁ᎤᎧᎵᎢᏍᏗᏱ\t-11.3068\n▁ᎤᏂᏰᎸᏗ\t-11.3068\n▁ᎤᏂᏬᏂᏒ\t-11.3068\n▁ᎦᎵᏦᏅ\t-11.3068\n▁ᏅᏓᏍᎩ\t-11.3069\nᎬᏂᏛ\t-11.3069\n▁ᏥᏧᏏ\t-11.3069\n▁ᎤᏛᏛᏅᎩ\t-11.307\n▁ᏳᏁᎭ\t-11.307\n▁ᏥᏤᎾ\t-11.3071\n▁ᎤᏰᎸᏒ\t-11.3071\n▁ᏧᏓᎴᏅᎢ\t-11.3071\n▁ᎠᏗᏅᏓ\t-11.3072\n▁ᎤᎾᏁᎶᏔᏅ\t-11.3073\n▁ᎡᏥᎦᏙᎥ\t-11.3073\n▁ᏧᏄᏬᏍᏗ\t-11.3073\n▁ᎠᏈ\t-11.3074\n▁ᏤᏙᎭ\t-11.3074\nᏬᎥᎯ\t-11.3074\n▁ᎦᎷᎩ\t-11.3075\n▁ᏣᏠᎾᏍᏗ\t-11.3075\n▁ᎤᎵᏦ\t-11.3075\nᏛᏛᎲᏍᎨᏍᏗ\t-11.3076\n▁ᎡᏓᏍᏗᏱ\t-11.3076\n▁ᏕᏓᏓᎪᎲᏳ\t-11.3076\n▁ᎠᏑᏫᏍ\t-11.3077\n▁ᎢᏓᎵᎮᎵᎩ\t-11.3077\n▁ᎤᏓᏙᎵᏍᏔᏅᎩ\t-11.3077\n▁ᎤᏃᎮᎸᎯ\t-11.3077\n▁ᎤᎵᏓᏍᏔᏅ\t-11.3078\nᎳᏫ\t-11.3078\n▁ᎪᏢᏗᏱ\t-11.3078\n▁ᎢᎳᎻ\t-11.3078\n▁ᏭᎶᏒᏍᏛ\t-11.3079\n▁ᎢᏥᏍᏆᏂᎪᏙᏗᏱ\t-11.3079\nᎩᎦᏘᏛ\t-11.3079\nᏕᎨᏍᏗ\t-11.308\n▁ᏚᏭᎪᏔᏁᎢ\t-11.308\nᏕᎭᏲ\t-11.308\n▁ᎤᏂᏴᎲᎩ\t-11.3081\n▁ᏱᎦᏔᎭ\t-11.3082\nᎵᏍᎪᎸᏓᏁᎰ\t-11.3085\n▁ᎠᏁᎨ\t-11.3085\n▁ᎦᎵᏙᏗ\t-11.3085\n▁ᎩᎦᎨᏍᏛᏱ\t-11.3086\n▁ᎤᏂᏍᏆᏂᎪᏙᏗᏱ\t-11.3086\n▁ᎧᏃᎮᎭ\t-11.3087\n▁ᏧᏓᎵ\t-11.3087\n▁ᏓᏰᏙᎳᏛᎢ\t-11.3088\n▁ᎢᎨᎦ\t-11.3088\n▁ᎤᏰᎸᏒᎩ\t-11.3088\n▁ᎪᎵᎩ\t-11.3088\n▁ᏣᏁᏨᎢ\t-11.3089\n▁ᎤᏍᏓᏩᏛᏎᎢ\t-11.3089\n▁ᎤᎵᏖᎸᏁᎢ\t-11.309\n▁ᎢᏳᏅᏂ\t-11.309\nᎳᏁᎸᎯ\t-11.309\n▁ᎢᏨᏁᏗᏱ\t-11.3091\n▁ᎤᏂᏄᎪᏤᏃ\t-11.3092\n▁ᏚᏪᏟᏌᏅ\t-11.3092\nᎩᏍᎬᎢ\t-11.3093\n▁ᏗᏣᎵᎢ\t-11.3093\n▁ᎠᏥᏍᏕᎸᏗᏱ\t-11.3094\n▁ᎠᎵᎮᎵᏤᏗ\t-11.3094\n▁ᏗᏂᏁᎯ\t-11.3095\n▁ᏓᏘᏁᎲ\t-11.3095\n▁ᏬᏥ\t-11.3095\n▁ᎤᏍᎦᎴᎢ\t-11.3096\n▁ᏳᏛᎾ\t-11.3096\n▁ᏂᏓᏅ\t-11.3096\nᏏᏙᎴ\t-11.3096\n▁ᎠᎩᎾᏫᏱ\t-11.3096\nᏟᎶᏍᏔᏅ\t-11.3097\n▁ᏧᎶᏎᎢ\t-11.3097\n▁ᏕᏦᏕᏍᏗ\t-11.3097\n▁ᏱᏕᎬ\t-11.3098\n▁ᎨᎦᎵᏥᏙᏁ\t-11.3102\n▁ᎡᏓᏓᏙᎵᏍᏓᏁ\t-11.3102\nᏙᏔᏅᎩ\t-11.3102\n▁ᎢᏥᏰᎸᎭ\t-11.3103\n▁ᎤᏲᏍᏔᏅᎯ\t-11.3103\n▁ᏴᎬᎾ\t-11.3104\nᎯᏍᏔᏅ\t-11.3104\n▁ᎢᏯᏋᏁ\t-11.3106\n▁ᎤᏬᏢᏗᏱ\t-11.3107\n▁ᏇᎯ\t-11.3108\n▁ᎬᎨᏳ\t-11.311\n▁ᏥᏂᏣᏛᏁᎸ\t-11.311\nᎦᎨᏗᏳ\t-11.3111\n▁ᏙᏌ\t-11.3111\nᏨᏒᎩ\t-11.3111\n▁ᎠᏂᎦᏔᎭ\t-11.3111\n▁ᎤᏯᎠ\t-11.3112\n▁ᎢᏧᏍᏗ\t-11.3112\nᎤᏅᏗ\t-11.3112\n▁ᏂᏓᏕᏘᏴᎯᏒᎢ\t-11.3112\n▁ᏗᎦᏁᎸᎢ\t-11.3112\nᏛᏅᎢᏍᏗᏍᎨ\t-11.3113\nᎾᏓᏡᎩ\t-11.3113\n▁ᎤᎾᏓᏅᏖᎸᎩ\t-11.3114\n▁ᎦᎾᏄᎪᏫᏍᎪ\t-11.3114\n▁ᏚᏂᎲᎢ\t-11.3115\n▁ᎤᏂᏍᏚ\t-11.3115\n▁ᏩᏌ\t-11.3116\n▁ᏓᏰᏙᎳᏛ\t-11.3116\nᏥᎳᏫᏎᎲ\t-11.3117\n▁ᏚᏯᏍᏗ\t-11.3117\n▁ᏦᏕ\t-11.3118\n▁ᎤᏗᎴᎲᏍᎬ\t-11.3118\nᎦᏙᏍᏙ\t-11.3118\nᏌᎻ\t-11.3118\n▁ᏗᏆᏄᏬ\t-11.3119\nᎪᎲᏍᎬ\t-11.312\n▁ᎤᏂᏅᏅᎢ\t-11.3121\nᏍᎦᏅᎾ\t-11.3121\nᎬᏗᎭ\t-11.3122\nᎶᏘ\t-11.3122\n▁ᎢᏳᏲ\t-11.3123\n▁ᎣᏏᏉᏍᎪ\t-11.3123\n▁ᏆᎷ\t-11.3126\n▁ᏂᎨᏒ\t-11.3126\n▁ᎤᏬᏂᏒᎩ\t-11.3128\n▁ᎤᏁᏙᎸᎢ\t-11.3128\n▁ᎤᏛᏗᏱ\t-11.3129\n▁ᏑᏓᎨ\t-11.3129\n▁ᎤᏓᏰ\t-11.3129\n▁ᎤᏯᏅᎮᎢ\t-11.3132\n▁ᎤᏂᏁᏨᎯ\t-11.3133\nᎵᏍᏓᏁᎸᎩ\t-11.3133\nᏈᎦ\t-11.3134\n▁ᏑᎾᎴᎢᏳ\t-11.3134\nᏗᎣᏈ\t-11.3135\n▁ᎠᎩᏇᏓᎸᎢ\t-11.3136\n▁ᏕᎦᏍᎩᎸᎢ\t-11.3136\n▁ᎤᎩᎸᏗ\t-11.3136\n▁ᏕᎦᎸᎢ\t-11.3138\nᏩᏌᏙᏰ\t-11.3139\n▁ᏰᎮᏍᏗ\t-11.3139\n▁ᎾᎾᏛᏁᎲᎾ\t-11.3139\n▁ᏗᎹ\t-11.314\n▁ᎤᏚᏓᎳ\t-11.3141\n▁ᎢᏣᎵᎮᎵᎬᎢ\t-11.3141\n▁ᎠᏇᎵᏍᏗ\t-11.3141\n▁ᎤᏬᎯᏳᏒᎢ\t-11.3141\n▁ᎤᎶᏏ\t-11.3142\n▁ᏌᏉᎯᏳ\t-11.3142\nᏯᏍᏛ\t-11.3143\nᏩᏛᎮᎢ\t-11.3143\n▁ᎠᏁᎬ\t-11.3143\n▁ᎤᎩᎸᎩ\t-11.3143\n▁ᎠᏓᎶᏂᎨ\t-11.3144\n▁ᏄᏂᏪᏎᎴᎢ\t-11.3144\n▁ᎠᏟᏍᏕ\t-11.3144\n▁ᎤᎾᏚᎸ\t-11.3145\n▁ᎬᏩᏛᏛᏅᎩ\t-11.3146\n▁ᎮᎵ\t-11.3146\n▁ᎤᏬᎯᏨᏃ\t-11.3147\n▁ᎠᏔᎸ\t-11.3147\n▁ᎤᏕᎶᎰᎯᏍᏗ\t-11.3148\nᎵᏍᎪᎸᏔ\t-11.3149\n▁ᎠᏆᏛᎦᏅᎯ\t-11.3149\n▁ᏧᎦᎴᏅ\t-11.315\n▁ᎠᎩᏍᎦᏅᏨᎢ\t-11.3151\n▁ᏫᏚᎷᏤᎴ\t-11.3152\nᏎᎵᏔᏁ\t-11.3152\nᏄᎪᏫᏒᎭ\t-11.3154\nᏕᎸᎩ\t-11.3154\nᏏᎳᏗ\t-11.3155\n▁ᎦᏆ\t-11.3155\nᎤᏙᎯᏳᎭ\t-11.3155\n▁ᏱᏁ\t-11.3156\nᏥᎸᏉᏔᏅᎯ\t-11.3156\n▁ᎨᏙ\t-11.3158\n▁ᎦᎢᏒᎢ\t-11.3161\n▁ᏓᎩᎸᏫᏍᏓᏁᎲᎢ\t-11.3161\n▁ᎣᎳ\t-11.3161\n▁ᎯᎦᏔᎲᎢ\t-11.3162\nree\t-11.3163\nᏓᏛᏁᎸ\t-11.3163\nᏴᏅᎮ\t-11.3164\n▁ᏤᎦ\t-11.3165\nᏑᎶᏗ\t-11.3165\n▁ᎦᏗᎭ\t-11.3166\n▁ᎦᏯᎸᎢ\t-11.3166\nᏂᏴᏗᏱ\t-11.3166\n▁ᎤᎬᎭᎷᏴ\t-11.3166\nᎾᎾᏛᏁᎭ\t-11.3167\n▁ᎤᏔᎷᎩᏍᎬ\t-11.3167\n▁ᏧᏄᏬᎢ\t-11.3167\nᎩᏍᎨ\t-11.317\nᏓᏢᎩ\t-11.317\n▁ᏣᏯ\t-11.3171\n▁ᎤᏍᏚᎢᏒᎩ\t-11.3173\n▁ᏓᎾᏗᏔᏍᎨ\t-11.3175\n▁ᎤᏦᏍᏔᏁ\t-11.3175\nᎦᏅᏍᎨᏂ\t-11.3175\n▁ᎤᏂᏃᎮᎸᎩ\t-11.3175\n▁ᎾᏆᏛᏁᎸᎩ\t-11.3176\n▁ᎠᏆᎴᏂᏙᎸ\t-11.3179\nᏍᎪᎯᏧᏈ\t-11.318\n▁ᎤᏁᎳᎩᏉ\t-11.3181\n▁ᏥᏂᎦᏪᏍᎪ\t-11.3181\n▁ᎤᎦᏔᎲᏒᎩ\t-11.3182\n▁ᏣᏍᏓ\t-11.3183\nᏫᏏ\t-11.3183\n▁ᏚᎴᎯᏌᏅᎢ\t-11.3184\n▁ᏣᏓᏁᏗ\t-11.3184\n▁ᏗᏥᎦᏴᎵᎨᎢ\t-11.3184\n▁ᎠᏂᎦᏴᎵᎨᎢ\t-11.3185\n▁ᏧᎦᏴᎵᎨᎢ\t-11.3185\n▁ᎤᏰᎸᏎᎢ\t-11.3187\nᏓᎢᏅᏒᎩ\t-11.3187\nᏫᏒᏗ\t-11.3188\nᏂᏅᎪᎠ\t-11.3189\n▁ᎢᏕᎲᎢ\t-11.319\n▁ᏩᎩᏴ\t-11.319\n▁ᎤᎾᏚᎵᏍᎬᎩ\t-11.319\n▁ᎢᏨᏰᎵᏎ\t-11.3191\nᎵᎮ\t-11.3192\n▁ᎦᏄᎸᏒᎢ\t-11.3193\n▁ᎤᎾᏣ\t-11.3194\n▁ᎦᎶᏛ\t-11.3195\n▁ᎤᏂᎷᏨᎯ\t-11.3196\n▁ᏥᏂᏥ\t-11.3197\n▁ᎡᎪᎢ\t-11.3198\n▁ᎤᏬᎴᎢ\t-11.3202\n▁ᏧᏂᏥ\t-11.3202\n▁ᎠᎪᎵᏰᏍᎩ\t-11.3202\nᎪᏢᏔᏅᎯ\t-11.3202\n▁ᎣᏁᎯ\t-11.3202\n▁ᎭᎳ\t-11.3204\n▁ᎢᏣᎦᏔᏅᏎ\t-11.3204\n▁ᎤᎵᏍᏆᏗᏍᏗᏱ\t-11.3205\nᏓᎳᎩ\t-11.3205\n▁ᏗᎯᏍᏗᏱ\t-11.3207\n▁ᎬᏍᎦᎳ\t-11.3207\nᏰᎸᏗᏱ\t-11.3208\n▁ᎢᎶ\t-11.3209\nᎵᏂᎪᎯᏍᏗᏍᎩ\t-11.321\n▁ᎠᏂᏍᎦᎩ\t-11.3211\nᎵᎮᎵᏍᏙᏗ\t-11.3213\n▁ᏥᏁᎸᎢ\t-11.3213\n▁ᏈᎵᎩᏱ\t-11.3218\n▁ᏓᏂᏃ\t-11.3222\nᎵᎷᎬ\t-11.3222\nᏓᏅᏖᏍᏗ\t-11.3223\n▁ᏭᎶ\t-11.3224\nᏥᏉᎳ\t-11.3225\n▁ᏚᏂᏅᏨ\t-11.3225\nᏏᏙ\t-11.3225\nᏛᏓᏍᏓᏁᎵ\t-11.3226\nᏢᏫᏍᏙᏗ\t-11.3227\n▁ᎤᎾᎵᏥᏙᏅ\t-11.3227\n▁ᎠᎼᎯ\t-11.3228\nᏏᏙᎮ\t-11.3231\n▁ᎢᏯᏛᏁᏗᏱ\t-11.3232\n▁ᏧᏍᎪᎸ\t-11.3232\n▁ᏕᎦᏚᏩᏗᏒᎢ\t-11.3232\n▁ᎤᏰᎸᏅᎢ\t-11.3233\nᏓᏎᎪᎩᏍᏗᏱ\t-11.3234\n▁ᏕᎮ\t-11.3236\n▁ᎤᏂᏁᎯ\t-11.3237\n▁ᎠᏲᏟᎨ\t-11.3238\n▁ᎤᎵᏍᏓᏴᏗᏱ\t-11.324\n▁ᎠᎦᎸ\t-11.3243\n▁ᎤᏣᏗ\t-11.3243\nᏪᏛ\t-11.3245\n▁ᎬᎩᏍᏗ\t-11.3247\n▁ᏧᏁᏗ\t-11.3249\nᏆᏂ\t-11.325\n▁ᏓᏰᏣ\t-11.325\n▁ᎢᏳᎾᎵᏍᏓᏁᏗᏱ\t-11.3252\nᎩᎳᎾᎳᏗᏍ\t-11.3253\nᏂᏍᏓᏩᏚᎦ\t-11.3253\n▁ᎣᎦᎾ\t-11.3254\n▁ᏙᏓᏥ\t-11.3257\n▁ᎠᎪᎲᏍᎬ\t-11.3258\n▁ᎬᏩᏍᏛᏗᏍ\t-11.3258\nᏣᏓᏅᏛᎾ\t-11.3265\nᎯᎠᎾ\t-11.3268\nᏂᎨᏒᎾ\t-11.3269\n▁ᏧᏂᏲᎰ\t-11.3273\nᎤᎬᏫᏳ\t-11.3276\nᏄᏛᏗ\t-11.3277\n▁ᏧᏭᏓ\t-11.328\n▁ᎠᏯᎥᎢ\t-11.328\n▁ᎤᏜᏅᏛᎢ\t-11.3281\n▁ᎠᎪᎲ\t-11.3283\n▁ᎤᏗᏍᎦᏢ\t-11.3285\n▁ᏗᎦᎴᏴ\t-11.3286\n▁ᎤᏢᏨ\t-11.3287\nor\t-11.3287\nᎨᏫᏍᏗ\t-11.3288\n▁ᎤᏂᏧᏈᏍ\t-11.3289\nᏓᏁᎴᎢ\t-11.3293\n▁ᏗᏄᏬᏍᏗ\t-11.3293\nᏌᏁᎢ\t-11.3294\nᏂᎢᏛ\t-11.3297\n▁ᎠᏍᎦᏅᏨᎢ\t-11.3299\nᏪᏒᎩ\t-11.33\n▁ᏆᎩ\t-11.3302\nᏕᏗᏴ\t-11.3307\n▁ᏂᏕᎦᏪᏎ\t-11.3309\nᏲᎯᏎᏗ\t-11.3309\n▁ᏳᎾᎵᎪ\t-11.3311\n▁ᎧᏃᎲᏍ\t-11.3311\n▁ᎠᏍᏆᏂᎪᏍᎨ\t-11.3312\n▁ᎤᎵᏍᏙᏗ\t-11.3314\n▁ᎤᎾᏓᏅᎦᎸ\t-11.3315\nᏱᎵᏙᎸ\t-11.332\n▁ᏅᏩᏍᏗ\t-11.3321\n▁ᎤᏂᏍᏆᏂᎪᏎᏃ\t-11.3321\n▁ᏳᏰᎸᏁ\t-11.3323\nᎩᎷᏫ\t-11.3329\n▁ᏧᎾᏄᏬᎢ\t-11.333\nᏄᏍᏛ\t-11.333\nᏓᏂᏙᎦ\t-11.3331\n▁ᏭᏏᎳᏛᏁ\t-11.3331\nᎯᏐᏗ\t-11.3332\n▁ᎠᏌᏅ\t-11.3334\nᏕᎸ\t-11.3334\n▁ᏃᎴᏍᏉ\t-11.3337\nᎬᏁᏗ\t-11.3338\n▁ᏓᏍᏆᏂᎪᏗ\t-11.3338\nᏟᏏᏍᎪᎢ\t-11.3347\n▁ᏏᏉ\t-11.3348\nᏓᎢᏅᏎᎢ\t-11.335\n▁ᎨᏣᎵᎮᎵ\t-11.335\nᏁᏉᎢᏍᏗᏱ\t-11.335\n▁ᏕᎤᎴ\t-11.3351\nᏙᏙᏱ\t-11.3351\nᎪᏯᏛ\t-11.3353\n▁ᏴᎾ\t-11.3355\nᏛᎦᏁᎴ\t-11.3356\nᏰᎮᏍᏗ\t-11.3357\n▁ᎦᎸᎢ\t-11.3357\n▁ᎠᏟ\t-11.3357\n▁ᎤᏇᏓᎸᎢ\t-11.336\n▁ᏫᏗᎩ\t-11.3361\n▁ᎤᎾᎥ\t-11.3362\nᏍᏗᏍᎪ\t-11.3369\nᏅᎬ\t-11.337\nᏍᏔᏁᎴ\t-11.337\n▁ᏣᏓᏡᏗᏍᎪ\t-11.3371\n▁ᎥᎩᏂᏐᏗ\t-11.3376\n▁ᏧᏂᏗᏱ\t-11.3378\n▁ᎠᎩᎷᏤᎸ\t-11.3378\n▁ᎠᏂᏙᎾᎥᎢ\t-11.338\nᏆᎧᎿᏅᎩ\t-11.3381\n▁ᎦᏥᏯᎵᏥᏙᏁ\t-11.3383\nᏲᏍᏙᏓᏁᏗ\t-11.3385\nᎸᏉᏙᎢ\t-11.3387\n▁ᏍᎩᎵ\t-11.3388\n▁ᎠᎩᎪᎵᏰ\t-11.339\n▁ᎦᎵᏣ\t-11.3394\n▁ᏕᎦᏛᎢ\t-11.3394\nᏥᎩ\t-11.3402\nᏂᏆᏘᎮᏍᏗ\t-11.3402\n▁ᎤᎵᏁᏨᎢ\t-11.3403\n▁ᏱᏂᎬᏂ\t-11.3404\nᏥᏍᏛᏗᏍᏙᏗ\t-11.3405\n▁ᎠᏄᏬᏍᏗ\t-11.3407\n▁ᎨᎦᏎᎸ\t-11.3409\n▁ᏱᏓᏓ\t-11.3413\nᎮᏗ\t-11.3413\nᏓᏌᎳᏗᏍᎨᏍᏗ\t-11.3415\nᏏᎳᏛᏙᏗ\t-11.3417\nᏔᏍᏗ\t-11.3418\nᎩᎸᏙᏗ\t-11.3418\n▁ᏓᏳᏓᎴᏅᎩ\t-11.342\n▁ᎠᏊ\t-11.3425\nᏓᏅᏬᏗ\t-11.3427\n▁ᎤᏅᏏᏴᎢ\t-11.3427\n▁ᎤᎨᏓᎵᏴᎢ\t-11.3427\n▁ᏯᏥ\t-11.3428\n▁ᏭᏯᏅᎮᎢ\t-11.3433\n▁ᏧᏩᏔᏁ\t-11.3438\nᏙᎯᏉ\t-11.3438\nᏂᏅᏏᏓᏍᏗ\t-11.3439\n▁ᎠᏍᎦᏂᏍᎩᏂ\t-11.3444\nᏓᏅᏘ\t-11.3447\nᏃᎮᏍᎨᏍᏗ\t-11.3447\n▁ᎢᏨᏯᏅᏓᏗᏍ\t-11.3449\n▁ᎥᏍᎩᏃ\t-11.345\nᎧᏁᎸᎾ\t-11.3451\nᎾᏗᏅᏗ\t-11.3452\n▁ᎧᎳᏩᏗᏒᎢ\t-11.3452\n▁ᏗᎦᏚᎲᎢ\t-11.3454\n▁ᏃᎦᏍ\t-11.3454\n▁ᎤᏃᏴ\t-11.3454\n▁ᎤᎾᏞ\t-11.3461\nᎾᏚᎦ\t-11.3463\n▁ᏂᏥᏍᎦᏅ\t-11.3464\nᎾᏗᏅᏎ\t-11.3466\n▁ᏰᎮ\t-11.3466\nᎪᎵᎬᎾ\t-11.3467\nᎭᏢ\t-11.3468\nᎴᏛ\t-11.3477\n▁ᏚᎾᏓᎸ\t-11.3477\nᏍᎩᏯᏅᎡᎸ\t-11.3481\nᏁᏉᏤᏗᏱ\t-11.3485\nᏥᏛᎯ\t-11.3486\nᎯᏰᏃ\t-11.349\nᎵᎢᏍᏗ\t-11.3491\nᎪᎲᏍᏔᏁ\t-11.3497\n▁ᏧᏂᏁ\t-11.3499\n▁ᎠᏂᏯᎥ\t-11.3499\n▁ᎣᏣᎵᏥᏙᎲᏍ\t-11.35\nᏐᎯ\t-11.35\n▁ᏗᎦᎴ\t-11.3501\n▁ᎤᏛᏛ\t-11.3506\n▁ᎣᏓ\t-11.3507\n▁ᏧᏂᎦᏐᎠ\t-11.3509\n▁ᎤᎯᏍᏗ\t-11.3512\n▁ᏱᎦᎨᏎ\t-11.3513\n▁ᎬᏗᏍᎬᎩ\t-11.3517\nᎸᏏ\t-11.352\n▁ᎢᏗᏓᏛᏁ\t-11.3524\n▁ᎤᎾᏙᏢ\t-11.3525\n▁ᎢᏳᏂᏨ\t-11.3525\n▁ᏉᏏ\t-11.3525\n▁ᏓᏓᎿᏩᏍᏛᎢ\t-11.3526\nᏓᏁᎲᎩ\t-11.3527\n▁ᎢᎦᎦᏛᎢ\t-11.3527\n▁ᎠᏂᏃᎮᏍᎬᎢ\t-11.3527\nᏄᎪᎨᏍᏗ\t-11.3527\n▁ᎤᎾᏟ\t-11.3528\n▁ᎥᎴ\t-11.3529\n▁ᏱᎦᎷ\t-11.3531\nᏍᏓᏁᏗ\t-11.3532\nᏖᏃᎯ\t-11.3536\n▁ᎤᏲᎴᏃ\t-11.3537\n▁ᎦᏛᎩ\t-11.354\n▁ᎤᏁᎴᎢ\t-11.3542\nᏓᏂᏴ\t-11.355\nᎷᏤᎸᎭ\t-11.3552\n▁ᎱᏂᎷ\t-11.3567\nᏍᏛᏅᎯ\t-11.357\n▁ᏗᎦᎳ\t-11.3574\nᎨᏳᏒ\t-11.3574\n▁ᏔᎳ\t-11.3575\nᏰᏨ\t-11.3576\n▁ᎦᎶᏍᎨ\t-11.358\nᏍᏗᏰᎬ\t-11.3581\nᏍᏚᎩᏎ\t-11.3585\nᎾᎷᏒ\t-11.3587\nᏠᏱᎭ\t-11.359\nᏅᏣᏛ\t-11.3591\nᏨᏛ\t-11.3594\n▁ᎢᏥᏔᏲᎯ\t-11.3596\nᏳᎶᏗ\t-11.3597\nᏚᎲ\t-11.3599\n▁ᎤᏬᏒ\t-11.3599\n▁ᎤᎾᎵᎪᏒ\t-11.3599\n▁ᏕᎦᎸ\t-11.3604\n▁ᎤᏣᏙ\t-11.3609\nᏂᎨᏂ\t-11.3609\nᎪᏩᏗᎭ\t-11.3611\nᏲᎤᎵ\t-11.3615\nᏣᎵᎮᎵᎦ\t-11.3622\nᏂᏪᎠ\t-11.3622\nᎥᎭ\t-11.3624\n▁ᎬᏩᏕ\t-11.3629\nᏛᏂᏗᏍᏗ\t-11.3629\n▁ᏴᏫᏯ\t-11.3631\nᏓᏅᏖᏍᎨ\t-11.3633\nᎩᏚᎢᏍᏓᏁᎸ\t-11.3633\n▁ᎤᏤᎵᎪ\t-11.3635\nᏙᎭᏴ\t-11.3636\nᏂᎦᏛ\t-11.3639\n▁ᎤᏤᎵᎦᏯ\t-11.3648\n▁ᏱᏂᎨ\t-11.3649\n▁ᎦᏥᏲ\t-11.3657\nᎦᏔᎯᏳ\t-11.3657\nᎦᏔᏙᎥ\t-11.3657\n▁ᏫᎬᏩᏴ\t-11.3658\nᎦᎸᎢᏛ\t-11.3659\n▁ᏥᏫᎦ\t-11.366\n▁ᎬᏩᏃᎵᏍ\t-11.3661\n▁ᎠᎦᏔᎲᎩ\t-11.3663\nᏃᏎᎭ\t-11.3663\nᎯᏍᏗᏍᎪ\t-11.3668\n▁ᎣᏣᎵᏍᎦᏍᏙ\t-11.3673\nᎾᏄᎪᏫᏎᎸᎯ\t-11.3674\n▁ᏭᏚ\t-11.3676\nᏌᎡ\t-11.3685\nᏓᏯ\t-11.3687\nᎬᏁᎲ\t-11.3689\n▁ᎢᏣᏓᏄᏴ\t-11.3692\nᎷᏥᎸ\t-11.3694\n▁ᎤᏣᏁ\t-11.3697\nᏲᎯᏎᎴ\t-11.3699\n▁ᏬᎩᏂ\t-11.3699\n▁ᎠᏤᎸᏍ\t-11.3701\nᎦᏙᎥᏒ\t-11.3703\nᏓᎬᏩᏍᏓᏩᏛᏛ\t-11.3705\n▁ᎤᏙᎴᎰᏒᎩ\t-11.3705\n▁ᎤᎵᏍᏙ\t-11.3708\n▁ᎤᏂᎪᎲᎢ\t-11.3708\n▁ᏚᎧᎵ\t-11.3709\nᏚᏓᎳᎡ\t-11.3711\n▁ᏴᎦᎦ\t-11.3715\n▁ᎠᏗᏍᎩ\t-11.3718\n▁ᏚᏪᎧᎮ\t-11.3725\nᏓᏤᎵᏛ\t-11.3729\n▁ᏕᎨᎦᏬᏍ\t-11.3732\n▁ᎦᏙᏉ\t-11.3734\n▁ᎤᎾᏨᏎ\t-11.3738\n▁ᎯᎬ\t-11.3739\n▁ᎢᏤᏙᎯ\t-11.3739\n▁ᎣᎬᏙᏗ\t-11.3744\nᏍᏉᏟ\t-11.3744\n▁ᎠᎡ\t-11.3752\nᏪᏎᎮᏍᏗ\t-11.3754\n▁ᏧᎵᏰ\t-11.3758\nᏯᏅᏓ\t-11.3762\n▁ᎤᏓᏣᎦᎸ\t-11.3764\n▁ᎠᏂᎦᏔᎲᎩ\t-11.3765\nᎳᏍᏓ\t-11.377\n▁ᏂᎯᎾ\t-11.3772\nᏍᎦᏅᏨᎯ\t-11.3774\nᏲᎱᏍᎦ\t-11.3776\nᏍᏆᏂᎪᏗᏍᎩ\t-11.3776\nᎦᏍᎩᎶᎩ\t-11.3777\n▁ᎡᏣᏑᏰ\t-11.3784\n▁ᏴᏛ\t-11.3793\n▁ᎤᏂᏲᎮ\t-11.3799\nᏛᎩᏍᎬ\t-11.3801\n▁ᏩᏴᏍᏗ\t-11.3803\n▁ᎣᎩᎭ\t-11.3806\nᏃᎮᏍᎩ\t-11.3813\n▁ᎢᏨᏰ\t-11.3815\n▁ᏱᏭᏂ\t-11.3817\nri\t-11.3823\nᏥᏁᎰᎢ\t-11.3824\n▁ᏗᏰ\t-11.3834\nᏗᏍᏙᏗ\t-11.3835\n▁ᎬᏩᎵ\t-11.3837\n▁ᏘᎩ\t-11.3844\nᏑᏢ\t-11.385\n▁ᏣᏍᎦᏅᎪ\t-11.385\n▁ᎤᏂᏰᎸ\t-11.3853\nᏏᎳᏕ\t-11.386\nᎤᏙ\t-11.3862\nᎦᏚᎩᏱ\t-11.3862\n▁ᎦᏂᏴᏗ\t-11.3863\nᏄᎪᏫᏍᏗᏱ\t-11.3863\nᏲᎮᎸ\t-11.3868\nᏅᏅ\t-11.3869\nᏉᎯᏳᎭ\t-11.3871\n▁ᎤᏚᎵᏍᎬᎢ\t-11.3871\n▁ᎦᎾᎸ\t-11.3876\n▁ᏥᏨᏲᏎ\t-11.3879\nᏛᏗᏱ\t-11.388\n▁ᎢᏝ\t-11.3881\nᎫᎢᏍ\t-11.3882\nᎳᎭ\t-11.3886\nᎯᎮ\t-11.3889\nᏗᏍᏗᏱ\t-11.3903\nᏴᎦ\t-11.3908\n▁ᎢᏥᏁᎸ\t-11.3918\n▁ᏚᎴᏁᏃ\t-11.3923\n▁ᎠᎾᏓᏅᏖ\t-11.3927\n▁ᎡᎳᏪᏱᏉ\t-11.3928\nᎾᏄᎪᏫᏍᎦ\t-11.3928\n▁ᏗᏧᎬ\t-11.393\n▁ᏗᏣᎵ\t-11.3932\n▁ᏄᎾᏍᏛᎢ\t-11.3934\nᏥᏌᎳᏙᏗ\t-11.3938\n▁ᎠᏑᏰ\t-11.394\nᎵᏏᎾᎯᏍᏗ\t-11.3941\n▁ᎠᎪᎵᏰᏍᎬ\t-11.396\nᏒᏉ\t-11.3961\nᎨᏏ\t-11.3968\nᏕᏏ\t-11.397\n▁ᏱᏂᎦ\t-11.3972\nᏴᏁᏗᏱ\t-11.3972\n▁ᏱᏤ\t-11.3981\nᏥᏰᎯ\t-11.3983\nᏘᏲᎯ\t-11.3987\n▁ᏕᎬᏕ\t-11.399\nᏲᎯᏎᎸ\t-11.3995\n▁ᏁᎵ\t-11.4\nᏣᏛᏅᎢᏍᏓᏁ\t-11.4002\n▁ᏱᏥᏩᏛ\t-11.4004\nᎸᏍᏙᏗᏱ\t-11.4006\nᏪᎳᏅ\t-11.4011\n▁ᎤᎾᏑ\t-11.4014\n▁Ꮚ\t-11.4016\n▁ᎠᎩᏍᏆᏂᎪ\t-11.402\n▁ᏎᏗ\t-11.4028\nᏒᏂᎸ\t-11.4029\n▁ᎤᏴᎸ\t-11.403\n▁ᏕᏧᎪ\t-11.4036\n▁ᎤᎵᏦᏔᏅ\t-11.4037\nᏛᏁᎢ\t-11.4037\nᏥᏯᏂᏍᎨᏍᏗ\t-11.4038\nᏂᏯᏪᏨ\t-11.4039\nᎾᏡᏗᏍᎬ\t-11.4044\nᏙᏔᏁᎢ\t-11.4061\n▁ᏥᎦᏃ\t-11.4068\n▁ᏂᎬᎩ\t-11.4069\nᎾᏌᎢ\t-11.4069\nᏨᏍᏛ\t-11.4072\nᎤᎾᏣᏁ\t-11.4078\nᏁᏛ\t-11.4081\n▁ᏓᎧᎿᏩᏗ\t-11.4082\nᏓᏑᏲ\t-11.4084\nᏍᏗᏰᏔᏅᎩ\t-11.4086\n▁ᎠᎩᎾᎥ\t-11.4092\n▁ᎤᎾᏄᎪᏨ\t-11.4097\nᏛᏅᎢᏍᏔᏅᎯ\t-11.4103\nᏨᏁᎸ\t-11.4107\n▁ᏣᎦᎴ\t-11.4112\n▁ᏥᎠ\t-11.4115\nᏲᏎᎮᏍᏗ\t-11.4118\nᏂᏐᏗᏱ\t-11.4123\n▁ᏗᏂᏁ\t-11.4125\n▁ᎢᏦᎯᏳᎲᏍ\t-11.4125\nᏣᎦᏎᏍᏕᏍᏗ\t-11.4125\nᏲᏍᏓ\t-11.4126\n▁ᎢᏣᏠᏯᏍᏙᏗ\t-11.4126\nᎾᎫᏴᏗ\t-11.4128\n▁ᎠᏓᏅᏍᎨ\t-11.413\n▁ᏂᎬᏪᏎ\t-11.413\n▁ᏓᏂᏁᎲ\t-11.4134\nᏲᎮᎸᎩ\t-11.4136\n▁ᎣᎩᎾᎵ\t-11.4138\nᏗᎹ\t-11.414\n▁ᎤᏲᏏᏍᎨ\t-11.4144\nᏂᎦᎥ\t-11.416\n▁ᎬᏆᏓᏅ\t-11.416\nᏙᏛ\t-11.4161\nᏔᏍᎬ\t-11.4162\n▁ᏓᏳᏁ\t-11.4164\nᏍᏓᏁᎵ\t-11.4172\nᎦᎴᏔᏂ\t-11.4172\nᏌᏛᎢ\t-11.4176\n▁ᏓᎴᎲᏍᎬ\t-11.4177\nᏎᎯ\t-11.418\nᎵᎪᏁᎸᎯ\t-11.4182\n▁ᎠᏂᎯ\t-11.4185\nᎴᏫᏍᏔᏅ\t-11.4191\n▁ᏘᏂ\t-11.4192\nᏓᏓᎸ\t-11.4194\nᏃᎮᏍᎬ\t-11.4196\n▁ᎨᏥᏁᎸ\t-11.4197\nᏃᏴᎵᏍᏗ\t-11.4202\nᏅᏙ\t-11.4204\nᏴᏙᏗ\t-11.4206\n▁ᏗᎧᎿᏩ\t-11.4209\nᎵᏂ\t-11.4229\nᏗᎤᏨᏎ\t-11.4231\n▁ᏭᏢ\t-11.4233\nᏥᏁᎴ\t-11.4242\n▁ᎢᏥᎪᎵᏰ\t-11.4243\nᎶᏙᏗ\t-11.4243\n▁ᎤᏓᎴ\t-11.4246\nᎮᎸᎩ\t-11.4252\n▁ᎠᏓᎴ\t-11.426\n▁ᏯᎵ\t-11.426\nᏍᏕᏓᎵᏴ\t-11.4261\nᏎᎪᎩᏒ\t-11.4261\n▁ᎮᏙ\t-11.4262\nᎵᏙᎲᎢ\t-11.4264\n▁ᏱᎦᏓ\t-11.4269\nᏜᏏᏛᎡ\t-11.427\n▁ᏂᏚᏪ\t-11.427\n▁ᏧᏍᎪ\t-11.4272\n▁ᏣᏗ\t-11.4272\nᎠᎩ\t-11.4281\nᏅᏗᏍᎬ\t-11.4282\nᏙᎥᎢ\t-11.4284\nᏍᏆᏂᎪᏛ\t-11.4286\nᎬᏩᏂᎪᏩᏛ\t-11.4297\nᏅᏏ\t-11.43\nᏍᎦᏍᏓᏁᏗᏱ\t-11.4313\n▁ᎠᏯᏦ\t-11.4314\nᎾᏰᏍᎦ\t-11.4326\nᏩᎯᏍᏔᏅᎯ\t-11.4328\n▁ᎤᏍᎩ\t-11.4328\n▁ᎤᏂᏏ\t-11.4337\nᏓᏅᏙ\t-11.4345\nᏚᎵᏍᎬᎢ\t-11.4348\n▁ᎤᎾᎴᏅᏗ\t-11.435\nᏲᏎᎢ\t-11.4352\n▁ᏚᏂᎭ\t-11.437\nᏚᎸᏌᏛ\t-11.4373\nᎵᏍᏗᏍᎬ\t-11.4377\nᏄᎶᏔᏅ\t-11.4389\nᏓᎾᏅ\t-11.439\nᏚᎢᏍᏓᏁ\t-11.4396\nᎣᎢ\t-11.44\nᎪᏩᏔ\t-11.4401\n▁ᏯᏂᎦᏔ\t-11.4402\n▁ᏫᏘ\t-11.4405\nᎵᏥᏙᏁᎸ\t-11.4409\n▁ᎤᎸᏕ\t-11.4412\n▁ᏧᏪᎧᏁ\t-11.4414\n▁ᎤᎾᎵᏍ\t-11.442\nᏳᎢ\t-11.4426\n▁--\t-11.4431\nᏨᏓ\t-11.4444\nᎳᏕᏗ\t-11.4447\n▁ᏫᎦᎾᏄᎪ\t-11.4449\n▁ᏯᎭ\t-11.4449\nᏓᏂᏐᏗᏱ\t-11.4456\nᏪᎢ\t-11.4456\n▁ᎤᏂᏍᏆᏛ\t-11.4456\nᏫᏎᎸᎯ\t-11.4458\n▁ᏗᏯᏖ\t-11.446\nᏍᎩᎲᏏ\t-11.4461\n▁ᏣᏙᎵ\t-11.4462\nᎦᎹ\t-11.4467\nᏍᎩᏃ\t-11.447\nᎯᏏ\t-11.447\n▁ᎤᏢᏁ\t-11.4484\nᏚᎵᏍᎬ\t-11.4492\n▁ᏥᏍᎩ\t-11.4492\n▁ᎾᏁ\t-11.4494\n▁ᎤᏁᎢ\t-11.45\nᏲᎯᎮ\t-11.4501\nᏲᎰᏎᏗ\t-11.4505\nᏯᎡ\t-11.4511\n▁ᎤᎾᏂᏢ\t-11.4512\n▁ᏫᏕ\t-11.4515\nᏲᎢᏳ\t-11.4521\n▁ᎦᏄᎪᎬ\t-11.4531\n▁ᎤᏂᎦ\t-11.4532\nᏥᏲᎢᏎ\t-11.4533\n▁ᎠᏂᏩᏛ\t-11.4533\nᏚᏓᎴ\t-11.4538\nᏳᎵᏍᏙᏗ\t-11.4545\n▁ᏗᏂᎳ\t-11.4577\nᎶᎯᏎᎸ\t-11.4578\nᎦᎶᎯᏍᏗᏱ\t-11.4581\nᏥᏂᎨᏂ\t-11.4589\n▁ᎢᎯᏯ\t-11.4592\nᏃᎮᏗᏱ\t-11.4593\n▁ᏱᏥᏍᏆᏂᎪ\t-11.4596\nᏔᏲᎯᎰ\t-11.4602\nᎴᏗ\t-11.461\nᎦᏘᎴᎦ\t-11.4612\nᏥᏴᏔᏂ\t-11.4615\nᏙᎲᎾ\t-11.4622\nᏘᎷᎦ\t-11.4622\nᏛᏎ\t-11.4631\nᎦᎷᎬ\t-11.4634\nᏂᏓ\t-11.4637\nᎳᎩ\t-11.464\n▁ᏧᏪᏲ\t-11.464\nᏂᏴᎲ\t-11.4641\n▁ᎤᏍᏓᏩᏗᏒ\t-11.4645\n▁ᎤᏑᏰ\t-11.4645\n▁ᎠᎨᏳ\t-11.4646\nᏓᏲ\t-11.4648\n▁ᎠᏆᏗ\t-11.4653\n▁ᎢᎦᏛᏉ\t-11.4655\nᏓᏅᏔ\t-11.4662\n▁ᎦᏂᎵ\t-11.4662\nᏥᏪᏏ\t-11.4663\n▁ᎠᎳ\t-11.4664\n▁ᎢᏨᏁᎸ\t-11.4665\nᏝᎥ\t-11.4682\n▁ᏱᎦᏰ\t-11.4683\n▁ᏯᏉ\t-11.469\nᎻᎦ\t-11.4698\n▁ᏣᎢᏒ\t-11.4701\nᏩᎾᎦᎳᎯᏳ\t-11.4701\nᏰᎵᏏ\t-11.4705\nᏂᎩᏍᏔᏁ\t-11.4705\n▁ᎤᎾᏣᏅ\t-11.4706\nᏛᏅᎢᏍᏙᏗ\t-11.4708\n▁ᏗᏣᏓᎨᏳ\t-11.4708\n▁ᎣᏤᎵ\t-11.4713\nᏂᏍᎦᎩ\t-11.4721\nᏩᏛᎲᎾ\t-11.4721\nᏴᎳᏒ\t-11.4722\nᏤᎳ\t-11.4732\n▁ᎨᏥᏅ\t-11.4734\nᏂᏆᏘᎭ\t-11.4739\n▁ᎤᎪᏅ\t-11.474\nᎦᎵᏍᏙᏗᎭ\t-11.4741\nda\t-11.4745\nᏫᏍ\t-11.4749\nᏥᏩᎯᏍᏔᏅᎯ\t-11.4749\n▁ᏰᏙᎮ\t-11.4751\nᎦᏌᏯᏍᏗᏍ\t-11.4751\nᏴᎳ\t-11.4752\nᏌᏬᎸ\t-11.4754\n▁ᎠᎩᏍᎩ\t-11.4754\n▁ᎫᏓ\t-11.4754\n▁ᎤᎫᏴ\t-11.4761\nᏫᏗ\t-11.4763\nᎤᏟ\t-11.4769\n▁ᎣᎩᏃᎮ\t-11.4773\n▁ᎭᎵᏍᏓᏴ\t-11.4775\n▁ᏗᏥᏴ\t-11.4775\n▁ᏭᎷᏤᎸ\t-11.478\nᎦᎵᏍᏓ\t-11.4781\nᎦᏔᎰᎢ\t-11.4792\nᎯᏴᎩ\t-11.4803\n▁ᎤᎨᏳ\t-11.4809\n▁ᎤᏂᎧᎵᏨ\t-11.4812\nᎯᏍᏓᏁᎸ\t-11.4817\nᏇᏗ\t-11.4819\nᏘᏃᎸᎩ\t-11.4824\nᎢᏒ\t-11.4828\n▁ᎤᏂᏁᏤ\t-11.4829\nᏍᏓᏴᏗ\t-11.4842\nᏲᎲᏍᎬ\t-11.4847\nᏥᏁᎪᎢ\t-11.4849\n▁ᎠᎱ\t-11.4854\nᏨᏁᏍᏗ\t-11.4859\nᎾᏛᎩᏍᎪ\t-11.4864\n▁ᏖᎾ\t-11.4881\nᎤᏨᏎ\t-11.4884\n▁ᏂᏚᏂ\t-11.4891\nᎵᏍᏓᏴᏙᏗᏱ\t-11.4892\nᎵᏙᎸᎢ\t-11.4893\nᎩᏐᏅ\t-11.4894\nᏝᏅ\t-11.491\nᎨᎯᏒ\t-11.4911\nᏘᏂᏒ\t-11.4915\nᎧᏃᏗ\t-11.4915\nᏕᎪ\t-11.4918\nᎦᏘᏲ\t-11.4923\nᎦᏙᏍᏔᏁᎢ\t-11.4925\nᎸᏫᏍᏓᏁᎰᎢ\t-11.4928\nᏐᏢᎢᏍᏙᏗᏱ\t-11.493\nᎷᏤᏗ\t-11.493\n▁ᎤᏛᏛᏁᎢ\t-11.4931\n▁ᎣᎩᏴ\t-11.4931\nᎦᏲᎵᏳ\t-11.4933\n▁ᏭᏴ\t-11.494\nᎪᏩᏘᏍᎨᏍᏗ\t-11.4943\n▁ᎢᎩᎧ\t-11.4945\nᏣᎵᏍᏗᎭ\t-11.4946\nᏛᏁᎴᎢ\t-11.4956\n▁ᎠᏂᎸ\t-11.4959\nᎡᎪᎢ\t-11.4963\n▁ᏕᎦᎾ\t-11.4968\nᏁᎲᎾ\t-11.4971\n▁ᎤᎿᎸ\t-11.4978\nᏲᎮᎴᎢ\t-11.4982\n▁ᏳᎾᏅ\t-11.4986\n▁ᎢᎾᎨᏉ\t-11.4993\nᏁᏍᎨᏍᎩ\t-11.4996\nᏃᏁᎵ\t-11.5001\n▁ᎠᏐᏢᎢᏍᏙᏗ\t-11.5006\nᏛᏁᎸ\t-11.5016\nᏅᏍᏔᏁᎢ\t-11.5018\n▁ᎠᏨ\t-11.502\nᏓᏓᏱ\t-11.503\nᎸᏅ\t-11.5032\nᎴᏔᏂ\t-11.5034\nᏰᎸᏎ\t-11.5034\n▁ᎤᏢᎨ\t-11.5039\n▁ᎦᏥᏁᏗ\t-11.504\n▁ᏧᎾᏚᎪᏓᏁᏗ\t-11.5046\n▁ᎤᏂᏇᏓ\t-11.5055\nᏱᎴ\t-11.5057\nᎢᎲ\t-11.5062\nᏈᏓ\t-11.5064\n▁ᎤᎪᎳ\t-11.5065\nᎵᏍᎪᎸᏓᏁᎸ\t-11.5066\n▁ᎡᏥᎸ\t-11.5067\nᏓᏥᎶ\t-11.5068\nᏍᏓᏁᎮ\t-11.5075\n▁ᏗᏯ\t-11.5077\nᏩᏯ\t-11.5081\n▁ᎠᏎᎪᎩᏍ\t-11.5098\nᏩᏂᎦᎸ\t-11.5103\nᏴᏓᏆᎶᎥᎩ\t-11.5111\n▁ᎤᎾᎵᏍᎩ\t-11.5123\nᏎᎵᏛ\t-11.5124\nᏴᏍᏕᏍ\t-11.5126\n▁ᏕᎤᏅ\t-11.5127\n▁ᏱᏂᎦᎵᏍ\t-11.513\n▁ᎠᏆᏕ\t-11.5131\nᎪᏢᏙᏗ\t-11.5136\nᏛᎪᏗ\t-11.5143\nᎾᏛᏁᎭ\t-11.5148\nᏓᏉ\t-11.5151\n▁ᏕᎦᏓ\t-11.5155\nᎵᏍᎪᎢ\t-11.5163\n▁ᎤᏙᎯᏳᏗ\t-11.5165\n▁ᏅᏓᏣ\t-11.5174\n▁ᎢᏥᎨᏳ\t-11.5177\n▁ᎭᎸ\t-11.5179\n▁ᏧᏓᏴᎳ\t-11.518\n▁ᎤᏙᏯᏅᎯᏕ\t-11.5185\nᏗᏩᏛᎯ\t-11.5185\nᏢᏈ\t-11.5185\nᎶᏍᎬ\t-11.5187\nᏗᏎᎢ\t-11.5187\nᎵᎥᏂᎸ\t-11.5188\nᏔᏲᏎᎮ\t-11.5194\nᎦᏧ\t-11.5198\nᎪᎥᎯ\t-11.5199\n▁ᏭᏂᏴ\t-11.5204\nᎡᎰ\t-11.521\nᎯᎠᏃ\t-11.5211\nᎦᎵᏍᎪ\t-11.5213\n▁ᎦᎾᏰ\t-11.5218\nᎪᏔᏅ\t-11.5219\nᏐᏅᎢᏍᏔᏅᎯ\t-11.5241\n▁ᎡᎬ\t-11.5242\nᏍᏗᏰᏔᏁ\t-11.5242\nᏚᎶ\t-11.5243\nᏱᏢᏗ\t-11.5253\nᏓᏕᏲᎲᏍᎨᏍᏗ\t-11.5255\nᎩᏍᏕᎸᏗᏱ\t-11.5257\nᎲᏍᎪ\t-11.5262\n▁ᎤᏂᎷᏤᏃ\t-11.5271\n▁ᎤᏂᎾᏗᏅ\t-11.5277\n▁ᏗᎦᏓᎨᏳᎯ\t-11.5277\n▁ᏚᎾᏠᎯᏍ\t-11.5277\nᎯᏍᏔᏁ\t-11.5279\nᏅᏌ\t-11.5279\n▁ᏔᎴ\t-11.5281\nle\t-11.5285\nᏴᏗᏱ\t-11.5293\n▁ᎤᎾᎪᎸ\t-11.5297\n▁ᎡᏥᎾᏰ\t-11.5304\n▁ᏥᏯᏓᏙᎵᏍᏓᏁ\t-11.5307\n▁ᎦᎷᎶ\t-11.5307\nᏰᎵᎯᏍᏗ\t-11.5314\n▁ᏥᏭ\t-11.5325\nᎦᎸᎢ\t-11.5336\nᎲᎯ\t-11.5338\n▁ᏓᎩᏯ\t-11.534\n▁ᎠᏓᏂ\t-11.5341\n▁ᏗᎪᏪᎶ\t-11.5344\n▁ᎨᏥᏯᏅᏗ\t-11.5351\nᎳᏅᏓᏕ\t-11.5351\n▁ᎤᎴᏗ\t-11.5352\nᏁᏟᏴᏒ\t-11.5354\nᏂᎨᏥᏪᏎᎴ\t-11.5356\nᏣᎦᎸ\t-11.5357\nᏈᏴᎡ\t-11.5363\nᎵᏍᏆᏗ\t-11.5363\nᎵᏏᏂ\t-11.5375\nᎴᎲ\t-11.5379\n▁ᏗᎦᎵ\t-11.5379\n▁ᏫᎷᏥ\t-11.5384\n▁ᏱᎦᏥ\t-11.5386\nᏓᏅᏛᎢ\t-11.5389\nia\t-11.5395\nᏅᏁ\t-11.5397\nᏚᏩᏂᎦᎸ\t-11.5404\nᏔᏲᎯᎲ\t-11.5407\n▁ᎦᎳᏅᏛ\t-11.5409\nᎶᏔᏅ\t-11.542\n▁ᏓᏅ\t-11.5427\nᏓᏍᎩ\t-11.5437\n▁ᎠᎩᏃᎮ\t-11.544\nᎦᏔᎲᏍᏗᏱ\t-11.544\nᏍᎦᏅᏤᎮᏍᏗ\t-11.5442\nᏤᎴᏍᏗ\t-11.5443\n▁ᎤᏤᏪ\t-11.5449\nᏪᏥ\t-11.5451\nᏓᏅᏓᏗᏍᏔᏅ\t-11.5458\n▁ᏆᏂ\t-11.546\n▁ᎬᏩᏁ\t-11.546\n▁ᏧᏭᎪ\t-11.5461\n▁ᏔᎫᏴ\t-11.5462\nᏫᏍᎪ\t-11.5463\nᏍᏚᎢᏍᏗ\t-11.5465\n▁ᎣᏂᎩ\t-11.5465\n▁ᏫᏄ\t-11.5472\n▁ᎤᏣᏘᏂᏉ\t-11.5472\nᏗᏒᏍᏗᏱ\t-11.5474\n▁ᏩᎪᏩᏛ\t-11.5474\nᏅᏙᏗ\t-11.5478\nᎾᏛᏁᎰᎢ\t-11.5482\nᎩᏳ\t-11.5482\n▁ᎢᏥᏰ\t-11.5484\nᎿᎢᏳ\t-11.5487\nᎵᎮᎵᏍᏗᏱ\t-11.5488\nᎨᏥᎾᏌᎢ\t-11.5494\nᏣᎪᏩᏛᏗᏱ\t-11.5495\nᎲᏍᏗ\t-11.5495\n▁ᎤᏬᎯᏳᎯ\t-11.5498\n▁ᏚᏂᎨ\t-11.5504\nᎵᏍᎦᎸ\t-11.5506\nᏥᏅᎵ\t-11.5517\n▁ᎤᏪᎧᏁ\t-11.5517\nᏲᎰᏒ\t-11.5522\n▁ᎦᏙᎩ\t-11.5523\nᎾᏫᏛᎮ\t-11.5524\n▁ᏧᏓᎴᏅ\t-11.5527\n▁ᏓᎭ\t-11.5528\nᎪᏍᏓᏯ\t-11.5539\n▁ᏭᏗᏅ\t-11.5546\nᎵᏍᎨᏍᏗ\t-11.5548\nᎦᎾᏅᎪ\t-11.5549\nᏥᏍᏕᎵᏍᎬ\t-11.5549\nᏥᎪᏩᏗᎭ\t-11.5555\n▁ᎠᏥᎪ\t-11.5561\nᏂᏳ\t-11.5561\nᏘᏌ\t-11.5568\n▁ᎤᏂᏯ\t-11.5568\nᏫᏍᎪᎢ\t-11.5568\n▁ᏦᎯᏍ\t-11.557\nᎧᎲᎦ\t-11.5573\n▁ᎨᎯ\t-11.5578\nᏍᏓᏩᏕᏅ\t-11.5581\nᏅᏛᎾ\t-11.5588\n▁ᏅᏩᏓᎴᎢ\t-11.559\n▁ᎢᏯᎾᏛᏁ\t-11.5593\n▁ᎠᏓᏰ\t-11.5598\n▁ᎤᏝ\t-11.5604\n▁ᎤᏅᎢᏍᏗ\t-11.5605\n▁ᎦᏇᏅ\t-11.5608\nᏆᏤᎵ\t-11.5611\nᎯᏍᏙᏗᏱ\t-11.5611\n▁ᎢᏳᎯ\t-11.5615\n▁ᎠᏂᎴ\t-11.5621\nᎪᎥ\t-11.5622\nᏥᏃᎯᏎᎸ\t-11.5624\nᏑᏯᎩ\t-11.5625\n▁ᎤᏁᏉᏤ\t-11.563\nᎬᏩᎶᏗ\t-11.5644\nᎿᎥᎾ\t-11.565\nᎾᏣᎥ\t-11.5653\nᏓᏨᏯᏍᏗ\t-11.5653\nᎡᎮᏍᏗ\t-11.5653\nᏛᏅᎢᏍᏔᏅᎩ\t-11.566\nᎾᏗᏍᎪᎢ\t-11.5661\n▁ᎠᎦᏞ\t-11.5668\n▁ᏫᎬᎩ\t-11.5668\nᎪᎵᏰᏍᎨᏍᏗ\t-11.5669\nᏍᏘᏰ\t-11.5669\nᏌᏙ\t-11.567\nᏩᏘᏍᎨᏍᏗ\t-11.5672\n▁ᎦᏴ\t-11.5676\nᏅᏬᏗ\t-11.5677\nᏃᎯᎮ\t-11.568\nᎪᎵᏰᏍᎪᎢ\t-11.5683\n▁ᎠᏂᎷ\t-11.5684\n▁ᎤᏂᏥᎸ\t-11.569\nᏲᏢᎾᏁ\t-11.5691\nᏗᎵᏍᎪᎸᏙᏗ\t-11.5695\nᏏᏔᏗ\t-11.5697\n▁ᎤᎾᏗᏓ\t-11.5698\nᎯᎰᎢ\t-11.5698\n▁ᎢᏳᎵᏍᏓᏁ\t-11.5699\n▁ᏭᏕ\t-11.57\nᎵᏍᏓᏴ\t-11.5705\nᏂᏙᎲᎢ\t-11.5707\n▁ᏓᎾᏓᏅ\t-11.571\nᏥᏅᏍᏗ\t-11.5716\nᏂᏣᏔ\t-11.572\nᏓᏅᏘᏐ\t-11.5721\nᎥᏍᎬᎢ\t-11.5723\nᎦᎸᏉᏗᏳ\t-11.5725\nᏂᏙᎲ\t-11.5725\n▁ᏙᏛᏂ\t-11.5726\nᏓᏓᎴᏓ\t-11.5727\nᎾᏝᎠ\t-11.5729\nas\t-11.574\n▁ᏗᏍᎩᏯ\t-11.574\nᎨᏎᏍᏗ\t-11.574\n▁ᏛᏣ\t-11.5747\n▁ᎠᏌᎹᏗ\t-11.5748\n▁ᏨᏙᏗ\t-11.5749\n▁ᏯᏰ\t-11.5753\nᏙᏥᏩᏛᎲᎩ\t-11.5758\nᎵᏍᎪᎸᏔᏅᎯ\t-11.5761\nᏘᏅ\t-11.5764\nᏯᏅᎲᎭ\t-11.5769\nᎾᎻ\t-11.5773\nᏏᏁᎩ\t-11.5777\n▁ᏓᎾᏛ\t-11.5778\nᏍᏘᏰᎬᎢ\t-11.5785\n▁ᏗᏣᎶ\t-11.5793\n▁ᏩᏗ\t-11.5807\n▁ᏯᎦ\t-11.5809\n▁ᏱᏚᏁ\t-11.5812\n▁ᏕᏣᎵ\t-11.5815\n▁ᏴᎦᏰ\t-11.5816\n▁ᎤᏔᎶ\t-11.5818\n▁ᎠᏫᏒ\t-11.5819\n▁ᎠᏩ\t-11.5823\nᏍᎦᏍᎪ\t-11.5831\nᎠᏂ\t-11.5835\nᏯᏫᏍᎨᏍᏗ\t-11.5836\n▁ᎢᎤᏁᏅ\t-11.5844\n▁ᎢᏥᎨᏳᎯ\t-11.5846\n▁ᏙᏓᏓ\t-11.5851\n▁ᏓᎴᏅ\t-11.5856\nᏍᏈᏗ\t-11.5857\nᎤᏙᏓ\t-11.5858\nᏩᏛᎯᎵ\t-11.5859\n▁ᏗᎩᎦᎨ\t-11.586\nᏍᏓᏩᏛᏛ\t-11.5862\n▁ᎠᎾᏁᎷᎩ\t-11.5865\nᏅᎲᎭ\t-11.5867\nᎣᎵ\t-11.5868\nᏁᏣ\t-11.5872\n▁ᏱᏛ\t-11.5877\nᏥᎾᏝᎢ\t-11.5882\nᎳᏗᏓᏍᏗᏱ\t-11.5888\nᎸᏁ\t-11.5889\nᎷᏤᎵ\t-11.5899\nᏃᏴᎵᏍ\t-11.5908\n▁ᎫᏢ\t-11.5908\nᏐᏴᎢ\t-11.5909\nᏂᏂᏌᏁᎢ\t-11.591\n▁ᎠᏴᎩ\t-11.5911\n▁ᏥᏚᎾ\t-11.5911\nᎩᎳᏩ\t-11.5913\nᎳᏍᏙᏗ\t-11.5914\nᎶᎨᏒᎢ\t-11.5914\nᏏᏅ\t-11.5915\n▁ᎤᏂᎭ\t-11.5922\n▁ᏧᏭ\t-11.5923\nᎦᏗᏔ\t-11.5935\n▁ᎾᎾᎵᏍ\t-11.5935\n▁ᎢᏣᏛ\t-11.5939\n▁ᎤᏚᏒ\t-11.5941\n▁ᏕᎦᏁ\t-11.5945\n▁ᏱᏨᏯ\t-11.5946\n▁ᎤᏁᏙ\t-11.5957\nᏘᏁᎪ\t-11.5957\n▁ᎠᏆᏚ\t-11.5958\nᏁᎨ\t-11.5959\nᏏᏍᎨ\t-11.5966\nᎦᏌᏯᏍᏗᏕᎩ\t-11.5973\nᎵᎥᏂᎴ\t-11.5974\nᏤᎰ\t-11.5974\n▁ᏧᏂᏯ\t-11.5981\nᏓᏁᎲᎢ\t-11.5982\nᏂᎷᏣ\t-11.5993\n▁ᏨᏔᏅ\t-11.5995\n▁ᏓᎧ\t-11.5996\n▁ᏕᏨᏯ\t-11.5998\n▁ᎦᏥᏃᏍ\t-11.5999\nᏒᏂᏍᏗᏱ\t-11.6\nᎾᏣᎡᎢ\t-11.6004\nᏲᏞᎯ\t-11.6007\n▁ᎤᎵᏘ\t-11.601\nᏓᎴᏍᎨᏍᏗ\t-11.6011\n▁ᏗᎧᏃᎮ\t-11.6021\n▁ᏤᎳ\t-11.6022\n▁ᏛᎬ\t-11.6027\n▁ᎦᏄ\t-11.6028\n▁ᎠᏏᎾᏌᏅ\t-11.6032\n▁ᎠᏆᏓᏅᏔ\t-11.6034\nᏕᏍᎩ\t-11.604\n▁ᏗᎪᏱ\t-11.6041\n▁ᎠᏩᏔ\t-11.6042\nᏍᏔᏴ\t-11.6043\n▁ᎭᎦᏔ\t-11.6044\nᎩᎸᏗ\t-11.6045\n▁ᎠᏗᏔᏍ\t-11.6052\n▁ᏥᏅᏗᎦᎵᏍᏙᏗ\t-11.6058\nᏚᏓ\t-11.6063\n▁ᏙᏓᎦᏥ\t-11.6064\nᎯᏳᎲᎦ\t-11.6065\n▁ᎤᏂᏁᏗ\t-11.6065\nᎧᎿ\t-11.6069\n▁ᎯᏍᏆ\t-11.6077\nᎾᏩᏛ\t-11.608\n▁ᎣᎩᏙ\t-11.6082\nᏅᏓᏗᏍᏗᏱ\t-11.6083\nᏎᎲ\t-11.6088\nᎩᏰᏃ\t-11.6092\nᏓᏡᏗᏍᎪᎢ\t-11.6093\n▁ᏧᏢᏫ\t-11.6093\n▁ᏱᏣᏁ\t-11.61\nᏂᎾᏰᏍᎬ\t-11.6103\n▁ᏗᎦᏰ\t-11.6103\n▁ᎦᏣᏄᎵ\t-11.6104\n▁ᏓᏍᏆ\t-11.6108\nᎿᏬ\t-11.611\n▁ᎠᎩᏰ\t-11.6112\nᎩᎷᎯᏍᏗᏱ\t-11.6115\n▁ᏕᏣᏓᏠ\t-11.6116\n▁ᏂᏨᏪᏎ\t-11.6116\nᎵᏰᎢᎶ\t-11.6117\n▁ᎡᏦ\t-11.6122\n▁ᎤᎾᏓᏟᏌ\t-11.6124\nᏲᎲᏍᎩ\t-11.6125\n▁ᏦᏍᎪ\t-11.613\nᎾᏕᎶᏆᏍᏗ\t-11.6135\nᏖᎸᎮᏍᎬ\t-11.614\n▁ᏗᎻ\t-11.6146\nᏗᏅᏗ\t-11.6146\n▁ᎤᏔᎷᎩᏍ\t-11.615\n▁ᎣᏨᏗ\t-11.6152\n▁ᎤᏍᏆᏃᏴ\t-11.6152\nᏝᏁᎢ\t-11.6154\n▁ᏚᏂᏣ\t-11.6154\n▁ᎠᏥᎸᏉᏙᏗ\t-11.6157\nᏣᏯ\t-11.6159\nᎮᏗᏱ\t-11.6163\n▁ᏣᏲ\t-11.6164\n▁ᏱᏄ\t-11.6168\nᎾᏓᏗᏍᎪ\t-11.6168\nᏓᏓ\t-11.6168\n▁ᏍᎩᏲᏎ\t-11.6169\n▁ᎤᏬᏢᏅᏅ\t-11.6172\n▁ᏱᏓᏆ\t-11.6175\n▁ᎤᏬᎯᏨ\t-11.6176\n▁ᏅᏩᏍᏕ\t-11.6182\nᎸᏉᏛ\t-11.6186\nᎵᏍᏔᏁᎢ\t-11.6186\n▁ᎠᎾᏗᏒᎯ\t-11.6186\nᎴᏂᏓᏍᏗᏱ\t-11.6189\nᎵᏱᎶᎸ\t-11.6193\nᎨᎳᏍᏙᏗ\t-11.6196\nᏩᎯᏍᏗ\t-11.6198\nᏲᎲᏍᎨᏍᏗ\t-11.6198\n▁ᎾᏆᎵᏍᏓᏁᎸ\t-11.6199\nᎦᏓᏅᏓᏗ\t-11.6203\nᏁᏤᎴᎢ\t-11.6204\nᏗᎧ\t-11.6206\nᎧᎭᏲᏔ\t-11.6207\nᎺ\t-11.6207\n▁ᏱᏩ\t-11.6207\nᏍᎦᏰᎬᏍᏔ\t-11.6209\nᎬᏗᏍᎨᎢ\t-11.6212\n▁ᏥᏂᎦᎵᏍᏗ\t-11.6213\nᏍᏔᏁᏍᏗ\t-11.6213\nᏩᏍᎦ\t-11.6214\nᎺᎵ\t-11.6215\n▁ᎢᏓᏙᎴᎰᎯ\t-11.6218\n▁ᏱᏓᏥ\t-11.6221\nᏨᏯ\t-11.6221\nᏓᎦᎶᏐᏂ\t-11.6221\nᏯᏅᎡᎵ\t-11.6223\nᏗᎨᎴ\t-11.6224\nᎰᏂ\t-11.6229\nᏍᏔᏅᎾ\t-11.6229\nᎮᎵᎠᏍᎪ\t-11.6229\n▁ᏗᏌ\t-11.6229\nᎦᎵᎡᎵ\t-11.6232\n▁ᏂᏕᎦ\t-11.6233\nᎦᏔᎲᎩ\t-11.6235\n▁ᎦᎸᏉᏗᏳᏰᏃ\t-11.6238\nᎵᏬᏤ\t-11.6239\nᏕᏓᏓᎪᎲᏳ\t-11.624\nᎩᎦᎨᏍᏛᏱ\t-11.624\nᏲᎢᏎᎴ\t-11.6241\nᎠᏡᏗᏍᎩ\t-11.6243\n▁ᎤᏂᎶᏎ\t-11.6243\n▁ᎤᏅᏍᎦᎴ\t-11.6243\n▁ᎤᎵᏍᎪᎸᏔᏁ\t-11.6243\n▁ᎠᎩᎪᏁᎸ\t-11.6243\n▁ᏚᏂᎧᎲ\t-11.6243\nᏗᎦᎪᏗᏱ\t-11.6243\n▁ᎤᏓᏙᏎᎴ\t-11.6244\n▁ᏓᎾᏓᏅᏖᏍᎬ\t-11.6244\nᏚᏪᎧᏁᎢ\t-11.6245\n▁ᎠᎵᎬ\t-11.6245\n▁ᏳᏂᎪᎮ\t-11.6245\nᎦᎾᏄᎪᏫᏍᎪ\t-11.6247\n▁ᎢᏨᏬᏁᏔᏅ\t-11.6247\nᏓᎩᎸᏫᏍᏓᏁᎲ\t-11.6247\n▁ᎢᎬᏬ\t-11.6248\n▁ᏩᏂᎦᏛ\t-11.6248\n▁ᏫᏚᏳᎪᏛ\t-11.6249\nᏡᏔᏅ\t-11.6249\nᎪᎵᏰᏍᎬᎢ\t-11.625\nᎠᎳᏑᎶ\t-11.625\nᎤᏬᏚᏨ\t-11.625\nᎤᏓᏅᏒ\t-11.625\nᏣᏄᏏ\t-11.6251\nᏧᏂᎸᏫᏍᏓᏁᎯ\t-11.6251\nᎬᏂᏳᏉ\t-11.6252\n▁ᎢᏣᏓᏁᏟᏴᏏᏒ\t-11.6252\n▁ᏥᎦᎷᎪ\t-11.6253\n▁ᎠᎾᎢᏎ\t-11.6253\nᏧᏙᎢᏛ\t-11.6253\n▁ᎠᏋᏔᏅ\t-11.6253\n▁ᏚᏂᏂᏴᎮ\t-11.6254\nᏧᏪᏥ\t-11.6255\n▁ᎠᏐᏢᎢᏍᏗᏍᎬ\t-11.6255\n▁ᎠᏂᎦᏔᎮ\t-11.6256\n▁ᎤᏔᎳᏬᏍᎬ\t-11.6256\nᏗᏂᎦᏘᏯ\t-11.6256\n▁ᎤᏂᏂᎬᏎᎲ\t-11.6257\nᎡᎳᏂ\t-11.6257\nᎣᏏᏉᏍᎪ\t-11.6257\n▁ᏚᏪᎧᏁᎴ\t-11.6257\n▁ᏂᏚᏂᏪᏎᎴ\t-11.6258\nᎪᏪᎴ\t-11.6258\n▁ᏕᏣᎸᏫᏍᏓᏁᎲ\t-11.6258\n▁ᏣᎾᏗ\t-11.6259\nᎤᏔᎷᎩᏍᎩ\t-11.6259\n▁ᏥᏄᎵᏍᏔᏁ\t-11.626\n▁ᏓᎩᏏᎳᏛ\t-11.6261\n▁ᎤᎾᎦᏙᏍᏕ\t-11.6261\n▁ᏗᏦᏢ\t-11.6261\n▁ᏓᎫ\t-11.6262\n▁ᎤᏁᎸᏔᏁ\t-11.6262\nᏂᏨᏁᏍᏗ\t-11.6263\nᎠᏎᏗ\t-11.6263\n▁ᏚᏠᏱᎴ\t-11.6263\n▁ᏄᏕᏘᏴᎮ\t-11.6263\nᎪᏪᎵ\t-11.6264\nᎪᏪᎸᎢ\t-11.6264\n▁ᏂᎨᎬᏁᎸ\t-11.6265\n▁ᎬᏩᏍᏓ\t-11.6265\nᎵᏍᏙᏔᏅ\t-11.6265\nᎵᏍᎪᎸᏓᏁᏗ\t-11.6266\nᎠᎨᏴ\t-11.6267\n▁ᏚᏫᏞᏫᏒ\t-11.6267\n▁ᎠᏟᏍᏛ\t-11.6267\n▁ᏂᎬᏩᏪᏎᎴ\t-11.6268\nᏂᏍᏚᏁ\t-11.6269\n▁ᎢᏥᎪᎲ\t-11.6269\nᏥᏅᏬᏗ\t-11.6269\n▁ᏕᎫᎪᏓᏁ\t-11.627\nᏣᏁᎳ\t-11.6272\nᎦᎵᏉᎩ\t-11.6272\nᎣᎯᏍᏙᏗ\t-11.6273\n▁ᏧᏯ\t-11.6273\nᎤᏛᏁᎢ\t-11.6275\n▁ᎠᎵᏍᏓᏴᎲᏍᎬ\t-11.6275\nᎾᏗᏔᏍᏗ\t-11.6275\n▁ᎤᏂᏚᎲ\t-11.6275\n▁ᏪᎮ\t-11.6276\n▁ᏥᏍᏚᏂᎩᏍᏗ\t-11.6277\n▁ᏕᏥᎳᏫ\t-11.6278\n▁ᏚᏂᎧᏁ\t-11.6278\n▁ᎾᏆᏛᏅ\t-11.6279\nᏂᏬᏂ\t-11.628\n▁ᎤᏂᏇᏓᎸ\t-11.628\n▁ᎦᏃᎪ\t-11.6281\n▁ᏚᏬᏢᏁ\t-11.6281\nᏥᎸᏉᏔᏅ\t-11.6282\n▁ᎠᏒᏛ\t-11.6282\n▁ᏩᎩᎶᏒ\t-11.6282\nᎦᏪᏍᎬᎩ\t-11.6282\n▁ᎤᏁᎲ\t-11.6283\n▁ᏓᏂᏙᎬ\t-11.6283\n▁ᏚᏪᏲᏁ\t-11.6283\n▁ᏥᏄᏪᏒ\t-11.6283\n▁ᏚᏂᎳᏫᏨ\t-11.6283\n▁ᏓᎩᎪᎲ\t-11.6284\nᎩᏌ\t-11.6284\nᎬᏂᎨᏒ\t-11.6286\n▁ᎤᏮ\t-11.6286\nᏗᎧᎿᏩᏛᏍᏗ\t-11.6287\nᎯᏙᎲ\t-11.6287\nᏅᎪᏨ\t-11.6288\n▁ᏣᏅ\t-11.6289\nᏲᏂ\t-11.629\n▁ᎤᏃᎯᏳᏗ\t-11.629\nᏁᎢᏍᏔᏁ\t-11.629\n▁ᎤᏁᎢᏍᏔᏁ\t-11.6291\nᏓᏙᎵᏍᏗᎭ\t-11.6291\nᏂᎪᎵᏰᎥ\t-11.6291\n▁ᎠᏛᏍᎨ\t-11.6291\n▁ᏧᎾᏓᏡ\t-11.6292\nᎦᏓᎡᎢ\t-11.6293\nᏯᏫᏍᏗ\t-11.6293\nᎯᏄᎪᎢ\t-11.6293\n▁ᎤᎾᏠᏤ\t-11.6293\n▁ᎠᏧ\t-11.6294\nᏪᏎᎢ\t-11.6294\n▁ᎤᏁᎵᏒ\t-11.6295\n▁ᏗᏂᎳᏫ\t-11.6296\nᎩᏓᏟ\t-11.6297\n▁ᏫᎬᏆ\t-11.6297\nᎫᏈ\t-11.6297\n▁ᎢᎦᎯ\t-11.6298\nᏲᎱᏎ\t-11.6298\nᎦᏍᎦᏂ\t-11.6298\n▁ᏭᏂᏴᎸ\t-11.6299\n▁ᏂᏣᎵᏍᏔᏅ\t-11.6299\n▁ᏭᏂᏃᏁ\t-11.6299\nᎶᏄᎮᏗᏱ\t-11.6299\nᏂᏐᏢᎢᏍᏙᏗ\t-11.63\n▁ᏛᏥ\t-11.6301\nᏀᎢ\t-11.6302\nᏁᏍᏓᎳ\t-11.6302\n▁ᏄᏅᏁᎴ\t-11.6302\nᏍᏓᏁᎴ\t-11.6303\n▁ᎠᏉᎸ\t-11.6303\nᏲᎱᏒᎯ\t-11.6304\nᏏᏓᏍᏗ\t-11.6305\nᏅᏨᎩ\t-11.6305\n▁ᏱᏚᎸᏫᏍᏓᏁ\t-11.6306\nᎹᎵ\t-11.6306\nᏆᏕ\t-11.6307\n▁ᏗᎬᏩᏁᎶ\t-11.6307\n▁ᎦᎾᏄᎪᏥᎸ\t-11.6308\n▁ᏱᏥᎪᏩᏘ\t-11.6309\nᏟᏌ\t-11.6309\nᏘᏳ\t-11.6309\nᏂᏪᏍᎬ\t-11.6309\nᎡᏆ\t-11.6309\n▁ᎤᎾᏘᏅᏍᏗ\t-11.631\n▁ᏱᏣᏚᎵ\t-11.631\n▁ᏧᏳᎪ\t-11.631\n▁ᎡᎩᏁᎸ\t-11.631\n▁ᎾᏎᎵ\t-11.6311\nᏃᎯᏰ\t-11.6311\nᏪᎳᏅᎯ\t-11.6312\n▁ᏭᏂᎷᎯᏍᏗ\t-11.6313\nᎠᏆᏚᎵ\t-11.6313\n▁ᎢᏳᏂᏪᏍᏗ\t-11.6313\n▁ᏧᏄᎪᏙᏗ\t-11.6313\n▁ᎠᏆᎵᎮᎵᏍᏗ\t-11.6314\n▁ᎤᎾᏓᏡ\t-11.6314\n▁ᎢᏣᏓᏤᎵ\t-11.6314\n▁ᎢᏳᏪᏅᏍ\t-11.6314\n▁ᏗᎨᏥᎢᏍᏗ\t-11.6315\n▁ᏫᏨᎷᏤᏗ\t-11.6315\n▁ᏇᏗᏂ\t-11.6315\n▁ᎣᎦᎵᏍᏓᏴᏗ\t-11.6316\nᎸᎢᏍᏗ\t-11.6316\n▁ᏥᏄᎵᏍᏔ\t-11.6316\n▁ᎤᎾᏄᎪᏫᏍᏗ\t-11.6317\n▁ᏗᎦᎳᏫᎢᏍᏗ\t-11.6317\nᏁᎶᏙ\t-11.6317\nᏩᏙᎯᏯᏛ\t-11.6317\n▁ᏗᎩᎸᏫᏍᏓᏁᏗ\t-11.6317\n▁ᎠᏰᏙᎳ\t-11.6318\nᏯᏘᏃᎮᎸ\t-11.6318\n▁ᏧᏍᏆᏅ\t-11.6318\n▁ᎠᏥᏙᎵᏍᏗ\t-11.6318\nᎨᏳᏣ\t-11.632\n▁ᎢᏳᎾᎵᏍᏙᏗ\t-11.632\nᏲᎦᏛᏁᏗ\t-11.6321\nᏈᏱ\t-11.6321\nᏍᏚᎢᏎ\t-11.6321\nᏣᎳᏁ\t-11.6322\n▁ᎠᏍᎦᎢᎮ\t-11.6322\n▁ᎢᏣᏛᎦᏅ\t-11.6322\n▁ᏚᎸᏫᏍᏓᏁᎮ\t-11.6322\nᏡᎦ\t-11.6323\n▁ᎠᏫᎾᎨ\t-11.6323\nᎴᎲᎦ\t-11.6323\n▁ᎠᏍᏆᎸᎲ\t-11.6323\nᏃᎮᎮᎴ\t-11.6326\n▁ᎨᏣᎵ\t-11.6326\nᎨᏅᏕ\t-11.6326\nᎴᎬ\t-11.6327\nᎿᏍᏕᏢ\t-11.6327\n▁ᎠᏂᎩᎵᏲ\t-11.6328\nᎾᏛᏗᏱ\t-11.6328\nᏄᏩᎢᏴ\t-11.6329\n▁ᎾᏆᎵᏍᏔᏁ\t-11.6329\n▁ᏕᎾᏓᎪ\t-11.6329\nᎵᏍᏓᏴᎾᏁᏗ\t-11.6329\n▁ᎢᏣᏛᎪᏗ\t-11.633\nᏁᏓᏥᏛ\t-11.633\nᎧᎿᏩᏗᏓ\t-11.633\n▁ᏄᏟᏂᎬ\t-11.6331\nᏝᏪᎯ\t-11.6331\nᏜᏏᏛᎡᎲᎾ\t-11.6332\nᎣᏍᏛ\t-11.6332\n▁ᎮᎲ\t-11.6332\nᎨᏢᏔᏅᎭ\t-11.6333\nᎦᏛᏂᏙᎯᏉ\t-11.6333\nᎵᏍᏔᏁᏍᏗ\t-11.6333\nᏅᏍᏓᏕᎴ\t-11.6333\nᏅᎵᏰᏓ\t-11.6333\nin\t-11.6334\nᏗᏌᏓᏕ\t-11.6334\nᏣᎵᎡᎵᏤᏗ\t-11.6334\n▁ᏕᎬᎦᎿᏩᏗᏙ\t-11.6335\nᎪᏅᏍᏓᎵ\t-11.6335\nᏓᏲᎵᏍᏗ\t-11.6336\nᎤᏍᏕᏎᎸᎯ\t-11.6337\nᎵᏏᎾᎯᏍᏛᎾ\t-11.6337\n▁ᎤᏓᏴᏎ\t-11.6337\n▁ᏩᎾᎦᎳ\t-11.6337\nᎭᏄᏩ\t-11.6338\naire\t-11.6338\nichael\t-11.6338\nreland\t-11.6338\nᎦᏨᏩᏍᏙᏗᏱ\t-11.6338\nᎶᏄᎲᎵ\t-11.6338\nᏂᏍᏋᎦ\t-11.6338\nᏍᏕᎵᏌᏕᏒᎭ\t-11.6338\nᏓᏂᏲᎰᏍᎪ\t-11.6338\nᏓᏅᏖᏔᏂ\t-11.6338\nᏓᏓᎾᏁᎶᏂᎨ\t-11.6338\nᏔᏕᎶᎰᏏ\t-11.6338\nᏚᎸᎡᎸᎩ\t-11.6338\nᏩᏛᎱᎦ\t-11.6338\n▁ᎠᎩᏲᎱᏏᏗ\t-11.6338\n▁ᎠᎾᎵᏍᏓᏴᏂᏙᎮ\t-11.6338\n▁ᎠᏂᏯᏙᎯᎯ\t-11.6338\n▁ᎠᏍᏈᏅ\t-11.6338\n▁ᎠᏥᏂᏌᎲ\t-11.6338\n▁ᎡᏣᏁᎳᏁᎸ\t-11.6338\n▁ᎢᎡᏍᏕᎵᏌᏕ\t-11.6338\n▁ᎢᏍᏙᏎᎸᎭ\t-11.6338\n▁ᎢᏨᏰᎳᏗᏙᎸ\t-11.6338\n▁ᎢᏰᎬᏁᎸᎯ\t-11.6338\n▁ᎤᎦᏑᎲᎢ\t-11.6338\n▁ᎤᎳᏍᏚᏒ\t-11.6338\n▁ᎤᎾᏓᏄᏴᏗ\t-11.6338\n▁ᎤᎾᏓᏙᎵᏍᏓᏁᎴ\t-11.6338\n▁ᎤᏁᏄᎳᏍᏔᏁᎢ\t-11.6338\n▁ᎤᏂᏔᎳᏬᏒᎩ\t-11.6338\n▁ᎤᏄᏖᏎ\t-11.6338\n▁ᎤᏍᎫᏓᏁᎦᎸ\t-11.6338\n▁ᎤᏭᏓᎸᏤ\t-11.6338\n▁ᎦᏖᏌᏗ\t-11.6338\n▁ᎨᏤᎳᏗᏙᎮᏍᏗ\t-11.6338\n▁ᎬᏩᏄᎸᏗ\t-11.6338\n▁ᎬᏩᏓᏡᏫᏍᏔᏅᎩ\t-11.6338\n▁ᎬᏬᏍᏔᏅᎯ\t-11.6338\n▁ᎭᏓᎦᏖᏙᎢᏍᎨᏍᏗ\t-11.6338\n▁ᎮᏏᎦᏯ\t-11.6338\n▁ᏂᎠᏂᏪᎭ\t-11.6338\n▁ᏂᎦᎸᏉᏗᏍᎬᎾ\t-11.6338\n▁ᏂᎧᏪᏍᎬᎩ\t-11.6338\n▁ᏂᏓᏓᏂᎸᎬᎾ\t-11.6338\n▁ᏂᏗᎦᎵᏍᏔᏂ\t-11.6338\n▁ᏂᏥᏪᏍᎪᎢ\t-11.6338\n▁ᏄᎾᏓᏁᏟᏴᏎᎢ\t-11.6338\n▁ᏄᏂᎦᏙᎥᏒᎾ\t-11.6338\n▁ᏅᏓᎨᏥᏅᏏᏛ\t-11.6338\n▁ᏅᏓᏍᏛᏴᏁᎵ\t-11.6338\n▁ᏅᏩᏍᏗᏗᏎᏍᏗᏉ\t-11.6338\n▁ᏈᏯᏏᏱᏆ\t-11.6338\n▁ᏍᏆᏎᎵᏓᏁᎸᎢ\t-11.6338\n▁ᏍᏆᏎᎵᏓᏏ\t-11.6338\n▁ᏐᎣᏁᎵᏁ\t-11.6338\n▁ᏑᎧᏔ\t-11.6338\n▁ᏓᎪᏄᎶᏏᏙᎮᏍᏗ\t-11.6338\n▁ᏓᎵᏖᎸᏂᏙᎮᏍᏗ\t-11.6338\n▁ᏓᎾᏦᏍᎬ\t-11.6338\n▁ᏓᏂᏍᏔᏲᎯᎲ\t-11.6338\n▁ᏓᏂᏏᎳᏛᎥᏍᎨ\t-11.6338\n▁ᏓᏆᏚᏫᏍᏔᏅᎩ\t-11.6338\n▁ᏓᏓᏬᏍᏗᏍᎬᎩ\t-11.6338\n▁ᏓᏛᎯᏍᏓᏁᎮᏍᏗ\t-11.6338\n▁ᏔᏓᏅᏗᏍᏓ\t-11.6338\n▁ᏕᎤᎸᏫᏍᏓᏁᎸ\t-11.6338\n▁ᏕᎦᎶᎴᎬᎢ\t-11.6338\n▁ᏕᏥᏅᎪᎥᏗᏍᎨᏍᏗ\t-11.6338\n▁ᏕᏥᏅᏫᏍᎨᏍᏗ\t-11.6338\n▁ᏕᏦᏢᎯᏏ\t-11.6338\n▁ᏗᎩᎸᏫᏍᏓᏁᎯ\t-11.6338\n▁ᏗᎩᏄᎪᏨ\t-11.6338\n▁ᏗᏓᏙᏪᏙᎥ\t-11.6338\n▁ᏙᏓᏳᎸᏫᏍᏓᏁᎵ\t-11.6338\n▁ᏙᏗᏂᏁᎸᎢ\t-11.6338\n▁ᏚᎧᏙᏍᏕ\t-11.6338\n▁ᏚᎾᏁᏢᏔᏅᏒᎢ\t-11.6338\n▁ᏚᎾᏠᏱᎴᎢ\t-11.6338\n▁ᏚᏂᏖᎸᏁ\t-11.6338\n▁ᏚᏃᏣᎶᏤ\t-11.6338\n▁ᏚᏢᏫᏎᎴ\t-11.6338\n▁ᏠᏆᎹ\t-11.6338\n▁ᏣᏍᏕᏅᏨ\t-11.6338\n▁ᏣᏗᏫᏍᏓ\t-11.6338\n▁ᏧᎦᏎᏍᏗᏕᎩ\t-11.6338\n▁ᏧᏃᏕᏍᏗᏍᎩ\t-11.6338\n▁ᏫᏙᏓᏨᏯ\t-11.6338\n▁ᏫᏴᎨᏥᎷᎩ\t-11.6338\n▁ᏭᏭᏓᎸ\t-11.6338\n▁ᏮᏓᎦᎶᏏ\t-11.6338\n▁ᏯᏓᏬᏍᎨᏍᏗ\t-11.6338\n▁ᏱᏄᎵᏍᏔᏃ\t-11.6338\n▁ᏱᏙᎬᏩᎸᏫᏍᏓᏏ\t-11.6338\n▁ᏱᏚᏓᏌᏝᎮᏍᏗ\t-11.6338\n▁ᏱᏚᏛᏓᏍᏓᏁᎴᎢ\t-11.6338\n▁ᏱᏚᏪᏘᎸ\t-11.6338\n▁ᏱᏨᏲᏪᎳᏁᎭ\t-11.6338\n▁ᏳᎾᏛᏅᎢᏍᏗ\t-11.6338\n▁ᏳᏍᎦᏅᏨ\t-11.6338\n▁ᏴᎬᏂᎷᎩ\t-11.6338\nᎵᏰᏑᏍᏚᏬ\t-11.6338\nᏍᏇᎵᏰᏗ\t-11.6338\nᏓᎾᏫᏛᏗ\t-11.6338\n▁ᎠᏂᎫᏌᏩᎩ\t-11.6338\n▁ᎢᏍᏉᏎᎭ\t-11.6338\n▁ᎤᏦᏔᎮ\t-11.6338\n▁ᏂᏓᎷᎸᎥᏍᎬᎾ\t-11.6338\n▁ᏂᏚᎿᏍᏕᏢᎾ\t-11.6338\n▁ᏗᎩᎧᏁᎸᎯ\t-11.6338\n▁ᏙᏓᎨᏥᏲᎯᏎᎵ\t-11.6338\n▁ᏙᏧᏁᏅᏒ\t-11.6338\n▁ᏩᏂᎦᏖᎢ\t-11.6338\nᏥᏍᎩᏅᏛᎯ\t-11.6338\nᏬᎯᎵᏴᏍᏓᏁ\t-11.6338\n▁ᎠᎦᏘᏗᏍᏙᏗ\t-11.6338\n▁ᎠᎾᏓᏌᎩᏙᎲ\t-11.6338\n▁ᎤᏓᏏᏂᏕᏅ\t-11.6338\n▁ᎤᏙᎴᎱ\t-11.6338\n▁ᎵᏆᏗᎻ\t-11.6338\n▁ᏍᎩᏯᏅᏓᏗᏍᎬᎢ\t-11.6338\n▁ᏍᎩᏲᎢᏳᎲᎦ\t-11.6338\n▁ᏓᎦᏓᏅᏏ\t-11.6338\n▁ᏓᏍᏆᎸᎮᎬᎢ\t-11.6338\n▁ᏦᎧᏔᏂ\t-11.6338\n▁ᏨᏓᎬᏯᏎᎮᎵ\t-11.6338\n▁ᏭᏪᏙᎴᎢ\t-11.6338\n▁ᏱᏄᏓᎠ\t-11.6338\nᎯᎬᏍᎪᎸᎥᏍᎨᏍᏗ\t-11.6338\nᏤᏲᎲᏍᎦ\t-11.6338\n▁ᎠᎻᏗᏏ\t-11.6338\n▁ᎠᎾᏓᎩᎡᎯ\t-11.6338\n▁ᎢᏨᏂᏌᏛ\t-11.6338\n▁ᎢᏯᏂᏪᏍᎩ\t-11.6338\n▁ᎤᏂᏍᏛᏛᎯ\t-11.6338\n▁ᎤᏃᎱᎦᏅ\t-11.6338\n▁ᎤᏉᏔᏗ\t-11.6338\n▁ᎤᏖᎸᏁ\t-11.6338\n▁ᎪᎸᏌᏛᏗ\t-11.6338\n▁ᏂᏚᎾᏑᎴᎲᎾ\t-11.6338\n▁ᏅᏗᏛᏁᎵᏒ\t-11.6338\n▁ᏇᏣᏱᏗ\t-11.6338\n▁ᏌᎷᏱ\t-11.6338\n▁ᏍᎩᎨᏳᎭᏧ\t-11.6338\n▁ᏓᎬᏯᎫᏴᎡᎵ\t-11.6338\n▁ᏗᎦᎸᏉᏔᏅᎯ\t-11.6338\n▁ᏗᏂᎭᏲᎯ\t-11.6338\n▁ᏗᏂᏏᎲᏍᎩ\t-11.6338\n▁ᏗᏲᎳᏅᎯ\t-11.6338\n▁ᏙᏛᏂᏲᎯᏎᎵ\t-11.6338\n▁ᏣᏂᎦᏴᎵ\t-11.6338\n▁ᏦᎩᎦᏴᎵᎨᎢ\t-11.6338\n▁ᏱᏄᏩᏁᎸ\t-11.6338\n▁ᎠᎩᏔᎳᏬᏍᎬ\t-11.6338\n▁ᎠᎾᎵᏙᎩᏯᏍᎩ\t-11.6338\n▁ᎣᎦᏛᏅᎢᏍᏗ\t-11.6338\n▁ᎤᎵᏍᎦᏎ\t-11.6338\n▁ᎤᏲᏏᏌᏁᎢ\t-11.6338\n▁ᎬᏩᎵᏃᎮᏔᏁ\t-11.6338\n▁ᏍᏇᎵᏎᏗᏱ\t-11.6338\n▁ᏚᏂᏐᏨ\t-11.6338\n▁ᏚᏟᎶᏍᏓᏁᎸᎩ\t-11.6338\n▁ᏥᏫᏗᎨᎦᏘᏅᏍᏔᏁ\t-11.6338\n▁ᏯᏂᎷᎩ\t-11.6338\nᏗᎩᏴᎩ\t-11.6338\n▁Co\t-11.6338\n▁ᎡᎵᏍᏓᎦ\t-11.6338\n▁ᎢᏨᏁᏤᎸᎢ\t-11.6338\n▁ᎤᏁᎳᎥᎯ\t-11.6338\n▁ᎤᏩᎢᏎᎸᎯ\t-11.6338\n▁ᎾᏂᏴᎬᎾ\t-11.6338\n▁ᏄᎪᎸᎾ\t-11.6338\n▁ᏅᏓᏲᏣᏛᏁᎵ\t-11.6338\n▁ᏚᏬᏑᎴ\t-11.6338\n▁ᏧᏂᏍᏚᏗ\t-11.6338\n▁ᏩᏓᏁᏟᏴᏍᏓ\t-11.6338\n▁ᎠᏂᏇᎵᏏ\t-11.6338\n▁ᎤᏓᏁᏟᏴᏍᏔᏁᎴ\t-11.6338\n▁ᏂᏚᎾᎵᏂᎬᎬ\t-11.6338\n▁ᏄᎵᏍᏔᏂᏙᎴ\t-11.6338\n▁ᏕᏓᎧᏂᏍᎬ\t-11.6338\n▁ᏥᏅᏓᎦᎵᏍᏔᏂ\t-11.6338\n▁ᏥᏓᎾᏕᏲᎲᏍ\t-11.6338\n▁ᎤᏕᏯᏔᏁᎸ\t-11.6338\n▁ᏄᎵᏍᏚᎸᎾ\t-11.6338\n▁ᏩᎦᏘᏅᏍᏙᏗᏱ\t-11.6338\n▁ᎠᎩᎳᏫᏍᏗᏱ\t-11.6338\n▁ᎠᏆᏙᎴᎰᎯᏍᏗᏱ\t-11.6338\n▁ᎠᏥᏅᏩᏅᎢ\t-11.6338\n▁ᎤᎾᎵᏛᏔᏅ\t-11.6338\n▁ᎤᏆᎶᎦ\t-11.6338\n▁ᏈᏥᏱ\t-11.6338\n▁ᏕᎱᏓ\t-11.6338\n▁ᏚᏰᎵᎯᏍᏔᏁ\t-11.6338\n▁ᏦᏓᎻ\t-11.6338\n▁ᏫᎷᏨᎭ\t-11.6338\n▁ᏮᏓᎦᏙᎴᎣᏏ\t-11.6338\n▁ᏴᎨᏦᎯᏳᎲᎦ\t-11.6338\n▁ᎣᏌᏯ\t-11.6338\n▁ᎤᎾᏕᏯᏔᏁᎴᎢ\t-11.6338\n▁ᎤᎾᏗᏒᎸ\t-11.6338\n▁ᎻᎴᎳ\t-11.6338\n▁ᏓᎾᏗᏔᏍᏗᏍᎨ\t-11.6338\n▁ᏗᏂᏍᏔᏲᎯ\t-11.6338\n▁ᏥᎨᏳᎠ\t-11.6338\nper\t-11.6338\n▁ᎠᎫᏴᎡᏗᏱ\t-11.6338\n▁ᎤᏚᏣᎳᏅᎩ\t-11.6338\n▁ᏙᏓᏰᏣᏬᏍᏔᏂ\t-11.6338\n▁ᏚᎵᏘᎾᎥ\t-11.6338\n▁ᏚᏂᎵᏬᏨᎩ\t-11.6338\n▁ᏥᏚᏃᎱᎦᏁ\t-11.6338\n▁ᎠᏓᏍᏕᎸᏓ\t-11.6338\n▁ᎡᏦᎯᏳᎲᏍ\t-11.6338\n▁ᏓᎦᏥᏁᏉᎢ\t-11.6338\n▁ᏓᏱᏓᎵ\t-11.6338\n▁ᏣᎷᎯᏍᏗᏱ\t-11.6338\n▁ᏧᎳᏏᏗᏱ\t-11.6338\nᎩᏲᎱᏎᎲᎩ\t-11.6338\nᏬᏁᏓ\t-11.6338\n▁ᎠᏂᏃᏟᏙ\t-11.6338\n▁ᎤᎦᏖᏃ\t-11.6338\n▁ᎤᎾᏣᏪᏐᎸᏍᏙᏗᏱ\t-11.6338\n▁ᎦᏨᏩᏍᏔᏅᎯ\t-11.6338\n▁ᎬᏩᎪᎵᏰᏍᎬ\t-11.6338\n▁ᏂᏙᏓᎦᏪᏎᎵ\t-11.6338\n▁ᏓᏤᏅᎡᎵ\t-11.6338\n▁ᏕᎦᏆᏛ\t-11.6338\n▁ᏕᎯᏯᏁᎶᏕᏍᏗ\t-11.6338\n▁ᏥᏂᏴᏁᎭ\t-11.6338\n▁ᎤᏬᎦᏒ\t-11.6338\n▁ᏬᎩᏃᎸᎩ\t-11.6338\n▁ᎾᏂᎦᏔᎾᎥᎾ\t-11.6338\n▁ᏗᎾᎵᏍᏓᏴᏂ\t-11.6338\nᏍᏚᎢᎡᎸ\t-11.6338\n▁ᎠᎵᏍᏕᎵᏍᎬ\t-11.6338\n▁ᏗᎬᏩᎾᏛᎪᏙᏗ\t-11.6338\n▁ᏙᎦᏠᏒᎩ\t-11.6338\n▁ᎤᎾᏕᎶᏆᏍᏗᏱ\t-11.6338\n▁ᎻᏗᏯᏂ\t-11.6338\n▁ᏄᏂᏍᎦᏅᏨᎾ\t-11.6338\n▁ᏛᏓᎸᎢ\t-11.6338\n▁ᏯᏥᏯᏝ\t-11.6338\nᏓᎴᏴᏗᏍᎩ\t-11.6338\nᏓᏓᎴᏔᏂ\t-11.6338\n▁ᎢᏥᎪᎵᏰᎥᎭ\t-11.6338\n▁ᎤᎾᏦᏍᏔᏁ\t-11.6338\n▁ᏂᏨᎾᏛ\t-11.6338\n▁ᏱᏅᏓᎦᎵᏍᏙᏓ\t-11.6338\nᎱᏢᏔᏅᎭ\t-11.6338\n▁ᏛᏥᎷᏥ\t-11.6338\n▁ᏒᎦᏙᎯ\t-11.6338\nᏙᏥᎵᏦᏛᎦ\t-11.6338\n▁ᎠᎵᏃᎮᏗᏍᎬᎢ\t-11.6338\n▁ᎠᏂᏁᎢᏍᏗᏍᎩ\t-11.6338\n▁ᎤᎾᏘᏍᏙᏗᏱ\t-11.6338\n▁ᎤᏎᎵᏓᏁᎴᏃ\t-11.6338\n▁ᏂᏙᏓᎬᏁᎵ\t-11.6338\n▁ᏅᏓᏨᏴᏁᎵ\t-11.6338\n▁ᏗᎾᏓᏙᏕᏍᏗᏍᎩ\t-11.6338\n▁ᎠᏰᎴᎩ\t-11.6339\n▁ᎦᏴᏓᏗ\t-11.6339\n▁ᏕᎦᏕᏲᎲᏍᎬ\t-11.6339\n▁ᏕᎧᏃᎮᏍᎬ\t-11.6339\n▁ᏚᎳᏫᏛ\t-11.6339\nᎩᎵᏲᏥᏙᎸᎢ\t-11.6339\n▁ᎤᏅᏘᏛ\t-11.6339\n▁ᎤᏍᏆᎷᎪ\t-11.6339\n▁ᎤᏙᏣᎸᎢ\t-11.6339\n▁ᎾᎾᏓᏛᏍᎬᎾ\t-11.6339\n▁ᎣᏥᏯᎥ\t-11.6339\n▁ᎤᏓᏦᎯᏯ\t-11.6339\n▁ᏗᏧᎪᏗᏍᎩ\t-11.6339\n▁ᎯᏯᏛᎥᎦ\t-11.6339\n▁ᏙᎩᎾᏗᏔᎲ\t-11.6339\n▁ᎦᏅᏃᏫ\t-11.6339\n▁ᏧᏃᏑᎴᏗ\t-11.6339\nᏲᎱᎯᏎᎴᎢ\t-11.6339\n▁ᎦᏢᏍᎩ\t-11.6339\n▁ᏄᎾᏙᏓᏈᏒ\t-11.6339\n▁ᎤᎾᏓᏓᏍᎩᏌᎲ\t-11.6339\n▁ᎦᏃᎱᎩᏍᎨ\t-11.6339\n▁ᏅᏗᎦᏪ\t-11.6339\n▁ᎠᏂᏂᎩᎸ\t-11.6339\n▁ᎠᏍᏚᎢᏛ\t-11.6339\n▁ᎤᎦᏛᎴᎯᏍᏗᏱ\t-11.6339\n▁ᏗᎬᏩᏂᏯᎢ\t-11.6339\n▁ᏛᎵᏛᏔᏂ\t-11.6339\n▁ᏄᎵᏌ\t-11.6339\n▁ᎠᏐᏢᎢᏍᏗᏍᎨᏍᏗ\t-11.6339\n▁ᎤᏍᏘᏰᎩ\t-11.6339\n▁ᎤᏟᏃᎮᏔᏁᎢ\t-11.6339\n▁ᏄᏂᏧᏈᏍᏕᏍᏗ\t-11.6339\n▁ᏛᎬᏯᏘᏃ\t-11.6339\n▁ᎠᎵᏱᎵᏒᎢ\t-11.6339\n▁ᎠᏃᏢᏅᎥᏍᎩ\t-11.6339\n▁ᏧᎾᏛᏒᎯ\t-11.6339\nᎫᎪᏓᏁᏗ\t-11.6339\nᏑᎶᏨᎯ\t-11.6339\n▁ᎠᎾᎵᏍᎩᏍᎬ\t-11.6339\n▁ᎤᎾᎵᏍᏓᏴᏃᏅ\t-11.6339\n▁ᏥᏄᎾᏍᏛᎢ\t-11.6339\nᏨᏯᏛᏛᏂ\t-11.6339\n▁ᎦᎨᏥᏐᏢ\t-11.6339\nᎿᎸᏍᏗᏍᎨᏍᏗ\t-11.6339\nᏕᏯᏔᏁᎭ\t-11.6339\nᏣᏓᏅᎡᎸ\t-11.6339\n▁ᏃᎩᏪᏒᎩ\t-11.6339\n▁ᏓᏳᏂᏄᎪᏨᎩ\t-11.6339\n▁ᎤᏗᏛᎲᎩ\t-11.6339\n▁ᏂᎨᏣᏛᏁᎮᏍᏗ\t-11.6339\n▁ᏧᎾᏓᏟᏴᏗ\t-11.6339\n▁ᏗᎵᏰ\t-11.6339\n▁ᏙᎩᏃᏢ\t-11.6339\n▁ᎠᎩᏔᏕᎩᏍᎬ\t-11.6339\n▁ᏙᏘᏲᎢ\t-11.6339\n▁ᏚᏥᎸᏒ\t-11.6339\n▁ᏫᏄᏒ\t-11.6339\n▁ᎢᏣᏛᎿᏕᎩ\t-11.6339\n▁ᎾᏆᎵᏍᏓᏁᎵᏕᎬ\t-11.6339\n▁ᏚᎾᎵᏯᏍᏚ\t-11.6339\n▁ᏣᎦᏥᎶᏍᏔᏅ\t-11.6339\n▁ᏧᎧᏃᏗᏱ\t-11.6339\nᎬᏣᏝᏅ\t-11.6339\n▁ᏂᎦᎷᎶᎬᎾ\t-11.6339\n▁ᏚᎵᏥᏙᏁᎴᎢ\t-11.6339\n▁ᏥᏂᎦᏛᏁᎭ\t-11.6339\n▁ᎠᎩᏟᏲ\t-11.6339\n▁ᏅᏓᏥᏯᏛᏁᎵ\t-11.6339\n▁ᎢᏥᎪᏙᏍᎨᏍᏗ\t-11.6339\n▁ᏰᏦᏎᎮᏍᏗ\t-11.6339\n▁ᏚᏄᏮ\t-11.6339\n▁ᎠᏉᎵᏨ\t-11.6339\n▁ᎤᏄᏬᎥᎯ\t-11.6339\n▁ᎡᏣᏁᏍᎨᎲᎯ\t-11.6339\n▁ᏂᎦᎵᏍᏔᏂᏙᎮᏍᏗ\t-11.6339\n▁ᏗᎩᎪᎶᎯ\t-11.6339\n▁ᏗᏥᏅᏍᎨᏂ\t-11.6339\n▁ᏧᏁᎩᏳ\t-11.6339\n▁ᏄᏓᏅᏛᎾ\t-11.6339\n▁ᎠᏃᏢᏍᎬ\t-11.6339\n▁ᎤᏍᎦᎢᏓ\t-11.6339\n▁ᎢᏥᎾᏫ\t-11.6339\n▁ᎠᎵᏍᏆᏛᎭ\t-11.6339\n▁ᎡᏣᎵᎡᎵᏤᎮᏍᏗ\t-11.6339\nᎳᏫᏎᎮᏍᏗ\t-11.6339\nᏧᎾᏚᎩᏎ\t-11.6339\n▁ᎠᏆᎵᏂᎬᎬᎢ\t-11.6339\n▁ᏫᎷᎩ\t-11.6339\n▁ᎢᏨᏯᏅᏓᏗᏍᏗᏍᎬᎢ\t-11.6339\n▁ᎢᏏᎳᎻ\t-11.6339\n▁ᎾᏐᏂ\t-11.6339\n▁ᎾᏓᏛᏁᎲᎢ\t-11.6339\nᎾᎪᏄᎸ\t-11.6339\n▁ᎨᎩᏍᎦᎩ\t-11.6339\n▁ᎹᏈᎳ\t-11.6339\n▁ᎤᏂᎾᏰᏒᎩ\t-11.6339\n▁ᏂᏕᎦᏅᎯᏒᎩ\t-11.6339\n▁ᎢᏣᏛᎩᏍᎨᏍᏗ\t-11.6339\nᎩᎵᏲᎨᏍᏗ\t-11.6339\nᎳᏫᏎᏗ\t-11.6339\n▁ᎤᏁᏢᏔᏅᏒᎢ\t-11.6339\n▁ᏄᏲᎱᏒᎩ\t-11.6339\n▁ᏗᏓᎪᏗᏍᎩ\t-11.6339\nᏍᎦᎳᏤ\t-11.6339\n▁ᏱᏩᏍᏔ\t-11.6339\n▁ᏛᎩᏲᎵ\t-11.6339\nᎬᏲᏎᏗ\t-11.6339\nᏢᏥᏰᏍ\t-11.6339\n▁ᏥᏓᏓᏂᎸᎪᎢ\t-11.6339\n▁ᎠᎵᏱᎶᎸᎭ\t-11.6339\n▁ᏙᎨᏥ\t-11.6339\n▁ᏫᏨᏲᎵ\t-11.6339\n▁ᎠᏆᏁᎳᏫᏎ\t-11.6339\n▁ᎾᏂᎦᏔᎿᎥᎾ\t-11.6339\n▁ᎤᎧᎵᏦᏅ\t-11.6339\nᎳᏍᏕᎵᏴᏌ\t-11.6339\n▁ᏒᎯᏰ\t-11.6339\n▁ᏱᏓᏂᏁᏟᏴ\t-11.6339\n▁ᎤᏪᏣᏄ\t-11.6339\n▁ᎠᎨᎾᏂ\t-11.6339\n▁ᏧᏲᏍᏔᏅᎯ\t-11.6339\n▁ᏬᏥᎦᏛ\t-11.6339\n▁ᎢᏳᎾᎵᏍᏔᏁᏗ\t-11.6339\n▁ᎤᏗᎦᎵᏍᏙᏗᏍᎨ\t-11.6339\n▁ᏧᎾᎳᏏᏕᏄᎶᏗ\t-11.6339\n▁ᎠᎩᏬᏂ\t-11.6339\n▁ᎤᎾᏁᎳᏛ\t-11.6339\n▁ᏕᎱᎪ\t-11.6339\n▁ᏫᏚᎾᏘᏃᎮᎸᎩ\t-11.6339\nᏲᎱᏒᎾ\t-11.6339\n▁ᏅᏓᏳᏪᏒᎩ\t-11.6339\n▁ᏳᏍᏆᎸ\t-11.6339\n▁ᎠᏍᏆᎾᎸ\t-11.6339\n▁ᏧᎾᎳᏏᏕᏅ\t-11.6339\n▁ᏭᏪᏙᎸ\t-11.6339\n▁ᎠᏆᏛᏛᏅ\t-11.6339\nᎩᏍᏚᎲᎩ\t-11.6339\n▁ᏂᏗᏨᎦ\t-11.6339\n▁ᎢᎪᎯᏳᏒ\t-11.6339\n▁ᏣᎪᏎᎰᎢ\t-11.6339\n▁ᏂᏥᏲᎯᏍᏗᏍᎬᎾ\t-11.6339\n▁ᎠᎾᏕᎲᏍᎨ\t-11.6339\n▁ᎤᏃᏴᎳᏒ\t-11.6339\n▁ᎤᏅᏫᏍᏗᏍᎩ\t-11.6339\n▁ᏄᎵᏁᏨ\t-11.6339\n▁ᏅᏧᏪᏎᎴᎢ\t-11.6339\nᏍᏇᏲᎲᎦ\t-11.6339\n▁ᎠᎪᏩᏘᏍᎩ\t-11.634\n▁ᏁᏙᎲᎾ\t-11.634\n▁ᏍᎩᏯᏛᏓᏍᏓᏏ\t-11.634\nᏩᎵ\t-11.634\nᎵᎯᎮᎢ\t-11.634\n▁ᏏᏗᎻ\t-11.634\n▁ᏚᏂᏲᏏᏍᎬ\t-11.634\n▁ᎢᎩᏇᏓᎸ\t-11.634\n▁ᏚᏂᎦᏘᎸᏎ\t-11.634\nᏥᏯᏫᏍᎬ\t-11.634\n▁ᎠᏂᏲᎵᎮ\t-11.634\n▁ᎢᏣᏓᏅᏓᏓ\t-11.634\n▁ᎤᏗᎴᎲᏍᎨᎢ\t-11.634\n▁ᎤᏙᎵᏍᏙ\t-11.634\n▁ᎠᏆᏛᏐᏅᎯ\t-11.634\nᏟᎶᏍᏔᏂ\t-11.634\n▁ᎠᎢᏗᏢ\t-11.634\n▁ᏄᎸᏉᏔᏅᎾ\t-11.634\n▁ᏚᏬᎥᎩ\t-11.634\n▁ᎢᎨᏓᏍᏗᏱ\t-11.634\n▁ᏗᎾᏓᎯᎯ\t-11.634\nᏣᎦᏎᏍᏓ\t-11.634\n▁ᏧᏓᏅᎵᏰᏓ\t-11.634\n▁ᎤᎵᏒᏍᏔᏁᎢ\t-11.634\n▁ᏓᏥᎾᏄᎪᏫᏎᎵ\t-11.634\n▁ᎠᏓᏅᏬᎯᏍᏗᏍᎩ\t-11.634\nᎭᏄᏫ\t-11.634\n▁ᎢᏨᏁᏤᎭ\t-11.634\n▁ᎬᏩᏛᎡᎴᏍᏗ\t-11.634\n▁ᎤᎦᏌᏛᎢ\t-11.634\n▁ᎤᏠᎩ\t-11.634\n▁ᏓᏳᏠᎠᏒᎩ\t-11.634\n▁ᏚᏂᏎᎪᎩᏎ\t-11.634\n▁ᎠᏎᎵᏛᏍᎬ\t-11.634\n▁ᎣᏣᏓᏅᏟ\t-11.634\n▁ᏫᏚᏂᏴᏍᏗᏱ\t-11.634\n▁ᎤᎯᏌᏛ\t-11.634\n▁ᎠᎾᏓᎸᏉᏗᏍᎩ\t-11.634\n▁ᎠᎩᏁᏉᏤ\t-11.634\n▁ᏕᎤᏲᎯᏎᎴᎢ\t-11.634\n▁ᎠᏍᏙᏓ\t-11.634\n▁ᏳᏂᏃᎮᎸ\t-11.634\n▁ᎢᏨᏲᎵᎦ\t-11.634\n▁ᏦᏥᏰᎸ\t-11.634\n▁ᎠᏓᏓᏱᎮᏍᏗ\t-11.634\n▁ᎾᎾᎵᏍᏗᎭ\t-11.634\n▁ᏕᎦᎦᏙᏍᏛ\t-11.634\n▁ᎠᏁᏦ\t-11.634\nᏯᏓᏂᎸᏥ\t-11.634\n▁ᎥᏆᏬᏍᏙᏗ\t-11.634\n▁ᏭᏗᏢᏍᏔᏅ\t-11.634\n▁ᎢᏥᏲᎮᏍᏗ\t-11.634\n▁ᎢᏥᏁᎢᏍᏗᏱ\t-11.634\n▁ᎤᎾᎵᏍᏔᏴᏅ\t-11.634\n▁ᏳᏥᏍᎪᎸ\t-11.634\nᏨᏉᏛᎾ\t-11.634\n▁ᎥᎩᏂᎵ\t-11.634\n▁ᏱᎦᏂᏆᏘᎭ\t-11.634\nᎬᏑᎶᏙᏗ\t-11.634\n▁ᏫᎬᎷᏤᏗᏱ\t-11.634\n▁ᏚᎾᏂᏏᏁᎢ\t-11.634\n▁ᏗᎪᏏᏐᏗ\t-11.634\n▁ᎠᏉᎯᏳᎲᏍᎨᏍᏗ\t-11.634\n▁ᏳᏓᏅᏒ\t-11.634\n▁ᎤᎾᏁᎶᏔᏁ\t-11.634\n▁ᎣᎦᏂᎩᏒᎩ\t-11.634\n▁ᎤᏂᏲᎢᏎᎸᎯ\t-11.634\n▁ᏫᏚᎵᏍᏘᏂᎸ\t-11.634\n▁ᏚᏂᎳᏫᏦᎴ\t-11.634\nᏦᎣᏍᏙᏗ\t-11.634\n▁ᎢᏣᏗᏔᏍᎨᏍᏗ\t-11.634\n▁ᏓᏆᎭᏄᏮ\t-11.634\n▁ᏫᏍᎩᏩᎯᏏ\t-11.634\n▁ᎤᏛᎸᎮ\t-11.634\n▁ᏙᏂᏍᎩ\t-11.634\nᎵᏍᏓᏁᎵᏕᎬ\t-11.634\n▁ᎦᎾᏜᎢ\t-11.634\n▁ᏅᏓᏳᎾᏄᎪᎢᏍᏗ\t-11.634\nost\t-11.6341\n▁ᏓᏰᏥᎪᎢ\t-11.6341\n▁ᎠᎦᏘᏅᏍᏗᏱ\t-11.6341\n▁ᏌᎳᏓᏱᎵ\t-11.6341\nᏕᎰᏍᎬᎾ\t-11.6341\n▁ᏓᏘᎭᏁᎲ\t-11.6341\n▁ᏓᏳᏗᏩᏏ\t-11.6341\n▁ᎢᏍᎩᎪᏩᏘᏍᎨᏍᏗ\t-11.6341\n▁ᎤᎾᎦᏙᏍᏛ\t-11.6341\n▁ᏫᏓᏂᎷᎦ\t-11.6341\n▁ᏓᏉᏙᎥ\t-11.6341\ner\t-11.6341\n▁ᏐᏆᎵ\t-11.6341\n▁ᏌᏗᏏ\t-11.6341\n▁ᏧᏟᏴ\t-11.6341\n▁ᎢᏨᏍᏓᏩᏕᏅ\t-11.6341\n▁ᏙᏓᏲᏣ\t-11.6341\n▁ᏧᎾᎭᎾᏬ\t-11.6341\n▁ᎤᏓᏬᎡ\t-11.6341\n▁ᏅᏛᎴᏅᏛ\t-11.6341\nᏢᏈᏍᎦ\t-11.6341\nᏗᎨᏥᏰᎪᎢ\t-11.6341\n▁ᏫᏗᏍᎩᏯᏅᏏ\t-11.6341\n▁ᎡᏥᎸᏉᏗᏍᎨᏍᏗ\t-11.6341\n▁ᏝᏬ\t-11.6341\n▁ᎤᏂᎦᎾᏍᏓ\t-11.6341\n▁ᎣᎦᏁᎳᎩ\t-11.6341\nᎶᏄᎮᎸᎩ\t-11.6341\nᎠᎩᎷᏨ\t-11.6341\n▁ᎠᏓᏅᏖᏍᎩ\t-11.6341\n▁ᎤᎵᏏᏂᏕᎾ\t-11.6341\nᎨᎲᏒᎩ\t-11.6341\n▁ᎢᏳᎾᏓᎵ\t-11.6341\n▁ᏱᏍᎩᎪᏩᏘᏍᎨᏍᏗ\t-11.6341\n▁ᎢᏓᎢᏎᏍᏗ\t-11.6341\n▁ᎢᏣᏓᏄᎸᏗ\t-11.6341\n▁ᎢᎨᎳᏗᏙᎭ\t-11.6341\n▁ᎤᏪᎧᎮ\t-11.6341\nᏃᏪᎳᏁ\t-11.6341\n▁ᎫᏘᏍᎬ\t-11.6341\n▁ᎢᎤᏂᎷᏨ\t-11.6341\n▁ᎤᎾᏓᏅᎡᎸᎩ\t-11.6341\n▁ᎡᎳᏆᏘ\t-11.6341\n▁ᏙᏥᏲᎦ\t-11.6341\n▁ᏕᏣᏏᎳᏛ\t-11.6341\n▁ᎠᏉᎯᏳᎲᏍᎩ\t-11.6341\n▁ᎣᎩᎾᏟᏃᎮᎸ\t-11.6341\n▁ᎣᏦᎯᏳᎲᏍᎦ\t-11.6342\n▁ᏥᏥᏃᎮᎭ\t-11.6342\n▁ᎢᏰᏨᏁᏗᏱ\t-11.6342\n▁ᎠᏆᏎᎵᏙᏔᏅ\t-11.6342\n▁ᏱᏂᎬᏩᏍᏗᏉ\t-11.6342\n▁ᎠᏇᏙᏅ\t-11.6342\n▁ᏚᏰᎵᏏᏙᎴᎢ\t-11.6342\n▁ᏚᏍᏕᎸᎯᎸ\t-11.6342\n▁ᏱᏍᎩᏃᎯᏎ\t-11.6342\n▁ᏗᏤᎵᏏ\t-11.6342\n▁ᎤᏩᏃᏫᏍ\t-11.6342\n▁ᏴᏗᏓᎴᎲᏍᎦ\t-11.6342\n▁ᏭᏂᎧᏁ\t-11.6342\n▁ᏕᏥᏁᏤᎮᏍᏗ\t-11.6342\n▁ᏚᏂᏐᏈ\t-11.6342\n▁ᎤᎵᏍᏚᎸᎩ\t-11.6342\n▁ᏗᎫᎪᏗᏱ\t-11.6342\n▁ᏕᏣᎸᏫᏍᏓᏁᎮᏍᏗ\t-11.6342\n▁ᎢᏗᏜ\t-11.6342\n▁ᏓᎾᎴᎯᏌᏅ\t-11.6342\n▁ᏌᎵᎹ\t-11.6342\n▁ᏚᎾᏠᏱᎸᎩ\t-11.6342\n▁ᎤᎩᎴᏍᏗ\t-11.6342\n▁ᎠᏆᏣᏅᏓᏕ\t-11.6342\n▁ᎭᎵᏍᏓᏴᎲᎦ\t-11.6342\n▁ᎡᏣᏓᏅᏛᎵ\t-11.6342\n▁ᎢᎪᎯᏳᏅ\t-11.6342\n▁ᏗᎬᏩᏂᎾᏝᎢ\t-11.6342\n▁ᎠᎬᏂᏗᏳ\t-11.6342\n▁ᏕᏣᏓᏅᏖᏍᏗ\t-11.6342\n▁ᎤᏍᏆᏄ\t-11.6342\n▁ᎤᏓᏅᎵᏰᏓ\t-11.6342\n▁ᏴᎨᏤ\t-11.6342\n▁ᏂᏥᎾᏰᏍᎬᎾ\t-11.6342\n▁ᎠᏅᏍᎬᎢ\t-11.6342\n▁ᎢᎫᏓᎴᏍᏗᏱ\t-11.6342\n▁ᎢᎬᏴᏁᏗᏱ\t-11.6342\nᏓᏚᎪᏓᏁᎭ\t-11.6342\nᏗᏔᏍᏔᏁ\t-11.6342\n▁ᏥᏗᎧᎸᎪ\t-11.6342\n▁ᏯᏬᏅ\t-11.6343\n▁ᎦᏓᏙᎵᏍᏗᏍᎨᏍᏗ\t-11.6343\n▁ᏖᏒ\t-11.6343\n▁ᏗᏂᏂᏙᎯ\t-11.6343\n▁ᏭᎦᏔᎲᏍᏔᏅ\t-11.6343\n▁ᎠᏔᏍᎩᏍ\t-11.6343\n▁ᎠᎾᏙᎴᎰᏍᎨᏍᏗ\t-11.6343\n▁ᏕᏣᏓᎨᏳᏒ\t-11.6343\n▁ᏗᎦᎾᎯᏍᏙᏗ\t-11.6343\n▁ᏥᎨᎳᏗᏙᎮ\t-11.6343\n▁ᏚᏂᏃᎸᎩ\t-11.6343\n▁ᎢᏥᏫᏅ\t-11.6343\n▁ᏥᎾᏂᎥ\t-11.6343\n▁ᎤᏃᏒᏅ\t-11.6343\n▁ᏩᏎᎯ\t-11.6343\nᏍᎦᏞᎢ\t-11.6343\n▁ᏂᏍᎩᏴᏁᎸ\t-11.6343\nᏍᏕᏓᎵᏴᏌ\t-11.6343\n▁ᏚᏍᏚᏤ\t-11.6343\n▁ᎤᏂᏏᏁᎢ\t-11.6343\n▁ᏭᎵᏰᎢᎶᎸ\t-11.6343\n▁ᎢᏗᎬᏓ\t-11.6343\n▁ᎢᏨᏅᎵ\t-11.6343\n▁ᏧᏪᏲᏅᎯ\t-11.6343\n▁ᎤᏁᏍᎨᎴ\t-11.6343\n▁ᏕᏨᏰ\t-11.6343\n▁ᏧᏕᏲᏗᏱ\t-11.6343\nᎵᏴᏌ\t-11.6343\nᏳᎪᏛᎾ\t-11.6343\n▁ᎨᏣᎵᏍᏕᎸᏙᏗ\t-11.6343\nᏲᎲ\t-11.6343\n▁ᎢᏥᏂᎬᏎᎲᎢ\t-11.6343\n▁ᏍᎩᏯᏓᏅᏏ\t-11.6343\nᎩᎩᎡᎵ\t-11.6343\n▁ᏓᏳᏍᏕᎸᎯ\t-11.6343\n▁ᎤᏤᏥᏍᏗ\t-11.6343\n▁ᎦᏁᏐᎠᏍᎬ\t-11.6343\n▁ᏅᏩᏛᏁᏍᏗ\t-11.6343\n▁ᏍᏆᏕᏁᎸ\t-11.6343\n▁ᎢᏨᏲᎢᏳ\t-11.6343\n▁ᎠᏕᏄ\t-11.6343\n▁ᎠᏕᎰᎯᏍᏗ\t-11.6343\n▁ᎢᏳᏥᎶᏓ\t-11.6343\nᏓᏄᏴᏛᎾ\t-11.6343\n▁ᏫᏨᏲᏪᎳᏁᏗᏱ\t-11.6343\n▁ᏗᏣᏠᏱᎸᎩ\t-11.6344\n▁ᎤᏂᏯᏙᎴ\t-11.6344\n▁ᏚᏅᏫᏍᏔᏅ\t-11.6344\n▁ᎹᏚ\t-11.6344\n▁ᏧᏓᎴᏅᏔᏅᎯ\t-11.6344\n▁ᏄᎾᏍᏕᏍᏗ\t-11.6344\n▁ᎠᎦᏬᎥ\t-11.6344\n▁ᏕᎦᎶᏍᎬ\t-11.6344\nᏴᎳᏎᎢ\t-11.6344\n▁ᏄᏓᎨᏒ\t-11.6344\n▁ᎠᏯᎣᎢ\t-11.6344\n▁ᎠᎾᎵᏍᏔᏴᎲᏍᎬ\t-11.6344\n▁ᎢᏲᎦᏛᏁᏗᏱ\t-11.6344\n▁ᏤᏥᎤᏍᏕᏎᏗᏱ\t-11.6344\n▁ᏱᏓᎨᏏ\t-11.6344\n▁ᎣᏣᏓᏙᎵᏍᏓᏁ\t-11.6344\n▁ᎯᏅᎦᎸ\t-11.6344\n▁ᎢᏕᎮᏍᏗ\t-11.6344\n▁ᏧᎾᏁᎳᏗᏍᏗᏱ\t-11.6344\n▁ᏥᏄᏪᏎᎴᎢ\t-11.6344\n▁ᏋᏗᏱ\t-11.6344\n▁ᎤᎾᏓᏙᎵᏍᏗ\t-11.6344\n▁ᎦᏁᎵᏛ\t-11.6344\n▁ᎯᏁᏒᎭ\t-11.6344\nᎦᏎᏍᏔᏅ\t-11.6345\nᏙᎰᏎ\t-11.6345\n▁ᏛᎨᏥ\t-11.6345\n▁ᏯᏆᏛᎦ\t-11.6345\n▁ᏱᏙᎦᏰ\t-11.6345\n▁ᎢᏨᏯᏛᏁᏗᏱ\t-11.6345\n▁ᏂᎦᏁᎲᎾ\t-11.6345\nᏕᎰᎯᏍᏙᏗᏱ\t-11.6345\n▁ᎢᏤᎳᏗᏙᎭ\t-11.6345\n▁ᎠᎾᏔᏍᎩᏍᎩ\t-11.6345\n▁ᎢᎤᎷᏤ\t-11.6345\nᎥᏍᎩᏱᎩ\t-11.6345\n▁ᎤᏓᏅᏓᏛᎩ\t-11.6345\n▁ᎢᏥᎷᎨᏍᏗ\t-11.6345\n▁ᎠᏝᎲ\t-11.6345\n▁ᎢᏣᏓᏯᏫᏍᎨᏍᏗ\t-11.6345\n▁ᏍᎩᏯᏘᏃᎮᎸᎭ\t-11.6345\n▁ᏣᎾᏓᎾᏏᏂᏙᎭ\t-11.6345\n▁ᏥᎦᎷᎯᏍᏗᎭ\t-11.6345\n▁ᎢᏳᏪᏍᏘ\t-11.6345\nᎫᏴ\t-11.6345\n▁ᏂᏥᏪᏒᎭ\t-11.6345\n▁ᏗᎦᏅᏍᏙᏗ\t-11.6345\n▁ᏱᏣᏰᎸᏅ\t-11.6345\n▁ᏳᏲᏤᎢ\t-11.6345\n▁ᎤᏂᏑᎵᎪᏤ\t-11.6345\n▁ᏅᏓᏳᏄᎪᏨᎯ\t-11.6345\n▁ᎾᎾᏓᏁᏟᏴᏏᏒ\t-11.6346\nᎶᏅᎮᎸ\t-11.6346\n▁ᎾᏥᏪᏎᎸ\t-11.6346\n▁ᏱᏦᎵᎦ\t-11.6346\n▁ᎢᏣᏣᏪᏐᎸᏍᏓ\t-11.6346\n▁ᏗᎦᏚᏗᏱ\t-11.6346\n▁ᎢᏳᏩᎪᏗ\t-11.6346\n▁ᎤᏩᎦᏘ\t-11.6346\n▁ᏓᏂᎾᏌᏛ\t-11.6346\n▁ᎯᏫᏅ\t-11.6346\n▁ᏗᎨᎪᏍ\t-11.6346\n▁ᎠᏂᎵᏫ\t-11.6346\n▁ᏕᏨᏁᏍᏗ\t-11.6346\n▁ᎬᎩᎷᏤᏗᏱ\t-11.6346\n▁ᏱᎾᏥᎸᏉᏙ\t-11.6346\nᏎᏒᎮ\t-11.6346\n▁ᏥᏯᎵᎪᏁᎯ\t-11.6346\nᏠᎯᏍᏗᏱ\t-11.6346\n▁ᏗᏑᏫᏍᎩ\t-11.6346\n▁ᏍᎩᏂᏌᏅᎭ\t-11.6346\n▁ᏗᏋᏅ\t-11.6346\n▁ᎠᏥᏌᎳᏓᏅ\t-11.6346\n▁ᎤᏓᏅᏘᏌᏅ\t-11.6346\nᏓᏐᎴ\t-11.6346\nst\t-11.6346\n▁ᎠᎩᏁᎢᏍᏗᏱ\t-11.6346\n▁ᎦᎸᎳ\t-11.6346\n▁ᎡᏙᏙᏱ\t-11.6347\n▁ᎢᏨᎥᏏ\t-11.6347\n▁ᎠᏯᏖᏂ\t-11.6347\n▁ᏍᎩᏩᎯ\t-11.6347\n▁ᎡᏥᏯᎡᏍᏗ\t-11.6347\n▁ᎢᏦᎯᏳᏅ\t-11.6347\n▁ᎨᏥᏁᎢᏍᏗᏍᎬ\t-11.6347\n▁ᏦᏥᎦᏔᎭ\t-11.6347\n▁ᎤᏰᏥᏍᎩ\t-11.6347\n▁ᏗᏣᏚᏙ\t-11.6347\n▁ᎡᏦᎢᏳᏗᏱ\t-11.6347\n▁ᎬᏩᏂᏴᎮᎢ\t-11.6347\nᏄᎵᏍᏓᏁᎴ\t-11.6347\n▁ᎤᏂᏴᏔᏂᎯᏍᏗᏱ\t-11.6347\n▁ᏚᏂᎵᏦᏛ\t-11.6347\n▁ᏗᏂᏃᎩᏍᎩ\t-11.6347\n▁ᏥᎦᏁᎭ\t-11.6347\n▁ᏥᏰᎸᎥ\t-11.6347\n▁ᎭᎴᎲᎦ\t-11.6347\n▁ᏫᎯᎶᎯ\t-11.6347\n▁ᏚᏃᎸᏎᎢ\t-11.6347\n▁ᏱᏥᏩᏘᎭ\t-11.6347\n▁ᎢᏨᎪᏩᏛᏗᏱ\t-11.6347\n▁ᎤᎾᏓᏅᏔᏩᏕ\t-11.6347\n▁ᏥᏚᏙᎠ\t-11.6347\n▁ᏂᎪᎵᎬᎾ\t-11.6347\n▁ᎢᏨᎷᏤᏗᏱ\t-11.6347\n▁ᏕᏨᏗᏍᎨᏍᏗ\t-11.6347\n▁ᎤᏓᎵᏁᎯᏕ\t-11.6348\n▁ᎤᏬᎯᏳᎯᏍᏛ\t-11.6348\n▁ᏕᎨᏥᎵᎥᏂ\t-11.6348\n▁ᏚᏃᎯᏳ\t-11.6348\n▁ᎠᏆᏙᎴᎰᏒ\t-11.6348\n▁ᎰᎯᏳᎲᎦ\t-11.6348\nᏯᏓᏅᏏ\t-11.6348\n▁ᎥᎩᏍᏕᎸᏗᏱ\t-11.6348\n▁ᏕᏥᎸᏉᏕᏍᏗ\t-11.6348\n▁ᎠᎦᎸᏥ\t-11.6348\n▁ᎠᎫᏣ\t-11.6348\n▁ᏱᎦᏕᎣᏍᎦ\t-11.6348\n▁ᏯᏲᎱᎯ\t-11.6348\n▁ᎤᎵᏍᏆᏙᏅ\t-11.6348\n▁ᏱᎾᏛᏁᎮ\t-11.6348\n▁ᎢᏯᏆᎵᏍᏓᏁᏗ\t-11.6348\n▁ᏣᏍᏉᏂᎪᏗ\t-11.6348\n▁ᎤᏂᏲᏍᏙᏗᏱ\t-11.6348\n▁ᎦᏓᏆᏟ\t-11.6348\nᏠᏱᎸᎩ\t-11.6348\n▁ᏚᏰᎵᏒ\t-11.6349\n▁ᎯᏲᏍᏗᏍᎩ\t-11.6349\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎩ\t-11.6349\n▁ᎤᏍᏆᎸᎯᏗᏒᎩ\t-11.6349\n▁ᏧᏂᎦᏯᎷᏗ\t-11.6349\n▁ᎠᎩᎾᏄᎪᏫᏎᎸᎩ\t-11.6349\n▁ᎠᎩᎸᏗᏍᎩ\t-11.6349\nᎪᎲᏍᏔᏂ\t-11.6349\n▁ᎨᎪᏢᏅᎯ\t-11.6349\n▁ᏓᏆᎴᎸ\t-11.6349\n▁ᎦᎶᏐᏅ\t-11.6349\n▁ᎠᎾᏓᏁᏟᏴᏏᏒ\t-11.6349\n▁ᎤᎾᏓᏙᎵᏍᏙᏗᏱ\t-11.6349\n▁ᏩᏲᎯ\t-11.6349\n▁ᎢᏥᎷᏤᏗ\t-11.6349\n▁ᎭᏓᏙᎵᏍᏗᏍᎬ\t-11.6349\n▁ᎬᏩᏍᏚᎢᏍᏗ\t-11.6349\n▁ᏧᏩᎿ\t-11.6349\n▁ᎣᏣᎢᏒ\t-11.6349\n▁ᏚᎾᎵᏂᎬᎬ\t-11.6349\n▁ᏧᏓᏂᎸᎢᏍᏗᏳ\t-11.6349\n▁ᏣᏓᏅᏖᏗᏱ\t-11.6349\n▁ᎤᏓᏴᏒᎩ\t-11.6349\n▁ᏥᎦᏡᎦ\t-11.635\n▁ᏫᏄᏩᏁᎴ\t-11.635\n▁ᏥᎦᏘᏏᏗᏢ\t-11.635\n▁ᏧᏂᏲᎱᎯᏍᏗ\t-11.635\n▁ᎤᎧᏲᏓ\t-11.635\n▁ᎤᎵᏍᏛᏧᏅ\t-11.635\n▁ᎤᎱᏍᏕᏎᎴ\t-11.635\n▁ᎤᎵᏍᎫᏮ\t-11.635\n▁ᎤᎵᏬᎢᏍᏗ\t-11.635\n▁ᎤᏯᏍᏚᏎᎢ\t-11.635\n▁ᏧᎾᏓᎵ\t-11.635\n▁ᎨᏥᏛᎦ\t-11.635\n▁ᏂᎬᏩᏍᏛ\t-11.635\n▁ᏭᏕᎵᎨ\t-11.635\nᎱᏩ\t-11.635\nᏅᏮᎦ\t-11.635\n▁ᎠᎩᏁᎫ\t-11.635\n▁ᎠᏆᏎᎵᏔᏅ\t-11.635\n▁ᏅᏛᏁᎵ\t-11.635\n▁ᎢᏣᏓᏅᏓᏗᏍᏗᏱ\t-11.635\n▁ᎠᎵᏍᏓᏴᎲᏍᎩ\t-11.635\n▁ᎤᏅᎦᎳᎲ\t-11.635\nᏑᏩ\t-11.635\n▁ᎢᏣᏗᏔᏍᏗᏱ\t-11.635\n▁ᏣᏴᏍᏗ\t-11.635\n▁ᎤᎿᏬᎡ\t-11.635\n▁ᎾᏆᎵᏍᏔᏁᎸ\t-11.635\n▁ᎠᏱᏍᎨᏍᏗ\t-11.635\n▁ᏥᏂᎬᏁᎭ\t-11.635\n▁ᎠᎩᏁᎢᏍᏔᏅ\t-11.635\n▁ᎤᏟᎶᎥᎩ\t-11.635\n▁ᎪᎵᎦᏓ\t-11.635\n▁ᏥᏁᏣᏛᏁ\t-11.635\n▁ᏥᎦᏘᏯ\t-11.6351\nᏂᎶᏌ\t-11.6351\n▁ᎡᎩᏩ\t-11.6351\n▁ᏄᏛᏁᎵᏙᎸ\t-11.6351\n▁ᎠᎾᎵᎲᎢ\t-11.6351\n▁ᎠᎶᎻ\t-11.6351\n▁ᎢᏣᎴᏂᏓᏍᏗᏱ\t-11.6351\n▁ᏭᏗᏅᏎ\t-11.6351\n▁ᏙᏛᎠᎴ\t-11.6351\n▁ᏚᏄᎪᏫᏎ\t-11.6351\n▁ᎤᏰᏣ\t-11.6351\n▁ᏓᏍᏕᎵᏍᎬᎩ\t-11.6351\n▁ᏥᏧ\t-11.6351\n▁ᎣᎦᏅᏅᎩ\t-11.6351\n▁ᎹᏌ\t-11.6351\n▁ᏗᎦᏁᎶ\t-11.6351\nᎤᏰᎸᏗ\t-11.6351\n▁ᏄᏛᏁᎳ\t-11.6351\n▁ᏤᏣᏛᏅᎩ\t-11.6352\n▁ᎯᏃᎮᏍᎩ\t-11.6352\n▁ᎢᏤᏙᎮᏍᏗ\t-11.6352\n▁ᎤᎾᏓᏄᎸᏗ\t-11.6352\n▁ᎤᏂᎷᎯᏍᏗ\t-11.6352\nᏥᏲᎤᎯ\t-11.6352\nᏯᏠᎢᏍᏓᏁᎵ\t-11.6352\nᏥᏍᎦᎢᎭ\t-11.6352\n▁ᏳᏩᏛᎮᎢ\t-11.6352\nᏋᎨᏫ\t-11.6352\n▁ᎤᎭᏄᏮ\t-11.6352\n▁ᏧᎭᎾᏬ\t-11.6352\n▁ᏳᏪᎵᏎ\t-11.6352\nᏂᎦᏛᏁᎰᎢ\t-11.6353\nᏍᏚᎢᏏ\t-11.6353\n▁ᎥᏘᏍᎩ\t-11.6353\n▁ᎠᏆᏦ\t-11.6353\n▁ᏧᏪᏲᎲᏍᎩ\t-11.6353\n▁ᎢᏳᎾᏕᏘᏴᏛ\t-11.6353\nᏰᏫᏒ\t-11.6353\n▁ᎤᏗᏩᏒᎩ\t-11.6353\n▁ᎢᎬᏩᏂᎩᏍᏔᏁ\t-11.6353\n▁ᎦᏃᏙᏗ\t-11.6353\n▁ᏓᎪᏩᏘᏍᎬ\t-11.6353\nᎩᏩᏛᎲᎩ\t-11.6353\n▁ᏚᎭᏁᎦᎸ\t-11.6354\n▁ᎠᏆᏢᏈᏍᏗᏱ\t-11.6354\n▁ᎠᏓᎦᏘᏕᎯ\t-11.6354\n▁ᏧᎬᏩᏟ\t-11.6354\n▁ᎤᏍᏆᎸᎮ\t-11.6354\n▁ᏗᏓᏘᏍᏗ\t-11.6354\nᏧᎧᎸᏨ\t-11.6354\n▁ᎠᏛᏁᎮᏍᏗ\t-11.6354\n▁ᏱᏦᎯᏳᎲᎦ\t-11.6354\nᎴᎳᏛᏅ\t-11.6354\n▁ᎢᏥᎦᏔᎯᏳ\t-11.6354\n▁ᏚᏍᏚᎢᏎ\t-11.6354\n▁ᎠᎵᏍᎩᏍᏗ\t-11.6354\n▁ᏫᏚᎧᎾᏅ\t-11.6354\n▁ᎠᏥᎸᎨᎳᏍᏙᏗ\t-11.6354\n▁ᎢᏯᎩᏪᏍᏗᏱ\t-11.6354\n▁ᏗᎾᏟ\t-11.6354\n▁ᎠᏆᏍᎦᏱ\t-11.6354\n▁ᎠᏓᏬᏍᏗᏱ\t-11.6354\n▁ᎤᏂᎪᎵᏰᏗᏱ\t-11.6354\n▁ᎣᎾᏫᏱ\t-11.6354\n▁ᏣᏱᎵᏙᎯ\t-11.6354\nᏣᏘᏃᎸᎭ\t-11.6355\n▁ᏧᏪᏙᎵᏍᏗᏱ\t-11.6355\n▁ᎢᎩᏍᏕᎵᎭ\t-11.6355\n▁ᏫᏗᎦᏘ\t-11.6355\n▁ᎦᏓᏫᏔᏅ\t-11.6355\nᏕᏙᎲᎩ\t-11.6355\n▁ᏗᎦᏘᏍᏗ\t-11.6355\n▁ᎢᏥᏙᎾ\t-11.6355\n▁ᎭᏅᏓᏓ\t-11.6356\n▁ᏫᎾᏛᎦ\t-11.6356\n▁ᎠᏂᎪᏩᏘᏍᎩ\t-11.6356\n▁ᏱᏄᎾᏍᏗ\t-11.6356\nᏬᏍᎪᎢ\t-11.6356\n▁ᏧᏴᎴ\t-11.6356\n▁ᏥᏚᎦᏒᏍᏙ\t-11.6356\n▁ᏧᏌᎨ\t-11.6356\n▁ᎻᏌ\t-11.6356\n▁ᏫᏥᏤᎢ\t-11.6356\n▁ᏭᎷᎯᏍᏗ\t-11.6356\n▁ᎦᏐᏂ\t-11.6356\n▁ᏔᎷ\t-11.6356\n▁ᏭᎳᏛ\t-11.6357\nᏏᏏᏍᎩ\t-11.6357\nᎦᎧᎲᏍᎨᏍᏗ\t-11.6357\n▁ᎢᏣᏙᎴᎰᎯᏍᏗᏱ\t-11.6357\nᎵᏯᎻ\t-11.6357\n▁ᎠᏂᏍᎦᏰᎬᏍᏔ\t-11.6357\nᏁᏢᏙᏗᏱ\t-11.6357\n▁ᎢᏣᏓᏅᏙ\t-11.6357\n▁ᎯᎦᏔᎮᏍᏗ\t-11.6357\n▁ᎾᏑᎵᎪᎬᎾ\t-11.6357\n▁ᏥᏕᏙᎭ\t-11.6357\n▁ᏧᏄᎪᏤᎢ\t-11.6358\n▁ᎡᏤᏲᏅᎢ\t-11.6358\n▁ᎢᏨᏁᎢᏍᏗᏍᎬᎢ\t-11.6358\n▁ᎬᏁᏤᎲᎢ\t-11.6358\n▁ᏚᏃᏪᎸᎢ\t-11.6358\n▁ᏚᏪᏣᎦᎸᎮᎢ\t-11.6358\n▁ᏧᎾᏄᎪᏤᎢ\t-11.6358\n▁ᏧᏁᏢᏔᏅᏒᎢ\t-11.6358\n▁ᎤᎾᏓᏁᏟᏴᏒᏒᎢ\t-11.6358\n▁ᎤᏓᏅᏔᏕᎢ\t-11.6358\n▁ᏄᏍᏗᏕᎬᎢ\t-11.6358\n▁ᏓᎪᏄᎴᎢ\t-11.6358\n▁ᎢᏣᏛᎩᏍᎬᎢ\t-11.6358\n▁ᎠᎦᏬᎡᎢ\t-11.6358\n▁ᎤᎾᏁᏢᏔᏅᏒᎢ\t-11.6358\n▁ᎧᏄᎦ\t-11.6358\n▁ᏱᏥᏩᏘᏍᎪᎢ\t-11.6358\nᏓᏨᎾᏄᎪᏫᏎᎵ\t-11.6358\n▁ᏧᏂᎶᏒ\t-11.6358\nᏍᏓᏩᏕᎪᎢ\t-11.6359\n▁ᎧᏁᏉᏥᏎ\t-11.6359\n▁ᏕᎬᏩᏘᏃᎮᎴᎢ\t-11.6359\n▁ᏄᏪᎵᏍ\t-11.6359\n▁ᏂᎦᏪᎠ\t-11.6359\n▁ᎬᏃᏓ\t-11.6359\n▁ᎤᎬᎥᏍᎬ\t-11.6359\nᏓᎵᏅᏟ\t-11.6359\nᏕᏁᎵ\t-11.6359\n▁ᎨᏣᏓᏑᏴ\t-11.6359\n▁ᏕᎭᏕᏲᎲᏍᎬᎢ\t-11.6359\n▁ᏓᎾᎵᏍᏓᏴᎲᏍᎨᎢ\t-11.6359\n▁ᏗᏣᏏᎳᏛᏗ\t-11.6359\n▁ᎤᏂᏁᎢᏍᏗ\t-11.6359\n▁ᏧᎦᏙᏍᏙᏗ\t-11.6359\n▁ᏱᏚᎾᏓ\t-11.6359\n▁ᏫᎤᏂᎶᏎᎢ\t-11.636\nᏋᏕᏨ\t-11.636\n▁ᎬᏩᎨᏳᎯ\t-11.636\n▁ᏗᏣᎵᏂᎪᎯᏍᏙᏗᏱ\t-11.636\n▁ᏕᎯᏬᏁᏗᏍᎬ\t-11.636\n▁ᏚᏄᏬᎡᎢ\t-11.636\n▁ᏝᏬᏚ\t-11.636\n▁ᎯᎶᏁᎥᎭ\t-11.636\n▁ᎤᎸᏁ\t-11.636\nᏖᏍᎬᎢ\t-11.636\n▁ᏫᏂᎬᎦ\t-11.636\n▁ᏩᏥᎳᎨ\t-11.636\n▁ᏄᏟᏂᎬᎬ\t-11.636\n▁ᎤᏌᎨ\t-11.636\n▁ᏭᏅᎪᏤ\t-11.636\n▁ᎠᎩᏃᎮᏍᎬᎢ\t-11.636\n▁ᎤᏴᏨ\t-11.636\n▁ᎤᏚᎢᏍᏓᏁᎸ\t-11.6361\n▁ᎤᎾᏓᏅᏍᏗ\t-11.6361\n▁ᏚᏂᎵᏬᏤᎢ\t-11.6361\n▁ᏧᏂᏣᏔ\t-11.6361\nᏍᏔᏩᏕ\t-11.6361\n▁ᏚᏂᏴᎲ\t-11.6361\n▁ᏚᏅᏩᏁᎢ\t-11.6361\n▁ᏅᏛᎾᎵᏍᏔᏂ\t-11.6361\n▁ᏅᏓᎦᏛᏁᎵ\t-11.6361\n▁ᏨᏗᎦᏚᎭ\t-11.6361\n▁ᏭᏙᎯᏳᎲ\t-11.6361\n▁ᎤᎾᏁᎳᏗᏍᏗᏱ\t-11.6361\n▁ᏍᎩᏍᏕᎳ\t-11.6361\n▁ᏓᎪᏪᎳᏂ\t-11.6361\n▁ᎠᎻᎳᎻ\t-11.6361\n▁ᎦᎳᎨᏰ\t-11.6361\n▁ᎤᏂᏛᏗᏍᎩ\t-11.6362\n▁ᏓᏂᎧᎿᏩᏗ\t-11.6362\n▁ᎤᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ\t-11.6362\n▁ᏃᎦᏛᏁᎸ\t-11.6362\n▁ᎢᏳᏩᏁᏗ\t-11.6362\n▁ᎭᎵᏘ\t-11.6362\n▁ᎠᏓᏏᏎ\t-11.6362\n▁ᎤᏩᏓᎴ\t-11.6362\n▁ᎢᎦᎵᏍᏓᏁᏗ\t-11.6362\nᎧᎲᏍᎩ\t-11.6362\n▁ᏓᏰᏥᏁᎵ\t-11.6362\n▁ᏗᏩᎾᎨ\t-11.6362\n▁ᏣᏫᏎᎢ\t-11.6362\nᎪᏪᎸᎾ\t-11.6362\n▁ᎦᎷᎨᏍᏗ\t-11.6362\n▁ᏍᎩᏁᏥ\t-11.6362\n▁ᎤᏰᎾᎥ\t-11.6362\n▁ᎠᏆᏓᏅᏖᏙᏗ\t-11.6362\n▁ᎤᏓᏙᎵᏣᏘ\t-11.6363\n▁ᎠᎬᏔᏅᏛ\t-11.6363\n▁ᏱᎦᏗᎭ\t-11.6363\n▁ᏧᏂᎷᏤᎸ\t-11.6363\n▁ᎢᎳᏍᏓ\t-11.6363\n▁ᏚᏅᏴ\t-11.6363\n▁ᏱᏥᏁᎦ\t-11.6363\n▁ᎤᏴᎴᎢ\t-11.6364\n▁ᏳᎵᏬᏨ\t-11.6364\n▁ᎤᎾᎳᏍᏓᎡᏗ\t-11.6364\n▁ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨᏍᏗ\t-11.6364\n▁ᎠᏓᏍᏕᎵᏍᎩ\t-11.6364\n▁ᏱᏂᏙ\t-11.6364\n▁ᏓᏕᏲ\t-11.6364\n▁ᎨᏥᏃᎮᏍᎬᎢ\t-11.6364\n▁ᎢᏳᏅᏁᎯ\t-11.6364\n▁ᎢᏳᏏᏗ\t-11.6364\n▁ᎤᎦᏔᏔᏁᎢ\t-11.6364\n▁ᎦᎵᏦᏩᏛ\t-11.6364\n▁ᏱᎾᏰᏍᎨᏍᏗ\t-11.6364\n▁ᏗᎨᏥᏰᎯ\t-11.6364\n▁ᏅᎩᏗᏂᏅᏌᏗ\t-11.6365\n▁ᎣᎦᎵᏍᏓᏴᏗᏱ\t-11.6365\n▁ᎠᏂᎪᏩᏗᏍᎬ\t-11.6365\n▁ᎤᎪᎵᏰᏗᏱ\t-11.6365\n▁ᎠᏆᏤᎵᎪᎯ\t-11.6365\n▁ᎤᏗᏍᎦᎶᏗ\t-11.6365\n▁ᏫᏚᏩ\t-11.6365\n▁ᎤᏂᎿᎥᎢ\t-11.6365\n▁ᏂᏯᏛᏂᏏ\t-11.6365\nᎾᏍᏆᎶᏍ\t-11.6365\n▁ᎤᏗᎴᎬ\t-11.6365\n▁ᎤᏂᎧᎭᏲ\t-11.6366\nᏍᏆᏃᏴᎪ\t-11.6366\n▁ᎠᏲᏍᏗᏍᎪ\t-11.6366\n▁ᎦᎬᏙᏗ\t-11.6366\nᎵᎲᏲᎵ\t-11.6366\n▁ᎤᏰᎸᏐᎢ\t-11.6366\n▁ᎡᏤᎵᏎ\t-11.6366\n▁ᏂᏚᏂᎨᏳᏒ\t-11.6366\n▁ᎠᏆᏅᏛ\t-11.6366\n▁ᏓᎫᏩ\t-11.6366\nᏍᏚᎢᎡᎴ\t-11.6366\nᏚᏁᎢ\t-11.6366\nᏓᏁᏏ\t-11.6366\n▁ᏥᎦᏙ\t-11.6366\n▁ᎤᏍᏗᎩᎨ\t-11.6367\n▁ᎬᏩᏂᏍᎦᎩ\t-11.6367\n▁ᏯᏃᎯᏳᎲ\t-11.6367\n▁ᎹᎳ\t-11.6367\n▁ᏗᎦᏅᎬ\t-11.6367\nᏄᏬᎥᎭ\t-11.6367\n▁ᎠᏴᏓᏆᎶᏍᎬ\t-11.6367\n▁ᎣᏥᏃᎮᎭ\t-11.6367\n▁ᎠᎵᏰᎢᎶᎦ\t-11.6367\n▁ᎠᎭᎾᏬ\t-11.6367\nᎦᏂᏍᎬ\t-11.6367\n▁ᎢᏗᎹ\t-11.6367\n▁ᎠᏂᏃᎲᏍᎨ\t-11.6367\n▁ᎢᏣᎵᏂᎬᏁ\t-11.6367\n▁ᎠᏣᎳᎩ\t-11.6367\n▁ᎢᎶᏂ\t-11.6367\n▁ᏚᏂᏂᏴᎲ\t-11.6368\n▁ᎨᏥᏙᎵᏍᏗ\t-11.6368\n▁ᎬᏩᏕᎰᎯᏍ\t-11.6368\nᏛᏅᎢᏍᏓᏁᏗᏱ\t-11.6368\n▁ᏙᏓᏨ\t-11.6368\n▁ᏙᏛᏁᎵ\t-11.6368\n▁ᎠᏯᏛᎥ\t-11.6368\n▁ᎣᎩᎪᎲᎯ\t-11.6368\n▁ᎡᎵᎻ\t-11.6368\nᏴᎳᏏ\t-11.6368\n▁ᏥᏚᎾᏚ\t-11.6368\nᏛᎦᏅᎢ\t-11.6368\n▁ᎠᏒᏛᏓ\t-11.6368\n▁ᏓᏐᏴᎢ\t-11.6369\n▁ᎠᎾᎵᏥᏙᎲᏍᎦ\t-11.6369\n▁ᎠᏃᏎᎮ\t-11.6369\nᏮᏕᏨ\t-11.6369\n▁ᎦᏃᏟ\t-11.6369\n▁ᏗᏣᏘᏄᎦ\t-11.6369\n▁ᎤᏬᎯᏤ\t-11.6369\nᎠᏗᏒ\t-11.6369\nᏗᎦᏔᏫᎢᏍᏗᏱ\t-11.6369\n▁ᎤᏬᏍᎩᎵ\t-11.6369\n▁ᎤᏲᎱᏏᏕᎾ\t-11.6369\nᏅᎬᏛ\t-11.6369\n▁ᎡᏥᏲᎭ\t-11.6369\n▁ᏗᏍᏆᏂᎪᏗᏍᎩ\t-11.6369\n▁ᎤᎧᎭᏲ\t-11.6369\nᏅᏨᎾ\t-11.6369\n▁ᏚᏯᏙᎮᎴ\t-11.6369\n▁ᎤᎵᏛᏔᏁᎢ\t-11.637\nᏱᎵᏕᎲᎢ\t-11.637\n▁ᎠᏍᏆᎸᎲᎭ\t-11.637\n▁ᏧᏌᎴᏅ\t-11.637\n▁ᎤᏣᎢᏒ\t-11.637\n▁ᎠᏆᎵᎮᎵᏍᏗᏱ\t-11.637\n▁ᎠᏆᎵᎮᎵᏨᎩ\t-11.6371\n▁ᎨᎪᏣᎴᏛ\t-11.6371\n▁ᏣᏂᏃᎮᎭ\t-11.6371\nᏅᎥᏏ\t-11.6371\n▁ᏫᎦᎶᏍᎬ\t-11.6371\n▁ᏚᎪᏓᏁᎯ\t-11.6371\n▁ᎠᏛᏃ\t-11.6371\nᏐᏲ\t-11.6371\n▁ᏖᏒᎭ\t-11.6371\n▁ᎤᎵᏦᏔᏁᎢ\t-11.6372\n▁ᏱᏣᏚᎵᎭ\t-11.6372\nᎦᏓᎴᏅᎯ\t-11.6372\n▁ᏳᏰᎸᏅ\t-11.6372\n▁ᎤᏩᏂᎴᎢ\t-11.6372\n▁ᏚᏙᎡᏍᏗ\t-11.6372\n▁ᏚᎾᏓᏡᎬ\t-11.6373\n▁ᏚᏯᏅᎮᎢ\t-11.6373\n▁ᏱᎨᏩ\t-11.6373\n▁ᎠᏲᏍᎩ\t-11.6373\n▁ᏓᏃᏎᎰ\t-11.6373\n▁ᏫᏥᎶᎢ\t-11.6373\n▁ᏳᏇᏗ\t-11.6373\nᎶᎩᎯ\t-11.6374\n▁ᎤᎸᏓᎸᎥᏍᎩ\t-11.6374\n▁ᏍᎩᏁᎮᏍᏗ\t-11.6374\n▁ᏗᎧᏃᎩᏓ\t-11.6374\n▁ᏄᎾᎵᏍᏔᏁᎲ\t-11.6374\n▁ᎤᎾᏤᎸᎯ\t-11.6374\n▁ᏕᎨᏥᏂ\t-11.6374\n▁ᎠᏂᏔᏲᎯᎮᏍᏗ\t-11.6374\n▁ᏣᏁᏤᏗᏱ\t-11.6374\n▁ᎤᏒᎦᎸᎩ\t-11.6374\n▁ᎤᎸᏖᎴ\t-11.6374\n▁ᏑᏥᎶ\t-11.6375\nᏰᏗᎭ\t-11.6375\n▁ᎦᎧᎮ\t-11.6375\n▁ᏦᎩᎾᏫᏱ\t-11.6375\nᎵᏂᎪᎯᏍᏙᏗᏱ\t-11.6375\n▁ᏓᎩᎧᎭ\t-11.6375\nᏯᏛᎩᎭ\t-11.6375\nᏂᏜ\t-11.6375\n▁ᎤᏍᏚᏅ\t-11.6375\nᏅᏓᎨᏨᏁᎵ\t-11.6375\nᎧᏔᏁ\t-11.6375\nᎵᏍᏓᏁᎵᏒ\t-11.6376\n▁ᏣᏛᏁᎸ\t-11.6376\nᏛᏂᎸᏉᏔᏂ\t-11.6376\n▁ᎬᏁᏤᎸᎢ\t-11.6376\n▁ᎪᎶ\t-11.6377\n▁ᎤᎾᎵᏍᏓᏴᏅᎩ\t-11.6377\n▁ᎠᏯᏨᏗ\t-11.6377\n▁ᏗᎪᏍᏓᏯ\t-11.6377\n▁ᏧᎵᏠᏯᏍ\t-11.6377\n▁ᎢᏣᏓᏁᎮᏍᏗ\t-11.6377\n▁ᏙᏨᏗᏍ\t-11.6377\n▁ᏕᎦᎵ\t-11.6378\n▁ᏗᎦᏥᏯ\t-11.6378\n▁ᎠᏅᏬᎳᏕᏍ\t-11.6378\nᏏᏔᏗᏍᏗᏱ\t-11.6378\n▁ᎤᏂᏍᎦᎢᏍᏗ\t-11.6379\n▁ᎤᎵᏍᎪᎸᏓᏁᎸᎩ\t-11.6379\n▁ᎤᏂᏴᎲ\t-11.6379\n▁ᏱᏅᏗᎦᎵᏍᏙᏗᏍᎨ\t-11.6379\n▁ᏥᎨᎲ\t-11.6379\n▁ᏄᏃᎯ\t-11.6379\n▁ᎢᏨᏃᏁᎸᎯ\t-11.6379\n▁ᏧᏂᏒᏍᏗᏱ\t-11.6379\nᏓᏕᎵᏎ\t-11.6379\n▁ᏄᏦ\t-11.6379\n▁ᎤᎾᏎᎸ\t-11.6379\n▁ᎤᏍᏚᏞ\t-11.638\n▁ᎬᏩᏡᏗᏍᎬᎢ\t-11.638\n▁ᎡᎳᎻ\t-11.638\n▁ᎦᏬᏂᏍᏗ\t-11.638\nᏅᏅᎢ\t-11.638\n▁ᎣᏥᏁᎦ\t-11.638\n▁ᏧᏓᏂᎸᎢᏍᏗ\t-11.638\nᎦᎪᎯᏳᏗ\t-11.638\n▁ᎦᏰᏣ\t-11.6381\nᏗᎨᎳᏍᏙᏗ\t-11.6381\nᏟᏂᎬᏁᎰ\t-11.6381\nᏕᎰᏏ\t-11.6381\nᏓᏙᎵᏣᏘᏳ\t-11.6381\nᏨᏌ\t-11.6381\nᎷᎨᏍᏗ\t-11.6381\n▁ᏣᏚᎵ\t-11.6381\nᏥᏰᎸᏂ\t-11.6381\n▁ᎤᎾᏓᏅᏖᏛ\t-11.6381\nᏣᎦᏔᎲᏛ\t-11.6382\nᏙᏓᏆᏛ\t-11.6382\nᎥᏍᎪᎢ\t-11.6382\n▁ᎻᎵ\t-11.6382\n▁ᎾᏂᏪᎭ\t-11.6382\n▁ᎢᏣᏓᏅᏓᏛ\t-11.6382\n▁ᎠᏆᏕᏗ\t-11.6383\n▁ᏕᏥᎨᏳᏒ\t-11.6383\n▁ᎡᎩᏍᏕᎸᏗᏱ\t-11.6384\n▁ᎤᏂᏂᎩᏛ\t-11.6384\n▁ᎤᎾᏚᎸᏅᏗ\t-11.6384\n▁ᎦᏢᏗ\t-11.6384\n▁ᎡᏥᏯᏅᎲ\t-11.6384\n▁ᏣᏣᏪᏐᎸᏍᏙᏗ\t-11.6384\n▁ᏚᎾᏙ\t-11.6384\n▁ᏣᏰᎸᏗ\t-11.6384\n▁ᏓᏁᎶᏛᎩ\t-11.6385\n▁ᎩᎦᎨᎠᏗᏔᏍᏗ\t-11.6385\n▁ᎤᏍᏆᏗᏍᏗᏱ\t-11.6385\n▁ᏳᏬ\t-11.6386\n▁ᎤᏄᎸᏅ\t-11.6386\n▁ᏄᎵᏍᏓᏁᎲ\t-11.6386\n▁ᎤᏂᏲᎸᎯ\t-11.6386\nᎵᏍᏓᏴᏁᎢ\t-11.6386\n▁ᏍᏔᎵ\t-11.6386\n▁ᎠᏓᏁᎳ\t-11.6387\n▁ᎤᎦᏌᏯᏍᏗᏕᎩ\t-11.6387\n▁ᏗᎤᎷᏨ\t-11.6387\n▁ᎨᏥᏛᏙᏗᏱ\t-11.6387\n▁ᎤᎵᏏᎲᏎ\t-11.6387\nᎵᏍᏙᏗᏱ\t-11.6387\nᏆᎧᎿᏅ\t-11.6387\nᏕᎶᏆᎡ\t-11.6387\nᏓᏁᎲᎾ\t-11.6387\n▁ᏣᎷᏨ\t-11.6387\n▁ᏱᎾᎩ\t-11.6387\n▁ᎤᏁᎷᏅ\t-11.6388\n▁ᎤᎾᏏᏁ\t-11.6388\n▁ᎪᏪᎳᏅ\t-11.6388\n▁ᎣᎩᏍᎦᏅᏨᎢ\t-11.6388\n▁ᎤᏩᎾᏬᏒ\t-11.6388\n▁ᏥᏓᎩᏂᏴ\t-11.6388\nᎨᎦᏛᏅᎢᏍᏓᏁᎸ\t-11.6388\n▁ᏕᎦᏯᎸ\t-11.6388\n▁ᏓᏂᏐ\t-11.6389\n▁ᎤᏓᏅᏖᏗᏍᎨᎢ\t-11.6389\n▁ᎤᎾᏨᏏ\t-11.6389\n▁ᏗᏗᏙᏗ\t-11.6389\n▁ᎠᏂᎶᏍᎬ\t-11.6389\n▁ᎪᎯᏍᏗᏍᎩ\t-11.6389\n▁ᏚᏁᏒ\t-11.6389\n▁ᎤᏅᎪᏨ\t-11.6389\n▁ᎠᎾᏙᎴᎰ\t-11.6389\n▁ᎢᏳᏂᏁᎫᏥ\t-11.639\n▁ᎤᎵᎦᎵᏴ\t-11.639\n▁ᏄᏓᏛᏁᎴ\t-11.639\n▁ᎤᎩᏓᏟ\t-11.639\n▁ᏂᏣᎵᏍᏓᏁᎲᎢ\t-11.6391\n▁ᏄᏓᏪᏎᎴ\t-11.6391\n▁ᎤᎾᏓᏴᎳᏛ\t-11.6391\n▁ᏄᎾᏛᎿᏕᎬᎢ\t-11.6391\n▁ᏕᎦᎸᏫᏍᏓᏁᎸᎢ\t-11.6391\n▁ᏥᏮᎦᏙᎢ\t-11.6391\nᏓᏅᏫᏍᎩ\t-11.6391\nᏱᎵᏓᏍᏗᏱ\t-11.6391\n▁ᎤᏬᏁᏔᏅᎢ\t-11.6391\n▁ᎤᏁᎳᏫᏎᎲᎢ\t-11.6391\n▁ᎠᏩᏘᏍᎪᎢ\t-11.6391\n▁ᏨᏓᎸᎢ\t-11.6391\n▁ᏭᏓᎾᏫᏛᎮ\t-11.6391\n▁ᎤᏗᏔᎮᎢ\t-11.6392\n▁ᏗᎪᏢᏙᏗ\t-11.6392\n▁ᎠᏌᏍᏛ\t-11.6392\n▁ᏭᏩᎦᏘᏗᏒᎢ\t-11.6393\n▁ᏗᏣᎸᏫᏍᏓᏁᏗᏱ\t-11.6393\n▁ᏧᎶᎯᏍᏗ\t-11.6393\nᏲᎯᏍᏗᏱ\t-11.6393\n▁ᎠᏴᏈᏛ\t-11.6393\nᏌᏛᏅᎩ\t-11.6394\n▁ᏂᎨᏐᎢ\t-11.6394\n▁ᎠᎵᏌᎳᏗᏍᎬ\t-11.6394\n▁ᎢᏍᏛᏯ\t-11.6395\n▁ᎠᏥᏍᏙᏗ\t-11.6395\n▁ᎤᏩᏛᏛ\t-11.6395\n▁ᎠᏓᎴᏂᏍᎩ\t-11.6395\n▁ᏥᏄᏍᏙ\t-11.6396\nᏰᎩ\t-11.6396\n▁ᎢᏣᎵᎪᎯ\t-11.6396\n▁ᏇᏓᏁᎳᎻᏱ\t-11.6396\n▁ᏧᏂᎧᎿᏩᏛᏍᏗᏱ\t-11.6396\n▁ᎣᏥᏬᏂ\t-11.6396\n▁ᎢᏣᎢᏒᎢ\t-11.6396\n▁ᎦᏥᎪᎥ\t-11.6396\n▁ᎤᏲᎰᏒ\t-11.6397\n▁ᎠᏓᎨᏗᏱ\t-11.6397\nᏙᎯᏳᎲᎦ\t-11.6397\n▁ᏂᏣᎵᏍᏔᏅᎩ\t-11.6397\n▁ᏚᏂᎳᏫᏨᎩ\t-11.6397\n▁ᎤᏁᎵᏒᎩ\t-11.6397\nᏏᏕᏅ\t-11.6397\n▁ᎠᎩᏰᎸᏗᏱ\t-11.6397\n▁ᏤᏆᏂ\t-11.6398\n▁ᏥᏄᏪᏒᎩ\t-11.6398\n▁ᎧᏁᎦ\t-11.6399\n▁ᎤᏓᏅᏖᏗᏍᎬ\t-11.6399\nᏯᏛᏂᏏ\t-11.6399\n▁ᏓᎩᎪᎲᎩ\t-11.6399\nᏌᏙᎭ\t-11.6399\n▁ᎤᏓᎢᏅ\t-11.6399\n▁ᎤᎾᎵᏖᎸᏅᎩ\t-11.6399\n▁ᎠᎾᏗᎭ\t-11.64\n▁ᎴᏈ\t-11.6401\n▁ᏴᏛᎾ\t-11.6401\n▁ᏱᏂᏣᎵᏍᏓᏁ\t-11.6401\n▁ᏚᏬᏁᏔᏁᎢ\t-11.6401\n▁ᏓᏍᏔᏅᏅ\t-11.6402\n▁ᎠᎦᎸᎢᏛ\t-11.6402\n▁ᎬᏩᏂᎪᏩᏛᏗ\t-11.6402\n▁ᎢᏣᏓᎳ\t-11.6402\n▁ᏥᏍᏓᏱ\t-11.6402\n▁ᏤᏅᏍᏗᏱ\t-11.6403\n▁ᎬᏩᎾᏝᎢ\t-11.6403\n▁ᎭᏗᏛ\t-11.6403\n▁ᏳᏁᏐ\t-11.6404\n▁ᎬᏬᏎᎸᎩ\t-11.6404\nᎧᎪ\t-11.6404\nᎦᎴᏂᏙᎭ\t-11.6405\n▁ᏕᎩᎸᏫᏍᏓᏁᎸ\t-11.6405\n▁ᏗᏓᎾᏅ\t-11.6405\n▁ᏂᏗᎬ\t-11.6405\nᎭᏁᎦᎸ\t-11.6405\nᏍᏆᏗᏍᏗᏍᎩ\t-11.6405\n▁ᎤᏞᎩ\t-11.6405\nᏍᏙᏗᏍᎨ\t-11.6406\n▁ᏍᎩᏃᎯᏏ\t-11.6406\n▁ᏂᏣᏛᏁᎲᎾ\t-11.6406\n▁ᏍᎩᏯᏅᏛ\t-11.6406\n▁ᏫᏚᎧᎿᏅ\t-11.6406\n▁ᏭᏍᏆ\t-11.6406\nᎪᎲᎯ\t-11.6406\n▁ᎤᎾᏓᏅᎦᎸᏛ\t-11.6406\n▁ᏫᏚᎾᎧᎿᏅ\t-11.6406\n▁ᎤᏍᏚᎩᏎ\t-11.6407\n▁ᏚᏰᎵᎯᏍᏔᏅ\t-11.6407\n▁ᏕᎫᎪᏗᏍᎬ\t-11.6407\n▁ᎠᏔᎴ\t-11.6407\n▁ᏚᎸᏫᏍᏓᏁᎰᎢ\t-11.6407\n▁ᎨᏥᏰᎸᎢ\t-11.6407\n▁ᎤᎾᎷᏒ\t-11.6407\nᏰᎢᎸᏍᏗᏱ\t-11.6407\n▁ᏥᏫᎾ\t-11.6408\n▁ᎤᏂᎪᏁ\t-11.6408\nᏰᎢᎵᏙᎲᎢ\t-11.6408\n▁ᏫᏚᏠᏎ\t-11.6408\n▁ᏗᏁ\t-11.641\n▁ᎤᏂᏔᏲᏎᎴ\t-11.641\nᏱᎵᏙᎯ\t-11.6411\n▁ᎤᏂᏲᎰᎢ\t-11.6411\n▁ᎤᏓᏓᏍᎬ\t-11.6411\nᎪᎲᏍᏔᏅ\t-11.6411\n▁ᎤᏍᎫᏕ\t-11.6411\nᏘᎭᏁ\t-11.6412\n▁ᏕᎨᏥᏰ\t-11.6412\n▁ᏱᏙᎨᏗ\t-11.6412\nᏁᏙᎮ\t-11.6413\n▁ᏳᏚᎵᏍᎬᎾ\t-11.6413\n▁ᎤᏛᏗᏕᎨ\t-11.6413\n▁ᎰᎵᏈ\t-11.6413\n▁ᏗᎪᏪᎳᏅᎯ\t-11.6414\n▁ᎠᎩᏍᏚ\t-11.6414\n▁ᏥᏣᏓ\t-11.6414\nᏪᏒᏛ\t-11.6415\n▁ᏭᏂᎦᏐᎠ\t-11.6415\n▁ᏚᏟᎶᏍᏓᏁᎴᎢ\t-11.6415\n▁ᎤᏅᏓᏛ\t-11.6416\n▁ᎤᏃᏴᎩ\t-11.6416\n▁ᎤᎾᎵᏍᎪᎸᏔᏅᎯ\t-11.6416\n▁ᏑᎠ\t-11.6417\n▁ᎡᏥᏍᎦᏅᏤ\t-11.6417\n▁ᎠᏂᎷᎬ\t-11.6417\n▁ᏱᏮ\t-11.6417\nᎷᎳ\t-11.6417\nᏴᎲ\t-11.6417\n▁ᏗᏓᎨ\t-11.6418\n▁ᏕᏥᎵᎷ\t-11.6419\n▁ᎡᏣᏙ\t-11.6419\n▁ᏲᎩᎾ\t-11.6419\n▁ᏩᎩᎶᏒᎩ\t-11.642\n▁ᎢᏳᏪᏍᏗᏱ\t-11.642\n▁ᏱᏍᎩᏃᏁᎴ\t-11.642\n▁ᎢᎵᎻ\t-11.642\n▁ᎤᎦᏘᏗᏍᏗᏱ\t-11.6421\nᏠᎠᏒᎩ\t-11.6421\n▁ᎤᏍᏆᎸᎭ\t-11.6421\n▁ᏂᏥᏃᎯ\t-11.6421\n▁ᎤᎾᏁᎶᏔᏅᎩ\t-11.6421\n▁ᏓᏂᏍᎦᎢ\t-11.6422\n▁ᎢᏣᎨᏳᏅ\t-11.6422\n▁ᎤᏮᏔᏅᎩ\t-11.6422\n▁ᏕᏚ\t-11.6422\n▁ᎠᎩᏰᏨ\t-11.6423\n▁ᎧᏁᏉᎨᎢ\t-11.6423\n▁ᎢᏣᏛᏓᏍᏗᏍ\t-11.6423\nᏝᏅᎯ\t-11.6424\n▁ᏥᏫᎯ\t-11.6424\n▁ᎠᏯᎡᎢ\t-11.6424\n▁ᏧᎦᎿᏁ\t-11.6424\n▁ᏕᎨᎶ\t-11.6424\n▁ᎪᏙᎯ\t-11.6425\nᏍᎬᏰᏃ\t-11.6425\n▁ᎤᏍᏗᏰᎬ\t-11.6426\n▁ᎠᎾᎢᏎᎢ\t-11.6426\n▁ᎤᏂᏄᎪᎢᏍᏗ\t-11.6426\n▁ᏱᏂᎬᎦ\t-11.6426\n▁ᏳᏰᎸᎭ\t-11.6427\n▁ᎠᏂᏁᏉᏍ\t-11.6427\nᏫᏂᏴ\t-11.6427\n▁ᎤᏃᏢᏅᎯ\t-11.6427\nᏘᏁᎪᎢ\t-11.6427\n▁ᎣᏥᎩᎵᏲᎬ\t-11.6427\n▁ᎤᏁᎢᏍᏔᏁᎢ\t-11.6427\nᏍᎩᎳᏛ\t-11.6427\nᏚᎾᏚᏫᏍᏔᏁᎢ\t-11.6427\n▁ᎢᏧᏓ\t-11.6428\n▁ᎤᏍᏆᏂᎪᏔᏅ\t-11.6428\nᏛᎿ\t-11.6428\n▁ᎢᏣᏓᏁᏟᏴᏏᏒᎢ\t-11.6428\nᎩᏠᏫᏍ\t-11.6428\n▁ᎠᎾᏓᏅᏖᎵᏙ\t-11.6429\n▁ᏥᏄᎵᏍᏔᏁᎢ\t-11.6429\n▁ᎠᏂᎫ\t-11.6429\n▁ᎤᏘᏃᎴᎢ\t-11.6429\n▁ᎤᏪᎲᎢ\t-11.6429\nᏂᏐᏗ\t-11.643\n▁ᎮᏙᎲ\t-11.643\n▁ᎠᏂᏲᎯᎲ\t-11.643\n▁ᎤᎵᏠᏯᏍᏛ\t-11.643\n▁ᏥᎦᎷᎪᎢ\t-11.643\n▁ᎤᎾᏖ\t-11.6432\n▁ᎤᏁᏉᏤᎢ\t-11.6432\n▁ᎤᏪᏘᏁᎢ\t-11.6432\nᎶᏒᏍᏙᏗᏱ\t-11.6432\n▁ᏫᎲᎦ\t-11.6432\n▁ᏓᏂᏅᎬ\t-11.6433\n▁ᏳᏬᎵᏤ\t-11.6433\n▁ᎭᎧ\t-11.6434\n▁ᎠᏥᏁᏗᏱ\t-11.6434\n▁ᏒᏍᎦ\t-11.6434\n▁ᏂᎦᏅᏅ\t-11.6434\n▁ᎾᎾᏛᏁᎮ\t-11.6435\n▁ᎠᏟᏂᎬᏁ\t-11.6435\n▁ᏫᏚᏯ\t-11.6436\nᏗᎦᎵᏍᏙᏗᎭ\t-11.6436\n▁ᎠᏐᏢᎢᏍᏗᏍᎬᎢ\t-11.6436\n▁ᎤᎾᎵᏍᎪᎸᏔᏅ\t-11.6436\n▁ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎨ\t-11.6437\n▁ᎤᏁᎸᏔᏁᎢ\t-11.6437\nᏯᏅᎮᎢ\t-11.6437\n▁ᏄᏅᏁᎴᎢ\t-11.6437\n▁ᎠᏂᏱᏙ\t-11.6437\n▁ᎤᏪᎷᎩ\t-11.6438\n▁ᎠᏍᎧ\t-11.6438\n▁ᏧᏂᏁᏗᏱ\t-11.6438\n▁ᏤᎪᎢ\t-11.6438\n▁ᎦᎶᏐᎲᏍ\t-11.6439\nᏂᏙᎸᎯ\t-11.6439\n▁ᏗᏁᎶᏗ\t-11.6441\n▁ᎤᏅᏕᏨ\t-11.6441\n▁ᎠᏂᎱ\t-11.6441\n▁ᏗᎪᏒ\t-11.6441\n▁ᎠᏍᏆᎵ\t-11.6441\n▁ᎠᎾᎵᏥᏙᎲᏍᎩ\t-11.6442\n▁ᏣᏍᏆᏂᎪᏙᏗᏱ\t-11.6442\n▁ᎤᏍᏆᎳ\t-11.6443\nᎦᎷᎩ\t-11.6444\n▁ᎠᎿᎥᎢ\t-11.6445\n▁ᏧᎪᏄᎶ\t-11.6445\nᎧᏒᎢ\t-11.6445\n▁ᎤᏂᏲᏍᏔᏁ\t-11.6445\n▁ᏫᎬᏍᏗ\t-11.6445\n▁ᏱᎪᎯᏳᎲ\t-11.6445\n▁ᏚᏆᎵ\t-11.6446\n▁ᏕᎪᏢᏒᎩ\t-11.6446\n▁ᎤᎾᏏᏅ\t-11.6446\n▁ᎤᎦᎾᏬᏍᎬ\t-11.6446\n▁ᎾᎬᏁᎸᎭ\t-11.6447\n▁ᎤᏂᏃᎴ\t-11.6447\n▁ᏥᏂᎦᎵᏍᏗᏍᎪ\t-11.6448\n▁ᏗᏄᎪᏗᏍᎩᏱ\t-11.6448\nᏰᎵᏎᏗ\t-11.6449\n▁ᏚᏅᏒᎩ\t-11.6449\n▁ᏚᏲᏍᏔᏅ\t-11.6449\n▁ᏄᎾᎵᏍᏓᏁᎲ\t-11.645\nᏗᏔᎲᎭ\t-11.645\n▁ᎤᏲᎱᎯᏎᎸᎯ\t-11.645\n▁ᎣᏣᏓ\t-11.645\n▁ᎮᎲᎢ\t-11.645\n▁ᎢᏥᎩᎬ\t-11.6451\n▁ᎬᏩᎯᏍᏗᏱ\t-11.6451\nᏢᏔᎮ\t-11.6451\nᏥᏅᎦᎸᎡ\t-11.6451\nᏞᏒ\t-11.6452\n▁ᏂᏓᏅᏁᎲ\t-11.6452\nᏣᏘᏃᎯᎮᏍᏗ\t-11.6453\nᏇᏓᏍᏗ\t-11.6453\nᎤᏂᏃᏕᏅ\t-11.6455\n▁ᏗᎦᏐᎯ\t-11.6455\n▁ᎠᏒᎨᏍᏗ\t-11.6455\n▁ᎡᏣᏛᎦᏁᎸ\t-11.6456\n▁ᎯᏴᎭ\t-11.6456\nᏑᏢᏛ\t-11.6457\n▁ᏱᏅᏩᏍᏗᏗ\t-11.6457\nᏕᎬᏲᎯᏏ\t-11.6457\n▁ᎤᏓᏅᏙᎩᎯ\t-11.6457\nᏢᏔᎲ\t-11.6458\n▁ᎠᎵᏍᏓᏴᎲᏍᎬᎢ\t-11.6458\n▁ᎤᎾᎵᏖᎸᏅ\t-11.6458\n▁ᏫᎦᎾᏄᎪᎢ\t-11.6458\n▁ᏗᏌᏂ\t-11.6459\n▁ᏕᎯᏁ\t-11.6459\n▁ᎤᏅᏎᏍᏗ\t-11.6459\n▁ᏍᏆᏛᎦᏁ\t-11.6459\n▁ᎤᎷᏤᎸᎯ\t-11.646\n▁ᎢᏲᎩ\t-11.646\n▁ᏚᏂᏢᎬᎢ\t-11.646\n▁ᏕᏣᎸᏫᏍᏓᏁᎸᎢ\t-11.646\n▁ᎠᏄᎯᏍᏗᏍᎬᎢ\t-11.646\n▁ᏚᏍᎫᏓᏛᎢ\t-11.646\n▁ᏓᏅᏗᏍᎬᎢ\t-11.646\n▁ᏚᏄᎪᏔᏅᎢ\t-11.6461\n▁ᎤᏃᎯᏳᏁᎢ\t-11.6461\n▁ᎯᎲᎦ\t-11.6461\nᏒᏗᏱ\t-11.6461\n▁ᏥᏙᏓᎦ\t-11.6463\n▁ᎠᏯᎡᏍᏗ\t-11.6463\n▁ᏧᎪᏩᏛᏗ\t-11.6464\n▁ᏛᏨ\t-11.6464\n▁ᎤᎾᏟᎶᎥ\t-11.6464\n▁ᏧᏴᏫ\t-11.6465\n▁ᎢᎦᏅᎯᏛ\t-11.6465\n▁ᎦᏓᏅᏖᏍᎪ\t-11.6465\n▁ᏚᏟᎶᏍᏓᏁᎴᏃ\t-11.6465\n▁ᎪᎪ\t-11.6465\nᏥᏯᏁᎶᏗ\t-11.6466\n▁ᎤᏓᎴᏅᎯ\t-11.6466\nᎵᏍᏓᏴᎾᏁᏗᏱ\t-11.6467\n▁ᎤᎾᎵᎪᏒᎢ\t-11.6468\n▁ᎠᏛᏍᎨᎢ\t-11.6468\nᎵᏂᏆᏅᏁ\t-11.6469\n▁ᏧᎾᏄᏬᏍᏗ\t-11.6469\n▁ᎤᏢᎬᎢ\t-11.6469\n▁ᎢᎬᏩᏁᏗᏱ\t-11.6469\nᎨᏠᎮ\t-11.647\n▁ᎢᏳᏩᏁᎸ\t-11.647\n▁ᎤᏬᏛ\t-11.647\n▁ᎠᏥᎢᏍᏗᏱ\t-11.647\n▁ᎤᎾᎵᏗᎩ\t-11.647\nᎾᏍᏉ\t-11.6471\nᎳᏗᏍᎨᎢ\t-11.6471\n▁ᏱᎦᎷᎩ\t-11.6472\nᏚᏓᎸ\t-11.6473\n▁ᎠᎾᏗ\t-11.6473\n▁ᎤᏥᏍᏛ\t-11.6474\n▁ᎢᏣᎵᎪ\t-11.6474\n▁ᎠᏁᏙᎮᏍᏗ\t-11.6474\n▁ᎠᏆᎫᏴ\t-11.6475\n▁ᏳᏲᎰ\t-11.6476\nᏯᎷᎦ\t-11.6477\n▁ᏁᏨᏁ\t-11.6477\nᏒᎲᏍᏗᏱ\t-11.6478\nᏂᏩᏛᎮ\t-11.6479\n▁ᏓᏕᏲᎲᏍᎨᎢ\t-11.6479\n▁ᏄᏅᏁᎸᎩ\t-11.648\n▁ᎤᏩᏴᏒ\t-11.648\n▁ᏓᏰᏍ\t-11.648\n▁ᎢᏳᏍᏗᏓᏂ\t-11.6481\nᏍᏔᏁᏗ\t-11.6481\n▁ᎤᏍᏕᏓᎵᏴ\t-11.6482\n▁ᏥᏯᎠ\t-11.6482\nᏙᏳ\t-11.6483\n▁ᏱᎬᏅ\t-11.6483\n▁ᎣᎩᎦᎵᏍᏓᏗᏍ\t-11.6484\n▁ᏯᏆᏚᎵᎭ\t-11.6484\n▁ᎠᏯᏙᎵ\t-11.6484\n▁ᏧᏂᎷᏤ\t-11.6484\n▁ᏗᎦᏅᏆᎶ\t-11.6484\n▁ᏥᎸᏉᏗ\t-11.6484\n▁ᎤᏬᏱ\t-11.6485\n▁ᎢᎬᏩᎷᏤᎴ\t-11.6485\nᎸᏉᏔᏅᎩ\t-11.6485\nᏐᏅᏤᎸᎩ\t-11.6485\nᎭᎵᏙᎩ\t-11.6485\nᏓᏏᏒ\t-11.6486\n▁ᏗᎧᏃᎩᏍᏗᏱ\t-11.6486\n▁ᎤᏪᎴ\t-11.6487\nᏓᏨᏁᎵ\t-11.6488\n▁ᏕᎨᏥᏅᏩ\t-11.6488\nᏲᏅᎵ\t-11.6489\n▁ᏭᏯᏅᎲᎩ\t-11.6489\n▁ᎠᎩᏁᎸᎯ\t-11.6489\n▁ᏣᎦᏛ\t-11.649\nᏓᏡᏗᎭ\t-11.6491\n▁ᎢᏣᏓᏅᏛᎢ\t-11.6491\n▁ᎤᏓᏅᏁᎢ\t-11.6491\nᎦᏥᏲᏎᎸ\t-11.6491\n▁ᎤᏍᎩᏓᏒᎢ\t-11.6493\n▁ᏤᏥᏃ\t-11.6494\n▁ᏤᏙᎰ\t-11.6494\n▁ᎨᏥᎸ\t-11.6494\n▁ᎤᏓᏙ\t-11.6495\n▁ᎢᏤᎮᏍᏗ\t-11.6495\n▁ᎠᎾᏕᎲᏍᎬᎢ\t-11.6495\n▁ᎠᎩᏂᎬᏎᎲ\t-11.6495\n▁ᎬᏣ\t-11.6495\n▁ᎤᏃᎯᏳᏒᎢ\t-11.6495\n▁ᎣᎯᏍᏗ\t-11.6495\n▁ᏚᎾᏦᏎ\t-11.6495\nᏓᏁᎸᎭ\t-11.6496\nᏴᏎᎸᎩ\t-11.6496\n▁ᏧᏬᏢᏁ\t-11.6498\n▁ᎤᏃᎮᎸᎩ\t-11.6498\n▁ᏚᏪᎧᏁᎢ\t-11.6499\nᏃᎮᎵ\t-11.6499\n▁ᎠᎩᏍᏛᏗᏍᎬᎢ\t-11.65\n▁ᎠᏲᏍᏗᏍᎬ\t-11.65\n▁ᏂᎦᏪᏏ\t-11.65\n▁ᏓᏥᏁ\t-11.6501\nᎵᏥᏙᏁᎲᎢ\t-11.6501\n▁ᏧᏩᏒ\t-11.6501\n▁ᏂᏥᏴ\t-11.6502\n▁ᏤᎮᏍᏗ\t-11.6502\n▁ᏗᎦᎷᏫᏍᏔᏁ\t-11.6502\n▁ᏧᏔᏂ\t-11.6503\n▁ᏣᏂᏅᎩ\t-11.6503\n▁ᎠᎾᎵᏍᏓᏴᏗᏍᎬ\t-11.6503\n▁ᏥᎪᏩᏘᎭ\t-11.6504\n▁ᎠᏥᎦᏘᏗᏍᏗᏱ\t-11.6504\nᏦᏩ\t-11.6504\nᎧᎿᏩᏛᎡ\t-11.6505\nᎧᎭᏲ\t-11.6505\nᎿᏬᏍᏗ\t-11.6505\n▁ᏓᏍᏓ\t-11.6506\nᎩᏩᏛᏗᏱ\t-11.6507\n▁ᏧᏍᎦ\t-11.6507\n▁ᏓᏂᏁᎵ\t-11.6507\n▁ᎦᏌᎴ\t-11.6508\n▁ᎤᎵᏍᏕᎸ\t-11.6508\n▁ᏥᏚᏲᏎ\t-11.6508\nᏂᏱᏍᎩ\t-11.6508\nᎵᏍᏙᏔᏁ\t-11.6508\nᏂᏕᏅ\t-11.6509\nᎭᏯᎸ\t-11.6509\nᎧᏁᏍᏗ\t-11.651\n▁ᏓᏲᎩ\t-11.651\n▁ᎡᎯᏍᏗᏳ\t-11.651\n▁ᎠᏂᎩᎵᏲᎬᎢ\t-11.651\n▁ᏂᎦᎵᏍᏙ\t-11.6511\n▁ᏥᏄᏛᏁᎴ\t-11.6511\n▁ᏱᎯᎦᏔᎮ\t-11.6512\nᏓᏬᏍᏙᏗ\t-11.6512\n▁ᎥᏘ\t-11.6512\n▁ᎤᎪᎵᏰᏗ\t-11.6513\nᎫᏴᎡᎸ\t-11.6515\n▁ᎠᎩᏩᏛᎲᎩ\t-11.6515\n▁ᎵᏓ\t-11.6516\n▁ᏕᏣᎴ\t-11.6517\nᎨᎬᏁᎵ\t-11.6517\n▁ᎤᏓᏴᏍᏗᏱ\t-11.6518\n▁ᏗᎦᎵᏍᏙᏗ\t-11.6518\nᏓᏦᏍᎬ\t-11.6519\nᏣᏛᎩᎭ\t-11.6519\n▁ᎤᏂᎾᏗᏅᏎ\t-11.652\n▁ᎠᏞ\t-11.652\nᎦᏎᏍᏙ\t-11.6521\nᏲᏍᏗᏍᎩ\t-11.6521\nᏔᏁᎸᎯ\t-11.6524\n▁ᎠᎫᏬᏰ\t-11.6525\n▁ᏐᎭ\t-11.6525\n▁ᏚᎷᎬᎢ\t-11.6525\n▁ᏂᏪᏏ\t-11.6525\n▁ᏫᏚᎷᏤᎸ\t-11.6525\n▁ᎤᏔᏲᏎᎸᎩ\t-11.6525\n▁ᏥᏍᎩᏯ\t-11.6526\nᏍᏢᏂᏍᏔᏅ\t-11.6527\nᎤᏏ\t-11.6527\n▁ᎤᎾᏤᎵᎪ\t-11.6527\nᎾᏋᏁᎸ\t-11.6528\n▁ᏧᏂᎬ\t-11.653\n▁ᎠᏓᏪᎵᎩᏍᎬᎢ\t-11.653\nᏥᏂ\t-11.6531\n▁ᎤᏁᎷᎬᎢ\t-11.6531\n▁ᎤᎵᏦᏛᎢ\t-11.6532\n▁ᎦᏓᎥᎢ\t-11.6532\n▁ᎡᎭᏏ\t-11.6532\n▁ᎢᏳᏩᎬ\t-11.6532\n▁ᎤᏂᏖᎸᏅ\t-11.6532\n▁ᏣᏓᏅᏘ\t-11.6533\n▁ᎡᏗᎨᏳᎢ\t-11.6533\n▁ᏚᏇ\t-11.6534\nᏓᏂᏱ\t-11.6534\n▁ᏱᏔ\t-11.6534\nᏗᎬᏩᎧᏃᏗ\t-11.6534\n▁ᏪᏙᎲ\t-11.6536\n▁ᎤᎳᏏ\t-11.6537\n▁ᏂᎦᎵᏍᏗᏍᎪᎢ\t-11.6537\nᏤᎵᎯᏍᎪ\t-11.6537\n▁ᎾᎾᏛᏁᎭ\t-11.6537\n▁ᎪᎯᏳᏙᏗ\t-11.6537\nᎾᏰᎯᏍᏛ\t-11.6538\n▁ᎤᏰᎯᏍᎩᏂ\t-11.6538\n▁ᏚᎸᏌᏓ\t-11.6538\n▁ᏓᏂᏢ\t-11.6538\n▁ᎦᎷᏥ\t-11.6539\nᎦᎵᏍᏓᏛ\t-11.6539\n▁ᏗᎧᎵᎢ\t-11.6539\n▁ᏱᏄᏍᏕᎢ\t-11.654\n▁ᏱᏝ\t-11.654\n▁ᎢᏥᏁᏗᏱ\t-11.6541\n▁ᏣᎯᏍᏗᏱ\t-11.6542\n▁ᏚᏓᏓᎴᏔᏁ\t-11.6543\nᏤᏯᏙᏤᎮᏍᏗ\t-11.6544\n▁ᏱᏥᎦᏔᎮᎢ\t-11.6544\n▁ᎤᏂᎯᏍᏗ\t-11.6544\n▁ᏚᏘᏃᎴ\t-11.6545\n▁ᏓᏓᎯ\t-11.6545\n▁ᎪᏢᏒᎩ\t-11.6545\n▁ᏂᏙᏔᏘ\t-11.6546\n▁ᏅᏩᏓ\t-11.6547\nᏱᎩᎵ\t-11.6547\nᏪᎵᏏ\t-11.6548\n▁ᎤᏍᏗᏰ\t-11.655\nᎰᎯᏍᏗ\t-11.655\n▁ᏄᏩᏁᎲ\t-11.6551\n▁ᎤᏁᎳᏛ\t-11.6551\n▁ᎣᏨᏗᏍᎬ\t-11.6553\n▁ᎠᏓᎴᏂᏍ\t-11.6553\n▁ᎤᏂᏬᏂᎯᏍᏗᏱ\t-11.6554\n▁ᏥᏂᎩ\t-11.6554\nᎧᏁᎬ\t-11.6556\n▁ᎠᏆᏚᎸᎲ\t-11.6557\n▁ᎠᏆᏓᏤᎵᎦ\t-11.6557\n▁ᎦᏛᎬᎦ\t-11.6557\nᏂᏍᏗᎭ\t-11.6558\n▁ᏄᏬᏚᏒ\t-11.6558\n▁ᎠᏥᏁᎸᎯ\t-11.6558\n▁ᏗᎦᏲᏥ\t-11.6559\n▁ᎨᏛᎢ\t-11.6561\n▁ᎠᎩᏌ\t-11.6563\n▁ᎤᎾᏓᏙᎵᏍᏔᏁ\t-11.6563\n▁ᏍᏆᎳ\t-11.6564\nᏍᏓᏩᏗᏙ\t-11.6566\n▁ᏙᏓᏆᏍᎬᎢ\t-11.6566\n▁ᏥᏃᎮᏍᎬᎢ\t-11.6567\n▁ᏂᎦᏔᎲᎾ\t-11.6568\n▁ᏱᏚᏩᏛᎮ\t-11.6568\nᎳᏑᎳ\t-11.6568\n▁ᎤᏂᏃᏁᎴ\t-11.6568\nᎾᏕᎨ\t-11.6568\n▁ᎨᏌ\t-11.6569\nᎷᎸᏁ\t-11.6569\n▁ᏃᏥᎥ\t-11.657\nᏁᎳᏕᎢ\t-11.6571\nᏍᏔᏲᏍᏙᏗ\t-11.6573\nᏂᏓᏅᏁᎰ\t-11.6574\nᏌᏙᏯ\t-11.6576\nᎵᏉᎩ\t-11.6577\n▁ᏂᏚᏩᏁ\t-11.6579\n▁ᏂᏍᏛ\t-11.6581\n▁ᏗᎬᏅ\t-11.6582\n▁ᏚᏂᏰᎵᏒ\t-11.6582\nᏛᎲᏃ\t-11.6583\nᏯᎦᏎᏍᏗ\t-11.6584\n▁ᏅᏂ\t-11.6585\n▁ᏙᎦᏠᎯᏍ\t-11.6585\nᏟᏃᎮᏔᏁ\t-11.6586\n▁ᏍᎩᏯᏕᎶᏆᎡ\t-11.6587\n▁ᎠᎩᏁᏨᎩ\t-11.6589\n▁ᎠᏥᎪᎵᏰᎥ\t-11.6589\nᏯᎪ\t-11.659\nᎫᏴᎲᎾ\t-11.6591\n▁ᏕᎭᏘᏁ\t-11.6592\n▁ᎬᏩᏂᏃᎮᏗ\t-11.6594\n▁ᎤᎶᎯᏍᏗᏱ\t-11.6595\n▁ᏂᎬᏁᎰ\t-11.6595\nᎬᏎ\t-11.6595\n▁ᏱᎾᎾᏛᏁᎰ\t-11.6595\n▁ᏂᏣᏛᏁᎰ\t-11.6596\n▁ᎤᎾᏂᎩᏍᏗ\t-11.6597\n▁ᎬᏩᎾᏓᏅᎡ\t-11.6597\n▁ᎯᎦᏘ\t-11.6598\n▁ᏂᏣᏪᏎᎸ\t-11.6598\n▁ᎤᏃᎭ\t-11.6599\nᏍᏛᏗᏍᏗ\t-11.66\n▁ᏗᎦᏅᏬᎢ\t-11.6601\n▁ᏫᎬᏪᎧᏁ\t-11.6602\n▁ᎯᎩᏍᎪ\t-11.6602\nᎪᏛᎢ\t-11.6603\nᏅᏍᎬᎾ\t-11.6603\n▁ᏂᎦᏛᏁᎰᎢ\t-11.6603\nᎣᎸ\t-11.6605\n▁ᎦᎴᏂᏙᎲ\t-11.6606\n▁ᏁᎵᏍᎬᎾ\t-11.6606\n▁ᎤᏩᏌᏆ\t-11.6607\n▁ᎤᏁᏉᎡ\t-11.6608\n▁ᎤᏅᏁᎢ\t-11.6608\nᏥᏍᏢ\t-11.6609\n▁ᎤᎧᎭ\t-11.661\n▁ᎤᏩᏛᎲᎩ\t-11.661\n▁ᏓᏳᏪ\t-11.6611\n▁ᏱᏚᏩᏛᎲ\t-11.6611\n▁ᏧᎬᏩᎴ\t-11.6612\nᏓᏇ\t-11.6613\n▁ᎤᎾᏌ\t-11.6614\nᎾᏓᏙᎵᏍᏗᏍᎪᎢ\t-11.6616\n▁ᏤᎲᎢ\t-11.6617\nᏯᏛᎦᏁᎵ\t-11.6619\nᎬᏇᎯᏍᏗᎭ\t-11.662\n▁ᎤᏥᏯ\t-11.6622\nᏚᏓᏴᎳᏛ\t-11.6622\nᏪᏌᏆᎴ\t-11.6623\n▁ᏯᏃᎵ\t-11.6623\n▁ᏧᏁᎯ\t-11.6624\n▁ᏫᎬᏩᏂᏴ\t-11.6624\nᏲᏍᏗᏍᎨᏍᏗ\t-11.6625\n▁ᏧᏂᏴ\t-11.6625\n▁ᏂᏨᏪᏎᎸ\t-11.6627\n▁ᎦᏁᎵᏒ\t-11.6627\nᏕᏲᎲ\t-11.6627\n▁ᏯᎩᏍᏆᎸᎡ\t-11.6628\n▁ᏧᎾᏙᏅ\t-11.6629\n▁ᎤᏂᏄᎸᏅ\t-11.663\n▁ᎤᎵᏦᎯ\t-11.663\n▁ᏁᏩᏔᎵᏃ\t-11.663\nᏛᏗᏍᎨᏍᏗ\t-11.663\n▁ᎤᏚᎢᏍᏔᏅᎢ\t-11.6632\n▁ᏚᎾᏘᏃᎸ\t-11.6632\nᏁᏟᏴᏍᏔᏁ\t-11.6632\n▁ᎠᎦᏯ\t-11.6632\n▁ᎤᎾᎵᎮᎵᏤᎢ\t-11.6633\nᎥᏍᎦ\t-11.6634\nᎠᏴ\t-11.6634\n▁ᎤᏩᏓ\t-11.6634\n▁ᎢᏥᎦᎵᏍᏓᏗᏍ\t-11.6635\n▁ᎢᏳᏩᏁ\t-11.6636\n▁ᎤᎵᏘᏎ\t-11.6636\nᏰᏍᏔᏁᎢ\t-11.6636\nᎵᏔᏕ\t-11.6637\n▁ᏕᎤᎴᏔᏅᎢ\t-11.6637\nᏤᏍᏙᎩᎯ\t-11.6637\nᎦᏙᏍᏙᏗ\t-11.6638\n▁ᏱᏕᏍᏗ\t-11.6638\n▁ᏄᏂᏪᏒᎢ\t-11.6639\nᏓᏁᎰᎢ\t-11.6639\n▁ᏂᎦᎵᏍᏗᏍᎨᎢ\t-11.664\n▁ᎣᎩᏰᎸ\t-11.664\n▁ᏍᎩᏅᎦᎸ\t-11.6641\n▁ᏂᎦᏛᏅᎢ\t-11.6641\nᏍᏚᎶᏙᏗ\t-11.6642\n▁ᏘᎦᎵᏍᏙ\t-11.6644\n▁ᏙᎦᏘᏁ\t-11.6645\n▁ᏫᏓᏗ\t-11.6645\nᏓᏅᏓᏗᏍᏔᏅᎯ\t-11.6645\n▁ᏱᏍᎩᏯ\t-11.6646\n▁ᎤᎷᏤᏗ\t-11.6647\n▁ᎤᏕᏒᏅ\t-11.6649\nᏓᏅᏔᏩᏕᎬ\t-11.6651\n▁ᎪᏱ\t-11.6651\n▁ᏓᏄ\t-11.6652\nᏨᏁᎰ\t-11.6653\n▁ᏱᏅᎨᏣ\t-11.6653\n▁ᎤᏍᏕᎸᏗ\t-11.6656\nᏦᎯᏳᎲᎦ\t-11.6656\n▁ᎤᎶᏒᎢ\t-11.6658\nᏚᏳᎯᏛ\t-11.6658\n▁ᎤᏰᏥ\t-11.666\nᎴᏎᎢ\t-11.666\n▁ᎠᎧ\t-11.6661\nᏓᏴᏍᏗ\t-11.6661\n▁ᎳᏏ\t-11.6662\n▁ᏂᎦᏥᏴᏁᎸ\t-11.6663\n▁ᎨᏥᏍᏗ\t-11.6663\n▁ᎢᎦᏛᏁᏗ\t-11.6666\n▁ᏓᏘᏁ\t-11.6666\n▁ᏴᎬᏩ\t-11.6666\n▁ᎤᎿᎸᏤ\t-11.6666\n▁ᎠᏉᎯᏳᏅ\t-11.6667\nᏌᏕᎢ\t-11.6668\n▁ᎤᎾᏗᏔᎲ\t-11.6668\n▁ᎤᎾᏓᏅᏖᏔᏁ\t-11.6669\n▁ᎦᎸᎥ\t-11.667\n▁ᎦᎳᎩ\t-11.6671\n▁ᎤᏁᎵᏎᎢ\t-11.6674\nᎾᎥᎾ\t-11.6674\n▁ᎤᏂᏩᏛᎲ\t-11.6675\n▁ᏕᎨᏲᎲᏍᎨ\t-11.6675\n▁ᎢᎬᏩᎵᏍᏓᏁ\t-11.6677\nᏔᎷᎩᏍᎬ\t-11.6678\n▁ᏤᎵ\t-11.6681\nᏂᎨᏒ\t-11.6684\n▁ᎤᏂᎾᏝᎾᎥ\t-11.6685\n▁ᏱᏗᏍᎩ\t-11.6685\n▁ᎠᏲᎵᏃ\t-11.6685\nᏣᏛᏁᎮᏍᏗ\t-11.6686\n▁ᎠᏢᏛ\t-11.6687\n▁ᎠᏂᎦᎵ\t-11.6687\n▁ᏚᎸᏫᏍᏓᏁᎸᎩ\t-11.6687\n▁ᏱᏧ\t-11.6689\nᏍᏗᏰ\t-11.6689\n▁ᏥᎶᏃ\t-11.6691\n▁ᎦᎨᏣ\t-11.6692\n▁ᏚᏑᎦ\t-11.6694\nᏓᏂᎸᏤ\t-11.6696\n▁ᏱᎾᏅ\t-11.6698\n▁ᏘᏲ\t-11.67\n▁ᎢᏥᏪᏍ\t-11.6701\nᏥᏰᎸᎾᏁᎰᎢ\t-11.6701\nᎪᎮ\t-11.6704\nᎮᏙᎮ\t-11.6705\n▁ᎠᏂᏁᎩ\t-11.6705\n▁ᏗᏥᏰᎸᎢ\t-11.6706\n▁ᎾᏆᎵᏍᏓᏁ\t-11.6706\nᎾᏬᏍᏔᏁᎢ\t-11.6709\nᏝᏁ\t-11.6709\n▁ᎬᎳ\t-11.6712\n▁ᏧᏲᎰ\t-11.6713\nᏯᏂᏍᎬᎢ\t-11.6713\nᏔᏛ\t-11.6714\nᎪᏪᎶᏗ\t-11.6714\n▁ᎠᏗᏔᏍᏗᏱ\t-11.6715\n▁ᎦᏰᏌᏛᎢ\t-11.6715\n▁ᎠᏎᏍᏗ\t-11.6718\n▁ᏓᏲᏣ\t-11.672\nᏰᎶᎴ\t-11.672\n▁ᎢᏓᏓ\t-11.6723\nᏉᏎᏗ\t-11.6725\n▁ᎤᏪᎶ\t-11.6725\n▁ᎡᏙᎰ\t-11.6726\nᏓᏙᎵᎨᏍᏗ\t-11.6728\n▁ᏚᏬᏎᎴ\t-11.6728\nᏥᏍᏓᏱᏕᎸ\t-11.6729\nᏂᏏᏅᎩ\t-11.6729\n▁ᎡᏥᎷᏤᎸ\t-11.673\nᏇᎵᏎ\t-11.6731\n▁ᎤᏪᎵᏒ\t-11.6731\n▁ᎠᏓᏅᏖᏍᎨᎢ\t-11.6733\nᏥᏏ\t-11.6735\nᎸᏒ\t-11.6735\nᏛᏂᎲ\t-11.6738\nᏛᏙᏗᏱ\t-11.6738\nᏲᎱᏍᎬ\t-11.6739\n▁ᏚᎸᏌᏛᎢ\t-11.6743\n▁ᎢᏳᏓ\t-11.6744\n▁ᏣᎬᎩ\t-11.6745\n▁ᎠᏁᎵᏍᎨᎢ\t-11.6745\n▁ᎤᏂᏍᎫᏕᏒ\t-11.6747\n▁ᏳᏂᎬ\t-11.6747\n▁ᎢᏣᏓᏑᏴ\t-11.6747\n▁ᏲᎪ\t-11.6748\nᎪᎰᏍᎬ\t-11.6752\nᎠᎩᏲᏏ\t-11.6753\n▁ᎤᏂᏁᏨᎢ\t-11.6755\n▁ᏧᏙᏢ\t-11.6755\n▁ᏗᎬᏩᏂᏐᏢ\t-11.6756\n▁ᎠᏚ\t-11.6757\nᏱᏉᏍᎩᏂ\t-11.676\nᏑᏯᎩᏍᏗ\t-11.6766\n▁ᏕᎰ\t-11.6769\nᏯᏛᏅ\t-11.6771\nᏘᏍᎬᎾ\t-11.6772\nᏑᏰᏎ\t-11.6773\nᏍᏆᏛᎯ\t-11.6774\n▁ᏳᏔᎳᏬ\t-11.6776\nᏏᏲ\t-11.6777\nᏓᏛᏁᎭ\t-11.6778\n▁ᎠᎪᏎᎴ\t-11.6779\n▁ᏗᎬᏩᏁ\t-11.6779\n▁ᎤᏂᏁᎸ\t-11.678\n▁ᏒᏟ\t-11.6783\n▁ᎤᏛᏗ\t-11.6784\n▁ᏳᏯ\t-11.6786\nᏍᎩᏘ\t-11.6787\n▁ᎠᏯᎠ\t-11.6788\n▁ᎣᎩᎸᏉᏗ\t-11.6789\nᎬᏍᎪᎸᏅᎢ\t-11.679\nᏙᏓᏋ\t-11.6791\nᎾᏟᏃᎮᎸ\t-11.6793\nᎵᏩᏛᎡᎲᎢ\t-11.6793\nᏓᏅᏛ\t-11.6796\n▁ᏚᏲᎴ\t-11.6797\n▁ᏂᎦᎷᎬ\t-11.6797\n▁ᏛᎾᎢ\t-11.6799\n▁ᏧᏁᏨᏃ\t-11.6801\nᎩᏎᎢ\t-11.6804\nᏣᏙᎴᎰᎯᏍᏗᏱ\t-11.6805\n▁ᎠᏁᏙᎮᎢ\t-11.6805\n▁ᏚᏑᏰᏎ\t-11.6806\nᏱᏐ\t-11.6808\nᏨᏗᏍᎨᏍᏗ\t-11.681\n▁ᎤᏂᎷᏤᎭ\t-11.681\nᎵᏃᎮᏗᏍᎨᏍᏗ\t-11.6814\n▁ᎠᎵᏍᎪᎸᏙᏗᏱ\t-11.6814\n▁ᎢᏨᏁ\t-11.6817\nᏅᏍᏙᏗᏱ\t-11.6819\nᏲᎢ\t-11.6819\nᏓᎦᎵᏍᏙᏓ\t-11.6821\nᏅᎾᏉ\t-11.6822\nᎬᏙᏗ\t-11.6823\n▁ᎭᏕᎶᎰ\t-11.6823\nᏍᏓᏱᏕ\t-11.6828\n▁ᏂᎦᏪᏒ\t-11.6832\n▁ᏳᎾᏚᎵᏍ\t-11.6835\nᏲᏒ\t-11.6842\n▁ᏥᏂᎦᏪᏍᎬ\t-11.6844\nᏍᏔᏁᎯ\t-11.6844\n▁ᏧᎾᏓᏕ\t-11.6844\nᎨᎵ\t-11.6845\nᎵᎦᎵᏴ\t-11.6852\n▁ᏄᏛᎾᏕ\t-11.6852\nᏙᎴᎰᎯᏍᏙᏗ\t-11.6854\n▁ᎦᎵᎭ\t-11.6855\n▁ᎤᏚᎵᏍᎨᎢ\t-11.6858\n▁ᎤᏲᏨᎩ\t-11.6858\n▁ᏗᏑᏫ\t-11.6859\nᎧᎯᏴᎩ\t-11.686\n▁ᏩᏥᏯᏅ\t-11.6861\n▁ᎣᎬᏔᏅ\t-11.6862\n▁ᎦᏙᎥ\t-11.6863\n▁ᏕᏦ\t-11.6864\n▁ᎢᏨᏗᏍᎪ\t-11.6867\nᏩᏗᏍᎬ\t-11.6868\n▁ᏚᏕᏲᏅ\t-11.6871\nᎫᏓᎸ\t-11.6872\nᏗᏎ\t-11.6872\n▁ᏛᎵ\t-11.6873\nᏐᏢᎢᏍᏗᎭ\t-11.6874\nᏄᏪᏎᎢ\t-11.6879\n▁ᎢᏫ\t-11.688\nᎪᏫᏎ\t-11.6881\n▁ᎤᎾᎵᏍᎦᏍᏙ\t-11.6881\n▁ᏲᎨ\t-11.6885\nᏩᎾᎨ\t-11.6885\nᏚᏅᏁᎴ\t-11.6885\n▁ᎠᎪᏢᏅ\t-11.6887\n▁ᎠᏍᎪᏒ\t-11.689\nᎳᎨᏯᏛ\t-11.689\n▁ᎤᎦᏘᏗᏍ\t-11.6891\n▁ᎦᏛᎢ\t-11.6892\n▁ᎣᏣᏓᏙᎵᏍᏗᏍ\t-11.6894\nᏥᏃᎲᏏ\t-11.6894\n▁ᎠᏆᎩᎸ\t-11.6902\nᎾᏓᏡᎬ\t-11.6904\n▁ᏍᎩᎾᎾᏂ\t-11.6906\n▁ᎠᎩᏍᏆᏛ\t-11.6907\n▁ᏚᏂᏯᏪ\t-11.6907\n▁ᏩᎩᎶᎯ\t-11.6911\nᎢᏎᏗ\t-11.6912\nᏃᎸᏔᏅᎩ\t-11.6913\n▁ᎦᏰᏗ\t-11.6913\n▁ᎬᎩᎸᏉᏗ\t-11.6916\nᏁᏤᎸᎩ\t-11.6918\nᏗᎦᏚᎲ\t-11.6928\n▁ᎤᏕᏯ\t-11.6929\n▁ᏕᏥᎾ\t-11.6933\n▁ᏱᏗᎩ\t-11.6934\nᏥᏯᎵᏍᎪᎸᏓᏁ\t-11.6934\n▁ᏂᎠ\t-11.6936\nᎦᏚᏢ\t-11.6941\nᎩᎷᏨᎩ\t-11.6943\nᏴᏍᎪᏳᏁ\t-11.6945\n▁ᏓᏍᏆᎵᏍ\t-11.6946\nᏎᎲᎢ\t-11.6946\n▁ᎠᏆᏚᎵᏍᎬᎢ\t-11.6947\nᏕᎪᏢᎾ\t-11.6951\nᏆᎶ\t-11.6952\n▁ᎠᏂᎳᎨᏴ\t-11.6953\n▁ᏘᎪ\t-11.6954\n▁ᎤᏞ\t-11.6957\nᎵᏑᏫᏓ\t-11.696\n▁ᏥᎩᏁᎸ\t-11.6964\nᎪᏢᏁᎢ\t-11.6967\n▁ᎤᏍᎪᏍᏗ\t-11.6969\nᎣᏐᏅ\t-11.6969\n▁ᎣᏥᏁ\t-11.6971\nᏁᏟᏴᏎ\t-11.6972\nᎸᏔᏅᎯ\t-11.6973\n▁ᏧᏂᏙ\t-11.6974\n▁ᏗᏂᏂᎨ\t-11.6975\n▁ᏣᎾᎢ\t-11.6976\nᏓᎴᏍᏗ\t-11.6977\nᎾᎵᎩᏛ\t-11.6981\n▁ᏦᏥᏩᎾᎦᎳ\t-11.6983\nᎾᎵᏙᎩᏯ\t-11.6983\n▁ᎠᏥᏰ\t-11.6986\n▁ᏚᎾᏗᏩᏍᎨ\t-11.6991\nᏯᏂᏍᎬ\t-11.6993\n▁ᎬᏩᏓᏅᏘ\t-11.6998\n▁ᏚᏂᏅᏁ\t-11.7\n▁ᏯᎩᏍᏕᎵ\t-11.7\nᎬᎾᏬᏙᏗᏱ\t-11.7004\n▁ᏗᎨᎩ\t-11.7004\n▁ᎠᏍᏓᏲ\t-11.7006\n▁ᏙᏍᎩ\t-11.7007\n▁ᏳᏃᎯᏳ\t-11.7007\nᎦᎵᏯ\t-11.7008\n▁ᎤᎾᏛᏓᏍ\t-11.7008\n▁ᏂᏍᎩ\t-11.7009\n▁ᏙᏥᏩᏛᎲ\t-11.7012\n▁ᏂᎤᏪᏎ\t-11.7012\n▁ᏍᏊ\t-11.7013\n▁ᎤᏫᏒ\t-11.7014\n▁ᎠᏍᏓᏱᏗᏍᏗ\t-11.7014\n▁ᎢᏨᏃᏁᎸ\t-11.7025\nᏂᏆᏘᎸ\t-11.7025\n▁ᏫᏥᎷᏤᎸ\t-11.7027\nᏯᏂᏍᎨᏍᏗ\t-11.7029\n▁ᎤᏙᏩᏗᏍ\t-11.7029\nᏙᎳᏅ\t-11.7032\n▁ᏣᏚᎳ\t-11.7033\nᏗᎦᎸᏉᏗ\t-11.7034\n▁ᏧᏩᏅ\t-11.7036\nᎡᏥᏍᏓᏩᏕᎩ\t-11.704\n▁ᎠᎪᎵᏰᏍᎨ\t-11.7041\n▁ᎢᏳᎾᏛᏁᎸ\t-11.7041\nᏚᏓᎸᏙ\t-11.7042\n▁ᏂᏗᎩ\t-11.7042\nᏤᎸᎩ\t-11.7043\n▁ᎠᎾᏓᏱ\t-11.7044\nᎫᏴᎡᎮᏍᏗ\t-11.7045\nᎿᏕᎬ\t-11.7048\n▁ᏓᏂᏃᎩᏍ\t-11.705\nᏒᏍᏗᏱ\t-11.705\n▁ᎤᏴᏔᏁ\t-11.7051\nᏩᏔᎰ\t-11.7052\nᏂᎬᎬᎢ\t-11.7057\n▁ᏂᏨᏃᏁ\t-11.7059\n▁ᎬᎩᏰᎸ\t-11.706\n▁ᎤᏩᏒᎯ\t-11.706\nᏯᎩᏍᎪ\t-11.706\n▁ᎤᏰᎶ\t-11.7061\n▁ᏚᏄ\t-11.7062\nᎫᏴᏗᏱ\t-11.7063\nᏓᏁᏘ\t-11.7064\n▁ᎦᎵᏥᏙᎲᏍ\t-11.7068\n▁ᎤᎴᏅᏔᏅ\t-11.7069\nᏐᏍᏔᏅ\t-11.707\nᏯᏔᎲ\t-11.707\n▁ᏧᎾᎦ\t-11.7071\n▁ᎷᎦ\t-11.7072\nᏪᏅᏎ\t-11.7074\nᎵᏖᎸᏂᎴ\t-11.7077\n▁ᏚᎾᏓᏅ\t-11.708\n▁ᏙᏓᎦᏅ\t-11.7081\nᎪᏪᎸ\t-11.7083\nᏅᎦᎸᎮᎢ\t-11.7087\n▁ᎤᏲᎮᏍᏗ\t-11.7091\nᏆᏒᎦᎸ\t-11.7091\n▁ᏓᏂᎾ\t-11.7091\n▁ᏗᏣᏓᏅᏙᎩ\t-11.7092\nᎦᏔᎿᎥᎾ\t-11.7096\nᎴᏍᏗᏱ\t-11.7101\nᏴᏍᎪᎢ\t-11.7101\n▁ᎬᎵ\t-11.7105\nᏆᏗᏅᏛ\t-11.7107\nᏒᏓᏅ\t-11.7109\nᏍᎦᎢᎮ\t-11.7111\n▁ᎤᏬᏢᎾᏁ\t-11.7118\n▁ᎤᏲᏉᏍᎩᏂ\t-11.712\nᏪᏣ\t-11.7122\n▁ᎢᏥᎦ\t-11.7124\nᎯᏥᎨ\t-11.7124\nᎬᏍᎦᎸ\t-11.7125\n▁ᎤᏅᏗᏱ\t-11.7127\n▁ᏱᏗᏥᏳᎪᏓᏁ\t-11.7128\nᏔᏛᎩ\t-11.7128\n▁ᎦᎪᏗᏱ\t-11.713\n▁ᎤᎵᏂ\t-11.713\nᏥᏍᏈ\t-11.7131\nᏰᏗ\t-11.7134\n▁ᏚᎾᎵᏂᎪ\t-11.7135\nᏗᏍᎦᎳᏁ\t-11.7136\n▁ᎠᏂᎲᏍᎨ\t-11.7139\n▁ᏧᏂᎭ\t-11.7144\nᎾᏏᏗ\t-11.7151\nᎾᎵᏖᎸᏂ\t-11.7153\nᎵᎨ\t-11.7156\n▁ᎠᏂᏟ\t-11.7158\nᎫᏴᎲ\t-11.7161\n▁ᎢᏣᎴ\t-11.7163\n▁ᎠᏛᏁᎵᏍ\t-11.7163\nᎦᏙᎥᎯᏍᏗ\t-11.7164\nᏚᏛᏛᏅᎩ\t-11.7169\nᎬᎾᏉ\t-11.7169\n▁ᎤᏁᏅᎢᏍᏗ\t-11.7175\nᎪᎸᏏ\t-11.7177\nᏲᏞᏒ\t-11.7182\n▁ᎤᎶᏒᏍᏓᏁ\t-11.719\n▁ᎠᏢᏈᏍᏗ\t-11.7191\nᏟᏫᏛᏗ\t-11.7191\nᎵᎥᏂ\t-11.7196\nᏂᏴᎭ\t-11.7199\n▁ᏛᎠ\t-11.7199\n▁ᏓᏂᏱ\t-11.72\n▁ᎤᏩᏛ\t-11.7202\nᎩᎬ\t-11.7203\n▁ᏱᏄᏅᏁ\t-11.7206\nᎨᏰᎢ\t-11.7207\n▁ᏯᏆᏓᏅᏓᏗᏍ\t-11.7208\n▁ᎠᏍᏚᎩ\t-11.7209\n▁ᏗᎬᏂ\t-11.7217\n▁ᎤᏍᏕᎸᎮ\t-11.7225\nᏛᏎᎢ\t-11.7228\n▁ᏄᏩᎾ\t-11.7231\n▁ᎤᏓᏂᏴ\t-11.7232\n▁ᎦᏥᏔᏲᏎ\t-11.7236\n▁ᎬᏩᏂᎾᏄᎪᏫᏒ\t-11.7237\nᎫᏤᎵ\t-11.7238\n▁ᎣᎩᏂᏙ\t-11.7239\n▁ᏱᏕᏣ\t-11.7241\n▁ᏗᎲᎢ\t-11.7242\nᏙᎰᎢ\t-11.7245\nᏛᏓᏍᏓᏁᏗᏱ\t-11.7247\nᏬᎦ\t-11.7255\nᎧᎾᏂ\t-11.7256\n▁ᏚᎩᏎ\t-11.7256\nᎾᏣᏪᏐᎸᏍᏙᏗ\t-11.726\n▁ᎠᏓᎩᎡ\t-11.7262\n▁ᏣᏍᏆᏂᎪ\t-11.7262\nᎵᏎᎯ\t-11.7263\n▁ᏗᏤᎷ\t-11.7264\nᏂᏴᎲᎩ\t-11.7269\n▁ᏫᏚᏂᏲᎯᏎ\t-11.7274\n▁ᎢᏨᏴᏁ\t-11.7274\nᏥᎪᎵᏰᏗᏱ\t-11.7275\nᏫᏱ\t-11.7279\n▁ᎠᏥᏴ\t-11.7282\n▁ᎡᏥᏃᏁ\t-11.7283\n▁ᏗᎦᎬ\t-11.7283\n▁ᏕᏥᏁ\t-11.7284\nᎥᏍᎬᎾ\t-11.7294\n▁ᏓᎾᏁᎶ\t-11.7296\n▁ᏂᎦᎵᏍᏗᏍᎬᎢ\t-11.7296\n▁ᎤᏬᏘ\t-11.7297\n▁ᎠᏆᎵᏃᎮᏔᏅ\t-11.7303\nᏫᏒᎯ\t-11.7305\nᎪᏗᏱ\t-11.7305\n▁ᎤᏪᏅᎡ\t-11.7314\nᏩᏘᎭ\t-11.7317\nᏅᏎᏃ\t-11.7317\nᏂᏍᎩᏴᎦ\t-11.7318\nᏩᏛᎡᏗᏱ\t-11.7319\nᎾᏗᏅᏒᎩ\t-11.7321\n▁ᏚᏅᏅ\t-11.7323\nᏂᏎ\t-11.7329\n▁ᏧᏪᏰ\t-11.733\n▁ᎠᏂᎧᎵ\t-11.7331\nᏒᏁ\t-11.7334\nᏔᏂᎴ\t-11.7336\nᏚᏙᎥ\t-11.7338\n▁ᎤᏂᎦᏙᎥᎯᏍᏗ\t-11.7339\n▁ᎨᏣᎪᏩᏛᏗ\t-11.7341\nᏎᎦ\t-11.7344\nᏲᎸᎩ\t-11.7346\n▁ᏗᎦᎴᏅ\t-11.7347\n▁ᎤᏑᎸ\t-11.735\n▁ᎢᏏ\t-11.7355\n▁ᏧᏐ\t-11.7358\nᏥᎦᏖᏃᎭ\t-11.7364\nᎦᏔᏂᎴ\t-11.7366\n▁ᏣᏓᏅᏖ\t-11.7367\n▁ᎠᎩᏰᎸᏒ\t-11.7369\nᏥᏂᏐᏗᏱ\t-11.7369\n▁ᏓᏚ\t-11.7371\n▁ᎨᏥᏯᏅ\t-11.7373\nᏯᏅᎯᎸ\t-11.7374\nᏅᏍᏓᏕ\t-11.7374\nᏍᏓᎦᏴᎯᏓ\t-11.7375\nᏕᎶᏆᎥ\t-11.7375\n▁ᏧᎾᏁ\t-11.7377\nᏓᏦᎲ\t-11.7378\nᏱᏍᎪᎢ\t-11.7382\n▁ᎢᎸᏍᎩᏉ\t-11.7382\n▁ᎪᏍᏗ\t-11.7383\nᏥᏚᎢᏍᏓᏁᎸ\t-11.7385\nᏍᏆᏗᏍᏗᏱ\t-11.7386\nᎫᏴᎡᏗ\t-11.7387\nᏒᎲ\t-11.739\nᎷᏤᎰᎢ\t-11.7393\nᎶᏄᎮᏍᎩ\t-11.7395\nᏰᏙᎳᏛᏅ\t-11.7395\nᏂᏴᏙᏗ\t-11.7397\n▁ᎠᎩᏩᏒ\t-11.7397\n▁ᎬᏍᎬ\t-11.7405\n▁ᏚᎪᎲᏃ\t-11.7406\n▁ᏓᏂᎯᏯᏍ\t-11.7408\n▁ᏧᎾᏓᎯᏍᏗ\t-11.7412\nᎫᏍᏛᏗ\t-11.7415\nᏍᎪᎳ\t-11.7415\n▁ᎬᏩᏍᏆᏗᏍ\t-11.7419\nᎾᏓᏨᏯᏍ\t-11.7421\nᎧᎵᎢᏍᏔᏅ\t-11.7424\nᏳᎲᏍᎩ\t-11.7425\n▁ᏥᏅᏏᏓᏍᏗᏃ\t-11.7425\n▁ᏥᏳᎯᏃ\t-11.7426\n▁ᎤᏲᎴᎢ\t-11.743\n▁ᏭᏖᎳ\t-11.7432\n▁ᎤᏲᎰᏎ\t-11.7436\nᏯᏙᎮᎮᏍᏗ\t-11.7437\nᏍᎪᎸᏨ\t-11.744\nᏲᎱᏎᎸᎯ\t-11.7441\nᎦᏟ\t-11.7445\n▁ᏳᏗᏔ\t-11.7451\n▁ᏙᏓᏥᏃᎩ\t-11.7453\nᏭᎪ\t-11.7454\n▁ᎤᎾᏕᏯᏙᏗ\t-11.7457\nᏓᏁᏟᏴᏒ\t-11.7458\n▁ᎤᏂᏟᏌᏅ\t-11.746\nᏲᎲᎩ\t-11.7462\nᎵᏃᎮᏔᏅᎩ\t-11.7464\nᎸᏫᏍᏓᏁᎸᎯ\t-11.7464\n▁ᎡᏥᎩᎵᏲᎢᏍᏗᏍ\t-11.7466\n▁ᏍᏆᏛᏓᏍᏓ\t-11.7471\n▁ᎤᎾᎵᏍᏓᏴ\t-11.7472\n▁ᏗᏥᏁᎸ\t-11.7479\nᏄᏬᎥ\t-11.7486\n▁ᏯᏓ\t-11.7492\n▁ᏱᏂᏨᏁ\t-11.7499\n▁ᎧᏅᏂᏍᎩᏉ\t-11.7503\n▁ᎢᏣᏙᎴᎰ\t-11.7504\n▁ᎤᎵᏍᏙᏰ\t-11.7506\nᎷᎪ\t-11.7507\nᏐᏈᎵ\t-11.7507\nᎧᏲᏗ\t-11.7511\n▁ᎠᏓᏔᎶᎯ\t-11.7515\nᏟᎶᏍᏗ\t-11.7516\n▁ᎢᏣᏪᏍᏗ\t-11.7517\n▁ᏧᏃᎯᏳᏗ\t-11.7525\nᎾᏓᏛᏁᎭ\t-11.7525\n▁ᏙᎤᏁᏅ\t-11.7525\n▁ᎡᏥᏍᏕᎸ\t-11.7526\nᏂᏯᏫᏍᎬ\t-11.7526\nᎧᎿᏩᏗᏙᎮᏍᏗ\t-11.7528\n▁ᎠᎴᏂᏓᏍᏗ\t-11.7536\nᏥᏁᎢᏍᏗᏍᎬ\t-11.7537\n▁ᎤᏍᏓ\t-11.7539\nᎸᏨ\t-11.7541\nᏯᏘᏃᎯᏏ\t-11.7543\nᎶᎨ\t-11.7543\nᎩᎵᏲᎢᏍᏗᏍᎬᎢ\t-11.7546\n▁ᎤᏛᎯᏍᏗ\t-11.755\nᏨᏁᏗᏱ\t-11.7554\nᎯᏯᏍᏗ\t-11.7562\n▁ᎤᎵᎬᏚ\t-11.7569\n▁ᏆᏙ\t-11.7585\nᎾᏓᏛᏁᏗᏱ\t-11.7586\nᏂᎥ\t-11.7592\nᎳᏑᎸ\t-11.7598\nᏲᎱᏍ\t-11.7604\n▁ᏏᎻ\t-11.7606\n▁ᏒᏃ\t-11.7611\nᏥᎷᏤᎸ\t-11.7613\nᎦᎴᏍᏗ\t-11.7613\n▁ᎨᏦᎯᏳᏗ\t-11.7614\n▁ᎤᎾᏙᎴᎰᏒᏃ\t-11.7615\n▁ᎦᏙᎬᎢ\t-11.7621\nᎦᎵᏍᏓᏗᏍᏗᏱ\t-11.7622\n▁ᎢᏨᎪ\t-11.7629\n▁ᎠᏲᎪ\t-11.7632\n▁ᎠᏆᏓᏅᏘ\t-11.7633\nᎯᏙᎸ\t-11.7634\nᏓᏅᏖᎭ\t-11.7643\n▁ᏏᏂ\t-11.7646\n▁ᏒᏕ\t-11.7651\nᏍᏔᏯ\t-11.7654\n▁ᎠᏎᏛ\t-11.7656\nᎮᎸᎯ\t-11.766\nᎶᏁᎥ\t-11.7664\n▁ᎭᎵᏍ\t-11.7667\n▁ᏘᏅᎵ\t-11.767\nᏥᎾᏌᎢ\t-11.7672\nᏅᎡᎯ\t-11.7674\nᏤᎶᎯ\t-11.7676\n▁ᏄᎨᏳᏎ\t-11.768\nᏤᏙᎭ\t-11.7683\nᏙᏯᏅᎯᏕᎢ\t-11.7684\nᎲᏍᏔᏅ\t-11.7688\nᏒᎨ\t-11.7689\nᏂᏅᏫᏍᏗᏍᎩ\t-11.7689\nᏘᏅᏍᏗᏱ\t-11.7699\n▁ᎤᎵᏘᏒ\t-11.7702\nᎫᏓᎴ\t-11.771\nᎮᎭ\t-11.7714\n▁ᎣᎨ\t-11.7715\n▁ᎠᏍᏚᎢᏍ\t-11.7719\n▁ᎠᎩᏛ\t-11.7719\n▁ᎣᎩᏃ\t-11.7721\nᏗᎦᏄᎪᎪ\t-11.7724\nᎬᏔᏅᎯ\t-11.7724\nᎩᏁᏥ\t-11.7748\nᎦᏥᏯᏓᏙᎵᏍᏓᏁᎭ\t-11.775\nᏣᏛᎦᏁᎸ\t-11.7753\n▁ᎢᏳᎵᏍᏔᏁ\t-11.7758\nᎪᏗᏍᎩ\t-11.7759\n▁ᎤᏪᎵᏎᎢ\t-11.7761\n▁ᎦᏰᎪ\t-11.7763\n▁ᎧᎾ\t-11.7764\nᏈᏃ\t-11.7765\n▁ᎦᏂᎩ\t-11.7767\nᏍᏕᏓᎵᏴᏍ\t-11.777\n▁ᏗᏣᏛ\t-11.7772\nᎯᎦᏔᎭᏍᎪ\t-11.7772\nᏥᎵᎥᏂᎵ\t-11.7773\nᎦᏔᏂᎸ\t-11.7777\nᏍᏓᏩᏗᏙᎭ\t-11.7778\n▁ᏔᎵᏉ\t-11.7779\nᏐᏗᏱ\t-11.7781\n▁ᎦᏙᎨᎢ\t-11.7783\nᎦᎵᏍᏙᏗᏍᎨᏍᏗ\t-11.7783\n▁ᎤᏂᎩ\t-11.7784\n▁ᎠᏍᎦᏰᎬᏍ\t-11.7794\nᏏᏙᎸ\t-11.7794\nᏥᏴᎩ\t-11.7798\nᏕᏙᏛ\t-11.78\n▁ᎠᎾᏡᏗ\t-11.7801\nᏢᎾ\t-11.7805\nᏣᏓᏅᏔ\t-11.7806\n▁ᎢᏍᏗᎪ\t-11.7806\nᏂᎦᎸ\t-11.781\n▁ᏚᏃᏒ\t-11.781\n▁ᎦᎸᏅ\t-11.7815\n▁ᎣᏥᏅ\t-11.7817\nᎸᎾᏉ\t-11.7818\nᏰᎸᏅ\t-11.7823\n▁ᎠᏙᎴᎰ\t-11.7829\nᎾᎵᏍᏓᏴᏗ\t-11.7831\n▁ᏣᏂᎧᏔᎮ\t-11.7831\np\t-11.7832\nᎾᏓᏂᎸᏤ\t-11.784\n▁ᏚᏏᎳᏛᎢ\t-11.7844\nᏥᏬᏁᏔᏅ\t-11.7845\n▁ᎦᏕᎶᎣᏍ\t-11.7846\n▁ᎣᏂᏍᎩᏂ\t-11.785\nᎵᏁᏌ\t-11.7852\nᎪᎸ\t-11.7858\n▁ᏥᏕᎲ\t-11.7861\nᏩᏂᏌᏁ\t-11.7862\n▁ᎯᏃᎮᏍᎬ\t-11.7867\nᏂᏴᏍᏗ\t-11.7868\n▁ᏂᎬᏅᎩ\t-11.787\n▁ᎯᏍᏚ\t-11.7875\nᏛᏁᎰᎢ\t-11.7882\nᎷᏏ\t-11.7883\nᏂᏎᎢ\t-11.7885\n▁ᎤᏪᎳᏗᏍ\t-11.7886\nᎷᏤᎲ\t-11.7888\n▁ᎤᏱᎶ\t-11.7895\n▁ᎠᏆᏍᏗ\t-11.7896\n▁ᎤᏂᏔᏲ\t-11.7897\nᏴᏍᏕᏍᏗ\t-11.7899\nᏂᏏᏁ\t-11.79\n▁ᎧᏁᏉᎨ\t-11.7903\nᏅᏍᏔ\t-11.7906\nᎵᏍᎪᎸᏓᏁ\t-11.7907\nᏥᏯᏅᎲ\t-11.7908\n▁ᎠᎩᎬ\t-11.7909\nᏂᎦᎵᏍᏓ\t-11.7909\n▁ᏧᏬᏢ\t-11.7911\n▁ᎤᏂᏐ\t-11.7913\nᏍᏓᎡ\t-11.7914\n▁ᎤᏐ\t-11.7919\n▁ᏕᎩᏂᏴ\t-11.7926\nᏓᎦ\t-11.7937\nᎾᏰᏍᎬᎢ\t-11.7943\n▁ᏧᏂᏍ\t-11.7943\nᏥᏫ\t-11.7945\n▁ᏂᏥᎦᏔ\t-11.7945\nᏅᏫᏍᏗᏍᎨ\t-11.7951\n▁ᎤᏓᎵᏓᏍ\t-11.7955\nᏰᎸᎰ\t-11.796\nᎾᎦᏔᎲ\t-11.7964\nᏏᎾᏍᏛ\t-11.7964\n▁ᏍᏆᏂ\t-11.7966\n▁ᎤᎷᏨᎢ\t-11.7966\nᏓᏙᎵᏍᏙᏗᏱ\t-11.797\n▁ᏓᎩᎧ\t-11.7974\nᏥᏍᎪᎵ\t-11.7974\n▁ᏂᎬᏴ\t-11.7984\nᎭᏂᏍᏔᏅ\t-11.7984\nᎯᏎᎴ\t-11.7988\nᏬᎡ\t-11.7988\n▁ᏓᏆᎴ\t-11.7994\n▁ᏧᏬᏚ\t-11.7994\nᏕᏨᎩ\t-11.7995\n▁ᎢᏤᎵ\t-11.8\nᎩᏙᎵᏍᏗᏱ\t-11.8002\nᎬᏂᏐᏗᏱ\t-11.8003\nᎴᏅᏗᏱ\t-11.8005\n▁ᎤᎾᎴᏗ\t-11.8006\nᏯᎪᎦ\t-11.801\n▁ᎤᎨᎢ\t-11.8011\nᏘᏍᏓᏁᎯ\t-11.8013\nᏯᏨ\t-11.8014\n▁ᏓᏁᎶᏛ\t-11.8015\n▁ᏚᏂᏲᏒ\t-11.8015\n▁ᏫᏓᎾ\t-11.8031\nᎦᎶᏙᏗ\t-11.8034\n▁ᏫᎦᏅ\t-11.8034\nᏍᏚᏣ\t-11.8036\nᎧᎮ\t-11.8036\nᏔᎶ\t-11.8041\n▁ᏓᎪᏩᏘᏍᎨ\t-11.8046\n▁ᎤᏔᏕᎩᏍᎨ\t-11.805\nᎵᏎᏗ\t-11.805\n▁ᏧᎾᏁᎳ\t-11.805\n▁ᎬᏯᏛᏁ\t-11.8055\n▁ᎤᎵᏃᎯᏰ\t-11.8056\n▁ᎾᏗᏍ\t-11.8057\n▁ᎤᏤᎸᏅ\t-11.8057\nns\t-11.8059\n▁ᎢᏍᎪ\t-11.806\nᏰᎵᏎᎭ\t-11.807\n▁ᏂᏚᎾ\t-11.807\nᏕᏔᏅᎯ\t-11.8071\n▁ᏅᎬ\t-11.8072\n▁ᏛᎾᎵᏍᏓᏴ\t-11.8075\n▁ᎢᏍᏓᏛ\t-11.8081\n▁ᎬᏩᏯᎢ\t-11.8081\n▁ᏚᎦᏙᏍᏔᏁ\t-11.8082\nᎦᏡᏓ\t-11.8089\n▁ᎦᏓᏬ\t-11.8091\nᎿᎸ\t-11.8095\nᏍᎩᏰᏲᎲ\t-11.8102\nᏫᏍᏔᏁ\t-11.8104\n▁ᎠᎵᏍᎩ\t-11.8107\nᏔᏲᏎᎸ\t-11.8108\n▁ᎬᏬᎯᏳᎲᏍᎨ\t-11.8113\nᏗᏍ\t-11.8116\n▁ᎤᏍᎦᏍᏓᏁ\t-11.8117\nᏆᏓᎾᏰᏍ\t-11.8119\n▁ᏭᎪᎲ\t-11.8125\n▁ᏓᏂᏃᎮ\t-11.8128\nᎳᏍᏛ\t-11.8132\nᏓᏁᎮᎢ\t-11.8135\n▁ᎤᏃᎮ\t-11.8136\nᎦᏑᏰᏛ\t-11.8137\n▁ᏚᏪᏯ\t-11.8139\n▁ᏥᏯᏙᎵ\t-11.8143\nᏰᏅ\t-11.8144\n▁ᎬᏩᏲ\t-11.8151\nᎾᏓᏂᎸᏨ\t-11.8154\nᏂᏌᏙᏴ\t-11.8158\n▁ᎢᏤᎵᏎ\t-11.8161\n▁ᏓᏥᏃ\t-11.8169\n▁ᎤᏂᎦᏯᎷ\t-11.8173\nᏑᏱ\t-11.8173\nᎵᏲ\t-11.8174\n▁ᏧᎾᎵ\t-11.818\n▁ᏍᏆᏓᏅ\t-11.8181\nᎸᏫᏍᏓᏁᎴ\t-11.8183\nᎯᏎᎸᎢ\t-11.8186\n▁ᏱᏓᎩᏯ\t-11.8194\n▁ᎤᏂᏁᏎ\t-11.8195\nᎧᎸᎩ\t-11.8195\n▁ᎤᏂᏣ\t-11.8199\n▁ᏚᏏᏔᏕ\t-11.8203\nᏁᎳᏗᏍᎨ\t-11.8203\n▁ᎠᎪᎵᏰᏍᎪ\t-11.8204\n▁ᎡᏣᎵ\t-11.8213\n▁ᎠᏓᏯᏅ\t-11.8228\n▁ᏚᏒᏁ\t-11.8228\nᎾᏲᎪ\t-11.823\nᎾᎩᏪᏒ\t-11.8231\n▁ᎨᏦᎯᏳ\t-11.8232\nᎩᏂᎬᎦ\t-11.8233\n▁ᎤᏍᏆᏂᎪ\t-11.8233\nᏎᎩ\t-11.8246\n▁ᎢᏥᏰᎸᏒ\t-11.8249\n▁ᏯᏍᎦᎢᎮ\t-11.8251\n▁ᎤᏬᏎ\t-11.8254\n▁ᎬᏩᏛᏓᏍᏓᏁ\t-11.8257\nᎯᏎᎸᎯ\t-11.8264\n▁ᏧᎪᎲ\t-11.8266\nᎢᏍᏓᏁᏗᏱ\t-11.8267\n▁ᎤᎾᎵᏍᎪᎸᏙᏗ\t-11.8268\n▁ᎢᏍᏆ\t-11.8272\nᏙᎴᎢ\t-11.8273\nᎦᎵᏴ\t-11.8274\n▁ᏭᏂᏴᏍᏗ\t-11.8277\n▁ᏱᏥᏲ\t-11.8282\nᏤᏅ\t-11.8287\nᎫᏍᏛ\t-11.8288\nᎧᏘ\t-11.829\nᎵᏲᎩ\t-11.8296\n▁ᏗᏓᎴᎲᏍᎨ\t-11.83\n▁ᏴᏫᏍᎩᏂ\t-11.83\nᎨᏙᎰ\t-11.8303\n▁ᎤᎾᏦᏗ\t-11.8307\nᏏᏌᏅ\t-11.8309\n▁ᏓᏰᏥ\t-11.8312\nᎸᏍᏔᏅ\t-11.8312\n▁ᎠᏥᎪᏗ\t-11.8312\nᏣᎶᏁ\t-11.8314\nᎾᏉᎯ\t-11.8322\nᏣᏃᏁᎵ\t-11.8326\n▁ᏚᏂᏅ\t-11.8331\nᏓᎴᎲᏍᎩ\t-11.834\nᏓᏰᏅ\t-11.8341\n▁ᏙᏤ\t-11.8343\n▁ᏛᎭ\t-11.8354\nᏣᏅ\t-11.8356\nᏓᏅᎦᎸ\t-11.8365\nᎩᎸᏔᏁ\t-11.8369\nᏎᎪᎩ\t-11.837\nᏪᎸ\t-11.8372\nᎵᎴ\t-11.8372\nᏬᏂᎯᏍᏗᏱ\t-11.838\nᏆᏅᏔ\t-11.8381\n▁ᏂᎨᏥ\t-11.8382\nᏉᏑᎴ\t-11.8383\n▁ᎠᎾᏅ\t-11.8384\nᏨᎦ\t-11.8386\n▁ᎥᎩᏁᎸ\t-11.839\n▁ᏗᏕ\t-11.8391\n▁ᏥᏲ\t-11.8395\nᎳᏅᏓᏕᎸ\t-11.84\n▁ᏱᏚᏂᎸᏫᏍᏓᏁ\t-11.8402\nᎴᏫᏍᏗᏍᎨ\t-11.8403\nᎸᏃᏘᎭ\t-11.8404\n▁ᎥᎬᏩ\t-11.8411\nᎵᎮᎵᏥ\t-11.8412\nᏅᎦᎵᏍᎬᎢ\t-11.8412\nᎸᎥᏍᎩ\t-11.8414\n▁ᏥᏓᎾ\t-11.8419\nᏂᏟ\t-11.8423\n▁ᎤᎧᏙᏍ\t-11.8425\nᏔᎳᏬ\t-11.8428\nᏥᎩᏍᏗ\t-11.8431\nᏟᏌᏅᎩ\t-11.8434\n▁ᏱᏂᏣᏛ\t-11.8434\n▁ᎤᎵᎮᎵᏤᎸ\t-11.8441\nᏍᎦᏃᎸ\t-11.8441\n▁ᏧᏅᏙᏗ\t-11.8442\n▁ᎬᏆᏕ\t-11.8444\n▁ᎧᏁᎢᏍ\t-11.8448\n▁ᎠᎾᏛᎩ\t-11.8451\nᏛᎦᏁᏗᏱ\t-11.8457\nᎦᏢᏈ\t-11.8458\n▁ᏳᏝ\t-11.8458\nᎵᏍᏓᏴᎲᏍᎨᎢ\t-11.8463\nᎾᎴᏫᏍᏔᏁ\t-11.8469\n▁ᏗᏂᏲᎵᏉ\t-11.8472\nᏒᎦᎳ\t-11.8473\nᏝᎴ\t-11.8474\nᏥᏯᏬᎥ\t-11.8478\n▁ᎤᏬᏪᎳ\t-11.8483\n▁ᏙᏓᏥᏯ\t-11.8485\n▁ᎠᎩᎷᏤᏗ\t-11.8488\n▁ᎬᏯᏛᏁᎸ\t-11.8495\nᏗᏔᏍᏗᏱ\t-11.8497\n▁ᏧᏂᏁᏤ\t-11.8497\n▁ᎤᏛᏓᏍ\t-11.8499\n▁ᎤᏪᏙᎵᏨ\t-11.85\nᎬᏁᏗᏱ\t-11.8515\nᏓᎪᏩᏘᎭ\t-11.8515\n▁ᎡᏣᏚ\t-11.8518\n▁ᏙᏛᏃ\t-11.852\n▁ᏥᏅᏩᏍᏗ\t-11.8523\nᏯᏛᏗ\t-11.8524\n▁ᏗᎦᎨ\t-11.8525\nᏌᎾ\t-11.8526\nᎯᏓᏍᏗᏱ\t-11.8528\nᎾᏚᎵᏍᎨᏍᏗ\t-11.853\nᎵᏍᏔᏴᎲᏍᎬ\t-11.8537\nᏲᏍᏙᏗ\t-11.8546\n▁ᎤᏂᏯᎸ\t-11.855\n▁ᎤᏁᎳᏗᏍᏗ\t-11.855\nᎯᏍᏗᏍᎩ\t-11.8553\nᏂᏍᏚᎩ\t-11.8557\nᎩᎧᏏ\t-11.8558\nᏍᎩᏲᏎᎭ\t-11.8559\n▁ᎠᏓᎾᏏᏂ\t-11.8559\n▁ᎬᎩᏯ\t-11.8564\nᏩᏉ\t-11.8568\n▁ᎲᏂ\t-11.8574\nᏥᏰᎵᏒ\t-11.8574\nᎫᏱᏍᎨᏍᏗ\t-11.8577\n▁ᏕᎶ\t-11.858\nᏛᏁᎵᏍᎩ\t-11.8582\nᏍᎪᎸᏓᏏ\t-11.8587\n▁ᏂᎬᏅᎢ\t-11.8587\nᎾᏄᎪᎨᏍᏗ\t-11.8588\nᏍᎩᎦᏔᎭ\t-11.8593\nᏆᏂᏏ\t-11.8596\nᏃᏁᎸᎯ\t-11.8598\nᏥᏃᏍᏛ\t-11.8604\nᎬᏩᎪᎲ\t-11.8605\n▁ᏗᎦᏍᎩᎶ\t-11.8607\nᏕᏋᎯᏍᏗ\t-11.8608\nᎾᎿ\t-11.8613\n▁ᎦᎧᎲ\t-11.8615\n▁ᏚᏙᏪ\t-11.8623\nᏣᏲᎭ\t-11.8626\n▁ᏚᏙᎥᎩ\t-11.8632\n▁ᎠᎹᏉ\t-11.8632\nᎵᏎᎭ\t-11.8632\nᏓᏂᎸᎨᏍᏗ\t-11.8634\nᎦᏄᎪᎬᎢ\t-11.8637\nᎦᏥᏴ\t-11.864\nᏪᏙᎵᏨᎩ\t-11.8643\nᎾᏓᏅᏖᎸ\t-11.8649\nᎵᏨ\t-11.8653\nᎵᏍᏚᎶ\t-11.8664\n▁ᎤᎵᏠᏯᏍ\t-11.8665\n▁ᎦᏗᏔ\t-11.8668\n▁ᏚᏪᎧ\t-11.8669\n▁ᏄᏧᏈᏍ\t-11.8671\n▁ᏣᏛᏗ\t-11.8673\n▁ᎤᏂᏲᎰᏎ\t-11.8675\nᏫᎨᏙᎲ\t-11.8677\n▁ᎠᏥᏍᏚ\t-11.8682\nᎮᏍᎬᎾ\t-11.8684\n▁ᎠᏂᎾᎷᏍ\t-11.8686\nᎨᏓᎵ\t-11.8688\n▁ᎠᎩᏩᏛᏗ\t-11.87\nᎩᎡᎴ\t-11.87\nᏅᏎᎢ\t-11.8701\n▁ᏴᎦᏥᏍᎦ\t-11.8709\n▁ᎯᏩᏛ\t-11.8716\n▁ᏂᎬᏂᏏ\t-11.872\n▁ᎤᎵᏍᎪᎸᏙᏗ\t-11.8723\nᏘᏂᏙᎯ\t-11.8724\n▁ᏯᏂᏁ\t-11.8725\n▁ᏳᏴ\t-11.8725\nᏛᏓᎴᎲᏍᎩ\t-11.8734\nᏃᎭᏝ\t-11.8741\n▁ᎨᏣᏁᎢᏍᏗ\t-11.8742\nᎸᏉᏗᏍᎨᏍᏗ\t-11.8745\n▁ᎢᏥᎧᎵᎢ\t-11.8746\nᎵᏍᏓᏁᏗ\t-11.875\n▁ᏩᏂ\t-11.8752\nᎩᏠ\t-11.8756\n▁ᏚᎸᏫᏍᏓᏁ\t-11.8763\n▁ᏕᎦᏂᏱᏍ\t-11.8764\nᎾᏄᎪᎬ\t-11.8765\nᏣᏓᏱᎸ\t-11.8775\n▁ᎠᎾᎵᏥᏙᏂᏙ\t-11.8782\nᏄᎪᏫᏍᎦ\t-11.8782\n▁ᎲᎾ\t-11.8792\nᏓᏬᎠ\t-11.8811\nᏓᏁᎵ\t-11.8812\nᏓᏅᏓᏗᏍᏗᏱ\t-11.8812\n▁ᎨᏥᏰᎸ\t-11.8813\nᏄᎪᏤ\t-11.8817\nᏎᏛ\t-11.8833\nᏠᏯ\t-11.8836\nᎦᏙᏍᏕᎢ\t-11.884\nᏙᏢᏒᎢ\t-11.8843\nᎡᎾ\t-11.8854\nᏂᏚᏪᏎᎸᎩ\t-11.8857\nᎦᏛᎴᎯ\t-11.8862\n▁ᎨᏥᏁ\t-11.8863\n▁ᎦᏁᏟᏴ\t-11.8868\nᎾᏰᎯ\t-11.8871\nᏥᏓᏍᏗ\t-11.8877\nᎦᎸᏓ\t-11.8884\nᏰᎲᎾ\t-11.8888\nᏆᏕᏘᏴᎲ\t-11.8891\nᎦᏔᎲᎢ\t-11.8898\nᏟᏴᎭ\t-11.8902\n▁ᎤᏛᏂᏗ\t-11.8908\n▁ᏨᏛ\t-11.8908\n▁ᏧᏍᏆᏂᎪᏙᏗ\t-11.8911\nᏱᎵᏙᎭ\t-11.8919\n▁ᎠᎵᏍᎪ\t-11.8922\nᏕᏙᎭ\t-11.8923\nᏙᎨᏍᏗ\t-11.8924\nᏑᎵᎪᎬ\t-11.8928\n▁ᎤᎪᎮᏃ\t-11.8929\n▁ᎠᎩᏁᏤ\t-11.8931\n▁ᏄᏪᎡ\t-11.8947\nᏄᎮᎵ\t-11.8947\n▁ᎦᎾᏍ\t-11.8949\nᏂᏩᏛᎲ\t-11.8961\n▁ᎯᏃᏁᎸ\t-11.8972\n▁ᏥᏚᏄᎪ\t-11.8976\nᏂᏍᎪ\t-11.8977\nᏁᏙᎯ\t-11.8979\nᎧᎾᏅ\t-11.8989\n▁ᏓᏰᎵ\t-11.8995\n▁ᎠᏓᏙᎵᏍ\t-11.8998\n▁ᏓᏥᎶᏍ\t-11.9001\nᎷᎬᎾ\t-11.9011\n▁ᏚᏃᏴ\t-11.9013\nᎨᎮ\t-11.9015\n▁ᎢᏣᎫᏱᏍ\t-11.9021\nᎭᏉ\t-11.9023\n▁ᎠᎸᎯ\t-11.9024\nᏕᏃ\t-11.9033\n▁ᎢᎦᏓᏅᏓᏗᏍᏗ\t-11.9051\nᎦᏘᏰᎢ\t-11.9052\nᎵᏍᎪᎸᏓᏁᎸᎩ\t-11.9059\nᏛᏓᏍᏔᏂ\t-11.9065\nᎧᏁᏥ\t-11.9072\n▁ᏧᏳ\t-11.9075\n▁ᎡᎶᎯᏉ\t-11.9085\n▁ᏕᎬᎩ\t-11.9086\nᏂᏍᏘᏰᎬ\t-11.9089\nᏲᎩ\t-11.909\nᏣᏢ\t-11.9095\n▁ᏓᎬᏯ\t-11.9097\nᏯᏑᏰᏛ\t-11.9099\n▁ᎬᏴ\t-11.91\n▁ᎠᏔ\t-11.9108\nᎧᎿᏩᏛᏍᏗ\t-11.9117\n▁ᏛᎪ\t-11.9131\nᏓᎴᎲᏍᎨ\t-11.9134\n▁ᎯᏍᏕᎸᏗ\t-11.9135\nᏂᎭ\t-11.9137\n▁ᏣᏄᏬ\t-11.914\n▁ᎢᏤᏓᏍᏗ\t-11.9148\n▁ᎢᏤᏲ\t-11.9158\nᏖᏆᎶ\t-11.9173\n▁ᎠᏂᎶᏏᏙ\t-11.9174\nᏗᏒᏅ\t-11.9181\nᏁᎵᏙᎸ\t-11.9186\nᎦᏰᏃ\t-11.9191\n▁ᎤᏂᏁᎦ\t-11.9196\nᏂᏔᏲᎴ\t-11.9201\n▁ᏧᎵᏍᏚ\t-11.9206\nᎦᏃᏥ\t-11.9208\n▁ᎤᏂᏍᏘᏰ\t-11.9208\n▁ᎬᏔᏅ\t-11.9229\nᏥᏁᏤᎸᎯ\t-11.923\n▁ᏥᏂᏨ\t-11.9241\n▁ᏧᎫᏴ\t-11.9243\nᏤᎵᎦᏯ\t-11.9249\nᎧᎾᏩᏗᏙ\t-11.9249\nᎩᎡᏗ\t-11.925\nᎡᎮ\t-11.9251\n▁ᏕᏧᎪᏗᏍ\t-11.9258\nᏧᏣ\t-11.9258\n▁ᏴᏓᎦ\t-11.9259\nᎾᎦᏔᎲᏍᎬ\t-11.9263\n▁ᎨᎪ\t-11.9275\nᏦᏱ\t-11.9279\nᏓᏑᏴᎢ\t-11.9285\nᏞᏤ\t-11.9285\n▁ᎤᏍᏆᎸᏗ\t-11.9286\nᏓᎨᏛ\t-11.9287\npi\t-11.9288\nᏯᏖᏃ\t-11.9297\nᏎᎵᏙ\t-11.9298\nᏴᎭᎦ\t-11.9298\n▁ᏞᎦᏉ\t-11.9298\nᏣᏁᎵ\t-11.9298\nᏃᎯᏏ\t-11.9304\nᏛᏛᏅᎩ\t-11.9306\n▁ᏣᏕ\t-11.9317\nᏲᎦᏘ\t-11.9317\nᎾᏁᏍᎨᏗ\t-11.9325\nᏓᏥᎩᏏ\t-11.9327\n▁ᎠᎧᏔ\t-11.9332\n▁ᎤᏂᏲᎯᏍᏔ\t-11.9334\nᎵᏙᎮᏍᏗ\t-11.9334\n▁ᎬᏭᎯᏍᏗᏍ\t-11.9341\nᏥᏩᏛᏓ\t-11.9344\nᏨᏉ\t-11.9348\n▁ᎢᏥᎪᏩᏛ\t-11.9349\n▁ᏓᎦᏂ\t-11.9349\n▁ᏯᎦᎵ\t-11.9361\nᏗᏤᎾ\t-11.9362\nᎵᏗ\t-11.9366\n▁ᏥᎨᏣ\t-11.9369\nᎾᏯ\t-11.937\nᎵᎥᏂᎵ\t-11.9378\nᏓᏂᎸᎦ\t-11.9378\nᎷᎯᏍᏓᏁ\t-11.9381\nᏓᎴᏅᏓ\t-11.9398\nᏏᎾᏏ\t-11.9405\nᎡᎲ\t-11.941\n▁ᎤᏁᎳᏗᏍ\t-11.9411\nᎪᎸᏒ\t-11.9411\n▁ᏧᎾᏓᏁᎳ\t-11.9416\nᏂᏲ\t-11.9417\n▁ᎤᏓᎾ\t-11.9417\nᎾᏕᎪ\t-11.9419\nᎪᏎᎮᏍᏗ\t-11.942\nᎵᏂᎪᎯᏍᏓ\t-11.9427\nᏩᏘᏍᎬ\t-11.9432\nᏩᏁᎲ\t-11.9432\n▁ᏗᏆᏓ\t-11.9436\nᏑᎴᏗ\t-11.9438\nᏃᏴᎬ\t-11.9444\n▁ᏗᎦᎶᎯᏍᏗ\t-11.9448\n▁ᎠᎩᏁᎵᏍ\t-11.9453\nᏩᎯᏎᎴᎢ\t-11.9457\n▁ᏳᎾᏗᏅ\t-11.9458\nᎶᏂ\t-11.9462\n▁ᏓᏂᏅ\t-11.9466\nᎬᏩᏂ\t-11.9466\nᎶᏍᎨᏍᏗ\t-11.9467\nᏁᎵᏍᎨ\t-11.9473\n▁ᎤᏂᎶᎯᏍᏗ\t-11.9475\nᎦᏘᏰᏍᏗ\t-11.9475\nᏭᎾ\t-11.9484\n▁ᎠᏂᎦᏗ\t-11.9487\nᎦᏘᏯ\t-11.9488\nᏆᎵᏍᎪᎸᏓᏁ\t-11.9489\n▁ᎢᏥᎦᎵ\t-11.949\n▁ᏥᏯᏓᏅᏖᏍ\t-11.95\nᏩᏐ\t-11.9513\n▁ᎣᏆ\t-11.9517\n▁ᎤᎵᏏ\t-11.9524\n▁ᏧᏂᎸᏫᏍᏓᏁ\t-11.9525\nᎳᏑᎶ\t-11.9533\nᎴᎦ\t-11.9539\nᏬᎥᎢ\t-11.9543\nᎧᏅᎩ\t-11.9546\n▁ᎤᏒᎴ\t-11.9547\n▁ᎠᎦᏘᏃᎮ\t-11.9549\nᏥᎪᎥ\t-11.955\n▁ᎢᏣᏍᏗ\t-11.9555\nᎩᏂᏆᏘᎯ\t-11.9555\nᏴᏢ\t-11.9557\nᏑᏰᏒᎢ\t-11.9562\nᏣᏛᏁᎵ\t-11.9567\nᎾᏗᏅ\t-11.957\nᏓᏅᏒᎭ\t-11.9585\nᎦᎵᏱ\t-11.9585\nᏰᎸᎾᏁᏗ\t-11.9587\nᏓᏙᎵᏍᏓᏁᎮᏍᏗ\t-11.9589\nᏩᏕᎨ\t-11.9594\n▁ᏝᏰ\t-11.9598\n▁ᏳᏔᏲᏎ\t-11.9601\nᏒᏗᏍᎬ\t-11.9602\nᏦᎯᏳᎲᏍᎦ\t-11.9605\n▁ᏳᎾᏚᎵ\t-11.9606\n▁ᏱᏥᏲᏍ\t-11.9612\nᏕᏘᏴᏛ\t-11.9616\n▁ᎠᏂᏯᏫᏍ\t-11.9622\nᏗᏕᎬᎢ\t-11.9623\nᏯᎦᏔᏂ\t-11.963\nᏂᎰ\t-11.9637\n▁ᎠᎩᏁᏤᎸ\t-11.9641\nᎫᏏ\t-11.9642\nᏘᏃᎯᏏ\t-11.9647\nᏍᎦᏅᎪᎢ\t-11.9648\n▁ᎾᎦ\t-11.9649\nᏖᎳᏗ\t-11.9657\nᎩᎵᏲᎢᏍᏙᏗᏱ\t-11.9659\n▁ᏧᏃᎯᏳ\t-11.9666\n▁ᏫᏓᏯᏂᏍ\t-11.9672\nᏯᎩᏍᎬ\t-11.9673\nᏗᏫᏎᏗ\t-11.9675\nᏍᏛᏗᏍᎬᎢ\t-11.9675\nᏐᏯᏍᏗ\t-11.968\nᏓᏅᎡᏗᏱ\t-11.9687\nᏓᎤᎦ\t-11.9688\nᏐᎸ\t-11.969\n▁ᏧᏬᏎ\t-11.9692\nᎵᎪᏔᏅ\t-11.9695\nᎧᎳ\t-11.9695\nᏛᏔᏁ\t-11.9699\nᏂᎩᏏ\t-11.9701\nᏏᏃᎴ\t-11.9702\nᎭᎷᎨ\t-11.9704\nᏂᎪᎯᏍᏗᏍᎨᏍᏗ\t-11.9711\nᎵᏖᎸᎲᏍᎦ\t-11.972\nᏩᏛᎡᎮ\t-11.9721\nᏂᏯᏍᏗ\t-11.9722\nᏪᏍᏗᏱ\t-11.9726\nᎸᏅᎩ\t-11.9727\n▁ᎠᏂᎦᏔ\t-11.9731\nᎼᏏ\t-11.9734\nᏓᎩᏅ\t-11.9735\nᏓᏟᏴ\t-11.9737\n▁ᏥᎦᎳ\t-11.9743\n▁ᏳᏂᏁ\t-11.9744\n▁ᏧᎶ\t-11.9746\nᏪᎶ\t-11.975\nᎨᏳᏒᎾ\t-11.975\nᏁᎵᏍᎪ\t-11.9752\nᎵᏍᏔᏁᏗ\t-11.9752\n▁ᎤᎴᎾ\t-11.9753\nᎳᏃ\t-11.9757\n▁ᏱᎨᎦ\t-11.976\nᏠᏎ\t-11.9761\n▁ᎠᏂᎶᏍᎨ\t-11.9762\n▁ᏂᏕᎤᏍ\t-11.9764\nᏬᏯᏁᏎᎢ\t-11.9765\n▁ᎠᏂᏃᎯ\t-11.9767\nᏕᏯᏙᏓ\t-11.9769\nᏣᏅᏔ\t-11.977\nᏡᏗᎭ\t-11.9776\n▁ᎦᎾᏄᎪᏫᏎ\t-11.9778\nᏙᎻ\t-11.9779\nᏍᏆᏗᏍᏗ\t-11.9785\n▁ᏚᏛ\t-11.9789\n▁ᎠᎩᏯ\t-11.9791\n▁ᎢᎾᎯ\t-11.9792\nᎴᎲᏍᎬᎩ\t-11.9792\n▁ᎣᎦᎵᏍᏔᏴ\t-11.9793\n▁ᏕᎦᏥ\t-11.9794\nᎵᏍᏔᏴᎾ\t-11.9796\nᏗᏓᎴᎲᏍᎪᎢ\t-11.9803\nᎯᏍᏗᏍᎨᏍᏗ\t-11.9804\n▁ᏱᏣᏛᏓᏍᏔ\t-11.981\nᏈᏴ\t-11.9811\nᏂᎶᏒᎯ\t-11.9816\nᏗᏥᏂᏴ\t-11.9817\nᏤᎲᎾ\t-11.9818\n▁ᎤᎵᏍᏚ\t-11.9819\nᏄᏙᎬ\t-11.9819\n▁ᏂᏚᎾᏓ\t-11.982\nᎵᎪᎲ\t-11.9821\n▁ᎠᎿᏬ\t-11.9825\n▁ᏂᏙᏓ\t-11.9831\nᏄᏣ\t-11.9833\nᏂᎪᏩᏛ\t-11.9834\nᏘᏒᎴᎢ\t-11.9835\nᏲᏍᏙᏓᏁᎸᎩ\t-11.9858\n▁ᏚᎵᏍᏚ\t-11.986\n▁ᎤᎵᏍᏔᏁ\t-11.9862\nᏍᏆᏂᎪᏙᏗ\t-11.9864\n▁ᎤᏓᏦ\t-11.9869\nᎾᏗᎾ\t-11.9872\nᏱᏙ\t-11.9874\nᎪᎯᏳᏗᏱ\t-11.9876\n▁ᎥᎠᎩ\t-11.9877\n▁ᏅᏓᏳᏂ\t-11.9881\n▁ᏫᏚᏃᏁ\t-11.9883\nᏕᏯᏙᏗᎭ\t-11.9889\nᎮᎴᎢ\t-11.9889\nᏂᏩᏛᎯᏙ\t-11.9889\nᎶᏒᎯ\t-11.9889\nᏛᏓᏍᏔᏅ\t-11.9899\nᏲᏏᏍᎨᎢ\t-11.9907\nᏗᎦᏔᎭ\t-11.9914\n▁ᏘᏏ\t-11.9923\nᏖᏆᎶᎯ\t-11.9925\nᏍᏓᎥ\t-11.9927\n▁ᏗᏠᎯᏍ\t-11.9937\nlo\t-11.9937\n▁ᎣᏍᏕᏙ\t-11.9939\nᏢᏔ\t-11.9942\n▁ᎠᎯᏯ\t-11.9943\nᎴᏉ\t-11.9947\n▁ᎠᏍᏆᏂᎪᏗᏍ\t-11.9953\n▁ᏣᏓᏅᎦᎸ\t-11.9956\nᏗᏍᎦᎳ\t-11.996\nᏯᎦᎿᏅ\t-11.9972\n▁ᏣᏁᏤ\t-11.9975\nᏄᎪᎬᎢ\t-11.9981\nᎠᏰᎸ\t-11.9985\nᎵᏍᏙ\t-11.9985\nᏣᏪᏐᎸᏍᏙᏗ\t-11.9992\n▁ᎬᏩᎾᏓ\t-11.9999\n▁ᏫᏥᏂ\t-12.0002\n▁ᏓᏳᎾ\t-12.0005\nᏂᏲᎸ\t-12.0006\nᏥᏳ\t-12.0007\n▁ᎢᏥᎶᏁ\t-12.0014\n▁ᎬᏩᎸᏉᏗ\t-12.0015\n▁ᏕᏣᎸ\t-12.0018\n▁ᎬᏩᏂᎩᎵᏲᎢᏍ\t-12.0019\nᏃᎩᏍᏔᏂ\t-12.0022\nᏂᏍᏙᏗᏱ\t-12.0028\nᏚᎾᏛ\t-12.0029\nᏌᎴᏓ\t-12.0033\nᎦᏘᏰ\t-12.0036\nᏥᎸᎯ\t-12.0044\nᏓᏔᎶᎯᏍᏗ\t-12.0045\nᏚᏓᎳ\t-12.0046\nᎪᏩᏘᏍᎪᎢ\t-12.0051\nᎮᎵᏍᎬᏉ\t-12.0052\n▁ᎠᎩᎵᏓᏍ\t-12.0067\n▁ᏣᏍᏕᎸ\t-12.0068\nᎯᎶᎥ\t-12.0071\nᎵᏏᏅᏓ\t-12.0079\nᏰᎸᏁ\t-12.0083\nᏯᏊ\t-12.0084\n▁ᏗᏥᏲᎯ\t-12.0084\n▁ᏗᎦᏔ\t-12.0086\nᏮᎩ\t-12.0091\nᎶᎸᎯ\t-12.0091\nᏣᏓᏑᏯ\t-12.0092\n▁ᏥᏃᎮ\t-12.0093\n▁ᏧᏂᎸᏉᏗ\t-12.0093\nᏂᏬᏂᎭ\t-12.0096\n▁ᎥᎬ\t-12.0098\nᏓᏒᏂ\t-12.01\nᎾᎴᏗ\t-12.0105\nᏩᏘᏍᎪ\t-12.0112\n▁ᏛᎤ\t-12.0118\nᏍᏕᎸᎡᏗᏱ\t-12.0118\n▁ᎤᎵᎪ\t-12.0121\nᏅᏖ\t-12.0122\n▁ᏳᏙ\t-12.0123\n▁ᎠᏢᏈᏍ\t-12.0126\nᏥᏲᎵᎭ\t-12.013\n▁ᏂᏍᎩᏴ\t-12.0132\n▁ᎡᏦᎢᏳ\t-12.0133\n▁ᎢᏕᏙ\t-12.0134\n▁ᏝᏉ\t-12.0141\nᎵᎥᏂᎸᎩ\t-12.0146\n▁ᏱᎪᎯ\t-12.0151\nᏩᏛᏔᏅ\t-12.0152\nᎩᏂᏴᏎᏍᏗ\t-12.0152\n▁ᏧᏢᏗ\t-12.0154\nᏟᏴᏗ\t-12.0157\nᏰᎸᏒᎩ\t-12.0157\nᏣᎦᎸᎮ\t-12.0161\nᏍᏚᎮᎢ\t-12.0163\nᏔᎲᎾ\t-12.0168\nᏩᏗᏒ\t-12.0176\n▁ᏙᏍᏗ\t-12.0178\n▁ᎠᎩᏍᏕᎸᏗ\t-12.0178\nᏣᎧᏂᏍᎬ\t-12.0184\n▁ᏚᎦᏔ\t-12.0184\nᎸᏫᏍᏓᏁᎭ\t-12.0186\n▁ᎤᏂᏍᎪᎸ\t-12.0189\nᏢᏗᏍᎨ\t-12.019\n▁ᎦᎳ\t-12.0192\nᏘᏍᎨ\t-12.0197\n▁ᎤᏩᏙᏗ\t-12.02\n▁ᏓᏥᏯᏛ\t-12.0204\nᎸᎲ\t-12.0205\nᏥᏍᎦᏅᏤᎸ\t-12.0218\n▁ᎢᏥᏯᏅ\t-12.0218\nla\t-12.0221\n▁ᎤᏃᎯᎸ\t-12.0227\nᏲᎯᏎᎴᎢ\t-12.0227\nᏙᎯᏳᎮ\t-12.0229\n▁ᏥᎪᏩᏘ\t-12.0233\nᎾᏓᏛᏁᎮᏍᏗ\t-12.0236\nᏄᏂ\t-12.0237\n▁ᏯᏆᏓᏅᏔ\t-12.024\n▁ᎢᏳᎾᏛᏁ\t-12.024\nᏈᎵ\t-12.0244\n▁ᎠᎩᎷ\t-12.0247\nᏂᏲᎯᏍᏙᏗ\t-12.0247\n▁ᎤᏕᏘ\t-12.0251\nᎧᎿᏅᎩ\t-12.0258\nᏗᏙᎵᎩ\t-12.0264\n▁ᏫᏗᎨ\t-12.0264\n▁ᎠᎩᏍᎦ\t-12.0265\nᏓᏥᏩᏛᎯᏃ\t-12.0275\n▁ᏗᎷ\t-12.0277\nᎸᏅᎭ\t-12.0287\nᎦᏖᏃᎭ\t-12.0291\n▁ᏧᏓᏅᏖ\t-12.0292\n▁ᏧᏔ\t-12.0294\nᏍᎩᎳ\t-12.0298\nᏗᏅᏎ\t-12.0298\n▁ᏕᏥᎸᏫᏍᏓᏁ\t-12.0302\n▁ᏚᎧᏁ\t-12.0302\nᎩᎵᏲᎬᎢ\t-12.0306\n▁ᏓᏂᏁ\t-12.0306\nᏣᏅᏓᏗᏍ\t-12.0307\n▁ᎤᏃᎯ\t-12.0314\n▁ᎤᏏᎳᏛ\t-12.0314\n▁ᎠᏦ\t-12.0319\nᏓᏂᎸᎪᎢ\t-12.0322\nᎵᏍᎪᎸᏓᏁᎴ\t-12.033\nᎾᏙᎴᏆᏍᎬ\t-12.0331\nᏌᎳᏙᏗ\t-12.0331\nᎩᎸᏉᏔᏅ\t-12.0332\n▁ᎠᏔᏲᎯ\t-12.0335\nᏄᎪᏥ\t-12.0337\nᎵᎮᎵᏨᎯ\t-12.0338\nᏪᎵ\t-12.0338\nᏂᏗᏍᏗ\t-12.0338\n▁ᎤᏍᏆᎸᎡ\t-12.0339\nᎳᏍᏓᎸ\t-12.0341\n▁ᎤᎾᏕᎰ\t-12.0341\n▁ᎤᎴᏫᏍ\t-12.0342\n▁ᏕᎯᏯ\t-12.0342\nᏒᎸᎩ\t-12.0343\nᏘᏍᎪ\t-12.0345\nᎦᏘᏗ\t-12.0352\n▁ᎤᏥᏍᏓ\t-12.0356\n▁ᎠᎵᏖᎸᎮᏍ\t-12.0357\n▁ᎠᏁᏍᎨ\t-12.0361\nᏦᎯᏳᏅ\t-12.0363\nᎦᏌᏯᏍᏗ\t-12.0367\nᏂᎪᏩᏘᏍᎨᎢ\t-12.0367\nᏕᎲᎦ\t-12.0371\n▁ᎠᏑᏰᏍ\t-12.0375\nᎸᎪᏫᏍ\t-12.0378\n▁ᎣᎩᏍᏛᏗᏍ\t-12.0386\n▁ᎬᏩᏍᎦ\t-12.0387\n▁Ꮬ\t-12.0387\n▁ᏚᏂᏚ\t-12.039\nᎪᏩ\t-12.0396\nᏓᏪᎵᎩᏍ\t-12.0396\nᏲᎵᎦ\t-12.04\nᎤᏅᏎ\t-12.0401\nᏂᎩᏒᎩ\t-12.0401\nᏓᏅᎵᏰ\t-12.0405\n▁ᎠᎩᎾᏄᎪᏫᏍᏗ\t-12.0406\n▁ᎠᏂᎦᏖᏃ\t-12.0406\nᎯᏴᏁᎸ\t-12.0411\n▁ᎡᏥᏄᎪ\t-12.0412\nᎢᎦᏚᎩ\t-12.042\n▁ᏛᏛ\t-12.042\n▁ᎢᏤᏯᏔ\t-12.0421\n▁ᎾᏋᏁ\t-12.0423\nᏥᏲᎭ\t-12.0423\nᏓᏙᎵᏍᏓᏁᎯ\t-12.0424\n▁ᎠᏡᏗᏍ\t-12.0425\nᏩᏛᏛ\t-12.0425\n▁ᎣᎩᏍᏛᏗᏍᏗ\t-12.0426\n▁ᏓᎨᏥ\t-12.0428\nᎸᎡᎴ\t-12.043\n▁ᏥᎧᏁᎢᏍᏗ\t-12.0431\n▁ᎩᎦᎨᏃ\t-12.0438\n▁ᏓᏂᎳᏫ\t-12.0442\nᏓᏘᎾᎥ\t-12.0442\nᏍᏛᏗᏍᏗᏱ\t-12.0443\nᎠᏧ\t-12.0446\nᏥᏬᏁᏙᏗ\t-12.0449\nᏂᎨᏴ\t-12.045\nᏰᎵᏒ\t-12.045\n▁ᏕᎪᏢ\t-12.0455\n▁ᏥᏂᏣᎵᏍ\t-12.0456\nᏆᏙ\t-12.0456\n▁ᎢᏯᎦ\t-12.0463\n▁ᎢᏳᏅᏁ\t-12.0467\nᎦᏯᎷᏗ\t-12.0471\nᎶᏍᎪ\t-12.0473\nᏨᏍᏗ\t-12.0473\nᏁᎢᏍᏓ\t-12.0476\n▁ᏧᏭᏓᎴ\t-12.0477\nᏓᏍᎦᎨᏍᏗ\t-12.0486\n▁ᏕᏍᎩᏯ\t-12.0486\n▁ᎢᏯᏥ\t-12.0487\n▁ᎬᏩᏍᏕᎸᎯᏙ\t-12.0492\nᏂᏍᏔᏅ\t-12.0493\nᎷᏨᎯ\t-12.0493\n▁ᏧᎴᏗ\t-12.0498\nᏓᎾᏌᎲᏍᎩ\t-12.0499\nᎵᏍᏓᏴᎲᏍᎬᎢ\t-12.0511\nᏫᏒᏅ\t-12.0511\nᏴᏅ\t-12.0512\n----\t-12.0513\n▁ᏯᏂᎸᏉ\t-12.0516\nᎦᏓᎡ\t-12.0517\n▁ᎤᎪᎯ\t-12.0526\n▁ᎠᎩᏍᎬ\t-12.0531\nᏙᎵᏍᏗᏱ\t-12.0532\nᏥᏍᎬ\t-12.0536\nᎦᏅᎾ\t-12.0541\n▁ᏩᏂᏴ\t-12.0547\nᏓᏛᎢ\t-12.0549\n▁ᎤᏏᏔᏕ\t-12.0551\nᏛᏗᏕᎬ\t-12.0552\n▁ᎬᏩᏯᏫ\t-12.0555\n▁ᏥᏫᎬ\t-12.0559\n▁ᎯᏰ\t-12.0559\n▁ᎤᏓᎪᎾᏛ\t-12.0562\nᎴᎲᏍᎦ\t-12.0568\n▁ᎠᏂᏃᎮᎵᏙ\t-12.0569\nᏍᏆᏓᏃ\t-12.0572\nᏳᏨ\t-12.0576\nᏑᎦᎸ\t-12.0583\nᏒᎦᎶᏗ\t-12.0586\n▁ᎤᎵᏖᎸᏂ\t-12.0587\nᎬᏩᏛᏗ\t-12.059\nᏓᏖᎸᎮᏍ\t-12.0593\nᏩᏘᏃ\t-12.0598\n▁ᎦᎸᏉᏗᏳᏍᎩᏂ\t-12.0603\n▁ᎢᏨᏯᎵᏥᏙᏁ\t-12.0603\n▁ᏓᎧᎿᏩᏗᏙᎮ\t-12.0605\nᏂᏆᏘᎲ\t-12.0608\n▁ᏩᏓ\t-12.0608\nᏌᏙᏰ\t-12.0613\nᎦᎵᏍᎨᎢ\t-12.0618\n▁ᎡᏣᎵᏍᎪᎸᏓᏁ\t-12.0619\nᏪᏎ\t-12.062\nᎯᏐ\t-12.0629\nᏁᎢᏍᏓᏁᎭ\t-12.0632\nᏍᏚᏟ\t-12.0638\nᎵᏂᎬᎬ\t-12.0641\nᏲᏍᏙᏓ\t-12.0642\n▁ᏳᏕᎶᎰ\t-12.0642\n▁ᏧᎾᏁᏍᎨ\t-12.0643\nᏯᏅᎮ\t-12.0646\n▁ᎬᏩᏂᎩ\t-12.0649\nᎱᏁ\t-12.065\n▁ᏚᎾᏕ\t-12.065\nᏄᎪᏫᏎ\t-12.0651\n▁ᎢᏨᏲᏪᎳᏁ\t-12.0652\nᏳᏩᏂ\t-12.0654\n▁ᎢᎦᏚᏓᎴᏍ\t-12.0655\nᏏᏔᏕᎢ\t-12.0656\nᎶᎩ\t-12.0656\n▁ᎢᏙᎯᏳᎲᏍ\t-12.0656\nᎦᎵᏍᏓᏗᏍᎩ\t-12.0658\nᏂᎨᏳᎯ\t-12.0658\nᏣᏛᎦᏁ\t-12.066\n▁ᏓᏗ\t-12.0662\nᎶᎢᏍᏗᏱ\t-12.0662\n▁ᎠᏛᎵ\t-12.0674\nᎵᏌᎳᏓᏅᎩ\t-12.0677\nᎦᏔᎲᏒᎩ\t-12.0679\n▁ᏥᎾᏆ\t-12.068\nᎠᏯᎨ\t-12.0685\nᎪᏢᎭ\t-12.0687\nᏂᎶᏍᎨᏍᏗ\t-12.0687\n▁ᎦᎵᏗ\t-12.0688\nᏋᏁᎸᎩ\t-12.0691\nᎵᎪᏁᎸᎩ\t-12.0697\nᎴᏒ\t-12.0699\n▁ᎤᏂᏲᎵ\t-12.0701\n▁ᏧᎷᏤ\t-12.0701\nᎶᏍᎦ\t-12.0702\nᏍᏔᏁᎲ\t-12.0702\n▁ᎠᎩᏫ\t-12.0709\n▁ᏥᏅᏒ\t-12.0712\nᏕᏍᏔ\t-12.0721\nᏓᏬᎢ\t-12.0724\nᏓᏍᏕᏓᎵᏴᏍᎩ\t-12.073\nᏜᏍᏛ\t-12.0731\n▁ᎤᏂᏁᏉ\t-12.0734\n▁ᎫᏔ\t-12.0734\nᏣᎷᏤᎵ\t-12.0735\n▁ᎾᏲ\t-12.0736\n▁ᏱᏂᎬᏩ\t-12.0736\nᏚᏂ\t-12.0737\n▁ᏧᏢ\t-12.0738\nᏘᏃᎮᏗᏱ\t-12.0741\n▁ᏣᏕᎲᏍ\t-12.0741\n▁ᎪᏒ\t-12.0742\nᏃᎮᎴᎢ\t-12.0742\nᎾᏕᏏ\t-12.0743\nᏓᎷᎸ\t-12.0743\n▁ᏓᎦᏢ\t-12.0747\nᏍᏆᎶ\t-12.0752\n▁ᏚᎾᏁᎶ\t-12.0752\nᏐᏢᏗᎭ\t-12.0753\n▁ᏄᎾᏓ\t-12.0757\n▁ᏧᏚᎢᏍᏓᏁ\t-12.0757\n▁ᎯᏅᏁ\t-12.0762\n▁ᎢᏣᏠᏯᏍ\t-12.0763\nᏬᏯ\t-12.0765\nᏍᎪᏎ\t-12.0766\n▁ᏗᎦᏄ\t-12.0768\nᏂᎰᎢ\t-12.0768\nᏥᏍᏕᎸᏗᏱ\t-12.077\n▁ᏗᏧᎪᏓ\t-12.0773\nᏂᏴᎩ\t-12.0773\n▁ᎢᎠᏓ\t-12.0774\nᏯᏓᏱ\t-12.0775\nᏯᎴ\t-12.0778\nᏕᎰᏍᎨᏍᏗ\t-12.0781\nᏅᏩᏅ\t-12.0784\nᎬᏩᏟ\t-12.0785\nᎩᎳᎾᎳ\t-12.0798\nᏅᏍᎪᎢ\t-12.08\nᏓᏣ\t-12.0803\nᎾᏝᎾᎥᎢ\t-12.0808\n▁ᎤᎾᎵᏍᏗ\t-12.0809\n▁ᏗᎾᏓᏅᏟᏉ\t-12.081\n▁ᎾᏂᏪ\t-12.0811\n▁ᏂᎨᏣ\t-12.0814\nᎱᏍᏕᏎᎸ\t-12.0816\nᎵᏂᎪᎯᏍᏔᏅ\t-12.0819\nᎵᏃᎮᏙᏗᏱ\t-12.0822\n▁ᎠᎩᎶ\t-12.0824\nᏅᏓᏗᏍᎪ\t-12.0825\nᏣᏓᏅᎦᎸᏛ\t-12.0825\nᎾᏁᎴ\t-12.0826\nᏥᏍᏕᎸ\t-12.0829\nᏍᏉᏟᎢ\t-12.0831\nᏓᎷᏯᏛ\t-12.0834\nᏑᏰᏎᎢ\t-12.0838\nᏃᏍᎩᏛ\t-12.0839\nᏥᏅᏁᏗ\t-12.0842\n▁ᎾᎾᏛᏁ\t-12.0844\nᏍᏆᎵᏎ\t-12.0844\n▁ᏛᎾᏓ\t-12.0848\n▁ᏕᎦᏥᏯ\t-12.0852\n▁ᎤᎾᏘᏲ\t-12.086\nᏉᏗᏍᎬ\t-12.086\nᏲᏤᎢ\t-12.0864\n▁ᎠᎵᎮᎵᏍ\t-12.0865\nᏑᎴᏍᏗ\t-12.0867\n▁ᎢᎫ\t-12.0873\nᏕᏍᏗᏍᎨᏍᏗ\t-12.0874\n▁ᏱᎦᏅ\t-12.0875\n▁ᎠᎾᎵᏍᏓᏴᏗᏍ\t-12.0882\n▁ᎤᎦᏌ\t-12.0883\nᎦᏔᎾᎢ\t-12.0885\n▁ᎢᏧᎳᎭᏉ\t-12.0886\nᏅᎢᏍᏗ\t-12.0891\nᏟᎶᎡᎸ\t-12.0893\nᏓᏰᎨᏍᏗ\t-12.0896\nᏏᏅᎯ\t-12.0898\nᏟᏍᏔᏁ\t-12.0898\n▁ᎤᏂᏄᎸ\t-12.09\nᏌᏛᎥᏍᎬ\t-12.0902\nᏗᏔᎲᎩ\t-12.0902\nᎬᏂᏍᏗ\t-12.0903\nᏍᎩᏓᏒᎢ\t-12.0905\n▁ᎡᏥᎾᏰᏍ\t-12.0905\nᏂᏒᎩ\t-12.0906\nᎦᎷᏯ\t-12.0912\nᏒᎴᎢ\t-12.0912\nᏁᎵᏒᎢ\t-12.0914\n▁ᏧᏥᏍ\t-12.0916\nᎵᏍᏗᏍᎨᏍᏗ\t-12.0917\n▁ᎠᏆᏛᎦ\t-12.0919\n▁ᏦᎸ\t-12.0921\n▁ᎤᎦᏛᎾ\t-12.0925\nᏂᎴᎢ\t-12.0927\nᎯᏍᏓᏁᎯ\t-12.093\n▁ᏗᏓᎾ\t-12.0933\nᏓᏙᎵᏍᏔᏁᎢ\t-12.0936\n▁ᏚᏓᏂᎸᏤ\t-12.0939\n▁ᎤᏂᏍᎦ\t-12.0939\nᏯᏛᏁᎵ\t-12.0945\n▁ᏍᎩᏯᏕᎶᏆ\t-12.0946\nᏅᏗᏍᏗ\t-12.095\n▁ᎨᎶ\t-12.0951\nᏲᏍᏙᏗᏱ\t-12.0951\n▁ᎠᏢᏆᏍ\t-12.0963\nᏃᏁᎸ\t-12.0966\nᏅᏯ\t-12.0967\nᏦᎯᏳᏒᎢ\t-12.0968\n▁ᎤᏂᏍᏆ\t-12.0972\nᏪᎭ\t-12.0974\nᏁᎳᎩᏉ\t-12.0977\n▁ᏗᎦᏂᏴ\t-12.0978\n▁ᏧᎬᏩ\t-12.098\n▁ᏳᏩᏛ\t-12.0982\n▁ᏓᎧᎿ\t-12.0986\nᏫᏚᏓᎢᏅ\t-12.0989\nᏯᏙᏤᎮᏍᏗ\t-12.0989\nᎦᏌᏬᎢ\t-12.0989\nᎦᏃᎸ\t-12.099\nᏲᏏᏌ\t-12.099\nᏄᎪᎢ\t-12.0991\n▁ᎤᏕᏒ\t-12.0994\nᏯᏍᏛᎾ\t-12.0995\n▁ᏱᏄᎾᏛᏁ\t-12.0996\nᏄᏍᏕᎢ\t-12.0999\nᏥᏎᎪᎩ\t-12.1\n▁ᏧᎾᎵᎪ\t-12.1\nᎴᏂᏙᎸᎢ\t-12.1002\n▁ᎠᎾᎵᏍᎪᎸᏗᏍ\t-12.1003\n▁ᎤᎾᏓᏛᏁ\t-12.1009\nᏬᏅ\t-12.1009\nᏚᎨ\t-12.101\nᏩᏕᏁᎴᎢ\t-12.1012\nᏁᏟᏴᎡᏗ\t-12.1013\nᏣᏯᏅ\t-12.1014\n▁ᎤᎸᏌ\t-12.1014\n▁ᏧᏓᏄ\t-12.1014\n▁ᎣᏥᏃᎮ\t-12.1015\n▁ᏓᏁᎶ\t-12.1015\nᏡᏓ\t-12.1016\n▁ᏚᏂᏣᎦ\t-12.1018\nᏓᏁᎶ\t-12.1019\nᏩᏂ\t-12.1021\nᏟᏍᏗᏍᎪᎢ\t-12.1021\nᏔᏍᎪᎢ\t-12.1025\nᏴᏈᏛ\t-12.1026\nᏯᏅᏓᏗᏍᎪ\t-12.1026\nᎬᏫᏳ\t-12.1028\n▁ᎤᏔᏕ\t-12.1034\n▁ᏱᏫᏨ\t-12.1034\n▁ᏚᏭᎪᏓᏁ\t-12.1035\n▁ᏣᎧᎵᎢ\t-12.1035\n▁ᎤᏍᏢᏂᏍ\t-12.1038\nᏬᎯᏳᏅ\t-12.1039\n▁ᎤᏁᎵᏤ\t-12.1041\nᎯᏳᏒᎾ\t-12.1043\n▁ᎤᏓᏠᏍ\t-12.1044\n▁ᎬᏬᏎ\t-12.1049\nᎾᏛᏁᏗᏱ\t-12.1049\n▁ᏚᏟᎶᏍᏓᏁᎴ\t-12.1049\n▁ᎤᏂᏲᎢ\t-12.1052\nᏥᎪᏗ\t-12.1053\nᏌᎳᏗ\t-12.1053\n▁ᎾᏅᏁ\t-12.1056\nᎾᏄᎪᏫ\t-12.1061\nᎣᏒ\t-12.1062\n▁ᏕᏍᏓ\t-12.1062\nᏍᏔᏁᎮ\t-12.1066\nᎱᏍᏕ\t-12.1066\nᏣᎬ\t-12.1067\n▁ᎤᏂᏄᎪᏤ\t-12.1068\nᏘᏃᎵ\t-12.1071\n▁ᎤᎾᏙᏓ\t-12.1073\nᏚᎳ\t-12.1076\nᏰᎵᏒᎩ\t-12.1077\n▁ᏣᏚᏓᎴ\t-12.1079\n▁ᎤᏍᏆᏂ\t-12.1079\nᏏᏙᎰ\t-12.1079\n▁ᏂᏍᏋᏁ\t-12.1079\nᏟᏴᎮᎢ\t-12.1081\nᏍᏆᏙᎾ\t-12.1082\nᏔᎩᏍᏗ\t-12.1082\nᎤᏍᏆᏂᎩ\t-12.1085\n▁ᏕᎫᎪᏗ\t-12.1086\n▁ᏂᏍᎩᏪᏎ\t-12.1088\n▁ᎱᏰ\t-12.1089\n▁ᎠᏂᏯᎡ\t-12.1089\n▁ᎠᏲᏞ\t-12.1092\n▁ᎦᏰᏥᏙ\t-12.1095\n▁ᏂᏓᏛ\t-12.1097\nᎧᎵᎵ\t-12.1099\n▁ᎤᎾᎴᎿᏫᏍ\t-12.1099\nᏁᏅᏒᎩ\t-12.11\n▁ᎤᎵᏍᏕᏍᏔ\t-12.1101\n▁ᎠᏓᏄᏖᏲ\t-12.1103\nᏣᏓᏂᎸᎩ\t-12.1107\n▁ᏚᎾᏄᎪᏫᏎ\t-12.1108\n▁ᎠᏂᏏᎾ\t-12.1109\n▁ᎠᏥᎸᏍᎩᏂ\t-12.1109\nᎬᏍᎪᎸᏁ\t-12.111\nᎤᏃᎴ\t-12.111\n▁ᎤᎾᏚᎵ\t-12.111\nᏍᏕᎸᏙᏓ\t-12.111\nᏍᏚᎸ\t-12.1111\n▁ᏚᎾᏚᏫᏍ\t-12.1111\n▁ᎠᎩᏲᎰ\t-12.1112\n▁ᎢᏓᎴᏂᏙ\t-12.1114\n▁ᏩᎫ\t-12.1119\nᏓᎦᏘᎴ\t-12.1123\nᎩᏂᏴᏗ\t-12.1127\n▁ᏥᏩᏂ\t-12.1127\nᏂᎬᏎᎲᎢ\t-12.1127\n▁ᎤᏕᏯᏙ\t-12.1128\n▁ᎠᎫᏬ\t-12.1129\n▁ᎤᎭᏲ\t-12.1129\n▁ᎢᏣᏓᏙᎵᏍ\t-12.1131\nᏍᎫᏕᏍᎬ\t-12.1133\n▁ᏗᏩᎾᎦᎳ\t-12.1133\nᎫᏓᎴᏏ\t-12.1133\nᎿᏩᏗᏒ\t-12.1134\n▁ᎡᏍᏓ\t-12.1136\nᎭᏲᎮ\t-12.1136\nᏖᎳᏕ\t-12.1136\nᏲᏎᎲᎩ\t-12.1137\nᏍᏗᏰᏕ\t-12.1137\n▁ᏓᎦᏛ\t-12.1138\nᏄᏍᏕ\t-12.1139\n▁ᏓᎵᏂᎪᎯᏍᏗᏍ\t-12.114\nᏑᎴᎥ\t-12.1141\nᎯᏍᏔᏁᎢ\t-12.1142\nᏍᎩᏓᏒ\t-12.1143\n▁ᏳᏣᏅᏓᏕ\t-12.1144\n▁ᎠᏂᎦᏘᏗᏍ\t-12.1146\nᎿᎷ\t-12.1147\nᏥᎨᏳᎭ\t-12.1148\n▁ᏥᏄᏛᏁ\t-12.1149\nᏛᏁᎸᎩ\t-12.1151\nᏍᎪᏂᎯ\t-12.1153\nᏂᎸᏫᏍᏓᏁᎸ\t-12.1157\n▁ᏱᏅᏩ\t-12.1157\nᏠᏏ\t-12.1158\n▁ᏗᏥᏯ\t-12.1159\nᏓᎦᎵᏍᏙᏔᏂ\t-12.116\n▁ᏥᏥᏯ\t-12.1162\nᏙᏩᏗᏍ\t-12.1163\n▁ᏱᏄᎾ\t-12.1164\nᎵᏍᎦᏍᏙᏔᏂ\t-12.1164\n▁ᎤᏃᎱ\t-12.1165\n▁ᏓᎩᎸᏫᏍᏓᏁ\t-12.1165\n▁ᏱᏭ\t-12.1166\nᎵᏍᏚᎸ\t-12.1166\nᏣᎢᏒ\t-12.1166\n▁ᎠᏂᏬᏂᏍᎨ\t-12.1167\nᎵᏍᏓᏴᏔᏂ\t-12.1167\n▁ᏴᎨᏣ\t-12.1169\nᏂᎨᎯᏙᎴᎢ\t-12.117\n▁ᏄᏛᎾ\t-12.1173\nᏓᏅᏓᏗᏍᏓ\t-12.1174\nᏦᏕ\t-12.1174\nᎩᏍᏕᎸᎯᏙᎸ\t-12.1178\nᏪᏎᎮᎢ\t-12.1179\n▁ᏩᏂᏴᎯ\t-12.1179\nᎬᏆᏛᎦᏁ\t-12.118\nᎪᎸᏛ\t-12.1181\nᎵᏙᎰ\t-12.1182\n▁ᎤᎾᏡ\t-12.1186\nᏃᎮᏢ\t-12.1187\nᏂᏪᏍᎨ\t-12.1187\nᎸᏉᏙ\t-12.1189\n▁ᏓᏕᏙ\t-12.119\n▁ᏂᏥᏯ\t-12.119\nᎪᏩᏛᎡᏗ\t-12.1191\nᏂᎨᏳ\t-12.1191\nᎬᏍᎦᎳ\t-12.1193\n“\t-12.1194\n▁ᏃᎦᎵᏍᏔ\t-12.1194\nᎦᏙᎨ\t-12.1194\nᏴᎡᎲ\t-12.1194\nᏓᏁᏣᏍᏚ\t-12.1195\nᎼᏂ\t-12.1195\nᏓᏛᏁᎲᎩ\t-12.1196\nᏍᏕᎸᎲ\t-12.1196\nᏴᎯᎲ\t-12.1198\n▁ᎤᏂᏲᎰ\t-12.1198\nᏅᎦᎸᏗ\t-12.1203\nᏛᏗᏍᎬ\t-12.1207\nᎫᎩ\t-12.1208\nᏫᏍᏗᏍᎩ\t-12.121\n▁ᏓᎾᏟ\t-12.1212\n▁ᏚᏂᏰ\t-12.1213\n▁ᏱᏂᏨ\t-12.1213\nᏩᎾᎦᎶ\t-12.1213\n▁ᏂᏍᏆᏛᏁ\t-12.1213\nᏣᏚᎵᏍᎨᏍᏗ\t-12.1214\nᏂᎾᏫ\t-12.1215\nᎭᏂᎸ\t-12.1215\n▁ᎢᏣᎨᏳ\t-12.1215\n▁ᎤᎦᎾᏬ\t-12.1215\nᏰᎸᏍᏗ\t-12.1215\nᏟᏂᎬᏁᎸ\t-12.1216\n▁ᏫᎦᎶᎯ\t-12.1216\nᎧᏁᏗᏱ\t-12.1216\n▁ᎤᎾᎴᏫᏍ\t-12.1217\nᎪᏓᏁᎯ\t-12.1218\n▁ᎠᏇᎷ\t-12.1219\nᏟᏴᎡ\t-12.1223\nᏧᏁᏍᎨᎮᎢ\t-12.1226\nᏚᏂᎳᏫᏤ\t-12.1226\nᎦᏄᎳᏥ\t-12.1226\n▁ᎠᏛᏅᎢᏍᏗ\t-12.1226\nᎣᎨᏅ\t-12.1227\nᏄᎸᎲ\t-12.1228\nᏧᏓᎴᏅ\t-12.1229\nᏘᏅᏍᏓ\t-12.1229\nᎤᏛᏎᎢ\t-12.1229\nᎭᎾᏬ\t-12.123\nᏘᏲᎸ\t-12.1232\nᎶᏁᎢ\t-12.1232\nᏓᏟᎶᏍᏗᏍᎬ\t-12.1233\n▁ᎥᏥᏯ\t-12.1233\nᎦᏕᎶᎣᏍ\t-12.1234\nᎾᎾᎵᏍᏗ\t-12.1234\nᎩᎪᎲᎯ\t-12.1235\n▁ᏗᏤᏍᏙ\t-12.1235\nᏂᎨᏐ\t-12.1235\nᎬᏬᏎᎸᎩ\t-12.1236\nᎿᎥ\t-12.1236\nᏓᏥᏯᏅᎯ\t-12.1237\nᎩᎸᏂ\t-12.1239\nᏣᎪᏍᏗ\t-12.124\nᏙᏯ\t-12.124\nᏓᏍᏔᏅᏅ\t-12.124\nᏍᎩᎾᎾ\t-12.1241\nᏓᏰᏙᎳᏛ\t-12.1241\nᎤᏁᎫ\t-12.1241\nᎩᎶᎯᏍᏗ\t-12.1241\nᏄᏩᏂᏌᏅ\t-12.1243\nᏕᎾᏓᎪᎲᏳ\t-12.1243\n▁ᏗᎦᎸᏫᏍ\t-12.1244\n▁ᎢᎤᎾᏨᏎ\t-12.1244\n▁ᏚᎧᎿᏩᏗᏙᎮ\t-12.1244\n▁ᎤᏅᏩᏁ\t-12.1244\n▁ᎨᏣᏡᏗᏍᎬ\t-12.1244\n▁ᏧᎩᏥᏍᎪ\t-12.1244\n▁ᎠᎾᎵᏅᏢ\t-12.1244\n▁ᏭᎩᎸᏁ\t-12.1244\n▁ᎤᏍᎦᏅᏥᏙᎸ\t-12.1244\nᎠᎾᏓᎪᎾᏗᏍᎬ\t-12.1244\nᏄᎾᏓᎴ\t-12.1244\n▁ᏧᏲᏏᏍᎨ\t-12.1245\n▁ᎤᏁᎢᏍᏓᏁᎸ\t-12.1245\nᏚᏳᎪᏛ\t-12.1245\nᏍᎪᏂᏍᏗ\t-12.1245\n▁ᏄᏍᏆᏂ\t-12.1245\nᏬᎯᏳᏁ\t-12.1245\n▁ᏂᏚᏛᏁᎴ\t-12.1246\n▁ᏙᏗᎧᏂᏍᎬ\t-12.1246\nᎵᏍᏓᏴᏁ\t-12.1246\nᎤᏂᎶᏒ\t-12.1246\nᎤᏁᎢᏍᏔᏅ\t-12.1246\nᎤᎾᏛᎪᏗᏱ\t-12.1246\nᎪᎯᏳᎲᏍᎪ\t-12.1247\nᏓᎴᏍᎬᎢ\t-12.1247\n▁ᎢᏥᎾᏰᏍᎬ\t-12.1248\nᏙᏓᎦᏥ\t-12.1248\nᎤᎵᏍᏙᏔᏅ\t-12.1248\nᏍᎩᏃᎯᏏ\t-12.1248\n▁ᎠᎩᎵᏲᎬ\t-12.125\n▁ᎠᎩᏯᎥ\t-12.125\nᎤᎵᏍᎨ\t-12.125\nᏓᏳᎶᏒ\t-12.1251\nᎤᎦᏃᏩ\t-12.1251\nᏅᏁᎭ\t-12.1251\nᎠᏂᎪᏕᏍᎩ\t-12.1251\nᏧᏓᎴᏁ\t-12.1251\nᎠᎦᏴᎵ\t-12.1251\nᎤᎵᏍᏆᎸᏗ\t-12.1251\nᏚᎾᏙᎥ\t-12.1252\nᏦᎴᏍᏗ\t-12.1252\n▁ᏫᎬᏩᏴᏔᏁ\t-12.1252\nᎠᏥᎸᏉᏗᏳ\t-12.1252\n▁ᏫᏓᎧᏁ\t-12.1252\nᏥᏍᏕᏥ\t-12.1252\nᎤᎾᏄᎪᏫᏎᎢ\t-12.1252\nᏗᎵᏍᏓᏴᏗᏱ\t-12.1252\nᎡᎳᏆᏗ\t-12.1252\n▁ᏧᏂᎳᏫ\t-12.1253\nᏕᎤᏙᎥ\t-12.1253\nᏓᏗᏍᏗᏱ\t-12.1253\n▁ᎤᏁᎳᏫᏎᎲ\t-12.1253\n▁ᏕᎦᎸᏫᏍᏓᏁᎸ\t-12.1253\n▁ᏥᏮᎦᏙ\t-12.1253\n▁ᏭᏩᎦᏘᏗᏒ\t-12.1253\n▁ᏄᎾᏛᎿᏕᎬ\t-12.1253\n▁ᎤᏘᏃᎴ\t-12.1253\n▁ᎠᎩᏐᏅ\t-12.1253\n▁ᏨᏓᎸ\t-12.1254\nᏄᎾᏛᏅ\t-12.1254\nᏠᎨᏏ\t-12.1254\n▁ᏥᏂᎨᏎ\t-12.1254\nᎢᎪᎯᏓ\t-12.1254\nᏣᏅᏓᏕ\t-12.1255\n▁ᎣᎩᎪᎲ\t-12.1255\nᏂᎪᎯᎸᎾ\t-12.1255\n▁ᎤᏗᏔᎮ\t-12.1255\nᎨᏥᏍᏕᎸᏗ\t-12.1255\n▁ᏅᏓᎬᏩᎾ\t-12.1256\nᎡᏆᎭᎻ\t-12.1256\n▁ᏕᏥᎧᎿᏩᏗᏒ\t-12.1256\n▁ᏚᏪᎧᏁ\t-12.1256\n▁ᎣᏥᏃᎮᏍᎬ\t-12.1256\n▁ᎤᏅᏓᏗᏗᏒ\t-12.1257\n▁ᏧᎾᏄᎪᏫᏎᎴ\t-12.1257\nᏧᎬᏩᎶᏗ\t-12.1257\n▁ᏱᎪᎵᎨ\t-12.1257\n▁ᏓᏓᏁᎳᏗᏒ\t-12.1257\n▁ᏗᏣᎸᏫ\t-12.1258\n▁ᏗᏆᏓᎴᏅ\t-12.1258\nᏂᎬᎾᏛ\t-12.1258\n▁ᎤᏛᎦᏍᏔᏁ\t-12.1258\n▁ᎠᎾᏓᏩᏛᎯᏙ\t-12.1258\nᎤᏁᎦ\t-12.1259\n▁ᎤᏟᏍᏔ\t-12.1259\nᏍᏛᏗᏍᎨ\t-12.1259\nᏃᏈᏏ\t-12.1259\nᏄᏂᏪᏎᎢ\t-12.1259\nᏡᎩ\t-12.126\nᏣᎵᏍᎪᎸᏓᏁᎸ\t-12.126\nᏅᎢᏍᏔᏅᎯ\t-12.126\nᏁᎫᏥᏛ\t-12.1261\nᏳᏩᏁᎦ\t-12.1261\nᎡᏒᎭ\t-12.1261\nᎦᏂᏴᏛ\t-12.1261\nᏩᎫ\t-12.1262\nᏧᏁᎬ\t-12.1262\nᏚᎳᏑᏝ\t-12.1262\nᏚᏍᏆᏃᏴ\t-12.1262\nᎦᏙᎬᎩ\t-12.1262\nᎤᎾᏣᏅ\t-12.1262\nᎶᏄᎮᏗ\t-12.1262\n▁ᏚᏠᏒᏎ\t-12.1263\nᏛᏅᎢᏍᏔᏁ\t-12.1263\nᏩᎶᏏ\t-12.1263\n▁ᎤᏓᏙᎵᏍᏓᏁᎴ\t-12.1263\n▁ᎤᏍᏆᏂᎪᏔᏁ\t-12.1263\nᎬᏬᎵ\t-12.1263\n▁ᏕᏣᏓᏘᎾᎥ\t-12.1263\n▁ᏓᏂᏬᏂᏍᎬ\t-12.1263\nᎠᏥᎸ\t-12.1264\n▁ᎤᏓᏙᎵᏣ\t-12.1264\nᎩᎨᏳᏒᎢ\t-12.1264\nᎮᎵᎠ\t-12.1264\n▁ᏧᏂᎦᏴᎵ\t-12.1264\nᏚᏬᏁᏔᏁᎢ\t-12.1264\n▁ᏂᏚᏅᏁᎴ\t-12.1265\nᏗᎪᏢ\t-12.1265\nᏲᏍᏔ\t-12.1265\nᎵᏥᏙᏁᎭ\t-12.1266\nᎤᏁᎬ\t-12.1266\nᏯᏘᏅᏍᏗ\t-12.1266\nᏍᎩᏯᏘᏃ\t-12.1266\nᎢᏳᏍᏘ\t-12.1267\n▁ᎩᎾᎵ\t-12.1267\nᏅᎥᏍᎩ\t-12.1267\nᏓᏴᎳᏔᏍ\t-12.1267\n▁ᏚᏚᎪᏔᏅ\t-12.1267\nᎾᏘᏲ\t-12.1268\nᎾᏫᏛᏛ\t-12.1268\nᎮᏂᎵ\t-12.1268\n▁ᎬᏩᏕᏁᎴ\t-12.1269\n▁ᎠᏂᎷᎨ\t-12.1269\nᎭᏗᎭ\t-12.1269\nᎤᏲᏨ\t-12.127\nᏗᎧᎿᏩᏗᏙᎯ\t-12.127\n▁ᏧᏆ\t-12.1271\nᎠᏓᏅᏙ\t-12.1272\nᏓᎵᏂᎪᎯᏍᏙᏗ\t-12.1272\n▁ᎾᏥᏪᏎᎴ\t-12.1272\nᏣᎬᏫᏳᎯ\t-12.1272\n▁ᎦᏅᏬ\t-12.1273\n▁ᎠᏥᏰᎸᎾᏁᎴ\t-12.1273\nᏂᏤᎷᎯ\t-12.1273\nᏍᎪᎸᏙᏗ\t-12.1273\n▁ᏣᎵᏂᎩ\t-12.1274\n▁ᎣᎦᏓ\t-12.1274\nᏧᏓᎴᏅᏓ\t-12.1274\n▁ᎬᏩᎪᎮ\t-12.1274\nᏏᎾᏌᏅ\t-12.1274\n▁ᎤᏂᏲᏠᎯᏎᎸ\t-12.1275\n▁ᏂᎦᏥᏪᏎᎸ\t-12.1275\n▁ᎾᏆᏛᎿᏕᎬ\t-12.1275\nᏗᎦᎶ\t-12.1275\n▁ᏲᏣ\t-12.1276\n▁ᎯᎦᏍᎦᏂ\t-12.1277\n▁ᏧᏍᏆᏂᎪ\t-12.1277\nᏦᏓᎸ\t-12.1277\n▁ᏫᎾᎩ\t-12.1277\nᏓᏙᎵᏣᏘ\t-12.1277\nᎠᎩᎪᏩᏛᏗᏱ\t-12.1278\nᎤᎵᎮᎵᏍᏗ\t-12.1278\n▁ᎤᏪᏙᎴ\t-12.1278\nᏍᎦᏅᏥᏙᎸᎢ\t-12.1278\nᎩᏍᏕᎸᎯᏓᏍᏗ\t-12.1279\nᏌᎳᏛ\t-12.1279\nᏖᎸᏂ\t-12.128\nᏥᎨᏳ\t-12.128\nᎾᏛᏁᎮ\t-12.128\nᏁᎥᎭ\t-12.1281\nᏩᏘᏍᎬᎾ\t-12.1281\nᏐᎴᏍᏗ\t-12.1281\n▁ᎠᎵᏍᏆᏗᏍᎬ\t-12.1281\nᏖᏍᎬ\t-12.1282\n▁ᎤᏁᏙᎴ\t-12.1282\n▁ᏗᎦᏙᎨ\t-12.1282\nᎹᏅ\t-12.1282\n▁ᏫᏗᎬᏩ\t-12.1282\n▁ᏣᏁᎫ\t-12.1282\n▁ᎤᏬᏂ\t-12.1282\n▁ᏓᏰᏙᎳ\t-12.1283\n▁ᏚᏍᏓᏩᏛᏎ\t-12.1283\nᎢᏧᎳᎭ\t-12.1283\n▁ᎤᏪᏙ\t-12.1283\n▁ᎤᎾᏚᎵᏍᎪ\t-12.1283\nᎵᏍᎦᏂᏍᏛ\t-12.1283\n▁ᏫᏓᏆᎧᎾᏅ\t-12.1283\nᎾᏓᎵᏁᎯᏕ\t-12.1283\n▁ᎤᏓᏏᏁ\t-12.1283\nᎦᎾᏏᏍᎩ\t-12.1284\n▁ᎤᏂᏍᎦᎴ\t-12.1285\nᎬᏬᎯᏳ\t-12.1285\n▁ᏭᏣᏅ\t-12.1285\n▁ᎡᎦᎫᏴ\t-12.1285\nᏔᎵᏁ\t-12.1285\nᏍᎩᎾᏛ\t-12.1285\n▁ᎤᎵᏖᎸ\t-12.1286\nᏍᎩᏙᎵᎩ\t-12.1286\n▁ᎤᏕᏁᎴ\t-12.1286\n▁ᎤᎾᏓᏙᎵᏍᏓᏁᎸ\t-12.1286\nᏓᏪᎳᎩᏍᎬ\t-12.1286\n▁ᏭᏂᏴᎴ\t-12.1287\n▁ᎤᏂᏍᏆᏂᎪᏒ\t-12.1287\nᏗᏥᏁᏟᏴ\t-12.1288\n▁ᎨᏥᏌ\t-12.1288\n▁ᎴᎻ\t-12.1288\n▁ᏄᎾᏛᏁ\t-12.1288\nᎦᎾᏬᏍᎬ\t-12.1288\nᏲᎱᏏᏕᎾ\t-12.1288\nᎵᏱᎵᏕ\t-12.1288\n▁ᎣᏤᎲ\t-12.1289\n▁ᏧᎾᏤ\t-12.1289\n▁ᎤᎾᎦᏎᏍᏛ\t-12.129\n▁ᏂᏚᎵᏍᏔᏅ\t-12.129\nᏄᏩᏁᎴ\t-12.1291\n▁ᏚᏬᏢᏅ\t-12.1291\n▁ᎭᏓᏅ\t-12.1291\n▁ᎿᏛ\t-12.1291\n▁ᏧᎾᎵᏂ\t-12.1291\nᎯᎪᏩᏛ\t-12.1291\nᏴᏓᏆᎶᏍᎬ\t-12.1292\nᏃᎯᎸᏍᏔ\t-12.1292\n▁ᎤᏗᎴᎲ\t-12.1292\n▁ᏄᎵᏂᎬ\t-12.1293\n▁ᎤᏁᏟᏴ\t-12.1293\nᎦᏰᎬᏍᏔ\t-12.1293\nᏅᏍᎦᎸ\t-12.1294\n▁ᎤᎩᏨ\t-12.1294\nᏨᏏᏰᏗ\t-12.1294\n▁ᎤᏬᏪᎳᏅ\t-12.1294\nᎵᏠᏯᏍᏕᏍᏗ\t-12.1294\nᏆᏓᏅᏖᎸ\t-12.1294\nᏗᎦᎶᏗ\t-12.1295\nᏴᏓᏆᎶᏍᎩ\t-12.1295\nᏩᏗᏎᎢ\t-12.1296\n▁ᎠᏩᏘᏍᎪ\t-12.1296\nᏎᎦᏨ\t-12.1296\nᏙᎴᏆᏍ\t-12.1297\nᏄᎯᏍᏗᏍᎬ\t-12.1297\n▁ᏧᏃᏪᎳᏅ\t-12.1298\n▁ᎤᎾᎳᏍᏓᎡ\t-12.1298\n▁ᏄᏂᏪ\t-12.1298\nᏂᏙᎴ\t-12.1298\n▁ᏥᎧᏁ\t-12.1298\nᏓᎾᏏᏂ\t-12.1298\n▁ᏥᏃᎪ\t-12.1299\n▁ᏧᏂᎷᏫᏍᏔᏁ\t-12.1299\n▁ᏓᎾᏕᏲᎲᏍ\t-12.1299\n▁ᎤᎵᏨᏓᏆ\t-12.1299\nᎵᏍᏙᏰᏗ\t-12.1299\nᎵᏏᎲᏎ\t-12.1299\nᎾᏂᎩᏒ\t-12.13\n▁ᎠᎦᎫᏴᎡ\t-12.13\nᎦᏟᎮ\t-12.13\n▁ᏚᏅᏩᏅ\t-12.13\n▁ᏚᎵᏦ\t-12.13\nᏓᏴᎳᏔᏅ\t-12.1301\n▁ᏧᎷᏫᏍᏔᏁ\t-12.1301\n▁ᎬᏩᏛᎦᏁᎸ\t-12.1301\n▁ᎢᏳᏕᏘᏴ\t-12.1301\n▁ᎤᎸᏓᎸᎥᏍ\t-12.1302\n▁ᎭᏙᎴᎰ\t-12.1302\nᏌᎺᎵ\t-12.1303\n▁ᎠᏂᏐᏢᎢᏍᏗᏍ\t-12.1303\nᎬᎭᎸᏛ\t-12.1304\nᎤᎵᎮᎵ\t-12.1304\n▁ᎧᏁᎨ\t-12.1304\nᎾᏕᎲᏍᎬ\t-12.1305\n▁ᎠᎾᎦ\t-12.1305\n▁ᎭᎵᎮᎵ\t-12.1305\n▁ᎢᎧᏁᏨ\t-12.1305\n▁ᎬᏩᏂᏴᎲ\t-12.1305\nᏬᏍᎩᎵ\t-12.1305\nᎵᏍᏗᏰᏓᏁ\t-12.1305\nᏅᏧᎵᏍᏙᏔᏅ\t-12.1305\nᏬᏥ\t-12.1306\nᏬᏁᏗᏍᎨ\t-12.1306\n▁ᎤᏘᏴ\t-12.1306\n▁ᏙᎩᎾᏍᎩᏓᏒ\t-12.1306\n▁ᎢᏳᏛᏁ\t-12.1306\nᎵᏃᎮᏗᏍᎬ\t-12.1306\nᏑᎵᎪᏨᎩ\t-12.1307\nᎵᏂᎪᎯᏍᏗ\t-12.1307\n▁ᏙᏦ\t-12.1307\nᏕᏯᏔᏁᎮ\t-12.1308\nᎠᎦᏛ\t-12.1308\nᎷᎯᏍᏔᏅ\t-12.1308\n▁ᏗᎦᎳᏫ\t-12.1309\nᏂᏄᎪᏤᎢ\t-12.131\nᏫᏌᏅ\t-12.131\n▁ᎬᏯᎵᏃᎮᏙᏗ\t-12.131\nᏲᏤᎾ\t-12.131\nᏗᎩᏯᏍᏗ\t-12.1311\nᏗᎴᎩ\t-12.1311\n▁ᎾᏥᏪᏎ\t-12.1311\nᏯᏆ\t-12.1311\nᏰᏌᏛᎢ\t-12.1312\nᎾᏄᎪᏥ\t-12.1312\nᎬᎭᎷᏯᏍ\t-12.1312\n▁ᎢᏥᎩᎵᏲᎢᏍᏗ\t-12.1313\n▁ᏱᏕᏣᏓ\t-12.1313\n▁ᎥᎤ\t-12.1313\n▁ᎢᏯᎩᏪᏍᏗ\t-12.1313\n▁ᏚᏃᏕ\t-12.1313\n▁ᏚᏂᎧᏅ\t-12.1314\n▁ᎤᎾᎵᏖᎸ\t-12.1314\nᎧᏍᎨᏂ\t-12.1314\n▁ᎻᏗᏂ\t-12.1315\n▁ᎢᎯᏴᏁᏗ\t-12.1315\nᏭᏂ\t-12.1315\nᏓᏅᏍᎨ\t-12.1316\nᎨᎳᏗ\t-12.1316\n▁ᏗᎪᏑᎴᏗ\t-12.1316\nᏛᏓᏍᏓᏁᎮ\t-12.1317\nᎷᏫᏍᏓᏁᏗ\t-12.1317\n▁ᏫᎨᏥᏯᏅ\t-12.1317\n▁ᎠᎵᏍᎦ\t-12.1317\n▁ᏕᎬᏩᎳᏫ\t-12.1317\n▁ᎣᎾᏫ\t-12.1317\nᎾᏓᏑᏰ\t-12.1317\n▁ᏗᏣᎵᏂᎪᎯᏍᏙᏗ\t-12.1318\nᏅᎵᏰᎥ\t-12.1318\n▁ᎤᎵᏍᏇᏚ\t-12.1319\nᎷᏤᎢ\t-12.1319\n▁ᏅᏓᎬᏩᏓᎴ\t-12.1319\nᏕᎭᏲᎲ\t-12.1319\n▁ᎡᎳᏆ\t-12.1319\n▁ᎠᎩᏍᏛᏗ\t-12.1319\nᏍᏆᎾᎳᏗᏍᏗ\t-12.132\n▁ᏚᏓᏓᎴ\t-12.132\nᎦᎵᏍᏗᏍᎪᎢ\t-12.132\n▁ᎥᏓᏗ\t-12.132\n▁ᎢᏣᏓᏅᏔᏩᏕ\t-12.132\nᏪᎵᏎᎢ\t-12.132\nᎪᏪᎵᎯ\t-12.132\nᏘᏅᏎ\t-12.132\nᏬᎯᏤ\t-12.1321\n▁ᎾᏯᏛᎡ\t-12.1321\n▁ᏫᏥᎷᏨ\t-12.1321\nᏂᏢᎩ\t-12.1321\nᏣᏪᏐᎸᏍᏓ\t-12.1321\nᏍᏓᏩᏕᏒᎭ\t-12.1322\n▁ᏄᏂᎬᏫᏳ\t-12.1322\n▁ᏚᏬᏢᏔ\t-12.1322\nᏍᏓᏲᏒ\t-12.1322\n▁ᏄᎬᏫ\t-12.1322\nᎦᏕᎣᏍᎦ\t-12.1323\n▁ᎤᏒᎦᎸ\t-12.1323\nᎴᏔᏅᎢ\t-12.1323\nᏕᏘᏴᏌᏗᏒ\t-12.1323\n▁ᏗᏣᏓᎴᏅ\t-12.1324\n▁ᎤᎵᏍᎪᎸᏔᏅ\t-12.1324\nᏭᎷᏤᎢ\t-12.1324\n▁ᎤᎾᏄᎪᏥ\t-12.1325\nᏍᏕᎯ\t-12.1325\nᏍᏉᏂᎪᏗ\t-12.1325\nᎷᎸᏗᏱ\t-12.1325\n▁ᎤᏣᎴᏍ\t-12.1326\nᏂᏙᎾᎡ\t-12.1326\n▁ᎤᏍᎦᎸ\t-12.1326\nᏕᏍᏗᏱ\t-12.1326\nᎦᎫᏴᏓᏁᏗ\t-12.1326\n▁ᎬᏆᏛᏁᏗ\t-12.1326\nᏖᎸᏂᎸ\t-12.1326\nᏕᎵᏙ\t-12.1327\nᏙᏣᏁ\t-12.1327\n▁ᎡᏥᏙᎵᏍᏗ\t-12.1327\nᎾᎥᏂ\t-12.1327\nᎦᎵᏂᎪᎯ\t-12.1328\n▁ᏧᏪᏙᎵᏍᏗ\t-12.1328\n▁ᎠᏆᎴᏂᏓᏍᏗ\t-12.1328\nᎦᏯᎷᎥᏍᎩ\t-12.1328\n▁ᎢᏧᏅᏁᏗ\t-12.1328\nᏅᎵᏰᏗ\t-12.1328\n▁ᎤᏬᏯᏁ\t-12.1329\nᏥᎵᏦ\t-12.1329\n▁ᎬᎩᏁᏉᏤ\t-12.1329\n▁ᎠᎫᎢᏍᏗᏍ\t-12.1329\n▁ᏙᏗᏍᎩᏯᏘ\t-12.1329\nᏌᎳᏓᏁᎢ\t-12.133\n▁ᏫᎨᏥᏲᎵ\t-12.133\nᏃᏍᎩᏒᎢ\t-12.133\n▁ᏕᎭᏕᏲᎲᏍ\t-12.1331\nᏔᎧᏅᎦ\t-12.1331\n▁ᏳᏣᏅ\t-12.1331\n▁ᎬᏬᎳᏕᏍ\t-12.1331\n▁ᎩᏯᏎ\t-12.1331\n▁ᎤᏂᏔᎳ\t-12.1331\n▁ᏭᏔᎷ\t-12.1331\nᎦᏪᎠ\t-12.1331\n▁ᎠᏓᎾᏫᏗ\t-12.1332\n▁ᏕᏥᎧᎿᏩᏗ\t-12.1332\nᏩᎯᏎᎸ\t-12.1332\nᎳᏁᎸ\t-12.1332\n▁ᏓᎭᏬᎢ\t-12.1332\nᎭᎷᏰ\t-12.1332\nᏍᏆᏗᏍᎬᎾ\t-12.1332\nᏍᏛᏗᏍᏔᏅ\t-12.1333\nᏣᎸᏫᏍᏓᏁᎮᏍᏗ\t-12.1333\n▁ᎡᎻᏂᏓ\t-12.1333\nᏥᏍᏓᏱᏕᎵ\t-12.1333\n▁ᎤᎦᎾᏏ\t-12.1333\n▁ᏁᏓᏂ\t-12.1333\n▁ᏕᏣᏓᏘᎾ\t-12.1333\n▁ᎢᏣᎢᏒ\t-12.1333\nᏞᏫᏒ\t-12.1334\nᏢᏆᏍᏙᏗ\t-12.1334\nᏟᏍᏕ\t-12.1334\nᏅᎫᏛᎢ\t-12.1334\nᏈᎷ\t-12.1334\n▁ᎠᏥᎤᏍᏕᏎᎸ\t-12.1334\n▁ᎯᏍᎫ\t-12.1334\nᏯᏘᏅᏍᏔ\t-12.1335\nᏚᏫᏍᏛ\t-12.1335\n▁ᏕᏣᎧᎿᏩᏗᏙ\t-12.1335\n▁ᎢᏯᎩᏳᏍ\t-12.1335\nᏚᏚ\t-12.1335\n▁ᎦᏕᎶ\t-12.1336\nᎵᏓᎩᏛ\t-12.1336\nᏔᏕᎩᏍᎨ\t-12.1336\nᎾᏫᏛᎯ\t-12.1336\nᏍᏓᏩᏕᎦ\t-12.1336\nᏪᏐᎸᏍᏔ\t-12.1336\n▁ᏙᏓᏲ\t-12.1336\nᏔᏍᎩᏍᎩ\t-12.1337\n▁ᏱᏗᏧᎪ\t-12.1337\n▁ᏗᎦᏅᏍᎨ\t-12.1337\nᏛᏛᎲᎦ\t-12.1337\n▁ᏥᏕᎪᏪ\t-12.1337\nᏢᏈᏍᏙᏗ\t-12.1337\nᎢᏓᏙᎴᎰ\t-12.1338\nᏕᏯᏙᏔᏂ\t-12.1338\nhi\t-12.1338\n▁ᎠᏍᏆᏂᎪᎯ\t-12.1338\n▁ᏚᏟᏂᏆ\t-12.1338\nᏴᏌᏗᏒ\t-12.1338\nape\t-12.1338\n▁Ch\t-12.1338\nᏓᎿᏍᏆᎶᏍᏗ\t-12.1338\nᎦᎴᏯᏍᎪ\t-12.1338\n▁ᎠᏩᏂᎦᎳ\t-12.1338\n▁ᎨᏣᏔᏲᏎ\t-12.1338\n▁ᏂᏚᏬᏚ\t-12.1338\n▁ᏗᎦᎷᏫᏍᏔᏅᏗ\t-12.1338\n▁ᏚᎷᏆᏗᏅ\t-12.1338\n▁ᏚᏂᏄᏪᏒ\t-12.1338\n▁ᏫᏰᏣᏓᎢ\t-12.1338\nᎢᏗᎬᏤᎵᏛ\t-12.1338\nᎤᎸᏕᎦ\t-12.1338\nᎦᏌᏯᏍᏛᎾ\t-12.1338\nᎨᎪᏪᎶᏔᏅᎯ\t-12.1338\nᎩᎷᏫᏍᏔᏏ\t-12.1338\nᎭᎴᏫᏍᏔ\t-12.1338\nᎭᏓᎾᏫᏓ\t-12.1338\nᎳᏅᏓᏗᏏ\t-12.1338\nᎵᏂᎬᏁᎭ\t-12.1338\nᎵᏍᎫᎭᏴ\t-12.1338\nᎵᏍᏇᏔᏬ\t-12.1338\nᎵᏍᏕᎸᏙᏔᎾ\t-12.1338\nᎺᎵᎩᏌᏕᎩᏃ\t-12.1338\nᎾᏗᏔᎰᏅ\t-12.1338\nᎾᏙᎯᏳᎾᏁᏗ\t-12.1338\nᏂᎦᏥᏯᏛᏁᎰ\t-12.1338\nᏂᏅᎦᎴᎰᏅ\t-12.1338\nᏂᏆᏘᎵ\t-12.1338\nᏂᏗᏥᏲᏕᏍᏗᏍᎬᎾ\t-12.1338\nᏃᎯᎵᏣᏁ\t-12.1338\nᏅᏔᏗᏘᏍᎬ\t-12.1338\nᏍᏆᏂᎪᏎᎴ\t-12.1338\nᏑᏰᏍᎬ\t-12.1338\nᏓᎦᏕᎶᎣᏏ\t-12.1338\nᏓᏓᏏᎾᎲᏍᏙᏗ\t-12.1338\nᏓᏕᏘᏴᎮᎬ\t-12.1338\nᏔᏕᎦᏅᎩ\t-12.1338\nᏕᎦᎵᎩᎡᎮᎢ\t-12.1338\nᏖᎡᎯᏍᏗᏍᎨᎢ\t-12.1338\nᏙᏛᎪᏄᎶᏏ\t-12.1338\nᏚᏂᏍᏔᏲᎳ\t-12.1338\nᏣᎵᏂᎪᎯᏍᏔᏂ\t-12.1338\nᏥᏔᏲᎯᎭ\t-12.1338\nᏥᏥᏃᎯᏍᏓ\t-12.1338\nᏥᏮᏗᎦᎶᏏ\t-12.1338\nᏯᏓᏴᎡᎵ\t-12.1338\nᏲᎰᏎᎵ\t-12.1338\n▁Po\t-12.1338\n▁ᎠᎦᎫᏴᏓᏁᎮᏍᏗ\t-12.1338\n▁ᎠᎦᏔᏔᏅᎥᏍᎩ\t-12.1338\n▁ᎠᎧᏖᏃᎮ\t-12.1338\n▁ᎠᎾᏁᎳᏗᏍᎪᎢ\t-12.1338\n▁ᎠᎾᏁᏢᏔᏂᏒᎢ\t-12.1338\n▁ᎠᏂᎧᏔᎲ\t-12.1338\n▁ᎠᏂᎻᏗᏯᏂ\t-12.1338\n▁ᎠᏂᏃᏔᏂᏙᎯ\t-12.1338\n▁ᎠᏃᏢᏅᎥᏍᎬᎢ\t-12.1338\n▁ᎠᏆᏓᏙᎵᏍᏔᏅ\t-12.1338\n▁ᎠᏍᎪᏂᏗᏢ\t-12.1338\n▁ᎠᏍᎫᏕᏍᎪᎢ\t-12.1338\n▁ᎠᏒᎾᏘᎶᎥᎯ\t-12.1338\n▁ᎠᏓᏁᏤᎯ\t-12.1338\n▁ᎠᏛᏒᎥᏍᎩ\t-12.1338\n▁ᎠᏜᏩᏍᏗᏍᎨᏍᏗ\t-12.1338\n▁ᎠᏥᏍᏛᏗᏍᏗᏍᎬᎢ\t-12.1338\n▁ᎠᏯᏍᏜᏗᏍᎩ\t-12.1338\n▁ᎡᎵᎣᏈᎦ\t-12.1338\n▁ᎢᎤᏄᎪᏨ\t-12.1338\n▁ᎢᎦᎤᏘᏍᏛ\t-12.1338\n▁ᎢᏍᎩᏌᏛᎥᏍᎦ\t-12.1338\n▁ᎢᏍᏛᎨᏳᎢ\t-12.1338\n▁ᎢᏣᏚᎸᏗᏱ\t-12.1338\n▁ᎢᏣᏠᎾᏍᏛ\t-12.1338\n▁ᎢᏥᎾᏝᎾᎥ\t-12.1338\n▁ᎢᏨᏰᎳᏗᏙᎮᏍᏗ\t-12.1338\n▁ᎢᏨᏰᏯᏔᏅᎢ\t-12.1338\n▁ᎢᏯᏟᎶᎥᎯ\t-12.1338\n▁ᎢᏰᏣᏛᏁᏗ\t-12.1338\n▁ᎢᏲᏨᏴᏁᏗᏱ\t-12.1338\n▁ᎣᎦᎵᏥᏙᏗᏱ\t-12.1338\n▁ᎣᏁᏏᏉᎳ\t-12.1338\n▁ᎤᎦᏎᏍᏕᎢ\t-12.1338\n▁ᎤᎧᏲᏐᏅ\t-12.1338\n▁ᎤᎩᎳᏫᏎ\t-12.1338\n▁ᎤᎵᏍᏔᏴᏃᏁᏍᏗ\t-12.1338\n▁ᎤᎷᏦᏅᎯ\t-12.1338\n▁ᎤᎾᎦᎰᏍᏔᏅ\t-12.1338\n▁ᎤᎾᏙᎴᎨᏎ\t-12.1338\n▁ᎤᏁᏧᏥᏛ\t-12.1338\n▁ᎤᏂᎦᏘᏕᎢ\t-12.1338\n▁ᎤᏂᎪᎯᏙᎸᎯ\t-12.1338\n▁ᎤᏂᎪᏁᎶᎯᏌᏘ\t-12.1338\n▁ᎤᏂᏍᏈᏍᏓ\t-12.1338\n▁ᎤᏂᏐᏢᎢᏍᏔᏅ\t-12.1338\n▁ᎤᏂᏔᎳᏬᏎᎢ\t-12.1338\n▁ᎤᏃᎱᎦᏂᎸ\t-12.1338\n▁ᎤᏐᏢᎢᏍᏔᏅ\t-12.1338\n▁ᎤᏓᏑᏰᎢ\t-12.1338\n▁ᎤᏓᏥᏃᎯᏍᏔᏅ\t-12.1338\n▁ᎤᏓᏩᏗᏍᏛ\t-12.1338\n▁ᎤᏚᏓᏛᏗᏱ\t-12.1338\n▁ᎤᏟᏴᏍᎩᎸᎮ\t-12.1338\n▁ᎤᏧᏈᏍᏙᏒᎯ\t-12.1338\n▁ᎤᏪᏙᎵᎨᎢ\t-12.1338\n▁ᎨᏤᎳᏗᏙᎭ\t-12.1338\n▁ᎨᏥᏐᏠᎸᎢ\t-12.1338\n▁ᎬᏩᎦᏌᏯᏍᏕ\t-12.1338\n▁ᎬᏩᏂᎾᏄᎪᏫᏎᎮᏍᏗ\t-12.1338\n▁ᎬᏩᏍᏓᏩᏙᎯ\t-12.1338\n▁ᎭᏆᏥᏂ\t-12.1338\n▁ᎭᏓᏅᏗᏍᏗᏍᎨᏍᏗ\t-12.1338\n▁ᎯᏯᎵᏍᎦᏍᏙ\t-12.1338\n▁ᎻᎱᏤᎵ\t-12.1338\n▁ᎻᏏᎴᎻ\t-12.1338\n▁ᎻᏚᏎᎵ\t-12.1338\n▁ᏁᏣᏛᏁᏍᏗᏉ\t-12.1338\n▁ᏂᎦᏅᎦᎸᎲᎾ\t-12.1338\n▁ᏂᎦᏥᏪᏎᎭ\t-12.1338\n▁ᏂᎬᏫᏍᏕ\t-12.1338\n▁ᏂᏕᏣᏓᏛᏁᎮᏍᏗ\t-12.1338\n▁ᏂᏗᏣᏓᏕᎵᏎᎲᎾ\t-12.1338\n▁ᏂᏗᏣᏢᏫᏎᎲᎾ\t-12.1338\n▁ᏂᏗᏥᏁᎲᎾ\t-12.1338\n▁ᏂᏙᏣᎵᏍᏓᏁᎭ\t-12.1338\n▁ᏄᎾᎵᎮᎵᏣᏛᎾ\t-12.1338\n▁ᏄᏂᎷᎶᏤᎲᎾ\t-12.1338\n▁ᏅᎤᏪᏎᎸᎩ\t-12.1338\n▁ᏅᏋᏁᎵᏙᎸᎢ\t-12.1338\n▁ᏅᏓᎦᏪᏏ\t-12.1338\n▁ᏅᏓᏍᎩᏴᏁᎵ\t-12.1338\n▁ᏅᏓᏳᎾᎵᏍᏓᏁᎵ\t-12.1338\n▁ᏅᏓᏳᏍᏗᏗᏒᎩ\t-12.1338\n▁ᏅᏛᏂᏙᎾᎢ\t-12.1338\n▁ᏈᏗᏂᏱ\t-12.1338\n▁ᏍᎩᏯᎵᎡᎵᏍ\t-12.1338\n▁ᏍᎩᏯᏐᎥᎦ\t-12.1338\n▁ᏍᏆᏕᎲᏏ\t-12.1338\n▁ᏐᎵᎼᏅ\t-12.1338\n▁ᏓᎦᎳᏐᏫᏏ\t-12.1338\n▁ᏓᎧᎿᏩᏕᎨᏍᏗ\t-12.1338\n▁ᏓᎨᎯᏛᏔᏂ\t-12.1338\n▁ᏓᎩᏯᏪᏥᏙᎸ\t-12.1338\n▁ᏓᎬᏁᏉᎢ\t-12.1338\n▁ᏓᎬᏍᏓᏩᏗᏙᎵ\t-12.1338\n▁ᏓᎾᏕᏒᎲᏍᎨᎢ\t-12.1338\n▁ᏓᎾᏦᎭᏱᎮ\t-12.1338\n▁ᏓᎿᏬᏍᎨ\t-12.1338\n▁ᏓᏁᏙᎲᎩ\t-12.1338\n▁ᏓᏂᏂᎩᎸ\t-12.1338\n▁ᏓᏂᏥᏍᏔᎳᏍᎬ\t-12.1338\n▁ᏓᏍᎩᏯᏠᏥ\t-12.1338\n▁ᏓᏓᏘᏁᎲᎢ\t-12.1338\n▁ᏓᏥᎴᏐᏂ\t-12.1338\n▁ᏓᏥᏍᏔᏩᏕᏏ\t-12.1338\n▁ᏓᏥᏔᏲᎵ\t-12.1338\n▁ᏓᏨᏲᏎᎵ\t-12.1338\n▁ᏓᏲᏍᏓᏁᎳᏗ\t-12.1338\n▁ᏓᏳᎾᏚᎩᏒ\t-12.1338\n▁ᏕᎤᎸᏫᏍᏓᏏ\t-12.1338\n▁ᏕᎨᎦᏓᏂᎸᏨ\t-12.1338\n▁ᏕᎩᎾᏦᏒ\t-12.1338\n▁ᏕᎬᏒᎲᏍᎬᎢ\t-12.1338\n▁ᏕᎬᏩᏓᏂᎸᏨᎩ\t-12.1338\n▁ᏕᎬᏯᎫᏴᏓᏁᎮᏍᏗ\t-12.1338\n▁ᏕᎬᏯᏠᎢᏍᏓᏁᎸ\t-12.1338\n▁ᏕᎭᏅᏓᏗᏍᏗᏍᎨᏍᏗ\t-12.1338\n▁ᏕᎯᏯᏓᏂᎸᏨᎭ\t-12.1338\n▁ᏕᏍᏗᏂᏴᎮᏍᏗ\t-12.1338\n▁ᏕᏥᎦᎿᏩᏗᏒ\t-12.1338\n▁ᏗᎦᎵᏯᏅᎯᏛ\t-12.1338\n▁ᏗᎨᏥᏅᏍᏕᏎᎸᎯ\t-12.1338\n▁ᏗᎩᎾᏓᏛᏙᏗ\t-12.1338\n▁ᏗᎫᏩᎭᏄᏫ\t-12.1338\n▁ᏗᎬᏩᏕᏲᏗ\t-12.1338\n▁ᏗᏂᎳᏍᏓᎳᏩᏗᏒ\t-12.1338\n▁ᏗᏓᏙᏕᎯᎯ\t-12.1338\n▁ᏗᏗᏂᏃᎩᏍᎨᎢ\t-12.1338\n▁ᏗᏴᎦᎴᏴᏓ\t-12.1338\n▁ᏘᏰᎵᎯᏍᏓ\t-12.1338\n▁ᏙᎦᏓᏲᎵᎸ\t-12.1338\n▁ᏙᎵᏓᏍᏆ\t-12.1338\n▁ᏙᏓᎦᏥᏯᏟᎶᏍᏔᏂ\t-12.1338\n▁ᏙᏓᏦᎵᏍᏔᏂ\t-12.1338\n▁ᏙᏘᏴᏔᏂᎵ\t-12.1338\n▁ᏙᏛᎠᎴᎯᏌᏂ\t-12.1338\n▁ᏚᎵᏖᎸᏁ\t-12.1338\n▁ᏚᎾᏁᎳᏗᏙᎴ\t-12.1338\n▁ᏚᎾᏁᏍᏓᏝᎰᎢ\t-12.1338\n▁ᏚᎾᏐᏓᎸ\t-12.1338\n▁ᏚᎾᏗᏫᏍᏗᏍᎨ\t-12.1338\n▁ᏚᎾᏦᎭᏱᎸ\t-12.1338\n▁ᏚᏂᎵᏰᏗᏍᎬ\t-12.1338\n▁ᏚᏂᎷᏫᏍᏔᏁᎲ\t-12.1338\n▁ᏚᏌᏬᎴ\t-12.1338\n▁ᏚᏍᏆᎸᏔᏅ\t-12.1338\n▁ᏚᏗᎦᎴᏯᏍᏔᏅ\t-12.1338\n▁ᏚᏟᎷᏆᏗᏅᏎ\t-12.1338\n▁ᏚᏥᏍᏠᏨᎩ\t-12.1338\n▁ᏚᏩᏅᎦᏢ\t-12.1338\n▁ᏚᏮᎩᎶᎥᎩ\t-12.1338\n▁ᏚᏯᏍᏜᏛ\t-12.1338\n▁ᏛᎩᏯᏅᎡᎴᏍᏗ\t-12.1338\n▁ᏛᎵᏰᎢᎸᏍᏓ\t-12.1338\n▁ᏛᎾᎵᏛᏔᏂ\t-12.1338\n▁ᏛᏋᏍᎦᎸᏂ\t-12.1338\n▁ᏣᏥᏰᎸᎾᏁᎴᎢ\t-12.1338\n▁ᏥᎦᎧᎰᎢ\t-12.1338\n▁ᏥᎬᎩᎾᎸᏍᏔᏅᎩ\t-12.1338\n▁ᏥᏁᏣᏛᎩᏍᎪᎢ\t-12.1338\n▁ᏥᏂᏕᎯᏪᏎᎸᎩ\t-12.1338\n▁ᏥᏂᏚᏩᏁᎸ\t-12.1338\n▁ᏥᏍᎩᏯᏂᎩᏍᏓ\t-12.1338\n▁ᏥᏓᏅᎿᏗᏍᏙᏗ\t-12.1338\n▁ᏥᏓᏚᏫᏍᏗᎭ\t-12.1338\n▁ᏥᏚᏣᏃᏛᎩ\t-12.1338\n▁ᏥᏫᏗᎦᎸᏌᏓᏗᏍᎪᎢ\t-12.1338\n▁ᏥᏫᏨᏲᏪᎳᏁ\t-12.1338\n▁ᏥᏯᎵᏃᎮᏗᏍᎬᎢ\t-12.1338\n▁ᏥᏯᏓᏁᏟᏴᏍᏓᏁᎸ\t-12.1338\n▁ᏥᏯᏚᏣᎳᏅᎭ\t-12.1338\n▁ᏦᎦᏓᏂᎸᎢᏍᏗᏱ\t-12.1338\n▁ᏦᎩᏲᎱᎯᏍᏗᏱ\t-12.1338\n▁ᏦᏣᎵᏥᏙᏁᏗᏱ\t-12.1338\n▁ᏧᏃᏕᎯᎯ\t-12.1338\n▁ᏧᏣᏬᏓ\t-12.1338\n▁ᏨᏧᎶᏎᎢ\t-12.1338\n▁ᏩᏂᎶᏒᎭ\t-12.1338\n▁ᏩᏆᏘᏅᏍᏔᏅᎩ\t-12.1338\n▁ᏫᎤᏪᏅ\t-12.1338\n▁ᏫᎬᏩᏲᏥᏓᏍᏗ\t-12.1338\n▁ᏫᏂᏚᏩᏁᎴ\t-12.1338\n▁ᏫᏄᎾᏛᏁᎸᎩ\t-12.1338\n▁ᏫᏙᏛᎾᎴᏔᏂ\t-12.1338\n▁ᏫᏙᏛᎾᏓᎡᏏ\t-12.1338\n▁ᏫᏙᏛᏂᏲᎯᏎᎵ\t-12.1338\n▁ᏫᏚᎦᏔᎲᏍᏙᏗᏱ\t-12.1338\n▁ᏫᏱᏣᎧᎲᎦ\t-12.1338\n▁ᏭᏁᎳᏗᏓ\t-12.1338\n▁ᏭᏁᏙᎸᎯ\t-12.1338\n▁ᏭᏓᏬᎥᏍᏗ\t-12.1338\n▁ᏭᏗᏍᎦᏝᏁ\t-12.1338\n▁ᏭᏩᏯᎸᏥᎴ\t-12.1338\n▁ᏮᏓᏳᏎᎮᎵ\t-12.1338\n▁ᏮᏛᏂᎶᏏ\t-12.1338\n▁ᏯᎩᎷᏤᎴᏍᏗ\t-12.1338\n▁ᏯᎾᏓᏅᏍᎬᎾ\t-12.1338\n▁ᏯᏂᏍᏙᎰᎢ\t-12.1338\n▁ᏯᏉᎯᏳᎮ\t-12.1338\n▁ᏯᏕᏠᏆᏍᎦ\t-12.1338\n▁ᏱᏁᏨᎾᏕᎨᏍᏗ\t-12.1338\n▁ᏱᏅᏧᎵᏍᏙᏔᏁ\t-12.1338\n▁ᏱᏍᎩᎦᏔᎮᎢ\t-12.1338\n▁ᏱᏍᎩᏲᎢᏳᎲᏍᎦ\t-12.1338\n▁ᏱᏍᎩᏲᎢᏳᏁᎢ\t-12.1338\n▁ᏱᏍᏆᏓᏙᎵᏍᏓᏁᎸ\t-12.1338\n▁ᏱᏓᏂᏍᏓᏩᎦᎦ\t-12.1338\n▁ᏱᏕᏥᎤᏍᏕᏎᎸ\t-12.1338\n▁ᏱᏗᏥᏍᏆᏂᎪ\t-12.1338\n▁ᏱᏚᏂᎿᏍᏕᏠᎢ\t-12.1338\n▁ᏱᏣᏍᎦᏅᏤᏍᏗ\t-12.1338\n▁ᏱᏥᎪᏁᎶᏍᎨᏍᏗ\t-12.1338\n▁ᏱᏦᎯᏳᎭ\t-12.1338\n▁ᏱᏦᎯᏳᏁᏍᏗ\t-12.1338\n▁ᏳᎦᏌᏯᏍᏔᏁ\t-12.1338\n▁ᏳᏂᏬᏂᏌ\t-12.1338\n▁ᏴᎦᎬᏴᏕᎩ\t-12.1338\n▁ᏴᎬᏚᏓᎴᏍᏓ\t-12.1338\n▁ᎠᎩᎪᏩᏘᏍᎩ\t-12.1338\n▁ᎠᎵᏖᎸᏂᎮᎢ\t-12.1338\n▁ᎠᏂᏫᏄᏣ\t-12.1338\n▁ᎠᏂᏫᏅᎨᏌᏂ\t-12.1338\n▁ᎠᏅᏳᏤᎲ\t-12.1338\n▁ᎠᏫᏒᎥᏍᎩ\t-12.1338\n▁ᎤᏂᏲᎸᎢᏍᏔᏅ\t-12.1338\n▁ᎤᏄᎶᎸ\t-12.1338\n▁ᎬᏲᎵᏍᏔᏅ\t-12.1338\n▁ᏂᏛᏅᏁᎵ\t-12.1338\n▁ᏂᏥᏪᏍᎨᏍᏗ\t-12.1338\n▁ᏕᎤᏬᎡᎢ\t-12.1338\n▁ᏕᏥᎦᏌᏬᎢᎲᎢ\t-12.1338\n▁ᏛᏃᎵᏥ\t-12.1338\n▁ᏥᎿᏛᎦ\t-12.1338\n▁ᏫᏗᏍᎩᏯᏘᏅᏍᏔᏅᎩ\t-12.1338\n▁ᏯᎩᏲᏏᎭ\t-12.1338\n▁ᏳᏰᎵᏛᎾ\t-12.1338\nᎦᏙᎴᎰᏍᎦ\t-12.1338\nᎩᏰᎳᏗᏙᎭ\t-12.1338\nᏂᎨᎯᏙᎵ\t-12.1338\nᏌᏆᏞ\t-12.1338\nᏍᎫᏆ\t-12.1338\nᏥᎦᏖᏃᎮᏍᏗ\t-12.1338\nᏩᏒᏙᎣᏎ\t-12.1338\nᏴᏍᏓᎩᏍᎩ\t-12.1338\n▁ᎠᎦᎾᏬᏗᏍ\t-12.1338\n▁ᎠᏄᏖᏍᎨ\t-12.1338\n▁ᎠᏍᎪᎵᏰᏍᎨ\t-12.1338\n▁ᎠᏍᎫᏕᏍᎩ\t-12.1338\n▁ᎡᎵᎡᏌ\t-12.1338\n▁ᎡᏥᏔᏲᏎᎮᏍᏗ\t-12.1338\n▁ᎢᎡᏥᎪᎵᏰ\t-12.1338\n▁ᎢᎩᏲᎱᎯᏎᎸ\t-12.1338\n▁ᎢᏍᎩᏃᏁᎵᎸ\t-12.1338\n▁ᎢᏍᎩᏍᎦᎦ\t-12.1338\n▁ᎤᎦᏴᎳᏨ\t-12.1338\n▁ᎤᎵᎩᏳᏍ\t-12.1338\n▁ᎤᎵᏍᎩᏃᏘᏍ\t-12.1338\n▁ᎤᏂᏩᏒᎥᏍᎩ\t-12.1338\n▁ᎤᏍᏕᏅᏨ\t-12.1338\n▁ᎤᏖᎸᏅ\t-12.1338\n▁ᎥᏆᎨᏅᏛ\t-12.1338\n▁ᎬᎾᏰᏍᎬ\t-12.1338\n▁ᎬᏩᏂᏲᏥᏙᎸ\t-12.1338\n▁ᎬᏩᏕᎰᏔᏁᎢ\t-12.1338\n▁ᎭᏙᏯᏅᎯ\t-12.1338\n▁ᏂᎦᏥᏯᏛᏁᎸᎩ\t-12.1338\n▁ᏂᎻᎶᏗ\t-12.1338\n▁ᏂᏓᎦᏛᏁᎵ\t-12.1338\n▁ᏂᏙᏓᎬᏩ\t-12.1338\n▁ᏅᏧᏛᎿᏗᏎ\t-12.1338\n▁ᏓᏂᏄᎪᏫᏍ\t-12.1338\n▁ᏓᏳᏐᏅᏂ\t-12.1338\n▁ᏕᎨᎦᎴᏗ\t-12.1338\n▁ᏕᏣᏓᏡᏩᏗᏒ\t-12.1338\n▁ᏕᏥᎳᏫᏦᎯᎲ\t-12.1338\n▁ᏕᏥᏄᎪᏫᏍ\t-12.1338\n▁ᏗᎦᎦᏠᏱᎯ\t-12.1338\n▁ᏗᎩᎾᏢᏗᏱ\t-12.1338\n▁ᏚᎳᏑᏞ\t-12.1338\n▁ᏛᎵᏍᏓᏴᏂ\t-12.1338\n▁ᏣᏂᏙᎾᎠ\t-12.1338\n▁ᏣᏦᏔᏍᏔᏅ\t-12.1338\n▁ᏥᏕᎾᏦᎯ\t-12.1338\n▁ᏥᏚᏱᎶᎴᎢ\t-12.1338\n▁ᏧᏃᎸᏔᏂᏙᎰ\t-12.1338\n▁ᏧᏄᎪᏨ\t-12.1338\n▁ᏧᏚᎪᏙᏗ\t-12.1338\n▁ᏱᎦᎳᏍᏢ\t-12.1338\n▁ᏱᏪᏣᏓᎢᏅ\t-12.1338\n▁ᏳᏂᏚᎬᎾ\t-12.1338\n▁ᏴᎬᏓᏛᎦ\t-12.1338\nᎨᎩᎩᎵᏲᎢᏍᏗᏍᎬᎩ\t-12.1338\nᎭᏄᏭ\t-12.1338\nᎳᏫᏎᎵ\t-12.1338\nᏍᏚᎢᎡᏗᏱ\t-12.1338\nᏓᎾᏇᏍᎬ\t-12.1338\nᏚᎾᏓᏩᏛᏔᏁᎢ\t-12.1338\nᏚᏔᎲᎢ\t-12.1338\nᏣᎬᏩᎳᏅᎯ\t-12.1338\nᏬᏁᏔᏂ\t-12.1338\nᏴᎧᏁᎵ\t-12.1338\n▁ᎠᎦᏐᎠᏏᎯᎲ\t-12.1338\n▁ᎠᎵᏒᎢᏍᏙᏗ\t-12.1338\n▁ᎠᏅᏳᎬ\t-12.1338\n▁ᎢᏥᏑᎵᎪᎢ\t-12.1338\n▁ᎢᏨᎩᎵᏲᏤᎲ\t-12.1338\n▁ᎤᎾᏍᏕᏥ\t-12.1338\n▁ᎥᏥᏯᏓᏙᎵᏍᏓᏁᎸᎩ\t-12.1338\n▁ᎥᏥᏯᏛᎦᏁᎸᎩ\t-12.1338\n▁ᏂᏤᎵᏍᎬᎾ\t-12.1338\n▁ᏅᏗᎦᎵᏍᏗᏙᏗᏍ\t-12.1338\n▁ᏕᎦᏓᏬᏍᏗᎭ\t-12.1338\n▁ᏕᏥᏲᏍᎨᏍᏗ\t-12.1338\n▁ᏗᎨᏥᏐᏅᏅᎯ\t-12.1338\n▁ᏗᎩᎧᏁᏴᏗᏱ\t-12.1338\n▁ᏙᏨᏅᎢ\t-12.1338\n▁ᏚᏟᎶᏍᏔᏁᎴ\t-12.1338\n▁ᏛᎾᏓᏅᏓᏗ\t-12.1338\n▁ᏧᎾᎵᏂᎦᏂ\t-12.1338\n▁ᏧᏂᎾᏦᏴᏍᏗ\t-12.1338\n▁ᏩᏐᏝ\t-12.1338\n▁ᏫᏂᏚᏅ\t-12.1338\n▁ᏫᏓᏂᏅᎨᎢ\t-12.1338\n▁ᏫᏥᎾᏄᎪᎢᏍᏗᏱ\t-12.1338\n▁ᏭᏓᎩᏅᏒ\t-12.1338\n▁ᏭᏩᎾᏬ\t-12.1338\n▁ᏭᏬᎯᎶ\t-12.1338\n▁ᏮᎠᎦᏔᎲᏍᏓ\t-12.1338\n▁ᏳᎬᏫᏳᎭ\t-12.1338\n▁ᏳᏩᎨᏫ\t-12.1338\nᎠᏆᏘᏂᏙ\t-12.1338\nᎧᏙᏴ\t-12.1338\nᏐᏢᎢᏍᏔᏁᎢ\t-12.1338\nᏕᎭᏓᏟᏴᎲ\t-12.1338\nᏗᏍᎦᏅᎨᏍᏗ\t-12.1338\nᏯᏙᎴᎣᎯ\t-12.1338\n▁ᎠᎩᏂᏰᎸ\t-12.1338\n▁ᎠᏓᎿᏍᏆᎶᏍᏗᏍᎩ\t-12.1338\n▁ᎡᏣᏛᏓᏍᏓᏏ\t-12.1338\n▁ᎣᎦᏢᏆᏒ\t-12.1338\n▁ᎤᏍᏘᏰᏅᎯ\t-12.1338\n▁ᎬᏩᎦᏘᏗᏍᎩ\t-12.1338\n▁ᎭᏇᏅᏍᏗ\t-12.1338\n▁ᎯᎨᏳᎢ\t-12.1338\n▁ᏂᏓᎵᏍᏗᎭ\t-12.1338\n▁ᏃᏣᏛᏁᎲ\t-12.1338\n▁ᏐᏱᏁᎳ\t-12.1338\n▁ᏗᏅᏂᎦᎵᏍᏗ\t-12.1338\n▁ᏚᏛᏅᎢᏍᏓᏁᎸ\t-12.1338\n▁ᏥᏚᏭᏓ\t-12.1338\n▁ᏧᏂᏄᎪᏨ\t-12.1338\n▁ᏱᎨᎵᏍᎨ\t-12.1338\n▁ᏳᏂᎷᏤᎮ\t-12.1338\n▁ᎠᎩᎵᏲᎦ\t-12.1338\n▁ᎠᎵᏍᏛᏧᏍᏗ\t-12.1338\n▁ᎠᎵᏘᏍᎪᎢ\t-12.1338\n▁ᎠᏆᏂᎩᏍᏗᏱ\t-12.1338\n▁ᎤᎧᏲᏐᏁ\t-12.1338\n▁ᎤᎬᏍᏉᎡ\t-12.1338\n▁ᎤᎾᏰᏒᎯ\t-12.1338\n▁ᏂᏚᎳᏍᎬᎢ\t-12.1338\n▁ᏂᏚᎾᏓᏁᎶᏛᎾ\t-12.1338\n▁ᏣᎶᏅᎮᎭ\t-12.1338\n▁ᏥᏣᏣᎠ\t-12.1338\n▁ᏩᏍᏖᏍᏗ\t-12.1338\n▁ᏯᎪᏩᏘᏍᎨᎢ\t-12.1338\n▁ᏲᏍᏗᎦᏔᎭ\t-12.1338\nᎨᏥᎤᏍᏕᏎᎴᎢ\t-12.1338\nᎨᏦᏎᎰ\t-12.1338\nᏁᎶᎲᏍᎩ\t-12.1338\nᏚᏣᎪᏎ\t-12.1338\nᏩᏍᎦᎸᏁᎢ\t-12.1338\nᏫᏚᏘᏅᏍᏔᏅᎩ\t-12.1338\nᏬᏁᏗᏍᎩ\t-12.1338\n▁ᎠᎾᏓᏛᏍᎬᎢ\t-12.1338\n▁ᎠᏠᏄᎮᏛ\t-12.1338\n▁ᎢᎠᏥᏩᏛᎲᏃ\t-12.1338\n▁ᎣᏣᏁᏦᎥᏍ\t-12.1338\n▁ᎬᏇᏅᏍᏗ\t-12.1338\n▁ᎭᏓᏳᎦ\t-12.1338\n▁ᏂᏣᏓᎨᏒ\t-12.1338\n▁ᏕᎦᏃᏣᏢ\t-12.1338\n▁ᏕᎨᎫᎪᏓᏁ\t-12.1338\n▁ᏗᎦᎶᏐᎲᏍᎩ\t-12.1338\n▁ᏗᏍᏇᏲᎲᏍᎩ\t-12.1338\n▁ᏙᎩᏯᏪᏥᏙ\t-12.1338\n▁ᏙᏓᎦᏥᏳᎪᏓᏁᎵ\t-12.1338\n▁ᏙᏓᏨᏲᎯᏎᎵ\t-12.1338\n▁ᏚᏂᏍᏆᎸᏔ\t-12.1338\n▁ᏣᏁᏉᎥᎯ\t-12.1338\n▁ᏥᎬᏲᏎᎸᎩ\t-12.1338\n▁ᏥᏂᏓᎦᏔᎰᎢ\t-12.1338\n▁ᏥᏂᏚᏪᏎᎴᎢ\t-12.1338\n▁ᏦᏪᎳᏅᎩ\t-12.1338\n▁ᏧᏙᎨᏍᎩ\t-12.1338\n▁ᏫᏥᎧᏅᎯ\t-12.1338\n▁ᏳᎨᏅᏛ\t-12.1338\nᎩᏰᏲᏗ\t-12.1338\nᎭᏓᎾᏫᏗᏍ\t-12.1338\nᏂᏒᎳᏍᎨ\t-12.1338\nᏯᏠᎩᏉ\t-12.1338\n▁ᎠᎾᏙᏂᏍᎩ\t-12.1338\n▁ᎠᏓᏬᏍᎬ\t-12.1338\n▁ᎠᏓᏴᏍᏕᏍᎩ\t-12.1338\n▁ᎢᎨᏣᎵᏍᏓᏁᏗ\t-12.1338\n▁ᎣᏂᏏᎹ\t-12.1338\n▁ᎤᏓᏁᎪᏳᎲ\t-12.1338\n▁ᎦᎴᏫᏍᏗ\t-12.1338\n▁ᏓᎦᏁᏐ\t-12.1338\n▁ᏓᏇᎷᎬ\t-12.1338\n▁ᏕᎦᏟᎶᏍᏗᏍᎬ\t-12.1338\n▁ᏚᎾᏘᏔ\t-12.1338\n▁ᏣᏓᎦᏌ\t-12.1338\n▁ᏤᏧᎪᏓᏁ\t-12.1338\n▁ᏧᎦᏔᏘ\t-12.1338\n▁ᏧᏂᏨᏍᏙᏗ\t-12.1338\nᏓᎩᎧᎿᏩᏗᏙᎸ\t-12.1338\n▁ᎠᎩᏲᎮ\t-12.1338\n▁ᎠᏂᏫᏒᎥᏍᎩ\t-12.1338\n▁ᎠᏆᏘᏂᏙᎲᎩ\t-12.1338\n▁ᎤᏪᏩᏒᎢᏍᏗ\t-12.1338\n▁ᎨᏥᏍᎦᏂ\t-12.1338\n▁ᎪᏎᎰ\t-12.1338\n▁ᎯᏂᏌᏉ\t-12.1338\n▁ᏂᎨᎵᏍᎪ\t-12.1338\n▁ᏓᏂᎶᏒᎭ\t-12.1338\n▁ᏓᏥᎵᏬᏥ\t-12.1338\n▁ᏕᏓᏦᏍᎬᎢ\t-12.1338\n▁ᏗᏂᎳᏫᏦᎯᎯ\t-12.1338\n▁ᏚᏔᏪᏙᏁ\t-12.1338\n▁ᏛᎡᏥ\t-12.1338\n▁ᏣᏰᎸᏎᏍᏗ\t-12.1338\n▁ᎠᏉᏛᎸᎯ\t-12.1338\n▁ᎬᏕᏘᏱᎩ\t-12.1338\n▁ᏓᎬᏯᏎᎮᎵ\t-12.1338\n▁ᏧᏂᏂᏴᏓ\t-12.1338\nᏓᎿᏫ\t-12.1338\nᏗᏚᎳᏫᎢᏍᏗᏱ\t-12.1338\nᏚᎾᏄᏩᎡ\t-12.1338\nᏣᎴᏫᏍᏗᏍᎬ\t-12.1338\n▁ᎤᏁᏐᎠᎯᏍᏗ\t-12.1338\n▁ᏓᎾᎵᏃᎮᎵᏙᎲ\t-12.1338\nᎦᏒᎳᏍᎪ\t-12.1338\nᎬᏯᎵᎮᎵᏤᎭ\t-12.1338\nᏑᎴᏍᎪ\t-12.1338\nᏚᎦᎴᏅᏔᏁ\t-12.1338\nᏬᏎᎵ\t-12.1338\n▁ᎠᎩᏯᎣᏅ\t-12.1338\n▁ᎡᏧᎢᏍᏗ\t-12.1338\n▁ᎬᏩᎵᏠᏯᏍᏗ\t-12.1338\n▁ᏂᏨᏯᏛᏁᎸ\t-12.1338\n▁ᏅᏗᎦᏍᏙᏗᏍᎨ\t-12.1338\n▁ᏍᏆᏂᏏᎲᏏ\t-12.1338\n▁ᏕᏣᏓᎦᎵᏍᏓᏗᏍ\t-12.1338\n▁ᏘᎻᎾ\t-12.1338\n▁ᏥᏂᏥᏪᏍᎬᎩ\t-12.1338\n▁ᏫᎦᏓᎥ\t-12.1338\n▁ᏫᏥᎶᏒᎩ\t-12.1338\n▁ᏱᎫᏩᏂ\t-12.1338\n▁ᏱᏗᏦᎯᏳ\t-12.1338\n▁ᎠᎾᏍᎩᏓᏒᎥᏍ\t-12.1338\n▁ᎤᎦᎶᎬ\t-12.1338\n▁ᎤᏂᏃᏴᎵᏓ\t-12.1338\nden\t-12.1338\nᏁᎷᎩᎡᎸ\t-12.1338\nᏓᏓᏚᎪᏓᏁᎲ\t-12.1338\nᏙᏧᏄᎪᏫᏎᎢ\t-12.1338\n▁Pri\t-12.1338\n▁ᎠᏲᏓᏒ\t-12.1338\n▁ᎣᎦᏕᏗᏱ\t-12.1338\n▁ᎣᏍᏗᏴᎩ\t-12.1338\n▁ᎦᎳᏍᏢ\t-12.1338\n▁ᎪᎯᏳᎲᏍᎬ\t-12.1338\n▁ᎬᏇᎸ\t-12.1338\n▁ᏌᏬᏛ\t-12.1338\n▁ᏓᏤᏲᏂ\t-12.1338\n▁ᏕᏛᏁᏍᏗ\t-12.1338\n▁ᏥᎯᏃᏁᎵ\t-12.1338\n▁ᏧᏍᏚᎢᎡᎸᎯ\t-12.1338\n▁ᏦᏌᏯ\t-12.1338\n▁ᏂᎬᎩᏲᎸᎾ\t-12.1338\n▁ᏅᏗᎠᏥᏪᏎ\t-12.1338\n▁ᏫᏙᏓᎨ\t-12.1338\n▁ᏰᏣᏛᏓ\t-12.1338\nᎠᎦᏍᎦᏃ\t-12.1338\n▁ᎤᏄᏓᎴᏍᎩ\t-12.1338\n▁ᎤᏕᎯᏴ\t-12.1338\n▁ᎫᎭᏟ\t-12.1338\n▁ᎺᎠ\t-12.1338\n▁ᏚᏰᏍᏛ\t-12.1338\n▁ᏥᏕᎨᏥ\t-12.1338\n▁ᏧᏍᏕᎸᏛ\t-12.1338\nᎦᎾᏬᏒ\t-12.1338\n▁ᎠᎾᎵᏖᎸᎲᏍᎬ\t-12.1338\n▁ᎠᏂᏴᏍᏗᏍᎩ\t-12.1338\n▁ᎠᏆᏂᏏᏗᏱ\t-12.1338\n▁ᎠᏥᏓᎦᎸᎢᏒᎯ\t-12.1338\n▁ᎤᎵᏍᎩᏃᎳ\t-12.1338\n▁ᏗᎦᎷᏥᏒ\t-12.1338\n▁ᏚᏁᏲᏁ\t-12.1338\n▁ᏥᎬᏩᏂᏛᏔᏁ\t-12.1338\n▁ᎡᏥᏩᏛᎲᎭ\t-12.1338\nᏓᏡᏫᏍᏕᎢ\t-12.1338\nᏗᏫᏎᎸᎩ\t-12.1338\n▁ᎠᏌᏱᎵ\t-12.1338\n▁ᎠᏣᎩᏍᎩ\t-12.1338\n▁ᎤᎦᎾᏅ\t-12.1338\n▁ᎤᏍᎩᏅᏕ\t-12.1338\n▁ᎧᏁᎮᏛ\t-12.1338\n▁ᏥᏂᏌᏅᎩ\t-12.1338\n▁ᏥᏙᏣᏠᎯ\t-12.1338\n▁ᏧᎨᏅᏛ\t-12.1338\n▁ᏧᏎᎪᎩᏍᏗᏱ\t-12.1338\n▁ᎠᏑᏯᎩᏛ\t-12.1338\n▁ᎡᏐᏏ\t-12.1338\n▁ᎢᏣᏢᏆᏍᎬ\t-12.1338\n▁ᎤᏂᏍᏔᏩᏛ\t-12.1338\n▁ᏕᏥᎦᏅᎩ\t-12.1338\n▁ᏚᏒᎦᎸᎩ\t-12.1338\n▁ᏥᏛᏦ\t-12.1338\n▁ᏫᎾᏴᎯ\t-12.1338\n▁ᏯᏗᏔᏍᎨ\t-12.1338\n▁ᏱᏂᎦᏪᎭ\t-12.1338\n▁ᏱᏨᏃᏁᎴᎢ\t-12.1338\nᏥᏍᏝ\t-12.1338\n▁ᎠᏆᏍᎪᏒᎯ\t-12.1338\n▁ᎦᏄᏓᎴᎩ\t-12.1338\n▁ᎬᏯᏛᎦᏁᎸ\t-12.1338\n▁ᎭᏛᏅᎭ\t-12.1338\n▁ᏗᏓᎢᏒᎢ\t-12.1338\n▁ᏙᏛᏂᏴᎳᏏ\t-12.1338\n▁ᏚᎾᏗᏍᏚ\t-12.1338\n▁ᏚᏂᎳᏫᏛ\t-12.1338\n▁ᏧᎵᏯᏏ\t-12.1338\n▁ᏫᎫᏩᏂᎶᎯᏍᏗ\t-12.1338\n▁ᏫᏱᏣᏴ\t-12.1338\n▁ᏱᎫᏩᎾ\t-12.1338\n▁ᎤᏐᏓᎸ\t-12.1338\n▁ᎤᏣᏃᏛᎩ\t-12.1338\n▁ᎦᏲᎩᏂ\t-12.1338\n▁ᏉᏗᏆ\t-12.1338\n▁ᏥᏂᏕᎤ\t-12.1338\n▁ᏥᏂᏨᏪᏏ\t-12.1338\n▁ᏳᎬᏩ\t-12.1338\nᏣᎵᎮᎵᎪᎢ\t-12.1339\n▁ᎠᎪᏩᏘᏍᎨᎢ\t-12.1339\n▁ᎠᎵᏍᏔᏴᎲᏍᎨ\t-12.1339\n▁ᎠᏂᎯᏲᎲᎢ\t-12.1339\n▁ᎢᏣᎵᏥᏙᎲᏍᎨᏍᏗ\t-12.1339\n▁ᎢᏳᏅᏂᏐᏗᏱ\t-12.1339\n▁ᎣᎦᏛᏅᎢᏍᏓᏁᎸ\t-12.1339\n▁ᎤᏗᏍᏚᏅ\t-12.1339\n▁ᎦᏃᎴᏍᎬ\t-12.1339\n▁ᏙᏓᏲᎩᎸᏫᏍᏓᏁ\t-12.1339\n▁ᏙᏗᏂᎧᏁᎢ\t-12.1339\n▁ᏚᎵᏥᏍ\t-12.1339\n▁ᏚᏓᎴᏅᏔᏅ\t-12.1339\n▁ᏩᏕᏗᏱ\t-12.1339\n▁ᏫᎬᏩᏘᏅᏍᏔᏅᎩ\t-12.1339\n▁ᏱᏂᎦᏔᎮ\t-12.1339\n▁ᎬᏩᎩᏨᏗ\t-12.1339\nᏏᏄᏴ\t-12.1339\nᏜᏅᏓᏕ\t-12.1339\n▁ᎠᏌᎻᏛ\t-12.1339\n▁ᎠᏍᏚᏟᏍᎩ\t-12.1339\n▁ᎾᏆᎵᏍᏓᏁᎵᏙᎲᎢ\t-12.1339\n▁ᏚᎾᏓᏟᏴᎲ\t-12.1339\n▁ᏱᏗᏓᏓᏂᎸᎦ\t-12.1339\n▁ᎢᎨᎬᎾᏕᎩ\t-12.1339\n▁ᎤᏃᎱᏲᎵ\t-12.1339\n▁ᏄᏚᏪᏎᎸᎩ\t-12.1339\n▁ᏟᏍᏆ\t-12.1339\n▁ᎬᏬᏱ\t-12.1339\n▁ᏩᏓᏬᏣ\t-12.1339\n▁ᏭᏟᏫᏛ\t-12.1339\n▁ᏳᎦᏙᎥᏎᎢ\t-12.1339\n▁ᏳᏚᏓᎴᏍᏔᏁ\t-12.1339\nᎵᏛᏗᏍᎬᎾ\t-12.1339\n▁ᎤᎦᏎᏍᏗᏕ\t-12.1339\n▁ᏙᏓᏣᏠᏏ\t-12.1339\n▁ᏛᏥᎸᏉᏔᏂ\t-12.1339\n▁ᏥᏕᎯᎾᏄᎪᏫᏎᎸ\t-12.1339\n▁ᎢᎦᏠᏯᏍᏔᏅ\t-12.1339\n▁ᎢᏣᏛᎩᏍᎩ\t-12.1339\n▁ᏕᎬᏩᎾᏍᏗᏍᎨᎢ\t-12.1339\n▁ᏫᏄᏪᏒᎩ\t-12.1339\nᏁᎢᏍᏓᏁᎲᎩ\t-12.1339\nᏍᏔᏩᏗᏎ\t-12.1339\nᏐᏯᎦ\t-12.1339\n▁ᎡᏍᏗᏍᏓᏩᏕᏒᎭ\t-12.1339\n▁ᎤᎸᏉᏔᏅᎯ\t-12.1339\n▁ᎤᏅᏩᏅᎩ\t-12.1339\n▁ᎤᏍᎫᏓᏛᎢ\t-12.1339\n▁ᎧᏴᏌᏛ\t-12.1339\n▁ᎬᏩᏓᏡᏫᏍᏔᏁᎢ\t-12.1339\n▁ᏕᎩᎾᏓᎨᏳᏒᎢ\t-12.1339\n▁ᏗᏥᎾᏌ\t-12.1339\nᏚᎵᏥᏙᏁᎴ\t-12.1339\n▁ᏏᏂᎹᏂ\t-12.1339\n▁ᏓᏂᎪᏩᏗᏍᎨ\t-12.1339\n▁ᏕᎦᎦᏎᏍ\t-12.1339\n▁ᏯᎩᏲᎱᏒ\t-12.1339\n▁ᏯᏆᎴᏂᏙᎸ\t-12.1339\n▁ᏱᎨᎨᎭ\t-12.1339\n▁ᎠᎦᏎᏍᏙᏗ\t-12.1339\n▁ᎠᎱᏃᎲ\t-12.1339\n▁ᎠᏗᏅᏗᏉ\t-12.1339\n▁ᎤᏴᏜ\t-12.1339\n▁ᏕᎰᏢᏔᏅᎭ\t-12.1339\n▁ᏚᎩᎸᏨ\t-12.1339\n▁ᏚᏴᏒᎩ\t-12.1339\n▁ᏥᏚᎸᏫᏍᏓᏁᎸ\t-12.1339\n▁ᏧᎵᏃᎯᏴᎯ\t-12.1339\n▁ᏨᎩᏅᏒ\t-12.1339\nᏧᎾᏄᎪᏨ\t-12.1339\n▁ᎠᎾᏠᎾᏍᏗᏍᎬ\t-12.1339\n▁ᎬᏉᎯᏳᎲᏍᎩ\t-12.1339\n▁ᏚᏪᏌᏍᏔᏁ\t-12.1339\n▁ᏰᏥᎦᏔᎮ\t-12.1339\n▁ᏂᏪᏒᎭ\t-12.1339\nᏥᎦᎿᏩᏗᏙ\t-12.1339\n▁ᎠᏂᏅᏜᎡᎢ\t-12.1339\n▁ᎠᏨᏏᏰᏍᎨ\t-12.1339\n▁ᎥᎶᏱ\t-12.1339\n▁ᏍᎪᏂᏴ\t-12.1339\n▁ᏖᏲᎲᏍᎩ\t-12.1339\n▁ᏗᏔᎸᎢ\t-12.1339\n▁ᏥᎦᎶᏒᏍᏗᎭ\t-12.1339\n▁ᏕᎪᏪᎵᏍ\t-12.1339\n▁ᏥᏂᏕᏣᏛᏁ\t-12.1339\nᏁᏉᎡᎵ\t-12.1339\n▁ᎠᏃᏚᎢᏍᏗᏍᎬ\t-12.1339\n▁ᎠᏣᎾᏉᎯ\t-12.1339\n▁ᏓᏥᏲᎤᏏ\t-12.1339\n▁ᏦᎩᏂᎸᏫᏍᏓᏁᎯ\t-12.1339\n▁ᏧᏪᏚᏁᎯ\t-12.1339\nᏓᏛᏳᏤ\t-12.1339\n▁ᎹᏓᏯᏃ\t-12.1339\n▁ᏕᎨᏥᏂᏌᎲ\t-12.1339\n▁ᏙᏥᏴᎬ\t-12.1339\n▁ᏯᏍᎦᎦ\t-12.1339\n▁ᎺᎮ\t-12.1339\n▁ᎤᏁᎳᏗᏙᎲ\t-12.1339\n▁ᏓᏰᏥᏄᎪᏫᏏ\t-12.1339\n▁ᏚᏂᏲᎱᏎᎢ\t-12.1339\nᎨᏲᎲᏍᎦ\t-12.1339\n▁ᏙᎩᏲᏐᏅ\t-12.1339\n▁ᏳᎯᏐᏓᏁ\t-12.1339\nᏓᎵᏁᎯᏗᏍ\t-12.1339\nᏲᎢᎱᎯ\t-12.1339\n▁ᎤᎵᏃᎮᏔᏁ\t-12.1339\n▁ᎤᏁᏌᏴ\t-12.1339\n▁ᏥᎡᏥ\t-12.1339\n▁ᏧᎪᎵᏰᏗᏱ\t-12.1339\n▁ᏘᏔᎴ\t-12.1339\nps\t-12.1339\nᏟᎶᏍᏓᏁᎭ\t-12.1339\n▁ᏣᎦᎵᏍᏓᏴᎾᏁᏗᏱ\t-12.1339\n▁ᏯᏂᏏᎾ\t-12.1339\n▁ᏱᏂᏣᏍᏕᏍᏗ\t-12.1339\n▁ᏱᏗᏥᏬᏂᎭ\t-12.1339\n▁ᏚᏗᏔᏍᏔᏅ\t-12.1339\n▁ᏫᏗᎦᏅᎪ\t-12.1339\nᎩᎾᏄᎪᏥᎸᎩ\t-12.1339\nᎩᏁᏟᏴᏏ\t-12.1339\n▁ᏓᏗᏍᏆᏂᎪᏔᏂ\t-12.1339\n▁ᏗᎩᎷᏫᏍᏔᏁᏗ\t-12.1339\n▁ᎠᎩᎵᏴ\t-12.1339\n▁ᎤᏂᎿᎸᏨ\t-12.1339\n▁ᏄᏙᎯᏳᏒ\t-12.1339\n▁ᏓᎦᏎᎵ\t-12.1339\n▁ᏥᏕᏥᏙᎦ\t-12.1339\n▁ᏓᏥᏔᏲᏎᎵ\t-12.1339\n▁ᏧᏃᏴᎪ\t-12.1339\nᏄᏲᎢᏯ\t-12.1339\n▁ᎤᎩᎵᏲᏤᎢ\t-12.1339\n▁ᎲᏁᏍᏗ\t-12.1339\n▁ᏂᎨᎬᏁᎮ\t-12.1339\n▁ᏂᎨᎬᏁᎲᎢ\t-12.1339\n▁ᏂᎬᏅᎪᏪᎳ\t-12.1339\n▁ᏓᎬᏩᏍᎪᏂᎵ\t-12.1339\nᏔᎸᎩᏍᏗ\t-12.1339\n▁ᎠᎫᎷᏤᏗ\t-12.1339\n▁ᏗᎬᏩᎾᏓᏁᏟᏴᎡᏗ\t-12.1339\n▁ᏧᏴᏣ\t-12.1339\n▁ᏬᎩᏴᎸ\t-12.1339\n▁ᏮᏓᏥᎷᏤᎵ\t-12.1339\n▁ᏱᏙᎸᏫᏍᏓᏁᎭ\t-12.1339\n▁ᎠᏣᏅᏙᏗ\t-12.1339\n▁ᎤᏪᏩᏒᏤ\t-12.1339\n▁ᏓᎾᏓᏱᎵᏙᎲ\t-12.1339\n▁ᏓᏢᎥᏍᎬ\t-12.1339\n▁ᏕᎨᎦᏨᏍᏔ\t-12.1339\nᎵᏃᎮᏗᏍᎨᎢ\t-12.1339\n▁ᎭᏓᏬᏣ\t-12.1339\n▁ᏥᎾᏰᏍᎦᏰᏃ\t-12.1339\nᎯᏲᎯᏍᏓ\t-12.1339\nᏌᎳᏙᏓ\t-12.1339\n▁ᎠᏆᏘᏂ\t-12.1339\n▁ᎠᏔᎸᎦᏒ\t-12.1339\n▁ᎢᎭᏛᏁᎯ\t-12.1339\n▁ᏗᏂᎧᏅᎢ\t-12.1339\n▁ᏫᏯᏴᎯᎮᏍᏗ\t-12.1339\n▁ᎤᎬᎭᏓ\t-12.1339\n▁ᏅᏓᎬᏩᏪᏎᎵ\t-12.1339\n▁ᏕᏨᏯᏬᏍᏗᎭ\t-12.1339\nᎨᏣᎫᏴᏏ\t-12.1339\n▁ᎢᏳᏩᏓᏗ\t-12.1339\n▁ᎧᎹᎹ\t-12.1339\n▁ᏗᎨᏥᏴᎩᏅᎯ\t-12.1339\n▁ᏙᏓᎦᏘᏃᎵ\t-12.1339\n▁ᏭᎾᎵᏃᎮ\t-12.1339\nᏧᏘᏍᏓᏁᏗᏱ\t-12.1339\n▁ᎢᏓᏓᏅᏓᏓ\t-12.1339\n▁ᎨᏣᏕᏯᏙᏗᏍᎩ\t-12.1339\n▁ᏂᏚᏁᎶᏛᎾ\t-12.1339\n▁ᏩᏆᏗᏅᏒ\t-12.1339\n▁ᏓᎬᎾᏄᎪᏫᏎᎵ\t-12.1339\n▁ᏗᏤᎵᏛ\t-12.1339\nᏘᏁᏏ\t-12.1339\n▁ᏙᏗᏫᏒᎢ\t-12.1339\n▁ᏱᏂᎦᏪᏍᎨ\t-12.1339\nᏊᎪᏓᏁᎸ\t-12.1339\n▁ᎤᏴᏍᏕᏍᎩ\t-12.1339\n▁ᏅᏓᏣᏄᎪᏫᏒᎯ\t-12.1339\n▁ᏳᏁᏤᎢ\t-12.1339\n▁ᏳᏣᎩᏒᎾ\t-12.1339\n▁ᏄᏍᏆᎸᎲᎾ\t-12.1339\n▁ᏥᎧᏃᎮᏍ\t-12.1339\n▁ᏱᏓᏲᎩᏍᏆᏂᎪᏔᏂ\t-12.1339\n▁ᏚᏯᏅᎡᎴᎢ\t-12.1339\nᎨᏬᏗ\t-12.1339\n▁ᎠᎦᏠᏯᏍᏔᏅᎩ\t-12.1339\n▁ᏦᏥᏚᎩ\t-12.1339\nᏠᏒᏒᎩ\t-12.1339\nᏯᏕᎥᏏ\t-12.1339\n▁ᎩᏃᎯᏳᏅ\t-12.1339\n▁ᏫᏘᏯᏅ\t-12.1339\nᎦᏙᏌᏗᏍᏛ\t-12.1339\n▁ᎣᏣᎵᏍᏔᏴᎲᏍᎬ\t-12.1339\n▁ᎦᏄᏲᎯ\t-12.1339\n▁ᏃᎦᏠᎾᏍᏛᎾ\t-12.1339\n▁ᏱᏚᏪᎵᏎ\t-12.1339\n▁ᏱᏩᎦᏓᎢᏅ\t-12.1339\nᏁᎩᏰᏍᏗ\t-12.1339\n▁ᎠᏄᏖᏍᎬ\t-12.1339\n▁ᎠᏥᏁᎢᏍᏔᏅ\t-12.1339\n▁ᎴᎠᎹ\t-12.1339\n▁ᏙᎩᎸᏫᏍᏓᏁᎸ\t-12.1339\n▁ᎤᎵᏍᎫᏪ\t-12.1339\n▁ᎷᏏᏯ\t-12.1339\n▁ᏓᏓᏌᎳᏗᏍ\t-12.1339\n▁ᏥᏯᏛᎦᏁᎸᎢ\t-12.1339\n▁ᏧᏪᎵᏏᏯ\t-12.1339\n▁ᏳᏩᏂᏍᏔᏅ\t-12.1339\nᏆᏦᎥ\t-12.1339\n▁ᎬᏩᎵᏍᏚ\t-12.1339\n▁ᏘᏍᏆᏂᎪᏓᏁᏗᏱ\t-12.1339\n▁ᏲᎩᏂᎭ\t-12.1339\nᏴᎩᏅᎯ\t-12.1339\n▁ᎦᎬᏩᏂᏐᏢ\t-12.1339\n▁ᏅᏓᏨᏰ\t-12.1339\n▁ᏕᏣᏓᏙᎯᏳ\t-12.1339\n▁ᏗᏍᏛᏗᏍᏗᏍᎩ\t-12.1339\n▁ᏚᏅᏂᎦᎸᎲᎩ\t-12.1339\n▁ᏦᎦᏓᏅᏙ\t-12.1339\n▁ᏯᎩᏍᏛᏓ\t-12.1339\n▁ᏚᎧᎿᏩᏗᏙᎲᎢ\t-12.1339\nᎧᎾᏬᎨ\t-12.1339\nᎾᏰᏏ\t-12.1339\nᏥᏂᎬᏎᎲ\t-12.1339\n▁ᏗᎫᏢᏔᏅᎯ\t-12.1339\n▁ᏗᏂᏅᏍᎨᏂ\t-12.1339\n▁ᏯᏆᏘᏝ\t-12.1339\n▁ᏴᏛᏂᎶᏐᏂ\t-12.1339\n▁ᏌᎨᎢᏳ\t-12.1339\nᎵᎪᏁᎲᎾ\t-12.1339\n▁ᎠᎾᏓᏎᎪᎩᏍᎬᎩ\t-12.1339\n▁ᎤᏓᏴᎳᏔᏁ\t-12.1339\n▁ᎿᏛᏁᎮᏍᏗ\t-12.1339\n▁ᏗᏠᏗ\t-12.1339\n▁ᎤᏦᎢᏎᏗ\t-12.1339\n▁ᎤᏲᏞᏒᎢ\t-12.1339\nᎩᎧᎿᏩᏗᏙᎰᎢ\t-12.1339\n▁ᏓᏆᏓᏘᎾᎥ\t-12.1339\nᏂᎭᎷᎥᏍ\t-12.1339\n▁ᏗᏦᏑᎵ\t-12.1339\n▁ᏥᎦᎶᎨᏎᎢ\t-12.1339\n▁ᏱᎬᏩᏲᎱᏎ\t-12.1339\nᎬᏩᎳᏁ\t-12.1339\nᎾᎵᏍᎪᎸᏗᏍᎨᎢ\t-12.1339\n▁ᎤᏓᏅᏓᏛᎢ\t-12.1339\n▁ᏗᎾᎦᎴᏅᏗᏍᎩ\t-12.1339\n▁ᏚᎾᏓᏠᎲ\t-12.1339\n▁ᏚᎿᎸᏤ\t-12.1339\n▁ᏠᏗᏯ\t-12.1339\n▁ᎠᏘᏍᏙᏗ\t-12.1339\n▁ᎤᏅᏓᏒ\t-12.1339\n▁ᏅᏓᏳᎾᏨ\t-12.1339\n▁ᏚᏭᏓᎴᏒ\t-12.1339\n▁ᏱᏅᎬᏛᎦ\t-12.1339\nᏨᏏᏰᏍᎬ\t-12.1339\n▁ᎢᏣᏅᏨ\t-12.1339\n▁ᎤᏂᏁᏉᏨᎯ\t-12.1339\n▁ᏥᏕᎦᎶᏄᎮ\t-12.1339\n▁ᏃᏥᏪᎭ\t-12.1339\n▁ᏭᎳᎩᏎ\t-12.1339\n▁ᏂᎦᎵᏍᏘᏍᎬ\t-12.1339\n▁ᏧᏓᎴᎾᎢ\t-12.1339\n▁ᎤᏂᏄᎯ\t-12.1339\n▁ᎻᏈᏌ\t-12.1339\n▁ᎠᎾᏔᏍᎩ\t-12.1339\n▁ᎬᏛᏍᎨᏍᏗ\t-12.1339\n▁ᏓᎧᏂᏍᎬᎢ\t-12.1339\n▁ᏕᎬᎦᏆ\t-12.1339\nᏓᏳᏓᎴᏅᎯ\t-12.1339\n▁ᏚᏰᎸᏒ\t-12.1339\nᏄᎶᎴᎢ\t-12.1339\nᏓᏟᏃᎮᏗᏍᎨ\t-12.1339\n▁ᎢᏓᎵᏍᏓᏴᏗᏍᎬᎢ\t-12.1339\n▁ᎿᎵᏍᏓ\t-12.1339\n▁ᏂᏚᎸᏫᏍᏓᏁ\t-12.1339\n▁ᏕᎨᏥᏲᎯᏏ\t-12.1339\n▁ᏧᏟᎷᏆ\t-12.1339\nᏣᏪᎢᏍᏔ\t-12.1339\n▁ᎯᏁᎨᏍᏗ\t-12.1339\n▁ᎠᏂᏬᏂᏍᎪ\t-12.1339\n▁ᎡᎾᎢᏓᏍᏗᏱ\t-12.1339\n▁ᏱᏅᎦᎦᏛᎦ\t-12.1339\n▁ᏳᏙᎯᏳᎲᎾ\t-12.1339\nᏤᏬᏤ\t-12.1339\n▁ᎤᎾᎦᏎᏍᏕᎢ\t-12.1339\n▁ᏭᏓᏬᎡ\t-12.1339\nᏁᏢᏗᎭ\t-12.1339\n▁ᎤᏂᏍᏆᏂᎪᏕ\t-12.1339\n▁ᎥᎩᏴᎩᏅᎯ\t-12.1339\nᎦᏗᏙᎯ\t-12.1339\n▁ᏙᏛᏕᏯᏙᏔᏂ\t-12.1339\n▁ᏅᏓᏳᏪᏅ\t-12.1339\n▁ᎠᏓᏁᏣᏍ\t-12.1339\n▁ᎠᎾᏙᎩᏯᏍ\t-12.1339\n▁ᏥᏨᏲᏪᎳᏁᎭ\t-12.1339\nᏙᏑᎴᎥᎩ\t-12.1339\n▁ᏓᎫᎪᏓᏁ\t-12.1339\n▁ᏦᎩᎸᏫᏍᏓᏁᎸᎯ\t-12.1339\nᎯᏎᎵ\t-12.1339\n▁ᏗᎬᏅᏃᏛ\t-12.1339\n▁ᏓᎦᏥᏄᎪᏫᏏ\t-12.1339\n▁ᏕᎬᏩᏂᏂᏴ\t-12.1339\n▁ᏕᎬᏩᏲᏒ\t-12.1339\n▁ᎧᏳᎦ\t-12.1339\nᏓᏚᏓᏔ\t-12.1339\n▁ᎠᏂᏲᎯᎮᏍᏗ\t-12.1339\n▁ᎤᏓᏠᏍᏕᎢ\t-12.1339\n▁ᎤᏩᏓᎷᎦ\t-12.1339\n▁ᏂᏄᎾ\t-12.1339\n▁ᏓᏂᎾᏄᎪᏫᏍᎪᎢ\t-12.1339\n▁ᎢᎯᎩᎵᏲ\t-12.134\n▁ᎤᏂᏁᎩᎸᏗ\t-12.134\nᏃᏨᏁᎭ\t-12.134\n▁ᏅᏗᎬᏩ\t-12.134\n▁ᏳᎾᏓᏅᏔ\t-12.134\n▁ᏕᎯᏍᏓᏩᏗᏎᏍᏗ\t-12.134\n▁ᏗᏓᏱᎵᏓᏍᏗᏱ\t-12.134\n▁ᎤᏯᎣᎢ\t-12.134\n▁ᎤᏱᎸᏒᎩ\t-12.134\n▁ᏕᎦᎶᏄᎮ\t-12.134\n▁ᎤᎨᎲ\t-12.134\n▁ᏳᏜᏅᏕ\t-12.134\nash\t-12.134\n▁ᎠᎦᏔᎾᎥᎢ\t-12.134\n▁ᎤᎵᏍᎦᏰᎬᏍᏔᏁᎢ\t-12.134\n▁ᎦᏃᎯᎵᏒᎩ\t-12.134\n▁ᎢᏧᎵᏍᏙᏗᏱ\t-12.134\n▁ᏛᎤᏨᏒᎩ\t-12.134\n▁ᏙᎨᎦ\t-12.134\nᎸᏥᎴ\t-12.134\n▁ᎠᎫᏱᏍᎬᎢ\t-12.134\n▁ᎢᏥᏃᏔᏂᏙ\t-12.134\n▁ᏍᎩᎪᏩᏛᏗᏱ\t-12.134\nᏓᏙᏓᏇ\t-12.134\n▁ᏥᎾᎩᏪᏒᎩ\t-12.134\n▁ᏘᏍᏓᏩᏚᎦ\t-12.134\n▁ᏓᎵᏌᎳᏗᏍᎬ\t-12.134\n▁ᏓᏆᏠᎯᏍᏛᎢ\t-12.134\n▁ᏕᎯᎾᏄᎪᏫᏎᎸᎢ\t-12.134\n▁ᏗᏓᏍᏔᏴ\t-12.134\n▁ᏗᏥᎳᏫᎢᏍᏗᏱ\t-12.134\n▁ᏳᏓᏓᎳ\t-12.134\n▁ᏁᏣᏛᏁᎸ\t-12.134\n▁ᏂᏓᏙᏢ\t-12.134\n▁ᏱᏣᏜᏅᏓᏕ\t-12.134\n▁ᎤᎶᏐᏁ\t-12.134\n▁ᎤᎾᎴᎾᏫᏍ\t-12.134\n▁ᏗᎾᏘᏂᏙᎯ\t-12.134\n▁ᏧᏃᏪᎶᏗ\t-12.134\nᏁᏟᏴᏍᏓ\t-12.134\nᏱᎶᎵ\t-12.134\n▁ᏚᎾᏄᏩᎥ\t-12.134\n▁ᏚᎾᏡᏕᏍᏗ\t-12.134\n▁ᏲᏢᎾᏏ\t-12.134\nᏗᏫᏍᏗᏱ\t-12.134\n▁ᎥᏇᏲᏅ\t-12.134\n▁ᏓᏥᏄᎪᎢ\t-12.134\nᎬᎾᏘᏁᎯ\t-12.134\n▁ᎤᏢᏲᎵ\t-12.134\n▁ᏛᏨᎷᏤᎵ\t-12.134\nᎩᏂᎪᎯᏎ\t-12.134\n▁ᏕᎬᏩᏚᏫᏍ\t-12.134\nᏒᏎᎵ\t-12.134\n▁ᎣᎩᏇᏓᎸ\t-12.134\n▁ᎤᏓᎦᎵᏍᏙᏗᏍᎬᎩ\t-12.134\n▁ᎨᏧᎯᏍᏗᏍᎩ\t-12.134\n▁ᎾᎩᏴᏍᏗᏱ\t-12.134\n▁ᏴᎬᏲᎱᎯ\t-12.134\n▁ᏣᏂᏏᏗᏱ\t-12.134\n▁ᎤᏓᎵᏗᎩᎡᎸ\t-12.134\n▁ᏴᎦᏣᎦᎸ\t-12.134\n▁ᎠᏛᏅᎢᏍᏔᏃᏅᎯ\t-12.134\n▁ᏩᏆᎵᏰᎢᎶᎯᏍᏗ\t-12.134\n▁ᏪᏥᎷᏥᏏ\t-12.134\n▁ᏱᏣᏰᎸᏎᏍᏗ\t-12.134\n▁ᎬᏩᏂᏯᎢ\t-12.134\n▁ᏁᏣᏁᎸᎾ\t-12.134\n▁ᏚᏅᏂᏍᏔᏁ\t-12.134\n▁ᏥᏕᏣᏓᏂᎸᏨ\t-12.134\n▁ᎠᎾᎴᏂᏙ\t-12.134\n▁ᏣᏉᏪᎳᏅ\t-12.134\n▁ᏧᎾᏕᏲᏗᏱ\t-12.134\n▁ᎠᎦᎵᎲ\t-12.134\n▁ᎯᏯᎵᏍᎪᎸᏓᏁᎮᏍᏗ\t-12.134\n▁ᎬᏆᏕᏯᏙᏗ\t-12.134\n▁ᎡᏍᏗᏅᏏᏓᏍᏗ\t-12.134\n▁ᏕᎩᎸᏫᏍᏓᏁᎮᏍᏗ\t-12.134\n▁ᏥᏥᏲᎢᏎᎸ\t-12.134\n▁ᎠᎧᏁᎲ\t-12.134\n▁ᏦᏨᏃᏛ\t-12.134\n▁ᎤᏃᎯᏳᏔᏅ\t-12.134\n▁ᏤᏉᎻ\t-12.134\n▁ᎤᏪᎵᎯᏍᎬ\t-12.134\n▁ᏑᏙᏓᏆᏛ\t-12.134\n▁ᏗᎾᏓᏅᏫᏍᎩ\t-12.134\nᎩᎦᎷᏴ\t-12.134\n▁ᎤᏄᎪᎩ\t-12.134\n▁ᏚᏩᏇᏅᏔᏅ\t-12.134\nᏓᏁᏖᏗ\t-12.134\n▁ᎣᎩᏩᏏ\t-12.134\n▁ᏂᏚᎸᏫᏍᏓᏁᎲᎾ\t-12.134\n▁ᏚᏂᎾᏌᎥ\t-12.134\n▁ᏱᏣᏤᎸᎮᏍᏗ\t-12.134\n▁ᎪᎯᏳᏍᎩ\t-12.134\n▁ᏓᎨᏥᏄᎪᏫᏒᎩ\t-12.134\n▁ᎦᏙᎩᏯᏍᎬ\t-12.134\n▁ᏙᎸᏫᏍᏓᏁᎲ\t-12.134\n▁ᏙᏓᎪᏪᎳᏂ\t-12.134\n▁ᏗᎦᏃᏣᏢ\t-12.134\n▁ᎭᏓᏠ\t-12.134\n▁ᏱᏂᎬᏁᎰᎢ\t-12.134\n▁ᎣᎩᏌᏙᏴ\t-12.134\nᎬᏯᎧᏁᎵ\t-12.134\n▁ᎢᏍᏓᎵᎢ\t-12.134\n▁ᎬᏉᏎᎮᏍᏗ\t-12.134\n▁ᏚᏅᏫᏍᏔᏁ\t-12.134\nᎩᏲᎱᏎᎵ\t-12.134\n▁ᏕᏣᏫᏒᎢ\t-12.134\n▁ᎤᎾᏛᏂᏛ\t-12.134\nᎪᎢᏳᏁᎢ\t-12.134\n▁ᎣᎦᎵᏍᏓᏴᏅ\t-12.134\n▁ᎠᏆᏓᏙᎵᏍᏗ\t-12.134\n▁ᎤᎭᏴᏍᏗ\t-12.134\n▁ᏂᏣᏛᎩᏍᎬᎾ\t-12.134\n▁ᎭᏗᏛᎲᎭ\t-12.134\n▁ᎻᏏᏱ\t-12.134\n▁ᏚᏂᏯᏙᎸᎩ\t-12.134\n▁ᏙᎩᏔᏕᎩ\t-12.134\n▁ᏥᏫᎦᎶᎯ\t-12.134\nᎦᏄᎪᏨ\t-12.134\nᎾᏘᏃᎮᎸᎭ\t-12.134\n▁ᎤᏛᎯᏍᏔᏅ\t-12.134\nᏚᏫᏍᏔ\t-12.134\n▁ᎤᏓᎾᏛᎢ\t-12.134\n▁ᏍᎩᏍᎦᏅᏤᏗ\t-12.134\n▁ᏚᏓᏅᎵᏰᎥ\t-12.134\n▁ᏭᏂᏏᏁᎴ\t-12.134\n▁ᏱᏗᏧᎪᏗᎭ\t-12.134\nᎵᏃᎯᏴ\t-12.134\n▁ᏄᎵᏍᏗᏍᎨᎢ\t-12.134\n▁ᏱᏄᏛᏁ\t-12.134\nᏂᏆᏅᎥᎦ\t-12.134\n▁ᏙᎦᏚᏓ\t-12.134\nᎦᎵᏥᏙᏁᎸᎩ\t-12.134\n▁ᎤᏍᏚᏔᏁᎢ\t-12.134\n▁ᎨᏣᏌᎳᏙ\t-12.134\n▁ᎠᎾᏁᏍᎨᏍᎬ\t-12.134\n▁ᎠᏟᎶᏛ\t-12.134\nᎧᎵᎩ\t-12.134\n▁ᎤᎾᏘᏰᎸᎯ\t-12.134\n▁ᎦᏥᏰᏲ\t-12.134\n▁ᎤᏂᏍᏆᏂᎪᏔᏁ\t-12.134\n▁ᏗᏥᎦᎵᏍᏓᏕᏗ\t-12.134\n▁ᏦᎩᎷᏥᎸ\t-12.134\n▁ᎠᏆᎵᏍᏓᏁᎸ\t-12.134\nᎧᏔᎾᏫᏍ\t-12.134\n▁ᎠᏉᏪᎶᏗ\t-12.134\n▁ᏧᎵᏍᏆᎵ\t-12.134\nᏬᏚᎢᏍᏕ\t-12.134\nᏚᏂᏐᏤ\t-12.134\nᎾᎯᏍᏗᎭ\t-12.134\nᎵᏍᏚᏔᏅ\t-12.134\n▁ᎠᎩᎦᏘᏗᏍ\t-12.134\n▁ᏄᎾᎵᏏᎾᎯᏍᏛᎾ\t-12.134\n▁ᏄᎾᏓᏄᏴᏛᎾ\t-12.134\n▁ᏚᎵᏂᏆᏅᏁᎸᎩ\t-12.134\n▁ᏦᏍᏓᏑ\t-12.134\n▁ᏧᏄᎪᏓᏁ\t-12.134\n▁ᏄᎾᏜᏏᏛᎡᎲᎾ\t-12.134\n▁ᎢᎦᏕᏗᏱ\t-12.1341\n▁ᏕᏣᎳᏍᎬ\t-12.1341\n▁ᎬᏩᏓᏙᎵᏍᏗ\t-12.1341\n▁ᏗᎬᏩᎶᏒᎯ\t-12.1341\n▁ᏫᏓᏗᏅᏗ\t-12.1341\n▁ᎤᎾᎪᎲᏍᏙᏗᏱ\t-12.1341\n▁ᏤᏣᏘᏁᏒᎭ\t-12.1341\nᏍᎩᎾᏛᏂᏏ\t-12.1341\n▁ᎢᎩᎩᎵᏲᎢᏍᏗ\t-12.1341\n▁ᏭᎧᏔᏁᎢ\t-12.1341\n▁ᏗᎾᏓᏍᎦᎩ\t-12.1341\n▁ᏯᏂᏯᎠ\t-12.1341\n▁ᏂᏥᏔᏲᎯᎲ\t-12.1341\n▁ᎠᎾᏨᏏᏰᏍᎬ\t-12.1341\n▁ᏪᏣᏚᎦ\t-12.1341\n▁ᎠᎦᏓᏓᎴᏔᏅᎯ\t-12.1341\n▁ᎤᏅᎨᏫᏒ\t-12.1341\n▁ᎤᎬᏫᏩ\t-12.1341\n▁ᏕᎩᎾᏓᏁᏤᎸ\t-12.1341\n▁ᎤᏚᏓᎸᏛ\t-12.1341\n▁ᏫᏄᏪᏎᎸᎩ\t-12.1341\n▁ᏱᏚᎾᏝᎠ\t-12.1341\n▁ᎠᏥᎬᏍᎪᎸᏁ\t-12.1341\n▁ᏓᏨᏂᎵ\t-12.1341\n▁ᎤᎾᏓᏓᎴᏓᏁ\t-12.1341\n▁ᏗᎩᏏᎳᏛᏙᏗ\t-12.1341\n▁ᏗᎬᏩᏂᏲᎱᎯᏎᎸᎯ\t-12.1341\n▁ᏯᏆᎴᏫᏍᏔᎾ\t-12.1341\n▁ᏧᏁᎫ\t-12.1341\n▁ᏧᏂᎵᎶᎲᏍᎦ\t-12.1341\n▁ᏱᏄᎵᏍᏓᏁᎸ\t-12.1341\n▁ᎡᏥᎧᏁᏗᏱ\t-12.1341\n▁ᎤᎧᏙᏍᏔᏁᎢ\t-12.1341\n▁ᏓᏃᏢᏍᎬᎢ\t-12.1341\n▁ᏥᏓᏂᏰᎲᎩ\t-12.1341\nᎦᎵᏳᏰᏃ\t-12.1341\nᎯᎷᏥᏌ\t-12.1341\nᏓᏍᏕᏓᎵᏴᏍᎪ\t-12.1341\nᎬᏣᎶᏗ\t-12.1341\n▁ᏕᎦᏯᎩᏍᎨ\t-12.1341\n▁ᏥᎦᎧᎭ\t-12.1341\n▁ᏧᎾᏙᎳᏅᏍᏗ\t-12.1341\n▁ᏯᎦᏍᎬᎾ\t-12.1341\nᏲᎢᏎᎮᏍᏗ\t-12.1341\n▁ᏃᏤᎲᎾ\t-12.1341\n▁ᏗᎨᏥᏅᏬᏗᏱ\t-12.1341\n▁ᎤᏬᏪᎶᏗ\t-12.1341\n▁ᎡᏣᏛᏛᎲᎦ\t-12.1341\n▁ᎣᎦᏅᏢ\t-12.1341\n▁ᎨᎦᏎᏍᏗᏱ\t-12.1341\n▁ᎨᏥᏔᏲᏎᏗ\t-12.1341\nᎶᎣᏎ\t-12.1341\n▁ᏱᏓᎬᏯ\t-12.1341\n▁ᎦᏥᏬᏁᏗᏍᎬ\t-12.1341\n▁ᏭᎾᎦᏖ\t-12.1341\nᏑᎵᎪᏥ\t-12.1341\nᏞᎦ\t-12.1341\n▁ᎡᏂᎤ\t-12.1341\n▁ᏁᏪᏒ\t-12.1341\n▁ᏕᏥᏍᏆᏂᎪᏙ\t-12.1341\n▁ᏯᏕᎰᏍᎦ\t-12.1341\n▁ᎤᎾᏓᎩᎸᏗ\t-12.1341\n▁ᎬᎩᎷᏤᎰᎢ\t-12.1341\n▁ᏯᏓᏛᏍᎪᎢ\t-12.1341\nᏍᏗᏰᏗᏍᎨᏍᏗ\t-12.1341\n▁ᏂᏓᏛᏓᏍᏓᏁᎲᎾ\t-12.1341\n▁ᏂᏣᏛᏓᏍᏓᏁᎲᎾ\t-12.1341\nᏓᏩᏗᏍᏙ\t-12.1341\n▁ᎾᏋᏂᏏ\t-12.1341\n▁ᏛᎾᏛᏁᎵ\t-12.1341\n▁ᏫᎬᏩᏛᏅᎩ\t-12.1341\n▁ᎬᏆᏡᏗᏍᎩ\t-12.1341\n▁ᎥᏆᏓᏅᏖ\t-12.1341\n▁ᏂᏚᏪᎭᎸ\t-12.1341\n▁ᎠᏒᏨ\t-12.1341\nᏣᎵᏍᏓ\t-12.1341\n▁ᏂᏓᏛᏁᎰ\t-12.1341\n▁ᎯᏯᏓᏙᎵᏍᏓᏁᎮᏍᏗ\t-12.1341\n▁ᏱᎾᏆᎵᏍᏔᏁ\t-12.1341\nᎾᎵᏛᎯ\t-12.1341\n▁ᎤᏪᏲᎲᏍᎬ\t-12.1341\n▁ᏫᎨᏓ\t-12.1341\nᎯᎪᏩᏘᎭᏧ\t-12.1341\n▁ᏔᎷᎩᏍᎩᎬᎾᏬᏙᏗᏱ\t-12.1341\n▁ᎡᏗᏯᎥᎢ\t-12.1341\n▁ᏩᏂᏌᏙᏯ\t-12.1341\n▁ᏓᎩᏅᏅᎢ\t-12.1341\n▁ᏭᎾᏘᏅᏍᏔᏅᎩ\t-12.1341\n▁ᎠᎩᎷᏤᎮᏍᏗ\t-12.1341\n▁ᏛᏂᏁᏥ\t-12.1341\n▁ᏤᎦᏡ\t-12.1341\nᏓᏅᏕᏙᏗ\t-12.1341\n▁ᏃᏥᏪᏎᎸᎩ\t-12.1341\n▁ᏕᎦᏬᏍᎬᎢ\t-12.1341\n▁ᎤᏍᏆᎳᎯᏳ\t-12.1341\n▁ᎥᏣᏂᎩ\t-12.1341\n▁ᎤᏃᎵᏨ\t-12.1341\n▁ᏂᎦᏛᎿᏕᎬᎢ\t-12.1341\n▁ᎤᏩᏝᎥ\t-12.1341\n▁ᎤᏬᏢᎯᏐᏗ\t-12.1341\n▁ᏫᎬᏯᏅᎲᎭ\t-12.1341\n▁ᏫᏂᏚᏪᏎᎴᎢ\t-12.1341\n▁ᏂᏥᏯᏛᏁᎭ\t-12.1341\n▁ᏗᎨᎵᏍᎩ\t-12.1341\n▁ᏗᏂᏅᏬ\t-12.1341\n▁ᎢᏧᎾᏓ\t-12.1341\n▁ᏚᎾᏟᎸ\t-12.1341\n▁ᏌᎩᏯ\t-12.1341\n▁ᏓᏥᎸᏉᏔᏂ\t-12.1341\n▁ᎡᎭᎩᎳᏩ\t-12.1341\nate\t-12.1341\n▁ᏓᎶᏁ\t-12.1341\n▁ᏓᏂᎳᏍᏓᎸ\t-12.1341\n▁ᏓᏋᏔᏅ\t-12.1341\n▁ᏧᏬᎪᏙᏗ\t-12.1341\n▁ᏑᎹᏂ\t-12.1341\n▁ᏕᏥᎾᏰ\t-12.1341\n▁ᏲᎩᏌᏂ\t-12.1341\n▁ᏥᎬᏉᎯᏳᎲᏍ\t-12.1342\n▁ᎤᏗᏩᏎᎢ\t-12.1342\n▁ᎢᏰᎬᏁᏗ\t-12.1342\n▁ᏭᎾᏠᏨ\t-12.1342\n▁ᏱᏚᏲᎱᎯ\t-12.1342\n▁ᏩᏙᏑᎵ\t-12.1342\nᏔᎳᏬᏍᎦ\t-12.1342\n▁ᏃᏨᏁᎰ\t-12.1342\nᎾᏣᏪᏐᎸᏍᏗᏍᎬ\t-12.1342\n▁ᏗᏓᏠᏍᏗ\t-12.1342\n▁ᏱᏣᏛᏛᎲᏍᎨᏍᏗ\t-12.1342\n▁ᎠᏥᏚᎨ\t-12.1342\nᎾᎴᏅᏁᎢ\t-12.1342\n▁ᏫᎬᏲᏪᎳᏁ\t-12.1342\nᏰᏲᏂ\t-12.1342\n▁ᏣᎾᎵᏍᏓᏴᎲᏍᎦ\t-12.1342\n▁ᏫᏍᏗᎷᏨᎭ\t-12.1342\nᏓᏬᎢᎡ\t-12.1342\n▁ᏍᏉᏑᎵ\t-12.1342\n▁ᏭᎾᏣᏅ\t-12.1342\n▁ᏓᏥᏅᏏ\t-12.1342\n▁ᏱᎦᏅᎥᏏ\t-12.1342\n▁ᏕᏥᎠᏁ\t-12.1342\n▁ᎯᏍᏓᏩᏕᎨᏍᏗ\t-12.1342\n▁ᏱᎬᏉᏎ\t-12.1342\n▁ᏥᏂᎬᏂᏏ\t-12.1342\n▁ᎠᏓᎾᏩᏍ\t-12.1342\nᏥᏣᏁᎸᏓ\t-12.1342\n▁ᏓᏄᎪᏗᏍᎨᏍᏗ\t-12.1342\nᏋᏁᎵ\t-12.1342\n▁ᏗᎦᏁᎦᎸ\t-12.1342\nᏛᎯᏎᎮᏍᏗ\t-12.1342\n▁ᏥᏂᏚᏍ\t-12.1342\nᎦᏁᎳᏗᏍᏗᏱ\t-12.1342\n▁ᎤᏄᏴᏕ\t-12.1342\n▁ᎡᏗᎾᏄᎪᏫᏎ\t-12.1342\n▁ᏓᎾᏗᏔᎯ\t-12.1342\n▁ᎬᏩᏂᏐᏢᏗ\t-12.1342\n▁ᏓᏳᎸᏉᏔᏂ\t-12.1342\nᎡᏣᏟᎶᎡ\t-12.1342\n▁ᏧᎾᏓᎴᏛ\t-12.1342\nᏤᎵᏎᏗ\t-12.1342\nᏳᎾᏌᎾᎩᏒ\t-12.1342\n▁ᏱᏗᏥᎨᏳᎭ\t-12.1342\n▁ᏱᏣᏚᎵᏍᎨᎢ\t-12.1342\n▁ᎣᎦᏚᏓᏕᏫᏒ\t-12.1342\n▁ᎤᎶᎩᎳ\t-12.1342\n▁ᏂᎬᏴᏁᎸ\t-12.1342\nᎵᏍᎦᏍᏙᏙ\t-12.1342\n▁ᎤᏂᎿᎸᎯ\t-12.1342\n▁ᏗᎦᏙᎳᏛᏗ\t-12.1342\n▁ᎠᏂᎵᏇ\t-12.1342\nᎦᏆᎸᏂ\t-12.1342\n▁ᏱᏣᎵᏍᎩ\t-12.1342\n▁ᎤᎾᎴᎾᎸᎯ\t-12.1342\n▁ᏳᏬᏎᎴᎢ\t-12.1342\nᏦᎣᏌ\t-12.1342\n▁ᎬᏄᏯᎩᏍ\t-12.1342\n▁ᏙᏛᏡᏔᏂ\t-12.1342\nᎰᏒᏍᎦ\t-12.1342\n▁ᎤᏪᏲᏅ\t-12.1342\n▁ᏓᏥᏯᏬᎢ\t-12.1342\n▁ᏚᎾᏠᎯᏍᏔᏁᎢ\t-12.1342\n▁ᏚᏃᎥᎩ\t-12.1342\n▁ᎥᎬᎭᏅ\t-12.1342\n▁ᎦᏅᏆᎶᎥᎯ\t-12.1342\n▁ᎬᏩᏂᏌᏁᎢ\t-12.1342\nᏓᏘᏍᏗ\t-12.1342\nᏠᎣᏒ\t-12.1342\n▁ᎢᏥᏰᏣᏍ\t-12.1342\n▁ᏂᏚᏪᏎᎵ\t-12.1342\n▁ᏓᏂᎩᏍᎨᎢ\t-12.1342\n▁ᏫᏣᎷᎯᏍᏗ\t-12.1342\n▁ᎢᏍᏓᏁᎳᏅᎯ\t-12.1342\n▁ᏗᎾᏓᏂᎸᎩ\t-12.1342\nᏕᏥᎪᎥᎩ\t-12.1342\nᏓᏁᏄᎸ\t-12.1342\n▁ᎤᏣᏅᏕᎢ\t-12.1342\nᎵᎦᏲᏙᏗ\t-12.1342\n▁ᎦᏙᎴᎣᎯ\t-12.1342\n▁ᎦᏃᎯᎵᏓᏍᏗ\t-12.1342\n▁ᎦᎸᎪᎬ\t-12.1342\n▁ᏓᏥᏌᎳᏓᏂ\t-12.1342\n▁ᎤᏃᏒᏗ\t-12.1342\n▁ᎯᎧᏁᎦ\t-12.1343\nᎵᎮᎵᏍᏛ\t-12.1343\n▁ᏂᎨᏥᏪᏎᎮᏍᏗ\t-12.1343\n▁ᎣᎦᏙᎴᎰᏒ\t-12.1343\nᏣᏰᎸᎮ\t-12.1343\n▁ᏚᏲᏨᎩ\t-12.1343\n▁ᏱᏗᏣᏠᏱ\t-12.1343\nᏃᏍᎩᏍᏗᏱ\t-12.1343\n▁ᎢᏯᏂᎢᏛᎭ\t-12.1343\n▁ᏓᏂᏁᎵᎬᎢ\t-12.1343\n▁ᎢᎦᏚᏓᎴᏍᏙᏗᏱ\t-12.1343\n▁ᎢᏨᏁᏤᎸᎩ\t-12.1343\n▁ᎤᎪᏐᏅ\t-12.1343\n▁ᏱᏓᏂᏬᏂᎭ\t-12.1343\nᏓᏓᎴᏗᏍᎨᏍᏗ\t-12.1343\n▁ᎯᏯᏙᎵᎨᏍᏗ\t-12.1343\n▁ᏭᎾᎦᏔᎲᏍ\t-12.1343\n▁ᎤᏓᏠᏍᏔᏅᎩ\t-12.1343\n▁ᏓᎦᎾᏄᎪᏥ\t-12.1343\nᎪᎬᏂᏍᏓ\t-12.1343\n▁ᏧᎾᏓᎩᏯᏍᏗ\t-12.1343\nᏚᏘᎿᏫᏛᎮᎢ\t-12.1343\n▁ᎠᎾᎵᎪᎲᏍ\t-12.1343\n▁ᎣᎩᏍᏕᎵᏍᎬᎢ\t-12.1343\n▁ᏧᏃᏢᎾᏁᏗ\t-12.1343\n▁ᎱᏛᏁᎢ\t-12.1343\n▁ᎤᎾᏍᏓᎸ\t-12.1343\n▁ᏕᎭᏘᏃᎸ\t-12.1343\n▁ᏯᏆᏚᎳ\t-12.1343\nᎦᏘᎸᏛ\t-12.1343\n▁ᏕᏓᏁᎶᏛᎢ\t-12.1343\n▁ᎤᎾᏓᏅᏓᏛᎩ\t-12.1343\n▁ᎦᏰᏥᏍᏕᎸᏗ\t-12.1343\n▁ᏒᎶᎯ\t-12.1343\nᎩᎦᏔᎮᎢ\t-12.1343\n▁ᎤᎧᏌ\t-12.1343\n▁ᏓᎦᏄᎪᏥ\t-12.1343\n▁ᏓᏂᎾᏆ\t-12.1343\n▁ᏗᏂᏍᏆᏂᎪᏗᏍᎩ\t-12.1343\nᎩᎦᏴᎳ\t-12.1343\nᏥᏯᎴᏁᏗ\t-12.1343\n▁ᏤᏦᏎᎭ\t-12.1343\n▁ᏙᏧᏂᏅ\t-12.1343\nᏙᏓᏣᏘᎾᏫᏛ\t-12.1343\n▁ᏓᏥᏴᏂᎵ\t-12.1343\n▁ᏕᏥᏁᏤᎭ\t-12.1343\n▁ᏕᏥᏯᎦᎿᏅ\t-12.1343\n▁ᏓᎦᏅᏏ\t-12.1343\n▁ᏓᏳᏄᎪᏨᎩ\t-12.1343\n▁ᏚᎧᎿᏂᏙᎸ\t-12.1343\n▁ᏚᏟᏰᎵᏙᎸ\t-12.1343\n▁ᏳᎾᎵᏍᏓᏴ\t-12.1343\n▁ᎤᏍᏙᏰ\t-12.1343\n▁ᏤᏣᏟᏴᏏ\t-12.1343\n▁ᎤᏂᏝᏗᏤ\t-12.1343\n▁ᎤᏂᏂᏆᏘᏍᏗ\t-12.1343\n▁ᎯᏯᏓᏙᎵᏍᏓᏏ\t-12.1343\n▁ᏂᏚᏅᏁᎸᎩ\t-12.1343\n▁ᎤᏂᎾᏄᎪᏤᎸ\t-12.1343\n▁ᏫᏣᎷᏨ\t-12.1343\n▁ᎤᎵᏍᎩᏰ\t-12.1343\n▁ᎠᎦᎴᏗ\t-12.1343\n▁ᎡᏥᏎᎪᎩᏒ\t-12.1343\n▁ᎦᏃᎸᎥᏍᎨ\t-12.1343\n▁ᏚᎾᏏᏔᏕᎢ\t-12.1343\n▁ᏄᎵᏍᏔᏏ\t-12.1343\nᎱᏎᎢ\t-12.1343\n▁ᎢᏥᎵᏓᏍᏗᎭ\t-12.1343\n▁ᎠᏇᏅᏓ\t-12.1343\n▁ᏧᎾᏙᎢᏛ\t-12.1343\n▁ᏕᏥᎦᏘᎸ\t-12.1343\nᏁᏉᏏ\t-12.1343\n▁ᏍᎩᎷᏥ\t-12.1343\n▁ᎢᎯᎦᏔᎭ\t-12.1343\n▁ᎠᏅᏗᏍᎩ\t-12.1343\n▁ᎠᏙᏂᏍᎬ\t-12.1343\n▁ᎡᏓᏤᎵᎦ\t-12.1343\n▁ᎬᏩᏂᏄᎪ\t-12.1343\n▁ᎭᏣᏪᏐᎸᏍᏓ\t-12.1343\n▁ᏱᏥᏏᎳᏛᎥᎦ\t-12.1343\n▁ᏕᎦᎾᏤᏍ\t-12.1343\nᏯᏓᏂᎸᏤ\t-12.1343\n▁ᎤᏴᎴᏃ\t-12.1343\n▁ᎠᏥᏕᎸᎩ\t-12.1343\nᏓᎸᏍᏛᎢ\t-12.1343\n▁ᏚᎩᏨ\t-12.1343\nᏢᏆᏍᏙᏗᏍᎨᏍᏗ\t-12.1344\n▁ᏗᎬᏩᏲᎯᏎᎸᎯ\t-12.1344\n▁ᎢᏥᏍᏓᏩᏕᎨᏍᏗ\t-12.1344\n▁ᎢᏨᎾᏄᏫᏎᎭ\t-12.1344\n▁ᎬᏯᎦᏙᏍ\t-12.1344\n▁ᎮᏏᎶᏅ\t-12.1344\n▁ᏚᎾᏓᏅᏅᎩ\t-12.1344\n▁ᎠᏟᏰᎵ\t-12.1344\n▁ᎤᏂᏍᏕᏲᏅ\t-12.1344\n▁ᏓᎾᏗᏔᏍᎬ\t-12.1344\n▁ᏗᏓᏂᏃ\t-12.1344\n▁ᏛᎵᏍᏆᏗ\t-12.1344\n▁ᎢᏣᏙᎩᏯᏍ\t-12.1344\n▁ᏦᏤᏙᎭ\t-12.1344\nᏥᎶᏄᎡᎸ\t-12.1344\n▁ᎤᎾᏨᏓ\t-12.1344\n▁ᎢᏍᏓᎢᏒᎢ\t-12.1344\n▁ᎣᏍᏓᏟᏃᎮᏍᎬ\t-12.1344\n▁ᎪᎹ\t-12.1344\n▁ᏕᏥᎾᏫᏍ\t-12.1344\n▁ᏗᎨᎦᏬᏍᏗᏱ\t-12.1344\n▁ᎢᏣᏒᏂᎸᎩ\t-12.1344\nᏃᏏᏌᏁ\t-12.1344\n▁ᎠᎫᏴᏍ\t-12.1344\n▁ᏱᎾᎬᏁᎸ\t-12.1344\n▁ᎤᎾᏓᏡᎨᎢ\t-12.1344\n▁ᏄᎶᏎᎢ\t-12.1344\n▁ᏱᏚᎸᏫᏍᏓᏁᎮᎢ\t-12.1344\n▁ᎥᏓᏘ\t-12.1344\n▁ᎤᏫᏒᏁᎢ\t-12.1344\n▁ᏕᏥᏂᏴᎲ\t-12.1344\n▁ᎢᎬᏩᏰᎸᎭ\t-12.1344\n▁ᎡᏥᏝᏅᎯ\t-12.1344\nᎦᎵᎪᏔᏅᎯ\t-12.1344\nᏴᎡᎴ\t-12.1344\n▁ᏗᏍᎩᎾᏝᎢ\t-12.1344\n▁ᏴᎬᏴᎭ\t-12.1344\n▁ᏄᏪᎭᎴ\t-12.1344\n▁ᏕᎭᏔᏅᎭ\t-12.1344\nᎩᏲᎱᏒᎩ\t-12.1344\n▁ᎤᏓᏄᎸ\t-12.1344\nᎧᎵᎢᏍᏔᏂ\t-12.1344\n▁ᎨᏥᏴᏔᏂᎸ\t-12.1344\n▁ᎣᏥᏍᏕᎵᏍᎩ\t-12.1344\n▁ᎡᎻᏂᏓᏈ\t-12.1344\nᏣᏅᏛᎩ\t-12.1344\n▁ᎤᏰᎸᏕᏍᏗ\t-12.1344\n▁ᎢᏥᎩᏒᎭ\t-12.1344\n▁ᎤᎾᏕᎰᎯᏍᏗᏍᎩ\t-12.1344\n▁ᎠᏉᏠ\t-12.1344\n▁ᎤᏛᏂᏛ\t-12.1344\n▁ᏚᏩᏓᎷᏯᏛ\t-12.1344\n▁ᏗᏦᎸᏒᎯ\t-12.1344\n▁ᎢᏥᏯᎢ\t-12.1344\n▁ᏗᏓᏪᏍ\t-12.1344\n▁ᎢᏣᏛᏅᎢᏍᏕᏍᏗ\t-12.1344\n▁ᏓᏃᏱᏁ\t-12.1344\n▁ᏱᏍᎩᎧᏁᎸ\t-12.1344\n▁ᎢᏥᎦᏛᏂ\t-12.1344\n▁ᏕᎦᏎᎯ\t-12.1344\n▁ᎣᎪᏪ\t-12.1344\n▁ᏴᏓᎨᏏ\t-12.1344\n▁ᎯᏍᏚᎶᏔᏅ\t-12.1344\n▁ᎠᏇᎳᏗᏍ\t-12.1344\n▁ᎠᎵᏌᎳᏛᎦ\t-12.1344\n▁ᏚᎾᏓᏁᏤᎸ\t-12.1344\n▁ᎠᏥᏴᎩᏅ\t-12.1344\n▁ᎠᎵᏖᎸᎲᏍᎬ\t-12.1344\n▁ᎢᏥᎩᎵᏲᏨ\t-12.1344\n▁ᎠᏆᏓᏄ\t-12.1344\n▁ᎾᎦᏔᎾᎥᎾ\t-12.1344\nᎾᎦᏙᏍᏔᏂ\t-12.1344\n▁ᏚᏖᎸ\t-12.1344\n▁ᏚᎬᏩᏝ\t-12.1344\n▁ᏚᎵᏍᏡᏰᎢ\t-12.1344\n▁ᏚᏂᎳᎦᎸ\t-12.1344\nᏨᏱᏢᏅ\t-12.1344\n▁ᎢᏨᏬᏁᏗᎭ\t-12.1344\n▁ᏥᎩᎵᎵ\t-12.1344\n▁ᏚᏂᎧᎯᏰ\t-12.1345\n▁ᎠᏆᏒᏂᎦ\t-12.1345\n▁ᏥᏦᎯᏳᏂ\t-12.1345\n▁ᏱᏨᎸᏉᏗᎭ\t-12.1345\n▁ᎢᎬᏩᏍᏗᏰᏔᏁ\t-12.1345\nᏥᎭᎷ\t-12.1345\n▁ᏓᏂᎴᏴᏍ\t-12.1345\n▁ᏳᏂᏗᏍᎩᏌ\t-12.1345\n▁ᏱᎧᏁᏉᎦ\t-12.1345\n▁ᏥᏲᎢᏳᎲᏍ\t-12.1345\n▁ᏏᏅᏙ\t-12.1345\nᎵᏏᎲᏍᏓ\t-12.1345\n▁ᎠᏆᏢᏈᏍᏙᏗ\t-12.1345\n▁ᎤᏙᎳᏒ\t-12.1345\n▁ᏗᏨᏁᎸᎩ\t-12.1345\n▁ᎨᏥᏃᎮᏍᎨᏍᏗ\t-12.1345\n▁ᏓᎭᏬᎢᎮ\t-12.1345\n▁ᏍᏕᎩ\t-12.1345\n▁ᏓᏘᏁᎮᎢ\t-12.1345\n▁ᏣᎵᏬᎢᏍᏗ\t-12.1345\n▁ᏣᏛᏐᏅᎯ\t-12.1345\n▁ᎦᏌᎾ\t-12.1345\n▁ᏫᎦᎶᏍᎩ\t-12.1345\n▁ᏲᏤᎭ\t-12.1345\nᎦᏰᏥᏐᏢᏔᏂ\t-12.1345\n▁ᎠᏂᎫᏌ\t-12.1345\n▁ᏥᏕᎪᏪᎳ\t-12.1345\nᏍᏙᏰᎯ\t-12.1345\n▁ᏚᎾᏗᏌᏓᏕ\t-12.1345\n▁ᎢᏨᏯᏑᏰᏛ\t-12.1345\n▁ᎠᏓᎾᏫᏗᏍᎬ\t-12.1345\n▁ᎣᎦᏅᏗᏱ\t-12.1345\n▁ᏚᏁᎢᏍᏓᏁᎴ\t-12.1345\n▁ᎬᏩᏍᏕᎸᎯᏙᎮᎢ\t-12.1345\n▁ᏓᏔᎴᎦ\t-12.1345\n▁ᏗᏣᏠᏱᎦ\t-12.1345\n▁ᎠᏁᏢᏗᏍ\t-12.1345\n▁ᏓᏥᏴᎵ\t-12.1345\n▁ᏫᎨᏣᏲᎵᎦ\t-12.1345\n▁ᏱᏧᏢ\t-12.1345\n▁ᎠᏓᏩᏛᎡᎯ\t-12.1345\n▁ᏚᎾᏓᏅᏁᎢ\t-12.1345\n▁ᏱᎦᎾᏄᎪᎦ\t-12.1345\n▁ᏚᏍᎦᏤ\t-12.1345\n▁ᏱᎦᎵᏥᏙᎲᏍᎦ\t-12.1345\n▁ᏱᏙᎬᏛᏂᏏ\t-12.1345\n▁ᎤᎾᎵᏍᏔᏴᏃᎾ\t-12.1345\nᎾᎴᏂᏍᎬ\t-12.1345\nᏕᏘᏱᎶᏍᎬ\t-12.1345\nino\t-12.1345\nᎤᏃᎯᏳᏓᏁᎯ\t-12.1345\nᎦᏔᎾᏫᏍ\t-12.1345\n▁ᏯᏅᏗᎭ\t-12.1345\nᏄᏁᎩᏴ\t-12.1345\n▁ᏯᎩᏩᏛᎲ\t-12.1345\n▁ᎤᏬᏨᏛᎢ\t-12.1345\nᏂᏅᏌᏓ\t-12.1345\n▁ᏥᎿᏛᏁᎭ\t-12.1345\n▁ᏱᎪᏪᎳ\t-12.1345\n▁ᎢᏤᎳᏗᏓᏍᏗᏱ\t-12.1345\n▁ᎢᏨᏁᏤᎲ\t-12.1345\n▁ᏧᎾᏄᏬᎩᎯ\t-12.1345\n▁ᏂᏕᎤ\t-12.1345\n▁ᏯᏆᏓᏅᏖᎳ\t-12.1345\n▁ᎤᏂᎸᏐ\t-12.1345\nᎩᏍᏕᎵᏍᎬᎢ\t-12.1345\n▁ᎢᏥᏍᏛᏗᏍᎨᏍᏗ\t-12.1345\n▁ᏓᏥᎶᎥ\t-12.1345\n▁ᎠᏂᏑᎵᎪ\t-12.1345\n▁ᏣᏎᎵᏔᏅ\t-12.1345\n▁ᏫᎨᎥ\t-12.1345\n▁ᎤᏗᎴᎦ\t-12.1345\nel\t-12.1345\n▁ᎾᏥᏰᎲᎾ\t-12.1345\n▁ᏚᏬᎵᏤᎢ\t-12.1345\nᏬᏐᏅ\t-12.1345\n▁ᏕᏥᎪᎾᏛ\t-12.1345\nᏥᎭᏓᏅᏛᎳ\t-12.1346\n▁ᏙᏓᎫ\t-12.1346\n▁ᎤᎵᏍᏓᏛ\t-12.1346\n▁ᎤᏁᏡᎬ\t-12.1346\n▁ᎠᏧᏍᏛ\t-12.1346\nᏍᎩᎳᏗᏍᏗ\t-12.1346\n▁ᎫᏩᎾᏛ\t-12.1346\n▁ᎨᏦᎵ\t-12.1346\n▁ᏭᎾᏌᎾᎩᏎ\t-12.1346\n▁ᏄᏓᏅᎦᎸᎾ\t-12.1346\n▁ᏄᎳᏏᏁ\t-12.1346\n▁ᏣᎾᏂᎩᏍᎨ\t-12.1346\n▁ᏚᏓᏅᎡᎴ\t-12.1346\n▁ᏕᏥᏲᏍᏔᏅ\t-12.1346\n▁ᏥᏂᏌᏄᎦ\t-12.1346\n▁ᏥᏙᏛᎩᎸᏫᏍᏓᏁᎵ\t-12.1346\n▁ᏱᎧᏃᎮ\t-12.1346\n▁ᏫᏓᎧᏅ\t-12.1346\n▁ᎤᎾᏘᏃᎮᎴᎢ\t-12.1346\n▁ᏥᎦᎵᎡᎵᎦ\t-12.1346\n▁ᏥᎧᏃᎮᎭ\t-12.1346\n▁ᏥᏥᎩᎵᏲᎦ\t-12.1346\nᏓᎾᏅᎥᏍᎩ\t-12.1346\n▁ᏫᏕᏣ\t-12.1346\n▁ᏚᎶᎨᏒ\t-12.1346\nᎦᎵᏍᏓᎴᎩ\t-12.1346\n▁ᏴᏙᎭ\t-12.1346\nᏓᎦᎸᎥᎦ\t-12.1346\nᏓᏅᏫᏍᎨ\t-12.1346\n▁ᏓᏥᏍᏕ\t-12.1346\n▁ᏱᎦᏁᎸᏓ\t-12.1346\n▁ᏗᎬᏩᎦᏘᏕᎯ\t-12.1346\nᏍᏚᏢᎩ\t-12.1346\n▁ᏕᎬᎦᎿᏩᏗᏙᎮᏍᏗ\t-12.1346\n▁ᏄᏒᎴᎢ\t-12.1346\n▁ᏯᏕᎰᏍᎨᏍᏗ\t-12.1346\nᏓᎩᏯᏍᏗ\t-12.1346\nᏖᎳᏛ\t-12.1346\n▁ᎠᎩᏲᎸᎩ\t-12.1346\n▁ᎤᎾᏘᎿᏫᏛᎲᎩ\t-12.1346\n▁ᎤᏓᏅᏖᎵᏓᏍᏗ\t-12.1346\n▁ᏙᏓᎦᎶᏐᏂ\t-12.1346\n▁ᏚᏬᏪᎳᏅ\t-12.1346\n▁ᏭᏅᎫᏛᎢ\t-12.1346\n▁ᏱᏂᏚᏩᏁ\t-12.1346\n▁ᎢᏥᏙᎵᏍᏗᏱ\t-12.1346\nᏂᎦᏗ\t-12.1346\n▁ᏂᏨᏒᎾ\t-12.1346\n▁ᎦᏟᏏᏍᎨᏍᏗ\t-12.1346\n▁ᏚᎿᎷᏔ\t-12.1346\n▁ᎣᏥᎪᎥ\t-12.1347\n▁ᏯᏕᎲᎦ\t-12.1347\n▁ᏄᏍᏗᏓᏁ\t-12.1347\n▁ᏓᏛᏍᎬᎢ\t-12.1347\n▁ᏚᎵᏦᏔᏁᎢ\t-12.1347\nᏑᎸᎮ\t-12.1347\n▁ᎢᏥᏍᏆᏂᎪᏍᎦ\t-12.1347\nᏛᎣᏥ\t-12.1347\n▁ᏱᏂᏣᎵᏍᏔᏅ\t-12.1347\n▁ᏂᏪᎭ\t-12.1347\n▁ᏗᏥᏌᎳᏛᎦ\t-12.1347\n▁ᏱᏣᏙᎴᎰᏍ\t-12.1347\n▁ᎨᏈᎵ\t-12.1347\n▁ᏫᎦᏢᏍ\t-12.1347\n▁ᎤᏁᏍᎨᎮ\t-12.1347\nᎶᏅᎮᏍᎩ\t-12.1347\n▁ᏕᏤᎲᎢ\t-12.1347\n▁ᏫᏗᎨᏥ\t-12.1347\n▁ᎠᎩᏫᏯ\t-12.1347\n▁ᎬᏬᎯᏳᎯ\t-12.1347\n▁ᏭᏔᎷᎪ\t-12.1347\n▁ᏣᎵᏂᎬᎬᎢ\t-12.1347\nᏓᏬᏔᏅᎩ\t-12.1347\n▁ᏧᎧᎿᏩᏗᏓᏍᏗᏱ\t-12.1347\n▁ᏧᏕᏘᏱᎶᏛ\t-12.1347\n▁ᎦᏌᏙᏱ\t-12.1347\n▁ᏗᏂᏁᏟᏴᏍᎩ\t-12.1347\nᏈᏙᎲ\t-12.1347\n▁ᏧᎳᎨᏯᏛᏤᎢ\t-12.1347\nᎬᏬᎯᏳᏁᎢ\t-12.1347\n▁ᎣᏇᏗ\t-12.1347\n▁ᏚᏛᏅᎢᏍᏓᏁᎴ\t-12.1347\n▁ᏕᏥᎦᎾ\t-12.1347\n▁ᏗᎨᏍᎩᎥᏏᏉ\t-12.1347\n▁ᏗᎫᏍᎨᏂ\t-12.1347\n▁ᎤᏁᏉᏤᎴᎢ\t-12.1347\n▁ᎨᏥᏛᎬ\t-12.1347\n▁ᏩᏗᏢᏍᏓ\t-12.1347\n▁ᏯᎾᏕᎰ\t-12.1347\nᎬᏫᏳᏌᏕᎨᏍᏗ\t-12.1347\n▁ᏣᏓᏴᏒᎩ\t-12.1347\n▁ᎡᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ\t-12.1347\n▁ᏳᏁᏅᏎᎢ\t-12.1347\nᎤᏙᎯᏳᎩ\t-12.1347\nᏒᏂᎵᏙᎸ\t-12.1347\n▁ᎾᎦᏔᏛ\t-12.1347\n▁ᏗᎦᎵᏦᏛ\t-12.1347\nᏓᏛᏛᎮᎸᎥᏍᎨ\t-12.1347\n▁ᏫᎾᏆᎵᏍᏓᏏ\t-12.1347\nᎦᎫᏴᎡᎵ\t-12.1347\n▁ᎢᏥᎷᏤᎮᏍᏗ\t-12.1347\n▁ᏗᏕᎭᎷᎨ\t-12.1347\nᏨᏇᏍᎨ\t-12.1347\n▁ᎢᏗᏍᏓᏩᏕᎩ\t-12.1347\n▁ᏩᏐᎾ\t-12.1347\n▁ᏄᎡᏎ\t-12.1347\nᏕᎵᏎᎭ\t-12.1347\n▁ᎭᎵᎮᎵᎨᏍᏗ\t-12.1347\n▁ᎠᏆᎴᏁᎸ\t-12.1347\n▁ᏥᏥᏃᎮᏍᎬ\t-12.1347\n▁ᎬᏩᎾᏡᏗᏍᎩ\t-12.1348\n▁ᏕᏣᏂᎬᎦ\t-12.1348\n▁ᏫᏔᎧᏅᎦ\t-12.1348\n▁ᏓᏃᏢ\t-12.1348\n▁ᏕᎦᎵᎥᏂ\t-12.1348\n▁ᏥᏚᎴᎯ\t-12.1348\n▁ᎧᏁᎪᎢ\t-12.1348\nᏓᎪᎯᏥ\t-12.1348\n▁ᏕᎭᏕᏲᎲᏍᎨᏍᏗ\t-12.1348\n▁ᎠᎩᏲᎱᏒᎯ\t-12.1348\n▁ᏧᏖᎵᏙ\t-12.1348\n▁ᎨᏥᎨᏳᎯ\t-12.1348\n▁ᏱᎦᎵᎭ\t-12.1348\nᏛᏛᏅᎩᏃ\t-12.1348\n▁ᏗᏥᏃᏍᎦᎸᏛ\t-12.1348\n▁ᏕᎫᏍᏙ\t-12.1348\n▁ᏯᎵᏖᎸ\t-12.1348\n▁ᎯᏁᎩᏉᏍᎩᏂ\t-12.1348\n▁ᏓᎦᎶᏏ\t-12.1348\n▁ᎤᏃᎯᎵᏙᎸ\t-12.1348\n▁ᎤᏪᎾᏪ\t-12.1348\n▁ᏱᏂᎦᎵᏍᏗᎭ\t-12.1348\n▁ᎢᏨᏍᏕᎵᏍᎬ\t-12.1348\n▁ᎨᎦᎫᏴᏛ\t-12.1348\nca\t-12.1348\n▁ᏧᏲᎱᏒ\t-12.1348\n▁ᎢᏨᎾᏄᎪᏫᏎᎸ\t-12.1348\n▁ᏥᏲᎢᏳᏗ\t-12.1348\nᏃᏫᎠ\t-12.1348\n▁ᏚᎵᏍᏓᏱᏗᏍ\t-12.1348\nᏓᏅᎵᏰᎠ\t-12.1348\nᎬᎪᎥᎩ\t-12.1348\n▁ᏥᏣᏓᏡᎬ\t-12.1348\n▁ᏚᏂᎪᎮ\t-12.1348\nᏄᏬᎯᏍᏔᏂ\t-12.1349\nᏝᏫᏍᏗ\t-12.1349\n▁ᏳᎵᏍᎪᎸᏓᏁᎴ\t-12.1349\nᏚᎪᏄᎶ\t-12.1349\nᎦᏖᎾ\t-12.1349\n▁ᎬᏩᎬᏍᎪᎸᏁ\t-12.1349\n▁ᏭᎾᏅᏅᎩ\t-12.1349\n▁ᏧᏑᏴ\t-12.1349\nᏄᏩᎥᎾ\t-12.1349\n▁ᎢᏨᏰᎳᏍᏔ\t-12.1349\n▁ᏕᎰᎯᏳᎲᏍ\t-12.1349\n▁ᎱᎾᏓ\t-12.1349\n▁ᏧᎦᎾᏍᏓ\t-12.1349\n▁ᏗᏂᏁᏥᏱ\t-12.1349\n▁ᏗᏧᎪᏙᏗᏱ\t-12.1349\n▁ᎤᏍᏓᏩᏗᏓᏍᏗᏱ\t-12.1349\n▁ᎢᎪᏢᏅᎯ\t-12.1349\n▁ᎢᏍᏙᎯᏳᎲᏍ\t-12.1349\nᏛᏁᎰᎲᏍᏗᏱ\t-12.1349\n▁ᏍᏆᏁᎳᏅᎯ\t-12.1349\n▁ᎡᏥᎪᎵᏰᏗᏱ\t-12.1349\n▁ᏳᏬᎳ\t-12.1349\nᏥᏓᎦᎸᎢᏒ\t-12.1349\n▁ᏏᏱᏆ\t-12.1349\n▁ᏯᎦᎵᏍᎨᎢ\t-12.1349\n▁ᏕᎨᏢᏔᏅᎭ\t-12.1349\n▁ᎦᎵᏬᎦ\t-12.1349\n▁ᎦᏅᎵᏰᏗ\t-12.1349\nnt\t-12.1349\n▁ᏫᏄᏛᏁ\t-12.1349\n▁ᏳᏩᎩᎸ\t-12.1349\nᏙᏅᎸᎢ\t-12.1349\n▁ᎠᏂᎸᏉᏗᏍᎬ\t-12.1349\n▁ᎨᏣᏛᎦᏁᎸ\t-12.1349\n▁ᏄᏓᏛᎩ\t-12.1349\n▁ᏫᎧᎳ\t-12.1349\n▁ᎤᎾᎵᏃᎮᎸ\t-12.1349\n▁ᏓᏥᏂᏴᎯ\t-12.1349\n▁ᎥᏆᎸᏍᏗᏱ\t-12.1349\n▁ᏚᏂᏍᏗᏰᏔᏁ\t-12.1349\n▁ᎪᏚᎢᏍᏛ\t-12.1349\n▁ᎤᎾᏗᏒᏅ\t-12.1349\n▁ᎤᏄᏬᎯᏍᏗᏱ\t-12.1349\n▁ᎨᏥᎶᏁᎥ\t-12.1349\n▁ᎦᏟᏐᏗ\t-12.135\n▁ᎠᎩᏂᏆᏘᎮᏍᏗ\t-12.135\nᏍᎪᎸᎪ\t-12.135\nᏥᎷᏨᎭ\t-12.135\n▁ᏯᏍᎦᏅᎪᎢ\t-12.135\n▁ᎤᎩᎸᏂᎸ\t-12.135\n▁ᏍᎩᎷᏤᎸᎭ\t-12.135\n▁ᎢᏥᎾᏰᏍᎩ\t-12.135\n▁ᏓᏓᏪᎳᎩᏍᎬ\t-12.135\n▁ᎣᏍᏓᏕᎭᏲᎲ\t-12.135\n▁ᎨᏥᎨᏳᎭ\t-12.135\n▁ᎠᏆᏚᏓᎸ\t-12.135\n▁ᏚᏃᏢᏩᏗᏒ\t-12.135\n▁ᏣᏓᏏᏂ\t-12.135\n▁ᎬᏋᏕᏨ\t-12.135\n▁ᏛᎠᏥ\t-12.135\nᏚᏓᏕᏫᏍᏛ\t-12.135\n▁ᏓᏥᏛᏔᏂ\t-12.135\nᎵᏲᎬ\t-12.135\n▁ᏕᏨᏲᎯᏎᎸ\t-12.135\n▁ᏚᏬᏒᎢ\t-12.135\n▁ᏗᏣᏓᏅᏛᎵ\t-12.135\n▁ᏱᏚᏚᎪ\t-12.135\n▁ᏣᏥᏐᏅ\t-12.135\n▁ᏍᎩᏲᎯᏏ\t-12.135\n▁ᏚᏂᏁᎦᎸ\t-12.135\nᏘᏂᏙᎲ\t-12.135\n▁ᎤᏓᏕᏲᏗᏱ\t-12.135\nᏍᎩᎧᏁᎸᎩ\t-12.135\n▁ᎤᎶᏒᏍᏕᏍᏗ\t-12.135\nᎧᎯᏰ\t-12.135\n▁ᏂᏚᏓᏅ\t-12.135\n▁ᎦᏄᎪ\t-12.1351\n▁ᎤᎭᏲᎴ\t-12.1351\n▁ᏚᎾᏌᎥ\t-12.1351\n▁ᎤᎾᏓᏂᏯᏛ\t-12.1351\n▁ᏦᎦᏤᎵᎦ\t-12.1351\n▁ᎬᏩᏃᎴᎢ\t-12.1351\n▁ᎠᏥᏍᏕ\t-12.1351\nᏂᎪᎵᏰᎠ\t-12.1351\n▁ᏱᏣᏕᎶᎰ\t-12.1351\n▁ᏧᏮᏔᏅ\t-12.1351\n▁ᎠᏂᎾᏄᎪᏫᏍᎩ\t-12.1351\n▁ᏱᏚᎴᏅ\t-12.1351\n▁ᏕᎧᏃ\t-12.1351\n▁ᏄᏜᏏᏛᎡᎲᎾ\t-12.1351\n▁ᏄᏲᎱᏒᎾ\t-12.1351\n▁ᏗᏥᎶᏓ\t-12.1351\n▁ᎨᏥᎾᏄᎪᏫᏒᎯ\t-12.1351\nᎾᏟᎶᎾ\t-12.1351\n▁ᏧᏐᏱᎭ\t-12.1351\nᎩᏍᏆᎸᏔᏅ\t-12.1351\nᎬᏩᎾᏓᏐᏢ\t-12.1351\n▁ᏱᏙᎨᏨ\t-12.1351\n▁ᏚᏂᎬᏨ\t-12.1351\n▁ᎢᏗᎪ\t-12.1351\nᏩᏛᎯᎸᎩ\t-12.1351\n▁ᏧᎾᏓᏙᎵᏍᏓᏁᏗᏱ\t-12.1351\nᏋᏂᏍᏗᏱ\t-12.1351\n▁ᎤᏧᏗᎭ\t-12.1351\n▁ᏱᎬᏲᏎᎭ\t-12.1351\nᏍᏛᏗᏍᏔᏂ\t-12.1351\nᏛᎨᏣ\t-12.1351\nᏍᏆᏛᎦᏍᏓᏏ\t-12.1351\n▁ᎤᏂᏃᏍᎩᏍᏗᏱ\t-12.1351\n▁ᎦᏰᏥᏐᏢᏔᏅ\t-12.1351\nᏴᏋᏁᎸᎯ\t-12.1351\nᏩᎾᏖ\t-12.1351\n▁ᏧᏲᏨ\t-12.1351\n▁ᏱᏄᏛᏁᎸ\t-12.1351\n▁ᏥᏯᏄ\t-12.1351\n▁ᎤᎬᏫ\t-12.1351\nol\t-12.1352\nᎦᏂᎩᏍᏔᏁᎢ\t-12.1352\n▁ᏙᏛᎦᎴ\t-12.1352\nᏑᎵᎪᏤ\t-12.1352\n▁ᎯᏯᏘᏄᎦ\t-12.1352\n▁ᎾᎾᎵᎮᎵ\t-12.1352\n▁ᏥᏚᎴᏔᏁᎢ\t-12.1352\n▁ᏭᏂᎷ\t-12.1352\n▁ᎠᏥᏩᏛᎡᎸᎭ\t-12.1352\n▁ᎢᏗᏁᎬ\t-12.1352\n▁ᏍᏆᏛᏅᎢᏍᏓᏁᎸᎭ\t-12.1352\nᏚᎧᎿᏩᏗᏙᎲ\t-12.1352\n▁ᎠᏃᎯᏳᎲᏍᎦ\t-12.1352\n▁ᏗᏙᎳᏅᏍᏗ\t-12.1352\n▁ᏥᏅᏩᏍᏙᎢ\t-12.1352\n▁ᏴᎬᎩᎷᏥ\t-12.1352\n▁ᏪᏤ\t-12.1352\n▁ᏱᏗᏥᎸᏫᏍᏓᏁᎭ\t-12.1352\nᏗᏝᎥᏔ\t-12.1352\n▁ᎤᎾᎵᏓᎩ\t-12.1352\nᏛᏓᏍᏓᏁᎮᏍᏗ\t-12.1352\n▁ᎦᏃᏗᏍᎩ\t-12.1352\n▁ᏓᏘᏁᎮᏍᏗ\t-12.1352\n▁ᏕᎬᏩᏂᎮᎢ\t-12.1352\n▁ᎢᏥᏟᏌ\t-12.1352\n▁ᎠᏥᏁᏤᎴ\t-12.1352\n▁ᏦᏢᏅᎯ\t-12.1352\nᏕᎳᎰ\t-12.1352\n▁ᏄᏍᏗᏕᎦ\t-12.1352\n▁ᎠᏥᎧᏅ\t-12.1352\n▁ᎤᏂᏨᏅ\t-12.1353\n▁ᎤᎵᏍᎫᏫᏎᎸ\t-12.1353\n▁ᏗᎨᏥᎤᏍᏕᏎᏗ\t-12.1353\n▁ᏅᏗᎤ\t-12.1353\n▁ᎠᎹᏳᎸ\t-12.1353\n▁ᎣᎨᏅᏍᏗᏱ\t-12.1353\n▁ᏩᏂᎷᏨ\t-12.1353\n▁ᎢᎩᏍᏕᎵᏍᎬᎢ\t-12.1353\n▁ᎣᎦᏕᏯᏙᏗᎭ\t-12.1353\n▁ᏱᏚᏪ\t-12.1353\n▁ᎤᏁᏍᎨᎲᎢ\t-12.1353\n▁ᏂᎬᏩᏁᎸ\t-12.1353\n▁ᎵᏌ\t-12.1353\nᏓᎧᎭᏅ\t-12.1353\n▁ᎡᏍᎪᎵ\t-12.1353\n▁ᎢᏣᏓᎳᏫᏎᎸ\t-12.1353\n▁ᎣᎩᎪᏁ\t-12.1353\n▁ᎠᏓᏓᏅᏓᏗᏍᏗᏍᎩ\t-12.1353\nᏯᏍᏗ\t-12.1353\n▁ᎭᎵᏍᏕᎸ\t-12.1353\n▁ᏂᎦᏍᏕᏍᏗ\t-12.1353\nᏃᏢᏍᎩ\t-12.1353\n▁ᏥᎦᎳᎨ\t-12.1353\n▁ᏫᎦᏲᎩ\t-12.1353\n▁ᎠᏥᎵᎥᏂᎸ\t-12.1353\nᏚᎶᎯᏎᎴ\t-12.1353\n▁ᎦᏲᎩᏐᏢ\t-12.1353\n▁ᎠᏓᏙᎵᏍᏗᏍᎨᎢ\t-12.1353\n▁ᏄᏁᎲᎾ\t-12.1353\n▁ᏩᏆᏕ\t-12.1354\nᎬᏩᏂᏴᎮᏃ\t-12.1354\n▁ᏥᏓᏓᏬᏍᎬᎩ\t-12.1354\n▁ᎠᏥᏩᏛᎡᎸᎯ\t-12.1354\n▁ᎤᏂᎪᏙ\t-12.1354\n▁ᎬᏬᎯᏳᏅᎯ\t-12.1354\n▁ᎭᏈᎳ\t-12.1354\n▁ᎤᎾᏗᏍᎦᎳᏁ\t-12.1354\nᎵᎪᏚᏅ\t-12.1354\n▁ᎬᏩᎶᏁᏗ\t-12.1354\n▁ᎢᏤᏲᏗᏱ\t-12.1354\nᎩᏍᏗᏰᏗᏍᎬ\t-12.1354\n▁ᎠᏲᎰᏍ\t-12.1354\n▁ᏧᏂᎵᎡᎾ\t-12.1354\nᎦᎾᎯ\t-12.1354\n▁ᏕᎯᎦᏔᎭ\t-12.1354\n▁ᏍᎩᎨᎯᏙᎸ\t-12.1354\n▁ᏍᎩᏍᏓᏩᏛᏍᏗᏱ\t-12.1354\nᎩᎳᏫᏍᏗ\t-12.1354\n▁ᎤᎾᏕᎶᏆᎡ\t-12.1354\n▁ᎮᏙᎮᏍᏗ\t-12.1354\n▁ᎠᎾᏙᎴ\t-12.1354\n▁ᏗᏂᎧᎿᏩᏗ\t-12.1354\n▁ᎢᏥᏲᏍᏓ\t-12.1354\nᎷᏥᎴᎢ\t-12.1354\nᏃᎲᎳ\t-12.1354\n▁ᏍᎩᏯᏓᏅᏖ\t-12.1354\n▁ᎨᏯᏔᎯ\t-12.1355\nᎾᏢᏆ\t-12.1355\nᏓᏂᎸᏣ\t-12.1355\n▁ᎠᎩᎷᎳ\t-12.1355\n▁ᎤᏂᏯᏅᎮ\t-12.1355\n▁ᎷᏫ\t-12.1355\n▁ᎤᎾᏜᏏᏛᎡ\t-12.1355\n▁ᏚᎵᏏᎲᏒᎩ\t-12.1355\n▁ᏭᎾᏌᎾᎩ\t-12.1355\n▁ᎤᎾᏘᏅᏎ\t-12.1355\n▁ᏓᎾᏤᎨᏍᏗᏉ\t-12.1355\n▁ᎦᏓᏅᏖᎭ\t-12.1355\n▁ᏚᏅᎵᏰᎥ\t-12.1355\n▁ᏦᎯᏳᏎᏍᏗᏉ\t-12.1355\n▁ᎠᏓᏍᏕᎸᎯᏙᎯ\t-12.1355\nᏰᎶᎵ\t-12.1355\n▁ᎢᏣᏛᏓᏍᏓᏁᎮᏍᏗ\t-12.1355\n▁ᏯᏙᏢᎾ\t-12.1355\n▁ᎠᎩᏍᏓᏩᏛᏍᏗᏱ\t-12.1355\n▁ᎤᎶᏐᏂᏗ\t-12.1355\n▁ᎨᎬᏬᎣᏗ\t-12.1355\n▁ᎯᏗᎦᏔᎭ\t-12.1355\n▁ᏭᎩᏎ\t-12.1355\n▁ᏫᏗᎨᎦ\t-12.1355\n▁ᏥᎾᏆᏍᏗᏉ\t-12.1355\nᎩᏩᎯᏍᏙᏗ\t-12.1355\n▁ᏚᎭᎾᏬ\t-12.1355\n▁ᏱᏅᏛᏅᏁᎵ\t-12.1356\n▁ᏇᎴᏗ\t-12.1356\nᏰᎢᏍᏔᏁ\t-12.1356\n▁ᏧᏬᏑᎴᏗ\t-12.1356\n▁ᎡᏥᎥᏏ\t-12.1356\n▁ᎤᏓᏁᏟᏴᏍᏓᏁᎸ\t-12.1356\nᏚᎾᏟᏯᏛ\t-12.1356\n▁ᎤᎾᏠᏯᏍᏗ\t-12.1356\n▁ᎤᏄᏘ\t-12.1356\nᏕᎳᏍᏗ\t-12.1356\n▁ᏘᏅᏏᏗ\t-12.1356\n▁ᎤᎧᏨ\t-12.1356\n▁ᏥᏍᏆᎸᎾ\t-12.1356\n▁ᏗᏄᏪ\t-12.1356\nᎤᎸᎯ\t-12.1356\nᏓᎬᏅᏁᎵ\t-12.1356\n▁ᎩᎳᏋ\t-12.1356\nᏓᏢᏍᏛ\t-12.1356\nee\t-12.1356\n▁ᏚᏓᎥ\t-12.1356\n▁ᏩᎦᏘᏃᎸᎩ\t-12.1356\nᏫᏍᏔᏁᎲ\t-12.1356\n▁ᏓᎾᏓᏛᏛᎲᏍᎨ\t-12.1356\n▁ᏫᎣᎩ\t-12.1356\n▁ᎨᏥᏐᏅᎢᏍᏔᏅᎯ\t-12.1357\nᎬᏲ\t-12.1357\nᏂᏂᏴᎯ\t-12.1357\n▁ᏗᏣᏓᏂᎸᎢᏍᏗ\t-12.1357\n▁ᏱᏂᏨᏪᏎᎴ\t-12.1357\nᏅᎰᏁ\t-12.1357\n▁ᎤᎾᏅᏣᏛ\t-12.1357\nᏩᏗᏒᏂ\t-12.1357\n▁ᎤᏍᏗᏱᏛ\t-12.1357\n▁ᏚᏓᏟᏴᎮ\t-12.1357\nᏥᏂᏕᎯ\t-12.1357\n▁ᏱᏥᏰᎸᏍᎨᏍᏗ\t-12.1357\nᏓᏦᎳᏂᏒ\t-12.1357\n▁ᏱᏂᏣᏛᏁᎮᏍᏗ\t-12.1357\n▁ᏫᏗᎦᎦᏂ\t-12.1357\n▁ᏁᎭᏗ\t-12.1357\n▁ᏣᏓᏪᎵᎩᏍ\t-12.1357\n▁ᎤᏛᏕᏍᏗ\t-12.1357\n▁ᎤᏬᏟ\t-12.1357\n▁ᏗᎩᎧᎿᏩᏛᏍᏗ\t-12.1357\n▁ᏚᎵᏍᎪᎸᏓᏁᎴ\t-12.1357\nᏄᏪᏍᏗᏱ\t-12.1357\n▁ᎢᏣᏕᏘᏴᏛ\t-12.1357\nᏫᏍᏓᏁᏗ\t-12.1357\nᎳᏲᏍᎨ\t-12.1357\n▁ᎢᎩᏁᏤᎸ\t-12.1357\n▁ᏭᏩᏂᎦᎸ\t-12.1357\nᎵᏁᏌᎸ\t-12.1357\n▁ᎠᎵᏃᎯᏯ\t-12.1357\n▁ᎢᏧᏅᏁᎸᎯ\t-12.1357\n▁ᏫᏂᏣ\t-12.1357\n▁ᎠᏙᏑᎴᏗᏱ\t-12.1357\n▁ᎠᏟᏅᏨ\t-12.1357\n▁ᎠᎾᏓᏃᎮᎵᏙᎯ\t-12.1357\n▁ᎠᎩᏍᏕᎸᏛ\t-12.1357\n▁ᎤᏔᏲᏎᎸ\t-12.1357\n▁ᏗᏑᏴᏅ\t-12.1357\n▁ᎠᎾᎵᏍᎦᏍᏙᏗᏍᎨᏍᏗ\t-12.1357\nᎾᏁᏍᎬ\t-12.1357\n▁ᎤᎾᏨᏉ\t-12.1357\n▁ᎠᎩᏍᏆᎸᎡ\t-12.1357\n▁ᏧᎴᏙᏗᏱ\t-12.1357\n▁ᎠᏛᏲᎱᏏ\t-12.1357\n▁ᎠᏖᎸᏅᎯ\t-12.1357\n▁ᎤᏂᏄᎪᏫᏎ\t-12.1357\nᏄᏂᏪᏒᎩ\t-12.1358\n▁ᎠᎪᏎᎲᎩ\t-12.1358\n▁ᎠᏆᎫᏴᎡᎲᎢ\t-12.1358\n▁ᎠᏓᏛᏍᎪᎢ\t-12.1358\n▁ᎤᎾᎦᏙᏍᏙᏗ\t-12.1358\nᏓᏬᏔᏂ\t-12.1358\n▁ᏱᏙᎩᎸᏫᏍᏓᏁᎭ\t-12.1358\n▁ᏚᏂᎳᏫᏤ\t-12.1358\n▁ᎠᏂᏴᎯᎭ\t-12.1358\n▁ᎠᏛᎵᏍᎬ\t-12.1358\n▁ᎤᏂᏍᏙᎸ\t-12.1358\n▁ᏧᏭᎪᏓᏁᏗ\t-12.1358\n▁ᎠᎵᎮᎵᏤᎰᎢ\t-12.1358\n▁ᏱᏭᎷᏨ\t-12.1358\n▁ᏫᏥᏩᏛ\t-12.1358\n▁ᎤᏯᏍᎦ\t-12.1358\n▁ᎤᏓᏅᎦᎸᏗ\t-12.1358\n▁ᏘᏂᏴ\t-12.1358\n▁ᏂᏚᏛᏓᏍᏓᏁ\t-12.1358\n▁ᏳᏰᏨ\t-12.1358\n▁ᎠᏉᏚᎯ\t-12.1358\n▁ᎠᎾᏦᎥ\t-12.1358\n▁ᎯᏍᏆᎵ\t-12.1358\n▁ᎠᏍᎪᎩᏍᎬ\t-12.1358\n▁ᎠᏂᏝᎲᏍᎪ\t-12.1358\nᎧᎯᏴᏍᏗ\t-12.1358\n▁ᎠᏓᏍᏕᏓᎵᏴᏍᎬ\t-12.1358\n▁ᏱᏂᏨᎦ\t-12.1358\nᏓᏁᎳᏁᎸᎯ\t-12.1358\n▁ᎤᏁᏍᎨᎲᎯ\t-12.1358\n▁ᎡᎩᏁᏗᏱ\t-12.1358\n▁ᏥᏁᎢᏍᏓ\t-12.1358\n▁ᎤᏎᎦᎳᎯ\t-12.1358\n▁ᎣᎩᎶᏐᏅ\t-12.1359\n▁ᎠᏔᎸᎩᏓ\t-12.1359\n▁ᎤᏁᎢᏍᏔᏁᎴ\t-12.1359\n▁ᏥᏍᏓᏩᏕᎦ\t-12.1359\n▁ᏚᎩᎸᏔᏁ\t-12.1359\n▁ᎤᎾᎵᏃᎮᏔᏁ\t-12.1359\n▁ᎤᎦᏴᎳᏥᎶᏛ\t-12.1359\n▁ᎤᎾᎴᏲᎥ\t-12.1359\n▁ᎤᏓᏁᎪᏴᏓ\t-12.1359\n▁ᏧᎴᏁᎢ\t-12.1359\n▁ᎦᎵᎥᏂᎮ\t-12.1359\n▁ᎬᏩᏛᏁᎢ\t-12.1359\n▁ᎠᎩᏲᎱᎯᏎᎸᎯ\t-12.1359\n▁ᎠᏓᏅᎦᎸᏗ\t-12.1359\n▁ᏣᎦᎨᏅ\t-12.1359\nᏛᏓᏍᏓᏁᎯ\t-12.1359\n▁ᏚᏂᎸᏫᏍᏓᏁᎭ\t-12.1359\n▁ᎨᎵᏒᎭ\t-12.1359\nᏣᏢᏆ\t-12.1359\n▁ᎬᏩᏁᏄᎳᏍᏗᏍᎨ\t-12.1359\n▁ᎢᏯᏯᏖᏅ\t-12.1359\nᏥᏄᎪᏨ\t-12.1359\n▁ᏚᏂᏯᏪᎨ\t-12.1359\n▁ᎢᎬᏩᎵᏍᏔᏅᎯ\t-12.1359\n▁ᏫᎫᏓᎸ\t-12.1359\n▁ᏧᏂᏅᏬᏗᏱ\t-12.1359\n▁ᏄᏬᏚ\t-12.1359\n▁ᎤᏂᎦᎵᏴ\t-12.1359\n▁ᏣᏗᏥ\t-12.1359\n▁ᎠᏆᏎᎮᎲ\t-12.1359\n▁ᎤᎩᏍᏙᎡ\t-12.136\nᏍᏕᎵᏍᎨᏍᏗ\t-12.136\nᏚᎳᏕ\t-12.136\n▁ᎯᎪᎢᎦ\t-12.136\n▁ᎤᏂᎾᏕᎨ\t-12.136\n▁ᎨᎦᏠᏯᏍ\t-12.136\n▁ᎤᏂᏁᏓᏥᏛ\t-12.136\n▁ᎢᏣᏓᏅᏔᏩᏕᎦ\t-12.136\n▁ᎤᏂᏍᏓᏩᏛᏛ\t-12.136\n▁ᎠᏂᏃᏔᏅ\t-12.136\n▁ᏴᎦᏰᎳ\t-12.136\nᎪᏔᏂ\t-12.136\n▁ᎢᏗᎾᏌ\t-12.136\nᏍᏙᏴᏗ\t-12.136\n▁ᎢᏥᏂᏆᏘᎮᏍᏗ\t-12.136\n▁ᏚᏓᏬᎥ\t-12.136\n▁ᎤᏩᏅᏤ\t-12.136\n▁ᎠᏆᎵᏂᎩᏛ\t-12.136\n▁ᎠᏂᏍᏔᏩᏗᏒ\t-12.136\nᏃᏍᎩᏒᎩ\t-12.136\n▁ᏯᏆᏛᎾ\t-12.136\n▁ᎦᎾᏌᎢ\t-12.136\n▁ᎬᏩᏔᏲᏎᎯ\t-12.136\n▁ᏭᎴᏅᎮ\t-12.136\n▁ᎠᏲᎱᏍᎨᎢ\t-12.136\n▁ᏗᏉᏪᎳᏅ\t-12.136\nᏤᎸᏍᎦ\t-12.136\n▁ᎬᏩᏓᏅᏬᏗ\t-12.136\n▁ᏚᎾᎵᏥ\t-12.1361\n▁ᎤᏃᎯᏴᎯ\t-12.1361\n▁ᎾᎦᏛᏁᎸ\t-12.1361\n▁ᏓᏤᎴᏍᏗ\t-12.1361\nᏁᏄᎳᏍᏗᏍ\t-12.1361\n▁ᏥᏚᎳᏍ\t-12.1361\n▁ᎠᏊᏓᎴ\t-12.1361\n▁ᎯᎪᎥᎯ\t-12.1361\n▁ᎠᎦᏓᎢᏅ\t-12.1361\nᏂᎩᏍᏙᏗᏱ\t-12.1361\n▁ᎤᎾᏠᎾᏍ\t-12.1361\n▁ᎠᏂᎦᏔᎿᎥ\t-12.1361\n▁ᎢᎩᏯᎥᎢ\t-12.1361\nᏍᎩᎨᏳ\t-12.1361\n▁ᏕᎨᏥᏰᎸ\t-12.1361\n▁ᏱᏦᎯᏳᎲᏍᎦ\t-12.1361\n▁ᏚᏂᏪᏎᎸᎩ\t-12.1361\n▁ᎤᏅᎾᏏ\t-12.1361\n▁ᏂᎦᏍᏛ\t-12.1361\n▁ᎤᏂᏍᏓᏩᏕᏅ\t-12.1361\n▁ᎢᏍᏓᎵᏍᏓᏴᏔᏅᎩ\t-12.1361\nᏗᏍᏓᏚᏓ\t-12.1362\n▁ᎢᎩᎩᎵᏲᏤ\t-12.1362\n▁ᎨᏙᎯᏉ\t-12.1362\n▁ᎠᏓᏛᏂᏗᏍᎩ\t-12.1362\n▁ᎤᏄᏖᏒᎩ\t-12.1362\n▁ᏃᎩᏅᏁᎸᎩ\t-12.1362\n▁ᏫᏥᎪᎥᎩ\t-12.1362\n▁ᎠᏍᏆᏗᏍᎬ\t-12.1362\n▁ᏚᏂᎦᎵᏒᎩ\t-12.1362\nᏬᏗᎭ\t-12.1362\n▁ᎠᏥᎸᏉᏓ\t-12.1362\n▁ᏧᎷᏫᏍᏓᏁᏗ\t-12.1362\n▁ᏭᏘᏅᏍᏔᏅᎩ\t-12.1362\n▁ᏗᏟᏃᎮᏙᏗ\t-12.1362\n▁ᏧᏛᏅᎢᏍᏔᏁ\t-12.1362\n▁ᏗᏣᎧᏃᏗᏱ\t-12.1362\n▁ᎠᏂᏍᏙᏍᎨᏍᏗ\t-12.1362\nᎵᏗᏍᎩᏍᎬ\t-12.1362\nᏄᎪᏓᏁᎮᏍᏗ\t-12.1362\n▁ᏫᏚᏓᏴᎳᏛ\t-12.1362\nᏏᏛᏂᎸᎩ\t-12.1362\n▁ᎦᎾᎪᎢ\t-12.1363\n▁ᎤᏂᏰᏣ\t-12.1363\nᎯᏯᏍᎨᏍᏗ\t-12.1363\n▁ᏂᎦᏪᏍᎨᏍᏗ\t-12.1363\nᏖᎸᎲᏍᎩ\t-12.1363\nᎴᏲᎡᎸ\t-12.1363\n▁ᎤᎸᎲᎩ\t-12.1363\n▁ᎤᏚᎢᏍᏔᏁ\t-12.1363\n▁ᎠᏙᎩᏯ\t-12.1363\n▁ᏓᏏᎳᏛᎥᏍᎬ\t-12.1363\nᎩᎷᏤᎭ\t-12.1363\n▁ᏂᎦᏛᏁᎰ\t-12.1363\nᏝᏗᏍᏔᏂᏙ\t-12.1363\n▁ᎠᏥᎶᏛ\t-12.1363\n▁ᎠᏯᏙᎵᏳ\t-12.1363\n▁ᎤᏂᎪᏗᏱ\t-12.1363\n▁ᏚᏩᏐ\t-12.1363\n▁ᎠᏍᏛᎪᏒ\t-12.1363\n▁ᏘᎴᏂ\t-12.1363\n▁ᏗᎵᏰᎢᎸᏍᏗᏍ\t-12.1363\n▁ᏥᏍᏆᏙᎾ\t-12.1363\nᎵᏆᏗ\t-12.1363\n▁ᎬᏩᏜᏫᏍᏗ\t-12.1363\n▁ᏕᎦᏚᏓᏕᏫᏒᏰᏃ\t-12.1364\n▁ᏓᎾᎪᎲᏍᏗᏍᎨ\t-12.1364\n▁ᏥᎨᏔ\t-12.1364\n▁ᎦᎵᏉᎩᏦᏁ\t-12.1364\n▁ᎤᏁᎷᎩ\t-12.1364\nᏐᏢᏗᏍᎩ\t-12.1364\n▁ᎠᎴᏫᏍᏙᏗ\t-12.1364\nᎫᎫ\t-12.1364\n▁ᏱᏣᏅᏔ\t-12.1364\nᎦᏅᎦᎸᎯ\t-12.1364\n▁ᏗᏟᏰᎵᏓᏍᏗ\t-12.1364\n▁ᎬᏩᏳᏤ\t-12.1364\n▁ᎣᎨᏅ\t-12.1364\n▁ᎨᏥᏍᎦᏨᎯ\t-12.1364\nᎦᎨᎠᏗᏔᏍᏗ\t-12.1364\n▁ᏥᎧᏁᎦ\t-12.1364\nce\t-12.1364\n▁ᏗᎾᎢᏎ\t-12.1364\n▁ᏱᏂᏣᏛᎦ\t-12.1364\n▁ᏕᎬᏂᎦ\t-12.1364\nᎤᎾᏚᏓᏖᏍᏗ\t-12.1364\nᎾᏙᏢ\t-12.1364\n▁ᎯᏃᎮᏍᎨᏍᏗ\t-12.1364\n▁ᎡᏟᏯ\t-12.1364\n▁ᎤᏥᏍᏔᏁ\t-12.1365\nᏝᎲᎦ\t-12.1365\n▁ᏍᎩᎨᏳᎮᏍᏗ\t-12.1365\n▁ᎬᏬᎯᏳᏗ\t-12.1365\n▁ᎡᎯᏄᎪᎢ\t-12.1365\n▁ᏕᎨᎦᏬᎥ\t-12.1365\nᏓᏓᏟᏌᏁ\t-12.1365\nᏩᏛᎡᎯ\t-12.1365\n▁ᎤᎾᎧᏙᏍᏕ\t-12.1365\nᏐᏈ\t-12.1365\n▁ᎠᏍᏕᏴ\t-12.1365\n▁ᏗᏂᏙᎩ\t-12.1365\n▁ᎬᏍᏕᎵᏍᎬ\t-12.1365\nᎭᏦᎣ\t-12.1365\n▁ᏓᏎᎯ\t-12.1365\n▁ᎤᎵᏇᏅ\t-12.1365\n▁ᎣᏤᎪ\t-12.1365\nᏓᏛᏂᎯ\t-12.1366\n▁ᎢᏤᏯᏙᏤᎮᏍᏗ\t-12.1366\n▁ᎠᏯᏂᎭ\t-12.1366\n▁ᏯᏥᎸ\t-12.1366\n▁ᏧᎷᎸᏗᏱ\t-12.1366\n▁ᏥᎾᎬᏁᎴ\t-12.1366\n▁ᏱᏄᎵᏍᏓᏁᎮ\t-12.1366\n▁ᏗᎦᏯᎩᏍᏗ\t-12.1366\nᎩᎾᎵᏍᎩᏒ\t-12.1366\n▁ᏚᏯᏪᏨ\t-12.1367\nᎩᏪᎡᎸᎩ\t-12.1367\nᏗᎩᏯᏍᏗᏱ\t-12.1367\nᏩᏓᏟᏌ\t-12.1367\n▁ᎯᏁᏥᏱ\t-12.1367\n▁ᏂᏙᎲᏁ\t-12.1367\n▁ᎤᏲᏏᏍᎩ\t-12.1367\n▁ᎢᏥᎩᎵᏲᎢᏍᏗᏱ\t-12.1367\n▁ᎠᎾᏓᏙᎵᏍᏓᏁᎲ\t-12.1367\nᏥᏩᏛᎲᏒᎩ\t-12.1367\n▁ᏣᏛᎦᏅᎢ\t-12.1367\n▁ᏱᏚᏃᏕ\t-12.1367\n▁ᎠᎪᎲᏍᏙᏗᏱ\t-12.1367\n▁ᎤᏟᏃᎮᏔᏅ\t-12.1368\nᏇᏄᎩ\t-12.1368\nᏦᏪᎳᏁᎸ\t-12.1368\n▁ᏥᏚᎢᏍᏗ\t-12.1368\n▁ᏓᏥᏐᏅᏅ\t-12.1368\n▁ᏣᎴᏂᏓᏍᏗᏱ\t-12.1368\nᏝᏁᎴᎢ\t-12.1368\n▁ᏭᏩᏁ\t-12.1368\n▁ᎢᎯᏴᏁᏗᏱ\t-12.1368\n▁ᏯᏆᏓᏅᏖ\t-12.1368\nᏛᏔᏃᏅ\t-12.1368\nᏓᎦᏥᏴᏁᎵ\t-12.1368\n▁ᏚᏮᏕ\t-12.1368\n▁ᎤᏂᏍᏉᎵᏱ\t-12.1368\n▁ᏭᏗᏅᏒᎩ\t-12.1368\nᎦᏐᎠᏒᎩ\t-12.1368\n▁ᎯᏲᏍᏓ\t-12.1368\nᏠᎲ\t-12.1368\n▁ᏛᏂᏍᏓᏩᏕᏏ\t-12.1369\n▁ᏗᏥᏅᏍᏓᏕᎸᎩ\t-12.1369\n▁ᎯᏬᏁᏔᏅ\t-12.1369\n▁ᎠᏁᎵᏍᎩ\t-12.1369\nᏬᎥᏎ\t-12.1369\nᏂᏴᏗᎯ\t-12.1369\nᎸᎣᎢ\t-12.1369\n▁ᎠᏥᏲᏍᏗ\t-12.1369\n▁ᎤᏛᏅᎢᏍᏔᎾ\t-12.1369\nᎾᏁᎳᏓ\t-12.1369\nᏂᏪᏍᎨᎢ\t-12.1369\n▁ᏱᎨᏥᎪ\t-12.1369\n▁ᏂᏨᏁᎭ\t-12.1369\n▁ᎠᎾᏓᏬ\t-12.1369\n▁ᏳᎦᏘᏓ\t-12.1369\n▁ᏗᏥᎪᎥ\t-12.1369\n▁ᎡᏥᏙᎵᏍᏗᏱ\t-12.137\n▁ᏦᏏᏆ\t-12.137\n▁ᏩᎦᏖᎢ\t-12.137\n▁ᎬᏯᎵᏃᎮᏙᏗᏱ\t-12.137\nᎱᏃᏴ\t-12.137\n▁ᏥᏗᎦᏔᎭ\t-12.137\n▁ᏱᏗᎬᎩ\t-12.137\n▁ᎠᏓᎶᏄᎮᏍᎩ\t-12.137\n▁ᎯᎪᏩᏘᏍᎨᏍᏗ\t-12.137\n▁ᎤᎾᏌᎥ\t-12.137\nᏅᏛᎢ\t-12.137\n▁ᏂᎦᎨᏒ\t-12.137\n▁ᏯᏥᏃᏍᎩ\t-12.137\n▁ᏧᏂᎪᎵᏰᏗ\t-12.137\nᏤᏪᎸ\t-12.1371\n▁ᏆᏏᏗᏱ\t-12.1371\n▁ᎤᏂᏁᏤᎸᎩ\t-12.1371\n▁ᏚᏓᏅᎡᎸᎩ\t-12.1371\nᎾᏓᏡᏩᏗᏒᎢ\t-12.1371\n▁ᏣᎩᏰᎸᎭ\t-12.1371\nᏝᏅᎩ\t-12.1371\n▁ᎤᏟᏂᎬᏁᎴ\t-12.1371\n▁ᎤᎾᏁᏦ\t-12.1371\n▁ᎣᎩᏲᏍᏙ\t-12.1371\n▁ᎠᏂᏲᏍᏗᏍᎩ\t-12.1371\nᎨᎲᎯ\t-12.1371\n▁ᏚᏄᏓ\t-12.1371\n▁ᏙᎩᎲᎢ\t-12.1371\n▁ᎤᎾᏓᏓᏍᎩᏌᏁ\t-12.1371\nᎩᎸᏗᏍᎬ\t-12.1371\nᏁᎥᏏ\t-12.1372\n▁ᏚᏃᎮᎮᎴ\t-12.1372\nᎾᎵᏍᏓ\t-12.1372\nᏍᏆᏛᎦᏍᏓ\t-12.1372\n▁ᏕᎪᎩᏂ\t-12.1372\n▁ᎤᏚᏓᏕᏫᏒ\t-12.1372\n▁ᎯᎧᏔᎭ\t-12.1372\n▁ᎥᏆᎫᏴᎡ\t-12.1372\n▁ᏣᏅᏅᎢ\t-12.1372\n▁ᎢᎤᏁᏨ\t-12.1372\n▁ᏘᏍᏆ\t-12.1372\nᏍᏗᎷᎩ\t-12.1372\n▁ᏭᏃᎯᏎᎴ\t-12.1372\n▁ᎺᏌ\t-12.1372\n▁ᎯᏯᏠᏯᏍᏔᏅ\t-12.1372\nᎰᎻ\t-12.1372\n▁ᎤᏂᎦᏘᏯ\t-12.1372\n▁ᎠᏂᏍᎦᏅᎩ\t-12.1373\n▁ᏓᎹᏂ\t-12.1373\n▁ᏳᏪᏅ\t-12.1373\n▁ᎤᏄᏮᎢ\t-12.1373\n▁ᎾᎩᏲ\t-12.1373\n▁ᎠᏩᏛᏙᏗ\t-12.1373\n▁ᎤᏯᏤᎢ\t-12.1373\nᎪᎳᏗᏴᏗᏱ\t-12.1373\n▁ᏕᏥᏍᏕᎵᏍᎬᎢ\t-12.1373\n▁ᎤᏘᏍᏛᎢ\t-12.1373\n▁ᎠᏂᏯᏙᎯᎲᎢ\t-12.1373\n▁ᎢᏣᏓᏁᏟᏴᏎᎬᎢ\t-12.1373\n▁ᎤᎾᏄᎪᏤᎢ\t-12.1373\n▁ᎤᏂᏐᏅᏤᎴᎢ\t-12.1373\nᏓᏂᏙᎵᎬ\t-12.1373\n▁ᎠᎾᏓᏁᏟᏴᏎᎬᎢ\t-12.1373\n▁ᎥᏆᎸᎥᎢ\t-12.1373\n▁ᎤᎵᏯᏍᏚᏁᎢ\t-12.1373\n▁ᏕᏣᏁᎶᏛᎢ\t-12.1373\n▁ᏚᏪᎳᏍᏔᏁᎢ\t-12.1373\n▁ᏙᏗᎧᏅᎢ\t-12.1373\n▁ᏧᏬᎯᏳᏁᎢ\t-12.1373\n▁ᏂᏥᏪᏒᎢ\t-12.1373\n▁ᎨᏥᏛᏔᏁᎢ\t-12.1373\n▁ᏍᎩᎷᏤᏗᏱ\t-12.1373\n▁ᎡᏦᏎᎲᎢ\t-12.1373\n▁ᏚᏬᏁᏔᏅᎢ\t-12.1373\n▁ᎨᏥᎨᏳᎢ\t-12.1373\nᏂᏚᏑᏰᏐ\t-12.1374\n▁ᏍᎩᏰᎯ\t-12.1374\n▁ᏕᎨᏥᎾᏝᎥᎢ\t-12.1374\nᏃᎲᎵ\t-12.1374\n▁ᎤᏂᏂᏴᏛ\t-12.1374\nᏑᎵᎭ\t-12.1374\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎪᎢ\t-12.1374\n▁ᏫᏳᎶ\t-12.1374\n▁ᎢᏨᎨᏳᏒᎢ\t-12.1374\n▁ᎤᎵᎶᎲᏍᎩ\t-12.1374\nᏂᏁᎢᏍᏗ\t-12.1374\n▁ᏴᏓᏥ\t-12.1374\n▁ᎬᏴᏗᏍᎬᎢ\t-12.1374\n▁ᎢᎩᏬᏂᎯᏍᏗ\t-12.1374\n▁ᎭᎢᏒᎢ\t-12.1374\n▁ᎤᎴᏴᏎᎢ\t-12.1374\n▁ᏚᎵᏦᏛᎢ\t-12.1375\n▁ᎤᎦᏙᏍᏛ\t-12.1375\n▁ᏙᏓᏦ\t-12.1375\n▁ᏧᏅᏕ\t-12.1375\n▁ᏚᏨᏍᏛ\t-12.1375\n▁ᎠᏂᎧᎲᏍ\t-12.1375\n▁ᏥᏔᏲᎯᎲ\t-12.1375\n▁ᏥᏩᏴᎯ\t-12.1375\n▁ᎠᏆᏛᏅᎢᏍᏔᏅ\t-12.1375\n▁ᏛᎦᏛᎩ\t-12.1375\n▁ᏓᏆᏙᏍᏛ\t-12.1375\n▁ᎢᎦᏤᎵᎪᎯ\t-12.1375\nᏍᏕᎲ\t-12.1375\n▁ᎤᏩᏩᏙᎣ\t-12.1375\nᏔᏗᏍᎬ\t-12.1375\nᏂᏔᎳᏬᏍᎬ\t-12.1375\n▁ᎤᎨᎲᏎ\t-12.1375\n▁ᏗᏍᎩᏯᏓᏂᎸᎩ\t-12.1375\nᏑᎵᏍᎬᎢ\t-12.1375\n▁ᏂᎪᎩᏪᏎ\t-12.1375\n▁ᏗᏍᏙᏍ\t-12.1376\n▁ᎦᎵᏓᏍᏔᏅ\t-12.1376\n▁ᎠᎫᎢᏍᏗᏍᎬᎢ\t-12.1376\n▁ᏚᏃᎮ\t-12.1376\n▁ᏳᏩᏔᏅ\t-12.1376\n▁ᏂᎨᏐ\t-12.1376\n▁ᏅᏓᏲ\t-12.1376\n▁ᏗᏣᎸᏫᏍᏓᏁ\t-12.1376\n▁ᏕᎦᎾᏄᎪᏫᏎ\t-12.1376\nᎴᏴᏍᏓ\t-12.1376\n▁ᎢᏧᏅᏁᏗᏱ\t-12.1376\n▁ᏭᏗᏢᏍᏔᏁᎢ\t-12.1376\nᏧᏡᏍ\t-12.1376\n▁ᏚᎾᏗᏅᏎ\t-12.1376\n▁ᏖᏏ\t-12.1376\n▁ᎬᏩᏍᏚ\t-12.1376\nᏰᎥ\t-12.1377\n▁ᎦᎴᏴ\t-12.1377\n▁ᎥᎿ\t-12.1377\n▁ᏧᏂᎶᏎᎢ\t-12.1377\n▁ᏚᎾᏐᎸ\t-12.1377\nᏌᏗᎦ\t-12.1377\n▁ᎤᏂᎿᎷᏒ\t-12.1377\n▁ᎠᏆᎴᏅᎲ\t-12.1377\n▁ᏓᎾᏣ\t-12.1377\n▁ᎥᎩᎱᏍᏕᏎᎸ\t-12.1377\n▁ᏧᏍᏆᏃᏴᎪ\t-12.1377\n▁ᏥᏄᎾᎵᏍᏔᏅ\t-12.1377\n▁ᏩᏂᎶᎯ\t-12.1378\n▁ᎠᏆᎴᏂᏓᏍᏗᏱ\t-12.1378\n▁ᏣᏝᎮ\t-12.1378\n▁ᎬᏩᏍᏕᎵᏍᎩ\t-12.1378\n▁ᎤᏄᏢᏔᏅᎩ\t-12.1378\nᎦᎵᏍᏗᏰᏓᏁᎭ\t-12.1378\n▁ᏓᏁᎨ\t-12.1378\n▁ᏳᏗᏛᎭ\t-12.1378\nᏂᏉᏘ\t-12.1378\n▁ᏕᏥᏁᎮᏍᏗ\t-12.1378\n▁ᏯᎾᏌ\t-12.1378\n▁ᎬᏩᏍᏓᏩᏗᏙᎮ\t-12.1378\n▁ᎠᏁᏙᎵᏙ\t-12.1378\n▁ᏫᏨᎷᏤᎸ\t-12.1378\n▁ᎢᏣᏛᏁᎸᎩ\t-12.1378\nᏥᏯᎵᏗᎡ\t-12.1378\nᏥᏌᎳᏓᏅᎭ\t-12.1378\n▁ᏗᏨᏳᎪᏓᏁᏗ\t-12.1379\n▁ᏱᏃᏣᏛᏁ\t-12.1379\n▁ᎤᏛᎾᏗᎦᎳᏫᎢᏍᏗᏱ\t-12.1379\n▁ᏓᏣᎾᏄᎪᏫᏎᎵ\t-12.1379\nᏥᏙᎵᏨᎯ\t-12.1379\nᏚᎪᏓᏁᎸ\t-12.1379\nᏥᏍᏓ\t-12.1379\n▁ᏗᏂᏁᎳ\t-12.1379\n▁ᎤᏪᏯᏢᏁ\t-12.1379\n▁ᎠᎾᏙᎴᎰᏍᏗ\t-12.1379\n▁ᎠᏂᎩᏌ\t-12.1379\n▁ᏱᏂᏨᏁᎸ\t-12.1379\n▁ᎤᏂᏍᏆᏂᎪᏍᎨᎢ\t-12.1379\n▁ᏚᏲᎵᎴ\t-12.1379\nᎵᎥᏂᏍᏗᏱ\t-12.1379\n▁ᎢᏧᏩᏁᎸᎯ\t-12.1379\n▁ᏚᏬᏕᎯᎰᎢ\t-12.1379\n▁ᏍᎩᏂᏙᎵᎩ\t-12.1379\n▁ᏧᏂᎪᏩᏛᏗ\t-12.138\nᏅᏏᏙ\t-12.138\n▁ᎬᏩᏂᏆᏘᎴᎢ\t-12.138\n▁ᎢᏤᏅᏒᎩ\t-12.138\n▁ᎠᏂᏰᎵᏒ\t-12.138\nᎵᏰᎢᎶᎦ\t-12.138\n▁ᎤᏠᏯᏍᏙᏗᏱ\t-12.138\n▁ᎦᎾᏄᎪᏫᏍᎬ\t-12.138\n▁ᏙᏓᏨᏲᏏ\t-12.138\n▁ᏚᏍᏔᏅᏅ\t-12.138\n▁ᏣᎢᏎᎢ\t-12.138\n▁ᏙᏛᏂᎵ\t-12.138\n▁ᎦᎾᎱᎩᏍᎬ\t-12.138\n▁ᏍᎩᏲᎮᎸᎭ\t-12.138\n▁ᏗᏣᎸᏫᏍᏓᏏ\t-12.138\n▁ᏗᏥᎸᏫᏍᏓᏏ\t-12.138\n▁ᎭᎴᏫᏍᏓ\t-12.138\n▁ᏙᏓᎬᏩᏂᎾᏢᏂ\t-12.138\n▁ᎤᎵᏍᏛᏂᎴᎢ\t-12.138\n▁ᏂᎬᏩᏅᎿᏕᎬ\t-12.138\n▁ᎤᎿᏍᎬᏤ\t-12.138\n▁ᎭᏓᏄᏖᏯ\t-12.138\n▁ᎯᏄᏴᏓ\t-12.138\n▁ᎾᏋᏁᎭ\t-12.138\nᏓᏅᎦᎸᎾ\t-12.138\n▁ᎤᏂᏂᎬᎬ\t-12.138\n▁ᎤᏄᏬᏍᏛᎩ\t-12.138\n▁ᏮᏓᏨᎷᏤᎵ\t-12.138\n▁ᏥᏯᏎᎵᏓᏁᎸ\t-12.138\n▁ᎬᏩᏛᎦᏁᎸᎯ\t-12.138\nᏆᎭᎻ\t-12.138\n▁ᏓᎩᎷᏫᏍᏔᏁ\t-12.138\n▁ᏥᎩᎵᏲᎦ\t-12.138\n▁ᎠᏂᏥᎸᏍᎩ\t-12.138\nᏑᎴᎥᎯ\t-12.138\nᏴᎲᎭ\t-12.138\n▁ᏓᏛᎩᎭ\t-12.1381\n▁ᏥᏆᎵᏏ\t-12.1381\n▁ᏫᏂᎨ\t-12.1381\n▁ᏧᏭᎪᏓᏁᏗᏱ\t-12.1381\n▁ᎦᏅᏁᎮᏍᏗ\t-12.1381\n▁ᏳᏓᎸ\t-12.1381\n▁ᎤᏓᏱᎸᎩ\t-12.1381\n▁ᎩᏯᏒᎦᎶᏗ\t-12.1381\n▁ᎧᏃᎨ\t-12.1381\n▁ᏧᏃᏪᎳᏅᎯ\t-12.1381\n▁ᏓᏍᎫᏓᏛ\t-12.1381\n▁ᏭᎦᏖ\t-12.1381\nᏓᏲᏤᎳᏍᏔᏂ\t-12.1381\n▁ᏂᎦᎵᏍᏔᏂᎦ\t-12.1381\n▁ᎤᎩᎶᏫᏎ\t-12.1381\n▁ᎤᏤᎸᎲ\t-12.1381\n▁ᏱᏯᎡ\t-12.1381\n▁ᏗᏯᏠ\t-12.1381\n▁ᎤᎾᏛᎦᏁᎸ\t-12.1381\nᎯᏌᏔᏁᎢ\t-12.1381\n▁ᎤᏓᏂᏯᏛ\t-12.1381\n▁ᏕᎤᎸᏫᏍᏓᏁᎭ\t-12.1381\n▁ᏓᏓᎾᏄᎪᏫ\t-12.1382\n▁ᏱᏙᎬᏂ\t-12.1382\n▁ᏛᏂᏍᏗᏍᎩ\t-12.1382\n▁ᏤᏅᏒᎩ\t-12.1382\n▁ᏅᏆᏓᎴᏉ\t-12.1382\n▁ᏚᏫᏎᎢ\t-12.1382\nᏅᏩᏅᎯ\t-12.1382\n▁ᏗᎨᎶ\t-12.1382\n▁ᏳᎾᏚᎵᎭ\t-12.1382\n▁ᎤᎾᏓᏈᎬ\t-12.1382\n▁ᏂᎬᏂᏏᎭ\t-12.1382\n▁ᏦᎳᎻ\t-12.1382\n▁ᏚᎾᏂᏏ\t-12.1382\nᏏᏛᏒᎾ\t-12.1382\n▁ᎤᏓᏙᎵᏍᏓᏁᎸᎩ\t-12.1382\n▁ᏓᎦᎵᏬᏥ\t-12.1382\n▁ᎦᏝᏗ\t-12.1382\nᏗᏁᎸᏙᏗ\t-12.1383\nᎳᏫᏎᎰ\t-12.1383\n▁ᎢᏥᏍᏕᎸᏗᏱ\t-12.1383\nᏂᏔᏲᏎᏗᏱ\t-12.1383\n▁ᎠᏯᏠ\t-12.1383\n▁ᎦᎾᎡ\t-12.1383\n▁ᎤᏂᎵᏓᏍᏔᏅ\t-12.1383\n▁ᎬᏬᎵᏍᏗ\t-12.1383\n▁ᏧᎾᏄᎪᏫᏎᎸᎯ\t-12.1383\n▁ᎠᏥᏃᎮᎭ\t-12.1383\n▁ᏇᎵᏂ\t-12.1383\n▁ᏗᎩᎡᏗᏱ\t-12.1383\nᏢᏉᏙᏗ\t-12.1384\n▁ᎹᏓᏂ\t-12.1384\n▁ᎠᏂᏗᏢᏉ\t-12.1384\n▁ᎤᏓᏙᎵᏍᏔᏅᏎᎢ\t-12.1384\n▁ᎢᏥᏍᎦᎩ\t-12.1384\n▁ᏧᏦᏗ\t-12.1384\n▁ᏧᏓᏂᏐᏗᏱ\t-12.1384\n▁ᏗᏍᏙᏍᏗ\t-12.1384\n▁ᎭᎹ\t-12.1384\n▁ᎦᎷᎨ\t-12.1384\nᏍᏙᏍᎨᏍᏗ\t-12.1385\n▁ᏌᎹ\t-12.1385\nᏍᏓᏊ\t-12.1385\n▁ᎤᏂᏁᎦᎸ\t-12.1385\n▁ᏳᏂᏃᎮᎴ\t-12.1385\n▁ᏥᏕᎦᏘ\t-12.1385\n▁ᎬᏩᎷᎯᏍᏗ\t-12.1385\n▁ᏥᏫᏗᎦ\t-12.1385\n▁ᏥᏫᏍᎪᎢ\t-12.1385\n▁ᎦᏥᎦᏔᎭ\t-12.1385\nᏗᎦᏣᏃᏍ\t-12.1385\n▁ᏚᏬᏯᏁᏎᎢ\t-12.1385\nᏑᎴᎭ\t-12.1386\nᏂᏙᎭ\t-12.1386\n▁ᏓᏆᏢ\t-12.1386\n▁ᎦᎵᏥᏙᏅ\t-12.1386\n▁ᏳᎪᏩᏛ\t-12.1386\n▁ᏕᏣᏓᏛᏗᏍᎬ\t-12.1386\nᏙᎵᏥᏰᏃ\t-12.1386\nᏮᏔᏁᎢ\t-12.1386\nᏏᏗᏢ\t-12.1386\n▁ᏂᎬᏂᏌ\t-12.1386\n▁ᎠᎾᏨᏍ\t-12.1386\n▁ᏱᏂᏪᏍᎨᏍᏗ\t-12.1386\nᏛᎪᏙᏗ\t-12.1386\n▁ᏓᏗᏩᏛᎯ\t-12.1386\n▁ᎤᎾᎵᏍᏓᏴᏅ\t-12.1387\n▁ᏗᏧᎪᏔᏅ\t-12.1387\nᏱᏣᎸᏂᏗᏍ\t-12.1387\n▁ᎤᏔᏃ\t-12.1387\n▁ᎠᎱᏢᏛ\t-12.1387\n▁ᏗᏥᏴᏏ\t-12.1387\n▁ᏂᏚᏅᎿᏕ\t-12.1387\n▁ᎤᏂᏍᏓᏩᏛᏒᎩ\t-12.1387\n▁ᎨᏥᏍᎦᏅᏤ\t-12.1387\n▁ᏭᏂᎷᎯᏍᏗᏱ\t-12.1387\nᏓᏲᎯᏏ\t-12.1387\n▁ᎤᏂᏍᎦᎸᎩ\t-12.1387\n▁ᏚᏂᎾᏗᏅᏎ\t-12.1387\n▁ᎺᏌᏯ\t-12.1387\n▁ᏓᎦᏘᏴ\t-12.1387\n▁ᎦᎸᏉᏔᏅᎯ\t-12.1387\n▁ᎠᏍᎦᎢᎲ\t-12.1387\n▁ᎡᎩᏙᎵᏨ\t-12.1387\n▁ᏚᏂᏒᏅ\t-12.1387\n▁ᏴᎨᏗ\t-12.1388\n▁ᏣᎴᏫᏍᏔᏅ\t-12.1388\nᏁᏟᏴᏏ\t-12.1388\n▁ᏧᏛᏁᎢ\t-12.1388\n▁ᏧᏕᏁᎢ\t-12.1388\n▁ᏲᎩᎪ\t-12.1388\n▁ᎠᏥᏙᎵᏍᏗᏱ\t-12.1388\n▁ᏌᏆ\t-12.1388\n▁ᎠᏂᏃᏗᏍᎩ\t-12.1388\n▁ᏂᎦᎡ\t-12.1388\n▁ᎠᏆᏕᏅᎩ\t-12.1388\n▁ᎤᏂᏅᎪᎢᏍᏗ\t-12.1388\n▁ᎠᏂᎩᏍᎨ\t-12.1388\n▁ᏴᏧ\t-12.1388\n▁ᎨᏙᎮᏍᏗ\t-12.1388\n▁ᏱᏣᎵᏍᏓᏴ\t-12.1388\nᏏᏙᏂ\t-12.1389\n▁ᏄᏁᏤ\t-12.1389\n▁ᎢᏥᎦᏔᎯ\t-12.1389\nᎬᏯᎫᏴᎡᎸ\t-12.1389\nᏓᎾᏣᏅᏗᏍᎨᏍᏗ\t-12.1389\n▁ᏂᏗᎦᎸᏉ\t-12.1389\nᏑᎸ\t-12.1389\n▁ᎡᏥᎧᎵᎢ\t-12.1389\n▁ᎤᏂᎭᎷᎬ\t-12.1389\nᏚᎢᏍᏔᏅᎢ\t-12.1389\n▁ᎠᏂᎦᏯᎷᎥᏍᎩ\t-12.1389\n▁ᎤᏮᏗ\t-12.1389\n▁ᎠᏟᏃᎮᏙᏗ\t-12.1389\n▁ᎠᏓᏛᏍᎬ\t-12.1389\nᏯᎪᏗᏱ\t-12.1389\n▁ᏥᏓᎦᎴᏔᏁ\t-12.139\n▁ᏳᏂᎸᏉ\t-12.139\n▁ᎠᏥᎦᏘᏗᏍᏛ\t-12.139\n▁ᎤᏮᏗᏱ\t-12.139\n▁ᎠᏁᎸᏙᏗ\t-12.139\n▁ᏤᏍᏓ\t-12.139\n▁ᎠᏓᏙᎵᏍᏗᏍᎨᏍᏗ\t-12.139\nᏗᎦᎴᏲᏗ\t-12.139\n▁ᏚᏟᎶᏍᏔᏅ\t-12.139\n▁ᏦᏍᏓ\t-12.1391\n▁ᎪᎵᎦ\t-12.1391\n▁ᏭᎧ\t-12.1391\nᏲᏣᏃ\t-12.1391\n▁ᏅᏓᏩᏓᎴᏅ\t-12.1391\n▁ᏗᏛᏙᏗᏱ\t-12.1391\n▁ᎣᎨᎵᏒ\t-12.1391\n▁ᎤᏁᎩᏒᎩ\t-12.1391\n▁ᏥᎦᏔᎾᎥ\t-12.1391\nᏂᏔᏫ\t-12.1391\n▁ᏥᏂᎦᏪᎠ\t-12.1391\n▁ᏑᏕᏘᏴ\t-12.1392\n▁ᏣᎾᎵᏖᎸ\t-12.1392\n▁ᏅᏓᎦᏥ\t-12.1392\n▁ᏚᏩᏯ\t-12.1392\n▁ᏱᏓᎩᏯᏪ\t-12.1392\n▁ᎠᏕᎭᏲᎲ\t-12.1392\n▁ᎤᏩᎭᏂᎸ\t-12.1392\n▁ᏧᎾᎵᏍᏙᏗ\t-12.1392\nᎤᏲᎮᎴ\t-12.1392\n▁ᎠᏥᏍᏚᏗ\t-12.1392\n▁ᏫᏚᏘᏃᎴ\t-12.1392\n▁ᏧᏲᎱᏎ\t-12.1393\n▁ᏃᏈ\t-12.1393\n▁ᎤᎸᎴᎢ\t-12.1393\n▁ᎤᎵᏰᎢᎶᎸ\t-12.1393\n▁ᏥᎦᏥ\t-12.1393\n▁ᏥᏰᎿᎥ\t-12.1393\n▁ᎤᏁᏟ\t-12.1393\n▁ᎤᏪᏐ\t-12.1393\n▁ᎠᏍᎩᏓᏒ\t-12.1393\n▁ᏧᏙᎴᎰᏎ\t-12.1393\n▁ᎤᎵᏃᎮᏗᏍᎬ\t-12.1393\nᎮᎾᏂ\t-12.1393\nᏬᎯᏨ\t-12.1393\n▁ᎤᎾᎩᎸᏁ\t-12.1393\n▁ᎤᎾᏗᎦᎵ\t-12.1394\n▁ᎤᏃᏍᎩᏒᎢ\t-12.1394\nᎳᏫᏨ\t-12.1394\n▁ᎤᎵᏍᎦᏂᏍᏛ\t-12.1394\n▁ᎥᎩᎸᎢ\t-12.1394\n▁ᏕᎦᎾᏰ\t-12.1394\n▁ᏚᏃᎮᎮᎸ\t-12.1394\nᎸᎡᏗ\t-12.1394\n▁ᏚᏕᎳᏍᏔ\t-12.1394\nᎦᏥᏴᏗᏍᎬ\t-12.1394\nᎩᎯᎵᏓᏍᏗ\t-12.1394\nᏐᏅᏯ\t-12.1394\n▁ᎠᎵᏍᏓᏴᎲᏍᎨᏍᏗ\t-12.1394\n▁ᎤᏅᏍᎦᎸ\t-12.1395\n▁ᎣᎩᏅᏒ\t-12.1395\n▁ᏙᏍᏔ\t-12.1395\n▁ᎠᎦᏲ\t-12.1395\n▁ᎤᏄᏴ\t-12.1395\n▁ᎥᏓᏗᏍᏕᎸᏗ\t-12.1395\n▁ᏗᏍᏆᎧ\t-12.1396\n▁ᎤᏬᎯᏳᎲ\t-12.1396\nᏂᏌᎳᏛᎩ\t-12.1396\n▁ᎤᎵᏃᎮᏙᏗᏱ\t-12.1396\n▁ᏗᎨᏥᎢᏍᏗᏱ\t-12.1396\n▁ᎤᎾᏞᏛ\t-12.1396\nᏲᎱᎯᏎᎭ\t-12.1396\nᎴᏏᏂ\t-12.1396\n▁ᏚᏂᏲᎯᏎᎸᎩ\t-12.1396\n▁ᎤᎾᏚᎵᎭ\t-12.1396\n▁ᎦᎦᎳ\t-12.1397\n▁ᎠᏓᎹ\t-12.1397\nᏴᎯᏓ\t-12.1397\nᎶᎣᏒ\t-12.1397\n▁ᎤᏂᎪᎵᏰᏗ\t-12.1397\n▁ᎤᏂᏦ\t-12.1397\n▁ᏫᎬᏩᏣᏁ\t-12.1397\nᏃᏣᏝ\t-12.1397\n▁ᏧᏩᏛᏔᏅ\t-12.1397\nᎪᏫᏒ\t-12.1397\n▁ᎤᏃᏔᏅ\t-12.1398\n▁ᎤᏃᏫ\t-12.1398\n▁ᎤᏮᏔᏁᎢ\t-12.1398\n▁ᏥᏫᏙ\t-12.1398\n▁ᏧᎨᏳᎯ\t-12.1398\n▁ᏗᎨᏅᏒ\t-12.1398\n▁ᏭᏴᏍᏗ\t-12.1398\n▁ᏥᏂᎦᎥ\t-12.1398\n▁ᎠᏆᏙᎵ\t-12.1398\nᎤᏪᎧᏁᎴ\t-12.1398\nᏓᏁᏢ\t-12.1398\nᎵᏰᎲ\t-12.1398\nᏴᏣᏗᏍᏗ\t-12.1398\n▁ᎠᎪᏩᏘᏍᎪᎢ\t-12.1399\n▁ᎤᎾᏘᏅᏍᏗᏱ\t-12.1399\n▁ᏴᎬᎾᏛ\t-12.1399\n▁ᎠᎩᏯᎠ\t-12.1399\n▁ᎣᏍᏔ\t-12.1399\nᏕᏗᏱᎩ\t-12.1399\n▁ᏧᏦ\t-12.1399\n▁ᎦᎾᏄᎪᏩ\t-12.1399\n▁ᏚᏪᎧᏁᎸ\t-12.1399\n▁ᏣᎾᏴ\t-12.14\n▁ᏓᏠᏱᎲᎩ\t-12.14\nᏓᏅᏓᏗᏍᏔᏁ\t-12.14\n▁ᏥᏲᎵᎩ\t-12.14\n▁ᎦᏅᏆᎶᏍᏗ\t-12.14\n▁ᏥᏂᎨᏨᏁ\t-12.14\n▁ᎤᏂᏯᏅᎲᎩ\t-12.14\n▁ᎤᎦᏎᏂ\t-12.14\n▁ᎦᎵᏆ\t-12.14\n▁ᎢᏯᏉᎵᏍ\t-12.14\nᏍᏕᎸᎲᏎ\t-12.1401\nᏕᏲᏅᎢ\t-12.1401\n▁ᎣᎩᏃᎮᏍᎬᎢ\t-12.1401\n▁ᎦᏟᏐᏗᏱ\t-12.1401\n▁ᎠᏂᏁᎪ\t-12.1401\n▁ᏂᏥᏲ\t-12.1401\nᏌᎴᏓᏅ\t-12.1401\nᏙᎦᎵᏂᎬᎬ\t-12.1401\n▁ᎤᏂᏌᎳᏓᏁ\t-12.1401\n▁ᏧᎵᏂᎩᏗᏳ\t-12.1401\n▁ᏭᏢᏁᎢ\t-12.1402\n▁ᏙᎩᎾᏍᎩᏓᏒᎩ\t-12.1402\n▁ᏚᎷᏫᏍᏔᏁᎸ\t-12.1402\n▁ᏧᏲᎯᏎᎸᎯ\t-12.1402\n▁ᎤᏰᏟ\t-12.1402\n▁ᏓᏨᏍᏛ\t-12.1402\n▁ᎾᏆᏛᎿᏕᎬᎩ\t-12.1402\n▁ᏂᏚᎵᏍᏔᏅᎩ\t-12.1402\n▁ᎤᏂᏲᏠᎯᏎᎸᎩ\t-12.1402\n▁ᎤᏬᏁᏔᏅ\t-12.1402\n▁ᎤᎾᎵᏎ\t-12.1402\nᏲᏍᏔᏂᎸ\t-12.1402\n▁ᏥᏚᏂᎸᏫᏍᏓᏁ\t-12.1402\nᏄᎪᎦ\t-12.1403\n▁ᏏᏊ\t-12.1403\n▁ᎤᏂᏴᏫᏛ\t-12.1403\n▁ᏚᏭᎪᏔᏁ\t-12.1403\n▁ᏴᏓᏨᏴ\t-12.1403\n▁ᎠᎵᎮᎵᎩ\t-12.1403\n▁ᎠᏔᏗ\t-12.1403\n▁ᎣᎬᏕ\t-12.1403\n▁ᎤᏥᎸᏎᏍᏗ\t-12.1403\n▁ᎾᏂᏪᏎᎮ\t-12.1403\n▁ᏍᏇ\t-12.1403\nᏛᏥᏁᏥ\t-12.1403\n▁ᏓᎾᏓᏚ\t-12.1403\n▁ᎤᏓᏲᏁ\t-12.1403\n▁ᎤᎦᎾᏏᏍᎩ\t-12.1404\n▁ᎠᏂᏔᏲᎯᎮ\t-12.1404\n▁ᎤᏗᏅᏎ\t-12.1404\n▁ᏳᏍᏆᏂᎪᏗ\t-12.1404\n▁ᎯᏁᏥ\t-12.1404\nᎦᏯᎷᎥ\t-12.1404\n▁ᏚᏂᏴᏍᏕ\t-12.1404\n▁ᏚᎸᏫᏍᏓᏁᎭ\t-12.1404\nᏗᏓᎸ\t-12.1404\n▁ᏣᎵᏍᏓᏴᏗᏱ\t-12.1404\n▁ᏩᏍᏕᏍᏗ\t-12.1404\nᎵᏍᏇᏚᏮ\t-12.1405\nᎾᏄᎪᎪᎢ\t-12.1405\n▁ᏗᎬᏍᎦ\t-12.1405\nᏰᎢᎵᏕ\t-12.1405\n▁ᎤᏛᎯᏍᏔᏁ\t-12.1405\n▁ᏧᏂᏰᎸᏍᏗ\t-12.1405\n▁ᏫᎬᎾᎩ\t-12.1406\nᎩᏎᎪᎩᏒᎩ\t-12.1406\n▁ᎾᏆᎵᏍᏓᏁᎭ\t-12.1406\nᏒᏂᎲ\t-12.1406\n▁ᏥᏂᏕᎬᏁᎰ\t-12.1406\nᏈᎻ\t-12.1406\n▁ᏫᏚᏠᏒ\t-12.1406\n▁ᏣᏡᏗᏍᎩ\t-12.1406\n▁ᎹᎾᏏ\t-12.1407\n▁ᎤᏍᏆᏙᎾ\t-12.1407\n▁ᎤᎾᏓᎵᏁᎯᏕ\t-12.1407\n▁ᏓᎦᏄᎪᎬ\t-12.1407\n▁ᏚᏁᎯᏍᏓᏁ\t-12.1407\n▁ᏚᏏᎳ\t-12.1407\nᏄᏓᏅᎯᏛ\t-12.1408\n▁ᎨᏥᎾᏄᎪᏫᏎᏗ\t-12.1408\n▁ᏚᏂᏅᏒᎩ\t-12.1408\nᏖᎸᎢ\t-12.1408\nᏥᎪᎥᏍᎦ\t-12.1408\n▁ᎤᎾᏓᏅᏒ\t-12.1408\n▁ᎠᏂᎭᎹ\t-12.1408\nᏪᎳᎾ\t-12.1408\n▁ᎤᎱᏁ\t-12.1408\n▁ᎢᏣᏓᏤᎵᏛ\t-12.1409\n▁ᎤᏬᏒᏁ\t-12.1409\n▁ᎹᏏ\t-12.1409\nᎸᏉᏗᏍᎬᎢ\t-12.1409\n▁ᏕᏥᎬᏍᎪᎸᎥᏍ\t-12.1409\n▁ᎤᏓᏬᎢ\t-12.1409\nᎾᎳᏍᏘᏰ\t-12.141\n▁ᎤᏂᏃᎮᎵᏙ\t-12.141\nᏋᎿᏕᎬ\t-12.141\n▁ᎤᏂᎵᏰᏗᏍᎬ\t-12.141\n▁ᎤᏂᎾᏄᎪᎢᏍᏗ\t-12.141\n▁ᏚᏂᎧᏅᎩ\t-12.141\nᎬᏩᎶᏔᏁ\t-12.141\nᏛᎨᏍᎬ\t-12.141\n▁ᏚᏙᎨ\t-12.141\nᎯᏳᎲᏍᎬᎾ\t-12.141\n▁ᏗᎨᏨ\t-12.1411\n▁ᏗᏍᎩᏳᎪᏓᏁ\t-12.1411\n▁ᏙᏗᏣ\t-12.1411\n▁ᎹᎵᎦ\t-12.1411\n▁ᏧᏬᎪᏓᏁ\t-12.1411\n▁ᏫᏕᎦ\t-12.1411\n▁ᏫᎬᎩᏴᏍ\t-12.1411\n▁ᎤᏍᎪᏂᎴᎢ\t-12.1411\n▁ᏱᏅᎬ\t-12.1411\nᏅᎥᎦ\t-12.1411\nᏰᎸᎾᏁᎲ\t-12.1412\n▁ᏚᏅᏍᏓᏕᎸᎩ\t-12.1412\n▁ᏔᏈ\t-12.1412\n▁ᎾᏯᏛ\t-12.1412\nᏕᏙᎳᏛᏗ\t-12.1412\n▁ᎠᎾᏗᏍᎩ\t-12.1412\n▁ᎯᏅᏍᏗᏱ\t-12.1412\n▁ᎠᏛᏍᎪᎢ\t-12.1412\nᎶᎮᏍᏗ\t-12.1412\n▁ᎣᎩᎪᎲᎩ\t-12.1413\nᏗᏁᏗ\t-12.1413\n▁ᎠᏂᏂᏆᏘᎯ\t-12.1413\n▁ᏥᏰᎸᏅ\t-12.1413\n▁ᏭᏯᏅᏛ\t-12.1413\n▁ᎥᏆᏓᏓᎴ\t-12.1413\n▁ᏓᎦᏅᏓ\t-12.1413\nᎨᎯᏙᎮ\t-12.1413\n▁ᎤᎾᏛᎦᏁᎸᎯ\t-12.1413\n▁ᎠᏂᎸᏉᏗᏍᎩ\t-12.1413\n▁ᎢᏣᏓᏓᎴ\t-12.1413\nᎬᏆᏡᏔᏅ\t-12.1413\n▁ᎤᎸᏃᏘᎭ\t-12.1413\n▁ᎠᎾᎵᏖᎸᏂ\t-12.1413\n▁ᎦᎶᏐᎲᏍᎦ\t-12.1414\n▁ᎨᎦᏎᎸᎭ\t-12.1414\n▁ᏓᎬᏴ\t-12.1414\n▁ᏱᏗᏣᏘᏂᏙ\t-12.1414\n▁ᎤᎾᏠᎥᏔ\t-12.1414\n▁ᎢᏥᏲᎢ\t-12.1414\n▁ᏗᎨᎦᏨᏍ\t-12.1414\n▁ᎠᏗᏔᏍᎦ\t-12.1414\n▁ᏫᎦᏩᏙ\t-12.1414\n▁ᎭᎦᏌᏯᏍ\t-12.1414\nᏚᏗᏅᏒᎩ\t-12.1414\n▁ᎠᏒᏛᏗ\t-12.1415\nᏁᎳᏗᏒ\t-12.1415\n▁ᏥᏥᎷᎩ\t-12.1415\nᎷᏥᏌᏁ\t-12.1415\n▁ᏛᏊ\t-12.1415\n▁ᏈᎳᏯ\t-12.1415\n▁ᏱᏓᏆᏁ\t-12.1415\n▁ᎤᎵᎪᏗ\t-12.1415\n▁ᎣᎩᏰᎸᎭ\t-12.1415\nᏥᎸᏉᏗ\t-12.1416\nᏲᏏᏍᎪᎢ\t-12.1416\n▁ᎠᏁᎷᎲᏍᎬ\t-12.1416\n▁ᏦᎠᎾ\t-12.1416\n▁ᎤᎾᎦᏌᏯᏍᏔᏁ\t-12.1416\n▁ᏓᏍᏚᎲᎢ\t-12.1416\n▁ᎤᏟᎶᏍᏗ\t-12.1416\n▁ᏓᏂᎳᏫᎡ\t-12.1416\nᏅᏛᏅᏁᎵ\t-12.1416\n▁ᎬᏍᏕᎸᏗ\t-12.1416\nᏎᎵᏓᏁᎴᎢ\t-12.1416\n▁ᎯᎷᏤᏗᏱ\t-12.1416\n▁ᎤᎾᏠᏤᏉ\t-12.1417\n▁ᎤᏂᏐᏯᏍ\t-12.1417\n▁ᏧᏗᎴᎩ\t-12.1417\n▁ᎡᎦᎫᏴᏓᏁᏗ\t-12.1417\nᏟᏃᎮᏙᏗ\t-12.1417\n▁ᎤᏅᎪᎳᏛ\t-12.1417\nᎩᏯᏬᏍ\t-12.1417\n▁ᎤᏂᏰᎸᏎᏍᏗ\t-12.1417\nᏎᎮᎵ\t-12.1417\nᏗᏥᏲᏟ\t-12.1417\n▁ᏅᏧ\t-12.1417\n▁ᎧᏁᏨᎯ\t-12.1417\nᏍᎦᏅᎬ\t-12.1417\n▁ᎬᏃᏌ\t-12.1417\n▁ᏥᏕᎦᏓ\t-12.1418\nᏥᏍᏔᏝ\t-12.1418\nᎼᏓ\t-12.1418\n▁ᏚᏂᏯᏙᎮ\t-12.1418\n▁ᏦᎩᏃᎩᏍ\t-12.1418\nᎵᏑᏫ\t-12.1418\n▁ᏗᏨᏍᏗᏱ\t-12.1418\n▁ᏄᎾᏓᏕ\t-12.1418\n▁ᏕᏨᏯᏠᎢᏍᏓᏁ\t-12.1418\n▁ᎯᏣ\t-12.1418\n▁ᏘᏯᏙ\t-12.1418\n▁ᎤᎾᏕᏁᎢ\t-12.1419\nᏌᏔᏁᎢ\t-12.1419\n▁ᎤᏂᏍᎦᎢ\t-12.1419\n▁ᏥᏕᎯᏳᎪᏓᏁ\t-12.1419\n▁ᏕᏥᏅᎦᎵᏍᎪ\t-12.1419\n▁ᏗᎦᏁᏍ\t-12.1419\n▁ᎢᏂᏯ\t-12.1419\n▁ᏱᏗᎬᏕᎪ\t-12.142\n▁ᎠᎾᏧ\t-12.142\nᏃᏍᎩᎭ\t-12.142\n▁ᏂᎬᏩᏛᏁᎴᎢ\t-12.142\n▁ᏫᎦᏕ\t-12.142\n▁ᏭᏂᏴᎲ\t-12.142\n▁ᏕᏧᎪᏔᏅ\t-12.142\n▁ᏣᎧᏅ\t-12.142\nᎯᎷᎩ\t-12.142\n▁ᏂᏣᏛᏁᎴ\t-12.142\n▁ᎦᎷᎪᎢ\t-12.1421\n▁ᎮᎵᎭ\t-12.1421\n▁ᏫᏙᎤᎷᏤ\t-12.1421\n▁ᏫᏙᏛ\t-12.1421\n▁ᏗᏥᎦᎵ\t-12.1421\nᎬᏍᎪᎸᏗᏱ\t-12.1421\n▁ᎤᎾᎦᏌᏯᏍᏙᎢ\t-12.1421\n▁ᎠᏂᏗᏢ\t-12.1421\n▁ᎧᎹ\t-12.1422\n▁ᏚᏓᏅᎡᎸᏃ\t-12.1422\n▁ᏱᏥᎪᏩᏘᎭ\t-12.1422\n▁ᎤᏍᎦᎸᎩ\t-12.1422\n▁ᏓᎾᎵᏍᏛ\t-12.1422\nᎩᏣᏅ\t-12.1422\n▁ᎣᎩᎾᏖᏆᎶ\t-12.1422\nᏧᎾᏛᏒ\t-12.1422\n▁ᏭᏂᏃᎮᎴ\t-12.1422\n▁ᏂᏍᏓ\t-12.1423\n▁ᏁᏣᏓ\t-12.1423\nᎸᏕᏍᏗᎭ\t-12.1423\n▁ᏗᎩᎾᏫᏱ\t-12.1423\n▁ᎢᏳᎵᏍᏔᏂᏓᏍᏗᏱ\t-12.1423\n▁ᏚᏅᎦᎸ\t-12.1423\n▁ᎤᏂᎪᏩᏛᏗ\t-12.1423\n▁ᏂᎬᎩᏪᏎᎲ\t-12.1424\n▁ᏫᏔ\t-12.1424\nᎯᏳᎯᏯ\t-12.1424\n▁ᏯᎾᎵᏖᎸᎲ\t-12.1424\n▁ᎣᏣᏛᎦ\t-12.1424\n▁ᎠᏒᎢᏍᏗᏍ\t-12.1424\n▁ᎧᏁᏨ\t-12.1424\n▁ᎡᏂᏏ\t-12.1424\n▁ᎤᏂᏍᎩᎸ\t-12.1424\nᏚᎾᏄᏮ\t-12.1424\nᏯᏗᏒᎢ\t-12.1425\nᎾᏬᏏ\t-12.1425\n▁ᏧᎾᏓᎸ\t-12.1425\nᎩᎸᏔᏅ\t-12.1425\n▁ᎤᎸᏉᏛ\t-12.1425\n▁ᏅᏓᏰᏥ\t-12.1425\n▁ᏱᎦᎵᏍᏗᏍᎨ\t-12.1425\n▁ᎡᎩᏁᎸᎯ\t-12.1425\nᏥᏲᎢᏳᏓᏁᎭ\t-12.1425\n▁ᎠᎩᏍᏙ\t-12.1425\nᏤᎳᏍᏓ\t-12.1426\n▁ᏓᏂᏱᎵᏒ\t-12.1426\n▁ᎤᏂᏁᎢᏍᏔᏁ\t-12.1426\n▁ᎠᏃᏍᏓ\t-12.1426\n▁ᎠᏍᏚᏅ\t-12.1427\n▁ᎠᏥᏁᎢᏍᏗᏍᎬ\t-12.1427\n▁ᏗᎦᏤᎵᎦ\t-12.1427\n▁ᎤᎵᏍᏓᏴᎾᏁᏗᏱ\t-12.1428\nᏥᏁᏦ\t-12.1428\nᏁᎳᏅ\t-12.1428\nᎬᏩᏛᏓᏍᏓᏁᎴ\t-12.1428\nᎶᏈ\t-12.1428\n▁ᎬᏣᏓ\t-12.1428\nᏣᏕᎰᎯᏍᏗ\t-12.1428\nᏠᏗᏱ\t-12.1429\n▁ᎢᏕᏅ\t-12.1429\n▁ᎬᎾᏄᎪᏫᏎᏗ\t-12.1429\n▁ᎤᎾᏣᏅᎯ\t-12.1429\n▁ᏗᏖᎵ\t-12.1429\n▁ᏧᎾᏓᎸᎯ\t-12.1429\n▁ᏗᏤᏅ\t-12.1429\n▁ᎦᎾᏄᎪᏫᏍᎦ\t-12.1429\n▁ᏚᏃᏣᏝᏁ\t-12.143\n▁ᎤᏂᎪᎵᏰᎥ\t-12.143\n▁ᏌᎺᎵ\t-12.143\n▁ᏕᎬᏩᎾᏢᎥᏍ\t-12.143\n▁ᎠᏂᏍᎦᏅᎬ\t-12.143\n▁ᏧᏓᏆ\t-12.143\n▁ᏱᏁᎦ\t-12.143\nᎵᏙᎩᎯ\t-12.143\n▁ᏓᎦᏛᎦ\t-12.143\n▁ᎦᎶᏁ\t-12.143\n▁ᏣᎾᏛᎩᏍᎪ\t-12.143\n▁ᏣᏴᏍᏗᏱ\t-12.143\n▁ᏗᏋ\t-12.143\n▁ᏧᏫᏎᎢ\t-12.1431\n▁ᎠᎾᏙ\t-12.1431\nᏄᏬᎥᎩ\t-12.1431\nᏗᏆᎸᏕ\t-12.1431\nᏓᏬᏍᎩ\t-12.1431\nᏂᎪᏁᎶᏍᎨᎢ\t-12.1431\n▁ᏥᏕᎤᎴᏔ\t-12.1432\n▁ᎤᏁᎷᎨ\t-12.1432\n▁ᎤᏨᎢᏍᏗ\t-12.1432\nᎢᎫᏩᏟᏍ\t-12.1432\n▁ᏍᎩᎢᏍᏗᏱ\t-12.1432\n▁ᏘᎪᎯ\t-12.1432\n▁ᏥᎪᏎᎭ\t-12.1432\n▁ᏣᏁᎸᎭ\t-12.1432\n▁ᎠᏥᏍᏚᎲᎢ\t-12.1432\n▁ᏗᏥᏯᎦᏅ\t-12.1433\n▁ᏚᏂᎳᏫᏤᎢ\t-12.1433\n▁ᏱᎬᏗᎭ\t-12.1433\n▁ᎤᏚᏓᏕᏫᏒᎢ\t-12.1433\nᎭᏄᏬ\t-12.1433\n▁ᏥᎦᏛᎦ\t-12.1433\n▁ᏚᏍᏓᏩᏛᏎᎢ\t-12.1433\n▁ᏙᏗᎧᏂᏍᎬᎢ\t-12.1433\n▁ᏚᎧᎿᏩᏗᏙᎮᎢ\t-12.1433\n▁ᏧᎩᏥᏍᎪᎢ\t-12.1433\n▁ᏭᎩᎸᏁᎢ\t-12.1433\n▁ᏓᎾᏓᎧᏅ\t-12.1433\n▁ᎤᎵᏘᏒᎩ\t-12.1434\n▁ᎤᎾᎩᎳᏫᏎ\t-12.1434\n▁ᎤᎾᎦᏎᏍ\t-12.1434\n▁ᎠᏂᎦᏲᎵᏉ\t-12.1434\n▁ᎠᎾᎵᏅᏢᎢ\t-12.1434\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎨᎢ\t-12.1434\n▁ᎦᏬᏂᏍᎨᏍᏗ\t-12.1434\n▁ᎤᏙᎯᏳᎭᏍᎪ\t-12.1434\n▁ᎬᎦᏔᎭ\t-12.1434\nᎭᏛᎦ\t-12.1435\n▁ᎯᎶᏁ\t-12.1435\n▁ᎤᎾᎦᏎᏍᏛᎢ\t-12.1435\n▁ᎢᏯᏆ\t-12.1435\n▁ᏫᏓᎧᏁᎢ\t-12.1435\n▁ᏓᏂᏬᏂᏍᎬᎢ\t-12.1435\n▁ᏥᏂᎨᏎᎢ\t-12.1435\n▁ᎤᏁᎢᏍᏓᏁᎸᎢ\t-12.1435\n▁ᎤᎾᏚᎵᏍᎪᎢ\t-12.1435\n▁ᎤᎶᏄᎮᏗᏱ\t-12.1436\n▁ᏕᏥᎧᎿᏩᏗᏒᎢ\t-12.1436\n▁ᎬᏩᎭᎷ\t-12.1436\n▁ᏗᏓᏂᎸᎢᏍᏗ\t-12.1436\n▁ᏧᎪᏅ\t-12.1436\n▁ᎣᏣᏙᎴᎰ\t-12.1436\n▁ᏱᎪᎵᎨᎢ\t-12.1436\n▁ᏫᏂᏓ\t-12.1436\n▁ᎤᎪᏏ\t-12.1436\n▁ᎤᏍᎪᏎ\t-12.1437\n▁ᏚᎾᏘᏅᏎ\t-12.1437\n▁ᎤᏪᏘᏁ\t-12.1437\nᏏᏙᎵ\t-12.1437\nᎪᎯᏳᎲᏍᎪᎢ\t-12.1437\n▁ᎠᎦᏘᏲ\t-12.1437\n▁ᎤᏂᏢᏗ\t-12.1437\nᏆᏎᎵᏓᏁᎸᎩ\t-12.1437\n▁ᏂᏚᏛᏁᎴᎢ\t-12.1437\n▁ᎤᏯᏛᏅ\t-12.1438\n▁ᏂᏚᏅᏁᎴᎢ\t-12.1438\n▁ᎤᏒᎦᎸᎢ\t-12.1438\nᎧᎭᏛ\t-12.1438\n▁ᎤᎾᏚᏓᎴᏍᏙᏗ\t-12.1438\n▁ᎤᏯᎷᎦ\t-12.1438\n▁ᏤᎦᏛ\t-12.1438\nᏍᎩᏅᎦᎸ\t-12.1438\nᏕᏒᎾ\t-12.1439\nᏲᏍᏙᏗᏍᎬᎢ\t-12.1439\n▁ᏚᏂᏲᎰᏎ\t-12.1439\n▁ᏣᎪᏩᏘᎭ\t-12.1439\n▁ᏄᎦᏔᎲᎾ\t-12.1439\n▁ᎨᏣᏡᏗᏍᎬᎢ\t-12.1439\n▁ᏓᏍᏚᏛ\t-12.1439\n▁ᎠᏂᎷᎨᎢ\t-12.1439\nᏛᏁᏏ\t-12.1439\nᏣᏚᏓᎳᎡᏗ\t-12.144\n▁ᏂᎬᎩᏪᏎᎸ\t-12.144\n▁ᏥᏍᏚᏂᎩᏍᏗᎯ\t-12.144\nᎺᏏ\t-12.144\n▁ᎤᏂᏌᏅ\t-12.144\n▁ᏫᎬᏩᏴᏔᏁᎢ\t-12.144\n▁ᎤᎾᎵᏒᎩ\t-12.144\nᎾᏫᏛᎮᎢ\t-12.1441\n▁ᏅᏩᏍᏕᏍᏗ\t-12.1441\nᎵᏒᏍᏔᏁ\t-12.1441\n▁ᎢᎤᎾᏨᏎᎢ\t-12.1441\n▁ᎦᏬᏂᎭ\t-12.1442\n▁ᎠᎾᏓᏍᏔᏴᎲᏍ\t-12.1442\n▁ᎬᏣᏗ\t-12.1442\n▁ᏗᎨᎫᎪᏓᏁᏗᏱ\t-12.1442\n▁ᏣᏅᏏᏓᏍᏗ\t-12.1442\nᎳᏑᏝᏅ\t-12.1442\n▁ᎤᏂᏩᏒᎯ\t-12.1442\n▁ᏘᎾᏄᎪᏫᏏ\t-12.1442\nᎾᏓᎴᏁᎢ\t-12.1442\nᎾᏄᎪᏫᏎᏗ\t-12.1443\n▁ᏕᏣᏓᏂᎸᏨᎭ\t-12.1443\nᎾᏦᎥᏍᏗ\t-12.1443\n▁ᎭᏛᎩ\t-12.1443\n▁ᏭᎾᏓ\t-12.1443\n▁ᏂᎦᏍᏛᎢ\t-12.1443\n▁ᎦᏅᏓᏗᏍᎪ\t-12.1444\n▁ᏂᎦᏥᏪᏎᎸᎩ\t-12.1444\n▁ᎠᏇᏓᏍᏗᏱ\t-12.1444\n▁ᎭᎵᎮᎵᎩ\t-12.1444\n▁ᎠᏆᎴᏅᏗ\t-12.1444\nᎾᏕᎨᏍᏗ\t-12.1444\n▁ᎠᏥᏰᎸᎾᏁᎴᎢ\t-12.1445\n▁ᏣᎵᏍᏕᎸᏙᏗ\t-12.1445\nᏲᎵᎸᎭ\t-12.1445\n▁ᏭᏁᎴᎢ\t-12.1445\n▁ᎣᏥᏃᎮᏍᎬᎢ\t-12.1445\n▁ᎤᎵᏂᎪᎯᏍᏗ\t-12.1445\nᏧᏔᎩ\t-12.1446\n▁ᎤᎵᏰᏑᏍᏙᎩ\t-12.1446\nᎦᎵᏍᏓᏛᎩ\t-12.1446\n▁ᏍᎩᏍᏕᎸᎯᏓ\t-12.1446\n▁ᏗᏍᎩᎳᏗᏍᏗ\t-12.1446\n▁ᎡᎫᏓᎴ\t-12.1446\n▁ᏕᎠᎾ\t-12.1446\n▁ᎠᏛᏅᎢᏍᏔᏅᎯ\t-12.1447\n▁ᎠᎧᎵᏨ\t-12.1447\nᎩᎵᎨᏂ\t-12.1447\n▁ᏚᎾᏙᎡ\t-12.1447\n▁ᏱᏥᎪ\t-12.1448\n▁ᎢᏣᏓᏅᏖᏍᏗ\t-12.1448\nᏂᏔᏲᎴᎢ\t-12.1448\n▁ᏓᏂᏍᏕᏲ\t-12.1449\n▁ᏭᏂᏩᎯ\t-12.1449\n▁ᎦᏄᎪᎢ\t-12.1449\nᏟᎶᏒᎸ\t-12.1449\n▁ᏭᎩᏎᎢ\t-12.1449\n▁ᏣᎵᏂᎩᏛ\t-12.1449\nᎬᏩᎪᏁᎶᎯᏎᎸᎩ\t-12.1449\n▁ᏲᏤᎾ\t-12.145\n▁ᏧᏂᏄ\t-12.145\n▁ᎨᎾᏏ\t-12.1451\n▁ᏛᏇ\t-12.1451\n▁ᎯᏯᏏᏔᏛ\t-12.1452\nᎳᏗᏙᎮᎢ\t-12.1452\nᏛᏛᎮᎸᏁ\t-12.1452\nᏂᏐᎢ\t-12.1452\n▁ᏧᏁᏍᎨᎮᎢ\t-12.1452\n▁ᏭᎵᏒ\t-12.1453\n▁ᎦᎧᎲᎢ\t-12.1453\nᏍᏓᏱᏗ\t-12.1453\n▁ᎤᎩᏐᏅ\t-12.1453\nᏍᏓᏁᎸᎩ\t-12.1454\n▁ᏚᏂᏡ\t-12.1454\nᎦᎵᏒ\t-12.1454\n▁ᏗᎬᏭᎪ\t-12.1454\nᎹᏞ\t-12.1454\nᏓᏙᎳᏍᏗᏍ\t-12.1455\n▁ᎤᏕᏃᏅ\t-12.1455\n▁ᎦᏄᎳᏥ\t-12.1455\nᏗᏒᎲᏍᎦ\t-12.1455\nᎦᏁᎲᎾ\t-12.1455\n▁ᎤᏅᏩᏁᎢ\t-12.1455\n▁ᏱᏂᏣᏛᏁᎭ\t-12.1456\nᎩᏝᏅ\t-12.1456\n▁ᏫᏕᏓ\t-12.1456\nᏆᏲᏗ\t-12.1457\nᏣᏅᏖᏍᏗ\t-12.1457\n▁ᎠᎩᏯᎥᎢ\t-12.1457\n▁ᎤᎾᏦᏛ\t-12.1457\nᏐᎯᏍᏗ\t-12.1457\n▁ᏧᏬᏕᏍᏗ\t-12.1458\nᏏᏍᎨᎢ\t-12.1458\n▁ᎤᏂᎵᏓᏍᏗ\t-12.1458\n▁ᎠᎦᏌᏯᏍᏙᏗ\t-12.1458\nᏘᏝ\t-12.1458\n▁ᎠᏋᏔᏅᎩ\t-12.1458\n▁ᏗᎦᏙᎨᎢ\t-12.1459\nᏍᏚᏞ\t-12.1459\n▁ᎤᏂᎨᏛ\t-12.146\n▁ᎠᎵᏍᏆᏗᏍᎬᎢ\t-12.146\n▁ᎢᏥᎾᏰᏍᎬᎢ\t-12.1461\n▁ᏫᎬᏩᎷᏤᎴ\t-12.1461\n▁ᏣᏚᎵᏍᎨᏍᏗ\t-12.1462\n▁ᏓᏨᏍᏕ\t-12.1462\nᎷᏨᎾ\t-12.1463\n▁ᏧᏲᏏᏍᎨᎢ\t-12.1463\n▁ᎠᏂᏔᏲᎯᎲ\t-12.1463\n▁ᎨᎦᏙ\t-12.1463\n▁ᎠᏂᎨᏕ\t-12.1463\nᎬᏍᏉ\t-12.1463\n▁ᎣᎩᎾᎵᎪᎭ\t-12.1463\n▁ᎠᏉᏪᎳᏅᎯ\t-12.1463\n▁ᏨᏣ\t-12.1463\nᎬᏩᎷᏤᏗᏱ\t-12.1464\nᏛᏁᎸᏗ\t-12.1464\n▁ᏅᏛᏍᎩ\t-12.1465\n▁ᎥᎩᏁᎸᎢ\t-12.1465\nᏓᏁᎴᏍᏗ\t-12.1465\n▁ᎠᏥᎳᏫᏎᎲ\t-12.1466\n▁ᏌᎨ\t-12.1466\n▁ᏯᏗᏗ\t-12.1466\nᏅᎪᏫᏍᏗ\t-12.1466\n▁ᏚᏪᎳᏗᏙ\t-12.1467\n▁ᏚᏂᎩᏍᏔᏁ\t-12.1467\nᏚᎾᏓᎴᎿ\t-12.1467\n▁ᏧᏭᎪᏙᏗᏱ\t-12.1467\nᏩᎾᎦᎶᏤ\t-12.1467\nᏙᎢᏛ\t-12.1468\n▁ᏧᏂᏰᎸᎯ\t-12.1468\n▁ᏥᏄᎾᎵᏍᏓᏁᎴ\t-12.1468\n▁ᏂᏓᎬ\t-12.1468\n▁ᏣᏅᏏᏙᎯ\t-12.1468\nᎦᏔᎲᎡ\t-12.1468\n▁ᏓᏲᏍᏗ\t-12.1468\nᏒᏂᎦ\t-12.1468\nᎤᏗᏛᎲ\t-12.1469\nᏛᎩᏍᎬᎾ\t-12.147\n▁ᏫᎦᎾᏄᎪᎩ\t-12.147\n▁ᎤᏪᎮᎢ\t-12.147\n▁ᎠᎦᏔᏩᏕ\t-12.147\n▁ᏲᎦᏚᎵ\t-12.147\n▁ᎥᎩᏃᏁᎸ\t-12.147\nᏗᏥᏂᏱᏍ\t-12.147\n▁ᏦᏆ\t-12.1471\n▁ᎠᎾᏂᎩᏍᎬ\t-12.1471\n▁ᏗᎨᎦᎦᏅᏗ\t-12.1471\n▁ᎤᏓᏁᏟᏴᏎ\t-12.1472\nᏂᏲᎮᎲ\t-12.1472\nᎵᏏᎲᏒᎩ\t-12.1472\n▁ᎤᏣᎴᏛ\t-12.1472\n▁ᎾᎾᏛᎦ\t-12.1473\nᏓᏁᏣᏍᏚᎶ\t-12.1473\n▁ᏗᎪᏢᏒ\t-12.1473\nᎯᏯᏍᎪ\t-12.1473\n▁ᏣᏒᎦᎸ\t-12.1473\nᏦᎵ\t-12.1473\nᎳᏫᎩ\t-12.1473\n▁ᏬᎶᏒ\t-12.1474\nᎢᎵᎻ\t-12.1474\n▁ᎠᎾᏓᏙᎵ\t-12.1474\n▁ᎭᏗᏍᎨᏍᏗ\t-12.1475\n▁ᎠᏂᎡᎼ\t-12.1475\nᏫᏅ\t-12.1476\n▁ᎢᏑ\t-12.1476\n▁ᏚᏓᎨ\t-12.1477\nᎨᏣᏡᏗᎭ\t-12.1477\n▁ᎤᎵᏍᏓᏴᏅ\t-12.1477\n▁ᎤᏬᎴᏍᏗ\t-12.1477\n▁ᏚᎾᎵᏍ\t-12.1477\nᏁᏥᏪᏏ\t-12.1478\n▁ᏥᎩᏯᎠ\t-12.1478\nᏥᏁᏤᎸᎢ\t-12.1478\n▁ᎤᎳᏍᏓ\t-12.1478\n▁ᎠᏨᏉᏗᏍ\t-12.1479\nᏅᎥᏍᎬ\t-12.1479\n▁ᏣᎦᏓᏂᎸᎢᏍᏗ\t-12.1479\nᎫᏓᎴᏍᎬᎢ\t-12.1479\n▁ᎤᏃᎯᎵ\t-12.1479\n▁ᎤᏪᎲ\t-12.148\nᎲᏍᏔᏅᎩ\t-12.148\n▁ᏚᏂᏯᎣᏅ\t-12.148\n▁ᎠᎵᏍᎦᏃᏍ\t-12.148\n▁ᏱᎬᏍᎦᏅ\t-12.148\nᏕᏙᎳᏛ\t-12.1481\n▁ᏳᏛᏅ\t-12.1481\nᏆᎸᏛ\t-12.1481\n▁ᏕᎤᏪᎧ\t-12.1481\nᎪᏢᎾᏁᎴᎢ\t-12.1482\nᏯᏂᏏᏁᎸ\t-12.1482\n▁ᎠᎾᏓᏙᎵᏍᏓᏁ\t-12.1482\n▁ᏥᏗᎸᏉᏗ\t-12.1482\n▁ᎬᏩᏄᎪᏫ\t-12.1482\n▁ᎢᏦᏛ\t-12.1483\nᏕᎩᎳᏁᎸ\t-12.1483\nᏌᏌ\t-12.1484\nᏓᏂᏏᎾ\t-12.1484\n▁ᎢᏣᏓᏙ\t-12.1484\nᏎᎲᎾ\t-12.1484\n▁ᏍᎩᏯᎫᏴᏓ\t-12.1484\n▁ᎠᏯᎡ\t-12.1484\nᏩᎯᏏ\t-12.1485\n▁ᎤᏍᏆᎸᎯ\t-12.1485\nᏓᎵᏓᏍᏗᎭ\t-12.1485\n▁ᏙᏛᏙ\t-12.1485\n▁ᎤᏂᏍᏚᎶᏔ\t-12.1485\nᎾᏛᏍᎩ\t-12.1485\nᎵᏍᏓᏴᎲᎦ\t-12.1485\n▁ᏣᏕᎦ\t-12.1485\n▁ᎤᏪᎵᏎᎴᎢ\t-12.1486\n▁ᎬᏆᏓᏅᏓᏗᏍ\t-12.1486\nᏗᏥᎦᏘᏯ\t-12.1486\n▁ᏄᏓᎵ\t-12.1486\n▁ᏗᏓᎵᏎ\t-12.1486\n▁ᏓᏂᏙᎬᎩ\t-12.1486\n▁ᏂᎤᏪᏎᎢ\t-12.1486\nᏬᏁᏔᏅᎩ\t-12.1486\n▁ᎢᏳᎵᏍᏔᏅᎩ\t-12.1487\n▁ᏙᏍ\t-12.1487\n▁ᏱᎬᏳ\t-12.1487\n▁ᎠᏓᏬᏍᏗ\t-12.1487\n▁ᎢᏨᏰᎳᏗᏙᎲᎩ\t-12.1487\n▁ᎢᏨᏃᏁ\t-12.1487\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎩ\t-12.1487\nᎦᏥᏯᏢᏔ\t-12.1487\n▁ᎤᏛᏛᎩ\t-12.1488\n▁ᏯᏛᎦ\t-12.1488\n▁ᏂᏓᏋᏁᎸ\t-12.1488\n▁ᏗᎦᏆ\t-12.1488\nᏓᏂᏍᎫᏓᏛ\t-12.1488\n▁ᎢᏨᏃᏁᎸᎢ\t-12.1488\n▁ᏕᎯᏴ\t-12.1488\n▁ᎤᎦᏔᎲ\t-12.1489\n▁ᎤᏍᎦᏅᏥᏙᎸᎢ\t-12.1489\nᏯᏛᎥ\t-12.1489\n▁ᏂᏨᏪ\t-12.1489\n▁ᎤᏂᏄᎪᏤᎢ\t-12.1491\n▁ᏧᎾᏚᎵᏍᎪ\t-12.1491\n▁ᏗᏂᏅᏗ\t-12.1492\n▁ᎤᏑᎶ\t-12.1492\nᏂᏅᎪᎢ\t-12.1492\n▁ᎤᎾᎵᏖᎸᏅᎢ\t-12.1492\nᎵᏬᏤᎢ\t-12.1492\n▁ᏳᏬᏢᏁ\t-12.1493\n▁ᎠᎩᎵᏲᎬᎢ\t-12.1493\n▁ᎠᏂᏃᎮ\t-12.1493\n▁ᎤᏂᎦᎸᎯ\t-12.1493\n▁ᏧᏭᎪᏓᏁ\t-12.1493\n▁ᏭᎾᏓᏝ\t-12.1493\n▁ᏂᏨᏪᏎᎸᎢ\t-12.1494\n▁ᏗᎦᏙ\t-12.1494\n▁ᏙᏓᏍ\t-12.1494\n▁ᏤᎪ\t-12.1494\nᎪᎲᎭ\t-12.1494\n▁ᏗᎨᏴ\t-12.1494\nᎾᏍᎩᏯ\t-12.1494\n▁ᏫᎦᏥᎷᏤᎸ\t-12.1494\n▁ᎠᏃᎯᏍᏗᏍᎩ\t-12.1495\n▁ᏂᎨᎬᏁᎸᎢ\t-12.1495\n▁ᏚᏫᏞᏫᏒᎢ\t-12.1495\nᏍᎫᏓᏕᎢ\t-12.1495\n▁ᏩᏂᎦᏛᎢ\t-12.1495\n▁ᏫᎬᏩᏘᏃᎸ\t-12.1495\n▁ᏫᏚᏳᎪᏛᎢ\t-12.1495\n▁ᎠᎩᎪᏁᎸᎢ\t-12.1495\n▁ᎤᏅᏍᎦᎴᎢ\t-12.1495\n▁ᎤᎵᏍᎪᎸᏔᏁᎢ\t-12.1495\n▁ᏚᏂᎧᎲᎢ\t-12.1495\nᎣᏍᎪᎢ\t-12.1496\n▁ᏕᎫᎪᏗᏍᎪ\t-12.1496\n▁ᏓᎾᏓᏅᏖᏍᎬᎢ\t-12.1496\n▁ᎤᏓᏙᏎᎴᎢ\t-12.1496\n▁ᎢᎬᏙᏗ\t-12.1496\nᏔᏅᏒᎢ\t-12.1496\n▁ᎤᏁᎳᏛᎢ\t-12.1496\nᎾᏓᏍᏕᏓᎵᏴᏓ\t-12.1497\n▁ᏳᏂᎪᎮᎢ\t-12.1497\n▁ᏚᎾᎵᎪᏁᎴ\t-12.1497\n▁ᏅᏩᏍᏕᎢ\t-12.1497\n▁ᏂᎦᏥᏴᏁᎸᎢ\t-12.1497\n▁ᏱᏄᎵᏍᏓ\t-12.1497\n▁ᏫᎬᏩᏘᏅᏍᏔᏁ\t-12.1497\n▁ᏫᏓᎬ\t-12.1497\n▁ᏱᎬᏗ\t-12.1498\nᎵᏂᎪᏍᎬᎢ\t-12.1498\n▁ᎠᎵᏍᏕᎵᏍᎬᎢ\t-12.1498\nᏱᎵᏐ\t-12.1498\n▁ᎤᏛᏅᎢᏍᏛ\t-12.1498\n▁ᏚᏓᏂᎸᏤᎢ\t-12.1498\n▁ᏱᏙᎬᎾ\t-12.1498\n▁ᏨᏓᏥᏁ\t-12.1498\n▁ᎠᏂᎷᎬᎢ\t-12.1498\nᏯᎶᏘ\t-12.1499\nᎠᏐ\t-12.1499\n▁ᎢᏥᎪᎲᎢ\t-12.1499\n▁ᎢᏙᎻᏱ\t-12.1499\n▁ᎠᏂᎦᏔᎮᎢ\t-12.15\n▁ᏥᏯᏛᎦᏁᏗ\t-12.15\nᎬᏩᏩᏛᎲᏃ\t-12.15\n▁ᏚᎾᏚᏫᏍᏛ\t-12.1501\n▁ᏎᎳᎻ\t-12.1501\n▁ᎢᏨᏬᏁᏔᏅᎢ\t-12.1501\n▁ᎤᎾᎵᏍᏙᏗ\t-12.1501\n▁ᎠᎨᎳᏗᏍ\t-12.1501\nᎳᏁᎸᎩ\t-12.1501\n▁ᏕᎪᏎᎲ\t-12.1501\n▁ᎢᏍᏓᏛᏅ\t-12.1502\n▁ᏚᏪᎧᏁᎴᎢ\t-12.1502\n▁ᎢᏨᏓ\t-12.1502\n▁ᏓᎭᏦ\t-12.1502\n▁ᎤᏓᏁᎵ\t-12.1502\n▁ᎾᏆᎵᏍᏓᏁᎸᎢ\t-12.1502\n▁ᎠᎴᏂᏙᎲ\t-12.1502\n▁ᏱᏤᎵ\t-12.1502\n▁ᏚᎾᏓᏲ\t-12.1502\n▁ᎤᏍᎦᏎᏗᏳ\t-12.1503\n▁ᏚᏂᏂᏴᎮᎢ\t-12.1503\nᏔᏃᎯᏍᏔ\t-12.1503\n▁ᏚᏂᏒᎾ\t-12.1503\n▁ᏱᏚᎧ\t-12.1503\n▁ᎤᏁᏔᏅᎯ\t-12.1503\n▁ᏓᎧᎾᏩᏗ\t-12.1503\n▁ᎠᎪᎲᏍᏙᏗ\t-12.1503\n▁ᎦᏲᏟᎨᏉ\t-12.1503\nᎬᏂᏍᏗᏍᎨ\t-12.1504\n▁ᏱᏓᎾᏕᏍᎪ\t-12.1504\nᏲᏍᏓᏗ\t-12.1505\nᏓᏱᎭ\t-12.1505\n▁ᎤᏴᏔᏂᎸ\t-12.1505\n▁ᎤᏩᏥ\t-12.1505\n▁ᏩᏁᏙᎲ\t-12.1505\n▁ᏅᏛᏅ\t-12.1506\n▁ᏳᏫᏚ\t-12.1506\nᏓᎬᏯᏛᏁᎵ\t-12.1506\n▁ᎤᏬᏥ\t-12.1506\nᎦᏓᏂᎸᏨᎩ\t-12.1507\n▁ᏗᏍᏆᏂᎪᏛ\t-12.1507\n▁ᏱᏅᏩᏍᏕ\t-12.1507\n▁ᎦᏅᏬᏍᎨ\t-12.1507\n▁ᏫᎦᎶᎯᏍᏗᏱ\t-12.1508\n▁ᏱᏨᏅ\t-12.1508\n▁ᏗᎧᏅ\t-12.1508\n▁ᏄᏚ\t-12.1508\nᏓᏌᏆᎴᏍ\t-12.1508\nᏬᎷᏩᏛ\t-12.1509\n▁ᏛᏍᏆ\t-12.1509\n▁ᎤᏃᎭᏝ\t-12.151\n▁ᎬᏩᏛᏗᏱ\t-12.151\n▁ᎤᏂᏂᎬᏎᎲᎢ\t-12.151\n▁ᎢᏣᏓᏅᎦᎸᏛ\t-12.1511\n▁ᏕᎠᏁᎲ\t-12.1511\n▁ᎠᏓᎯᏍᏗᏱ\t-12.1511\nᏢᎾᏏ\t-12.1512\nᎢᏍᏓ\t-12.1512\nᏑᎵᎪᎬᎾ\t-12.1512\n▁ᎤᏏᏔᏛ\t-12.1514\nᎳᏗᏍᎪ\t-12.1514\nᏕᎲᎢ\t-12.1514\n▁ᎢᏍᏛᏔᏲᏎ\t-12.1514\n▁ᎢᏗᎬᏁᎯ\t-12.1514\n▁ᏚᎸᏉᏗᏳ\t-12.1514\n▁ᎠᏓᏅᏖᏍᎨᏍᏗ\t-12.1515\n▁ᏫᏂᏗ\t-12.1515\n▁ᎤᏲᏍᏙᏗᏱ\t-12.1515\nᏩᎭ\t-12.1515\nᏍᎪᏂᎵ\t-12.1515\nᏌᎳᏗᏍᎪ\t-12.1515\nᎾᏓᏗᏫᏎᎸ\t-12.1516\nᏄᎵᏍᏓᏁᎴᎢ\t-12.1516\nᎬᏫᏳᏔᏅ\t-12.1516\n▁ᎡᏧᏓᎴ\t-12.1517\n▁ᎯᏲᎢᏳᎲ\t-12.1517\nᏅᎪᎣᏒ\t-12.1517\nᎵᏎᏗᏱ\t-12.1517\n▁ᏧᏓᏂᎸᏨᎯ\t-12.1518\n▁ᏣᎦᏌᏯᏍ\t-12.1518\nᏙᎵᏨᎢ\t-12.1518\nᎵᏃᎡᏔ\t-12.1518\n▁ᏚᎾᎦᎴᏅᎲ\t-12.1519\n▁ᎠᏍᎩᏥᏍ\t-12.152\n▁ᎠᏳᎢ\t-12.152\n▁ᎦᏃᎪᎢ\t-12.152\n▁ᎠᎾᏓᏅᏖᏍ\t-12.152\nᎦᎵᏍᏙ\t-12.152\n▁ᏫᏗᏣ\t-12.1521\nᎾᎦᏔᏅᏎ\t-12.1521\nᏍᏓᏁᎴᎢ\t-12.1522\n▁ᏗᎨᏥᏍᏚᏁᏗ\t-12.1522\n▁ᎬᏩᎸᎸ\t-12.1522\n▁ᏣᏕᎸ\t-12.1522\n▁ᏧᏯᏅᏗ\t-12.1523\n▁ᎬᏩᎾᎵᎪᏁ\t-12.1523\n▁ᏫᏍᎩᏯᏅ\t-12.1524\nᎶᏤ\t-12.1524\n▁ᎠᏍᏕᎸᏗᏱ\t-12.1524\n▁ᎤᏕᎰ\t-12.1524\nᏥᏃᎯᏍᏙᏗ\t-12.1525\n▁ᏱᏄᎾᎵᏍᏔ\t-12.1526\n▁ᎢᏣᎦᏔᎲᎾ\t-12.1526\n▁ᎠᏉᎸᎢ\t-12.1526\nᎾᏆᎵᏍᏓᏏ\t-12.1526\n▁ᎦᏝ\t-12.1527\n▁ᎤᏓᏍᎦ\t-12.1527\nᏉᏢᏅ\t-12.1527\n▁ᏤᏣᏁᎶᏙᏗ\t-12.1528\n▁ᏓᎦᎶᏐᏂ\t-12.1528\nᏣᏓᎨᏳᏒ\t-12.1528\n▁ᎠᎦᏁᎳᏅᎯ\t-12.1528\n▁ᏓᏨᏯᎫᏴ\t-12.1528\n▁ᎤᎾᏓᏙᎵᏍᏔᏅᎩ\t-12.1528\n▁ᎤᎶᎪᏗ\t-12.1528\nᎨᏢᏅᎭ\t-12.1529\n▁ᎤᏭᏌᎥ\t-12.153\n▁ᎾᏆᎵᏍᏔᏅᎩ\t-12.1531\nᏥᏁᎢᏍᏗᏍᎬᎩ\t-12.1531\n▁ᎥᎩᏙᎵ\t-12.1531\nᏙᏎᎢ\t-12.1531\n▁ᎪᎵᎬᎩ\t-12.1532\n▁ᎤᎨᏳᏎ\t-12.1532\nᏙᏑᎵ\t-12.1532\nᏥᏯᏛᎦᏁᎸ\t-12.1532\n▁ᏱᏅᏗᎦᎵᏍᏙᏗ\t-12.1532\nᏛᎯᏍᏗᏍᎩ\t-12.1532\n▁ᏓᎾᏍᎪ\t-12.1533\n▁ᏕᎦᎦᏂ\t-12.1533\nᏙᏘ\t-12.1534\nᏍᏆᏂᎪᏙ\t-12.1534\n▁ᎠᎩᏍᎦᎩ\t-12.1534\n▁ᏱᏕᎯ\t-12.1534\n▁ᏍᏋᏂ\t-12.1534\nᏣᏒᎩ\t-12.1534\n▁ᎠᏍᎦᏍᏗ\t-12.1534\nᏅᏔᏩᏗᏒ\t-12.1536\n▁ᎢᏯᎦᏛᏁ\t-12.1536\n▁ᎬᏔ\t-12.1536\n▁ᏧᏓᏅᏎ\t-12.1536\n▁ᎠᏲᎱᏒᎭ\t-12.1536\n▁ᎤᏂᏰᎸᏅᎩ\t-12.1536\n▁ᏓᏡᏗᎭ\t-12.1537\nᏥᏍᎦᎦ\t-12.1537\n▁ᏯᎾᏓᏅᏖ\t-12.1537\n▁ᎨᏥᎾᏄᎪᏫ\t-12.1538\n▁ᏓᏂᏴᎨ\t-12.1538\nᏓᏄᎪᏓᏁ\t-12.1538\nᏓᏁᎰ\t-12.1539\n▁ᎤᏍᏓᏱᏛᎩ\t-12.154\nᎫᏛ\t-12.1541\n▁ᏗᏯᎢ\t-12.1541\nᏲᎯᏍᏙᏗ\t-12.1541\n▁ᏭᏁᏙᎴ\t-12.1541\n▁ᏗᎦᏓᎷᎩᏍ\t-12.1541\n▁ᎤᏑᎵᎪᏨᎩ\t-12.1542\nᏈᎬ\t-12.1543\nᏉᎯᏳᏓᏁᎯ\t-12.1543\n▁ᎠᏌᎯ\t-12.1544\n▁ᏥᎸᏉᏙᏗ\t-12.1544\nᏥᎾᏰᏍᎬᎢ\t-12.1544\n▁ᎢᏣᏚᎵᎭ\t-12.1544\n▁ᎠᏆᏍᎦ\t-12.1545\n▁ᏕᏥᏴ\t-12.1545\nᏚᏏ\t-12.1545\nᏎᏒᎯ\t-12.1546\n▁ᏥᏨᏲᏪᎳ\t-12.1546\n▁ᏚᏒᏅ\t-12.1546\nᎤᏙᎯᏳᏗ\t-12.1546\n▁ᎤᎾᏛᏗᏱ\t-12.1546\nᎾᏅᏅᎩ\t-12.1547\nᎨᎶᎰ\t-12.1547\nᎩᏰᎢ\t-12.1547\n▁ᏳᏄ\t-12.1547\nᏃᎬᏁᎸ\t-12.1547\n▁ᎤᏍᏕᎵᏍᎩ\t-12.1547\nᏂᏚᎩ\t-12.1547\nᏯᏓᏂᎸᎦ\t-12.1548\n▁ᎤᎵᏍᏚᎩ\t-12.1548\nᏠᎯᏍᏛᎢ\t-12.1548\n▁ᎤᏂᎶᏎᎢ\t-12.1548\n▁ᎤᏍᏓᏩᏛᏒᎩ\t-12.1549\n▁ᏥᏓᏥᏲ\t-12.1549\n▁ᏭᏣᏅᎩ\t-12.155\nᎾᎵᏍᎪᎸᏔᏅᎯ\t-12.155\n▁ᎤᎾᏤᎸ\t-12.155\n▁ᎠᏋᏗᏍᎬ\t-12.1551\n▁ᎨᎳᏂ\t-12.1551\n▁ᎡᏒᎭ\t-12.1551\n▁ᎢᏣᏓᏅᏖᎯ\t-12.1551\n▁ᏭᏓᎩᏅᏎ\t-12.1552\nᏣᎧᏃᏗᏱ\t-12.1553\n▁ᎢᏨᏍᏗᏰ\t-12.1553\n▁ᎢᎩᏙ\t-12.1553\nᏍᏙᏗᎭ\t-12.1553\nᏓᎵᏱ\t-12.1554\n▁ᏕᏥᏯᎦᏅ\t-12.1554\n▁ᎲᏔᏅ\t-12.1555\nᏚᏓᎴᏍ\t-12.1555\n▁ᏬᎩᎶᎯᏍᏗ\t-12.1555\nᎩᏯᏅᎡᎵ\t-12.1556\n▁ᏙᏥᏍᏗᏰᏗ\t-12.1556\n▁ᎤᏪᎧᎲᎢ\t-12.1556\n▁ᏙᏓᏂ\t-12.1556\nᎭᏁᏍᏗ\t-12.1557\nᏔᏅᏅᎩ\t-12.1557\nᏅᏍᏔᏅᎢ\t-12.1557\n▁ᎤᏓᎸᎢ\t-12.1557\n▁ᏱᏄᎵᏍᏔᏁᎢ\t-12.1557\n▁ᏣᏍᏆᏂᎪᏛ\t-12.1558\nᏯᏪᎢᏍᏔᏅ\t-12.1558\n▁ᏥᏬᏂᏍᎬᎢ\t-12.1558\n▁ᏂᏣᏓᎨᏳᏒᎢ\t-12.1558\n▁ᏂᏓᏙᏓᏈᏒᎢ\t-12.1558\nᏍᏚᏅ\t-12.1559\n▁ᏚᏄᏩᎥᎢ\t-12.1559\n▁ᎾᎬᏁᎴᎢ\t-12.1559\n▁ᎤᏁᏙᎸᎩ\t-12.1559\n▁ᎤᎾᏅᏁᎢ\t-12.1559\n▁ᎠᎩᏆ\t-12.1559\nᏣᏁᎸᏔᏅᎯᏍᎪ\t-12.1559\n▁ᏗᏍᏆᏂᎪᏙᏗᏱ\t-12.1559\n▁ᎾᎩᏪᏒᎢ\t-12.156\n▁ᎠᏙᏩᏗᏍᏗ\t-12.156\n▁ᎯᏍᎫᏕᏍ\t-12.1561\nᏔᏛᏁᎵ\t-12.1561\n▁ᏩᎾᎦᎳᎯᏳ\t-12.1561\nᎴᏒᎭ\t-12.1561\nᏕᎵᏛ\t-12.1561\n▁ᏗᏔᎳ\t-12.1562\n▁ᏕᎪᏢᏒᎢ\t-12.1562\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎬᎢ\t-12.1562\n▁ᎯᏃᎯ\t-12.1562\n▁ᏂᏚᏍᏕᎢ\t-12.1563\n▁ᎤᏂᏥᎸᎢ\t-12.1563\nᏁᎷᎩᎡᎴᎢ\t-12.1563\n▁ᎻᎾ\t-12.1563\n▁ᏙᏛᎵ\t-12.1563\n▁ᏄᏬᎯᏳ\t-12.1564\nᏲᏅ\t-12.1564\n▁ᏙᎦᎸ\t-12.1564\n▁ᎠᏍᎦᏱ\t-12.1564\n▁ᎦᎵᎡᎵᎬᎢ\t-12.1565\n▁ᏴᏥ\t-12.1565\nᎵᏰᎢᎶᎸ\t-12.1565\n▁ᎮᏓᏗ\t-12.1565\n▁ᎢᏥᏁᎬᎢ\t-12.1566\nᎦᎵᏍᏙᏎ\t-12.1566\nᏗᏍᎦᎳᏅᎩ\t-12.1567\n▁ᎤᏁᎵᏤᏃ\t-12.1567\nᏣᏅᏓᏕᎮ\t-12.1568\n▁ᏧᏩᏂ\t-12.1568\n▁ᎤᏇᏓᎸᏍᎩᏂ\t-12.157\nᏍᏚᏁᎰ\t-12.157\n▁ᎤᏂᏐᏗ\t-12.157\nᏄᏔᎩ\t-12.157\n▁ᎤᏄᏩᎥᎩ\t-12.1571\nᏯᎩᎷᏨ\t-12.1571\nᎩᎷᏤᎸ\t-12.1571\n▁ᎣᎦᏛᎦᏅᎩ\t-12.1572\n▁ᎠᏂᎪᏩᏘᏍᎬᎩ\t-12.1572\n▁ᎣᏤᏙᎲ\t-12.1572\nᏥᏂᏴᎯ\t-12.1573\n▁ᎤᎾᏂᎩᏐ\t-12.1573\nᎷᏥᎸᎢ\t-12.1573\n▁ᎠᏯᏖ\t-12.1573\n▁ᏧᎦᏣ\t-12.1574\n▁ᏂᏕᏨ\t-12.1574\n▁ᎤᏣᏁᎢ\t-12.1574\n▁ᏱᏂᏥᏪᏎ\t-12.1574\n▁ᏂᏕᎦᏪᏎᎲᎩ\t-12.1575\n▁ᎤᎷᏥᏗᏒ\t-12.1575\nᎻᏱ\t-12.1575\n▁ᏥᏲᎵ\t-12.1576\n▁ᎤᎾᏓᏟᏌᏅᎩ\t-12.1576\n▁ᎤᏓᏍᏛ\t-12.1576\nᎠᏯᏍᎪ\t-12.1577\n▁ᎠᏂᎦᏘᏗᏍᎨ\t-12.1577\n▁ᏴᎬᏛ\t-12.1577\n▁ᎤᏪᎧᎯᏴ\t-12.1578\nᏓᏕᎰᏗ\t-12.1578\n▁ᎤᏍᏈᏯ\t-12.1579\nᎤᏫᏂ\t-12.1579\nᏁᏅᏎᎢ\t-12.1579\n▁ᏙᏓᎬᏩ\t-12.1579\n▁ᎠᎯᏛ\t-12.1579\n▁ᏓᏠᏱᎲ\t-12.1579\n▁ᏬᏱ\t-12.158\nᏛᏗᏍᎬᎢ\t-12.158\n▁ᎤᎾᏄᎪᏨᎩ\t-12.158\n▁ᎡᏉᎯ\t-12.1582\n▁ᎠᏓᏄᏖᏲᎮ\t-12.1582\n▁ᏫᎯᏳ\t-12.1582\n▁ᏅᏥ\t-12.1583\n▁ᏱᎧᏁ\t-12.1583\n▁ᏓᏱᏙ\t-12.1583\nᏗᏌᎧ\t-12.1584\n▁ᎤᎵᏍᏔᏁᎢ\t-12.1584\nᏂᎷᏤᏗ\t-12.1584\n▁ᎤᎵᏍᏕᏍᏔᏁ\t-12.1585\nᏂᎳᏫᏦᎯ\t-12.1585\n▁ᎠᎦᏅᏙ\t-12.1585\n▁ᎠᎾᎵᏍᏓᏴᏗᏍᎪ\t-12.1585\nᏯᏓᏅᏓᏗᏍᏔᏅ\t-12.1586\n▁ᏳᏣᏅᏓᏕᎮ\t-12.1587\n▁ᏫᏍᎩᎾᎩ\t-12.1588\n▁ᏥᎯᏯ\t-12.1588\nᏕᏯᏙᏗᏍᎬ\t-12.1588\n▁ᎤᏄᎩ\t-12.1589\n▁ᏭᎷᏤᎸᎩ\t-12.159\n▁ᏓᏁᎰᎢ\t-12.1591\n▁ᎤᎵᏌᎳᏁ\t-12.1591\nᎦᏔᎲᏍᏔᏅ\t-12.1591\nᏯᏪᏐᎸᏍᏗᏱ\t-12.1592\n▁ᎢᏣᏚᏓᎴ\t-12.1592\n▁ᎪᏢᎭ\t-12.1593\n▁ᏓᏥᏳ\t-12.1593\n▁ᎤᎾᏚᎵᏍᎨᎢ\t-12.1593\n▁ᎤᎾᏎᎵᏔᏅ\t-12.1593\nᏄᏬᏍᏙᏗ\t-12.1594\n▁ᏫᏚᏂᎾ\t-12.1594\n▁ᏧᎨᎯᏙ\t-12.1594\nᎵᏍᏔᏁᎭ\t-12.1594\n▁ᏕᎦᎳ\t-12.1595\n▁ᎦᎵᏥᏙᎲᏍᎬ\t-12.1595\nᏁᎵᏌᏕ\t-12.1595\nᏕᏒᎲᏍᏗᏱ\t-12.1595\n▁ᎠᎾᎵᏍᎦᏍᏙᏗᏍ\t-12.1595\n▁ᏥᎰᎵ\t-12.1595\nᏂᏙᎸᎩ\t-12.1595\nᏃᎱᎶᏗ\t-12.1595\n▁ᎠᏙᎴᎰᏍᎬ\t-12.1595\nᏅᏔᏛᏁᎵ\t-12.1596\nᎳᏍᏗᏱ\t-12.1596\n▁ᏕᎤᏪ\t-12.1597\n▁ᎢᏣᏚᎵᏍᎬᎢ\t-12.1598\nᏒᏍᏔᏁᎢ\t-12.1598\nᎾᎴᏂᎴ\t-12.1598\nᎣᎦᏂᎩᏒ\t-12.1598\n▁ᏫᎬᏩᏂ\t-12.1599\nᏕᏯᏙᏓᏅ\t-12.1599\n▁ᎠᏛᎪᏗᏱ\t-12.1599\n▁ᎬᏩᏘᎾᏫᏛᎮ\t-12.16\nᏦᎸᎯᏍᏗ\t-12.16\n▁ᏗᏂᏅᎦ\t-12.16\n▁ᏗᎦᏥᏯᏠᎢᏍ\t-12.1601\n▁ᏗᏓᏃᎮ\t-12.1602\n▁ᏥᏍᏓᎵ\t-12.1602\n▁ᏥᏅᏗᎦᎵᏍᏙᏗᏍᎪ\t-12.1603\nᏗᎩᏏ\t-12.1603\n▁ᏂᏨᏁᎸᎭ\t-12.1603\n▁ᎠᏋᎨᏫᏍ\t-12.1603\n▁ᎠᎼᏂ\t-12.1603\n▁ᏧᏍᏔ\t-12.1604\nᏂᎴᏴ\t-12.1604\n▁ᎠᏛᏁᏗ\t-12.1604\n▁ᎠᏂᎦᎾ\t-12.1605\nᏂᏟᏅ\t-12.1605\n▁ᎤᏂᏁᎲ\t-12.1605\nᏰᏣᏍᏗᏍᎨ\t-12.1605\n▁ᎡᏙᎢᏳᏅ\t-12.1605\n▁ᎣᎩᏙᎵᏨ\t-12.1606\n▁ᏥᎷᎩ\t-12.1606\nᎵᏍᏓᏴᏅ\t-12.1607\n▁ᏱᏙᎨᏍᏗ\t-12.1607\n▁ᎦᎨᏗᏳ\t-12.1608\n▁ᏣᎬᏍᎪᎸ\t-12.1608\n▁ᎤᎾᏘ\t-12.1608\n▁ᏦᏥᏅᎪᎢ\t-12.1608\n▁ᏣᏍᎪ\t-12.1609\n▁ᎡᎳᏗᎨ\t-12.1609\nᏭᏍᏘᏅ\t-12.1609\n▁ᎢᏓᎴᏂᏙᎲ\t-12.1611\n▁ᏣᎩᏁᏤᎸ\t-12.1611\nᏛᎦᏁᎵ\t-12.1611\nᏂᎶᏍᎬ\t-12.1612\nᎤᏂᏍᎦᏨ\t-12.1612\n▁ᏍᎦᏫᏍ\t-12.1613\n▁ᎤᏁᎳᏗᏍᏗᏍᎬ\t-12.1614\n▁ᎠᏂᏍᎦᎢᎲᎩ\t-12.1614\nᏥᏬᏁᏗᎭ\t-12.1614\n▁ᏄᏍᎦ\t-12.1614\nᏘᏃᎮᎴᏃ\t-12.1615\n▁ᎤᏁᎢᏍᏔᏅᎩ\t-12.1615\nᎠᏎᎵᏛᏍ\t-12.1615\n▁ᎤᎵᎮᎵᏨᎩ\t-12.1615\n▁ᏗᏴᏈ\t-12.1616\n▁ᎠᎧᏔᎲ\t-12.1616\n▁ᎤᏯᏅᎲᎩ\t-12.1616\nᏡᏂ\t-12.1617\n▁ᏥᏂᏣᏛᏁ\t-12.1617\n▁ᎦᏓᎡᎢ\t-12.1618\n▁ᎤᏂᏲᏍᏔᏅ\t-12.1619\nᎻᎴ\t-12.1619\n▁ᎬᏬᎵᏤ\t-12.162\n▁ᎠᎾᏔ\t-12.162\nᏓᏅᏕᎭ\t-12.1621\n▁ᎤᎷᎯᏍᏓᏁ\t-12.1621\n▁ᏚᏪᎧᎲᎢ\t-12.1621\nᎤᏎᏒ\t-12.1622\n▁ᏕᎤᎷᎬᎢ\t-12.1622\n▁ᎦᏍᎩᏓᏍᎬᎢ\t-12.1622\n▁ᏙᎩᎸᏫᏍᏓᏁᎲᎢ\t-12.1622\n▁ᎯᏁᎬᎢ\t-12.1622\n▁ᎠᏂᎧᎸᎢ\t-12.1622\n▁ᎬᏩᏓᏅᏁᎮ\t-12.1622\n▁ᎠᏥᏃᏁᎴᎢ\t-12.1622\nᏓᎵᏍᏓᏴᎲᎦ\t-12.1622\nᏪᏲᎲᏍᎩ\t-12.1623\n▁ᏫᏚᎧᎾᏁᎢ\t-12.1623\n▁ᎯᏢᎾ\t-12.1623\n▁ᎬᏩᏲᎱ\t-12.1623\n▁ᏓᏥᎵ\t-12.1624\n▁ᎯᏰᎶ\t-12.1624\nᏕᏥᏲᏒ\t-12.1624\n▁ᏅᏓᏳᎵᏍᏙᏔᏅ\t-12.1624\n▁ᏕᏥᎸᏫᏍᏓᏁᎸ\t-12.1624\n▁ᏓᎳ\t-12.1625\n▁ᏥᏕᎦᎶ\t-12.1625\n▁ᏧᎶᏒᎢ\t-12.1626\n▁ᎤᎾᎵᏱ\t-12.1627\n▁ᎠᎾᏛᎩᏍᎬᎢ\t-12.1627\nᎩᎳᎾᎶ\t-12.1628\n▁ᎤᎾᏓᏅᏖᎢ\t-12.1628\n▁ᎤᏍᏗᏰᏔᏁᎢ\t-12.1628\nᏓᏓᏅᏟ\t-12.1628\nᎪᎩᏂᏄᎪ\t-12.1628\n▁ᏕᎦᏅᏍᏓ\t-12.1628\n▁ᏳᏇ\t-12.1628\n▁ᎮᎵᎠᏍᎪ\t-12.1628\n▁ᏧᏃᏰ\t-12.1629\n▁ᎠᎾᎵᎮᎵᎬᎢ\t-12.1629\n▁ᎠᏇᎭ\t-12.1629\nᎦᎷᏨᎭ\t-12.1629\n▁ᎦᏬᏂᏍᎨᎢ\t-12.163\n▁ᏥᎨᎭ\t-12.163\nᏲᏍᏔᏃ\t-12.163\n▁ᏱᎨᏥᏎᎪᎩ\t-12.163\n▁ᎠᏰᎸᏎᎢ\t-12.1631\n▁ᎤᏂᏰᎸᏎᎢ\t-12.1631\n▁ᎤᏅᏍᎦᏝ\t-12.1631\n▁ᎢᏨᏙᏗ\t-12.1632\nᏓᏓᏲᎯᏎ\t-12.1632\nᏁᎵᏛ\t-12.1633\n▁ᎤᎾᎵᏘ\t-12.1633\n▁ᏏᎩᎻᏱ\t-12.1633\n▁ᏛᎾᎦ\t-12.1635\n▁ᎠᎳᏏ\t-12.1635\nᏗᏫᏏ\t-12.1636\n▁ᎠᏂᏃᏗᏍᎬ\t-12.1636\n▁ᎤᏰᎸᎾᏁ\t-12.1636\n▁ᏛᏂᏍᏆᏂᎪ\t-12.1636\n▁ᏓᎩᎸᏫᏍᏓᏁᎰ\t-12.1636\n▁ᎤᎾᏘᏃᎴ\t-12.1637\n▁ᎢᏛᏗᏍᎬᎢ\t-12.1637\nᏰᎾ\t-12.1637\n▁ᏨᏕᏨ\t-12.1637\n▁ᏗᎬᏩᎾᏁᎶᏙᏗ\t-12.1637\nᎾᏛᏁᎲ\t-12.1639\nᏒᏍᏙᏗ\t-12.1639\nᏫᏒᎢ\t-12.1639\nᏓᎪᎾᏛ\t-12.1639\nᎾᎵᎪᎲᏍᎬ\t-12.164\n▁ᎤᏂᏲᎮᎢ\t-12.164\n▁ᎤᏙᎯᏳᎲ\t-12.1641\n▁ᎠᏓᏙᎵᏍᏗᎭ\t-12.1642\n▁ᎢᏥᎦᏔᎲᎢ\t-12.1642\nᏳᏩᏂᎸ\t-12.1642\n▁ᎠᏓᏔ\t-12.1642\n▁ᎠᎯᎯ\t-12.1642\nᏂᏍᎩᏪᏎᎰ\t-12.1643\nᏚᎿᎥᎢ\t-12.1643\n▁ᎤᎾᏓᏅᏙ\t-12.1643\nᏂᎷᏨ\t-12.1643\n▁ᎤᎾᎵᏏ\t-12.1643\nᏦᏱᎮ\t-12.1644\nᎡᎵᏍᎨᏍᏗ\t-12.1644\nᏥᏴᏌ\t-12.1645\n▁ᏥᏥᎭ\t-12.1645\n▁ᏥᎦᏚ\t-12.1645\n▁ᎤᏂᏲᎴᎢ\t-12.1645\n▁ᏂᏍᏋᏁᎸ\t-12.1647\n▁ᏥᏯᏚᎸᎡᎸ\t-12.1648\nᏍᎪᎵᏰᎥ\t-12.1648\nᏝᏛᎩ\t-12.1649\nᏂᏰᎸᏒ\t-12.165\nᏕᎶᎰᏍᎬ\t-12.165\nᎮᎮᎢ\t-12.165\nᎴᏈ\t-12.1651\nᏦᏂ\t-12.1651\nᎠᏆᏛᎦᏁᎸ\t-12.1651\nᎢᏍᏓᏁᎸᎢ\t-12.1652\nᏗᏒᏁ\t-12.1653\n▁ᎤᏠᎠᏏ\t-12.1653\nᎪᎥᏍᎦᏉ\t-12.1653\n▁ᎠᏆᏙᏗᏱ\t-12.1653\n▁ᏫᏣᎢᏒ\t-12.1653\nᏓᏗᏍᎬ\t-12.1654\nᎦᎳᎮ\t-12.1655\nᏓᎨᏙᎵ\t-12.1655\n▁ᏗᎦᏆᎵ\t-12.1655\n▁ᏓᏣᎾ\t-12.1656\n▁ᏚᎾᏟᏴ\t-12.1656\n▁ᏚᏪᏐ\t-12.1656\nᎾᏙᏓᏆ\t-12.1657\n▁ᏳᏂᎭ\t-12.1657\n▁ᎤᏍᏆᏃᏴᎬ\t-12.1659\nᏭᏣᏅᎩ\t-12.1659\n▁ᏣᏙᎯ\t-12.166\nᎦᏁᎴᎢ\t-12.1661\nᏁᏙᎰ\t-12.1661\n▁ᎤᏂᏩᏏ\t-12.1662\n▁ᏥᏂᏣᏪ\t-12.1662\n▁ᏫᎦᏅᎨ\t-12.1662\nᎦᏡᏗᏍᎬ\t-12.1662\nᎵᏍᎦᏍᏙᏗᏱ\t-12.1662\n▁ᎤᏙᏢᏁ\t-12.1664\nᎬᏩᏕᏁᎴᎢ\t-12.1664\nᏙᏗᏍᎨᎢ\t-12.1665\nᏙᏣᎸ\t-12.1665\n▁ᎤᏱᎵᏙ\t-12.1666\n▁ᎬᏩᏂᏅ\t-12.1666\nᏙᎳᏛᏗ\t-12.1667\n▁ᏗᏥᏐᏈᎸ\t-12.1667\n▁ᎡᏣᏛ\t-12.1668\nᏌᏛᏙᏗ\t-12.1669\nᏂᏣᏪᏎᎭ\t-12.1669\n▁ᏓᎾᏏᏔᏗᏍ\t-12.167\nᎦᎵᏍᎩ\t-12.1671\n▁ᎤᏪᏅᎡᎮ\t-12.1672\nᎦᎿᏁ\t-12.1673\nᏤᎰᎢ\t-12.1673\n▁ᏚᏪᎭ\t-12.1673\n▁ᎦᏙᎥᎢ\t-12.1673\n▁ᎤᏛᏎᎢ\t-12.1673\n▁ᏗᎨᏥᏰ\t-12.1673\nᎨᎦᎵᏍᎪᎸᏓᏁᎸᎩ\t-12.1673\n▁ᎥᏆᏒᎦᎶᏔᏅ\t-12.1674\nᎠᏒᎢ\t-12.1674\nᏥᏅᏁᎸᎩ\t-12.1675\nᏥᏴᏏ\t-12.1675\n▁ᏳᎾᏛᎦᏁ\t-12.1675\n▁ᎤᏛᏛᏅ\t-12.1676\n▁ᎣᏥᏂ\t-12.1676\n▁ᎤᏂᎦᏛ\t-12.1677\n▁ᏫᎦᎷᎯᏍᏗ\t-12.1678\n▁ᏂᏕᎦᎵᏍᏗ\t-12.1678\n▁ᏧᏂᏆᏂᏲᏍ\t-12.1678\nᏮᏔᏁ\t-12.1679\nᏚᏓᏕᏫᏍᏗ\t-12.1679\n▁ᎡᏙᎢ\t-12.1679\n▁ᏓᏤ\t-12.1679\n▁ᏗᏁᎳ\t-12.168\n▁ᏚᎹ\t-12.168\nᏩᏥᎪ\t-12.1681\n▁ᎢᏗᏍᏓᏱ\t-12.1681\n▁ᎾᏋᏁᎲ\t-12.1682\nᎯᏍᏕᎸᏗ\t-12.1683\n▁ᎣᎩᏅᏍᏔᏅ\t-12.1683\n▁ᎤᏛᏎ\t-12.1683\n▁ᎢᎦᎵᏍᏙᏗ\t-12.1684\nᏩᏛᎯᎸᎭ\t-12.1684\nᏓᏂᏟᏍᏗᏍᎪᎢ\t-12.1685\nᏛᏅᎢᏍᏓᏁ\t-12.1685\n▁ᎤᎵᎪᎾᏔᏅ\t-12.1686\nᎯᎪᏩᏘᎭ\t-12.1686\n▁ᏥᎬᎭ\t-12.1686\n▁ᎠᏥᎸᏉᏙᏗᏱ\t-12.1686\nᏄᏢᏕ\t-12.1687\nᏍᏓᏱᏛᎩ\t-12.1688\n▁ᏕᎦᎳᏅᏛᎢ\t-12.1688\nᎵᏰᏛ\t-12.1689\n▁ᏓᏲᏣᏛ\t-12.1689\n▁ᎢᎨᎭ\t-12.169\nᏚᏓᎴᏍᏗᏍᎬ\t-12.169\nᎬᎭᎷᏯᏍᎬᎢ\t-12.169\n▁ᎰᎵᎦ\t-12.1691\n▁ᏍᎩᎾᏂ\t-12.1691\n▁ᎤᏂᏩᎯᏍᏔ\t-12.1691\n▁ᏕᎦᏂ\t-12.1691\n▁ᎤᏍᏆᏂᎪᏎᎢ\t-12.1691\nᏚᏞ\t-12.1692\n▁ᏔᏘᏍᏓᏁ\t-12.1693\n▁ᎢᏣᏓᏙᎵᏍᏗᏍᎬᎢ\t-12.1693\n▁ᎠᎾᏂᎩ\t-12.1694\nᎢᎨᏅᏍᏗ\t-12.1694\nᏂᏴᏍᏔᎩᏍ\t-12.1695\nᏛᎦᏍᏓ\t-12.1695\n▁ᏚᏂᏃᎩᏒ\t-12.1695\nᎩᏐᎾ\t-12.1695\nᎦᏥᏃᏁᎸᎩ\t-12.1695\n▁ᏔᎵᏍᎪᎯ\t-12.1696\n▁ᏓᏥᎦ\t-12.1697\n▁ᎠᎵᏣ\t-12.1697\nᏂᏔᏕᎩ\t-12.1698\n▁ᏧᏂᎸᎯ\t-12.1698\nᏗᎧᏃᎩᏍᎨ\t-12.1698\n▁ᎠᏴᏫᏯᎯ\t-12.1698\n▁ᏕᎦᏄᎪᎬᎢ\t-12.1699\nᎬᎪᏩᏔ\t-12.1699\nᏏᏂᏙᎮ\t-12.1699\n▁ᏍᏕᎾ\t-12.1699\n▁ᏚᏓᏂᎸᏤᎴ\t-12.17\nᏬᏒᏁ\t-12.1701\nᎹᏓᏗ\t-12.1701\n▁ᎠᏆᏢ\t-12.1701\n▁ᎧᏃᎯᏴ\t-12.1701\nᎪᏒᎾ\t-12.1702\n▁ᎠᎫᏏ\t-12.1705\n▁ᏥᏥᏰᎸ\t-12.1707\n▁ᎡᎵᏏ\t-12.1707\n▁ᏈᎬᎢ\t-12.1707\nᎾᎵᏍᎪᎸᏗᏍᎬᎢ\t-12.1708\nᏍᏓᎦᏔ\t-12.1708\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎨ\t-12.1708\nᏓᏄᏖ\t-12.1708\n▁ᎠᏂᎨᏂ\t-12.1709\nᎶᏛᎾ\t-12.1709\nᏦᏎᎮᏍᏗ\t-12.171\n▁ᏗᎦᏅᎦᎸᏙᏗ\t-12.1711\n▁ᏕᎫᎪᏓᏁᎰ\t-12.1712\nᎦᏬᏂᏍᎪᎢ\t-12.1712\nᏯᎫᏴᎡᏗᏱ\t-12.1712\nᏲᏍᏗᏍᎪ\t-12.1713\n▁ᎠᏂᎲᎦ\t-12.1714\n▁ᎭᏢᎨ\t-12.1714\n▁ᏱᏄᎾᏛᏁᎴ\t-12.1714\nᎪᎯᏍᏓᏁᎯ\t-12.1715\nᏥᏯᏛᏁᎸ\t-12.1716\nᏗᎴᎲᏍᎬ\t-12.1717\nᏚᎢᏍᏛ\t-12.1717\n▁ᏗᏂᏃᎩᏍᏗᏍ\t-12.1717\nᎯᏴᏓ\t-12.1718\nᏃᎯᏳᏏᏱ\t-12.1719\nᎶᏅᎮ\t-12.1719\n▁ᏕᏣᏓᏠᎲ\t-12.1719\n▁ᏇᏂᏍᎩᏂ\t-12.172\n▁ᏂᎬᏁᎮᎢ\t-12.1721\nᏓᏅᏒᎯ\t-12.1721\n▁ᏚᏨ\t-12.1721\n▁ᎠᎦᏘᏃᎸ\t-12.1721\nᎾᏏᏃᎴ\t-12.1722\n▁ᎾᏆᎵᏍ\t-12.1722\n▁ᏓᏁᎮ\t-12.1723\n▁ᏓᏂᏍᎦᎢᎮ\t-12.1723\n▁ᎠᎾᏗᏒᎯᎲ\t-12.1724\n▁ᎦᏅᎪᎢᏍᏗ\t-12.1725\n▁ᎤᏙᎯᏳᏁᎢ\t-12.1725\n▁ᎠᏰᎸᏎ\t-12.1726\n▁ᎠᏂᎸᏉᏗᏍᎨᎢ\t-12.1726\nᏅᏛᎩ\t-12.1726\nᎴᏏ\t-12.1727\n▁ᏧᏓᏚ\t-12.1728\n▁ᎭᏓᏅᏖᏍᎪ\t-12.1729\nᏂᏲᏍᏓᏁ\t-12.1733\n▁ᎦᏣᏄᎵᎨ\t-12.1733\nᏍᏛᏗᏍᎨᎢ\t-12.1733\n▁ᏭᎾᏗᏅ\t-12.1733\nᏢᏆᏍᎪᎢ\t-12.1734\n▁ᏚᎴᏔᏁ\t-12.1734\n▁ᎪᏙᏗ\t-12.1734\n▁ᎤᏂᏰᎸᏒ\t-12.1736\nᏅᎦᎶᏔᏅ\t-12.1736\n▁ᏚᏄᏌ\t-12.1736\nᏚᏂᏐᎯᏍ\t-12.1737\n▁ᎤᏩᏣ\t-12.1737\nᏅᎦᏍᎪ\t-12.1737\n▁ᎬᏭᎯᏍᏗᏍᎨ\t-12.1737\nᎵᏱᎶᎯᏍᏗᏱ\t-12.1737\nᏖᏛ\t-12.1738\n▁ᎢᎩᎮᏍᏗ\t-12.1739\nᏅᏂᏌ\t-12.1739\n▁ᎨᏣᏈᏗ\t-12.174\nᏣᏪᏐᎸᏍᏔᏁ\t-12.174\nᎦᎾᏅᎪᎨ\t-12.1741\n▁ᏧᎾᏓᏡᎬ\t-12.1741\n▁ᏚᏩᎭᏂᏍ\t-12.1741\nᏗᎾᏘ\t-12.1741\n▁ᎤᎵᏥᏙ\t-12.1741\n▁ᏕᏥᏍᏚᏅ\t-12.1742\nᏫᎾ\t-12.1743\n▁ᏈᎦ\t-12.1745\nᏥᏲᎯᏎᎸ\t-12.1746\n▁ᎤᏫᏒᏎ\t-12.1746\n▁ᏭᏁᎢ\t-12.1747\nᎨᎦᏒᎦᎶ\t-12.1749\n▁ᏓᏂᏙᎨᎢ\t-12.175\nᎦᏘᎾᏫᏛ\t-12.1751\n▁ᏗᎩᎪ\t-12.1751\n▁ᏧᎸᏌᏓ\t-12.1751\n▁ᎦᎦᎶᎢ\t-12.1752\n▁ᎯᏣᏕᎶᎰ\t-12.1752\n▁ᏗᎦᏚ\t-12.1753\n▁ᎤᏓᏌᎧᎯ\t-12.1753\nᏥᎰᎵ\t-12.1753\nᏓᎪᎲᏍᏗ\t-12.1753\nᏂᎾᏕᎩ\t-12.1754\n▁ᏭᏔ\t-12.1754\n▁ᏂᏓᏅᏁ\t-12.1754\nᎦᏤᎵᎦ\t-12.1755\n▁ᏕᎦᎶᎨᏒᎢ\t-12.1755\n▁ᏧᎨᏳᎯᏳ\t-12.1755\n▁ᎠᏍᏆᎵᏍᎬᎢ\t-12.1755\n▁ᎡᎵᏍᎨᏍᏗ\t-12.1756\nᎩᏲᏏᎯ\t-12.1756\nᏕᏥᎦᎿᏩᏕᎦ\t-12.1757\n▁ᏚᎾᏄᎪᏫᏎᎴᎢ\t-12.1757\nᎤᏪᏅᏍᏗᏱ\t-12.1759\n▁ᏧᏂᏰᎸᏐ\t-12.1759\nᏏᎳᏛᎥᏍᎬ\t-12.1759\n▁ᎤᏃᎮᎸᎢ\t-12.176\nᎩᏲᏍᏙᏓᏁ\t-12.1762\nᏐᏢᏙᏗ\t-12.1765\n▁ᎠᎾᎵᎮᎵᎨᎢ\t-12.1766\nᏔᏍᎨ\t-12.1766\n▁ᏍᏕᎵᏍᎩ\t-12.1767\n▁ᏂᏕᏅ\t-12.1767\nᏆᎵᎢ\t-12.1768\nᏫᏣᎷᏣ\t-12.1768\n▁ᎤᏥᎸᏒᎩ\t-12.1768\n▁ᎤᎾᏕᏯᏙᏗᏍᎬ\t-12.1769\nᎢᏥᎦᏔᎾᎢ\t-12.1773\n▁ᎢᏣᎵᏍᎪᎸᏗᏍᎬ\t-12.1775\n▁ᎦᏁᎬ\t-12.1776\nᏏᎲᏏ\t-12.1776\n▁ᎣᏎ\t-12.1777\n▁ᏧᏁᏲᎲᏍ\t-12.1777\nᏓᏍᏗᏍᎩ\t-12.1779\n▁ᎠᏐᏴᎢ\t-12.178\n▁ᎢᏧᏅ\t-12.178\nᏁᎸᏙᏗ\t-12.178\n▁ᎡᏗᎨᏳ\t-12.1781\nᏯᏛᏁᏗ\t-12.1782\nᎾᏕᎶᏆ\t-12.1782\nᏩᏍᏗᏕᎩ\t-12.1782\n▁ᏚᏃᎸᎢ\t-12.1782\n▁ᎠᏉᎯᏳᏒ\t-12.1783\n▁ᎤᎶᏒᎩ\t-12.1784\n▁ᎤᏁᎸᏔᏅ\t-12.1786\n▁ᎤᏂᏠᏱᏉ\t-12.1786\n▁ᎤᏲᎷ\t-12.1786\nᏄᏯᎩ\t-12.1788\n▁ᏍᎦᏰᎬᏍᏓ\t-12.1791\nᏕᏘᏱᎶ\t-12.1791\nᏩᏂᏴᎯᎮ\t-12.1792\nᏓᎧᏃᎮᎵ\t-12.1792\nᎣᎦᎵᏍᏕᎸᏙᏗ\t-12.1792\n▁ᎤᏅᏅᎩ\t-12.1793\n▁ᎠᏥᎪᎵᏰᏍᎬ\t-12.1794\nᏓᏁᏤᎸ\t-12.1796\nᎾᏁᎭ\t-12.1797\nᎢᏍᏗᏍᎨᎢ\t-12.1797\nᏚᎢᏍᏔᏅ\t-12.1798\nᎪᏕᏍᏗᏍᎨᏍᏗ\t-12.1799\n▁ᎠᎦᏔᎮᎢ\t-12.1799\n▁ᏱᏣᎴ\t-12.1801\n▁ᎨᎦᏒᎦ\t-12.1801\n▁ᎠᏆᎧ\t-12.1802\n▁ᎠᏂᎷᏤ\t-12.1803\nᏯᏒᎦᎶᏔᏅ\t-12.1804\n▁ᎠᏓᏙᎵᏍᏓᏁ\t-12.1804\n▁ᏫᏚᎪᎲ\t-12.1805\nᎦᏟᎶᎡᎸ\t-12.1805\nᎾᏓᏓᏍᎩ\t-12.1805\n▁ᎠᏡᏗᏍᎩ\t-12.1805\nᏆᏁᏦᏅ\t-12.1805\n▁ᎠᏆᏍᎩᏓᏒ\t-12.1805\n▁ᎢᏥᏅᎯ\t-12.1806\nᏅᎡᎲ\t-12.1807\nᏪᏯᎸᏤ\t-12.1808\n▁ᏱᏓᎩᎸᏫᏍᏓ\t-12.1809\n▁ᏫᏄᏪᏎᎴ\t-12.1809\n▁ᎤᎩᏓ\t-12.1811\nᏓᏅᏖᏗᏍᎨᎢ\t-12.1812\nᎢᏍᏔᏅᎭ\t-12.1813\n▁ᎠᏆᏛᎦᏍᏙ\t-12.1813\n▁ᏓᎵᏍᏗᎳᏁᎬᎢ\t-12.1816\n▁ᎯᏁᎩᏒ\t-12.1816\n▁ᏕᎪᎵ\t-12.1817\n▁ᏧᏗᎦᎴ\t-12.1818\nᏓᏓᏅᏖᏍᎬᎢ\t-12.1819\n▁ᏱᎬᎭ\t-12.1819\n▁ᎯᏯᏓᎵᏁᎯᏕ\t-12.182\nᏄᏬᎯᏍᏗᏍᎩ\t-12.182\nᏁᎢᏍᏙᏗ\t-12.1821\n▁ᎤᏓᏑᏴᎢ\t-12.1821\nᎮᎸᏒ\t-12.1822\n▁ᎦᏥᏲᏪᎳᏁ\t-12.1822\n▁ᎠᏍᏛᏗᏍᏗᏍ\t-12.1824\n▁ᎤᏪᎧᏁᎴᎢ\t-12.1824\nᎵᎡᎾ\t-12.1824\n▁ᏗᏁᎨ\t-12.1826\n▁ᏧᎾᏥ\t-12.1827\nᏓᏲᏍᏔᏁ\t-12.1827\n▁ᏚᎧ\t-12.183\n▁ᎢᏗᎵ\t-12.183\n▁ᎤᎾᎩᎴ\t-12.183\n▁ᎤᏩᏂᎦᎸ\t-12.1831\n▁ᎧᎸᎬᎢ\t-12.1831\nᏛᎯᏎᎸᎯ\t-12.1831\nᏫᏍᎦ\t-12.1832\nᏗᏔᏏ\t-12.1833\nᎬᎭᏅ\t-12.1834\n▁ᎠᏯᏥ\t-12.1834\ndi\t-12.1836\nᎮᏰᏃ\t-12.1837\n▁ᏧᏓᏅᏖᎴ\t-12.1837\n▁ᎣᏂᏴ\t-12.1837\n▁ᎤᏓᏁᏁ\t-12.1838\n▁ᏓᎩᏍᎨ\t-12.1839\nᏫᏣᎶᏒ\t-12.184\n▁ᎣᎦᏗᏔᏍᏗ\t-12.184\n▁ᎤᏬᏂᏒᎢ\t-12.1841\n▁ᏦᎩᎭ\t-12.1841\nᏴᏅᎯ\t-12.1841\n▁ᏧᎯᏍᏗᏱ\t-12.1841\nᎹᎩ\t-12.1842\n▁d\t-12.1842\n▁ᏕᎫᎪᏓᏁᎸ\t-12.1842\nᏲᏗ\t-12.1842\n▁ᎠᏓᏅᏍᎬ\t-12.1844\n▁ᏚᎾᏓᏛᏛᏁ\t-12.1845\nᏁᎶᎯ\t-12.1845\nᏥᏩᎾᎦᎸᎢ\t-12.1848\n▁ᏂᎬᎸ\t-12.1851\n▁ᏦᏒᎢ\t-12.1852\n▁ᏥᏙᏥ\t-12.1852\n▁ᎤᏕᎭᏯ\t-12.1853\nᎾᏖᏉᎶ\t-12.1853\n▁ᏣᏟᏍᏛ\t-12.1854\n▁ᏕᎤᎾ\t-12.1855\nᏲᎲᎢ\t-12.1855\nᏥᎪᎵᏰᏍᎨᏍᏗ\t-12.1856\n▁ᎣᏍᏙ\t-12.1856\n▁ᎦᏅᎨᎢ\t-12.1857\nᎪᎸᏍᏔᏁ\t-12.1857\n▁ᏚᏙᎯ\t-12.1858\n▁ᎠᏥᏍᏚᎲ\t-12.1859\nᏩᎭᏂᎸ\t-12.186\n▁ᎨᏥᏁᏗᏱ\t-12.186\n▁ᏄᏕ\t-12.1861\n▁ᎫᏏ\t-12.1862\nᏦᎯᏳᏅᎩ\t-12.1862\nᎵᏃ\t-12.1863\n▁ᏧᎳᏑᎶᎩ\t-12.1864\nᎩᏰᎸᎭ\t-12.1865\nᏁᏉᎥ\t-12.1866\nᏗᏣᏏᎳᏛᏙᏗ\t-12.1867\nᏓᏂᏏᏅ\t-12.1867\nᎵᏍᏔᏂᏓᏍᏗ\t-12.1869\n▁ᎤᏑᏯᎩ\t-12.1871\n▁ᎡᏌᏃ\t-12.1871\nᏂᏕᎾ\t-12.1871\n▁ᏂᎦᎵᏍᏙᏗᏍᎨᎢ\t-12.1872\nᎸᎡᎸᎯ\t-12.1874\n▁ᏓᏟᎶᏍᏗᏍᎬ\t-12.1875\nᏍᏚᏕᏍᏗ\t-12.1876\n▁ᏓᎲᎢ\t-12.1877\n▁ᏫᏍᏛ\t-12.1877\n▁ᏚᎾᏗᏔᎮ\t-12.1878\n▁ᏗᏍᎩᎾ\t-12.1879\nᏣᏠᏯᏍᏓ\t-12.1879\n▁ᎤᎾᎸᎸ\t-12.188\nᏁᏙᎭ\t-12.188\nᏘᎾᏫᏛᎲ\t-12.188\n▁ᎤᏂᏩᏒᎨ\t-12.1884\n▁ᎠᏗᏔᏍᎬ\t-12.1884\n▁ᎠᎧᎵᎢᎭ\t-12.1884\n▁ᏂᎬᏩᏛᏁ\t-12.1885\n▁ᏱᎪᎵ\t-12.1885\n▁ᏗᏄ\t-12.1885\n▁ᎣᎩᏃᎮᎸ\t-12.1886\nᏤᎳᏗᏍᏗᏍᎬᎢ\t-12.1887\n▁ᎠᏢᏗ\t-12.1887\n▁ᎢᎨᏐ\t-12.1888\nᏨᏒ\t-12.1888\n▁ᏣᏆᎵᏂᎪᎯᏍ\t-12.1889\n▁ᏅᏩᏍᏙ\t-12.1889\n▁ᎣᏓᏅᏛᎢ\t-12.189\n▁ᎢᏥᎷᏤ\t-12.189\n▁ᏣᏁᎳᏗᏍᏗ\t-12.1893\n▁ᎾᎬᏁᎸᎢ\t-12.1894\nᏆᏛᏂᏏ\t-12.1895\n▁ᏱᏨᏯᏛ\t-12.1897\n▁ᏥᎩᏁᎸᎩ\t-12.19\nᏃᏣᎶᏗ\t-12.1901\n▁ᎫᏇ\t-12.1901\n▁ᏴᎨᏣᏛ\t-12.1902\nᏁᎩᎡ\t-12.1903\nᎥᏍᎪ\t-12.1904\n▁ᎯᏯᏅᏗ\t-12.1907\n▁ᏂᎦᎦ\t-12.1908\n▁ᎠᏏᎾᏌᏅᎢ\t-12.1909\n▁ᏚᎵᎪᏁ\t-12.1909\n▁ᏱᏩᎾ\t-12.1909\n▁ᎠᏥᎷ\t-12.1909\n▁ᎤᏲᎯᏍᏔᏁᎢ\t-12.191\n▁ᎡᏥᏲᎢᏎᎸ\t-12.191\nᏂᏏᏁᏗᏱ\t-12.1913\nᎵᎪᏅᏛ\t-12.1914\nᏓᏍᏛᏗᏍᏙᏗ\t-12.1914\n▁ᎣᎦᎵᎮᎵᏍᏗ\t-12.1915\n▁ᎢᎫᏩᎾ\t-12.1916\nᎾᏁᎳᏗᏍᎬ\t-12.1917\n▁ᎧᏃᎮᏍᎨ\t-12.1917\n▁ᏫᎦᎷ\t-12.1917\nᎵᏏᎩ\t-12.1918\n▁ᎷᏆ\t-12.1918\nᏣᏓᏙᏢᎾᏁᎸᎩ\t-12.1918\n▁ᏩᎦᏘ\t-12.1919\nᎧᏃᎮᏗ\t-12.192\n▁ᏂᎦᏪᏎᎲ\t-12.192\n▁ᏗᎯᏍᏗ\t-12.1921\n▁ᎠᏚᏓᎴᏍᏗᏍᎬ\t-12.1923\n▁ᎤᏲᎰᎢ\t-12.1924\n▁ᎠᏂᏝ\t-12.1925\n▁ᏙᏛᎾ\t-12.1927\nᎦᏛᎾᏨ\t-12.1927\n▁ᏚᏔᏅᎩ\t-12.1927\n▁ᏱᏃᎩ\t-12.1928\nᏏᏓᏍᏗᏱ\t-12.1928\nᏯᏪᏨ\t-12.1931\nᏥᏯᏘᏍᏓᏁᎯ\t-12.1934\n▁ᎯᎦᏔᎭᏰᏃ\t-12.1935\nᎾᏓᏂᎸᎢᏍᏗ\t-12.1936\nᏴᎯᎭ\t-12.1937\nᎸᎡᎸ\t-12.1937\nᏃᎸᏔᏁ\t-12.1939\nᎵᏃᎮᏗᏍᎪ\t-12.1939\nᏓᏙᎵᏍᏓᏁᎴᏍᏗ\t-12.194\nᏍᏛᏗᏍᎨᏍᏗ\t-12.1942\nᎡᏥᎩᏏ\t-12.1944\nᏍᏕᎸᏙᏗᏍᎨ\t-12.1944\nᎡᏣᏘᏃᎦ\t-12.1945\nᏨᏴᎦ\t-12.1945\n▁ᎶᏏ\t-12.1945\n▁ᎠᏰᏙᎳᏛᏗᏱ\t-12.1946\n▁ᎢᏣᏁᏢᏔᏅ\t-12.1946\nᏏᏙᎲ\t-12.1946\n▁ᎠᏔᎴᎦᏒᎢ\t-12.1947\nᏗᏓᎴᎲᏍᎬ\t-12.1948\n▁ᎠᏂᏍᏚ\t-12.1951\n▁ᏚᏩᏛᎲᏎ\t-12.1951\nᎦᎵᏏ\t-12.1951\n▁ᎣᎩᏁᏤᎸ\t-12.1952\n▁ᎤᏂᏣᏛᎢ\t-12.1952\n▁ᎠᏂᏴᎯᎰ\t-12.1952\nᎠᏍᎪᎢ\t-12.1953\nᏇᎵᏒ\t-12.1953\nᎳᎹ\t-12.1954\n▁ᎤᎾᎵᏍᎪ\t-12.1954\nᏆᏁᏍᎩ\t-12.1956\n▁ᏚᏪᎵᏎᎴ\t-12.1956\nᏦᎣᏎᎢ\t-12.1956\n▁ᏚᎾᏁᎶᏛ\t-12.1958\nᏭᏌᏅ\t-12.1958\n▁ᏱᎦᎸᏉᏗ\t-12.1959\nᏖᎭ\t-12.196\n▁ᏣᏥᏍᏚ\t-12.196\n▁ᎤᏃᏁᎴᎢ\t-12.1961\nᎾᏱᎩ\t-12.1963\nᎾᏰᎯᏍᏗᏱ\t-12.1963\n▁ᏘᏰ\t-12.1965\nᎢᏍᎨᏍᏗ\t-12.1966\n▁ᏯᏉᏎ\t-12.1967\n▁ᏫᏚᎸᏌ\t-12.1967\n▁ᎤᏁᎦᎸᎢ\t-12.1967\n▁ᏥᎥᎡᎸ\t-12.1969\n▁ᏚᏂᏅᏅ\t-12.197\nᎧᏁᎢ\t-12.1971\nᏘᎿᏫᏛᎲᎩ\t-12.1971\n▁ᎤᎾᏓᏂᏴ\t-12.1972\n▁ᏚᎵᏍᏚᎸ\t-12.1974\n▁ᏳᏜᏏᏛ\t-12.1976\n▁ᎢᏳᎾᎵᏍᏓᏁ\t-12.1979\n▁ᏥᏕᎯ\t-12.1981\nᎨᏍᏗᏉᏍᎩᏂ\t-12.1983\nᎪᏔᏅᎯ\t-12.1984\nᏘᎴᎢ\t-12.1986\nᎰᏁᎢ\t-12.1987\n▁ᎠᎵᏛᏗᏍ\t-12.1987\n▁ᎯᏍᏆᎵᏎ\t-12.1987\n▁ᎣᎾ\t-12.1989\nᏃᏎᎮ\t-12.199\nᏗᎦᏙᎵ\t-12.1991\nᎾᏄᎪᏨᎩ\t-12.1992\nᎢᏳᏍᏗᏉ\t-12.1992\nᏍᏖᏴ\t-12.1993\nᎦᏓᏍᏕᏓᎵᏴᏍᎩ\t-12.1995\nᏓᏃᏍᎩᏛ\t-12.1996\nᏥᏯᎧᏁᎸ\t-12.1996\n▁ᏳᏂᏏ\t-12.1999\nᏍᏗᏙᎬ\t-12.2\n▁ᏫᏛᏓ\t-12.2\nᏂᏁᏉᎩ\t-12.2\n▁ᎤᎵᏍᏕᎸᏙ\t-12.2002\n▁ᏥᎬᎩᎪᎵᏰ\t-12.2003\nᏯᎸᏤ\t-12.2004\n▁ᎡᏥᏯᎥ\t-12.2004\n▁ᏱᏂᏥᏪ\t-12.2004\n▁ᎤᎶᏐᏅᎯ\t-12.2006\nᏲᎮᏗᏱ\t-12.2006\n▁ᎢᏣᎵᏍᏓᏁᏗᏱ\t-12.2008\nᎾᏘᏲᎸᎩ\t-12.2009\nᏓᏳᎾᏂᎩᏛ\t-12.201\nᎩᏍᏔᏂ\t-12.201\n▁ᎨᏣᎴ\t-12.2011\n▁ᏧᎾᏚᎵ\t-12.2012\n▁ᎯᏍᎩᏍᎪ\t-12.2012\n▁ᎥᎩᎵᎥᏂ\t-12.2013\n▁ᎬᏩᏛᏓᏍᏓᏁᎴ\t-12.2014\n▁ᎠᏂᏨᏯᎢ\t-12.2014\n▁ᎤᎩᏨᏅᎢ\t-12.2015\nᎵᏌᎳᏓᏅ\t-12.2016\nᏗᏦᎭᏴ\t-12.2016\n▁ᏂᎭᎵᏍᏗ\t-12.2016\n▁ᎥᏓᎸᎢ\t-12.2017\n▁ᏫᎦᏅᏅᎢ\t-12.2017\n▁ᎠᏆᏓᎾ\t-12.2017\n▁ᎤᎵᏂᎬᎬᎢ\t-12.2017\nᎩᎡᎭ\t-12.2017\n▁ᎠᏍᏚᎲᎢ\t-12.2018\nᏧᎪᏓᏁᎯ\t-12.2019\nᎯᏐᏢᏗᎭ\t-12.202\nᎾᏕᎰ\t-12.202\nᏏᏍᏗᏱ\t-12.2022\nᏓᏛᏁᏗᏱ\t-12.2023\n▁ᏕᎦᏅᏅᎢ\t-12.2024\n▁ᎤᏬᏰ\t-12.2025\nᏂᏍᎫᏕᏍᎪ\t-12.2025\nᎦᏟᏓ\t-12.2027\n▁ᎠᏆᎦᏔᎲᏒ\t-12.2028\n▁ᎤᏁᏥ\t-12.2028\nᏓᏆᏎᎸ\t-12.2029\n▁ᎤᏂᏆ\t-12.2029\n▁ᎤᏦᎯᏃ\t-12.203\n▁ᏥᏙᎬᎢ\t-12.203\n▁ᎠᏰᎲᎢ\t-12.2031\nᎾᏗᏍᎦᎶᏗ\t-12.2031\n▁ᏤᏈᏛᏃ\t-12.2033\nᏥᏲᎵᎴ\t-12.2035\n▁ᏥᏆ\t-12.2035\n▁ᎠᏂᏍᎦᎢᎮᏃ\t-12.2035\n▁ᏗᏓᏁᎸᎢ\t-12.2036\nᎵᏰᏅ\t-12.2037\nᎿᏕᎨ\t-12.2039\nᏴᏣᏗ\t-12.204\nᎤᏂᏴ\t-12.2041\n▁ᏂᎬᏁᎲᎢ\t-12.2041\n▁ᏂᎦᏛᏁᎲᎢ\t-12.2043\n▁ᏗᏰᎶ\t-12.2044\nᏚᏭᎪᏓᏁᎴ\t-12.2044\n▁ᎤᏆᏙ\t-12.2045\nᏌᏬᎢᎲ\t-12.2045\n▁ᎣᎩᎵ\t-12.2046\nᏅᎪᎥ\t-12.2047\n▁ᏗᏤᎲᎢ\t-12.2047\nᎦᎴᏅᏗᏍᎩ\t-12.2047\nᏍᎩᏲᏢᎾᏁ\t-12.2048\nᎦᎵᏦᏙ\t-12.2048\n▁ᏴᎦᎦᎵᏍᏓᏴ\t-12.2048\nᎦᏛᏂᏗᏍᏗᏱ\t-12.205\n▁ᏕᏥᎸᏌᏓ\t-12.2051\n▁ᏣᎵᏘ\t-12.2054\nᎦᏟᏂᎬᏁ\t-12.2056\n▁ᎤᏪᎾ\t-12.2057\nᏥᏯᎡᏍᏗ\t-12.2059\n▁ᏣᏣ\t-12.2064\n▁ᏗᏤᎳᏍ\t-12.2064\n▁ᏍᎩᏌᎳ\t-12.2065\n▁ᏰᏗ\t-12.2066\nᏩᎫᎵ\t-12.2068\nᏗᎻᏯ\t-12.2069\n▁ᎠᎩᎨᏳ\t-12.2069\nᎢᏍᏔᎾ\t-12.207\n▁ᏚᏂᎶᎨᏒ\t-12.2071\nᏟᏛ\t-12.2073\nᏥᏁᏤᎰᎢ\t-12.2073\nᏗᎪᎵᎩ\t-12.208\nᎢᏓᏍᏗ\t-12.208\n▁ᎤᏂᎫ\t-12.2082\n▁ᎠᏅᏗᏍᎬᎢ\t-12.2082\nᏓᏓᎵᏁᎯᏕ\t-12.2082\nᏗᏓᏅ\t-12.2084\n▁ᎨᏥᏒᎲᏍ\t-12.2084\n▁ᏚᏂᎦᏘᎸᏒ\t-12.2086\nᎬᏫᏳᏌᏕ\t-12.2087\n▁ᎤᏓᎸᏉ\t-12.2088\n▁ᎠᎾᎵᏃᎮᏍ\t-12.2093\nᏍᏓᏩᏗᏎᏍᏗ\t-12.2094\n▁ᎡᏥᎪ\t-12.2094\n▁ᏗᎨᎴ\t-12.2095\n▁ᎭᎴᏅ\t-12.2096\n▁ᏛᏄ\t-12.2096\nᏥᎦᏘᏴ\t-12.2096\nᏣᏛᎩᏍᎪ\t-12.2097\nᏒᏍᏛ\t-12.2097\nᏩᏛᎯᏓᏍᏗ\t-12.2097\n▁ᎠᏲᎳ\t-12.2102\n▁ᎨᎳᏗ\t-12.2103\nᏃᏁᏗᏱ\t-12.2104\nᎩᎦᎵᏍᏓᏗᏍᎬᎩ\t-12.2105\nᏃᏣᎶ\t-12.2108\n▁ᎾᎾᏛᏁᎲᎩ\t-12.211\n▁ᏓᎾᏏ\t-12.2111\nᏣᎩᏍᏗ\t-12.2113\n▁ᏓᏨᏯ\t-12.2115\nᎵᏓᏍᏙᏗ\t-12.2118\nᏣᏖ\t-12.2118\nᏚᏙᎡ\t-12.2125\nᏆᎵᏥᏙᏅ\t-12.2125\nᏥᏯᏢᏈ\t-12.2127\nᏗᎤᏠᎠᏎ\t-12.2128\nᎵᏔᏬ\t-12.213\n▁ᏗᎩᏗ\t-12.2133\n▁ᏱᏣᏎᎵ\t-12.2134\n▁ᎨᎦᎵᏥᏙᏁᎴ\t-12.2135\n▁ᎢᎤᎨ\t-12.2137\n▁ᎤᏲᏍᏙᏗ\t-12.2138\nᏥᏍᏓᏩᏕᎩ\t-12.2139\nᏓᏍᏗᏍᎨᏍᏗ\t-12.2139\nᏍᎩᏅᏗᏍᎨᏍᏗ\t-12.2139\nᎨᏥᏲᎮ\t-12.2139\n▁ᏫᏗᎦᎶᏍ\t-12.2141\nᏪᎳᏗᏓᏍᏗᏱ\t-12.2141\n▁ᎩᏏ\t-12.2142\nᏓᎧᎿᏩᏕᎬ\t-12.2143\nᏥᎪᏙᎯᏍᏔᏂ\t-12.2143\nᏓᏥᎳᏂ\t-12.2144\n▁ᏭᏟ\t-12.2144\n▁ᏱᏂᏣᏪ\t-12.2146\n▁ᎠᎾᏓᏛᎥ\t-12.2146\n▁ᎰᎵ\t-12.2151\n▁ᏕᎨᏴᎢ\t-12.2152\nᏒᎦᎶᏗᏍ\t-12.2154\nᏂᎮᏍᏗ\t-12.2155\nᏫᎬᏩ\t-12.2156\nᎬᏒ\t-12.2157\nᏑᎦᎸᏙᏗ\t-12.2157\nᏫᏛᎲ\t-12.2158\n▁ᏓᎦᎾᏬ\t-12.2158\nᏥᎦᏘᏗ\t-12.216\n▁ᎤᎵᏛ\t-12.2161\nᏯᏨᏗ\t-12.2161\n▁ᎢᏯᏛ\t-12.2164\n▁ᎠᎵᏍᎪᎸᏉ\t-12.2164\nᎬᏬᏎᎴᎢ\t-12.2164\n▁ᎠᎩᏲᎲ\t-12.2166\nᏩᎫᏗᏗ\t-12.2166\n▁ᎤᏍᏚ\t-12.2167\nᎳᏑᏠ\t-12.2167\nᎢᏍᏗᏍᎨᏍᏗ\t-12.2169\n▁ᏗᏅᏃᏛᏍᎩᏂ\t-12.2171\n▁ᎨᎦᏓᏅᏖᏍᎨ\t-12.2172\n▁ᎠᏯᏙᎯ\t-12.2172\n▁ᏗᎬᎩᎶ\t-12.2173\n▁ᎤᏪᏅᏃ\t-12.2173\nᏃᏓᏁᎴᎢ\t-12.2175\n▁ᏂᏚᏕᏘᏴ\t-12.2176\n▁ᎤᎩᎸᏛ\t-12.2177\n▁ᎭᏫᏂᏳ\t-12.2177\n▁ᏩᏥᏯᏅᎲ\t-12.2177\n▁ᏕᎬᏩᏠ\t-12.2181\n▁ᏕᏣᏓᏲᎵ\t-12.2183\n▁ᎠᎾᏟᏂᎬᏁ\t-12.2183\n▁ᏨᏛᎩ\t-12.2184\nᏍᏓᏓᏅᏔ\t-12.2185\n▁ᎦᏬ\t-12.2185\nᏏᎲᏍᎪ\t-12.2188\n▁ᏧᏂᏍᏔᏩ\t-12.2189\nᏗᏨᏲ\t-12.219\nᏓᏅᏘᏳ\t-12.2192\n▁ᏭᎵᏌᎳᏓᏅ\t-12.2192\n▁ᎬᎾᎢ\t-12.2195\nᎸᏉᏕ\t-12.2195\n▁ᎤᏲᎰ\t-12.2196\nᏥᎥᏍᎦ\t-12.2197\n▁ᎤᏂᏯᏫ\t-12.2199\n▁ᎢᏥᎪ\t-12.22\nᏓᏯᏫᏍᎨᏍᏗ\t-12.22\nᎷᏉᏗ\t-12.2201\n▁ᏧᏂᏰ\t-12.2202\nᏣᎶᏁᏔᏅ\t-12.2202\nᏗᏔᏍᏔ\t-12.2203\n▁ᎦᎵᏍᏓᏴᎲᏍᎬ\t-12.2205\nᏄᎪᏫᏎᏗᏱ\t-12.2207\n▁ᏂᏣᎵᏍᏓᏁᎲ\t-12.2208\nᏨᏉᏕ\t-12.2208\nᏪᏓᏍᏗᏱ\t-12.2209\n▁ᏱᏣᏕᏯᏔᏁ\t-12.2209\n▁ᏭᏴᎵ\t-12.2209\nᎵᎲᎾ\t-12.221\n▁ᏘᏩᏛ\t-12.221\nᏁᏢᏙᏗ\t-12.2211\n▁ᏂᏕᏨᏁ\t-12.2212\n▁ᎠᎴᏈᏱ\t-12.2213\n▁ᏂᎬᏁᎢ\t-12.2214\n▁ᎤᏍᏆᎸᎯᏗᏎ\t-12.2215\nᎩᏍᏆᏂᎪᏔᏅᎩ\t-12.2217\nᏗᏯᎥ\t-12.2217\nᎬᏩᏍᏙᎢ\t-12.222\nᏂᏫᎯ\t-12.2222\n▁ᏂᎨᎬ\t-12.2224\nᏍᏚᎢᏒᏃ\t-12.2224\nᎬᏩᎾᏛᏁᎢ\t-12.2226\nᏓᎴᎲᏍᎦ\t-12.2227\n▁ᏥᎨᏥᏍᏕᎸ\t-12.2227\n▁ᏂᏙᏛ\t-12.2228\n▁ᏂᏚᏛ\t-12.2229\nᏴᎩᏁ\t-12.223\n▁ᎤᎩᎸᏔᏁ\t-12.223\n▁ᏯᎵᏗ\t-12.223\n▁ᏯᏁᎮ\t-12.2232\n▁ᏗᏜ\t-12.2233\n▁ᏫᏂᎦᎵᏍᏗ\t-12.2234\n▁ᎤᏂᏨ\t-12.2237\n▁ᎤᏂᏰᎸᏐ\t-12.2237\n▁ᎠᏥᎩ\t-12.2237\nᏘᏍᏗ\t-12.2238\n▁ᎤᏂᏆᏂᏲᏍ\t-12.2238\nᏘᏃᎮᎸ\t-12.2238\n▁ᎨᎦᏑᏴ\t-12.2239\n▁ᏚᏍᏚᏁ\t-12.2242\nᏄᏩᏁᎮ\t-12.2243\n▁ᎤᏂᏴᎸᏃ\t-12.2248\nᏓᏗᎦᎴᏲ\t-12.2251\n▁ᎤᏓᎪᎾᏛᏔᏅ\t-12.2252\n▁ᏘᏯ\t-12.2252\n▁ᏚᏂᏃᎩ\t-12.2253\nᎯᏍᏓᏱ\t-12.2254\n▁ᏂᎦᎾ\t-12.2255\n▁ᎤᎾᏣᎡ\t-12.2255\n▁ᏗᎩᎦᎨᎢ\t-12.2256\nᏗᏕᎨᏍᏗ\t-12.2256\n▁ᏚᏫ\t-12.2256\n▁ᏥᏓᏥᎶ\t-12.2257\nᏂᏪᏒ\t-12.2258\n▁ᏳᏬᎯᏳᏁ\t-12.2259\nᏂᏴᎮᎢ\t-12.226\n▁ᎠᏂᏔ\t-12.226\n▁ᏍᎩᏯᎵᎪ\t-12.226\n▁ᎢᏳᏅᏁᎸ\t-12.2262\n▁ᏧᏮᏗ\t-12.2264\n▁ᎯᏰᏌᏛ\t-12.2267\n▁ᏯᏂᏍᎦᎢ\t-12.2269\n▁ᏕᏨᏲᎯ\t-12.227\n▁ᏭᏂᏂᏌᏁ\t-12.2272\n▁ᎯᏁᏤ\t-12.2274\n▁ᏭᏝᏁ\t-12.2277\nᎾᎿᏬᏍ\t-12.2277\n▁ᏕᎤᏁᎶᏕ\t-12.2277\nᏠᏎᎢ\t-12.2277\n▁ᏗᏣᏓᏙᎵᏍᏓᏁ\t-12.2279\nᏃᎯᏰᎸ\t-12.2281\nᏙᎳᏍᏗᏍᎬ\t-12.2282\n▁ᏓᎦᎵᏍᎨ\t-12.2284\n▁ᏫᎡ\t-12.2284\n▁ᎤᏛᏅᎢᏍ\t-12.2286\nᏣᎫᏴᏓᏏ\t-12.2286\n▁ᏱᎦᏄ\t-12.2287\n▁ᎤᏩᏅᎬ\t-12.2288\nᎩᎸᏅᎩ\t-12.2288\nᏩᏕᏅ\t-12.2289\n▁ᏩᏛ\t-12.2289\n▁ᎤᏃᏢᏁ\t-12.2289\n▁ᎤᎴᏫᏍᏙᏗ\t-12.229\nᎨᏨᏁᎴ\t-12.2291\nᎦᏍᎪᎯ\t-12.2296\n▁ᎠᏔᎴᏒᎩ\t-12.2296\nᏣᎳᏏᏕᏂ\t-12.2299\nᏥᏛ\t-12.23\n▁ᎦᎸᎳᏗᏨ\t-12.2301\n▁ᎬᏩᏂᎪᎲ\t-12.2301\n▁ᏧᏂᏲᎱᎯᏍ\t-12.2303\n▁ᏣᏂᏃᎢ\t-12.2306\nᏯᏛᏛᎲᏍᎦ\t-12.2306\n▁ᎬᏎ\t-12.2307\nᎣᎾ\t-12.2309\nᏗᏔᏍᎦ\t-12.231\n▁ᏯᏋᏔ\t-12.2313\n▁ᎣᎩᏰᎸᏒ\t-12.2316\n▁ᎤᏔᎶᎩ\t-12.2318\n▁ᏥᏕᏓ\t-12.2321\n▁ᏏᏏ\t-12.2321\n▁ᏂᏍᏆᏛᏁᎸ\t-12.2323\n▁ᎤᎾᏓᏙᎵᏍᏓᏁᏗ\t-12.2325\nᏄᏂᏣᏔ\t-12.2326\n▁ᎤᏂᏬᏁ\t-12.2328\nᎦᎨᏅᏗᏍᏗ\t-12.2328\n▁ᏚᎪᎵᏰᎥ\t-12.2332\n▁ᏓᎾᏓᏍᎦ\t-12.2332\n▁ᎤᏲᏨᎢ\t-12.2333\n▁ᏓᎵᏍᏆ\t-12.2334\n▁ᎠᏆᎵᎮᎵᏨ\t-12.2334\n▁ᎠᏂᏆ\t-12.2335\nᏓᏲᏥᏂ\t-12.2335\n▁ᏅᏓᏳᏅᏍᏗ\t-12.2335\n▁ᎭᏁᏍᎨᏍ\t-12.2343\nᏍᏓᏁᎰ\t-12.2347\n▁ᎡᏥᏅᏁ\t-12.2349\nᎸᎶᎢ\t-12.2349\nᏅᎲᎩ\t-12.2353\n▁ᎡᏤ\t-12.2355\nᏃᏴᏘᏍ\t-12.2356\n▁ᎠᎲᏍᎩ\t-12.2357\n▁ᎤᏪᏢᏅ\t-12.2361\n▁ᎤᏔᏕᎩᏍ\t-12.2361\nᏓᏅᎩ\t-12.2361\nᏍᏗᎧ\t-12.2364\n▁ᎤᎾᎡ\t-12.2368\n▁ᎬᎩᏁᎢᏍ\t-12.2368\nᏮᏅ\t-12.2369\n▁ᎭᏏ\t-12.237\nᎩᏌᏛ\t-12.2378\n▁ᏱᎦᎷᎪ\t-12.2378\nᎬᏃᎯᏏ\t-12.2381\n▁ᎤᏓᏪᎵ\t-12.2381\nᏣᏍᏆᏂᎪᏗ\t-12.2383\n▁ᏚᏂᏟᏌᏅ\t-12.2384\nᏉᎯᏳ\t-12.2384\nᎬᏎᎸ\t-12.2385\nᏅᏍᏔᏅᎩ\t-12.2386\nᏕᏒᏅ\t-12.2389\n▁ᎬᏩᎾᏕᏁᎸ\t-12.2389\nᎦᎾᎦᏘ\t-12.2391\n▁ᏫᏓᏂᏴ\t-12.2393\n▁ᎠᏆᏙ\t-12.2395\nᎯᏎᏗ\t-12.2402\n▁ᏂᏑᏪᏎ\t-12.2403\nᎬᏓᏃᏍ\t-12.2404\n▁ᏭᎸᏅ\t-12.2404\n▁ᏙᏅ\t-12.2404\nᏦᎸ\t-12.2405\n▁ᏗᎨᎦᏟᎶᏍ\t-12.2405\n▁ᎤᏤᏍᏗ\t-12.2407\n▁ᏣᏌ\t-12.2409\nᏆᎸ\t-12.2409\n▁ᏗᏍᎩᏲᎯ\t-12.2409\n▁ᏁᏍᏗ\t-12.2409\n▁ᏚᏢ\t-12.241\n▁ᎩᏛ\t-12.241\n▁ᏕᎦᎷᎨ\t-12.2412\n▁ᎢᎩᏍᎦ\t-12.2412\n▁ᎠᏂᏌ\t-12.2415\nᏥᏅᏏᏛ\t-12.2415\nᎵᏍᏓᏴᎲᏍᎨᏍᏗ\t-12.2415\nᎨᏳᏐ\t-12.2415\n▁ᎣᎪᎯᏳᎯ\t-12.2416\n▁ᎤᎾᏓᏟᏐᏗ\t-12.2417\n▁ᎠᎵᏰᎵ\t-12.2421\n▁ᏗᏂᎶ\t-12.2421\nᏯᏘᏃᎯᏍᏗ\t-12.2421\n▁ᏓᏴ\t-12.2422\nᏂᏨᏁᎸ\t-12.2424\n▁ᎤᏓᏂᎵᎨᎢ\t-12.2425\nᎾᏝᎥᎢ\t-12.2425\nᏓᏢ\t-12.2427\n▁ᎣᎭᏁᎯ\t-12.2429\n▁ᎤᏕᏁᎸᎢ\t-12.243\nᏌᎹᏗᏴ\t-12.2431\n▁ᏚᏂᏍᏚᏅ\t-12.2431\n▁ᎠᎾᏎᎵ\t-12.2432\n▁ᏓᎦᏘᏰ\t-12.2434\nᎵᎪᏩᏕ\t-12.2434\nᏥᏁᎢᏍᏗᏍᎨᏍᏗ\t-12.2436\n▁ᎢᏥᎷᏨ\t-12.2437\n▁ᏫᏕᎨᎦᏓᎢ\t-12.2439\nᏣᏅᏓᏗᏍᎨᏍᏗ\t-12.2442\nᎾᏁᎶᏗ\t-12.2444\n▁ᏚᏅᏁᎸ\t-12.2445\n▁ᏕᎬᏩᎾ\t-12.2446\n▁ᎨᏣᏕᏁ\t-12.2447\n▁ᏕᏣᏠᏱ\t-12.2447\n▁ᎤᏂᎮ\t-12.2454\n▁ᏮᏓᏥᏯ\t-12.2455\nᎬᏩᏓᎴᏅᏛ\t-12.2455\n▁ᎣᎦᏤᎵᎪ\t-12.2456\n▁ᎤᎾᏙᎴᏆ\t-12.2461\nᎾᏕᏘᏴ\t-12.2464\nᏎᎵᏙᏔᏅ\t-12.2464\n▁ᎤᎸᏅ\t-12.2466\nᏣᏕᏯᏙᏗᎭ\t-12.2468\n▁ᎡᏣᏡᏗ\t-12.2468\nᏁᎴᏃ\t-12.247\nᎵᏎᏍᏗ\t-12.2471\nᏦᏎᎸᎯ\t-12.2473\nᏁᏒᎭ\t-12.2474\nᏌᏆᎴᎸ\t-12.2477\nᎬᎷᏤᎵ\t-12.2478\n▁ᎢᏤᏯᏔᎯ\t-12.2478\n▁ᏥᏍᎫᏕᏒ\t-12.2479\n▁ᏫᏥᏯ\t-12.248\n▁ᏗᏥᎸᏫᏍᏓᏁᎸ\t-12.2482\n▁ᏗᏥᏂᏴᏗ\t-12.2482\nᏥᎸ\t-12.2483\n▁ᎤᎾᎸ\t-12.2484\n▁ᏯᏴ\t-12.2484\nᏆᏒᎭᏂᎸ\t-12.2486\nᏚᏲᏐ\t-12.2486\n▁ᏱᏙᏥᏲᎱ\t-12.2487\nᏱᏍᎬᎢ\t-12.2488\nᏥᏯᏐᏅᏰᎵ\t-12.2488\nᎩᏃᎮᎭ\t-12.249\nᏍᏓᏁᏗᏱ\t-12.249\n▁ᎠᏌᏃ\t-12.2491\n▁ᏚᎳᏍᎬᎢ\t-12.2496\nᎦᎶᏍᎬ\t-12.25\nᏒᎭᏂᎸ\t-12.25\nᏂᏍᏓᏩᏙᎸᎯ\t-12.2503\n▁ᎤᏓᏅᏖᎴᎢ\t-12.2505\n▁ᏱᏗᎵ\t-12.2506\n▁ᎠᏆᏓᏅᏒ\t-12.2507\n▁ᏗᎬᏩᏂᏲᎱᎯ\t-12.251\n▁ᏙᏛᏍ\t-12.251\nᏩᏛᏍᏗ\t-12.2512\n▁ᎢᏣᏉ\t-12.2514\n▁ᏁᎵᏍᎬᏃ\t-12.2516\nᏳᏕᏃ\t-12.252\n▁ᏓᏰᏙ\t-12.252\nᏍᏗᏃᎮᏍᎬ\t-12.2521\nᏩᏗ\t-12.2522\nᏩᏛᎯᎴ\t-12.2523\n▁ᎨᎦᎵᏍᎪᎸᏓᏁ\t-12.2523\n▁ᎤᏓᎵᏍᎪᎸᏔᏅ\t-12.2528\nᏱᎲᎢ\t-12.253\nᏓᎪᏩᏘᏍᎪᎢ\t-12.253\nᏥᏌᏛᎥᏍᎩ\t-12.2533\nᎠᎩᎧᏁᎸ\t-12.2534\nᏓᎵᏌᎳᏗ\t-12.2535\nᏌᎹᏗ\t-12.2535\nᏗᏣᎧᎾ\t-12.2536\n▁ᏚᎴᏅᏰᏃ\t-12.2537\n▁ᎣᎩᏒᏍᏗ\t-12.254\nᎬᎾᏬᏍᎬ\t-12.254\n▁ᏭᏓᏅᏖ\t-12.2543\n▁ᎡᏣᎵᎡ\t-12.2546\n▁ᎤᏍᏘ\t-12.2547\n▁ᏩᏠᎠ\t-12.2549\n▁ᎨᏥᏃᏁᎸ\t-12.255\n▁ᎢᏤᏙᎲ\t-12.2552\n▁ᏱᏚᏓᏲ\t-12.2557\n▁ᎥᏓ\t-12.2558\n▁ᎤᎧᏔᎲ\t-12.2559\n▁ᎤᏇᏓᎸᏉ\t-12.2561\nᏬᏂᏎᎢ\t-12.2561\n▁ᏯᏍᎦᏅ\t-12.2566\n▁ᏚᏃᏕᎯ\t-12.2566\n▁ᎦᏃᎸᎥᏍᎬᎢ\t-12.2567\n▁ᏥᏕᎩ\t-12.2568\nᏥᏲᏎᎮᏍᏗ\t-12.2568\nᎩᏍᎨᎢ\t-12.257\nᏨᏯᎵᏥᏙᏁᎸᎩ\t-12.2575\n▁ᏧᏪᏰᏍᏗ\t-12.2581\n▁ᏧᏂᎬᏩᎶ\t-12.2581\nᏣᎵᏂᎬᎦ\t-12.2582\n▁ᏍᎩᏛᏔᏂ\t-12.2586\nᎾᏓᏴᎳᏛ\t-12.2587\nᏯᏘᏄᎦ\t-12.259\n▁ᏓᎾᏘᏁ\t-12.2591\nᏛᏅᏂ\t-12.2591\n▁ᏚᏭᎪ\t-12.2599\nᏗᏗᏐ\t-12.2599\n▁ᎡᏆᏓ\t-12.26\nᏍᏗᏴᏍᏗᏱ\t-12.2602\nᎵᏰᎢᎸᏍ\t-12.2608\n▁ᎡᏣᎫᏴᎡ\t-12.2608\n▁ᎢᏴᏓ\t-12.2612\nᏭᏓᎴᏎᎢ\t-12.2613\n▁ᏚᎾᏓᎡ\t-12.2613\n▁ᏅᏛᎩᏅ\t-12.2614\n▁ᏓᏂᏬᏂ\t-12.2616\nᎦᏛᏅ\t-12.2617\nᏘᎹ\t-12.2617\nᏥᏯᏓᏙᎵᏍᏓᏁᎭ\t-12.262\n▁ᎬᏩᏯᏫᏍ\t-12.262\n▁ᏕᎨᏥᏍᏚ\t-12.2621\nᎾᏛᏁᎵᏙᎯ\t-12.2621\nᎵᎮᎵᏤᎮ\t-12.2623\nᏗᏥᎱᏍᏕᏎ\t-12.2623\n▁ᎤᏗᏩ\t-12.2624\n▁ᎤᎶᎩᎸᎩ\t-12.2624\nᏍᏆᎸᎡᎸ\t-12.2624\n▁ᎡᏦᎢᏳᎲ\t-12.2624\nᎦᏕᏲᎲᏍᎦ\t-12.2626\nᏤᎷᎯᏍᏗ\t-12.2627\nᎵᏎᎮ\t-12.2628\nᏓᏅᏓᏗᏍᏗ\t-12.2629\n▁ᏚᏂᏢᏁ\t-12.263\nᎯᏂᏴᏎᏍᏗ\t-12.2631\n▁ᏓᏜᏍᏗᏍ\t-12.2631\nᏚᏭᎪᏔᏁᎢ\t-12.2631\n▁ᎥᎩᏁᏤᏗ\t-12.2631\n▁ᎤᏢᏅ\t-12.2632\n▁ᏕᏣᏗ\t-12.2637\n▁ᏯᏛᏓᏍ\t-12.264\nᏂᎬᎨᏍᏗ\t-12.264\n▁ᎹᏁ\t-12.2641\n▁ᎠᏆᏚᎸ\t-12.2641\nᎾᏓᏍᏕᏓᎵᏴ\t-12.2642\nᏂᏍᏕᎸ\t-12.2643\nᎬᎩᎦᏘᎴ\t-12.2644\n▁ᏚᏂᎨᎯᏙᎴ\t-12.2646\nᏙᎵᏍᏗᏍᎬᎢ\t-12.2647\n▁ᎤᏂᏃᎸᏔ\t-12.2648\n▁ᎢᎳᏏ\t-12.2649\n▁ᏚᎪᎮᎢ\t-12.265\nᏴᏍᏔᏅᎯ\t-12.2651\n▁ᏩᎩᎷᎯᏍᏗ\t-12.2654\n▁ᎣᎩᏍᎦᏅᏨ\t-12.2657\n▁ᎡᏙᏓᏃ\t-12.2657\nᎩᎡᏗᏱ\t-12.2661\n▁ᎠᎵᏍᏕᎵᏍ\t-12.2663\n▁ᏅᏗᎦᎵᏍᏙᏗᏍᎪᎢ\t-12.2663\n▁ᎣᎦᏚᎩ\t-12.2663\n▁ᏚᎾᏓᏂᏴ\t-12.2666\n▁ᎠᏓᏙᎵ\t-12.2667\nᏫᏗᏣᎧᎾ\t-12.2667\n▁ᎢᏥᏴᎸ\t-12.2668\n▁ᎤᏕᏲ\t-12.2671\nᏍᏛᏓ\t-12.2672\n▁ᏫᎬᏩᎾᏛ\t-12.2675\n▁ᎣᎩᎾᎵᎢ\t-12.2675\n▁ᎣᏍᏗᎶ\t-12.2675\n▁ᏍᏆᎵᏍᎪᎸᏓ\t-12.2675\nᏔᏲᎯᎮᏍᏗ\t-12.2677\n▁ᎠᏂᏁᎢ\t-12.2677\nᏲᎸᎾ\t-12.2686\nᏥᏍᎦᎾᎢ\t-12.2689\nᏩᏕᎩ\t-12.2693\nᎸᏍᏗᏍᎨᎢ\t-12.2695\nᏁᎦᎸ\t-12.2697\n▁ᏤᏠ\t-12.2699\nᏩᏅᏬ\t-12.2702\nᏣᎴ\t-12.2704\n▁ᏧᏂᎷ\t-12.2713\nᎦᏯᎱᎶ\t-12.2716\n▁ᏂᏓᏂ\t-12.2719\nᎾᎵᏍᏔᏅᎩ\t-12.272\nᎯᎲᎩ\t-12.2725\nᎵᏍᏓᏴᏅᎭ\t-12.2731\nᏨᏍᏕᎸᎡᏗᏱ\t-12.2732\nᏂᏁᎢᏍᏙᏗᏱ\t-12.2734\n▁ᎬᏗᏏ\t-12.274\n▁ᏓᎾᏕᏍᎪ\t-12.2746\n▁ᎧᏁᏉᎨᏉ\t-12.2747\n▁ᎤᎵᏃᎮᏔᏅ\t-12.2747\n▁ᎤᏂᏴᏎ\t-12.2748\nᎤᏪᎧᏁᏗᏱ\t-12.2749\nᎾᏓᏴᎳᏔ\t-12.2749\n▁ᎤᎸᏕᏍᏗᏍ\t-12.2749\nᎦᏘᏏᏗᏢ\t-12.275\nᏆᎵᏍᎪᎸᏓᏁᎸ\t-12.2751\nᎤᎵᏬᏥᏕᎾ\t-12.2757\n▁ᏚᏫᏒ\t-12.2765\n▁ᎰᏩᏉ\t-12.2765\nᏥᎩᎡᏗ\t-12.2769\nᎿᏗᏍᏗᏍᎨ\t-12.2769\n▁ᏕᏨᏯᎧ\t-12.2777\n▁ᏁᎹ\t-12.2783\nᎫᏍᏙ\t-12.2786\n▁ᎠᎩᎶᏒ\t-12.2788\n▁ᎢᏥᏅᏏᏙ\t-12.2792\n▁ᎤᏁᎩᏒ\t-12.2792\nᎬᏩᎵᎪᏁᎸᎩ\t-12.2801\n▁ᏕᏥᏲᎵ\t-12.2801\nᏌᏙᏱ\t-12.2804\nᏦᏴ\t-12.2806\n▁ᏂᏛᏁ\t-12.2806\nᎦᏙᎨᎢ\t-12.2809\nᎭᏰᎯ\t-12.2809\n▁ᎢᏥᏄᎪᎢ\t-12.281\n▁ᏗᏓᏖ\t-12.2812\n▁ᏨᏛᏍᏆ\t-12.2814\n▁ᎤᏂᎵᎥᏂᎸ\t-12.2815\n▁ᎠᏂᏄᎪᎬ\t-12.2815\n▁ᎫᏩᏕ\t-12.2816\nᏍᎩᏰᎳᏍᏔ\t-12.282\n▁ᏫᏄᏩᏁ\t-12.2822\nᏰᎸᏍᎨ\t-12.2824\nᎧᏁᎢᏍᏗᏍᎬᎢ\t-12.2824\n▁ᏂᎦᏪᏎᎴ\t-12.2826\nᏗᏛᏗ\t-12.2832\n▁ᏕᎤᏂᎸᏫᏍᏓᏁ\t-12.2836\n▁ᏦᎩᏰᎸ\t-12.2842\n▁ᎣᎩᏛ\t-12.2843\nᏟᏏᏍᎨᏍᏗ\t-12.2843\n▁ᏅᏗᎦᎵᏍ\t-12.2844\nᎰᏍᏗ\t-12.2845\nᎦᎵᎥᏂ\t-12.2848\n▁ᏓᏂᏂᏱ\t-12.2848\n▁ᎭᏫ\t-12.2854\nᎵᏖᎸᎮᏍᎬ\t-12.2854\n▁ᎠᎯᏍᏗ\t-12.2859\nᏬᏔᏂ\t-12.2863\n▁ᏱᎬᎩᏩᏛ\t-12.2865\nᎲᎬ\t-12.2865\n▁ᎠᏂᏍᏙ\t-12.2865\n▁ᏚᎾᎴᏁᏃ\t-12.2866\nᏔᏱ\t-12.2866\n▁ᏧᏭᎪᏔᏅ\t-12.2871\n▁ᏕᏥᏲᎯᏎᎸ\t-12.2872\n▁ᏧᎦᎾ\t-12.2873\n▁ᎠᏆᎵᏍᎪᎸ\t-12.2875\nᎪᎯᏗ\t-12.2876\nᎤᏪᎪᏗ\t-12.2878\n▁ᎤᏕᎴ\t-12.2878\n▁ᎭᎻᏃ\t-12.288\nᎬᏩᎶᏓᏁᎸ\t-12.2882\n▁ᏙᎩᏲ\t-12.2884\n▁ᏄᏍᏙ\t-12.2885\n▁ᏚᏘ\t-12.2887\n▁ᎣᎩᎾᏚᎵ\t-12.2888\nᏥᏟᏏᏍᎨᏍᏗ\t-12.2888\n▁ᏒᎲ\t-12.2893\n▁ᏚᏙᏢᏒ\t-12.2895\nᏨᎨᏫᏒ\t-12.2895\n▁ᎬᏩᏕᏨ\t-12.2897\nᏓᏴᏙᏗ\t-12.2903\nᏕᏒᎭ\t-12.2905\nᎦᎵᏬᎩ\t-12.2906\n▁ᏔᎴᏅ\t-12.2906\nᎳᏗᏍᏗᏱ\t-12.2906\nᎪᎩᏔᏲᏎᎲᎩ\t-12.2907\n▁ᎢᎩᎾᏄᎪᏫᏎᎸ\t-12.2909\nᏙᎯᏳᎲᏍᎦ\t-12.2911\n▁ᏧᏂᏁᎵ\t-12.2911\nᏘᏍᏓᏁᎰ\t-12.2915\nᎵᏔᏗᏅᏎ\t-12.292\n▁ᎣᎩᏂᏰ\t-12.292\n▁ᎠᎦᏘᏃᎯᏍᏗ\t-12.2925\n▁ᏥᎬᏚ\t-12.2926\nᏘᏰᎴ\t-12.2927\n▁ᎣᎩᏱ\t-12.2928\n▁ᎢᏤᎲᎩ\t-12.2933\n▁ᎤᎾᏖᏆᎶ\t-12.2933\n▁ᏱᏚᏂᏲ\t-12.2937\nᏯᏪᎦ\t-12.2937\nᏥᏄᎪᏫᏒᎩ\t-12.2939\n▁ᎤᏓᏅᏖᎯᎶ\t-12.294\nᏓᎧᎿᏩᏕᎪ\t-12.2944\n▁ᏴᏗᏍᎬ\t-12.2945\n▁ᏗᏓᏓ\t-12.2946\n▁ᎤᎷᎯᏍ\t-12.2947\n▁ᏳᏂᎸ\t-12.2949\n▁ᎤᎾᏛᏛᏁ\t-12.2952\nᏣᏗᏒᏂ\t-12.2953\n▁ᏕᏥᎸ\t-12.2958\n▁ᏧᎾᏛᏅ\t-12.2964\n▁ᏩᎩᎷᏥ\t-12.2964\nᏛᏓᏁᎵ\t-12.2971\n▁ᏗᎦᎾ\t-12.2974\n▁ᏚᏃᎸᏒ\t-12.2975\n▁ᏳᎪᎲ\t-12.2976\n▁ᎠᏓᎵᏂᎪᎯᏍᏗᏍᎪ\t-12.2976\n▁ᎤᎾᏛᏅᎢᏍᏔ\t-12.2978\n▁ᏂᏓᏣᎵᏍᏔ\t-12.298\nᏄᎪᏔᏅ\t-12.2983\nᏛᏉ\t-12.2983\nᏛᏨᎩ\t-12.2984\n▁ᏚᏄᎪᏔ\t-12.2984\n▁ᏓᏂᏴ\t-12.2985\nᏣᎳᎩ\t-12.2987\nᎩᎾᎩᏛ\t-12.299\nll\t-12.2994\nᏯᏪᏐᎸᏍᏗ\t-12.2995\n▁ᎤᏪᎵᎯᏍᏗᏍᎨ\t-12.3\n▁ᏱᎬᎿᏗᏍ\t-12.3002\n▁ᏕᎯᏰᏌ\t-12.3002\n▁ᏫᏚᏐ\t-12.3002\nᎤᎯ\t-12.3008\n▁ᎤᏂᏥᎸᏅ\t-12.3009\n▁ᏄᎵᏍᏔᏅᎾ\t-12.301\n▁ᎣᎦᏓᏅᏓᏗᏍ\t-12.3015\n▁ᎦᏍᎩ\t-12.302\n▁ᎤᏃᎯᎸᏍᏔ\t-12.3024\n▁ᏕᎦᏅᏌ\t-12.3028\n▁ᏧᎿᏬ\t-12.3036\nᎪᏔᏅᎭ\t-12.3037\nᎩᎧᎭ\t-12.3038\nᏂᎸᏉᏗᎭ\t-12.3041\n▁ᎬᏩᏃᏎ\t-12.3041\n▁ᎠᏲᎤ\t-12.3042\nᏙᎥᏔᏅ\t-12.3047\nᎠᏏ\t-12.3048\nᎩᏍᏓᏱᏕᎸ\t-12.3049\nᏍᎦᏍᏓᏁᎲ\t-12.3052\nᎩᎵᏲᏥᏙᎲ\t-12.3058\n▁ᏗᏠᎯᏍᏙ\t-12.306\n▁ᎬᏩᎪᏩ\t-12.3063\nᎦᏞᏥ\t-12.3064\nᏣᎷᏤᎮᏍᏗ\t-12.3065\nᏦᏁᎢ\t-12.3065\nᎵᎲᎢ\t-12.3067\n▁ᎬᏁᎢᏍᏓᏁ\t-12.3069\nᏂᎦᏖ\t-12.3072\n▁ᏱᏣᎦᏌᏯᏍ\t-12.3075\nᏛᏂᏌᏂ\t-12.3075\nᏚᎲᎦ\t-12.3076\nᏑᎬ\t-12.3077\n▁ᏛᏕ\t-12.3078\n▁ᎤᏪᏅᎢ\t-12.3084\n▁ᏭᏎᎴ\t-12.3089\n▁ᏗᎩᏂᏓᏍᏗ\t-12.3094\n▁ᏔᎸ\t-12.3096\n▁ᎦᎳᏅᏛᏉ\t-12.3098\n▁ᎨᏣᎦᏙᎥᎯᏍᏗ\t-12.3103\nᏟᏏᏍᎬ\t-12.3103\n▁ᎣᏥᎪᏩᏛ\t-12.3103\nᎾᎸᏤ\t-12.3106\n▁ᏓᎬᏂ\t-12.3107\nᏗᏍᎦᎩ\t-12.3109\nᎠᏁ\t-12.3109\n▁ᎬᏩᎾᎴ\t-12.3117\n▁ᎤᎾᎦᏌᏯᏍᏙ\t-12.3118\n▁ᎤᏗᏍᎩ\t-12.3118\nᏣᏟᏴᏗ\t-12.312\nᏥᏩᏛᎡ\t-12.312\nᏑᎵ\t-12.3121\n▁ᏓᏂᎵ\t-12.3122\n▁ᏫᏘᎦᏔᎲᏍ\t-12.3125\nᎵᏙ\t-12.3125\n▁ᏥᏄᏛ\t-12.3127\nᏥᏍᎦᎢᎮᏍᏗ\t-12.3138\nᏙᏪᎸ\t-12.3139\n▁ᎬᏩᏒ\t-12.314\n▁ᏗᎦᏘ\t-12.315\n▁ᎤᏚᎨ\t-12.315\nᎶᏄᎮᏔᏅᎩ\t-12.315\nᏍᏚᎲᎦ\t-12.3153\n▁ᎤᏬᏯ\t-12.3153\nᎴᏫᏍᏔᏁ\t-12.3153\n▁ᏱᏓᎩᎪ\t-12.3154\nᏓᏓᏂᎸᎪ\t-12.3155\n▁ᏥᏚᏠ\t-12.3157\n▁ᎦᏣ\t-12.3157\n▁ᎦᎨᏥᏁ\t-12.316\n▁ᎤᎫ\t-12.3162\n▁ᎤᏂᎧᏅ\t-12.3165\nᏓᎾᏠᏱ\t-12.3165\n▁ᏗᏣᏍᏗ\t-12.317\n▁ᏂᏍᏓᏛᏁ\t-12.3172\nᏅᎲ\t-12.3174\n▁ᏕᎯᏲ\t-12.3177\n▁ᏯᎵᏍᏔᏴ\t-12.3179\n▁ᏞᎩ\t-12.3179\nᎦᏔᏛᏍ\t-12.3181\n▁ᎤᎿᎸᏒ\t-12.3185\n▁ᎠᏲᎵᏉ\t-12.3185\n▁ᏫᏚᎾᏠ\t-12.3186\n▁ᏭᏓᏏ\t-12.319\n▁ᎤᏂᏴᎴ\t-12.3195\n▁ᎢᎬᎯ\t-12.3197\n▁ᏨᏤ\t-12.3201\n▁ᏚᏅᎦᎸᎮ\t-12.3208\n▁ᏫᎵ\t-12.3209\n▁ᏕᏥᎩᎵᏲᎢᏍᏗᏍ\t-12.3211\nᎰᏓ\t-12.3216\nᏂᎳᏫᎢᏍᏗᏱ\t-12.322\nᏓᏅᏖᎳ\t-12.3226\nᎾᏕᏯᏙ\t-12.3226\n▁ᏛᏂᎶ\t-12.3227\n▁ᏕᎨᏰ\t-12.3232\n▁ᎠᏥᎾᏗᏅᏗ\t-12.3234\n▁ᏗᎩᏬᏂᎯ\t-12.3234\nᎾᎵᏍᏚᎸ\t-12.3235\n▁ᏗᏂᏰ\t-12.3235\n▁ᎤᎨᏳᎲ\t-12.3236\nᏓᏣᎦᎸ\t-12.3238\nᎵᏍᎪᎸ\t-12.3245\nᏃᎯᎰ\t-12.3245\nᏴᏩᏛᎮ\t-12.3249\n▁ᎢᏥᎶᏄᎮ\t-12.3255\nᎦᏌᏬᎢᎲ\t-12.3257\n▁ᎢᏣᏖ\t-12.3258\nᏄᏍᏆᏂᎩᏗ\t-12.3259\n▁ᎨᏥᎸᏉᏙᏗ\t-12.3262\nᏅᎪᎥᏓᏁ\t-12.3264\n▁ᏓᏂᏰᎲ\t-12.3266\nᏥᏙᏓ\t-12.3268\nᎤᏃᎯᏳᎲ\t-12.3269\nᎩᏁᏓᏍᏗ\t-12.3278\nᏓᏂᎳᎩ\t-12.3279\nᏙᏍᏓ\t-12.3281\n▁ᎣᎦᏛ\t-12.3283\nᎦᎷᎶᎬ\t-12.3283\n▁ᏕᏥᏲᎯ\t-12.3284\nᏘᏃᎯ\t-12.3285\n▁ᏧᎾᏣᏅ\t-12.3286\nᎾᏛᏁᎯ\t-12.3288\n▁ᎤᏓᏠ\t-12.3289\n▁ᏍᎩᏯᏕ\t-12.3291\nᏍᎩᎾᏄᎪᏫᏎᎸ\t-12.3292\n▁ᏚᏲᏍᏙᏓᏁᎸ\t-12.3294\n▁ᏫᏨᏲᏪᎳᏁᎸ\t-12.3297\n▁ᎨᏥᏍᏆᏂᎪᏙᏗ\t-12.33\n▁ᎢᏨᏯᏓᏅᏖ\t-12.3302\n▁ᏗᏧᎪᏓᏁᏗ\t-12.3306\n▁ᎤᎴᏂ\t-12.3306\n▁ᎡᏗᎦᏔ\t-12.3312\nᎩᏁᏤᎸᎯ\t-12.3316\nᏅᏔᏅᎢ\t-12.3317\n▁ᎤᏒᎮ\t-12.3318\n▁ᎾᏅᎩ\t-12.3323\nᏃᏮ\t-12.3325\nᏗᏓᎾᎩᏍ\t-12.3327\n▁ᏄᎴᏫᏍᏔᏁ\t-12.3328\nᏗᏂ\t-12.333\nᏄᎪᏤᎸᎯ\t-12.3331\n▁ᎤᏂᏂᏴᎲ\t-12.3331\n▁ᎬᏭᎯᏍᏗ\t-12.3333\nᏍᏚᎶᎩᎯ\t-12.3336\n▁ᏣᎫᏴ\t-12.3341\nᎤᏂ\t-12.3345\n▁ᎨᏥᏅᏏᏙ\t-12.3348\nᏣᏓᏙᎵᏍᏓᏁᎮᏍᏗ\t-12.3351\nᎦᏓᏅᏖᏗ\t-12.3353\nᏃᏅᎭ\t-12.3356\n▁ᎠᎾᏕᏒ\t-12.3356\nᏘᏂᏙᎵ\t-12.3375\nᎩᎵᏲᏨ\t-12.3379\n▁ᎠᏍᎦᏂᏉ\t-12.3384\n▁ᏂᏙᏗ\t-12.3387\n▁ᏓᏔᎴᏒᎩ\t-12.3387\n▁ᎡᏣᏍᏕᎸᏗ\t-12.339\n▁ᎥᏍᎩᏯ\t-12.3391\n▁ᏗᏥᎧᎲ\t-12.3392\nᏪᏲᏁ\t-12.3393\nᏴᏨᎩ\t-12.3394\n▁ᎤᎭᏯ\t-12.3394\nᏃᎸᏔᏂ\t-12.3396\n▁ᏓᎾᏓᏰᎢᎵᏙ\t-12.3398\n▁ᎤᎾᏛᏅᎢᏍᏔᏅ\t-12.3407\nᏕᎦᏬ\t-12.341\n▁ᏲᏥᏩᏛ\t-12.3411\n▁ᏫᎫᏩᏂ\t-12.3412\nᎬᏩᏓᏂᎸᏤᎢ\t-12.3423\n▁ᏕᎨᏥᎸ\t-12.3428\nᎥᏛ\t-12.343\n▁ᎥᎩᏐᏅᎢᏍ\t-12.3433\n▁ᎤᏍᏓᏩᏗᏎ\t-12.3435\nᏓᏅᏓᏗᏍᏗᏍᎨ\t-12.3436\n▁ᏗᏰᎯ\t-12.3441\n▁ᏄᎨᏳᏒ\t-12.3442\n▁ᎢᏣᏄᏬᏍ\t-12.3443\nᏨᏙᏗᏱ\t-12.3444\nᏆᏛᏁᎸᎭ\t-12.3446\nᏫᏍᏔᏁᎸ\t-12.3449\n▁ᏕᏣᏬᏍ\t-12.3458\nᎧᎿᏩᏕᎩ\t-12.346\n▁ᎠᏍᏓᏱᏗᏍ\t-12.346\n▁ᏓᏂᏯᎩᏍ\t-12.3464\n▁ᏯᎾᎦᏔᎲ\t-12.3472\n▁ᎬᏯᏅᏓᏗᏍ\t-12.3475\n▁ᎠᏂᎮ\t-12.3476\n▁ᏄᏜ\t-12.3476\nᏃᎨᏂ\t-12.3478\n▁ᎦᏓᎷᎩᏍ\t-12.3479\nᏥᏪᏎᎮᏍᏗ\t-12.348\n▁ᎢᏤᏙᎸ\t-12.3481\n▁ᏥᏕᏥᏲ\t-12.3483\nᏣᎾᏔ\t-12.3488\n▁ᎻᏎ\t-12.3492\nᏂᏍᎨᎢ\t-12.3493\n▁ᏯᎩᏂᎬ\t-12.3501\nᎾᏓᏙᏪᎳ\t-12.3502\n▁ᏰᎵᎠ\t-12.351\nᎵᏍᏔᏴᏃᎾ\t-12.3515\n▁ᏧᏓᏃᏣ\t-12.3516\n▁ᏥᏓᏓ\t-12.3524\n▁ᏅᏓᏥᏪ\t-12.3532\n▁ᎥᏆᎵᏍᎪᎸᏓᏁ\t-12.3533\n▁ᎣᎦᏠᎾᏍ\t-12.3536\nᏠᏯᏍᏗᏍᎬ\t-12.3538\n▁ᏐᏏ\t-12.3539\n▁ᎬᏁᎳᎩ\t-12.3541\nᏦᎣ\t-12.3549\nᎷᎸᎥᏍ\t-12.3551\n▁ᏛᎩᎧ\t-12.3552\nᎳᏑᎵ\t-12.3561\nᏰᎸᏐᎢ\t-12.3562\nᏥᏅᏫᏍᏔᏅ\t-12.3565\n▁ᏓᏥᎶᏍᏗᏍ\t-12.3568\n▁ᎤᎶᎨ\t-12.3571\nᏰᎢᎵᏓ\t-12.3577\nᎾᏕᎬᎢ\t-12.3577\n▁ᏓᏥᏲᏎ\t-12.3579\n▁ᏧᏂᎾ\t-12.358\nᏗᎩᏍᏗ\t-12.358\nᏍᏓᏁᎲ\t-12.3581\n▁ᎢᎨᎲ\t-12.3583\nᏗᎪᎢ\t-12.3587\nᎡᎩ\t-12.3589\nᏬᏁᏗᏍᎬ\t-12.359\nᎦᏓᏅᏒᎭ\t-12.3591\n▁ᎤᏤᏌ\t-12.3593\nᎠᎩᎸᏉᏗ\t-12.3609\nᏁᏢᏔᏅᎯ\t-12.361\nᎾᎵᏗᎩ\t-12.3615\n▁ᎢᏨᏯᎵ\t-12.3622\n▁ᏗᏥᏅᎦᎸ\t-12.3623\nᏅᎦᎸ\t-12.363\nᏛᏁᎸᎢ\t-12.3634\nᏓᏁᎸᎢ\t-12.3635\n▁ᎤᎾᏕᏃ\t-12.3636\nᎪᎲᏍᏔᏅᎩ\t-12.3638\nᏯᏌᏛᏁ\t-12.3639\n▁ᎢᎬᏋᏁᏗ\t-12.3641\n▁ᎬᏩᏲᏍᏙ\t-12.3644\nᏅᏗᎭ\t-12.3657\n▁ᎯᎪᏙ\t-12.3658\n▁ᎤᎸᏒ\t-12.3659\nᏦᎣᏒ\t-12.3665\n▁ᏓᎾᏟᏃᎮ\t-12.3667\n▁ᏕᎫᏓᎴ\t-12.3669\nᏓᏓᏍᎦ\t-12.3672\nᏯᎧᏁᎸ\t-12.3674\n▁ᏍᎩᏁᏤᎸ\t-12.3676\nᏁᏩᏗᏒ\t-12.3679\n▁ᎠᎩᏲᏍ\t-12.3683\n▁ᏓᎧᏃ\t-12.3686\nᎦᎵᏍᎪᎢ\t-12.3689\n▁ᎢᏗᏯᏙᎯ\t-12.3694\n▁ᎨᏥᏩᎯᏎ\t-12.3695\nᎦᏘᏍᏗᏍᎩ\t-12.3697\nᏧᏠᎠᏎᎢ\t-12.3701\nᏣᏰᏨ\t-12.3706\nᏥᏍᎦᏅᎨᏍᏗ\t-12.3722\n▁ᎠᏆᏓᏅᏓᏗᏍᏗ\t-12.3726\nᎪᎾᏛᏔᏅ\t-12.3733\n▁ᏯᏆᏓᏅ\t-12.3736\n▁ᏱᏥᏍᎦᏅ\t-12.3738\nᏘᏃᎮᎴᎢ\t-12.374\nᏩᏗᏙᎯ\t-12.3741\nᎩᏨᏂᏒ\t-12.3743\n▁ᎢᏣᏗᏔ\t-12.3744\n▁ᎠᏴᏍᏗᏱ\t-12.3745\n▁ᎤᏂᏴᏓᏆᎶᎥ\t-12.3749\n▁ᏣᏆᏛ\t-12.3749\n▁ᏚᎵᏃᎮᏔᏅ\t-12.3757\nᏣᏬᏍᏔᏂ\t-12.3759\n▁ᏥᏨᏰᎳᏗᏙ\t-12.3767\nᏣᏪᏐᎸᏍᏗ\t-12.3773\nᏰᏗᏍᎬ\t-12.3774\nᏥᎦᎳᎭ\t-12.3781\n▁ᎦᏥᏁᎸ\t-12.3783\nᏤᏓᏍᏗ\t-12.3785\n▁ᏧᏅᎩ\t-12.3788\n▁ᏱᏚᎾᏄᎪᏫᏎ\t-12.3791\n▁ᏚᏂᏰᏍᏛ\t-12.3801\nᎫᏓᎴᏒ\t-12.3803\n▁ᏥᏯᎵᏍᎦᏍᏙᏗ\t-12.3803\nᏦᏢᏅ\t-12.3808\nᏓᏂᏲᎯᏎ\t-12.381\nᏚᏂᏴᏔᏅᎩ\t-12.381\nᎦᏚᏏᏁ\t-12.381\n▁ᎤᏍᏕᎸᎯᏙ\t-12.3817\nᎾᏓᏅᏛᎢ\t-12.382\n▁ᎠᏂᏯ\t-12.382\n▁ᎠᏤᎷᎯ\t-12.3836\nᏔᏟ\t-12.3837\n▁ᏂᎨᏥᏪᏎ\t-12.3843\nᏫᏚᏘᏅᏍᏔᏁᎢ\t-12.3844\n▁ᏣᏍᎫᏕᏍᏗ\t-12.3852\nᏒᏂᎸᎯ\t-12.3855\nᎤᏐᏱᏉ\t-12.386\nᏗᏍᎦᎶᏗ\t-12.3862\nᎧᏁᎢᏍᏗᏍᎨ\t-12.3867\n▁ᎦᎸᏙ\t-12.387\nᏘᎾᏄᎪᏫᏏ\t-12.3874\nᎬᏍᎪᎸ\t-12.3876\n▁ᎠᏍᎦᎢᏍᏗ\t-12.3877\nᎤᏚᎵᏍᎬ\t-12.388\n▁ᎡᏗᏔᏲ\t-12.3882\nᎻᏆ\t-12.3882\nᏨᏲᏎᎭ\t-12.3883\n▁ᎢᎪᏢ\t-12.3887\nᏟᏍᏔᏅ\t-12.3892\n▁ᎣᏤᏙ\t-12.3894\n▁ᏯᏆᏁᎸᏔ\t-12.39\n▁ᎱᎦ\t-12.3901\n▁ᏆᏌ\t-12.3901\n▁ᎠᏥᏃᏁᎸ\t-12.3905\nᏍᏓᏩᏚᎦ\t-12.3907\n▁ᎠᏆᎦᏎ\t-12.391\n▁ᎬᏩᏯᎥ\t-12.3914\nᏥᎪᏩᏘᎭ\t-12.3917\nᏄᏩᏅ\t-12.3921\nᏥᎥᏏ\t-12.3923\n▁ᎤᎾᏟᏂᎬᏁ\t-12.393\nᏣᎵᏍᎦᏍᏙᏗ\t-12.3932\n▁ᏚᏳᎪ\t-12.3933\n▁ᏧᎾᏚᎪᏓᏁ\t-12.3934\nᏩᏒᎬ\t-12.3937\nᏪᎶᏔ\t-12.394\n▁ᏓᎦᏙ\t-12.3941\nᎾᏓᏅᏖᏗᏍᎬ\t-12.3943\nᏥᎨᏳᎯ\t-12.3949\n▁ᏭᎵ\t-12.3951\n▁ᏗᏟᎶᏍ\t-12.3952\nᏯᏒᏂᏍᏗᏱ\t-12.3956\n▁ᏭᏂᎷᏤᎴ\t-12.396\n▁ᏗᏥᏅᏒ\t-12.3962\n▁ᏫᏓᎵ\t-12.3966\nᎦᏢᏔᏍᏗ\t-12.3981\nᏚᏙᎠ\t-12.3982\nᎦᏅᏓᏓ\t-12.3986\nᏂᎨᎲᏎ\t-12.3994\nᏔᎳᏬᎯ\t-12.3998\n▁ᎤᏢᎾ\t-12.4\n▁ᏓᏖᎸᎲᏍ\t-12.4013\n▁ᎣᎩᏃᏁᎸ\t-12.4015\n▁ᎭᏓᏃᎮ\t-12.4025\n▁ᎨᏥᎾᏌ\t-12.4025\nᏣᏓᎸᏉᏗᎭ\t-12.4031\n▁ᏙᏍᏓᏓᎪᏩ\t-12.4035\n▁ᏗᏞ\t-12.4036\n▁ᏓᎾᏤ\t-12.4041\n▁ᎤᏪᏯᏔᏅ\t-12.4043\nᏒᏂᎮᏍᏗ\t-12.4044\nᎩᏂᏴᎲ\t-12.4044\n▁ᎧᏂ\t-12.4046\n▁ᏧᎵᏍᏚᎢ\t-12.405\n▁ᏴᎦᏲ\t-12.4051\nᏥᎪᏩᏘᏍᎬᎾ\t-12.4053\n▁ᎢᎭᏅᏓ\t-12.4053\n▁ᎠᎵᏍ\t-12.4057\nᎩᎧᎿᏩᏛᏍᏗ\t-12.4061\nᏓᎨᏣᎵ\t-12.4061\nᎦᎷ\t-12.4075\n▁ᏚᏂᏨ\t-12.4094\nᏚᏟᏍᏔᏅᎩ\t-12.4096\n▁ᎬᏁᏤᎸ\t-12.4096\n▁ᎢᎬᏁᎸ\t-12.4098\nᏥᎩᎡᎸ\t-12.4103\nᏩᏂᎷᎦ\t-12.4104\n▁ᎡᏥᎸᏉᏙᏗ\t-12.4107\nᎿᎠ\t-12.4111\nᏘᏍ\t-12.4113\n▁ᎤᎾᎵᏥᏙᏂ\t-12.4113\n▁ᏧᎾᏍᏗᎩ\t-12.4114\nᎨᎦᎵᏍᎪ\t-12.4116\n▁ᏱᎬᏁ\t-12.4124\n▁ᎬᏆᏛᎦ\t-12.4129\n▁ᏱᏂᏣ\t-12.413\n▁ᎦᎵᏉ\t-12.4131\n▁ᏗᏓᎴᎲ\t-12.4134\n▁ᏭᏓᏒᏍ\t-12.4142\n▁ᏒᏙ\t-12.4146\n▁ᏚᎵᏍᏆ\t-12.4147\n▁ᏗᏥᏍᏆᏂᎪᏙᏗ\t-12.4149\nᎯᎥᏏ\t-12.4152\nᏜᏍᏗ\t-12.4152\n▁ᎤᏔᎴ\t-12.4152\n▁ᎨᏥᎪᎵᏰᏗ\t-12.4153\n▁ᏥᏰᏅ\t-12.4156\n▁ᎢᏨᏲ\t-12.4156\net\t-12.4157\n▁ᏚᎾᎦᎴᏅ\t-12.4158\n▁ᏯᎫᏚᎵ\t-12.4159\n▁ᎠᎭᏰ\t-12.416\nᎩᎵᏲᏤ\t-12.4168\nᎩᎶᏫᏎ\t-12.4174\n▁ᎤᎸᎮ\t-12.4178\nᎦᏥᎪᎥ\t-12.418\nᏯᏙᎵᎩ\t-12.4184\n▁ᎤᎾᏣᎢᏎ\t-12.4192\nᎤᎾᏗᏒ\t-12.4196\nᎯᏁᎦ\t-12.42\n▁ᎤᎦᏛᏅ\t-12.4207\nᏗᎦᎴᏲ\t-12.421\nᎷᎩᏍᎬ\t-12.421\nᎴᎰᏒ\t-12.4212\nᎵᎸᎩ\t-12.4219\nᎾᏛᎪᏗ\t-12.422\nᏕᏣᎳᏑ\t-12.4222\n▁ᎢᏯᏋᏂ\t-12.4223\nᏥᏑᎵᎪᎬ\t-12.4223\nᏟᎸ\t-12.4233\n▁ᏭᎾᏘᏃ\t-12.4236\nᏔᏁᏉ\t-12.4241\n▁ᏕᏣᏕᏲ\t-12.4243\n▁ᎦᏓᏅ\t-12.425\n▁ᏯᏇᎵ\t-12.4259\n▁ᏨᏗᎦ\t-12.4263\nᎵᏂᎪᎯᏍᏗᏍᎨᏍᏗ\t-12.4269\nᏰᎸᏁᎢ\t-12.4272\nᏯᎢᏎ\t-12.4273\n▁ᏓᏂᏅᎨ\t-12.4273\nᎢᏍᏗᏍᎪ\t-12.4277\nᏚᏓᎸᏁ\t-12.4277\nᎶᏎᎢ\t-12.4281\n▁ᏚᎾᏁᎶᏕ\t-12.4294\nᏥᏙᎲ\t-12.4294\n▁ᎬᎩᏍᏓᏩᏗᏙ\t-12.4296\nᏂᎵᏙᎸ\t-12.4298\nᏌᏉ\t-12.4299\n▁ᏗᎫᎪᏙ\t-12.4301\nᎸᏌᏓᏕ\t-12.4305\nᏟᏂᎬᏁ\t-12.4311\n▁ᎤᏓᎪ\t-12.4313\n▁ᏳᏗᏛ\t-12.4318\n▁ᏗᎫᏅ\t-12.4319\nᏣᏂᎩ\t-12.4323\nᎾᏓᏑᏲ\t-12.4326\nᎦᏁᏍᎬ\t-12.4329\n▁ᏥᏚᏂᏂᏴ\t-12.4335\n▁ᎠᏆᏑᏰ\t-12.434\nᎠᏰᏍᏓᎥ\t-12.4343\n▁ᏤᏥᏲᎯᏎᎸ\t-12.4345\nᎧᎾᏁᎢ\t-12.4346\nᏃᎮᏍᎪᎢ\t-12.4348\n▁ᏱᏣᏰᎸ\t-12.4356\n▁ᏕᎧᏅᏫ\t-12.4358\nᎮᏃ\t-12.4359\n▁ᎤᏁᏉ\t-12.436\n▁ᏚᏔᏍ\t-12.437\nᏚᎸᏫᏍᏓᏁᎰᎢ\t-12.4372\nᎯᏙᎮ\t-12.4378\n▁ᎯᎪᎢ\t-12.4381\n▁ᎨᏣᏙᎴᎰᎯ\t-12.4394\n▁ᎣᎦᏚᏓ\t-12.4396\nᏡᏗᏍᎨ\t-12.4396\nᎣᎩᎾᎵᏱ\t-12.4399\nᎾᎵᏂᎪᏎᎢ\t-12.4402\n▁ᏱᏣᏛᏓᏍ\t-12.4402\n▁ᏥᎬᏅ\t-12.4406\n▁ᏚᏃᏢ\t-12.4407\n▁ᏚᏂᏰᎸ\t-12.4407\n▁ᏚᎾᏓᏘ\t-12.4418\n▁ᏓᏍᏆᏂᎪ\t-12.4421\nᏑᏴᏅ\t-12.4425\n▁ᏣᏓᎵ\t-12.4425\nᎭᏈ\t-12.4425\n▁ᎠᏎᎪᎩ\t-12.4439\n▁ᏫᏂᏚᏪᏎ\t-12.4446\nᎬᏰᎵᏎ\t-12.4461\n▁ᎤᎾᏝᎥ\t-12.4469\n▁ᎤᎾᎵᏒ\t-12.4469\nᏥᎵᎥᏂᎮᏍᏗ\t-12.447\n▁ᏧᏩᏂᎦ\t-12.4471\nᏆᎧᏃᏗ\t-12.4471\nᏯᎸᎢ\t-12.4476\nᏛᎿᏕᎦ\t-12.449\nᏥᎬᏩᎶᏔ\t-12.4492\nᎴᎵ\t-12.4493\nᏓᏁᏤᏗ\t-12.4498\n▁ᏓᏂᎨᎯ\t-12.4505\nᏠᎠ\t-12.4506\nᏂᏲᎴ\t-12.4517\n▁ᎠᏓᏅᏖᎵᏙᎲ\t-12.4517\n▁ᏫᏄᏩ\t-12.453\nᏲᎯᏍᏗᏍᎬᎾ\t-12.4537\nᎩᏙᎵᎩ\t-12.4538\n▁ᎠᎩᏫᏒ\t-12.4554\nᏥᏯᏂᏍᎬ\t-12.4558\nᎵᏍᎦᏍᏙᏔᏅ\t-12.4561\n▁ᏄᎾᏕ\t-12.4562\n▁ᎠᏓᏒᎲᏍ\t-12.4566\n▁ᏚᎾᏦ\t-12.4567\n▁ᎠᎩᏍᏆᏂᎪᏙ\t-12.4569\nᏣᏏᎳᏛᏗ\t-12.4575\n▁ᏛᏂᎩ\t-12.4579\n▁ᏗᏍᎩᏅ\t-12.4588\nᏂᏓᏛ\t-12.4598\n▁ᎤᏘᏃᎮᎴ\t-12.4599\n▁ᎤᏛᎦᏅᏉ\t-12.4602\nᎦᏌᏬᎸ\t-12.4603\n▁ᏣᏲᎸ\t-12.4613\nᏂᎦᏛᎴᎯ\t-12.4618\nᎵᏍᏇᏚ\t-12.4618\n▁ᎤᎾᏟᏃᎮ\t-12.4621\n▁ᎦᏥᏁᏤᎸ\t-12.4625\nᎾᏛᏛ\t-12.4625\nᎶᎾᏍᏔ\t-12.4633\nᏓᏂᎸᏤᎸᎯ\t-12.4637\n▁ᎢᏨᏁᎵ\t-12.4638\n▁ᏱᏨᏲᏎ\t-12.4638\nᏘᎿᏫᏛ\t-12.464\n▁ᏧᏂᏯᏅ\t-12.4645\nᏂᏄᎪᏫᏍᏗᏱ\t-12.465\n▁ᎤᏅᎪᎢᏍ\t-12.4657\nᏜᏫᏍ\t-12.466\n▁ᎦᏥᏯᏑᏰ\t-12.4663\nᏬᏂᏍᎨᏍᏗ\t-12.4665\n▁ᏱᏙᎦᏙ\t-12.467\n▁ᎤᏛᏗᏕ\t-12.467\n▁ᎢᏨᏯᏛᏁ\t-12.4672\n▁ᏴᎨᏍᎩ\t-12.4675\n▁ᏫᏄᏂᏪᏎ\t-12.4676\n▁ᏓᎾᏓᏂᎸ\t-12.4684\nᏂᎧᎵᎴᎢ\t-12.4684\nᎾᏚᏓᎸ\t-12.4688\nᏴᏔᏅ\t-12.4688\n▁ᏱᏚᏑᏰ\t-12.4689\nᎦᏩᏒᎬ\t-12.4696\n▁ᎣᏚᏓᎴᏍᏗ\t-12.4704\n▁ᎤᎲᏒ\t-12.4707\n▁ᎤᎾᏓᏔᎶ\t-12.4709\n▁ᏧᏂᏐᎯᏍᏗ\t-12.471\nᏣᎨᏳ\t-12.4728\nᎵᏥᏙᎲᏍᎬ\t-12.4731\n▁ᎠᏏᏍᎪ\t-12.474\n▁ᎬᏩᏛᏅ\t-12.4751\nᏍᎦᏉ\t-12.4754\nᏆᏘᎾᏫᏛᎲᎩ\t-12.4757\nᎾᎪᏒ\t-12.4759\n▁ᎢᏨᏩᏛ\t-12.4759\nᏄᏛᏁ\t-12.4766\nᎴᏂᏙᎲᎢ\t-12.4772\n▁ᏗᏓᎴᎲᏍᎪ\t-12.4772\n▁ᎤᏂᏴᏔᏁ\t-12.4774\nᏁᏟᏴᎭ\t-12.4775\nᏍᎩᎡᎴᎢ\t-12.4791\nᏙᎸᎭ\t-12.4793\nᏩᎪᏗ\t-12.4802\n▁ᎠᏂᎪᎵᏰᏍᎬ\t-12.481\n▁ᏱᏂᏚᏓ\t-12.4818\nᎠᎾᏡᏗᏍᎩ\t-12.4824\n▁ᏭᏍᏚ\t-12.4824\nᎦᏙᏍᏓᏁ\t-12.4825\n▁ᏔᏑᏰ\t-12.4835\nᏂᏴᏎᏍᏗ\t-12.4835\nᏂᏪᏒᎩ\t-12.4835\ntin\t-12.4836\n▁ᎢᏍᏆᏓ\t-12.484\nᏚᎪᏓ\t-12.4841\n▁ᏫᏙᏥ\t-12.4844\n▁ᏣᎪᏎ\t-12.4848\n▁ᏕᎬᏩᏏᏔ\t-12.4851\nᏕᏘᏴᎲᏒ\t-12.4854\nᏂᏏᏅᏎ\t-12.4858\n▁ᏳᏂᏴ\t-12.4871\n▁ᏍᎩᏲ\t-12.4873\n▁ᎤᏂᏂᎬᎨ\t-12.4873\n▁ᎯᏐᏢᎢᏍᏗ\t-12.4878\nᏕᏘᏴᎲ\t-12.488\n▁ᏧᏅᏂᏍ\t-12.488\n▁ᏥᏓᎵᏖᎸᎲ\t-12.4885\nᎦᎧᎲᎩ\t-12.4885\n▁ᏫᎨᏙ\t-12.4887\nᏥᏙᎪ\t-12.4887\n▁ᎤᏍᏛᎦ\t-12.4892\n▁ᏫᎦᎶ\t-12.4902\n▁ᏗᎬᏩᏲ\t-12.4909\nᏣᏛᏁᎵᏙᎲ\t-12.4918\nᎩᏱᎵᏙᎭ\t-12.4922\nᏓᏂᏯᏛ\t-12.4926\n▁ᎤᎦᏔᏛ\t-12.4938\n▁ᎤᎾᎵᏥᏙ\t-12.4938\n▁ᎭᎵᏥᏙᎲᏍ\t-12.4943\nᏁᏍᎨᎲᎩ\t-12.4946\nᎦᎵᏍᏔᏁᎲ\t-12.4948\nᏗᎾᏓ\t-12.4952\n▁ᏕᏣᏓᏂᎸ\t-12.4954\n▁ᏭᎾᏏ\t-12.4954\n▁ᎢᏍᏛᎷᏤ\t-12.496\nᏖᎸᎲᏍᎦ\t-12.496\nᏛᏛᏔᏂ\t-12.4964\n▁ᏱᏤᏙ\t-12.4967\n▁ᏂᎨᏂᎾ\t-12.4968\n▁ᎢᏣᏛᏁᎲ\t-12.4975\nᏂᏌᏅ\t-12.4975\nᎶᏄᎮᎴᎢ\t-12.4976\n▁ᎤᏴᏍ\t-12.4976\nᏓᏓᏬᏍᎨ\t-12.4981\nᏂᎸᏌᏓᏕ\t-12.4983\nᏥᎳᏫᏤ\t-12.4985\nᎾᎷᏍᎬ\t-12.4986\nᎾᏟᏃᎮᏗ\t-12.4994\nᎩᏅᏁᎸ\t-12.5\nᏲᎢᏍᏗ\t-12.5004\nᏑᏰᏍᏗ\t-12.5007\n▁ᎬᏩᏃᎮᏍᎬ\t-12.5024\nᏤᎵᎯᏍ\t-12.5025\n▁ᏱᎦᎬ\t-12.5026\n▁ᏭᎳᏏ\t-12.5028\nᏚᎩᏛ\t-12.5044\nᎦᎷᎨ\t-12.5048\nᎳᏗᏍᏗᏍᎨᏍᏗ\t-12.506\n▁ᎢᏨᏃᎮ\t-12.5062\nᏅᎡᎴᎢ\t-12.5073\nᏚᏍᏕᎸᎮᎢ\t-12.5076\nᏓᏕᏲᎲᏍᎦ\t-12.5079\n▁ᎬᏩᏡᏗᏍ\t-12.5079\n▁ᎠᎵᏍᏆᏙ\t-12.5079\n▁ᏕᏣᎵᏂᎪ\t-12.5079\nᏥᏩᏛᎯ\t-12.508\n▁ᎤᏂᎷ\t-12.5081\nᎬᏁᏤᎸᎭ\t-12.5088\n▁ᎨᏥᎩᎵᏲᎢᏍᏗᏍ\t-12.5096\n▁ᎠᎩᏁᎲ\t-12.5105\n▁ᏘᎧᎵ\t-12.5106\n▁ᎠᎦᎷ\t-12.511\n▁ᎤᏓᎴᏅ\t-12.511\nᏣᏓᏅᏒᎩ\t-12.5128\n▁ᏍᎩᏰᎵ\t-12.5138\n▁ᎠᎩᏴᏍᏗ\t-12.5138\nᏓᏬᎯᎳᏗᏍ\t-12.5139\n▁ᏓᏲᏥ\t-12.5142\nᎾᎪᎲᏍᏗ\t-12.5142\nᏍᏓᏩᏛᏒ\t-12.5144\nᏕᎫᎪᏓᏏ\t-12.5145\n▁ᏲᎯ\t-12.5147\n▁ᏓᎵᏂᎪᎯᏍᏗᏍᎪ\t-12.5157\n▁ᏓᏂᎦᏘᎴ\t-12.5162\n▁ᏚᏗᎦᎴ\t-12.5175\nᏯᎵᏃᎮ\t-12.5176\n▁ᎡᏥᏍᎦ\t-12.518\nᎾᏠᎯᏍᏔᏅ\t-12.5182\nᎩᏒᏎ\t-12.5184\nᏥᏂᏴᎲᎩ\t-12.5188\n▁ᏓᎾᏘ\t-12.5191\n▁ᎠᏥᏃᎮ\t-12.5191\n▁ᎱᏰᎸ\t-12.5192\nᎩᏄᎸᏅ\t-12.5202\nᎦᏙᎯ\t-12.5202\n▁ᎠᏆᏄᏬ\t-12.5212\nᏩᏥᏍᎦᎸ\t-12.5216\nᏍᎪᏂᎴᎢ\t-12.5219\nᏯᏥᎪᏁᎸ\t-12.5227\n▁ᎤᎾᏕᏁ\t-12.5229\n▁ᏘᏅᏍᏓ\t-12.5234\nᏐᏅᏰ\t-12.5234\n▁ᎠᎩᏍᏕᎸᎲ\t-12.5235\n▁ᎡᏍᏕ\t-12.5237\nᏓᏓᏬᏍᎬᎢ\t-12.5238\n▁ᏴᎨ\t-12.5241\nᎩᎸᏫᏍᏓᏏ\t-12.5242\n▁ᎢᏥᏂᏆᏘ\t-12.525\nᏕᎲᏍᎪ\t-12.525\nᎾᎴᎿᏫᏍᏛᎩ\t-12.5257\n▁ᏚᏩᏥᏍᎦ\t-12.5259\n▁ᎠᏆᏕᏅ\t-12.5264\n▁ᏗᏨᏙ\t-12.527\n▁ᏓᏥᏰ\t-12.5271\n▁ᎠᎩᏍᎦᏅ\t-12.5278\nᏍᏕᎸᎯᏙᎸᎯ\t-12.5278\n▁ᎠᎩᏄᎸ\t-12.5284\n▁ᎤᎵᏍ\t-12.5287\nᏓᎡᏏ\t-12.5293\n▁ᏕᎭᏡᏗ\t-12.53\nᎦᎾᏩ\t-12.5301\nᏍᎦᎶᏗ\t-12.5312\n▁ᏳᏴᎵ\t-12.5325\nᏬᏪᎳᏁ\t-12.5326\nᏇᏅᏔᏅ\t-12.5327\n▁ᏥᏓᏕᏲᎲᏍ\t-12.5328\n▁ᎠᏓᏰᎮ\t-12.5339\n▁ᎬᏁᏤᏗ\t-12.5343\nᏚᏳᎪᏗ\t-12.5344\nᏣᏛᎯᏎᎸ\t-12.5345\nᏥᎦᏙᎥᏒ\t-12.5347\n▁ᏣᎸᏃᏘ\t-12.5348\nᏣᏛᏁᎲᎢ\t-12.5349\n▁ᏕᎤᎵᏍᎪᎸᏓᏁ\t-12.5356\nᏬᏚᏨ\t-12.5358\n▁ᎯᏯᏥᎪᏁ\t-12.5362\nᎬᎩᎷᏤᎸ\t-12.5371\nᎾᏛᏁᎴ\t-12.5374\nᏍᏕᎵᏍᎨᎢ\t-12.5378\nᏴᏍᏗᏍᎨᏍᏗ\t-12.5387\n▁ᎢᏥᎾᏄᎪᏫᏍ\t-12.5393\n▁ᏭᏲ\t-12.5399\nᏛᏅᎢᏍᏔᏅᎾ\t-12.5404\nᏲᏔᏁ\t-12.5405\n▁ᏓᏦ\t-12.5408\nᏇᎵᏎᎮᏍᏗ\t-12.542\nᏥᏏᎾᏌᏂ\t-12.5443\n▁ᎤᎾᏒᏂ\t-12.5453\nᏍᎩᎪᏩᏛ\t-12.5453\nᏙᎭᏰ\t-12.5454\nᏍᎩᏴᏁᎸ\t-12.5454\n▁ᎢᏥᏴᏁᏗ\t-12.5466\n▁ᎾᎾᏛ\t-12.5468\nᎪᎯᏍᏗ\t-12.5469\nᏂᏕᎬᏁᎰ\t-12.5471\n▁ᎤᎾᏦ\t-12.5478\n▁ᎨᏥᏅᎦᎵᏍ\t-12.548\n▁ᏱᏗᏣᏓ\t-12.5482\nᏩᏂᎴᎢ\t-12.5484\nᏓᏲᏁᎯ\t-12.5486\n▁ᏱᏂᏚ\t-12.5489\n▁ᏧᎾᏑ\t-12.549\n▁ᏓᏳᎾᎴᎿᏫᏍ\t-12.55\nᏓᏗᏍᎪᎢ\t-12.5503\nᏆᏛᏁᏗᏱ\t-12.5521\nᎾᏄᎪᏫᏍᎩ\t-12.5522\nᏇᏓᏢ\t-12.5523\n▁ᎠᏂᏃᏗᏍ\t-12.5527\nᎵᏙᎸ\t-12.5531\nᎾᎯᏍᏓᏁᎸ\t-12.5549\n▁ᏓᏂᏃᎯ\t-12.5551\nᎳᏏᏁ\t-12.5555\n▁ᏚᏦ\t-12.5572\n▁ᏥᏕᎫᎪᏓᏁ\t-12.559\n▁ᎱᏃᎮ\t-12.5593\nᎿᏕᎦ\t-12.5605\n▁ᏗᏥᏅ\t-12.5606\nᏂᎪᎵᏰᏍᎬᎩ\t-12.5609\nᏙᎩᏨᏍ\t-12.5612\nᏂᏲᎱ\t-12.5615\nᏂᏲᎲᎩ\t-12.5618\n▁ᎤᎾᏛᏅᎢᏍ\t-12.5626\n▁ᎤᎾᎵᏍᏓᏴᏙᏗ\t-12.5633\nᏂᏗᏍᎩᏌ\t-12.5642\n▁ᏗᎫᏴᎡ\t-12.5645\nᎩᏍᏛᏗᏍᏗ\t-12.5649\nᏴᎸᎾ\t-12.5654\n▁ᎠᎵᏍᏓᏴᎲᏍᎨ\t-12.5681\nᏍᎩᏯ\t-12.5682\n▁ᎠᏥᎩᎡ\t-12.5688\n▁ᏓᎧᎿᏩᏗᏙ\t-12.5689\nᎬᎿᏗᏍᏗ\t-12.5736\nᏴᏫᏯᎯ\t-12.5736\n▁ᎤᏓᏟᏌᏅ\t-12.574\n▁ᎣᎩᎾᎩ\t-12.5749\nᎤᏴᏢ\t-12.5757\n▁ᏣᏓᏴ\t-12.5757\nᏥᏂᏆᏘᎭ\t-12.5764\nᏕᎰᏗᏍᎬ\t-12.5765\nᏯᎧᎯᏯ\t-12.5767\nᏂᏁᎦ\t-12.5767\nᎬᏍᏕᎸ\t-12.5773\n▁ᏳᎵᏍᏆᏙ\t-12.5787\n▁ᎤᎵᏍᏆᏂᎪᏙ\t-12.5787\n▁ᎯᏯᎫᏴ\t-12.5788\nᏓᏍᎦ\t-12.5792\nᏍᏗᏗᏎ\t-12.5795\nᏍᏕᎸᎮᎢ\t-12.5797\nᏂᏐᎯᏍᏗᏱ\t-12.5801\n▁ᎤᏂᏍᏕᎸᎯᏙ\t-12.5802\nᏂᎩᏎᎢ\t-12.5806\n▁ᏍᎩᏂᏴ\t-12.5807\nᏰᏍᏛᎢ\t-12.5807\n▁ᎠᏂᏙ\t-12.581\nᏣᏯᏂᏍᎨᏍᏗ\t-12.5816\nᎠᏑᎵ\t-12.5816\nᏥᎾᏰᏍᎦ\t-12.5816\nᎡᏉ\t-12.5819\n▁ᏓᏳᏰ\t-12.5824\nᏕᎮᏍᏗ\t-12.5824\nᎷᏅ\t-12.5827\n▁ᏗᏣᎵᏂᎪᎯᏍ\t-12.5836\n▁ᎢᏨᏲᏪᎳᏁᏗ\t-12.5836\nne\t-12.5838\n▁ᏱᏗᏥᎪᏩᏘ\t-12.5839\nᏥᏅᏍᏓᏕᎸᎩ\t-12.5842\nᎠᏐᏢᎢᏍᏗᎭ\t-12.5845\n▁ᎤᏂᏣᏄ\t-12.5849\nᏯᏅᏏ\t-12.5853\nᎾᏕᏋᎯᏍᏗ\t-12.5877\n▁ᎣᎩᏃᎸ\t-12.5879\n▁ᎣᎩᏍᏕᎸᏗ\t-12.5893\nᏗᏛᎲ\t-12.5895\n▁ᎤᏃᏴᎨ\t-12.5916\nᏣᏓᏅᏖᏍᎨᏍᏗ\t-12.5927\nᏓᏅᏖᏗᏍᎨ\t-12.593\n▁ᏧᏂᏅᎢᏍ\t-12.5932\n▁ᎢᏣᏘᏍᏗᏍ\t-12.5935\nᎵᏏᏯ\t-12.5939\nᏥᏙᎵᎩ\t-12.594\n▁ᎡᏣᎵᎮᎵ\t-12.596\n▁ᏚᎾᎳᏑ\t-12.5963\n▁ᏱᏍᎩᏁ\t-12.5968\n▁ᎣᎦᏓᏙᎵᏍ\t-12.5976\n▁ᎠᏥᎪᎵᏰ\t-12.599\n▁ᏕᏥᎦᏔᎲ\t-12.599\nᏓᏣᏛᏂ\t-12.5991\n▁ᏲᎯᏳᎲ\t-12.5996\n▁ᎦᏂᏆᏘᎮ\t-12.5999\n▁ᏓᎦᏥᏴ\t-12.6002\n▁ᎢᏥᏃᎯ\t-12.6006\nᏥᎭᏯᎸ\t-12.6009\nᎦᎴᏅᏔᏅ\t-12.6015\n▁ᏄᎾᏕᏁ\t-12.6022\n▁ᏭᎾᎵᏍᏔ\t-12.603\nᏲᏎᎴᎢ\t-12.6037\nᏎᎵᏙᏔᏁ\t-12.6039\n▁ᏔᏙᎴᎰ\t-12.6049\n▁ᎤᏅᎦᎸᎮ\t-12.6055\n▁ᏱᎾᎩᏪ\t-12.6055\nᎬᏬᎯᏳᎲᏍᎨᎢ\t-12.6057\nᏂᏍᏓᏩᏗᏒᎩ\t-12.6058\nᏤᎲᎩ\t-12.606\n▁ᎢᎦᏠᏯᏍᏙᏗ\t-12.6063\nᎨᏫᏒ\t-12.6068\nᏥᏯᎠ\t-12.607\nᏆᎵᏂᎬᎬ\t-12.6071\n▁ᎢᏨᏯᏅ\t-12.6072\nᏯᏅᎡᏗᏱ\t-12.6078\n▁ᎤᎾᏂᎩ\t-12.6086\nᎾᎦᏌᏯᏍᏗᏕᎩ\t-12.6087\nᎵᎥᏂᎮᏍᏗ\t-12.6091\nᎵᏃᎮ\t-12.6093\nᎶᏏᏙᎮ\t-12.6117\nᏂᎿᎸ\t-12.6126\nᎾᏄᎪᏫᏎᎵ\t-12.6131\nᏮᏕ\t-12.6136\n▁ᏕᎧᏅᏫᏍ\t-12.6136\nᏛᎯᏍᏓ\t-12.6159\n▁ᎢᎩᏅᎦ\t-12.616\n▁ᏰᏙ\t-12.6161\nᏠᏯᏍᏙᏗᏱ\t-12.6176\nᏣᏟᎶᏍᏙᏗ\t-12.6178\nᏤᎵᏍᎪᎢ\t-12.6182\n▁ᎠᏰᏍᏓ\t-12.6195\nᎵᏃᎯᏰᎯ\t-12.6197\nᏂᏲᎵᎴ\t-12.6198\nᏓᎪᏩᏘᏍᎨᎢ\t-12.6213\n▁ᏣᏩᎯ\t-12.6214\n▁ᎡᏣᎸᏉ\t-12.6225\nᏓᏍᏖ\t-12.6228\n▁ᏯᏎ\t-12.6237\nᏄᏴᎸ\t-12.6243\nᎮᏙᎸ\t-12.6245\nᏚᎾᏓᏂᎸᏨ\t-12.6246\n▁ᎨᏥᏚᎢᏍᏓ\t-12.625\n▁ᎢᏥᏄᎪ\t-12.6255\n▁ᏍᎩᏰᎵᏎ\t-12.6256\nᏥᏲᎦ\t-12.6264\nᏲᏏᏌᏅ\t-12.6266\n▁ᎤᎾᎩᎶᏫ\t-12.6266\nᏓᏁᎶᏛᎢ\t-12.6271\nᏓᏬᏍᎪ\t-12.6274\nᏣᏓᏅᏘ\t-12.6281\n▁ᏯᏇᎵᏎ\t-12.6283\n▁ᏑᏓᎵᏉ\t-12.6292\nᎵᎡᎵᏤᎲ\t-12.6293\nᏓᎡᎪᎢ\t-12.6294\n▁ᎾᏂᎦᏔ\t-12.6298\n▁ᏍᎩᏃᏁᏗ\t-12.6301\nᏤᎸᎯ\t-12.6309\nᏯᏗᏒ\t-12.6313\n▁ᏱᏕᎫᎪᏓ\t-12.6324\n▁ᏫᏚᎶ\t-12.6331\nᏚᎢᏍ\t-12.6337\nati\t-12.634\nᎬᏯᏛᏁᎸᎢ\t-12.634\nᎤᎪᎲ\t-12.6352\n▁ᏩᎾᏓᏅ\t-12.6359\nᎰᏎᎴ\t-12.6359\nᏴᏂᎸ\t-12.6364\n▁ᏚᏭᏍ\t-12.6366\nᏯᎸᏎ\t-12.6375\n▁ᏫᎩᏯ\t-12.6375\n▁ᏧᎦᏘᎴ\t-12.6382\nᏛᏓᏍᏓᏁᎸ\t-12.6395\nᏰᎶ\t-12.6417\n▁ᏴᎦᏲᏥ\t-12.6417\nᎬᏩᎶᏔᏅ\t-12.6423\n▁ᏗᎦᏬᏁ\t-12.6423\nᏁᏙᎮᏍᏗ\t-12.6434\nᎩᏲᏍᏙᏗ\t-12.6438\n▁ᏯᏲᏍ\t-12.6453\nᏬᏍᎨᎢ\t-12.6467\n▁ᏗᎨᏧᎪ\t-12.6469\nᏬᎵᏨ\t-12.647\n▁ᎤᎾᎫᏴ\t-12.6474\n▁ᏓᎦᎵᏍᏓᏴ\t-12.648\n▁ᏯᎫ\t-12.6483\nᏙᎳᏅᏍᏗ\t-12.6499\nᏱᎶᎴ\t-12.65\nᏈᎵᏱ\t-12.6501\n▁ᏙᏍᏓᏓ\t-12.6514\nᎩᏯᏪᎦ\t-12.6515\nᏍᏔᏩᏗᏒ\t-12.6516\n▁ᎦᏅᏫᏍᏗᏍ\t-12.652\n▁ᏍᏆᏘᏂ\t-12.6531\nᏚᎵᏍᏓ\t-12.6537\nᏗᎧᎿᏩᏗ\t-12.6538\n▁ᏯᎴᏫᏍᏗᏍ\t-12.6546\n▁ᎠᏥᏄᎪᏫᏒ\t-12.655\nᏐᏢᏔᏅ\t-12.6553\n▁ᏗᏓᏁ\t-12.6554\nᏓᎸᏉᏗᎭ\t-12.6559\nᏪᎧᏁᎴ\t-12.6566\nᏚᏓᏴᏎ\t-12.6567\n▁ᏗᏥᏁᏗ\t-12.6572\nᏥᎪᏩᏔ\t-12.6578\n▁ᏙᏓᎬᏯ\t-12.6579\nᏱᎾᏆᏛᏁ\t-12.6582\nᏥᏔᏲᎸᎩ\t-12.6591\nᎪᎵᎩ\t-12.6605\nᎪᏩᏘᏍᎨ\t-12.6612\n▁ᏧᏲᏍᏙᏗ\t-12.6614\n▁ᎤᏚᎵᏍ\t-12.6617\nᏪᎮᎢ\t-12.6618\nᏟᏂᎬᏁᎴ\t-12.6619\nᎩᏐᏢ\t-12.6627\nᏂᏙᎴᎢ\t-12.6629\n▁ᎤᎾᏚᏓᎴᏍᏗ\t-12.6634\n▁ᎢᎤᏪᏅ\t-12.6642\n▁ᎣᎩᏩᏛ\t-12.6649\nᏁᏤᎭ\t-12.6654\nᏌᎴᏒ\t-12.6656\nᎦᎩᏳ\t-12.668\n▁ᏓᏣᏄᎪ\t-12.6687\nᏗᏥᏯᏪ\t-12.6696\nᎵᏰᎢ\t-12.6701\n▁ᏫᎫᏓ\t-12.6707\nᎵᏍᏚᎢᏎᎢ\t-12.6709\n▁ᎬᏩᏓᏅᎡ\t-12.671\nᏍᎫᏕᏍᏗᏱ\t-12.671\nᎪᏫᏍᎪ\t-12.6714\nᏲᏍᎦ\t-12.6719\nᏗᏔᏍᏓ\t-12.672\nᎡᏏᎩᏃ\t-12.6728\n▁ᏛᎯ\t-12.6733\nᏍᏚᏟᏍᏔᏅ\t-12.6767\nᏂᏂᏒᎩ\t-12.6768\n▁ᎢᎩᎨᏳᎯ\t-12.6775\n▁ᎧᏁᎢᏍᏙᏗ\t-12.6783\n▁ᎤᏍᎦᏅ\t-12.6794\n▁ᎣᎦᏢᏈ\t-12.6795\nᎾᏑᎩᏍ\t-12.6804\n▁ᏱᎦᏓᏙ\t-12.6812\nᎦᎾᏄᎪᎬ\t-12.6817\nᏍᏓᏱᏕᎴ\t-12.6818\n▁ᎤᎪᎵᏰᏍᎬ\t-12.682\n▁ᎬᏩᏁᏤ\t-12.6826\nᏰᏍᏛᏁ\t-12.683\n▁ᎦᏕᎶᎣ\t-12.6835\n▁ᎠᏥᏁᎮ\t-12.6838\n▁ᏱᏂᎦᏛ\t-12.684\n▁ᏕᏣᏘᏃ\t-12.6841\nᏨᏰᎳᏗᏙᎭ\t-12.6847\nᎨᏓᎵᏰ\t-12.6853\n▁ᏚᏒᎭᏂ\t-12.6865\nᏂᏱᏍᎪ\t-12.6867\nᎵᏥᏙᏂᏙᎸᎭ\t-12.6873\n▁ᎢᎫᏓᎴ\t-12.6889\n▁ᏳᎾᏓᏅᏖ\t-12.69\n▁ᏙᎩᎩᏨ\t-12.69\nᏬᏍᏔᏂ\t-12.69\nᏯᎵᏍᎦᏍᏙᏗᎭ\t-12.6901\n▁ᎡᏥᏬ\t-12.6903\nᎦᏎᏙᏗ\t-12.6903\n▁ᏧᏕᏁ\t-12.6904\nᏤᎷᎩ\t-12.6906\n▁ᎤᎾᎵᏥᏙᏁ\t-12.6914\nᎾᎵᏍᏕᎸᏙᏗ\t-12.6918\n▁ᏭᏂᏩᏛ\t-12.692\n▁ᏚᏲᏒ\t-12.6927\n▁ᏗᎨᏣᏓᏂᎸ\t-12.6933\n▁ᏧᏠᎠᏎ\t-12.6951\n▁ᏭᎾᏕ\t-12.6951\n▁ᎤᎾᎪᎲᏍ\t-12.6953\nᎦᎾᎨ\t-12.6964\n▁ᎣᏥᏍᏗᏰ\t-12.6965\n▁ᏗᏛᏅᎢᏍᏔᏅ\t-12.6978\nᏍᎩᎧᏏ\t-12.6982\nᏩᏛᏁᎸᎢ\t-12.6993\nᏲᎱ\t-12.6996\nᏔᏍᎩᏎ\t-12.6998\nᏲᎯᏎᎲ\t-12.6999\n▁ᎠᏋᎨ\t-12.7001\nᏚᎢᏍᏓᏁᎸ\t-12.7002\n▁ᏓᏌᏬᎢ\t-12.7009\nᎩᏂᏴᏛ\t-12.7009\nᎪᏓᏏ\t-12.7041\n▁ᏥᎶᏒ\t-12.7042\nᏤᏙᎵᏙᎮ\t-12.7043\n▁ᏚᏍᏕᎸᎮ\t-12.7043\nᎪᏫ\t-12.7046\n▁ᏫᏚᏘᏅᏍᏔᏁ\t-12.7047\nᏲᎰᏏ\t-12.7048\n▁ᎡᏣᎵᏥᏙᏁ\t-12.7058\nᏣᏛᏂ\t-12.706\nᏗᎦᏘᎸᏍᏗ\t-12.7061\n▁ᎠᏆᏦᏩ\t-12.7066\nᏓᏅᎩᎶ\t-12.7069\nᏙᏗᏱᏉ\t-12.7074\n▁ᎦᏓᏅᏖᏍ\t-12.7077\n▁ᏥᏣᏚᎵ\t-12.7105\nᏂᏏᏅᏒ\t-12.7106\nᏂᏰᎸᎭ\t-12.7114\nᏣᏗᏍᏓᏁ\t-12.7114\nᏅᏫᏍᏔᏅ\t-12.7125\n▁ᎢᏥᏍᎦᏃ\t-12.7127\nᏗᏲᎪ\t-12.7131\nᎦᏙᎲ\t-12.714\n▁ᎠᏆᏅ\t-12.7143\nᏓᏅᏖᏍᎬ\t-12.7145\n▁ᎢᏥᎧᎵᎢᏍᏗ\t-12.7153\nᏗᏯᏂ\t-12.7154\nᎷᏤᎮᏍᏗ\t-12.7157\n▁ᎤᏪᎳᏗ\t-12.7157\n▁ᎠᏥᏲ\t-12.7162\n▁ᏧᏘᏅᏍᏗ\t-12.7184\nᏣᏯᎠ\t-12.7187\nᏥᏲᏎᎵ\t-12.719\nᎨᎲᏎ\t-12.719\n▁ᏥᎮ\t-12.7191\nᏯᏙᎮᎮ\t-12.72\nᎾᎵᏍᏓᏴᎯ\t-12.7202\nᏥᏄᎪᏫᏍᎦ\t-12.7205\n▁ᏱᏙᎦᏓᏂᎸ\t-12.7206\n▁ᎢᎨᏣ\t-12.7213\nᏠᎸ\t-12.7223\n▁ᏧᎳᏑ\t-12.7224\nᏢᎾᏁᎸᎯ\t-12.7232\n▁ᎣᎩᏂᏲ\t-12.7242\nᏍᏓᏱᏕᎸ\t-12.7245\nᏪᏎᎲᎢ\t-12.7245\nᏙᏪᎳᏁ\t-12.7247\n▁ᏕᏓ\t-12.7255\nᏂᎨᏎ\t-12.7271\nᏔᏬᏙ\t-12.728\nᏙᏍᏙ\t-12.7283\n▁ᎠᏂᏅᏫᏍᏗᏍ\t-12.7293\n▁ᎤᏂᎦᎵᏍᏓᏗᏍ\t-12.7294\nᏓᎵᎪᏁ\t-12.7297\n▁ᎤᏩᎨᏫᏒ\t-12.7301\n▁ᏥᎦᏡ\t-12.7307\nᏬᏣᎳ\t-12.7313\nᏣᏄᏬᏍᏓ\t-12.7319\n▁ᏗᏐᏈ\t-12.7328\n▁ᏥᏤᏙ\t-12.7332\nᏂᏴᎮ\t-12.736\nᏂᎦᏯᎷᏗ\t-12.7361\nᏗᏕᏂ\t-12.7366\n▁ᎬᏩᏍᎪᏂ\t-12.7368\nᏍᏓᏩᏗᏎᎢ\t-12.7368\nᎵᎬᏚᎳᏁ\t-12.7368\n▁ᏗᎦᏖ\t-12.7377\nᎦᎾᏄᎪᏫᏍᎦ\t-12.7387\n▁ᏚᎾᎧᎾ\t-12.7394\n▁ᎦᏥᎥ\t-12.7395\nᎬᏩᏛᏛᏗ\t-12.7395\nᎩᎩᎵᏲ\t-12.7403\n▁ᏙᏛᏘᏂ\t-12.7411\nᎬᏋᏁᏗᏱ\t-12.7424\n▁ᎡᏣᏯᏅ\t-12.7425\nᏥᏍᏆᏂᎪᏔᏅ\t-12.7427\n▁ᏫᎫᏩ\t-12.7428\n▁ᏳᏙᎯᏳ\t-12.7429\nᎩᏏᏙᎮ\t-12.7433\nᏥᎸᏍᎬ\t-12.7437\nᎩᎧᎲ\t-12.7446\nᎾᏣᎢᏎᎢ\t-12.7453\n▁ᏕᎭᏘ\t-12.7454\n▁ᎠᏥᎩᎵᏲᎢᏍᏙᏗ\t-12.7458\nᏛᎯᏍᏗᏍᎨ\t-12.7459\nᏙᎸᎯ\t-12.7461\nᏂᎧᏅ\t-12.7462\n▁ᎤᏕᏁ\t-12.7463\n▁ᎤᏂᏲᎢᏎ\t-12.7465\n▁ᎤᎾᏓᎸᏉᏗ\t-12.7471\n▁ᎤᏂᏄᎪᏫᏒ\t-12.7484\nᎵᏥᏙᎲᏍᎩ\t-12.7503\n▁ᏧᏂᏍᏕᎸ\t-12.7504\n▁ᏧᎳᏁᎸ\t-12.7507\nᎵᏰᎡ\t-12.7507\nᏯᏛᏅᎢᏍᏓ\t-12.7508\nᏓᏙᎵᏍᏗᏍᎪᎢ\t-12.7509\n▁ᎢᏥᎪᏩᏛᏗ\t-12.7513\nᎴᏫᏍᏔᏁᎴ\t-12.7515\nᏓᏫᏔᏅ\t-12.7515\nᏣᏛᏁᎭ\t-12.7522\nᏲᏪᎳᏏ\t-12.7523\n▁ᎬᏩᏄᎪᏤ\t-12.7527\n▁ᏥᏂᎬᏁ\t-12.7527\n▁ᏚᏍᏚ\t-12.7529\n▁ᎣᎩᏲᎰᏎ\t-12.753\nre\t-12.7534\n▁ᎤᏯᏪᏐᎸ\t-12.7534\n▁ᎠᏆᏛᏁᎸ\t-12.7544\n▁ᎤᏂᏃᏴ\t-12.7547\n▁ᎾᏆᎵᏂᎬ\t-12.7558\nᎵᏙᎲ\t-12.757\n▁ᎤᏍᎪᎵᏰ\t-12.7575\n▁ᎠᏥᏁᎰ\t-12.758\n▁ᏗᏥᏲ\t-12.7583\n▁ᎤᎾᎦᏌᏯᏍ\t-12.7588\nᏠᏯᏍᏗ\t-12.7588\n▁ᎬᎩᏢ\t-12.7603\n▁ᏧᎧᎵᏨ\t-12.7605\nᎾᏏᏂᏎᎢ\t-12.7607\n▁ᎢᏣᏙᎴᎰᏍ\t-12.761\nᏃᎯᏳᎲ\t-12.7636\nᏓᎢᏅ\t-12.7639\n▁ᎠᏥᎾᏗᏅ\t-12.7645\n▁ᎬᏩᏁᏁ\t-12.7646\nᏄᎪᎢᏍᏗ\t-12.7653\n▁ᎦᏅᎪ\t-12.7654\n▁ᏳᏓᎵ\t-12.7655\nᎾᎵᎪᏁ\t-12.7671\nᏘᏂᏓᏍᏗ\t-12.7672\nᏦᏪᎵᏍ\t-12.7685\nᎯᏎᏗᏱ\t-12.7687\n▁ᎠᎾᏓᏙᎵᏍᏗᏍ\t-12.7691\n▁ᎠᏐᏩ\t-12.77\nᎪᎵᏰᎥᎩ\t-12.7705\nᏓᏛᏁᎲ\t-12.7706\nᏎᎵᏓᏁᎸ\t-12.7707\nᎾᏛᏁᎲᎾ\t-12.7708\nᏫᏛᎲᎭ\t-12.7709\n▁ᏦᏣ\t-12.7714\n▁ᏓᏯᏙᎮ\t-12.7717\n▁ᎤᎪᎵᏰᏍᎨ\t-12.7718\nᏣᎫᏴᎡᏗ\t-12.7719\nᎵᏍᏙᏰᎲ\t-12.7722\nᎾᏓᏘᎾᎥ\t-12.7725\n▁ᏚᏂᏬᏂ\t-12.7729\n▁ᎠᎴᏫᏍᏘᏍ\t-12.773\nᏩᏥᏍᏓ\t-12.7734\n▁ᏣᎫᏴᎡ\t-12.7736\nᎵᏖᎸᏂ\t-12.7737\nᎵᎶᎲᏍᎦ\t-12.7748\n▁ᎠᏕᎶᎰᎯᏍ\t-12.7749\nᎪᎡᎸ\t-12.7749\n▁ᏱᏭᏂᎷ\t-12.775\n▁ᏕᏣᎧᏂᏍ\t-12.775\nᎵᏍᎦᏍᏙᏗᏍᎩ\t-12.776\nᏪᏘᎸᎯ\t-12.7761\nᏓᏳᏂᎶᏒᎯ\t-12.7769\nᏄᏪ\t-12.7775\n▁ᎢᏲᎬ\t-12.7788\n▁ᏓᎾᏕᎰ\t-12.7788\n▁ᎤᎦᏙᎥᎯᏍ\t-12.779\n▁ᎤᏰᏙᎳ\t-12.7799\nᎧᎵᎴ\t-12.7799\n▁ᏓᏋᏂ\t-12.78\n▁ᏓᎵ\t-12.7804\nᏗᏧᎬᎢ\t-12.7805\nᎦᏅᏗᏱ\t-12.7808\n▁ᏣᏓᏙᎵᏍ\t-12.7808\n▁ᎠᏒᏂᎮ\t-12.7812\n▁ᎤᏂᏍᏓᏱ\t-12.7812\nᏚᎸᎲᎩ\t-12.7818\n▁ᏕᎨᎦᏬ\t-12.783\n▁ᏣᏙᎴᎰᎯᏍ\t-12.7836\nᏍᏘᏰᎬ\t-12.7837\n▁ᎯᏟᏏ\t-12.784\nᏚᏒᏁᎢ\t-12.7845\n▁ᎠᏂᏌᏛᎥᏍ\t-12.7852\nᏄᏪᏍᏗ\t-12.7873\nᎧᏲ\t-12.7876\nᎬᏩᏙᏢ\t-12.7886\nᏩᎾᏛᏁᏗ\t-12.789\n▁ᏂᎦᎵᏍ\t-12.7893\n▁ᎣᏥᏁᎢᏍᏗ\t-12.7896\nᏥᏃᏁᏗᏱ\t-12.7901\n▁ᏥᏨᏯᎵᏥᏙᏁ\t-12.7914\n▁ᏚᏍᏕᎸ\t-12.7917\nᏅᏩᏍᏛᏉ\t-12.7926\n▁ᎦᏥᏲᎢᏳᏓᏁ\t-12.7927\n▁ᎨᏥᏐᏅ\t-12.7934\n▁ᎡᏥᎷᏥ\t-12.7937\nᎵᏤᏗᏱ\t-12.7937\nᏰᏎᎢ\t-12.7951\nᏢᏔᏍᏗ\t-12.7957\nᏣᎵᏂᎪᎯᏍᏓ\t-12.7958\n▁ᎠᏂᎩᎵᏲᏥᏙ\t-12.7959\nᏁᎢᏍᏓᏏ\t-12.7966\n▁ᎣᏣᎴᏂ\t-12.7969\n▁ᎠᏓᏅᏖ\t-12.7972\nᎩᏐᏢᎢᏍᏙᏗᏱ\t-12.798\n▁ᎠᏂᏌᏆᎴ\t-12.7982\nᎶᏄᎡ\t-12.7985\n▁ᎭᎴᏂᏙ\t-12.7986\nᏐᏅᏰᎵ\t-12.7991\n▁ᎤᏣᎳ\t-12.7995\nᎸᏉᏗᏍᎪ\t-12.8009\n▁ᏄᎾᎵᏍᏓᏁ\t-12.801\n▁ᏥᏔᏲᏎ\t-12.8012\n▁ᎠᏆᏕᎰ\t-12.8023\nᏍᎦᏅᏤᎸ\t-12.8026\nᏓᏣᎵᏍᏔᏂ\t-12.8037\n▁ᏓᏂᎦᏔᎲᏍ\t-12.8046\nᏍᎫᏕᏒᎩ\t-12.8054\n▁ᏂᏓᎾᏛ\t-12.8059\nᏳᏖᏍ\t-12.8062\nᎲᏍ\t-12.8067\nᏣᏓᏁᎮᏍᏗ\t-12.8076\n▁ᏱᏓᎧᎿᏩᏕ\t-12.8076\n▁ᏗᏥᏚ\t-12.8087\nᎤᎨᏳᎭ\t-12.8089\nᏑᏴᎥᏍ\t-12.8097\nᏄᎪᏨᎭ\t-12.811\n▁ᏕᎦᎫ\t-12.8111\n▁ᏍᎩᎩᎵᏲᎢᏍ\t-12.8112\nᏬᏂᏍᎩ\t-12.8113\nᎳᏗᏍᏛ\t-12.8124\nᏥᏱᎵᏙ\t-12.8128\nᏁᎢᏍᏙᏗᏱ\t-12.8134\nᎵᏌᎳᏗ\t-12.8135\nᏍᎦᏅᎦ\t-12.8152\nᎦᎵᏍᏙᏓ\t-12.8157\nᏂᎭᎷᎩᏍ\t-12.8158\n▁ᎠᏇᏙ\t-12.8159\nᎪᎲᏍᏓ\t-12.8167\n▁ᎢᏥᎾᏰ\t-12.8169\n▁ᏚᎨᎯᏙ\t-12.817\nᎾᏂᏍᎬ\t-12.8173\nᎠᏏᎳᏛ\t-12.8181\n▁ᏘᏂᏣ\t-12.8182\n▁ᏚᎾᏗᏩ\t-12.8189\nᏯᏍᏔᏁ\t-12.819\nᎠᏂᎲᏍᎨᏍᏗ\t-12.8202\nᏥᎦᏔᎰ\t-12.8206\n▁ᎥᎪᎩᏔᏲᏎ\t-12.8208\nᎾᏛᏛᏁᎢ\t-12.8214\nᏉᏌ\t-12.8215\nᏂᏯᎡᎢ\t-12.822\nᎿᎸᏒᎢ\t-12.8222\n▁ᎤᏂᎧᎵᎢᏍ\t-12.8226\nᏓᏙᎵᏍᏓᏁᎵ\t-12.8228\n▁ᏩᎩᏍ\t-12.824\nᏛᏍᏆᎸᎯ\t-12.8241\nᏤᏙᎸᎯ\t-12.8241\nᏛᏅᎢᏍᏓᏁᎴ\t-12.8245\n▁ᎦᏥᏍᏕᎸ\t-12.8253\nᏥᎦᏔᎲᎢ\t-12.8256\n▁ᎤᏂᎶᏄᎮ\t-12.8259\n▁ᏧᎾᏛᎯᏍ\t-12.8259\n▁ᏫᏓᎾᏓ\t-12.8261\n▁ᏥᏚᏲ\t-12.8263\nᏚᏎᎪᎩᏎ\t-12.8265\n▁ᏱᎪᏪ\t-12.8266\n▁ᎦᎵᏬ\t-12.8267\nᏚᎸᏫᏍᏓᏁᎲᎩ\t-12.8271\nᏥᏂᏴ\t-12.8276\nᏎᎪᎩᏏ\t-12.8283\nᏛᏓᏍᏓᏁᎴ\t-12.8288\nᏗᎷᏨ\t-12.8291\nᏚᎪᏔᏅ\t-12.8295\nᏣᎵᏂᎩᏗᏳ\t-12.83\nᏂᎸᏫᏍᏓᏁᎲᎢ\t-12.8303\nᏪᏎᎸ\t-12.8306\nᏙᎯᏳᏅᎩ\t-12.8325\nᏣᎵᏍᎦᏍᏙᏛ\t-12.8339\n▁ᏚᏩᏍᎦ\t-12.8341\nᏘᏃᎴᎢ\t-12.8346\n▁ᎬᏩᏍᏆᏂᎪᏙᏗ\t-12.8346\nᏍᏓᏛᏁᎸ\t-12.8347\n▁ᏍᎩᏰᎸ\t-12.8347\nᏛᏅᎢᏍᏔᎾ\t-12.8354\nᏩᏕᎦ\t-12.8374\nᏕᏯᏙ\t-12.8378\nᏌᏙᏱᏍ\t-12.8384\n▁ᏫᎦᏓᏙᎵᏍ\t-12.8386\nᎵᏬᏥᏕᎾ\t-12.8386\nto\t-12.8398\n▁ᏱᎦᏔᎮ\t-12.8404\nᏥᎳᏅᏓᏕ\t-12.8408\nᏯᏴᎭ\t-12.8411\nᏓᏔᎶᏒ\t-12.8421\n▁ᏣᎦᎸᏍ\t-12.8428\nᏥᎩᎵᏲᎢᏍᏙᏗᏱ\t-12.8433\n▁ᏳᎾᏕ\t-12.844\nen\t-12.8441\nᎸᏉᏗᏍᎬ\t-12.8453\n▁ᏫᏗᎷ\t-12.8478\n▁ᎤᏂᏍᎪᏂ\t-12.8484\n▁ᎤᏟᏫᏛ\t-12.8485\nᎵᎪᏁᎴ\t-12.8486\nᎦᏘᏗᏍᏓᏁᎸ\t-12.8493\nᎶᏕᏍᏗ\t-12.8497\nᏟᏌᏅᎯ\t-12.8503\n▁ᏂᏚᏭᎪᏔ\t-12.8503\n▁ᎦᏁᏟᏴᏍ\t-12.8514\n▁ᏯᏓᏁ\t-12.8527\n▁ᎤᏌᎵᏓ\t-12.8536\n▁ᏥᏥᎷ\t-12.8537\n▁ᏣᎸᏉ\t-12.854\nᎦᏚᎲ\t-12.8541\nᎶᏍᎨ\t-12.8542\n▁ᎢᏓᏓᏁ\t-12.8547\nᏥᏍᏈᏍ\t-12.8548\nᏕᎶᎰᏒ\t-12.855\n▁ᏓᏓᏅ\t-12.8556\nᎦᎴᏙᏗ\t-12.8558\nᎦᏔᎲᏍᎨᏍᏗ\t-12.8561\nᏓᏅᏖᎵᏙᎲᎢ\t-12.8564\n▁ᏥᏂᏆᏘ\t-12.8565\n▁ᎤᏂᎸᏉᏙ\t-12.8567\nᏒᏍᏗᏍᎬ\t-12.8577\n▁ᎠᎵᏍᏆ\t-12.8585\nᏍᎦᎸᎦ\t-12.8601\nᏟᏃᎮᏔᏅ\t-12.8605\n▁ᎠᏂᎾᏰᏍᎨ\t-12.861\nᎣᎯᏍᏗ\t-12.8611\nᏚᏏᏔᏕᎢ\t-12.8611\n▁ᏥᏕᎦᏕᏲ\t-12.8617\nᏂᎷᏆᏗᏅ\t-12.8617\nᏯᏏᏔᏛ\t-12.8618\n▁ᏱᏣᏛᎦᏁ\t-12.8619\nᏠᎰ\t-12.8623\nᏚᎩᏍᏗᏱ\t-12.8625\n▁ᏚᏩᏂ\t-12.8634\nᏥᎷᎦ\t-12.8637\nᏆᏂᏲᏍᏗ\t-12.8651\n▁ᏳᎷᏥ\t-12.866\n▁ᏕᏥᎸᏫᏍᏓ\t-12.8662\nᎦᏘᎴᎬ\t-12.8665\n▁ᏥᏂᏪ\t-12.8666\nᏚᏯᏙᎮᎸ\t-12.8668\nᏓᏃᏴᎵᏍᏛ\t-12.8669\n▁ᎨᏥᏃᎮ\t-12.8671\nᏓᏂᎸᎪ\t-12.8676\nᏥᏳᎪᏓᏁᎰᎢ\t-12.8676\nᏍᎩᏰᎳ\t-12.8685\nᏕᎶᏆ\t-12.869\n▁ᎤᏂᏍᏆᏗᏍ\t-12.87\nᏥᏯᏚᏓᎳ\t-12.8704\n▁ᎠᏆᏕᎶᏆ\t-12.8704\nᎦᏘᏅᏍᏗ\t-12.8707\nᏙᎴᎰᎯ\t-12.872\n▁ᏅᏗᎦᎵ\t-12.8721\nᏓᏄᏴᏛ\t-12.8724\nᎩᏅᏒᎯ\t-12.8725\n▁ᎦᏅᏓᏗ\t-12.8728\nᏓᎦᏓᏂᎸᎪ\t-12.8732\nᏂᏁᎦᎸ\t-12.8735\nᎦᏐᎠᏒ\t-12.874\nᎦᏌᏯᏍᏔᏅ\t-12.8746\n▁ᏓᎦᎸᏍ\t-12.8755\n▁ᎠᏆᏛᎪ\t-12.8756\nᏠᎯᏍᏔᏅ\t-12.8757\nᏬᏁᏗᏍᎨᏍᏗ\t-12.876\n▁ᏓᎦᏥᏁ\t-12.877\nᏅᏤ\t-12.8783\nᏂᎨᏨᎿᏕ\t-12.8791\nᏍᏛᏗᏍᏙᏗ\t-12.8791\nᏄᎪᏫᏍᏗ\t-12.8797\n▁ᏱᏕᏥ\t-12.8807\n▁ᎬᏩᏔᏲᏎ\t-12.8812\nᎵᏦᏔᏅᎩ\t-12.8814\n▁ᏣᎦᏓᏂᎸ\t-12.8819\n▁ᏱᎦᎵᏍ\t-12.882\n▁ᏱᏄᏅ\t-12.8824\nᏤᏗᏱ\t-12.8827\nᏍᏓᏩᏙᎸᎯ\t-12.8833\n▁ᏓᏣᏓᏅ\t-12.8836\nᏕᏦᏁ\t-12.8837\nᏖᎳᏗᏍᏗ\t-12.8841\n▁ᎥᎨᏥ\t-12.8846\nᏂᏯᎥᎢ\t-12.8846\nᎭᏄᏮ\t-12.8849\n▁ᎲᏲ\t-12.8858\nᏛᏔᏂᎸ\t-12.8861\nᎧᎿᏩᏕᎬ\t-12.8866\n▁ᎤᎾᎵᏍᎦᏍᏙᏔ\t-12.887\n▁ᎢᏗᏩᏛ\t-12.8872\nᏰᎶᎸ\t-12.888\nᏥᎩᎵᏲᎢᏍᏗᏍᎩ\t-12.8882\n▁ᏱᎦᎷᏤ\t-12.8905\nᎾᏛᏁᎢ\t-12.8907\nᎬᏚᎢᏍᏓ\t-12.8908\nᏔᏛᎦ\t-12.8914\nᎾᎯᏳ\t-12.8922\nᏤᎸᏍᎩ\t-12.8938\nᏣᎪᏩᏛᏗ\t-12.8939\n▁ᎢᏨᏯᎦᏔ\t-12.894\n▁ᎠᏂᎳᎨ\t-12.8941\nᏣᎪᎳ\t-12.8943\nᎢᏐᏃ\t-12.8944\nᎵᏥᏙᏁ\t-12.8946\nᏗᏥᏍᏕᎸᏗ\t-12.8947\nᏓᎴᎲᏍᎪᎢ\t-12.8948\nᏓᏴᎳᏔ\t-12.8949\n▁ᎤᏁᏢᏔᏅ\t-12.8955\nᏚᏓᎴᏍᏗ\t-12.8959\n▁ᎢᏣᏓᏁ\t-12.8961\nᏣᏛᎿᏗ\t-12.8965\nᎴᏅᏙᏗ\t-12.8967\nᏕᎨᎦᎸᎥ\t-12.8971\nᏓᏙᎵᏍᏓᏁᏗᏱ\t-12.8975\n▁ᎤᏗᎦᎵᏍᏙ\t-12.8975\nᎵᎪᏁᏗᏱ\t-12.8978\n▁ᏕᎫᎪᏓ\t-12.898\nᏃᎯᏳᏅ\t-12.8982\n▁ᏚᏂᏯᎸ\t-12.8985\n▁ᏣᎧᎵᏨ\t-12.8997\nᎸᏉᏔᏅ\t-12.8997\nᏍᏓᏩᏗᏙᎮ\t-12.8998\nᎵᏔᏗ\t-12.9\nᎫᏴᏓᏏ\t-12.9003\nᎩᎵᏲᎢᏍ\t-12.9004\nᎯᏌᎹ\t-12.9013\n▁ᎠᏓᎸᏉᏗ\t-12.9013\nᏙᎵᏥ\t-12.9013\n▁ᏚᏂᏩᏛ\t-12.9014\nᎤᏄᎪᏤᏃ\t-12.9018\n▁ᎤᏂᎾᎷ\t-12.9018\n▁ᏍᎩᏁᎢᏍ\t-12.902\n▁ᎣᏥᏔᏲᎯ\t-12.9023\nᏍᎬᏓᎨ\t-12.903\nᎵᎪᏁᎸ\t-12.9032\nᏍᏔᏴᎲᏍᎩ\t-12.9035\n▁ᎧᏁᏤ\t-12.9036\n▁ᏚᎨᏩ\t-12.9037\n▁ᏱᏂᏴ\t-12.904\nᏍᏚᏗᏱ\t-12.904\nᏠᏱᎮᏍᏗ\t-12.9044\n▁ᏥᎾᏌ\t-12.9044\n▁ᏗᏓᎴᎲᏍ\t-12.9047\nᎷᎬᏒ\t-12.9055\nᏳᏫᏯ\t-12.9057\n▁ᎭᏗᏔᏍ\t-12.9069\n▁ᎠᏍᏆᏂᎪ\t-12.9069\n▁ᏚᏠ\t-12.9071\nᎯᏙᎸᎢ\t-12.9072\nᎳᏫᎢᏍᏗᏱ\t-12.9074\nᏌᏙᏴ\t-12.9078\nᏏᎳᏛᎥᎦ\t-12.9079\n▁ᏥᎦᏖᏃ\t-12.9088\n▁ᏍᎩᎪᏩᏘᏍ\t-12.9095\nᏙᎩᏯᏍ\t-12.9102\n▁ᏘᎧᎿᏩ\t-12.9103\n▁ᎨᏍᎩᏐᏢ\t-12.9103\n▁ᎢᏣᏚᏓ\t-12.9105\nᏂᎳᎨᏴᎢ\t-12.9109\n▁ᏱᏙᎨᏣ\t-12.9117\n▁ᏗᏥᎧᎿᏩ\t-12.9118\nᏗᏤᎵᏎ\t-12.9121\nᎵᏴᏍᎪᏳ\t-12.9121\n▁ᏂᏓᏍᎦ\t-12.9128\nᎤᎾᏨᏎᎢ\t-12.913\n▁ᏧᏲᏍᏙ\t-12.9142\n▁ᏕᏥᎪᏩ\t-12.9144\nᏃᎯᏳᎲᏍᎪ\t-12.9148\nᎦᏓᎢᏅᏒᎩ\t-12.9151\n▁ᏗᏍᏆᏂᎪ\t-12.9159\nᏙᎾᎥᎩ\t-12.916\n▁ᎢᏗᏍᎦᎾ\t-12.9162\nᏙᏢᏒ\t-12.9166\n▁ᎠᏆᏗᏍᎦ\t-12.9174\nᏛᎴᏫᏍᏔ\t-12.92\n▁ᏧᏂᏲᎯᏍᏗ\t-12.9205\nᎨᏅᏗᏍᏗ\t-12.9206\n▁ᏧᎾᏄᎪᏫᏍᏗ\t-12.9208\nᏪᏛᏨ\t-12.9226\nᏂᏴᎸᎩ\t-12.9231\n▁ᎠᏂᎾᏏᏂ\t-12.9242\nᏴᏔᏂ\t-12.9253\n▁ᏥᎾᎬ\t-12.9253\nᏌᎳᏗᏍᎨᏍᏗ\t-12.9261\nᎧᏲᏙ\t-12.9263\n▁ᏯᏋ\t-12.9265\n▁ᎠᏰᎮ\t-12.9267\n▁ᏚᏂᎨᏳ\t-12.9279\n▁ᎯᏂᏓ\t-12.9282\n▁ᎢᏣᏟᏂᎬ\t-12.9285\nᎪᏑᎴ\t-12.9288\nᎦᏰᏧ\t-12.9288\nᏩᏂᎦᎶ\t-12.9289\n▁ᎤᏂᏂᎬ\t-12.929\n▁ᎡᏣᏓᏙᎵᏍᏓ\t-12.9292\n▁ᏧᎾᏂᏏ\t-12.9296\n▁ᎭᎵᏍᎪᎸᏓ\t-12.9301\n▁ᎤᏓᏅᏓᏗ\t-12.9305\n▁ᎤᏰᎢᎵ\t-12.9312\nᎵᏍᏘᏍᎬ\t-12.9318\nᎷᏴ\t-12.9321\nᏥᎶᏒᏍᏓ\t-12.9324\nᎩᏯᏅᎡᎸᎩ\t-12.9324\nᎦᏑᏴᏛ\t-12.9332\n▁ᏓᎦᏙᎴᎣ\t-12.9341\n▁ᎨᎩᏃᎮ\t-12.9346\nᏃᎯᎵᏙ\t-12.9351\nᏓᎴᎲᏍᎬᎩ\t-12.9352\nᏠᎯᏍᏛ\t-12.9371\n▁ᏓᎾᏠ\t-12.9374\n▁ᎠᎾᏓᏏᏂ\t-12.9392\nᏏᎾᎯ\t-12.9397\nᏬᏪᎳ\t-12.9397\n▁ᎠᏉᏚ\t-12.9401\n▁ᏓᏂᏰ\t-12.9401\nᎬᏩᎵᏖᎸ\t-12.9401\nᏂᎳᎨᏯᏛ\t-12.9406\n▁ᏫᏂᎦᎵᏍ\t-12.9407\nᏆᏅᏓᏛ\t-12.9411\nᎩᎵᏲᎢᏍᏗᏍᎬ\t-12.9412\n▁ᎢᎩᎪᏩᏛ\t-12.9419\nᏚᏬ\t-12.9428\n▁ᏧᎾᏓᏲ\t-12.9431\nᎤᎶᏎᎢ\t-12.9446\nᏕᏯᏔᏁᎮᏍᏗ\t-12.9456\nᏅᏓᏕ\t-12.9459\nᎷᎸᏁᎴ\t-12.9466\nᏥᎷᏥᏏ\t-12.9467\n▁ᏭᏃᎮ\t-12.9469\n▁ᎤᏃᏁᏗ\t-12.9472\n▁ᎢᎦᏚᎸ\t-12.9477\n▁ᏗᏍᏆᏓᏂᎸ\t-12.9478\n▁ᎢᎬᏩᎵᏍ\t-12.9481\nᏯᏙᎯᎲ\t-12.9484\nar\t-12.9486\nᎪᎳᏗᏴ\t-12.9489\nos\t-12.949\n▁ᏓᎦᎾᏬᏍ\t-12.9491\nᏟᏐᏗ\t-12.9491\nᎧᎵᏍᏓᏗᏍ\t-12.9501\nᎤᏙᎯᏳᎯᏍᎪ\t-12.9502\nᏁᏉᏤ\t-12.9503\nᎾᏙᎳᏍᏗᏍ\t-12.9504\nᎧᏁᎮᏍᏗ\t-12.9507\n▁ᎤᎾᎵᏍᏓᏴᏂ\t-12.9508\n▁ᏱᏥᎵᏓᏍ\t-12.9509\n▁ᎠᎦᏬ\t-12.9514\n▁ᏫᏚᏄ\t-12.9517\nᎪᏙᎯᏍᏔᏂ\t-12.952\nᎦᎸᏍᏙᏗᏱ\t-12.9521\nᎾᏡᏗᏍᎩ\t-12.9521\nᎪᏁᎶ\t-12.9527\n▁ᏥᏂᏣ\t-12.9528\n▁ᏭᏩᎫ\t-12.953\nᏓᏱᎮᏍᏗ\t-12.9536\n▁ᏳᎦᏔ\t-12.9537\nᎪᏢᏅᎯ\t-12.9538\nᏬᏢᏁ\t-12.9543\n▁ᎠᏆᎵᏥᏙ\t-12.9545\nᏘᎸᏉᏙ\t-12.955\nᎦᏙᏍᏛ\t-12.955\nᏐᏢᏙᏗᏱ\t-12.9554\n▁ᎤᏕᏘᏴ\t-12.9556\n▁ᎤᏍᏓᏩᏛ\t-12.9558\nᏳᏍᏈᏛ\t-12.9559\nᎧᏂᏍᎨ\t-12.9559\n▁ᎠᎵᏃᎮᏗᏍᎨ\t-12.956\n▁ᏓᏍᎦᎢ\t-12.9564\n▁ᏄᏰᎸ\t-12.9566\n▁ᎠᏂᎪᏩᏘᏍ\t-12.9567\n▁ᏱᏗᎫᎪ\t-12.9567\n▁ᎯᏯᏒᏂ\t-12.9569\n▁ᏣᎧᏔᎮ\t-12.9571\nᏜᏅᏓᏗᏍᎨ\t-12.9575\nᎵᏂᎪᏎᎢ\t-12.9577\nᎭᏓᏅᏖᏍᎬᎢ\t-12.9581\nᏁᎢᏍᏗᏍᎨᏍᏗ\t-12.9582\n▁ᎤᏓᏙᎵᏍᏙᏗ\t-12.9586\nᏔᎶᏒ\t-12.9588\nᎵᏗᏒᏂᎮ\t-12.9594\nᏗᏔᎲ\t-12.9602\n▁ᎬᎩᎦᎵᏍᏓᏗᏍ\t-12.9604\nᏚᏕᎢ\t-12.9606\nᏓᎵᏁᎯᏕᏗ\t-12.961\nᎵᏍᏙᏓ\t-12.961\n▁ᎠᎩᎷᎯᏍᏗ\t-12.9613\nᎩᏍᎦᏅᏤ\t-12.9614\nᏂᏑᏪᏎᎸ\t-12.9615\n▁ᎠᏘᏲ\t-12.9618\nᎬᏁᎮᏍᏗ\t-12.9619\n▁ᏗᎨᏥᏲ\t-12.9622\n▁ᎠᏂᏟᏌ\t-12.9622\nᏁᏍᎩᎸᏗ\t-12.9628\nᏟᏃᎮᏍᎬ\t-12.9629\nᏏᎳᏛᏁᎴ\t-12.9632\n▁ᎢᏯᏂᎵᏍ\t-12.9633\nᏂᎦᏘᎸᏒᎩ\t-12.9636\nᎤᏠᎠᏎ\t-12.9641\nᎵᎮᎵᎩ\t-12.9642\n▁ᎢᏨᎬᏍᎪᎸ\t-12.9643\n▁ᎠᏂᎦᎾᎦ\t-12.9647\n▁ᏚᎾᏕᏲ\t-12.9647\nᏫᏞᏫᏒ\t-12.9654\nᏒᏂᏉ\t-12.9658\n▁ᏂᏍᏆᏛ\t-12.9663\nᏓᏅᎡᎴ\t-12.9671\nᎵᏥᏙᏂᏙᎮ\t-12.9675\nᎳᏐᏫ\t-12.9678\nᏛᏅᏓᎩ\t-12.9679\nᏣᏖᏍᏗ\t-12.969\nᎾᏂᎩᏍᎬ\t-12.9697\n▁ᎤᏃᏙ\t-12.9703\nᎶᏁᏔᏅ\t-12.9707\n▁ᏥᏯᏘᏅ\t-12.9708\nᏔᎶᏎ\t-12.9715\n▁ᎢᏰᏨᏁ\t-12.9717\n▁ᏗᏥᎸᏫᏍᏓᏁ\t-12.9718\n▁ᎢᎬᏆ\t-12.9721\nᏎᎪᎩᏎ\t-12.9721\nᎵᏙᎩᏯᏍ\t-12.9721\n▁ᏁᏪᏎ\t-12.9727\n▁ᏭᏂᏌᏙ\t-12.9731\n▁ᏳᏂᏆᏘ\t-12.9733\n▁ᎦᏥᏯᏓᏙᎵᏍᏓᏁ\t-12.9734\nᎤᎴᏅ\t-12.9739\nᏛᏗᏕᎨ\t-12.9741\n▁ᎬᏩᎷᏤ\t-12.9747\nᎾᎵᏔᏗᏅ\t-12.9754\nᎾᏚᎪᏓᏁᏗ\t-12.9757\n▁ᏥᎦᏂᏱᏍ\t-12.9768\n▁ᎠᏁᎸᏗᏍ\t-12.977\nᏍᏆᏂᎪᏍᎨᎢ\t-12.9772\nᎾᎵᏍᏓᏁᎯ\t-12.9777\nᎫᎪᏓ\t-12.9778\n▁ᏭᏪᎧ\t-12.9781\n▁ᎠᏂᏍᎫᏕᏍ\t-12.9782\n▁ᏗᎤᎾᏨ\t-12.9785\n▁ᎠᎾᏗᏔᏍ\t-12.9788\n▁ᎠᏓᏅᏖᏙ\t-12.9789\nᏥᏔᏲᏎᎭ\t-12.9789\nᏦᎭᏴ\t-12.979\nᎦᏎᏍᏔ\t-12.9803\nᎩᏁᏤᏗᏱ\t-12.9805\nᏙᏍᏛᎢ\t-12.9808\n▁ᎯᏁᎢᏍᏗ\t-12.9808\nᎶᎻ\t-12.9817\n▁ᏍᎩᏰᎸᎾ\t-12.9819\n▁ᎠᎾᏓᏛᎥᏍ\t-12.9819\n▁ᏭᎾᎵᏱᎶ\t-12.9821\n▁ᏳᏞ\t-12.9823\nᏩᏗᏙᎸᎯ\t-12.9836\n▁ᎠᎫᏱᏍ\t-12.9846\nᎵᏎᎮᏍᏗ\t-12.9847\nᏍᎫᏕ\t-12.9848\nᎤᏂᎩᏛ\t-12.9849\n▁ᎫᏩᎾᏓ\t-12.9849\nᏎᎵᏙᎮ\t-12.9851\nᏗᎧᏁᏤ\t-12.986\nᎵᏘᎡ\t-12.9866\nᎶᏔᏂ\t-12.9866\nᏥᎶᏁᎥ\t-12.9871\nᏗᏩᏍᎬ\t-12.9873\n▁ᎬᏩᏘᎿᏫᏛ\t-12.9875\n▁ᏚᏔᎷᎩ\t-12.9879\nᏂᏆᏘᎴᎢ\t-12.988\n▁ᏭᏂᏍᏆ\t-12.9881\nᏍᏕᎵᏍᎨ\t-12.9881\n▁ᎤᎾᏕᏯ\t-12.9881\nᎵᎮᎵᏍᏗ\t-12.9884\nᏯᏓᏙᎵᏍᏓᏁ\t-12.9885\n▁ᏥᎦᏙᎥᎯᏍᏗ\t-12.9885\nᏕᏣᏓ\t-12.989\nᏍᎫᏓᏛ\t-12.9893\n▁ᏮᏓᏣᏘ\t-12.9897\n▁ᎢᏍᏓᏓᏅ\t-12.9901\nᏂᏣᏍᏛᎾ\t-12.9901\n▁ᏧᏯᏪ\t-12.9907\n▁ᏙᏓᎨᏥ\t-12.9912\n▁ᏍᏆᎫᏴ\t-12.9913\nᎬᏩᎶ\t-12.9915\nᎪᏓᏁᎸ\t-12.9927\n▁ᏓᏳᎾᏂᎩ\t-12.9928\n▁ᏣᎵᏂᎪᎯᏍᏗ\t-12.9928\nᎵᏃᎮᏙᏗ\t-12.993\nᎩᏯᏛᏁᎴ\t-12.9931\n▁ᎢᏣᎵᏍ\t-12.9934\n▁ᎩᏄ\t-12.994\n▁ᏚᎾᏚᏓ\t-12.9945\nᏓᏬᏍ\t-12.9951\n▁ᏧᏒᎦ\t-12.9955\n▁ᎤᎾᎵᏍᎪᎸ\t-12.9957\nᎵᏥᏆ\t-12.9957\n▁ᎠᏲᎯᏍᏗᏍ\t-12.996\nᏣᏘᏃᎦ\t-12.9966\n▁ᎨᎦᏓᏅᏖ\t-12.9966\nᏔᏩᏕᎩ\t-12.9968\nᎪᏓᏁᎭ\t-12.9971\nᏑᎦᏢ\t-12.9972\nᏄᎪᏫᏍᎪᎢ\t-12.9976\nᏰᎸᏍᎨᏍᏗ\t-12.9977\nᏯᎸᏅ\t-12.998\nᏴᎯᎰᎢ\t-12.9984\nᏝᏍᎨ\t-12.9987\nᎴᏴᏙᏗ\t-12.9995\nᏣᏗᏔᎯ\t-12.9995\n▁ᎤᎵᏍᏔ\t-12.9998\n▁ᏗᏣᏓᏙᏢᎾᏁ\t-13.0002\n▁ᏣᏁᏢᏔᏅ\t-13.0003\nᏥᏪᏍᏗ\t-13.0007\nᎪᏩᏛᏙ\t-13.0009\nᏓᎴᏛ\t-13.001\nᏓᎾᏓᏂᎸᎪ\t-13.001\nᎩᏪᏎᎭ\t-13.001\n▁ᏥᎦᏴᎵ\t-13.0011\nᏥᏲᎢᏎᎸᎭ\t-13.0017\nᎶᏔᏁ\t-13.0018\n▁ᏫᏚᏂᏴ\t-13.0023\n▁ᎤᎾᎦᏔᏅ\t-13.0028\nᏕᏋᎯᏍ\t-13.003\n▁ᏫᏕᎨᎦ\t-13.0032\n▁ᏕᎦᏃᏴ\t-13.0033\nᎱᏍᏕᏎ\t-13.0035\n▁ᏓᏜᏍ\t-13.0039\nᏂᏕᎦᏪᏎᎰ\t-13.0039\nᏛᎥᎦ\t-13.0043\nᏩᎾᎢ\t-13.0043\nᎵᏍᏗᏍᎨ\t-13.0048\nᎯᏯᏍᎬ\t-13.0048\n▁ᏴᏗᏓᎴ\t-13.005\nᏓᏥᎷᏥ\t-13.0052\n▁ᎤᏔᏍᎩ\t-13.0055\n▁ᏚᎷᎸ\t-13.0056\n▁ᎬᎩᎨᏳᎯ\t-13.0057\nᎶᎨᏒ\t-13.0059\nᏂᏍᎬ\t-13.0066\nᎤᎸᏛ\t-13.0073\nᏲᏏᏍᎩ\t-13.0073\n▁ᏥᎥᎡ\t-13.0075\nᏄᎪᏫᏍᎨᎢ\t-13.0077\nᏛᏣᏂ\t-13.0078\nᏓᏅᎡᎸᎩ\t-13.0081\nᏜ\t-13.009\n▁ᎠᎬᏕ\t-13.0092\nᏲᎰᎢ\t-13.0093\nᏠᏒᎩ\t-13.0099\nᎧᏅᏑᎸᎢ\t-13.0099\n▁ᏱᏥᎨᏳ\t-13.01\nᏓᏂᎸᏨ\t-13.0102\n▁ᏕᎩᏲ\t-13.0103\n▁ᎤᎨᎯᏙ\t-13.0109\n▁ᏱᏚᎸᏫᏍᏓ\t-13.0111\nᏂᎦᏔᎲᏍᎩ\t-13.0113\n▁ᏍᏆᎦᏎ\t-13.0114\nᏂᏗᏍᏗᏱ\t-13.0114\nᏟᏍᏛᎢ\t-13.0116\nᏅᏩᏍᏙᎢ\t-13.0116\nᏓᎦᎵᏍᏔᏂ\t-13.0117\nᎬᏩᏓ\t-13.0123\nᏍᎦᎢᎲ\t-13.0124\n▁ᏄᎨᏳ\t-13.0125\nᏣᎵᏥᏙᎲᏍᎦ\t-13.0129\nᎬᏩᏍᏗᏉ\t-13.0133\nᎫᏰ\t-13.0133\nᎵᏂᎪᎯᏍᏗᏍᎨ\t-13.0134\nᏍᎦᏍᏙᏗᏍᎩ\t-13.0136\n▁ᎤᎾᏠ\t-13.014\nᏪᎵᏎᎴᎢ\t-13.0141\n▁ᏣᏓᎨᏳ\t-13.0141\nᏍᏓᏛᏓᏍᏓ\t-13.0147\n▁ᎤᏂᏅᎪ\t-13.0158\n▁ᏱᎬᏩᎾᏛ\t-13.0161\n▁ᏫᏚᎧ\t-13.0161\nti\t-13.0162\n▁ᏥᏥᏁᏤ\t-13.0163\nᏲᏌ\t-13.0163\n▁ᎢᏳᎾᎵᏍᏔ\t-13.0164\nita\t-13.0164\nᏪᏙᎥᎦ\t-13.0165\nᏖᏉᎶ\t-13.0168\nᎵᎪᏁᎯ\t-13.0173\nᎬᏩᎶᏓ\t-13.0175\n▁ᎢᏣᏗᎦᎴᏲ\t-13.018\nᎪᏄᎶᎯᏍᏗ\t-13.0183\n▁ᎬᏍᏗᏰ\t-13.0188\n▁ᏓᏨᏰ\t-13.0189\nᎨᎦᏓᎢᏅᏒᎩ\t-13.0195\nᎬᎩᎪᎵᏰᎥ\t-13.0198\n▁ᎬᏩᏄᏬᎯᏍ\t-13.0203\n▁ᎠᎩᏩᏛ\t-13.0204\nᎾᏁᎶᏛᎢ\t-13.0205\nᎵᎬᎾ\t-13.0206\n▁ᎦᎵᏥᏙᏂᏙ\t-13.0208\n▁ᏓᏆᏙ\t-13.021\n▁ᏧᎸᏉᏙ\t-13.0217\nᏓᎵᏁᎯᏕᎮᏍᏗ\t-13.022\nᏥᎤᏍᏕᏎ\t-13.0225\n▁ᎢᏓᏓᏅᏖᏍ\t-13.0225\nᏩᏍᎬᎩ\t-13.0233\nᏯᏒᎦᎶᏔ\t-13.0233\n▁ᎬᏇᎯᏍᏗ\t-13.0237\nᏔᎳᎧ\t-13.024\nᏍᏕᎸᏙᏗ\t-13.0242\n▁ᏯᎵᏍᏓᏴ\t-13.0244\n▁ᏥᏦᎯᏳ\t-13.0245\nᏥᎾᏰᏍᎩ\t-13.0249\n▁ᎤᏍᏆᏕ\t-13.0253\nᎾᏗᏔᎮᎢ\t-13.0256\nᏃᎮᎮᎭ\t-13.0258\nᎾᏂᎩᏍᎨ\t-13.0259\n▁ᏫᏄᏂᏪ\t-13.0259\n▁ᎦᎨᏣᏕᎶ\t-13.0269\nᎩᎵᏲᎢᏍᏗᏍᎨᏍᏗ\t-13.027\n▁ᎤᎵᏱᎶ\t-13.027\n▁ᏚᎦᏙᏍ\t-13.0274\nᏍᎩᏍᏕᎸᎡᎸ\t-13.0274\n▁ᏂᏚᏲ\t-13.0275\nᏁᏓᏍᏗ\t-13.0276\nᏁᏦᏅ\t-13.0276\nᏓᏡᏩᏍᏗᏕ\t-13.0282\n▁ᎢᏗᎦᏲ\t-13.0283\n▁ᏗᏂᏍᎪᏂ\t-13.0284\n▁ᏱᏚᏂᎶ\t-13.0293\n▁ᎠᏂᏬᏂᏍᎨᏍ\t-13.0294\n▁ᏣᏍᏆᏂᎪᏕ\t-13.0295\nᏒᏂᏍᏗ\t-13.0298\nᏂᏣᏛᏅ\t-13.0299\n▁ᎤᏑᏯ\t-13.0311\n▁ᏚᏄᎪ\t-13.0315\nᎵᏖᎸᎮ\t-13.0319\n▁ᎡᏥᏃᎮ\t-13.0319\nᏂᎨᎬᏁᎭ\t-13.0323\n▁ᎤᎾᏓᏎᎪᎩ\t-13.0324\n▁ᏥᏂᏣᏛ\t-13.0324\n▁ᎠᏆᎵᏍᏚ\t-13.0326\n▁ᎠᎾᏚᏓ\t-13.0328\nᏂᏨᏛ\t-13.0329\n▁ᎤᏄᎪᏫᏒ\t-13.0331\nᏓᎩᏯᏪ\t-13.0333\n▁ᎢᏣᎵᏍᎦᏍᏙ\t-13.0337\n▁ᏕᏥᎦᎿᏩᏕ\t-13.0338\nᏒᏍᏓᏁᎸ\t-13.0341\nil\t-13.0341\nᏲᏨᎯ\t-13.0343\nᏁᎵᏒ\t-13.0344\n▁ᎤᏓᏌᎧ\t-13.0347\n▁ᏯᏍᎦᎢ\t-13.0349\nᏔᎳᏬᎯᏍ\t-13.0354\n▁ᎯᏍᏕᎸ\t-13.0355\nᏩᏁᎵ\t-13.0355\nᏥᏍᏆᏛ\t-13.0356\nᏣᎵᏃᎮᏗ\t-13.0358\n▁ᏕᏥᏍᏚ\t-13.0361\nᏌᏓᏗᏍᏗᏱ\t-13.0363\n▁ᏗᎬᏆ\t-13.0366\n▁ᏣᏛᏍ\t-13.0368\n▁ᎡᏣᏡ\t-13.0374\n▁ᎬᎦᏔ\t-13.0375\n▁ᎤᏕᏔ\t-13.038\n▁ᎤᎾᏓᏛᏛ\t-13.0381\n▁ᎤᎦᎿ\t-13.0382\nᏍᏆᏕᎴᎢ\t-13.0385\n▁ᎢᏣᎵᏍᎪᎸᏔ\t-13.0386\nᏯᎫᏴᏗ\t-13.0387\nᏣᏪᏐᎸᏍᏔ\t-13.0387\n▁ᎠᎵᏱᎶ\t-13.0388\nᎾᏕᎶᏆᏍ\t-13.0389\nᏲᏓᏝ\t-13.0394\n▁ᎠᎾᎵᏍᏕ\t-13.0397\n▁ᏱᏗᏣᏓᏂᎸ\t-13.0398\n▁ᎥᎬᏩᏛ\t-13.0398\nᏥᎶᏄᎮ\t-13.0401\n▁ᎤᎪᏄᎶ\t-13.0402\nᏯᏫᏍᎩ\t-13.0405\n▁ᎨᏥᏍᏛᏗ\t-13.0406\nᎬᏩᏓᏙᎵᏍᏓᏁ\t-13.0409\nᏍᏓᏩᏕ\t-13.0411\n▁ᏕᏣᏓᏲ\t-13.0411\n▁ᎠᏕᎶᎰ\t-13.0414\n▁ᎢᏣᎵᏩᏛᎡ\t-13.0421\n▁ᏳᏭ\t-13.0427\n▁ᏂᏕᎤᏩ\t-13.0428\nᏅᏍᎨᏂ\t-13.0432\n▁ᎠᎩᏲᏍᏙᏓ\t-13.0433\n▁ᎢᏥᎧᎵᎢᏍ\t-13.0434\n▁ᎢᎩᏴᏁ\t-13.0435\nᏙᏑᎴ\t-13.0439\nᏂᏲᎱᎯᏍᏗ\t-13.0442\n▁ᏚᏲᎮ\t-13.0447\n▁ᏱᏓᎾᎵ\t-13.0451\n▁ᎬᏩᏂᎷᏤ\t-13.0451\n▁ᏥᎾᏋ\t-13.0459\nᏁᎰᎾ\t-13.0459\nᏣᏓᏄᏴᏗ\t-13.046\nᏚᎴᏔᏁᎢ\t-13.0462\nᎾᏏᏛᏂ\t-13.0465\nᏪᏐᏨ\t-13.0467\nᏆᏟᏃᎮ\t-13.0467\nᏗᎦᏲᏥᏁ\t-13.0468\n▁ᏚᏩᏅ\t-13.0469\nᏨᎨᏫᏍ\t-13.0469\nᏲᎵᎮᏍᏗ\t-13.0469\nᏅᎦᎸᏙᏗᏱ\t-13.0471\nᎴᎯᏌ\t-13.0476\nᏕᎯᎮᏍᏗ\t-13.0478\nᏚᏓᏕᏫ\t-13.0478\n▁ᎨᏯᏔ\t-13.0478\n▁ᎠᏁᏙ\t-13.0479\nᏄᎳᏍᏓᏁ\t-13.048\n▁ᏄᎫᏴ\t-13.0481\nᏑᏴ\t-13.0483\nᏙᎯᏗᏍᏗ\t-13.0483\n▁ᏥᏄᏪ\t-13.0484\nᎵᎮᎵᏤᏗᏱ\t-13.049\nᏓᎴᎾ\t-13.049\nᏥᎤᏍᏕᏎᎴ\t-13.0494\nᏨᏁᎵ\t-13.05\n▁ᎢᏥᎧᎵ\t-13.0501\n▁ᏗᏍᏔᏲ\t-13.0502\nᏬᏁᏗᎭ\t-13.0502\nᏫᏎᎲᎢ\t-13.0504\nᏚᏂᏩᏛᎮ\t-13.0505\nᎵᎬᏚ\t-13.0506\nᏚᏒᏂᎴ\t-13.0508\n▁ᎢᏤᎳᏗᏍᏗ\t-13.0508\nᏙᎵᏍᏔᏂ\t-13.051\nᎦᏚᎵᏍᎬ\t-13.0512\n▁ᎢᏥᏍᏓᏩᏗ\t-13.0514\n▁ᏥᎾᏂᏪ\t-13.0515\nᎦᏘᎸᏍᏗ\t-13.0518\n▁ᏅᏓᏳᎵᏍᏙ\t-13.0521\nᏅᎦᎸᏓ\t-13.0522\nᏌᏓᏛᎩ\t-13.0525\n▁ᎥᏆᏒᎦᎶ\t-13.0527\n▁ᏧᎾᏗᏔᏍ\t-13.0528\nᎦᏑᏯᎩᏍᏗ\t-13.0529\n▁ᎤᏓᏃᏴᎵ\t-13.0534\n▁ᎱᏚ\t-13.0537\nᏨᏯᏍᏗ\t-13.0538\nᏂᎷᎨᏍᏗ\t-13.0539\n▁ᏍᏆᏛᏅᎢᏍᏓ\t-13.0539\nᏣᎵᏍᎪᎸᏗᏍᎬᎢ\t-13.054\nᏬᎵᏤᎢ\t-13.054\nᏯᏂᏍᎪ\t-13.0542\nᎨᏣᎵᏍᏚ\t-13.0543\nᏖᎸᏅᎩ\t-13.0545\nᏄᏪᏎᎴᎢ\t-13.0547\n▁ᏦᏥᎨ\t-13.0549\n▁ᎪᎯᏳᏙ\t-13.0551\nᏍᏕᏓᎵᏴᏍᎬ\t-13.0552\n▁ᎤᏂᎨᎲ\t-13.0553\nᏃᎯᏴᎯ\t-13.0554\n▁ᎠᏂᎬᎭᎷᏯᏍ\t-13.0555\nᎪᎳᏅ\t-13.0556\n▁ᎤᏍᏆᏙ\t-13.0556\n▁ᎠᏆᎵᏃᎮ\t-13.0558\nᎳᏛᎥᏍᎬ\t-13.056\nᏲᎲᎦ\t-13.0562\nᏈᏗᏍᎩ\t-13.0564\nᎤᏪᎳᏗᏍᏗ\t-13.0566\n▁ᏭᏅᏍ\t-13.0567\nᎦᏘᏗᏍᏔᏁ\t-13.0568\nᏱᎵᏙᎲ\t-13.057\nᏐᏈᎸᎦ\t-13.057\nᏚᏂᎰᏁ\t-13.0571\nᎨᎦᏗ\t-13.0572\nᏥᏃᏁᎭ\t-13.0574\n▁ᎢᏍᏗᏴ\t-13.0579\n▁ᏣᎾᏄᎪᏫᏎ\t-13.0579\nᏆᎵᏍᏓᏁ\t-13.058\n▁ᏂᏣᏚᎵ\t-13.0583\n▁ᏫᎬᏪᎧ\t-13.0583\n▁ᏥᏯᏚᎸᎡ\t-13.0586\n▁ᏱᏩᏂ\t-13.0586\n▁ᎤᏓᏓᎴᏔ\t-13.0588\n▁ᎤᏃᏣ\t-13.0591\n▁ᎤᎶᏄᎮ\t-13.0592\nᎦᏠᏯᏍᏗ\t-13.0595\n▁ᎤᎵᎪᎾ\t-13.0599\nᎵᏍᏓᏴᎲᏍᎩ\t-13.06\n▁ᎬᏯᎫᏴ\t-13.0605\nᎦᏙᎠᏍᎪ\t-13.0605\n▁ᏓᏩᏛᎯ\t-13.0608\n▁ᏓᏍᎩᏅ\t-13.0608\nᏃᏟᏍ\t-13.0609\n▁ᏗᎬᏩᎾᏁᎶ\t-13.0612\n▁ᎬᎩᎦᏔ\t-13.0612\n▁ᎨᏥᏌᎳ\t-13.0613\nᏂᏏᏂᏙᎸᎢ\t-13.0618\n▁ᏄᎾᏚᎵ\t-13.0619\nᏢᏍᎪᎢ\t-13.0627\nᏅᏍᎦᏝᏁ\t-13.0629\nᏔᎶᎯᏍᏗ\t-13.063\n▁ᏱᏣᏓᏅ\t-13.0632\n▁ᎤᎾᏁᎶ\t-13.0632\nᎦᏄᏓᏛ\t-13.0633\nᏆᎧᎾᏅᎩ\t-13.0634\nᎳᎾᎶ\t-13.0635\nᏉᏗᏳ\t-13.0636\nᎨᏥᏄᏬ\t-13.0637\nᏓᏁᏥᏴ\t-13.0639\nᏰᏥᏍᎨ\t-13.0644\n▁ᏤᏦ\t-13.0644\nᎯᎦᏔᎮᎢ\t-13.0644\nᏏᏔᏓ\t-13.0645\nᏲᎤᎴ\t-13.0646\n▁ᎠᏆᏡᏗᏍ\t-13.0648\nᏚᏂᏍᏗᏰ\t-13.065\nᏑᎳ\t-13.0652\n▁ᎦᎵᏥᏙ\t-13.0652\n▁ᏱᏅᏗᎦᎵᏍᏙ\t-13.0654\n▁ᎤᏂᎭᏲ\t-13.0654\nᏎᎵᏔᏅ\t-13.0655\nᎷᏫᏍᏔᏁᏗ\t-13.0656\n▁ᎤᏰᏌ\t-13.0658\n▁ᎣᎦᏢ\t-13.066\n▁ᏗᎫᎪ\t-13.0662\n▁ᏧᏛᎯᏍ\t-13.0662\nᎾᏘᏃᎮᎴ\t-13.0663\n▁ᎤᏃᏕ\t-13.0665\nᎭᏫᏂ\t-13.0667\nᏓᏙᏢᎾᏁ\t-13.0669\nᏓᏅᏖᎮᎸ\t-13.067\n▁ᎢᏤᎳᏗ\t-13.0674\nᏙᎯᎮᏍᏗ\t-13.0677\nᎵᏂᏆᏅ\t-13.068\nᏅᏩᏁᎢ\t-13.0682\n▁ᎠᎾᏕᏯ\t-13.0695\n▁ᎤᏓᏍᏕ\t-13.0699\nᎩᏰᎸᏎᏍᏗ\t-13.0703\nᎪᏓᏁᏗᏱ\t-13.0703\n▁ᎤᏃᎯᏎ\t-13.0705\nᎬᏆᎵᏍᏓᏴᎾᏁ\t-13.0706\nᎨᏳᏔᏅᎩ\t-13.071\nᏍᏔᏁᎸ\t-13.071\n▁ᎯᏯᎵᏍᎪᎸ\t-13.0713\nᏲᎵᏳ\t-13.0713\nᎨᎯᏙᎰ\t-13.0713\n▁ᏱᏗᏥᏯᏅ\t-13.0716\nᏖᎸᎲᏍ\t-13.0721\n▁ᏗᏂᏓᎭ\t-13.0722\nᏃᏟᏍᏔ\t-13.0723\nᏓᎭᏲᎯ\t-13.0726\nᎦᎴᏴᏓ\t-13.0727\n▁ᎤᏂᏁᏟᏴᏍ\t-13.0727\n▁ᏫᏣᎦᏔ\t-13.0727\nᏚᎸᏗᏉ\t-13.0728\nᎦᏥᏯᏠᎢᏍᏓᏁ\t-13.0729\n▁ᎦᏥᏯᏓᏙᎵᏍ\t-13.073\n▁ᎡᏙᎢᏳ\t-13.0731\n▁ᏕᏥᎧᎿᏩ\t-13.0732\nᎦᏠᏯᏍ\t-13.0733\nᏑᎳᏁ\t-13.0735\n▁ᏥᏂᏕᎬ\t-13.0737\nᏍᎩᎾᎩᎢ\t-13.0738\nᎵᏍᏔᏴ\t-13.0739\nᏩᏗᏓᏍᏗᏱ\t-13.074\nᏓᏩᏛᎡ\t-13.074\n▁ᏧᎨᏳ\t-13.074\n▁ᏣᎩᎵᏲᎢᏍᏗ\t-13.0741\n▁ᎤᎾᏅᎪ\t-13.0741\nᎾᏛᎦᏁᎢ\t-13.0745\nᎪᎥᏍᎦ\t-13.0746\nᎾᏓᏅᏘ\t-13.0747\nᎵᏬᏦ\t-13.0747\nᏗᏍᎦᏢᎢ\t-13.0749\nᏣᎧᎲ\t-13.0749\nᏙᏔᏘᎾᏫᏛ\t-13.0751\n▁ᎢᏣᏓᏅᎡ\t-13.0755\nᏂᎦᎵᏍᏙᏗ\t-13.0755\n▁ᎤᏃᎯᏳ\t-13.0757\n▁ᏧᎾᏘᏃ\t-13.0764\nᎵᏍᏓᏁᎰ\t-13.0769\nᎫᏏᏲ\t-13.077\nᏅᏆᎶᏍᏗ\t-13.0774\n▁ᎤᏂᏍᎫᏕ\t-13.0775\n▁ᎤᏁᎷ\t-13.0776\nᏚᏅᎦᎸᎡ\t-13.0778\nᎬᏑᎶ\t-13.0782\nᏟᎶᎥᎩ\t-13.0785\nᏥᏍᎦᏅᏤᎲ\t-13.0786\n▁ᏚᏓᏁ\t-13.0791\nᏛᏓᏍᏓᏁ\t-13.0791\nᎾᏓᏁᎳᏁ\t-13.0792\nᏄᎾᎵᏍᏓᏁᎰ\t-13.0795\nᏲᎢᏍᏗᏱ\t-13.0797\n▁ᏚᏕᏲ\t-13.0798\n▁ᎦᏂᏏᏅ\t-13.08\nᎵᏍᏔᏴᏅ\t-13.0802\n▁ᏣᏁᎸᏔᏅᎯ\t-13.0804\nᎫᎪᏓᏏ\t-13.0804\nᏖᎸᎲᎦ\t-13.0804\nᏗᏐᎢᏃ\t-13.0805\nᏚᏫᏛ\t-13.0806\n▁ᎣᎦᏂᎩ\t-13.0807\nᎠᎯᏎᎸ\t-13.0807\n▁ᏚᏂᎸᏫᏍᏓᏁ\t-13.0808\nᏠᏆ\t-13.0808\nᎦᏪᏍᏗ\t-13.0809\nᎫᏴᎯᏓᏍᏗ\t-13.0812\nᏣᏪᏎᎭ\t-13.0813\n▁ᏗᎬᏬ\t-13.0815\n▁ᏚᏕᏯᏙᏔ\t-13.0816\n▁ᎣᏣᎵᏥᏙ\t-13.0818\n▁ᏕᎧᏁᎢᏍ\t-13.0819\nᏕᏦ\t-13.0819\nᏓᎩᏅᏎᎢ\t-13.082\n▁ᏳᏂᎪ\t-13.0821\nᏖᏥ\t-13.0831\nᏗᎨᏥᎤᏍᏕᏎᎸ\t-13.0836\n▁ᎤᎾᎦᎸ\t-13.0836\n▁ᏣᎩᏁᏤ\t-13.0839\nᏓᏙᎵᏍᏗᏍᎨᏍᏗ\t-13.0842\n▁ᎤᎷᏥᏗ\t-13.0842\nᏋᏁᎸ\t-13.0843\nᏢᎾᏁᎸᎩ\t-13.0845\nᏥᏍᏕᎸᎮᎢ\t-13.0847\nᏛᏂᎡ\t-13.0849\nᏲᎱᏏ\t-13.085\n▁ᏙᏓᎨᏣ\t-13.0851\nᏐᏢᏕᏍᏗ\t-13.0851\nᎫᏴᎡᎵ\t-13.0851\nᏥᏬᏂᎭ\t-13.0851\nᎾᏂᏢᏅ\t-13.0852\nᏣᏓᏅᏛᎩ\t-13.0853\nᏅᎦᎸᎲ\t-13.0853\nᎩᏍᏆᎵᏍ\t-13.0853\nᏭᏢᏅ\t-13.0854\nᏗᏣᎵᏘ\t-13.0854\n▁ᏂᏑ\t-13.0856\nᎦᏛᎯᏍᏗ\t-13.0856\nᏓᏂᎸᏥ\t-13.0857\n▁ᎤᏂᎦᏙᎥ\t-13.0858\nᏍᎩᏴᎦ\t-13.0859\nᏓᏅᏙᎩᎯ\t-13.0863\n▁ᎤᎦᏴᎵ\t-13.0864\nᏇᏲ\t-13.0865\nᏘᎾᏫᏛᎮᎢ\t-13.0866\nᎧᎿᏅ\t-13.0868\nᎤᎦᏎ\t-13.0874\nᎩᏃᎮᎮ\t-13.0875\n▁ᎭᏂᎧᏔ\t-13.0875\nᏍᏚᏤ\t-13.0877\nᎧᎲᏒ\t-13.0879\n▁ᎤᎾᎵᏍᎦᏍ\t-13.088\n▁ᎠᏲᎯᏍ\t-13.088\nᏓᏥᏯᎧᏂ\t-13.0882\n▁ᏱᏚᏩᏛ\t-13.0883\n▁ᏗᎨᏥᏍᏚ\t-13.0892\nᏓᎢᏅᏗ\t-13.0894\nᎲᏍᏗᏍᎩ\t-13.0895\n▁ᎠᏓᏅᏓᏗᏍ\t-13.0896\nᎤᎾᏙ\t-13.0897\nᎢᏥᏗᏱ\t-13.0898\nᎦᏓᏅᏖᏍᎨᎢ\t-13.09\nᎾᏙᎴᎰᎯ\t-13.0903\n▁ᎠᎪᏩᏗᏍ\t-13.0904\nᏁᎬᏁ\t-13.0906\nᏯᏛᏁᎭ\t-13.0906\nᏍᏛᎦᎸ\t-13.0908\nᏰᎪᎢ\t-13.0908\nᏍᎦᏤ\t-13.0908\nᎤᏰᎸ\t-13.0909\nᏔᏂᏙ\t-13.091\n▁ᏕᎦᏠ\t-13.0912\n▁ᎡᏣᏛᎦᏁ\t-13.0916\n▁ᎠᎵᏖᎸ\t-13.0916\n▁ᎤᏕᎶᎰ\t-13.0918\nᎩᏥᏍᎨᎢ\t-13.0921\nᎨᏥᎪᎵᏰᏍᎨ\t-13.0923\nᎵᏍᎪᎸᏓᏁᎭ\t-13.0924\n▁ᏚᏍᎫᏓ\t-13.0925\n▁ᎤᎴᏴ\t-13.0929\nᎵᎥᏂᎲ\t-13.0929\nᏯᏅᎡᎸ\t-13.093\nᏬᏂᏒᎢ\t-13.0932\n▁ᎤᏪᏯᏔ\t-13.0932\n▁ᏧᏠᎯᏍ\t-13.0932\n▁ᎤᏁᎵᏌ\t-13.0934\nᏳᎨᏗ\t-13.0937\nᎾᎵᎮᎵ\t-13.0938\n▁ᏴᏓᏲ\t-13.0938\nᎧᎲᎾ\t-13.0945\n▁ᏯᎴᏫᏍ\t-13.0945\n▁ᏧᏃᎯᏎ\t-13.0946\nᎦᏢᏆ\t-13.0947\nᏍᏓᎵᎪ\t-13.0947\nᏕᏯᏙᏔᏅ\t-13.0949\nᏥᎦᏌᎢ\t-13.0949\n▁ᎤᏲᏍᏙᏓᏁ\t-13.095\nᎠᏍᎪᎸ\t-13.095\nᏞᏌ\t-13.0952\n▁ᏫᎦᏥᎷᏤ\t-13.0954\nᎦᏂᎭ\t-13.0955\nlia\t-13.0956\nᎵᏂᏆᏅᏅ\t-13.0956\n▁ᏕᎯᎶᏁ\t-13.096\n▁ᎣᎩᎾᏚ\t-13.0961\nᎬᏩᏂᎷᏤᏗ\t-13.0962\n▁ᏕᎤᏙ\t-13.0969\nᏗᎴᎲᎯ\t-13.0972\n▁ᏗᎦᏃᏣ\t-13.0972\n▁ᎯᏲᎢᏳ\t-13.0973\nᏥᏄᏬ\t-13.0975\n▁ᎤᏂᏄᎪ\t-13.0976\nᎬᏩᏰᏣᏍ\t-13.0981\nᎫᎯᏍᏗ\t-13.0984\n▁ᏗᎦᎸᏫᏍᏓ\t-13.0986\n▁ᏥᏨᏲᏪ\t-13.0988\n▁ᎠᎾᏓᏴᎳ\t-13.0988\n▁ᏧᏲᎱᎯᏎ\t-13.0991\nᎵᏍᏆᏕᎴ\t-13.0991\nᏠᏱᎲᎢ\t-13.0992\nᎧᎿᏩᏗᏙᎯ\t-13.0994\nᏟᏃᎮᏙ\t-13.0996\n▁ᎤᏪᎿ\t-13.0998\n▁ᎤᎾᏅᏓᏗ\t-13.0999\nᏣᏱᎵ\t-13.0999\n▁ᏨᏓᏥ\t-13.1001\nᎣᏣᏂᎩ\t-13.1001\nᏲᏤ\t-13.1001\nᏕᏥᏰ\t-13.1006\nᏍᏗᏴᎸ\t-13.1006\nᏓᏅᏖᎵᏙᎸ\t-13.1007\n▁ᏨᏓᏣ\t-13.1007\nᏯᎵᏍᎪᎥ\t-13.1008\nᏓᎪᏄᎶᎯ\t-13.101\n▁ᏄᏍᏆᎸ\t-13.101\nᎵᏍᏔᏁᎳ\t-13.101\nᏪᎵᏎᏗ\t-13.101\n▁ᎣᎦᏅᏔ\t-13.1011\n▁ᏩᏇ\t-13.1012\nᏛᏛᎮᎸ\t-13.1013\nᎵᎮᎵᎬ\t-13.1015\nᎠᏥᎪᏅ\t-13.1015\n▁ᎠᏓᏩᏛ\t-13.1016\nᏥᎪᏁᎸ\t-13.1018\nᏃᎮᏍᎨ\t-13.1019\n▁ᏧᎾᏛᏛ\t-13.1019\nᏄᎪᏫᏍᎩ\t-13.102\nᎦᏐᎠᏏ\t-13.1022\n▁ᎤᏓᏓᏍ\t-13.1024\nᎳᏗᏙᎴ\t-13.1026\nᏣᎴᏂᏙᎲ\t-13.1028\nᏓᏩᏛᎡᎲ\t-13.1029\n▁ᏗᏣᏓᏙᎵᏍ\t-13.1029\n▁ᏓᏍᏚ\t-13.103\nᏓᏂᏂᏏᏍᎨ\t-13.103\n▁ᎠᏟᏂᎬ\t-13.1034\n▁ᏂᏕᎦᏪ\t-13.1034\nᎩᏴᏁᎸ\t-13.1036\nᏙᎵᏣᏘᏳ\t-13.1038\nᎨᎳᏗᏙᎮ\t-13.1038\nᎦᏃᏣᎸ\t-13.1039\n▁ᏳᏬᏢ\t-13.1039\nᎵᎡᎵᏤᎰ\t-13.104\n▁ᏫᏨᏲᏪ\t-13.104\n▁ᏚᏂᏯᎣ\t-13.1041\nᏕᎧᏁᏤᎮ\t-13.1041\n▁ᏦᎢᎦᏚ\t-13.1042\n▁ᏕᎬᏩᏄ\t-13.1045\nᏅᎪᎣ\t-13.1046\n▁ᏚᏪᎵᏎ\t-13.1046\n▁ᏚᏑᏰ\t-13.1048\n▁ᏚᏪᏟᏌ\t-13.1051\n▁ᎠᏁᎷᎲᏍ\t-13.1052\nᏓᏅᏓᏗᏍᏔ\t-13.1054\nᎨᏫᏒᎭ\t-13.1056\nᎾᏁᎷᎩᎡᎴ\t-13.1057\nᎸᎥᏍᎨᏍᏗ\t-13.1058\nᏰᎵᎯᏍᏔᏅᏃ\t-13.1059\n▁ᎤᎾᏁᎷᎩ\t-13.106\nᏳᏓᏍᏙᏗ\t-13.1064\n▁ᏫᏗᏨ\t-13.1064\nᎤᎷᏤᎴᎢ\t-13.1064\n▁ᏧᏂᎸᏫᏍ\t-13.1065\n▁ᏚᏓᏅᎡᎸ\t-13.1069\n▁ᏧᎦᎿ\t-13.1069\nᏚᏅᏂ\t-13.1069\nᏁᏙᎴᎢ\t-13.107\nᎪᏆᎵ\t-13.107\nᏳᎪᏓᏁᏗᏱ\t-13.1072\n▁ᎤᎵᏰᏑᏍᏙ\t-13.1072\nᏓᏳᏅᏏᏛ\t-13.1072\nᏌᎹ\t-13.1073\nᎾᏤᎵᏛ\t-13.1074\n▁ᏚᏂᏟᏌ\t-13.1074\n▁ᎠᎪᏍᏓ\t-13.1075\n▁ᏚᏂᏬ\t-13.1076\nᎵᏠᏯᏍᏙᏗ\t-13.1078\nᎾᏦᎥ\t-13.1079\nᏪᏯᏗ\t-13.108\nᏂᏃᎮᏍᎪ\t-13.1081\n▁ᎠᏓᏍᏔᏴ\t-13.1082\nᏍᎦᏍᏙᏙ\t-13.1082\n▁ᏄᏂᏍᏓ\t-13.1083\n▁ᏱᏂᏣᎵᏍᏓ\t-13.1084\n▁ᏬᎶ\t-13.1085\nᏐᎲᏍᏗᏱ\t-13.1085\n▁ᎬᏩᎪᏁᎶᎯᏎ\t-13.1086\n▁ᏩᏂᏁ\t-13.1086\nᎾᎵᏥᏙᏂᏙᎸ\t-13.1086\nᏣᏛᏓᏍᏓ\t-13.1087\nᏆᏛᏓᏍᏓᏏ\t-13.1087\nᎦᏯᎷ\t-13.1088\nᏐᏢᏔᏁᎢ\t-13.1089\nᏰᎢᎶᎯᏍᏗ\t-13.109\nᏰᎸᎾᏁᎴ\t-13.1091\n▁ᎠᏂᎦᏲᎵ\t-13.1092\n▁ᏗᎬᏩᏲᎯ\t-13.1093\n▁ᎠᏓᏍᏕ\t-13.1093\n▁ᎬᏉᎯᏳ\t-13.1094\nᎦᎷᎪᎢ\t-13.1095\nᏖᎸᏂᏍᏗ\t-13.1096\nᎨᏣᏲᏎ\t-13.1096\nᏂᏣᏓᏛᏁ\t-13.1097\n▁ᎦᎾᏰᎯᏍ\t-13.1098\nᏚᎬᎭᎷᏰ\t-13.1099\n▁ᎦᏥᏁᎢᏍ\t-13.1102\nᏘᏙᎵ\t-13.1102\nᎦᎬᏲᎯ\t-13.1104\nᏗᏤᏲᎲ\t-13.1104\n▁ᏱᏅᎨ\t-13.1108\nᎡᏣᏘᎾᏫᏛ\t-13.1108\n▁ᎠᎦᎵᏍᎪᎸ\t-13.111\n▁ᎠᎾᏓᏌ\t-13.1111\nᎵᏲᎢᏍᏗᏱ\t-13.1113\nᏕᎦᏂᏱ\t-13.1113\n▁ᎠᎦᎵᎮ\t-13.1115\nᏆᎸᏕ\t-13.1117\nᎾᎵᏍᏓᏴ\t-13.1117\n▁ᎨᎦᎫᏴ\t-13.1118\nᏕᏍᎩᏯᎧ\t-13.112\nᏧᎾᏓᎴᏁ\t-13.112\nᏂᏐᏢᏗ\t-13.1121\n▁ᏕᎬᏩᎾᏢ\t-13.1122\n▁ᎠᏐᏢᎢᏍ\t-13.1122\nᏥᏲᎯᏍᏓ\t-13.1123\n▁ᏫᏚᎾᎧᎿ\t-13.1125\nᏟᏴᏍᎩ\t-13.1126\n▁ᏓᏂᏍᏕ\t-13.1127\nᏳᎾᏄᎪᏨ\t-13.1128\n▁ᏚᎾᏓᏛᏛ\t-13.1128\n▁ᎧᏃᎩᏍ\t-13.113\nᏁᎩᏴ\t-13.1131\nᏱᎵᏒᎢ\t-13.1131\nᏨᏁᎲ\t-13.1132\n▁ᎠᎵᏏᎾ\t-13.1132\nᏃᎦᏛᎿᏕ\t-13.1133\n▁ᎤᏩᎾᏬ\t-13.1133\n▁ᎢᏨᎨᏳ\t-13.1134\n▁ᏳᏫᏗᏣ\t-13.1135\nᏍᏕᏓᎵᏴᏓ\t-13.1135\n▁ᏱᏗᎬᏕ\t-13.1135\nᏲᎱᏒ\t-13.1136\n▁ᏕᏥᏅᎦᎵᏍ\t-13.1136\n▁ᏚᏄᎪᏫ\t-13.1137\nᏥᎶᎢ\t-13.1137\n▁ᏄᏍᏚ\t-13.1138\nᏯᏠᎢ\t-13.1138\n▁ᏥᏙᏓᏨ\t-13.1138\nᏭᏂᎷᏤ\t-13.1139\n▁ᏓᏆᎧᎾ\t-13.1139\nᏬᏎᎴᎢ\t-13.1141\nᏆᏂᎩᏒ\t-13.1142\nᎾᏓᏬ\t-13.1142\nᏕᏣᎵᏂᎬ\t-13.1143\n▁ᏂᏕᎩᎾ\t-13.1143\nᏚᏭᎪᏔᏁ\t-13.1144\nᏨᏃᏁᎸ\t-13.1145\nᎩᎳᏫᏒ\t-13.1145\n▁ᎠᎾᏗᏒ\t-13.1147\n▁ᎤᏩᏴ\t-13.1147\nᎦᏩᏙᎣᏍ\t-13.1147\nᎵᏈᏱ\t-13.1148\n▁ᎤᎾᏓᏅᎦ\t-13.1148\nᏰᏍᎪᎢ\t-13.1148\nᏓᏓᎴᏔᏅᎯ\t-13.1148\nᏩᏅᏁᏗ\t-13.1149\nᏣᏕᏲᏗ\t-13.115\nᏬᏰᏂ\t-13.1151\n▁ᏥᎨᎦᏛᏅᎢᏍ\t-13.1152\nᎵᏍᏔᏴᏗ\t-13.1152\nᏄᏅᏁᎴ\t-13.1152\n▁ᏱᏚᎾᏄ\t-13.1154\nᏍᏆᏂᎩ\t-13.1157\nᎤᏛᏁ\t-13.1158\nᏓᎬᏍᎪᎸᏗ\t-13.1159\n▁ᏓᏟᎶ\t-13.1159\nᎯᏳᎪᏓᏁᎭ\t-13.1159\nᎾᎦᎸᎲ\t-13.1159\nᏍᏆᏗᏍᎬ\t-13.1159\nᏥᎬᏍᎪᎸᎥᏍᎨᏍᏗ\t-13.1159\n▁ᎤᎾᏕᎶᎰ\t-13.1162\n▁ᎤᏂᎵᏰᏗᏍ\t-13.1162\n▁ᏚᏂᏔᎳ\t-13.1163\n▁ᏄᎵᏍᏔ\t-13.1165\n▁ᏚᏃᏣᏝ\t-13.1166\n▁ᎠᎩᏍᏓᏩ\t-13.1166\n▁ᎠᏋᏕ\t-13.1166\nᏴᎦᏥ\t-13.1166\nᏗᎨᎦᏨᏍᏔ\t-13.1167\nᏍᎩᏯᏓᏂᎸᏨ\t-13.1168\nᏓᏁᎸᎥᏍᎬ\t-13.1168\nᎬᏁᎮ\t-13.1168\nᎯᏳᎭᏧ\t-13.1169\nᏬᎳᏕᏍᎬ\t-13.117\n▁ᎠᏥᎵᎥ\t-13.1172\nᏚᏫᏍᏔᏁᎢ\t-13.1174\nᏟᏃᎮᏔ\t-13.1175\nᏴᏕᏥ\t-13.1176\nᏗᏨᏁ\t-13.118\nᎦᎾᏍᏓ\t-13.118\nᏗᎦᎧᎯᏯᏍ\t-13.118\n▁ᏕᎭᏓᏅ\t-13.118\nᎩᎦᎨᎢ\t-13.1181\n▁ᏏᏴᏫ\t-13.1182\n▁ᏧᏛᎦᏁ\t-13.1182\n▁ᏂᏥᏍᎦ\t-13.1182\n▁ᎤᏂᏃᎮ\t-13.1185\nᏲᎢᏍᏗᏍᎬᎾ\t-13.1185\nᏄᏢ\t-13.1186\nᏣᎵᎮᎵᏍᏗ\t-13.1186\nᏓᎨᏨᏁᎵ\t-13.1188\nᏓᏴᎳᏘ\t-13.1188\nᎬᏃᎯᏎ\t-13.1189\nᎾᎵᏍᏔᏅᎢ\t-13.119\nᏜᏅᏓ\t-13.119\nᎩᏂᎬᏎᎲ\t-13.119\n▁ᎠᎵᏌᎳᏗᏍ\t-13.119\n▁ᎤᏔᎷ\t-13.1191\nᏰᎢᎶᎦ\t-13.1193\nᏘᎸᏍᏗ\t-13.1195\nᎾᎦᏙᏍᏔᏁ\t-13.1195\n▁ᏗᎦᏁᏟ\t-13.1195\n▁ᎤᏩᏇ\t-13.1195\nᎾᏙᎴᎰ\t-13.1196\nᏕᎰᎯᏍ\t-13.1198\n▁ᏫᎤᎾ\t-13.1198\n▁ᎤᏗᏔ\t-13.12\n▁ᏧᏯᏛ\t-13.1201\nᎬᏩᏪᏎ\t-13.1201\nᏃᏍᎩᏒ\t-13.1201\nᏖᎸᏅᎯ\t-13.1202\n▁ᏭᏓᎾᏫᏛ\t-13.1202\nᎧᎿᏩᏛ\t-13.1202\nᏣᏍᏆᏂᎪ\t-13.1204\nᏓᎵᏗᎩ\t-13.1205\nᏗᏩᎾᎦᎳ\t-13.1205\nᏰᏫ\t-13.1205\n▁ᎾᎾᏓᏛ\t-13.1206\nᏥᏳᎪᏓᏁᎭ\t-13.1206\nᏣᏙᎴᎰᏍᎬ\t-13.1207\nᏒᏍᏔᏁ\t-13.1207\nᏧᎵᏍᏙᏔᏅ\t-13.1208\nᎬᏭᎪᏓᏁ\t-13.1209\nᎵᏣᏛᎾ\t-13.121\nᏓᎦᎴᏅ\t-13.1212\nᎦᏖᏅ\t-13.1212\n▁ᎤᏪᏔ\t-13.1213\n▁ᏚᏩᏥᏍ\t-13.1213\n▁ᎤᏅᎪᎳ\t-13.1214\nᏥᎩᎵᏲᎦ\t-13.1214\n▁ᏧᏣᎷ\t-13.1215\nᏯᎧᏁ\t-13.1215\n▁ᏱᏚᏬᏕ\t-13.1216\nᏍᏓᏴᏅᎩ\t-13.1216\nᏤᎦᏈ\t-13.1217\nᏍᎩᏯᏑᏰ\t-13.1217\nᏚᎸᏫᏍᏓᏁ\t-13.1217\nᎾᏍᏗᏍᎬᎩ\t-13.1217\nᏕᎬᏩᏂᎾᏝ\t-13.1218\n▁ᎤᏓᎬᏩᏓᎴ\t-13.1219\nᏛᎮᏏ\t-13.1219\n▁ᎤᏙᏯᏅᎯ\t-13.122\nᎤᏁᏅ\t-13.122\nᎦᏥᏄᎪᏫᏒ\t-13.1221\nᏯᏏᏔ\t-13.1221\nᏥᏙᎰ\t-13.1222\n▁ᏫᏛᏂ\t-13.1222\nᎡᏝᏪ\t-13.1222\n▁ᏥᏯᎵᎡᎵ\t-13.1222\n▁ᎨᎦᏅᏓ\t-13.1223\nᏍᏙᏰᎲ\t-13.1223\nᏒᎦᎳᏗᏍᏔ\t-13.1223\n▁ᏓᏳᏂᏰ\t-13.1223\nᎤᏂᎶᏎᎢ\t-13.1225\n▁ᏚᏄᏩ\t-13.1226\n▁ᏭᏅᏥ\t-13.1226\nᏒᏂᏍᏙ\t-13.1226\n▁ᎠᏆᎵᏍᏕ\t-13.1227\nᎧᎿᏩᏗᏙ\t-13.1227\nᎦᏛᎴᏏ\t-13.1227\nᏄᎾᏍᏗ\t-13.1227\nᏥᎸᏌᏓᏕ\t-13.1228\n▁ᏳᏫᏣ\t-13.1228\n▁ᏅᏆᏓᎴ\t-13.1228\n▁ᏂᏥᏪᏒ\t-13.1229\n▁ᏓᎾᎳᏍ\t-13.1229\nᏓᏰᎮ\t-13.1229\nᏧᎦᏣ\t-13.1229\nᏔᏫᎢᏍᏗᏱ\t-13.123\nᏂᏍᏆᏛᏁᎸ\t-13.123\n▁ᎦᏃᎯᎵ\t-13.1231\nᏥᎥᎡᎸ\t-13.1231\nᎸᏉᏔᏁ\t-13.1231\n▁ᏧᏕᏘᏴᏌ\t-13.1231\nᏂᎦᏙᎵᏃ\t-13.1232\nᎤᏪᏅᏃ\t-13.1232\nᏙᏯᏅᎯᏕ\t-13.1232\nᏧᏓᏅᏎ\t-13.1232\n▁ᏚᎾᏘᏅ\t-13.1233\nᎤᎶᏒᎩ\t-13.1233\nᏂᏍᏋᏁᎸ\t-13.1233\nᏓᏂᏙᎬᎩ\t-13.1233\nᎤᎾᏓᏈᎬ\t-13.1233\nᏕᏨᏯᏠᎢᏍᏓᏁ\t-13.1233\nᎤᎵᏍᏛᏂᎴᎢ\t-13.1233\nᎤᎿᏍᎬᏤ\t-13.1233\nᎭᎴᏫᏍᏓ\t-13.1233\nᏙᏓᎬᏩᏂᎾᏢᏂ\t-13.1233\nᏮᏓᏨᎷᏤᎵ\t-13.1233\nᏂᎬᏩᏅᎿᏕᎬ\t-13.1233\nᏂᎬᏩᏛᏁᎴᎢ\t-13.1233\nᏗᏣᎸᏫᏍᏓᏏ\t-13.1233\nᏗᏥᎸᏫᏍᏓᏏ\t-13.1233\nᎦᎵᏥᏙᏅ\t-13.1233\nᎭᏓᏄᏖᏯ\t-13.1233\nᎯᏄᏴᏓ\t-13.1233\nᎦᎾᎱᎩᏍᎬ\t-13.1233\n▁ᎠᏂᏔᏲᎯ\t-13.1233\nᏕᎤᎸᏫᏍᏓᏁᎭ\t-13.1233\nᏧᏓᏆ\t-13.1234\nᏂᎦᏥᏪᏎᎸᎩ\t-13.1234\nᎤᏥᎸᏎᏍᏗ\t-13.1235\nᏗᎨᏅᏒ\t-13.1235\nᎩᏯᏒᎦᎶᏗ\t-13.1236\nᏚᏂᏴᏍᏕ\t-13.1236\nᏚᎾᎦᎴᏅ\t-13.1237\nᏩᏍᏕᏍᏗ\t-13.1237\n▁ᎠᏂᎪᏩ\t-13.1237\nᏓᎦᎵᏬᏥ\t-13.1237\nᏂᎦᎵᏍᏗᎭ\t-13.1238\nᏥᏯᏅᏔᏅ\t-13.1238\nᏥᏆᎵᏏ\t-13.1238\nᏛᏐᏅᎯ\t-13.1238\nᏓᎪᏪᎳᏂ\t-13.1239\nᏓᏍᏚᎲᎢ\t-13.1239\nᏑᎵᎪᏨ\t-13.1239\nᏓᏅᏖᎢ\t-13.1239\nᏄᏩᏁᎰ\t-13.124\nᏛᏂᏍᏗᏍᎩ\t-13.124\n▁ᏚᏂᎸᏫᏍᏓ\t-13.124\nᏕᎦᏅᏌ\t-13.124\nᏤᎳᏍᏔᏂ\t-13.1241\nᏍᏋᏂ\t-13.1241\nᎯᏱᎵᏙ\t-13.1241\nᎦᏓᏅᏖᏍᎪ\t-13.1242\n▁ᎤᏗᎴ\t-13.1242\nᎺᏌᏯ\t-13.1243\nᎣᏥᏁᎦ\t-13.1243\nᏕᎪᏢᏒᎩ\t-13.1243\nᏚᏟᎶᏍᏓᏁᎴᎢ\t-13.1243\nᏥᏄᏍᏙ\t-13.1243\nᎤᎾᏁᎳᏗᏍᏗᏱ\t-13.1243\nᏅᏓᎦᏛᏁᎵ\t-13.1243\nᏅᏛᎾᎵᏍᏔᏂ\t-13.1243\nᏓᏰᏥᏁᎵ\t-13.1243\nᏨᏗᎦᏚᎭ\t-13.1243\nᏭᏙᎯᏳᎲ\t-13.1243\nᎠᎵᏍᏓᏴᎲᏍᎬ\t-13.1243\nᎠᎻᎳᎻ\t-13.1243\nᎠᏂᎦᏔᎮ\t-13.1243\n▁ᏚᏂᏴᏍ\t-13.1243\nᏱᏥᏁᎦ\t-13.1243\nᎠᎩᎵᏓᏍ\t-13.1243\nᎠᏁᏙᎮᎢ\t-13.1243\nᎠᏓᏅᏖᏍᎨᎢ\t-13.1243\nᎤᏥᏯ\t-13.1243\nᎦᏄᎸ\t-13.1243\nᎵᏍᏙᏔᏂ\t-13.1243\n▁ᎠᎱᏢ\t-13.1243\n▁ᎢᏣᎵᏍᏕ\t-13.1243\nᏭᏓᎴᏎ\t-13.1243\nᎤᏍᏗᎩᎨ\t-13.1244\nᎾᏂᏪᎭ\t-13.1244\nᏩᎩᎶᏒᎩ\t-13.1244\nᏍᎦᏅᏤᎲ\t-13.1244\nᏍᏗᎦᏔᎮ\t-13.1244\nᏣᎵᏂᎩ\t-13.1244\nᏩᏪᏎᎸᎩ\t-13.1244\n▁ᏙᏗᎧᏅ\t-13.1245\nᏍᎩᏍᏕᎳ\t-13.1245\nᎤᎵᏰ\t-13.1245\nᏰᏗᏩᏛ\t-13.1245\nᏓᏃᏎᎰ\t-13.1246\nᏥᎨᎭ\t-13.1246\nᏓᏕᏲᎲᏍᎨ\t-13.1246\nᏓᏂᎧᎿᏩᏗ\t-13.1246\nᏚᎾᏟᏴ\t-13.1246\nᎺᏌ\t-13.1246\n▁ᎥᎩᎱᏍᏕ\t-13.1246\nᎧᎾᎷ\t-13.1247\nᎠᎵᎮᎵᎩ\t-13.1247\nᏧᎾᎵᏍᏓᏴᏗᏱ\t-13.1247\nᏭᏩᏅᏓᏕ\t-13.1247\nᎣᎦᏣᏅ\t-13.1247\nᎤᏓᏅᎦᎸᏓ\t-13.1247\nᎥᎦᏥᎪᎥᎩ\t-13.1247\nᎠᏃᏍᏓ\t-13.1247\nᏒᎦᎾᏲᎪ\t-13.1247\nᎠᏛᎩᏍᎨ\t-13.1247\nᏕᎭᎷᎨ\t-13.1248\nᎤᏴᎸ\t-13.1248\nᏂᎬᏩᏂᏪᏎ\t-13.1248\nᏓᎩᏯᏪᎬ\t-13.1248\nᏃᎦᏛᏁᎸ\t-13.1248\nᎩᏂᏌᏅᎩ\t-13.1248\n▁ᏣᎾᏛᎩ\t-13.1248\nᏂᏕᎲᏁ\t-13.1248\nᎯᎴᏴᏍ\t-13.1249\nᏄᏪᎡᎢ\t-13.1249\nᎠᏓᏲᏁ\t-13.1249\nᏎᎵᏓᏁᎴ\t-13.1249\n▁ᏕᏨᏯᏠᎢᏍ\t-13.1249\nᎨᎪᏎ\t-13.1249\nᎤᎾᏙᎴᎰᎯᏍᏗᏱ\t-13.1249\nᎬᏩᎪᎮᎢ\t-13.1249\nᏂᏚᏂᏪᏎᎴᎢ\t-13.1249\nᏫᎨᏥᏯᏅᏛ\t-13.1249\nᏓᎪᏄᎸ\t-13.1249\nᎡᏚᏥ\t-13.125\n▁ᏭᏗᏢᏍᏔᏁ\t-13.125\n▁ᎠᎾᎵᏍᏓᏴᎲᏍᎪ\t-13.125\n▁ᎤᎵᏯᏍᏚᏁ\t-13.125\n▁ᏧᏗᎴ\t-13.125\n▁ᏕᏣᏁᎶᏛ\t-13.125\nᏓᏦᎯᏍᏛ\t-13.125\n▁ᎤᏂᏍᏆᏂᎪᏍᎨ\t-13.125\nᏓᏂᎾᏏᏂ\t-13.125\nᏓᎴᏂᏍᎨ\t-13.125\nᏚᎪᏓᏁᎯ\t-13.125\n▁ᏧᏂᎶᏎ\t-13.125\n▁ᏍᏔᏲ\t-13.1251\n▁ᏫᎬᏩᏘᏅ\t-13.1251\n▁ᎡᏦᏎᎲ\t-13.1251\nᏍᎩᏲᎮᎸᎭ\t-13.1251\n▁ᏚᏪᎳᏍᏔᏁ\t-13.1251\n▁ᎠᏂᏍᎦᏅ\t-13.1251\nᏂᏥᏪᏍᎬ\t-13.1251\nᎤᎵᏨᏓᏆᏓ\t-13.1251\nᏗᎨᎫᎪᏓᏁᏗ\t-13.1251\nᏄᏩᎥ\t-13.1251\nᏭᎷᏤᎴ\t-13.1251\nᎤᏲᎱᏎᎮᏍᏗ\t-13.1251\n▁ᏳᎾᏛᎦ\t-13.1252\nᎢᏯᏓᏅᏖᏗ\t-13.1252\n▁ᏚᏂᏯᏙ\t-13.1252\nᎠᏂᎦᏲᏟ\t-13.1252\nᏍᏈᏍᏔ\t-13.1252\nᎤᏒᏂᎴᎢ\t-13.1252\nᎦᎶᏐᎲᏍ\t-13.1252\nᎠᎦᏔᎮ\t-13.1253\n▁ᏧᏫᏎ\t-13.1253\nᏚᏦᎯᏍᏛ\t-13.1253\nᏚᏭᎪᏔᏅ\t-13.1253\nᎤᎾᏛᏁᎸᏗ\t-13.1253\n▁ᎠᎾᏓᏁᏟᏴᏎᎬ\t-13.1253\nᏯᏖᎾ\t-13.1253\nᏥᏙᏁ\t-13.1253\nᎧᏃᏁ\t-13.1254\nᎢᏧᏕᏘᏴᏛ\t-13.1254\nᎥᏥᎪᎥᎩ\t-13.1254\nᎤᏂᎷᏨ\t-13.1254\nᎣᎦᏛᎦᏅ\t-13.1254\nᎣᎩᏴ\t-13.1254\nᏲᎱᏎᎸ\t-13.1254\nᎤᎩᏨᏅ\t-13.1254\nᏗᏣᏘᏄᎦ\t-13.1254\nᎤᏬᏎᎴᎢ\t-13.1254\n▁ᏕᎨᏥᎾᏝᎥ\t-13.1254\n▁ᏓᏆᏕ\t-13.1254\nᎠᎹᎴᎩ\t-13.1255\nᏀ\t-13.1255\nᎠᏆᏓᏅᏙᎩ\t-13.1255\nᏗᏣᎧᏅᎦ\t-13.1255\nᎨᏥᏅᏒᎯ\t-13.1255\nᎨᏥᏅ\t-13.1255\nᎠᏂᎩᏏᏙᎯ\t-13.1255\nᏦᏞ\t-13.1255\n▁ᎥᏆᎸᎥ\t-13.1255\nᎡᏘᏴ\t-13.1255\nᎦᏰᏌᏗ\t-13.1255\nᎢᏥᏯᏫᏍᎨᏍᏗ\t-13.1255\nᎤᎾᏙᎴᎰᏒ\t-13.1255\n▁ᎤᏍᎪᏂᎴ\t-13.1255\nᎨᏥᏙᎵᏍᏗ\t-13.1255\nᎠᏂᎨᎾᏂ\t-13.1256\nᏕᎹᏍᎦ\t-13.1256\nᏕᎨᏌᏗᏒ\t-13.1256\nᎩᎾᎵᎢ\t-13.1256\nᎠᏫᏄᏣ\t-13.1256\nᏧᏍᏆᏅᎾ\t-13.1256\nᎨᏥᎵᎥᏂ\t-13.1256\nᏧᎾᎩᎸᏗ\t-13.1256\nᏗᏍᏓᏓᏅᏟ\t-13.1256\nᎦᏁᏌᎢ\t-13.1256\nᏌᎪᏂᎨ\t-13.1256\nᎤᏫᏯ\t-13.1256\nᏓᏓᎿᏩᏍᏛ\t-13.1256\nᏣᏓᏅᏙ\t-13.1256\nᎤᏍᏆᎸᎲ\t-13.1256\nᎠᏆᏛᎦᏅᎩ\t-13.1256\nᏓᎬᏔᏂ\t-13.1256\nᏧᏂᎸᏫᏍᏓᏁᏗᏱ\t-13.1257\nᎠᏈᎻᎴᎩ\t-13.1257\nᎤᎦᏎᏂ\t-13.1257\nᎾᏓᎢᏅᏎ\t-13.1257\nᏄᎵᏍᏔᏂᏙᎸ\t-13.1257\nᏓᏆᎴᎷ\t-13.1257\nᎤᏪᏅᎩ\t-13.1257\nᏂᏚᏪᏎᎴ\t-13.1257\nᏅᏗᎦᎵᏍᏙᏗᏍᎬ\t-13.1257\n▁ᎨᏥᏛᏔᏁ\t-13.1257\nᎭᏯᏛ\t-13.1257\nᎢᏯᏛᏁᎯ\t-13.1257\nᎤᎦᎵᏍᏗ\t-13.1257\nᎤᎾᏤᎵᎪᎯ\t-13.1257\nᎦᏓᎷᎪᏗ\t-13.1258\nᎠᏙᎴᎰᏍᎩ\t-13.1258\nᏄᎾᏍᏛ\t-13.1258\nᎠᏂᏴᏫᏯ\t-13.1258\nᎠᏕᎳ\t-13.1258\nᎤᏂᏃᏕᎾ\t-13.1258\nᏅᏩᏓᎴ\t-13.1258\n▁ᏅᏧᏪᏎ\t-13.1258\nᎤᎾᏤᎵᎦ\t-13.1258\nᎤᏓᏙᎵᏍᏗ\t-13.1258\n▁ᎠᏆᏛᏅᎢᏍᏔ\t-13.1258\nᎢᏯᏂᏛ\t-13.1258\nᏎᎮᎲ\t-13.1258\nᏧᎾᏓᎴᏅᏛ\t-13.1258\n▁ᏕᎬᏩᏘᏃᎮᎴ\t-13.1258\n▁ᏫᎤᏂᎶᏎ\t-13.1258\n▁ᏧᏁᏢᏔᏅᏒ\t-13.1258\nᏧᎬᏩ\t-13.1258\n▁ᏓᎪᏄᎴ\t-13.1258\nᎢᏣᎵᏍᏓᏁᏗ\t-13.1258\n▁ᎤᎾᏓᏁᏟᏴᏒᏒ\t-13.1258\n▁ᏚᏅᏩᏁ\t-13.1258\nᎤᏂᎩᏎ\t-13.1258\nᎤᏲᎱᏎᎢ\t-13.1258\nᏗᏇᏥ\t-13.1258\n▁ᎤᏓᏅᏔᏕ\t-13.1258\nᏕᏡᎬᎢ\t-13.1258\nᏅᏓᎦᎵᏍᏙᏗᏍᎬᎩ\t-13.1258\nᎧᏅᏂᏍᎩ\t-13.1258\nᎠᏆᏓᏅᏖᏗ\t-13.1258\nᏂᏨᏪᏎᎭ\t-13.1258\n▁ᏓᏐᏴ\t-13.1258\nᎦᏴᎯᏓ\t-13.1259\nᏗᎦᎸᏫᏍᏓᏁᏗ\t-13.1259\nᏍᏚᎶ\t-13.1259\n▁ᎡᏤᏲᏅ\t-13.1259\nᏗᏯᏠ\t-13.1259\nᎠᏂᏍᎦᏯ\t-13.1259\nᏓᎩᎳᎩ\t-13.1259\nᎤᎦᎾᏍᏓ\t-13.1259\nᎤᏩᏙᎯᏴᏓ\t-13.1259\n▁ᎤᎴᏴᏎ\t-13.1259\nᎩᎳᏈᏴ\t-13.126\nᎤᏃᏕᎾ\t-13.126\nᎿᏛᏁᎲ\t-13.126\n▁ᎢᎬᏩᏂᏆ\t-13.126\nᎤᏁᏢᏔᏅᎯ\t-13.126\nᏅᏛᎩᏅᏏᏛ\t-13.126\nᎨᏥᏍᏚᎮ\t-13.126\nᎢᏣᏛᏁᏗᏱ\t-13.126\n▁ᏚᏪᏣᎦᎸᎮ\t-13.126\nᏓᏳᏓᎴᏅᏓ\t-13.1261\nᏅᏛᏛᏁᎵ\t-13.1261\nᎦᏆᏘ\t-13.1261\n▁ᏓᎾᎵᏍᏓᏴᎲᏍᎨ\t-13.1261\nᎠᏂᏧᏏ\t-13.1261\n▁ᎦᏳᏩ\t-13.1261\nᏰᎶᎢᏍ\t-13.1261\nᏗᏅᏃᏛ\t-13.1261\nᎢᏳᎵᏍᏔᏅᎯ\t-13.1261\nᎤᎾᏂᎩᏒ\t-13.1261\nᎠᎩᏅᏏᏙᎯ\t-13.1262\n▁ᎤᏪᏙᎵᏤ\t-13.1262\n▁ᏫᎤᎶᏎ\t-13.1262\nᏓᎪᏄᎶ\t-13.1262\nᏙᏱᏗᏢ\t-13.1262\n▁ᎤᏍᎩᏓᏎ\t-13.1262\n▁ᏓᎩᎸᏫᏍᏓ\t-13.1262\n▁ᏭᏘᏅᏍᏔᏁ\t-13.1262\nᎤᎵᎮᎵᏤ\t-13.1262\nᏗᎪᏪᎳᏅ\t-13.1262\nᎤᎦᏔ\t-13.1262\nᎠᏂᎦᏘᏯ\t-13.1263\nᎢᏳᏅᏁᏗᏱ\t-13.1263\n▁ᏗᎧᎾᏩ\t-13.1263\n▁ᏱᎦᏓᏅ\t-13.1263\nᎤᏰᎸᏛᎢ\t-13.1263\n▁ᏓᏍᏚᎲ\t-13.1264\nᎤᎵᏍᏕᎸ\t-13.1264\n▁ᏣᏃᏎᎰ\t-13.1264\nᎤᎷᎯᏍᏗᏱ\t-13.1264\nᎢᏳᎵᏍᏙᏗᏱ\t-13.1264\nᎦᏒᏍᏙᎢ\t-13.1264\n▁ᎬᏴᏗᏍᎬ\t-13.1264\n▁ᎣᎦᏚᎵ\t-13.1265\nᎦᏕᏲᏅ\t-13.1265\nᏧᏂᏢᎩ\t-13.1265\n▁ᏂᏓᏋ\t-13.1265\n▁ᏚᎵᏍᏚᎢᏎ\t-13.1265\n▁ᏚᏘᏃᎮᎴ\t-13.1265\n▁ᏚᏃᏪᎸ\t-13.1265\n▁ᏚᏚᏓᏛ\t-13.1265\nᎠᏲᎱᏒ\t-13.1266\nᏧᎾᏁᎶᏗ\t-13.1266\nᎪᎯᏳᎲᏍᎩ\t-13.1266\nᏥᏝᏁ\t-13.1266\nᎤᎵᏏᎩ\t-13.1266\n▁ᏂᏣᏛᎿᏕᎬ\t-13.1266\nᏦᏔᏅ\t-13.1266\n▁ᎤᏂᏐᏅᏤᎴ\t-13.1266\nᎢᎪᎯᏛ\t-13.1266\nᏄᏦ\t-13.1267\n▁ᎢᏣᏓᏁᏟᏴᏎᎬ\t-13.1267\nᎵᎬᎭᎷ\t-13.1267\n▁ᏙᏗᏣᏓᏅᏛ\t-13.1267\nᎬᏍᏓᏩᏛᏍᏗ\t-13.1267\n▁ᎤᎾᏁᏢᏔᏅᏒ\t-13.1267\nᏥᎷᏏᎵᎻ\t-13.1267\nᎤᏁᏅᏍᏗ\t-13.1267\nᎤᏂᏴᏎ\t-13.1267\nᎤᏚᎸᏗ\t-13.1267\nᏪᎳᏏ\t-13.1268\nᏗᎨᏫ\t-13.1268\n▁ᏭᎩᎶᏫ\t-13.1268\nᏩᏘᏍᎨ\t-13.1268\n▁ᏂᏚᎾᏓᏪᏎᎴ\t-13.1268\nᎴᏫᏍᏙ\t-13.1268\n▁ᎠᎦᏬᎡ\t-13.1268\nᎠᏂᎪᏩᏘᏍᎬ\t-13.1268\nᏚᏂᏂᏆᏘ\t-13.1269\nᏱᏂᏪᏍᎨᏍᏗ\t-13.1269\nᎬᏩᎦᏘᏯ\t-13.1269\nᎤᎳᏏᏕᏂ\t-13.1269\nᎯᏍᏓᏁᎲ\t-13.1269\n▁ᏂᎦᏪᏍᎨ\t-13.1269\nᎦᏂᎦᏔ\t-13.127\nᏧᎾᎵᏂᎩᏛ\t-13.127\nᏍᏓᏩᏕᎪ\t-13.127\nᎠᏆᎵᏏ\t-13.127\nᎾᏓᏁᏟᏴᏏᏒ\t-13.1271\n▁ᏕᎦᎾᏄᎪᏫ\t-13.1271\nᎦᏄᎸᏒ\t-13.1271\nᏗᏕᏲᏗ\t-13.1271\nᎯᏴᏎ\t-13.1271\nᏂᏬᏂᏍᎨᏍᏗ\t-13.1271\nᎤᏟᏍᏓ\t-13.1272\nᏃᏥᎥ\t-13.1272\nᎤᎪᏩᏛᏗᏱ\t-13.1272\nᏗᏤᏅᏒ\t-13.1272\nᎧᏃᎮᏍᎩ\t-13.1272\nᏥᎧᏍᎨᏂ\t-13.1273\nᎠᎹᏰᎵ\t-13.1273\nᏚᏠᏱᎴᎢ\t-13.1273\nᎸᏫᏍᏓᏁᎲ\t-13.1273\nᏦᎣᏎ\t-13.1273\nᎤᎾᏓᏡᎬ\t-13.1273\n▁ᎤᎵᏛᏔᏁ\t-13.1274\n▁ᏪᏓᏓ\t-13.1274\n▁ᎤᏓᏅᏓᏕ\t-13.1274\nᎪᎲᏍᏔ\t-13.1274\n▁ᎤᎵᏦᏔᏁ\t-13.1274\nᏍᏚᎶᏔᏅ\t-13.1274\nᏚᎪᎲ\t-13.1274\n▁ᏣᎢᏎ\t-13.1275\nᏧᏂᏴ\t-13.1275\nᎧᏴᏤ\t-13.1275\nᏕᏣᎵᏍᏓᏴᎲ\t-13.1275\nᎤᏯᏅᎯ\t-13.1275\n▁ᏳᎾᏟ\t-13.1275\n▁ᏁᏪᏎᎴ\t-13.1275\nᏣᎵᏍᏓᏴᎾᏁ\t-13.1275\nᎵᏦᏔᏁᎢ\t-13.1276\nᏅᎬᏩᏪᏎᎸᎩ\t-13.1276\n▁ᎬᏬᎯᏳᏅ\t-13.1276\n▁ᎠᏓᏴᏗ\t-13.1276\nᏃᎴᏍᏉ\t-13.1276\nᎤᏣᏘᏂ\t-13.1276\nᏂᏕᏨ\t-13.1277\n▁ᎢᏨᏁᎢᏍᏗᏍᎬ\t-13.1277\nᎤᏓᏅᏘ\t-13.1277\nᎤᎩᎬ\t-13.1277\nᎦᏙᎥᎯ\t-13.1278\nᏚᏓᏖᏍᏗ\t-13.1278\n▁ᎠᏥᏩᏛᎡᎸ\t-13.1278\nᏲᏟᎨ\t-13.1278\n▁ᏧᎾᏄᎪᏤ\t-13.1278\nᎬᎾᏬ\t-13.1278\nᎾᏁᎳᏗᏍ\t-13.1278\n▁ᎤᏓᏙᎵᏍᏓᏁᎸ\t-13.1279\n▁ᎤᏄᏖᏒ\t-13.1279\n▁ᏚᏅᏍᏓᏕᎸ\t-13.1279\nᏪᎷᏁ\t-13.1279\n▁ᎠᏍᎩᏗᏍᎨ\t-13.1279\n▁ᎬᏩᏡᏗᏍᎬ\t-13.1279\nᏩᏳᏤᎴ\t-13.1279\nᎳᎨᏯᏛᏤᎢ\t-13.128\nᏏᏛᏂᎸ\t-13.128\nᏕᎶᎰᏎ\t-13.128\n▁ᎠᏂᏯᏙᎯᎲ\t-13.128\nᏓᏍᎩᏁᎵ\t-13.128\nᏓᏟᏃᎮ\t-13.128\nᏩᏛᎡᎴ\t-13.128\n▁ᎠᎫᎢᏍᏗᏍᎬ\t-13.128\nᏩᏗᏎ\t-13.1281\n▁ᏚᏭᏓᏔ\t-13.1281\nᏓᏆᏙᎥ\t-13.1281\n▁ᏭᏘᏅᏍᏔᏅ\t-13.1281\nᏬᏪᎳᏅ\t-13.1281\nᎵᏍᏓᏗᏍᏗ\t-13.1281\nᏓᏓᎶᏂ\t-13.1282\nᎬᎪᏩᏘ\t-13.1282\n▁ᏐᏈᎵᏗᎦᎵᎠᏅ\t-13.1282\n▁ᎢᏨᎨᏳᏒ\t-13.1283\nᎩᏍᎦᏅᏨ\t-13.1283\nᏂᏆᏘᏍᏗ\t-13.1283\nᏄᎬᏫᏳᏌᏕᎩ\t-13.1283\n▁ᏃᎩᏅᏁᎸ\t-13.1283\nᎦᏓᏅᏔᏩᏕᎪ\t-13.1283\nᏂᎧᎿᏩ\t-13.1283\nᎩᏍᏆᎸᎡ\t-13.1284\nᏩᏗᏙᎮᏍᏗ\t-13.1284\n▁ᎠᏄᎯᏍᏗᏍ\t-13.1284\nᏓᏆᎴᎳ\t-13.1284\nᏑᎵᏍᎬ\t-13.1285\nᎪᏪᎳᏅᎯ\t-13.1285\nᏣᏕᎰᎯ\t-13.1285\n▁ᎤᏓᏱᎸ\t-13.1285\nᎭᎵᎮᎵᎩ\t-13.1286\n▁ᏂᎬᏩᏛᏁᎴ\t-13.1286\nᏅᎨᏫ\t-13.1286\n▁ᎬᏩᏁᏄᎳᏍ\t-13.1286\n▁ᏓᏂᏄᏙᎬ\t-13.1286\nᏓᏁᎪᏴᏓ\t-13.1286\nᎵᎶᎲᏍᎩ\t-13.1287\n▁ᎠᏓᏴᏍᏔᎩᏍ\t-13.1287\n▁ᎤᏁᏐᎠᏒ\t-13.1287\nᎤᏡᏗᏍᎩ\t-13.1287\nᎵᏍᏚᎢ\t-13.1287\nᏅᎪᎳᏛ\t-13.1287\nᏌᏯᏍᏗᏕᎩ\t-13.1287\nᏩᏩᏙᎣ\t-13.1287\nᎾᎦᏎᏍᏛ\t-13.1287\nᎩᏍᏙᎡ\t-13.1287\n▁ᎤᎾᏓᏄᎸ\t-13.1287\n▁ᎤᏗᏩᏒ\t-13.1287\nᎪᎯᏳᏗᏍᎩ\t-13.1287\nᎬᎥᏍᎩ\t-13.1287\nᎦᏴᎳᏥᎶᏛ\t-13.1287\nᎾᎵᏃᎮᏔᏁ\t-13.1288\nᏥᎧᎯᏴ\t-13.1288\nᎠᏥᏁ\t-13.1288\nᏂᏲᎯᏍᏔ\t-13.1288\n▁ᏛᏓᎴᎲᏍᎬ\t-13.1288\n▁ᎢᎬᏩᏂᎩ\t-13.1288\nᎣᎩᎷ\t-13.1288\n▁ᏕᎭᏕᏲᎲᏍᎬ\t-13.1289\nᏄᏬᏍᏛᎩ\t-13.1289\n▁ᏣᏍᎦᎸ\t-13.1289\nᎤᏍᎦᏃᎵ\t-13.1289\n▁ᎤᎾᏄᎪᏤ\t-13.1289\nᎦᏅᏌᏗ\t-13.1289\n▁ᏂᏚᏂᏪᏎᎸ\t-13.1289\n▁ᎤᏂᎷᎯᏍ\t-13.1289\nᏍᏔᏂᏙᎲ\t-13.1289\nᎾᏅᏓᏗᏍᎨ\t-13.1289\n▁ᎦᏓᏙᎵᏍᏗᏍ\t-13.129\nᏂᏴᎯᎰ\t-13.129\nᎠᏫᏅ\t-13.129\n▁ᎴᎹ\t-13.129\n▁ᎤᏡᏗᏍ\t-13.129\nᎵᎮᎵᏤᎰᎢ\t-13.129\nᎾᏓᏙᎵᏍᏓᏁᎲ\t-13.129\nᏍᏆᏚᎸ\t-13.129\nᎾᏓᏃᎮᎵᏙᎯ\t-13.129\n▁ᏱᏥᏩᏘᏍᎪ\t-13.129\nᏚᎢᏍᏔᏁ\t-13.129\nᎦᏎᏙ\t-13.1291\nᏟᏅᏨ\t-13.1291\nᏓᎪᏩᏘ\t-13.1291\n▁ᏗᎦᏃᎸᏗᏍ\t-13.1291\nᏗᎦᎴᏲᏨ\t-13.1291\nᎾᎴᏲᎥ\t-13.1291\nᎵᏍᎫᏮ\t-13.1291\nᏯᏍᏚᏎᎢ\t-13.1291\nᏌᏯᏍᏗ\t-13.1291\n▁ᎢᏧᏅᏁ\t-13.1291\nᏣᏪᏐᎸᏍᏙ\t-13.1292\nᏔᎸᎩᏓ\t-13.1292\nᏦᏨ\t-13.1292\n▁ᏅᎬᏩᏪᏎᎸ\t-13.1292\n▁ᎡᏥᏯᏅ\t-13.1292\n▁ᏑᎾᏓᏡ\t-13.1292\n▁ᎬᏩᏜ\t-13.1293\n▁ᏗᏄᎪᏗᏍ\t-13.1293\n▁ᎢᏣᎫᏴ\t-13.1293\nᎾᏓᏅᏓᏕᎢ\t-13.1293\nᏂᏂᎬᏎᎲ\t-13.1293\n▁ᎨᏥᏃᎮᏍᎬ\t-13.1293\n▁ᎦᎷᎪ\t-13.1293\nᏄᎩᏣᏁ\t-13.1293\n▁ᏱᎦᎾᏄᎪ\t-13.1294\n▁ᏚᏂᎵᏬᏤ\t-13.1294\nᏣᏛᏅᎢᏍᏔᏅ\t-13.1294\n▁ᏕᎦᏚᏓᏕᏫᏒ\t-13.1294\nᎾᎵᎮᎵᎨᎢ\t-13.1294\nᏪᏙᎵᏤᎢ\t-13.1294\nᏥᏌᎳᏙ\t-13.1294\nᏍᎩᎾᎾᏂ\t-13.1294\n▁ᏱᏥᏩᏘ\t-13.1294\nᏐᏢᎢᏍᏗᏍᎬᎢ\t-13.1294\nᏓᎵᏁᎯᏕᎸ\t-13.1295\nᏗᏣᏁᎶ\t-13.1295\n▁ᏯᏆᏛᏁ\t-13.1295\n▁ᎤᏴᏓᏆᎶ\t-13.1295\nᏨᎪᏩᏘ\t-13.1295\n▁ᎾᎩᏪ\t-13.1295\nᏩᏙᎯᏴᏓ\t-13.1295\nᎦᏓᏅᏖᏍᎬ\t-13.1295\nᎤᎸᏓᎸᎥ\t-13.1295\n▁ᎤᏓᏱᎴ\t-13.1295\n▁ᏗᏟᏰᎵᏓᏍ\t-13.1295\n▁ᎨᎬᏬᎣ\t-13.1295\n▁ᏧᏬᏑᎴ\t-13.1296\nᏥᏚᏙᎥ\t-13.1296\n▁ᎣᎯᏍ\t-13.1296\n▁ᏂᏍᎩᏯᏛ\t-13.1296\n▁ᏦᎯᏳᏎᏍᏗ\t-13.1296\nᏠᏯᏍᏔᏅᎩ\t-13.1296\nᏴᏍᏔᏁ\t-13.1296\n▁ᏍᏊᏓᎳ\t-13.1296\nᎦᏐᎠᏍᎬ\t-13.1296\nᎤᏣᏔ\t-13.1297\n▁ᎤᏩᏩᏙ\t-13.1297\n▁ᏗᎦᏯᎩᏍ\t-13.1297\n▁ᎣᎦᏅᏅ\t-13.1297\n▁ᏫᎨᏥ\t-13.1297\n▁ᎬᏩᏂᎪᏩ\t-13.1297\nᏕᎦᎶᎨᏒ\t-13.1297\nᏗᏜ\t-13.1297\nᎩᏓᏟᏅᏯ\t-13.1297\n▁ᏯᏂᏲ\t-13.1297\nᎵᏍᏆᏛ\t-13.1298\nᎨᏥᏍᏚᎲ\t-13.1298\nᏔᏂᏗᎨ\t-13.1298\nᎤᎵᏬᏨ\t-13.1298\nᏘᏍᏕᏍᏗ\t-13.1298\nᏟᏴᎲ\t-13.1299\n▁ᎤᎾᎩᎳᏫ\t-13.1299\n▁ᎥᎪᎩ\t-13.1299\nᏂᎧᎵᎢᏍᏔ\t-13.1299\n▁ᎤᎶᏐᏂ\t-13.1299\nᎧᏁᎢᏍᏗ\t-13.1299\nᏍᏕᏯᏓ\t-13.1299\n▁ᎬᏩᎾᏰᏍ\t-13.1299\nᎥᎩᏁᎸ\t-13.1299\nᎾᏂᎩᏎ\t-13.1299\nᎤᏟᏂᎩᏓ\t-13.1299\nᏘᏴᏛ\t-13.13\n▁ᏄᏂᎬᏫᏳᏌᏕ\t-13.13\nᏓᏁᎳᏁᎸ\t-13.13\nᎦᏠᏏ\t-13.13\nᎦᏙᎥᎯᏍᏙᏗ\t-13.13\nᎤᏠᎠ\t-13.13\n▁ᎨᏥᏐᏅᎢᏍᏔᏅ\t-13.13\nᏔᎷᎩ\t-13.13\nᏬᎯᏳᏒ\t-13.1301\n▁ᏚᏂᎦᎵᏒ\t-13.1301\nᏂᏃᎯᎵᏙᎯ\t-13.1301\nᎳᏫᏎᎸᎩ\t-13.1301\nᏪᏓᏍᏗ\t-13.1301\nᎬᏋᏁᏗ\t-13.1301\nᏁᏉᏨ\t-13.1302\nᎵᏬᎢᏍᏗ\t-13.1302\nᎢᏳᏛᎿᏕᎩ\t-13.1302\nᎯᏳᎲᏍᎨᏍᏗ\t-13.1302\nᏆᎫᏴᎡᎲᎢ\t-13.1302\n▁ᏂᎨᏥᎳ\t-13.1302\nᏖᎵᏙᎩᎯ\t-13.1302\nᏙᏱᏨ\t-13.1302\n▁ᎤᎵᏍᎫᏫ\t-13.1302\nᎵᏰᎢᎵ\t-13.1302\n▁ᏓᎾᎵᏍᏓᏴᎲ\t-13.1302\n▁ᎢᏯᏆᎵᏍᏓᏁ\t-13.1302\nᎿᏩᏛᏍᏗ\t-13.1303\nᎤᏤᎵ\t-13.1303\nᏌᎯᎸ\t-13.1303\nᎾᎥᏂᎨ\t-13.1303\n▁ᏧᏙᏓᏆ\t-13.1303\nᎴᏫᏍᏙᏗ\t-13.1303\nᎪᏍᏔᏴ\t-13.1303\n▁ᎢᏯᏥᎸᏉ\t-13.1303\n▁ᏧᏬᏪᎶ\t-13.1304\nᎧᏃᎮᎭ\t-13.1304\nᏫᏚᏯᏅᎮ\t-13.1304\nᏨᏃᎮᎮ\t-13.1304\nᎬᏫᏳᏎᏍᏗ\t-13.1304\nᎭᏲᏛ\t-13.1304\n▁ᎠᎩᏍᏆᏂ\t-13.1304\nᎧᎹ\t-13.1304\n▁ᎤᏙᎴᎰ\t-13.1304\nᏇᏕᎵ\t-13.1304\n▁ᎢᏣᏓᏙᎵᏣ\t-13.1304\n▁ᎨᎪᏢᏅ\t-13.1304\n▁ᏭᏢᏁ\t-13.1305\n▁ᎠᏓᏛᏂᏗᏍ\t-13.1305\nᏛᏛᎲᏍᎨᎢ\t-13.1306\nᎴᏅᏗᏍᎪ\t-13.1306\nᎠᎦᏙᎥᎯᏍᏗ\t-13.1306\nᎦᎾᏍᏛ\t-13.1306\nᏕᏥᏯᏁᎶ\t-13.1306\n▁ᏱᏙᎩᎸᏫᏍᏓᏁ\t-13.1306\n▁ᏱᏗᏥᎸᏫᏍᏓᏁ\t-13.1306\n▁ᏱᎬᏲᏎ\t-13.1306\nᏥᏏᎾᏒ\t-13.1306\n▁ᎤᏣᏪᏐᎸᏍ\t-13.1306\nᏧᏅᏏᏓᏍᏗ\t-13.1307\n▁ᎦᎬᏩᏐᏢᏕ\t-13.1307\nᏓᎩᏲᎯᏎᎸ\t-13.1307\n▁ᎤᏬᏑᎶᏨ\t-13.1307\nᏆᏓᏬᏅ\t-13.1307\nᎵᏏᎾᎯᏍ\t-13.1307\n▁ᎤᏘᏍᏛ\t-13.1308\n▁ᎤᎧᏲᏛ\t-13.1308\nᏱᏙᎨ\t-13.1308\n▁ᏗᎨᎦᏁᎶ\t-13.1308\nᏗᏲᎱᎯᏎ\t-13.1308\nᎠᏘᏍᏓᏁ\t-13.1308\nᏔᎳᏚ\t-13.1308\n▁ᏓᎾᏣᏅ\t-13.1308\n▁ᎤᏂᎾᏝᎾ\t-13.1308\nᎫᏬ\t-13.1308\nᏯᏪᏐᎴ\t-13.1309\n▁ᎬᏩᎨᏳ\t-13.1309\nᎷᏥᏗᏒ\t-13.1309\n▁ᎠᏂᎦᏯᎷᎥᏍ\t-13.1309\nᎿᏬᎡ\t-13.1309\n▁ᏗᎧᎵ\t-13.1309\n▁ᏧᎸᏫᏍᏓᏁᎸ\t-13.1309\n▁ᏣᎾᏓᎾᏏᏂᏙ\t-13.1309\n▁ᎭᎢᏒ\t-13.1309\nᎵᏍᏛᏧᏅ\t-13.1309\nᏅᎦᎳᎲ\t-13.1309\nᎧᏂᎩᏓ\t-13.1309\nᏓᏂᏙᎨ\t-13.1309\nᎧᎵᎢᏍᏙᏗ\t-13.131\nᏙᏑᎴᏗᏱ\t-13.131\n▁ᎢᏍᎩᏳᏍ\t-13.131\nᏫᏍᏙᏗᏱ\t-13.131\nᏗᎦᎵᏍᏙᏗᏍᎨ\t-13.131\n▁ᏥᏥᎪᏩᏘ\t-13.131\n▁ᏱᎦᏬᏂ\t-13.131\n▁ᏄᏍᏗᏕᎬ\t-13.131\n▁ᏱᏚᎾᏓᎴ\t-13.1311\n▁ᎠᏥᏓᎦᎸ\t-13.1311\n▁ᏫᏓᏙᎴ\t-13.1311\nᎵᏖᎸᏅᎩ\t-13.1311\nᏯᏪᏐ\t-13.1311\nᏗᏛᎮᎢ\t-13.1311\n▁ᏧᏓᏆᏙ\t-13.1311\n▁ᎤᏓᏕᏲᏗ\t-13.1311\n▁ᏧᎾᏓᏙᎵᏍᏓᏁᏗ\t-13.1311\n▁ᎤᏍᏓᏩᏗᏓᏍᏗ\t-13.1312\n▁ᎬᏔᏲᏎ\t-13.1312\n▁ᏗᏧᎪᏙᏗ\t-13.1312\nᎱᏍᏕᏎᎴ\t-13.1312\n▁ᎥᏆᎸᏍᏗ\t-13.1312\nᎩᎵᏲᏤᎴ\t-13.1312\n▁ᏣᎩᏰᎸ\t-13.1312\nᏂᏄᎸᏅ\t-13.1312\nᎦᎶᏇ\t-13.1313\nᏖᎵᏙ\t-13.1313\n▁ᏩᎵᏰᎢᎶᎯ\t-13.1313\n▁ᏗᎾᏦ\t-13.1313\nᎵᏠᏯᏍᏛ\t-13.1313\n▁ᏗᎩᏲᏢ\t-13.1313\nᎪᏁᎶᎯᏎᏗ\t-13.1313\n▁ᎢᏨᎪᏩᏛ\t-13.1314\n▁ᎦᎾᏄ\t-13.1314\nᎬᏩᏝ\t-13.1314\n▁ᏤᏥᎤᏍᏕᏎᏗ\t-13.1314\n▁ᏱᏄᏪ\t-13.1314\n▁ᎠᏆᏢᏈᏍᏗ\t-13.1314\nᏪᏙᎵᏍᏗ\t-13.1314\n▁ᎤᏂᏴᏔᏂᎯᏍᏗ\t-13.1314\nᏥᏯᏛᏛᏅ\t-13.1315\nᎩᎵᏲᏥ\t-13.1315\n▁ᎤᎾᏓᏍᏔ\t-13.1315\n▁ᎢᎬᏪᏅ\t-13.1315\nᎾᏛᏛᎲᏍᎨ\t-13.1315\n▁ᏱᏓᏂᎳᏫ\t-13.1315\nᎾᏫᏛᎲᎩ\t-13.1315\n▁ᎠᏂᏔᏲ\t-13.1316\nᏟᏰᎵᏓᏍᏗ\t-13.1316\nᎵᏍᏓᏁᎸᎢ\t-13.1316\n▁ᏳᎨᏳ\t-13.1316\n▁ᎤᏍᎫ\t-13.1316\nᏳᎪᏓᏁᎵ\t-13.1316\nᏓᏕᎮᏍᏗ\t-13.1316\n▁ᏚᎵᏂᏆ\t-13.1316\n▁ᎢᏦᎯᏳᏗ\t-13.1316\n▁ᏓᎦᏥᏲ\t-13.1316\n▁ᎤᏂᏂᏴᏗ\t-13.1316\nᏂᏨᏴᏁᎭ\t-13.1317\nᏍᏓᎦᎸ\t-13.1317\n▁ᎢᏳᏩᏂᏌ\t-13.1317\nᎷᏏᎵᎻ\t-13.1317\nᎤᏂᎲ\t-13.1317\nᏣᏙᎴᎰᏍᎨ\t-13.1317\n▁ᎨᏥᎩᎵᏲᎢᏍᏙᏗ\t-13.1317\nᏰᎢᎶᎯ\t-13.1317\nᎭᎵᏍᏗᎭ\t-13.1317\nᎳᏛᎥᎦ\t-13.1317\nᏓᏙᎵᏍᏙ\t-13.1318\nᏓᏙᏕᏍᏗᏍᎩ\t-13.1318\nᎠᏡᏗᏍᎬ\t-13.1318\nᏂᎸᏫᏍᏓᏁᎯ\t-13.1318\nᎠᏁᎶ\t-13.1318\n▁ᏗᏒᏆᎶ\t-13.1318\nᎩᎵᏲᎢᏍᏙᏗ\t-13.1319\n▁ᎢᏯᏆᎵᏍᏙᏗ\t-13.1319\n▁ᎢᏧᏕᏘᏴ\t-13.1319\n▁ᎤᏍᏉᎵ\t-13.1319\n▁ᎣᎦᏕᏯᏙᏗ\t-13.1319\n▁ᏧᏂᏲᎱᏒ\t-13.1319\n▁ᏚᏯᏅᎮ\t-13.1319\n▁ᏛᎦᏓᏅ\t-13.1319\n▁ᏓᎾᏤᎨᏍᏗ\t-13.1319\nᏙᏛᎩᎸᏫᏍᏓᏁᎵ\t-13.1319\n▁ᏅᏩᏛᏁ\t-13.1319\nᏂᏌᏄᎦ\t-13.1319\nᎨᏍᎩᎥᏏᏉ\t-13.1319\nᏜᏍᏔᏅᎯ\t-13.1319\n▁ᏄᏂᎪᎸ\t-13.1319\n▁ᎠᏂᏏᏴᏫ\t-13.132\nᎾᏙᏓᏆᏍᎬ\t-13.132\nᏳᏓᏁᎭᏰᏃ\t-13.132\nᏓᏅᏓᏗᏍᏙᏗᏱ\t-13.132\nᏖᎸᎲᏍᎪᎢ\t-13.132\nᏂᏩᎾᎦᎳ\t-13.132\n▁ᎭᏛᏓᏍ\t-13.132\nᎾᏂᏏᏗᏱ\t-13.132\nᏥᏗᏒᎩ\t-13.1321\nᏓᏁᏟᏴᏎᎬ\t-13.1321\n▁ᏯᏂᏍᎦ\t-13.1321\nᏂᏏᎾᏌ\t-13.1321\n▁ᏥᎦᎷᎯᏍᏗ\t-13.1321\n▁ᏫᎨᏣᏲᎵ\t-13.1321\n▁ᎬᎩᏁᏤᎸ\t-13.1321\n▁ᎦᏃᎸᎥᏍ\t-13.1321\nᏕᎯᏳᎪᏓᏁ\t-13.1321\n▁ᏧᎾᏁᎳᏗᏍᏗ\t-13.1321\n▁ᏚᏂᏲᎯᏎᎸ\t-13.1322\n▁ᏅᏓᏩ\t-13.1322\n▁ᏚᎦᏒᏍ\t-13.1322\nᎦᏄᏖᏲ\t-13.1322\n▁ᎤᏂᎵᏦᏩ\t-13.1322\n▁ᎤᏓᏙᎵᏍᏔᏅᏎ\t-13.1322\n▁ᏧᏂᏴᏍᏕᏍ\t-13.1322\n▁ᎣᎩᏃᎮᏍᎬ\t-13.1322\n▁ᎦᎶᎯᏍ\t-13.1322\nᎾᎵᏍᏓᏁᎴᎢ\t-13.1323\nᏠᏒᏎ\t-13.1323\n▁ᏲᏨᏗᏍ\t-13.1323\n▁ᎤᎶᏒᏍᏕ\t-13.1323\nᏬᎯᏍᏗᏍᎩ\t-13.1323\nᎦᏌᏯᏍᏓ\t-13.1324\nᏣᏤᎵ\t-13.1324\n▁ᏫᎩᎾᏄ\t-13.1324\nᏥᎧᎿᏩᏛᏍᏗ\t-13.1324\nᏧᏤᎵ\t-13.1324\n▁ᎢᏧᏅᏁᎸ\t-13.1324\nᏁᏙᎸᎩ\t-13.1324\nᏱᏄᎳ\t-13.1324\n▁ᏅᏓᏳᎶᎯᏍᏗ\t-13.1324\n▁ᏍᏆᏛᏅᎢᏍᏓᏁᎸ\t-13.1324\nᏯᎧᎲᏍᏗ\t-13.1324\nᏩᎾᎦᎸ\t-13.1325\nᎵᎬᏩᏢ\t-13.1325\nᏰᎵᏏᏙᎴᎢ\t-13.1325\n▁ᏓᏥᏛᏔ\t-13.1325\nᎮᏙᎭ\t-13.1325\n▁ᏱᏂᏣᎵᏍᏔ\t-13.1325\nᏨᎾᏄᏫᏎᎭ\t-13.1325\n▁ᎤᏂᏍᏕᏲ\t-13.1325\nᎳᏬᎯᏍᏗ\t-13.1325\nᏍᏈᏛ\t-13.1325\nᎳᏑᏝ\t-13.1325\nᏆᏗᏍᏗ\t-13.1325\n▁ᎬᏁᏤᎲ\t-13.1325\nᏥᎧᎿᏩᏗᏓᏍᏗ\t-13.1325\nᎫᏍᎨᏂ\t-13.1325\nᎵᏍᎪᎸᏔᏅ\t-13.1326\nᏣᏓᎵᏁᎯᏕ\t-13.1326\n▁ᏗᏥᎦᏴᎵ\t-13.1326\n▁ᏗᏂᎧᎿᏩ\t-13.1326\nᎡᏙᏓ\t-13.1326\nᏂᏅᏍᏓᏕᎸ\t-13.1326\nᎾᎵᏥᏙᎲ\t-13.1326\n▁ᏚᏟᏰᎵᏙ\t-13.1326\n▁ᎠᏍᏕᏯ\t-13.1326\nᏣᏓᏄᎸᏗ\t-13.1326\n▁ᏚᏟᎶᏍ\t-13.1326\n▁ᏚᎧᎿᏂᏙ\t-13.1326\nᏓᏄᏴᏙ\t-13.1326\nᏚᏘᏅᏍᏔᏁ\t-13.1327\nᏍᏓᎢᏒᎢ\t-13.1327\n▁ᏓᏥᏴᏂ\t-13.1327\n▁ᏗᎨᎦᏬᏍ\t-13.1327\n▁ᎾᏕᏘ\t-13.1327\nᏍᏓᏱᏗᏍᏗ\t-13.1327\n▁ᎤᏂᎾᏄᎪᏤ\t-13.1327\nᎳᏍᏗᏍᎪ\t-13.1328\n▁ᎤᏂᏍᎦᎸ\t-13.1328\nᏂᎳᏫᎡ\t-13.1328\nᏥᏍᏓᏩᏕᎨᏍᏗ\t-13.1328\nᎯᏴᏁᏗ\t-13.1328\nᏓᏅᏖᎵ\t-13.1328\n▁ᎢᏯᎩᏳᏍᏈ\t-13.1328\nᏥᎿᏍᏕ\t-13.1328\n▁ᎤᎾᏓᏙᏢ\t-13.1328\n▁ᎠᎩᏁᎢᏍᏗ\t-13.1328\n▁ᏫᏥᎪᎥ\t-13.1328\nᏅᏆᎶᎥᎯ\t-13.1328\n▁ᏕᏥᏍᏕᎵᏍᎬ\t-13.1328\nᎾᏓᎪᎾᏗ\t-13.1328\nᎾᎩᎸᏁ\t-13.1328\nᎨᏥᏁᎢᏍ\t-13.1328\n▁ᏥᏅᏗᎦᎵᏍ\t-13.1329\nᏳᏗᏩᏏ\t-13.1329\n▁ᎧᏴᏐ\t-13.1329\n▁ᏑᏟᎶ\t-13.1329\nᏂᏅᎪᏫᏍ\t-13.1329\nᏓᏘᎾᎢ\t-13.1329\nᎵᏍᏡᏰᎢ\t-13.1329\nᏀᎢᏳ\t-13.1329\n▁ᎶᏩ\t-13.1329\nᎵᏍᏛᏧ\t-13.1329\n▁ᏄᏂᎬᏫ\t-13.1329\n▁ᎤᏧᏗ\t-13.133\nᏴᏔᏂᎯᏍᏗᏱ\t-13.133\nᎵᎡᎵᎬ\t-13.133\nᎨᎳᏗᏙᎭ\t-13.133\nᏟᏴᏌ\t-13.133\n▁ᏱᏍᎩᎧᏁ\t-13.133\nᏂᎴᏴᏍᎩ\t-13.133\nᎦᏌᏯᏍᏙᎢ\t-13.133\nᎦᏰᏣᎵᏍᏕ\t-13.133\n▁ᏧᎸᏫᏍᏓ\t-13.133\n▁ᎢᏥᎦᏔ\t-13.133\nᏂᏅᏫᏍᏔᏂᏙᎯ\t-13.133\nᏠᏤᏉ\t-13.133\n▁ᏧᎦᏴᎵ\t-13.133\nᏓᎸᎥᏍᎨ\t-13.1331\n▁ᎠᏂᎦᏴᎵ\t-13.1331\n▁ᏫᎯᎶ\t-13.1331\n▁ᏦᎦᏤᎵ\t-13.1331\nᏙᎩᎸᏫᏍᏓᏁᎭ\t-13.1331\nᏩᎦᏘᏯ\t-13.1331\n▁ᏱᎾᏆᎵᏍᏔ\t-13.1331\nᏛᏓᏅᎯ\t-13.1331\n▁ᏚᏌᎳ\t-13.1331\n▁ᏧᏬᎯᏳᏁ\t-13.1331\n▁ᎬᏆᏓᏙᎵᏍ\t-13.1331\nᏁᎶᏔᏅᎩ\t-13.1331\ni\t-13.1332\nP\t-14.5196\nC\t-14.5197\n(\t-14.5198\n[\t-14.5199\n"
  },
  {
    "path": "a4/test_outputs.txt",
    "content": " The Abraham said unto him, Moses and prophets; that he may be with them.\n “Well,” said Charlotte.\n Therefore shall not be ashamed of them, but shall not be given unto them, but to them that are in the flesh of their works.\n When he was going to the other side.\n And he shall say unto them, Because there be called by them, ye shall enter into the fire of fire, who is the devil and his angels.\n not in the evil work, but the righteousness of righteousness;\n which is not worthy of you, neither is no more with him:\n And there was no root of them, that the faith of faith were with them.\n And they were all amazed, they said to another, Know ye, not all these things are of Galilee?\n He took one of his own hand, but I’m not see the way of the mountains, but he could not be able to see it.\n Therefore is the throne of God before the throne, and found nothing of the temple, that day and night: and he that sitteth on the throne shall be with him.\n This is this to pass to God, for God hath been given to the Son of the world, that I may eternal life, that I may eternal life.\n But if we cast out demons in the temple of God, ye shall not see the kingdom of God.\n I guess I was a tree in the tree, and I would have a tree.”\n If he would make one of them, that ye may make one of them, all that thou hast made me: and if it is one of them, that he may be one for all.\n It went into the air and wiped their noses and ate.\n Even as it is written in the law of the law in the law of Israel;\n It was like so as it was in the day, the day of the day was in the day, and it was in the morning.\n Wilbur stood asleep.\n And they shall speak in the end of the tabernacle, to the rest of the rest of the Gentiles; but hope, that ye may be saved, ye may give me to go away from me;\n I’m going to me.\n He sat on the edge of the other side, he put them into heaven.\n I started a short man to keep a short man to keep a short man, and then the word that is at the ground, then then I was like a knife in the ground.\n Her egg sac sac.\n And as he had seen it, he took bread, and gave thanks, he gave them, and gave them, and said, This is my body.\n Perry went back to the ground and the sounds of the man, wet wet.\n Not me.\n And when they were come to pass, they were astonished, they began to say, Who is this, who did also also also?\n This was three days, when he went out again unto the second time.\n And if thy hand shall cause thee to stumble, it shall be cut off, and thou shalt eat: for it is good for thee, and thou shalt make it: for it is good for thee, that thou mayest be cast into the body.\n “I don’t feel life for the barn’s barn.\n But there was not a curse, even as it is a serpent; and when it was come, as I have sent you, even as ye are in Christ.\n And they shall not say that it is written, that the stones of the chief corner;\n “Oh, Charlotte,” she said.\n “I’m going to the Ferris wheel, but I’m not need.\n I say unto you, I will keep you; for it is, I will give you: I pray thee, ye shall die.\n whose Father is greater than all, and I cannot be able to my Father.\n The spider seemed to the web, This is the web seemed to the spider.\n It was like the winds of the air.\n Yea, who is the law of the law, but the law of the law,\n And he said unto him, Friend, why do ye that thou art here that thou art? And they were afraid.\n Salute another with love with love.\n <unk>II.\n For whatsoever is no one that is in the things; he that doeth all things are the things of God.\n “What are you going to do?” asked asked.\n And Jesus answered and said, Nay, I know not the way of your fathers, what ye shall see the cup of the cup of the cup of the cup of the cup, and it is able to do with me?\n And they took the fire in the fire, and the fish, and the fishes.\n But though it is good for thee for thee.\n “I’m going to eat, and his tail was sitting in the sun.\n And when we had seen, we saw, and set on the right hand, and found on the right hand of the ship; and there was a ship of the ship.\n Now I say, And ye shall speak in the name of the Lord, that ye should not receive the rest of the Gentiles according to the rest of the Gentiles,\n Know ye not, that the sabbath day of the sabbath day in the sabbath, and not seen the sabbath, and have not seen the things which are in the sabbath.\n You'll get you, Wilbur!\n Remember the law, that thou shalt not commit adultery, Thou shalt not steal, Thou shalt not steal, Thou shalt not steal, thy father, and thy mother.\n And when he went to the door of the door, and said unto Peter, Art thou also this man? I am not.\n For this is the love of God, that he may keep his commandments to the law; and the law is not.\n “I don’t think it’s going to sleep, Wilbur, in the corner of his mouth and Wilbur would not be the way of Charlotte’s children.\n And in the blue, of gold, with gold, with their handss.\n <unk>erily I say unto you, This generation shall not pass away.\n You’re all my morning.”\n And there are the disciples of the disciples.\n and when I beseech thee, I pray thee, I pray thee not a new law; I am not a new law;\n He went back to the dump and went back to his house.\n And, behold, this voice came out of heaven, This is my beloved son, that it is well.\n Then do good good tree, and shall be done evil evil evil; for it is a tree that is in the world.\n One morning Wilbur.\n Mrs milk.”\n And he that followed him, and saw him; and the flood was left, and took him.\n But let him know that the Son of man shall be in the world, then saith unto him, Arise, go up unto thee, and go.\n Bear, when we went up to the mountains, and he could not see the other side of the other, but he didn’t feel the other.\n <unk>nto the multitude of the multitude, because they were three days three days, because they were not three days;\n And they that were with him, they brought him out of the demons, and gave him a pig.\n For as I had known unto God, the people of the testimony of the testimony of the law, that they may eat and rulers, and for them that are in the same.\n For your faith were gone down from all men.\n And when they heard these things, and they that were with him, they were not afraid.\n Now there was a certain man named C<unk>sarea, a centurion, a centurion, a centurion, of the centurion.\n Fern was sitting in the edge of Fern, and I’d going to another.\n And he said also a parable unto them: There is one of the fig tree that he had taken out of the vineyard: and when he was come, he rose up, and he was not afraid.\n And I will give thee thee, and ye shall be with me: and because I have found me.\n And Philip said unto him, two hundred and the bread that is not able to make one of them.\n And he went out another, and said unto them that were bidden, and said unto them that were with us.\n When he fell down to the ground.\n Then another spider.\n And when John came to him, and began to say unto John the people; how are ye into the wilderness?\n But they told them not.\n But when I saw it, though I have found you in the book of the book, ye cannot do evil evil, but evil evil: for it is in evil evil evil.\n But we know that the truth is true, and I thought that they might have been made.\n He went back to be a long time to be a long time to be a long time to be the water.\n There was also that two thousand came also two talents.\n Then he went on the eleven disciples to the disciples,\n The Jews therefore said, What shall I tell him? saying, I will not go.\n When it came to the top of the air, and she sat down from the ground, and then it was a deep.\n And they brought him to him, Paul said unto him, The centurion came unto the centurion of the centurion.\n “Look out for it!” he Fern.\n Lurvy went and went up and went on his own hand.\n It was like a lot of wood.\n He that is born in his own body, that we might receive the body, that we might be made for a sin unto righteousness;\n This will I live with me.\n He would have a swim in the straw.\n And in the midst of the web.\n And they said, Because thou hast found in the presence of Moses, and in the country.\n And they that were not ignorant, let him hear. And they tell me, whose is the greatest?\n Mr.\n He was tired and happy.\n “Well, Wilbur!” said the old sheep.\n By faith he himself, and the child, and the child in the child, because that which was come to pass, because that he was promised, because he was promised.\n But I say, Is not I say unto you? yea, indeed ye have heard the world, and from the end of the earth.\n “Don’t worry, Templeton!” said Charlotte.\n But when he was gone away, but I’m not going to be, when he didn’t want to sleep.\n So that we may make one of each one of each one of God.\n For I say unto you, There shall not come unto you, until ye say, This is the name of the Lord:\n And he answered and said, There is no man in the house of Egypt, the sheep of the sheep of the house of Israel.\n Beloved, because it is love: for love is the God of God, and one of the God of God;\n And these things also Abraham with all these things, that they should take them out of the first; and the first part of the Lord is faithful, even the Lord, who is in peace.\n Charley started with a stone in a rock, and put it into the top of his head.\n From the <unk>ueens, and rolled to the Ridges, and I’d like the Ridges of the Nation.\n “Yes, it is,” said Wilbur.\n <unk>p!\n And the last egg, he said, I will surely my son.\n “It’s name of him.\n “Well,” said the goose.\n “Good!” said Charlotte.\n They had seen the ground and then I had seen the best of the Nation and their own ones that had been able to visit their eyes in their eyes.\n For there are all things that are in the sight of God, yea, and <unk>erily is in the sight of God.\n In that, I’ll make me in the midst of the colonel’s office, the people’s people did not because of the peoples of many peoples of people.\n These are they that are sown in the way, that they went into the country, and went down into the midst of his hands,\n Please, I'm going to sleep!”\n <unk>erily he said this, “I’m going to know this barn in the barn cellar, and then the goose had been done to the goose.\n It was a brown and then in the ground, he sat down with two legs, and he began to keep the top of the ground, and he began to keep the top of the ground.\n For ye shall say unto the bread of bread, and this cup, The cup of the Lord, until he come.\n And if he rose up into the fire, and cast it out of the fire, that they may put him to him; but if thou shalt say unto thee, that ye may kill him, and doth me.\n Take heed unto you, and pray thee, if any man thinketheth me, if any man hath given you, even as ye also do.\n But ye shall not be of them, for your Father because ye have your father before you.\n This is the work which thou hast given me, my beloved brother, even as thou hast given me to be comforted.\n And I pray thee, and be filled with me, and in my name;\n Wherefore, my beloved, beloved, ye know that the things which is with you?\n The days seemed up and the Zuckermans and the Zuckermans were gone up.\n And the scribes of the one came to him, when they heard that they were sick, and saw that he had said that he had said, What is the works of the law?\n <unk>nto the name of John, in the midst of the seven times; Grace with you and peace from you that is before you, and, who is the seven spirits which are before thee:\n Mr.\n The chief priests and the chief priests and the elders shall come to death, and they shall see.\n And there was one of the four living creatures seven angels and seven angels, and the wrath of God, even for ever and ever.\n But concerning the Son of man’s Son, whose Son are in the world,\n And behold, I came to pass; and I will say unto you, I will give thee to give unto you, to give it to every man according to his works.\n These which I had said unto them, that the first which I had brought them before them in the sight of my people, to all the Jews, all the Jews,\n But Peter sent up the door at the door. Now the other disciple, and the chief priests, the high priest, and the chief priests, and the chief captain of him.\n The horses seemed to the goose, but the goose said.\n This is a good world.\n They answered him and said unto him, I am Abraham of Abraham’s seed, and I will not see it?\n And he that sent him by the way of them, when he saw it in the sight of it.\n And he said unto her a man, half a half.\n But if thou refuse to him, let him go to the poor to the poor, that they might receive the poor, and the blind;\n They shall not be with a stranger, let it be no wise.\n So in the end of sin is sin; and sin is the death of death.\n One house in a house in the house of it rose up in the dirt, and put it into the top of the fire, and in the top of the fire, and in the two side,\n “I’ll worry about here,” said Fern.\n “I don’t know what I don’t know the word.”\n “Yes,” he said.\n And when I was come to because of the time, I was in the sight of the swine.\n Then he looked up into the air.\n that the righteousness of righteousness, which is in the resurrection, the resurrection of the resurrection; and they gave them away of the resurrection.\n It seemed to the end of the end of it was very grievous to be.\n Perry’t not going to be a good way to the West, but I guessed it was not.\n “Do Fern Fern?”\n He that would not be found in the house of the dead, and see Mr. Zuckerman.\n And straightway the voice of Jesus went out from him, and said unto him, Sirs is, because thou art in the earth?\n And the Sodom of Sodom and they were casting into the dust of the dust: and he gave them that he had given unto them, and that he might be fulfilled that were in the sight of God,\n And he began to say unto them a vineyard, and found a vineyard, and took the wine of the wine, and laid the wine into the field, and went out from the field, and went out to the field.\n But when he was going out from the way, when she was in her corner, when she was going to Fern, that she would go back into the corner.\n This Moses spake unto Moses, that he said unto the children of Israel, The Lord shall be given unto you in the sight of your brethren.\n “This, one seven?”\n When he had left him, and went away to the master’s wombs, that they might make all that were with him.\n “Oalutations!”\n And he went to sleep.\n And he arose, and went up into the country, and dwelt in the midst of Olives; and he entered into the country; and not of him not.\n The goose came to pass, the seven goslings had gone up and seven goslings.\n whose are they that are not of the world, that they might not receive them, that they might not be able to speak unto the gospel of Christ, even as God.\n But he spake unto him, and said unto his hand, Arise, and sat down. And he arose and sat down.\n But when they saw it, when they were going down, and his wife shall be taken away; but when they were come down, and saw that, when they were gone, and saw the heaven.\n That he was coming from the city.\n But the other part of some rose up, and fell upon the ship.\n And there came to him, and took him on him, and said unto him, If thou wilt, thou canst make me.\n Wherefore he sent to me, that he might send them out of them.\n It was a few time, one of the other fish.\n And in the day, it is written in the book of David, until day, even as it is said, This day is this day, if ye shall say, This day is this day, if ye shall say unto you, to this day.\n And he said, This is I said, I pray thee, I pray thee, that I may go with them: and there shall I speak in all my sight and my mother.\n I'll let you see the pig.\n Don't now now!”\n This Crockett had been done to be with her friends, if he could be cut off the ground, and he could not be able to be a balloon.\n He went back into his yard.\n Sack for the first Grounds of the Fair Grounds, all the Zuckermans’s life.\n This is the things which I have spoken unto you, that they might eat.\n For if it was not able, that they might not drink of him: for the works of it is one of the one, no more.\n And they brought all his hand.\n And when they were in those days, that they were able to God; but when he had seen all the people all the people,\n And the morrow he brought them out of them, and took them with them. And the morrow was Peter, and to him that were with him in the brethren.\n And Peter and John came with them with them, and asked him, and John came into the third hour.\n And some of them believed, and gave them forth to Paul and Silas, and many rulers of God,\n <unk>for this is written, The multitude of the Gentiles have gone up into their father, whose are the Gentiles, who is the dead, whose are the dead,\n These things are the church of the church: If they say unto you, that ye may be saved, the disciples of God, are good.\n And they said, John the Baptist; but some of Elijah is Elijah; and others, a certain prophets.\n For ye know that the grace of our Lord Jesus Christ, who was given for us, but for you because of the works of his life, that ye may be given unto you.\n When they were going down.\n The length of the court was gone up, and I had a stone of stone: and the third part of the boat was upon the ship; and when the boat was in the earth;\n And he sent unto him Peter and John, saying, Go into the passover, that it may be light.\n and he did not know that he did not know that in Jesus: for Jesus went away from them; for they were there.\n Arise, behold, the sower went forth; behold, the sower went forth;\n Templeton.\n And all men shall be for all men’s sake.\n And they knew not no man: and there was no more come out of heaven.\n Wash you, that every good work of good work, that it may be well-pleasing to the gospel of Jesus Christ: for it shall be for ever and ever.\n I am the light of the world, that he that believeth on me is no more in darkness.\n And when Jesus saw it, he said unto them, Why do ye not bread with bread? yet yet yet ye received not the word of your own?\n On the morrow was in the morrow, he was standing in the morrow,\n I beseech you in the woods in the woods, I was able to be able to see the woods in the woods, I was able to see with the women.\n It was in his own.\n But he charged them, and said, It is not lawful in the spirit of you.\n but this is written, It is written, Behold, I send my servant before thy face, that thou shalt take before thee before thee.\n “Look, it!” cried Wilbur.\n And the angel said unto him, Go on, and thou shalt eat his feet. And he said unto him, Give me and drink.\n And the women of the women shall be with women, as the men of women, as the women of women were evil.\n Wilbur lay down his head.\n Because of us, in the knowledge of knowledge, now now we may be justified in the Holy Spirit, and the Holy Spirit is in love.\n But he was very far to the city.\n But he said unto him, If we be not ashamed of Moses, and the prophets, not also also also, whosoever was dead.\n Where is a man? Where is the old? Where is a piece of the world? Is not to God that are in the world?\n Everybody was proud in my mouth and said to his life in the world.\n I’m not here.\n He answered and said unto him, Whosoever shall hear me in the second time;\n He looked at a long time of his own hand, and I'll be across the top of his head, and I'll tell him across the ground.\n The boy said to the tree,\n Jesus said unto them, If you say, I pray you, some of the fishes?\n None of them.\n For a man loveth his wife according to the love: and so also the woman also with her husband.\n There was not able to live.\n He went back into the house and looked in the house.\n And he was dead, and took his hands with his hands, and took his hands on the way of the robe, and his face with his face.\n And Mary Mary, he made an Adullamite, whose name was pure; and he rose up with his feet, and sat in his feet with his feet.\n I will take my peace and ever.\n In that day ye shall go, and ye shall die: and I will not see the Father;\n that the faith of faith shall be justified in the power of God, that ye may be filled in the last last.\n And some of them would see Wilbur, that he would not make it a fire in the fire.\n And when he had said, And he had said, and the mystery of the mystery of Mary, saying, This is he that is with him.\n I know thy works, that thou mayest eat and drink; but I will not hear thee, and thou shalt live.\n In the Cherokees of the Cherokee people had been in the mountains.\n This is a good pig and a good pig.\n For the other side of the river was gone out of the river, and Fern had left the creek.\n And when they had come to him, brethren, brethren’s brethren, to say to them that believe: and when he was come, he spake to God the word of God.\n It was a knife in the creek, and I saw the end of the end of the month, by the end of the grandstand.\n And they could not be able to pass, this is now.\n “It’s all all.\n But I don’t know that I’m not. I’m not what it is like a long time.\n And there was a great multitude, and in the ark, and came into the ark, and went away to the ark.\n “Can I see?” asked the doctor.\n Having to be baptized of your hearts;\n After a while, he saw her back, he saw his head.\n He climbed into the edge of his pocket, and came back into the blanket, and came back into the woods.\n The men of the people go up to the ground, and they could not go out from the ground.\n <unk>for we would have been in the days of Christ, that we may believe in Christ.\n whose are they that believe not, because of all the land of righteousness, in all things have been made manifest.\n For ye know that ye know, brethren, that they might not be vain.\n to whom the glory of the glory of the glory which is given unto us:\n And they shall keep the hem of his mouth.\n And when he came near, there came near, there was a mount of Olives, all the mount of Olives, all that were done by the disciples, and told him a great multitude.\n Therefore saith therefore, Thou shalt eat thee, and go up unto the dead, and go up unto the dead, and Christ shall come unto me.\n They went back to the smoke of the air and was a pomegranate in the air.\n Now now, Lord, the Lord hath eternal eternal, neither shall not be able to God, and glory for ever and ever: Amen.\n Jesus said unto them, Because of the will of the will of his will, and that his works may be given me, that I may go.\n And I heard a voice of all things that are in the temple, and an hundred and forty years of the children of Israel.\n Be not therefore for them: for there is not nothing, that it should not be manifested, neither is nothing, neither is nothing.\n And Jesus lifted up his eyes, and saw a great multitude, he saith unto Philip, Whence I have done.\n Know ye not this, that they may know the Christ, and shall keep the glory of his glory.\n And the servant of the servant shall say these things. And the sons of the house shall say unto his servant, Go into the city, and in the city, and to the poor, and to the blind, and the blind.\n If I was not a very grievous to the ground and she was like a balloon.\n And when he had come to him, and say unto him, The good thing shall come to pass, and the poor shall say unto you, Thou art a good thing, and in the sight of my fathers,\n Wherefore, brethren, I pray thee, ye are not flesh, who are in the flesh.\n Charlotte felt Charlotte, and Wilbur was going to Wilbur.\n Furthermore, and I guess it was in the way, he was in the air.\n And he spake unto him, saying, Take heed unto us, how shall ye do? how long shall I give you?\n Salute the glory of our Lord Jesus Christ, because two of the Lord Jesus Christ.\n And all that were gathered together, and the governor, and the Lord.\n He was tired and she was going to sleep.\n The people seemed not the Cherokees of the Nation.\n But as as as as as as they were going, as ye were baptized; ye are afraid.\n It was a little city.\n But whosoever shall deliver me before men, because of the angels of God.\n The next day of the day we were going up to the day.\n And he took his garments, as as as as as were as as as as as as as he could no man in the world; it was no man in the world.\n Then, the web,” said the web, “I’m going to sleep.\n They beseech you, I pray you: I know that I am full of good; and I will establish you in all things of all things.\n Wherefore, brethren, we have sent you with you in all things, in all things, for your faith.\n I’m going to stand in the killers.\n And some of the fish, a fish of a large fish, a fish of the fish.\n But he knew that he could not believe it.\n And when Jesus saw him, the multitude of many witnesses were gathered together, and the Holy Spirit, and said unto him, <unk>nto the Spirit, I pray thee, and be no more.\n Now these are the scriptures, that they may be filled in the sight of their works, even so also I also.\n And there was a great house in the house of the house’s head and the knife were rolled up to the whites and his teeth.\n And I saw their eyes, and the birds of the Nation, and the power of the bridegroom, and of the tree which is in all manner of life:\n With some of the web I'll get a web in the spider, and the spider’s spider.\n And the fish shall say, Thou shalt eat the serpent?\n And there is a vow in her hand; and he leadeth his own hand, and casting them into the air, and gave him; but thy disciples came to pass; but they could not.\n In the end of it was across the log, and I was in the top of the trail, when they were in the top of the trail, and in the end of the trail in the trail.\n And when they were gone away, straightway they were left.\n For a while the old man had been gone to the old man.\n If ye know this, I know it.\n The spider's a spider’s web in the barn and the barn was a pigpen in the barn.\n “I don’t want to die!” he cried in a loud voice voice,\n And when he had taken the four corners of the four corners of his own wood.\n As at the way, there came across across the dark side.\n James, the God and Jesus Christ, who is called unto you, who are called you,\n If I said not to see the people’s people’s people’s people, I would have a young man and my mother’s sake and my mother’s neck, and I would have seen you.\n For I am not to speak unto you, but I hope to see you, but I hope to give you unto you, except the Lord.\n This is the first and the law.\n But thou shalt make it with you, and make thy brethren with thy brethren.\n Jesus therefore said unto him, I pray thee, I pray thee with a sword, with all the sword, with all the sword with the sword.\n And he took his head with his head with his head, and took with him a flood, and put it upon his head with him, and put upon the breastplate,\n For there shall be one according to the sin, that he should not receive the power of God, that he might be fulfilled of God;\n Now when it was no more, he went up into the mountains.\n And they went up to the rest, and they would not believe.\n “I’m going to sleep,” she thought.\n I don’t know what I said.\n And the officers that heard these things were come to pass. And when they heard it, they heard that they heard.\n “How?” said Charlotte.\n The little tree, what? said the boy.\n Blessed are they that dwell in the house, when they shall come in the way: <unk>erily, verily, I will say, <unk>erily I will say unto you.\n “That’s all,” said Wilbur.\n The chief priests and the officers saw him, they cried out, they cried out, and cried out, and said, Thou shalt not die.\n When Mr. Zuckerman went back into the house, and took her back into the pigpen.\n And let us make their hearts in your love and love, love in love and work,\n But Paul cried with a loud voice, saying, Thou shalt not kill thee, for we are here in all.\n This would have been done, he said.\n And the devil took him away from the mountain, and took him to him that were in the midst of the earth.\n For the grace of your faith are faith with faith; and it is not for yourselves;\n And when he had gone him out of all the region of Siddim, and they that were sick, they were amazed, and filled, and they that had possessed with demons, and with their heart; and they took them.\n And I saw the third part of the four living, like a mouth, and his mouth, and his mouth was like unto his mouth; and the dragon opened his mouth according to his mouth; and he shall bear his mouth in the sight of his mouth.\n Then he was like the top of the ground and it was a little sheep to the ground.\n “I don’t noticed a pig of Charlotte.\n And to the angel of the church: This saith the Son of God:\n And straightway the ears of them that were opened; and he laid them out of them, and blessed him.\n But I say unto you, Thou shalt love your hearts, that ye may do good good, and do good good, and blessed them.\n And when they heard it, they brought him to the Lord.\n But now now the law of the law because of the dead, because that he was dead; that there is a new Spirit unto him, and not in the sight of all.\n Are you all?\n Fern had buried her hair in her hair.\n I say unto you, that they should send them away from them?\n Take heed unto you, all that are in the flesh of the flesh: not as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as as\n Wilbur.\n In the door of the door in the door, for the door of death, and to keep the way in the way to come to death.\n For the angels that are in the world, which is in the world, that he might be saved.\n And when they had sat down on the mountain, went on the mount.\n “You’s going on the web, there is a big-handed.”\n There was no any man.\n And in the blood of Stephen shall be in the blood of his blood; and when I came near to the dead, and to eat the dead, and to eat their garments.\n She went out of the river.\n As the children of children, the children, whoses, the children, too.\n Wherefore my heart is good, and I will eat with you, and also also in the hope of his hope;\n There was no more.\n Moreover the church also in the church where they were in the church. Salute my beloved beloved, who is in the beginning of Christ.\n This man shall come to pass in the sight of the Lord, and bring them up in the sight of the people, but as it was gone up.\n But the God of God is with grace, beingcause of our own salvation;\n The hot was hot.\n For whosoever shall be with him, and he shall die: but whosoever shall not be left, he shall be left.\n The younger people stood at the kitchen, and he walked back to them.\n And Jesus went forth to the disciples to the disciples.\n They were of the people rose up on the two men, and they took the other.\n And he that is in the temple, all the temple, and the flocks, and the sheep, and put it into the sheep, and gave them up to drink.\n Therefore then this is the birds of the birds, and I will send unto you, This shall I give you, and I will say unto you, I pray thee, and ye shall see it.\n Jesus said unto him, Dost thou not this, and if it is good, thou shalt receive the glory of God.\n And it was good good for God, that I may be given unto you, and with you.\n Jesus therefore therefore, when he was in all, that they might be fulfilled, that the scripture might be fulfilled, that he might be saved.\n Every one that walketh in the days of Christ, even as we have heard the mystery of God.\n One evening, when she had been across the top of the air and I’d her her wife to keep my wife, and I said.\n Don't tell you a little fish!\n But I say unto you, that Elijah came, and they knew not, but they would have no more. And the Son of man shall be according to the Son of man.\n If it came to the Fair, and he walked back to keep it for it.\n It seemed to be a minute in the mountains.\n And he said, <unk>erily I say unto you, This is the poor more than the more.\n One man shall say unto me that I am my name’s sake: and whosoever receiveth me, I am not of you, but that he sent me.\n He had two two men, and children and children and children and children.\n From it, that they would have something’s that which was something’s soil.\n And when he was come into the sea, he was filled with her hand: and they were afraid, and said unto him, Teacher, thou wiltst thou nothing?\n And there is no man that believeth on the lamp, neither shall not make it for it, neither is it, whose name is the light.\n The geese cheered.\n If ye shall ask in my name, that he may do.\n to whom he was come, and saw the grace of God, and he spake to the power of all the power of the Lord.\n In that day Jesus went into the house of Jesus, and the breadth thereof.\n And he called our brother’s brother, and I was afraid to see his brethren; but he would not see that it is not to come to come to come to come to death.\n And when he saw that he was round about the region round about, and went out of the heart of the heart, saying unto the man. And he went out from his hand, and let him eat.\n and not only, but God also with our Lord Jesus Christ, that ye may receive this day.\n He wanted to the new new world, he was peaceful.\n For our God abideth with us in Christ Jesus.\n And Philip, brethren, and Thomas, and Thomas, and James the son of Zohar,\n And in the synagogues, there was a spirit of unclean spirit, and rose up,\n And the next day, a boy.\n It was a long of wood, and I didn’t catch it a good way to the soldiers.\n I rose up with me.\n The heart of his heart shall not be ashamed of his heart, but in the sight, and in the sight of his life?\n “I don’t get on the other side of the air,” he said, “I’m going to get up.\n And he said unto them, What is a little multitude? John John.\n And he put the right hand into the hand of the hand; and straightway he left his feet, and took him on his hand.\n He sat on the table and his hands on the top of his hands and sat down on the top of his hands.\n The boy said, We’m going to the rest.\n This are the egg sac.”\n It was a good thing.\n Or Spirit I say unto you, Thou shalt not know thy soul: for what is I to do that I am of the Spirit?\n If I say unto you, I will not go unto you: for it is indeed, because I have seen you; but because of it is not, because I am not lawful for me.\n For they said, Take heed out of the land.\n And when Herod was taken away, and put him away his feet, and commanded him.\n Because of the beginning of the Lord Jesus our Lord Jesus, that he might receive his life in us.\n And I saw them that sat on the way; and the time of this time shall be done unto all these things.\n Grace to you and peace from God, and the Lord Jesus Christ.\n O Lord, ye that are of you, that ye may be one of you; but whosoever ye shall receive it, that no man may be saved.\n “I’m not going to sleep in the midst of the country.\n He fell down his head, and his knees, and his neck.\n By faith he shall be a stranger in the land of the land, as a great country, in the land of the land, even as many as Isaac with Jacob.\n What then shall they do? Shall I come with me? or he that is love, and the Spirit?\n And they made the other side of the gold.\n And when he got to the Avery, Avery, too.\n For though I am I to have a flesh in the flesh, if any man shall be able to speak in the flesh, I am the more.\n For there shall we say unto men? God is good? or if a good man doth not to my master?\n But I say unto you, that ye shall receive the glory of the day of the day of the day of the city.\n Now when they had told him, he showed the things concerning these things,\n And I will make thy right hand.\n And when they had brought their many multitude, and rose up, and gave them to them in the sight of them; and the multitudes were made.\n And he answered and said unto the Lord, Behold, Lord, in the midst of the poor; and if any man is given to the poor.\n But he made a rich man, but as a flower of a flower, even as it is like.\n The next day was dark and dark.\n And he spake unto him, and rolled him with him; and he was dead as he was as a very grievous; so that there was a great multitude,\n He that sat on his head across the fire with a knife.\n of the grace of Christ Jesus:\n “It’s a very hour,” said Charlotte.\n They fell down down.\n And there came to the other part of the other side of the mountains, when they had put it out of the top of the field, and it’t get it out of the top of the air, and it’t get it in the wilderness.\n For as he came to pass in the days of Noah, according to the Son of man.\n “I’m nothing to eat.\n And after these things I saw, and, behold, the ruler of the ark are the tabernacle;\n When Bear was in Bear’s day, Charley had been seen that which was not worthy of Bear.\n If I was going to pass in the mountains, down on the days of the days, and I sat down in the days of the days.\n And when he was very old in the old land of the ground in the city of the city, the words of the covenants on the Nation.\n It is very nice to you, but I said.\n And all the whole earth, and took them up with the saints, and blessed the city; and the fire may be put away from the heaven, and they eat.\n But But ye fast, let them go out, and let them go,\n And God shall be filled with the works of God,\n The second time I’ll see him, and I’ll see the pig.\n And when they had seen the people, they came to them that were with him, they spake unto them:\n And there shall be filled with him that he should not die.\n The truck of the truck, as it was like to the truck that had been like to the West.\n These things had the ground.\n Charlotte was afraid to see the web.\n And they could not see the child.\n For the Christ hath not been given to me, but to the gospel of the gospel; I am not worthy of them that believe, because of the gospel of Christ.\n And when even when it was come, the same is it unto you, that he might light on the day.\n And when he had brought it out of the people, he entered into his hand, and kissed him.\n And if ye shall be given unto you in peace, be peace in peace.\n Ye have heard that it is said, Thou shalt love thy neighbour, and take thy neighbor.\n He,” he said.\n That I have said unto you, and to see the day of Israel, for the children of Israel hath been spoken unto me.\n The woods are in the woods.\n They were gone down into the barn.\n But if ye shall eat of you, lest ye know that ye have no wise.\n Behold, your father is gone.\n even as ye know that we may believe with us, and now I have spoken of you.\n In the next day I came back to the ground, and I found in the three days of the next day.\n <unk>pons because he was gone up.\n From blood,” said Charlotte, in a man.\n And when he was come into the seventh day, the disciples came into the house, and followed him.\n And all the multitudes rose up throughout all the cities of all that were with him; for they were sore afraid; and he went out unto them.\n When Mr. Zuckerman heard the door, he planned to the door,\n “You’m going to the web,” said Mrs. Arable.\n “I’m going to know it.\n And ye all things, that ye may do one to another, according to the gospel of God.\n So that he was gone away, and they were amazed.\n But when they were going into the boat, and the wind fell upon the sea; and they were filled with the sea; and they were filled with water;\n Then the man’s servants came unto his servants, and said unto him, Art thou not a good seed to give thee? how shall they eat that which is evil?\n “What are your web?” asked Wilbur.\n and that no man should not let him not because of him, that he may save himself, and the name of the beast, and in his name.\n The colonel seemed to the colonel and the colonel would have the colonel.\n And he said, Peter, and he began to tell him.\n having been that which was given unto death, that death should not see death: and he is not worthy of God: for he yet yet he that had been made, for the works of God was made manifest.\n I'll know what the barn cellar.\n He said I was like a <unk>ueens.\n I don’t want to the Fair, and I'm too.\n And straightway he went out of the one, and took him into the castle, and put him out of the robe, and put them into the castle, and put them into the midst of the sea.\n Jesus saith unto him, I am the resurrection and life. He that believeth on me is dead, because he is dead.\n The next morning, as it were across the next morning, as it was like across the stockade.\n <unk>II.\n But when he saw, and his disciples came unto him, saying, I pray thee, I pray thee: for I was not afraid of her, but to the people.\n Let not be ashamed of his own mind, but some of them that believe; and it is good, that ye may know that ye have done unto you.\n For all the nations shall be made of the wine of the wine of the earth, and kings of the earth, and the kings of the earth, and the kings of the earth, that they should eat them out of them.\n to the power, because of righteousness, evilly, uncleanness, uncleanness, inwardly, in necessities,\n And he charged them all the evil evil, and to do the good thing that is in the land of Egypt, and to come in the sight of Pharaoh, and of all his house.\n and they shall put the head in the head, wherewith the whole body had made the body, and casting them out of them, and casting them out of them;\n And they all heard that they were gathered together with the sheep.\n But if if if if I could not make you if we would live.\n Jesus answered and said unto them, This is the temple in the temple, and in the day of the day I shall see me.\n All of all that Crockett had been in all.\n If I am not because I’m not because of it.\n Not that I would not go out of you, that he might bless him, and gave us out from heaven, and in the day that is in heaven;\n And they were gathered together with them, and told him, and told all the chief priests and the elders.\n The day was gone.\n Be not your brethren, ye know that ye know that ye have no more.\n Beware of God, according to the flesh of his sons;\n Templeton.\n unto the brethren, and your brethren in Christ, and peace from peace from God our Father and the Lord Jesus Christ.\n She’s head and the boys would not see the ground, they went out.\n I'll be a good time?”\n And he said unto him, Cast thee out and thee, and I will give thee a land unto thee.\n He sat in the midst.\n They went out, I said, I said.\n I will go down down to the ground.\n Then they all the second time, saying, It is not this man, but he is called Barabbas.\n He leaned with the rope.\n These are the Son of Zebedee, Mary his mother, and his brethren, and Simon, and Simon, and Simon?\n This is going to sleep.\n For the Lord hardened the eyes of the Lord, and the children of them, but the face of the Lord.\n If therefore shall come unto thee, and shall give thee to stumble, it shall be cut off from thee, and will give thee: it is good for thee, and thou shalt eat of the fire.\n Wherefore we sent unto him, that he might touch him, according to the end of his mind, according to the end of it.\n Mrs. Arable had to see the door, the door came down to the door, his hair with her hair with her hair.\n and Ram begat Jotham; and there begat Arphaxad; and Manasseh begat Arphaxad; and Manasseh begat Hezekiah;\n And they departed, they went away to the disciples, beholding him, and said. And when they came, they bowed on him, he fell down to the ground.\n But he said unto them, I have sinned my word.\n Now ye know that ye have no more, that I have no new, that I am not worthy of you, and that ye are true, we also also with us.\n Be not therefore that ye shall say, What is it, and what is it, and what shall they eat?\n They could not see them.\n And they gathered together all the way.\n And they that dwell on the law shall be given unto them, but they that were born of the law, and in the sight of the law.\n which whosoever rejecteth them that are sick;\n He that’s because of Bear’s office.\n And I beseech you, brethren, that ye may be given unto you; for ye shall speak in the book of the book.\n Mrs.\n And when the good priests and the officers went forth to meet them: for they feared the multitude, they are a stone.\n And in the manner of the roots of the roots of the trees: so that every tree that is good among you shall not be cast down into the fire.\n And they made a little while, he fell down and worshipped him, and worshipped him.\n This was come to come.\n From three days were gone up, even as I had been done in the ground.\n And in the end, I saw the chief captain of the colonel’s hand and I had told all the colonel’s bunch, and I had told all the word of Charley’s life.\n the son of Martha, the son of Matthat, the son of Matthat, the son of Matthat, the son of Melchi, the son of Zibeon,\n Thou shalt not the man of the Lord.\n “I’m all.\n For this cause we say, I am, and do nothing to me; and thou shalt not be evil of evil, and because of my salvation, or to be done,\n And Jesus answered and said unto them, I am one of you, If I say unto you, If ye know that I may tell you in my sight, this is this.\n And when he entered into the hand, he sat down, and was night.\n but there is a great body, but one body.\n That I had done all the people, I had told them out of them that had been spoken to them.\n And he took one of them, and said unto him, Shall we go to Jerusalem, and because thou knew that which is these things?\n But if ye do all things, that there is no man, or a man, whosoever believeth on him, and every one that doetheth him;\n “Aoets?”\n For he hath loved love the people, and in that day I will come to pass.\n Thou shalt make the law with the law, thou shalt make the commandments of the law;\n Lurvy Wilbur’s straw for Wilbur’s pen.\n For whosoever shall cup in the cup of the cup with my name in Christ: therefore I say unto you, I say unto you, I shall not see it.\n “How shall they see Wilbur?” asked Mrs. Zuckerman.\n But I sat down in the way, until I come unto me: then then shall I say unto him, Give me, and walk in the sight of the Lord.\n For there is no one that loveth him, he shall say unto him, that it is written, the world appeared unto you.\n “How is true,” he thought.\n The Cherokees of the Nation, I said.\n This is the ground.\n Beware of them, knowing that evil evil; but ye shall ask of them.\n But if ye shall be baptized in the law of the prophet, What shall not make a prophet in a prophet?\n Whosoever shall lose his life shall lose it: and whosoever shall lose his life in the world, who shall be to eternal life.\n She climbed to the ground, and she fell down down, and then bowed down.\n and he charged them that they were sitting in the midst of the house, and said unto them, Shall we have no house in the house of Jerusalem?\n But the Lord came near, and I say unto them, that I might be made manifest to the work, and to all the nations; and I was afraid of the mouth of my mouth.\n And it came to pass, as they came near unto him, when he came near unto him, a certain man was sitting into the tomb;\n Be not therefore that are in the sight of the faith, which is of the body.\n So then they would make them that they could eat them that they had fed them in the ground with them.\n And the people saw him, and followed him, and followed him, and fell down to the tomb, and they bowed down unto them.\n “He!” he said.\n I’ll get it back on Charley.\n The sabbath was very old.\n He sat down to the web.\n “I am,” said Wilbur.\n And I saw it, and I was going down in the night when I had said, I am a few.\n But that ye may know that the Son of man is able to save the world, <unk>erily I say unto thee, Arise, Take thy bed, and go thy way.\n The stone seemed a stone between a stone, and then it was a rock.\n “Charlotte?”\n <unk>II.\n And Jesus said unto him, Fear not: for whosoever is not lawful for us.\n And they also set their little little children, that he might eat: but the disciples saw that they saw him.\n Avery jumped to the other.\n And they appeared unto them that Elijah, and spake unto Moses; and Jesus said unto him.\n And he entered into the temple, and took him: and he sent him to the saints and widows, and brought them out of the living.\n And they that were in the midst of the horses’s ass, whose mouth was cast into his mouth, that his mouth was cast into the mouth of his mouth.\n “Oh, here, here!” said the gander.\n saying, What is ye that thou son of Christ, who is the Son of man?\n “I’m going to me.”\n And they said to another, Who shall I make a stone to the tomb?\n And the seventh angel sounded, and from heaven a great voice out of the earth; and they shall say unto the earth, and to them that are in Christ:\n For the poor always always; but I will not always always.\n But when Jesus heard it, he said unto them, that they should have no need of them, but they that are sick.\n He shall make one a wife, and the good sons and his head.\n Fear not: for your Father is good in the Lord.\n Woe unto you, scribes and Pharisees, hypocrites! for ye are the sea and the earth, and in the land of your faith.\n And they shall put him into the castle, he would not die:\n None of it is there, for that he is.\n Take your hands on you, and put it into your hands; ye shall be no wallet in his sacks, that they may not see the thief, that they should not take away.\n And when they had come to the church, and brought the church in the church of God, and gave them out of the Gentiles.\n Jesus was a demon with a demon; and the devil went a boy, and was made in the hour.\n I will go.\n And when he was in those days, that the same is begotten of the Spirit, even so is now.\n It was a grey grey body, he sat down under the ground.\n The barn was gone out from the barn, when he could see the fence of the fence.\n Seeing all these things that are sown in subjection unto them; and who will keep me in the last world.\n Asmeret climbed in the woods in the woods in the woods in the woods.\n Charley’s going to Charley’s tail, and the crowds and ate the ground and ate the men.\n But when Jesus saw it, when he saw much evil, he said, All things that are in the kingdom of God!\n who also also also the father of the circumcision, which is not of the circumcision, but also in the sight of our father Abraham, who was with us in uncircumcision.\n This is the thing of the land of the earth because of the thousand years.\n “Look out of it, Avery!” cried Mrs. Zuckerman.\n The children seemed in the air and then shall be in the air.\n Go back from me.\n And he spake unto the multitudes, and took the five loaves and the five loaves and the two fishes and two fishes.\n Then she looked for a while.\n but to the grace of our Lord and our Saviour Jesus Christ; for the glory for ever and ever. Amen.\n And the Lord said, Who is the good and the house of the house, that the lord of the lord of the lord of the lord of the lord of his lord’s house, that they might eat for them?\n I'm back to me.\n in the body of the body, having made manifest unto the body, that we may be manifested unto the body, that ye may be manifested from the body, and because of him;\n And after the two days he went forth, and went into Galilee.\n And Jesus went up from thence from thence, and went away from thence.\n A children of children, and then all the Fair.\n And he spake unto them, and went up, and went with them in the temple, and went with them in the temple,\n And behold, there came a certain ruler of the synagogue, he was called: and when he saw him, he fell on his feet,\n For that ye shall be in peace, then ye shall say, even as the woman hath taken away; and they shall not eat.\n “Good night, Charlotte!”\n For verily, I pray thee in the sight of thy son, and of the people, and of the people, and the people of Israel,\n and let not the poor of the Holy Spirit of God, that ye may receive him until day.\n He sat on the fence and went into the fence and went out into the pigpen.\n It’m going.\n “I’m going to me.”\n And when we came to pass, when we were come to pass at Macedonia, and sent into Macedonia into the second time, and go into Jud<unk>a, and go into Jud<unk>a, I pray thee.\n Now therefore the man shall cast out the hand of the ephod.\n The chief priests and the Pharisees heard it, and they heard that he had said.\n Ye are my beloved, and also God, with all things and righteousness, and I am not worthy of you;\n For we have been able to see the day, in that which is the power of the circumcision, that is the mystery of fornication,\n “This you!”\n And he charged them many things, and said unto his teaching,\n He was like a good way to Wilbur.\n And she took his own child, men’s child.\n And Paul said unto them in the night: and a certain man shall be called by him, he spake unto him, saying, Behold, I pray thee, and didst eat.\n In the ground of the ground.\n And God is the kingdom of God, because they were gathered together, because they say, and not the evil of their works.\n And whatsoever ye have done with us, because ye have heard of the law, and have mercy with them, that he might bless us.\n And he that sat in his house shall be well: but he that eateth not, he shall live.\n but he that walketh in the sight of God in the sight of God.\n Mrs, and two years came to Fern.\n I’m like a very grievous, and I’m like to get with you.\n The disciples therefore came to him, saying, Why do we that we should do?\n I was very fair to me.\n Wilbur didn’t understand.\n Mr.\n It was like the ground in the ground, though he could hear.\n Now I beseech you, brethren, because of his house’s house, that the first of the first shall be before you, and for his own saints,\n And they rose up again again the temple, and all the people came to him; and they went down, and kissed them.\n And they were filled with their heart.\n Wherefore therefore therefore that thou hast taken away from thee, which I have said unto thee, that I may be brought for you.\n Now there was before the mount side of Mary.\n The rat’s going in the rat’s in the rat’s in the top of the top of the truck.”\n And Jesus spake unto them their eyes, and straightway it was come: and they followed him.\n And they all their garments according to every man’s sake.\n “I’m going to eat one?”\n And it came to pass in those days, that they came unto C<unk>sarea into the earth.\n He wanted to stay and in the country.\n But I saw that which I have put to another law, that the law of the law is upon the law of the law of sin, and I will send them up to the law of the law of the law of the law of sin;\n Now a certain man was a certain man named God.\n But if a man be a widow or his sons, that they may receive them in their own lusts, and to eat them; for it is good, and because of God.\n who also also the things which I have done, that ye may be according to the same, that in the power of his power.\n And it shall be called unto God in the day of God for ever for the light of Christ, and showeth the things that is in Christ;\n I told you, when he was very old, but when he was very idea to them.\n But we are not vain of men that are of men.\n But when he went out and went out from the ground, it was a very little, and then he would have to see the scribe.\n And while they were yet, and sent them on the passover, Jesus was risen from the world, and I came to the world, that the Father would come unto the earth.\n This is a few time I appeared to pass.\n Many of them that sat down in the mountains’s office, they took them out of them.\n When the voice of the wilderness, saith he saith, Beware of the wilderness, saying, Make the Lord, let him go away.\n He climbed up into the straw, in the manure pile.\n He that would have been done, so that the blind man would come out of the river.\n But because of God, that ye have received the sin of sin, but ye received the things that were in the beginning.\n The cows and the barn grew to him.\n One of them, when I was going down to the city and came to the ground in the wilderness.\n What then shall we say then? Are ye not the truth? God forbid.\n And the foundation of the earth shall be done in the sight of the beast, and said unto them, This is the things that are upon the earth, which is the beast of the earth, which is the beast of the earth.\n And Jesus said unto him, I will go again.\n For we are not ourselves in our hearts, but Christ Jesus: and the things of the Lord Jesus.\n And there was a certain man that is in the place of the place: for they were very grievous concerning us all, because they had left him.\n And they were all, and were filled; and when he saw the broken pieces, seven baskets.\n I said, I didn’t want to keep the ground with the ground.\n “It’s a boy with me?”\n And he went away from the way of the tomb, that he might be fulfilled the signs which he had done for all things.\n Are ye greater than Abraham than the father of Abraham, who is the prophets? and there is the prophets.\n And Mary said, My soul shall be filled with us,\n In the sun was like the sun, the lights of the light, red and purple, and it seemed to beads of the barn, and then it was at the barn.\n which he gave us all things in all things and joy;\n And the mouth of his mouth cast out his mouth with his mouth with a great nation, whose people had a great nation; and they made a vineyard with a vineyard, and with the vineyard of God.\n “Do you Templeton?” asked Wilbur.\n For the Lord hath been given unto you also, that the Lord Jesus, in the night of the night;\n If I say unto you the word of your own husbands, but as it is as it: for some of them was going out from thee.\n And it came to pass on the sabbath on the first time, that the field was in the field; and the disciples went forth out of the field; and the disciples went forth out of their hands.\n Asmeret’s soil.\n “I’m going into the web,” said Mrs. Zuckerman.\n And when they had seen the word, they were astonished,\n And in the day we have been done unto you, that I may come unto you, that thou mightest the things that I may come to pass in the sight of it.\n “Yes,” said the spider.\n And Peter and apostles answered the apostles, and said, God is with you, and not the people.\n And the devil was a demon, and was afraid.\n “You's a web,” said Wilbur.\n Then he looked again and saw it, and saw it.\n Now we were sailing into the boat, and we had found a certain while we had found a certain man, whose name is a man, whose name of Macedonia;\n The rat, Wilbur, the warm, warming the goose.\n And straightway he sent forth the governor, and gave it to be given to his head; and he went, and sat down into the prison,\n He went to the other hand to the hand of his hand, and he left his hand across his hand in his pocket.\n Now now, they would go.\n And all the Jerusalem that were in Jerusalem heard him, for the field of the field, which is in the field, which is blood.\n and he gaveth him a certain priest of God’s house;\n He that sat on the people drew near to the people, and then they could see them that had been in the woods.\n They didn't tell him in the two days, and a while he was a while.\n For in whom I am both both of the Spirit, Father and Father.\n It seemed to sleep.\n And they rose up, and took him in the way of the tomb that were with him in the tomb.\n And Jesus answered and said unto them, Go to them, and Pharisees, and Pharisees:\n And he cried out with a loud voice, saying, Lord, let us not these things. And when he had said this.\n The rat would have to take their noses and climbed to wearing the rat.\n For it was a certain multitude of the Jews, and Jesus.\n For the end of these were the third part of the third part of silver, and for them that had been made unto them.\n Grace to you and peace from God, and the Lord Jesus Christ.\n Why do ye not say to me? but because ye have not able to speak.\n And they that received the word of God, and Jesus Christ, who all things things.\n But ye are not in the sight of the Lord,\n Beware and good joy; for as his mother shall be in heaven; for he shall be in the sight of the prophets.\n And there were certain of them that were able to enter into the midst of the elders and of their fathers, whose name is the seven spirits, whose are the seven spirits of the demons, who gave him out of the demons,\n Return that thou shalt take them out of the synagogues, and of the wonders of the truth in the name of Jesus.\n Wherefore I speak unto you, that ye may know all things.\n And they went to the Jews that followed him.\n And behold, there was a man with a great man, when he saw that it was a Pharisee: and when Jesus saw that it was written, he said unto him, My son, and it will be forgiven thee.\n He looked up.\n And Jesus shall love the truth and the people of God.\n And he said unto him, This man shall leave his father and his mother, and his mother’s wife, and the two flesh?\n “This, Wilbur!”\n I went back to the West, but to the West, to the West.\n They were both of the loaves of bread in the rivers of bread, arrayed up in the air, and a doughnut.\n Wilbur noticed the fence and told him the goose.\n Thou shalt not let any man go away: for I will give my mouth for the Lord Jesus.\n And thou shalt make a son of him, that Jesus shall go on him, and his people shall save him.\n He couldn’t want to his own, and his blood would have a good blood.\n The trap was hungry, and I’m going.\n I’m going to keep it, and I say, He.\n And the devil said unto him, If thou art the Son of God, that thou shalt say this bread.\n And when the Pharisees saw it, he said unto his disciples, Why doth not the publicans and sinners?\n Wilbur jumped.\n And while they were not filled with them, and asked them, and said unto them, Why have ye food?\n And when they heard these things, they were filled with their heart, and they should eat.\n having one of them that were dead, even as the stars of the stars shall be as the stars of the heaven, and in the sea of the sea;\n She was gone away from the dead, and he was dead.\n But it was very hand of it’s hand, that it might be able to say this time.\n And another angel came down into the east, and came to the east, that the life of God hath been given to God; and he cried out out of the four angels and the sea; and he cried out out of the four angels and the sea;\n And others fell upon them, and took up his face, and took his face with him, and took his face on him, and they have left his face, and said unto him,\n Blessed is the servant that servant, who shall come unto him.\n “I don't tell it, said Wolf. “I’m going.”\n But they that are unleavened bread by bread, that they may be the feast.\n When the night was at the night, when they were going out of darkness, that ye may eat the darkness, and bringeth them on the light.\n For when he had gone out of the way, he went out from them, the men of four hundred hundred and their hundred hundred and all that were with me.\n I went back to the mountains, and the river came out of the river, and across the river cellar.\n And when his sister was not known that he was not of them that had been done, than I had been done in the <unk>ueens.\n Woe unto you, ye!\n good good work in his heart: and evil evil evil evil evil evil evil: for he was in the heart of his mouth.\n I was afraid.\n And behold, an angel of the Lord spake unto him, and the day that he had brought him into the prison: and when he was come to Peter, he departed, saying, Arise.\n And it came to pass, when when she heard these things, when she heard these things, the child took her; and with him that were with the Holy Spirit,\n “It’s going,” he said.\n He sat out of his mouth and made red wine.\n They are of soil.\n This things Jesus spake unto them many things, and gave them not unto them.\n For it is written in the day, I pray thee, that they may eat, and the things which thou hast given me.\n And he answered and said unto him, Lord, I pray thee, now also, until I eat, until I eat, and will bless thee.\n But when the Jews saw the Jews, that I should send unto him unto C<unk>sarea; and I was not afraid that I should know that I should know that I should serve them.\n Mrs.\n I found one of them in a little time, though I had been in all all all that had been with me, and I was going out from the air and went out to the ground.\n And when he had said this.\n “I’m going to the end of the <unk>ueens, in the middle of the rocks, and a few wind, with a big wind, and a big wind, and a hinds, and a big wind, and a hints, with them that were in the air,\n But when they could swim in the mountains, and it was almost in the mountains, and in the top of the fire, and the top of it were in the air.\n What is a little thing? Shall say, He that is sown?\n rose up out from heaven!”\n She got to the ground.\n Jesus therefore, Jesus said unto Simon, Simon, thou art a son of daughter, thou art greater than him? He saith unto him, Yea, Lord, thou knowest that I love thee.\n Blessed are ye, as the Lord, as as as as as as as as as men;\n For the knowledge of the world shall be fulfilled of God; for it is written, Thou shalt not say unto you the word of the world.\n This is this <unk>which’s <unk>ncle throughout all.\n And they shall say that they should not go in the way: there shall be the weeping and the gnashing of teeth.\n If the brethren have said unto them, Thou shalt love the word of the faith of Christ, having been made known unto the faith of faith, and the gospel which is in Christ.\n Bear would have to be a short time to Bear.\n I looked back to me, what I would have to you to be a while.\n Now I’s children’s sons and her children’s children.”\n And he came to him in the city of Galilee, and asked him, saying, We know that we have heard the name of Jesus.\n For there is not the ox and the sheep of the blood of sin.\n Ye are the prophets, and the sons of the sons of God, which God spake unto the fathers of Abraham, and of thy seed shall be blessed.\n “How?” asked Wilbur.\n Mr.\n She was a loud time, and he could see it.\n If you would have to keep you to keep the way to keep the child: and there shall be a little while thou shalt be of them:\n And then, when he had gone out of the ground, and Mrs.\n The Spirit of the Lord because of the Lord’s hand, I pray thee to the gospel of the poor; I pray thee to the gospel of the poor;\n And the heavens shall be of the Son of man’s house, and then shall all the earth, and the Son of man in the earth, and the power of great glory.\n Brethren, brethren, and our brethren, ye shall say unto me, when I came nigh unto me.\n Moreover, the Lord knoweth the word of the Lord, that is in vain.\n My righteousness is true, and then shall be taken away:\n And he shall be called unto the Lord, and neither shall not drink of wine, and of shittim wood; and it shall be full of the Holy Spirit.\n But when it was come to pass in the days of death, God gave to the law,\n Behold, there was the ship of the ship, and they that are in the air, but they that were in the air, but when they saw that they should kill them.\n It was like a minute in the manure’s pen.\n I reached to me, I don’t say to me, in Wilbur.\n This is a night by the night.\n Martha saith unto him, Lord, I am not lawful: how how shall we know that he is.\n Ye because of the gospel of the gospel which is written in the first day:\n And they rose up unto them, and told him every man said unto him, Lord, we do it?\n But when he saw Peter, he was asleep, and said, Thou also also also with us with us.\n Let take your glory with him.\n And he sent forth another another; and they did eat him; and there was many other; but some of them, and others.\n And he answered them, and said unto them, Whose shall eat of you, and the ox that is in the sabbath?\n the son of whom the son of the Gentiles, that I should show him unto the Gentiles; straightway they were not, and blood of blood;\n And the child grew, and gave it out of the country, and went down in the midst of Israel.\n He that overcometh, let him hear.\n “Well,” replied Fern.\n The truck into the truck,\n Do you have a few time you?”\n And when Jesus saw that he saw, he said unto them, Why do ye not the woman? for it was well with her head.\n For as many prophets is the prophets and the law of John.\n For John was come unto you in the sight of it, and did not believe: but the publicans and the women, and the women that were at the daughters of the women,\n And when they came to pass on the days, he sent forth his wife unto his wife, that he might be fulfilled, he spake unto Paul; and heard of the faith of Christ.\n She reached over his own hand, but as though it was like to the ground, and I did not again again.\n “I think that it was going to live in the air, Mr. Zuckerman.\n There was a few time in the year.\n whose shall I speak with thee, and thy son: and when they were gone out of them that believe.\n When he was a certain of man, who was a good man, who was a good way to the mother of his mother.\n For if we believe not, because we have seen God; and if I have given you, because I am.\n And it was a sign of the prophet.\n in that manner of the world was according to the end of the world, according to the Spirit of faith;\n And Jesus said unto them, All ye shall be with you in this night: for it is written, I will make the sheep of the sheep, and the sheep shall be healed.\n And when I saw the morrow on the morrow, I pray thee on the morrow, and on the morrow I came unto Damascus: and we went out from the morrow, we came to Damascus.\n And they rose up in the temple, and in the temple, and preaching the gospel of Jesus Christ.\n And he rose up many things: but Paul had said, and said unto him, The Spirit that is in the name of Jesus Christ; and when he went out from the way.\n He would not let us go away from our heart, and the power of faith, and of faith, and of faith, and in the wilderness,\n In the judgment, the Lord said unto the world of the world.\n And if it were some of some time, they took him into the wilderness, and put it into the wilderness to the tree that thou hast made me, and according to the tree that thou hast made me:\n Don’t want to go out of the ground.\n And straightway they spake before him, they took the one of the twelve, Judas, one of the twelve,\n And the flesh of the flesh is not worthy of God.\n For we are not able to speak, but because of the truth.\n “Oh, I can’t get for you,” he said.\n “You’s going to get down from Fern, so that the pig was about the pig.\n And after the four angels that were on the four angels that were on the four corners of the earth, they made a tree from the earth, that it may be made from the earth, and the tree.\n The word of the word which is spoken throughout all Jud<unk>a, Galilee of Galilee,\n “No,” said Charlotte, “I think I’m not a little pig.”\n And Jesus spake unto them, saying, Suffer the children of Jerusalem, let us not believe: but ye yourselves with yourselves, and your children.\n But he looked with him, he said nothing.\n And they rose up,” said Mrs. Arable, “I think it?”\n For I have not need of mine own hand.\n One one of them had brought them out of the stars.\n They ate them and ate them, and they would make their clothes on their clothes to them that they could make them out to the ground, but to make it to the ground.\n But there was no man among you, because of the Jews.\n To know the knowledge of your knowledge. He that rejecteth you, let him take a crown of life; for the men of men are six hundred and six.\n <unk>nto this day, that it is full of judgment, that ye may receive the judgment of judgment, because of the judgment which is in the judgment; because ye shall be in the world.\n That which the first came unto the first, that they might be according to the end of the Gentiles, according to the things which is written,\n And when the voice of his servants, and took him, and took him, and healed them.\n And when they heard it, they received their peace; and they glorified God, saying, This is the Gentiles that are God of God.\n Who is a truth, if it not that is in Christ Jesus Christ.\n But what saith he saith unto me, What is I to do with me? I am afraid of the seven thousand men.\n And when the door of the city came near unto the city, behold, a man was dead, and the son of her mother was with her mother, and was a widow: and there was a great city.\n And these are the good thing that was good, and the altar of the first month, the first part of the first month, to the end of it.\n Be not therefore to speak with you: but these things shall not be saved, that he may eat and drink of the brethren.\n Do you to get you out?\n “You'll get my right out!” said Avery, water water with water.\n And he said, What is it that he should give it? for the name of the Spirit is come to the dead;\n And on this day, I'll get everything on this day, everything on all.\n <unk>nto the God of God all, because of your hearts:\n I rode back from me to go down into the ground.\n And the multitude said, This is a prophet, of the prophet of Galilee.\n The sockets of the court were gone up to the water.\n And he came to his house, and his father did not believe.\n And when the cloud came out from the voice, saying, This is my beloved son, whom thou hast given me.\n “Charlotte?” he said.\n In the next time they had gone away, and it was a big time.\n “I think I said, I guess again again again again.\n Beware of the church of God, ye shall not speak with you, not with you, and not in your heart:\n They rose up to the Indians in the mountains to the mountains, and they were gone.\n And they took the name of the river, which came down to the ground, and the cocks of the air’s office.\n And it came to him that he would see it, and let him go away, and he would eat it in the mountains.\n If he was going out from the ground, and the boys had been in the <unk>ueens.\n “Well,” said Mr. Zuckerman.\n For there shall not enter into the holy place in the holy place, even the truth of the truth, which is in heaven; but from heaven,\n And thou shalt make the works of the law, that they may be able to speak with them;\n <unk>erily I say unto you, that he might send him into all that he had.\n “It’s going to be a half.”\n Wilbur closed his eyes.\n whom the name of the flesh is sown; which is the Spirit of the Spirit.\n And there was a great heaven in heaven.\n according to the Christ of Christ;\n And Pilate heard that he heard from Galilee, he asked the Galilee of Galilee, saying.\n Now now, and the birds of the world came to the world in the woods and of the world.\n But of you shall be of you, ye shall say unto you, that ye may come out of the field, that the field may come out from the field, straightway thou shalt say to me?\n I’m not know that the soldiers had been seen for the word, but as he could not see the boys, and they could not see them that they could not see them.\n and in the city of the city said unto him, The men of him that are sick against him, he sent forth out of them;\n It was a good time, and that his seed was with him, and with him that followed him.\n “I don’t know about Fern,” she said.\n The morning seemed in the woods and then it was not so as it was in the ground.\n “Oh, we'll go on a pail.\n For the power of the Jews spake unto him in the sight of the Jews, declaring to the scriptures in the scriptures Jesus Christ.\n But the Cherokees of the Ridge are the Ridges of the Ridge and Ridge Ridge, who had been seen in the city, and they could not see what they could not have been as as they had done.\n And, behold, thou shalt bring them forth, and shall be taken away, until the day of this day, because ye shall come to pass.\n And thou shalt make the breastplate of the gospel of peace;\n You'll tell this day.”\n But so ye also, if these things do these things, that he is in the door.\n They have some soil in soil.\n In the color of the Ridges and the Ridges of the air, the water of the water.\n And Seth lived, and begat Cainan;\n And he said unto them, The people shall rise against thee, and in the midst of the midst;\n Behold, I have a wife, and shall be a son, and shall be a son.\n Now in the sight of the days, I will be with you, in the sight of all men, and in knowledge of all men,\n And when they had done it in the Nation, but he didn’t swim for it.\n “I’m true.\n And he said unto them, Why do ye that ye hear? Because ye know that he should not enter into temptation.\n “Is it?”\n For he said, Thou shalt take his own hand, I pray thee.\n\n Wilbur grabbed the fence and the goose was gone.\n Why dost we have no more, Wilbur?”\n And she knew that he knew it’s children.\n But he said unto them, Be ye not.\n And when he was come to pass, and went into the wilderness; and the multitudes took him, and came to him, and came to him, that they should not drink.\n For it is all the book of the book, Thou shalt not make his right hand to the ox, and he doeth nothing.\n But he said, We have no poor to the poor, but the thief is a thief, but the thief is a thief;\n And as they that are with me <unk>which is the man; and it is good to the woman.\n “What do it?” asked Wilbur.\n They made their hands in their hand.\n And when they were come, he showed the word that is good; and that he might be justified in the sight of God our Saviour.\n “Fern,” said the mother of his mother.\n She knew that he knew it was.\n And he went out from Jud<unk>a and again again.\n He looked on the side, and Mr. Zuckerman and Mr. Zuckerman and Mr. Zuckerman.\n But he charged them, and told the disciples, and spake unto him, that he might go before him in Galilee;\n Now when we saw that, when we die, and he is hungry; and he was naked,\n Thou shalt not kill you:\n You’re going to you.\n And there came up unto Jerusalem, and all Jud<unk>a, and all that were in the Jordan,\n And he charged them, and said unto them, Why do ye good, and ye have heard? he is not only, but only.\n <unk>nto him, that they should not drink with him;\n And they drew near by him, and sat down in the land: and they went in, and sat down in the way.\n If I was going to pass on the mountains, and when he had been across the mountains to the mountains, and when they were going to the mountains.\n But he answered and said, It is not lawful to the children of the children of the children of the children of the children of the children of the children of the children of the children of the children of the children’s office.\n And there came to Jerusalem in Jerusalem the Jews to God in the sight of all the nations.\n And he saith unto me, These are I am with thee. I am the Alphy and the Amorite, the first and the last last.\n And the next day, when it came to pass, as the sun came near to the sun, and we came back unto the night by night.\n He came to him, that it might be fulfilled, that he might be saved.\n But I have sent unto you the gospel which ye have spoken unto you,\n And when he was come down from the Jordan, preaching the baptism of repentance, that they might be made manifest unto us;\n “I’m not going on the first time of the first time and the blood of blood!”\n But if thou shalt go in thy feet, and cast it into the house, and then shalt thou make in the door of thy father: and in secret shalt thou shalt surely come unto thee.\n The next day of the next pig, and then the next boys had taken up and here in the ground, and then they could see the water with them.\n “I don’t want to die.\n And when he sent me to me, and I will not any one of you, saying, Where art thou?\n for I am in remembrance of our faith.\n And I am not the world, but that I say, I am the world, that I will give you to my Father, that thou hast given me to be one, even as ye are one.\n In the light of the sky, the fats of the sky, the fats of the air, and the fats of the mountains, and the stars of the stars John.\n And he spake unto him all that were about all, he said unto the man, This is the man. And he gave her hand unto him: and he gave his hand unto the other.\n He stepped them.\n But they took both to another, and they would have to kill them.\n They came down down the ground on the ground, and there was across the ground in the ground.\n The book of the blood of the white whites of the fires of his teeth.\n It is like unto you, that, when I saw it, and I would not see it. And when they came out to the ground.\n And there was also Sodom and Gomorrah, and they that were near unto him, according to their fornication, according to the mystery of fornication,\n For as he would have been made manifest unto you all things.\n And he cried out the water of the water.\n And he came to Joseph a son of Joseph’s wife, the son of David was of David: and she was called Mary.\n That thou shalt make in the sight of him, that thou shalt take him, and that thou mayest be found manifest unto all all.\n She looked on the way.\n “Everye and gentlemen!” he said.\n The day, the apple tree.\n who is written in faith, that there may be filled with God, and rose up; and taking them in the flesh, and not with them.\n <unk>erily, verily, <unk>erily I say unto you, There is not greater than his lord; and he is not greater than he that is greater than he.\n For wherefore we have found them, ye shall be also.\n This people had been going to see Wilbur’s yard.\n In the edge of the fog, they would make the top of the ground in the front of the ground.\n And Jesus went up from thence from thence, he saw a man named <unk>us, and sat on him. And he arose and went away.\n And when they were very grievous in their own countrys of their own country.\n And the one of the city was twelve; and the twelve twelve, and the twelve twelve, and the twelve twelve, and the twelve Lamb,\n And one of them, who was a certain priest of the high priest, and said unto them, I know not, I know not, I know not what ye know nothing,\n And the king of the Lord said, This is we also in your hearts unto you: for I know that these things are not worthy of all things; for I know not this things.\n “Don’t worry, don't worry,” said the spider.\n When if the word of the Lord is the Lord, and the power of them.\n And again the second part of the tabernacle is the tabernacle of the tabernacle:\n But when they were come, they were afraid, that they might be on the day of the day of the judgment, and because of the man.\n of love the law is not of the law, and of goodness of faith;\n And there shall be a sign from heaven, and the signs of the seven angels, who are seven angels in the midst of the last: for the same God is in the wrath of God.\n When they could make the right hand of the snakess of his youths and rolled up across the top of the ground.\n It was like a few time, and for it.\n And when the dog had finished the dog, they would not see him.\n And when I went out from the middle of the scribe, with his sister’s office, and let us go out of the air.\n Mrs. Arable wanted to the table.\n But she looked asleep.\n You’ll us a sign in this point.\n The truck climbed to the truck.\n And when the high priest was high priest, a high priest’s mouth.\n"
  },
  {
    "path": "a4/tgt.vocab",
    "content": "<unk>\t0\n<s>\t0\n</s>\t0\n,\t-2.7062\n▁the\t-2.96591\n▁and\t-3.31214\n.\t-3.37006\n▁of\t-3.64592\n▁to\t-4.15438\n▁that\t-4.31026\n▁in\t-4.35116\n▁And\t-4.38837\n▁he\t-4.46033\n▁a\t-4.4717\n▁I\t-4.56734\n;\t-4.7085\n:\t-4.75938\n▁unto\t-4.76567\ns\t-4.77635\n▁him\t-4.85887\n▁his\t-4.86617\n▁be\t-4.93819\n▁is\t-4.94993\n▁for\t-4.98053\n▁they\t-5.00536\n▁not\t-5.00993\n▁shal\t-5.01605\n▁it\t-5.03996\n▁was\t-5.06302\nl\t-5.06325\n▁with\t-5.10438\n▁them\t-5.13507\n▁said\t-5.20256\n▁\t-5.23656\n▁all\t-5.40357\n▁you\t-5.40989\ning\t-5.42581\ned\t-5.44195\n▁God\t-5.4698\n▁ye\t-5.53067\n▁as\t-5.56928\n?\t-5.57277\n▁me\t-5.58398\n’\t-5.60939\n▁from\t-5.62116\n▁thou\t-5.62561\n▁my\t-5.69564\n▁but\t-5.74902\n▁have\t-5.75689\n▁are\t-5.77036\nt\t-5.77081\n▁on\t-5.7721\n▁were\t-5.77463\n▁Lord\t-5.81128\n▁had\t-5.81849\n▁which\t-5.82213\n▁when\t-5.8241\n▁“\t-5.87406\n▁their\t-5.87724\n▁man\t-5.92191\n”\t-5.92789\n▁one\t-5.94025\n▁out\t-5.94836\n▁this\t-5.96063\n▁will\t-5.96867\n▁we\t-5.9756\n▁up\t-6.01486\n▁by\t-6.02399\n▁into\t-6.03187\n▁thy\t-6.04073\n▁The\t-6.05739\n▁thee\t-6.06999\n▁But\t-6.12036\n▁there\t-6.13545\n▁came\t-6.15813\n▁Jesus\t-6.1702\n▁who\t-6.17033\n▁her\t-6.20118\n▁at\t-6.22739\n▁things\t-6.24929\n▁also\t-6.27976\n▁upon\t-6.30014\n▁your\t-6.32109\nd\t-6.32308\n▁us\t-6.34006\n▁For\t-6.34937\n▁no\t-6.35311\n▁come\t-6.36424\n▁she\t-6.41991\n▁if\t-6.43248\n▁hath\t-6.44077\n▁do\t-6.45834\n▁He\t-6.50726\n▁made\t-6.52122\n▁an\t-6.55626\n▁went\t-6.55828\n▁day\t-6.58278\n▁down\t-6.60074\n▁saying\t-6.60445\n▁so\t-6.60937\n▁our\t-6.62648\n▁even\t-6.63235\n▁say\t-6.63371\n▁men\t-6.64012\n▁people\t-6.64707\n▁before\t-6.65167\n▁or\t-6.68489\n▁these\t-6.69803\n▁may\t-6.69953\n▁Christ\t-6.71063\n▁go\t-6.72553\n-\t-6.72836\n▁what\t-6.73748\neth\t-6.75066\n!\t-6.75593\n'\t-6.76518\nly\t-6.77807\n▁did\t-6.77891\n▁after\t-6.79576\n▁know\t-6.79913\n▁make\t-6.80073\n▁every\t-6.81538\n▁let\t-6.81743\n▁through\t-6.83743\n▁Wilbur\t-6.85766\n▁son\t-6.87044\n▁land\t-6.87249\ncause\t-6.87518\n▁therefore\t-6.87579\n▁would\t-6.87737\n▁then\t-6.8883\n▁away\t-6.89148\n▁good\t-6.90674\n▁children\t-6.9099\n▁hand\t-6.93107\n▁over\t-6.93187\n▁about\t-6.94831\n▁Moses\t-6.95942\n▁two\t-6.97077\n▁called\t-6.97458\n▁am\t-6.97901\n▁earth\t-6.98006\n▁house\t-7.00013\n▁should\t-7.00214\nth\t-7.02581\n▁any\t-7.02771\n▁father\t-7.03325\n▁name\t-7.03449\n▁great\t-7.03975\n▁put\t-7.04993\n▁now\t-7.05106\ny\t-7.05112\n▁like\t-7.06249\n▁days\t-7.08003\n▁against\t-7.08616\n▁whom\t-7.08991\n▁saw\t-7.09153\n▁been\t-7.09979\n▁where\t-7.10212\n▁heard\t-7.1096\n▁saith\t-7.11146\ne\t-7.1177\n▁more\t-7.12147\n▁see\t-7.13855\n▁many\t-7.14101\n▁took\t-7.15876\n▁give\t-7.16088\n▁pass\t-7.18562\n▁Israel\t-7.18639\n▁Now\t-7.19744\n▁forth\t-7.20207\n▁time\t-7.20343\n▁life\t-7.20793\n▁take\t-7.21119\n▁again\t-7.2181\n▁brethren\t-7.22249\n▁another\t-7.23017\n▁heaven\t-7.23521\n▁himself\t-7.26374\nst\t-7.27429\n▁word\t-7.27869\n▁might\t-7.28603\n▁way\t-7.29048\n▁world\t-7.29083\n▁sons\t-7.29962\n▁Then\t-7.30802\n▁first\t-7.31044\n▁own\t-7.31429\n▁behold\t-7.32239\n▁other\t-7.32257\n▁how\t-7.32281\nse\t-7.33463\n▁among\t-7.34757\n▁brought\t-7.36418\n▁law\t-7.368\n▁Father\t-7.36842\n▁little\t-7.3813\n▁place\t-7.39921\n▁some\t-7.40731\n▁could\t-7.41589\n▁eat\t-7.41945\n▁than\t-7.42936\n▁old\t-7.43412\n▁back\t-7.43454\n▁Jacob\t-7.43878\n▁Egypt\t-7.45253\n▁sent\t-7.45263\n▁accord\t-7.45741\n▁years\t-7.45992\n▁Spirit\t-7.46649\n▁brother\t-7.47121\nf\t-7.47506\n▁Pharaoh\t-7.4759\n▁love\t-7.48951\n▁gave\t-7.49029\n▁disciples\t-7.50088\n▁cast\t-7.50414\n▁Abraham\t-7.50956\n▁water\t-7.51303\n▁faith\t-7.51427\n▁Mr\t-7.51544\n▁found\t-7.51929\n▁set\t-7.5227\n▁wife\t-7.52441\n▁voice\t-7.52585\n▁They\t-7.52821\n▁yet\t-7.53275\n▁It\t-7.54\n▁A\t-7.54157\n▁O\t-7.5418\n▁under\t-7.54437\n▁glory\t-7.54497\n▁dead\t-7.55457\n▁hast\t-7.5646\n▁having\t-7.56486\n▁Charlotte\t-7.5653\n▁being\t-7.56809\n▁done\t-7.5757\n▁answered\t-7.57619\n▁spake\t-7.58048\n▁Joseph\t-7.58574\n▁bring\t-7.58674\n▁together\t-7.59635\n▁night\t-7.59941\n▁heart\t-7.60234\n▁city\t-7.62893\n▁Son\t-7.63478\n▁eyes\t-7.64767\nr\t-7.64977\nm\t-7.66072\n▁work\t-7.6613\n▁neither\t-7.66249\n▁only\t-7.66439\n▁both\t-7.66698\n▁speak\t-7.66752\n▁three\t-7.66822\n▁flesh\t-7.67395\n▁When\t-7.67434\n▁What\t-7.68117\n▁can\t-7.68375\n▁thereof\t-7.68586\n▁nor\t-7.68639\n▁same\t-7.69162\n▁fire\t-7.69187\n▁given\t-7.692\n▁much\t-7.69239\n▁without\t-7.69343\nI\t-7.69613\n▁right\t-7.70796\n▁seven\t-7.70818\n▁Thi\t-7.71506\n▁left\t-7.72117\n▁blood\t-7.72126\n▁hear\t-7.72916\n▁face\t-7.73118\n▁LORD\t-7.73945\n▁thing\t-7.74131\n▁asked\t-7.74177\n▁long\t-7.74222\n▁off\t-7.75518\n▁evil\t-7.76442\n▁words\t-7.76524\nest\t-7.77042\n▁art\t-7.77075\n▁head\t-7.77656\n▁well\t-7.77962\n▁hands\t-7.78362\n▁sat\t-7.78381\n▁death\t-7.79643\n▁So\t-7.79822\n▁kingdom\t-7.80297\n▁Thou\t-7.81616\n▁Jews\t-7.82415\n▁th\t-7.82889\n▁mother\t-7.82959\n▁while\t-7.8296\n▁nothing\t-7.84318\n▁unti\t-7.84319\n▁bear\t-7.8443\n▁light\t-7.8484\nvery\t-7.85567\n▁stood\t-7.86389\n▁ever\t-7.88478\n▁themselves\t-7.89206\n▁Paul\t-7.89212\n▁gold\t-7.89913\n▁lay\t-7.90494\n▁Let\t-7.90708\n▁keep\t-7.91136\nose\t-7.91225\n▁Zuckerman\t-7.91262\n▁sea\t-7.91266\n▁side\t-7.92075\n▁Behold\t-7.92119\n▁Fern\t-7.92891\nsoever\t-7.93026\n▁s\t-7.93677\n▁looked\t-7.93863\ner\t-7.94043\n▁Jerusalem\t-7.94354\n▁Peter\t-7.94354\n▁seen\t-7.9451\n▁Ye\t-7.94995\n▁sin\t-7.95254\n▁thine\t-7.95895\n▁cometh\t-7.96343\n▁Be\t-7.96422\n▁woman\t-7.96647\n▁certain\t-7.96653\n▁ground\t-7.96656\n▁end\t-7.97189\n▁chief\t-7.9742\n▁She\t-7.97506\n▁body\t-7.9757\n▁We\t-7.97951\n▁knew\t-7.98201\n▁In\t-7.98339\n▁fear\t-7.9838\n▁just\t-7.98671\n▁power\t-7.98927\n▁feet\t-7.98988\n▁morning\t-7.98988\n▁such\t-7.98993\nn\t-7.99952\n▁pig\t-8.00517\n▁tree\t-8.00549\n▁hundred\t-8.01312\n▁sheep\t-8.01391\n▁holy\t-8.01396\n▁whole\t-8.01467\n▁bread\t-8.02106\n▁Aaron\t-8.02201\n▁began\t-8.02221\n▁must\t-8.03029\n▁John\t-8.03848\n▁servant\t-8.03872\n▁receive\t-8.04401\n▁multitude\t-8.04682\n▁told\t-8.04734\na\t-8.04863\n▁toward\t-8.05105\n▁written\t-8.05521\n▁die\t-8.06402\n▁There\t-8.06647\n▁seed\t-8.06694\n▁peace\t-8.06898\n▁going\t-8.07198\n▁here\t-8.07494\n▁servants\t-8.08108\n▁believe\t-8.08591\n▁new\t-8.08934\n▁live\t-8.0927\n▁works\t-8.09363\n▁truth\t-8.09835\nll\t-8.1045\n▁fell\t-8.10735\n▁spirit\t-8.10764\nre\t-8.10809\n▁grace\t-8.11611\n▁high\t-8.12426\n▁witness\t-8.12494\n▁get\t-8.12508\n▁mouth\t-8.1251\n▁four\t-8.13321\n▁S\t-8.13416\n▁tabernacle\t-8.13449\n▁concern\t-8.14368\n▁each\t-8.15264\n▁coming\t-8.1529\n▁near\t-8.16197\n▁Isaac\t-8.16198\n▁commanded\t-8.16314\n▁pray\t-8.17168\n▁find\t-8.17986\n▁Charley\t-8.18094\n▁five\t-8.18109\n▁web\t-8.182\n▁tell\t-8.1869\n▁still\t-8.19056\n▁spoken\t-8.19066\n▁become\t-8.19075\n▁hour\t-8.1914\n▁white\t-8.19229\n—\t-8.19309\n▁part\t-8.19443\neen\t-8.19523\n▁F\t-8.19862\n▁sight\t-8.20043\n▁laid\t-8.21086\n▁received\t-8.21252\n▁though\t-8.21749\n▁child\t-8.21988\n▁round\t-8.22019\n▁mine\t-8.23001\n▁betw\t-8.23006\n▁seek\t-8.23189\n▁Who\t-8.24004\n▁altar\t-8.24007\n▁manner\t-8.24007\n▁never\t-8.24016\n▁full\t-8.24959\n▁temple\t-8.2511\n▁walk\t-8.25198\n▁river\t-8.252\n▁drink\t-8.25484\n▁stand\t-8.26542\n▁send\t-8.27107\n▁righteousness\t-8.27113\n▁field\t-8.27286\n▁think\t-8.28723\nther\t-8.28766\n▁Holy\t-8.29228\n▁around\t-8.2926\n▁died\t-8.29477\n▁king\t-8.29492\n▁save\t-8.30108\n▁stone\t-8.30406\n▁daughter\t-8.30542\n▁living\t-8.31378\n▁Wherefore\t-8.31383\n▁Arable\t-8.31604\n▁angel\t-8.31695\n▁cried\t-8.32478\n▁cause\t-8.32661\n▁door\t-8.32794\n▁judgment\t-8.33837\n▁priest\t-8.33877\n▁enter\t-8.3419\n▁gospel\t-8.34712\n▁taken\t-8.34824\n▁known\t-8.34881\n▁young\t-8.35902\n▁mind\t-8.36576\n▁mercy\t-8.36998\n▁Gentiles\t-8.37003\n▁blessed\t-8.3717\n▁C\t-8.3734\n▁few\t-8.3812\n▁All\t-8.38343\n▁ask\t-8.3849\n▁bare\t-8.39225\n▁kill\t-8.39487\n▁look\t-8.39994\n▁hold\t-8.40086\n▁rest\t-8.40146\n▁hard\t-8.40519\n▁money\t-8.40528\n▁opened\t-8.40702\n▁believed\t-8.40787\n▁lord\t-8.40864\n▁second\t-8.41736\n▁gone\t-8.41748\n▁Templeton\t-8.4177\n▁un\t-8.41805\n▁hope\t-8.42799\n▁Pharisees\t-8.43071\n▁call\t-8.43497\n▁show\t-8.43682\n▁My\t-8.44284\n▁entered\t-8.44647\n▁Esau\t-8.46702\n▁last\t-8.46705\n▁don\t-8.46922\n▁gathered\t-8.46923\nter\t-8.4768\n▁daughters\t-8.47686\n▁Go\t-8.47902\n▁born\t-8.47914\n▁twelve\t-8.47985\n▁wise\t-8.47992\nce\t-8.4809\n▁able\t-8.48372\n▁walked\t-8.48508\n▁got\t-8.48533\n▁minister\t-8.48824\n▁third\t-8.49283\n▁always\t-8.49289\n▁lest\t-8.4929\n▁none\t-8.49306\n▁delivered\t-8.49548\n▁sake\t-8.49756\n▁dwell\t-8.49988\n▁As\t-8.50097\n▁too\t-8.50444\n▁righteous\t-8.50452\n▁yourselves\t-8.50599\n▁country\t-8.50604\n▁cannot\t-8.50605\n▁sure\t-8.50609\n▁became\t-8.50618\n▁raised\t-8.50674\n▁Avery\t-8.50712\n▁whe\t-8.51107\n▁prophets\t-8.51297\n▁above\t-8.51932\n▁barn\t-8.51933\n▁followed\t-8.52245\n▁You\t-8.52357\n▁beast\t-8.52483\n▁thought\t-8.5287\n▁priests\t-8.52935\n▁mount\t-8.53287\n▁judge\t-8.53436\n▁offering\t-8.54027\n▁cattle\t-8.54654\n▁angels\t-8.55708\n▁women\t-8.56041\n▁food\t-8.56043\n▁looking\t-8.56578\n▁fruit\t-8.56588\n▁year\t-8.56793\n▁joy\t-8.57444\n▁half\t-8.57451\n▁true\t-8.57451\n▁midst\t-8.57497\n▁How\t-8.57598\n▁soul\t-8.58053\n▁fine\t-8.58807\n▁indeed\t-8.5889\n▁anything\t-8.58906\n▁To\t-8.5897\n▁most\t-8.58987\n▁filled\t-8.58993\n▁elders\t-8.59019\n▁wood\t-8.59608\n▁serve\t-8.60044\n▁covenant\t-8.60329\n▁remember\t-8.60329\n▁ten\t-8.61202\n▁fall\t-8.61223\n▁small\t-8.61762\n▁dark\t-8.61779\n▁Simon\t-8.61799\n▁silver\t-8.61801\n▁Every\t-8.61847\n▁Egyptians\t-8.61971\n▁sun\t-8.6278\n▁ran\t-8.63338\n▁sins\t-8.63442\n▁returned\t-8.63497\nes\t-8.64314\n▁church\t-8.64789\n▁Smith\t-8.64807\n▁sabbath\t-8.64808\n▁Lurvy\t-8.6482\n▁lived\t-8.65136\nrose\t-8.65325\n▁waters\t-8.65449\nness\t-8.6549\n▁fathers\t-8.65936\n▁fish\t-8.66302\n▁strong\t-8.66348\n▁thousand\t-8.67047\n▁myself\t-8.6793\n▁turned\t-8.68314\n▁prophet\t-8.68658\n▁kept\t-8.69495\n▁alone\t-8.69499\n▁darkness\t-8.69514\n▁Why\t-8.6958\n▁far\t-8.69584\n▁One\t-8.696\n▁That\t-8.69657\n▁sign\t-8.71027\n▁home\t-8.71105\n▁why\t-8.71124\n▁ready\t-8.71156\n▁ears\t-8.7165\n▁feast\t-8.71798\n▁turn\t-8.71881\n▁sleep\t-8.72178\n▁eternal\t-8.72747\nen\t-8.72795\n▁didn\t-8.73001\n▁saved\t-8.73049\n▁spider\t-8.7356\n▁big\t-8.74407\n▁straightway\t-8.74419\n▁others\t-8.745\n▁along\t-8.74502\n▁departed\t-8.74602\n▁rat\t-8.76019\n▁wilderness\t-8.76109\n▁wisdom\t-8.76109\n▁Abram\t-8.76109\n▁ark\t-8.76139\n▁whatsoever\t-8.76383\n▁passed\t-8.76408\n▁seeing\t-8.76645\n▁loved\t-8.76879\n▁need\t-8.77615\n▁something\t-8.77835\n▁except\t-8.77835\n▁better\t-8.77836\n▁till\t-8.77841\n▁wine\t-8.77841\n▁within\t-8.78234\nve\t-8.78249\ners\t-8.78698\n▁wind\t-8.78736\n▁commandment\t-8.78748\ngat\t-8.78852\nYou\t-8.7903\n▁seem\t-8.79503\n▁linen\t-8.796\nout\t-8.79723\nus\t-8.80047\n▁nations\t-8.80253\n▁its\t-8.80305\n▁standing\t-8.80343\n▁leave\t-8.80493\n▁follow\t-8.80509\n▁write\t-8.80887\n▁T\t-8.81102\n▁beginning\t-8.81373\n▁sitting\t-8.81379\n▁saints\t-8.81382\nerily\t-8.81386\n▁His\t-8.81426\n▁appeared\t-8.81552\n▁goose\t-8.81674\n▁mountains\t-8.82035\n▁reason\t-8.82656\n▁top\t-8.83093\n▁deep\t-8.83129\n▁present\t-8.83191\n▁fulfilled\t-8.83193\n▁knowledge\t-8.83207\n▁Come\t-8.83248\n▁scribes\t-8.83323\n▁ought\t-8.83338\nan\t-8.83447\n▁air\t-8.8364\n▁tent\t-8.84574\n▁David\t-8.85043\n▁Laban\t-8.85043\n▁authority\t-8.85044\n▁rather\t-8.85048\n▁thyself\t-8.8505\n▁Bless\t-8.85052\n▁wilt\t-8.85055\n▁sh\t-8.85429\n▁cut\t-8.85649\n▁husband\t-8.86054\n▁meet\t-8.86483\n▁wrath\t-8.8693\n▁behind\t-8.8693\n▁pure\t-8.86938\nIf\t-8.87589\n▁yea\t-8.87776\n▁want\t-8.87825\n▁destroy\t-8.88387\n▁Chap\t-8.8885\n▁afraid\t-8.88853\n▁congregation\t-8.88853\n▁baptized\t-8.88881\n▁foot\t-8.88905\n▁generations\t-8.89419\n▁leaves\t-8.89766\n▁kind\t-8.89797\n▁throne\t-8.89941\n▁help\t-8.90573\n▁visit\t-8.90809\nhall\t-8.90852\n▁apostles\t-8.91106\n▁master\t-8.91991\n▁sick\t-8.92787\n▁Canaan\t-8.92798\n▁bound\t-8.9281\n▁Galilee\t-8.92814\n▁next\t-8.92814\n▁replied\t-8.92816\n▁try\t-8.92838\n▁wherein\t-8.92878\n▁cup\t-8.92976\n▁soldiers\t-8.92996\n▁garments\t-8.93232\n▁teaching\t-8.93237\nor\t-8.93277\n▁watch\t-8.93405\n▁woods\t-8.93868\n▁boy\t-8.94018\n▁friend\t-8.94028\n▁p\t-8.94283\n▁deliver\t-8.94432\nle\t-8.94619\n▁deal\t-8.94851\n▁sockets\t-8.94866\n▁Take\t-8.94891\n▁worthy\t-8.94916\n▁beloved\t-8.94997\n▁therein\t-8.95028\n▁bed\t-8.95275\n▁boys\t-8.95708\n▁thence\t-8.95813\n▁knoweth\t-8.95841\n▁hair\t-8.9597\n▁preach\t-8.96151\n▁meat\t-8.96216\n▁f\t-8.96374\n▁arose\t-8.96428\n▁six\t-8.96506\n▁knowing\t-8.96574\n▁has\t-8.96597\n▁nigh\t-8.96644\n▁twenty\t-8.96941\n▁salvation\t-8.96943\n▁Noah\t-8.96943\n▁rain\t-8.96946\n▁thus\t-8.96992\n▁held\t-8.97088\n▁E\t-8.97478\n▁fast\t-8.97739\n▁signs\t-8.98027\n▁suffer\t-8.98182\n▁At\t-8.98249\n▁teach\t-8.98444\n▁eye\t-8.98565\n▁blind\t-8.98573\n▁smell\t-8.9859\n▁clean\t-8.98848\n▁M\t-8.98859\n▁curtain\t-8.99066\n▁testimony\t-8.99066\n▁straw\t-8.99066\n▁everything\t-8.99069\n▁blue\t-8.9907\n▁firstborn\t-8.9907\n▁Bear\t-8.99088\n▁sit\t-8.99165\n▁free\t-8.99177\n▁soon\t-8.99189\n▁cubits\t-8.9942\n▁desire\t-8.99437\np\t-8.99904\n▁hearts\t-9.00279\n▁honor\t-9.0123\n▁Pilate\t-9.0124\n▁enough\t-9.0124\n▁Therefore\t-9.01265\n▁lifted\t-9.01484\n▁once\t-9.01759\n▁demons\t-9.01768\n▁Indians\t-9.0177\n▁perfect\t-9.02501\n▁nation\t-9.02625\n▁doeth\t-9.0272\nWhat\t-9.02907\n▁Do\t-9.03074\n▁No\t-9.0316\n▁abide\t-9.03367\n▁Rachel\t-9.03462\n▁Even\t-9.03464\n▁bega\t-9.03499\n▁By\t-9.0372\n▁forty\t-9.03938\n▁Jud\t-9.04012\n▁red\t-9.04049\ndrew\t-9.04072\n▁sacrifice\t-9.04688\n▁P\t-9.04782\n▁court\t-9.04842\n▁sister\t-9.0485\n▁cloud\t-9.04857\n▁named\t-9.0487\n▁table\t-9.04894\n▁mountain\t-9.049\n▁answer\t-9.05197\n▁alive\t-9.05736\n▁Judah\t-9.0574\n▁camp\t-9.05749\n▁moved\t-9.05922\n▁greater\t-9.06003\n▁evening\t-9.06099\n▁dream\t-9.06209\nal\t-9.06366\nous\t-9.06861\n▁matter\t-9.07193\n▁month\t-9.07218\n▁verily\t-9.08061\n▁Mary\t-9.08065\n▁broken\t-9.08077\nable\t-9.08102\n▁lie\t-9.0835\n▁Yea\t-9.09102\n▁sound\t-9.09135\n▁promise\t-9.09374\n▁Where\t-9.09419\n▁boat\t-9.09557\ncross\t-9.09888\nS\t-9.10009\n▁gather\t-9.10027\n▁ate\t-9.10265\n▁book\t-9.10437\n▁After\t-9.10441\n▁dwelt\t-9.10441\n▁enemies\t-9.10441\n▁faithful\t-9.10458\n▁Of\t-9.10943\n▁mighty\t-9.10983\n▁prison\t-9.11878\n▁tongue\t-9.12043\n▁kings\t-9.12338\n▁wait\t-9.12451\n▁multitudes\t-9.12878\n▁presence\t-9.1288\n▁taught\t-9.1288\n▁grew\t-9.12884\n▁carried\t-9.12887\n▁since\t-9.12911\n▁sold\t-9.12917\n▁hanging\t-9.1306\n▁almo\t-9.13082\nion\t-9.13098\n▁led\t-9.13163\n▁preached\t-9.1338\n▁cross\t-9.13459\n▁start\t-9.13489\nies\t-9.13635\nIt\t-9.13666\nless\t-9.13911\n▁walking\t-9.13952\n▁journey\t-9.14007\n▁synagogue\t-9.14531\n▁rock\t-9.1454\n▁worship\t-9.1497\n▁lo\t-9.15308\n▁purple\t-9.1538\n▁Sarah\t-9.1538\n▁felt\t-9.1538\n▁hearken\t-9.1538\n▁sweet\t-9.15382\n▁thirty\t-9.15416\n▁oil\t-9.15511\n▁B\t-9.15768\nsought\t-9.16355\n▁times\t-9.16436\n▁war\t-9.16684\n▁goeth\t-9.16688\n▁re\t-9.16857\n▁crate\t-9.16947\n▁point\t-9.17046\n▁understand\t-9.17364\n▁stones\t-9.17381\n▁rich\t-9.17405\n▁please\t-9.1778\n▁eight\t-9.17904\n▁loud\t-9.17905\n▁resurrection\t-9.17944\n▁least\t-9.17944\n▁trees\t-9.18052\n▁early\t-9.18055\n▁burnt\t-9.18206\nas\t-9.18655\n▁measure\t-9.18669\n▁sword\t-9.19627\n▁fellow\t-9.19636\n▁egg\t-9.19724\n▁offer\t-9.19875\n▁Herod\t-9.20575\n▁Littlefish\t-9.20576\n▁ourselves\t-9.20576\n▁branches\t-9.20582\n▁neck\t-9.20643\n▁warm\t-9.20672\n▁brass\t-9.20745\n▁rings\t-9.2088\n▁vain\t-9.20986\n▁blessing\t-9.21047\n▁speaketh\t-9.21113\n▁killed\t-9.21521\n▁souls\t-9.22154\n▁service\t-9.22288\n▁ear\t-9.22541\non\t-9.22573\n▁N\t-9.22604\nfore\t-9.23238\n▁wives\t-9.23279\n▁else\t-9.23279\n▁herself\t-9.23287\n▁younger\t-9.23384\n▁arise\t-9.23425\n▁rulers\t-9.23814\nment\t-9.23862\n▁boards\t-9.23988\n▁See\t-9.24076\n▁bless\t-9.25153\n▁prayer\t-9.25305\n▁continue\t-9.25981\n▁strength\t-9.26035\n▁fifty\t-9.26056\n▁beyond\t-9.26057\n▁milk\t-9.26057\n▁lead\t-9.26081\n▁morrow\t-9.26177\n▁healed\t-9.26241\n▁open\t-9.27741\nbody\t-9.28089\n▁generation\t-9.281\n▁names\t-9.2816\n▁On\t-9.28327\n▁manifest\t-9.28497\nin\t-9.28735\n▁false\t-9.28778\n▁Thu\t-9.28845\n▁scarlet\t-9.28913\n▁apart\t-9.28913\n▁quit\t-9.28915\n▁Teacher\t-9.28915\n▁James\t-9.28915\n▁spread\t-9.28938\n▁fled\t-9.28946\n▁judged\t-9.29361\n▁number\t-9.30423\n▁black\t-9.30461\n▁gift\t-9.31007\n▁read\t-9.31234\n▁smoke\t-9.3165\n▁rejoice\t-9.3166\n▁poor\t-9.31709\n▁buried\t-9.31855\n▁grey\t-9.31855\n▁wrought\t-9.31856\n▁dry\t-9.31868\n▁already\t-9.31874\n▁soil\t-9.31896\n▁front\t-9.31915\n▁abideth\t-9.3198\n▁age\t-9.31982\n▁appointed\t-9.31987\n▁Lot\t-9.32076\n▁pillars\t-9.324\n▁horses\t-9.32434\n▁pieces\t-9.32595\n▁means\t-9.32601\n▁friends\t-9.33087\n▁break\t-9.33326\n▁build\t-9.33981\n▁order\t-9.33994\n▁apple\t-9.34016\n▁speaking\t-9.34233\nWell\t-9.34318\n▁weak\t-9.34349\n▁houses\t-9.3438\n▁pen\t-9.34399\n▁crown\t-9.34432\n▁return\t-9.34467\none\t-9.34488\n▁low\t-9.34559\n▁Satan\t-9.34885\n▁making\t-9.34886\n▁Leah\t-9.34886\n▁Fair\t-9.34886\n▁Nation\t-9.34894\n▁dust\t-9.34903\n▁east\t-9.34921\n▁gain\t-9.34966\n▁Thy\t-9.34989\n▁gods\t-9.35096\n▁sinners\t-9.35159\n▁shew\t-9.35613\n▁fat\t-9.35774\nward\t-9.36109\nit\t-9.36283\nty\t-9.3717\n▁gate\t-9.37213\nrom\t-9.37331\n▁comfort\t-9.37571\n▁places\t-9.37719\n▁corn\t-9.37991\n▁shame\t-9.38016\n▁worshipped\t-9.38063\n▁fallen\t-9.38069\n▁stopped\t-9.38073\n▁vessels\t-9.3832\n▁thanks\t-9.38554\n▁heavens\t-9.38793\n▁giveth\t-9.38887\n▁bad\t-9.39046\n▁stay\t-9.4033\n▁tomb\t-9.40357\nmuch\t-9.4061\n▁length\t-9.40758\n▁anoint\t-9.40804\n▁close\t-9.40865\n▁praise\t-9.41016\n▁draw\t-9.412\n▁unclean\t-9.41219\n▁grow\t-9.41222\n▁Wolf\t-9.41236\n▁beautiful\t-9.41236\n▁crucified\t-9.41236\n▁kiss\t-9.41236\n▁ephod\t-9.41236\n▁circumcision\t-9.41236\n▁trough\t-9.41238\n▁cold\t-9.41238\n▁justified\t-9.41245\n▁Give\t-9.41269\n▁course\t-9.41301\n▁King\t-9.41302\n▁finished\t-9.41326\n▁lost\t-9.41331\n▁climbed\t-9.4134\n▁animals\t-9.41556\nwith\t-9.41836\nation\t-9.41929\n▁run\t-9.42756\nel\t-9.42869\n▁famine\t-9.43571\nh\t-9.43663\n▁board\t-9.43805\n▁command\t-9.44011\n▁feel\t-9.44092\n▁exceeding\t-9.44476\n▁rise\t-9.44554\n▁wrong\t-9.44566\n▁Philip\t-9.44569\n▁abroad\t-9.44569\n▁Rebekah\t-9.44569\n▁devil\t-9.4457\n▁shut\t-9.44575\n▁south\t-9.44578\n▁past\t-9.44582\n▁Judas\t-9.44586\n▁moment\t-9.44587\n▁itself\t-9.44604\n▁prepared\t-9.44648\n▁talked\t-9.44807\n▁often\t-9.44915\n▁seventh\t-9.4511\n▁offered\t-9.45122\n▁suffered\t-9.45239\n▁Not\t-9.45316\n▁seat\t-9.46083\n▁working\t-9.46209\n▁commandments\t-9.46209\n▁burn\t-9.46815\nur\t-9.46855\n▁sorrow\t-9.47019\n▁scripture\t-9.47164\n▁Indian\t-9.47188\n▁dis\t-9.47421\n▁best\t-9.47449\n▁perish\t-9.47459\n▁grass\t-9.47905\n▁office\t-9.47969\n▁foolish\t-9.48001\n▁Cherokee\t-9.48017\n▁asleep\t-9.48017\n▁beseech\t-9.48017\n▁staves\t-9.48018\n▁summer\t-9.4802\n▁reward\t-9.48029\n▁passover\t-9.48035\n▁speech\t-9.48044\n▁room\t-9.48047\n▁conceived\t-9.48048\n▁Amen\t-9.4805\n▁green\t-9.48057\n▁crowd\t-9.48071\nA\t-9.48266\n▁pleased\t-9.48276\n▁covered\t-9.48337\n▁believeth\t-9.48401\n▁understanding\t-9.48623\n▁flocks\t-9.4881\n▁tongues\t-9.49231\n▁members\t-9.49845\n▁met\t-9.49845\n▁season\t-9.5026\n▁smite\t-9.50392\n▁counsel\t-9.50591\n▁hearing\t-9.50607\n▁edge\t-9.5065\n▁bow\t-9.50668\n▁image\t-9.50668\n▁captain\t-9.50695\n▁parable\t-9.50714\n▁tribe\t-9.50725\n▁piece\t-9.50754\ngotten\t-9.51013\n▁sharp\t-9.51439\n▁reign\t-9.51443\n▁care\t-9.51464\n▁bright\t-9.51536\n▁subject\t-9.51582\n▁fornication\t-9.51589\n▁patience\t-9.51589\n▁salute\t-9.51589\n▁writing\t-9.51589\n▁sky\t-9.51589\n▁wept\t-9.5159\n▁swim\t-9.5159\n▁guard\t-9.51594\n▁buy\t-9.51597\n▁slay\t-9.51598\n▁divided\t-9.51707\n▁beheld\t-9.51709\n▁eaten\t-9.51731\n▁troubled\t-9.51783\n▁dur\t-9.51939\n▁legs\t-9.51966\n▁crying\t-9.51971\n▁riches\t-9.52194\n▁hid\t-9.52259\n▁loveth\t-9.52316\n▁wanted\t-9.52388\n▁forward\t-9.5241\nam\t-9.52986\n▁prayed\t-9.53212\nng\t-9.53357\n▁committe\t-9.53624\n▁depart\t-9.54028\nful\t-9.54067\n▁duke\t-9.54427\n▁creature\t-9.54438\n▁flock\t-9.5445\n▁b\t-9.54715\n▁lift\t-9.54874\n▁repent\t-9.5514\n▁short\t-9.55173\n▁strange\t-9.55237\n▁forgive\t-9.55251\n▁eating\t-9.55257\n▁ox\t-9.55277\n▁incense\t-9.55292\n▁large\t-9.55293\n▁account\t-9.55293\n▁truck\t-9.55293\n▁spiritual\t-9.55293\n▁Adam\t-9.55294\n▁glorified\t-9.55297\n▁Sodom\t-9.55299\n▁pay\t-9.553\nittim\t-9.55304\n▁Lamb\t-9.55304\n▁immediately\t-9.55308\n▁circumcised\t-9.55334\n▁churches\t-9.55337\n▁yard\t-9.55393\n▁Th\t-9.5548\n▁poured\t-9.55508\n▁clothes\t-9.55509\n▁closed\t-9.55567\n▁thereon\t-9.55621\n▁raise\t-9.55679\n▁touched\t-9.55703\n▁breadth\t-9.55733\n▁bowed\t-9.55737\n▁receiveth\t-9.55748\n▁sore\t-9.55777\n▁rod\t-9.55802\n▁besought\t-9.56316\n▁bit\t-9.56435\nir\t-9.5653\n▁putt\t-9.56568\n▁wax\t-9.56673\n▁e\t-9.56921\n▁mean\t-9.58042\n▁disciple\t-9.58307\n▁stranger\t-9.5834\n▁touch\t-9.58606\n▁carry\t-9.58687\n▁wash\t-9.58973\n▁glad\t-9.59004\n▁quiet\t-9.59056\n▁lawful\t-9.59069\n▁council\t-9.59138\n▁Barnabas\t-9.59139\n▁Woe\t-9.59139\n▁garden\t-9.59139\n▁iniquity\t-9.59139\n▁hurt\t-9.59139\n▁whither\t-9.59139\n▁cities\t-9.59139\n▁tried\t-9.5914\n▁empty\t-9.59153\n▁deny\t-9.59168\n▁lad\t-9.59173\n▁bought\t-9.59175\n▁exceedingly\t-9.59273\n▁pulled\t-9.59297\n▁pit\t-9.59317\n▁happened\t-9.59365\n▁longer\t-9.59368\n▁charged\t-9.59389\n▁hated\t-9.59424\n▁manifested\t-9.59713\n▁knowest\t-9.59844\n▁worketh\t-9.59937\n▁less\t-9.59951\n▁greatly\t-9.60633\n▁sac\t-9.6071\n▁reach\t-9.61166\ntaking\t-9.61834\n▁breastplate\t-9.62142\n▁Lo\t-9.62168\n▁garment\t-9.62312\nof\t-9.62371\n▁multiply\t-9.62616\n▁t\t-9.6269\n▁obey\t-9.62698\n▁car\t-9.62719\nri\t-9.62724\n▁Some\t-9.62773\nted\t-9.62883\n▁road\t-9.63136\n▁Jackson\t-9.63139\n▁couple\t-9.63139\n▁guess\t-9.63139\n▁spent\t-9.6314\n▁bondage\t-9.6314\n▁created\t-9.63151\n▁built\t-9.63152\n▁brown\t-9.63153\n▁swear\t-9.63157\nat\t-9.63168\n▁quickly\t-9.63169\ngiving\t-9.63175\n▁self\t-9.63179\n▁h\t-9.63217\no\t-9.63292\n▁nine\t-9.63296\n▁stretched\t-9.63355\n▁trouble\t-9.63407\n▁Are\t-9.63409\n▁couldn\t-9.63474\n▁wonders\t-9.63475\n▁touching\t-9.63606\n▁stars\t-9.63728\nsar\t-9.63824\n▁purpose\t-9.64255\n▁gifts\t-9.64309\n▁heads\t-9.64565\nand\t-9.6468\nis\t-9.64905\nday\t-9.65041\n▁D\t-9.65836\near\t-9.65838\nped\t-9.65962\n▁afternoon\t-9.66357\n▁foundation\t-9.66379\n▁appear\t-9.66408\n▁Jew\t-9.66644\n▁cry\t-9.66922\n▁rule\t-9.66923\n▁wall\t-9.67057\n▁spirits\t-9.67079\n▁straight\t-9.67303\n▁Abimelech\t-9.67305\n▁bottom\t-9.67305\n▁caught\t-9.67305\n▁conscience\t-9.67305\n▁twin\t-9.67305\n▁unleavened\t-9.67305\n▁Elijah\t-9.67305\n▁hungry\t-9.67308\n▁story\t-9.67309\n▁winter\t-9.6731\n▁teeth\t-9.67312\n▁catch\t-9.67313\n▁household\t-9.67323\n▁sinned\t-9.67326\n▁With\t-9.67342\n▁really\t-9.6735\n▁risen\t-9.67351\n▁learned\t-9.67666\n▁beat\t-9.67735\n▁sides\t-9.67906\n▁ways\t-9.67932\n▁watched\t-9.68202\n▁ones\t-9.68253\n▁skins\t-9.68281\nim\t-9.68654\n▁calling\t-9.68849\n▁months\t-9.68857\n▁faces\t-9.68924\n▁horse\t-9.69118\n▁H\t-9.69182\ni\t-9.69223\nfor\t-9.69549\n▁state\t-9.70662\n▁tail\t-9.70714\n▁creek\t-9.70749\n▁ruler\t-9.70862\n▁act\t-9.70911\nOh\t-9.71075\n▁parts\t-9.71077\n▁feed\t-9.71185\n▁count\t-9.71368\n▁double\t-9.71427\n▁secret\t-9.71504\n▁abound\t-9.71505\n▁loose\t-9.71537\n▁wild\t-9.71555\n▁thin\t-9.7162\n▁spoke\t-9.71631\n▁Levi\t-9.71649\n▁hither\t-9.71651\n▁raiment\t-9.71653\n▁glorify\t-9.71653\n▁afar\t-9.71654\n▁vineyard\t-9.71654\n▁Ridge\t-9.71656\n▁space\t-9.71656\n▁pigpen\t-9.71659\n▁goats\t-9.7166\n▁wrote\t-9.71667\n▁suddenly\t-9.71681\n▁creep\t-9.71684\n▁forgiven\t-9.71696\n▁outside\t-9.71707\n▁maid\t-9.71709\n▁golden\t-9.71752\n▁hot\t-9.71767\n▁witnesses\t-9.71781\n▁officers\t-9.7187\n▁ends\t-9.72034\n▁heed\t-9.72088\n▁birds\t-9.72219\n▁wet\t-9.72272\nar\t-9.72331\n▁mayest\t-9.7254\n▁eateth\t-9.7281\n▁heavenly\t-9.73048\n▁synagogues\t-9.73161\n▁Whi\t-9.73192\n▁feared\t-9.74065\n▁beasts\t-9.74473\n▁skin\t-9.74854\n▁charge\t-9.75078\nw\t-9.75133\nrew\t-9.75159\n▁pleasure\t-9.75317\n▁pillar\t-9.75355\nHe\t-9.75522\n▁L\t-9.75591\neither\t-9.75634\n▁remain\t-9.75654\n▁play\t-9.75692\n▁sail\t-9.75828\n▁report\t-9.75856\nake\t-9.76055\n▁confess\t-9.76189\n▁inherit\t-9.76194\n▁Benjamin\t-9.76199\n▁Isaiah\t-9.76199\n▁array\t-9.76199\n▁haply\t-9.76199\n▁remembrance\t-9.76199\n▁womb\t-9.76199\n▁Timothy\t-9.76199\n▁mystery\t-9.76199\n▁daily\t-9.76199\n▁hail\t-9.762\n▁tired\t-9.762\n▁fence\t-9.762\n▁likewise\t-9.76201\n▁inheritance\t-9.76203\n▁arrived\t-9.76232\n▁Put\t-9.76334\n▁Have\t-9.76368\n▁inside\t-9.76477\n▁talking\t-9.76544\n▁camels\t-9.76562\n▁weight\t-9.76575\n▁lose\t-9.76583\nah\t-9.76814\n▁breath\t-9.76993\n▁heareth\t-9.7709\n▁willing\t-9.77102\n▁d\t-9.77309\n▁g\t-9.77384\n▁c\t-9.77666\nrs\t-9.77708\n▁spring\t-9.78101\nity\t-9.78192\n▁fight\t-9.78886\n▁—\t-9.78976\n▁candlestick\t-9.80067\n▁village\t-9.80091\n▁lamb\t-9.80103\n▁cover\t-9.80122\n▁coat\t-9.80128\n▁finger\t-9.8016\nadventure\t-9.80273\n▁W\t-9.80337\n▁song\t-9.80341\nYes\t-9.80366\n▁bury\t-9.80485\n▁fashion\t-9.80502\n▁establish\t-9.80527\n▁thank\t-9.80613\n▁possess\t-9.8077\n▁stumble\t-9.80872\n▁flee\t-9.80874\n▁ashamed\t-9.8096\n▁dominion\t-9.8096\n▁flood\t-9.8096\n▁knife\t-9.8096\n▁trail\t-9.8096\n▁devour\t-9.80961\n▁precious\t-9.80961\n▁Saviour\t-9.80961\n▁vail\t-9.80961\n▁happy\t-9.80961\n▁marry\t-9.80961\n▁further\t-9.80962\n▁Perry\t-9.80963\n▁possible\t-9.80972\n▁elect\t-9.80976\n▁adultery\t-9.80989\n▁smote\t-9.80996\n▁sware\t-9.81007\n▁amazed\t-9.81009\n▁stick\t-9.81026\n▁slowly\t-9.81037\n▁scattered\t-9.81076\n▁sort\t-9.81105\n▁hardened\t-9.81108\n▁sixth\t-9.81186\n▁hire\t-9.81193\n▁bones\t-9.81277\n▁borne\t-9.81315\n▁hence\t-9.8138\n▁liveth\t-9.81494\n▁burned\t-9.81557\n▁feeling\t-9.81653\nily\t-9.81884\n▁notice\t-9.81945\n▁destroyed\t-9.82034\n▁strangers\t-9.82038\n▁doing\t-9.82973\n▁Is\t-9.83049\n▁R\t-9.83169\n▁perceive\t-9.84637\n▁Salut\t-9.84827\n▁hole\t-9.85062\n▁Hebrew\t-9.85097\n▁cubit\t-9.8512\n▁ship\t-9.85191\n▁sanctif\t-9.85251\n▁curse\t-9.85812\n▁grave\t-9.85927\n▁naked\t-9.85943\n▁supper\t-9.85959\n▁Macedonia\t-9.8596\n▁Spearfinger\t-9.8596\n▁behalf\t-9.8596\n▁ignorant\t-9.8596\n▁thither\t-9.8596\n▁bottle\t-9.85961\n▁crawl\t-9.85961\n▁Saul\t-9.85961\n▁idea\t-9.85961\n▁loaves\t-9.85961\n▁reproach\t-9.85969\n▁cheer\t-9.85972\n▁moon\t-9.85973\n▁Arise\t-9.85977\n▁tidings\t-9.85985\n▁handmaid\t-9.85997\n▁decided\t-9.86005\n▁horns\t-9.86046\n▁wide\t-9.8611\n▁idols\t-9.86203\n▁fly\t-9.86244\n▁shoes\t-9.86291\n▁knees\t-9.86341\n▁bonds\t-9.86467\n▁washed\t-9.86538\n▁goods\t-9.86571\nate\t-9.86578\n▁either\t-9.86591\n▁letters\t-9.86601\n▁use\t-9.87014\n▁move\t-9.87397\n▁eggs\t-9.87619\n▁tables\t-9.87886\n▁sacrifices\t-9.8789\ng\t-9.88076\n▁thinking\t-9.88136\n▁form\t-9.88295\n▁needs\t-9.88493\nnto\t-9.88661\n▁accuse\t-9.89308\n▁bearing\t-9.89505\n▁question\t-9.8981\n▁demon\t-9.89935\n▁affliction\t-9.90232\n▁governor\t-9.90276\n▁root\t-9.90322\n▁possession\t-9.90342\n▁neighbor\t-9.90349\n▁wheel\t-9.90383\n▁host\t-9.9039\n▁corner\t-9.90431\n▁afterward\t-9.905\n▁clear\t-9.90626\nHow\t-9.90667\nBut\t-9.9067\n▁worry\t-9.90729\n▁regard\t-9.90753\n▁proceed\t-9.90767\nnt\t-9.90798\n▁forbid\t-9.91018\n▁shoulder\t-9.91021\n▁wicked\t-9.91057\n▁grievous\t-9.91098\n▁late\t-9.91199\n▁Cain\t-9.91222\n▁Claire\t-9.91224\n▁Jordan\t-9.91224\n▁abode\t-9.91224\n▁centurion\t-9.91224\n▁company\t-9.91224\n▁marriage\t-9.91224\n▁neighbour\t-9.91224\n▁flies\t-9.91224\n▁parents\t-9.91224\n▁families\t-9.91224\n▁struck\t-9.91224\n▁breakfast\t-9.91225\n▁nought\t-9.91225\n▁business\t-9.91227\n▁repentance\t-9.9123\n▁subjection\t-9.91239\n▁brake\t-9.91244\n▁Most\t-9.91245\n▁fill\t-9.91257\n▁tiny\t-9.91265\n▁cock\t-9.91266\n▁begin\t-9.9127\n▁direction\t-9.91276\n▁sell\t-9.91291\n▁robe\t-9.91305\n▁anger\t-9.91324\n▁marvelled\t-9.91353\n▁Art\t-9.91355\n▁tied\t-9.91393\nting\t-9.91411\n▁reckoned\t-9.91489\n▁Here\t-9.91588\n▁covering\t-9.91745\never\t-9.91788\n▁lusts\t-9.91854\n▁served\t-9.91941\n▁fully\t-9.91948\n▁height\t-9.92032\n▁corners\t-9.92118\n▁journeyed\t-9.92144\n▁hate\t-9.92196\n▁faint\t-9.92406\n▁Her\t-9.92547\n▁scriptures\t-9.92552\n▁gates\t-9.92695\n▁declare\t-9.92829\n▁falling\t-9.92878\n▁treasure\t-9.93402\nthe\t-9.93419\n▁G\t-9.93652\n▁commit\t-9.93664\nance\t-9.94595\n▁voices\t-9.95052\n▁labor\t-9.95267\nish\t-9.95405\n▁tribulation\t-9.95784\nred\t-9.95786\n▁join\t-9.95908\n▁arm\t-9.95912\n▁apostle\t-9.95976\nThe\t-9.96069\ntimes\t-9.96124\nThat\t-9.96222\n▁profit\t-9.96299\n▁utter\t-9.96321\n▁strip\t-9.96335\n▁change\t-9.96365\n▁leaven\t-9.96459\n▁stop\t-9.96566\n▁refuse\t-9.96583\n▁plain\t-9.96655\n▁natural\t-9.96668\n▁chose\t-9.96749\n▁Again\t-9.96779\n▁Brethren\t-9.96779\n▁Grace\t-9.96779\n▁Nazareth\t-9.96779\n▁beneath\t-9.96779\n▁geese\t-9.96779\n▁middle\t-9.96779\n▁woe\t-9.9678\n▁fourteen\t-9.9678\n▁fair\t-9.9678\n▁respect\t-9.96781\n▁spoil\t-9.96792\n▁Asia\t-9.96797\n▁abundantly\t-9.96803\n▁Nay\t-9.96808\n▁drove\t-9.96822\n▁wish\t-9.96835\n▁lying\t-9.96839\n▁Know\t-9.96869\n▁rent\t-9.96907\n▁revealed\t-9.96914\n▁Dr\t-9.97031\n▁spin\t-9.97088\n▁talents\t-9.97099\n▁clothed\t-9.97112\n▁ago\t-9.97193\n▁persons\t-9.97298\n▁remained\t-9.97305\nill\t-9.97309\n▁fourth\t-9.97382\n▁stayed\t-9.97529\n▁wouldest\t-9.9774\n▁creatures\t-9.98087\n▁following\t-9.98221\n▁perceiv\t-9.98275\n▁drive\t-9.98326\n▁rocks\t-9.98734\n▁rush\t-9.99315\n▁race\t-9.99744\n▁star\t-9.99957\n▁nights\t-10.0014\n▁trust\t-10.0023\n▁ass\t-10.0036\n▁wear\t-10.0085\n▁pain\t-10.0143\n▁oath\t-10.0167\n▁snow\t-10.0167\n▁vision\t-10.0171\n▁ram\t-10.0173\n▁fowl\t-10.0174\n▁miracle\t-10.0174\n▁male\t-10.0175\n▁serpent\t-10.0176\n▁learn\t-10.0177\n▁talk\t-10.0179\n▁widow\t-10.018\n▁border\t-10.0181\nry\t-10.0186\nk\t-10.0202\n▁won\t-10.021\n▁redeem\t-10.0222\n▁escape\t-10.0247\n▁several\t-10.0255\n▁lot\t-10.0257\nhe\t-10.0258\n▁Antioch\t-10.0266\n▁Crockett\t-10.0266\n▁Ishmael\t-10.0266\n▁Reuben\t-10.0266\n▁Washington\t-10.0266\n▁baptism\t-10.0266\n▁cunning\t-10.0266\n▁everlasting\t-10.0266\n▁language\t-10.0266\n▁leaving\t-10.0266\n▁truly\t-10.0266\n▁Sarai\t-10.0266\n▁Sinai\t-10.0266\n▁astray\t-10.0266\n▁dawn\t-10.0266\n▁slew\t-10.0266\n▁nature\t-10.0266\n▁sitteth\t-10.0266\n▁colonel\t-10.0266\n▁swallow\t-10.0266\n▁Shechem\t-10.0266\n▁Howbeit\t-10.0266\n▁sanctuary\t-10.0266\n▁tarried\t-10.0267\n▁grain\t-10.0267\n▁bitter\t-10.0267\n▁yellow\t-10.0268\n▁interpretation\t-10.0268\n▁sanctified\t-10.0268\n▁oxen\t-10.0269\n▁sorry\t-10.0272\n▁wheat\t-10.0273\n▁fishes\t-10.0273\n▁farm\t-10.0279\n▁sown\t-10.028\n▁pail\t-10.0282\n▁exalted\t-10.0286\n▁Te\t-10.0297\n▁weeping\t-10.0298\n▁loosed\t-10.0299\n▁line\t-10.0302\n▁Look\t-10.0304\n▁lower\t-10.0305\n▁tears\t-10.0306\n▁wipe\t-10.0307\nory\t-10.0309\n▁sailed\t-10.0322\n▁calleth\t-10.0324\n▁counted\t-10.0325\n▁comforted\t-10.0348\n▁lines\t-10.0352\n▁borders\t-10.0352\n▁north\t-10.038\n▁noise\t-10.0388\n▁watching\t-10.0412\n▁turning\t-10.0434\n▁st\t-10.0442\n▁doest\t-10.0447\n▁Br\t-10.0508\n▁nose\t-10.053\n▁con\t-10.0541\n▁spiders\t-10.0581\n▁inso\t-10.0581\n▁Oh\t-10.0589\n▁cr\t-10.0601\n▁offerings\t-10.0651\n▁thoughts\t-10.0655\n▁r\t-10.0671\n▁per\t-10.0679\n▁hide\t-10.0701\n▁cabin\t-10.0792\n▁exhort\t-10.0795\n▁fig\t-10.0796\n▁hill\t-10.0804\nto\t-10.0824\nCharlotte\t-10.0836\nNow\t-10.0836\n▁lack\t-10.0839\nch\t-10.085\n▁Ha\t-10.0855\n▁dirt\t-10.0882\n▁swam\t-10.0883\n▁overcome\t-10.0883\n▁building\t-10.0891\n▁Asmeret\t-10.0891\n▁Ephesus\t-10.0891\n▁Hittite\t-10.0891\n▁Nahor\t-10.0891\n▁Simeon\t-10.0891\n▁cellar\t-10.0891\n▁harlot\t-10.0891\n▁rope\t-10.0891\n▁yield\t-10.0891\n▁running\t-10.0891\n▁Damascus\t-10.0891\n▁different\t-10.0891\n▁drank\t-10.0891\n▁godliness\t-10.0891\n▁common\t-10.0892\n▁wings\t-10.0892\n▁shook\t-10.0892\n▁compassion\t-10.0893\n▁grant\t-10.0894\n▁beaten\t-10.0894\n▁pick\t-10.0894\n▁bigge\t-10.0894\n▁chosen\t-10.0895\n▁pool\t-10.0895\n▁thorns\t-10.09\n▁asses\t-10.09\n▁An\t-10.09\n▁tempted\t-10.0909\n▁jumped\t-10.0909\n▁Did\t-10.0909\n▁chains\t-10.0911\n▁row\t-10.0912\n▁Hear\t-10.0915\n▁mourning\t-10.0916\nmen\t-10.0919\n▁wor\t-10.0931\n▁goodness\t-10.0934\n▁herds\t-10.0934\n▁pipe\t-10.0939\nants\t-10.0946\n▁bowls\t-10.0956\n▁pale\t-10.0958\n▁lamps\t-10.0961\n▁breaking\t-10.0987\n▁arms\t-10.0988\n▁lambs\t-10.1006\n▁sayest\t-10.103\n▁Shem\t-10.1055\n▁de\t-10.107\n▁withal\t-10.1075\n▁prayers\t-10.1101\n▁heal\t-10.1151\n▁drinking\t-10.1176\n▁commun\t-10.1202\n▁judges\t-10.1268\n▁fruits\t-10.1292\n▁roll\t-10.133\n▁desert\t-10.1409\n▁bringing\t-10.1454\n▁girdle\t-10.1459\n▁cave\t-10.146\nage\t-10.1462\n▁stream\t-10.1463\n▁week\t-10.1469\n▁Greek\t-10.1472\n▁bird\t-10.1473\n▁glorying\t-10.1479\n▁reap\t-10.149\nGood\t-10.1495\n▁flow\t-10.1504\n▁render\t-10.1505\nlaid\t-10.1521\n▁letter\t-10.1533\n▁flat\t-10.1545\n▁haste\t-10.1546\n▁Man\t-10.1555\nollow\t-10.1557\n▁stumbling\t-10.1558\n▁Almighty\t-10.1558\n▁anxious\t-10.1558\n▁bodies\t-10.1558\n▁bridegroom\t-10.1558\n▁damsel\t-10.1558\n▁disobedient\t-10.1558\n▁divers\t-10.1558\n▁necessary\t-10.1558\n▁obedience\t-10.1558\n▁prosper\t-10.1558\n▁screamed\t-10.1558\n▁silence\t-10.1558\n▁uncircumcision\t-10.1558\n▁diligence\t-10.1558\n▁iron\t-10.1558\n▁trumpet\t-10.1558\n▁harvest\t-10.1558\n▁Stephen\t-10.1558\n▁lips\t-10.1558\n▁slain\t-10.1558\n▁Haran\t-10.1558\n▁honey\t-10.1558\n▁rising\t-10.1558\n▁Nancy\t-10.1558\n▁acceptable\t-10.1559\n▁spare\t-10.1559\n▁boldness\t-10.1559\n▁overlay\t-10.1559\n▁temptation\t-10.1559\n▁lodge\t-10.1561\n▁steal\t-10.1562\n▁worse\t-10.1565\n▁Can\t-10.1566\n▁hypocrites\t-10.1567\n▁Sure\t-10.157\n▁ceased\t-10.1572\n▁Sir\t-10.1573\n▁removed\t-10.1573\n▁defiled\t-10.1576\nite\t-10.1577\n▁goslings\t-10.1579\n▁henceforth\t-10.158\n▁shortly\t-10.158\n▁hell\t-10.1582\n▁obtained\t-10.1583\nTHE\t-10.1585\nwo\t-10.1593\n▁onto\t-10.1595\n▁stared\t-10.161\n▁sacrificed\t-10.1617\n▁soft\t-10.1626\n▁frogs\t-10.1633\n▁Greeks\t-10.1645\n▁widows\t-10.1657\n▁pro\t-10.1663\n▁Sen\t-10.1685\n▁comes\t-10.1713\n▁needed\t-10.1729\nors\t-10.1735\n▁seeth\t-10.1749\n▁prove\t-10.1774\n▁sad\t-10.1821\n▁rebuke\t-10.1831\n▁holding\t-10.1835\n▁ill\t-10.1926\nge\t-10.1963\nrolled\t-10.1978\n▁liked\t-10.1996\nscore\t-10.2001\n▁fore\t-10.2002\n▁occasion\t-10.2061\nNo\t-10.2129\n▁happen\t-10.213\n▁lust\t-10.2134\n▁burden\t-10.2136\n▁add\t-10.2158\nc\t-10.216\n▁revelation\t-10.2173\n▁region\t-10.2177\n▁supplication\t-10.2182\n▁shepherd\t-10.2185\n▁blanket\t-10.2185\n▁Egyptian\t-10.2188\n▁mark\t-10.2196\n▁dog\t-10.2204\nris\t-10.2205\n▁beside\t-10.2209\nF\t-10.2214\n▁salt\t-10.2223\n▁laugh\t-10.2226\n▁inhabit\t-10.2226\n▁interest\t-10.2227\n▁condemn\t-10.2228\n▁betray\t-10.2229\n▁pour\t-10.2233\n▁heat\t-10.2234\n▁defile\t-10.2241\nary\t-10.2243\n▁je\t-10.2244\n▁release\t-10.2252\n▁despise\t-10.2252\n▁taste\t-10.2253\n▁store\t-10.2253\n▁slow\t-10.2264\n▁vine\t-10.2272\n▁Sadducees\t-10.2272\n▁America\t-10.2272\n▁Lazarus\t-10.2272\n▁Manasseh\t-10.2272\n▁Sequoyah\t-10.2272\n▁awoke\t-10.2272\n▁confidence\t-10.2272\n▁countenance\t-10.2272\n▁doctrine\t-10.2272\n▁dumb\t-10.2272\n▁multiplied\t-10.2272\n▁ointment\t-10.2272\n▁recompense\t-10.2272\n▁substance\t-10.2272\n▁tarry\t-10.2272\n▁Hagar\t-10.2272\n▁crep\t-10.2272\n▁digged\t-10.2272\n▁contrary\t-10.2272\n▁gander\t-10.2272\n▁fellowship\t-10.2273\n▁loins\t-10.2273\n▁pretty\t-10.2273\n▁Zion\t-10.2273\n▁understood\t-10.2273\n▁continually\t-10.2273\n▁unrighteousness\t-10.2273\n▁ungodly\t-10.2274\n▁loss\t-10.2274\n▁wickedness\t-10.2275\n▁price\t-10.2275\n▁trade\t-10.2275\n▁exactly\t-10.2275\n▁married\t-10.2276\n▁heap\t-10.2276\n▁rejected\t-10.2277\n▁doorway\t-10.2277\n▁stedfastly\t-10.2278\n▁carefully\t-10.2278\n▁fruitful\t-10.2278\n▁shot\t-10.228\n▁stirred\t-10.228\n▁descended\t-10.2283\n▁spit\t-10.2285\n▁kindness\t-10.2285\n▁hunger\t-10.2286\n▁prevailed\t-10.2287\n▁thick\t-10.2289\n▁dying\t-10.229\n▁manure\t-10.2292\n▁ring\t-10.2293\n▁quietly\t-10.2294\n▁loops\t-10.2295\n▁bars\t-10.2296\n▁town\t-10.2298\n▁final\t-10.2303\n▁pond\t-10.231\n▁divide\t-10.2314\nxcept\t-10.232\n▁chariots\t-10.232\n▁rejoiced\t-10.232\n▁condemned\t-10.2322\n▁cleanse\t-10.2325\n▁powers\t-10.233\n▁promised\t-10.2335\n▁consider\t-10.2342\nke\t-10.2345\ntime\t-10.2365\n▁fasten\t-10.2371\n▁desired\t-10.2379\nach\t-10.238\n▁m\t-10.2383\n▁dreamed\t-10.241\n▁seasons\t-10.245\n▁Re\t-10.2451\n▁Well\t-10.2455\n▁lives\t-10.2457\nunto\t-10.2507\night\t-10.2552\n▁mo\t-10.2559\n▁ca\t-10.2567\n▁parted\t-10.2604\n▁praying\t-10.263\n▁intend\t-10.2684\n▁west\t-10.2713\n▁tr\t-10.2743\n▁laying\t-10.2743\n▁shed\t-10.2759\n▁favor\t-10.2779\n▁desir\t-10.2792\n▁rivers\t-10.2907\n▁hang\t-10.2927\n▁custom\t-10.2947\n▁case\t-10.2949\n▁frog\t-10.2956\n▁lamp\t-10.2956\n▁trap\t-10.2959\n▁prophesy\t-10.2986\nwhat\t-10.2986\nthough\t-10.299\n▁fetch\t-10.2992\n▁stretch\t-10.2999\n▁Say\t-10.3002\nthat\t-10.3007\n▁Rabbi\t-10.3008\n▁endure\t-10.3015\n▁owner\t-10.3019\n▁complete\t-10.302\nug\t-10.3021\n▁hung\t-10.3026\n▁proud\t-10.3026\n▁commend\t-10.3028\n▁eleven\t-10.303\n▁content\t-10.3031\n▁branch\t-10.304\nsarea\t-10.3041\n▁Babylon\t-10.3041\n▁Capernaum\t-10.3041\n▁English\t-10.3041\n▁Nevertheless\t-10.3041\n▁Remember\t-10.3041\n▁Titus\t-10.3041\n▁cousin\t-10.3041\n▁enemy\t-10.3041\n▁epistle\t-10.3041\n▁fifteen\t-10.3041\n▁ghost\t-10.3041\n▁thief\t-10.3041\n▁travail\t-10.3041\n▁Festus\t-10.3041\n▁calf\t-10.3041\n▁Moreover\t-10.3041\n▁broad\t-10.3041\n▁compass\t-10.3041\n▁excellent\t-10.3041\n▁void\t-10.3041\n▁stuff\t-10.3041\n▁particular\t-10.3041\n▁famous\t-10.3041\n▁Edom\t-10.3042\n▁bidden\t-10.3042\n▁prophecy\t-10.3042\n▁heavy\t-10.3042\n▁family\t-10.3042\n▁nay\t-10.3042\n▁Which\t-10.3042\n▁palm\t-10.3042\n▁single\t-10.3043\n▁ashes\t-10.3043\n▁Abel\t-10.3043\n▁jealousy\t-10.3043\n▁husbandmen\t-10.3043\n▁bind\t-10.3044\n▁kindred\t-10.3044\n▁Hello\t-10.3044\n▁trial\t-10.3044\n▁beforehand\t-10.3044\n▁shaken\t-10.3044\nbee\t-10.3045\n▁cherubims\t-10.3045\n▁determined\t-10.3045\n▁wander\t-10.3046\n▁driven\t-10.3047\n▁Homer\t-10.3049\n▁portion\t-10.3049\n▁later\t-10.3049\n▁required\t-10.305\n▁everywhere\t-10.305\n▁ball\t-10.3052\n▁fit\t-10.3056\n▁wrapp\t-10.3058\nier\t-10.3062\n▁remaineth\t-10.3062\n▁increased\t-10.3062\n▁pitched\t-10.3064\n▁hateth\t-10.3064\n▁anybody\t-10.3067\n▁hooks\t-10.307\n▁planted\t-10.3071\n▁stool\t-10.3071\n▁youngest\t-10.3072\n▁hunting\t-10.3075\n▁publicans\t-10.308\n▁withered\t-10.3085\nb\t-10.3086\n▁likeness\t-10.3087\n▁stead\t-10.3087\n▁betrayed\t-10.3088\n▁en\t-10.3091\n▁special\t-10.3091\n▁does\t-10.3091\n▁fugitives\t-10.3094\nMany\t-10.3094\n▁tall\t-10.3096\n▁aside\t-10.3101\n▁standeth\t-10.3136\n▁findeth\t-10.314\n▁builded\t-10.3154\n▁greatest\t-10.3157\n▁numbered\t-10.3159\n▁gotten\t-10.317\n▁hosts\t-10.3171\n▁reading\t-10.3171\n▁Zuckermans\t-10.3174\n▁Hebrews\t-10.3178\n▁waited\t-10.3182\n▁sounded\t-10.3189\n▁shoulders\t-10.3214\nought\t-10.3233\n▁tribes\t-10.3234\n▁meeting\t-10.3245\n▁sleeping\t-10.3264\nif\t-10.3285\nned\t-10.3289\nstead\t-10.3382\n▁masters\t-10.339\nall\t-10.3413\nnder\t-10.345\nreached\t-10.347\n▁thousands\t-10.3491\n▁Heth\t-10.3514\n▁yours\t-10.3518\n▁seal\t-10.3538\nened\t-10.3629\n▁Du\t-10.3701\nic\t-10.3717\n▁forget\t-10.3763\n▁paper\t-10.378\n▁shadow\t-10.3785\n▁animal\t-10.379\n▁vessel\t-10.379\n▁Pharisee\t-10.3791\n▁band\t-10.3793\n▁elder\t-10.3794\n▁sack\t-10.3794\n▁shekel\t-10.3796\n▁bond\t-10.3799\n▁color\t-10.3803\n▁herb\t-10.3807\n▁prisoner\t-10.3812\nDo\t-10.3815\nCan\t-10.3818\n▁doubt\t-10.3823\n▁swing\t-10.3823\n▁proclaim\t-10.3831\n▁reckon\t-10.3832\n▁press\t-10.3835\n▁suck\t-10.3835\n▁weep\t-10.3837\n▁deed\t-10.3842\n▁restore\t-10.3857\n▁observe\t-10.3858\n▁memorial\t-10.386\nelah\t-10.3863\n▁broke\t-10.3871\nid\t-10.3871\nncle\t-10.3874\n▁buttermilk\t-10.3875\n▁Calhoun\t-10.3875\n▁Ephraim\t-10.3875\n▁Finally\t-10.3875\n▁Gomorrah\t-10.3875\n▁Goshen\t-10.3875\n▁High\t-10.3875\n▁Lichen\t-10.3875\n▁Solomon\t-10.3875\n▁asunder\t-10.3875\n▁creation\t-10.3875\n▁female\t-10.3875\n▁longsuffering\t-10.3875\n▁school\t-10.3875\n▁slept\t-10.3875\n▁twice\t-10.3875\n▁idle\t-10.3875\n▁spend\t-10.3875\n▁hidden\t-10.3875\n▁crieth\t-10.3875\n▁oak\t-10.3875\n▁alms\t-10.3875\n▁destruction\t-10.3875\n▁dried\t-10.3875\n▁wroth\t-10.3875\n▁forehead\t-10.3875\n▁steward\t-10.3875\n▁colt\t-10.3875\n▁Dorian\t-10.3875\n▁stole\t-10.3875\n▁sang\t-10.3875\n▁dump\t-10.3875\n▁pasture\t-10.3875\n▁scratch\t-10.3875\n▁corruption\t-10.3876\n▁lawyer\t-10.3876\n▁size\t-10.3876\n▁fun\t-10.3876\n▁denied\t-10.3876\n▁tender\t-10.3876\n▁kine\t-10.3876\n▁trespasses\t-10.3876\n▁sow\t-10.3876\n▁expect\t-10.3876\n▁thanksgiving\t-10.3877\n▁pitcher\t-10.3877\n▁astonished\t-10.3877\n▁discern\t-10.3877\n▁ministration\t-10.3877\n▁merciful\t-10.3878\n▁dash\t-10.3878\n▁cook\t-10.3879\n▁worth\t-10.3879\n▁deer\t-10.3879\n▁error\t-10.388\n▁getting\t-10.3882\n▁thirst\t-10.3884\n▁mill\t-10.3884\n▁whispered\t-10.3884\n▁bath\t-10.3884\n▁drawn\t-10.3885\n▁persuaded\t-10.3887\n▁dirty\t-10.3887\n▁floor\t-10.3887\n▁wonderful\t-10.3889\n▁warned\t-10.3893\n▁belly\t-10.3897\n▁partakers\t-10.3905\n▁separate\t-10.3907\n▁Just\t-10.3911\n▁attention\t-10.3913\n▁highest\t-10.3917\n▁Canaanites\t-10.3918\n▁cows\t-10.392\n▁string\t-10.392\n▁sufferings\t-10.3925\n▁bowl\t-10.3928\n▁Don\t-10.394\n▁drunken\t-10.3943\n▁...\t-10.3951\n▁str\t-10.3951\n▁dwelleth\t-10.3953\n▁reported\t-10.3956\n▁shekels\t-10.3962\n▁West\t-10.3967\n▁carrying\t-10.3976\n▁burdens\t-10.3977\n▁o\t-10.3982\n▁hiding\t-10.3982\n▁canst\t-10.3988\n▁burning\t-10.3989\n▁anointed\t-10.3991\n▁rams\t-10.4\nbe\t-10.403\nz\t-10.4038\new\t-10.4039\n▁heir\t-10.4055\n▁fo\t-10.4065\nreby\t-10.4068\nied\t-10.4077\n▁dukes\t-10.4077\nine\t-10.4091\n▁Andrew\t-10.4131\nad\t-10.4144\n▁sing\t-10.416\naw\t-10.4177\n▁net\t-10.4192\n▁rested\t-10.4193\n▁La\t-10.4213\nably\t-10.4253\n▁minded\t-10.4261\n▁ex\t-10.4279\n▁co\t-10.4285\n▁claim\t-10.4347\nO\t-10.4358\nhi\t-10.4378\n▁spra\t-10.442\n▁mov\t-10.4507\n▁w\t-10.4516\nard\t-10.4525\n▁Je\t-10.4526\nwn\t-10.4558\nminded\t-10.4559\n▁cloth\t-10.4602\n▁fillet\t-10.4627\n▁person\t-10.4666\n▁leg\t-10.4683\n▁thread\t-10.4684\n▁log\t-10.4691\n▁hatchet\t-10.4692\nring\t-10.4695\n▁sinner\t-10.4702\n▁J\t-10.4703\n▁soldier\t-10.471\n▁teacher\t-10.4713\n▁chamber\t-10.4715\nbye\t-10.4726\nLook\t-10.4727\nC\t-10.4727\nLet\t-10.4728\nwhich\t-10.4728\n▁interpret\t-10.4733\nAnd\t-10.4734\n▁travel\t-10.4734\n▁sojourn\t-10.4734\n▁veil\t-10.4738\n▁inter\t-10.4745\n▁appoint\t-10.4748\nte\t-10.4762\n▁humble\t-10.4763\n▁cease\t-10.4764\n▁prepare\t-10.4765\n▁nice\t-10.477\n▁pleasant\t-10.477\num\t-10.4773\n▁direct\t-10.4778\n▁unrighteous\t-10.4782\nerhaps\t-10.4782\n▁equal\t-10.4783\n▁fulfil\t-10.4783\n▁suggest\t-10.4783\n▁absent\t-10.4784\n▁Agrippa\t-10.4784\n▁Axe\t-10.4784\n▁Baptist\t-10.4784\n▁Featherstone\t-10.4784\n▁Iscariot\t-10.4784\n▁Lamech\t-10.4784\n▁Martha\t-10.4784\n▁Midian\t-10.4784\n▁Wasseton\t-10.4784\n▁Zebedee\t-10.4784\n▁abiding\t-10.4784\n▁crucify\t-10.4784\n▁desolate\t-10.4784\n▁exercise\t-10.4784\n▁laurel\t-10.4784\n▁leap\t-10.4784\n▁savour\t-10.4784\n▁smooth\t-10.4784\n▁swine\t-10.4784\n▁trembling\t-10.4784\n▁Also\t-10.4784\n▁Ephron\t-10.4784\n▁atonement\t-10.4784\n▁fulness\t-10.4784\n▁merry\t-10.4784\n▁lean\t-10.4784\n▁dragon\t-10.4784\n▁resist\t-10.4784\n▁Sidon\t-10.4784\n▁choice\t-10.4784\n▁token\t-10.4784\n▁defence\t-10.4784\n▁Ross\t-10.4784\n▁dinner\t-10.4784\n▁trip\t-10.4784\n▁Enoch\t-10.4784\n▁Wayah\t-10.4784\n▁chair\t-10.4784\n▁uttermost\t-10.4784\n▁Ham\t-10.4784\n▁plow\t-10.4784\n▁lake\t-10.4785\n▁kid\t-10.4785\n▁Master\t-10.4785\n▁coast\t-10.4785\n▁horsemen\t-10.4785\n▁condemnation\t-10.4785\n▁distance\t-10.4785\n▁Hamor\t-10.4785\n▁pluck\t-10.4785\n▁plann\t-10.4786\n▁yourself\t-10.4787\n▁roof\t-10.4787\n▁prize\t-10.4787\n▁snare\t-10.4788\n▁post\t-10.479\n▁radiant\t-10.4791\n▁whereby\t-10.4791\n▁shone\t-10.4791\n▁sixty\t-10.4793\n▁sober\t-10.4794\n▁grown\t-10.4795\n▁pile\t-10.4795\n▁robbers\t-10.4797\n▁murmured\t-10.4798\nixt\t-10.4799\n▁consumed\t-10.4802\n▁shouted\t-10.4802\n▁Edith\t-10.4803\n▁terrific\t-10.4803\nman\t-10.4806\n▁cleansed\t-10.4811\n▁favoured\t-10.4811\n▁failed\t-10.4815\n▁refused\t-10.4817\n▁Hav\t-10.4817\njoined\t-10.4818\n▁everybody\t-10.4822\n▁St\t-10.4823\n▁Rabbit\t-10.4823\n▁wondered\t-10.4824\n▁Ch\t-10.4826\n▁pressed\t-10.4831\n▁laughed\t-10.484\n▁Beer\t-10.4843\n▁speaker\t-10.4848\n▁plagues\t-10.4855\n▁Per\t-10.4868\n▁established\t-10.4869\n▁party\t-10.4874\n▁glass\t-10.4889\n▁blankets\t-10.4897\nold\t-10.4897\nive\t-10.4911\n▁forest\t-10.4927\n▁dozen\t-10.4928\nnot\t-10.4934\n▁villages\t-10.4956\n▁fingers\t-10.4956\n▁hit\t-10.4962\n▁shape\t-10.4977\n▁walls\t-10.4977\n▁Beth\t-10.498\n▁goest\t-10.4985\nns\t-10.4988\n▁strive\t-10.5013\n▁gr\t-10.5021\n▁apples\t-10.5061\n▁ha\t-10.5071\nain\t-10.5132\n▁showing\t-10.5138\n▁Dan\t-10.5142\nched\t-10.5173\n▁wr\t-10.5207\n▁husbands\t-10.5229\n▁telling\t-10.5244\n▁fact\t-10.5264\nmost\t-10.5278\nem\t-10.5291\nmath\t-10.5299\n▁vi\t-10.5408\nank\t-10.5442\n▁bade\t-10.5462\n▁Get\t-10.5486\nber\t-10.5492\n▁worked\t-10.5527\n▁tro\t-10.5553\n▁wonder\t-10.5592\n▁fields\t-10.5608\nloved\t-10.5671\n▁earthquake\t-10.5684\n▁thigh\t-10.5689\n▁minute\t-10.5692\n▁window\t-10.5692\n▁knop\t-10.5694\n▁ordinance\t-10.5695\n▁prince\t-10.5695\n▁basket\t-10.5696\n▁meal\t-10.5699\n▁figure\t-10.5704\nwhere\t-10.5713\nne\t-10.5715\n▁corrupt\t-10.5719\nWhy\t-10.5728\nun\t-10.5728\n▁consent\t-10.5729\nDon\t-10.5731\nThere\t-10.5734\n▁accept\t-10.5736\n▁pull\t-10.5743\nseat\t-10.5755\n▁healing\t-10.5759\n▁increase\t-10.5764\n▁awake\t-10.5766\n▁earnest\t-10.5769\n▁hunt\t-10.577\n▁suppose\t-10.5771\n▁ride\t-10.5772\nsheba\t-10.5783\n▁fool\t-10.5784\n▁Amalek\t-10.5784\n▁Hivite\t-10.5784\n▁Jethro\t-10.5784\n▁Magdalene\t-10.5784\n▁Mamre\t-10.5784\n▁Peace\t-10.5784\n▁Philadelphia\t-10.5784\n▁Philistines\t-10.5784\n▁Samaria\t-10.5784\n▁Silas\t-10.5784\n▁apparel\t-10.5784\n▁bacon\t-10.5784\n▁believing\t-10.5784\n▁coupling\t-10.5784\n▁dishonor\t-10.5784\n▁fault\t-10.5784\n▁fountain\t-10.5784\n▁liberty\t-10.5784\n▁lieutenant\t-10.5784\n▁ministry\t-10.5784\n▁plenty\t-10.5784\n▁stomach\t-10.5784\n▁strife\t-10.5784\n▁taches\t-10.5784\n▁thrice\t-10.5784\n▁tribute\t-10.5784\n▁underneath\t-10.5784\n▁aught\t-10.5784\n▁barren\t-10.5784\n▁enjoy\t-10.5784\n▁imitat\t-10.5784\n▁Ananias\t-10.5784\n▁bosom\t-10.5784\n▁shirt\t-10.5784\n▁firmament\t-10.5784\n▁Bethany\t-10.5784\n▁JE\t-10.5784\n▁shining\t-10.5784\n▁staff\t-10.5784\n▁curious\t-10.5784\nwels\t-10.5784\n▁weather\t-10.5784\n▁chicken\t-10.5784\n▁Speak\t-10.5784\n▁remission\t-10.5784\n▁cool\t-10.5784\n▁meekness\t-10.5784\n▁fog\t-10.5784\n▁George\t-10.5784\n▁dropped\t-10.5784\n▁Terah\t-10.5785\n▁decomposers\t-10.5785\n▁fighting\t-10.5785\n▁bunch\t-10.5785\n▁dew\t-10.5786\n▁armies\t-10.5786\n▁darkened\t-10.5786\n▁shake\t-10.5787\n▁span\t-10.5787\n▁testified\t-10.5787\n▁upper\t-10.5787\n▁nakedness\t-10.5787\nueen\t-10.5787\n▁motion\t-10.5788\n▁exhortation\t-10.5788\n▁approved\t-10.5789\n▁seize\t-10.5789\n▁moreover\t-10.579\n▁busy\t-10.579\n▁Henry\t-10.5793\n▁boldly\t-10.5794\n▁Perhaps\t-10.5795\n▁flame\t-10.5796\n▁endureth\t-10.5797\n▁butler\t-10.58\n▁overcometh\t-10.58\n▁Pig\t-10.58\n▁agreed\t-10.5801\n▁accomplished\t-10.5805\n▁pushed\t-10.5805\n▁spices\t-10.5807\n▁someone\t-10.5809\nRun\t-10.581\n▁separated\t-10.581\n▁pack\t-10.5815\n▁listening\t-10.5815\n▁anyone\t-10.5816\n▁blow\t-10.5817\nhick\t-10.5819\n▁dragg\t-10.5819\nowed\t-10.582\n▁escaped\t-10.5821\n▁searched\t-10.5823\n▁guide\t-10.5826\n▁lieth\t-10.583\n▁supposed\t-10.5834\n▁Though\t-10.5834\n▁proclaimed\t-10.5837\n▁Wom\t-10.584\n▁thunders\t-10.5844\n▁brush\t-10.5856\n▁tenth\t-10.5859\n▁streets\t-10.5863\n▁judgeth\t-10.5864\n▁falleth\t-10.5869\n▁shine\t-10.5882\n▁teachers\t-10.5889\n▁sacks\t-10.5891\n▁deeds\t-10.5894\n▁perished\t-10.5916\n▁formed\t-10.5918\nure\t-10.593\n▁ru\t-10.5936\n▁neighbors\t-10.5956\n▁force\t-10.5961\n▁hoped\t-10.5962\n▁beam\t-10.5998\n▁Ma\t-10.6044\nant\t-10.6076\n▁simple\t-10.6081\n▁sha\t-10.611\nthrown\t-10.6143\n▁ministering\t-10.6161\n▁bell\t-10.6164\nland\t-10.6173\n▁promises\t-10.6175\n▁matters\t-10.6183\n▁dwelling\t-10.6184\n▁dreams\t-10.6187\n▁sprinkl\t-10.6188\n▁Pr\t-10.62\n▁Pa\t-10.6208\n▁Me\t-10.6224\n▁share\t-10.6239\n▁kinds\t-10.626\n▁thrones\t-10.626\n▁Ga\t-10.6308\nles\t-10.6316\nu\t-10.6318\n▁winds\t-10.6318\n▁par\t-10.6324\n▁Cap\t-10.6396\nra\t-10.642\nme\t-10.643\n▁rode\t-10.6473\nled\t-10.6487\n▁sakes\t-10.6504\nump\t-10.6516\n▁Wil\t-10.6531\n▁declar\t-10.6554\not\t-10.6606\n▁wave\t-10.6658\n▁hat\t-10.6672\n▁knee\t-10.6703\nments\t-10.6704\n▁tin\t-10.6706\nod\t-10.6714\n▁hu\t-10.6715\nery\t-10.6717\ndded\t-10.6792\n▁drunk\t-10.6794\n▁captive\t-10.68\n▁habitation\t-10.68\n▁game\t-10.68\n▁mourn\t-10.6803\n▁effort\t-10.6803\n▁nest\t-10.6804\n▁virgin\t-10.6804\n▁flower\t-10.6806\n▁street\t-10.6807\n▁plague\t-10.6808\nware\t-10.6809\n▁drop\t-10.6809\n▁search\t-10.6814\n▁scribe\t-10.6815\n▁girl\t-10.6818\n▁youth\t-10.6819\n▁path\t-10.6821\n▁rubb\t-10.6822\npleasing\t-10.6828\n▁marvel\t-10.6834\n▁twist\t-10.6838\n▁pot\t-10.6844\n▁testify\t-10.6847\n▁delight\t-10.6849\n▁ninet\t-10.685\n▁due\t-10.6851\n▁obtain\t-10.6852\nspecial\t-10.6854\n▁mad\t-10.6855\n▁real\t-10.6855\n▁den\t-10.6861\n▁preserve\t-10.6873\n▁bid\t-10.6873\n▁consume\t-10.6876\n▁bold\t-10.6882\n▁entire\t-10.6883\nThi\t-10.6885\nWe\t-10.689\nlaver\t-10.6891\neople\t-10.6892\n▁trespass\t-10.6893\n▁public\t-10.6893\n▁danger\t-10.6894\n▁agree\t-10.6895\n▁tight\t-10.6895\n▁Padan\t-10.6895\n▁future\t-10.6895\n▁Beaver\t-10.6895\n▁Bethuel\t-10.6895\n▁Charlie\t-10.6895\n▁Japheth\t-10.6895\n▁Joppa\t-10.6895\n▁Joshua\t-10.6895\n▁Zacharias\t-10.6895\n▁altogether\t-10.6895\n▁bundle\t-10.6895\n▁diligently\t-10.6895\n▁disobedience\t-10.6895\n▁fifth\t-10.6895\n▁furnace\t-10.6895\n▁grieved\t-10.6895\n▁group\t-10.6895\n▁guile\t-10.6895\n▁indignation\t-10.6895\n▁iniquities\t-10.6895\n▁kitchen\t-10.6895\n▁leaf\t-10.6895\n▁midnight\t-10.6895\n▁nevertheless\t-10.6895\n▁offended\t-10.6895\n▁practise\t-10.6895\n▁publish\t-10.6895\n▁sanctification\t-10.6895\n▁silk\t-10.6895\n▁slops\t-10.6895\n▁speckled\t-10.6895\n▁stoop\t-10.6895\n▁surname\t-10.6895\n▁sweat\t-10.6895\n▁venison\t-10.6895\n▁violence\t-10.6895\n▁Charleston\t-10.6895\n▁abyss\t-10.6895\n▁devout\t-10.6895\n▁Apollos\t-10.6895\n▁angry\t-10.6895\n▁wove\t-10.6895\n▁brimstone\t-10.6895\n▁smitten\t-10.6895\n▁slaves\t-10.6895\n▁gracious\t-10.6895\n▁Bilhah\t-10.6895\n▁degree\t-10.6895\n▁magicians\t-10.6895\n▁below\t-10.6895\n▁blew\t-10.6895\n▁bride\t-10.6895\n▁trick\t-10.6895\n▁easier\t-10.6895\n▁Everything\t-10.6895\n▁wages\t-10.6895\n▁lightning\t-10.6895\n▁harm\t-10.6895\n▁privily\t-10.6895\n▁Seir\t-10.6896\n▁mix\t-10.6896\n▁unbelief\t-10.6896\n▁issue\t-10.6896\n▁mingled\t-10.6896\n▁usual\t-10.6896\n▁New\t-10.6897\n▁choose\t-10.6897\n▁sentence\t-10.6897\n▁Hono\t-10.6897\n▁Chapman\t-10.6897\n▁upright\t-10.6897\n▁Anah\t-10.6897\n▁innocent\t-10.6897\n▁roast\t-10.6897\n▁assembly\t-10.6898\n▁confession\t-10.6898\n▁unbelieving\t-10.6898\n▁print\t-10.6899\n▁rear\t-10.6899\n▁bondservant\t-10.69\n▁muskets\t-10.6901\n▁crickets\t-10.6901\n▁City\t-10.6901\n▁foolishness\t-10.6901\n▁honorable\t-10.6901\n▁appeal\t-10.6901\n▁somewhere\t-10.6902\n▁Way\t-10.6902\n▁bag\t-10.6903\n▁sighed\t-10.6903\n▁dart\t-10.6904\nowbeit\t-10.6905\n▁mention\t-10.6905\n▁Seven\t-10.6905\n▁earnestly\t-10.6908\n▁boots\t-10.6911\n▁locusts\t-10.6911\n▁maybe\t-10.6913\n▁dove\t-10.6915\n▁persecuted\t-10.6918\n▁hinder\t-10.692\n▁Sit\t-10.6924\n▁afflicted\t-10.6929\n▁listened\t-10.6929\n▁mocked\t-10.6929\n▁peril\t-10.6934\n▁br\t-10.6934\n▁entreated\t-10.6934\n▁sand\t-10.6934\n▁Fer\t-10.6939\n▁changed\t-10.6939\n▁hunters\t-10.6944\n▁Doth\t-10.6948\n▁interpreted\t-10.6949\n▁pocket\t-10.6952\nttach\t-10.6957\n▁valu\t-10.6961\n▁breasts\t-10.6963\n▁soli\t-10.6966\n▁kindly\t-10.6967\n▁beans\t-10.6971\n▁miles\t-10.6974\n▁suit\t-10.6976\n▁leavened\t-10.6988\nix\t-10.6989\n▁baskets\t-10.6994\n▁kneel\t-10.7004\n▁cloths\t-10.7006\n▁prisoners\t-10.7023\n▁bestow\t-10.7026\n▁besides\t-10.7036\n▁says\t-10.7048\n▁beating\t-10.7054\n▁mess\t-10.7061\n▁lots\t-10.7068\n▁exalt\t-10.7069\nop\t-10.7102\n▁coats\t-10.711\n▁Ho\t-10.712\n▁stoned\t-10.7121\n▁salutation\t-10.7121\nmah\t-10.7169\n▁fearful\t-10.7179\n▁parables\t-10.7184\n▁lands\t-10.7185\n▁ward\t-10.7215\n▁tombs\t-10.7216\n▁reasoning\t-10.7245\n▁god\t-10.7247\n▁sp\t-10.7334\nfully\t-10.7338\n▁aim\t-10.7348\nans\t-10.7354\n▁clouds\t-10.7356\n▁today\t-10.7379\nia\t-10.7389\nture\t-10.7396\nol\t-10.7409\n▁haven\t-10.7454\nna\t-10.7471\n▁puff\t-10.753\n▁rebuk\t-10.7637\n▁arrow\t-10.7643\ngodly\t-10.767\n▁stepp\t-10.7686\n▁Repe\t-10.7692\nformed\t-10.7708\n▁avenge\t-10.7741\n▁po\t-10.7751\n▁withstand\t-10.7756\ndal\t-10.7789\n▁looks\t-10.7793\n▁rattl\t-10.7796\n▁step\t-10.7836\nern\t-10.7841\n▁judgments\t-10.7854\n▁inward\t-10.7864\n▁Arables\t-10.7876\n▁doors\t-10.7895\nmorrow\t-10.7909\nries\t-10.7914\n▁ho\t-10.7926\n▁bush\t-10.7933\n▁hem\t-10.7935\nered\t-10.7971\n▁Abi\t-10.7977\n▁cove\t-10.7978\n▁watered\t-10.7983\nent\t-10.799\ngged\t-10.8025\nnother\t-10.8033\n▁fail\t-10.8038\n▁tradition\t-10.8046\n▁Cas\t-10.8048\n▁trunk\t-10.8055\n▁climb\t-10.8056\nkins\t-10.8058\n▁fugitive\t-10.8058\n▁chariot\t-10.8059\n▁mile\t-10.8059\n▁bras\t-10.8062\n▁toil\t-10.8062\n▁shoe\t-10.8067\nK\t-10.8083\naram\t-10.8088\nyou\t-10.8089\nFern\t-10.809\n▁fold\t-10.8092\n▁bone\t-10.8093\n▁rail\t-10.8095\n▁tear\t-10.8095\n▁torment\t-10.8099\n▁dress\t-10.8101\n▁entreat\t-10.8102\ndown\t-10.8107\n▁baptize\t-10.8114\nrust\t-10.8116\nsome\t-10.8118\n▁provoke\t-10.8123\ndoing\t-10.8126\n▁becoming\t-10.813\n▁patient\t-10.8131\n▁crow\t-10.8134\n▁Maj\t-10.8139\n▁murder\t-10.8139\naithful\t-10.8144\neathen\t-10.8144\n▁vari\t-10.8145\n▁advantage\t-10.8145\n▁Barabbas\t-10.8145\n▁Caiaphas\t-10.8145\n▁Cephas\t-10.8145\n▁Cilicia\t-10.8145\n▁Naphtali\t-10.8145\n▁Rejoice\t-10.8145\n▁Return\t-10.8145\n▁Stretch\t-10.8145\n▁Zebulun\t-10.8145\n▁abundance\t-10.8145\n▁anguish\t-10.8145\n▁attempt\t-10.8145\n▁beauty\t-10.8145\n▁capital\t-10.8145\n▁cloak\t-10.8145\n▁coffee\t-10.8145\n▁courage\t-10.8145\n▁dancing\t-10.8145\n▁desperate\t-10.8145\n▁example\t-10.8145\n▁expedient\t-10.8145\n▁experience\t-10.8145\n▁necessity\t-10.8145\n▁ninth\t-10.8145\n▁nourish\t-10.8145\n▁olive\t-10.8145\n▁ouches\t-10.8145\n▁perdition\t-10.8145\n▁pledge\t-10.8145\n▁renew\t-10.8145\n▁stories\t-10.8145\n▁supply\t-10.8145\n▁terribl\t-10.8145\n▁uncircumcised\t-10.8145\n▁valley\t-10.8145\n▁wolf\t-10.8145\n▁almonds\t-10.8145\n▁mitre\t-10.8145\n▁stiff\t-10.8145\n▁Bethlehem\t-10.8145\n▁Dinah\t-10.8145\n▁Scot\t-10.8145\n▁blank\t-10.8145\n▁easy\t-10.8145\n▁narrow\t-10.8145\n▁snake\t-10.8145\n▁baby\t-10.8145\n▁calm\t-10.8145\n▁Mark\t-10.8145\n▁dispute\t-10.8145\n▁pattern\t-10.8145\n▁redemption\t-10.8145\n▁Rome\t-10.8145\n▁Think\t-10.8145\n▁abomination\t-10.8145\n▁conversation\t-10.8145\n▁yoke\t-10.8145\n▁provide\t-10.8145\n▁tunnel\t-10.8145\n▁townhouse\t-10.8145\n▁chance\t-10.8145\n▁Gerar\t-10.8145\n▁coals\t-10.8145\n▁Great\t-10.8145\n▁Adah\t-10.8145\n▁division\t-10.8145\n▁blameless\t-10.8145\n▁disgust\t-10.8145\n▁lump\t-10.8146\n▁Tyre\t-10.8146\n▁impossible\t-10.8146\n▁zealous\t-10.8146\n▁blasphemy\t-10.8146\n▁covetousness\t-10.8146\n▁miserable\t-10.8146\n▁admonish\t-10.8146\n▁signet\t-10.8146\n▁Jake\t-10.8146\n▁Eber\t-10.8147\n▁torn\t-10.8147\nook\t-10.8147\n▁sufficien\t-10.8147\n▁spies\t-10.8148\n▁partake\t-10.8148\n▁profitable\t-10.8148\n▁sorrowful\t-10.8148\n▁dish\t-10.8148\n▁dear\t-10.8148\n▁privately\t-10.8149\n▁kindled\t-10.8149\n▁clay\t-10.8149\n▁Lowan\t-10.8149\n▁clerk\t-10.8149\n▁skull\t-10.8149\n▁shift\t-10.8149\n▁fresh\t-10.8149\n▁scourge\t-10.815\n▁Love\t-10.815\n▁vast\t-10.8151\n▁weakness\t-10.8151\n▁doesn\t-10.8151\n▁cheek\t-10.8152\n▁firstfruits\t-10.8152\n▁uncleanness\t-10.8152\n▁track\t-10.8153\n▁ordained\t-10.8154\n▁grabbed\t-10.8154\n▁Day\t-10.8154\n▁discover\t-10.8156\n▁anyway\t-10.8157\n▁wasn\t-10.8157\n▁hopeless\t-10.8157\n▁hay\t-10.8159\n▁entirely\t-10.8159\n▁selves\t-10.8163\n▁fist\t-10.8164\n▁health\t-10.8165\n▁descending\t-10.8167\n▁farther\t-10.8167\n▁waved\t-10.8168\n▁Soon\t-10.8168\n▁stripes\t-10.8169\nlight\t-10.8169\n▁contain\t-10.817\n▁clearly\t-10.8175\n▁smaller\t-10.8179\nup\t-10.8179\nline\t-10.8179\n▁yelled\t-10.818\n▁endured\t-10.8182\n▁disappeared\t-10.8183\n▁pearls\t-10.8187\n▁ridges\t-10.8187\n▁diseases\t-10.8187\nul\t-10.8192\n▁pins\t-10.8197\n▁limbs\t-10.8198\n▁babes\t-10.8198\n▁porch\t-10.8199\n▁music\t-10.82\n▁corrupted\t-10.8201\n▁openly\t-10.8201\n▁bugs\t-10.8202\nmote\t-10.8205\n▁dressed\t-10.8209\n▁wagons\t-10.821\n▁transgressions\t-10.821\n▁clothing\t-10.8211\n▁shade\t-10.8212\n▁proved\t-10.8216\n▁wit\t-10.8217\n▁quarter\t-10.8219\n▁freely\t-10.822\n▁teacheth\t-10.822\n▁sowed\t-10.8228\n▁island\t-10.8236\n▁poke\t-10.8246\n▁drops\t-10.8247\n▁pigs\t-10.8256\n▁ordinances\t-10.8258\n▁princes\t-10.8258\npa\t-10.8258\nab\t-10.8277\n▁ra\t-10.8279\n▁barely\t-10.8282\nping\t-10.8284\nlee\t-10.8287\n▁obeyed\t-10.829\n▁judgest\t-10.829\n▁nets\t-10.8303\nites\t-10.8304\n▁shepherds\t-10.8306\n▁towns\t-10.8306\n▁preacher\t-10.8309\n▁beholding\t-10.8317\nctually\t-10.8318\n▁weeks\t-10.8318\n▁hills\t-10.833\n▁sawest\t-10.8333\n▁Seth\t-10.8334\n▁seeme\t-10.8359\n▁handle\t-10.8373\n▁acknowledge\t-10.8377\n▁Write\t-10.8379\n▁opening\t-10.8383\n▁songs\t-10.8391\n▁perfected\t-10.8411\n▁rods\t-10.846\nions\t-10.8467\nee\t-10.8487\niel\t-10.8495\n▁lights\t-10.8499\n▁ti\t-10.8538\n▁lover\t-10.855\naved\t-10.8554\nliness\t-10.8557\n▁strike\t-10.8559\ncy\t-10.8596\n▁Ar\t-10.8651\ntuck\t-10.8669\n▁sisters\t-10.8673\n▁principal\t-10.8715\n▁Les\t-10.8818\n▁Al\t-10.8819\nree\t-10.8831\nhu\t-10.8847\n▁Z\t-10.8855\n▁dra\t-10.8857\n▁Whe\t-10.8873\npe\t-10.8886\nush\t-10.8888\nft\t-10.8896\nmer\t-10.8916\n▁thereby\t-10.892\n▁ended\t-10.8925\n▁settl\t-10.8925\n▁saidst\t-10.8925\nated\t-10.8949\n▁admir\t-10.8975\n▁camest\t-10.8985\n▁liken\t-10.9017\ndden\t-10.9049\n▁bus\t-10.9096\n▁wa\t-10.9114\n▁du\t-10.9125\nver\t-10.9168\nway\t-10.9171\nice\t-10.9192\n▁distress\t-10.9225\n▁butter\t-10.9297\nings\t-10.9326\n▁hearted\t-10.9331\n▁Am\t-10.9341\n▁plan\t-10.9354\nade\t-10.9381\nrash\t-10.9385\nash\t-10.939\n▁Ja\t-10.9391\nipped\t-10.9407\nut\t-10.9409\n▁Wa\t-10.9414\n▁Er\t-10.9438\nil\t-10.9438\nW\t-10.9439\nhouse\t-10.9444\nover\t-10.9455\n▁bullock\t-10.9464\n▁platter\t-10.9466\n▁plant\t-10.9467\n▁tale\t-10.9475\n▁bank\t-10.9475\n▁blade\t-10.9479\n▁mock\t-10.9481\n▁dance\t-10.9481\n▁listen\t-10.9484\n▁thunder\t-10.9485\n▁clothe\t-10.9485\n▁talent\t-10.9489\n▁breast\t-10.9491\n▁weigh\t-10.95\n▁envy\t-10.9509\nJust\t-10.9516\nstool\t-10.9516\n▁forbear\t-10.9516\ndeep\t-10.9518\nWhere\t-10.9518\nbut\t-10.9518\nSo\t-10.952\nGo\t-10.952\n▁suppos\t-10.952\nMy\t-10.9524\n▁afflict\t-10.9528\n▁disappear\t-10.9529\n▁favour\t-10.953\n▁hatch\t-10.9531\n▁jump\t-10.9531\n▁finish\t-10.9532\n▁harp\t-10.9543\nsame\t-10.9544\n▁persecute\t-10.9548\n▁harden\t-10.9553\n▁plot\t-10.9554\n▁pea\t-10.9557\n▁silent\t-10.956\n▁quick\t-10.9562\npon\t-10.9563\n▁adulter\t-10.9565\n▁careful\t-10.9565\n▁fade\t-10.9566\n▁potato\t-10.9571\n▁engrav\t-10.9572\n▁forsake\t-10.9572\n▁birth\t-10.9573\n▁speed\t-10.9573\n▁Galil\t-10.9573\n▁affection\t-10.9573\n▁Achaia\t-10.9573\n▁Aholibamah\t-10.9573\n▁Arphaxad\t-10.9573\n▁Beelzebub\t-10.9573\n▁Children\t-10.9573\n▁Cornelius\t-10.9573\n▁Cyprus\t-10.9573\n▁Cyren\t-10.9573\n▁Eliphaz\t-10.9573\n▁Elisabeth\t-10.9573\n▁Felix\t-10.9573\n▁Fussy\t-10.9573\n▁Galatia\t-10.9573\n▁Grounds\t-10.9573\n▁Hezron\t-10.9573\n▁Lieutenant\t-10.9573\n▁Melchizedek\t-10.9573\n▁Milcah\t-10.9573\n▁Zilpah\t-10.9573\n▁Zoar\t-10.9573\n▁accompan\t-10.9573\n▁adversaries\t-10.9573\n▁carnal\t-10.9573\n▁enormous\t-10.9573\n▁frozen\t-10.9573\n▁furniture\t-10.9573\n▁grandchildren\t-10.9573\n▁grapes\t-10.9573\n▁honour\t-10.9573\n▁infirmity\t-10.9573\n▁mediator\t-10.9573\n▁midwives\t-10.9573\n▁mischief\t-10.9573\n▁obedient\t-10.9573\n▁opportunity\t-10.9573\n▁outdoors\t-10.9573\n▁refuge\t-10.9573\n▁ringstraked\t-10.9573\n▁runners\t-10.9573\n▁steep\t-10.9573\n▁storm\t-10.9573\n▁strove\t-10.9573\n▁woke\t-10.9573\n▁wolves\t-10.9573\n▁clever\t-10.9573\n▁slaughter\t-10.9573\n▁Olives\t-10.9573\n▁aloud\t-10.9573\n▁beckon\t-10.9573\n▁gnash\t-10.9573\n▁occupied\t-10.9573\n▁pertain\t-10.9573\n▁adversary\t-10.9573\n▁myrrh\t-10.9573\n▁Korah\t-10.9573\n▁consecrate\t-10.9573\n▁regular\t-10.9573\n▁important\t-10.9574\n▁doctor\t-10.9574\n▁stockade\t-10.9574\n▁punishment\t-10.9574\n▁sinneth\t-10.9574\n▁Enos\t-10.9574\n▁birthright\t-10.9574\n▁holiness\t-10.9574\n▁stedfast\t-10.9574\n▁offspring\t-10.9574\n▁frame\t-10.9574\n▁Hades\t-10.9574\n▁train\t-10.9574\n▁mercies\t-10.9574\n▁freedom\t-10.9574\n▁litter\t-10.9574\n▁comment\t-10.9574\n▁reins\t-10.9574\n▁grate\t-10.9575\n▁check\t-10.9575\n▁Bash\t-10.9575\n▁flight\t-10.9575\n▁imagination\t-10.9576\n▁useful\t-10.9576\n▁lame\t-10.9576\n▁Asher\t-10.9576\n▁rejecteth\t-10.9576\n▁hundredfold\t-10.9576\n▁err\t-10.9577\n▁human\t-10.9577\n▁sense\t-10.9577\n▁perplexed\t-10.9577\n▁evermore\t-10.9577\n▁books\t-10.9577\n▁fever\t-10.9577\n▁Him\t-10.9577\n▁spear\t-10.9577\n▁swarm\t-10.9577\n▁Bar\t-10.9578\n▁southward\t-10.9578\n▁chest\t-10.9578\n▁Cainan\t-10.9578\n▁eastward\t-10.9578\n▁adorn\t-10.9578\n▁bake\t-10.9578\n▁throat\t-10.9579\n▁onyx\t-10.9579\n▁lend\t-10.9579\nzale\t-10.958\n▁fourscore\t-10.958\n▁recent\t-10.9581\n▁gladness\t-10.9581\n▁frost\t-10.9582\n▁menservants\t-10.9583\n▁sickle\t-10.9585\n▁view\t-10.9585\n▁box\t-10.9585\n▁pursued\t-10.9585\n▁march\t-10.9586\n▁Watch\t-10.9588\n▁shineth\t-10.9588\n▁ham\t-10.9589\n▁managed\t-10.9589\n▁ascended\t-10.959\n▁deceived\t-10.9591\n▁refreshed\t-10.9591\n▁passage\t-10.9592\n▁tithes\t-10.9595\n▁soweth\t-10.9595\nked\t-10.9595\n▁Hast\t-10.9595\n▁loaded\t-10.9598\n▁strengthened\t-10.9599\nder\t-10.9599\n▁Gad\t-10.96\n▁axe\t-10.9602\n▁convict\t-10.9604\n▁manna\t-10.9607\ntial\t-10.9609\n▁scared\t-10.9609\n▁restored\t-10.9609\nskins\t-10.9618\n▁realize\t-10.9618\n▁observed\t-10.962\n▁gladly\t-10.9621\n▁pe\t-10.9624\n▁tasted\t-10.9625\n▁climbing\t-10.9628\n▁Amorites\t-10.9636\n▁Only\t-10.9637\n▁higher\t-10.9638\n▁wondering\t-10.9643\nue\t-10.9645\n▁weary\t-10.9655\n▁answereth\t-10.9656\n▁hanged\t-10.966\n▁mid\t-10.9665\n▁rust\t-10.9665\n▁plans\t-10.9665\n▁sealed\t-10.9669\n▁incorruptible\t-10.9671\n▁beware\t-10.9674\n▁Hai\t-10.9677\n▁trunks\t-10.9678\n▁therewith\t-10.968\n▁steps\t-10.968\n▁noon\t-10.9687\n▁redeemed\t-10.9687\n▁baker\t-10.969\n▁doves\t-10.9692\n▁learning\t-10.9694\n▁fainted\t-10.97\n▁upward\t-10.9704\n▁shadows\t-10.9734\n▁tempt\t-10.9738\n▁herbs\t-10.9745\n▁feeding\t-10.9755\nimmed\t-10.9761\n▁dogs\t-10.9762\ntion\t-10.9762\n▁castle\t-10.9762\n▁accus\t-10.9765\n▁meant\t-10.9766\nL\t-10.9784\nack\t-10.9796\n▁wouldn\t-10.9805\n▁attend\t-10.9811\n▁suffering\t-10.9827\n▁possessions\t-10.9833\nstroke\t-10.9835\n▁sixt\t-10.9836\n▁reed\t-10.9839\n▁spot\t-10.9841\n▁candlesticks\t-10.986\n▁pitch\t-10.9911\ndo\t-10.9955\n▁captains\t-10.996\n▁temper\t-10.9961\n▁imagine\t-10.9966\n▁lovely\t-10.9973\n▁seats\t-10.9984\nmore\t-10.9992\n▁blot\t-11.003\n▁Roman\t-11.0036\nins\t-11.0049\ngo\t-11.0065\n▁killing\t-11.0082\n▁keeper\t-11.0119\n▁wars\t-11.012\nom\t-11.0153\n▁Will\t-11.0155\n▁boats\t-11.0162\n▁sounds\t-11.0165\nith\t-11.0186\nlock\t-11.0186\n▁courts\t-11.0191\n▁cow\t-11.0218\n▁Ad\t-11.022\n▁El\t-11.0235\nshe\t-11.0312\nos\t-11.0328\n▁tents\t-11.0338\nified\t-11.0351\n▁herd\t-11.0365\n▁De\t-11.0381\nnd\t-11.0388\nship\t-11.039\n▁fan\t-11.0402\nni\t-11.0422\n▁base\t-11.0427\n▁dippe\t-11.0428\n▁Bo\t-11.0434\n▁worm\t-11.0435\n▁comest\t-11.0459\ndge\t-11.0466\n▁pai\t-11.0507\nN\t-11.0649\n▁prov\t-11.0649\n▁sa\t-11.0657\nble\t-11.0693\n▁yell\t-11.0714\n▁va\t-11.0725\nster\t-11.0732\nbr\t-11.0733\ndon\t-11.0774\n▁n\t-11.078\n▁fro\t-11.0792\npers\t-11.0822\n▁gun\t-11.0844\n▁com\t-11.0855\nane\t-11.0862\nally\t-11.0863\n▁befall\t-11.0943\nay\t-11.095\ntest\t-11.0963\n▁pre\t-11.0979\nhead\t-11.0992\n▁Yes\t-11.1002\nset\t-11.1008\nough\t-11.1039\nservant\t-11.1061\nlk\t-11.1062\npped\t-11.1076\n▁hours\t-11.1088\n▁cha\t-11.11\n▁scrap\t-11.1101\n▁Sa\t-11.1107\n▁balloon\t-11.1116\n▁webs\t-11.1118\n▁scatter\t-11.1127\n▁whoso\t-11.1129\n▁labour\t-11.1131\nations\t-11.1139\nfold\t-11.1141\n▁sepulchre\t-11.1141\n▁brick\t-11.1141\n▁lion\t-11.1144\n▁statute\t-11.1145\n▁provision\t-11.1146\n▁liar\t-11.1146\n▁persecution\t-11.1146\n▁messenger\t-11.1148\n▁maidservant\t-11.115\n▁murderer\t-11.1151\n▁wound\t-11.1152\n▁wagon\t-11.1152\n▁transgression\t-11.1152\nsh\t-11.1153\n▁idol\t-11.1154\nced\t-11.1154\n▁publican\t-11.1156\n▁Canaanite\t-11.1162\nH\t-11.117\ncontrol\t-11.1172\nPlease\t-11.1174\nists\t-11.1177\n▁stir\t-11.1177\n▁receiv\t-11.1178\nMay\t-11.118\n▁pound\t-11.118\n▁officer\t-11.1182\nchamber\t-11.1182\n▁gnaw\t-11.1183\n▁tabernacles\t-11.1183\nSome\t-11.1184\nCome\t-11.1184\nTempleton\t-11.1185\nli\t-11.1185\n▁boil\t-11.1186\nShe\t-11.1188\n▁attain\t-11.1191\n▁confirm\t-11.1192\n▁oppress\t-11.1193\n▁bark\t-11.1197\nicken\t-11.1202\n▁reveal\t-11.1204\n▁eviden\t-11.1206\nAll\t-11.1208\n▁Y\t-11.121\n▁fin\t-11.121\n▁deceive\t-11.1214\n▁sc\t-11.1215\n▁peri\t-11.1218\n▁mud\t-11.1218\n▁gird\t-11.1219\n▁inquire\t-11.1221\n▁require\t-11.1221\nrough\t-11.1224\nbor\t-11.1224\n▁remove\t-11.1226\n▁fierce\t-11.1227\n▁assured\t-11.1227\n▁glorious\t-11.123\n▁lone\t-11.1232\nuffer\t-11.1232\n▁knock\t-11.1234\n▁Syria\t-11.1236\ngers\t-11.1237\n▁gentle\t-11.1237\n▁sect\t-11.1239\nurthermore\t-11.1239\n▁correct\t-11.1239\nstitute\t-11.124\n▁abst\t-11.124\n▁effect\t-11.124\n▁wool\t-11.124\ntorium\t-11.124\n▁Alexander\t-11.124\n▁Aquila\t-11.124\n▁Believe\t-11.124\n▁Creek\t-11.124\n▁Eleazar\t-11.124\n▁Hebron\t-11.124\n▁Iconium\t-11.124\n▁Issachar\t-11.124\n▁Jericho\t-11.124\n▁KING\t-11.124\n▁Laodicea\t-11.124\n▁Lystra\t-11.124\n▁Machpelah\t-11.124\n▁Mahalaleel\t-11.124\n▁Methuselah\t-11.124\n▁Nazarene\t-11.124\n▁Peleg\t-11.124\n▁Sunday\t-11.124\n▁Troas\t-11.124\n▁Zibeon\t-11.124\n▁audience\t-11.124\n▁autumn\t-11.124\n▁baptizing\t-11.124\n▁blemish\t-11.124\n▁bracelets\t-11.124\n▁breeze\t-11.124\n▁ceiling\t-11.124\n▁cleave\t-11.124\n▁conditions\t-11.124\n▁desolation\t-11.124\n▁eldest\t-11.124\n▁enmity\t-11.124\n▁ensample\t-11.124\n▁execute\t-11.124\n▁extra\t-11.124\n▁foreordained\t-11.124\n▁foreskin\t-11.124\n▁ignorance\t-11.124\n▁jasper\t-11.124\n▁majesty\t-11.124\n▁merchandise\t-11.124\n▁mirror\t-11.124\n▁muscle\t-11.124\n▁newspaper\t-11.124\n▁opinion\t-11.124\n▁plenteous\t-11.124\n▁rejoicing\t-11.124\n▁relief\t-11.124\n▁represent\t-11.124\n▁reprobate\t-11.124\n▁reserved\t-11.124\n▁rotten\t-11.124\n▁serving\t-11.124\n▁studie\t-11.124\n▁taskmasters\t-11.124\n▁tetrarch\t-11.124\n▁tobacco\t-11.124\n▁treasury\t-11.124\n▁unprofitable\t-11.124\n▁Army\t-11.124\n▁Reu\t-11.124\n▁Word\t-11.124\n▁downhill\t-11.124\n▁overshadow\t-11.124\n▁paused\t-11.124\n▁queer\t-11.124\n▁roar\t-11.124\n▁savor\t-11.124\n▁shield\t-11.124\n▁magic\t-11.124\n▁Eden\t-11.124\n▁existence\t-11.124\n▁spell\t-11.124\n▁Alph\t-11.124\n▁scorch\t-11.124\n▁soap\t-11.124\n▁success\t-11.124\n▁excellenc\t-11.124\n▁needlework\t-11.124\n▁stink\t-11.124\n▁limit\t-11.124\n▁grind\t-11.124\n▁estate\t-11.124\n▁magnified\t-11.124\n▁Jesse\t-11.124\n▁triumph\t-11.124\n▁foursquare\t-11.124\n▁Tamar\t-11.124\n▁vinegar\t-11.124\n▁quail\t-11.124\n▁brave\t-11.124\n▁displease\t-11.124\n▁unfruitful\t-11.124\n▁aforetime\t-11.124\n▁Government\t-11.124\n▁situation\t-11.124\n▁folk\t-11.124\n▁serious\t-11.124\n▁squatted\t-11.1241\n▁Salah\t-11.1241\n▁fame\t-11.1241\n▁doughnut\t-11.1241\n▁herdmen\t-11.1241\n▁encamp\t-11.1241\n▁government\t-11.1241\n▁message\t-11.1241\n▁omer\t-11.1241\n▁Jared\t-11.1241\n▁object\t-11.1241\n▁readiness\t-11.1241\n▁Reuel\t-11.1241\n▁Rain\t-11.1241\n▁hypocrisy\t-11.1241\n▁tenons\t-11.1241\n▁center\t-11.1241\n▁Moon\t-11.1242\n▁melt\t-11.1242\n▁barnyard\t-11.1242\n▁dangerous\t-11.1242\n▁dy\t-11.1242\n▁proof\t-11.1242\n▁depth\t-11.1242\n▁match\t-11.1243\n▁Rise\t-11.1243\n▁saving\t-11.1243\n▁Shelah\t-11.1244\n▁Syrian\t-11.1244\n▁Old\t-11.1244\n▁squash\t-11.1245\n▁range\t-11.1245\n▁recover\t-11.1245\n▁thrash\t-11.1246\n▁study\t-11.1246\n▁Without\t-11.1247\n▁spotted\t-11.1247\n▁mass\t-11.1248\n▁laden\t-11.1248\n▁convert\t-11.1249\n▁whiskers\t-11.1249\n▁prophesied\t-11.1249\n▁purchased\t-11.1249\n▁justice\t-11.1251\next\t-11.1251\n▁surety\t-11.1252\n▁lonely\t-11.1252\n▁eighth\t-11.1253\n▁repeated\t-11.1253\n▁sniffed\t-11.1253\n▁vexed\t-11.1253\n▁prof\t-11.1253\n▁reproved\t-11.1253\n▁edifying\t-11.1253\nworkers\t-11.1255\n▁pair\t-11.1256\n▁ripe\t-11.1257\n▁sickness\t-11.1257\n▁sum\t-11.1257\n▁nurse\t-11.1258\n▁sinful\t-11.1259\n▁sway\t-11.1259\n▁Hur\t-11.1261\n▁fixed\t-11.1261\ncut\t-11.1262\nael\t-11.1262\n▁circle\t-11.1263\n▁couch\t-11.1264\n▁inquired\t-11.1265\nmuel\t-11.1267\n▁setting\t-11.1268\n▁blaspheme\t-11.1268\n▁instructed\t-11.1269\n▁collected\t-11.1269\n▁covet\t-11.1269\n▁exten\t-11.127\n▁nodded\t-11.1272\n▁softly\t-11.1273\n▁groaning\t-11.1274\n▁evident\t-11.1275\n▁backward\t-11.1278\n▁Other\t-11.1279\n▁plainly\t-11.128\n▁riding\t-11.128\n▁somebody\t-11.1282\n▁wounded\t-11.1286\n▁despised\t-11.129\n▁released\t-11.129\n▁lace\t-11.1291\n▁marvell\t-11.1292\n▁pervert\t-11.1296\n▁Cret\t-11.1297\n▁murmurings\t-11.1298\n▁distressed\t-11.13\n▁forbidd\t-11.131\n▁distan\t-11.1312\n▁cursed\t-11.1314\n▁searching\t-11.1314\n▁testifying\t-11.1314\n▁hogs\t-11.1315\n▁marketplaces\t-11.1315\n▁Samaritans\t-11.1315\n▁questionings\t-11.1316\n▁accepted\t-11.1318\n▁May\t-11.1318\n▁openeth\t-11.1319\n▁intent\t-11.1321\n▁hairy\t-11.1322\n▁laws\t-11.1323\n▁sojourned\t-11.1327\n▁ju\t-11.1327\n▁pounds\t-11.1331\n▁maidservants\t-11.1332\n▁ours\t-11.1332\n▁housetop\t-11.1337\n▁plants\t-11.1347\nrobably\t-11.135\n▁begged\t-11.1354\n▁workers\t-11.1354\nuffle\t-11.1366\n▁coves\t-11.1366\n▁exhorted\t-11.1369\nmit\t-11.1376\n▁paths\t-11.1381\n▁virgins\t-11.1381\n▁waves\t-11.1382\n▁uttered\t-11.1384\n▁labored\t-11.1386\n▁speakest\t-11.1387\n▁knops\t-11.1398\nNot\t-11.14\n▁shapes\t-11.14\n▁clearing\t-11.1402\n▁Good\t-11.1405\n▁hundreds\t-11.1409\n▁entertain\t-11.1415\n▁burying\t-11.1419\n▁Mo\t-11.1421\n▁beach\t-11.1427\n▁bands\t-11.1431\n▁pots\t-11.1436\nech\t-11.1443\n▁Eli\t-11.1446\n▁appearing\t-11.1446\n▁Mi\t-11.1454\n▁drinketh\t-11.1459\n▁supplications\t-11.1465\n▁occasions\t-11.147\n▁Sometime\t-11.1476\n▁Co\t-11.1478\ngging\t-11.1486\n▁di\t-11.1505\n▁rac\t-11.1512\n▁serpents\t-11.1516\n▁Ou\t-11.152\nide\t-11.152\n▁En\t-11.1524\n▁roots\t-11.155\n▁fasting\t-11.1551\n▁holes\t-11.1567\n▁constrain\t-11.1607\niness\t-11.1615\n▁creeks\t-11.1618\nnce\t-11.1619\n▁Pi\t-11.1622\n▁char\t-11.1634\n▁bother\t-11.1641\n▁sayings\t-11.1653\n▁smelling\t-11.1657\n▁dreaming\t-11.1666\n▁seest\t-11.1674\n▁examin\t-11.168\n▁helping\t-11.1686\n▁Ne\t-11.1709\n▁pop\t-11.1713\n▁Sin\t-11.1723\n▁process\t-11.1728\n▁gra\t-11.1743\nha\t-11.1751\n▁sta\t-11.1797\n▁tangle\t-11.1812\nuch\t-11.1894\nhow\t-11.1916\nby\t-11.1938\nlongeth\t-11.1983\nig\t-11.1991\ntrusted\t-11.2007\n▁nuts\t-11.2051\n▁hairs\t-11.2055\nv\t-11.2082\nlushed\t-11.21\nIs\t-11.2101\ntur\t-11.2121\n▁Con\t-11.2123\n▁signifie\t-11.2126\nlic\t-11.2127\npic\t-11.2144\n▁member\t-11.2164\nious\t-11.2165\n▁spi\t-11.2167\npensation\t-11.2183\n▁Ari\t-11.2199\nson\t-11.2212\n▁Jo\t-11.2235\n▁Le\t-11.2249\n▁mere\t-11.2256\n▁win\t-11.2311\n▁cur\t-11.2317\ntic\t-11.2336\ntreated\t-11.2355\n▁sub\t-11.2357\nda\t-11.2375\n▁welcome\t-11.2381\nare\t-11.2387\n▁treasures\t-11.2394\nign\t-11.2402\n▁im\t-11.2408\n▁bas\t-11.2417\n▁ease\t-11.2425\nancy\t-11.243\n▁sprinkle\t-11.244\n▁throw\t-11.2458\n▁pie\t-11.2473\nlah\t-11.2505\nsive\t-11.2514\n▁dodg\t-11.253\nale\t-11.2565\n▁fain\t-11.2602\n▁lords\t-11.2638\n▁cutt\t-11.2646\ncession\t-11.2675\nio\t-11.2696\n▁imagin\t-11.2697\n▁simpl\t-11.2702\nbal\t-11.2702\nllen\t-11.2723\n▁examine\t-11.2728\n▁longing\t-11.2732\n▁shave\t-11.2735\n▁cor\t-11.2739\nshed\t-11.2741\n▁heave\t-11.2742\n▁Sheba\t-11.2762\nnas\t-11.2787\npping\t-11.2808\npots\t-11.2836\n▁Gree\t-11.2837\n▁min\t-11.2842\ntained\t-11.2882\n▁cap\t-11.2908\n▁flu\t-11.2942\nown\t-11.2967\nright\t-11.2979\nving\t-11.2984\n▁Sha\t-11.2988\nlong\t-11.2995\nged\t-11.2997\n▁Ju\t-11.3005\n▁Ten\t-11.3029\nlike\t-11.3046\nM\t-11.3075\ncept\t-11.3088\nhold\t-11.3101\n▁ga\t-11.3108\n▁rid\t-11.3108\nheld\t-11.3112\nccord\t-11.3126\n▁tumult\t-11.3131\n▁trans\t-11.3144\n▁eunuch\t-11.3148\n▁shilling\t-11.3148\n▁chestnut\t-11.3148\ncorruptible\t-11.3149\n▁sheet\t-11.3149\n▁plate\t-11.3149\n▁Samaritan\t-11.315\n▁marketplace\t-11.315\n▁Amorite\t-11.3151\n▁babe\t-11.3152\nworker\t-11.3153\n▁hunter\t-11.316\n▁push\t-11.317\nwear\t-11.317\n▁hog\t-11.3171\n▁limb\t-11.3173\n▁Na\t-11.3173\n▁instruction\t-11.318\nWill\t-11.3182\ncolor\t-11.3183\nWhen\t-11.3185\nWilbur\t-11.3185\n▁includ\t-11.3186\nmidst\t-11.3186\n▁pin\t-11.3187\n▁accomplish\t-11.3197\nOf\t-11.3197\n▁prevail\t-11.3197\n▁Late\t-11.3199\n▁hind\t-11.3199\n▁charg\t-11.32\n▁handful\t-11.3205\nyard\t-11.3207\n▁dim\t-11.321\n▁K\t-11.322\n▁decide\t-11.3221\n▁conceive\t-11.3221\n▁circumcise\t-11.3222\nlace\t-11.3223\nursed\t-11.3225\n▁lunch\t-11.3225\n▁mouths\t-11.3226\n▁confident\t-11.3227\n▁fervent\t-11.3227\n▁brief\t-11.3227\n▁shout\t-11.3228\n▁deceitful\t-11.3228\n▁difficult\t-11.323\nuddenly\t-11.323\n▁warn\t-11.3232\n▁overthrow\t-11.3236\n▁rend\t-11.3239\n▁purse\t-11.3239\n▁zeal\t-11.3239\n▁confus\t-11.3239\n▁deceit\t-11.3239\n▁cruel\t-11.3239\n▁pant\t-11.324\n▁Corinth\t-11.324\n▁Bethsaida\t-11.324\n▁Boudinot\t-11.324\n▁Chedorlaomer\t-11.324\n▁Chief\t-11.324\n▁Deliver\t-11.324\n▁Friend\t-11.324\n▁Nadab\t-11.324\n▁Pamphylia\t-11.324\n▁Philippi\t-11.324\n▁Serug\t-11.324\n▁Tarsus\t-11.324\n▁Thomas\t-11.324\n▁Tychicus\t-11.324\n▁YHWH\t-11.324\n▁abolish\t-11.324\n▁accurately\t-11.324\n▁affrighted\t-11.324\n▁amazement\t-11.324\n▁anathema\t-11.324\n▁attitude\t-11.324\n▁beguile\t-11.324\n▁betrothed\t-11.324\n▁borrow\t-11.324\n▁bridle\t-11.324\n▁carriage\t-11.324\n▁cheese\t-11.324\n▁consecration\t-11.324\n▁cornmeal\t-11.324\n▁cotton\t-11.324\n▁dissolved\t-11.324\n▁furlongs\t-11.324\n▁grandmother\t-11.324\n▁grandstand\t-11.324\n▁grief\t-11.324\n▁grinned\t-11.324\n▁heretofore\t-11.324\n▁hospitality\t-11.324\n▁hurry\t-11.324\n▁infirmities\t-11.324\n▁insurrection\t-11.324\n▁leather\t-11.324\n▁magazine\t-11.324\n▁mandrakes\t-11.324\n▁muttered\t-11.324\n▁nutrients\t-11.324\n▁organisms\t-11.324\n▁perfume\t-11.324\n▁powder\t-11.324\n▁racket\t-11.324\n▁regret\t-11.324\n▁religion\t-11.324\n▁spinnerets\t-11.324\n▁strict\t-11.324\n▁stunned\t-11.324\n▁swelling\t-11.324\n▁task\t-11.324\n▁terrified\t-11.324\n▁thieves\t-11.324\n▁thoroughly\t-11.324\n▁ungodliness\t-11.324\n▁upstairs\t-11.324\n▁vanity\t-11.324\n▁vengeance\t-11.324\n▁whisky\t-11.324\n▁avoid\t-11.324\n▁cream\t-11.324\n▁deaf\t-11.324\n▁decision\t-11.324\n▁excess\t-11.324\n▁flavor\t-11.324\n▁indoors\t-11.324\n▁kinsmen\t-11.324\n▁lascivious\t-11.324\n▁orchard\t-11.324\n▁progress\t-11.324\n▁sweep\t-11.324\n▁thumb\t-11.324\n▁worried\t-11.324\n▁Diana\t-11.324\n▁Nathanael\t-11.324\n▁burst\t-11.324\n▁neglect\t-11.324\n▁polish\t-11.324\n▁secur\t-11.324\nclosing\t-11.324\n▁Hosanna\t-11.324\n▁alien\t-11.324\n▁rumor\t-11.324\n▁slumber\t-11.324\n▁sneak\t-11.324\n▁Like\t-11.324\n▁gravity\t-11.324\n▁Aholi\t-11.324\n▁crumbs\t-11.324\n▁difference\t-11.324\n▁citizenship\t-11.324\n▁snout\t-11.324\nSleep\t-11.324\n▁choke\t-11.324\n▁heavily\t-11.324\n▁continuing\t-11.324\n▁fables\t-11.324\nHumble\t-11.324\n▁Deep\t-11.324\n▁delay\t-11.324\n▁tag\t-11.324\n▁overtake\t-11.324\n▁bald\t-11.324\n▁odor\t-11.324\ndiment\t-11.324\n▁Gaius\t-11.324\n▁Zerah\t-11.324\n▁Jason\t-11.324\n▁bowels\t-11.324\n▁Heaven\t-11.324\n▁Depart\t-11.324\n▁support\t-11.324\n▁babies\t-11.324\n▁straitened\t-11.324\n▁consolation\t-11.324\n▁bucket\t-11.324\n▁riverboat\t-11.324\n▁seventeen\t-11.324\n▁Tru\t-11.3241\n▁graft\t-11.3241\n▁bleed\t-11.3241\n▁urgent\t-11.3241\n▁uncertain\t-11.3241\n▁brook\t-11.3241\n▁stewardship\t-11.3241\n▁sincerity\t-11.3241\n▁dig\t-11.3241\n▁gentlemen\t-11.3241\n▁dollar\t-11.3241\n▁buck\t-11.3241\n▁property\t-11.3241\n▁wallet\t-11.3241\n▁partner\t-11.3241\n▁crook\t-11.3241\n▁assign\t-11.3241\n▁accusation\t-11.3241\n▁otherwise\t-11.3241\n▁Herodias\t-11.3241\n▁provender\t-11.3241\n▁scales\t-11.3241\n▁confusion\t-11.3241\n▁stem\t-11.3241\n▁victory\t-11.3241\n▁attack\t-11.3241\n▁tower\t-11.3241\n▁envie\t-11.3241\n▁assay\t-11.3241\n▁hys\t-11.3242\n▁landscape\t-11.3242\n▁liquor\t-11.3242\n▁wot\t-11.3242\n▁duty\t-11.3242\n▁chew\t-11.3242\n▁lice\t-11.3242\n▁shamefully\t-11.3242\n▁carton\t-11.3242\n▁split\t-11.3242\nBee\t-11.3242\n▁dung\t-11.3242\n▁shortened\t-11.3242\n▁utterance\t-11.3242\n▁distinction\t-11.3242\n▁friendship\t-11.3242\n▁expectation\t-11.3242\n▁raw\t-11.3242\n▁behave\t-11.3243\n▁motionless\t-11.3243\n▁square\t-11.3243\n▁offence\t-11.3243\n▁appearance\t-11.3243\n▁potatoes\t-11.3243\n▁firm\t-11.3243\n▁westward\t-11.3243\n▁filthy\t-11.3243\n▁dizzy\t-11.3243\n▁memory\t-11.3243\n▁pepper\t-11.3244\n▁spilled\t-11.3244\n▁peach\t-11.3244\n▁tossed\t-11.3244\n▁potter\t-11.3244\nneck\t-11.3245\n▁argument\t-11.3245\n▁Save\t-11.3245\n▁cris\t-11.3245\n▁election\t-11.3245\n▁punished\t-11.3246\n▁frightened\t-11.3246\n▁booth\t-11.3246\n▁ladies\t-11.3247\nagement\t-11.3247\n▁Jonah\t-11.3248\n▁Keep\t-11.3248\n▁boast\t-11.325\n▁wake\t-11.325\n▁priesthood\t-11.325\n▁glanc\t-11.3251\n▁squirrels\t-11.3252\n▁relieved\t-11.3252\n▁Onan\t-11.3252\n▁Sam\t-11.3255\ntual\t-11.3256\n▁chuckled\t-11.3256\n▁explained\t-11.3256\n▁trembled\t-11.3256\n▁Over\t-11.3256\n▁comfortable\t-11.3256\n▁gainsaying\t-11.3257\n▁graven\t-11.3257\n▁slight\t-11.3258\nR\t-11.3259\n▁stage\t-11.326\n▁pine\t-11.3262\n▁moth\t-11.3264\nlapped\t-11.3264\n▁pretend\t-11.3265\n▁noble\t-11.3265\n▁chastening\t-11.3267\n▁scar\t-11.3268\n▁upside\t-11.3269\nross\t-11.327\n▁however\t-11.3271\n▁weave\t-11.3271\n▁Fall\t-11.3271\n▁damp\t-11.3271\n▁whispering\t-11.3271\n▁tares\t-11.3271\n▁warriors\t-11.3271\n▁idolaters\t-11.3272\n▁swo\t-11.3272\n▁blasphemed\t-11.3272\nservants\t-11.3272\n▁entr\t-11.3272\n▁stern\t-11.3274\n▁liver\t-11.3275\n▁closer\t-11.3276\n▁laborers\t-11.3278\n▁Anna\t-11.3284\n▁ax\t-11.3285\n▁severally\t-11.3286\n▁position\t-11.3287\n▁key\t-11.3288\n▁Nothing\t-11.3289\n▁humbled\t-11.3289\n▁assembled\t-11.329\n▁ma\t-11.3291\n▁Jebusites\t-11.3292\n▁fornicators\t-11.3292\n▁shelters\t-11.3292\n▁Perizzites\t-11.3292\n▁grievously\t-11.3292\n▁news\t-11.3294\n▁throwing\t-11.3294\n▁forthwith\t-11.3294\n▁chase\t-11.3295\n▁girded\t-11.3297\n▁bug\t-11.3297\n▁barking\t-11.33\n▁flatter\t-11.33\n▁sir\t-11.3302\n▁spinn\t-11.3303\n▁stack\t-11.3304\n▁passions\t-11.3306\n▁lid\t-11.3307\n▁scattering\t-11.3309\n▁fi\t-11.3309\n▁thereunto\t-11.3309\n▁seethe\t-11.3309\n▁droppings\t-11.3312\n▁joints\t-11.3313\n▁sparrows\t-11.3313\n▁personal\t-11.3316\n▁tormented\t-11.3317\n▁perisheth\t-11.332\n▁mocking\t-11.3321\n▁failing\t-11.3322\nbed\t-11.3322\n▁closely\t-11.3326\n▁delighted\t-11.3327\n▁starv\t-11.3327\n▁fatherless\t-11.3327\n▁deck\t-11.3328\nThank\t-11.3329\n▁eunuchs\t-11.3333\n▁shillings\t-11.3333\n▁chestnuts\t-11.3333\n▁plates\t-11.3333\n▁thinkest\t-11.3338\nsom\t-11.3339\n▁stopp\t-11.3342\n▁treated\t-11.3342\n▁veiled\t-11.3348\n▁questioning\t-11.3351\n▁invisible\t-11.3354\n▁messengers\t-11.3354\n▁Whom\t-11.3354\nature\t-11.3358\narley\t-11.3363\n▁singing\t-11.3365\n▁firstling\t-11.3367\n▁wont\t-11.337\nole\t-11.3373\n▁considered\t-11.3375\n▁inhabited\t-11.3379\nsop\t-11.3385\n▁mist\t-11.3388\nton\t-11.3391\n▁manif\t-11.3394\n▁interesting\t-11.3394\n▁prophesying\t-11.3395\niest\t-11.3399\n▁serveth\t-11.34\n▁ahead\t-11.34\n▁needeth\t-11.3401\n▁exhorting\t-11.3409\nII\t-11.3412\n▁efforts\t-11.3416\nvile\t-11.3426\n▁cart\t-11.3426\n▁proceeded\t-11.3429\n▁older\t-11.3433\n▁minutes\t-11.3437\n▁filling\t-11.3437\n▁windows\t-11.3438\nards\t-11.3442\n▁believest\t-11.3446\n▁fashioned\t-11.3451\n▁dec\t-11.3451\n▁ja\t-11.3452\n▁fle\t-11.3457\n▁hatchets\t-11.3458\n▁breathing\t-11.347\nhis\t-11.3472\n▁heirs\t-11.3479\n▁awful\t-11.35\n▁seals\t-11.3505\nible\t-11.3519\nalam\t-11.3532\nside\t-11.3548\n▁tooth\t-11.3555\n▁divine\t-11.3561\n▁forever\t-11.3566\nmp\t-11.3574\n▁fowls\t-11.3584\n▁miracles\t-11.3584\n▁males\t-11.3585\n▁pri\t-11.3591\nrevious\t-11.3613\n▁sco\t-11.3626\n▁wheels\t-11.3627\n▁afterwards\t-11.3627\n▁questions\t-11.3629\n▁remind\t-11.3639\n▁Se\t-11.3643\n▁cane\t-11.3649\n▁pleasures\t-11.3691\n▁helper\t-11.3695\nnath\t-11.3698\nco\t-11.3698\nff\t-11.3699\n▁tails\t-11.3712\n▁Cana\t-11.3728\nbah\t-11.3745\ndom\t-11.3766\n▁helped\t-11.3768\n▁accuser\t-11.3773\n▁pa\t-11.3779\nran\t-11.378\n▁Bu\t-11.3786\nuth\t-11.3796\nhin\t-11.3809\n▁images\t-11.382\n▁ash\t-11.3823\nrow\t-11.3829\n▁scorn\t-11.3882\n▁doll\t-11.3888\nded\t-11.3896\ngy\t-11.3925\nurge\t-11.3926\n▁orders\t-11.3928\n▁shell\t-11.3987\neph\t-11.4023\n▁points\t-11.4053\nise\t-11.4071\n▁peaceful\t-11.4082\nears\t-11.4099\n▁trac\t-11.4116\nias\t-11.4117\n▁sy\t-11.4119\n▁su\t-11.4122\n▁intreat\t-11.4135\n▁lur\t-11.415\nast\t-11.4158\n▁tip\t-11.4181\nork\t-11.4203\ntal\t-11.4241\n▁decompose\t-11.4241\n▁bl\t-11.4249\naph\t-11.4274\n▁helps\t-11.4322\n▁ver\t-11.434\n▁puffe\t-11.4362\n▁empt\t-11.4399\n▁runt\t-11.4407\nating\t-11.4429\nrushed\t-11.4434\n▁steppe\t-11.4462\npor\t-11.4471\n▁commune\t-11.4476\n▁decompos\t-11.4505\n▁bees\t-11.4506\nnched\t-11.4556\n▁mar\t-11.4573\nify\t-11.4616\null\t-11.4641\ncked\t-11.4657\n▁layer\t-11.4677\nals\t-11.4693\n▁tu\t-11.4696\n▁tool\t-11.4711\nphe\t-11.4745\nile\t-11.4759\n▁Si\t-11.4771\n▁Ti\t-11.4771\n▁bar\t-11.4798\n▁Whit\t-11.4809\nrim\t-11.4841\npture\t-11.4862\n▁val\t-11.4875\nangled\t-11.4905\n▁mol\t-11.4906\n▁qua\t-11.4913\nerah\t-11.4915\n▁kn\t-11.5027\npen\t-11.503\niv\t-11.5031\nrous\t-11.5034\n▁dip\t-11.5086\n▁Wi\t-11.5108\n▁distribute\t-11.5135\n▁doer\t-11.5138\ncom\t-11.5148\n▁Ah\t-11.5151\n▁settle\t-11.5166\ndull\t-11.5177\n▁Di\t-11.5189\n▁camel\t-11.5195\nere\t-11.5214\n▁whit\t-11.5257\nbout\t-11.5269\n▁rag\t-11.5319\n▁Ca\t-11.5327\nians\t-11.5351\n▁injur\t-11.5359\nlations\t-11.5368\n▁overthr\t-11.5387\nrated\t-11.5387\neak\t-11.5392\nunt\t-11.5395\nboard\t-11.5412\nung\t-11.542\nonsider\t-11.5426\neez\t-11.5436\n▁cake\t-11.5441\nuck\t-11.5458\n▁using\t-11.5465\n▁Bela\t-11.5489\nower\t-11.5497\n▁Mu\t-11.5556\nround\t-11.5567\nwork\t-11.5571\n▁prefer\t-11.5586\n▁vow\t-11.5587\n▁skill\t-11.5593\n▁Set\t-11.5595\nvisible\t-11.5597\nantic\t-11.5622\nttention\t-11.5626\n▁candle\t-11.5628\n▁invent\t-11.5636\ncerning\t-11.5638\n▁exp\t-11.5639\n▁groan\t-11.564\n▁nail\t-11.5642\n▁rank\t-11.5642\n▁debtor\t-11.5643\n▁pomegranate\t-11.5646\n▁weapon\t-11.5646\nined\t-11.5647\n▁murmur\t-11.5647\nngel\t-11.5648\n▁sparrow\t-11.5648\n▁dropping\t-11.5649\n▁deceiver\t-11.565\n▁disease\t-11.5652\nstone\t-11.5652\n▁perver\t-11.5654\n▁descend\t-11.5654\n▁gosling\t-11.5655\ntook\t-11.5655\n▁loop\t-11.5657\n▁pearl\t-11.5659\n▁cla\t-11.5659\naged\t-11.5661\n▁partaker\t-11.5665\n▁chain\t-11.5667\ncourse\t-11.5667\ntled\t-11.5671\n▁prais\t-11.5678\nStop\t-11.5678\nNothing\t-11.5679\n▁judg\t-11.568\nEdith\t-11.5682\nterrific\t-11.5682\n▁despair\t-11.5683\nD\t-11.5683\nbow\t-11.5684\nfront\t-11.5684\nWho\t-11.5685\nworthy\t-11.5685\ngave\t-11.5685\nDid\t-11.5687\n▁waste\t-11.5688\n▁purify\t-11.5688\nmaster\t-11.5688\nfell\t-11.5689\nface\t-11.5691\nFor\t-11.5691\n▁load\t-11.5692\nthirst\t-11.5693\n▁jo\t-11.5694\n▁instruct\t-11.5694\n▁threaten\t-11.5694\n▁collect\t-11.5694\n▁ridge\t-11.5697\nfoot\t-11.5699\n▁Kno\t-11.5699\n▁murmuring\t-11.5699\nnets\t-11.5702\nThen\t-11.5707\nouched\t-11.5713\n▁strengthen\t-11.5714\n▁preten\t-11.5714\nrent\t-11.5715\nkey\t-11.5715\n▁excite\t-11.5718\n▁arrange\t-11.5719\n▁tremble\t-11.5719\n▁surprise\t-11.5719\n▁reprove\t-11.572\n▁approve\t-11.5721\n▁swa\t-11.5722\n▁dr\t-11.5725\nps\t-11.5726\n▁general\t-11.5726\nounded\t-11.5726\n▁clan\t-11.5727\n▁vague\t-11.5727\n▁Ke\t-11.5728\n▁exact\t-11.5728\n▁abundant\t-11.5728\n▁immediate\t-11.5729\n▁bruise\t-11.5729\n▁supplie\t-11.573\n▁greas\t-11.573\n▁map\t-11.5731\n▁cheerful\t-11.5732\n▁glorie\t-11.5732\n▁sur\t-11.5733\nhood\t-11.5733\nThey\t-11.5734\n▁bon\t-11.5734\n▁ski\t-11.5735\n▁safe\t-11.5736\nweed\t-11.5736\nspect\t-11.5736\n▁railing\t-11.5737\n▁transgress\t-11.5737\nbelief\t-11.5738\nthey\t-11.5738\n▁debt\t-11.5738\n▁riot\t-11.5739\n▁express\t-11.5739\n▁cherub\t-11.5739\n▁proper\t-11.5739\n▁flour\t-11.5739\n▁yo\t-11.574\n▁strait\t-11.574\nnswere\t-11.574\nbby\t-11.574\n▁glutton\t-11.574\n▁horizon\t-11.574\n▁occur\t-11.574\nListen\t-11.574\nTerrific\t-11.574\nlatchet\t-11.574\ntarsus\t-11.574\n▁Amminadab\t-11.574\n▁Aristarchus\t-11.574\n▁Comforter\t-11.574\n▁Congress\t-11.574\n▁Cranshaw\t-11.574\n▁Derbe\t-11.574\n▁Dishon\t-11.574\n▁Ephrath\t-11.574\n▁Euphrates\t-11.574\n▁GOD\t-11.574\n▁Havilah\t-11.574\n▁Hearken\t-11.574\n▁Hogsucker\t-11.574\n▁Ishmeelites\t-11.574\n▁Kohath\t-11.574\n▁Nicodemus\t-11.574\n▁PIG\t-11.574\n▁Receive\t-11.574\n▁Servant\t-11.574\n▁Succoth\t-11.574\n▁Would\t-11.574\n▁Zohar\t-11.574\n▁absence\t-11.574\n▁adoption\t-11.574\n▁afford\t-11.574\n▁assurance\t-11.574\n▁blowgun\t-11.574\n▁bounty\t-11.574\n▁cabbage\t-11.574\n▁century\t-11.574\n▁chapiters\t-11.574\n▁cinnamon\t-11.574\n▁concubine\t-11.574\n▁convenient\t-11.574\n▁correspond\t-11.574\n▁demanded\t-11.574\n▁devise\t-11.574\n▁emerald\t-11.574\n▁engine\t-11.574\n▁foxes\t-11.574\n▁greeting\t-11.574\n▁handkerchief\t-11.574\n▁haught\t-11.574\n▁hereafter\t-11.574\n▁impart\t-11.574\n▁incorruption\t-11.574\n▁insects\t-11.574\n▁level\t-11.574\n▁mysterious\t-11.574\n▁necessities\t-11.574\n▁nostrils\t-11.574\n▁obeisance\t-11.574\n▁perform\t-11.574\n▁picture\t-11.574\n▁pilgrims\t-11.574\n▁president\t-11.574\n▁proconsul\t-11.574\n▁pronounce\t-11.574\n▁propitiation\t-11.574\n▁province\t-11.574\n▁raspberr\t-11.574\n▁request\t-11.574\n▁response\t-11.574\n▁restitution\t-11.574\n▁restrained\t-11.574\n▁reviling\t-11.574\n▁revived\t-11.574\n▁riverbank\t-11.574\n▁sapphire\t-11.574\n▁sardius\t-11.574\n▁showbread\t-11.574\n▁shrank\t-11.574\n▁smiled\t-11.574\n▁solemn\t-11.574\n▁straddle\t-11.574\n▁survive\t-11.574\n▁swift\t-11.574\n▁sworn\t-11.574\n▁terror\t-11.574\n▁twig\t-11.574\n▁unimagin\t-11.574\n▁unloose\t-11.574\n▁unmarried\t-11.574\n▁unusual\t-11.574\n▁whiskey\t-11.574\n▁Brother\t-11.574\n▁diminish\t-11.574\n▁disappoint\t-11.574\n▁element\t-11.574\n▁emerge\t-11.574\n▁latter\t-11.574\n▁orange\t-11.574\n▁queen\t-11.574\n▁raven\t-11.574\n▁roam\t-11.574\n▁scrivener\t-11.574\n▁Gilead\t-11.574\n▁Ithamar\t-11.574\n▁Likewise\t-11.574\n▁discreet\t-11.574\n▁fraction\t-11.574\n▁impress\t-11.574\n▁knuckle\t-11.574\n▁leprosy\t-11.574\n▁mammon\t-11.574\n▁merchant\t-11.574\n▁mule\t-11.574\n▁mysteries\t-11.574\n▁reproof\t-11.574\n▁giant\t-11.574\n▁clipping\t-11.574\n▁middling\t-11.574\n▁Potiph\t-11.574\n▁circum\t-11.574\n▁crystal\t-11.574\n▁bereaved\t-11.574\n▁bondwoman\t-11.574\n▁exchange\t-11.574\n▁holler\t-11.574\n▁instru\t-11.574\n▁noodle\t-11.574\n▁adulteress\t-11.574\n▁beggar\t-11.574\n▁kicked\t-11.574\n▁title\t-11.574\n▁buryingplace\t-11.574\n▁refrain\t-11.574\n▁Christmas\t-11.574\n▁turban\t-11.574\n▁Salmon\t-11.574\n▁liberality\t-11.574\n▁enchantments\t-11.574\n▁workmanship\t-11.574\n▁occupation\t-11.574\n▁sackcloth\t-11.574\n▁bodily\t-11.574\n▁flash\t-11.574\n▁gorge\t-11.574\n▁snapp\t-11.574\n▁Preparation\t-11.574\n▁Count\t-11.574\n▁stumblingblock\t-11.574\n▁Joses\t-11.574\n▁arrival\t-11.574\n▁blasphemies\t-11.574\n▁blossoms\t-11.574\n▁freewoman\t-11.574\n▁fungus\t-11.574\naccess\t-11.574\n▁Buddy\t-11.574\n▁covetous\t-11.574\n▁Abb\t-11.574\n▁palsied\t-11.574\n▁Walk\t-11.574\n▁nap\t-11.574\n▁winepress\t-11.574\n▁digging\t-11.574\n▁decree\t-11.574\n▁Moab\t-11.574\n▁paddle\t-11.574\n▁foggy\t-11.574\n▁job\t-11.574\n▁reverence\t-11.574\n▁Drink\t-11.5741\n▁Italy\t-11.5741\n▁confe\t-11.5741\n▁Goodbye\t-11.5741\n▁Little\t-11.5741\n▁principalities\t-11.5741\n▁thicket\t-11.5741\n▁tonight\t-11.5741\nkay\t-11.5741\n▁cursing\t-11.5741\n▁gently\t-11.5741\n▁Shur\t-11.5741\n▁permit\t-11.5741\nnquire\t-11.5741\n▁Haden\t-11.5741\n▁announcement\t-11.5741\n▁lane\t-11.5741\n▁pink\t-11.5741\n▁Shinar\t-11.5741\n▁towel\t-11.5741\n▁adj\t-11.5741\n▁tempest\t-11.5741\n▁scoop\t-11.5741\n▁flick\t-11.5741\n▁Gran\t-11.5741\n▁patch\t-11.5741\n▁package\t-11.5741\n▁midday\t-11.5741\n▁conceal\t-11.5741\n▁candy\t-11.5741\nntil\t-11.5742\n▁apostleship\t-11.5742\n▁halt\t-11.5742\n▁entangle\t-11.5742\n▁Elam\t-11.5742\n▁guilty\t-11.5742\n▁loving\t-11.5742\n▁crime\t-11.5742\n▁malice\t-11.5742\n▁countries\t-11.5742\n▁heathen\t-11.5742\n▁awkwardly\t-11.5742\n▁crash\t-11.5742\n▁Miz\t-11.5742\nndy\t-11.5742\n▁shore\t-11.5742\nville\t-11.5743\n▁main\t-11.5743\n▁pillow\t-11.5743\n▁claw\t-11.5743\n▁furthermore\t-11.5743\n▁satisfied\t-11.5744\n▁defer\t-11.5744\n▁thistles\t-11.5744\n▁stedfastness\t-11.5744\n▁vo\t-11.5744\n▁Weep\t-11.5744\n▁barbarian\t-11.5744\n▁bill\t-11.5744\n▁communicate\t-11.5745\n▁husbandman\t-11.5745\n▁Abib\t-11.5745\n▁cleansing\t-11.5746\n▁nearby\t-11.5746\n▁operat\t-11.5746\n▁sheepfold\t-11.5746\n▁easily\t-11.5746\n▁super\t-11.5747\n▁blast\t-11.5747\n▁jar\t-11.5747\n▁armor\t-11.5748\n▁violent\t-11.5748\n▁forsaken\t-11.5748\n▁grunted\t-11.5748\n▁gambl\t-11.5748\nchol\t-11.5748\needy\t-11.5748\n▁crushed\t-11.5749\n▁phone\t-11.5749\n▁whiteman\t-11.575\n▁disturb\t-11.575\n▁skirt\t-11.575\nno\t-11.575\n▁grease\t-11.575\n▁wealth\t-11.5751\n▁supplieth\t-11.5751\n▁Jam\t-11.5751\nently\t-11.5751\n▁blame\t-11.5752\n▁difficulty\t-11.5753\n▁agreement\t-11.5753\n▁contend\t-11.5753\n▁vaguely\t-11.5753\n▁Else\t-11.5753\n▁needful\t-11.5753\npro\t-11.5754\n▁weaving\t-11.5754\n▁wrist\t-11.5754\n▁dare\t-11.5754\n▁cheerfully\t-11.5754\n▁cost\t-11.5755\n▁trott\t-11.5755\n▁curv\t-11.5755\n▁acres\t-11.5755\n▁ribs\t-11.5755\n▁magistrates\t-11.5755\n▁Lotan\t-11.5756\n▁knot\t-11.5756\n▁candie\t-11.5757\n▁briefly\t-11.5757\nsual\t-11.5757\n▁deceitfully\t-11.5757\n▁persecutest\t-11.5757\n▁maple\t-11.576\n▁ability\t-11.576\n▁fiercely\t-11.576\n▁sink\t-11.576\n▁vanished\t-11.5761\n▁overhead\t-11.5761\n▁arranged\t-11.5761\n▁slipp\t-11.5762\n▁sower\t-11.5764\n▁silently\t-11.5764\n▁clang\t-11.5767\nquil\t-11.5767\n▁float\t-11.5768\n▁stalk\t-11.5768\node\t-11.5768\n▁Summ\t-11.5769\n▁block\t-11.5769\n▁wink\t-11.5769\n▁quake\t-11.577\n▁reconciled\t-11.577\n▁platt\t-11.577\n▁shovel\t-11.5771\n▁thirsty\t-11.5772\n▁soup\t-11.5774\n▁Never\t-11.5774\n▁overthrown\t-11.5774\n▁remark\t-11.5774\n▁Men\t-11.5774\n▁steady\t-11.5776\nration\t-11.5779\n▁sincere\t-11.578\n▁slopes\t-11.5781\n▁physicians\t-11.5781\n▁killers\t-11.5782\n▁dad\t-11.5783\n▁action\t-11.5784\n▁louder\t-11.5784\nirst\t-11.5784\n▁endless\t-11.5785\n▁commendeth\t-11.5786\n▁groaned\t-11.5788\n▁card\t-11.5788\n▁manservant\t-11.5789\n▁anew\t-11.5789\n▁joint\t-11.5791\n▁sever\t-11.5797\n▁stumbleth\t-11.5802\n▁pushing\t-11.5804\n▁naturally\t-11.5805\nazed\t-11.5807\n▁flip\t-11.5808\n▁earrings\t-11.5808\n▁lepers\t-11.5808\n▁boughs\t-11.5809\n▁transgressors\t-11.5809\n▁faithless\t-11.5811\n▁invented\t-11.5811\n▁shit\t-11.5812\n▁trapper\t-11.5812\n▁sojourners\t-11.5814\n▁oppressed\t-11.5814\n▁confirmed\t-11.5814\n▁Remov\t-11.5815\n▁melted\t-11.5816\n▁urge\t-11.5819\n▁yester\t-11.5819\n▁wildly\t-11.5823\n▁completed\t-11.5824\n▁particle\t-11.5824\n▁whoring\t-11.5825\n▁companions\t-11.5825\n▁Hous\t-11.583\n▁hon\t-11.5835\n▁pomegranates\t-11.5835\n▁weapons\t-11.5836\n▁wond\t-11.5836\nev\t-11.5837\n▁actions\t-11.5837\n▁overmuch\t-11.5838\n▁hatched\t-11.5839\n▁Teman\t-11.5847\n▁continueth\t-11.5848\n▁commandeth\t-11.5849\n▁rep\t-11.5851\nking\t-11.5855\n▁wh\t-11.5855\n▁mourned\t-11.5855\n▁extortioner\t-11.5856\nthis\t-11.5857\n▁thereto\t-11.5859\nalutations\t-11.5859\n▁mudd\t-11.5859\n▁sen\t-11.5861\naid\t-11.5864\n▁ci\t-11.5865\n▁department\t-11.5869\nposition\t-11.5881\nerable\t-11.5882\n▁comb\t-11.5882\n▁rider\t-11.5883\nIn\t-11.5883\n▁richly\t-11.5883\nrops\t-11.5886\nlessly\t-11.5889\n▁liars\t-11.589\n▁statutes\t-11.589\n▁provisions\t-11.589\n▁persecutions\t-11.589\nac\t-11.5891\n▁chin\t-11.5892\n▁guns\t-11.5893\n▁murderers\t-11.5894\nza\t-11.5895\n▁sucked\t-11.5896\n▁needy\t-11.5903\n▁transform\t-11.5905\n▁Romans\t-11.5908\n▁wanton\t-11.5911\n▁finest\t-11.5911\n▁driver\t-11.5913\n▁preacheth\t-11.5916\n▁dances\t-11.5917\n▁squa\t-11.5932\noc\t-11.5941\n▁deeply\t-11.5942\n▁smoked\t-11.5946\nups\t-11.5947\ncum\t-11.595\n▁lacked\t-11.5951\ngered\t-11.5953\nunny\t-11.5961\n▁mete\t-11.5966\n▁goes\t-11.5967\nits\t-11.5968\n▁pi\t-11.597\n▁nests\t-11.5973\n▁games\t-11.5973\n▁captives\t-11.5973\n▁habitations\t-11.5973\n▁girls\t-11.5973\nep\t-11.5975\n▁profited\t-11.5978\n▁flowers\t-11.598\nvice\t-11.5982\n▁trapp\t-11.5991\n▁regarded\t-11.5991\nction\t-11.5995\n▁thighs\t-11.6\ntty\t-11.6002\n▁worrying\t-11.6006\nT\t-11.6018\n▁amount\t-11.6021\n▁righteously\t-11.6024\noth\t-11.6024\n▁logs\t-11.6028\n▁willeth\t-11.6036\n▁killeth\t-11.6052\ncakes\t-11.6056\n▁colors\t-11.6056\n▁papers\t-11.6056\nmong\t-11.6061\n▁tea\t-11.6062\n▁customs\t-11.6084\nius\t-11.6086\nche\t-11.6108\n▁regions\t-11.6112\n▁forgett\t-11.6114\nric\t-11.6116\n▁seasoned\t-11.6119\n▁embrace\t-11.6119\nbs\t-11.612\n▁Abid\t-11.6124\n▁tomorrow\t-11.6136\n▁streams\t-11.614\n▁Christian\t-11.614\n▁worshipp\t-11.6149\n▁style\t-11.6149\nfull\t-11.6163\n▁figs\t-11.6168\n▁aged\t-11.6169\n▁buildings\t-11.6172\n▁meaning\t-11.6183\n▁staying\t-11.6184\n▁crowned\t-11.6197\n▁visions\t-11.6207\n▁owners\t-11.621\nuz\t-11.6223\n▁Fe\t-11.6224\n▁mon\t-11.6243\n▁governors\t-11.6253\n▁sus\t-11.6263\n▁ships\t-11.6288\nfigur\t-11.6288\n▁Par\t-11.6298\narm\t-11.6307\net\t-11.6311\nives\t-11.6318\n▁treat\t-11.6326\ninning\t-11.6336\n▁charges\t-11.6343\ncompelled\t-11.6371\n▁Eph\t-11.6371\n▁afternoons\t-11.6397\n▁doings\t-11.643\nenable\t-11.6432\n▁ink\t-11.6465\nok\t-11.6465\n▁penn\t-11.6479\nmma\t-11.649\n▁wanting\t-11.6503\nfe\t-11.651\n▁edges\t-11.6512\n▁rehears\t-11.6514\nracles\t-11.6518\n▁writer\t-11.654\n▁favorabl\t-11.6541\n▁rattle\t-11.6612\ntent\t-11.6629\ninner\t-11.6645\nanke\t-11.6654\n▁conce\t-11.6729\n▁busi\t-11.6747\n▁smit\t-11.6748\n▁perp\t-11.6759\n▁shower\t-11.677\n▁Was\t-11.6772\n▁earthy\t-11.6778\nons\t-11.6795\n▁Stop\t-11.6802\n▁swords\t-11.681\n▁fellows\t-11.6811\nbone\t-11.6813\n▁entice\t-11.6825\nave\t-11.684\n▁belong\t-11.6866\n▁journeys\t-11.6869\n▁lap\t-11.6875\n▁differ\t-11.6888\n▁prisons\t-11.6901\n▁heel\t-11.6903\nx\t-11.6911\n▁curl\t-11.6927\nema\t-11.6933\neral\t-11.6942\nBe\t-11.6952\nvil\t-11.6952\nborn\t-11.6963\n▁beard\t-11.6966\nich\t-11.6974\nular\t-11.6991\nddle\t-11.7009\n▁Ben\t-11.7039\n▁Ph\t-11.704\naking\t-11.7052\n▁afore\t-11.7056\nban\t-11.7062\n▁lashe\t-11.707\n▁earthly\t-11.7093\nvan\t-11.7103\n▁ch\t-11.7121\n▁meats\t-11.7122\nore\t-11.7256\nbel\t-11.7274\nwled\t-11.7341\ndder\t-11.735\nwood\t-11.7356\n▁argu\t-11.7369\n▁mus\t-11.7402\n▁Phi\t-11.7409\nond\t-11.7426\n▁interrupt\t-11.7441\n▁gaz\t-11.7515\nher\t-11.7536\n▁feasts\t-11.754\nwardly\t-11.7545\n▁struggle\t-11.7618\nnut\t-11.7651\n▁parting\t-11.7661\nai\t-11.7697\n▁inch\t-11.7731\n▁owe\t-11.7789\n▁Shal\t-11.7789\npringtime\t-11.7805\n▁ob\t-11.782\n▁driv\t-11.7849\nlation\t-11.7849\ndding\t-11.7861\n▁hug\t-11.791\n▁strik\t-11.7917\nro\t-11.8006\n▁breathe\t-11.805\n▁Pra\t-11.8054\nmortal\t-11.8136\n▁temperat\t-11.8148\nrred\t-11.8154\n▁pur\t-11.8166\n▁j\t-11.8176\nuni\t-11.8177\nities\t-11.8198\nnic\t-11.8198\nuring\t-11.8205\nlings\t-11.8207\n▁ascend\t-11.8208\n▁striv\t-11.8212\nitches\t-11.8212\n▁cares\t-11.8223\n▁calls\t-11.8224\n▁Ass\t-11.8236\n▁crack\t-11.8257\nuddle\t-11.8259\ndoers\t-11.8277\n▁mis\t-11.8296\nener\t-11.8309\nurn\t-11.831\nlab\t-11.8332\nten\t-11.8347\nfare\t-11.8358\nfire\t-11.8369\n▁bre\t-11.8386\nca\t-11.8419\n▁Ro\t-11.8441\nrian\t-11.8479\n▁Eu\t-11.8487\n▁oppos\t-11.8495\neyed\t-11.8522\nwe\t-11.8523\n▁Eve\t-11.8536\nmus\t-11.8563\n▁embrac\t-11.8569\ntting\t-11.8577\nati\t-11.8581\nmmed\t-11.8626\ntery\t-11.8644\ntops\t-11.8662\n▁fla\t-11.8681\nlia\t-11.8699\n▁resid\t-11.8704\nrance\t-11.8709\n▁fre\t-11.8728\n▁temples\t-11.8761\neries\t-11.8768\n▁chi\t-11.8779\nak\t-11.8781\npher\t-11.8781\n▁hasted\t-11.8781\n▁backs\t-11.8782\n▁Sal\t-11.8783\nsha\t-11.8835\n▁bu\t-11.8837\nunted\t-11.8858\naimed\t-11.8869\n▁fir\t-11.887\nized\t-11.8885\nTh\t-11.8895\nega\t-11.8896\nhanded\t-11.89\n▁Mes\t-11.8905\n▁extortion\t-11.8915\nading\t-11.8919\n▁wrest\t-11.8921\ndoer\t-11.8933\n▁compel\t-11.8938\ngg\t-11.894\n▁bough\t-11.8949\nnceforth\t-11.8955\norted\t-11.8956\n▁chasten\t-11.8965\n▁benefit\t-11.8965\n▁patriarch\t-11.8965\n▁guest\t-11.8965\n▁result\t-11.8965\n▁bishop\t-11.8965\n▁ewe\t-11.8966\nwill\t-11.8966\nrches\t-11.8969\n▁faction\t-11.897\n▁psalm\t-11.8975\n▁senator\t-11.8975\ncome\t-11.8975\n▁pigeon\t-11.8975\n▁whisper\t-11.8975\n▁eagle\t-11.8976\n▁repute\t-11.8976\n▁section\t-11.8978\n▁Levite\t-11.8978\ndressed\t-11.8978\n▁leper\t-11.8979\nunch\t-11.898\n▁transgressor\t-11.8981\n▁Jebusite\t-11.8982\n▁Perizzite\t-11.8982\n▁fornicator\t-11.8982\nhand\t-11.8982\n▁peoples\t-11.8983\n▁bla\t-11.8985\n▁earring\t-11.8985\n▁shelter\t-11.8985\n▁hook\t-11.8991\n▁bo\t-11.8994\nupon\t-11.8994\n▁stab\t-11.8995\n▁spice\t-11.8996\n▁sojourner\t-11.8997\neas\t-11.9\nquench\t-11.9001\n▁gir\t-11.9001\nwitch\t-11.9001\nload\t-11.9004\n▁needle\t-11.9005\nbbed\t-11.9007\n▁farmer\t-11.9007\nCertainly\t-11.9008\nwarm\t-11.9008\nowing\t-11.9011\nworm\t-11.9011\nbas\t-11.9011\nY\t-11.9012\nstood\t-11.9013\nridge\t-11.9014\nhearted\t-11.9016\nPig\t-11.9016\nfloor\t-11.9016\nprisoner\t-11.9016\nHo\t-11.9016\nhooks\t-11.9016\nlearned\t-11.9017\nlegs\t-11.9018\nquiet\t-11.9018\npieces\t-11.9018\nbreak\t-11.9018\nthirty\t-11.9018\nclosed\t-11.9018\nblood\t-11.9018\nfinger\t-11.9018\nwife\t-11.9018\nTake\t-11.9019\nground\t-11.9019\nlooking\t-11.9019\nick\t-11.9019\n▁encounter\t-11.9019\n▁remov\t-11.9019\nSure\t-11.9022\n▁assembl\t-11.9022\nocked\t-11.9024\n▁affirm\t-11.9024\n▁buffet\t-11.9024\n▁loos\t-11.9025\nEvery\t-11.9026\n▁explo\t-11.9029\n▁refresh\t-11.9029\nspeak\t-11.903\n▁fix\t-11.9034\nvolut\t-11.9035\nsembled\t-11.9035\nque\t-11.9036\nback\t-11.9038\nfive\t-11.9042\nAn\t-11.9042\nhath\t-11.9043\n▁miss\t-11.9047\n▁Alexandria\t-11.9048\nHere\t-11.9049\nTe\t-11.9049\n▁Right\t-11.905\n▁cree\t-11.905\n▁enlarge\t-11.9051\n▁relieve\t-11.9053\n▁prophesie\t-11.9053\n▁purchase\t-11.9053\n▁bore\t-11.9054\n▁determine\t-11.9054\n▁excuse\t-11.9056\n▁marrie\t-11.9056\n▁pursue\t-11.9056\n▁arrive\t-11.9057\n▁meek\t-11.9057\n▁pierce\t-11.9058\nposed\t-11.9059\n▁delicate\t-11.9059\n▁nervous\t-11.906\n▁app\t-11.906\ncient\t-11.9062\n▁private\t-11.9062\nocia\t-11.9062\nalvation\t-11.9064\n▁possibl\t-11.9064\n▁jealous\t-11.9065\natic\t-11.9066\nju\t-11.9066\nected\t-11.9067\nupp\t-11.9068\nistles\t-11.9069\n▁brim\t-11.9072\nroi\t-11.9072\n▁gener\t-11.9072\nossum\t-11.9072\n▁mirac\t-11.9072\nntity\t-11.9072\n▁forgot\t-11.9072\n▁princip\t-11.9072\n▁meditat\t-11.9072\n▁announce\t-11.9072\northy\t-11.9073\nappy\t-11.9073\nreakfast\t-11.9073\n▁author\t-11.9073\nolonel\t-11.9073\n▁desp\t-11.9073\noyal\t-11.9073\n▁apprecia\t-11.9073\nCongratu\t-11.9073\n▁Jehovah\t-11.9073\nwilight\t-11.9073\nzziah\t-11.9073\n▁Adullamite\t-11.9073\n▁Ahaz\t-11.9073\n▁Aranea\t-11.9073\n▁Bartholomew\t-11.9073\n▁Bernice\t-11.9073\n▁Bethphage\t-11.9073\n▁Boaz\t-11.9073\n▁Boston\t-11.9073\n▁Chaldees\t-11.9073\n▁Chesapeake\t-11.9073\n▁Crawdaddy\t-11.9073\n▁Decapolis\t-11.9073\n▁Demetrius\t-11.9073\n▁Echota\t-11.9073\n▁Eliezer\t-11.9073\n▁Epaphras\t-11.9073\n▁Ethiopia\t-11.9073\n▁Galway\t-11.9073\n▁Gennesaret\t-11.9073\n▁Gershon\t-11.9073\n▁Golgotha\t-11.9073\n▁Hallelujah\t-11.9073\n▁Hezekiah\t-11.9073\n▁Horeb\t-11.9073\n▁Jeremiah\t-11.9073\n▁Joktan\t-11.9073\n▁Jotham\t-11.9073\n▁Jupiter\t-11.9073\n▁Kadesh\t-11.9073\n▁Kenaz\t-11.9073\n▁Luke\t-11.9073\n▁Matthew\t-11.9073\n▁Merari\t-11.9073\n▁Nahshon\t-11.9073\n▁Nebajoth\t-11.9073\n▁Nellie\t-11.9073\n▁Notwithstanding\t-11.9073\n▁Olivet\t-11.9073\n▁Peabody\t-11.9073\n▁Pentecost\t-11.9073\n▁Perez\t-11.9073\n▁Perga\t-11.9073\n▁Pharez\t-11.9073\n▁Phrygia\t-11.9073\n▁Pontus\t-11.9073\n▁Prince\t-11.9073\n▁Priscilla\t-11.9073\n▁Psalms\t-11.9073\n▁Rehoboth\t-11.9073\n▁Rephidim\t-11.9073\n▁Sardis\t-11.9073\n▁Shealtiel\t-11.9073\n▁Siddim\t-11.9073\n▁Silvanus\t-11.9073\n▁Street\t-11.9073\n▁Symeon\t-11.9073\n▁Tarshish\t-11.9073\n▁Thessalonica\t-11.9073\n▁Trophimus\t-11.9073\n▁Twelve\t-11.9073\n▁Zeboi\t-11.9073\n▁Zillah\t-11.9073\n▁Zipporah\t-11.9073\n▁achieve\t-11.9073\n▁addition\t-11.9073\n▁advance\t-11.9073\n▁aeronaut\t-11.9073\n▁affairs\t-11.9073\n▁anxiety\t-11.9073\n▁apiece\t-11.9073\n▁attire\t-11.9073\n▁avail\t-11.9073\n▁balsam\t-11.9073\n▁bountifully\t-11.9073\n▁canvas\t-11.9073\n▁captivity\t-11.9073\n▁chickadee\t-11.9073\n▁colours\t-11.9073\n▁column\t-11.9073\n▁conclusion\t-11.9073\n▁conduct\t-11.9073\n▁conflict\t-11.9073\n▁congealed\t-11.9073\n▁constructed\t-11.9073\n▁contrariwise\t-11.9073\n▁contributi\t-11.9073\n▁corpse\t-11.9073\n▁crazy\t-11.9073\n▁curiosity\t-11.9073\n▁deacons\t-11.9073\n▁desperation\t-11.9073\n▁destiny\t-11.9073\n▁disorderly\t-11.9073\n▁disputing\t-11.9073\n▁dissension\t-11.9073\n▁district\t-11.9073\n▁draught\t-11.9073\n▁dungeon\t-11.9073\n▁edifieth\t-11.9073\n▁embarrass\t-11.9073\n▁esteem\t-11.9073\n▁exhausted\t-11.9073\n▁exotic\t-11.9073\n▁farewell\t-11.9073\n▁fascinating\t-11.9073\n▁feeble\t-11.9073\n▁fetters\t-11.9073\n▁fifties\t-11.9073\n▁forewarn\t-11.9073\n▁fragments\t-11.9073\n▁frankincense\t-11.9073\n▁furnished\t-11.9073\n▁handbreadth\t-11.9073\n▁hayloft\t-11.9073\n▁hymn\t-11.9073\n▁immortality\t-11.9073\n▁increasing\t-11.9073\n▁jailor\t-11.9073\n▁journals\t-11.9073\n▁kinsfolk\t-11.9073\n▁knothole\t-11.9073\n▁leanfleshed\t-11.9073\n▁lodging\t-11.9073\n▁machine\t-11.9073\n▁matrix\t-11.9073\n▁meadow\t-11.9073\n▁mistress\t-11.9073\n▁moisture\t-11.9073\n▁mosquitoes\t-11.9073\n▁oblig\t-11.9073\n▁opposition\t-11.9073\n▁philosoph\t-11.9073\n▁pilgrimage\t-11.9073\n▁pistol\t-11.9073\n▁poison\t-11.9073\n▁poverty\t-11.9073\n▁predator\t-11.9073\n▁produce\t-11.9073\n▁rabbit\t-11.9073\n▁recognize\t-11.9073\n▁rectang\t-11.9073\n▁remnant\t-11.9073\n▁replenish\t-11.9073\n▁representatives\t-11.9073\n▁retrieve\t-11.9073\n▁sermon\t-11.9073\n▁shewbread\t-11.9073\n▁shoot\t-11.9073\n▁shotgun\t-11.9073\n▁subsistence\t-11.9073\n▁swept\t-11.9073\n▁swipe\t-11.9073\n▁tavern\t-11.9073\n▁terrain\t-11.9073\n▁territory\t-11.9073\n▁throng\t-11.9073\n▁titmouse\t-11.9073\n▁tread\t-11.9073\n▁unawares\t-11.9073\n▁unceasing\t-11.9073\n▁undefiled\t-11.9073\n▁unexpected\t-11.9073\n▁unjust\t-11.9073\n▁unknown\t-11.9073\n▁unreasonable\t-11.9073\n▁unveiled\t-11.9073\n▁uproar\t-11.9073\n▁vehemently\t-11.9073\n▁vertical\t-11.9073\n▁virtue\t-11.9073\n▁waterproof\t-11.9073\n▁yesternight\t-11.9073\n▁antichrist\t-11.9073\n▁compact\t-11.9073\n▁congress\t-11.9073\n▁dedicat\t-11.9073\n▁gnat\t-11.9073\n▁maintain\t-11.9073\n▁oven\t-11.9073\n▁unloaded\t-11.9073\n▁Asshur\t-11.9073\n▁Demas\t-11.9073\n▁Latin\t-11.9073\n▁clover\t-11.9073\n▁conquer\t-11.9073\n▁distinguish\t-11.9073\n▁dowry\t-11.9073\n▁dusk\t-11.9073\n▁freeze\t-11.9073\n▁major\t-11.9073\n▁overwhelm\t-11.9073\n▁pitfall\t-11.9073\n▁proverb\t-11.9073\n▁quiver\t-11.9073\n▁Dishan\t-11.9073\n▁Glory\t-11.9073\n▁agony\t-11.9073\n▁desk\t-11.9073\n▁saddlebag\t-11.9073\n▁succeed\t-11.9073\n▁superscription\t-11.9073\nPlay\t-11.9073\ndopted\t-11.9073\nsatisfact\t-11.9073\n▁Serve\t-11.9073\n▁cedar\t-11.9073\n▁conclud\t-11.9073\n▁loaf\t-11.9073\n▁lucre\t-11.9073\n▁oats\t-11.9073\n▁satisfy\t-11.9073\n▁topaz\t-11.9073\nvaga\t-11.9073\n▁Bind\t-11.9073\n▁Erastus\t-11.9073\n▁moaned\t-11.9073\n▁smart\t-11.9073\n▁Besides\t-11.9073\n▁Talk\t-11.9073\n▁backbit\t-11.9073\n▁profess\t-11.9073\ntimber\t-11.9074\n▁Arabia\t-11.9074\n▁approaching\t-11.9074\n▁undone\t-11.9074\n▁Dedan\t-11.9074\n▁procur\t-11.9074\n▁Shobal\t-11.9074\n▁authorities\t-11.9074\n▁consult\t-11.9074\nCould\t-11.9074\n▁limp\t-11.9074\nhavi\t-11.9074\n▁Welch\t-11.9074\n▁brawle\t-11.9074\n▁Jobab\t-11.9074\n▁River\t-11.9074\n▁wafer\t-11.9074\nalley\t-11.9074\n▁abated\t-11.9074\n▁emotion\t-11.9074\n▁surround\t-11.9074\n▁united\t-11.9074\n▁Balaam\t-11.9074\n▁delicious\t-11.9074\n▁dread\t-11.9074\n▁abuse\t-11.9074\n▁engage\t-11.9074\n▁swimming\t-11.9074\n▁Marah\t-11.9074\n▁mumbled\t-11.9074\n▁stock\t-11.9074\n▁tanner\t-11.9074\n▁Syr\t-11.9074\n▁Tiberias\t-11.9074\n▁Phoenicia\t-11.9074\n▁assistance\t-11.9074\n▁ceasing\t-11.9074\n▁tape\t-11.9074\n▁pottage\t-11.9074\n▁trading\t-11.9074\n▁chide\t-11.9074\n▁rebelled\t-11.9074\n▁slanderers\t-11.9074\n▁Territories\t-11.9074\n▁prophetess\t-11.9074\n▁sheaf\t-11.9074\n▁Prisc\t-11.9074\n▁glow\t-11.9074\n▁grownups\t-11.9074\n▁terrify\t-11.9074\n▁vote\t-11.9074\n▁pestilence\t-11.9074\n▁quill\t-11.9074\n▁Creator\t-11.9074\n▁midway\t-11.9074\n▁route\t-11.9074\n▁slant\t-11.9074\n▁luck\t-11.9074\n▁brink\t-11.9074\n▁nobleman\t-11.9074\nOM\t-11.9074\nchoni\t-11.9074\n▁device\t-11.9074\niletus\t-11.9074\n▁scent\t-11.9074\nella\t-11.9074\n▁contentious\t-11.9074\n▁Shuah\t-11.9074\n▁cords\t-11.9074\n▁smear\t-11.9074\n▁Zeal\t-11.9074\n▁Paradise\t-11.9074\n▁stubble\t-11.9074\n▁indig\t-11.9074\n▁Ezer\t-11.9074\n▁Luz\t-11.9074\n▁bolt\t-11.9074\nclock\t-11.9074\n▁Fift\t-11.9074\n▁destitute\t-11.9074\nkling\t-11.9074\n▁Lys\t-11.9075\n▁crafti\t-11.9075\n▁spun\t-11.9075\n▁amiss\t-11.9075\neveral\t-11.9075\n▁prun\t-11.9075\n▁mistake\t-11.9075\neast\t-11.9075\n▁locks\t-11.9075\n▁pouches\t-11.9075\n▁safety\t-11.9075\n▁birch\t-11.9075\n▁variet\t-11.9075\n▁lounge\t-11.9075\nphath\t-11.9075\n▁affectionate\t-11.9075\n▁responsibilit\t-11.9075\n▁bondman\t-11.9075\n▁possum\t-11.9075\n▁Herodians\t-11.9075\n▁lobby\t-11.9075\n▁moonlight\t-11.9075\n▁harness\t-11.9075\n▁poking\t-11.9075\n▁shorn\t-11.9075\n▁birthday\t-11.9075\n▁lawlessness\t-11.9075\n▁Corn\t-11.9075\n▁errand\t-11.9075\n▁cruse\t-11.9076\n▁favorite\t-11.9076\n▁spru\t-11.9076\n▁stank\t-11.9076\nnoch\t-11.9076\n▁jerky\t-11.9076\n▁hireling\t-11.9076\n▁garnet\t-11.9076\n▁hatred\t-11.9076\n▁justification\t-11.9076\n▁Still\t-11.9076\n▁Big\t-11.9076\n▁modest\t-11.9076\n▁sideboards\t-11.9076\n▁correction\t-11.9076\n▁imprisonment\t-11.9076\n▁advertisement\t-11.9076\n▁peel\t-11.9076\n▁lain\t-11.9076\n▁Pass\t-11.9076\n▁weaned\t-11.9076\n▁lowliness\t-11.9076\n▁Meat\t-11.9076\n▁beryl\t-11.9077\n▁equality\t-11.9077\n▁Elon\t-11.9077\n▁pallet\t-11.9077\n▁departure\t-11.9077\n▁Hard\t-11.9077\n▁ladder\t-11.9077\n▁population\t-11.9077\n▁Esh\t-11.9077\n▁womenservants\t-11.9078\nulous\t-11.9078\n▁scarce\t-11.9078\n▁harmless\t-11.9078\n▁Bethel\t-11.9078\n▁withereth\t-11.9078\n▁moss\t-11.9078\n▁forks\t-11.9078\n▁braid\t-11.9078\npparent\t-11.9078\n▁observation\t-11.9078\n▁heritage\t-11.9079\n▁trance\t-11.9079\n▁hateful\t-11.908\n▁Mother\t-11.908\n▁weaknesses\t-11.908\n▁decease\t-11.908\n▁cele\t-11.908\n▁Cush\t-11.9081\n▁lofty\t-11.9081\n▁thoughtfully\t-11.9081\n▁specifi\t-11.9081\n▁practic\t-11.9081\ncircling\t-11.9081\n▁resolv\t-11.9082\n▁boundary\t-11.9082\n▁joyful\t-11.9082\n▁owest\t-11.9083\n▁Canaanit\t-11.9083\n▁visitors\t-11.9083\n▁More\t-11.9083\n▁cust\t-11.9083\n▁Dog\t-11.9084\n▁purser\t-11.9084\n▁bay\t-11.9084\nlittle\t-11.9084\n▁Ram\t-11.9084\n▁broth\t-11.9084\n▁deliverance\t-11.9084\n▁engraver\t-11.9084\n▁Life\t-11.9084\n▁hoisted\t-11.9084\n▁enlightened\t-11.9084\n▁Timnath\t-11.9085\n▁Lif\t-11.9085\nmates\t-11.9085\n▁lingere\t-11.9085\n▁sevenfold\t-11.9085\n▁exist\t-11.9086\n▁rare\t-11.9086\nlves\t-11.9086\n▁bitterness\t-11.9087\n▁treaty\t-11.9087\n▁nervously\t-11.9087\n▁alleg\t-11.9087\n▁reviled\t-11.9087\n▁thefts\t-11.9087\n▁Five\t-11.9087\n▁overhear\t-11.9088\nubtle\t-11.9088\n▁fur\t-11.9088\n▁swoop\t-11.9088\n▁waist\t-11.9088\n▁wishes\t-11.9088\n▁drift\t-11.9088\n▁rifle\t-11.9088\n▁smoking\t-11.9088\n▁ridden\t-11.9088\n▁barrel\t-11.9088\n▁Any\t-11.9088\n▁collection\t-11.9088\n▁Really\t-11.9089\n▁sobbed\t-11.9089\nlick\t-11.909\n▁Ski\t-11.909\n▁clu\t-11.909\n▁maiden\t-11.909\n▁Away\t-11.909\n▁slice\t-11.9091\n▁interpreter\t-11.9091\n▁Amram\t-11.9092\n▁costly\t-11.9092\n▁safely\t-11.9092\n▁stall\t-11.9093\n▁avenger\t-11.9093\n▁quietness\t-11.9094\n▁dishes\t-11.9094\nroughly\t-11.9095\n▁plantation\t-11.9095\n▁forgiveness\t-11.9095\n▁Athens\t-11.9096\n▁Horites\t-11.9096\n▁Ephesians\t-11.9096\n▁buttocks\t-11.9096\n▁malefactors\t-11.9096\n▁ornaments\t-11.9096\n▁stairs\t-11.9096\n▁spoons\t-11.9096\n▁mounds\t-11.9096\n▁reflect\t-11.9096\n▁enlarged\t-11.9096\n▁plead\t-11.9096\n▁discour\t-11.9096\n▁sowest\t-11.9096\n▁prey\t-11.9096\n▁workman\t-11.9097\n▁builders\t-11.9097\nmakers\t-11.9097\n▁fervently\t-11.9098\n▁confidently\t-11.9098\n▁passway\t-11.9098\n▁sport\t-11.9098\n▁Obed\t-11.9098\ngar\t-11.9101\n▁blasphemeth\t-11.9101\n▁blackness\t-11.9101\nbib\t-11.9101\n▁sup\t-11.9102\n▁fadeth\t-11.9102\n▁knocketh\t-11.9103\n▁quenched\t-11.9103\n▁confounded\t-11.9103\n▁hallowed\t-11.9104\n▁unfe\t-11.9104\n▁excited\t-11.9105\n▁balloonist\t-11.9105\n▁signifying\t-11.9105\n▁threshing\t-11.9105\n▁basin\t-11.9105\n▁blink\t-11.9107\n▁faithfulness\t-11.9107\n▁lit\t-11.9108\nuci\t-11.911\nquet\t-11.9111\n▁compli\t-11.9112\n▁trout\t-11.9112\n▁source\t-11.9114\n▁patiently\t-11.9114\ncated\t-11.9114\n▁referr\t-11.9114\n▁surprised\t-11.9116\n▁bruised\t-11.9116\n▁Ash\t-11.9116\n▁consideration\t-11.9116\n▁passion\t-11.9118\nllaba\t-11.9119\n▁uprightly\t-11.9119\n▁diam\t-11.9119\n▁address\t-11.9119\n▁pans\t-11.912\n▁fishers\t-11.912\naster\t-11.9121\n▁tie\t-11.9121\n▁affirmed\t-11.9123\n▁buffeted\t-11.9123\n▁chastened\t-11.9124\n▁eighteen\t-11.9124\n▁outwardly\t-11.9124\nuit\t-11.9124\n▁mash\t-11.9124\n▁squat\t-11.9125\n▁childless\t-11.9125\n▁pierced\t-11.9126\nonge\t-11.9126\n▁contention\t-11.9126\n▁hor\t-11.9127\n▁joke\t-11.9127\n▁beheaded\t-11.9128\n▁AN\t-11.9128\n▁eleventh\t-11.9129\n▁pleasantly\t-11.913\nament\t-11.9132\nstance\t-11.9132\n▁brimm\t-11.9133\n▁strands\t-11.9134\n▁anchors\t-11.9134\n▁features\t-11.9134\n▁sorcerers\t-11.9134\n▁None\t-11.9134\n▁basons\t-11.9134\n▁peaceable\t-11.9135\ndid\t-11.9136\n▁defilement\t-11.9138\n▁memorialize\t-11.914\n▁purifie\t-11.9144\n▁Certainly\t-11.9144\n▁Hunt\t-11.9145\nmission\t-11.9145\n▁army\t-11.9145\navan\t-11.9146\n▁purifying\t-11.9146\n▁bidd\t-11.9148\n▁preserved\t-11.9149\n▁provoked\t-11.9151\nhair\t-11.9151\n▁reapeth\t-11.9152\n▁outhouse\t-11.9155\ngate\t-11.9155\n▁control\t-11.9158\n▁Herm\t-11.9158\n▁har\t-11.9158\n▁destroyer\t-11.916\nEgg\t-11.916\n▁wrestl\t-11.9163\n▁boo\t-11.9163\n▁threatening\t-11.9164\n▁pals\t-11.9167\n▁impen\t-11.9167\ngars\t-11.9171\n▁Lib\t-11.9172\n▁pigeons\t-11.9173\n▁psalms\t-11.9173\n▁senators\t-11.9173\n▁Levites\t-11.9173\n▁eagles\t-11.9173\n▁sections\t-11.9174\n▁stirr\t-11.9176\n▁ruleth\t-11.9178\noming\t-11.9182\ncob\t-11.9183\n▁Timna\t-11.9185\n▁farmers\t-11.9185\n▁cured\t-11.9185\n▁wounding\t-11.9188\n▁fleeth\t-11.9188\nical\t-11.9189\n▁lawless\t-11.9192\n▁lu\t-11.9194\n▁metal\t-11.9203\nattered\t-11.9203\n▁remarks\t-11.9211\nRE\t-11.9212\n▁heels\t-11.9212\n▁nails\t-11.9212\n▁agate\t-11.9212\n▁meaneth\t-11.9213\n▁vows\t-11.9213\n▁debtors\t-11.9213\n▁loads\t-11.9214\n▁cards\t-11.9214\n▁Pat\t-11.9214\n▁deceivers\t-11.9214\n▁tur\t-11.9215\n▁moveth\t-11.9217\n▁fewer\t-11.9217\n▁scraping\t-11.9217\n▁Please\t-11.922\n▁attained\t-11.9227\n▁possessor\t-11.9231\n▁cu\t-11.9233\n▁envying\t-11.9242\n▁slime\t-11.9248\ntraightway\t-11.9249\n▁lowly\t-11.925\n▁handfuls\t-11.9253\nxa\t-11.9258\n▁falsely\t-11.926\n▁pants\t-11.9261\nways\t-11.9261\nedent\t-11.9263\nndered\t-11.9268\n▁k\t-11.9269\n▁patt\t-11.9272\n▁handled\t-11.9278\n▁traveled\t-11.9281\n▁understandeth\t-11.9284\n▁doubled\t-11.9286\n▁ruled\t-11.9287\nkillet\t-11.9288\n▁bricks\t-11.9293\n▁sepulchres\t-11.9293\n▁scraps\t-11.9294\n▁lions\t-11.9294\n▁worms\t-11.9298\n▁fastings\t-11.9299\n▁justif\t-11.93\n▁pleasing\t-11.9302\n▁livers\t-11.9302\n▁def\t-11.9303\n▁swinging\t-11.9313\n▁doubting\t-11.9314\n▁favored\t-11.9317\nstrain\t-11.9321\n▁fetched\t-11.9321\n▁seemly\t-11.9324\n▁alike\t-11.9327\n▁careth\t-11.9328\n▁frie\t-11.9329\n▁goal\t-11.9332\n▁blades\t-11.9333\n▁banks\t-11.9333\n▁tales\t-11.9333\n▁Saying\t-11.9335\n▁spl\t-11.9336\n▁salted\t-11.9341\n▁rate\t-11.9341\n▁burdened\t-11.9343\n▁harps\t-11.9347\nmal\t-11.9357\nference\t-11.936\n▁flowed\t-11.936\n▁deserted\t-11.9364\nsia\t-11.9364\nronic\t-11.9365\n▁folds\t-11.9373\n▁traditions\t-11.9374\n▁inv\t-11.9376\nads\t-11.9393\n▁inwards\t-11.9395\n▁jell\t-11.9411\n▁rubbe\t-11.9418\nchangers\t-11.9418\nphan\t-11.9422\n▁beg\t-11.9428\n▁chil\t-11.9438\n▁piti\t-11.9446\n▁guides\t-11.9452\n▁figures\t-11.9455\n▁earthquakes\t-11.9455\nenness\t-11.9457\n▁healings\t-11.9458\n▁fightings\t-11.9458\n▁outward\t-11.9464\nzah\t-11.9467\ncoal\t-11.9476\n▁dine\t-11.9477\n▁sop\t-11.9484\n▁posts\t-11.9492\n▁scal\t-11.9493\n▁chambers\t-11.9496\n▁threads\t-11.9496\n▁washing\t-11.9501\n▁daze\t-11.9515\n▁seeds\t-11.9515\n▁playing\t-11.9528\nskinned\t-11.953\nstern\t-11.9554\nsea\t-11.9556\n▁Za\t-11.9568\n▁cases\t-11.9579\nuts\t-11.9579\nlax\t-11.9585\n▁multiplying\t-11.9594\nograph\t-11.9614\n▁revelations\t-11.9621\n▁happens\t-11.9623\n▁wail\t-11.9627\n▁departing\t-11.9641\n▁adventure\t-11.9648\n▁pal\t-11.9651\nause\t-11.9662\n▁caves\t-11.9663\n▁girdles\t-11.9664\n▁deserts\t-11.9665\nbach\t-11.9678\n—-\t-11.9679\n▁oppose\t-11.9687\n▁hens\t-11.9702\n▁cabins\t-11.9705\nittle\t-11.9705\n▁Sea\t-11.9721\n▁War\t-11.9722\n▁occasional\t-11.9735\n▁oaths\t-11.9747\n▁snows\t-11.9747\n▁cau\t-11.975\noking\t-11.9773\n▁bushe\t-11.9774\nomp\t-11.9785\n▁tribulations\t-11.979\n▁labors\t-11.9792\n▁gallo\t-11.9806\nraise\t-11.9816\n▁afflictions\t-11.9833\nstable\t-11.9846\nuff\t-11.9871\nimate\t-11.988\n▁Gre\t-11.9891\n▁hearer\t-11.9914\n▁la\t-11.9948\nium\t-11.9966\n▁class\t-11.9973\n▁states\t-12.0005\n▁rightly\t-12.0013\nui\t-12.0024\n▁blinded\t-12.0024\n▁fasted\t-12.0033\ncu\t-12.0041\nlent\t-12.0042\n▁res\t-12.0043\n▁perfecting\t-12.0045\n▁foundations\t-12.0065\n▁Ab\t-12.0069\n▁Sett\t-12.0073\noli\t-12.0078\namped\t-12.0087\n▁breastplates\t-12.0092\nrah\t-12.0095\n▁Sh\t-12.0103\n▁gat\t-12.0103\n▁fr\t-12.0136\n▁crackl\t-12.0146\n▁Med\t-12.0159\necting\t-12.0169\n▁shove\t-12.0179\n▁counsels\t-12.0225\n▁needles\t-12.0227\n▁Haz\t-12.026\n▁sorrows\t-12.0261\noned\t-12.0271\neady\t-12.0276\n▁inte\t-12.0282\n▁Hush\t-12.0285\n▁Hol\t-12.0286\n▁Hid\t-12.0295\nye\t-12.0309\n▁famines\t-12.0315\nON\t-12.0316\n▁Gat\t-12.0317\n▁sel\t-12.0342\n▁workings\t-12.0345\n▁socia\t-12.0361\n▁snatch\t-12.0371\nyst\t-12.0384\n▁wil\t-12.0397\n▁persuad\t-12.0404\ndamn\t-12.0417\n▁uses\t-12.0447\n▁breaks\t-12.0459\n▁numbers\t-12.0501\n▁Almo\t-12.0506\nChe\t-12.0547\n▁Zi\t-12.0554\n▁services\t-12.0635\n▁reform\t-12.0664\n▁weari\t-12.0664\n▁fe\t-12.0679\n▁crates\t-12.0729\nherein\t-12.0734\nMO\t-12.0736\n▁allow\t-12.0748\n▁uncle\t-12.0751\ncord\t-12.0756\nnigh\t-12.0763\narrows\t-12.0771\n▁struggl\t-12.0777\n▁rou\t-12.0785\n▁admire\t-12.0797\neigne\t-12.0847\n▁hum\t-12.0962\n▁Ber\t-12.1015\nander\t-12.102\nB\t-12.1024\nallowed\t-12.1033\n▁gaze\t-12.104\n▁blackberr\t-12.1092\n▁uneas\t-12.1092\n▁argue\t-12.1114\nching\t-12.1116\nclaimed\t-12.1122\nvi\t-12.1131\nwist\t-12.1143\n▁pace\t-12.1153\ntended\t-12.1179\n▁cat\t-12.1226\n▁elevate\t-12.1231\n▁Jac\t-12.1236\n▁Jet\t-12.1243\nempti\t-12.1261\n▁Pen\t-12.1273\n▁loft\t-12.1275\nactic\t-12.1289\n▁da\t-12.1301\nray\t-12.1409\n▁sole\t-12.1429\nberries\t-12.1452\n▁mood\t-12.147\ntop\t-12.1492\n▁pat\t-12.16\nspir\t-12.1603\nshell\t-12.1625\nilly\t-12.1641\nepho\t-12.1642\n▁blu\t-12.1652\nock\t-12.1666\n▁Car\t-12.168\n▁Command\t-12.1701\n▁gall\t-12.1724\nlashes\t-12.1732\n▁sacr\t-12.1796\n▁trace\t-12.1803\n▁commo\t-12.1821\n▁wi\t-12.1821\niles\t-12.1932\norn\t-12.196\n▁waxe\t-12.1963\nhai\t-12.1978\ncame\t-12.205\n▁invit\t-12.208\n▁Jer\t-12.2116\nIsn\t-12.2129\n▁Hi\t-12.2138\n▁tast\t-12.2149\n▁Pu\t-12.215\n▁che\t-12.2152\nlasses\t-12.2152\n▁slu\t-12.2168\nud\t-12.2169\nonster\t-12.2204\name\t-12.2215\n▁inde\t-12.2288\noved\t-12.2354\nmar\t-12.2354\nows\t-12.2356\nieth\t-12.2386\n▁contr\t-12.2407\n▁Ri\t-12.2459\n▁pr\t-12.246\n▁rehearse\t-12.2506\nlids\t-12.2584\n▁Sep\t-12.2594\nrity\t-12.263\nzo\t-12.2643\now\t-12.2688\n▁Sou\t-12.2689\nrench\t-12.2696\nncy\t-12.2788\nence\t-12.2819\nigure\t-12.283\n▁constraine\t-12.2867\ncongratu\t-12.2876\noon\t-12.2908\nano\t-12.2932\n▁rage\t-12.295\n▁pu\t-12.295\nmet\t-12.2968\neek\t-12.2974\nhew\t-12.2979\n▁Sho\t-12.3004\nnah\t-12.3004\nbi\t-12.3015\ntie\t-12.3019\nasped\t-12.3041\n▁Amon\t-12.3054\ntening\t-12.3065\nasty\t-12.3076\nhan\t-12.3077\n▁considerabl\t-12.3108\nvious\t-12.3121\nzens\t-12.3148\n▁strok\t-12.3154\nhusks\t-12.3161\nloo\t-12.3165\n▁spat\t-12.3178\n▁rais\t-12.3183\nTo\t-12.3195\n▁scra\t-12.3211\n▁port\t-12.324\n▁wag\t-12.3259\nace\t-12.3259\n▁rec\t-12.3278\nmbled\t-12.329\n▁actual\t-12.3299\n▁troubl\t-12.3332\nrie\t-12.3346\nawfully\t-12.336\nench\t-12.3383\nlaus\t-12.3414\nrable\t-12.3424\n▁chal\t-12.3424\n▁Om\t-12.3467\nron\t-12.3481\ncial\t-12.3496\nroth\t-12.3514\n▁li\t-12.352\n▁divid\t-12.354\nP\t-12.3575\n▁stripe\t-12.3593\nER\t-12.3634\nany\t-12.3676\nobably\t-12.3692\ngiver\t-12.3699\n▁plo\t-12.37\namo\t-12.3726\noiled\t-12.3729\namia\t-12.3749\nTH\t-12.3757\nivity\t-12.3762\nwish\t-12.3775\nE\t-12.3783\nself\t-12.3785\nnger\t-12.3787\n▁attendan\t-12.3795\n▁slim\t-12.3795\n▁ston\t-12.3815\nging\t-12.3817\nitable\t-12.3832\nAR\t-12.3855\nib\t-12.3858\nminate\t-12.3869\nsided\t-12.3872\n▁magn\t-12.3873\n▁rob\t-12.3881\n▁companion\t-12.3883\ninch\t-12.3887\nHey\t-12.3888\nicles\t-12.3888\nj\t-12.3895\nounding\t-12.3914\nheaded\t-12.3916\nnever\t-12.3919\n▁impe\t-12.3923\n▁Tra\t-12.3927\nmobil\t-12.3931\n▁arch\t-12.3931\nstruction\t-12.3933\n▁slap\t-12.3934\nips\t-12.3934\n▁wrap\t-12.394\nhim\t-12.3944\n▁Tim\t-12.3946\n▁bite\t-12.3946\n▁horn\t-12.3947\n▁convi\t-12.3947\n▁complain\t-12.3963\n▁impo\t-12.3964\noving\t-12.3964\n▁scorpion\t-12.3966\n▁elbow\t-12.3966\n▁poplar\t-12.3966\n▁apron\t-12.3966\n▁impla\t-12.3968\n▁hillside\t-12.3968\n▁sorcerer\t-12.3976\n▁anchor\t-12.3976\n▁feature\t-12.3976\nuse\t-12.3977\n▁bason\t-12.398\n▁slope\t-12.398\n▁physician\t-12.3981\n▁Sanct\t-12.3981\n▁strand\t-12.3982\n▁warrior\t-12.3983\nhereabouts\t-12.3983\n▁highway\t-12.3983\n▁idolater\t-12.3984\n▁locust\t-12.3987\n▁payment\t-12.3987\n▁speci\t-12.3988\n▁tithe\t-12.3988\norry\t-12.3988\n▁selve\t-12.3989\n▁hypocrite\t-12.3989\n▁robber\t-12.399\n▁tare\t-12.3991\n▁observ\t-12.3994\n▁thorn\t-12.3995\n▁tran\t-12.3999\n▁sigh\t-12.3999\n▁mil\t-12.4\n▁revile\t-12.4\nagger\t-12.4001\njected\t-12.4002\ncontinu\t-12.4002\nrag\t-12.4003\ncitizen\t-12.4003\nWash\t-12.4003\nuncle\t-12.4005\ncorn\t-12.4007\nsource\t-12.4008\npathetic\t-12.4009\ntions\t-12.4009\n▁excus\t-12.4009\nhandled\t-12.4009\ndraft\t-12.401\nfloat\t-12.4011\nstalk\t-12.4012\nAN\t-12.4012\nlimb\t-12.4012\nblock\t-12.4012\nSumm\t-12.4013\nhog\t-12.4013\nNever\t-12.4014\n▁pierc\t-12.4014\n▁bro\t-12.4014\n▁persecut\t-12.4014\ngird\t-12.4015\nbox\t-12.4015\nstedfast\t-12.4015\nWatch\t-12.4015\ncloth\t-12.4015\n▁sid\t-12.4015\nNone\t-12.4015\nsearch\t-12.4016\nSeven\t-12.4016\nGet\t-12.4016\nHenry\t-12.4016\nkeeper\t-12.4016\nsoldier\t-12.4016\nJ\t-12.4016\nPerhaps\t-12.4016\nshekel\t-12.4017\nfields\t-12.4017\nounted\t-12.4017\nshot\t-12.4017\nkindness\t-12.4017\ncondemned\t-12.4017\nHomer\t-12.4017\n▁whistl\t-12.4017\nplease\t-12.4017\nHur\t-12.4018\nhorse\t-12.4018\nwitnesses\t-12.4018\npleasure\t-12.4018\nbade\t-12.4018\nspread\t-12.4018\nGive\t-12.4018\nbush\t-12.4018\nfriend\t-12.4018\nmyself\t-12.4019\nLurvy\t-12.4019\nwheel\t-12.4019\nperfect\t-12.4019\nWith\t-12.4019\nroom\t-12.4019\npans\t-12.4019\ngeneration\t-12.4019\nwhile\t-12.4019\nburnt\t-12.4019\nnothing\t-12.4019\nknowledge\t-12.4019\n▁reject\t-12.4019\npush\t-12.402\naa\t-12.402\n▁dismiss\t-12.402\ndad\t-12.402\nserve\t-12.402\ncoat\t-12.4021\n▁Gi\t-12.4021\nOne\t-12.4021\nwhe\t-12.4021\ntrap\t-12.4022\nsail\t-12.4022\n▁thresh\t-12.4022\n▁lum\t-12.4022\ngreen\t-12.4022\nertainly\t-12.4023\nSay\t-12.4023\nplace\t-12.4023\n▁confound\t-12.4025\n▁hallow\t-12.4025\n▁gainsay\t-12.4026\n▁signify\t-12.4027\n▁edify\t-12.4027\n▁vanish\t-12.4027\neeches\t-12.4028\nonly\t-12.4028\n▁explain\t-12.4028\n▁kno\t-12.4029\n▁vex\t-12.4029\n▁sniff\t-12.4029\n▁repeat\t-12.4029\n▁exceed\t-12.403\n▁chuckl\t-12.403\n▁ordain\t-12.403\n▁grabb\t-12.403\nbond\t-12.4031\n▁threat\t-12.4031\n▁flam\t-12.4032\nPut\t-12.4032\n▁amaz\t-12.4032\nSee\t-12.4033\npri\t-12.4034\nportion\t-12.4034\n▁laborer\t-12.4035\nlead\t-12.4036\n▁citizen\t-12.4036\nseeing\t-12.4037\n▁shear\t-12.4037\n▁ta\t-12.4038\n▁plea\t-12.4038\nWa\t-12.4039\noasty\t-12.404\nnything\t-12.4042\n▁App\t-12.4043\nmade\t-12.4048\n▁tame\t-12.4051\n▁boot\t-12.4053\n▁testifie\t-12.4054\nrun\t-12.4055\n▁Exp\t-12.4055\n▁create\t-12.4055\n▁boar\t-12.4055\n▁Israelite\t-12.4055\ntant\t-12.4058\nolved\t-12.406\n▁flourish\t-12.406\nhod\t-12.4061\n▁continual\t-12.4062\n▁genealog\t-12.4062\n▁sudden\t-12.4063\nsparag\t-12.4063\nufficien\t-12.4063\noldiers\t-12.4064\n▁dizz\t-12.4064\n▁choos\t-12.4064\ntrong\t-12.4064\n▁filth\t-12.4064\n▁snar\t-12.4064\n▁reconcile\t-12.4064\n▁communicat\t-12.4065\n▁memor\t-12.4065\n▁twent\t-12.4065\nphos\t-12.4065\nhould\t-12.4066\nangel\t-12.4066\n▁distinct\t-12.4067\nbur\t-12.4067\nification\t-12.4069\n▁Amra\t-12.407\n▁import\t-12.4071\n▁mir\t-12.4071\n▁merci\t-12.4071\npath\t-12.4071\n▁persuasi\t-12.4071\n▁tee\t-12.4072\n▁Mattha\t-12.4072\n▁appro\t-12.4072\naradise\t-12.4072\naughter\t-12.4072\nneys\t-12.4072\n▁attract\t-12.4072\n▁Govern\t-12.4072\n▁situat\t-12.4072\n▁stubb\t-12.4072\n▁subtil\t-12.4072\n▁habit\t-12.4072\n▁abomina\t-12.4073\n▁pouch\t-12.4073\necomposers\t-12.4073\nestroy\t-12.4073\nntreat\t-12.4073\nattering\t-12.4073\nxcellent\t-12.4073\nontrary\t-12.4073\nontinue\t-12.4073\n▁gloom\t-12.4073\nventure\t-12.4073\nurmur\t-12.4073\nilbur\t-12.4073\nepart\t-12.4073\nistened\t-12.4073\n▁Apoll\t-12.4073\n▁excel\t-12.4073\n▁Ponti\t-12.4073\n▁esp\t-12.4073\narvel\t-12.4073\n▁succ\t-12.4073\nrink\t-12.4073\n▁bureau\t-12.4073\n▁employ\t-12.4073\n▁scru\t-12.4073\n▁August\t-12.4073\n▁Nico\t-12.4073\n▁centipede\t-12.4073\n▁executi\t-12.4073\n▁expense\t-12.4073\n▁frail\t-12.4073\n▁grasshopper\t-12.4073\n▁happie\t-12.4073\n▁revelling\t-12.4073\n▁skelet\t-12.4073\n▁traitor\t-12.4073\n▁victual\t-12.4073\nCrunchy\t-12.4073\nPhoebe\t-12.4073\nSlowly\t-12.4073\nbulus\t-12.4073\ncian\t-12.4073\nconsequen\t-12.4073\ncontinency\t-12.4073\ngullible\t-12.4073\nhippoorwill\t-12.4073\nlanguish\t-12.4073\nmphas\t-12.4073\nolog\t-12.4073\npetitions\t-12.4073\nroduction\t-12.4073\nsignifican\t-12.4073\nzziel\t-12.4073\n▁Agabus\t-12.4073\n▁Areopag\t-12.4073\n▁Assyria\t-12.4073\n▁Baal\t-12.4073\n▁Baalzephon\t-12.4073\n▁Babel\t-12.4073\n▁Baptizer\t-12.4073\n▁Beautiful\t-12.4073\n▁Beroea\t-12.4073\n▁Bigfish\t-12.4073\n▁Bithynia\t-12.4073\n▁Carmi\t-12.4073\n▁Circumcision\t-12.4073\n▁Cotton\t-12.4073\n▁Cowee\t-12.4073\n▁Crispus\t-12.4073\n▁Crucify\t-12.4073\n▁Dalma\t-12.4073\n▁Dorcas\t-12.4073\n▁Ellasar\t-12.4073\n▁Epaphroditus\t-12.4073\n▁Florida\t-12.4073\n▁Fulfil\t-12.4073\n▁Gabriel\t-12.4073\n▁Gerasenes\t-12.4073\n▁Gershom\t-12.4073\n▁Gethsemane\t-12.4073\n▁Girgas\t-12.4073\n▁Increase\t-12.4073\n▁Izhar\t-12.4073\n▁Jehoshaphat\t-12.4073\n▁Jokshan\t-12.4073\n▁Joram\t-12.4073\n▁Lebanon\t-12.4073\n▁Lydda\t-12.4073\n▁Lydia\t-12.4073\n▁Mattath\t-12.4073\n▁Matthias\t-12.4073\n▁Mehujael\t-12.4073\n▁Melchi\t-12.4073\n▁Methusael\t-12.4073\n▁Millipede\t-12.4073\n▁Nimrod\t-12.4073\n▁Nineveh\t-12.4073\n▁Onesiphorus\t-12.4073\n▁Pergamum\t-12.4073\n▁Phoeni\t-12.4073\n▁Pisidia\t-12.4073\n▁Potomac\t-12.4073\n▁Prophesy\t-12.4073\n▁Publius\t-12.4073\n▁Rabboni\t-12.4073\n▁Radiant\t-12.4073\n▁Rahab\t-12.4073\n▁Rameses\t-12.4073\n▁Rephaims\t-12.4073\n▁Rufus\t-12.4073\n▁Sabaoth\t-12.4073\n▁Sacrifice\t-12.4073\n▁Salome\t-12.4073\n▁School\t-12.4073\n▁Search\t-12.4073\n▁Seba\t-12.4073\n▁Secret\t-12.4073\n▁Shaveh\t-12.4073\n▁Siloam\t-12.4073\n▁Smyrna\t-12.4073\n▁Sosthenes\t-12.4073\n▁Squirrel\t-12.4073\n▁Supreme\t-12.4073\n▁Tavern\t-12.4073\n▁Theophilus\t-12.4073\n▁Thessalonians\t-12.4073\n▁Tubalcain\t-12.4073\n▁Zachariah\t-12.4073\n▁Zerubbabel\t-12.4073\n▁absolute\t-12.4073\n▁acquired\t-12.4073\n▁advise\t-12.4073\n▁ammunition\t-12.4073\n▁apothecary\t-12.4073\n▁appetizing\t-12.4073\n▁apprehend\t-12.4073\n▁armpits\t-12.4073\n▁assumption\t-12.4073\n▁beefsteak\t-12.4073\n▁bison\t-12.4073\n▁bomb\t-12.4073\n▁boulder\t-12.4073\n▁brilliant\t-12.4073\n▁burial\t-12.4073\n▁busybodies\t-12.4073\n▁calico\t-12.4073\n▁clamor\t-12.4073\n▁companies\t-12.4073\n▁compound\t-12.4073\n▁conspiracy\t-12.4073\n▁convocation\t-12.4073\n▁cornbread\t-12.4073\n▁craftsmen\t-12.4073\n▁crawfish\t-12.4073\n▁cumber\t-12.4073\n▁delusion\t-12.4073\n▁denarius\t-12.4073\n▁detail\t-12.4073\n▁dictionary\t-12.4073\n▁disannul\t-12.4073\n▁discarded\t-12.4073\n▁divorcement\t-12.4073\n▁doorframes\t-12.4073\n▁downstream\t-12.4073\n▁elaborate\t-12.4073\n▁eloquent\t-12.4073\n▁emperor\t-12.4073\n▁enact\t-12.4073\n▁evangelist\t-12.4073\n▁experiment\t-12.4073\n▁extreme\t-12.4073\n▁fatfleshed\t-12.4073\n▁fathoms\t-12.4073\n▁foreknew\t-12.4073\n▁fullgrown\t-12.4073\n▁fumbling\t-12.4073\n▁futile\t-12.4073\n▁garner\t-12.4073\n▁gleam\t-12.4073\n▁goddess\t-12.4073\n▁gravy\t-12.4073\n▁grisled\t-12.4073\n▁gulped\t-12.4073\n▁gutted\t-12.4073\n▁gutters\t-12.4073\n▁happiness\t-12.4073\n▁hominy\t-12.4073\n▁humiliation\t-12.4073\n▁immutab\t-12.4073\n▁implements\t-12.4073\n▁inconvenient\t-12.4073\n▁infield\t-12.4073\n▁influen\t-12.4073\n▁ingathering\t-12.4073\n▁interlude\t-12.4073\n▁kinswoman\t-12.4073\n▁kneadingtroughs\t-12.4073\n▁lamentation\t-12.4073\n▁lantern\t-12.4073\n▁leisure\t-12.4073\n▁lintel\t-12.4073\n▁material\t-12.4073\n▁medicine\t-12.4073\n▁millipedes\t-12.4073\n▁moccasins\t-12.4073\n▁mudflat\t-12.4073\n▁muzzle\t-12.4073\n▁nerve\t-12.4073\n▁nipple\t-12.4073\n▁oysters\t-12.4073\n▁pellets\t-12.4073\n▁penknife\t-12.4073\n▁pollut\t-12.4073\n▁porcupine\t-12.4073\n▁portrait\t-12.4073\n▁preeminence\t-12.4073\n▁prejudice\t-12.4073\n▁preparing\t-12.4073\n▁presumptuous\t-12.4073\n▁problem\t-12.4073\n▁promptly\t-12.4073\n▁provocation\t-12.4073\n▁rabble\t-12.4073\n▁rapid\t-12.4073\n▁religious\t-12.4073\n▁renounce\t-12.4073\n▁restraineth\t-12.4073\n▁ridiculous\t-12.4073\n▁rigour\t-12.4073\n▁roost\t-12.4073\n▁sandwich\t-12.4073\n▁scruples\t-12.4073\n▁slog\t-12.4073\n▁slothful\t-12.4073\n▁smiling\t-12.4073\n▁sobriety\t-12.4073\n▁sorceries\t-12.4073\n▁sorcery\t-12.4073\n▁stimulate\t-12.4073\n▁stupor\t-12.4073\n▁subdue\t-12.4073\n▁suffice\t-12.4073\n▁sumptuous\t-12.4073\n▁supreme\t-12.4073\n▁survival\t-12.4073\n▁television\t-12.4073\n▁terrestrial\t-12.4073\n▁theoretical\t-12.4073\n▁thereafter\t-12.4073\n▁thirteen\t-12.4073\n▁thistledown\t-12.4073\n▁timbrel\t-12.4073\n▁tomatoes\t-12.4073\n▁traffic\t-12.4073\n▁trample\t-12.4073\n▁tremen\t-12.4073\n▁trinket\t-12.4073\n▁unaccountabl\t-12.4073\n▁unfair\t-12.4073\n▁univers\t-12.4073\n▁unruly\t-12.4073\n▁unthankful\t-12.4073\n▁unwashen\t-12.4073\n▁vesture\t-12.4073\n▁vicinity\t-12.4073\n▁victim\t-12.4073\n▁woodpile\t-12.4073\n▁wrinkle\t-12.4073\n▁yawned\t-12.4073\n▁zero\t-12.4073\n▁Death\t-12.4073\nacinth\t-12.4073\nshrunk\t-12.4073\nummim\t-12.4073\n▁Ancih\t-12.4073\n▁Antipa\t-12.4073\n▁Frankl\t-12.4073\n▁Jenny\t-12.4073\n▁Malch\t-12.4073\n▁Mississippi\t-12.4073\n▁accommodat\t-12.4073\n▁altercat\t-12.4073\n▁calculat\t-12.4073\n▁clown\t-12.4073\n▁clutter\t-12.4073\n▁copy\t-12.4073\n▁cripple\t-12.4073\n▁expanse\t-12.4073\n▁flags\t-12.4073\n▁gabbl\t-12.4073\n▁grove\t-12.4073\n▁license\t-12.4073\n▁lilies\t-12.4073\n▁magnificen\t-12.4073\n▁morter\t-12.4073\n▁pastille\t-12.4073\n▁plaster\t-12.4073\n▁ribbon\t-12.4073\n▁snuffdishes\t-12.4073\n▁surmis\t-12.4073\n▁terms\t-12.4073\nietly\t-12.4073\n▁Jann\t-12.4073\n▁assault\t-12.4073\n▁chryso\t-12.4073\n▁crafty\t-12.4073\n▁delud\t-12.4073\n▁drool\t-12.4073\n▁grandfather\t-12.4073\n▁humility\t-12.4073\n▁lamented\t-12.4073\n▁lungs\t-12.4073\n▁mankind\t-12.4073\n▁narrat\t-12.4073\n▁negotiat\t-12.4073\n▁risk\t-12.4073\n▁smack\t-12.4073\n▁soothsay\t-12.4073\n▁spark\t-12.4073\n▁squeal\t-12.4073\n▁stove\t-12.4073\n▁twirl\t-12.4073\n▁unsettle\t-12.4073\n▁whicker\t-12.4073\n▁withdraw\t-12.4073\n▁Earth\t-12.4073\n▁Towers\t-12.4073\n▁circuit\t-12.4073\n▁expert\t-12.4073\n▁foaming\t-12.4073\n▁ignore\t-12.4073\n▁wobbl\t-12.4073\n▁beho\t-12.4073\n▁garnish\t-12.4073\nxtort\t-12.4073\n▁Galeed\t-12.4073\n▁Sabt\t-12.4073\n▁basketfuls\t-12.4073\n▁daddy\t-12.4073\n▁fragran\t-12.4073\n▁motor\t-12.4073\n▁napkin\t-12.4073\n▁scourging\t-12.4073\n▁surpass\t-12.4073\nversatile\t-12.4074\n▁balance\t-12.4074\n▁glid\t-12.4074\n▁overflow\t-12.4074\n▁suspicio\t-12.4074\nspouts\t-12.4074\n▁dazzling\t-12.4074\n▁effectual\t-12.4074\n▁initial\t-12.4074\n▁opus\t-12.4074\n▁waistcoat\t-12.4074\n▁hobbl\t-12.4074\n▁numer\t-12.4074\n▁purification\t-12.4074\n▁Joanna\t-12.4074\n▁dragline\t-12.4074\n▁runneth\t-12.4074\n▁Hirah\t-12.4074\n▁assessment\t-12.4074\n▁loathe\t-12.4074\n▁superlative\t-12.4074\n▁Pontiac\t-12.4074\n▁persistent\t-12.4074\n▁uphill\t-12.4074\n▁Amoz\t-12.4074\n▁rude\t-12.4074\nilacs\t-12.4074\n▁approached\t-12.4074\n▁billows\t-12.4074\n▁globe\t-12.4074\n▁oink\t-12.4074\n▁option\t-12.4074\n▁rescue\t-12.4074\n▁balm\t-12.4074\n▁councillor\t-12.4074\n▁frying\t-12.4074\n▁hazard\t-12.4074\n▁nursing\t-12.4074\n▁shiver\t-12.4074\n▁Josiah\t-12.4074\n▁enchant\t-12.4074\n▁sentiment\t-12.4074\n▁ambassage\t-12.4074\n▁filthiness\t-12.4074\n▁forefather\t-12.4074\n▁consist\t-12.4074\n▁eventide\t-12.4074\n▁grandson\t-12.4074\n▁reclin\t-12.4074\npproximately\t-12.4074\n▁dignities\t-12.4074\n▁peaks\t-12.4074\n▁Slug\t-12.4074\n▁furious\t-12.4074\n▁stroll\t-12.4074\n▁superfluity\t-12.4074\n▁Raamah\t-12.4074\n▁aloft\t-12.4074\n▁divinity\t-12.4074\n▁slats\t-12.4074\n▁caution\t-12.4074\n▁pride\t-12.4074\n▁cautiously\t-12.4074\n▁ginger\t-12.4074\n▁splash\t-12.4074\n▁Doctor\t-12.4074\n▁appeti\t-12.4074\n▁babblings\t-12.4074\n▁befitting\t-12.4074\n▁leasing\t-12.4074\n▁precede\t-12.4074\n▁welfare\t-12.4074\n▁outfit\t-12.4074\n▁spoonful\t-12.4074\n▁bacteria\t-12.4074\n▁uniform\t-12.4074\nazin\t-12.4074\n▁Corinthians\t-12.4074\n▁usury\t-12.4074\n▁display\t-12.4074\n▁salon\t-12.4074\n▁battle\t-12.4074\n▁turtle\t-12.4074\n▁vomit\t-12.4074\nsubstan\t-12.4074\n▁manger\t-12.4074\n▁Calah\t-12.4074\n▁exhal\t-12.4074\n▁stanched\t-12.4074\n▁vaunt\t-12.4074\n▁chaise\t-12.4074\n▁translat\t-12.4074\n▁britches\t-12.4074\n▁guiltless\t-12.4074\n▁owl\t-12.4074\n▁travers\t-12.4074\n▁Salem\t-12.4074\n▁fuss\t-12.4074\n▁acquaintance\t-12.4074\n▁Gaza\t-12.4074\n▁Mizraim\t-12.4074\n▁allotted\t-12.4074\n▁soaked\t-12.4074\n▁primar\t-12.4074\n▁suet\t-12.4074\n▁droop\t-12.4074\n▁clash\t-12.4074\n▁gloomily\t-12.4074\n▁vouch\t-12.4074\n▁Rhod\t-12.4074\n▁decay\t-12.4074\n▁dripping\t-12.4074\n▁loyal\t-12.4074\n▁Julius\t-12.4074\n▁enforc\t-12.4074\n▁partiality\t-12.4074\nMeeting\t-12.4074\n▁eaves\t-12.4074\n▁enrolment\t-12.4074\n▁kidding\t-12.4074\ntude\t-12.4074\n▁popover\t-12.4074\n▁laz\t-12.4074\n▁legitima\t-12.4074\n▁Tert\t-12.4074\n▁Claudius\t-12.4074\n▁poet\t-12.4074\n▁flake\t-12.4074\n▁streak\t-12.4074\nNice\t-12.4074\nsabba\t-12.4074\n▁okay\t-12.4074\n▁tube\t-12.4074\n▁cinder\t-12.4074\n▁railhead\t-12.4074\n▁anti\t-12.4074\nNK\t-12.4074\n▁Jeze\t-12.4074\n▁Poor\t-12.4074\n▁pulse\t-12.4074\nchurn\t-12.4074\njah\t-12.4074\n▁Javan\t-12.4074\n▁Lud\t-12.4074\n▁subtilty\t-12.4074\n▁Job\t-12.4075\nagic\t-12.4075\n▁whale\t-12.4075\n▁factious\t-12.4075\n▁blunt\t-12.4075\n▁edified\t-12.4075\niggled\t-12.4075\n▁decade\t-12.4075\ntenance\t-12.4075\n▁Maha\t-12.4075\n▁hammer\t-12.4075\n▁rhythmic\t-12.4075\n▁Kid\t-12.4075\n▁concourse\t-12.4075\nbited\t-12.4075\nzzling\t-12.4075\n▁Zac\t-12.4075\n▁earshot\t-12.4075\n▁coco\t-12.4075\n▁hencefor\t-12.4075\n▁Dead\t-12.4075\n▁horseback\t-12.4075\n▁kin\t-12.4075\n▁Teach\t-12.4075\n▁oilcloth\t-12.4075\n▁Elisha\t-12.4075\n▁Padanaram\t-12.4075\n▁spectac\t-12.4075\n▁sheath\t-12.4075\n▁severity\t-12.4075\n▁embroiderer\t-12.4075\n▁Naaman\t-12.4075\n▁impu\t-12.4075\n▁stew\t-12.4075\n▁recall\t-12.4075\n▁flute\t-12.4075\n▁ownership\t-12.4075\n▁Irad\t-12.4075\n▁ancest\t-12.4075\n▁suggestions\t-12.4075\nbia\t-12.4075\nember\t-12.4075\nbula\t-12.4075\n▁foreship\t-12.4075\n▁Massa\t-12.4075\n▁Lyc\t-12.4075\n▁Carry\t-12.4075\n▁persuasive\t-12.4075\n▁rig\t-12.4075\n▁tripod\t-12.4075\nurvey\t-12.4076\n▁instant\t-12.4076\n▁Merc\t-12.4076\n▁trump\t-12.4076\n▁trench\t-12.4076\n▁Edomites\t-12.4076\nhites\t-12.4076\n▁meditation\t-12.4076\n▁detest\t-12.4076\n▁thankfulness\t-12.4076\nenser\t-12.4076\n▁calam\t-12.4076\n▁Beersheba\t-12.4076\nAT\t-12.4076\n▁tackl\t-12.4076\n▁Bridge\t-12.4076\n▁cookery\t-12.4076\n▁piss\t-12.4076\nosity\t-12.4076\n▁scalp\t-12.4076\n▁wavering\t-12.4076\n▁rebel\t-12.4076\n▁missionar\t-12.4076\n▁eff\t-12.4076\n▁removal\t-12.4076\n▁drear\t-12.4076\n▁Kir\t-12.4076\n▁wakeful\t-12.4076\n▁Kar\t-12.4076\n▁partial\t-12.4076\n▁grid\t-12.4076\n▁justifieth\t-12.4076\n▁speedily\t-12.4076\n▁beget\t-12.4076\nerceive\t-12.4076\n▁variance\t-12.4076\ncade\t-12.4076\negion\t-12.4076\n▁expression\t-12.4077\n▁cruelty\t-12.4077\n▁Naph\t-12.4077\n▁pomp\t-12.4077\n▁Hog\t-12.4077\nEasy\t-12.4077\n▁thunderings\t-12.4077\n▁riotous\t-12.4077\n▁history\t-12.4077\n▁transit\t-12.4077\n▁funny\t-12.4077\n▁theatre\t-12.4077\n▁confirmation\t-12.4077\n▁roadway\t-12.4077\n▁boyhood\t-12.4077\n▁Hermon\t-12.4077\n▁mineral\t-12.4077\nnaim\t-12.4077\n▁fuck\t-12.4077\n▁Hori\t-12.4077\n▁bondmen\t-12.4078\n▁rocket\t-12.4078\n▁policy\t-12.4078\n▁unholy\t-12.4078\n▁unseemly\t-12.4078\nnkle\t-12.4078\n▁gallery\t-12.4078\napolis\t-12.4078\n▁wavered\t-12.4078\n▁encourage\t-12.4078\n▁phoe\t-12.4078\n▁hop\t-12.4078\n▁alternate\t-12.4078\n▁Beriah\t-12.4078\n▁wariness\t-12.4078\n▁State\t-12.4078\n▁skirmish\t-12.4078\n▁Aram\t-12.4078\n▁parings\t-12.4078\n▁cling\t-12.4078\n▁Matthan\t-12.4078\nndron\t-12.4078\n▁Bow\t-12.4078\n▁axle\t-12.4078\npolis\t-12.4078\nilver\t-12.4078\n▁nea\t-12.4079\nccent\t-12.4079\n▁Lie\t-12.4079\n▁carrie\t-12.4079\n▁sparingly\t-12.4079\n▁politely\t-12.4079\n▁similarly\t-12.4079\nnnels\t-12.4079\n▁doubleminded\t-12.4079\n▁wrongfully\t-12.4079\n▁Shim\t-12.4079\n▁noisy\t-12.4079\nulation\t-12.4079\ngage\t-12.4079\n▁bump\t-12.4079\n▁suppertime\t-12.4079\n▁arising\t-12.4079\nguiltiness\t-12.4079\nabies\t-12.4079\n▁alongside\t-12.408\n▁dough\t-12.408\nuda\t-12.408\nddling\t-12.408\nonia\t-12.408\n▁acceptation\t-12.408\n▁grand\t-12.408\n▁Hadar\t-12.408\n▁Onesi\t-12.408\n▁chaste\t-12.4081\n▁promi\t-12.4081\neously\t-12.4081\n▁rill\t-12.4081\n▁fitting\t-12.4081\nacter\t-12.4081\n▁crunch\t-12.4081\n▁crust\t-12.4081\n▁gentleness\t-12.4081\n▁Rhe\t-12.4081\n▁gum\t-12.4082\n▁lam\t-12.4082\n▁mockers\t-12.4082\n▁hitherto\t-12.4082\n▁eag\t-12.4082\n▁collapsed\t-12.4082\n▁disbelieved\t-12.4082\n▁scabb\t-12.4082\n▁confi\t-12.4082\n▁surre\t-12.4083\n▁hello\t-12.4083\n▁Jah\t-12.4083\n▁attachment\t-12.4083\n▁boxes\t-12.4083\n▁china\t-12.4083\n▁identi\t-12.4083\n▁thankful\t-12.4084\n▁Tab\t-12.4084\noper\t-12.4084\n▁stings\t-12.4084\n▁attraction\t-12.4084\n▁Tryph\t-12.4084\n▁freeman\t-12.4085\n▁genealogy\t-12.4085\n▁bull\t-12.4085\n▁tighten\t-12.4085\n▁team\t-12.4085\n▁shaven\t-12.4085\n▁Gomer\t-12.4085\n▁mire\t-12.4085\nlene\t-12.4085\n▁fearfulness\t-12.4085\n▁gorgeous\t-12.4085\nriah\t-12.4086\n▁fume\t-12.4086\ngeon\t-12.4086\n▁honest\t-12.4086\n▁seduc\t-12.4086\n▁homeland\t-12.4086\n▁incl\t-12.4086\n▁tones\t-12.4087\n▁station\t-12.4087\n▁approvedness\t-12.4087\n▁earnestness\t-12.4087\n▁normal\t-12.4087\n▁alo\t-12.4087\n▁Cover\t-12.4087\n▁agent\t-12.4088\n▁flourisheth\t-12.4088\nchant\t-12.4089\n▁pew\t-12.4089\n▁soberness\t-12.4089\npilled\t-12.4089\n▁bedtime\t-12.4089\n▁backbone\t-12.409\neduc\t-12.409\nhorus\t-12.409\n▁Ken\t-12.409\nretty\t-12.409\nrubs\t-12.409\nAre\t-12.409\nrged\t-12.4091\n▁reconcil\t-12.4091\n▁assist\t-12.4091\n▁foes\t-12.4092\n▁chast\t-12.4092\n▁dau\t-12.4092\n▁scare\t-12.4092\n▁ledge\t-12.4092\ncientist\t-12.4093\n▁dreamily\t-12.4093\n▁belonging\t-12.4093\n▁embalmed\t-12.4093\n▁drowned\t-12.4093\n▁hesitated\t-12.4093\n▁butchered\t-12.4093\norci\t-12.4093\n▁underwear\t-12.4094\n▁cobbler\t-12.4094\n▁Mish\t-12.4094\nvoca\t-12.4094\nGoodness\t-12.4095\nisc\t-12.4095\n▁gloriest\t-12.4095\n▁Near\t-12.4095\n▁meta\t-12.4095\n▁Apple\t-12.4096\n▁sym\t-12.4096\n▁delicately\t-12.4098\n▁meekly\t-12.4098\n▁laughter\t-12.4098\n▁tamed\t-12.4098\n▁chasteneth\t-12.4098\n▁flapped\t-12.4098\n▁Elim\t-12.4098\n▁dealings\t-12.4099\n▁acquaint\t-12.4099\n▁Mib\t-12.4099\n▁tailor\t-12.41\n▁blaze\t-12.41\n▁familiar\t-12.41\n▁ordinary\t-12.41\n▁wreck\t-12.41\namous\t-12.4101\n▁Wind\t-12.4101\n▁cure\t-12.4102\neneration\t-12.4102\n▁thump\t-12.4102\n▁Fight\t-12.4103\nanim\t-12.4103\n▁firelight\t-12.4103\n▁defende\t-12.4103\n▁Majest\t-12.4103\n▁watchful\t-12.4103\n▁overboard\t-12.4103\nbsolution\t-12.4104\nallel\t-12.4104\n▁Obe\t-12.4104\n▁saddle\t-12.4104\nluc\t-12.4105\naffl\t-12.4105\n▁worshippeth\t-12.4106\noic\t-12.4106\narge\t-12.4106\nblossom\t-12.4106\n▁generally\t-12.4108\n▁sunris\t-12.4108\n▁ruff\t-12.4109\nyway\t-12.4109\nrban\t-12.411\n▁joyfully\t-12.4111\nrsel\t-12.4111\n▁lightened\t-12.4111\n▁striker\t-12.4111\nAvery\t-12.4111\nanging\t-12.4112\n▁unity\t-12.4112\n▁perfection\t-12.4113\nwilling\t-12.4113\n▁copies\t-12.4113\n▁endeavors\t-12.4113\n▁feathers\t-12.4113\n▁morals\t-12.4113\n▁palaces\t-12.4113\n▁politics\t-12.4113\n▁proselytes\t-12.4113\n▁symbols\t-12.4113\neyond\t-12.4113\n▁convers\t-12.4113\n▁Mana\t-12.4114\n▁rambl\t-12.4115\nsiah\t-12.4115\nhepherd\t-12.4115\n▁Alexandrian\t-12.4115\n▁mites\t-12.4116\n▁bored\t-12.4116\nighteous\t-12.4116\n▁Boy\t-12.4116\n▁scour\t-12.4119\n▁unbeliever\t-12.4119\n▁thereupon\t-12.4121\nsorry\t-12.4123\nesis\t-12.4123\n▁penny\t-12.4123\nplanted\t-12.4123\n▁fisherm\t-12.4124\njack\t-12.4124\n▁decrease\t-12.4124\n▁cult\t-12.4126\n▁assuredly\t-12.4127\n▁gloriously\t-12.4127\ncol\t-12.4127\n▁scattereth\t-12.4127\n▁licked\t-12.4127\n▁dismissed\t-12.4127\n▁carcase\t-12.4127\n▁drunkard\t-12.4128\n▁complained\t-12.4128\n▁reviler\t-12.4129\n▁lackest\t-12.4129\n▁whistling\t-12.413\n▁contem\t-12.413\nburger\t-12.413\n▁complaining\t-12.413\n▁mom\t-12.4131\n▁Had\t-12.4132\ninter\t-12.4133\n▁baptizeth\t-12.4133\n▁pyr\t-12.4134\n▁wedding\t-12.4135\n▁project\t-12.4135\n▁Joy\t-12.4135\nripe\t-12.4138\n▁lick\t-12.4139\nevolution\t-12.414\n▁mouthful\t-12.414\n▁dries\t-12.4141\n▁spy\t-12.4143\nlunta\t-12.4143\n▁constant\t-12.4143\n▁Ach\t-12.4144\n▁quench\t-12.4144\n▁pathetic\t-12.4146\n▁becomingly\t-12.4146\n▁faileth\t-12.4146\n▁draft\t-12.4147\n▁summ\t-12.4148\n▁dar\t-12.4148\n▁sling\t-12.4148\n▁explod\t-12.4148\n▁Shil\t-12.4148\n▁TH\t-12.4149\n▁compare\t-12.4151\n▁Wash\t-12.4152\n▁earlie\t-12.4152\n▁abhorre\t-12.4153\n▁local\t-12.4155\nquality\t-12.4156\narsely\t-12.4156\n▁heartily\t-12.4156\nqui\t-12.4157\n▁Aren\t-12.4158\nffer\t-12.4159\n▁Phu\t-12.416\nouching\t-12.4161\nesture\t-12.4162\n▁encountered\t-12.4162\n▁mansion\t-12.4164\n▁thereabout\t-12.4167\n▁missing\t-12.4168\n▁excused\t-12.4168\n▁fastness\t-12.4169\n▁swamp\t-12.4169\n▁brightest\t-12.4172\n▁nicely\t-12.4175\nnon\t-12.4175\n▁Ze\t-12.4175\nurning\t-12.4176\n▁glare\t-12.4177\n▁Nan\t-12.4179\nrks\t-12.4179\n▁ramp\t-12.418\nrped\t-12.4181\n▁hillsides\t-12.4182\n▁elbows\t-12.4182\n▁poplars\t-12.4182\n▁scorpions\t-12.4182\n▁aprons\t-12.4182\n▁citizens\t-12.4182\ncontrolled\t-12.4183\n▁belongings\t-12.4183\n▁payments\t-12.4187\nymen\t-12.4188\nyear\t-12.4188\n▁highways\t-12.4188\n▁outright\t-12.4188\n▁ref\t-12.4189\nffed\t-12.4189\n▁legion\t-12.419\nvenge\t-12.4192\n▁proudly\t-12.4195\n▁readest\t-12.4195\nlunchtime\t-12.4195\n▁witch\t-12.4195\n▁hangeth\t-12.4195\n▁archer\t-12.4196\n▁remarked\t-12.4196\n▁someday\t-12.4198\n▁vowed\t-12.4199\nAlon\t-12.4202\n▁stare\t-12.4203\n▁lesson\t-12.4203\nmely\t-12.4203\n▁despairing\t-12.4205\n▁inventing\t-12.4205\n▁ev\t-12.4209\nwoods\t-12.4209\nnuts\t-12.4209\n▁wrestling\t-12.421\n▁sadly\t-12.421\n▁weakling\t-12.4211\n▁gear\t-12.4215\n▁faster\t-12.4218\n▁Phil\t-12.4219\n▁miser\t-12.4219\n▁hasn\t-12.422\n▁impos\t-12.422\nngular\t-12.4221\n▁stunt\t-12.4221\n▁Beor\t-12.4222\n▁uncover\t-12.4225\n▁awaked\t-12.4226\n▁paces\t-12.4228\n▁Rest\t-12.4228\n▁Israelites\t-12.4231\n▁consol\t-12.4231\n▁included\t-12.4233\n▁admoni\t-12.4239\n▁plu\t-12.4242\nball\t-12.4248\norehouses\t-12.4252\n▁wickedly\t-12.4253\n▁guests\t-12.4253\n▁bishops\t-12.4253\n▁patriarchs\t-12.4253\n▁results\t-12.4253\n▁benefits\t-12.4253\n▁ewes\t-12.4253\n▁factions\t-12.4255\n▁dispos\t-12.4258\n▁reput\t-12.4258\n▁washings\t-12.4259\n▁Spid\t-12.4259\n▁nast\t-12.4265\nboards\t-12.4266\nstones\t-12.4268\nworks\t-12.4271\nfied\t-12.4274\nTER\t-12.4277\n▁dissipat\t-12.4278\n▁decomposed\t-12.4279\n▁gnawing\t-12.428\n▁coveting\t-12.4283\ndetermin\t-12.4284\n▁grassy\t-12.4285\n▁Ked\t-12.429\nallows\t-12.4291\n▁aboundeth\t-12.4291\n▁secretly\t-12.4293\nband\t-12.4295\n▁boiled\t-12.4297\ntay\t-12.4301\n▁Nor\t-12.4304\n▁bin\t-12.4317\n▁dre\t-12.4318\n▁blasphemer\t-12.4325\n▁candles\t-12.4325\n▁ranks\t-12.4326\n▁Tir\t-12.4326\n▁railings\t-12.4327\n▁repenteth\t-12.433\n▁sorely\t-12.4331\n▁departeth\t-12.4333\n▁cries\t-12.4338\nlay\t-12.4339\n▁reigneth\t-12.434\n▁sharply\t-12.4342\n▁stag\t-12.4343\n▁forbearing\t-12.4353\n▁weeds\t-12.4354\n▁Dis\t-12.4359\nhips\t-12.4362\n▁lawfully\t-12.4368\n▁Hot\t-12.4375\naves\t-12.4376\n▁warmth\t-12.4379\n▁breaketh\t-12.4393\n▁twisting\t-12.4395\n▁sheets\t-12.4398\n▁tumults\t-12.4399\n▁instructions\t-12.44\n▁poorly\t-12.4402\ngree\t-12.4409\n▁consented\t-12.4413\n▁afoot\t-12.4423\nwailed\t-12.4423\n▁aboard\t-12.4427\n▁preferr\t-12.4432\n▁rouse\t-12.4443\n▁jet\t-12.4446\nrock\t-12.4454\n▁Cos\t-12.4459\n▁fou\t-12.4466\n▁planning\t-12.4469\n▁labours\t-12.4472\n▁balloons\t-12.4474\n▁belt\t-12.4483\nshearer\t-12.4484\n▁airy\t-12.4485\n▁duel\t-12.4488\n▁Arch\t-12.4502\n▁clapp\t-12.4504\n▁activit\t-12.4507\n▁test\t-12.4521\n▁sleepy\t-12.4533\n▁signal\t-12.454\n▁plots\t-12.4543\n▁vig\t-12.4545\n▁bullocks\t-12.4547\n▁enjoin\t-12.455\n▁platters\t-12.4552\n▁Abia\t-12.4556\n▁lusted\t-12.4564\n▁seedling\t-12.4568\n▁killings\t-12.4568\n▁retain\t-12.4569\n▁bloo\t-12.4569\n▁ge\t-12.4573\n▁Hada\t-12.4577\n▁reaped\t-12.4598\n▁rendered\t-12.4601\n▁kne\t-12.4661\nvity\t-12.4667\n▁Sm\t-12.4672\n▁praised\t-12.4707\narcel\t-12.4708\n▁dism\t-12.473\n▁Pau\t-12.4751\nconsider\t-12.477\n▁marking\t-12.4789\n▁popula\t-12.479\n▁farth\t-12.479\nchem\t-12.4795\n▁residen\t-12.4797\nactors\t-12.4814\nacked\t-12.483\nthere\t-12.4833\nAB\t-12.4847\nporter\t-12.4853\nLa\t-12.4862\nsters\t-12.4867\numbled\t-12.4911\nhad\t-12.4915\n▁agenc\t-12.4921\nraggle\t-12.4947\ngation\t-12.4951\n▁sanctifie\t-12.4989\ncity\t-12.4989\n▁radian\t-12.5018\nudg\t-12.5043\nbalanc\t-12.5048\nency\t-12.5058\n▁lengthen\t-12.5062\n▁husk\t-12.5103\n▁blur\t-12.5109\n▁weaken\t-12.5126\nfallen\t-12.515\ntines\t-12.5183\ntac\t-12.5191\n▁gunfi\t-12.5234\n▁mini\t-12.5251\ntwee\t-12.5268\nlative\t-12.5324\nhip\t-12.5362\nrich\t-12.539\nrake\t-12.5394\nescend\t-12.5395\ngratulation\t-12.5429\n▁distresse\t-12.5437\njourn\t-12.5455\n▁kni\t-12.5457\n▁paint\t-12.5518\n▁Mesh\t-12.5525\n▁ripp\t-12.5587\n▁distribut\t-12.5597\nays\t-12.5656\nral\t-12.5715\n▁Alva\t-12.5722\n▁gar\t-12.5723\n▁blo\t-12.5727\n▁trou\t-12.5749\nEver\t-12.5781\n▁morta\t-12.5817\n▁watche\t-12.586\nex\t-12.5894\n▁carpe\t-12.6038\n▁quali\t-12.6063\ninformed\t-12.6067\n▁contra\t-12.6074\nlets\t-12.6161\ngin\t-12.6165\nnches\t-12.6186\n▁dainti\t-12.6194\n▁unmo\t-12.6195\n▁ba\t-12.6205\ngi\t-12.6246\nair\t-12.6268\n▁relat\t-12.6274\n▁sla\t-12.6301\nTry\t-12.6349\nnish\t-12.6357\nttle\t-12.6368\n▁aveng\t-12.6394\npar\t-12.6431\nfighters\t-12.6493\noch\t-12.6504\n▁non\t-12.6511\n▁obs\t-12.6521\n▁naviga\t-12.6547\n▁invite\t-12.6556\nview\t-12.6573\ncomposed\t-12.6642\nefraud\t-12.6685\n▁sca\t-12.6837\nhen\t-12.691\norseshoe\t-12.6985\nrang\t-12.699\n▁protect\t-12.7045\n▁welcom\t-12.7089\nust\t-12.71\n▁Cre\t-12.712\niving\t-12.7188\normwood\t-12.7303\nana\t-12.7344\nclusive\t-12.7346\n▁dam\t-12.7437\n▁humm\t-12.7453\n▁dep\t-12.7457\nopping\t-12.7478\nbag\t-12.7553\ntasting\t-12.7757\noz\t-12.7881\naving\t-12.7946\n▁impr\t-12.7968\n▁pac\t-12.7975\n▁elevat\t-12.801\n▁compensat\t-12.8018\nnuel\t-12.8029\nnstead\t-12.8051\n▁Mel\t-12.8123\nadd\t-12.8257\nmock\t-12.8411\nphras\t-12.8512\nether\t-12.8513\n▁exclu\t-12.8561\n▁epi\t-12.8715\n▁principalit\t-12.8755\nhereunto\t-12.8768\nformation\t-12.8775\nevil\t-12.8791\n▁prote\t-12.8823\nize\t-12.8857\n▁Creat\t-12.8869\nshoe\t-12.8929\nawl\t-12.8994\npot\t-12.9071\nwed\t-12.9102\nllows\t-12.9111\nudder\t-12.9134\nbat\t-12.9136\nbon\t-12.9155\n▁protecti\t-12.9224\n▁Rep\t-12.9308\n▁entic\t-12.9312\nfraud\t-12.9356\nck\t-12.9371\n▁endur\t-12.9414\n▁compose\t-12.9523\nioch\t-12.953\n▁navigati\t-12.9536\nmove\t-12.9655\n▁persuade\t-12.9699\nrk\t-12.9726\n▁Po\t-12.9814\nomantic\t-12.9883\n▁snatche\t-12.9899\n▁conc\t-12.9974\nvo\t-13.0007\n▁daint\t-13.0026\nLO\t-13.0041\nunic\t-13.0095\nushim\t-13.0136\nlotted\t-13.016\nphra\t-13.0209\nAM\t-13.024\n▁measur\t-13.0276\nbits\t-13.0286\n▁purpos\t-13.0332\nelect\t-13.0341\n▁Revi\t-13.0361\narrow\t-13.0389\n▁enrol\t-13.0477\nmali\t-13.0506\nignity\t-13.0713\n▁na\t-13.0891\n▁treati\t-13.0955\nripping\t-13.0966\narba\t-13.1004\nacle\t-13.1061\nolent\t-13.1138\n▁adjo\t-13.1167\nscend\t-13.1168\n▁slack\t-13.1238\n▁bewail\t-13.1328\n▁grip\t-13.1425\n▁compelle\t-13.1434\n▁exalte\t-13.144\ntching\t-13.1469\nnction\t-13.1489\n▁Writ\t-13.1525\n▁acknowledg\t-13.1548\n▁gla\t-13.1594\n▁mode\t-13.1599\n▁lin\t-13.1763\n▁vainglor\t-13.1803\nkite\t-13.1832\n▁Bac\t-13.1833\n▁mids\t-13.1877\nammi\t-13.188\n▁pudd\t-13.1894\n▁radia\t-13.1928\n▁divin\t-13.1943\nPre\t-13.195\nstyles\t-13.1966\n▁rele\t-13.1984\n▁temp\t-13.2003\n▁Immediate\t-13.2061\n▁guid\t-13.2062\ntographe\t-13.2071\n▁hi\t-13.2111\neasing\t-13.2152\n▁nois\t-13.218\nruption\t-13.2191\ntrot\t-13.2246\nmble\t-13.2281\nggle\t-13.2291\nvah\t-13.2351\n▁Li\t-13.2384\n▁squ\t-13.2394\n▁deci\t-13.2396\nhab\t-13.2487\nteller\t-13.2619\n▁reli\t-13.2628\n▁heav\t-13.2756\nnow\t-13.2772\npops\t-13.281\n▁refer\t-13.2814\n▁Mac\t-13.2875\n▁blasphem\t-13.2888\n▁Byron\t-13.294\n▁loc\t-13.2959\n▁proposi\t-13.297\nemarkable\t-13.3045\nbakers\t-13.3055\n▁Ex\t-13.3058\n▁separat\t-13.3098\ngro\t-13.3108\nSpring\t-13.3137\nquarters\t-13.3191\nuc\t-13.3192\nJach\t-13.3217\nshares\t-13.323\npockets\t-13.3309\n▁Straight\t-13.3336\n▁nu\t-13.3339\nreaching\t-13.336\nrley\t-13.3384\nooted\t-13.3402\nplicat\t-13.3408\n▁plac\t-13.342\n▁Atta\t-13.344\ndresse\t-13.3444\nmaker\t-13.3451\nracker\t-13.3452\ncovered\t-13.3467\ncca\t-13.3474\nwise\t-13.348\ngger\t-13.3493\n▁Tema\t-13.3495\narry\t-13.3499\npine\t-13.3501\nTi\t-13.3518\ncounting\t-13.354\n▁Dio\t-13.3541\nmount\t-13.355\n▁spo\t-13.3568\nsipate\t-13.3584\npiders\t-13.3602\n▁Whoso\t-13.3604\nuddy\t-13.3618\n▁simpli\t-13.362\n▁esc\t-13.3643\nomen\t-13.3644\n▁chang\t-13.3646\nadmonit\t-13.365\nmaids\t-13.3681\nthrus\t-13.3685\nickle\t-13.3697\n▁northw\t-13.3732\n▁Arc\t-13.3741\ngaining\t-13.3778\n▁Step\t-13.3786\nhanging\t-13.3789\nppers\t-13.3806\nemon\t-13.3807\npecial\t-13.3835\n▁circ\t-13.3837\nuary\t-13.3848\n▁plat\t-13.3855\nticks\t-13.3859\nekah\t-13.3861\n▁unfo\t-13.3861\nuckle\t-13.3867\n▁priv\t-13.3869\n▁abhor\t-13.3874\nual\t-13.3878\n▁hoar\t-13.3879\n▁comp\t-13.388\n▁reconcili\t-13.3883\nBa\t-13.3893\n▁conver\t-13.3897\nnstantly\t-13.3897\n▁rub\t-13.3901\npra\t-13.3908\n▁unbeliev\t-13.3916\n▁fac\t-13.3919\nlute\t-13.3923\nchange\t-13.3924\npti\t-13.393\n▁contemp\t-13.3931\nbearing\t-13.3937\n▁carcas\t-13.3937\nvented\t-13.3938\n▁Buck\t-13.394\nwake\t-13.3942\neaten\t-13.3942\n▁clap\t-13.3959\nburg\t-13.3961\nkin\t-13.3961\ncreased\t-13.3963\n▁bruis\t-13.3964\nppoint\t-13.3964\npostle\t-13.3966\nlready\t-13.3967\ngive\t-13.397\n▁endeavor\t-13.3973\nG\t-13.3994\nZ\t-13.4019\nq\t-14.7832\n“\t-14.7833\n"
  },
  {
    "path": "a4/utils.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n\"\"\"\nCS224N 2020-21: Homework 4\nnmt.py: NMT Model\nPencheng Yin <pcyin@cs.cmu.edu>\nSahil Chopra <schopra8@stanford.edu>\nVera Lin <veralin@stanford.edu>\n\"\"\"\n\nimport math\nfrom typing import List\n\nimport numpy as np\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nimport nltk\nimport sentencepiece as spm\nnltk.download('punkt')\n\n\ndef pad_sents(sents, pad_token):\n    \"\"\" Pad list of sentences according to the longest sentence in the batch.\n        The paddings should be at the end of each sentence.\n    @param sents (list[list[str]]): list of sentences, where each sentence\n                                    is represented as a list of words\n    @param pad_token (str): padding token\n    @returns sents_padded (list[list[str]]): list of sentences where sentences shorter\n        than the max length sentence are padded out with the pad_token, such that\n        each sentences in the batch now has equal length.\n    \"\"\"\n    sents_padded = []\n\n    ### YOUR CODE HERE (~6 Lines)\n    max_length = max([len(sent) for sent in sents]) # or max_length = max(map(len, sents))\n    for sent in sents:\n        pad_length = max_length - len(sent)\n        sents_padded.append(sent + [pad_token] * pad_length)\n    ### END YOUR CODE\n\n    return sents_padded\n\n\ndef read_corpus(file_path, source, vocab_size=2500):\n    \"\"\" Read file, where each sentence is dilineated by a `\\n`.\n    @param file_path (str): path to file containing corpus\n    @param source (str): \"tgt\" or \"src\" indicating whether text\n        is of the source language or target language\n    @param vocab_size (int): number of unique subwords in\n        vocabulary when reading and tokenizing\n    \"\"\"\n    data = []\n    sp = spm.SentencePieceProcessor()\n    sp.load('{}.model'.format(source))\n\n    with open(file_path, 'r', encoding='utf8') as f:\n        for line in f:\n            subword_tokens = sp.encode_as_pieces(line)\n            # only append <s> and </s> to the target sentence\n            if source == 'tgt':\n                subword_tokens = ['<s>'] + subword_tokens + ['</s>']\n            data.append(subword_tokens)\n\n    return data\n\n\ndef autograder_read_corpus(file_path, source):\n    \"\"\" Read file, where each sentence is dilineated by a `\\n`.\n    @param file_path (str): path to file containing corpus\n    @param source (str): \"tgt\" or \"src\" indicating whether text\n        is of the source language or target language\n    \"\"\"\n    data = []\n    for line in open(file_path):\n        sent = nltk.word_tokenize(line)\n        # only append <s> and </s> to the target sentence\n        if source == 'tgt':\n            sent = ['<s>'] + sent + ['</s>']\n        data.append(sent)\n\n    return data\n\n\ndef batch_iter(data, batch_size, shuffle=False):\n    \"\"\" Yield batches of source and target sentences reverse sorted by length (largest to smallest).\n    @param data (list of (src_sent, tgt_sent)): list of tuples containing source and target sentence\n    @param batch_size (int): batch size\n    @param shuffle (boolean): whether to randomly shuffle the dataset\n    \"\"\"\n    batch_num = math.ceil(len(data) / batch_size)\n    index_array = list(range(len(data)))\n\n    if shuffle:\n        np.random.shuffle(index_array)\n\n    for i in range(batch_num):\n        indices = index_array[i * batch_size: (i + 1) * batch_size]\n        examples = [data[idx] for idx in indices]\n\n        examples = sorted(examples, key=lambda e: len(e[0]), reverse=True)\n        src_sents = [e[0] for e in examples]\n        tgt_sents = [e[1] for e in examples]\n\n        yield src_sents, tgt_sents\n\n"
  },
  {
    "path": "a4/vocab.json",
    "content": "{\n  \"src_word2id\": {\n    \"<pad>\": 0,\n    \"<s>\": 1,\n    \"</s>\": 2,\n    \"<unk>\": 3,\n    \",\": 4,\n    \".\": 5,\n    \"\\u2581\\u13a0\\u13b4\": 6,\n    \"\\u2581\\u13be\\u13cd\\u13a9\": 7,\n    \";\": 8,\n    \"\\u13c3\": 9,\n    \"\\u2581\\u13af\\u13a0\": 10,\n    \"\\u2581\\u13a8\\u13d2\": 11,\n    \"\\u2581\": 12,\n    \"\\u13a2\": 13,\n    \"\\u2581\\u13a5\\u13dd\": 14,\n    \"\\u2581\\u13a8\\u13d2\\u13a2\": 15,\n    \"\\u13f0\\u13c3\": 16,\n    \"\\u13a9\": 17,\n    \"\\u2581\\u13a8\\u13ce\\u13cd\\u13d7\": 18,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13c5\\u13af\": 19,\n    \"?\": 20,\n    \"\\u2581\\u13c3\\u13b4\": 21,\n    \"\\u2581\\u13a4\": 22,\n    \"\\u2581\\u13a0\": 23,\n    \"\\u2581\\u13f4\\u13eb\": 24,\n    \"\\u13c9\": 25,\n    \"\\u13d7\": 26,\n    \"\\u201d\": 27,\n    \"\\u13af\": 28,\n    \"\\u2581\\u13a9\\u13b6\": 29,\n    \"\\u2581\\u13be\\u13cd\\u13c9\": 30,\n    \"\\u2581\\u13a2\\u13f3\\u13cd\\u13d7\": 31,\n    \"\\u2581\\u13be\\u13bf\": 32,\n    \"\\u2581\\u13be\\u13cd\\u13a9\\u13ef\": 33,\n    \"\\u2060\": 34,\n    \"\\u2581\\u13a0\\u13ce\\u13c3\": 35,\n    \"\\u2581\\u13a0\\u13f4\": 36,\n    \"\\u13ad\": 37,\n    \"\\u2581\\u13f1\\u13a9\": 38,\n    \"\\u2581\\u13be\": 39,\n    \"-\": 40,\n    \"\\u2581\\u13e5\\u13a9\": 41,\n    \"\\u2581\\u13f1\\u13b0\\u13e9\": 42,\n    \"\\u2581\\u13aa\\u13b1\\u13cd\\u13d7\": 43,\n    \"\\u2581\\u13c2\\u13a6\\u13db\": 44,\n    \"\\u2581\\u13c2\\u13af\": 45,\n    \"\\u2581\\u13a2\\u13a6\": 46,\n    \"\\u2581\\u13a4\\u13ac\\u13eb\\u13f3\\u13af\": 47,\n    \"\\u2581\\u13e5\\u13cc\": 48,\n    \"\\u2581\\u13c2\\u13a8\\u13d2\\u13be\": 49,\n    \"\\u13f1\": 50,\n    \"\\u2581\\u201c\": 51,\n    \"\\u13be\": 52,\n    \"\\u13cd\\u13a9\\u13c2\": 53,\n    \"\\u2581\\u13a3\\u13cd\\u13db\": 54,\n    \"\\u13db\": 55,\n    \"\\u2581\\u13af\\u13a0\\u13c3\": 56,\n    \"\\u13cd\\u13d7\": 57,\n    \"\\u2581\\u13a4\\u13ea\\u13e5\": 58,\n    \"\\u2581\\u13e7\": 59,\n    \"\\u2581\\u13d7\": 60,\n    \"\\u2581\\u13a2\\u13f3\\u13c3\": 61,\n    \"\\u2581\\u13be\\u13cd\\u13a9\\u13c3\": 62,\n    \"\\u2581\\u13e7\\u13ea\\u13e5\": 63,\n    \"\\u2581\\u13a6\\u13b6\\u13c1\\u13db\": 64,\n    \"\\u2581\\u13c4\\u13ea\\u13ce\\u13a2\": 65,\n    \"\\u13d3\": 66,\n    \"\\u2581\\u13bf\\u13c9\": 67,\n    \"\\u2581\\u13a1\\u13b6\\u13af\": 68,\n    \"\\u2581\\u13de\\u13cd\\u13d7\": 69,\n    \"\\u2581\\u13e5\": 70,\n    \"\\u2581\\u13a0\\u13c2\": 71,\n    \"\\u2581\\u13a8\\u13cd\\u13d7\": 72,\n    \"\\u2581\\u13bf\\u13c9\\u13c3\": 73,\n    \"\\u2581\\u13a4\\u13f2\": 74,\n    \"\\u13a6\": 75,\n    \"\\u2581\\u13a4\\u13db\\u13c1\": 76,\n    \"\\u2581\\u13e3\": 77,\n    \"!\": 78,\n    \"\\u2581\\u13a4\\u13e3\\u13d8\": 79,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\": 80,\n    \"\\u2581\\u13f1\": 81,\n    \"\\u2581\\u13da\": 82,\n    \"\\u2581\\u201d\": 83,\n    \"\\u2581\\u13eb\\u13b5\\u13bb\": 84,\n    \"\\u2581\\u13be\\u13af\\u13f3\": 85,\n    \"\\u2581\\u13c2\\u13a6\\u13a5\": 86,\n    \"\\u2581\\u13ac\\u13c2\\u13a8\\u13d2\": 87,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13ef\": 88,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\\u13d7\\u13f3\": 89,\n    \"\\u2581\\u13ac\\u13c2\\u13f3\\u13c9\": 90,\n    \"\\u2581\\u13c4\\u13cd\\u13db\": 91,\n    \"\\u2581\\u13a6\\u13d9\": 92,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13db\": 93,\n    \"\\u13c2\": 94,\n    \"\\u2581\\u13a1\\u13af\": 95,\n    \"\\u2581\\u13a4\\u13e9\\u13d2\": 96,\n    \"\\u2581\\u13a0\\u13c1\\u13af\": 97,\n    \"\\u2581\\u13a6\\u13b8\\u13b3\\u13d7\": 98,\n    \"\\u2581\\u13a0\\u13f0\\u13b5\": 99,\n    \"\\u13c5\": 100,\n    \"\\u2581\\u13a0\\u13d5\\u13b8\": 101,\n    \"\\u2581\\u13a8\\u13ce\\u13a2\": 102,\n    \"\\u2581\\u13a4\\u13e4\\u13b5\": 103,\n    \"\\u2581\\u13cc\\u13c9\": 104,\n    \"\\u2581\\u13f0\\u13b5\": 105,\n    \"\\u2581\\u13a4\\u13e4\\u13b5\\u13a6\": 106,\n    \"\\u2581\\u13a0\\u13b9\": 107,\n    \"\\u2581\\u13a2\\u13e3\": 108,\n    \"\\u2581\\u13a2\\u13f4\\u13db\": 109,\n    \"\\u13a8\": 110,\n    \"\\u13d7\\u13f1\": 111,\n    \"\\u2581\\u13a4\\u13c2\": 112,\n    \"\\u13cf\": 113,\n    \"\\u13b8\": 114,\n    \"\\u13b5\": 115,\n    \"\\u2581\\u13be\\u13c2\\u13a5\": 116,\n    \"\\u2581\\u13a2\": 117,\n    \"\\u2581\\u13a3\\u13cf\\u13f3\": 118,\n    \"\\u2581\\u13a0\\u13ce\": 119,\n    \"\\u13f3\": 120,\n    \"\\u2581\\u13a6\\u13d9\\u13af\": 121,\n    \"\\u2581\\u13d4\\u13b5\": 122,\n    \"\\u2581\\u13a2\\u13cf\\u13b5\": 123,\n    \"\\u2581[\": 124,\n    \"\\u13b4\": 125,\n    \"\\u2581\\u13a4\\u13df\": 126,\n    \"]\": 127,\n    \"\\u2581\\u13aa\\u13af\": 128,\n    \"\\u2581\\u13d7\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 129,\n    \"\\u2581\\u13af\": 130,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d9\": 131,\n    \"\\u2581\\u13a3\\u13cd\\u13d3\": 132,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13ef\": 133,\n    \"\\u13d2\": 134,\n    \"\\u2581\\u13d3\": 135,\n    \"\\u2581\\u13a8\\u13ce\": 136,\n    \"\\u2581\\u13a2\\u13e5\\u13c8\\u13f1\": 137,\n    \"\\u2581\\u13d4\\u13b5\\u13c1\": 138,\n    \"\\u2581\\u13bc\\u13cf\": 139,\n    \"\\u13b2\": 140,\n    \"\\u13cd\\u13aa\": 141,\n    \"\\u2581\\u13a6\": 142,\n    \"\\u2581\\u13a2\\u13f3\": 143,\n    \"\\u2581\\u13a8\\u13d2\\u13a9\": 144,\n    \"\\u2581\\u13ac\\u13e9\": 145,\n    \"\\u2581\\u2060\": 146,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\": 147,\n    \"\\u2581\\u13a2\\u13ac\\u13f1\": 148,\n    \"\\u2581\\u13e4\\u13a6\\u13c8\": 149,\n    \"\\u2581\\u13da\\u13f3\\u13aa\\u13db\": 150,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13d8\": 151,\n    \"\\u2581\\u13a1\\u13b3\\u13d7\": 152,\n    \"\\u2581\\u13a1\\u13c6\\u13ad\\u13bb\": 153,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 154,\n    \"\\u2581\\u13a6\\u13d9\\u13c3\": 155,\n    \"\\u2581\\u13a0\\u13eb\": 156,\n    \"\\u13cd\\u13a9\": 157,\n    \"\\u2581\\u13f3\": 158,\n    \":\": 159,\n    \"\\u13a8\\u13cd\\u13d7\": 160,\n    \"\\u2581\\u13a2\\u13d7\\u13e2\": 161,\n    \"\\u2581\\u13e9\\u13a6\": 162,\n    \"\\u13a0\": 163,\n    \"\\u2581\\u13c7\\u13b5\\u13f2\": 164,\n    \"\\u2581\\u13eb\": 165,\n    \"\\u2581\\u13cf\\u13c6\": 166,\n    \"\\u2581\\u13a0\\u13a8\\u13f4\": 167,\n    \"\\u2581\\u13f2\\u13be\": 168,\n    \"\\u13ac\": 169,\n    \"\\u2581\\u13a4\\u13be\": 170,\n    \"\\u2581\\u13e6\\u13e9\": 171,\n    \"\\u2581\\u13cc\\u13b3\\u13d3\": 172,\n    \"\\u13aa\": 173,\n    \"\\u2581\\u13a0\\u13cf\": 174,\n    \"\\u2581\\u13be\\u13a5\": 175,\n    \"\\u13d9\\u13d7\": 176,\n    \"\\u2581\\u13c4\\u13ea\\u13d2\\u13a9\": 177,\n    \"\\u2581\\u13c5\\u13a9\": 178,\n    \"\\u2581\\u13c4\\u13ea\\u13ce\\u13b4\\u13a2\": 179,\n    \"\\u2581\\u13c2\\u13a6\\u13d3\": 180,\n    \"\\u2581\\u13ed\": 181,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c5\\u13db\": 182,\n    \"\\u2581\\u13f1\\u13a8\\u13ce\\u13cd\\u13d7\": 183,\n    \"\\u2581\\u13e6\\u13a2\": 184,\n    \"\\u13ef\": 185,\n    \"\\u2581\\u13a2\\u13e5\": 186,\n    \"\\u13c1\": 187,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13af\\u13ef\": 188,\n    \"\\u2581\\u13e5\\u13cc\\u13c3\": 189,\n    \"\\u2581\\u13c5\\u13ef\": 190,\n    \"\\u13e5\": 191,\n    \"\\u2581\\u13c2\\u13da\\u13ea\\u13ce\\u13b4\\u13a2\": 192,\n    \"\\u2581\\u13ef\": 193,\n    \"\\u2581\\u13a6\\u13da\": 194,\n    \"\\u2581\\u13d0\\u13c8\\u13b5\": 195,\n    \"\\u2581\\u13dd\\u13cd\\u13aa\": 196,\n    \"\\u2581\\u13a0\\u13c2\\u13e7\\u13cf\": 197,\n    \"\\u2581\\u13c4\": 198,\n    \"\\u2581\\u13e3\\u13ac\\u13eb\\u13f3\\u13af\": 199,\n    \"\\u2581\\u13a4\\u13ac\\u13e9\\u13b5\": 200,\n    \"\\u13ce\": 201,\n    \"\\u2581\\u13e7\\u13e4\\u13b5\": 202,\n    \"\\u2581\\u13c2\": 203,\n    \"\\u2581\\u13a6\\u13b5\\u13c9\\u13a9\": 204,\n    \"\\u2581\\u13d3\\u13b6\\u13c2\\u13a8\": 205,\n    \"\\u2581\\u13ac\": 206,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13af\": 207,\n    \"\\u2581\\u13c4\\u13ea\\u13ce\\u13b8\\u13a9\": 208,\n    \"\\u13cd\\u13ac\": 209,\n    \"\\u2581\\u13a1\\u13cd\\u13a6\": 210,\n    \"\\u2581\\u13a6\\u13aa\": 211,\n    \"\\u2581\\u13c2\\u13a6\\u13d7\\u13f3\": 212,\n    \"\\u2581\\u13a2\\u13e7\\u13b3\\u13ad\": 213,\n    \"\\u2581\\u13ac\\u13d7\": 214,\n    \"\\u2581\\u13c2\\u13aa\\u13af\\u13b8\": 215,\n    \"\\u2581\\u13f0\\u13b5\\u13c9\": 216,\n    \"\\u13ae\": 217,\n    \"\\u2581\\u13a6\\u13d3\": 218,\n    \"\\u13b3\": 219,\n    \"\\u2581\\u13a8\": 220,\n    \"\\u2581\\u13a0\\u13c6\": 221,\n    \"\\u2581\\u13a0\\u13d3\": 222,\n    \"\\u2581\\u13a4\\u13d9\\u13d3\": 223,\n    \"\\u2581\\u13da\\u13c2\": 224,\n    \"\\u2581\\u13c8\\u13d3\": 225,\n    \"\\u2581\\u13a3\\u13c2\": 226,\n    \"\\u2581\\u13c4\\u13ea\\u13ce\\u13b4\": 227,\n    \"\\u2581\\u13a4\\u13e4\\u13cd\\u13d9\": 228,\n    \"\\u2581\\u13d5\": 229,\n    \"\\u2581\\u13e5\\u13b7\\u13cf\\u13b5\\u13bb\": 230,\n    \"\\u2581\\u13c2\\u13da\\u13ea\\u13ce\\u13b8\\u13a9\": 231,\n    \"\\u2581\\u13a0\\u13cf\\u13c9\": 232,\n    \"\\u2581\\u13e3\\u13c2\": 233,\n    \"\\u2581\\u13a6\\u13da\\u13b2\": 234,\n    \"\\u2581\\u13a1\": 235,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13ad\": 236,\n    \"\\u2581\\u13a0\\u13c2\\u13a8\\u13f4\": 237,\n    \"\\u2581\\u13ac\\u13c2\": 238,\n    \"\\u2581\\u13a4\\u13c5\\u13d2\": 239,\n    \"\\u2581\\u13a2\\u13a9\": 240,\n    \"\\u2581\\u13aa\\u13ea\\u13b5\": 241,\n    \"\\u2581\\u13c9\\u13b3\": 242,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13b4\\u13c5\\u13db\": 243,\n    \"\\u2581\\u13f1\\u13a8\\u13ce\": 244,\n    \"\\u2581\\u13a2\\u13ef\\u13c2\\u13db\": 245,\n    \"\\u2581\\u13ac\\u13c2\\u13db\": 246,\n    \"\\u2581\\u13a0\\u13a9\": 247,\n    \"\\u2581\\u13a1\\u13d9\\u13d3\": 248,\n    \"\\u2581\\u13c4\\u13ac\\u13eb\\u13f3\\u13d2\": 249,\n    \"\\u13d8\": 250,\n    \"\\u2581\\u13c2\\u13ac\\u13be\\u13db\": 251,\n    \"\\u2581\\u13a2\\u13a6\\u13a2\": 252,\n    \"\\u2581\\u13cd\\u13a9\": 253,\n    \"\\u2581\\u13be\\u13cd\\u13a9\\u13ef\\u13a2\": 254,\n    \"\\u2581\\u13d0\\u13c9\": 255,\n    \"\\u2581\\u13e3\\u13b5\": 256,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13d7\": 257,\n    \"\\u13d4\\u13c5\\u13af\": 258,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\\u13b5\": 259,\n    \"\\u13f4\": 260,\n    \"\\u2581\\u13be\\u13a5\\u13c2\": 261,\n    \"\\u2581\\u13a1\\u13b3\\u13c2\": 262,\n    \"\\u13b0\": 263,\n    \"\\u2581\\u13a4\\u13b5\\u13c2\\u13a9\\u13db\": 264,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\\u13a2\": 265,\n    \"\\u2581\\u13a2\\u13f4\": 266,\n    \"\\u2581\\u13a4\\u13c1\\u13e8\": 267,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13af\": 268,\n    \"\\u2581\\u13bc\\u13cf\\u13c3\": 269,\n    \"\\u2581\\u13a4\\u13d3\\u13b5\\u13a2\": 270,\n    \"\\u13b8\\u13a9\": 271,\n    \"\\u2581\\u13d7\\u13a6\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 272,\n    \"\\u2581\\u13e7\\u13c2\": 273,\n    \"\\u2581\\u13a2\\u13ac\\u13f1\\u13d7\\u13e2\": 274,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 275,\n    \"\\u2581\\u13a0\\u13e3\\u13d7\": 276,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13ce\\u13a2\": 277,\n    \"\\u2581\\u13e5\\u13aa\": 278,\n    \"\\u13b8\\u13af\": 279,\n    \"\\u2581\\u13ad\": 280,\n    \"\\u13b4\\u13a2\": 281,\n    \"\\u13cd\\u13a8\\u13cd\\u13d7\": 282,\n    \"\\u2581\\u13a2\\u13a8\\u13ce\\u13cd\\u13d7\": 283,\n    \"\\u13ae\\u13cd\\u13d7\": 284,\n    \"\\u2581\\u13d7\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13af\": 285,\n    \"\\u2581\\u13a7\": 286,\n    \"\\u13a5\": 287,\n    \"\\u2581\\u13d9\": 288,\n    \"\\u2581\\u13af\\u13cd\\u13a9\": 289,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 290,\n    \"\\u2581\\u13a0\\u13ef\": 291,\n    \"\\u2581\\u13a2\\u13e7\\u13b3\": 292,\n    \"\\u2581\\u13a4\\u13db\\u13c5\": 293,\n    \"\\u2581\\u13a1\\u13cf\\u13a9\": 294,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13c5\\u13df\": 295,\n    \"\\u2581\\u13cc\\u13cc\": 296,\n    \"\\u2581\\u13d7\\u13e3\": 297,\n    \"\\u2581\\u13a9\\u13a6\\u13a8\": 298,\n    \"\\u2581\\u13b0\\u13bb\": 299,\n    \"\\u2581\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 300,\n    \"\\u2581\\u13c5\\u13e9\\u13d3\\u13b4\": 301,\n    \"\\u2581\\u13ad\\u13eb\\u13c2\": 302,\n    \"\\u2581\\u13d1\\u13be\\u13b4\": 303,\n    \"\\u2581\\u13e7\\u13be\": 304,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 305,\n    \"\\u13d4\\u13c5\": 306,\n    \"\\u2581\\u13cd\\u13a9\\u13be\\u13be\": 307,\n    \"\\u13e8\": 308,\n    \"\\u2581\\u13c5\\u13d9\": 309,\n    \"\\u13eb\": 310,\n    \"\\u2581\\u13d2\\u13c3\\u13f1\": 311,\n    \"\\u2581\\u13a2\\u13ac\\u13f1\\u13f1\": 312,\n    \"\\u2581\\u13a2\\u13be\\u13a8\": 313,\n    \"\\u2581\\u13ac\\u13e9\\u13a6\\u13d8\\u13ef\": 314,\n    \"\\u2581\\u13a4\\u13c3\\u13d5\\u13be\": 315,\n    \"\\u2581\\u13a0\\u13e7\\u13e3\": 316,\n    \"\\u2581\\u13a4\\u13e9\\u13cc\": 317,\n    \"\\u2581\\u13d4\\u13b3\\u13da\": 318,\n    \"\\u13e2\": 319,\n    \"\\u2581\\u13a4\\u13e5\": 320,\n    \"\\u2581\\u13a6\\u13b8\\u13b6\\u13a2\": 321,\n    \"\\u2581\\u13f1\\u13a8\\u13ce\\u13a2\": 322,\n    \"\\u2581\\u13a3\": 323,\n    \"\\u2581\\u13e7\\u13ac\\u13e9\\u13b6\\u13d7\": 324,\n    \"\\u2581\\u13a9\\u13b3\": 325,\n    \"\\u2581\\u13a4\\u13d3\": 326,\n    \"\\u13cc\": 327,\n    \"\\u2581\\u13a4\\u13be\\u13e4\\u13b5\\u13a6\": 328,\n    \"\\u13c5\\u13af\": 329,\n    \"\\u2581\\u13da\\u13d9\\u13a5\": 330,\n    \"\\u2581\\u13da\\u13be\": 331,\n    \"\\u13e3\": 332,\n    \"\\u2581\\u13a2\\u13e4\": 333,\n    \"\\u2581\\u13a6\\u13f2\\u13df\": 334,\n    \"\\u2581\\u13c5\\u13e9\\u13d9\\u13af\\u13ef\\u13db\": 335,\n    \"\\u2581\\u13a0\\u13cf\\u13f4\\u13eb\": 336,\n    \"\\u2581\\u13a5\": 337,\n    \"\\u13cd\\u13db\": 338,\n    \"\\u13c9\\u13cd\\u13a9\\u13c2\": 339,\n    \"\\u2581\\u13a2\\u13b8\\u13af\\u13f3\": 340,\n    \"\\u2581\\u13a2\\u13d3\\u13b5\\u13c5\\u13df\": 341,\n    \"\\u2581\\u13e7\\u13be\\u13c1\\u13b6\\u13d7\": 342,\n    \"\\u13cd\\u13a9\\u13c2\\u13c3\\u13c5\": 343,\n    \"\\u13d9\": 344,\n    \"\\u2581\\u13f1\\u13a8\\u13d2\\u13be\": 345,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\": 346,\n    \"\\u2581\\u13a4\\u13da\\u13a9\": 347,\n    \"\\u2581\\u13d7\\u13a6\": 348,\n    \"\\u2581\\u13a0\\u13c6\\u13e4\\u13b5\": 349,\n    \"\\u2581\\u13a2\\u13aa\\u13af\\u13db\": 350,\n    \"\\u2581\\u13a0\\u13ac\\u13f1\": 351,\n    \"\\u13cd\": 352,\n    \"\\u2581\\u13a3\\u13a9\": 353,\n    \"\\u2581\\u13a0\\u13f0\\u13b8\": 354,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c5\": 355,\n    \"\\u2581\\u13a1\\u13c6\": 356,\n    \"\\u2581\\u13ad\\u13eb\\u13c2\\u13d7\\u13e2\": 357,\n    \"\\u2581\\u13a0\\u13c7\\u13e5\": 358,\n    \"\\u13d5\": 359,\n    \"\\u2581\\u13e7\\u13e4\\u13b5\\u13a6\": 360,\n    \"\\u2581\\u13a9\\u13b3\\u13c9\": 361,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13d3\\u13b4\\u13c5\\u13af\": 362,\n    \"\\u2581\\u13c2\\u13e8\\u13ea\\u13ce\\u13ad\": 363,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13d2\\u13a9\": 364,\n    \"\\u2581\\u13a6\\u13d3\\u13ad\": 365,\n    \"\\u2581\\u13a4\\u13c7\\u13d3\\u13b5\": 366,\n    \"\\u2581\\u13a6\\u13f3\\u13b3\": 367,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d8\": 368,\n    \"\\u13d4\": 369,\n    \"\\u13ce\\u13a2\": 370,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c2\\u13cc\\u13db\": 371,\n    \"\\u2581\\u13a2\\u13f3\\u13f0\\u13c3\": 372,\n    \"\\u2581\\u13a2\\u13d0\": 373,\n    \"\\u2581\\u13e5\\u13f3\": 374,\n    \"\\u2581\\u13c3\\u13d7\": 375,\n    \"\\u2581\\u13a2\\u13a6\\u13db\": 376,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13a9\": 377,\n    \"\\u2581\\u13a4\\u13d5\\u13b5\\u13db\": 378,\n    \"\\u2581\\u13e7\\u13d9\\u13a2\\u13db\": 379,\n    \"\\u2581\\u13c4\\u13ea\\u13d2\": 380,\n    \"\\u2581\\u13c4\\u13cd\\u13d7\": 381,\n    \"\\u2581\\u13db\": 382,\n    \"\\u2581\\u13a2\\u13ef\\u13a6\\u13f4\\u13b5\": 383,\n    \"\\u2581\\u13e7\\u13cd\\u13c6\\u13f4\\u13cd\\u13d7\": 384,\n    \"\\u2581\\u13a4\\u13db\\u13db\\u13c1\": 385,\n    \"\\u2581\\u13d7\\u13aa\\u13e2\\u13d4\\u13c5\\u13af\": 386,\n    \"\\u2581\\u13e6\": 387,\n    \"\\u13c1\\u13a2\": 388,\n    \"\\u2581\\u13d3\\u13c2\": 389,\n    \"\\u2581\\u13cd\\u13c9\": 390,\n    \"\\u2581\\u13a0\\u13c1\\u13b2\": 391,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\\u13db\": 392,\n    \"\\u13ae\\u13a2\": 393,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\": 394,\n    \"\\u2581\\u13e9\": 395,\n    \"\\u2581\\u13c4\\u13d3\\u13b4\\u13d2\": 396,\n    \"\\u13b8\\u13a2\": 397,\n    \"\\u13cd\\u13d7\\u13f1\": 398,\n    \"\\u2581\\u13a0\\u13c1\\u13b2\\u13a2\": 399,\n    \"\\u13d2\\u13a9\": 400,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\\u13ef\": 401,\n    \"\\u13c5\\u13a9\": 402,\n    \"\\u2581\\u13a4\\u13be\\u13e4\\u13b5\": 403,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d9\\u13d7\": 404,\n    \"\\u2581\\u13a0\\u13be\\u13d9\\u13b4\\u13b0\\u13cd\\u13a9\": 405,\n    \"\\u2581\\u13a6\\u13c1\\u13b8\": 406,\n    \"\\u2581\\u13d0\\u13a2\": 407,\n    \"\\u2581\\u13e6\\u13a2\\u13c1\": 408,\n    \"\\u13d9\\u13d7\\u13f1\": 409,\n    \"\\u2581\\u13c3\\u13c9\": 410,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13af\\u13e7\\u13c8\": 411,\n    \"\\u2581\\u13a1\\u13b3\\u13c6\\u13d7\": 412,\n    \"\\u2581\\u13e7\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 413,\n    \"\\u2581\\u13a9\\u13ac\": 414,\n    \"\\u13a8\\u13a2\": 415,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 416,\n    \"\\u13b2\\u13a2\": 417,\n    \"\\u2581\\u13cc\\u13e9\\u13c2\": 418,\n    \"\\u2581\\u13a0\\u13c2\\u13c6\\u13b5\\u13cf\": 419,\n    \"\\u2581\\u13e0\\u13a8\\u13cf\": 420,\n    \"\\u2581\\u13a0\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\": 421,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13b8\": 422,\n    \"\\u2581\\u13a7\\u13c5\\u13c2\\u13cd\\u13a9\": 423,\n    \"\\u2581\\u13a0\\u13a6\\u13f4\\u13b5\\u13a8\": 424,\n    \"\\u2581\\u13a0\\u13ba\\u13c9\\u13af\": 425,\n    \"\\u2581\\u13c4\\u13c2\\u13ac\\u13eb\\u13f3\\u13d2\": 426,\n    \"\\u2581\\u13e7\\u13d5\\u13d8\\u13f4\\u13db\": 427,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13d5\\u13be\": 428,\n    \"\\u2581\\u13e5\\u13f3\\u13af\": 429,\n    \"\\u2581\\u13a4\\u13c1\\u13ac\": 430,\n    \"\\u2581\\u13dd\": 431,\n    \"\\u2581\\u13a4\\u13d2\\u13af\": 432,\n    \"\\u2581\\u13cf\": 433,\n    \"\\u2581\\u13a4\\u13c2\\u13ac\\u13eb\\u13f3\\u13af\": 434,\n    \"\\u2581\\u13a4\\u13c3\\u13b4\": 435,\n    \"\\u13aa\\u13a2\": 436,\n    \"\\u2581\\u13a2\\u13a6\\u13e4\\u13b5\": 437,\n    \"\\u2581\\u13a0\\u13d9\\u13b4\\u13b0\\u13cd\\u13a9\": 438,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13b5\": 439,\n    \"\\u2581\\u13d5\\u13e5\": 440,\n    \"\\u2581\\u13d7\\u13c2\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13af\": 441,\n    \"\\u2581\\u13e3\\u13c4\\u13cf\": 442,\n    \"\\u2581\\u13c5\\u13e9\\u13be\\u13d3\\u13b4\": 443,\n    \"\\u2581\\u13c2\\u13af\\u13cd\\u13a9\\u13c2\": 444,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13c2\": 445,\n    \"\\u13e4\": 446,\n    \"\\u2581\\u13be\\u13bf\\u13c2\": 447,\n    \"\\u13a8\\u13b6\\u13af\": 448,\n    \"\\u2581\\u13a1\\u13e3\": 449,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d8\": 450,\n    \"\\u2581\\u13e7\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 451,\n    \"\\u2581\\u13a5\\u13a5\": 452,\n    \"\\u13b6\": 453,\n    \"\\u2581\\u13d7\\u13c2\\u13f2\\u13b5\": 454,\n    \"\\u2581\\u13c2\\u13ac\": 455,\n    \"\\u2581\\u13a4\\u13ec\\u13f0\\u13c2\": 456,\n    \"\\u2581\\u13a1\\u13c6\\u13bb\": 457,\n    \"\\u2581\\u13a4\\u13b5\\u13c2\\u13a9\\u13d7\\u13f3\": 458,\n    \"\\u2581\\u13a1\\u13dd\\u13ea\\u13af\": 459,\n    \"\\u2581\\u13c2\\u13ac\\u13c5\": 460,\n    \"\\u2581\\u13a0\\u13a6\\u13f4\\u13b5\\u13a8\\u13a2\": 461,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13a9\": 462,\n    \"\\u2581\\u13aa\\u13b0\\u13cd\\u13d7\": 463,\n    \"\\u2581\\u13e8\\u13d2\": 464,\n    \"\\u2581\\u13a2\\u13e8\\u13d2\": 465,\n    \"\\u13c1\\u13b8\": 466,\n    \"\\u13ac\\u13a2\": 467,\n    \"\\u2581\\u13a6\\u13b8\\u13b6\": 468,\n    \"\\u2581\\u13a0\\u13f2\\u13b5\": 469,\n    \"\\u2581\\u13a1\\u13e5\": 470,\n    \"\\u2581\\u13e4\\u13e5\": 471,\n    \"\\u13cd\\u13d9\\u13d7\": 472,\n    \"\\u2581\\u13d4\\u13b5\\u13c1\\u13c3\": 473,\n    \"\\u2581\\u13a6\\u13be\\u13dd\\u13a2\": 474,\n    \"\\u2581\\u13a0\\u13d3\\u13a8\\u13f3\\u13d7\": 475,\n    \"\\u2581\\u13a8\\u13b5\\u13b5\": 476,\n    \"\\u2581\\u13e5\\u13a8\\u13d2\\u13a9\": 477,\n    \"\\u2581\\u13e5\\u13a8\\u13ce\\u13a2\": 478,\n    \"\\u2581\\u13a8\\u13d0\\u13a2\": 479,\n    \"\\u13a0\\u13c1\\u13b6\\u13af\": 480,\n    \"\\u13a4\": 481,\n    \"\\u13a3\": 482,\n    \"\\u13c6\": 483,\n    \"\\u2581\\u13d5\\u13a6\": 484,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13c5\\u13af\\u13c3\": 485,\n    \")\": 486,\n    \"\\u2581\\u13a2\\u13ef\\u13a9\\u13f3\\u13cd\\u13c8\\u13db\": 487,\n    \"\\u2581\\u13ad\\u13be\": 488,\n    \"\\u2581\\u13a2\\u13e8\": 489,\n    \"\\u13cd\\u13a6\": 490,\n    \"\\u2581\\u13a0\\u13c4\\u13ec\": 491,\n    \"\\u2581\\u13d7\\u13c3\\u13ea\\u13b5\\u13cd\\u13a9\": 492,\n    \"\\u2581\\u13a0\\u13cd\\u13a9\\u13be\": 493,\n    \"\\u2581\\u13a4\\u13e4\\u13b5\\u13aa\\u13af\": 494,\n    \"\\u2581\\u13a4\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 495,\n    \"\\u2581\\u13d5\\u13eb\": 496,\n    \"\\u2581\\u13a2\\u13d7\": 497,\n    \"\\u13e7\": 498,\n    \"\\u2581\\u13a6\\u13f0\\u13aa\\u13a9\": 499,\n    \"\\u2581\\u13a0\\u13c2\\u13f4\\u13eb\\u13ef\": 500,\n    \"\\u2581\\u13a2\\u13aa\\u13af\\u13d3\": 501,\n    \"\\u13cd\\u13ac\\u13a2\": 502,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13b2\\u13a2\": 503,\n    \"\\u2581\\u13ad\\u13c2\": 504,\n    \"\\u2581\\u13a3\\u13d3\\u13b8\": 505,\n    \"\\u2581\\u13d7\\u13e5\": 506,\n    \"\\u2581(\": 507,\n    \"\\u13c8\": 508,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\\u13d7\": 509,\n    \"\\u13a1\": 510,\n    \"\\u2581\\u13d8\": 511,\n    \"\\u13a7\": 512,\n    \"\\u13a6\\u13b5\": 513,\n    \"\\u13d2\\u13a2\": 514,\n    \"\\u2581\\u13d7\\u13c6\\u13e4\\u13b5\": 515,\n    \"\\u2581\\u13a4\\u13f4\\u13cd\\u13d7\": 516,\n    \"\\u2581\\u13b4\\u13c6\\u13c2\": 517,\n    \"\\u2581\\u13a0\\u13c3\\u13af\\u13f3\\u13b2\\u13cd\\u13a9\": 518,\n    \"\\u2581\\u13d3\\u13c6\\u13b4\\u13b3\": 519,\n    \"\\u2581\\u13a4\\u13e3\\u13d4\\u13c5\\u13af\": 520,\n    \"\\u2581\\u13e5\\u13cd\\u13d5\\u13e5\": 521,\n    \"\\u2581\\u13a0\\u13f0\\u13b3\\u13cd\\u13d7\": 522,\n    \"\\u2581\\u13a4\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\\u13a9\": 523,\n    \"\\u2581\\u13a7\\u13c1\\u13cc\\u13a2\": 524,\n    \"\\u2581\\u13c4\\u13cd\\u13d5\\u13cd\\u13d7\": 525,\n    \"\\u2581\\u13a8\\u13d0\": 526,\n    \"\\u13d4\\u13c5\\u13a9\": 527,\n    \"\\u13e9\": 528,\n    \"\\u2581\\u13c4\\u13d3\\u13b4\": 529,\n    \"\\u2581\\u13e3\\u13e4\\u13b5\": 530,\n    \"\\u2581\\u13aa\\u13a2\": 531,\n    \"\\u2581\\u13a0\\u13db\": 532,\n    \"\\u2581\\u13a7\\u13c1\\u13cd\\u13a6\": 533,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a9\\u13be\": 534,\n    \"\\u2581\\u13d7\\u13a6\\u13d9\\u13b5\": 535,\n    \"\\u13cd\\u13a8\\u13a2\": 536,\n    \"\\u2581\\u13a0\\u13a9\\u13be\": 537,\n    \"\\u2581\\u13a8\\u13b3\\u13cd\\u13d7\\u13f1\": 538,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13d7\": 539,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13c5\": 540,\n    \"\\u2581\\u13eb\\u13e5\": 541,\n    \"\\u2581\\u13a6\\u13da\\u13b2\\u13a2\": 542,\n    \"\\u2581\\u13d7\\u13c2\\u13f2\\u13df\": 543,\n    \"\\u2581\\u13a0\\u13cc\\u13bb\\u13d3\": 544,\n    \"\\u2581\\u13a8\\u13e5\\u13c5\\u13cf\\u13db\": 545,\n    \"\\u2581\\u13ba\\u13b5\": 546,\n    \"\\u2581\\u13a0\\u13d7\\u13be\": 547,\n    \"\\u2581\\u13e7\\u13c1\\u13e5\": 548,\n    \"\\u2581\\u13a0\\u13c2\\u13cf\\u13f4\\u13eb\\u13ad\": 549,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13d2\": 550,\n    \"\\u2581\\u13a2\\u13a6\\u13db\\u13c3\": 551,\n    \"\\u2581\\u13e8\": 552,\n    \"\\u2581\\u13a0\\u13be\": 553,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13db\": 554,\n    \"\\u2581\\u13e5\\u13a8\\u13d2\": 555,\n    \"\\u2581\\u13a4\\u13aa\\u13b2\": 556,\n    \"\\u2581\\u13d7\\u13e3\\u13e4\\u13b5\": 557,\n    \"\\u2581\\u13a2\\u13b8\\u13af\\u13e2\": 558,\n    \"\\u2581\\u13a6\\u13e9\\u13d2\\u13a9\": 559,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\\u13b1\\u13d2\\u13af\": 560,\n    \"\\u2581\\u13a2\\u13f3\\u13d5\\u13d8\\u13f4\\u13db\": 561,\n    \"\\u2581\\u13a4\\u13d5\\u13c1\\u13b4\\u13a2\": 562,\n    \"\\u2581\\u13aa\\u13e2\\u13d4\\u13c5\\u13af\": 563,\n    \"\\u2581\\u13a2\\u13ef\": 564,\n    \"\\u2581\\u13a0\\u13e5\": 565,\n    \"\\u2581\\u13d1\\u13d3\\u13b5\": 566,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13af\": 567,\n    \"\\u2581\\u13a0\\u13ce\\u13c9\": 568,\n    \"\\u13e7\\u13c8\": 569,\n    \"\\u2581\\u13a2\\u13f3\\u13cd\\u13a9\\u13c2\": 570,\n    \"\\u2581\\u13e5\\u13a8\\u13ce\": 571,\n    \"\\u2581\\u13ac\\u13c5\": 572,\n    \"\\u13f2\": 573,\n    \"\\u2581\\u13b1\": 574,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13e9\\u13d3\\u13b4\\u13c5\\u13db\": 575,\n    \"\\u2581\\u13e3\\u13c1\\u13b3\\u13c5\\u13af\": 576,\n    \"\\u2581\\u13c2\\u13aa\\u13af\\u13b8\\u13a2\": 577,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13cd\\u13d7\": 578,\n    \"\\u13cd\\u13a8\": 579,\n    \"\\u2581\\u13a0\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\": 580,\n    \"\\u2581\\u13a4\\u13d2\": 581,\n    \"\\u13ac\\u13be\": 582,\n    \"\\u13d7\\u13a6\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 583,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13e1\\u13ac\": 584,\n    \"\\u2581\\u13a7\\u13c1\\u13ac\": 585,\n    \"\\u2581\\u13f4\": 586,\n    \"\\u13cd\\u13aa\\u13a2\": 587,\n    \"\\u13d4\\u13c1\\u13a2\": 588,\n    \"\\u2581\\u13d7\\u13d3\\u13cd\\u13da\\u13d7\\u13f1\": 589,\n    \"\\u2581\\u13c3\\u13ef\": 590,\n    \"\\u2581\\u13c5\": 591,\n    \"\\u2581\\u13c5\\u13f2\\u13af\": 592,\n    \"\\u13c1\\u13d7\\u13f1\": 593,\n    \"\\u2581\\u13e5\\u13a6\\u13d4\\u13ad\": 594,\n    \"\\u13b2\\u13a9\": 595,\n    \"\\u13cd\\u13d4\\u13c5\": 596,\n    \"\\u13df\": 597,\n    \"o\": 598,\n    \"\\u2581\\u13c4\\u13ea\\u13ce\": 599,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 600,\n    \"\\u13ad\\u13e9\": 601,\n    \"\\u2581\\u13a8\\u13f4\": 602,\n    \"\\u2581\\u13d4\\u13d5\\u13f2\\u13b2\\u13cd\\u13a9\": 603,\n    \"\\u2581\\u13c6\\u13b4\\u13d7\": 604,\n    \"\\u2581\\u13d7\\u13e4\\u13e5\": 605,\n    \"\\u2581\\u13a5\\u13e3\\u13f1\": 606,\n    \"\\u2581\\u13a4\\u13be\\u13e4\\u13b5\\u13aa\\u13af\": 607,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13c5\\u13df\": 608,\n    \"\\u2581\\u13a4\\u13d0\\u13c5\": 609,\n    \"\\u2581\\u13a4\\u13b5\": 610,\n    \"\\u2581\\u13a4\\u13c5\\u13d7\": 611,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\\u13c5\": 612,\n    \"\\u2581\\u13c2\\u13a6\": 613,\n    \"\\u2581\\u13a0\\u13b2\": 614,\n    \"\\u2581\\u13b0\\u13e9\": 615,\n    \"\\u2581\\u13b0\": 616,\n    \"\\u2581\\u13d7\\u13c2\": 617,\n    \"\\u2581\\u13c5\\u13a6\\u13cd\\u13aa\\u13af\": 618,\n    \"\\u2581\\u13a4\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\": 619,\n    \"\\u2581\\u13a4\\u13b4\\u13c5\\u13ae\": 620,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\\u13a9\": 621,\n    \"\\u2581\\u13a4\\u13f2\\u13a2\\u13f3\": 622,\n    \"\\u2581\\u13a0\\u13b3\\u13c2\": 623,\n    \"\\u2581\\u13ac\\u13d8\": 624,\n    \"\\u2581\\u13da\\u13ec\\u13a1\\u13a2\": 625,\n    \"\\u2581\\u13a1\\u13b6\\u13db\": 626,\n    \"\\u2581\\u13a4\\u13e0\\u13f1\": 627,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13eb\\u13cd\\u13a9\": 628,\n    \"\\u13ce\\u13cd\\u13d7\": 629,\n    \"\\u13f0\": 630,\n    \"\\u2581\\u13d3\\u13d4\\u13b4\\u13d2\": 631,\n    \"\\u2581\\u13a0\\u13c2\\u13d0\\u13a2\": 632,\n    \"\\u2581\\u13a4\\u13b7\\u13e8\": 633,\n    \"\\u2581\\u13a6\\u13c1\\u13b8\\u13a2\": 634,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\\u13db\\u13a2\": 635,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\": 636,\n    \"\\u13d4\\u13c1\": 637,\n    \"\\u2581-\": 638,\n    \"\\u2581\\u13a4\\u13a7\\u13db\": 639,\n    \"\\u2581\\u13a4\\u13c5\": 640,\n    \"\\u13be\\u13cd\\u13a9\": 641,\n    \"\\u2581\\u13cc\\u13c9\\u13c9\": 642,\n    \"\\u2581\\u13c2\\u13af\\u13c3\": 643,\n    \"\\u13d2\\u13af\": 644,\n    \"\\u2581\\u13d7\\u13c5\\u13c3\\u13db\": 645,\n    \"\\u2581\\u13a1\\u13ba\\u13c5\": 646,\n    \"\\u2581\\u13ac\\u13e9\\u13da\\u13eb\\u13db\": 647,\n    \"\\u2581\\u13a0\\u13c2\\u13e7\\u13e3\": 648,\n    \"\\u2581\\u13a9\\u13b3\\u13c8\\u13f4\": 649,\n    \"\\u2581\\u13a0\\u13ac\\u13f1\\u13e3\": 650,\n    \"\\u2581\\u13ad\\u13eb\\u13c2\\u13e3\": 651,\n    \"\\u2581\\u13a3\\u13af\\u13cd\\u13d9\\u13d7\": 652,\n    \"\\u2581\\u13be\\u13cd\\u13a9\\u13cd\\u13a9\\u13c2\": 653,\n    \"\\u2581\\u13ac\\u13d4\\u13c5\\u13af\": 654,\n    \"\\u13d0\": 655,\n    \"\\u2581\\u13ab\": 656,\n    \"\\u2581\\u13ac\\u13c2\\u13a8\": 657,\n    \"\\u2581\\u13a3\\u13c2\\u13c3\": 658,\n    \"\\u2581\\u13a6\\u13cd\\u13a9\\u13b8\": 659,\n    \"\\u2581\\u13c2\\u13da\\u13ea\\u13ce\\u13b4\": 660,\n    \"\\u2581\\u13a4\\u13d9\\u13b4\\u13b0\\u13d2\": 661,\n    \"\\u2581\\u13e5\\u13da\": 662,\n    \"\\u2581\\u13b4\\u13e5\\u13b5\": 663,\n    \"\\u2581\\u13a4\\u13e3\\u13b4\\u13cd\\u13d7\": 664,\n    \"\\u2581\\u13c2\\u13e3\": 665,\n    \"\\u2581\\u13a6\\u13b8\\u13b3\\u13d7\\u13e2\": 666,\n    \"\\u2581\\u13ad\\u13e2\": 667,\n    \"\\u2581\\u13e4\": 668,\n    \"\\u13a8\\u13b3\\u13cd\\u13d7\\u13f1\": 669,\n    \"\\u2581\\u13d3\\u13a6\": 670,\n    \"\\u2581\\u13e5\\u13a8\\u13d0\": 671,\n    \"\\u2581\\u13c2\\u13e5\\u13a5\": 672,\n    \"\\u2581\\u13cd\\u13a9\\u13f4\": 673,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d9\": 674,\n    \"\\u2581\\u13f1\\u13a6\": 675,\n    \"\\u2581\\u13d7\\u13c4\\u13ec\": 676,\n    \"\\u2581\\u13eb\\u13be\\u13cd\\u13db\\u13be\": 677,\n    \"\\u2581\\u13e7\\u13d2\\u13af\\u13db\": 678,\n    \"\\u2581\\u13ce\\u13b5\": 679,\n    \"\\u2581\\u13a4\\u13c1\": 680,\n    \"\\u2581\\u13e4\\u13af\": 681,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\": 682,\n    \"\\u2581\\u13da\\u13cf\\u13b3\\u13db\": 683,\n    \"\\u13ac\\u13a9\": 684,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13d3\\u13c6\\u13cd\\u13ac\": 685,\n    \"\\u2581\\u13a2\\u13b8\\u13cd\\u13a9\": 686,\n    \"\\u2581\\u13a2\\u13ef\\u13c2\": 687,\n    \"\\u13c1\\u13b8\\u13af\": 688,\n    \"\\u13cd\\u13d3\": 689,\n    \"\\u2581\\u13d6\\u13b8\\u13b3\\u13d7\": 690,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\\u13d5\": 691,\n    \"\\u2581\\u13a1\\u13c9\\u13c2\": 692,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13cd\\u13a8\\u13a2\": 693,\n    \"\\u2581\\u13d4\\u13b7\\u13a9\\u13cd\\u13a9\": 694,\n    \"\\u2581\\u13a0\\u13c6\\u13e4\\u13b5\\u13a6\": 695,\n    \"\\u2581\\u13a1\\u13ad\": 696,\n    \"\\u2581\\u13e7\\u13d7\\u13f1\": 697,\n    \"\\u2581\\u13a0\\u13cb\\u13d2\": 698,\n    \"\\u2581\\u13a0\\u13a6\": 699,\n    \"\\u2581\\u13a8\\u13be\\u13c2\": 700,\n    \"\\u2581\\u13ad\\u13eb\\u13ef\": 701,\n    \"\\u2581\\u13a4\\u13cf\\u13d9\\u13b5\": 702,\n    \"\\u2581\\u13a2\\u13f3\\u13df\\u13b6\\u13db\": 703,\n    \"\\u2581\\u13c3\\u13c8\\u13cf\": 704,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13ea\\u13ce\\u13b4\\u13a2\": 705,\n    \"\\u2581\\u13d5\\u13e3\": 706,\n    \"\\u2581\\u13aa\\u13f1\\u13c1\\u13a2\": 707,\n    \"\\u2581\\u13a6\\u13da\\u13cf\": 708,\n    \"\\u2581\\u13e4\\u13cd\\u13d7\": 709,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13b2\": 710,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\": 711,\n    \"\\u2581\\u13a2\\u13be\\u13a8\\u13a2\": 712,\n    \"\\u13d3\\u13c1\\u13d7\": 713,\n    \"\\u2581\\u13ed\\u13d5\\u13b5\\u13ac\": 714,\n    \"\\u2581\\u13d7\\u13e8\\u13cd\\u13d9\\u13d7\": 715,\n    \"\\u2581\\u13d1\\u13be\\u13d3\\u13e1\\u13a9\": 716,\n    \"\\u13d2\\u13be\": 717,\n    \"\\u2581\\u13e7\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 718,\n    \"\\u2581\\u13a2\\u13be\\u13db\": 719,\n    \"\\u2581\\u13ab\\u13e9\": 720,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 721,\n    \"\\u2581\\u13a6\\u13cd\\u13a9\\u13b6\": 722,\n    \"\\u2581\\u13e5\\u13a8\\u13d0\\u13a2\": 723,\n    \"\\u2581\\u13a0\\u13f4\\u13c3\": 724,\n    \"\\u2581\\u13a1\\u13af\\u13cd\\u13d7\": 725,\n    \"\\u13b2\\u13be\": 726,\n    \"\\u2581\\u13d7\\u13ab\\u13aa\\u13d9\\u13d7\": 727,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13ce\": 728,\n    \"\\u2581\\u13c4\\u13be\\u13cd\\u13db\": 729,\n    \"\\u13db\\u13be\": 730,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\\u13b4\": 731,\n    \"\\u2581\\u13a8\\u13e5\": 732,\n    \"\\u2581\\u13a3\\u13ad\\u13c1\": 733,\n    \"\\u13d7\\u13cd\\u13ac\": 734,\n    \"\\u2581\\u13ac\\u13c3\\u13db\": 735,\n    \"\\u2581\\u13d7\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 736,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13c9\\u13d7\\u13f3\": 737,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13c5\\u13af\\u13cd\\u13a9\\u13c2\": 738,\n    \"\\u2581\\u13a4\\u13d9\": 739,\n    \"\\u2581\\u13c2\\u13da\": 740,\n    \"\\u2581\\u13aa\": 741,\n    \"\\u13b4\\u13cd\\u13d7\": 742,\n    \"\\u13d7\\u13cd\\u13a9\": 743,\n    \"\\u13af\\u13a0\": 744,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cd\\u13ac\": 745,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13ac\": 746,\n    \"\\u2581\\u13a1\\u13b6\": 747,\n    \"\\u2581\\u13a4\\u13ea\\u13b7\\u13c1\": 748,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b4\": 749,\n    \"\\u2581\\u13ac\\u13c2\\u13f3\\u13c9\\u13c3\": 750,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d9\": 751,\n    \"\\u2581\\u13e5\\u13cd\\u13c6\": 752,\n    \"\\u13af\\u13f3\": 753,\n    \"\\u2581\\u13a2\\u13c5\": 754,\n    \"\\u2581\\u13a6\\u13b5\": 755,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e4\": 756,\n    \"\\u2581\\u13e7\\u13be\\u13e4\\u13b5\": 757,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13ad\": 758,\n    \"\\u2581\\u13a5\\u13de\\u13cd\\u13d7\": 759,\n    \"\\u2581\\u13a0\\u13b0\\u13b5\": 760,\n    \"\\u2581\\u13a0\\u13b5\": 761,\n    \"\\u2581\\u13a0\\u13ce\\u13c9\\u13c9\": 762,\n    \"\\u2581\\u13a3\\u13a6\": 763,\n    \"\\u13b7\": 764,\n    \"\\u2581\\u13a4\\u13ac\\u13eb\\u13f3\": 765,\n    \"\\u2581\\u13ae\\u13be\": 766,\n    \"\\u13d5\\u13cd\\u13d7\": 767,\n    \"\\u2581\\u13e3\\u13e5\": 768,\n    \"\\u2581\\u13a1\\u13b5\": 769,\n    \"\\u2581\\u13a0\\u13f0\\u13b8\\u13a2\": 770,\n    \"\\u13da\": 771,\n    \"\\u2581\\u13d1\\u13be\\u13b4\\u13a2\": 772,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 773,\n    \"\\u2581\\u13a8\\u13e3\": 774,\n    \"\\u13c4\": 775,\n    \"\\u2581\\u13a3\\u13e5\": 776,\n    \"\\u13b0\\u13a2\": 777,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\": 778,\n    \"\\u2581\\u13eb\\u13da\": 779,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13b8\": 780,\n    \"\\u2581\\u13a9\\u13b6\\u13cd\\u13a9\\u13c2\": 781,\n    \"\\u2581\\u13e6\\u13a0\\u13cd\\u13aa\\u13af\": 782,\n    \"\\u2581\\u13e7\\u13c6\\u13b6\\u13a6\": 783,\n    \"\\u2581\\u13a9\\u13a6\": 784,\n    \"\\u2581\\u13d7\\u13c2\\u13b3\\u13eb\\u13a9\": 785,\n    \"\\u2581\\u13a4\\u13a9\\u13ac\": 786,\n    \"\\u2581\\u13d4\": 787,\n    \"\\u2581\\u13e7\\u13be\\u13e4\\u13b5\\u13a6\": 788,\n    \"\\u2581\\u13e3\\u13c1\\u13ad\": 789,\n    \"\\u2581\\u13a9\\u13a6\\u13a8\\u13a2\": 790,\n    \"\\u13bb\": 791,\n    \"\\u2581\\u13a4\\u13e9\\u13d2\\u13c9\": 792,\n    \"\\u13c1\\u13e2\\u13d4\\u13c5\\u13db\": 793,\n    \"\\u2581\\u13cd\\u13a9\\u13be\": 794,\n    \"\\u2581\\u13d7\\u13ac\": 795,\n    \"\\u2581\\u13d3\\u13f3\": 796,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\": 797,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 798,\n    \"\\u2581\\u13e9\\u13ad\\u13ef\": 799,\n    \"\\u2581\\u13d7\\u13a7\\u13b8\\u13ac\": 800,\n    \"\\u2581\\u13d9\\u13f1\\u13d7\\u13e2\": 801,\n    \"\\u2581\\u13e3\\u13b3\\u13a9\": 802,\n    \"\\u2581\\u13a1\\u13b6\\u13d7\": 803,\n    \"\\u2581\\u13a4\\u13e0\\u13f1\\u13c9\": 804,\n    \"\\u2581\\u13a0\\u13d9\\u13af\": 805,\n    \"\\u13ea\": 806,\n    \"\\u13d9\\u13a2\\u13f3\\u13cd\\u13d7\": 807,\n    \"\\u13af\\u13cd\\u13d7\": 808,\n    \"\\u2581\\u13f1\\u13d3\": 809,\n    \"\\u2581\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\": 810,\n    \"\\u2581\\u13a4\\u13e3\\u13d8\\u13c2\": 811,\n    \"\\u2581\\u13a4\\u13da\\u13b5\\u13cd\\u13ac\": 812,\n    \"\\u2581\\u13a4\\u13be\\u13d3\": 813,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 814,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13db\\u13c1\\u13d7\": 815,\n    \"\\u13c1\\u13b4\": 816,\n    \"\\u2581\\u13af\\u13cd\\u13a6\\u13cd\\u13aa\\u13af\": 817,\n    \"\\u2581\\u13c2\\u13da\\u13f3\\u13aa\\u13db\\u13be\": 818,\n    \"\\u2581\\u13e7\\u13ec\\u13f0\\u13c2\": 819,\n    \"\\u2581\\u13a0\\u13c2\\u13f2\\u13cd\\u13a9\": 820,\n    \"\\u2581\\u13e3\\u13c1\\u13e2\\u13d4\\u13c5\\u13af\": 821,\n    \"\\u2581\\u13e3\\u13d9\\u13d3\": 822,\n    \"\\u2581\\u13a4\\u13c2\\u13d9\\u13d3\": 823,\n    \"\\u2581\\u13e9\\u13cd\\u13db\": 824,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\": 825,\n    \"\\u2581\\u13f1\\u13e5\\u13a6\\u13d4\\u13ad\": 826,\n    \"\\u2581\\u13e5\\u13bb\": 827,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13a9\\u13d7\": 828,\n    \"\\u2581\\u13b6\\u13d7\": 829,\n    \"\\u2581\\u13be\\u13a5\\u13c2\\u13a8\": 830,\n    \"\\u13cd\\u13d3\\u13ef\": 831,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\": 832,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13b8\\u13d7\": 833,\n    \"\\u2581\\u13a0\\u13c2\\u13c5\": 834,\n    \"\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 835,\n    \"\\u2581\\u13a4\\u13d0\\u13f1\": 836,\n    \"\\u2581\\u13a4\\u13e9\": 837,\n    \"\\u2581\\u13a4\\u13ea\": 838,\n    \"\\u2581\\u13ac\\u13a9\": 839,\n    \"\\u2581\\u13f1\\u13e3\": 840,\n    \"\\u13d4\\u13c2\": 841,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 842,\n    \"\\u2581\\u13d5\\u13a4\": 843,\n    \"\\u2581\\u13a4\\u13ea\\u13d8\": 844,\n    \"\\u2581\\u13f1\\u13a6\\u13b5\\u13cd\\u13d9\\u13d3\": 845,\n    \"\\u2581\\u13b5\\u13a0\": 846,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c8\\u13d7\": 847,\n    \"\\u2581\\u13a0\\u13e5\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 848,\n    \"\\u2581\\u13c3\\u13ca\": 849,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13a6\\u13ef\": 850,\n    \"\\u2581\\u13ce\\u13a6\": 851,\n    \"\\u2581\\u13a4\\u13c1\\u13a6\": 852,\n    \"\\u2581\\u13a4\\u13a7\\u13b5\\u13e8\\u13af\": 853,\n    \"\\u2581\\u13e7\\u13d3\\u13cf\": 854,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13b2\": 855,\n    \"\\u2581\\u13a4\\u13be\\u13dd\\u13a2\": 856,\n    \"\\u13ca\": 857,\n    \"\\u13d7\\u13ad\": 858,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13cd\": 859,\n    \"\\u2581\\u13f2\": 860,\n    \"\\u2581\\u13a2\\u13e4\\u13b2\\u13a2\": 861,\n    \"--\": 862,\n    \"\\u13db\\u13a2\": 863,\n    \"\\u2581\\u13a2\\u13e4\\u13b2\": 864,\n    \"\\u13c1\\u13d7\": 865,\n    \"\\u2581\\u13a0\\u13b9\\u13f1\": 866,\n    \"\\u2581\\u13c4\\u13ea\\u13ce\\u13b8\": 867,\n    \"\\u2581\\u13a0\\u13f4\\u13cd\\u13a9\\u13c2\": 868,\n    \"\\u2581\\u13d3\\u13a9\": 869,\n    \"\\u2581\\u13a4\\u13b7\\u13e4\": 870,\n    \"\\u2581\\u13b5\\u13c7\\u13a9\": 871,\n    \"\\u2581\\u13da\\u13c5\\u13d3\\u13d2\": 872,\n    \"\\u2581\\u13d2\\u13a6\\u13d4\": 873,\n    \"\\u2581\\u13a4\\u13a6\\u13be\\u13cd\\u13db\": 874,\n    \"\\u2581\\u13a6\\u13b6\\u13c7\": 875,\n    \"\\u2581\\u13cf\\u13cc\": 876,\n    \"\\u2581\\u13da\\u13be\\u13d9\\u13a5\": 877,\n    \"\\u2581\\u13e5\\u13c4\\u13cd\\u13d7\": 878,\n    \"\\u2581\\u13ac\\u13d9\\u13d7\": 879,\n    \"\\u13b8\\u13ad\": 880,\n    \"\\u2581\\u13a6\\u13b8\\u13b3\\u13d7\\u13e3\": 881,\n    \"\\u13cd\\u13d4\\u13c1\\u13a2\": 882,\n    \"\\u13dd\": 883,\n    \"\\u2581\\u13e7\\u13d3\": 884,\n    \"\\u13cd\\u13d8\": 885,\n    \"\\u2581\\u13a1\\u13b2\": 886,\n    \"\\u2581\\u13e1\\u13ac\": 887,\n    \"\\u2581\\u13db\\u13a6\": 888,\n    \"\\u13af\\u13cd\\u13d7\\u13f1\": 889,\n    \"\\u2581\\u13a2\\u13ef\\u13db\\u13c1\\u13d7\": 890,\n    \"\\u2581\\u13f1\\u13da\": 891,\n    \"\\u2581\\u13ce\\u13d3\\u13c2\": 892,\n    \"\\u2581\\u13d4\\u13b4\\u13b2\\u13a6\": 893,\n    \"\\u2581\\u13e5\\u13aa\\u13ea\\u13b3\": 894,\n    \"\\u2581\\u13a0\\u13c2\\u13f3\\u13e9\\u13c1\\u13a6\": 895,\n    \"\\u2581\\u13e7\\u13d3\\u13c6\\u13d9\\u13a9\": 896,\n    \"\\u2581\\u13a0\\u13c2\\u13f4\\u13eb\": 897,\n    \"\\u2581\\u13a2\\u13ac\\u13c1\\u13b8\\u13af\": 898,\n    \"\\u2581\\u13a6\\u13da\\u13a2\\u13e3\": 899,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13ce\\u13a2\": 900,\n    \"\\u2581\\u13d3\\u13e5\": 901,\n    \"\\u2581\\u13ed\\u13b7\\u13e4\": 902,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 903,\n    \"\\u2581\\u13a0\\u13d7\\u13d4\\u13cd\\u13d7\": 904,\n    \"\\u2581\\u13ac\\u13c5\\u13a2\": 905,\n    \"\\u2581\\u13c4\\u13be\": 906,\n    \"\\u13d6\": 907,\n    \"\\u2581\\u13a8\\u13b5\": 908,\n    \"\\u13cf\\u13f4\\u13eb\\u13ad\": 909,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\": 910,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13c5\\u13e8\": 911,\n    \"\\u2581\\u13d5\\u13af\": 912,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13c1\": 913,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c2\\u13d9\\u13b8\": 914,\n    \"\\u2581\\u13a6\\u13f0\": 915,\n    \"\\u2581\\u13c8\\u13b5\\u13a9\": 916,\n    \"\\u2581\\u13a8\\u13bb\\u13b5\": 917,\n    \"\\u2581\\u13e7\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 918,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\": 919,\n    \"\\u2581\\u13d4\\u13b3\\u13cd\\u13aa\\u13af\": 920,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13c5\\u13df\": 921,\n    \"\\u2581\\u13a6\\u13c5\\u13cd\\u13d9\\u13d7\": 922,\n    \"\\u2581\\u13d5\\u13e7\\u13ac\": 923,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13e4\\u13b5\\u13db\": 924,\n    \"\\u2581\\u13af\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 925,\n    \"\\u2581\\u13a2\\u13e5\\u13d9\\u13d3\": 926,\n    \"\\u2581\\u13e7\\u13be\\u13db\\u13d0\\u13c5\\u13af\": 927,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13c1\\u13d7\\u13f1\": 928,\n    \"\\u2581\\u13c2\\u13d7\": 929,\n    \"\\u2581\\u13a4\\u13d5\\u13ef\\u13d9\\u13d7\": 930,\n    \"\\u2581\\u13a6\\u13da\\u13a2\": 931,\n    \"\\u2581\\u13d9\\u13f1\": 932,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13b2\": 933,\n    \"\\u13d9\\u13b8\\u13a2\": 934,\n    \"\\u2581\\u13a4\\u13b6\\u13a9\\u13b8\": 935,\n    \"\\u2581\\u13ac\\u13d7\\u13cd\\u13ac\": 936,\n    \"\\u13a3\\u13cd\\u13d3\": 937,\n    \"\\u2581\\u13c2\\u13af\\u13f0\\u13c3\": 938,\n    \"\\u2581\\u13a4\\u13db\\u13be\": 939,\n    \"\\u2581\\u13d0\\u13a3\\u13c1\\u13b3\": 940,\n    \"\\u2581\\u13a0\\u13c2\\u13a8\\u13ef\": 941,\n    \"\\u2581\\u13a4\\u13a9\\u13e8\\u13db\": 942,\n    \"\\u2581\\u13e5\\u13c2\\u13ac\\u13c5\": 943,\n    \"\\u2581\\u13a2\\u13ef\\u13db\\u13c1\\u13af\": 944,\n    \"\\u2581\\u13a0\\u13d5\\u13b3\": 945,\n    \"\\u2581\\u13a2\\u13e8\\u13a8\\u13f3\\u13a2\": 946,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13ad\": 947,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\\u13d9\\u13d7\": 948,\n    \"\\u2581\\u13a4\\u13b4\\u13c2\\u13d9\\u13b4\\u13a2\": 949,\n    \"\\u2581\\u13a6\\u13c1\\u13a6\": 950,\n    \"\\u2581\\u13d3\\u13be\": 951,\n    \"\\u2581\\u13a2\\u13ef\\u13cd\\u13d7\": 952,\n    \"\\u2581\\u13ed\\u13b6\\u13ce\\u13a2\": 953,\n    \"\\u2581\\u13a1\\u13ae\\u13a2\": 954,\n    \"\\u2581\\u13be\\u13af\\u13f3\\u13c9\": 955,\n    \"\\u2581\\u13a6\\u13b5\\u13c9\\u13a9\\u13c1\": 956,\n    \"\\u2581\\u13a4\\u13b7\\u13e8\\u13a9\": 957,\n    \"\\u2581\\u13a4\\u13aa\\u13ae\": 958,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13ce\": 959,\n    \"\\u2581\\u13c2\\u13a6\\u13a5\\u13c9\": 960,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\\u13b8\": 961,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13ac\": 962,\n    \"\\u13a8\\u13f3\\u13af\\u13f3\": 963,\n    \"\\u13a0\\u13d7\\u13d4\\u13cd\\u13d7\": 964,\n    \"\\u13d7\\u13a6\\u13c5\\u13cc\\u13d7\": 965,\n    \"\\u13e1\": 966,\n    \"\\u2581\\u13d7\\u13a8\\u13d2\": 967,\n    \"\\u13a7\\u13d4\\u13ae\\u13a2\": 968,\n    \"\\u2581\\u13c2\\u13ac\\u13be\\u13db\\u13a2\": 969,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\\u13d7\": 970,\n    \"\\u2581\\u13e7\\u13c2\\u13be\\u13eb\": 971,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13be\": 972,\n    \"\\u2581\\u13a4\\u13be\\u13eb\": 973,\n    \"\\u2581\\u13d3\\u13c6\\u13b4\\u13b7\": 974,\n    \"\\u2581\\u13c5\\u13ac\\u13e9\\u13ea\\u13ce\\u13b8\\u13a9\": 975,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\\u13ad\": 976,\n    \"\\u2581\\u13cf\\u13d3\\u13c1\\u13b8\\u13af\": 977,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13af\\u13b5\\u13d9\\u13af\": 978,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13af\": 979,\n    \"\\u2581\\u13a4\\u13df\\u13af\\u13f3\": 980,\n    \"\\u2581\\u13a6\\u13db\\u13a6\": 981,\n    \"\\u2581\\u13a0\\u13e4\\u13af\": 982,\n    \"\\u2581\\u13e4\\u13ad\": 983,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\": 984,\n    \"\\u2581\\u13a2\\u13a6\\u13d3\": 985,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13b2\\u13a2\": 986,\n    \"\\u13c7\": 987,\n    \"\\u13db\\u13a9\": 988,\n    \"\\u2581\\u13a6\\u13d3\\u13c1\": 989,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\": 990,\n    \"\\u13b2\\u13a6\": 991,\n    \"\\u2581\\u13f4\\u13eb\\u13c9\": 992,\n    \"\\u2581\\u13aa\\u13ea\\u13b8\": 993,\n    \"\\u2581\\u13c5\\u13e9\\u13d3\\u13b4\\u13c3\": 994,\n    \"\\u2581\\u13e5\\u13d3\": 995,\n    \"\\u2581\\u13a0\\u13c2\\u13ec\\u13c2\\u13cd\\u13ac\": 996,\n    \"\\u2581\\u13c4\\u13e9\\u13c1\\u13b4\": 997,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\": 998,\n    \"\\u2581\\u13a0\\u13e0\\u13c1\\u13d7\": 999,\n    \"\\u2581\\u13d3\\u13bf\\u13e9\": 1000,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b6\\u13d2\\u13af\": 1001,\n    \"\\u2581\\u13a7\\u13c3\\u13af\\u13f0\\u13a9\": 1002,\n    \"\\u2581\\u13a1\\u13c9\\u13af\\u13f3\": 1003,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13cf\\u13d7\\u13e2\": 1004,\n    \"\\u2581\\u13e7\\u13f3\\u13aa\\u13d7\": 1005,\n    \"\\u2581\\u13be\\u13cd\\u13a9\\u13ef\\u13c9\": 1006,\n    \"\\u2581\\u13d7\\u13f0\\u13b8\\u13af\": 1007,\n    \"\\u2581\\u13a4\\u13d4\\u13b3\\u13ec\\u13af\\u13cd\\u13d7\": 1008,\n    \"\\u2581\\u13a6\\u13b7\\u13e8\\u13ad\": 1009,\n    \"\\u2581\\u13c5\\u13c3\\u13af\": 1010,\n    \"\\u2581\\u13a0\\u13b9\\u13df\": 1011,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13c5\": 1012,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\": 1013,\n    \"\\u2581\\u13a4\\u13be\\u13b5\": 1014,\n    \"\\u2581\\u13e7\\u13c2\\u13cd\\u13d7\": 1015,\n    \"\\u2581\\u13aa\\u13ea\\u13b8\\u13a2\": 1016,\n    \"\\u2581\\u13a4\\u13c1\\u13e8\\u13a9\": 1017,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b8\": 1018,\n    \"\\u2581\\u13a6\\u13d9\\u13a8\": 1019,\n    \"---\": 1020,\n    \"\\u2581\\u13c4\\u13cd\\u13d5\": 1021,\n    \"\\u2581\\u13a4\\u13d5\\u13d8\\u13f4\\u13cc\\u13d7\\u13d2\": 1022,\n    \"\\u2581\\u13d5\\u13a4\\u13d9\\u13a5\": 1023,\n    \"\\u2581\\u13d3\\u13f3\\u13d3\\u13b4\\u13c5\": 1024,\n    \"\\u2581\\u13a0\\u13cd\\u13db\": 1025,\n    \"\\u2581\\u13a6\\u13d9\\u13ac\": 1026,\n    \"\\u2581\\u13d7\\u13cf\\u13d3\\u13b5\": 1027,\n    \"\\u2581\\u13a3\\u13e3\\u13b5\\u13c5\\u13df\": 1028,\n    \"\\u2581\\u13e4\\u13a9\\u13cf\\u13c2\": 1029,\n    \"\\u2581\\u13c6\\u13c2\\u13c6\": 1030,\n    \"\\u2581\\u13af\\u13b8\\u13a2\\u13f4\": 1031,\n    \"\\u2581\\u13a2\\u13d3\\u13d3\\u13c5\\u13df\": 1032,\n    \"\\u2581\\u13a8\\u13e5\\u13b8\\u13c9\\u13d7\": 1033,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13c1\\u13b6\\u13d7\": 1034,\n    \"\\u2581\\u13a0\\u13c8\\u13bb\\u13b4\\u13a9\": 1035,\n    \"\\u2581\\u13d7\\u13c7\\u13e5\": 1036,\n    \"\\u2581\\u13a4\\u13a6\\u13b5\\u13cd\\u13d7\": 1037,\n    \"\\u13c5\\u13cf\\u13db\": 1038,\n    \"\\u2581\\u13e9\\u13b6\\u13cf\": 1039,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\\u13c1\\u13b4\\u13a2\": 1040,\n    \"\\u2581\\u13be\\u13a9\\u13ea\\u13ce\\u13b8\\u13a9\": 1041,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13c5\\u13db\\u13a2\": 1042,\n    \"\\u2581\\u13a0\\u13d3\\u13eb\": 1043,\n    \"\\u2581\\u13e6\\u13f0\\u13c2\": 1044,\n    \"\\u2581\\u13e7\\u13e9\": 1045,\n    \"\\u13f1\\u13a9\": 1046,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13a2\": 1047,\n    \"\\u2581\\u13aa\\u13cd\\u13d3\": 1048,\n    \"\\u2581\\u13e7\\u13ac\": 1049,\n    \"\\u2581\\u13af\\u13aa\": 1050,\n    \"\\u2581\\u13aa\\u13ea\\u13b5\\u13af\": 1051,\n    \"\\u2581\\u13aa\\u13b3\": 1052,\n    \"\\u2581\\u13a0\\u13ef\\u13d9\": 1053,\n    \"\\u13cd\\u13aa\\u13af\": 1054,\n    \"\\u13a2\\u13cd\\u13d7\\u13f1\": 1055,\n    \"\\u13c1\\u13ad\": 1056,\n    \"\\u2581\\u13da\\u13b4\\u13c5\": 1057,\n    \"\\u2581\\u13be\\u13c3\": 1058,\n    \"\\u2581\\u13a6\\u13b8\": 1059,\n    \"\\u2581\\u13d5\\u13e3\\u13d9\\u13a5\": 1060,\n    \"\\u13d9\\u13af\": 1061,\n    \"\\u2581\\u13a2\\u13e3\\u13e4\\u13b5\": 1062,\n    \"\\u2581\\u13d8\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 1063,\n    \"\\u2581\\u13c4\\u13c2\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\\u13a9\": 1064,\n    \"\\u2581\\u13a5\\u13d3\\u13b5\": 1065,\n    \"\\u2581\\u13a2\\u13b3\\u13ef\": 1066,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 1067,\n    \"\\u2581\\u13d7\\u13d8\\u13c2\\u13d9\\u13af\": 1068,\n    \"\\u2581\\u13d0\\u13b3\": 1069,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13af\": 1070,\n    \"\\u2581\\u13d7\\u13a8\": 1071,\n    \"\\u2581\\u13a4\\u13e9\\u13d2\\u13af\\u13f3\": 1072,\n    \"\\u2581\\u13ce\\u13a6\\u13e8\": 1073,\n    \"\\u2581\\u13d7\\u13e3\\u13e4\\u13b5\\u13a6\": 1074,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13d2\": 1075,\n    \"\\u2581\\u13a4\\u13d5\\u13c5\\u13af\": 1076,\n    \"\\u13e8\\u13a9\": 1077,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\\u13f1\": 1078,\n    \"\\u2581\\u13ac\\u13d7\\u13cd\\u13a9\": 1079,\n    \"\\u2581\\u13a0\\u13a6\\u13d7\": 1080,\n    \"\\u2581\\u13ed\\u13c2\": 1081,\n    \"\\u2581\\u13a0\\u13c2\\u13d3\": 1082,\n    \"\\u13a7\\u13c2\": 1083,\n    \"\\u13db\\u13c1\\u13d7\": 1084,\n    \"\\u2581\\u13c1\": 1085,\n    \"\\u2581\\u13a3\\u13d3\\u13b8\\u13a2\": 1086,\n    \"\\u13a6\\u13c5\\u13af\\u13db\": 1087,\n    \"\\u13a2\\u13f3\\u13cd\\u13d7\": 1088,\n    \"e\": 1089,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13da\\u13b6\": 1090,\n    \"\\u13a9\\u13cd\\u13d7\": 1091,\n    \"\\u2581\\u13a5\\u13a9\": 1092,\n    \"\\u13cc\\u13db\": 1093,\n    \"\\u13c5\\u13d2\": 1094,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13f1\": 1095,\n    \"\\u2581\\u13f1\\u13e5\": 1096,\n    \"\\u2581\\u13c4\\u13e9\\u13c1\\u13b8\": 1097,\n    \"\\u2581\\u13d9\\u13db\": 1098,\n    \"\\u2581\\u13a4\\u13b6\\u13d0\\u13c5\": 1099,\n    \"\\u2581\\u13a0\\u13a6\\u13f4\\u13b5\": 1100,\n    \"\\u2581\\u13a0\\u13a7\\u13b5\\u13a2\": 1101,\n    \"\\u2581\\u13a0\\u13f0\\u13d9\\u13b3\\u13db\\u13d7\": 1102,\n    \"\\u2581\\u13e9\\u13cf\\u13d3\\u13c2\": 1103,\n    \"\\u2581\\u13d3\\u13cf\\u13b3\\u13db\": 1104,\n    \"\\u2581\\u13da\\u13ec\\u13e2\\u13d4\\u13c5\\u13a9\": 1105,\n    \"\\u2581\\u13d7\\u13d3\\u13c5\\u13d9\": 1106,\n    \"\\u2581\\u13a0\\u13a8\\u13f3\\u13e3\": 1107,\n    \"\\u2581\\u13f1\\u13c4\\u13cd\\u13d7\": 1108,\n    \"\\u2581\\u13d7\\u13a8\\u13eb\": 1109,\n    \"\\u2581\\u13e7\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 1110,\n    \"\\u2581\\u13a0\\u13b9\\u13f0\\u13b5\": 1111,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13c3\\u13b5\": 1112,\n    \"\\u2581\\u13e5\\u13c1\\u13ac\\u13a2\": 1113,\n    \"\\u2581\\u13c2\\u13e5\": 1114,\n    \"\\u2581\\u13a0\\u13e4\": 1115,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13d2\\u13af\": 1116,\n    \"\\u2581\\u13a8\\u13c2\": 1117,\n    \"\\u2581\\u13aa\\u13a9\": 1118,\n    \"\\u2581\\u13a2\\u13ac\": 1119,\n    \"\\u2581\\u13ab\\u13e2\\u13d7\": 1120,\n    \"\\u13af\\u13cd\\u13d9\\u13d7\": 1121,\n    \"\\u13a0\\u13c2\\u13b3\\u13cd\\u13d3\\u13b8\": 1122,\n    \"\\u13cd\\u13d9\": 1123,\n    \"\\u2581\\u13d7\\u13a9\": 1124,\n    \"\\u2581\\u13a7\\u13c1\\u13ac\\u13a2\": 1125,\n    \"\\u13cd\\u13ac\\u13be\": 1126,\n    \"\\u2581\\u13d1\": 1127,\n    \"\\u2581\\u13da\\u13c1\\u13e4\\u13b4\": 1128,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\\u13c9\\u13d7\": 1129,\n    \"\\u2581\\u13be\\u13c2\\u13a5\\u13c9\": 1130,\n    \"\\u2581\\u13a0\\u13b2\\u13a2\": 1131,\n    \"\\u13c5\\u13a2\": 1132,\n    \"\\u2581\\u13da\\u13d9\\u13a5\\u13a2\": 1133,\n    \"\\u13a8\\u13d2\": 1134,\n    \"\\u2581\\u13a0\\u13e6\\u13f4\": 1135,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13c2\\u13cd\\u13ac\": 1136,\n    \"\\u2581\\u13a4\\u13ec\\u13b8\": 1137,\n    \"\\u2581\\u13a3\\u13cf\": 1138,\n    \"t\": 1139,\n    \"\\u2581\\u13d7\\u13a6\\u13ab\\u13cd\\u13db\\u13d7\": 1140,\n    \"\\u2581\\u13cd\\u13c8\\u13cd\\u13d3\": 1141,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13a8\\u13c2\": 1142,\n    \"\\u2581\\u13b5\\u13eb\": 1143,\n    \"\\u2581\\u13a8\\u13e5\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 1144,\n    \"\\u2581\\u13a7\\u13c2\\u13a9\\u13d3\": 1145,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13a9\": 1146,\n    \"\\u2581\\u13da\\u13ec\\u13e2\\u13c5\\u13a9\": 1147,\n    \"\\u2581\\u13a2\\u13a9\\u13d9\\u13d3\": 1148,\n    \"\\u2581\\u13be\\u13cd\\u13a6\\u13c5\\u13be\": 1149,\n    \"\\u2581\\u13a4\\u13d7\\u13b4\\u13a9\": 1150,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13cd\\u13a9\": 1151,\n    \"\\u2581\\u13cd\\u13d4\\u13ef\": 1152,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b3\\u13a9\": 1153,\n    \"\\u2581\\u13a2\\u13f3\\u13cd\\u13d7\\u13c9\": 1154,\n    \"\\u2581\\u13a4\\u13c5\\u13cc\": 1155,\n    \"\\u2581\\u13a0\\u13e2\\u13d7\\u13f1\": 1156,\n    \"\\u2581\\u13a6\\u13b6\\u13d9\\u13d7\": 1157,\n    \"\\u13ec\": 1158,\n    \"\\u13d5\\u13a2\": 1159,\n    \"\\u2581\\u13a0\\u13f2\\u13a9\": 1160,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d8\\u13f3\": 1161,\n    \"\\u2581\\u13a4\\u13c2\\u13e5\": 1162,\n    \"\\u2581\\u13a4\\u13c5\\u13df\": 1163,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\": 1164,\n    \"\\u13d2\\u13ad\": 1165,\n    \"\\u2581\\u13a6\\u13b6\": 1166,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d7\": 1167,\n    \"\\u2581\\u13a6\\u13c5\\u13af\\u13db\": 1168,\n    \"\\u2581\\u13d5\\u13a8\": 1169,\n    \"\\u2581\\u13c2\\u13d3\": 1170,\n    \"\\u2581\\u13a1\\u13b2\\u13a2\": 1171,\n    \"\\u2581\\u13e5\\u13d5\": 1172,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\": 1173,\n    \"\\u13e4\\u13a2\": 1174,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13be\": 1175,\n    \"\\u2581\\u13f1\\u13d7\": 1176,\n    \"\\u2581\\u13c5\\u13d3\": 1177,\n    \"\\u2581\\u13d3\\u13ac\": 1178,\n    \"\\u2581\\u13a0\\u13d4\\u13b4\\u13d2\": 1179,\n    \"\\u13a0\\u13b4\": 1180,\n    \"\\u2581\\u13eb\\u13e3\": 1181,\n    \"\\u2581\\u13e6\\u13a9\": 1182,\n    \"\\u2581\\u13d3\\u13d3\\u13bf\\u13e9\\u13cd\\u13db\": 1183,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13d6\": 1184,\n    \"\\u2581\\u13c2\\u13da\\u13a9\\u13e8\\u13c2\\u13d2\": 1185,\n    \"\\u13da\\u13b5\\u13cd\\u13ac\\u13be\": 1186,\n    \"\\u2581\\u13d3\\u13c6\\u13d9\\u13a5\": 1187,\n    \"\\u2581\\u13a2\\u13a6\\u13a6\\u13db\": 1188,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13d7\": 1189,\n    \"\\u2581\\u13e7\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 1190,\n    \"\\u2581\\u13e9\\u13da\\u13b5\\u13cf\": 1191,\n    \"\\u2581\\u13a6\\u13b7\\u13ef\\u13cd\\u13d7\": 1192,\n    \"\\u2581\\u13aa\\u13cd\\u13da\": 1193,\n    \"\\u2581\\u13e7\\u13ef\\u13d6\\u13be\": 1194,\n    \"\\u13b4\\u13af\\u13d0\\u13d7\": 1195,\n    \"\\u2581\\u13e7\\u13c3\\u13f0\\u13c2\": 1196,\n    \"\\u2581\\u13d3\\u13a6\\u13b7\\u13e5\": 1197,\n    \"\\u2581\\u13c5\\u13db\\u13a9\\u13c5\\u13cf\\u13db\": 1198,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cd\\u13a8\\u13a2\": 1199,\n    \"\\u2581\\u13a9\": 1200,\n    \"\\u2581\\u13e7\\u13c2\\u13e2\\u13a9\": 1201,\n    \"\\u2581\\u13d7\\u13c2\\u13a6\\u13d9\\u13b5\": 1202,\n    \"\\u2581\\u13be\\u13ce\\u13b5\\u13d7\": 1203,\n    \"\\u2581\\u13a0\\u13a9\\u13c5\\u13cf\\u13d9\\u13af\": 1204,\n    \"\\u2581\\u13af\\u13b8\\u13af\\u13f3\": 1205,\n    \"\\u2581\\u13ac\\u13c2\\u13d7\\u13f3\": 1206,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13cf\": 1207,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13b2\": 1208,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13d7\\u13f1\": 1209,\n    \"\\u2581\\u13a0\\u13a9\\u13cf\": 1210,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e8\\u13a9\": 1211,\n    \"\\u2581\\u13ad\\u13be\\u13be\": 1212,\n    \"\\u2581\\u13a4\\u13e5\\u13b8\\u13a2\": 1213,\n    \"\\u13cd\\u13c6\": 1214,\n    \"\\u2581\\u13a0\\u13bc\": 1215,\n    \"\\u2581\\u13a2\\u13a6\\u13d8\": 1216,\n    \"\\u2581\\u13ed\\u13b7\\u13e4\\u13a2\": 1217,\n    \"\\u13c1\\u13af\": 1218,\n    \"\\u13cd\\u13c9\": 1219,\n    \"\\u2581\\u13a2\\u13ac\\u13c1\\u13d7\": 1220,\n    \"\\u13a0\\u13cb\\u13cc\": 1221,\n    \"\\u13a6\\u13d4\\u13b2\\u13be\": 1222,\n    \"\\u2581\\u13e9\\u13ef\": 1223,\n    \"\\u13cd\\u13ac\\u13a9\": 1224,\n    \"\\u13a1\\u13b5\": 1225,\n    \"\\u13c5\\u13be\": 1226,\n    \"\\u13cd\\u13a6\\u13c5\\u13a2\\u13cd\\u13d7\": 1227,\n    \"\\u2581\\u13ae\": 1228,\n    \"\\u13a9\\u13ce\": 1229,\n    \"\\u2581\\u13a4\\u13f2\\u13a2\": 1230,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13c5\\u13e8\": 1231,\n    \"\\u2581\\u13e5\\u13e3\": 1232,\n    \"\\u2581\\u13a2\\u13e4\\u13be\": 1233,\n    \"\\u13e4\\u13cd\\u13d7\": 1234,\n    \"\\u2581\\u13a0\\u13b4\\u13ec\": 1235,\n    \"\\u13b2\\u13cf\": 1236,\n    \"\\u2581\\u13a6\\u13db\\u13ac\": 1237,\n    \"\\u2581\\u13a6\\u13b3\\u13a8\\u13f4\": 1238,\n    \"\\u2581\\u13d5\\u13a6\\u13da\\u13b2\": 1239,\n    \"\\u2581\\u13d7\\u13a9\\u13a6\\u13f4\\u13b5\\u13a8\": 1240,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13b8\": 1241,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 1242,\n    \"\\u2581\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 1243,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c5\\u13db\": 1244,\n    \"\\u2581\\u13a4\\u13d5\\u13c5\": 1245,\n    \"\\u2581\\u13a0\\u13aa\": 1246,\n    \"\\u2581\\u13a6\\u13c4\\u13b8\": 1247,\n    \"\\u13f0\\u13b5\": 1248,\n    \"\\u2581\\u13c7\\u13c2\": 1249,\n    \"\\u2581\\u13e5\\u13a6\": 1250,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 1251,\n    \"\\u2581\\u13a2\\u13e5\\u13c8\": 1252,\n    \"c\": 1253,\n    \"\\u2581\\u13d7\\u13be\": 1254,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13ab\\u13d7\": 1255,\n    \"\\u2581\\u13d2\\u13a7\\u13d4\": 1256,\n    \"\\u2581\\u13a2\\u13f3\\u13d3\\u13b4\\u13a9\": 1257,\n    \"\\u2581\\u13c4\\u13c3\\u13af\\u13f3\\u13d2\\u13be\": 1258,\n    \"\\u2581\\u13a2\\u13e5\\u13e1\\u13f1\": 1259,\n    \"\\u2581\\u13a6\\u13b5\\u13c6\\u13cd\\u13aa\\u13af\": 1260,\n    \"\\u2581\\u13da\\u13d9\\u13a1\\u13a2\": 1261,\n    \"\\u2581\\u13d9\\u13b4\\u13db\": 1262,\n    \"\\u2581\\u13eb\\u13e5\\u13a2\\u13a6\": 1263,\n    \"\\u2581\\u13ce\\u13b7\": 1264,\n    \"\\u2581\\u13a0\\u13c2\\u13e3\\u13b3\\u13a9\": 1265,\n    \"\\u2581\\u13a2\\u13e4\\u13ef\\u13d4\\u13ae\\u13cd\\u13d7\": 1266,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13ce\\u13d7\": 1267,\n    \"\\u2581\\u13a2\\u13cc\\u13ef\": 1268,\n    \"\\u2581\\u13a2\\u13d7\\u13a6\\u13d4\\u13ad\": 1269,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\\u13a9\": 1270,\n    \"\\u2581\\u13c4\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\\u13a9\": 1271,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13ce\\u13ad\": 1272,\n    \"\\u2581\\u13d7\\u13b9\\u13d7\": 1273,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13d5\\u13cd\\u13a9\": 1274,\n    \"\\u2581\\u13a4\\u13af\\u13d0\\u13d7\": 1275,\n    \"\\u2581\\u13e7\\u13d9\\u13d3\\u13c6\\u13d3\": 1276,\n    \"\\u2581\\u13be\\u13c2\\u13a5\\u13a2\": 1277,\n    \"\\u13b5\\u13a6\": 1278,\n    \"\\u2581\\u13a0\\u13cf\\u13be\\u13cc\\u13c2\": 1279,\n    \"\\u2581\\u13a0\\u13ab\\u13f4\\u13d9\\u13d7\": 1280,\n    \"\\u2581\\u13d7\\u13a6\\u13aa\\u13d7\\u13f1\": 1281,\n    \"\\u2581\\u13a6\\u13be\\u13f0\\u13af\\u13cd\\u13d7\": 1282,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13d2\\u13af\": 1283,\n    \"\\u2581\\u13a4\\u13be\\u13eb\\u13f1\": 1284,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13a6\\u13c5\\u13a9\": 1285,\n    \"\\u2581\\u13d7\\u13e6\\u13e2\\u13d7\": 1286,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\": 1287,\n    \"\\u2581\\u13c1\\u13b3\": 1288,\n    \"\\u13c1\\u13b3\\u13c5\\u13af\": 1289,\n    \"\\u2581\\u13ed\\u13f4\\u13b4\\u13a2\": 1290,\n    \"\\u2581\\u13e9\\u13cd\\u13d7\": 1291,\n    \"\\u2581\\u13c9\\u13b3\\u13c3\": 1292,\n    \"\\u2581\\u13e7\\u13ea\": 1293,\n    \"\\u2581\\u13a0\\u13d7\\u13ad\": 1294,\n    \"\\u2581\\u13c2\\u13d5\": 1295,\n    \"\\u2581\\u13a4\\u13ea\\u13bf\\u13a2\": 1296,\n    \"\\u2581\\u13f4\\u13a9\": 1297,\n    \"\\u2581\\u13d7\\u13e6\": 1298,\n    \"\\u2581\\u13eb\\u13a6\": 1299,\n    \"\\u2581\\u13a2\\u13e4\\u13af\": 1300,\n    \"\\u2581\\u13c5\\u13db\": 1301,\n    \"\\u2581\\u13a6\\u13e5\": 1302,\n    \"\\u2581\\u13c4\\u13cd\\u13db\\u13a2\": 1303,\n    \"\\u2581\\u13a1\\u13d8\": 1304,\n    \"\\u13d7\\u13cd\\u13aa\": 1305,\n    \"\\u13c2\\u13cf\": 1306,\n    \"\\u13a1\\u13a2\": 1307,\n    \"\\u13a6\\u13d8\": 1308,\n    \"\\u13d5\\u13be\": 1309,\n    \"\\u2581\\u13da\\u13aa\\u13ae\": 1310,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13aa\": 1311,\n    \"\\u13a4\\u13c1\\u13b3\\u13c5\\u13af\": 1312,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13ae\\u13cd\\u13ac\": 1313,\n    \"\\u2581\\u13e7\\u13ea\\u13c5\\u13d2\": 1314,\n    \"\\u2581\\u13a4\\u13c3\\u13f4\\u13ac\": 1315,\n    \"\\u2581\\u13d3\\u13d3\\u13c1\\u13b8\": 1316,\n    \"\\u2581\\u13af\\u13ef\": 1317,\n    \"\\u13b2\\u13cd\\u13a9\": 1318,\n    \"\\u13c1\\u13b3\": 1319,\n    \"\\u13b6\\u13af\": 1320,\n    \"\\u13db\\u13ac\\u13a6\": 1321,\n    \"\\u2581\\u13a1\\u13c9\\u13d7\": 1322,\n    \"\\u2581\\u13a4\\u13c2\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\": 1323,\n    \"\\u13be\\u13dd\\u13a2\": 1324,\n    \"\\u2581Cr\": 1325,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13db\\u13bf\\u13d5\\u13a9\": 1326,\n    \"\\u2581\\u13cd\\u13a6\\u13da\\u13a9\": 1327,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13ad\": 1328,\n    \"\\u2581\\u13ce\\u13a9\\u13b5\": 1329,\n    \"\\u2581\\u13e7\\u13d3\\u13d5\\u13d2\\u13db\": 1330,\n    \"\\u2581\\u13d7\\u13c2\\u13ad\\u13c4\\u13b8\\u13af\": 1331,\n    \"\\u2581\\u13a1\\u13c8\\u13cc\": 1332,\n    \"\\u2581\\u13d4\\u13b7\\u13e3\": 1333,\n    \"\\u2581\\u13a0\\u13e6\\u13ad\\u13f4\": 1334,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13ef\": 1335,\n    \"\\u2581\\u13cc\\u13aa\\u13c2\\u13a8\": 1336,\n    \"\\u2581\\u13a2\\u13b3\\u13aa\": 1337,\n    \"\\u2581\\u13cd\\u13a9\\u13c3\\u13b2\\u13cf\": 1338,\n    \"\\u2581\\u13d7\\u13aa\\u13ea\\u13b5\\u13cd\\u13a9\": 1339,\n    \"\\u2581\\u13a4\\u13e9\\u13d9\\u13af\\u13f4\\u13d3\": 1340,\n    \"\\u2581\\u13a2\\u13f3\\u13d3\\u13b4\\u13c5\\u13db\": 1341,\n    \"\\u2581\\u13a4\\u13c2\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\\u13a9\": 1342,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c2\\u13d0\\u13d7\\u13f1\": 1343,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c1\\u13d7\\u13f1\": 1344,\n    \"\\u2581\\u13d9\\u13f0\": 1345,\n    \"\\u2581\\u13a4\\u13f0\\u13af\": 1346,\n    \"\\u2581\\u13a4\\u13ec\\u13d7\\u13a8\": 1347,\n    \"\\u2581\\u13d2\\u13ae\\u13f1\\u13e3\": 1348,\n    \"\\u2581\\u13a2\\u13ac\\u13c1\\u13af\": 1349,\n    \"\\u2581\\u13d3\\u13ef\\u13a2\": 1350,\n    \"\\u2581\\u13be\\u13cd\\u13a9\\u13c9\": 1351,\n    \"\\u2581\\u13c6\": 1352,\n    \"\\u2581\\u13a7\\u13b8\\u13a2\": 1353,\n    \"\\u13d9\\u13a9\": 1354,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 1355,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c5\\u13db\\u13a2\": 1356,\n    \"\\u13c1\\u13b4\\u13a2\": 1357,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13a2\": 1358,\n    \"\\u13d4\\u13c5\\u13ad\": 1359,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b4\\u13a2\": 1360,\n    \"\\u13d1\\u13f4\\u13be\": 1361,\n    \"\\u2581\\u13a6\\u13b8\\u13b3\\u13d7\\u13f3\": 1362,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13e1\\u13ac\\u13a2\": 1363,\n    \"\\u2581\\u13e3\\u13e4\\u13b5\\u13a6\": 1364,\n    \"\\u2581\\u13a1\\u13d3\": 1365,\n    \"\\u2581\\u13a8\\u13a6\": 1366,\n    \"\\u2581\\u13aa\\u13af\\u13d3\": 1367,\n    \"\\u13c1\\u13b8\\u13a9\": 1368,\n    \"\\u2581\\u13c2\\u13a6\\u13d7\": 1369,\n    \"\\u2581\\u13f4\\u13a6\": 1370,\n    \"\\u13c1\\u13b2\": 1371,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13d7\": 1372,\n    \"\\u2581\\u13d7\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\\u13f1\": 1373,\n    \"\\u2581\\u13f1\\u13c2\": 1374,\n    \"\\u2581\\u13ef\\u13c6\": 1375,\n    \"\\u2581\\u13d7\\u13a6\\u13d3\": 1376,\n    \"\\u2581\\u13af\\u13b8\": 1377,\n    \"\\u2581\\u13be\\u13cd\\u13a9\\u13f4\": 1378,\n    \"\\u2581\\u13be\\u13c2\": 1379,\n    \"\\u2581\\u13a6\\u13c3\\u13b8\\u13a5\\u13cd\\u13ac\": 1380,\n    \"\\u2581\\u13a7\\u13b3\\u13e9\\u13d7\\u13d2\": 1381,\n    \"\\u13a6\\u13d4\\u13ad\": 1382,\n    \"\\u13a2\\u13cd\\u13d7\": 1383,\n    \"\\u2581\\u13d7\\u13a6\\u13da\\u13b2\": 1384,\n    \"\\u2581\\u13a2\\u13e6\\u13af\\u13f3\\u13d2\": 1385,\n    \"\\u2581\\u13a0\\u13e4\\u13b5\\u13cd\\u13db\": 1386,\n    \"\\u13e5\\u13cc\": 1387,\n    \"\\u2581\\u13a6\\u13a8\": 1388,\n    \"\\u2581\\u13a0\\u13c3\": 1389,\n    \"\\u2581\\u13a8\\u13b3\": 1390,\n    \"\\u2581\\u13ed\\u13b6\\u13d2\": 1391,\n    \"\\u2581\\u13a0\\u13c6\\u13da\\u13b5\": 1392,\n    \"\\u2581\\u13a4\\u13c5\\u13d2\\u13c9\": 1393,\n    \"\\u2581\\u13a6\\u13c1\\u13cc\\u13a2\": 1394,\n    \"\\u13cd\\u13d4\\u13c2\": 1395,\n    \"\\u2581\\u13d9\\u13af\": 1396,\n    \"\\u2581\\u13cd\\u13c6\": 1397,\n    \"\\u2581\\u13e8\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\\u13a6\": 1398,\n    \"\\u2581\\u13e7\\u13d5\\u13d8\\u13f4\\u13d3\": 1399,\n    \"\\u2581\\u13d7\\u13df\\u13b6\\u13cd\\u13d4\\u13c5\\u13af\": 1400,\n    \"\\u2581\\u13d7\\u13d6\\u13b5\\u13d9\": 1401,\n    \"\\u2581\\u13a4\\u13aa\\u13cf\\u13d3\": 1402,\n    \"\\u2581\\u13e6\\u13d3\\u13c2\": 1403,\n    \"\\u2581\\u13a0\\u13c2\\u13eb\\u13c5\": 1404,\n    \"\\u2581\\u13f1\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13ad\": 1405,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 1406,\n    \"\\u2581\\u13a4\\u13a6\\u13be\\u13cd\\u13d3\": 1407,\n    \"\\u2581\\u13e7\\u13aa\\u13b3\": 1408,\n    \"\\u2581\\u13a2\\u13ef\\u13be\\u13db\\u13c1\\u13af\": 1409,\n    \"\\u2581\\u13ac\\u13e9\\u13df\\u13cd\\u13d7\": 1410,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13db\": 1411,\n    \"\\u2581\\u13e7\\u13cd\\u13d7\": 1412,\n    \"\\u2581\\u13aa\\u13af\\u13d7\\u13f3\": 1413,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 1414,\n    \"\\u2581\\u13a4\\u13da\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 1415,\n    \"\\u2581\\u13a4\\u13da\\u13b8\\u13d7\": 1416,\n    \"\\u2581\\u13a2\\u13e3\\u13e4\\u13b5\\u13a6\": 1417,\n    \"\\u2581\\u13e3\\u13c1\\u13b3\": 1418,\n    \"\\u2581\\u13a2\\u13a6\\u13a6\\u13d8\": 1419,\n    \"\\u13c1\\u13b5\": 1420,\n    \"\\u13aa\\u13af\": 1421,\n    \"\\u2581\\u13d7\\u13c6\\u13e4\\u13b5\\u13a6\": 1422,\n    \"\\u13db\\u13a6\": 1423,\n    \"\\u2581\\u13a1\\u13b5\\u13cd\\u13d7\": 1424,\n    \"\\u2581\\u13f1\\u13ac\": 1425,\n    \"\\u13c9\\u13c3\": 1426,\n    \"\\u2581\\u13e7\\u13d3\\u13c3\": 1427,\n    \"\\u13d5\\u13b5\": 1428,\n    \"\\u2581\\u13d9\\u13d3\": 1429,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13d4\": 1430,\n    \"\\u2581\\u13a3\\u13c2\\u13f1\": 1431,\n    \"\\u2581\\u13af\\u13a0\\u13cd\\u13a9\\u13c2\": 1432,\n    \"\\u13aa\\u13d7\": 1433,\n    \"\\u2581\\u13d7\\u13c6\": 1434,\n    \"\\u13ad\\u13c2\": 1435,\n    \"\\u2581\\u13c3\\u13e5\": 1436,\n    \"\\u13c1\\u13ae\\u13cd\\u13d7\": 1437,\n    \"\\u2581\\u13f1\\u13e8\": 1438,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13b8\\u13a2\": 1439,\n    \"\\u2581\\u13ed\\u13be\": 1440,\n    \"\\u2581\\u13c4\\u13ea\\u13d2\\u13a2\": 1441,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c5\\u13a2\": 1442,\n    \"\\u2581\\u13ef\\u13a9\": 1443,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\\u13b2\": 1444,\n    \"\\u2581\\u13de\\u13a6\": 1445,\n    \"\\u2581\\u13ac\\u13e9\\u13be\": 1446,\n    \"\\u13b7\\u13a6\": 1447,\n    \"\\u2581\\u13da\\u13b3\\u13cd\\u13ac\": 1448,\n    \"\\u2581\\u13a4\\u13c1\\u13e8\\u13a2\": 1449,\n    \"\\u2581\\u13eb\\u13d3\": 1450,\n    \"\\u2581\\u13a4\\u13a8\\u13d3\\u13b5\\u13f4\": 1451,\n    \"\\u2581\\u13a4\\u13c5\\u13cf\\u13f4\": 1452,\n    \"\\u2581\\u13ed\\u13ef\\u13c5\\u13ae\": 1453,\n    \"\\u13a9\\u13b6\": 1454,\n    \"\\u2581\\u13a0\\u13be\\u13a2\\u13d2\": 1455,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e8\": 1456,\n    \"\\u2581\\u13d5\\u13ad\\u13b7\\u13a8\": 1457,\n    \"\\u2581\\u13a6\\u13c5\\u13c5\": 1458,\n    \"\\u2581\\u13d5\\u13a9\": 1459,\n    \"\\u2581\\u13ed\\u13b7\\u13e8\": 1460,\n    \"\\u2581\\u13e7\\u13be\\u13cd\\u13d7\": 1461,\n    \"\\u2581\\u13a4\\u13d2\\u13a2\": 1462,\n    \"\\u2581\\u13d7\\u13e5\\u13be\\u13eb\": 1463,\n    \"\\u2581\\u13d0\\u13d3\\u13bb\": 1464,\n    \"\\u2581\\u13d3\\u13e3\": 1465,\n    \"\\u13cc\\u13b3\\u13d3\": 1466,\n    \"\\u2581\\u13a4\\u13b7\\u13af\\u13cd\\u13d7\": 1467,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13cd\\u13d7\": 1468,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13cf\": 1469,\n    \"\\u2581Perry\": 1470,\n    \"\\u2581\\u13e7\\u13a6\\u13be\\u13ee\": 1471,\n    \"\\u13da\\u13d3\\u13b4\\u13cd\\u13d9\\u13d7\": 1472,\n    \"\\u2581\\u13a5\\u13f3\\u13a9\": 1473,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d4\\u13f4\\u13d7\": 1474,\n    \"\\u2581\\u13a4\\u13a9\\u13e8\\u13d3\": 1475,\n    \"\\u2581\\u13a7\\u13c2\\u13a9\\u13db\": 1476,\n    \"\\u2581\\u13d7\\u13d5\\u13f2\\u13d7\": 1477,\n    \"\\u2581\\u13a4\\u13be\\u13f0\\u13af\\u13cd\\u13d7\": 1478,\n    \"\\u2581\\u13a4\\u13eb\\u13ef\": 1479,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13ac\": 1480,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13d4\\u13c5\\u13a9\": 1481,\n    \"\\u2581\\u13e7\\u13be\\u13a9\\u13b8\\u13d7\": 1482,\n    \"\\u2581\\u13d7\\u13d3\\u13d8\\u13c2\\u13d9\\u13af\": 1483,\n    \"\\u2581\\u13a4\\u13c1\\u13ab\\u13e5\\u13db\": 1484,\n    \"\\u2581\\u13d7\\u13aa\": 1485,\n    \"\\u2581\\u13a0\\u13c6\\u13c1\\u13b3\\u13c5\\u13af\": 1486,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\\u13af\": 1487,\n    \"\\u2581\\u13f3\\u13da\\u13b5\\u13cd\\u13a8\": 1488,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13d7\": 1489,\n    \"\\u2581\\u13a8\\u13b5\\u13cd\\u13ac\": 1490,\n    \"\\u2581\\u13c2\\u13d7\\u13a5\": 1491,\n    \"\\u2581\\u13da\\u13d3\\u13d8\\u13be\\u13a5\\u13a2\": 1492,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13ce\\u13a2\": 1493,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13db\\u13c1\\u13d7\\u13f1\": 1494,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13f3\": 1495,\n    \"\\u2581\\u13d3\\u13c6\": 1496,\n    \"\\u2581\\u13a3\\u13cf\\u13c9\": 1497,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b8\\u13a9\": 1498,\n    \"\\u2581\\u13a4\\u13bf\": 1499,\n    \"\\u2581\\u13d7\\u13a8\\u13d2\\u13a2\": 1500,\n    \"\\u2581\\u13f0\": 1501,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13aa\": 1502,\n    \"\\u2581\\u13a0\\u13eb\\u13c5\": 1503,\n    \"\\u13cd\\u13d5\\u13b8\\u13d7\": 1504,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cd\\u13ac\\u13a2\": 1505,\n    \"\\u13b4\\u13c2\": 1506,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d7\": 1507,\n    \"\\u13b5\\u13cd\\u13d9\\u13d7\": 1508,\n    \"\\u13a1\\u13af\": 1509,\n    \"\\u2581\\u13a2\\u13e7\": 1510,\n    \"\\u13b5\\u13cd\\u13d7\": 1511,\n    \"\\u2581\\u13c5\\u13a9\\u13c1\": 1512,\n    \"\\u13a1\\u13d7\\u13f1\": 1513,\n    \"\\u2581\\u13c1\\u13b0\": 1514,\n    \"\\u2581\\u13f3\\u13be\": 1515,\n    \"\\u2581\\u13be\\u13a5\\u13a2\": 1516,\n    \"\\u13cd\\u13d4\": 1517,\n    \"\\u2581\\u13a4\\u13c1\\u13e8\\u13af\": 1518,\n    \"n\": 1519,\n    \"\\u2581\\u13a0\\u13cf\\u13f4\\u13eb\\u13c3\": 1520,\n    \"\\u2581\\u13e3\\u13be\": 1521,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\": 1522,\n    \"\\u2581\\u13da\\u13f3\\u13aa\\u13db\\u13a2\": 1523,\n    \"\\u2581\\u13a2\\u13f3\\u13a2\": 1524,\n    \"\\u13d7\\u13cd\\u13a8\\u13a2\": 1525,\n    \"\\u2581\\u13a4\\u13e5\\u13b8\": 1526,\n    \"\\u13b6\\u13db\": 1527,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13af\\u13cd\\u13d7\": 1528,\n    \"\\u2581\\u13a4\\u13d5\\u13c1\\u13b8\": 1529,\n    \"\\u2581\\u13a0\\u13f0\\u13d9\\u13b3\\u13db\": 1530,\n    \"\\u2581\\u13a1\\u13d9\\u13b2\": 1531,\n    \"\\u13d7\\u13f3\": 1532,\n    \"\\u2581\\u13a0\\u13be\\u13d3\": 1533,\n    \"\\u2581\\u13a4\\u13d3\\u13c2\\u13b5\\u13a8\": 1534,\n    \"\\u2581\\u13a4\\u13b5\\u13c1\\u13e8\": 1535,\n    \"\\u2581\\u13d5\\u13e1\\u13ac\": 1536,\n    \"\\u2581\\u13d3\\u13c1\\u13e9\\u13d7\\u13d2\": 1537,\n    \"\\u2581\\u13d5\\u13a8\\u13cc\\u13d7\\u13d2\": 1538,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13b4\": 1539,\n    \"\\u2581\\u13a0\\u13c6\\u13da\\u13b5\\u13cd\\u13ac\": 1540,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13cd\\u13d7\": 1541,\n    \"\\u2581\\u13b7\\u13c8\\u13c2\": 1542,\n    \"\\u2581\\u13d7\\u13c2\\u13b5\\u13a0\\u13c5\\u13af\\u13db\": 1543,\n    \"\\u2581\\u13a2\\u13c8\\u13ac\\u13a2\": 1544,\n    \"\\u2581\\u13b9\\u13cf\\u13d9\\u13c2\": 1545,\n    \"\\u2581\\u13de\\u13a9\\u13f3\": 1546,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c5\\u13df\": 1547,\n    \"\\u2581\\u13ac\\u13d4\\u13c2\\u13d3\\u13cd\\u13d7\": 1548,\n    \"\\u2581\\u13a0\\u13aa\\u13c4\": 1549,\n    \"\\u2581\\u13cc\\u13ba\\u13b5\\u13f1\": 1550,\n    \"\\u2581\\u13a0\\u13d9\\u13b3\\u13c5\\u13cd\\u13d7\": 1551,\n    \"\\u2581\\u13a9\\u13df\": 1552,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13d9\\u13d7\": 1553,\n    \"\\u2581\\u13a0\\u13eb\\u13c4\\u13e3\": 1554,\n    \"\\u2581\\u13a0\\u13df\\u13b6\\u13cd\\u13d7\": 1555,\n    \"\\u2581\\u13a2\\u13e8\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 1556,\n    \"\\u2581\\u13a2\\u13f3\\u13ea\\u13c5\\u13cd\\u13d7\": 1557,\n    \"\\u2581\\u13e7\\u13cd\\u13c6\\u13c5\\u13be\": 1558,\n    \"\\u2581\\u13a1\\u13cf\\u13f1\": 1559,\n    \"\\u2581\\u13a4\\u13ec\\u13da\\u13af\": 1560,\n    \"\\u2581\\u13a4\\u13ec\\u13da\\u13af\\u13f3\": 1561,\n    \"\\u2581\\u13a0\\u13e5\\u13be\\u13dd\\u13a2\": 1562,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\\u13cd\\u13d7\": 1563,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c5\\u13d3\": 1564,\n    \"\\u2581\\u13a0\\u13d3\\u13af\": 1565,\n    \"\\u2581\\u13ce\\u13b3\\u13f1\": 1566,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13cd\\u13d7\\u13f1\": 1567,\n    \"\\u2581\\u13d4\\u13b5\\u13e7\\u13c8\": 1568,\n    \"\\u13a4\\u13c5\": 1569,\n    \"\\u2581\\u13a3\\u13c1\": 1570,\n    \"\\u2581\\u13da\\u13ef\": 1571,\n    \"\\u2581\\u13e4\\u13ae\\u13a2\": 1572,\n    \"\\u13b6\\u13d7\": 1573,\n    \"\\u2581\\u13a0\\u13c1\\u13ae\\u13a2\": 1574,\n    \"\\u2581\\u13da\\u13b4\\u13c1\\u13a2\": 1575,\n    \"\\u2581\\u13f0\\u13ad\": 1576,\n    \"\\u2581\\u13a0\\u13c1\\u13ad\": 1577,\n    \"\\u2581\\u13d0\\u13a2\\u13f1\": 1578,\n    \"\\u2581\\u13f1\\u13d7\\u13e3\": 1579,\n    \"\\u13be\\u13cf\": 1580,\n    \"\\u13e8\\u13af\": 1581,\n    \"\\u2581\\u13a2\\u13f3\\u13be\": 1582,\n    \"\\u2581\\u13a0\\u13ac\": 1583,\n    \"\\u2581\\u13d3\\u13e8\": 1584,\n    \"\\u2581\\u13a6\\u13cd\\u13a9\\u13b8\\u13a2\": 1585,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13c9\\u13d7\": 1586,\n    \"\\u13cd\\u13ca\": 1587,\n    \"\\u13cd\\u13d7\\u13cd\\u13ac\": 1588,\n    \"\\u2581\\u13a4\\u13a8\\u13f3\\u13af\": 1589,\n    \"\\u2581\\u13a2\\u13d3\": 1590,\n    \"\\u2581\\u13a4\\u13ec\\u13b5\": 1591,\n    \"\\u2581\\u13d9\\u13af\\u13f1\": 1592,\n    \"\\u2581\\u13a0\\u13ce\\u13a9\": 1593,\n    \"\\u2581\\u13a0\\u13dc\": 1594,\n    \"\\u13db\\u13d7\": 1595,\n    \"\\u2581\\u13da\\u13b4\\u13c1\": 1596,\n    \"\\u2581\\u13a4\\u13c1\\u13c5\\u13ce\": 1597,\n    \"\\u2581\\u13a4\\u13b8\": 1598,\n    \"\\u2581\\u13d3\\u13be\\u13d3\": 1599,\n    \"a\": 1600,\n    \"\\u13e0\\u13be\\u13cd\\u13d7\": 1601,\n    \"\\u13db\\u13af\": 1602,\n    \"\\u13b8\\u13c9\\u13d9\\u13d7\": 1603,\n    \"\\u13db\\u13ad\": 1604,\n    \"\\u13b8\\u13c9\\u13d7\\u13f3\": 1605,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\": 1606,\n    \"\\u2581\\u13a0\\u13c2\\u13d9\\u13be\\u13a5\": 1607,\n    \"\\u13c5\\u13d2\\u13a9\": 1608,\n    \"\\u2581\\u13d4\\u13b5\\u13ad\": 1609,\n    \"\\u2581\\u13c4\\u13c2\": 1610,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13c5\\u13d9\": 1611,\n    \"\\u2581\\u13a1\\u13d7\": 1612,\n    \"\\u2581\\u13ac\\u13c6\": 1613,\n    \"\\u13a0\\u13ef\": 1614,\n    \"\\u2581\\u13e8\\u13cd\\u13a9\\u13c3\": 1615,\n    \"\\u2581\\u13a4\\u13f0\\u13e4\": 1616,\n    \"\\u2581\\u13a0\\u13c6\\u13a7\\u13db\": 1617,\n    \"\\u2581\\u13d3\\u13e0\\u13af\\u13cd\\u13db\": 1618,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13b2\": 1619,\n    \"\\u2581\\u13ed\\u13b6\\u13ce\": 1620,\n    \"\\u2581\\u13a0\\u13be\\u13db\": 1621,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13ce\": 1622,\n    \"\\u2581\\u13d7\\u13d3\": 1623,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13d7\": 1624,\n    \"\\u2581\\u13cf\\u13a9\\u13bb\": 1625,\n    \"\\u2581\\u13a0\\u13e5\\u13a6\\u13d8\\u13d7\\u13cd\\u13d7\": 1626,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\": 1627,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13b5\": 1628,\n    \"\\u2581\\u13aa\\u13ea\\u13b3\": 1629,\n    \"\\u13d0\\u13a2\": 1630,\n    \"\\u2581\\u13a4\\u13d5\\u13b0\\u13af\\u13cd\\u13d7\": 1631,\n    \"\\u2581\\u13a2\\u13f3\\u13db\\u13c1\\u13d7\": 1632,\n    \"y\": 1633,\n    \"\\u2581\\u13a6\\u13b7\\u13ef\\u13cd\\u13d8\": 1634,\n    \"\\u2581\\u13a2\\u13cf\\u13ba\\u13b5\": 1635,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d3\\u13e9\\u13db\\u13ce\\u13a2\": 1636,\n    \"\\u2581\\u13a4\\u13b5\\u13d7\\u13e8\": 1637,\n    \"ett\": 1638,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13c2\\u13b6\\u13d2\\u13af\": 1639,\n    \"\\u2581\\u13d1\\u13be\\u13d9\\u13d3\\u13c6\\u13cd\\u13d7\": 1640,\n    \"\\u2581\\u13a2\\u13ef\\u13c5\\u13d9\": 1641,\n    \"\\u2581\\u13d7\\u13ac\\u13d4\\u13c2\\u13d3\\u13cd\\u13d7\": 1642,\n    \"\\u2581\\u13a2\\u13a6\\u13ea\\u13cd\\u13d7\": 1643,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13ea\\u13ce\\u13b8\\u13a9\": 1644,\n    \"\\u2581\\u13a4\\u13d3\\u13b5\": 1645,\n    \"\\u2581\\u13d7\\u13f0\\u13d9\\u13b3\\u13db\\u13d7\": 1646,\n    \"\\u2581\\u13a0\\u13d6\\u13b5\\u13d9\": 1647,\n    \"\\u2581\\u13ad\\u13e9\\u13e7\": 1648,\n    \"\\u2581\\u13da\\u13d8\\u13c5\\u13ce\": 1649,\n    \"\\u2581\\u13a4\\u13b4\\u13c2\\u13d9\\u13b8\": 1650,\n    \"\\u2581\\u13d5\\u13b9\\u13cd\\u13a6\": 1651,\n    \"\\u2581\\u13a0\\u13c2\\u13a8\\u13be\\u13c2\": 1652,\n    \"\\u2581\\u13a0\\u13eb\\u13d2\\u13d7\\u13f1\": 1653,\n    \"\\u2581\\u13d7\\u13cd\\u13d3\\u13d3\\u13c5\\u13df\": 1654,\n    \"\\u2581\\u13a6\\u13c2\\u13a6\\u13d4\": 1655,\n    \"\\u2581\\u13e3\\u13d3\\u13b5\\u13a2\": 1656,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d3\\u13ad\": 1657,\n    \"\\u2581\\u13cc\\u13be\\u13f1\": 1658,\n    \"\\u2581\\u13e5\\u13da\\u13d9\\u13a5\": 1659,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13e4\\u13a2\": 1660,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b3\\u13c5\\u13af\": 1661,\n    \"\\u2581\\u13a0\\u13aa\\u13d9\\u13d7\": 1662,\n    \"\\u2581\\u13d9\\u13f1\\u13e8\": 1663,\n    \"\\u2581\\u13a4\\u13be\\u13e0\\u13be\\u13cd\\u13d7\": 1664,\n    \"\\u2581\\u13d7\\u13e6\\u13e2\\u13d9\\u13d7\": 1665,\n    \"\\u2581\\u13a4\\u13be\\u13f0\\u13af\\u13cd\\u13d7\\u13f3\": 1666,\n    \"\\u2581\\u13ce\\u13bb\": 1667,\n    \"\\u2581\\u13a4\\u13cf\\u13e9\": 1668,\n    \"\\u2581\\u13a4\\u13ec\\u13da\\u13e8\": 1669,\n    \"\\u2581\\u13ae\\u13a6\": 1670,\n    \"\\u2581\\u13c1\\u13b2\\u13be\": 1671,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d3\": 1672,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13b5\\u13cd\\u13d3\": 1673,\n    \"\\u13a2\\u13f3\": 1674,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13b8\\u13ad\": 1675,\n    \"\\u2581\\u13a4\\u13c2\\u13af\\u13cd\\u13d7\\u13f1\": 1676,\n    \"\\u2581\\u13a2\\u13a8\": 1677,\n    \"\\u2581\\u13eb\\u13d7\": 1678,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13af\\u13c1\": 1679,\n    \"\\u2581\\u13a4\\u13df\\u13cd\\u13d3\": 1680,\n    \"\\u2581\\u13a2\\u13ac\\u13d3\": 1681,\n    \"\\u2581\\u13a4\\u13b7\\u13af\\u13cd\\u13d7\\u13f1\": 1682,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13cd\\u13ac\\u13a9\": 1683,\n    \"\\u2581\\u13c8\\u13b3\": 1684,\n    \"\\u13e9\\u13db\\u13b2\": 1685,\n    \"\\u2581\\u13a2\\u13ac\\u13d2\": 1686,\n    \"\\u2581\\u13d7\\u13c2\\u13c5\\u13cc\\u13d7\": 1687,\n    \"\\u2581\\u13a0\\u13b1\\u13cd\\u13d5\": 1688,\n    \"\\u2581\\u13a0\\u13c1\\u13a9\": 1689,\n    \"\\u13a8\\u13f3\\u13ce\\u13cd\\u13d7\": 1690,\n    \"\\u2581\\u13a2\\u13be\": 1691,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c5\\u13a2\": 1692,\n    \"\\u2581\\u13d3\\u13c1\\u13e9\\u13d7\\u13d2\\u13a2\": 1693,\n    \"\\u2581\\u13d5\\u13ad\\u13b7\\u13a8\\u13a2\": 1694,\n    \"\\u2581\\u13d9\\u13a9\": 1695,\n    \"\\u13e0\": 1696,\n    \"\\u2581\\u13a6\\u13c2\": 1697,\n    \"\\u2581\\u13d5\\u13a6\\u13db\": 1698,\n    \"\\u13c3\\u13ae\\u13ad\": 1699,\n    \"\\u2581\\u13a8\\u13f4\\u13a2\": 1700,\n    \"\\u13a5\\u13cd\\u13ac\": 1701,\n    \"\\u13a5\\u13a2\": 1702,\n    \"\\u13b3\\u13c5\\u13af\": 1703,\n    \"\\u13aa\\u13b5\\u13f0\\u13cd\\u13a9\": 1704,\n    \"\\u13e9\\u13db\\u13d7\": 1705,\n    \"\\u13d1\": 1706,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\": 1707,\n    \"\\u2581\\u13a0\\u13d9\": 1708,\n    \"\\u2581\\u13af\\u13b3\": 1709,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\": 1710,\n    \"\\u2581\\u13d7\\u13e4\": 1711,\n    \"\\u2581\\u13a4\\u13c2\\u13e0\\u13f1\": 1712,\n    \"\\u13c9\\u13f0\\u13c3\": 1713,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\": 1714,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13b4\\u13b0\\u13d2\": 1715,\n    \"\\u2581\\u13a4\\u13c7\\u13d3\\u13b8\": 1716,\n    \"\\u2581\\u13d7\\u13d7\": 1717,\n    \"\\u13a6\\u13db\": 1718,\n    \"\\u2581\\u13e3\\u13c9\": 1719,\n    \"\\u13a1\\u13ad\": 1720,\n    \"\\u2581\\u13a6\\u13e5\\u13ef\": 1721,\n    \"\\u2581\\u13d4\\u13b5\\u13c1\\u13a2\": 1722,\n    \"\\u2581\\u13e7\\u13be\\u13d3\": 1723,\n    \"\\u13c5\\u13df\": 1724,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 1725,\n    \"\\u13bf\": 1726,\n    \"\\u2581\\u13ef\\u13be\": 1727,\n    \"\\u13b8\\u13be\": 1728,\n    \"\\u2581\\u13a6\\u13c1\\u13b2\": 1729,\n    \"\\u2581\\u13a4\\u13f4\": 1730,\n    \"\\u13b5\\u13f1\": 1731,\n    \"\\u13db\\u13c5\": 1732,\n    \"\\u2581\\u13a4\\u13da\\u13b5\\u13cd\\u13a8\": 1733,\n    \"\\u2581\\u13c1\\u13b3\\u13a9\": 1734,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 1735,\n    \"\\u2581\\u13ed\\u13f4\\u13b4\": 1736,\n    \"\\u13ef\\u13d6\\u13c5\": 1737,\n    \"\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\\u13a9\": 1738,\n    \"\\u2581\\u13d9\\u13d3\\u13b8\": 1739,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c5\": 1740,\n    \"\\u2581\\u13a1\\u13ae\": 1741,\n    \"\\u2581\\u13d7\\u13c1\\u13b2\": 1742,\n    \"\\u13b2\\u13cd\\u13ac\": 1743,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 1744,\n    \"\\u2581\\u13a4\\u13c1\\u13b8\": 1745,\n    \"\\u13b1\": 1746,\n    \"\\u2581\\u13a4\\u13db\\u13c1\\u13a2\": 1747,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13be\\u13cf\\u13c2\\u13d9\\u13af\": 1748,\n    \"\\u2581\\u13ef\\u13a6\\u13d4\\u13ae\": 1749,\n    \"\\u2581\\u13a0\\u13b5\\u13f0\\u13be\": 1750,\n    \"\\u2581\\u13a6\\u13e3\\u13c4\\u13b3\": 1751,\n    \"\\u2581\\u13a0\\u13e8\\u13cd\\u13d9\\u13d7\": 1752,\n    \"\\u2581\\u13e7\\u13a6\\u13d2\\u13cd\\u13d7\": 1753,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13b5\\u13cd\\u13d9\\u13d7\": 1754,\n    \"\\u2581\\u13a0\\u13d2\\u13ac\": 1755,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 1756,\n    \"\\u2581\\u13d7\\u13e5\\u13f2\\u13b5\": 1757,\n    \"\\u2581\\u13d7\\u13c2\\u13cf\\u13d7\": 1758,\n    \"\\u2581\\u13a0\\u13e4\\u13b7\\u13a9\": 1759,\n    \"\\u2581\\u13e5\\u13c4\\u13ea\\u13ce\\u13a2\": 1760,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13b7\\u13eb\": 1761,\n    \"\\u2581\\u13e7\\u13b3\\u13cf\\u13d5\\u13c2\": 1762,\n    \"\\u2581\\u13a4\\u13db\": 1763,\n    \"\\u2581\\u13eb\\u13a6\\u13b7\\u13a9\": 1764,\n    \"\\u2581\\u13e5\\u13cd\\u13da\": 1765,\n    \"\\u2581\\u13a4\\u13be\\u13b3\\u13c5\\u13af\": 1766,\n    \"\\u2581\\u13d7\\u13c2\\u13f0\\u13b8\": 1767,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13b4\\u13d2\": 1768,\n    \"\\u2581\\u13ab\\u13ab\": 1769,\n    \"\\u13ef\\u13c5\\u13db\": 1770,\n    \"\\u13b5\\u13f0\\u13a2\\u13b6\\u13af\\u13cd\\u13d7\": 1771,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\\u13f1\": 1772,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a8\\u13db\": 1773,\n    \"\\u2581\\u13cf\\u13f2\": 1774,\n    \"\\u2581\\u13ad\\u13eb\\u13c2\\u13e8\": 1775,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13d7\": 1776,\n    \"\\u2581\\u13a2\\u13f3\\u13cd\\u13d8\": 1777,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 1778,\n    \"\\u2581\\u13da\\u13be\\u13d3\": 1779,\n    \"\\u2581\\u13ab\\u13b4\": 1780,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13db\\u13a9\": 1781,\n    \"\\u2581\\u13ed\\u13c2\\u13b6\\u13ce\\u13a2\": 1782,\n    \"\\u13a6\\u13d9\\u13c3\": 1783,\n    \"\\u2581\\u13d7\\u13a9\\u13cf\": 1784,\n    \"\\u2581\\u13a0\\u13c6\\u13da\\u13b5\\u13ad\": 1785,\n    \"\\u2581\\u13a0\\u13aa\\u13e9\\u13db\\u13d7\": 1786,\n    \"\\u2581\\u13d3\\u13c5\\u13c5\": 1787,\n    \"\\u2581\\u13c2\\u13aa\\u13af\\u13b8\\u13be\\u13c9\": 1788,\n    \"\\u2581\\u13a4\\u13f2\\u13e8\": 1789,\n    \"\\u2581\\u13d9\\u13a6\": 1790,\n    \"\\u2581\\u13e5\\u13a8\\u13f3\\u13a2\": 1791,\n    \"\\u2581\\u13f1\\u13a8\\u13d0\\u13a2\": 1792,\n    \"\\u13b3\\u13bb\": 1793,\n    \"\\u13f4\\u13eb\": 1794,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 1795,\n    \"\\u2581\\u13a8\\u13b5\\u13a0\": 1796,\n    \"\\u2581\\u13a1\\u13ae\\u13cd\\u13d7\": 1797,\n    \"\\u2581\\u13a1\\u13a9\": 1798,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 1799,\n    \"\\u2581\\u13a0\\u13c1\": 1800,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13b2\\u13a2\": 1801,\n    \"\\u2581\\u13a2\\u13a6\\u13e4\\u13b5\\u13a6\": 1802,\n    \"\\u2581\\u13aa\\u13a8\": 1803,\n    \"\\u2581\\u13a1\\u13d9\\u13b2\\u13a2\": 1804,\n    \"\\u2581\\u13d7\\u13c1\\u13b2\\u13a2\": 1805,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13c5\": 1806,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13d7\": 1807,\n    \"\\u2581\\u13a0\\u13d7\": 1808,\n    \"\\u2581\\u13d0\": 1809,\n    \"\\u2581\\u13a1\\u13be\": 1810,\n    \"\\u2581\\u13c2\\u13d9\\u13d3\\u13f3\": 1811,\n    \"\\u2581\\u13c2\\u13aa\\u13af\\u13b8\\u13be\": 1812,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e4\\u13a2\": 1813,\n    \"\\u2581\\u13c2\\u13e5\\u13a5\\u13a2\": 1814,\n    \"\\u13a6\\u13d7\\u13d3\": 1815,\n    \"\\u2581\\u13e7\\u13c5\": 1816,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\": 1817,\n    \"\\u2581\\u13a0\\u13c2\\u13d0\": 1818,\n    \"\\u2581\\u13a0\\u13cb\\u13d2\\u13c9\": 1819,\n    \"\\u2581\\u13e3\\u13da\": 1820,\n    \"\\u2581\\u13cc\": 1821,\n    \"\\u2581\\u13f4\\u13ac\": 1822,\n    \"\\u2581\\u13e4\\u13e3\": 1823,\n    \"\\u13e7\\u13c8\\u13cd\\u13d7\": 1824,\n    \"\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 1825,\n    \"\\u2581\\u13aa\\u13af\\u13cd\\u13a9\\u13c2\": 1826,\n    \"\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\": 1827,\n    \"\\u13e2\\u13d9\\u13d7\": 1828,\n    \"\\u13b3\\u13d7\": 1829,\n    \"\\u13e3\\u13d8\": 1830,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\": 1831,\n    \"\\u2581\\u13da\\u13ea\": 1832,\n    \"\\u13c2\\u13b8\": 1833,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13ec\": 1834,\n    \"\\u13b9\": 1835,\n    \"\\u2581\\u13ce\\u13b3\": 1836,\n    \"\\u13a6\\u13b6\\u13c1\\u13db\": 1837,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13a6\\u13c5\": 1838,\n    \"\\u2581\\u13a1\\u13b3\\u13ea\": 1839,\n    \"\\u2581\\u13ce\": 1840,\n    \"\\u2581\\u13d3\\u13eb\\u13d2\": 1841,\n    \"\\u2581\\u13a2\\u13f3\\u13ea\": 1842,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13e8\": 1843,\n    \"\\u13e9\\u13ac\\u13d8\": 1844,\n    \"\\u2581\\u13da\\u13c1\\u13b4\": 1845,\n    \"\\u2581\\u13c4\\u13db\\u13c5\": 1846,\n    \"\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13db\": 1847,\n    \"\\u2581\\u13a1\\u13dd\\u13ea\": 1848,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13db\": 1849,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13a9\\u13cd\\u13d7\": 1850,\n    \"\\u2581\\u13a0\\u13db\\u13aa\\u13d7\": 1851,\n    \"\\u2581\\u13ac\\u13cd\\u13a6\\u13a2\\u13cd\\u13d3\\u13a9\": 1852,\n    \"\\u2581\\u13a0\\u13d7\\u13c6\\u13b8\\u13d5\\u13f2\": 1853,\n    \"\\u2581\\u13c2\\u13a6\\u13c5\\u13af\\u13ce\\u13cd\\u13d7\": 1854,\n    \"\\u2581\\u13a0\\u13c2\\u13cc\\u13da\\u13cf\": 1855,\n    \"\\u2581\\u13c4\\u13dc\\u13cf\\u13db\\u13d2\\u13be\": 1856,\n    \"\\u2581\\u13cc\\u13ef\\u13c2\": 1857,\n    \"\\u2581\\u13a4\\u13b5\\u13aa\\u13b2\\u13cd\\u13d7\": 1858,\n    \"\\u2581\\u13d7\\u13c1\\u13b6\\u13d9\\u13d7\": 1859,\n    \"\\u2581\\u13e7\\u13c3\\u13d1\\u13b6\\u13e8\\u13af\": 1860,\n    \"\\u2581\\u13e5\\u13d4\\u13a6\": 1861,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\\u13cd\\u13d4\\u13c5\\u13af\": 1862,\n    \"\\u2581\\u13e7\\u13be\\u13e6\\u13af\\u13cd\\u13d7\": 1863,\n    \"\\u2581\\u13a2\\u13e8\\u13d4\\u13f2\\u13ce\\u13ad\": 1864,\n    \"\\u2581\\u13e7\\u13be\\u13b3\\u13cf\\u13d5\\u13c2\": 1865,\n    \"\\u2581\\u13b3\\u13cf\\u13b3\": 1866,\n    \"\\u2581\\u13a2\\u13f3\\u13d3\\u13a8\\u13db\": 1867,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 1868,\n    \"\\u2581\\u13a2\\u13a9\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 1869,\n    \"\\u2581\\u13be\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 1870,\n    \"\\u2581\\u13a4\\u13da\\u13eb\\u13db\": 1871,\n    \"\\u2581\\u13eb\\u13c2\\u13a6\\u13b5\\u13cd\\u13d3\": 1872,\n    \"\\u2581\\u13eb\\u13c4\\u13d2\\u13b8\": 1873,\n    \"\\u2581\\u13a3\\u13cc\\u13c2\": 1874,\n    \"\\u2581\\u13a3\\u13a6\\u13c1\\u13b3\\u13c5\\u13af\": 1875,\n    \"\\u2581\\u13a4\\u13f4\\u13e3\": 1876,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13c5\\u13ae\": 1877,\n    \"\\u2581\\u13a6\\u13f0\\u13cc\\u13d7\": 1878,\n    \"\\u2581\\u13e4\\u13c8\": 1879,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13ef\": 1880,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13bf\\u13a2\": 1881,\n    \"\\u2581\\u13ac\\u13aa\\u13e9\\u13db\\u13d7\": 1882,\n    \"\\u2581\\u13d7\\u13ef\\u13d6\\u13be\": 1883,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\": 1884,\n    \"\\u2581\\u13a2\\u13a6\\u13ea\\u13db\": 1885,\n    \"\\u2581\\u13a4\\u13b5\\u13d1\\u13eb\\u13d3\": 1886,\n    \"\\u13ad\\u13d7\": 1887,\n    \"\\u2581\\u13a4\\u13a6\\u13c3\\u13e9\": 1888,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13b5\\u13a2\": 1889,\n    \"\\u13db\\u13f3\\u13a8\\u13d7\": 1890,\n    \"\\u2581\\u13a2\\u13f3\\u13c5\\u13c1\\u13d7\\u13f1\": 1891,\n    \"\\u2581\\u13a2\\u13be\\u13d3\": 1892,\n    \"\\u2581\\u13aa\\u13a8\\u13f1\": 1893,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13c5\\u13af\": 1894,\n    \"\\u2581\\u13a4\\u13b4\\u13eb\\u13cd\\u13d4\\u13c5\": 1895,\n    \"\\u13d4\\u13f2\\u13ce\\u13b4\": 1896,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13d7\": 1897,\n    \"\\u2581\\u13a2\\u13cd\\u13d7\": 1898,\n    \"\\u2581\\u13e3\\u13c1\\u13ae\\u13a2\": 1899,\n    \"\\u2581\\u13e7\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 1900,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\\u13a0\\u13c5\\u13af\\u13db\": 1901,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c1\\u13b8\\u13a9\": 1902,\n    \"\\u2581\\u13da\\u13f3\\u13aa\\u13d7\": 1903,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13a2\": 1904,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13a0\\u13c1\\u13b6\\u13af\": 1905,\n    \"\\u2581\\u13a4\\u13d4\\u13b7\\u13a9\\u13cd\\u13a9\": 1906,\n    \"\\u2581\\u13e5\\u13e5\": 1907,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13db\\u13c1\": 1908,\n    \"\\u2581\\u13ed\\u13b6\\u13d2\\u13a9\": 1909,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13ad\": 1910,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a8\": 1911,\n    \"\\u2581\\u13e7\\u13b5\\u13a2\": 1912,\n    \"\\u2581\\u13be\\u13a5\\u13c2\\u13f3\": 1913,\n    \"\\u2581\\u13a0\\u13d3\\u13f0\\u13cd\": 1914,\n    \"\\u2581\\u13d3\\u13e0\\u13af\\u13cd\\u13db\\u13a2\": 1915,\n    \"\\u2581\\u13d5\\u13a8\\u13cc\\u13d7\\u13d2\\u13a2\": 1916,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 1917,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\": 1918,\n    \"\\u2581\\u13ad\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 1919,\n    \"\\u2581\\u13a3\\u13e3\": 1920,\n    \"\\u2581\\u13cd\\u13aa\\u13af\": 1921,\n    \"\\u13d7\\u13cd\\u13a8\": 1922,\n    \"\\u13cc\\u13d8\": 1923,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\\u13b8\\u13a9\": 1924,\n    \"\\u2581\\u13a7\\u13c1\\u13a2\\u13cd\\u13d7\": 1925,\n    \"\\u13c5\\u13cd\\u13d7\": 1926,\n    \"an\": 1927,\n    \"\\u13a6\\u13d8\\u13cd\\u13d9\\u13d7\": 1928,\n    \"\\u2581\\u13d1\\u13d3\\u13b5\\u13c1\": 1929,\n    \"\\u2581\\u13a4\\u13e3\\u13db\": 1930,\n    \"\\u2581\\u13f3\\u13c2\": 1931,\n    \"\\u2581\\u13d9\\u13f3\": 1932,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\": 1933,\n    \"\\u2581\\u13e5\\u13ef\": 1934,\n    \"\\u13b5\\u13cf\": 1935,\n    \"\\u2581\\u13ac\\u13d7\\u13cd\\u13ac\\u13a2\": 1936,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\": 1937,\n    \"\\u13c3\\u13af\\u13ce\\u13b8\": 1938,\n    \"\\u2581\\u13a4\\u13b4\\u13c5\": 1939,\n    \"\\u2581\\u13a0\\u13f0\\u13b8\\u13d7\": 1940,\n    \"\\u2581\\u13f3\\u13e9\": 1941,\n    \"\\u2581\\u13da\\u13c5\": 1942,\n    \"\\u13b5\\u13cd\\u13d4\\u13c5\": 1943,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13db\\u13a2\": 1944,\n    \"\\u13cd\\u13d4\\u13c5\\u13a9\": 1945,\n    \"\\u2581\\u13a4\\u13d5\": 1946,\n    \"\\u2581\\u13a4\\u13f2\\u13c9\": 1947,\n    \"\\u13c1\\u13e5\": 1948,\n    \"\\u2581\\u13e4\\u13a9\": 1949,\n    \"\\u13ab\": 1950,\n    \"\\u2581\\u13aa\\u13af\\u13db\": 1951,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d9\\u13cd\\u13a9\\u13c2\": 1952,\n    \"\\u13af\\u13ad\": 1953,\n    \"\\u13df\\u13cd\\u13d7\": 1954,\n    \"\\u2581\\u13cd\\u13a9\\u13c3\": 1955,\n    \"\\u2581\\u13af\\u13a6\\u13d4\\u13ad\": 1956,\n    \"\\u2581\\u13a4\\u13ec\": 1957,\n    \"\\u2581---\": 1958,\n    \"\\u2581\\u13a2\\u13c5\\u13af\": 1959,\n    \"\\u2581\\u13f1\\u13a8\": 1960,\n    \"\\u13c2\\u13d7\\u13f3\": 1961,\n    \"\\u2581\\u13d9\\u13d3\\u13a6\": 1962,\n    \"\\u2581\\u13ec\": 1963,\n    \"\\u2581\\u13a4\\u13ab\\u13f4\\u13d7\": 1964,\n    \"\\u2581\\u13d1\\u13be\\u13b4\\u13c3\": 1965,\n    \"\\u2581\\u13e9\\u13c1\": 1966,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c2\": 1967,\n    \"\\u2581\\u13e5\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 1968,\n    \"\\u2581\\u13c4\\u13cd\\u13db\\u13be\": 1969,\n    \"\\u2581\\u13e7\\u13b5\": 1970,\n    \"\\u2581\\u13a4\\u13aa\": 1971,\n    \"\\u2581\\u13db\\u13be\": 1972,\n    \"\\u2581\\u13e2\": 1973,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13ae\": 1974,\n    \"\\u2581\\u13d5\\u13a8\\u13f4\": 1975,\n    \"\\u2581\\u13be\\u13d1\\u13f4\": 1976,\n    \"\\u13aa\\u13e9\\u13db\\u13d7\": 1977,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13e1\\u13e9\\u13d7\\u13d2\": 1978,\n    \"\\u2581\\u13af\\u13c6\": 1979,\n    \"\\u2581\\u13c5\\u13c3\": 1980,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13e8\": 1981,\n    \"\\u2581\\u13da\\u13aa\\u13b2\": 1982,\n    \"\\u2581\\u13a6\\u13c5\\u13ac\": 1983,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b8\": 1984,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13cd\\u13d7\": 1985,\n    \"\\u2581\\u13e5\\u13ac\": 1986,\n    \"\\u2581\\u13a0\\u13d2\\u13a8\": 1987,\n    \"\\u2581\\u13a0\\u13a9\\u13be\\u13eb\": 1988,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\": 1989,\n    \"\\u2581\\u13a0\\u13c7\": 1990,\n    \"\\u13c4\\u13ae\\u13db\": 1991,\n    \"\\u2581\\u13c5\\u13ec\\u13d8\": 1992,\n    \"\\u2581\\u13d1\\u13d3\\u13b4\\u13a9\": 1993,\n    \"\\u2581\\u13a6\\u13c3\\u13cd\\u13a9\\u13cd\\u13a9\": 1994,\n    \"\\u2581\\u13c0\\u13be\": 1995,\n    \"\\u2581\\u13cd\\u13cf\\u13c9\\u13ef\": 1996,\n    \"\\u2581\\u13d7\\u13a6\\u13d9\\u13cc\\u13d7\\u13cd\\u13d7\\u13f1\": 1997,\n    \"\\u2581\\u13d7\\u13c2\\u13a8\\u13eb\": 1998,\n    \"\\u2581\\u13cc\\u13d9\\u13c2\": 1999,\n    \"\\u2581\\u13e7\\u13be\\u13e6\\u13f4\\u13cd\\u13d7\": 2000,\n    \"\\u2581\\u13ae\\u13b3\\u13c2\": 2001,\n    \"\\u2581\\u13d7\\u13aa\\u13d2\\u13d4\\u13c5\": 2002,\n    \"\\u2581\\u13be\\u13a6\\u13a5\": 2003,\n    \"\\u2581\\u13a8\\u13e3\\u13cd\\u13a6\\u13a9\": 2004,\n    \"\\u2581\\u13a0\\u13c9\\u13f0\\u13c2\": 2005,\n    \"\\u2581\\u13a6\\u13da\\u13a2\\u13d7\\u13e2\": 2006,\n    \"\\u2581\\u13c7\\u13cd\\u13d3\": 2007,\n    \"\\u2581\\u13d7\\u13c2\\u13b0\\u13b5\": 2008,\n    \"\\u2581\\u13cd\\u13d7\\u13eb\": 2009,\n    \"\\u2581\\u13cc\\u13ca\": 2010,\n    \"\\u2581\\u13da\\u13d1\\u13ac\": 2011,\n    \"\\u2581\\u13a4\\u13a7\\u13f2\\u13db\\u13af\": 2012,\n    \"\\u2581\\u13c1\\u13c2\\u13cf\": 2013,\n    \"\\u2581\\u13a8\\u13a6\\u13d1\\u13f0\\u13db\": 2014,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13be\\u13a2\": 2015,\n    \"\\u2581\\u13da\\u13a6\\u13d2\\u13cd\\u13db\": 2016,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13be\\u13b3\\u13d7\\u13cd\\u13d7\": 2017,\n    \"\\u2581\\u13c4\\u13cd\\u13d7\\u13d3\\u13c5\": 2018,\n    \"\\u2581\\u13d7\\u13b3\\u13d1\\u13b6\": 2019,\n    \"\\u2581\\u13a2\\u13f3\\u13d3\\u13c5\\u13af\\u13d3\": 2020,\n    \"\\u2581\\u13ac\\u13a9\\u13cd\\u13a6\\u13a9\": 2021,\n    \"\\u2581\\u13a3\\u13e5\\u13a6\\u13d4\\u13ad\": 2022,\n    \"\\u2581\\u13a4\\u13d5\\u13b6\\u13b0\\u13ce\": 2023,\n    \"\\u2581\\u13e9\\u13db\\u13ac\\u13a6\": 2024,\n    \"\\u2581\\u13a2\\u13e5\\u13ef\\u13eb\\u13cd\\u13a8\\u13cd\\u13d7\": 2025,\n    \"\\u2581\\u13a3\\u13ad\\u13c2\": 2026,\n    \"\\u13aa\\u13e3\\u13b4\\u13db\": 2027,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13cf\\u13d9\\u13af\": 2028,\n    \"\\u2581\\u13a8\\u13c6\\u13c2\": 2029,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13af\": 2030,\n    \"\\u2581\\u13d7\\u13e5\\u13b6\\u13cd\\u13d4\\u13c5\": 2031,\n    \"\\u2581\\u13a2\\u13e5\\u13c5\\u13df\": 2032,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13b8\": 2033,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d4\": 2034,\n    \"\\u2581\\u13e5\\u13ae\\u13be\": 2035,\n    \"\\u2581\\u13eb\\u13b6\\u13af\": 2036,\n    \"\\u2581\\u13a4\\u13d9\\u13b4\\u13b0\\u13ce\": 2037,\n    \"\\u2581\\u13a4\\u13ea\\u13b7\\u13c5\\u13a9\": 2038,\n    \"\\u2581\\u13c4\\u13d5\\u13d8\\u13f4\\u13ae\\u13a2\": 2039,\n    \"\\u13c1\\u13b2\\u13a2\": 2040,\n    \"\\u2581\\u13d3\\u13f3\\u13b6\\u13d2\": 2041,\n    \"\\u2581\\u13c2\\u13a6\\u13da\": 2042,\n    \"\\u2581\\u13a4\\u13e4\": 2043,\n    \"\\u2581\\u13da\\u13a7\\u13be\\u13c1\": 2044,\n    \"\\u2581\\u13a4\\u13db\\u13d0\\u13c5\\u13af\": 2045,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13c1\\u13a2\": 2046,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 2047,\n    \"\\u2581\\u13aa\\u13e2\\u13c5\\u13af\": 2048,\n    \"\\u2581\\u13ef\\u13c2\": 2049,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 2050,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d2\\u13a9\": 2051,\n    \"\\u2581\\u13a0\\u13e7\\u13cf\": 2052,\n    \"\\u13a0\\u13ce\\u13c3\": 2053,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13d7\\u13af\": 2054,\n    \"\\u2581\\u13a0\\u13a9\\u13aa\\u13b2\\u13a9\": 2055,\n    \"\\u2581\\u13a4\\u13d3\\u13d4\\u13c5\\u13af\": 2056,\n    \"\\u2581\\u13d3\\u13a7\\u13c5\\u13a2\": 2057,\n    \"\\u2581\\u13d3\\u13d3\": 2058,\n    \"\\u2581\\u13ac\\u13e9\\u13b7\\u13e4\\u13b8\\u13a9\": 2059,\n    \"\\u2581\\u13aa\\u13e2\\u13d2\\u13a2\": 2060,\n    \"\\u2581\\u13a1\\u13b3\\u13d7\\u13e3\": 2061,\n    \"\\u13bf\\u13a8\": 2062,\n    \"\\u2581\\u13a2\\u13e7\\u13e9\\u13c1\": 2063,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13e4\": 2064,\n    \"\\u13d7\\u13cd\\u13aa\\u13a2\": 2065,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13a8\\u13b6\\u13af\": 2066,\n    \"\\u2581\\u13a1\\u13d9\\u13af\": 2067,\n    \"\\u2581\\u13d3\\u13ac\\u13be\": 2068,\n    \"\\u13b6\\u13a2\": 2069,\n    \"\\u2581\\u13a0\\u13c1\\u13b3\": 2070,\n    \"\\u2581\\u13a8\\u13be\\u13c2\\u13f1\": 2071,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13e1\\u13e9\\u13d7\\u13d2\\u13a2\": 2072,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13c5\\u13af\\u13f1\": 2073,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13c5\\u13e8\\u13af\": 2074,\n    \"\\u13cc\\u13c2\": 2075,\n    \"\\u13ee\": 2076,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d1\\u13f4\": 2077,\n    \"\\u2581\\u13aa\\u13e3\\u13b4\\u13db\": 2078,\n    \"\\u2581\\u13ae\\u13d7\": 2079,\n    \"\\u2581\\u13a4\\u13cd\\u13d8\\u13f0\\u13ac\": 2080,\n    \"\\u2581\\u13e5\\u13aa\\u13a8\": 2081,\n    \"\\u2581\\u13e3\\u13c2\\u13c3\": 2082,\n    \"\\u13d9\\u13d3\": 2083,\n    \"\\u13d6\\u13b8\\u13d7\": 2084,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 2085,\n    \"\\u13d3\\u13e5\": 2086,\n    \"\\u2581\\u13a0\\u13d4\\u13b4\\u13d2\\u13a2\": 2087,\n    \"\\u13b8\\u13d7\": 2088,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cd\\u13ac\\u13a9\": 2089,\n    \"\\u13b5\\u13d3\\u13cd\\u13d7\": 2090,\n    \"\\u13d5\\u13a9\": 2091,\n    \"\\u2581\\u13f1\\u13a6\\u13a9\": 2092,\n    \"\\u2581\\u13a4\\u13aa\\u13ae\\u13a2\": 2093,\n    \"\\u2581\\u13e1\\u13ac\\u13a2\": 2094,\n    \"\\u2581\\u13a4\\u13b4\": 2095,\n    \"\\u2581\\u13a4\\u13e3\": 2096,\n    \"\\u2581\\u13d9\\u13d7\": 2097,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\": 2098,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13d2\\u13a2\": 2099,\n    \"\\u2581\\u13d3\\u13f0\": 2100,\n    \"\\u2581\\u13a1\\u13b3\": 2101,\n    \"\\u2581\\u13bb\": 2102,\n    \"\\u13f4\\u13d3\": 2103,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\\u13af\": 2104,\n    \"\\u2581\\u13a0\\u13c2\\u13c2\": 2105,\n    \"\\u2581\\u13e5\\u13d3\\u13c2\": 2106,\n    \"\\u2581\\u13a4\\u13e9\\u13db\\u13d7\": 2107,\n    \"\\u13da\\u13a6\": 2108,\n    \"\\u13b4\\u13ad\": 2109,\n    \"\\u2581\\u13e5\\u13f4\": 2110,\n    \"\\u13e3\\u13d3\": 2111,\n    \"\\u13b7\\u13e5\\u13cf\": 2112,\n    \"\\u13d6\\u13cd\\u13d7\": 2113,\n    \"\\u2581\\u13a4\\u13c4\\u13ec\": 2114,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13e8\": 2115,\n    \"\\u13a5\\u13be\": 2116,\n    \"\\u2581\\u13a6\\u13be\": 2117,\n    \"\\u13d3\\u13d1\\u13ef\": 2118,\n    \"\\u13c5\\u13ce\": 2119,\n    \"\\u13d3\\u13c2\\u13b8\\u13e8\\u13af\": 2120,\n    \"\\u2581\\u13a2\\u13cd\": 2121,\n    \"\\u13d7\\u13e3\": 2122,\n    \"\\u2581\\u13f1\\u13ac\\u13e9\": 2123,\n    \"\\u2581\\u13a4\\u13e6\": 2124,\n    \"\\u2581\\u13a6\\u13c1\": 2125,\n    \"\\u2581\\u13cf\\u13bb\\u13ef\\u13c2\": 2126,\n    \"\\u13ce\\u13b8\": 2127,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13d7\\u13cd\\u13a9\": 2128,\n    \"\\u13e4\\u13b5\": 2129,\n    \"\\u2581\\u13a0\\u13af\\u13d7\": 2130,\n    \"\\u2581\\u13a3\\u13a6\\u13e4\\u13b5\": 2131,\n    \"\\u13c1\\u13b6\\u13d7\": 2132,\n    \"\\u2581\\u13a6\\u13db\": 2133,\n    \"\\u13d2\\u13c5\": 2134,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\": 2135,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13cd\\u13ac\": 2136,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c1\\u13b8\": 2137,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\": 2138,\n    \"\\u2581\\u13a0\\u13c5\\u13d7\\u13cd\\u13ac\": 2139,\n    \"\\u2581\\u13a4\\u13dc\\u13c5\\u13db\": 2140,\n    \"\\u2581\\u13a4\\u13bf\\u13e5\": 2141,\n    \"\\u2581\\u13eb\\u13da\\u13ef\\u13c5\\u13ae\": 2142,\n    \"\\u2581\\u13a0\\u13e8\\u13ef\": 2143,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13ac\": 2144,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13cd\\u13ac\": 2145,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13ce\": 2146,\n    \"\\u13a5\\u13af\\u13cd\\u13d7\": 2147,\n    \"\\u2581\\u13aa\\u13f1\\u13c1\": 2148,\n    \"\\u2581\\u13da\\u13b8\\u13cc\\u13db\": 2149,\n    \"\\u2581\\u13a0\\u13c7\\u13b5\\u13d2\": 2150,\n    \"\\u2581\\u13c2\\u13da\\u13e9\\u13c1\\u13b8\": 2151,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13d2\": 2152,\n    \"\\u13ac\\u13ad\\u13b7\\u13f4\": 2153,\n    \"\\u2581\\u13e5\\u13c1\\u13ac\": 2154,\n    \"\\u2581\\u13a0\\u13f4\\u13eb\\u13ef\": 2155,\n    \"\\u13b8\\u13cc\\u13db\": 2156,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\": 2157,\n    \"\\u2581\\u13f1\\u13e5\\u13a6\\u13d4\": 2158,\n    \"\\u13b6\\u13d2\": 2159,\n    \"\\u2581\\u13eb\\u13ac\": 2160,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\\u13db\\u13c1\\u13d7\": 2161,\n    \"\\u2581\\u13c2\\u13e8\\u13c1\\u13b8\": 2162,\n    \"\\u2581\\u13a4\\u13c1\\u13d3\\u13cd\\u13d7\": 2163,\n    \"\\u2581\\u13d7\\u13a6\\u13aa\\u13d7\": 2164,\n    \"\\u2581\\u13a0\\u13c1\\u13b5\\u13cd\\u13a8\": 2165,\n    \"\\u2581\\u13a1\\u13b3\\u13c2\\u13ac\": 2166,\n    \"\\u2581\\u13a4\\u13e9\\u13db\\u13b2\": 2167,\n    \"\\u2581\\u13a4\\u13b5\\u13ec\\u13e8\": 2168,\n    \"\\u2581\\u13a0\\u13c2\\u13e9\\u13e5\\u13c2\": 2169,\n    \"\\u2581\\u13a6\\u13b3\\u13b1\\u13c2\": 2170,\n    \"\\u2581\\u13d5\\u13a6\\u13b3\\u13eb\\u13a5\": 2171,\n    \"\\u2581\\u13e7\\u13d3\\u13bf\\u13e9\\u13db\": 2172,\n    \"\\u2581\\u13a2\\u13c6\\u13b6\\u13c2\": 2173,\n    \"\\u2581\\u13be\\u13aa\\u13d4\\u13c5\\u13be\": 2174,\n    \"\\u2581\\u13da\\u13be\\u13a7\\u13db\": 2175,\n    \"\\u2581\\u13d7\\u13c2\\u13ec\\u13c2\\u13cd\\u13a9\": 2176,\n    \"\\u2581\\u13e3\\u13d4\\u13a6\": 2177,\n    \"\\u2581\\u13a4\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\\u13f1\": 2178,\n    \"\\u2581\\u13da\\u13c3\\u13e2\\u13d4\\u13c5\\u13a9\": 2179,\n    \"\\u2581\\u13a2\\u13d5\\u13af\": 2180,\n    \"\\u2581\\u13c4\\u13d3\\u13b5\\u13d3\\u13cd\\u13db\\u13be\": 2181,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\\u13af\": 2182,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d3\": 2183,\n    \"\\u2581\\u13d7\\u13c2\\u13cd\\u13aa\\u13b5\": 2184,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\\u13d9\\u13b2\": 2185,\n    \"\\u2581\\u13a6\\u13c2\\u13d3\\u13db\": 2186,\n    \"\\u2581\\u13cd\\u13aa\\u13ef\": 2187,\n    \"\\u2581\\u13e7\\u13c6\\u13b6\\u13ac\": 2188,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 2189,\n    \"\\u2581\\u13be\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\\u13ac\\u13be\": 2190,\n    \"\\u2581\\u13a2\\u13e5\\u13f0\\u13b8\\u13ce\\u13cd\\u13d7\": 2191,\n    \"\\u2581\\u13a2\\u13e3\\u13c5\\u13d6\\u13cd\\u13d7\": 2192,\n    \"\\u2581\\u13a4\\u13ec\\u13d1\\u13b6\\u13e8\\u13af\": 2193,\n    \"\\u2581\\u13a5\\u13a9\\u13c5\\u13cf\\u13db\": 2194,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13cd\\u13a9\\u13cd\\u13a9\": 2195,\n    \"\\u2581\\u13d7\\u13d3\\u13ec\\u13cd\\u13a9\": 2196,\n    \"\\u2581\\u13d3\\u13ac\\u13e9\": 2197,\n    \"\\u2581\\u13a2\\u13f3\\u13d5\\u13d8\\u13f4\\u13d3\": 2198,\n    \"\\u2581\\u13a2\\u13e7\\u13b3\\u13d7\\u13e2\": 2199,\n    \"\\u2581\\u13af\\u13cd\\u13a6\\u13ef\": 2200,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\\u13ae\\u13cd\\u13d7\": 2201,\n    \"\\u2581\\u13a1\\u13c2\\u13d7\": 2202,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13d3\\u13ea\\u13ce\\u13b4\\u13a2\": 2203,\n    \"\\u2581\\u13a0\\u13cc\\u13c5\\u13d9\\u13d7\": 2204,\n    \"\\u2581\\u13d7\\u13d1\\u13e2\\u13db\": 2205,\n    \"\\u2581\\u13a3\\u13c2\\u13d7\\u13e2\": 2206,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d4\\u13c2\": 2207,\n    \"\\u2581\\u13a0\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a9\": 2208,\n    \"\\u2581\\u13a2\\u13ef\\u13cd\\u13d8\": 2209,\n    \"\\u2581\\u13a1\\u13c8\\u13b5\": 2210,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\\u13f1\": 2211,\n    \"\\u2581\\u13e7\\u13be\\u13b5\\u13c2\\u13a9\\u13db\": 2212,\n    \"\\u2581\\u13a0\\u13a6\\u13ef\\u13b7\\u13d7\": 2213,\n    \"\\u2581\\u13a0\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\\u13af\": 2214,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13b2\\u13cd\\u13a9\": 2215,\n    \"\\u2581\\u13c2\\u13ac\\u13ea\\u13ce\\u13ad\": 2216,\n    \"\\u2581\\u13e3\\u13d3\\u13c5\\u13d9\": 2217,\n    \"\\u2581\\u13e7\\u13cd\\u13aa\\u13b5\": 2218,\n    \"\\u2581\\u13a6\\u13be\\u13cd\\u13d3\": 2219,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d4\\u13c5\\u13ad\": 2220,\n    \"\\u2581\\u13c5\\u13e7\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\": 2221,\n    \"\\u2581\\u13cd\\u13a9\\u13d9\\u13b5\\u13a9\": 2222,\n    \"\\u2581\\u13a4\\u13d5\\u13b5\\u13d2\": 2223,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d4\\u13c5\\u13af\": 2224,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d7\\u13f3\": 2225,\n    \"\\u2581\\u13e7\\u13c2\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 2226,\n    \"\\u2581\\u13a2\\u13d5\\u13be\": 2227,\n    \"\\u2581\\u13d3\\u13d3\\u13cf\": 2228,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13bf\\u13a2\": 2229,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13cf\": 2230,\n    \"\\u2581\\u13da\\u13e0\\u13f1\\u13b4\\u13a2\": 2231,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13db\": 2232,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\\u13db\\u13c1\\u13d7\\u13f1\": 2233,\n    \"\\u2581\\u13a2\\u13d3\\u13b5\": 2234,\n    \"\\u2581\\u13b9\\u13d7\": 2235,\n    \"\\u2581\\u13a4\\u13ea\\u13d7\\u13f1\": 2236,\n    \"\\u2581\\u13a8\\u13a5\\u13a2\": 2237,\n    \"\\u2581\\u13a4\\u13df\\u13c2\\u13a9\\u13d3\": 2238,\n    \"\\u13b7\\u13e4\\u13d7\\u13f1\": 2239,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13d2\\u13a9\": 2240,\n    \"\\u2581\\u13d8\\u13b5\": 2241,\n    \"\\u2581\\u13a1\\u13d8\\u13f4\": 2242,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c1\\u13a2\": 2243,\n    \"\\u2581\\u13a4\\u13e9\\u13c5\": 2244,\n    \"\\u2581\\u13b9\\u13a9\": 2245,\n    \"\\u2581\\u13c2\\u13da\\u13e9\\u13c1\\u13b8\\u13a9\": 2246,\n    \"\\u2581\\u13c4\\u13be\\u13cd\\u13d7\": 2247,\n    \"\\u2581\\u13e7\\u13c2\\u13be\\u13eb\\u13f1\": 2248,\n    \"\\u2581\\u13eb\\u13da\\u13c2\": 2249,\n    \"\\u2581\\u13e7\\u13d3\\u13c5\\u13db\\u13a2\": 2250,\n    \"\\u2581\\u13ac\\u13e9\\u13aa\\u13b2\": 2251,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13e4\\u13a2\": 2252,\n    \"\\u2581\\u13a8\\u13d9\\u13b2\": 2253,\n    \"\\u13e2\\u13d7\": 2254,\n    \"\\u2581\\u13a8\\u13c2\\u13d7\": 2255,\n    \"\\u2581\\u13c2\\u13d9\": 2256,\n    \"\\u13c3\\u13c1\\u13b8\\u13a9\": 2257,\n    \"\\u13d3\\u13e1\\u13ac\": 2258,\n    \"\\u2581\\u13c8\": 2259,\n    \"\\u2581\\u13c2\\u13eb\": 2260,\n    \"\\u2581\\u13ef\\u13c6\\u13da\\u13b5\": 2261,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\": 2262,\n    \"\\u2581\\u13a4\\u13e3\\u13d6\": 2263,\n    \"\\u2581\\u13ad\\u13b5\": 2264,\n    \"\\u2581\\u13f1\\u13b0\": 2265,\n    \"\\u2581\\u13af\\u13b8\\u13af\": 2266,\n    \"\\u2581\\u13a6\\u13db\\u13ac\\u13a2\": 2267,\n    \"\\u13c1\\u13cd\\u13a8\": 2268,\n    \"\\u2581\\u13a4\\u13aa\\u13b2\\u13af\": 2269,\n    \"\\u2581\\u13a8\\u13d3\\u13b5\": 2270,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d7\": 2271,\n    \"\\u2581\\u13a4\\u13ad\\u13a8\": 2272,\n    \"\\u13d9\\u13a5\": 2273,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b8\\u13a2\": 2274,\n    \"\\u13a1\\u13cd\\u13d7\": 2275,\n    \"\\u13d3\\u13c5\": 2276,\n    \"\\u13c3\\u13b2\\u13cf\": 2277,\n    \"\\u13d9\\u13b5\\u13cd\\u13d7\": 2278,\n    \"\\u2581\\u13a4\\u13e9\\u13a8\\u13eb\": 2279,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\": 2280,\n    \"\\u13ab\\u13f4\\u13d9\\u13d7\": 2281,\n    \"\\u13ea\\u13e8\\u13af\": 2282,\n    \"\\u2581\\u13a4\\u13b4\\u13c5\\u13b2\": 2283,\n    \"\\u2581\\u13e7\\u13ea\\u13d8\": 2284,\n    \"\\u2581\\u13a4\\u13ef\": 2285,\n    \"\\u2581\\u13d7\\u13ac\\u13d9\\u13d7\": 2286,\n    \"\\u13c5\\u13ad\": 2287,\n    \"\\u2581\\u13a0\\u13a9\\u13ad\": 2288,\n    \"\\u2581\\u13af\\u13be\": 2289,\n    \"\\u13d3\\u13cf\": 2290,\n    \"\\u13e9\\u13db\\u13ae\": 2291,\n    \"\\u2581\\u13a0\\u13a6\\u13db\": 2292,\n    \"\\u2581\\u13d3\\u13e5\\u13ef\": 2293,\n    \"\\u2581\\u13a4\\u13d4\\u13c5\": 2294,\n    \"\\u13a0\\u13ef\\u13d7\": 2295,\n    \"\\u2581\\u13a4\\u13d9\\u13d3\\u13c3\": 2296,\n    \"\\u13c2\\u13d2\": 2297,\n    \"\\u13c5\\u13cf\\u13d9\\u13af\": 2298,\n    \"\\u13cd\\u13d5\\u13cd\\u13d7\": 2299,\n    \"\\u2581\\u13a4\\u13db\\u13c5\\u13a9\": 2300,\n    \"\\u2581\\u13a8\\u13b6\\u13af\": 2301,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13e4\": 2302,\n    \"\\u13c1\\u13b8\\u13d4\\u13c5\": 2303,\n    \"\\u2581\\u13c4\\u13d3\": 2304,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c5\\u13a2\": 2305,\n    \"\\u13e7\\u13cf\": 2306,\n    \"\\u13a4\\u13d9\\u13af\\u13f3\": 2307,\n    \"\\u13d3\\u13c1\\u13b8\": 2308,\n    \"\\u13d9\\u13b5\": 2309,\n    \"\\u13f4\\u13ad\": 2310,\n    \"\\u13d0\\u13c5\": 2311,\n    \"\\u13a9\\u13cd\\u13a8\\u13cd\\u13d7\": 2312,\n    \"\\u13a5\\u13dd\": 2313,\n    \"\\u13d3\\u13c5\\u13a6\\u13b8\\u13db\": 2314,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\": 2315,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13c5\\u13e8\": 2316,\n    \"\\u13d3\\u13b6\\u13c2\\u13a8\": 2317,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13c1\\u13b8\": 2318,\n    \"\\u13d4\\u13b7\\u13a9\\u13cd\\u13a9\": 2319,\n    \"\\u13a8\\u13b3\\u13cd\\u13d7\": 2320,\n    \"\\u13da\\u13b5\": 2321,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13e8\": 2322,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\": 2323,\n    \"\\u2581\\u13a1\\u13b5\\u13cd\\u13a8\": 2324,\n    \"\\u2581\\u13eb\\u13a6\\u13c5\\u13c5\": 2325,\n    \"\\u2581\\u13a0\\u13c2\\u13e8\\u13ef\": 2326,\n    \"\\u2581\\u13a0\\u13d3\\u13ef\": 2327,\n    \"\\u2581\\u13a4\\u13a9\\u13e8\\u13c5\": 2328,\n    \"\\u2581\\u13a4\\u13b5\\u13c2\\u13ac\\u13ac\": 2329,\n    \"\\u2581\\u13d5\\u13a6\\u13c5\\u13c5\": 2330,\n    \"\\u2581\\u13d7\\u13e4\\u13b2\": 2331,\n    \"\\u2581\\u13a5\\u13d3\\u13b8\": 2332,\n    \"\\u13a9\\u13af\": 2333,\n    \"\\u13a2\\u13f3\\u13be\\u13cd\\u13d7\": 2334,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13b8\": 2335,\n    \"\\u2581\\u13e3\\u13a7\\u13db\": 2336,\n    \"\\u2581\\u13a6\\u13f0\\u13cc\\u13db\": 2337,\n    \"\\u2581\\u13ac\\u13e9\\u13b7\\u13e4\\u13b4\": 2338,\n    \"\\u2581\\u13d7\\u13d3\\u13c1\\u13b8\": 2339,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c5\": 2340,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13c1\": 2341,\n    \"\\u13ce\\u13d7\": 2342,\n    \"\\u2581\\u13a4\\u13bf\\u13a5\": 2343,\n    \"\\u2581\\u13d7\\u13e5\\u13f0\\u13b8\": 2344,\n    \"\\u2581\\u13e5\\u13d9\\u13ac\": 2345,\n    \"\\u2581\\u13eb\\u13da\\u13ef\\u13c5\\u13b2\": 2346,\n    \"\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 2347,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13b2\": 2348,\n    \"\\u13c5\\u13d3\": 2349,\n    \"\\u2581\\u13ac\\u13e9\\u13b7\\u13e4\\u13b8\": 2350,\n    \"\\u2581\\u13c2\\u13aa\": 2351,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13af\\u13b5\\u13d9\": 2352,\n    \"\\u2581\\u13d7\\u13c4\\u13aa\\u13d7\\u13cd\\u13a9\": 2353,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13c1\\u13d7\": 2354,\n    \"\\u2581\\u13a0\\u13e5\\u13a2\\u13cd\\u13d7\": 2355,\n    \"\\u2581\\u13f1\\u13d9\": 2356,\n    \"\\u2581\\u13a0\\u13c1\\u13b5\\u13cd\\u13ac\": 2357,\n    \"\\u13d4\\u13c5\\u13a2\": 2358,\n    \"\\u2581\\u13da\\u13c5\\u13ce\": 2359,\n    \"\\u2581\\u13a0\\u13f0\\u13b2\": 2360,\n    \"\\u2581\\u13c2\\u13d3\\u13aa\\u13d4\\u13c5\\u13be\": 2361,\n    \"\\u2581\\u13a1\\u13a9\\u13b5\\u13c8\": 2362,\n    \"\\u2581\\u13a2\\u13d7\\u13cd\\u13d3\\u13d3\\u13b3\": 2363,\n    \"\\u2581\\u13a2\\u13ef\\u13ac\\u13c1\\u13b8\\u13af\": 2364,\n    \"\\u2581\\u13cc\\u13ec\\u13da\": 2365,\n    \"\\u2581Chap\": 2366,\n    \"\\u2581\\u13a0\\u13c2\\u13c8\\u13b5\\u13cd\\u13d7\": 2367,\n    \"\\u2581\\u13cc\\u13f1\\u13b3\": 2368,\n    \"\\u2581\\u13a0\\u13f0\\u13b3\\u13cd\\u13d8\": 2369,\n    \"\\u2581\\u13da\\u13a7\\u13d4\\u13cd\\u13d4\\u13c1\\u13a2\": 2370,\n    \"\\u2581\\u13e3\\u13a6\\u13df\\u13b6\\u13cd\\u13d4\\u13c5\\u13af\": 2371,\n    \"\\u2581\\u13e5\\u13cd\\u13aa\\u13f4\": 2372,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13e5\\u13f4\\u13c1\\u13b5\": 2373,\n    \"\\u2581\\u13e7\\u13d3\\u13d5\\u13cd\\u13d7\\u13f1\": 2374,\n    \"\\u2581\\u13a0\\u13d7\\u13d2\\u13cd\\u13d7\": 2375,\n    \"\\u2581\\u13ae\\u13bc\": 2376,\n    \"\\u2581\\u13a4\\u13f2\\u13cd\\u13db\\u13c9\": 2377,\n    \"\\u2581\\u13a0\\u13d5\\u13d2\\u13b2\\u13cd\\u13a9\": 2378,\n    \"\\u2581\\u13a2\\u13c6\\u13bb\": 2379,\n    \"\\u2581\\u13d7\\u13e5\\u13a6\\u13d9\\u13b5\": 2380,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13c5\\u13d9\": 2381,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13ab\\u13e5\\u13db\": 2382,\n    \"\\u2581\\u13e5\\u13c2\\u13e3\\u13db\\u13c5\": 2383,\n    \"\\u2581\\u13a4\\u13b3\\u13a8\\u13ef\\u13db\\u13e4\\u13a2\": 2384,\n    \"\\u2581\\u13a4\\u13a9\\u13d3\\u13df\\u13c5\\u13ef\": 2385,\n    \"\\u2581\\u13a2\\u13f3\\u13db\\u13c1\\u13b8\\u13af\": 2386,\n    \"\\u2581\\u13cc\\u13da\": 2387,\n    \"\\u2581\\u13a0\\u13b9\\u13f3\\u13b8\\u13d3\": 2388,\n    \"\\u2581\\u13f1\\u13e5\\u13cd\\u13a6\\u13a2\\u13ae\\u13cd\\u13d7\": 2389,\n    \"\\u2581\\u13a0\\u13a9\\u13ac\\u13eb\\u13f3\\u13af\": 2390,\n    \"\\u2581\\u13e3\\u13e4\\u13b5\\u13aa\\u13af\": 2391,\n    \"\\u2581\\u13cf\\u13b5\\u13f1\": 2392,\n    \"\\u2581\\u13a6\\u13ab\\u13cd\\u13db\\u13d7\": 2393,\n    \"\\u2581\\u13e4\\u13d9\\u13b2\": 2394,\n    \"\\u2581\\u13a4\\u13cd\\u13da\\u13a2\\u13d2\": 2395,\n    \"\\u2581\\u13a4\\u13e3\\u13d4\": 2396,\n    \"\\u2581\\u13ed\\u13b7\\u13e3\": 2397,\n    \"\\u2581\\u13c7\\u13d5\\u13b5\": 2398,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13be\\u13cc\\u13a2\": 2399,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13ae\\u13cd\\u13a9\": 2400,\n    \"\\u2581\\u13a7\\u13c1\\u13cd\\u13aa\": 2401,\n    \"\\u2581\\u13e5\\u13f2\\u13ce\\u13b8\": 2402,\n    \"\\u2581\\u13a0\\u13c9\\u13b3\": 2403,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13be\\u13a2\": 2404,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13cd\\u13a6\\u13b6\\u13d7\": 2405,\n    \"\\u2581\\u13d3\\u13ac\\u13d4\\u13c2\": 2406,\n    \"\\u2581\\u13a3\\u13a9\\u13d9\\u13d3\": 2407,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d3\\u13e9\\u13db\\u13d2\\u13a9\": 2408,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13cd\\u13a8\\u13c2\": 2409,\n    \"\\u2581\\u13ac\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\\u13a9\": 2410,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13b8\\u13cc\\u13db\": 2411,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c1\\u13af\": 2412,\n    \"\\u2581\\u13e5\\u13e5\\u13a6\\u13d4\\u13ad\": 2413,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13d7\": 2414,\n    \"\\u2581\\u13da\\u13c3\\u13a1\\u13a2\": 2415,\n    \"\\u2581\\u13ef\\u13a6\\u13d4\\u13ad\": 2416,\n    \"\\u2581\\u13a0\\u13c3\\u13cd\\u13db\": 2417,\n    \"\\u2581\\u13d3\\u13a8\\u13cf\": 2418,\n    \"\\u2581\\u13be\\u13e5\\u13be\\u13dd\\u13a5\\u13be\": 2419,\n    \"\\u2581\\u13a4\\u13c1\\u13e2\\u13d4\\u13c5\\u13af\": 2420,\n    \"\\u2581\\u13be\\u13a8\": 2421,\n    \"\\u13ac\\u13eb\\u13f3\\u13d2\": 2422,\n    \"\\u2581\\u13a0\\u13c2\\u13c5\\u13a2\": 2423,\n    \"\\u2581\\u13e6\\u13b3\\u13c2\": 2424,\n    \"\\u2581\\u13e7\\u13c2\\u13a6\\u13f4\\u13b5\\u13a8\": 2425,\n    \"\\u2581\\u13ed\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 2426,\n    \"\\u2581\\u13f3\\u13e9\\u13c1\\u13a6\": 2427,\n    \"\\u2581\\u13a2\\u13e3\\u13e0\\u13be\\u13cd\\u13d7\": 2428,\n    \"\\u2581\\u13aa\\u13ea\\u13b3\\u13c5\\u13af\": 2429,\n    \"\\u2581\\u13e6\\u13c8\": 2430,\n    \"\\u2581\\u13ac\\u13c2\\u13a8\\u13d2\\u13a2\\u13f3\": 2431,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13ea\\u13ad\": 2432,\n    \"\\u2581\\u13e6\\u13b3\": 2433,\n    \"\\u13a6\\u13c5\\u13af\\u13d3\": 2434,\n    \"\\u2581\\u13a0\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 2435,\n    \"\\u2581\\u13c2\\u13a6\\u13c5\\u13af\\u13d2\\u13a9\": 2436,\n    \"\\u2581\\u13e7\\u13c1\\u13ac\": 2437,\n    \"\\u2581\\u13c2\\u13da\\u13cd\\u13db\": 2438,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13c5\\u13a9\": 2439,\n    \"\\u2581\\u13a4\\u13e2\\u13a9\": 2440,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\": 2441,\n    \"\\u2581\\u13a4\\u13c5\\u13cf\\u13d9\\u13af\": 2442,\n    \"\\u2581\\u13a1\\u13c9\\u13d7\\u13f1\": 2443,\n    \"\\u2581\\u13d5\\u13cd\\u13a9\": 2444,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13b8\\u13af\": 2445,\n    \"\\u2581\\u13a4\\u13d5\\u13c1\\u13b8\\u13af\": 2446,\n    \"\\u13be\\u13f0\\u13cd\\u13ac\\u13be\": 2447,\n    \"\\u13b8\\u13c9\\u13d7\": 2448,\n    \"\\u2581\\u13a1\\u13b3\\u13d7\\u13e2\": 2449,\n    \"\\u2581\\u13d3\\u13c2\\u13c1\\u13b8\\u13a2\": 2450,\n    \"\\u2581\\u13a0\\u13a2\\u13d2\\u13a2\": 2451,\n    \"\\u2581\\u13ac\\u13c2\\u13f3\": 2452,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13c5\\u13e8\\u13af\": 2453,\n    \"\\u13a8\\u13f3\\u13d7\": 2454,\n    \"\\u13cf\\u13d7\\u13d2\": 2455,\n    \"\\u13f3\\u13af\": 2456,\n    \"\\u2581\\u13e7\\u13ec\\u13da\\u13af\": 2457,\n    \"\\u2581\\u13a6\\u13c5\\u13af\\u13d3\": 2458,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d7\\u13f1\": 2459,\n    \"\\u2581\\u13a4\\u13bf\\u13a5\\u13a2\": 2460,\n    \"\\u2581\\u13a8\\u13b3\\u13cd\\u13d7\": 2461,\n    \"\\u2581\\u13a4\\u13c4\\u13e2\": 2462,\n    \"\\u13d3\\u13b5\": 2463,\n    \"\\u2581\\u13e4\\u13c6\": 2464,\n    \"\\u2581\\u13d5\\u13e1\\u13ac\\u13a2\": 2465,\n    \"\\u13d7\\u13cd\\u13ac\\u13a2\": 2466,\n    \"\\u13d1\\u13f0\\u13db\": 2467,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\\u13c5\\u13af\": 2468,\n    \"\\u2581\\u13e5\\u13a8\": 2469,\n    \"\\u2581\\u13be\\u13c6\": 2470,\n    \"\\u2581\\u13a4\\u13be\\u13db\": 2471,\n    \"\\u2581\\u13d5\\u13c2\": 2472,\n    \"\\u2581\\u13eb\\u13cd\\u13a9\": 2473,\n    \"\\u13a1\\u13b8\\u13af\": 2474,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13b8\": 2475,\n    \"\\u13c5\\u13d7\": 2476,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d9\\u13a9\": 2477,\n    \"\\u2581\\u13a6\\u13d9\\u13ac\\u13a9\": 2478,\n    \"\\u13c4\\u13aa\\u13eb\\u13d2\\u13a9\": 2479,\n    \"\\u13c1\\u13c3\": 2480,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13b2\": 2481,\n    \"\\u2581\\u13be\\u13db\\u13c1\\u13b2\": 2482,\n    \"\\u13f0\\u13af\": 2483,\n    \"\\u13d9\\u13d3\\u13c6\\u13d3\": 2484,\n    \"\\u13d9\\u13e2\\u13c5\": 2485,\n    \"\\u13d5\\u13b6\\u13b0\\u13af\\u13cd\\u13d7\": 2486,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 2487,\n    \"\\u13d4\\u13c5\\u13be\": 2488,\n    \"\\u2581\\u13a4\\u13b7\\u13e4\\u13a2\": 2489,\n    \"\\u2581\\u13da\\u13a6\": 2490,\n    \"\\u2581\\u13a4\\u13da\": 2491,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\\u13a2\": 2492,\n    \"\\u2581\\u13d5\\u13ac\": 2493,\n    \"\\u2581\\u13a4\\u13ef\\u13c5\": 2494,\n    \"\\u13c2\\u13d3\\u13cd\\u13d7\\u13f1\": 2495,\n    \"\\u2581\\u13a0\\u13ad\": 2496,\n    \"\\u13b4\\u13c5\": 2497,\n    \"\\u13d4\\u13f2\\u13cf\": 2498,\n    \"\\u2581\\u13a0\\u13d2\\u13a9\": 2499,\n    \"\\u2581\\u13a2\\u13d2\": 2500,\n    \"\\u2581\\u13ac\\u13ef\": 2501,\n    \"\\u13e4\\u13b8\": 2502,\n    \"\\u2581\\u13e6\\u13af\\u13f3\\u13d2\": 2503,\n    \"\\u13e6\\u13e2\\u13d7\": 2504,\n    \"id\": 2505,\n    \"\\u13c1\\u13e4\\u13b4\": 2506,\n    \"\\u13a6\\u13d9\": 2507,\n    \"\\u2581\\u13d7\\u13e8\": 2508,\n    \"\\u2581\\u13a0\\u13a9\\u13aa\\u13b2\": 2509,\n    \"\\u2581\\u13a4\\u13c2\\u13b2\": 2510,\n    \"\\u13d9\\u13b4\\u13b0\\u13cf\": 2511,\n    \"\\u13b5\\u13cf\\u13f1\": 2512,\n    \"\\u2581\\u13ad\\u13e9\": 2513,\n    \"\\u2581\\u13a6\\u13f2\\u13b5\": 2514,\n    \"\\u13c9\\u13d7\": 2515,\n    \"\\u2581\\u13e5\\u13d9\": 2516,\n    \"\\u13cd\\u13d4\\u13c5\\u13af\": 2517,\n    \"\\u13a9\\u13b3\": 2518,\n    \"l\": 2519,\n    \"\\u13a7\\u13b5\\u13a2\": 2520,\n    \"\\u2581\\u13a2\\u13e5\\u13f0\\u13b8\": 2521,\n    \"\\u13cc\\u13c1\": 2522,\n    \"\\u13c2\\u13a9\\u13db\": 2523,\n    \"\\u2581\\u13a0\\u13c2\\u13eb\\u13be\": 2524,\n    \"\\u13f2\\u13af\\u13cd\\u13d7\": 2525,\n    \"\\u2581\\u13a2\\u13cf\\u13b5\\u13f1\": 2526,\n    \"\\u2581\\u13eb\\u13a9\": 2527,\n    \"\\u2581\\u13a0\\u13f0\": 2528,\n    \"\\u13c5\\u13d3\\u13d3\": 2529,\n    \"\\u2581\\u13a0\\u13be\\u13b5\": 2530,\n    \"\\u13c1\\u13e4\\u13d7\": 2531,\n    \"\\u13aa\\u13b5\\u13f0\\u13d7\": 2532,\n    \"\\u13db\\u13c2\": 2533,\n    \"\\u2581\\u13c7\": 2534,\n    \"\\u13b5\\u13cd\\u13d4\\u13c1\": 2535,\n    \"\\u13d2\\u13c3\": 2536,\n    \"\\u13a9\\u13d3\": 2537,\n    \"\\u13c4\\u13a6\": 2538,\n    \"\\u13b6\\u13e8\": 2539,\n    \"\\u2581\\u13e5\\u13c4\": 2540,\n    \"\\u2581\\u13af\\u13cd\\u13a9\\u13c1\": 2541,\n    \"\\u2581\\u13a0\\u13a2\\u13d2\": 2542,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\": 2543,\n    \"\\u2581\\u13c2\\u13a8\": 2544,\n    \"\\u13e5\\u13f2\\u13cf\": 2545,\n    \"\\u13c1\\u13e4\\u13b8\\u13af\": 2546,\n    \"\\u2581\\u13a0\\u13cb\": 2547,\n    \"\\u2581\\u13da\\u13be\\u13b4\\u13c1\": 2548,\n    \"\\u2581\\u13af\\u13a6\\u13d8\\u13cf\": 2549,\n    \"\\u2581\\u13ad\\u13bb\": 2550,\n    \"\\u13d5\\u13c5\": 2551,\n    \"\\u13d7\\u13e2\": 2552,\n    \"\\u13aa\\u13e9\\u13d8\\u13ad\": 2553,\n    \"\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\": 2554,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13c5\": 2555,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13db\": 2556,\n    \"\\u2581\\u13a3\\u13a9\\u13be\": 2557,\n    \"\\u2581\\u13be\\u13a9\": 2558,\n    \"\\u13ac\\u13bf\": 2559,\n    \"\\u2581\\u13a0\\u13d4\\u13b4\\u13a6\\u13d2\": 2560,\n    \"\\u2581\\u13a4\\u13c3\\u13c1\\u13b4\": 2561,\n    \"\\u2581\\u13d5\\u13a6\\u13da\\u13e9\\u13d7\\u13d2\": 2562,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e4\\u13d7\": 2563,\n    \"\\u2581\\u13e7\\u13e9\\u13ab\\u13d4\\u13c5\\u13d2\": 2564,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13cf\": 2565,\n    \"\\u2581\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\\u13ac\": 2566,\n    \"\\u2581\\u13f1\\u13a8\\u13d0\": 2567,\n    \"\\u2581\\u13da\\u13ec\\u13a1\": 2568,\n    \"\\u2581\\u13a0\\u13a6\\u13cd\\u13a6\\u13c2\": 2569,\n    \"\\u2581\\u13a0\\u13da\\u13a2\\u13cd\\u13db\": 2570,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\": 2571,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13c5\": 2572,\n    \"\\u2581\\u13d3\\u13c2\\u13c1\\u13b8\": 2573,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 2574,\n    \"\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 2575,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\\u13b2\\u13d2\": 2576,\n    \"\\u2581\\u13a3\\u13b5\\u13e9\": 2577,\n    \"\\u2581\\u13a4\\u13b7\\u13e4\\u13b4\": 2578,\n    \"\\u2581\\u13a4\\u13ec\\u13da\": 2579,\n    \"\\u2581\\u13e4\\u13ae\": 2580,\n    \"\\u2581\\u13d5\\u13aa\\u13ea\\u13b8\": 2581,\n    \"\\u2581\\u13a4\\u13db\\u13d0\\u13c5\": 2582,\n    \"\\u13f2\\u13af\\u13cd\\u13d4\\u13c5\": 2583,\n    \"\\u2581\\u13a6\\u13b4\\u13c2\": 2584,\n    \"\\u13ef\\u13c5\\u13b2\": 2585,\n    \"\\u2581\\u13a6\\u13c1\\u13e5\": 2586,\n    \"\\u2581\\u13a4\\u13c5\\u13ce\": 2587,\n    \"\\u2581\\u13e9\\u13a9\": 2588,\n    \"\\u13d3\\u13b4\\u13c5\\u13db\": 2589,\n    \"\\u13b0\\u13b2\\u13cd\\u13d7\": 2590,\n    \"\\u2581\\u13a1\\u13c2\\u13be\\u13ef\": 2591,\n    \"\\u2581\\u13a2\\u13cd\\u13a6\\u13b3\\u13d7\": 2592,\n    \"\\u2581\\u13a5\\u13d8\\u13a3\\u13a9\": 2593,\n    \"\\u2581\\u13a6\\u13cc\\u13c6\\u13b8\": 2594,\n    \"\\u2581\\u13d1\\u13d3\\u13b3\\u13cd\\u13aa\\u13af\": 2595,\n    \"\\u2581\\u13d7\\u13ab\\u13d3\\u13b8\\u13d7\\u13f1\": 2596,\n    \"\\u2581\\u13e4\\u13a6\\u13b3\\u13ef\": 2597,\n    \"\\u2581\\u13a1\\u13b9\\u13c2\\u13d3\": 2598,\n    \"\\u2581\\u13e7\\u13d9\\u13d3\\u13cb\\u13d3\": 2599,\n    \"\\u2581\\u13e7\\u13ef\\u13d6\\u13c3\\u13af\": 2600,\n    \"\\u2581\\u13ef\\u13c3\\u13a9\\u13f3\": 2601,\n    \"\\u2581\\u13eb\\u13da\\u13a7\\u13bf\\u13c1\": 2602,\n    \"\\u2581\\u13a4\\u13ef\\u13d6\\u13c3\\u13af\": 2603,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13a8\\u13c2\": 2604,\n    \"\\u2581\\u13a2\\u13e4\\u13b3\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 2605,\n    \"\\u2581\\u13ac\\u13c9\\u13ce\\u13b0\": 2606,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13f0\\u13b8\\u13d4\\u13c5\\u13a9\": 2607,\n    \"\\u2581\\u13a4\\u13be\\u13e2\\u13c9\\u13d7\": 2608,\n    \"\\u2581\\u13bb\\u13be\\u13cc\": 2609,\n    \"\\u2581\\u13c2\\u13e3\\u13ea\\u13d2\": 2610,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c2\\u13cc\\u13c5\\u13af\": 2611,\n    \"\\u2581\\u13d1\\u13be\\u13d3\\u13b4\\u13a9\": 2612,\n    \"\\u2581\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\\u13f3\\u13b6\\u13d7\": 2613,\n    \"\\u2581\\u13a1\\u13e5\\u13b8\\u13c9\\u13d3\": 2614,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13b4\": 2615,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 2616,\n    \"\\u2581\\u13a8\\u13e3\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13af\": 2617,\n    \"\\u2581\\u13d7\\u13a7\\u13be\\u13e9\\u13db\\u13cd\\u13d7\": 2618,\n    \"\\u2581\\u13a0\\u13a6\\u13b5\\u13cd\\u13ac\": 2619,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13be\": 2620,\n    \"\\u2581\\u13cd\\u13a9\\u13c4\\u13cd\\u13db\": 2621,\n    \"\\u2581\\u13a2\\u13f2\\u13cd\\u13db\": 2622,\n    \"\\u2581\\u13a6\\u13cc\\u13be\\u13b5\": 2623,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13c1\\u13b5\": 2624,\n    \"\\u2581\\u13f1\\u13c5\\u13a6\\u13b5\\u13cd\\u13d3\": 2625,\n    \"\\u2581\\u13aa\\u13cc\\u13c2\": 2626,\n    \"\\u2581\\u13f1\\u13da\\u13c2\": 2627,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c2\\u13b8\": 2628,\n    \"\\u2581\\u13a0\\u13c2\\u13c8\\u13b7\": 2629,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d4\\u13f4\\u13d7\": 2630,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13ae\": 2631,\n    \"\\u2581\\u13d1\\u13d5\\u13d8\\u13f4\\u13db\": 2632,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13cd\\u13d4\\u13c1\": 2633,\n    \"\\u2581\\u13ed\\u13f4\\u13b8\": 2634,\n    \"\\u2581\\u13af\\u13a8\\u13f4\": 2635,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\\u13a6\": 2636,\n    \"\\u2581\\u13a2\\u13f3\\u13db\\u13bf\\u13d5\\u13a9\": 2637,\n    \"\\u2581\\u13a2\\u13a7\\u13c1\\u13e8\\u13af\": 2638,\n    \"\\u13cd\\u13a6\\u13a2\\u13b2\\u13be\": 2639,\n    \"\\u2581\\u13d7\\u13d3\\u13c2\\u13d0\\u13d7\\u13f1\": 2640,\n    \"\\u2581\\u13d3\\u13d3\\u13b6\\u13c2\": 2641,\n    \"\\u2581\\u13eb\\u13e8\\u13b7\\u13e4\\u13d7\\u13f1\": 2642,\n    \"\\u13b8\\u13c9\\u13d5\\u13cd\\u13d7\": 2643,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13af\\u13cd\\u13d7\\u13f1\": 2644,\n    \"\\u2581\\u13a4\\u13b5\\u13e0\\u13ef\\u13cd\\u13d5\\u13cd\\u13d7\": 2645,\n    \"\\u2581\\u13a0\\u13c2\\u13e6\\u13a2\": 2646,\n    \"\\u2581\\u13db\\u13cd\\u13c6\\u13b8\\u13af\": 2647,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 2648,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13a6\\u13c5\\u13af\": 2649,\n    \"\\u2581\\u13d7\\u13a6\\u13b4\\u13c2\": 2650,\n    \"\\u2581\\u13a0\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d9\\u13d7\": 2651,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13cd\\u13d7\": 2652,\n    \"\\u2581\\u13a4\\u13db\\u13aa\\u13d7\\u13f1\": 2653,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c1\\u13b8\\u13af\": 2654,\n    \"\\u2581\\u13a0\\u13a9\\u13c5\\u13cf\\u13db\": 2655,\n    \"\\u2581\\u13ed\\u13c2\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 2656,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13cd\\u13d7\": 2657,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\\u13a2\": 2658,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13e1\\u13ac\": 2659,\n    \"\\u2581\\u13be\\u13c2\\u13a6\\u13d4\\u13b2\\u13be\": 2660,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13c5\\u13a9\": 2661,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13d3\": 2662,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13d3\\u13b3\": 2663,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13e3\\u13d8\\u13f3\": 2664,\n    \"\\u2581\\u13e6\\u13d3\\u13b8\": 2665,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b5\\u13cd\\u13d7\": 2666,\n    \"\\u2581\\u13ac\\u13e9\\u13d4\\u13f2\\u13ce\\u13b4\": 2667,\n    \"\\u2581\\u13a2\\u13a8\\u13ac\\u13c1\\u13d7\": 2668,\n    \"\\u2581\\u13d9\\u13d3\\u13f3\": 2669,\n    \"\\u2581\\u13be\\u13a9\\u13ea\\u13d2\\u13a9\": 2670,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 2671,\n    \"\\u2581\\u13a4\\u13c2\\u13c7\\u13d3\\u13b8\\u13a2\": 2672,\n    \"\\u2581\\u13aa\\u13e2\\u13c5\": 2673,\n    \"\\u2581\\u13a0\\u13a6\\u13cd\\u13ac\": 2674,\n    \"\\u2581\\u13e5\\u13cd\\u13c6\\u13ef\": 2675,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13ab\": 2676,\n    \"\\u2581\\u13d7\\u13a6\\u13b6\\u13d7\": 2677,\n    \"\\u13a6\\u13f4\\u13b5\\u13a8\": 2678,\n    \"\\u2581\\u13d9\\u13a9\\u13be\": 2679,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13c5\\u13af\": 2680,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13b8\\u13af\": 2681,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13ad\": 2682,\n    \"\\u2581\\u13a4\\u13b5\\u13ec\\u13e8\\u13af\": 2683,\n    \"\\u2581\\u13a6\\u13c1\\u13b3\": 2684,\n    \"\\u2581\\u13f4\\u13a8\\u13e5\": 2685,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13b5\": 2686,\n    \"\\u2581\\u13da\\u13c2\\u13c5\\u13ce\": 2687,\n    \"\\u2581\\u13da\\u13c1\\u13e4\\u13b8\\u13a9\": 2688,\n    \"\\u2581\\u13d9\\u13e7\\u13be\\u13d3\\u13c5\\u13db\\u13a2\": 2689,\n    \"\\u2581\\u13ad\\u13b4\": 2690,\n    \"\\u2581\\u13a2\\u13f3\\u13db\\u13c1\\u13d7\\u13f1\": 2691,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13cd\\u13d7\\u13f1\": 2692,\n    \"\\u2581\\u13a4\\u13d3\\u13b4\\u13c5\\u13db\": 2693,\n    \"\\u2581\\u13a4\\u13d3\\u13d1\\u13ef\": 2694,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13af\": 2695,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 2696,\n    \"\\u2581\\u13e4\\u13b2\\u13a9\": 2697,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c1\\u13b4\\u13a2\": 2698,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13db\": 2699,\n    \"\\u2581\\u13eb\\u13da\\u13ef\\u13c5\\u13b2\\u13a9\": 2700,\n    \"\\u2581\\u13a3\\u13ac\\u13d2\": 2701,\n    \"\\u2581\\u13be\\u13a6\\u13d4\\u13b2\\u13be\": 2702,\n    \"\\u13a6\\u13d4\\u13af\": 2703,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13d2\\u13a9\": 2704,\n    \"\\u2581\\u13da\\u13cc\\u13b3\\u13d3\\u13c1\": 2705,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b8\\u13a9\": 2706,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13cd\\u13ac\\u13a2\": 2707,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13a8\\u13b3\\u13cd\\u13d7\\u13f1\": 2708,\n    \"\\u2581\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\\u13ac\\u13a2\": 2709,\n    \"\\u2581\\u13e7\\u13d2\\u13af\": 2710,\n    \"\\u2581\\u13a8\\u13a6\\u13ab\\u13f4\\u13a1\": 2711,\n    \"\\u2581\\u13a7\\u13c5\\u13d1\\u13b8\": 2712,\n    \"\\u2581\\u13a2\\u13be\\u13a9\": 2713,\n    \"\\u13cf\\u13c5\\u13d3\": 2714,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13e8\\u13a9\": 2715,\n    \"\\u2581\\u13a0\\u13ce\\u13cd\\u13a9\\u13c2\\u13c3\\u13c5\": 2716,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13c1\\u13a2\": 2717,\n    \"\\u2581\\u13a0\\u13e8\\u13ef\\u13a2\": 2718,\n    \"\\u13c5\\u13c3\": 2719,\n    \"\\u2581\\u13e9\\u13be\": 2720,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\": 2721,\n    \"\\u13d3\\u13c2\": 2722,\n    \"\\u2581\\u13d5\\u13b3\": 2723,\n    \"\\u13c4\\u13aa\\u13e9\": 2724,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13c1\": 2725,\n    \"\\u2581\\u13a0\\u13eb\\u13cd\\u13a9\": 2726,\n    \"\\u2581\\u13a7\\u13aa\": 2727,\n    \"\\u2581\\u13a0\\u13e4\\u13b5\\u13cd\\u13db\\u13a2\": 2728,\n    \"\\u13cd\\u13d4\\u13c1\": 2729,\n    \"\\u2581\\u13e7\\u13d9\": 2730,\n    \"\\u2581\\u13a4\\u13e5\\u13b8\\u13d2\": 2731,\n    \"\\u13cd\\u13db\\u13be\": 2732,\n    \"\\u13c1\\u13b8\\u13be\": 2733,\n    \"\\u2581\\u13c4\\u13e9\\u13c1\\u13b4\\u13a2\": 2734,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13ac\\u13a2\": 2735,\n    \"\\u2581\\u13a4\\u13b6\\u13a9\\u13b8\\u13a2\": 2736,\n    \"\\u13c5\\u13cd\\u13d7\\u13f1\": 2737,\n    \"\\u13d3\\u13f1\\u13b5\": 2738,\n    \"\\u2581\\u13a3\\u13ac\": 2739,\n    \"\\u2581\\u13be\\u13cb\\u13c1\\u13b8\": 2740,\n    \"\\u13c1\\u13ae\": 2741,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13cc\\u13d7\": 2742,\n    \"\\u2581\\u13a6\\u13f0\\u13e5\": 2743,\n    \"\\u13a8\\u13db\": 2744,\n    \"\\u13c6\\u13b5\": 2745,\n    \"\\u2581\\u13d5\\u13aa\": 2746,\n    \"\\u2581\\u13a0\\u13c9\": 2747,\n    \"\\u13f2\\u13af\": 2748,\n    \"\\u2581\\u13d7\\u13aa\\u13ea\\u13b6\\u13d7\": 2749,\n    \"\\u2581\\u13e7\\u13ec\": 2750,\n    \"\\u2581\\u13a4\\u13b4\\u13c1\": 2751,\n    \"\\u13a6\\u13d3\\u13c1\": 2752,\n    \"\\u2581\\u13f1\\u13cf\": 2753,\n    \"\\u2581\\u13d5\\u13ad\": 2754,\n    \"\\u13a2\\u13f4\": 2755,\n    \"\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 2756,\n    \"\\u2581\\u13a4\\u13a7\\u13db\\u13a2\": 2757,\n    \"\\u13b0\\u13b5\": 2758,\n    \"\\u13cd\\u13d3\\u13f4\": 2759,\n    \"\\u13a6\\u13d4\\u13b0\": 2760,\n    \"\\u2581\\u13a4\\u13b2\\u13a2\": 2761,\n    \"\\u2581\\u13c2\\u13d5\\u13ac\\u13c1\": 2762,\n    \"\\u13cf\\u13c6\": 2763,\n    \"\\u13c1\\u13c6\": 2764,\n    \"\\u2581\\u13a9\\u13b6\\u13a2\": 2765,\n    \"\\u13a1\\u13b8\\u13a9\": 2766,\n    \"\\u2581\\u13a0\\u13f2\": 2767,\n    \"\\u13e3\\u13db\\u13c1\\u13af\": 2768,\n    \"\\u13eb\\u13cd\\u13d7\": 2769,\n    \"\\u13d3\\u13b3\": 2770,\n    \"\\u13c2\\u13cc\\u13c1\": 2771,\n    \"\\u13be\\u13a5\": 2772,\n    \"\\u2581\\u13a6\\u13c3\": 2773,\n    \"\\u13db\\u13d9\\u13d7\": 2774,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\\u13ae\": 2775,\n    \"\\u2581\\u13f1\\u13d9\\u13a6\": 2776,\n    \"\\u13cd\\u13c6\\u13d9\\u13c5\": 2777,\n    \"\\u13e4\\u13b5\\u13a6\": 2778,\n    \"\\u2581\\u13f0\\u13b5\\u13cd\\u13a8\": 2779,\n    \"\\u13a0\\u13c8\": 2780,\n    \"\\u2581\\u13a2\\u13af\": 2781,\n    \"\\u13e5\\u13aa\\u13e9\\u13db\": 2782,\n    \"\\u2581\\u13a3\\u13a9\\u13c2\": 2783,\n    \"\\u13d7\\u13cf\": 2784,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d8\": 2785,\n    \"\\u13a6\\u13d0\\u13af\": 2786,\n    \"\\u13c1\\u13ae\\u13a2\": 2787,\n    \"\\u2581\\u13a4\\u13b2\": 2788,\n    \"\\u2581\\u13a2\\u13ac\\u13c1\": 2789,\n    \"\\u13b5\\u13ef\": 2790,\n    \"\\u13d9\\u13ae\\u13cd\\u13d7\": 2791,\n    \"\\u13b5\\u13aa\": 2792,\n    \"\\u2581\\u13a9\\u13b3\\u13af\": 2793,\n    \"\\u13b8\\u13c9\\u13d9\\u13d7\\u13f1\": 2794,\n    \"\\u13be\\u13c4\\u13aa\\u13e8\\u13af\": 2795,\n    \"\\u13b7\\u13e3\": 2796,\n    \"\\u2581\\u13a1\\u13e5\\u13c1\\u13d7\": 2797,\n    \"\\u2581\\u13a6\\u13c5\": 2798,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\\u13c1\": 2799,\n    \"\\u2581\\u13a2\\u13b3\": 2800,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13af\": 2801,\n    \"\\u13aa\\u13b5\\u13f0\\u13a1\": 2802,\n    \"\\u13af\\u13eb\": 2803,\n    \"\\u2581\\u13ee\": 2804,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\": 2805,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13ce\": 2806,\n    \"\\u2581\\u13b9\": 2807,\n    \"\\u13f0\\u13c2\": 2808,\n    \"\\u2581\\u13a4\\u13b6\": 2809,\n    \"\\u13d9\\u13b8\": 2810,\n    \"\\u13cd\\u13a6\\u13a9\": 2811,\n    \"\\u13c5\\u13d3\\u13d7\\u13cd\\u13d9\\u13d7\": 2812,\n    \"\\u2581\\u13f2\\u13a9\": 2813,\n    \"\\u2581\\u13e5\\u13be\": 2814,\n    \"\\u2581\\u13d7\\u13be\\u13d3\": 2815,\n    \"\\u13cd\\u13d4\\u13f1\": 2816,\n    \"\\u2581\\u13a0\\u13c2\\u13d0\\u13a2\\u13c3\": 2817,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13ea\": 2818,\n    \"\\u2581\\u13c4\\u13ea\": 2819,\n    \"\\u2581\\u13be\\u13bf\\u13c9\": 2820,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13b5\\u13d9\": 2821,\n    \"\\u13a8\\u13c2\": 2822,\n    \"\\u2581\\u13e5\\u13c2\": 2823,\n    \"\\u13cf\\u13c1\": 2824,\n    \"\\u13a9\\u13a1\\u13b8\": 2825,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13af\\u13c3\": 2826,\n    \"\\u2581\\u13eb\\u13d3\\u13c2\": 2827,\n    \"\\u13a1\\u13b4\\u13a2\": 2828,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13d2\": 2829,\n    \"\\u13e0\\u13f1\": 2830,\n    \"\\u2581\\u13aa\\u13e2\\u13d2\": 2831,\n    \"\\u13a0\\u13ce\": 2832,\n    \"\\u13f0\\u13ad\": 2833,\n    \"\\u2581\\u13f1\\u13d7\\u13a6\": 2834,\n    \"\\u13cd\\u13d5\": 2835,\n    \"\\u2581\\u13be\\u13ac\\u13c1\\u13b8\": 2836,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13cd\\u13ac\": 2837,\n    \"\\u2581\\u13e5\\u13c1\\u13b8\": 2838,\n    \"\\u2581\\u13e3\\u13d3\": 2839,\n    \"\\u13d7\\u13d2\": 2840,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\": 2841,\n    \"\\u13ce\\u13b4\": 2842,\n    \"\\u13d7\\u13c2\\u13c5\\u13cc\\u13d7\": 2843,\n    \"\\u13ad\\u13d5\\u13ec\": 2844,\n    \"\\u2581\\u13a3\\u13d3\\u13c5\\u13db\": 2845,\n    \"\\u2581\\u13a4\\u13f2\\u13af\\u13cd\\u13d4\\u13c1\": 2846,\n    \"\\u13a8\\u13b5\\u13a0\": 2847,\n    \"\\u13aa\\u13b1\\u13cd\\u13d7\": 2848,\n    \"\\u13a0\\u13d5\\u13b8\": 2849,\n    \"\\u13a7\\u13b5\\u13e8\\u13af\": 2850,\n    \"\\u13d7\\u13a6\\u13d8\\u13ef\": 2851,\n    \"\\u13a0\\u13a9\\u13be\": 2852,\n    \"\\u2581\\u13af\\u13f0\\u13b8\": 2853,\n    \"\\u2581\\u13a1\\u13d9\\u13ae\": 2854,\n    \"\\u2581\\u13a0\\u13d5\": 2855,\n    \"\\u2581\\u13e7\\u13d3\\u13c5\\u13db\": 2856,\n    \"\\u2581\\u13d5\\u13a4\\u13b4\\u13d4\\u13c5\": 2857,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 2858,\n    \"\\u2581\\u13a4\\u13c1\\u13a6\\u13b8\": 2859,\n    \"\\u13e0\\u13a0\\u13cf\": 2860,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13e3\\u13cd\\u13da\\u13b6\": 2861,\n    \"\\u2581\\u13e7\\u13be\\u13b4\\u13af\\u13d0\": 2862,\n    \"\\u13b6\\u13d0\\u13c5\": 2863,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13ae\\u13b5\\u13e4\": 2864,\n    \"\\u2581\\u13a2\\u13d9\\u13bb\": 2865,\n    \"\\u2581\\u13cf\\u13d3\\u13c1\\u13b8\": 2866,\n    \"\\u2581\\u13c5\\u13f2\": 2867,\n    \"\\u2581\\u13e7\\u13c2\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\": 2868,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\": 2869,\n    \"\\u13b5\\u13cd\\u13d7\\u13f1\": 2870,\n    \"\\u2581\\u13a0\\u13f2\\u13b1\\u13d2\": 2871,\n    \"\\u2581\\u13e3\\u13be\\u13eb\": 2872,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13c5\": 2873,\n    \"\\u2581\\u13f1\\u13d3\\u13c2\": 2874,\n    \"\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 2875,\n    \"\\u13cd\\u13d5\\u13b8\\u13af\": 2876,\n    \"\\u13a5\\u13a9\": 2877,\n    \"\\u2581\\u13d7\\u13aa\\u13ea\\u13b5\": 2878,\n    \"\\u13f2\\u13a2\\u13f4\": 2879,\n    \"\\u13ad\\u13c4\\u13b8\\u13af\": 2880,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\\u13f1\": 2881,\n    \"rs\": 2882,\n    \"\\u2581Philadelphia\": 2883,\n    \"\\u2581\\u13a0\\u13d3\\u13ea\\u13b3\\u13a9\\u13cd\\u13a9\": 2884,\n    \"\\u2581\\u13d0\\u13b5\\u13b9\\u13c5\": 2885,\n    \"\\u2581\\u13d5\\u13e6\\u13af\\u13f3\\u13ce\\u13cd\\u13d7\": 2886,\n    \"\\u2581\\u13da\\u13cd\\u13c6\\u13b8\\u13d4\\u13c1\": 2887,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d4\\u13be\": 2888,\n    \"\\u2581\\u13c6\\u13b3\\u13c6\": 2889,\n    \"\\u2581\\u13d7\\u13a6\\u13d2\\u13cd\\u13d4\\u13c5\": 2890,\n    \"\\u2581\\u13a2\\u13e6\\u13af\\u13f3\\u13af\": 2891,\n    \"\\u2581\\u13c7\\u13da\\u13a1\\u13b5\": 2892,\n    \"\\u2581\\u13a4\\u13e3\\u13b4\\u13d3\": 2893,\n    \"\\u2581\\u13d7\\u13be\\u13d5\\u13f2\\u13b2\\u13cd\\u13a9\": 2894,\n    \"\\u2581\\u13e7\\u13b4\\u13af\\u13cc\\u13c5\\u13af\": 2895,\n    \"\\u2581\\u13a7\\u13c2\\u13b5\\u13ef\": 2896,\n    \"\\u2581\\u13d7\\u13c7\\u13c5\\u13d2\": 2897,\n    \"\\u2581\\u13e7\\u13f4\\u13e8\": 2898,\n    \"\\u2581\\u13a4\\u13ec\\u13d3\\u13b8\": 2899,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13c1\": 2900,\n    \"\\u2581\\u13d3\\u13f3\\u13c2\\u13b6\\u13d2\": 2901,\n    \"\\u2581\\u13a0\\u13da\\u13b8\\u13d7\": 2902,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13b5\\u13f0\\u13a5\": 2903,\n    \"\\u2581\\u13a2\\u13d7\\u13c5\\u13c1\": 2904,\n    \"\\u2581\\u13f1\\u13e3\\u13d3\\u13c5\\u13d6\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 2905,\n    \"\\u2581\\u13a2\\u13e5\\u13c6\\u13b5\\u13cf\": 2906,\n    \"\\u2581\\u13ac\\u13e9\\u13e0\\u13ef\\u13cd\\u13d7\": 2907,\n    \"\\u2581\\u13a2\\u13e7\\u13be\\u13d3\\u13b3\": 2908,\n    \"\\u2581\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 2909,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13af\": 2910,\n    \"\\u2581\\u13a4\\u13d3\\u13d1\\u13f1\": 2911,\n    \"\\u2581\\u13da\\u13db\\u13db\\u13c1\": 2912,\n    \"\\u2581\\u13a8\\u13c5\\u13a2\\u13cd\\u13d7\": 2913,\n    \"\\u2581\\u13a1\\u13e3\\u13c2\\u13b5\": 2914,\n    \"\\u2581\\u13d5\\u13aa\\u13ea\\u13b5\\u13cd\\u13ac\": 2915,\n    \"\\u2581\\u13d7\\u13db\\u13d3\\u13c5\\u13af\": 2916,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13be\\u13dd\\u13a2\": 2917,\n    \"\\u2581\\u13a4\\u13d2\\u13af\\u13f0\\u13f1\": 2918,\n    \"\\u2581\\u13a6\\u13d3\\u13b7\\u13ef\\u13db\": 2919,\n    \"\\u2581\\u13a0\\u13be\\u13db\\u13a9\\u13cd\\u13a9\": 2920,\n    \"\\u2581\\u13d7\\u13ac\\u13aa\\u13e9\\u13db\\u13d7\": 2921,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\\u13e5\\u13b8\": 2922,\n    \"\\u2581\\u13f1\\u13aa\\u13b5\\u13a6\": 2923,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13da\\u13b8\": 2924,\n    \"\\u2581\\u13a0\\u13c2\\u13b4\\u13f4\\u13cd\\u13a9\": 2925,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13ac\": 2926,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13ae\": 2927,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c5\\u13b2\": 2928,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d3\\u13cd\\u13ac\": 2929,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13a6\": 2930,\n    \"\\u2581\\u13ac\\u13e9\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\": 2931,\n    \"\\u2581\\u13be\\u13ef\\u13db\\u13a1\\u13cd\\u13d7\": 2932,\n    \"\\u2581\\u13a0\\u13c4\\u13a6\\u13b8\": 2933,\n    \"\\u2581\\u13a6\\u13e3\\u13c3\\u13cd\": 2934,\n    \"\\u2581\\u13e5\\u13d5\\u13a6\": 2935,\n    \"\\u2581\\u13a7\\u13f4\\u13d0\\u13b5\": 2936,\n    \"\\u2581\\u13da\\u13c3\\u13e2\\u13c5\\u13a9\": 2937,\n    \"\\u2581\\u13d7\\u13aa\\u13d1\\u13b4\\u13d7\\u13f1\": 2938,\n    \"\\u2581\\u13e7\\u13f4\\u13e2\": 2939,\n    \"\\u2581\\u13a4\\u13d3\\u13b4\\u13e8\": 2940,\n    \"\\u2581\\u13e7\\u13b4\\u13d4\\u13c5\\u13af\": 2941,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\": 2942,\n    \"\\u2581\\u13e5\\u13a3\\u13b5\": 2943,\n    \"\\u2581\\u13ac\\u13c6\\u13db\\u13c1\\u13d7\\u13f1\": 2944,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13af\": 2945,\n    \"\\u2581\\u13c2\\u13e5\\u13a6\\u13d4\\u13b2\\u13be\": 2946,\n    \"\\u2581\\u13c0\\u13a2\\u13f3\": 2947,\n    \"\\u2581\\u13a5\\u13e5\\u13aa\\u13a5\\u13a9\": 2948,\n    \"\\u13b3\\u13cf\\u13d5\\u13be\": 2949,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d7\\u13a9\\u13db\": 2950,\n    \"\\u2581\\u13a4\\u13ec\\u13ea\\u13b3\\u13c5\\u13af\": 2951,\n    \"\\u2581\\u13da\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\\u13b2\": 2952,\n    \"\\u2581\\u13a2\\u13e7\\u13d5\\u13d8\\u13f4\\u13db\": 2953,\n    \"\\u2581\\u13a0\\u13b9\\u13b4\\u13a9\": 2954,\n    \"\\u2581\\u13d4\\u13b8\\u13d7\": 2955,\n    \"\\u2581\\u13a4\\u13d7\\u13d4\\u13b2\": 2956,\n    \"\\u2581\\u13a2\\u13a9\\u13c5\\u13df\": 2957,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 2958,\n    \"\\u2581\\u13cd\\u13a9\\u13be\\u13dd\\u13a2\": 2959,\n    \"\\u2581\\u13a4\\u13ac\\u13eb\\u13f3\\u13ce\\u13cd\\u13d7\": 2960,\n    \"\\u2581\\u13a6\\u13c5\\u13d9\\u13d7\": 2961,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13e9\\u13a2\": 2962,\n    \"\\u2581\\u13c4\\u13e9\\u13c5\": 2963,\n    \"\\u2581\\u13be\\u13c1\\u13b2\\u13be\": 2964,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13d2\\u13a9\": 2965,\n    \"\\u2581\\u13a4\\u13d5\\u13c1\\u13a2\": 2966,\n    \"\\u2581\\u13a2\\u13f3\\u13d3\\u13b5\\u13ad\": 2967,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13b8\\u13b2\": 2968,\n    \"\\u2581\\u13a4\\u13a7\\u13ad\\u13db\": 2969,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\\u13b4\\u13a2\": 2970,\n    \"\\u2581\\u13e9\\u13a9\\u13b7\\u13e8\": 2971,\n    \"\\u2581\\u13a4\\u13b4\\u13eb\\u13cd\\u13d4\\u13c1\": 2972,\n    \"\\u13e5\\u13af\\u13cd\\u13d7\": 2973,\n    \"\\u2581\\u13a0\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a8\": 2974,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13c5\\u13d7\": 2975,\n    \"\\u2581\\u13a1\\u13d9\\u13ad\": 2976,\n    \"\\u2581\\u13a4\\u13cc\\u13b3\\u13d3\\u13c5\": 2977,\n    \"\\u2581\\u13a8\\u13e5\\u13c1\\u13b8\\u13af\": 2978,\n    \"\\u2581\\u13a5\\u13a9\\u13d9\\u13c9\": 2979,\n    \"\\u13f2\\u13af\\u13ce\\u13b8\\u13a9\": 2980,\n    \"\\u2581\\u13a0\\u13df\\u13cd\\u13db\\u13a2\": 2981,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\": 2982,\n    \"\\u2581\\u13ed\\u13c2\\u13b6\\u13d2\\u13a9\": 2983,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\": 2984,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13c5\\u13a9\": 2985,\n    \"\\u2581\\u13a4\\u13c5\\u13d9\\u13d7\\u13f1\": 2986,\n    \"\\u2581\\u13d7\\u13c2\\u13a6\\u13d8\\u13ef\": 2987,\n    \"\\u2581\\u13a4\\u13d5\\u13d7\\u13f1\": 2988,\n    \"\\u2581\\u13be\\u13cd\\u13a6\\u13a2\\u13b2\\u13be\": 2989,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13ce\\u13b8\\u13a9\": 2990,\n    \"\\u2581\\u13be\\u13c2\\u13a1\\u13a2\": 2991,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13c2\": 2992,\n    \"\\u2581\\u13e7\\u13ec\\u13b8\": 2993,\n    \"\\u2581\\u13a2\\u13d7\\u13a6\\u13ea\\u13cd\": 2994,\n    \"\\u2581\\u13a0\\u13a7\\u13b5\\u13ec\\u13af\": 2995,\n    \"\\u2581\\u13a4\\u13e8\\u13c9\\u13d7\": 2996,\n    \"\\u2581\\u13a4\\u13ea\\u13c1\\u13a2\": 2997,\n    \"\\u2581\\u13d7\\u13df\\u13cd\\u13d7\": 2998,\n    \"\\u2581\\u13a4\\u13e2\": 2999,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13ad\": 3000,\n    \"\\u2581\\u13a4\\u13aa\\u13e9\\u13db\\u13d7\": 3001,\n    \"\\u2581\\u13a4\\u13d4\\u13be\": 3002,\n    \"\\u13be\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\": 3003,\n    \"\\u2581\\u13d0\\u13d3\\u13bb\\u13f1\": 3004,\n    \"\\u2581\\u13a2\\u13a9\\u13c1\\u13b8\\u13af\": 3005,\n    \"\\u2581\\u13e7\\u13c1\\u13b3\": 3006,\n    \"\\u13d7\\u13cd\\u13aa\\u13c2\\u13af\": 3007,\n    \"\\u2581\\u13d3\\u13f3\\u13d3\\u13b4\\u13c5\\u13d3\": 3008,\n    \"\\u2581\\u13ef\\u13a9\\u13ad\": 3009,\n    \"\\u2581\\u13a2\\u13a6\\u13c1\\u13b3\\u13c5\\u13af\": 3010,\n    \"\\u13c1\\u13ac\": 3011,\n    \"\\u2581\\u13a2\\u13ef\\u13ac\\u13c1\\u13d7\": 3012,\n    \"\\u2581\\u13a4\\u13ef\\u13c5\\u13af\": 3013,\n    \"\\u2581\\u13a6\\u13c1\\u13cc\\u13a2\\u13af\": 3014,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 3015,\n    \"\\u2581\\u13d7\\u13d0\\u13a2\": 3016,\n    \"\\u2581\\u13a1\\u13d9\\u13ae\\u13a2\": 3017,\n    \"\\u2581\\u13ad\\u13be\\u13c2\": 3018,\n    \"\\u2581\\u13e5\\u13a8\\u13e5\": 3019,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\\u13c1\\u13a2\": 3020,\n    \"\\u2581\\u13d3\\u13c8\": 3021,\n    \"\\u2581\\u13a4\\u13e9\\u13db\\u13ae\\u13a2\": 3022,\n    \"\\u2581\\u13cd\\u13a9\\u13a8\\u13f3\": 3023,\n    \"\\u13c2\\u13ef\": 3024,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\": 3025,\n    \"\\u2581\\u13a7\\u13b8\": 3026,\n    \"\\u2581\\u13ed\\u13b7\\u13e8\\u13a9\": 3027,\n    \"\\u2581\\u13a4\\u13ef\\u13a2\": 3028,\n    \"\\u2581\\u13a1\\u13b5\\u13cd\\u13a8\\u13a2\": 3029,\n    \"\\u2581\\u13a4\\u13ce\\u13b5\\u13d4\\u13c5\": 3030,\n    \"\\u13a1\\u13d7\": 3031,\n    \"\\u2581\\u13a0\\u13d2\\u13ad\": 3032,\n    \"\\u2581\\u13a5\\u13b5\": 3033,\n    \"\\u13ad\\u13f2\\u13b2\": 3034,\n    \"\\u13d3\\u13cd\\u13d7\": 3035,\n    \"\\u13b3\\u13c1\\u13a2\": 3036,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13b8\\u13a2\": 3037,\n    \"on\": 3038,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 3039,\n    \"\\u2581\\u13ac\\u13d9\\u13d7\\u13f1\": 3040,\n    \"\\u13aa\\u13b5\\u13ef\": 3041,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13db\\u13a2\": 3042,\n    \"\\u2581\\u13a4\\u13c3\\u13ae\\u13b4\": 3043,\n    \"\\u2581\\u13c7\\u13b5\\u13e5\": 3044,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13ce\\u13a2\": 3045,\n    \"\\u2581\\u13d7\\u13ac\\u13d7\": 3046,\n    \"\\u2581\\u13da\\u13c1\\u13b4\\u13a2\": 3047,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\\u13b2\\u13a2\": 3048,\n    \"\\u2581\\u13a2\\u13e6\\u13af\\u13f3\\u13d2\\u13a2\": 3049,\n    \"\\u2581\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\\u13a2\": 3050,\n    \"\\u13c1\\u13b0\\u13a2\": 3051,\n    \"\\u2581\\u13a4\\u13f2\\u13b4\": 3052,\n    \"\\u2581\\u13a2\\u13e6\": 3053,\n    \"\\u13a6\\u13e8\": 3054,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13be\\u13a2\": 3055,\n    \"\\u2581\\u13a0\\u13c1\\u13b0\": 3056,\n    \"\\u2581\\u13e6\\u13be\": 3057,\n    \"\\u2581\\u13da\\u13c1\\u13e4\\u13b4\\u13a2\": 3058,\n    \"\\u2581\\u13a1\\u13b2\\u13a9\": 3059,\n    \"\\u2581\\u13a1\\u13b5\\u13a9\": 3060,\n    \"\\u2581\\u13e7\\u13b4\": 3061,\n    \"\\u2581\\u13cc\\u13b5\": 3062,\n    \"\\u13cd\\u13db\\u13f1\": 3063,\n    \"\\u13bf\\u13a2\": 3064,\n    \"\\u13f2\\u13b0\\u13ce\\u13b8\": 3065,\n    \"\\u2581\\u13a4\\u13c5\\u13c5\": 3066,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13ce\\u13a2\": 3067,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13d7\": 3068,\n    \"\\u2581\\u13a0\\u13cd\\u13db\\u13a2\": 3069,\n    \"\\u13cd\\u13aa\\u13c3\": 3070,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\": 3071,\n    \"\\u2581\\u13a4\\u13e9\\u13c2\": 3072,\n    \"\\u13d5\\u13d7\": 3073,\n    \"\\u13a6\\u13ef\": 3074,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\": 3075,\n    \"\\u2581\\u13aa\\u13cd\\u13d4\": 3076,\n    \"\\u2581\\u13a9\\u13b5\": 3077,\n    \"\\u2581\\u13a4\\u13aa\\u13b2\\u13a9\": 3078,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\\u13a2\": 3079,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13d2\": 3080,\n    \"\\u2581\\u13a4\\u13ea\\u13b7\\u13c1\\u13a2\": 3081,\n    \"\\u2581\\u13d7\\u13c2\\u13e9\\u13be\\u13a6\\u13b3\": 3082,\n    \"\\u13f3\\u13b5\": 3083,\n    \"\\u2581\\u13a2\\u13ef\\u13c2\\u13a2\": 3084,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\": 3085,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13d3\\u13c6\\u13cd\\u13ac\\u13a2\": 3086,\n    \"\\u2581\\u13a6\\u13e8\": 3087,\n    \"\\u2581\\u13a4\\u13c2\\u13ac\": 3088,\n    \"\\u2581\\u13d7\\u13c2\\u13c3\": 3089,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13a2\": 3090,\n    \"\\u13d9\\u13a2\": 3091,\n    \"\\u13b4\\u13c5\\u13af\": 3092,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d6\\u13d7\": 3093,\n    \"\\u2581\\u13a6\\u13da\\u13f1\": 3094,\n    \"\\u2581\\u13a4\\u13a9\\u13b8\": 3095,\n    \"\\u13d3\\u13c1\\u13df\\u13f4\\u13db\": 3096,\n    \"\\u13b1\\u13cd\\u13d7\": 3097,\n    \"\\u13b2\\u13cd\\u13a6\": 3098,\n    \"\\u13ce\\u13ad\": 3099,\n    \"\\u13b3\\u13cf\": 3100,\n    \"\\u13c2\\u13eb\": 3101,\n    \"\\u2581\\u13da\\u13d9\": 3102,\n    \"\\u2581\\u13eb\\u13da\\u13be\": 3103,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13db\\u13d7\": 3104,\n    \"\\u2581\\u13d9\\u13d8\": 3105,\n    \"\\u2581\\u13de\": 3106,\n    \"\\u2581\\u13a0\\u13eb\\u13be\": 3107,\n    \"\\u2581\\u13ac\\u13d7\\u13ad\": 3108,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d5\\u13cd\\u13d7\": 3109,\n    \"\\u13c1\\u13e4\\u13b5\": 3110,\n    \"\\u13e2\\u13c5\": 3111,\n    \"\\u2581\\u13e6\\u13a6\": 3112,\n    \"\\u2581\\u13d7\\u13e8\\u13c2\\u13d7\": 3113,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 3114,\n    \"\\u2581\\u13e3\\u13c1\": 3115,\n    \"\\u13e5\\u13e9\\u13db\\u13b2\": 3116,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 3117,\n    \"\\u2581\\u13a4\\u13b5\\u13ae\\u13b5\\u13e4\": 3118,\n    \"\\u2581\\u13a6\\u13c5\\u13a8\": 3119,\n    \"\\u2581\\u13da\\u13c1\\u13b8\": 3120,\n    \"\\u13b5\\u13cd\\u13ac\": 3121,\n    \"\\u2581\\u13a4\\u13ac\": 3122,\n    \"\\u13df\\u13b6\\u13cd\\u13d9\\u13d7\": 3123,\n    \"\\u2581\\u13a0\\u13a6\\u13d5\": 3124,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13d2\\u13af\": 3125,\n    \"\\u2581\\u13a7\\u13c1\\u13c9\": 3126,\n    \"\\u2581\\u13d7\\u13a8\\u13e3\": 3127,\n    \"\\u2581\\u13e7\\u13c2\\u13b5\": 3128,\n    \"\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 3129,\n    \"\\u13d7\\u13cd\\u13ac\\u13be\": 3130,\n    \"\\u13b8\\u13d3\": 3131,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\\u13cd\\u13d7\": 3132,\n    \"\\u2581\\u13a0\\u13cb\\u13ad\": 3133,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13f0\": 3134,\n    \"\\u2581\\u13a4\\u13c1\\u13b4\": 3135,\n    \"\\u13cf\\u13f3\": 3136,\n    \"\\u2581\\u13db\\u13a9\": 3137,\n    \"\\u13a4\\u13c5\\u13d3\\u13d5\": 3138,\n    \"\\u13cd\\u13d5\\u13b5\\u13ad\": 3139,\n    \"\\u2581\\u13a5\\u13cd\\u13a9\": 3140,\n    \"\\u2581\\u13a4\\u13e5\\u13c3\": 3141,\n    \"\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\\u13f1\": 3142,\n    \"\\u2581\\u13a1\\u13e3\\u13ab\\u13f4\": 3143,\n    \"\\u13a9\\u13cd\\u13aa\": 3144,\n    \"\\u2581\\u13be\\u13a6\\u13db\": 3145,\n    \"\\u2581\\u13bf\": 3146,\n    \"\\u13ce\\u13b8\\u13a9\": 3147,\n    \"\\u2581\\u13c4\\u13c5\": 3148,\n    \"\\u13a8\\u13cd\\u13d7\\u13d7\": 3149,\n    \"\\u2581\\u13a4\\u13c2\\u13b8\\u13c9\\u13d7\": 3150,\n    \"\\u2581\\u13a2\\u13e5\\u13b2\": 3151,\n    \"\\u2581\\u13db\\u13c2\": 3152,\n    \"\\u2581\\u13c2\\u13af\\u13cd\\u13aa\": 3153,\n    \"\\u2581\\u13a0\\u13f2\\u13b1\\u13cd\": 3154,\n    \"\\u2581\\u13a1\\u13b3\\u13ea\\u13f1\": 3155,\n    \"\\u13a2\\u13cd\\u13d4\\u13c2\": 3156,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\": 3157,\n    \"\\u13da\\u13ac\": 3158,\n    \"\\u13c1\\u13cd\\u13d7\": 3159,\n    \"\\u13e6\\u13c5\": 3160,\n    \"\\u2581\\u13f1\\u13eb\": 3161,\n    \"\\u2581\\u13e3\\u13a9\": 3162,\n    \"\\u2581\\u13a4\\u13c2\\u13d7\": 3163,\n    \"\\u2581\\u13e3\\u13c6\": 3164,\n    \"\\u13c1\\u13df\\u13f4\\u13cd\\u13d7\": 3165,\n    \"\\u13ac\\u13eb\\u13f3\\u13af\": 3166,\n    \"\\u13c2\\u13ac\\u13a6\": 3167,\n    \"\\u13c7\\u13d3\\u13b5\": 3168,\n    \"\\u2581\\u13a4\\u13a7\\u13d4\": 3169,\n    \"\\u2581\\u13a6\\u13d7\": 3170,\n    \"\\u2581\\u13a0\\u13d7\\u13cd\\u13ac\": 3171,\n    \"\\u13f2\\u13aa\": 3172,\n    \"\\u13b7\\u13e8\": 3173,\n    \"\\u2581\\u13c1\\u13b5\\u13cd\\u13ac\": 3174,\n    \"\\u13ce\\u13b8\\u13af\": 3175,\n    \"\\u2581\\u13a3\\u13cd\\u13d7\": 3176,\n    \"\\u13aa\\u13e9\\u13db\": 3177,\n    \"h\": 3178,\n    \"\\u13a5\\u13a6\": 3179,\n    \"\\u13b4\\u13c5\\u13db\": 3180,\n    \"\\u13f0\\u13cc\\u13db\": 3181,\n    \"\\u2581\\u13a4\\u13ec\\u13c2\\u13d2\": 3182,\n    \"\\u2581\\u13c2\\u13da\\u13ea\\u13ce\\u13b8\": 3183,\n    \"\\u2581\\u13af\\u13a0\\u13c9\": 3184,\n    \"\\u13a6\\u13d4\": 3185,\n    \"\\u2581\\u13be\\u13cd\": 3186,\n    \"\\u2581\\u13a0\\u13f2\\u13df\": 3187,\n    \"\\u2581\\u13d3\\u13b5\\u13cd\\u13d7\\u13b3\\u13c1\\u13ac\": 3188,\n    \"r\": 3189,\n    \"\\u13e5\\u13a8\\u13f3\\u13a2\": 3190,\n    \"\\u2581\\u13a4\\u13ec\\u13b4\": 3191,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13ec\": 3192,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13ce\": 3193,\n    \"\\u2581\\u13a7\\u13b8\\u13ac\": 3194,\n    \"\\u2581\\u13a2\\u13d5\\u13b2\": 3195,\n    \"\\u2581\\u13d3\\u13c2\\u13b3\\u13eb\\u13a5\": 3196,\n    \"\\u2581\\u13d7\\u13e5\\u13a6\\u13f4\\u13b5\\u13a8\": 3197,\n    \"\\u2581\\u13d3\\u13df\\u13b6\\u13cd\\u13db\": 3198,\n    \"\\u2581\\u13a4\\u13d7\\u13db\\u13ae\": 3199,\n    \"\\u2581\\u13a4\\u13da\\u13a2\\u13cd\\u13d4\\u13c5\": 3200,\n    \"\\u2581\\u13a2\\u13a9\\u13cd\\u13a6\\u13c5\\u13e8\": 3201,\n    \"\\u2581\\u13a4\\u13ec\\u13ce\\u13b4\": 3202,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13a6\\u13b8\": 3203,\n    \"\\u13a0\\u13b9\": 3204,\n    \"\\u13d4\\u13be\": 3205,\n    \"\\u2581\\u13a0\\u13c2\\u13d9\\u13be\\u13a1\": 3206,\n    \"\\u2581\\u13da\\u13b4\\u13af\\u13cc\\u13c5\": 3207,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13c1\\u13b4\": 3208,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13f4\\u13b5\\u13a8\": 3209,\n    \"\\u2581\\u13d3\\u13c2\\u13a7\\u13c5\": 3210,\n    \"\\u2581\\u13e7\\u13a6\\u13f4\\u13b5\\u13a8\": 3211,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13d9\\u13a5\\u13d2\": 3212,\n    \"\\u13d8\\u13f0\": 3213,\n    \"\\u13b5\\u13ec\\u13e8\": 3214,\n    \"\\u13ef\\u13a0\": 3215,\n    \"\\u13a4\\u13cd\\u13c6\\u13c2\\u13a9\\u13d7\": 3216,\n    \"\\u13c2\\u13a6\\u13d3\": 3217,\n    \"\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\\u13a9\": 3218,\n    \"\\u2581\\u13da\\u13c1\\u13e4\\u13b8\": 3219,\n    \"\\u13a7\\u13b5\\u13ec\\u13af\": 3220,\n    \"\\u2581\\u13f3\\u13eb\": 3221,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\": 3222,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13d2\": 3223,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13b5\": 3224,\n    \"\\u13df\\u13c2\\u13a9\\u13d3\": 3225,\n    \"\\u2581\\u13a0\\u13c1\\u13ae\": 3226,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 3227,\n    \"\\u2581\\u13aa\\u13b9\\u13b5\": 3228,\n    \"\\u2581\\u13da\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\": 3229,\n    \"\\u2581\\u13e3\\u13a8\": 3230,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 3231,\n    \"\\u2581\\u13a2\\u13f3\\u13c5\\u13c1\\u13d7\": 3232,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13d7\": 3233,\n    \"\\u13d4\\u13f2\\u13ce\\u13b8\\u13a9\": 3234,\n    \"\\u13b4\\u13af\\u13cc\\u13c5\": 3235,\n    \"\\u2581\\u13a8\\u13e5\\u13c1\\u13d7\": 3236,\n    \"\\u2581\\u13a4\\u13e9\\u13db\\u13ae\": 3237,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13c5\": 3238,\n    \"\\u13f4\\u13d0\\u13b5\": 3239,\n    \"\\u13be\\u13d3\\u13b4\\u13a9\": 3240,\n    \"\\u2581\\u13a1\\u13c9\\u13c4\\u13b6\\u13d7\": 3241,\n    \"\\u2581\\u13a4\\u13ad\\u13b8\\u13c2\\u13af\": 3242,\n    \"\\u2581\\u13a4\\u13c2\\u13da\\u13ef\\u13cd\\u13d7\": 3243,\n    \"\\u2581\\u13a4\\u13d3\\u13cf\\u13c2\\u13d5\\u13be\": 3244,\n    \"\\u2581\\u13a4\\u13ea\\u13f2\\u13d3\\u13db\": 3245,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13f4\\u13c1\\u13b5\": 3246,\n    \"\\u2581\\u13c8\\u13ef\\u13cf\\u13c6\": 3247,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13e8\\u13cd\\u13d7\\u13cd\\u13ac\": 3248,\n    \"\\u2581\\u13d7\\u13be\\u13d9\\u13c2\\u13cd\\u13a9\": 3249,\n    \"\\u2581\\u13e6\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 3250,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d5\\u13cd\\u13d7\": 3251,\n    \"\\u2581\\u13a2\\u13f0\\u13c6\": 3252,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\\u13d9\\u13d9\\u13d7\": 3253,\n    \"\\u2581\\u13c6\\u13bb\\u13c6\\u13c2\": 3254,\n    \"\\u2581\\u13da\\u13e9\\u13c2\\u13a6\\u13e2\": 3255,\n    \"\\u2581\\u13a0\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d9\\u13d7\\u13f1\": 3256,\n    \"\\u2581\\u13af\\u13a7\\u13c5\\u13ad\": 3257,\n    \"\\u2581\\u13e7\\u13e3\\u13f2\\u13cd\": 3258,\n    \"\\u2581\\u13af\\u13a6\\u13d9\\u13b5\": 3259,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13a8\": 3260,\n    \"\\u2581\\u13a4\\u13d3\\u13db\\u13db\\u13c1\": 3261,\n    \"\\u2581\\u13e7\\u13a6\\u13c3\\u13ee\": 3262,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13d3\\u13ea\\u13ce\\u13b8\\u13a9\": 3263,\n    \"\\u2581\\u13eb\\u13c2\\u13a6\\u13b5\\u13cd\\u13d9\\u13d3\": 3264,\n    \"\\u2581\\u13d7\\u13c9\\u13f0\\u13c2\": 3265,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13c2\\u13f1\\u13cd\\u13a9\": 3266,\n    \"\\u2581\\u13d7\\u13a6\\u13c3\\u13e3\\u13df\": 3267,\n    \"\\u2581\\u13be\\u13c2\\u13b3\\u13cd\\u13d3\\u13b8\": 3268,\n    \"\\u2581\\u13e7\\u13d9\\u13a2\\u13d3\": 3269,\n    \"\\u2581\\u13d7\\u13c6\\u13b3\\u13cf\\u13d5\\u13c2\": 3270,\n    \"\\u2581\\u13c4\\u13ec\\u13af\\u13f3\\u13d2\\u13be\": 3271,\n    \"\\u2581\\u13c5\\u13d3\\u13aa\\u13af\\u13e5\": 3272,\n    \"\\u2581\\u13c5\\u13c3\\u13b1\\u13b6\\u13d7\": 3273,\n    \"\\u2581\\u13c5\\u13e9\\u13d9\\u13af\": 3274,\n    \"\\u13cd\\u13a6\\u13a3\\u13c5\": 3275,\n    \"\\u2581\\u13a4\\u13ec\\u13de\": 3276,\n    \"\\u2581\\u13a4\\u13ea\\u13da\\u13b2\": 3277,\n    \"\\u2581\\u13e7\\u13e9\\u13c2\\u13a6\\u13dd\\u13c5\": 3278,\n    \"\\u2581\\u13a6\\u13e3\\u13c4\\u13b8\": 3279,\n    \"\\u2581\\u13d5\\u13e5\\u13f2\\u13b5\\u13b8\\u13ad\": 3280,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\\u13c1\\u13b8\\u13af\": 3281,\n    \"\\u2581\\u13cc\\u13b6\\u13b5\": 3282,\n    \"\\u2581\\u13a4\\u13c2\\u13ac\\u13a5\\u13cd\\u13a9\": 3283,\n    \"\\u2581\\u13aa\\u13d2\\u13d4\\u13c5\": 3284,\n    \"\\u2581\\u13a4\\u13c2\\u13b8\\u13c9\\u13d4\\u13c1\": 3285,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d4\\u13c5\": 3286,\n    \"\\u2581\\u13b2\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 3287,\n    \"\\u13a5\\u13cd\\u13a8\\u13cd\\u13d7\": 3288,\n    \"\\u2581\\u13b0\\u13ea\\u13b8\\u13a6\": 3289,\n    \"\\u2581\\u13e7\\u13d3\\u13d8\\u13be\\u13a2\": 3290,\n    \"\\u2581\\u13d7\\u13a7\\u13c1\\u13a2\\u13cd\\u13d7\": 3291,\n    \"\\u2581\\u13aa\\u13e2\\u13d7\": 3292,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d1\\u13f0\\u13db\": 3293,\n    \"\\u2581\\u13a5\\u13a9\\u13c5\\u13df\": 3294,\n    \"\\u2581\\u13a2\\u13e8\\u13cd\\u13d7\\u13f0\\u13d7\\u13ad\": 3295,\n    \"\\u2581\\u13a6\\u13ef\\u13b4\\u13cd\\u13d7\": 3296,\n    \"\\u2581\\u13a2\\u13ac\\u13ea\\u13c5\\u13db\": 3297,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d3\\u13f4\\u13d7\": 3298,\n    \"\\u2581\\u13d5\\u13aa\\u13e2\\u13e9\\u13d7\\u13d2\": 3299,\n    \"\\u2581\\u13e7\\u13c3\\u13e9\": 3300,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13d3\\u13b4\\u13c5\\u13db\": 3301,\n    \"\\u2581\\u13c2\\u13da\\u13c5\\u13cf\\u13f4\": 3302,\n    \"\\u2581\\u13d7\\u13a9\\u13c5\\u13d2\": 3303,\n    \"\\u2581\\u13c4\\u13c2\\u13b2\\u13be\": 3304,\n    \"\\u2581\\u13d7\\u13c1\\u13d9\\u13b2\": 3305,\n    \"\\u2581\\u13a0\\u13c2\\u13be\\u13c1\\u13cd\\u13ac\": 3306,\n    \"\\u2581\\u13c4\\u13e0\\u13be\\u13cd\\u13db\\u13be\": 3307,\n    \"\\u2581\\u13a4\\u13e2\\u13c9\\u13d7\": 3308,\n    \"\\u2581\\u13cc\\u13c8\": 3309,\n    \"\\u2581\\u13da\\u13a6\\u13cc\\u13db\": 3310,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 3311,\n    \"\\u2581\\u13a0\\u13d3\\u13e0\\u13cd\\u13d7\": 3312,\n    \"\\u2581\\u13a0\\u13b9\\u13f3\\u13b6\\u13d7\": 3313,\n    \"\\u2581\\u13a2\\u13e5\\u13ea\\u13cd\\u13d7\\u13f1\": 3314,\n    \"\\u13c3\\u13b4\": 3315,\n    \"\\u2581\\u13a4\\u13c2\\u13d1\\u13b8\\u13d3\": 3316,\n    \"\\u2581\\u13a1\\u13e3\\u13b8\\u13c9\\u13d7\\u13f3\": 3317,\n    \"\\u2581\\u13a2\\u13a0\": 3318,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13cd\\u13d5\\u13b8\\u13d7\": 3319,\n    \"\\u2581\\u13eb\\u13a8\\u13e5\\u13f2\\u13b5\\u13ad\": 3320,\n    \"\\u2581\\u13a0\\u13c2\\u13d9\\u13be\\u13a2\": 3321,\n    \"\\u2581\\u13d9\\u13d7\\u13e3\\u13d3\\u13c5\\u13db\\u13a2\": 3322,\n    \"\\u2581\\u13a0\\u13c1\\u13e2\\u13d4\\u13c5\\u13af\": 3323,\n    \"\\u13c5\\u13aa\\u13e4\": 3324,\n    \"\\u2581\\u13ac\\u13c1\\u13cd\\u13d7\": 3325,\n    \"\\u2581\\u13d3\\u13ad\\u13c3\\u13eb\": 3326,\n    \"\\u2581\\u13da\\u13e6\\u13af\\u13cd\\u13db\": 3327,\n    \"\\u2581\\u13a4\\u13d8\\u13f4\\u13af\": 3328,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13af\": 3329,\n    \"\\u2581\\u13a1\\u13c3\\u13f1\": 3330,\n    \"\\u13bf\\u13d5\\u13a9\": 3331,\n    \"\\u2581\\u13a0\\u13ef\\u13d6\\u13be\": 3332,\n    \"\\u2581\\u13e7\\u13d9\\u13d3\\u13c6\\u13db\": 3333,\n    \"\\u2581\\u13a0\\u13ac\\u13ad\\u13b8\\u13db\": 3334,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13b5\\u13a2\": 3335,\n    \"\\u2581\\u13a0\\u13d3\\u13ea\\u13b3\\u13a9\\u13cd\\u13ac\": 3336,\n    \"\\u2581\\u13a2\\u13a7\\u13c1\\u13a2\\u13cd\\u13d7\": 3337,\n    \"\\u2581\\u13af\\u13ec\\u13c2\\u13cd\\u13ac\": 3338,\n    \"\\u2581\\u13eb\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\": 3339,\n    \"\\u2581\\u13a4\\u13c3\\u13cd\\u13db\": 3340,\n    \"\\u2581\\u13a6\\u13c6\\u13d8\": 3341,\n    \"\\u2581\\u13a4\\u13b6\\u13af\\u13cd\\u13d7\": 3342,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13a9\\u13db\": 3343,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13e6\\u13e9\\u13db\": 3344,\n    \"\\u2581\\u13a4\\u13a9\\u13b5\\u13f2\\u13e8\": 3345,\n    \"\\u2581\\u13e5\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13ad\": 3346,\n    \"\\u2581\\u13d3\\u13ac\\u13c1\\u13b5\": 3347,\n    \"\\u2581\\u13f1\\u13cd\\u13a6\\u13a2\\u13ae\\u13cd\\u13d7\": 3348,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c1\\u13b8\\u13d7\": 3349,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d2\\u13a9\": 3350,\n    \"\\u13a6\\u13c3\\u13b1\\u13a9\\u13cd\\u13ac\": 3351,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13ce\": 3352,\n    \"\\u2581\\u13d7\\u13d3\\u13ec\\u13cd\\u13d7\": 3353,\n    \"\\u2581\\u13ac\\u13e9\\u13c3\\u13c1\\u13b4\": 3354,\n    \"\\u2581\\u13a0\\u13aa\\u13ce\\u13ae\\u13cd\\u13d7\": 3355,\n    \"\\u2581\\u13a6\\u13b5\\u13a1\\u13b5\\u13a6\": 3356,\n    \"\\u2581\\u13b9\\u13be\": 3357,\n    \"\\u13b3\\u13a9\\u13d2\": 3358,\n    \"\\u2581\\u13a2\\u13aa\\u13af\": 3359,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13a2\": 3360,\n    \"\\u2581\\u13d5\\u13ac\\u13d7\\u13cd\\u13ac\": 3361,\n    \"\\u2581\\u13a4\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c1\": 3362,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13cd\\u13d7\": 3363,\n    \"\\u2581\\u13ae\\u13c2\\u13b5\": 3364,\n    \"\\u2581\\u13a0\\u13d3\\u13f0\\u13a8\\u13cd\\u13d7\": 3365,\n    \"\\u2581\\u13a0\\u13f4\\u13e4\\u13c2\": 3366,\n    \"\\u2581\\u13a0\\u13aa\\u13d4\\u13c5\\u13af\": 3367,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13d7\\u13f1\": 3368,\n    \"\\u2581\\u13a0\\u13a6\\u13b8\\u13d3\": 3369,\n    \"\\u2581\\u13a0\\u13e5\\u13c5\\u13cf\\u13db\": 3370,\n    \"\\u2581\\u13f3\\u13da\\u13b5\": 3371,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13eb\\u13d2\\u13af\": 3372,\n    \"\\u2581\\u13a9\\u13be\\u13b5\\u13a2\": 3373,\n    \"\\u2581\\u13ad\\u13c2\\u13e3\": 3374,\n    \"\\u2581\\u13d5\\u13a7\\u13c1\\u13e4\": 3375,\n    \"\\u2581\\u13ee\\u13db\": 3376,\n    \"\\u2581\\u13a0\\u13c2\\u13af\\u13d7\": 3377,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13d9\\u13cd\\u13d5\\u13a2\": 3378,\n    \"\\u2581\\u13ef\\u13d7\\u13ad\": 3379,\n    \"\\u2581\\u13a7\\u13c3\\u13a9\\u13cd\\u13d7\": 3380,\n    \"\\u13b2\\u13cd\\u13ac\\u13be\": 3381,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 3382,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13d7\\u13f1\": 3383,\n    \"\\u2581\\u13a0\\u13f2\\u13d9\\u13d7\": 3384,\n    \"\\u2581\\u13d7\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\\u13af\": 3385,\n    \"\\u2581\\u13a0\\u13e5\\u13b3\": 3386,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13db\\u13ae\": 3387,\n    \"\\u2581\\u13a0\\u13c7\\u13c5\\u13cd\\u13d7\": 3388,\n    \"\\u2581\\u13e5\\u13cd\\u13aa\\u13b5\": 3389,\n    \"\\u13f0\\u13a2\\u13b5\\u13d3\\u13cd\\u13d7\": 3390,\n    \"\\u13d3\\u13c5\\u13d6\\u13d7\": 3391,\n    \"\\u2581\\u13d5\\u13e5\\u13c1\\u13b8\": 3392,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13cd\\u13d7\\u13f1\": 3393,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13ac\": 3394,\n    \"\\u2581\\u13ec\\u13a9\\u13b7\\u13e8\\u13a9\": 3395,\n    \"\\u2581\\u13a4\\u13d7\\u13d7\\u13e2\": 3396,\n    \"\\u2581\\u13a4\\u13e1\\u13d7\\u13cd\\u13a9\": 3397,\n    \"\\u2581\\u13d9\\u13e5\": 3398,\n    \"\\u2581\\u13a0\\u13ac\\u13d7\\u13cd\\u13ac\\u13a2\": 3399,\n    \"\\u2581\\u13a1\\u13ae\\u13be\": 3400,\n    \"\\u2581\\u13a7\\u13eb\": 3401,\n    \"\\u2581\\u13a0\\u13b4\\u13c2\\u13cd\\u13a9\": 3402,\n    \"\\u2581\\u13a0\\u13d3\\u13b4\\u13c2\\u13cd\\u13ac\": 3403,\n    \"\\u13d3\\u13c1\\u13ae\": 3404,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13cd\\u13ac\": 3405,\n    \"\\u13f2\\u13be\": 3406,\n    \"\\u13a4\\u13f2\": 3407,\n    \"\\u2581\\u13e7\\u13c1\\u13e4\\u13a2\": 3408,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13a9\": 3409,\n    \"\\u2581\\u13d7\\u13e5\\u13be\\u13eb\\u13f1\": 3410,\n    \"\\u13d3\\u13f4\\u13b3\\u13db\": 3411,\n    \"\\u2581\\u13a6\\u13df\\u13ae\": 3412,\n    \"\\u2581\\u13a0\\u13aa\\u13b5\\u13f0\\u13d7\": 3413,\n    \"\\u13db\\u13c1\\u13b2\": 3414,\n    \"\\u2581\\u13ea\": 3415,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13ad\": 3416,\n    \"\\u13ef\\u13d4\\u13ae\\u13cd\\u13d7\": 3417,\n    \"\\u2581\\u13d7\\u13a7\\u13c2\\u13a8\": 3418,\n    \"\\u2581\\u13d3\\u13cd\\u13db\\u13a2\": 3419,\n    \"\\u2581\\u13a4\\u13cc\\u13af\\u13b8\\u13a2\": 3420,\n    \"\\u2581\\u13d7\\u13c1\\u13af\": 3421,\n    \"\\u2581\\u13d5\\u13e3\\u13a7\": 3422,\n    \"\\u2581\\u13ce\\u13c9\": 3423,\n    \"\\u2581\\u13c4\\u13db\\u13c5\\u13a2\": 3424,\n    \"\\u13cd\\u13db\\u13a2\": 3425,\n    \"\\u2581\\u13a0\\u13e5\\u13db\\u13d9\\u13d7\": 3426,\n    \"\\u2581\\u13be\\u13c6\\u13cd\\u13db\": 3427,\n    \"\\u2581\\u13d3\\u13c6\\u13a7\\u13be\\u13c5\": 3428,\n    \"\\u2581\\u13a0\\u13ef\\u13a5\": 3429,\n    \"\\u13ef\\u13c5\": 3430,\n    \"\\u2581\\u13a2\\u13a9\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 3431,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13e8\\u13a9\": 3432,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13ce\": 3433,\n    \"\\u2581\\u13a6\\u13d3\\u13cd\\u13ac\\u13a2\": 3434,\n    \"\\u2581\\u13ae\\u13d3\": 3435,\n    \"\\u2581\\u13a4\\u13b4\\u13c5\\u13a9\": 3436,\n    \"\\u2581\\u13d3\\u13e4\\u13b8\": 3437,\n    \"\\u2581\\u13d9\\u13ef\": 3438,\n    \"\\u2581\\u13a6\\u13c1\\u13df\\u13f4\\u13cd\\u13d7\": 3439,\n    \"\\u2581\\u13da\\u13e9\\u13db\\u13ae\": 3440,\n    \"\\u2581\\u13a6\\u13c4\\u13b8\\u13d2\": 3441,\n    \"\\u2581\\u13d7\\u13aa\\u13e2\": 3442,\n    \"\\u2581\\u13c5\\u13b5\\u13cc\\u13b5\\u13c9\": 3443,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13ce\\u13a2\": 3444,\n    \"\\u13c2\\u13cd\\u13d9\\u13d7\": 3445,\n    \"\\u2581\\u13a3\\u13d2\": 3446,\n    \"\\u2581\\u13ac\\u13a8\\u13f3\\u13a2\": 3447,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13b2\\u13af\": 3448,\n    \"\\u2581\\u13cf\\u13b3\": 3449,\n    \"\\u2581\\u13e3\\u13da\\u13b5\\u13cd\\u13ac\": 3450,\n    \"\\u13a0\\u13c6\": 3451,\n    \"\\u13d0\\u13c9\": 3452,\n    \"\\u2581\\u13ee\\u13d3\": 3453,\n    \"\\u2581\\u13a4\\u13e9\\u13d4\\u13c5\": 3454,\n    \"\\u13c3\\u13ae\\u13b8\": 3455,\n    \"\\u13d5\\u13ef\\u13d9\\u13d4\\u13c5\\u13a9\": 3456,\n    \"\\u13a5\\u13cf\": 3457,\n    \"\\u2581\\u13a0\\u13cd\\u13d8\": 3458,\n    \"\\u2581\\u13a4\\u13cd\\u13c9\\u13df\": 3459,\n    \"\\u2581\\u13a6\\u13ac\\u13e9\": 3460,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\": 3461,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\": 3462,\n    \"\\u13e5\\u13b6\\u13cf\": 3463,\n    \"\\u13d4\\u13c2\\u13d3\": 3464,\n    \"\\u2581\\u13a6\\u13c5\\u13c5\\u13a2\": 3465,\n    \"\\u2581\\u13aa\\u13ea\\u13b8\\u13a9\": 3466,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\": 3467,\n    \"\\u2581\\u13a4\\u13c1\\u13d2\": 3468,\n    \"\\u2581\\u13a4\\u13a6\\u13c3\": 3469,\n    \"\\u2581\\u13d3\\u13b6\\u13c2\\u13a8\\u13a2\": 3470,\n    \"\\u2581\\u13e8\\u13d7\": 3471,\n    \"\\u2581\\u13c4\\u13d3\\u13b4\\u13af\": 3472,\n    \"\\u2581\\u13a1\\u13cd\\u13a6\\u13c2\": 3473,\n    \"\\u2581\\u13a4\\u13ec\\u13b8\\u13a2\": 3474,\n    \"\\u13a7\\u13cf\": 3475,\n    \"\\u2581\\u13a0\\u13a6\\u13d9\": 3476,\n    \"\\u2581\\u13a0\\u13c2\\u13f2\": 3477,\n    \"\\u13aa\\u13b2\": 3478,\n    \"\\u13d9\\u13b3\": 3479,\n    \"\\u2581\\u13a4\\u13ed\": 3480,\n    \"\\u13e6\\u13e9\\u13db\": 3481,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13be\\u13a2\": 3482,\n    \"\\u13b8\\u13c9\\u13db\\u13be\": 3483,\n    \"\\u2581\\u13c4\\u13cd\\u13d5\\u13a2\": 3484,\n    \"\\u13af\\u13f3\\u13b2\\u13cd\\u13a6\": 3485,\n    \"\\u2581\\u13ae\\u13af\": 3486,\n    \"\\u13a1\\u13b5\\u13cd\\u13d7\": 3487,\n    \"\\u2581\\u13c5\\u13d7\": 3488,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\\u13d9\\u13d7\": 3489,\n    \"\\u2581\\u13a4\\u13a6\\u13db\": 3490,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\\u13b8\\u13a2\": 3491,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c2\\u13d9\\u13b8\\u13a2\": 3492,\n    \"\\u13af\\u13ef\": 3493,\n    \"\\u13ac\\u13be\\u13a8\": 3494,\n    \"\\u2581\\u13f2\\u13e5\": 3495,\n    \"\\u13cd\\u13a6\\u13c3\\u13b3\": 3496,\n    \"\\u2581\\u13a5\\u13e3\": 3497,\n    \"\\u2581\\u13c5\\u13e9\\u13cd\\u13db\": 3498,\n    \"\\u2581\\u13da\\u13ec\": 3499,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\\u13c5\\u13a9\": 3500,\n    \"\\u13a9\\u13cd\\u13d7\\u13f1\": 3501,\n    \"\\u13a7\\u13c5\": 3502,\n    \"\\u13b5\\u13b9\": 3503,\n    \"\\u2581\\u13b2\\u13a6\": 3504,\n    \"\\u2581\\u13b5\\u13cf\": 3505,\n    \"\\u2581\\u13d5\\u13c5\": 3506,\n    \"\\u13cd\\u13d9\\u13d7\\u13f1\": 3507,\n    \"\\u2581\\u13a7\\u13b5\": 3508,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\": 3509,\n    \"\\u2581\\u13f1\\u13be\": 3510,\n    \"\\u13be\\u13c9\": 3511,\n    \"ss\": 3512,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\": 3513,\n    \"\\u13e6\\u13f0\\u13c2\": 3514,\n    \"\\u2581\\u13a4\\u13e9\\u13c1\": 3515,\n    \"\\u13ef\\u13c5\\u13b2\\u13a9\": 3516,\n    \"\\u2581\\u13af\\u13c1\\u13b8\": 3517,\n    \"s\": 3518,\n    \"\\u13de\": 3519,\n    \"\\u2581\\u13a2\\u13e3\\u13df\\u13c2\\u13ac\\u13c1\": 3520,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\\u13b5\\u13ad\": 3521,\n    \"\\u2581\\u13e5\\u13aa\\u13a5\": 3522,\n    \"\\u13d9\\u13b5\\u13e8\": 3523,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d3\\u13e9\\u13d7\": 3524,\n    \"\\u2581\\u13e3\\u13db\": 3525,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13da\\u13a2\": 3526,\n    \"\\u2581\\u13be\\u13d5\\u13d8\\u13f4\": 3527,\n    \"\\u2581\\u13a4\\u13d7\\u13d4\\u13cd\\u13d7\": 3528,\n    \"\\u13b4\\u13c3\": 3529,\n    \"\\u2581\\u13d7\\u13b2\": 3530,\n    \"\\u13ec\\u13c2\\u13cd\\u13ac\": 3531,\n    \"\\u13d3\\u13c5\\u13d6\\u13b4\": 3532,\n    \"\\u2581\\u13d9\\u13c9\": 3533,\n    \"\\u13e5\\u13c3\\u13ae\\u13cd\\u13a9\": 3534,\n    \"\\u13f0\\u13b8\\u13ad\": 3535,\n    \"\\u13eb\\u13d2\": 3536,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e4\\u13b8\": 3537,\n    \"\\u2581\\u13f1\\u13d5\": 3538,\n    \"\\u13d8\\u13c3\\u13ae\\u13b8\\u13a9\": 3539,\n    \"\\u2581\\u13d3\\u13f2\": 3540,\n    \"\\u13e6\\u13e2\\u13d9\\u13d7\": 3541,\n    \"\\u2581\\u13a0\\u13cc\": 3542,\n    \"\\u13f0\\u13b8\\u13b2\": 3543,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13b8\\u13c5\": 3544,\n    \"\\u2581\\u13a8\\u13a9\": 3545,\n    \"\\u13f0\\u13b8\\u13d7\": 3546,\n    \"\\u13cd\\u13da\\u13a2\\u13d2\": 3547,\n    \"\\u13b6\\u13cf\": 3548,\n    \"\\u2581\\u13d1\\u13be\\u13b4\\u13c9\": 3549,\n    \"\\u13cf\\u13be\\u13cc\\u13c2\": 3550,\n    \"\\u13f4\\u13b5\": 3551,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13ae\\u13b5\": 3552,\n    \"\\u2581\\u13e5\\u13c1\": 3553,\n    \"\\u13e3\\u13b5\\u13cd\\u13d9\": 3554,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13ce\\u13c3\": 3555,\n    \"\\u2581\\u13cd\\u13a6\": 3556,\n    \"\\u2581\\u13d7\\u13ab\": 3557,\n    \"\\u2581\\u13a4\\u13c1\\u13c5\": 3558,\n    \"\\u13a6\\u13d8\\u13f4\": 3559,\n    \"\\u2581\\u13ac\\u13e9\\u13aa\\u13e9\\u13db\": 3560,\n    \"\\u2581\\u13a0\\u13c1\\u13b6\\u13af\": 3561,\n    \"\\u2581\\u13e7\\u13c4\\u13ec\": 3562,\n    \"\\u2581\\u13da\\u13c3\": 3563,\n    \"\\u2581\\u13ac\\u13be\": 3564,\n    \"\\u13cd\\u13d4\\u13c5\\u13ad\": 3565,\n    \"\\u13af\\u13d3\": 3566,\n    \"\\u2581\\u13d5\\u13a6\\u13c5\": 3567,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13ae\": 3568,\n    \"\\u2581\\u13a6\\u13c2\\u13cf\": 3569,\n    \"\\u13b7\\u13e4\\u13b8\": 3570,\n    \"\\u13c1\\u13ce\\u13a2\": 3571,\n    \"\\u2581\\u13f1\\u13c2\\u13ac\": 3572,\n    \"\\u2581\\u13da\\u13c2\\u13f2\": 3573,\n    \"\\u2581\\u13d7\\u13a9\\u13a6\": 3574,\n    \"\\u13d5\\u13ac\": 3575,\n    \"\\u13be\\u13c4\\u13aa\\u13e9\": 3576,\n    \"\\u2581\\u13a4\\u13a6\": 3577,\n    \"\\u13c1\\u13b8\\u13ad\": 3578,\n    \"\\u13b3\\u13d5\": 3579,\n    \"\\u13db\\u13c1\\u13b5\": 3580,\n    \"\\u13cd\\u13d6\": 3581,\n    \"\\u2581\\u13d3\\u13c2\\u13b8\": 3582,\n    \"\\u2581\\u13a4\\u13c2\\u13b6\\u13d2\": 3583,\n    \"\\u13cf\\u13b3\": 3584,\n    \"\\u13a4\\u13cd\\u13d7\": 3585,\n    \"\\u2581\\u13d7\\u13a9\\u13f2\\u13af\": 3586,\n    \"\\u13ed\": 3587,\n    \"\\u13e3\\u13b5\": 3588,\n    \"\\u13e6\": 3589,\n    \"\\u2581\\u13af\\u13cd\\u13a9\\u13a6\\u13da\": 3590,\n    \"\\u13e3\\u13c5\\u13a9\": 3591,\n    \"\\u13d9\\u13ac\": 3592,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\": 3593,\n    \"\\u2581\\u13a4\\u13f0\": 3594,\n    \"\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\": 3595,\n    \"\\u13db\\u13d4\\u13c2\": 3596,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 3597,\n    \"\\u2581\\u13a4\\u13e9\\u13d2\\u13cd\\u13a9\\u13c2\": 3598,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\": 3599,\n    \"\\u2581\\u13eb\\u13e8\\u13f2\\u13ea\\u13b3\": 3600,\n    \"\\u2581\\u13be\\u13d3\": 3601,\n    \"\\u2581\\u13c4\\u13ec\": 3602,\n    \"\\u2581\\u13e5\\u13a6\\u13d4\\u13b2\": 3603,\n    \"\\u2581\\u13c2\\u13e8\": 3604,\n    \"\\u13f2\\u13cd\\u13d4\\u13c2\": 3605,\n    \"\\u2581\\u13d3\\u13a8\\u13e3\": 3606,\n    \"\\u13cb\": 3607,\n    \"\\u13e2\\u13a2\": 3608,\n    \"\\u2581\\u13a4\\u13be\\u13d5\": 3609,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 3610,\n    \"\\u2581\\u13c2\\u13a6\\u13a5\\u13a9\": 3611,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13b5\": 3612,\n    \"\\u13a2\\u13cd\\u13d9\\u13d7\": 3613,\n    \"\\u13e9\\u13db\": 3614,\n    \"\\u13e9\\u13d2\": 3615,\n    \"\\u2581\\u13cd\": 3616,\n    \"\\u2581\\u13c8\\u13b5\": 3617,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\": 3618,\n    \"\\u13e0\\u13cd\\u13d7\": 3619,\n    \"\\u13b5\\u13d9\\u13b4\": 3620,\n    \"\\u13af\\u13af\": 3621,\n    \"\\u2581\\u13d5\\u13e8\": 3622,\n    \"\\u2581\\u13e5\\u13da\\u13c2\": 3623,\n    \"\\u13e5\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 3624,\n    \"\\u13c6\\u13cf\": 3625,\n    \"\\u13d8\\u13c3\\u13b8\": 3626,\n    \"\\u13c7\\u13c5\": 3627,\n    \"\\u13cd\\u13d3\\u13f1\": 3628,\n    \"\\u13f4\\u13d7\": 3629,\n    \"\\u2581\\u13a4\\u13ad\": 3630,\n    \"\\u13b8\\u13db\": 3631,\n    \"\\u2581\\u13a4\\u13be\\u13a9\\u13b8\": 3632,\n    \"\\u13c1\\u13e8\": 3633,\n    \"\\u13e8\\u13d7\": 3634,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13c9\": 3635,\n    \"\\u13cd\\u13d7\\u13cd\\u13a9\": 3636,\n    \"\\u13aa\\u13db\": 3637,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\": 3638,\n    \"\\u13b4\\u13a3\": 3639,\n    \"\\u2581\\u13a4\\u13c3\\u13ae\\u13b8\": 3640,\n    \"\\u2581\\u13a2\\u13e5\\u13e0\": 3641,\n    \"\\u13cd\\u13da\": 3642,\n    \"\\u2581\\u13a4\\u13b5\\u13ae\\u13b5\\u13e8\": 3643,\n    \"\\u13ec\\u13a5\": 3644,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13b2\": 3645,\n    \"d\": 3646,\n    \"\\u2581\\u13a4\\u13c2\\u13d9\": 3647,\n    \"\\u2581\\u13da\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b4\": 3648,\n    \"\\u2581\\u13a6\\u13a6\\u13b6\": 3649,\n    \"\\u2581\\u13d3\\u13c2\\u13d9\\u13a8\": 3650,\n    \"\\u13e7\\u13cd\\u13c6\\u13f4\\u13cd\\u13d7\": 3651,\n    \"\\u2581\\u13d9\\u13d3\\u13c6\\u13cd\\u13ac\": 3652,\n    \"\\u13d7\\u13a6\\u13b5\\u13a0\\u13c5\\u13af\\u13db\": 3653,\n    \"\\u2581\\u13e4\\u13b2\": 3654,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13a8\\u13d2\": 3655,\n    \"\\u13d1\\u13be\\u13b4\": 3656,\n    \"\\u2581\\u13a4\\u13e6\\u13f1\\u13b4\": 3657,\n    \"\\u2581\\u13ed\\u13c2\\u13b6\\u13ce\": 3658,\n    \"\\u2581\\u13a4\\u13cc\\u13af\\u13b8\": 3659,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13c5\\u13db\": 3660,\n    \"\\u2581\\u13a7\\u13c1\\u13cc\": 3661,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13b5\\u13cd\\u13ac\": 3662,\n    \"\\u2581\\u13a4\\u13d3\\u13d1\\u13f4\": 3663,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b4\": 3664,\n    \"\\u2581\\u13d7\\u13e7\": 3665,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c2\": 3666,\n    \"\\u2581\\u13d9\\u13d3\\u13ac\": 3667,\n    \"\\u13a2\\u13a6\": 3668,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c1\\u13b4\": 3669,\n    \"\\u13a4\\u13d9\\u13af\\u13f3\\u13af\": 3670,\n    \"\\u13b3\\u13c1\": 3671,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13a2\\u13b2\": 3672,\n    \"\\u13d4\\u13f2\\u13cd\\u13d7\": 3673,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13ae\": 3674,\n    \"\\u2581\\u13c2\\u13a8\\u13ce\": 3675,\n    \"\\u2581\\u13a4\\u13ea\\u13f4\": 3676,\n    \"\\u2581\\u13e7\\u13b5\\u13cf\": 3677,\n    \"\\u13e0\\u13e8\": 3678,\n    \"\\u13d3\\u13b4\\u13c2\\u13cd\\u13ac\": 3679,\n    \"\\u13cd\\u13c8\\u13ef\": 3680,\n    \"\\u2581\\u13a0\\u13ab\": 3681,\n    \"\\u2581\\u13ec\\u13a9\\u13b7\\u13e8\": 3682,\n    \"\\u2581\\u13c2\\u13a6\\u13c5\\u13af\\u13d2\": 3683,\n    \"\\u13a6\\u13b8\": 3684,\n    \"\\u2581\\u13a6\\u13a2\\u13d2\": 3685,\n    \"\\u2581\\u13a1\\u13b5\\u13cd\\u13ac\": 3686,\n    \"\\u13ac\\u13c1\\u13b5\": 3687,\n    \"\\u2581\\u13be\\u13ef\\u13db\\u13a5\": 3688,\n    \"\\u2581\\u13d5\\u13a6\\u13a7\\u13b2\": 3689,\n    \"\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\": 3690,\n    \"\\u2581\\u13a4\\u13c1\\u13dd\\u13c5\": 3691,\n    \"\\u13f0\\u13b8\": 3692,\n    \"\\u2581\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 3693,\n    \"\\u2581\\u13da\\u13e9\\u13c2\\u13a6\\u13b8\": 3694,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d4\\u13c5\": 3695,\n    \"\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 3696,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13d9\\u13d7\": 3697,\n    \"\\u2581\\u13e7\\u13ed\\u13aa\\u13d9\\u13d7\": 3698,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13a9\\u13d2\": 3699,\n    \"\\u13a6\\u13b5\\u13b7\\u13a8\\u13cd\\u13d7\": 3700,\n    \"\\u2581\\u13a5\\u13de\": 3701,\n    \"\\u2581\\u13c2\\u13a6\\u13db\\u13c1\\u13b2\": 3702,\n    \"\\u2581\\u13aa\\u13b5\\u13cd\\u13d7\": 3703,\n    \"\\u13a6\\u13d8\\u13d5\\u13af\": 3704,\n    \"\\u2581\\u13e7\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 3705,\n    \"\\u2581\\u13a0\\u13e9\\u13be\\u13a6\\u13b3\": 3706,\n    \"\\u2581\\u13e5\\u13a6\\u13d8\\u13cf\": 3707,\n    \"\\u2581\\u13a0\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13d4\\u13c5\\u13af\": 3708,\n    \"\\u2581\\u13a0\\u13c2\\u13f0\\u13aa\\u13a9\": 3709,\n    \"\\u2581\\u13a0\\u13f2\\u13d3\\u13cc\\u13b2\": 3710,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13cd\\u13a6\\u13df\": 3711,\n    \"\\u2581\\u13a4\\u13e9\\u13ad\\u13c2\\u13b4\": 3712,\n    \"\\u2581\\u13c2\\u13a9\\u13ea\\u13ce\\u13b8\\u13ad\": 3713,\n    \"\\u2581\\u13c5\\u13e7\\u13d3\\u13b4\\u13c5\\u13b2\\u13be\": 3714,\n    \"\\u2581\\u13d7\\u13e6\\u13ea\\u13b5\\u13cd\\u13a9\": 3715,\n    \"\\u2581\\u13a0\\u13d0\\u13a5\\u13cd\\u13d9\\u13d7\": 3716,\n    \"\\u2581\\u13c5\\u13db\\u13c6\\u13d3\\u13b4\\u13c5\\u13af\": 3717,\n    \"\\u2581\\u13cf\\u13b5\\u13c6\": 3718,\n    \"\\u2581\\u13e3\\u13d3\\u13f2\\u13c1\\u13b8\\u13a9\": 3719,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13cd\\u13a6\\u13b6\\u13a9\": 3720,\n    \"\\u2581\\u13a6\\u13c5\\u13c3\\u13e9\": 3721,\n    \"\\u2581\\u13c5\\u13e5\\u13ea\\u13ce\\u13b8\\u13a9\": 3722,\n    \"\\u2581\\u13a4\\u13da\\u13d3\\u13b4\\u13db\": 3723,\n    \"\\u2581\\u13a0\\u13d3\\u13ea\\u13af\": 3724,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13a1\\u13cd\\u13d7\": 3725,\n    \"\\u2581\\u13e6\\u13d1\\u13eb\": 3726,\n    \"\\u2581\\u13a4\\u13ea\\u13d0\\u13c5\\u13f4\": 3727,\n    \"\\u2581\\u13a4\\u13db\\u13b4\\u13ae\": 3728,\n    \"\\u2581\\u13a4\\u13bf\\u13b7\\u13d2\\u13a9\": 3729,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13d3\\u13cd\\u13d3\": 3730,\n    \"\\u2581\\u13a2\\u13b3\\u13a9\\u13f3\": 3731,\n    \"\\u13f2\\u13a6\": 3732,\n    \"\\u2581\\u13a0\\u13aa\\u13d5\\u13cd\\u13a9\": 3733,\n    \"\\u2581\\u13e7\\u13c1\\u13bf\\u13a2\": 3734,\n    \"\\u2581\\u13a0\\u13cd\\u13a9\\u13d3\\u13cd\\u13ac\": 3735,\n    \"\\u2581\\u13e4\\u13c6\\u13b3\\u13c2\": 3736,\n    \"\\u2581\\u13e7\\u13c1\\u13b5\\u13c1\": 3737,\n    \"\\u2581\\u13a8\\u13b4\\u13cf\\u13f1\": 3738,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13c2\\u13d5\\u13c5\": 3739,\n    \"\\u2581\\u13a4\\u13b5\\u13f2\\u13d7\": 3740,\n    \"\\u2581\\u13a2\\u13aa\\u13ea\\u13b3\": 3741,\n    \"\\u2581\\u13d5\\u13e5\\u13c3\\u13a9\\u13cd\\u13a8\\u13cd\\u13d7\": 3742,\n    \"\\u2581\\u13be\\u13a8\\u13a2\\u13f4\": 3743,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13af\": 3744,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\": 3745,\n    \"\\u2581\\u13d3\\u13f2\\u13e4\\u13cf\": 3746,\n    \"\\u2581\\u13d4\\u13d8\\u13c4\\u13a6\": 3747,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 3748,\n    \"\\u2581\\u13f1\\u13c2\\u13ac\\u13c1\\u13ad\": 3749,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13aa\": 3750,\n    \"\\u2581\\u13c2\\u13a9\\u13ea\\u13cf\": 3751,\n    \"\\u2581\\u13da\\u13a8\\u13d3\\u13b5\\u13f4\": 3752,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13e4\\u13b5\": 3753,\n    \"\\u2581\\u13a0\\u13e6\\u13b3\\u13c5\": 3754,\n    \"\\u2581\\u13d5\\u13e5\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 3755,\n    \"\\u2581\\u13da\\u13cd\\u13d3\\u13a6\\u13b8\": 3756,\n    \"\\u2581\\u13f1\\u13e4\\u13b5\\u13af\\u13cd\\u13a8\\u13cd\\u13d7\": 3757,\n    \"\\u2581\\u13d7\\u13a6\\u13b6\\u13d4\\u13c5\": 3758,\n    \"\\u2581\\u13da\\u13ad\\u13c4\\u13ee\": 3759,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13a9\\u13cd\\u13d9\\u13d7\": 3760,\n    \"\\u2581\\u13e7\\u13be\\u13ac\\u13e9\\u13b6\\u13d7\": 3761,\n    \"\\u2581\\u13a4\\u13ed\\u13e2\\u13d4\\u13c5\\u13a9\": 3762,\n    \"\\u13d8\\u13ef\\u13cd\\u13d3\\u13c1\": 3763,\n    \"\\u2581\\u13d7\\u13be\\u13a2\\u13d2\": 3764,\n    \"\\u2581\\u13d5\\u13aa\\u13ea\\u13b4\\u13cd\\u13d7\": 3765,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\\u13e8\": 3766,\n    \"\\u2581\\u13eb\\u13d7\\u13b6\\u13af\": 3767,\n    \"\\u2581\\u13d3\\u13a6\\u13db\\u13c1\\u13b5\": 3768,\n    \"\\u2581\\u13c4\\u13ea\\u13b2\\u13be\": 3769,\n    \"\\u2581\\u13a2\\u13e6\\u13af\\u13f3\\u13d7\\u13f1\": 3770,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13cd\\u13d5\": 3771,\n    \"\\u2581\\u13d3\\u13f1\\u13be\": 3772,\n    \"\\u2581\\u13ae\\u13b5\\u13a0\": 3773,\n    \"\\u2581\\u13a0\\u13d3\\u13f2\\u13c1\\u13ae\\u13cd\\u13d7\": 3774,\n    \"\\u2581\\u13a1\\u13e5\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 3775,\n    \"\\u2581\\u13a2\\u13ac\\u13db\\u13c1\\u13d7\": 3776,\n    \"\\u2581\\u13a3\\u13a6\\u13da\\u13b5\\u13ad\": 3777,\n    \"\\u2581\\u13e5\\u13da\\u13f3\\u13aa\\u13d7\": 3778,\n    \"\\u2581\\u13e7\\u13c2\\u13b6\\u13b8\\u13d7\": 3779,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\": 3780,\n    \"\\u2581\\u13a0\\u13ab\\u13e9\\u13cc\": 3781,\n    \"\\u2581\\u13a6\\u13c2\\u13a9\\u13b8\": 3782,\n    \"\\u2581\\u13a2\\u13ef\\u13e5\\u13b8\\u13c9\\u13d7\": 3783,\n    \"\\u2581\\u13a4\\u13ac\\u13a5\\u13cd\\u13a9\": 3784,\n    \"\\u2581\\u13f0\\u13d9\\u13ad\": 3785,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13b2\\u13ad\": 3786,\n    \"\\u2581\\u13a0\\u13f0\\u13df\": 3787,\n    \"\\u2581\\u13bf\\u13db\\u13a6\": 3788,\n    \"\\u2581\\u13ac\\u13ec\\u13af\\u13f3\\u13c5\\u13a9\": 3789,\n    \"\\u2581\\u13e7\\u13c2\\u13c1\\u13df\\u13f4\\u13cd\\u13d7\": 3790,\n    \"\\u2581\\u13e3\\u13a6\\u13e8\\u13cd\": 3791,\n    \"\\u2581\\u13a4\\u13b4\\u13f4\\u13d2\": 3792,\n    \"\\u2581\\u13a0\\u13cd\\u13d5\\u13ef\\u13d3\": 3793,\n    \"\\u2581\\u13a2\\u13f3\\u13ea\\u13ce\\u13b8\\u13af\": 3794,\n    \"\\u2581\\u13b2\\u13d3\": 3795,\n    \"\\u2581\\u13d3\\u13ad\\u13cf\": 3796,\n    \"\\u2581\\u13cd\\u13a9\\u13cd\\u13d3\\u13e9\\u13da\\u13a6\": 3797,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 3798,\n    \"\\u2581\\u13af\\u13b8\\u13c9\\u13d3\": 3799,\n    \"\\u2581\\u13e3\\u13d9\\u13b3\\u13c5\\u13cd\\u13d7\": 3800,\n    \"\\u2581\\u13a4\\u13d5\\u13b6\\u13b0\\u13d2\": 3801,\n    \"\\u2581\\u13ad\\u13d3\\u13c5\\u13be\": 3802,\n    \"\\u2581\\u13d7\\u13ab\\u13aa\\u13d7\\u13cd\\u13a9\": 3803,\n    \"\\u2581\\u13a4\\u13b6\\u13d7\\u13e2\": 3804,\n    \"\\u2581\\u13c2\\u13f4\\u13c1\\u13b8\": 3805,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13bf\\u13d5\\u13ac\\u13a2\": 3806,\n    \"\\u2581\\u13d7\\u13aa\\u13e2\\u13c5\\u13af\": 3807,\n    \"\\u2581\\u13d1\\u13d3\\u13b5\\u13cd\\u13aa\\u13af\": 3808,\n    \"\\u2581\\u13a2\\u13a9\\u13c1\\u13b8\": 3809,\n    \"\\u2581\\u13a0\\u13cd\\u13a9\\u13d7\\u13cd\\u13a8\\u13a2\": 3810,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 3811,\n    \"\\u2581\\u13da\\u13ef\\u13ea\\u13a8\": 3812,\n    \"\\u2581\\u13a2\\u13e5\\u13ef\\u13a1\\u13cd\\u13d7\": 3813,\n    \"\\u2581\\u13cd\\u13c8\\u13cd\\u13d4\": 3814,\n    \"\\u2581\\u13d7\\u13e3\\u13a7\\u13c5\\u13a6\": 3815,\n    \"\\u2581\\u13eb\\u13e5\\u13b7\\u13e8\\u13ad\": 3816,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13ae\\u13b5\\u13a8\\u13cd\\u13d7\": 3817,\n    \"\\u2581\\u13a8\\u13e5\\u13c5\\u13d2\\u13af\": 3818,\n    \"\\u2581\\u13e5\\u13e3\\u13db\\u13a9\\u13ad\": 3819,\n    \"\\u2581\\u13d7\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 3820,\n    \"\\u2581\\u13c7\\u13d7\\u13c2\\u13f1\": 3821,\n    \"\\u2581\\u13b6\\u13bb\": 3822,\n    \"\\u2581\\u13a1\\u13e5\\u13ef\\u13c5\\u13db\": 3823,\n    \"\\u2581\\u13a0\\u13e0\\u13d7\\u13f1\": 3824,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\": 3825,\n    \"\\u2581\\u13ce\\u13d8\": 3826,\n    \"\\u2581\\u13e7\\u13b3\\u13cd\\u13a9\": 3827,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c5\\u13a9\": 3828,\n    \"\\u2581\\u13e7\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\\u13d7\": 3829,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13f2\\u13df\": 3830,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13b4\\u13c5\\u13db\": 3831,\n    \"\\u2581\\u13c8\\u13b5\\u13cf\": 3832,\n    \"\\u2581\\u13cd\\u13aa\\u13c1\": 3833,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13a8\\u13c2\": 3834,\n    \"\\u2581\\u13a4\\u13c1\\u13af\": 3835,\n    \"\\u2581\\u13a0\\u13c2\\u13f4\\u13a9\": 3836,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 3837,\n    \"\\u2581\\u13a6\\u13c3\\u13d9\\u13d7\\u13f1\": 3838,\n    \"\\u2581\\u13aa\\u13af\\u13a2\\u13f4\": 3839,\n    \"\\u2581\\u13a2\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 3840,\n    \"\\u2581\\u13da\\u13c3\\u13b8\": 3841,\n    \"\\u2581\\u13a2\\u13e8\\u13c3\\u13ae\\u13ae\\u13b8\": 3842,\n    \"\\u2581\\u13c2\\u13e8\\u13a6\": 3843,\n    \"\\u2581\\u13a2\\u13a6\\u13a6\\u13d3\": 3844,\n    \"\\u2581\\u13aa\\u13b0\\u13cd\": 3845,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13e3\\u13db\": 3846,\n    \"\\u2581\\u13a0\\u13e8\\u13cd\\u13db\": 3847,\n    \"\\u2581\\u13b9\\u13a6\": 3848,\n    \"\\u2581\\u13d3\\u13be\\u13d5\\u13f2\\u13b2\\u13cd\\u13ac\": 3849,\n    \"\\u2581\\u13c4\\u13e9\\u13c1\\u13b0\": 3850,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\\u13d4\\u13c5\\u13af\": 3851,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13c5\\u13af\": 3852,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13e3\\u13cd\\u13da\\u13b6\\u13a9\\u13af\": 3853,\n    \"\\u13a1\\u13b8\": 3854,\n    \"\\u2581\\u13a0\\u13cd\\u13ab\\u13d5\\u13cd\\u13d7\\u13f1\": 3855,\n    \"\\u2581\\u13a4\\u13f0\\u13e8\": 3856,\n    \"\\u2581\\u13ef\\u13c2\\u13a6\\u13d4\\u13ae\": 3857,\n    \"\\u2581\\u13e5\\u13c1\\u13a6\": 3858,\n    \"\\u2581\\u13a4\\u13db\\u13d2\\u13af\": 3859,\n    \"\\u2581\\u13a2\\u13cd\\u13d5\\u13be\": 3860,\n    \"\\u2581\\u13d7\\u13d8\\u13f2\\u13af\": 3861,\n    \"\\u2581\\u13c3\\u13a9\\u13ea\\u13ce\\u13b8\": 3862,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13af\\u13f3\": 3863,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13ce\\u13a2\": 3864,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\": 3865,\n    \"\\u2581\\u13e5\\u13d9\\u13a6\": 3866,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13d7\": 3867,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13c1\\u13a2\": 3868,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13d7\": 3869,\n    \"\\u2581\\u13e5\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\": 3870,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\\u13e8\\u13af\": 3871,\n    \"\\u2581\\u13d3\\u13a7\\u13c5\": 3872,\n    \"\\u2581\\u13a9\\u13b3\\u13af\\u13f3\": 3873,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\": 3874,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13eb\": 3875,\n    \"\\u2581\\u13c7\\u13b5\\u13a9\": 3876,\n    \"\\u2581\\u13aa\\u13ea\\u13b4\": 3877,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13c5\\u13a9\": 3878,\n    \"\\u2581\\u13d3\\u13e8\\u13c1\\u13b5\": 3879,\n    \"\\u2581\\u13a1\\u13a6\": 3880,\n    \"\\u2581\\u13a4\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 3881,\n    \"\\u2581\\u13a8\\u13b5\\u13cd\\u13a9\": 3882,\n    \"\\u2581\\u13d7\\u13a6\\u13e5\": 3883,\n    \"\\u2581\\u13e5\\u13ef\\u13b5\\u13a1\\u13b5\\u13e4\": 3884,\n    \"\\u13c1\\u13c9\\u13e5\": 3885,\n    \"\\u2581\\u13a1\\u13d3\\u13cd\\u13d7\": 3886,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13aa\\u13d7\\u13f1\": 3887,\n    \"\\u2581\\u13a4\\u13ea\\u13cd\\u13a9\\u13b8\\u13a2\": 3888,\n    \"\\u2581\\u13eb\\u13e5\\u13a6\\u13db\\u13a2\": 3889,\n    \"\\u2581\\u13e7\\u13d3\\u13b5\\u13a2\": 3890,\n    \"\\u2581\\u13a4\\u13a9\\u13d2\\u13a9\": 3891,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13ae\\u13ad\": 3892,\n    \"\\u2581\\u13c2\\u13da\\u13e9\\u13c1\\u13b4\\u13a2\": 3893,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13db\": 3894,\n    \"\\u2581\\u13bb\\u13b3\": 3895,\n    \"\\u2581\\u13a2\\u13a6\\u13b5\\u13a2\": 3896,\n    \"\\u2581\\u13be\\u13ef\\u13db\\u13a5\\u13a9\": 3897,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c1\\u13a2\": 3898,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13aa\\u13be\\u13d7\\u13cd\\u13ac\\u13a2\": 3899,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13aa\\u13be\\u13d7\\u13cd\\u13ac\\u13a2\": 3900,\n    \"\\u13cd\\u13a6\\u13ce\\u13d7\": 3901,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13a9\\u13d2\\u13a9\": 3902,\n    \"\\u2581\\u13a6\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 3903,\n    \"\\u2581\\u13a2\\u13aa\": 3904,\n    \"\\u2581\\u13a2\\u13f3\\u13d2\\u13af\": 3905,\n    \"\\u2581\\u13a0\\u13a6\\u13cd\\u13a9\": 3906,\n    \"\\u13c5\\u13ec\\u13d7\\u13f1\": 3907,\n    \"\\u2581\\u13e5\\u13f0\\u13b8\\u13a2\": 3908,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13c5\": 3909,\n    \"\\u2581\\u13a3\\u13b5\\u13e9\\u13f2\": 3910,\n    \"\\u13d3\\u13db\\u13cd\\u13a9\": 3911,\n    \"\\u2581\\u13a4\\u13c7\\u13d3\\u13b5\\u13c9\": 3912,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13a9\\u13ce\\u13a2\": 3913,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\\u13b4\": 3914,\n    \"\\u2581\\u13a4\\u13e9\\u13d4\\u13c5\\u13a9\": 3915,\n    \"\\u13c2\\u13d3\\u13cd\\u13d7\": 3916,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13d6\\u13cd\\u13d7\": 3917,\n    \"\\u2581\\u13a0\\u13c6\\u13e3\": 3918,\n    \"\\u2581\\u13a4\\u13a9\\u13ce\\u13a2\": 3919,\n    \"\\u2581\\u13da\\u13e9\\u13c2\\u13a6\\u13b8\\u13a2\": 3920,\n    \"\\u2581\\u13a4\\u13e6\\u13f1\\u13b4\\u13a2\": 3921,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13db\": 3922,\n    \"\\u2581\\u13a0\\u13a2\\u13d2\\u13a9\": 3923,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\\u13b8\": 3924,\n    \"\\u2581\\u13a6\\u13ef\\u13b8\": 3925,\n    \"\\u13d3\\u13c2\\u13b8\\u13a9\": 3926,\n    \"\\u2581\\u13e5\\u13c4\\u13cd\\u13d5\": 3927,\n    \"\\u2581\\u13e3\\u13d7\\u13ad\": 3928,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13d2\": 3929,\n    \"\\u2581\\u13a4\\u13d7\\u13db\\u13ae\\u13a2\": 3930,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 3931,\n    \"\\u2581\\u13a4\\u13f2\\u13a2\\u13f4\": 3932,\n    \"\\u13f0\\u13db\": 3933,\n    \"\\u2581\\u13dd\\u13a8\": 3934,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13e8\\u13a9\": 3935,\n    \"\\u13d4\\u13b5\": 3936,\n    \"\\u13d7\\u13c2\\u13cd\\u13aa\\u13c2\\u13af\": 3937,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13d4\": 3938,\n    \"\\u2581\\u13a0\\u13d3\\u13af\\u13af\": 3939,\n    \"\\u2581\\u13eb\\u13a6\\u13b7\\u13ac\": 3940,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13e8\\u13a2\": 3941,\n    \"\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\\u13b4\": 3942,\n    \"\\u2581\\u13e7\\u13c1\\u13a6\": 3943,\n    \"\\u2581\\u13ab\\u13a6\": 3944,\n    \"\\u2581\\u13cd\\u13a9\\u13cd\\u13d5\\u13b8\": 3945,\n    \"\\u2581\\u13a2\\u13d7\\u13ac\\u13c1\": 3946,\n    \"\\u13c3\\u13af\\u13ce\\u13b4\": 3947,\n    \"\\u2581\\u13eb\\u13da\\u13ef\\u13c5\\u13ae\\u13a2\": 3948,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13e4\\u13a2\": 3949,\n    \"\\u2581\\u13a2\\u13e8\\u13d7\\u13cd\\u13ac\": 3950,\n    \"\\u2581\\u13a2\\u13d4\": 3951,\n    \"\\u2581\\u13d7\\u13d0\\u13f4\": 3952,\n    \"\\u13ef\\u13a5\\u13a2\": 3953,\n    \"\\u2581\\u13c2\\u13d5\\u13ac\\u13c1\\u13b2\": 3954,\n    \"\\u2581\\u13a4\\u13c5\\u13ce\\u13a2\": 3955,\n    \"\\u2581\\u13af\\u13a6\\u13d4\\u13b2\": 3956,\n    \"\\u2581\\u13a0\\u13c1\\u13ae\\u13cd\\u13d7\": 3957,\n    \"\\u2581\\u13ea\\u13e3\": 3958,\n    \"\\u13d4\\u13c1\\u13cd\\u13d7\": 3959,\n    \"\\u13de\\u13cd\\u13d7\": 3960,\n    \"\\u2581\\u13e7\\u13c1\\u13d7\\u13f1\": 3961,\n    \"\\u2581\\u13a4\\u13ec\\u13e8\": 3962,\n    \"\\u13db\\u13c1\\u13d7\\u13f1\": 3963,\n    \"\\u13a6\\u13db\\u13a6\": 3964,\n    \"\\u2581\\u13a4\\u13aa\\u13b5\\u13f0\\u13a5\": 3965,\n    \"\\u2581\\u13ad\\u13d7\": 3966,\n    \"\\u2581\\u13a4\\u13b7\\u13e4\\u13b4\\u13a2\": 3967,\n    \"\\u13d3\\u13c1\\u13af\": 3968,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13be\": 3969,\n    \"\\u2581\\u13a4\\u13e9\\u13d4\\u13c1\": 3970,\n    \"\\u2581\\u13a1\\u13be\\u13a2\": 3971,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13a9\\u13b8\": 3972,\n    \"\\u2581\\u13a4\\u13ec\\u13c2\\u13ce\": 3973,\n    \"\\u13b3\\u13c5\\u13a9\": 3974,\n    \"\\u13c2\\u13d7\": 3975,\n    \"\\u2581\\u13da\\u13d9\\u13cd\\u13db\": 3976,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c1\": 3977,\n    \"\\u2581\\u13c4\\u13e9\\u13c1\\u13b8\\u13a9\": 3978,\n    \"\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 3979,\n    \"\\u13a8\\u13ce\\u13a2\": 3980,\n    \"\\u13df\\u13cc\\u13c2\": 3981,\n    \"\\u2581\\u13a4\\u13aa\\u13d7\": 3982,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a6\": 3983,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13ae\\u13b5\\u13a8\": 3984,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13d7\\u13f1\": 3985,\n    \"\\u13cf\\u13d0\\u13d7\": 3986,\n    \"\\u2581\\u13d9\\u13d3\\u13a8\": 3987,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13ce\\u13b8\": 3988,\n    \"\\u2581\\u13e7\\u13c1\\u13e4\\u13b4\": 3989,\n    \"\\u2581\\u13a4\\u13e4\\u13b8\": 3990,\n    \"\\u2581\\u13d7\\u13ac\\u13a9\": 3991,\n    \"\\u13ab\\u13e9\": 3992,\n    \"\\u2581\\u13e5\\u13d7\": 3993,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13b2\\u13a9\": 3994,\n    \"\\u2581\\u13d3\\u13ac\\u13a9\": 3995,\n    \"\\u13c1\\u13b2\\u13a9\": 3996,\n    \"\\u2581\\u13d7\\u13a9\\u13a6\\u13f4\\u13b5\\u13a8\\u13a2\": 3997,\n    \"\\u13c5\\u13a6\": 3998,\n    \"\\u13d6\\u13b5\": 3999,\n    \"\\u13c4\\u13aa\\u13eb\\u13cf\": 4000,\n    \"\\u2581\\u13c2\\u13da\\u13a9\\u13e8\\u13c2\\u13d2\\u13a2\": 4001,\n    \"\\u13e2\\u13be\\u13c1\\u13d7\": 4002,\n    \"\\u2581\\u13a0\\u13e6\\u13f4\\u13a2\": 4003,\n    \"\\u2581\\u13e7\\u13be\\u13e6\": 4004,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 4005,\n    \"\\u13c5\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 4006,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13c2\": 4007,\n    \"\\u2581\\u13aa\\u13a6\": 4008,\n    \"\\u13b2\\u13cd\\u13aa\\u13a2\": 4009,\n    \"\\u2581\\u13a4\\u13c1\\u13c5\\u13cd\\u13d7\": 4010,\n    \"\\u2581\\u13c3\\u13f3\": 4011,\n    \"\\u2581\\u13f1\\u13d3\\u13a9\": 4012,\n    \"\\u13d2\\u13d7\": 4013,\n    \"\\u2581\\u13a4\\u13c2\\u13c5\": 4014,\n    \"\\u2581\\u13d5\\u13e3\\u13d9\\u13a5\\u13a2\": 4015,\n    \"\\u13f3\\u13cd\\u13d7\": 4016,\n    \"\\u13c7\\u13b5\": 4017,\n    \"\\u13f0\\u13b2\": 4018,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d9\\u13a9\": 4019,\n    \"\\u13ea\\u13ce\\u13d7\": 4020,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\": 4021,\n    \"\\u13cf\\u13e9\": 4022,\n    \"\\u13cf\\u13b3\\u13db\\u13d7\": 4023,\n    \"\\u2581\\u13c3\\u13a9\": 4024,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13f1\\u13d5\": 4025,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13d5\": 4026,\n    \"\\u2581\\u13e3\\u13aa\": 4027,\n    \"\\u13df\\u13ef\": 4028,\n    \"\\u2581\\u13a4\\u13a7\\u13b5\\u13b8\": 4029,\n    \"\\u13b3\\u13da\": 4030,\n    \"\\u13e8\\u13be\": 4031,\n    \"\\u13ac\\u13c2\\u13a8\": 4032,\n    \"\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 4033,\n    \"\\u13a7\\u13c1\\u13b8\": 4034,\n    \"\\u13a9\\u13cd\\u13ac\": 4035,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13b8\": 4036,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13ad\": 4037,\n    \"\\u13aa\\u13c5\": 4038,\n    \"\\u13cc\\u13b3\\u13d3\\u13c1\": 4039,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\": 4040,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13b8\": 4041,\n    \"\\u13cf\\u13d7\": 4042,\n    \"\\u2581\\u13d7\\u13db\": 4043,\n    \"\\u13a6\\u13d4\\u13b2\": 4044,\n    \"\\u2581\\u13e6\\u13e5\": 4045,\n    \"\\u13c2\\u13cc\\u13c2\": 4046,\n    \"\\u2581\\u13a0\\u13c9\\u13e2\": 4047,\n    \"\\u2581\\u13a0\\u13c3\\u13b5\": 4048,\n    \"\\u13c5\\u13a6\\u13b8\\u13db\": 4049,\n    \"\\u2581\\u13c4\\u13ea\\u13ce\\u13b8\\u13a2\": 4050,\n    \"\\u13aa\\u13b5\\u13c2\\u13d7\": 4051,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d2\": 4052,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\": 4053,\n    \"\\u2581\\u13a4\\u13a7\\u13b5\": 4054,\n    \"\\u13a6\\u13d9\\u13a5\\u13ce\": 4055,\n    \"\\u13d9\\u13b2\\u13a2\": 4056,\n    \"\\u2581\\u13a4\\u13c1\\u13c5\\u13ce\\u13c3\": 4057,\n    \"\\u13e7\\u13c2\\u13f2\\u13af\\u13cd\\u13d7\\u13f1\": 4058,\n    \"\\u2581\\u13da\\u13b8\": 4059,\n    \"\\u13d5\\u13a6\": 4060,\n    \"\\u2581\\u13a0\\u13f0\\u13b5\\u13d2\": 4061,\n    \"\\u13af\\u13b2\\u13a2\": 4062,\n    \"\\u13f2\\u13cf\": 4063,\n    \"\\u2581\\u13a4\\u13c3\\u13f4\\u13b5\": 4064,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\\u13a2\": 4065,\n    \"\\u2581\\u13ac\\u13d2\": 4066,\n    \"\\u2581\\u13f3\\u13aa\": 4067,\n    \"\\u2581\\u13c3\\u13d2\": 4068,\n    \"\\u2581\\u13a4\\u13d9\\u13af\": 4069,\n    \"\\u13c2\\u13d9\\u13b8\": 4070,\n    \"\\u13e3\\u13d7\": 4071,\n    \"\\u13a4\\u13e9\\u13c2\\u13a6\\u13b8\": 4072,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\\u13b4\\u13a2\": 4073,\n    \"\\u2581\\u13a4\\u13d9\\u13f3\": 4074,\n    \"\\u13c9\\u13cd\\u13aa\": 4075,\n    \"\\u13cd\\u13a6\\u13a2\\u13ae\\u13cd\\u13d7\": 4076,\n    \"\\u2581\\u13be\\u13c2\\u13a5\\u13a9\": 4077,\n    \"\\u2581\\u13d3\\u13d4\\u13b4\\u13d2\\u13a2\": 4078,\n    \"\\u2581\\u13a4\\u13c5\\u13c1\": 4079,\n    \"\\u2581\\u13a0\\u13c2\\u13b8\\u13c9\\u13d7\\u13cd\\u13a8\": 4080,\n    \"\\u2581\\u13e6\\u13cf\": 4081,\n    \"\\u2581\\u13d9\\u13d3\\u13e3\": 4082,\n    \"\\u2581\\u13e6\\u13d2\": 4083,\n    \"\\u13e1\\u13d7\\u13cd\\u13a9\": 4084,\n    \"\\u2581\\u13a0\\u13b9\\u13c2\": 4085,\n    \"\\u2581\\u13e4\\u13b3\\u13d7\": 4086,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 4087,\n    \"\\u2581\\u13a6\\u13f2\\u13a6\": 4088,\n    \"\\u2581\\u13a4\\u13b3\": 4089,\n    \"\\u2581\\u13f2\\u13a6\": 4090,\n    \"\\u13c1\\u13a2\\u13cd\\u13d3\\u13c1\\u13d7\": 4091,\n    \"\\u2581\\u13a1\\u13cd\\u13d7\": 4092,\n    \"\\u2581\\u13a0\\u13ab\\u13f4\\u13d7\": 4093,\n    \"\\u13b3\\u13db\": 4094,\n    \"\\u2581\\u13a4\\u13c2\\u13cf\\u13d7\": 4095,\n    \"\\u13e4\\u13ad\": 4096,\n    \"\\u2581\\u13da\\u13c1\\u13e4\\u13b4\\u13c3\": 4097,\n    \"\\u2581\\u13e5\\u13d5\\u13e3\": 4098,\n    \"\\u2581\\u13a2\\u13ac\\u13f1\\u13f1\\u13c9\": 4099,\n    \"\\u2581\\u13a8\\u13a2\": 4100,\n    \"\\u13ac\\u13c5\": 4101,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\": 4102,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\\u13a9\": 4103,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13b8\": 4104,\n    \"\\u13d8\\u13cd\\u13d7\\u13cd\\u13a9\": 4105,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a6\\u13c5\\u13e8\": 4106,\n    \"\\u13a7\\u13af\\u13ef\\u13cd\\u13d7\": 4107,\n    \"\\u2581\\u13f1\\u13e5\\u13f0\\u13b8\": 4108,\n    \"\\u13e5\\u13e7\\u13e3\": 4109,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\": 4110,\n    \"\\u13a6\\u13da\": 4111,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13b8\": 4112,\n    \"\\u13e2\\u13c5\\u13af\": 4113,\n    \"\\u13d7\\u13ef\": 4114,\n    \"\\u13d7\\u13cd\\u13d4\\u13c1\": 4115,\n    \"\\u13f2\\u13ad\": 4116,\n    \"\\u2581\\u13e5\\u13f3\\u13aa\": 4117,\n    \"\\u13cd\\u13d3\\u13c1\": 4118,\n    \"\\u13c2\\u13c6\\u13d8\\u13af\": 4119,\n    \"\\u13d7\\u13d4\\u13cd\\u13ac\": 4120,\n    \"\\u2581\\u13e9\\u13f4\": 4121,\n    \"\\u13b5\\u13a2\": 4122,\n    \"\\u2581\\u13d7\\u13a7\": 4123,\n    \"\\u2581\\u13c2\\u13db\": 4124,\n    \"\\u13c4\\u13b5\": 4125,\n    \"\\u2581\\u13e5\\u13a6\\u13d4\": 4126,\n    \"\\u13c2\\u13f4\": 4127,\n    \"\\u2581\\u13aa\\u13db\": 4128,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13cd\\u13a8\": 4129,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13e8\": 4130,\n    \"\\u2581\\u13a2\\u13f3\\u13c2\": 4131,\n    \"\\u2581\\u13a4\\u13e3\\u13c5\": 4132,\n    \"\\u13ea\\u13ce\\u13b4\\u13a2\": 4133,\n    \"\\u13d8\\u13be\\u13eb\\u13db\\u13b2\\u13a9\": 4134,\n    \"\\u13cd\\u13c6\\u13b5\": 4135,\n    \"\\u13eb\\u13ce\\u13b4\\u13a2\": 4136,\n    \"\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d3\": 4137,\n    \"\\u13b6\\u13d3\": 4138,\n    \"\\u2581\\u13a0\\u13e9\\u13db\": 4139,\n    \"\\u2581\\u13c2\\u13a6\\u13a5\\u13a2\": 4140,\n    \"\\u13d3\\u13f1\": 4141,\n    \"\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\": 4142,\n    \"\\u13c1\\u13df\\u13f4\": 4143,\n    \"\\u2581\\u13a2\\u13a4\": 4144,\n    \"\\u2581\\u13a4\\u13ea\\u13f0\": 4145,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13b8\\u13d7\\u13c3\": 4146,\n    \"\\u13d3\\u13ce\\u13aa\\u13a9\\u13cd\": 4147,\n    \"\\u13a9\\u13d2\": 4148,\n    \"\\u13a6\\u13b3\": 4149,\n    \"\\u2581\\u13be\\u13af\\u13f3\\u13a2\": 4150,\n    \"\\u13db\\u13c3\\u13af\": 4151,\n    \"\\u13b8\\u13c9\\u13d7\\u13cd\\u13a9\": 4152,\n    \"\\u2581\\u13da\\u13f3\": 4153,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\": 4154,\n    \"\\u13f2\\u13cd\\u13d7\\u13cd\\u13ac\": 4155,\n    \"\\u13e1\\u13d7\\u13cd\\u13ac\\u13a2\": 4156,\n    \"\\u2581\\u13da\\u13f2\\u13ce\": 4157,\n    \"\\u13eb\\u13db\": 4158,\n    \"\\u2581\\u13a0\\u13a8\": 4159,\n    \"\\u2581\\u13f1\\u13a8\\u13e3\": 4160,\n    \"\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 4161,\n    \"\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 4162,\n    \"\\u13f3\\u13b3\": 4163,\n    \"\\u13d7\\u13cd\\u13d7\\u13cd\\u13a9\": 4164,\n    \"\\u13c5\\u13aa\\u13a2\\u13cd\\u13d7\": 4165,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\": 4166,\n    \"al\": 4167,\n    \"\\u13f0\\u13b8\\u13af\": 4168,\n    \"\\u13c2\\u13d9\\u13af\": 4169,\n    \"\\u2581\\u13ef\\u13d3\\u13c5\\u13d6\": 4170,\n    \"\\u13d1\\u13f0\\u13d2\": 4171,\n    \"\\u2581\\u13a0\\u13b5\\u13f0\\u13a2\\u13b5\": 4172,\n    \"\\u2581\\u13a6\\u13ef\": 4173,\n    \"\\u13e2\\u13d7\\u13f1\": 4174,\n    \"\\u2581\\u13ed\\u13e9\": 4175,\n    \"\\u13f4\\u13cd\\u13d7\": 4176,\n    \"\\u13b5\\u13f3\": 4177,\n    \"\\u2581\\u13d5\\u13ab\": 4178,\n    \"\\u13c2\\u13a9\\u13cd\\u13ac\": 4179,\n    \"\\u2581\\u13a9\\u13ef\": 4180,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13ea\\u13b3\": 4181,\n    \"\\u13e5\\u13cd\\u13a6\\u13ef\": 4182,\n    \"\\u2581\\u13d3\\u13f3\\u13c2\": 4183,\n    \"\\u2581\\u13c4\\u13cd\\u13db\\u13a9\": 4184,\n    \"\\u13cd\\u13a9\\u13b8\": 4185,\n    \"\\u13a1\\u13b0\\u13a2\": 4186,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 4187,\n    \"\\u13e5\\u13c1\\u13b8\": 4188,\n    \"\\u13c5\\u13db\": 4189,\n    \"\\u13d3\\u13d1\\u13f0\\u13cd\\u13d7\": 4190,\n    \"\\u13cd\\u13d3\\u13e9\\u13db\\u13d2\\u13a9\": 4191,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13d2\": 4192,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\": 4193,\n    \"\\u2581\\u13e5\\u13c2\\u13ac\": 4194,\n    \"\\u2581\\u13d4\\u13ef\": 4195,\n    \"\\u13d3\\u13b5\\u13d3\\u13cd\\u13d7\": 4196,\n    \"\\u13a4\\u13cd\\u13d3\\u13a6\\u13f4\\u13af\\u13d3\": 4197,\n    \"\\u2581\\u13da\\u13ed\": 4198,\n    \"\\u2581\\u13a8\\u13cd\\u13d7\\u13d7\": 4199,\n    \"\\u2581\\u13a6\\u13ac\": 4200,\n    \"\\u2581\\u13da\\u13c1\": 4201,\n    \"\\u13f2\\u13d2\\u13a9\": 4202,\n    \"\\u2581\\u13a2\\u13d7\\u13a6\\u13d8\": 4203,\n    \"\\u2581\\u13a2\\u13f3\\u13cd\\u13a9\\u13c2\\u13c3\": 4204,\n    \"\\u13b3\\u13d3\": 4205,\n    \"\\u13a6\\u13c1\\u13b6\\u13d7\": 4206,\n    \"\\u13f2\\u13b5\": 4207,\n    \"\\u13b3\\u13c2\": 4208,\n    \"\\u2581\\u13a5\\u13a9\\u13b8\\u13c9\": 4209,\n    \"\\u2581\\u13a4\\u13b5\\u13f0\": 4210,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\": 4211,\n    \"\\u13b7\\u13af\\u13cd\\u13d7\": 4212,\n    \"\\u13d8\\u13c3\\u13af\\u13cd\\u13d7\\u13f1\": 4213,\n    \"\\u13cd\\u13a6\\u13e8\\u13af\": 4214,\n    \"\\u13c2\\u13aa\\u13b2\": 4215,\n    \"\\u13a6\\u13d8\\u13d3\": 4216,\n    \"\\u2581\\u13a2\\u13cd\\u13db\": 4217,\n    \"\\u2581\\u13ac\\u13f0\\u13b8\": 4218,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13e9\": 4219,\n    \"\\u2581\\u13a0\\u13e2\": 4220,\n    \"\\u13a7\\u13c1\": 4221,\n    \"\\u13d9\\u13ae\": 4222,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13ce\": 4223,\n    \"\\u13b8\\u13c2\": 4224,\n    \"\\u2581\\u13d7\\u13e3\\u13c1\\u13b6\": 4225,\n    \"\\u2581\\u13d7\\u13cd\\u13da\": 4226,\n    \"\\u13c9\\u13c2\": 4227,\n    \"\\u2581\\u13a4\\u13b7\": 4228,\n    \"\\u13d3\\u13c2\\u13b8\\u13e4\\u13a2\": 4229,\n    \"\\u2581\\u13f3\\u13ec\\u13af\\u13f3\": 4230,\n    \"\\u13b6\\u13af\\u13cd\\u13d7\": 4231,\n    \"\\u13e9\\u13d5\\u13ac\": 4232,\n    \"\\u13bc\": 4233,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\": 4234,\n    \"\\u13a6\\u13c5\\u13a6\": 4235,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13ce\": 4236,\n    \"\\u2581\\u13e3\\u13a6\": 4237,\n    \"\\u2581\\u13e7\\u13c1\\u13e8\": 4238,\n    \"\\u13ea\\u13ce\\u13b8\\u13a9\": 4239,\n    \"\\u13bf\\u13a5\\u13a2\": 4240,\n    \"\\u2581\\u13a4\\u13b8\\u13c9\\u13d7\": 4241,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\": 4242,\n    \"\\u13ea\\u13b6\\u13d7\": 4243,\n    \"\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 4244,\n    \"\\u13a2\\u13a6\\u13b8\\u13c9\\u13d7\": 4245,\n    \"\\u13e6\\u13c1\": 4246,\n    \"\\u13e2\\u13db\": 4247,\n    \"\\u2581\\u13a6\\u13df\": 4248,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13ac\": 4249,\n    \"\\u13d3\\u13ec\\u13cd\\u13d7\": 4250,\n    \"\\u2581\\u13e7\\u13b3\\u13d1\\u13b6\": 4251,\n    \"\\u2581\\u13a4\\u13c3\\u13b8\": 4252,\n    \"\\u13af\\u13cd\\u13d4\\u13c2\": 4253,\n    \"\\u2581\\u13d9\\u13e7\": 4254,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\": 4255,\n    \"\\u2581\\u13d5\\u13a6\\u13c4\\u13aa\\u13eb\\u13cd\": 4256,\n    \"\\u13aa\\u13b5\\u13f0\\u13a5\\u13af\": 4257,\n    \"\\u2581\\u13a5\\u13e5\": 4258,\n    \"\\u13cd\\u13a6\\u13c3\\u13b5\": 4259,\n    \"\\u2581\\u13a2\\u13a9\\u13f0\\u13b8\": 4260,\n    \"\\u2581\\u13d5\\u13a6\\u13c4\\u13aa\\u13ac\": 4261,\n    \"\\u2581\\u13d5\\u13a6\\u13b3\\u13c5\\u13db\": 4262,\n    \"\\u13a6\\u13b8\\u13b3\\u13d7\": 4263,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13ce\": 4264,\n    \"\\u2581\\u13a0\\u13d0\\u13f4\": 4265,\n    \"\\u2581\\u13a3\\u13a6\\u13db\\u13a6\\u13c5\": 4266,\n    \"\\u13d3\\u13a9\\u13cd\\u13a8\": 4267,\n    \"\\u2581\\u13a0\\u13d3\\u13ea\\u13b5\\u13a9\\u13cd\\u13ac\": 4268,\n    \"\\u2581\\u13da\\u13f2\": 4269,\n    \"\\u13c4\\u13d3\\u13b4\": 4270,\n    \"\\u13eb\\u13b5\\u13bb\": 4271,\n    \"\\u13d7\\u13a6\\u13db\\u13af\": 4272,\n    \"\\u2581\\u13a0\\u13a9\\u13c7\\u13d3\\u13b8\": 4273,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13aa\": 4274,\n    \"\\u2581\\u13d5\\u13a6\\u13cd\\u13a9\\u13b8\": 4275,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\": 4276,\n    \"\\u2581\\u13e7\\u13c1\": 4277,\n    \"\\u2581\\u13f1\\u13a8\\u13e5\": 4278,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13d5\": 4279,\n    \"\\u2581\\u13a4\\u13b5\\u13f0\\u13d4\\u13c1\": 4280,\n    \"\\u2581\\u13d9\\u13e7\\u13be\\u13d3\\u13c5\\u13db\": 4281,\n    \"\\u2581\\u13f1\\u13e5\\u13a6\\u13d4\\u13ae\": 4282,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13ce\\u13b4\": 4283,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13ae\\u13b5\\u13ac\": 4284,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13a9\\u13ce\": 4285,\n    \"\\u2581\\u13da\\u13d3\\u13d8\\u13be\\u13a5\": 4286,\n    \"\\u2581\\u13a4\\u13b6\\u13a8\\u13d2\": 4287,\n    \"\\u2581\\u13ef\\u13db\\u13c5\": 4288,\n    \"\\u2581\\u13f1\\u13c4\\u13cd\\u13d5\": 4289,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13d2\": 4290,\n    \"\\u13b0\\u13e9\": 4291,\n    \"\\u2581\\u13a4\\u13c4\\u13e9\\u13a5\": 4292,\n    \"\\u2581\\u13c8\\u13ac\": 4293,\n    \"\\u2581\\u13d5\\u13a6\\u13ec\\u13c1\\u13d7\\u13cd\\u13ac\": 4294,\n    \"\\u2581\\u13be\\u13a9\\u13ea\\u13ce\\u13b8\": 4295,\n    \"\\u13a3\\u13cf\": 4296,\n    \"\\u13aa\\u13b2\\u13cd\\u13d9\\u13d7\": 4297,\n    \"\\u2581\\u13ed\\u13ef\\u13c5\\u13b2\": 4298,\n    \"\\u2581\\u13a0\\u13a9\\u13e9\\u13db\\u13b2\": 4299,\n    \"\\u2581\\u13c4\\u13c5\\u13c1\\u13b8\": 4300,\n    \"\\u2581\\u13c4\\u13db\\u13c1\": 4301,\n    \"\\u13b5\\u13d9\\u13af\": 4302,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\\u13db\": 4303,\n    \"\\u2581\\u13a5\\u13a9\\u13d9\": 4304,\n    \"\\u13f0\\u13b3\\u13cd\\u13d7\": 4305,\n    \"\\u2581\\u13a2\\u13ab\\u13e9\": 4306,\n    \"\\u2581\\u13be\\u13cf\": 4307,\n    \"\\u13ec\\u13d7\\u13a8\": 4308,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\": 4309,\n    \"\\u13aa\\u13b5\\u13f0\": 4310,\n    \"\\u2581\\u13c7\\u13d3\\u13c1\\u13b3\\u13bb\": 4311,\n    \"\\u2581\\u13a0\\u13d3\\u13a8\\u13d7\": 4312,\n    \"\\u2581\\u13e7\\u13c2\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 4313,\n    \"\\u2581\\u13eb\\u13d7\\u13a6\": 4314,\n    \"\\u2581\\u13a0\\u13cd\\u13ab\\u13d5\\u13cd\\u13d7\": 4315,\n    \"\\u13a4\\u13b7\\u13e8\": 4316,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13c5\": 4317,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\\u13ea\\u13ce\\u13b2\": 4318,\n    \"\\u2581\\u13d7\\u13ab\\u13cd\\u13d9\\u13cd\\u13d7\": 4319,\n    \"\\u13d2\\u13c6\\u13b6\\u13cd\\u13d7\": 4320,\n    \"\\u2581\\u13d7\\u13a8\\u13ab\\u13aa\\u13d3\\u13c1\\u13d7\": 4321,\n    \"\\u2581\\u13a4\\u13ea\\u13d3\\u13cd\\u13d7\": 4322,\n    \"\\u13c5\\u13b5\": 4323,\n    \"\\u13f2\\u13b1\\u13af\\u13ce\\u13b8\\u13af\": 4324,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13d7\": 4325,\n    \"\\u2581\\u13ed\\u13b7\\u13e4\\u13b4\": 4326,\n    \"\\u2581\\u13e4\\u13c5\\u13cd\\u13d7\": 4327,\n    \"\\u13b2\\u13ce\": 4328,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13aa\\u13d7\": 4329,\n    \"\\u2581\\u13a0\\u13c7\\u13d3\\u13cd\\u13d7\": 4330,\n    \"\\u2581\\u13c5\\u13d3\\u13f0\": 4331,\n    \"\\u2581\\u13da\\u13c4\\u13aa\\u13eb\\u13d2\": 4332,\n    \"\\u2581\\u13a0\\u13c2\\u13be\\u13f0\\u13cd\\u13a9\": 4333,\n    \"\\u2581\\u13a0\\u13c2\\u13e5\\u13ca\\u13cf\": 4334,\n    \"\\u2581\\u13a2\\u13a8\\u13ac\\u13c1\\u13b8\\u13af\": 4335,\n    \"\\u2581\\u13a2\\u13b5\\u13a1\\u13cc\": 4336,\n    \"\\u2581\\u13a4\\u13cd\\u13d4\\u13f2\\u13d2\": 4337,\n    \"\\u2581\\u13a4\\u13d6\\u13b8\\u13b3\\u13db\": 4338,\n    \"\\u2581\\u13a5\\u13c6\\u13b8\\u13a2\\u13db\": 4339,\n    \"\\u2581\\u13ab\\u13eb\\u13cd\\u13ab\\u13eb\": 4340,\n    \"\\u2581\\u13ac\\u13ec\\u13af\\u13f3\\u13b2\\u13cd\\u13a9\": 4341,\n    \"\\u2581\\u13b0\\u13e2\\u13d4\\u13c5\\u13ad\": 4342,\n    \"\\u2581\\u13b4\\u13a3\\u13d7\\u13cf\\u13ef\": 4343,\n    \"\\u2581\\u13bb\\u13da\\u13cf\\u13b3\": 4344,\n    \"\\u2581\\u13c2\\u13e6\\u13b5\\u13ac\\u13be\": 4345,\n    \"\\u2581\\u13c7\\u13e3\\u13b5\\u13b5\": 4346,\n    \"\\u2581\\u13cd\\u13aa\\u13c2\\u13d7\\u13e2\": 4347,\n    \"\\u2581\\u13d3\\u13c7\\u13aa\\u13d4\\u13c5\": 4348,\n    \"\\u2581\\u13d7\\u13be\\u13d9\\u13b4\\u13c6\\u13cd\\u13a9\": 4349,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13c5\\u13d7\\u13cd\\u13a9\": 4350,\n    \"\\u2581\\u13e5\\u13c8\\u13a3\\u13c2\": 4351,\n    \"\\u2581\\u13e7\\u13c2\\u13e6\\u13ef\\u13cd\\u13d7\": 4352,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13c5\\u13e8\\u13af\": 4353,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13a9\\u13e8\\u13d7\": 4354,\n    \"\\u2581\\u13ed\\u13d5\\u13b5\\u13e4\": 4355,\n    \"\\u2581\\u13d3\\u13d7\\u13b6\\u13c2\": 4356,\n    \"\\u2581\\u13e7\\u13be\\u13d7\\u13a9\\u13d3\": 4357,\n    \"\\u2581\\u13a2\\u13ef\\u13db\\u13c1\\u13b5\\u13d3\\u13cd\\u13d7\": 4358,\n    \"\\u2581\\u13d7\\u13e5\\u13a8\\u13eb\": 4359,\n    \"\\u13eb\\u13c2\\u13d7\\u13e2\": 4360,\n    \"\\u2581\\u13e6\\u13cd\\u13d3\\u13d3\\u13c5\\u13df\": 4361,\n    \"\\u2581\\u13e5\\u13c2\\u13e8\\u13ea\\u13ce\\u13b8\\u13a9\": 4362,\n    \"\\u2581\\u13a0\\u13c6\\u13d7\\u13d4\\u13cd\\u13d7\": 4363,\n    \"\\u2581\\u13a4\\u13ea\\u13ef\\u13b8\\u13e4\\u13a2\": 4364,\n    \"\\u2581\\u13a0\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13d9\\u13d7\": 4365,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13d6\\u13b8\\u13b2\\u13cd\\u13a9\": 4366,\n    \"\\u2581\\u13a2\\u13ac\\u13c6\\u13db\\u13c1\\u13d7\": 4367,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13db\\u13e7\\u13c1\": 4368,\n    \"\\u2581\\u13a0\\u13df\\u13b6\\u13a5\": 4369,\n    \"\\u2581\\u13d7\\u13a8\\u13d8\\u13c2\\u13d3\\u13cd\\u13d7\": 4370,\n    \"\\u2581\\u13b9\\u13ba\\u13b5\": 4371,\n    \"\\u2581\\u13a0\\u13c2\\u13b6\\u13cd\\u13a9\": 4372,\n    \"\\u2581\\u13e7\\u13ac\\u13e9\\u13b3\\u13c5\\u13af\": 4373,\n    \"\\u2581\\u13ed\\u13d5\\u13b5\\u13e8\": 4374,\n    \"\\u2581\\u13a4\\u13e6\\u13a0\\u13ce\\u13d7\": 4375,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 4376,\n    \"\\u2581\\u13a4\\u13b5\\u13c3\\u13af\\u13f4\\u13af\": 4377,\n    \"\\u2581\\u13a4\\u13a6\\u13db\\u13be\\u13e8\\u13af\": 4378,\n    \"\\u2581\\u13e3\\u13a6\\u13d1\\u13b2\\u13a2\": 4379,\n    \"\\u2581\\u13a0\\u13aa\\u13b2\\u13cd\\u13d4\\u13c5\\u13af\": 4380,\n    \"\\u2581\\u13c6\\u13cf\\u13b9\": 4381,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13ab\": 4382,\n    \"\\u2581\\u13d5\\u13e5\\u13c2\\u13f4\\u13ce\\u13cd\\u13d7\": 4383,\n    \"\\u2581\\u13d3\\u13f2\\u13e3\\u13db\\u13c1\\u13b5\": 4384,\n    \"\\u2581\\u13a0\\u13c1\\u13b8\\u13d7\\u13cd\\u13a8\\u13a2\": 4385,\n    \"\\u2581\\u13a2\\u13aa\\u13c2\\u13ef\": 4386,\n    \"\\u2581\\u13d6\\u13b9\": 4387,\n    \"\\u2581\\u13ac\\u13f2\\u13ce\\u13ad\": 4388,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13be\\u13d3\\u13b4\\u13c5\\u13af\": 4389,\n    \"\\u2581\\u13d7\\u13a9\\u13f2\\u13b1\\u13d2\\u13af\": 4390,\n    \"\\u2581\\u13e7\\u13c3\\u13da\\u13af\": 4391,\n    \"\\u2581\\u13be\\u13c2\\u13cd\\u13a6\\u13c5\\u13be\": 4392,\n    \"\\u2581\\u13d5\\u13a6\\u13c5\\u13d9\\u13ac\": 4393,\n    \"\\u2581\\u13f1\\u13e5\\u13aa\\u13b5\\u13f0\\u13a3\": 4394,\n    \"\\u2581\\u13a6\\u13d7\\u13a8\\u13c2\": 4395,\n    \"\\u13d9\\u13b4\\u13cb\": 4396,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13d7\\u13f3\": 4397,\n    \"\\u2581\\u13be\\u13c3\\u13af\\u13f3\\u13b2\\u13cd\\u13ac\\u13be\": 4398,\n    \"\\u2581\\u13e7\\u13c8\\u13ef\": 4399,\n    \"\\u2581\\u13e9\\u13a9\\u13b7\\u13e3\": 4400,\n    \"\\u13a9\\u13cf\\u13d5\\u13a9\": 4401,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\\u13f1\\u13db\": 4402,\n    \"\\u2581\\u13a2\\u13e5\\u13c7\\u13d3\\u13b8\": 4403,\n    \"\\u2581\\u13a0\\u13d9\\u13b4\\u13b0\\u13d2\\u13af\": 4404,\n    \"\\u2581\\u13a4\\u13a6\\u13c3\\u13ee\": 4405,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c1\\u13b5\\u13d9\\u13b8\": 4406,\n    \"\\u2581\\u13d3\\u13d3\\u13db\\u13c2\": 4407,\n    \"\\u2581\\u13f3\\u13f2\\u13b1\\u13d2\": 4408,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c2\\u13f0\\u13af\": 4409,\n    \"\\u2581\\u13d7\\u13c2\\u13c3\\u13a8\\u13c2\": 4410,\n    \"\\u2581\\u13a6\\u13b6\\u13e3\\u13d7\": 4411,\n    \"\\u2581\\u13a4\\u13f4\\u13b5\\u13b4\": 4412,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13d3\\u13b3\": 4413,\n    \"\\u2581\\u13d7\\u13c2\\u13d0\\u13af\": 4414,\n    \"\\u2581\\u13c1\\u13c6\\u13b8\": 4415,\n    \"\\u2581\\u13d8\\u13a6\\u13d9\\u13b5\": 4416,\n    \"\\u2581\\u13a4\\u13c6\\u13db\\u13a9\": 4417,\n    \"\\u2581\\u13a2\\u13ac\\u13be\\u13d5\\u13c5\": 4418,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13c5\\u13a9\": 4419,\n    \"\\u2581\\u13eb\\u13e5\\u13f2\\u13b5\\u13a6\": 4420,\n    \"\\u2581\\u13b6\\u13e9\\u13c2\": 4421,\n    \"\\u2581\\u13a6\\u13b5\\u13c6\\u13da\": 4422,\n    \"\\u2581\\u13a0\\u13c2\\u13b1\\u13e3\": 4423,\n    \"\\u2581\\u13da\\u13ed\\u13e2\\u13d4\\u13c5\\u13a9\": 4424,\n    \"\\u2581\\u13a0\\u13c6\\u13df\\u13c2\\u13ac\\u13c1\\u13b8\": 4425,\n    \"\\u13cc\\u13b3\\u13db\\u13a6\": 4426,\n    \"\\u2581\\u13e7\\u13be\\u13aa\\u13c5\\u13cd\\u13d3\\u13b5\": 4427,\n    \"\\u2581\\u13a5\\u13c3\\u13e5\": 4428,\n    \"\\u2581\\u13e7\\u13ec\\u13e2\\u13c5\\u13af\": 4429,\n    \"\\u2581\\u13e7\\u13b5\\u13ac\\u13e9\\u13df\": 4430,\n    \"\\u2581\\u13d7\\u13a6\\u13be\\u13cc\\u13a2\": 4431,\n    \"\\u2581\\u13a2\\u13ef\\u13d3\\u13db\\u13c1\\u13af\": 4432,\n    \"\\u2581\\u13d3\\u13a9\\u13ef\\u13ea\\u13a6\": 4433,\n    \"\\u2581\\u13d0\\u13c1\\u13b3\": 4434,\n    \"\\u2581\\u13d7\\u13df\\u13cd\\u13d9\\u13d7\": 4435,\n    \"\\u13d0\\u13ad\\u13db\": 4436,\n    \"\\u2581\\u13ad\\u13db\\u13d3\\u13cd\\u13d3\": 4437,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13ae\\u13cd\\u13a8\": 4438,\n    \"\\u2581\\u13d7\\u13e3\\u13b4\\u13b2\\u13a6\": 4439,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13cd\\u13a9\": 4440,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\\u13c1\\u13b5\": 4441,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 4442,\n    \"\\u2581\\u13aa\\u13a2\\u13f3\\u13b2\\u13cd\\u13a6\": 4443,\n    \"\\u2581\\u13c5\\u13c1\\u13b8\\u13ad\": 4444,\n    \"\\u2581\\u13d7\\u13a9\\u13f4\\u13eb\": 4445,\n    \"\\u2581\\u13a6\\u13e5\\u13ef\\u13c1\\u13b3\\u13c5\\u13af\": 4446,\n    \"\\u2581\\u13e5\\u13cd\\u13a6\\u13a2\\u13b2\": 4447,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13c5\\u13cf\\u13db\": 4448,\n    \"\\u2581\\u13b1\\u13b7\\u13e3\": 4449,\n    \"\\u2581\\u13d5\\u13a6\\u13f0\\u13cc\\u13db\": 4450,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d9\\u13d7\": 4451,\n    \"\\u2581\\u13d3\\u13d3\\u13c2\\u13b8\\u13a8\\u13cd\\u13d7\": 4452,\n    \"\\u2581\\u13a1\\u13e5\\u13f2\\u13b5\\u13b8\\u13ad\": 4453,\n    \"\\u2581\\u13a0\\u13ac\\u13d3\\u13a8\\u13c2\": 4454,\n    \"\\u2581\\u13c4\\u13d3\\u13d1\\u13f4\\u13be\": 4455,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13af\": 4456,\n    \"\\u2581\\u13e6\\u13a8\\u13e5\": 4457,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13ad\\u13f2\\u13af\": 4458,\n    \"\\u2581\\u13d5\\u13c5\\u13d9\\u13a5\": 4459,\n    \"\\u2581\\u13c5\\u13d3\\u13cd\\u13c6\": 4460,\n    \"\\u2581\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 4461,\n    \"\\u2581\\u13a0\\u13c2\\u13a1\\u13bc\\u13b5\": 4462,\n    \"\\u2581\\u13a4\\u13c2\\u13c6\\u13d8\\u13cd\\u13d7\": 4463,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\\u13b6\\u13b0\\u13d2\": 4464,\n    \"\\u2581\\u13a2\\u13e5\\u13a8\\u13f4\": 4465,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13c5\\u13a2\\u13cd\\u13d7\": 4466,\n    \"\\u2581\\u13a4\\u13b8\\u13c9\\u13d4\\u13c1\": 4467,\n    \"\\u13e1\\u13d4\\u13c2\": 4468,\n    \"\\u2581\\u13a2\\u13e7\\u13d6\": 4469,\n    \"\\u2581\\u13d7\\u13e3\\u13b3\\u13cf\": 4470,\n    \"\\u2581\\u13d7\\u13ad\\u13be\\u13ec\": 4471,\n    \"\\u2581\\u13a4\\u13a7\": 4472,\n    \"\\u13f2\\u13b5\\u13cd\\u13d7\\u13f1\": 4473,\n    \"\\u2581\\u13ec\\u13e4\": 4474,\n    \"\\u2581\\u13eb\\u13c2\\u13ea\\u13cf\": 4475,\n    \"\\u2581\\u13da\\u13c4\\u13cc\\u13db\": 4476,\n    \"\\u2581\\u13d7\\u13a6\\u13aa\\u13d9\\u13d7\": 4477,\n    \"\\u2581\\u13a4\\u13d3\\u13d1\\u13f0\\u13db\": 4478,\n    \"\\u2581\\u13af\\u13cd\\u13aa\\u13b5\": 4479,\n    \"\\u13c2\\u13b4\": 4480,\n    \"\\u2581\\u13aa\\u13d2\\u13c5\": 4481,\n    \"\\u13d3\\u13b4\\u13d2\": 4482,\n    \"\\u2581\\u13d3\\u13c2\\u13f4\\u13ac\\u13a2\": 4483,\n    \"\\u2581\\u13e3\\u13d3\\u13b8\\u13a9\": 4484,\n    \"\\u2581\\u13e5\\u13a6\\u13da\\u13ad\": 4485,\n    \"\\u2581\\u13d3\\u13c2\\u13f4\\u13a8\\u13cd\\u13d7\": 4486,\n    \"\\u2581\\u13ac\\u13d4\\u13f2\\u13ce\\u13ad\": 4487,\n    \"\\u2581\\u13a4\\u13d9\\u13b3\\u13c5\\u13cd\\u13d7\": 4488,\n    \"\\u2581\\u13d3\\u13c2\\u13c4\\u13d9\\u13ac\\u13a2\": 4489,\n    \"\\u2581\\u13da\\u13da\\u13d3\\u13db\\u13a2\": 4490,\n    \"\\u2581\\u13a0\\u13a8\\u13ef\": 4491,\n    \"\\u2581\\u13a0\\u13c4\\u13ec\\u13a9\\u13af\": 4492,\n    \"\\u2581\\u13a2\\u13e4\\u13c5\\u13cd\\u13d7\\u13f1\": 4493,\n    \"\\u2581\\u13a4\\u13ec\\u13d2\\u13c5\": 4494,\n    \"\\u2581\\u13da\\u13d5\\u13f2\\u13c1\": 4495,\n    \"\\u2581\\u13d7\\u13e3\\u13b3\\u13cf\\u13d5\\u13c2\": 4496,\n    \"\\u2581\\u13d3\\u13e5\\u13c1\\u13b5\": 4497,\n    \"\\u2581\\u13e4\\u13b5\\u13aa\": 4498,\n    \"\\u2581\\u13a1\\u13c8\\u13b3\": 4499,\n    \"\\u2581\\u13ed\\u13b3\\u13a9\\u13d2\": 4500,\n    \"\\u2581\\u13ed\\u13a9\\u13b6\\u13eb\\u13ce\": 4501,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13be\": 4502,\n    \"\\u2581\\u13da\\u13ec\\u13c1\\u13d4\\u13c5\\u13a9\": 4503,\n    \"\\u2581\\u13e7\\u13f2\\u13af\\u13cd\\u13d7\\u13f1\": 4504,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\\u13ad\": 4505,\n    \"\\u2581\\u13d9\\u13b3\\u13e7\\u13a6\": 4506,\n    \"\\u13a9\\u13be\\u13dd\\u13a2\": 4507,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\\u13af\\u13db\": 4508,\n    \"\\u13cd\\u13a6\\u13a2\\u13cd\\u13d7\": 4509,\n    \"\\u2581\\u13c7\\u13b5\\u13cf\": 4510,\n    \"\\u2581\\u13e7\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13af\": 4511,\n    \"\\u2581\\u13c5\\u13db\\u13db\\u13c1\\u13b5\": 4512,\n    \"\\u2581\\u13d5\\u13af\\u13a7\\u13c5\": 4513,\n    \"\\u2581\\u13a4\\u13c5\\u13ea\": 4514,\n    \"\\u2581\\u13d7\\u13a6\\u13c1\\u13b2\": 4515,\n    \"\\u2581\\u13e7\\u13ec\\u13ea\\u13b3\\u13c5\": 4516,\n    \"\\u2581\\u13da\\u13d8\\u13c3\\u13ae\\u13b4\\u13a2\": 4517,\n    \"\\u2581\\u13eb\\u13c4\\u13ea\\u13ce\\u13a2\": 4518,\n    \"\\u2581\\u13e3\\u13d4\\u13b3\\u13ec\\u13af\\u13cd\\u13d7\": 4519,\n    \"\\u2581\\u13ac\\u13ef\\u13b5\\u13a1\\u13b5\\u13e4\": 4520,\n    \"\\u2581\\u13a2\\u13ef\\u13d3\\u13c5\\u13d6\\u13d7\": 4521,\n    \"\\u2581\\u13b7\": 4522,\n    \"\\u2581\\u13da\\u13cf\\u13d4\\u13db\": 4523,\n    \"\\u13c4\\u13cd\\u13d7\": 4524,\n    \"\\u2581\\u13a0\\u13c8\\u13b7\": 4525,\n    \"\\u2581\\u13a0\\u13cc\\u13b3\\u13d9\\u13d7\": 4526,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13e8\": 4527,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13cd\\u13ac\": 4528,\n    \"\\u2581\\u13e7\\u13a7\\u13ad\\u13f2\": 4529,\n    \"\\u2581\\u13a7\\u13c1\\u13cd\\u13ac\": 4530,\n    \"\\u2581\\u13a4\\u13b5\\u13e8\\u13d3\\u13c6\\u13d3\": 4531,\n    \"\\u2581\\u13b4\\u13bb\\u13a9\": 4532,\n    \"\\u2581\\u13a2\\u13e4\\u13b5\\u13ad\": 4533,\n    \"\\u2581\\u13e7\\u13be\\u13c1\\u13b3\\u13c5\\u13af\": 4534,\n    \"\\u2581\\u13d3\\u13a7\\u13c1\": 4535,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13ad\": 4536,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 4537,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13d7\": 4538,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d6\\u13db\": 4539,\n    \"\\u2581\\u13e3\\u13d3\\u13c5\\u13db\\u13a2\": 4540,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13c1\\u13d7\\u13f1\": 4541,\n    \"\\u2581\\u13a4\\u13ec\\u13ea\\u13b3\\u13c5\\u13a9\": 4542,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13ce\\u13ae\\u13cd\\u13d7\": 4543,\n    \"\\u2581\\u13d1\\u13d3\\u13b5\\u13e7\\u13c8\": 4544,\n    \"\\u2581\\u13a1\\u13cd\\u13a6\\u13c2\\u13f3\": 4545,\n    \"\\u2581\\u13a0\\u13a6\\u13d9\\u13b5\": 4546,\n    \"-\\u201c\": 4547,\n    \"\\u2581\\u13a0\\u13d3\\u13ac\\u13bf\": 4548,\n    \"\\u2581\\u13a6\\u13f0\\u13b5\\u13cd\\u13d7\": 4549,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d3\": 4550,\n    \"\\u2581\\u13a4\\u13c3\\u13ea\\u13b3\\u13c5\": 4551,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d8\\u13ef\": 4552,\n    \"\\u2581\\u13a0\\u13eb\\u13cc\\u13c5\": 4553,\n    \"\\u2581\\u13a0\\u13e4\\u13cd\\u13d9\\u13a9\\u13af\": 4554,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13be\": 4555,\n    \"\\u2581\\u13a6\\u13aa\\u13b5\\u13cd\\u13d7\": 4556,\n    \"\\u2581\\u13a0\\u13ba\": 4557,\n    \"\\u2581\\u13d7\\u13e5\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\\u13f1\": 4558,\n    \"\\u2581\\u13da\\u13ed\\u13aa\\u13d4\\u13c5\": 4559,\n    \"\\u2581\\u13a4\\u13ec\\u13b3\": 4560,\n    \"\\u2581\\u13da\\u13ea\\u13f4\": 4561,\n    \"\\u2581\\u13e3\\u13cd\\u13c6\": 4562,\n    \"\\u2581\\u13a4\\u13c1\\u13c5\\u13d2\\u13a9\": 4563,\n    \"\\u2581\\u13f3\\u13ea\\u13ad\": 4564,\n    \"\\u2581\\u13d3\\u13be\\u13e0\\u13f1\\u13b2\": 4565,\n    \"\\u2581\\u13a4\\u13e9\\u13c2\\u13a6\\u13b8\\u13a2\": 4566,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13e5\\u13b8\": 4567,\n    \"\\u2581\\u13f1\\u13e5\\u13cf\\u13be\": 4568,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13a5\": 4569,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c1\\u13a2\": 4570,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13b4\\u13a2\": 4571,\n    \"\\u2581\\u13a0\\u13cb\\u13d4\\u13c5\\u13af\": 4572,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b4\\u13a2\": 4573,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13ac\\u13d7\": 4574,\n    \"\\u2581\\u13a6\\u13c3\\u13af\\u13b5\\u13d9\": 4575,\n    \"\\u2581\\u13d7\\u13ab\\u13cd\\u13d9\\u13cd\\u13d7\\u13f1\": 4576,\n    \"\\u2581\\u13ad\\u13df\\u13c2\\u13ac\\u13c1\": 4577,\n    \"\\u2581\\u13f1\\u13c5\\u13a6\": 4578,\n    \"\\u2581\\u13be\\u13e5\\u13ea\\u13ce\\u13b4\\u13a2\": 4579,\n    \"\\u2581\\u13a2\\u13f3\\u13ea\\u13cd\\u13d7\": 4580,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13c1\\u13d7\": 4581,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13c9\\u13e4\": 4582,\n    \"\\u2581\\u13a4\\u13a6\\u13b9\": 4583,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13d7\\u13f1\": 4584,\n    \"\\u2581\\u13e7\\u13be\\u13db\\u13be\": 4585,\n    \"\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\\u13be\": 4586,\n    \"\\u2581\\u13c2\\u13e8\\u13c1\\u13b2\": 4587,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13a6\\u13a9\": 4588,\n    \"\\u2581\\u13be\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\\u13be\": 4589,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13a9\": 4590,\n    \"\\u2581\\u13a4\\u13d5\\u13d4\\u13c5\\u13af\": 4591,\n    \"\\u2581\\u13d7\\u13e5\\u13c1\\u13df\\u13f4\": 4592,\n    \"\\u13f4\\u13b5\\u13b8\": 4593,\n    \"\\u13e9\\u13db\\u13b2\\u13cd\\u13d7\\u13f1\": 4594,\n    \"\\u2581\\u13a4\\u13db\\u13c5\\u13d7\\u13a6\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 4595,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\\u13af\": 4596,\n    \"\\u2581\\u13e4\\u13e3\\u13a7\\u13c3\\u13d7\": 4597,\n    \"\\u13c1\\u13c9\\u13e3\\u13d8\": 4598,\n    \"\\u2581\\u13a4\\u13c2\\u13da\\u13b2\\u13a2\": 4599,\n    \"\\u2581\\u13a2\\u13e8\\u13d9\\u13d7\\u13f1\": 4600,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\\u13e4\\u13b8\\u13a9\": 4601,\n    \"\\u2581\\u13d3\\u13aa\": 4602,\n    \"\\u2581\\u13e5\\u13c4\\u13cd\\u13db\": 4603,\n    \"\\u2581\\u13e3\\u13be\\u13eb\\u13f1\": 4604,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13d7\\u13f1\": 4605,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13d7\": 4606,\n    \"\\u2581\\u13e5\\u13ac\\u13e9\": 4607,\n    \"\\u13c1\\u13c5\": 4608,\n    \"\\u13b5\\u13d6\\u13b8\\u13c2\\u13cd\\u13d7\": 4609,\n    \"\\u2581\\u13a2\\u13e3\\u13c1\\u13b3\\u13c5\\u13af\": 4610,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13af\": 4611,\n    \"\\u2581\\u13a6\\u13c1\\u13e5\\u13f1\": 4612,\n    \"\\u2581\\u13ed\\u13d3\\u13d2\\u13cd\\u13d4\\u13c1\": 4613,\n    \"\\u2581\\u13ed\\u13d3\\u13aa\\u13be\\u13db\\u13db\": 4614,\n    \"\\u2581\\u13a4\\u13f4\\u13b8\\u13a9\": 4615,\n    \"\\u2581\\u13a4\\u13c1\\u13dd\\u13c5\\u13af\": 4616,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\\u13b2\\u13ce\": 4617,\n    \"\\u2581\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d4\": 4618,\n    \"\\u2581\\u13a4\\u13e6\\u13cd\\u13d7\": 4619,\n    \"\\u2581\\u13a0\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 4620,\n    \"\\u2581\\u13b1\\u13c2\\u13b7\\u13e4\": 4621,\n    \"\\u2581\\u13a1\\u13e5\\u13c1\\u13b8\\u13af\": 4622,\n    \"\\u2581\\u13af\\u13c4\\u13aa\\u13a2\": 4623,\n    \"\\u2581\\u13a6\\u13ac\\u13e9\\u13d0\\u13e2\": 4624,\n    \"\\u2581\\u13da\\u13c3\\u13c1\\u13b4\": 4625,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13a6\\u13a8\": 4626,\n    \"\\u2581\\u13a3\\u13a8\\u13c5\\u13d2\": 4627,\n    \"\\u2581\\u13c2\\u13a8\\u13e5\\u13ea\\u13ce\\u13b8\": 4628,\n    \"\\u2581\\u13d7\\u13aa\\u13e9\\u13db\\u13d7\": 4629,\n    \"\\u2581\\u13e7\\u13be\\u13cd\\u13d7\\u13a6\": 4630,\n    \"\\u2581\\u13e9\\u13a6\\u13db\\u13a2\": 4631,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\\u13f1\": 4632,\n    \"\\u2581\\u13a4\\u13a9\\u13b5\": 4633,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13df\\u13cc\\u13c5\": 4634,\n    \"\\u2581\\u13a4\\u13d4\\u13ea\\u13d9\\u13c1\\u13a2\": 4635,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 4636,\n    \"\\u2581\\u13a0\\u13b3\\u13d1\\u13b6\": 4637,\n    \"\\u2581\\u13a2\\u13d3\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\": 4638,\n    \"\\u2581\\u13a0\\u13a6\\u13c5\\u13a9\": 4639,\n    \"\\u13d8\\u13c1\\u13d2\\u13ad\": 4640,\n    \"\\u2581\\u13a4\\u13c5\\u13d9\\u13d7\": 4641,\n    \"\\u2581\\u13a4\\u13cd\\u13da\\u13c1\": 4642,\n    \"\\u2581\\u13cc\\u13bb\": 4643,\n    \"\\u2581\\u13a0\\u13a9\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 4644,\n    \"\\u13ec\\u13c1\\u13d4\\u13c1\": 4645,\n    \"\\u2581\\u13d5\\u13a6\\u13a7\\u13b2\\u13a9\": 4646,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13cd\\u13ac\": 4647,\n    \"\\u2581\\u13e7\\u13ea\\u13e5\\u13db\\u13af\": 4648,\n    \"\\u2581\\u13b9\\u13b5\": 4649,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13d7\": 4650,\n    \"\\u2581\\u13a0\\u13e9\\u13db\\u13d7\": 4651,\n    \"\\u2581\\u13a2\\u13be\\u13cf\": 4652,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13c1\\u13a2\": 4653,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c1\\u13a2\": 4654,\n    \"\\u2581\\u13e7\\u13a6\": 4655,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13e4\": 4656,\n    \"\\u13a7\\u13b8\": 4657,\n    \"\\u13b4\\u13c1\\u13af\": 4658,\n    \"\\u2581\\u13a6\\u13c1\\u13ae\\u13a2\": 4659,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13af\": 4660,\n    \"\\u2581\\u13d3\\u13e5\\u13c2\": 4661,\n    \"\\u2581\\u13d3\\u13cd\\u13db\": 4662,\n    \"\\u2581\\u13e5\\u13c5\\u13b5\": 4663,\n    \"\\u2581\\u13bc\": 4664,\n    \"\\u13ce\\u13d7\\u13f1\": 4665,\n    \"\\u2581\\u13af\\u13f4\": 4666,\n    \"\\u2581\\u13a2\\u13a8\\u13e3\\u13db\\u13c1\\u13d7\": 4667,\n    \"\\u13c2\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\": 4668,\n    \"\\u2581\\u13d5\\u13a0\": 4669,\n    \"\\u2581\\u13a6\\u13c6\\u13b5\": 4670,\n    \"\\u2581\\u13a4\\u13b5\\u13f0\\u13d4\\u13c1\\u13a2\": 4671,\n    \"\\u2581\\u13a4\\u13c4\\u13ec\\u13cd\\u13d7\": 4672,\n    \"\\u2581\\u13a0\\u13a9\\u13c3\\u13ae\\u13b8\": 4673,\n    \"\\u13cd\\u13d7\\u13f0\\u13d7\\u13ad\": 4674,\n    \"\\u2581\\u13a4\\u13c2\\u13be\": 4675,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13c5\\u13b2\": 4676,\n    \"\\u2581\\u13d5\\u13aa\\u13ea\\u13b8\\u13a9\": 4677,\n    \"\\u2581\\u13ed\\u13f4\\u13b8\\u13a9\": 4678,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13b2\\u13a2\": 4679,\n    \"\\u2581\\u13d7\\u13a6\\u13ab\\u13cd\\u13db\\u13d7\\u13f1\": 4680,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13b5\\u13aa\": 4681,\n    \"\\u2581\\u13a4\\u13b6\\u13a8\\u13d2\\u13a2\": 4682,\n    \"\\u2581\\u13a0\\u13eb\\u13d2\\u13af\": 4683,\n    \"\\u2581\\u13a4\\u13f0\\u13ac\": 4684,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13c5\\u13a2\": 4685,\n    \"\\u2581\\u13ed\\u13b7\\u13e4\\u13b4\\u13a2\": 4686,\n    \"\\u2581\\u13e9\\u13a9\\u13a6\": 4687,\n    \"\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\\u13ad\": 4688,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13a6\\u13b8\\u13a2\": 4689,\n    \"\\u2581\\u13d3\\u13df\\u13b6\\u13cd\\u13db\\u13a2\": 4690,\n    \"\\u2581\\u13a0\\u13c7\\u13b5\\u13d2\\u13a9\": 4691,\n    \"\\u2581\\u13a6\\u13b5\\u13b7\\u13a8\\u13cd\\u13d7\": 4692,\n    \"\\u13d5\\u13aa\\u13a2\": 4693,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13cd\\u13ac\\u13a9\": 4694,\n    \"\\u2581\\u13c2\\u13d7\\u13a8\": 4695,\n    \"ill\": 4696,\n    \"\\u2581\\u13a2\\u13e3\\u13b4\\u13c2\\u13d9\\u13b2\": 4697,\n    \"\\u2581\\u13a4\\u13ec\\u13ad\": 4698,\n    \"\\u2581\\u13f1\\u13cd\\u13db\": 4699,\n    \"\\u2581\\u13e5\\u13c2\\u13a8\\u13ac\\u13c1\": 4700,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13ae\\u13a2\": 4701,\n    \"\\u2581\\u13e7\\u13c3\\u13b8\": 4702,\n    \"\\u2581\\u13a4\\u13ec\\u13ce\\u13b4\\u13a2\": 4703,\n    \"\\u13e2\\u13c2\": 4704,\n    \"\\u2581\\u13a6\\u13f2\\u13df\\u13a8\": 4705,\n    \"\\u13e9\\u13d4\": 4706,\n    \"\\u2581\\u13ce\\u13b3\\u13a9\": 4707,\n    \"\\u13b5\\u13d3\\u13cd\\u13d4\\u13c5\": 4708,\n    \"\\u2581\\u13a4\\u13c4\\u13b8\": 4709,\n    \"\\u2581\\u13e7\\u13e9\\u13ab\\u13d4\\u13c5\\u13d2\\u13a2\": 4710,\n    \"\\u13b6\\u13b8\\u13d7\": 4711,\n    \"\\u13d5\\u13b6\\u13b0\\u13cc\": 4712,\n    \"\\u13d3\\u13c5\\u13a1\\u13ae\\u13cd\\u13d7\": 4713,\n    \"\\u13d8\\u13f1\": 4714,\n    \"\\u2581\\u13ac\\u13e9\\u13a6\": 4715,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13b4\\u13b0\\u13d2\\u13a9\": 4716,\n    \"\\u13a0\\u13a9\\u13cf\\u13d9\\u13af\": 4717,\n    \"\\u2581\\u13ad\\u13d5\\u13ec\": 4718,\n    \"\\u2581\\u13af\\u13cc\": 4719,\n    \"\\u13ef\\u13ea\\u13a2\\u13cd\\u13d7\": 4720,\n    \"\\u13b5\\u13ce\\u13b2\": 4721,\n    \"\\u2581\\u13e3\\u13a7\\u13db\\u13a2\": 4722,\n    \"\\u2581\\u13da\\u13c2\\u13aa\\u13b2\": 4723,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13c1\\u13b8\\u13a2\": 4724,\n    \"\\u13db\\u13db\\u13be\": 4725,\n    \"\\u2581\\u13ac\\u13e9\\u13b7\\u13e4\\u13b4\\u13a2\": 4726,\n    \"\\u2581\\u13a1\\u13d9\\u13b2\\u13a9\": 4727,\n    \"\\u2581\\u13a0\\u13e5\\u13be\": 4728,\n    \"\\u2581\\u13a8\\u13d9\\u13b2\\u13a2\": 4729,\n    \"\\u13a6\\u13b6\\u13a8\\u13d2\": 4730,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13ac\\u13a2\": 4731,\n    \"\\u2581\\u13be\\u13db\\u13c1\\u13b2\\u13a2\": 4732,\n    \"\\u13da\\u13b5\\u13cd\\u13aa\": 4733,\n    \"\\u2581\\u13e4\\u13cf\": 4734,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\\u13d9\\u13d7\": 4735,\n    \"\\u2581\\u13a6\\u13c1\\u13af\": 4736,\n    \"\\u13b3\\u13d7\\u13cd\\u13ac\": 4737,\n    \"\\u13da\\u13d3\\u13b4\\u13cd\\u13d7\\u13f1\": 4738,\n    \"\\u2581\\u13cf\\u13a6\": 4739,\n    \"\\u2581\\u13a2\\u13cc\": 4740,\n    \"\\u2581\\u13a4\\u13ea\\u13ad\": 4741,\n    \"\\u2581\\u13ef\\u13a9\\u13f0\\u13b8\": 4742,\n    \"\\u2581\\u13a2\\u13e5\\u13b2\\u13a2\": 4743,\n    \"\\u2581\\u13be\\u13db\\u13a6\": 4744,\n    \"\\u2581\\u13d3\\u13eb\\u13d2\\u13a2\": 4745,\n    \"\\u2581\\u13e7\\u13be\\u13d7\\u13d4\\u13cd\\u13d7\": 4746,\n    \"\\u2581\\u13a2\\u13e2\": 4747,\n    \"\\u2581\\u13e3\\u13cd\\u13a6\\u13c5\\u13e8\": 4748,\n    \"\\u2581\\u13a0\\u13a2\\u13ce\": 4749,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\": 4750,\n    \"\\u13d9\\u13a1\\u13cd\\u13d7\": 4751,\n    \"\\u2581\\u13a0\\u13a9\\u13b2\": 4752,\n    \"\\u2581\\u13a1\\u13b3\\u13c2\\u13ac\\u13a2\": 4753,\n    \"\\u2581\\u13a4\\u13c2\\u13af\": 4754,\n    \"\\u13cd\\u13da\\u13df\\u13cd\\u13d7\": 4755,\n    \"\\u2581\\u13da\\u13b7\\u13ac\": 4756,\n    \"\\u13a9\\u13f3\\u13cd\\u13c8\\u13db\": 4757,\n    \"\\u2581\\u13d9\\u13d3\\u13b8\\u13a2\": 4758,\n    \"ha\": 4759,\n    \"\\u2581\\u13a4\\u13c4\\u13ea\": 4760,\n    \"\\u2581\\u13d5\\u13a8\\u13d2\": 4761,\n    \"\\u2581\\u13d5\\u13af\\u13c1\\u13b8\": 4762,\n    \"\\u2581\\u13e5\\u13a9\\u13b5\\u13f2\\u13ac\": 4763,\n    \"\\u2581\\u13a4\\u13da\\u13b8\\u13b2\": 4764,\n    \"\\u2581\\u13a0\\u13be\\u13a2\\u13d2\\u13a2\": 4765,\n    \"\\u13f1\\u13c6\": 4766,\n    \"\\u2581\\u13a0\\u13a6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\": 4767,\n    \"\\u2581\\u13c1\\u13e3\": 4768,\n    \"\\u13cc\\u13db\\u13d7\": 4769,\n    \"\\u2581\\u13c4\\u13b3\": 4770,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13a7\\u13c1\": 4771,\n    \"\\u2581\\u13c5\\u13a9\\u13c3\": 4772,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13c5\": 4773,\n    \"\\u13b5\\u13cd\\u13d7\\u13cd\\u13a9\": 4774,\n    \"\\u2581\\u13e5\\u13b3\": 4775,\n    \"\\u2581\\u13d7\\u13df\": 4776,\n    \"\\u2581\\u13a0\\u13e3\": 4777,\n    \"\\u13a7\\u13be\": 4778,\n    \"\\u2581\\u13c2\\u13a9\": 4779,\n    \"\\u2581\\u13d3\\u13d3\\u13c1\\u13b8\\u13a2\": 4780,\n    \"\\u2581\\u13d9\\u13a4\": 4781,\n    \"\\u2581\\u13a4\\u13b7\\u13e8\\u13af\": 4782,\n    \"\\u2581\\u13a6\\u13b3\\u13a8\\u13f4\\u13a2\": 4783,\n    \"\\u2581\\u13d5\\u13a6\\u13da\\u13b2\\u13a2\": 4784,\n    \"\\u13f4\\u13ae\\u13a2\": 4785,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13b8\\u13a2\": 4786,\n    \"\\u13cc\\u13db\\u13a5\\u13cd\\u13a9\": 4787,\n    \"\\u13eb\\u13cd\\u13a9\": 4788,\n    \"\\u2581\\u13d3\\u13c6\\u13d9\\u13a5\\u13a2\": 4789,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13c6\": 4790,\n    \"\\u2581\\u13a4\\u13d5\\u13b8\": 4791,\n    \"\\u13ec\\u13ad\": 4792,\n    \"\\u13d3\\u13b4\\u13be\\u13cd\\u13d7\": 4793,\n    \"\\u2581\\u13a9\\u13d3\": 4794,\n    \"\\u2581\\u13a1\\u13cf\": 4795,\n    \"\\u2581\\u13b5\\u13cd\\u13d7\": 4796,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13a2\": 4797,\n    \"\\u2581\\u13ad\\u13d7\\u13d4\": 4798,\n    \"\\u2581\\u13a4\\u13c3\\u13e2\\u13c5\": 4799,\n    \"\\u2581\\u13c2\\u13e3\\u13cd\\u13db\": 4800,\n    \"\\u2581\\u13a6\\u13b8\\u13cd\\u13d7\": 4801,\n    \"\\u13c2\\u13f2\\u13cf\\u13cd\\u13a9\": 4802,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13db\": 4803,\n    \"\\u13b5\\u13e6\\u13e9\\u13db\": 4804,\n    \"\\u13a4\\u13e3\": 4805,\n    \"\\u2581\\u13d4\\u13b5\\u13cd\\u13aa\": 4806,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\": 4807,\n    \"\\u13d3\\u13be\\u13eb\\u13db\\u13ae\": 4808,\n    \"\\u13cf\\u13b3\\u13db\": 4809,\n    \"\\u2581\\u13a0\\u13cd\\u13a9\": 4810,\n    \"\\u2581\\u13a0\\u13c2\\u13ec\\u13c2\\u13cd\\u13ac\\u13a2\": 4811,\n    \"\\u2581\\u13a4\\u13d5\\u13b5\": 4812,\n    \"\\u13cf\\u13c2\": 4813,\n    \"\\u2581\\u13a4\\u13d3\\u13a8\\u13f3\": 4814,\n    \"\\u2581\\u13cf\\u13c6\\u13cf\": 4815,\n    \"\\u2581\\u13c3\\u13a6\": 4816,\n    \"\\u2581\\u13e3\\u13ac\": 4817,\n    \"\\u13d9\\u13b4\": 4818,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 4819,\n    \"\\u2581\\u13f1\\u13e3\\u13d3\\u13c5\\u13d6\": 4820,\n    \"\\u2581\\u13e5\\u13eb\": 4821,\n    \"\\u2581\\u13a0\\u13be\\u13db\\u13a9\\u13cd\\u13a8\": 4822,\n    \"\\u2581\\u13a2\\u13c6\": 4823,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13c1\\u13a2\": 4824,\n    \"\\u2581\\u13a0\\u13d1\": 4825,\n    \"\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\": 4826,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13a8\\u13cd\\u13d7\": 4827,\n    \"\\u2581\\u13a6\\u13f3\": 4828,\n    \"\\u2581\\u13a0\\u13cf\\u13be\": 4829,\n    \"\\u13b5\\u13ad\": 4830,\n    \"\\u13b5\\u13f1\\u13b6\\u13af\\u13cd\\u13d7\": 4831,\n    \"\\u13db\\u13c1\\u13b2\\u13a2\": 4832,\n    \"\\u2581\\u13e5\\u13f0\\u13b8\": 4833,\n    \"\\u13af\\u13d7\\u13f3\": 4834,\n    \"\\u2581\\u13c7\\u13b3\": 4835,\n    \"\\u2581\\u13d5\\u13d7\": 4836,\n    \"\\u13cf\\u13cf\": 4837,\n    \"\\u2581\\u13c2\\u13da\\u13d3\\u13b4\": 4838,\n    \"\\u13d9\\u13b5\\u13a9\": 4839,\n    \"\\u13f0\\u13b5\\u13c9\": 4840,\n    \"\\u13a9\\u13ef\": 4841,\n    \"\\u2581\\u13c3\\u13c9\\u13d7\": 4842,\n    \"\\u2581\\u13c4\\u13c5\\u13c1\": 4843,\n    \"\\u2581\\u13a4\\u13b6\\u13ce\": 4844,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13cf\": 4845,\n    \"\\u2581\\u13a8\\u13cd\": 4846,\n    \"\\u13d7\\u13c5\\u13d3\": 4847,\n    \"\\u13ef\\u13a1\\u13cd\\u13d7\": 4848,\n    \"\\u13dd\\u13a1\": 4849,\n    \"\\u13d3\\u13c5\\u13d6\\u13d9\\u13d7\": 4850,\n    \"\\u2581\\u13da\\u13c2\\u13b8\": 4851,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13db\\u13c1\": 4852,\n    \"\\u13ef\\u13d4\\u13ec\": 4853,\n    \"\\u13c5\\u13c1\\u13ae\\u13cd\\u13d7\": 4854,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13e4\\u13b8\": 4855,\n    \"\\u2581\\u13f3\\u13f0\\u13b8\": 4856,\n    \"\\u13cf\\u13d4\\u13db\": 4857,\n    \"\\u2581\\u13a2\\u13cd\\u13d5\": 4858,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\": 4859,\n    \"\\u13a6\\u13cd\\u13aa\": 4860,\n    \"\\u13cd\\u13d7\\u13ad\": 4861,\n    \"\\u13df\\u13c2\\u13ac\\u13ac\": 4862,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13cd\\u13a8\": 4863,\n    \"\\u2581\\u13a2\\u13b8\": 4864,\n    \"\\u13b0\\u13b8\": 4865,\n    \"\\u2581\\u13a4\\u13a9\\u13d2\": 4866,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\": 4867,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13ae\": 4868,\n    \"\\u2581\\u13a4\\u13ed\\u13e2\": 4869,\n    \"\\u2581\\u13a4\\u13c2\\u13ac\\u13eb\\u13f3\": 4870,\n    \"\\u13b7\\u13e4\": 4871,\n    \"\\u2581\\u13ed\\u13cd\\u13d7\": 4872,\n    \"\\u13d7\\u13a6\\u13c5\\u13af\\u13db\": 4873,\n    \"\\u2581\\u13cd\\u13a9\\u13f0\\u13b8\\u13d7\": 4874,\n    \"\\u2581\\u13e7\\u13f2\\u13af\\u13ce\\u13d7\": 4875,\n    \"\\u2581\\u13cd\\u13a9\\u13f3\": 4876,\n    \"\\u2581\\u13a3\\u13cd\": 4877,\n    \"\\u2581\\u13e3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\": 4878,\n    \"\\u13f0\\u13b5\\u13ce\": 4879,\n    \"\\u13db\\u13c5\\u13a9\": 4880,\n    \"\\u2581\\u13e7\\u13c1\\u13e4\": 4881,\n    \"\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\": 4882,\n    \"\\u13b5\\u13cd\\u13d3\\u13cf\": 4883,\n    \"\\u13be\\u13d7\": 4884,\n    \"\\u2581\\u13be\\u13e5\": 4885,\n    \"\\u2581\\u13a2\\u13a1\": 4886,\n    \"\\u2581\\u13a0\\u13c1\\u13b2\\u13a9\": 4887,\n    \"\\u13c5\\u13cd\\u13d3\\u13d5\\u13b8\\u13a9\": 4888,\n    \"\\u13e5\\u13be\\u13c4\\u13aa\\u13eb\\u13cf\": 4889,\n    \"\\u2581\\u13a0\\u13c2\\u13e4\": 4890,\n    \"\\u2581\\u13a4\\u13c6\": 4891,\n    \"\\u2581\\u13be\\u13db\\u13c1\\u13b0\": 4892,\n    \"\\u2581\\u13a1\\u13d9\": 4893,\n    \"\\u13d8\\u13c3\\u13a6\": 4894,\n    \"\\u13e4\\u13b4\": 4895,\n    \"\\u13c1\\u13e4\\u13b8\": 4896,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13af\\u13d7\": 4897,\n    \"\\u2581\\u13f0\\u13b5\\u13a6\": 4898,\n    \"\\u2581\\u13a0\\u13aa\\u13a2\": 4899,\n    \"\\u13da\\u13c3\\u13f4\\u13ac\": 4900,\n    \"\\u13d3\\u13c1\\u13b8\\u13af\": 4901,\n    \"\\u13b8\\u13cd\\u13d7\\u13f1\": 4902,\n    \"\\u13ac\\u13d3\": 4903,\n    \"\\u2581\\u13a2\\u13e5\\u13ad\": 4904,\n    \"\\u13d2\\u13b2\\u13cd\\u13d7\": 4905,\n    \"\\u2581\\u13a3\\u13e4\": 4906,\n    \"\\u2581\\u13d2\": 4907,\n    \"\\u2581\\u13a0\\u13eb\\u13c3\": 4908,\n    \"\\u2581\\u13aa\\u13e2\": 4909,\n    \"\\u2581\\u13a0\\u13d3\\u13f2\\u13c1\": 4910,\n    \"\\u13d0\\u13c1\": 4911,\n    \"\\u13d0\\u13d7\": 4912,\n    \"\\u2581\\u13a2\\u13d7\\u13a6\": 4913,\n    \"\\u13b3\\u13d7\\u13cd\\u13d7\": 4914,\n    \"\\u2581\\u13e3\\u13c1\\u13a9\": 4915,\n    \"\\u13c2\\u13b2\": 4916,\n    \"\\u2581\\u13e6\\u13a2\\u13ad\": 4917,\n    \"\\u2581\\u13be\\u13ef\": 4918,\n    \"\\u13f2\\u13af\\u13ce\\u13d7\\u13f1\": 4919,\n    \"\\u13d3\\u13ce\\u13aa\\u13a9\": 4920,\n    \"\\u13d3\\u13ec\\u13af\\u13b3\": 4921,\n    \"\\u13d9\\u13c2\": 4922,\n    \"\\u13e9\\u13d7\\u13d2\\u13a2\": 4923,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13c5\": 4924,\n    \"\\u13a9\\u13b5\": 4925,\n    \"\\u2581\\u13a4\\u13b5\\u13a2\": 4926,\n    \"\\u2581\\u13c6\\u13be\": 4927,\n    \"\\u13e2\\u13c5\\u13a9\": 4928,\n    \"\\u13af\\u13ae\\u13cd\\u13d7\": 4929,\n    \"\\u13cd\\u13d7\\u13cd\\u13a8\": 4930,\n    \"\\u13aa\\u13a6\": 4931,\n    \"\\u2581\\u13da\\u13d3\": 4932,\n    \"\\u13a8\\u13af\\u13d3\\u13cd\\u13d7\": 4933,\n    \"\\u2581\\u13eb\\u13f1\": 4934,\n    \"\\u13ae\\u13be\": 4935,\n    \"\\u13aa\\u13a9\": 4936,\n    \"\\u13a9\\u13a8\\u13f3\\u13af\\u13f3\": 4937,\n    \"\\u13e5\\u13a6\\u13d4\\u13b2\\u13be\": 4938,\n    \"\\u13d3\\u13c1\\u13d7\\u13f1\": 4939,\n    \"\\u13cd\\u13c7\\u13da\": 4940,\n    \"\\u13b2\\u13cd\\u13a8\\u13a2\": 4941,\n    \"\\u2581\\u13d3\\u13cc\": 4942,\n    \"\\u13be\\u13d4\": 4943,\n    \"\\u13cd\\u13d5\\u13be\": 4944,\n    \"\\u2581\\u13a2\\u13f2\": 4945,\n    \"\\u13a6\\u13d5\": 4946,\n    \"\\u13be\\u13db\\u13a6\": 4947,\n    \"\\u13e4\\u13d7\": 4948,\n    \"\\u2581\\u13a6\\u13d8\": 4949,\n    \"\\u2581\\u13d9\\u13e3\": 4950,\n    \"\\u13cc\\u13d5\": 4951,\n    \"\\u13b5\\u13d3\\u13cd\\u13d7\\u13f1\": 4952,\n    \"\\u13f4\\u13d4\\u13c1\\u13a2\": 4953,\n    \"\\u2581\\u13af\\u13c3\": 4954,\n    \"\\u2581\\u13a0\\u13c2\\u13c9\": 4955,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\": 4956,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\": 4957,\n    \"\\u13e5\\u13a6\\u13d4\\u13ad\": 4958,\n    \"\\u13b3\\u13a9\\u13cd\\u13d7\": 4959,\n    \"\\u2581\\u13f0\\u13e3\": 4960,\n    \"\\u2581\\u13e3\\u13d3\\u13f0\": 4961,\n    \"\\u2581\\u13c2\\u13da\\u13c5\": 4962,\n    \"\\u2581\\u13f1\\u13e3\\u13d3\": 4963,\n    \"\\u13f0\\u13b8\\u13cd\\u13ac\": 4964,\n    \"\\u2581\\u13d3\\u13be\\u13b5\": 4965,\n    \"\\u13e6\\u13af\": 4966,\n    \"\\u13c1\\u13b0\": 4967,\n    \"\\u13cc\\u13c5\": 4968,\n    \"\\u13b8\\u13c5\\u13af\": 4969,\n    \"\\u13db\\u13c1\\u13ad\": 4970,\n    \"\\u2581\\u13a0\\u13be\\u13d8\": 4971,\n    \"\\u13a9\\u13cf\": 4972,\n    \"\\u13c5\\u13d4\": 4973,\n    \"\\u13d8\\u13c5\\u13d2\\u13a9\": 4974,\n    \"\\u13e4\\u13b7\\u13af\\u13d2\": 4975,\n    \"\\u2581\\u13a6\\u13b6\\u13c1\\u13db\\u13f0\\u13c3\": 4976,\n    \"\\u13e1\\u13ac\": 4977,\n    \"\\u2581\\u13a0\\u13cf\\u13f4\\u13eb\\u13c9\": 4978,\n    \"\\u2581\\u13e5\\u13d5\\u13e5\": 4979,\n    \"\\u13aa\\u13b3\": 4980,\n    \"\\u2581\\u13ac\\u13be\\u13ec\": 4981,\n    \"\\u13f0\\u13cd\\u13d7\": 4982,\n    \"\\u2581\\u13f1\\u13d9\\u13a9\": 4983,\n    \"\\u2581\\u13a4\\u13ea\\u13ef\": 4984,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\\u13f1\": 4985,\n    \"\\u13db\\u13c1\": 4986,\n    \"\\u2581\\u13d7\\u13cd\\u13d3\": 4987,\n    \"\\u13d5\\u13c5\\u13af\": 4988,\n    \"\\u13cd\\u13d7\\u13c9\": 4989,\n    \"\\u13a6\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\": 4990,\n    \"\\u13ec\\u13a2\": 4991,\n    \"\\u13c5\\u13e4\\u13a2\": 4992,\n    \"\\u13db\\u13c2\\u13cf\": 4993,\n    \"\\u13a6\\u13ce\\u13cd\\u13d5\\u13cd\\u13d7\": 4994,\n    \"\\u13ec\\u13e3\": 4995,\n    \"\\u13d1\\u13eb\\u13d3\": 4996,\n    \"\\u13cd\\u13c6\\u13c2\\u13a9\\u13d7\": 4997,\n    \"\\u13ce\\u13ae\\u13cd\\u13d7\": 4998,\n    \"\\u2581\\u13da\\u13c2\\u13cd\\u13da\": 4999,\n    \"\\u2581\\u13a0\\u13da\\u13a2\\u13cd\": 5000,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\": 5001,\n    \"\\u2581\\u13d3\\u13e5\\u13f2\": 5002,\n    \"\\u13c2\\u13f4\\u13db\": 5003,\n    \"\\u13c1\\u13b3\\u13a9\": 5004,\n    \"\\u2581\\u13e5\\u13c5\": 5005,\n    \"\\u13a7\\u13ef\": 5006,\n    \"\\u13d5\\u13b0\": 5007,\n    \"\\u13e4\\u13a6\\u13c8\\u13c3\": 5008,\n    \"\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\\u13be\": 5009,\n    \"\\u13d3\\u13be\": 5010,\n    \"\\u2581\\u13a0\\u13c2\\u13e7\\u13cf\\u13c3\": 5011,\n    \"\\u2581\\u13f3\\u13d3\": 5012,\n    \"\\u2581\\u13a0\\u13b5\\u13e5\\u13d9\": 5013,\n    \"\\u13bb\\u13c2\": 5014,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\": 5015,\n    \"\\u2581\\u13a9\\u13c2\": 5016,\n    \"\\u13e5\\u13c1\\u13e4\\u13b8\": 5017,\n    \"\\u13ef\\u13d9\": 5018,\n    \"\\u13c4\\u13aa\": 5019,\n    \"\\u2581\\u13a4\\u13e9\\u13d7\": 5020,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\": 5021,\n    \"\\u2581\\u13c2\\u13ef\": 5022,\n    \"\\u2581\\u13e5\\u13cd\": 5023,\n    \"\\u13d9\\u13ad\": 5024,\n    \"\\u13cd\\u13a6\\u13b3\\u13c1\\u13b8\": 5025,\n    \"\\u13aa\\u13ce\\u13ad\": 5026,\n    \"\\u13a6\\u13c5\\u13d3\\u13d7\\u13cd\\u13d9\\u13d7\": 5027,\n    \"\\u2581\\u13d8\\u13c5\": 5028,\n    \"\\u13de\\u13a2\": 5029,\n    \"\\u2581\\u13a0\\u13a6\\u13d3\": 5030,\n    \"\\u2581\\u13a6\\u13b6\\u13d7\": 5031,\n    \"\\u13db\\u13c1\\u13af\": 5032,\n    \"\\u13ef\\u13c5\\u13d7\": 5033,\n    \"\\u13b5\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\": 5034,\n    \"\\u2581\\u13f1\\u13c2\\u13aa\": 5035,\n    \"\\u13f0\\u13a2\": 5036,\n    \"\\u2581\\u13e7\\u13c2\\u13c5\": 5037,\n    \"\\u2581\\u13e3\\u13ab\": 5038,\n    \"\\u13cd\\u13d4\\u13be\": 5039,\n    \"\\u2581\\u13d3\\u13db\": 5040,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\": 5041,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\": 5042,\n    \"\\u13a6\\u13d4\\u13c1\\u13a2\": 5043,\n    \"\\u13c2\\u13af\": 5044,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d6\": 5045,\n    \"\\u13df\\u13d0\\u13d7\\u13f1\": 5046,\n    \"\\u13d5\\u13d8\\u13f1\": 5047,\n    \"\\u2581\\u13c2\\u13a4\": 5048,\n    \"\\u13f2\\u13cd\\u13ac\": 5049,\n    \"\\u13d6\\u13a2\": 5050,\n    \"\\u2581\\u13da\\u13c2\\u13c1\": 5051,\n    \"\\u13a6\\u13d4\\u13ae\\u13cd\\u13d7\": 5052,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13a6\\u13be\": 5053,\n    \"\\u13c1\\u13e4\\u13d7\\u13f1\": 5054,\n    \"\\u2581\\u13a4\\u13c5\\u13e4\": 5055,\n    \"\\u13d8\\u13c4\\u13a6\": 5056,\n    \"\\u2581\\u13a2\\u13d7\\u13e3\": 5057,\n    \"\\u13aa\\u13d5\\u13cd\\u13d7\": 5058,\n    \"\\u13ce\\u13ae\": 5059,\n    \"\\u13aa\\u13be\\u13db\": 5060,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13a2\\u13ae\": 5061,\n    \"\\u13e3\\u13db\": 5062,\n    \"\\u13b5\\u13b0\": 5063,\n    \"\\u2581\\u13a0\\u13ce\\u13b5\": 5064,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\": 5065,\n    \"\\u2581\\u13c2\\u13da\\u13e9\": 5066,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\": 5067,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13f3\": 5068,\n    \"\\u13ac\\u13e9\\u13b6\\u13d3\\u13c1\": 5069,\n    \"\\u13c1\\u13e4\\u13b2\": 5070,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\\u13f1\": 5071,\n    \"\\u2581\\u13a0\\u13f2\\u13b1\": 5072,\n    \"\\u13d4\\u13f2\\u13ce\\u13ad\": 5073,\n    \"\\u2581\\u13a4\\u13c4\": 5074,\n    \"\\u2581\\u13db\\u13c6\": 5075,\n    \"\\u2581\\u13e7\\u13f2\": 5076,\n    \"\\u13f4\\u13db\": 5077,\n    \"\\u13da\\u13af\": 5078,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\": 5079,\n    \"\\u2581\\u13af\\u13e5\": 5080,\n    \"\\u13c5\\u13d3\\u13db\": 5081,\n    \"\\u13c7\\u13c5\\u13af\": 5082,\n    \"\\u2581\\u13d7\\u13c2\\u13c5\": 5083,\n    \"\\u13c4\\u13ec\\u13cd\\u13d7\": 5084,\n    \"\\u13a6\\u13c4\\u13aa\\u13eb\\u13cd\\u13a6\": 5085,\n    \"\\u2581\\u13a4\\u13f2\\u13a2\\u13cd\\u13d7\": 5086,\n    \"\\u2581\\u13d5\\u13cd\": 5087,\n    \"\\u13b7\\u13e5\": 5088,\n    \"\\u2581\\u13d9\\u13a9\\u13c2\": 5089,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\": 5090,\n    \"\\u13c1\\u13be\": 5091,\n    \"\\u13db\\u13d7\\u13cd\\u13a9\": 5092,\n    \"\\u2581\\u13a4\\u13c1\\u13d9\\u13b8\": 5093,\n    \"\\u2581\\u13a0\\u13da\\u13d3\\u13b4\\u13cd\\u13d7\": 5094,\n    \"\\u2581\\u13a4\\u13be\\u13e3\\u13a2\": 5095,\n    \"\\u2581\\u13e4\\u13c8\\u13db\": 5096,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13a9\": 5097,\n    \"\\u13c2\\u13b5\": 5098,\n    \"\\u2581\\u13eb\\u13c2\": 5099,\n    \"\\u2581\\u13f1\\u13ac\\u13a9\": 5100,\n    \"\\u2581\\u13e3\\u13e4\\u13cd\\u13d9\": 5101,\n    \"\\u13a8\\u13be\": 5102,\n    \"\\u2581\\u13d9\\u13d3\\u13a7\": 5103,\n    \"\\u13ef\\u13d7\": 5104,\n    \"\\u13ac\\u13ad\": 5105,\n    \"\\u2581\\u13e6\\u13a9\\u13c2\": 5106,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13a8\": 5107,\n    \"\\u13cd\\u13c6\\u13b3\": 5108,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13ce\": 5109,\n    \"\\u2581\\u13e5\\u13e8\": 5110,\n    \"\\u13d3\\u13cd\\u13d7\\u13f1\": 5111,\n    \"\\u2581\\u13eb\\u13da\\u13a7\\u13be\\u13c1\": 5112,\n    \"\\u2581\\u13a6\\u13cd\\u13a9\\u13d3\\u13cd\\u13ac\": 5113,\n    \"\\u2581\\u13a0\\u13e5\\u13c3\\u13c1\\u13b4\": 5114,\n    \"\\u2581\\u13d9\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 5115,\n    \"\\u2581\\u13a2\\u13db\\u13d7\\u13cd\\u13ac\": 5116,\n    \"\\u2581\\u13a0\\u13be\\u13db\\u13a9\\u13cd\\u13ac\": 5117,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13ae\\u13b5\\u13ac\": 5118,\n    \"\\u2581\\u13d7\\u13a9\\u13f2\": 5119,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13d2\": 5120,\n    \"\\u2581\\u13d5\\u13a4\\u13b7\\u13ac\": 5121,\n    \"\\u2581\\u13c2\\u13d3\\u13d5\\u13d8\\u13f4\\u13af\\u13d2\": 5122,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13b5\\u13f2\\u13ac\": 5123,\n    \"\\u13be\\u13f0\\u13af\\u13cd\\u13d7\": 5124,\n    \"\\u13df\\u13cf\\u13cd\\u13aa\": 5125,\n    \"\\u13a2\\u13cf\\u13b5\": 5126,\n    \"\\u13a1\\u13dd\\u13ea\\u13af\": 5127,\n    \"\\u2581\\u13a4\\u13d2\\u13c2\\u13b4\": 5128,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13aa\\u13be\\u13d7\\u13cd\\u13ac\": 5129,\n    \"\\u13a0\\u13b3\\u13c2\": 5130,\n    \"\\u2581\\u13af\\u13c1\\u13ac\": 5131,\n    \"\\u2581\\u13a0\\u13c2\\u13a7\\u13b8\": 5132,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13c5\": 5133,\n    \"\\u13a0\\u13cd\\u13a6\\u13ef\": 5134,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13c1\": 5135,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 5136,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13db\\u13d7\\u13cd\\u13ac\": 5137,\n    \"\\u13f4\\u13d4\\u13c2\\u13b8\": 5138,\n    \"\\u2581\\u13a0\\u13ac\\u13d7\\u13cd\\u13ac\": 5139,\n    \"\\u2581\\u13a0\\u13be\\u13d5\\u13b2\\u13cd\\u13ac\": 5140,\n    \"\\u2581\\u13e6\\u13a2\\u13c9\": 5141,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c5\": 5142,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13f0\\u13d4\\u13c1\": 5143,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c5\": 5144,\n    \"\\u13c6\\u13b4\": 5145,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d4\\u13c5\": 5146,\n    \"\\u13c4\\u13d5\\u13d8\\u13f4\\u13b2\": 5147,\n    \"\\u2581\\u13aa\\u13d9\": 5148,\n    \"\\u2581\\u13a6\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\": 5149,\n    \"\\u2581\\u13a4\\u13e6\\u13af\": 5150,\n    \"\\u2581\\u13a0\\u13c7\\u13c5\\u13d2\": 5151,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13c5\": 5152,\n    \"\\u2581\\u13ed\\u13c2\\u13b6\\u13d2\": 5153,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13c5\": 5154,\n    \"\\u2581\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\": 5155,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\": 5156,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13aa\\u13be\\u13d7\\u13cd\\u13ac\": 5157,\n    \"\\u2581\\u13a2\\u13d7\\u13c2\": 5158,\n    \"\\u13c8\\u13b3\": 5159,\n    \"\\u2581\\u13d7\\u13a6\\u13c1\\u13b8\": 5160,\n    \"\\u2581\\u13e7\\u13b6\\u13d2\": 5161,\n    \"\\u2581\\u13a0\\u13c9\\u13ea\\u13b3\\u13c5\": 5162,\n    \"\\u2581\\u13e8\\u13cc\": 5163,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\": 5164,\n    \"\\u13d3\\u13cd\\u13d5\\u13b8\\u13d7\": 5165,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c1\": 5166,\n    \"\\u13a0\\u13c1\\u13af\": 5167,\n    \"\\u2581\\u13ed\\u13d3\\u13aa\\u13be\\u13db\": 5168,\n    \"\\u2581\\u13a2\\u13ef\\u13c5\\u13c1\": 5169,\n    \"\\u2581\\u13da\\u13aa\": 5170,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13c1\": 5171,\n    \"\\u2581\\u13e7\\u13be\\u13db\\u13d0\\u13c5\": 5172,\n    \"\\u2581\\u13a2\\u13d3\\u13b5\\u13ae\\u13b5\": 5173,\n    \"\\u2581\\u13d7\\u13a9\\u13be\\u13eb\": 5174,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d4\\u13c2\\u13d3\\u13cd\\u13d7\": 5175,\n    \"\\u13b8\\u13d9\\u13d7\": 5176,\n    \"\\u13c1\\u13b5\\u13cd\\u13ac\\u13be\": 5177,\n    \"\\u13ce\\u13aa\\u13a9\\u13cd\\u13d7\": 5178,\n    \"\\u2581\\u13d7\\u13aa\\u13ea\\u13b3\\u13c5\": 5179,\n    \"\\u13f2\\u13af\\u13b2\": 5180,\n    \"\\u2581\\u13a8\\u13e5\\u13db\\u13d9\\u13d7\": 5181,\n    \"\\u13e5\\u13be\\u13dd\\u13a5\\u13be\": 5182,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\\u13ef\": 5183,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13c2\\u13b8\\u13e8\": 5184,\n    \"\\u2581\\u13ed\\u13c2\\u13b6\\u13af\\u13cd\\u13d7\": 5185,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d4\\u13c5\": 5186,\n    \"\\u2581\\u13d7\\u13e5\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 5187,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 5188,\n    \"\\u2581\\u13e3\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 5189,\n    \"\\u2581\\u13ed\\u13b6\\u13af\\u13cd\\u13d7\": 5190,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\\u13e6\": 5191,\n    \"\\u2581\\u13a2\\u13f3\\u13df\\u13b6\": 5192,\n    \"\\u2581\\u13a0\\u13c1\\u13b5\": 5193,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13d7\": 5194,\n    \"\\u2581\\u13a4\\u13b5\\u13c2\\u13a9\\u13d7\": 5195,\n    \"\\u2581\\u13e9\\u13be\\u13a2\": 5196,\n    \"\\u2581\\u13d7\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 5197,\n    \"\\u2581\\u13e9\\u13e5\\u13b3\": 5198,\n    \"\\u13e0\\u13be\\u13cd\\u13db\\u13be\": 5199,\n    \"\\u2581\\u13aa\\u13b5\\u13ac\": 5200,\n    \"\\u2581\\u13a8\\u13e8\": 5201,\n    \"\\u13b0\\u13e2\\u13c5\\u13ad\": 5202,\n    \"\\u13c1\\u13d4\\u13c1\": 5203,\n    \"es\": 5204,\n    \"\\u13e5\\u13c1\\u13b8\\u13af\": 5205,\n    \"\\u2581\\u13a4\\u13c2\\u13b8\": 5206,\n    \"\\u13e6\\u13a2\": 5207,\n    \"dinot\": 5208,\n    \"\\u2581\\u13a0\\u13b0\\u13b5\\u13c6\\u13b9\": 5209,\n    \"\\u2581\\u13a4\\u13a7\\u13d6\\u13c3\\u13b4\": 5210,\n    \"\\u2581\\u13a4\\u13ac\\u13e9\\u13b3\": 5211,\n    \"\\u2581\\u13b1\\u13c1\\u13c5\\u13ce\": 5212,\n    \"\\u2581\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\\u13be\": 5213,\n    \"\\u2581\\u13c2\\u13e5\\u13aa\\u13b8\\u13be\": 5214,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13a0\": 5215,\n    \"\\u2581\\u13d5\\u13cf\\u13b6\\u13c2\\u13a6\": 5216,\n    \"\\u2581\\u13d7\\u13a6\\u13c3\\u13e3\\u13dd\\u13cd\\u13a9\": 5217,\n    \"\\u2581\\u13d7\\u13a6\\u13cc\\u13c6\\u13b8\": 5218,\n    \"\\u2581\\u13e7\\u13be\\u13cd\\u13d5\\u13e5\": 5219,\n    \"\\u2581\\u13e7\\u13c2\\u13b3\\u13be\\u13a2\": 5220,\n    \"\\u2581\\u13ec\\u13a9\\u13b6\\u13d2\\u13a9\": 5221,\n    \"\\u2581\\u13ed\\u13a9\\u13e8\\u13c5\": 5222,\n    \"\\u2581\\u13f1\\u13d5\\u13cd\\u13ac\\u13cf\": 5223,\n    \"\\u2581\\u13a0\\u13f3\\u13be\\u13a6\": 5224,\n    \"\\u2581\\u13a4\\u13d4\\u13b3\\u13ec\\u13ce\\u13a2\": 5225,\n    \"\\u2581\\u13e7\\u13e9\\u13d7\\u13d4\\u13ef\": 5226,\n    \"\\u2581\\u13f1\\u13c5\\u13ce\\u13a6\\u13a9\": 5227,\n    \"\\u2581\\u13a4\\u13d3\\u13e5\\u13be\\u13cd\": 5228,\n    \"\\u2581\\u13a4\\u13d4\\u13b4\\u13a6\\u13d2\": 5229,\n    \"\\u2581\\u13a4\\u13e9\\u13ef\\u13a8\\u13a2\": 5230,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13bf\\u13d5\\u13a8\\u13cd\\u13d7\": 5231,\n    \"\\u2581\\u13a4\\u13d5\\u13ef\\u13d4\\u13c1\\u13b4\": 5232,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13c5\\u13db\\u13be\": 5233,\n    \"\\u2581\\u13d7\\u13a6\\u13e9\\u13d2\\u13a9\": 5234,\n    \"\\u2581\\u13a4\\u13d3\\u13e9\\u13d7\\u13cd\\u13d9\\u13db\": 5235,\n    \"\\u2581\\u13be\\u13c5\\u13db\\u13c1\\u13b0\": 5236,\n    \"\\u2581\\u13c5\\u13e7\\u13b5\\u13cd\\u13d9\\u13d4\\u13c1\": 5237,\n    \"\\u2581\\u13cd\\u13a9\\u13c1\\u13b2\\u13cf\": 5238,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d3\\u13e9\\u13d5\\u13a8\\u13cd\\u13d7\": 5239,\n    \"\\u2581\\u13a0\\u13b5\\u13f0\\u13a2\\u13b6\\u13b8\\u13ad\": 5240,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13c5\\u13a2\\u13cd\\u13d9\\u13a2\": 5241,\n    \"\\u2581\\u13a3\\u13cd\\u13d3\\u13d3\\u13e4\\u13b5\": 5242,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13eb\\u13ce\\u13b8\": 5243,\n    \"\\u2581\\u13a8\\u13a2\\u13be\\u13c2\": 5244,\n    \"\\u2581\\u13d7\\u13d4\\u13b3\\u13d7\\u13cd\\u13d7\\u13f1\": 5245,\n    \"\\u2581\\u13e5\\u13c2\\u13e5\\u13ea\\u13ad\": 5246,\n    \"\\u2581\\u13d7\\u13e0\\u13cd\\u13a9\": 5247,\n    \"\\u2581\\u13a0\\u13d3\\u13ea\\u13b5\\u13a9\\u13cd\\u13a9\": 5248,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13be\\u13d5\\u13ac\": 5249,\n    \"\\u2581\\u13eb\\u13c2\\u13e8\\u13a6\": 5250,\n    \"\\u2581\\u13a4\\u13ac\\u13e9\\u13b4\": 5251,\n    \"\\u2581\\u13a4\\u13cd\\u13d4\\u13e9\\u13db\": 5252,\n    \"\\u2581\\u13d9\\u13d3\\u13ab\\u13aa\\u13d3\\u13c1\\u13b5\": 5253,\n    \"\\u2581\\u13c5\\u13d3\\u13e3\\u13d3\\u13b4\\u13c5\\u13af\": 5254,\n    \"\\u2581\\u13d7\\u13ab\\u13aa\\u13d3\\u13c1\\u13af\": 5255,\n    \"\\u2581\\u13c2\\u13aa\\u13af\\u13f3\\u13b2\\u13cd\\u13ac\\u13be\": 5256,\n    \"\\u2581\\u13a2\\u13a6\\u13ea\\u13cd\\u13a9\": 5257,\n    \"\\u2581\\u13a5\\u13a8\\u13d2\\u13a9\": 5258,\n    \"\\u13c1\\u13c9\\u13e3\\u13d6\\u13cd\\u13d7\": 5259,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13be\\u13db\\u13c1\\u13d7\": 5260,\n    \"\\u2581\\u13a4\\u13ac\\u13e9\\u13b8\": 5261,\n    \"\\u2581\\u13a4\\u13b5\\u13d8\\u13be\\u13a5\": 5262,\n    \"\\u2581\\u13e5\\u13d5\\u13e3\\u13aa\\u13b2\\u13a9\": 5263,\n    \"\\u2581\\u13c5\\u13d3\\u13e5\\u13f4\\u13c1\\u13b5\": 5264,\n    \"\\u2581\\u13f4\\u13a6\\u13e5\\u13db\\u13d3\": 5265,\n    \"\\u2581\\u13c2\\u13ac\\u13e0\\u13cd\\u13ac\\u13be\": 5266,\n    \"\\u2581\\u13a0\\u13b5\\u13db\\u13d3\": 5267,\n    \"\\u2581\\u13a0\\u13a8\\u13f2\\u13c5\": 5268,\n    \"\\u2581\\u13e3\\u13c3\\u13ae\\u13b8\\u13a9\": 5269,\n    \"\\u2581\\u13cd\\u13a8\\u13eb\": 5270,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13db\\u13c1\\u13ad\": 5271,\n    \"\\u2581\\u13d7\\u13aa\\u13cf\\u13cf\\u13cd\\u13a9\": 5272,\n    \"\\u2581\\u13e4\\u13bf\\u13a0\": 5273,\n    \"\\u2581\\u13a5\\u13d3\\u13b7\\u13b6\\u13d7\": 5274,\n    \"\\u2581\\u13d5\\u13ad\\u13d3\\u13c5\\u13a1\\u13ae\\u13cd\\u13d7\": 5275,\n    \"\\u2581\\u13e7\\u13be\\u13b4\\u13d0\\u13db\": 5276,\n    \"\\u2581\\u13d7\\u13c2\\u13a7\\u13bf\\u13e9\\u13d5\\u13a9\": 5277,\n    \"\\u2581\\u13e5\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\\u13b2\\u13a9\": 5278,\n    \"\\u2581\\u13a4\\u13e9\\u13c3\\u13ea\": 5279,\n    \"\\u2581\\u13e5\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 5280,\n    \"\\u2581\\u13d5\\u13aa\\u13e2\\u13ce\\u13cd\\u13d7\": 5281,\n    \"\\u2581\\u13da\\u13dc\\u13c5\\u13db\": 5282,\n    \"\\u2581\\u13c2\\u13d5\\u13a4\\u13cd\\u13d5\\u13cd\\u13d7\": 5283,\n    \"\\u2581\\u13d4\\u13d8\\u13c2\\u13d9\\u13af\": 5284,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13ef\\u13db\\u13c1\\u13b5\": 5285,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13a6\\u13b4\\u13f2\\u13e8\\u13af\": 5286,\n    \"\\u2581\\u13c4\\u13cd\\u13a6\\u13c5\\u13e8\\u13be\": 5287,\n    \"\\u2581\\u13c2\\u13a9\\u13f4\\u13c1\\u13b8\": 5288,\n    \"\\u2581\\u13d5\\u13af\\u13c1\\u13e4\\u13ae\\u13cd\\u13d7\": 5289,\n    \"\\u2581\\u13b0\\u13cc\\u13be\": 5290,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d4\\u13f4\\u13d7\": 5291,\n    \"\\u2581\\u13c2\\u13a8\\u13b5\\u13cd\\u13ac\": 5292,\n    \"\\u2581\\u13d7\\u13be\\u13c2\\u13cf\\u13b2\\u13cd\\u13a9\": 5293,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13b5\\u13a2\": 5294,\n    \"\\u2581\\u13a0\\u13be\\u13db\\u13c1\\u13b5\\u13cd\\u13a9\": 5295,\n    \"\\u2581\\u13d5\\u13e5\\u13d9\\u13a8\\u13cd\\u13d7\": 5296,\n    \"\\u2581\\u13cd\\u13a9\\u13f2\\u13ae\\u13cd\\u13d7\": 5297,\n    \"\\u2581\\u13d7\\u13e5\\u13f2\\u13b1\\u13d2\\u13af\": 5298,\n    \"\\u2581\\u13a4\\u13c4\\u13ec\\u13cd\\u13d5\\u13cd\\u13d7\": 5299,\n    \"\\u2581\\u13c2\\u13ea\\u13cd\\u13ac\\u13a2\": 5300,\n    \"\\u13e4\\u13ec\\u13a9\": 5301,\n    \"ans\": 5302,\n    \"\\u2581\\u13c2\\u13d1\\u13ea\\u13ce\\u13b4\\u13a2\": 5303,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 5304,\n    \"\\u2581\\u13c5\\u13d3\\u13e8\\u13c1\\u13b5\": 5305,\n    \"\\u2581\\u13f1\\u13c4\\u13ea\\u13d2\": 5306,\n    \"\\u2581\\u13d7\\u13c2\\u13f2\\u13a4\\u13b5\": 5307,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13f0\\u13ce\\u13a2\": 5308,\n    \"\\u2581\\u13a2\\u13e3\\u13a6\\u13cc\\u13ef\\u13cd\\u13d3\": 5309,\n    \"\\u2581\\u13e7\\u13ef\\u13cd\\u13a6\": 5310,\n    \"\\u2581\\u13a4\\u13e9\\u13be\\u13d5\": 5311,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a6\\u13c5\\u13e5\\u13d9\\u13b8\\u13a2\": 5312,\n    \"\\u2581\\u13a0\\u13be\\u13c1\\u13b8\\u13d7\\u13cd\\u13ac\": 5313,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13a6\\u13d8\": 5314,\n    \"\\u2581\\u13da\\u13cc\\u13af\\u13b8\": 5315,\n    \"\\u2581\\u13c2\\u13e5\\u13cd\\u13a6\\u13a2\\u13b2\\u13be\": 5316,\n    \"\\u2581\\u13da\\u13d3\\u13c2\\u13b8\\u13e8\": 5317,\n    \"\\u2581\\u13e7\\u13be\\u13d8\\u13c2\\u13d9\\u13af\": 5318,\n    \"\\u2581\\u13d7\\u13e3\\u13d8\\u13c2\\u13d9\\u13af\": 5319,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cd\\u13aa\\u13a2\": 5320,\n    \"\\u2581\\u13a4\\u13c1\\u13be\\u13a2\": 5321,\n    \"\\u13d9\\u13b4\\u13c7\": 5322,\n    \"ay\": 5323,\n    \"\\u2581\\u13a4\\u13c3\\u13e2\\u13d4\\u13c5\\u13a9\": 5324,\n    \"\\u2581\\u13a8\\u13b5\\u13cc\\u13d5\": 5325,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13a6\\u13cc\\u13ef\\u13cd\\u13d7\\u13d5\\u13a9\": 5326,\n    \"\\u2581\\u13a8\\u13a6\\u13ab\\u13f4\\u13d3\\u13c1\\u13d7\": 5327,\n    \"\\u2581\\u13da\\u13c6\\u13db\": 5328,\n    \"\\u2581\\u13d9\\u13db\\u13db\\u13d4\\u13c2\": 5329,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13be\\u13cc\\u13b2\\u13cd\\u13a9\": 5330,\n    \"\\u2581\\u13a4\\u13db\\u13d2\": 5331,\n    \"\\u2581\\u13ad\\u13d3\\u13c5\\u13d3\\u13d3\": 5332,\n    \"\\u2581\\u13d7\\u13d5\\u13f2\\u13b2\\u13cd\\u13a9\": 5333,\n    \"\\u2581\\u13e7\\u13d4\\u13be\\u13b6\": 5334,\n    \"\\u2581\\u13f2\\u13e5\\u13a6\\u13d4\\u13ad\": 5335,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\\u13ad\": 5336,\n    \"\\u2581\\u13e7\\u13b3\\u13cf\\u13d5\\u13c5\": 5337,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13df\": 5338,\n    \"\\u2581\\u13a6\\u13d9\\u13b4\\u13a3\\u13cd\": 5339,\n    \"\\u2581\\u13a0\\u13c2\\u13b6\\u13bb\": 5340,\n    \"\\u2581\\u13c2\\u13a6\\u13da\\u13cf\\u13c1\": 5341,\n    \"\\u2581\\u13a4\\u13d7\\u13cc\\u13d3\\u13db\": 5342,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13a6\\u13c1\\u13db\": 5343,\n    \"\\u2581\\u13a1\\u13ad\\u13a6\\u13d4\": 5344,\n    \"\\u2581\\u13f3\\u13d3\\u13ec\\u13a0\": 5345,\n    \"\\u2581\\u13a0\\u13c2\\u13ec\\u13c2\\u13cd\\u13a9\": 5346,\n    \"\\u2581\\u13c2\\u13e4\\u13b2\\u13be\": 5347,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13a6\\u13a9\": 5348,\n    \"\\u13b8\\u13c2\\u13d7\\u13cd\\u13a9\": 5349,\n    \"\\u2581\\u13a0\\u13a9\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\\u13f1\": 5350,\n    \"\\u2581\\u13be\\u13c5\\u13c1\\u13b2\": 5351,\n    \"\\u2581\\u13a8\\u13a6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\\u13af\": 5352,\n    \"\\u2581\\u13e9\\u13b5\\u13f0\\u13a2\\u13b6\\u13af\\u13ad\": 5353,\n    \"\\u2581\\u13a0\\u13db\\u13c2\\u13d7\\u13cd\\u13d9\\u13d7\": 5354,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13cd\\u13d7\": 5355,\n    \"\\u2581\\u13e3\\u13c2\\u13a7\\u13b3\": 5356,\n    \"\\u2581\\u13ed\\u13d3\\u13d0\\u13b4\": 5357,\n    \"\\u2581\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 5358,\n    \"\\u2581\\u13c2\\u13a6\\u13be\\u13f0\\u13cd\\u13ac\\u13be\": 5359,\n    \"\\u2581\\u13a2\\u13e3\\u13e4\\u13b5\\u13aa\\u13af\": 5360,\n    \"\\u2581\\u13a2\\u13f0\\u13e8\\u13c1\\u13b8\\u13af\": 5361,\n    \"\\u2581\\u13a1\\u13e3\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 5362,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13db\": 5363,\n    \"\\u2581\\u13e7\\u13da\\u13aa\\u13d4\\u13c5\": 5364,\n    \"\\u2581\\u13d3\\u13e5\\u13cd\\u13d3\\u13f1\\u13d5\\u13b5\": 5365,\n    \"\\u2581\\u13e4\\u13cc\\u13c2\": 5366,\n    \"\\u2581\\u13a4\\u13ee\\u13d9\\u13d7\\u13f1\": 5367,\n    \"\\u2581\\u13e0\": 5368,\n    \"\\u2581\\u13a3\\u13be\\u13c2\": 5369,\n    \"\\u2581\\u13c2\\u13e3\\u13d3\\u13c5\\u13db\\u13be\": 5370,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13d7\": 5371,\n    \"\\u2581\\u13ac\\u13a9\\u13c1\\u13c9\\u13e4\\u13d7\\u13f1\": 5372,\n    \"\\u2581\\u13da\\u13d5\\u13d8\\u13f4\\u13cc\\u13d7\\u13d2\": 5373,\n    \"\\u2581\\u13c2\\u13cd\\u13a6\\u13c5\\u13be\": 5374,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13ad\": 5375,\n    \"\\u13d3\\u13ec\\u13c5\\u13db\": 5376,\n    \"\\u2581\\u13d3\\u13be\\u13e4\\u13b8\": 5377,\n    \"\\u2581\\u13e3\\u13c3\\u13cd\\u13a9\\u13d2\\u13a9\": 5378,\n    \"\\u2581\\u13ef\\u13c6\\u13da\\u13b5\\u13cd\\u13a8\": 5379,\n    \"\\u2581\\u13a4\\u13ec\\u13ef\\u13c1\\u13d2\": 5380,\n    \"\\u2581\\u13d5\\u13ac\\u13c6\": 5381,\n    \"\\u2581\\u13d7\\u13a7\\u13bf\\u13e9\\u13d5\\u13a9\": 5382,\n    \"\\u2581\\u13a0\\u13aa\\u13ce\": 5383,\n    \"\\u2581\\u13a3\\u13e9\\u13d2\": 5384,\n    \"\\u2581\\u13a0\\u13c7\\u13f2\\u13c5\": 5385,\n    \"\\u2581\\u13a4\\u13ef\\u13d6\\u13be\": 5386,\n    \"\\u2581\\u13a4\\u13d4\\u13c2\\u13d7\\u13a8\": 5387,\n    \"\\u2581\\u13ed\\u13aa\\u13ae\": 5388,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 5389,\n    \"\\u2581\\u13d7\\u13a9\\u13f2\\u13af\\u13cd\\u13d7\\u13f1\": 5390,\n    \"\\u2581\\u13d7\\u13c2\\u13b4\\u13c2\": 5391,\n    \"\\u2581\\u13a4\\u13c2\\u13ac\\u13a5\\u13cd\\u13ac\": 5392,\n    \"\\u2581\\u13e3\\u13d3\\u13f4\\u13b3\\u13d4\\u13cd\": 5393,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13e3\": 5394,\n    \"\\u2581\\u13b9\\u13d3\": 5395,\n    \"\\u2581\\u13a0\\u13b1\\u13b5\": 5396,\n    \"\\u2581\\u13e7\\u13c2\\u13f4\\u13cd\\u13d5\\u13cd\\u13a9\": 5397,\n    \"\\u2581\\u13a2\\u13e5\\u13e9\\u13db\\u13d7\\u13f1\": 5398,\n    \"\\u2581\\u13d5\\u13a4\\u13d9\\u13cd\\u13db\": 5399,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13d8\\u13f1\": 5400,\n    \"\\u2581\\u13ac\\u13e9\\u13c3\\u13ae\\u13cd\\u13a9\": 5401,\n    \"\\u2581\\u13d9\\u13d3\\u13f0\": 5402,\n    \"\\u2581\\u13a1\\u13e5\\u13be\\u13f0\\u13cd\\u13a8\\u13cd\\u13d7\": 5403,\n    \"\\u2581\\u13e3\\u13a2\\u13ce\\u13cd\\u13d7\": 5404,\n    \"\\u2581\\u13a1\\u13e4\\u13be\": 5405,\n    \"\\u2581\\u13db\\u13d3\\u13b4\\u13b2\\u13cd\\u13ac\\u13a9\": 5406,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13c1\\u13d7\\u13f1\": 5407,\n    \"\\u2581\\u13c1\\u13b3\\u13da\": 5408,\n    \"\\u2581\\u13da\\u13bf\\u13cd\\u13d5\\u13e2\": 5409,\n    \"\\u2581\\u13f1\\u13d9\\u13a8\\u13e5\": 5410,\n    \"\\u2581\\u13d7\\u13a6\\u13df\\u13d3\": 5411,\n    \"\\u2581\\u13da\\u13c5\\u13cd\\u13d3\\u13d5\\u13b4\": 5412,\n    \"\\u2581\\u13d7\\u13e3\\u13a6\\u13f4\\u13b5\\u13a8\": 5413,\n    \"\\u2581\\u13a0\\u13a9\\u13c3\\u13ae\\u13cd\\u13a9\": 5414,\n    \"\\u2581\\u13eb\\u13e5\\u13a6\\u13d8\": 5415,\n    \"\\u2581\\u13d7\\u13c6\\u13b5\\u13a2\": 5416,\n    \"\\u13e8\\u13c1\\u13d7\": 5417,\n    \"\\u2581\\u13a0\\u13be\\u13db\\u13ac\\u13a6\": 5418,\n    \"\\u13a6\\u13d8\\u13b4\\u13c5\": 5419,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13a9\\u13f3\": 5420,\n    \"\\u2581\\u13aa\\u13e2\\u13cd\\u13a9\": 5421,\n    \"\\u2581\\u13a2\\u13cf\\u13a6\": 5422,\n    \"\\u2581\\u13cd\\u13a9\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 5423,\n    \"\\u2581\\u13d7\\u13f2\\u13cd\\u13d9\\u13d7\": 5424,\n    \"\\u13be\\u13cc\\u13be\\u13a9\": 5425,\n    \"\\u2581\\u13cf\\u13d0\\u13a2\": 5426,\n    \"\\u2581\\u13e5\\u13c4\\u13b5\\u13cd\\u13d4\\u13c5\": 5427,\n    \"\\u13c2\\u13ac\\u13ac\": 5428,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13a9\": 5429,\n    \"\\u2581\\u13a2\\u13e8\\u13c3\\u13c1\\u13ad\": 5430,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13a8\\u13c2\": 5431,\n    \"\\u2581\\u13a1\\u13bf\\u13a2\": 5432,\n    \"\\u2581\\u13e3\\u13c3\\u13ce\\u13b0\\u13a2\": 5433,\n    \"\\u2581\\u13a6\\u13df\\u13b2\": 5434,\n    \"\\u2581\\u13ed\\u13f4\\u13ae\": 5435,\n    \"\\u2581\\u13aa\\u13f1\\u13c5\\u13cd\\u13d7\": 5436,\n    \"\\u2581\\u13a1\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 5437,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\\u13b2\": 5438,\n    \"\\u2581\\u13f2\\u13e8\\u13d7\\u13cd\\u13a8\": 5439,\n    \"\\u2581\\u13a2\\u13e5\\u13ac\\u13eb\\u13f3\\u13af\": 5440,\n    \"\\u13cd\\u13d3\\u13e9\\u13db\\u13cd\\u13d7\\u13f1\": 5441,\n    \"\\u2581\\u13a0\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13ac\": 5442,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13f4\\u13d7\\u13f1\": 5443,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13a8\\u13b3\\u13cd\\u13d7\": 5444,\n    \"\\u2581\\u13c2\\u13a6\\u13a1\\u13cd\\u13d7\": 5445,\n    \"\\u2581\\u13c2\\u13e8\\u13f4\\u13c1\\u13ad\": 5446,\n    \"\\u2581\\u13d7\\u13e8\\u13f2\\u13af\\u13ce\\u13d7\\u13f1\": 5447,\n    \"\\u2581\\u13a4\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b4\": 5448,\n    \"\\u2581\\u13d3\\u13aa\\u13c4\\u13b8\": 5449,\n    \"\\u2581\\u13a1\\u13da\\u13e5\": 5450,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\\u13f1\": 5451,\n    \"\\u2581\\u13ac\\u13c1\\u13e4\\u13ad\": 5452,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13f2\\u13b5\\u13f3\": 5453,\n    \"\\u2581\\u13e7\\u13ec\\u13b3\": 5454,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13b8\\u13b0\": 5455,\n    \"\\u2581\\u13d7\\u13d1\\u13f1\": 5456,\n    \"\\u13b5\\u13db\\u13d3\\u13c1\": 5457,\n    \"\\u2581\\u13a4\\u13db\\u13aa\\u13d7\": 5458,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13da\\u13a2\\u13ce\\u13a2\": 5459,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13f4\\u13b5\\u13a8\": 5460,\n    \"\\u2581\\u13a6\\u13d3\\u13b7\\u13aa\\u13d7\": 5461,\n    \"\\u2581\\u13ac\\u13a5\\u13cf\": 5462,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 5463,\n    \"\\u2581\\u13a4\\u13b5\\u13d6\\u13b8\\u13c5\\u13a9\": 5464,\n    \"\\u2581\\u13d3\\u13e6\\u13af\\u13cd\\u13db\": 5465,\n    \"\\u2581\\u13ac\\u13e9\\u13d4\\u13f2\\u13ce\\u13b8\\u13a9\": 5466,\n    \"\\u2581\\u13a0\\u13f4\\u13d3\\u13c6\\u13b6\\u13cd\\u13a9\": 5467,\n    \"\\u2581\\u13da\\u13d8\\u13c5\\u13d2\\u13a9\": 5468,\n    \"\\u2581\\u13cd\\u13a9\\u13b7\\u13e5\\u13cf\": 5469,\n    \"\\u2581\\u13ed\\u13c5\\u13e5\\u13b4\": 5470,\n    \"\\u2581\\u13e7\\u13d5\\u13f2\\u13c5\\u13af\": 5471,\n    \"\\u2581\\u13a1\\u13e3\\u13ab\\u13f4\\u13a1\\u13d7\": 5472,\n    \"\\u2581\\u13d7\\u13d9\\u13b4\\u13c6\\u13cd\\u13d7\": 5473,\n    \"\\u2581\\u13d7\\u13e3\\u13c4\\u13ec\": 5474,\n    \"\\u2581\\u13a6\\u13b6\\u13d0\\u13c5\\u13ad\": 5475,\n    \"\\u2581\\u13cd\\u13cb\": 5476,\n    \"\\u2581\\u13a4\\u13be\\u13e4\": 5477,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13cd\\u13aa\": 5478,\n    \"\\u2581\\u13e3\\u13be\\u13a5\\u13a2\": 5479,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13f4\\u13c1\\u13b8\\u13ad\": 5480,\n    \"\\u2581\\u13d3\\u13ac\\u13a9\\u13b5\": 5481,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13e9\\u13d8\\u13ad\": 5482,\n    \"\\u2581\\u13a3\\u13d3\\u13b5\": 5483,\n    \"\\u2581\\u13d7\\u13b5\\u13d2\\u13cd\\u13d7\": 5484,\n    \"\\u2581\\u13ed\\u13c3\\u13c1\\u13b8\\u13a9\": 5485,\n    \"\\u2581\\u13e7\\u13aa\\u13b8\": 5486,\n    \"\\u2581\\u13cd\\u13a9\\u13a5\\u13cf\": 5487,\n    \"\\u2581\\u13d7\\u13a6\\u13d8\\u13b4\\u13a9\": 5488,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13ad\": 5489,\n    \"\\u2581\\u13e9\\u13cd\\u13d8\": 5490,\n    \"\\u2581\\u13d7\\u13a6\\u13b3\\u13eb\\u13a9\": 5491,\n    \"\\u2581\\u13eb\\u13a8\\u13e5\\u13ef\\u13c5\\u13db\": 5492,\n    \"\\u13f0\\u13b8\\u13cd\\u13a6\": 5493,\n    \"\\u2581\\u13d7\\u13c2\\u13e2\\u13d7\\u13f1\": 5494,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\\u13f1\": 5495,\n    \"\\u2581\\u13c5\\u13a9\\u13e6\\u13c1\": 5496,\n    \"\\u2581\\u13af\\u13b0\\u13b5\": 5497,\n    \"\\u2581\\u13c2\\u13a8\\u13f3\\u13ce\\u13cd\\u13d7\": 5498,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13d3\\u13e9\\u13d5\\u13a9\": 5499,\n    \"\\u2581\\u13c5\\u13a6\": 5500,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13c3\\u13ae\\u13b4\": 5501,\n    \"\\u2581\\u13a6\\u13c2\\u13b3\": 5502,\n    \"\\u2581\\u13a0\\u13db\\u13a9\\u13cd\\u13a8\\u13cd\\u13d7\": 5503,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13cd\\u13a8\\u13cd\\u13d7\": 5504,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d3\\u13cd\\u13a9\": 5505,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\\u13d7\\u13cd\\u13a8\": 5506,\n    \"\\u13e8\\u13ad\": 5507,\n    \"\\u2581\\u13a8\\u13e5\\u13ef\\u13c5\\u13db\": 5508,\n    \"\\u13c3\\u13af\\u13ce\\u13b2\": 5509,\n    \"\\u2581\\u13a4\\u13b5\\u13c3\\u13ae\\u13d4\\u13c5\\u13a2\": 5510,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\": 5511,\n    \"\\u2581\\u13d5\\u13a6\\u13c5\\u13cc\\u13db\": 5512,\n    \"\\u2581\\u13a2\\u13e5\\u13d4\\u13f2\": 5513,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13cd\\u13d4\\u13c5\": 5514,\n    \"\\u2581\\u13a0\\u13a9\\u13e0\\u13eb\\u13cd\": 5515,\n    \"\\u2581\\u13e5\\u13e4\\u13ad\": 5516,\n    \"\\u2581\\u13a4\\u13c2\\u13a8\\u13f3\\u13af\": 5517,\n    \"\\u2581\\u13d7\\u13c6\\u13d3\\u13c5\\u13db\": 5518,\n    \"\\u2581\\u13a1\\u13e6\\u13a2\\u13f3\\u13d2\": 5519,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13af\": 5520,\n    \"\\u2581\\u13a4\\u13a7\\u13b5\\u13e8\": 5521,\n    \"\\u2581\\u13c4\\u13b5\\u13c2\\u13ac\\u13ac\": 5522,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13b4\": 5523,\n    \"\\u2581\\u13a2\\u13a8\\u13ce\\u13a2\": 5524,\n    \"\\u2581\\u13eb\\u13da\\u13c2\\u13ef\\u13c5\\u13b2\": 5525,\n    \"\\u13d3\\u13b8\\u13db\": 5526,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13f2\\u13d2\": 5527,\n    \"\\u2581\\u13d3\\u13f0\\u13cf\": 5528,\n    \"\\u13e2\\u13d4\\u13c2\": 5529,\n    \"\\u2581\\u13a0\\u13e9\\u13be\\u13a6\\u13b3\\u13af\\u13f3\": 5530,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d2\\u13a9\": 5531,\n    \"\\u2581\\u13be\\u13c5\\u13c1\\u13ad\": 5532,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13e4\\u13d7\\u13f1\": 5533,\n    \"\\u2581\\u13f0\\u13b5\\u13a6\\u13ef\": 5534,\n    \"\\u2581\\u13c4\\u13e9\\u13c2\\u13cc\\u13c5\": 5535,\n    \"\\u13d2\\u13be\\u13d4\\u13c5\": 5536,\n    \"\\u2581\\u13e3\\u13f0\\u13af\": 5537,\n    \"\\u2581\\u13d5\\u13be\\u13d3\\u13aa\\u13b2\\u13f3\": 5538,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\\u13b8\\u13a9\": 5539,\n    \"\\u2581\\u13af\\u13cd\\u13a9\\u13cd\\u13aa\\u13af\": 5540,\n    \"\\u2581\\u13d7\\u13a6\\u13da\\u13b2\\u13cd\\u13a9\": 5541,\n    \"\\u2581\\u13a0\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\": 5542,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\\u13a9\": 5543,\n    \"\\u2581\\u13a4\\u13d5\\u13b0\\u13af\\u13cd\\u13d7\\u13f3\": 5544,\n    \"\\u2581\\u13a2\\u13ef\\u13c5\\u13c1\\u13af\": 5545,\n    \"\\u2581\\u13e3\\u13d3\\u13c5\\u13d6\\u13cd\\u13d7\": 5546,\n    \"\\u2581\\u13be\\u13a6\\u13b8\\u13b3\\u13d7\": 5547,\n    \"\\u2581\\u13af\\u13b7\\u13a6\": 5548,\n    \"\\u2581\\u13ef\\u13c3\\u13c9\": 5549,\n    \"\\u13b7\\u13ac\": 5550,\n    \"\\u2581\\u13e5\\u13cd\\u13a6\\u13c5\\u13e4\\u13b8\": 5551,\n    \"\\u2581\\u13a4\\u13c1\\u13d9\\u13b8\\u13af\": 5552,\n    \"\\u2581\\u13e3\\u13da\\u13b5\\u13cd\\u13aa\": 5553,\n    \"\\u2581\\u13a6\\u13d3\\u13a5\": 5554,\n    \"\\u2581\\u13ac\\u13e9\\u13aa\\u13ae\\u13a2\": 5555,\n    \"\\u2581\\u13bf\\u13db\\u13c1\\u13b2\": 5556,\n    \"\\u13da\\u13b8\\u13c5\\u13a5\\u13cd\\u13ac\": 5557,\n    \"\\u2581\\u13a4\\u13cd\\u13c9\\u13b5\\u13f1\": 5558,\n    \"\\u13b9\\u13c2\": 5559,\n    \"\\u2581\\u13a4\\u13d3\\u13d4\\u13c5\": 5560,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13cd\\u13d7\\u13f1\": 5561,\n    \"\\u2581\\u13a1\\u13c8\": 5562,\n    \"\\u2581\\u13a3\\u13e4\\u13af\": 5563,\n    \"\\u2581\\u13da\\u13be\\u13b4\\u13c5\\u13a9\": 5564,\n    \"\\u13c5\\u13d3\\u13db\\u13a9\": 5565,\n    \"\\u2581\\u13a0\\u13a6\\u13db\\u13c5\\u13af\": 5566,\n    \"\\u13a3\\u13cf\\u13c9\": 5567,\n    \"\\u2581\\u13d5\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 5568,\n    \"\\u2581\\u13d3\\u13a9\\u13cf\\u13b3\\u13db\\u13a2\": 5569,\n    \"\\u2581\\u13da\\u13ec\\u13e2\\u13c1\\u13a2\": 5570,\n    \"\\u2581\\u13e7\\u13d1\\u13f0\\u13db\": 5571,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13ce\\u13a2\": 5572,\n    \"\\u2581\\u13d7\\u13ac\\u13d4\\u13c5\\u13af\": 5573,\n    \"\\u2581\\u13a2\\u13a6\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 5574,\n    \"\\u13c1\\u13c5\\u13cd\\u13d7\\u13f1\": 5575,\n    \"\\u13c2\\u13c3\\u13c1\\u13b4\": 5576,\n    \"\\u2581\\u13a4\\u13b3\\u13cf\\u13d5\\u13c2\": 5577,\n    \"\\u2581\\u13aa\\u13b5\\u13cd\\u13d7\\u13f1\": 5578,\n    \"\\u2581\\u13a2\\u13a8\\u13e8\\u13c1\\u13d7\": 5579,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13c1\\u13a2\": 5580,\n    \"\\u2581\\u13be\\u13c6\\u13cd\\u13d7\": 5581,\n    \"\\u2581\\u13a0\\u13c7\\u13b7\\u13c5\": 5582,\n    \"\\u2581\\u13a0\\u13ef\\u13eb\\u13cd\\u13a9\": 5583,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13b2\": 5584,\n    \"\\u2581\\u13d3\\u13f0\\u13c2\": 5585,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13b8\": 5586,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13cd\\u13a9\": 5587,\n    \"\\u2581\\u13a4\\u13b8\\u13c1\\u13a2\": 5588,\n    \"\\u2581\\u13e7\\u13c1\\u13b6\\u13d7\": 5589,\n    \"\\u2581\\u13a0\\u13c7\\u13c5\\u13d2\\u13a9\": 5590,\n    \"\\u2581\\u13e6\\u13cd\\u13db\": 5591,\n    \"\\u2581\\u13e6\\u13b4\\u13cd\\u13d7\": 5592,\n    \"\\u2581\\u13f4\\u13a8\\u13e8\": 5593,\n    \"\\u2581\\u13c2\\u13da\\u13c2\\u13ea\\u13ce\\u13b4\\u13a2\": 5594,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13ad\": 5595,\n    \"\\u13bf\\u13b7\\u13d2\": 5596,\n    \"\\u13a6\\u13c1\\u13b3\\u13c5\\u13af\": 5597,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13cd\\u13d7\": 5598,\n    \"\\u2581\\u13ea\\u13af\": 5599,\n    \"\\u2581\\u13f1\\u13cd\\u13c6\": 5600,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\": 5601,\n    \"\\u2581\\u13d5\\u13a4\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 5602,\n    \"\\u2581\\u13b2\\u13c5\\u13a2\": 5603,\n    \"\\u2581\\u13d3\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\\u13a2\": 5604,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 5605,\n    \"\\u2581\\u13d3\\u13d8\\u13c1\\u13b2\\u13a2\": 5606,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ae\": 5607,\n    \"\\u13a7\\u13b5\\u13a2\\u13cd\\u13d7\\u13f1\": 5608,\n    \"\\u2581\\u13a0\\u13d3\\u13b4\\u13d2\\u13a2\": 5609,\n    \"\\u2581\\u13a4\\u13ab\\u13f4\\u13a1\\u13d7\": 5610,\n    \"\\u2581\\u13a4\\u13c1\\u13d3\\u13cd\\u13d7\\u13f1\": 5611,\n    \"\\u2581\\u13da\\u13d3\\u13d8\\u13bf\\u13a5\\u13a2\": 5612,\n    \"\\u2581\\u13ea\\u13d9\\u13ae\": 5613,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13a1\\u13b4\\u13a2\": 5614,\n    \"\\u2581\\u13a0\\u13a7\\u13d8\": 5615,\n    \"\\u2581\\u13d5\\u13a6\\u13ec\\u13c1\\u13d7\\u13cd\\u13ac\\u13a9\": 5616,\n    \"\\u2581\\u13a8\\u13b3\\u13cd\\u13d9\\u13d7\": 5617,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13ac\\u13a9\": 5618,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13e3\\u13cd\\u13da\\u13b6\\u13a9\": 5619,\n    \"\\u2581\\u13a0\\u13f0\\u13b8\\u13d2\\u13a9\": 5620,\n    \"\\u13db\\u13d7\\u13cd\\u13aa\\u13a2\": 5621,\n    \"\\u2581\\u13a4\\u13da\\u13b5\\u13ad\": 5622,\n    \"\\u13a6\\u13c2\\u13cc\\u13b2\": 5623,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13c5\\u13a9\": 5624,\n    \"\\u2581\\u13e7\\u13a7\": 5625,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13a2\\u13cd\\u13d4\\u13c5\": 5626,\n    \"\\u13a6\\u13cc\\u13b4\": 5627,\n    \"\\u2581\\u13d3\\u13bb\": 5628,\n    \"\\u13c6\\u13e0\": 5629,\n    \"\\u2581\\u13a8\\u13cd\\u13d3\": 5630,\n    \"\\u13f0\\u13f2\\u13b2\\u13cd\\u13a9\": 5631,\n    \"\\u13c3\\u13af\\u13ce\\u13d7\": 5632,\n    \"\\u2581\\u13d7\\u13cd\\u13d3\\u13f1\": 5633,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13a2\\u13ae\\u13a2\": 5634,\n    \"\\u2581\\u13da\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 5635,\n    \"\\u2581\\u13a0\\u13c1\\u13b5\\u13cd\\u13aa\": 5636,\n    \"\\u13d9\\u13f1\": 5637,\n    \"\\u2581\\u13a4\\u13b5\\u13ae\\u13b5\\u13e8\\u13af\": 5638,\n    \"\\u13e0\\u13af\\u13cd\\u13d3\": 5639,\n    \"\\u2581\\u13e5\\u13ef\\u13a5\\u13a2\": 5640,\n    \"\\u2581\\u13a1\\u13b6\\u13d7\\u13cf\": 5641,\n    \"\\u2581\\u13d1\\u13df\\u13b6\\u13db\\u13c9\": 5642,\n    \"\\u13a8\\u13f3\\u13c5\\u13be\": 5643,\n    \"\\u2581\\u13da\\u13c2\\u13cd\\u13d8\\u13f0\\u13ac\": 5644,\n    \"\\u2581\\u13c2\\u13d3\\u13db\\u13c1\\u13b2\": 5645,\n    \"\\u2581\\u13e5\\u13aa\\u13a5\\u13a9\": 5646,\n    \"\\u2581\\u13e7\\u13b4\\u13af\\u13d0\\u13d7\": 5647,\n    \"\\u2581\\u13d5\\u13e8\\u13c5\": 5648,\n    \"\\u2581\\u13c4\\u13d5\\u13d8\\u13f4\\u13b2\": 5649,\n    \"\\u2581\\u13a4\\u13d2\\u13c2\\u13b4\\u13a2\": 5650,\n    \"\\u2581\\u13a4\\u13c3\\u13db\": 5651,\n    \"\\u2581\\u13cc\\u13be\": 5652,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13f4\\u13ae\": 5653,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13cd\\u13ac\\u13a2\": 5654,\n    \"\\u2581\\u13a6\\u13d3\\u13cd\\u13ac\": 5655,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13cf\": 5656,\n    \"\\u2581\\u13c1\\u13e8\\u13c1\\u13b8\": 5657,\n    \"\\u2581\\u13da\\u13c2\\u13cf\\u13c2\\u13d9\\u13b8\": 5658,\n    \"\\u2581\\u13a6\\u13f0\\u13e5\\u13d0\\u13e2\": 5659,\n    \"\\u2581\\u13c2\\u13d5\\u13e8\\u13c1\\u13b8\": 5660,\n    \"\\u13e3\\u13c9\\u13af\": 5661,\n    \"\\u2581\\u13da\\u13ef\\u13ea\": 5662,\n    \"\\u2581\\u13e6\\u13e8\": 5663,\n    \"\\u2581\\u13a8\\u13e5\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 5664,\n    \"\\u13f3\\u13d3\\u13b4\\u13cf\": 5665,\n    \"\\u13d3\\u13c2\\u13a7\\u13bf\\u13e9\\u13d5\": 5666,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\": 5667,\n    \"\\u2581\\u13c5\\u13d4\": 5668,\n    \"\\u2581\\u13a4\\u13ea\\u13f4\\u13a2\": 5669,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13c5\\u13a9\": 5670,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c2\": 5671,\n    \"\\u2581\\u13b5\\u13f3\": 5672,\n    \"\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 5673,\n    \"\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\": 5674,\n    \"\\u2581\\u13a4\\u13c2\\u13c5\\u13c5\": 5675,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b4\\u13a2\": 5676,\n    \"\\u2581\\u13a2\\u13cd\\u13a9\": 5677,\n    \"\\u2581\\u13a0\\u13b4\\u13c2\\u13cd\\u13ac\": 5678,\n    \"\\u2581\\u13a0\\u13c1\\u13b5\\u13cd\\u13ac\\u13a9\": 5679,\n    \"\\u13c1\\u13a9\\u13ce\\u13a2\": 5680,\n    \"\\u13f2\\u13b5\\u13b8\": 5681,\n    \"\\u13d9\\u13b2\": 5682,\n    \"\\u2581\\u13c2\\u13a8\\u13ce\\u13a2\": 5683,\n    \"\\u2581\\u13a1\\u13b5\\u13cd\\u13ac\\u13a2\": 5684,\n    \"\\u13d3\\u13c1\\u13b2\": 5685,\n    \"\\u2581\\u13d3\\u13c2\\u13a7\\u13c5\\u13a2\": 5686,\n    \"\\u2581\\u13a0\\u13c2\\u13d9\\u13be\\u13a1\\u13a2\": 5687,\n    \"\\u2581\\u13d3\\u13c2\\u13b3\\u13eb\\u13a5\\u13a2\": 5688,\n    \"\\u2581\\u13be\\u13cb\": 5689,\n    \"\\u2581\\u13c2\\u13da\\u13ea\\u13ce\\u13b8\\u13a2\": 5690,\n    \"\\u13c2\\u13b7\\u13e5\": 5691,\n    \"\\u2581\\u13a2\\u13e3\\u13d5\\u13b6\\u13c6\": 5692,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b8\\u13be\": 5693,\n    \"\\u2581\\u13a4\\u13db\\u13a6\": 5694,\n    \"\\u2581\\u13a4\\u13a9\\u13ce\": 5695,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\\u13ae\": 5696,\n    \"\\u2581\\u13af\\u13a9\": 5697,\n    \"\\u2581\\u13a1\\u13b3\\u13ea\\u13c9\": 5698,\n    \"\\u2581\\u13e3\\u13a9\\u13cd\\u13d7\": 5699,\n    \"\\u2581\\u13d7\\u13a6\\u13d9\\u13d7\": 5700,\n    \"\\u2581\\u13da\\u13f2\\u13af\\u13ce\\u13b4\": 5701,\n    \"\\u2581\\u13e7\\u13ec\\u13b8\\u13a2\": 5702,\n    \"\\u2581\\u13be\\u13c9\\u13af\\u13f3\": 5703,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13af\": 5704,\n    \"\\u13a6\\u13d9\\u13a5\\u13d2\\u13af\": 5705,\n    \"\\u2581\\u13e5\\u13d5\\u13ad\": 5706,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\\u13b4\": 5707,\n    \"\\u2581\\u13e3\\u13aa\\u13e9\\u13d8\\u13cd\\u13aa\": 5708,\n    \"\\u13b3\\u13c5\\u13db\": 5709,\n    \"\\u2581\\u13e5\\u13f0\": 5710,\n    \"\\u2581\\u13a4\\u13cd\": 5711,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13ce\\u13b8\": 5712,\n    \"\\u2581\\u13a0\\u13da\\u13a2\\u13cd\\u13db\\u13a2\": 5713,\n    \"\\u13ea\\u13b3\": 5714,\n    \"\\u2581\\u13df\\u13d7\": 5715,\n    \"\\u13af\\u13c9\": 5716,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\": 5717,\n    \"\\u2581\\u13e9\\u13be\\u13a2\\u13d2\": 5718,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13ad\": 5719,\n    \"\\u2581\\u13a4\\u13d5\\u13d7\": 5720,\n    \"\\u13a6\\u13cd\\u13a6\\u13c2\\u13d7\\u13e2\": 5721,\n    \"\\u13cd\\u13d5\\u13b8\": 5722,\n    \"\\u2581\\u13eb\\u13ef\": 5723,\n    \"\\u2581\\u13d7\\u13a6\\u13d8\\u13ef\": 5724,\n    \"\\u2581\\u13a6\\u13c1\\u13b2\\u13a9\": 5725,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\": 5726,\n    \"\\u2581\\u13a4\\u13e2\\u13d7\": 5727,\n    \"\\u2581\\u13a0\\u13c2\\u13d9\\u13be\\u13a5\\u13a9\": 5728,\n    \"\\u2581\\u13e3\\u13c9\\u13a9\": 5729,\n    \"\\u13b4\\u13c2\\u13d3\\u13cd\\u13d7\": 5730,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13aa\": 5731,\n    \"\\u13d3\\u13b4\\u13c5\\u13af\": 5732,\n    \"\\u2581\\u13da\\u13c5\\u13ce\\u13a2\": 5733,\n    \"\\u2581\\u13f1\\u13d7\\u13d3\": 5734,\n    \"\\u13d7\\u13d4\\u13af\": 5735,\n    \"\\u13d4\\u13b3\\u13ec\\u13af\\u13cd\\u13d7\": 5736,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c1\\u13b8\\u13a2\": 5737,\n    \"\\u13c6\\u13b3\": 5738,\n    \"\\u2581\\u13da\\u13be\\u13b5\": 5739,\n    \"\\u13f2\\u13a6\\u13db\\u13c5\": 5740,\n    \"\\u2581\\u13a4\\u13e9\\u13a8\\u13eb\\u13ce\": 5741,\n    \"\\u2581\\u13ea\\u13e5\": 5742,\n    \"\\u13c5\\u13d3\\u13d7\\u13cd\\u13ac\": 5743,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a8\\u13cd\\u13d7\": 5744,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 5745,\n    \"\\u13da\\u13aa\\u13d3\\u13c1\\u13d7\": 5746,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13b8\": 5747,\n    \"\\u2581\\u13a0\\u13c2\\u13b5\": 5748,\n    \"\\u2581\\u13a6\\u13c5\\u13ac\\u13a2\": 5749,\n    \"\\u2581\\u13ac\\u13e9\\u13b7\\u13e4\\u13ae\": 5750,\n    \"\\u2581\\u13a2\\u13e7\\u13d3\\u13b4\": 5751,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13e8\\u13c3\": 5752,\n    \"\\u13e4\\u13af\": 5753,\n    \"\\u2581\\u13a4\\u13b6\\u13d7\": 5754,\n    \"\\u2581\\u13c7\\u13b5\": 5755,\n    \"\\u2581\\u13a0\\u13d7\\u13cd\\u13a8\": 5756,\n    \"\\u13c3\\u13ae\\u13ae\\u13b8\": 5757,\n    \"\\u13c5\\u13a1\\u13b5\": 5758,\n    \"\\u13a6\\u13cd\\u13d9\\u13d7\": 5759,\n    \"\\u13cd\\u13d3\\u13c1\\u13b8\\u13af\": 5760,\n    \"\\u2581\\u13a4\\u13c5\\u13cf\\u13db\": 5761,\n    \"\\u13c1\\u13b5\\u13cd\\u13ac\": 5762,\n    \"\\u2581\\u13a4\\u13b7\\u13e4\\u13b8\": 5763,\n    \"\\u2581\\u13f1\\u13d9\\u13a8\": 5764,\n    \"\\u2581\\u13a4\\u13ea\\u13b7\\u13ac\": 5765,\n    \"\\u13e5\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\": 5766,\n    \"\\u13c5\\u13d7\\u13cd\\u13aa\": 5767,\n    \"\\u2581\\u13a7\\u13c1\": 5768,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13a6\\u13c5\\u13e8\": 5769,\n    \"\\u2581\\u13ee\\u13d3\\u13f2\": 5770,\n    \"\\u13c6\\u13d3\": 5771,\n    \"\\u2581\\u13e8\\u13cd\\u13a9\\u13c3\\u13a2\": 5772,\n    \"\\u2581\\u13f1\\u13d7\\u13d7\": 5773,\n    \"\\u2581\\u13a0\\u13c6\\u13a7\\u13db\\u13a2\": 5774,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13cd\\u13d7\": 5775,\n    \"\\u2581\\u13a4\\u13ea\\u13af\": 5776,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13d6\\u13f0\\u13c3\": 5777,\n    \"\\u2581\\u13a4\\u13f0\\u13e4\\u13a2\": 5778,\n    \"\\u13e3\\u13d8\\u13c3\\u13b5\": 5779,\n    \"\\u2581\\u13a4\\u13c3\\u13e2\\u13d7\": 5780,\n    \"\\u2581\\u13ef\\u13db\": 5781,\n    \"\\u2581\\u13e5\\u13a6\\u13b6\": 5782,\n    \"\\u2581\\u13eb\\u13d3\\u13a6\": 5783,\n    \"\\u2581\\u13a6\\u13c1\\u13b2\\u13a2\": 5784,\n    \"\\u13d3\\u13c5\\u13af\\u13d3\": 5785,\n    \"\\u2581\\u13a0\\u13f0\\u13d9\\u13b3\\u13db\\u13a2\": 5786,\n    \"\\u2581\\u13da\\u13b4\\u13c5\\u13a9\": 5787,\n    \"\\u13f4\\u13cd\\u13d7\\u13f1\": 5788,\n    \"\\u13c5\\u13a2\\u13cd\\u13d7\\u13f1\": 5789,\n    \"\\u2581\\u13a4\\u13c1\\u13c5\\u13ce\\u13a2\": 5790,\n    \"\\u13e5\\u13b6\\u13cd\\u13d4\\u13c5\": 5791,\n    \"\\u13a9\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 5792,\n    \"\\u13e3\\u13db\\u13c2\\u13cf\": 5793,\n    \"\\u2581\\u13a2\\u13e8\\u13f4\": 5794,\n    \"\\u2581\\u13a6\\u13b6\\u13cd\\u13ac\": 5795,\n    \"\\u13b4\\u13eb\\u13cd\\u13d4\\u13be\": 5796,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13c1\": 5797,\n    \"\\u2581\\u13e7\\u13b3\": 5798,\n    \"\\u2581\\u13d7\\u13b5\": 5799,\n    \"\\u2581\\u13a4\\u13f4\\u13cd\\u13d7\\u13f1\": 5800,\n    \"\\u2581\\u13d7\\u13e6\\u13b8\": 5801,\n    \"\\u13b5\\u13c2\\u13a9\\u13db\": 5802,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13ac\\u13a9\": 5803,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d5\": 5804,\n    \"\\u13b7\\u13e4\\u13b8\\u13a9\": 5805,\n    \"\\u2581\\u13d3\\u13ef\": 5806,\n    \"\\u2581\\u13a4\\u13c1\\u13e4\\u13b8\\u13af\": 5807,\n    \"\\u2581\\u13a4\\u13af\\u13cd\\u13d7\\u13f1\": 5808,\n    \"\\u2581\\u13e7\\u13ea\\u13c5\\u13d2\\u13a2\": 5809,\n    \"\\u2581\\u13a4\\u13c3\\u13f4\\u13ac\\u13a2\": 5810,\n    \"\\u2581\\u13f3\\u13c2\\u13f0\\u13b8\": 5811,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\": 5812,\n    \"\\u2581\\u13a4\\u13c2\\u13b2\\u13a2\": 5813,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13b8\": 5814,\n    \"\\u2581\\u13f3\\u13b3\": 5815,\n    \"\\u13ef\\u13a9\\u13cd\\u13d7\": 5816,\n    \"\\u2581\\u13da\\u13ed\\u13e2\": 5817,\n    \"\\u2581\\u13a4\\u13d5\\u13c5\\u13a2\": 5818,\n    \"\\u2581\\u13d5\\u13a6\\u13c1\\u13b2\": 5819,\n    \"\\u2581\\u13a4\\u13c3\\u13e2\": 5820,\n    \"\\u2581\\u13a6\\u13aa\\u13a8\": 5821,\n    \"\\u13db\\u13c3\": 5822,\n    \"\\u2581\\u13a0\\u13a6\\u13db\\u13c5\": 5823,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13c5\\u13c3\": 5824,\n    \"\\u2581\\u13a2\\u13a6\\u13db\\u13cd\\u13a9\\u13c2\": 5825,\n    \"\\u2581\\u13a2\\u13a9\\u13f4\\u13c1\\u13d7\": 5826,\n    \"\\u13d2\\u13cd\\u13d7\": 5827,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13c2\\u13cd\\u13ac\\u13a2\": 5828,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d4\\u13c5\": 5829,\n    \"\\u2581\\u13a0\\u13a2\\u13d2\\u13c3\": 5830,\n    \"\\u2581\\u13d7\\u13a6\\u13a6\": 5831,\n    \"\\u2581\\u13a8\\u13e5\\u13c1\\u13e4\\u13b8\": 5832,\n    \"\\u13cd\\u13a6\\u13b3\\u13c1\": 5833,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13db\": 5834,\n    \"\\u2581\\u13a6\\u13c5\\u13a6\": 5835,\n    \"\\u13b5\\u13c2\\u13a9\\u13d7\\u13f3\": 5836,\n    \"\\u2581\\u13e9\\u13e5\": 5837,\n    \"\\u2581\\u13a8\\u13c6\": 5838,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13b5\\u13e5\\u13d9\\u13c1\\u13b8\": 5839,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13d8\\u13f0\\u13c3\": 5840,\n    \"\\u2581\\u13da\\u13c2\\u13a9\\u13d2\": 5841,\n    \"\\u2581\\u13a4\\u13d5\\u13d8\\u13f4\\u13cc\\u13d7\\u13d2\\u13a2\": 5842,\n    \"\\u13a0\\u13e4\": 5843,\n    \"\\u2581\\u13d5\\u13a4\\u13d9\\u13a5\\u13a2\": 5844,\n    \"\\u2581\\u13ae\\u13b5\\u13cd\\u13ac\": 5845,\n    \"\\u13f4\\u13ae\": 5846,\n    \"\\u2581\\u13a8\\u13a5\": 5847,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13db\": 5848,\n    \"\\u13e8\\u13a2\": 5849,\n    \"\\u2581\\u13cf\\u13bb\\u13ef\\u13c2\\u13c3\": 5850,\n    \"\\u2581\\u13a3\\u13c2\\u13a6\": 5851,\n    \"\\u13a7\\u13d4\\u13ad\": 5852,\n    \"\\u2581\\u13a4\\u13f2\\u13af\": 5853,\n    \"\\u13f4\\u13d9\\u13d7\\u13f1\": 5854,\n    \"\\u2581\\u13a4\\u13d9\\u13e2\\u13d2\": 5855,\n    \"\\u13cc\\u13a5\": 5856,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13e8\\u13c3\": 5857,\n    \"\\u13da\\u13a7\\u13be\\u13c5\": 5858,\n    \"\\u13f4\\u13af\\u13ae\\u13cd\\u13d7\": 5859,\n    \"\\u13b3\\u13c5\": 5860,\n    \"\\u13e5\\u13ef\\u13c5\\u13d7\": 5861,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c3\\u13f4\\u13b5\\u13cd\": 5862,\n    \"\\u2581\\u13d7\\u13cd\\u13db\": 5863,\n    \"\\u13f3\\u13e9\\u13c5\": 5864,\n    \"\\u13d3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 5865,\n    \"\\u13a6\\u13d6\\u13c3\\u13b2\": 5866,\n    \"\\u13df\\u13b6\": 5867,\n    \"\\u2581\\u13a4\\u13da\\u13b5\": 5868,\n    \"\\u13e5\\u13d0\\u13c5\\u13c5\": 5869,\n    \"\\u13cf\\u13b8\": 5870,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d6\\u13b8\": 5871,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 5872,\n    \"\\u13f4\\u13a2\": 5873,\n    \"\\u2581\\u13f1\\u13da\\u13be\": 5874,\n    \"\\u13aa\\u13b2\\u13a9\": 5875,\n    \"\\u13f2\\u13af\\u13ce\\u13b8\\u13af\": 5876,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13d2\\u13a9\": 5877,\n    \"\\u13e5\\u13cd\\u13a6\\u13e8\\u13af\": 5878,\n    \"\\u13b8\\u13ce\": 5879,\n    \"\\u13b5\\u13b8\": 5880,\n    \"\\u2581\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\\u13a8\": 5881,\n    \"\\u13c1\\u13df\\u13f4\\u13db\": 5882,\n    \"\\u2581\\u13a4\\u13c1\\u13d7\": 5883,\n    \"\\u13cd\\u13db\\u13a9\": 5884,\n    \"\\u2581\\u13e5\\u13e9\": 5885,\n    \"\\u2581\\u13a2\\u13a9\\u13db\": 5886,\n    \"\\u2581\\u13a2\\u13f3\\u13d3\\u13b5\": 5887,\n    \"\\u13aa\\u13e9\\u13d8\\u13cd\\u13aa\": 5888,\n    \"\\u13b0\\u13c5\": 5889,\n    \"\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 5890,\n    \"\\u13cf\\u13f1\": 5891,\n    \"\\u13d5\\u13ad\": 5892,\n    \"\\u13e3\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 5893,\n    \"\\u13b2\\u13d2\": 5894,\n    \"\\u2581\\u13a4\\u13c3\\u13ae\\u13d7\": 5895,\n    \"\\u2581\\u13a6\\u13c5\\u13a2\": 5896,\n    \"\\u13d5\\u13b6\\u13c6\\u13cd\\u13d7\": 5897,\n    \"\\u2581\\u13a0\\u13a9\\u13e2\": 5898,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13ac\\u13a2\": 5899,\n    \"\\u13be\\u13a5\\u13a2\": 5900,\n    \"\\u13e4\\u13ae\": 5901,\n    \"\\u2581\\u13e7\\u13be\\u13d9\": 5902,\n    \"\\u13be\\u13f0\\u13cd\\u13a8\\u13cd\\u13d7\": 5903,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\": 5904,\n    \"\\u2581\\u13a6\\u13b8\\u13b3\\u13d7\\u13a8\": 5905,\n    \"\\u13d4\\u13c2\\u13d3\\u13cd\\u13d7\": 5906,\n    \"\\u13cd\\u13a6\\u13be\\u13af\\u13f3\": 5907,\n    \"\\u13c4\\u13ec\": 5908,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\\u13d7\": 5909,\n    \"\\u13e9\\u13db\\u13d7\\u13f1\": 5910,\n    \"\\u2581\\u13d5\\u13e3\\u13c2\\u13f4\": 5911,\n    \"\\u2581\\u13d3\\u13e5\\u13e9\\u13db\\u13af\": 5912,\n    \"\\u2581\\u13a3\\u13cd\\u13d5\": 5913,\n    \"\\u2581\\u13e3\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\": 5914,\n    \"\\u13a6\\u13d3\\u13ad\": 5915,\n    \"\\u2581\\u13da\\u13c2\\u13ac\": 5916,\n    \"\\u2581\\u13a4\\u13ea\\u13b7\": 5917,\n    \"\\u13e5\\u13b6\\u13cd\\u13d7\": 5918,\n    \"\\u2581\\u13a0\\u13d0\": 5919,\n    \"\\u2581\\u13ac\\u13d3\": 5920,\n    \"\\u13db\\u13a6\\u13c1\\u13b0\\u13a2\": 5921,\n    \"\\u13d2\\u13f0\\u13c3\": 5922,\n    \"\\u13c2\\u13ea\\u13cf\": 5923,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\": 5924,\n    \"\\u13c5\\u13d7\\u13f1\": 5925,\n    \"\\u13a9\\u13cd\\u13d9\\u13d7\": 5926,\n    \"\\u2581\\u13da\\u13e9\": 5927,\n    \"\\u13b2\\u13cd\\u13ac\\u13a2\": 5928,\n    \"\\u13e2\\u13c8\\u13cd\\u13d7\\u13f1\": 5929,\n    \"\\u2581\\u13d5\\u13e5\\u13a7\": 5930,\n    \"\\u13af\\u13f0\": 5931,\n    \"\\u13db\\u13c5\\u13af\": 5932,\n    \"\\u13c2\\u13a6\": 5933,\n    \"\\u13c1\\u13ea\\u13ce\\u13a2\": 5934,\n    \"\\u2581\\u13a2\\u13e5\\u13f4\": 5935,\n    \"\\u2581\\u13e6\\u13a8\": 5936,\n    \"\\u13be\\u13d3\": 5937,\n    \"\\u13a8\\u13f4\": 5938,\n    \"\\u13d8\\u13cd\\u13ac\": 5939,\n    \"\\u2581\\u13a4\\u13c2\\u13c5\\u13c1\": 5940,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13b8\\u13b2\": 5941,\n    \"\\u2581\\u13e7\\u13c3\\u13e2\": 5942,\n    \"\\u13aa\\u13cd\\u13ac\": 5943,\n    \"\\u13a6\\u13d8\\u13b4\\u13a9\": 5944,\n    \"\\u13a2\\u13e3\": 5945,\n    \"\\u2581\\u13e7\\u13c2\\u13f0\\u13b8\": 5946,\n    \"\\u13c2\\u13cf\\u13c5\\u13af\": 5947,\n    \"\\u13d7\\u13d7\\u13f1\": 5948,\n    \"\\u2581\\u13a4\\u13aa\\u13b2\\u13a2\": 5949,\n    \"\\u2581\\u13a2\\u13ad\": 5950,\n    \"\\u2581\\u13d7\\u13a7\\u13be\": 5951,\n    \"\\u2581\\u13d5\\u13e4\": 5952,\n    \"\\u2581\\u13da\\u13f2\\u13af\\u13ce\\u13b8\": 5953,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13ce\": 5954,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e4\\u13b4\": 5955,\n    \"\\u2581\\u13aa\\u13b1\": 5956,\n    \"\\u2581\\u13d7\\u13c5\\u13c2\": 5957,\n    \"\\u13be\\u13d5\\u13d8\\u13f4\\u13db\": 5958,\n    \"\\u13c5\\u13af\\u13d2\": 5959,\n    \"\\u2581\\u13f1\\u13d9\\u13e5\": 5960,\n    \"\\u13d3\\u13c1\\u13b8\\u13a9\": 5961,\n    \"\\u13a7\\u13ad\": 5962,\n    \"\\u13d3\\u13ef\\u13c2\\u13cd\\u13aa\": 5963,\n    \"\\u2581\\u13a8\\u13be\": 5964,\n    \"\\u13c5\\u13d2\\u13be\": 5965,\n    \"\\u13c1\\u13e4\\u13b8\\u13ad\": 5966,\n    \"\\u13f2\\u13ae\\u13a2\": 5967,\n    \"\\u2581\\u13d7\\u13e5\\u13f2\\u13af\\u13cd\\u13d7\": 5968,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13b4\\u13c5\": 5969,\n    \"\\u13c1\\u13a9\": 5970,\n    \"\\u13c3\\u13af\\u13cd\\u13d7\": 5971,\n    \"\\u13a8\\u13f3\\u13ad\": 5972,\n    \"\\u13b6\\u13c3\": 5973,\n    \"\\u13c5\\u13c1\\u13d7\\u13f1\": 5974,\n    \"\\u13ce\\u13b4\\u13a2\": 5975,\n    \"\\u13b5\\u13d9\\u13ae\": 5976,\n    \"\\u2581\\u13ac\\u13db\\u13aa\": 5977,\n    \"\\u2581\\u13cd\\u13a9\\u13c9\": 5978,\n    \"\\u13a9\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c5\": 5979,\n    \"\\u13d3\\u13c1\\u13b4\": 5980,\n    \"\\u13c6\\u13df\": 5981,\n    \"\\u13e7\\u13ac\": 5982,\n    \"\\u2581\\u13a4\\u13a6\\u13d9\\u13cd\\u13d5\": 5983,\n    \"\\u13b5\\u13e6\\u13db\": 5984,\n    \"\\u2581\\u13a8\\u13aa\\u13ce\": 5985,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\\u13f1\\u13db\": 5986,\n    \"\\u2581\\u13a0\\u13c2\\u13eb\\u13be\\u13a8\": 5987,\n    \"\\u13a8\\u13e9\": 5988,\n    \"\\u2581\\u13eb\\u13d9\": 5989,\n    \"\\u13d1\\u13b6\": 5990,\n    \"\\u2581\\u13f1\\u13da\\u13f3\\u13aa\": 5991,\n    \"\\u2581\\u13f1\\u13c5\": 5992,\n    \"\\u2581\\u13e5\\u13b6\": 5993,\n    \"\\u13d3\\u13f4\\u13ce\": 5994,\n    \"\\u13be\\u13b2\": 5995,\n    \"\\u13a6\\u13db\\u13c1\": 5996,\n    \"\\u13a2\\u13cd\\u13d4\\u13c5\": 5997,\n    \"\\u2581\\u13a8\\u13db\": 5998,\n    \"\\u13c2\\u13cf\\u13cd\\u13a8\\u13cd\\u13d7\": 5999,\n    \"\\u2581\\u13e6\\u13a0\": 6000,\n    \"\\u2581\\u13a6\\u13d9\\u13a8\\u13c3\": 6001,\n    \"\\u2581\\u13d6\": 6002,\n    \"\\u2581\\u13c5\\u13e9\\u13be\\u13d3\\u13b4\\u13a2\": 6003,\n    \"\\u2581\\u13a1\\u13c9\": 6004,\n    \"\\u13b4\\u13d9\\u13d7\": 6005,\n    \"\\u2581\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\\u13f3\": 6006,\n    \"\\u2581\\u13a2\\u13e6\\u13b5\\u13cd\": 6007,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13cd\\u13a8\": 6008,\n    \"\\u13c2\\u13a9\\u13d3\": 6009,\n    \"\\u13d3\\u13c5\\u13db\\u13b5\": 6010,\n    \"\\u13e3\\u13a6\\u13cc\\u13ef\\u13cd\\u13d7\\u13d5\\u13a9\": 6011,\n    \"\\u2581\\u13a4\\u13ae\\u13cd\\u13d7\": 6012,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13db\": 6013,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13ae\\u13b5\": 6014,\n    \"\\u2581\\u13a4\\u13b8\\u13a2\": 6015,\n    \"\\u2581\\u13f1\\u13d8\": 6016,\n    \"\\u13d7\\u13cd\\u13ac\\u13a9\": 6017,\n    \"\\u2581\\u13a0\\u13e5\\u13c5\": 6018,\n    \"\\u2581\\u13a7\\u13c3\": 6019,\n    \"\\u2581\\u13cd\\u13a9\\u13cd\\u13d3\\u13e9\\u13d5\": 6020,\n    \"\\u13cc\\u13b3\\u13d3\\u13c5\": 6021,\n    \"\\u13a7\\u13b5\\u13ce\": 6022,\n    \"\\u2581\\u13eb\\u13cd\\u13d7\": 6023,\n    \"\\u13e9\\u13db\\u13af\\u13d9\": 6024,\n    \"\\u13cd\\u13d3\\u13c1\\u13b8\": 6025,\n    \"\\u2581\\u13a6\\u13d9\\u13a6\": 6026,\n    \"\\u13b5\\u13ce\": 6027,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13aa\\u13ce\": 6028,\n    \"\\u13ce\\u13c3\": 6029,\n    \"\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\": 6030,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\": 6031,\n    \"\\u2581\\u13a1\\u13e5\\u13c1\": 6032,\n    \"\\u2581\\u13d5\\u13a4\\u13f2\": 6033,\n    \"\\u2581\\u13a4\\u13c2\\u13a7\\u13b5\": 6034,\n    \"\\u2581\\u13d3\\u13d8\": 6035,\n    \"\\u13db\\u13af\\u13cd\\u13d9\\u13d7\": 6036,\n    \"\\u13b5\\u13cd\\u13d3\": 6037,\n    \"\\u2581\\u13a0\\u13c9\\u13af\\u13f3\": 6038,\n    \"\\u2581\\u13a0\\u13a6\\u13c5\": 6039,\n    \"\\u2581\\u13c2\\u13a6\\u13db\\u13c9\": 6040,\n    \"\\u2581\\u13d9\\u13af\\u13f1\\u13c9\": 6041,\n    \"\\u13e3\\u13c9\": 6042,\n    \"\\u2581\\u13e5\\u13e9\\u13be\\u13a6\": 6043,\n    \"\\u13c2\\u13a6\\u13d4\\u13b2\\u13be\": 6044,\n    \"\\u2581\\u13ef\\u13c7\": 6045,\n    \"\\u13d3\\u13db\\u13c1\\u13d7\": 6046,\n    \"\\u2581\\u13a4\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\": 6047,\n    \"\\u13cf\\u13ef\": 6048,\n    \"\\u13d9\\u13b4\\u13b0\\u13d2\": 6049,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\": 6050,\n    \"\\u2581\\u13e8\\u13c6\": 6051,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d3\\u13c1\\u13d7\": 6052,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\": 6053,\n    \"\\u13e5\\u13cd\\u13d4\\u13c5\": 6054,\n    \"\\u2581\\u13f1\\u13c5\\u13e9\\u13cd\\u13d7\": 6055,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d6\": 6056,\n    \"\\u13ec\\u13c1\\u13d4\\u13c5\": 6057,\n    \"\\u13ec\\u13c1\\u13d9\\u13d7\": 6058,\n    \"\\u13ea\\u13cf\": 6059,\n    \"\\u13f2\\u13cd\\u13d4\\u13c5\": 6060,\n    \"\\u13d8\\u13cd\\u13a9\": 6061,\n    \"\\u13d4\\u13b4\\u13d2\": 6062,\n    \"\\u13a8\\u13ce\": 6063,\n    \"\\u13b4\\u13d7\\u13f1\": 6064,\n    \"\\u13e5\\u13b5\": 6065,\n    \"\\u13ce\\u13b5\\u13d9\\u13d7\": 6066,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 6067,\n    \"\\u13c1\\u13b8\\u13d7\\u13cd\\u13ac\": 6068,\n    \"\\u13b5\\u13cd\\u13d5\\u13b8\": 6069,\n    \"\\u13e9\\u13db\\u13af\": 6070,\n    \"\\u2581\\u13f4\\u13a6\\u13e5\": 6071,\n    \"\\u2581\\u13a0\\u13cd\\u13da\": 6072,\n    \"\\u2581\\u13f3\\u13f2\": 6073,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\": 6074,\n    \"\\u13c5\\u13c2\": 6075,\n    \"\\u13c4\\u13aa\\u13e8\\u13a9\": 6076,\n    \"\\u2581\\u13d5\\u13a6\\u13d8\": 6077,\n    \"\\u13ef\\u13c5\\u13af\": 6078,\n    \"\\u13c5\\u13d3\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 6079,\n    \"\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\\u13af\": 6080,\n    \"\\u2581\\u13a5\\u13dd\\u13cd\\u13a9\\u13c2\": 6081,\n    \"\\u2581\\u13f4\\u13d7\": 6082,\n    \"\\u13cd\\u13d9\\u13a2\": 6083,\n    \"\\u13e9\\u13d3\": 6084,\n    \"\\u13cd\\u13d3\\u13f2\": 6085,\n    \"\\u13da\\u13b5\\u13ad\": 6086,\n    \"\\u13a7\\u13c2\\u13cd\\u13ac\": 6087,\n    \"\\u13ae\\u13b5\": 6088,\n    \"\\u13b6\\u13c5\": 6089,\n    \"\\u2581\\u13a0\\u13f0\\u13b5\\u13c9\": 6090,\n    \"\\u13b5\\u13cd\\u13a9\": 6091,\n    \"\\u13c1\\u13a6\": 6092,\n    \"\\u13c2\\u13ea\\u13ce\": 6093,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13eb\\u13ce\": 6094,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\": 6095,\n    \"\\u13ea\\u13ce\\u13b5\": 6096,\n    \"\\u2581\\u13a0\\u13ce\\u13cd\\u13a9\\u13c2\": 6097,\n    \"\\u2581\\u13f3\\u13b8\": 6098,\n    \"\\u13c1\\u13b6\\u13d5\\u13cd\\u13d7\": 6099,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13db\": 6100,\n    \"\\u13e3\\u13b7\\u13e4\\u13d7\\u13f1\": 6101,\n    \"\\u2581\\u13f1\\u13ac\\u13c6\": 6102,\n    \"\\u13d9\\u13b5\\u13aa\": 6103,\n    \"\\u13b8\\u13ae\": 6104,\n    \"\\u13d3\\u13b4\\u13b2\\u13a6\": 6105,\n    \"\\u2581\\u13a6\\u13ea\": 6106,\n    \"\\u13d4\\u13ea\\u13d9\": 6107,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d3\": 6108,\n    \"\\u13a5\\u13cd\\u13a8\\u13a2\": 6109,\n    \"\\u13f2\\u13d9\\u13d7\": 6110,\n    \"\\u13b5\\u13bb\": 6111,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\": 6112,\n    \"\\u13b5\\u13cd\\u13c6\\u13d9\\u13be\": 6113,\n    \"\\u13e2\\u13c1\\u13a2\": 6114,\n    \"\\u13ae\\u13b8\": 6115,\n    \"\\u13e6\\u13d2\": 6116,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\": 6117,\n    \"\\u2581\\u13a6\\u13f2\": 6118,\n    \"\\u2581\\u13ef\\u13c6\\u13d3\": 6119,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13b8\": 6120,\n    \"\\u13cc\\u13b2\": 6121,\n    \"\\u13e5\\u13d3\": 6122,\n    \"\\u2581\\u13a5\\u13dd\\u13cd\\u13d7\": 6123,\n    \"\\u2581\\u13e5\\u13cd\\u13a6\\u13be\": 6124,\n    \"\\u2581\\u13a4\\u13e9\\u13ce\": 6125,\n    \"\\u13dc\\u13d7\": 6126,\n    \"\\u13c9\\u13af\": 6127,\n    \"\\u13b7\\u13a9\\u13cd\\u13a9\": 6128,\n    \"\\u13f0\\u13ac\": 6129,\n    \"\\u13d3\\u13db\\u13c1\\u13b5\": 6130,\n    \"\\u2581\\u13eb\\u13ef\\u13c5\": 6131,\n    \"\\u13c7\\u13d3\": 6132,\n    \"\\u2581\\u13e3\\u13e2\": 6133,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13a6\\u13c5\": 6134,\n    \"\\u2581\\u13a4\\u13a9\\u13cd\\u13d7\": 6135,\n    \"\\u13b2\\u13cd\\u13a8\": 6136,\n    \"\\u13d3\\u13c1\\u13a2\": 6137,\n    \"\\u13db\\u13c1\\u13b0\": 6138,\n    \"\\u13b4\\u13c5\\u13d3\": 6139,\n    \"\\u2581\\u13a9\\u13b3\\u13a2\": 6140,\n    \"\\u13d3\\u13d1\\u13f4\": 6141,\n    \"\\u2581\\u13ac\\u13e9\\u13b5\\u13aa\\u13c1\": 6142,\n    \"\\u13aa\\u13a8\": 6143,\n    \"\\u2581\\u13a0\\u13d1\\u13f4\": 6144,\n    \"\\u13a6\\u13db\\u13a9\": 6145,\n    \"\\u2581\\u13a4\\u13f2\\u13cd\\u13d4\\u13c5\": 6146,\n    \"\\u2581\\u13d7\\u13d5\\u13b6\\u13c6\\u13cd\": 6147,\n    \"\\u2581\\u13ad\\u13d3\\u13c5\\u13d6\": 6148,\n    \"\\u2581\\u13d5\\u13a8\\u13e3\": 6149,\n    \"\\u2581\\u13d9\\u13ac\": 6150,\n    \"\\u2581\\u13e9\\u13c2\\u13b7\": 6151,\n    \"\\u13be\\u13b5\": 6152,\n    \"\\u2581\\u13a0\\u13a9\\u13a8\\u13f3\\u13af\": 6153,\n    \"\\u2581\\u13d3\\u13cd\\u13a9\": 6154,\n    \"\\u2581\\u13a4\\u13e9\\u13d9\": 6155,\n    \"\\u13a1\\u13b2\\u13a2\": 6156,\n    \"\\u13b4\\u13c5\\u13ae\": 6157,\n    \"\\u2581\\u13ad\\u13d3\": 6158,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13cf\": 6159,\n    \"\\u13d1\\u13b8\\u13d3\": 6160,\n    \"\\u13cd\\u13d4\\u13c5\\u13a2\": 6161,\n    \"\\u2581\\u13a0\\u13c2\\u13be\": 6162,\n    \"\\u13a8\\u13af\\u13d9\\u13b8\": 6163,\n    \"\\u2581\\u13c4\\u13e9\\u13c1\": 6164,\n    \"\\u2581\\u13f3\\u13d3\\u13d1\": 6165,\n    \"\\u13f2\\u13ce\\u13b8\": 6166,\n    \"\\u13ea\\u13d2\": 6167,\n    \"\\u13a8\\u13e5\\u13c1\\u13d7\\u13f1\": 6168,\n    \"\\u13e5\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 6169,\n    \"\\u13cd\\u13aa\\u13d2\": 6170,\n    \"\\u13a3\\u13c1\": 6171,\n    \"\\u2581\\u13d7\\u13cd\": 6172,\n    \"\\u13be\\u13a1\": 6173,\n    \"\\u13b5\\u13d3\": 6174,\n    \"\\u13f2\\u13ae\\u13d7\": 6175,\n    \"\\u13b2\\u13cd\\u13d7\\u13f1\": 6176,\n    \"\\u2581\\u13d3\\u13a8\": 6177,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13ce\": 6178,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13c3\": 6179,\n    \"\\u2581\\u13a4\\u13cd\\u13db\": 6180,\n    \"\\u2581\\u13c8\\u13c2\": 6181,\n    \"\\u13c2\\u13cd\\u13a8\\u13cd\\u13d7\": 6182,\n    \"\\u13da\\u13b8\\u13c5\\u13d7\": 6183,\n    \"\\u13b5\\u13ec\": 6184,\n    \"\\u2581\\u13a6\\u13d0\": 6185,\n    \"\\u13c2\\u13e2\\u13d7\\u13f1\": 6186,\n    \"\\u13d5\\u13a8\": 6187,\n    \"\\u2581\\u13e9\\u13c6\": 6188,\n    \"\\u2581\\u13ec\\u13a9\": 6189,\n    \"\\u13e4\\u13ea\": 6190,\n    \"\\u13cd\\u13a6\\u13ef\": 6191,\n    \"\\u2581\\u13be\\u13e5\\u13b8\\u13c9\": 6192,\n    \"\\u13c5\\u13e9\\u13cd\\u13d7\\u13c9\": 6193,\n    \"\\u13d3\\u13a8\\u13f3\\u13d7\": 6194,\n    \"\\u13e5\\u13ef\\u13c5\\u13db\": 6195,\n    \"\\u13a9\\u13db\": 6196,\n    \"\\u13f2\\u13b1\\u13af\": 6197,\n    \"\\u13d8\\u13ce\\u13a2\": 6198,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\\u13cf\": 6199,\n    \"\\u13aa\\u13d2\": 6200,\n    \"\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\\u13a2\": 6201,\n    \"\\u13e3\\u13c1\": 6202,\n    \"\\u2581\\u13da\\u13b5\": 6203,\n    \"\\u13d3\\u13d8\\u13c2\\u13d9\\u13af\": 6204,\n    \"\\u2581\\u13da\\u13be\\u13b5\\u13aa\": 6205,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\": 6206,\n    \"\\u13e0\\u13a0\\u13af\": 6207,\n    \"\\u13c3\\u13ae\\u13d7\": 6208,\n    \"\\u2581\\u13a4\\u13b7\\u13e8\\u13c3\": 6209,\n    \"\\u13b3\\u13cf\\u13d5\\u13c2\": 6210,\n    \"\\u2581\\u13a0\\u13c6\\u13db\": 6211,\n    \"\\u2581\\u13f3\\u13ea\": 6212,\n    \"\\u13c2\\u13f1\\u13cd\\u13a8\": 6213,\n    \"\\u13b4\\u13c5\\u13b2\": 6214,\n    \"\\u13d9\\u13be\": 6215,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13eb\\u13cd\\u13a9\\u13c3\": 6216,\n    \"\\u13d0\\u13e2\": 6217,\n    \"\\u2581\\u13a0\\u13f4\\u13c9\": 6218,\n    \"\\u13d5\\u13e3\\u13d9\": 6219,\n    \"\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 6220,\n    \"\\u13cd\\u13db\\u13d7\": 6221,\n    \"\\u2581\\u13a0\\u13c2\\u13a1\": 6222,\n    \"\\u2581\\u13e7\\u13c5\\u13cf\": 6223,\n    \"\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\": 6224,\n    \"\\u13a6\\u13d3\": 6225,\n    \"\\u13d3\\u13d7\\u13cd\\u13d7\": 6226,\n    \"\\u2581\\u13a0\\u13b5\\u13e5\": 6227,\n    \"\\u13db\\u13db\\u13b2\\u13cd\\u13a6\": 6228,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d5\\u13b5\": 6229,\n    \"\\u2581\\u13c2\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\": 6230,\n    \"\\u2581\\u13a4\\u13d0\\u13c5\\u13a2\": 6231,\n    \"\\u13d2\\u13a6\\u13b8\": 6232,\n    \"\\u13cd\\u13aa\\u13b5\": 6233,\n    \"\\u13da\\u13a9\": 6234,\n    \"\\u2581\\u13f3\\u13c3\\u13f4\": 6235,\n    \"\\u13e8\\u13cd\\u13d7\\u13f1\": 6236,\n    \"\\u13d9\\u13a6\": 6237,\n    \"\\u2581\\u13a5\\u13c6\": 6238,\n    \"\\u2581\\u13a0\\u13cd\": 6239,\n    \"\\u13ae\\u13af\": 6240,\n    \"\\u13e2\\u13d4\\u13c5\\u13af\": 6241,\n    \"\\u13da\\u13b5\\u13cd\\u13a8\": 6242,\n    \"\\u13af\\u13cd\\u13d7\\u13cd\\u13ac\": 6243,\n    \"\\u13a6\\u13c9\": 6244,\n    \"\\u13e5\\u13a6\\u13d4\": 6245,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13f4\\u13c1\": 6246,\n    \"\\u13b8\\u13c9\\u13d3\": 6247,\n    \"\\u13eb\\u13ce\\u13a2\": 6248,\n    \"\\u13ce\\u13b8\\u13a2\": 6249,\n    \"\\u13c4\\u13aa\\u13eb\\u13d2\\u13af\": 6250,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13d3\\u13b4\": 6251,\n    \"\\u2581\\u13d7\\u13a9\\u13cd\\u13d7\": 6252,\n    \"\\u2581\\u13c5\\u13b5\\u13cc\\u13b5\": 6253,\n    \"\\u13d8\\u13c3\\u13af\\u13cd\\u13d7\": 6254,\n    \"\\u2581\\u13c5\\u13e9\": 6255,\n    \"\\u13e5\\u13f2\\u13cd\\u13d9\\u13d3\\u13c1\": 6256,\n    \"\\u13f2\\u13af\\u13cf\": 6257,\n    \"\\u13cd\\u13d7\\u13c2\": 6258,\n    \"\\u13cd\\u13da\\u13a9\\u13d2\": 6259,\n    \"\\u2581\\u13a0\\u13d5\\u13b8\\u13c3\": 6260,\n    \"\\u13b6\\u13a5\": 6261,\n    \"\\u13aa\\u13e9\\u13d7\\u13cd\\u13ac\": 6262,\n    \"\\u13cd\\u13ac\\u13be\\u13c9\": 6263,\n    \"\\u13e3\\u13b4\\u13db\": 6264,\n    \"\\u2581\\u13f1\\u13da\\u13d3\": 6265,\n    \"\\u13c3\\u13c5\\u13af\": 6266,\n    \"\\u2581\\u13ef\\u13a9\\u13aa\": 6267,\n    \"\\u13a6\\u13b5\\u13b0\": 6268,\n    \"\\u13a6\\u13b6\": 6269,\n    \"\\u13e2\\u13ad\": 6270,\n    \"\\u13f4\\u13d4\\u13c5\\u13a9\": 6271,\n    \"\\u13af\\u13db\": 6272,\n    \"\\u13da\\u13d3\\u13f2\\u13ce\": 6273,\n    \"\\u13e7\\u13d4\\u13c5\": 6274,\n    \"\\u13d0\\u13be\": 6275,\n    \"\\u13cd\\u13d5\\u13a2\": 6276,\n    \"\\u2581\\u13c1\\u13e9\\u13d4\\u13b5\": 6277,\n    \"\\u2581\\u13ef\\u13a6\\u13d3\": 6278,\n    \"\\u2581\\u13da\\u13e9\\u13db\\u13b2\": 6279,\n    \"\\u13ce\\u13b0\\u13a2\": 6280,\n    \"\\u2581\\u13af\\u13c1\\u13a9\": 6281,\n    \"\\u13cf\\u13c5\\u13cd\\u13d7\": 6282,\n    \"\\u13cd\\u13c6\\u13b5\\u13cd\\u13ac\": 6283,\n    \"\\u2581\\u13d5\\u13e5\\u13ef\": 6284,\n    \"\\u13aa\\u13b0\\u13cd\": 6285,\n    \"\\u13db\\u13a6\\u13c5\": 6286,\n    \"\\u13a1\\u13c3\": 6287,\n    \"\\u2581\\u13d8\\u13c1\": 6288,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13c5\": 6289,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\": 6290,\n    \"\\u2581\\u13ac\\u13e9\\u13c3\\u13af\\u13f3\": 6291,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13d2\": 6292,\n    \"\\u13aa\\u13af\\u13f3\": 6293,\n    \"\\u2581\\u13d5\\u13aa\\u13e2\\u13d2\": 6294,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d9\\u13d7\": 6295,\n    \"\\u2581\\u13a6\\u13a6\": 6296,\n    \"\\u13d7\\u13e2\\u13cd\\u13d9\\u13d7\": 6297,\n    \"\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 6298,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13d2\": 6299,\n    \"\\u13a9\\u13cd\\u13d3\": 6300,\n    \"\\u2581\\u13a4\\u13e2\\u13ac\": 6301,\n    \"\\u13a8\\u13f3\\u13af\": 6302,\n    \"\\u2581\\u13a0\\u13e5\\u13f0\\u13b8\\u13be\\u13c1\": 6303,\n    \"\\u13e5\\u13b7\\u13a9\": 6304,\n    \"\\u13d9\\u13b4\\u13b0\\u13ce\": 6305,\n    \"\\u13d8\\u13d3\": 6306,\n    \"\\u13cd\\u13d5\\u13b5\\u13cd\\u13aa\": 6307,\n    \"\\u2581\\u13d3\\u13df\\u13b6\\u13cd\\u13d7\": 6308,\n    \"\\u2581\\u13d1\\u13df\\u13b6\\u13db\": 6309,\n    \"\\u2581\\u13ed\\u13ed\\u13cd\": 6310,\n    \"\\u13da\\u13f2\\u13ce\": 6311,\n    \"\\u2581\\u13c6\\u13cf\": 6312,\n    \"\\u2581\\u13f1\\u13d3\\u13be\": 6313,\n    \"\\u2581\\u13a6\\u13c5\\u13aa\\u13a2\": 6314,\n    \"\\u13a6\\u13b8\\u13b2\\u13a9\": 6315,\n    \"\\u13d7\\u13c9\": 6316,\n    \"\\u2581\\u13f4\\u13d3\": 6317,\n    \"\\u2581\\u13a4\\u13c5\\u13c2\": 6318,\n    \"\\u2581\\u13c2\\u13d3\\u13d9\\u13d3\\u13c8\\u13d2\": 6319,\n    \"\\u2581\\u13be\\u13ac\\u13c1\\u13b4\": 6320,\n    \"\\u2581\\u13a0\\u13a7\\u13b5\": 6321,\n    \"\\u2581\\u13c2\\u13da\\u13cd\\u13d5\": 6322,\n    \"\\u13a4\\u13e8\\u13c9\\u13d7\": 6323,\n    \"\\u13a2\\u13d7\\u13a6\\u13d8\": 6324,\n    \"\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\\u13a2\": 6325,\n    \"\\u2581\\u13da\\u13c4\\u13e9\\u13a5\": 6326,\n    \"\\u13a4\\u13c2\\u13b7\\u13e4\\u13a2\": 6327,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13c1\": 6328,\n    \"\\u13d2\\u13ae\\u13f1\\u13e3\": 6329,\n    \"\\u2581\\u13a1\\u13cc\": 6330,\n    \"\\u2581\\u13d5\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 6331,\n    \"\\u13a7\\u13c3\\u13ae\\u13db\": 6332,\n    \"\\u13a2\\u13e5\\u13c8\\u13f1\": 6333,\n    \"\\u2581\\u13a6\\u13b5\\u13a1\\u13b5\\u13ac\": 6334,\n    \"\\u13a0\\u13ac\\u13f1\": 6335,\n    \"\\u2581\\u13be\\u13a9\\u13ea\\u13d2\": 6336,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13c1\": 6337,\n    \"\\u13b5\\u13aa\\u13af\": 6338,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13cd\\u13a8\": 6339,\n    \"\\u2581\\u13da\\u13d3\\u13d8\\u13bf\\u13a5\": 6340,\n    \"\\u2581\\u13d5\\u13a4\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 6341,\n    \"\\u2581\\u13da\\u13cd\\u13ab\\u13d3\\u13db\": 6342,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 6343,\n    \"\\u2581\\u13a4\\u13b5\\u13d6\\u13b8\\u13c1\": 6344,\n    \"\\u13c7\\u13b5\\u13e5\": 6345,\n    \"\\u13c9\\u13a1\\u13d7\": 6346,\n    \"\\u2581\\u13a4\\u13d4\\u13ea\\u13d9\\u13c1\": 6347,\n    \"\\u2581\\u13a4\\u13ce\\u13b5\": 6348,\n    \"\\u2581\\u13c2\\u13e3\\u13d3\\u13a8\\u13f3\\u13d2\": 6349,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c1\": 6350,\n    \"\\u2581\\u13da\\u13c4\\u13aa\\u13d4\\u13c5\": 6351,\n    \"\\u2581\\u13a4\\u13ea\\u13cd\\u13a9\\u13b8\": 6352,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\": 6353,\n    \"\\u2581\\u13da\\u13c2\\u13e2\\u13ac\": 6354,\n    \"\\u2581\\u13e7\\u13b6\\u13ce\": 6355,\n    \"\\u2581\\u13a4\\u13b4\\u13c2\\u13d9\\u13b4\": 6356,\n    \"\\u2581\\u13b2\\u13c5\": 6357,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13b5\\u13cd\\u13ac\": 6358,\n    \"\\u2581\\u13d3\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\": 6359,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13ac\": 6360,\n    \"\\u2581\\u13eb\\u13e5\\u13a6\\u13db\": 6361,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13a1\\u13b4\": 6362,\n    \"\\u2581\\u13c2\\u13da\\u13e9\\u13c1\\u13b4\": 6363,\n    \"\\u2581\\u13d3\\u13c5\\u13d7\\u13cd\\u13ac\": 6364,\n    \"\\u13af\\u13e2\\u13be\": 6365,\n    \"\\u13cd\\u13d3\\u13e9\\u13db\\u13ce\": 6366,\n    \"\\u2581\\u13be\\u13c2\\u13a1\": 6367,\n    \"\\u2581\\u13a4\\u13cd\\u13a9\\u13d3\\u13d2\": 6368,\n    \"\\u2581\\u13a0\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\": 6369,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d4\\u13c5\": 6370,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\\u13b2\": 6371,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13f1\\u13db\": 6372,\n    \"\\u13b5\\u13a8\\u13c2\": 6373,\n    \"\\u2581\\u13a8\\u13ac\": 6374,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13b4\": 6375,\n    \"\\u13da\\u13d3\\u13d5\\u13eb\\u13d2\": 6376,\n    \"\\u2581\\u13a4\\u13d1\\u13b5\\u13aa\\u13e8\": 6377,\n    \"\\u2581\\u13a4\\u13ee\\u13d4\\u13c5\": 6378,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13b1\\u13d2\": 6379,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13c1\": 6380,\n    \"\\u13cd\\u13c9\\u13b5\\u13f1\": 6381,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\": 6382,\n    \"\\u2581\\u13a0\\u13c4\\u13af\\u13cd\\u13d7\\u13cd\\u13ac\": 6383,\n    \"\\u13a6\\u13d8\\u13d7\\u13cd\\u13d7\\u13f1\": 6384,\n    \"\\u2581\\u13e5\\u13ec\\u13c2\\u13cd\\u13ac\": 6385,\n    \"\\u13cd\\u13a9\\u13d3\\u13ce\\u13a2\": 6386,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d7\\u13cd\\u13ac\": 6387,\n    \"\\u2581\\u13da\\u13be\\u13b4\\u13c5\": 6388,\n    \"\\u2581\\u13a4\\u13ef\\u13c5\\u13ae\": 6389,\n    \"\\u2581\\u13e3\\u13c1\\u13e8\": 6390,\n    \"\\u2581\\u13a0\\u13c6\\u13b4\\u13c5\": 6391,\n    \"\\u2581\\u13ea\\u13d9\": 6392,\n    \"\\u13b8\\u13a5\\u13cd\\u13ac\": 6393,\n    \"\\u2581\\u13a3\\u13aa\\u13af\\u13f3\": 6394,\n    \"\\u13b8\\u13cd\\u13a6\": 6395,\n    \"\\u2581\\u13a3\\u13a6\\u13e3\\u13c5\": 6396,\n    \"\\u13be\\u13be\\u13db\\u13c1\\u13b0\": 6397,\n    \"\\u13a9\\u13cd\\u13d3\\u13e9\\u13d5\": 6398,\n    \"\\u2581\\u13a6\\u13c1\\u13ae\": 6399,\n    \"\\u13d9\\u13e2\\u13be\": 6400,\n    \"\\u2581\\u13d7\\u13d8\\u13f2\": 6401,\n    \"\\u13d2\\u13b5\": 6402,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13db\\u13ce\": 6403,\n    \"\\u2581\\u13d7\\u13d8\\u13c2\\u13d9\": 6404,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13b2\": 6405,\n    \"\\u13a6\\u13d4\\u13b2\\u13cd\\u13ac\": 6406,\n    \"\\u13f2\\u13b5\\u13b4\": 6407,\n    \"\\u13cd\\u13d5\\u13b8\\u13b2\\u13a9\": 6408,\n    \"\\u13f4\\u13e4\\u13c2\": 6409,\n    \"\\u2581\\u13e6\\u13a9\\u13be\\u13eb\": 6410,\n    \"\\u13d3\\u13d3\\u13cd\\u13ac\": 6411,\n    \"\\u2581\\u13f1\\u13d9\\u13ac\": 6412,\n    \"\\u2581\\u13e5\\u13aa\\u13e9\\u13db\": 6413,\n    \"\\u13c1\\u13b5\\u13ce\\u13a2\": 6414,\n    \"\\u13b8\\u13c9\\u13d4\\u13c2\": 6415,\n    \"\\u2581\\u13a1\\u13a9\\u13cd\\u13d5\\u13b8\\u13d7\": 6416,\n    \"\\u2581\\u13a6\\u13c5\\u13c6\\u13b6\": 6417,\n    \"\\u13d2\\u13b2\\u13cd\\u13a6\": 6418,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c2\\u13d0\\u13d7\": 6419,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13b8\\u13cc\": 6420,\n    \"\\u2581\\u13a0\\u13c2\\u13db\": 6421,\n    \"\\u2581\\u13e7\\u13c2\\u13d2\\u13cd\\u13d7\": 6422,\n    \"\\u2581\\u13e3\\u13c1\\u13ae\": 6423,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13a6\\u13b8\": 6424,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13ce\": 6425,\n    \"\\u2581\\u13a4\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\": 6426,\n    \"\\u13e9\\u13c1\\u13a6\": 6427,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\": 6428,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13c1\": 6429,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13a8\": 6430,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13f3\": 6431,\n    \"\\u13cf\\u13d4\\u13d7\\u13cd\\u13d7\": 6432,\n    \"\\u2581\\u13e9\\u13da\": 6433,\n    \"\\u13e0\\u13a0\\u13d2\": 6434,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 6435,\n    \"\\u2581\\u13d7\\u13a6\\u13e4\\u13b5\": 6436,\n    \"\\u2581\\u13a6\\u13b7\\u13e8\": 6437,\n    \"\\u13d5\\u13f2\\u13c5\\u13af\": 6438,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13cd\": 6439,\n    \"\\u13c4\\u13ec\\u13a1\\u13a2\": 6440,\n    \"\\u13c2\\u13c1\\u13e8\": 6441,\n    \"\\u13d3\\u13c2\\u13b5\\u13a8\": 6442,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b4\": 6443,\n    \"\\u13c3\\u13b5\\u13e4\": 6444,\n    \"\\u13da\\u13c5\\u13cf\\u13f4\": 6445,\n    \"\\u13d9\\u13b4\\u13c6\\u13cd\\u13d7\": 6446,\n    \"\\u2581\\u13a0\\u13db\\u13a9\\u13cd\\u13a8\": 6447,\n    \"\\u2581\\u13ed\\u13d3\": 6448,\n    \"\\u13c1\\u13e4\\u13ae\\u13cd\\u13d7\": 6449,\n    \"\\u13e6\\u13ce\\u13ad\": 6450,\n    \"\\u2581\\u13e5\\u13ef\\u13a5\": 6451,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13cd\\u13a9\": 6452,\n    \"\\u2581\\u13a0\\u13d3\\u13b4\\u13d2\": 6453,\n    \"\\u2581\\u13f1\\u13a1\\u13e6\\u13a2\\u13f3\": 6454,\n    \"\\u13d3\\u13be\\u13d5\\u13d2\\u13b2\\u13cd\\u13aa\\u13a2\": 6455,\n    \"\\u2581\\u13a0\\u13c1\\u13ef\\u13d4\\u13af\": 6456,\n    \"\\u2581\\u13a0\\u13c2\\u13a2\\u13cf\\u13ba\\u13b5\": 6457,\n    \"\\u2581\\u13a0\\u13cd\\u13d5\\u13f1\\u13db\": 6458,\n    \"\\u2581\\u13a2\\u13cd\\u13aa\\u13c2\\u13d7\\u13e2\": 6459,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\\u13d5\\u13d8\\u13f4\\u13d3\": 6460,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13aa\\u13be\\u13d9\\u13d7\": 6461,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13cd\\u13a6\\u13e2\": 6462,\n    \"\\u2581\\u13a4\\u13d4\\u13f2\\u13b4\": 6463,\n    \"\\u2581\\u13a4\\u13e9\\u13ac\\u13d8\\u13b6\\u13d3\": 6464,\n    \"\\u2581\\u13a4\\u13e9\\u13be\\u13d3\\u13b4\": 6465,\n    \"\\u2581\\u13a5\\u13d6\\u13a3\\u13a9\": 6466,\n    \"\\u2581\\u13c1\\u13e5\\u13ea\\u13ce\\u13b8\\u13ad\": 6467,\n    \"\\u2581\\u13c2\\u13a6\\u13d7\\u13b9\\u13cf\": 6468,\n    \"\\u2581\\u13c2\\u13d3\\u13c1\\u13e2\\u13db\\u13be\": 6469,\n    \"\\u2581\\u13c2\\u13d7\\u13ac\\u13e9\\u13d3\\u13b4\": 6470,\n    \"\\u2581\\u13c2\\u13e7\\u13ea\\u13ce\": 6471,\n    \"\\u2581\\u13c4\\u13c3\\u13af\\u13f3\\u13c5\\u13be\": 6472,\n    \"\\u2581\\u13d2\\u13d7\\u13e9\\u13df\": 6473,\n    \"\\u2581\\u13d3\\u13b1\\u13c3\\u13b2\": 6474,\n    \"\\u2581\\u13d3\\u13be\\u13e6\\u13ad\\u13f1\\u13b2\": 6475,\n    \"\\u2581\\u13d3\\u13c2\\u13b3\\u13cd\\u13d3\\u13b3\\u13e9\\u13d7\\u13d2\\u13a2\": 6476,\n    \"\\u2581\\u13d3\\u13c2\\u13b6\\u13c4\\u13ae\\u13cd\": 6477,\n    \"\\u2581\\u13d3\\u13ca\\u13aa\\u13d4\\u13c5\": 6478,\n    \"\\u2581\\u13d3\\u13df\\u13f0\\u13b5\\u13d9\": 6479,\n    \"\\u2581\\u13d7\\u13be\\u13b5\\u13e6\\u13af\\u13db\": 6480,\n    \"\\u2581\\u13d7\\u13dd\\u13d7\\u13cd\\u13d7\\u13f1\": 6481,\n    \"\\u2581\\u13d9\\u13db\\u13be\\u13d3\\u13e1\\u13d4\\u13c2\": 6482,\n    \"\\u2581\\u13e5\\u13c2\\u13e5\\u13ea\\u13a0\": 6483,\n    \"\\u2581\\u13e5\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 6484,\n    \"\\u2581\\u13e5\\u13d5\\u13ad\\u13d8\\u13c1\\u13ad\": 6485,\n    \"\\u2581\\u13e7\\u13c4\\u13e9\\u13a2\": 6486,\n    \"\\u2581\\u13ef\\u13d9\\u13b4\\u13b0\\u13cd\\u13a6\": 6487,\n    \"\\u2581\\u13f1\\u13d3\\u13b4\\u13c2\\u13d9\\u13ad\": 6488,\n    \"\\u2581\\u13f1\\u13e3\\u13c1\\u13a2\\u13cd\\u13d4\\u13c1\\u13cd\\u13d7\": 6489,\n    \"\\u2581\\u13f1\\u13eb\\u13e3\\u13f4\\u13b8\": 6490,\n    \"\\u2581\\u13a4\\u13a9\\u13e0\\u13eb\\u13ce\": 6491,\n    \"\\u2581\\u13a8\\u13e5\\u13a6\\u13d8\\u13d7\\u13cd\\u13d7\": 6492,\n    \"\\u2581\\u13ba\\u13ae\\u13b4\\u13b5\": 6493,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13c1\\u13b6\\u13db\\u13be\": 6494,\n    \"\\u2581\\u13c4\\u13db\\u13bf\\u13d5\\u13ac\": 6495,\n    \"\\u2581\\u13c6\\u13bb\\u13c8\\u13b5\\u13f1\": 6496,\n    \"\\u2581\\u13d3\\u13a6\\u13ab\\u13f4\\u13af\": 6497,\n    \"\\u2581\\u13da\\u13ec\\u13cf\\u13cc\\u13c1\": 6498,\n    \"\\u2581\\u13e5\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\": 6499,\n    \"\\u2581\\u13e8\\u13d3\\u13ef\\u13a2\": 6500,\n    \"\\u13b5\\u13cd\\u13a8\\u13d7\\u13f4\": 6501,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13aa\": 6502,\n    \"\\u2581\\u13a4\\u13ea\\u13df\\u13cc\\u13c1\": 6503,\n    \"\\u2581\\u13b9\\u13bb\\u13b5\": 6504,\n    \"\\u2581\\u13c1\\u13d3\\u13c8\": 6505,\n    \"\\u2581\\u13d9\\u13d3\\u13e5\\u13f2\\u13b1\\u13cf\": 6506,\n    \"\\u2581\\u13d9\\u13d7\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\": 6507,\n    \"\\u2581\\u13db\\u13be\\u13db\\u13a6\\u13c2\": 6508,\n    \"\\u2581\\u13ee\\u13d8\\u13ef\\u13c5\\u13af\": 6509,\n    \"\\u2581\\u13f3\\u13b5\\u13c3\\u13af\\u13f0\": 6510,\n    \"\\u2581\\u13d3\\u13cd\\u13d7\\u13f0\\u13d7\\u13cd\\u13ac\": 6511,\n    \"\\u13a9\\u13ea\\u13ce\\u13b2\\u13a9\": 6512,\n    \"\\u2581\\u13a1\\u13bb\\u13b3\": 6513,\n    \"\\u2581\\u13a2\\u13a6\\u13d7\\u13cd\\u13a6\\u13b6\\u13d7\\u13f1\": 6514,\n    \"\\u2581\\u13a9\\u13c5\\u13aa\\u13a2\": 6515,\n    \"\\u2581\\u13c1\\u13a8\\u13d2\\u13be\": 6516,\n    \"\\u2581\\u13c2\\u13e8\\u13f4\\u13c1\\u13b8\": 6517,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\\u13f1\": 6518,\n    \"\\u2581\\u13ef\\u13ce\\u13a6\\u13a9\": 6519,\n    \"\\u2581\\u13a0\\u13f2\\u13d3\\u13dd\\u13b2\\u13a2\": 6520,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13ae\\u13cd\\u13d7\": 6521,\n    \"\\u2581\\u13da\\u13df\\u13c2\\u13c6\\u13c5\\u13c1\": 6522,\n    \"\\u2581\\u13ee\\u13d8\\u13b6\\u13cf\": 6523,\n    \"\\u2581\\u13ef\\u13b5\\u13d6\\u13b8\\u13ae\\u13cd\\u13ac\\u13be\": 6524,\n    \"\\u13a6\\u13ad\\u13be\\u13c5\": 6525,\n    \"\\u2581\\u13a2\\u13d6\\u13b3\": 6526,\n    \"\\u2581\\u13c2\\u13ea\\u13ce\\u13b8\\u13ad\": 6527,\n    \"\\u2581\\u13d3\\u13e4\\u13b5\\u13cd\\u13db\": 6528,\n    \"\\u2581\\u13d5\\u13b7\\u13a8\": 6529,\n    \"\\u2581\\u13ec\\u13a9\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 6530,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13db\\u13db\\u13c1\": 6531,\n    \"\\u2581\\u13ef\\u13d3\\u13c5\\u13cd\\u13ac\\u13be\": 6532,\n    \"\\u2581\\u13e5\\u13c4\\u13e9\\u13c1\\u13b8\": 6533,\n    \"\\u2581\\u13a4\\u13ea\\u13ef\\u13b8\\u13c5\\u13a9\": 6534,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13db\\u13cd\\u13a9\": 6535,\n    \"\\u2581\\u13a4\\u13ce\\u13a6\\u13e8\\u13af\": 6536,\n    \"\\u2581\\u13aa\\u13b6\\u13c1\\u13db\": 6537,\n    \"\\u2581\\u13ac\\u13e9\\u13f4\\u13b8\\u13af\": 6538,\n    \"\\u2581\\u13d8\\u13f0\\u13b8\\u13c2\": 6539,\n    \"\\u2581\\u13da\\u13b5\\u13c3\\u13ae\\u13d4\\u13c1\\u13a2\": 6540,\n    \"\\u13ec\\u13c1\\u13d7\\u13cd\\u13aa\": 6541,\n    \"\\u2581\\u13ac\\u13cd\\u13a6\\u13b5\": 6542,\n    \"\\u2581\\u13e7\\u13d8\\u13f2\": 6543,\n    \"\\u2581\\u13eb\\u13ac\\u13f2\\u13ea\\u13b3\\u13cf\": 6544,\n    \"\\u2581\\u13a1\\u13d7\\u13c2\\u13f1\": 6545,\n    \"\\u2581\\u13c4\\u13cd\\u13c6\\u13c2\\u13a9\\u13db\": 6546,\n    \"\\u2581\\u13db\\u13c2\\u13be\\u13c4\\u13aa\\u13e5\": 6547,\n    \"\\u2581\\u13a2\\u13e6\\u13b5\\u13a9\": 6548,\n    \"\\u2581\\u13e3\\u13d4\\u13b3\\u13ec\\u13cd\\u13ac\": 6549,\n    \"\\u2581\\u13a4\\u13c2\\u13d4\\u13b3\\u13ec\\u13cd\\u13ac\\u13a2\": 6550,\n    \"\\u2581\\u13c1\\u13cd\\u13d7\\u13ea\\u13ce\\u13b8\\u13ad\": 6551,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13db\\u13be\\u13d5\\u13a9\": 6552,\n    \"\\u2581\\u13a4\\u13af\\u13d0\\u13d3\\u13c1\": 6553,\n    \"\\u2581\\u13a4\\u13d5\\u13d2\\u13c2\\u13b8\\u13af\": 6554,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13c3\\u13af\\u13f4\\u13af\": 6555,\n    \"\\u2581\\u13c2\\u13e6\\u13af\\u13f3\": 6556,\n    \"\\u2581\\u13d3\\u13d1\\u13eb\\u13cd\\u13ac\": 6557,\n    \"\\u2581\\u13a0\\u13cd\\u13ab\\u13d5\\u13d2\": 6558,\n    \"\\u2581\\u13a0\\u13cd\\u13d9\\u13cd\\u13a9\": 6559,\n    \"\\u2581\\u13a4\\u13b5\\u13cc\\u13b5\\u13d3\\u13c1\": 6560,\n    \"\\u2581\\u13f1\\u13d7\\u13e3\\u13f0\\u13b8\\u13c1\\u13a2\": 6561,\n    \"\\u2581\\u13a4\\u13e9\\u13c2\\u13a6\\u13e2\": 6562,\n    \"\\u2581\\u13a0\\u13d9\\u13c2\\u13cd\\u13a9\": 6563,\n    \"\\u2581\\u13a6\\u13c4\\u13be\\u13d3\\u13b4\\u13a9\": 6564,\n    \"\\u2581\\u13d7\\u13c2\\u13ac\\u13d3\\u13a8\\u13c2\": 6565,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13df\\u13cc\": 6566,\n    \"\\u2581\\u13d3\\u13e5\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b5\": 6567,\n    \"\\u2581\\u13a3\\u13a8\\u13d9\\u13b8\": 6568,\n    \"\\u2581\\u13d9\\u13db\\u13be\\u13b4\\u13c2\": 6569,\n    \"\\u2581\\u13ef\\u13c2\\u13b7\\u13ac\\u13be\": 6570,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13f2\\u13c1\\u13af\": 6571,\n    \"\\u2581\\u13e7\\u13b5\\u13a6\\u13b8\\u13d3\": 6572,\n    \"\\u2581\\u13c2\\u13d7\\u13a8\\u13e5\\u13be\\u13dd\\u13a5\\u13be\": 6573,\n    \"\\u2581\\u13c2\\u13e6\\u13af\\u13f3\\u13b2\\u13cd\\u13ac\\u13be\": 6574,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13db\\u13c5\\u13af\": 6575,\n    \"\\u2581\\u13d7\\u13d0\\u13c2\": 6576,\n    \"\\u13d3\\u13eb\\u13cd\\u13a6\\u13a8\": 6577,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\\u13e8\\u13ad\": 6578,\n    \"\\u2581\\u13a2\\u13e3\\u13d5\\u13d7\\u13f1\": 6579,\n    \"\\u2581\\u13a4\\u13ac\\u13cd\\u13d5\\u13b5\": 6580,\n    \"\\u2581\\u13aa\\u13e2\\u13c5\\u13a5\\u13cd\\u13a9\": 6581,\n    \"\\u2581\\u13cc\\u13b6\\u13bb\": 6582,\n    \"\\u2581\\u13d3\\u13c6\\u13d3\\u13c2\\u13b8\\u13a8\\u13cd\\u13d7\": 6583,\n    \"\\u2581\\u13d9\\u13a9\\u13be\\u13e6\\u13d2\": 6584,\n    \"\\u2581\\u13a6\\u13b5\\u13d2\\u13cd\\u13d7\\u13cd\\u13ac\": 6585,\n    \"\\u2581\\u13d5\\u13ab\\u13d3\\u13db\": 6586,\n    \"\\u2581\\u13a2\\u13ac\\u13c2\\u13ae\\u13cd\\u13d7\": 6587,\n    \"\\u13a8\\u13c5\\u13f4\": 6588,\n    \"\\u2581\\u13d7\\u13a6\\u13b6\\u13a9\\u13cd\\u13a9\": 6589,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13af\": 6590,\n    \"\\u2581\\u13a4\\u13d4\\u13f2\\u13b8\": 6591,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c1\\u13c3\": 6592,\n    \"\\u2581\\u13c2\\u13d3\\u13be\\u13d3\": 6593,\n    \"\\u2581\\u13f1\\u13e8\\u13f0\\u13b5\\u13ce\\u13ad\": 6594,\n    \"\\u2581\\u13d7\\u13d3\\u13c2\\u13f1\\u13cd\\u13a9\": 6595,\n    \"\\u2581\\u13a9\\u13b5\\u13ef\\u13d7\": 6596,\n    \"\\u2581\\u13d3\\u13d3\\u13c2\\u13cc\\u13b2\": 6597,\n    \"\\u13e7\\u13aa\\u13d3\\u13cf\": 6598,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\\u13af\": 6599,\n    \"\\u2581\\u13a2\\u13e3\\u13c4\\u13ec\\u13cd\\u13d5\\u13cd\\u13d7\": 6600,\n    \"\\u2581\\u13c2\\u13d5\\u13e3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 6601,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13db\\u13a6\\u13c1\\u13b8\\u13af\": 6602,\n    \"\\u2581\\u13a4\\u13bf\\u13b7\\u13ce\": 6603,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13db\\u13a9\": 6604,\n    \"\\u2581\\u13d9\\u13d3\\u13f3\\u13f2\\u13cf\": 6605,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13b8\\u13d7\": 6606,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13c5\\u13d3\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 6607,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13df\\u13f4\\u13cd\\u13d3\\u13c1\\u13b4\": 6608,\n    \"\\u2581\\u13a9\\u13c2\\u13d9\\u13d3\": 6609,\n    \"\\u2581\\u13a1\\u13d7\\u13b8\\u13c9\\u13d3\": 6610,\n    \"\\u2581\\u13d5\\u13a6\\u13a7\\u13ae\\u13cd\\u13d7\": 6611,\n    \"\\u2581\\u13da\\u13be\\u13ad\\u13c4\\u13ee\": 6612,\n    \"\\u2581\\u13a5\\u13c7\\u13b5\\u13ce\\u13b8\": 6613,\n    \"\\u13af\\u13e3\\u13db\\u13a6\\u13cd\\u13d3\": 6614,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13ec\\u13a2\\u13cd\\u13d7\": 6615,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\": 6616,\n    \"\\u2581\\u13a0\\u13db\\u13a9\\u13cd\\u13a9\": 6617,\n    \"\\u2581\\u13a0\\u13e5\\u13c5\\u13e9\\u13c5\\u13af\": 6618,\n    \"\\u13d4\\u13b4\\u13d0\": 6619,\n    \"\\u2581\\u13c5\\u13db\\u13c2\\u13ea\\u13cf\": 6620,\n    \"\\u13ac\\u13f2\\u13b5\\u13ad\": 6621,\n    \"\\u2581\\u13d3\\u13ac\\u13c5\\u13cf\": 6622,\n    \"\\u2581\\u13d7\\u13a9\\u13c2\\u13f4\\u13d7\\u13f1\": 6623,\n    \"\\u2581\\u13f4\\u13a8\\u13e5\\u13aa\\u13e9\\u13db\": 6624,\n    \"\\u13ef\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 6625,\n    \"\\u2581\\u13d3\\u13c2\\u13c2\\u13d3\\u13db\": 6626,\n    \"\\u2581\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 6627,\n    \"\\u2581\\u13d7\\u13ab\\u13d3\\u13d9\\u13d7\": 6628,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13c5\\u13ec\\u13d7\\u13f1\": 6629,\n    \"ran\": 6630,\n    \"\\u2581\\u13eb\\u13c4\\u13be\\u13b5\\u13cd\\u13d3\\u13cf\": 6631,\n    \"\\u2581\\u13d7\\u13a6\\u13c3\\u13d9\\u13d7\\u13f1\": 6632,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13c9\\u13a8\": 6633,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13f2\\u13af\": 6634,\n    \"\\u2581\\u13ac\\u13cd\\u13a6\\u13c5\\u13e4\\u13b8\": 6635,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13c1\\u13b5\\u13d9\\u13b8\": 6636,\n    \"\\u2581\\u13d7\\u13d7\\u13f0\\u13b8\": 6637,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13e8\": 6638,\n    \"\\u2581\\u13f3\\u13f2\\u13b1\\u13ce\\u13b8\": 6639,\n    \"\\u2581\\u13a4\\u13b8\\u13eb\\u13d2\": 6640,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13c5\\u13eb\\u13cd\\u13d4\\u13c2\\u13d9\\u13af\": 6641,\n    \"\\u2581\\u13c2\\u13e8\\u13c1\\u13ae\\u13cd\\u13d7\": 6642,\n    \"\\u2581\\u13e7\\u13b5\\u13a9\\u13cf\": 6643,\n    \"\\u2581\\u13a0\\u13be\\u13df\\u13b2\": 6644,\n    \"\\u13d3\\u13d2\\u13cd\\u13d3\": 6645,\n    \"\\u13ac\\u13e9\\u13f3\\u13aa\\u13d7\": 6646,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13d2\\u13a9\": 6647,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13e0\\u13ce\\u13a2\": 6648,\n    \"\\u2581\\u13ab\\u13ad\\u13b3\": 6649,\n    \"\\u2581\\u13e7\\u13ed\\u13d3\\u13b4\\u13cd\\u13d7\\u13f1\": 6650,\n    \"\\u2581\\u13d3\\u13cd\\u13c6\\u13da\\u13b8\": 6651,\n    \"\\u2581\\u13a2\\u13e5\\u13a7\\u13b5\\u13e3\": 6652,\n    \"\\u2581\\u13a0\\u13be\\u13df\\u13c3\\u13ae\\u13cd\\u13ac\": 6653,\n    \"\\u2581\\u13d3\\u13c5\\u13e9\": 6654,\n    \"\\u2581\\u13da\\u13a9\\u13d2\\u13a9\": 6655,\n    \"\\u2581\\u13a4\\u13d3\\u13be\\u13cf\\u13c5\": 6656,\n    \"\\u13e0\\u13ef\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 6657,\n    \"\\u2581\\u13aa\\u13e2\\u13db\\u13a9\": 6658,\n    \"\\u2581\\u13e7\\u13c1\\u13c5\\u13d2\": 6659,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13cf\\u13cd\\u13ac\": 6660,\n    \"\\u2581\\u13da\\u13c1\\u13c5\\u13d2\": 6661,\n    \"\\u2581\\u13c3\\u13a6\\u13db\\u13c5\": 6662,\n    \"\\u2581\\u13d7\\u13a9\\u13e3\\u13d7\": 6663,\n    \"\\u2581\\u13ed\\u13d3\\u13d3\\u13a9\\u13c5\\u13ce\": 6664,\n    \"\\u2581\\u13a2\\u13cd\\u13d7\\u13d9\\u13d3\": 6665,\n    \"\\u2581\\u13eb\\u13f2\\u13ea\\u13b3\\u13cf\": 6666,\n    \"\\u2581\\u13a1\\u13b6\\u13c2\\u13b5\": 6667,\n    \"\\u2581\\u13d7\\u13c2\\u13a6\\u13d8\\u13b4\\u13a9\": 6668,\n    \"\\u13cf\\u13c0\\u13a5\": 6669,\n    \"\\u13ab\\u13d8\\u13b6\": 6670,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13e5\\u13d9\\u13d7\\u13f1\": 6671,\n    \"\\u2581\\u13f1\\u13c2\\u13d3\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\": 6672,\n    \"\\u2581\\u13a4\\u13d3\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\": 6673,\n    \"\\u2581\\u13da\\u13d9\\u13d3\\u13c8\\u13d2\": 6674,\n    \"\\u2581\\u13da\\u13b5\\u13ac\\u13e9\\u13e2\": 6675,\n    \"\\u2581\\u13eb\\u13a6\\u13a2\\u13d2\": 6676,\n    \"\\u2581\\u13ed\\u13d5\\u13c1\\u13a2\": 6677,\n    \"\\u2581\\u13f1\\u13c4\\u13e9\\u13c1\\u13b0\": 6678,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13cd\\u13d7\\u13ad\": 6679,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13a8\\u13f3\\u13ce\\u13cd\\u13d7\": 6680,\n    \"ers\": 6681,\n    \"\\u2581\\u13f1\\u13d3\\u13f2\\u13a9\": 6682,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13b8\": 6683,\n    \"\\u13be\\u13de\\u13ac\": 6684,\n    \"\\u2581\\u13a0\\u13d3\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\\u13a9\": 6685,\n    \"\\u2581\\u13d8\\u13b9\\u13c2\": 6686,\n    \"\\u2581\\u13d9\\u13d3\\u13ac\\u13c1\\u13b5\": 6687,\n    \"\\u2581\\u13e5\\u13d5\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 6688,\n    \"\\u2581\\u13a4\\u13ea\\u13b7\\u13c5\": 6689,\n    \"\\u2581\\u13d5\\u13e3\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 6690,\n    \"\\u13c8\\u13aa\\u13b5\": 6691,\n    \"\\u2581\\u13d5\\u13a6\\u13b5\\u13e6\\u13db\": 6692,\n    \"\\u2581\\u13a3\\u13e3\\u13b5\\u13a1\\u13b5\\u13e4\": 6693,\n    \"\\u2581\\u13a4\\u13c2\\u13a7\\u13b2\": 6694,\n    \"\\u2581\\u13e5\\u13cd\\u13a6\\u13c5\\u13a9\": 6695,\n    \"\\u2581\\u13a4\\u13c5\\u13c2\\u13cd\\u13d7\\u13f1\": 6696,\n    \"\\u2581\\u13d7\\u13a4\\u13c1\\u13e4\": 6697,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13cd\\u13a8\": 6698,\n    \"\\u2581\\u13da\\u13aa\\u13c4\\u13b6\\u13ce\": 6699,\n    \"\\u2581\\u13cc\\u13aa\\u13d7\": 6700,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\\u13b5\\u13f2\\u13ac\\u13a2\": 6701,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13af\": 6702,\n    \"\\u2581\\u13e7\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d9\\u13d7\\u13f1\": 6703,\n    \"\\u2581\\u13e7\\u13ea\\u13b7\\u13c1\": 6704,\n    \"\\u2581\\u13e7\\u13c5\\u13a8\\u13eb\": 6705,\n    \"\\u2581\\u13d7\\u13d3\\u13d9\\u13d5\\u13cd\\u13d7\\u13cd\\u13a9\": 6706,\n    \"\\u2581\\u13da\\u13c3\\u13a9\\u13ce\": 6707,\n    \"\\u2581\\u13d7\\u13c2\\u13d9\\u13ac\": 6708,\n    \"\\u2581\\u13d7\\u13dc\\u13cd\\u13d4\\u13c5\\u13af\": 6709,\n    \"\\u13b5\\u13cd\\u13d8\\u13c2\\u13b8\": 6710,\n    \"\\u2581\\u13d7\\u13a9\\u13d9\\u13d3\": 6711,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13db\": 6712,\n    \"\\u2581\\u13c4\\u13c2\\u13aa\\u13b8\\u13be\": 6713,\n    \"\\u2581\\u13b1\\u13b7\\u13e8\": 6714,\n    \"\\u2581\\u13c2\\u13d7\\u13e3\\u13d3\": 6715,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\\u13f1\": 6716,\n    \"\\u2581\\u13d7\\u13ac\\u13ef\\u13e0\": 6717,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13db\\u13c5\\u13af\": 6718,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 6719,\n    \"\\u13c5\\u13d3\\u13e5\\u13ea\\u13ce\\u13b5\": 6720,\n    \"\\u2581\\u13d3\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13cf\": 6721,\n    \"\\u2581\\u13e3\\u13a9\\u13ef\\u13a0\": 6722,\n    \"\\u2581\\u13ac\\u13ec\\u13b3\\u13d5\\u13cd\\u13ac\": 6723,\n    \"\\u2581\\u13d7\\u13c2\\u13c1\\u13b5\\u13db\": 6724,\n    \"\\u2581\\u13a0\\u13e5\\u13c2\\u13cc\\u13c5\": 6725,\n    \"\\u2581\\u13c2\\u13d3\\u13be\\u13e4\": 6726,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13c6\\u13d3\": 6727,\n    \"\\u2581\\u13d3\\u13ac\\u13b7\\u13e4\\u13b5\": 6728,\n    \"\\u2581\\u13a1\\u13e3\\u13d9\\u13b5\\u13a9\": 6729,\n    \"\\u2581\\u13cd\\u13a9\\u13f2\\u13cd\\u13d3\": 6730,\n    \"\\u2581\\u13ad\\u13e0\\u13a0\\u13af\": 6731,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13db\\u13c2\\u13d9\\u13af\\u13c9\": 6732,\n    \"\\u2581\\u13c5\\u13ef\\u13d7\\u13a6\\u13aa\\u13d7\\u13f1\": 6733,\n    \"\\u2581\\u13a6\\u13b6\\u13aa\\u13d7\": 6734,\n    \"\\u2581\\u13f1\\u13a6\\u13ec\\u13c2\\u13ad\": 6735,\n    \"\\u2581\\u13a4\\u13be\\u13e8\\u13d3\\u13b5\": 6736,\n    \"\\u2581\\u13a3\\u13a9\\u13b5\\u13e6\\u13e9\\u13db\": 6737,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13f2\\u13af\\u13cf\": 6738,\n    \"\\u2581\\u13a0\\u13a9\\u13a9\\u13ac\": 6739,\n    \"\\u2581\\u13a4\\u13f0\\u13b6\\u13a2\\u13cd\\u13d4\": 6740,\n    \"\\u2581\\u13e6\\u13da\\u13af\": 6741,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13f2\\u13af\\u13ce\\u13b8\\u13af\": 6742,\n    \"\\u2581\\u13e7\\u13ec\\u13ea\\u13b3\\u13c1\": 6743,\n    \"\\u2581\\u13a0\\u13e5\\u13c2\\u13cc\\u13c1\": 6744,\n    \"\\u2581\\u13a4\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d5\": 6745,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 6746,\n    \"\\u2581\\u13c1\\u13d3\\u13c2\\u13b5\": 6747,\n    \"\\u2581\\u13cc\\u13c6\\u13ef\": 6748,\n    \"\\u2581\\u13be\\u13a9\\u13b2\\u13be\": 6749,\n    \"\\u2581\\u13e7\\u13be\\u13c2\\u13cf\\u13d7\\u13f1\": 6750,\n    \"\\u13ab\\u13d3\\u13b4\\u13cd\\u13a9\": 6751,\n    \"\\u2581\\u13c2\\u13a6\\u13d6\\u13cd\\u13d7\": 6752,\n    \"\\u13cd\\u13d5\\u13b5\": 6753,\n    \"\\u2581\\u13e7\\u13d9\\u13cd\\u13d9\\u13d7\": 6754,\n    \"\\u13f0\\u13b8\\u13be\": 6755,\n    \"\\u2581\\u13a4\\u13a9\\u13e2\": 6756,\n    \"\\u2581\\u13c2\\u13a8\\u13e8\\u13c1\": 6757,\n    \"\\u2581\\u13a8\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 6758,\n    \"\\u2581\\u13d5\\u13a7\\u13c5\": 6759,\n    \"\\u2581\\u13a4\\u13d7\\u13e9\\u13d2\\u13af\": 6760,\n    \"\\u2581\\u13d3\\u13b6\\u13a8\": 6761,\n    \"\\u2581\\u13e7\\u13a6\\u13cc\\u13ec\\u13b8\": 6762,\n    \"\\u2581\\u13a2\\u13d3\\u13bb\": 6763,\n    \"\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 6764,\n    \"\\u2581\\u13e7\\u13ec\\u13ea\\u13b6\\u13d7\": 6765,\n    \"\\u13a6\\u13ab\\u13cd\\u13d3\\u13a5\": 6766,\n    \"\\u2581\\u13a0\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d9\\u13d7\": 6767,\n    \"\\u2581\\u13d5\\u13b0\\u13e2\\u13c5\\u13ad\": 6768,\n    \"\\u13c2\\u13b8\\u13ac\\u13be\": 6769,\n    \"\\u2581\\u13aa\\u13ad\\u13d7\": 6770,\n    \"\\u2581\\u13af\\u13cc\\u13d9\\u13ef\": 6771,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13c1\\u13b8\\u13af\": 6772,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c1\\u13a2\": 6773,\n    \"\\u2581\\u13db\\u13c2\\u13aa\\u13af\": 6774,\n    \"\\u2581\\u13f1\\u13e5\\u13ef\\u13a0\": 6775,\n    \"\\u2581\\u13aa\\u13b5\": 6776,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d3\\u13d5\\u13a2\": 6777,\n    \"\\u2581\\u13a0\\u13c2\\u13cf\\u13be\\u13cc\\u13c5\": 6778,\n    \"\\u2581\\u13a4\\u13ef\\u13ea\\u13d0\\u13b4\": 6779,\n    \"\\u2581\\u13a7\\u13c3\\u13a8\\u13c2\": 6780,\n    \"\\u2581\\u13a4\\u13c4\\u13a9\\u13e3\\u13c1\": 6781,\n    \"\\u13be\\u13d9\\u13d3\\u13c6\\u13cd\\u13d7\": 6782,\n    \"\\u2581\\u13a0\\u13d3\\u13db\\u13d7\\u13cd\\u13a9\": 6783,\n    \"\\u2581\\u13a2\\u13d7\\u13ac\\u13c1\\u13b8\\u13af\": 6784,\n    \"\\u2581\\u13e7\\u13be\\u13e8\\u13cd\\u13d7\\u13f1\": 6785,\n    \"\\u2581\\u13f3\\u13c3\\u13b5\\u13e4\": 6786,\n    \"\\u2581\\u13a3\\u13a9\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 6787,\n    \"\\u2581\\u13d7\\u13e5\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 6788,\n    \"\\u2581\\u13a3\\u13a9\\u13b7\\u13e4\\u13b8\": 6789,\n    \"\\u2581\\u13ef\\u13d5\\u13b6\\u13b0\\u13cd\": 6790,\n    \"\\u2581\\u13ad\\u13a6\\u13cc\\u13ef\\u13cd\\u13d3\": 6791,\n    \"\\u2581\\u13d7\\u13c2\\u13be\\u13d5\\u13a9\": 6792,\n    \"\\u2581\\u13a0\\u13d3\\u13f4\\u13cd\\u13d4\\u13a9\\u13cd\\u13a9\": 6793,\n    \"\\u2581\\u13a4\\u13c1\\u13d0\\u13a0\\u13d2\\u13a9\": 6794,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13f0\\u13cd\\u13a9\": 6795,\n    \"\\u2581\\u13b4\\u13b9\\u13a9\": 6796,\n    \"\\u2581\\u13a0\\u13e5\\u13b6\\u13a5\": 6797,\n    \"\\u2581\\u13a6\\u13cc\\u13b4\\u13c5\": 6798,\n    \"\\u2581\\u13cd\\u13ca\\u13d3\\u13b3\\u13a9\": 6799,\n    \"\\u13d3\\u13c5\\u13db\\u13b3\": 6800,\n    \"\\u2581\\u13e3\\u13cd\\u13a6\\u13b8\\u13a9\": 6801,\n    \"\\u2581\\u13c2\\u13da\\u13c2\\u13ea\\u13ce\\u13b8\\u13a9\": 6802,\n    \"\\u2581\\u13b0\\u13af\\u13f3\\u13b2\\u13cd\\u13a6\": 6803,\n    \"\\u2581\\u13e7\\u13c4\\u13aa\\u13d4\\u13c5\": 6804,\n    \"\\u2581\\u13da\\u13ed\\u13d3\\u13d4\\u13c5\\u13a9\": 6805,\n    \"\\u2581\\u13da\\u13c2\\u13da\\u13b2\": 6806,\n    \"\\u2581\\u13a0\\u13d7\\u13d4\\u13cd\\u13a8\\u13cd\\u13d7\": 6807,\n    \"\\u2581\\u13d3\\u13d5\\u13cf\": 6808,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\": 6809,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13d4\\u13cd\\u13d7\": 6810,\n    \"\\u2581\\u13a4\\u13b5\\u13e8\\u13d3\\u13c6\\u13db\": 6811,\n    \"\\u2581\\u13a0\\u13d6\\u13b5\\u13d9\\u13a9\\u13af\": 6812,\n    \"\\u2581\\u13ef\\u13c6\\u13db\\u13c1\\u13b8\": 6813,\n    \"\\u2581\\u13e7\\u13c2\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\\u13f1\": 6814,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13d4\\u13b3\": 6815,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13d7\": 6816,\n    \"\\u2581\\u13a2\\u13e5\\u13f4\\u13cd\\u13d7\\u13f1\": 6817,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13db\": 6818,\n    \"\\u2581\\u13a4\\u13e9\\u13c2\\u13b8\\u13a9\": 6819,\n    \"\\u2581\\u13ac\\u13e9\\u13c4\\u13af\": 6820,\n    \"\\u2581\\u13d7\\u13e3\\u13b5\\u13c2\\u13a9\\u13d7\\u13f3\": 6821,\n    \"\\u2581\\u13e3\\u13f0\\u13b8\\u13c5\": 6822,\n    \"\\u2581\\u13bb\\u13d7\\u13c2\\u13f1\": 6823,\n    \"\\u2581\\u13eb\\u13e5\\u13b6\\u13af\": 6824,\n    \"\\u13a4\\u13c1\\u13e8\": 6825,\n    \"\\u13da\\u13a7\\u13be\\u13be\": 6826,\n    \"\\u13ea\\u13ce\\u13b8\\u13af\": 6827,\n    \"\\u2581\\u13d7\\u13b5\\u13cd\\u13da\\u13b6\": 6828,\n    \"\\u2581\\u13a2\\u13e5\\u13ef\\u13a5\\u13a2\": 6829,\n    \"\\u13d5\\u13ef\\u13d9\\u13d7\": 6830,\n    \"\\u2581\\u13f1\\u13b0\\u13e3\": 6831,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c1\": 6832,\n    \"\\u2581\\u13d7\\u13a7\\u13bf\": 6833,\n    \"\\u2581\\u13e5\\u13e5\\u13ef\\u13a0\": 6834,\n    \"\\u2581\\u13a2\\u13ef\\u13cb\\u13c1\\u13d7\\u13f1\": 6835,\n    \"\\u2581\\u13a4\\u13d3\\u13aa\\u13b5\\u13f0\\u13d7\": 6836,\n    \"\\u2581\\u13ac\\u13a9\\u13c1\\u13e4\\u13b8\\u13af\": 6837,\n    \"\\u2581\\u13a1\\u13e5\\u13a8\\u13f3\\u13a2\": 6838,\n    \"\\u2581\\u13a0\\u13a9\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 6839,\n    \"\\u2581\\u13a0\\u13c2\\u13a8\\u13f3\\u13e3\": 6840,\n    \"\\u2581\\u13a3\\u13e5\\u13c3\\u13ae\\u13cd\\u13a9\": 6841,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13a1\\u13b8\\u13a9\": 6842,\n    \"\\u13cd\\u13d4\\u13c1\\u13b0\": 6843,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d3\\u13a9\\u13db\": 6844,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13f4\\u13d7\\u13f1\": 6845,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d3\\u13d5\\u13a2\": 6846,\n    \"\\u2581\\u13c5\\u13e7\\u13ea\\u13ce\\u13a2\": 6847,\n    \"\\u2581\\u13a4\\u13d9\\u13ef\\u13c5\\u13af\\u13db\": 6848,\n    \"\\u2581\\u13a4\\u13d3\\u13f1\\u13b4\\u13a2\": 6849,\n    \"\\u2581\\u13a4\\u13c7\\u13d3\\u13e2\": 6850,\n    \"\\u2581\\u13e5\\u13c4\\u13be\\u13cd\\u13d7\": 6851,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c5\\u13a2\\u13cd\\u13d7\": 6852,\n    \"\\u2581\\u13f3\\u13a8\\u13f3\\u13ad\": 6853,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c5\": 6854,\n    \"\\u2581\\u13d7\\u13a6\\u13c3\\u13b8\\u13d7\\u13cd\\u13ac\": 6855,\n    \"\\u2581\\u13a4\\u13be\\u13cd\\u13aa\\u13ce\": 6856,\n    \"\\u2581\\u13e6\\u13a8\\u13c5\\u13d2\": 6857,\n    \"\\u13cd\\u13d3\\u13f1\\u13d7\\u13cd\\u13d7\\u13f1\": 6858,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13d3\": 6859,\n    \"\\u2581\\u13e7\\u13b5\\u13cf\\u13ac\": 6860,\n    \"\\u2581\\u13a6\\u13ac\\u13e9\\u13d0\\u13e2\\u13d5\\u13a2\": 6861,\n    \"\\u2581\\u13eb\\u13a4\\u13b6\\u13ce\\u13a2\": 6862,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13f0\\u13af\\u13cd\\u13d7\": 6863,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13cd\\u13d4\\u13f4\": 6864,\n    \"\\u2581\\u13e5\\u13e5\\u13aa\\u13e9\\u13d8\\u13ad\": 6865,\n    \"\\u2581\\u13c1\\u13ea\\u13ce\\u13b4\\u13a2\": 6866,\n    \"\\u13e9\\u13d8\\u13cd\\u13a9\": 6867,\n    \"\\u13cc\\u13a9\\u13d2\": 6868,\n    \"\\u2581\\u13d2\\u13a6\\u13be\\u13f2\\u13aa\": 6869,\n    \"\\u2581\\u13a5\\u13a6\\u13e5\\u13aa\\u13a5\\u13a9\": 6870,\n    \"\\u2581\\u13e7\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 6871,\n    \"\\u2581\\u13d5\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 6872,\n    \"\\u2581\\u13c5\\u13cb\\u13c1\\u13b8\": 6873,\n    \"\\u2581\\u13ed\\u13e9\\u13c5\\u13d3\\u13d5\": 6874,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13aa\\u13c5\": 6875,\n    \"\\u2581\\u13a4\\u13a7\\u13ad\\u13f2\\u13db\": 6876,\n    \"\\u2581\\u13a6\\u13b8\\u13cd\\u13d9\\u13d7\": 6877,\n    \"\\u2581\\u13d5\\u13a6\\u13c3\\u13e3\\u13b8\": 6878,\n    \"\\u2581\\u13a3\\u13a6\\u13da\\u13b5\\u13cd\\u13ac\": 6879,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13a6\\u13b8\\u13d3\": 6880,\n    \"\\u2581\\u13d3\\u13a9\\u13f2\\u13af\\u13ce\\u13b8\": 6881,\n    \"\\u2581\\u13d7\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\\u13af\": 6882,\n    \"\\u2581\\u13ad\\u13d9\\u13b4\\u13b0\\u13af\": 6883,\n    \"\\u2581\\u13a1\\u13a6\\u13d4\": 6884,\n    \"\\u2581\\u13f3\\u13b7\\u13e8\": 6885,\n    \"\\u2581\\u13a0\\u13d7\\u13cd\\u13a6\\u13b6\\u13d7\": 6886,\n    \"\\u2581\\u13da\\u13cc\\u13b3\\u13d3\\u13c5\": 6887,\n    \"\\u2581\\u13a0\\u13be\\u13a6\\u13b5\\u13cd\\u13a9\": 6888,\n    \"\\u13d2\\u13c1\\u13b0\": 6889,\n    \"\\u2581\\u13a0\\u13c1\\u13b7\\u13b2\\u13cd\\u13a8\": 6890,\n    \"\\u2581\\u13e5\\u13d0\\u13af\": 6891,\n    \"\\u2581\\u13d3\\u13cd\\u13a9\\u13c1\\u13b5\": 6892,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13db\\u13c1\\u13b8\": 6893,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13e8\\u13ad\": 6894,\n    \"\\u2581\\u13e7\\u13c4\\u13aa\\u13d9\\u13d7\\u13f1\": 6895,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13c2\\u13ea\\u13ce\": 6896,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13aa\\u13d7\\u13f1\": 6897,\n    \"\\u2581\\u13a2\\u13f3\\u13c2\\u13ea\\u13cd\\u13d7\\u13f1\": 6898,\n    \"\\u2581\\u13e7\\u13c2\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\\u13d7\": 6899,\n    \"\\u2581\\u13da\\u13f2\\u13b5\\u13b8\": 6900,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c5\\u13af\": 6901,\n    \"\\u2581\\u13af\\u13e5\\u13e7\\u13e3\": 6902,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13ce\": 6903,\n    \"\\u2581\\u13d3\\u13de\\u13cd\\u13d7\": 6904,\n    \"\\u2581\\u13a0\\u13a6\\u13ab\\u13f4\\u13a1\\u13d7\": 6905,\n    \"\\u2581\\u13b6\\u13d4\\u13c2\": 6906,\n    \"\\u2581\\u13e7\\u13cf\\u13b3\\u13db\\u13d9\\u13d7\": 6907,\n    \"\\u2581\\u13a0\\u13c6\\u13e1\\u13d7\\u13cd\\u13a9\": 6908,\n    \"\\u2581\\u13d3\\u13e5\\u13b7\\u13e5\": 6909,\n    \"\\u13d7\\u13a6\\u13b4\\u13f2\\u13e4\": 6910,\n    \"\\u13a6\\u13bf\\u13e9\": 6911,\n    \"\\u2581\\u13a0\\u13e8\\u13cf\\u13f0\\u13d7\": 6912,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 6913,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\\u13b0\": 6914,\n    \"\\u2581\\u13a4\\u13e9\\u13c7\\u13c5\\u13d4\\u13c1\": 6915,\n    \"\\u2581\\u13f1\\u13e3\\u13de\": 6916,\n    \"\\u2581\\u13ed\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\\u13a2\": 6917,\n    \"\\u2581\\u13a4\\u13d3\\u13b7\\u13b8\": 6918,\n    \"\\u2581\\u13a0\\u13db\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 6919,\n    \"\\u2581\\u13a0\\u13d4\\u13f2\\u13af\\u13ae\\u13cd\\u13d7\": 6920,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13e8\": 6921,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b5\\u13e4\\u13a2\": 6922,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13b3\\u13d4\\u13c5\": 6923,\n    \"\\u2581\\u13a0\\u13f2\\u13b1\\u13cd\\u13a8\\u13cd\\u13d7\": 6924,\n    \"\\u2581\\u13ed\\u13f4\\u13cd\\u13d7\\u13f1\": 6925,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\\u13f1\": 6926,\n    \"\\u2581\\u13a7\\u13c3\\u13cd\\u13a6\": 6927,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\\u13e5\\u13b8\\u13ad\": 6928,\n    \"\\u2581\\u13e5\\u13cd\\u13a6\": 6929,\n    \"\\u2581\\u13a4\\u13d8\\u13c5\\u13ce\": 6930,\n    \"\\u2581\\u13a4\\u13ac\\u13cd\\u13aa\\u13b8\\u13c1\": 6931,\n    \"\\u2581\\u13a1\\u13e5\\u13c1\\u13b8\": 6932,\n    \"\\u2581\\u13e4\\u13cf\\u13c2\": 6933,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\": 6934,\n    \"\\u2581\\u13a8\\u13e5\\u13f0\\u13b8\\u13af\": 6935,\n    \"\\u2581\\u13d7\\u13a6\\u13ab\\u13cd\": 6936,\n    \"\\u2581\\u13e5\\u13a7\\u13cd\\u13a8\\u13c2\": 6937,\n    \"\\u2581\\u13a2\\u13e3\\u13d9\\u13b4\\u13b0\\u13af\": 6938,\n    \"\\u2581\\u13a1\\u13e5\\u13a6\\u13d4\\u13ad\": 6939,\n    \"\\u2581\\u13f1\\u13be\\u13db\\u13a6\": 6940,\n    \"\\u2581\\u13a0\\u13c2\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13cd\\u13a9\": 6941,\n    \"\\u2581\\u13da\\u13c5\\u13e9\\u13c5\\u13a9\": 6942,\n    \"\\u2581\\u13eb\\u13d3\\u13c6\\u13a7\\u13be\\u13c5\\u13a9\": 6943,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13a2\\u13cd\\u13d7\\u13f1\": 6944,\n    \"\\u2581\\u13c2\\u13d5\\u13b2\\u13c1\": 6945,\n    \"\\u2581\\u13ac\\u13ad\\u13c3\": 6946,\n    \"\\u2581\\u13a4\\u13cd\\u13d4\\u13a6\": 6947,\n    \"\\u2581\\u13a4\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13f1\": 6948,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13cd\\u13d7\\u13f1\": 6949,\n    \"\\u2581\\u13d5\\u13db\\u13c5\": 6950,\n    \"\\u2581\\u13f3\\u13ea\\u13be\": 6951,\n    \"\\u2581\\u13ae\\u13ae\\u13cd\\u13d7\": 6952,\n    \"\\u2581\\u13da\\u13ea\\u13d0\\u13e4\": 6953,\n    \"\\u2581\\u13a0\\u13e4\\u13b7\\u13af\\u13cd\\u13d7\": 6954,\n    \"\\u2581\\u13af\\u13cd\\u13a9\\u13cd\\u13c6\": 6955,\n    \"\\u2581\\u13be\\u13c5\\u13c1\\u13b0\": 6956,\n    \"\\u2581\\u13aa\\u13cd\\u13d4\\u13f4\": 6957,\n    \"\\u13a0\\u13cd\\u13a6\": 6958,\n    \"\\u13d0\\u13cd\\u13d9\\u13d7\": 6959,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\\u13d7\\u13f1\": 6960,\n    \"\\u2581\\u13a0\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\": 6961,\n    \"\\u13cc\\u13b3\\u13d9\\u13d7\\u13f1\": 6962,\n    \"\\u13be\\u13dd\\u13a5\\u13be\": 6963,\n    \"\\u2581\\u13a4\\u13be\\u13e0\\u13be\\u13cd\\u13db\": 6964,\n    \"\\u2581\\u13da\\u13b5\\u13f0\": 6965,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13a9\": 6966,\n    \"\\u2581\\u13a0\\u13c5\": 6967,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13d4\\u13cd\\u13d7\\u13f1\": 6968,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13f4\\u13b2\\u13a9\": 6969,\n    \"\\u2581\\u13e3\\u13be\\u13d7\\u13ad\": 6970,\n    \"\\u13cd\\u13a9\\u13f0\\u13b5\\u13ce\\u13ae\\u13cd\\u13d7\": 6971,\n    \"\\u2581\\u13a4\\u13b5\\u13cc\\u13b3\\u13d3\\u13c1\": 6972,\n    \"\\u2581\\u13a0\\u13c2\\u13e3\\u13d7\": 6973,\n    \"\\u2581\\u13d4\\u13d4\": 6974,\n    \"\\u2581\\u13f1\\u13d3\\u13da\": 6975,\n    \"\\u2581\\u13a0\\u13f2\\u13cd\\u13d9\\u13d7\": 6976,\n    \"\\u2581\\u13e7\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 6977,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d8\\u13f4\": 6978,\n    \"\\u2581\\u13a2\\u13ac\\u13f4\": 6979,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\\u13f1\\u13d7\\u13cd\\u13a9\": 6980,\n    \"\\u13e6\\u13a6\\u13d3\\u13b5\": 6981,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13e4\\u13b8\\u13a9\": 6982,\n    \"\\u2581\\u13a9\\u13b3\\u13ca\": 6983,\n    \"\\u2581\\u13d7\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 6984,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c1\\u13b6\\u13d7\": 6985,\n    \"\\u2581\\u13e3\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\\u13f1\": 6986,\n    \"\\u2581\\u13e7\\u13cf\\u13b3\\u13db\\u13d7\": 6987,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13ad\": 6988,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13e9\\u13db\\u13af\\u13d9\\u13a2\": 6989,\n    \"\\u2581\\u13a4\\u13c5\\u13d3\\u13d7\\u13d7\\u13d2\\u13a2\": 6990,\n    \"\\u2581\\u13d3\\u13d3\\u13c1\\u13b3\\u13d7\\u13d2\\u13a2\": 6991,\n    \"\\u2581\\u13d7\\u13c6\\u13d3\\u13b4\\u13c5\\u13a2\": 6992,\n    \"\\u2581\\u13da\\u13e0\\u13d2\\u13ce\\u13a2\": 6993,\n    \"\\u2581\\u13da\\u13da\\u13aa\\u13d4\\u13c5\\u13a2\": 6994,\n    \"\\u2581\\u13a4\\u13d3\\u13cf\\u13c1\\u13a2\": 6995,\n    \"\\u2581\\u13a4\\u13c2\\u13cc\\u13db\\u13d7\": 6996,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13d8\\u13be\\u13a5\\u13a2\": 6997,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b4\\u13a2\": 6998,\n    \"\\u2581\\u13f3\\u13eb\\u13a6\": 6999,\n    \"\\u2581\\u13d3\\u13ac\\u13e9\\u13b5\": 7000,\n    \"\\u2581\\u13d7\\u13d2\\u13c6\\u13b6\\u13cd\\u13d7\": 7001,\n    \"\\u2581\\u13e3\\u13cd\\u13a6\\u13a9\": 7002,\n    \"\\u2581\\u13da\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13a2\": 7003,\n    \"\\u2581\\u13a2\\u13e3\\u13c2\\u13a9\": 7004,\n    \"\\u2581\\u13e7\\u13db\\u13d2\": 7005,\n    \"\\u2581\\u13a0\\u13d5\\u13b8\\u13d3\\u13b6\\u13c2\\u13a8\": 7006,\n    \"\\u2581\\u13d9\\u13e3\\u13d3\": 7007,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13cd\\u13d4\\u13c1\\u13a2\": 7008,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\\u13e6\\u13db\\u13a2\": 7009,\n    \"\\u13cd\\u13d3\\u13c1\\u13ad\": 7010,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c2\\u13b8\\u13e8\": 7011,\n    \"\\u2581\\u13cd\\u13a9\\u13a8\\u13f3\\u13af\\u13f3\": 7012,\n    \"\\u13c5\\u13cd\\u13d4\\u13c5\\u13af\": 7013,\n    \"\\u2581\\u13a7\\u13c1\\u13a8\\u13a2\": 7014,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13ae\\u13cd\\u13d7\": 7015,\n    \"\\u2581\\u13a3\\u13e4\\u13b2\\u13a2\": 7016,\n    \"\\u13a7\\u13b2\\u13cd\\u13d7\\u13f1\": 7017,\n    \"\\u2581\\u13e3\\u13da\\u13b5\\u13ad\": 7018,\n    \"\\u2581\\u13f4\\u13a6\\u13ac\": 7019,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13d7\": 7020,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b8\\u13a9\": 7021,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13af\": 7022,\n    \"\\u2581\\u13a4\\u13e2\\u13a6\": 7023,\n    \"\\u2581\\u13a3\\u13a6\\u13d3\\u13c5\\u13d4\\u13e9\\u13d5\": 7024,\n    \"\\u2581\\u13a0\\u13d3\\u13be\\u13c5\": 7025,\n    \"\\u2581\\u13e5\\u13c3\\u13aa\\u13a2\": 7026,\n    \"\\u2581\\u13c2\\u13a4\\u13cd\\u13d7\": 7027,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13d3\\u13cd\\u13db\": 7028,\n    \"\\u2581\\u13a0\\u13e5\\u13ef\\u13c5\\u13b2\": 7029,\n    \"\\u13ac\\u13ad\\u13b7\\u13f0\\u13a2\": 7030,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\\u13db\": 7031,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13a2\\u13ae\\u13f0\\u13c3\": 7032,\n    \"\\u2581\\u13ae\\u13d9\\u13ad\": 7033,\n    \"\\u2581\\u13c4\\u13c1\\u13a9\\u13f4\": 7034,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 7035,\n    \"\\u13db\\u13c2\\u13d7\\u13cd\\u13d5\\u13cd\\u13d7\": 7036,\n    \"\\u2581\\u13e5\\u13da\\u13c1\\u13e4\\u13b4\": 7037,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13f2\": 7038,\n    \"\\u2581\\u13f3\\u13db\\u13a6\": 7039,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c5\": 7040,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13c5\\u13c1\": 7041,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13db\\u13d7\\u13cd\\u13d9\\u13d7\": 7042,\n    \"\\u2581\\u13be\\u13c2\\u13a0\": 7043,\n    \"\\u13cd\\u13da\\u13b2\\u13cd\\u13aa\": 7044,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\\u13f1\": 7045,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\\u13a2\\u13cd\\u13d7\\u13f1\": 7046,\n    \"\\u13c4\\u13ea\\u13ce\": 7047,\n    \"\\u2581\\u13d5\\u13e5\\u13b3\\u13eb\\u13a9\": 7048,\n    \"\\u2581\\u13a0\\u13ab\\u13e4\\u13b5\": 7049,\n    \"\\u2581\\u13a4\\u13c1\\u13d9\\u13b4\\u13a2\": 7050,\n    \"\\u2581\\u13e7\\u13cd\\u13a9\\u13c3\": 7051,\n    \"\\u2581\\u13a0\\u13c2\\u13b5\\u13be\": 7052,\n    \"\\u2581\\u13a0\\u13a9\\u13b8\\u13d9\\u13d7\": 7053,\n    \"\\u2581\\u13a4\\u13ea\\u13c1\": 7054,\n    \"\\u2581\\u13e7\\u13c5\\u13aa\\u13e4\": 7055,\n    \"\\u2581\\u13e7\\u13c2\\u13cd\\u13d3\": 7056,\n    \"\\u2581\\u13a4\\u13c1\\u13ab\": 7057,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13aa\\u13b2\": 7058,\n    \"\\u2581\\u13da\\u13d1\\u13f0\\u13d2\": 7059,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\": 7060,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d9\\u13a9\\u13af\": 7061,\n    \"\\u2581\\u13ef\\u13a9\\u13f0\\u13b8\\u13ad\": 7062,\n    \"\\u2581\\u13a0\\u13ef\\u13eb\\u13cd\": 7063,\n    \"\\u2581\\u13d7\\u13bb\\u13be\": 7064,\n    \"\\u2581\\u13da\\u13be\\u13d4\\u13c5\\u13a9\": 7065,\n    \"\\u13b5\\u13cd\\u13d4\\u13c5\\u13af\": 7066,\n    \"\\u13a7\\u13c1\\u13d7\": 7067,\n    \"\\u13b7\\u13e4\\u13b4\\u13a2\": 7068,\n    \"\\u2581\\u13a4\\u13c1\\u13b8\\u13d9\\u13d7\": 7069,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 7070,\n    \"\\u2581\\u13aa\\u13b9\\u13b5\\u13f1\": 7071,\n    \"\\u2581\\u13a4\\u13c2\\u13b6\\u13d0\\u13c5\": 7072,\n    \"\\u2581\\u13c2\\u13da\\u13db\\u13c1\\u13b8\": 7073,\n    \"\\u2581\\u13a6\\u13b5\\u13a1\\u13b5\": 7074,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13af\\u13f3\": 7075,\n    \"\\u2581\\u13d7\\u13e4\\u13c5\\u13d2\": 7076,\n    \"\\u13a8\\u13ae\\u13a9\": 7077,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13b1\\u13d2\\u13a9\": 7078,\n    \"\\u2581\\u13d5\\u13e5\\u13a7\\u13c5\": 7079,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c5\": 7080,\n    \"\\u2581\\u13c2\\u13aa\\u13af\": 7081,\n    \"\\u2581\\u13c4\\u13ea\\u13a1\\u13a2\": 7082,\n    \"\\u2581\\u13e7\\u13ea\\u13b3\": 7083,\n    \"\\u2581\\u13a3\\u13a6\\u13db\\u13a6\\u13c5\\u13af\": 7084,\n    \"\\u2581\\u13a3\\u13a6\\u13e3\\u13c5\\u13a9\": 7085,\n    \"\\u2581\\u13a3\\u13e5\\u13ec\\u13c2\\u13cd\\u13ac\": 7086,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13c5\\u13a2\": 7087,\n    \"\\u2581\\u13a4\\u13d4\\u13b3\\u13ec\\u13cd\\u13ac\\u13a2\": 7088,\n    \"\\u2581\\u13a3\\u13a6\\u13e4\\u13b5\\u13a6\": 7089,\n    \"\\u2581\\u13ee\\u13d3\\u13e5\": 7090,\n    \"\\u2581\\u13da\\u13ea\\u13f2\\u13c1\\u13a2\": 7091,\n    \"\\u2581\\u13a4\\u13ea\\u13d3\\u13cd\\u13d7\\u13f1\": 7092,\n    \"\\u13c5\\u13ec\\u13d2\": 7093,\n    \"\\u2581\\u13a4\\u13e2\\u13ac\\u13a9\": 7094,\n    \"\\u2581\\u13a0\\u13eb\\u13be\\u13a8\\u13cd\\u13d7\": 7095,\n    \"\\u13f2\\u13d3\\u13ac\": 7096,\n    \"\\u2581\\u13a9\\u13e5\": 7097,\n    \"\\u2581\\u13a4\\u13cd\\u13a9\\u13d3\\u13ce\\u13a2\": 7098,\n    \"\\u13a6\\u13d4\\u13bf\\u13a2\": 7099,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\\u13cc\": 7100,\n    \"\\u2581\\u13ae\\u13d9\\u13b2\\u13a2\": 7101,\n    \"\\u2581\\u13a4\\u13a7\\u13b5\\u13a2\\u13cd\\u13d7\\u13f1\": 7102,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13d7\": 7103,\n    \"\\u2581\\u13a4\\u13c2\\u13ec\\u13c2\\u13d2\": 7104,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\\u13c5\": 7105,\n    \"\\u2581\\u13c5\\u13d3\\u13cd\\u13a9\": 7106,\n    \"\\u13ac\\u13c2\\u13db\": 7107,\n    \"\\u2581\\u13e5\\u13e7\\u13cf\": 7108,\n    \"\\u2581\\u13a4\\u13db\\u13db\\u13c5\\u13a9\": 7109,\n    \"\\u2581\\u13f3\\u13c1\\u13ad\": 7110,\n    \"\\u2581\\u13e5\\u13e4\\u13be\": 7111,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13d2\": 7112,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c5\\u13a2\": 7113,\n    \"\\u2581\\u13a0\\u13d7\\u13c5\\u13d3\": 7114,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b6\\u13d4\\u13c5\": 7115,\n    \"\\u2581\\u13a1\\u13e5\\u13a6\\u13d9\\u13a5\": 7116,\n    \"\\u2581\\u13e7\\u13c4\\u13ec\\u13cd\\u13d7\": 7117,\n    \"\\u2581\\u13a0\\u13c8\": 7118,\n    \"\\u2581\\u13e4\\u13d9\\u13ad\": 7119,\n    \"\\u13ec\\u13a5\\u13af\": 7120,\n    \"\\u2581\\u13a6\\u13b7\\u13a9\": 7121,\n    \"\\u2581\\u13e3\\u13e0\\u13be\\u13cd\\u13d7\": 7122,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\": 7123,\n    \"\\u13db\\u13db\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 7124,\n    \"\\u2581\\u13a1\\u13d3\\u13cd\\u13d7\\u13f1\": 7125,\n    \"\\u2581\\u13d5\\u13d3\\u13d3\\u13aa\\u13b2\\u13f3\": 7126,\n    \"\\u2581\\u13a0\\u13d1\\u13eb\\u13cd\": 7127,\n    \"\\u2581\\u13a2\\u13d3\\u13b5\\u13ae\\u13b5\\u13a9\": 7128,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 7129,\n    \"\\u2581\\u13a4\\u13c3\\u13ae\\u13b8\\u13af\": 7130,\n    \"\\u2581\\u13a4\\u13b5\\u13d3\\u13cd\\u13d4\\u13c5\": 7131,\n    \"\\u13b3\\u13eb\": 7132,\n    \"\\u2581\\u13aa\\u13e2\\u13d7\\u13f1\": 7133,\n    \"\\u2581\\u13a2\\u13b3\\u13bb\": 7134,\n    \"\\u2581\\u13ed\\u13b6\\u13d2\\u13cd\\u13db\": 7135,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\\u13f1\": 7136,\n    \"\\u13a9\\u13a6\\u13d8\\u13db\": 7137,\n    \"\\u13d5\\u13a8\\u13cd\\u13d7\": 7138,\n    \"\\u2581\\u13da\\u13ed\\u13aa\\u13d4\\u13c1\\u13a2\": 7139,\n    \"\\u13d5\\u13ad\\u13f2\": 7140,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13b2\\u13a9\": 7141,\n    \"\\u2581\\u13f1\\u13a6\\u13d4\\u13ad\": 7142,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b0\": 7143,\n    \"\\u2581\\u13a0\\u13c1\\u13a8\": 7144,\n    \"\\u2581\\u13a6\\u13b5\\u13d9\\u13d7\": 7145,\n    \"\\u2581\\u13a9\\u13a6\\u13a8\\u13cd\\u13db\\u13f1\": 7146,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\\u13f1\": 7147,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13ad\": 7148,\n    \"\\u2581\\u13e7\\u13d3\\u13b5\": 7149,\n    \"\\u2581\\u13d3\\u13f0\\u13d9\\u13b3\\u13db\\u13a2\": 7150,\n    \"\\u2581\\u13a2\\u13a8\\u13a6\": 7151,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13d2\\u13a9\": 7152,\n    \"\\u2581\\u13aa\\u13b5\\u13a9\": 7153,\n    \"\\u2581\\u13e3\\u13c1\\u13e8\\u13a2\": 7154,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13db\\u13ce\\u13a2\": 7155,\n    \"\\u2581\\u13a4\\u13b5\\u13d6\\u13b8\\u13c1\\u13a2\": 7156,\n    \"\\u2581\\u13a2\\u13f3\\u13c5\\u13c2\": 7157,\n    \"\\u13b3\\u13c1\\u13b8\\u13af\": 7158,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13d7\\u13f1\": 7159,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13e4\\u13c3\": 7160,\n    \"\\u2581\\u13da\\u13ea\\u13df\\u13cc\\u13c5\": 7161,\n    \"\\u13a9\\u13cd\\u13ac\\u13a2\": 7162,\n    \"\\u2581\\u13d7\\u13e3\\u13b5\\u13a2\": 7163,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 7164,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13e4\\u13d7\": 7165,\n    \"\\u2581\\u13d7\\u13c2\\u13c1\\u13af\": 7166,\n    \"\\u2581\\u13d3\\u13d8\\u13c1\\u13b2\": 7167,\n    \"\\u2581\\u13ec\\u13e5\": 7168,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13b4\\u13a2\": 7169,\n    \"\\u2581\\u13f3\\u13db\\u13be\": 7170,\n    \"\\u2581\\u13c2\\u13d3\\u13c5\": 7171,\n    \"\\u13cf\\u13d9\\u13b4\": 7172,\n    \"\\u2581\\u13a0\\u13a9\\u13be\\u13eb\\u13f1\": 7173,\n    \"\\u13df\\u13b6\\u13cd\\u13d4\\u13c5\": 7174,\n    \"\\u2581\\u13e7\\u13b6\\u13ce\\u13a2\": 7175,\n    \"\\u2581\\u13d5\\u13e6\\u13d5\\u13cd\\u13d7\": 7176,\n    \"\\u2581\\u13f1\\u13d5\\u13ac\": 7177,\n    \"\\u2581\\u13a8\\u13a6\\u13b5\\u13e5\\u13d9\\u13c1\": 7178,\n    \"\\u2581\\u13a1\\u13d3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 7179,\n    \"\\u13d9\\u13d4\\u13c5\\u13a9\": 7180,\n    \"\\u2581\\u13a2\\u13e5\\u13f0\\u13b8\\u13ad\": 7181,\n    \"\\u2581\\u13a4\\u13f2\\u13cd\\u13d4\\u13c5\\u13af\": 7182,\n    \"\\u2581\\u13f4\\u13ac\\u13be\": 7183,\n    \"\\u13af\\u13cd\\u13d4\\u13c5\": 7184,\n    \"\\u2581\\u13a2\\u13ef\\u13cb\\u13c1\": 7185,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13d7\\u13f1\": 7186,\n    \"\\u2581\\u13c7\\u13af\": 7187,\n    \"\\u2581\\u13ac\\u13a8\\u13f3\": 7188,\n    \"\\u2581\\u13e5\\u13c2\\u13e3\\u13db\\u13c1\\u13b8\": 7189,\n    \"\\u13a6\\u13a8\\u13d7\\u13f3\": 7190,\n    \"\\u2581\\u13d9\\u13cc\": 7191,\n    \"\\u13e8\\u13d2\\u13a9\": 7192,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13ad\": 7193,\n    \"\\u2581\\u13a4\\u13ef\\u13a0\": 7194,\n    \"\\u2581\\u13a2\\u13e7\\u13cd\\u13d7\": 7195,\n    \"\\u13a4\\u13c5\\u13d7\": 7196,\n    \"\\u2581\\u13c2\\u13d3\\u13d5\\u13d8\\u13f4\\u13af\\u13d2\\u13a2\": 7197,\n    \"\\u2581\\u13d7\\u13a6\\u13c1\\u13b8\\u13a2\": 7198,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\": 7199,\n    \"\\u13be\\u13d3\\u13e1\\u13a9\": 7200,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\\u13b8\\u13a9\": 7201,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13aa\": 7202,\n    \"\\u2581\\u13da\\u13c2\\u13b2\\u13a2\": 7203,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13da\": 7204,\n    \"\\u2581\\u13e9\\u13cc\": 7205,\n    \"\\u2581\\u13d3\\u13f0\\u13d9\\u13b3\\u13db\": 7206,\n    \"\\u13e5\\u13b3\\u13eb\\u13ce\\u13b2\": 7207,\n    \"\\u2581\\u13da\\u13ef\\u13cd\\u13d7\": 7208,\n    \"\\u2581\\u13e6\\u13d5\": 7209,\n    \"\\u2581\\u13a4\\u13d7\\u13b4\\u13b2\\u13cd\\u13ac\": 7210,\n    \"\\u13a6\\u13d9\\u13cd\\u13d9\": 7211,\n    \"\\u13cc\\u13bb\": 7212,\n    \"\\u2581\\u13d7\\u13c6\\u13c4\\u13ec\": 7213,\n    \"\\u13aa\\u13b2\\u13cd\\u13ac\": 7214,\n    \"\\u2581\\u13a4\\u13c2\\u13c5\\u13c5\\u13a2\": 7215,\n    \"\\u13cd\\u13a6\\u13c5\\u13be\": 7216,\n    \"\\u13ac\\u13d7\\u13ad\": 7217,\n    \"\\u13b6\\u13d8\": 7218,\n    \"\\u2581\\u13a2\\u13f3\\u13f2\": 7219,\n    \"\\u2581\\u13a3\\u13cf\\u13c9\\u13cd\\u13aa\": 7220,\n    \"\\u2581\\u13c6\\u13b7\": 7221,\n    \"\\u2581\\u13c2\\u13a8\\u13d2\": 7222,\n    \"\\u2581\\u13a4\\u13ec\\u13c2\\u13d2\\u13a9\": 7223,\n    \"\\u2581\\u13a4\\u13c1\\u13d9\\u13b8\\u13a2\": 7224,\n    \"\\u2581\\u13a4\\u13db\\u13d7\\u13f1\": 7225,\n    \"\\u2581\\u13d1\\u13d3\\u13a8\": 7226,\n    \"\\u2581\\u13a4\\u13d3\\u13f0\": 7227,\n    \"\\u2581\\u13a4\\u13ef\\u13c5\\u13ae\\u13a2\": 7228,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13e8\\u13af\": 7229,\n    \"\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 7230,\n    \"\\u13c8\\u13a6\": 7231,\n    \"\\u2581\\u13d1\\u13be\\u13b4\\u13a2\\u13f3\": 7232,\n    \"\\u13d7\\u13a3\\u13c8\": 7233,\n    \"\\u2581\\u13a0\\u13a9\\u13c7\\u13d3\\u13b8\\u13a2\": 7234,\n    \"\\u2581\\u13d5\\u13a6\\u13cd\\u13a9\\u13b8\\u13a2\": 7235,\n    \"\\u2581\\u13a4\\u13a9\\u13b8\\u13d7\": 7236,\n    \"\\u2581\\u13d5\\u13a6\\u13b8\\u13a2\": 7237,\n    \"\\u13e9\\u13cc\\u13d9\\u13f0\": 7238,\n    \"\\u2581\\u13f0\\u13ae\\u13cd\\u13d7\": 7239,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\\u13b2\\u13be\": 7240,\n    \"\\u2581\\u13d7\\u13b9\": 7241,\n    \"\\u2581\\u13a4\\u13da\\u13d3\\u13b3\": 7242,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13ae\\u13b5\\u13ac\\u13a2\": 7243,\n    \"\\u2581\\u13a0\\u13c7\\u13b5\\u13cd\\u13d7\": 7244,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13d2\\u13a2\": 7245,\n    \"\\u2581\\u13a4\\u13b6\\u13cf\": 7246,\n    \"\\u2581\\u13cc\\u13c9\\u13af\\u13f3\": 7247,\n    \"\\u13ef\\u13cd\\u13db\": 7248,\n    \"\\u13e9\\u13db\\u13ae\\u13a2\": 7249,\n    \"\\u2581\\u13a0\\u13c1\\u13ac\": 7250,\n    \"\\u2581\\u13a4\\u13a9\\u13b8\\u13a9\": 7251,\n    \"\\u2581\\u13a0\\u13d3\\u13b6\\u13c2\\u13a8\": 7252,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13ce\\u13b4\\u13a2\": 7253,\n    \"\\u2581\\u13a0\\u13df\\u13cd\\u13d5\": 7254,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b8\": 7255,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13db\\u13c5\\u13a9\": 7256,\n    \"\\u2581\\u13ae\\u13b5\": 7257,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13e8\\u13c3\": 7258,\n    \"\\u2581\\u13a0\\u13d4\\u13b8\": 7259,\n    \"\\u2581\\u13a4\\u13d5\\u13b6\\u13b0\\u13af\\u13cd\\u13d7\": 7260,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\": 7261,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13a6\\u13c5\\u13af\": 7262,\n    \"\\u2581\\u13e7\\u13a6\\u13b4\\u13c5\": 7263,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 7264,\n    \"\\u2581\\u13eb\\u13da\\u13b7\\u13e4\\u13b4\": 7265,\n    \"\\u13ce\\u13b5\\u13d4\\u13c1\": 7266,\n    \"\\u13c4\\u13aa\\u13eb\\u13d2\\u13ad\": 7267,\n    \"\\u13d5\\u13b8\\u13a9\": 7268,\n    \"\\u13cf\\u13b3\\u13d7\": 7269,\n    \"\\u2581\\u13a6\\u13c6\": 7270,\n    \"\\u13a4\\u13d9\\u13af\\u13f3\\u13ad\": 7271,\n    \"\\u2581\\u13f1\\u13c1\": 7272,\n    \"\\u13e5\\u13b8\\u13c9\\u13d4\\u13c5\\u13af\": 7273,\n    \"\\u2581\\u13a8\\u13d9\": 7274,\n    \"\\u2581\\u13a6\\u13a2\\u13d2\\u13a2\": 7275,\n    \"\\u2581\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 7276,\n    \"\\u2581\\u13a3\\u13b3\": 7277,\n    \"\\u2581\\u13af\\u13a6\\u13d4\\u13b2\\u13a2\": 7278,\n    \"ree\": 7279,\n    \"\\u13d3\\u13db\\u13c1\\u13b8\": 7280,\n    \"\\u13f4\\u13c5\\u13ae\": 7281,\n    \"\\u2581\\u13e4\\u13a6\": 7282,\n    \"\\u13d1\\u13b6\\u13d7\": 7283,\n    \"\\u2581\\u13a6\\u13d7\\u13ad\": 7284,\n    \"\\u2581\\u13a6\\u13ef\\u13b8\\u13a2\": 7285,\n    \"\\u13c2\\u13f4\\u13d7\\u13f1\": 7286,\n    \"\\u2581\\u13a4\\u13ac\\u13ad\\u13b7\\u13f4\": 7287,\n    \"\\u13be\\u13be\\u13db\\u13c1\\u13ad\": 7288,\n    \"\\u2581\\u13a4\\u13d4\\u13b7\\u13a9\\u13cd\\u13ac\": 7289,\n    \"\\u2581\\u13e7\\u13c4\\u13ec\\u13a2\": 7290,\n    \"\\u13a9\\u13cd\\u13a8\": 7291,\n    \"\\u13d3\\u13e2\\u13a9\": 7292,\n    \"\\u2581\\u13e3\\u13ef\": 7293,\n    \"\\u2581\\u13a4\\u13cd\\u13da\\u13a2\\u13d2\\u13a9\": 7294,\n    \"\\u2581\\u13d3\\u13be\\u13d7\\u13d4\\u13cd\\u13a8\": 7295,\n    \"\\u2581\\u13a4\\u13e6\\u13cd\\u13d4\\u13c1\": 7296,\n    \"\\u13a6\\u13c5\\u13cd\\u13a8\\u13c2\": 7297,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13b8\\u13a9\": 7298,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13c1\\u13b8\\u13a9\": 7299,\n    \"\\u2581\\u13a0\\u13c6\\u13b4\\u13c2\\u13d9\\u13b8\": 7300,\n    \"\\u13cd\\u13aa\\u13af\\u13e7\\u13c8\": 7301,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13a9\\u13c9\": 7302,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13ea\\u13cd\\u13aa\": 7303,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\\u13b2\\u13d2\\u13a9\": 7304,\n    \"\\u2581\\u13e3\\u13cd\\u13d3\": 7305,\n    \"\\u13eb\\u13cf\": 7306,\n    \"\\u2581\\u13da\\u13b4\\u13af\\u13cc\\u13c5\\u13a2\": 7307,\n    \"\\u2581\\u13e3\\u13d3\\u13c1\\u13d7\": 7308,\n    \"\\u2581\\u13d7\\u13e5\\u13a6\\u13f4\\u13b5\\u13a8\\u13a2\": 7309,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13f4\\u13b5\\u13a8\\u13a2\": 7310,\n    \"\\u2581\\u13e7\\u13a6\\u13f4\\u13b5\\u13a8\\u13a2\": 7311,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13ce\\u13a2\": 7312,\n    \"\\u13d3\\u13a2\\u13c5\\u13d2\\u13a9\": 7313,\n    \"\\u13eb\\u13d2\\u13d7\": 7314,\n    \"\\u13c2\\u13c5\\u13aa\\u13a0\": 7315,\n    \"\\u2581\\u13a2\\u13d5\\u13b2\\u13a2\": 7316,\n    \"\\u2581\\u13e9\\u13a9\\u13f4\": 7317,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13cd\\u13ac\\u13a9\": 7318,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13b5\\u13ce\": 7319,\n    \"\\u13b5\\u13ae\": 7320,\n    \"\\u2581\\u13a6\\u13c4\\u13b8\\u13d2\\u13a2\": 7321,\n    \"\\u2581\\u13a4\\u13be\\u13e3\": 7322,\n    \"\\u2581\\u13a6\\u13b6\\u13db\": 7323,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e8\\u13af\": 7324,\n    \"\\u2581\\u13e5\\u13c2\\u13e5\": 7325,\n    \"\\u2581\\u13a1\\u13aa\\u13a2\": 7326,\n    \"\\u2581\\u13a4\\u13ec\\u13b4\\u13a2\": 7327,\n    \"\\u2581\\u13e7\\u13c2\\u13e5\": 7328,\n    \"\\u2581\\u13a0\\u13aa\\u13b5\\u13f0\\u13cd\\u13a9\": 7329,\n    \"\\u13aa\\u13e2\\u13d4\\u13c5\\u13af\": 7330,\n    \"\\u2581\\u13a3\\u13c1\\u13af\": 7331,\n    \"\\u2581\\u13ad\\u13b3\": 7332,\n    \"\\u2581\\u13a2\\u13e3\\u13a6\\u13d4\\u13c5\\u13ce\": 7333,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\\u13d7\\u13f1\": 7334,\n    \"\\u13d3\\u13b3\\u13a9\": 7335,\n    \"\\u2581\\u13d7\\u13af\\u13cd\\u13d7\\u13f1\": 7336,\n    \"\\u2581\\u13ac\\u13cd\\u13a6\\u13b3\": 7337,\n    \"\\u13f0\\u13b8\\u13d7\\u13f1\": 7338,\n    \"\\u2581\\u13a2\\u13b6\": 7339,\n    \"\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 7340,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13a9\": 7341,\n    \"\\u13b5\\u13ae\\u13b5\\u13cd\\u13d9\\u13d7\": 7342,\n    \"\\u2581\\u13e5\\u13c1\\u13b8\\u13a2\": 7343,\n    \"\\u2581\\u13c8\\u13b5\\u13a9\\u13f1\": 7344,\n    \"\\u2581\\u13d3\\u13c2\\u13c3\": 7345,\n    \"\\u13b5\\u13b7\\u13ac\": 7346,\n    \"\\u13d3\\u13c5\\u13d6\\u13cd\\u13d7\": 7347,\n    \"\\u2581\\u13ed\\u13b6\": 7348,\n    \"\\u13e5\\u13c9\\u13b3\": 7349,\n    \"\\u2581\\u13da\\u13c2\\u13c5\\u13e8\": 7350,\n    \"\\u13cf\\u13d9\": 7351,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b5\": 7352,\n    \"\\u13e2\\u13eb\\u13cd\\u13d9\\u13d7\": 7353,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13e5\\u13d9\\u13c5\": 7354,\n    \"\\u2581\\u13a0\\u13bc\\u13af\": 7355,\n    \"\\u13cf\\u13d9\\u13ae\": 7356,\n    \"\\u2581\\u13a2\\u13ef\\u13db\\u13c1\\u13d7\\u13f1\": 7357,\n    \"\\u2581\\u13e7\\u13cd\\u13aa\\u13b8\": 7358,\n    \"\\u2581\\u13d5\\u13a6\\u13da\\u13e9\\u13d7\\u13d2\\u13a2\": 7359,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13c5\\u13a2\": 7360,\n    \"\\u13d3\\u13ce\\u13aa\\u13a9\\u13cd\\u13d7\\u13f1\": 7361,\n    \"\\u2581\\u13d5\\u13ae\": 7362,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13af\": 7363,\n    \"\\u2581\\u13a0\\u13f2\\u13df\\u13a8\": 7364,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 7365,\n    \"\\u2581\\u13a0\\u13a6\\u13b8\": 7366,\n    \"\\u2581\\u13a4\\u13e3\\u13d7\": 7367,\n    \"\\u13ea\\u13db\": 7368,\n    \"\\u2581\\u13ac\\u13a9\\u13cd\\u13d7\": 7369,\n    \"\\u2581\\u13e7\\u13c1\\u13d7\": 7370,\n    \"\\u13c6\\u13c2\": 7371,\n    \"\\u2581\\u13d3\\u13f0\\u13e3\": 7372,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 7373,\n    \"\\u13a9\\u13b3\\u13be\\u13b3\\u13d7\\u13cd\": 7374,\n    \"\\u13c2\\u13cd\\u13d3\\u13e9\\u13da\\u13a6\": 7375,\n    \"\\u2581\\u13a3\\u13a6\\u13be\": 7376,\n    \"\\u2581\\u13d9\\u13d3\\u13e5\": 7377,\n    \"\\u2581\\u13a0\\u13aa\\u13b2\\u13cd\\u13ac\": 7378,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13db\\u13d7\\u13cd\": 7379,\n    \"\\u13e3\\u13d3\\u13c5\\u13db\\u13be\": 7380,\n    \"\\u13af\\u13a0\\u13be\": 7381,\n    \"\\u13c2\\u13a8\\u13d2\\u13be\": 7382,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\\u13b0\": 7383,\n    \"\\u13a4\\u13ac\\u13eb\\u13f3\": 7384,\n    \"\\u13c4\\u13db\\u13d7\": 7385,\n    \"\\u2581\\u13e7\\u13ed\\u13d3\": 7386,\n    \"\\u2581\\u13a0\\u13ef\\u13a5\\u13a2\": 7387,\n    \"\\u2581\\u13a4\\u13dc\\u13c5\\u13db\\u13a2\": 7388,\n    \"\\u2581\\u13a0\\u13aa\\u13b2\": 7389,\n    \"\\u2581\\u13a4\\u13d7\\u13cd\\u13a6\\u13e2\": 7390,\n    \"\\u2581\\u13d7\\u13a6\\u13b4\\u13f4\": 7391,\n    \"\\u2581\\u13a4\\u13e2\\u13e8\": 7392,\n    \"or\": 7393,\n    \"\\u13a8\\u13eb\\u13cd\\u13d7\": 7394,\n    \"\\u2581\\u13a4\\u13c2\\u13e7\\u13c8\\u13cd\": 7395,\n    \"\\u13d3\\u13c1\\u13b4\\u13a2\": 7396,\n    \"\\u2581\\u13d7\\u13c4\\u13ec\\u13cd\\u13d7\": 7397,\n    \"\\u13cc\\u13c1\\u13a2\": 7398,\n    \"\\u13c2\\u13a2\\u13db\": 7399,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 7400,\n    \"\\u13ea\\u13d2\\u13a9\": 7401,\n    \"\\u2581\\u13c6\\u13a9\": 7402,\n    \"\\u13d5\\u13d7\\u13f4\": 7403,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\\u13ea\\u13ce\": 7404,\n    \"\\u13f2\\u13af\\u13ce\\u13d7\": 7405,\n    \"\\u2581\\u13f3\\u13be\\u13b5\\u13aa\": 7406,\n    \"\\u2581\\u13a7\\u13c3\\u13b2\\u13cd\": 7407,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\\u13cd\\u13a8\": 7408,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d9\\u13d7\": 7409,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13a6\\u13b8\": 7410,\n    \"\\u13f1\\u13b5\\u13d9\\u13b8\": 7411,\n    \"\\u2581\\u13c5\\u13e9\\u13cd\\u13d7\": 7412,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13ce\\u13c3\": 7413,\n    \"\\u2581\\u13f3\\u13f0\\u13b8\\u13c1\": 7414,\n    \"\\u13a9\\u13b7\\u13eb\": 7415,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13ec\\u13a2\": 7416,\n    \"\\u13c4\\u13cd\\u13db\": 7417,\n    \"\\u13d3\\u13c2\\u13d9\\u13a6\": 7418,\n    \"\\u2581\\u13ed\\u13cf\\u13b3\\u13db\\u13c1\": 7419,\n    \"\\u13af\\u13d0\\u13d7\": 7420,\n    \"\\u2581\\u13a0\\u13cc\\u13c5\": 7421,\n    \"\\u13d5\\u13b8\": 7422,\n    \"\\u2581\\u13c3\\u13b4\\u13cd\\u13c9\": 7423,\n    \"\\u13ac\\u13c1\\u13d7\": 7424,\n    \"\\u2581\\u13d3\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\": 7425,\n    \"\\u13df\\u13cf\\u13cd\\u13aa\\u13a2\": 7426,\n    \"\\u2581\\u13cf\\u13c9\": 7427,\n    \"\\u13d3\\u13a2\\u13c5\\u13ce\\u13a2\": 7428,\n    \"\\u2581\\u13a8\\u13e3\\u13b5\\u13ae\\u13b5\": 7429,\n    \"\\u13c1\\u13c9\\u13a2\\u13cd\\u13d7\\u13f1\": 7430,\n    \"\\u2581\\u13d5\\u13a4\\u13b4\": 7431,\n    \"\\u13d9\\u13d9\\u13f1\": 7432,\n    \"\\u13aa\\u13ef\\u13db\": 7433,\n    \"\\u2581\\u13f4\\u13be\": 7434,\n    \"\\u13db\\u13a6\\u13c1\\u13b4\": 7435,\n    \"\\u13f0\\u13ae\\u13cd\\u13d7\": 7436,\n    \"\\u2581\\u13a6\\u13b8\\u13a2\": 7437,\n    \"\\u2581\\u13a0\\u13df\": 7438,\n    \"\\u2581\\u13a4\\u13c7\\u13d3\\u13b8\\u13a2\": 7439,\n    \"\\u2581\\u13eb\\u13d7\\u13a9\": 7440,\n    \"\\u2581\\u13a4\\u13be\\u13a5\": 7441,\n    \"\\u13cd\\u13d7\\u13cd\\u13aa\": 7442,\n    \"\\u13c5\\u13ac\": 7443,\n    \"\\u13cd\\u13d4\\u13c1\\u13b4\": 7444,\n    \"\\u2581\\u13e3\\u13d3\\u13e1\\u13d7\\u13cd\\u13aa\": 7445,\n    \"\\u2581\\u13a5\\u13a9\\u13c2\\u13d0\\u13d7\": 7446,\n    \"\\u2581\\u13e7\\u13c2\\u13d7\\u13f1\": 7447,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\\u13e4\\u13b8\": 7448,\n    \"\\u2581\\u13a0\\u13c2\\u13d9\\u13be\\u13a5\\u13a2\": 7449,\n    \"\\u13c6\\u13a7\\u13bf\\u13c5\\u13a9\": 7450,\n    \"\\u2581\\u13a6\\u13e5\\u13ef\\u13b5\\u13e5\\u13d9\\u13c1\": 7451,\n    \"\\u13f2\\u13cd\\u13d9\\u13d3\\u13c1\\u13d7\": 7452,\n    \"\\u13b8\\u13c9\\u13d9\\u13a2\": 7453,\n    \"\\u2581\\u13cd\\u13a9\\u13b5\": 7454,\n    \"\\u2581\\u13a0\\u13a9\\u13aa\\u13b5\\u13f0\": 7455,\n    \"\\u2581\\u13a6\\u13b5\\u13e3\": 7456,\n    \"\\u2581\\u13d5\\u13a6\\u13db\\u13a2\": 7457,\n    \"\\u13e5\\u13a9\": 7458,\n    \"\\u13c2\\u13c6\\u13d8\\u13ae\\u13cd\\u13d7\": 7459,\n    \"\\u2581\\u13a4\\u13b5\\u13c1\\u13e8\\u13a2\": 7460,\n    \"\\u2581\\u13f1\\u13c2\\u13ac\\u13c2\": 7461,\n    \"\\u13e5\\u13cd\\u13db\\u13d7\\u13cd\\u13d9\\u13d7\": 7462,\n    \"\\u2581\\u13a0\\u13c4\\u13ec\\u13cd\\u13d7\": 7463,\n    \"\\u2581\\u13a8\\u13a6\\u13ce\\u13b8\": 7464,\n    \"\\u2581\\u13f1\\u13d3\\u13d3\": 7465,\n    \"\\u13ae\\u13d7\": 7466,\n    \"\\u13d3\\u13cc\\u13b3\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 7467,\n    \"\\u13cf\\u13b3\\u13db\\u13d9\\u13d7\": 7468,\n    \"\\u13d4\\u13cd\\u13d7\": 7469,\n    \"\\u13a9\\u13b8\\u13d9\\u13d7\": 7470,\n    \"\\u2581\\u13d3\\u13f3\\u13d3\\u13b4\\u13c5\\u13a9\": 7471,\n    \"\\u2581\\u13a0\\u13ca\": 7472,\n    \"\\u13d3\\u13c5\\u13ec\\u13d7\": 7473,\n    \"\\u2581\\u13a4\\u13c5\\u13cf\\u13f4\\u13a2\": 7474,\n    \"\\u2581\\u13a4\\u13a8\\u13d3\\u13b5\\u13f4\\u13a2\": 7475,\n    \"\\u2581\\u13ef\\u13e5\": 7476,\n    \"\\u2581\\u13ed\\u13ef\\u13c5\\u13ae\\u13a2\": 7477,\n    \"\\u2581\\u13e7\\u13e9\\u13d4\\u13c1\": 7478,\n    \"\\u13d9\\u13af\\u13c9\": 7479,\n    \"\\u13c2\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 7480,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13c2\\u13cd\\u13a9\\u13c2\": 7481,\n    \"\\u13d3\\u13c5\\u13d8\": 7482,\n    \"\\u13c3\\u13ae\\u13cd\\u13a8\\u13cd\\u13d7\": 7483,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13c5\\u13d3\\u13d7\\u13cd\": 7484,\n    \"\\u2581\\u13a5\\u13cd\\u13a9\\u13c3\": 7485,\n    \"\\u13a7\\u13c1\\u13b8\\u13be\": 7486,\n    \"\\u13be\\u13d7\\u13c5\\u13d7\": 7487,\n    \"\\u2581\\u13a7\\u13b3\\u13e9\\u13d7\\u13d2\\u13a2\": 7488,\n    \"\\u2581\\u13d7\\u13a6\\u13da\\u13b2\\u13a2\": 7489,\n    \"\\u2581\\u13c3\\u13a6\\u13cd\": 7490,\n    \"\\u2581\\u13a4\\u13c3\\u13f4\": 7491,\n    \"\\u2581\\u13a4\\u13be\\u13de\": 7492,\n    \"\\u13be\\u13da\\u13a6\": 7493,\n    \"\\u2581\\u13c2\\u13e5\\u13cd\\u13a6\\u13c5\": 7494,\n    \"\\u13be\\u13d7\\u13c5\\u13ce\": 7495,\n    \"\\u2581\\u13f0\\u13ae\": 7496,\n    \"\\u13aa\\u13b5\\u13ac\\u13be\": 7497,\n    \"\\u13ad\\u13e2\": 7498,\n    \"\\u13b4\\u13db\": 7499,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13b8\": 7500,\n    \"\\u13cd\\u13a9\\u13ef\\u13c5\\u13a1\\u13b8\": 7501,\n    \"\\u13c1\\u13c9\\u13e4\\u13d7\\u13f1\": 7502,\n    \"\\u13e5\\u13db\\u13af\": 7503,\n    \"\\u13af\\u13f0\\u13c3\": 7504,\n    \"\\u13b5\\u13a2\\u13cd\\u13d7\": 7505,\n    \"\\u13aa\\u13b2\\u13cd\\u13d4\\u13c1\": 7506,\n    \"\\u2581\\u13e7\\u13c2\\u13c1\": 7507,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13a5\": 7508,\n    \"\\u2581\\u13a3\\u13e3\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\": 7509,\n    \"\\u13d0\\u13af\": 7510,\n    \"\\u2581\\u13d7\\u13a6\\u13b4\": 7511,\n    \"\\u2581\\u13a4\\u13db\\u13db\": 7512,\n    \"\\u2581\\u13a3\\u13d3\": 7513,\n    \"\\u2581\\u13e7\\u13c2\\u13a6\\u13d0\\u13a0\": 7514,\n    \"\\u2581\\u13a4\\u13af\\u13cd\\u13d7\": 7515,\n    \"\\u2581\\u13f1\\u13a6\\u13a8\\u13ce\": 7516,\n    \"\\u2581\\u13ac\\u13d7\\u13cd\\u13ac\\u13a9\": 7517,\n    \"\\u13b8\\u13cf\": 7518,\n    \"\\u2581\\u13a2\\u13d7\\u13d3\\u13db\\u13c1\": 7519,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13e2\": 7520,\n    \"\\u2581\\u13a2\\u13f3\\u13c2\\u13e8\": 7521,\n    \"\\u2581\\u13c9\\u13cf\": 7522,\n    \"\\u2581\\u13d3\\u13d3\\u13bf\\u13e9\\u13cd\\u13db\\u13a2\": 7523,\n    \"\\u13d3\\u13c1\\u13b2\\u13a9\": 7524,\n    \"\\u2581\\u13a2\\u13a6\\u13a6\\u13db\\u13a2\": 7525,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 7526,\n    \"\\u13c4\\u13aa\\u13a8\\u13cd\\u13d7\": 7527,\n    \"\\u2581\\u13a4\\u13be\\u13df\": 7528,\n    \"\\u2581\\u13a5\\u13b4\": 7529,\n    \"\\u2581\\u13f1\\u13a6\\u13b7\": 7530,\n    \"\\u13cd\\u13d3\\u13c1\\u13d7\": 7531,\n    \"\\u13d6\\u13c3\\u13af\": 7532,\n    \"\\u2581\\u13a4\\u13f2\\u13b4\\u13c3\": 7533,\n    \"\\u2581\\u13a6\\u13db\\u13a9\": 7534,\n    \"\\u2581\\u13a4\\u13c1\\u13b4\\u13a2\": 7535,\n    \"\\u13d3\\u13c2\\u13f4\": 7536,\n    \"\\u13b7\\u13e4\\u13b8\\u13ad\": 7537,\n    \"\\u2581\\u13b1\\u13c2\\u13b7\": 7538,\n    \"\\u13cd\\u13db\\u13c5\\u13af\": 7539,\n    \"\\u2581\\u13d7\\u13a6\\u13b3\": 7540,\n    \"\\u13a8\\u13f3\\u13d2\": 7541,\n    \"\\u2581\\u13d4\\u13b3\": 7542,\n    \"\\u13f0\\u13e8\": 7543,\n    \"\\u2581\\u13a6\\u13b6\\u13cd\\u13a8\": 7544,\n    \"\\u13cd\\u13d7\\u13f0\\u13ac\": 7545,\n    \"\\u13cd\\u13da\\u13a9\\u13ce\": 7546,\n    \"\\u13be\\u13b7\\u13d2\": 7547,\n    \"\\u13e0\\u13f1\\u13ad\": 7548,\n    \"\\u13c5\\u13e3\\u13db\": 7549,\n    \"\\u13e8\\u13db\": 7550,\n    \"\\u2581\\u13a2\\u13e5\\u13d4\\u13f2\\u13af\": 7551,\n    \"\\u13f3\\u13b6\\u13d7\": 7552,\n    \"\\u13da\\u13b2\": 7553,\n    \"\\u2581\\u13a4\\u13ec\\u13d2\": 7554,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13aa\\u13d2\": 7555,\n    \"\\u2581\\u13d5\\u13a6\\u13b8\": 7556,\n    \"\\u2581\\u13a4\\u13e3\\u13d9\": 7557,\n    \"\\u13c2\\u13a8\\u13c2\": 7558,\n    \"\\u13aa\\u13e9\\u13d7\\u13ad\": 7559,\n    \"\\u13f2\\u13a4\\u13b5\": 7560,\n    \"\\u13e3\\u13b5\\u13ae\\u13b5\\u13a6\": 7561,\n    \"\\u13c2\\u13ea\\u13a0\": 7562,\n    \"\\u13a5\\u13ad\": 7563,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\": 7564,\n    \"\\u13db\\u13c2\\u13d7\\u13cd\\u13d7\": 7565,\n    \"\\u2581\\u13f4\\u13eb\\u13ef\": 7566,\n    \"\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\": 7567,\n    \"\\u13a9\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 7568,\n    \"\\u2581\\u13a4\\u13e4\\u13b5\\u13aa\": 7569,\n    \"\\u13d9\\u13ad\\u13f4\": 7570,\n    \"\\u13c2\\u13a6\\u13db\": 7571,\n    \"\\u2581\\u13a4\\u13e4\\u13b5\\u13a6\\u13ef\": 7572,\n    \"\\u2581\\u13f1\\u13c2\\u13a8\": 7573,\n    \"\\u2581\\u13a6\\u13e5\\u13f2\": 7574,\n    \"\\u13a6\\u13d4\\u13af\\u13f3\": 7575,\n    \"\\u13a6\\u13d4\\u13d9\\u13a5\": 7576,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13f4\": 7577,\n    \"\\u13a6\\u13b8\\u13a2\\u13db\": 7578,\n    \"\\u2581\\u13e5\\u13eb\\u13a6\": 7579,\n    \"\\u2581\\u13ac\\u13e9\\u13c3\\u13b5\\u13cd\": 7580,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13b2\\u13a9\": 7581,\n    \"\\u13c3\\u13ce\\u13ad\": 7582,\n    \"\\u13af\\u13cd\\u13d7\\u13cd\\u13aa\": 7583,\n    \"\\u2581\\u13a3\\u13e3\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\": 7584,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\\u13af\": 7585,\n    \"\\u2581\\u13ed\\u13da\": 7586,\n    \"\\u13cc\\u13a1\": 7587,\n    \"\\u13d3\\u13ef\": 7588,\n    \"\\u13ac\\u13c1\\u13b2\": 7589,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c4\\u13f4\": 7590,\n    \"\\u13b7\\u13e5\\u13b8\": 7591,\n    \"\\u2581\\u13a4\\u13e3\\u13c1\": 7592,\n    \"\\u13f2\\u13af\\u13ce\\u13b4\": 7593,\n    \"\\u2581\\u13ec\\u13a9\\u13c2\": 7594,\n    \"\\u2581\\u13a0\\u13e4\\u13b8\\u13cd\": 7595,\n    \"\\u13a6\\u13d9\\u13a5\\u13d2\": 7596,\n    \"\\u13d3\\u13ac\\u13e9\\u13cd\\u13d3\\u13e9\\u13db\\u13db\": 7597,\n    \"\\u2581\\u13a4\\u13d9\\u13b4\\u13b0\\u13d2\\u13a9\": 7598,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d9\": 7599,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13b2\\u13a2\": 7600,\n    \"\\u2581\\u13da\\u13a7\\u13b5\": 7601,\n    \"\\u13da\\u13d3\\u13b3\\u13a1\": 7602,\n    \"\\u2581\\u13f4\\u13a6\\u13a6\": 7603,\n    \"\\u2581\\u13a0\\u13d7\\u13cd\\u13a9\": 7604,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13ae\": 7605,\n    \"\\u13d3\\u13e4\\u13b5\\u13db\": 7606,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13ec\\u13cd\": 7607,\n    \"\\u2581\\u13a6\\u13d9\\u13c9\": 7608,\n    \"\\u2581\\u13a4\\u13be\\u13e8\\u13ce\": 7609,\n    \"\\u2581\\u13af\\u13ac\": 7610,\n    \"\\u2581\\u13a2\\u13e4\\u13d9\\u13af\": 7611,\n    \"\\u2581\\u13a3\\u13ac\\u13d9\\u13d7\": 7612,\n    \"\\u13cd\\u13c9\\u13df\": 7613,\n    \"\\u2581\\u13a0\\u13a1\": 7614,\n    \"\\u13ea\\u13ce\\u13ae\\u13cd\\u13d7\": 7615,\n    \"\\u2581\\u13e7\\u13b5\\u13f0\": 7616,\n    \"\\u13ef\\u13c5\\u13d3\": 7617,\n    \"\\u2581\\u13a4\\u13d3\\u13e3\\u13a6\\u13b8\": 7618,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13b2\\u13a9\": 7619,\n    \"\\u13b3\\u13cd\\u13d3\": 7620,\n    \"\\u2581\\u13c2\\u13af\\u13be\": 7621,\n    \"\\u13cd\\u13a6\\u13c5\\u13e8\\u13af\": 7622,\n    \"\\u13f2\\u13b1\\u13cd\\u13a6\": 7623,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13cd\\u13a9\": 7624,\n    \"\\u13a6\\u13cd\\u13a9\\u13b6\\u13a9\": 7625,\n    \"\\u2581\\u13a1\\u13e3\\u13d1\\u13f0\": 7626,\n    \"\\u2581\\u13f4\\u13db\": 7627,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13ae\": 7628,\n    \"\\u13db\\u13a9\\u13cd\\u13ac\": 7629,\n    \"\\u2581\\u13e9\\u13f4\\u13cd\\u13d7\": 7630,\n    \"\\u2581\\u13a3\\u13a9\\u13ad\": 7631,\n    \"\\u13c3\\u13ae\\u13cd\\u13a9\": 7632,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\": 7633,\n    \"\\u2581\\u13f1\\u13ed\\u13c2\": 7634,\n    \"ri\": 7635,\n    \"\\u13e5\\u13c1\\u13b0\\u13a2\": 7636,\n    \"\\u2581\\u13d7\\u13f0\": 7637,\n    \"\\u13d7\\u13cd\\u13d9\\u13d7\": 7638,\n    \"\\u2581\\u13ac\\u13e9\\u13b5\": 7639,\n    \"\\u2581\\u13d8\\u13a9\": 7640,\n    \"\\u13d1\\u13e2\": 7641,\n    \"\\u2581\\u13e3\\u13cd\\u13a6\\u13c5\\u13aa\": 7642,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\": 7643,\n    \"\\u13cf\\u13b3\\u13d5\": 7644,\n    \"\\u13a4\\u13d9\": 7645,\n    \"\\u13a6\\u13da\\u13a9\\u13f1\": 7646,\n    \"\\u2581\\u13a6\\u13c2\\u13f4\\u13d7\": 7647,\n    \"\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\\u13f1\": 7648,\n    \"\\u13f2\\u13ae\\u13b8\": 7649,\n    \"\\u13c5\\u13c5\": 7650,\n    \"\\u13c9\\u13af\\u13f3\\u13ad\": 7651,\n    \"\\u2581\\u13a4\\u13da\\u13b5\\u13cd\\u13ac\\u13a2\": 7652,\n    \"\\u2581\\u13a6\\u13be\\u13b8\": 7653,\n    \"\\u2581\\u13e5\\u13e8\\u13f2\\u13ce\": 7654,\n    \"\\u13db\\u13d7\\u13f1\": 7655,\n    \"\\u2581\\u13a2\\u13dd\": 7656,\n    \"\\u13ab\\u13a2\\u13cd\": 7657,\n    \"\\u13b3\\u13ad\": 7658,\n    \"\\u13af\\u13ae\": 7659,\n    \"\\u13d7\\u13cd\\u13d7\\u13f1\": 7660,\n    \"\\u13f4\\u13a6\": 7661,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13b8\": 7662,\n    \"\\u2581\\u13da\\u13b4\\u13c1\\u13c3\": 7663,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c5\\u13d6\": 7664,\n    \"\\u2581\\u13a1\\u13b3\\u13ea\\u13f1\\u13c9\": 7665,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13a6\": 7666,\n    \"\\u2581\\u13d7\\u13e7\\u13ac\": 7667,\n    \"\\u2581\\u13d7\\u13e3\\u13b5\": 7668,\n    \"\\u2581\\u13c4\\u13be\\u13cd\\u13db\\u13a2\": 7669,\n    \"\\u13e5\\u13cc\\u13b3\\u13d9\\u13d7\": 7670,\n    \"\\u2581\\u13a0\\u13d1\\u13f0\": 7671,\n    \"\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13d7\": 7672,\n    \"\\u2581\\u13a0\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\": 7673,\n    \"\\u13d2\\u13c9\": 7674,\n    \"\\u13a8\\u13cf\": 7675,\n    \"\\u13d5\\u13cf\": 7676,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\": 7677,\n    \"\\u13f4\\u13c1\\u13d7\\u13f1\": 7678,\n    \"\\u2581\\u13f1\\u13e4\": 7679,\n    \"\\u13e5\\u13f0\\u13af\": 7680,\n    \"\\u13d8\\u13f2\\u13af\": 7681,\n    \"\\u2581\\u13d5\\u13ac\\u13d5\": 7682,\n    \"\\u13f2\\u13af\\u13ce\\u13b8\": 7683,\n    \"\\u2581\\u13c1\\u13b5\": 7684,\n    \"\\u13e3\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\": 7685,\n    \"\\u2581\\u13f1\\u13e5\\u13e9\\u13db\": 7686,\n    \"\\u13b8\\u13cd\\u13d9\\u13d7\\u13f1\": 7687,\n    \"\\u13ea\\u13b3\\u13c5\": 7688,\n    \"\\u2581\\u13a4\\u13be\\u13d1\": 7689,\n    \"\\u2581\\u13ca\": 7690,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13c6\\u13c2\\u13aa\": 7691,\n    \"\\u2581\\u13ce\\u13d7\": 7692,\n    \"\\u13d2\\u13c2\\u13b8\": 7693,\n    \"\\u2581\\u13a4\\u13f4\\u13b8\": 7694,\n    \"\\u2581\\u13d5\\u13e7\\u13aa\": 7695,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\\u13d4\\u13c5\": 7696,\n    \"\\u13db\\u13c1\\u13a2\": 7697,\n    \"\\u13e5\\u13ef\\u13c2\\u13cd\\u13a8\\u13cd\\u13d7\": 7698,\n    \"\\u13c2\\u13ef\\u13ea\\u13e8\": 7699,\n    \"\\u13be\\u13e1\\u13d7\\u13cd\\u13ac\": 7700,\n    \"\\u13d9\\u13d4\\u13c1\\u13a2\": 7701,\n    \"\\u2581\\u13e5\\u13a6\\u13c3\": 7702,\n    \"\\u2581\\u13c2\\u13ac\\u13a9\": 7703,\n    \"\\u13be\\u13cc\\u13a2\": 7704,\n    \"\\u13e8\\u13cd\\u13db\": 7705,\n    \"\\u13a4\\u13be\\u13e3\\u13c1\": 7706,\n    \"\\u13c1\\u13db\": 7707,\n    \"\\u2581\\u13d3\\u13a7\\u13bf\\u13e9\\u13d7\": 7708,\n    \"\\u13d3\\u13d1\\u13f2\": 7709,\n    \"\\u13cd\\u13d7\\u13f0\\u13d4\\u13c5\\u13a9\": 7710,\n    \"\\u2581\\u13a0\\u13a9\\u13be\\u13a5\": 7711,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13e8\": 7712,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\\u13af\": 7713,\n    \"\\u13e8\\u13c1\\u13b8\": 7714,\n    \"\\u2581\\u13e3\\u13a6\\u13b4\": 7715,\n    \"\\u2581\\u13e5\\u13a0\": 7716,\n    \"\\u13f2\\u13ce\\u13ae\\u13cd\\u13d7\": 7717,\n    \"\\u13c2\\u13d0\\u13d7\\u13f1\": 7718,\n    \"\\u2581\\u13d7\\u13c2\\u13c1\": 7719,\n    \"\\u2581\\u13a2\\u13e6\\u13af\\u13f3\\u13b2\\u13cd\": 7720,\n    \"\\u13e3\\u13a6\\u13ce\\u13cd\\u13d5\\u13cd\\u13d7\": 7721,\n    \"\\u13f2\\u13cd\\u13d3\": 7722,\n    \"\\u2581\\u13a2\\u13e3\\u13e0\\u13ef\\u13cd\\u13d9\\u13d7\": 7723,\n    \"\\u13be\\u13ab\\u13f4\\u13d7\": 7724,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13cd\\u13a8\": 7725,\n    \"\\u2581\\u13c2\\u13ac\\u13ea\\u13ce\": 7726,\n    \"\\u2581\\u13d3\\u13c2\\u13c1\\u13b2\": 7727,\n    \"\\u13f2\\u13ae\\u13b8\\u13a9\": 7728,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13b5\": 7729,\n    \"\\u13d7\\u13b9\": 7730,\n    \"\\u2581\\u13a4\\u13f2\\u13cf\\u13cd\\u13a8\": 7731,\n    \"\\u13c2\\u13a6\\u13a5\": 7732,\n    \"\\u2581\\u13ac\\u13c6\\u13d3\\u13c5\": 7733,\n    \"\\u13d9\\u13db\": 7734,\n    \"\\u13d4\\u13cd\\u13ac\": 7735,\n    \"\\u2581\\u13d3\\u13f3\\u13c1\": 7736,\n    \"\\u13cd\\u13d3\\u13c1\\u13b5\": 7737,\n    \"\\u13a6\\u13b4\\u13d4\\u13c2\": 7738,\n    \"\\u13cc\\u13db\\u13a2\": 7739,\n    \"\\u2581\\u13d3\\u13b4\\u13b2\\u13cd\\u13ac\": 7740,\n    \"\\u13ce\\u13af\": 7741,\n    \"\\u13b5\\u13aa\\u13c1\\u13b8\\u13af\": 7742,\n    \"\\u2581\\u13a0\\u13c2\\u13af\": 7743,\n    \"\\u13b4\\u13eb\\u13cd\\u13d4\\u13c5\": 7744,\n    \"\\u2581\\u13d8\\u13c2\": 7745,\n    \"\\u13d3\\u13d3\\u13b8\": 7746,\n    \"\\u13c3\\u13ae\\u13cd\\u13ac\": 7747,\n    \"\\u2581\\u13a8\\u13e5\\u13c1\\u13b8\": 7748,\n    \"\\u13c3\\u13f4\\u13b5\\u13cd\\u13d7\": 7749,\n    \"\\u13c5\\u13d9\": 7750,\n    \"\\u13f4\\u13d9\\u13d7\": 7751,\n    \"\\u2581\\u13d7\\u13a7\\u13bf\\u13e9\": 7752,\n    \"\\u13b5\\u13c2\": 7753,\n    \"\\u13d7\\u13a4\\u13e8\\u13ce\": 7754,\n    \"\\u2581\\u13ed\\u13e2\": 7755,\n    \"\\u13e5\\u13c1\\u13b4\": 7756,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13b5\\u13f0\": 7757,\n    \"\\u13b6\\u13d9\\u13d7\": 7758,\n    \"\\u2581\\u13a4\\u13d3\\u13b4\": 7759,\n    \"\\u13ae\\u13b8\\u13a9\": 7760,\n    \"\\u2581\\u13a0\\u13d3\\u13b4\": 7761,\n    \"\\u2581\\u13ef\\u13b5\": 7762,\n    \"\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\": 7763,\n    \"\\u13ce\\u13aa\\u13a9\\u13d2\": 7764,\n    \"\\u2581\\u13ae\\u13d9\": 7765,\n    \"\\u13b5\\u13d9\\u13b2\\u13a2\": 7766,\n    \"\\u2581\\u13f1\\u13a6\\u13d3\": 7767,\n    \"\\u13dc\\u13cf\\u13db\\u13a1\": 7768,\n    \"\\u2581\\u13c2\\u13da\\u13ea\": 7769,\n    \"\\u2581\\u13e7\\u13cd\\u13aa\": 7770,\n    \"\\u2581\\u13e3\\u13d7\": 7771,\n    \"\\u13a0\\u13a9\": 7772,\n    \"\\u13c5\\u13d7\\u13cd\\u13ac\": 7773,\n    \"\\u13d9\\u13a5\\u13a2\": 7774,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13db\": 7775,\n    \"\\u13ac\\u13e9\\u13c2\\u13aa\\u13e9\\u13db\": 7776,\n    \"\\u13c5\\u13cf\": 7777,\n    \"\\u13cd\\u13a6\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 7778,\n    \"\\u2581\\u13a0\\u13ef\\u13e6\": 7779,\n    \"\\u13be\\u13f0\\u13cd\\u13a6\": 7780,\n    \"\\u13e9\\u13af\\u13cd\\u13d4\\u13c5\\u13af\": 7781,\n    \"\\u2581\\u13a4\\u13cd\\u13a9\": 7782,\n    \"\\u2581\\u13a4\\u13c2\\u13cf\": 7783,\n    \"\\u13d3\\u13c5\\u13d9\": 7784,\n    \"\\u13da\\u13b5\\u13cd\\u13ac\\u13a2\": 7785,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13c5\\u13d7\": 7786,\n    \"\\u13f2\\u13ce\\u13a2\": 7787,\n    \"\\u2581\\u13da\\u13c2\\u13ad\": 7788,\n    \"\\u13da\\u13b8\\u13cc\\u13db\": 7789,\n    \"\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\": 7790,\n    \"\\u13c4\\u13b6\\u13d4\\u13c5\": 7791,\n    \"\\u13d3\\u13be\\u13c5\": 7792,\n    \"\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\": 7793,\n    \"\\u13a3\\u13a2\": 7794,\n    \"\\u13aa\\u13e9\\u13d4\": 7795,\n    \"\\u2581\\u13ef\\u13c2\\u13a6\\u13d4\": 7796,\n    \"\\u2581\\u13eb\\u13d8\": 7797,\n    \"\\u13b5\\u13e5\\u13d9\\u13c1\\u13b8\": 7798,\n    \"\\u2581\\u13a4\\u13b8\\u13d5\": 7799,\n    \"\\u2581\\u13e7\\u13ea\\u13a7\\u13c1\": 7800,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\": 7801,\n    \"\\u13f3\\u13a2\": 7802,\n    \"\\u2581--\": 7803,\n    \"\\u13e8\\u13d3\": 7804,\n    \"\\u13b3\\u13d5\\u13d7\": 7805,\n    \"\\u2581\\u13eb\\u13a6\\u13be\\u13c4\\u13aa\": 7806,\n    \"\\u2581\\u13ef\\u13ad\": 7807,\n    \"\\u13d3\\u13c2\\u13d0\\u13d7\\u13f1\": 7808,\n    \"\\u13ea\\u13a2\": 7809,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13db\": 7810,\n    \"\\u13eb\\u13ce\\u13b8\\u13af\": 7811,\n    \"\\u2581\\u13d7\\u13ef\\u13d6\": 7812,\n    \"\\u13cd\\u13a9\\u13b2\\u13cf\": 7813,\n    \"\\u2581\\u13e3\\u13d9\\u13b5\": 7814,\n    \"\\u13a6\\u13b9\": 7815,\n    \"\\u13cd\\u13a9\\u13c3\": 7816,\n    \"\\u13af\\u13cf\": 7817,\n    \"\\u2581\\u13a4\\u13e2\\u13c1\": 7818,\n    \"\\u13da\\u13b5\\u13cd\\u13ac\": 7819,\n    \"\\u2581\\u13e5\\u13cd\\u13a9\": 7820,\n    \"\\u2581\\u13be\\u13c1\": 7821,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\": 7822,\n    \"\\u13f2\\u13af\\u13ae\": 7823,\n    \"\\u13f2\\u13b0\\u13ce\\u13d7\": 7824,\n    \"\\u13ef\\u13a1\": 7825,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13e2\": 7826,\n    \"\\u2581\\u13eb\\u13d5\": 7827,\n    \"\\u13f2\\u13a2\\u13f3\": 7828,\n    \"\\u2581\\u13a6\\u13c4\\u13aa\\u13ac\": 7829,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\": 7830,\n    \"\\u13e5\\u13f2\\u13a2\\u13ce\": 7831,\n    \"\\u2581\\u13a0\\u13c2\\u13e9\\u13db\": 7832,\n    \"\\u13da\\u13d3\\u13b4\": 7833,\n    \"\\u13f3\\u13b5\\u13cd\\u13d9\\u13d7\": 7834,\n    \"\\u2581\\u13d7\\u13c2\\u13b3\": 7835,\n    \"\\u13b6\\u13af\\u13ce\\u13b8\": 7836,\n    \"\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 7837,\n    \"\\u13e5\\u13c2\\u13a8\\u13c2\": 7838,\n    \"\\u2581\\u13a2\\u13af\\u13ef\": 7839,\n    \"\\u13c3\\u13ae\\u13d7\\u13f1\": 7840,\n    \"\\u2581\\u13f1\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\": 7841,\n    \"\\u13d4\\u13f2\\u13af\\u13b0\": 7842,\n    \"\\u13b4\\u13d7\": 7843,\n    \"\\u13a6\\u13d8\\u13b4\\u13a6\": 7844,\n    \"\\u13e5\\u13f4\\u13d4\\u13c2\": 7845,\n    \"\\u13d9\\u13b2\\u13be\": 7846,\n    \"\\u13d8\\u13b7\\u13a6\": 7847,\n    \"\\u13db\\u13ce\": 7848,\n    \"\\u13a6\\u13b7\\u13ac\": 7849,\n    \"\\u13c2\\u13d3\": 7850,\n    \"\\u13b3\\u13a9\": 7851,\n    \"\\u2581\\u13e7\\u13ea\\u13f2\": 7852,\n    \"\\u13c2\\u13f4\\u13b2\": 7853,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13d7\\u13d2\": 7854,\n    \"\\u2581\\u13a4\\u13d1\\u13f0\": 7855,\n    \"\\u2581\\u13a0\\u13a8\\u13f3\": 7856,\n    \"\\u13d3\\u13f2\": 7857,\n    \"\\u2581\\u13a0\\u13c6\\u13d7\": 7858,\n    \"\\u2581\\u13a2\\u13a6\\u13db\\u13c9\": 7859,\n    \"\\u13d3\\u13c5\\u13d4\": 7860,\n    \"\\u2581\\u13a6\\u13c2\\u13b5\": 7861,\n    \"\\u13e5\\u13ea\\u13cf\": 7862,\n    \"\\u2581\\u13a0\\u13b3\": 7863,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13b8\": 7864,\n    \"\\u13dd\\u13a5\": 7865,\n    \"\\u2581\\u13f1\\u13a6\\u13f0\": 7866,\n    \"\\u2581\\u13ef\\u13c9\": 7867,\n    \"\\u13bb\\u13a6\": 7868,\n    \"\\u2581\\u13e3\\u13a2\\u13d2\": 7869,\n    \"\\u13e9\\u13be\\u13a6\\u13b3\\u13af\\u13f3\": 7870,\n    \"\\u13f0\\u13b5\\u13cf\": 7871,\n    \"\\u13c2\\u13a9\\u13cd\\u13d4\\u13c1\": 7872,\n    \"\\u2581\\u13a4\\u13be\\u13e3\\u13c5\": 7873,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d9\\u13d7\": 7874,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13a8\\u13f3\": 7875,\n    \"\\u2581\\u13a3\\u13e4\\u13b5\": 7876,\n    \"\\u13c2\\u13cd\\u13a6\\u13a9\": 7877,\n    \"\\u13e9\\u13db\\u13b2\\u13be\": 7878,\n    \"\\u13f4\\u13b3\\u13d2\": 7879,\n    \"\\u13e4\\u13b3\": 7880,\n    \"\\u2581\\u13a8\\u13e5\\u13c5\": 7881,\n    \"\\u13c2\\u13c6\\u13d8\\u13ad\": 7882,\n    \"\\u2581\\u13a4\\u13aa\\u13c5\": 7883,\n    \"\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13ad\": 7884,\n    \"da\": 7885,\n    \"\\u13eb\\u13cd\": 7886,\n    \"\\u13e5\\u13e9\\u13af\\u13cd\\u13d4\\u13c5\\u13af\": 7887,\n    \"\\u2581\\u13f0\\u13d9\\u13ae\": 7888,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d7\\u13cd\": 7889,\n    \"\\u13f4\\u13b3\": 7890,\n    \"\\u13cc\\u13ec\\u13b8\": 7891,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a9\": 7892,\n    \"\\u2581\\u13ab\\u13d3\": 7893,\n    \"\\u2581\\u13a4\\u13ab\\u13f4\": 7894,\n    \"\\u13eb\\u13d7\": 7895,\n    \"\\u13a4\\u13df\": 7896,\n    \"\\u2581\\u13a3\\u13a9\\u13c3\\u13ae\": 7897,\n    \"\\u2581\\u13ad\\u13b5\\u13cd\\u13d3\\u13f4\": 7898,\n    \"\\u2581\\u13d7\\u13e5\\u13f4\": 7899,\n    \"\\u2581\\u13ed\\u13b7\\u13e4\\u13b8\": 7900,\n    \"\\u13a6\\u13b5\\u13cd\\u13d3\": 7901,\n    \"\\u13a6\\u13d4\\u13b0\\u13a2\": 7902,\n    \"\\u13af\\u13f4\\u13a9\": 7903,\n    \"\\u2581\\u13a4\\u13a8\\u13f3\": 7904,\n    \"\\u2581\\u13a4\\u13c2\\u13a7\\u13b5\\u13e8\": 7905,\n    \"\\u13af\\u13cd\\u13d3\\u13c1\\u13b8\": 7906,\n    \"\\u13c7\\u13d7\": 7907,\n    \"\\u13d8\\u13c3\\u13b8\\u13a9\": 7908,\n    \"\\u13a2\\u13d2\": 7909,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13e4\": 7910,\n    \"\\u13cd\\u13d3\\u13f4\\u13d7\": 7911,\n    \"\\u13f2\\u13b2\\u13cd\\u13ac\": 7912,\n    \"\\u13e5\\u13c1\\u13aa\\u13a2\": 7913,\n    \"\\u2581\\u13a0\\u13b1\": 7914,\n    \"\\u13e8\\u13c1\\u13cd\\u13d7\": 7915,\n    \"\\u13be\\u13db\\u13a9\\u13cd\\u13aa\": 7916,\n    \"\\u2581\\u13d6\\u13be\": 7917,\n    \"\\u13a4\\u13e8\\u13ce\": 7918,\n    \"\\u2581\\u13c2\\u13da\\u13c2\": 7919,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13d9\\u13d7\\u13f1\": 7920,\n    \"\\u13b5\\u13d9\\u13b8\\u13a2\": 7921,\n    \"\\u13a9\\u13d0\\u13c5\": 7922,\n    \"\\u13dd\\u13c5\": 7923,\n    \"\\u13a8\\u13af\\u13d2\": 7924,\n    \"\\u13d8\\u13c2\\u13d2\": 7925,\n    \"\\u13a7\\u13c3\\u13d7\": 7926,\n    \"\\u13d5\\u13aa\": 7927,\n    \"\\u13a6\\u13d8\\u13f2\": 7928,\n    \"\\u13a6\\u13d9\\u13cd\\u13d4\\u13c1\\u13a2\": 7929,\n    \"\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b0\\u13a2\": 7930,\n    \"\\u13d0\\u13e2\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 7931,\n    \"\\u13b7\\u13e4\\u13d7\": 7932,\n    \"\\u2581\\u13a4\\u13db\\u13db\\u13c1\\u13a2\": 7933,\n    \"\\u2581\\u13a3\\u13a9\\u13f4\": 7934,\n    \"\\u13a6\\u13f2\\u13b5\\u13f3\": 7935,\n    \"\\u2581\\u13ed\\u13f4\": 7936,\n    \"\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13cd\\u13d7\": 7937,\n    \"\\u2581\\u13a2\\u13a9\\u13a7\": 7938,\n    \"\\u13e3\\u13b5\\u13cd\\u13d7\\u13ad\": 7939,\n    \"\\u13db\\u13c1\\u13b4\\u13a2\": 7940,\n    \"\\u2581\\u13a0\\u13c2\\u13b8\": 7941,\n    \"\\u13a1\\u13aa\\u13a2\": 7942,\n    \"\\u2581\\u13d5\\u13a6\\u13be\": 7943,\n    \"\\u13c1\\u13b2\\u13be\": 7944,\n    \"\\u2581\\u13a4\\u13bf\\u13b8\": 7945,\n    \"\\u13f2\\u13ae\\u13b4\\u13a2\": 7946,\n    \"\\u2581\\u13f3\\u13be\\u13c5\": 7947,\n    \"\\u2581\\u13a2\\u13be\\u13a8\\u13c9\": 7948,\n    \"\\u13c1\\u13cd\\u13a8\\u13cd\\u13a9\": 7949,\n    \"\\u13c3\\u13c1\\u13b5\": 7950,\n    \"\\u2581\\u13a0\\u13d0\\u13e2\\u13a2\\u13cd\\u13d9\\u13d7\": 7951,\n    \"\\u13db\\u13c1\\u13b8\": 7952,\n    \"\\u13c5\\u13cd\\u13d4\\u13c1\\u13a2\": 7953,\n    \"\\u2581\\u13a0\\u13e8\": 7954,\n    \"\\u13d3\\u13d3\\u13f1\": 7955,\n    \"\\u13b8\\u13c5\": 7956,\n    \"\\u13b4\\u13d4\\u13c2\": 7957,\n    \"\\u13f0\\u13b8\\u13ce\": 7958,\n    \"\\u2581\\u13a4\\u13e2\\u13a8\": 7959,\n    \"\\u2581\\u13a6\\u13e5\\u13c1\\u13d7\": 7960,\n    \"\\u2581\\u13e7\\u13be\\u13da\\u13aa\\u13d3\\u13c1\\u13d7\": 7961,\n    \"\\u2581\\u13a4\\u13c2\\u13c7\\u13d3\": 7962,\n    \"\\u13f1\\u13b4\": 7963,\n    \"\\u13a2\\u13b2\": 7964,\n    \"\\u13c8\\u13d3\": 7965,\n    \"\\u2581\\u13a4\\u13aa\\u13b3\": 7966,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\": 7967,\n    \"\\u2581\\u13a1\\u13e5\\u13b8\": 7968,\n    \"\\u13d3\\u13e5\\u13b6\": 7969,\n    \"\\u13cd\\u13d3\\u13c1\\u13ae\": 7970,\n    \"\\u2581\\u13d7\\u13ef\": 7971,\n    \"\\u13e9\\u13ef\": 7972,\n    \"\\u2581\\u13a0\\u13ce\\u13aa\\u13a9\\u13cd\": 7973,\n    \"\\u13e9\\u13c2\\u13a6\\u13b8\": 7974,\n    \"\\u13f4\\u13d3\\u13c6\\u13b6\\u13a5\\u13a9\": 7975,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13a9\": 7976,\n    \"\\u13ce\\u13b5\\u13db\": 7977,\n    \"\\u13f4\\u13cd\\u13d5\\u13cd\": 7978,\n    \"\\u2581\\u13d5\\u13a4\\u13c5\": 7979,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13b5\\u13cd\": 7980,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\": 7981,\n    \"\\u13aa\\u13e2\\u13d9\\u13d7\": 7982,\n    \"\\u13db\\u13aa\\u13d7\": 7983,\n    \"\\u13be\\u13db\\u13c1\\u13ad\": 7984,\n    \"\\u13d3\\u13c9\": 7985,\n    \"\\u2581\\u13d5\\u13a6\\u13d3\": 7986,\n    \"\\u13b5\\u13cd\\u13aa\\u13a2\": 7987,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13d7\": 7988,\n    \"\\u2581\\u13c5\\u13d3\\u13e3\": 7989,\n    \"\\u2581\\u13a2\\u13e5\\u13a8\\u13f3\": 7990,\n    \"\\u2581\\u13ad\\u13b8\": 7991,\n    \"\\u2581\\u13e7\\u13d3\\u13f4\\u13b3\": 7992,\n    \"\\u2581\\u13a4\\u13d9\\u13ef\\u13c5\\u13af\\u13d5\": 7993,\n    \"\\u13d7\\u13e9\\u13db\\u13af\": 7994,\n    \"\\u13e2\\u13c8\": 7995,\n    \"\\u13b6\\u13cd\\u13ac\": 7996,\n    \"\\u13d7\\u13ce\\u13a2\": 7997,\n    \"\\u13b5\\u13a5\\u13c2\\u13b8\": 7998,\n    \"\\u13d4\\u13f2\\u13ce\\u13ae\": 7999,\n    \"\\u13a6\\u13e7\": 8000,\n    \"\\u13aa\\u13a5\\u13af\": 8001,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\": 8002,\n    \"\\u13a1\\u13b0\": 8003,\n    \"\\u13af\\u13a0\\u13c3\": 8004,\n    \"\\u13a6\\u13b5\\u13cd\\u13aa\": 8005,\n    \"\\u2581\\u13a6\\u13be\\u13f0\": 8006,\n    \"\\u13aa\\u13d4\\u13c5\": 8007,\n    \"\\u13d0\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\\u13af\": 8008,\n    \"\\u2581\\u13a1\\u13ac\": 8009,\n    \"\\u13cd\\u13d7\\u13f0\\u13d4\\u13c1\": 8010,\n    \"\\u13da\\u13b6\": 8011,\n    \"\\u13f1\\u13e2\\u13d7\": 8012,\n    \"\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 8013,\n    \"\\u13a9\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 8014,\n    \"\\u13b2\\u13cd\\u13aa\": 8015,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e4\\u13c3\": 8016,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13d7\\u13c5\": 8017,\n    \"\\u2581\\u13d7\\u13a6\\u13d3\\u13a8\\u13f3\\u13af\": 8018,\n    \"\\u2581\\u13da\\u13be\\u13e0\\u13af\\u13cd\": 8019,\n    \"\\u13af\\u13cd\\u13d4\\u13c1\": 8020,\n    \"\\u13c5\\u13cc\": 8021,\n    \"\\u2581\\u13d4\\u13b4\": 8022,\n    \"le\": 8023,\n    \"\\u13f4\\u13d7\\u13f1\": 8024,\n    \"\\u2581\\u13a4\\u13be\\u13aa\\u13b8\": 8025,\n    \"\\u2581\\u13a1\\u13e5\\u13be\\u13f0\": 8026,\n    \"\\u2581\\u13e5\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 8027,\n    \"\\u2581\\u13a6\\u13b7\\u13b6\": 8028,\n    \"\\u13f0\\u13b5\\u13af\\u13cd\\u13d7\": 8029,\n    \"\\u2581\\u13e5\\u13ed\": 8030,\n    \"\\u13a6\\u13b8\\u13a2\": 8031,\n    \"\\u13b2\\u13af\": 8032,\n    \"\\u2581\\u13d3\\u13a9\\u13ef\": 8033,\n    \"\\u2581\\u13a0\\u13d3\\u13c2\": 8034,\n    \"\\u2581\\u13d7\\u13aa\\u13ea\\u13b6\": 8035,\n    \"\\u2581\\u13a8\\u13e5\\u13ef\\u13c5\\u13d7\": 8036,\n    \"\\u13b3\\u13c5\\u13d3\\u13d5\": 8037,\n    \"\\u2581\\u13a4\\u13b4\\u13d7\": 8038,\n    \"\\u13c1\\u13df\\u13f4\\u13d2\": 8039,\n    \"\\u13c2\\u13a8\\u13e5\\u13ea\\u13ce\\u13b4\": 8040,\n    \"\\u13e3\\u13a6\\u13b8\": 8041,\n    \"\\u13c8\\u13f4\\u13a1\": 8042,\n    \"\\u13b5\\u13cd\\u13c6\\u13d7\": 8043,\n    \"\\u13b5\\u13cf\\u13c2\": 8044,\n    \"\\u13b4\\u13b2\": 8045,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\": 8046,\n    \"\\u2581\\u13eb\\u13b7\\u13e5\": 8047,\n    \"\\u2581\\u13f1\\u13a6\\u13e5\": 8048,\n    \"\\u13d3\\u13c5\\u13db\\u13a2\": 8049,\n    \"ia\": 8050,\n    \"\\u13c5\\u13c1\": 8051,\n    \"\\u13da\\u13e9\\u13c2\\u13a6\\u13b8\": 8052,\n    \"\\u13d4\\u13f2\\u13af\\u13b2\": 8053,\n    \"\\u2581\\u13a6\\u13b3\\u13c5\\u13db\": 8054,\n    \"\\u13b6\\u13d4\\u13c5\": 8055,\n    \"\\u2581\\u13d3\\u13c5\": 8056,\n    \"\\u13d3\\u13cd\\u13a9\": 8057,\n    \"\\u2581\\u13a0\\u13a9\\u13c3\\u13ae\": 8058,\n    \"\\u13a6\\u13d4\\u13b2\\u13cd\\u13d7\\u13f1\": 8059,\n    \"\\u13cd\\u13a6\\u13c5\\u13e4\\u13ae\\u13cd\\u13d7\": 8060,\n    \"\\u13e4\\u13b4\\u13cd\\u13d7\": 8061,\n    \"\\u2581\\u13a4\\u13e4\\u13ea\": 8062,\n    \"\\u13ea\\u13e5\": 8063,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d4\\u13c5\": 8064,\n    \"\\u2581\\u13c6\\u13c2\": 8065,\n    \"\\u2581\\u13ac\\u13e9\\u13c1\": 8066,\n    \"\\u2581\\u13e7\\u13ed\\u13aa\": 8067,\n    \"\\u2581\\u13d4\\u13ab\\u13f4\": 8068,\n    \"\\u13eb\\u13cd\\u13aa\": 8069,\n    \"\\u13cd\\u13da\\u13a2\\u13cd\\u13d7\": 8070,\n    \"\\u2581\\u13a3\\u13c2\\u13a9\": 8071,\n    \"\\u2581\\u13eb\\u13c4\": 8072,\n    \"\\u2581\\u13a4\\u13e3\\u13d8\\u13c2\\u13c9\": 8073,\n    \"\\u13d7\\u13d2\\u13cd\\u13d7\\u13f1\": 8074,\n    \"\\u2581\\u13e9\\u13aa\\u13e9\\u13db\": 8075,\n    \"\\u13c5\\u13d9\\u13d7\": 8076,\n    \"\\u13be\\u13db\\u13c1\\u13b0\\u13a2\": 8077,\n    \"\\u13a9\\u13f3\": 8078,\n    \"\\u2581\\u13a2\\u13e5\\u13f0\": 8079,\n    \"\\u13bf\\u13a2\\u13f3\": 8080,\n    \"\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\\u13f1\": 8081,\n    \"\\u13a8\\u13e5\\u13be\\u13cc\\u13a2\": 8082,\n    \"\\u13e3\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 8083,\n    \"\\u13b2\\u13cd\\u13d7\": 8084,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13af\": 8085,\n    \"\\u2581\\u13da\\u13c2\\u13a8\": 8086,\n    \"\\u13b5\\u13cd\\u13a6\\u13b8\": 8087,\n    \"\\u13e5\\u13c5\\u13b5\": 8088,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13c1\": 8089,\n    \"\\u13f2\\u13b0\\u13d2\": 8090,\n    \"\\u2581\\u13a6\\u13d9\\u13a9\": 8091,\n    \"\\u13be\\u13eb\\u13db\\u13ae\": 8092,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c5\": 8093,\n    \"\\u2581\\u13d3\\u13ad\": 8094,\n    \"\\u13aa\\u13cd\\u13d3\\u13ef\": 8095,\n    \"\\u2581\\u13ed\\u13d7\\u13c5\": 8096,\n    \"\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 8097,\n    \"\\u13a6\\u13be\\u13c5\\u13aa\": 8098,\n    \"\\u13e5\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\": 8099,\n    \"\\u13e5\\u13aa\\u13e9\\u13d7\\u13ad\": 8100,\n    \"\\u2581\\u13a0\\u13e5\\u13aa\": 8101,\n    \"\\u13c2\\u13f3\": 8102,\n    \"\\u13d8\\u13cc\": 8103,\n    \"\\u2581\\u13a4\\u13c2\\u13ef\": 8104,\n    \"\\u13eb\\u13cd\\u13aa\\u13a2\": 8105,\n    \"\\u2581\\u13e6\\u13af\\u13cd\": 8106,\n    \"\\u13a7\\u13b2\\u13a6\": 8107,\n    \"\\u2581\\u13a8\\u13af\": 8108,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\\u13c5\": 8109,\n    \"\\u13c5\\u13db\\u13be\": 8110,\n    \"\\u2581\\u13c5\\u13e9\\u13d3\\u13b4\\u13a2\": 8111,\n    \"\\u2581\\u13a2\\u13ef\\u13be\\u13db\\u13c1\": 8112,\n    \"\\u2581\\u13a0\\u13d3\\u13f0\": 8113,\n    \"\\u2581\\u13a4\\u13dd\": 8114,\n    \"\\u2581\\u13a4\\u13c5\\u13a2\\u13cd\\u13d7\": 8115,\n    \"\\u2581\\u13a6\\u13c7\\u13c5\": 8116,\n    \"\\u13c6\\u13e4\\u13b5\": 8117,\n    \"\\u13af\\u13cd\\u13d9\\u13d7\\u13f1\": 8118,\n    \"\\u2581\\u13a2\\u13f3\\u13af\": 8119,\n    \"\\u2581\\u13a0\\u13c2\\u13b4\": 8120,\n    \"\\u13aa\\u13a5\": 8121,\n    \"\\u13e5\\u13c3\\u13af\\u13ce\\u13b8\": 8122,\n    \"\\u13d1\\u13ef\\u13a9\": 8123,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\\u13e4\": 8124,\n    \"\\u13ac\\u13e9\\u13b6\\u13d7\": 8125,\n    \"\\u13bf\\u13a5\\u13be\": 8126,\n    \"\\u13be\\u13e3\\u13a5\": 8127,\n    \"\\u13d3\\u13e8\\u13ef\\u13cd\\u13d7\": 8128,\n    \"\\u13a1\\u13ae\\u13cd\\u13d7\": 8129,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\\u13a9\": 8130,\n    \"\\u13be\\u13d7\\u13cd\\u13aa\\u13a2\": 8131,\n    \"\\u2581\\u13a0\\u13a6\\u13de\": 8132,\n    \"\\u2581\\u13eb\\u13ac\\u13a9\": 8133,\n    \"\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\\u13cd\\u13d7\": 8134,\n    \"\\u13cd\\u13d8\\u13f0\": 8135,\n    \"\\u13cc\\u13d9\": 8136,\n    \"\\u13e9\\u13d8\\u13cd\\u13a8\\u13cd\\u13d7\": 8137,\n    \"\\u2581\\u13a6\\u13f4\": 8138,\n    \"\\u13c5\\u13ec\\u13d7\": 8139,\n    \"\\u13c3\\u13af\\u13ae\": 8140,\n    \"\\u13aa\\u13b5\\u13f0\\u13cd\\u13aa\\u13a2\": 8141,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\": 8142,\n    \"\\u2581\\u13a4\\u13c2\\u13e5\\u13b8\": 8143,\n    \"\\u13f2\\u13e2\\u13be\\u13c1\": 8144,\n    \"\\u13d7\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\": 8145,\n    \"\\u13cf\\u13d4\\u13d7\": 8146,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13d3\": 8147,\n    \"\\u13af\\u13b0\\u13a2\": 8148,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d3\\u13c1\": 8149,\n    \"\\u2581\\u13ed\\u13d5\": 8150,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\": 8151,\n    \"\\u13c2\\u13d9\\u13b2\\u13a2\": 8152,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13c5\": 8153,\n    \"\\u13e5\\u13c5\\u13cd\\u13d7\": 8154,\n    \"\\u13c2\\u13e3\\u13d4\": 8155,\n    \"\\u13d3\\u13c5\\u13d8\\u13d0\": 8156,\n    \"\\u13a5\\u13cd\\u13ac\\u13a2\": 8157,\n    \"\\u13a6\\u13b8\\u13c9\\u13d7\\u13f3\": 8158,\n    \"\\u13c2\\u13d9\\u13b2\": 8159,\n    \"\\u2581\\u13d9\\u13db\\u13c2\": 8160,\n    \"\\u13d3\\u13d3\\u13b4\\u13d3\": 8161,\n    \"\\u13be\\u13dd\\u13a0\": 8162,\n    \"as\": 8163,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13ef\": 8164,\n    \"\\u13a8\\u13ce\\u13cd\\u13d7\": 8165,\n    \"\\u2581\\u13db\\u13e3\": 8166,\n    \"\\u2581\\u13a0\\u13cc\\u13b9\\u13d7\": 8167,\n    \"\\u2581\\u13e8\\u13d9\\u13d7\": 8168,\n    \"\\u2581\\u13ef\\u13f0\": 8169,\n    \"\\u13d9\\u13e5\\u13e9\\u13db\\u13b2\\u13a9\": 8170,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\\u13af\": 8171,\n    \"\\u13d8\\u13c5\": 8172,\n    \"\\u13ef\\u13c5\\u13b2\\u13ad\": 8173,\n    \"\\u13be\\u13bb\": 8174,\n    \"\\u13cf\\u13c1\\u13a9\": 8175,\n    \"\\u2581\\u13d3\\u13be\\u13db\": 8176,\n    \"\\u13cd\\u13d8\\u13f0\\u13ac\\u13a2\": 8177,\n    \"\\u2581\\u13d7\\u13e3\\u13b6\": 8178,\n    \"\\u2581\\u13e9\\u13d7\": 8179,\n    \"\\u2581\\u13ef\\u13a6\": 8180,\n    \"\\u2581\\u13f1\\u13da\\u13c1\": 8181,\n    \"\\u2581\\u13d5\\u13e3\\u13b5\": 8182,\n    \"\\u2581\\u13f4\\u13a6\\u13f0\": 8183,\n    \"\\u2581\\u13a4\\u13d4\\u13b6\": 8184,\n    \"\\u2581\\u13a0\\u13eb\\u13d2\": 8185,\n    \"\\u2581\\u13a0\\u13e9\": 8186,\n    \"\\u13cd\\u13a6\\u13cd\\u13aa\": 8187,\n    \"\\u13a0\\u13c2\": 8188,\n    \"\\u13ef\\u13eb\\u13cd\\u13a8\\u13cd\\u13d7\": 8189,\n    \"\\u2581\\u13a2\\u13a4\\u13c1\\u13c5\": 8190,\n    \"\\u2581\\u13a2\\u13e5\\u13a8\\u13f3\\u13af\": 8191,\n    \"\\u2581\\u13d9\\u13d3\\u13d3\": 8192,\n    \"\\u2581\\u13d3\\u13b4\\u13c5\": 8193,\n    \"\\u13cd\\u13c8\\u13d7\": 8194,\n    \"\\u13a4\\u13d9\\u13d3\": 8195,\n    \"\\u13e9\\u13db\\u13af\\u13b5\": 8196,\n    \"\\u2581\\u13d7\\u13a9\\u13a6\\u13a8\": 8197,\n    \"\\u13cd\\u13d3\\u13e9\\u13db\\u13db\": 8198,\n    \"\\u2581\\u13a0\\u13be\\u13c1\\u13b7\\u13a9\": 8199,\n    \"\\u13c5\\u13b2\\u13ad\": 8200,\n    \"\\u13a3\\u13b5\": 8201,\n    \"\\u13c1\\u13e3\": 8202,\n    \"\\u2581\\u13f1\\u13db\": 8203,\n    \"\\u13e5\\u13be\\u13dd\\u13a2\": 8204,\n    \"\\u13b3\\u13d7\\u13d3\\u13cd\\u13d7\\u13f1\": 8205,\n    \"\\u13b8\\u13c1\": 8206,\n    \"\\u13b7\\u13e4\\u13b5\": 8207,\n    \"\\u13c3\\u13f4\\u13b5\\u13cd\": 8208,\n    \"\\u2581\\u13ab\\u13e2\": 8209,\n    \"\\u13d0\\u13f4\\u13a2\": 8210,\n    \"\\u13c2\\u13c2\\u13cc\\u13c1\\u13a2\": 8211,\n    \"\\u2581\\u13a0\\u13f4\\u13a9\": 8212,\n    \"\\u2581\\u13e5\\u13da\\u13be\": 8213,\n    \"\\u13a9\\u13b3\\u13e9\": 8214,\n    \"\\u13b3\\u13cd\\u13d9\\u13d7\": 8215,\n    \"\\u13b6\\u13a8\\u13d2\\u13a2\": 8216,\n    \"\\u13cf\\u13c5\": 8217,\n    \"\\u2581\\u13a4\\u13c2\\u13ad\": 8218,\n    \"\\u2581\\u13e7\\u13ed\": 8219,\n    \"\\u13a6\\u13d7\\u13d4\": 8220,\n    \"\\u2581\\u13be\\u13be\\u13b5\\u13cd\": 8221,\n    \"\\u2581\\u13a2\\u13e3\\u13db\": 8222,\n    \"\\u2581\\u13a4\\u13da\\u13d2\": 8223,\n    \"\\u2581\\u13d5\\u13a6\\u13c1\": 8224,\n    \"\\u2581\\u13f1\\u13e8\\u13ef\": 8225,\n    \"\\u2581\\u13a4\\u13c1\\u13d9\": 8226,\n    \"\\u13d8\\u13c1\\u13aa\": 8227,\n    \"\\u2581\\u13a0\\u13c6\\u13da\": 8228,\n    \"\\u13c1\\u13a8\": 8229,\n    \"\\u13cf\\u13cd\\u13a8\": 8230,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d7\\u13d5\\u13a9\": 8231,\n    \"\\u13b5\\u13a5\\u13c2\\u13b4\": 8232,\n    \"\\u13e4\\u13b0\": 8233,\n    \"\\u2581\\u13e7\\u13c2\\u13ef\": 8234,\n    \"\\u13d3\\u13c1\\u13b2\\u13a2\": 8235,\n    \"\\u13c2\\u13b7\\u13e3\": 8236,\n    \"\\u2581\\u13e8\\u13d4\\u13c5\": 8237,\n    \"\\u2581\\u13d3\\u13a7\": 8238,\n    \"\\u2581\\u13d5\\u13e8\\u13ef\": 8239,\n    \"\\u2581\\u13a6\\u13e5\\u13c3\\u13cd\": 8240,\n    \"\\u13d2\\u13c2\\u13cd\\u13d7\\u13f1\": 8241,\n    \"\\u13be\\u13e3\\u13a1\\u13a2\": 8242,\n    \"\\u13f2\\u13de\\u13af\": 8243,\n    \"\\u2581\\u13a4\\u13b5\\u13d8\": 8244,\n    \"\\u13d3\\u13b4\\u13cd\\u13a8\\u13cd\\u13d7\": 8245,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13ae\": 8246,\n    \"\\u2581\\u13e4\\u13b3\": 8247,\n    \"\\u2581\\u13db\\u13ac\": 8248,\n    \"\\u2581\\u13a6\\u13c4\": 8249,\n    \"\\u2581\\u13a0\\u13cf\\u13be\\u13cc\\u13c5\": 8250,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d4\": 8251,\n    \"\\u13d5\\u13cd\\u13a9\": 8252,\n    \"\\u2581\\u13d7\\u13aa\\u13f1\": 8253,\n    \"\\u2581\\u13a0\\u13e9\\u13d4\": 8254,\n    \"\\u13cd\\u13d4\\u13f4\": 8255,\n    \"\\u2581\\u13ad\\u13a6\\u13d4\": 8256,\n    \"\\u13a9\\u13b8\\u13d7\": 8257,\n    \"\\u2581\\u13a0\\u13d7\\u13d4\\u13cd\": 8258,\n    \"\\u2581\\u13e5\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 8259,\n    \"\\u13da\\u13d3\": 8260,\n    \"\\u2581\\u13d9\\u13d3\\u13a6\\u13e5\": 8261,\n    \"\\u13af\\u13f3\\u13b2\\u13a6\": 8262,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13d7\": 8263,\n    \"\\u13a7\\u13bf\": 8264,\n    \"\\u2581\\u13af\\u13cd\\u13c6\": 8265,\n    \"\\u13be\\u13e9\\u13db\": 8266,\n    \"\\u2581\\u13a3\\u13a9\\u13d9\": 8267,\n    \"\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13f1\": 8268,\n    \"\\u13ce\\u13b2\": 8269,\n    \"\\u13a9\\u13f0\\u13c3\": 8270,\n    \"\\u13d3\\u13e1\\u13d7\\u13cd\\u13aa\\u13a2\": 8271,\n    \"\\u2581\\u13e7\\u13e2\\u13eb\": 8272,\n    \"\\u2581\\u13f1\\u13e3\\u13c1\": 8273,\n    \"\\u13c2\\u13be\\u13f0\\u13cd\\u13ac\": 8274,\n    \"\\u2581\\u13d7\\u13a6\\u13f0\": 8275,\n    \"\\u2581\\u13a6\\u13e3\\u13c4\\u13b5\": 8276,\n    \"\\u2581\\u13d3\\u13cd\\u13c6\": 8277,\n    \"\\u13bf\\u13ec\": 8278,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\": 8279,\n    \"\\u13a9\\u13b7\\u13af\\u13cd\\u13d7\\u13f1\": 8280,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13e0\": 8281,\n    \"\\u2581\\u13c2\\u13e8\\u13ea\\u13ce\": 8282,\n    \"\\u13b5\\u13f0\\u13a2\\u13b6\": 8283,\n    \"\\u2581\\u13a1\\u13e6\": 8284,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13df\\u13cc\": 8285,\n    \"\\u13f2\\u13b2\\u13cd\\u13a9\": 8286,\n    \"\\u2581\\u13e6\\u13cd\\u13aa\": 8287,\n    \"\\u13be\\u13d5\\u13b6\\u13c6\\u13cd\\u13d7\": 8288,\n    \"\\u13d6\\u13b8\\u13ae\\u13cd\\u13ac\": 8289,\n    \"\\u2581\\u13d7\\u13bb\": 8290,\n    \"\\u13d7\\u13c5\\u13d7\": 8291,\n    \"\\u2581\\u13a4\\u13d4\\u13b7\\u13a9\\u13cd\": 8292,\n    \"\\u2581\\u13a3\\u13e8\\u13d7\": 8293,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c3\\u13f4\": 8294,\n    \"\\u13dd\\u13c1\\u13a2\": 8295,\n    \"\\u2581\\u13da\\u13c2\\u13e3\": 8296,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13c9\\u13d9\\u13d7\": 8297,\n    \"\\u13e3\\u13ef\": 8298,\n    \"\\u13ae\\u13d7\\u13f1\": 8299,\n    \"\\u2581\\u13e3\\u13f2\": 8300,\n    \"\\u2581\\u13f1\\u13c4\": 8301,\n    \"\\u13be\\u13d3\\u13d7\\u13cd\\u13aa\": 8302,\n    \"\\u13d3\\u13d3\": 8303,\n    \"\\u2581\\u13cd\\u13a9\\u13f2\\u13ce\": 8304,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13c5\\u13c5\": 8305,\n    \"\\u2581\\u13f1\\u13d3\\u13c6\": 8306,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13e8\": 8307,\n    \"\\u2581\\u13c5\\u13e9\\u13cd\\u13d5\": 8308,\n    \"\\u13b8\\u13c9\\u13db\": 8309,\n    \"\\u13b5\\u13cd\\u13d4\\u13c1\\u13a2\": 8310,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13d2\\u13af\": 8311,\n    \"\\u13b4\\u13c2\\u13d3\\u13cd\\u13d7\\u13f1\": 8312,\n    \"\\u13b5\\u13f1\\u13b6\\u13b8\": 8313,\n    \"\\u13a8\\u13b3\\u13cd\\u13d9\\u13d7\": 8314,\n    \"\\u13e9\\u13af\\u13cd\\u13d7\": 8315,\n    \"\\u13f2\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 8316,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 8317,\n    \"\\u13a6\\u13d3\\u13c5\\u13d3\\u13d7\": 8318,\n    \"\\u13c1\\u13e4\\u13b4\\u13a2\": 8319,\n    \"\\u13d7\\u13a7\": 8320,\n    \"\\u13a7\\u13ad\\u13f2\\u13d4\": 8321,\n    \"\\u13ba\": 8322,\n    \"\\u2581\\u13f1\\u13e9\": 8323,\n    \"\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d4\": 8324,\n    \"\\u13ac\\u13d7\\u13cd\\u13a8\\u13a2\": 8325,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\": 8326,\n    \"\\u13cd\\u13d4\\u13c1\\u13cd\\u13d7\": 8327,\n    \"\\u13e9\\u13cd\\u13a6\": 8328,\n    \"\\u13ba\\u13b5\": 8329,\n    \"\\u2581\\u13a2\\u13d3\\u13d9\\u13b4\\u13b0\\u13af\": 8330,\n    \"\\u2581\\u13f1\\u13d3\\u13e5\": 8331,\n    \"\\u13e8\\u13ef\": 8332,\n    \"\\u13d3\\u13a6\\u13b6\\u13d0\\u13c2\": 8333,\n    \"\\u13ef\\u13c5\\u13a1\\u13b5\": 8334,\n    \"\\u13d7\\u13a8\\u13b4\": 8335,\n    \"\\u13b0\\u13c2\": 8336,\n    \"\\u13cd\\u13d4\\u13c5\\u13be\": 8337,\n    \"\\u13ae\\u13b5\\u13a0\\u13cd\\u13aa\": 8338,\n    \"\\u2581\\u13d7\\u13cc\": 8339,\n    \"\\u13a6\\u13b5\\u13a1\\u13b5\": 8340,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\": 8341,\n    \"\\u13a6\\u13d4\\u13b2\\u13a9\": 8342,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\\u13d7\\u13f3\\u13f0\\u13c3\": 8343,\n    \"\\u13b5\\u13ec\\u13e4\": 8344,\n    \"\\u13d5\\u13d3\\u13d3\\u13aa\\u13b2\\u13f3\": 8345,\n    \"\\u13a9\\u13a6\\u13a8\\u13cd\\u13db\\u13f1\": 8346,\n    \"\\u13f2\\u13a2\\u13ce\\u13b4\": 8347,\n    \"\\u13a0\\u13e1\\u13d7\\u13cd\\u13a9\": 8348,\n    \"\\u2581\\u13a4\\u13c2\\u13b6\\u13ce\": 8349,\n    \"\\u2581\\u13a4\\u13c5\\u13cd\\u13a6\\u13b4\": 8350,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c1\": 8351,\n    \"\\u2581\\u13a0\\u13a9\\u13aa\\u13c1\\u13b8\": 8352,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13b2\": 8353,\n    \"\\u13d7\\u13a6\\u13aa\\u13d7\\u13f1\": 8354,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13ce\\u13b4\": 8355,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 8356,\n    \"\\u13da\\u13ea\\u13a7\\u13c1\\u13a2\": 8357,\n    \"\\u2581\\u13a0\\u13b5\\u13ac\": 8358,\n    \"\\u2581\\u13f3\\u13c2\\u13aa\\u13ae\": 8359,\n    \"\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13aa\": 8360,\n    \"\\u2581\\u13a2\\u13e8\\u13ec\\u13c1\\u13d4\\u13c5\": 8361,\n    \"\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 8362,\n    \"\\u2581\\u13a2\\u13ac\\u13ec\": 8363,\n    \"\\u2581\\u13e9\\u13c2\\u13a6\\u13db\": 8364,\n    \"\\u2581\\u13eb\\u13da\\u13f3\\u13aa\\u13db\": 8365,\n    \"\\u13e1\\u13d4\\u13c5\": 8366,\n    \"\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\\u13a2\": 8367,\n    \"\\u13a0\\u13b3\\u13d1\\u13b6\": 8368,\n    \"\\u13a4\\u13ec\\u13da\\u13e8\": 8369,\n    \"\\u13a4\\u13d3\\u13c5\\u13d2\": 8370,\n    \"\\u13e3\\u13c4\\u13cf\": 8371,\n    \"\\u13e7\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 8372,\n    \"\\u13ac\\u13c2\\u13f3\\u13c9\": 8373,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c1\\u13df\\u13f4\\u13cf\\u13d2\": 8374,\n    \"\\u2581\\u13e5\\u13a6\\u13b7\\u13aa\": 8375,\n    \"\\u2581\\u13a0\\u13be\\u13a2\\u13ce\": 8376,\n    \"\\u13e7\\u13d9\\u13a2\\u13db\": 8377,\n    \"\\u2581\\u13a0\\u13cb\\u13d4\\u13c5\": 8378,\n    \"\\u2581\\u13da\\u13c2\\u13c2\\u13f4\\u13ae\": 8379,\n    \"\\u13e7\\u13ea\\u13e5\": 8380,\n    \"\\u2581\\u13a0\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 8381,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13ae\": 8382,\n    \"\\u2581\\u13a4\\u13d4\\u13b3\\u13ec\\u13cd\\u13ac\": 8383,\n    \"\\u13d7\\u13c2\\u13a6\\u13d8\\u13ef\": 8384,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13ac\\u13ce\\u13b2\": 8385,\n    \"\\u13a1\\u13b3\\u13c2\": 8386,\n    \"\\u13a3\\u13cf\\u13c9\\u13cd\\u13aa\": 8387,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13c1\\u13b4\": 8388,\n    \"\\u2581\\u13c2\\u13da\\u13c2\\u13ea\\u13ce\\u13b4\": 8389,\n    \"\\u13aa\\u13ea\\u13b4\": 8390,\n    \"\\u2581\\u13d5\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 8391,\n    \"\\u2581\\u13e3\\u13be\\u13d7\": 8392,\n    \"\\u13a4\\u13d4\\u13b7\\u13a9\\u13cd\\u13a9\": 8393,\n    \"\\u2581\\u13e5\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\": 8394,\n    \"\\u2581\\u13d3\\u13a9\\u13cf\\u13b3\\u13db\": 8395,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13d9\\u13cd\\u13d5\": 8396,\n    \"\\u2581\\u13d7\\u13e6\\u13e2\": 8397,\n    \"\\u2581\\u13d3\\u13ab\": 8398,\n    \"\\u2581\\u13a4\\u13c1\\u13b8\\u13d4\\u13c1\": 8399,\n    \"\\u13c2\\u13e8\\u13c1\\u13cd\\u13d7\": 8400,\n    \"\\u13a0\\u13ce\\u13d7\": 8401,\n    \"\\u2581\\u13da\\u13e0\\u13f1\\u13b4\": 8402,\n    \"\\u2581\\u13c4\\u13d5\\u13d8\\u13f4\\u13ae\": 8403,\n    \"\\u13aa\\u13ea\\u13b5\": 8404,\n    \"\\u13aa\\u13ea\\u13b8\\u13a2\": 8405,\n    \"\\u2581\\u13c2\\u13a8\\u13ac\\u13c1\\u13b8\": 8406,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d3\": 8407,\n    \"\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\": 8408,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13d7\": 8409,\n    \"\\u13a0\\u13a8\\u13f4\": 8410,\n    \"\\u2581\\u13da\\u13eb\\u13de\\u13eb\\u13d2\": 8411,\n    \"\\u2581\\u13a0\\u13df\\u13cd\\u13db\": 8412,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13ea\\u13ce\\u13b4\": 8413,\n    \"\\u13c2\\u13cd\\u13da\\u13c1\": 8414,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13b2\": 8415,\n    \"\\u13e5\\u13c5\\u13ec\\u13d7\": 8416,\n    \"\\u2581\\u13d5\\u13ab\\u13aa\\u13d3\\u13c1\": 8417,\n    \"\\u13e3\\u13c1\\u13b3\": 8418,\n    \"\\u13a6\\u13b5\\u13c9\\u13a9\": 8419,\n    \"\\u13a3\\u13af\\u13cd\\u13d9\\u13d7\": 8420,\n    \"\\u2581\\u13e7\\u13ef\": 8421,\n    \"\\u13a4\\u13db\\u13c1\\u13a2\": 8422,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\": 8423,\n    \"\\u13be\\u13d7\\u13d4\\u13cd\\u13d7\": 8424,\n    \"\\u2581\\u13a4\\u13c2\\u13da\\u13b2\": 8425,\n    \"\\u2581\\u13ea\\u13ae\": 8426,\n    \"\\u2581\\u13e5\\u13cd\\u13da\\u13c2\\u13a9\\u13cd\\u13d7\": 8427,\n    \"\\u2581\\u13d5\\u13e5\\u13b3\\u13eb\": 8428,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13c1\": 8429,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13c5\": 8430,\n    \"\\u13c2\\u13ec\\u13c2\": 8431,\n    \"\\u2581\\u13a4\\u13c2\\u13c7\\u13d3\\u13b8\": 8432,\n    \"\\u2581\\u13a6\\u13c3\\u13aa\": 8433,\n    \"\\u2581\\u13da\\u13ec\\u13e2\\u13c1\": 8434,\n    \"\\u13e5\\u13b8\\u13c9\\u13d4\\u13c5\": 8435,\n    \"\\u2581\\u13a0\\u13d2\\u13db\": 8436,\n    \"\\u2581\\u13e9\\u13a9\\u13b6\\u13d2\": 8437,\n    \"\\u13a6\\u13ea\\u13cd\\u13ac\\u13a9\": 8438,\n    \"\\u2581\\u13a4\\u13c1\\u13b2\": 8439,\n    \"\\u2581\\u13d3\\u13c2\\u13d9\\u13ac\": 8440,\n    \"\\u2581\\u13da\\u13ea\\u13f2\\u13c1\": 8441,\n    \"\\u2581\\u13e5\\u13c4\\u13ea\\u13d2\": 8442,\n    \"\\u2581\\u13da\\u13c2\\u13b3\\u13eb\\u13e8\": 8443,\n    \"\\u2581\\u13d3\\u13a9\\u13aa\\u13b2\": 8444,\n    \"\\u13a9\\u13cc\": 8445,\n    \"\\u13ac\\u13c2\\u13a8\\u13d2\": 8446,\n    \"\\u2581\\u13a4\\u13ee\": 8447,\n    \"\\u13d7\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 8448,\n    \"\\u13af\\u13d9\\u13b2\": 8449,\n    \"\\u13c5\\u13aa\\u13e8\": 8450,\n    \"\\u2581\\u13e3\\u13c5\": 8451,\n    \"\\u13f2\\u13c2\": 8452,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13d7\": 8453,\n    \"\\u13c1\\u13a2\\u13cd\\u13d4\\u13c1\": 8454,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d4\\u13c1\": 8455,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13ad\": 8456,\n    \"\\u13c2\\u13aa\\u13b5\\u13f0\\u13a5\": 8457,\n    \"\\u2581\\u13a0\\u13db\\u13cd\\u13a8\": 8458,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13e1\": 8459,\n    \"\\u13a6\\u13d3\\u13a1\\u13a2\": 8460,\n    \"\\u13ef\\u13eb\\u13cd\\u13d7\": 8461,\n    \"\\u13af\\u13c4\\u13aa\\u13a2\": 8462,\n    \"\\u2581\\u13a4\\u13be\\u13e0\\u13e4\": 8463,\n    \"\\u2581\\u13a0\\u13e7\": 8464,\n    \"\\u13ea\\u13ce\\u13a2\": 8465,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13d2\": 8466,\n    \"\\u2581\\u13d7\\u13c2\\u13b3\\u13eb\": 8467,\n    \"\\u13a9\\u13d3\\u13df\": 8468,\n    \"\\u2581\\u13eb\\u13ac\\u13c6\": 8469,\n    \"\\u13ab\\u13c8\": 8470,\n    \"\\u2581\\u13a2\\u13a6\\u13af\": 8471,\n    \"\\u13f2\\u13b1\\u13ce\": 8472,\n    \"\\u13a6\\u13cd\\u13a6\\u13c2\": 8473,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\\u13b8\": 8474,\n    \"\\u2581\\u13c2\\u13e3\\u13b5\\u13cd\\u13d4\\u13c5\": 8475,\n    \"\\u2581\\u13ed\\u13c2\\u13c3\\u13c1\": 8476,\n    \"\\u13b6\\u13c4\\u13ae\\u13d7\\u13f1\": 8477,\n    \"\\u13c2\\u13d0\\u13e2\\u13a2\\u13cd\\u13d9\\u13d7\": 8478,\n    \"\\u2581\\u13db\\u13e5\": 8479,\n    \"\\u13c0\\u13a2\": 8480,\n    \"\\u13c1\\u13cd\\u13d3\\u13b3\": 8481,\n    \"\\u2581\\u13c4\\u13c5\\u13c1\\u13b4\": 8482,\n    \"\\u13cd\\u13d3\\u13c1\\u13b4\": 8483,\n    \"\\u2581\\u13a0\\u13c9\\u13b8\": 8484,\n    \"\\u13f2\\u13b1\\u13d2\\u13af\": 8485,\n    \"\\u13cf\\u13d3\\u13cd\\u13d7\": 8486,\n    \"\\u13c5\\u13e8\\u13a9\": 8487,\n    \"\\u2581\\u13f1\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 8488,\n    \"\\u13b9\\u13b5\": 8489,\n    \"\\u13c6\\u13d5\": 8490,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c1\\u13b6\": 8491,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\\u13e5\\u13b8\": 8492,\n    \"\\u2581\\u13f1\\u13e5\\u13aa\\u13e9\\u13d8\": 8493,\n    \"\\u13df\\u13cc\": 8494,\n    \"\\u13d8\\u13f3\": 8495,\n    \"\\u13c2\\u13ea\\u13cd\\u13ac\": 8496,\n    \"\\u13a1\\u13c6\": 8497,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13c5\\u13cd\\u13d7\": 8498,\n    \"\\u2581\\u13f1\\u13e3\\u13da\\u13b5\": 8499,\n    \"\\u2581\\u13e7\\u13f3\\u13aa\": 8500,\n    \"\\u2581\\u13a1\\u13a9\\u13c1\\u13b8\": 8501,\n    \"\\u2581\\u13be\\u13ce\\u13b5\": 8502,\n    \"\\u13c3\\u13af\\u13f0\": 8503,\n    \"\\u13ea\\u13b3\\u13c5\\u13af\": 8504,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13af\\u13cd\\u13d7\": 8505,\n    \"\\u13a0\\u13c6\\u13da\\u13b5\": 8506,\n    \"\\u2581\\u13a2\\u13f3\\u13c2\\u13ea\\u13cd\\u13d7\": 8507,\n    \"\\u2581\\u13e7\\u13c4\\u13aa\\u13d9\\u13d7\": 8508,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\": 8509,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13e1\": 8510,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13e4\\u13b5\": 8511,\n    \"\\u2581\\u13a2\\u13f3\\u13ea\\u13c5\\u13cd\": 8512,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13a2\\u13cd\\u13d7\": 8513,\n    \"\\u2581\\u13eb\\u13e8\\u13b7\\u13e4\\u13d7\": 8514,\n    \"\\u2581\\u13c7\\u13d7\\u13c2\": 8515,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 8516,\n    \"\\u13b8\\u13a2\\u13cd\\u13d7\": 8517,\n    \"\\u2581\\u13e5\\u13c4\\u13b5\\u13cd\\u13d4\": 8518,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\": 8519,\n    \"\\u2581\\u13d7\\u13a6\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\": 8520,\n    \"\\u13c1\\u13b6\\u13d9\": 8521,\n    \"\\u13e9\\u13d9\\u13af\\u13ef\\u13db\": 8522,\n    \"\\u2581\\u13d7\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 8523,\n    \"\\u2581\\u13a0\\u13f0\\u13d9\\u13b3\": 8524,\n    \"\\u13ef\\u13d8\\u13c3\\u13ae\\u13b8\": 8525,\n    \"\\u2581\\u13e7\\u13cd\\u13c6\\u13c5\": 8526,\n    \"\\u2581\\u13a0\\u13e5\\u13d9\\u13b5\\u13cd\\u13d7\": 8527,\n    \"\\u13a8\\u13f3\\u13e3\": 8528,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d9\\u13d7\": 8529,\n    \"\\u13f2\\u13a6\\u13db\\u13c1\\u13d7\": 8530,\n    \"\\u13c8\\u13f1\": 8531,\n    \"\\u13cd\\u13da\\u13a2\\u13ce\": 8532,\n    \"\\u13e3\\u13b3\\u13c1\": 8533,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13a2\\u13ae\": 8534,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13a6\\u13c5\": 8535,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ae\": 8536,\n    \"\\u13e1\\u13a6\": 8537,\n    \"\\u2581\\u13a0\\u13eb\\u13be\\u13a8\": 8538,\n    \"\\u13b4\\u13b2\\u13a6\": 8539,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13b8\\u13b2\": 8540,\n    \"\\u13c3\\u13ae\\u13ae\\u13b4\": 8541,\n    \"\\u2581\\u13a8\\u13e3\\u13b5\": 8542,\n    \"\\u13a8\\u13c5\\u13d5\": 8543,\n    \"\\u13b4\\u13ac\": 8544,\n    \"\\u13bf\\u13cd\\u13d5\\u13e2\": 8545,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13b5\\u13f2\": 8546,\n    \"\\u13be\\u13db\\u13d7\\u13f1\": 8547,\n    \"\\u13c4\\u13e9\\u13a2\\u13f4\": 8548,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d4\\u13c1\": 8549,\n    \"\\u2581\\u13d5\\u13be\\u13d3\\u13aa\": 8550,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13be\\u13c1\\u13d7\": 8551,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13aa\\u13d7\": 8552,\n    \"\\u13c1\\u13d3\\u13e5\\u13db\": 8553,\n    \"\\u13a7\\u13bf\\u13e9\\u13d7\\u13d3\": 8554,\n    \"\\u2581\\u13c4\\u13df\\u13c2\\u13ac\": 8555,\n    \"\\u13dd\\u13ea\\u13af\": 8556,\n    \"\\u13dc\\u13cf\\u13db\\u13a1\\u13b2\\u13be\": 8557,\n    \"\\u13a3\\u13cd\\u13db\": 8558,\n    \"\\u2581\\u13ae\\u13b2\": 8559,\n    \"\\u13a8\\u13e2\\u13d4\\u13c5\\u13ad\": 8560,\n    \"\\u13a6\\u13db\\u13c2\\u13d9\\u13af\\u13c9\": 8561,\n    \"\\u13b5\\u13cd\\u13d4\\u13c1\\u13cd\\u13d7\": 8562,\n    \"\\u13c5\\u13cd\\u13d3\\u13d5\\u13b4\": 8563,\n    \"\\u13c5\\u13b5\\u13f0\\u13d3\": 8564,\n    \"in\": 8565,\n    \"\\u13d7\\u13cc\\u13d3\\u13d5\": 8566,\n    \"\\u13e3\\u13b5\\u13a1\\u13b5\\u13e4\\u13d7\": 8567,\n    \"\\u2581\\u13d5\\u13ac\\u13a6\\u13bf\\u13e9\\u13d7\\u13d9\": 8568,\n    \"\\u13aa\\u13c5\\u13cd\\u13d3\\u13b5\": 8569,\n    \"\\u13d3\\u13f2\\u13b5\\u13cd\\u13d7\": 8570,\n    \"\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\\u13af\": 8571,\n    \"\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13db\\u13be\": 8572,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13ce\": 8573,\n    \"\\u2581\\u13e9\\u13be\\u13a6\\u13b3\": 8574,\n    \"\\u13ad\\u13c4\\u13e9\": 8575,\n    \"aire\": 8576,\n    \"ichael\": 8577,\n    \"reland\": 8578,\n    \"\\u13a6\\u13e8\\u13e9\\u13cd\\u13d9\\u13d7\\u13f1\": 8579,\n    \"\\u13b6\\u13c4\\u13b2\\u13b5\": 8580,\n    \"\\u13c2\\u13cd\\u13cb\\u13a6\": 8581,\n    \"\\u13cd\\u13d5\\u13b5\\u13cc\\u13d5\\u13d2\\u13ad\": 8582,\n    \"\\u13d3\\u13c2\\u13f2\\u13b0\\u13cd\\u13aa\": 8583,\n    \"\\u13d3\\u13c5\\u13d6\\u13d4\\u13c2\": 8584,\n    \"\\u13d3\\u13d3\\u13be\\u13c1\\u13b6\\u13c2\\u13a8\": 8585,\n    \"\\u13d4\\u13d5\\u13b6\\u13b0\\u13cf\": 8586,\n    \"\\u13da\\u13b8\\u13a1\\u13b8\\u13a9\": 8587,\n    \"\\u13e9\\u13db\\u13b1\\u13a6\": 8588,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13b1\\u13cf\\u13d7\": 8589,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c2\\u13d9\\u13ae\": 8590,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13d9\\u13af\\u13af\": 8591,\n    \"\\u2581\\u13a0\\u13cd\\u13c8\\u13c5\": 8592,\n    \"\\u2581\\u13a0\\u13e5\\u13c2\\u13cc\\u13b2\": 8593,\n    \"\\u2581\\u13a1\\u13e3\\u13c1\\u13b3\\u13c1\\u13b8\": 8594,\n    \"\\u2581\\u13a2\\u13a1\\u13cd\\u13d5\\u13b5\\u13cc\\u13d5\": 8595,\n    \"\\u2581\\u13a2\\u13cd\\u13d9\\u13ce\\u13b8\\u13ad\": 8596,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\\u13b8\": 8597,\n    \"\\u2581\\u13a2\\u13f0\\u13ac\\u13c1\\u13b8\\u13af\": 8598,\n    \"\\u2581\\u13a4\\u13a6\\u13d1\\u13b2\\u13a2\": 8599,\n    \"\\u2581\\u13a4\\u13b3\\u13cd\\u13da\\u13d2\": 8600,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c4\\u13f4\\u13d7\": 8601,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\": 8602,\n    \"\\u2581\\u13a4\\u13c1\\u13c4\\u13b3\\u13cd\\u13d4\\u13c1\\u13a2\": 8603,\n    \"\\u2581\\u13a4\\u13c2\\u13d4\\u13b3\\u13ec\\u13d2\\u13a9\": 8604,\n    \"\\u2581\\u13a4\\u13c4\\u13d6\\u13ce\": 8605,\n    \"\\u2581\\u13a4\\u13cd\\u13ab\\u13d3\\u13c1\\u13a6\\u13b8\": 8606,\n    \"\\u2581\\u13a4\\u13ed\\u13d3\\u13b8\\u13e4\": 8607,\n    \"\\u2581\\u13a6\\u13d6\\u13cc\\u13d7\": 8608,\n    \"\\u2581\\u13a8\\u13e4\\u13b3\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 8609,\n    \"\\u2581\\u13ac\\u13e9\\u13c4\\u13b8\\u13d7\": 8610,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13e1\\u13eb\\u13cd\\u13d4\\u13c5\\u13a9\": 8611,\n    \"\\u2581\\u13ac\\u13ec\\u13cd\\u13d4\\u13c5\\u13af\": 8612,\n    \"\\u2581\\u13ad\\u13d3\\u13a6\\u13d6\\u13d9\\u13a2\\u13cd\\u13a8\\u13cd\\u13d7\": 8613,\n    \"\\u2581\\u13ae\\u13cf\\u13a6\\u13ef\": 8614,\n    \"\\u2581\\u13c2\\u13a0\\u13c2\\u13ea\\u13ad\": 8615,\n    \"\\u2581\\u13c2\\u13a6\\u13b8\\u13c9\\u13d7\\u13cd\\u13ac\\u13be\": 8616,\n    \"\\u2581\\u13c2\\u13a7\\u13ea\\u13cd\\u13ac\\u13a9\": 8617,\n    \"\\u2581\\u13c2\\u13d3\\u13d3\\u13c2\\u13b8\\u13ac\\u13be\": 8618,\n    \"\\u2581\\u13c2\\u13d7\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\": 8619,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13cd\\u13aa\\u13a2\": 8620,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13ce\\u13a2\": 8621,\n    \"\\u2581\\u13c4\\u13c2\\u13a6\\u13d9\\u13a5\\u13d2\\u13be\": 8622,\n    \"\\u2581\\u13c5\\u13d3\\u13a8\\u13e5\\u13c5\\u13cf\\u13db\": 8623,\n    \"\\u2581\\u13c5\\u13d3\\u13cd\\u13db\\u13f4\\u13c1\\u13b5\": 8624,\n    \"\\u2581\\u13c5\\u13e9\\u13cd\\u13d7\\u13d7\\u13ce\\u13cd\\u13d7\\u13c9\": 8625,\n    \"\\u2581\\u13c8\\u13ef\\u13cf\\u13f1\\u13c6\": 8626,\n    \"\\u2581\\u13cd\\u13c6\\u13ce\\u13b5\\u13d3\\u13c1\\u13b8\\u13a2\": 8627,\n    \"\\u2581\\u13cd\\u13c6\\u13ce\\u13b5\\u13d3\\u13cf\": 8628,\n    \"\\u2581\\u13d0\\u13a3\\u13c1\\u13b5\\u13c1\": 8629,\n    \"\\u2581\\u13d1\\u13a7\\u13d4\": 8630,\n    \"\\u2581\\u13d3\\u13aa\\u13c4\\u13b6\\u13cf\\u13d9\\u13ae\\u13cd\\u13d7\": 8631,\n    \"\\u2581\\u13d3\\u13b5\\u13d6\\u13b8\\u13c2\\u13d9\\u13ae\\u13cd\\u13d7\": 8632,\n    \"\\u2581\\u13d3\\u13be\\u13e6\\u13cd\\u13ac\": 8633,\n    \"\\u2581\\u13d3\\u13c2\\u13cd\\u13d4\\u13f2\\u13af\\u13b2\": 8634,\n    \"\\u2581\\u13d3\\u13c2\\u13cf\\u13b3\\u13db\\u13a5\\u13cd\\u13a8\": 8635,\n    \"\\u2581\\u13d3\\u13c6\\u13da\\u13eb\\u13cd\\u13d4\\u13c5\\u13a9\": 8636,\n    \"\\u2581\\u13d3\\u13d3\\u13ec\\u13cd\\u13d7\\u13cd\\u13ac\\u13a9\": 8637,\n    \"\\u2581\\u13d3\\u13db\\u13af\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 8638,\n    \"\\u2581\\u13d4\\u13d3\\u13c5\\u13d7\\u13cd\\u13d3\": 8639,\n    \"\\u2581\\u13d5\\u13a4\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 8640,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13b4\\u13ac\\u13a2\": 8641,\n    \"\\u2581\\u13d5\\u13e5\\u13c5\\u13aa\\u13a5\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 8642,\n    \"\\u2581\\u13d5\\u13e5\\u13c5\\u13eb\\u13cd\\u13a8\\u13cd\\u13d7\": 8643,\n    \"\\u2581\\u13d5\\u13e6\\u13e2\\u13af\\u13cf\": 8644,\n    \"\\u2581\\u13d7\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 8645,\n    \"\\u2581\\u13d7\\u13a9\\u13c4\\u13aa\\u13e8\": 8646,\n    \"\\u2581\\u13d7\\u13d3\\u13d9\\u13ea\\u13d9\\u13a5\": 8647,\n    \"\\u2581\\u13d9\\u13d3\\u13f3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b5\": 8648,\n    \"\\u2581\\u13d9\\u13d7\\u13c2\\u13c1\\u13b8\\u13a2\": 8649,\n    \"\\u2581\\u13da\\u13a7\\u13d9\\u13cd\\u13d5\": 8650,\n    \"\\u2581\\u13da\\u13be\\u13c1\\u13e2\\u13d4\\u13c5\\u13d2\\u13a2\": 8651,\n    \"\\u2581\\u13da\\u13be\\u13e0\\u13f1\\u13b4\\u13a2\": 8652,\n    \"\\u2581\\u13da\\u13c2\\u13d6\\u13b8\\u13c1\": 8653,\n    \"\\u2581\\u13da\\u13c3\\u13e3\\u13b6\\u13e4\": 8654,\n    \"\\u2581\\u13da\\u13e2\\u13eb\\u13ce\\u13b4\": 8655,\n    \"\\u2581\\u13e0\\u13c6\\u13b9\": 8656,\n    \"\\u2581\\u13e3\\u13cd\\u13d5\\u13c5\\u13e8\": 8657,\n    \"\\u2581\\u13e3\\u13d7\\u13eb\\u13cd\\u13d3\": 8658,\n    \"\\u2581\\u13e7\\u13a6\\u13ce\\u13cd\\u13d7\\u13d5\\u13a9\": 8659,\n    \"\\u2581\\u13e7\\u13c3\\u13d5\\u13cd\\u13d7\\u13cd\\u13a9\": 8660,\n    \"\\u2581\\u13eb\\u13d9\\u13d3\\u13e8\\u13ef\": 8661,\n    \"\\u2581\\u13eb\\u13f4\\u13a8\\u13e5\\u13b7\\u13a9\": 8662,\n    \"\\u2581\\u13ed\\u13ed\\u13d3\\u13b8\": 8663,\n    \"\\u2581\\u13ee\\u13d3\\u13a6\\u13b6\\u13cf\": 8664,\n    \"\\u2581\\u13ef\\u13d3\\u13ec\\u13cd\\u13a8\\u13cd\\u13d7\": 8665,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d4\\u13c3\": 8666,\n    \"\\u2581\\u13f1\\u13d9\\u13ac\\u13e9\\u13b8\\u13eb\\u13cd\\u13d3\\u13cf\": 8667,\n    \"\\u2581\\u13f1\\u13da\\u13d3\\u13cc\\u13dd\\u13ae\\u13cd\\u13d7\": 8668,\n    \"\\u2581\\u13f1\\u13da\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b4\\u13a2\": 8669,\n    \"\\u2581\\u13f1\\u13da\\u13ea\\u13d8\\u13b8\": 8670,\n    \"\\u2581\\u13f1\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\\u13ad\": 8671,\n    \"\\u2581\\u13f3\\u13be\\u13db\\u13c5\\u13a2\\u13cd\\u13d7\": 8672,\n    \"\\u2581\\u13f3\\u13cd\\u13a6\\u13c5\\u13e8\": 8673,\n    \"\\u2581\\u13f4\\u13ac\\u13c2\\u13b7\\u13a9\": 8674,\n    \"\\u13b5\\u13f0\\u13d1\\u13cd\\u13da\\u13ec\": 8675,\n    \"\\u13cd\\u13c7\\u13b5\\u13f0\\u13d7\": 8676,\n    \"\\u13d3\\u13be\\u13eb\\u13db\\u13d7\": 8677,\n    \"\\u2581\\u13a0\\u13c2\\u13ab\\u13cc\\u13e9\\u13a9\": 8678,\n    \"\\u2581\\u13a2\\u13cd\\u13c9\\u13ce\\u13ad\": 8679,\n    \"\\u2581\\u13a4\\u13e6\\u13d4\\u13ae\": 8680,\n    \"\\u2581\\u13c2\\u13d3\\u13b7\\u13b8\\u13a5\\u13cd\\u13ac\\u13be\": 8681,\n    \"\\u2581\\u13c2\\u13da\\u13bf\\u13cd\\u13d5\\u13e2\\u13be\": 8682,\n    \"\\u2581\\u13d7\\u13a9\\u13a7\\u13c1\\u13b8\\u13af\": 8683,\n    \"\\u2581\\u13d9\\u13d3\\u13a8\\u13e5\\u13f2\\u13af\\u13ce\\u13b5\": 8684,\n    \"\\u2581\\u13d9\\u13e7\\u13c1\\u13c5\\u13d2\": 8685,\n    \"\\u2581\\u13e9\\u13c2\\u13a6\\u13d6\\u13a2\": 8686,\n    \"\\u13e5\\u13cd\\u13a9\\u13c5\\u13db\\u13af\": 8687,\n    \"\\u13ec\\u13af\\u13b5\\u13f4\\u13cd\\u13d3\\u13c1\": 8688,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13d7\\u13cd\\u13d9\\u13d7\": 8689,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13cc\\u13a9\\u13d9\\u13b2\": 8690,\n    \"\\u2581\\u13a4\\u13d3\\u13cf\\u13c2\\u13d5\\u13c5\": 8691,\n    \"\\u2581\\u13a4\\u13d9\\u13b4\\u13b1\": 8692,\n    \"\\u2581\\u13b5\\u13c6\\u13d7\\u13bb\": 8693,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13c5\\u13d3\\u13d7\\u13cd\\u13ac\\u13a2\": 8694,\n    \"\\u2581\\u13cd\\u13a9\\u13f2\\u13a2\\u13f3\\u13b2\\u13a6\": 8695,\n    \"\\u2581\\u13d3\\u13a6\\u13d3\\u13c5\\u13cf\": 8696,\n    \"\\u2581\\u13d3\\u13cd\\u13c6\\u13b8\\u13ae\\u13ac\\u13a2\": 8697,\n    \"\\u2581\\u13e6\\u13a7\\u13d4\\u13c2\": 8698,\n    \"\\u2581\\u13e8\\u13d3\\u13ac\\u13ef\\u13ce\\u13ae\\u13b5\": 8699,\n    \"\\u2581\\u13ed\\u13ea\\u13d9\\u13b4\\u13a2\": 8700,\n    \"\\u2581\\u13f1\\u13c4\\u13d3\\u13a0\": 8701,\n    \"\\u13af\\u13ac\\u13cd\\u13aa\\u13b8\\u13a5\\u13cd\\u13a8\\u13cd\\u13d7\": 8702,\n    \"\\u13e4\\u13f2\\u13b2\\u13cd\\u13a6\": 8703,\n    \"\\u2581\\u13a0\\u13bb\\u13d7\\u13cf\": 8704,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13a9\\u13a1\\u13af\": 8705,\n    \"\\u2581\\u13a2\\u13e8\\u13c2\\u13cc\\u13db\": 8706,\n    \"\\u2581\\u13a2\\u13ef\\u13c2\\u13ea\\u13cd\\u13a9\": 8707,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13db\\u13db\\u13af\": 8708,\n    \"\\u2581\\u13a4\\u13c3\\u13b1\\u13a6\\u13c5\": 8709,\n    \"\\u2581\\u13a4\\u13c9\\u13d4\\u13d7\": 8710,\n    \"\\u2581\\u13a4\\u13d6\\u13b8\\u13c1\": 8711,\n    \"\\u2581\\u13aa\\u13b8\\u13cc\\u13db\\u13d7\": 8712,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13d1\\u13b4\\u13b2\\u13be\": 8713,\n    \"\\u2581\\u13c5\\u13d7\\u13db\\u13c1\\u13b5\\u13d2\": 8714,\n    \"\\u2581\\u13c7\\u13e3\\u13f1\\u13d7\": 8715,\n    \"\\u2581\\u13cc\\u13b7\\u13f1\": 8716,\n    \"\\u2581\\u13cd\\u13a9\\u13a8\\u13f3\\u13ad\\u13e7\": 8717,\n    \"\\u2581\\u13d3\\u13ac\\u13ef\\u13ab\\u13f4\\u13a1\\u13b5\": 8718,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\\u13c9\\u13d4\\u13c5\\u13af\": 8719,\n    \"\\u2581\\u13d7\\u13c2\\u13ad\\u13f2\\u13af\": 8720,\n    \"\\u2581\\u13d7\\u13c2\\u13cf\\u13b2\\u13cd\\u13a9\": 8721,\n    \"\\u2581\\u13d7\\u13f2\\u13b3\\u13c5\\u13af\": 8722,\n    \"\\u2581\\u13d9\\u13db\\u13c2\\u13f2\\u13af\\u13ce\\u13b5\": 8723,\n    \"\\u2581\\u13e3\\u13c2\\u13a6\\u13f4\\u13b5\": 8724,\n    \"\\u2581\\u13e6\\u13a9\\u13a6\\u13f4\\u13b5\\u13a8\\u13a2\": 8725,\n    \"\\u2581\\u13f1\\u13c4\\u13e9\\u13c1\\u13b8\": 8726,\n    \"\\u2581\\u13a0\\u13a9\\u13d4\\u13b3\\u13ec\\u13cd\\u13ac\": 8727,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13d9\\u13a9\\u13ef\\u13cd\\u13a9\": 8728,\n    \"\\u2581\\u13a3\\u13a6\\u13db\\u13c5\\u13a2\\u13cd\\u13d7\": 8729,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a6\\u13ce\": 8730,\n    \"\\u2581\\u13a4\\u13f2\\u13cf\\u13cc\\u13c1\\u13a2\": 8731,\n    \"\\u2581\\u13ac\\u13e9\\u13b5\\u13c3\\u13ae\\u13d4\\u13c1\": 8732,\n    \"\\u2581\\u13cd\\u13c7\\u13b5\\u13ce\\u13d7\\u13f1\": 8733,\n    \"\\u2581\\u13da\\u13c2\\u13d0\\u13e8\": 8734,\n    \"\\u2581\\u13da\\u13df\\u13b6\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 8735,\n    \"\\u2581\\u13e5\\u13eb\\u13d7\\u13a8\\u13a6\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\": 8736,\n    \"\\u2581\\u13ef\\u13c2\\u13b7\\u13a9\": 8737,\n    \"\\u13d7\\u13a9\\u13f4\\u13a9\": 8738,\n    \"\\u2581Co\": 8739,\n    \"\\u2581\\u13a1\\u13b5\\u13cd\\u13d3\\u13a6\": 8740,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13e4\\u13b8\\u13a2\": 8741,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13a5\\u13af\": 8742,\n    \"\\u2581\\u13a4\\u13e9\\u13a2\\u13ce\\u13b8\\u13af\": 8743,\n    \"\\u2581\\u13be\\u13c2\\u13f4\\u13ac\\u13be\": 8744,\n    \"\\u2581\\u13c4\\u13aa\\u13b8\\u13be\": 8745,\n    \"\\u2581\\u13c5\\u13d3\\u13f2\\u13e3\\u13db\\u13c1\\u13b5\": 8746,\n    \"\\u2581\\u13da\\u13ec\\u13d1\\u13b4\": 8747,\n    \"\\u2581\\u13e7\\u13c2\\u13cd\\u13da\\u13d7\": 8748,\n    \"\\u2581\\u13e9\\u13d3\\u13c1\\u13df\\u13f4\\u13cd\\u13d3\": 8749,\n    \"\\u2581\\u13a0\\u13c2\\u13c7\\u13b5\\u13cf\": 8750,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13df\\u13f4\\u13cd\\u13d4\\u13c1\\u13b4\": 8751,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13b5\\u13c2\\u13ac\\u13ac\": 8752,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c2\\u13d9\\u13b4\": 8753,\n    \"\\u2581\\u13d5\\u13d3\\u13a7\\u13c2\\u13cd\\u13ac\": 8754,\n    \"\\u2581\\u13e5\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\": 8755,\n    \"\\u2581\\u13e5\\u13d3\\u13be\\u13d5\\u13f2\\u13b2\\u13cd\": 8756,\n    \"\\u2581\\u13a4\\u13d5\\u13ef\\u13d4\\u13c1\\u13b8\": 8757,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13da\\u13b8\\u13be\": 8758,\n    \"\\u2581\\u13e9\\u13a6\\u13d8\\u13c5\\u13cd\\u13d9\\u13d7\\u13f1\": 8759,\n    \"\\u2581\\u13a0\\u13a9\\u13b3\\u13eb\\u13cd\\u13d7\\u13f1\": 8760,\n    \"\\u2581\\u13a0\\u13c6\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\\u13f1\": 8761,\n    \"\\u2581\\u13a0\\u13e5\\u13c5\\u13e9\\u13c5\\u13a2\": 8762,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13db\\u13d4\\u13c5\": 8763,\n    \"\\u2581\\u13a4\\u13c6\\u13b6\\u13a6\": 8764,\n    \"\\u2581\\u13c8\\u13e5\\u13f1\": 8765,\n    \"\\u2581\\u13d5\\u13b1\\u13d3\": 8766,\n    \"\\u2581\\u13da\\u13f0\\u13b5\\u13af\\u13cd\\u13d4\\u13c1\": 8767,\n    \"\\u2581\\u13e6\\u13d3\\u13bb\": 8768,\n    \"\\u2581\\u13eb\\u13b7\\u13e8\\u13ad\": 8769,\n    \"\\u2581\\u13ee\\u13d3\\u13a6\\u13d9\\u13b4\\u13a3\\u13cf\": 8770,\n    \"\\u2581\\u13f4\\u13a8\\u13e6\\u13af\\u13f3\\u13b2\\u13a6\": 8771,\n    \"\\u2581\\u13a3\\u13cc\\u13ef\": 8772,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13ef\\u13d4\\u13c1\\u13b4\\u13a2\": 8773,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13d2\\u13b8\": 8774,\n    \"\\u2581\\u13bb\\u13b4\\u13b3\": 8775,\n    \"\\u2581\\u13d3\\u13be\\u13d7\\u13d4\\u13cd\\u13d7\\u13cd\\u13a8\": 8776,\n    \"\\u2581\\u13d7\\u13c2\\u13cd\\u13d4\\u13f2\\u13af\": 8777,\n    \"\\u2581\\u13e5\\u13a8\\u13f3\\u13a0\": 8778,\n    \"per\": 8779,\n    \"\\u2581\\u13a0\\u13ab\\u13f4\\u13a1\\u13d7\\u13f1\": 8780,\n    \"\\u2581\\u13a4\\u13da\\u13e3\\u13b3\\u13c5\\u13a9\": 8781,\n    \"\\u2581\\u13d9\\u13d3\\u13f0\\u13e3\\u13ec\\u13cd\\u13d4\\u13c2\": 8782,\n    \"\\u2581\\u13da\\u13b5\\u13d8\\u13be\\u13a5\": 8783,\n    \"\\u2581\\u13da\\u13c2\\u13b5\\u13ec\\u13e8\\u13a9\": 8784,\n    \"\\u2581\\u13e5\\u13da\\u13c3\\u13b1\\u13a6\\u13c1\": 8785,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d5\\u13b8\\u13d3\": 8786,\n    \"\\u2581\\u13a1\\u13e6\\u13af\\u13f3\\u13b2\\u13cd\": 8787,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\\u13c1\\u13c9\\u13a2\": 8788,\n    \"\\u2581\\u13d3\\u13f1\\u13d3\\u13b5\": 8789,\n    \"\\u2581\\u13e3\\u13b7\\u13af\\u13cd\\u13d7\\u13f1\": 8790,\n    \"\\u2581\\u13e7\\u13b3\\u13cf\\u13d7\\u13f1\": 8791,\n    \"\\u13a9\\u13f2\\u13b1\\u13ce\\u13b2\\u13a9\": 8792,\n    \"\\u13ec\\u13c1\\u13d3\": 8793,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13df\\u13d9\": 8794,\n    \"\\u2581\\u13a4\\u13a6\\u13d6\\u13c3\": 8795,\n    \"\\u2581\\u13a4\\u13be\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d9\\u13d7\\u13f1\": 8796,\n    \"\\u2581\\u13a6\\u13e8\\u13e9\\u13cd\\u13d4\\u13c5\\u13af\": 8797,\n    \"\\u2581\\u13ac\\u13e9\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\": 8798,\n    \"\\u2581\\u13c2\\u13d9\\u13d3\\u13a6\\u13ea\\u13ce\\u13b5\": 8799,\n    \"\\u2581\\u13d3\\u13e4\\u13c5\\u13a1\\u13b5\": 8800,\n    \"\\u2581\\u13d5\\u13a6\\u13c6\\u13db\": 8801,\n    \"\\u2581\\u13d5\\u13af\\u13ef\\u13c1\\u13b6\\u13d5\\u13cd\\u13d7\": 8802,\n    \"\\u2581\\u13e5\\u13c2\\u13f4\\u13c1\\u13ad\": 8803,\n    \"\\u2581\\u13a4\\u13ec\\u13a6\\u13d2\": 8804,\n    \"\\u2581\\u13ec\\u13a9\\u13c3\\u13b8\\u13a9\": 8805,\n    \"\\u2581\\u13be\\u13c2\\u13a6\\u13d4\\u13be\\u13a5\\u13be\": 8806,\n    \"\\u2581\\u13d7\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c2\": 8807,\n    \"\\u13cd\\u13da\\u13a2\\u13a1\\u13b8\": 8808,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\": 8809,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13be\\u13db\\u13aa\\u13d9\\u13d7\": 8810,\n    \"\\u2581\\u13d9\\u13a6\\u13e0\\u13d2\\u13a9\": 8811,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13b6\\u13c6\\u13cd\\u13d7\\u13f1\": 8812,\n    \"\\u2581\\u13bb\\u13d7\\u13ef\\u13c2\": 8813,\n    \"\\u2581\\u13c4\\u13c2\\u13cd\\u13a6\\u13c5\\u13e8\\u13be\": 8814,\n    \"\\u2581\\u13db\\u13d3\\u13b8\\u13a2\": 8815,\n    \"\\u2581\\u13ef\\u13e5\\u13ef\\u13dd\": 8816,\n    \"\\u13d3\\u13b4\\u13f4\\u13d7\\u13cd\\u13a9\": 8817,\n    \"\\u13d3\\u13d3\\u13b4\\u13d4\\u13c2\": 8818,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13b5\\u13f0\\u13a5\\u13ad\": 8819,\n    \"\\u2581\\u13a4\\u13be\\u13e6\\u13cd\\u13d4\\u13c1\": 8820,\n    \"\\u2581\\u13c2\\u13e8\\u13be\\u13db\": 8821,\n    \"\\u2581\\u13f1\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d3\": 8822,\n    \"\\u13b1\\u13e2\\u13d4\\u13c5\\u13ad\": 8823,\n    \"\\u2581\\u13db\\u13e5\\u13b7\\u13e5\": 8824,\n    \"\\u2581\\u13d2\\u13a6\\u13d9\\u13af\": 8825,\n    \"\\u13d9\\u13e5\\u13b5\\u13e6\\u13db\\u13a6\": 8826,\n    \"\\u2581\\u13a0\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13ac\\u13a2\": 8827,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13a9\": 8828,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13cd\\u13d9\\u13d7\\u13f1\": 8829,\n    \"\\u2581\\u13a4\\u13ce\\u13b5\\u13d3\\u13c1\\u13b4\\u13c3\": 8830,\n    \"\\u2581\\u13c2\\u13d9\\u13d3\\u13ac\\u13c1\\u13b5\": 8831,\n    \"\\u2581\\u13c5\\u13d3\\u13e8\\u13f4\\u13c1\\u13b5\": 8832,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13d9\\u13d5\\u13cd\\u13d7\\u13cd\\u13a9\": 8833,\n    \"\\u2581\\u13a0\\u13f0\\u13b4\\u13a9\": 8834,\n    \"\\u2581\\u13a6\\u13f4\\u13d3\\u13d7\": 8835,\n    \"\\u2581\\u13d5\\u13a6\\u13d5\\u13f2\\u13b2\\u13cd\\u13ac\": 8836,\n    \"\\u2581\\u13d5\\u13a7\\u13c3\\u13ae\\u13cd\\u13ac\": 8837,\n    \"\\u2581\\u13da\\u13b3\\u13eb\\u13db\": 8838,\n    \"\\u13a9\\u13b5\\u13f2\\u13e5\\u13d9\\u13b8\\u13a2\": 8839,\n    \"\\u2581\\u13a4\\u13c5\\u13d8\\u13db\": 8840,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b7\\u13aa\": 8841,\n    \"\\u2581\\u13a4\\u13d9\\u13e3\\u13b8\\u13a2\": 8842,\n    \"\\u2581\\u13be\\u13be\\u13d3\\u13db\\u13cd\\u13ac\\u13be\": 8843,\n    \"\\u2581\\u13a3\\u13e5\\u13ef\\u13a5\": 8844,\n    \"\\u2581\\u13a4\\u13d3\\u13e6\\u13af\\u13ef\": 8845,\n    \"\\u2581\\u13d7\\u13e7\\u13aa\\u13d7\\u13cd\\u13a9\": 8846,\n    \"\\u2581\\u13af\\u13ef\\u13db\\u13a5\\u13a6\": 8847,\n    \"\\u2581\\u13d9\\u13a9\\u13be\\u13d7\\u13d4\\u13b2\": 8848,\n    \"\\u2581\\u13a6\\u13c5\\u13c3\\u13eb\": 8849,\n    \"\\u2581\\u13e7\\u13c3\\u13d1\\u13b4\\u13d7\": 8850,\n    \"\\u13f2\\u13b1\\u13af\\u13ce\\u13b4\\u13a2\": 8851,\n    \"\\u2581\\u13a6\\u13e2\\u13cd\\u13a9\": 8852,\n    \"\\u2581\\u13c4\\u13be\\u13d9\\u13d3\\u13c8\\u13d2\": 8853,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d3\\u13cd\\u13a9\\u13cc\\u13b2\": 8854,\n    \"\\u2581\\u13a6\\u13c3\\u13b1\\u13a9\\u13cd\\u13a8\": 8855,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13ea\": 8856,\n    \"\\u2581\\u13a0\\u13c2\\u13c2\\u13a9\\u13b8\": 8857,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13a2\\u13db\": 8858,\n    \"\\u2581\\u13a4\\u13a6\\u13db\\u13b4\\u13af\\u13cd\\u13d7\\u13f1\": 8859,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c2\\u13ef\\u13a2\": 8860,\n    \"\\u2581\\u13db\\u13b5\\u13db\\u13d4\\u13c2\": 8861,\n    \"\\u2581\\u13c4\\u13b5\\u13cc\": 8862,\n    \"\\u2581\\u13a0\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 8863,\n    \"\\u2581\\u13a4\\u13cd\\u13d8\\u13f0\\u13a9\": 8864,\n    \"\\u2581\\u13a4\\u13df\\u13c3\\u13ae\\u13d4\\u13c1\\u13a2\": 8865,\n    \"\\u2581\\u13c4\\u13c2\\u13e7\\u13c8\\u13cd\\u13d5\\u13cd\\u13d7\": 8866,\n    \"\\u2581\\u13db\\u13ac\\u13ef\\u13d8\\u13c3\": 8867,\n    \"\\u2581\\u13a0\\u13b5\\u13f1\\u13b5\\u13d2\\u13a2\": 8868,\n    \"\\u2581\\u13a0\\u13c3\\u13e2\\u13c5\\u13a5\\u13cd\\u13a9\": 8869,\n    \"\\u2581\\u13e7\\u13be\\u13db\\u13d2\\u13af\": 8870,\n    \"\\u13ab\\u13aa\\u13d3\\u13c1\\u13d7\": 8871,\n    \"\\u13d1\\u13b6\\u13e8\\u13af\": 8872,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13a9\\u13cd\\u13ac\": 8873,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c3\\u13c5\": 8874,\n    \"\\u2581\\u13e5\\u13c4\\u13be\\u13cd\\u13db\\u13a2\": 8875,\n    \"\\u13e8\\u13ef\\u13db\\u13db\\u13c2\": 8876,\n    \"\\u2581\\u13a6\\u13a8\\u13e5\\u13d0\\u13e2\": 8877,\n    \"\\u13bf\\u13b8\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 8878,\n    \"\\u13d5\\u13ef\\u13d4\\u13c1\\u13ad\": 8879,\n    \"\\u13e3\\u13d3\\u13c5\\u13a1\\u13b8\": 8880,\n    \"\\u2581\\u13c3\\u13a9\\u13ea\\u13d2\\u13a9\": 8881,\n    \"\\u2581\\u13d3\\u13f3\\u13c2\\u13c4\\u13aa\\u13e8\\u13a9\": 8882,\n    \"\\u2581\\u13a4\\u13d7\\u13db\\u13b2\\u13a9\": 8883,\n    \"\\u2581\\u13c2\\u13a8\\u13e3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 8884,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13df\\u13f4\\u13d7\": 8885,\n    \"\\u2581\\u13d7\\u13b5\\u13f0\": 8886,\n    \"\\u2581\\u13d9\\u13a9\\u13c3\\u13e2\": 8887,\n    \"\\u2581\\u13a0\\u13a9\\u13d4\\u13d5\\u13a9\\u13cd\\u13ac\": 8888,\n    \"\\u2581\\u13d9\\u13d8\\u13f2\\u13a2\": 8889,\n    \"\\u2581\\u13da\\u13e5\\u13b8\\u13d2\": 8890,\n    \"\\u2581\\u13eb\\u13c4\\u13d2\": 8891,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13bf\\u13d5\\u13a9\": 8892,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13b5\\u13d5\\u13ac\": 8893,\n    \"\\u2581\\u13da\\u13be\\u13b5\\u13ef\\u13cd\\u13da\": 8894,\n    \"\\u2581\\u13e3\\u13a6\\u13e5\\u13b6\\u13cd\\u13d4\\u13c5\": 8895,\n    \"\\u2581\\u13e7\\u13a7\\u13c3\\u13d7\\u13f1\": 8896,\n    \"\\u13ac\\u13e3\\u13dd\\u13c5\": 8897,\n    \"\\u2581\\u13c2\\u13a6\\u13b7\\u13b6\\u13ac\\u13be\": 8898,\n    \"\\u2581\\u13da\\u13b5\\u13e5\\u13d9\\u13c1\\u13b4\\u13a2\": 8899,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13db\\u13c1\\u13ad\": 8900,\n    \"\\u2581\\u13a0\\u13a9\\u13df\\u13f2\": 8901,\n    \"\\u2581\\u13c5\\u13d3\\u13e5\\u13ef\\u13db\\u13c1\\u13b5\": 8902,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13d9\\u13cd\\u13a8\\u13cd\\u13d7\": 8903,\n    \"\\u2581\\u13f0\\u13e6\\u13ce\\u13ae\\u13cd\\u13d7\": 8904,\n    \"\\u2581\\u13da\\u13c4\\u13ee\": 8905,\n    \"\\u2581\\u13a0\\u13c9\\u13b5\\u13e8\": 8906,\n    \"\\u2581\\u13a4\\u13c4\\u13ec\\u13a5\\u13af\": 8907,\n    \"\\u2581\\u13a1\\u13e3\\u13c1\\u13cd\\u13a8\\u13b2\\u13af\": 8908,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\\u13d9\\u13ae\\u13cd\\u13d7\": 8909,\n    \"\\u2581\\u13d7\\u13a9\\u13aa\\u13b6\\u13af\": 8910,\n    \"\\u2581\\u13d7\\u13e5\\u13c5\\u13cd\\u13a8\\u13c2\": 8911,\n    \"\\u2581\\u13e7\\u13c1\\u13a9\\u13f3\": 8912,\n    \"\\u2581\\u13c4\\u13d3\\u13c5\\u13db\\u13be\": 8913,\n    \"\\u2581\\u13a0\\u13c3\\u13e2\\u13cd\\u13ac\": 8914,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13a2\\u13d3\": 8915,\n    \"\\u2581\\u13a2\\u13e5\\u13be\\u13eb\": 8916,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13c6\\u13db\\u13ad\": 8917,\n    \"\\u2581\\u13a1\\u13e3\\u13b5\\u13a1\\u13b5\\u13e4\\u13ae\\u13cd\\u13d7\": 8918,\n    \"\\u13b3\\u13eb\\u13ce\\u13ae\\u13cd\\u13d7\": 8919,\n    \"\\u13e7\\u13be\\u13da\\u13a9\\u13ce\": 8920,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13c2\\u13ac\\u13ac\\u13a2\": 8921,\n    \"\\u2581\\u13eb\\u13b7\\u13a9\": 8922,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 8923,\n    \"\\u2581\\u13a2\\u13cf\\u13b3\\u13bb\": 8924,\n    \"\\u2581\\u13be\\u13d0\\u13c2\": 8925,\n    \"\\u2581\\u13be\\u13d3\\u13db\\u13c1\\u13b2\\u13a2\": 8926,\n    \"\\u13be\\u13aa\\u13c4\\u13b8\": 8927,\n    \"\\u2581\\u13a8\\u13a9\\u13cd\\u13a6\\u13a9\": 8928,\n    \"\\u2581\\u13b9\\u13c8\\u13b3\": 8929,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13f0\\u13d2\\u13a9\": 8930,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\\u13c5\\u13af\\u13d2\\u13a9\": 8931,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13a9\\u13cd\\u13a8\\u13cd\\u13d7\": 8932,\n    \"\\u13a9\\u13b5\\u13f2\\u13a8\\u13cd\\u13d7\": 8933,\n    \"\\u13b3\\u13eb\\u13ce\\u13d7\": 8934,\n    \"\\u2581\\u13a4\\u13c1\\u13e2\\u13d4\\u13c5\\u13d2\\u13a2\": 8935,\n    \"\\u2581\\u13c4\\u13f2\\u13b1\\u13d2\\u13a9\": 8936,\n    \"\\u2581\\u13d7\\u13d3\\u13aa\\u13d7\\u13cd\\u13a9\": 8937,\n    \"\\u13cd\\u13a6\\u13b3\\u13e4\": 8938,\n    \"\\u2581\\u13f1\\u13e9\\u13cd\\u13d4\": 8939,\n    \"\\u2581\\u13db\\u13a9\\u13f2\\u13b5\": 8940,\n    \"\\u13ac\\u13f2\\u13ce\\u13d7\": 8941,\n    \"\\u13e2\\u13e5\\u13f0\\u13cd\": 8942,\n    \"\\u2581\\u13e5\\u13d3\\u13d3\\u13c2\\u13b8\\u13aa\\u13a2\": 8943,\n    \"\\u2581\\u13a0\\u13b5\\u13f1\\u13b6\\u13b8\\u13ad\": 8944,\n    \"\\u2581\\u13d9\\u13a8\\u13e5\": 8945,\n    \"\\u2581\\u13eb\\u13e8\\u13f2\\u13b5\": 8946,\n    \"\\u2581\\u13a0\\u13c6\\u13c1\\u13b3\\u13eb\\u13ce\": 8947,\n    \"\\u2581\\u13be\\u13c2\\u13a6\\u13d4\\u13bf\\u13a5\\u13be\": 8948,\n    \"\\u2581\\u13a4\\u13a7\\u13b5\\u13e6\\u13c5\": 8949,\n    \"\\u13b3\\u13cd\\u13d5\\u13b5\\u13f4\\u13cc\": 8950,\n    \"\\u2581\\u13d2\\u13af\\u13f0\": 8951,\n    \"\\u2581\\u13f1\\u13d3\\u13c2\\u13c1\\u13df\\u13f4\": 8952,\n    \"\\u2581\\u13a4\\u13ea\\u13e3\\u13c4\": 8953,\n    \"\\u2581\\u13a0\\u13a8\\u13be\\u13c2\": 8954,\n    \"\\u2581\\u13e7\\u13f2\\u13cd\\u13d4\\u13c5\\u13af\": 8955,\n    \"\\u2581\\u13ec\\u13e5\\u13a6\\u13db\": 8956,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d4\\u13c1\\u13d7\": 8957,\n    \"\\u2581\\u13a4\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 8958,\n    \"\\u2581\\u13e7\\u13be\\u13b3\\u13cf\\u13d5\\u13c4\\u13b6\\u13d7\": 8959,\n    \"\\u2581\\u13a0\\u13a9\\u13ec\\u13c2\": 8960,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b3\\u13db\": 8961,\n    \"\\u2581\\u13d5\\u13b1\\u13aa\": 8962,\n    \"\\u2581\\u13eb\\u13da\\u13be\\u13d8\\u13c3\\u13ae\\u13b8\\u13a9\": 8963,\n    \"\\u13f2\\u13b1\\u13d2\\u13be\": 8964,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13ea\\u13d2\\u13a9\": 8965,\n    \"\\u2581\\u13f3\\u13cd\\u13c6\\u13b8\": 8966,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13be\\u13b8\": 8967,\n    \"\\u2581\\u13e7\\u13be\\u13b3\\u13cf\\u13d5\\u13c5\": 8968,\n    \"\\u2581\\u13ed\\u13ea\\u13d9\\u13b8\": 8969,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13db\\u13c5\": 8970,\n    \"\\u13a9\\u13cd\\u13da\\u13b2\\u13a9\": 8971,\n    \"\\u2581\\u13c2\\u13d7\\u13e8\\u13a6\": 8972,\n    \"\\u2581\\u13a2\\u13aa\\u13af\\u13f3\\u13d2\": 8973,\n    \"\\u2581\\u13e3\\u13aa\\u13ce\\u13b0\\u13a2\": 8974,\n    \"\\u2581\\u13c2\\u13e5\\u13f2\\u13af\\u13cd\\u13d7\\u13cd\\u13ac\\u13be\": 8975,\n    \"\\u2581\\u13a0\\u13be\\u13d5\\u13b2\\u13cd\\u13a8\": 8976,\n    \"\\u2581\\u13a4\\u13c3\\u13f4\\u13b3\\u13d2\": 8977,\n    \"\\u2581\\u13a4\\u13c5\\u13eb\\u13cd\\u13d7\\u13cd\\u13a9\": 8978,\n    \"\\u2581\\u13c4\\u13b5\\u13c1\\u13e8\": 8979,\n    \"\\u2581\\u13c5\\u13e7\\u13ea\\u13ce\\u13b4\\u13a2\": 8980,\n    \"\\u13cd\\u13c7\\u13f2\\u13b2\\u13a6\": 8981,\n    \"\\u2581\\u13a0\\u13aa\\u13e9\\u13d8\\u13cd\\u13a9\": 8982,\n    \"\\u2581\\u13c1\\u13d9\\u13b2\\u13be\": 8983,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13db\\u13d3\\u13cd\\u13d3\\u13cf\": 8984,\n    \"\\u13e9\\u13b5\": 8985,\n    \"\\u13b5\\u13af\\u13ae\\u13a2\": 8986,\n    \"\\u2581\\u13cf\\u13d7\\u13bb\": 8987,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13cf\\u13cd\\u13ac\": 8988,\n    \"\\u2581\\u13a2\\u13a9\\u13c7\\u13d3\\u13b8\": 8989,\n    \"\\u2581\\u13da\\u13c2\\u13a6\\u13d8\\u13b8\\u13ce\": 8990,\n    \"\\u13e5\\u13ef\\u13eb\\u13cd\\u13ac\": 8991,\n    \"\\u2581\\u13a0\\u13c2\\u13f2\\u13b5\\u13ae\": 8992,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d3\\u13d3\": 8993,\n    \"\\u2581\\u13a4\\u13d7\\u13b4\\u13b2\\u13cd\\u13a8\\u13a2\": 8994,\n    \"\\u2581\\u13a4\\u13d9\\u13b5\\u13cd\\u13d9\": 8995,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13d0\\u13c5\\u13af\": 8996,\n    \"\\u13df\\u13b6\\u13cd\\u13d4\\u13c2\": 8997,\n    \"\\u2581\\u13a0\\u13a2\\u13d7\\u13e2\": 8998,\n    \"\\u2581\\u13c4\\u13b8\\u13c9\\u13d4\\u13c5\\u13be\": 8999,\n    \"\\u2581\\u13da\\u13ec\\u13a5\\u13a9\": 9000,\n    \"\\u2581\\u13a2\\u13a8\\u13d3\\u13cd\\u13d7\\u13f1\": 9001,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13af\\u13af\": 9002,\n    \"\\u13e3\\u13a6\\u13ce\\u13cd\\u13d3\": 9003,\n    \"\\u2581\\u13e7\\u13d3\\u13c5\\u13b5\\u13f0\\u13d3\": 9004,\n    \"\\u2581\\u13a4\\u13b5\\u13d2\\u13cd\\u13d4\\u13c1\\u13a2\": 9005,\n    \"\\u2581\\u13d3\\u13e5\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b5\": 9006,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13ec\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 9007,\n    \"\\u13ad\\u13c4\\u13eb\": 9008,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13e4\\u13ad\": 9009,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13a1\\u13b4\\u13cd\\u13d7\": 9010,\n    \"\\u2581\\u13a4\\u13a6\\u13cc\\u13db\\u13a2\": 9011,\n    \"\\u2581\\u13a4\\u13e0\\u13a9\": 9012,\n    \"\\u2581\\u13d3\\u13f3\\u13e0\\u13a0\\u13d2\\u13a9\": 9013,\n    \"\\u2581\\u13da\\u13c2\\u13ce\\u13aa\\u13a9\\u13ce\": 9014,\n    \"\\u2581\\u13a0\\u13ce\\u13b5\\u13db\\u13cd\\u13ac\": 9015,\n    \"\\u2581\\u13a3\\u13e3\\u13d3\\u13c5\\u13df\": 9016,\n    \"\\u2581\\u13eb\\u13da\\u13c2\\u13f4\\u13cd\\u13d7\\u13f1\": 9017,\n    \"\\u2581\\u13a4\\u13af\\u13cc\\u13db\": 9018,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13b8\\u13c9\\u13d7\\u13cd\\u13a9\": 9019,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13c9\\u13e4\": 9020,\n    \"\\u2581\\u13d5\\u13a4\\u13f2\\u13af\\u13ce\\u13b4\\u13a2\": 9021,\n    \"\\u2581\\u13a0\\u13cd\\u13d9\\u13d3\": 9022,\n    \"\\u2581\\u13f3\\u13c2\\u13c3\\u13ae\\u13b8\": 9023,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13b5\\u13a6\": 9024,\n    \"\\u2581\\u13e6\\u13e5\\u13f0\\u13b8\": 9025,\n    \"\\u2581\\u13a0\\u13d3\\u13d3\\u13f1\\u13ae\\u13cd\\u13d7\": 9026,\n    \"\\u2581\\u13be\\u13be\\u13b5\\u13cd\\u13d7\\u13ad\": 9027,\n    \"\\u2581\\u13d5\\u13a6\\u13a6\\u13d9\\u13cd\\u13db\": 9028,\n    \"\\u2581\\u13a0\\u13c1\\u13e6\": 9029,\n    \"\\u13ef\\u13d3\\u13c2\\u13b8\\u13e5\": 9030,\n    \"\\u2581\\u13a5\\u13c6\\u13ec\\u13cd\\u13d9\\u13d7\": 9031,\n    \"\\u2581\\u13ed\\u13d7\\u13e2\\u13cd\\u13d4\\u13c5\": 9032,\n    \"\\u2581\\u13a2\\u13e5\\u13f2\\u13ae\\u13cd\\u13d7\": 9033,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\\u13f1\": 9034,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d4\\u13f4\\u13c5\": 9035,\n    \"\\u2581\\u13f3\\u13e5\\u13cd\\u13aa\\u13b8\": 9036,\n    \"\\u13e8\\u13c9\\u13db\\u13be\": 9037,\n    \"\\u2581\\u13a5\\u13a9\\u13c2\\u13b5\": 9038,\n    \"\\u2581\\u13f1\\u13a6\\u13c2\\u13c6\\u13d8\\u13ad\": 9039,\n    \"\\u13ac\\u13d1\\u13b6\\u13d9\\u13d7\": 9040,\n    \"\\u2581\\u13eb\\u13ac\\u13b7\\u13e4\\u13d7\\u13f1\": 9041,\n    \"\\u2581\\u13da\\u13be\\u13c2\\u13cf\\u13c1\\u13a2\": 9042,\n    \"\\u2581\\u13d7\\u13aa\\u13cf\\u13d0\\u13d7\": 9043,\n    \"\\u2581\\u13a0\\u13c9\\u13af\\u13f3\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 9044,\n    \"\\u2581\\u13f3\\u13d3\\u13c5\\u13d2\": 9045,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b6\\u13d4\\u13c1\": 9046,\n    \"\\u2581\\u13a3\\u13a6\\u13c2\\u13a9\\u13d2\\u13a9\": 9047,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13a2\\u13ce\\u13b8\\u13af\": 9048,\n    \"\\u2581\\u13eb\\u13da\\u13b5\\u13cd\\u13d8\\u13c2\\u13b8\": 9049,\n    \"\\u2581\\u13da\\u13c2\\u13b3\\u13eb\\u13e6\\u13b4\": 9050,\n    \"\\u13e6\\u13a3\\u13cd\\u13d9\\u13d7\": 9051,\n    \"\\u2581\\u13a2\\u13e3\\u13d7\\u13d4\\u13cd\\u13a8\\u13cd\\u13d7\": 9052,\n    \"\\u2581\\u13d3\\u13c6\\u13ad\\u13c4\\u13ee\": 9053,\n    \"\\u2581\\u13eb\\u13cd\\u13a9\\u13e9\\u13af\\u13cf\": 9054,\n    \"\\u2581\\u13a4\\u13db\\u13b8\\u13ae\": 9055,\n    \"\\u2581\\u13d9\\u13c2\\u13cd\\u13a9\": 9056,\n    \"\\u13b5\\u13cd\\u13d3\\u13c1\\u13b5\\u13d5\\u13ac\": 9057,\n    \"\\u2581\\u13a6\\u13be\\u13dc\\u13a2\": 9058,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13be\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\": 9059,\n    \"ost\": 9060,\n    \"\\u2581\\u13d3\\u13f0\\u13e5\\u13aa\\u13a2\": 9061,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13c5\\u13cd\\u13d7\\u13f1\": 9062,\n    \"\\u2581\\u13cc\\u13b3\\u13d3\\u13f1\\u13b5\": 9063,\n    \"\\u13d5\\u13b0\\u13cd\\u13ac\\u13be\": 9064,\n    \"\\u2581\\u13d3\\u13d8\\u13ad\\u13c1\\u13b2\": 9065,\n    \"\\u2581\\u13d3\\u13f3\\u13d7\\u13e9\\u13cf\": 9066,\n    \"\\u2581\\u13a2\\u13cd\\u13a9\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13cd\\u13d7\": 9067,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13d9\\u13cd\\u13db\": 9068,\n    \"\\u2581\\u13eb\\u13d3\\u13c2\\u13b7\\u13a6\": 9069,\n    \"\\u2581\\u13d3\\u13c9\\u13d9\\u13a5\": 9070,\n    \"er\": 9071,\n    \"\\u2581\\u13d0\\u13c6\\u13b5\": 9072,\n    \"\\u2581\\u13cc\\u13d7\\u13cf\": 9073,\n    \"\\u2581\\u13e7\\u13df\\u13f4\": 9074,\n    \"\\u2581\\u13a2\\u13e8\\u13cd\\u13d3\\u13e9\\u13d5\\u13c5\": 9075,\n    \"\\u2581\\u13d9\\u13d3\\u13f2\\u13e3\": 9076,\n    \"\\u2581\\u13e7\\u13be\\u13ad\\u13be\\u13ec\": 9077,\n    \"\\u2581\\u13a4\\u13d3\\u13ec\\u13a1\": 9078,\n    \"\\u2581\\u13c5\\u13db\\u13b4\\u13c5\\u13db\": 9079,\n    \"\\u13e2\\u13c8\\u13cd\\u13a6\": 9080,\n    \"\\u13d7\\u13a8\\u13e5\\u13f0\\u13aa\\u13a2\": 9081,\n    \"\\u2581\\u13eb\\u13d7\\u13cd\\u13a9\\u13ef\\u13c5\\u13cf\": 9082,\n    \"\\u2581\\u13a1\\u13e5\\u13b8\\u13c9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 9083,\n    \"\\u2581\\u13dd\\u13ec\": 9084,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13be\\u13cd\\u13d3\": 9085,\n    \"\\u2581\\u13a3\\u13a6\\u13c1\\u13b3\\u13a9\": 9086,\n    \"\\u13b6\\u13c4\\u13ae\\u13b8\\u13a9\": 9087,\n    \"\\u13a0\\u13a9\\u13b7\\u13e8\": 9088,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13a9\": 9089,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13c2\\u13d5\\u13be\": 9090,\n    \"\\u13a8\\u13b2\\u13d2\\u13a9\": 9091,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13d3\\u13b5\": 9092,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13cd\\u13d7\": 9093,\n    \"\\u2581\\u13a2\\u13d3\\u13a2\\u13ce\\u13cd\\u13d7\": 9094,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c4\\u13b8\\u13d7\": 9095,\n    \"\\u2581\\u13a2\\u13a8\\u13b3\\u13d7\\u13d9\\u13ad\": 9096,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13ae\": 9097,\n    \"\\u13c3\\u13ea\\u13b3\\u13c1\": 9098,\n    \"\\u2581\\u13ab\\u13d8\\u13cd\\u13ac\": 9099,\n    \"\\u2581\\u13a2\\u13a4\\u13c2\\u13b7\\u13e8\": 9100,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13a1\\u13b8\\u13a9\": 9101,\n    \"\\u2581\\u13a1\\u13b3\\u13c6\\u13d8\": 9102,\n    \"\\u2581\\u13d9\\u13e5\\u13f2\\u13a6\": 9103,\n    \"\\u2581\\u13d5\\u13e3\\u13cf\\u13b3\\u13db\": 9104,\n    \"\\u2581\\u13a0\\u13c9\\u13af\\u13f3\\u13b2\\u13cd\\u13a9\": 9105,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13df\\u13c3\\u13ae\\u13b8\": 9106,\n    \"\\u2581\\u13a3\\u13e6\\u13af\\u13f3\\u13b2\\u13cd\\u13a6\": 9107,\n    \"\\u2581\\u13e5\\u13e5\\u13c3\\u13ae\\u13ad\": 9108,\n    \"\\u2581\\u13a2\\u13f0\\u13e8\\u13c1\\u13d7\\u13f1\": 9109,\n    \"\\u2581\\u13a0\\u13c6\\u13ce\\u13b5\\u13d9\\u13d4\\u13c5\": 9110,\n    \"\\u2581\\u13f1\\u13c2\\u13ac\\u13e9\\u13cd\\u13d7\\u13c9\": 9111,\n    \"\\u2581\\u13a0\\u13c7\\u13d9\\u13c5\": 9112,\n    \"\\u2581\\u13da\\u13f0\\u13b5\\u13cf\\u13d9\\u13b4\\u13a2\": 9113,\n    \"\\u2581\\u13da\\u13cd\\u13d5\\u13b8\\u13af\\u13b8\": 9114,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13c3\\u13af\\u13ce\": 9115,\n    \"\\u2581\\u13d7\\u13e4\\u13b5\\u13cf\": 9116,\n    \"\\u2581\\u13a4\\u13e9\\u13c3\\u13eb\\u13cd\": 9117,\n    \"\\u2581\\u13f4\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\\u13a6\": 9118,\n    \"\\u2581\\u13ed\\u13c2\\u13a7\\u13c1\": 9119,\n    \"\\u2581\\u13d5\\u13e5\\u13c1\\u13e4\\u13ae\\u13cd\\u13d7\": 9120,\n    \"\\u2581\\u13da\\u13c2\\u13d0\\u13c8\": 9121,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13da\\u13b8\\u13a9\": 9122,\n    \"\\u2581\\u13d7\\u13ab\\u13aa\\u13d7\\u13f1\": 9123,\n    \"\\u2581\\u13d5\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 9124,\n    \"\\u2581\\u13a2\\u13d7\\u13dc\": 9125,\n    \"\\u2581\\u13d3\\u13be\\u13b4\\u13af\\u13cc\\u13c5\": 9126,\n    \"\\u2581\\u13cc\\u13b5\\u13b9\": 9127,\n    \"\\u2581\\u13da\\u13be\\u13e0\\u13f1\\u13b8\\u13a9\": 9128,\n    \"\\u2581\\u13a4\\u13a9\\u13b4\\u13cd\\u13d7\": 9129,\n    \"\\u2581\\u13a0\\u13c6\\u13e3\\u13c5\\u13d3\\u13d5\": 9130,\n    \"\\u2581\\u13ad\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13a6\": 9131,\n    \"\\u2581\\u13a1\\u13e3\\u13d3\\u13c5\\u13db\\u13b5\": 9132,\n    \"\\u2581\\u13a2\\u13aa\\u13af\\u13f3\\u13c5\": 9133,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c2\\u13be\\u13dd\\u13a2\": 9134,\n    \"\\u2581\\u13a0\\u13ac\\u13c2\\u13d7\\u13f3\": 9135,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13c5\\u13d6\\u13cd\\u13d7\": 9136,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c4\": 9137,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13b5\\u13f0\\u13d3\": 9138,\n    \"\\u2581\\u13f4\\u13a8\\u13e4\": 9139,\n    \"\\u2581\\u13c2\\u13e5\\u13be\\u13f0\\u13cd\\u13ac\\u13be\": 9140,\n    \"\\u2581\\u13a0\\u13c5\\u13cd\\u13ac\\u13a2\": 9141,\n    \"\\u2581\\u13a2\\u13ab\\u13d3\\u13b4\\u13cd\\u13d7\\u13f1\": 9142,\n    \"\\u2581\\u13a2\\u13ac\\u13f4\\u13c1\\u13d7\\u13f1\": 9143,\n    \"\\u13d3\\u13da\\u13aa\\u13d3\\u13c1\\u13ad\": 9144,\n    \"\\u13d7\\u13d4\\u13cd\\u13d4\\u13c1\": 9145,\n    \"\\u2581\\u13e5\\u13d7\\u13a7\\u13b8\\u13aa\": 9146,\n    \"\\u2581\\u13ef\\u13ec\\u13c5\": 9147,\n    \"\\u2581\\u13a6\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 9148,\n    \"\\u2581\\u13d6\\u13d2\": 9149,\n    \"\\u2581\\u13d7\\u13c2\\u13c2\\u13d9\\u13af\": 9150,\n    \"\\u2581\\u13ed\\u13a6\\u13d4\\u13b2\\u13cd\\u13d4\\u13c5\": 9151,\n    \"\\u2581\\u13a0\\u13d4\\u13cd\\u13a9\\u13cd\": 9152,\n    \"\\u2581\\u13a0\\u13be\\u13d9\\u13b4\\u13b0\\u13cd\\u13a8\\u13cd\\u13d7\": 9153,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13a8\\u13f3\\u13d2\": 9154,\n    \"\\u2581\\u13d7\\u13a6\\u13be\\u13af\\u13cd\\u13d9\\u13d7\": 9155,\n    \"\\u2581\\u13e5\\u13a8\\u13b3\\u13d7\\u13d9\\u13ae\": 9156,\n    \"\\u2581\\u13da\\u13c2\\u13c3\\u13b8\\u13a9\": 9157,\n    \"\\u2581\\u13a2\\u13e5\\u13eb\\u13c5\": 9158,\n    \"\\u2581\\u13e5\\u13be\\u13c2\\u13a5\": 9159,\n    \"\\u2581\\u13a4\\u13c3\\u13d2\\u13c5\": 9160,\n    \"\\u2581\\u13e9\\u13ce\\u13af\": 9161,\n    \"\\u13cd\\u13a6\\u13de\\u13a2\": 9162,\n    \"\\u2581\\u13c2\\u13cd\\u13a9\\u13f4\\u13c1\\u13b8\": 9163,\n    \"\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13cc\": 9164,\n    \"\\u2581\\u13da\\u13cd\\u13da\\u13e4\": 9165,\n    \"\\u2581\\u13a4\\u13c2\\u13cf\\u13c1\\u13a2\": 9166,\n    \"\\u2581\\u13ed\\u13b5\\u13f0\\u13a2\\u13b6\\u13b8\": 9167,\n    \"\\u2581\\u13a2\\u13d7\\u13ac\\u13d3\": 9168,\n    \"\\u2581\\u13a2\\u13e8\\u13c5\\u13b5\": 9169,\n    \"\\u2581\\u13e7\\u13ea\\u13f2\\u13c5\\u13af\": 9170,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13a8\\u13b4\": 9171,\n    \"\\u2581\\u13d5\\u13e8\\u13f0\": 9172,\n    \"\\u2581\\u13e7\\u13d5\\u13f2\\u13d7\\u13f1\": 9173,\n    \"\\u13b5\\u13f4\\u13cc\": 9174,\n    \"\\u13f3\\u13aa\\u13db\\u13be\": 9175,\n    \"\\u2581\\u13a8\\u13e3\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 9176,\n    \"\\u13f2\\u13b2\": 9177,\n    \"\\u2581\\u13a2\\u13e5\\u13c2\\u13ac\\u13ce\\u13b2\\u13a2\": 9178,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13d3\\u13c5\\u13cf\": 9179,\n    \"\\u13a9\\u13a9\\u13a1\\u13b5\": 9180,\n    \"\\u2581\\u13d3\\u13f3\\u13cd\\u13d5\\u13b8\\u13af\": 9181,\n    \"\\u2581\\u13a4\\u13e4\\u13e5\\u13cd\\u13d7\": 9182,\n    \"\\u2581\\u13a6\\u13c1\\u13d0\\u13a0\\u13cd\\u13ac\": 9183,\n    \"\\u2581\\u13c5\\u13e9\\u13db\\u13c1\\u13cd\\u13d7\": 9184,\n    \"\\u2581\\u13cd\\u13c6\\u13d5\\u13c1\\u13b8\": 9185,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13a2\\u13f3\": 9186,\n    \"\\u2581\\u13a0\\u13d5\\u13c4\": 9187,\n    \"\\u2581\\u13a0\\u13d5\\u13b0\\u13af\\u13cd\\u13d7\": 9188,\n    \"\\u2581\\u13a2\\u13f3\\u13e5\\u13b6\\u13d3\": 9189,\n    \"\\u13d3\\u13c4\\u13f4\\u13db\\u13be\": 9190,\n    \"\\u2581\\u13eb\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\\u13d7\\u13f1\": 9191,\n    \"\\u2581\\u13d7\\u13e3\\u13e0\\u13f1\\u13b8\\u13a9\": 9192,\n    \"\\u2581\\u13a4\\u13c2\\u13ef\\u13d9\\u13b4\": 9193,\n    \"\\u2581\\u13da\\u13c5\\u13eb\\u13cd\\u13d4\\u13c5\": 9194,\n    \"\\u2581\\u13b9\\u13da\": 9195,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13c5\\u13d4\\u13c5\\u13af\": 9196,\n    \"\\u2581\\u13c4\\u13be\\u13cd\\u13d5\\u13cd\\u13d7\": 9197,\n    \"\\u2581\\u13a0\\u13a6\\u13ec\\u13a5\": 9198,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13cd\\u13ac\": 9199,\n    \"\\u13f4\\u13b3\\u13ce\\u13a2\": 9200,\n    \"\\u2581\\u13c4\\u13d3\\u13a8\\u13d2\": 9201,\n    \"\\u2581\\u13a0\\u13ef\\u13a3\\u13a2\": 9202,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d4\\u13f4\\u13b2\\u13cd\\u13ac\": 9203,\n    \"\\u2581\\u13a2\\u13f2\\u13a6\\u13db\\u13c1\\u13d7\\u13f1\": 9204,\n    \"\\u2581\\u13e4\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13d7\\u13f1\": 9205,\n    \"\\u2581\\u13f1\\u13d3\\u13a8\\u13cf\": 9206,\n    \"\\u2581\\u13a3\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 9207,\n    \"\\u2581\\u13af\\u13c5\\u13a6\\u13b8\": 9208,\n    \"\\u2581\\u13a2\\u13d5\\u13ae\\u13cd\\u13d7\": 9209,\n    \"\\u2581\\u13e7\\u13be\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\\u13f1\": 9210,\n    \"\\u2581\\u13e5\\u13c4\\u13ea\\u13ce\\u13b4\\u13a2\": 9211,\n    \"\\u2581\\u13cb\\u13d7\\u13f1\": 9212,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 9213,\n    \"\\u2581\\u13a6\\u13c1\\u13b5\\u13db\": 9214,\n    \"\\u2581\\u13af\\u13c1\\u13d2\\u13ad\": 9215,\n    \"\\u13a6\\u13ce\\u13cd\\u13d4\\u13c5\": 9216,\n    \"\\u13d9\\u13b0\\u13ce\": 9217,\n    \"\\u2581\\u13db\\u13a8\\u13e5\": 9218,\n    \"\\u2581\\u13ef\\u13c6\\u13db\\u13a6\": 9219,\n    \"\\u2581\\u13f1\\u13d9\\u13a6\\u13f0\": 9220,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13db\\u13c1\\u13d7\\u13f1\": 9221,\n    \"\\u2581\\u13c2\\u13a6\\u13c1\\u13b2\\u13be\": 9222,\n    \"\\u13d5\\u13b0\\u13af\\u13cd\\u13d9\\u13d7\\u13f1\": 9223,\n    \"\\u2581\\u13a2\\u13e4\\u13b3\\u13d7\\u13d9\\u13ad\": 9224,\n    \"\\u2581\\u13a0\\u13be\\u13d4\\u13cd\\u13a9\\u13cd\\u13a9\": 9225,\n    \"\\u2581\\u13a2\\u13a4\\u13b7\\u13e4\": 9226,\n    \"\\u13a5\\u13cd\\u13a9\\u13f1\\u13a9\": 9227,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d3\\u13db\\u13a9\": 9228,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13a8\\u13cd\\u13d7\": 9229,\n    \"\\u2581\\u13a0\\u13dd\\u13b2\": 9230,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13ef\\u13eb\\u13cd\\u13a8\\u13cd\\u13d7\": 9231,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13d8\\u13c3\\u13ae\\u13b8\\u13ad\": 9232,\n    \"\\u2581\\u13e3\\u13be\\u13d3\\u13be\\u13cf\\u13c2\\u13d9\\u13ad\": 9233,\n    \"\\u2581\\u13e5\\u13a6\\u13b7\\u13af\\u13cd\\u13d7\\u13ad\": 9234,\n    \"\\u2581\\u13a2\\u13f3\\u13ea\\u13cd\\u13d8\": 9235,\n    \"\\u13ab\\u13f4\": 9236,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13d2\\u13ad\": 9237,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13cd\\u13d9\\u13d7\": 9238,\n    \"\\u2581\\u13f1\\u13e3\\u13f0\\u13b8\\u13c5\": 9239,\n    \"\\u2581\\u13f3\\u13f2\\u13e4\\u13a2\": 9240,\n    \"\\u2581\\u13a4\\u13c2\\u13d1\\u13b5\\u13aa\\u13e4\": 9241,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13c4\\u13aa\\u13e8\\u13af\": 9242,\n    \"\\u2581\\u13be\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13cf\\u13d2\": 9243,\n    \"\\u13b6\\u13c5\\u13ae\\u13b8\": 9244,\n    \"\\u2581\\u13be\\u13e5\\u13ea\\u13ce\\u13b8\": 9245,\n    \"\\u2581\\u13f1\\u13e6\\u13b5\\u13a6\": 9246,\n    \"\\u2581\\u13a2\\u13e3\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d3\": 9247,\n    \"\\u2581\\u13d7\\u13a6\\u13da\\u13d7\\u13f1\": 9248,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13aa\\u13d7\": 9249,\n    \"\\u2581\\u13a4\\u13e9\\u13a6\\u13d8\": 9250,\n    \"\\u2581\\u13d3\\u13c2\\u13be\\u13cc\\u13db\": 9251,\n    \"\\u2581\\u13af\\u13eb\\u13c5\": 9252,\n    \"\\u2581\\u13d7\\u13a8\\u13aa\\u13cd\": 9253,\n    \"\\u2581\\u13a0\\u13c2\\u13b5\\u13eb\": 9254,\n    \"\\u2581\\u13d5\\u13e8\\u13c1\\u13cd\\u13d7\": 9255,\n    \"\\u2581\\u13ac\\u13a9\\u13b7\\u13e4\\u13d7\\u13f1\": 9256,\n    \"\\u2581\\u13f1\\u13be\\u13e5\\u13b8\\u13c9\\u13d9\": 9257,\n    \"\\u13ce\\u13d2\\u13ae\": 9258,\n    \"\\u2581\\u13e5\\u13ef\\u13b5\\u13aa\\u13c1\\u13af\": 9259,\n    \"\\u13e0\\u13af\\u13cd\\u13d7\\u13f1\": 9260,\n    \"\\u2581\\u13d7\\u13d1\\u13eb\\u13cd\\u13a9\": 9261,\n    \"\\u2581\\u13cd\\u13a9\\u13c2\\u13cc\\u13c5\\u13ad\": 9262,\n    \"\\u2581\\u13d7\\u13cb\\u13c5\": 9263,\n    \"\\u2581\\u13a0\\u13e5\\u13cc\\u13b3\\u13d3\\u13c5\": 9264,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d8\\u13cc\\u13c5\": 9265,\n    \"\\u13d3\\u13d0\\u13b4\": 9266,\n    \"st\": 9267,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13a2\\u13cd\\u13d7\\u13f1\": 9268,\n    \"\\u2581\\u13a6\\u13b8\\u13b3\": 9269,\n    \"\\u2581\\u13a1\\u13d9\\u13d9\\u13f1\": 9270,\n    \"\\u2581\\u13a2\\u13e8\\u13a5\\u13cf\": 9271,\n    \"\\u2581\\u13a0\\u13ef\\u13d6\\u13c2\": 9272,\n    \"\\u2581\\u13cd\\u13a9\\u13e9\\u13af\": 9273,\n    \"\\u2581\\u13a1\\u13e5\\u13ef\\u13a1\\u13cd\\u13d7\": 9274,\n    \"\\u2581\\u13a2\\u13e6\\u13af\\u13f3\\u13c5\": 9275,\n    \"\\u2581\\u13a8\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 9276,\n    \"\\u2581\\u13e6\\u13e5\\u13a6\\u13d4\\u13ad\": 9277,\n    \"\\u2581\\u13a4\\u13f0\\u13e5\\u13cd\\u13a9\": 9278,\n    \"\\u2581\\u13d7\\u13e3\\u13da\\u13d9\": 9279,\n    \"\\u2581\\u13a1\\u13e6\\u13a2\\u13f3\\u13d7\\u13f1\": 9280,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13f4\\u13ae\\u13a2\": 9281,\n    \"\\u13c4\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\": 9282,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13d4\\u13c2\\u13af\\u13cd\\u13d7\\u13f1\": 9283,\n    \"\\u2581\\u13da\\u13c2\\u13b5\\u13e6\\u13db\": 9284,\n    \"\\u2581\\u13d7\\u13c2\\u13c3\\u13a9\\u13cd\\u13a9\": 9285,\n    \"\\u2581\\u13e5\\u13a6\\u13c1\\u13ad\": 9286,\n    \"\\u2581\\u13e5\\u13f0\\u13b8\\u13a5\": 9287,\n    \"\\u2581\\u13ad\\u13b4\\u13b2\\u13a6\": 9288,\n    \"\\u2581\\u13eb\\u13af\\u13b6\\u13af\": 9289,\n    \"\\u2581\\u13da\\u13c3\\u13b8\\u13ce\\u13a2\": 9290,\n    \"\\u2581\\u13f1\\u13e5\\u13e9\\u13d8\\u13ad\": 9291,\n    \"\\u2581\\u13a2\\u13e8\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 9292,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d4\\u13e9\\u13d5\": 9293,\n    \"\\u2581\\u13e5\\u13da\\u13d9\\u13a0\": 9294,\n    \"\\u2581\\u13c2\\u13aa\\u13b5\\u13ac\\u13be\": 9295,\n    \"\\u2581\\u13a2\\u13e8\\u13b7\\u13e4\\u13d7\\u13f1\": 9296,\n    \"\\u2581\\u13d5\\u13e8\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 9297,\n    \"\\u2581\\u13a4\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\": 9298,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13af\\u13cd\\u13db\": 9299,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13b5\\u13a5\\u13c2\": 9300,\n    \"\\u2581\\u13da\\u13c3\\u13af\\u13f3\": 9301,\n    \"\\u2581\\u13a0\\u13c6\\u13d9\\u13b4\\u13b0\\u13d2\": 9302,\n    \"\\u2581\\u13b0\\u13af\\u13f3\\u13b2\\u13a6\": 9303,\n    \"\\u13ef\\u13d3\\u13c5\\u13cf\": 9304,\n    \"\\u2581\\u13a5\\u13a9\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 9305,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\\u13c9\\u13d5\\u13cd\\u13d7\": 9306,\n    \"\\u2581\\u13a0\\u13a6\\u13b8\\u13e5\": 9307,\n    \"\\u2581\\u13a0\\u13ab\\u13e3\": 9308,\n    \"\\u2581\\u13f1\\u13a6\\u13d5\\u13a3\\u13cd\\u13a6\": 9309,\n    \"\\u2581\\u13ef\\u13f2\\u13b1\\u13af\": 9310,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13d9\\u13c5\": 9311,\n    \"\\u2581\\u13f1\\u13be\\u13db\\u13c1\\u13ae\": 9312,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 9313,\n    \"\\u2581\\u13e3\\u13cd\\u13c9\\u13c2\\u13aa\\u13d7\": 9314,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13cd\\u13d9\\u13d7\\u13f1\": 9315,\n    \"\\u2581\\u13a6\\u13d3\\u13c6\\u13df\": 9316,\n    \"\\u13e0\\u13f1\\u13b8\\u13a9\": 9317,\n    \"\\u2581\\u13da\\u13f0\\u13b5\\u13d2\": 9318,\n    \"\\u2581\\u13af\\u13f2\\u13cd\\u13d7\\u13cd\\u13a9\": 9319,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a9\": 9320,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13af\\u13d7\\u13d2\\u13a9\": 9321,\n    \"\\u2581\\u13e7\\u13c2\\u13a6\\u13ef\\u13b7\\u13d7\": 9322,\n    \"\\u2581\\u13a0\\u13a9\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\\u13a9\": 9323,\n    \"\\u2581\\u13a0\\u13a9\\u13b8\\u13d7\\u13cd\\u13a9\": 9324,\n    \"\\u13aa\\u13b2\\u13cd\\u13d4\\u13c2\": 9325,\n    \"\\u2581\\u13a8\\u13aa\\u13e2\\u13c5\\u13af\": 9326,\n    \"\\u2581\\u13d3\\u13c6\\u13b4\\u13b8\": 9327,\n    \"\\u2581\\u13a6\\u13b6\\u13d0\\u13c5\": 9328,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13cf\\u13d2\": 9329,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 9330,\n    \"\\u2581\\u13e9\\u13f2\\u13af\": 9331,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13e4\\u13d7\": 9332,\n    \"\\u2581\\u13ad\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\": 9333,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13da\\u13a2\\u13cd\\u13d7\": 9334,\n    \"\\u2581\\u13e7\\u13e9\\u13bf\": 9335,\n    \"\\u2581\\u13a3\\u13e3\\u13a2\\u13d2\": 9336,\n    \"\\u2581\\u13da\\u13be\\u13b5\\u13c2\\u13ac\\u13ac\": 9337,\n    \"\\u2581\\u13e7\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\\u13f3\": 9338,\n    \"\\u2581\\u13e3\\u13d3\\u13c5\\u13d6\\u13d7\\u13f1\": 9339,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13d2\\u13a9\": 9340,\n    \"\\u2581\\u13e5\\u13a6\\u13e1\\u13a6\": 9341,\n    \"\\u2581\\u13eb\\u13c4\\u13e9\\u13c1\\u13b4\": 9342,\n    \"\\u2581\\u13e5\\u13a6\\u13d8\\u13cf\\u13d7\\u13e2\": 9343,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\": 9344,\n    \"\\u2581\\u13a4\\u13a7\\u13f2\\u13d3\": 9345,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13db\\u13e7\\u13c5\": 9346,\n    \"\\u2581\\u13a4\\u13b1\\u13cd\\u13d5\\u13ce\\u13b4\": 9347,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13ab\\u13ee\": 9348,\n    \"\\u2581\\u13a4\\u13b5\\u13ec\\u13a2\\u13cd\\u13d7\": 9349,\n    \"\\u2581\\u13a4\\u13ef\\u13cd\\u13da\\u13ce\\u13a2\": 9350,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13b5\": 9351,\n    \"\\u2581\\u13a8\\u13e5\\u13db\\u13a6\": 9352,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13cd\\u13db\": 9353,\n    \"\\u2581\\u13ed\\u13d5\\u13b5\\u13a8\": 9354,\n    \"\\u13b1\\u13e9\": 9355,\n    \"\\u13c5\\u13ee\\u13a6\": 9356,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13ab\": 9357,\n    \"\\u2581\\u13a0\\u13c6\\u13ce\\u13b5\\u13d4\\u13c5\": 9358,\n    \"\\u2581\\u13c5\\u13db\\u13c1\\u13b5\": 9359,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13f1\": 9360,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a9\": 9361,\n    \"\\u2581\\u13a4\\u13c5\\u13a6\\u13b3\\u13b2\": 9362,\n    \"\\u13d1\\u13e9\": 9363,\n    \"\\u2581\\u13a2\\u13e3\\u13d7\\u13d4\\u13cd\\u13d7\\u13f1\": 9364,\n    \"\\u2581\\u13e3\\u13f4\\u13cd\\u13d7\": 9365,\n    \"\\u2581\\u13a4\\u13bf\\u13ec\\u13a1\": 9366,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d4\\u13c1\\u13b8\": 9367,\n    \"\\u2581\\u13a0\\u13f1\\u13cd\\u13a8\\u13cd\\u13d7\": 9368,\n    \"\\u2581\\u13e5\\u13c2\\u13ac\\u13c1\\u13ad\": 9369,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13a2\\u13cd\\u13d4\\u13c5\": 9370,\n    \"\\u2581\\u13a4\\u13df\\u13b6\\u13a5\\u13a9\": 9371,\n    \"\\u2581\\u13aa\\u13b5\\u13a6\\u13d3\": 9372,\n    \"\\u2581\\u13e5\\u13c1\\u13e3\\u13db\\u13c1\": 9373,\n    \"\\u2581\\u13e5\\u13a6\\u13d8\\u13ef\": 9374,\n    \"\\u13c2\\u13b6\\u13cc\": 9375,\n    \"\\u2581\\u13a1\\u13a9\\u13e9\": 9376,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b5\\u13d9\\u13b8\": 9377,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13b2\\u13a2\": 9378,\n    \"\\u2581\\u13a0\\u13b6\\u13bb\": 9379,\n    \"\\u2581\\u13a2\\u13e3\\u13b4\\u13c2\\u13d3\\u13cd\\u13d7\\u13f1\": 9380,\n    \"\\u2581\\u13ed\\u13d7\\u13c5\\u13ce\": 9381,\n    \"\\u2581\\u13d9\\u13db\\u13a0\\u13b4\": 9382,\n    \"\\u2581\\u13da\\u13c4\\u13aa\\u13eb\\u13ce\": 9383,\n    \"\\u2581\\u13a4\\u13f0\\u13e3\": 9384,\n    \"\\u2581\\u13d3\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\\u13a9\": 9385,\n    \"\\u2581\\u13e5\\u13e7\": 9386,\n    \"\\u2581\\u13a3\\u13a6\\u13c5\\u13c5\\u13a9\": 9387,\n    \"\\u2581\\u13b9\\u13cc\": 9388,\n    \"\\u2581\\u13d7\\u13a6\\u13c1\\u13b6\": 9389,\n    \"\\u13a4\\u13f0\\u13b8\\u13d7\": 9390,\n    \"\\u2581\\u13c4\\u13db\\u13c1\\u13b3\": 9391,\n    \"\\u2581\\u13e4\\u13e3\\u13db\\u13c5\\u13a9\": 9392,\n    \"\\u2581\\u13af\\u13c3\\u13ae\\u13cd\\u13a9\": 9393,\n    \"\\u2581\\u13a2\\u13e4\\u13d9\\u13ae\\u13cd\\u13d7\": 9394,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c4\\u13b8\\u13d7\": 9395,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13af\\u13cd\\u13d7\": 9396,\n    \"\\u13e5\\u13f2\\u13a4\\u13af\": 9397,\n    \"\\u13ef\\u13e0\\u13a2\\u13cd\\u13d3\\u13c1\\u13b5\": 9398,\n    \"\\u13e5\\u13cd\\u13a6\\u13a2\\u13ad\": 9399,\n    \"\\u2581\\u13f3\\u13e9\\u13db\\u13ae\\u13a2\": 9400,\n    \"\\u13cb\\u13a8\\u13eb\": 9401,\n    \"\\u2581\\u13a4\\u13ad\\u13c4\\u13ee\": 9402,\n    \"\\u2581\\u13e7\\u13ad\\u13be\\u13ec\": 9403,\n    \"\\u2581\\u13f3\\u13ea\\u13b5\\u13ce\": 9404,\n    \"\\u13c2\\u13a6\\u13db\\u13c1\\u13b0\\u13a2\": 9405,\n    \"\\u13cd\\u13da\\u13a2\\u13cf\": 9406,\n    \"\\u2581\\u13a5\\u13d8\\u13cd\\u13a9\": 9407,\n    \"\\u2581\\u13a0\\u13c6\\u13e6\": 9408,\n    \"\\u2581\\u13e7\\u13ea\\u13f2\\u13b2\\u13cd\\u13a9\": 9409,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13d5\\u13d8\\u13f4\\u13db\": 9410,\n    \"\\u13f0\\u13eb\\u13d2\": 9411,\n    \"\\u2581\\u13a4\\u13d7\\u13e9\\u13d2\\u13a9\": 9412,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13c2\\u13a9\\u13cd\\u13d4\\u13c1\": 9413,\n    \"\\u2581\\u13a6\\u13c3\\u13d9\\u13d7\": 9414,\n    \"\\u2581\\u13d3\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\": 9415,\n    \"\\u13a9\\u13e9\\u13db\\u13b2\\u13a9\": 9416,\n    \"\\u2581\\u13da\\u13ad\\u13c1\\u13a6\\u13b8\": 9417,\n    \"\\u2581\\u13a0\\u13c6\\u13e2\\u13c8\\u13cd\\u13d7\\u13f1\": 9418,\n    \"\\u2581\\u13a0\\u13d3\\u13a6\\u13d8\\u13d5\\u13af\": 9419,\n    \"\\u2581\\u13e7\\u13ac\\u13e9\\u13df\": 9420,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13ae\": 9421,\n    \"\\u2581\\u13d7\\u13d3\\u13d8\\u13cd\\u13d7\": 9422,\n    \"\\u13e7\\u13a7\\u13b8\\u13e8\": 9423,\n    \"\\u2581\\u13a0\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 9424,\n    \"\\u2581\\u13f1\\u13e6\\u13af\\u13f3\\u13b2\\u13a6\": 9425,\n    \"\\u13b4\\u13b3\\u13db\\u13c5\": 9426,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\\u13af\\u13f3\": 9427,\n    \"\\u2581\\u13da\\u13cd\\u13da\\u13a2\\u13ce\": 9428,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13a9\\u13cd\\u13d7\": 9429,\n    \"\\u2581\\u13eb\\u13da\\u13a7\\u13be\\u13c5\": 9430,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13a8\\u13b3\\u13cd\\u13d9\\u13d7\": 9431,\n    \"\\u2581\\u13a2\\u13ef\\u13a9\\u13ea\\u13cd\\u13d7\\u13f1\": 9432,\n    \"\\u2581\\u13d7\\u13be\\u13df\": 9433,\n    \"\\u2581\\u13a0\\u13c6\\u13cd\\u13a6\\u13f1\": 9434,\n    \"\\u2581\\u13a0\\u13d3\\u13ec\\u13cd\\u13d7\\u13f1\": 9435,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13b5\\u13f0\\u13d7\\u13f1\": 9436,\n    \"\\u2581\\u13a3\\u13be\\u13eb\\u13f1\": 9437,\n    \"\\u2581\\u13e3\\u13f1\\u13b5\\u13d9\\u13af\": 9438,\n    \"\\u13e3\\u13d8\\u13c3\\u13b8\\u13ad\": 9439,\n    \"\\u2581\\u13e7\\u13ea\\u13d9\\u13b5\\u13cd\\u13d7\\u13f1\": 9440,\n    \"\\u2581\\u13a2\\u13a9\\u13cd\\u13d5\\u13b5\\u13ad\": 9441,\n    \"\\u2581\\u13eb\\u13d7\\u13a6\\u13d8\": 9442,\n    \"\\u2581\\u13a6\\u13d3\\u13eb\\u13d4\\u13c5\": 9443,\n    \"\\u13d5\\u13d9\\u13b2\\u13a9\": 9444,\n    \"\\u2581\\u13d7\\u13a6\\u13d8\\u13cd\\u13d7\": 9445,\n    \"\\u2581\\u13a2\\u13e5\\u13d9\\u13be\": 9446,\n    \"\\u2581\\u13ad\\u13c5\\u13d3\\u13d3\": 9447,\n    \"\\u2581\\u13eb\\u13be\\u13db\\u13a6\": 9448,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13e9\\u13d8\\u13cd\\u13a9\": 9449,\n    \"\\u2581\\u13f1\\u13c4\\u13be\\u13cd\\u13d7\": 9450,\n    \"\\u13ec\\u13cd\\u13aa\\u13a2\": 9451,\n    \"\\u2581\\u13e7\\u13f4\\u13b4\": 9452,\n    \"\\u2581\\u13e5\\u13da\\u13a6\\u13d2\\u13cd\\u13d9\": 9453,\n    \"\\u2581\\u13e7\\u13cc\\u13a8\": 9454,\n    \"\\u2581\\u13bb\\u13cc\": 9455,\n    \"\\u2581\\u13eb\\u13e5\\u13e4\\u13a2\": 9456,\n    \"\\u2581\\u13ed\\u13b7\\u13af\\u13cd\\u13d7\": 9457,\n    \"\\u2581\\u13a6\\u13d0\\u13c2\": 9458,\n    \"\\u2581\\u13d4\\u13b7\": 9459,\n    \"\\u2581\\u13ed\\u13b3\\u13db\": 9460,\n    \"\\u13cf\\u13cf\\u13cd\\u13a9\": 9461,\n    \"\\u13a6\\u13a7\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 9462,\n    \"\\u2581\\u13a2\\u13e3\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\\u13f1\": 9463,\n    \"\\u13b5\\u13ef\\u13bb\": 9464,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d4\": 9465,\n    \"\\u13c1\\u13e2\\u13d9\\u13d7\\u13f1\": 9466,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d9\": 9467,\n    \"\\u2581\\u13af\\u13a6\\u13d4\\u13ae\\u13cd\\u13d7\": 9468,\n    \"\\u2581\\u13be\\u13d1\\u13b5\\u13aa\\u13ac\\u13be\": 9469,\n    \"\\u2581\\u13e5\\u13d5\\u13d9\\u13ad\": 9470,\n    \"\\u2581\\u13e7\\u13c4\\u13aa\\u13e4\\u13a2\": 9471,\n    \"\\u2581\\u13a1\\u13e4\\u13f2\\u13c5\\u13a2\": 9472,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 9473,\n    \"\\u2581\\u13ac\\u13c1\\u13e4\\u13b2\\u13a2\": 9474,\n    \"\\u2581\\u13da\\u13c3\\u13ea\\u13b8\\u13a2\": 9475,\n    \"\\u2581\\u13da\\u13ea\\u13e3\\u13a6\\u13b8\\u13ae\\u13a2\": 9476,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13e4\\u13a2\": 9477,\n    \"\\u2581\\u13e7\\u13c1\\u13e2\\u13d4\\u13c5\\u13d2\\u13a2\": 9478,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13d2\\u13d2\\u13a2\": 9479,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d4\\u13d5\\u13a2\": 9480,\n    \"\\u2581\\u13c4\\u13cd\\u13d7\\u13d5\\u13ac\\u13a2\": 9481,\n    \"\\u2581\\u13d3\\u13aa\\u13c4\\u13b4\\u13a2\": 9482,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13a9\\u13cd\\u13ac\\u13a2\": 9483,\n    \"\\u2581\\u13a0\\u13a6\\u13ec\\u13a1\\u13a2\": 9484,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13e2\\u13d4\\u13c5\\u13d2\\u13a2\": 9485,\n    \"\\u2581\\u13a7\\u13c4\\u13a6\": 9486,\n    \"\\u2581\\u13f1\\u13e5\\u13e9\\u13d8\\u13cd\\u13aa\\u13a2\": 9487,\n    \"\\u13d3\\u13e8\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b5\": 9488,\n    \"\\u2581\\u13e7\\u13c2\\u13b6\\u13d2\": 9489,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\\u13aa\\u13a2\": 9490,\n    \"\\u2581\\u13a7\\u13c1\\u13c9\\u13e5\\u13ce\": 9491,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13d8\\u13c3\\u13ae\\u13b4\\u13a2\": 9492,\n    \"\\u2581\\u13c4\\u13ea\\u13b5\\u13cd\": 9493,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13a0\": 9494,\n    \"\\u2581\\u13ac\\u13c3\\u13d3\": 9495,\n    \"\\u2581\\u13a4\\u13ac\\u13a5\\u13cd\\u13ac\": 9496,\n    \"\\u13d3\\u13b5\\u13c5\\u13df\": 9497,\n    \"\\u13d5\\u13c1\\u13b5\": 9498,\n    \"\\u2581\\u13a8\\u13e3\\u13d3\\u13d1\\u13f4\": 9499,\n    \"\\u2581\\u13d5\\u13ad\\u13d5\\u13f2\\u13b2\\u13cd\\u13ac\\u13a2\": 9500,\n    \"\\u2581\\u13d3\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\\u13a2\": 9501,\n    \"\\u2581\\u13d7\\u13e3\\u13cf\\u13b3\\u13db\\u13d7\": 9502,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13a2\\u13cd\\u13d7\": 9503,\n    \"\\u2581\\u13e7\\u13a6\\u13d9\\u13cd\\u13d9\\u13d7\": 9504,\n    \"\\u2581\\u13f1\\u13da\\u13be\\u13d3\": 9505,\n    \"\\u2581\\u13eb\\u13a4\\u13c2\\u13b6\\u13ce\\u13a2\": 9506,\n    \"\\u13cb\\u13d5\\u13e8\": 9507,\n    \"\\u2581\\u13ac\\u13e9\\u13a8\\u13f3\\u13af\": 9508,\n    \"\\u2581\\u13d7\\u13e3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d9\\u13d7\\u13f1\": 9509,\n    \"\\u2581\\u13d5\\u13af\\u13ec\\u13c1\\u13d7\\u13cd\\u13ac\": 9510,\n    \"\\u2581\\u13da\\u13c4\\u13ec\\u13a1\\u13a2\": 9511,\n    \"\\u2581\\u13dd\\u13ec\\u13da\": 9512,\n    \"\\u2581\\u13af\\u13b6\\u13c1\\u13a5\\u13ad\": 9513,\n    \"\\u2581\\u13a4\\u13b8\\u13c1\": 9514,\n    \"\\u13d6\\u13cd\\u13ac\\u13a2\": 9515,\n    \"\\u2581\\u13eb\\u13c2\\u13ac\\u13a6\": 9516,\n    \"\\u2581\\u13e9\\u13e5\\u13b3\\u13a8\": 9517,\n    \"\\u2581\\u13c4\\u13df\\u13c2\\u13ac\\u13ac\": 9518,\n    \"\\u2581\\u13a4\\u13cc\\u13a8\": 9519,\n    \"\\u2581\\u13ed\\u13c5\\u13aa\\u13e4\": 9520,\n    \"\\u2581\\u13a0\\u13a9\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 9521,\n    \"\\u2581\\u13a4\\u13f4\\u13e8\": 9522,\n    \"\\u2581\\u13a4\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 9523,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13cd\\u13d7\": 9524,\n    \"\\u2581\\u13da\\u13c2\\u13b5\\u13ec\\u13e4\\u13a2\": 9525,\n    \"\\u2581\\u13e7\\u13c2\\u13e3\\u13d4\": 9526,\n    \"\\u13cd\\u13d4\\u13e9\\u13d5\": 9527,\n    \"\\u2581\\u13da\\u13c2\\u13f4\\u13b2\": 9528,\n    \"\\u2581\\u13da\\u13c5\\u13e9\\u13c1\\u13a2\": 9529,\n    \"\\u2581\\u13c5\\u13db\\u13be\\u13b5\\u13cd\\u13d4\\u13c2\": 9530,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13db\\u13c1\\u13b5\": 9531,\n    \"\\u2581\\u13e8\\u13d7\\u13a6\\u13da\\u13ad\": 9532,\n    \"\\u2581\\u13ed\\u13d9\\u13af\\u13f3\\u13b2\": 9533,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\\u13f1\": 9534,\n    \"\\u2581\\u13cd\\u13a9\\u13cd\\u13d5\\u13b3\": 9535,\n    \"\\u2581\\u13d3\\u13aa\\u13ea\\u13b3\\u13c2\": 9536,\n    \"\\u2581\\u13a0\\u13bb\\u13b3\\u13bb\": 9537,\n    \"\\u2581\\u13a6\\u13b3\\u13a8\\u13f0\": 9538,\n    \"\\u2581\\u13a4\\u13c2\\u13db\\u13d7\\u13cd\\u13a9\": 9539,\n    \"\\u2581\\u13d3\\u13c2\\u13a7\\u13bf\\u13e9\\u13d7\": 9540,\n    \"\\u2581\\u13a4\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 9541,\n    \"\\u2581\\u13c3\\u13a6\\u13db\\u13c1\\u13b8\": 9542,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c1\\u13d7\": 9543,\n    \"\\u2581\\u13ad\\u13b5\\u13d8\": 9544,\n    \"\\u2581\\u13a0\\u13d3\\u13cf\\u13ce\": 9545,\n    \"\\u2581\\u13a4\\u13e9\\u13d3\\u13b4\": 9546,\n    \"\\u2581\\u13a2\\u13a6\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 9547,\n    \"\\u13a7\\u13b2\\u13cd\\u13a9\": 9548,\n    \"\\u2581\\u13d3\\u13f0\\u13e5\\u13c1\\u13b5\": 9549,\n    \"\\u2581\\u13d7\\u13e9\\u13be\\u13a8\": 9550,\n    \"\\u2581\\u13e3\\u13eb\\u13ce\\u13a2\": 9551,\n    \"\\u13aa\\u13ea\\u13b8\\u13be\": 9552,\n    \"\\u2581\\u13a6\\u13b7\\u13a8\\u13cd\\u13d7\": 9553,\n    \"\\u2581\\u13cd\\u13a9\\u13c1\\u13e5\": 9554,\n    \"\\u2581\\u13a4\\u13f0\\u13be\\u13a5\": 9555,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d6\\u13d9\\u13d7\": 9556,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13e3\\u13d8\": 9557,\n    \"\\u2581\\u13a0\\u13ac\\u13d4\\u13c5\\u13db\": 9558,\n    \"\\u2581\\u13f1\\u13a6\\u13d7\\u13ad\": 9559,\n    \"\\u2581\\u13e7\\u13c2\\u13b7\\u13e4\\u13b8\": 9560,\n    \"\\u2581\\u13a2\\u13b3\\u13cd\\u13d3\": 9561,\n    \"\\u2581\\u13da\\u13c5\\u13f4\": 9562,\n    \"\\u2581\\u13f1\\u13e5\\u13c1\\u13a6\": 9563,\n    \"\\u2581\\u13a4\\u13f4\\u13b4\\u13a2\": 9564,\n    \"\\u2581\\u13f3\\u13b5\\u13ec\\u13e8\": 9565,\n    \"\\u2581\\u13a4\\u13be\\u13b3\\u13cd\\u13d3\\u13a1\\u13d7\": 9566,\n    \"\\u2581\\u13f1\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 9567,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 9568,\n    \"\\u2581\\u13f1\\u13c2\\u13d9\": 9569,\n    \"\\u2581\\u13d3\\u13d5\\u13f2\": 9570,\n    \"\\u2581\\u13a8\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 9571,\n    \"\\u2581\\u13a2\\u13f3\\u13c5\\u13c1\\u13af\": 9572,\n    \"\\u2581\\u13a2\\u13f3\\u13cf\\u13d7\": 9573,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\\u13d4\\u13c1\\u13a2\": 9574,\n    \"\\u2581\\u13a6\\u13b5\\u13e6\\u13e9\\u13db\": 9575,\n    \"\\u2581\\u13f1\\u13be\\u13f0\\u13cd\\u13a8\\u13cd\\u13d7\": 9576,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13f0\\u13af\": 9577,\n    \"\\u2581\\u13c5\\u13a9\\u13d7\\u13c2\\u13c5\\u13cc\\u13d7\": 9578,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 9579,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13e9\\u13d7\\u13cd\\u13ac\": 9580,\n    \"\\u2581\\u13a4\\u13aa\\u13b5\\u13f0\\u13d7\\u13f1\": 9581,\n    \"\\u2581\\u13a0\\u13c6\\u13e4\\u13b5\\u13aa\\u13af\": 9582,\n    \"\\u2581\\u13a4\\u13d7\\u13cd\\u13a6\\u13b6\\u13d7\": 9583,\n    \"\\u2581\\u13eb\\u13da\\u13e9\": 9584,\n    \"\\u2581\\u13a4\\u13c2\\u13bf\\u13a5\\u13a2\": 9585,\n    \"\\u2581\\u13c2\\u13ef\\u13db\\u13c2\\u13cf\": 9586,\n    \"\\u13be\\u13cd\\u13c6\\u13b6\\u13cd\": 9587,\n    \"\\u2581\\u13a4\\u13d7\\u13b4\\u13ac\": 9588,\n    \"\\u2581\\u13a4\\u13c2\\u13a7\\u13ad\\u13f2\": 9589,\n    \"\\u13cd\\u13c6\\u13c3\\u13f4\\u13aa\": 9590,\n    \"\\u2581\\u13a0\\u13f2\\u13cd\\u13d7\\u13cd\\u13aa\": 9591,\n    \"\\u2581\\u13a6\\u13ac\\u13d9\\u13d7\": 9592,\n    \"\\u13b5\\u13b2\\u13f2\\u13b5\": 9593,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13d0\\u13a2\": 9594,\n    \"\\u2581\\u13a1\\u13e4\\u13b5\\u13ce\": 9595,\n    \"\\u2581\\u13c2\\u13da\\u13c2\\u13a8\\u13f3\\u13d2\": 9596,\n    \"\\u2581\\u13a0\\u13c6\\u13c5\\u13db\": 9597,\n    \"\\u2581\\u13d3\\u13ab\\u13e9\": 9598,\n    \"\\u13cd\\u13da\\u13a2\\u13a1\\u13b4\": 9599,\n    \"\\u13da\\u13c1\\u13a2\": 9600,\n    \"\\u13d3\\u13c1\\u13cf\": 9601,\n    \"\\u2581\\u13e5\\u13a6\\u13d9\": 9602,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13a9\\u13a8\": 9603,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13cd\\u13a6\\u13a9\": 9604,\n    \"\\u2581\\u13ef\\u13c3\\u13af\\u13f3\\u13b2\": 9605,\n    \"\\u2581\\u13b9\\u13b3\": 9606,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13ac\": 9607,\n    \"\\u13c4\\u13ec\\u13a5\\u13ad\": 9608,\n    \"\\u2581\\u13a0\\u13f4\\u13d3\\u13c6\\u13b6\\u13cd\\u13ac\": 9609,\n    \"\\u2581\\u13a3\\u13e5\\u13c3\\u13ae\\u13ad\": 9610,\n    \"\\u2581\\u13a0\\u13b5\\u13f0\\u13a2\\u13b6\\u13a6\": 9611,\n    \"\\u2581\\u13a0\\u13ad\\u13be\\u13ec\": 9612,\n    \"\\u13a6\\u13c2\\u13cd\\u13ac\": 9613,\n    \"\\u2581\\u13a2\\u13d7\\u13b9\": 9614,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13b2\\u13cd\\u13a8\": 9615,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13c2\\u13ac\\u13c1\": 9616,\n    \"\\u2581\\u13a0\\u13e3\\u13b3\\u13a9\": 9617,\n    \"\\u2581\\u13a2\\u13b6\\u13c2\": 9618,\n    \"\\u2581\\u13da\\u13c2\\u13c2\\u13f4\\u13b2\": 9619,\n    \"\\u2581\\u13a8\\u13e5\\u13d9\\u13b5\\u13cd\\u13d7\": 9620,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\\u13b0\\u13af\\u13cd\": 9621,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 9622,\n    \"\\u2581\\u13d9\\u13d3\\u13e8\": 9623,\n    \"\\u2581\\u13d9\\u13db\\u13c1\\u13b5\": 9624,\n    \"\\u2581\\u13a0\\u13ef\\u13db\\u13a5\": 9625,\n    \"\\u2581\\u13a3\\u13a9\\u13aa\\u13b2\\u13af\": 9626,\n    \"\\u2581\\u13a1\\u13b5\\u13bb\": 9627,\n    \"\\u13f4\\u13b3\\u13cf\": 9628,\n    \"\\u2581\\u13e5\\u13da\\u13be\\u13da\": 9629,\n    \"\\u13db\\u13a6\\u13c5\\u13a2\": 9630,\n    \"\\u2581\\u13a0\\u13d2\\u13db\\u13d3\": 9631,\n    \"\\u2581\\u13d3\\u13d0\\u13f4\\u13a2\": 9632,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a6\": 9633,\n    \"\\u2581\\u13a0\\u13c3\\u13ce\\u13ae\": 9634,\n    \"\\u13ee\\u13d5\\u13e8\": 9635,\n    \"\\u2581\\u13a6\\u13c3\\u13df\": 9636,\n    \"\\u2581\\u13d7\\u13e3\\u13d8\\u13c4\\u13a6\": 9637,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13e4\": 9638,\n    \"\\u13a0\\u13d7\\u13d2\": 9639,\n    \"\\u13d7\\u13a6\\u13d4\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 9640,\n    \"\\u2581\\u13a4\\u13ec\\u13cd\\u13a9\\u13b5\": 9641,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13cf\\u13d5\\u13be\": 9642,\n    \"\\u13c5\\u13ac\\u13db\": 9643,\n    \"\\u2581\\u13a1\\u13e5\\u13f2\\u13ad\": 9644,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13cd\\u13a9\": 9645,\n    \"\\u2581\\u13a4\\u13a7\\u13ad\\u13f2\": 9646,\n    \"\\u13c5\\u13e8\\u13be\": 9647,\n    \"\\u2581\\u13da\\u13ef\\u13d9\\u13ae\\u13b4\": 9648,\n    \"\\u2581\\u13a4\\u13b5\\u13db\\u13d4\\u13c1\\u13a2\": 9649,\n    \"\\u13f1\\u13b5\\u13d5\\u13b2\\u13a2\": 9650,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13b8\\u13b2\\u13ad\": 9651,\n    \"\\u2581\\u13e7\\u13cc\\u13b4\\u13c5\": 9652,\n    \"\\u2581\\u13a4\\u13e3\\u13a2\\u13d2\": 9653,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\\u13f1\": 9654,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13ae\\u13b5\\u13e8\\u13a9\": 9655,\n    \"\\u2581\\u13a8\\u13aa\\u13e3\\u13b4\\u13db\": 9656,\n    \"\\u2581\\u13e3\\u13c2\\u13c3\\u13ae\\u13ad\": 9657,\n    \"\\u13c5\\u13a5\\u13cf\": 9658,\n    \"\\u2581\\u13eb\\u13a6\\u13b6\\u13cd\\u13ac\": 9659,\n    \"\\u2581\\u13da\\u13aa\\u13d3\\u13c1\\u13af\": 9660,\n    \"\\u2581\\u13a0\\u13db\\u13c3\": 9661,\n    \"\\u13d0\\u13f2\": 9662,\n    \"\\u2581\\u13d6\\u13d2\\u13ad\": 9663,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\\u13d4\\u13c1\\u13a2\": 9664,\n    \"\\u2581\\u13f1\\u13e3\\u13da\\u13b5\\u13ad\": 9665,\n    \"\\u13a6\\u13d3\\u13b4\\u13c5\\u13af\": 9666,\n    \"\\u2581\\u13f3\\u13f0\\u13b8\\u13c5\": 9667,\n    \"\\u2581\\u13a4\\u13e9\\u13c2\\u13b4\\u13a2\": 9668,\n    \"\\u2581\\u13da\\u13d9\\u13a1\\u13cd\\u13d7\": 9669,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13e1\\u13ac\": 9670,\n    \"\\u2581\\u13da\\u13ef\\u13c5\\u13ae\\u13a2\": 9671,\n    \"\\u2581\\u13f1\\u13a8\\u13e9\": 9672,\n    \"\\u2581\\u13a0\\u13f2\\u13cd\\u13a9\": 9673,\n    \"\\u2581\\u13d3\\u13c3\\u13ce\\u13b0\": 9674,\n    \"\\u2581\\u13eb\\u13e5\\u13b6\\u13a2\": 9675,\n    \"\\u2581\\u13f3\\u13c7\\u13d7\": 9676,\n    \"\\u13b6\\u13a9\\u13af\": 9677,\n    \"\\u2581\\u13a4\\u13b8\\u13d3\\u13b8\\u13a5\\u13cd\\u13a9\": 9678,\n    \"\\u2581\\u13cd\\u13a9\\u13c1\\u13ae\\u13cd\\u13d7\": 9679,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13a9\\u13d3\": 9680,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13cd\\u13d4\\u13c1\\u13b2\": 9681,\n    \"\\u2581\\u13a4\\u13be\\u13e4\\u13b8\\u13af\": 9682,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13c2\": 9683,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\\u13f2\\u13af\\u13ae\\u13cd\\u13d7\": 9684,\n    \"\\u2581\\u13e3\\u13c1\\u13e4\\u13d7\\u13f1\": 9685,\n    \"\\u2581\\u13a4\\u13d2\\u13a6\\u13b8\\u13a9\": 9686,\n    \"\\u2581\\u13a4\\u13b8\\u13d6\\u13b4\": 9687,\n    \"\\u2581\\u13d1\\u13e5\\u13b6\": 9688,\n    \"\\u13f0\\u13d7\\u13ad\": 9689,\n    \"\\u2581\\u13a6\\u13a7\\u13ae\": 9690,\n    \"\\u2581\\u13e6\\u13a9\\u13be\\u13eb\\u13f1\": 9691,\n    \"\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d9\\u13d7\\u13f1\": 9692,\n    \"\\u2581\\u13d3\\u13a9\\u13a7\\u13ad\": 9693,\n    \"\\u13ef\\u13db\\u13a9\\u13ad\": 9694,\n    \"\\u13c2\\u13dc\": 9695,\n    \"\\u2581\\u13a4\\u13cd\\u13da\\u13c5\": 9696,\n    \"\\u13c5\\u13d3\\u13a8\\u13e8\\u13c1\\u13b5\": 9697,\n    \"\\u13a7\\u13d4\\u13c1\": 9698,\n    \"\\u13b5\\u13cd\\u13d3\\u13c1\\u13b5\\u13d2\": 9699,\n    \"\\u2581\\u13e3\\u13db\\u13c1\\u13b8\": 9700,\n    \"\\u13db\\u13c2\\u13b8\\u13c9\\u13d4\\u13c2\": 9701,\n    \"\\u2581\\u13ac\\u13c1\\u13e4\\u13b8\\u13a2\": 9702,\n    \"\\u2581\\u13aa\\u13b6\": 9703,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c5\\u13a9\": 9704,\n    \"\\u2581\\u13a0\\u13ef\\u13e8\\u13d7\": 9705,\n    \"\\u2581\\u13d7\\u13aa\\u13cd\\u13d3\\u13ef\": 9706,\n    \"\\u2581\\u13e7\\u13b5\\u13e0\\u13ef\\u13cd\": 9707,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 9708,\n    \"\\u2581\\u13d9\\u13e8\\u13d7\\u13cd\": 9709,\n    \"\\u2581\\u13d5\\u13a6\\u13b5\": 9710,\n    \"\\u2581\\u13d7\\u13a6\\u13e5\\u13ef\": 9711,\n    \"\\u2581\\u13a0\\u13c5\\u13ec\\u13b3\\u13d5\\u13cd\": 9712,\n    \"\\u13cf\\u13d4\\u13d7\\u13cd\\u13d7\\u13f1\": 9713,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13a2\\u13cd\\u13d7\": 9714,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\\u13a9\": 9715,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13b2\": 9716,\n    \"\\u2581\\u13f1\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 9717,\n    \"\\u2581\\u13e5\\u13a8\\u13b2\": 9718,\n    \"\\u2581\\u13c4\\u13c3\\u13af\": 9719,\n    \"\\u2581\\u13a2\\u13e8\\u13c3\\u13c1\\u13b8\\u13af\": 9720,\n    \"\\u2581\\u13e7\\u13c2\\u13d2\\u13cd\\u13d7\\u13f1\": 9721,\n    \"\\u13d3\\u13d5\\u13b5\\u13ce\": 9722,\n    \"\\u2581\\u13c4\\u13e6\": 9723,\n    \"\\u2581\\u13a4\\u13be\\u13ce\\u13b8\": 9724,\n    \"\\u2581\\u13a4\\u13cd\\u13da\\u13de\": 9725,\n    \"\\u2581\\u13ac\\u13e9\\u13e1\\u13d7\\u13cd\\u13ac\\u13a2\": 9726,\n    \"\\u2581\\u13a1\\u13b3\\u13bb\": 9727,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13d7\": 9728,\n    \"\\u13c5\\u13c5\\u13a2\": 9729,\n    \"\\u2581\\u13a3\\u13e5\\u13c1\\u13a6\": 9730,\n    \"\\u2581\\u13e7\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\": 9731,\n    \"\\u13a6\\u13aa\\u13af\\u13f3\\u13d7\": 9732,\n    \"\\u2581\\u13a6\\u13f0\\u13e3\": 9733,\n    \"\\u13d7\\u13a8\\u13b3\\u13cd\\u13d9\\u13d7\": 9734,\n    \"\\u13df\\u13c2\\u13ac\\u13c1\\u13b0\": 9735,\n    \"\\u13d5\\u13b0\\u13cf\": 9736,\n    \"\\u13d3\\u13d9\\u13b5\\u13e3\\u13d8\\u13f3\": 9737,\n    \"\\u13e8\\u13cc\": 9738,\n    \"\\u13b7\\u13a8\\u13cd\\u13d7\": 9739,\n    \"\\u2581\\u13e3\\u13da\\u13b5\": 9740,\n    \"\\u13e5\\u13f0\\u13b8\\u13c2\": 9741,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\\u13db\": 9742,\n    \"\\u13e3\\u13a6\\u13d4\\u13b2\\u13db\": 9743,\n    \"\\u13d9\\u13d3\\u13c6\\u13db\": 9744,\n    \"\\u13a5\\u13cd\\u13aa\\u13a2\": 9745,\n    \"\\u2581\\u13bb\\u13b5\": 9746,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13ad\": 9747,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d3\\u13db\": 9748,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\\u13d7\": 9749,\n    \"\\u2581\\u13d5\\u13e5\\u13a8\\u13f3\\u13d2\": 9750,\n    \"\\u2581\\u13a1\\u13a9\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 9751,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13a9\\u13db\": 9752,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b8\\u13c5\\u13d7\": 9753,\n    \"\\u2581\\u13a6\\u13e2\\u13d7\": 9754,\n    \"\\u2581\\u13a1\\u13e5\\u13ef\\u13c5\\u13b2\": 9755,\n    \"\\u2581\\u13e3\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d9\\u13d7\": 9756,\n    \"\\u2581\\u13da\\u13be\\u13d9\": 9757,\n    \"\\u2581\\u13e3\\u13f0\\u13b8\\u13d7\": 9758,\n    \"\\u2581\\u13d3\\u13c1\\u13b6\\u13db\\u13a9\": 9759,\n    \"\\u2581\\u13a9\\u13a6\\u13a8\\u13a0\\u13d7\\u13d4\\u13cd\\u13d7\": 9760,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13d7\\u13cd\\u13d7\\u13f1\": 9761,\n    \"\\u2581\\u13f3\\u13ec\": 9762,\n    \"\\u2581\\u13a4\\u13c4\\u13b8\\u13c5\": 9763,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d3\\u13c1\\u13b2\": 9764,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b8\\u13af\": 9765,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13c1\\u13a2\": 9766,\n    \"\\u2581\\u13cd\\u13d4\\u13b5\": 9767,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13b3\": 9768,\n    \"\\u2581\\u13a4\\u13a6\\u13cc\\u13ef\\u13cd\\u13d7\\u13d5\\u13a9\": 9769,\n    \"\\u2581\\u13d7\\u13a4\\u13b7\\u13e8\": 9770,\n    \"\\u2581\\u13a8\\u13e5\\u13db\\u13d9\\u13d7\\u13f1\": 9771,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\\u13b2\\u13ce\": 9772,\n    \"\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 9773,\n    \"\\u13c6\\u13a7\\u13bf\\u13c5\": 9774,\n    \"\\u13d5\\u13b6\\u13c6\\u13a1\": 9775,\n    \"\\u13d3\\u13c1\\u13b2\\u13be\": 9776,\n    \"\\u2581\\u13e3\\u13b7\\u13e8\": 9777,\n    \"\\u2581\\u13f1\\u13be\\u13a9\": 9778,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13c5\": 9779,\n    \"\\u2581\\u13a4\\u13be\\u13cf\\u13c1\": 9780,\n    \"\\u2581\\u13aa\\u13ea\\u13b3\\u13c5\": 9781,\n    \"\\u2581\\u13a3\\u13a9\\u13cd\\u13a6\\u13c5\\u13e8\\u13a2\": 9782,\n    \"\\u2581\\u13a4\\u13e9\\u13be\\u13ec\\u13d2\": 9783,\n    \"\\u2581\\u13e5\\u13d3\\u13a9\\u13c2\\u13f4\": 9784,\n    \"\\u13a8\\u13a6\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 9785,\n    \"\\u2581\\u13d5\\u13a6\\u13ef\\u13b8\": 9786,\n    \"\\u2581\\u13d3\\u13c2\\u13d0\": 9787,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13d7\\u13cd\\u13a8\\u13a2\": 9788,\n    \"\\u2581\\u13a4\\u13be\\u13e8\\u13cf\": 9789,\n    \"\\u2581\\u13d7\\u13d7\\u13d9\\u13d7\": 9790,\n    \"\\u2581\\u13a0\\u13c2\\u13b6\\u13cd\\u13ac\": 9791,\n    \"\\u2581\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 9792,\n    \"\\u2581\\u13da\\u13c1\\u13d2\": 9793,\n    \"\\u2581\\u13a4\\u13c5\\u13aa\\u13e8\": 9794,\n    \"\\u2581\\u13a0\\u13be\\u13d9\\u13b4\\u13b0\": 9795,\n    \"\\u2581\\u13a2\\u13f3\\u13c2\\u13c1\\u13ab\\u13e5\": 9796,\n    \"\\u2581\\u13a4\\u13b5\\u13a6\\u13b5\\u13f4\": 9797,\n    \"\\u2581\\u13c4\\u13d3\\u13db\\u13c1\\u13b4\": 9798,\n    \"\\u2581\\u13a4\\u13a9\\u13d3\\u13df\": 9799,\n    \"\\u2581\\u13c2\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 9800,\n    \"\\u2581\\u13c4\\u13d3\\u13ea\\u13ce\\u13b4\": 9801,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13f4\\u13b3\\u13db\": 9802,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13bf\\u13d5\\u13ac\\u13a2\": 9803,\n    \"\\u2581\\u13d5\\u13a6\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 9804,\n    \"\\u2581\\u13e5\\u13ee\\u13a6\\u13d9\\u13a2\": 9805,\n    \"\\u13d3\\u13c5\\u13eb\\u13cd\\u13a9\": 9806,\n    \"\\u13f1\\u13b5\\u13d3\\u13cd\\u13d7\\u13f1\": 9807,\n    \"\\u2581\\u13a4\\u13ec\\u13c1\\u13d4\\u13c5\\u13a2\": 9808,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13eb\\u13ce\\u13b2\\u13a2\": 9809,\n    \"\\u2581\\u13a0\\u13e9\\u13d8\\u13cd\\u13aa\\u13a2\": 9810,\n    \"\\u2581\\u13e8\\u13d3\\u13b8\\u13a2\": 9811,\n    \"\\u2581\\u13ed\\u13d3\\u13be\\u13eb\\u13db\\u13ae\": 9812,\n    \"\\u2581\\u13a4\\u13d7\\u13d4\\u13ae\\u13a2\": 9813,\n    \"\\u2581\\u13d7\\u13aa\\u13e2\\u13d9\\u13d7\": 9814,\n    \"\\u2581\\u13a0\\u13cc\\u13cd\\u13db\": 9815,\n    \"\\u2581\\u13ed\\u13e9\\u13a6\\u13d8\\u13d7\\u13d2\\u13a2\": 9816,\n    \"\\u2581\\u13d7\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 9817,\n    \"\\u2581\\u13e7\\u13b6\\u13af\\u13cd\\u13d7\": 9818,\n    \"\\u13f2\\u13af\\u13cd\\u13d7\\u13f1\": 9819,\n    \"\\u2581\\u13a0\\u13f4\\u13c8\\u13db\": 9820,\n    \"\\u13cc\\u13db\\u13c5\\u13a9\": 9821,\n    \"\\u2581\\u13c2\\u13a8\\u13d0\\u13a2\": 9822,\n    \"\\u2581\\u13a0\\u13b5\\u13cc\\u13b3\\u13d7\\u13cd\\u13ac\": 9823,\n    \"\\u2581\\u13a2\\u13cd\\u13db\\u13ef\": 9824,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13d9\\u13d7\": 9825,\n    \"\\u2581\\u13a4\\u13e9\\u13db\\u13db\": 9826,\n    \"\\u2581\\u13a0\\u13d3\\u13b4\\u13c2\\u13cd\\u13a9\": 9827,\n    \"\\u2581\\u13e5\\u13c4\\u13cd\\u13d9\": 9828,\n    \"\\u13f0\\u13a9\": 9829,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13aa\\u13af\": 9830,\n    \"\\u2581\\u13c7\\u13d3\\u13c1\\u13b3\\u13bb\\u13f1\": 9831,\n    \"\\u2581\\u13e7\\u13c2\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\\u13f1\": 9832,\n    \"\\u2581\\u13a3\\u13e5\\u13ec\\u13c2\": 9833,\n    \"\\u2581\\u13a2\\u13e3\\u13a2\\u13d2\\u13a2\": 9834,\n    \"\\u2581\\u13a6\\u13e5\\u13aa\\u13a5\": 9835,\n    \"\\u2581\\u13a4\\u13f2\\u13b0\\u13d2\": 9836,\n    \"\\u2581\\u13a0\\u13d3\\u13a8\\u13d7\\u13f1\": 9837,\n    \"\\u13d9\\u13af\\u13f3\\u13b2\\u13a6\": 9838,\n    \"\\u2581\\u13c2\\u13e3\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 9839,\n    \"\\u2581\\u13da\\u13c2\\u13b3\\u13eb\\u13e8\\u13a9\": 9840,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13d2\\u13a9\": 9841,\n    \"\\u13cf\\u13d5\\u13c5\": 9842,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13b8\\u13d7\\u13f1\": 9843,\n    \"\\u2581\\u13e4\\u13c6\\u13c2\": 9844,\n    \"\\u2581\\u13e5\\u13c4\\u13ea\\u13d2\\u13a9\": 9845,\n    \"\\u2581\\u13a7\\u13c1\\u13a6\": 9846,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13d7\\u13cd\\u13ac\": 9847,\n    \"\\u13ef\\u13db\\u13c2\\u13cf\": 9848,\n    \"\\u2581\\u13d3\\u13a9\\u13aa\\u13b2\\u13a9\": 9849,\n    \"\\u13cc\\u13d9\\u13ad\": 9850,\n    \"\\u2581\\u13a4\\u13d3\\u13a2\\u13c5\": 9851,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d6\\u13b8\\u13c5\\u13a9\": 9852,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13ad\": 9853,\n    \"\\u2581\\u13b4\\u13c8\": 9854,\n    \"\\u2581\\u13f4\\u13db\\u13be\": 9855,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\": 9856,\n    \"\\u2581\\u13da\\u13ec\\u13c1\\u13d4\\u13c1\\u13a2\": 9857,\n    \"\\u2581\\u13d3\\u13cd\\u13d4\\u13c5\\u13c5\": 9858,\n    \"\\u2581\\u13a0\\u13a6\\u13b8\\u13a2\\u13db\": 9859,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13aa\\u13e9\\u13db\\u13d7\": 9860,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13b3\": 9861,\n    \"\\u2581\\u13e5\\u13cd\\u13d3\\u13f1\": 9862,\n    \"\\u2581\\u13e4\\u13c5\\u13cd\\u13d7\\u13f1\": 9863,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13dd\\u13a2\": 9864,\n    \"\\u2581\\u13ad\\u13d7\\u13db\": 9865,\n    \"\\u2581\\u13f3\\u13c1\\u13d0\": 9866,\n    \"\\u2581\\u13ac\\u13ec\\u13ce\\u13b8\\u13a9\": 9867,\n    \"\\u13a7\\u13aa\": 9868,\n    \"\\u13a6\\u13b4\\u13c2\\u13d9\\u13ad\": 9869,\n    \"\\u2581\\u13d5\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 9870,\n    \"\\u2581\\u13d7\\u13d3\\u13be\\u13c5\": 9871,\n    \"\\u2581\\u13c2\\u13d7\\u13ac\": 9872,\n    \"\\u13ad\\u13c1\\u13a6\\u13b8\": 9873,\n    \"\\u13cd\\u13c6\\u13d7\\u13cd\\u13d7\\u13cd\\u13a9\": 9874,\n    \"\\u2581\\u13a4\\u13de\\u13a9\": 9875,\n    \"\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 9876,\n    \"\\u2581\\u13cd\\u13a9\\u13c3\\u13af\\u13cf\": 9877,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13b2\\u13be\": 9878,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13c5\\u13db\": 9879,\n    \"\\u2581\\u13eb\\u13da\\u13a7\\u13bf\\u13c5\": 9880,\n    \"\\u2581\\u13ed\\u13cd\\u13c6\": 9881,\n    \"\\u13aa\\u13b2\\u13af\": 9882,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13a6\\u13b8\\u13db\": 9883,\n    \"\\u2581\\u13eb\\u13da\\u13be\\u13a7\\u13bf\\u13c5\": 9884,\n    \"\\u2581\\u13a4\\u13cd\\u13da\\u13a9\\u13ce\": 9885,\n    \"\\u2581\\u13da\\u13f0\\u13b5\\u13af\\u13cd\\u13d4\\u13c5\": 9886,\n    \"\\u2581\\u13d5\\u13ab\\u13aa\\u13d7\\u13cd\\u13ac\": 9887,\n    \"\\u2581\\u13a0\\u13d4\\u13b4\": 9888,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b0\\u13a2\": 9889,\n    \"\\u2581\\u13a8\\u13e5\\u13f0\\u13b8\\u13a2\": 9890,\n    \"\\u2581\\u13a4\\u13be\\u13b7\\u13d2\": 9891,\n    \"\\u13f0\\u13a2\\u13b8\\u13cd\\u13d7\\u13f1\": 9892,\n    \"\\u2581\\u13e5\\u13eb\\u13be\": 9893,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13c1\": 9894,\n    \"\\u13f0\\u13a2\\u13b5\\u13d9\\u13b2\\u13a2\": 9895,\n    \"\\u2581\\u13eb\\u13da\\u13e0\\u13ce\": 9896,\n    \"\\u2581\\u13d7\\u13c1\": 9897,\n    \"\\u2581\\u13a4\\u13c2\\u13d4\\u13f2\\u13ce\\u13b4\": 9898,\n    \"\\u13f1\\u13b5\\u13d9\\u13af\": 9899,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b0\\u13a2\": 9900,\n    \"\\u2581\\u13a4\\u13d3\\u13d3\\u13cd\\u13ac\": 9901,\n    \"\\u13aa\\u13b2\\u13cd\\u13d4\\u13c5\": 9902,\n    \"\\u2581\\u13a4\\u13cd\\u13ab\\u13d5\": 9903,\n    \"\\u13d8\\u13ad\\u13c1\": 9904,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13f0\": 9905,\n    \"\\u2581\\u13f1\\u13d9\\u13a8\\u13d7\": 9906,\n    \"\\u13c1\\u13d9\\u13ae\": 9907,\n    \"\\u2581\\u13f3\\u13da\\u13b5\\u13cd\\u13ac\\u13be\": 9908,\n    \"\\u2581\\u13a4\\u13db\\u13d7\\u13d5\\u13a8\": 9909,\n    \"\\u2581\\u13b0\\u13b5\\u13c8\": 9910,\n    \"\\u2581\\u13d7\\u13aa\\u13ea\\u13b3\\u13c5\\u13af\": 9911,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13da\": 9912,\n    \"\\u2581\\u13e5\\u13e3\\u13d3\": 9913,\n    \"\\u13ea\\u13d2\\u13db\": 9914,\n    \"\\u2581\\u13ed\\u13c2\\u13a6\\u13d0\\u13a0\": 9915,\n    \"\\u2581\\u13da\\u13df\\u13b6\\u13cd\\u13d3\\u13c1\\u13b4\\u13a2\": 9916,\n    \"\\u2581\\u13a4\\u13c5\\u13d3\\u13db\": 9917,\n    \"\\u2581\\u13a4\\u13c3\\u13f4\\u13a9\": 9918,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\\u13af\": 9919,\n    \"\\u2581\\u13d1\\u13a0\": 9920,\n    \"\\u2581\\u13a1\\u13e5\\u13cd\\u13a6\\u13c5\\u13e4\": 9921,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\\u13ac\": 9922,\n    \"\\u2581\\u13f1\\u13ee\": 9923,\n    \"\\u13b7\\u13b3\": 9924,\n    \"\\u13f4\\u13b2\": 9925,\n    \"\\u2581\\u13d7\\u13d3\\u13a8\": 9926,\n    \"\\u2581\\u13d5\\u13e5\\u13b5\\u13b7\": 9927,\n    \"\\u2581\\u13a1\\u13e3\\u13d9\": 9928,\n    \"\\u2581\\u13f2\\u13a9\\u13be\": 9929,\n    \"\\u2581\\u13e9\\u13a9\\u13b6\\u13d2\\u13a9\": 9930,\n    \"\\u2581\\u13a2\\u13f3\\u13ea\\u13cd\\u13d7\\u13f1\": 9931,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13c3\\u13c1\\u13b4\": 9932,\n    \"\\u2581\\u13a2\\u13b5\\u13bb\": 9933,\n    \"\\u2581\\u13a4\\u13a6\\u13d8\\u13d7\\u13cd\\u13d7\\u13f1\": 9934,\n    \"\\u13e0\\u13a0\\u13d2\\u13a9\": 9935,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13ad\": 9936,\n    \"\\u2581\\u13c2\\u13e5\\u13c3\\u13af\": 9937,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b6\\u13d4\\u13c5\\u13a9\": 9938,\n    \"\\u2581\\u13d3\\u13c2\\u13cd\\u13a6\\u13a2\": 9939,\n    \"\\u2581\\u13a2\\u13e3\\u13a8\\u13f3\\u13c5\": 9940,\n    \"\\u2581\\u13a4\\u13ee\\u13d4\\u13c5\\u13a9\": 9941,\n    \"\\u2581\\u13d5\\u13da\": 9942,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13e8\": 9943,\n    \"\\u2581\\u13a7\\u13c1\\u13c9\\u13a8\\u13a2\": 9944,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13d3\\u13cd\\u13d7\\u13cd\": 9945,\n    \"\\u13dd\\u13c5\\u13af\": 9946,\n    \"\\u2581\\u13e5\\u13eb\\u13af\": 9947,\n    \"\\u2581\\u13a0\\u13ef\\u13a1\\u13a2\": 9948,\n    \"\\u2581\\u13e7\\u13a6\\u13bf\\u13c1\": 9949,\n    \"\\u2581\\u13d5\\u13a8\\u13b6\": 9950,\n    \"\\u2581\\u13aa\\u13d9\\u13af\": 9951,\n    \"\\u13cd\\u13ac\\u13f0\\u13c3\": 9952,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13f0\\u13ac\": 9953,\n    \"\\u2581\\u13a0\\u13be\\u13a2\\u13ce\\u13a2\": 9954,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\": 9955,\n    \"\\u2581\\u13f1\\u13c2\\u13ac\\u13a6\": 9956,\n    \"\\u2581\\u13f3\\u13f0\\u13b8\\u13ad\": 9957,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13c9\\u13cd\": 9958,\n    \"\\u13eb\\u13c2\\u13f4\": 9959,\n    \"\\u2581\\u13a4\\u13c3\\u13e2\\u13c5\\u13af\": 9960,\n    \"\\u13d8\\u13c1\\u13aa\\u13a2\": 9961,\n    \"\\u2581\\u13a3\\u13e5\\u13a9\\u13b5\\u13f2\\u13ac\": 9962,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d4\\u13c1\\u13a2\": 9963,\n    \"\\u13cd\\u13a9\\u13b3\\u13db\": 9964,\n    \"\\u13da\\u13be\\u13da\\u13eb\\u13cd\\u13d4\\u13c1\\u13a2\": 9965,\n    \"\\u2581\\u13a2\\u13e7\\u13d3\": 9966,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c5\": 9967,\n    \"\\u13db\\u13bf\": 9968,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c1\\u13df\\u13f4\\u13cf\\u13d2\\u13a2\": 9969,\n    \"\\u13a9\\u13e0\\u13eb\\u13cd\": 9970,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c5\\u13d6\\u13b5\\u13d9\": 9971,\n    \"\\u2581\\u13e5\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\\u13a2\": 9972,\n    \"\\u2581\\u13a0\\u13c2\\u13ab\": 9973,\n    \"\\u2581\\u13a4\\u13d8\\u13c3\\u13b4\\u13a2\": 9974,\n    \"\\u2581\\u13a4\\u13ea\\u13b2\\u13a2\": 9975,\n    \"\\u13c2\\u13d0\\u13d7\": 9976,\n    \"\\u2581\\u13ae\\u13d9\\u13b2\": 9977,\n    \"\\u2581\\u13a0\\u13c2\\u13f2\\u13af\\u13b2\": 9978,\n    \"\\u2581\\u13a4\\u13b5\\u13e0\\u13ef\\u13cd\\u13db\": 9979,\n    \"\\u2581\\u13e5\\u13a6\\u13b7\\u13aa\\u13a2\": 9980,\n    \"\\u2581\\u13a4\\u13be\\u13d6\": 9981,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\\u13e4\\u13a2\": 9982,\n    \"\\u2581\\u13a4\\u13ea\\u13d8\\u13c1\\u13a2\": 9983,\n    \"\\u13b6\\u13d2\\u13cd\\u13d9\\u13d7\\u13f1\": 9984,\n    \"\\u2581\\u13eb\\u13b2\\u13a6\": 9985,\n    \"\\u2581\\u13d3\\u13c2\\u13c5\\u13ac\": 9986,\n    \"\\u2581\\u13f3\\u13ec\\u13b5\\u13e4\": 9987,\n    \"\\u2581\\u13ad\\u13a7\": 9988,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13d7\\u13f1\": 9989,\n    \"\\u2581\\u13d2\\u13cd\\u13a6\": 9990,\n    \"\\u2581\\u13c2\\u13a6\\u13c5\\u13c5\": 9991,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\\u13ae\": 9992,\n    \"\\u2581\\u13a0\\u13df\\u13c2\\u13ac\\u13c1\": 9993,\n    \"\\u2581\\u13eb\\u13da\\u13ef\": 9994,\n    \"\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13ad\": 9995,\n    \"\\u2581\\u13a0\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 9996,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\": 9997,\n    \"\\u2581\\u13e5\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 9998,\n    \"\\u2581\\u13a4\\u13c1\\u13b8\\u13d4\\u13c1\\u13a2\": 9999,\n    \"\\u13ef\\u13c5\\u13ae\\u13a2\": 10000,\n    \"\\u2581\\u13c4\\u13c5\\u13c1\\u13b4\\u13a2\": 10001,\n    \"\\u2581\\u13a0\\u13c2\\u13f1\\u13d9\": 10002,\n    \"\\u2581\\u13a4\\u13ea\\u13b7\\u13a9\": 10003,\n    \"\\u2581\\u13a0\\u13cd\\u13a7\": 10004,\n    \"\\u2581\\u13e7\\u13c2\\u13c1\\u13d7\\u13f1\": 10005,\n    \"\\u2581\\u13e4\\u13aa\\u13a2\": 10006,\n    \"\\u2581\\u13a6\\u13b6\\u13d0\\u13b2\\u13cd\": 10007,\n    \"\\u13c2\\u13d9\\u13b8\\u13af\": 10008,\n    \"\\u2581\\u13d7\\u13c1\\u13b6\\u13d7\": 10009,\n    \"\\u2581\\u13a4\\u13c5\\u13d5\\u13e8\": 10010,\n    \"\\u2581\\u13a0\\u13c2\\u13b1\": 10011,\n    \"\\u2581\\u13d7\\u13aa\\u13d2\": 10012,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13b5\": 10013,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a9\": 10014,\n    \"\\u2581\\u13e3\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\\u13f1\": 10015,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b3\": 10016,\n    \"\\u13a6\\u13b7\\u13a9\": 10017,\n    \"\\u2581\\u13a0\\u13bf\\u13a5\\u13a2\": 10018,\n    \"\\u2581\\u13e7\\u13aa\\u13c4\\u13b6\": 10019,\n    \"\\u13a7\\u13d2\\u13a2\": 10020,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13cd\\u13d4\\u13c1\": 10021,\n    \"\\u2581\\u13eb\\u13ac\\u13cd\\u13d7\": 10022,\n    \"\\u2581\\u13f1\\u13aa\\u13af\\u13f3\\u13b2\": 10023,\n    \"\\u2581\\u13da\\u13c6\\u13b5\": 10024,\n    \"\\u2581\\u13d5\\u13aa\\u13e2\\u13d2\\u13a9\": 10025,\n    \"\\u2581\\u13a4\\u13be\\u13cf\\u13c5\": 10026,\n    \"\\u2581\\u13a4\\u13a6\\u13be\\u13ec\\u13cd\\u13ac\": 10027,\n    \"\\u2581\\u13be\\u13ac\\u13c1\\u13b8\\u13ad\": 10028,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13b4\": 10029,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13aa\": 10030,\n    \"\\u2581\\u13d7\\u13c4\\u13aa\\u13d7\\u13cd\\u13a9\\u13f1\": 10031,\n    \"\\u13f0\\u13b5\\u13ce\\u13d7\": 10032,\n    \"\\u2581\\u13da\\u13c5\\u13d2\\u13a9\": 10033,\n    \"\\u2581\\u13da\\u13f2\\u13cd\\u13d4\\u13c5\": 10034,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13b2\": 10035,\n    \"\\u13d7\\u13d4\\u13b2\\u13ad\": 10036,\n    \"\\u2581\\u13a4\\u13f2\\u13b1\\u13af\\u13ce\\u13b8\\u13af\": 10037,\n    \"\\u2581\\u13a3\\u13e3\\u13d3\": 10038,\n    \"\\u2581\\u13ae\\u13b2\\u13a2\": 10039,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\\u13ac\": 10040,\n    \"\\u2581\\u13ac\\u13e9\\u13af\\u13cd\\u13d7\\u13f1\": 10041,\n    \"\\u13e2\\u13d4\\u13ae\": 10042,\n    \"\\u13e5\\u13c5\\u13a6\\u13b8\\u13a1\": 10043,\n    \"\\u13de\\u13d2\": 10044,\n    \"\\u2581\\u13c2\\u13d3\\u13c5\\u13c1\\u13b2\": 10045,\n    \"\\u13e3\\u13d8\\u13c3\\u13af\\u13ae\\u13cd\\u13d7\": 10046,\n    \"\\u13c7\\u13d3\\u13cd\\u13d7\": 10047,\n    \"\\u13a4\\u13c2\\u13c3\\u13d5\\u13c5\": 10048,\n    \"\\u2581\\u13d7\\u13a6\\u13d0\\u13af\": 10049,\n    \"\\u2581\\u13a0\\u13d2\\u13a8\\u13cd\\u13d7\": 10050,\n    \"\\u2581\\u13a1\\u13e3\\u13db\\u13a6\\u13c1\\u13b8\": 10051,\n    \"\\u2581\\u13af\\u13f4\\u13ad\": 10052,\n    \"\\u13d1\\u13e2\\u13db\": 10053,\n    \"\\u2581\\u13f1\\u13c5\\u13e9\\u13cd\\u13d7\\u13d7\": 10054,\n    \"\\u13d5\\u13ac\\u13f2\\u13af\\u13cf\": 10055,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d9\\u13a9\\u13af\": 10056,\n    \"\\u13e2\\u13d4\\u13b2\": 10057,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\\u13a2\": 10058,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d6\\u13b8\\u13c5\": 10059,\n    \"\\u2581\\u13eb\\u13a6\\u13be\\u13c4\\u13aa\\u13a2\": 10060,\n    \"\\u2581\\u13d7\\u13cc\\u13c2\": 10061,\n    \"\\u2581\\u13d5\\u13af\\u13c1\": 10062,\n    \"\\u2581\\u13a4\\u13c5\\u13ce\\u13cd\\u13d7\": 10063,\n    \"\\u2581\\u13cd\\u13c6\\u13db\\u13a6\\u13c1\": 10064,\n    \"\\u2581\\u13a4\\u13b7\\u13e4\\u13b8\\u13af\": 10065,\n    \"\\u2581\\u13a2\\u13f2\\u13a9\": 10066,\n    \"\\u2581\\u13da\\u13c2\\u13e2\\u13ac\\u13a2\": 10067,\n    \"\\u2581\\u13d5\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 10068,\n    \"\\u2581\\u13a0\\u13c4\\u13af\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 10069,\n    \"\\u2581\\u13da\\u13cd\\u13ab\\u13d3\\u13db\\u13a2\": 10070,\n    \"\\u2581\\u13d3\\u13c5\\u13d7\\u13cd\\u13ac\\u13a2\": 10071,\n    \"\\u2581\\u13da\\u13c4\\u13aa\\u13d4\\u13c5\\u13a2\": 10072,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13c1\\u13a2\": 10073,\n    \"\\u2581\\u13af\\u13b2\\u13a6\": 10074,\n    \"\\u13d2\\u13d7\\u13f1\": 10075,\n    \"\\u2581\\u13e5\\u13d9\\u13d3\\u13a6\": 10076,\n    \"\\u2581\\u13a0\\u13ef\\u13a1\\u13cd\\u13d7\": 10077,\n    \"\\u2581\\u13e7\\u13aa\\u13e9\\u13db\\u13d7\": 10078,\n    \"\\u2581\\u13db\\u13e8\": 10079,\n    \"\\u2581\\u13a4\\u13be\\u13df\\u13b6\\u13a5\": 10080,\n    \"\\u2581\\u13e7\\u13f4\\u13eb\": 10081,\n    \"\\u2581\\u13a2\\u13a6\\u13c5\\u13af\\u13db\": 10082,\n    \"\\u2581\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\\u13aa\": 10083,\n    \"\\u2581\\u13da\\u13df\\u13b6\\u13cd\\u13d3\\u13c1\\u13b4\\u13c3\": 10084,\n    \"\\u2581\\u13aa\\u13aa\": 10085,\n    \"\\u13e5\\u13ef\\u13c1\\u13b6\\u13d7\": 10086,\n    \"\\u2581\\u13a4\\u13d3\\u13b4\\u13c5\\u13af\": 10087,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13be\\u13c1\\u13d7\\u13f1\": 10088,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13aa\\u13d2\\u13a2\": 10089,\n    \"\\u2581\\u13a0\\u13db\\u13cd\\u13a8\\u13a2\": 10090,\n    \"\\u13b5\\u13c2\\u13c6\\u13c5\\u13c1\": 10091,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13ec\\u13cd\\u13d7\": 10092,\n    \"\\u2581\\u13a4\\u13e2\\u13ac\\u13a2\": 10093,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13c1\\u13d7\\u13f1\": 10094,\n    \"\\u13a8\\u13e0\\u13ae\": 10095,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c1\\u13b8\": 10096,\n    \"\\u2581\\u13a4\\u13ec\\u13db\": 10097,\n    \"\\u2581\\u13a0\\u13e5\\u13a2\\u13cd\\u13d7\\u13f1\": 10098,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d7\\u13a9\": 10099,\n    \"\\u13be\\u13cd\\u13c9\": 10100,\n    \"\\u13b3\\u13d7\\u13cd\\u13a8\\u13a2\": 10101,\n    \"\\u2581\\u13f1\\u13a6\\u13b7\\u13a9\": 10102,\n    \"\\u13da\\u13d3\\u13b8\": 10103,\n    \"\\u2581\\u13a0\\u13be\\u13d7\": 10104,\n    \"\\u2581\\u13a4\\u13e5\\u13cd\\u13db\": 10105,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13aa\": 10106,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13ae\\u13cd\\u13d7\": 10107,\n    \"\\u2581\\u13a0\\u13c6\\u13ab\\u13f4\": 10108,\n    \"\\u2581\\u13f3\\u13f2\\u13b0\": 10109,\n    \"\\u13ef\\u13b7\\u13a6\": 10110,\n    \"\\u2581\\u13c1\\u13e8\\u13c1\": 10111,\n    \"\\u13d2\\u13b2\\u13cd\\u13d7\\u13f1\": 10112,\n    \"\\u13c2\\u13e9\\u13db\\u13ae\": 10113,\n    \"\\u2581\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\\u13a8\\u13a2\": 10114,\n    \"\\u2581\\u13c4\\u13c5\\u13c1\\u13b8\\u13a9\": 10115,\n    \"\\u2581\\u13a4\\u13e9\\u13f4\\u13d2\": 10116,\n    \"\\u2581\\u13d3\\u13f0\\u13cd\": 10117,\n    \"\\u2581\\u13a2\\u13f3\\u13cd\\u13d7\\u13d3\\u13c2\": 10118,\n    \"\\u13cd\\u13d4\\u13c1\\u13d7\": 10119,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\": 10120,\n    \"\\u2581\\u13e5\\u13ef\\u13a0\": 10121,\n    \"\\u13d9\\u13f3\": 10122,\n    \"\\u2581\\u13f1\\u13ac\\u13c5\": 10123,\n    \"\\u2581\\u13a3\\u13a9\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\": 10124,\n    \"\\u2581\\u13ef\\u13c6\\u13da\\u13b5\\u13ad\": 10125,\n    \"\\u2581\\u13a0\\u13ef\\u13d9\\u13b5\": 10126,\n    \"\\u2581\\u13e7\\u13c2\\u13b7\\u13e4\": 10127,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13c6\\u13b6\": 10128,\n    \"\\u2581\\u13e5\\u13b8\\u13c9\\u13d7\": 10129,\n    \"\\u2581\\u13a4\\u13ec\\u13f1\": 10130,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13b7\\u13e4\\u13b4\": 10131,\n    \"\\u13b8\\u13c9\\u13d4\\u13c5\\u13a9\": 10132,\n    \"\\u13d0\\u13c5\\u13e4\\u13b8\\u13a9\": 10133,\n    \"\\u13ad\\u13b5\\u13d9\\u13a9\": 10134,\n    \"\\u13d3\\u13cf\\u13d2\": 10135,\n    \"\\u2581\\u13d7\\u13a7\\u13c3\\u13a9\\u13cd\\u13d7\\u13f1\": 10136,\n    \"\\u2581\\u13a4\\u13ea\\u13b4\": 10137,\n    \"\\u13d3\\u13e8\\u13c1\\u13b5\": 10138,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13c5\\u13e9\": 10139,\n    \"\\u13f2\\u13c5\\u13b5\": 10140,\n    \"\\u2581\\u13ed\\u13ef\\u13c5\\u13b2\\u13a9\": 10141,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13b8\\u13af\": 10142,\n    \"\\u2581\\u13e3\\u13a6\\u13db\": 10143,\n    \"\\u13d3\\u13e1\\u13d7\\u13ad\": 10144,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13db\\u13a2\": 10145,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13c1\\u13a2\": 10146,\n    \"\\u13a6\\u13e5\\u13f2\\u13ce\\u13b8\": 10147,\n    \"\\u2581\\u13a4\\u13cd\\u13a9\\u13d3\\u13d2\\u13a2\": 10148,\n    \"\\u2581\\u13e4\\u13e5\\u13c3\": 10149,\n    \"\\u2581\\u13e4\\u13d9\\u13b0\": 10150,\n    \"\\u2581\\u13a8\\u13e5\\u13b8\": 10151,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\": 10152,\n    \"\\u2581\\u13a2\\u13e4\\u13ae\\u13cd\\u13d7\": 10153,\n    \"\\u2581\\u13a0\\u13be\\u13d5\\u13b2\\u13cd\\u13ac\\u13a2\": 10154,\n    \"\\u2581\\u13a0\\u13a9\\u13c2\\u13ac\\u13ce\\u13b2\": 10155,\n    \"\\u2581\\u13ac\\u13e3\": 10156,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13d2\\u13a2\": 10157,\n    \"\\u2581\\u13a3\\u13af\\u13cd\\u13d7\": 10158,\n    \"\\u2581\\u13da\\u13be\\u13e6\\u13ce\": 10159,\n    \"\\u13d3\\u13c1\\u13b8\\u13ad\": 10160,\n    \"\\u13f4\\u13ce\\u13b8\\u13a9\": 10161,\n    \"\\u2581\\u13e7\\u13ec\\u13e2\\u13c1\": 10162,\n    \"\\u2581\\u13a4\\u13c3\\u13ae\\u13b8\\u13a9\": 10163,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13c1\\u13a2\": 10164,\n    \"\\u13c3\\u13ae\\u13b5\": 10165,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13db\\u13d7\\u13cd\\u13ac\\u13a2\": 10166,\n    \"\\u2581\\u13a0\\u13f2\\u13cd\\u13d7\\u13cd\\u13ac\": 10167,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cf\": 10168,\n    \"\\u2581\\u13d3\\u13e5\\u13c1\": 10169,\n    \"\\u13b5\\u13e5\\u13d9\\u13c1\\u13b2\\u13a2\": 10170,\n    \"\\u2581\\u13e7\\u13e9\\u13d2\": 10171,\n    \"\\u2581\\u13c2\\u13e5\\u13f4\": 10172,\n    \"\\u2581\\u13e4\\u13ae\\u13cd\\u13d7\": 10173,\n    \"\\u2581\\u13d7\\u13a6\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\": 10174,\n    \"\\u2581\\u13e7\\u13d4\\u13c2\": 10175,\n    \"\\u2581\\u13e3\\u13c2\\u13c5\\u13a9\": 10176,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13cd\\u13ac\": 10177,\n    \"\\u2581\\u13e5\\u13aa\\u13e9\\u13d8\\u13ad\": 10178,\n    \"\\u2581\\u13a0\\u13e5\\u13a6\\u13d8\\u13d7\\u13cd\\u13d7\\u13f1\": 10179,\n    \"\\u13e6\\u13e9\": 10180,\n    \"\\u13a7\\u13bf\\u13e9\\u13db\\u13a1\": 10181,\n    \"\\u13a7\\u13ad\\u13f2\": 10182,\n    \"\\u13bf\\u13ec\\u13cd\\u13d7\": 10183,\n    \"\\u2581\\u13d3\\u13cd\\u13d3\": 10184,\n    \"\\u13a9\\u13e9\\u13db\\u13d7\\u13f1\": 10185,\n    \"\\u2581\\u13e7\\u13cd\\u13a6\": 10186,\n    \"\\u2581\\u13d3\\u13c2\\u13c1\\u13b5\": 10187,\n    \"\\u2581\\u13a6\\u13cc\\u13b4\": 10188,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d5\\u13b8\": 10189,\n    \"\\u2581\\u13e5\\u13da\\u13f2\\u13ce\": 10190,\n    \"\\u13c2\\u13f1\\u13cd\\u13a9\": 10191,\n    \"\\u13b5\\u13cd\\u13d9\\u13d4\\u13c1\": 10192,\n    \"\\u13c2\\u13d5\\u13c5\": 10193,\n    \"\\u13ad\\u13ef\\u13b8\": 10194,\n    \"\\u13a7\\u13c1\\u13cd\\u13d7\": 10195,\n    \"\\u2581\\u13d3\\u13f2\\u13a9\": 10196,\n    \"\\u2581\\u13a1\\u13af\\u13cd\\u13d7\\u13f3\": 10197,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13b5\\u13f2\\u13ac\\u13a2\": 10198,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d9\": 10199,\n    \"\\u2581\\u13e5\\u13c4\\u13db\\u13c1\\u13b4\": 10200,\n    \"\\u2581\\u13f1\\u13af\\u13a6\\u13d4\\u13ae\": 10201,\n    \"\\u13d3\\u13ec\\u13cd\\u13d9\\u13d7\": 10202,\n    \"\\u2581\\u13a5\\u13d8\": 10203,\n    \"\\u2581\\u13a4\\u13aa\\u13b5\\u13f0\\u13d7\": 10204,\n    \"\\u13ab\\u13f4\\u13a1\\u13b8\": 10205,\n    \"\\u2581\\u13a0\\u13a9\\u13e9\\u13db\\u13b2\\u13a9\": 10206,\n    \"\\u2581\\u13b5\\u13d3\": 10207,\n    \"\\u2581\\u13d5\\u13e3\\u13b4\": 10208,\n    \"\\u13a8\\u13ac\\u13c1\\u13b5\": 10209,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13cd\\u13d7\\u13f1\": 10210,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 10211,\n    \"\\u13d3\\u13e6\\u13cd\\u13ac\": 10212,\n    \"\\u13e3\\u13db\\u13a9\\u13ad\": 10213,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13d7\\u13c5\\u13ce\": 10214,\n    \"\\u2581\\u13a0\\u13de\": 10215,\n    \"\\u13a6\\u13ce\\u13cd\\u13d9\": 10216,\n    \"\\u13f2\\u13cd\\u13d7\\u13cd\\u13a9\": 10217,\n    \"\\u13d4\\u13c1\\u13b8\\u13af\": 10218,\n    \"\\u2581\\u13a0\\u13ab\\u13ec\\u13f0\": 10219,\n    \"\\u2581\\u13d0\\u13ad\": 10220,\n    \"\\u2581\\u13da\\u13b7\\u13ac\\u13a2\": 10221,\n    \"\\u2581\\u13c2\\u13ea\\u13cf\": 10222,\n    \"\\u2581\\u13eb\\u13da\\u13b7\\u13e4\\u13b8\": 10223,\n    \"\\u2581\\u13a4\\u13d4\\u13f2\\u13ce\\u13b8\\u13a9\": 10224,\n    \"\\u2581\\u13e5\\u13cd\\u13a9\\u13ef\": 10225,\n    \"\\u13cd\\u13e2\\u13c2\\u13cd\\u13d4\\u13c5\": 10226,\n    \"\\u13a4\\u13cf\": 10227,\n    \"\\u2581\\u13a4\\u13be\\u13e4\\u13b5\\u13aa\": 10228,\n    \"\\u13be\\u13cb\\u13c1\\u13b8\": 10229,\n    \"\\u2581\\u13e7\\u13c2\\u13ac\": 10230,\n    \"\\u2581\\u13a0\\u13d3\\u13ea\\u13b5\\u13a9\\u13cd\\u13ac\\u13a2\": 10231,\n    \"\\u13e5\\u13c2\": 10232,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13ac\\u13a2\": 10233,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\\u13db\\u13a2\": 10234,\n    \"\\u2581\\u13a6\\u13d3\\u13a5\\u13a2\": 10235,\n    \"\\u2581\\u13a1\\u13ad\\u13cf\": 10236,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13ac\": 10237,\n    \"\\u2581\\u13a4\\u13c2\\u13d6\\u13b8\\u13c5\": 10238,\n    \"\\u2581\\u13e3\\u13d3\\u13c5\\u13d8\": 10239,\n    \"\\u2581\\u13a1\\u13d7\\u13a8\\u13f3\\u13a2\": 10240,\n    \"\\u2581\\u13da\\u13c7\": 10241,\n    \"\\u13d3\\u13c2\\u13f1\": 10242,\n    \"\\u2581\\u13f1\\u13d4\": 10243,\n    \"\\u13d7\\u13ac\\u13e9\\u13a7\\u13c3\\u13d7\": 10244,\n    \"\\u2581\\u13ea\\u13d9\\u13b2\": 10245,\n    \"\\u2581\\u13a4\\u13b3\\u13cf\": 10246,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13aa\\u13a2\": 10247,\n    \"\\u13e4\\u13b5\\u13af\\u13cd\\u13aa\": 10248,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\\u13ad\": 10249,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13d9\\u13d7\": 10250,\n    \"\\u13be\\u13f0\\u13af\\u13cd\\u13db\": 10251,\n    \"\\u2581\\u13a4\\u13f0\\u13af\\u13cd\\u13a9\\u13c2\": 10252,\n    \"\\u2581\\u13da\\u13b8\\u13cc\\u13d3\": 10253,\n    \"\\u2581\\u13d3\\u13c2\\u13e2\": 10254,\n    \"\\u2581\\u13a6\\u13b7\\u13e5\": 10255,\n    \"\\u13a6\\u13b5\\u13cd\\u13d3\\u13db\": 10256,\n    \"\\u2581\\u13d7\\u13a7\\u13b5\\u13a2\": 10257,\n    \"\\u2581\\u13f1\\u13c4\\u13cd\\u13d5\\u13a2\": 10258,\n    \"\\u2581\\u13f1\\u13dd\": 10259,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13d7\\u13f1\": 10260,\n    \"\\u2581\\u13e3\\u13af\\u13cd\\u13d7\\u13f1\": 10261,\n    \"\\u2581\\u13da\\u13d3\\u13d3\\u13b4\\u13d4\\u13c1\": 10262,\n    \"\\u13e4\\u13ef\\u13d9\\u13e4\\u13ae\\u13cd\\u13d7\": 10263,\n    \"\\u2581\\u13f1\\u13e5\\u13a6\\u13d4\\u13ae\\u13a2\": 10264,\n    \"\\u2581\\u13a4\\u13c2\\u13af\\u13cd\\u13d7\": 10265,\n    \"\\u2581\\u13da\\u13d8\\u13c3\\u13b4\": 10266,\n    \"\\u2581\\u13d3\\u13d3\\u13af\": 10267,\n    \"\\u2581\\u13aa\\u13e2\\u13d2\\u13a9\": 10268,\n    \"\\u2581\\u13c2\\u13d9\\u13d4\\u13d8\": 10269,\n    \"\\u2581\\u13c5\\u13e9\\u13d3\": 10270,\n    \"\\u13f1\\u13a9\\u13b5\": 10271,\n    \"\\u13ea\\u13b5\\u13cf\": 10272,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13f0\": 10273,\n    \"\\u13b0\\u13af\\u13cd\\u13d7\": 10274,\n    \"\\u2581\\u13c4\\u13e9\\u13c1\\u13b2\": 10275,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13db\": 10276,\n    \"\\u2581\\u13a3\\u13e8\\u13d7\\u13cd\\u13ac\": 10277,\n    \"\\u2581\\u13a0\\u13d3\\u13b4\\u13c2\\u13cd\": 10278,\n    \"\\u2581\\u13a4\\u13c2\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\\u13f1\": 10279,\n    \"\\u2581\\u13e5\\u13c2\\u13a9\": 10280,\n    \"\\u13a7\\u13c1\\u13ac\": 10281,\n    \"\\u2581\\u13a0\\u13c6\\u13da\\u13b8\\u13b2\": 10282,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13e4\\u13b5\\u13a6\": 10283,\n    \"\\u2581\\u13a6\\u13db\\u13ac\\u13a6\": 10284,\n    \"\\u13c2\\u13cd\\u13d7\\u13ad\": 10285,\n    \"\\u2581\\u13c4\\u13ec\\u13da\\u13d2\": 10286,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13b8\\u13af\": 10287,\n    \"\\u2581\\u13d7\\u13a6\\u13f2\\u13e5\": 10288,\n    \"\\u2581\\u13a8\\u13db\\u13a2\": 10289,\n    \"\\u2581\\u13a0\\u13a9\\u13cc\": 10290,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c1\": 10291,\n    \"\\u2581\\u13cd\\u13c6\\u13b3\": 10292,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\": 10293,\n    \"\\u2581\\u13d9\\u13d3\\u13c6\\u13cd\\u13ac\\u13a2\": 10294,\n    \"\\u2581\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 10295,\n    \"\\u2581\\u13c2\\u13a6\\u13d4\\u13b2\\u13be\": 10296,\n    \"\\u2581\\u13f1\\u13da\\u13e9\\u13db\\u13ae\": 10297,\n    \"\\u13b3\\u13d1\\u13b3\": 10298,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13c1\\u13b4\": 10299,\n    \"\\u13be\\u13d5\\u13a8\": 10300,\n    \"\\u2581\\u13a8\\u13cc\": 10301,\n    \"\\u13b7\\u13b8\\u13c1\": 10302,\n    \"\\u2581\\u13c3\\u13e5\\u13a5\": 10303,\n    \"\\u13c1\\u13b3\\u13d5\\u13a2\": 10304,\n    \"\\u13cd\\u13d4\\u13f2\\u13cd\\u13d9\\u13d7\": 10305,\n    \"\\u13c2\\u13d3\\u13c5\\u13c1\\u13b0\": 10306,\n    \"\\u13cc\\u13d9\\u13ef\": 10307,\n    \"\\u13b5\\u13c9\\u13a9\": 10308,\n    \"\\u2581\\u13c2\\u13da\\u13e9\\u13c1\": 10309,\n    \"\\u2581\\u13c2\\u13cd\\u13db\": 10310,\n    \"\\u2581\\u13d7\\u13ac\\u13c5\": 10311,\n    \"\\u2581\\u13da\\u13c2\\u13f0\\u13b5\\u13d2\": 10312,\n    \"\\u13db\\u13b2\\u13c3\": 10313,\n    \"\\u13ef\\u13a6\\u13ce\\u13cd\\u13d7\": 10314,\n    \"\\u2581\\u13c5\\u13c2\": 10315,\n    \"\\u2581\\u13d9\\u13a6\\u13e0\\u13af\\u13cd\": 10316,\n    \"\\u13df\\u13c3\\u13ae\\u13d4\\u13c1\": 10317,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13d5\\u13b6\\u13c6\\u13a1\": 10318,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13e8\\u13a9\": 10319,\n    \"\\u2581\\u13a0\\u13e5\\u13aa\\u13b5\\u13f0\\u13a5\": 10320,\n    \"\\u13ef\\u13aa\": 10321,\n    \"\\u13ab\\u13f4\\u13b2\\u13be\": 10322,\n    \"\\u2581\\u13d5\\u13ad\\u13d8\\u13c1\": 10323,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13c3\\u13ae\\u13d7\": 10324,\n    \"\\u2581\\u13a4\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 10325,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13b0\": 10326,\n    \"\\u13ac\\u13ce\": 10327,\n    \"\\u2581\\u13f1\\u13be\\u13be\\u13db\\u13c1\\u13b0\": 10328,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13b0\": 10329,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13a9\\u13cd\\u13d7\": 10330,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13d3\\u13c5\\u13a1\": 10331,\n    \"\\u2581\\u13af\\u13a6\\u13d8\": 10332,\n    \"\\u2581\\u13c2\\u13e3\\u13ea\\u13ce\\u13b8\": 10333,\n    \"\\u2581\\u13a4\\u13c3\\u13ad\": 10334,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\": 10335,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13ec\\u13a2\": 10336,\n    \"\\u2581\\u13eb\\u13ac\\u13ea\\u13a7\\u13c1\": 10337,\n    \"\\u2581\\u13af\\u13a9\\u13cd\\u13aa\": 10338,\n    \"\\u13aa\\u13db\\u13a2\": 10339,\n    \"\\u13c5\\u13cd\\u13ac\\u13be\": 10340,\n    \"\\u2581\\u13c2\\u13a6\\u13db\\u13c1\\u13b0\\u13a2\": 10341,\n    \"\\u13a3\\u13b8\": 10342,\n    \"\\u2581\\u13a6\\u13b4\\u13c2\\u13d9\\u13b2\": 10343,\n    \"\\u2581\\u13c1\\u13b5\\u13cd\\u13ac\\u13be\": 10344,\n    \"\\u2581\\u13a4\\u13e9\\u13cc\\u13c6\": 10345,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\\u13a1\": 10346,\n    \"\\u2581\\u13a4\\u13c5\\u13c1\\u13a2\": 10347,\n    \"\\u13e5\\u13cd\\u13e2\": 10348,\n    \"\\u2581\\u13a4\\u13a7\\u13ad\": 10349,\n    \"\\u2581\\u13a4\\u13e9\\u13db\\u13b2\\u13a9\": 10350,\n    \"\\u2581\\u13d3\\u13f3\\u13ea\": 10351,\n    \"\\u2581\\u13f1\\u13da\\u13e9\\u13db\\u13b2\": 10352,\n    \"\\u2581\\u13e7\\u13ac\\u13e9\\u13b4\": 10353,\n    \"\\u13d3\\u13c7\": 10354,\n    \"\\u2581\\u13a4\\u13be\\u13cc\": 10355,\n    \"\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13aa\\u13a2\": 10356,\n    \"\\u2581\\u13e4\\u13b2\\u13a2\": 10357,\n    \"\\u13ef\\u13db\\u13a6\\u13c1\\u13b5\": 10358,\n    \"\\u13ac\\u13c7\\u13af\\u13cd\\u13d7\\u13ad\": 10359,\n    \"\\u2581\\u13a4\\u13e5\\u13ef\": 10360,\n    \"\\u13da\\u13d3\\u13f4\\u13b3\\u13db\": 10361,\n    \"\\u13ea\\u13cc\\u13c6\\u13b4\": 10362,\n    \"\\u2581\\u13ef\\u13c3\\u13b5\": 10363,\n    \"\\u2581\\u13e7\\u13c1\\u13af\": 10364,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13c2\\u13f4\": 10365,\n    \"\\u13f2\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 10366,\n    \"\\u2581\\u13e7\\u13c2\\u13f4\": 10367,\n    \"\\u2581\\u13c2\\u13e8\\u13ea\\u13ce\\u13b8\": 10368,\n    \"\\u2581\\u13a6\\u13c1\\u13b5\\u13d2\": 10369,\n    \"\\u13d5\\u13f2\\u13b2\": 10370,\n    \"\\u2581\\u13ef\\u13a9\\u13cd\\u13c6\\u13b8\\u13a1\": 10371,\n    \"\\u2581\\u13e7\\u13be\\u13d9\\u13c5\": 10372,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13b8\\u13c5\": 10373,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\\u13af\": 10374,\n    \"\\u2581\\u13c1\\u13e9\\u13d4\\u13b5\\u13c3\": 10375,\n    \"\\u13db\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 10376,\n    \"\\u2581\\u13a4\\u13da\\u13a2\\u13cd\\u13d4\\u13c5\\u13a2\": 10377,\n    \"\\u2581\\u13da\\u13be\\u13d8\\u13c3\\u13b8\": 10378,\n    \"\\u13c1\\u13df\\u13f4\\u13cd\\u13d4\\u13c1\": 10379,\n    \"\\u2581\\u13a0\\u13a6\\u13ef\": 10380,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13ae\\u13b5\\u13e4\\u13a2\": 10381,\n    \"\\u13a5\\u13cd\\u13a6\": 10382,\n    \"\\u13a0\\u13f4\": 10383,\n    \"\\u2581\\u13a4\\u13e9\\u13d3\": 10384,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\": 10385,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c1\": 10386,\n    \"\\u2581\\u13a4\\u13b5\\u13d8\\u13ce\": 10387,\n    \"\\u13f0\\u13cd\\u13d4\\u13c1\\u13a2\": 10388,\n    \"\\u13b5\\u13d4\\u13d5\": 10389,\n    \"\\u2581\\u13d5\\u13a4\\u13b4\\u13d4\\u13c5\\u13a2\": 10390,\n    \"\\u13e4\\u13cd\\u13d9\\u13a9\\u13af\": 10391,\n    \"\\u13a6\\u13d9\\u13cd\\u13d9\\u13d7\": 10392,\n    \"\\u2581\\u13f1\\u13d5\\u13cd\\u13d7\": 10393,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\\u13d2\\u13a2\": 10394,\n    \"\\u13d3\\u13c1\\u13b0\\u13a2\": 10395,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 10396,\n    \"\\u2581\\u13a3\\u13a9\\u13f0\\u13b8\": 10397,\n    \"\\u2581\\u13cd\\u13a9\\u13c5\\u13a6\\u13b8\": 10398,\n    \"\\u2581\\u13c2\\u13a6\\u13db\\u13c5\\u13a2\": 10399,\n    \"\\u13cd\\u13da\\u13b6\\u13d9\\u13d7\": 10400,\n    \"\\u2581\\u13d8\\u13a6\\u13b5\\u13cd\\u13d9\": 10401,\n    \"\\u2581\\u13d9\\u13a6\\u13d8\\u13c1\": 10402,\n    \"\\u2581\\u13eb\\u13d3\\u13d7\": 10403,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d4\\u13c5\\u13af\": 10404,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13ef\": 10405,\n    \"\\u2581\\u13a4\\u13b7\\u13e4\\u13d7\": 10406,\n    \"\\u2581\\u13a4\\u13d5\\u13d2\\u13c5\": 10407,\n    \"\\u13d3\\u13c5\\u13d4\\u13e9\\u13d5\\u13ac\": 10408,\n    \"\\u2581\\u13aa\\u13f1\": 10409,\n    \"\\u2581\\u13d3\\u13c4\": 10410,\n    \"\\u13e8\\u13c1\\u13b0\": 10411,\n    \"\\u2581\\u13f1\\u13c5\\u13a8\\u13e3\": 10412,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13b8\\u13d7\": 10413,\n    \"\\u13e6\\u13af\\u13f3\\u13b2\\u13a6\": 10414,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\\u13a2\": 10415,\n    \"\\u13da\\u13f3\\u13af\\u13db\": 10416,\n    \"\\u2581\\u13a4\\u13f0\\u13e5\": 10417,\n    \"\\u13b4\\u13ce\\u13a2\": 10418,\n    \"\\u2581\\u13a0\\u13a7\": 10419,\n    \"\\u13d3\\u13f4\\u13cd\\u13d7\": 10420,\n    \"\\u2581\\u13b3\\u13cf\": 10421,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13f4\\u13c1\\u13b8\": 10422,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13d7\": 10423,\n    \"\\u2581\\u13a2\\u13a6\\u13db\\u13c1\\u13d7\": 10424,\n    \"\\u2581\\u13d3\\u13d8\\u13c1\": 10425,\n    \"\\u2581\\u13f4\\u13ac\\u13e9\": 10426,\n    \"\\u2581\\u13a4\\u13bf\\u13b8\\u13e4\": 10427,\n    \"\\u2581\\u13a0\\u13c9\\u13af\\u13f3\\u13c5\": 10428,\n    \"\\u13cc\\u13d5\\u13a2\": 10429,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13d4\\u13b2\": 10430,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\\u13d4\\u13c1\": 10431,\n    \"\\u2581\\u13a6\\u13b8\\u13a5\": 10432,\n    \"\\u2581\\u13a6\\u13b3\\u13a9\": 10433,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13ce\\u13a2\": 10434,\n    \"\\u13be\\u13a5\\u13be\": 10435,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13db\\u13b2\": 10436,\n    \"\\u2581\\u13d5\\u13a8\\u13f2\\u13b2\\u13cd\\u13a8\": 10437,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13b5\\u13cd\\u13d3\\u13c1\": 10438,\n    \"\\u13d4\\u13b7\\u13a9\\u13cd\\u13ac\": 10439,\n    \"\\u2581\\u13e4\\u13b5\": 10440,\n    \"\\u13c2\\u13a8\\u13d2\": 10441,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13dd\\u13be\\u13a5\": 10442,\n    \"\\u2581\\u13f1\\u13d7\\u13cd\\u13a9\": 10443,\n    \"\\u2581\\u13a0\\u13f2\\u13b5\\u13c3\": 10444,\n    \"\\u13e3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 10445,\n    \"\\u2581\\u13a0\\u13e2\\u13db\": 10446,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13b5\": 10447,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 10448,\n    \"\\u2581\\u13f1\\u13e7\": 10449,\n    \"\\u13cd\\u13d7\\u13f0\": 10450,\n    \"\\u2581\\u13e5\\u13b6\\u13c3\": 10451,\n    \"\\u2581\\u13a6\\u13a8\\u13e3\": 10452,\n    \"\\u2581\\u13da\\u13d1\\u13a6\": 10453,\n    \"\\u13d3\\u13c2\\u13b8\\u13e4\": 10454,\n    \"\\u2581\\u13f1\\u13be\\u13c5\": 10455,\n    \"\\u2581\\u13d8\\u13f2\": 10456,\n    \"\\u2581\\u13a2\\u13e5\\u13ea\\u13cd\": 10457,\n    \"\\u13e5\\u13f0\\u13b8\\u13be\\u13c1\\u13b0\\u13a2\": 10458,\n    \"\\u13aa\\u13ae\": 10459,\n    \"\\u13ae\\u13d9\\u13ae\": 10460,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13a9\": 10461,\n    \"\\u2581\\u13d7\\u13e5\\u13f0\\u13b8\\u13a2\": 10462,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\": 10463,\n    \"\\u13be\\u13ec\\u13cd\\u13d4\\u13c1\\u13a2\": 10464,\n    \"\\u13dd\\u13c1\": 10465,\n    \"\\u2581\\u13ac\\u13b3\": 10466,\n    \"\\u2581\\u13e7\\u13f2\\u13b0\": 10467,\n    \"\\u13ef\\u13c2\\u13cd\\u13ac\\u13a2\": 10468,\n    \"\\u13d4\\u13db\": 10469,\n    \"\\u13aa\\u13ea\\u13b6\\u13d7\": 10470,\n    \"\\u2581\\u13a0\\u13d7\\u13d4\\u13cd\\u13d7\\u13f1\": 10471,\n    \"\\u2581\\u13a6\\u13f0\\u13cc\\u13db\\u13a2\": 10472,\n    \"\\u2581\\u13a0\\u13ce\\u13cd\\u13d7\": 10473,\n    \"\\u2581\\u13d3\\u13f2\\u13e3\": 10474,\n    \"\\u13f0\\u13b6\\u13b4\": 10475,\n    \"\\u2581\\u13a2\\u13d3\\u13d3\": 10476,\n    \"\\u13c9\\u13ce\\u13d7\": 10477,\n    \"\\u2581\\u13a4\\u13ea\\u13b6\": 10478,\n    \"\\u2581\\u13a1\\u13d9\\u13b0\": 10479,\n    \"\\u13d3\\u13d9\\u13b5\\u13a8\\u13cd\\u13d7\": 10480,\n    \"\\u2581\\u13da\\u13ec\\u13ce\\u13b4\": 10481,\n    \"\\u13e5\\u13cd\\u13d3\\u13f1\\u13d5\\u13b8\": 10482,\n    \"\\u13c2\\u13cf\\u13c5\\u13a9\": 10483,\n    \"\\u2581\\u13a1\\u13e5\\u13b7\\u13e4\\u13b8\": 10484,\n    \"\\u13c7\\u13b5\\u13ce\": 10485,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13d2\": 10486,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\\u13a2\": 10487,\n    \"\\u13e5\\u13cf\": 10488,\n    \"\\u13b8\\u13d2\": 10489,\n    \"\\u13db\\u13c2\\u13b2\": 10490,\n    \"\\u13db\\u13d9\\u13d7\\u13f1\": 10491,\n    \"\\u13f2\\u13b1\\u13cd\\u13ac\": 10492,\n    \"\\u2581\\u13da\\u13b8\\u13cc\\u13db\\u13a2\": 10493,\n    \"\\u2581\\u13a2\\u13f3\\u13d3\": 10494,\n    \"\\u2581\\u13e3\\u13ac\\u13a9\": 10495,\n    \"\\u2581\\u13a0\\u13c1\\u13b5\\u13cd\\u13a8\\u13a2\": 10496,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13ab\\u13d5\\u13d2\": 10497,\n    \"\\u2581\\u13f3\\u13c2\\u13ac\": 10498,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d1\\u13f4\": 10499,\n    \"\\u2581\\u13f2\\u13aa\": 10500,\n    \"\\u13aa\\u13b0\\u13cd\\u13ac\": 10501,\n    \"\\u13a0\\u13a9\\u13f2\\u13cf\": 10502,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13e8\\u13a2\": 10503,\n    \"\\u2581\\u13e7\\u13d9\\u13e2\": 10504,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c2\\u13d0\\u13e2\": 10505,\n    \"\\u2581\\u13a0\\u13da\": 10506,\n    \"\\u13f1\\u13c9\\u13cd\\u13a9\\u13c2\": 10507,\n    \"\\u13d1\\u13ef\\u13a9\\u13cd\\u13d7\": 10508,\n    \"\\u2581\\u13d5\\u13b0\": 10509,\n    \"\\u13ef\\u13db\\u13c5\": 10510,\n    \"\\u13d8\\u13cd\\u13ac\\u13be\": 10511,\n    \"\\u13d1\\u13f0\\u13ce\": 10512,\n    \"\\u13cd\\u13c6\\u13db\\u13af\": 10513,\n    \"\\u2581\\u13f3\\u13d4\\u13b3\\u13ec\": 10514,\n    \"\\u13cf\\u13f2\": 10515,\n    \"\\u13d3\\u13db\\u13c1\\u13ad\": 10516,\n    \"\\u2581\\u13a0\\u13aa\\u13ce\\u13b4\": 10517,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c1\": 10518,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13b8\": 10519,\n    \"\\u2581\\u13d2\\u13df\": 10520,\n    \"\\u2581\\u13a4\\u13db\\u13d7\": 10521,\n    \"\\u2581\\u13f3\\u13ef\": 10522,\n    \"\\u13cd\\u13a9\\u13d8\": 10523,\n    \"\\u2581\\u13a0\\u13ef\\u13a0\": 10524,\n    \"\\u2581\\u13a3\\u13a9\\u13b8\\u13c9\\u13d7\": 10525,\n    \"\\u13ac\\u13cd\\u13aa\\u13b8\\u13c5\\u13a2\": 10526,\n    \"\\u13d9\\u13d3\\u13cb\": 10527,\n    \"\\u13be\\u13df\\u13c3\\u13ae\\u13b8\": 10528,\n    \"\\u13b5\\u13e9\\u13db\\u13a1\\u13b2\\u13a2\": 10529,\n    \"\\u13d3\\u13c5\\u13db\": 10530,\n    \"\\u2581\\u13da\\u13f2\\u13b4\": 10531,\n    \"\\u2581\\u13c2\\u13a6\\u13b7\\u13ac\": 10532,\n    \"\\u2581\\u13db\\u13be\\u13a2\": 10533,\n    \"\\u2581\\u13e7\\u13c1\\u13e8\\u13c3\": 10534,\n    \"\\u13a9\\u13ce\\u13a2\": 10535,\n    \"\\u13e3\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\\u13f1\": 10536,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13ae\\u13a2\": 10537,\n    \"\\u2581\\u13da\\u13d1\\u13f0\\u13ce\": 10538,\n    \"\\u13f1\\u13d0\": 10539,\n    \"\\u13e8\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 10540,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13e4\\u13ad\": 10541,\n    \"\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 10542,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\\u13f1\": 10543,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\": 10544,\n    \"\\u13c5\\u13cd\\u13d9\\u13d7\\u13f1\": 10545,\n    \"\\u13f2\\u13a2\": 10546,\n    \"\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d3\": 10547,\n    \"\\u13c5\\u13be\\u13c9\": 10548,\n    \"\\u13ac\\u13d9\\u13d7\": 10549,\n    \"\\u2581\\u13ad\\u13d5\\u13b6\\u13b0\": 10550,\n    \"\\u13cd\\u13d3\\u13f1\\u13d5\": 10551,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13d2\": 10552,\n    \"\\u2581\\u13f3\\u13be\\u13da\\u13b5\\u13cd\": 10553,\n    \"\\u13f2\\u13d2\": 10554,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13ea\\u13cd\\u13ac\": 10555,\n    \"\\u13cd\\u13d4\\u13c1\\u13af\": 10556,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13d5\": 10557,\n    \"\\u13a8\\u13b5\": 10558,\n    \"\\u13b5\\u13a6\\u13b5\\u13f4\": 10559,\n    \"\\u2581\\u13c4\\u13db\\u13be\\u13d5\": 10560,\n    \"\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d9\\u13d7\": 10561,\n    \"\\u2581\\u13a6\\u13b5\\u13ad\": 10562,\n    \"\\u2581\\u13a4\\u13da\\u13b5\\u13cd\\u13a8\\u13a2\": 10563,\n    \"\\u2581\\u13a4\\u13f2\\u13e8\\u13a9\": 10564,\n    \"\\u2581\\u13d7\\u13d1\\u13eb\": 10565,\n    \"\\u13a7\\u13af\\u13f4\\u13a9\": 10566,\n    \"\\u2581\\u13e9\\u13e5\\u13ef\\u13c5\": 10567,\n    \"\\u2581\\u13a3\\u13ac\\u13d4\\u13c5\": 10568,\n    \"\\u2581\\u13a6\\u13d9\\u13a5\": 10569,\n    \"\\u2581\\u13d5\\u13e6\": 10570,\n    \"\\u2581\\u13a2\\u13e8\\u13d7\\u13cd\\u13aa\": 10571,\n    \"\\u13e9\\u13d7\\u13cd\\u13ac\": 10572,\n    \"\\u2581\\u13da\\u13d5\\u13f2\\u13c5\": 10573,\n    \"\\u13ab\\u13d3\\u13b8\": 10574,\n    \"\\u13d7\\u13ce\": 10575,\n    \"\\u2581\\u13db\\u13b5\": 10576,\n    \"\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13ad\": 10577,\n    \"\\u13c4\\u13ea\\u13ce\\u13a2\": 10578,\n    \"\\u2581\\u13a2\\u13eb\": 10579,\n    \"\\u13aa\\u13eb\\u13ce\": 10580,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\": 10581,\n    \"\\u2581\\u13f2\\u13a8\": 10582,\n    \"\\u13e9\\u13be\\u13a8\": 10583,\n    \"\\u13da\\u13c5\\u13c1\\u13b4\": 10584,\n    \"\\u2581\\u13a0\\u13aa\\u13e2\\u13c5\": 10585,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13d2\": 10586,\n    \"\\u13b3\\u13a8\\u13ef\\u13db\": 10587,\n    \"\\u2581\\u13a4\\u13a6\\u13d8\\u13d7\\u13cd\": 10588,\n    \"\\u2581\\u13a6\\u13db\\u13a2\": 10589,\n    \"\\u2581\\u13a3\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\": 10590,\n    \"\\u13e5\\u13c3\\u13b2\\u13cf\": 10591,\n    \"\\u2581\\u13a0\\u13c6\\u13a9\\u13b8\": 10592,\n    \"\\u13be\\u13d3\\u13e1\\u13ac\": 10593,\n    \"\\u2581\\u13cd\\u13a9\\u13be\\u13be\\u13c2\": 10594,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13c6\\u13db\": 10595,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13ea\": 10596,\n    \"\\u2581\\u13e9\\u13a9\\u13b6\\u13af\": 10597,\n    \"\\u13a2\\u13ce\\u13d7\": 10598,\n    \"\\u13c3\\u13b8\\u13d4\\u13c5\\u13a9\": 10599,\n    \"\\u2581\\u13a6\\u13f0\\u13d7\": 10600,\n    \"\\u2581\\u13ac\\u13a9\\u13b8\\u13c9\\u13d7\": 10601,\n    \"\\u13c1\\u13e4\\u13b8\\u13a9\": 10602,\n    \"\\u13d7\\u13a6\\u13da\\u13b2\": 10603,\n    \"\\u2581\\u13a4\\u13d5\\u13ef\": 10604,\n    \"\\u2581\\u13d5\\u13e5\\u13be\": 10605,\n    \"\\u2581\\u13f1\\u13d7\\u13a9\": 10606,\n    \"\\u13e5\\u13ef\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\": 10607,\n    \"\\u2581\\u13c2\\u13a0\": 10608,\n    \"\\u13a6\\u13da\\u13e2\": 10609,\n    \"\\u13a9\\u13b7\\u13e8\\u13a9\": 10610,\n    \"\\u13f4\\u13cd\\u13aa\\u13f3\\u13c1\": 10611,\n    \"\\u2581\\u13d3\\u13cd\\u13c6\\u13b5\\u13cd\": 10612,\n    \"\\u13ce\\u13b2\\u13a2\": 10613,\n    \"\\u2581\\u13a0\\u13c6\\u13da\\u13b5\\u13cd\\u13ac\\u13a2\": 10614,\n    \"\\u13d5\\u13aa\\u13e2\\u13be\": 10615,\n    \"\\u13c6\\u13b6\": 10616,\n    \"\\u2581\\u13a0\\u13c2\\u13b3\\u13a8\\u13f4\": 10617,\n    \"\\u2581\\u13d8\\u13aa\": 10618,\n    \"\\u2581\\u13a4\\u13de\": 10619,\n    \"\\u13b5\\u13d1\\u13eb\\u13d3\": 10620,\n    \"\\u2581\\u13e5\\u13a9\\u13c1\\u13b8\": 10621,\n    \"\\u13aa\\u13e2\\u13c1\\u13a2\": 10622,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13cd\\u13d7\": 10623,\n    \"\\u13a3\\u13d0\\u13c5\": 10624,\n    \"\\u2581\\u13a3\\u13e5\\u13c1\": 10625,\n    \"\\u13c1\\u13df\\u13f4\\u13ce\": 10626,\n    \"\\u13b8\\u13d4\\u13c5\\u13af\": 10627,\n    \"\\u2581\\u13e7\\u13c2\\u13d9\": 10628,\n    \"\\u2581\\u13d7\\u13c2\\u13c2\\u13a8\": 10629,\n    \"\\u2581\\u13e3\\u13be\\u13a2\": 10630,\n    \"\\u13d3\\u13b4\\u13cd\\u13d7\": 10631,\n    \"\\u13be\\u13b5\\u13a9\\u13db\": 10632,\n    \"\\u2581\\u13e6\\u13e5\\u13e9\\u13be\\u13a6\\u13b3\": 10633,\n    \"\\u13be\\u13b5\\u13d9\\u13a9\\u13ef\": 10634,\n    \"\\u2581\\u13a0\\u13e5\\u13f0\": 10635,\n    \"\\u2581\\u13da\\u13be\\u13d7\\u13e9\\u13cd\\u13a8\": 10636,\n    \"\\u13ef\\u13c2\\u13cd\\u13ac\": 10637,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13c5\\u13d8\": 10638,\n    \"\\u2581\\u13da\\u13c2\\u13c5\\u13c1\": 10639,\n    \"\\u2581\\u13ef\\u13a9\\u13cd\\u13d5\\u13b5\": 10640,\n    \"\\u13ac\\u13be\\u13ec\\u13d9\\u13d7\\u13f1\": 10641,\n    \"\\u2581\\u13d7\\u13a8\\u13a9\": 10642,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\\u13f2\": 10643,\n    \"\\u2581\\u13d9\\u13cd\\u13a9\": 10644,\n    \"\\u2581\\u13f3\\u13c3\\u13af\\u13f3\": 10645,\n    \"\\u13a6\\u13b5\\u13ef\": 10646,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13d3\\u13cd\": 10647,\n    \"\\u2581\\u13c2\\u13cd\\u13a9\": 10648,\n    \"\\u2581\\u13d9\\u13e5\\u13e9\\u13db\\u13b2\": 10649,\n    \"\\u2581\\u13c2\\u13a4\\u13ea\\u13ce\": 10650,\n    \"\\u2581\\u13cd\\u13ca\": 10651,\n    \"\\u2581\\u13a4\\u13eb\\u13d2\": 10652,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\\u13f1\\u13d7\\u13cd\\u13d7\": 10653,\n    \"\\u2581\\u13a2\\u13e8\\u13c3\\u13c1\\u13b8\": 10654,\n    \"\\u13c2\\u13c6\\u13d8\\u13b8\": 10655,\n    \"\\u2581\\u13eb\\u13e5\\u13b7\\u13e4\\u13b8\": 10656,\n    \"\\u13ef\\u13c2\\u13cd\\u13a8\\u13cd\\u13d7\": 10657,\n    \"\\u2581\\u13a4\\u13d9\\u13e9\\u13d7\\u13cd\": 10658,\n    \"\\u13d9\\u13b3\\u13c5\": 10659,\n    \"\\u2581\\u13e3\\u13da\\u13b3\": 10660,\n    \"\\u13d7\\u13a6\\u13b8\\u13c9\\u13d7\": 10661,\n    \"\\u2581\\u13e7\\u13e9\\u13c5\": 10662,\n    \"\\u13a1\\u13e5\\u13cd\\u13d3\\u13e9\\u13d5\\u13a9\": 10663,\n    \"\\u2581\\u13a0\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\": 10664,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13db\\u13c1\\u13b8\": 10665,\n    \"\\u13da\\u13d3\\u13b8\\u13d9\": 10666,\n    \"\\u2581\\u13c2\\u13d7\\u13a9\": 10667,\n    \"\\u13e4\\u13b8\\u13a9\": 10668,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13f1\": 10669,\n    \"\\u13ab\\u13f4\\u13a1\\u13ae\\u13cd\\u13d7\": 10670,\n    \"\\u13bf\\u13d5\\u13ac\": 10671,\n    \"\\u2581\\u13d3\\u13c2\\u13c3\\u13a9\\u13cd\": 10672,\n    \"\\u13d2\\u13cd\\u13d7\\u13f1\": 10673,\n    \"\\u2581\\u13a4\\u13f4\\u13d4\\u13c1\": 10674,\n    \"\\u13e9\\u13d4\\u13b0\": 10675,\n    \"\\u13c2\\u13ac\\u13ac\\u13a2\": 10676,\n    \"\\u2581\\u13c2\\u13e8\\u13c3\\u13c1\": 10677,\n    \"\\u2581\\u13ac\\u13a9\\u13f0\\u13b8\": 10678,\n    \"\\u2581\\u13a4\\u13e9\\u13d2\\u13af\": 10679,\n    \"\\u13ef\\u13a9\\u13cd\\u13aa\": 10680,\n    \"\\u2581\\u13a4\\u13f0\\u13b6\": 10681,\n    \"\\u2581\\u13da\\u13c4\": 10682,\n    \"\\u13ab\\u13f4\\u13d7\\u13f1\": 10683,\n    \"\\u13d3\\u13c1\\u13d8\": 10684,\n    \"\\u2581\\u13a6\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\": 10685,\n    \"\\u2581\\u13a4\\u13b4\\u13c5\\u13d4\\u13c5\": 10686,\n    \"\\u13d0\\u13cd\\u13d4\\u13c5\": 10687,\n    \"\\u13ef\\u13d4\\u13b2\": 10688,\n    \"\\u2581\\u13e7\\u13be\\u13a6\": 10689,\n    \"\\u2581\\u13b7\\u13a6\": 10690,\n    \"\\u13ea\\u13c5\\u13ce\": 10691,\n    \"\\u13b5\\u13d6\\u13b8\\u13c2\\u13b4\": 10692,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c5\": 10693,\n    \"\\u2581\\u13d9\\u13d3\\u13a6\\u13c5\": 10694,\n    \"\\u13aa\\u13ea\\u13b8\": 10695,\n    \"\\u13c5\\u13a6\\u13b8\\u13ae\\u13a2\": 10696,\n    \"\\u2581\\u13a4\\u13f2\\u13ae\\u13cd\\u13d7\": 10697,\n    \"\\u13c6\\u13d2\\u13a6\\u13b8\": 10698,\n    \"\\u2581\\u13d3\\u13c2\\u13be\": 10699,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13c5\\u13d9\\u13a9\": 10700,\n    \"\\u13a6\\u13d4\\u13bf\\u13a5\\u13be\": 10701,\n    \"\\u13b4\\u13cd\\u13d7\\u13f1\": 10702,\n    \"\\u13f4\\u13cd\\u13aa\\u13a2\": 10703,\n    \"\\u2581\\u13ac\\u13b5\": 10704,\n    \"\\u13c6\\u13d7\\u13c5\\u13db\": 10705,\n    \"\\u13d2\\u13d3\\u13c5\": 10706,\n    \"\\u13cd\\u13a6\\u13a2\\u13ae\": 10707,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13be\\u13c1\": 10708,\n    \"\\u2581\\u13a4\\u13f2\\u13c9\\u13cd\\u13a9\\u13c2\": 10709,\n    \"\\u13ea\\u13e3\": 10710,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\": 10711,\n    \"\\u13af\\u13e5\\u13a8\": 10712,\n    \"\\u13ac\\u13cd\\u13a6\\u13b8\": 10713,\n    \"\\u2581\\u13a4\\u13c5\\u13d7\\u13f1\": 10714,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13f3\\u13aa\\u13d3\\u13c1\": 10715,\n    \"\\u13d4\\u13db\\u13a9\": 10716,\n    \"\\u2581\\u13a6\\u13aa\\u13d7\\u13f1\": 10717,\n    \"\\u2581\\u13a4\\u13b5\\u13c2\": 10718,\n    \"\\u13e5\\u13cd\\u13c8\": 10719,\n    \"\\u13f0\\u13d7\": 10720,\n    \"\\u2581\\u13da\\u13be\\u13b5\\u13c2\\u13aa\": 10721,\n    \"\\u13d7\\u13cd\\u13a6\\u13b3\\u13c1\": 10722,\n    \"\\u2581\\u13a0\\u13c2\\u13b2\\u13cd\\u13a8\": 10723,\n    \"\\u2581\\u13e7\\u13c2\\u13ad\": 10724,\n    \"\\u13be\\u13cf\\u13d7\": 10725,\n    \"\\u13be\\u13b5\\u13d6\\u13b8\\u13c2\": 10726,\n    \"\\u13b5\\u13a8\": 10727,\n    \"\\u2581\\u13a0\\u13c2\\u13df\": 10728,\n    \"\\u13ab\\u13f4\\u13b2\": 10729,\n    \"\\u2581\\u13a2\\u13e3\\u13b4\": 10730,\n    \"\\u2581\\u13a0\\u13db\\u13c1\\u13b5\\u13cd\": 10731,\n    \"\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\": 10732,\n    \"\\u13da\\u13db\\u13db\\u13c5\\u13a9\": 10733,\n    \"\\u13ac\\u13be\\u13c9\": 10734,\n    \"\\u2581\\u13a4\\u13c1\\u13c5\\u13a2\\u13cd\\u13d7\": 10735,\n    \"\\u13aa\\u13b8\\u13cf\": 10736,\n    \"\\u13f2\\u13de\\u13d2\": 10737,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\\u13cd\\u13d3\\u13c1\": 10738,\n    \"\\u2581\\u13a0\\u13e2\\u13c8\\u13cd\\u13d7\": 10739,\n    \"\\u13df\\u13eb\\u13db\\u13d7\": 10740,\n    \"\\u13b5\\u13a5\\u13c2\": 10741,\n    \"\\u13c2\\u13f4\\u13ad\": 10742,\n    \"\\u2581\\u13db\\u13a0\": 10743,\n    \"\\u2581\\u13d3\\u13c2\\u13f1\": 10744,\n    \"\\u2581\\u13a4\\u13e9\\u13db\": 10745,\n    \"\\u13a9\\u13ac\": 10746,\n    \"\\u2581\\u13f1\\u13c4\\u13c5\\u13c1\": 10747,\n    \"\\u13a8\\u13f0\\u13a2\": 10748,\n    \"\\u2581\\u13ef\\u13c6\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\": 10749,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13a9\": 10750,\n    \"\\u2581\\u13d7\\u13ac\\u13c2\": 10751,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13b8\\u13ae\": 10752,\n    \"\\u13db\\u13ce\\u13a2\": 10753,\n    \"\\u2581\\u13c4\\u13e9\\u13be\": 10754,\n    \"\\u2581\\u13a4\\u13d3\\u13c2\\u13f4\": 10755,\n    \"\\u2581\\u13a6\\u13e5\\u13d4\\u13f2\\u13ce\": 10756,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13be\\u13c4\\u13aa\\u13eb\\u13d2\": 10757,\n    \"\\u13ab\\u13e4\\u13b5\": 10758,\n    \"\\u2581\\u13a3\\u13a9\\u13c2\\u13d9\": 10759,\n    \"\\u2581\\u13f1\\u13d5\\u13e3\": 10760,\n    \"\\u2581\\u13d7\\u13b2\\u13a2\": 10761,\n    \"\\u13d9\\u13b0\\u13a2\": 10762,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 10763,\n    \"\\u13ec\\u13a6\": 10764,\n    \"\\u13a7\\u13be\\u13c2\": 10765,\n    \"\\u2581\\u13da\\u13a9\\u13ce\": 10766,\n    \"\\u13be\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d9\\u13d7\": 10767,\n    \"\\u2581\\u13a0\\u13d3\\u13a9\\u13a1\": 10768,\n    \"\\u2581\\u13e3\\u13cd\\u13c6\\u13c2\\u13aa\": 10769,\n    \"\\u13b5\\u13ce\\u13af\": 10770,\n    \"\\u2581\\u13d7\\u13e4\\u13b7\": 10771,\n    \"\\u13c2\\u13f4\\u13b2\\u13a9\": 10772,\n    \"\\u2581\\u13eb\\u13da\\u13c2\\u13f2\\u13af\\u13ce\": 10773,\n    \"\\u2581\\u13a2\\u13e8\\u13f4\\u13c1\": 10774,\n    \"\\u13e5\\u13aa\\u13b5\\u13f0\\u13d7\\u13f1\": 10775,\n    \"\\u13eb\\u13f1\": 10776,\n    \"\\u2581\\u13a0\\u13e5\\u13f4\": 10777,\n    \"\\u2581\\u13a1\\u13e5\\u13c3\\u13c1\": 10778,\n    \"\\u2581\\u13d7\\u13a6\\u13ac\": 10779,\n    \"\\u2581\\u13d5\\u13e5\\u13c1\": 10780,\n    \"\\u13a5\\u13cd\\u13ac\\u13be\": 10781,\n    \"\\u2581\\u13d3\\u13be\\u13c1\\u13b6\": 10782,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 10783,\n    \"\\u2581\\u13a4\\u13ec\\u13d8\": 10784,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13c3\\u13ae\\u13d4\\u13c5\": 10785,\n    \"\\u13eb\\u13d2\\u13af\": 10786,\n    \"\\u13aa\\u13d7\\u13f1\": 10787,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13a1\": 10788,\n    \"\\u13e9\\u13d8\\u13ad\": 10789,\n    \"\\u13c5\\u13ce\\u13c3\": 10790,\n    \"\\u13c2\\u13cd\\u13a9\\u13f4\\u13a6\": 10791,\n    \"\\u13e9\\u13db\\u13a1\\u13d7\\u13f1\": 10792,\n    \"\\u13be\\u13d7\\u13c5\\u13d2\\u13a9\": 10793,\n    \"\\u2581\\u13da\\u13c5\\u13c5\": 10794,\n    \"\\u13c2\\u13ce\": 10795,\n    \"\\u2581\\u13e7\\u13ea\\u13f0\": 10796,\n    \"\\u2581\\u13a0\\u13c2\\u13a7\\u13b5\": 10797,\n    \"\\u13d2\\u13c1\": 10798,\n    \"\\u13d4\\u13c2\\u13b4\": 10799,\n    \"\\u13da\\u13d9\\u13a5\": 10800,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\": 10801,\n    \"\\u2581\\u13a8\\u13e3\\u13aa\\u13e9\\u13db\\u13d7\": 10802,\n    \"\\u13ce\\u13a6\": 10803,\n    \"\\u13f2\\u13b8\\u13a9\": 10804,\n    \"\\u2581\\u13d7\\u13a6\\u13b4\\u13c5\": 10805,\n    \"\\u2581\\u13a4\\u13d1\\u13b8\": 10806,\n    \"\\u2581\\u13a2\\u13cf\": 10807,\n    \"\\u2581\\u13e7\\u13d0\": 10808,\n    \"\\u13e5\\u13a6\\u13d6\\u13c3\\u13ad\": 10809,\n    \"\\u13a6\\u13d4\\u13c2\\u13b4\": 10810,\n    \"\\u2581\\u13e3\\u13d3\\u13c5\\u13d6\": 10811,\n    \"\\u2581\\u13a0\\u13a9\\u13f0\\u13b8\\u13d2\": 10812,\n    \"\\u13e5\\u13c2\\u13d0\\u13d7\\u13f1\": 10813,\n    \"\\u2581\\u13d3\\u13da\": 10814,\n    \"\\u2581\\u13a8\\u13e5\\u13ef\\u13c5\": 10815,\n    \"\\u13ef\\u13c5\\u13af\\u13b8\": 10816,\n    \"\\u13c5\\u13cd\\u13d3\\u13d5\": 10817,\n    \"\\u13cd\\u13d3\\u13a6\\u13f4\\u13af\\u13d3\": 10818,\n    \"\\u13d5\\u13b6\\u13c6\\u13a5\": 10819,\n    \"\\u2581\\u13e7\\u13be\\u13c1\": 10820,\n    \"\\u13d3\\u13e6\\u13b2\": 10821,\n    \"\\u13f1\\u13cd\\u13aa\\u13a2\": 10822,\n    \"\\u2581\\u13a2\\u13b8\\u13cd\\u13a9\\u13c9\": 10823,\n    \"\\u2581\\u13aa\\u13cd\\u13d7\": 10824,\n    \"\\u13e5\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 10825,\n    \"\\u13cd\\u13c6\\u13d7\\u13cd\\u13d7\\u13f1\": 10826,\n    \"\\u13ab\\u13f4\\u13a1\\u13d7\": 10827,\n    \"\\u13d2\\u13b2\": 10828,\n    \"\\u13b7\\u13e4\\u13b0\\u13a2\": 10829,\n    \"\\u13b6\\u13c4\\u13ae\\u13cd\\u13a9\": 10830,\n    \"\\u13f0\\u13d9\\u13b3\\u13db\\u13c5\": 10831,\n    \"\\u13c2\\u13f4\\u13d9\\u13d7\": 10832,\n    \"\\u2581\\u13a0\\u13a9\\u13e9\\u13d2\": 10833,\n    \"\\u2581\\u13ac\\u13cd\\u13ac\": 10834,\n    \"\\u2581\\u13da\\u13aa\\u13b2\\u13c3\": 10835,\n    \"\\u2581\\u13d3\\u13c2\\u13af\\u13ef\\u13cd\": 10836,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13af\\u13cd\\u13d7\": 10837,\n    \"\\u13ab\\u13cd\\u13db\\u13d7\": 10838,\n    \"\\u13cd\\u13aa\\u13b3\": 10839,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13c6\\u13d7\\u13cd\": 10840,\n    \"\\u13be\\u13d3\\u13e8\\u13ef\\u13cd\": 10841,\n    \"\\u13a7\\u13b5\\u13a2\\u13cd\\u13d4\\u13c5\": 10842,\n    \"\\u13f3\\u13b2\\u13cd\\u13a9\": 10843,\n    \"\\u2581\\u13e5\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\\u13c3\": 10844,\n    \"\\u2581\\u13e5\\u13f3\\u13af\\u13c3\": 10845,\n    \"\\u2581\\u13a4\\u13f2\\u13b4\\u13a2\": 10846,\n    \"\\u2581\\u13ed\\u13d6\\u13b3\": 10847,\n    \"\\u2581\\u13a4\\u13f2\\u13b0\\u13ce\": 10848,\n    \"\\u13ef\\u13d9\\u13ae\\u13ae\\u13cd\\u13d7\": 10849,\n    \"\\u13cd\\u13aa\\u13b8\\u13e8\": 10850,\n    \"\\u13f2\\u13b1\\u13ce\\u13b8\\u13af\": 10851,\n    \"\\u13a6\\u13df\": 10852,\n    \"\\u2581\\u13f3\\u13d7\\u13d4\": 10853,\n    \"\\u2581\\u13d9\\u13d3\\u13e5\\u13c3\\u13a9\": 10854,\n    \"\\u13ed\\u13aa\": 10855,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13ef\\u13d9\\u13d7\": 10856,\n    \"\\u13d3\\u13c1\\u13df\\u13f4\\u13d2\": 10857,\n    \"\\u2581\\u13a4\\u13c2\\u13df\\u13cc\\u13c5\": 10858,\n    \"\\u13f2\\u13b2\\u13a9\": 10859,\n    \"\\u13b5\\u13c3\\u13ae\\u13d4\\u13c5\\u13a9\": 10860,\n    \"\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13af\": 10861,\n    \"\\u2581\\u13a1\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\": 10862,\n    \"\\u2581\\u13cd\\u13c6\\u13db\\u13d3\\u13cd\\u13d3\": 10863,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\": 10864,\n    \"\\u2581\\u13d7\\u13e5\\u13c1\\u13b8\": 10865,\n    \"\\u13c4\\u13ec\\u13a5\": 10866,\n    \"\\u2581\\u13ef\\u13d3\": 10867,\n    \"\\u2581\\u13f1\\u13c2\\u13e8\\u13c1\": 10868,\n    \"\\u2581\\u13a7\\u13c5\\u13c2\\u13cd\\u13a9\\u13c9\": 10869,\n    \"\\u2581\\u13a2\\u13e3\\u13d9\\u13b4\\u13b0\": 10870,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d9\\u13f0\": 10871,\n    \"\\u13b7\\u13aa\": 10872,\n    \"\\u13d0\\u13c8\\u13b5\": 10873,\n    \"\\u13a7\\u13f2\\u13d7\": 10874,\n    \"\\u2581\\u13a0\\u13d3\\u13d4\\u13b6\\u13af\": 10875,\n    \"\\u13df\\u13b6\\u13cd\\u13d7\": 10876,\n    \"\\u2581\\u13a2\\u13e3\\u13ea\\u13cd\\u13d7\": 10877,\n    \"\\u2581\\u13e7\\u13c3\\u13af\\u13f3\\u13d7\": 10878,\n    \"\\u13be\\u13d3\\u13db\\u13c1\\u13ad\": 10879,\n    \"\\u2581\\u13d9\\u13a4\\u13c1\\u13c5\": 10880,\n    \"\\u2581\\u13a1\\u13e5\\u13cd\\u13d5\\u13b8\": 10881,\n    \"\\u13c2\\u13ef\\u13eb\\u13cd\\u13ac\": 10882,\n    \"\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 10883,\n    \"\\u2581\\u13a0\\u13b4\\u13c2\\u13d3\\u13cd\\u13d7\": 10884,\n    \"\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 10885,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\": 10886,\n    \"\\u13b8\\u13e8\": 10887,\n    \"\\u13ef\\u13d8\\u13c3\\u13af\\u13cf\": 10888,\n    \"\\u13b6\\u13a8\": 10889,\n    \"\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 10890,\n    \"\\u2581\\u13a4\\u13db\\u13af\\u13cd\\u13d7\": 10891,\n    \"\\u13e8\\u13c1\\u13d7\\u13f1\": 10892,\n    \"\\u13af\\u13ef\\u13cd\\u13d7\": 10893,\n    \"\\u2581\\u13a4\\u13b5\\u13ac\\u13da\": 10894,\n    \"\\u2581\\u13c6\\u13d9\": 10895,\n    \"\\u13be\\u13d3\\u13db\\u13c1\\u13d7\\u13f1\": 10896,\n    \"\\u13c2\\u13a5\": 10897,\n    \"\\u13b3\\u13d1\\u13b8\": 10898,\n    \"\\u13f2\\u13b1\\u13cd\": 10899,\n    \"\\u2581\\u13cf\\u13bb\": 10900,\n    \"\\u2581\\u13d2\\u13c3\": 10901,\n    \"\\u13e5\\u13b7\\u13e4\\u13b8\": 10902,\n    \"\\u13a6\\u13b4\\u13cd\\u13d7\": 10903,\n    \"\\u2581\\u13a8\\u13e6\\u13af\\u13f3\\u13d7\": 10904,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13b4\\u13b0\\u13d2\\u13c3\": 10905,\n    \"\\u2581\\u13a6\\u13d9\\u13ac\\u13a2\": 10906,\n    \"\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\\u13d7\\u13f1\": 10907,\n    \"\\u2581\\u13a2\\u13e8\\u13aa\": 10908,\n    \"\\u2581\\u13a0\\u13f2\\u13aa\": 10909,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d8\": 10910,\n    \"\\u13af\\u13d9\\u13b8\": 10911,\n    \"\\u13d3\\u13c5\\u13d6\\u13ad\": 10912,\n    \"\\u2581\\u13cf\\u13c2\": 10913,\n    \"\\u2581\\u13d2\\u13d5\": 10914,\n    \"\\u13cd\\u13d4\\u13ef\": 10915,\n    \"\\u2581\\u13a0\\u13ce\\u13db\": 10916,\n    \"\\u13ae\\u13b8\\u13af\": 10917,\n    \"\\u13b6\\u13c1\\u13a5\": 10918,\n    \"\\u2581\\u13ad\\u13b5\\u13cd\": 10919,\n    \"\\u2581\\u13d8\\u13c5\\u13b5\": 10920,\n    \"\\u13e5\\u13be\\u13cc\\u13a2\": 10921,\n    \"\\u13c5\\u13a1\\u13af\": 10922,\n    \"\\u13e4\\u13b6\\u13af\": 10923,\n    \"\\u2581\\u13c4\\u13a8\\u13f3\\u13ce\": 10924,\n    \"\\u13e4\\u13d9\\u13ad\": 10925,\n    \"\\u13d9\\u13ef\\u13c5\\u13af\\u13d5\\u13a2\": 10926,\n    \"\\u13b2\\u13cd\\u13d4\\u13c5\": 10927,\n    \"\\u13d2\\u13a8\": 10928,\n    \"\\u13c2\\u13c5\\u13eb\\u13cd\\u13d7\\u13cd\\u13a9\": 10929,\n    \"\\u13d8\\u13c5\\u13cd\\u13d7\\u13f1\": 10930,\n    \"\\u2581\\u13a4\\u13b5\\u13d8\\u13d2\": 10931,\n    \"\\u13ab\\u13d3\\u13b4\": 10932,\n    \"\\u13ae\\u13ad\": 10933,\n    \"\\u2581\\u13a3\\u13a8\": 10934,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13a2\\u13cd\": 10935,\n    \"\\u2581\\u13a0\\u13a9\\u13db\": 10936,\n    \"\\u2581\\u13a3\\u13a9\\u13c3\": 10937,\n    \"\\u13d7\\u13a6\\u13c4\\u13aa\\u13aa\": 10938,\n    \"\\u13ac\\u13d4\\u13c5\\u13af\": 10939,\n    \"\\u13a9\\u13c1\\u13e5\": 10940,\n    \"\\u13a6\\u13e5\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13ad\": 10941,\n    \"\\u13e3\\u13db\\u13a6\\u13c1\\u13b8\": 10942,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d4\\u13c1\": 10943,\n    \"\\u13aa\\u13d7\\u13cd\\u13a9\": 10944,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13ce\\u13a2\": 10945,\n    \"\\u2581\\u13a6\\u13f0\\u13aa\": 10946,\n    \"\\u2581\\u13a7\\u13be\": 10947,\n    \"\\u13c8\\u13c3\": 10948,\n    \"\\u2581\\u13a6\\u13c2\\u13a9\": 10949,\n    \"\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13cd\": 10950,\n    \"\\u2581\\u13d7\\u13e3\\u13db\": 10951,\n    \"\\u13af\\u13a6\\u13d4\\u13ad\\u13cd\\u13aa\": 10952,\n    \"\\u13e5\\u13b5\\u13a5\\u13c2\\u13b5\": 10953,\n    \"\\u13a6\\u13d4\\u13c2\\u13b8\": 10954,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13ad\": 10955,\n    \"\\u2581\\u13d4\\u13b5\\u13c9\": 10956,\n    \"\\u13d0\\u13d7\\u13f1\": 10957,\n    \"\\u2581\\u13a6\\u13d9\\u13a8\\u13a2\": 10958,\n    \"\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 10959,\n    \"\\u2581\\u13a4\\u13c2\\u13a9\": 10960,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\": 10961,\n    \"\\u13cf\\u13d9\\u13b8\": 10962,\n    \"\\u13e5\\u13f4\\u13a9\": 10963,\n    \"\\u13d5\\u13d9\\u13db\": 10964,\n    \"\\u2581\\u13a0\\u13be\\u13e1\\u13d7\": 10965,\n    \"\\u13e2\\u13be\": 10966,\n    \"\\u13e3\\u13d3\\u13c5\\u13d4\": 10967,\n    \"\\u2581\\u13a2\\u13cd\\u13d7\\u13aa\": 10968,\n    \"\\u13c2\\u13a6\\u13b8\": 10969,\n    \"\\u2581\\u13da\\u13c3\\u13d2\": 10970,\n    \"\\u2581\\u13a6\\u13b8\\u13c5\": 10971,\n    \"\\u2581\\u13a3\\u13e5\\u13c5\": 10972,\n    \"\\u13b8\\u13be\\u13c9\": 10973,\n    \"\\u13f0\\u13b8\\u13c5\": 10974,\n    \"\\u2581\\u13a0\\u13d9\\u13b4\\u13b0\": 10975,\n    \"\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\": 10976,\n    \"\\u2581\\u13e3\\u13c2\\u13a7\\u13d4\\u13ae\": 10977,\n    \"p\": 10978,\n    \"\\u13be\\u13d3\\u13c2\\u13b8\\u13e4\": 10979,\n    \"\\u2581\\u13da\\u13cf\\u13b3\\u13db\\u13a2\": 10980,\n    \"\\u13e5\\u13ec\\u13c1\\u13d4\\u13c5\": 10981,\n    \"\\u2581\\u13a6\\u13d5\\u13b6\\u13a3\\u13cd\": 10982,\n    \"\\u2581\\u13a3\\u13c2\\u13cd\\u13a9\\u13c2\": 10983,\n    \"\\u13b5\\u13c1\\u13cc\": 10984,\n    \"\\u13aa\\u13b8\": 10985,\n    \"\\u2581\\u13e5\\u13d5\\u13b2\": 10986,\n    \"\\u13e9\\u13c2\\u13cc\\u13c1\": 10987,\n    \"\\u2581\\u13af\\u13c3\\u13ae\\u13cd\\u13ac\": 10988,\n    \"\\u13c2\\u13f4\\u13cd\\u13d7\": 10989,\n    \"\\u2581\\u13c2\\u13ac\\u13c5\\u13a9\": 10990,\n    \"\\u2581\\u13af\\u13cd\\u13da\": 10991,\n    \"\\u13db\\u13c1\\u13b0\\u13a2\": 10992,\n    \"\\u13b7\\u13cf\": 10993,\n    \"\\u13c2\\u13ce\\u13a2\": 10994,\n    \"\\u2581\\u13a4\\u13ea\\u13b3\\u13d7\\u13cd\": 10995,\n    \"\\u13b7\\u13e4\\u13b2\": 10996,\n    \"\\u2581\\u13a4\\u13f1\\u13b6\": 10997,\n    \"\\u2581\\u13a0\\u13c6\\u13cd\\u13d7\": 10998,\n    \"\\u2581\\u13a4\\u13c2\\u13d4\\u13f2\": 10999,\n    \"\\u13f4\\u13cd\\u13d5\\u13cd\\u13d7\": 11000,\n    \"\\u13c2\\u13cf\\u13c1\": 11001,\n    \"\\u2581\\u13a7\\u13c1\\u13c9\\u13a8\": 11002,\n    \"\\u13c5\\u13cd\\u13d4\": 11003,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\": 11004,\n    \"\\u13e5\\u13ef\\u13c5\\u13b2\": 11005,\n    \"\\u2581\\u13a0\\u13a9\\u13ac\": 11006,\n    \"\\u13c2\\u13a6\\u13b5\\u13cd\\u13d3\": 11007,\n    \"\\u2581\\u13e7\\u13ec\\u13e2\": 11008,\n    \"\\u2581\\u13a4\\u13c2\\u13d0\": 11009,\n    \"\\u13cd\\u13d3\\u13a1\": 11010,\n    \"\\u2581\\u13a4\\u13d0\": 11011,\n    \"\\u2581\\u13d5\\u13a9\\u13c2\\u13f4\": 11012,\n    \"\\u13d3\\u13a6\": 11013,\n    \"\\u13be\\u13f0\\u13cd\\u13ac\\u13a2\": 11014,\n    \"\\u2581\\u13e7\\u13c2\\u13cd\": 11015,\n    \"\\u13e5\\u13eb\": 11016,\n    \"\\u2581\\u13c2\\u13e5\\u13a6\\u13d4\": 11017,\n    \"\\u13c5\\u13eb\\u13cd\\u13d7\\u13cd\\u13a8\": 11018,\n    \"\\u2581\\u13a4\\u13d3\\u13b5\\u13d3\\u13cd\": 11019,\n    \"\\u13f0\\u13b8\\u13b0\": 11020,\n    \"\\u13be\\u13a6\\u13d4\\u13b2\": 11021,\n    \"\\u13cf\\u13be\\u13cd\\u13db\": 11022,\n    \"\\u2581\\u13cd\\u13c6\\u13c2\": 11023,\n    \"\\u2581\\u13a4\\u13b7\\u13e8\\u13a2\": 11024,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 11025,\n    \"\\u2581\\u13d3\\u13a9\\u13a7\": 11026,\n    \"\\u13e5\\u13cd\\u13aa\\u13b5\": 11027,\n    \"\\u2581\\u13c2\\u13ac\\u13f4\": 11028,\n    \"\\u13ad\\u13c2\\u13cd\\u13d4\\u13c5\": 11029,\n    \"\\u13af\\u13ce\\u13b4\": 11030,\n    \"\\u13ec\\u13a1\": 11031,\n    \"\\u2581\\u13d3\\u13c6\\u13b4\": 11032,\n    \"\\u2581\\u13e7\\u13ec\\u13da\": 11033,\n    \"\\u13d5\\u13e8\\u13a9\": 11034,\n    \"\\u2581\\u13a2\\u13e4\\u13b5\": 11035,\n    \"\\u13a9\\u13d9\\u13b5\\u13cd\\u13d7\\u13f1\": 11036,\n    \"\\u13ac\\u13c2\\u13d0\\u13d7\\u13f1\": 11037,\n    \"\\u13b4\\u13c5\\u13d7\\u13f1\": 11038,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13d7\": 11039,\n    \"\\u13ef\\u13aa\\u13a6\": 11040,\n    \"\\u2581\\u13a4\\u13a8\\u13a2\": 11041,\n    \"\\u13d8\\u13cd\\u13d3\\u13c1\\u13af\": 11042,\n    \"\\u13ef\\u13e8\": 11043,\n    \"\\u2581\\u13d3\\u13c1\\u13b6\\u13db\": 11044,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13d2\": 11045,\n    \"\\u2581\\u13eb\\u13d3\\u13be\": 11046,\n    \"\\u13a6\\u13b6\\u13d9\\u13d7\": 11047,\n    \"\\u2581\\u13eb\\u13a6\\u13c5\": 11048,\n    \"\\u13cd\\u13da\\u13e3\": 11049,\n    \"\\u13a7\\u13ae\": 11050,\n    \"\\u13d4\\u13b6\": 11051,\n    \"\\u2581\\u13d3\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\": 11052,\n    \"\\u2581\\u13a4\\u13d4\\u13d5\\u13a9\\u13cd\\u13a8\": 11053,\n    \"\\u13b5\\u13ce\\u13d7\": 11054,\n    \"\\u2581\\u13e7\\u13be\\u13c1\\u13b3\": 11055,\n    \"\\u2581\\u13ac\\u13ef\\u13db\\u13c1\": 11056,\n    \"\\u2581\\u13a4\\u13b5\\u13c3\\u13af\\u13f0\": 11057,\n    \"\\u2581\\u13be\\u13d7\\u13cd\": 11058,\n    \"\\u2581\\u13a4\\u13e4\\u13b8\\u13c5\": 11059,\n    \"ns\": 11060,\n    \"\\u2581\\u13a2\\u13cd\\u13aa\": 11061,\n    \"\\u13f0\\u13b5\\u13ce\\u13ad\": 11062,\n    \"\\u2581\\u13c2\\u13da\\u13be\": 11063,\n    \"\\u13d5\\u13d4\\u13c5\\u13af\": 11064,\n    \"\\u2581\\u13c5\\u13ac\": 11065,\n    \"\\u2581\\u13db\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\": 11066,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\\u13db\": 11067,\n    \"\\u2581\\u13ac\\u13e9\\u13ef\\u13a2\": 11068,\n    \"\\u2581\\u13da\\u13a6\\u13d9\\u13cd\\u13d4\\u13c1\": 11069,\n    \"\\u13a6\\u13e1\\u13d3\": 11070,\n    \"\\u2581\\u13a6\\u13d3\\u13ec\": 11071,\n    \"\\u13bf\\u13b8\": 11072,\n    \"\\u13cd\\u13a9\\u13f0\\u13f2\\u13b2\": 11073,\n    \"\\u13eb\\u13cd\\u13d4\\u13c1\": 11074,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13a9\": 11075,\n    \"\\u13d4\\u13f2\\u13ce\\u13b8\": 11076,\n    \"\\u2581\\u13ac\\u13ec\\u13af\\u13f3\\u13b2\\u13cd\\u13a8\": 11077,\n    \"\\u13d7\\u13cd\": 11078,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13cd\\u13d3\\u13c1\": 11079,\n    \"\\u13c6\\u13d3\\u13be\\u13f0\\u13cd\": 11080,\n    \"\\u2581\\u13ed\\u13aa\\u13b2\": 11081,\n    \"\\u2581\\u13d3\\u13c2\\u13c3\\u13ae\": 11082,\n    \"\\u13b3\\u13cd\\u13db\": 11083,\n    \"\\u13d3\\u13c1\\u13ae\\u13a2\": 11084,\n    \"\\u2581\\u13a4\\u13c3\\u13ae\": 11085,\n    \"\\u13a6\\u13d1\\u13f0\\u13db\": 11086,\n    \"\\u2581\\u13da\\u13ea\\u13ef\": 11087,\n    \"\\u2581\\u13e5\\u13ef\\u13d9\\u13b5\": 11088,\n    \"\\u13f0\\u13c5\": 11089,\n    \"\\u2581\\u13ac\\u13e9\\u13f2\": 11090,\n    \"\\u13be\\u13d3\\u13c2\\u13b8\\u13e8\": 11091,\n    \"\\u13c2\\u13cc\\u13d9\\u13f4\": 11092,\n    \"\\u2581\\u13a2\\u13e4\\u13b5\\u13ce\": 11093,\n    \"\\u2581\\u13d3\\u13e5\\u13c3\": 11094,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13ef\\u13b7\": 11095,\n    \"\\u13d1\\u13f1\": 11096,\n    \"\\u13b5\\u13f2\": 11097,\n    \"\\u2581\\u13e7\\u13be\\u13b5\": 11098,\n    \"\\u2581\\u13cd\\u13c6\\u13d3\\u13c5\": 11099,\n    \"\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b4\": 11100,\n    \"\\u13af\\u13ce\\u13b8\\u13a2\": 11101,\n    \"\\u2581\\u13f1\\u13d3\\u13a9\\u13ef\": 11102,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13ce\": 11103,\n    \"\\u13a7\\u13b8\\u13a9\": 11104,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\": 11105,\n    \"\\u2581\\u13da\\u13cf\\u13d4\\u13d5\": 11106,\n    \"\\u13c1\\u13b3\\u13d7\\u13cd\\u13a8\": 11107,\n    \"\\u2581\\u13a0\\u13aa\\u13b5\\u13f0\\u13cd\\u13aa\": 11108,\n    \"\\u2581\\u13a1\\u13e3\\u13b5\": 11109,\n    \"\\u2581\\u13a0\\u13d3\\u13ef\\u13c5\": 11110,\n    \"\\u2581\\u13da\\u13d2\\u13c1\": 11111,\n    \"\\u13be\\u13f2\\u13aa\": 11112,\n    \"\\u13be\\u13a9\\u13ea\\u13d2\": 11113,\n    \"\\u2581\\u13a8\\u13e6\\u13af\\u13f3\": 11114,\n    \"\\u13a9\\u13c2\\u13ac\\u13a6\": 11115,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\": 11116,\n    \"\\u13ce\\u13a9\": 11117,\n    \"\\u2581\\u13a2\\u13e5\\u13f0\\u13b8\\u13d2\": 11118,\n    \"\\u2581\\u13ef\\u13cd\\u13a6\\u13a2\\u13ae\": 11119,\n    \"\\u2581\\u13a4\\u13ec\\u13ce\": 11120,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\": 11121,\n    \"\\u13af\\u13ce\\u13b8\\u13af\": 11122,\n    \"\\u2581\\u13e7\\u13aa\\u13b2\": 11123,\n    \"\\u13a2\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 11124,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\": 11125,\n    \"\\u2581\\u13a2\\u13cd\\u13c6\": 11126,\n    \"\\u13d9\\u13b4\\u13a2\": 11127,\n    \"\\u13a6\\u13b5\\u13f4\": 11128,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\\u13cd\\u13d7\": 11129,\n    \"\\u2581\\u13f1\\u13e5\\u13f2\": 11130,\n    \"\\u13e4\\u13c5\": 11131,\n    \"\\u13ab\\u13cd\\u13db\": 11132,\n    \"\\u13a7\\u13d8\": 11133,\n    \"\\u13b5\\u13f2\\u13a9\": 11134,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\\u13a8\": 11135,\n    \"\\u2581\\u13f4\\u13eb\\u13cd\\u13a9\\u13c2\": 11136,\n    \"\\u13a8\\u13d9\\u13b0\": 11137,\n    \"\\u2581\\u13a4\\u13be\\u13e6\\u13d7\": 11138,\n    \"\\u13cf\\u13cc\\u13c5\": 11139,\n    \"\\u2581\\u13d3\\u13f0\\u13e5\": 11140,\n    \"\\u13b8\\u13cd\\u13d4\\u13c5\": 11141,\n    \"\\u2581\\u13a0\\u13e5\\u13aa\\u13d7\": 11142,\n    \"\\u13e3\\u13b6\\u13c1\": 11143,\n    \"\\u13be\\u13c9\\u13af\": 11144,\n    \"\\u13e3\\u13c3\\u13c1\\u13b5\": 11145,\n    \"\\u2581\\u13da\\u13c2\\u13c5\": 11146,\n    \"\\u13d3\\u13b4\\u13b2\\u13cd\\u13a9\": 11147,\n    \"\\u13d3\\u13f0\\u13c5\": 11148,\n    \"\\u2581\\u13d9\\u13e4\": 11149,\n    \"\\u2581\\u13db\\u13ad\": 11150,\n    \"\\u13e3\\u13c5\": 11151,\n    \"\\u13d3\\u13c5\\u13a6\\u13b8\": 11152,\n    \"\\u13a9\\u13b8\\u13d4\\u13c1\": 11153,\n    \"\\u13ce\\u13aa\\u13a9\": 11154,\n    \"\\u13ea\\u13b8\": 11155,\n    \"\\u13b5\\u13b4\": 11156,\n    \"\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\\u13f1\": 11157,\n    \"\\u13c6\\u13c5\\u13d4\": 11158,\n    \"\\u2581\\u13c2\\u13a8\\u13e5\": 11159,\n    \"\\u13c9\\u13d1\\u13b4\": 11160,\n    \"\\u2581\\u13a0\\u13be\\u13c5\": 11161,\n    \"\\u13e8\\u13a6\": 11162,\n    \"\\u2581\\u13a5\\u13a9\\u13c1\\u13b8\": 11163,\n    \"\\u2581\\u13d7\\u13d5\": 11164,\n    \"\\u2581\\u13e5\\u13f2\": 11165,\n    \"\\u13b3\\u13c5\\u13d3\\u13d5\\u13b8\": 11166,\n    \"\\u2581\\u13f1\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 11167,\n    \"\\u13b4\\u13eb\\u13cd\\u13d7\\u13cd\\u13a8\": 11168,\n    \"\\u13b8\\u13c3\\u13d8\\u13ad\": 11169,\n    \"\\u2581\\u13a5\\u13ac\\u13e9\": 11170,\n    \"\\u13b5\\u13ae\\u13b5\\u13e5\": 11171,\n    \"\\u13c5\\u13a6\\u13b5\\u13cd\\u13ac\\u13a2\": 11172,\n    \"\\u13b8\\u13a5\\u13cd\\u13a9\": 11173,\n    \"\\u2581\\u13e5\\u13d3\\u13be\": 11174,\n    \"\\u13c2\\u13df\": 11175,\n    \"\\u2581\\u13a4\\u13a7\\u13d9\\u13cd\": 11176,\n    \"\\u13d4\\u13b3\\u13ec\": 11177,\n    \"\\u13e5\\u13a9\\u13cd\\u13d7\": 11178,\n    \"\\u13df\\u13cc\\u13c5\\u13a9\": 11179,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13db\": 11180,\n    \"\\u2581\\u13a4\\u13b5\\u13ae\\u13b5\\u13e4\\u13b8\": 11181,\n    \"\\u13cd\\u13a6\\u13c3\\u13b8\": 11182,\n    \"\\u2581\\u13e7\\u13c5\\u13d9\\u13d7\": 11183,\n    \"\\u2581\\u13ac\\u13c6\\u13d5\": 11184,\n    \"\\u2581\\u13a7\\u13c1\\u13a2\\u13cd\": 11185,\n    \"\\u2581\\u13a0\\u13be\\u13db\\u13a9\": 11186,\n    \"\\u13db\\u13a6\\u13c1\\u13d7\\u13f1\": 11187,\n    \"\\u13a6\\u13e2\\u13c8\": 11188,\n    \"\\u2581\\u13f3\\u13dd\": 11189,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\\u13a2\": 11190,\n    \"\\u13be\\u13b4\\u13eb\\u13cd\\u13d4\\u13c1\": 11191,\n    \"\\u2581\\u13d7\\u13c2\\u13f2\\u13b5\\u13c9\": 11192,\n    \"\\u13d2\\u13a6\\u13b3\": 11193,\n    \"\\u13dd\\u13b4\": 11194,\n    \"\\u13e5\\u13ef\\u13ec\\u13a5\": 11195,\n    \"\\u2581\\u13a4\\u13ec\\u13ea\\u13b3\": 11196,\n    \"\\u2581\\u13d9\\u13d3\\u13e5\\u13ef\": 11197,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\\u13e4\\u13d7\": 11198,\n    \"\\u2581\\u13ac\\u13ef\\u13db\\u13c1\\u13b8\": 11199,\n    \"\\u13d7\\u13d4\\u13cd\\u13d7\\u13f1\": 11200,\n    \"\\u2581\\u13e7\\u13c2\\u13c1\\u13e4\": 11201,\n    \"\\u2581\\u13a4\\u13db\\u13d3\\u13cd\": 11202,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b5\\u13e8\": 11203,\n    \"\\u13ac\\u13c1\\u13d7\\u13f1\": 11204,\n    \"\\u13d3\\u13aa\\u13e9\\u13d8\\u13ad\": 11205,\n    \"\\u2581\\u13a1\\u13e3\\u13da\": 11206,\n    \"\\u2581\\u13d9\\u13db\\u13c3\": 11207,\n    \"\\u2581\\u13e5\\u13c5\\u13e9\\u13cd\\u13d7\": 11208,\n    \"\\u13ef\\u13db\\u13d7\": 11209,\n    \"\\u2581\\u13d7\\u13a6\\u13a8\": 11210,\n    \"\\u13cc\\u13be\": 11211,\n    \"\\u13af\\u13d3\\u13cd\\u13d7\\u13f1\": 11212,\n    \"\\u13be\\u13da\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 11213,\n    \"\\u13b5\\u13cd\\u13d4\\u13f4\\u13b2\\u13cd\\u13ac\": 11214,\n    \"\\u13f2\\u13cd\\u13d9\\u13d7\": 11215,\n    \"\\u2581\\u13a4\\u13c2\\u13ef\\u13b8\": 11216,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\": 11217,\n    \"\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 11218,\n    \"\\u13c2\\u13cd\\u13da\\u13a9\": 11219,\n    \"\\u13a9\\u13a7\\u13cf\": 11220,\n    \"\\u13cd\\u13a9\\u13f2\\u13ce\\u13ad\": 11221,\n    \"\\u2581\\u13a0\\u13d3\\u13be\\u13cf\\u13c2\": 11222,\n    \"\\u2581\\u13ac\\u13a9\\u13ef\": 11223,\n    \"\\u13e9\\u13c9\": 11224,\n    \"\\u2581\\u13b2\\u13c2\": 11225,\n    \"\\u13e5\\u13f0\\u13b5\\u13d2\": 11226,\n    \"\\u13ab\\u13f1\\u13cd\\u13a8\\u13cd\\u13d7\": 11227,\n    \"\\u2581\\u13d5\\u13b6\": 11228,\n    \"\\u13db\\u13c1\\u13b5\\u13cd\\u13a9\": 11229,\n    \"\\u13cd\\u13aa\\u13b8\\u13d3\\u13cf\": 11230,\n    \"\\u2581\\u13c2\\u13ac\\u13c5\\u13a2\": 11231,\n    \"\\u13be\\u13c4\\u13aa\\u13a8\\u13cd\\u13d7\": 11232,\n    \"\\u13cd\\u13a9\\u13a6\\u13d4\\u13ad\": 11233,\n    \"\\u13c6\\u13c2\\u13cf\": 11234,\n    \"\\u13c3\\u13c1\\u13b8\\u13af\": 11235,\n    \"\\u13e5\\u13c3\\u13cd\\u13db\": 11236,\n    \"\\u13ac\\u13e9\\u13aa\\u13b2\": 11237,\n    \"\\u2581\\u13d7\\u13a6\\u13cd\\u13a9\\u13b6\": 11238,\n    \"\\u13d5\\u13cb\\u13af\\u13cd\\u13d7\": 11239,\n    \"\\u13be\\u13bf\": 11240,\n    \"\\u2581\\u13a6\\u13a7\\u13b2\": 11241,\n    \"\\u2581\\u13da\\u13d9\\u13ea\": 11242,\n    \"\\u13e3\\u13f2\\u13ad\": 11243,\n    \"\\u2581\\u13da\\u13d9\\u13a5\\u13a9\": 11244,\n    \"\\u2581\\u13a0\\u13b9\\u13c9\": 11245,\n    \"\\u13b5\\u13ce\\u13ad\": 11246,\n    \"\\u13d3\\u13c2\\u13b8\\u13a8\\u13cd\\u13d7\": 11247,\n    \"\\u13a6\\u13c4\\u13aa\\u13ac\\u13a2\": 11248,\n    \"\\u13a6\\u13e5\\u13f4\": 11249,\n    \"\\u13ea\\u13d9\\u13b5\\u13e8\\u13a9\": 11250,\n    \"\\u13be\\u13d3\\u13c5\\u13d6\\u13b8\": 11251,\n    \"\\u13b5\\u13e8\": 11252,\n    \"\\u13b5\\u13cd\\u13da\\u13b6\": 11253,\n    \"\\u2581\\u13a4\\u13b5\\u13e0\\u13ef\\u13cd\": 11254,\n    \"\\u2581\\u13a6\\u13d7\\u13d4\": 11255,\n    \"\\u2581\\u13da\\u13ea\\u13a7\": 11256,\n    \"\\u2581\\u13c4\\u13e7\\u13c8\\u13cd\": 11257,\n    \"\\u2581\\u13e3\\u13db\\u13d7\": 11258,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b0\\u13ce\": 11259,\n    \"\\u13eb\\u13a8\\u13d9\\u13b2\": 11260,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13da\": 11261,\n    \"\\u13ae\\u13cd\\u13ac\\u13be\": 11262,\n    \"\\u2581\\u13a0\\u13c2\\u13be\\u13b7\\u13cd\": 11263,\n    \"\\u13a8\\u13d3\\u13b5\": 11264,\n    \"\\u2581\\u13a0\\u13a9\\u13e9\\u13db\\u13d7\": 11265,\n    \"\\u13a9\\u13a1\\u13b4\": 11266,\n    \"\\u13c5\\u13ce\\u13a2\": 11267,\n    \"\\u2581\\u13f4\\u13a6\\u13e5\\u13cd\\u13a6\": 11268,\n    \"\\u2581\\u13af\\u13e9\\u13db\": 11269,\n    \"\\u2581\\u13c2\\u13ac\\u13c2\\u13cf\": 11270,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\": 11271,\n    \"\\u13d8\\u13c2\\u13d9\\u13af\": 11272,\n    \"\\u2581\\u13ef\\u13c2\\u13c1\": 11273,\n    \"\\u2581\\u13f3\\u13f4\": 11274,\n    \"\\u13db\\u13d3\\u13b4\\u13b2\\u13cd\\u13a9\": 11275,\n    \"\\u13c3\\u13ad\\u13dd\": 11276,\n    \"\\u2581\\u13a8\\u13e3\\u13c1\\u13a2\\u13cd\\u13d7\": 11277,\n    \"\\u13b8\\u13c9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 11278,\n    \"\\u2581\\u13a2\\u13e5\\u13a7\\u13b5\\u13a2\": 11279,\n    \"\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 11280,\n    \"\\u2581\\u13e9\\u13c2\": 11281,\n    \"\\u13a9\\u13e0\": 11282,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 11283,\n    \"\\u2581\\u13d5\\u13a6\\u13c2\\u13f1\\u13cd\": 11284,\n    \"\\u13be\\u13c4\\u13aa\\u13ac\": 11285,\n    \"\\u13e3\\u13d3\\u13f1\\u13b8\": 11286,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13e5\\u13d9\\u13c2\\u13d9\": 11287,\n    \"\\u13c4\\u13aa\\u13eb\\u13cd\\u13a6\": 11288,\n    \"\\u2581\\u13b2\\u13be\": 11289,\n    \"\\u13d3\\u13ec\\u13a0\": 11290,\n    \"\\u13d3\\u13c1\\u13b5\": 11291,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13f1\": 11292,\n    \"\\u2581\\u13a8\\u13e5\\u13f0\\u13b8\": 11293,\n    \"\\u13c4\\u13aa\\u13e4\": 11294,\n    \"\\u13ce\\u13db\": 11295,\n    \"\\u13e0\\u13ef\": 11296,\n    \"\\u13a6\\u13d9\\u13cd\\u13d5\\u13a2\": 11297,\n    \"\\u13d9\\u13e2\\u13d2\\u13a2\": 11298,\n    \"\\u13a1\\u13be\": 11299,\n    \"\\u13c2\\u13da\\u13ea\\u13ce\\u13b8\\u13a9\": 11300,\n    \"\\u13a6\\u13db\\u13b4\\u13af\": 11301,\n    \"\\u2581\\u13a8\\u13e5\\u13c1\": 11302,\n    \"\\u2581\\u13a6\\u13c1\\u13df\\u13f4\": 11303,\n    \"\\u13be\\u13f0\\u13af\": 11304,\n    \"\\u13e5\\u13d3\\u13cd\\u13d7\": 11305,\n    \"\\u13a6\\u13b8\\u13d3\": 11306,\n    \"\\u13f0\\u13b2\\u13be\": 11307,\n    \"\\u13c6\\u13d5\\u13d8\\u13f4\\u13b2\": 11308,\n    \"\\u13a6\\u13d4\\u13b2\\u13a2\": 11309,\n    \"\\u13df\\u13f4\\u13ad\": 11310,\n    \"\\u2581\\u13a4\\u13db\\u13c2\\u13d7\": 11311,\n    \"\\u2581\\u13e8\\u13db\": 11312,\n    \"\\u2581\\u13e7\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 11313,\n    \"\\u13f1\\u13b5\\u13d9\\u13ad\": 11314,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13aa\": 11315,\n    \"\\u13d5\\u13d9\\u13ad\": 11316,\n    \"\\u13d9\\u13a8\\u13cd\\u13d7\": 11317,\n    \"\\u13d1\\u13b5\\u13aa\\u13ac\": 11318,\n    \"\\u2581\\u13a4\\u13aa\\u13ae\\u13c3\": 11319,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13e4\": 11320,\n    \"\\u2581\\u13c4\\u13ea\\u13a1\": 11321,\n    \"\\u13c4\\u13ae\\u13b5\": 11322,\n    \"\\u2581\\u13a6\\u13be\\u13cd\": 11323,\n    \"\\u13c2\\u13e9\\u13db\\u13b2\": 11324,\n    \"\\u2581\\u13af\\u13c3\\u13c1\\u13b8\": 11325,\n    \"\\u2581\\u13e5\\u13da\\u13c4\\u13aa\": 11326,\n    \"\\u13c2\\u13cd\\u13aa\": 11327,\n    \"\\u13c1\\u13d9\\u13af\": 11328,\n    \"\\u13a7\\u13be\\u13c5\": 11329,\n    \"\\u2581\\u13d3\\u13f0\\u13b5\": 11330,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\": 11331,\n    \"\\u2581\\u13d3\\u13e5\\u13b6\\u13cd\": 11332,\n    \"\\u13b7\\u13ac\\u13be\": 11333,\n    \"\\u2581\\u13da\\u13c3\\u13f4\": 11334,\n    \"\\u13a8\\u13ae\": 11335,\n    \"\\u2581\\u13a2\\u13e3\\u13ab\\u13f1\\u13cd\": 11336,\n    \"\\u13ad\\u13c9\": 11337,\n    \"\\u2581\\u13a0\\u13b8\\u13af\": 11338,\n    \"\\u13d5\\u13c3\": 11339,\n    \"\\u2581\\u13a2\\u13a6\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\": 11340,\n    \"\\u13a6\\u13d8\\u13f0\\u13a2\": 11341,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\\u13a9\": 11342,\n    \"\\u13db\\u13d3\\u13cd\\u13d4\\u13c2\": 11343,\n    \"\\u13a7\\u13c1\\u13e5\": 11344,\n    \"\\u2581\\u13e7\\u13f3\": 11345,\n    \"\\u2581\\u13a1\\u13b6\\u13af\\u13c9\": 11346,\n    \"\\u2581\\u13d5\\u13ac\\u13a9\": 11347,\n    \"\\u13c2\\u13cd\\u13d8\\u13f0\\u13ac\": 11348,\n    \"\\u13f2\\u13a9\": 11349,\n    \"\\u13e3\\u13e2\": 11350,\n    \"\\u2581\\u13d3\\u13ac\\u13ef\": 11351,\n    \"\\u13ef\\u13d1\\u13f0\\u13db\": 11352,\n    \"\\u2581\\u13ac\\u13f4\": 11353,\n    \"\\u2581\\u13a0\\u13d4\": 11354,\n    \"\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 11355,\n    \"\\u2581\\u13db\\u13aa\": 11356,\n    \"\\u13d3\\u13b4\\u13b2\\u13cd\\u13a8\": 11357,\n    \"\\u2581\\u13af\\u13cd\\u13d5\\u13b8\\u13d7\": 11358,\n    \"\\u13c2\\u13ad\": 11359,\n    \"\\u2581\\u13e3\\u13c4\\u13ec\": 11360,\n    \"\\u2581\\u13a2\\u13e4\\u13d3\\u13cd\\u13d7\": 11361,\n    \"\\u2581\\u13a2\\u13e4\\u13f2\": 11362,\n    \"\\u13d6\\u13c6\\u13b6\": 11363,\n    \"\\u2581\\u13a0\\u13c2\\u13b6\\u13cf\\u13d9\": 11364,\n    \"\\u13d7\\u13d2\\u13c5\": 11365,\n    \"\\u13c1\\u13b5\\u13d9\\u13b8\": 11366,\n    \"\\u13a6\\u13f0\\u13c3\": 11367,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13a6\": 11368,\n    \"\\u13c2\\u13d4\\u13f2\\u13b4\": 11369,\n    \"\\u2581\\u13e7\\u13b5\\u13cd\\u13da\": 11370,\n    \"\\u13a6\\u13c3\\u13e5\": 11371,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d8\\u13f0\": 11372,\n    \"\\u2581\\u13ac\\u13d4\\u13c5\": 11373,\n    \"\\u13e5\\u13c1\\u13e4\\u13b8\\u13af\": 11374,\n    \"\\u2581\\u13e5\\u13c2\\u13e8\": 11375,\n    \"\\u2581\\u13e7\\u13ab\\u13f4\": 11376,\n    \"\\u13e4\\u13b5\\u13a6\\u13ef\": 11377,\n    \"\\u13a7\\u13be\\u13e9\\u13d7\\u13d9\": 11378,\n    \"\\u13a9\\u13a1\\u13d7\": 11379,\n    \"\\u13a1\\u13ae\": 11380,\n    \"\\u2581\\u13d5\\u13e7\\u13aa\\u13d7\\u13cd\": 11381,\n    \"\\u13e7\\u13e3\": 11382,\n    \"\\u2581\\u13f4\\u13d3\\u13a6\": 11383,\n    \"\\u13be\\u13a6\\u13d4\\u13b2\\u13cd\\u13ac\": 11384,\n    \"\\u2581\\u13a8\\u13aa\": 11385,\n    \"\\u13e6\\u13f1\": 11386,\n    \"\\u13d3\\u13d1\\u13f4\\u13a2\": 11387,\n    \"\\u13de\\u13e4\": 11388,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13d7\": 11389,\n    \"\\u13d3\\u13a8\\u13db\": 11390,\n    \"pi\": 11391,\n    \"\\u13ef\\u13d6\\u13c3\": 11392,\n    \"\\u13ce\\u13b5\\u13d9\": 11393,\n    \"\\u13f4\\u13ad\\u13a6\": 11394,\n    \"\\u2581\\u13de\\u13a6\\u13c9\": 11395,\n    \"\\u13e3\\u13c1\\u13b5\": 11396,\n    \"\\u13c3\\u13af\\u13cf\": 11397,\n    \"\\u13db\\u13db\\u13c5\\u13a9\": 11398,\n    \"\\u2581\\u13e3\\u13d5\": 11399,\n    \"\\u13f2\\u13a6\\u13d8\": 11400,\n    \"\\u13be\\u13c1\\u13cd\\u13a8\\u13d7\": 11401,\n    \"\\u13d3\\u13e5\\u13a9\\u13cf\": 11402,\n    \"\\u2581\\u13a0\\u13a7\\u13d4\": 11403,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13af\\u13cd\\u13d4\": 11404,\n    \"\\u13b5\\u13d9\\u13ae\\u13cd\\u13d7\": 11405,\n    \"\\u2581\\u13ac\\u13ed\\u13af\\u13cd\\u13d7\\u13cd\": 11406,\n    \"\\u13e5\\u13e9\\u13db\\u13d3\": 11407,\n    \"\\u13e8\\u13c9\": 11408,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13e9\\u13db\": 11409,\n    \"\\u2581\\u13d3\\u13a6\\u13c2\": 11410,\n    \"\\u2581\\u13ef\\u13a6\\u13b5\": 11411,\n    \"\\u13d7\\u13e4\\u13be\": 11412,\n    \"\\u13b5\\u13d7\": 11413,\n    \"\\u2581\\u13e5\\u13a8\\u13e3\": 11414,\n    \"\\u13be\\u13ef\": 11415,\n    \"\\u13b5\\u13a5\\u13c2\\u13b5\": 11416,\n    \"\\u13d3\\u13c2\\u13b8\\u13a6\": 11417,\n    \"\\u13b7\\u13af\\u13cd\\u13d3\\u13c1\": 11418,\n    \"\\u13d3\\u13b4\\u13c5\\u13d3\": 11419,\n    \"\\u13cf\\u13be\\u13cf\": 11420,\n    \"\\u13a1\\u13b2\": 11421,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13d7\\u13cd\": 11422,\n    \"\\u13aa\\u13b8\\u13d2\": 11423,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13c1\\u13b3\": 11424,\n    \"\\u13c2\\u13f2\": 11425,\n    \"\\u2581\\u13a4\\u13d3\\u13be\": 11426,\n    \"\\u13be\\u13d5\\u13aa\": 11427,\n    \"\\u13aa\\u13ce\\u13ae\\u13cd\\u13d7\": 11428,\n    \"\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d3\": 11429,\n    \"\\u13e9\\u13d8\\u13cd\\u13ac\": 11430,\n    \"\\u13e9\\u13c1\\u13b2\": 11431,\n    \"\\u2581\\u13d7\\u13c6\\u13d3\": 11432,\n    \"\\u13d1\\u13b4\\u13d7\": 11433,\n    \"\\u13c3\\u13f4\\u13ac\": 11434,\n    \"\\u2581\\u13d7\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\": 11435,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13b5\\u13cd\": 11436,\n    \"\\u13e9\\u13af\\u13ce\\u13b4\\u13a2\": 11437,\n    \"\\u2581\\u13f3\\u13be\\u13d7\\u13c5\": 11438,\n    \"\\u13b6\\u13c2\": 11439,\n    \"\\u2581\\u13d3\\u13c2\\u13c5\": 11440,\n    \"\\u13ac\\u13e9\\u13c2\": 11441,\n    \"\\u13b6\\u13cd\\u13a8\\u13cd\\u13d7\": 11442,\n    \"\\u13c1\\u13b5\\u13cd\\u13a8\": 11443,\n    \"\\u2581\\u13a4\\u13c2\\u13b6\\u13af\\u13cd\\u13d7\": 11444,\n    \"\\u13a6\\u13d8\\u13f0\\u13cd\\u13d7\": 11445,\n    \"\\u13ed\\u13be\": 11446,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d7\": 11447,\n    \"\\u13a6\\u13d8\\u13ef\": 11448,\n    \"\\u13c6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\": 11449,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13b5\": 11450,\n    \"\\u2581\\u13e5\\u13ef\\u13d3\\u13c5\\u13d6\\u13cd\": 11451,\n    \"\\u13e9\\u13d0\": 11452,\n    \"\\u2581\\u13a3\\u13c6\": 11453,\n    \"\\u2581\\u13a4\\u13b5\\u13cf\": 11454,\n    \"\\u2581\\u13e7\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 11455,\n    \"\\u13b3\\u13d1\\u13b6\": 11456,\n    \"\\u13b4\\u13a6\": 11457,\n    \"\\u13ec\\u13a5\\u13a2\": 11458,\n    \"\\u13a7\\u13c5\\u13a9\": 11459,\n    \"\\u2581\\u13a4\\u13d2\\u13b4\": 11460,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13c3\\u13ae\": 11461,\n    \"\\u13e5\\u13aa\\u13a5\": 11462,\n    \"\\u2581\\u13a2\\u13e3\\u13cd\\u13d7\": 11463,\n    \"\\u13a9\\u13c2\\u13c6\\u13d8\\u13af\": 11464,\n    \"\\u13f4\\u13e2\": 11465,\n    \"\\u13d1\\u13f0\\u13d2\\u13a2\": 11466,\n    \"\\u13e3\\u13db\\u13c1\\u13b5\": 11467,\n    \"\\u13be\\u13d7\\u13c5\": 11468,\n    \"\\u13d3\\u13c5\\u13d2\\u13ad\": 11469,\n    \"\\u13a6\\u13b5\\u13f1\": 11470,\n    \"\\u13f0\\u13b8\\u13be\\u13c1\\u13d7\": 11471,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 11472,\n    \"\\u13e9\\u13d5\\u13a8\": 11473,\n    \"\\u2581\\u13dd\\u13f0\": 11474,\n    \"\\u2581\\u13f3\\u13d4\\u13f2\\u13ce\": 11475,\n    \"\\u13d2\\u13d7\\u13cd\\u13ac\": 11476,\n    \"\\u13e6\\u13af\\u13f3\\u13b2\\u13cd\\u13a6\": 11477,\n    \"\\u2581\\u13f3\\u13be\\u13da\\u13b5\": 11478,\n    \"\\u2581\\u13f1\\u13e5\\u13f2\\u13cd\": 11479,\n    \"\\u13d5\\u13d8\\u13f4\\u13db\": 11480,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13eb\\u13cd\": 11481,\n    \"\\u13d7\\u13d5\\u13ac\\u13a2\": 11482,\n    \"\\u13ef\\u13a6\\u13d4\\u13c2\": 11483,\n    \"\\u13c2\\u13b0\": 11484,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13e4\\u13b8\": 11485,\n    \"\\u13ab\\u13cf\": 11486,\n    \"\\u13d8\\u13c3\\u13af\\u13cf\": 11487,\n    \"\\u13cd\\u13a6\\u13c5\\u13aa\\u13a2\": 11488,\n    \"\\u2581\\u13be\\u13a6\": 11489,\n    \"\\u13d6\\u13b3\\u13d7\": 11490,\n    \"\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 11491,\n    \"\\u2581\\u13e7\\u13c3\\u13af\\u13f3\": 11492,\n    \"\\u2581\\u13eb\\u13d3\\u13ef\\u13c2\\u13cd\": 11493,\n    \"\\u13ef\\u13a9\\u13cd\\u13ac\": 11494,\n    \"\\u13d7\\u13eb\\u13ce\\u13d7\": 11495,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13ac\\u13a2\": 11496,\n    \"\\u13d0\\u13ef\\u13cd\\u13d7\": 11497,\n    \"\\u13d3\\u13c5\\u13a1\\u13d7\\u13f1\": 11498,\n    \"\\u13d3\\u13a4\\u13a6\": 11499,\n    \"\\u13d0\\u13b8\": 11500,\n    \"\\u2581\\u13e7\\u13ec\\u13ce\": 11501,\n    \"\\u13b5\\u13aa\\u13d4\\u13c5\": 11502,\n    \"\\u13a7\\u13b3\": 11503,\n    \"\\u13db\\u13d4\\u13c1\": 11504,\n    \"\\u13c2\\u13a9\\u13cf\": 11505,\n    \"\\u13cf\\u13c3\\u13b4\": 11506,\n    \"\\u13ad\\u13b7\\u13a8\": 11507,\n    \"\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 11508,\n    \"\\u13b5\\u13d6\\u13b8\\u13b2\\u13cd\\u13a6\": 11509,\n    \"\\u13e9\\u13db\\u13a1\\u13ae\": 11510,\n    \"\\u13c2\\u13ef\\u13cd\\u13d7\": 11511,\n    \"\\u13ea\\u13cd\\u13d7\\u13f1\": 11512,\n    \"\\u13b8\\u13c5\\u13a9\": 11513,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\": 11514,\n    \"\\u13bc\\u13cf\": 11515,\n    \"\\u13d3\\u13a9\\u13c5\": 11516,\n    \"\\u13d3\\u13df\\u13f4\": 11517,\n    \"\\u2581\\u13e5\\u13a6\\u13b3\": 11518,\n    \"\\u2581\\u13f3\\u13c2\\u13c1\": 11519,\n    \"\\u2581\\u13e7\\u13b6\": 11520,\n    \"\\u13ea\\u13b6\": 11521,\n    \"\\u13a8\\u13f3\\u13d2\\u13be\": 11522,\n    \"\\u13c1\\u13b5\\u13cd\\u13aa\": 11523,\n    \"\\u13b5\\u13cd\\u13d4\\u13c1\\u13d7\": 11524,\n    \"\\u2581\\u13a4\\u13b4\\u13be\": 11525,\n    \"\\u13b3\\u13c3\": 11526,\n    \"\\u2581\\u13f1\\u13a8\\u13a6\": 11527,\n    \"\\u13e0\\u13ce\": 11528,\n    \"\\u2581\\u13a0\\u13c2\\u13b6\\u13cd\\u13a8\": 11529,\n    \"\\u2581\\u13c2\\u13d5\\u13a4\\u13cd\": 11530,\n    \"\\u13ec\\u13ef\\u13c1\\u13ce\\u13a2\": 11531,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13af\": 11532,\n    \"\\u13d5\\u13ef\\u13d9\\u13d3\": 11533,\n    \"\\u13e3\\u13c5\\u13d4\": 11534,\n    \"\\u13e1\\u13d7\\u13ad\": 11535,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 11536,\n    \"\\u13d9\\u13bb\": 11537,\n    \"\\u13cd\\u13c6\\u13d7\\u13cd\\u13d7\": 11538,\n    \"\\u2581\\u13da\\u13db\": 11539,\n    \"\\u2581\\u13a0\\u13a9\\u13ef\": 11540,\n    \"\\u2581\\u13a2\\u13be\\u13af\": 11541,\n    \"\\u13b4\\u13b2\\u13cd\\u13ac\\u13a9\": 11542,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13cd\\u13d4\\u13f4\": 11543,\n    \"\\u2581\\u13d5\\u13a6\\u13e5\": 11544,\n    \"\\u13b5\\u13cd\\u13d4\\u13f4\\u13be\": 11545,\n    \"\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\\u13aa\\u13a2\": 11546,\n    \"\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 11547,\n    \"\\u2581\\u13f1\\u13e3\\u13db\\u13d3\\u13cd\\u13d4\": 11548,\n    \"\\u13c8\\u13f4\": 11549,\n    \"\\u13c2\\u13b6\\u13d2\\u13af\": 11550,\n    \"\\u13d7\\u13e5\\u13c2\\u13f4\": 11551,\n    \"\\u13e4\\u13b2\\u13be\": 11552,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13da\": 11553,\n    \"\\u13c4\\u13d9\\u13ac\": 11554,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13d3\": 11555,\n    \"\\u13b5\\u13aa\\u13b2\": 11556,\n    \"\\u2581\\u13a0\\u13bf\\u13ec\": 11557,\n    \"\\u2581\\u13c2\\u13d9\\u13d3\": 11558,\n    \"\\u13c4\\u13e3\": 11559,\n    \"\\u13c2\\u13aa\\u13e9\\u13db\": 11560,\n    \"\\u13d8\\u13d2\\u13b4\\u13a2\": 11561,\n    \"\\u13f2\\u13cd\\u13d9\\u13d3\\u13c1\\u13b8\\u13a9\": 11562,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13da\": 11563,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d4\\u13c1\": 11564,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 11565,\n    \"\\u2581\\u13a4\\u13d3\\u13e6\": 11566,\n    \"\\u13be\\u13d7\\u13be\": 11567,\n    \"\\u13f1\\u13d9\": 11568,\n    \"\\u13aa\\u13af\\u13f3\\u13d7\\u13f1\": 11569,\n    \"\\u2581\\u13a5\\u13a0\\u13a9\": 11570,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13c2\": 11571,\n    \"\\u2581\\u13eb\\u13da\\u13c3\\u13c1\": 11572,\n    \"\\u13d5\\u13ef\\u13d9\\u13d7\\u13ad\": 11573,\n    \"\\u13ae\\u13b4\\u13a2\": 11574,\n    \"\\u13c2\\u13e9\\u13db\\u13af\\u13d9\": 11575,\n    \"\\u13b6\\u13d2\\u13af\": 11576,\n    \"\\u13db\\u13d3\\u13cd\\u13d4\\u13c5\": 11577,\n    \"\\u13f2\\u13cf\\u13cd\\u13a8\\u13a2\": 11578,\n    \"\\u13d7\\u13a6\\u13d4\\u13ad\": 11579,\n    \"\\u2581\\u13d8\\u13cf\": 11580,\n    \"\\u13d6\\u13c6\\u13b6\\u13af\": 11581,\n    \"\\u13cd\\u13d3\\u13a5\": 11582,\n    \"\\u2581\\u13d7\\u13e0\\u13af\\u13cd\": 11583,\n    \"lo\": 11584,\n    \"\\u2581\\u13a3\\u13cd\\u13d5\\u13d9\": 11585,\n    \"\\u13e2\\u13d4\": 11586,\n    \"\\u2581\\u13a0\\u13af\\u13ef\": 11587,\n    \"\\u13b4\\u13c9\": 11588,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13cd\": 11589,\n    \"\\u2581\\u13e3\\u13d3\\u13c5\\u13a6\\u13b8\": 11590,\n    \"\\u13d7\\u13cd\\u13a6\\u13b3\": 11591,\n    \"\\u13ef\\u13a6\\u13bf\\u13c5\": 11592,\n    \"\\u2581\\u13e3\\u13c1\\u13e4\": 11593,\n    \"\\u13c4\\u13aa\\u13ac\\u13a2\": 11594,\n    \"\\u13a0\\u13f0\\u13b8\": 11595,\n    \"\\u13b5\\u13cd\\u13d9\": 11596,\n    \"\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d9\\u13d7\": 11597,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13d3\": 11598,\n    \"\\u2581\\u13eb\\u13e5\\u13c2\": 11599,\n    \"\\u2581\\u13d3\\u13f3\\u13be\": 11600,\n    \"\\u13c2\\u13f2\\u13b8\": 11601,\n    \"\\u13e5\\u13f3\": 11602,\n    \"\\u2581\\u13a2\\u13e5\\u13b6\\u13c1\": 11603,\n    \"\\u2581\\u13ac\\u13e9\\u13b8\\u13c9\\u13d7\": 11604,\n    \"\\u2581\\u13d5\\u13e3\\u13b8\": 11605,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\": 11606,\n    \"\\u13c3\\u13a9\\u13cd\\u13d4\\u13c2\": 11607,\n    \"\\u13c2\\u13cd\\u13d9\\u13d7\\u13f1\": 11608,\n    \"\\u13da\\u13be\\u13db\": 11609,\n    \"\\u13cc\\u13b4\\u13d3\": 11610,\n    \"\\u13a6\\u13d8\\u13f0\": 11611,\n    \"\\u13e5\\u13b8\\u13af\": 11612,\n    \"\\u13d3\\u13d4\\u13b6\\u13af\\u13cd\\u13d7\": 11613,\n    \"\\u13da\\u13d3\\u13b3\": 11614,\n    \"\\u13aa\\u13e9\\u13d8\\u13cd\\u13aa\\u13a2\": 11615,\n    \"\\u13ae\\u13b5\\u13cd\\u13ac\\u13c9\": 11616,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13d3\\u13cd\": 11617,\n    \"\\u2581\\u13e3\\u13cd\\u13d5\\u13b8\": 11618,\n    \"\\u13af\\u13b6\\u13a5\": 11619,\n    \"\\u13b5\\u13cf\\u13c5\\u13d3\": 11620,\n    \"\\u13f0\\u13b8\\u13c1\": 11621,\n    \"\\u13ef\\u13ca\": 11622,\n    \"\\u2581\\u13d7\\u13e5\\u13f2\\u13af\": 11623,\n    \"\\u2581\\u13d7\\u13a6\\u13d4\": 11624,\n    \"\\u13ee\\u13a9\": 11625,\n    \"\\u13b6\\u13b8\\u13af\": 11626,\n    \"\\u13e3\\u13d3\\u13d1\\u13ef\": 11627,\n    \"\\u2581\\u13e5\\u13c3\\u13ae\": 11628,\n    \"\\u2581\\u13e7\\u13c2\\u13b8\\u13c9\\u13d7\": 11629,\n    \"\\u13c2\\u13ec\\u13c2\\u13ad\": 11630,\n    \"\\u2581\\u13a5\\u13ac\": 11631,\n    \"\\u13d3\\u13d2\\u13c2\": 11632,\n    \"\\u13be\\u13b4\\u13d7\": 11633,\n    \"\\u13e9\\u13d8\\u13cd\\u13aa\": 11634,\n    \"\\u2581\\u13db\\u13a4\": 11635,\n    \"\\u13cd\\u13d5\\u13b8\\u13a1\\u13d7\\u13f1\": 11636,\n    \"\\u2581\\u13a4\\u13b5\\u13aa\": 11637,\n    \"\\u13c5\\u13d6\": 11638,\n    \"\\u2581\\u13f3\\u13d9\": 11639,\n    \"\\u2581\\u13a0\\u13e2\\u13c8\\u13cd\": 11640,\n    \"\\u13e5\\u13f2\\u13b5\\u13ad\": 11641,\n    \"\\u2581\\u13c2\\u13cd\\u13a9\\u13f4\": 11642,\n    \"\\u2581\\u13a1\\u13e6\\u13a2\\u13f3\": 11643,\n    \"\\u2581\\u13a2\\u13d5\\u13d9\": 11644,\n    \"\\u2581\\u13dd\\u13c9\": 11645,\n    \"\\u13b5\\u13a5\\u13c2\\u13b8\\u13a9\": 11646,\n    \"\\u2581\\u13f1\\u13aa\\u13af\": 11647,\n    \"\\u13e9\\u13db\\u13d4\\u13c5\": 11648,\n    \"\\u13a9\\u13c2\\u13f4\\u13ce\\u13cd\\u13d7\": 11649,\n    \"\\u2581\\u13e7\\u13e2\\u13d7\": 11650,\n    \"\\u13df\\u13f4\\u13d7\": 11651,\n    \"\\u13f0\\u13b8\\u13d2\\u13a9\": 11652,\n    \"\\u13e3\\u13a6\\u13b8\\u13ae\": 11653,\n    \"\\u13cd\\u13da\\u13ae\\u13a2\": 11654,\n    \"\\u13d4\\u13b2\\u13be\": 11655,\n    \"\\u13e9\\u13d7\\u13d2\": 11656,\n    \"\\u2581\\u13d9\\u13cd\\u13d7\": 11657,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d5\\u13b8\\u13d7\": 11658,\n    \"\\u13e3\\u13a7\\u13c2\\u13cd\\u13ac\": 11659,\n    \"\\u2581\\u13da\\u13a6\\u13d4\": 11660,\n    \"\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 11661,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13aa\\u13b8\": 11662,\n    \"\\u13e2\\u13d7\\u13cd\\u13a8\": 11663,\n    \"\\u2581\\u13a6\\u13b3\": 11664,\n    \"\\u13d8\\u13cd\\u13a8\": 11665,\n    \"\\u2581\\u13a4\\u13e9\\u13d9\\u13d7\": 11666,\n    \"\\u2581\\u13d3\\u13e5\\u13ef\\u13db\": 11667,\n    \"\\u13b8\\u13b2\": 11668,\n    \"\\u13e5\\u13cd\\u13a6\\u13c5\\u13e4\\u13b8\": 11669,\n    \"\\u2581\\u13a2\\u13e5\\u13ef\\u13c5\": 11670,\n    \"la\": 11671,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13b8\": 11672,\n    \"\\u13f2\\u13af\\u13ce\\u13b4\\u13a2\": 11673,\n    \"\\u13d9\\u13af\\u13f3\\u13ae\": 11674,\n    \"\\u2581\\u13e5\\u13aa\\u13e9\\u13d8\": 11675,\n    \"\\u13be\\u13d3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 11676,\n    \"\\u13c4\\u13c2\": 11677,\n    \"\\u2581\\u13ef\\u13c6\\u13d3\\u13c5\\u13d4\": 11678,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13db\\u13c1\": 11679,\n    \"\\u13c8\\u13b5\": 11680,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\": 11681,\n    \"\\u13c2\\u13f2\\u13af\\u13cd\\u13d9\\u13d7\": 11682,\n    \"\\u2581\\u13a4\\u13d5\\u13d8\": 11683,\n    \"\\u13a7\\u13bf\\u13c5\\u13a9\": 11684,\n    \"\\u13d7\\u13d9\\u13b5\\u13a9\": 11685,\n    \"\\u2581\\u13eb\\u13d7\\u13a8\": 11686,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a6\": 11687,\n    \"\\u13d3\\u13e5\\u13e9\\u13db\\u13af\\u13c3\": 11688,\n    \"\\u2581\\u13d7\\u13b7\": 11689,\n    \"\\u13b8\\u13c5\\u13ad\": 11690,\n    \"\\u13a6\\u13d6\\u13c3\\u13ad\": 11691,\n    \"\\u2581\\u13e7\\u13d3\\u13c5\\u13d6\": 11692,\n    \"\\u2581\\u13e7\\u13d4\": 11693,\n    \"\\u13cd\\u13a9\\u13b3\": 11694,\n    \"\\u13d7\\u13c5\\u13ce\": 11695,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 11696,\n    \"\\u2581\\u13da\\u13a7\\u13c1\": 11697,\n    \"\\u13a9\\u13b5\\u13f2\\u13ac\\u13a2\": 11698,\n    \"\\u2581\\u13d3\\u13c2\\u13c1\": 11699,\n    \"\\u13e3\\u13c5\\u13d3\\u13d7\\u13cd\": 11700,\n    \"\\u2581\\u13a4\\u13c3\\u13af\": 11701,\n    \"\\u2581\\u13a4\\u13cf\\u13b3\\u13db\": 11702,\n    \"\\u2581\\u13a0\\u13e6\": 11703,\n    \"\\u13d3\\u13c2\\u13b8\\u13aa\\u13a2\": 11704,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b4\": 11705,\n    \"\\u13be\\u13d9\\u13b4\\u13c6\\u13cd\\u13ac\": 11706,\n    \"\\u13cc\\u13b3\\u13d9\\u13d7\": 11707,\n    \"\\u13a9\\u13b8\\u13c9\\u13d4\\u13c5\": 11708,\n    \"\\u2581\\u13a0\\u13d4\\u13f2\\u13af\": 11709,\n    \"\\u13c4\\u13aa\\u13e5\": 11710,\n    \"\\u13b5\\u13ae\\u13b5\\u13e8\\u13af\": 11711,\n    \"\\u13ea\\u13b5\": 11712,\n    \"\\u13c2\\u13d7\\u13cd\\u13d7\": 11713,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13a1\": 11714,\n    \"\\u13b3\\u13cd\\u13d3\\u13b8\": 11715,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13b0\": 11716,\n    \"\\u2581\\u13a4\\u13b4\\u13eb\\u13cd\": 11717,\n    \"\\u2581\\u13d5\\u13af\\u13ef\": 11718,\n    \"\\u13d2\\u13b8\\u13a9\": 11719,\n    \"\\u13d8\\u13cd\\u13aa\": 11720,\n    \"\\u13a6\\u13d8\\u13d7\": 11721,\n    \"\\u2581\\u13a4\\u13e5\\u13cd\\u13d3\": 11722,\n    \"\\u2581\\u13a0\\u13b5\\u13d6\\u13b8\\u13ae\\u13cd\": 11723,\n    \"\\u2581\\u13a0\\u13c1\\u13cd\\u13a8\": 11724,\n    \"\\u13e6\\u13af\\u13f3\\u13c5\": 11725,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d7\": 11726,\n    \"\\u13c2\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13a2\": 11727,\n    \"\\u13d5\\u13b2\\u13a6\": 11728,\n    \"\\u2581\\u13a0\\u13d1\\u13f0\\u13cd\": 11729,\n    \"\\u13b8\\u13aa\\u13eb\\u13cd\": 11730,\n    \"\\u2581\\u13a3\\u13a9\\u13cd\\u13db\\u13d7\\u13cd\": 11731,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13a6\": 11732,\n    \"\\u2581\\u13dc\": 11733,\n    \"\\u2581\\u13da\\u13c2\\u13da\": 11734,\n    \"\\u13aa\\u13e9\": 11735,\n    \"\\u13d3\\u13ea\\u13b5\\u13a9\\u13cd\": 11736,\n    \"\\u13f2\\u13b5\\u13a6\": 11737,\n    \"\\u13a4\\u13c5\\u13ce\": 11738,\n    \"\\u13c2\\u13a9\\u13d2\\u13a9\": 11739,\n    \"\\u13d3\\u13c5\\u13b5\\u13f0\": 11740,\n    \"\\u2581\\u13a0\\u13a9\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\": 11741,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d6\\u13c3\": 11742,\n    \"\\u13af\\u13f4\\u13c1\\u13b8\": 11743,\n    \"\\u2581\\u13a1\\u13e5\\u13c4\\u13aa\": 11744,\n    \"\\u13a2\\u13a6\\u13da\\u13a9\": 11745,\n    \"\\u2581\\u13db\\u13db\": 11746,\n    \"\\u2581\\u13a2\\u13e4\\u13ef\\u13d4\": 11747,\n    \"\\u2581\\u13be\\u13cb\\u13c1\": 11748,\n    \"\\u13e5\\u13f2\\u13ad\": 11749,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13af\": 11750,\n    \"\\u2581\\u13a0\\u13e1\\u13d7\\u13cd\": 11751,\n    \"\\u13e9\\u13db\\u13db\": 11752,\n    \"\\u2581\\u13a3\\u13a9\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\": 11753,\n    \"\\u2581\\u13d3\\u13a8\\u13e5\": 11754,\n    \"\\u13b8\\u13a1\\u13b4\": 11755,\n    \"\\u2581\\u13e5\\u13a7\\u13c1\\u13a2\\u13cd\\u13d7\": 11756,\n    \"\\u2581\\u13a9\\u13a6\\u13a8\\u13c3\": 11757,\n    \"\\u2581\\u13d3\\u13c2\\u13b3\\u13eb\": 11758,\n    \"\\u13d3\\u13d8\\u13be\\u13a5\": 11759,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\\u13f1\": 11760,\n    \"\\u13a0\\u13e7\": 11761,\n    \"\\u13e5\\u13ec\\u13c1\\u13d9\\u13d7\": 11762,\n    \"\\u13c2\\u13a8\\u13f4\": 11763,\n    \"\\u13f0\\u13b5\\u13d2\": 11764,\n    \"\\u2581\\u13d5\\u13aa\\u13e2\": 11765,\n    \"\\u2581\\u13e5\\u13c2\\u13e3\\u13b5\\u13cd\": 11766,\n    \"\\u13c6\\u13d9\": 11767,\n    \"\\u2581\\u13a2\\u13ef\\u13a6\": 11768,\n    \"\\u2581\\u13a2\\u13f3\\u13c5\\u13c1\": 11769,\n    \"\\u13a6\\u13ef\\u13b7\\u13d7\": 11770,\n    \"\\u13b6\\u13cd\\u13aa\": 11771,\n    \"\\u13e8\\u13cd\\u13d7\": 11772,\n    \"\\u13c1\\u13a2\\u13cd\\u13d3\": 11773,\n    \"\\u2581\\u13e7\\u13ed\\u13d3\\u13b4\": 11774,\n    \"\\u13d3\\u13cd\\u13a6\\u13a8\\u13cd\\u13d7\": 11775,\n    \"\\u2581\\u13d5\\u13cd\\u13a9\\u13ef\": 11776,\n    \"\\u2581\\u13a2\\u13ef\\u13e5\": 11777,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\": 11778,\n    \"\\u13c2\\u13cd\\u13d4\\u13c5\": 11779,\n    \"\\u13b7\\u13e8\\u13af\": 11780,\n    \"\\u2581\\u13e7\\u13b4\\u13d7\": 11781,\n    \"\\u13d3\\u13be\\u13cc\\u13b2\\u13cd\\u13a9\": 11782,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\\u13a2\": 11783,\n    \"\\u13eb\\u13d2\\u13c5\": 11784,\n    \"\\u13f4\\u13c5\": 11785,\n    \"----\": 11786,\n    \"\\u2581\\u13ef\\u13c2\\u13b8\\u13c9\": 11787,\n    \"\\u13a6\\u13d3\\u13a1\": 11788,\n    \"\\u2581\\u13a4\\u13aa\\u13af\": 11789,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13ac\": 11790,\n    \"\\u13d9\\u13b5\\u13cd\\u13d7\\u13f1\": 11791,\n    \"\\u13e5\\u13cd\\u13ac\": 11792,\n    \"\\u13a6\\u13c5\\u13be\": 11793,\n    \"\\u2581\\u13e9\\u13c2\\u13f4\": 11794,\n    \"\\u13d3\\u13db\\u13a2\": 11795,\n    \"\\u2581\\u13a4\\u13cf\\u13d4\\u13d5\": 11796,\n    \"\\u13db\\u13d7\\u13d5\\u13ac\": 11797,\n    \"\\u2581\\u13ac\\u13e9\\u13ef\\u13eb\": 11798,\n    \"\\u2581\\u13e5\\u13eb\\u13ac\": 11799,\n    \"\\u2581\\u13af\\u13f0\": 11800,\n    \"\\u2581\\u13a4\\u13d3\\u13aa\\u13be\\u13db\": 11801,\n    \"\\u13b4\\u13b2\\u13cd\\u13a6\": 11802,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13ae\\u13b5\\u13d9\": 11803,\n    \"\\u13cd\\u13c6\\u13d3\\u13c3\": 11804,\n    \"\\u13f3\\u13e8\": 11805,\n    \"\\u13d1\\u13a6\\u13b8\": 11806,\n    \"\\u13d2\\u13a6\\u13b6\\u13d7\": 11807,\n    \"\\u2581\\u13a4\\u13b5\\u13d6\\u13b8\\u13c2\": 11808,\n    \"\\u13ac\\u13e9\\u13db\\u13d7\": 11809,\n    \"\\u13d3\\u13d6\\u13b8\\u13ae\\u13cd\": 11810,\n    \"\\u13e9\\u13d8\\u13c3\": 11811,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\\u13d7\\u13f3\\u13cd\\u13a9\\u13c2\": 11812,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13b5\\u13e5\\u13d9\\u13c1\": 11813,\n    \"\\u2581\\u13d3\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13ae\": 11814,\n    \"\\u13c2\\u13c6\\u13d8\\u13b2\": 11815,\n    \"\\u2581\\u13e9\\u13d3\": 11816,\n    \"\\u13cc\\u13d9\\u13f0\": 11817,\n    \"\\u13a6\\u13b5\\u13cd\\u13a8\\u13a2\": 11818,\n    \"\\u2581\\u13a1\\u13e3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\": 11819,\n    \"\\u13ea\\u13ce\": 11820,\n    \"\\u13af\\u13d0\": 11821,\n    \"\\u13c1\\u13a2\\u13cd\\u13d3\\u13c1\\u13ad\": 11822,\n    \"\\u13cd\\u13da\\u13df\": 11823,\n    \"\\u13b5\\u13c2\\u13ac\\u13ac\": 11824,\n    \"\\u13f2\\u13cd\\u13d9\\u13d3\": 11825,\n    \"\\u2581\\u13f3\\u13d5\\u13b6\\u13b0\": 11826,\n    \"\\u2581\\u13e7\\u13be\\u13c1\\u13cd\\u13a8\": 11827,\n    \"\\u13ef\\u13c5\\u13ae\": 11828,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13a9\": 11829,\n    \"\\u13b1\\u13c1\": 11830,\n    \"\\u2581\\u13da\\u13be\\u13d5\": 11831,\n    \"\\u13c4\\u13aa\\u13eb\\u13ce\": 11832,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\": 11833,\n    \"\\u13f3\\u13e9\\u13c2\": 11834,\n    \"\\u2581\\u13a2\\u13a6\\u13da\\u13d3\\u13b4\\u13cd\": 11835,\n    \"\\u13cf\\u13d4\\u13d5\\u13a2\": 11836,\n    \"\\u13b6\\u13a9\": 11837,\n    \"\\u2581\\u13a2\\u13d9\\u13af\\u13f3\\u13b2\\u13cd\": 11838,\n    \"\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\\u13a9\": 11839,\n    \"\\u13c2\\u13a8\\u13f3\\u13af\": 11840,\n    \"\\u13e3\\u13db\\u13a6\\u13c1\": 11841,\n    \"\\u2581\\u13d3\\u13d7\": 11842,\n    \"\\u13b6\\u13a2\\u13cd\\u13d7\\u13f1\": 11843,\n    \"\\u2581\\u13a0\\u13db\\u13b5\": 11844,\n    \"\\u13b5\\u13cc\\u13b3\\u13d3\\u13c5\\u13a9\": 11845,\n    \"\\u13a6\\u13d4\\u13b2\\u13d2\\u13a9\": 11846,\n    \"\\u2581\\u13e5\\u13be\\u13c6\": 11847,\n    \"\\u13a0\\u13ef\\u13a8\": 11848,\n    \"\\u13aa\\u13e2\\u13ad\": 11849,\n    \"\\u13c2\\u13b6\\u13cd\\u13a8\\u13cd\\u13d7\": 11850,\n    \"\\u2581\\u13a6\\u13b5\\u13d7\": 11851,\n    \"\\u13cb\\u13c1\\u13b8\\u13a9\": 11852,\n    \"\\u13b5\\u13aa\\u13c1\\u13b8\\u13a9\": 11853,\n    \"\\u13b4\\u13d2\": 11854,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b5\": 11855,\n    \"\\u2581\\u13e7\\u13b7\\u13e4\": 11856,\n    \"\\u13b6\\u13cd\\u13a6\": 11857,\n    \"\\u13cd\\u13d4\\u13c1\\u13b2\": 11858,\n    \"\\u2581\\u13a0\\u13a9\\u13eb\": 11859,\n    \"\\u2581\\u13e5\\u13c5\\u13d2\": 11860,\n    \"\\u13d5\\u13cd\\u13d4\": 11861,\n    \"\\u13d3\\u13ec\\u13a2\": 11862,\n    \"\\u13d3\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13cd\\u13a9\": 11863,\n    \"\\u13dc\\u13cd\\u13db\": 11864,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13c9\": 11865,\n    \"\\u2581\\u13ab\\u13d4\": 11866,\n    \"\\u13e3\\u13b7\\u13e4\\u13b5\": 11867,\n    \"\\u2581\\u13be\\u13f2\": 11868,\n    \"\\u2581\\u13f1\\u13c2\\u13ac\\u13e9\": 11869,\n    \"\\u13da\\u13c2\": 11870,\n    \"\\u2581\\u13e7\\u13e2\": 11871,\n    \"\\u13d8\\u13c3\\u13ae\\u13d7\\u13f1\": 11872,\n    \"\\u2581\\u13e3\\u13d5\\u13b2\\u13cd\": 11873,\n    \"\\u2581\\u13aa\\u13d2\": 11874,\n    \"\\u13c3\\u13ae\\u13b4\\u13a2\": 11875,\n    \"\\u13be\\u13d5\\u13cf\": 11876,\n    \"\\u13d3\\u13b7\\u13b8\": 11877,\n    \"\\u2581\\u13d3\\u13a6\\u13e2\": 11878,\n    \"\\u13cd\\u13c6\\u13b6\": 11879,\n    \"\\u2581\\u13da\\u13be\\u13c1\\u13b6\": 11880,\n    \"\\u13d0\\u13e2\\u13d7\\u13ad\": 11881,\n    \"\\u2581\\u13c4\\u13be\\u13d3\": 11882,\n    \"\\u2581\\u13e7\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\": 11883,\n    \"\\u2581\\u13af\\u13c5\\u13c1\": 11884,\n    \"\\u2581\\u13a2\\u13e3\\u13e0\\u13ef\\u13cd\": 11885,\n    \"\\u13ec\\u13ef\": 11886,\n    \"\\u13cd\\u13aa\\u13ce\": 11887,\n    \"\\u2581\\u13d7\\u13a6\\u13c4\": 11888,\n    \"\\u13c2\\u13b0\\u13a2\": 11889,\n    \"\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 11890,\n    \"\\u2581\\u13d7\\u13e7\\u13aa\\u13d3\": 11891,\n    \"\\u13c2\\u13f4\\u13a9\": 11892,\n    \"\\u2581\\u13a2\\u13a0\\u13d3\": 11893,\n    \"\\u13ef\\u13d3\\u13f1\": 11894,\n    \"\\u13ef\\u13b4\": 11895,\n    \"\\u13d5\\u13b0\\u13cd\\u13a8\\u13cd\\u13d7\": 11896,\n    \"\\u13c5\\u13e9\\u13c5\": 11897,\n    \"\\u13ac\\u13e9\\u13df\": 11898,\n    \"\\u13a9\\u13b3\\u13be\\u13b3\": 11899,\n    \"\\u13c5\\u13cd\\u13aa\\u13a2\": 11900,\n    \"\\u13d3\\u13e3\": 11901,\n    \"\\u13be\\u13dd\\u13be\\u13a5\\u13a2\": 11902,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d7\": 11903,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13c5\\u13df\\u13c9\": 11904,\n    \"\\u2581\\u13be\\u13c2\\u13ea\": 11905,\n    \"\\u2581\\u13c2\\u13a8\\u13e3\": 11906,\n    \"\\u13b1\\u13cd\\u13d5\\u13ce\\u13b8\": 11907,\n    \"\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d4\\u13c5\": 11908,\n    \"\\u13b5\\u13c3\\u13ae\\u13d9\\u13d7\\u13f1\": 11909,\n    \"\\u2581\\u13a0\\u13a9\\u13b6\": 11910,\n    \"\\u13c5\\u13d3\\u13d7\\u13cd\\u13aa\": 11911,\n    \"\\u13e3\\u13d3\\u13c5\\u13a6\\u13b8\\u13db\": 11912,\n    \"\\u13be\\u13c1\\u13b4\": 11913,\n    \"\\u13e5\\u13cd\\u13d5\\u13b8\": 11914,\n    \"\\u13cd\\u13c9\\u13df\\u13a2\": 11915,\n    \"\\u13d3\\u13b7\\u13ef\\u13db\": 11916,\n    \"\\u13d1\\u13f0\\u13ce\\u13a2\": 11917,\n    \"\\u13c3\\u13cd\\u13a9\\u13db\": 11918,\n    \"\\u13e5\\u13c5\\u13c1\\u13d7\": 11919,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\": 11920,\n    \"\\u13cd\\u13c6\\u13b5\\u13ce\": 11921,\n    \"\\u2581\\u13db\\u13be\\u13d3\": 11922,\n    \"\\u2581\\u13d5\\u13a6\\u13e5\\u13ef\": 11923,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13f2\": 11924,\n    \"\\u13c9\\u13d7\\u13cd\\u13ac\": 11925,\n    \"\\u13f2\\u13e4\\u13a2\": 11926,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13cd\": 11927,\n    \"\\u13d1\\u13b4\\u13cd\\u13d7\": 11928,\n    \"\\u2581\\u13a2\\u13ab\": 11929,\n    \"\\u13d5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 11930,\n    \"\\u2581\\u13f1\\u13a6\\u13c5\": 11931,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13cd\": 11932,\n    \"\\u2581\\u13a4\\u13a6\\u13cc\": 11933,\n    \"\\u13a6\\u13d4\\u13be\\u13a2\": 11934,\n    \"\\u2581\\u13a2\\u13e7\\u13b3\\u13ad\\u13c9\": 11935,\n    \"\\u13c5\\u13a2\\u13cd\\u13d7\": 11936,\n    \"\\u13df\\u13b6\\u13a1\\u13b8\": 11937,\n    \"\\u13d3\\u13f0\\u13a8\\u13cd\\u13d7\": 11938,\n    \"\\u13cf\\u13c5\\u13af\": 11939,\n    \"\\u13df\\u13cd\\u13d4\\u13c1\": 11940,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13b8\": 11941,\n    \"\\u13cc\\u13db\\u13a5\\u13cd\\u13ac\": 11942,\n    \"\\u13d7\\u13d4\\u13b2\\u13a9\": 11943,\n    \"\\u13ac\\u13c2\\u13cd\\u13d7\": 11944,\n    \"\\u13cd\\u13a9\\u13d3\\u13d2\\u13a2\": 11945,\n    \"\\u2581\\u13a1\\u13e5\\u13be\\u13f0\\u13cd\": 11946,\n    \"\\u13c2\\u13d2\\u13a9\": 11947,\n    \"\\u13a6\\u13b7\\u13ef\": 11948,\n    \"\\u13d2\\u13b4\\u13a2\": 11949,\n    \"\\u13c1\\u13b5\\u13d2\\u13a2\": 11950,\n    \"\\u2581\\u13e7\\u13e5\\u13cd\": 11951,\n    \"\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 11952,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13a6\": 11953,\n    \"\\u2581\\u13e6\\u13b8\": 11954,\n    \"\\u2581\\u13a4\\u13a6\\u13db\\u13be\": 11955,\n    \"\\u13c2\\u13b4\\u13a2\": 11956,\n    \"\\u13af\\u13cd\\u13d3\\u13c1\\u13af\": 11957,\n    \"\\u2581\\u13d7\\u13d3\\u13be\": 11958,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c1\\u13a2\": 11959,\n    \"\\u2581\\u13da\\u13d3\\u13c2\\u13b8\\u13e4\": 11960,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\": 11961,\n    \"\\u13ef\\u13db\\u13c1\\u13b5\": 11962,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13d5\\u13b6\\u13c6\": 11963,\n    \"\\u13c5\\u13d7\\u13cd\\u13d7\": 11964,\n    \"\\u2581\\u13a8\\u13b6\": 11965,\n    \"\\u13f2\\u13cd\\u13d9\\u13d7\\u13f1\": 11966,\n    \"\\u2581\\u13a0\\u13e2\\u13c6\\u13cd\": 11967,\n    \"\\u13c3\\u13c1\\u13b8\": 11968,\n    \"\\u13c5\\u13ef\": 11969,\n    \"\\u13e6\\u13af\\u13f3\\u13d2\\u13a2\": 11970,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\": 11971,\n    \"\\u13ea\\u13ad\": 11972,\n    \"\\u13c1\\u13b3\\u13a9\\u13c9\": 11973,\n    \"\\u2581\\u13d7\\u13a6\\u13c2\\u13f4\": 11974,\n    \"\\u2581\\u13e7\\u13ac\\u13e9\": 11975,\n    \"\\u2581\\u13f3\\u13e9\\u13db\": 11976,\n    \"\\u2581\\u13d3\\u13a7\\u13bf\": 11977,\n    \"\\u13eb\\u13da\\u13d3\\u13a2\\u13c5\": 11978,\n    \"\\u13ef\\u13d9\\u13e4\\u13ae\\u13cd\\u13d7\": 11979,\n    \"\\u13a6\\u13cc\\u13ec\\u13a2\": 11980,\n    \"\\u13a6\\u13c3\\u13b8\": 11981,\n    \"\\u13f2\\u13cf\\u13cc\": 11982,\n    \"\\u13c4\\u13aa\\u13a2\": 11983,\n    \"\\u2581\\u13a4\\u13d5\\u13d2\": 11984,\n    \"\\u13ef\\u13cd\\u13db\\u13be\": 11985,\n    \"\\u2581\\u13f1\\u13c4\\u13be\\u13db\\u13c1\": 11986,\n    \"\\u13c4\\u13cd\\u13d5\\u13a2\": 11987,\n    \"\\u13e5\\u13ce\\u13aa\\u13a9\": 11988,\n    \"\\u2581\\u13e7\\u13be\\u13b5\\u13aa\": 11989,\n    \"\\u13b4\\u13c2\\u13d9\\u13b8\\u13a2\": 11990,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d7\\u13cd\": 11991,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13db\\u13c1\": 11992,\n    \"\\u13ec\\u13c5\": 11993,\n    \"\\u13da\\u13a8\": 11994,\n    \"\\u13e9\\u13d5\\u13c1\\u13b4\\u13a2\": 11995,\n    \"\\u13c1\\u13df\\u13f4\\u13a1\\u13d7\": 11996,\n    \"\\u13e3\\u13ef\\u13c5\": 11997,\n    \"\\u2581\\u13a4\\u13b8\\u13cc\": 11998,\n    \"\\u2581\\u13e7\\u13d3\\u13c4\": 11999,\n    \"\\u2581\\u13a3\\u13e5\\u13c3\\u13ae\": 12000,\n    \"\\u2581\\u13d3\\u13c1\\u13b6\": 12001,\n    \"\\u13e1\\u13d3\": 12002,\n    \"\\u2581\\u13da\\u13c2\\u13e3\\u13a6\": 12003,\n    \"\\u13d3\\u13c1\\u13b6\": 12004,\n    \"\\u13e9\\u13c2\": 12005,\n    \"\\u13df\\u13cd\\u13d7\\u13cd\\u13aa\\u13a2\": 12006,\n    \"\\u13d4\\u13cd\\u13aa\\u13a2\": 12007,\n    \"\\u13f4\\u13c8\\u13db\": 12008,\n    \"\\u13ef\\u13c5\\u13d3\\u13d7\\u13cd\\u13aa\": 12009,\n    \"\\u13ac\\u13eb\\u13f3\": 12010,\n    \"\\u2581\\u13a4\\u13d4\\u13d5\": 12011,\n    \"\\u2581\\u13f1\\u13eb\\u13e8\": 12012,\n    \"\\u2581\\u13da\\u13ed\\u13aa\\u13d3\\u13c1\": 12013,\n    \"\\u2581\\u13e3\\u13a7\\u13b5\\u13a2\": 12014,\n    \"\\u2581\\u13a4\\u13cd\\u13e2\\u13c2\\u13cd\": 12015,\n    \"\\u13ec\\u13af\\u13f3\\u13c5\": 12016,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13e4\": 12017,\n    \"\\u13af\\u13f3\\u13d2\\u13be\": 12018,\n    \"\\u2581\\u13a4\\u13d3\\u13e0\\u13cd\": 12019,\n    \"\\u2581\\u13ac\\u13ec\\u13ce\": 12020,\n    \"\\u13be\\u13db\\u13c1\\u13d7\\u13f1\": 12021,\n    \"\\u2581\\u13da\\u13df\\u13b6\\u13cd\\u13d3\\u13c1\\u13b4\": 12022,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13a2\": 12023,\n    \"\\u13e5\\u13aa\\u13d7\": 12024,\n    \"\\u13cc\\u13b3\\u13d7\": 12025,\n    \"\\u2581\\u13be\\u13c5\\u13c1\": 12026,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\": 12027,\n    \"\\u13a3\\u13d2\": 12028,\n    \"\\u2581\\u13d5\\u13cd\\u13d3\": 12029,\n    \"\\u13cd\\u13d4\\u13c1\\u13ae\": 12030,\n    \"\\u13b1\\u13cd\\u13d5\": 12031,\n    \"\\u13e3\\u13ac\": 12032,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13e4\": 12033,\n    \"\\u13d8\\u13c3\\u13b5\": 12034,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13d3\": 12035,\n    \"\\u13da\\u13b3\": 12036,\n    \"\\u13f0\\u13b5\\u13d2\\u13a9\": 12037,\n    \"\\u2581\\u13e3\\u13da\\u13d3\\u13b4\": 12038,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\": 12039,\n    \"\\u13cf\\u13d9\\u13b0\": 12040,\n    \"\\u2581\\u13c2\\u13cd\\u13cb\\u13c1\": 12041,\n    \"\\u13df\\u13f4\\u13ae\\u13a2\": 12042,\n    \"\\u13cd\\u13c6\\u13d9\\u13be\": 12043,\n    \"\\u13d4\\u13a9\\u13cd\\u13d7\": 12044,\n    \"\\u13a4\\u13cd\\u13c6\\u13c2\\u13a9\": 12045,\n    \"\\u2581\\u13d5\\u13ab\\u13aa\\u13d7\": 12046,\n    \"\\u2581\\u13c2\\u13cd\\u13a9\\u13ea\\u13ce\": 12047,\n    \"\\u2581\\u13b1\\u13f0\": 12048,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13a1\": 12049,\n    \"\\u2581\\u13a0\\u13f2\\u13de\": 12050,\n    \"\\u2581\\u13a6\\u13f0\\u13e5\\u13d9\": 12051,\n    \"\\u2581\\u13c2\\u13d3\\u13db\": 12052,\n    \"\\u13a7\\u13b5\\u13b5\": 12053,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13bf\\u13eb\\u13cd\": 12054,\n    \"\\u13c1\\u13c5\\u13d2\\u13a9\": 12055,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d5\\u13cd\\u13d4\": 12056,\n    \"\\u2581\\u13a0\\u13d3\\u13c4\\u13d6\\u13f2\": 12057,\n    \"\\u13e3\\u13d3\\u13c2\\u13b8\\u13a9\": 12058,\n    \"\\u2581\\u13da\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 12059,\n    \"\\u2581\\u13a0\\u13c2\\u13cf\\u13be\": 12060,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13cd\\u13a9\\u13c2\": 12061,\n    \"\\u13ac\\u13cd\\u13aa\\u13b8\\u13c1\": 12062,\n    \"\\u13a4\\u13c3\\u13b4\": 12063,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\": 12064,\n    \"\\u13cd\\u13d5\\u13b8\\u13d9\\u13d3\": 12065,\n    \"\\u13cd\\u13da\\u13b8\": 12066,\n    \"\\u2581\\u13da\\u13be\\u13da\\u13eb\\u13cd\": 12067,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13b0\": 12068,\n    \"\\u2581\\u13a2\\u13d3\\u13b4\\u13c2\\u13d9\": 12069,\n    \"\\u2581\\u13e9\\u13ab\": 12070,\n    \"\\u13d3\\u13a6\\u13d8\\u13b4\": 12071,\n    \"\\u13a9\\u13c2\\u13f4\\u13d7\": 12072,\n    \"\\u2581\\u13e5\\u13e9\\u13c2\": 12073,\n    \"\\u13c2\\u13ac\\u13ce\\u13b2\\u13a2\": 12074,\n    \"\\u2581\\u13a4\\u13d5\\u13ef\\u13d9\": 12075,\n    \"\\u2581\\u13a0\\u13ab\\u13ec\": 12076,\n    \"\\u2581\\u13a4\\u13ad\\u13f2\": 12077,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\": 12078,\n    \"\\u13cd\\u13ab\\u13d5\\u13cd\\u13ac\": 12079,\n    \"\\u2581\\u13d7\\u13e9\\u13be\\u13a6\\u13b3\": 12080,\n    \"\\u13ab\\u13d3\\u13b4\\u13cf\": 12081,\n    \"\\u13bf\\u13e9\\u13d7\\u13d2\": 12082,\n    \"\\u2581\\u13a1\\u13cd\\u13d3\": 12083,\n    \"\\u13ad\\u13f2\\u13ae\": 12084,\n    \"\\u13d6\\u13b3\\u13d5\": 12085,\n    \"\\u13f2\\u13ce\\u13b2\\u13a9\": 12086,\n    \"\\u13cd\\u13d7\\u13f0\\u13d5\": 12087,\n    \"\\u2581\\u13d3\\u13a6\\u13db\": 12088,\n    \"\\u13c4\\u13cd\\u13d5\": 12089,\n    \"\\u2581\\u13d3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\": 12090,\n    \"\\u13d1\\u13b4\\u13a5\": 12091,\n    \"\\u13af\\u13cd\\u13d4\\u13c1\\u13a2\": 12092,\n    \"\\u13cd\\u13a9\\u13d3\\u13d2\": 12093,\n    \"\\u2581\\u13f3\\u13e3\\u13c5\\u13d3\\u13d5\": 12094,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d8\\u13d7\\u13cd\": 12095,\n    \"\\u13bf\\u13b7\": 12096,\n    \"\\u13e5\\u13a8\\u13f3\\u13ad\": 12097,\n    \"\\u2581\\u13e5\\u13c4\\u13db\\u13c1\": 12098,\n    \"\\u13db\\u13c1\\u13b8\\u13a9\": 12099,\n    \"\\u13cd\\u13aa\\u13c2\\u13af\": 12100,\n    \"\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 12101,\n    \"\\u2581\\u13f1\\u13c5\\u13e9\": 12102,\n    \"\\u13e0\\u13cf\": 12103,\n    \"\\u2581\\u13d7\\u13e5\\u13ef\": 12104,\n    \"\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d4\\u13c2\": 12105,\n    \"\\u2581\\u13e5\\u13e5\\u13ef\": 12106,\n    \"\\u13d9\\u13e9\\u13d7\\u13cd\": 12107,\n    \"\\u2581\\u13f1\\u13c4\\u13be\": 12108,\n    \"\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d4\\u13c2\": 12109,\n    \"\\u2581\\u13a4\\u13c3\\u13b1\": 12110,\n    \"\\u2581\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 12111,\n    \"\\u2581\\u13f1\\u13ed\": 12112,\n    \"\\u13b5\\u13cd\\u13da\\u13b8\": 12113,\n    \"\\u13e3\\u13a2\\u13d2\": 12114,\n    \"\\u2581\\u13a0\\u13c2\\u13ec\\u13c2\\u13cd\\u13a8\": 12115,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13d4\\u13c2\": 12116,\n    \"\\u2581\\u13f4\\u13a8\\u13e3\": 12117,\n    \"\\u13c2\\u13a8\\u13af\\u13d9\\u13b4\\u13a2\": 12118,\n    \"\\u2581\\u13c4\\u13db\\u13be\": 12119,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d3\": 12120,\n    \"\\u13e6\\u13d5\": 12121,\n    \"\\u13a9\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\\u13b8\": 12122,\n    \"\\u13ea\\u13ce\\u13ae\\u13a2\": 12123,\n    \"\\u2581\\u13e9\\u13c2\\u13f4\\u13af\": 12124,\n    \"\\u13ac\\u13c6\\u13db\\u13a6\\u13c1\": 12125,\n    \"\\u13aa\\u13b8\\u13db\": 12126,\n    \"\\u13b5\\u13d9\\u13b0\": 12127,\n    \"\\u2581\\u13a4\\u13be\\u13e1\": 12128,\n    \"\\u13c3\\u13ae\\u13e2\": 12129,\n    \"\\u13c2\\u13ea\\u13cd\\u13a8\": 12130,\n    \"\\u13b8\\u13c9\\u13d9\": 12131,\n    \"\\u2581\\u13d3\\u13d5\\u13d9\": 12132,\n    \"\\u2581\\u13c2\\u13e5\\u13ef\": 12133,\n    \"\\u13aa\\u13e9\\u13db\\u13a1\\u13d7\": 12134,\n    \"\\u13c2\\u13a8\\u13f3\": 12135,\n    \"\\u13ac\\u13cd\\u13a6\\u13b3\": 12136,\n    \"\\u201c\": 12137,\n    \"\\u2581\\u13c3\\u13a6\\u13b5\\u13cd\\u13d4\": 12138,\n    \"\\u13a6\\u13d9\\u13a8\": 12139,\n    \"\\u13f4\\u13a1\\u13b2\": 12140,\n    \"\\u13d3\\u13c1\\u13e3\\u13cd\\u13da\": 12141,\n    \"\\u13bc\\u13c2\": 12142,\n    \"\\u13d3\\u13db\\u13c1\\u13b2\\u13a9\": 12143,\n    \"\\u13cd\\u13d5\\u13b8\\u13b2\": 12144,\n    \"\\u13f4\\u13af\\u13b2\": 12145,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b0\": 12146,\n    \"\\u13c5\\u13a6\\u13b8\\u13d7\": 12147,\n    \"\\u13db\\u13d7\\u13cd\\u13ac\": 12148,\n    \"\\u13ab\\u13a9\": 12149,\n    \"\\u13eb\\u13cd\\u13d7\\u13cd\\u13a9\": 12150,\n    \"\\u2581\\u13d3\\u13be\\u13df\": 12151,\n    \"\\u2581\\u13da\\u13c2\\u13f0\": 12152,\n    \"\\u2581\\u13f1\\u13c2\\u13e8\": 12153,\n    \"\\u13e9\\u13be\\u13a6\\u13b6\": 12154,\n    \"\\u2581\\u13c2\\u13cd\\u13c6\\u13db\\u13c1\": 12155,\n    \"\\u13e3\\u13da\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 12156,\n    \"\\u13c2\\u13be\\u13eb\": 12157,\n    \"\\u13ad\\u13c2\\u13b8\": 12158,\n    \"\\u2581\\u13a2\\u13e3\\u13a8\\u13f3\": 12159,\n    \"\\u2581\\u13a4\\u13a6\\u13be\\u13ec\": 12160,\n    \"\\u13f0\\u13b8\\u13cd\\u13d7\": 12161,\n    \"\\u13df\\u13c2\\u13ac\\u13c1\\u13b8\": 12162,\n    \"\\u2581\\u13eb\\u13a6\\u13b6\\u13af\": 12163,\n    \"\\u13a7\\u13c1\\u13d7\\u13f1\": 12164,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13eb\\u13cd\": 12165,\n    \"\\u13aa\\u13d3\\u13c1\\u13af\": 12166,\n    \"\\u2581\\u13a0\\u13c7\\u13b7\": 12167,\n    \"\\u13df\\u13f4\\u13a1\": 12168,\n    \"\\u13e7\\u13c1\\u13cd\\u13a8\\u13ae\\u13a2\": 12169,\n    \"\\u13da\\u13c2\\u13b3\\u13eb\\u13e4\": 12170,\n    \"\\u13a6\\u13c4\\u13b3\\u13e5\": 12171,\n    \"\\u2581\\u13a0\\u13db\\u13c5\\u13a2\\u13cd\\u13d7\": 12172,\n    \"\\u13a3\\u13a8\\u13c5\": 12173,\n    \"\\u13c4\\u13b8\\u13b2\": 12174,\n    \"\\u13e7\\u13d3\\u13b4\\u13c5\": 12175,\n    \"\\u13d8\\u13c5\\u13cd\\u13d3\": 12176,\n    \"\\u13a4\\u13db\\u13ce\\u13a2\": 12177,\n    \"\\u13ad\\u13be\\u13ec\": 12178,\n    \"\\u13d8\\u13f2\\u13b8\": 12179,\n    \"\\u13b6\\u13c1\\u13a2\": 12180,\n    \"\\u13d3\\u13df\\u13b6\\u13cd\\u13d7\\u13cd\\u13ac\": 12181,\n    \"\\u2581\\u13a5\\u13e5\\u13ef\": 12182,\n    \"\\u13a6\\u13d5\\u13b6\\u13a3\\u13cd\": 12183,\n    \"\\u13be\\u13be\\u13b5\\u13cd\\u13d7\": 12184,\n    \"\\u13a9\\u13aa\\u13b2\\u13af\": 12185,\n    \"\\u2581\\u13d7\\u13e4\\u13cd\\u13d9\": 12186,\n    \"\\u13c2\\u13a8\\u13d0\": 12187,\n    \"\\u13ac\\u13ec\\u13ce\\u13b8\\u13a9\": 12188,\n    \"\\u13bf\\u13a5\": 12189,\n    \"\\u13d3\\u13e5\\u13ef\\u13c5\\u13af\": 12190,\n    \"\\u13a9\\u13b8\\u13c2\": 12191,\n    \"\\u13e3\\u13aa\\u13cd\\u13d7\": 12192,\n    \"\\u13d9\\u13ef\": 12193,\n    \"\\u13d3\\u13cd\\u13d4\\u13c5\\u13c5\": 12194,\n    \"\\u13cd\\u13a9\\u13be\\u13be\": 12195,\n    \"\\u13d3\\u13f0\\u13d9\\u13b3\\u13db\": 12196,\n    \"\\u13a4\\u13c1\\u13ab\": 12197,\n    \"\\u13a9\\u13b6\\u13af\\u13cd\\u13d7\": 12198,\n    \"\\u13c4\\u13e9\\u13c2\\u13cc\\u13c5\": 12199,\n    \"\\u13d5\\u13be\\u13d3\\u13aa\\u13b2\\u13f3\": 12200,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\\u13eb\\u13cd\": 12201,\n    \"\\u2581\\u13a2\\u13a4\\u13be\\u13e8\\u13ce\": 12202,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13ae\": 12203,\n    \"\\u2581\\u13a4\\u13c5\\u13e9\\u13c1\": 12204,\n    \"\\u2581\\u13a8\\u13e3\\u13e1\\u13d7\\u13cd\\u13ac\": 12205,\n    \"\\u2581\\u13e7\\u13a9\\u13e5\\u13cd\\u13aa\": 12206,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13c5\\u13e2\": 12207,\n    \"\\u2581\\u13ed\\u13a9\\u13b8\\u13c1\": 12208,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13c5\\u13e5\\u13d9\\u13b8\": 12209,\n    \"\\u13a0\\u13be\\u13d3\\u13aa\\u13be\\u13d7\\u13cd\\u13ac\": 12210,\n    \"\\u13c4\\u13be\\u13d3\\u13b4\": 12211,\n    \"\\u2581\\u13e7\\u13f2\\u13cf\\u13cd\\u13a8\": 12212,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 12213,\n    \"\\u13da\\u13f3\\u13aa\\u13db\": 12214,\n    \"\\u13cd\\u13aa\\u13c2\\u13cd\\u13d7\": 12215,\n    \"\\u2581\\u13c4\\u13cd\\u13c6\\u13c2\": 12216,\n    \"\\u13ec\\u13af\\u13f3\\u13c1\": 12217,\n    \"\\u2581\\u13c2\\u13da\\u13db\\u13c1\\u13b4\": 12218,\n    \"\\u2581\\u13d9\\u13d7\\u13a7\\u13c2\\u13cd\\u13ac\": 12219,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13c1\": 12220,\n    \"\\u13a4\\u13c2\\u13b6\\u13d2\": 12221,\n    \"\\u13a4\\u13c1\\u13a2\\u13cd\\u13d4\\u13c5\": 12222,\n    \"\\u13a4\\u13be\\u13db\\u13aa\\u13d7\\u13f1\": 12223,\n    \"\\u13aa\\u13af\\u13f3\\u13b2\\u13cd\\u13aa\": 12224,\n    \"\\u13d3\\u13b4\\u13cd\\u13ac\\u13a2\": 12225,\n    \"\\u2581\\u13a2\\u13e5\\u13be\\u13f0\\u13cd\\u13ac\": 12226,\n    \"\\u13d9\\u13d3\\u13a6\\u13e5\": 12227,\n    \"\\u13a4\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\": 12228,\n    \"\\u13cd\\u13a9\\u13c3\\u13af\\u13cf\": 12229,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13f2\\u13ac\": 12230,\n    \"\\u2581\\u13a0\\u13a9\\u13ef\\u13a5\": 12231,\n    \"\\u13a4\\u13b5\\u13cd\\u13a8\": 12232,\n    \"\\u13d3\\u13f3\\u13b6\\u13d2\": 12233,\n    \"\\u13a4\\u13a6\\u13c3\\u13e9\": 12234,\n    \"\\u13c5\\u13c1\\u13ad\": 12235,\n    \"\\u13a0\\u13c2\\u13aa\\u13d5\\u13cd\\u13a9\": 12236,\n    \"\\u13e7\\u13d3\\u13b4\\u13c1\": 12237,\n    \"\\u13a0\\u13a6\\u13f4\\u13b5\": 12238,\n    \"\\u13a4\\u13b5\\u13cd\\u13c6\\u13b8\\u13d7\": 12239,\n    \"\\u13da\\u13be\\u13d9\\u13a5\": 12240,\n    \"\\u13e6\\u13b4\\u13cd\\u13d7\": 12241,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13f4\\u13d4\\u13c1\": 12242,\n    \"\\u13a0\\u13e5\\u13b8\\u13c9\\u13d7\\u13f3\": 12243,\n    \"\\u2581\\u13eb\\u13d3\\u13a7\\u13c1\": 12244,\n    \"\\u13e5\\u13cd\\u13d5\\u13e5\": 12245,\n    \"\\u13a4\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13a2\": 12246,\n    \"\\u13d7\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 12247,\n    \"\\u13a1\\u13b3\\u13c6\\u13d7\": 12248,\n    \"\\u2581\\u13e7\\u13c2\\u13b3\\u13eb\": 12249,\n    \"\\u13d5\\u13a4\\u13d9\\u13a5\": 12250,\n    \"\\u13d3\\u13d7\\u13cd\\u13d7\\u13f1\": 12251,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13eb\\u13ce\\u13b2\": 12252,\n    \"\\u2581\\u13d5\\u13a6\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 12253,\n    \"\\u2581\\u13e5\\u13ee\\u13a6\\u13d9\": 12254,\n    \"\\u2581\\u13ed\\u13e9\\u13a6\\u13d8\\u13d7\\u13d2\": 12255,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13bf\\u13d5\\u13ac\": 12256,\n    \"\\u2581\\u13a4\\u13d8\\u13c3\\u13b4\": 12257,\n    \"\\u2581\\u13a0\\u13a9\\u13d0\\u13c5\": 12258,\n    \"\\u2581\\u13e8\\u13d3\\u13b8\": 12259,\n    \"\\u13c4\\u13be\\u13db\\u13c5\": 12260,\n    \"\\u13e0\\u13a8\\u13cf\": 12261,\n    \"\\u2581\\u13e5\\u13c2\\u13a8\\u13ce\": 12262,\n    \"\\u13a2\\u13aa\\u13af\\u13d3\": 12263,\n    \"\\u13e3\\u13c5\\u13d3\\u13d5\": 12264,\n    \"\\u2581\\u13a3\\u13a9\\u13aa\\u13b2\": 12265,\n    \"\\u13c2\\u13aa\\u13af\\u13b8\\u13be\": 12266,\n    \"\\u2581\\u13a4\\u13d7\\u13d4\\u13ae\": 12267,\n    \"\\u13a8\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\": 12268,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13e9\\u13be\": 12269,\n    \"\\u13a1\\u13c6\\u13ad\\u13bb\": 12270,\n    \"\\u2581\\u13d5\\u13e5\\u13a7\\u13bf\\u13e9\\u13d7\\u13d2\": 12271,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13c1\": 12272,\n    \"\\u2581\\u13a3\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\": 12273,\n    \"\\u2581\\u13a4\\u13c5\\u13d3\\u13d7\\u13d7\\u13d2\": 12274,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b4\": 12275,\n    \"\\u13e7\\u13ac\\u13e9\\u13b6\\u13d7\": 12276,\n    \"\\u2581\\u13f1\\u13aa\\u13b5\\u13a8\": 12277,\n    \"\\u2581\\u13d3\\u13d3\\u13c1\\u13b3\\u13d7\\u13d2\": 12278,\n    \"\\u2581\\u13d7\\u13e3\\u13b8\\u13eb\": 12279,\n    \"\\u2581\\u13d7\\u13c6\\u13d3\\u13b4\\u13c5\": 12280,\n    \"\\u13c2\\u13ac\\u13be\\u13db\": 12281,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13cd\\u13d4\\u13c1\": 12282,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13e9\\u13db\\u13af\\u13d9\": 12283,\n    \"\\u13a4\\u13c1\\u13a6\": 12284,\n    \"\\u2581\\u13a4\\u13df\\u13cd\\u13d4\": 12285,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13a8\": 12286,\n    \"\\u13c3\\u13c8\\u13cf\": 12287,\n    \"\\u13c4\\u13c2\\u13ea\\u13ce\\u13a2\": 12288,\n    \"\\u13e1\\u13a9\": 12289,\n    \"\\u13e3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\": 12290,\n    \"\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\\u13af\": 12291,\n    \"\\u13c1\\u13ab\\u13e5\\u13db\": 12292,\n    \"\\u13f3\\u13e9\\u13c1\\u13a6\": 12293,\n    \"\\u13a1\\u13d2\\u13ad\": 12294,\n    \"\\u13a6\\u13c2\\u13f4\\u13db\": 12295,\n    \"\\u13e9\\u13ab\": 12296,\n    \"\\u13e7\\u13c1\\u13ac\": 12297,\n    \"\\u13da\\u13b3\\u13d1\\u13dd\": 12298,\n    \"\\u13da\\u13cd\\u13c6\\u13c3\\u13f4\": 12299,\n    \"\\u13a6\\u13d9\\u13ac\\u13a9\": 12300,\n    \"\\u13a4\\u13be\\u13e3\\u13c5\": 12301,\n    \"\\u13b6\\u13c4\\u13ae\\u13d7\": 12302,\n    \"\\u2581\\u13da\\u13e0\\u13d2\\u13ce\": 12303,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c1\": 12304,\n    \"\\u13e9\\u13b6\\u13cf\": 12305,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\": 12306,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c1\": 12307,\n    \"\\u13ac\\u13ec\\u13b5\": 12308,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13d8\\u13be\\u13a5\": 12309,\n    \"\\u2581\\u13d3\\u13c2\\u13ec\\u13c2\\u13cd\\u13ac\": 12310,\n    \"\\u13a0\\u13e5\\u13b8\": 12311,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13e3\": 12312,\n    \"\\u13a9\\u13a8\\u13f3\\u13d2\\u13a2\": 12313,\n    \"\\u13ae\\u13b5\\u13a0\": 12314,\n    \"\\u2581\\u13e7\\u13c2\\u13a6\\u13f4\\u13b5\": 12315,\n    \"\\u13da\\u13ec\\u13c1\\u13d4\\u13c1\\u13a2\": 12316,\n    \"\\u2581\\u13c2\\u13da\\u13c5\\u13c1\\u13b4\": 12317,\n    \"\\u13d7\\u13aa\\u13e2\": 12318,\n    \"\\u13f2\\u13cd\\u13d4\": 12319,\n    \"\\u13b5\\u13e5\\u13d9\\u13c1\\u13ad\": 12320,\n    \"\\u13a4\\u13c1\\u13ac\": 12321,\n    \"\\u13ef\\u13d8\\u13c5\\u13cd\\u13d7\": 12322,\n    \"\\u13cd\\u13a9\\u13ef\\u13d8\\u13c3\": 12323,\n    \"\\u13a2\\u13f3\\u13cd\\u13d8\": 12324,\n    \"\\u2581\\u13a9\\u13be\\u13b5\": 12325,\n    \"\\u13c5\\u13a5\\u13cd\\u13a9\": 12326,\n    \"\\u13d3\\u13f4\\u13b3\\u13d4\\u13cd\": 12327,\n    \"\\u2581\\u13da\\u13da\\u13aa\\u13d4\\u13c5\": 12328,\n    \"\\u13be\\u13d8\\u13f2\": 12329,\n    \"\\u13be\\u13eb\\u13db\\u13db\": 12330,\n    \"\\u13ae\\u13c2\\u13b5\": 12331,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\\u13c1\\u13b4\": 12332,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\\u13a8\": 12333,\n    \"\\u13ad\\u13d7\\u13ad\": 12334,\n    \"\\u13a4\\u13f2\\u13e8\": 12335,\n    \"\\u13d7\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13af\": 12336,\n    \"\\u2581\\u13e7\\u13c6\": 12337,\n    \"\\u13a0\\u13d3\\u13c5\\u13d9\": 12338,\n    \"\\u13d3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d9\\u13d7\": 12339,\n    \"\\u2581\\u13be\\u13e5\\u13ea\\u13ce\\u13b4\": 12340,\n    \"\\u13e3\\u13ac\\u13eb\\u13f3\\u13af\": 12341,\n    \"\\u2581\\u13a6\\u13c5\\u13ec\": 12342,\n    \"\\u2581\\u13a0\\u13e5\\u13f0\\u13b8\\u13be\\u13c1\\u13b4\": 12343,\n    \"\\u13c2\\u13e4\\u13b7\\u13af\": 12344,\n    \"\\u13cd\\u13aa\\u13b8\\u13d9\\u13d7\": 12345,\n    \"\\u2581\\u13e3\\u13b5\\u13c2\\u13a9\": 12346,\n    \"\\u2581\\u13a3\\u13a6\\u13d3\": 12347,\n    \"\\u13e7\\u13d3\\u13b4\\u13c5\\u13d3\": 12348,\n    \"\\u2581\\u13ac\\u13e9\\u13aa\\u13ae\": 12349,\n    \"\\u13cf\\u13be\\u13cc\\u13c5\": 12350,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13e0\\u13af\\u13ce\\u13b8\": 12351,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13ea\\u13ce\\u13b8\": 12352,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13bf\\u13d5\\u13ac\": 12353,\n    \"\\u13d7\\u13a6\\u13b6\": 12354,\n    \"\\u2581\\u13f2\\u13e3\": 12355,\n    \"\\u2581\\u13af\\u13a6\\u13cd\\u13a6\\u13c2\": 12356,\n    \"\\u2581\\u13e7\\u13cd\\u13c6\\u13c2\\u13aa\": 12357,\n    \"\\u13e6\\u13d3\\u13b8\": 12358,\n    \"\\u2581\\u13eb\\u13be\\u13a9\": 12359,\n    \"\\u13d3\\u13d9\\u13b5\\u13e3\\u13d8\": 12360,\n    \"\\u13a0\\u13a9\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 12361,\n    \"\\u13a4\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\": 12362,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b4\": 12363,\n    \"\\u13cd\\u13a6\\u13c5\\u13e5\\u13d9\\u13b8\\u13a2\": 12364,\n    \"\\u13a9\\u13cd\\u13d5\\u13b8\\u13af\\u13d3\\u13cd\\u13d7\": 12365,\n    \"\\u13cc\\u13b3\\u13db\": 12366,\n    \"\\u13d6\\u13b8\\u13c2\": 12367,\n    \"\\u13e5\\u13a8\\u13f3\": 12368,\n    \"\\u13be\\u13db\\u13c1\\u13ae\": 12369,\n    \"\\u13c1\\u13a5\\u13ad\": 12370,\n    \"\\u13e9\\u13d8\\u13cd\\u13ac\\u13be\": 12371,\n    \"\\u13d0\\u13b4\\u13cd\\u13d7\": 12372,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\\u13ac\": 12373,\n    \"\\u13d6\\u13cd\\u13ac\": 12374,\n    \"\\u2581\\u13a4\\u13c1\\u13d9\\u13b4\": 12375,\n    \"\\u2581\\u13d7\\u13a6\\u13d9\\u13a8\": 12376,\n    \"\\u13b9\\u13c5\": 12377,\n    \"\\u2581\\u13eb\\u13d7\\u13ac\\u13e9\": 12378,\n    \"\\u2581\\u13e3\\u13c1\\u13ab\": 12379,\n    \"\\u2581\\u13a4\\u13ec\\u13c2\": 12380,\n    \"\\u2581\\u13d3\\u13f0\\u13d9\\u13b3\": 12381,\n    \"\\u2581\\u13da\\u13cd\\u13d3\\u13e9\\u13db\\u13ce\": 12382,\n    \"\\u13a2\\u13e7\\u13b3\\u13ad\": 12383,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\": 12384,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13cd\\u13aa\": 12385,\n    \"\\u13b5\\u13cd\\u13a6\\u13c2\\u13cd\\u13db\": 12386,\n    \"\\u2581\\u13eb\\u13d3\\u13c6\\u13a7\\u13be\\u13c5\": 12387,\n    \"\\u13be\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\": 12388,\n    \"\\u2581\\u13a4\\u13d3\\u13cf\\u13c1\": 12389,\n    \"\\u13a6\\u13be\\u13cf\\u13cd\\u13a9\": 12390,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13b4\": 12391,\n    \"\\u13ac\\u13ec\\u13af\\u13f3\": 12392,\n    \"\\u2581\\u13ed\\u13e3\\u13c5\": 12393,\n    \"\\u2581\\u13a1\\u13a6\\u13ab\\u13f4\": 12394,\n    \"\\u13d4\\u13b5\\u13c1\": 12395,\n    \"\\u13cd\\u13a9\\u13be\\u13db\": 12396,\n    \"\\u2581\\u13a4\\u13b5\\u13d6\\u13b8\": 12397,\n    \"\\u13cd\\u13a9\\u13d9\\u13b5\\u13a9\": 12398,\n    \"\\u2581\\u13a4\\u13d5\\u13c1\\u13b4\": 12399,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 12400,\n    \"\\u13d3\\u13ea\\u13b3\\u13a9\\u13cd\\u13ac\": 12401,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\\u13b4\": 12402,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d2\": 12403,\n    \"\\u13d7\\u13e5\\u13c1\\u13df\\u13f4\": 12404,\n    \"\\u2581\\u13a8\\u13e5\\u13cc\": 12405,\n    \"\\u2581\\u13b4\\u13bb\": 12406,\n    \"\\u2581\\u13c4\\u13be\\u13db\\u13c1\": 12407,\n    \"\\u13a6\\u13be\\u13ec\\u13cd\\u13ac\": 12408,\n    \"\\u13f2\\u13b1\\u13cf\\u13d5\\u13be\": 12409,\n    \"\\u13b5\\u13f1\\u13b5\\u13d5\": 12410,\n    \"\\u2581\\u13a3\\u13e4\\u13b2\": 12411,\n    \"\\u2581\\u13e7\\u13be\\u13e4\": 12412,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13ce\\u13cd\\u13db\": 12413,\n    \"\\u2581\\u13c2\\u13da\\u13b5\\u13cd\\u13d4\\u13c5\": 12414,\n    \"\\u13c4\\u13e9\\u13c1\\u13b4\": 12415,\n    \"\\u2581\\u13da\\u13ec\\u13e2\\u13c5\": 12416,\n    \"\\u2581\\u13ad\\u13d3\\u13c5\": 12417,\n    \"\\u2581\\u13bf\\u13db\": 12418,\n    \"\\u2581\\u13e7\\u13be\\u13b5\\u13c2\": 12419,\n    \"\\u13af\\u13aa\\u13e9\\u13db\": 12420,\n    \"\\u13f4\\u13d3\\u13c6\\u13b6\\u13cd\\u13ac\": 12421,\n    \"\\u13c3\\u13af\\u13b8\\u13cd\\u13d4\": 12422,\n    \"\\u2581\\u13a4\\u13d7\\u13b4\\u13b2\": 12423,\n    \"\\u2581\\u13c4\\u13b5\\u13c2\\u13ac\": 12424,\n    \"\\u2581\\u13a4\\u13c1\\u13df\\u13f4\": 12425,\n    \"\\u13a6\\u13f0\\u13ac\\u13cd\\u13d4\": 12426,\n    \"\\u13c5\\u13cd\\u13a6\\u13b8\": 12427,\n    \"\\u2581\\u13a4\\u13a9\\u13e8\": 12428,\n    \"\\u13e8\\u13cf\\u13f0\\u13d7\": 12429,\n    \"\\u2581\\u13a4\\u13ec\\u13ea\\u13b3\\u13c5\": 12430,\n    \"\\u13b5\\u13e0\\u13ef\\u13cd\\u13d5\\u13cd\\u13d7\": 12431,\n    \"\\u13c6\\u13d3\\u13c5\\u13d6\\u13b8\": 12432,\n    \"\\u13d7\\u13a6\\u13b6\\u13d7\": 12433,\n    \"\\u13f4\\u13d3\\u13c6\\u13b6\\u13cd\\u13a9\": 12434,\n    \"\\u13e9\\u13d7\\u13ce\\u13a2\": 12435,\n    \"\\u2581\\u13a0\\u13e9\\u13d8\\u13cd\\u13aa\": 12436,\n    \"\\u13ce\\u13a6\\u13e8\": 12437,\n    \"\\u13d9\\u13b4\\u13c6\\u13cd\": 12438,\n    \"\\u13c4\\u13af\\u13cd\\u13d7\\u13cd\\u13ac\": 12439,\n    \"\\u2581\\u13e7\\u13c3\\u13ea\\u13b3\\u13c5\": 12440,\n    \"\\u2581\\u13a4\\u13be\\u13b3\\u13cd\\u13d3\\u13a1\": 12441,\n    \"\\u2581\\u13c4\\u13c2\\u13ea\": 12442,\n    \"\\u13c2\\u13d9\\u13b4\": 12443,\n    \"\\u2581\\u13e5\\u13a7\\u13c1\": 12444,\n    \"\\u13d3\\u13be\\u13cf\\u13c2\": 12445,\n    \"\\u2581\\u13e5\\u13c3\\u13aa\": 12446,\n    \"\\u2581\\u13e7\\u13c2\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\": 12447,\n    \"\\u2581\\u13d3\\u13be\\u13d5\\u13f2\\u13b2\\u13cd\": 12448,\n    \"\\u2581\\u13a4\\u13b5\\u13e8\\u13d3\\u13c6\": 12449,\n    \"\\u13b5\\u13cd\\u13d9\\u13f0\\u13d7\": 12450,\n    \"\\u13b5\\u13cf\\u13b2\\u13ce\": 12451,\n    \"\\u13be\\u13c2\\u13a9\\u13d2\": 12452,\n    \"\\u2581\\u13a0\\u13a6\\u13ab\\u13f4\\u13a1\": 12453,\n    \"\\u13a6\\u13df\\u13ae\": 12454,\n    \"\\u2581\\u13da\\u13c5\\u13e9\\u13c5\": 12455,\n    \"\\u2581\\u13da\\u13b5\\u13e6\": 12456,\n    \"\\u13d3\\u13f4\\u13b3\\u13d4\\u13c5\": 12457,\n    \"\\u2581\\u13e7\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\": 12458,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13a6\\u13c1\\u13b8\": 12459,\n    \"\\u2581\\u13a2\\u13f3\\u13d5\\u13d8\\u13f4\": 12460,\n    \"\\u2581\\u13a4\\u13b8\\u13d3\\u13b8\\u13a5\\u13cd\": 12461,\n    \"\\u2581\\u13ad\\u13d9\\u13b4\\u13b0\": 12462,\n    \"\\u13cc\\u13ba\\u13b5\": 12463,\n    \"\\u2581\\u13a0\\u13c2\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13cd\": 12464,\n    \"\\u13ac\\u13ad\\u13b8\\u13db\": 12465,\n    \"\\u13a4\\u13b5\\u13ae\\u13b5\": 12466,\n    \"\\u2581\\u13a7\\u13c1\\u13a8\": 12467,\n    \"\\u13be\\u13d5\\u13b2\\u13cd\\u13ac\": 12468,\n    \"\\u2581\\u13a0\\u13be\\u13a6\": 12469,\n    \"\\u2581\\u13ad\\u13b5\\u13ae\\u13b5\": 12470,\n    \"\\u2581\\u13a2\\u13a7\\u13c1\\u13e8\": 12471,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13f4\\u13b2\": 12472,\n    \"\\u13ec\\u13cd\\u13a9\\u13b5\": 12473,\n    \"\\u13b5\\u13cd\\u13d7\\u13f0\\u13d3\\u13c1\": 12474,\n    \"\\u13c5\\u13e7\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\": 12475,\n    \"\\u13ec\\u13e5\": 12476,\n    \"\\u13ec\\u13c1\\u13d7\\u13cd\\u13a8\": 12477,\n    \"\\u2581\\u13a4\\u13d8\\u13f4\": 12478,\n    \"\\u2581\\u13d9\\u13a9\\u13be\\u13cd\\u13a9\\u13d3\\u13d2\": 12479,\n    \"\\u2581\\u13a2\\u13f3\\u13db\\u13c1\": 12480,\n    \"\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13ac\": 12481,\n    \"\\u13d1\\u13b5\\u13aa\\u13e8\\u13a9\": 12482,\n    \"\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\": 12483,\n    \"\\u2581\\u13d9\\u13e6\": 12484,\n    \"\\u13d5\\u13ef\\u13d4\\u13c1\\u13ae\": 12485,\n    \"\\u13a0\\u13a6\\u13db\": 12486,\n    \"\\u13b7\\u13af\\u13cd\\u13d4\\u13c5\": 12487,\n    \"\\u2581\\u13d7\\u13a6\\u13b3\\u13eb\": 12488,\n    \"\\u13c2\\u13c4\\u13aa\\u13e4\\u13a2\": 12489,\n    \"\\u13eb\\u13cc\\u13c5\": 12490,\n    \"\\u2581\\u13ac\\u13ef\\u13b5\\u13c3\\u13ae\\u13d9\\u13d7\": 12491,\n    \"\\u13f2\\u13e4\\u13be\": 12492,\n    \"\\u13d7\\u13a9\\u13ef\\u13cd\\u13d7\": 12493,\n    \"\\u13d7\\u13b4\\u13a9\": 12494,\n    \"\\u2581\\u13be\\u13e5\\u13ea\\u13ce\": 12495,\n    \"\\u13ef\\u13c6\": 12496,\n    \"\\u13f0\\u13cc\\u13db\\u13a2\": 12497,\n    \"\\u13be\\u13c4\\u13aa\\u13e5\": 12498,\n    \"\\u13ac\\u13ad\\u13b7\\u13ef\\u13cd\": 12499,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\": 12500,\n    \"\\u2581\\u13f1\\u13d5\\u13e3\\u13d3\": 12501,\n    \"\\u2581\\u13a5\\u13a4\": 12502,\n    \"\\u2581\\u13a2\\u13ef\\u13a9\\u13ea\\u13cd\\u13d7\": 12503,\n    \"\\u2581\\u13da\\u13c3\\u13d5\": 12504,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13c5\": 12505,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d6\\u13b8\": 12506,\n    \"\\u13a7\\u13cd\\u13a8\\u13c2\": 12507,\n    \"\\u2581\\u13bb\\u13d7\\u13c2\": 12508,\n    \"\\u2581\\u13a2\\u13af\\u13f4\\u13c1\\u13d7\": 12509,\n    \"\\u13ed\\u13c2\": 12510,\n    \"\\u13d3\\u13c5\\u13cd\\u13a8\": 12511,\n    \"\\u13a8\\u13b3\\u13d7\": 12512,\n    \"\\u2581\\u13d7\\u13aa\\u13d1\\u13b4\\u13d7\": 12513,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13ae\": 12514,\n    \"\\u13b7\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 12515,\n    \"\\u2581\\u13eb\\u13a8\\u13e5\\u13ef\\u13c5\": 12516,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13a6\": 12517,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13b3\\u13eb\": 12518,\n    \"\\u2581\\u13a3\\u13be\\u13eb\": 12519,\n    \"\\u13be\\u13d3\\u13d1\\u13f0\": 12520,\n    \"\\u2581\\u13d7\\u13e3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d9\\u13d7\": 12521,\n    \"\\u13c5\\u13b5\\u13f0\\u13a5\": 12522,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c7\\u13da\": 12523,\n    \"\\u13b7\\u13e4\\u13a2\": 12524,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13e9\\u13d3\\u13b4\": 12525,\n    \"\\u13d5\\u13ad\\u13f2\\u13b2\": 12526,\n    \"\\u2581\\u13a1\\u13b3\\u13c6\": 12527,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13db\\u13d7\": 12528,\n    \"\\u13cd\\u13c6\\u13be\\u13b3\\u13d7\\u13cd\\u13d7\": 12529,\n    \"\\u2581\\u13da\\u13d3\\u13d3\\u13b4\": 12530,\n    \"\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13aa\\u13a2\": 12531,\n    \"\\u2581\\u13a5\\u13d3\\u13d7\": 12532,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d4\\u13e9\\u13d5\": 12533,\n    \"\\u13ea\\u13b5\\u13ce\\u13a2\": 12534,\n    \"\\u13aa\\u13ea\\u13b5\\u13af\": 12535,\n    \"\\u13d8\\u13c5\\u13ce\": 12536,\n    \"\\u13ec\\u13af\\u13e4\": 12537,\n    \"\\u2581\\u13be\\u13ef\\u13db\\u13a1\": 12538,\n    \"\\u2581\\u13eb\\u13e5\\u13b7\\u13e8\": 12539,\n    \"\\u13c2\\u13e2\\u13a9\": 12540,\n    \"\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d3\": 12541,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\\u13d2\\u13ad\": 12542,\n    \"\\u2581\\u13c4\\u13c2\\u13ac\\u13eb\\u13f3\": 12543,\n    \"\\u2581\\u13da\\u13ec\\u13e2\\u13d4\": 12544,\n    \"\\u13cd\\u13d3\\u13f2\\u13d2\": 12545,\n    \"\\u2581\\u13c4\\u13ac\\u13eb\": 12546,\n    \"\\u13a6\\u13d5\\u13a3\\u13cd\\u13a6\": 12547,\n    \"\\u2581\\u13a4\\u13d2\\u13a6\\u13b8\": 12548,\n    \"\\u13b4\\u13d4\\u13c5\\u13a2\": 12549,\n    \"\\u13d5\\u13d8\\u13f4\\u13cc\\u13d7\\u13d2\": 12550,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13b4\\u13c5\": 12551,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\": 12552,\n    \"\\u13ed\\u13b7\\u13e4\\u13a2\": 12553,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13e5\": 12554,\n    \"\\u13cd\\u13d5\\u13af\": 12555,\n    \"\\u13cd\\u13c9\\u13c2\\u13aa\\u13d7\": 12556,\n    \"\\u13b7\\u13b8\\u13d7\\u13f1\": 12557,\n    \"\\u2581\\u13a4\\u13e3\\u13b4\\u13cd\": 12558,\n    \"\\u13c2\\u13d9\\u13be\\u13a1\": 12559,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13b8\": 12560,\n    \"\\u13d5\\u13cd\\u13d7\\u13f1\": 12561,\n    \"\\u13a6\\u13ab\\u13f4\\u13d3\\u13c1\\u13d7\": 12562,\n    \"\\u2581\\u13ac\\u13c6\\u13db\\u13c1\\u13d7\": 12563,\n    \"\\u13d6\\u13b8\\u13c2\\u13b8\": 12564,\n    \"\\u13d5\\u13b5\\u13d9\": 12565,\n    \"\\u13d9\\u13e3\\u13c1\": 12566,\n    \"\\u2581\\u13a1\\u13e5\\u13d9\\u13b5\\u13cd\\u13d7\": 12567,\n    \"\\u13be\\u13a5\\u13c2\": 12568,\n    \"\\u13a6\\u13b5\\u13c2\\u13aa\\u13af\": 12569,\n    \"\\u2581\\u13e7\\u13ea\\u13d9\\u13b5\\u13cd\\u13d7\": 12570,\n    \"\\u2581\\u13a0\\u13c6\\u13b4\\u13c2\\u13d3\\u13cd\\u13d7\": 12571,\n    \"\\u13a6\\u13ef\\u13b7\\u13a5\\u13cd\\u13a9\": 12572,\n    \"\\u2581\\u13a2\\u13e7\\u13c5\\u13c1\\u13d7\": 12573,\n    \"\\u13c5\\u13b5\\u13f0\\u13d7\": 12574,\n    \"\\u2581\\u13a4\\u13ec\\u13ef\\u13c1\": 12575,\n    \"\\u13e5\\u13b5\\u13e6\": 12576,\n    \"\\u2581\\u13ac\\u13a9\\u13c1\\u13c9\\u13e4\": 12577,\n    \"\\u2581\\u13a0\\u13ab\\u13a2\\u13cd\\u13d7\\u13cd\": 12578,\n    \"\\u2581\\u13d9\\u13d7\\u13cd\\u13a9\\u13ef\\u13d8\": 12579,\n    \"\\u13cc\\u13b3\\u13d3\\u13c1\\u13a2\": 12580,\n    \"\\u2581\\u13eb\\u13a8\\u13e5\\u13f2\\u13b5\": 12581,\n    \"\\u13c3\\u13cd\\u13a9\\u13d2\\u13a2\": 12582,\n    \"\\u2581\\u13d5\\u13ad\\u13d5\\u13f2\\u13b2\\u13cd\": 12583,\n    \"\\u13d4\\u13a7\\u13c5\\u13a6\": 12584,\n    \"\\u2581\\u13f3\\u13e3\\u13c5\": 12585,\n    \"\\u2581\\u13ac\\u13ec\\u13b3\\u13d5\\u13cd\": 12586,\n    \"\\u2581\\u13a9\\u13ef\\u13ce\": 12587,\n    \"\\u2581\\u13a4\\u13c2\\u13d4\\u13b3\": 12588,\n    \"\\u2581\\u13ed\\u13d4\\u13b7\": 12589,\n    \"\\u13a6\\u13ea\\u13a0\": 12590,\n    \"\\u2581\\u13a0\\u13d3\\u13be\\u13eb\\u13d7\": 12591,\n    \"\\u2581\\u13d5\\u13e5\\u13a7\\u13bf\\u13e9\\u13d7\": 12592,\n    \"\\u13e9\\u13af\\u13ce\\u13b8\": 12593,\n    \"\\u13b3\\u13c1\\u13b8\": 12594,\n    \"\\u2581\\u13d3\\u13ad\\u13ec\\u13a2\": 12595,\n    \"\\u13ad\\u13b7\\u13f0\": 12596,\n    \"\\u13cd\\u13c6\\u13d7\\u13cd\\u13ac\\u13be\": 12597,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13d4\\u13c5\": 12598,\n    \"\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 12599,\n    \"\\u2581\\u13a1\\u13bb\\u13c2\\u13d3\": 12600,\n    \"\\u13e5\\u13cd\\u13d3\\u13f1\\u13d5\\u13b5\": 12601,\n    \"\\u2581\\u13a4\\u13a6\\u13be\\u13cf\": 12602,\n    \"\\u2581\\u13c1\\u13d3\\u13c2\": 12603,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13d8\\u13be\": 12604,\n    \"\\u2581\\u13a2\\u13e3\\u13a2\\u13d2\": 12605,\n    \"\\u13de\\u13eb\\u13d2\": 12606,\n    \"\\u13e2\\u13c6\\u13cd\\u13d9\\u13d7\": 12607,\n    \"\\u13df\\u13cd\\u13d5\": 12608,\n    \"\\u13c5\\u13ab\\u13db\\u13a2\": 12609,\n    \"\\u13c8\\u13b7\": 12610,\n    \"\\u2581\\u13a0\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\": 12611,\n    \"\\u2581\\u13af\\u13cd\\u13ab\": 12612,\n    \"\\u13ef\\u13d8\\u13c5\\u13cd\\u13d4\": 12613,\n    \"\\u13da\\u13eb\\u13cd\\u13db\": 12614,\n    \"\\u2581\\u13d5\\u13e3\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\": 12615,\n    \"\\u2581\\u13a2\\u13ef\\u13a9\\u13f3\\u13cd\": 12616,\n    \"\\u13da\\u13da\": 12617,\n    \"\\u2581\\u13a6\\u13d5\\u13b6\": 12618,\n    \"\\u13b5\\u13d3\\u13a9\\u13db\": 12619,\n    \"\\u13d4\\u13d5\\u13a9\\u13cd\\u13a8\": 12620,\n    \"\\u13be\\u13eb\\u13db\\u13af\": 12621,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\\u13a6\": 12622,\n    \"\\u13ea\\u13d0\\u13b8\\u13cd\\u13d4\": 12623,\n    \"\\u2581\\u13d9\\u13d3\\u13f2\": 12624,\n    \"\\u13d4\\u13cd\\u13a9\\u13cd\\u13a9\": 12625,\n    \"\\u2581\\u13f1\\u13d7\\u13e7\\u13aa\": 12626,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13cd\\u13a8\": 12627,\n    \"\\u13db\\u13db\\u13b2\\u13a6\": 12628,\n    \"\\u2581\\u13e5\\u13d5\\u13aa\\u13ea\": 12629,\n    \"\\u13e2\\u13c8\\u13cd\\u13d9\\u13d7\": 12630,\n    \"\\u13a2\\u13d3\\u13d9\\u13b4\\u13b0\": 12631,\n    \"\\u13d5\\u13ef\\u13d9\\u13d4\\u13c2\": 12632,\n    \"hi\": 12633,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\\u13af\": 12634,\n    \"\\u2581\\u13da\\u13df\\u13c2\\u13c6\": 12635,\n    \"\\u13f4\\u13cc\\u13d7\\u13d2\": 12636,\n    \"ape\": 12637,\n    \"\\u2581Ch\": 12638,\n    \"\\u13d3\\u13bf\\u13cd\\u13c6\\u13b6\\u13cd\\u13d7\": 12639,\n    \"\\u13a6\\u13b4\\u13ef\\u13cd\\u13aa\": 12640,\n    \"\\u2581\\u13a0\\u13e9\\u13c2\\u13a6\\u13b3\": 12641,\n    \"\\u2581\\u13a8\\u13e3\\u13d4\\u13f2\\u13ce\": 12642,\n    \"\\u2581\\u13c2\\u13da\\u13ec\\u13da\": 12643,\n    \"\\u2581\\u13d7\\u13a6\\u13b7\\u13eb\\u13cd\\u13d4\\u13c5\\u13d7\": 12644,\n    \"\\u2581\\u13da\\u13b7\\u13c6\\u13d7\\u13c5\": 12645,\n    \"\\u2581\\u13da\\u13c2\\u13c4\\u13ea\\u13d2\": 12646,\n    \"\\u2581\\u13eb\\u13f0\\u13e3\\u13d3\\u13a2\": 12647,\n    \"\\u13a2\\u13d7\\u13ac\\u13e4\\u13b5\\u13db\": 12648,\n    \"\\u13a4\\u13b8\\u13d5\\u13a6\": 12649,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13db\\u13be\": 12650,\n    \"\\u13a8\\u13aa\\u13ea\\u13b6\\u13d4\\u13c5\\u13af\": 12651,\n    \"\\u13a9\\u13b7\\u13eb\\u13cd\\u13d4\\u13cf\": 12652,\n    \"\\u13ad\\u13b4\\u13eb\\u13cd\\u13d4\": 12653,\n    \"\\u13ad\\u13d3\\u13be\\u13eb\\u13d3\": 12654,\n    \"\\u13b3\\u13c5\\u13d3\\u13d7\\u13cf\": 12655,\n    \"\\u13b5\\u13c2\\u13ac\\u13c1\\u13ad\": 12656,\n    \"\\u13b5\\u13cd\\u13ab\\u13ad\\u13f4\": 12657,\n    \"\\u13b5\\u13cd\\u13c7\\u13d4\\u13ec\": 12658,\n    \"\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d4\\u13be\": 12659,\n    \"\\u13ba\\u13b5\\u13a9\\u13cc\\u13d5\\u13a9\\u13c3\": 12660,\n    \"\\u13be\\u13d7\\u13d4\\u13b0\\u13c5\": 12661,\n    \"\\u13be\\u13d9\\u13af\\u13f3\\u13be\\u13c1\\u13d7\": 12662,\n    \"\\u13c2\\u13a6\\u13e5\\u13ef\\u13db\\u13c1\\u13b0\": 12663,\n    \"\\u13c2\\u13c5\\u13a6\\u13b4\\u13b0\\u13c5\": 12664,\n    \"\\u13c2\\u13c6\\u13d8\\u13b5\": 12665,\n    \"\\u13c2\\u13d7\\u13e5\\u13f2\\u13d5\\u13cd\\u13d7\\u13cd\\u13ac\\u13be\": 12666,\n    \"\\u13c3\\u13af\\u13b5\\u13e3\\u13c1\": 12667,\n    \"\\u13c5\\u13d4\\u13d7\\u13d8\\u13cd\\u13ac\": 12668,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13ce\\u13b4\": 12669,\n    \"\\u13d1\\u13f0\\u13cd\\u13ac\": 12670,\n    \"\\u13d3\\u13a6\\u13d5\\u13b6\\u13a3\\u13cf\": 12671,\n    \"\\u13d3\\u13d3\\u13cf\\u13be\\u13b2\\u13cd\\u13d9\\u13d7\": 12672,\n    \"\\u13d3\\u13d5\\u13d8\\u13f4\\u13ae\\u13ac\": 12673,\n    \"\\u13d4\\u13d5\\u13a6\\u13c5\\u13a9\": 12674,\n    \"\\u13d5\\u13a6\\u13b5\\u13a9\\u13a1\\u13ae\\u13a2\": 12675,\n    \"\\u13d6\\u13a1\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 12676,\n    \"\\u13d9\\u13db\\u13aa\\u13c4\\u13b6\\u13cf\": 12677,\n    \"\\u13da\\u13c2\\u13cd\\u13d4\\u13f2\\u13b3\": 12678,\n    \"\\u13e3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d4\\u13c2\": 12679,\n    \"\\u13e5\\u13d4\\u13f2\\u13af\\u13ad\": 12680,\n    \"\\u13e5\\u13e5\\u13c3\\u13af\\u13cd\\u13d3\": 12681,\n    \"\\u13e5\\u13ee\\u13d7\\u13a6\\u13b6\\u13cf\": 12682,\n    \"\\u13ef\\u13d3\\u13f4\\u13a1\\u13b5\": 12683,\n    \"\\u13f2\\u13b0\\u13ce\\u13b5\": 12684,\n    \"\\u2581Po\": 12685,\n    \"\\u2581\\u13a0\\u13a6\\u13ab\\u13f4\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 12686,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13d4\\u13c5\\u13a5\\u13cd\\u13a9\": 12687,\n    \"\\u2581\\u13a0\\u13a7\\u13d6\\u13c3\\u13ae\": 12688,\n    \"\\u2581\\u13a0\\u13be\\u13c1\\u13b3\\u13d7\\u13cd\\u13aa\\u13a2\": 12689,\n    \"\\u2581\\u13a0\\u13be\\u13c1\\u13e2\\u13d4\\u13c2\\u13d2\\u13a2\": 12690,\n    \"\\u2581\\u13a0\\u13c2\\u13a7\\u13d4\\u13b2\": 12691,\n    \"\\u2581\\u13a0\\u13c2\\u13bb\\u13d7\\u13ef\\u13c2\": 12692,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13d4\\u13c2\\u13d9\\u13af\": 12693,\n    \"\\u2581\\u13a0\\u13c3\\u13e2\\u13c5\\u13a5\\u13cd\\u13ac\\u13a2\": 12694,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c5\": 12695,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13c2\\u13d7\\u13e2\": 12696,\n    \"\\u2581\\u13a0\\u13cd\\u13ab\\u13d5\\u13cd\\u13aa\\u13a2\": 12697,\n    \"\\u2581\\u13a0\\u13d2\\u13be\\u13d8\\u13b6\\u13a5\\u13af\": 12698,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13e4\\u13af\": 12699,\n    \"\\u2581\\u13a0\\u13db\\u13d2\\u13a5\\u13cd\\u13a9\": 12700,\n    \"\\u2581\\u13a0\\u13dc\\u13e9\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 12701,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 12702,\n    \"\\u2581\\u13a0\\u13ef\\u13cd\\u13dc\\u13d7\\u13cd\\u13a9\": 12703,\n    \"\\u2581\\u13a1\\u13b5\\u13a3\\u13c8\\u13a6\": 12704,\n    \"\\u2581\\u13a2\\u13a4\\u13c4\\u13aa\\u13e8\": 12705,\n    \"\\u2581\\u13a2\\u13a6\\u13a4\\u13d8\\u13cd\\u13db\": 12706,\n    \"\\u2581\\u13a2\\u13cd\\u13a9\\u13cc\\u13db\\u13a5\\u13cd\\u13a6\": 12707,\n    \"\\u2581\\u13a2\\u13cd\\u13db\\u13a8\\u13f3\\u13a2\": 12708,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13b8\\u13d7\\u13f1\": 12709,\n    \"\\u2581\\u13a2\\u13e3\\u13e0\\u13be\\u13cd\\u13db\": 12710,\n    \"\\u2581\\u13a2\\u13e5\\u13be\\u13dd\\u13be\\u13a5\": 12711,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 12712,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13ef\\u13d4\\u13c5\\u13a2\": 12713,\n    \"\\u2581\\u13a2\\u13ef\\u13df\\u13b6\\u13a5\\u13af\": 12714,\n    \"\\u2581\\u13a2\\u13f0\\u13e3\\u13db\\u13c1\\u13d7\": 12715,\n    \"\\u2581\\u13a2\\u13f2\\u13e8\\u13f4\\u13c1\\u13d7\\u13f1\": 12716,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13e5\\u13d9\\u13d7\\u13f1\": 12717,\n    \"\\u2581\\u13a3\\u13c1\\u13cf\\u13c9\\u13b3\": 12718,\n    \"\\u2581\\u13a4\\u13a6\\u13ce\\u13cd\\u13d5\\u13a2\": 12719,\n    \"\\u2581\\u13a4\\u13a7\\u13f2\\u13d0\\u13c5\": 12720,\n    \"\\u2581\\u13a4\\u13a9\\u13b3\\u13eb\\u13ce\": 12721,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d4\\u13f4\\u13c3\\u13c1\\u13cd\\u13d7\": 12722,\n    \"\\u2581\\u13a4\\u13b7\\u13e6\\u13c5\\u13af\": 12723,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13b0\\u13cd\\u13d4\\u13c5\": 12724,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13b4\\u13a8\\u13ce\": 12725,\n    \"\\u2581\\u13a4\\u13c1\\u13e7\\u13e5\\u13db\": 12726,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13d8\\u13d5\\u13a2\": 12727,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13af\\u13d9\\u13b8\\u13af\": 12728,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13c1\\u13b6\\u13af\\u13cc\\u13d8\": 12729,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c8\\u13cd\\u13d3\": 12730,\n    \"\\u2581\\u13a4\\u13c2\\u13d0\\u13e2\\u13a2\\u13cd\\u13d4\\u13c5\": 12731,\n    \"\\u2581\\u13a4\\u13c2\\u13d4\\u13b3\\u13ec\\u13ce\\u13a2\": 12732,\n    \"\\u2581\\u13a4\\u13c3\\u13b1\\u13a6\\u13c2\\u13b8\": 12733,\n    \"\\u2581\\u13a4\\u13d0\\u13e2\\u13a2\\u13cd\\u13d4\\u13c5\": 12734,\n    \"\\u2581\\u13a4\\u13d3\\u13d1\\u13f0\\u13a2\": 12735,\n    \"\\u2581\\u13a4\\u13d3\\u13e5\\u13c3\\u13af\\u13cd\\u13d4\\u13c5\": 12736,\n    \"\\u2581\\u13a4\\u13d3\\u13e9\\u13d7\\u13cd\\u13db\": 12737,\n    \"\\u2581\\u13a4\\u13da\\u13d3\\u13db\\u13d7\\u13f1\": 12738,\n    \"\\u2581\\u13a4\\u13df\\u13f4\\u13cd\\u13a9\\u13b8\\u13ae\": 12739,\n    \"\\u2581\\u13a4\\u13e7\\u13c8\\u13cd\\u13d9\\u13d2\\u13af\": 12740,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b5\\u13a8\\u13a2\": 12741,\n    \"\\u2581\\u13a8\\u13e4\\u13b3\\u13d7\\u13d9\\u13ad\": 12742,\n    \"\\u2581\\u13a8\\u13e5\\u13d0\\u13e0\\u13b8\\u13a2\": 12743,\n    \"\\u2581\\u13ac\\u13e9\\u13a6\\u13cc\\u13ef\\u13cd\\u13d5\": 12744,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13ae\\u13cd\\u13d7\": 12745,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d3\\u13e9\\u13d9\\u13af\": 12746,\n    \"\\u2581\\u13ad\\u13c6\\u13e5\\u13c2\": 12747,\n    \"\\u2581\\u13ad\\u13d3\\u13c5\\u13d7\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 12748,\n    \"\\u2581\\u13af\\u13ef\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\": 12749,\n    \"\\u2581\\u13bb\\u13b1\\u13e4\\u13b5\": 12750,\n    \"\\u2581\\u13bb\\u13cf\\u13b4\\u13bb\": 12751,\n    \"\\u2581\\u13bb\\u13da\\u13ce\\u13b5\": 12752,\n    \"\\u2581\\u13c1\\u13e3\\u13db\\u13c1\\u13cd\\u13d7\\u13c9\": 12753,\n    \"\\u2581\\u13c2\\u13a6\\u13c5\\u13a6\\u13b8\\u13b2\\u13be\": 12754,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13ea\\u13ce\\u13ad\": 12755,\n    \"\\u2581\\u13c2\\u13ac\\u13eb\\u13cd\\u13d5\": 12756,\n    \"\\u2581\\u13c2\\u13d5\\u13e3\\u13d3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 12757,\n    \"\\u2581\\u13c2\\u13d7\\u13e3\\u13d3\\u13d5\\u13b5\\u13ce\\u13b2\\u13be\": 12758,\n    \"\\u2581\\u13c2\\u13d7\\u13e3\\u13e2\\u13eb\\u13ce\\u13b2\\u13be\": 12759,\n    \"\\u2581\\u13c2\\u13d7\\u13e5\\u13c1\\u13b2\\u13be\": 12760,\n    \"\\u2581\\u13c2\\u13d9\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\\u13ad\": 12761,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13ae\\u13b5\\u13e3\\u13db\\u13be\": 12762,\n    \"\\u2581\\u13c4\\u13c2\\u13b7\\u13b6\\u13e4\\u13b2\\u13be\": 12763,\n    \"\\u2581\\u13c5\\u13a4\\u13ea\\u13ce\\u13b8\\u13a9\": 12764,\n    \"\\u2581\\u13c5\\u13cb\\u13c1\\u13b5\\u13d9\\u13b8\\u13a2\": 12765,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13ea\\u13cf\": 12766,\n    \"\\u2581\\u13c5\\u13d3\\u13cd\\u13a9\\u13f4\\u13c1\\u13b5\": 12767,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13b5\": 12768,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13cd\\u13d7\\u13d7\\u13d2\\u13a9\": 12769,\n    \"\\u2581\\u13c5\\u13db\\u13c2\\u13d9\\u13be\\u13a2\": 12770,\n    \"\\u2581\\u13c8\\u13d7\\u13c2\\u13f1\": 12771,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13b5\\u13a1\\u13b5\\u13cd\": 12772,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13d0\\u13a5\\u13a6\": 12773,\n    \"\\u2581\\u13cd\\u13c6\\u13d5\\u13b2\\u13cf\": 12774,\n    \"\\u2581\\u13d0\\u13b5\\u13bc\\u13c5\": 12775,\n    \"\\u2581\\u13d3\\u13a6\\u13b3\\u13d0\\u13eb\\u13cf\": 12776,\n    \"\\u2581\\u13d3\\u13a7\\u13bf\\u13e9\\u13d5\\u13a8\\u13cd\\u13d7\": 12777,\n    \"\\u2581\\u13d3\\u13a8\\u13af\\u13db\\u13d4\\u13c2\": 12778,\n    \"\\u2581\\u13d3\\u13a9\\u13ef\\u13ea\\u13e5\\u13d9\\u13b8\": 12779,\n    \"\\u2581\\u13d3\\u13ac\\u13c1\\u13c9\\u13a2\": 12780,\n    \"\\u2581\\u13d3\\u13ac\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13b5\": 12781,\n    \"\\u2581\\u13d3\\u13be\\u13d5\\u13d2\\u13b2\\u13cd\\u13a8\\u13a2\": 12782,\n    \"\\u2581\\u13d3\\u13be\\u13e6\\u13ad\\u13f1\\u13ae\": 12783,\n    \"\\u2581\\u13d3\\u13bf\\u13ec\\u13cd\\u13a8\": 12784,\n    \"\\u2581\\u13d3\\u13c1\\u13d9\\u13b2\\u13a9\": 12785,\n    \"\\u2581\\u13d3\\u13c2\\u13c2\\u13a9\\u13b8\": 12786,\n    \"\\u2581\\u13d3\\u13c2\\u13e5\\u13cd\\u13d4\\u13b3\\u13cd\\u13ac\": 12787,\n    \"\\u2581\\u13d3\\u13cd\\u13a9\\u13ef\\u13e0\\u13e5\": 12788,\n    \"\\u2581\\u13d3\\u13d3\\u13d8\\u13c1\\u13b2\\u13a2\": 12789,\n    \"\\u2581\\u13d3\\u13e5\\u13b4\\u13d0\\u13c2\": 12790,\n    \"\\u2581\\u13d3\\u13e5\\u13cd\\u13d4\\u13e9\\u13d5\\u13cf\": 12791,\n    \"\\u2581\\u13d3\\u13e5\\u13d4\\u13f2\\u13b5\": 12792,\n    \"\\u2581\\u13d3\\u13e8\\u13f2\\u13ce\\u13b5\": 12793,\n    \"\\u2581\\u13d3\\u13f2\\u13cd\\u13d3\\u13c1\\u13b3\\u13d7\": 12794,\n    \"\\u2581\\u13d3\\u13f3\\u13be\\u13da\\u13a9\\u13d2\": 12795,\n    \"\\u2581\\u13d5\\u13a4\\u13b8\\u13eb\\u13cd\\u13d3\\u13cf\": 12796,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13d3\\u13c2\\u13b8\\u13e8\": 12797,\n    \"\\u2581\\u13d5\\u13a9\\u13be\\u13e6\\u13d2\": 12798,\n    \"\\u2581\\u13d5\\u13ac\\u13d2\\u13b2\\u13cd\\u13ac\\u13a2\": 12799,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13d3\\u13c2\\u13b8\\u13e8\\u13a9\": 12800,\n    \"\\u2581\\u13d5\\u13ac\\u13ef\\u13ab\\u13f4\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 12801,\n    \"\\u2581\\u13d5\\u13ac\\u13ef\\u13e0\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 12802,\n    \"\\u2581\\u13d5\\u13ad\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 12803,\n    \"\\u2581\\u13d5\\u13af\\u13ef\\u13d3\\u13c2\\u13b8\\u13e8\\u13ad\": 12804,\n    \"\\u2581\\u13d5\\u13cd\\u13d7\\u13c2\\u13f4\\u13ae\\u13cd\\u13d7\": 12805,\n    \"\\u2581\\u13d5\\u13e5\\u13a6\\u13bf\\u13e9\\u13d7\\u13d2\": 12806,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\\u13ef\\u13c5\\u13af\\u13db\": 12807,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13c5\\u13cd\\u13d5\\u13ce\\u13b8\\u13af\": 12808,\n    \"\\u2581\\u13d7\\u13a9\\u13be\\u13d3\\u13db\\u13d9\\u13d7\": 12809,\n    \"\\u2581\\u13d7\\u13ab\\u13e9\\u13ad\\u13c4\\u13eb\": 12810,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13d5\\u13f2\\u13d7\": 12811,\n    \"\\u2581\\u13d7\\u13c2\\u13b3\\u13cd\\u13d3\\u13b3\\u13e9\\u13d7\\u13d2\": 12812,\n    \"\\u2581\\u13d7\\u13d3\\u13d9\\u13d5\\u13af\\u13af\": 12813,\n    \"\\u2581\\u13d7\\u13d7\\u13c2\\u13c3\\u13a9\\u13cd\\u13a8\\u13a2\": 12814,\n    \"\\u2581\\u13d7\\u13f4\\u13a6\\u13b4\\u13f4\\u13d3\": 12815,\n    \"\\u2581\\u13d8\\u13f0\\u13b5\\u13af\\u13cd\\u13d3\": 12816,\n    \"\\u2581\\u13d9\\u13a6\\u13d3\\u13f2\\u13b5\\u13b8\": 12817,\n    \"\\u2581\\u13d9\\u13b5\\u13d3\\u13cd\\u13c6\": 12818,\n    \"\\u2581\\u13d9\\u13d3\\u13a6\\u13e5\\u13ef\\u13df\\u13b6\\u13cd\\u13d4\\u13c2\": 12819,\n    \"\\u2581\\u13d9\\u13d3\\u13e6\\u13b5\\u13cd\\u13d4\\u13c2\": 12820,\n    \"\\u2581\\u13d9\\u13d8\\u13f4\\u13d4\\u13c2\\u13b5\": 12821,\n    \"\\u2581\\u13d9\\u13db\\u13a0\\u13b4\\u13af\\u13cc\\u13c2\": 12822,\n    \"\\u2581\\u13da\\u13b5\\u13d6\\u13b8\\u13c1\": 12823,\n    \"\\u2581\\u13da\\u13be\\u13c1\\u13b3\\u13d7\\u13d9\\u13b4\": 12824,\n    \"\\u2581\\u13da\\u13be\\u13c1\\u13cd\\u13d3\\u13dd\\u13b0\\u13a2\": 12825,\n    \"\\u2581\\u13da\\u13be\\u13d0\\u13d3\\u13b8\": 12826,\n    \"\\u2581\\u13da\\u13be\\u13d7\\u13eb\\u13cd\\u13d7\\u13cd\\u13a8\": 12827,\n    \"\\u2581\\u13da\\u13be\\u13e6\\u13ad\\u13f1\\u13b8\": 12828,\n    \"\\u2581\\u13da\\u13c2\\u13b5\\u13f0\\u13d7\\u13cd\\u13ac\": 12829,\n    \"\\u2581\\u13da\\u13c2\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\\u13b2\": 12830,\n    \"\\u2581\\u13da\\u13cc\\u13ec\\u13b4\": 12831,\n    \"\\u2581\\u13da\\u13cd\\u13c6\\u13b8\\u13d4\\u13c5\": 12832,\n    \"\\u2581\\u13da\\u13d7\\u13a6\\u13b4\\u13ef\\u13cd\\u13d4\\u13c5\": 12833,\n    \"\\u2581\\u13da\\u13df\\u13b7\\u13c6\\u13d7\\u13c5\\u13ce\": 12834,\n    \"\\u2581\\u13da\\u13e5\\u13cd\\u13e0\\u13e8\\u13a9\": 12835,\n    \"\\u2581\\u13da\\u13e9\\u13c5\\u13a6\\u13e2\": 12836,\n    \"\\u2581\\u13da\\u13ee\\u13a9\\u13b6\\u13a5\\u13a9\": 12837,\n    \"\\u2581\\u13da\\u13ef\\u13cd\\u13dc\\u13db\": 12838,\n    \"\\u2581\\u13db\\u13a9\\u13ef\\u13c5\\u13a1\\u13b4\\u13cd\\u13d7\": 12839,\n    \"\\u2581\\u13db\\u13b5\\u13f0\\u13a2\\u13b8\\u13cd\\u13d3\": 12840,\n    \"\\u2581\\u13db\\u13be\\u13b5\\u13db\\u13d4\\u13c2\": 12841,\n    \"\\u2581\\u13db\\u13cb\\u13cd\\u13a6\\u13b8\\u13c2\": 12842,\n    \"\\u2581\\u13e3\\u13e5\\u13f0\\u13b8\\u13be\\u13c1\\u13b4\\u13a2\": 12843,\n    \"\\u2581\\u13e5\\u13a6\\u13a7\\u13b0\\u13a2\": 12844,\n    \"\\u2581\\u13e5\\u13ac\\u13a9\\u13be\\u13b8\\u13cd\\u13d4\\u13c5\\u13a9\": 12845,\n    \"\\u2581\\u13e5\\u13c1\\u13e3\\u13db\\u13a9\\u13cd\\u13aa\\u13a2\": 12846,\n    \"\\u2581\\u13e5\\u13c2\\u13d5\\u13af\\u13ea\\u13ce\\u13b8\\u13a9\": 12847,\n    \"\\u2581\\u13e5\\u13c2\\u13da\\u13e9\\u13c1\\u13b8\": 12848,\n    \"\\u2581\\u13e5\\u13cd\\u13a9\\u13ef\\u13c2\\u13a9\\u13cd\\u13d3\": 12849,\n    \"\\u2581\\u13e5\\u13d3\\u13c5\\u13bf\\u13d7\\u13cd\\u13d9\\u13d7\": 12850,\n    \"\\u2581\\u13e5\\u13d3\\u13da\\u13eb\\u13cd\\u13d7\\u13ad\": 12851,\n    \"\\u2581\\u13e5\\u13da\\u13e3\\u13c3\\u13db\\u13a9\": 12852,\n    \"\\u2581\\u13e5\\u13eb\\u13d7\\u13a6\\u13b8\\u13cc\\u13d3\\u13d7\\u13cd\\u13aa\\u13a2\": 12853,\n    \"\\u2581\\u13e5\\u13eb\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\": 12854,\n    \"\\u2581\\u13e5\\u13ef\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13ac\\u13a2\": 12855,\n    \"\\u2581\\u13e5\\u13ef\\u13d3\\u13c1\\u13df\\u13f4\\u13cd\\u13d3\\u13c1\\u13b8\": 12856,\n    \"\\u2581\\u13e5\\u13ef\\u13da\\u13e3\\u13b3\\u13c5\\u13ad\": 12857,\n    \"\\u2581\\u13e6\\u13a6\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\\u13f1\": 12858,\n    \"\\u2581\\u13e6\\u13a9\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\\u13f1\": 12859,\n    \"\\u2581\\u13e6\\u13e3\\u13b5\\u13e5\\u13d9\\u13c1\\u13d7\\u13f1\": 12860,\n    \"\\u2581\\u13e7\\u13c3\\u13d5\\u13af\\u13af\": 12861,\n    \"\\u2581\\u13e7\\u13e3\\u13ec\\u13d3\": 12862,\n    \"\\u2581\\u13e8\\u13e7\\u13b6\\u13ce\\u13a2\": 12863,\n    \"\\u2581\\u13e9\\u13c2\\u13b6\\u13d2\\u13ad\": 12864,\n    \"\\u2581\\u13e9\\u13c6\\u13d8\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 12865,\n    \"\\u2581\\u13eb\\u13a4\\u13ea\\u13c5\": 12866,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13f2\\u13e5\\u13d3\\u13cd\\u13d7\": 12867,\n    \"\\u2581\\u13eb\\u13c2\\u13da\\u13e9\\u13c1\\u13b4\": 12868,\n    \"\\u2581\\u13eb\\u13c4\\u13be\\u13db\\u13c1\\u13b8\\u13a9\": 12869,\n    \"\\u2581\\u13eb\\u13d9\\u13db\\u13be\\u13b4\\u13d4\\u13c2\": 12870,\n    \"\\u2581\\u13eb\\u13d9\\u13db\\u13be\\u13d3\\u13a1\\u13cf\": 12871,\n    \"\\u2581\\u13eb\\u13d9\\u13db\\u13c2\\u13f2\\u13af\\u13ce\\u13b5\": 12872,\n    \"\\u2581\\u13eb\\u13da\\u13a6\\u13d4\\u13b2\\u13cd\\u13d9\\u13d7\\u13f1\": 12873,\n    \"\\u2581\\u13eb\\u13f1\\u13e3\\u13a7\\u13b2\\u13a6\": 12874,\n    \"\\u2581\\u13ed\\u13c1\\u13b3\\u13d7\\u13d3\": 12875,\n    \"\\u2581\\u13ed\\u13c1\\u13d9\\u13b8\\u13af\": 12876,\n    \"\\u2581\\u13ed\\u13d3\\u13ec\\u13a5\\u13cd\\u13d7\": 12877,\n    \"\\u2581\\u13ed\\u13d7\\u13cd\\u13a6\\u13dd\\u13c1\": 12878,\n    \"\\u2581\\u13ed\\u13e9\\u13ef\\u13b8\\u13e5\\u13b4\": 12879,\n    \"\\u2581\\u13ee\\u13d3\\u13f3\\u13ce\\u13ae\\u13b5\": 12880,\n    \"\\u2581\\u13ee\\u13db\\u13c2\\u13b6\\u13cf\": 12881,\n    \"\\u2581\\u13ef\\u13a9\\u13b7\\u13e4\\u13b4\\u13cd\\u13d7\": 12882,\n    \"\\u2581\\u13ef\\u13be\\u13d3\\u13c5\\u13cd\\u13ac\\u13be\": 12883,\n    \"\\u2581\\u13ef\\u13c2\\u13cd\\u13d9\\u13b0\\u13a2\": 12884,\n    \"\\u2581\\u13ef\\u13c9\\u13af\\u13f3\\u13ae\": 12885,\n    \"\\u2581\\u13ef\\u13d5\\u13e0\\u13c6\\u13cd\\u13a6\": 12886,\n    \"\\u2581\\u13f1\\u13c1\\u13e8\\u13be\\u13d5\\u13a8\\u13cd\\u13d7\": 12887,\n    \"\\u2581\\u13f1\\u13c5\\u13e7\\u13b5\\u13cd\\u13d9\\u13d4\\u13c1\": 12888,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13a6\\u13d4\\u13ae\\u13a2\": 12889,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13f2\\u13a2\\u13f3\\u13b2\\u13cd\\u13a6\": 12890,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13f2\\u13a2\\u13f3\\u13c1\\u13a2\": 12891,\n    \"\\u2581\\u13f1\\u13cd\\u13c6\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 12892,\n    \"\\u2581\\u13f1\\u13d3\\u13c2\\u13cd\\u13d3\\u13e9\\u13a6\\u13a6\": 12893,\n    \"\\u2581\\u13f1\\u13d5\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\": 12894,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\": 12895,\n    \"\\u2581\\u13f1\\u13da\\u13c2\\u13bf\\u13cd\\u13d5\\u13e0\\u13a2\": 12896,\n    \"\\u2581\\u13f1\\u13e3\\u13cd\\u13a6\\u13c5\\u13e4\\u13cd\\u13d7\": 12897,\n    \"\\u2581\\u13f1\\u13e5\\u13aa\\u13c1\\u13b6\\u13cd\\u13a8\\u13cd\\u13d7\": 12898,\n    \"\\u2581\\u13f1\\u13e6\\u13af\\u13f3\\u13ad\": 12899,\n    \"\\u2581\\u13f1\\u13e6\\u13af\\u13f3\\u13c1\\u13cd\\u13d7\": 12900,\n    \"\\u2581\\u13f3\\u13a6\\u13cc\\u13ef\\u13cd\\u13d4\\u13c1\": 12901,\n    \"\\u2581\\u13f3\\u13c2\\u13ec\\u13c2\\u13cc\": 12902,\n    \"\\u2581\\u13f4\\u13a6\\u13ac\\u13f4\\u13d5\\u13a9\": 12903,\n    \"\\u2581\\u13f4\\u13ac\\u13da\\u13d3\\u13b4\\u13cd\\u13d3\": 12904,\n    \"\\u2581\\u13a0\\u13a9\\u13aa\\u13e9\\u13d8\\u13cd\\u13a9\": 12905,\n    \"\\u2581\\u13a0\\u13b5\\u13d6\\u13b8\\u13c2\\u13ae\\u13a2\": 12906,\n    \"\\u2581\\u13a0\\u13c2\\u13eb\\u13c4\\u13e3\": 12907,\n    \"\\u2581\\u13a0\\u13c2\\u13eb\\u13c5\\u13a8\\u13cc\\u13c2\": 12908,\n    \"\\u2581\\u13a0\\u13c5\\u13f3\\u13e4\\u13b2\": 12909,\n    \"\\u2581\\u13a0\\u13eb\\u13d2\\u13a5\\u13cd\\u13a9\": 12910,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b8\\u13a2\\u13cd\\u13d4\\u13c5\": 12911,\n    \"\\u2581\\u13a4\\u13c4\\u13b6\\u13b8\": 12912,\n    \"\\u2581\\u13ac\\u13f2\\u13b5\\u13cd\\u13d4\\u13c5\": 12913,\n    \"\\u2581\\u13c2\\u13db\\u13c5\\u13c1\\u13b5\": 12914,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13cd\\u13a8\\u13cd\\u13d7\": 12915,\n    \"\\u2581\\u13d5\\u13a4\\u13ec\\u13a1\\u13a2\": 12916,\n    \"\\u2581\\u13d5\\u13e5\\u13a6\\u13cc\\u13ec\\u13a2\\u13b2\\u13a2\": 12917,\n    \"\\u2581\\u13db\\u13c3\\u13b5\\u13e5\": 12918,\n    \"\\u2581\\u13e5\\u13bf\\u13db\\u13a6\": 12919,\n    \"\\u2581\\u13eb\\u13d7\\u13cd\\u13a9\\u13ef\\u13d8\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 12920,\n    \"\\u2581\\u13ef\\u13a9\\u13f2\\u13cf\\u13ad\": 12921,\n    \"\\u2581\\u13f3\\u13f0\\u13b5\\u13db\\u13be\": 12922,\n    \"\\u13a6\\u13d9\\u13b4\\u13b0\\u13cd\\u13a6\": 12923,\n    \"\\u13a9\\u13f0\\u13b3\\u13d7\\u13d9\\u13ad\": 12924,\n    \"\\u13c2\\u13a8\\u13af\\u13d9\\u13b5\": 12925,\n    \"\\u13cc\\u13c6\\u13de\": 12926,\n    \"\\u13cd\\u13ab\\u13c6\": 12927,\n    \"\\u13e5\\u13a6\\u13d6\\u13c3\\u13ae\\u13cd\\u13d7\": 12928,\n    \"\\u13e9\\u13d2\\u13d9\\u13a3\\u13ce\": 12929,\n    \"\\u13f4\\u13cd\\u13d3\\u13a9\\u13cd\\u13a9\": 12930,\n    \"\\u2581\\u13a0\\u13a6\\u13be\\u13ec\\u13d7\\u13cd\": 12931,\n    \"\\u2581\\u13a0\\u13c4\\u13d6\\u13cd\\u13a8\": 12932,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\": 12933,\n    \"\\u2581\\u13a0\\u13cd\\u13ab\\u13d5\\u13cd\\u13a9\": 12934,\n    \"\\u2581\\u13a1\\u13b5\\u13a1\\u13cc\": 12935,\n    \"\\u2581\\u13a1\\u13e5\\u13d4\\u13f2\\u13ce\\u13ae\\u13cd\\u13d7\": 12936,\n    \"\\u2581\\u13a2\\u13a1\\u13e5\\u13aa\\u13b5\\u13f0\": 12937,\n    \"\\u2581\\u13a2\\u13a9\\u13f2\\u13b1\\u13af\\u13ce\\u13b8\": 12938,\n    \"\\u2581\\u13a2\\u13cd\\u13a9\\u13c3\\u13c1\\u13b5\\u13b8\": 12939,\n    \"\\u2581\\u13a2\\u13cd\\u13a9\\u13cd\\u13a6\\u13a6\": 12940,\n    \"\\u2581\\u13a4\\u13a6\\u13f4\\u13b3\\u13e8\": 12941,\n    \"\\u2581\\u13a4\\u13b5\\u13a9\\u13f3\\u13cd\": 12942,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a9\\u13c3\\u13d8\\u13cd\": 12943,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13d2\\u13a5\\u13cd\\u13a9\": 12944,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13c5\\u13e8\": 12945,\n    \"\\u2581\\u13a4\\u13d6\\u13b8\\u13c5\": 12946,\n    \"\\u2581\\u13a5\\u13c6\\u13a8\\u13c5\\u13db\": 12947,\n    \"\\u2581\\u13ac\\u13be\\u13f0\\u13cd\\u13ac\": 12948,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13f2\\u13e5\\u13d9\\u13b8\": 12949,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\\u13b0\\u13d4\\u13c1\\u13a2\": 12950,\n    \"\\u2581\\u13ad\\u13d9\\u13ef\\u13c5\\u13af\": 12951,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13ef\\u13db\\u13c1\\u13b8\\u13a9\": 12952,\n    \"\\u2581\\u13c2\\u13bb\\u13b6\\u13d7\": 12953,\n    \"\\u2581\\u13c2\\u13d3\\u13a6\\u13db\\u13c1\\u13b5\": 12954,\n    \"\\u2581\\u13c2\\u13d9\\u13d3\\u13ac\\u13e9\": 12955,\n    \"\\u2581\\u13c5\\u13e7\\u13db\\u13bf\\u13d7\\u13ce\": 12956,\n    \"\\u2581\\u13d3\\u13c2\\u13c4\\u13aa\\u13eb\\u13cd\": 12957,\n    \"\\u2581\\u13d3\\u13f3\\u13d0\\u13c5\\u13c2\": 12958,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13b4\\u13d7\": 12959,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13e1\\u13e9\\u13d7\\u13d2\": 12960,\n    \"\\u2581\\u13d5\\u13e5\\u13b3\\u13eb\\u13e6\\u13af\\u13b2\": 12961,\n    \"\\u2581\\u13d5\\u13e5\\u13c4\\u13aa\\u13eb\\u13cd\": 12962,\n    \"\\u2581\\u13d7\\u13a6\\u13a6\\u13e0\\u13f1\\u13af\": 12963,\n    \"\\u2581\\u13d7\\u13a9\\u13be\\u13e2\\u13d7\\u13f1\": 12964,\n    \"\\u2581\\u13da\\u13b3\\u13d1\\u13de\": 12965,\n    \"\\u2581\\u13db\\u13b5\\u13cd\\u13d3\\u13f4\\u13c2\": 12966,\n    \"\\u2581\\u13e3\\u13c2\\u13d9\\u13be\\u13a0\": 12967,\n    \"\\u2581\\u13e3\\u13e6\\u13d4\\u13cd\\u13d4\\u13c5\": 12968,\n    \"\\u2581\\u13e5\\u13d5\\u13be\\u13e6\\u13af\": 12969,\n    \"\\u2581\\u13e5\\u13da\\u13f1\\u13b6\\u13b4\\u13a2\": 12970,\n    \"\\u2581\\u13e7\\u13c3\\u13b8\\u13d4\\u13c2\\u13d9\\u13b0\": 12971,\n    \"\\u2581\\u13e7\\u13c4\\u13aa\\u13e8\": 12972,\n    \"\\u2581\\u13e7\\u13da\\u13aa\\u13d9\\u13d7\": 12973,\n    \"\\u2581\\u13f1\\u13a6\\u13b3\\u13cd\\u13e2\": 12974,\n    \"\\u2581\\u13f1\\u13ea\\u13e3\\u13d3\\u13a2\\u13c5\": 12975,\n    \"\\u2581\\u13f3\\u13c2\\u13da\\u13ac\\u13be\": 12976,\n    \"\\u2581\\u13f4\\u13ac\\u13d3\\u13db\\u13a6\": 12977,\n    \"\\u13a8\\u13a9\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a9\": 12978,\n    \"\\u13ad\\u13c4\\u13ed\": 12979,\n    \"\\u13b3\\u13eb\\u13ce\\u13b5\": 12980,\n    \"\\u13cd\\u13da\\u13a2\\u13a1\\u13d7\\u13f1\": 12981,\n    \"\\u13d3\\u13be\\u13c7\\u13cd\\u13ac\": 12982,\n    \"\\u13da\\u13be\\u13d3\\u13e9\\u13db\\u13d4\\u13c1\\u13a2\": 12983,\n    \"\\u13da\\u13d4\\u13b2\\u13a2\": 12984,\n    \"\\u13e3\\u13ac\\u13e9\\u13b3\\u13c5\\u13af\": 12985,\n    \"\\u13ec\\u13c1\\u13d4\\u13c2\": 12986,\n    \"\\u13f4\\u13a7\\u13c1\\u13b5\": 12987,\n    \"\\u2581\\u13a0\\u13a6\\u13d0\\u13a0\\u13cf\\u13af\\u13b2\": 12988,\n    \"\\u2581\\u13a0\\u13b5\\u13d2\\u13a2\\u13cd\\u13d9\\u13d7\": 12989,\n    \"\\u2581\\u13a0\\u13c5\\u13f3\\u13ac\": 12990,\n    \"\\u2581\\u13a2\\u13e5\\u13d1\\u13b5\\u13aa\\u13a2\": 12991,\n    \"\\u2581\\u13a2\\u13e8\\u13a9\\u13b5\\u13f2\\u13e4\\u13b2\": 12992,\n    \"\\u2581\\u13a4\\u13be\\u13cd\\u13d5\\u13e5\": 12993,\n    \"\\u2581\\u13a5\\u13e5\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 12994,\n    \"\\u2581\\u13a5\\u13e5\\u13ef\\u13db\\u13a6\\u13c1\\u13b8\\u13a9\": 12995,\n    \"\\u2581\\u13c2\\u13e4\\u13b5\\u13cd\\u13ac\\u13be\": 12996,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d7\\u13d9\\u13d7\\u13cd\": 12997,\n    \"\\u2581\\u13d5\\u13a6\\u13d3\\u13ec\\u13cd\\u13d7\\u13ad\": 12998,\n    \"\\u2581\\u13d5\\u13e5\\u13f2\\u13cd\\u13a8\\u13cd\\u13d7\": 12999,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13d0\\u13c5\\u13c5\\u13af\": 13000,\n    \"\\u2581\\u13d7\\u13a9\\u13a7\\u13c1\\u13f4\\u13d7\\u13f1\": 13001,\n    \"\\u2581\\u13d9\\u13e8\\u13c5\\u13a2\": 13002,\n    \"\\u2581\\u13da\\u13df\\u13b6\\u13cd\\u13d4\\u13c1\\u13b4\": 13003,\n    \"\\u2581\\u13db\\u13be\\u13d3\\u13c5\\u13d3\\u13d7\": 13004,\n    \"\\u2581\\u13e7\\u13be\\u13b5\\u13c2\\u13a6\\u13c2\": 13005,\n    \"\\u2581\\u13e7\\u13c2\\u13be\\u13e6\\u13f4\\u13cd\\u13d7\": 13006,\n    \"\\u2581\\u13e9\\u13d0\\u13dd\": 13007,\n    \"\\u2581\\u13eb\\u13c2\\u13da\\u13c5\": 13008,\n    \"\\u2581\\u13eb\\u13d3\\u13c2\\u13c5\\u13a8\\u13a2\": 13009,\n    \"\\u2581\\u13eb\\u13e5\\u13be\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\\u13f1\": 13010,\n    \"\\u2581\\u13ed\\u13d3\\u13a9\\u13c5\\u13d2\": 13011,\n    \"\\u2581\\u13ed\\u13e9\\u13be\\u13ec\": 13012,\n    \"\\u2581\\u13ed\\u13ec\\u13af\\u13b6\": 13013,\n    \"\\u2581\\u13ee\\u13a0\\u13a6\\u13d4\\u13b2\\u13cd\\u13d3\": 13014,\n    \"\\u2581\\u13f3\\u13ac\\u13eb\\u13f3\\u13ad\": 13015,\n    \"\\u2581\\u13f3\\u13e9\\u13a8\\u13eb\": 13016,\n    \"\\u13a0\\u13c6\\u13d8\\u13c2\\u13d9\": 13017,\n    \"\\u13a7\\u13d9\\u13f4\": 13018,\n    \"\\u13d0\\u13e2\\u13a2\\u13cd\\u13d4\\u13c1\\u13a2\": 13019,\n    \"\\u13d5\\u13ad\\u13d3\\u13df\\u13f4\\u13b2\": 13020,\n    \"\\u13d7\\u13cd\\u13a6\\u13c5\\u13a8\\u13cd\\u13d7\": 13021,\n    \"\\u13ef\\u13d9\\u13b4\\u13a3\\u13af\": 13022,\n    \"\\u2581\\u13a0\\u13a9\\u13c2\\u13f0\\u13b8\": 13023,\n    \"\\u2581\\u13a0\\u13d3\\u13bf\\u13cd\\u13c6\\u13b6\\u13cd\\u13d7\\u13cd\\u13a9\": 13024,\n    \"\\u2581\\u13a1\\u13e3\\u13db\\u13d3\\u13cd\\u13d3\\u13cf\": 13025,\n    \"\\u2581\\u13a3\\u13a6\\u13e2\\u13c6\\u13d2\": 13026,\n    \"\\u2581\\u13a4\\u13cd\\u13d8\\u13f0\\u13c5\\u13af\": 13027,\n    \"\\u2581\\u13ac\\u13e9\\u13a6\\u13d8\\u13d7\\u13cd\\u13a9\": 13028,\n    \"\\u2581\\u13ad\\u13c7\\u13c5\\u13cd\\u13d7\": 13029,\n    \"\\u2581\\u13af\\u13a8\\u13f3\\u13a2\": 13030,\n    \"\\u2581\\u13c2\\u13d3\\u13b5\\u13cd\\u13d7\\u13ad\": 13031,\n    \"\\u2581\\u13c3\\u13e3\\u13db\\u13c1\\u13b2\": 13032,\n    \"\\u2581\\u13d0\\u13f1\\u13c1\\u13b3\": 13033,\n    \"\\u2581\\u13d7\\u13c5\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\": 13034,\n    \"\\u2581\\u13da\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 13035,\n    \"\\u2581\\u13e5\\u13da\\u13ed\\u13d3\": 13036,\n    \"\\u2581\\u13e7\\u13c2\\u13c4\\u13aa\\u13e8\": 13037,\n    \"\\u2581\\u13f1\\u13a8\\u13b5\\u13cd\\u13a8\": 13038,\n    \"\\u2581\\u13f3\\u13c2\\u13b7\\u13e4\\u13ae\": 13039,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13f2\\u13a6\": 13040,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13db\\u13e7\\u13cd\\u13d7\": 13041,\n    \"\\u2581\\u13a0\\u13b5\\u13d8\\u13cd\\u13aa\\u13a2\": 13042,\n    \"\\u2581\\u13a0\\u13c6\\u13c2\\u13a9\\u13cd\\u13d7\\u13f1\": 13043,\n    \"\\u2581\\u13a4\\u13a7\\u13f2\\u13d0\\u13c1\": 13044,\n    \"\\u2581\\u13a4\\u13ac\\u13cd\\u13c9\\u13a1\": 13045,\n    \"\\u2581\\u13a4\\u13be\\u13f0\\u13d2\\u13af\": 13046,\n    \"\\u2581\\u13c2\\u13da\\u13b3\\u13cd\\u13ac\\u13a2\": 13047,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13d3\\u13c1\\u13b6\\u13db\\u13be\": 13048,\n    \"\\u2581\\u13e3\\u13b6\\u13c5\\u13ae\\u13ad\": 13049,\n    \"\\u2581\\u13e5\\u13e3\\u13e3\\u13a0\": 13050,\n    \"\\u2581\\u13e9\\u13cd\\u13d6\\u13cd\\u13d7\": 13051,\n    \"\\u2581\\u13ef\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13a2\": 13052,\n    \"\\u2581\\u13f2\\u13cd\\u13d7\\u13a6\\u13d4\\u13ad\": 13053,\n    \"\\u13a8\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b4\\u13a2\": 13054,\n    \"\\u13a8\\u13e6\\u13ce\\u13b0\": 13055,\n    \"\\u13c1\\u13b6\\u13b2\\u13cd\\u13a9\": 13056,\n    \"\\u13da\\u13e3\\u13aa\\u13ce\": 13057,\n    \"\\u13e9\\u13cd\\u13a6\\u13b8\\u13c1\\u13a2\": 13058,\n    \"\\u13eb\\u13da\\u13d8\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 13059,\n    \"\\u13ec\\u13c1\\u13d7\\u13cd\\u13a9\": 13060,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13db\\u13cd\\u13ac\\u13a2\": 13061,\n    \"\\u2581\\u13a0\\u13e0\\u13c4\\u13ae\\u13db\": 13062,\n    \"\\u2581\\u13a2\\u13a0\\u13e5\\u13e9\\u13db\\u13b2\\u13c3\": 13063,\n    \"\\u2581\\u13a3\\u13e3\\u13c1\\u13e6\\u13a5\\u13cd\": 13064,\n    \"\\u2581\\u13ac\\u13c7\\u13c5\\u13cd\\u13d7\": 13065,\n    \"\\u2581\\u13ad\\u13d3\\u13f3\\u13a6\": 13066,\n    \"\\u2581\\u13c2\\u13e3\\u13d3\\u13a8\\u13d2\": 13067,\n    \"\\u2581\\u13d5\\u13a6\\u13c3\\u13e3\\u13e2\": 13068,\n    \"\\u2581\\u13d5\\u13a8\\u13ab\\u13aa\\u13d3\\u13c1\": 13069,\n    \"\\u2581\\u13d7\\u13a6\\u13b6\\u13d0\\u13b2\\u13cd\\u13a9\": 13070,\n    \"\\u2581\\u13d7\\u13cd\\u13c7\\u13f2\\u13b2\\u13cd\\u13a9\": 13071,\n    \"\\u2581\\u13d9\\u13a9\\u13ef\\u13ea\\u13e5\\u13d9\": 13072,\n    \"\\u2581\\u13d9\\u13d3\\u13a6\\u13e5\\u13f3\\u13aa\\u13d3\\u13c1\\u13b5\": 13073,\n    \"\\u2581\\u13d9\\u13d3\\u13e8\\u13f2\\u13af\\u13ce\\u13b5\": 13074,\n    \"\\u2581\\u13da\\u13c2\\u13cd\\u13c6\\u13b8\\u13d4\": 13075,\n    \"\\u2581\\u13e3\\u13c1\\u13c9\\u13a5\\u13af\": 13076,\n    \"\\u2581\\u13e5\\u13ac\\u13f2\\u13ce\\u13b8\\u13a9\": 13077,\n    \"\\u2581\\u13e5\\u13c2\\u13d3\\u13a6\\u13d4\\u13b0\\u13a2\": 13078,\n    \"\\u2581\\u13e5\\u13c2\\u13da\\u13ea\\u13ce\\u13b4\\u13a2\": 13079,\n    \"\\u2581\\u13e6\\u13ea\\u13b3\\u13c5\\u13a9\": 13080,\n    \"\\u2581\\u13e7\\u13d9\\u13a8\\u13cd\\u13a9\": 13081,\n    \"\\u2581\\u13eb\\u13e5\\u13a7\\u13c5\\u13af\": 13082,\n    \"\\u2581\\u13f3\\u13a8\\u13c5\\u13db\": 13083,\n    \"\\u13a9\\u13f0\\u13f2\\u13d7\": 13084,\n    \"\\u13ad\\u13d3\\u13be\\u13eb\\u13d7\\u13cd\": 13085,\n    \"\\u13c2\\u13d2\\u13b3\\u13cd\\u13a8\": 13086,\n    \"\\u13ef\\u13e0\\u13a9\\u13c9\": 13087,\n    \"\\u2581\\u13a0\\u13be\\u13d9\\u13c2\\u13cd\\u13a9\": 13088,\n    \"\\u2581\\u13a0\\u13d3\\u13ec\\u13cd\\u13ac\": 13089,\n    \"\\u2581\\u13a0\\u13d3\\u13f4\\u13cd\\u13d5\\u13cd\\u13a9\": 13090,\n    \"\\u2581\\u13a2\\u13a8\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 13091,\n    \"\\u2581\\u13a3\\u13c2\\u13cf\\u13b9\": 13092,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13aa\\u13f3\\u13b2\": 13093,\n    \"\\u2581\\u13a6\\u13b4\\u13eb\\u13cd\\u13d7\": 13094,\n    \"\\u2581\\u13d3\\u13a6\\u13c1\\u13d0\": 13095,\n    \"\\u2581\\u13d3\\u13c7\\u13b7\\u13ac\": 13096,\n    \"\\u2581\\u13d5\\u13a6\\u13df\\u13b6\\u13cd\\u13d7\\u13cd\\u13ac\": 13097,\n    \"\\u2581\\u13da\\u13be\\u13d8\\u13d4\": 13098,\n    \"\\u2581\\u13e3\\u13d3\\u13a6\\u13cc\": 13099,\n    \"\\u2581\\u13e4\\u13e7\\u13aa\\u13d3\\u13c1\": 13100,\n    \"\\u2581\\u13e7\\u13a6\\u13d4\\u13d8\": 13101,\n    \"\\u2581\\u13e7\\u13c2\\u13e8\\u13cd\\u13d9\\u13d7\": 13102,\n    \"\\u13d3\\u13a9\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13b8\": 13103,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13ae\": 13104,\n    \"\\u2581\\u13a0\\u13c2\\u13eb\\u13d2\\u13a5\\u13cd\\u13a9\": 13105,\n    \"\\u2581\\u13a0\\u13c6\\u13d8\\u13c2\\u13d9\\u13b2\\u13a9\": 13106,\n    \"\\u2581\\u13a4\\u13ea\\u13e9\\u13d2\\u13a2\\u13cd\\u13d7\": 13107,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13a6\\u13c2\": 13108,\n    \"\\u2581\\u13aa\\u13ce\\u13b0\": 13109,\n    \"\\u2581\\u13af\\u13c2\\u13cc\\u13c9\": 13110,\n    \"\\u2581\\u13c2\\u13a8\\u13b5\\u13cd\\u13aa\": 13111,\n    \"\\u2581\\u13d3\\u13c2\\u13b6\\u13d2\\u13ad\": 13112,\n    \"\\u2581\\u13d3\\u13e5\\u13b5\\u13ec\\u13e5\": 13113,\n    \"\\u2581\\u13d5\\u13d3\\u13e6\\u13cd\\u13ac\\u13a2\": 13114,\n    \"\\u2581\\u13d7\\u13c2\\u13b3\\u13eb\\u13e6\\u13af\\u13af\": 13115,\n    \"\\u2581\\u13da\\u13d4\\u13ea\\u13d9\\u13c1\": 13116,\n    \"\\u2581\\u13db\\u13a1\\u13e5\": 13117,\n    \"\\u2581\\u13e3\\u13f0\\u13b8\\u13ce\\u13cd\\u13d7\": 13118,\n    \"\\u2581\\u13a0\\u13c9\\u13db\\u13b8\\u13af\": 13119,\n    \"\\u2581\\u13ac\\u13d5\\u13d8\\u13f1\\u13a9\": 13120,\n    \"\\u2581\\u13d3\\u13ac\\u13ef\\u13ce\\u13ae\\u13b5\": 13121,\n    \"\\u2581\\u13e7\\u13c2\\u13c2\\u13f4\\u13d3\": 13122,\n    \"\\u13d3\\u13bf\\u13eb\": 13123,\n    \"\\u13d7\\u13da\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 13124,\n    \"\\u13da\\u13be\\u13c4\\u13e9\\u13a1\": 13125,\n    \"\\u13e3\\u13b4\\u13eb\\u13cd\\u13d7\\u13cd\\u13ac\": 13126,\n    \"\\u2581\\u13a4\\u13c1\\u13d0\\u13a0\\u13af\\u13cd\\u13d7\": 13127,\n    \"\\u2581\\u13d3\\u13be\\u13b5\\u13c3\\u13ae\\u13b5\\u13d9\\u13b2\": 13128,\n    \"\\u13a6\\u13d2\\u13b3\\u13cd\\u13aa\": 13129,\n    \"\\u13ac\\u13ef\\u13b5\\u13ae\\u13b5\\u13e4\\u13ad\": 13130,\n    \"\\u13d1\\u13b4\\u13cd\\u13aa\": 13131,\n    \"\\u13da\\u13a6\\u13b4\\u13c5\\u13d4\\u13c1\": 13132,\n    \"\\u13ec\\u13ce\\u13b5\": 13133,\n    \"\\u2581\\u13a0\\u13a9\\u13ef\\u13a3\\u13c5\": 13134,\n    \"\\u2581\\u13a1\\u13e7\\u13a2\\u13cd\\u13d7\": 13135,\n    \"\\u2581\\u13ac\\u13e9\\u13b5\\u13e0\\u13ef\\u13cd\\u13d7\": 13136,\n    \"\\u2581\\u13c2\\u13e8\\u13ef\\u13db\\u13c1\\u13b8\": 13137,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 13138,\n    \"\\u2581\\u13cd\\u13c6\\u13c2\\u13cf\\u13b2\\u13cf\": 13139,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\": 13140,\n    \"\\u2581\\u13d8\\u13bb\\u13be\": 13141,\n    \"\\u2581\\u13e5\\u13c2\\u13e5\\u13ea\\u13cd\\u13ac\\u13a9\": 13142,\n    \"\\u2581\\u13eb\\u13a6\\u13d3\\u13a5\": 13143,\n    \"\\u2581\\u13eb\\u13e5\\u13b6\\u13d2\\u13a9\": 13144,\n    \"\\u2581\\u13f1\\u13ab\\u13e9\\u13c2\": 13145,\n    \"\\u2581\\u13f1\\u13d7\\u13e6\\u13af\\u13f3\": 13146,\n    \"\\u2581\\u13a0\\u13be\\u13cd\\u13a9\\u13d3\\u13d2\\u13a5\\u13cd\": 13147,\n    \"\\u2581\\u13a4\\u13a6\\u13b6\\u13ac\": 13148,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13f4\\u13b5\\u13d3\": 13149,\n    \"den\": 13150,\n    \"\\u13c1\\u13b7\\u13a9\\u13a1\\u13b8\": 13151,\n    \"\\u13d3\\u13d3\\u13da\\u13aa\\u13d3\\u13c1\\u13b2\": 13152,\n    \"\\u13d9\\u13e7\\u13c4\\u13aa\\u13eb\\u13ce\\u13a2\": 13153,\n    \"\\u2581Pri\": 13154,\n    \"\\u2581\\u13a0\\u13f2\\u13d3\\u13d2\": 13155,\n    \"\\u2581\\u13a3\\u13a6\\u13d5\\u13d7\\u13f1\": 13156,\n    \"\\u2581\\u13a3\\u13cd\\u13d7\\u13f4\\u13a9\": 13157,\n    \"\\u2581\\u13a6\\u13b3\\u13cd\\u13e2\": 13158,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13b2\\u13cd\\u13ac\": 13159,\n    \"\\u2581\\u13ac\\u13c7\\u13b8\": 13160,\n    \"\\u2581\\u13cc\\u13ec\\u13db\": 13161,\n    \"\\u2581\\u13d3\\u13e4\\u13f2\\u13c2\": 13162,\n    \"\\u2581\\u13d5\\u13db\\u13c1\\u13cd\\u13d7\": 13163,\n    \"\\u2581\\u13e5\\u13af\\u13c3\\u13c1\\u13b5\": 13164,\n    \"\\u2581\\u13e7\\u13cd\\u13da\\u13a2\\u13a1\\u13b8\\u13af\": 13165,\n    \"\\u2581\\u13e6\\u13cc\\u13ef\": 13166,\n    \"\\u2581\\u13c2\\u13ac\\u13a9\\u13f2\\u13b8\\u13be\": 13167,\n    \"\\u2581\\u13c5\\u13d7\\u13a0\\u13e5\\u13ea\\u13ce\": 13168,\n    \"\\u2581\\u13eb\\u13d9\\u13d3\\u13a8\": 13169,\n    \"\\u2581\\u13f0\\u13e3\\u13db\\u13d3\": 13170,\n    \"\\u13a0\\u13a6\\u13cd\\u13a6\\u13c3\": 13171,\n    \"\\u2581\\u13a4\\u13c4\\u13d3\\u13b4\\u13cd\\u13a9\": 13172,\n    \"\\u2581\\u13a4\\u13d5\\u13af\\u13f4\": 13173,\n    \"\\u2581\\u13ab\\u13ad\\u13df\": 13174,\n    \"\\u2581\\u13ba\\u13a0\": 13175,\n    \"\\u2581\\u13da\\u13f0\\u13cd\\u13db\": 13176,\n    \"\\u2581\\u13e5\\u13d5\\u13a8\\u13e5\": 13177,\n    \"\\u2581\\u13e7\\u13cd\\u13d5\\u13b8\\u13db\": 13178,\n    \"\\u13a6\\u13be\\u13ec\\u13d2\": 13179,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13d6\\u13b8\\u13b2\\u13cd\\u13ac\": 13180,\n    \"\\u2581\\u13a0\\u13c2\\u13f4\\u13cd\\u13d7\\u13cd\\u13a9\": 13181,\n    \"\\u2581\\u13a0\\u13c6\\u13c2\\u13cf\\u13d7\\u13f1\": 13182,\n    \"\\u2581\\u13a0\\u13e5\\u13d3\\u13a6\\u13b8\\u13a2\\u13d2\\u13af\": 13183,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a9\\u13c3\\u13b3\": 13184,\n    \"\\u2581\\u13d7\\u13a6\\u13b7\\u13e5\\u13d2\": 13185,\n    \"\\u2581\\u13da\\u13c1\\u13f2\\u13c1\": 13186,\n    \"\\u2581\\u13e5\\u13ac\\u13e9\\u13c2\\u13db\\u13d4\\u13c1\": 13187,\n    \"\\u2581\\u13a1\\u13e5\\u13e9\\u13db\\u13b2\\u13ad\": 13188,\n    \"\\u13d3\\u13e1\\u13eb\\u13cd\\u13d5\\u13a2\": 13189,\n    \"\\u13d7\\u13eb\\u13ce\\u13b8\\u13a9\": 13190,\n    \"\\u2581\\u13a0\\u13cc\\u13f1\\u13b5\": 13191,\n    \"\\u2581\\u13a0\\u13e3\\u13a9\\u13cd\\u13a9\": 13192,\n    \"\\u2581\\u13a4\\u13a6\\u13be\\u13c5\": 13193,\n    \"\\u2581\\u13a4\\u13cd\\u13a9\\u13c5\\u13d5\": 13194,\n    \"\\u2581\\u13a7\\u13c1\\u13ae\\u13db\": 13195,\n    \"\\u2581\\u13e5\\u13c2\\u13cc\\u13c5\\u13a9\": 13196,\n    \"\\u2581\\u13e5\\u13d9\\u13e3\\u13e0\\u13af\": 13197,\n    \"\\u2581\\u13e7\\u13a8\\u13c5\\u13db\": 13198,\n    \"\\u2581\\u13e7\\u13ce\\u13aa\\u13a9\\u13cd\\u13d7\\u13f1\": 13199,\n    \"\\u2581\\u13a0\\u13d1\\u13ef\\u13a9\\u13db\": 13200,\n    \"\\u2581\\u13a1\\u13d0\\u13cf\": 13201,\n    \"\\u2581\\u13a2\\u13e3\\u13e2\\u13c6\\u13cd\\u13ac\": 13202,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d4\\u13e9\\u13db\": 13203,\n    \"\\u2581\\u13d5\\u13e5\\u13a6\\u13c5\\u13a9\": 13204,\n    \"\\u2581\\u13da\\u13d2\\u13a6\\u13b8\\u13a9\": 13205,\n    \"\\u2581\\u13e5\\u13db\\u13e6\": 13206,\n    \"\\u2581\\u13eb\\u13be\\u13f4\\u13af\": 13207,\n    \"\\u2581\\u13ef\\u13d7\\u13d4\\u13cd\\u13a8\": 13208,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13ea\\u13ad\": 13209,\n    \"\\u2581\\u13f1\\u13e8\\u13c3\\u13c1\\u13b4\\u13a2\": 13210,\n    \"\\u13e5\\u13cd\\u13dd\": 13211,\n    \"\\u2581\\u13a0\\u13c6\\u13cd\\u13aa\\u13d2\\u13af\": 13212,\n    \"\\u2581\\u13a6\\u13c4\\u13d3\\u13b4\\u13a9\": 13213,\n    \"\\u2581\\u13ac\\u13ef\\u13db\\u13a6\\u13c1\\u13b8\": 13214,\n    \"\\u2581\\u13ad\\u13db\\u13c5\\u13ad\": 13215,\n    \"\\u2581\\u13d7\\u13d3\\u13a2\\u13d2\\u13a2\": 13216,\n    \"\\u2581\\u13d9\\u13db\\u13c2\\u13f4\\u13b3\\u13cf\": 13217,\n    \"\\u2581\\u13da\\u13be\\u13d7\\u13cd\\u13da\": 13218,\n    \"\\u2581\\u13da\\u13c2\\u13b3\\u13eb\\u13db\": 13219,\n    \"\\u2581\\u13e7\\u13b5\\u13ef\\u13cf\": 13220,\n    \"\\u2581\\u13eb\\u13ab\\u13e9\\u13c2\\u13b6\\u13af\\u13cd\\u13d7\": 13221,\n    \"\\u2581\\u13eb\\u13f1\\u13e3\\u13f4\": 13222,\n    \"\\u2581\\u13f1\\u13ab\\u13e9\\u13be\": 13223,\n    \"\\u2581\\u13a4\\u13d0\\u13d3\\u13b8\": 13224,\n    \"\\u2581\\u13a4\\u13e3\\u13c3\\u13db\\u13a9\": 13225,\n    \"\\u2581\\u13a6\\u13f2\\u13a9\\u13c2\": 13226,\n    \"\\u2581\\u13c9\\u13d7\\u13c6\": 13227,\n    \"\\u2581\\u13e5\\u13c2\\u13d5\\u13a4\": 13228,\n    \"\\u2581\\u13e5\\u13c2\\u13e8\\u13ea\\u13cf\": 13229,\n    \"\\u2581\\u13f3\\u13ac\\u13e9\": 13230,\n    \"\\u13e3\\u13b5\\u13ae\\u13b5\\u13aa\\u13a2\": 13231,\n    \"\\u2581\\u13a0\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13a2\": 13232,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d4\\u13f4\\u13b2\\u13cd\\u13a8\": 13233,\n    \"\\u2581\\u13a0\\u13c2\\u13af\\u13f2\\u13b2\\u13a2\": 13234,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 13235,\n    \"\\u2581\\u13a2\\u13f3\\u13c5\\u13c2\\u13d0\\u13d7\\u13f1\": 13236,\n    \"\\u2581\\u13a3\\u13a6\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 13237,\n    \"\\u2581\\u13a4\\u13d7\\u13cd\\u13da\\u13c5\": 13238,\n    \"\\u2581\\u13a6\\u13c3\\u13b4\\u13cd\\u13ac\": 13239,\n    \"\\u2581\\u13d9\\u13d3\\u13f2\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 13240,\n    \"\\u2581\\u13d9\\u13d7\\u13c2\\u13a7\\u13c1\\u13a2\": 13241,\n    \"\\u2581\\u13da\\u13b5\\u13e5\\u13cd\": 13242,\n    \"\\u2581\\u13da\\u13d3\\u13b4\\u13c5\\u13d4\\u13c5\": 13243,\n    \"\\u2581\\u13e9\\u13d5\\u13d7\\u13f1\": 13244,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13d8\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 13245,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13d4\\u13ae\": 13246,\n    \"\\u2581\\u13ac\\u13e9\\u13a9\\u13e8\\u13d7\": 13247,\n    \"\\u13cf\\u13c4\\u13f4\": 13248,\n    \"\\u13dc\\u13c5\\u13d3\\u13d5\": 13249,\n    \"\\u2581\\u13a0\\u13cc\\u13bb\\u13db\": 13250,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13df\\u13cd\\u13a9\": 13251,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13b5\\u13d9\\u13b2\\u13a2\": 13252,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13df\\u13f4\\u13b2\": 13253,\n    \"\\u2581\\u13f1\\u13d7\\u13d3\\u13d3\\u13c2\\u13b8\\u13a6\": 13254,\n    \"\\u2581\\u13a2\\u13a8\\u13ac\\u13be\\u13d5\\u13a9\": 13255,\n    \"\\u2581\\u13a4\\u13c3\\u13b1\\u13f2\\u13b5\": 13256,\n    \"\\u2581\\u13c4\\u13da\\u13ea\\u13ce\\u13b8\\u13a9\": 13257,\n    \"\\u2581\\u13df\\u13cd\\u13c6\": 13258,\n    \"\\u2581\\u13ac\\u13ec\\u13f1\": 13259,\n    \"\\u2581\\u13e9\\u13d3\\u13ec\\u13e3\": 13260,\n    \"\\u2581\\u13ed\\u13df\\u13eb\\u13db\": 13261,\n    \"\\u2581\\u13f3\\u13a6\\u13d9\\u13a5\\u13ce\\u13a2\": 13262,\n    \"\\u2581\\u13f3\\u13da\\u13d3\\u13b4\\u13cd\\u13d4\\u13c1\": 13263,\n    \"\\u13b5\\u13db\\u13d7\\u13cd\\u13ac\\u13be\": 13264,\n    \"\\u2581\\u13a4\\u13a6\\u13ce\\u13cd\\u13d7\\u13d5\": 13265,\n    \"\\u2581\\u13d9\\u13d3\\u13e3\\u13e0\\u13cf\": 13266,\n    \"\\u2581\\u13db\\u13e5\\u13b8\\u13c9\\u13d4\\u13c2\": 13267,\n    \"\\u2581\\u13e5\\u13d5\\u13af\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 13268,\n    \"\\u2581\\u13a2\\u13a6\\u13e0\\u13ef\\u13cd\\u13d4\\u13c5\": 13269,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13a9\\u13cd\\u13a9\": 13270,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13be\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 13271,\n    \"\\u2581\\u13eb\\u13c4\\u13ea\\u13d2\\u13a9\": 13272,\n    \"\\u13c1\\u13a2\\u13cd\\u13d3\\u13c1\\u13b2\\u13a9\": 13273,\n    \"\\u13cd\\u13d4\\u13e9\\u13d7\\u13ce\": 13274,\n    \"\\u13d0\\u13ef\\u13a6\": 13275,\n    \"\\u2581\\u13a1\\u13cd\\u13d7\\u13cd\\u13d3\\u13e9\\u13d5\\u13d2\\u13ad\": 13276,\n    \"\\u2581\\u13a4\\u13b8\\u13c9\\u13d4\\u13c5\\u13af\": 13277,\n    \"\\u2581\\u13a4\\u13c5\\u13e9\\u13c5\\u13a9\": 13278,\n    \"\\u2581\\u13a4\\u13cd\\u13ab\\u13d3\\u13db\\u13a2\": 13279,\n    \"\\u2581\\u13a7\\u13f4\\u13cc\\u13db\": 13280,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13e1\\u13eb\\u13cd\\u13d4\\u13c1\\u13a2\": 13281,\n    \"\\u2581\\u13d5\\u13a9\\u13be\\u13d3\\u13a8\\u13f3\\u13d2\\u13a2\": 13282,\n    \"\\u2581\\u13d7\\u13e5\\u13be\\u13cc\": 13283,\n    \"\\u13da\\u13b5\\u13e5\\u13d9\\u13c1\\u13b4\": 13284,\n    \"\\u2581\\u13cf\\u13c2\\u13b9\\u13c2\": 13285,\n    \"\\u2581\\u13d3\\u13c2\\u13aa\\u13e9\\u13d7\\u13cd\\u13a8\": 13286,\n    \"\\u2581\\u13d5\\u13a6\\u13a6\\u13ce\\u13cd\": 13287,\n    \"\\u2581\\u13ef\\u13a9\\u13f2\\u13b1\\u13d2\": 13288,\n    \"\\u2581\\u13ef\\u13c6\\u13b4\\u13c2\\u13d9\\u13b8\": 13289,\n    \"\\u2581\\u13f1\\u13a8\\u13a8\\u13ad\": 13290,\n    \"\\u2581\\u13a0\\u13a6\\u13ce\\u13cd\\u13d9\\u13d7\": 13291,\n    \"\\u2581\\u13a0\\u13b1\\u13c3\\u13b2\": 13292,\n    \"\\u2581\\u13a0\\u13d7\\u13c5\\u13d7\\u13c9\": 13293,\n    \"\\u2581\\u13a4\\u13f4\\u13dc\": 13294,\n    \"\\u2581\\u13d5\\u13b0\\u13e2\\u13d4\\u13c5\\u13ad\": 13295,\n    \"\\u2581\\u13da\\u13a9\\u13b8\\u13e8\": 13296,\n    \"\\u2581\\u13da\\u13f4\\u13d2\\u13a9\": 13297,\n    \"\\u2581\\u13e5\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 13298,\n    \"\\u2581\\u13e7\\u13b5\\u13c3\\u13af\\u13f4\\u13af\": 13299,\n    \"\\u2581\\u13e8\\u13a9\\u13c5\\u13d2\": 13300,\n    \"\\u13e7\\u13be\\u13c4\\u13aa\\u13e8\": 13301,\n    \"\\u2581\\u13a0\\u13be\\u13e0\\u13be\\u13cd\\u13d7\\u13cd\\u13ac\": 13302,\n    \"\\u2581\\u13ac\\u13c9\\u13af\\u13f3\\u13b2\\u13cd\\u13a9\": 13303,\n    \"\\u2581\\u13da\\u13ea\\u13cc\\u13cd\\u13d4\\u13c1\": 13304,\n    \"\\u2581\\u13f0\\u13e5\\u13a6\\u13d4\\u13ae\": 13305,\n    \"\\u2581\\u13c2\\u13ea\\u13d2\\u13ad\": 13306,\n    \"\\u13e5\\u13a6\\u13bf\\u13e9\\u13d7\\u13d9\": 13307,\n    \"\\u2581\\u13a0\\u13c2\\u13c5\\u13dc\\u13a1\\u13a2\": 13308,\n    \"\\u2581\\u13a0\\u13e8\\u13cf\\u13f0\\u13cd\\u13a8\": 13309,\n    \"\\u2581\\u13a5\\u13b6\\u13f1\": 13310,\n    \"\\u2581\\u13cd\\u13aa\\u13c2\\u13f4\": 13311,\n    \"\\u2581\\u13d6\\u13f2\\u13b2\\u13cd\\u13a9\": 13312,\n    \"\\u2581\\u13d7\\u13d4\\u13b8\\u13a2\": 13313,\n    \"\\u2581\\u13e5\\u13a6\\u13b6\\u13d2\\u13cd\\u13d7\\u13ad\": 13314,\n    \"\\u2581\\u13d5\\u13aa\\u13ea\\u13b5\\u13cd\": 13315,\n    \"\\u2581\\u13e5\\u13c2\\u13d5\\u13e3\\u13db\\u13c1\": 13316,\n    \"\\u13c1\\u13c9\\u13a1\\u13b5\": 13317,\n    \"\\u2581\\u13a0\\u13c3\\u13da\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 13318,\n    \"\\u2581\\u13a0\\u13e3\\u13be\\u13c9\\u13af\": 13319,\n    \"\\u2581\\u13d3\\u13e5\\u13f2\\u13a4\\u13cf\": 13320,\n    \"\\u2581\\u13e6\\u13a9\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 13321,\n    \"\\u2581\\u13e7\\u13ea\\u13da\\u13c1\\u13af\": 13322,\n    \"\\u13d3\\u13db\\u13f3\\u13e4\": 13323,\n    \"\\u2581\\u13b9\\u13d3\\u13ef\\u13c3\": 13324,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13c2\\u13cc\\u13b2\": 13325,\n    \"\\u2581\\u13d9\\u13e5\\u13f4\\u13ac\": 13326,\n    \"\\u2581\\u13ef\\u13cd\\u13a6\\u13a6\": 13327,\n    \"\\u2581\\u13ba\\u13ae\": 13328,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13d7\\u13d9\\u13b2\": 13329,\n    \"\\u2581\\u13d3\\u13f0\\u13e5\\u13c4\\u13aa\\u13eb\\u13cf\": 13330,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13b1\\u13ce\\u13a2\": 13331,\n    \"\\u13a8\\u13f2\\u13b2\\u13cd\\u13a6\": 13332,\n    \"\\u2581\\u13d9\\u13a9\\u13f2\\u13d0\\u13c5\": 13333,\n    \"\\u2581\\u13f3\\u13af\\u13d0\\u13d3\\u13c1\": 13334,\n    \"\\u13d3\\u13b5\\u13c1\\u13af\\u13d7\\u13cd\": 13335,\n    \"\\u13f2\\u13a2\\u13b1\\u13af\": 13336,\n    \"\\u2581\\u13a4\\u13b5\\u13c3\\u13ae\\u13d4\\u13c1\": 13337,\n    \"\\u2581\\u13a4\\u13c1\\u13cc\\u13f4\": 13338,\n    \"\\u2581\\u13e5\\u13a1\\u13e5\": 13339,\n    \"\\u2581\\u13e7\\u13aa\\u13b5\\u13f0\\u13d7\\u13f1\": 13340,\n    \"\\u2581\\u13d8\\u13d4\\u13b4\": 13341,\n    \"ps\": 13342,\n    \"\\u13df\\u13b6\\u13cd\\u13d3\\u13c1\\u13ad\": 13343,\n    \"\\u2581\\u13e3\\u13a6\\u13b5\\u13cd\\u13d3\\u13f4\\u13be\\u13c1\\u13d7\\u13f1\": 13344,\n    \"\\u2581\\u13ef\\u13c2\\u13cf\\u13be\": 13345,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13cd\\u13d5\\u13cd\\u13d7\": 13346,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13ec\\u13c2\\u13ad\": 13347,\n    \"\\u2581\\u13da\\u13d7\\u13d4\\u13cd\\u13d4\\u13c5\": 13348,\n    \"\\u2581\\u13eb\\u13d7\\u13a6\\u13c5\\u13aa\": 13349,\n    \"\\u13a9\\u13be\\u13c4\\u13aa\\u13e5\\u13b8\\u13a9\": 13350,\n    \"\\u13a9\\u13c1\\u13df\\u13f4\\u13cf\": 13351,\n    \"\\u2581\\u13d3\\u13d7\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c2\": 13352,\n    \"\\u2581\\u13d7\\u13a9\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\\u13d7\": 13353,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13f4\": 13354,\n    \"\\u2581\\u13a4\\u13c2\\u13bf\\u13b8\\u13e8\": 13355,\n    \"\\u2581\\u13c4\\u13d9\\u13af\\u13f3\\u13d2\": 13356,\n    \"\\u2581\\u13d3\\u13a6\\u13ce\\u13b5\": 13357,\n    \"\\u2581\\u13e5\\u13d5\\u13e5\\u13d9\\u13a6\": 13358,\n    \"\\u2581\\u13d3\\u13e5\\u13d4\\u13f2\\u13ce\\u13b5\": 13359,\n    \"\\u2581\\u13e7\\u13c3\\u13f4\\u13aa\": 13360,\n    \"\\u13c4\\u13f2\\u13a2\\u13ef\": 13361,\n    \"\\u2581\\u13a4\\u13a9\\u13b5\\u13f2\\u13e4\\u13a2\": 13362,\n    \"\\u2581\\u13b2\\u13c1\\u13cd\\u13d7\": 13363,\n    \"\\u2581\\u13c2\\u13a8\\u13ac\\u13c1\\u13ae\": 13364,\n    \"\\u2581\\u13c2\\u13a8\\u13ac\\u13c1\\u13b2\\u13a2\": 13365,\n    \"\\u2581\\u13c2\\u13ac\\u13c5\\u13aa\\u13ea\\u13b3\": 13366,\n    \"\\u2581\\u13d3\\u13ac\\u13e9\\u13cd\\u13aa\\u13c2\\u13b5\": 13367,\n    \"\\u13d4\\u13b8\\u13a9\\u13cd\\u13d7\": 13368,\n    \"\\u2581\\u13a0\\u13ab\\u13b7\\u13e4\\u13d7\": 13369,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13a1\\u13d7\": 13370,\n    \"\\u2581\\u13e7\\u13f4\\u13e3\": 13371,\n    \"\\u2581\\u13ec\\u13a9\\u13f4\\u13b8\": 13372,\n    \"\\u2581\\u13ee\\u13d3\\u13e5\\u13b7\\u13e4\\u13b5\": 13373,\n    \"\\u2581\\u13f1\\u13d9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 13374,\n    \"\\u2581\\u13a0\\u13e3\\u13c5\\u13d9\\u13d7\": 13375,\n    \"\\u2581\\u13a4\\u13ea\\u13e9\\u13d2\\u13e4\": 13376,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13f1\\u13b5\\u13d9\\u13b2\": 13377,\n    \"\\u2581\\u13d3\\u13e2\\u13a5\\u13cd\\u13ac\": 13378,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13e8\\u13cd\\u13d4\": 13379,\n    \"\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13a8\\u13a2\": 13380,\n    \"\\u2581\\u13ad\\u13d3\\u13ec\\u13e3\": 13381,\n    \"\\u2581\\u13e5\\u13be\\u13f0\\u13cd\\u13a6\\u13f0\\u13c3\": 13382,\n    \"\\u13af\\u13f2\\u13af\\u13cd\\u13d3\": 13383,\n    \"\\u13cc\\u13b3\\u13d9\\u13d3\": 13384,\n    \"\\u2581\\u13a0\\u13c6\\u13d8\\u13c2\": 13385,\n    \"\\u2581\\u13a0\\u13d4\\u13b8\\u13a6\\u13d2\": 13386,\n    \"\\u2581\\u13a2\\u13ad\\u13db\\u13c1\\u13af\": 13387,\n    \"\\u2581\\u13d7\\u13c2\\u13a7\\u13c5\\u13a2\": 13388,\n    \"\\u2581\\u13eb\\u13ef\\u13f4\\u13af\\u13ae\\u13cd\\u13d7\": 13389,\n    \"\\u2581\\u13a4\\u13ac\\u13ad\\u13d3\": 13390,\n    \"\\u2581\\u13c5\\u13d3\\u13ac\\u13e9\\u13ea\\u13ce\\u13b5\": 13391,\n    \"\\u2581\\u13d5\\u13e8\\u13ef\\u13ec\\u13cd\\u13d7\\u13ad\": 13392,\n    \"\\u13a8\\u13e3\\u13ab\\u13f4\\u13cf\": 13393,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13d3\\u13d7\": 13394,\n    \"\\u2581\\u13a7\\u13b9\\u13b9\": 13395,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13f4\\u13a9\\u13c5\\u13af\": 13396,\n    \"\\u2581\\u13d9\\u13d3\\u13a6\\u13d8\\u13c3\\u13b5\": 13397,\n    \"\\u2581\\u13ed\\u13be\\u13b5\\u13c3\\u13ae\": 13398,\n    \"\\u13e7\\u13d8\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 13399,\n    \"\\u2581\\u13a2\\u13d3\\u13d3\\u13c5\\u13d3\\u13d3\": 13400,\n    \"\\u2581\\u13a8\\u13e3\\u13d5\\u13ef\\u13d9\\u13d7\\u13cd\\u13a9\": 13401,\n    \"\\u2581\\u13c2\\u13da\\u13c1\\u13b6\\u13db\\u13be\": 13402,\n    \"\\u2581\\u13e9\\u13c6\\u13d7\\u13c5\\u13d2\": 13403,\n    \"\\u2581\\u13d3\\u13ac\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b5\": 13404,\n    \"\\u2581\\u13d7\\u13e4\\u13b5\\u13db\": 13405,\n    \"\\u13d8\\u13c1\\u13cf\": 13406,\n    \"\\u2581\\u13d9\\u13d7\\u13eb\\u13d2\\u13a2\": 13407,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13ea\\u13cd\\u13a8\": 13408,\n    \"\\u13ca\\u13aa\\u13d3\\u13c1\\u13b8\": 13409,\n    \"\\u2581\\u13a4\\u13f4\\u13cd\\u13d5\\u13cd\\u13a9\": 13410,\n    \"\\u2581\\u13c5\\u13d3\\u13e3\\u13c4\\u13aa\\u13eb\\u13d2\\u13af\": 13411,\n    \"\\u2581\\u13f3\\u13c1\\u13e4\\u13a2\": 13412,\n    \"\\u2581\\u13f3\\u13e3\\u13a9\\u13d2\\u13be\": 13413,\n    \"\\u2581\\u13c4\\u13cd\\u13c6\\u13b8\\u13b2\\u13be\": 13414,\n    \"\\u2581\\u13e5\\u13a7\\u13c3\\u13ae\\u13cd\": 13415,\n    \"\\u2581\\u13f1\\u13d3\\u13f2\\u13a9\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c2\": 13416,\n    \"\\u2581\\u13da\\u13ef\\u13c5\\u13a1\\u13b4\\u13a2\": 13417,\n    \"\\u13a8\\u13ec\\u13d7\": 13418,\n    \"\\u2581\\u13a0\\u13a6\\u13e0\\u13ef\\u13cd\\u13d4\\u13c5\\u13a9\": 13419,\n    \"\\u2581\\u13e6\\u13e5\\u13da\\u13a9\": 13420,\n    \"\\u13e0\\u13d2\\u13d2\\u13a9\": 13421,\n    \"\\u13ef\\u13d5\\u13a5\\u13cf\": 13422,\n    \"\\u2581\\u13a9\\u13c3\\u13af\\u13f3\\u13c5\": 13423,\n    \"\\u2581\\u13eb\\u13d8\\u13ef\\u13c5\": 13424,\n    \"\\u13a6\\u13d9\\u13cc\\u13d7\\u13cd\\u13db\": 13425,\n    \"\\u2581\\u13a3\\u13e3\\u13b5\\u13cd\\u13d4\\u13f4\\u13b2\\u13cd\\u13ac\": 13426,\n    \"\\u2581\\u13a6\\u13c4\\u13f2\\u13af\": 13427,\n    \"\\u2581\\u13c3\\u13a6\\u13e0\\u13be\\u13cd\\u13db\\u13be\": 13428,\n    \"\\u2581\\u13f1\\u13da\\u13ea\\u13b5\\u13ce\": 13429,\n    \"\\u2581\\u13f1\\u13e9\\u13a6\\u13d3\\u13a2\\u13c5\": 13430,\n    \"\\u13c1\\u13a9\\u13f0\\u13cd\\u13d7\": 13431,\n    \"\\u2581\\u13a0\\u13c4\\u13d6\\u13cd\\u13ac\": 13432,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13a2\\u13cd\\u13d4\\u13c5\": 13433,\n    \"\\u2581\\u13b4\\u13a0\\u13b9\": 13434,\n    \"\\u2581\\u13d9\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 13435,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13ab\\u13ea\": 13436,\n    \"\\u2581\\u13b7\\u13cf\\u13ef\": 13437,\n    \"\\u2581\\u13d3\\u13d3\\u13cc\\u13b3\\u13d7\\u13cd\": 13438,\n    \"\\u2581\\u13e5\\u13ef\\u13db\\u13a6\\u13c1\\u13b8\\u13a2\": 13439,\n    \"\\u2581\\u13e7\\u13ea\\u13b5\\u13cf\\u13ef\": 13440,\n    \"\\u2581\\u13f3\\u13e9\\u13c2\\u13cd\\u13d4\\u13c5\": 13441,\n    \"\\u13c6\\u13e6\\u13a5\": 13442,\n    \"\\u2581\\u13ac\\u13e9\\u13b5\\u13cd\\u13da\": 13443,\n    \"\\u2581\\u13d8\\u13cd\\u13c6\\u13c2\\u13aa\\u13d3\\u13c1\\u13d7\\u13f1\": 13444,\n    \"\\u2581\\u13f2\\u13a9\\u13c2\\u13ad\": 13445,\n    \"\\u13f4\\u13a9\\u13c5\\u13af\": 13446,\n    \"\\u2581\\u13a6\\u13ac\\u13e9\\u13c2\\u13d0\\u13e2\": 13447,\n    \"\\u2581\\u13c5\\u13d3\\u13e8\\u13f0\": 13448,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13d9\\u13af\\u13f3\": 13449,\n    \"\\u2581\\u13d7\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\\u13cd\\u13a9\": 13450,\n    \"\\u2581\\u13da\\u13c5\\u13c2\\u13a6\\u13b8\\u13b2\\u13a9\": 13451,\n    \"\\u2581\\u13e6\\u13a6\\u13d3\\u13c5\\u13d9\": 13452,\n    \"\\u2581\\u13ef\\u13a9\\u13cd\\u13db\\u13d3\": 13453,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13b2\\u13a2\": 13454,\n    \"\\u13a7\\u13be\\u13ec\\u13a8\": 13455,\n    \"\\u13be\\u13f0\\u13cf\": 13456,\n    \"\\u13e5\\u13c2\\u13ac\\u13ce\\u13b2\": 13457,\n    \"\\u2581\\u13d7\\u13ab\\u13e2\\u13d4\\u13c5\\u13af\": 13458,\n    \"\\u2581\\u13d7\\u13c2\\u13c5\\u13cd\\u13a8\\u13c2\": 13459,\n    \"\\u2581\\u13ef\\u13c6\\u13d8\\u13dd\": 13460,\n    \"\\u2581\\u13f4\\u13db\\u13c2\\u13b6\\u13d0\\u13c2\": 13461,\n    \"\\u2581\\u13cc\\u13a8\\u13a2\\u13f3\": 13462,\n    \"\\u13b5\\u13aa\\u13c1\\u13b2\\u13be\": 13463,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13ce\\u13aa\\u13a9\\u13cd\\u13ac\\u13a9\": 13464,\n    \"\\u2581\\u13a4\\u13d3\\u13f4\\u13b3\\u13d4\\u13c1\": 13465,\n    \"\\u2581\\u13bf\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 13466,\n    \"\\u2581\\u13d7\\u13e0\\u13d7\": 13467,\n    \"\\u2581\\u13a4\\u13e6\\u13a2\\u13ce\\u13d7\": 13468,\n    \"\\u2581\\u13a4\\u13f2\\u13de\\u13d2\\u13a2\": 13469,\n    \"\\u13a9\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13b0\\u13a2\": 13470,\n    \"\\u2581\\u13d3\\u13c6\\u13d3\\u13d8\\u13be\\u13a5\": 13471,\n    \"\\u13c2\\u13ad\\u13b7\\u13a5\\u13cd\": 13472,\n    \"\\u2581\\u13d7\\u13e6\\u13d1\\u13b5\": 13473,\n    \"\\u2581\\u13e5\\u13a6\\u13b6\\u13a8\\u13ce\\u13a2\": 13474,\n    \"\\u2581\\u13f1\\u13ac\\u13e9\\u13f2\\u13b1\\u13ce\": 13475,\n    \"\\u13ac\\u13e9\\u13b3\\u13c1\": 13476,\n    \"\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d7\\u13cd\\u13a8\\u13a2\": 13477,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d3\\u13db\\u13a2\": 13478,\n    \"\\u2581\\u13d7\\u13be\\u13a6\\u13b4\\u13c5\\u13d7\\u13cd\\u13a9\": 13479,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13e0\\u13b2\": 13480,\n    \"\\u2581\\u13da\\u13bf\\u13b8\\u13e4\": 13481,\n    \"\\u2581\\u13e0\\u13d7\\u13ef\": 13482,\n    \"\\u2581\\u13a0\\u13d8\\u13cd\\u13d9\\u13d7\": 13483,\n    \"\\u2581\\u13a4\\u13c5\\u13d3\\u13d2\": 13484,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13be\\u13e8\": 13485,\n    \"\\u2581\\u13da\\u13ed\\u13d3\\u13b4\\u13d2\": 13486,\n    \"\\u2581\\u13f1\\u13c5\\u13ac\\u13db\\u13a6\": 13487,\n    \"\\u13e8\\u13cf\\u13f0\\u13cd\\u13ac\": 13488,\n    \"\\u2581\\u13a2\\u13e3\\u13c5\\u13e8\": 13489,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13c9\\u13e8\\u13af\": 13490,\n    \"\\u2581\\u13e5\\u13d5\\u13a6\\u13b6\\u13c4\\u13ae\": 13491,\n    \"\\u2581\\u13c3\\u13e5\\u13ea\\u13ad\": 13492,\n    \"\\u2581\\u13ed\\u13b3\\u13a9\\u13ce\": 13493,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d8\\u13cd\\u13ac\": 13494,\n    \"\\u2581\\u13e7\\u13d3\\u13b4\\u13be\\u13a2\": 13495,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13af\": 13496,\n    \"\\u2581\\u13bb\\u13c8\\u13cc\": 13497,\n    \"\\u2581\\u13a0\\u13be\\u13d4\\u13cd\\u13a9\": 13498,\n    \"\\u2581\\u13ac\\u13db\\u13cd\\u13a8\\u13cd\\u13d7\": 13499,\n    \"\\u2581\\u13d3\\u13a7\\u13c2\\u13cd\\u13ac\\u13a2\": 13500,\n    \"\\u2581\\u13d5\\u13ac\\u13a6\\u13c6\": 13501,\n    \"\\u13d3\\u13f3\\u13d3\\u13b4\\u13c5\\u13af\": 13502,\n    \"\\u2581\\u13da\\u13f0\\u13b8\\u13d2\": 13503,\n    \"\\u13c4\\u13b6\\u13b4\\u13a2\": 13504,\n    \"\\u13d3\\u13df\\u13c3\\u13ae\\u13d7\\u13cd\\u13a8\": 13505,\n    \"\\u2581\\u13a2\\u13d3\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13cd\\u13ac\\u13a2\": 13506,\n    \"\\u2581\\u13bf\\u13b5\\u13cd\\u13d3\": 13507,\n    \"\\u2581\\u13c2\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 13508,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13f2\\u13af\\u13cf\": 13509,\n    \"\\u2581\\u13e7\\u13df\\u13b7\\u13c6\": 13510,\n    \"\\u13e3\\u13ea\\u13a2\\u13cd\\u13d4\": 13511,\n    \"\\u2581\\u13af\\u13c1\\u13a8\\u13cd\\u13d7\": 13512,\n    \"\\u2581\\u13a0\\u13c2\\u13ec\\u13c2\\u13cd\\u13aa\": 13513,\n    \"\\u2581\\u13a1\\u13be\\u13a2\\u13d3\\u13cd\\u13d7\\u13f1\": 13514,\n    \"\\u2581\\u13f1\\u13c5\\u13a6\\u13a6\\u13db\\u13a6\": 13515,\n    \"\\u2581\\u13f3\\u13d9\\u13af\\u13f3\\u13b2\\u13be\": 13516,\n    \"\\u13e4\\u13ec\\u13e4\": 13517,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13ce\\u13cd\\u13d5\\u13a2\": 13518,\n    \"\\u2581\\u13ed\\u13d3\\u13ec\\u13a1\": 13519,\n    \"\\u13c1\\u13e2\\u13d7\\u13ad\": 13520,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d5\": 13521,\n    \"\\u2581\\u13a5\\u13a9\\u13f4\\u13a9\\u13c5\\u13af\": 13522,\n    \"\\u13a6\\u13d7\\u13d9\\u13af\": 13523,\n    \"\\u2581\\u13d9\\u13db\\u13d5\\u13ef\\u13d9\\u13d4\\u13c2\": 13524,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13ea\\u13c5\": 13525,\n    \"\\u2581\\u13a0\\u13d3\\u13c1\\u13e3\\u13cd\": 13526,\n    \"\\u2581\\u13a0\\u13be\\u13d9\\u13a9\\u13ef\\u13cd\": 13527,\n    \"\\u2581\\u13e5\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\\u13ad\": 13528,\n    \"\\u13d9\\u13d1\\u13b4\\u13a5\\u13a9\": 13529,\n    \"\\u2581\\u13d3\\u13ab\\u13aa\\u13d3\\u13c1\": 13530,\n    \"\\u2581\\u13e6\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\\u13af\": 13531,\n    \"\\u13af\\u13ce\\u13b5\": 13532,\n    \"\\u2581\\u13d7\\u13ac\\u13c5\\u13c3\\u13db\": 13533,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\\u13c4\\u13aa\\u13eb\\u13cf\": 13534,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13c2\\u13c2\\u13f4\": 13535,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13f2\\u13d2\": 13536,\n    \"\\u2581\\u13a7\\u13f3\\u13a6\": 13537,\n    \"\\u13d3\\u13da\\u13d3\\u13d4\": 13538,\n    \"\\u2581\\u13a0\\u13c2\\u13f2\\u13af\\u13ae\\u13cd\\u13d7\": 13539,\n    \"\\u2581\\u13a4\\u13d3\\u13e0\\u13cd\\u13d5\\u13a2\": 13540,\n    \"\\u2581\\u13a4\\u13e9\\u13d3\\u13b7\\u13a6\": 13541,\n    \"\\u2581\\u13c2\\u13c4\\u13be\": 13542,\n    \"\\u2581\\u13d3\\u13c2\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13aa\\u13a2\": 13543,\n    \"\\u2581\\u13a2\\u13af\\u13a9\\u13b5\\u13f2\": 13544,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13a9\\u13b8\\u13d7\": 13545,\n    \"\\u13c3\\u13e8\\u13c1\\u13ad\": 13546,\n    \"\\u2581\\u13c5\\u13d7\\u13ac\\u13e9\": 13547,\n    \"\\u2581\\u13f3\\u13be\\u13d3\\u13c5\\u13d4\": 13548,\n    \"\\u2581\\u13d5\\u13af\\u13cd\\u13d3\\u13e9\\u13d7\\u13ce\\u13cd\\u13d7\": 13549,\n    \"\\u2581\\u13d7\\u13d3\\u13f1\\u13b5\\u13d3\\u13cd\\u13d7\\u13f1\": 13550,\n    \"\\u2581\\u13a4\\u13ef\\u13a3\\u13a2\": 13551,\n    \"\\u2581\\u13a4\\u13f1\\u13b8\\u13d2\\u13a9\": 13552,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13c4\\u13ae\": 13553,\n    \"\\u2581\\u13a4\\u13a8\\u13b2\": 13554,\n    \"\\u2581\\u13f3\\u13dc\\u13c5\\u13d5\": 13555,\n    \"ash\": 13556,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13be\\u13a5\\u13a2\": 13557,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d4\\u13c1\\u13a2\": 13558,\n    \"\\u2581\\u13a6\\u13c3\\u13af\\u13b5\\u13d2\\u13a9\": 13559,\n    \"\\u2581\\u13a2\\u13e7\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 13560,\n    \"\\u2581\\u13db\\u13a4\\u13e8\\u13d2\\u13a9\": 13561,\n    \"\\u2581\\u13d9\\u13a8\\u13a6\": 13562,\n    \"\\u13b8\\u13e5\\u13b4\": 13563,\n    \"\\u2581\\u13a0\\u13ab\\u13f1\\u13cd\\u13ac\\u13a2\": 13564,\n    \"\\u2581\\u13a2\\u13e5\\u13c3\\u13d4\\u13c2\\u13d9\": 13565,\n    \"\\u2581\\u13cd\\u13a9\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 13566,\n    \"\\u13d3\\u13d9\\u13d3\\u13c7\": 13567,\n    \"\\u2581\\u13e5\\u13be\\u13a9\\u13ea\\u13d2\\u13a9\": 13568,\n    \"\\u2581\\u13d8\\u13cd\\u13d3\\u13e9\\u13da\\u13a6\": 13569,\n    \"\\u2581\\u13d3\\u13b5\\u13cc\\u13b3\\u13d7\\u13cd\\u13ac\": 13570,\n    \"\\u2581\\u13d3\\u13c6\\u13e0\\u13af\\u13cd\\u13db\\u13a2\": 13571,\n    \"\\u2581\\u13d5\\u13af\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\\u13a2\": 13572,\n    \"\\u2581\\u13d7\\u13d3\\u13cd\\u13d4\\u13f4\": 13573,\n    \"\\u2581\\u13d7\\u13e5\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 13574,\n    \"\\u2581\\u13f3\\u13d3\\u13d3\\u13b3\": 13575,\n    \"\\u2581\\u13c1\\u13e3\\u13db\\u13c1\\u13b8\": 13576,\n    \"\\u2581\\u13c2\\u13d3\\u13d9\\u13e2\": 13577,\n    \"\\u2581\\u13f1\\u13e3\\u13dc\\u13c5\\u13d3\\u13d5\": 13578,\n    \"\\u2581\\u13a4\\u13b6\\u13d0\\u13c1\": 13579,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13be\\u13eb\\u13cd\": 13580,\n    \"\\u2581\\u13d7\\u13be\\u13d8\\u13c2\\u13d9\\u13af\": 13581,\n    \"\\u2581\\u13e7\\u13c3\\u13ea\\u13b6\\u13d7\": 13582,\n    \"\\u13c1\\u13df\\u13f4\\u13cd\\u13d3\": 13583,\n    \"\\u13f1\\u13b6\\u13b5\": 13584,\n    \"\\u2581\\u13da\\u13be\\u13c4\\u13e9\\u13a5\": 13585,\n    \"\\u2581\\u13da\\u13be\\u13e1\\u13d5\\u13cd\\u13d7\": 13586,\n    \"\\u2581\\u13f2\\u13e2\\u13be\\u13cf\": 13587,\n    \"\\u13d7\\u13eb\\u13cd\\u13d7\\u13f1\": 13588,\n    \"\\u2581\\u13a5\\u13c7\\u13f2\\u13c5\": 13589,\n    \"\\u2581\\u13d3\\u13e5\\u13c4\\u13aa\\u13a2\": 13590,\n    \"\\u13ac\\u13be\\u13d8\\u13c1\\u13af\": 13591,\n    \"\\u2581\\u13a4\\u13e2\\u13f2\\u13b5\": 13592,\n    \"\\u2581\\u13db\\u13e8\\u13b7\\u13e4\\u13b5\": 13593,\n    \"\\u13a9\\u13c2\\u13aa\\u13af\\u13ce\": 13594,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13da\\u13eb\\u13cd\": 13595,\n    \"\\u13d2\\u13ce\\u13b5\": 13596,\n    \"\\u2581\\u13a3\\u13a9\\u13c7\\u13d3\\u13b8\": 13597,\n    \"\\u2581\\u13a4\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\\u13a9\": 13598,\n    \"\\u2581\\u13a8\\u13e7\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 13599,\n    \"\\u2581\\u13be\\u13a9\\u13f4\\u13cd\\u13d7\\u13f1\": 13600,\n    \"\\u2581\\u13f4\\u13ac\\u13f2\\u13b1\\u13af\": 13601,\n    \"\\u2581\\u13e3\\u13c2\\u13cf\\u13d7\\u13f1\": 13602,\n    \"\\u2581\\u13a4\\u13d3\\u13b5\\u13d7\\u13a9\\u13a1\\u13b8\": 13603,\n    \"\\u2581\\u13f4\\u13a6\\u13e3\\u13a6\\u13b8\": 13604,\n    \"\\u2581\\u13a0\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c3\\u13c5\\u13af\": 13605,\n    \"\\u2581\\u13e9\\u13c6\\u13b5\\u13f0\\u13a2\\u13b6\\u13af\\u13cd\\u13d7\": 13606,\n    \"\\u2581\\u13ea\\u13e5\\u13b7\\u13e5\\u13cf\": 13607,\n    \"\\u2581\\u13f1\\u13e3\\u13f0\\u13b8\\u13ce\\u13cd\\u13d7\": 13608,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13ef\\u13a2\": 13609,\n    \"\\u2581\\u13c1\\u13e3\\u13c1\\u13b8\\u13be\": 13610,\n    \"\\u2581\\u13da\\u13c5\\u13c2\\u13cd\\u13d4\\u13c1\": 13611,\n    \"\\u2581\\u13e5\\u13d5\\u13e3\\u13d3\\u13c2\\u13b8\\u13e8\": 13612,\n    \"\\u2581\\u13a0\\u13be\\u13b4\\u13c2\\u13d9\": 13613,\n    \"\\u2581\\u13e3\\u13c9\\u13ea\\u13b3\\u13c5\": 13614,\n    \"\\u2581\\u13e7\\u13be\\u13d5\\u13f2\\u13d7\\u13f1\": 13615,\n    \"\\u2581\\u13a0\\u13a6\\u13b5\\u13b2\": 13616,\n    \"\\u2581\\u13af\\u13ef\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 13617,\n    \"\\u2581\\u13ac\\u13c6\\u13d5\\u13ef\\u13d9\\u13d7\": 13618,\n    \"\\u2581\\u13a1\\u13cd\\u13d7\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 13619,\n    \"\\u2581\\u13d5\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 13620,\n    \"\\u2581\\u13e5\\u13e5\\u13f2\\u13a2\\u13ce\\u13b8\": 13621,\n    \"\\u2581\\u13a0\\u13a7\\u13c1\\u13b2\": 13622,\n    \"\\u2581\\u13e6\\u13e8\\u13c3\\u13db\": 13623,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\\u13d4\\u13c5\": 13624,\n    \"\\u2581\\u13e4\\u13c9\\u13bb\": 13625,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13af\\u13cd\\u13ac\": 13626,\n    \"\\u2581\\u13d1\\u13d9\\u13d3\\u13c6\\u13db\": 13627,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13c5\\u13eb\\u13cd\\u13a9\": 13628,\n    \"\\u13a9\\u13a6\\u13b7\\u13f4\": 13629,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13a9\": 13630,\n    \"\\u2581\\u13da\\u13e9\\u13c7\\u13c5\\u13d4\\u13c5\": 13631,\n    \"\\u13d3\\u13c1\\u13d6\\u13d7\": 13632,\n    \"\\u2581\\u13a3\\u13a9\\u13e9\\u13cf\": 13633,\n    \"\\u2581\\u13c2\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13be\": 13634,\n    \"\\u2581\\u13da\\u13c2\\u13be\\u13cc\\u13a5\": 13635,\n    \"\\u2581\\u13f1\\u13e3\\u13e4\\u13b8\\u13ae\\u13cd\\u13d7\": 13636,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13cd\\u13a9\": 13637,\n    \"\\u2581\\u13d3\\u13a8\\u13e5\\u13c4\\u13aa\\u13eb\\u13d2\\u13a9\": 13638,\n    \"\\u2581\\u13a6\\u13d9\\u13a9\\u13ef\\u13cd\\u13ac\": 13639,\n    \"\\u2581\\u13d9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 13640,\n    \"\\u2581\\u13d9\\u13d3\\u13aa\\u13ea\\u13b3\\u13c2\": 13641,\n    \"\\u2581\\u13d7\\u13a6\\u13c3\\u13e3\\u13e2\": 13642,\n    \"\\u2581\\u13ad\\u13d3\\u13e0\": 13643,\n    \"\\u2581\\u13f1\\u13c2\\u13ac\\u13c1\\u13b0\\u13a2\": 13644,\n    \"\\u2581\\u13a3\\u13a9\\u13cc\\u13d9\\u13f4\": 13645,\n    \"\\u13ac\\u13ef\\u13a7\\u13c1\\u13b5\": 13646,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\\u13b5\\u13a2\": 13647,\n    \"\\u2581\\u13ac\\u13c9\\u13ce\\u13ae\\u13cd\\u13d7\": 13648,\n    \"\\u2581\\u13da\\u13c5\\u13eb\\u13cd\\u13d4\\u13c1\": 13649,\n    \"\\u13a9\\u13f2\\u13b1\\u13ce\\u13b5\": 13650,\n    \"\\u2581\\u13d5\\u13e3\\u13eb\\u13d2\\u13a2\": 13651,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c2\\u13db\": 13652,\n    \"\\u13aa\\u13a2\\u13f3\\u13c1\\u13a2\": 13653,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13cd\\u13d3\\u13f4\\u13c5\": 13654,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 13655,\n    \"\\u2581\\u13a4\\u13ad\\u13f4\\u13cd\\u13d7\": 13656,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13a9\\u13cd\\u13ac\\u13be\": 13657,\n    \"\\u2581\\u13ad\\u13d7\\u13db\\u13b2\\u13ad\": 13658,\n    \"\\u2581\\u13bb\\u13cf\\u13f1\": 13659,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13d9\\u13b8\\u13a9\": 13660,\n    \"\\u2581\\u13d9\\u13a9\\u13d4\\u13d5\\u13a9\": 13661,\n    \"\\u2581\\u13e5\\u13eb\\u13a6\\u13b6\\u13af\": 13662,\n    \"\\u13a6\\u13c4\\u13aa\\u13e8\": 13663,\n    \"\\u13be\\u13d8\\u13c3\\u13ae\\u13b8\\u13ad\": 13664,\n    \"\\u2581\\u13a4\\u13db\\u13af\\u13cd\\u13d4\\u13c5\": 13665,\n    \"\\u13da\\u13eb\\u13cd\\u13d4\": 13666,\n    \"\\u2581\\u13a4\\u13d3\\u13be\\u13db\\u13a2\": 13667,\n    \"\\u2581\\u13cd\\u13a9\\u13cd\\u13a6\\u13c5\\u13e4\\u13d7\": 13668,\n    \"\\u2581\\u13da\\u13d3\\u13c5\\u13b5\\u13f0\\u13a5\": 13669,\n    \"\\u2581\\u13ed\\u13c2\\u13cf\\u13c1\\u13b4\": 13670,\n    \"\\u2581\\u13f1\\u13d7\\u13e7\\u13aa\\u13d7\\u13ad\": 13671,\n    \"\\u13b5\\u13c3\\u13af\\u13f4\": 13672,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 13673,\n    \"\\u2581\\u13f1\\u13c4\\u13db\\u13c1\": 13674,\n    \"\\u13c2\\u13c6\\u13c5\\u13a5\\u13a6\": 13675,\n    \"\\u2581\\u13d9\\u13a6\\u13da\\u13d3\": 13676,\n    \"\\u13a6\\u13b5\\u13e5\\u13d9\\u13c1\\u13b8\\u13a9\": 13677,\n    \"\\u2581\\u13a4\\u13cd\\u13da\\u13d4\\u13c1\\u13a2\": 13678,\n    \"\\u2581\\u13a8\\u13e3\\u13cc\\u13b3\\u13d9\": 13679,\n    \"\\u2581\\u13a0\\u13be\\u13c1\\u13cd\\u13a8\\u13cd\\u13ac\": 13680,\n    \"\\u2581\\u13a0\\u13df\\u13b6\\u13db\": 13681,\n    \"\\u13a7\\u13b5\\u13a9\": 13682,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13f0\\u13b8\\u13af\": 13683,\n    \"\\u2581\\u13a6\\u13e5\\u13f0\\u13f2\": 13684,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c1\": 13685,\n    \"\\u2581\\u13d7\\u13e5\\u13a6\\u13b5\\u13cd\\u13d3\\u13d5\\u13d7\": 13686,\n    \"\\u2581\\u13e6\\u13a9\\u13b7\\u13e5\\u13b8\": 13687,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 13688,\n    \"\\u13a7\\u13d4\\u13be\\u13eb\\u13cd\": 13689,\n    \"\\u2581\\u13a0\\u13c9\\u13ea\\u13b6\\u13d7\": 13690,\n    \"\\u2581\\u13e7\\u13b5\\u13cd\\u13c6\\u13b5\": 13691,\n    \"\\u13ec\\u13da\\u13a2\\u13cd\\u13d5\": 13692,\n    \"\\u13da\\u13c2\\u13d0\\u13e4\": 13693,\n    \"\\u13be\\u13af\\u13cd\\u13d7\\u13ad\": 13694,\n    \"\\u13b5\\u13cd\\u13da\\u13d4\\u13c5\": 13695,\n    \"\\u2581\\u13a0\\u13a9\\u13a6\\u13d8\\u13d7\\u13cd\": 13696,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13cf\\u13be\\u13af\\u13cd\\u13db\\u13be\": 13697,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13c4\\u13f4\\u13db\\u13be\": 13698,\n    \"\\u2581\\u13da\\u13b5\\u13c2\\u13c6\\u13c5\\u13c1\\u13b8\\u13a9\": 13699,\n    \"\\u2581\\u13e6\\u13cd\\u13d3\\u13d1\": 13700,\n    \"\\u2581\\u13e7\\u13c4\\u13aa\\u13d3\\u13c1\": 13701,\n    \"\\u2581\\u13c4\\u13be\\u13dc\\u13cf\\u13db\\u13a1\\u13b2\\u13be\": 13702,\n    \"\\u2581\\u13a2\\u13a6\\u13d5\\u13d7\\u13f1\": 13703,\n    \"\\u2581\\u13d5\\u13e3\\u13b3\\u13cd\\u13ac\": 13704,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 13705,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13b6\\u13d2\\u13af\": 13706,\n    \"\\u2581\\u13eb\\u13d3\\u13d7\\u13c5\\u13d7\": 13707,\n    \"\\u2581\\u13a4\\u13be\\u13aa\\u13b2\\u13cd\\u13d9\\u13d7\\u13f1\": 13708,\n    \"\\u2581\\u13e4\\u13e3\\u13d8\\u13c1\\u13d2\\u13ad\": 13709,\n    \"\\u13cd\\u13a9\\u13be\\u13db\\u13c2\\u13cf\": 13710,\n    \"\\u2581\\u13a2\\u13a9\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\": 13711,\n    \"\\u2581\\u13ed\\u13a7\\u13d4\\u13c1\\u13a2\": 13712,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13cd\\u13a6\\u13a9\": 13713,\n    \"\\u2581\\u13ef\\u13c2\\u13ef\\u13a0\": 13714,\n    \"\\u2581\\u13c2\\u13e5\\u13d4\\u13f2\\u13af\\u13b2\": 13715,\n    \"\\u2581\\u13a0\\u13be\\u13e8\\u13cf\\u13f0\\u13cd\\u13ac\": 13716,\n    \"\\u2581\\u13ea\\u13e3\\u13da\\u13a6\": 13717,\n    \"\\u2581\\u13a0\\u13a6\\u13d3\\u13d3\\u13b4\\u13d4\\u13c5\\u13af\": 13718,\n    \"\\u2581\\u13a4\\u13c5\\u13a8\\u13eb\\u13d2\": 13719,\n    \"\\u2581\\u13a4\\u13ac\\u13eb\\u13e9\": 13720,\n    \"\\u2581\\u13d5\\u13a9\\u13be\\u13d3\\u13c1\\u13e4\\u13b8\": 13721,\n    \"\\u2581\\u13a4\\u13da\\u13d3\\u13b8\\u13db\": 13722,\n    \"\\u2581\\u13eb\\u13c4\\u13ea\\u13ce\\u13b8\\u13a9\": 13723,\n    \"\\u2581\\u13f1\\u13da\\u13be\\u13dd\\u13a0\": 13724,\n    \"\\u2581\\u13a0\\u13e5\\u13ac\\u13cd\\u13aa\\u13b8\\u13c1\": 13725,\n    \"\\u2581\\u13d3\\u13e8\\u13c2\\u13b5\": 13726,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d3\\u13b4\\u13d3\\u13c1\": 13727,\n    \"\\u2581\\u13d7\\u13a9\\u13cf\\u13b3\\u13db\\u13d9\\u13d7\": 13728,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c2\\u13f2\\u13b1\\u13af\\u13ce\\u13b8\\u13af\": 13729,\n    \"\\u2581\\u13ef\\u13c6\\u13b4\\u13eb\\u13cd\\u13d4\\u13be\": 13730,\n    \"\\u2581\\u13e7\\u13c1\\u13ab\": 13731,\n    \"\\u2581\\u13e7\\u13c2\\u13b5\\u13b6\\u13b2\\u13cd\\u13a6\": 13732,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 13733,\n    \"\\u2581\\u13a1\\u13e5\\u13a7\\u13c1\\u13d7\\u13f1\": 13734,\n    \"\\u2581\\u13a4\\u13a7\\u13d9\\u13cd\\u13d4\\u13c1\\u13a2\": 13735,\n    \"\\u2581\\u13d3\\u13c3\\u13e2\\u13cd\\u13ac\\u13a2\": 13736,\n    \"\\u2581\\u13e5\\u13d3\\u13c2\\u13f0\\u13b2\\u13a9\": 13737,\n    \"\\u13a6\\u13b5\\u13f3\\u13f0\\u13c3\": 13738,\n    \"\\u13af\\u13b7\\u13e5\\u13cc\": 13739,\n    \"\\u13d3\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13cd\\u13aa\": 13740,\n    \"\\u13ac\\u13e3\\u13b6\\u13d7\": 13741,\n    \"\\u2581\\u13d5\\u13a6\\u13ef\\u13a9\\u13cd\\u13a8\": 13742,\n    \"\\u2581\\u13e5\\u13a6\\u13a7\\u13ad\": 13743,\n    \"\\u2581\\u13e7\\u13be\\u13d9\\u13b3\\u13c5\\u13cd\\u13d7\": 13744,\n    \"\\u2581\\u13ef\\u13a6\\u13cd\\u13ac\\u13be\": 13745,\n    \"\\u13f2\\u13a2\\u13ce\\u13ae\\u13cd\\u13d7\": 13746,\n    \"\\u2581\\u13c3\\u13e4\\u13b2\\u13be\": 13747,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13c5\\u13ec\\u13d7\\u13f1\": 13748,\n    \"\\u2581\\u13a4\\u13ec\\u13ea\\u13b6\\u13d7\": 13749,\n    \"\\u2581\\u13a1\\u13e3\\u13db\\u13db\\u13b2\\u13a6\": 13750,\n    \"\\u2581\\u13a3\\u13a6\\u13c5\\u13e2\": 13751,\n    \"\\u2581\\u13a8\\u13a6\\u13ce\\u13cd\\u13d7\\u13f1\": 13752,\n    \"\\u2581\\u13a8\\u13e5\\u13d4\\u13f2\\u13ce\\u13d7\": 13753,\n    \"\\u13b6\\u13a3\\u13ce\": 13754,\n    \"\\u2581\\u13f1\\u13d3\\u13ac\\u13ef\": 13755,\n    \"\\u2581\\u13a6\\u13e5\\u13ec\\u13c1\\u13d7\\u13cd\\u13ac\": 13756,\n    \"\\u2581\\u13ed\\u13be\\u13a6\\u13d6\": 13757,\n    \"\\u13d1\\u13b5\\u13aa\\u13e5\": 13758,\n    \"\\u13de\\u13a6\": 13759,\n    \"\\u2581\\u13a1\\u13c2\\u13a4\": 13760,\n    \"\\u2581\\u13c1\\u13ea\\u13d2\": 13761,\n    \"\\u2581\\u13d5\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\": 13762,\n    \"\\u2581\\u13ef\\u13d5\\u13b0\\u13cd\\u13a6\": 13763,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13a9\\u13b8\\u13d7\": 13764,\n    \"\\u2581\\u13ac\\u13a9\\u13b7\\u13e4\\u13b0\\u13a2\": 13765,\n    \"\\u2581\\u13ef\\u13d3\\u13db\\u13cd\\u13aa\\u13a2\": 13766,\n    \"\\u13cd\\u13d7\\u13f0\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 13767,\n    \"\\u2581\\u13c2\\u13d3\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b2\\u13be\": 13768,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b2\\u13be\": 13769,\n    \"\\u13d3\\u13e9\\u13d7\\u13cd\\u13d9\": 13770,\n    \"\\u2581\\u13be\\u13cb\\u13c2\\u13cf\": 13771,\n    \"\\u2581\\u13db\\u13be\\u13db\\u13c1\\u13b5\": 13772,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13db\\u13c5\\u13a9\": 13773,\n    \"\\u2581\\u13ac\\u13c6\\u13e1\\u13d7\\u13cd\\u13a9\": 13774,\n    \"\\u2581\\u13a5\\u13c6\\u13d3\\u13c5\\u13d6\": 13775,\n    \"\\u2581\\u13c2\\u13da\\u13ea\\u13ad\\u13b8\": 13776,\n    \"\\u2581\\u13a0\\u13d2\\u13e8\": 13777,\n    \"\\u13e3\\u13b5\\u13cd\\u13d3\": 13778,\n    \"\\u2581\\u13c2\\u13d3\\u13db\\u13c1\\u13b0\": 13779,\n    \"\\u2581\\u13af\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 13780,\n    \"\\u2581\\u13f1\\u13be\\u13c6\\u13b5\\u13cd\\u13d4\\u13c1\": 13781,\n    \"\\u13be\\u13b5\\u13db\\u13af\": 13782,\n    \"\\u2581\\u13a4\\u13ea\\u13f2\\u13b2\\u13cd\\u13ac\": 13783,\n    \"\\u2581\\u13eb\\u13a8\\u13d3\": 13784,\n    \"\\u13af\\u13aa\\u13e9\\u13d8\\u13ad\\u13e7\": 13785,\n    \"\\u2581\\u13d4\\u13b7\\u13a9\\u13cd\\u13a9\\u13ac\\u13be\\u13ec\\u13d9\\u13d7\\u13f1\": 13786,\n    \"\\u2581\\u13a1\\u13d7\\u13ef\\u13a5\\u13a2\": 13787,\n    \"\\u2581\\u13e9\\u13c2\\u13cc\\u13d9\\u13ef\": 13788,\n    \"\\u2581\\u13d3\\u13a9\\u13c5\\u13c5\\u13a2\": 13789,\n    \"\\u2581\\u13ed\\u13be\\u13d8\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 13790,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\\u13e4\\u13ae\\u13cd\\u13d7\": 13791,\n    \"\\u2581\\u13db\\u13c2\\u13c1\\u13e5\": 13792,\n    \"\\u2581\\u13e4\\u13a6\\u13e1\": 13793,\n    \"\\u13d3\\u13c5\\u13d5\\u13d9\\u13d7\": 13794,\n    \"\\u2581\\u13c3\\u13e5\\u13ea\\u13ce\\u13b8\\u13a9\": 13795,\n    \"\\u2581\\u13d5\\u13a6\\u13ec\\u13cd\\u13ac\\u13a2\": 13796,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b3\\u13af\\u13f3\": 13797,\n    \"\\u2581\\u13a5\\u13e3\\u13c2\\u13a9\": 13798,\n    \"\\u2581\\u13a4\\u13c3\\u13b5\\u13e8\": 13799,\n    \"\\u2581\\u13c2\\u13a6\\u13db\\u13bf\\u13d5\\u13ac\\u13a2\": 13800,\n    \"\\u2581\\u13a4\\u13e9\\u13dd\\u13a5\": 13801,\n    \"\\u2581\\u13a4\\u13ec\\u13e2\\u13af\\u13d0\\u13d7\": 13802,\n    \"\\u2581\\u13eb\\u13ac\\u13ef\\u13c5\\u13b2\\u13ad\": 13803,\n    \"\\u2581\\u13eb\\u13c2\\u13da\\u13ea\\u13ce\\u13b4\\u13a2\": 13804,\n    \"\\u2581\\u13c2\\u13e5\\u13ef\\u13db\\u13c1\\u13ad\": 13805,\n    \"\\u2581\\u13d7\\u13a8\\u13b5\\u13cd\\u13a9\": 13806,\n    \"\\u2581\\u13d7\\u13c2\\u13c5\\u13ec\": 13807,\n    \"\\u2581\\u13a2\\u13e7\\u13be\\u13d3\": 13808,\n    \"\\u2581\\u13da\\u13be\\u13df\\u13b8\": 13809,\n    \"\\u2581\\u13cc\\u13a9\\u13ef\": 13810,\n    \"\\u2581\\u13d3\\u13e5\\u13b8\\u13c9\\u13d4\\u13c2\": 13811,\n    \"\\u2581\\u13a1\\u13ad\\u13a9\\u13b3\\u13e9\": 13812,\n    \"ate\": 13813,\n    \"\\u2581\\u13d3\\u13b6\\u13c1\": 13814,\n    \"\\u2581\\u13d3\\u13c2\\u13b3\\u13cd\\u13d3\\u13b8\": 13815,\n    \"\\u2581\\u13d3\\u13cb\\u13d4\\u13c5\": 13816,\n    \"\\u2581\\u13e7\\u13ec\\u13aa\\u13d9\\u13d7\": 13817,\n    \"\\u2581\\u13d1\\u13b9\\u13c2\": 13818,\n    \"\\u2581\\u13d5\\u13e5\\u13be\\u13f0\": 13819,\n    \"\\u2581\\u13f2\\u13a9\\u13cc\\u13c2\": 13820,\n    \"\\u2581\\u13e5\\u13ac\\u13c9\\u13af\\u13f3\\u13b2\\u13cd\": 13821,\n    \"\\u2581\\u13a4\\u13d7\\u13e9\\u13ce\\u13a2\": 13822,\n    \"\\u2581\\u13a2\\u13f0\\u13ac\\u13c1\\u13d7\": 13823,\n    \"\\u2581\\u13ed\\u13be\\u13e0\\u13e8\": 13824,\n    \"\\u2581\\u13f1\\u13da\\u13f2\\u13b1\\u13af\": 13825,\n    \"\\u2581\\u13e9\\u13d9\\u13d1\\u13b5\": 13826,\n    \"\\u13d4\\u13b3\\u13ec\\u13cd\\u13a6\": 13827,\n    \"\\u2581\\u13c3\\u13e8\\u13c1\\u13b0\": 13828,\n    \"\\u13be\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d7\\u13cd\\u13ac\": 13829,\n    \"\\u2581\\u13d7\\u13d3\\u13e0\\u13cd\\u13d7\": 13830,\n    \"\\u2581\\u13f1\\u13e3\\u13db\\u13db\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 13831,\n    \"\\u2581\\u13a0\\u13e5\\u13da\\u13a8\": 13832,\n    \"\\u13be\\u13b4\\u13c5\\u13c1\\u13a2\": 13833,\n    \"\\u2581\\u13eb\\u13ac\\u13f2\\u13ea\\u13b3\\u13c1\": 13834,\n    \"\\u13f0\\u13f2\\u13c2\": 13835,\n    \"\\u2581\\u13e3\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a6\": 13836,\n    \"\\u2581\\u13eb\\u13cd\\u13d7\\u13b7\\u13e8\\u13ad\": 13837,\n    \"\\u13d3\\u13ec\\u13a2\\u13a1\": 13838,\n    \"\\u2581\\u13cd\\u13c9\\u13d1\\u13b5\": 13839,\n    \"\\u2581\\u13ed\\u13be\\u13e3\\u13c5\": 13840,\n    \"\\u2581\\u13d3\\u13e5\\u13c5\\u13cf\": 13841,\n    \"\\u2581\\u13f1\\u13a6\\u13c5\\u13a5\\u13cf\": 13842,\n    \"\\u2581\\u13d5\\u13e5\\u13a0\\u13c1\": 13843,\n    \"\\u2581\\u13af\\u13cd\\u13d3\\u13e9\\u13d5\\u13a8\\u13cd\\u13d7\": 13844,\n    \"\\u2581\\u13f1\\u13ac\\u13c9\\u13ce\": 13845,\n    \"\\u2581\\u13e5\\u13c2\\u13ac\\u13c2\\u13cf\": 13846,\n    \"\\u2581\\u13a0\\u13d3\\u13be\\u13e9\\u13cd\": 13847,\n    \"\\u13e5\\u13e3\\u13c1\\u13b8\\u13d3\": 13848,\n    \"\\u2581\\u13d3\\u13c4\\u13aa\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 13849,\n    \"\\u13cb\\u13c1\\u13b5\": 13850,\n    \"\\u2581\\u13d7\\u13a6\\u13c1\\u13a6\\u13b8\": 13851,\n    \"\\u13db\\u13af\\u13ce\\u13ae\\u13cd\\u13d7\": 13852,\n    \"\\u2581\\u13e5\\u13c2\\u13da\\u13cd\": 13853,\n    \"\\u13a6\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\\u13f1\": 13854,\n    \"\\u2581\\u13a4\\u13c4\\u13f4\\u13d5\": 13855,\n    \"\\u2581\\u13a1\\u13d7\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 13856,\n    \"\\u2581\\u13d3\\u13be\\u13d7\\u13d4\\u13af\": 13857,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13d0\\u13e2\\u13d7\": 13858,\n    \"\\u2581\\u13d3\\u13f3\\u13b8\\u13c9\\u13d4\\u13c2\": 13859,\n    \"\\u13a1\\u13e3\\u13df\\u13b6\\u13a1\": 13860,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13b4\\u13db\": 13861,\n    \"\\u13e4\\u13b5\\u13ce\\u13d7\": 13862,\n    \"\\u13f3\\u13be\\u13cc\\u13be\\u13a9\\u13d2\": 13863,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13a8\\u13f3\\u13ad\": 13864,\n    \"\\u2581\\u13f1\\u13e3\\u13da\\u13b5\\u13cd\\u13a8\\u13a2\": 13865,\n    \"\\u2581\\u13a3\\u13a6\\u13da\\u13d3\\u13d5\\u13eb\\u13d2\": 13866,\n    \"\\u2581\\u13a4\\u13b6\\u13a9\\u13b3\": 13867,\n    \"\\u2581\\u13c2\\u13ac\\u13f4\\u13c1\\u13b8\": 13868,\n    \"\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d9\": 13869,\n    \"\\u2581\\u13a4\\u13c2\\u13bf\\u13b8\\u13af\": 13870,\n    \"\\u2581\\u13d7\\u13a6\\u13d9\\u13b3\\u13db\\u13d7\": 13871,\n    \"\\u2581\\u13a0\\u13c2\\u13b5\\u13c7\": 13872,\n    \"\\u13a6\\u13c6\\u13b8\\u13c2\": 13873,\n    \"\\u2581\\u13f1\\u13e3\\u13b5\\u13cd\\u13a9\": 13874,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13be\\u13b8\\u13af\": 13875,\n    \"\\u2581\\u13f3\\u13ec\\u13ce\\u13b4\\u13a2\": 13876,\n    \"\\u13e6\\u13a3\\u13cc\": 13877,\n    \"\\u2581\\u13ac\\u13c4\\u13ef\\u13a9\\u13cd\": 13878,\n    \"\\u2581\\u13d9\\u13db\\u13e1\\u13d4\\u13c2\": 13879,\n    \"\\u13b0\\u13d2\\u13cd\\u13a6\": 13880,\n    \"\\u2581\\u13a4\\u13ea\\u13f2\\u13c5\": 13881,\n    \"\\u2581\\u13d3\\u13e5\\u13ef\\u13ec\\u13a2\": 13882,\n    \"\\u2581\\u13da\\u13be\\u13e0\\u13af\\u13cd\\u13d4\\u13c1\\u13a2\": 13883,\n    \"\\u2581\\u13da\\u13c3\\u13a5\\u13a9\": 13884,\n    \"\\u2581\\u13a5\\u13ac\\u13ad\\u13c5\": 13885,\n    \"\\u2581\\u13a6\\u13c5\\u13c6\\u13b6\\u13a5\\u13af\": 13886,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13cc\\u13c1\\u13a2\": 13887,\n    \"\\u13d3\\u13d8\\u13cd\\u13d7\": 13888,\n    \"\\u13e0\\u13a3\\u13d2\": 13889,\n    \"\\u2581\\u13a2\\u13e5\\u13f0\\u13e3\\u13cd\": 13890,\n    \"\\u2581\\u13c2\\u13da\\u13ea\\u13ce\\u13b5\": 13891,\n    \"\\u2581\\u13d3\\u13c2\\u13a9\\u13cd\\u13a8\\u13a2\": 13892,\n    \"\\u2581\\u13eb\\u13e3\\u13b7\\u13af\\u13cd\\u13d7\": 13893,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\\u13c1\\u13b3\\u13c5\\u13af\": 13894,\n    \"\\u2581\\u13d7\\u13be\\u13d3\\u13c2\\u13b8\\u13a9\": 13895,\n    \"\\u13d5\\u13e5\\u13aa\\u13a5\\u13a9\": 13896,\n    \"\\u13d3\\u13c1\\u13c4\\u13b8\": 13897,\n    \"\\u2581\\u13a4\\u13e3\\u13c5\\u13d5\\u13a2\": 13898,\n    \"\\u13b5\\u13a6\\u13f2\\u13d9\\u13d7\": 13899,\n    \"\\u2581\\u13a6\\u13d9\\u13b4\\u13a3\\u13af\": 13900,\n    \"\\u2581\\u13a6\\u13c3\\u13af\\u13b5\\u13d3\\u13cd\\u13d7\": 13901,\n    \"\\u2581\\u13a6\\u13b8\\u13aa\\u13ac\": 13902,\n    \"\\u2581\\u13d3\\u13e5\\u13cc\\u13b3\\u13d3\\u13c2\": 13903,\n    \"\\u2581\\u13a4\\u13c3\\u13d2\\u13d7\": 13904,\n    \"\\u2581\\u13af\\u13a7\\u13c1\\u13a6\": 13905,\n    \"\\u13b5\\u13ae\\u13b5\\u13cd\\u13db\": 13906,\n    \"\\u2581\\u13c2\\u13a8\\u13e5\\u13ea\\u13ce\\u13ae\\u13cd\\u13d7\": 13907,\n    \"\\u2581\\u13a3\\u13a6\\u13d9\\u13b4\\u13b0\\u13d2\": 13908,\n    \"\\u13e3\\u13f0\\u13b8\\u13ae\": 13909,\n    \"\\u2581\\u13da\\u13f2\\u13e8\\u13a9\": 13910,\n    \"\\u2581\\u13f1\\u13d7\\u13e3\\u13e0\\u13f1\": 13911,\n    \"\\u13c3\\u13cd\\u13a9\\u13cd\\u13d7\\u13f1\": 13912,\n    \"\\u2581\\u13a2\\u13ef\\u13c2\\u13a2\\u13db\\u13ad\": 13913,\n    \"\\u2581\\u13d3\\u13c2\\u13c1\\u13b5\\u13ac\\u13a2\": 13914,\n    \"\\u2581\\u13a2\\u13a6\\u13da\\u13d3\\u13b4\\u13cd\\u13d9\\u13d7\\u13f1\": 13915,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13e4\\u13b8\\u13a9\": 13916,\n    \"\\u2581\\u13a4\\u13aa\\u13d0\\u13c5\": 13917,\n    \"\\u2581\\u13f1\\u13d3\\u13c2\\u13ec\\u13c2\\u13ad\": 13918,\n    \"\\u13d3\\u13d3\\u13b4\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 13919,\n    \"\\u2581\\u13af\\u13ef\\u13d9\\u13b5\\u13a8\\u13cd\\u13d7\": 13920,\n    \"\\u2581\\u13ed\\u13be\\u13a6\\u13d4\\u13b2\\u13cd\": 13921,\n    \"\\u2581\\u13a4\\u13d3\\u13e0\\u13cd\\u13d4\\u13c5\\u13a9\": 13922,\n    \"\\u2581\\u13d3\\u13a6\\u13be\\u13c4\\u13aa\\u13e5\": 13923,\n    \"\\u13aa\\u13ac\\u13c2\\u13cd\\u13d3\": 13924,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13a9\\u13ef\\u13cd\\u13d7\": 13925,\n    \"\\u13da\\u13d8\\u13bf\\u13eb\\u13db\\u13ae\\u13a2\": 13926,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13aa\\u13b2\\u13cd\": 13927,\n    \"\\u2581\\u13a3\\u13a9\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\\u13a2\": 13928,\n    \"\\u2581\\u13e7\\u13c3\\u13e2\\u13be\\u13c1\\u13d7\": 13929,\n    \"\\u2581\\u13b1\\u13db\\u13c1\\u13a2\": 13930,\n    \"\\u2581\\u13a4\\u13be\\u13cd\\u13d3\\u13b8\": 13931,\n    \"\\u2581\\u13d5\\u13ad\\u13d8\\u13c3\\u13b8\": 13932,\n    \"\\u2581\\u13ef\\u13c6\\u13da\\u13b3\": 13933,\n    \"\\u13a6\\u13d8\\u13b8\\u13db\": 13934,\n    \"\\u2581\\u13d5\\u13d3\\u13c1\\u13b6\\u13db\\u13a2\": 13935,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d3\\u13db\\u13a9\": 13936,\n    \"\\u2581\\u13a6\\u13f0\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\": 13937,\n    \"\\u2581\\u13d2\\u13b6\\u13af\": 13938,\n    \"\\u13a9\\u13a6\\u13d4\\u13ae\\u13a2\": 13939,\n    \"\\u2581\\u13a4\\u13a7\\u13cc\": 13940,\n    \"\\u2581\\u13d3\\u13a6\\u13c4\\u13aa\\u13e5\": 13941,\n    \"\\u2581\\u13d3\\u13c2\\u13be\\u13c6\": 13942,\n    \"\\u2581\\u13d7\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\\u13cd\\u13a9\": 13943,\n    \"\\u13a9\\u13a6\\u13f4\\u13b3\": 13944,\n    \"\\u13e5\\u13ef\\u13b4\\u13c1\\u13d7\": 13945,\n    \"\\u2581\\u13e4\\u13e6\\u13ce\\u13ad\": 13946,\n    \"\\u2581\\u13d9\\u13e7\\u13c2\\u13c5\": 13947,\n    \"\\u13d9\\u13d3\\u13e3\\u13d8\\u13be\\u13eb\\u13db\": 13948,\n    \"\\u2581\\u13d3\\u13e5\\u13f4\\u13c2\\u13b5\": 13949,\n    \"\\u2581\\u13d5\\u13e5\\u13c1\\u13e4\\u13ad\": 13950,\n    \"\\u2581\\u13d5\\u13e5\\u13ef\\u13a6\\u13bf\\u13c5\": 13951,\n    \"\\u2581\\u13d3\\u13a6\\u13c5\\u13cf\": 13952,\n    \"\\u2581\\u13d3\\u13f3\\u13c4\\u13aa\\u13e8\\u13a9\": 13953,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13c2\\u13d9\\u13b8\": 13954,\n    \"\\u2581\\u13da\\u13df\\u13f0\\u13b5\\u13d9\\u13b8\": 13955,\n    \"\\u2581\\u13f3\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\": 13956,\n    \"\\u2581\\u13a4\\u13cd\\u13d9\\u13f0\": 13957,\n    \"\\u2581\\u13e4\\u13e3\\u13df\\u13f4\\u13cf\": 13958,\n    \"\\u2581\\u13a4\\u13c2\\u13dd\\u13d7\\u13e4\": 13959,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13c6\\u13d8\\u13cd\\u13d7\": 13960,\n    \"\\u2581\\u13af\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13cf\": 13961,\n    \"\\u2581\\u13c2\\u13da\\u13c5\\u13c1\\u13b8\\u13a9\": 13962,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13c4\\u13aa\\u13e4\\u13b8\": 13963,\n    \"\\u2581\\u13eb\\u13e3\\u13b7\\u13e8\": 13964,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a9\\u13f0\": 13965,\n    \"\\u2581\\u13a0\\u13a6\\u13b4\\u13d7\": 13966,\n    \"\\u2581\\u13a1\\u13e5\\u13ce\\u13aa\\u13a9\\u13d2\": 13967,\n    \"\\u2581\\u13a6\\u13c3\\u13b8\\u13a5\\u13cd\\u13a8\": 13968,\n    \"\\u2581\\u13da\\u13be\\u13cf\\u13d4\\u13d5\\u13a2\": 13969,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13cf\": 13970,\n    \"\\u13b1\\u13ce\\u13a2\": 13971,\n    \"\\u2581\\u13a2\\u13e5\\u13b5\\u13d3\\u13cd\\u13d7\\u13ad\": 13972,\n    \"\\u2581\\u13a0\\u13c7\\u13c5\\u13d3\": 13973,\n    \"\\u2581\\u13e7\\u13be\\u13d9\\u13a2\\u13db\": 13974,\n    \"\\u2581\\u13d5\\u13e5\\u13a6\\u13d8\\u13b8\": 13975,\n    \"\\u13c1\\u13c9\\u13cf\": 13976,\n    \"\\u2581\\u13cd\\u13a9\\u13b7\\u13e5\": 13977,\n    \"\\u2581\\u13a2\\u13af\\u13a6\\u13d4\\u13ad\": 13978,\n    \"\\u2581\\u13a0\\u13c5\\u13d7\\u13cd\\u13a9\": 13979,\n    \"\\u2581\\u13a0\\u13d9\\u13c2\\u13cd\\u13ac\": 13980,\n    \"\\u2581\\u13a1\\u13d3\\u13e4\\u13b5\\u13a6\": 13981,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13c4\\u13aa\": 13982,\n    \"\\u2581\\u13ad\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d3\": 13983,\n    \"\\u2581\\u13f1\\u13e5\\u13cf\\u13b3\\u13db\\u13a5\\u13a6\": 13984,\n    \"\\u2581\\u13d5\\u13a6\\u13be\\u13e4\\u13cd\": 13985,\n    \"\\u13ef\\u13d3\\u13c2\\u13b8\\u13e4\": 13986,\n    \"\\u2581\\u13a4\\u13f4\\u13b4\\u13c3\": 13987,\n    \"\\u2581\\u13a0\\u13e5\\u13d5\\u13b8\\u13a9\": 13988,\n    \"\\u13d3\\u13b8\\u13cd\\u13db\\u13a2\": 13989,\n    \"\\u2581\\u13da\\u13a9\\u13e8\": 13990,\n    \"\\u13e2\\u13c6\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 13991,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13f2\\u13af\\u13ce\\u13b8\\u13af\": 13992,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13d3\\u13e9\\u13d5\\u13a8\\u13cd\\u13d7\": 13993,\n    \"\\u2581\\u13a2\\u13e8\\u13be\\u13c4\\u13eb\\u13ce\\u13ad\": 13994,\n    \"\\u2581\\u13ac\\u13ef\\u13a6\\u13d9\\u13cd\": 13995,\n    \"\\u2581\\u13ae\\u13cf\\u13b6\\u13c5\": 13996,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c5\\u13c5\\u13a9\": 13997,\n    \"\\u2581\\u13a0\\u13df\\u13f0\\u13b5\": 13998,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d5\\u13f2\\u13c5\": 13999,\n    \"\\u2581\\u13d3\\u13be\\u13d7\\u13d4\\u13cd\\u13ac\": 14000,\n    \"\\u2581\\u13d7\\u13d3\\u13c2\\u13c3\": 14001,\n    \"\\u2581\\u13db\\u13b5\\u13cd\\u13c6\\u13d7\": 14002,\n    \"\\u2581\\u13a2\\u13e3\\u13d9\\u13a9\\u13ef\\u13cd\": 14003,\n    \"\\u2581\\u13e6\\u13e4\\u13d9\\u13ad\": 14004,\n    \"\\u13e5\\u13b6\\u13c4\\u13a1\\u13b8\": 14005,\n    \"\\u2581\\u13a4\\u13be\\u13e8\\u13d3\": 14006,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\\u13a2\\u13d2\\u13a2\": 14007,\n    \"\\u2581\\u13a3\\u13cd\\u13d3\\u13df\\u13c3\\u13ae\\u13cd\\u13ac\": 14008,\n    \"\\u2581\\u13aa\\u13b9\": 14009,\n    \"\\u2581\\u13d5\\u13e5\\u13be\\u13eb\\u13cd\": 14010,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13ec\\u13cd\\u13d7\\u13f1\": 14011,\n    \"\\u2581\\u13a2\\u13e3\\u13d2\\u13c2\\u13b8\\u13a9\": 14012,\n    \"\\u13c3\\u13cf\\u13cc\\u13c1\": 14013,\n    \"\\u2581\\u13a0\\u13ab\\u13f4\\u13cd\": 14014,\n    \"\\u2581\\u13f1\\u13be\\u13ac\\u13c1\\u13b8\": 14015,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13e1\\u13a8\\u13a2\": 14016,\n    \"\\u2581\\u13c4\\u13b6\\u13ce\\u13a2\": 14017,\n    \"\\u2581\\u13f1\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ae\\u13a2\": 14018,\n    \"\\u2581\\u13a5\\u13d3\\u13d8\": 14019,\n    \"\\u2581\\u13a4\\u13eb\\u13d2\\u13c1\\u13a2\": 14020,\n    \"\\u2581\\u13d5\\u13e5\\u13c2\\u13f4\\u13b2\": 14021,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13f0\\u13b8\\u13ad\": 14022,\n    \"\\u2581\\u13a1\\u13e5\\u13dd\\u13c5\\u13af\": 14023,\n    \"\\u13a6\\u13b5\\u13aa\\u13d4\\u13c5\\u13af\": 14024,\n    \"\\u13f4\\u13a1\\u13b4\": 14025,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13be\\u13dd\\u13a2\": 14026,\n    \"\\u2581\\u13f4\\u13ac\\u13f4\\u13ad\": 14027,\n    \"\\u2581\\u13c4\\u13ea\\u13ad\\u13b4\": 14028,\n    \"\\u2581\\u13d5\\u13ad\\u13d4\\u13c5\\u13ad\": 14029,\n    \"\\u13a9\\u13f2\\u13b1\\u13d2\\u13a9\": 14030,\n    \"\\u2581\\u13a4\\u13d3\\u13c4\\u13b8\": 14031,\n    \"\\u13a7\\u13b5\\u13a2\\u13cd\\u13d4\\u13c2\": 14032,\n    \"\\u2581\\u13a8\\u13e5\\u13f4\\u13d4\\u13c2\\u13b8\": 14033,\n    \"\\u2581\\u13a3\\u13e5\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 14034,\n    \"\\u2581\\u13a1\\u13bb\\u13c2\\u13d3\\u13c8\": 14035,\n    \"\\u13e3\\u13c5\\u13db\\u13a9\": 14036,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13d5\\u13cd\\u13d7\": 14037,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\\u13d2\\u13ad\": 14038,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13b0\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 14039,\n    \"\\u2581\\u13a0\\u13c9\\u13e0\": 14040,\n    \"\\u2581\\u13a4\\u13db\\u13c2\\u13db\": 14041,\n    \"\\u2581\\u13da\\u13e9\\u13d3\\u13b7\\u13ef\\u13db\": 14042,\n    \"\\u2581\\u13d7\\u13e6\\u13b8\\u13d2\\u13af\": 14043,\n    \"\\u2581\\u13a2\\u13e5\\u13ef\\u13a2\": 14044,\n    \"\\u2581\\u13d7\\u13d3\\u13ea\\u13cd\": 14045,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13c5\\u13a2\\u13cd\\u13d5\\u13cd\\u13d7\": 14046,\n    \"\\u2581\\u13d3\\u13c3\\u13f1\\u13c1\": 14047,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13a7\\u13c1\\u13b8\": 14048,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13db\\u13c2\": 14049,\n    \"\\u2581\\u13d5\\u13a6\\u13ce\\u13af\": 14050,\n    \"\\u2581\\u13a3\\u13aa\\u13ea\": 14051,\n    \"\\u2581\\u13f4\\u13d3\\u13a8\\u13cf\": 14052,\n    \"\\u2581\\u13af\\u13cd\\u13da\\u13b6\\u13d4\\u13c5\": 14053,\n    \"\\u2581\\u13a0\\u13c7\\u13b3\\u13d7\\u13cd\": 14054,\n    \"\\u2581\\u13a0\\u13b5\\u13cc\\u13b3\\u13db\\u13a6\": 14055,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c1\\u13e4\\u13b8\": 14056,\n    \"\\u2581\\u13a0\\u13e5\\u13f4\\u13a9\\u13c5\": 14057,\n    \"\\u2581\\u13a0\\u13b5\\u13d6\\u13b8\\u13b2\\u13cd\\u13ac\": 14058,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\\u13b5\\u13f2\\u13e8\": 14059,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c4\": 14060,\n    \"\\u2581\\u13be\\u13a6\\u13d4\\u13be\\u13a5\\u13be\": 14061,\n    \"\\u13be\\u13a6\\u13d9\\u13cd\\u13d4\\u13c2\": 14062,\n    \"\\u2581\\u13da\\u13d6\\u13b8\": 14063,\n    \"\\u2581\\u13da\\u13ac\\u13e9\\u13dd\": 14064,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13e1\\u13f0\\u13a2\": 14065,\n    \"\\u2581\\u13da\\u13c2\\u13b3\\u13a6\\u13b8\": 14066,\n    \"\\u13e8\\u13f1\\u13e2\\u13c5\": 14067,\n    \"\\u2581\\u13a2\\u13e8\\u13ec\\u13c1\\u13d7\\u13ad\": 14068,\n    \"\\u2581\\u13e5\\u13a9\\u13b5\\u13b5\": 14069,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13af\\u13f0\": 14070,\n    \"\\u2581\\u13a0\\u13c6\\u13d2\\u13c2\\u13a6\": 14071,\n    \"\\u2581\\u13e5\\u13e6\\u13af\\u13f3\\u13c2\": 14072,\n    \"\\u2581\\u13f1\\u13e8\\u13b8\\u13c9\\u13d7\\u13ad\": 14073,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13cd\\u13d7\\u13f0\\u13d4\\u13c1\": 14074,\n    \"\\u13e5\\u13ad\\u13b7\": 14075,\n    \"\\u2581\\u13d3\\u13c2\\u13b4\\u13f4\\u13cd\": 14076,\n    \"\\u2581\\u13f3\\u13c2\\u13d7\\u13cd\\u13a9\\u13cc\": 14077,\n    \"\\u2581\\u13f1\\u13a7\\u13c1\\u13c9\\u13a6\": 14078,\n    \"\\u2581\\u13e5\\u13f2\\u13a2\\u13f3\\u13b2\\u13cd\": 14079,\n    \"\\u2581\\u13cf\\u13c5\\u13d9\": 14080,\n    \"\\u13b5\\u13cf\\u13b2\\u13cd\\u13d3\": 14081,\n    \"\\u2581\\u13a0\\u13c6\\u13e2\\u13c8\\u13cd\\u13d9\\u13d7\": 14082,\n    \"\\u2581\\u13a4\\u13d9\\u13b3\\u13d2\": 14083,\n    \"\\u2581\\u13d7\\u13e8\\u13c1\\u13b8\\u13a9\": 14084,\n    \"\\u2581\\u13a8\\u13e5\\u13c3\\u13ae\\u13cd\\u13a8\\u13cd\\u13d7\": 14085,\n    \"\\u2581\\u13d3\\u13ad\\u13ec\\u13a2\\u13ae\": 14086,\n    \"\\u2581\\u13cd\\u13d5\\u13a9\": 14087,\n    \"\\u2581\\u13d3\\u13d8\\u13c1\\u13ae\\u13a2\": 14088,\n    \"\\u2581\\u13e3\\u13b5\\u13ec\\u13a2\\u13cd\\u13d7\": 14089,\n    \"\\u2581\\u13e3\\u13db\\u13d0\\u13c5\\u13af\": 14090,\n    \"\\u2581\\u13a6\\u13cc\\u13be\": 14091,\n    \"\\u2581\\u13eb\\u13a6\\u13b6\\u13cd\\u13a9\": 14092,\n    \"\\u2581\\u13f2\\u13e4\\u13ad\": 14093,\n    \"\\u13a6\\u13f0\\u13e5\\u13d0\\u13e2\\u13d4\\u13c2\": 14094,\n    \"\\u2581\\u13a0\\u13c2\\u13ab\\u13cc\": 14095,\n    \"\\u2581\\u13e5\\u13d5\\u13aa\\u13ea\\u13b3\": 14096,\n    \"\\u13cd\\u13d9\\u13f0\\u13af\": 14097,\n    \"\\u2581\\u13da\\u13be\\u13d7\\u13cc\\u13d3\\u13d5\": 14098,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13d1\\u13f0\\u13db\": 14099,\n    \"\\u2581\\u13a0\\u13d3\\u13be\\u13eb\\u13d7\\u13cd\\u13ac\": 14100,\n    \"\\u2581\\u13a3\\u13a6\\u13c5\\u13d7\\u13f1\": 14101,\n    \"\\u2581\\u13da\\u13c1\\u13a2\\u13cd\\u13d3\\u13c1\\u13b4\": 14102,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\\u13ae\\u13a2\": 14103,\n    \"\\u2581\\u13d3\\u13d4\\u13b4\\u13a6\": 14104,\n    \"\\u2581\\u13d7\\u13e3\\u13e0\\u13f1\\u13a6\": 14105,\n    \"\\u2581\\u13a0\\u13c1\\u13e2\\u13d7\\u13cd\": 14106,\n    \"\\u2581\\u13d3\\u13e5\\u13f4\\u13b5\": 14107,\n    \"\\u2581\\u13eb\\u13a8\\u13e3\\u13f2\\u13b5\\u13a6\": 14108,\n    \"\\u2581\\u13f1\\u13e7\\u13e2\": 14109,\n    \"\\u2581\\u13a0\\u13d3\\u13e9\\u13db\\u13a1\\u13af\": 14110,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c5\\u13c1\\u13a2\": 14111,\n    \"\\u2581\\u13f1\\u13a6\\u13be\\u13c4\\u13aa\\u13a6\": 14112,\n    \"\\u2581\\u13da\\u13cd\\u13a6\\u13e4\": 14113,\n    \"\\u2581\\u13f1\\u13a6\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a6\": 14114,\n    \"\\u2581\\u13f1\\u13d9\\u13ac\\u13db\\u13c2\\u13cf\": 14115,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d4\\u13f4\\u13c3\\u13be\": 14116,\n    \"\\u13be\\u13b4\\u13c2\\u13cd\\u13ac\": 14117,\n    \"\\u13d5\\u13d8\\u13f1\\u13b6\\u13cd\\u13ac\": 14118,\n    \"ino\": 14119,\n    \"\\u13a4\\u13c3\\u13af\\u13f3\\u13d3\\u13c1\\u13af\": 14120,\n    \"\\u13a6\\u13d4\\u13be\\u13eb\\u13cd\": 14121,\n    \"\\u2581\\u13ef\\u13c5\\u13d7\\u13ad\": 14122,\n    \"\\u13c4\\u13c1\\u13a9\\u13f4\": 14123,\n    \"\\u2581\\u13ef\\u13a9\\u13e9\\u13db\\u13b2\": 14124,\n    \"\\u2581\\u13a4\\u13ec\\u13e8\\u13db\\u13a2\": 14125,\n    \"\\u13c2\\u13c5\\u13cc\\u13d3\": 14126,\n    \"\\u2581\\u13e5\\u13bf\\u13db\\u13c1\\u13ad\": 14127,\n    \"\\u2581\\u13f1\\u13aa\\u13ea\\u13b3\": 14128,\n    \"\\u2581\\u13a2\\u13e4\\u13b3\\u13d7\\u13d3\\u13cd\\u13d7\\u13f1\": 14129,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13e4\\u13b2\": 14130,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13ec\\u13a9\\u13af\": 14131,\n    \"\\u2581\\u13c2\\u13d5\\u13a4\": 14132,\n    \"\\u2581\\u13ef\\u13c6\\u13d3\\u13c5\\u13d6\\u13b3\": 14133,\n    \"\\u2581\\u13a4\\u13c2\\u13b8\\u13d0\": 14134,\n    \"\\u13a9\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\\u13a2\": 14135,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13db\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 14136,\n    \"\\u2581\\u13d3\\u13e5\\u13b6\\u13a5\": 14137,\n    \"\\u2581\\u13a0\\u13c2\\u13d1\\u13b5\\u13aa\": 14138,\n    \"\\u2581\\u13e3\\u13ce\\u13b5\\u13d4\\u13c5\": 14139,\n    \"\\u2581\\u13eb\\u13a8\\u13a5\": 14140,\n    \"\\u2581\\u13a4\\u13d7\\u13b4\\u13a6\": 14141,\n    \"el\": 14142,\n    \"\\u2581\\u13be\\u13e5\\u13f0\\u13b2\\u13be\": 14143,\n    \"\\u2581\\u13da\\u13ec\\u13b5\\u13e4\\u13a2\": 14144,\n    \"\\u13ec\\u13d0\\u13c5\": 14145,\n    \"\\u2581\\u13d5\\u13e5\\u13aa\\u13be\\u13db\": 14146,\n    \"\\u13e5\\u13ad\\u13d3\\u13c5\\u13db\\u13b3\": 14147,\n    \"\\u2581\\u13d9\\u13d3\\u13ab\": 14148,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d3\\u13db\": 14149,\n    \"\\u2581\\u13a4\\u13c1\\u13e1\\u13ac\": 14150,\n    \"\\u2581\\u13a0\\u13e7\\u13cd\\u13db\": 14151,\n    \"\\u13cd\\u13a9\\u13b3\\u13d7\\u13cd\\u13d7\": 14152,\n    \"\\u2581\\u13ab\\u13e9\\u13be\\u13db\": 14153,\n    \"\\u2581\\u13a8\\u13e6\\u13b5\": 14154,\n    \"\\u2581\\u13ed\\u13be\\u13cc\\u13be\\u13a9\\u13ce\": 14155,\n    \"\\u2581\\u13c4\\u13d3\\u13c5\\u13a6\\u13b8\\u13be\": 14156,\n    \"\\u2581\\u13c4\\u13b3\\u13cf\\u13c1\": 14157,\n    \"\\u2581\\u13e3\\u13be\\u13c2\\u13a9\\u13cd\\u13a8\": 14158,\n    \"\\u2581\\u13da\\u13d3\\u13c5\\u13a1\\u13b4\": 14159,\n    \"\\u2581\\u13d5\\u13e5\\u13f2\\u13cd\\u13d4\\u13c5\": 14160,\n    \"\\u2581\\u13e5\\u13c2\\u13cc\\u13c4\\u13a6\": 14161,\n    \"\\u2581\\u13e5\\u13d9\\u13db\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b5\": 14162,\n    \"\\u2581\\u13f1\\u13a7\\u13c3\\u13ae\": 14163,\n    \"\\u2581\\u13eb\\u13d3\\u13a7\\u13c5\": 14164,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13c3\\u13ae\\u13b4\\u13a2\": 14165,\n    \"\\u2581\\u13e5\\u13a6\\u13b5\\u13a1\\u13b5\\u13a6\": 14166,\n    \"\\u2581\\u13e5\\u13a7\\u13c3\\u13ae\\u13ad\": 14167,\n    \"\\u2581\\u13e5\\u13e5\\u13a9\\u13b5\\u13f2\\u13a6\": 14168,\n    \"\\u13d3\\u13be\\u13c5\\u13a5\\u13cd\\u13a9\": 14169,\n    \"\\u2581\\u13eb\\u13d5\\u13e3\": 14170,\n    \"\\u2581\\u13da\\u13b6\\u13a8\\u13d2\": 14171,\n    \"\\u13a6\\u13b5\\u13cd\\u13d3\\u13b4\\u13a9\": 14172,\n    \"\\u2581\\u13f4\\u13d9\\u13ad\": 14173,\n    \"\\u13d3\\u13a6\\u13b8\\u13a5\\u13a6\": 14174,\n    \"\\u13d3\\u13c5\\u13eb\\u13cd\\u13a8\": 14175,\n    \"\\u2581\\u13d3\\u13e5\\u13cd\\u13d5\": 14176,\n    \"\\u2581\\u13f1\\u13a6\\u13c1\\u13b8\\u13d3\": 14177,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13a6\\u13d8\\u13d5\\u13af\": 14178,\n    \"\\u13cd\\u13da\\u13e2\\u13a9\": 14179,\n    \"\\u2581\\u13d5\\u13ac\\u13a6\\u13bf\\u13e9\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 14180,\n    \"\\u2581\\u13c4\\u13d2\\u13b4\\u13a2\": 14181,\n    \"\\u2581\\u13ef\\u13d5\\u13b0\\u13cd\\u13a8\\u13cd\\u13d7\": 14182,\n    \"\\u13d3\\u13a9\\u13ef\\u13cd\\u13d7\": 14183,\n    \"\\u13d6\\u13b3\\u13db\": 14184,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13b8\\u13a9\": 14185,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13bf\\u13eb\\u13db\\u13b2\\u13a9\": 14186,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13b5\\u13d3\\u13cd\\u13d7\": 14187,\n    \"\\u2581\\u13d9\\u13d3\\u13a6\\u13b6\\u13d0\\u13c2\": 14188,\n    \"\\u2581\\u13da\\u13ec\\u13ea\\u13b3\\u13c5\": 14189,\n    \"\\u2581\\u13ed\\u13c5\\u13ab\\u13db\\u13a2\": 14190,\n    \"\\u2581\\u13f1\\u13c2\\u13da\\u13e9\\u13c1\": 14191,\n    \"\\u2581\\u13a2\\u13e5\\u13d9\\u13b5\\u13cd\\u13d7\\u13f1\": 14192,\n    \"\\u13c2\\u13a6\\u13d7\": 14193,\n    \"\\u2581\\u13c2\\u13e8\\u13d2\\u13be\": 14194,\n    \"\\u2581\\u13a6\\u13df\\u13cf\\u13cd\\u13a8\\u13cd\\u13d7\": 14195,\n    \"\\u2581\\u13da\\u13bf\\u13b7\\u13d4\": 14196,\n    \"\\u2581\\u13a3\\u13e5\\u13aa\\u13a5\": 14197,\n    \"\\u2581\\u13ef\\u13d5\\u13b2\\u13a6\": 14198,\n    \"\\u2581\\u13c4\\u13cd\\u13d7\\u13d3\\u13c1\": 14199,\n    \"\\u2581\\u13d3\\u13db\\u13cd\\u13ac\\u13a2\": 14200,\n    \"\\u2581\\u13da\\u13b5\\u13e6\\u13d4\\u13c1\\u13a2\": 14201,\n    \"\\u13d1\\u13b8\\u13ae\": 14202,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\\u13cd\\u13a6\": 14203,\n    \"\\u13db\\u13a3\\u13e5\": 14204,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13b5\\u13cd\\u13d4\\u13c5\": 14205,\n    \"\\u2581\\u13c2\\u13ea\\u13ad\": 14206,\n    \"\\u2581\\u13d7\\u13e5\\u13cc\\u13b3\\u13db\\u13a6\": 14207,\n    \"\\u2581\\u13f1\\u13e3\\u13d9\\u13b4\\u13b0\\u13cd\": 14208,\n    \"\\u2581\\u13a8\\u13c8\\u13b5\": 14209,\n    \"\\u2581\\u13eb\\u13a6\\u13e2\\u13cd\": 14210,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13a8\\u13ae\": 14211,\n    \"\\u13b6\\u13c5\\u13ae\\u13cd\\u13a9\": 14212,\n    \"\\u2581\\u13d5\\u13e4\\u13b2\\u13a2\": 14213,\n    \"\\u2581\\u13eb\\u13d7\\u13a8\\u13e5\": 14214,\n    \"\\u2581\\u13a0\\u13a9\\u13eb\\u13ef\": 14215,\n    \"\\u2581\\u13ac\\u13ec\\u13af\\u13f3\\u13af\": 14216,\n    \"\\u2581\\u13ed\\u13d4\\u13b7\\u13aa\": 14217,\n    \"\\u2581\\u13e3\\u13b5\\u13c2\\u13ac\\u13ac\\u13a2\": 14218,\n    \"\\u13d3\\u13ec\\u13d4\\u13c5\\u13a9\": 14219,\n    \"\\u2581\\u13e7\\u13a7\\u13bf\\u13e9\\u13d7\\u13d3\\u13cd\\u13d7\\u13f1\": 14220,\n    \"\\u2581\\u13e7\\u13d5\\u13d8\\u13f1\\u13b6\\u13db\": 14221,\n    \"\\u2581\\u13a6\\u13cc\\u13d9\\u13f1\": 14222,\n    \"\\u2581\\u13d7\\u13c2\\u13c1\\u13df\\u13f4\\u13cd\\u13a9\": 14223,\n    \"\\u13c8\\u13d9\\u13b2\": 14224,\n    \"\\u2581\\u13e7\\u13b3\\u13a8\\u13ef\\u13db\\u13e4\\u13a2\": 14225,\n    \"\\u13ac\\u13ec\\u13af\\u13f3\\u13c1\\u13a2\": 14226,\n    \"\\u2581\\u13a3\\u13c7\\u13d7\": 14227,\n    \"\\u2581\\u13da\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13b4\": 14228,\n    \"\\u2581\\u13d5\\u13e5\\u13a6\\u13be\": 14229,\n    \"\\u2581\\u13d7\\u13a8\\u13cd\\u13a9\\u13a5\\u13cf\\u13c9\": 14230,\n    \"\\u2581\\u13d7\\u13ab\\u13cd\\u13a8\\u13c2\": 14231,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\\u13e4\\u13b4\\u13a2\": 14232,\n    \"\\u2581\\u13a8\\u13e5\\u13db\\u13ac\": 14233,\n    \"\\u2581\\u13e9\\u13d7\\u13e2\\u13cd\\u13d3\": 14234,\n    \"\\u2581\\u13ef\\u13be\\u13d5\\u13b0\": 14235,\n    \"\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\\u13a8\\u13cd\\u13d7\": 14236,\n    \"\\u2581\\u13e3\\u13d3\\u13f4\\u13d2\\u13a9\": 14237,\n    \"\\u2581\\u13a1\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 14238,\n    \"\\u2581\\u13f3\\u13c1\\u13c5\\u13ce\\u13a2\": 14239,\n    \"\\u13a4\\u13d9\\u13af\\u13f3\\u13a9\": 14240,\n    \"\\u13d2\\u13c2\\u13b5\\u13d9\\u13b8\": 14241,\n    \"\\u2581\\u13be\\u13a6\\u13d4\\u13db\": 14242,\n    \"\\u2581\\u13d7\\u13a6\\u13b5\\u13e6\\u13db\": 14243,\n    \"\\u13d3\\u13db\\u13db\\u13ae\\u13b8\\u13a5\\u13cd\\u13a8\": 14244,\n    \"\\u2581\\u13eb\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13cf\": 14245,\n    \"\\u13a6\\u13ab\\u13f4\\u13a1\\u13b5\": 14246,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13e4\\u13ae\\u13cd\\u13d7\": 14247,\n    \"\\u2581\\u13d7\\u13d5\\u13ad\\u13b7\\u13a8\": 14248,\n    \"\\u13e8\\u13c7\\u13cd\\u13a8\": 14249,\n    \"\\u2581\\u13a2\\u13d7\\u13cd\\u13d3\\u13e9\\u13d5\\u13a9\": 14250,\n    \"\\u2581\\u13e9\\u13d0\\u13be\": 14251,\n    \"\\u2581\\u13c4\\u13a1\\u13ce\": 14252,\n    \"\\u13d5\\u13b5\\u13ce\\u13ad\": 14253,\n    \"\\u2581\\u13ad\\u13b5\\u13ae\\u13b5\\u13a8\\u13cd\\u13d7\": 14254,\n    \"\\u2581\\u13a0\\u13c6\\u13b4\\u13c1\\u13b8\": 14255,\n    \"\\u2581\\u13e5\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\": 14256,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13e1\\u13d7\\u13cd\\u13a9\": 14257,\n    \"\\u2581\\u13d5\\u13e3\\u13c2\\u13ac\\u13a6\": 14258,\n    \"\\u2581\\u13eb\\u13d4\\u13a7\\u13c5\\u13a6\": 14259,\n    \"\\u2581\\u13d3\\u13c3\\u13e2\": 14260,\n    \"\\u2581\\u13d5\\u13a6\\u13b5\\u13a5\\u13c2\": 14261,\n    \"\\u2581\\u13e5\\u13da\\u13b4\\u13af\": 14262,\n    \"\\u2581\\u13a7\\u13c1\\u13aa\\u13a2\": 14263,\n    \"\\u13d3\\u13aa\\u13af\\u13e5\": 14264,\n    \"\\u2581\\u13d5\\u13ad\\u13d5\\u13f2\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 14265,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13b1\\u13d2\\u13af\": 14266,\n    \"\\u2581\\u13e7\\u13d6\\u13b5\\u13d9\": 14267,\n    \"\\u2581\\u13a8\\u13e5\\u13a8\\u13f3\\u13af\": 14268,\n    \"\\u2581\\u13f1\\u13a6\\u13b5\\u13ad\": 14269,\n    \"\\u13db\\u13db\\u13c5\\u13a9\\u13c3\": 14270,\n    \"\\u2581\\u13d7\\u13e5\\u13c3\\u13cd\\u13a6\\u13b8\\u13db\": 14271,\n    \"\\u2581\\u13d5\\u13ab\\u13cd\\u13d9\": 14272,\n    \"\\u2581\\u13ef\\u13b5\\u13d6\\u13b8\": 14273,\n    \"\\u2581\\u13af\\u13c1\\u13a9\\u13c9\\u13cd\\u13a9\\u13c2\": 14274,\n    \"\\u2581\\u13d3\\u13a6\\u13b6\\u13cf\": 14275,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13b5\\u13d9\\u13b8\": 14276,\n    \"\\u2581\\u13a4\\u13ea\\u13be\\u13ea\": 14277,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13ad\": 14278,\n    \"\\u2581\\u13a2\\u13e8\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\": 14279,\n    \"\\u2581\\u13a8\\u13a6\\u13ab\\u13f4\\u13db\": 14280,\n    \"ca\": 14281,\n    \"\\u2581\\u13e7\\u13f2\\u13b1\\u13d2\": 14282,\n    \"\\u2581\\u13a2\\u13e8\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 14283,\n    \"\\u2581\\u13e5\\u13f2\\u13a2\\u13f3\\u13d7\": 14284,\n    \"\\u13c3\\u13eb\\u13a0\": 14285,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13d3\\u13f1\\u13d7\\u13cd\": 14286,\n    \"\\u13d3\\u13c5\\u13b5\\u13f0\\u13a0\": 14287,\n    \"\\u13ac\\u13aa\\u13a5\\u13a9\": 14288,\n    \"\\u2581\\u13e5\\u13e3\\u13d3\\u13e1\\u13ac\": 14289,\n    \"\\u2581\\u13da\\u13c2\\u13aa\\u13ae\": 14290,\n    \"\\u13c4\\u13ec\\u13af\\u13cd\\u13d4\\u13c2\": 14291,\n    \"\\u13dd\\u13eb\\u13cd\\u13d7\": 14292,\n    \"\\u2581\\u13f3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b4\": 14293,\n    \"\\u13da\\u13aa\\u13c4\\u13b6\": 14294,\n    \"\\u13a6\\u13d6\\u13be\": 14295,\n    \"\\u2581\\u13ac\\u13e9\\u13ac\\u13cd\\u13aa\\u13b8\\u13c1\": 14296,\n    \"\\u2581\\u13ed\\u13be\\u13c5\\u13c5\\u13a9\": 14297,\n    \"\\u2581\\u13e7\\u13d1\\u13f4\": 14298,\n    \"\\u13c4\\u13e9\\u13a5\\u13be\": 14299,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13b3\\u13cd\\u13d4\": 14300,\n    \"\\u2581\\u13d5\\u13b0\\u13af\\u13f3\\u13b2\\u13cd\": 14301,\n    \"\\u2581\\u13b1\\u13be\\u13d3\": 14302,\n    \"\\u2581\\u13e7\\u13a6\\u13be\\u13cd\\u13d3\": 14303,\n    \"\\u2581\\u13d7\\u13c2\\u13c1\\u13e5\\u13f1\": 14304,\n    \"\\u2581\\u13d7\\u13e7\\u13aa\\u13d9\\u13d7\\u13f1\": 14305,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13d7\\u13d3\\u13cd\\u13d7\\u13f1\": 14306,\n    \"\\u2581\\u13a2\\u13aa\\u13e2\\u13c5\\u13af\": 14307,\n    \"\\u2581\\u13a2\\u13cd\\u13d9\\u13af\\u13f3\\u13b2\\u13cd\": 14308,\n    \"\\u13db\\u13c1\\u13b0\\u13b2\\u13cd\\u13d7\\u13f1\": 14309,\n    \"\\u2581\\u13cd\\u13c6\\u13c1\\u13b3\\u13c5\\u13af\": 14310,\n    \"\\u2581\\u13a1\\u13e5\\u13aa\\u13b5\\u13f0\\u13d7\\u13f1\": 14311,\n    \"\\u2581\\u13f3\\u13ec\\u13b3\": 14312,\n    \"\\u13e5\\u13d3\\u13a6\\u13b8\\u13a2\\u13d2\": 14313,\n    \"\\u2581\\u13cf\\u13f1\\u13c6\": 14314,\n    \"\\u2581\\u13ef\\u13a6\\u13b5\\u13cd\\u13a8\\u13a2\": 14315,\n    \"\\u2581\\u13d5\\u13a8\\u13e2\\u13d4\\u13c5\\u13ad\": 14316,\n    \"\\u2581\\u13a6\\u13b5\\u13ec\\u13a6\": 14317,\n    \"\\u2581\\u13a6\\u13c5\\u13b5\\u13f0\\u13d7\": 14318,\n    \"nt\": 14319,\n    \"\\u2581\\u13eb\\u13c4\\u13db\\u13c1\": 14320,\n    \"\\u2581\\u13f3\\u13e9\\u13a9\\u13b8\": 14321,\n    \"\\u13d9\\u13c5\\u13b8\\u13a2\": 14322,\n    \"\\u2581\\u13a0\\u13c2\\u13b8\\u13c9\\u13d7\\u13cd\\u13ac\": 14323,\n    \"\\u2581\\u13a8\\u13e3\\u13db\\u13a6\\u13c1\\u13b8\": 14324,\n    \"\\u2581\\u13c4\\u13d3\\u13db\\u13a9\": 14325,\n    \"\\u2581\\u13eb\\u13a7\\u13b3\": 14326,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13c3\\u13ae\\u13b8\": 14327,\n    \"\\u2581\\u13d3\\u13e5\\u13c2\\u13f4\\u13af\": 14328,\n    \"\\u2581\\u13a5\\u13c6\\u13b8\\u13cd\\u13d7\\u13f1\": 14329,\n    \"\\u2581\\u13da\\u13c2\\u13cd\\u13d7\\u13f0\\u13d4\\u13c1\": 14330,\n    \"\\u2581\\u13aa\\u13da\\u13a2\\u13cd\\u13db\": 14331,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13d2\\u13c5\": 14332,\n    \"\\u2581\\u13a4\\u13c4\\u13ec\\u13af\\u13cd\\u13d7\\u13f1\": 14333,\n    \"\\u2581\\u13a8\\u13e5\\u13b6\\u13c1\\u13a5\": 14334,\n    \"\\u2581\\u13a6\\u13df\\u13d0\\u13d7\": 14335,\n    \"\\u2581\\u13a0\\u13a9\\u13c2\\u13c6\\u13d8\\u13ae\\u13cd\\u13d7\": 14336,\n    \"\\u13cd\\u13aa\\u13b8\\u13aa\": 14337,\n    \"\\u13e5\\u13b7\\u13e8\\u13ad\": 14338,\n    \"\\u2581\\u13ef\\u13cd\\u13a6\\u13c5\\u13aa\\u13a2\": 14339,\n    \"\\u2581\\u13a4\\u13a9\\u13b8\\u13c2\\u13b8\": 14340,\n    \"\\u2581\\u13cd\\u13a9\\u13b7\\u13e4\\u13b8\\u13ad\": 14341,\n    \"\\u2581\\u13a2\\u13e5\\u13be\\u13f0\\u13cd\\u13a9\": 14342,\n    \"\\u2581\\u13d3\\u13d3\\u13ea\\u13b3\\u13a9\\u13cd\\u13ac\": 14343,\n    \"\\u2581\\u13a3\\u13cd\\u13d3\\u13d5\\u13ad\\u13f2\\u13b2\": 14344,\n    \"\\u2581\\u13a8\\u13e5\\u13a8\\u13f3\\u13ad\": 14345,\n    \"\\u2581\\u13a0\\u13c6\\u13da\\u13d3\\u13b8\": 14346,\n    \"\\u2581\\u13da\\u13c3\\u13e2\\u13e9\\u13d7\\u13d2\": 14347,\n    \"\\u2581\\u13e3\\u13d3\\u13cf\\u13c2\": 14348,\n    \"\\u2581\\u13ac\\u13cb\\u13d5\\u13e8\": 14349,\n    \"\\u2581\\u13db\\u13a0\\u13e5\": 14350,\n    \"\\u13da\\u13d3\\u13d5\\u13eb\\u13cd\\u13db\": 14351,\n    \"\\u2581\\u13d3\\u13e5\\u13db\\u13d4\\u13c2\": 14352,\n    \"\\u13b5\\u13f2\\u13ac\": 14353,\n    \"\\u2581\\u13d5\\u13e8\\u13f2\\u13af\\u13ce\\u13b8\": 14354,\n    \"\\u2581\\u13da\\u13ec\\u13d2\\u13a2\": 14355,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13c5\\u13db\\u13b5\": 14356,\n    \"\\u2581\\u13f1\\u13da\\u13da\\u13aa\": 14357,\n    \"\\u2581\\u13e3\\u13e5\\u13d0\\u13c5\": 14358,\n    \"\\u2581\\u13cd\\u13a9\\u13f2\\u13af\\u13cf\": 14359,\n    \"\\u2581\\u13da\\u13c2\\u13c1\\u13a6\\u13b8\": 14360,\n    \"\\u13d8\\u13c2\\u13d9\\u13b2\": 14361,\n    \"\\u2581\\u13a4\\u13d3\\u13d5\\u13f2\\u13d7\\u13f1\": 14362,\n    \"\\u13cd\\u13a9\\u13a7\\u13c1\\u13b8\\u13a9\": 14363,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\\u13cd\\u13d5\\u13cd\\u13d7\": 14364,\n    \"\\u13a7\\u13af\\u13f0\": 14365,\n    \"\\u2581\\u13c2\\u13da\\u13d3\\u13c5\": 14366,\n    \"\\u2581\\u13a6\\u13c4\\u13aa\": 14367,\n    \"\\u2581\\u13a4\\u13ad\\u13f2\\u13b4\": 14368,\n    \"\\u2581\\u13da\\u13be\\u13cc\\u13a5\": 14369,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c2\\u13ef\\u13db\": 14370,\n    \"\\u2581\\u13e6\\u13a6\\u13e4\\u13b5\\u13a6\": 14371,\n    \"\\u2581\\u13ac\\u13e9\\u13c3\\u13b4\\u13a2\": 14372,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13d5\": 14373,\n    \"\\u13c2\\u13aa\\u13b5\\u13f0\\u13a0\": 14374,\n    \"\\u2581\\u13f1\\u13e3\\u13d5\\u13b6\\u13b0\": 14375,\n    \"\\u2581\\u13e7\\u13ee\\u13d4\\u13c5\": 14376,\n    \"\\u2581\\u13a0\\u13c2\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13a9\": 14377,\n    \"\\u2581\\u13f1\\u13da\\u13b4\\u13c5\": 14378,\n    \"\\u2581\\u13d5\\u13a7\\u13c3\": 14379,\n    \"\\u2581\\u13c4\\u13dc\\u13cf\\u13db\\u13a1\\u13b2\\u13be\": 14380,\n    \"\\u2581\\u13c4\\u13f2\\u13b1\\u13d2\\u13be\": 14381,\n    \"\\u2581\\u13d7\\u13e5\\u13b6\\u13d3\": 14382,\n    \"\\u2581\\u13a8\\u13e5\\u13be\\u13c4\\u13aa\\u13eb\\u13d2\\u13af\": 14383,\n    \"\\u13be\\u13df\\u13b6\\u13be\": 14384,\n    \"\\u2581\\u13e7\\u13d0\\u13f1\\u13ad\": 14385,\n    \"\\u13a9\\u13cd\\u13c6\\u13b8\\u13d4\\u13c5\": 14386,\n    \"\\u13ac\\u13e9\\u13be\\u13d3\\u13d0\\u13e2\": 14387,\n    \"\\u2581\\u13f1\\u13d9\\u13a8\\u13e8\": 14388,\n    \"\\u2581\\u13da\\u13c2\\u13ac\\u13e8\": 14389,\n    \"\\u2581\\u13a2\\u13d7\\u13aa\": 14390,\n    \"\\u13e9\\u13db\\u13af\\u13b8\\u13a9\": 14391,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 14392,\n    \"\\u13cb\\u13c2\\u13cd\\u13d7\\u13f1\": 14393,\n    \"\\u2581\\u13a4\\u13e7\\u13d7\\u13ad\": 14394,\n    \"\\u2581\\u13f1\\u13ac\\u13f2\\u13ce\\u13ad\": 14395,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13d4\\u13c2\": 14396,\n    \"\\u13db\\u13a8\\u13e3\": 14397,\n    \"\\u13cd\\u13c6\\u13db\\u13a6\\u13cd\\u13d3\\u13cf\": 14398,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13cd\\u13a9\\u13cd\\u13d7\\u13f1\": 14399,\n    \"\\u2581\\u13a6\\u13f0\\u13e5\\u13d0\\u13e2\\u13d4\\u13c5\": 14400,\n    \"\\u13f4\\u13cb\\u13c1\\u13b8\\u13af\": 14401,\n    \"\\u13e9\\u13be\\u13d6\": 14402,\n    \"\\u2581\\u13e7\\u13f2\\u13e8\": 14403,\n    \"\\u2581\\u13f1\\u13c4\\u13db\\u13c1\\u13b8\": 14404,\n    \"\\u2581\\u13e5\\u13ef\\u13c4\": 14405,\n    \"\\u2581\\u13a4\\u13ac\\u13eb\": 14406,\n    \"ol\": 14407,\n    \"\\u13a6\\u13c2\\u13a9\\u13cd\\u13d4\\u13c1\\u13a2\": 14408,\n    \"\\u2581\\u13d9\\u13db\\u13a6\\u13b4\": 14409,\n    \"\\u13d1\\u13b5\\u13aa\\u13e4\": 14410,\n    \"\\u2581\\u13af\\u13ef\\u13d8\\u13c4\\u13a6\": 14411,\n    \"\\u2581\\u13be\\u13be\\u13b5\\u13ae\\u13b5\": 14412,\n    \"\\u2581\\u13e5\\u13da\\u13b4\\u13d4\\u13c1\\u13a2\": 14413,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\": 14414,\n    \"\\u2581\\u13a0\\u13e5\\u13e9\\u13db\\u13a1\\u13b8\\u13ad\": 14415,\n    \"\\u2581\\u13a2\\u13d7\\u13c1\\u13ac\": 14416,\n    \"\\u2581\\u13cd\\u13c6\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\\u13ad\": 14417,\n    \"\\u13da\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13b2\": 14418,\n    \"\\u2581\\u13a0\\u13c3\\u13af\\u13f3\\u13b2\\u13cd\\u13a6\": 14419,\n    \"\\u2581\\u13d7\\u13d9\\u13b3\\u13c5\\u13cd\\u13d7\": 14420,\n    \"\\u2581\\u13e5\\u13c5\\u13e9\\u13cd\\u13d9\\u13a2\": 14421,\n    \"\\u2581\\u13f4\\u13ac\\u13a9\\u13b7\\u13e5\": 14422,\n    \"\\u2581\\u13ea\\u13e4\": 14423,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 14424,\n    \"\\u13d7\\u13dd\\u13a5\\u13d4\": 14425,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d3\\u13a9\": 14426,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 14427,\n    \"\\u2581\\u13a6\\u13c3\\u13d7\\u13cd\\u13a9\": 14428,\n    \"\\u2581\\u13d3\\u13d8\\u13c1\\u13ae\\u13cd\\u13d7\": 14429,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13c2\\u13ae\\u13a2\": 14430,\n    \"\\u2581\\u13a2\\u13e5\\u13df\\u13cc\": 14431,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13e4\\u13b4\": 14432,\n    \"\\u2581\\u13e6\\u13e2\\u13c5\\u13af\": 14433,\n    \"\\u13d5\\u13b3\\u13b0\": 14434,\n    \"\\u2581\\u13c4\\u13cd\\u13d7\\u13d5\\u13a6\": 14435,\n    \"\\u2581\\u13a0\\u13e5\\u13a7\\u13c5\": 14436,\n    \"\\u2581\\u13a4\\u13c2\\u13e8\\u13c5\": 14437,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13ab\\u13eb\\u13ce\\u13b8\": 14438,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13d7\": 14439,\n    \"\\u2581\\u13c5\\u13d7\\u13a4\": 14440,\n    \"\\u2581\\u13a0\\u13b9\\u13f3\\u13b8\": 14441,\n    \"\\u2581\\u13a3\\u13a8\\u13c5\\u13cd\\u13d7\\u13f1\": 14442,\n    \"\\u2581\\u13e9\\u13c2\\u13b7\\u13e8\": 14443,\n    \"\\u2581\\u13a2\\u13a9\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\\u13a2\": 14444,\n    \"\\u2581\\u13a3\\u13a6\\u13d5\\u13ef\\u13d9\\u13d7\\u13ad\": 14445,\n    \"\\u2581\\u13f1\\u13da\\u13ea\": 14446,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13a8\\u13b2\\u13a2\": 14447,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13c1\\u13b8\": 14448,\n    \"\\u2581\\u13b5\\u13cc\": 14449,\n    \"\\u13d3\\u13a7\\u13ad\\u13c5\": 14450,\n    \"\\u2581\\u13a1\\u13cd\\u13aa\\u13b5\": 14451,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13b3\\u13eb\\u13ce\\u13b8\": 14452,\n    \"\\u2581\\u13a3\\u13a9\\u13aa\\u13c1\": 14453,\n    \"\\u2581\\u13a0\\u13d3\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13cd\\u13a9\": 14454,\n    \"\\u13ef\\u13cd\\u13d7\": 14455,\n    \"\\u2581\\u13ad\\u13b5\\u13cd\\u13d5\\u13b8\": 14456,\n    \"\\u2581\\u13c2\\u13a6\\u13cd\\u13d5\\u13cd\\u13d7\": 14457,\n    \"\\u13c3\\u13e2\\u13cd\\u13a9\": 14458,\n    \"\\u2581\\u13e5\\u13a6\\u13b3\\u13a8\": 14459,\n    \"\\u2581\\u13eb\\u13a6\\u13f2\\u13a9\": 14460,\n    \"\\u2581\\u13a0\\u13e5\\u13b5\\u13a5\\u13c2\\u13b8\": 14461,\n    \"\\u13da\\u13b6\\u13af\\u13ce\\u13b4\": 14462,\n    \"\\u2581\\u13a6\\u13f2\\u13a9\\u13d0\\u13e2\": 14463,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 14464,\n    \"\\u2581\\u13c4\\u13c1\\u13b2\\u13be\": 14465,\n    \"\\u2581\\u13e9\\u13c6\\u13d5\": 14466,\n    \"\\u13ac\\u13e9\\u13c2\\u13f4\\u13ae\\u13c3\": 14467,\n    \"\\u2581\\u13e5\\u13d3\\u13d3\\u13ec\\u13cd\\u13ac\\u13a9\": 14468,\n    \"\\u2581\\u13a0\\u13e5\\u13e9\\u13db\\u13a1\\u13b8\\u13af\": 14469,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13d9\": 14470,\n    \"\\u2581\\u13ac\\u13ec\\u13af\\u13f3\\u13c5\\u13af\": 14471,\n    \"\\u2581\\u13ad\\u13c8\\u13b3\": 14472,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13cd\\u13a6\\u13b3\\u13c1\": 14473,\n    \"\\u13b5\\u13aa\\u13da\\u13c5\": 14474,\n    \"\\u2581\\u13ac\\u13e9\\u13b6\\u13c1\\u13d7\": 14475,\n    \"\\u2581\\u13a2\\u13e4\\u13f2\\u13d7\\u13f1\": 14476,\n    \"\\u13a9\\u13cd\\u13d7\\u13f0\\u13d7\\u13cd\\u13ac\": 14477,\n    \"\\u2581\\u13a0\\u13f2\\u13b0\\u13cd\": 14478,\n    \"\\u2581\\u13e7\\u13c2\\u13b5\\u13a1\\u13be\": 14479,\n    \"\\u13a6\\u13be\\u13af\": 14480,\n    \"\\u2581\\u13d5\\u13af\\u13a6\\u13d4\\u13ad\": 14481,\n    \"\\u2581\\u13cd\\u13a9\\u13a8\\u13af\\u13d9\\u13b8\": 14482,\n    \"\\u2581\\u13cd\\u13a9\\u13cd\\u13d3\\u13e9\\u13db\\u13cd\\u13d7\\u13f1\": 14483,\n    \"\\u13a9\\u13b3\\u13eb\\u13cd\\u13d7\": 14484,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13b6\\u13c6\\u13a1\": 14485,\n    \"\\u2581\\u13ae\\u13d9\\u13ae\\u13cd\\u13d7\": 14486,\n    \"\\u2581\\u13a0\\u13be\\u13d9\\u13b4\": 14487,\n    \"\\u2581\\u13d7\\u13c2\\u13a7\\u13bf\\u13e9\\u13d7\": 14488,\n    \"\\u2581\\u13a2\\u13e5\\u13f2\\u13cd\\u13d3\": 14489,\n    \"\\u13b7\\u13e5\\u13b4\\u13a2\": 14490,\n    \"\\u13c3\\u13b2\\u13b3\": 14491,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13d3\\u13c5\\u13d6\": 14492,\n    \"\\u2581\\u13a8\\u13ef\\u13d4\\u13af\": 14493,\n    \"\\u13be\\u13e2\\u13c6\": 14494,\n    \"\\u13d3\\u13c2\\u13b8\\u13e3\": 14495,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\\u13b3\": 14496,\n    \"\\u2581\\u13a4\\u13c2\\u13ef\\u13c5\\u13ae\": 14497,\n    \"\\u2581\\u13b7\\u13eb\": 14498,\n    \"\\u2581\\u13a4\\u13be\\u13dc\\u13cf\\u13db\\u13a1\": 14499,\n    \"\\u2581\\u13da\\u13b5\\u13cf\\u13b2\\u13d2\\u13a9\": 14500,\n    \"\\u2581\\u13ed\\u13be\\u13cc\\u13be\\u13a9\": 14501,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13c5\\u13ce\": 14502,\n    \"\\u2581\\u13d3\\u13be\\u13e4\\u13a8\\u13cd\\u13d7\\u13c9\": 14503,\n    \"\\u2581\\u13a6\\u13d3\\u13c5\\u13d6\\u13ad\": 14504,\n    \"\\u2581\\u13da\\u13c5\\u13b5\\u13f0\\u13a5\": 14505,\n    \"\\u2581\\u13e6\\u13af\\u13f3\\u13ce\\u13cd\\u13d7\\u13c9\": 14506,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\\u13af\": 14507,\n    \"\\u13f0\\u13b6\\u13b5\": 14508,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 14509,\n    \"\\u2581\\u13ef\\u13d9\\u13e2\\u13be\": 14510,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d3\\u13e9\\u13db\\u13cd\\u13d7\\u13f1\": 14511,\n    \"\\u2581\\u13a4\\u13b6\\u13d0\\u13c2\\u13d7\": 14512,\n    \"\\u2581\\u13a8\\u13ac\\u13ec\\u13a3\\u13d7\": 14513,\n    \"\\u2581\\u13af\\u13d7\\u13a6\\u13d4\\u13ad\": 14514,\n    \"\\u2581\\u13ed\\u13a9\\u13ce\": 14515,\n    \"\\u2581\\u13eb\\u13d7\\u13a8\\u13a6\": 14516,\n    \"\\u2581\\u13e5\\u13be\\u13c6\\u13cd\\u13d7\\u13c9\": 14517,\n    \"\\u13a9\\u13e9\\u13af\\u13cd\\u13d9\\u13d7\": 14518,\n    \"\\u2581\\u13da\\u13ad\\u13be\\u13ec\": 14519,\n    \"\\u2581\\u13f1\\u13c5\\u13db\\u13c5\\u13c1\\u13b5\": 14520,\n    \"\\u2581\\u13c7\\u13b4\\u13d7\": 14521,\n    \"\\u13f0\\u13a2\\u13cd\\u13d4\\u13c1\": 14522,\n    \"\\u2581\\u13e7\\u13ec\\u13d1\\u13b4\\u13d7\": 14523,\n    \"\\u2581\\u13a1\\u13e5\\u13a5\\u13cf\": 14524,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13df\\u13f4\\u13cd\\u13d3\\u13c1\\u13b8\": 14525,\n    \"\\u13da\\u13be\\u13df\\u13ef\\u13db\": 14526,\n    \"\\u2581\\u13a4\\u13be\\u13e0\\u13ef\\u13cd\\u13d7\": 14527,\n    \"\\u2581\\u13a4\\u13c4\\u13d8\": 14528,\n    \"\\u13d5\\u13b3\\u13cd\\u13d7\": 14529,\n    \"\\u2581\\u13d8\\u13c5\\u13cf\\u13d7\": 14530,\n    \"\\u2581\\u13a4\\u13a7\\u13e8\": 14531,\n    \"\\u2581\\u13e5\\u13cd\\u13c6\\u13b8\\u13be\": 14532,\n    \"\\u2581\\u13d7\\u13c4\\u13ea\": 14533,\n    \"\\u13a4\\u13b8\\u13af\": 14534,\n    \"\\u13d3\\u13ac\\u13c5\\u13c1\\u13b5\": 14535,\n    \"\\u2581\\u13a9\\u13b3\\u13cb\": 14536,\n    \"\\u13d3\\u13e2\\u13cd\\u13db\": 14537,\n    \"ee\": 14538,\n    \"\\u2581\\u13da\\u13d3\\u13a5\": 14539,\n    \"\\u2581\\u13e9\\u13a6\\u13d8\\u13c3\\u13b8\\u13a9\": 14540,\n    \"\\u13eb\\u13cd\\u13d4\\u13c1\\u13b2\": 14541,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13db\\u13db\\u13b2\\u13cd\\u13a8\": 14542,\n    \"\\u2581\\u13eb\\u13a3\\u13a9\": 14543,\n    \"\\u2581\\u13a8\\u13e5\\u13d0\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\\u13af\": 14544,\n    \"\\u13ac\\u13f2\": 14545,\n    \"\\u13c2\\u13c2\\u13f4\\u13af\": 14546,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\": 14547,\n    \"\\u2581\\u13f1\\u13c2\\u13e8\\u13ea\\u13ce\\u13b4\": 14548,\n    \"\\u13c5\\u13b0\\u13c1\": 14549,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13e3\\u13db\": 14550,\n    \"\\u13e9\\u13d7\\u13d2\\u13c2\": 14551,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13f1\\u13db\": 14552,\n    \"\\u2581\\u13da\\u13d3\\u13df\\u13f4\\u13ae\": 14553,\n    \"\\u13e5\\u13c2\\u13d5\\u13af\": 14554,\n    \"\\u2581\\u13f1\\u13e5\\u13f0\\u13b8\\u13cd\\u13a8\\u13cd\\u13d7\": 14555,\n    \"\\u13d3\\u13e6\\u13b3\\u13c2\\u13d2\": 14556,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13db\\u13c1\\u13ae\\u13cd\\u13d7\": 14557,\n    \"\\u2581\\u13eb\\u13d7\\u13a6\\u13a6\\u13c2\": 14558,\n    \"\\u2581\\u13c1\\u13ad\\u13d7\": 14559,\n    \"\\u2581\\u13e3\\u13d3\\u13ea\\u13b5\\u13a9\\u13cd\": 14560,\n    \"\\u2581\\u13a4\\u13db\\u13d5\\u13cd\\u13d7\": 14561,\n    \"\\u2581\\u13a4\\u13ec\\u13df\": 14562,\n    \"\\u2581\\u13d7\\u13a9\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 14563,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b4\": 14564,\n    \"\\u13c4\\u13ea\\u13cd\\u13d7\\u13f1\": 14565,\n    \"\\u2581\\u13a2\\u13e3\\u13d5\\u13d8\\u13f4\\u13db\": 14566,\n    \"\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 14567,\n    \"\\u13b3\\u13f2\\u13cd\\u13a8\": 14568,\n    \"\\u2581\\u13a2\\u13a9\\u13c1\\u13e4\\u13b8\": 14569,\n    \"\\u2581\\u13ed\\u13e9\\u13c2\\u13a6\\u13b8\": 14570,\n    \"\\u13b5\\u13c1\\u13cc\\u13b8\": 14571,\n    \"\\u2581\\u13a0\\u13b5\\u13c3\\u13af\\u13ef\": 14572,\n    \"\\u2581\\u13a2\\u13e7\\u13c5\\u13c1\\u13b8\\u13af\": 14573,\n    \"\\u2581\\u13eb\\u13c2\\u13e3\": 14574,\n    \"\\u2581\\u13a0\\u13d9\\u13d1\\u13b4\\u13d7\\u13f1\": 14575,\n    \"\\u2581\\u13a0\\u13df\\u13c5\\u13e8\": 14576,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c3\\u13ae\\u13b5\\u13d9\\u13af\": 14577,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d5\\u13b8\\u13db\": 14578,\n    \"\\u2581\\u13a4\\u13d4\\u13f2\\u13ce\\u13b8\": 14579,\n    \"\\u2581\\u13d7\\u13d1\\u13f4\\u13c5\": 14580,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 14581,\n    \"\\u13be\\u13c1\\u13cd\\u13ac\": 14582,\n    \"\\u2581\\u13a4\\u13be\\u13e8\\u13c9\": 14583,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13c6\\u13b8\\u13a1\": 14584,\n    \"\\u2581\\u13e7\\u13b4\\u13d9\\u13d7\\u13f1\": 14585,\n    \"\\u2581\\u13a0\\u13db\\u13f2\\u13b1\\u13cf\": 14586,\n    \"\\u2581\\u13a0\\u13d6\\u13b8\\u13c5\\u13af\": 14587,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13eb\\u13ce\": 14588,\n    \"\\u13c4\\u13c2\\u13ea\\u13d2\\u13a9\": 14589,\n    \"\\u2581\\u13a0\\u13aa\\u13ce\\u13b2\\u13a9\": 14590,\n    \"\\u2581\\u13a0\\u13c6\\u13ab\\u13f4\\u13a1\\u13b2\\u13a2\": 14591,\n    \"\\u2581\\u13a0\\u13d3\\u13db\\u13cd\\u13aa\\u13a2\": 14592,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13d9\\u13cd\\u13d9\\u13d7\": 14593,\n    \"\\u13d3\\u13ec\\u13d4\\u13c2\": 14594,\n    \"\\u2581\\u13f1\\u13d9\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 14595,\n    \"\\u2581\\u13da\\u13c2\\u13b3\\u13eb\\u13e4\": 14596,\n    \"\\u2581\\u13a0\\u13c2\\u13f4\\u13af\\u13ad\": 14597,\n    \"\\u2581\\u13a0\\u13db\\u13b5\\u13cd\\u13ac\": 14598,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d9\\u13b8\": 14599,\n    \"\\u2581\\u13e7\\u13ed\\u13aa\\u13d3\\u13c1\\u13d7\": 14600,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13e4\\u13b0\\u13a2\": 14601,\n    \"\\u2581\\u13f1\\u13ed\\u13b7\\u13e8\": 14602,\n    \"\\u2581\\u13eb\\u13e5\\u13e9\\u13db\": 14603,\n    \"\\u2581\\u13a4\\u13ef\\u13cd\\u13a6\": 14604,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13a6\\u13b8\\u13d7\": 14605,\n    \"\\u2581\\u13d8\\u13c2\\u13f4\": 14606,\n    \"\\u2581\\u13c2\\u13da\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\": 14607,\n    \"\\u2581\\u13f3\\u13f0\\u13e8\": 14608,\n    \"\\u2581\\u13a0\\u13c9\\u13da\\u13af\": 14609,\n    \"\\u2581\\u13a0\\u13be\\u13e6\\u13a5\": 14610,\n    \"\\u2581\\u13af\\u13cd\\u13c6\\u13b5\": 14611,\n    \"\\u2581\\u13a0\\u13cd\\u13aa\\u13a9\\u13cd\\u13ac\": 14612,\n    \"\\u2581\\u13a0\\u13c2\\u13dd\\u13b2\\u13cd\\u13aa\": 14613,\n    \"\\u13a7\\u13af\\u13f4\\u13cd\\u13d7\": 14614,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13cd\\u13ac\": 14615,\n    \"\\u2581\\u13f1\\u13c2\\u13e8\\u13a6\": 14616,\n    \"\\u13d3\\u13c1\\u13b3\\u13c1\\u13b8\\u13af\": 14617,\n    \"\\u2581\\u13a4\\u13c1\\u13cd\\u13a8\\u13b2\\u13af\": 14618,\n    \"\\u2581\\u13a1\\u13a9\\u13c1\\u13d7\\u13f1\": 14619,\n    \"\\u2581\\u13e5\\u13c1\\u13a2\\u13cd\\u13d3\": 14620,\n    \"\\u2581\\u13a4\\u13ce\\u13a6\\u13b3\\u13af\": 14621,\n    \"\\u2581\\u13a3\\u13a9\\u13b6\\u13d0\\u13c5\": 14622,\n    \"\\u2581\\u13a0\\u13d4\\u13b8\\u13a9\\u13d3\": 14623,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d4\\u13c1\\u13b4\": 14624,\n    \"\\u2581\\u13e5\\u13cd\\u13d3\\u13e9\\u13d5\\u13a6\": 14625,\n    \"\\u2581\\u13da\\u13a9\\u13b8\\u13d4\\u13c1\": 14626,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13c3\\u13ae\\u13d4\\u13c1\": 14627,\n    \"\\u2581\\u13a4\\u13a6\\u13f4\\u13b3\\u13e5\\u13b6\\u13db\": 14628,\n    \"\\u2581\\u13a4\\u13be\\u13b4\\u13f2\\u13a5\": 14629,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13aa\\u13f4\\u13d3\": 14630,\n    \"\\u2581\\u13e7\\u13b4\\u13c1\\u13a2\": 14631,\n    \"\\u2581\\u13a6\\u13b5\\u13a5\\u13c2\\u13ae\": 14632,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13c1\\u13a2\": 14633,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13b1\\u13af\\u13ce\\u13b8\\u13af\": 14634,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13a6\\u13b8\\u13d7\": 14635,\n    \"\\u2581\\u13e3\\u13a6\\u13a8\\u13c5\": 14636,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13af\": 14637,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 14638,\n    \"\\u2581\\u13a8\\u13b5\\u13d2\\u13ad\": 14639,\n    \"\\u13e3\\u13e2\\u13c6\": 14640,\n    \"\\u2581\\u13ac\\u13e9\\u13c1\\u13c4\\u13b3\\u13cd\\u13d7\\u13cd\\u13a8\": 14641,\n    \"\\u2581\\u13a2\\u13ef\\u13ef\\u13d6\\u13c5\": 14642,\n    \"\\u13e5\\u13c4\\u13aa\\u13e8\": 14643,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13ea\\u13a8\": 14644,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13b5\\u13cd\\u13d4\\u13c5\\u13af\": 14645,\n    \"\\u2581\\u13eb\\u13ab\\u13d3\\u13b8\": 14646,\n    \"\\u2581\\u13e7\\u13c2\\u13c5\\u13ec\\u13d7\\u13f1\": 14647,\n    \"\\u2581\\u13c4\\u13ec\\u13da\": 14648,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13b5\\u13f4\": 14649,\n    \"\\u2581\\u13e3\\u13d7\\u13e5\": 14650,\n    \"\\u2581\\u13a0\\u13c6\\u13ce\\u13ae\\u13b2\": 14651,\n    \"\\u2581\\u13a4\\u13a9\\u13cd\\u13d9\\u13a1\": 14652,\n    \"\\u13cd\\u13d5\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 14653,\n    \"\\u13da\\u13b3\\u13d5\": 14654,\n    \"\\u2581\\u13af\\u13aa\\u13a2\\u13a6\": 14655,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13d5\\u13a8\": 14656,\n    \"\\u2581\\u13a8\\u13a6\\u13e0\\u13ef\\u13cd\": 14657,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13d3\\u13e5\\u13db\": 14658,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d4\\u13e9\\u13d5\\u13a6\": 14659,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d3\\u13e9\\u13db\\u13db\": 14660,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13d4\\u13c5\": 14661,\n    \"\\u2581\\u13f4\\u13a6\\u13f0\\u13b3\": 14662,\n    \"\\u13aa\\u13d4\\u13c2\": 14663,\n    \"\\u2581\\u13a2\\u13d7\\u13be\\u13cc\": 14664,\n    \"\\u13cd\\u13d9\\u13f4\\u13d7\": 14665,\n    \"\\u2581\\u13a2\\u13e5\\u13c2\\u13c6\\u13d8\\u13ae\\u13cd\\u13d7\": 14666,\n    \"\\u2581\\u13da\\u13d3\\u13ec\\u13a5\": 14667,\n    \"\\u2581\\u13a4\\u13e9\\u13c5\\u13e4\": 14668,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13c2\\u13a9\\u13db\": 14669,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13d4\\u13e9\\u13d7\\u13d2\": 14670,\n    \"\\u13c3\\u13cd\\u13a9\\u13d2\\u13a9\": 14671,\n    \"\\u2581\\u13ef\\u13c6\\u13db\\u13be\": 14672,\n    \"\\u2581\\u13a6\\u13be\\u13cc\\u13a2\": 14673,\n    \"\\u2581\\u13ac\\u13e9\\u13d4\\u13f2\\u13ce\\u13af\": 14674,\n    \"\\u2581\\u13ed\\u13b4\\u13c5\\u13ae\": 14675,\n    \"\\u2581\\u13a0\\u13f2\\u13b1\\u13cd\\u13a8\\u13a2\": 14676,\n    \"\\u2581\\u13d7\\u13c9\\u13ea\\u13b3\\u13c5\": 14677,\n    \"\\u13e4\\u13b8\\u13cd\\u13a6\": 14678,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13c5\\u13ec\\u13d7\": 14679,\n    \"\\u2581\\u13da\\u13be\\u13b5\\u13e5\": 14680,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f4\\u13af\": 14681,\n    \"\\u2581\\u13be\\u13a6\\u13db\\u13c1\\u13b8\": 14682,\n    \"\\u2581\\u13d3\\u13e4\\u13b4\\u13cd\\u13d7\": 14683,\n    \"\\u13c1\\u13c4\\u13b3\\u13cd\\u13d7\\u13cd\": 14684,\n    \"\\u2581\\u13e5\\u13da\\u13b3\\u13cd\": 14685,\n    \"\\u2581\\u13a0\\u13ca\\u13d3\\u13b4\": 14686,\n    \"\\u2581\\u13af\\u13aa\\u13a5\\u13af\": 14687,\n    \"\\u2581\\u13a0\\u13a6\\u13d3\\u13a2\\u13c5\": 14688,\n    \"\\u13c2\\u13a9\\u13cd\\u13d9\\u13d7\\u13f1\": 14689,\n    \"\\u2581\\u13a4\\u13be\\u13e0\\u13be\\u13cd\": 14690,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13bf\\u13a5\": 14691,\n    \"\\u2581\\u13a2\\u13a9\\u13ef\\u13a5\\u13a2\": 14692,\n    \"\\u13cd\\u13a9\\u13a8\\u13f3\": 14693,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13f0\\u13b8\": 14694,\n    \"\\u2581\\u13f1\\u13e6\\u13af\\u13f3\\u13b2\\u13cd\\u13a6\": 14695,\n    \"\\u2581\\u13da\\u13c2\\u13ea\\u13ce\\u13b8\\u13a9\": 14696,\n    \"\\u2581\\u13a4\\u13c5\\u13be\\u13cf\": 14697,\n    \"\\u2581\\u13c2\\u13a6\\u13cd\\u13db\": 14698,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d3\\u13e9\\u13d5\\u13c5\": 14699,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\\u13b5\\u13cd\\u13d3\\u13f4\\u13d4\\u13c5\\u13a9\": 14700,\n    \"\\u13d7\\u13cd\\u13d3\\u13da\\u13d3\": 14701,\n    \"\\u2581\\u13a2\\u13a9\\u13a9\\u13b5\\u13f2\\u13e4\": 14702,\n    \"\\u2581\\u13a8\\u13d9\\u13af\\u13c9\": 14703,\n    \"\\u2581\\u13a0\\u13d3\\u13db\\u13c2\\u13d7\\u13cd\\u13a9\": 14704,\n    \"\\u2581\\u13a4\\u13c4\\u13d6\\u13d2\\u13a9\": 14705,\n    \"\\u2581\\u13c3\\u13a9\\u13c5\\u13c1\\u13b8\\u13a9\": 14706,\n    \"\\u2581\\u13eb\\u13e5\\u13aa\\u13a5\\u13a9\": 14707,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13d7\\u13cd\\u13ac\": 14708,\n    \"\\u2581\\u13da\\u13c2\\u13a6\\u13b5\\u13d2\\u13a9\": 14709,\n    \"\\u13ec\\u13d7\\u13ad\": 14710,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13c9\\u13d3\": 14711,\n    \"\\u2581\\u13e7\\u13b7\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 14712,\n    \"\\u2581\\u13ed\\u13d8\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 14713,\n    \"\\u2581\\u13d7\\u13df\\u13c3\\u13ae\\u13d9\\u13d7\": 14714,\n    \"\\u2581\\u13e7\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c1\": 14715,\n    \"\\u2581\\u13d7\\u13e3\\u13a7\\u13c3\\u13d7\\u13f1\": 14716,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13d9\\u13cd\\u13a8\\u13cd\\u13d7\": 14717,\n    \"\\u13b5\\u13d7\\u13cd\\u13a9\\u13cd\\u13ac\": 14718,\n    \"\\u13c4\\u13aa\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 14719,\n    \"\\u2581\\u13eb\\u13da\\u13d3\\u13f4\\u13b3\\u13db\": 14720,\n    \"\\u13cf\\u13db\\u13c2\\u13b8\\u13a9\": 14721,\n    \"\\u2581\\u13a6\\u13be\\u13aa\\u13a2\": 14722,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13e3\": 14723,\n    \"\\u13af\\u13ef\\u13cd\\u13a8\\u13cd\\u13d7\": 14724,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cd\\u13a8\\u13cd\\u13d7\": 14725,\n    \"\\u13d6\\u13b8\\u13b2\\u13cd\\u13a9\": 14726,\n    \"\\u13b4\\u13f2\\u13a1\\u13b8\": 14727,\n    \"\\u2581\\u13a4\\u13b8\\u13b2\\u13a9\": 14728,\n    \"\\u2581\\u13a4\\u13da\\u13a2\\u13cd\\u13d4\\u13c1\": 14729,\n    \"\\u2581\\u13a0\\u13d9\\u13a9\\u13ef\": 14730,\n    \"\\u2581\\u13d3\\u13cf\\u13b3\\u13db\\u13a5\\u13cd\\u13ac\": 14731,\n    \"\\u13a9\\u13b7\\u13e4\\u13ad\": 14732,\n    \"\\u2581\\u13c2\\u13a6\\u13db\\u13c1\\u13b0\": 14733,\n    \"\\u13dd\\u13d7\\u13cd\\u13d4\\u13c2\\u13d9\": 14734,\n    \"\\u2581\\u13a0\\u13e5\\u13b6\\u13db\": 14735,\n    \"\\u2581\\u13a0\\u13ef\\u13d9\\u13b5\\u13f3\": 14736,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13d7\\u13f1\": 14737,\n    \"\\u2581\\u13da\\u13e9\\u13d0\": 14738,\n    \"\\u2581\\u13a0\\u13cd\\u13db\\u13aa\\u13d2\": 14739,\n    \"\\u2581\\u13d8\\u13b4\\u13c2\": 14740,\n    \"\\u2581\\u13d7\\u13b5\\u13f0\\u13a2\\u13b8\\u13cd\\u13d7\\u13cd\": 14741,\n    \"\\u2581\\u13e5\\u13cd\\u13c6\\u13d9\\u13be\": 14742,\n    \"\\u13b5\\u13c6\\u13d7\": 14743,\n    \"\\u2581\\u13ac\\u13e9\\u13dc\\u13eb\\u13cd\\u13d7\": 14744,\n    \"\\u2581\\u13d5\\u13a6\\u13da\\u13d3\\u13d5\\u13eb\\u13d2\\u13f0\\u13c3\": 14745,\n    \"\\u2581\\u13d3\\u13be\\u13aa\\u13b2\\u13cd\\u13d7\\u13cd\\u13a8\": 14746,\n    \"\\u2581\\u13e5\\u13a8\\u13d4\": 14747,\n    \"\\u2581\\u13a6\\u13b5\\u13c9\\u13a9\\u13e6\\u13c1\": 14748,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13a9\": 14749,\n    \"\\u13d0\\u13e2\\u13d7\\u13cd\\u13a9\": 14750,\n    \"\\u2581\\u13a0\\u13b4\\u13eb\\u13cd\\u13d9\\u13d7\": 14751,\n    \"\\u13ab\\u13ab\": 14752,\n    \"\\u2581\\u13f1\\u13e3\\u13c5\\u13d4\": 14753,\n    \"\\u13a6\\u13c5\\u13a6\\u13b8\\u13af\": 14754,\n    \"\\u2581\\u13d7\\u13df\\u13f0\\u13b5\\u13d3\\u13cd\\u13d7\": 14755,\n    \"\\u2581\\u13ac\\u13e9\\u13f3\\u13e4\": 14756,\n    \"\\u2581\\u13a3\\u13a8\\u13c5\": 14757,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13a6\\u13e8\\u13af\": 14758,\n    \"\\u13a6\\u13a8\\u13a0\\u13d7\\u13d4\\u13cd\\u13d7\": 14759,\n    \"\\u2581\\u13e5\\u13a7\\u13c1\\u13a6\": 14760,\n    \"ce\": 14761,\n    \"\\u2581\\u13d7\\u13be\\u13a2\\u13ce\": 14762,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13db\\u13a6\": 14763,\n    \"\\u2581\\u13d5\\u13ac\\u13c2\\u13a6\": 14764,\n    \"\\u13a4\\u13be\\u13da\\u13d3\\u13d6\\u13cd\\u13d7\": 14765,\n    \"\\u13be\\u13d9\\u13e2\": 14766,\n    \"\\u2581\\u13af\\u13c3\\u13ae\\u13cd\\u13a8\\u13cd\\u13d7\": 14767,\n    \"\\u2581\\u13a1\\u13df\\u13ef\": 14768,\n    \"\\u2581\\u13a4\\u13e5\\u13cd\\u13d4\\u13c1\": 14769,\n    \"\\u13dd\\u13b2\\u13a6\": 14770,\n    \"\\u2581\\u13cd\\u13a9\\u13a8\\u13f3\\u13ae\\u13cd\\u13d7\": 14771,\n    \"\\u2581\\u13ac\\u13ec\\u13af\\u13f3\\u13d7\": 14772,\n    \"\\u2581\\u13a1\\u13af\\u13c4\\u13aa\\u13a2\": 14773,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13ec\\u13a5\": 14774,\n    \"\\u13d3\\u13d3\\u13df\\u13cc\\u13c1\": 14775,\n    \"\\u13e9\\u13db\\u13a1\\u13af\": 14776,\n    \"\\u2581\\u13a4\\u13be\\u13a7\\u13d9\\u13cd\\u13d5\": 14777,\n    \"\\u13d0\\u13c8\": 14778,\n    \"\\u2581\\u13a0\\u13cd\\u13d5\\u13f4\": 14779,\n    \"\\u2581\\u13d7\\u13c2\\u13d9\\u13a9\": 14780,\n    \"\\u2581\\u13ac\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\": 14781,\n    \"\\u13ad\\u13e6\\u13a3\": 14782,\n    \"\\u2581\\u13d3\\u13ce\\u13af\": 14783,\n    \"\\u2581\\u13a4\\u13b5\\u13c7\\u13c5\": 14784,\n    \"\\u2581\\u13a3\\u13e4\\u13aa\": 14785,\n    \"\\u13d3\\u13db\\u13c2\\u13af\": 14786,\n    \"\\u2581\\u13a2\\u13e4\\u13ef\\u13d9\\u13e4\\u13ae\\u13cd\\u13d7\": 14787,\n    \"\\u2581\\u13a0\\u13ef\\u13c2\\u13ad\": 14788,\n    \"\\u2581\\u13ef\\u13e5\\u13b8\": 14789,\n    \"\\u2581\\u13e7\\u13b7\\u13b8\\u13d7\\u13f1\": 14790,\n    \"\\u2581\\u13e5\\u13be\\u13ac\\u13c1\\u13b4\": 14791,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d3\\u13c1\\u13ae\": 14792,\n    \"\\u2581\\u13d7\\u13a6\\u13ef\\u13a9\\u13cd\\u13d7\": 14793,\n    \"\\u13a9\\u13be\\u13b5\\u13cd\\u13a9\\u13d2\": 14794,\n    \"\\u2581\\u13da\\u13ef\\u13ea\\u13e8\": 14795,\n    \"\\u13a9\\u13ea\\u13a1\\u13b8\\u13a9\": 14796,\n    \"\\u13d7\\u13a9\\u13ef\\u13cd\\u13d7\\u13f1\": 14797,\n    \"\\u13e9\\u13d3\\u13df\\u13cc\": 14798,\n    \"\\u2581\\u13af\\u13c1\\u13e5\\u13f1\": 14799,\n    \"\\u2581\\u13c2\\u13d9\\u13b2\\u13c1\": 14800,\n    \"\\u2581\\u13a4\\u13f2\\u13cf\\u13cd\\u13a9\": 14801,\n    \"\\u2581\\u13a2\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13f1\": 14802,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b2\": 14803,\n    \"\\u13e5\\u13e9\\u13db\\u13b2\\u13d2\\u13a9\": 14804,\n    \"\\u2581\\u13e3\\u13db\\u13a6\\u13c5\\u13a2\": 14805,\n    \"\\u2581\\u13f1\\u13da\\u13c3\\u13d5\": 14806,\n    \"\\u2581\\u13a0\\u13aa\\u13b2\\u13cd\\u13d9\\u13d7\\u13f1\": 14807,\n    \"\\u2581\\u13a4\\u13df\\u13c3\\u13ae\\u13d4\\u13c5\": 14808,\n    \"\\u13c7\\u13c4\\u13a9\": 14809,\n    \"\\u13e6\\u13ea\\u13b3\\u13c1\\u13b8\": 14810,\n    \"\\u2581\\u13e5\\u13da\\u13a2\\u13cd\\u13d7\": 14811,\n    \"\\u2581\\u13d3\\u13e5\\u13d0\\u13c5\\u13c5\": 14812,\n    \"\\u2581\\u13e3\\u13b4\\u13c2\\u13d3\\u13cd\\u13d7\\u13f1\": 14813,\n    \"\\u13dd\\u13c1\\u13b4\\u13a2\": 14814,\n    \"\\u2581\\u13ed\\u13e9\\u13c1\": 14815,\n    \"\\u2581\\u13a2\\u13af\\u13f4\\u13c1\\u13d7\\u13f1\": 14816,\n    \"\\u2581\\u13ef\\u13c6\\u13d3\\u13c5\\u13d6\": 14817,\n    \"\\u13db\\u13d4\\u13c3\\u13c5\": 14818,\n    \"\\u13d3\\u13a6\\u13e5\\u13f4\\u13c1\\u13b5\": 14819,\n    \"\\u2581\\u13da\\u13ee\\u13d5\": 14820,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c9\\u13b5\\u13f1\": 14821,\n    \"\\u2581\\u13ed\\u13d7\\u13c5\\u13d2\\u13a9\": 14822,\n    \"\\u13a6\\u13d0\\u13a0\\u13d2\\u13a9\": 14823,\n    \"\\u2581\\u13af\\u13f2\\u13cd\\u13d3\": 14824,\n    \"\\u13e0\\u13b2\": 14825,\n    \"\\u2581\\u13db\\u13c2\\u13cd\\u13d3\\u13e9\\u13d5\\u13cf\": 14826,\n    \"\\u2581\\u13d7\\u13e5\\u13c5\\u13cd\\u13d3\\u13d5\\u13b8\\u13a9\": 14827,\n    \"\\u2581\\u13af\\u13ec\\u13c1\\u13d4\\u13c5\": 14828,\n    \"\\u2581\\u13a0\\u13c1\\u13b5\\u13cd\\u13a9\": 14829,\n    \"\\u13ec\\u13a5\\u13ce\": 14830,\n    \"\\u13c2\\u13f4\\u13d7\\u13af\": 14831,\n    \"\\u13b8\\u13a3\\u13a2\": 14832,\n    \"\\u2581\\u13a0\\u13e5\\u13f2\\u13cd\\u13d7\": 14833,\n    \"\\u2581\\u13a4\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13be\": 14834,\n    \"\\u13be\\u13c1\\u13b3\\u13d3\": 14835,\n    \"\\u13c2\\u13ea\\u13cd\\u13a8\\u13a2\": 14836,\n    \"\\u2581\\u13f1\\u13a8\\u13e5\\u13aa\": 14837,\n    \"\\u2581\\u13c2\\u13e8\\u13c1\\u13ad\": 14838,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13ec\": 14839,\n    \"\\u2581\\u13f3\\u13a6\\u13d8\\u13d3\": 14840,\n    \"\\u2581\\u13d7\\u13e5\\u13aa\\u13a5\": 14841,\n    \"\\u2581\\u13a1\\u13e5\\u13d9\\u13b5\\u13cd\\u13d7\\u13f1\": 14842,\n    \"\\u2581\\u13e6\\u13cf\\u13c6\": 14843,\n    \"\\u2581\\u13e9\\u13a6\\u13d6\\u13a2\": 14844,\n    \"\\u2581\\u13ac\\u13ef\\u13b5\\u13c3\\u13ae\\u13d9\\u13d7\\u13f1\": 14845,\n    \"\\u13b1\\u13c3\\u13f4\": 14846,\n    \"\\u2581\\u13e5\\u13d7\\u13a6\\u13d4\\u13ad\": 14847,\n    \"\\u2581\\u13f1\\u13d7\\u13ac\\u13a9\": 14848,\n    \"\\u2581\\u13a0\\u13d3\\u13b6\\u13c4\\u13ae\\u13cd\\u13a9\": 14849,\n    \"\\u2581\\u13af\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13cd\\u13d7\": 14850,\n    \"\\u2581\\u13a4\\u13be\\u13cc\\u13a5\": 14851,\n    \"\\u13c5\\u13db\\u13a2\": 14852,\n    \"\\u2581\\u13c2\\u13a6\\u13a8\\u13d2\": 14853,\n    \"\\u2581\\u13ef\\u13e5\\u13c3\\u13cd\\u13a9\": 14854,\n    \"\\u2581\\u13e7\\u13c2\\u13aa\\u13b5\\u13f0\\u13d7\": 14855,\n    \"\\u13e4\\u13ea\\u13b8\": 14856,\n    \"\\u2581\\u13c6\\u13cf\\u13d7\\u13f1\": 14857,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13e4\\u13b8\\u13a9\": 14858,\n    \"\\u2581\\u13da\\u13d3\\u13c5\\u13a1\\u13b8\\u13a9\": 14859,\n    \"\\u13be\\u13d3\\u13e1\\u13e9\\u13d7\\u13d2\\u13a2\": 14860,\n    \"\\u2581\\u13e3\\u13a9\\u13f0\\u13b8\\u13ad\": 14861,\n    \"\\u13dd\\u13c5\\u13a9\": 14862,\n    \"\\u2581\\u13a4\\u13df\\u13c2\\u13ac\\u13c1\\u13b4\": 14863,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13e6\": 14864,\n    \"\\u2581\\u13a3\\u13a9\\u13f2\\u13cd\\u13d9\": 14865,\n    \"\\u2581\\u13a0\\u13c2\\u13f2\\u13cd\\u13d7\\u13cd\\u13a9\": 14866,\n    \"\\u13a8\\u13b2\\u13af\": 14867,\n    \"\\u2581\\u13da\\u13c4\\u13d3\": 14868,\n    \"\\u2581\\u13d9\\u13a9\\u13b2\\u13a2\": 14869,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d3\\u13cd\\u13a9\\u13cc\\u13c1\": 14870,\n    \"\\u13a9\\u13b8\\u13d7\\u13cd\\u13ac\": 14871,\n    \"\\u13c1\\u13a5\\u13cf\": 14872,\n    \"\\u2581\\u13da\\u13c3\\u13ae\\u13ae\\u13b4\": 14873,\n    \"\\u13be\\u13b5\\u13cd\\u13d3\": 14874,\n    \"\\u13cd\\u13c6\\u13db\\u13a6\\u13cd\\u13d3\": 14875,\n    \"\\u2581\\u13d5\\u13aa\\u13a9\\u13c2\": 14876,\n    \"\\u2581\\u13a4\\u13da\\u13d3\\u13d5\\u13eb\\u13d2\": 14877,\n    \"\\u2581\\u13af\\u13a7\\u13d4\\u13ad\": 14878,\n    \"\\u2581\\u13a5\\u13c6\\u13ab\\u13f4\\u13a1\": 14879,\n    \"\\u2581\\u13e3\\u13c5\\u13c5\\u13a2\": 14880,\n    \"\\u2581\\u13a2\\u13a4\\u13c1\\u13e8\": 14881,\n    \"\\u2581\\u13d8\\u13cd\\u13c6\": 14882,\n    \"\\u13cd\\u13d7\\u13b7\\u13a9\": 14883,\n    \"\\u2581\\u13ed\\u13c3\\u13af\\u13ce\\u13b4\": 14884,\n    \"\\u2581\\u13ba\\u13cc\": 14885,\n    \"\\u2581\\u13af\\u13ef\\u13e0\\u13ef\\u13cd\\u13d4\\u13c5\": 14886,\n    \"\\u13b0\\u13bb\": 14887,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13d8\\u13ef\": 14888,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13c5\\u13a9\": 14889,\n    \"\\u2581\\u13d3\\u13b9\\u13c2\": 14890,\n    \"\\u2581\\u13f3\\u13ea\\u13c5\": 14891,\n    \"\\u2581\\u13a4\\u13c4\\u13ee\\u13a2\": 14892,\n    \"\\u2581\\u13be\\u13a9\\u13f2\": 14893,\n    \"\\u2581\\u13a0\\u13e9\\u13db\\u13d9\\u13d7\": 14894,\n    \"\\u2581\\u13a4\\u13ef\\u13e4\\u13a2\": 14895,\n    \"\\u13aa\\u13b3\\u13d7\\u13f4\\u13d7\\u13f1\": 14896,\n    \"\\u2581\\u13d5\\u13e5\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\\u13a2\": 14897,\n    \"\\u2581\\u13a4\\u13d8\\u13cd\\u13db\\u13a2\": 14898,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13d9\\u13af\\u13b2\\u13a2\": 14899,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c1\\u13df\\u13f4\\u13ce\\u13ac\\u13a2\": 14900,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13e4\\u13a2\": 14901,\n    \"\\u2581\\u13a4\\u13c2\\u13d0\\u13c5\\u13e4\\u13b4\\u13a2\": 14902,\n    \"\\u13d3\\u13c2\\u13d9\\u13b5\\u13ac\": 14903,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13ce\\u13ac\\u13a2\": 14904,\n    \"\\u2581\\u13a5\\u13c6\\u13b8\\u13a5\\u13a2\": 14905,\n    \"\\u2581\\u13a4\\u13b5\\u13ef\\u13cd\\u13da\\u13c1\\u13a2\": 14906,\n    \"\\u2581\\u13d5\\u13e3\\u13c1\\u13b6\\u13db\\u13a2\": 14907,\n    \"\\u2581\\u13da\\u13ea\\u13b3\\u13cd\\u13d4\\u13c1\\u13a2\": 14908,\n    \"\\u2581\\u13d9\\u13d7\\u13a7\\u13c5\\u13a2\": 14909,\n    \"\\u2581\\u13e7\\u13ec\\u13af\\u13f3\\u13c1\\u13a2\": 14910,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13d2\\u13a2\": 14911,\n    \"\\u2581\\u13a8\\u13e5\\u13db\\u13d4\\u13c1\\u13a2\": 14912,\n    \"\\u2581\\u13cd\\u13a9\\u13b7\\u13e4\\u13d7\\u13f1\": 14913,\n    \"\\u2581\\u13a1\\u13e6\\u13ce\\u13b2\\u13a2\": 14914,\n    \"\\u2581\\u13da\\u13ec\\u13c1\\u13d4\\u13c5\\u13a2\": 14915,\n    \"\\u2581\\u13a8\\u13e5\\u13a8\\u13f3\\u13a2\": 14916,\n    \"\\u13c2\\u13da\\u13d1\\u13f0\\u13d0\": 14917,\n    \"\\u2581\\u13cd\\u13a9\\u13f0\\u13af\": 14918,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13be\\u13dd\\u13a5\\u13a2\": 14919,\n    \"\\u13c3\\u13b2\\u13b5\": 14920,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13f4\\u13db\": 14921,\n    \"\\u13d1\\u13b5\\u13ad\": 14922,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13aa\\u13a2\": 14923,\n    \"\\u2581\\u13eb\\u13f3\\u13b6\": 14924,\n    \"\\u2581\\u13a2\\u13e8\\u13a8\\u13f3\\u13d2\\u13a2\": 14925,\n    \"\\u2581\\u13a4\\u13b5\\u13b6\\u13b2\\u13cd\\u13a9\": 14926,\n    \"\\u13c2\\u13c1\\u13a2\\u13cd\\u13d7\": 14927,\n    \"\\u2581\\u13f4\\u13d3\\u13e5\": 14928,\n    \"\\u2581\\u13ac\\u13f4\\u13d7\\u13cd\\u13ac\\u13a2\": 14929,\n    \"\\u2581\\u13a2\\u13a9\\u13ec\\u13c2\\u13af\\u13cd\\u13d7\": 14930,\n    \"\\u2581\\u13ad\\u13a2\\u13d2\\u13a2\": 14931,\n    \"\\u2581\\u13a4\\u13b4\\u13f4\\u13ce\\u13a2\": 14932,\n    \"\\u2581\\u13da\\u13b5\\u13e6\\u13db\\u13a2\": 14933,\n    \"\\u2581\\u13a4\\u13a6\\u13d9\\u13cd\\u13db\": 14934,\n    \"\\u2581\\u13d9\\u13d3\\u13e6\": 14935,\n    \"\\u2581\\u13e7\\u13c5\\u13d5\": 14936,\n    \"\\u2581\\u13da\\u13e8\\u13cd\\u13db\": 14937,\n    \"\\u2581\\u13a0\\u13c2\\u13a7\\u13b2\\u13cd\": 14938,\n    \"\\u2581\\u13e5\\u13d4\\u13f2\\u13af\\u13b2\": 14939,\n    \"\\u2581\\u13e5\\u13e9\\u13f4\\u13af\": 14940,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\": 14941,\n    \"\\u2581\\u13db\\u13a6\\u13db\\u13a9\": 14942,\n    \"\\u2581\\u13d3\\u13c6\\u13d9\\u13cd\\u13db\": 14943,\n    \"\\u2581\\u13a2\\u13a6\\u13e4\\u13b5\\u13aa\\u13af\": 14944,\n    \"\\u13cd\\u13d5\\u13b2\": 14945,\n    \"\\u2581\\u13a4\\u13e9\\u13e9\\u13d9\\u13a3\": 14946,\n    \"\\u13d4\\u13d7\\u13cd\\u13ac\": 14947,\n    \"\\u13c2\\u13d4\\u13b3\\u13ec\\u13cd\\u13ac\": 14948,\n    \"\\u2581\\u13a4\\u13a8\\u13b2\\u13ce\": 14949,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13ef\\u13d3\\u13c2\\u13b8\\u13a9\": 14950,\n    \"\\u13d1\\u13b5\\u13cd\\u13ac\\u13a2\": 14951,\n    \"\\u2581\\u13c2\\u13aa\\u13a9\\u13ea\\u13ce\": 14952,\n    \"\\u2581\\u13d7\\u13cd\\u13d9\\u13cd\": 14953,\n    \"\\u2581\\u13a6\\u13b5\\u13d3\\u13cd\\u13d4\\u13c5\": 14954,\n    \"\\u2581\\u13a0\\u13ab\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 14955,\n    \"\\u2581\\u13da\\u13c3\\u13ae\": 14956,\n    \"\\u2581\\u13f3\\u13e9\\u13d4\\u13c5\": 14957,\n    \"\\u2581\\u13c2\\u13a8\\u13d0\": 14958,\n    \"\\u2581\\u13c5\\u13d3\\u13f2\": 14959,\n    \"\\u2581\\u13d7\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 14960,\n    \"\\u2581\\u13d5\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 14961,\n    \"\\u13b4\\u13f4\\u13cd\\u13d3\": 14962,\n    \"\\u2581\\u13a2\\u13e7\\u13c5\\u13c1\\u13d7\\u13f1\": 14963,\n    \"\\u2581\\u13ed\\u13d7\\u13e2\\u13cd\\u13d4\\u13c1\\u13a2\": 14964,\n    \"\\u13e7\\u13e1\\u13cd\": 14965,\n    \"\\u2581\\u13da\\u13be\\u13d7\\u13c5\\u13ce\": 14966,\n    \"\\u2581\\u13d6\\u13cf\": 14967,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13da\": 14968,\n    \"\\u13f0\\u13a5\": 14969,\n    \"\\u2581\\u13a6\\u13b4\\u13f4\": 14970,\n    \"\\u2581\\u13a5\\u13bf\": 14971,\n    \"\\u2581\\u13e7\\u13c2\\u13b6\\u13ce\\u13a2\": 14972,\n    \"\\u2581\\u13da\\u13be\\u13d0\\u13b8\": 14973,\n    \"\\u13cc\\u13d7\\u13a6\": 14974,\n    \"\\u2581\\u13a4\\u13c2\\u13bf\\u13b7\\u13d2\": 14975,\n    \"\\u2581\\u13a0\\u13c6\\u13b4\\u13c5\\u13b2\": 14976,\n    \"\\u2581\\u13d3\\u13be\\u13e3\": 14977,\n    \"\\u2581\\u13a5\\u13a9\\u13b1\\u13cd\\u13d5\\u13ce\\u13b8\": 14978,\n    \"\\u2581\\u13e7\\u13cd\\u13c6\\u13c3\\u13f4\\u13aa\": 14979,\n    \"\\u2581\\u13e5\\u13c4\\u13be\\u13b5\\u13cd\\u13d4\\u13c5\": 14980,\n    \"\\u2581\\u13e9\\u13c2\\u13b6\\u13af\": 14981,\n    \"\\u2581\\u13a0\\u13c6\\u13b4\\u13c2\\u13d3\\u13cd\\u13d7\\u13f1\": 14982,\n    \"\\u2581\\u13e3\\u13dd\\u13ae\": 14983,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 14984,\n    \"\\u2581\\u13a4\\u13c4\\u13e2\\u13d4\\u13c5\\u13a9\": 14985,\n    \"\\u13a6\\u13b5\\u13cd\\u13d7\\u13f0\\u13d3\\u13c1\\u13ad\": 14986,\n    \"\\u2581\\u13d3\\u13c1\\u13a8\": 14987,\n    \"\\u2581\\u13f3\\u13d7\\u13db\\u13ad\": 14988,\n    \"\\u13c2\\u13c9\\u13d8\": 14989,\n    \"\\u2581\\u13d5\\u13e5\\u13c1\\u13ae\\u13cd\\u13d7\": 14990,\n    \"\\u2581\\u13ef\\u13be\\u13cc\": 14991,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13ae\": 14992,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\\u13b5\\u13d9\": 14993,\n    \"\\u2581\\u13eb\\u13e8\\u13b7\\u13e4\\u13b8\": 14994,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13c1\\u13b8\\u13a9\": 14995,\n    \"\\u13e5\\u13ef\\u13b5\\u13d7\\u13a1\": 14996,\n    \"\\u13e5\\u13cc\\u13b3\\u13d3\\u13c5\\u13ad\": 14997,\n    \"\\u2581\\u13d7\\u13e8\\u13f3\\u13aa\\u13d3\\u13c1\\u13d7\": 14998,\n    \"\\u2581\\u13f1\\u13c3\\u13e3\\u13db\\u13c1\": 14999,\n    \"\\u2581\\u13a4\\u13db\\u13be\\u13d7\\u13a6\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 15000,\n    \"\\u2581\\u13d3\\u13e3\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b5\": 15001,\n    \"\\u13e5\\u13d9\\u13b5\\u13e8\\u13af\": 15002,\n    \"\\u13da\\u13aa\\u13d3\\u13c1\\u13b8\": 15003,\n    \"\\u13e5\\u13cd\\u13d3\": 15004,\n    \"\\u2581\\u13d7\\u13c2\\u13c1\\u13b3\": 15005,\n    \"\\u2581\\u13a4\\u13ea\\u13ef\\u13e2\\u13c1\": 15006,\n    \"\\u2581\\u13a0\\u13be\\u13d9\\u13b4\\u13b0\\u13cd\\u13d7\": 15007,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13cc\": 15008,\n    \"\\u2581\\u13f1\\u13c2\\u13e8\\u13c1\\u13b8\": 15009,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13cd\\u13a8\\u13a2\": 15010,\n    \"\\u2581\\u13da\\u13f2\\u13b5\\u13b4\": 15011,\n    \"\\u13b5\\u13a5\\u13c2\\u13cd\\u13d7\\u13f1\": 15012,\n    \"\\u2581\\u13a2\\u13e7\\u13e9\\u13c1\\u13b8\\u13af\": 15013,\n    \"\\u2581\\u13da\\u13ec\\u13d5\\u13af\\u13b0\\u13a2\": 15014,\n    \"\\u2581\\u13cd\\u13a9\\u13c2\\u13d9\\u13b5\\u13a9\": 15015,\n    \"\\u2581\\u13e7\\u13c2\\u13aa\\u13e9\\u13db\\u13d7\": 15016,\n    \"\\u13c5\\u13cf\\u13d9\": 15017,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13c6\\u13d8\\u13b4\\u13a2\": 15018,\n    \"\\u2581\\u13a2\\u13e4\\u13c5\\u13d2\\u13a9\": 15019,\n    \"\\u2581\\u13a0\\u13c2\\u13f0\\u13b5\\u13d2\": 15020,\n    \"\\u13b5\\u13f0\\u13a2\\u13b6\\u13a6\": 15021,\n    \"\\u2581\\u13a4\\u13e0\\u13ef\\u13cd\\u13d9\\u13d7\\u13f1\": 15022,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13ac\": 15023,\n    \"\\u2581\\u13d9\\u13d3\\u13e8\\u13f2\\u13cf\": 15024,\n    \"\\u2581\\u13da\\u13cd\\u13d4\\u13c5\\u13c5\": 15025,\n    \"\\u2581\\u13e3\\u13a2\\u13ce\\u13a2\": 15026,\n    \"\\u2581\\u13d9\\u13db\\u13c2\\u13b5\": 15027,\n    \"\\u2581\\u13a6\\u13be\\u13b1\\u13a9\\u13cd\\u13ac\": 15028,\n    \"\\u2581\\u13cd\\u13a9\\u13f2\\u13ae\\u13b8\\u13ad\": 15029,\n    \"\\u2581\\u13d7\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13cf\": 15030,\n    \"\\u2581\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13cf\": 15031,\n    \"\\u2581\\u13ad\\u13b4\\u13eb\\u13cd\\u13d3\": 15032,\n    \"\\u2581\\u13d9\\u13d3\\u13ac\\u13e9\\u13c2\\u13be\\u13e2\\u13c2\": 15033,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13db\\u13c2\\u13b4\\u13a2\": 15034,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13c5\\u13bf\\u13d5\\u13ac\": 15035,\n    \"\\u2581\\u13a4\\u13bf\\u13cd\\u13ac\\u13e4\": 15036,\n    \"\\u2581\\u13ad\\u13d3\\u13c4\\u13d6\\u13ef\": 15037,\n    \"\\u2581\\u13af\\u13c4\\u13f4\\u13d3\": 15038,\n    \"\\u2581\\u13be\\u13cb\\u13c1\\u13ad\": 15039,\n    \"\\u13d3\\u13c5\\u13a6\\u13b8\\u13be\": 15040,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13ac\\u13ac\": 15041,\n    \"\\u2581\\u13a4\\u13c4\\u13ec\\u13cd\\u13db\\u13a9\": 15042,\n    \"\\u2581\\u13ee\\u13d3\\u13e8\\u13b7\\u13e4\\u13b5\": 15043,\n    \"\\u2581\\u13e5\\u13ef\\u13ce\\u13b5\\u13d3\\u13c1\\u13b8\": 15044,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13a6\\u13c1\\u13b8\\u13af\": 15045,\n    \"\\u13c6\\u13ad\\u13bb\": 15046,\n    \"\\u2581\\u13d3\\u13a9\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\": 15047,\n    \"\\u2581\\u13e5\\u13a9\\u13b5\\u13f2\\u13a6\": 15048,\n    \"\\u2581\\u13a0\\u13c2\\u13e5\\u13b8\\u13cd\\u13a9\": 15049,\n    \"\\u13d1\\u13b4\\u13a5\\u13af\": 15050,\n    \"\\u13f4\\u13b2\\u13ad\": 15051,\n    \"\\u2581\\u13d3\\u13db\\u13a9\\u13ad\": 15052,\n    \"\\u2581\\u13e5\\u13c6\\u13b5\\u13cf\": 15053,\n    \"\\u2581\\u13eb\\u13c2\\u13a8\": 15054,\n    \"\\u2581\\u13e7\\u13ed\\u13aa\\u13d3\\u13c1\\u13d7\\u13f1\": 15055,\n    \"\\u2581\\u13a6\\u13c5\\u13c1\\u13ae\\u13cd\\u13d7\": 15056,\n    \"\\u2581\\u13f3\\u13d3\\u13b8\": 15057,\n    \"\\u2581\\u13a4\\u13d3\\u13f1\\u13b8\\u13a9\": 15058,\n    \"\\u2581\\u13a9\\u13ef\\u13d2\\u13a6\\u13b6\\u13d7\": 15059,\n    \"\\u2581\\u13a7\\u13c3\\u13a8\": 15060,\n    \"\\u2581\\u13e7\\u13c3\\u13ea\\u13b3\\u13c5\\u13af\": 15061,\n    \"\\u2581\\u13d3\\u13cd\\u13ab\\u13d3\\u13db\": 15062,\n    \"\\u2581\\u13ed\\u13a6\\u13d6\": 15063,\n    \"\\u13d3\\u13f2\\u13e4\\u13b3\\u13cd\\u13d4\\u13c2\": 15064,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\\u13a6\": 15065,\n    \"\\u2581\\u13a4\\u13a9\\u13b6\\u13eb\\u13ce\": 15066,\n    \"\\u2581\\u13a4\\u13e4\\u13b8\\u13b2\": 15067,\n    \"\\u2581\\u13f1\\u13ef\\u13a1\": 15068,\n    \"\\u2581\\u13d7\\u13ef\\u13e0\": 15069,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\\u13c1\\u13b8\": 15070,\n    \"\\u13af\\u13cc\\u13d4\\u13c1\\u13a2\": 15071,\n    \"\\u2581\\u13a4\\u13d3\\u13c2\\u13ef\\u13db\": 15072,\n    \"\\u2581\\u13d5\\u13a4\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 15073,\n    \"\\u2581\\u13d3\\u13d3\\u13be\\u13c4\\u13aa\\u13eb\": 15074,\n    \"\\u2581\\u13f1\\u13d9\\u13ac\\u13c2\": 15075,\n    \"\\u2581\\u13db\\u13c2\\u13cd\\u13d7\\u13cd\\u13a9\": 15076,\n    \"\\u2581\\u13e4\\u13c5\\u13d2\\u13a9\": 15077,\n    \"\\u2581\\u13c5\\u13c6\\u13d3\\u13b4\\u13c9\": 15078,\n    \"\\u2581\\u13da\\u13eb\\u13ce\\u13a2\": 15079,\n    \"\\u13c5\\u13e9\\u13c5\\u13af\": 15080,\n    \"\\u2581\\u13d7\\u13a8\\u13b6\": 15081,\n    \"\\u2581\\u13f3\\u13be\\u13da\\u13b5\\u13ad\": 15082,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c8\\u13ac\": 15083,\n    \"\\u2581\\u13c2\\u13ac\\u13c2\\u13cf\\u13ad\": 15084,\n    \"\\u2581\\u13e6\\u13b3\\u13bb\": 15085,\n    \"\\u2581\\u13da\\u13be\\u13c2\\u13cf\": 15086,\n    \"\\u13cf\\u13db\\u13d2\\u13be\": 15087,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 15088,\n    \"\\u2581\\u13d3\\u13a6\\u13b5\\u13ec\\u13e5\": 15089,\n    \"\\u2581\\u13a6\\u13dd\\u13d7\": 15090,\n    \"\\u13d7\\u13c1\\u13b8\\u13d9\\u13d7\": 15091,\n    \"\\u13b3\\u13eb\\u13ce\\u13b0\": 15092,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 15093,\n    \"\\u13c2\\u13d4\\u13f2\\u13ce\\u13d7\\u13f1\": 15094,\n    \"\\u2581\\u13a0\\u13ef\\u13e0\": 15095,\n    \"\\u2581\\u13a6\\u13be\\u13a1\": 15096,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13d3\\u13cd\\u13d4\\u13c5\": 15097,\n    \"\\u2581\\u13ac\\u13ec\\u13b5\\u13cd\\u13d7\": 15098,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\\u13af\": 15099,\n    \"\\u2581\\u13a0\\u13e5\\u13c3\\u13ae\\u13ad\": 15100,\n    \"\\u2581\\u13c7\\u13b5\\u13c2\": 15101,\n    \"\\u2581\\u13d7\\u13a9\\u13a1\\u13d7\\u13f1\": 15102,\n    \"\\u13e2\\u13c9\\u13d9\\u13d7\": 15103,\n    \"\\u2581\\u13b9\\u13d3\\u13c2\": 15104,\n    \"\\u2581\\u13a0\\u13c2\\u13d7\\u13e2\\u13c9\": 15105,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c5\\u13ce\\u13a2\": 15106,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13a6\\u13a9\": 15107,\n    \"\\u2581\\u13e7\\u13e6\\u13d7\": 15108,\n    \"\\u2581\\u13e7\\u13d3\\u13c2\\u13d0\\u13d7\\u13f1\": 15109,\n    \"\\u2581\\u13d7\\u13cd\\u13d9\\u13cd\\u13d7\": 15110,\n    \"\\u2581\\u13ad\\u13b9\": 15111,\n    \"\\u2581\\u13a6\\u13b7\\u13a8\": 15112,\n    \"\\u13cd\\u13d9\\u13cd\\u13a8\\u13cd\\u13d7\": 15113,\n    \"\\u2581\\u13cc\\u13b9\": 15114,\n    \"\\u13cd\\u13d3\\u13ca\": 15115,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13a6\\u13b8\": 15116,\n    \"\\u2581\\u13f3\\u13c2\\u13c3\\u13ae\\u13b4\": 15117,\n    \"\\u2581\\u13e5\\u13d5\\u13a6\\u13d8\": 15118,\n    \"\\u2581\\u13ac\\u13e9\\u13b7\\u13af\\u13cd\\u13d7\": 15119,\n    \"\\u2581\\u13e5\\u13eb\\u13d7\\u13a6\": 15120,\n    \"\\u2581\\u13e5\\u13eb\\u13cd\\u13aa\\u13a2\": 15121,\n    \"\\u2581\\u13a6\\u13e5\\u13a6\\u13d4\\u13ad\": 15122,\n    \"\\u13d7\\u13a6\\u13e3\\u13c3\\u13cd\": 15123,\n    \"\\u2581\\u13da\\u13ec\\u13ef\\u13c1\\u13ce\\u13a2\": 15124,\n    \"\\u13d1\\u13b4\\u13ad\": 15125,\n    \"\\u13c2\\u13d9\\u13ad\": 15126,\n    \"\\u2581\\u13d3\\u13c6\\u13e2\": 15127,\n    \"\\u2581\\u13a6\\u13b5\\u13e5\\u13d9\\u13c5\": 15128,\n    \"\\u2581\\u13f3\\u13aa\\u13e9\\u13db\": 15129,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13db\\u13d7\\u13cd\\u13ac\": 15130,\n    \"\\u13d9\\u13b5\\u13e5\\u13f0\\u13c3\": 15131,\n    \"\\u13ee\\u13d4\\u13c1\\u13a2\": 15132,\n    \"\\u13cf\\u13d7\\u13e2\": 15133,\n    \"\\u2581\\u13c2\\u13ac\\u13c2\\u13cc\": 15134,\n    \"\\u2581\\u13a0\\u13be\\u13e8\\u13cd\": 15135,\n    \"\\u2581\\u13f1\\u13c2\\u13ea\\u13cd\\u13a8\\u13cd\\u13d7\": 15136,\n    \"\\u13db\\u13aa\\u13d9\\u13d7\": 15137,\n    \"\\u2581\\u13d3\\u13d7\\u13e9\\u13db\\u13af\": 15138,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c5\": 15139,\n    \"\\u2581\\u13d7\\u13e7\\u13aa\\u13d4\\u13c5\": 15140,\n    \"\\u13f1\\u13e3\\u13b8\\u13c2\\u13d7\\u13cd\": 15141,\n    \"\\u2581\\u13a4\\u13d4\\u13c3\": 15142,\n    \"\\u2581\\u13a0\\u13b1\\u13e2\\u13db\": 15143,\n    \"\\u2581\\u13d7\\u13e5\\u13f4\\u13cf\": 15144,\n    \"\\u2581\\u13c2\\u13da\\u13c5\\u13bf\\u13d5\": 15145,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d3\\u13e9\\u13db\\u13d2\\u13a9\": 15146,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13a6\\u13c5\\u13e4\": 15147,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13af\\u13cd\\u13d7\\u13f1\": 15148,\n    \"\\u13d3\\u13f2\\u13af\\u13cf\": 15149,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13b8\\u13a9\": 15150,\n    \"\\u2581\\u13da\\u13c2\\u13be\\u13d7\\u13c5\\u13ce\": 15151,\n    \"\\u2581\\u13ba\\u13cc\\u13ef\": 15152,\n    \"\\u2581\\u13d3\\u13a6\\u13d8\\u13f4\": 15153,\n    \"\\u2581\\u13a6\\u13b8\\u13c9\\u13d4\\u13c5\\u13af\": 15154,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13a2\\u13b2\": 15155,\n    \"\\u2581\\u13a1\\u13a9\\u13d9\\u13b5\\u13e8\": 15156,\n    \"\\u2581\\u13da\\u13c2\\u13d2\\u13c5\": 15157,\n    \"\\u2581\\u13f4\\u13a8\\u13d7\": 15158,\n    \"\\u2581\\u13e3\\u13b4\\u13eb\\u13cd\\u13d4\\u13c5\": 15159,\n    \"\\u13c1\\u13df\\u13f4\\u13cf\": 15160,\n    \"\\u2581\\u13e7\\u13db\\u13c1\\u13a2\": 15161,\n    \"\\u2581\\u13e7\\u13d5\\u13c1\\u13a2\": 15162,\n    \"\\u2581\\u13f2\\u13a9\\u13aa\": 15163,\n    \"\\u2581\\u13a0\\u13e5\\u13d9\\u13b5\\u13cd\\u13d7\\u13f1\": 15164,\n    \"\\u2581\\u13cc\\u13c6\": 15165,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13d7\\u13cd\\u13a9\": 15166,\n    \"\\u2581\\u13c2\\u13a6\\u13a1\": 15167,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\\u13c5\\u13a9\": 15168,\n    \"\\u2581\\u13a4\\u13c2\\u13c5\\u13aa\\u13a2\\u13cd\\u13d7\": 15169,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13cd\\u13a8\": 15170,\n    \"\\u2581\\u13f4\\u13e7\": 15171,\n    \"\\u2581\\u13a8\\u13d9\\u13ae\\u13cd\\u13d7\": 15172,\n    \"\\u2581\\u13f1\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\": 15173,\n    \"\\u13cf\\u13d9\\u13c2\": 15174,\n    \"\\u2581\\u13c4\\u13c1\\u13e4\": 15175,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\\u13af\": 15176,\n    \"\\u13ac\\u13ef\\u13ab\\u13f4\\u13a1\\u13b8\": 15177,\n    \"\\u13d3\\u13be\\u13e3\\u13c5\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 15178,\n    \"\\u2581\\u13c2\\u13d7\\u13a6\\u13b8\\u13c9\": 15179,\n    \"\\u13d1\\u13b8\": 15180,\n    \"\\u2581\\u13a1\\u13e5\\u13a7\\u13b5\\u13a2\": 15181,\n    \"\\u2581\\u13a4\\u13c2\\u13ad\\u13b7\\u13ac\": 15182,\n    \"\\u13da\\u13a2\\u13cd\\u13d4\\u13c5\\u13a2\": 15183,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13ef\\u13b7\\u13a5\\u13cd\\u13a9\": 15184,\n    \"\\u2581\\u13a4\\u13ee\\u13d7\": 15185,\n    \"\\u2581\\u13a0\\u13df\\u13c3\\u13ae\\u13d9\\u13d7\": 15186,\n    \"\\u2581\\u13a0\\u13d3\\u13db\\u13cd\\u13ac\": 15187,\n    \"\\u13ef\\u13aa\\u13d7\\u13f1\": 15188,\n    \"\\u2581\\u13e5\\u13d3\\u13a6\\u13b4\\u13d4\\u13c1\": 15189,\n    \"\\u2581\\u13f3\\u13c2\\u13b8\\u13c9\": 15190,\n    \"\\u2581\\u13a0\\u13e5\\u13a6\\u13d8\\u13d7\\u13cd\\u13db\": 15191,\n    \"\\u2581\\u13a4\\u13ee\\u13d7\\u13f1\": 15192,\n    \"\\u2581\\u13a0\\u13c1\\u13b8\\u13d9\\u13d7\": 15193,\n    \"\\u2581\\u13e4\\u13cd\\u13d3\": 15194,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 15195,\n    \"\\u13d7\\u13a6\\u13b4\\u13f2\\u13d7\": 15196,\n    \"\\u2581\\u13da\\u13df\\u13b6\\u13cd\\u13d4\\u13c5\": 15197,\n    \"\\u2581\\u13e6\\u13cd\\u13d3\": 15198,\n    \"\\u2581\\u13aa\\u13b5\\u13a6\": 15199,\n    \"\\u2581\\u13ed\\u13a7\": 15200,\n    \"\\u13f2\\u13e3\\u13c3\": 15201,\n    \"\\u2581\\u13c5\\u13d3\\u13e9\\u13d3\\u13b4\\u13c5\": 15202,\n    \"\\u2581\\u13d7\\u13db\\u13d9\\u13d7\\u13f1\": 15203,\n    \"\\u2581\\u13a3\\u13a8\\u13b5\\u13d2\": 15204,\n    \"\\u2581\\u13a4\\u13c1\\u13a9\\u13d2\\u13a9\": 15205,\n    \"\\u2581\\u13e5\\u13a6\\u13d4\\u13be\\u13a5\": 15206,\n    \"\\u13c2\\u13d4\\u13eb\": 15207,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13ea\\u13a0\": 15208,\n    \"\\u2581\\u13d1\\u13d5\\u13d8\\u13f4\": 15209,\n    \"\\u2581\\u13e3\\u13be\\u13b5\\u13d6\\u13b8\": 15210,\n    \"\\u2581\\u13c5\\u13d3\\u13a6\\u13e5\": 15211,\n    \"\\u2581\\u13da\\u13e9\\u13ef\": 15212,\n    \"\\u2581\\u13f1\\u13d3\\u13a9\\u13ef\\u13ea\": 15213,\n    \"\\u2581\\u13a0\\u13d5\\u13ad\\u13f2\\u13b2\": 15214,\n    \"\\u2581\\u13a4\\u13e9\\u13ad\\u13c2\\u13b8\": 15215,\n    \"\\u2581\\u13e7\\u13be\\u13b5\\u13cd\\u13d9\\u13d7\": 15216,\n    \"\\u13a4\\u13f2\\u13ae\\u13b4\": 15217,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13da\\u13d7\": 15218,\n    \"\\u2581\\u13eb\\u13da\\u13d8\\u13c3\\u13b4\": 15219,\n    \"\\u2581\\u13e7\\u13f2\\u13b1\\u13ce\": 15220,\n    \"\\u2581\\u13c3\\u13c8\": 15221,\n    \"\\u2581\\u13a4\\u13b8\\u13b4\\u13a2\": 15222,\n    \"\\u2581\\u13a4\\u13b5\\u13f0\\u13a2\\u13b6\\u13b8\": 15223,\n    \"\\u2581\\u13e5\\u13a6\\u13e5\": 15224,\n    \"\\u2581\\u13e5\\u13f0\\u13bf\\u13a5\": 15225,\n    \"\\u2581\\u13a4\\u13c1\\u13df\": 15226,\n    \"\\u2581\\u13a4\\u13ea\\u13d0\": 15227,\n    \"\\u2581\\u13a0\\u13cd\\u13a9\\u13d3\\u13d2\": 15228,\n    \"\\u2581\\u13e7\\u13d9\\u13b4\\u13b0\\u13ce\": 15229,\n    \"\\u2581\\u13a4\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13ac\": 15230,\n    \"\\u13ae\\u13be\\u13c2\": 15231,\n    \"\\u13ec\\u13af\\u13e8\": 15232,\n    \"\\u2581\\u13a4\\u13be\\u13a9\\u13b8\\u13c1\": 15233,\n    \"\\u2581\\u13a4\\u13be\\u13d7\\u13a6\\u13b5\": 15234,\n    \"\\u2581\\u13a4\\u13c3\\u13cd\\u13a9\\u13d2\\u13a2\": 15235,\n    \"\\u13b3\\u13eb\\u13e8\": 15236,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13a6\\u13c2\\u13cd\\u13db\": 15237,\n    \"\\u2581\\u13a5\\u13a9\\u13b8\\u13a2\": 15238,\n    \"\\u2581\\u13d5\\u13a6\\u13be\\u13f0\": 15239,\n    \"\\u2581\\u13da\\u13c3\\u13ae\\u13ae\\u13b8\": 15240,\n    \"\\u13b8\\u13a1\\u13d7\": 15241,\n    \"\\u2581\\u13da\\u13d5\\u13b3\\u13cd\\u13d4\": 15242,\n    \"\\u13a6\\u13e5\\u13f4\\u13d7\\u13cd\\u13ac\": 15243,\n    \"\\u13a9\\u13af\\u13b5\\u13d3\\u13cd\\u13d7\": 15244,\n    \"\\u13d0\\u13c5\\u13ef\": 15245,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 15246,\n    \"\\u2581\\u13a4\\u13c5\\u13cd\\u13a6\\u13b8\": 15247,\n    \"\\u2581\\u13a3\\u13a9\\u13c5\\u13d2\": 15248,\n    \"\\u2581\\u13d9\\u13cd\\u13d4\": 15249,\n    \"\\u2581\\u13a0\\u13a6\\u13f2\": 15250,\n    \"\\u2581\\u13a4\\u13c4\\u13f4\": 15251,\n    \"\\u2581\\u13a5\\u13d3\\u13d7\\u13cd\\u13d5\\u13b8\\u13d7\": 15252,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13a7\": 15253,\n    \"\\u2581\\u13a4\\u13ec\\u13af\\u13f3\\u13b2\": 15254,\n    \"\\u13c2\\u13cc\\u13b3\\u13db\\u13a9\": 15255,\n    \"\\u2581\\u13a4\\u13b5\\u13c3\\u13ae\\u13d9\\u13d7\\u13f1\": 15256,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13a2\\u13cd\\u13d7\\u13f1\": 15257,\n    \"\\u2581\\u13a4\\u13be\\u13de\\u13db\": 15258,\n    \"\\u13f2\\u13b1\\u13af\\u13ce\\u13ad\": 15259,\n    \"\\u13b4\\u13cf\\u13c2\": 15260,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13af\\u13ce\\u13b8\\u13a9\": 15261,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13ad\": 15262,\n    \"\\u2581\\u13a6\\u13a6\\u13b3\": 15263,\n    \"\\u2581\\u13a0\\u13d3\\u13b9\": 15264,\n    \"\\u13f4\\u13af\\u13d3\": 15265,\n    \"\\u13b6\\u13a3\\u13d2\": 15266,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13b5\\u13f0\\u13d7\": 15267,\n    \"\\u2581\\u13a4\\u13c2\\u13e6\": 15268,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13e3\\u13c1\": 15269,\n    \"\\u13c3\\u13e3\\u13dd\": 15270,\n    \"\\u2581\\u13e7\\u13e9\\u13db\\u13d4\\u13c5\": 15271,\n    \"\\u13aa\\u13eb\\u13d2\": 15272,\n    \"\\u2581\\u13a4\\u13c3\\u13d4\\u13c5\": 15273,\n    \"\\u2581\\u13a4\\u13c3\\u13eb\": 15274,\n    \"\\u2581\\u13a4\\u13ee\\u13d4\\u13c1\\u13a2\": 15275,\n    \"\\u2581\\u13e5\\u13eb\\u13d9\": 15276,\n    \"\\u2581\\u13e7\\u13a8\\u13f3\\u13af\": 15277,\n    \"\\u2581\\u13d7\\u13a8\\u13c5\\u13d2\": 15278,\n    \"\\u2581\\u13ed\\u13f4\\u13cd\\u13d7\": 15279,\n    \"\\u2581\\u13e5\\u13c2\\u13a6\\u13a5\": 15280,\n    \"\\u2581\\u13a0\\u13c6\\u13d9\\u13b5\": 15281,\n    \"\\u13a4\\u13ea\\u13a7\\u13c1\\u13b4\": 15282,\n    \"\\u13d3\\u13c1\\u13e2\": 15283,\n    \"\\u13b5\\u13f0\\u13b2\": 15284,\n    \"\\u13f4\\u13e3\\u13d7\\u13cd\\u13d7\": 15285,\n    \"\\u2581\\u13a0\\u13aa\\u13e9\\u13d8\\u13cd\\u13aa\\u13a2\": 15286,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13c5\\u13cd\\u13d7\\u13f1\": 15287,\n    \"\\u2581\\u13f4\\u13ac\\u13be\\u13db\": 15288,\n    \"\\u2581\\u13a0\\u13a9\\u13ef\\u13a0\": 15289,\n    \"\\u2581\\u13a3\\u13cd\\u13d4\": 15290,\n    \"\\u13d5\\u13d7\\u13f1\\u13a9\": 15291,\n    \"\\u2581\\u13e7\\u13e6\": 15292,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\\u13e9\": 15293,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13c1\\u13b8\": 15294,\n    \"\\u2581\\u13e3\\u13be\\u13f4\": 15295,\n    \"\\u2581\\u13d3\\u13e0\\u13f1\\u13b2\\u13a9\": 15296,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d4\\u13c1\": 15297,\n    \"\\u2581\\u13e5\\u13f2\\u13b5\\u13a9\": 15298,\n    \"\\u2581\\u13a6\\u13c5\\u13c6\\u13b6\\u13cd\\u13d7\": 15299,\n    \"\\u2581\\u13e5\\u13c2\\u13a8\\u13e8\\u13c1\": 15300,\n    \"\\u2581\\u13a4\\u13c2\\u13ef\\u13c5\\u13b2\\u13a9\": 15301,\n    \"\\u2581\\u13a4\\u13a6\\u13ce\\u13c2\": 15302,\n    \"\\u2581\\u13a6\\u13b5\\u13c6\": 15303,\n    \"\\u2581\\u13a2\\u13ef\\u13c9\\u13b5\\u13cd\": 15304,\n    \"\\u13cd\\u13d5\\u13b8\\u13b2\\u13ce\": 15305,\n    \"\\u13d5\\u13f2\\u13c5\\u13a2\": 15306,\n    \"\\u2581\\u13a3\\u13a9\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 15307,\n    \"\\u2581\\u13a6\\u13df\\u13d0\\u13d7\\u13f1\": 15308,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13aa\": 15309,\n    \"\\u2581\\u13c2\\u13e5\\u13f2\": 15310,\n    \"\\u13cc\\u13b4\\u13d3\\u13c5\": 15311,\n    \"\\u13d9\\u13a6\\u13b5\\u13c2\\u13ac\\u13ac\": 15312,\n    \"\\u2581\\u13a4\\u13c2\\u13cc\\u13b3\\u13d3\\u13c1\": 15313,\n    \"\\u2581\\u13e7\\u13b5\\u13c2\\u13a9\\u13d7\\u13f3\": 15314,\n    \"\\u2581\\u13ed\\u13e2\\u13c1\\u13a2\": 15315,\n    \"\\u2581\\u13d9\\u13a9\\u13be\\u13cd\\u13a9\\u13d3\\u13d2\\u13a9\": 15316,\n    \"\\u2581\\u13da\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\\u13b8\": 15317,\n    \"\\u2581\\u13e7\\u13f2\\u13af\\u13ce\\u13b8\\u13af\": 15318,\n    \"\\u2581\\u13a4\\u13f0\\u13df\": 15319,\n    \"\\u2581\\u13d3\\u13e8\\u13cd\\u13db\": 15320,\n    \"\\u2581\\u13be\\u13c6\\u13db\\u13bf\\u13d5\\u13ac\\u13a9\": 15321,\n    \"\\u2581\\u13c2\\u13da\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 15322,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13e0\\u13af\\u13ce\\u13b8\\u13a9\": 15323,\n    \"\\u2581\\u13a4\\u13ec\\u13c1\\u13d4\\u13c5\": 15324,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13ce\": 15325,\n    \"\\u13f2\\u13cd\\u13d4\\u13c2\\u13b8\": 15326,\n    \"\\u2581\\u13e5\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 15327,\n    \"\\u13c4\\u13aa\\u13a6\": 15328,\n    \"\\u2581\\u13cf\\u13ca\": 15329,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13eb\\u13db\": 15330,\n    \"\\u2581\\u13da\\u13ed\\u13aa\\u13d4\\u13c1\": 15331,\n    \"\\u2581\\u13f4\\u13d3\\u13e8\\u13f4\": 15332,\n    \"\\u2581\\u13a0\\u13b5\\u13ae\\u13b5\\u13a9\": 15333,\n    \"\\u2581\\u13a0\\u13d4\\u13d7\": 15334,\n    \"\\u2581\\u13a3\\u13ac\\u13d5\": 15335,\n    \"\\u2581\\u13a4\\u13e5\\u13b8\\u13ce\\u13cd\\u13d7\": 15336,\n    \"\\u2581\\u13be\\u13c2\\u13ea\\u13ce\\u13ae\": 15337,\n    \"\\u2581\\u13cd\\u13c7\": 15338,\n    \"\\u13db\\u13e5\\u13c1\\u13e5\": 15339,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13da\": 15340,\n    \"\\u2581\\u13a4\\u13d3\\u13f2\\u13c1\": 15341,\n    \"\\u2581\\u13a4\\u13a6\\u13be\\u13cf\\u13cd\\u13a9\": 15342,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\\u13f2\\u13af\\u13ae\": 15343,\n    \"\\u2581\\u13a4\\u13d7\\u13c5\\u13ce\": 15344,\n    \"\\u2581\\u13f3\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\": 15345,\n    \"\\u2581\\u13af\\u13c1\\u13e5\": 15346,\n    \"\\u13a6\\u13ef\\u13b7\\u13a5\": 15347,\n    \"\\u2581\\u13da\\u13c2\\u13f4\\u13cd\\u13d5\": 15348,\n    \"\\u2581\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 15349,\n    \"\\u13d7\\u13d3\\u13b8\": 15350,\n    \"\\u2581\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 15351,\n    \"\\u2581\\u13e9\\u13cd\\u13d5\\u13cd\\u13d7\": 15352,\n    \"\\u13b5\\u13cd\\u13c7\\u13da\\u13ee\": 15353,\n    \"\\u13be\\u13c4\\u13aa\\u13aa\\u13a2\": 15354,\n    \"\\u2581\\u13d7\\u13ac\\u13cd\\u13a6\": 15355,\n    \"\\u13f0\\u13a2\\u13b5\\u13d5\": 15356,\n    \"\\u2581\\u13a4\\u13db\\u13af\\u13cd\\u13d4\\u13c1\": 15357,\n    \"\\u2581\\u13e7\\u13c2\\u13f0\\u13b8\\u13cd\\u13d7\": 15358,\n    \"\\u2581\\u13eb\\u13ac\\u13be\\u13a9\": 15359,\n    \"\\u13a9\\u13ce\\u13aa\\u13a9\\u13d2\\u13a9\": 15360,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13ad\": 15361,\n    \"\\u13d2\\u13c2\\u13b2\": 15362,\n    \"\\u2581\\u13e5\\u13c2\\u13d5\\u13ac\\u13c1\\u13b0\": 15363,\n    \"\\u13c8\\u13bb\": 15364,\n    \"\\u2581\\u13eb\\u13da\\u13e0\\u13d2\": 15365,\n    \"\\u2581\\u13e3\\u13e1\\u13d7\\u13cd\\u13a9\": 15366,\n    \"\\u2581\\u13b9\\u13be\\u13cf\": 15367,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13d9\\u13be\": 15368,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\": 15369,\n    \"\\u2581\\u13d3\\u13a6\\u13c4\\u13aa\\u13ac\": 15370,\n    \"\\u2581\\u13da\\u13c1\\u13af\\u13cd\\u13d3\\u13c1\": 15371,\n    \"\\u2581\\u13da\\u13cf\\u13b3\": 15372,\n    \"\\u13c4\\u13d3\\u13c5\\u13af\\u13db\": 15373,\n    \"\\u2581\\u13a8\\u13e5\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13d7\": 15374,\n    \"\\u2581\\u13da\\u13c2\\u13c5\\u13d2\\u13a9\": 15375,\n    \"\\u13d6\\u13b8\\u13a2\": 15376,\n    \"\\u13e5\\u13aa\\u13a5\\u13cd\\u13a6\": 15377,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d2\": 15378,\n    \"\\u2581\\u13a0\\u13c2\\u13ad\\u13b9\": 15379,\n    \"\\u13ea\\u13b3\\u13be\": 15380,\n    \"\\u2581\\u13a4\\u13b1\\u13c1\": 15381,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13e4\\u13b5\\u13db\": 15382,\n    \"\\u2581\\u13a4\\u13ec\\u13d2\\u13c1\": 15383,\n    \"\\u2581\\u13b9\\u13cf\": 15384,\n    \"\\u13b8\\u13c9\\u13d7\\u13cd\\u13ac\\u13a2\": 15385,\n    \"\\u2581\\u13d5\\u13e5\\u13ac\\u13cd\\u13aa\\u13b8\\u13a5\\u13cd\": 15386,\n    \"\\u2581\\u13a4\\u13d3\\u13ec\\u13a2\": 15387,\n    \"\\u13be\\u13b3\\u13cd\\u13d8\\u13f0\": 15388,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\\u13b5\\u13d9\": 15389,\n    \"\\u13cb\\u13bf\\u13d5\\u13ac\": 15390,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13f0\\u13d7\\u13cd\\u13ac\": 15391,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\": 15392,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13c5\\u13a9\": 15393,\n    \"\\u13ac\\u13e9\\u13b6\\u13d4\\u13c1\": 15394,\n    \"\\u13db\\u13a8\\u13cd\\u13ac\": 15395,\n    \"\\u2581\\u13da\\u13d9\\u13a8\": 15396,\n    \"\\u13af\\u13f3\\u13b2\\u13cd\\u13ac\\u13be\": 15397,\n    \"\\u2581\\u13d7\\u13a8\\u13e8\": 15398,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13f3\\u13aa\\u13d3\\u13c1\": 15399,\n    \"\\u2581\\u13d9\\u13d7\\u13e3\": 15400,\n    \"\\u2581\\u13b9\\u13b5\\u13a6\": 15401,\n    \"\\u2581\\u13e7\\u13ec\\u13aa\\u13d3\\u13c1\": 15402,\n    \"\\u2581\\u13eb\\u13d5\\u13a6\": 15403,\n    \"\\u2581\\u13eb\\u13ac\\u13a9\\u13f4\\u13cd\": 15404,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13c2\\u13b4\\u13a2\": 15405,\n    \"\\u2581\\u13f1\\u13c5\\u13ac\": 15406,\n    \"\\u13c5\\u13a5\\u13a6\": 15407,\n    \"\\u13f0\\u13b8\\u13be\\u13c1\\u13b2\": 15408,\n    \"\\u2581\\u13da\\u13c5\\u13cd\\u13d3\\u13d5\\u13b8\\u13a9\": 15409,\n    \"\\u2581\\u13d4\\u13c8\": 15410,\n    \"\\u2581\\u13be\\u13ef\\u13db\": 15411,\n    \"\\u13d5\\u13d9\\u13b3\\u13db\\u13d7\": 15412,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13cd\\u13a9\": 15413,\n    \"\\u2581\\u13af\\u13c5\\u13cd\\u13d7\\u13f1\": 15414,\n    \"\\u2581\\u13a0\\u13db\\u13cd\\u13aa\\u13a2\": 15415,\n    \"\\u13b6\\u13ae\\u13cd\\u13d7\": 15416,\n    \"\\u2581\\u13a3\\u13a9\\u13aa\\u13b2\\u13a9\": 15417,\n    \"\\u13d7\\u13c1\\u13d7\": 15418,\n    \"\\u2581\\u13a0\\u13c2\\u13c2\\u13c6\\u13d8\\u13af\": 15419,\n    \"\\u2581\\u13e5\\u13f0\\u13b8\\u13c5\": 15420,\n    \"\\u2581\\u13ed\\u13ef\\u13c5\\u13db\": 15421,\n    \"\\u2581\\u13a5\\u13c6\\u13d3\\u13d3\\u13b4\": 15422,\n    \"\\u2581\\u13d3\\u13a6\\u13c5\\u13d3\": 15423,\n    \"\\u13a8\\u13af\\u13d9\\u13ae\": 15424,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13a6\\u13c1\\u13b8\\u13af\": 15425,\n    \"\\u2581\\u13a0\\u13c2\\u13b8\\u13c9\\u13d7\\u13cd\\u13a9\": 15426,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d3\\u13b4\": 15427,\n    \"\\u13ac\\u13c6\\u13e1\\u13d4\\u13c5\": 15428,\n    \"\\u2581\\u13a4\\u13b8\\u13c3\\u13d8\\u13ad\": 15429,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13d6\\u13b8\\u13c2\": 15430,\n    \"\\u2581\\u13a6\\u13b6\\u13d0\\u13b2\\u13cd\\u13a6\": 15431,\n    \"\\u2581\\u13a8\\u13a6\\u13ce\\u13b8\\u13ad\": 15432,\n    \"\\u2581\\u13d3\\u13ac\\u13f4\": 15433,\n    \"\\u2581\\u13f1\\u13d7\\u13e3\\u13d8\\u13c2\\u13d9\": 15434,\n    \"\\u2581\\u13a4\\u13be\\u13e0\\u13a5\\u13d4\": 15435,\n    \"\\u2581\\u13a2\\u13e5\\u13f2\\u13a2\": 15436,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13e8\\u13cd\": 15437,\n    \"\\u2581\\u13a0\\u13d7\\u13d4\\u13cd\\u13a6\": 15438,\n    \"\\u2581\\u13eb\\u13a6\\u13e9\\u13d9\": 15439,\n    \"\\u2581\\u13ad\\u13a6\\u13cc\\u13ef\\u13cd\": 15440,\n    \"\\u13da\\u13d7\\u13c5\\u13d2\\u13a9\": 15441,\n    \"\\u2581\\u13a0\\u13d2\\u13db\\u13d7\": 15442,\n    \"\\u13c1\\u13b3\\u13d7\\u13d2\": 15443,\n    \"\\u2581\\u13e5\\u13e5\\u13b7\\u13a9\": 15444,\n    \"\\u13b7\\u13e5\\u13cc\\u13c1\": 15445,\n    \"\\u2581\\u13db\\u13ca\": 15446,\n    \"\\u2581\\u13c8\\u13b3\\u13ef\": 15447,\n    \"\\u2581\\u13f1\\u13d3\\u13c6\\u13c1\": 15448,\n    \"\\u2581\\u13a4\\u13b5\\u13aa\\u13d7\": 15449,\n    \"\\u2581\\u13a3\\u13a9\\u13f0\\u13b8\\u13ad\": 15450,\n    \"\\u13e5\\u13b8\\u13c9\\u13d7\": 15451,\n    \"\\u13f2\\u13cf\\u13cd\\u13aa\\u13a2\": 15452,\n    \"\\u2581\\u13a0\\u13c1\\u13b7\\u13b2\\u13cd\\u13ac\": 15453,\n    \"\\u2581\\u13e6\\u13a0\\u13be\": 15454,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13cc\\u13ef\\u13cd\\u13d4\\u13c1\": 15455,\n    \"\\u2581\\u13d3\\u13cd\\u13da\\u13b2\\u13a2\": 15456,\n    \"\\u2581\\u13a4\\u13df\\u13b6\\u13cd\\u13d7\": 15457,\n    \"\\u2581\\u13d3\\u13c2\\u13b3\\u13eb\\u13a1\": 15458,\n    \"\\u13c5\\u13db\\u13c5\\u13c1\\u13b5\": 15459,\n    \"\\u2581\\u13ac\\u13cd\\u13d5\\u13b8\\u13d7\": 15460,\n    \"\\u13ce\\u13b5\\u13d3\\u13c1\\u13b4\\u13a2\": 15461,\n    \"\\u2581\\u13af\\u13b7\\u13e4\\u13d7\\u13f1\": 15462,\n    \"\\u2581\\u13a4\\u13be\\u13e0\\u13e4\\u13c9\": 15463,\n    \"\\u2581\\u13a4\\u13c2\\u13d0\\u13ef\\u13cd\": 15464,\n    \"\\u2581\\u13e7\\u13d7\\u13b4\\u13a9\": 15465,\n    \"\\u2581\\u13a1\\u13a6\\u13ab\\u13f4\\u13d3\\u13c1\\u13d7\": 15466,\n    \"\\u13df\\u13c3\\u13ae\\u13d9\\u13d7\": 15467,\n    \"\\u2581\\u13a4\\u13c5\\u13aa\\u13b3\\u13db\": 15468,\n    \"\\u13a9\\u13ef\\u13ec\\u13cd\": 15469,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13ce\\u13cd\\u13d7\": 15470,\n    \"\\u13ce\\u13ae\\u13b5\": 15471,\n    \"\\u13d7\\u13e5\\u13f2\\u13df\": 15472,\n    \"\\u2581\\u13c5\\u13e7\": 15473,\n    \"\\u2581\\u13a7\\u13c1\\u13e8\\u13af\": 15474,\n    \"\\u13cd\\u13a6\\u13c5\\u13ac\": 15475,\n    \"\\u2581\\u13ac\\u13c3\\u13cc\": 15476,\n    \"\\u2581\\u13e5\\u13d5\\u13a6\\u13d3\": 15477,\n    \"\\u13e5\\u13cd\\u13d4\\u13dd\": 15478,\n    \"\\u13bc\\u13d3\": 15479,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13d9\\u13ae\": 15480,\n    \"\\u2581\\u13e6\\u13a9\\u13c3\\u13a9\\u13cd\": 15481,\n    \"\\u13b5\\u13d1\\u13eb\": 15482,\n    \"\\u2581\\u13d7\\u13e8\\u13cd\\u13d7\\u13f1\": 15483,\n    \"\\u2581\\u13c4\\u13be\\u13d3\\u13d5\": 15484,\n    \"\\u2581\\u13d5\\u13e8\\u13ef\\u13e0\\u13a2\\u13cd\\u13d3\\u13c1\": 15485,\n    \"\\u2581\\u13af\\u13e3\": 15486,\n    \"\\u2581\\u13d8\\u13ef\\u13d9\": 15487,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13c1\\u13a2\": 15488,\n    \"\\u13cc\\u13d4\\u13c1\\u13a2\": 15489,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13a2\": 15490,\n    \"\\u2581\\u13e5\\u13d5\\u13af\\u13f3\\u13aa\\u13d3\\u13c1\": 15491,\n    \"\\u2581\\u13d5\\u13e5\\u13c5\\u13a6\\u13b5\\u13cd\\u13aa\": 15492,\n    \"\\u2581\\u13d7\\u13a6\\u13c1\\u13cd\": 15493,\n    \"\\u2581\\u13a2\\u13c2\\u13ef\": 15494,\n    \"\\u2581\\u13f1\\u13d7\\u13ac\\u13d5\\u13aa\": 15495,\n    \"\\u2581\\u13a0\\u13be\\u13e7\": 15496,\n    \"\\u13c3\\u13cd\\u13a9\\u13ad\": 15497,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13db\\u13c1\\u13b4\\u13a2\": 15498,\n    \"\\u2581\\u13eb\\u13a6\\u13d5\": 15499,\n    \"\\u2581\\u13ed\\u13c2\\u13f4\\u13b2\": 15500,\n    \"\\u2581\\u13d5\\u13e7\\u13aa\\u13d4\\u13c5\": 15501,\n    \"\\u2581\\u13e3\\u13a7\\u13c5\": 15502,\n    \"\\u13af\\u13b7\\u13a9\": 15503,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13c1\\u13b4\": 15504,\n    \"\\u2581\\u13a6\\u13b7\\u13aa\\u13a2\": 15505,\n    \"\\u2581\\u13ae\\u13b5\\u13ad\": 15506,\n    \"\\u2581\\u13eb\\u13d9\\u13a4\\u13b7\\u13e4\": 15507,\n    \"\\u2581\\u13eb\\u13d9\\u13db\": 15508,\n    \"\\u2581\\u13d7\\u13e5\\u13a6\\u13b5\": 15509,\n    \"\\u13ac\\u13cd\\u13aa\\u13b8\\u13d7\\u13f1\": 15510,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13cc\\u13ef\\u13cd\\u13d9\\u13a2\": 15511,\n    \"\\u2581\\u13a0\\u13c2\\u13d7\\u13e2\": 15512,\n    \"\\u2581\\u13a7\\u13b9\": 15513,\n    \"\\u2581\\u13da\\u13d3\\u13c5\\u13a1\\u13b8\\u13c3\": 15514,\n    \"\\u2581\\u13f1\\u13e5\\u13aa\\u13e9\\u13d8\\u13ad\": 15515,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13b8\\u13a9\": 15516,\n    \"\\u2581\\u13d3\\u13be\\u13b5\\u13cd\\u13db\": 15517,\n    \"\\u13a9\\u13e3\\u13c5\": 15518,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13d6\\u13c6\\u13b6\": 15519,\n    \"\\u13e7\\u13be\\u13db\\u13d2\": 15520,\n    \"\\u2581\\u13ed\\u13c2\\u13c3\\u13ae\\u13b4\": 15521,\n    \"\\u2581\\u13c2\\u13cd\\u13d3\": 15522,\n    \"\\u2581\\u13c1\\u13e3\\u13d3\": 15523,\n    \"\\u13b8\\u13d5\\u13cd\\u13d7\\u13ad\": 15524,\n    \"\\u2581\\u13d7\\u13a9\\u13be\\u13eb\\u13f1\": 15525,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d4\\u13c2\\u13d3\\u13cd\\u13d7\\u13f1\": 15526,\n    \"\\u2581\\u13da\\u13c5\\u13a6\\u13b8\": 15527,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13e9\\u13db\\u13d7\": 15528,\n    \"\\u2581\\u13c2\\u13ac\\u13a9\\u13ea\\u13ce\\u13b2\": 15529,\n    \"\\u2581\\u13eb\\u13d4\": 15530,\n    \"\\u13af\\u13f3\\u13af\\u13ef\": 15531,\n    \"\\u2581\\u13ef\\u13be\\u13b5\\u13d6\\u13b8\\u13b2\": 15532,\n    \"\\u2581\\u13a3\\u13e3\\u13db\\u13a6\": 15533,\n    \"\\u2581\\u13a0\\u13d2\\u13a2\\u13cd\\u13d7\\u13cd\": 15534,\n    \"\\u2581\\u13a7\\u13c1\\u13e8\": 15535,\n    \"\\u2581\\u13a1\\u13c2\\u13cf\": 15536,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a9\\u13b8\": 15537,\n    \"\\u13da\\u13be\\u13c4\\u13ee\": 15538,\n    \"\\u13ef\\u13d7\\u13d2\\u13a2\": 15539,\n    \"\\u13be\\u13ec\\u13cf\": 15540,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13b8\": 15541,\n    \"\\u13a9\\u13b8\\u13d4\\u13c5\": 15542,\n    \"\\u2581\\u13a4\\u13b8\\u13c9\\u13db\": 15543,\n    \"\\u2581\\u13c5\\u13d3\\u13f0\\u13e5\": 15544,\n    \"\\u2581\\u13f1\\u13a6\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\": 15545,\n    \"\\u2581\\u13a1\\u13a9\\u13c1\\u13b8\\u13af\": 15546,\n    \"\\u13e5\\u13f2\\u13a2\\u13f3\\u13d3\\u13c1\\u13ad\": 15547,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d9\": 15548,\n    \"\\u13e4\\u13b3\\u13cd\\u13d3\": 15549,\n    \"\\u2581\\u13d3\\u13c2\\u13f1\\u13b5\\u13d2\": 15550,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13a2\\u13cd\\u13d4\\u13c1\": 15551,\n    \"\\u2581\\u13a0\\u13c3\\u13cd\\u13d3\": 15552,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13c5\": 15553,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 15554,\n    \"\\u2581\\u13d7\\u13a6\\u13e4\\u13b5\\u13a6\": 15555,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d3\\u13f4\\u13be\\u13c1\\u13d7\\u13f1\": 15556,\n    \"\\u13e5\\u13c1\\u13e6\": 15557,\n    \"\\u13c1\\u13b3\\u13c5\": 15558,\n    \"\\u13ac\\u13e9\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b4\": 15559,\n    \"\\u13b6\\u13c8\": 15560,\n    \"\\u2581\\u13ac\\u13e3\\u13d3\": 15561,\n    \"\\u13e3\\u13d5\\u13b0\\u13af\\u13cd\\u13d7\": 15562,\n    \"\\u13e0\\u13d7\\u13f1\": 15563,\n    \"\\u2581\\u13a2\\u13d5\\u13c5\": 15564,\n    \"\\u2581\\u13ac\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13d7\": 15565,\n    \"\\u2581\\u13a4\\u13be\\u13e3\\u13c5\\u13af\": 15566,\n    \"\\u2581\\u13d7\\u13d6\\u13b5\": 15567,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13b8\\u13af\": 15568,\n    \"\\u2581\\u13d7\\u13e4\\u13c5\": 15569,\n    \"\\u2581\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13a6\": 15570,\n    \"\\u2581\\u13da\\u13c3\\u13e3\\u13dd\\u13c1\": 15571,\n    \"\\u2581\\u13a4\\u13c2\\u13aa\\u13b5\\u13f0\\u13a5\": 15572,\n    \"\\u2581\\u13cc\\u13ba\\u13b5\": 15573,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13be\\u13e2\\u13a5\\u13cd\": 15574,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13c5\\u13ac\": 15575,\n    \"\\u2581\\u13e7\\u13d3\\u13c6\": 15576,\n    \"\\u2581\\u13f1\\u13c1\\u13a6\": 15577,\n    \"\\u13b5\\u13d9\\u13a9\\u13af\": 15578,\n    \"\\u2581\\u13d3\\u13a6\\u13db\\u13a6\": 15579,\n    \"\\u2581\\u13a6\\u13b6\\u13c1\": 15580,\n    \"\\u2581\\u13e3\\u13be\\u13db\\u13a9\\u13cd\\u13aa\": 15581,\n    \"\\u2581\\u13e3\\u13f4\\u13cd\\u13d7\\u13f1\": 15582,\n    \"\\u2581\\u13d7\\u13cb\": 15583,\n    \"\\u2581\\u13e7\\u13eb\\u13ce\\u13a2\": 15584,\n    \"\\u2581\\u13a0\\u13be\\u13d9\": 15585,\n    \"\\u13c4\\u13ec\\u13a5\\u13a9\": 15586,\n    \"\\u13d7\\u13c6\\u13b8\\u13d5\": 15587,\n    \"\\u13d3\\u13ec\\u13cd\\u13a9\": 15588,\n    \"\\u13c2\\u13aa\\u13c1\\u13b6\\u13cd\\u13a8\\u13a2\": 15589,\n    \"\\u2581\\u13e5\\u13d5\\u13a4\\u13b4\\u13d4\": 15590,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\\u13a8\": 15591,\n    \"\\u2581\\u13a4\\u13e8\\u13a2\\u13cd\\u13d7\": 15592,\n    \"\\u13a2\\u13ab\\u13e9\\u13df\\u13cd\": 15593,\n    \"\\u2581\\u13cd\\u13a9\\u13a2\\u13cd\\u13d7\\u13f1\": 15594,\n    \"\\u2581\\u13d8\\u13aa\\u13af\": 15595,\n    \"\\u2581\\u13e5\\u13aa\\u13ce\\u13ad\": 15596,\n    \"\\u2581\\u13e3\\u13c1\\u13b8\\u13ad\": 15597,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13da\\u13b2\\u13a2\": 15598,\n    \"\\u2581\\u13d7\\u13e5\\u13ef\\u13a6\\u13c5\": 15599,\n    \"\\u2581\\u13da\\u13c2\\u13b3\\u13eb\\u13e4\\u13a2\": 15600,\n    \"\\u2581\\u13f1\\u13ac\\u13d7\\u13ad\": 15601,\n    \"\\u2581\\u13a4\\u13da\\u13d3\\u13d5\\u13eb\\u13d2\\u13a2\": 15602,\n    \"\\u13ad\\u13c4\\u13ec\": 15603,\n    \"\\u2581\\u13e5\\u13a6\\u13db\\u13a6\": 15604,\n    \"\\u2581\\u13da\\u13cd\\u13d3\\u13e9\\u13db\\u13ce\\u13a2\": 15605,\n    \"\\u2581\\u13d9\\u13d7\\u13a7\\u13c2\\u13cd\\u13ac\\u13a2\": 15606,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13ae\\u13a2\": 15607,\n    \"\\u2581\\u13e7\\u13a9\\u13e5\\u13cd\\u13aa\\u13a2\": 15608,\n    \"\\u2581\\u13ed\\u13a9\\u13b8\\u13c1\\u13a2\": 15609,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13a7\\u13c5\": 15610,\n    \"\\u2581\\u13a4\\u13b5\\u13d8\\u13d2\\u13a9\": 15611,\n    \"\\u2581\\u13a4\\u13be\\u13a9\\u13b3\\u13eb\\u13ce\": 15612,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13ce\\u13cd\": 15613,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13f2\\u13b5\\u13c9\": 15614,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13c5\\u13e2\\u13a2\": 15615,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\\u13a2\": 15616,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13a8\\u13cd\\u13d7\": 15617,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13ad\\u13cd\\u13aa\": 15618,\n    \"\\u2581\\u13ac\\u13a6\\u13d4\\u13ad\": 15619,\n    \"\\u13ad\\u13db\\u13a6\": 15620,\n    \"\\u2581\\u13af\\u13b6\\u13c1\": 15621,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13ce\\u13cd\\u13db\\u13a2\": 15622,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\": 15623,\n    \"\\u2581\\u13eb\\u13d3\\u13a7\\u13c1\\u13a2\": 15624,\n    \"\\u2581\\u13d3\\u13c2\\u13ec\\u13c2\\u13cd\\u13ac\\u13a2\": 15625,\n    \"\\u2581\\u13e5\\u13c2\\u13a8\\u13ce\\u13a2\": 15626,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 15627,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13cd\\u13aa\\u13a2\": 15628,\n    \"\\u2581\\u13a4\\u13b6\\u13c4\\u13ae\\u13d7\\u13f1\": 15629,\n    \"\\u2581\\u13d5\\u13e5\\u13a7\\u13bf\\u13e9\\u13d7\\u13d2\\u13a2\": 15630,\n    \"\\u2581\\u13ac\\u13e9\\u13ad\\u13b7\": 15631,\n    \"\\u2581\\u13d7\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\": 15632,\n    \"\\u2581\\u13e7\\u13aa\\u13c5\": 15633,\n    \"\\u2581\\u13a3\\u13e3\\u13d9\\u13b4\\u13b0\": 15634,\n    \"\\u2581\\u13f1\\u13aa\\u13b5\\u13a8\\u13a2\": 15635,\n    \"\\u2581\\u13eb\\u13c2\\u13d3\": 15636,\n    \"\\u2581\\u13a4\\u13aa\\u13cf\": 15637,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13ce\": 15638,\n    \"\\u2581\\u13da\\u13be\\u13d8\\u13c5\\u13ce\": 15639,\n    \"\\u2581\\u13a4\\u13ea\\u13d8\\u13c1\": 15640,\n    \"\\u13cf\\u13d9\\u13b5\": 15641,\n    \"\\u13aa\\u13af\\u13f3\\u13b2\\u13cd\\u13aa\\u13a2\": 15642,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13f2\": 15643,\n    \"\\u2581\\u13a4\\u13c2\\u13e2\\u13d7\": 15644,\n    \"\\u13c6\\u13ce\\u13b5\\u13d3\\u13c1\\u13b8\\u13a9\": 15645,\n    \"\\u2581\\u13c2\\u13da\\u13db\\u13c1\\u13b4\\u13a2\": 15646,\n    \"\\u2581\\u13a4\\u13ef\\u13db\\u13c5\": 15647,\n    \"\\u2581\\u13c2\\u13da\\u13c5\\u13c1\\u13b4\\u13a2\": 15648,\n    \"\\u2581\\u13a4\\u13d2\\u13a6\\u13b8\\u13a2\": 15649,\n    \"\\u13a7\\u13ad\\u13db\": 15650,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13d3\\u13b4\\u13cd\\u13d9\\u13d7\": 15651,\n    \"\\u2581\\u13a4\\u13ef\\u13b7\\u13a6\": 15652,\n    \"\\u2581\\u13e4\\u13a6\\u13db\": 15653,\n    \"\\u13cd\\u13a9\\u13c5\\u13a6\\u13b8\": 15654,\n    \"\\u13d5\\u13d2\\u13be\": 15655,\n    \"\\u13f2\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\\u13a2\": 15656,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13b0\\u13ce\": 15657,\n    \"\\u2581\\u13e3\\u13aa\\u13e9\\u13d8\\u13ad\": 15658,\n    \"\\u2581\\u13c4\\u13a6\\u13d4\\u13b2\\u13be\": 15659,\n    \"\\u2581\\u13a8\\u13e3\\u13e1\\u13d7\\u13cd\\u13ac\\u13a2\": 15660,\n    \"\\u2581\\u13d3\\u13cd\\u13da\\u13db\": 15661,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\\u13a8\\u13a2\": 15662,\n    \"\\u13db\\u13c1\\u13cf\": 15663,\n    \"\\u13e3\\u13da\\u13d3\\u13b3\\u13a1\\u13d7\": 15664,\n    \"\\u2581\\u13c2\\u13ac\\u13a9\\u13ea\\u13ce\\u13b8\": 15665,\n    \"\\u2581\\u13e5\\u13cd\\u13da\\u13c2\\u13a9\\u13cd\\u13d7\\u13af\": 15666,\n    \"\\u13ba\\u13cf\": 15667,\n    \"\\u2581\\u13a4\\u13c2\\u13cc\\u13c5\": 15668,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13f4\\u13d4\\u13c1\\u13a2\": 15669,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d2\\u13a9\": 15670,\n    \"\\u13be\\u13eb\\u13db\\u13ae\\u13a2\": 15671,\n    \"\\u2581\\u13c5\\u13e9\\u13cd\\u13d5\\u13cd\\u13d7\": 15672,\n    \"\\u13b5\\u13d2\\u13cd\\u13d4\\u13c1\": 15673,\n    \"\\u2581\\u13a2\\u13a4\\u13be\\u13e8\\u13ce\\u13a2\": 15674,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13ad\": 15675,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13cd\\u13d4\\u13f4\\u13b2\\u13cd\": 15676,\n    \"\\u2581\\u13ac\\u13e3\\u13d7\": 15677,\n    \"\\u2581\\u13d7\\u13a8\\u13ab\\u13aa\\u13d3\\u13c1\\u13d7\\u13f1\": 15678,\n    \"\\u2581\\u13e3\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 15679,\n    \"\\u13b3\\u13d1\\u13dd\\u13c5\": 15680,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13d2\\u13af\": 15681,\n    \"\\u2581\\u13d8\\u13be\\u13c4\\u13aa\\u13eb\\u13cf\": 15682,\n    \"\\u13be\\u13d3\\u13b4\\u13c1\\u13a2\": 15683,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13d7\": 15684,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13c2\\u13b8\\u13e8\\u13ad\": 15685,\n    \"\\u13be\\u13e6\\u13a5\\u13cd\\u13d7\": 15686,\n    \"\\u2581\\u13ad\\u13db\\u13a9\": 15687,\n    \"\\u2581\\u13ed\\u13be\\u13d3\": 15688,\n    \"\\u2581\\u13c2\\u13a6\\u13cd\\u13db\\u13a2\": 15689,\n    \"\\u2581\\u13a6\\u13c5\\u13d3\\u13d7\\u13cd\\u13aa\": 15690,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13ea\\u13ce\\u13b8\\u13a9\": 15691,\n    \"\\u2581\\u13a0\\u13c7\\u13d3\\u13cd\\u13d7\\u13f1\": 15692,\n    \"\\u2581\\u13ad\\u13b5\\u13ae\\u13b5\\u13a9\": 15693,\n    \"\\u2581\\u13a0\\u13c6\\u13b4\\u13c5\\u13d7\": 15694,\n    \"\\u13be\\u13d5\\u13a8\\u13cd\\u13d7\": 15695,\n    \"\\u2581\\u13a0\\u13e5\\u13f0\\u13b8\\u13be\\u13c1\\u13b4\\u13a2\": 15696,\n    \"\\u2581\\u13e3\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 15697,\n    \"\\u13f2\\u13b5\\u13b8\\u13ad\": 15698,\n    \"\\u2581\\u13ed\\u13c1\\u13b4\\u13a2\": 15699,\n    \"\\u2581\\u13a3\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\\u13a2\": 15700,\n    \"\\u2581\\u13a4\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\": 15701,\n    \"\\u13e7\\u13d4\\u13a9\": 15702,\n    \"\\u2581\\u13a4\\u13b5\\u13f0\\u13d1\\u13cd\\u13d9\\u13a9\": 15703,\n    \"\\u13a6\\u13b5\\u13cd\\u13d3\\u13db\\u13a9\": 15704,\n    \"\\u2581\\u13cd\\u13a9\\u13cd\\u13d5\\u13b8\\u13af\\u13d3\": 15705,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13b3\\u13d7\\u13cd\\u13d7\": 15706,\n    \"\\u2581\\u13a1\\u13ab\\u13d3\\u13b4\": 15707,\n    \"\\u2581\\u13d5\\u13a0\\u13be\": 15708,\n    \"\\u2581\\u13a0\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\\u13af\": 15709,\n    \"\\u2581\\u13a0\\u13a7\\u13b5\\u13e8\": 15710,\n    \"\\u13a9\\u13b5\\u13a8\\u13c2\": 15711,\n    \"\\u2581\\u13da\\u13be\\u13d9\\u13a1\": 15712,\n    \"\\u2581\\u13f1\\u13e5\\u13aa\": 15713,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d6\\u13cd\\u13d7\": 15714,\n    \"\\u13c2\\u13d4\\u13f2\\u13b4\\u13a2\": 15715,\n    \"\\u2581\\u13d3\\u13c2\\u13cd\\u13d5\\u13f2\": 15716,\n    \"\\u2581\\u13ed\\u13c2\\u13e9\\u13af\": 15717,\n    \"\\u2581\\u13a6\\u13c4\\u13aa\\u13a2\": 15718,\n    \"\\u13df\\u13b6\\u13d2\\u13b8\": 15719,\n    \"\\u2581\\u13ed\\u13a9\\u13ce\\u13a2\": 15720,\n    \"\\u2581\\u13e3\\u13b5\\u13c2\\u13a9\\u13db\": 15721,\n    \"\\u13ac\\u13e9\\u13aa\\u13c1\\u13b6\\u13af\\u13ce\\u13b8\\u13a9\": 15722,\n    \"\\u2581\\u13f2\\u13e4\\u13be\": 15723,\n    \"\\u2581\\u13e7\\u13c2\\u13c4\": 15724,\n    \"\\u2581\\u13a8\\u13be\\u13cf\": 15725,\n    \"\\u2581\\u13db\\u13c7\": 15726,\n    \"\\u2581\\u13af\\u13ef\\u13cf\\u13d4\\u13db\": 15727,\n    \"\\u13b3\\u13d7\\u13d9\\u13ae\\u13a2\": 15728,\n    \"\\u13db\\u13db\\u13ae\\u13b8\\u13c1\": 15729,\n    \"\\u13c2\\u13d0\\u13a2\": 15730,\n    \"\\u2581\\u13e7\\u13c1\\u13cd\\u13a8\\u13ae\\u13a2\": 15731,\n    \"\\u2581\\u13ed\\u13b5\\u13d2\": 15732,\n    \"\\u2581\\u13a6\\u13a7\\u13b2\\u13a2\": 15733,\n    \"\\u13cd\\u13d3\\u13f1\\u13d7\": 15734,\n    \"\\u2581\\u13a4\\u13a9\\u13d0\\u13c5\": 15735,\n    \"\\u13cd\\u13d3\\u13c1\\u13b8\\u13a9\": 15736,\n    \"\\u2581\\u13da\\u13c2\\u13e1\": 15737,\n    \"\\u13a6\\u13b5\\u13d2\": 15738,\n    \"\\u2581\\u13d7\\u13ac\\u13ed\\u13aa\": 15739,\n    \"\\u13b9\\u13de\": 15740,\n    \"\\u13d3\\u13d9\\u13b3\\u13cd\\u13d7\\u13cd\": 15741,\n    \"\\u2581\\u13a4\\u13d5\\u13c3\\u13c5\": 15742,\n    \"\\u2581\\u13a6\\u13c4\\u13b3\\u13e5\": 15743,\n    \"\\u13d7\\u13d2\\u13b2\\u13cd\\u13a6\": 15744,\n    \"\\u13a6\\u13c1\\u13b2\\u13be\": 15745,\n    \"\\u2581\\u13a4\\u13c5\\u13e9\\u13c1\\u13a2\": 15746,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13db\\u13c1\\u13ad\": 15747,\n    \"\\u13a9\\u13dd\\u13c5\": 15748,\n    \"\\u2581\\u13eb\\u13d5\\u13d3\": 15749,\n    \"\\u13c6\\u13f2\\u13d7\": 15750,\n    \"\\u13e3\\u13c5\\u13d6\\u13cd\\u13d7\": 15751,\n    \"\\u2581\\u13a0\\u13a9\\u13ef\\u13a5\\u13a2\": 15752,\n    \"\\u2581\\u13a4\\u13be\\u13e6\\u13db\": 15753,\n    \"\\u13d0\\u13af\\u13cd\\u13d7\": 15754,\n    \"\\u2581\\u13e7\\u13ec\\u13d5\\u13cd\\u13d7\": 15755,\n    \"\\u13cf\\u13cd\\u13a8\\u13a2\": 15756,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13d3\\u13cd\\u13d7\": 15757,\n    \"\\u2581\\u13a0\\u13a6\\u13cc\\u13ef\\u13cd\\u13d9\\u13d7\": 15758,\n    \"\\u13d8\\u13dd\": 15759,\n    \"\\u2581\\u13a0\\u13cb\\u13d4\\u13c5\\u13a9\": 15760,\n    \"\\u2581\\u13d7\\u13a6\\u13d9\\u13a8\\u13a2\": 15761,\n    \"\\u13cd\\u13da\\u13de\": 15762,\n    \"\\u2581\\u13a4\\u13c2\\u13a8\\u13db\": 15763,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13c6\\u13d7\\u13cd\\u13ac\\u13a2\": 15764,\n    \"\\u2581\\u13a2\\u13e5\\u13be\\u13f0\\u13cd\\u13ac\\u13a2\": 15765,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13b7\\u13e4\\u13b4\": 15766,\n    \"\\u2581\\u13e3\\u13da\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 15767,\n    \"\\u2581\\u13d3\\u13e8\\u13cd\\u13d5\": 15768,\n    \"\\u13b7\\u13e8\\u13be\": 15769,\n    \"\\u2581\\u13e7\\u13f2\\u13cf\\u13cd\\u13a8\\u13a2\": 15770,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\\u13f2\\u13af\\u13b2\": 15771,\n    \"\\u2581\\u13a8\\u13a6\\u13d9\": 15772,\n    \"\\u2581\\u13a0\\u13c2\\u13a8\\u13d5\": 15773,\n    \"\\u13ac\\u13cd\\u13c9\": 15774,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13b5\\u13aa\\u13ad\": 15775,\n    \"\\u2581\\u13a0\\u13c9\\u13ea\\u13b3\\u13c5\\u13af\": 15776,\n    \"\\u2581\\u13e8\\u13e3\": 15777,\n    \"\\u13ac\\u13e9\\u13b7\\u13e4\\u13d7\\u13f1\": 15778,\n    \"\\u13db\\u13c1\\u13b8\\u13d7\": 15779,\n    \"\\u2581\\u13c5\\u13db\\u13cd\\u13a9\": 15780,\n    \"\\u2581\\u13a5\\u13a9\\u13c1\\u13b8\\u13a2\": 15781,\n    \"\\u13d3\\u13c1\\u13b4\\u13cd\\u13d7\": 15782,\n    \"\\u2581\\u13a0\\u13e5\\u13b3\\u13eb\\u13ce\\u13b2\": 15783,\n    \"\\u2581\\u13cc\\u13a8\": 15784,\n    \"\\u2581\\u13ef\\u13d7\\u13d7\": 15785,\n    \"\\u13c5\\u13aa\\u13eb\\u13cd\\u13d7\": 15786,\n    \"\\u2581\\u13da\\u13ea\\u13b3\\u13d7\\u13d9\": 15787,\n    \"\\u2581\\u13da\\u13c2\\u13a9\\u13cd\\u13d4\\u13c1\": 15788,\n    \"\\u13da\\u13be\\u13d3\\u13b4\\u13bf\": 15789,\n    \"\\u2581\\u13e7\\u13ed\\u13aa\\u13d9\\u13d7\\u13f1\": 15790,\n    \"\\u13e9\\u13be\\u13a6\\u13b6\\u13e4\": 15791,\n    \"\\u13d9\\u13a2\\u13db\": 15792,\n    \"\\u2581\\u13e7\\u13c2\\u13f0\\u13b8\\u13af\": 15793,\n    \"\\u2581\\u13e5\\u13c4\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\": 15794,\n    \"\\u2581\\u13c2\\u13d3\\u13ac\": 15795,\n    \"\\u2581\\u13e3\\u13c5\\u13cf\\u13d9\\u13af\": 15796,\n    \"\\u13a6\\u13d4\\u13b2\\u13a1\": 15797,\n    \"\\u2581\\u13d3\\u13f2\\u13cd\\u13d7\": 15798,\n    \"\\u13d2\\u13c2\\u13a6\": 15799,\n    \"\\u13a4\\u13d7\\u13db\\u13b2\": 15800,\n    \"\\u13db\\u13a9\\u13cd\\u13ac\\u13be\": 15801,\n    \"\\u2581\\u13eb\\u13a6\\u13be\\u13c4\\u13aa\\u13a9\": 15802,\n    \"\\u2581\\u13a4\\u13ea\\u13ae\\u13a2\": 15803,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13e9\\u13d5\": 15804,\n    \"\\u2581\\u13f2\\u13a6\\u13da\\u13b5\": 15805,\n    \"\\u2581\\u13a5\\u13a9\\u13c3\\u13c1\\u13b8\": 15806,\n    \"\\u13d7\\u13e5\\u13c2\\u13f1\\u13cd\": 15807,\n    \"\\u2581\\u13e6\\u13c6\": 15808,\n    \"\\u2581\\u13a0\\u13be\\u13c2\\u13a9\\u13cd\\u13ac\": 15809,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13a6\\u13c5\\u13d7\": 15810,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13df\\u13f4\\u13ce\": 15811,\n    \"\\u13c2\\u13f2\\u13ae\\u13b2\": 15812,\n    \"\\u13b5\\u13cf\\u13b2\\u13d2\\u13a9\": 15813,\n    \"\\u2581\\u13a4\\u13e3\\u13b4\\u13db\": 15814,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13a6\": 15815,\n    \"\\u13d3\\u13c1\\u13e3\\u13cd\\u13da\\u13b6\": 15816,\n    \"\\u2581\\u13d7\\u13aa\\u13e2\\u13d2\": 15817,\n    \"\\u13af\\u13ef\\u13cd\\u13aa\": 15818,\n    \"\\u2581\\u13e3\\u13d2\\u13a6\\u13b8\": 15819,\n    \"\\u13e6\\u13b5\": 15820,\n    \"\\u13b3\\u13eb\\u13a9\": 15821,\n    \"\\u2581\\u13ec\\u13b6\\u13d2\": 15822,\n    \"\\u13a2\\u13b5\\u13bb\": 15823,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13d9\\u13b5\": 15824,\n    \"\\u2581\\u13ad\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 15825,\n    \"\\u2581\\u13a0\\u13c2\\u13a1\\u13bc\": 15826,\n    \"\\u13eb\\u13c5\": 15827,\n    \"\\u2581\\u13a2\\u13d1\": 15828,\n    \"\\u2581\\u13da\\u13d3\\u13a8\": 15829,\n    \"\\u13a8\\u13e3\\u13e1\\u13d7\\u13ad\": 15830,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d3\\u13f4\\u13c5\": 15831,\n    \"\\u2581\\u13a4\\u13ec\\u13b4\\u13cd\\u13d7\": 15832,\n    \"\\u2581\\u13da\\u13be\\u13b5\\u13cd\": 15833,\n    \"\\u13c1\\u13e5\\u13ea\\u13cf\": 15834,\n    \"\\u2581\\u13e5\\u13a9\\u13ef\\u13a0\": 15835,\n    \"\\u13e5\\u13c1\\u13e4\\u13b8\\u13a2\": 15836,\n    \"\\u2581\\u13a4\\u13b3\\u13cd\\u13d3\": 15837,\n    \"\\u2581\\u13a0\\u13e8\\u13c9\\u13d7\\u13cd\": 15838,\n    \"\\u13c5\\u13a5\\u13cd\\u13ac\": 15839,\n    \"\\u2581\\u13e3\\u13a6\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\": 15840,\n    \"\\u13ab\\u13d3\\u13b4\\u13cd\\u13ac\\u13a2\": 15841,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13b5\": 15842,\n    \"\\u2581\\u13a4\\u13ea\\u13b2\": 15843,\n    \"\\u13b2\\u13cd\\u13d4\\u13c5\\u13a9\": 15844,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13a3\\u13c5\": 15845,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13a6\\u13c3\\u13cd\": 15846,\n    \"\\u2581\\u13f1\\u13ac\\u13cd\\u13a6\\u13c5\": 15847,\n    \"\\u13d5\\u13d9\\u13b3\\u13db\": 15848,\n    \"\\u2581\\u13f3\\u13db\\u13c5\": 15849,\n    \"\\u13c6\\u13b8\\u13db\": 15850,\n    \"\\u2581\\u13d5\\u13a4\\u13ea\\u13a7\": 15851,\n    \"\\u13aa\\u13e2\\u13be\\u13c1\\u13b4\\u13a2\": 15852,\n    \"\\u13ef\\u13c2\\u13cf\\u13c1\\u13b8\": 15853,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 15854,\n    \"\\u2581\\u13e5\\u13d7\\u13b8\\u13c9\\u13d7\": 15855,\n    \"\\u2581\\u13ac\\u13e9\\u13c4\\u13aa\\u13eb\": 15856,\n    \"\\u2581\\u13a2\\u13e6\\u13db\": 15857,\n    \"\\u13d5\\u13a9\\u13b3\\u13c1\\u13b8\": 15858,\n    \"\\u13cc\\u13cc\": 15859,\n    \"\\u13d3\\u13c2\\u13cf\\u13be\": 15860,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d9\": 15861,\n    \"\\u13ce\\u13b2\\u13be\": 15862,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13ab\\u13f4\\u13d3\": 15863,\n    \"\\u2581\\u13a0\\u13ef\\u13a1\": 15864,\n    \"\\u13e9\\u13af\\u13cf\": 15865,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13af\": 15866,\n    \"\\u13d3\\u13b5\\u13d3\\u13cd\\u13d7\\u13ad\": 15867,\n    \"\\u2581\\u13d9\\u13db\\u13d9\": 15868,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13da\\u13b6\\u13d4\": 15869,\n    \"\\u13be\\u13db\\u13cd\\u13a9\": 15870,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13a6\": 15871,\n    \"\\u2581\\u13e3\\u13d5\\u13a6\": 15872,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13ce\\u13b4\\u13a2\": 15873,\n    \"\\u2581\\u13ac\\u13c6\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\": 15874,\n    \"\\u13d7\\u13e5\\u13a6\\u13d8\\u13ef\": 15875,\n    \"\\u2581\\u13c4\\u13d3\\u13b5\": 15876,\n    \"\\u2581\\u13d7\\u13d3\\u13b5\\u13ce\": 15877,\n    \"\\u2581\\u13d3\\u13c2\\u13d9\\u13ac\\u13a9\": 15878,\n    \"\\u2581\\u13c2\\u13a4\\u13ea\\u13ce\\u13a2\": 15879,\n    \"\\u13ec\\u13c1\\u13d4\\u13c5\\u13a9\": 15880,\n    \"\\u2581\\u13a2\\u13f3\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 15881,\n    \"\\u2581\\u13d9\\u13cd\": 15882,\n    \"\\u2581\\u13f1\\u13ac\\u13f3\": 15883,\n    \"\\u2581\\u13a0\\u13d3\\u13ec\\u13cd\\u13d7\": 15884,\n    \"\\u2581\\u13a2\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\\u13b2\\u13a9\": 15885,\n    \"\\u2581\\u13a2\\u13e8\\u13c3\\u13c1\": 15886,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\\u13a9\": 15887,\n    \"\\u13a6\\u13e5\\u13ef\\u13e2\\u13d4\": 15888,\n    \"\\u2581\\u13a4\\u13db\\u13db\\u13a9\": 15889,\n    \"\\u2581\\u13ef\\u13db\\u13a6\": 15890,\n    \"\\u2581\\u13c2\\u13d3\\u13cb\\u13c1\\u13b8\": 15891,\n    \"\\u2581\\u13d7\\u13a6\\u13c6\": 15892,\n    \"\\u13d3\\u13c2\\u13cd\\u13ab\\u13d3\\u13db\": 15893,\n    \"\\u2581\\u13a2\\u13e8\\u13c3\\u13c1\\u13b8\\u13a2\": 15894,\n    \"\\u2581\\u13d5\\u13af\\u13f4\": 15895,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\\u13b2\": 15896,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13c5\\u13e5\\u13d9\\u13b8\\u13a2\": 15897,\n    \"\\u13ef\\u13db\\u13a5\": 15898,\n    \"\\u2581\\u13c2\\u13e8\\u13ea\": 15899,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13e4\\u13a2\": 15900,\n    \"\\u2581\\u13e7\\u13be\\u13da\\u13b5\\u13cd\\u13aa\": 15901,\n    \"\\u2581\\u13d7\\u13c2\\u13c5\\u13d7\": 15902,\n    \"\\u2581\\u13a4\\u13d1\\u13b6\": 15903,\n    \"\\u13c2\\u13c5\\u13aa\\u13a2\": 15904,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d6\\u13b8\\u13c5\\u13a2\": 15905,\n    \"\\u13b5\\u13ec\\u13e4\\u13a2\": 15906,\n    \"\\u2581\\u13f3\\u13ec\\u13e2\\u13c1\": 15907,\n    \"\\u2581\\u13a0\\u13a9\\u13b5\\u13f2\\u13ac\\u13a2\": 15908,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13ae\": 15909,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13b8\\u13af\": 15910,\n    \"\\u2581\\u13e7\\u13ed\\u13aa\\u13d3\\u13c1\": 15911,\n    \"\\u2581\\u13ed\\u13be\\u13d3\\u13dd\": 15912,\n    \"\\u2581\\u13c2\\u13e8\\u13ea\\u13ce\\u13b8\\u13a2\": 15913,\n    \"\\u2581\\u13d7\\u13a6\\u13d9\": 15914,\n    \"\\u2581\\u13d9\\u13d3\\u13cd\": 15915,\n    \"\\u2581\\u13e4\\u13aa\": 15916,\n    \"\\u13aa\\u13b2\\u13ad\": 15917,\n    \"\\u2581\\u13d7\\u13a8\\u13f4\": 15918,\n    \"\\u13be\\u13cd\\u13a9\\u13ef\": 15919,\n    \"\\u2581\\u13eb\\u13a6\\u13e5\\u13b7\\u13e4\\u13b8\": 15920,\n    \"\\u2581\\u13a0\\u13c3\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 15921,\n    \"\\u2581\\u13c2\\u13a8\\u13ac\\u13c1\\u13b8\\u13a2\": 15922,\n    \"\\u2581\\u13da\\u13eb\\u13de\\u13eb\\u13d2\\u13a2\": 15923,\n    \"\\u13cd\\u13ab\\u13d3\\u13d5\\u13a2\": 15924,\n    \"\\u2581\\u13e9\\u13c2\\u13a6\\u13db\\u13a2\": 15925,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13d8\\u13c3\\u13b8\": 15926,\n    \"\\u2581\\u13eb\\u13da\\u13f3\\u13aa\\u13db\\u13a2\": 15927,\n    \"\\u2581\\u13a0\\u13a9\\u13aa\\u13c1\\u13b8\\u13a2\": 15928,\n    \"\\u2581\\u13a4\\u13c5\\u13cd\\u13a6\\u13b4\\u13a2\": 15929,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c1\\u13a2\": 15930,\n    \"\\u2581\\u13da\\u13c2\\u13a7\\u13b2\\u13a2\": 15931,\n    \"\\u13a3\\u13cd\\u13aa\\u13a2\": 15932,\n    \"\\u2581\\u13d5\\u13ab\\u13aa\\u13d7\\u13cd\\u13aa\": 15933,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\\u13a2\": 15934,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13ce\\u13b4\\u13a2\": 15935,\n    \"\\u2581\\u13a2\\u13ac\\u13d9\\u13d7\": 15936,\n    \"\\u13d4\\u13c5\\u13d2\\u13a2\": 15937,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13db\\u13a2\": 15938,\n    \"\\u13be\\u13d3\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13d3\": 15939,\n    \"\\u2581\\u13f3\\u13c2\\u13aa\\u13ae\\u13a2\": 15940,\n    \"\\u2581\\u13da\\u13be\\u13b5\\u13aa\\u13c1\\u13b4\": 15941,\n    \"\\u2581\\u13c5\\u13e9\\u13cd\\u13d5\\u13a2\": 15942,\n    \"\\u2581\\u13c2\\u13a6\\u13e5\\u13f4\\u13c1\\u13b8\\u13a2\": 15943,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d3\": 15944,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\": 15945,\n    \"\\u2581\\u13eb\\u13d3\\u13ac\": 15946,\n    \"\\u2581\\u13f1\\u13ac\\u13d7\": 15947,\n    \"\\u13b5\\u13c2\\u13aa\\u13cd\\u13ac\\u13a2\": 15948,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\\u13a2\": 15949,\n    \"\\u13f1\\u13b5\\u13d0\": 15950,\n    \"\\u2581\\u13a4\\u13db\\u13c5\\u13a2\\u13cd\\u13db\": 15951,\n    \"\\u2581\\u13da\\u13d3\\u13c2\\u13b8\\u13e4\\u13a2\": 15952,\n    \"\\u2581\\u13f1\\u13d9\\u13ac\\u13be\": 15953,\n    \"\\u2581\\u13e8\\u13d3\\u13e5\\u13c1\": 15954,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\\u13ac\\u13a2\": 15955,\n    \"\\u13ef\\u13b6\\u13d8\": 15956,\n    \"\\u13a0\\u13d0\": 15957,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13b2\\u13a2\": 15958,\n    \"\\u2581\\u13a2\\u13d9\\u13bb\\u13f1\": 15959,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d4\\u13ae\\u13a2\": 15960,\n    \"\\u2581\\u13e5\\u13ef\\u13db\\u13a6\\u13c1\\u13d7\": 15961,\n    \"\\u13ac\\u13e9\\u13e9\\u13db\\u13b2\\u13c3\": 15962,\n    \"\\u2581\\u13da\\u13be\\u13da\\u13eb\\u13cd\\u13db\": 15963,\n    \"\\u2581\\u13ce\\u13b3\\u13bb\": 15964,\n    \"\\u2581\\u13a2\\u13e8\\u13ec\\u13c1\\u13d4\\u13c5\\u13a2\": 15965,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d9\\u13d7\": 15966,\n    \"\\u2581\\u13a0\\u13a8\\u13b3\\u13d7\\u13cd\": 15967,\n    \"\\u13b3\\u13c1\\u13b8\\u13a9\": 15968,\n    \"\\u2581\\u13d5\\u13aa\\u13ce\\u13b2\": 15969,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\\u13db\\u13c5\": 15970,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13c1\\u13b4\\u13a2\": 15971,\n    \"\\u2581\\u13a2\\u13e8\\u13d3\": 15972,\n    \"\\u2581\\u13d3\\u13ad\\u13e6\": 15973,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13b5\": 15974,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 15975,\n    \"\\u2581\\u13a0\\u13b4\\u13c2\\u13d9\\u13b2\": 15976,\n    \"\\u2581\\u13f1\\u13e4\\u13b5\": 15977,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13f2\": 15978,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13ce\\u13d7\\u13f3\": 15979,\n    \"\\u2581\\u13da\\u13c2\\u13c2\\u13f4\\u13ae\\u13a2\": 15980,\n    \"\\u13d4\\u13c3\\u13af\\u13cd\\u13d4\": 15981,\n    \"\\u2581\\u13da\\u13c2\\u13d2\\u13be\": 15982,\n    \"\\u2581\\u13f1\\u13da\\u13a7\": 15983,\n    \"\\u2581\\u13a4\\u13c1\\u13d4\\u13c5\\u13af\": 15984,\n    \"\\u2581\\u13d3\\u13a7\\u13be\\u13e9\\u13d7\": 15985,\n    \"\\u2581\\u13a0\\u13aa\\u13b2\\u13cd\\u13d9\\u13d7\": 15986,\n    \"\\u2581\\u13a6\\u13f2\\u13df\\u13a8\\u13c9\": 15987,\n    \"\\u13ac\\u13c2\\u13cd\\u13d7\\u13cd\\u13a8\": 15988,\n    \"\\u2581\\u13f1\\u13d3\\u13be\\u13d5\\u13cd\\u13aa\": 15989,\n    \"\\u13f2\\u13cd\\u13d3\\u13d7\": 15990,\n    \"\\u13d3\\u13f1\\u13ad\": 15991,\n    \"\\u2581\\u13a4\\u13f4\\u13d4\\u13c2\\u13b8\": 15992,\n    \"\\u2581\\u13a4\\u13e9\\u13e5\": 15993,\n    \"\\u2581\\u13e9\\u13c1\\u13d9\\u13b2\": 15994,\n    \"\\u2581\\u13c5\\u13db\\u13c5\": 15995,\n    \"\\u2581\\u13f3\\u13eb\\u13da\": 15996,\n    \"\\u13d3\\u13ac\\u13ef\\u13db\\u13c1\\u13b5\": 15997,\n    \"\\u2581\\u13a4\\u13ec\\u13e5\": 15998,\n    \"\\u13a6\\u13d3\\u13c2\\u13b8\\u13e8\\u13a9\": 15999,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13c2\\u13aa\\u13db\": 16000,\n    \"\\u2581\\u13f1\\u13c5\\u13e9\\u13cd\\u13d5\": 16001,\n    \"\\u2581\\u13a6\\u13c5\\u13ec\\u13cd\\u13a8\": 16002,\n    \"\\u2581\\u13eb\\u13a6\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 16003,\n    \"\\u2581\\u13f1\\u13e8\\u13c5\": 16004,\n    \"\\u2581\\u13d7\\u13a7\\u13c5\": 16005,\n    \"\\u2581\\u13c4\\u13da\": 16006,\n    \"\\u13d3\\u13cc\\u13c6\\u13b4\\u13cd\": 16007,\n    \"\\u13ec\\u13b7\\u13e9\\u13db\": 16008,\n    \"\\u2581\\u13db\\u13cd\\u13c6\": 16009,\n    \"\\u2581\\u13a4\\u13c3\\u13ad\\u13dd\": 16010,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13d7\\u13f1\": 16011,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13ac\\u13ce\\u13b2\\u13a2\": 16012,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13a6\\u13b8\\u13db\": 16013,\n    \"\\u2581\\u13d5\\u13a0\\u13c1\\u13b2\": 16014,\n    \"\\u2581\\u13a0\\u13d3\\u13af\\u13cd\\u13d7\\u13f1\": 16015,\n    \"\\u13e2\\u13be\\u13cf\": 16016,\n    \"\\u13a2\\u13cd\\u13d3\": 16017,\n    \"\\u13d1\\u13b5\\u13aa\\u13ac\\u13be\": 16018,\n    \"\\u2581\\u13a4\\u13cf\\u13d4\\u13db\": 16019,\n    \"\\u13b3\\u13d7\\u13cd\\u13aa\": 16020,\n    \"\\u13d5\\u13b2\\u13a2\": 16021,\n    \"\\u2581\\u13a2\\u13cd\\u13db\\u13d4\\u13f2\\u13ce\": 16022,\n    \"\\u2581\\u13a2\\u13d7\\u13ac\\u13c1\\u13af\": 16023,\n    \"\\u2581\\u13da\\u13b8\\u13c9\\u13d7\\u13f3\": 16024,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\\u13cd\\u13d7\": 16025,\n    \"\\u2581\\u13eb\\u13c2\\u13d7\": 16026,\n    \"\\u2581\\u13a4\\u13f2\\u13cd\\u13d9\\u13d7\\u13f1\": 16027,\n    \"\\u13e9\\u13ad\": 16028,\n    \"\\u13cd\\u13aa\\u13c2\\u13b5\": 16029,\n    \"\\u13cc\\u13b3\\u13d7\\u13cd\\u13aa\": 16030,\n    \"\\u13be\\u13d3\\u13d7\\u13eb\\u13ce\\u13b8\": 16031,\n    \"\\u13c4\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\\u13a2\": 16032,\n    \"\\u13ac\\u13eb\\u13f3\\u13d4\\u13c5\": 16033,\n    \"\\u2581\\u13a1\\u13e7\\u13d3\\u13b4\": 16034,\n    \"\\u2581\\u13af\\u13f2\\u13a2\\u13f3\\u13b2\": 16035,\n    \"\\u13c5\\u13aa\\u13a3\\u13d2\": 16036,\n    \"\\u13b5\\u13ce\\u13d7\\u13f1\": 16037,\n    \"\\u2581\\u13e7\\u13d3\\u13c2\\u13b8\\u13e8\\u13af\": 16038,\n    \"\\u2581\\u13e3\\u13a6\\u13cc\\u13ef\\u13cd\": 16039,\n    \"\\u13d9\\u13b5\\u13e8\\u13a2\": 16040,\n    \"\\u13b5\\u13c3\\u13a1\\u13d4\": 16041,\n    \"\\u2581\\u13da\\u13be\\u13a6\\u13b4\\u13c5\\u13b2\": 16042,\n    \"\\u2581\\u13a0\\u13cd\\u13a9\\u13e5\\u13cd\": 16043,\n    \"\\u2581\\u13a0\\u13f3\\u13a2\": 16044,\n    \"\\u2581\\u13a6\\u13c3\\u13aa\\u13a2\": 16045,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c5\\u13d6\\u13cd\": 16046,\n    \"\\u13a6\\u13b5\\u13cd\\u13d9\": 16047,\n    \"\\u2581\\u13eb\\u13d7\\u13e3\": 16048,\n    \"\\u13be\\u13a6\\u13d4\\u13c5\\u13ce\": 16049,\n    \"\\u13cd\\u13d3\\u13c1\\u13b4\\u13a2\": 16050,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13cd\\u13da\\u13c1\\u13d7\": 16051,\n    \"\\u2581\\u13ac\\u13e9\\u13b8\\u13b8\": 16052,\n    \"\\u2581\\u13e3\\u13d5\\u13b8\": 16053,\n    \"\\u2581\\u13e7\\u13ef\\u13c5\\u13d7\": 16054,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13b5\\u13aa\\u13c1\": 16055,\n    \"\\u2581\\u13eb\\u13cd\\u13a9\\u13ef\\u13c5\": 16056,\n    \"\\u13b6\\u13e4\": 16057,\n    \"\\u2581\\u13a0\\u13cd\\u13d5\\u13b8\\u13d7\\u13f1\": 16058,\n    \"\\u2581\\u13a4\\u13d5\\u13b0\": 16059,\n    \"\\u13e5\\u13c3\\u13af\\u13cd\\u13d9\\u13d7\": 16060,\n    \"\\u2581\\u13f1\\u13c4\\u13be\\u13b5\\u13cd\\u13d4\": 16061,\n    \"\\u2581\\u13a2\\u13e3\\u13a6\\u13d4\\u13b2\\u13be\": 16062,\n    \"\\u2581\\u13a0\\u13c9\\u13b8\\u13a2\": 16063,\n    \"\\u13be\\u13c6\\u13b5\\u13cd\\u13d3\\u13cf\": 16064,\n    \"\\u2581\\u13a6\\u13dd\": 16065,\n    \"\\u2581\\u13a4\\u13d3\\u13cd\\u13a6\": 16066,\n    \"\\u13c9\\u13e2\\u13c5\": 16067,\n    \"\\u2581\\u13e4\\u13e3\\u13c1\\u13b6\\u13d9\\u13d7\": 16068,\n    \"\\u2581\\u13d3\\u13a6\\u13b6\\u13d0\\u13c2\": 16069,\n    \"\\u13e3\\u13d3\\u13a8\\u13f3\\u13d2\": 16070,\n    \"\\u2581\\u13a0\\u13a6\\u13c1\\u13b3\\u13c5\\u13af\": 16071,\n    \"\\u2581\\u13d3\\u13e8\\u13ef\\u13ab\\u13f4\": 16072,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 16073,\n    \"\\u2581\\u13a4\\u13b6\\u13aa\\u13d7\": 16074,\n    \"\\u13a8\\u13e2\\u13c5\\u13ad\": 16075,\n    \"\\u2581\\u13a4\\u13ed\\u13cc\\u13a5\": 16076,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 16077,\n    \"\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a9\": 16078,\n    \"\\u2581\\u13a5\\u13a9\\u13d9\\u13b5\": 16079,\n    \"\\u13d9\\u13ce\\u13a2\": 16080,\n    \"\\u2581\\u13aa\\u13b5\\u13ac\\u13a9\": 16081,\n    \"\\u2581\\u13a4\\u13a8\\u13f3\\u13ce\": 16082,\n    \"\\u13d9\\u13d1\\u13b5\": 16083,\n    \"\\u13e5\\u13ef\\u13db\\u13a6\\u13c1\\u13b8\": 16084,\n    \"\\u2581\\u13f1\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 16085,\n    \"\\u13db\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 16086,\n    \"\\u2581\\u13d3\\u13be\\u13cd\\u13aa\": 16087,\n    \"\\u2581\\u13d5\\u13a6\\u13a6\\u13c2\": 16088,\n    \"\\u13d9\\u13d8\": 16089,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\": 16090,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a6\\u13a9\": 16091,\n    \"\\u2581\\u13f1\\u13d5\\u13af\": 16092,\n    \"\\u2581\\u13cd\\u13cb\\u13c2\": 16093,\n    \"\\u13e3\\u13d2\\u13a9\": 16094,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13cd\\u13d7\": 16095,\n    \"\\u13c5\\u13d4\\u13e9\\u13d7\\u13d2\": 16096,\n    \"\\u2581\\u13a2\\u13ef\\u13a6\\u13db\\u13c1\": 16097,\n    \"\\u2581\\u13ac\\u13d4\": 16098,\n    \"\\u2581\\u13e7\\u13d3\\u13c5\\u13ce\": 16099,\n    \"\\u2581\\u13a0\\u13f2\\u13b1\\u13d2\\u13ad\": 16100,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13c5\\u13a9\": 16101,\n    \"\\u2581\\u13d3\\u13e1\\u13d7\\u13ad\": 16102,\n    \"\\u13e5\\u13cd\\u13a6\\u13a6\": 16103,\n    \"\\u2581\\u13ef\\u13be\\u13d3\\u13c5\\u13d6\": 16104,\n    \"\\u2581\\u13a8\\u13e5\\u13be\\u13c4\\u13aa\\u13eb\": 16105,\n    \"\\u2581\\u13d3\\u13c2\\u13f4\\u13a8\": 16106,\n    \"\\u13d3\\u13c4\\u13aa\\u13d3\\u13c1\": 16107,\n    \"\\u13d3\\u13c1\\u13b0\": 16108,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13f1\\u13db\\u13a9\": 16109,\n    \"\\u13ab\\u13db\": 16110,\n    \"\\u2581\\u13d7\\u13ef\\u13a2\": 16111,\n    \"\\u13f2\\u13af\\u13cd\\u13d9\\u13d7\": 16112,\n    \"\\u2581\\u13ed\\u13c1\\u13d9\\u13b4\": 16113,\n    \"\\u2581\\u13d7\\u13a6\\u13d3\\u13b7\\u13a9\\u13cd\": 16114,\n    \"\\u2581\\u13a4\\u13d1\\u13b5\\u13aa\\u13e8\\u13a9\": 16115,\n    \"\\u13c8\\u13ac\": 16116,\n    \"\\u13c9\\u13af\\u13f3\\u13d3\\u13c1\\u13af\": 16117,\n    \"\\u2581\\u13a0\\u13cc\\u13af\": 16118,\n    \"\\u2581\\u13e5\\u13b8\\u13c9\\u13d9\\u13d7\": 16119,\n    \"\\u13e5\\u13be\\u13f0\\u13cd\\u13ac\\u13a2\": 16120,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13b5\\u13ad\": 16121,\n    \"\\u2581\\u13a0\\u13c6\\u13cd\\u13a6\": 16122,\n    \"\\u2581\\u13d5\\u13e5\\u13f4\": 16123,\n    \"\\u13da\\u13cf\": 16124,\n    \"\\u13ce\\u13d2\\u13af\": 16125,\n    \"\\u2581\\u13e5\\u13e8\\u13f2\\u13ea\\u13b3\": 16126,\n    \"\\u2581\\u13da\\u13d2\\u13c5\": 16127,\n    \"\\u13a4\\u13d9\\u13af\\u13f3\\u13d7\": 16128,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13d7\\u13f1\": 16129,\n    \"\\u13be\\u13c5\\u13c5\\u13a9\": 16130,\n    \"\\u13a8\\u13b6\\u13b0\": 16131,\n    \"\\u13a9\\u13f0\\u13a2\": 16132,\n    \"\\u2581\\u13f3\\u13c4\": 16133,\n    \"\\u13c3\\u13ac\\u13c1\\u13b8\": 16134,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 16135,\n    \"\\u13c2\\u13da\\u13a9\": 16136,\n    \"\\u13ef\\u13d3\\u13c2\\u13b8\\u13a6\": 16137,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13da\\u13a9\": 16138,\n    \"\\u13e0\\u13af\\u13cd\\u13db\\u13a2\": 16139,\n    \"\\u2581\\u13a4\\u13c2\\u13b6\\u13ce\\u13a2\": 16140,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13db\\u13d2\\u13a9\": 16141,\n    \"\\u2581\\u13e5\\u13d3\\u13e5\\u13f2\": 16142,\n    \"\\u2581\\u13ed\\u13e3\\u13c5\\u13a9\": 16143,\n    \"\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\\u13af\": 16144,\n    \"\\u2581\\u13a4\\u13be\\u13e4\\u13b8\": 16145,\n    \"\\u2581\\u13a0\\u13cb\\u13d7\\u13cd\\u13ac\": 16146,\n    \"\\u2581\\u13a8\\u13b3\\u13c2\": 16147,\n    \"\\u2581\\u13a1\\u13d2\\u13ad\": 16148,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13d6\\u13af\": 16149,\n    \"\\u2581\\u13ed\\u13d3\\u13a9\\u13c5\\u13ce\": 16150,\n    \"\\u13e3\\u13a7\\u13c3\\u13d7\\u13f1\": 16151,\n    \"\\u2581\\u13a2\\u13e8\\u13cd\\u13d7\\u13f0\": 16152,\n    \"\\u2581\\u13a2\\u13a9\\u13d9\": 16153,\n    \"\\u13cd\\u13d9\\u13d7\\u13ad\": 16154,\n    \"\\u13d3\\u13b5\\u13f1\": 16155,\n    \"\\u2581\\u13d5\\u13e5\\u13ef\\u13a6\\u13c5\": 16156,\n    \"\\u2581\\u13b2\\u13d4\\u13c5\": 16157,\n    \"\\u13da\\u13d3\\u13b4\\u13cd\": 16158,\n    \"\\u2581\\u13ec\\u13a9\\u13b6\\u13af\\u13cd\\u13d7\": 16159,\n    \"\\u13a9\\u13ef\\u13c5\\u13a1\\u13b5\": 16160,\n    \"\\u2581\\u13d9\\u13e5\\u13cd\\u13d7\\u13f0\\u13d7\": 16161,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13b2\\u13a2\": 16162,\n    \"\\u2581\\u13d9\\u13d3\\u13c2\": 16163,\n    \"\\u13ad\\u13c1\\u13cd\\u13d7\": 16164,\n    \"\\u13d4\\u13c5\\u13c5\\u13a9\": 16165,\n    \"\\u13c5\\u13cd\\u13d4\\u13c5\\u13a2\": 16166,\n    \"\\u2581\\u13a4\\u13d3\\u13b8\\u13a2\": 16167,\n    \"\\u2581\\u13f1\\u13c4\\u13b5\\u13cd\\u13d4\\u13c1\\u13a2\": 16168,\n    \"\\u2581\\u13e3\\u13cd\\u13c6\\u13c2\\u13aa\\u13db\": 16169,\n    \"\\u13ef\\u13ea\\u13a2\\u13cd\\u13d4\\u13c5\": 16170,\n    \"\\u2581\\u13e5\\u13ec\\u13c2\\u13cd\\u13ac\\u13a2\": 16171,\n    \"\\u2581\\u13c2\\u13e3\\u13d3\\u13a8\\u13f3\\u13d2\\u13a2\": 16172,\n    \"\\u2581\\u13c2\\u13d3\\u13d9\\u13d3\\u13c8\\u13d2\\u13a2\": 16173,\n    \"\\u13cd\\u13da\\u13c5\": 16174,\n    \"\\u2581\\u13da\\u13c4\\u13e9\\u13a5\\u13a2\": 16175,\n    \"\\u2581\\u13be\\u13ac\\u13c1\\u13b4\\u13a2\": 16176,\n    \"\\u2581\\u13a4\\u13c1\\u13d9\\u13b8\\u13a9\": 16177,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13c1\\u13a2\": 16178,\n    \"\\u2581\\u13a0\\u13a9\\u13c6\": 16179,\n    \"\\u13e3\\u13c1\\u13b8\\u13d4\\u13c5\\u13af\\u13cd\\u13aa\": 16180,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\\u13f1\": 16181,\n    \"\\u2581\\u13be\\u13a9\\u13ea\\u13d2\\u13a2\": 16182,\n    \"\\u2581\\u13a0\\u13d9\\u13e9\\u13d7\\u13cd\\u13d7\": 16183,\n    \"\\u2581\\u13af\\u13cd\\u13ab\\u13d5\\u13cd\": 16184,\n    \"\\u13d4\\u13db\\u13c1\\u13b5\": 16185,\n    \"\\u2581\\u13e9\\u13be\\u13a6\\u13b3\\u13af\\u13f3\": 16186,\n    \"\\u13b4\\u13d2\\u13ad\": 16187,\n    \"\\u13d5\\u13b5\\u13db\": 16188,\n    \"\\u2581\\u13d7\\u13d4\\u13b3\": 16189,\n    \"\\u2581\\u13d5\\u13aa\\u13e2\\u13d2\\u13a2\": 16190,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\\u13a2\": 16191,\n    \"\\u2581\\u13af\\u13c3\\u13af\": 16192,\n    \"\\u2581\\u13c2\\u13da\\u13cd\\u13d5\\u13a2\": 16193,\n    \"\\u2581\\u13a4\\u13c2\\u13e5\\u13b8\\u13a2\": 16194,\n    \"\\u13c1\\u13b7\\u13a9\\u13a1\\u13b4\\u13a2\": 16195,\n    \"\\u2581\\u13bb\\u13be\": 16196,\n    \"\\u2581\\u13d9\\u13db\\u13b5\": 16197,\n    \"\\u2581\\u13c4\\u13ec\\u13af\\u13f3\": 16198,\n    \"\\u13f2\\u13c5\": 16199,\n    \"\\u2581\\u13d9\\u13a6\\u13b8\": 16200,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13f1\": 16201,\n    \"\\u2581\\u13a6\\u13b5\\u13a1\\u13b5\\u13ac\\u13a2\": 16202,\n    \"\\u2581\\u13f4\\u13e5\": 16203,\n    \"\\u13b5\\u13f0\\u13a2\\u13b6\\u13b8\": 16204,\n    \"\\u2581\\u13ae\\u13d3\\u13d7\": 16205,\n    \"\\u2581\\u13a2\\u13e5\\u13c1\\u13ac\\u13a2\": 16206,\n    \"\\u13a6\\u13b5\\u13cd\\u13d9\\u13ce\": 16207,\n    \"\\u13d7\\u13cd\\u13a6\\u13b3\\u13c5\\u13a9\": 16208,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13e4\\u13c3\": 16209,\n    \"\\u13e3\\u13c5\\u13d3\\u13d5\\u13ae\": 16210,\n    \"\\u2581\\u13e7\\u13e9\\u13c2\": 16211,\n    \"\\u2581\\u13a4\\u13c7\\u13d3\\u13b8\\u13cd\\u13a9\\u13c2\": 16212,\n    \"\\u13cd\\u13da\\u13c1\\u13b0\": 16213,\n    \"\\u2581\\u13a4\\u13c2\\u13d0\\u13d7\": 16214,\n    \"\\u13c4\\u13d4\\u13a9\": 16215,\n    \"\\u2581\\u13a4\\u13c4\\u13e9\\u13a5\\u13a9\": 16216,\n    \"\\u13ef\\u13a9\\u13b7\\u13e8\": 16217,\n    \"\\u13a9\\u13b7\\u13e4\\u13b8\": 16218,\n    \"\\u2581\\u13a3\\u13a6\\u13db\\u13a6\\u13c5\\u13a9\": 16219,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\\u13a9\": 16220,\n    \"\\u2581\\u13a3\\u13e4\\u13d9\\u13b2\": 16221,\n    \"\\u13e5\\u13c2\\u13f4\\u13af\": 16222,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13a9\\u13d0\": 16223,\n    \"\\u13b7\\u13e5\\u13b8\\u13a2\": 16224,\n    \"\\u2581\\u13a0\\u13ef\\u13d6\": 16225,\n    \"\\u2581\\u13e7\\u13a6\\u13e3\": 16226,\n    \"\\u2581\\u13c2\\u13d5\\u13e8\": 16227,\n    \"\\u2581\\u13a4\\u13e3\\u13c1\\u13a2\": 16228,\n    \"\\u2581\\u13f1\\u13c2\\u13e5\\u13ea\\u13ce\": 16229,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\\u13ea\\u13ce\\u13b2\\u13a9\": 16230,\n    \"\\u2581\\u13a4\\u13b7\\u13e5\\u13d7\\u13d2\": 16231,\n    \"\\u13bb\\u13f1\": 16232,\n    \"\\u2581\\u13e5\\u13f2\\u13b5\": 16233,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13df\\u13cc\\u13c5\\u13a9\": 16234,\n    \"\\u2581\\u13a4\\u13d3\\u13cd\\u13db\": 16235,\n    \"\\u13a0\\u13ef\\u13cd\\u13aa\": 16236,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13d8\\u13d7\\u13cd\\u13a8\": 16237,\n    \"\\u2581\\u13f4\\u13ac\\u13db\": 16238,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13af\\u13f4\": 16239,\n    \"\\u13d3\\u13d5\\u13b0\\u13d7\": 16240,\n    \"\\u2581\\u13a4\\u13cd\\u13c8\\u13ef\": 16241,\n    \"\\u13a4\\u13eb\\u13c2\": 16242,\n    \"\\u13c1\\u13c5\\u13ce\\u13a2\": 16243,\n    \"\\u2581\\u13d9\\u13d3\\u13ac\\u13e9\": 16244,\n    \"\\u2581\\u13a0\\u13af\\u13db\": 16245,\n    \"\\u2581\\u13d3\\u13e0\\u13f1\\u13b2\": 16246,\n    \"\\u2581\\u13ec\\u13f1\": 16247,\n    \"\\u13db\\u13d7\\u13cd\\u13ac\\u13a2\": 16248,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13e8\\u13a9\": 16249,\n    \"\\u2581\\u13a1\\u13c9\\u13af\": 16250,\n    \"\\u2581\\u13a0\\u13d3\\u13c4\\u13d6\\u13f2\\u13ae\": 16251,\n    \"\\u2581\\u13eb\\u13af\\u13f3\": 16252,\n    \"\\u2581\\u13c5\\u13e5\": 16253,\n    \"\\u2581\\u13f1\\u13a7\\u13c1\": 16254,\n    \"\\u2581\\u13d3\\u13f1\\u13d9\": 16255,\n    \"\\u13d7\\u13cc\\u13a7\": 16256,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d4\\u13c1\\u13a2\": 16257,\n    \"\\u13c2\\u13b7\\u13e4\\u13d7\": 16258,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d5\\u13cd\\u13d4\\u13c1\": 16259,\n    \"\\u13c2\\u13b3\\u13eb\\u13e6\\u13af\": 16260,\n    \"\\u2581\\u13a0\\u13a6\\u13c5\\u13d9\": 16261,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13cd\\u13aa\": 16262,\n    \"\\u13ef\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d4\\u13c5\": 16263,\n    \"\\u2581\\u13f3\\u13e3\\u13c5\\u13d3\\u13d5\\u13ae\": 16264,\n    \"\\u2581\\u13eb\\u13cd\\u13a9\\u13be\\u13a9\": 16265,\n    \"\\u2581\\u13e5\\u13af\\u13ef\": 16266,\n    \"\\u13d5\\u13ef\\u13d9\\u13d7\\u13cd\\u13ac\": 16267,\n    \"\\u2581\\u13a4\\u13c4\\u13a9\": 16268,\n    \"\\u2581\\u13ed\\u13b7\\u13e4\\u13b8\\u13a9\": 16269,\n    \"\\u2581\\u13d3\\u13c1\\u13b0\\u13a2\": 16270,\n    \"\\u2581\\u13a4\\u13b5\\u13cc\\u13b3\\u13c1\": 16271,\n    \"\\u13a6\\u13d4\\u13b2\\u13cd\\u13d4\\u13c5\": 16272,\n    \"\\u13ef\\u13ea\\u13d0\\u13b8\\u13cd\\u13d7\\u13f1\": 16273,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13d3\\u13b4\": 16274,\n    \"\\u2581\\u13aa\\u13e2\\u13ad\": 16275,\n    \"\\u2581\\u13d3\\u13e5\\u13f3\": 16276,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13b5\\u13cd\\u13a8\\u13a2\": 16277,\n    \"\\u2581\\u13a4\\u13be\\u13ce\\u13b5\\u13d4\\u13c5\": 16278,\n    \"\\u13c4\\u13ec\\u13cd\\u13d9\\u13d7\": 16279,\n    \"\\u2581\\u13eb\\u13da\\u13c2\\u13be\": 16280,\n    \"\\u2581\\u13e7\\u13a8\\u13af\\u13d9\": 16281,\n    \"\\u13b5\\u13cd\\u13d4\\u13c1\\u13ad\": 16282,\n    \"\\u2581\\u13d5\\u13a6\\u13b3\": 16283,\n    \"\\u2581\\u13a6\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13ac\": 16284,\n    \"\\u13c1\\u13b5\\u13cc\\u13d5\": 16285,\n    \"\\u13d5\\u13d2\\u13b2\\u13cd\\u13d7\\u13f1\": 16286,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\\u13cd\": 16287,\n    \"\\u2581\\u13e5\\u13b0\\u13b5\": 16288,\n    \"\\u13c2\\u13d9\\u13b8\\u13a9\": 16289,\n    \"\\u13c3\\u13b1\\u13b6\\u13d7\": 16290,\n    \"\\u2581\\u13a0\\u13d9\\u13b4\\u13b0\\u13cd\\u13ac\": 16291,\n    \"\\u13c5\\u13d4\\u13db\\u13c1\\u13b5\": 16292,\n    \"\\u13b3\\u13cd\\u13d7\\u13f1\": 16293,\n    \"\\u2581\\u13d5\\u13a4\\u13ea\": 16294,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13b5\\u13cd\\u13ac\\u13a2\": 16295,\n    \"\\u13d2\\u13cd\\u13d4\\u13c1\\u13a2\": 16296,\n    \"\\u13be\\u13b4\\u13c2\\u13b4\": 16297,\n    \"\\u13a3\\u13a6\\u13c2\\u13a9\\u13d2\": 16298,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13c2\": 16299,\n    \"\\u13d5\\u13ef\\u13d9\\u13d3\\u13c5\": 16300,\n    \"\\u2581\\u13a0\\u13db\\u13aa\\u13d7\\u13f1\": 16301,\n    \"\\u2581\\u13ac\\u13e9\\u13d8\\u13be\\u13eb\\u13db\\u13ae\": 16302,\n    \"\\u13e6\\u13b8\\u13af\\u13cd\\u13d7\": 16303,\n    \"\\u2581\\u13d7\\u13c2\\u13c5\\u13a6\": 16304,\n    \"\\u2581\\u13d7\\u13a6\\u13e5\\u13ef\\u13e0\\u13a2\\u13cd\": 16305,\n    \"\\u2581\\u13d7\\u13d3\\u13c3\\u13ae\": 16306,\n    \"\\u2581\\u13e5\\u13cd\\u13d3\\u13b5\": 16307,\n    \"\\u2581\\u13e5\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13aa\": 16308,\n    \"\\u13d7\\u13a9\\u13cf\": 16309,\n    \"\\u2581\\u13c2\\u13e8\\u13c1\\u13b8\\u13ad\": 16310,\n    \"\\u2581\\u13a0\\u13cb\\u13a8\\u13eb\\u13cd\": 16311,\n    \"\\u2581\\u13a0\\u13bc\\u13c2\": 16312,\n    \"\\u2581\\u13e7\\u13cd\\u13d4\": 16313,\n    \"\\u13c2\\u13b4\\u13f4\": 16314,\n    \"\\u2581\\u13a0\\u13db\\u13c1\\u13d7\": 16315,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13be\": 16316,\n    \"\\u13c2\\u13df\\u13c5\": 16317,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13b2\": 16318,\n    \"\\u13f0\\u13e3\\u13cd\\u13d7\\u13cd\\u13a8\": 16319,\n    \"\\u2581\\u13a1\\u13d9\\u13a2\\u13f3\\u13c5\": 16320,\n    \"\\u2581\\u13a3\\u13a9\\u13d9\\u13b5\\u13e8\": 16321,\n    \"\\u2581\\u13e5\\u13b7\\u13a9\": 16322,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13c5\": 16323,\n    \"\\u2581\\u13f1\\u13d9\\u13a8\\u13cd\\u13d7\": 16324,\n    \"\\u2581\\u13a6\\u13a8\\u13d7\\u13f3\": 16325,\n    \"\\u2581\\u13e3\\u13ac\\u13cd\\u13aa\\u13b8\": 16326,\n    \"\\u2581\\u13a4\\u13be\\u13d8\": 16327,\n    \"\\u2581\\u13e6\\u13e5\\u13c5\\u13aa\\u13a2\": 16328,\n    \"\\u2581\\u13e3\\u13cd\\u13aa\": 16329,\n    \"\\u2581\\u13a1\\u13b3\\u13d7\\u13a8\": 16330,\n    \"\\u13ed\\u13cd\\u13d8\\u13c5\": 16331,\n    \"\\u2581\\u13a2\\u13d3\\u13b4\\u13c2\\u13d9\\u13b2\": 16332,\n    \"\\u2581\\u13e3\\u13a9\\u13c1\\u13e4\\u13b8\": 16333,\n    \"\\u13db\\u13a6\\u13c1\\u13b5\": 16334,\n    \"\\u13c2\\u13b6\\u13cd\\u13ac\": 16335,\n    \"\\u13a4\\u13c2\\u13cd\\u13a6\\u13e8\": 16336,\n    \"\\u2581\\u13cd\\u13a6\\u13eb\\u13cd\": 16337,\n    \"\\u2581\\u13a4\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\\u13cd\\u13ac\": 16338,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13a2\\u13b2\\u13a9\": 16339,\n    \"\\u13e5\\u13ec\\u13c1\\u13d7\\u13ad\": 16340,\n    \"\\u2581\\u13c4\\u13cd\\u13a6\": 16341,\n    \"\\u13d8\\u13c3\\u13ae\\u13b4\\u13c3\": 16342,\n    \"\\u2581\\u13a4\\u13c1\\u13a2\\u13cd\\u13d4\\u13c5\\u13a9\": 16343,\n    \"\\u13a0\\u13ce\\u13b5\\u13db\\u13cd\": 16344,\n    \"\\u2581\\u13a4\\u13b5\\u13ae\\u13b5\\u13e8\\u13a9\": 16345,\n    \"\\u2581\\u13d7\\u13f4\\u13c8\": 16346,\n    \"\\u2581\\u13a0\\u13a7\\u13d4\\u13b2\": 16347,\n    \"\\u2581\\u13a4\\u13ef\\u13c5\\u13b2\\u13a9\": 16348,\n    \"\\u13e1\\u13c2\": 16349,\n    \"\\u2581\\u13e5\\u13c2\\u13e3\\u13db\\u13c1\": 16350,\n    \"\\u2581\\u13a6\\u13d3\\u13a1\\u13a2\": 16351,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13cd\\u13d4\\u13c5\": 16352,\n    \"\\u13bb\\u13b4\": 16353,\n    \"\\u2581\\u13ac\\u13ec\\u13b5\\u13e4\": 16354,\n    \"\\u2581\\u13a0\\u13be\\u13d4\": 16355,\n    \"\\u13d3\\u13c5\\u13d5\\u13ad\": 16356,\n    \"\\u2581\\u13a4\\u13b7\\u13af\\u13cd\\u13d3\\u13c1\": 16357,\n    \"\\u2581\\u13da\\u13ea\\u13a7\\u13b2\\u13a2\": 16358,\n    \"\\u13a4\\u13ce\\u13d2\": 16359,\n    \"\\u2581\\u13d5\\u13a4\\u13b7\\u13ac\\u13a2\": 16360,\n    \"\\u2581\\u13a6\\u13cd\\u13a9\\u13d3\\u13cd\\u13ac\\u13a2\": 16361,\n    \"\\u2581\\u13d9\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 16362,\n    \"\\u2581\\u13af\\u13c1\\u13ac\\u13a2\": 16363,\n    \"\\u2581\\u13a0\\u13c2\\u13a7\\u13b8\\u13a2\": 16364,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13c5\\u13c1\\u13ae\": 16365,\n    \"\\u2581\\u13a0\\u13e5\\u13c3\\u13c1\\u13b4\\u13a2\": 16366,\n    \"\\u13d3\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13a6\": 16367,\n    \"\\u13ea\\u13f2\\u13b2\\u13cd\\u13a9\": 16368,\n    \"\\u2581\\u13eb\\u13da\\u13a7\\u13be\\u13c1\\u13a2\": 16369,\n    \"\\u2581\\u13af\\u13e2\\u13be\": 16370,\n    \"\\u2581\\u13ac\\u13e9\\u13f2\\u13b1\": 16371,\n    \"\\u2581\\u13d3\\u13e5\\u13b5\": 16372,\n    \"\\u2581\\u13af\\u13f0\\u13b6\": 16373,\n    \"\\u13d5\\u13e5\\u13f2\\u13d2\": 16374,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\": 16375,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 16376,\n    \"\\u2581\\u13d3\\u13b3\": 16377,\n    \"\\u2581\\u13e5\\u13d5\\u13a6\\u13b6\": 16378,\n    \"\\u2581\\u13e7\\u13b6\\u13d2\\u13a2\": 16379,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13f1\": 16380,\n    \"\\u2581\\u13a0\\u13be\\u13db\\u13a9\\u13cd\\u13ac\\u13a2\": 16381,\n    \"\\u13a9\\u13b3\\u13be\\u13b6\": 16382,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d6\\u13a2\": 16383,\n    \"\\u2581\\u13a4\\u13cd\\u13d7\\u13f0\\u13d4\\u13c1\\u13a2\": 16384,\n    \"\\u13d3\\u13d3\\u13c5\\u13df\": 16385,\n    \"\\u13aa\\u13a9\\u13c2\\u13c4\\u13aa\": 16386,\n    \"\\u2581\\u13d5\\u13a6\\u13c5\\u13cd\\u13d3\": 16387,\n    \"\\u2581\\u13f3\\u13c7\": 16388,\n    \"\\u2581\\u13ae\\u13b5\\u13a0\\u13cd\\u13aa\": 16389,\n    \"\\u2581\\u13e7\\u13c3\\u13f0\": 16390,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13ae\\u13b5\\u13ac\\u13a2\": 16391,\n    \"\\u2581\\u13a0\\u13c7\\u13ad\": 16392,\n    \"\\u13a6\\u13b7\\u13e8\\u13ad\": 16393,\n    \"\\u2581\\u13a6\\u13ec\\u13c2\\u13cd\\u13a8\\u13a2\": 16394,\n    \"\\u2581\\u13e5\\u13a8\\u13ad\": 16395,\n    \"\\u13f2\\u13cd\\u13d4\\u13c3\": 16396,\n    \"\\u2581\\u13f1\\u13a8\\u13e5\\u13ce\\u13aa\\u13a9\": 16397,\n    \"\\u2581\\u13a0\\u13f0\\u13b8\\u13ce\\u13a2\": 16398,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13ce\\u13a2\": 16399,\n    \"\\u2581\\u13a4\\u13c5\\u13cd\\u13a6\\u13dd\": 16400,\n    \"\\u2581\\u13a2\\u13e8\\u13d9\\u13d7\": 16401,\n    \"\\u13d3\\u13d3\\u13f2\\u13af\\u13ce\": 16402,\n    \"\\u13c1\\u13b5\\u13db\": 16403,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d8\": 16404,\n    \"\\u2581\\u13cf\\u13a9\\u13bb\\u13f1\": 16405,\n    \"\\u2581\\u13db\\u13be\\u13a6\": 16406,\n    \"\\u2581\\u13a0\\u13b3\\u13cf\": 16407,\n    \"\\u13d7\\u13eb\\u13cf\": 16408,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13d7\\u13cd\\u13ac\": 16409,\n    \"\\u2581\\u13a4\\u13f0\\u13b8\\u13be\\u13c1\": 16410,\n    \"\\u2581\\u13db\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\": 16411,\n    \"\\u2581\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b0\": 16412,\n    \"\\u2581\\u13a4\\u13be\\u13d8\\u13c3\\u13b4\": 16413,\n    \"\\u2581\\u13a2\\u13db\\u13d7\\u13cd\\u13ac\\u13a2\": 16414,\n    \"\\u13f0\\u13be\": 16415,\n    \"\\u2581\\u13e8\\u13d5\\u13e8\": 16416,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13be\\u13c1\\u13b6\\u13d9\\u13d7\": 16417,\n    \"\\u13be\\u13db\\u13c1\\u13b2\": 16418,\n    \"\\u13d2\\u13cd\\u13d9\\u13d7\": 16419,\n    \"\\u13eb\\u13d2\\u13a2\": 16420,\n    \"\\u13d3\\u13aa\\u13be\\u13db\": 16421,\n    \"\\u13be\\u13b5\\u13aa\\u13b2\\u13cd\\u13ac\": 16422,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13ae\\u13a2\": 16423,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13b2\": 16424,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13ad\": 16425,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\\u13b2\\u13a2\": 16426,\n    \"\\u13f3\\u13e9\\u13c2\\u13b8\": 16427,\n    \"\\u2581\\u13a0\\u13d3\\u13d4\": 16428,\n    \"\\u2581\\u13a0\\u13af\\u13af\": 16429,\n    \"\\u13c2\\u13cd\\u13a9\\u13ea\\u13ce\\u13b0\": 16430,\n    \"\\u13da\\u13bf\\u13a5\\u13a2\": 16431,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13d9\": 16432,\n    \"\\u13c2\\u13b7\\u13e8\": 16433,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cf\": 16434,\n    \"\\u13e6\\u13f1\\u13ae\": 16435,\n    \"\\u13a1\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 16436,\n    \"\\u13e5\\u13f4\\u13cc\": 16437,\n    \"\\u2581\\u13e5\\u13e5\\u13ad\": 16438,\n    \"\\u2581\\u13e5\\u13a6\\u13da\": 16439,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13b4\\u13a2\": 16440,\n    \"\\u2581\\u13c2\\u13cd\\u13cb\\u13c1\\u13b8\": 16441,\n    \"\\u2581\\u13e5\\u13ef\\u13da\\u13b8\\u13a1\\u13b8\": 16442,\n    \"\\u13cd\\u13aa\\u13b5\\u13f0\\u13a5\": 16443,\n    \"\\u13dd\\u13db\\u13a9\": 16444,\n    \"\\u13c2\\u13f0\\u13b8\\u13d2\": 16445,\n    \"\\u13d5\\u13b6\\u13b0\\u13cd\\u13ac\": 16446,\n    \"\\u13ae\\u13ae\\u13a2\": 16447,\n    \"\\u13b4\\u13c8\": 16448,\n    \"\\u13e6\\u13c2\": 16449,\n    \"\\u13a0\\u13c6\\u13db\\u13a6\\u13c1\\u13b8\": 16450,\n    \"\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 16451,\n    \"\\u13d7\\u13d2\\u13c1\": 16452,\n    \"\\u2581\\u13a4\\u13e0\\u13a0\\u13cf\": 16453,\n    \"\\u13aa\\u13a5\\u13cd\\u13a6\\u13c9\": 16454,\n    \"\\u2581\\u13a0\\u13c6\\u13d9\\u13d7\\u13f1\": 16455,\n    \"\\u2581\\u13eb\\u13e3\\u13a2\\u13d2\": 16456,\n    \"\\u13d3\\u13d7\\u13cd\\u13ac\": 16457,\n    \"\\u13a6\\u13b3\\u13ae\": 16458,\n    \"\\u13d3\\u13a8\\u13d9\\u13b5\": 16459,\n    \"\\u2581\\u13d7\\u13a6\\u13c6\\u13b5\": 16460,\n    \"\\u2581\\u13d3\\u13e3\\u13be\": 16461,\n    \"\\u2581\\u13da\\u13be\\u13df\\u13f4\": 16462,\n    \"\\u2581\\u13da\\u13ea\\u13d0\": 16463,\n    \"\\u13be\\u13d9\\u13d3\\u13c6\": 16464,\n    \"\\u2581\\u13f3\\u13c2\\u13ad\": 16465,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c3\\u13f4\\u13ac\": 16466,\n    \"\\u13ed\\u13e3\\u13c5\\u13a9\": 16467,\n    \"\\u2581\\u13e3\\u13d9\\u13af\": 16468,\n    \"\\u13a6\\u13c1\\u13b4\\u13a2\": 16469,\n    \"\\u13c1\\u13d9\\u13b0\": 16470,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13cf\": 16471,\n    \"\\u2581\\u13e5\\u13c2\\u13e3\\u13ea\": 16472,\n    \"\\u2581\\u13eb\\u13a6\\u13c5\\u13a8\": 16473,\n    \"\\u13a6\\u13e1\\u13d7\\u13cd\\u13ac\": 16474,\n    \"\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\\u13f1\": 16475,\n    \"\\u2581\\u13a4\\u13d9\\u13e2\\u13c1\": 16476,\n    \"\\u13ac\\u13e9\\u13d5\\u13c1\\u13b4\\u13a2\": 16477,\n    \"\\u13d9\\u13d7\\u13cd\\u13a8\\u13a2\": 16478,\n    \"\\u13d9\\u13e3\\u13b8\": 16479,\n    \"\\u2581\\u13a4\\u13f1\\u13b5\\u13d9\": 16480,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13c5\": 16481,\n    \"\\u13d9\\u13b3\\u13db\\u13d7\": 16482,\n    \"\\u2581\\u13d7\\u13e5\\u13d0\\u13c8\\u13b8\": 16483,\n    \"\\u2581\\u13a1\\u13e3\\u13db\": 16484,\n    \"\\u13cc\\u13db\\u13d9\\u13d7\": 16485,\n    \"\\u13c2\\u13e3\\u13ea\\u13ce\\u13ad\": 16486,\n    \"\\u2581\\u13d3\\u13be\\u13cf\\u13d4\\u13d7\\u13cd\": 16487,\n    \"\\u13a6\\u13b5\\u13cd\\u13a9\": 16488,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13a1\\u13ae\": 16489,\n    \"\\u13a6\\u13bf\\u13c1\": 16490,\n    \"\\u13e4\\u13b0\\u13a2\": 16491,\n    \"\\u2581\\u13da\\u13ea\\u13ad\": 16492,\n    \"\\u2581\\u13a6\\u13d9\\u13a5\\u13a2\": 16493,\n    \"\\u2581\\u13a4\\u13db\\u13ce\\u13a2\": 16494,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13f0\": 16495,\n    \"\\u13a8\\u13a6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\\u13a9\": 16496,\n    \"\\u2581\\u13a5\\u13c6\\u13d2\\u13a6\\u13b6\\u13d4\\u13c5\": 16497,\n    \"\\u13a0\\u13d2\\u13a2\": 16498,\n    \"\\u13e5\\u13c5\\u13c1\\u13b8\\u13a9\": 16499,\n    \"\\u13e5\\u13f4\\u13cf\": 16500,\n    \"\\u2581\\u13f3\\u13be\\u13db\\u13a6\\u13c1\": 16501,\n    \"\\u2581\\u13a4\\u13db\\u13db\\u13c5\": 16502,\n    \"\\u2581\\u13a3\\u13e5\\u13c2\": 16503,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13db\": 16504,\n    \"\\u2581\\u13eb\\u13a6\\u13b7\\u13af\\u13cd\\u13d7\": 16505,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\\u13b5\\u13cd\\u13d7\": 16506,\n    \"\\u2581\\u13e7\\u13c2\\u13c6\\u13c2\\u13f2\\u13cd\": 16507,\n    \"\\u13ee\\u13d4\\u13c1\": 16508,\n    \"\\u13da\\u13d3\\u13d5\\u13eb\\u13cd\\u13d7\": 16509,\n    \"\\u2581\\u13a1\\u13d9\\u13a2\": 16510,\n    \"\\u2581\\u13d3\\u13e4\": 16511,\n    \"\\u2581\\u13d7\\u13c1\\u13b3\": 16512,\n    \"\\u2581\\u13da\\u13b9\": 16513,\n    \"\\u13e9\\u13e5\\u13aa\": 16514,\n    \"\\u2581\\u13a2\\u13d7\\u13cd\\u13d3\\u13f1\": 16515,\n    \"\\u2581\\u13be\\u13cb\\u13c1\\u13b2\": 16516,\n    \"\\u13af\\u13cd\\u13d5\\u13b8\\u13d7\": 16517,\n    \"\\u2581\\u13a3\\u13a9\\u13c5\\u13cd\\u13d4\\u13c5\": 16518,\n    \"\\u2581\\u13a4\\u13db\\u13ce\": 16519,\n    \"\\u2581\\u13a2\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 16520,\n    \"\\u13e9\\u13db\\u13af\\u13b8\\u13ad\": 16521,\n    \"\\u13d3\\u13c2\\u13df\\u13cd\\u13d7\\u13cd\\u13aa\\u13a2\": 16522,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\": 16523,\n    \"\\u2581\\u13a4\\u13b5\\u13aa\\u13be\\u13d4\\u13c5\": 16524,\n    \"\\u13af\\u13aa\\u13e9\\u13d8\\u13ad\": 16525,\n    \"\\u2581\\u13e5\\u13ac\\u13ad\": 16526,\n    \"\\u2581\\u13a0\\u13e5\\u13b8\\u13c9\\u13d9\\u13d7\\u13f1\": 16527,\n    \"\\u13c4\\u13e2\\u13d5\": 16528,\n    \"\\u13cd\\u13d3\\u13f1\\u13db\\u13a9\": 16529,\n    \"\\u2581\\u13d5\\u13a6\\u13b3\\u13c5\\u13db\\u13a2\": 16530,\n    \"\\u13b5\\u13f0\\u13db\": 16531,\n    \"\\u2581\\u13d3\\u13f2\\u13e3\\u13db\": 16532,\n    \"\\u2581\\u13a2\\u13a8\\u13ad\": 16533,\n    \"\\u13da\\u13d3\\u13b4\\u13cd\\u13d7\\u13cd\\u13ac\": 16534,\n    \"\\u13ac\\u13ad\\u13b7\\u13ef\\u13cd\\u13ac\\u13a2\": 16535,\n    \"\\u2581\\u13b0\\u13b5\\u13a6\": 16536,\n    \"\\u2581\\u13cd\\u13a9\\u13be\\u13c2\": 16537,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13af\\u13cd\\u13d4\": 16538,\n    \"\\u2581\\u13d5\\u13a6\\u13c2\": 16539,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13c2\\u13aa\\u13ce\\u13a2\": 16540,\n    \"\\u13da\\u13de\": 16541,\n    \"\\u2581\\u13d4\\u13d8\\u13cd\\u13d3\\u13c1\": 16542,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 16543,\n    \"\\u2581\\u13a0\\u13be\\u13c2\\u13a9\": 16544,\n    \"\\u13a2\\u13a8\\u13c5\\u13cd\\u13d7\": 16545,\n    \"\\u13c2\\u13f4\\u13cd\\u13d4\\u13a9\\u13cd\": 16546,\n    \"\\u13db\\u13a6\\u13cd\\u13d3\": 16547,\n    \"\\u2581\\u13da\\u13c2\\u13c3\\u13a9\\u13d2\": 16548,\n    \"\\u13a9\\u13d0\\u13be\": 16549,\n    \"\\u13a6\\u13e5\\u13c3\\u13c1\\u13b8\\u13a9\": 16550,\n    \"\\u2581\\u13d4\\u13b5\\u13cd\\u13aa\\u13af\": 16551,\n    \"\\u2581\\u13d3\\u13e5\\u13a6\": 16552,\n    \"\\u2581\\u13a0\\u13b5\\u13e3\": 16553,\n    \"\\u13c2\\u13d4\\u13d5\\u13a9\": 16554,\n    \"\\u2581\\u13e7\\u13c2\\u13b8\\u13af\": 16555,\n    \"\\u13d7\\u13a7\\u13c3\\u13a9\\u13cd\\u13a8\": 16556,\n    \"\\u2581\\u13a0\\u13f4\\u13eb\\u13ef\\u13af\": 16557,\n    \"\\u2581\\u13d5\\u13a6\\u13c4\\u13aa\\u13ac\\u13a2\": 16558,\n    \"\\u13ac\\u13aa\\u13e9\\u13d4\": 16559,\n    \"\\u13cf\\u13c2\\u13d9\\u13ae\": 16560,\n    \"\\u2581\\u13cd\\u13d5\\u13be\": 16561,\n    \"\\u2581\\u13da\\u13d3\\u13c2\\u13b8\\u13e4\\u13b4\": 16562,\n    \"\\u13ec\\u13d2\\u13c1\": 16563,\n    \"\\u13b9\\u13d3\\u13d7\": 16564,\n    \"\\u2581\\u13a0\\u13c6\\u13e2\": 16565,\n    \"\\u2581\\u13a7\\u13c3\\u13af\\u13f4\": 16566,\n    \"\\u13aa\\u13d2\\u13be\": 16567,\n    \"\\u2581\\u13a0\\u13ab\\u13cf\": 16568,\n    \"\\u2581\\u13e5\\u13e5\\u13f0\\u13b8\": 16569,\n    \"\\u2581\\u13a1\\u13b5\\u13cf\": 16570,\n    \"\\u2581\\u13c8\\u13ac\\u13a2\": 16571,\n    \"\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\\u13d7\\u13cd\\u13ac\\u13a2\": 16572,\n    \"\\u13cd\\u13d3\\u13a6\\u13d4\": 16573,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\": 16574,\n    \"\\u13d3\\u13c4\\u13d6\": 16575,\n    \"\\u2581\\u13a0\\u13c2\\u13a8\\u13c2\": 16576,\n    \"\\u13b6\\u13db\\u13be\": 16577,\n    \"\\u13e6\\u13ce\\u13ae\\u13cd\\u13d7\": 16578,\n    \"\\u2581\\u13d7\\u13a6\\u13c5\\u13a6\\u13b8\\u13d9\\u13d7\": 16579,\n    \"\\u2581\\u13d5\\u13ab\\u13aa\\u13d3\\u13c1\\u13b0\": 16580,\n    \"\\u13a6\\u13ec\\u13c2\\u13cd\\u13aa\\u13a2\": 16581,\n    \"\\u13ef\\u13ab\\u13f4\\u13a1\\u13d7\\u13f1\": 16582,\n    \"\\u13f2\\u13cd\\u13d7\\u13cd\\u13aa\": 16583,\n    \"\\u2581\\u13a0\\u13c2\\u13b2\\u13a6\": 16584,\n    \"\\u2581\\u13ad\\u13e2\\u13a8\": 16585,\n    \"\\u2581\\u13f1\\u13c4\\u13be\\u13db\\u13c1\\u13b4\": 16586,\n    \"\\u13aa\\u13af\\u13cd\\u13d3\\u13c1\\u13af\": 16587,\n    \"\\u13e5\\u13ef\\u13db\\u13c1\\u13b8\": 16588,\n    \"\\u13d7\\u13b4\\u13b2\\u13cd\\u13ac\": 16589,\n    \"\\u13da\\u13a2\\u13cd\\u13db\": 16590,\n    \"\\u2581\\u13d7\\u13c2\\u13c3\\u13a9\\u13cd\\u13d7\\u13cd\": 16591,\n    \"\\u13af\\u13f4\\u13d3\": 16592,\n    \"\\u13c3\\u13af\\u13f3\\u13cf\\u13f1\": 16593,\n    \"\\u13b6\\u13c5\\u13ae\": 16594,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13e0\\u13b2\": 16595,\n    \"\\u2581\\u13c7\\u13c2\\u13cd\\u13a9\\u13c2\": 16596,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13ae\\u13a2\": 16597,\n    \"\\u13d3\\u13c5\\u13d2\\u13af\": 16598,\n    \"\\u2581\\u13da\\u13e8\": 16599,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13c3\\u13b8\": 16600,\n    \"\\u13be\\u13cf\\u13c3\\u13b4\": 16601,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13cd\": 16602,\n    \"\\u2581\\u13d3\\u13c1\\u13ae\": 16603,\n    \"\\u2581\\u13d3\\u13c2\\u13cd\\u13a6\\u13a2\\u13ae\": 16604,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13d2\\u13af\\u13b2\": 16605,\n    \"\\u2581\\u13a6\\u13c5\\u13aa\\u13a2\\u13cd\\u13d7\": 16606,\n    \"\\u2581\\u13a4\\u13d9\\u13af\\u13f3\\u13c1\\u13a2\": 16607,\n    \"\\u2581\\u13a0\\u13f0\\u13b8\\u13ce\": 16608,\n    \"\\u2581\\u13a0\\u13c2\\u13b8\\u13c9\\u13d7\\u13cd\\u13a8\\u13a2\": 16609,\n    \"\\u13c5\\u13db\\u13a9\": 16610,\n    \"\\u13b4\\u13cf\": 16611,\n    \"\\u2581\\u13e7\\u13d3\\u13da\": 16612,\n    \"\\u2581\\u13ad\\u13d3\\u13c5\\u13d6\\u13cd\\u13aa\": 16613,\n    \"\\u13c2\\u13f2\\u13cd\\u13d3\\u13c1\": 16614,\n    \"\\u2581\\u13a6\\u13e3\\u13c4\\u13b5\\u13a8\": 16615,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13a8\\u13a2\": 16616,\n    \"\\u2581\\u13ed\\u13be\\u13d7\\u13c5\": 16617,\n    \"\\u13e2\\u13c6\\u13cd\\u13aa\\u13a2\": 16618,\n    \"\\u2581\\u13da\\u13b4\\u13d4\\u13c1\": 16619,\n    \"\\u2581\\u13aa\\u13d9\\u13d7\": 16620,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13d2\": 16621,\n    \"\\u13c5\\u13a6\\u13b6\\u13d4\\u13c5\": 16622,\n    \"\\u2581\\u13da\\u13c4\\u13cc\": 16623,\n    \"\\u13da\\u13c2\\u13d0\\u13af\\u13cd\": 16624,\n    \"\\u2581\\u13a4\\u13e9\\u13e3\": 16625,\n    \"\\u13c5\\u13a6\\u13cd\\u13aa\": 16626,\n    \"\\u2581\\u13ac\\u13ed\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\": 16627,\n    \"\\u13b5\\u13f1\\u13b6\\u13af\\u13cd\\u13d7\\u13f1\": 16628,\n    \"\\u13d6\\u13db\": 16629,\n    \"\\u2581\\u13a2\\u13a9\\u13ae\\u13cd\\u13d7\": 16630,\n    \"\\u13c5\\u13c2\\u13cc\": 16631,\n    \"\\u2581\\u13a8\\u13e3\\u13c8\\u13d7\": 16632,\n    \"\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d4\\u13c1\": 16633,\n    \"\\u13a6\\u13be\\u13c5\\u13aa\\u13a8\": 16634,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13e1\\u13ac\": 16635,\n    \"\\u2581\\u13da\\u13e9\\u13ad\\u13c2\\u13cd\": 16636,\n    \"\\u13d7\\u13be\\u13d8\": 16637,\n    \"\\u2581\\u13a4\\u13b5\\u13e5\\u13d9\": 16638,\n    \"\\u2581\\u13d5\\u13e5\\u13cd\\u13da\\u13c5\": 16639,\n    \"\\u13eb\\u13be\": 16640,\n    \"\\u2581\\u13c8\\u13a6\": 16641,\n    \"\\u13e5\\u13f2\\u13af\\u13ce\\u13b8\": 16642,\n    \"\\u2581\\u13a4\\u13eb\\u13d2\\u13ce\": 16643,\n    \"\\u2581\\u13ed\\u13c1\\u13a2\": 16644,\n    \"\\u13a8\\u13a6\\u13d2\\u13a6\\u13b6\": 16645,\n    \"\\u2581\\u13d3\\u13c2\\u13d9\\u13a8\\u13a2\": 16646,\n    \"\\u13a6\\u13d8\\u13be\\u13eb\\u13db\": 16647,\n    \"\\u2581\\u13d7\\u13a9\\u13aa\": 16648,\n    \"\\u2581\\u13e7\\u13b8\\u13cc\\u13d3\": 16649,\n    \"\\u2581\\u13a6\\u13a6\\u13b6\\u13a2\": 16650,\n    \"\\u2581\\u13af\\u13e3\\u13d5\\u13b6\\u13b0\": 16651,\n    \"\\u2581\\u13d7\\u13a6\\u13da\": 16652,\n    \"\\u2581\\u13a4\\u13d3\\u13cc\\u13a7\\u13af\": 16653,\n    \"\\u13e5\\u13b0\\u13b5\": 16654,\n    \"\\u13d3\\u13aa\\u13b2\\u13cd\\u13d7\": 16655,\n    \"\\u13c2\\u13be\\u13d5\\u13a9\": 16656,\n    \"\\u2581\\u13ed\\u13d4\": 16657,\n    \"\\u2581\\u13c2\\u13d3\\u13c5\\u13c1\": 16658,\n    \"\\u13a6\\u13e4\\u13b5\\u13a6\": 16659,\n    \"\\u2581\\u13d5\\u13a6\\u13b6\\u13a8\\u13d2\\u13a2\": 16660,\n    \"\\u2581\\u13e7\\u13a8\\u13f3\\u13af\\u13f3\": 16661,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13b5\\u13cd\\u13ac\\u13a2\": 16662,\n    \"\\u2581\\u13a1\\u13b5\\u13cd\\u13a8\\u13cd\\u13d7\": 16663,\n    \"\\u13a9\\u13f2\\u13cf\\u13af\": 16664,\n    \"\\u13d5\\u13e5\\u13a6\\u13bf\\u13e9\\u13d5\\u13a6\": 16665,\n    \"\\u2581\\u13da\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b4\\u13a2\": 16666,\n    \"\\u13a4\\u13ea\\u13c5\\u13cd\\u13d7\\u13f1\": 16667,\n    \"\\u2581\\u13e7\\u13c2\\u13f0\\u13b8\\u13d0\": 16668,\n    \"\\u13cf\\u13b3\\u13db\\u13a5\\u13cd\\u13ac\": 16669,\n    \"\\u2581\\u13a4\\u13c3\\u13ae\\u13b8\\u13a2\": 16670,\n    \"\\u13a9\\u13f2\\u13cd\\u13d9\\u13d3\\u13c1\": 16671,\n    \"\\u13d0\\u13e2\\u13d9\\u13d7\": 16672,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13ae\\u13b5\\u13a8\\u13a2\": 16673,\n    \"\\u13d4\\u13cd\\u13a8\": 16674,\n    \"\\u2581\\u13cd\\u13d5\\u13b5\\u13cd\\u13a9\": 16675,\n    \"\\u2581\\u13c2\\u13d5\\u13c5\": 16676,\n    \"\\u13c6\\u13b5\\u13a2\": 16677,\n    \"\\u13eb\\u13e3\\u13b7\\u13e3\": 16678,\n    \"\\u2581\\u13a4\\u13e5\\u13b8\\u13d2\\u13a9\": 16679,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13ef\\u13d9\\u13d7\\u13cd\\u13ac\": 16680,\n    \"\\u13a2\\u13e5\\u13a6\\u13d4\\u13be\\u13a2\": 16681,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d7\\u13cd\\u13ac\": 16682,\n    \"\\u2581\\u13a6\\u13c1\\u13ac\": 16683,\n    \"\\u13cf\\u13b2\\u13cf\": 16684,\n    \"\\u2581\\u13a3\\u13ce\": 16685,\n    \"\\u2581\\u13e7\\u13c1\\u13f2\\u13b2\\u13cd\": 16686,\n    \"\\u13d3\\u13cd\\u13d7\\u13cd\\u13a9\": 16687,\n    \"\\u2581\\u13a0\\u13d0\\u13f4\\u13a2\": 16688,\n    \"\\u2581\\u13a2\\u13e7\\u13c5\": 16689,\n    \"\\u13c1\\u13b8\\u13d9\\u13d7\": 16690,\n    \"\\u2581\\u13a1\\u13d7\\u13a8\\u13f3\": 16691,\n    \"\\u13ef\\u13db\\u13c1\\u13d7\": 16692,\n    \"\\u13be\\u13d5\\u13b6\\u13c6\": 16693,\n    \"\\u13e9\\u13cd\\u13d7\\u13d5\\u13a9\": 16694,\n    \"\\u2581\\u13da\\u13c3\\u13b8\\u13a2\": 16695,\n    \"\\u2581\\u13a0\\u13c9\\u13af\\u13f3\\u13d2\": 16696,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\\u13a9\": 16697,\n    \"\\u2581\\u13a4\\u13c1\\u13b8\\u13d4\\u13c5\": 16698,\n    \"\\u2581\\u13a4\\u13c2\\u13e0\\u13f1\\u13c9\": 16699,\n    \"\\u2581\\u13a4\\u13f2\\u13b7\": 16700,\n    \"\\u13c4\\u13ef\\u13a9\": 16701,\n    \"\\u2581\\u13cd\\u13a6\\u13f0\\u13ac\\u13cd\\u13d3\": 16702,\n    \"\\u13d5\\u13d8\\u13f1\\u13b6\": 16703,\n    \"\\u13e9\\u13c2\\u13f4\\u13af\\u13ae\": 16704,\n    \"\\u13d3\\u13a7\\u13c3\\u13ae\\u13b5\": 16705,\n    \"\\u13a3\\u13a6\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 16706,\n    \"\\u2581\\u13a4\\u13c5\\u13c5\\u13a9\": 16707,\n    \"\\u2581\\u13a0\\u13e5\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\": 16708,\n    \"\\u13d3\\u13c1\\u13e4\\u13b8\": 16709,\n    \"\\u13be\\u13c1\\u13ad\": 16710,\n    \"\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 16711,\n    \"\\u13da\\u13a2\\u13cd\\u13d4\\u13c5\": 16712,\n    \"\\u13aa\\u13d5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 16713,\n    \"\\u2581\\u13a0\\u13a6\\u13d4\\u13ae\\u13a2\": 16714,\n    \"\\u2581\\u13f1\\u13e3\\u13b4\": 16715,\n    \"\\u2581\\u13a8\\u13a6\\u13d2\\u13a6\": 16716,\n    \"\\u2581\\u13a0\\u13c6\\u13a7\": 16717,\n    \"\\u2581\\u13a0\\u13c2\\u13b7\\u13e4\": 16718,\n    \"\\u13ef\\u13d2\\u13a6\\u13b6\\u13d4\\u13c5\": 16719,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 16720,\n    \"\\u2581\\u13eb\\u13da\\u13aa\\u13b2\": 16721,\n    \"\\u13a6\\u13df\\u13b6\\u13a1\\u13b8\": 16722,\n    \"\\u13be\\u13d3\\u13d3\\u13cd\\u13a9\": 16723,\n    \"\\u2581\\u13a0\\u13e1\\u13d7\\u13cd\\u13a9\": 16724,\n    \"\\u13c6\\u13c1\\u13e6\\u13c5\": 16725,\n    \"\\u2581\\u13a0\\u13c6\\u13cd\\u13a9\\u13d3\\u13d2\": 16726,\n    \"\\u2581\\u13a2\\u13e5\\u13c5\\u13af\": 16727,\n    \"\\u13c5\\u13a1\\u13b2\": 16728,\n    \"\\u13ea\\u13ef\\u13b8\\u13e4\": 16729,\n    \"\\u2581\\u13f1\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\": 16730,\n    \"\\u2581\\u13eb\\u13c4\\u13ea\\u13ce\\u13b4\": 16731,\n    \"\\u2581\\u13a4\\u13a9\\u13d3\": 16732,\n    \"\\u13d3\\u13c5\\u13d6\\u13d7\\u13cd\\u13a8\\u13a2\": 16733,\n    \"\\u13a2\\u13cd\\u13d4\\u13c5\\u13ad\": 16734,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13a6\\u13cd\\u13d9\": 16735,\n    \"\\u2581\\u13d3\\u13b5\\u13cd\\u13d7\\u13b3\\u13c1\\u13ac\\u13a2\": 16736,\n    \"\\u2581\\u13af\\u13c1\\u13a9\\u13d2\": 16737,\n    \"\\u2581\\u13d5\\u13aa\\u13b5\": 16738,\n    \"\\u2581\\u13e7\\u13d7\\u13a6\\u13b4\": 16739,\n    \"\\u13d3\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\\u13a2\": 16740,\n    \"\\u2581\\u13f1\\u13ac\\u13ad\": 16741,\n    \"\\u2581\\u13af\\u13ef\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\": 16742,\n    \"\\u13c4\\u13ec\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 16743,\n    \"\\u13c1\\u13a2\\u13cd\\u13d9\\u13d7\": 16744,\n    \"\\u2581\\u13a4\\u13d3\\u13d1\\u13f4\\u13a2\": 16745,\n    \"\\u13ae\\u13b8\\u13d2\": 16746,\n    \"\\u2581\\u13a6\\u13e5\\u13f2\\u13ea\\u13b3\\u13c1\": 16747,\n    \"\\u2581\\u13a0\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\\u13cd\": 16748,\n    \"\\u2581\\u13a4\\u13ea\\u13a7\\u13c1\\u13b4\\u13a2\": 16749,\n    \"\\u13b5\\u13a1\\u13be\": 16750,\n    \"\\u2581\\u13d7\\u13c1\\u13a8\": 16751,\n    \"\\u2581\\u13e7\\u13be\\u13e5\": 16752,\n    \"\\u13d3\\u13f2\\u13cd\\u13d4\\u13c1\": 16753,\n    \"\\u2581\\u13da\\u13a7\": 16754,\n    \"\\u2581\\u13a2\\u13d7\\u13b5\": 16755,\n    \"\\u2581\\u13a4\\u13be\\u13a9\\u13b4\": 16756,\n    \"\\u2581\\u13a4\\u13e9\\u13c2\\u13a6\\u13b8\": 16757,\n    \"\\u2581\\u13a7\\u13b8\\u13ac\\u13a2\": 16758,\n    \"\\u13db\\u13af\\u13ce\\u13b8\\u13af\": 16759,\n    \"\\u13eb\\u13cd\\u13a6\": 16760,\n    \"\\u13d7\\u13d4\\u13cf\": 16761,\n    \"\\u13ac\\u13ad\\u13c5\": 16762,\n    \"\\u2581\\u13a0\\u13ef\\u13e5\": 16763,\n    \"di\": 16764,\n    \"\\u13ae\\u13f0\\u13c3\": 16765,\n    \"\\u2581\\u13e7\\u13d3\\u13c5\\u13d6\\u13b4\": 16766,\n    \"\\u2581\\u13a3\\u13c2\\u13f4\": 16767,\n    \"\\u2581\\u13a4\\u13d3\\u13c1\\u13c1\": 16768,\n    \"\\u2581\\u13d3\\u13a9\\u13cd\\u13a8\": 16769,\n    \"\\u13eb\\u13e3\\u13b6\\u13d2\": 16770,\n    \"\\u2581\\u13a3\\u13a6\\u13d7\\u13d4\\u13cd\\u13d7\": 16771,\n    \"\\u2581\\u13a4\\u13ec\\u13c2\\u13d2\\u13a2\": 16772,\n    \"\\u2581\\u13e6\\u13a9\\u13ad\": 16773,\n    \"\\u13f4\\u13c5\\u13af\": 16774,\n    \"\\u2581\\u13e7\\u13af\\u13cd\\u13d7\\u13f1\": 16775,\n    \"\\u13b9\\u13a9\": 16776,\n    \"\\u2581d\": 16777,\n    \"\\u2581\\u13d5\\u13ab\\u13aa\\u13d3\\u13c1\\u13b8\": 16778,\n    \"\\u13f2\\u13d7\": 16779,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13cd\\u13ac\": 16780,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13db\\u13db\\u13c1\": 16781,\n    \"\\u13c1\\u13b6\\u13af\": 16782,\n    \"\\u13e5\\u13e9\\u13be\\u13a6\\u13b8\\u13a2\": 16783,\n    \"\\u2581\\u13c2\\u13ac\\u13b8\": 16784,\n    \"\\u2581\\u13e6\\u13d2\\u13a2\": 16785,\n    \"\\u2581\\u13e5\\u13d9\\u13e5\": 16786,\n    \"\\u2581\\u13a4\\u13d5\\u13ad\\u13ef\": 16787,\n    \"\\u13be\\u13d6\\u13c9\\u13b6\": 16788,\n    \"\\u2581\\u13e3\\u13df\\u13cd\\u13db\": 16789,\n    \"\\u2581\\u13d5\\u13a4\\u13be\": 16790,\n    \"\\u13f2\\u13b2\\u13a2\": 16791,\n    \"\\u13e5\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\\u13cd\\u13d7\": 16792,\n    \"\\u2581\\u13a3\\u13cd\\u13d9\": 16793,\n    \"\\u2581\\u13a6\\u13c5\\u13a8\\u13a2\": 16794,\n    \"\\u13aa\\u13b8\\u13cd\\u13d4\\u13c1\": 16795,\n    \"\\u2581\\u13da\\u13d9\\u13af\": 16796,\n    \"\\u2581\\u13a0\\u13e5\\u13cd\\u13da\\u13b2\": 16797,\n    \"\\u13e9\\u13ad\\u13c2\\u13b8\": 16798,\n    \"\\u2581\\u13a8\\u13e5\\u13c1\\u13d7\\u13f1\": 16799,\n    \"\\u2581\\u13c4\\u13d5\": 16800,\n    \"\\u2581\\u13ab\\u13cf\": 16801,\n    \"\\u13e6\\u13af\\u13f3\\u13c5\\u13a9\": 16802,\n    \"\\u13b5\\u13c3\": 16803,\n    \"\\u2581\\u13e7\\u13b3\\u13d1\\u13b6\\u13a9\": 16804,\n    \"\\u13a9\\u13f0\\u13b8\\u13ad\": 16805,\n    \"\\u13c1\\u13c9\\u13a5\": 16806,\n    \"\\u13d7\\u13e3\\u13cf\\u13b3\\u13db\\u13d9\\u13d7\": 16807,\n    \"\\u13d3\\u13c2\\u13cf\\u13c5\": 16808,\n    \"\\u13b5\\u13cd\\u13d4\\u13c2\\u13d3\\u13cd\\u13d7\": 16809,\n    \"\\u2581\\u13a4\\u13d1\\u13ef\\u13a9\": 16810,\n    \"\\u2581\\u13a1\\u13cc\\u13c3\": 16811,\n    \"\\u13c2\\u13d5\\u13be\": 16812,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\\u13a2\": 16813,\n    \"\\u13b8\\u13a1\\u13b8\\u13af\": 16814,\n    \"\\u2581\\u13d3\\u13df\\u13b6\\u13cd\\u13d7\\u13cd\\u13ac\": 16815,\n    \"\\u13cd\\u13da\\u13d5\\u13cd\\u13d7\": 16816,\n    \"\\u2581\\u13d3\\u13b2\\u13a2\": 16817,\n    \"\\u2581\\u13eb\\u13cd\\u13db\": 16818,\n    \"\\u2581\\u13da\\u13be\\u13d7\\u13d4\\u13ae\": 16819,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13be\": 16820,\n    \"\\u13e3\\u13e0\\u13ef\\u13cd\\u13d3\": 16821,\n    \"\\u2581\\u13a4\\u13be\\u13b8\\u13b8\": 16822,\n    \"\\u13c1\\u13d9\\u13ad\": 16823,\n    \"\\u13d8\\u13be\\u13eb\\u13db\\u13b2\": 16824,\n    \"\\u2581\\u13a4\\u13c2\\u13e9\\u13d2\\u13a8\": 16825,\n    \"\\u2581\\u13a0\\u13d7\\u13d4\\u13cd\\u13ac\": 16826,\n    \"\\u2581\\u13a0\\u13a7\\u13b5\\u13a2\\u13ad\": 16827,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13db\\u13c1\": 16828,\n    \"\\u2581\\u13f1\\u13aa\\u13b5\": 16829,\n    \"\\u2581\\u13d7\\u13c4\": 16830,\n    \"\\u2581\\u13a3\\u13a9\\u13c3\\u13ae\\u13b8\": 16831,\n    \"\\u13e4\\u13b3\\u13d7\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 16832,\n    \"\\u2581\\u13a0\\u13e2\\u13d7\": 16833,\n    \"\\u2581\\u13a2\\u13a8\\u13d0\": 16834,\n    \"\\u13e8\\u13d2\": 16835,\n    \"\\u2581\\u13e3\\u13c6\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\": 16836,\n    \"\\u2581\\u13c5\\u13e9\\u13cd\\u13d9\": 16837,\n    \"\\u2581\\u13a3\\u13d3\\u13c5\\u13db\\u13a2\": 16838,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13e4\": 16839,\n    \"\\u2581\\u13e3\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\": 16840,\n    \"\\u2581\\u13be\\u13ac\\u13c1\\u13b8\\u13a2\": 16841,\n    \"\\u13c6\\u13db\\u13c2\\u13cf\": 16842,\n    \"\\u2581\\u13f1\\u13e8\\u13ef\\u13db\": 16843,\n    \"\\u2581\\u13e5\\u13a9\\u13c1\\u13b8\\u13a9\": 16844,\n    \"\\u13c3\\u13e3\\u13b6\\u13d7\": 16845,\n    \"\\u2581\\u13ab\\u13c7\": 16846,\n    \"\\u2581\\u13f4\\u13a8\\u13e3\\u13db\": 16847,\n    \"\\u13c1\\u13a9\\u13a1\": 16848,\n    \"\\u13a5\\u13cd\\u13aa\": 16849,\n    \"\\u2581\\u13af\\u13ef\\u13c5\\u13d7\": 16850,\n    \"\\u2581\\u13c2\\u13a6\\u13a6\": 16851,\n    \"\\u2581\\u13a0\\u13cf\\u13be\\u13cc\\u13c5\\u13a2\": 16852,\n    \"\\u2581\\u13da\\u13b5\\u13aa\\u13c1\": 16853,\n    \"\\u2581\\u13f1\\u13e9\\u13be\": 16854,\n    \"\\u2581\\u13a0\\u13e5\\u13b7\": 16855,\n    \"\\u2581\\u13a4\\u13f2\\u13af\\u13cd\\u13d4\\u13c1\\u13a2\": 16856,\n    \"\\u2581\\u13a1\\u13e5\\u13f2\\u13a2\\u13ce\\u13b8\": 16857,\n    \"\\u13c2\\u13cf\\u13c1\\u13d7\\u13f1\": 16858,\n    \"\\u13b5\\u13aa\\u13c5\\u13db\": 16859,\n    \"\\u13d3\\u13cd\\u13db\\u13d7\\u13cd\\u13d9\\u13d7\": 16860,\n    \"\\u2581\\u13a3\\u13a6\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\": 16861,\n    \"\\u2581\\u13a2\\u13ab\\u13e9\\u13be\": 16862,\n    \"\\u13be\\u13c1\\u13b3\\u13d7\\u13cd\\u13ac\": 16863,\n    \"\\u2581\\u13a7\\u13c3\\u13ae\\u13cd\\u13a8\": 16864,\n    \"\\u2581\\u13eb\\u13a6\\u13b7\": 16865,\n    \"\\u13b5\\u13cf\\u13a9\": 16866,\n    \"\\u2581\\u13b7\\u13c6\": 16867,\n    \"\\u13e3\\u13d3\\u13d9\\u13e2\\u13be\\u13c1\\u13b8\\u13a9\": 16868,\n    \"\\u2581\\u13e9\\u13a6\\u13d8\": 16869,\n    \"\\u13a7\\u13c3\\u13ae\\u13d7\": 16870,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13ce\\u13b2\": 16871,\n    \"\\u2581\\u13d7\\u13af\\u13cd\\u13d7\": 16872,\n    \"\\u2581\\u13a0\\u13da\\u13d3\\u13b4\\u13cd\\u13d7\\u13cd\\u13ac\": 16873,\n    \"\\u2581\\u13a4\\u13f2\\u13b0\\u13a2\": 16874,\n    \"\\u2581\\u13a0\\u13c2\\u13dd\": 16875,\n    \"\\u2581\\u13d9\\u13db\\u13be\": 16876,\n    \"\\u13a6\\u13db\\u13be\\u13e8\": 16877,\n    \"\\u2581\\u13da\\u13d4\\u13c5\\u13a9\": 16878,\n    \"\\u2581\\u13f1\\u13c3\\u13a9\": 16879,\n    \"\\u13cf\\u13d3\\u13cd\\u13d7\\u13f1\": 16880,\n    \"\\u13ef\\u13ea\\u13e8\": 16881,\n    \"\\u13e5\\u13ef\\u13d8\\u13cd\\u13d3\\u13c1\\u13af\": 16882,\n    \"\\u2581\\u13af\\u13a6\\u13d4\\u13ad\\u13f0\\u13c3\": 16883,\n    \"\\u13be\\u13d3\\u13c2\\u13b8\\u13a2\\u13cd\\u13d7\": 16884,\n    \"\\u13f4\\u13af\\u13ad\": 16885,\n    \"\\u13b8\\u13a1\\u13b8\": 16886,\n    \"\\u13c3\\u13b8\\u13d4\\u13c1\": 16887,\n    \"\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13aa\": 16888,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\\u13cd\\u13d7\": 16889,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 16890,\n    \"\\u13a1\\u13e5\\u13a9\\u13cf\": 16891,\n    \"\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\\u13cd\\u13a8\": 16892,\n    \"\\u13a1\\u13e3\\u13d8\\u13c3\\u13a6\": 16893,\n    \"\\u13e8\\u13f4\\u13a6\": 16894,\n    \"\\u2581\\u13b6\\u13cf\": 16895,\n    \"\\u2581\\u13a0\\u13f0\\u13d9\\u13b3\\u13db\\u13d7\\u13f1\": 16896,\n    \"\\u2581\\u13a2\\u13e3\\u13c1\\u13e2\\u13d4\\u13c5\": 16897,\n    \"\\u13cf\\u13d9\\u13b2\": 16898,\n    \"\\u2581\\u13a0\\u13d4\\u13b4\\u13a6\\u13d2\\u13a2\": 16899,\n    \"\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\\u13ac\": 16900,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13da\": 16901,\n    \"\\u2581\\u13da\\u13e9\\u13db\\u13b2\\u13ce\": 16902,\n    \"\\u13a6\\u13b5\\u13cf\": 16903,\n    \"\\u2581\\u13a3\\u13a9\\u13c1\\u13e4\\u13b8\": 16904,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13db\\u13a2\": 16905,\n    \"\\u2581\\u13a0\\u13c2\\u13f4\\u13af\\u13b0\": 16906,\n    \"\\u13a0\\u13cd\\u13aa\\u13a2\": 16907,\n    \"\\u13c7\\u13b5\\u13d2\": 16908,\n    \"\\u13b3\\u13b9\": 16909,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13aa\": 16910,\n    \"\\u13c6\\u13c1\\u13cd\\u13a9\": 16911,\n    \"\\u2581\\u13da\\u13ea\\u13b5\\u13ce\\u13b4\": 16912,\n    \"\\u13e6\\u13a3\\u13ce\\u13a2\": 16913,\n    \"\\u2581\\u13da\\u13be\\u13c1\\u13b6\\u13db\": 16914,\n    \"\\u13ed\\u13cc\\u13c5\": 16915,\n    \"\\u2581\\u13f1\\u13a6\\u13b8\\u13c9\\u13d7\": 16916,\n    \"\\u13d6\\u13ad\": 16917,\n    \"\\u2581\\u13e3\\u13e5\\u13cd\\u13da\": 16918,\n    \"\\u2581\\u13a4\\u13c3\\u13c1\\u13b4\\u13a2\": 16919,\n    \"\\u13be\\u13f1\\u13a9\": 16920,\n    \"\\u13be\\u13f0\\u13af\\u13cd\\u13d7\\u13f1\": 16921,\n    \"\\u2581\\u13d8\\u13f0\": 16922,\n    \"\\u13a2\\u13cd\\u13a8\\u13cd\\u13d7\": 16923,\n    \"\\u2581\\u13ef\\u13c9\\u13ce\": 16924,\n    \"\\u2581\\u13eb\\u13da\\u13b8\\u13cc\": 16925,\n    \"\\u2581\\u13a4\\u13c1\\u13a6\\u13b8\\u13a2\": 16926,\n    \"\\u2581\\u13e5\\u13a5\\u13a1\\u13b8\": 16927,\n    \"\\u2581\\u13da\\u13c2\\u13c5\\u13c5\": 16928,\n    \"\\u13a7\\u13c1\\u13a2\": 16929,\n    \"\\u13d8\\u13bf\\u13eb\\u13db\\u13b2\\u13a9\": 16930,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c2\\u13f4\": 16931,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13da\\u13b8\": 16932,\n    \"\\u2581\\u13f3\\u13dc\\u13cf\\u13db\": 16933,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\": 16934,\n    \"\\u2581\\u13e5\\u13d5\\u13af\": 16935,\n    \"\\u13a8\\u13cd\\u13d7\\u13c9\\u13cd\\u13a9\\u13c2\": 16936,\n    \"\\u13aa\\u13d4\\u13c5\\u13af\": 16937,\n    \"\\u13d8\\u13b4\\u13a2\": 16938,\n    \"\\u13b0\\u13c1\\u13a2\": 16939,\n    \"\\u2581\\u13a0\\u13b5\\u13db\\u13d7\\u13cd\": 16940,\n    \"\\u2581\\u13af\\u13cd\\u13c6\\u13b5\\u13ce\": 16941,\n    \"\\u2581\\u13a3\\u13be\": 16942,\n    \"\\u13c3\\u13ce\\u13ae\": 16943,\n    \"\\u13d7\\u13a6\\u13d9\\u13b5\": 16944,\n    \"\\u13be\\u13c4\\u13aa\\u13e8\\u13a9\": 16945,\n    \"\\u13a2\\u13f3\\u13cd\\u13d7\\u13c9\": 16946,\n    \"\\u13cd\\u13d6\\u13f4\": 16947,\n    \"\\u13a6\\u13d3\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13cd\\u13a9\": 16948,\n    \"\\u13d3\\u13c3\\u13cd\\u13a9\\u13db\": 16949,\n    \"\\u13e5\\u13ef\\u13a7\\u13c1\\u13b8\": 16950,\n    \"\\u2581\\u13f3\\u13c2\\u13cf\": 16951,\n    \"\\u13cd\\u13d7\\u13d9\\u13ac\": 16952,\n    \"\\u2581\\u13eb\\u13db\\u13d3\": 16953,\n    \"\\u13c2\\u13c1\\u13c9\\u13a9\": 16954,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\": 16955,\n    \"\\u2581\\u13e5\\u13ac\\u13a9\\u13aa\\u13b5\\u13f0\": 16956,\n    \"\\u13ef\\u13b8\\u13e4\": 16957,\n    \"\\u2581\\u13a1\\u13e5\\u13ef\\u13a5\": 16958,\n    \"\\u2581\\u13f1\\u13c2\\u13e5\\u13ea\": 16959,\n    \"\\u2581\\u13a4\\u13b6\\u13d0\\u13c5\\u13af\": 16960,\n    \"\\u13f2\\u13ae\\u13d7\\u13f1\": 16961,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 16962,\n    \"\\u13be\\u13d8\\u13f2\\u13b8\\u13a9\": 16963,\n    \"\\u13d3\\u13f3\\u13be\\u13c2\\u13a9\\u13db\": 16964,\n    \"\\u13a9\\u13cd\\u13d4\\u13c2\": 16965,\n    \"\\u2581\\u13a8\\u13e3\\u13b4\": 16966,\n    \"\\u2581\\u13e7\\u13be\\u13da\\u13b5\": 16967,\n    \"\\u2581\\u13af\\u13cd\\u13a9\\u13cd\\u13aa\": 16968,\n    \"\\u2581\\u13a5\\u13a9\\u13b5\\u13a5\\u13c2\": 16969,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b4\": 16970,\n    \"\\u2581\\u13a0\\u13c2\\u13e8\\u13ef\\u13a2\": 16971,\n    \"\\u2581\\u13a4\\u13a9\\u13e8\\u13c5\\u13a2\": 16972,\n    \"\\u13b5\\u13cc\\u13b3\\u13d3\\u13c5\": 16973,\n    \"\\u13d7\\u13e6\\u13ad\\u13f4\": 16974,\n    \"\\u2581\\u13c2\\u13ad\\u13b5\\u13cd\\u13d7\": 16975,\n    \"\\u2581\\u13a5\\u13d3\\u13b8\\u13a2\": 16976,\n    \"\\u2581\\u13eb\\u13a6\\u13c5\\u13c5\\u13a2\": 16977,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13be\": 16978,\n    \"\\u2581\\u13a4\\u13b5\\u13c2\\u13ac\\u13ac\\u13a2\": 16979,\n    \"\\u13a9\\u13a1\\u13ad\": 16980,\n    \"\\u2581\\u13a0\\u13cd\\u13da\\u13b2\\u13a2\": 16981,\n    \"\\u13e7\\u13aa\\u13d3\\u13c1\\u13af\": 16982,\n    \"\\u13af\\u13d0\\u13e2\\u13d7\\u13ad\": 16983,\n    \"\\u13be\\u13d5\\u13b0\": 16984,\n    \"\\u13cf\\u13cd\\u13d7\\u13f1\": 16985,\n    \"\\u13d3\\u13db\\u13c1\\u13d7\\u13f1\": 16986,\n    \"\\u2581\\u13d5\\u13a6\\u13c5\\u13c5\\u13a2\": 16987,\n    \"\\u2581\\u13a4\\u13ec\\u13f0\": 16988,\n    \"\\u13c2\\u13cd\\u13ab\\u13d5\\u13cd\\u13aa\": 16989,\n    \"\\u13a6\\u13df\\u13d3\": 16990,\n    \"\\u2581\\u13a0\\u13c6\\u13a6\\u13d4\\u13b2\\u13d2\": 16991,\n    \"\\u2581\\u13a4\\u13c1\\u13e5\": 16992,\n    \"\\u13d3\\u13c6\\u13ce\\u13b8\": 16993,\n    \"\\u2581\\u13a4\\u13c2\\u13c6\": 16994,\n    \"\\u2581\\u13a4\\u13e6\\u13af\\u13c3\": 16995,\n    \"\\u2581\\u13e5\\u13d9\\u13ac\\u13a2\": 16996,\n    \"\\u2581\\u13a0\\u13f0\\u13b2\\u13a2\": 16997,\n    \"\\u13be\\u13d7\\u13cd\\u13a6\\u13b6\\u13d7\": 16998,\n    \"\\u2581\\u13e4\\u13c8\\u13db\\u13c3\": 16999,\n    \"\\u13e5\\u13f2\\u13b5\\u13b4\": 17000,\n    \"\\u2581\\u13e5\\u13c6\": 17001,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13a2\\u13ae\\u13c3\": 17002,\n    \"\\u2581\\u13d7\\u13d3\\u13c1\\u13b8\\u13a2\": 17003,\n    \"\\u13b5\\u13f0\\u13c5\": 17004,\n    \"\\u13bf\\u13d5\\u13a8\": 17005,\n    \"\\u13f4\\u13e3\\u13d7\": 17006,\n    \"\\u13a4\\u13c2\\u13f4\": 17007,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13b2\\u13a2\": 17008,\n    \"\\u2581\\u13c2\\u13a6\\u13db\\u13c1\\u13b2\\u13a2\": 17009,\n    \"\\u2581\\u13d7\\u13f0\\u13b6\": 17010,\n    \"\\u13da\\u13ed\\u13aa\\u13d3\\u13c1\\u13b4\": 17011,\n    \"\\u2581\\u13a4\\u13c6\\u13d9\": 17012,\n    \"\\u13cc\\u13ec\\u13a2\\u13b2\": 17013,\n    \"\\u2581\\u13a3\\u13a9\\u13b5\": 17014,\n    \"\\u13c5\\u13aa\\u13a5\": 17015,\n    \"\\u2581\\u13d7\\u13e4\\u13b2\\u13a2\": 17016,\n    \"\\u13a6\\u13b4\\u13c5\\u13d7\\u13cd\\u13a9\": 17017,\n    \"\\u13cd\\u13a9\\u13f2\\u13e2\\u13be\\u13c1\": 17018,\n    \"\\u13a6\\u13b5\\u13e6\\u13d9\": 17019,\n    \"\\u2581\\u13f4\\u13a6\\u13a6\\u13b5\\u13cd\\u13d3\\u13f4\": 17020,\n    \"\\u13a6\\u13db\\u13c2\\u13d7\\u13cd\\u13d7\\u13f1\": 17021,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\\u13cc\\u13d3\": 17022,\n    \"\\u2581\\u13e3\\u13b5\\u13d8\": 17023,\n    \"\\u13a6\\u13df\\u13c2\\u13ac\\u13c1\": 17024,\n    \"\\u2581\\u13a4\\u13ea\\u13be\": 17025,\n    \"\\u13e5\\u13ef\\u13a1\\u13cd\\u13d7\": 17026,\n    \"\\u2581\\u13e3\\u13e3\": 17027,\n    \"\\u2581\\u13d7\\u13e4\\u13b3\\u13cd\": 17028,\n    \"\\u2581\\u13cd\\u13a9\\u13cc\\u13b3\": 17029,\n    \"\\u2581\\u13f0\\u13d7\": 17030,\n    \"\\u13e9\\u13ab\\u13b5\": 17031,\n    \"\\u13d7\\u13bb\\u13ef\": 17032,\n    \"\\u2581\\u13a0\\u13a9\\u13a8\\u13f3\": 17033,\n    \"\\u13a2\\u13cd\\u13d4\\u13be\": 17034,\n    \"\\u2581\\u13da\\u13c2\\u13b6\\u13a8\\u13d2\": 17035,\n    \"\\u13df\\u13db\": 17036,\n    \"\\u13e5\\u13c1\\u13e4\\u13b0\\u13a2\": 17037,\n    \"\\u13d7\\u13aa\\u13b5\\u13a9\": 17038,\n    \"\\u13a2\\u13d3\\u13cd\\u13d7\": 17039,\n    \"\\u2581\\u13a4\\u13c2\\u13ab\": 17040,\n    \"\\u2581\\u13a0\\u13c5\\u13d7\\u13cd\\u13ac\\u13a2\": 17041,\n    \"\\u13d3\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\": 17042,\n    \"\\u13d7\\u13d3\\u13c5\": 17043,\n    \"\\u2581\\u13a8\\u13e5\\u13d2\\u13b2\\u13cd\": 17044,\n    \"\\u2581\\u13da\\u13c2\\u13a6\\u13d8\\u13b8\\u13d2\": 17045,\n    \"\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\": 17046,\n    \"\\u2581\\u13a4\\u13d3\\u13b8\\u13c9\": 17047,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13c3\\u13ae\\u13cd\": 17048,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13ce\\u13cd\\u13d7\": 17049,\n    \"\\u2581\\u13a1\\u13e5\\u13aa\": 17050,\n    \"\\u2581\\u13d7\\u13a8\\u13b4\": 17051,\n    \"\\u2581\\u13ad\\u13b4\\u13c5\": 17052,\n    \"\\u2581\\u13db\\u13c4\": 17053,\n    \"\\u13e5\\u13a6\\u13d8\\u13f4\": 17054,\n    \"\\u13e3\\u13db\\u13a9\\u13cd\\u13aa\": 17055,\n    \"\\u13d2\\u13cd\\u13db\": 17056,\n    \"\\u13e9\\u13db\\u13af\\u13d3\\u13cd\\u13d7\": 17057,\n    \"\\u2581\\u13a0\\u13f2\\u13b3\": 17058,\n    \"\\u2581\\u13a8\\u13b3\\u13d7\": 17059,\n    \"\\u13c3\\u13c1\\u13d7\\u13f1\": 17060,\n    \"\\u13a9\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\\u13ac\\u13a9\": 17061,\n    \"\\u13c3\\u13e3\\u13b6\": 17062,\n    \"\\u2581\\u13be\\u13be\\u13db\\u13c1\\u13b2\\u13a9\": 17063,\n    \"\\u2581\\u13d3\\u13be\\u13cf\": 17064,\n    \"\\u13e3\\u13a9\\u13cd\\u13d7\": 17065,\n    \"\\u2581\\u13d3\\u13e8\\u13ef\": 17066,\n    \"\\u13b5\\u13d3\\u13cd\\u13d9\\u13d7\": 17067,\n    \"\\u13e3\\u13d6\": 17068,\n    \"\\u13da\\u13d9\\u13a1\": 17069,\n    \"\\u13c6\\u13b5\\u13e5\\u13d9\\u13c5\": 17070,\n    \"\\u13e5\\u13ef\\u13e2\\u13c8\": 17071,\n    \"\\u13d7\\u13a4\\u13e0\\u13a0\\u13ce\": 17072,\n    \"\\u13b5\\u13d4\\u13ec\": 17073,\n    \"\\u2581\\u13d7\\u13a9\\u13d7\": 17074,\n    \"\\u2581\\u13f1\\u13e3\\u13ce\\u13b5\": 17075,\n    \"\\u2581\\u13a8\\u13a6\\u13b5\\u13e5\\u13d9\\u13c1\\u13b4\": 17076,\n    \"\\u2581\\u13a2\\u13a4\\u13a8\": 17077,\n    \"\\u2581\\u13a4\\u13f2\\u13cd\\u13d9\\u13d7\": 17078,\n    \"\\u13e5\\u13cd\\u13d3\\u13e9\\u13d5\\u13a9\": 17079,\n    \"\\u13d3\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 17080,\n    \"\\u13cd\\u13a9\\u13c5\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 17081,\n    \"\\u13a8\\u13e5\\u13f2\\u13ae\": 17082,\n    \"\\u2581\\u13eb\\u13d7\\u13a6\\u13b6\\u13cd\": 17083,\n    \"\\u13ea\\u13b3\\u13d7\\u13d3\\u13cd\\u13d7\\u13f1\": 17084,\n    \"\\u2581\\u13a9\\u13cf\": 17085,\n    \"\\u13d3\\u13a7\\u13bf\\u13e9\\u13d5\\u13ac\": 17086,\n    \"\\u13e5\\u13aa\\u13d9\\u13af\\u13cd\\u13d4\\u13c2\": 17087,\n    \"\\u13d3\\u13e5\\u13b3\\u13c2\": 17088,\n    \"\\u2581\\u13ed\\u13df\": 17089,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13ea\": 17090,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13db\\u13a5\": 17091,\n    \"\\u2581\\u13b0\\u13b5\": 17092,\n    \"\\u2581\\u13d5\\u13a8\\u13f4\\u13a2\": 17093,\n    \"\\u13d2\\u13a6\\u13b6\\u13d7\\u13cd\": 17094,\n    \"\\u13c2\\u13ae\\u13cd\\u13d7\": 17095,\n    \"\\u13eb\\u13ac\\u13e9\": 17096,\n    \"\\u13ac\\u13d2\": 17097,\n    \"\\u13d1\\u13a6\\u13b8\\u13d9\\u13d7\": 17098,\n    \"\\u13eb\\u13db\\u13b2\": 17099,\n    \"\\u2581\\u13d3\\u13a6\\u13be\\u13ec\": 17100,\n    \"\\u13e5\\u13a6\\u13d8\\u13d7\": 17101,\n    \"\\u2581\\u13a4\\u13b5\\u13db\": 17102,\n    \"\\u13ef\\u13e8\\u13d7\": 17103,\n    \"\\u2581\\u13a2\\u13ef\\u13db\": 17104,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13aa\\u13b8\\u13c9\": 17105,\n    \"\\u13ac\\u13ec\\u13ce\\u13b4\\u13a2\": 17106,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13b2\": 17107,\n    \"\\u13e9\\u13ab\\u13d7\\u13d7\": 17108,\n    \"\\u2581\\u13a4\\u13cd\\u13da\": 17109,\n    \"\\u13b3\\u13d1\\u13e0\": 17110,\n    \"\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 17111,\n    \"\\u2581\\u13d7\\u13c5\\u13c3\\u13db\\u13cd\\u13a9\\u13c2\": 17112,\n    \"\\u2581\\u13a8\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\": 17113,\n    \"\\u2581\\u13a0\\u13ef\\u13d9\\u13af\": 17114,\n    \"\\u2581\\u13d7\\u13ac\\u13a9\\u13b6\": 17115,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13c3\": 17116,\n    \"\\u13c3\\u13d3\\u13c1\\u13b4\\u13a2\": 17117,\n    \"\\u2581\\u13c2\\u13da\\u13d5\\u13d8\\u13f4\": 17118,\n    \"\\u2581\\u13a4\\u13a9\\u13b8\\u13db\": 17119,\n    \"\\u2581\\u13ad\\u13eb\\u13c2\\u13f3\": 17120,\n    \"\\u2581\\u13e9\\u13e5\\u13ef\\u13c5\\u13b2\": 17121,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13e0\": 17122,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13f2\\u13b5\": 17123,\n    \"\\u2581\\u13a0\\u13be\\u13df\\u13c2\\u13ac\\u13c1\": 17124,\n    \"\\u2581\\u13e8\\u13db\\u13a9\": 17125,\n    \"\\u13cd\\u13d3\\u13d3\\u13c5\\u13d4\": 17126,\n    \"\\u2581\\u13a6\\u13ec\": 17127,\n    \"\\u13cf\\u13b2\\u13cd\\u13aa\": 17128,\n    \"\\u2581\\u13e7\\u13c2\\u13cd\\u13d4\\u13e9\": 17129,\n    \"\\u13d7\\u13e8\\u13f2\": 17130,\n    \"\\u13d3\\u13c5\\u13d8\\u13f3\": 17131,\n    \"\\u2581\\u13ed\\u13b5\\u13cc\\u13b3\\u13d3\\u13c5\": 17132,\n    \"\\u2581\\u13ac\\u13be\\u13a2\": 17133,\n    \"\\u13b8\\u13c9\\u13d5\": 17134,\n    \"\\u2581\\u13a4\\u13f2\\u13b0\": 17135,\n    \"\\u13e5\\u13a5\\u13cd\\u13a6\": 17136,\n    \"\\u2581\\u13a4\\u13c2\\u13ef\\u13eb\": 17137,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\": 17138,\n    \"\\u13d3\\u13ef\\u13eb\\u13cd\\u13a8\\u13cd\\u13d7\": 17139,\n    \"\\u13b7\\u13c9\\u13d7\": 17140,\n    \"\\u2581\\u13e7\\u13c2\\u13f0\": 17141,\n    \"\\u13e3\\u13b6\\u13c1\\u13d4\\u13c5\": 17142,\n    \"\\u13d7\\u13d4\\u13cd\\u13d4\": 17143,\n    \"\\u2581\\u13a6\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\": 17144,\n    \"\\u13c4\\u13aa\\u13eb\\u13ce\\u13d7\\u13f1\": 17145,\n    \"\\u2581\\u13c2\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\\u13b2\": 17146,\n    \"\\u13e8\\u13c9\\u13d5\": 17147,\n    \"\\u13ea\\u13d3\\u13cd\\u13d7\\u13f1\": 17148,\n    \"\\u2581\\u13f1\\u13e3\\u13d5\\u13ef\\u13d4\\u13c1\": 17149,\n    \"\\u2581\\u13ed\\u13f4\\u13b5\": 17150,\n    \"\\u13b5\\u13b2\\u13be\": 17151,\n    \"\\u2581\\u13d8\\u13e9\\u13db\": 17152,\n    \"\\u13c1\\u13e2\\u13d9\\u13d7\": 17153,\n    \"\\u2581\\u13c2\\u13d5\\u13e8\\u13c1\": 17154,\n    \"\\u2581\\u13a0\\u13b4\\u13c8\\u13f1\": 17155,\n    \"\\u2581\\u13c2\\u13ac\\u13c1\\u13a2\": 17156,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13b8\\u13af\\u13d7\\u13ce\": 17157,\n    \"\\u13a9\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c5\\u13a9\": 17158,\n    \"\\u13d7\\u13ef\\u13a5\": 17159,\n    \"\\u13ac\\u13e9\\u13cd\\u13d9\\u13a2\": 17160,\n    \"\\u13c2\\u13eb\\u13af\": 17161,\n    \"\\u2581\\u13c2\\u13a8\\u13ac\": 17162,\n    \"\\u13cd\\u13da\\u13a2\\u13d2\\u13c3\": 17163,\n    \"\\u13ac\\u13e9\\u13be\\u13db\\u13c1\\u13a2\": 17164,\n    \"\\u13d3\\u13b4\\u13b2\\u13cd\\u13a6\": 17165,\n    \"\\u2581\\u13e5\\u13a8\\u13e5\\u13cd\\u13d5\\u13b8\": 17166,\n    \"\\u2581\\u13c2\\u13d9\\u13db\": 17167,\n    \"\\u2581\\u13c2\\u13da\\u13db\": 17168,\n    \"\\u13f4\\u13a9\\u13c1\": 17169,\n    \"\\u2581\\u13a4\\u13a9\\u13b8\\u13d4\\u13c1\": 17170,\n    \"\\u2581\\u13ef\\u13b5\\u13d7\": 17171,\n    \"\\u2581\\u13ef\\u13c1\\u13ae\": 17172,\n    \"\\u2581\\u13d7\\u13dc\": 17173,\n    \"\\u2581\\u13eb\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\": 17174,\n    \"\\u2581\\u13a4\\u13c2\\u13e8\": 17175,\n    \"\\u2581\\u13a4\\u13c2\\u13f0\\u13b8\\u13d0\": 17176,\n    \"\\u2581\\u13a0\\u13e5\\u13a9\": 17177,\n    \"\\u13d8\\u13cd\\u13d7\": 17178,\n    \"\\u2581\\u13a4\\u13c2\\u13c6\\u13c2\\u13f2\\u13cd\": 17179,\n    \"\\u13d8\\u13c3\\u13ae\\u13b8\": 17180,\n    \"\\u2581\\u13a8\\u13a6\\u13d1\\u13f4\": 17181,\n    \"\\u2581\\u13da\\u13cd\\u13da\\u13c1\": 17182,\n    \"\\u13c4\\u13e9\\u13c1\\u13ae\": 17183,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13b8\\u13c3\": 17184,\n    \"\\u13d3\\u13d7\\u13a6\\u13b4\\u13f2\": 17185,\n    \"\\u2581\\u13a4\\u13d3\\u13aa\\u13be\\u13db\\u13d4\\u13c5\": 17186,\n    \"\\u2581\\u13d8\\u13ef\": 17187,\n    \"\\u2581\\u13da\\u13c2\\u13c3\\u13a9\": 17188,\n    \"\\u13af\\u13cd\\u13d3\\u13f1\": 17189,\n    \"\\u2581\\u13c2\\u13a6\\u13be\": 17190,\n    \"\\u2581\\u13a4\\u13be\\u13e3\\u13a1\": 17191,\n    \"\\u2581\\u13d7\\u13a9\\u13a6\\u13a8\\u13a2\": 17192,\n    \"\\u13d7\\u13d5\\u13a8\\u13cd\\u13d7\": 17193,\n    \"\\u2581\\u13da\\u13eb\": 17194,\n    \"\\u2581\\u13e5\\u13d3\\u13e5\\u13b6\": 17195,\n    \"\\u13c2\\u13ea\\u13d2\": 17196,\n    \"\\u2581\\u13f3\\u13ec\\u13af\\u13f3\\u13c1\": 17197,\n    \"\\u13c2\\u13f4\\u13ae\\u13a2\": 17198,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\": 17199,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13b5\\u13aa\": 17200,\n    \"\\u2581\\u13a2\\u13f3\\u13c5\\u13c1\\u13b8\": 17201,\n    \"\\u2581\\u13e7\\u13ee\\u13d7\": 17202,\n    \"\\u2581\\u13af\\u13f0\\u13cc\\u13db\": 17203,\n    \"\\u2581\\u13ef\\u13c2\\u13cd\\u13a6\\u13a2\": 17204,\n    \"\\u2581\\u13d5\\u13e8\\u13f2\\u13af\": 17205,\n    \"\\u2581\\u13ed\\u13c2\\u13c2\\u13cc\\u13c1\": 17206,\n    \"\\u2581\\u13af\\u13c1\\u13e4\": 17207,\n    \"\\u2581\\u13ed\\u13dd\\u13c1\": 17208,\n    \"\\u13be\\u13bf\\u13ec\\u13cd\": 17209,\n    \"\\u2581\\u13d5\\u13a4\\u13c1\\u13b6\\u13d5\": 17210,\n    \"\\u13e0\\u13ce\\u13a2\": 17211,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 17212,\n    \"\\u13c3\\u13af\\u13f0\\u13b8\": 17213,\n    \"\\u13d9\\u13b3\\u13cd\\u13d7\\u13cd\\u13ac\": 17214,\n    \"\\u2581\\u13d3\\u13a6\\u13b5\\u13cd\\u13a8\": 17215,\n    \"\\u2581\\u13eb\\u13a1\": 17216,\n    \"\\u2581\\u13a4\\u13db\\u13c5\\u13a2\\u13cd\": 17217,\n    \"\\u13e3\\u13ab\\u13f4\\u13d3\\u13cf\": 17218,\n    \"\\u2581\\u13f1\\u13a6\\u13c4\": 17219,\n    \"\\u2581\\u13a4\\u13e9\\u13c5\\u13ac\": 17220,\n    \"\\u13a9\\u13b8\\u13c5\\u13a9\": 17221,\n    \"\\u13e9\\u13d5\\u13c5\": 17222,\n    \"\\u2581\\u13e9\\u13db\": 17223,\n    \"\\u2581\\u13a4\\u13c3\\u13e2\\u13c1\": 17224,\n    \"\\u2581\\u13a4\\u13b4\\u13eb\\u13cd\\u13d9\\u13d7\": 17225,\n    \"\\u13a8\\u13e8\\u13c1\\u13b4\": 17226,\n    \"\\u13a6\\u13cd\\u13aa\\u13af\": 17227,\n    \"\\u2581\\u13a0\\u13d4\\u13b4\\u13d2\\u13a9\": 17228,\n    \"\\u13e3\\u13b3\\u13cf\\u13d5\\u13c2\": 17229,\n    \"\\u13e5\\u13db\": 17230,\n    \"\\u2581\\u13a6\\u13b8\\u13b3\\u13d7\\u13e8\": 17231,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13aa\\u13b2\": 17232,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\\u13b1\\u13af\\u13cd\": 17233,\n    \"\\u2581\\u13e3\\u13c2\\u13c3\\u13a2\": 17234,\n    \"\\u13ef\\u13db\\u13db\\u13b2\\u13cd\\u13a6\": 17235,\n    \"\\u2581\\u13ac\\u13ce\": 17236,\n    \"\\u13a3\\u13be\": 17237,\n    \"\\u13d7\\u13d4\\u13cd\\u13a6\": 17238,\n    \"\\u2581\\u13ef\\u13cb\\u13d4\": 17239,\n    \"\\u2581\\u13a3\\u13a9\\u13f0\\u13b8\\u13d2\": 17240,\n    \"\\u2581\\u13a4\\u13d4\\u13b6\\u13a9\": 17241,\n    \"\\u2581\\u13e5\\u13d5\\u13d3\": 17242,\n    \"\\u2581\\u13cf\\u13cf\": 17243,\n    \"\\u2581\\u13c2\\u13cd\\u13c6\\u13db\\u13c1\\u13b8\": 17244,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 17245,\n    \"\\u13c4\\u13c2\\u13e3\\u13d4\": 17246,\n    \"\\u2581\\u13a4\\u13c2\\u13ec\\u13c1\": 17247,\n    \"\\u13a6\\u13a8\\u13c5\\u13d7\\u13cd\\u13d7\": 17248,\n    \"\\u2581\\u13da\\u13aa\\u13b5\\u13f0\\u13a5\": 17249,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13cd\\u13a6\": 17250,\n    \"\\u2581\\u13a4\\u13f2\\u13e8\\u13a2\": 17251,\n    \"\\u2581\\u13d3\\u13b5\\u13cd\\u13c6\": 17252,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13ae\\u13b5\\u13e8\": 17253,\n    \"\\u2581\\u13a0\\u13c2\\u13c6\": 17254,\n    \"\\u13d3\\u13f2\\u13e5\\u13c2\": 17255,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13c5\\u13cd\\u13d7\": 17256,\n    \"\\u2581\\u13ad\\u13c1\\u13cd\\u13a8\\u13cd\": 17257,\n    \"\\u13cd\\u13d3\\u13c1\\u13b0\": 17258,\n    \"\\u2581\\u13a1\\u13e5\\u13c5\\u13c1\": 17259,\n    \"\\u13b8\\u13b6\\u13a2\": 17260,\n    \"\\u13c5\\u13b2\\u13a9\": 17261,\n    \"\\u2581\\u13a1\\u13e4\": 17262,\n    \"\\u13c3\\u13f4\\u13d8\\u13cd\": 17263,\n    \"\\u2581\\u13a0\\u13b2\\u13cd\\u13a9\": 17264,\n    \"\\u2581\\u13a4\\u13ea\\u13e2\\u13c5\": 17265,\n    \"\\u2581\\u13a4\\u13d4\\u13d5\\u13a9\\u13cd\": 17266,\n    \"\\u13d3\\u13c5\\u13a9\": 17267,\n    \"\\u13cd\\u13d7\\u13a7\": 17268,\n    \"\\u2581\\u13a4\\u13be\\u13a1\": 17269,\n    \"\\u2581\\u13ac\\u13a9\\u13c1\\u13a2\\u13cd\": 17270,\n    \"\\u13ee\\u13c5\": 17271,\n    \"\\u2581\\u13ad\\u13cf\": 17272,\n    \"\\u13a9\\u13cc\\u13db\": 17273,\n    \"\\u2581\\u13f1\\u13a6\\u13b7\\u13aa\": 17274,\n    \"\\u13ac\\u13c3\\u13af\\u13cf\": 17275,\n    \"\\u2581\\u13a4\\u13d3\\u13ea\\u13b5\": 17276,\n    \"\\u13e3\\u13cd\\u13c6\\u13c2\\u13aa\\u13d7\": 17277,\n    \"\\u2581\\u13da\\u13c2\\u13df\\u13cc\\u13c5\": 17278,\n    \"\\u13c9\\u13af\\u13f3\": 17279,\n    \"\\u13ac\\u13ce\\u13b8\": 17280,\n    \"\\u13c5\\u13cd\\u13d4\\u13c5\\u13a9\": 17281,\n    \"\\u13d5\\u13d2\\u13c5\": 17282,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13d5\\u13c1\\u13b8\": 17283,\n    \"\\u13a6\\u13be\\u13a6\\u13d8\": 17284,\n    \"\\u2581\\u13eb\\u13d3\\u13c2\\u13f4\": 17285,\n    \"\\u2581\\u13a0\\u13c6\\u13d9\": 17286,\n    \"\\u13af\\u13ce\\u13d7\": 17287,\n    \"\\u2581\\u13c2\\u13d1\\u13ea\\u13ce\": 17288,\n    \"\\u13ac\\u13d3\\u13c3\\u13cd\": 17289,\n    \"\\u2581\\u13ed\\u13b8\\u13c5\": 17290,\n    \"\\u2581\\u13d9\\u13c5\": 17291,\n    \"\\u13e6\\u13b8\": 17292,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13df\\u13b6\\u13cd\": 17293,\n    \"\\u2581\\u13a4\\u13e4\\u13cd\\u13d7\": 17294,\n    \"\\u2581\\u13e3\\u13cc\": 17295,\n    \"\\u13c6\\u13b8\": 17296,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13f2\\u13af\": 17297,\n    \"\\u2581\\u13c1\\u13cd\\u13d7\": 17298,\n    \"\\u2581\\u13da\\u13e2\": 17299,\n    \"\\u2581\\u13a9\\u13db\": 17300,\n    \"\\u2581\\u13d5\\u13a6\\u13b7\\u13a8\": 17301,\n    \"\\u2581\\u13a2\\u13a9\\u13cd\\u13a6\": 17302,\n    \"\\u2581\\u13a0\\u13c2\\u13cc\": 17303,\n    \"\\u13e5\\u13c5\\u13cf\\u13db\": 17304,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 17305,\n    \"\\u13a8\\u13f3\\u13d0\": 17306,\n    \"\\u2581\\u13a3\\u13aa\\u13af\\u13f3\\u13af\": 17307,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13df\\u13d0\\u13d7\": 17308,\n    \"\\u2581\\u13a0\\u13b5\\u13f0\\u13b5\": 17309,\n    \"\\u2581\\u13d7\\u13c2\\u13b6\": 17310,\n    \"\\u13ef\\u13d8\\u13c3\\u13af\\u13cd\\u13d7\": 17311,\n    \"\\u2581\\u13d3\\u13f4\": 17312,\n    \"\\u13c2\\u13e8\\u13c1\\u13b8\": 17313,\n    \"\\u2581\\u13a4\\u13d3\\u13c2\\u13b5\\u13a8\\u13a2\": 17314,\n    \"\\u13be\\u13dd\\u13a5\\u13a2\": 17315,\n    \"\\u13d3\\u13e2\": 17316,\n    \"\\u2581\\u13a3\\u13ad\\u13c1\\u13af\": 17317,\n    \"\\u2581\\u13a4\\u13d5\\u13c1\\u13b8\\u13a2\": 17318,\n    \"\\u13cc\\u13b9\\u13d7\\u13f4\": 17319,\n    \"\\u2581\\u13da\\u13c2\\u13cd\\u13da\\u13c5\": 17320,\n    \"\\u2581\\u13a0\\u13be\\u13ce\\u13b5\": 17321,\n    \"\\u2581\\u13d3\\u13a6\\u13d8\\u13f0\": 17322,\n    \"\\u13b5\\u13aa\\u13e9\\u13d5\": 17323,\n    \"\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 17324,\n    \"\\u2581\\u13a2\\u13e5\\u13b7\\u13e8\": 17325,\n    \"\\u2581\\u13eb\\u13d5\\u13a8\\u13a6\\u13d3\\u13a2\": 17326,\n    \"\\u13e3\\u13c5\\u13d3\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 17327,\n    \"\\u13be\\u13c1\\u13b6\\u13d7\": 17328,\n    \"\\u2581\\u13da\\u13c5\\u13c1\\u13b8\": 17329,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13be\": 17330,\n    \"\\u2581\\u13a8\\u13e3\\u13d5\\u13c1\": 17331,\n    \"\\u2581\\u13d5\\u13e3\\u13e0\\u13f1\": 17332,\n    \"\\u2581\\u13a4\\u13c2\\u13ae\": 17333,\n    \"\\u2581\\u13ee\\u13d3\\u13e5\\u13ef\": 17334,\n    \"\\u13ac\\u13e9\\u13d3\\u13b4\\u13c5\\u13db\": 17335,\n    \"\\u2581\\u13a3\\u13a6\\u13e4\\u13b5\\u13aa\": 17336,\n    \"\\u2581\\u13a4\\u13be\\u13d9\\u13b4\\u13c6\": 17337,\n    \"\\u13be\\u13d5\\u13d8\\u13f4\": 17338,\n    \"\\u13ce\\u13b5\\u13d9\\u13d4\\u13c5\": 17339,\n    \"\\u2581\\u13a4\\u13b8\\u13c5\": 17340,\n    \"\\u13e3\\u13d5\\u13ef\\u13d9\\u13d7\\u13ad\": 17341,\n    \"\\u2581\\u13a1\\u13e3\\u13e1\\u13d7\": 17342,\n    \"\\u13c1\\u13b4\\u13c3\": 17343,\n    \"\\u13b5\\u13ce\\u13cd\\u13d7\": 17344,\n    \"\\u13e6\\u13ce\\u13b8\\u13af\": 17345,\n    \"\\u13c1\\u13d2\\u13ad\": 17346,\n    \"\\u13cc\\u13c6\\u13b4\\u13b8\": 17347,\n    \"\\u13ac\\u13b7\\u13e4\\u13b5\": 17348,\n    \"\\u2581\\u13a2\\u13e4\\u13ef\\u13d4\\u13af\": 17349,\n    \"\\u2581\\u13e5\\u13cd\\u13ab\\u13d5\\u13d2\": 17350,\n    \"\\u2581\\u13eb\\u13e5\\u13ef\": 17351,\n    \"\\u2581\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 17352,\n    \"\\u2581\\u13d7\\u13e5\\u13c2\\u13f4\\u13d7\": 17353,\n    \"\\u13e5\\u13b8\": 17354,\n    \"\\u2581\\u13a4\\u13be\\u13b8\": 17355,\n    \"\\u2581\\u13ef\\u13f4\": 17356,\n    \"\\u13c6\\u13d2\\u13ad\\u13c2\\u13b8\": 17357,\n    \"\\u13da\\u13f2\\u13d0\": 17358,\n    \"\\u2581\\u13f1\\u13d9\\u13e5\\u13f2\\u13b1\": 17359,\n    \"\\u13f1\\u13cd\\u13ac\\u13a2\": 17360,\n    \"\\u13e5\\u13ef\\u13d0\\u13c5\\u13f0\\u13b5\": 17361,\n    \"\\u13a9\\u13c3\\u13ae\\u13ad\": 17362,\n    \"\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 17363,\n    \"\\u2581\\u13a0\\u13cc\\u13c3\": 17364,\n    \"\\u2581\\u13da\\u13b3\\u13cd\\u13ac\\u13a2\": 17365,\n    \"\\u13a6\\u13b6\\u13cd\\u13ac\": 17366,\n    \"\\u13d2\\u13ad\\u13c2\\u13b8\": 17367,\n    \"\\u13c2\\u13cd\\u13d3\\u13e9\\u13d9\\u13b8\\u13af\": 17368,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13b4\\u13a2\": 17369,\n    \"\\u2581\\u13f1\\u13d7\\u13b5\": 17370,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d2\": 17371,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13c2\\u13f2\\u13b1\\u13af\": 17372,\n    \"\\u2581\\u13d9\\u13db\\u13cd\": 17373,\n    \"\\u13e9\\u13db\\u13cd\\u13d7\": 17374,\n    \"\\u2581\\u13a2\\u13e3\\u13c9\": 17375,\n    \"\\u2581\\u13c1\\u13b5\\u13cd\\u13ac\\u13c3\": 17376,\n    \"\\u13f3\\u13d5\\u13c3\": 17377,\n    \"\\u2581\\u13d3\\u13f0\\u13d9\": 17378,\n    \"\\u13cd\\u13d7\\u13c3\\u13ae\\u13cd\\u13ac\": 17379,\n    \"\\u13e9\\u13d7\": 17380,\n    \"\\u13e9\\u13db\\u13af\\u13b4\": 17381,\n    \"\\u2581\\u13a8\\u13a6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\": 17382,\n    \"\\u2581\\u13a4\\u13d3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\": 17383,\n    \"\\u13f1\\u13b2\\u13a2\": 17384,\n    \"\\u13d3\\u13aa\\u13e9\\u13d8\\u13cd\\u13aa\\u13a2\": 17385,\n    \"\\u13e5\\u13cc\\u13db\\u13a5\\u13cd\\u13a9\": 17386,\n    \"\\u13a0\\u13a9\\u13a7\\u13c1\\u13b8\": 17387,\n    \"\\u13d3\\u13b5\\u13cc\\u13b3\\u13d7\": 17388,\n    \"\\u13cc\\u13b9\\u13d7\": 17389,\n    \"\\u13d7\\u13e3\\u13a7\\u13be\": 17390,\n    \"\\u2581\\u13da\\u13b4\\u13c5\\u13f0\\u13c3\": 17391,\n    \"\\u2581\\u13a3\\u13a9\\u13d2\\u13cd\\u13d7\": 17392,\n    \"\\u13ac\\u13be\\u13ec\\u13cd\\u13ac\": 17393,\n    \"\\u2581\\u13ed\\u13d3\\u13c5\\u13d6\": 17394,\n    \"\\u2581\\u13a1\\u13e3\\u13b5\\u13a1\": 17395,\n    \"\\u2581\\u13a4\\u13cd\\u13d8\": 17396,\n    \"\\u2581\\u13e9\\u13e0\\u13a0\": 17397,\n    \"\\u2581\\u13a8\\u13e5\\u13c3\\u13c1\\u13b8\": 17398,\n    \"\\u2581\\u13a2\\u13e4\\u13d9\\u13b2\": 17399,\n    \"\\u2581\\u13f1\\u13da\\u13d3\\u13f2\": 17400,\n    \"\\u2581\\u13a5\\u13d3\": 17401,\n    \"\\u2581\\u13a4\\u13a7\\u13d4\\u13b2\": 17402,\n    \"\\u2581\\u13a4\\u13c7\\u13d3\\u13b8\\u13c9\": 17403,\n    \"\\u13ec\\u13c2\\u13ce\\u13a2\": 17404,\n    \"\\u2581\\u13ef\\u13cd\\u13a6\\u13c5\": 17405,\n    \"\\u2581\\u13da\\u13c3\\u13d5\\u13af\": 17406,\n    \"\\u2581\\u13a6\\u13c3\\u13b8\\u13a5\\u13cd\\u13ac\\u13a2\": 17407,\n    \"\\u2581\\u13e5\\u13d5\\u13a9\": 17408,\n    \"\\u13e5\\u13f2\\u13ce\\u13ae\\u13cd\\u13d7\": 17409,\n    \"\\u13a9\\u13cd\\u13a8\\u13a2\": 17410,\n    \"\\u13e8\\u13ef\\u13b5\\u13e5\\u13d9\\u13c1\\u13b8\\u13a9\": 17411,\n    \"\\u2581\\u13e7\\u13ea\\u13f0\\u13cd\\u13d7\": 17412,\n    \"\\u2581\\u13e7\\u13c2\\u13ac\\u13e9\\u13b6\": 17413,\n    \"\\u13e3\\u13b5\\u13c2\\u13ac\\u13a6\": 17414,\n    \"\\u2581\\u13cd\\u13a9\\u13db\\u13d4\\u13c2\": 17415,\n    \"\\u13be\\u13d3\\u13f4\\u13b3\\u13db\": 17416,\n    \"\\u13ef\\u13d8\\u13c4\\u13a6\": 17417,\n    \"\\u2581\\u13d3\\u13be\\u13d8\\u13c1\": 17418,\n    \"\\u13db\\u13c5\\u13c2\": 17419,\n    \"\\u2581\\u13da\\u13ed\\u13aa\": 17420,\n    \"\\u13d7\\u13d7\\u13d0\": 17421,\n    \"\\u2581\\u13a1\\u13c6\\u13d3\": 17422,\n    \"\\u13cd\\u13d7\\u13f4\\u13cd\\u13d7\\u13f1\": 17423,\n    \"\\u13b5\\u13f0\\u13a2\\u13b8\\u13cd\": 17424,\n    \"\\u2581\\u13a1\\u13e3\\u13ab\\u13f4\\u13a1\": 17425,\n    \"\\u2581\\u13a2\\u13f4\\u13d3\": 17426,\n    \"\\u13ed\\u13d3\\u13b4\\u13ce\\u13a2\": 17427,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13a1\": 17428,\n    \"\\u2581\\u13c5\\u13db\\u13a9\\u13c5\": 17429,\n    \"\\u2581\\u13d3\\u13c2\\u13ec\\u13c2\": 17430,\n    \"\\u13a6\\u13db\\u13c5\": 17431,\n    \"\\u13d8\\u13b9\": 17432,\n    \"\\u13e5\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13ad\": 17433,\n    \"\\u2581\\u13ac\\u13e9\\u13ef\\u13eb\\u13cd\": 17434,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13cd\\u13da\": 17435,\n    \"\\u13be\\u13db\\u13c1\\u13b5\\u13d9\\u13af\": 17436,\n    \"\\u13b5\\u13ae\\u13b5\\u13e4\\u13ae\": 17437,\n    \"\\u13d7\\u13e5\\u13b1\\u13cd\\u13d5\\u13ce\": 17438,\n    \"\\u2581\\u13a4\\u13d7\\u13e9\": 17439,\n    \"\\u2581\\u13a4\\u13b6\\u13a9\\u13b8\\u13a9\": 17440,\n    \"\\u13cd\\u13c6\\u13b8\\u13a1\\u13b8\": 17441,\n    \"\\u2581\\u13a1\\u13e6\\u13a2\\u13f3\\u13b2\": 17442,\n    \"\\u13a6\\u13d5\\u13f2\\u13b2\\u13cd\\u13a6\": 17443,\n    \"\\u13e4\\u13b7\\u13af\\u13cd\\u13d7\": 17444,\n    \"\\u13b5\\u13ce\\u13ae\": 17445,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\": 17446,\n    \"\\u2581\\u13da\\u13c2\\u13e2\\u13c1\": 17447,\n    \"\\u13af\\u13c2\\u13f4\\u13ce\\u13cd\\u13d7\": 17448,\n    \"\\u2581\\u13d3\\u13dc\\u13cd\\u13d7\\u13cd\": 17449,\n    \"\\u13da\\u13ed\\u13aa\\u13d4\\u13c1\\u13a2\": 17450,\n    \"\\u2581\\u13a5\\u13a9\\u13c1\\u13e4\\u13d7\": 17451,\n    \"\\u2581\\u13a4\\u13e2\\u13c5\": 17452,\n    \"\\u2581\\u13d5\\u13e3\\u13d7\": 17453,\n    \"\\u2581\\u13ef\\u13db\\u13d3\\u13cd\": 17454,\n    \"\\u13c2\\u13ac\\u13a8\\u13cd\\u13d7\": 17455,\n    \"\\u2581\\u13b9\\u13c1\": 17456,\n    \"\\u2581\\u13a0\\u13c6\\u13da\\u13b8\": 17457,\n    \"\\u13be\\u13d3\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\": 17458,\n    \"\\u13c2\\u13cd\\u13d5\\u13b8\": 17459,\n    \"\\u13ac\\u13a9\\u13a6\\u13d8\\u13b4\": 17460,\n    \"\\u2581\\u13da\\u13c2\\u13a8\\u13af\\u13d9\\u13b4\": 17461,\n    \"\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 17462,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13b8\\u13d4\": 17463,\n    \"\\u2581\\u13a2\\u13b3\\u13cf\": 17464,\n    \"\\u2581\\u13da\\u13aa\\u13ae\\u13a2\": 17465,\n    \"\\u13f4\\u13cd\\u13d4\\u13c5\\u13af\": 17466,\n    \"\\u2581\\u13e9\\u13a9\\u13b7\\u13af\\u13cd\\u13d7\": 17467,\n    \"\\u2581\\u13a3\\u13a9\\u13cd\\u13a6\\u13c5\\u13e8\": 17468,\n    \"\\u2581\\u13a1\\u13d9\\u13d3\\u13c3\": 17469,\n    \"\\u13a9\\u13a1\\u13d7\\u13f1\": 17470,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d5\\u13b5\\u13cd\": 17471,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13aa\\u13a2\": 17472,\n    \"\\u2581\\u13a3\\u13a6\\u13da\\u13a9\": 17473,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13c2\\u13f4\": 17474,\n    \"\\u2581\\u13a0\\u13d3\\u13d9\\u13b5\": 17475,\n    \"\\u13eb\\u13d7\\u13e3\\u13a7\\u13be\": 17476,\n    \"\\u2581\\u13a2\\u13e5\\u13f4\\u13b8\": 17477,\n    \"\\u2581\\u13a4\\u13d5\\u13f2\": 17478,\n    \"\\u13cd\\u13db\\u13d3\": 17479,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13be\\u13db\": 17480,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13b5\\u13a2\": 17481,\n    \"\\u2581\\u13a3\\u13cd\\u13d7\\u13b6\": 17482,\n    \"\\u2581\\u13cd\\u13c6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\": 17483,\n    \"\\u13d4\\u13f2\\u13af\\u13ae\\u13cd\\u13d7\": 17484,\n    \"\\u2581\\u13a0\\u13c2\\u13c1\\u13a2\": 17485,\n    \"\\u13f2\\u13b8\\u13be\": 17486,\n    \"\\u13e5\\u13cd\\u13a6\\u13be\\u13a2\": 17487,\n    \"\\u13e9\\u13d5\\u13a9\": 17488,\n    \"\\u13b8\\u13cd\\u13d7\\u13cd\\u13a8\\u13a2\": 17489,\n    \"\\u13c1\\u13a6\\u13b8\": 17490,\n    \"\\u2581\\u13e4\\u13e0\": 17491,\n    \"\\u13e9\\u13c5\\u13ec\": 17492,\n    \"\\u13e3\\u13b4\": 17493,\n    \"\\u2581\\u13e7\\u13c2\\u13b7\": 17494,\n    \"\\u13a6\\u13ef\\u13b1\\u13b6\": 17495,\n    \"\\u2581\\u13c2\\u13d3\\u13c2\": 17496,\n    \"\\u13be\\u13b5\\u13cd\\u13d4\\u13c5\\u13a9\": 17497,\n    \"\\u13af\\u13b2\\u13a9\": 17498,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13c5\\u13ad\": 17499,\n    \"\\u13e8\\u13cd\\u13d5\\u13b8\\u13a1\\u13d7\\u13f1\": 17500,\n    \"\\u13c2\\u13c1\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 17501,\n    \"\\u2581\\u13ac\\u13d7\\u13cf\": 17502,\n    \"\\u2581\\u13d3\\u13be\\u13d5\\u13cd\\u13aa\": 17503,\n    \"\\u2581\\u13a7\\u13c1\\u13c9\\u13a8\\u13c9\": 17504,\n    \"\\u2581\\u13a4\\u13b5\\u13c3\\u13ae\\u13d4\\u13c5\": 17505,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13ce\": 17506,\n    \"\\u13a4\\u13ea\\u13a7\\u13c1\\u13d7\\u13f1\": 17507,\n    \"\\u13be\\u13d3\\u13f4\\u13b3\\u13d4\": 17508,\n    \"\\u2581\\u13a4\\u13b8\\u13d5\\u13cd\\u13d7\\u13cd\": 17509,\n    \"\\u13a6\\u13d8\\u13cf\\u13d7\\u13e2\": 17510,\n    \"\\u13c6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13b8\": 17511,\n    \"\\u13a4\\u13b5\\u13ec\\u13e5\\u13d5\\u13be\": 17512,\n    \"\\u2581\\u13da\\u13eb\\u13d2\": 17513,\n    \"\\u2581\\u13b0\\u13e9\\u13c9\": 17514,\n    \"\\u13e5\\u13a9\\u13a1\\u13d7\": 17515,\n    \"\\u13bf\\u13d7\\u13cd\\u13d7\\u13cd\\u13a8\": 17516,\n    \"\\u2581\\u13d5\\u13e8\\u13ef\\u13a7\": 17517,\n    \"\\u2581\\u13c1\\u13b9\": 17518,\n    \"\\u13ab\\u13cd\\u13d9\": 17519,\n    \"\\u2581\\u13a0\\u13a9\\u13b6\\u13d2\": 17520,\n    \"\\u2581\\u13a2\\u13e5\\u13c5\\u13cf\\u13d9\": 17521,\n    \"\\u2581\\u13a4\\u13c1\\u13a9\\u13d2\": 17522,\n    \"\\u13ac\\u13e9\\u13b5\\u13aa\\u13c1\\u13b8\\u13a9\": 17523,\n    \"\\u2581\\u13d5\\u13e5\\u13f2\\u13b5\": 17524,\n    \"\\u13cc\\u13d9\\u13f1\": 17525,\n    \"\\u13e6\\u13f4\": 17526,\n    \"\\u2581\\u13c2\\u13db\\u13c1\": 17527,\n    \"\\u13a6\\u13d9\\u13a8\\u13a2\": 17528,\n    \"\\u13ad\\u13f0\\u13af\": 17529,\n    \"\\u2581\\u13a2\\u13e5\\u13c4\\u13aa\\u13a2\": 17530,\n    \"\\u2581\\u13d7\\u13d3\\u13d6\": 17531,\n    \"\\u2581\\u13e8\\u13db\\u13cd\\u13c6\": 17532,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13a5\\u13c2\\u13b8\": 17533,\n    \"\\u2581\\u13a0\\u13c2\\u13c4\\u13aa\\u13ac\": 17534,\n    \"\\u2581\\u13ab\\u13e9\\u13d5\": 17535,\n    \"\\u13cd\\u13a9\\u13f0\\u13b3\\u13cd\\u13d4\": 17536,\n    \"\\u2581\\u13eb\\u13c4\\u13e9\\u13c1\": 17537,\n    \"\\u13f0\\u13b8\\u13cd\\u13a8\": 17538,\n    \"\\u13a7\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 17539,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13ce\\u13b4\": 17540,\n    \"\\u13d7\\u13db\\u13d7\": 17541,\n    \"\\u2581\\u13d5\\u13a4\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 17542,\n    \"\\u2581\\u13e6\\u13a9\\u13f0\\u13b8\": 17543,\n    \"\\u2581\\u13a3\\u13a9\\u13db\": 17544,\n    \"\\u13df\\u13cf\\u13cd\\u13a8\\u13cd\\u13d7\": 17545,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\": 17546,\n    \"\\u13b0\\u13cd\\u13d7\": 17547,\n    \"\\u13a6\\u13b5\\u13a5\\u13c2\": 17548,\n    \"\\u2581\\u13d3\\u13c2\\u13c2\\u13f1\": 17549,\n    \"\\u2581\\u13ad\\u13eb\": 17550,\n    \"\\u13b5\\u13d6\\u13b8\\u13ae\\u13cd\\u13ac\": 17551,\n    \"\\u2581\\u13a0\\u13af\\u13cd\\u13d7\": 17552,\n    \"\\u13ec\\u13d4\\u13c2\": 17553,\n    \"\\u2581\\u13f1\\u13ac\\u13a9\\u13e9\\u13db\": 17554,\n    \"\\u13b2\\u13ac\": 17555,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13d9\": 17556,\n    \"\\u2581\\u13da\\u13be\\u13b4\\u13c1\\u13c3\": 17557,\n    \"\\u13d4\\u13f1\": 17558,\n    \"\\u2581\\u13e7\\u13ed\\u13aa\\u13d4\\u13c5\": 17559,\n    \"\\u2581\\u13d5\\u13e5\\u13f2\\u13af\\u13ce\\u13b8\": 17560,\n    \"\\u2581\\u13e7\\u13a6\\u13be\": 17561,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13cd\\u13aa\\u13b8\": 17562,\n    \"\\u13aa\\u13af\\u13d7\": 17563,\n    \"\\u13a4\\u13ea\\u13aa\\u13d7\": 17564,\n    \"\\u2581\\u13a4\\u13d5\\u13b4\": 17565,\n    \"\\u2581\\u13ad\\u13bb\\u13c3\": 17566,\n    \"\\u13ac\\u13e9\\u13b6\\u13d3\\u13c1\\u13b8\": 17567,\n    \"\\u2581\\u13d9\\u13a9\\u13f2\": 17568,\n    \"\\u2581\\u13c4\\u13cd\\u13d9\": 17569,\n    \"\\u2581\\u13da\\u13d8\": 17570,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13da\\u13b5\": 17571,\n    \"\\u13e5\\u13df\\u13cf\\u13cd\\u13a8\\u13cd\\u13d7\": 17572,\n    \"\\u2581\\u13d2\\u13b2\": 17573,\n    \"\\u2581\\u13da\\u13d9\\u13e2\\u13d2\": 17574,\n    \"\\u13e8\\u13a8\\u13eb\\u13d2\": 17575,\n    \"\\u2581\\u13ac\\u13e9\\u13d5\\u13e8\": 17576,\n    \"\\u13d3\\u13f4\\u13d9\\u13d7\": 17577,\n    \"\\u13d5\\u13d2\\u13ad\": 17578,\n    \"\\u13a6\\u13b5\\u13ec\\u13a9\": 17579,\n    \"\\u2581\\u13d4\\u13b4\\u13c5\": 17580,\n    \"\\u13b3\\u13d7\\u13cd\\u13d7\\u13f1\": 17581,\n    \"\\u13aa\\u13a9\\u13d4\\u13f2\\u13ce\\u13b2\\u13a9\": 17582,\n    \"\\u2581\\u13a2\\u13a9\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 17583,\n    \"\\u13d9\\u13af\\u13f3\\u13b2\\u13cd\\u13a6\": 17584,\n    \"\\u2581\\u13e7\\u13c2\\u13c1\\u13b5\": 17585,\n    \"\\u13d8\\u13cd\\u13d3\\u13c1\\u13b0\": 17586,\n    \"\\u13b5\\u13d4\\u13d7\\u13c5\\u13ce\": 17587,\n    \"\\u2581\\u13a3\\u13a9\\u13c2\\u13f0\": 17588,\n    \"\\u2581\\u13a0\\u13a6\\u13d8\\u13c3\\u13af\\u13cd\\u13d7\": 17589,\n    \"\\u2581\\u13e5\\u13ac\\u13da\": 17590,\n    \"\\u13d8\\u13f0\\u13b4\": 17591,\n    \"\\u2581\\u13a3\\u13a9\\u13f1\": 17592,\n    \"\\u2581\\u13a2\\u13e4\\u13b2\\u13a9\": 17593,\n    \"\\u2581\\u13a4\\u13be\\u13d6\\u13c6\\u13b6\": 17594,\n    \"\\u2581\\u13f1\\u13da\\u13c2\\u13f2\": 17595,\n    \"\\u13ef\\u13ea\\u13a6\": 17596,\n    \"\\u13e5\\u13c4\\u13aa\\u13eb\\u13d2\\u13a9\": 17597,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d6\\u13af\\u13b6\": 17598,\n    \"\\u13d3\\u13a7\\u13bf\\u13e9\\u13d5\\u13aa\": 17599,\n    \"\\u2581\\u13f4\\u13d7\\u13cd\\u13ac\": 17600,\n    \"\\u2581\\u13d7\\u13d3\\u13d3\": 17601,\n    \"\\u2581\\u13a4\\u13b7\\u13af\\u13cd\": 17602,\n    \"\\u2581\\u13f3\\u13c2\\u13b8\": 17603,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13db\\u13c1\": 17604,\n    \"\\u13e3\\u13d7\\u13d2\\u13c2\": 17605,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\": 17606,\n    \"\\u2581\\u13e7\\u13be\\u13db\\u13c5\": 17607,\n    \"\\u2581\\u13e9\\u13a9\\u13b7\\u13e5\": 17608,\n    \"\\u13db\\u13d3\\u13c1\\u13b5\": 17609,\n    \"\\u2581\\u13d7\\u13a6\\u13be\": 17610,\n    \"\\u2581\\u13da\\u13c3\\u13b8\\u13d2\": 17611,\n    \"\\u2581\\u13f3\\u13aa\\u13b2\": 17612,\n    \"\\u2581\\u13a0\\u13d3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\\u13aa\": 17613,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\": 17614,\n    \"\\u2581\\u13c2\\u13d3\\u13e3\\u13b5\\u13cd\\u13d4\": 17615,\n    \"\\u13c4\\u13aa\\u13d4\\u13c5\": 17616,\n    \"\\u13db\\u13c9\": 17617,\n    \"\\u13db\\u13e8\\u13a9\": 17618,\n    \"\\u2581\\u13da\\u13c4\\u13aa\\u13d4\": 17619,\n    \"\\u2581\\u13d3\\u13c2\\u13f4\": 17620,\n    \"\\u13e3\\u13b3\\u13a9\": 17621,\n    \"\\u13a9\\u13be\\u13a9\\u13db\": 17622,\n    \"ll\": 17623,\n    \"\\u13ef\\u13ea\\u13d0\\u13b8\\u13cd\\u13d7\": 17624,\n    \"\\u2581\\u13a4\\u13ea\\u13b5\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\": 17625,\n    \"\\u2581\\u13f1\\u13ac\\u13bf\\u13d7\\u13cd\": 17626,\n    \"\\u2581\\u13d5\\u13af\\u13f0\\u13cc\": 17627,\n    \"\\u2581\\u13eb\\u13da\\u13d0\": 17628,\n    \"\\u13a4\\u13af\": 17629,\n    \"\\u2581\\u13a4\\u13c2\\u13e5\\u13b8\\u13c5\": 17630,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\\u13c5\\u13be\": 17631,\n    \"\\u2581\\u13a3\\u13a6\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\": 17632,\n    \"\\u2581\\u13a6\\u13cd\\u13a9\": 17633,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13b8\\u13cd\\u13d4\": 17634,\n    \"\\u2581\\u13d5\\u13a6\\u13c5\\u13cc\": 17635,\n    \"\\u2581\\u13e7\\u13bf\\u13ec\": 17636,\n    \"\\u13aa\\u13d4\\u13c5\\u13ad\": 17637,\n    \"\\u13a9\\u13a7\\u13ad\": 17638,\n    \"\\u13c2\\u13b8\\u13c9\\u13d7\\u13ad\": 17639,\n    \"\\u2581\\u13ac\\u13e9\\u13c3\\u13ce\": 17640,\n    \"\\u2581\\u13a0\\u13f2\\u13a4\": 17641,\n    \"\\u13d9\\u13a5\\u13d4\\u13c5\": 17642,\n    \"\\u13a0\\u13cf\": 17643,\n    \"\\u13a9\\u13cd\\u13d3\\u13f1\\u13d5\\u13b8\": 17644,\n    \"\\u13cd\\u13a6\\u13cd\\u13d3\\u13c1\\u13b2\": 17645,\n    \"\\u13a9\\u13b5\\u13f2\\u13e5\\u13d9\\u13b2\": 17646,\n    \"\\u2581\\u13d7\\u13e0\\u13af\\u13cd\\u13d9\": 17647,\n    \"\\u2581\\u13ac\\u13e9\\u13aa\\u13e9\": 17648,\n    \"\\u13a6\\u13de\\u13e5\": 17649,\n    \"\\u13e3\\u13b7\\u13e4\\u13ae\\u13cd\\u13d7\": 17650,\n    \"\\u13e6\\u13c1\\u13a2\": 17651,\n    \"\\u13b5\\u13b2\\u13a2\": 17652,\n    \"\\u2581\\u13ac\\u13c1\\u13a2\\u13cd\\u13d3\\u13c1\": 17653,\n    \"\\u13c2\\u13a6\\u13d6\": 17654,\n    \"\\u2581\\u13f1\\u13e3\\u13a6\\u13cc\\u13ef\\u13cd\": 17655,\n    \"\\u13db\\u13c2\\u13cc\\u13c2\": 17656,\n    \"\\u13da\\u13b2\\u13a6\": 17657,\n    \"\\u13d1\\u13ac\": 17658,\n    \"\\u2581\\u13db\\u13d5\": 17659,\n    \"\\u2581\\u13a4\\u13ea\\u13c5\\u13a2\": 17660,\n    \"\\u2581\\u13ed\\u13ce\\u13b4\": 17661,\n    \"\\u2581\\u13d7\\u13a9\\u13c2\\u13d3\\u13cd\\u13d7\": 17662,\n    \"\\u2581\\u13d4\\u13b8\": 17663,\n    \"\\u2581\\u13a6\\u13b3\\u13c5\\u13db\\u13c9\": 17664,\n    \"\\u2581\\u13a8\\u13e3\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\": 17665,\n    \"\\u13df\\u13cf\\u13cd\\u13ac\": 17666,\n    \"\\u2581\\u13a3\\u13e5\\u13aa\\u13e9\\u13db\": 17667,\n    \"\\u13be\\u13b8\\u13e4\": 17668,\n    \"\\u2581\\u13d3\\u13ac\\u13c2\": 17669,\n    \"\\u13d7\\u13cd\\u13a6\\u13a9\": 17670,\n    \"\\u13a0\\u13c1\": 17671,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13b4\": 17672,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13cc\\u13ef\\u13cd\\u13d9\": 17673,\n    \"\\u2581\\u13a4\\u13d7\\u13cd\\u13a9\": 17674,\n    \"\\u13e3\\u13df\\u13f4\\u13d7\": 17675,\n    \"\\u13e5\\u13e9\\u13db\\u13a1\": 17676,\n    \"\\u13d1\\u13b5\": 17677,\n    \"\\u2581\\u13d3\\u13c2\\u13b5\": 17678,\n    \"\\u2581\\u13eb\\u13d8\\u13a6\\u13d4\\u13b2\\u13cd\": 17679,\n    \"\\u13b5\\u13d9\": 17680,\n    \"\\u2581\\u13e5\\u13c4\\u13db\": 17681,\n    \"\\u13e5\\u13cd\\u13a6\\u13a2\\u13ae\\u13cd\\u13d7\": 17682,\n    \"\\u13d9\\u13ea\\u13b8\": 17683,\n    \"\\u2581\\u13ac\\u13e9\\u13d2\": 17684,\n    \"\\u2581\\u13d7\\u13a6\\u13d8\": 17685,\n    \"\\u2581\\u13a4\\u13da\\u13a8\": 17686,\n    \"\\u13b6\\u13c4\\u13ae\\u13d4\\u13c5\\u13a9\": 17687,\n    \"\\u13cd\\u13da\\u13b2\\u13a6\": 17688,\n    \"\\u2581\\u13a4\\u13ec\\u13ef\": 17689,\n    \"\\u13b4\\u13eb\\u13cd\\u13d4\\u13c1\": 17690,\n    \"\\u2581\\u13f1\\u13d3\\u13a9\\u13aa\": 17691,\n    \"\\u13d3\\u13d3\\u13c2\\u13b8\\u13aa\": 17692,\n    \"\\u2581\\u13e5\\u13da\\u13e0\": 17693,\n    \"\\u2581\\u13a6\\u13e3\": 17694,\n    \"\\u2581\\u13a6\\u13a8\\u13e5\\u13c1\": 17695,\n    \"\\u2581\\u13a4\\u13ab\": 17696,\n    \"\\u2581\\u13a4\\u13c2\\u13a7\\u13c5\": 17697,\n    \"\\u13d3\\u13be\\u13e0\\u13f1\": 17698,\n    \"\\u2581\\u13d7\\u13e3\\u13cd\\u13d7\": 17699,\n    \"\\u2581\\u13c2\\u13cd\\u13d3\\u13db\\u13c1\": 17700,\n    \"\\u13c5\\u13b2\": 17701,\n    \"\\u2581\\u13d5\\u13af\\u13f2\": 17702,\n    \"\\u2581\\u13ef\\u13b5\\u13cd\\u13d4\\u13f4\": 17703,\n    \"\\u2581\\u13de\\u13a9\": 17704,\n    \"\\u13a6\\u13d4\\u13db\\u13cd\": 17705,\n    \"\\u2581\\u13a4\\u13bf\\u13b8\\u13d2\": 17706,\n    \"\\u2581\\u13a0\\u13f2\\u13b5\\u13c9\": 17707,\n    \"\\u2581\\u13eb\\u13da\\u13be\\u13e0\": 17708,\n    \"\\u2581\\u13ed\\u13d3\\u13cf\": 17709,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13b4\": 17710,\n    \"\\u2581\\u13a2\\u13ac\\u13af\": 17711,\n    \"\\u2581\\u13e8\\u13e4\": 17712,\n    \"\\u2581\\u13da\\u13c5\\u13a6\\u13b8\\u13ae\": 17713,\n    \"\\u2581\\u13eb\\u13b5\": 17714,\n    \"\\u2581\\u13d5\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\": 17715,\n    \"\\u13b0\\u13d3\": 17716,\n    \"\\u13c2\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 17717,\n    \"\\u13d3\\u13c5\\u13d6\\u13b3\": 17718,\n    \"\\u13be\\u13d5\\u13ef\\u13d9\": 17719,\n    \"\\u2581\\u13db\\u13c2\\u13b6\": 17720,\n    \"\\u2581\\u13d5\\u13a8\\u13f0\": 17721,\n    \"\\u2581\\u13a0\\u13e5\\u13be\\u13d7\\u13c5\\u13d7\": 17722,\n    \"\\u2581\\u13d7\\u13a9\\u13ec\\u13c2\\u13af\": 17723,\n    \"\\u13be\\u13b5\\u13cd\\u13da\\u13b8\": 17724,\n    \"\\u2581\\u13d7\\u13c2\\u13f0\": 17725,\n    \"\\u2581\\u13a4\\u13a8\\u13f3\\u13b2\": 17726,\n    \"\\u13d3\\u13e3\\u13a6\\u13b8\": 17727,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\": 17728,\n    \"\\u13c3\\u13af\\u13b0\": 17729,\n    \"\\u13f4\\u13e9\\u13db\\u13ae\": 17730,\n    \"\\u2581\\u13a2\\u13e5\\u13b6\\u13c4\\u13ae\": 17731,\n    \"\\u13a6\\u13cc\\u13ec\\u13a2\\u13b2\": 17732,\n    \"\\u2581\\u13a2\\u13e3\\u13d6\": 17733,\n    \"\\u13c4\\u13cd\\u13c6\\u13c2\\u13a9\\u13d7\": 17734,\n    \"\\u2581\\u13a8\\u13e5\\u13b8\\u13c9\\u13d9\\u13d7\": 17735,\n    \"\\u13c5\\u13aa\\u13a5\\u13d3\\u13c1\": 17736,\n    \"\\u2581\\u13d3\\u13c2\\u13f0\\u13b2\": 17737,\n    \"\\u13e5\\u13d9\\u13d3\": 17738,\n    \"\\u13a4\\u13c3\\u13af\\u13f3\\u13b2\": 17739,\n    \"\\u13a9\\u13c1\\u13d3\\u13cd\\u13d7\": 17740,\n    \"\\u13d3\\u13c2\\u13b3\\u13a9\": 17741,\n    \"\\u13d9\\u13cd\\u13d3\": 17742,\n    \"\\u2581\\u13a3\\u13a6\\u13db\": 17743,\n    \"\\u13a6\\u13b7\\u13b6\\u13ac\": 17744,\n    \"\\u2581\\u13d5\\u13e5\\u13f2\\u13af\": 17745,\n    \"\\u13d8\\u13c3\\u13af\": 17746,\n    \"\\u2581\\u13e7\\u13be\\u13e3\\u13c5\": 17747,\n    \"\\u13be\\u13db\\u13c1\\u13af\": 17748,\n    \"\\u2581\\u13a4\\u13d3\\u13e0\": 17749,\n    \"\\u2581\\u13cd\\u13a9\\u13ef\\u13d5\": 17750,\n    \"\\u13cd\\u13a9\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b8\": 17751,\n    \"\\u2581\\u13da\\u13f2\\u13cd\\u13d9\\u13d3\\u13c1\\u13b8\": 17752,\n    \"\\u2581\\u13eb\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\\u13b8\": 17753,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 17754,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13d3\\u13c5\\u13d6\": 17755,\n    \"\\u2581\\u13d7\\u13e7\\u13aa\\u13d3\\u13c1\\u13d7\": 17756,\n    \"\\u2581\\u13a4\\u13b4\\u13c2\": 17757,\n    \"\\u2581\\u13a1\\u13d7\\u13a6\\u13d4\": 17758,\n    \"\\u13a9\\u13c1\\u13e4\\u13b8\\u13af\": 17759,\n    \"\\u13c5\\u13d4\\u13c5\\u13a2\": 17760,\n    \"\\u2581\\u13a4\\u13d2\\u13ae\": 17761,\n    \"\\u2581\\u13be\\u13c5\\u13a9\": 17762,\n    \"\\u13c3\\u13ee\": 17763,\n    \"\\u13d7\\u13d3\\u13be\\u13a9\\u13cd\": 17764,\n    \"\\u2581\\u13c4\\u13b4\\u13eb\\u13cd\\u13d4\\u13c1\": 17765,\n    \"\\u13d7\\u13c2\": 17766,\n    \"\\u13c4\\u13aa\\u13e4\\u13b8\\u13af\": 17767,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13f4\\u13b2\": 17768,\n    \"\\u2581\\u13ac\\u13ed\\u13af\\u13cd\\u13d7\": 17769,\n    \"\\u13cd\\u13da\\u13b6\\u13a9\\u13af\": 17770,\n    \"\\u2581\\u13e3\\u13ab\\u13f4\": 17771,\n    \"\\u13a4\\u13c2\": 17772,\n    \"\\u2581\\u13a8\\u13e5\\u13c5\\u13cf\\u13d9\": 17773,\n    \"\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 17774,\n    \"\\u13a6\\u13d3\\u13c5\\u13d6\\u13d7\": 17775,\n    \"\\u13c3\\u13c5\\u13ad\": 17776,\n    \"\\u2581\\u13a0\\u13be\\u13d5\\u13d2\": 17777,\n    \"\\u13d8\\u13c2\\u13d9\\u13b5\": 17778,\n    \"\\u13a9\\u13b5\\u13f2\\u13e8\": 17779,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13c2\\u13c9\": 17780,\n    \"\\u2581\\u13c2\\u13d9\\u13d7\": 17781,\n    \"\\u2581\\u13d3\\u13d4\\u13b4\\u13d2\\u13a9\": 17782,\n    \"\\u2581\\u13a1\\u13e3\\u13cd\\u13d5\\u13b8\\u13d7\": 17783,\n    \"\\u2581\\u13a5\\u13cd\\u13a9\\u13ef\": 17784,\n    \"\\u2581\\u13d7\\u13e5\\u13a7\\u13b2\": 17785,\n    \"\\u13ea\\u13f2\\u13c1\": 17786,\n    \"\\u13f4\\u13e8\\u13a9\": 17787,\n    \"\\u2581\\u13a4\\u13ad\\u13ef\": 17788,\n    \"\\u13c3\\u13b8\\u13d4\\u13c2\": 17789,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13f0\\u13a2\\u13b5\\u13d9\": 17790,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\": 17791,\n    \"\\u13d5\\u13a6\\u13ec\": 17792,\n    \"\\u2581\\u13f2\\u13e5\\u13e9\\u13db\": 17793,\n    \"\\u2581\\u13eb\\u13ab\\u13e9\\u13c2\": 17794,\n    \"\\u13ac\\u13e9\\u13d3\\u13c2\\u13b8\\u13e4\\u13a2\": 17795,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13b8\": 17796,\n    \"\\u13a5\\u13db\": 17797,\n    \"\\u2581\\u13a5\\u13a9\\u13d0\\u13c5\\u13a2\\u13cd\": 17798,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13d7\\u13ce\": 17799,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\\u13cd\\u13a8\": 17800,\n    \"\\u2581\\u13d7\\u13f0\\u13af\": 17801,\n    \"\\u2581\\u13c4\\u13a8\\u13f3\\u13d2\": 17802,\n    \"\\u2581\\u13a2\\u13e3\\u13c4\\u13ec\\u13cd\": 17803,\n    \"\\u13e8\\u13d9\\u13d7\\u13f1\": 17804,\n    \"\\u13c6\\u13db\\u13c1\\u13b8\\u13ad\": 17805,\n    \"\\u13eb\\u13cd\\u13d4\\u13c1\\u13b8\": 17806,\n    \"\\u2581\\u13d5\\u13e3\\u13ec\\u13cd\": 17807,\n    \"\\u13a7\\u13bf\\u13e9\\u13d5\\u13a9\": 17808,\n    \"\\u2581\\u13a0\\u13cd\\u13d3\\u13f1\\u13d7\\u13cd\": 17809,\n    \"\\u2581\\u13d3\\u13c2\\u13ef\\u13a9\\u13cd\": 17810,\n    \"\\u2581\\u13ef\\u13be\\u13a6\\u13d4\\u13b2\": 17811,\n    \"\\u2581\\u13ac\\u13ef\\u13c5\\u13d3\\u13d7\\u13cd\": 17812,\n    \"\\u2581\\u13a0\\u13c2\\u13ae\": 17813,\n    \"\\u2581\\u13c4\\u13dc\": 17814,\n    \"\\u13c3\\u13a8\\u13c2\": 17815,\n    \"\\u2581\\u13a6\\u13d3\\u13b7\\u13a9\\u13cd\": 17816,\n    \"\\u13e5\\u13ea\\u13ce\\u13ae\\u13cd\\u13d7\": 17817,\n    \"\\u2581\\u13a2\\u13e4\\u13d9\\u13b8\": 17818,\n    \"\\u2581\\u13e5\\u13d5\\u13e5\\u13f2\": 17819,\n    \"\\u13e3\\u13be\\u13d4\": 17820,\n    \"\\u2581\\u13bb\\u13ce\": 17821,\n    \"\\u13c2\\u13cd\\u13a8\\u13a2\": 17822,\n    \"\\u2581\\u13ef\\u13a9\\u13c2\\u13ac\": 17823,\n    \"\\u13be\\u13d3\\u13d9\\u13ea\\u13b3\": 17824,\n    \"\\u2581\\u13f0\\u13b5\\u13a0\": 17825,\n    \"\\u13b5\\u13cd\\u13d4\\u13f4\\u13c3\\u13be\": 17826,\n    \"\\u2581\\u13e7\\u13d3\\u13c3\\u13e3\": 17827,\n    \"\\u2581\\u13e5\\u13d3\\u13d3\": 17828,\n    \"\\u2581\\u13c5\\u13d3\\u13e5\\u13ea\": 17829,\n    \"\\u2581\\u13a5\\u13c6\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\": 17830,\n    \"\\u2581\\u13a3\\u13a6\\u13e0\\u13be\\u13cd\": 17831,\n    \"\\u13e0\\u13ef\\u13cd\\u13d7\\u13cd\\u13ac\": 17832,\n    \"\\u2581\\u13d0\\u13cf\": 17833,\n    \"\\u2581\\u13ac\\u13c1\\u13b3\\u13a9\": 17834,\n    \"\\u13e6\\u13a3\": 17835,\n    \"\\u13b7\\u13b8\\u13a5\\u13cd\": 17836,\n    \"\\u2581\\u13db\\u13a9\\u13a7\": 17837,\n    \"\\u13b3\\u13d1\\u13b5\": 17838,\n    \"\\u13f0\\u13b8\\u13d0\\u13a2\": 17839,\n    \"\\u13e5\\u13c5\\u13eb\\u13cd\\u13d4\\u13c5\": 17840,\n    \"\\u2581\\u13d3\\u13e5\\u13b6\\u13cd\\u13d7\\u13cd\": 17841,\n    \"\\u2581\\u13a4\\u13b6\\u13a8\": 17842,\n    \"\\u13f0\\u13a2\\u13b5\\u13d3\": 17843,\n    \"\\u13be\\u13d5\\u13ac\\u13a2\": 17844,\n    \"\\u2581\\u13d3\\u13e5\\u13f2\\u13ce\": 17845,\n    \"\\u2581\\u13e7\\u13c2\\u13be\": 17846,\n    \"\\u13d7\\u13a9\\u13cd\\u13d7\": 17847,\n    \"\\u13cd\\u13d3\\u13c1\\u13b2\": 17848,\n    \"\\u2581\\u13a2\\u13a8\\u13b2\": 17849,\n    \"\\u13d7\\u13aa\\u13a2\": 17850,\n    \"\\u13a1\\u13a9\": 17851,\n    \"\\u13ec\\u13c1\\u13d7\\u13cd\\u13ac\": 17852,\n    \"\\u13a6\\u13d3\\u13c5\\u13d2\\u13ad\": 17853,\n    \"\\u2581\\u13a4\\u13e4\\u13cc\": 17854,\n    \"\\u13a0\\u13a9\\u13b8\\u13c9\\u13d7\": 17855,\n    \"\\u13c1\\u13e2\\u13d4\\u13c5\\u13af\": 17856,\n    \"\\u13be\\u13b5\\u13d7\\u13a9\": 17857,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13b5\": 17858,\n    \"\\u2581\\u13d7\\u13e5\\u13c5\\u13a6\\u13b8\": 17859,\n    \"\\u13c5\\u13a6\\u13b8\": 17860,\n    \"\\u13db\\u13c1\\u13b8\\u13a2\": 17861,\n    \"\\u13d3\\u13c1\\u13b8\\u13a2\": 17862,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13c3\": 17863,\n    \"\\u13aa\\u13b2\\u13cd\\u13d4\\u13c5\\u13a9\": 17864,\n    \"\\u13ef\\u13cc\\u13db\\u13c1\": 17865,\n    \"\\u2581\\u13a2\\u13ac\\u13cb\\u13c1\\u13d7\": 17866,\n    \"\\u2581\\u13ac\\u13e9\\u13f2\\u13cd\\u13d9\": 17867,\n    \"\\u13c5\\u13d7\\u13ad\": 17868,\n    \"\\u2581\\u13af\\u13aa\\u13d9\": 17869,\n    \"\\u2581\\u13a4\\u13b8\\u13d2\": 17870,\n    \"\\u13e6\\u13a3\\u13d2\": 17871,\n    \"\\u2581\\u13d3\\u13be\\u13df\\u13c3\\u13ae\": 17872,\n    \"\\u2581\\u13d5\\u13ab\\u13d3\\u13b4\": 17873,\n    \"\\u13d3\\u13d3\\u13cd\\u13a6\": 17874,\n    \"\\u13ef\\u13a7\\u13c1\\u13b8\": 17875,\n    \"\\u2581\\u13cd\\u13a9\\u13c1\\u13e4\\u13b8\": 17876,\n    \"\\u13c1\\u13e9\\u13d7\\u13d2\": 17877,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13cd\": 17878,\n    \"\\u2581\\u13d3\\u13a7\\u13c3\": 17879,\n    \"\\u13a6\\u13b5\\u13cd\\u13aa\\u13a2\": 17880,\n    \"\\u2581\\u13a2\\u13d7\\u13ef\\u13d9\\u13af\": 17881,\n    \"\\u2581\\u13a8\\u13e5\\u13e9\\u13af\\u13ce\": 17882,\n    \"\\u13a6\\u13d8\\u13cd\\u13d7\\u13cd\\u13a9\": 17883,\n    \"\\u13e7\\u13e0\\u13a0\\u13ce\\u13a2\": 17884,\n    \"\\u13e3\\u13f0\\u13e8\": 17885,\n    \"\\u13e5\\u13cd\\u13a6\\u13c5\\u13a8\\u13cd\\u13d7\": 17886,\n    \"\\u2581\\u13a0\\u13c6\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d7\": 17887,\n    \"\\u13aa\\u13be\\u13db\\u13d4\\u13c5\": 17888,\n    \"\\u2581\\u13ef\\u13c6\\u13d3\\u13c5\": 17889,\n    \"\\u2581\\u13f1\\u13e5\\u13cd\\u13a6\\u13c5\": 17890,\n    \"\\u13d8\\u13c3\\u13ae\\u13b4\\u13a2\": 17891,\n    \"\\u13e9\\u13d7\\u13d9\\u13af\": 17892,\n    \"\\u13a9\\u13e8\\u13c2\\u13d2\": 17893,\n    \"\\u2581\\u13a2\\u13e3\\u13d7\\u13d4\": 17894,\n    \"\\u2581\\u13a0\\u13f4\\u13cd\\u13d7\\u13f1\": 17895,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13d3\\u13c6\\u13b6\\u13a5\": 17896,\n    \"\\u2581\\u13e3\\u13c6\\u13db\": 17897,\n    \"\\u2581\\u13da\\u13b5\\u13c3\\u13ae\\u13d4\\u13c5\": 17898,\n    \"\\u13e3\\u13ec\\u13cd\\u13d4\\u13c2\": 17899,\n    \"\\u2581\\u13e5\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\": 17900,\n    \"\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d7\": 17901,\n    \"\\u13f0\\u13d7\\u13cd\\u13ac\": 17902,\n    \"\\u13e5\\u13a6\\u13b3\\u13ad\": 17903,\n    \"\\u2581\\u13a6\\u13e5\\u13c1\\u13b8\": 17904,\n    \"\\u13e4\\u13d3\\u13cd\\u13d7\": 17905,\n    \"\\u2581\\u13e7\\u13c5\\u13a9\": 17906,\n    \"\\u2581\\u13f1\\u13da\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 17907,\n    \"\\u2581\\u13da\\u13c2\\u13f0\\u13cd\\u13db\": 17908,\n    \"\\u13ab\\u13d3\\u13b4\\u13d2\": 17909,\n    \"\\u2581\\u13e5\\u13ef\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\": 17910,\n    \"\\u13e6\\u13e2\\u13c5\": 17911,\n    \"\\u13d3\\u13c2\\u13f2\\u13af\\u13ce\": 17912,\n    \"\\u13da\\u13c2\\u13f4\\u13d4\\u13c5\\u13a9\": 17913,\n    \"\\u13a6\\u13da\\u13cf\\u13c1\": 17914,\n    \"\\u2581\\u13a4\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\": 17915,\n    \"\\u13be\\u13d3\\u13c5\\u13db\\u13a2\": 17916,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\": 17917,\n    \"\\u2581\\u13a0\\u13e4\\u13b7\\u13af\": 17918,\n    \"\\u13d4\\u13df\": 17919,\n    \"\\u2581\\u13c2\\u13a8\\u13e5\\u13ea\\u13ce\": 17920,\n    \"\\u13eb\\u13da\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\\u13a2\": 17921,\n    \"\\u2581\\u13e3\\u13cd\\u13ab\\u13d5\\u13cd\\u13d7\": 17922,\n    \"\\u13d2\\u13c2\\u13b8\\u13af\": 17923,\n    \"\\u13a4\\u13d0\\u13f1\\u13c9\": 17924,\n    \"\\u13d7\\u13cd\\u13a6\\u13b6\\u13d7\": 17925,\n    \"\\u13a7\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\": 17926,\n    \"\\u2581\\u13a6\\u13b8\\u13d9\": 17927,\n    \"\\u13d8\\u13be\\u13c4\\u13aa\\u13eb\\u13cf\": 17928,\n    \"\\u13ac\\u13cd\\u13aa\\u13b8\": 17929,\n    \"\\u2581\\u13a0\\u13cd\\u13a6\\u13a2\\u13cd\\u13d7\": 17930,\n    \"\\u13a4\\u13da\\u13b5\\u13cd\\u13ac\": 17931,\n    \"\\u2581\\u13a1\\u13d7\\u13d4\\u13f2\": 17932,\n    \"\\u13bb\\u13c6\": 17933,\n    \"\\u13e8\\u13f2\\u13ce\\u13ad\": 17934,\n    \"\\u2581\\u13a2\\u13aa\\u13e2\": 17935,\n    \"\\u13df\\u13cd\\u13d4\\u13c5\": 17936,\n    \"\\u2581\\u13a3\\u13e4\\u13d9\": 17937,\n    \"\\u2581\\u13ef\\u13c6\\u13c1\\u13b8\\u13d4\": 17938,\n    \"\\u2581\\u13b1\\u13a6\": 17939,\n    \"\\u2581\\u13c6\\u13cc\": 17940,\n    \"\\u2581\\u13a0\\u13e5\\u13c3\\u13c1\\u13b8\": 17941,\n    \"\\u13cd\\u13d3\\u13e9\\u13da\\u13a6\": 17942,\n    \"\\u2581\\u13a0\\u13c6\\u13a6\\u13ce\": 17943,\n    \"\\u2581\\u13ac\\u13e9\\u13ef\\u13a5\": 17944,\n    \"\\u13e5\\u13aa\\u13e9\\u13d8\\u13ad\": 17945,\n    \"\\u13c4\\u13e9\\u13c5\": 17946,\n    \"\\u13e5\\u13a5\\u13cf\": 17947,\n    \"\\u2581\\u13a4\\u13be\\u13df\\u13c2\\u13ac\\u13c1\": 17948,\n    \"\\u13e3\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\": 17949,\n    \"\\u2581\\u13da\\u13f3\\u13aa\": 17950,\n    \"\\u2581\\u13e7\\u13be\\u13da\\u13aa\\u13d3\\u13c1\": 17951,\n    \"\\u13e9\\u13d2\\u13ac\": 17952,\n    \"\\u13ea\\u13b6\\u13d4\": 17953,\n    \"\\u2581\\u13d3\\u13a6\\u13d9\": 17954,\n    \"\\u13be\\u13d3\\u13c5\\u13d6\\u13d7\\u13cd\\u13ac\": 17955,\n    \"\\u13e5\\u13a8\\u13f3\\u13af\": 17956,\n    \"\\u2581\\u13ed\\u13b5\": 17957,\n    \"\\u2581\\u13d7\\u13df\\u13b6\\u13cd\": 17958,\n    \"\\u13ef\\u13d2\\u13c2\\u13cd\\u13d7\\u13f1\": 17959,\n    \"\\u2581\\u13ed\\u13c2\\u13b7\\u13e4\\u13b4\": 17960,\n    \"\\u2581\\u13d7\\u13e5\\u13c5\\u13d2\": 17961,\n    \"\\u2581\\u13eb\\u13d3\\u13b5\": 17962,\n    \"\\u13a6\\u13e2\\u13d4\\u13cd\\u13d7\": 17963,\n    \"\\u13da\\u13d9\\u13a0\": 17964,\n    \"\\u13a6\\u13c5\\u13d3\\u13d3\": 17965,\n    \"\\u13c2\\u13a8\\u13b2\\u13ce\": 17966,\n    \"\\u13d4\\u13b3\\u13ec\\u13af\": 17967,\n    \"\\u2581\\u13a4\\u13e2\\u13be\": 17968,\n    \"\\u2581\\u13d3\\u13d6\\u13b8\\u13b2\\u13cd\": 17969,\n    \"\\u2581\\u13a3\\u13a9\\u13c3\\u13c1\\u13b8\": 17970,\n    \"\\u2581\\u13ad\\u13d3\\u13c3\\u13ae\": 17971,\n    \"\\u2581\\u13a8\\u13e5\\u13be\\u13cc\": 17972,\n    \"\\u13e3\\u13d3\\u13b8\\u13c9\\u13d7\\u13ad\": 17973,\n    \"\\u2581\\u13d9\\u13cd\\u13d3\\u13d3\\u13aa\\u13e9\": 17974,\n    \"\\u2581\\u13d7\\u13de\": 17975,\n    \"\\u2581\\u13d3\\u13be\\u13e4\": 17976,\n    \"\\u2581\\u13a4\\u13ea\\u13ef\\u13d4\\u13c5\": 17977,\n    \"\\u13d2\\u13c2\\u13ae\\u13cd\\u13d7\": 17978,\n    \"\\u13a9\\u13c2\\u13f4\\u13b2\": 17979,\n    \"\\u2581\\u13a7\\u13c2\": 17980,\n    \"\\u2581\\u13e7\\u13b5\\u13cd\\u13da\\u13a2\": 17981,\n    \"\\u2581\\u13f4\\u13a6\\u13f2\": 17982,\n    \"\\u13e5\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\\u13be\": 17983,\n    \"\\u2581\\u13a2\\u13ad\\u13c5\\u13d3\": 17984,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\": 17985,\n    \"\\u13a9\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 17986,\n    \"\\u13d3\\u13a8\\u13e3\\u13b5\": 17987,\n    \"\\u13a6\\u13b7\": 17988,\n    \"\\u2581\\u13da\\u13c2\\u13e8\": 17989,\n    \"\\u13da\\u13df\\u13cd\\u13d4\\u13c5\\u13a9\": 17990,\n    \"\\u2581\\u13ac\\u13c1\\u13e4\\u13b8\": 17991,\n    \"\\u2581\\u13a2\\u13ac\\u13c1\\u13b8\": 17992,\n    \"\\u13e5\\u13a9\\u13a1\\u13b8\": 17993,\n    \"\\u13e9\\u13c2\\u13b7\\u13a6\": 17994,\n    \"\\u2581\\u13a1\\u13e5\\u13b8\\u13c9\\u13d9\\u13d7\": 17995,\n    \"\\u13bf\\u13a0\": 17996,\n    \"\\u13d8\\u13cd\": 17997,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13e5\\u13d9\\u13c2\": 17998,\n    \"\\u2581\\u13e7\\u13be\\u13cd\\u13d7\\u13a9\": 17999,\n    \"\\u13a8\\u13a6\\u13b5\\u13cd\\u13aa\": 18000,\n    \"\\u2581\\u13f1\\u13ac\\u13c1\": 18001,\n    \"\\u2581\\u13ac\\u13c6\\u13db\\u13a6\": 18002,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\": 18003,\n    \"\\u2581\\u13a6\\u13b5\\u13c9\": 18004,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13b2\": 18005,\n    \"\\u2581\\u13ed\\u13d3\\u13d2\\u13cd\": 18006,\n    \"\\u2581\\u13d2\\u13d9\": 18007,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13c6\": 18008,\n    \"\\u2581\\u13d7\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 18009,\n    \"\\u13af\\u13a5\\u13cf\": 18010,\n    \"\\u13dc\\u13cd\\u13d7\": 18011,\n    \"\\u2581\\u13a4\\u13d4\\u13b4\": 18012,\n    \"\\u2581\\u13a8\\u13e5\\u13aa\\u13b5\\u13f0\\u13d7\": 18013,\n    \"\\u2581\\u13e5\\u13f0\\u13c5\": 18014,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\": 18015,\n    \"et\": 18016,\n    \"\\u2581\\u13da\\u13be\\u13a6\\u13b4\\u13c5\": 18017,\n    \"\\u2581\\u13ef\\u13ab\\u13da\\u13b5\": 18018,\n    \"\\u2581\\u13a0\\u13ad\\u13f0\": 18019,\n    \"\\u13a9\\u13b5\\u13f2\\u13e4\": 18020,\n    \"\\u13a9\\u13b6\\u13eb\\u13ce\": 18021,\n    \"\\u2581\\u13a4\\u13b8\\u13ae\": 18022,\n    \"\\u13a6\\u13e5\\u13aa\\u13a5\": 18023,\n    \"\\u13ef\\u13d9\\u13b5\\u13a9\": 18024,\n    \"\\u2581\\u13a4\\u13be\\u13e3\\u13a2\\u13ce\": 18025,\n    \"\\u13a4\\u13be\\u13d7\\u13d2\": 18026,\n    \"\\u13af\\u13c1\\u13a6\": 18027,\n    \"\\u2581\\u13a4\\u13a6\\u13db\\u13c5\": 18028,\n    \"\\u13d7\\u13a6\\u13b4\\u13f2\": 18029,\n    \"\\u13b7\\u13a9\\u13cd\\u13ac\": 18030,\n    \"\\u13b4\\u13b0\\u13d2\": 18031,\n    \"\\u13b5\\u13b8\\u13a9\": 18032,\n    \"\\u13be\\u13db\\u13aa\\u13d7\": 18033,\n    \"\\u13d5\\u13e3\\u13b3\\u13d1\": 18034,\n    \"\\u2581\\u13a2\\u13ef\\u13cb\\u13c2\": 18035,\n    \"\\u13e5\\u13d1\\u13b5\\u13aa\\u13ac\": 18036,\n    \"\\u13df\\u13b8\": 18037,\n    \"\\u2581\\u13ed\\u13be\\u13d8\\u13c3\": 18038,\n    \"\\u13d4\\u13c1\\u13c9\": 18039,\n    \"\\u2581\\u13d5\\u13e3\\u13d5\\u13f2\": 18040,\n    \"\\u2581\\u13a6\\u13d3\\u13c5\": 18041,\n    \"\\u2581\\u13ef\\u13c7\\u13b5\": 18042,\n    \"\\u2581\\u13e8\\u13d7\\u13a6\": 18043,\n    \"\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 18044,\n    \"\\u13f0\\u13b8\\u13c1\\u13a2\": 18045,\n    \"\\u13ef\\u13a2\\u13ce\": 18046,\n    \"\\u2581\\u13d3\\u13c2\\u13c5\\u13a8\": 18047,\n    \"\\u13a2\\u13cd\\u13d7\\u13cd\\u13aa\": 18048,\n    \"\\u13da\\u13d3\\u13b8\\u13c1\": 18049,\n    \"\\u13b6\\u13ce\\u13a2\": 18050,\n    \"\\u2581\\u13da\\u13be\\u13c1\\u13b6\\u13d5\": 18051,\n    \"\\u13e5\\u13d9\\u13b2\": 18052,\n    \"\\u2581\\u13ac\\u13a9\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\": 18053,\n    \"\\u13c2\\u13b5\\u13d9\\u13b8\": 18054,\n    \"\\u13cc\\u13c9\": 18055,\n    \"\\u2581\\u13d7\\u13ab\\u13aa\\u13d9\": 18056,\n    \"\\u13b8\\u13cc\\u13d3\\u13d5\": 18057,\n    \"\\u13df\\u13c2\\u13ac\\u13c1\": 18058,\n    \"\\u2581\\u13a4\\u13d3\\u13aa\": 18059,\n    \"\\u2581\\u13f3\\u13d7\\u13db\": 18060,\n    \"\\u2581\\u13d7\\u13ab\\u13c5\": 18061,\n    \"\\u13e3\\u13c2\\u13a9\": 18062,\n    \"\\u13be\\u13d3\\u13d1\\u13f2\": 18063,\n    \"\\u13a6\\u13c1\\u13cd\\u13ac\": 18064,\n    \"\\u2581\\u13e5\\u13da\\u13c2\\u13c2\\u13f4\": 18065,\n    \"\\u2581\\u13a0\\u13c6\\u13d1\\u13f0\": 18066,\n    \"\\u13a0\\u13f0\\u13cd\\u13d3\\u13a5\": 18067,\n    \"\\u2581\\u13e4\\u13e5\\u13f2\\u13af\\u13ce\\u13b8\": 18068,\n    \"\\u13a7\\u13be\\u13c1\\u13a2\": 18069,\n    \"\\u13c3\\u13ae\\u13cd\\u13aa\\u13a2\": 18070,\n    \"\\u2581\\u13f1\\u13e3\\u13f0\\u13b8\": 18071,\n    \"\\u2581\\u13d5\\u13a7\\u13c5\\u13eb\": 18072,\n    \"\\u13ae\\u13c3\": 18073,\n    \"\\u2581\\u13a4\\u13c1\\u13c9\": 18074,\n    \"\\u2581\\u13da\\u13d4\\u13cd\": 18075,\n    \"\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b0\\u13a2\": 18076,\n    \"\\u13af\\u13d9\\u13ae\": 18077,\n    \"\\u2581\\u13af\\u13aa\\u13a2\": 18078,\n    \"\\u2581\\u13a8\\u13e3\\u13d9\\u13b4\\u13b0\\u13af\": 18079,\n    \"\\u2581\\u13a3\\u13a6\\u13da\\u13d3\": 18080,\n    \"\\u13e1\\u13d7\\u13cd\\u13a8\": 18081,\n    \"\\u13a3\\u13a9\\u13be\\u13b5\\u13f1\": 18082,\n    \"\\u13be\\u13b5\\u13c2\\u13aa\\u13ce\\u13a2\": 18083,\n    \"\\u2581\\u13f1\\u13e3\\u13db\\u13d3\\u13cd\": 18084,\n    \"\\u2581\\u13e5\\u13ac\\u13c5\": 18085,\n    \"\\u2581\\u13da\\u13c3\\u13e2\": 18086,\n    \"\\u2581\\u13da\\u13c2\\u13f0\\u13b8\": 18087,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13d8\": 18088,\n    \"\\u2581\\u13d3\\u13cd\\u13c6\\u13c2\\u13aa\": 18089,\n    \"\\u13d1\\u13f4\\u13c5\": 18090,\n    \"\\u2581\\u13e3\\u13d3\\u13b5\": 18091,\n    \"\\u13ad\\u13c8\": 18092,\n    \"\\u2581\\u13a0\\u13ce\\u13aa\\u13a9\": 18093,\n    \"\\u2581\\u13eb\\u13c2\\u13da\\u13ea\\u13ce\": 18094,\n    \"\\u13ac\\u13f0\\u13b5\\u13ce\": 18095,\n    \"\\u2581\\u13a4\\u13be\\u13dd\\u13a5\": 18096,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13d2\": 18097,\n    \"\\u13e5\\u13b5\\u13a5\\u13c2\\u13ae\\u13cd\\u13d7\": 18098,\n    \"\\u2581\\u13e7\\u13e9\\u13c2\\u13a6\": 18099,\n    \"\\u13c6\\u13a7\\u13c3\\u13d7\": 18100,\n    \"\\u13ef\\u13b8\\u13a2\": 18101,\n    \"\\u13db\\u13bf\\u13d5\\u13a6\": 18102,\n    \"\\u13e5\\u13ac\\u13e9\\u13b6\\u13d4\": 18103,\n    \"\\u13b4\\u13b5\": 18104,\n    \"\\u13d3\\u13c1\\u13e4\\u13d7\": 18105,\n    \"\\u2581\\u13d3\\u13c2\\u13a8\\u13af\": 18106,\n    \"\\u13e0\\u13a0\": 18107,\n    \"\\u13c2\\u13f2\\u13b4\": 18108,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13b5\\u13d9\\u13b2\": 18109,\n    \"\\u2581\\u13eb\\u13c4\\u13e9\": 18110,\n    \"\\u13f2\\u13af\\u13cd\\u13d7\\u13cd\\u13ac\\u13be\": 18111,\n    \"\\u13a9\\u13d9\\u13b5\\u13a9\": 18112,\n    \"\\u2581\\u13a0\\u13a9\\u13eb\\u13d2\": 18113,\n    \"\\u13e5\\u13ef\\u13c2\\u13cd\\u13ac\": 18114,\n    \"\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d4\\u13c5\": 18115,\n    \"\\u2581\\u13c4\\u13be\\u13d5\": 18116,\n    \"\\u2581\\u13a0\\u13d3\\u13d2\\u13b2\\u13cd\": 18117,\n    \"\\u2581\\u13da\\u13be\\u13e6\": 18118,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\": 18119,\n    \"\\u13e3\\u13cf\\u13b3\\u13db\\u13d7\": 18120,\n    \"\\u2581\\u13db\\u13c2\\u13a9\": 18121,\n    \"\\u2581\\u13d7\\u13cd\\u13a9\\u13c5\": 18122,\n    \"\\u13c2\\u13d3\\u13db\": 18123,\n    \"\\u2581\\u13a4\\u13d8\\u13c3\\u13ae\\u13b4\": 18124,\n    \"\\u2581\\u13a4\\u13db\\u13a6\\u13c5\\u13c9\": 18125,\n    \"\\u13a6\\u13cc\\u13ec\\u13b8\": 18126,\n    \"\\u2581\\u13e3\\u13f2\\u13b8\": 18127,\n    \"\\u13c2\\u13a6\\u13db\\u13b4\\u13af\": 18128,\n    \"\\u13b5\\u13cd\\u13c7\\u13da\": 18129,\n    \"\\u2581\\u13a4\\u13be\\u13df\\u13c3\\u13ae\": 18130,\n    \"\\u2581\\u13a6\\u13e5\\u13c1\\u13e4\\u13b8\": 18131,\n    \"\\u13be\\u13db\\u13db\": 18132,\n    \"\\u13b6\\u13be\\u13cd\\u13d4\": 18133,\n    \"\\u13d3\\u13c2\\u13b8\\u13e4\\u13b8\\u13af\": 18134,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13b5\": 18135,\n    \"\\u2581\\u13f1\\u13e8\\u13f2\\u13ce\": 18136,\n    \"\\u13d8\\u13bf\\u13eb\\u13db\": 18137,\n    \"\\u2581\\u13e7\\u13c2\\u13ef\\u13c5\": 18138,\n    \"\\u13c2\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\\u13f1\": 18139,\n    \"\\u2581\\u13a4\\u13c5\\u13aa\\u13a2\\u13cd\": 18140,\n    \"\\u13dc\\u13eb\\u13cd\": 18141,\n    \"\\u2581\\u13a6\\u13e5\\u13ef\\u13d1\\u13f0\": 18142,\n    \"\\u13ec\\u13c2\\u13cd\\u13a8\\u13cd\\u13d7\": 18143,\n    \"\\u2581\\u13f1\\u13d9\\u13a6\\u13d9\": 18144,\n    \"\\u2581\\u13a4\\u13db\\u13d7\\u13d5\": 18145,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13db\\u13c1\": 18146,\n    \"\\u2581\\u13f4\\u13a8\\u13cd\\u13a9\": 18147,\n    \"\\u2581\\u13eb\\u13c4\\u13c2\\u13ea\\u13ce\": 18148,\n    \"\\u2581\\u13d3\\u13be\\u13d3\\u13c2\\u13b8\": 18149,\n    \"\\u13c2\\u13a7\\u13b5\\u13b4\\u13a2\": 18150,\n    \"\\u13be\\u13da\\u13d3\\u13b8\": 18151,\n    \"\\u13f4\\u13d4\\u13c5\": 18152,\n    \"\\u2581\\u13f1\\u13da\\u13d1\\u13f0\": 18153,\n    \"\\u13a6\\u13e9\\u13d2\\u13ac\": 18154,\n    \"\\u2581\\u13a3\\u13da\\u13d3\\u13b4\\u13cd\\u13d7\": 18155,\n    \"\\u2581\\u13a4\\u13b2\\u13d2\": 18156,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d4\\u13b6\": 18157,\n    \"\\u2581\\u13e7\\u13c2\\u13d0\\u13af\\u13cd\\u13d7\": 18158,\n    \"\\u13e3\\u13a8\\u13f3\": 18159,\n    \"\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13ac\": 18160,\n    \"\\u2581\\u13a0\\u13cf\\u13cd\\u13aa\": 18161,\n    \"\\u2581\\u13ac\\u13e9\\u13db\\u13c5\": 18162,\n    \"\\u13cd\\u13a6\\u13c9\": 18163,\n    \"\\u13c6\\u13d8\\u13be\\u13eb\\u13db\\u13b2\\u13a9\": 18164,\n    \"\\u13be\\u13aa\\u13d2\": 18165,\n    \"\\u2581\\u13a2\\u13e8\\u13e9\\u13db\": 18166,\n    \"\\u13c4\\u13db\\u13c1\": 18167,\n    \"\\u13b4\\u13c2\\u13d9\\u13b2\\u13a2\": 18168,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\\u13aa\": 18169,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13d4\\u13c1\": 18170,\n    \"\\u13c1\\u13df\\u13f4\\u13ad\": 18171,\n    \"\\u13cd\\u13a9\\u13a1\\u13b4\\u13a2\": 18172,\n    \"\\u13d9\\u13b8\\u13ad\": 18173,\n    \"\\u13e9\\u13aa\\u13d7\": 18174,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\": 18175,\n    \"\\u2581\\u13f1\\u13c2\\u13da\\u13d3\": 18176,\n    \"\\u13a0\\u13be\\u13e1\\u13d7\\u13cd\\u13a9\": 18177,\n    \"\\u2581\\u13ed\\u13cd\\u13da\": 18178,\n    \"\\u13a6\\u13d9\\u13cd\\u13d3\\u13c1\": 18179,\n    \"\\u2581\\u13d4\\u13d1\\u13f0\": 18180,\n    \"\\u13c2\\u13f4\\u13ce\\u13cd\\u13d7\": 18181,\n    \"\\u13c2\\u13ea\\u13d2\\u13a9\": 18182,\n    \"tin\": 18183,\n    \"\\u2581\\u13a2\\u13cd\\u13c6\\u13d3\": 18184,\n    \"\\u13da\\u13aa\\u13d3\": 18185,\n    \"\\u2581\\u13eb\\u13d9\\u13e5\": 18186,\n    \"\\u2581\\u13e3\\u13aa\\u13ce\": 18187,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13cf\\u13d4\": 18188,\n    \"\\u13d5\\u13d8\\u13f4\\u13b2\\u13d2\": 18189,\n    \"\\u13c2\\u13cf\\u13c5\\u13ce\": 18190,\n    \"\\u2581\\u13f3\\u13c2\\u13f4\": 18191,\n    \"\\u2581\\u13cd\\u13a9\\u13f2\": 18192,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13ac\\u13a8\": 18193,\n    \"\\u2581\\u13af\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\": 18194,\n    \"\\u13d5\\u13d8\\u13f4\\u13b2\": 18195,\n    \"\\u2581\\u13e7\\u13c5\\u13c2\\u13cd\": 18196,\n    \"\\u2581\\u13e5\\u13d3\\u13b5\\u13d6\\u13b8\\u13b2\": 18197,\n    \"\\u13a6\\u13a7\\u13b2\\u13a9\": 18198,\n    \"\\u2581\\u13eb\\u13a8\\u13d9\": 18199,\n    \"\\u13e5\\u13d9\\u13aa\": 18200,\n    \"\\u2581\\u13a4\\u13cd\\u13db\\u13a6\": 18201,\n    \"\\u2581\\u13eb\\u13a6\\u13b6\": 18202,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13f2\": 18203,\n    \"\\u13e3\\u13db\\u13c1\\u13b5\\u13d9\\u13b2\": 18204,\n    \"\\u13a9\\u13f1\\u13b5\\u13d9\\u13ad\": 18205,\n    \"\\u13d3\\u13c2\\u13ef\\u13db\": 18206,\n    \"\\u2581\\u13a4\\u13a6\\u13d4\\u13db\": 18207,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13e5\\u13d9\": 18208,\n    \"\\u2581\\u13ad\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\": 18209,\n    \"\\u13c1\\u13cd\\u13a8\\u13b2\\u13a9\": 18210,\n    \"\\u13a6\\u13b5\\u13cd\\u13d4\\u13c1\\u13b2\": 18211,\n    \"\\u13d7\\u13be\\u13d3\": 18212,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13c2\\u13b8\": 18213,\n    \"\\u2581\\u13ed\\u13be\\u13cf\": 18214,\n    \"\\u2581\\u13a2\\u13cd\\u13db\\u13b7\\u13e4\": 18215,\n    \"\\u13d6\\u13b8\\u13b2\\u13cd\\u13a6\": 18216,\n    \"\\u13db\\u13db\\u13d4\\u13c2\": 18217,\n    \"\\u2581\\u13f1\\u13e4\\u13d9\": 18218,\n    \"\\u2581\\u13c2\\u13a8\\u13c2\\u13be\": 18219,\n    \"\\u2581\\u13a2\\u13e3\\u13db\\u13c1\\u13b2\": 18220,\n    \"\\u13c2\\u13cc\\u13c5\": 18221,\n    \"\\u13b6\\u13c4\\u13ae\\u13b4\\u13a2\": 18222,\n    \"\\u2581\\u13a4\\u13f4\\u13cd\": 18223,\n    \"\\u13d3\\u13d3\\u13ec\\u13cd\\u13a8\": 18224,\n    \"\\u13c2\\u13b8\\u13cc\\u13d3\\u13d5\": 18225,\n    \"\\u13e5\\u13b3\\u13eb\\u13e4\": 18226,\n    \"\\u13be\\u13b7\\u13cd\\u13ac\": 18227,\n    \"\\u13be\\u13df\\u13c3\\u13ae\\u13d7\": 18228,\n    \"\\u13a9\\u13c5\\u13c1\\u13b8\": 18229,\n    \"\\u13f2\\u13a2\\u13cd\\u13d7\": 18230,\n    \"\\u13d1\\u13f0\\u13cd\\u13d7\": 18231,\n    \"\\u2581\\u13ac\\u13e9\\u13c3\\u13ae\\u13cd\\u13ac\": 18232,\n    \"\\u13e4\\u13b5\\u13af\\u13cd\": 18233,\n    \"\\u2581\\u13f1\\u13a6\\u13ac\": 18234,\n    \"\\u2581\\u13ed\\u13b3\\u13cf\": 18235,\n    \"\\u13da\\u13a9\\u13db\": 18236,\n    \"\\u13a6\\u13b7\\u13a8\": 18237,\n    \"\\u13b3\\u13d7\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 18238,\n    \"\\u2581\\u13a2\\u13e8\\u13c3\\u13ae\": 18239,\n    \"\\u13c5\\u13a1\\u13b4\\u13a2\": 18240,\n    \"\\u13da\\u13cd\\u13d5\\u13b8\\u13ae\\u13a2\": 18241,\n    \"\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\\u13a6\": 18242,\n    \"\\u2581\\u13ac\\u13e9\\u13e1\\u13d7\\u13cd\": 18243,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13c6\\u13d9\": 18244,\n    \"\\u2581\\u13d5\\u13e3\\u13b5\\u13c2\\u13aa\": 18245,\n    \"\\u13e5\\u13e9\\u13db\\u13af\": 18246,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\": 18247,\n    \"\\u13ac\\u13c1\\u13e4\\u13b8\\u13ad\": 18248,\n    \"\\u2581\\u13a8\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\": 18249,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13b2\": 18250,\n    \"\\u2581\\u13d8\\u13a7\\u13b5\": 18251,\n    \"\\u2581\\u13a0\\u13a6\\u13b7\": 18252,\n    \"\\u2581\\u13a4\\u13d3\\u13b4\\u13c5\": 18253,\n    \"\\u13e3\\u13d3\\u13c5\\u13d2\\u13a9\": 18254,\n    \"\\u2581\\u13cd\\u13a9\\u13f0\\u13b5\": 18255,\n    \"\\u2581\\u13a0\\u13a9\\u13f4\\u13cd\\u13d7\": 18256,\n    \"\\u13d3\\u13ec\\u13af\\u13b3\\u13d7\\u13cd\": 18257,\n    \"\\u2581\\u13d3\\u13f2\\u13e5\": 18258,\n    \"\\u13be\\u13aa\\u13b2\\u13cd\\u13d7\": 18259,\n    \"\\u13cd\\u13d3\\u13e9\\u13db\\u13d2\": 18260,\n    \"\\u13d5\\u13ab\\u13aa\\u13d3\\u13cf\": 18261,\n    \"\\u2581\\u13f2\\u13af\": 18262,\n    \"\\u2581\\u13d3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\\u13aa\": 18263,\n    \"\\u2581\\u13d3\\u13c2\\u13a6\\u13d8\\u13b4\": 18264,\n    \"\\u2581\\u13da\\u13d7\\u13a6\\u13b4\": 18265,\n    \"\\u13ef\\u13b5\\u13c3\\u13ae\": 18266,\n    \"\\u2581\\u13a1\\u13e5\\u13cd\\u13a6\": 18267,\n    \"\\u13be\\u13e0\\u13af\\u13cd\\u13d4\\u13c5\": 18268,\n    \"\\u13a9\\u13d2\\u13ce\": 18269,\n    \"\\u13e5\\u13c2\\u13f4\\u13b2\\u13a9\": 18270,\n    \"\\u2581\\u13d3\\u13be\\u13d8\": 18271,\n    \"\\u2581\\u13a0\\u13e5\\u13c3\\u13ae\": 18272,\n    \"\\u2581\\u13b1\\u13f0\\u13b8\": 18273,\n    \"\\u13a9\\u13c4\\u13b8\\u13c5\": 18274,\n    \"\\u13a6\\u13d9\\u13af\": 18275,\n    \"\\u2581\\u13a0\\u13c6\\u13c4\\u13ec\": 18276,\n    \"\\u13e9\\u13e5\\u13cd\\u13a6\\u13b8\": 18277,\n    \"\\u13cd\\u13aa\\u13c2\\u13b4\\u13a2\": 18278,\n    \"\\u13ef\\u13e5\\u13aa\\u13c1\\u13b8\": 18279,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13c1\": 18280,\n    \"\\u2581\\u13d8\\u13c5\\u13cd\\u13d3\": 18281,\n    \"\\u13d0\\u13c5\\u13f0\": 18282,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d5\\u13b8\\u13b2\": 18283,\n    \"\\u2581\\u13a1\\u13cd\\u13d5\": 18284,\n    \"\\u13d3\\u13d3\\u13ec\\u13cd\\u13ac\\u13a2\": 18285,\n    \"\\u2581\\u13f4\\u13a8\": 18286,\n    \"\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13cf\": 18287,\n    \"\\u2581\\u13a2\\u13e5\\u13c2\\u13c6\\u13d8\": 18288,\n    \"\\u13d5\\u13b2\\u13cd\\u13aa\": 18289,\n    \"\\u13be\\u13b4\\u13bf\\u13eb\\u13cd\\u13db\\u13a9\": 18290,\n    \"\\u2581\\u13da\\u13e9\\u13e5\\u13cd\\u13a6\": 18291,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\\u13c5\": 18292,\n    \"\\u2581\\u13d7\\u13e8\\u13d9\": 18293,\n    \"\\u2581\\u13d3\\u13e5\\u13f0\": 18294,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13a6\\u13c5\": 18295,\n    \"\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\\u13b8\\u13af\": 18296,\n    \"\\u2581\\u13a0\\u13a9\\u13c4\\u13b8\": 18297,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\": 18298,\n    \"\\u13d3\\u13a1\\u13cf\": 18299,\n    \"\\u2581\\u13d5\\u13ad\\u13e1\\u13d7\": 18300,\n    \"\\u13a6\\u13be\\u13e9\": 18301,\n    \"\\u13cd\\u13a6\\u13b6\\u13d7\": 18302,\n    \"\\u2581\\u13f3\\u13f4\\u13b5\": 18303,\n    \"\\u13ec\\u13ea\\u13b3\\u13c1\": 18304,\n    \"\\u13c7\\u13c5\\u13d4\\u13c5\": 18305,\n    \"\\u2581\\u13e5\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\": 18306,\n    \"\\u2581\\u13a0\\u13d3\\u13f0\\u13ae\": 18307,\n    \"\\u2581\\u13ac\\u13c1\\u13e4\\u13d7\": 18308,\n    \"\\u13da\\u13f3\\u13aa\\u13d7\": 18309,\n    \"\\u13e3\\u13db\\u13af\\u13ce\\u13b8\": 18310,\n    \"\\u13e5\\u13a6\\u13d9\\u13a5\\u13d2\": 18311,\n    \"\\u2581\\u13e3\\u13b8\\u13c3\\u13d8\": 18312,\n    \"\\u13e3\\u13db\\u13c1\\u13b2\\u13a2\": 18313,\n    \"\\u2581\\u13d5\\u13a4\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\": 18314,\n    \"\\u13ec\\u13da\\u13e8\": 18315,\n    \"\\u2581\\u13af\\u13ef\\u13e5\\u13aa\\u13c1\": 18316,\n    \"\\u13ac\\u13a9\\u13b7\\u13e4\\u13b8\": 18317,\n    \"\\u13be\\u13db\\u13c1\\u13b4\": 18318,\n    \"\\u13cd\\u13d5\\u13b5\\u13cd\\u13a8\\u13a2\": 18319,\n    \"\\u13f4\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 18320,\n    \"\\u2581\\u13a2\\u13e5\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\": 18321,\n    \"\\u2581\\u13ed\\u13f2\": 18322,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\\u13be\": 18323,\n    \"\\u13f2\\u13d4\\u13c1\": 18324,\n    \"\\u2581\\u13d3\\u13e6\": 18325,\n    \"\\u13c7\\u13b5\\u13ce\\u13ae\\u13cd\\u13d7\": 18326,\n    \"\\u13e5\\u13cf\\u13be\\u13cc\\u13c2\": 18327,\n    \"\\u2581\\u13a4\\u13be\\u13d2\\u13c2\": 18328,\n    \"\\u13cd\\u13a9\\u13aa\\u13e9\\u13db\": 18329,\n    \"\\u13d9\\u13ad\\u13f0\": 18330,\n    \"\\u13cd\\u13a9\\u13f4\\u13c1\\u13b8\": 18331,\n    \"\\u2581\\u13a2\\u13e5\\u13f4\\u13c1\\u13d7\": 18332,\n    \"\\u2581\\u13be\\u13be\\u13db\": 18333,\n    \"\\u13aa\\u13af\\u13cd\\u13d7\": 18334,\n    \"\\u13c2\\u13d5\\u13ac\\u13c1\\u13b0\": 18335,\n    \"\\u2581\\u13a4\\u13be\\u13e6\": 18336,\n    \"\\u2581\\u13a8\\u13e5\\u13c5\\u13a6\\u13b5\\u13cd\": 18337,\n    \"\\u2581\\u13f1\\u13d7\\u13e3\\u13d3\": 18338,\n    \"\\u13e9\\u13c2\\u13b4\\u13a2\": 18339,\n    \"\\u13d3\\u13f2\\u13c1\\u13af\": 18340,\n    \"\\u2581\\u13f1\\u13c2\\u13da\": 18341,\n    \"\\u2581\\u13e7\\u13be\\u13d1\": 18342,\n    \"\\u2581\\u13d3\\u13f3\\u13be\\u13b4\\u13bf\\u13eb\\u13cd\": 18343,\n    \"\\u13d3\\u13d7\\u13cd\\u13aa\\u13a2\": 18344,\n    \"\\u13c6\\u13db\\u13c1\\u13d7\\u13f1\": 18345,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13a9\": 18346,\n    \"\\u13c7\\u13d3\\u13e2\": 18347,\n    \"\\u2581\\u13a0\\u13c2\\u13c3\\u13d7\\u13cd\": 18348,\n    \"\\u13b5\\u13d9\\u13b8\": 18349,\n    \"\\u13be\\u13af\\u13cd\\u13d3\\u13c1\\u13b8\": 18350,\n    \"\\u2581\\u13d3\\u13c2\\u13c3\\u13af\": 18351,\n    \"\\u13b3\\u13cf\\u13c1\": 18352,\n    \"\\u2581\\u13da\\u13e6\": 18353,\n    \"\\u2581\\u13e5\\u13d5\\u13ab\\u13aa\\u13d3\\u13c1\": 18354,\n    \"\\u2581\\u13b1\\u13c3\\u13ae\": 18355,\n    \"\\u13bf\\u13d5\\u13a6\": 18356,\n    \"\\u2581\\u13d7\\u13e5\\u13c5\": 18357,\n    \"\\u13c2\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\\u13a9\": 18358,\n    \"\\u13d9\\u13a9\\u13e8\\u13cd\": 18359,\n    \"\\u13c2\\u13f2\\u13b1\": 18360,\n    \"\\u13c2\\u13f2\\u13b2\\u13a9\": 18361,\n    \"\\u2581\\u13a4\\u13be\\u13db\\u13c5\\u13a2\\u13cd\": 18362,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d9\\u13d7\": 18363,\n    \"\\u13c2\\u13d7\\u13cd\\u13a9\\u13cc\": 18364,\n    \"\\u2581\\u13d7\\u13ab\\u13f4\\u13a1\": 18365,\n    \"\\u13a9\\u13cd\\u13db\\u13d7\\u13cd\\u13d7\": 18366,\n    \"\\u13f4\\u13b8\\u13be\": 18367,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\": 18368,\n    \"\\u13cd\\u13a9\\u13ef\": 18369,\n    \"\\u2581\\u13a0\\u13e5\\u13a9\\u13a1\": 18370,\n    \"\\u2581\\u13d3\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\": 18371,\n    \"\\u13ac\\u13bf\\u13d7\\u13cd\\u13d7\": 18372,\n    \"\\u13f4\\u13eb\\u13ef\\u13af\": 18373,\n    \"\\u2581\\u13a4\\u13d3\\u13df\\u13cc\\u13c5\": 18374,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13a9\": 18375,\n    \"\\u13a4\\u13f4\\u13e2\": 18376,\n    \"\\u2581\\u13e3\\u13d3\\u13f4\": 18377,\n    \"\\u13e5\\u13c2\\u13c6\\u13d8\\u13ad\": 18378,\n    \"\\u13d5\\u13b0\\u13d7\\u13cd\\u13ac\": 18379,\n    \"\\u13ef\\u13a7\\u13af\\u13ef\": 18380,\n    \"\\u13c2\\u13c1\\u13a6\": 18381,\n    \"\\u13ac\\u13cd\\u13d5\\u13b8\": 18382,\n    \"\\u2581\\u13f3\\u13b5\\u13cd\\u13c6\\u13d9\": 18383,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\": 18384,\n    \"\\u2581\\u13af\\u13ef\\u13ab\\u13f4\": 18385,\n    \"\\u13d3\\u13cd\\u13a6\": 18386,\n    \"\\u13cd\\u13d7\\u13d7\\u13ce\": 18387,\n    \"\\u13cd\\u13d5\\u13b8\\u13ae\\u13a2\": 18388,\n    \"\\u13c2\\u13d0\\u13af\\u13cd\\u13d7\\u13f1\": 18389,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d5\\u13b8\\u13af\\u13d9\": 18390,\n    \"\\u13c2\\u13a9\\u13ce\\u13a2\": 18391,\n    \"\\u2581\\u13cd\\u13a9\\u13c2\\u13f4\": 18392,\n    \"\\u13f0\\u13cd\\u13db\\u13a2\": 18393,\n    \"\\u2581\\u13a0\\u13c2\\u13d9\": 18394,\n    \"\\u13e3\\u13ef\\u13c2\\u13cd\\u13a8\\u13cd\\u13d7\": 18395,\n    \"\\u13a0\\u13d1\\u13b5\": 18396,\n    \"\\u13e5\\u13be\\u13f0\\u13cd\\u13a6\": 18397,\n    \"\\u13a1\\u13c9\": 18398,\n    \"\\u2581\\u13d3\\u13f3\\u13f0\": 18399,\n    \"\\u13d5\\u13ae\\u13cd\\u13d7\": 18400,\n    \"\\u13b7\\u13c5\": 18401,\n    \"\\u2581\\u13d7\\u13e3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\": 18402,\n    \"\\u2581\\u13a2\\u13e8\\u13f2\\u13ea\\u13b3\\u13c1\\u13d7\": 18403,\n    \"ne\": 18404,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13aa\\u13e9\\u13d8\": 18405,\n    \"\\u13e5\\u13c5\\u13cd\\u13d3\\u13d5\\u13b8\\u13a9\": 18406,\n    \"\\u13a0\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13ad\": 18407,\n    \"\\u2581\\u13a4\\u13c2\\u13e3\\u13c4\": 18408,\n    \"\\u13ef\\u13c5\\u13cf\": 18409,\n    \"\\u13be\\u13d5\\u13cb\\u13af\\u13cd\\u13d7\": 18410,\n    \"\\u2581\\u13a3\\u13a9\\u13c3\\u13b8\": 18411,\n    \"\\u2581\\u13a3\\u13a9\\u13cd\\u13d5\\u13b8\\u13d7\": 18412,\n    \"\\u13d7\\u13db\\u13b2\": 18413,\n    \"\\u2581\\u13a4\\u13c3\\u13f4\\u13a8\": 18414,\n    \"\\u13e3\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\\u13cd\\u13d7\": 18415,\n    \"\\u13d3\\u13c5\\u13d6\\u13d7\\u13cd\\u13a8\": 18416,\n    \"\\u2581\\u13e7\\u13c2\\u13c5\\u13a2\\u13cd\": 18417,\n    \"\\u2581\\u13a2\\u13e3\\u13d8\\u13cd\\u13d7\\u13cd\": 18418,\n    \"\\u13b5\\u13cf\\u13ef\": 18419,\n    \"\\u13e5\\u13d9\\u13b5\\u13a9\": 18420,\n    \"\\u2581\\u13a1\\u13e3\\u13b5\\u13ae\\u13b5\": 18421,\n    \"\\u2581\\u13da\\u13be\\u13b3\\u13d1\": 18422,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13c1\": 18423,\n    \"\\u2581\\u13a3\\u13a6\\u13d3\\u13d9\\u13b5\\u13cd\": 18424,\n    \"\\u2581\\u13a0\\u13e5\\u13aa\\u13b5\\u13f0\": 18425,\n    \"\\u2581\\u13d5\\u13e5\\u13a6\\u13d4\\u13b2\": 18426,\n    \"\\u13d3\\u13e3\\u13db\\u13c2\": 18427,\n    \"\\u2581\\u13f2\\u13af\\u13f3\\u13b2\": 18428,\n    \"\\u2581\\u13a6\\u13c2\\u13c6\\u13d8\\u13ae\": 18429,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\\u13f4\": 18430,\n    \"\\u2581\\u13a2\\u13e5\\u13c3\\u13af\": 18431,\n    \"\\u13e5\\u13ad\\u13ef\\u13b8\": 18432,\n    \"\\u13a6\\u13b4\\u13c5\\u13d4\\u13c5\": 18433,\n    \"\\u2581\\u13c4\\u13be\\u13d5\\u13c1\": 18434,\n    \"\\u2581\\u13ed\\u13be\\u13b5\\u13cd\\u13d4\": 18435,\n    \"\\u13f2\\u13ce\\u13b4\\u13a2\": 18436,\n    \"\\u13ce\\u13b5\\u13d9\\u13d4\\u13c1\": 18437,\n    \"\\u2581\\u13d4\\u13d9\\u13b4\\u13b0\": 18438,\n    \"\\u2581\\u13a4\\u13c5\\u13a6\\u13b8\\u13ae\": 18439,\n    \"\\u2581\\u13f1\\u13be\\u13a9\\u13ea\": 18440,\n    \"\\u13ac\\u13ec\\u13af\\u13f3\\u13b2\\u13cd\\u13a8\\u13a2\": 18441,\n    \"\\u13c2\\u13cd\\u13d3\\u13e9\\u13d7\\u13d2\\u13a9\": 18442,\n    \"\\u13e4\\u13b2\\u13a9\": 18443,\n    \"\\u2581\\u13a2\\u13a6\\u13e0\\u13ef\\u13cd\\u13d9\\u13d7\": 18444,\n    \"\\u13a8\\u13eb\\u13d2\": 18445,\n    \"\\u13e5\\u13ef\\u13a0\": 18446,\n    \"\\u13c6\\u13b5\\u13c2\\u13ac\\u13ac\": 18447,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13c5\": 18448,\n    \"\\u13ef\\u13c5\\u13a1\\u13d7\\u13f1\": 18449,\n    \"\\u2581\\u13a4\\u13be\\u13c2\\u13a9\": 18450,\n    \"\\u13be\\u13a6\\u13cc\\u13ef\\u13cd\\u13d7\\u13d5\\u13a9\": 18451,\n    \"\\u13b5\\u13a5\\u13c2\\u13ae\\u13cd\\u13d7\": 18452,\n    \"\\u13b5\\u13c3\\u13ae\": 18453,\n    \"\\u13b6\\u13cf\\u13d9\\u13ae\": 18454,\n    \"\\u13c2\\u13bf\\u13b8\": 18455,\n    \"\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\\u13b5\": 18456,\n    \"\\u13ee\\u13d5\": 18457,\n    \"\\u2581\\u13d5\\u13a7\\u13c5\\u13eb\\u13cd\": 18458,\n    \"\\u13db\\u13af\\u13cd\\u13d3\": 18459,\n    \"\\u2581\\u13a2\\u13a9\\u13c5\\u13a6\": 18460,\n    \"\\u2581\\u13f0\\u13d9\": 18461,\n    \"\\u13e0\\u13ef\\u13cd\\u13d9\\u13d7\\u13f1\": 18462,\n    \"\\u13e3\\u13df\\u13b6\\u13cd\\u13d9\\u13d7\": 18463,\n    \"\\u13e4\\u13b5\\u13cd\\u13aa\\u13a2\": 18464,\n    \"\\u2581\\u13a0\\u13f0\\u13cd\\u13d3\": 18465,\n    \"\\u13b5\\u13c3\\u13af\\u13f0\\u13af\": 18466,\n    \"\\u13c2\\u13f2\\u13b5\\u13b4\": 18467,\n    \"\\u13d3\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\\u13a2\": 18468,\n    \"\\u2581\\u13e3\\u13e9\\u13af\": 18469,\n    \"\\u2581\\u13a1\\u13e3\\u13b8\\u13c9\": 18470,\n    \"\\u13d3\\u13cd\\u13d6\": 18471,\n    \"\\u2581\\u13ef\\u13ce\": 18472,\n    \"\\u13c4\\u13f4\\u13b8\": 18473,\n    \"\\u13ae\\u13d9\\u13b8\": 18474,\n    \"\\u13da\\u13be\\u13d3\\u13c2\\u13b8\\u13e8\": 18475,\n    \"\\u2581\\u13a8\\u13e5\\u13da\\u13a2\\u13cd\\u13d3\": 18476,\n    \"\\u2581\\u13a2\\u13e5\\u13c4\\u13aa\": 18477,\n    \"\\u2581\\u13cd\\u13a9\\u13f0\\u13b5\\u13ce\": 18478,\n    \"\\u13e5\\u13f2\\u13a6\": 18479,\n    \"\\u13f2\\u13cf\\u13cc\\u13c5\": 18480,\n    \"\\u2581\\u13a4\\u13be\\u13a9\\u13b6\\u13eb\": 18481,\n    \"\\u13d3\\u13c1\\u13b6\\u13db\\u13a2\": 18482,\n    \"\\u13d3\\u13ec\\u13cd\\u13aa\": 18483,\n    \"\\u13e3\\u13d3\\u13c5\\u13d8\": 18484,\n    \"\\u2581\\u13ef\\u13c7\\u13b5\\u13ce\": 18485,\n    \"\\u2581\\u13d1\\u13d3\\u13b5\\u13c9\": 18486,\n    \"\\u13b5\\u13a1\\u13b5\\u13e4\\u13b2\": 18487,\n    \"\\u13d3\\u13a1\\u13aa\\u13a2\": 18488,\n    \"\\u2581\\u13be\\u13c2\\u13a6\\u13d4\": 18489,\n    \"\\u2581\\u13cd\\u13a9\\u13c3\\u13c1\\u13d7\": 18490,\n    \"\\u13e4\\u13b8\\u13af\": 18491,\n    \"\\u13ef\\u13d7\\u13d2\": 18492,\n    \"\\u2581\\u13f1\\u13d5\\u13ab\\u13aa\\u13d3\": 18493,\n    \"\\u2581\\u13eb\\u13da\\u13b6\": 18494,\n    \"\\u13da\\u13a2\\u13cd\": 18495,\n    \"ati\": 18496,\n    \"\\u13ac\\u13ef\\u13db\\u13c1\\u13b8\\u13a2\": 18497,\n    \"\\u13a4\\u13aa\\u13b2\": 18498,\n    \"\\u2581\\u13e9\\u13be\\u13d3\\u13c5\": 18499,\n    \"\\u13b0\\u13ce\\u13b4\": 18500,\n    \"\\u13f4\\u13c2\\u13b8\": 18501,\n    \"\\u2581\\u13da\\u13ed\\u13cd\": 18502,\n    \"\\u13ef\\u13b8\\u13ce\": 18503,\n    \"\\u2581\\u13eb\\u13a9\\u13ef\": 18504,\n    \"\\u2581\\u13e7\\u13a6\\u13d8\\u13b4\": 18505,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b8\": 18506,\n    \"\\u13f0\\u13b6\": 18507,\n    \"\\u2581\\u13f4\\u13a6\\u13f2\\u13e5\": 18508,\n    \"\\u13ac\\u13e9\\u13b6\\u13d4\\u13c5\": 18509,\n    \"\\u2581\\u13d7\\u13a6\\u13ec\\u13c1\": 18510,\n    \"\\u13c1\\u13d9\\u13ae\\u13cd\\u13d7\": 18511,\n    \"\\u13a9\\u13f2\\u13cd\\u13d9\\u13d7\": 18512,\n    \"\\u2581\\u13ef\\u13f2\\u13cd\": 18513,\n    \"\\u13ec\\u13cd\\u13a8\\u13a2\": 18514,\n    \"\\u2581\\u13d7\\u13a8\\u13e7\\u13aa\": 18515,\n    \"\\u13ec\\u13b5\\u13e8\": 18516,\n    \"\\u2581\\u13a4\\u13be\\u13ab\\u13f4\": 18517,\n    \"\\u2581\\u13d3\\u13a6\\u13b5\\u13cd\\u13d3\\u13f4\": 18518,\n    \"\\u2581\\u13ef\\u13ab\": 18519,\n    \"\\u13d9\\u13b3\\u13c5\\u13cd\\u13d7\": 18520,\n    \"\\u13f1\\u13b6\\u13b4\": 18521,\n    \"\\u13c8\\u13b5\\u13f1\": 18522,\n    \"\\u2581\\u13d9\\u13cd\\u13d3\\u13d3\": 18523,\n    \"\\u13a9\\u13ef\\u13ea\\u13a6\": 18524,\n    \"\\u13cd\\u13d4\\u13e9\\u13d7\\u13d2\": 18525,\n    \"\\u2581\\u13a6\\u13c5\\u13eb\\u13cd\\u13d7\\u13cd\": 18526,\n    \"\\u2581\\u13cd\\u13c6\\u13d8\\u13c2\": 18527,\n    \"\\u13da\\u13b5\\u13cd\\u13d3\": 18528,\n    \"\\u13d7\\u13a7\\u13bf\\u13e9\\u13d7\": 18529,\n    \"\\u2581\\u13ef\\u13b4\\u13eb\\u13cd\\u13d7\\u13cd\": 18530,\n    \"\\u2581\\u13a0\\u13e5\\u13c4\\u13aa\\u13eb\\u13d2\": 18531,\n    \"\\u13d0\\u13e2\\u13d4\\u13c5\": 18532,\n    \"\\u2581\\u13d7\\u13d3\\u13c1\": 18533,\n    \"\\u13d3\\u13b8\\u13c9\\u13d7\\u13ad\": 18534,\n    \"\\u13ea\\u13a7\\u13c1\\u13b4\": 18535,\n    \"\\u13da\\u13d3\\u13f4\\u13ce\": 18536,\n    \"\\u2581\\u13d7\\u13e5\\u13c1\\u13d7\": 18537,\n    \"\\u13e5\\u13aa\\u13e9\\u13d4\": 18538,\n    \"\\u2581\\u13d9\\u13d3\\u13ac\\u13ef\": 18539,\n    \"\\u13f1\\u13be\\u13c6\\u13db\\u13c1\": 18540,\n    \"\\u13e5\\u13d4\\u13f2\\u13b8\\u13a9\": 18541,\n    \"\\u13aa\\u13b5\\u13a9\": 18542,\n    \"\\u13aa\\u13e9\\u13d8\\u13cd\\u13a8\": 18543,\n    \"\\u2581\\u13e7\\u13f2\\u13cd\\u13d9\\u13d7\": 18544,\n    \"\\u2581\\u13a4\\u13da\\u13b5\\u13cd\": 18545,\n    \"\\u13ea\\u13ae\\u13a2\": 18546,\n    \"\\u13df\\u13c2\\u13ac\\u13c1\\u13b4\": 18547,\n    \"\\u13a9\\u13d0\\u13e2\": 18548,\n    \"\\u13c2\\u13d9\\u13b4\\u13a2\": 18549,\n    \"\\u2581\\u13a4\\u13be\\u13da\\u13d3\\u13b4\\u13cd\\u13d7\": 18550,\n    \"\\u2581\\u13a2\\u13a4\\u13ea\\u13c5\": 18551,\n    \"\\u2581\\u13a3\\u13a9\\u13e9\\u13db\": 18552,\n    \"\\u13c1\\u13e4\\u13ad\": 18553,\n    \"\\u13cc\\u13b4\\u13d2\": 18554,\n    \"\\u13a6\\u13a9\\u13f3\": 18555,\n    \"\\u2581\\u13d3\\u13e3\\u13c4\\u13aa\": 18556,\n    \"\\u13d7\\u13e5\\u13ef\\u13ea\": 18557,\n    \"\\u13b5\\u13f0\\u13a2\": 18558,\n    \"\\u2581\\u13eb\\u13ab\\u13d3\": 18559,\n    \"\\u13b5\\u13cd\\u13da\\u13a2\\u13ce\\u13a2\": 18560,\n    \"\\u2581\\u13ac\\u13e9\\u13d3\\u13c5\\u13a1\": 18561,\n    \"\\u13cd\\u13ab\\u13d5\\u13cd\\u13d7\\u13f1\": 18562,\n    \"\\u13aa\\u13eb\\u13cd\\u13aa\": 18563,\n    \"\\u13f2\\u13cd\\u13a6\": 18564,\n    \"\\u13d7\\u13d4\\u13cd\\u13d3\": 18565,\n    \"\\u13a1\\u13cf\\u13a9\\u13c3\": 18566,\n    \"\\u2581\\u13db\\u13af\": 18567,\n    \"\\u13cd\\u13da\\u13df\\u13cd\\u13d4\\u13c5\": 18568,\n    \"\\u13c2\\u13c2\\u13d2\\u13a9\": 18569,\n    \"\\u2581\\u13a2\\u13a9\\u13a8\\u13f3\\u13af\": 18570,\n    \"\\u2581\\u13a7\\u13c1\\u13a2\\u13cd\\u13d9\\u13d7\": 18571,\n    \"\\u2581\\u13a4\\u13cd\\u13a6\\u13c5\": 18572,\n    \"\\u2581\\u13a3\\u13a6\\u13e2\\u13c8\": 18573,\n    \"\\u13be\\u13d1\\u13a9\\u13cd\": 18574,\n    \"\\u2581\\u13f1\\u13a6\\u13d3\\u13d9\": 18575,\n    \"\\u13a6\\u13be\\u13c4\\u13aa\\u13ac\": 18576,\n    \"\\u13cd\\u13d3\\u13f1\\u13d5\\u13b4\": 18577,\n    \"\\u2581\\u13a4\\u13aa\\u13b5\\u13f0\\u13cd\\u13ac\": 18578,\n    \"\\u2581\\u13ac\\u13e9\\u13c1\\u13e4\": 18579,\n    \"\\u13f0\\u13cd\\u13db\\u13c1\": 18580,\n    \"\\u2581\\u13a6\\u13d5\\u13b6\\u13a3\": 18581,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13ae\": 18582,\n    \"\\u2581\\u13f1\\u13c2\\u13a6\\u13db\": 18583,\n    \"\\u2581\\u13d5\\u13e3\\u13d8\\u13c3\": 18584,\n    \"\\u13e8\\u13f0\\u13b3\\u13d7\\u13d9\\u13ad\": 18585,\n    \"\\u13a8\\u13d3\\u13b5\\u13f0\": 18586,\n    \"\\u2581\\u13da\\u13d2\\u13ad\\u13c2\": 18587,\n    \"\\u13c2\\u13f1\\u13cd\\u13aa\": 18588,\n    \"\\u13b5\\u13e5\\u13d9\\u13c2\\u13d9\\u13b8\\u13ad\": 18589,\n    \"\\u2581\\u13a2\\u13ab\\u13d3\\u13b4\": 18590,\n    \"\\u2581\\u13f3\\u13be\\u13d3\\u13c5\\u13d6\": 18591,\n    \"\\u2581\\u13d9\\u13a9\\u13a9\\u13e8\": 18592,\n    \"\\u13ec\\u13cd\\u13d4\\u13c2\": 18593,\n    \"\\u13ef\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\\u13ad\": 18594,\n    \"\\u2581\\u13a1\\u13e5\\u13ec\": 18595,\n    \"\\u13a6\\u13ce\\u13d9\\u13d7\": 18596,\n    \"\\u2581\\u13e7\\u13d5\\u13c1\": 18597,\n    \"\\u13e4\\u13b7\\u13a9\": 18598,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13e5\\u13d9\\u13c1\": 18599,\n    \"\\u13be\\u13b5\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 18600,\n    \"\\u2581\\u13ed\\u13c2\\u13e9\\u13db\": 18601,\n    \"\\u2581\\u13da\\u13f2\\u13d2\": 18602,\n    \"\\u2581\\u13d7\\u13a8\\u13e3\\u13d3\\u13c2\\u13b8\": 18603,\n    \"\\u2581\\u13e7\\u13e0\\u13a0\\u13ce\": 18604,\n    \"\\u2581\\u13ed\\u13be\\u13d5\": 18605,\n    \"\\u2581\\u13a4\\u13be\\u13aa\\u13b2\\u13cd\": 18606,\n    \"\\u13a6\\u13be\\u13a8\": 18607,\n    \"\\u2581\\u13a3\\u13e5\\u13cd\\u13d7\\u13f0\": 18608,\n    \"\\u2581\\u13d7\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\": 18609,\n    \"\\u13cd\\u13a9\\u13a7\\u13cf\": 18610,\n    \"\\u13e9\\u13db\\u13c1\\u13b8\\u13a2\": 18611,\n    \"\\u13f2\\u13b1\": 18612,\n    \"\\u13d4\\u13cd\\u13a9\\u13ce\": 18613,\n    \"\\u13f2\\u13af\\u13ce\\u13b2\": 18614,\n    \"\\u2581\\u13a0\\u13cb\\u13a8\": 18615,\n    \"\\u13da\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 18616,\n    \"\\u2581\\u13d3\\u13cc\\u13ec\\u13a2\": 18617,\n    \"\\u13a9\\u13c2\\u13f4\\u13db\": 18618,\n    \"\\u13aa\\u13d3\\u13cf\": 18619,\n    \"\\u2581\\u13e5\\u13b6\\u13d2\": 18620,\n    \"\\u13e4\\u13d9\\u13b5\\u13d9\\u13ae\": 18621,\n    \"\\u2581\\u13da\\u13cd\\u13d5\\u13b8\\u13ae\": 18622,\n    \"\\u13aa\\u13eb\": 18623,\n    \"\\u2581\\u13eb\\u13da\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\": 18624,\n    \"\\u13f2\\u13b0\\u13cf\": 18625,\n    \"\\u2581\\u13a1\\u13e3\\u13b5\\u13e5\\u13d9\\u13c1\": 18626,\n    \"\\u13e3\\u13db\\u13c2\": 18627,\n    \"\\u13d7\\u13a6\\u13d8\\u13b8\\u13cd\\u13d7\": 18628,\n    \"\\u2581\\u13a0\\u13c6\\u13e6\\u13e9\": 18629,\n    \"\\u13d3\\u13c5\\u13a9\\u13b6\": 18630,\n    \"\\u13d9\\u13d7\\u13f1\\u13c9\": 18631,\n    \"\\u2581\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\": 18632,\n    \"\\u2581\\u13e5\\u13e3\\u13da\\u13b5\": 18633,\n    \"\\u13c2\\u13cf\\u13c5\\u13d2\": 18634,\n    \"\\u13c2\\u13f0\\u13b8\\u13ad\": 18635,\n    \"\\u13e3\\u13d7\\u13cd\\u13d3\\u13c1\": 18636,\n    \"\\u13c5\\u13eb\\u13cd\\u13d4\\u13c5\": 18637,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13a6\\u13c3\": 18638,\n    \"\\u13d7\\u13f2\\u13aa\": 18639,\n    \"\\u13a6\\u13d9\\u13b2\": 18640,\n    \"\\u2581\\u13a0\\u13c6\\u13c5\": 18641,\n    \"\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 18642,\n    \"\\u2581\\u13a2\\u13e5\\u13a7\\u13b5\\u13a2\\u13cd\\u13d7\": 18643,\n    \"\\u13d7\\u13ef\\u13c2\": 18644,\n    \"\\u13b7\\u13e4\\u13ae\\u13cd\\u13d7\": 18645,\n    \"\\u2581\\u13a4\\u13ea\\u13b3\\u13d7\": 18646,\n    \"\\u2581\\u13a0\\u13e5\\u13f2\": 18647,\n    \"\\u2581\\u13e7\\u13d8\\u13c5\\u13cd\\u13d7\": 18648,\n    \"\\u13e3\\u13ef\\u13a0\": 18649,\n    \"\\u13e5\\u13f2\\u13ce\\u13b5\": 18650,\n    \"\\u13a8\\u13b2\\u13ce\": 18651,\n    \"\\u2581\\u13e5\\u13ae\": 18652,\n    \"\\u13ef\\u13d9\\u13ae\\u13ae\": 18653,\n    \"\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13af\": 18654,\n    \"\\u13e5\\u13c4\\u13aa\\u13eb\\u13cd\\u13a6\": 18655,\n    \"\\u2581\\u13f1\\u13d9\\u13a6\\u13d3\\u13c2\\u13b8\": 18656,\n    \"\\u2581\\u13a2\\u13a8\\u13e3\": 18657,\n    \"\\u13e0\\u13b8\": 18658,\n    \"\\u2581\\u13e7\\u13b3\\u13d1\": 18659,\n    \"\\u13e2\\u13be\\u13c1\\u13b8\\u13af\": 18660,\n    \"\\u2581\\u13a3\\u13a9\\u13c2\\u13f2\": 18661,\n    \"\\u13cd\\u13d3\\u13f1\\u13d5\\u13b8\": 18662,\n    \"\\u13ea\\u13ce\\u13b2\\u13a2\": 18663,\n    \"\\u13d9\\u13ea\\u13b3\\u13c1\": 18664,\n    \"\\u2581\\u13d5\\u13d3\": 18665,\n    \"\\u13c2\\u13a8\\u13ce\": 18666,\n    \"\\u13d4\\u13ec\\u13d9\": 18667,\n    \"\\u13d9\\u13cd\\u13d9\": 18668,\n    \"\\u2581\\u13a0\\u13c2\\u13c5\\u13eb\\u13cd\\u13d7\\u13cd\": 18669,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\": 18670,\n    \"\\u13d3\\u13b5\\u13aa\\u13c1\": 18671,\n    \"\\u2581\\u13a4\\u13e9\\u13a8\\u13eb\\u13d2\": 18672,\n    \"\\u2581\\u13e5\\u13a6\\u13e1\": 18673,\n    \"\\u13ec\\u13e3\\u13b3\": 18674,\n    \"\\u13e3\\u13c4\\u13ec\\u13cd\\u13d3\": 18675,\n    \"\\u2581\\u13d7\\u13d0\\u13c8\": 18676,\n    \"\\u2581\\u13e5\\u13e4\\u13d9\": 18677,\n    \"\\u13c2\\u13f4\\u13ae\": 18678,\n    \"\\u13c2\\u13a6\\u13ef\\u13b7\\u13d7\": 18679,\n    \"\\u13d7\\u13d5\\u13c2\": 18680,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13aa\\u13c2\": 18681,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13ce\\u13a2\": 18682,\n    \"\\u13b5\\u13ac\\u13da\\u13b3\\u13c1\": 18683,\n    \"\\u2581\\u13d7\\u13a6\\u13d6\": 18684,\n    \"\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13a6\": 18685,\n    \"\\u2581\\u13da\\u13be\\u13a7\\u13be\": 18686,\n    \"\\u2581\\u13a6\\u13e5\\u13a5\": 18687,\n    \"\\u13ac\\u13e9\\u13db\\u13db\\u13d7\": 18688,\n    \"\\u13a9\\u13a9\\u13b5\\u13f2\": 18689,\n    \"\\u2581\\u13d9\\u13db\\u13d8\\u13c2\": 18690,\n    \"\\u13ac\\u13cb\\u13c1\\u13d7\\u13f1\": 18691,\n    \"\\u2581\\u13a1\\u13e3\\u13ef\\u13c5\": 18692,\n    \"\\u13e5\\u13cd\\u13c6\\u13c2\\u13aa\\u13d4\\u13c5\": 18693,\n    \"\\u2581\\u13eb\\u13ab\\u13e9\": 18694,\n    \"\\u2581\\u13f3\\u13d9\\u13af\\u13f3\": 18695,\n    \"\\u13a9\\u13cf\\u13d9\\u13ae\": 18696,\n    \"\\u13e5\\u13b8\\u13cd\\u13ac\": 18697,\n    \"\\u13a9\\u13a7\\u13b2\": 18698,\n    \"\\u13be\\u13e3\\u13a2\\u13ce\\u13a2\": 18699,\n    \"\\u2581\\u13d5\\u13ad\\u13d8\": 18700,\n    \"\\u2581\\u13a0\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d9\\u13d7\": 18701,\n    \"\\u13db\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\": 18702,\n    \"\\u13d9\\u13b8\\u13af\": 18703,\n    \"\\u13c2\\u13a7\\u13c5\": 18704,\n    \"\\u2581\\u13a4\\u13d5\\u13c1\": 18705,\n    \"\\u2581\\u13a4\\u13c2\\u13f2\\u13a2\\u13ce\": 18706,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13b8\\u13c9\\u13d7\": 18707,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\\u13eb\\u13d2\": 18708,\n    \"\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a9\": 18709,\n    \"\\u2581\\u13e7\\u13c2\\u13cd\\u13d5\\u13b8\": 18710,\n    \"\\u2581\\u13e7\\u13b3\\u13c1\\u13b8\": 18711,\n    \"\\u13b5\\u13f0\\u13a1\": 18712,\n    \"\\u13ef\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\": 18713,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13aa\\u13a2\": 18714,\n    \"\\u2581\\u13a2\\u13e5\\u13aa\\u13e9\\u13db\\u13d7\": 18715,\n    \"\\u13b4\\u13eb\\u13cd\\u13d4\\u13c1\\u13b4\": 18716,\n    \"\\u13d3\\u13eb\\u13d4\\u13c5\": 18717,\n    \"\\u13e3\\u13db\\u13c1\\u13ad\": 18718,\n    \"\\u13f2\\u13ea\\u13b3\\u13cf\": 18719,\n    \"\\u2581\\u13ac\\u13e9\\u13c4\\u13aa\\u13e4\": 18720,\n    \"\\u2581\\u13e5\\u13c2\\u13ac\\u13c1\": 18721,\n    \"\\u2581\\u13da\\u13cd\\u13da\": 18722,\n    \"\\u2581\\u13a3\\u13a9\\u13f2\\u13b0\\u13ce\": 18723,\n    \"re\": 18724,\n    \"\\u2581\\u13a4\\u13ef\\u13ea\\u13d0\\u13b8\": 18725,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13c1\\u13b8\": 18726,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13f4\": 18727,\n    \"\\u2581\\u13be\\u13c6\\u13b5\\u13c2\\u13ac\": 18728,\n    \"\\u13b5\\u13d9\\u13b2\": 18729,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13b5\\u13f0\": 18730,\n    \"\\u2581\\u13a0\\u13e5\\u13c1\\u13b0\": 18731,\n    \"\\u2581\\u13d7\\u13e5\\u13f2\": 18732,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13cc\\u13ef\\u13cd\": 18733,\n    \"\\u13e0\\u13ef\\u13cd\\u13d7\": 18734,\n    \"\\u2581\\u13ac\\u13a9\\u13e2\": 18735,\n    \"\\u2581\\u13e7\\u13a7\\u13b5\\u13e8\": 18736,\n    \"\\u13be\\u13cf\\u13c2\\u13ce\\u13a2\": 18737,\n    \"\\u2581\\u13a2\\u13e3\\u13d9\\u13b4\\u13b0\\u13cd\": 18738,\n    \"\\u13c3\\u13af\\u13f3\\u13b2\": 18739,\n    \"\\u13d3\\u13a2\\u13c5\": 18740,\n    \"\\u2581\\u13a0\\u13e5\\u13be\\u13d7\\u13c5\": 18741,\n    \"\\u2581\\u13ac\\u13e9\\u13c1\\u13c1\": 18742,\n    \"\\u13c4\\u13aa\\u13a2\\u13cd\\u13d7\": 18743,\n    \"\\u2581\\u13a6\\u13c5\\u13aa\": 18744,\n    \"\\u2581\\u13f3\\u13d3\\u13b5\": 18745,\n    \"\\u13be\\u13b5\\u13aa\\u13c1\": 18746,\n    \"\\u13d8\\u13c2\\u13d3\\u13cd\\u13d7\": 18747,\n    \"\\u13e6\\u13ea\\u13b5\\u13cd\": 18748,\n    \"\\u13af\\u13ce\\u13d7\\u13f1\": 18749,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\": 18750,\n    \"\\u2581\\u13a0\\u13d0\\u13e9\": 18751,\n    \"\\u13aa\\u13b5\\u13f0\\u13a5\\u13a9\": 18752,\n    \"\\u13d3\\u13db\\u13c1\\u13b2\": 18753,\n    \"\\u13ce\\u13b5\\u13d3\\u13c1\\u13b8\": 18754,\n    \"\\u13be\\u13db\\u13c1\\u13b2\\u13be\": 18755,\n    \"\\u13eb\\u13db\\u13b2\\u13ad\": 18756,\n    \"\\u2581\\u13e6\\u13e3\": 18757,\n    \"\\u2581\\u13d3\\u13ef\\u13d9\\u13ae\": 18758,\n    \"\\u2581\\u13a4\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\": 18759,\n    \"\\u13e3\\u13ab\\u13f4\\u13a1\\u13d7\": 18760,\n    \"\\u13b5\\u13cd\\u13d9\\u13f0\\u13b2\": 18761,\n    \"\\u13be\\u13d3\\u13d8\\u13be\\u13a5\": 18762,\n    \"\\u2581\\u13da\\u13c2\\u13ec\\u13c2\": 18763,\n    \"\\u2581\\u13a0\\u13b4\\u13eb\\u13cd\\u13d8\\u13cd\": 18764,\n    \"\\u13e9\\u13e5\\u13cd\\u13d3\": 18765,\n    \"\\u2581\\u13e3\\u13ab\\u13f4\\u13a1\": 18766,\n    \"\\u13b5\\u13d6\\u13b8\\u13c2\": 18767,\n    \"\\u13b5\\u13b6\\u13b2\\u13cd\\u13a6\": 18768,\n    \"\\u2581\\u13a0\\u13d5\\u13b6\\u13b0\\u13af\\u13cd\": 18769,\n    \"\\u13aa\\u13a1\\u13b8\": 18770,\n    \"\\u2581\\u13f1\\u13ed\\u13c2\\u13b7\": 18771,\n    \"\\u2581\\u13d5\\u13e3\\u13a7\\u13c2\\u13cd\": 18772,\n    \"\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\\u13cd\\u13a9\": 18773,\n    \"\\u13ea\\u13d8\\u13b8\\u13af\": 18774,\n    \"\\u13d3\\u13f3\\u13c2\\u13b6\\u13d2\\u13af\": 18775,\n    \"\\u13c4\\u13ea\": 18776,\n    \"\\u2581\\u13a2\\u13f2\\u13ac\": 18777,\n    \"\\u2581\\u13d3\\u13be\\u13d5\\u13b0\": 18778,\n    \"\\u2581\\u13a4\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\": 18779,\n    \"\\u2581\\u13a4\\u13f0\\u13d9\\u13b3\": 18780,\n    \"\\u13a7\\u13b5\\u13b4\": 18781,\n    \"\\u2581\\u13d3\\u13cb\\u13c2\": 18782,\n    \"\\u2581\\u13d3\\u13b5\": 18783,\n    \"\\u13d7\\u13e7\\u13ac\\u13a2\": 18784,\n    \"\\u13a6\\u13c5\\u13d7\\u13f1\": 18785,\n    \"\\u2581\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\": 18786,\n    \"\\u2581\\u13a0\\u13d2\\u13c2\\u13ae\": 18787,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d3\\u13f1\": 18788,\n    \"\\u13da\\u13b8\\u13b2\\u13a9\": 18789,\n    \"\\u2581\\u13d5\\u13a8\\u13a6\\u13ec\": 18790,\n    \"\\u2581\\u13e3\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\": 18791,\n    \"\\u13cd\\u13d8\\u13f0\\u13ac\": 18792,\n    \"\\u2581\\u13af\\u13df\\u13cf\": 18793,\n    \"\\u13da\\u13d2\\u13c1\\u13a2\": 18794,\n    \"\\u2581\\u13a0\\u13c2\\u13cc\\u13db\\u13a5\\u13cd\": 18795,\n    \"\\u13c4\\u13ea\\u13cd\\u13d7\": 18796,\n    \"\\u13a7\\u13f2\": 18797,\n    \"\\u13ac\\u13e9\\u13d9\\u13e2\": 18798,\n    \"\\u13e9\\u13be\\u13db\\u13c1\\u13d7\": 18799,\n    \"\\u2581\\u13c2\\u13a6\\u13b5\\u13cd\": 18800,\n    \"\\u2581\\u13a3\\u13e5\\u13c1\\u13a2\\u13cd\\u13d7\": 18801,\n    \"\\u13e5\\u13c3\\u13c1\\u13d7\\u13f1\": 18802,\n    \"\\u2581\\u13e5\\u13e8\\u13ef\\u13b5\\u13e5\\u13d9\\u13c1\": 18803,\n    \"\\u2581\\u13da\\u13cd\\u13d5\\u13b8\": 18804,\n    \"\\u13c5\\u13e9\\u13cd\\u13db\\u13c9\": 18805,\n    \"\\u2581\\u13a6\\u13e5\\u13f2\\u13a2\\u13f3\\u13d3\\u13c1\": 18806,\n    \"\\u2581\\u13a8\\u13e5\\u13d0\\u13c5\": 18807,\n    \"\\u2581\\u13a1\\u13e5\\u13b7\\u13e5\": 18808,\n    \"\\u13b5\\u13e4\\u13d7\\u13f1\": 18809,\n    \"\\u13f0\\u13ce\\u13a2\": 18810,\n    \"\\u13e2\\u13d4\\u13cd\\u13d7\": 18811,\n    \"\\u13e3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d3\": 18812,\n    \"\\u2581\\u13a0\\u13c2\\u13a9\\u13b5\\u13f2\\u13e5\\u13d9\": 18813,\n    \"\\u13c1\\u13a2\\u13cd\\u13d3\\u13cf\": 18814,\n    \"\\u2581\\u13a3\\u13e3\\u13b4\\u13c2\": 18815,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\": 18816,\n    \"\\u13a9\\u13d0\\u13e2\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 18817,\n    \"\\u2581\\u13a0\\u13c2\\u13cc\\u13c6\\u13b4\": 18818,\n    \"\\u13b6\\u13c4\\u13a1\": 18819,\n    \"\\u2581\\u13ad\\u13b4\\u13c2\\u13d9\": 18820,\n    \"\\u13d0\\u13c5\\u13f0\\u13b5\": 18821,\n    \"\\u2581\\u13a4\\u13e3\\u13b3\": 18822,\n    \"\\u13b8\\u13c9\\u13d7\\u13cd\\u13aa\": 18823,\n    \"\\u2581\\u13c4\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\": 18824,\n    \"\\u2581\\u13e5\\u13d4\\u13f2\\u13ce\": 18825,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\\u13b0\": 18826,\n    \"\\u13cd\\u13a6\\u13c5\\u13e4\\u13b8\": 18827,\n    \"\\u13d3\\u13e3\\u13b5\\u13cd\\u13d4\\u13c2\": 18828,\n    \"\\u2581\\u13d3\\u13c2\\u13a6\\u13d4\\u13b2\\u13cd\": 18829,\n    \"\\u13cd\\u13ab\\u13d5\\u13d2\\u13a9\": 18830,\n    \"\\u2581\\u13c2\\u13d3\\u13be\\u13db\": 18831,\n    \"\\u13f3\\u13d6\\u13cd\": 18832,\n    \"\\u13b2\\u13cd\": 18833,\n    \"\\u13e3\\u13d3\\u13c1\\u13ae\\u13cd\\u13d7\": 18834,\n    \"\\u2581\\u13f1\\u13d3\\u13a7\\u13bf\\u13e9\\u13d5\": 18835,\n    \"\\u2581\\u13d7\\u13e5\\u13da\": 18836,\n    \"\\u13a4\\u13a8\\u13f3\\u13ad\": 18837,\n    \"\\u13d1\\u13f4\\u13a5\\u13cd\": 18838,\n    \"\\u13c4\\u13aa\\u13e8\\u13ad\": 18839,\n    \"\\u2581\\u13d5\\u13a6\\u13ab\": 18840,\n    \"\\u2581\\u13cd\\u13a9\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\": 18841,\n    \"\\u13ec\\u13c2\\u13cd\\u13a9\": 18842,\n    \"\\u13b3\\u13d7\\u13cd\\u13db\": 18843,\n    \"\\u13e5\\u13f1\\u13b5\\u13d9\": 18844,\n    \"\\u13c1\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 18845,\n    \"\\u13b5\\u13cc\\u13b3\\u13d7\": 18846,\n    \"\\u13cd\\u13a6\\u13c5\\u13a6\": 18847,\n    \"\\u13a6\\u13b5\\u13cd\\u13d9\\u13d3\": 18848,\n    \"\\u13c2\\u13ad\\u13b7\\u13a9\\u13cd\": 18849,\n    \"\\u2581\\u13a0\\u13c7\\u13d9\": 18850,\n    \"\\u13aa\\u13b2\\u13cd\\u13d3\": 18851,\n    \"\\u2581\\u13a2\\u13e5\\u13be\\u13f0\": 18852,\n    \"\\u2581\\u13da\\u13a8\\u13af\\u13d9\": 18853,\n    \"\\u13be\\u13c2\\u13cd\\u13ac\": 18854,\n    \"\\u13a0\\u13cf\\u13b3\\u13db\": 18855,\n    \"\\u2581\\u13d8\\u13c2\\u13e3\": 18856,\n    \"\\u2581\\u13da\\u13be\\u13d7\\u13e9\": 18857,\n    \"\\u13ef\\u13cd\\u13d4\\u13c1\": 18858,\n    \"\\u13a0\\u13c2\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 18859,\n    \"\\u13e5\\u13a6\\u13d4\\u13b0\": 18860,\n    \"\\u2581\\u13a5\\u13aa\\u13a9\\u13d4\\u13f2\\u13ce\": 18861,\n    \"\\u13be\\u13db\\u13db\\u13c1\\u13a2\": 18862,\n    \"\\u13c9\\u13cc\": 18863,\n    \"\\u13c2\\u13ef\\u13a1\\u13a2\": 18864,\n    \"\\u13bf\\u13b8\\u13d2\\u13a2\": 18865,\n    \"\\u2581\\u13a4\\u13c2\\u13a7\\u13b5\\u13a2\\u13cd\": 18866,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b5\": 18867,\n    \"\\u2581\\u13e9\\u13a9\\u13cd\": 18868,\n    \"\\u13db\\u13cd\\u13c6\\u13b8\\u13af\": 18869,\n    \"\\u13e4\\u13d9\\u13b8\\u13af\": 18870,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13b4\": 18871,\n    \"\\u2581\\u13a6\\u13e5\\u13cd\\u13d5\\u13b8\": 18872,\n    \"\\u13e5\\u13a6\\u13d4\\u13b2\\u13a2\": 18873,\n    \"\\u2581\\u13a4\\u13c2\\u13b6\\u13c4\\u13ae\": 18874,\n    \"\\u2581\\u13e7\\u13be\\u13db\\u13af\\u13cd\": 18875,\n    \"\\u2581\\u13eb\\u13d3\\u13be\\u13d3\": 18876,\n    \"\\u2581\\u13e5\\u13da\\u13f2\": 18877,\n    \"\\u13da\\u13ce\\u13aa\\u13a9\\u13ce\": 18878,\n    \"\\u2581\\u13f1\\u13aa\\u13ea\": 18879,\n    \"\\u2581\\u13a6\\u13b5\\u13ec\": 18880,\n    \"\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a9\": 18881,\n    \"\\u13e5\\u13c2\\u13f4\": 18882,\n    \"\\u13ce\\u13aa\\u13a9\\u13cf\": 18883,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\\u13b4\": 18884,\n    \"\\u13d7\\u13b7\\u13e8\": 18885,\n    \"\\u13da\\u13aa\\u13d4\\u13c5\": 18886,\n    \"\\u13e3\\u13b5\\u13c2\\u13a9\\u13d7\\u13f3\": 18887,\n    \"\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\\u13a2\": 18888,\n    \"\\u13ea\\u13ce\\u13b8\": 18889,\n    \"\\u13d9\\u13af\\u13f3\\u13c5\\u13a9\": 18890,\n    \"\\u13e3\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13db\": 18891,\n    \"\\u2581\\u13da\\u13e9\\u13cd\\u13a6\": 18892,\n    \"\\u13d8\\u13c3\\u13b4\\u13a2\": 18893,\n    \"\\u2581\\u13ac\\u13e9\\u13cd\\u13c6\\u13c2\\u13aa\\u13d9\\u13d7\": 18894,\n    \"\\u13cd\\u13d3\\u13db\\u13c1\\u13b8\": 18895,\n    \"\\u2581\\u13cd\\u13a9\\u13f0\\u13b8\": 18896,\n    \"\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13be\": 18897,\n    \"\\u13e9\\u13d5\\u13a6\": 18898,\n    \"\\u13d5\\u13ef\\u13d9\": 18899,\n    \"\\u13cc\\u13d9\\u13f1\\u13cd\": 18900,\n    \"\\u2581\\u13eb\\u13a6\\u13d3\\u13d9\\u13b5\\u13cd\": 18901,\n    \"\\u13b5\\u13ec\\u13e5\\u13d5\\u13be\": 18902,\n    \"to\": 18903,\n    \"\\u2581\\u13f1\\u13a6\\u13d4\\u13ae\": 18904,\n    \"\\u13e5\\u13b3\\u13c5\\u13d3\\u13d5\": 18905,\n    \"\\u13ef\\u13f4\\u13ad\": 18906,\n    \"\\u13d3\\u13d4\\u13b6\\u13d2\": 18907,\n    \"\\u2581\\u13e3\\u13a6\\u13b8\\u13cd\": 18908,\n    \"\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d9\\u13d7\\u13f1\": 18909,\n    \"\\u2581\\u13f3\\u13be\\u13d5\": 18910,\n    \"en\": 18911,\n    \"\\u13b8\\u13c9\\u13d7\\u13cd\\u13ac\": 18912,\n    \"\\u2581\\u13eb\\u13d7\\u13b7\": 18913,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13aa\\u13c2\": 18914,\n    \"\\u2581\\u13a4\\u13df\\u13eb\\u13db\": 18915,\n    \"\\u13b5\\u13aa\\u13c1\\u13b4\": 18916,\n    \"\\u13a6\\u13d8\\u13d7\\u13cd\\u13d3\\u13c1\\u13b8\": 18917,\n    \"\\u13b6\\u13d5\\u13cd\\u13d7\": 18918,\n    \"\\u13df\\u13cc\\u13c5\\u13af\": 18919,\n    \"\\u2581\\u13c2\\u13da\\u13ed\\u13aa\\u13d4\": 18920,\n    \"\\u2581\\u13a6\\u13c1\\u13df\\u13f4\\u13cd\": 18921,\n    \"\\u2581\\u13ef\\u13d3\\u13c1\": 18922,\n    \"\\u2581\\u13a4\\u13cc\\u13b5\\u13d3\": 18923,\n    \"\\u2581\\u13e5\\u13e5\\u13b7\": 18924,\n    \"\\u2581\\u13e3\\u13b8\\u13c9\": 18925,\n    \"\\u13a6\\u13da\\u13b2\": 18926,\n    \"\\u13b6\\u13cd\\u13a8\": 18927,\n    \"\\u2581\\u13a2\\u13d3\\u13d3\\u13c1\": 18928,\n    \"\\u13e5\\u13cd\\u13c8\\u13cd\": 18929,\n    \"\\u13d5\\u13b6\\u13b0\\u13d2\": 18930,\n    \"\\u2581\\u13d3\\u13d3\\u13c5\": 18931,\n    \"\\u13a6\\u13b4\\u13d9\\u13d7\": 18932,\n    \"\\u13a6\\u13d4\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 18933,\n    \"\\u13d3\\u13c5\\u13d6\\u13b5\\u13d9\\u13b2\\u13a2\": 18934,\n    \"\\u2581\\u13e5\\u13c2\\u13c6\\u13d8\": 18935,\n    \"\\u2581\\u13a4\\u13c2\\u13b8\\u13c9\\u13d9\": 18936,\n    \"\\u13d2\\u13cd\\u13d7\\u13cd\\u13ac\": 18937,\n    \"\\u2581\\u13a0\\u13b5\\u13cd\\u13c6\": 18938,\n    \"\\u13cd\\u13a6\\u13b8\\u13a6\": 18939,\n    \"\\u13df\\u13c3\\u13ae\\u13d4\\u13c5\": 18940,\n    \"\\u2581\\u13a0\\u13c2\\u13be\\u13f0\\u13cd\\u13a8\": 18941,\n    \"\\u13a3\\u13af\\u13cd\\u13d7\": 18942,\n    \"\\u13da\\u13cf\\u13d4\\u13d5\\u13a2\": 18943,\n    \"\\u2581\\u13e5\\u13d5\\u13a6\\u13d5\\u13f2\": 18944,\n    \"\\u13c2\\u13b7\\u13c6\\u13d7\\u13c5\": 18945,\n    \"\\u13ef\\u13cf\\u13d4\\u13db\": 18946,\n    \"\\u2581\\u13f1\\u13e3\\u13db\\u13a6\\u13c1\": 18947,\n    \"\\u13e0\\u13b0\": 18948,\n    \"\\u13da\\u13a9\\u13cd\\u13d7\\u13f1\": 18949,\n    \"\\u2581\\u13da\\u13e9\\u13c2\": 18950,\n    \"\\u13e5\\u13b7\\u13a6\": 18951,\n    \"\\u13c6\\u13c2\\u13f2\\u13cd\\u13d7\": 18952,\n    \"\\u2581\\u13f3\\u13b7\\u13e5\": 18953,\n    \"\\u2581\\u13d5\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\": 18954,\n    \"\\u13a6\\u13d8\\u13b4\\u13ac\": 18955,\n    \"\\u2581\\u13e5\\u13c2\\u13ea\": 18956,\n    \"\\u13da\\u13ef\\u13d9\\u13ae\\u13b8\": 18957,\n    \"\\u13d3\\u13c3\\u13f4\\u13b5\\u13cd\\u13db\": 18958,\n    \"\\u2581\\u13a8\\u13e5\\u13c3\\u13ae\": 18959,\n    \"\\u13d3\\u13c2\\u13b8\\u13aa\": 18960,\n    \"\\u13e5\\u13f3\\u13aa\\u13d3\\u13c1\\u13b0\\u13a2\": 18961,\n    \"\\u13cd\\u13a9\\u13f0\\u13b3\": 18962,\n    \"\\u13d5\\u13b6\\u13c6\": 18963,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13d7\\u13cd\": 18964,\n    \"\\u13e5\\u13ef\\u13da\\u13d3\\u13b3\": 18965,\n    \"\\u2581\\u13a0\\u13c6\\u13d5\\u13b6\\u13c6\": 18966,\n    \"\\u13a6\\u13d8\\u13c5\\u13cd\\u13d7\": 18967,\n    \"\\u13d9\\u13b4\\u13b0\\u13af\": 18968,\n    \"\\u2581\\u13c5\\u13d7\\u13a6\\u13b5\": 18969,\n    \"\\u13d3\\u13c4\\u13f4\\u13db\": 18970,\n    \"\\u13a9\\u13c5\\u13d2\\u13af\": 18971,\n    \"\\u2581\\u13a6\\u13c5\\u13d3\\u13d7\": 18972,\n    \"\\u13d3\\u13a6\\u13d3\\u13c2\\u13b8\\u13aa\": 18973,\n    \"\\u13c2\\u13c1\\u13a6\\u13b8\": 18974,\n    \"\\u13a6\\u13d0\\u13a0\\u13d2\": 18975,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d4\\u13c5\": 18976,\n    \"\\u2581\\u13d3\\u13a6\\u13b8\\u13cd\": 18977,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13aa\": 18978,\n    \"\\u13e0\\u13af\\u13cd\\u13d4\\u13c5\": 18979,\n    \"\\u13ec\\u13c1\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 18980,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\\u13c1\": 18981,\n    \"\\u13c5\\u13e4\": 18982,\n    \"\\u13c2\\u13a8\\u13e8\\u13bf\\u13d5\": 18983,\n    \"\\u13cd\\u13db\\u13d7\\u13cd\\u13d9\\u13d7\": 18984,\n    \"\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\": 18985,\n    \"\\u2581\\u13f1\\u13d5\\u13e5\": 18986,\n    \"\\u2581\\u13ac\\u13e9\\u13d4\\u13f2\\u13ce\": 18987,\n    \"\\u13b5\\u13e6\\u13d4\\u13c5\\u13a9\": 18988,\n    \"\\u2581\\u13e3\\u13a6\\u13d3\\u13c2\\u13b8\": 18989,\n    \"\\u2581\\u13f1\\u13a6\\u13b5\\u13cd\": 18990,\n    \"\\u2581\\u13f1\\u13c4\\u13c5\": 18991,\n    \"\\u13e4\\u13d7\\u13f1\": 18992,\n    \"\\u13cd\\u13d3\\u13e9\\u13d9\\u13b8\\u13af\": 18993,\n    \"\\u2581\\u13d3\\u13e3\\u13d3\\u13c5\": 18994,\n    \"\\u13d5\\u13e6\\u13c1\": 18995,\n    \"\\u13d6\\u13b3\\u13d7\\u13cd\\u13d7\": 18996,\n    \"\\u2581\\u13a5\\u13a8\\u13e5\": 18997,\n    \"\\u13c2\\u13ef\\u13a5\\u13a2\": 18998,\n    \"\\u13ad\\u13c4\\u13ee\": 18999,\n    \"\\u2581\\u13b2\\u13f2\": 19000,\n    \"\\u13db\\u13d4\\u13c2\\u13b8\": 19001,\n    \"\\u13a7\\u13bf\\u13e9\\u13d5\\u13ac\": 19002,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\\u13d4\": 19003,\n    \"\\u2581\\u13a2\\u13d7\\u13e9\\u13db\": 19004,\n    \"\\u13f0\\u13b6\\u13b8\": 19005,\n    \"\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\\u13a9\": 19006,\n    \"\\u2581\\u13f1\\u13a6\\u13b7\\u13e4\": 19007,\n    \"\\u13be\\u13db\\u13c1\\u13a2\": 19008,\n    \"\\u13ac\\u13da\\u13a2\\u13cd\\u13d3\": 19009,\n    \"\\u13d4\\u13db\\u13a6\": 19010,\n    \"\\u13be\\u13af\\u13f3\": 19011,\n    \"\\u13e4\\u13b8\\u13cd\\u13a9\": 19012,\n    \"\\u13e3\\u13aa\\u13e9\\u13db\\u13d7\": 19013,\n    \"\\u2581\\u13a2\\u13e8\\u13ef\\u13a6\\u13d4\": 19014,\n    \"\\u2581\\u13a0\\u13c2\\u13b3\\u13a8\": 19015,\n    \"\\u13e3\\u13aa\\u13b3\": 19016,\n    \"\\u13a2\\u13d0\\u13c3\": 19017,\n    \"\\u13b5\\u13e5\\u13d9\\u13c1\": 19018,\n    \"\\u13d7\\u13e5\\u13cd\\u13d5\\u13b8\\u13d7\": 19019,\n    \"\\u13d3\\u13b4\\u13b2\\u13cd\\u13aa\\u13a2\": 19020,\n    \"\\u13d3\\u13f4\\u13b3\\u13d4\": 19021,\n    \"\\u2581\\u13a4\\u13c1\\u13e2\\u13d4\\u13c5\": 19022,\n    \"\\u13da\\u13d3\\u13b4\\u13cd\\u13d7\": 19023,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c1\": 19024,\n    \"\\u13e3\\u13db\\u13bf\\u13d7\": 19025,\n    \"\\u13b4\\u13c5\\u13d9\\u13d7\": 19026,\n    \"\\u13d5\\u13a8\\u13a6\\u13b8\\u13a5\": 19027,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 19028,\n    \"\\u2581\\u13a4\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\": 19029,\n    \"\\u13b5\\u13aa\\u13c1\\u13d7\\u13f1\": 19030,\n    \"\\u2581\\u13d5\\u13ab\\u13aa\\u13d3\": 19031,\n    \"\\u13c3\\u13af\\u13f3\\u13c5\": 19032,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13b8\": 19033,\n    \"\\u2581\\u13e3\\u13a7\\u13b5\\u13e8\": 19034,\n    \"\\u13b8\\u13c9\\u13d4\\u13c5\": 19035,\n    \"\\u13cd\\u13d3\\u13e9\\u13d7\\u13d9\\u13ae\": 19036,\n    \"\\u13b5\\u13d4\\u13d7\": 19037,\n    \"\\u13ab\\u13f4\\u13d3\\u13cf\": 19038,\n    \"\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\": 19039,\n    \"\\u13af\\u13cc\\u13b9\": 19040,\n    \"\\u2581\\u13a0\\u13d3\\u13b8\\u13c9\\u13d7\": 19041,\n    \"\\u13d9\\u13b5\\u13e5\": 19042,\n    \"\\u2581\\u13da\\u13c2\\u13e9\\u13db\": 19043,\n    \"\\u13a4\\u13c4\\u13aa\\u13e4\\u13c3\": 19044,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13b7\": 19045,\n    \"\\u2581\\u13cd\\u13a9\\u13c1\\u13a2\\u13cd\": 19046,\n    \"\\u2581\\u13a3\\u13e5\\u13d4\\u13f2\\u13af\": 19047,\n    \"\\u13cd\\u13ac\\u13d3\\u13a8\": 19048,\n    \"\\u13b5\\u13aa\\u13c1\\u13b8\": 19049,\n    \"\\u13cd\\u13d4\\u13f4\\u13b2\\u13cd\\u13a9\": 19050,\n    \"\\u2581\\u13a7\\u13c1\\u13e4\": 19051,\n    \"\\u2581\\u13da\\u13a8\\u13e9\": 19052,\n    \"\\u2581\\u13f1\\u13c2\\u13f4\": 19053,\n    \"\\u13cd\\u13da\\u13d7\\u13f1\": 19054,\n    \"\\u13e0\\u13f1\\u13ae\\u13cd\\u13d7\": 19055,\n    \"\\u2581\\u13e5\\u13be\\u13cc\": 19056,\n    \"\\u2581\\u13d7\\u13d3\\u13b4\\u13b2\\u13cd\": 19057,\n    \"\\u13b7\\u13ac\\u13d2\": 19058,\n    \"\\u13f3\\u13eb\\u13ef\": 19059,\n    \"\\u2581\\u13ad\\u13d7\\u13d4\\u13cd\": 19060,\n    \"\\u2581\\u13a0\\u13cd\\u13c6\\u13c2\\u13aa\": 19061,\n    \"\\u2581\\u13da\\u13e0\": 19062,\n    \"\\u13af\\u13d9\\u13b8\\u13a2\": 19063,\n    \"\\u13b3\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 19064,\n    \"\\u13cc\\u13d9\\u13f4\": 19065,\n    \"\\u13cf\\u13b3\\u13db\\u13a5\\u13a6\": 19066,\n    \"\\u2581\\u13e5\\u13a6\\u13d6\\u13c3\": 19067,\n    \"\\u2581\\u13cd\\u13a9\\u13aa\\u13e9\\u13d8\\u13cd\": 19068,\n    \"\\u13d9\\u13a9\\u13ef\\u13cd\": 19069,\n    \"\\u2581\\u13d8\\u13a7\\u13bf\\u13e9\": 19070,\n    \"\\u2581\\u13a8\\u13cd\\u13a9\\u13d0\\u13e2\": 19071,\n    \"\\u2581\\u13a2\\u13e3\\u13da\\u13d3\": 19072,\n    \"\\u13c2\\u13b3\\u13a8\\u13f4\\u13a2\": 19073,\n    \"\\u2581\\u13f1\\u13d9\\u13a8\\u13e3\": 19074,\n    \"\\u2581\\u13d7\\u13e5\\u13a7\\u13bf\\u13e9\": 19075,\n    \"\\u13d7\\u13e4\\u13b5\\u13ce\": 19076,\n    \"\\u13b5\\u13f4\\u13cd\\u13aa\\u13f3\": 19077,\n    \"\\u2581\\u13c2\\u13d3\\u13cd\\u13a6\": 19078,\n    \"\\u13a4\\u13be\\u13e8\\u13ce\\u13a2\": 19079,\n    \"\\u2581\\u13e7\\u13f2\\u13cd\\u13d9\": 19080,\n    \"\\u2581\\u13d5\\u13e5\\u13aa\\u13e9\": 19081,\n    \"\\u13c3\\u13af\\u13f3\\u13b2\\u13cd\\u13aa\": 19082,\n    \"\\u13a6\\u13d3\\u13a2\\u13c5\\u13d2\\u13a9\": 19083,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13c2\\u13aa\": 19084,\n    \"\\u13d9\\u13be\\u13a5\\u13a9\": 19085,\n    \"\\u2581\\u13a2\\u13d7\\u13cd\\u13a6\\u13be\": 19086,\n    \"\\u13d9\\u13e2\\u13d2\": 19087,\n    \"\\u2581\\u13a0\\u13c6\\u13d7\\u13cd\\u13a6\": 19088,\n    \"\\u13db\\u13b4\\u13eb\\u13cd\\u13d4\": 19089,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\\u13af\\u13cd\\u13d7\": 19090,\n    \"\\u13a8\\u13c5\\u13d7\\u13cd\\u13d7\": 19091,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13eb\\u13cd\\u13d7\": 19092,\n    \"\\u13ea\\u13db\\u13e8\": 19093,\n    \"\\u13c2\\u13f4\\u13b8\\u13a9\": 19094,\n    \"\\u2581\\u13a0\\u13c2\\u13be\\u13cf\\u13c2\": 19095,\n    \"\\u13f4\\u13d4\\u13c2\": 19096,\n    \"\\u2581\\u13e5\\u13be\\u13ac\": 19097,\n    \"\\u13cc\\u13b3\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 19098,\n    \"\\u13a7\\u13f2\\u13d9\": 19099,\n    \"\\u2581\\u13ef\\u13cb\": 19100,\n    \"\\u2581\\u13a0\\u13f0\\u13ae\": 19101,\n    \"\\u2581\\u13da\\u13c2\\u13a8\\u13f3\": 19102,\n    \"\\u2581\\u13af\\u13c2\\u13d3\": 19103,\n    \"\\u2581\\u13a2\\u13e3\\u13df\\u13c2\\u13ac\": 19104,\n    \"\\u13aa\\u13d1\\u13b4\": 19105,\n    \"\\u13a6\\u13f0\\u13e7\": 19106,\n    \"\\u13e9\\u13c2\\u13a6\\u13b6\": 19107,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13ac\": 19108,\n    \"\\u2581\\u13a1\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\": 19109,\n    \"\\u2581\\u13e7\\u13be\\u13c2\\u13cf\": 19110,\n    \"\\u2581\\u13ad\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\": 19111,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d3\\u13d7\": 19112,\n    \"\\u2581\\u13a4\\u13f0\\u13a2\\u13b5\": 19113,\n    \"\\u13b5\\u13cd\\u13d8\\u13cd\\u13ac\": 19114,\n    \"\\u13b7\\u13f4\": 19115,\n    \"\\u13e5\\u13b6\\u13d2\\u13cd\\u13d3\": 19116,\n    \"\\u13a9\\u13ef\\u13c5\\u13a1\\u13b8\\u13a9\": 19117,\n    \"\\u13a6\\u13d1\\u13f4\\u13db\": 19118,\n    \"\\u2581\\u13d3\\u13a6\\u13d9\\u13b4\\u13a3\": 19119,\n    \"\\u2581\\u13a8\\u13a9\\u13c3\\u13ae\": 19120,\n    \"\\u13c3\\u13af\\u13b5\\u13d9\": 19121,\n    \"\\u13d3\\u13b4\\u13b2\\u13cd\\u13ac\\u13a9\": 19122,\n    \"\\u13e0\\u13af\\u13cd\\u13db\": 19123,\n    \"\\u2581\\u13d3\\u13be\\u13e0\": 19124,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13cf\\u13c2\": 19125,\n    \"\\u13cf\\u13be\\u13af\": 19126,\n    \"\\u13ec\\u13ea\\u13b3\": 19127,\n    \"\\u2581\\u13a0\\u13c9\\u13da\": 19128,\n    \"\\u2581\\u13d3\\u13c2\\u13f0\": 19129,\n    \"\\u13ac\\u13e9\\u13b5\\u13d6\\u13b8\": 19130,\n    \"\\u13c2\\u13b3\\u13a8\\u13ef\\u13db\": 19131,\n    \"\\u2581\\u13eb\\u13c2\\u13a6\\u13b5\\u13cd\": 19132,\n    \"\\u13c6\\u13c5\\u13d3\\u13db\": 19133,\n    \"\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 19134,\n    \"\\u2581\\u13a2\\u13a9\\u13aa\\u13e9\\u13db\": 19135,\n    \"\\u13da\\u13ec\": 19136,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13f2\": 19137,\n    \"\\u13a4\\u13b6\\u13ce\\u13a2\": 19138,\n    \"\\u13d5\\u13ef\\u13d4\\u13c1\\u13ae\\u13cd\\u13d7\": 19139,\n    \"\\u13c5\\u13d3\\u13d5\": 19140,\n    \"\\u13b7\\u13b8\\u13c1\\u13b4\": 19141,\n    \"\\u13e5\\u13b7\\u13e5\\u13cf\": 19142,\n    \"\\u2581\\u13ed\\u13c3\\u13ae\": 19143,\n    \"\\u2581\\u13a4\\u13c3\\u13c1\\u13d7\": 19144,\n    \"\\u2581\\u13a2\\u13a6\\u13da\\u13b8\": 19145,\n    \"\\u2581\\u13d7\\u13cd\\u13c6\\u13d3\\u13c2\\u13b8\": 19146,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13b5\\u13cd\": 19147,\n    \"\\u13ef\\u13d9\\u13af\\u13b2\": 19148,\n    \"ar\": 19149,\n    \"\\u13aa\\u13b3\\u13d7\\u13f4\": 19150,\n    \"os\": 19151,\n    \"\\u2581\\u13d3\\u13a6\\u13be\\u13ec\\u13cd\": 19152,\n    \"\\u13df\\u13d0\\u13d7\": 19153,\n    \"\\u13a7\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\": 19154,\n    \"\\u13a4\\u13d9\\u13af\\u13f3\\u13af\\u13cd\\u13aa\": 19155,\n    \"\\u13c1\\u13c9\\u13e4\": 19156,\n    \"\\u13be\\u13d9\\u13b3\\u13cd\\u13d7\\u13cd\": 19157,\n    \"\\u13a7\\u13c1\\u13ae\\u13cd\\u13d7\": 19158,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13c2\": 19159,\n    \"\\u2581\\u13f1\\u13e5\\u13b5\\u13d3\\u13cd\": 19160,\n    \"\\u2581\\u13a0\\u13a6\\u13ec\": 19161,\n    \"\\u2581\\u13eb\\u13da\\u13c4\": 19162,\n    \"\\u13aa\\u13d9\\u13af\\u13cd\\u13d4\\u13c2\": 19163,\n    \"\\u13a6\\u13b8\\u13cd\\u13d9\\u13d7\\u13f1\": 19164,\n    \"\\u13be\\u13e1\\u13d7\\u13cd\\u13a9\": 19165,\n    \"\\u13aa\\u13c1\\u13b6\": 19166,\n    \"\\u2581\\u13e5\\u13c2\\u13e3\": 19167,\n    \"\\u2581\\u13ed\\u13e9\\u13ab\": 19168,\n    \"\\u13d3\\u13f1\\u13ae\\u13cd\\u13d7\": 19169,\n    \"\\u2581\\u13f3\\u13a6\\u13d4\": 19170,\n    \"\\u13aa\\u13e2\\u13c5\\u13af\": 19171,\n    \"\\u13ec\\u13e2\\u13c1\": 19172,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13e5\\u13d9\": 19173,\n    \"\\u13d8\\u13b8\\u13c9\\u13d9\": 19174,\n    \"\\u13a6\\u13d9\\u13cd\\u13db\": 19175,\n    \"\\u13d0\\u13e2\\u13d9\\u13d7\\u13f1\": 19176,\n    \"\\u2581\\u13a4\\u13d5\\u13d8\\u13f4\": 19177,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13db\": 19178,\n    \"\\u13f3\\u13cd\\u13c8\\u13db\": 19179,\n    \"\\u13a7\\u13c2\\u13cd\\u13a8\": 19180,\n    \"\\u2581\\u13a0\\u13b5\\u13c3\\u13ae\\u13d7\\u13cd\\u13a8\": 19181,\n    \"\\u2581\\u13d3\\u13cd\\u13a6\\u13a2\": 19182,\n    \"\\u2581\\u13c4\\u13f0\\u13b8\": 19183,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13e9\\u13d8\\u13cd\": 19184,\n    \"\\u2581\\u13f1\\u13d7\\u13ab\\u13aa\": 19185,\n    \"\\u2581\\u13af\\u13ef\\u13d2\\u13c2\": 19186,\n    \"\\u2581\\u13e3\\u13a7\\u13d4\\u13ae\": 19187,\n    \"\\u13dc\\u13c5\\u13d3\\u13d7\\u13cd\\u13a8\": 19188,\n    \"\\u13b5\\u13c2\\u13aa\\u13ce\\u13a2\": 19189,\n    \"\\u13ad\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\\u13a2\": 19190,\n    \"\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 19191,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d9\\u13d7\": 19192,\n    \"\\u13d4\\u13b6\\u13d2\": 19193,\n    \"\\u13b5\\u13d7\\u13d2\\u13c2\\u13ae\": 19194,\n    \"\\u13d7\\u13d4\\u13b2\": 19195,\n    \"\\u2581\\u13ac\\u13a9\\u13a6\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\": 19196,\n    \"\\u13da\\u13d5\\u13a2\": 19197,\n    \"\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\\u13d7\": 19198,\n    \"\\u13b5\\u13cd\\u13d9\\u13d3\": 19199,\n    \"\\u2581\\u13a0\\u13a9\\u13b7\\u13af\\u13cd\\u13d7\": 19200,\n    \"\\u13a9\\u13cd\\u13a6\\u13c5\\u13e4\": 19201,\n    \"\\u13c2\\u13d1\\u13ea\\u13ce\\u13b8\": 19202,\n    \"\\u2581\\u13a0\\u13d8\\u13f2\": 19203,\n    \"\\u13ac\\u13c1\\u13ae\\u13cd\\u13d7\": 19204,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13f2\": 19205,\n    \"\\u2581\\u13a0\\u13c2\\u13df\\u13cc\": 19206,\n    \"\\u13c1\\u13cd\\u13a9\\u13b8\\u13d7\": 19207,\n    \"\\u13df\\u13c3\\u13ae\\u13cd\\u13ac\": 19208,\n    \"\\u13cf\\u13b3\\u13db\\u13c1\\u13b4\": 19209,\n    \"\\u2581\\u13a2\\u13ef\\u13c2\\u13b5\\u13cd\": 19210,\n    \"\\u13c2\\u13a6\\u13d8\\u13b8\\u13d2\\u13a9\": 19211,\n    \"\\u13a4\\u13e0\\u13a0\\u13ce\": 19212,\n    \"\\u13b5\\u13ae\\u13b5\\u13a9\": 19213,\n    \"\\u2581\\u13a2\\u13e8\\u13ac\\u13cd\\u13aa\\u13b8\": 19214,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13be\\u13a6\": 19215,\n    \"\\u2581\\u13da\\u13be\\u13d5\\u13f2\": 19216,\n    \"\\u13eb\\u13de\\u13eb\\u13d2\": 19217,\n    \"\\u13d2\\u13c2\\u13c9\": 19218,\n    \"\\u2581\\u13c2\\u13cd\\u13c6\\u13db\": 19219,\n    \"\\u13d3\\u13c5\\u13a1\\u13b4\": 19220,\n    \"\\u13b5\\u13e5\\u13d9\\u13c2\\u13d9\\u13ae\": 19221,\n    \"\\u13b3\\u13d0\\u13eb\": 19222,\n    \"\\u13db\\u13c5\\u13d3\\u13a9\": 19223,\n    \"\\u13e3\\u13d6\\u13cd\\u13d7\": 19224,\n    \"\\u13be\\u13c2\\u13a9\\u13cd\\u13ac\": 19225,\n    \"\\u2581\\u13a4\\u13c3\\u13d9\": 19226,\n    \"\\u13b6\\u13c1\\u13d4\\u13c5\": 19227,\n    \"\\u2581\\u13e5\\u13ef\\u13d8\\u13c5\": 19228,\n    \"\\u13d4\\u13b6\\u13ce\": 19229,\n    \"\\u2581\\u13a2\\u13f0\\u13e8\\u13c1\": 19230,\n    \"\\u2581\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 19231,\n    \"\\u2581\\u13a2\\u13ac\\u13c6\": 19232,\n    \"\\u13ce\\u13aa\\u13a9\\u13ce\": 19233,\n    \"\\u13b5\\u13d9\\u13a9\\u13ef\\u13cd\": 19234,\n    \"\\u2581\\u13c1\\u13ea\\u13ce\": 19235,\n    \"\\u2581\\u13ed\\u13c2\\u13cc\\u13d9\": 19236,\n    \"\\u2581\\u13f3\\u13c2\\u13c6\\u13d8\": 19237,\n    \"\\u2581\\u13a6\\u13e5\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 19238,\n    \"\\u13a4\\u13b4\\u13c5\": 19239,\n    \"\\u13db\\u13d7\\u13d5\\u13a8\": 19240,\n    \"\\u2581\\u13ac\\u13e9\\u13b7\\u13e4\": 19241,\n    \"\\u13be\\u13b5\\u13d4\\u13d7\\u13c5\": 19242,\n    \"\\u13be\\u13da\\u13aa\\u13d3\\u13c1\\u13d7\": 19243,\n    \"\\u2581\\u13e5\\u13a6\\u13c2\\u13f1\\u13cd\": 19244,\n    \"\\u2581\\u13a0\\u13c1\\u13b8\\u13d7\\u13cd\": 19245,\n    \"\\u13cd\\u13c6\\u13c2\\u13aa\\u13cd\\u13a8\\u13a2\": 19246,\n    \"\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13af\": 19247,\n    \"\\u13ab\\u13aa\\u13d3\": 19248,\n    \"\\u2581\\u13ed\\u13ea\\u13a7\": 19249,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13ab\\u13d5\\u13cd\": 19250,\n    \"\\u2581\\u13d7\\u13a4\\u13be\\u13e8\": 19251,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13d4\\u13cd\": 19252,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d6\\u13d9\": 19253,\n    \"\\u13e5\\u13d4\\u13f2\\u13ce\\u13ad\": 19254,\n    \"\\u13e6\\u13ad\\u13f4\": 19255,\n    \"\\u13a6\\u13ce\\u13cd\\u13d4\": 19256,\n    \"\\u13a9\\u13c1\\u13e4\\u13d7\\u13f1\": 19257,\n    \"\\u13d9\\u13cd\\u13db\\u13a2\": 19258,\n    \"\\u2581\\u13af\\u13c1\\u13a2\\u13cd\\u13d7\": 19259,\n    \"\\u13b6\\u13bb\": 19260,\n    \"\\u2581\\u13cd\\u13a9\\u13f0\\u13b8\\u13be\": 19261,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13db\\u13a5\\u13cd\": 19262,\n    \"\\u2581\\u13ed\\u13be\\u13b5\\u13f1\\u13b6\": 19263,\n    \"\\u2581\\u13f3\\u13de\": 19264,\n    \"\\u13e9\\u13d7\\u13d9\\u13b8\\u13af\": 19265,\n    \"\\u2581\\u13a0\\u13ab\\u13f1\\u13cd\": 19266,\n    \"\\u13b5\\u13ce\\u13ae\\u13cd\\u13d7\": 19267,\n    \"\\u13cd\\u13ab\\u13d5\": 19268,\n    \"\\u13a4\\u13c2\\u13a9\\u13db\": 19269,\n    \"\\u2581\\u13ab\\u13e9\\u13be\\u13d3\": 19270,\n    \"\\u13ce\\u13b5\\u13d9\\u13ae\": 19271,\n    \"\\u13d7\\u13a7\\u13c1\\u13e4\": 19272,\n    \"\\u13b5\\u13d8\\u13a1\": 19273,\n    \"\\u13b6\\u13d4\\u13c2\": 19274,\n    \"\\u13e5\\u13b6\\u13c1\\u13a5\": 19275,\n    \"\\u13d7\\u13e9\\u13cd\\u13ac\": 19276,\n    \"\\u2581\\u13ac\\u13e9\\u13d8\\u13bf\\u13eb\\u13db\": 19277,\n    \"\\u2581\\u13da\\u13d4\\u13b7\\u13a9\": 19278,\n    \"\\u13c2\\u13c6\\u13d8\\u13b4\\u13a2\": 19279,\n    \"\\u2581\\u13ed\\u13c2\\u13cd\\u13c6\": 19280,\n    \"\\u13cd\\u13d5\\u13b5\\u13cd\\u13a8\": 19281,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13ef\": 19282,\n    \"\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\": 19283,\n    \"\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 19284,\n    \"\\u2581\\u13e5\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\": 19285,\n    \"\\u13d5\\u13e3\\u13d3\": 19286,\n    \"\\u13cd\\u13ab\\u13d3\\u13db\": 19287,\n    \"\\u2581\\u13ee\\u13d3\\u13e3\\u13d8\": 19288,\n    \"\\u2581\\u13a2\\u13cd\\u13d3\\u13d3\\u13c5\": 19289,\n    \"\\u13c2\\u13e3\\u13cd\\u13db\\u13be\": 19290,\n    \"\\u2581\\u13e7\\u13ef\\u13ea\": 19291,\n    \"\\u2581\\u13d9\\u13d3\\u13a8\\u13e5\": 19292,\n    \"\\u2581\\u13cd\\u13c6\\u13ab\\u13f4\": 19293,\n    \"\\u13ac\\u13e9\\u13b6\": 19294,\n    \"\\u13aa\\u13d3\\u13c1\\u13b8\": 19295,\n    \"\\u2581\\u13d3\\u13f3\\u13be\\u13c2\\u13a9\": 19296,\n    \"\\u2581\\u13e3\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\": 19297,\n    \"\\u13b5\\u13c3\\u13ae\\u13d9\\u13d7\": 19298,\n    \"\\u13a9\\u13ef\\u13db\\u13c1\\u13b4\": 19299,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\": 19300,\n    \"\\u2581\\u13a9\\u13c4\": 19301,\n    \"\\u2581\\u13da\\u13be\\u13da\\u13d3\": 19302,\n    \"\\u13d3\\u13ec\\u13cd\": 19303,\n    \"\\u2581\\u13e7\\u13d2\\u13a6\": 19304,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13aa\\u13b8\": 19305,\n    \"\\u13b5\\u13e5\\u13c6\": 19306,\n    \"\\u2581\\u13a0\\u13f2\\u13af\\u13cd\\u13d7\\u13cd\": 19307,\n    \"\\u13e3\\u13d8\\u13c3\\u13a6\": 19308,\n    \"\\u2581\\u13a8\\u13a6\\u13d3\\u13c5\\u13d6\": 19309,\n    \"\\u13d4\\u13e9\\u13d5\\u13a9\": 19310,\n    \"\\u13aa\\u13d3\\u13c1\\u13ad\": 19311,\n    \"\\u13d1\\u13a6\\u13e2\": 19312,\n    \"\\u13c4\\u13aa\\u13eb\\u13cd\\u13aa\\u13a2\": 19313,\n    \"\\u13f0\\u13b8\\u13cd\\u13a8\\u13cd\\u13d7\": 19314,\n    \"\\u13ef\\u13b8\\u13c5\": 19315,\n    \"\\u13f4\\u13af\\u13b0\\u13a2\": 19316,\n    \"\\u13dd\\u13cd\\u13a8\": 19317,\n    \"\\u13b4\\u13f4\\u13d9\\u13d7\": 19318,\n    \"\\u13e3\\u13d7\\u13d4\\u13af\": 19319,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13d4\": 19320,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13d9\\u13e2\\u13be\\u13c1\": 19321,\n    \"\\u2581\\u13e3\\u13c1\\u13e2\\u13d4\\u13c5\": 19322,\n    \"\\u13e5\\u13ea\\u13cd\\u13d7\": 19323,\n    \"\\u13aa\\u13e9\\u13db\\u13d9\": 19324,\n    \"\\u13d3\\u13b4\\u13db\": 19325,\n    \"\\u13d3\\u13be\\u13d3\\u13c2\\u13b8\\u13aa\": 19326,\n    \"\\u13a9\\u13ea\\u13ce\\u13ad\": 19327,\n    \"\\u2581\\u13e5\\u13a6\\u13f4\\u13b5\": 19328,\n    \"\\u13e5\\u13f2\\u13a2\\u13ce\\u13b8\\u13ad\": 19329,\n    \"\\u13b6\\u13d4\\u13c1\": 19330,\n    \"\\u2581\\u13eb\\u13da\\u13c2\\u13f4\": 19331,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13d4\\u13c5\": 19332,\n    \"\\u13d5\\u13cb\\u13af\\u13cd\": 19333,\n    \"\\u2581\\u13eb\\u13d5\\u13a8\\u13a6\": 19334,\n    \"\\u2581\\u13d5\\u13a6\\u13c3\\u13f4\": 19335,\n    \"\\u13b1\\u13cd\\u13d5\\u13ce\": 19336,\n    \"\\u2581\\u13d3\\u13dc\\u13cd\": 19337,\n    \"\\u13c2\\u13d5\\u13a6\\u13ea\\u13ce\\u13b0\": 19338,\n    \"\\u13db\\u13a5\\u13a6\": 19339,\n    \"\\u13e9\\u13be\\u13a2\": 19340,\n    \"\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\": 19341,\n    \"\\u13af\\u13ef\\u13cd\\u13ac\": 19342,\n    \"\\u2581\\u13f4\\u13d7\\u13d3\\u13b4\": 19343,\n    \"\\u13d3\\u13e5\\u13b7\\u13e5\": 19344,\n    \"\\u2581\\u13a4\\u13d4\\u13cd\\u13a9\": 19345,\n    \"\\u2581\\u13da\\u13b7\\u13b8\": 19346,\n    \"\\u2581\\u13ac\\u13a9\\u13a8\\u13f3\\u13af\": 19347,\n    \"\\u13b6\\u13a8\\u13d2\": 19348,\n    \"\\u13c2\\u13cd\\u13ac\": 19349,\n    \"\\u13a4\\u13b8\\u13db\": 19350,\n    \"\\u13f2\\u13cf\\u13cd\\u13a9\": 19351,\n    \"\\u2581\\u13e5\\u13a5\\u13a1\": 19352,\n    \"\\u13c4\\u13aa\\u13eb\\u13cd\\u13a8\\u13a2\": 19353,\n    \"\\u13db\\u13e3\\u13c2\": 19354,\n    \"\\u13d3\\u13c5\\u13a1\\u13b8\\u13a9\": 19355,\n    \"\\u13dc\": 19356,\n    \"\\u2581\\u13a0\\u13ac\\u13d5\": 19357,\n    \"\\u13f2\\u13b0\\u13a2\": 19358,\n    \"\\u13e0\\u13d2\\u13a9\": 19359,\n    \"\\u13a7\\u13c5\\u13d1\\u13b8\\u13a2\": 19360,\n    \"\\u2581\\u13f1\\u13e5\\u13a8\\u13f3\": 19361,\n    \"\\u13d3\\u13c2\\u13b8\\u13e8\": 19362,\n    \"\\u2581\\u13d5\\u13a9\\u13f2\": 19363,\n    \"\\u2581\\u13a4\\u13a8\\u13af\\u13d9\": 19364,\n    \"\\u2581\\u13f1\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\": 19365,\n    \"\\u13c2\\u13a6\\u13d4\\u13b2\\u13cd\\u13a9\": 19366,\n    \"\\u2581\\u13cd\\u13c6\\u13a6\\u13ce\": 19367,\n    \"\\u13c2\\u13d7\\u13cd\\u13d7\\u13f1\": 19368,\n    \"\\u13df\\u13cd\\u13db\\u13a2\": 19369,\n    \"\\u13c5\\u13e9\\u13cd\\u13d9\\u13a2\": 19370,\n    \"\\u13d3\\u13a6\\u13b5\\u13cd\\u13d4\\u13c2\": 19371,\n    \"\\u13ac\\u13e9\\u13d3\": 19372,\n    \"\\u13cd\\u13a6\\u13a2\\u13b2\": 19373,\n    \"\\u2581\\u13c4\\u13a8\\u13f3\": 19374,\n    \"\\u13e3\\u13b5\\u13e5\\u13d9\\u13b2\\u13cd\\u13a6\": 19375,\n    \"\\u13ac\\u13e9\\u13cd\\u13d7\\u13c9\": 19376,\n    \"\\u13ab\\u13f0\": 19377,\n    \"\\u13b5\\u13c2\\u13aa\\u13af\\u13cd\\u13d7\\u13cd\\u13a8\": 19378,\n    \"\\u13cd\\u13a6\\u13cd\\u13d9\\u13d7\\u13cd\\u13a9\": 19379,\n    \"\\u2581\\u13a4\\u13be\\u13e0\": 19380,\n    \"\\u13ea\\u13b5\\u13ce\\u13b4\\u13a2\": 19381,\n    \"\\u2581\\u13e3\\u13d3\\u13a8\\u13f3\": 19382,\n    \"\\u13cd\\u13d3\\u13db\\u13d3\\u13cd\\u13d3\": 19383,\n    \"\\u2581\\u13a4\\u13c2\\u13c5\\u13aa\": 19384,\n    \"\\u2581\\u13f1\\u13ac\\u13e9\\u13be\\u13db\": 19385,\n    \"\\u2581\\u13eb\\u13da\\u13a7\": 19386,\n    \"ti\": 19387,\n    \"\\u2581\\u13e5\\u13e5\\u13c1\\u13e4\": 19388,\n    \"\\u13f2\\u13cc\": 19389,\n    \"\\u2581\\u13a2\\u13f3\\u13be\\u13b5\\u13cd\\u13d4\": 19390,\n    \"ita\": 19391,\n    \"\\u13ea\\u13d9\\u13a5\\u13a6\": 19392,\n    \"\\u13d6\\u13c9\\u13b6\": 19393,\n    \"\\u13b5\\u13aa\\u13c1\\u13af\": 19394,\n    \"\\u13ac\\u13e9\\u13b6\\u13d3\": 19395,\n    \"\\u2581\\u13a2\\u13e3\\u13d7\\u13a6\\u13b4\\u13f2\": 19396,\n    \"\\u13aa\\u13c4\\u13b6\\u13af\\u13cd\\u13d7\": 19397,\n    \"\\u2581\\u13ac\\u13cd\\u13d7\\u13f0\": 19398,\n    \"\\u2581\\u13d3\\u13e8\\u13f0\": 19399,\n    \"\\u13a8\\u13a6\\u13d3\\u13a2\\u13c5\\u13d2\\u13a9\": 19400,\n    \"\\u13ac\\u13a9\\u13aa\\u13b5\\u13f0\\u13a5\": 19401,\n    \"\\u2581\\u13ac\\u13e9\\u13c4\\u13ec\\u13af\\u13cd\": 19402,\n    \"\\u2581\\u13a0\\u13a9\\u13e9\\u13db\": 19403,\n    \"\\u13be\\u13c1\\u13b6\\u13db\\u13a2\": 19404,\n    \"\\u13b5\\u13ac\\u13be\": 19405,\n    \"\\u2581\\u13a6\\u13b5\\u13e5\\u13d9\\u13c2\\u13d9\": 19406,\n    \"\\u2581\\u13d3\\u13c6\\u13d9\": 19407,\n    \"\\u2581\\u13e7\\u13b8\\u13c9\\u13d9\": 19408,\n    \"\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\\u13ae\\u13cd\\u13d7\": 19409,\n    \"\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\": 19410,\n    \"\\u2581\\u13a2\\u13d3\\u13d3\\u13c5\\u13d6\\u13cd\": 19411,\n    \"\\u13e9\\u13cd\\u13ac\\u13a9\": 19412,\n    \"\\u13ef\\u13d2\\u13a6\\u13b6\\u13d4\": 19413,\n    \"\\u2581\\u13ac\\u13c7\\u13af\\u13cd\\u13d7\": 19414,\n    \"\\u13d4\\u13b3\\u13a7\": 19415,\n    \"\\u13cd\\u13d5\\u13b8\\u13d9\\u13d7\": 19416,\n    \"\\u2581\\u13ef\\u13b5\\u13cd\\u13d3\\u13f4\": 19417,\n    \"\\u2581\\u13e5\\u13e6\\u13af\\u13f3\": 19418,\n    \"\\u13e5\\u13be\\u13f0\\u13cd\\u13a9\": 19419,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13d5\": 19420,\n    \"\\u13be\\u13d7\\u13d4\\u13ae\\u13a2\": 19421,\n    \"\\u13c3\\u13ae\\u13ae\\u13ad\": 19422,\n    \"\\u13be\\u13c2\\u13a9\\u13cd\\u13a8\": 19423,\n    \"\\u2581\\u13eb\\u13c4\\u13c2\\u13ea\": 19424,\n    \"\\u2581\\u13a6\\u13a8\\u13e3\\u13d5\\u13b6\": 19425,\n    \"\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 19426,\n    \"\\u2581\\u13a4\\u13b5\\u13f1\\u13b6\": 19427,\n    \"\\u2581\\u13da\\u13a6\\u13d9\\u13cd\": 19428,\n    \"\\u13cd\\u13a9\\u13cd\\u13d5\\u13b8\\u13a1\\u13b8\": 19429,\n    \"\\u2581\\u13c2\\u13da\\u13f2\": 19430,\n    \"\\u13c1\\u13d3\\u13cd\\u13d7\": 19431,\n    \"\\u13c1\\u13e6\\u13c5\": 19432,\n    \"\\u13d3\\u13e1\\u13e9\\u13cd\\u13d7\\u13d5\": 19433,\n    \"\\u2581\\u13a2\\u13d7\\u13a6\\u13f2\": 19434,\n    \"\\u2581\\u13d7\\u13c2\\u13cd\\u13aa\\u13c2\": 19435,\n    \"\\u2581\\u13f1\\u13da\\u13c2\\u13b6\": 19436,\n    \"\\u2581\\u13a0\\u13c2\\u13ec\\u13c2\\u13cd\\u13a8\\u13cd\": 19437,\n    \"\\u2581\\u13e3\\u13cd\\u13c6\\u13c2\\u13aa\\u13d5\": 19438,\n    \"\\u13d2\\u13c2\\u13cd\\u13d7\": 19439,\n    \"\\u13c2\\u13e3\\u13db\\u13c5\": 19440,\n    \"\\u2581\\u13a4\\u13d1\\u13ef\": 19441,\n    \"\\u2581\\u13da\\u13c4\\u13aa\": 19442,\n    \"\\u13b5\\u13d6\\u13b8\\u13ae\": 19443,\n    \"\\u2581\\u13a1\\u13e5\\u13c3\\u13ae\": 19444,\n    \"\\u13c2\\u13a8\\u13ac\\u13c1\\u13ad\": 19445,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13ce\\u13aa\\u13a9\": 19446,\n    \"\\u2581\\u13e5\\u13c2\\u13e3\\u13db\": 19447,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13cd\\u13da\": 19448,\n    \"\\u2581\\u13a0\\u13be\\u13da\\u13d3\": 19449,\n    \"\\u13c2\\u13e8\\u13db\": 19450,\n    \"\\u2581\\u13a4\\u13c4\\u13aa\\u13eb\\u13d2\": 19451,\n    \"\\u13d3\\u13a9\\u13ef\\u13ea\": 19452,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13a6\\u13cd\\u13d9\": 19453,\n    \"\\u2581\\u13d5\\u13e5\\u13a6\\u13bf\\u13e9\\u13d5\": 19454,\n    \"\\u13d2\\u13cd\\u13d3\\u13c1\\u13b8\": 19455,\n    \"il\": 19456,\n    \"\\u13f2\\u13e8\\u13af\": 19457,\n    \"\\u13c1\\u13b5\\u13d2\": 19458,\n    \"\\u2581\\u13a4\\u13d3\\u13cc\\u13a7\": 19459,\n    \"\\u2581\\u13ef\\u13cd\\u13a6\\u13a2\": 19460,\n    \"\\u13d4\\u13b3\\u13ec\\u13af\\u13cd\": 19461,\n    \"\\u2581\\u13af\\u13cd\\u13d5\\u13b8\": 19462,\n    \"\\u13e9\\u13c1\\u13b5\": 19463,\n    \"\\u13e5\\u13cd\\u13c6\\u13db\": 19464,\n    \"\\u13e3\\u13b5\\u13c3\\u13ae\\u13d7\": 19465,\n    \"\\u2581\\u13d5\\u13e5\\u13cd\\u13da\": 19466,\n    \"\\u13cc\\u13d3\\u13d7\\u13cd\\u13d7\\u13f1\": 19467,\n    \"\\u2581\\u13d7\\u13ac\\u13c6\": 19468,\n    \"\\u2581\\u13e3\\u13db\\u13cd\": 19469,\n    \"\\u2581\\u13a1\\u13e3\\u13e1\": 19470,\n    \"\\u2581\\u13ac\\u13a6\\u13d4\": 19471,\n    \"\\u2581\\u13a4\\u13d5\\u13d4\": 19472,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13db\\u13db\": 19473,\n    \"\\u2581\\u13a4\\u13a6\\u13bf\": 19474,\n    \"\\u13cd\\u13c6\\u13d5\\u13b4\\u13a2\": 19475,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\": 19476,\n    \"\\u13ef\\u13ab\\u13f4\\u13d7\": 19477,\n    \"\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d4\": 19478,\n    \"\\u2581\\u13a0\\u13b5\\u13f1\\u13b6\": 19479,\n    \"\\u13be\\u13d5\\u13b6\\u13c6\\u13cd\": 19480,\n    \"\\u13f2\\u13d3\\u13dd\": 19481,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d5\": 19482,\n    \"\\u2581\\u13f1\\u13d7\\u13e3\\u13d3\\u13c2\\u13b8\": 19483,\n    \"\\u2581\\u13a5\\u13ac\\u13e9\\u13db\": 19484,\n    \"\\u13e5\\u13b6\\u13c4\\u13ae\": 19485,\n    \"\\u2581\\u13a4\\u13aa\\u13c4\\u13b6\": 19486,\n    \"\\u13ef\\u13eb\\u13cd\\u13a9\": 19487,\n    \"\\u2581\\u13a8\\u13e5\\u13cd\\u13db\\u13d7\": 19488,\n    \"\\u13ac\\u13e9\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\": 19489,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\": 19490,\n    \"\\u2581\\u13d5\\u13e3\\u13d3\\u13f2\": 19491,\n    \"\\u2581\\u13a0\\u13d5\\u13b6\\u13b0\": 19492,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13e9\\u13db\\u13a1\": 19493,\n    \"\\u2581\\u13f3\\u13ed\": 19494,\n    \"\\u2581\\u13c2\\u13d5\\u13a4\\u13e9\": 19495,\n    \"\\u13c5\\u13cd\\u13a8\\u13c2\": 19496,\n    \"\\u2581\\u13a0\\u13a9\\u13f2\\u13cd\\u13d9\\u13d3\": 19497,\n    \"\\u2581\\u13a2\\u13e5\\u13a7\\u13b5\\u13a2\\u13cd\": 19498,\n    \"\\u2581\\u13a2\\u13a9\\u13f4\\u13c1\": 19499,\n    \"\\u13d9\\u13d1\\u13b4\": 19500,\n    \"\\u13c2\\u13f2\\u13b1\\u13af\\u13cd\\u13d7\": 19501,\n    \"\\u2581\\u13da\\u13f2\\u13ae\": 19502,\n    \"\\u2581\\u13f1\\u13d3\\u13be\\u13b5\": 19503,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13b7\\u13e4\": 19504,\n    \"\\u2581\\u13e5\\u13be\\u13cb\": 19505,\n    \"\\u13c1\\u13b0\\u13be\": 19506,\n    \"\\u13e3\\u13d3\\u13c4\\u13f4\\u13d7\": 19507,\n    \"\\u13da\\u13b4\\u13d4\\u13c1\\u13a2\": 19508,\n    \"\\u13be\\u13cf\\u13db\\u13c2\": 19509,\n    \"\\u13ea\\u13d0\\u13e8\": 19510,\n    \"\\u13c6\\u13df\\u13c3\\u13ae\": 19511,\n    \"\\u13d7\\u13a6\\u13f2\\u13e5\\u13c1\": 19512,\n    \"\\u2581\\u13da\\u13e9\\u13c5\": 19513,\n    \"\\u13e8\\u13a8\\u13eb\\u13cd\": 19514,\n    \"\\u13f2\\u13b5\\u13ae\\u13cd\\u13d7\": 19515,\n    \"\\u13c5\\u13a6\\u13b8\\u13d9\\u13d7\\u13f1\": 19516,\n    \"\\u13b4\\u13af\\u13cc\": 19517,\n    \"\\u13d5\\u13af\\u13ae\\u13cd\\u13d7\": 19518,\n    \"\\u13da\\u13d3\\u13d5\\u13eb\": 19519,\n    \"\\u2581\\u13a8\\u13ef\\u13d4\": 19520,\n    \"\\u2581\\u13a0\\u13c1\\u13d9\": 19521,\n    \"\\u13c4\\u13b3\\u13cd\\u13d3\\u13c1\": 19522,\n    \"\\u2581\\u13c4\\u13ab\\u13f4\": 19523,\n    \"\\u13d1\\u13f4\": 19524,\n    \"\\u13d9\\u13af\\u13d7\\u13cd\\u13d7\": 19525,\n    \"\\u2581\\u13e5\\u13c4\\u13ea\": 19526,\n    \"\\u13b5\\u13ae\\u13b5\\u13e4\\u13d7\\u13f1\": 19527,\n    \"\\u13d3\\u13b4\\u13be\": 19528,\n    \"\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b4\": 19529,\n    \"\\u13e8\\u13c1\\u13b5\": 19530,\n    \"\\u2581\\u13a2\\u13e5\\u13a7\\u13b5\": 19531,\n    \"\\u2581\\u13d7\\u13cd\\u13d4\\u13f2\": 19532,\n    \"\\u13ec\\u13c1\\u13d7\\u13ad\": 19533,\n    \"\\u13eb\\u13ce\\u13b2\\u13a2\": 19534,\n    \"\\u13da\\u13c2\\u13e9\\u13db\\u13ae\": 19535,\n    \"\\u13b5\\u13ac\\u13da\": 19536,\n    \"\\u13da\\u13d2\\u13c2\\u13b4\": 19537,\n    \"\\u2581\\u13a2\\u13e4\\u13b3\\u13d7\\u13cd\\u13d7\": 19538,\n    \"\\u13d9\\u13b5\\u13cd\\u13d4\\u13c2\": 19539,\n    \"\\u13a6\\u13da\\u13b5\\u13cd\\u13ac\": 19540,\n    \"\\u2581\\u13a2\\u13e5\\u13cd\\u13d3\\u13e9\\u13d7\": 19541,\n    \"\\u2581\\u13e5\\u13be\\u13c2\\u13ea\": 19542,\n    \"\\u13a6\\u13d8\\u13b8\\u13cd\\u13d7\": 19543,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b5\\u13cd\\u13d9\": 19544,\n    \"\\u13c5\\u13a6\\u13b8\\u13d3\": 19545,\n    \"\\u13cc\\u13d3\\u13db\\u13a9\": 19546,\n    \"\\u2581\\u13a5\\u13c6\\u13d2\\u13a6\\u13b6\": 19547,\n    \"\\u2581\\u13e7\\u13be\\u13d7\\u13d4\\u13cd\": 19548,\n    \"\\u13a6\\u13d1\\u13ef\\u13a9\\u13cd\\u13d7\": 19549,\n    \"\\u2581\\u13a4\\u13d3\\u13c3\\u13f4\\u13b5\": 19550,\n    \"\\u2581\\u13b1\\u13da\": 19551,\n    \"\\u13e8\\u13ef\\u13cd\\u13d7\": 19552,\n    \"\\u13c2\\u13b7\\u13a8\\u13cd\\u13d7\": 19553,\n    \"\\u2581\\u13cd\\u13c6\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\": 19554,\n    \"\\u13e3\\u13b5\\u13cd\\u13aa\\u13b8\\u13d7\\u13cd\\u13ac\\u13a2\": 19555,\n    \"\\u13ec\\u13b5\\u13e4\\u13a2\": 19556,\n    \"\\u13ef\\u13c2\\u13cd\\u13aa\": 19557,\n    \"\\u13a8\\u13e3\\u13b5\\u13cd\\u13da\": 19558,\n    \"\\u13d6\\u13b8\\u13c5\\u13a9\": 19559,\n    \"\\u13c4\\u13ea\\u13ce\\u13b4\\u13a2\": 19560,\n    \"\\u2581\\u13e6\\u13e5\\u13a8\": 19561,\n    \"\\u2581\\u13aa\\u13af\\u13f3\\u13d9\": 19562,\n    \"\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13cd\\u13ac\": 19563,\n    \"\\u2581\\u13a4\\u13c2\\u13a8\\u13b2\": 19564,\n    \"\\u13c3\\u13af\\u13f4\\u13af\": 19565,\n    \"\\u2581\\u13a0\\u13c2\\u13ac\\u13ad\\u13b7\\u13ef\\u13cd\": 19566,\n    \"\\u13aa\\u13b3\\u13c5\": 19567,\n    \"\\u2581\\u13a4\\u13cd\\u13c6\\u13d9\": 19568,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13c3\\u13ae\": 19569,\n    \"\\u13b3\\u13db\\u13a5\\u13cd\\u13ac\": 19570,\n    \"\\u13f2\\u13b2\\u13a6\": 19571,\n    \"\\u13c8\\u13d7\\u13cd\\u13a9\": 19572,\n    \"\\u13a4\\u13ea\\u13b3\\u13d7\\u13cd\\u13d7\": 19573,\n    \"\\u2581\\u13ed\\u13c5\\u13cd\": 19574,\n    \"\\u13a6\\u13d8\\u13d7\\u13cd\\u13d4\\u13c1\": 19575,\n    \"\\u13f1\\u13b5\\u13d9\\u13b2\": 19576,\n    \"\\u13d0\\u13c8\\u13b8\\u13a6\": 19577,\n    \"\\u13da\\u13c2\\u13b0\\u13c1\": 19578,\n    \"\\u13a8\\u13a6\\u13d7\": 19579,\n    \"\\u13e5\\u13c3\\u13c1\\u13ad\": 19580,\n    \"\\u2581\\u13a2\\u13cd\\u13d7\\u13f4\": 19581,\n    \"\\u2581\\u13e3\\u13be\\u13c4\\u13aa\\u13eb\\u13ce\": 19582,\n    \"\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\": 19583,\n    \"\\u2581\\u13c2\\u13e3\\u13da\\u13b5\": 19584,\n    \"\\u2581\\u13eb\\u13ac\\u13ea\\u13a7\": 19585,\n    \"\\u2581\\u13e5\\u13ef\\u13da\\u13b8\\u13a1\": 19586,\n    \"\\u2581\\u13f1\\u13e9\\u13c2\": 19587,\n    \"\\u2581\\u13a4\\u13d3\\u13d3\\u13b4\\u13d4\": 19588,\n    \"\\u2581\\u13a4\\u13c3\\u13e3\": 19589,\n    \"\\u2581\\u13a4\\u13b6\\u13c4\\u13ae\": 19590,\n    \"\\u13a6\\u13e0\\u13ef\\u13cd\\u13d7\": 19591,\n    \"\\u2581\\u13a4\\u13b5\\u13aa\\u13be\": 19592,\n    \"\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a9\": 19593,\n    \"\\u2581\\u13ac\\u13ef\\u13ab\\u13f4\": 19594,\n    \"\\u13a6\\u13d9\\u13a0\\u13cd\\u13aa\": 19595,\n    \"\\u2581\\u13d3\\u13e9\\u13db\\u13af\": 19596,\n    \"\\u2581\\u13d3\\u13cd\\u13a9\\u13c5\": 19597,\n    \"\\u13c3\\u13df\\u13cd\": 19598,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13be\\u13c1\\u13b6\": 19599,\n    \"\\u2581\\u13ac\\u13a9\\u13a6\\u13d4\": 19600,\n    \"\\u2581\\u13a8\\u13e5\\u13cc\\u13b3\": 19601,\n    \"\\u13c2\\u13cf\\u13c2\\u13d9\\u13b8\\u13a2\": 19602,\n    \"\\u2581\\u13c4\\u13be\\u13da\\u13b5\": 19603,\n    \"\\u13e2\\u13cd\\u13aa\\u13a2\": 19604,\n    \"\\u13c5\\u13cd\\u13a6\\u13dd\\u13c1\": 19605,\n    \"\\u13d4\\u13b6\\u13af\\u13cd\\u13d7\": 19606,\n    \"\\u2581\\u13f1\\u13e3\\u13d3\\u13c5\": 19607,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b6\": 19608,\n    \"\\u13a6\\u13c4\\u13d3\\u13db\": 19609,\n    \"\\u13c6\\u13a7\\u13be\\u13c5\\u13a9\": 19610,\n    \"\\u13b3\\u13be\\u13b6\": 19611,\n    \"\\u13c9\\u13d7\\u13f3\": 19612,\n    \"\\u13a8\\u13e5\\u13c4\\u13ec\": 19613,\n    \"\\u13d3\\u13c1\\u13e5\\u13f4\": 19614,\n    \"\\u13f0\\u13e5\\u13cd\\u13a8\": 19615,\n    \"\\u2581\\u13e4\\u13e6\": 19616,\n    \"\\u13af\\u13a6\\u13d4\\u13ae\\u13a2\": 19617,\n    \"\\u13cf\\u13d4\\u13d3\": 19618,\n    \"\\u13f2\\u13a4\\u13b4\": 19619,\n    \"\\u2581\\u13a0\\u13c6\\u13e1\\u13d7\\u13cd\": 19620,\n    \"\\u13da\\u13c2\\u13cd\\u13d7\\u13f0\": 19621,\n    \"\\u13d1\\u13b3\": 19622,\n    \"\\u2581\\u13a6\\u13b5\\u13e5\\u13d9\": 19623,\n    \"\\u2581\\u13f1\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\": 19624,\n    \"\\u2581\\u13a4\\u13c2\\u13ad\\u13f2\": 19625,\n    \"\\u13ce\\u13b5\\u13d4\\u13c5\": 19626,\n    \"\\u13b7\\u13eb\\u13cd\\u13d4\\u13c1\\u13d7\": 19627,\n    \"\\u2581\\u13a4\\u13f0\\u13cc\": 19628,\n    \"\\u2581\\u13a3\\u13a6\\u13e2\": 19629,\n    \"\\u2581\\u13d7\\u13ab\\u13aa\": 19630,\n    \"\\u2581\\u13e7\\u13db\\u13af\\u13cd\": 19631,\n    \"\\u13be\\u13d8\\u13c3\\u13ae\\u13b4\": 19632,\n    \"\\u2581\\u13a4\\u13c3\\u13d5\": 19633,\n    \"\\u13ad\\u13eb\\u13c2\": 19634,\n    \"\\u13d3\\u13d9\\u13e2\\u13be\\u13c1\": 19635,\n    \"\\u13d3\\u13c5\\u13d6\\u13ae\\u13b8\": 19636,\n    \"\\u2581\\u13a2\\u13e4\\u13b3\\u13d7\": 19637,\n    \"\\u13d9\\u13af\\u13ae\\u13cd\\u13d7\": 19638,\n    \"\\u13b5\\u13c2\\u13c6\\u13c5\": 19639,\n    \"\\u13c5\\u13e9\\u13c1\\u13a2\": 19640,\n    \"\\u2581\\u13a0\\u13be\\u13d5\\u13ef\": 19641,\n    \"\\u2581\\u13a4\\u13d3\\u13cd\\u13d5\": 19642,\n    \"\\u13a9\\u13f0\\u13b8\\u13ce\\u13cd\\u13d7\": 19643,\n    \"\\u13aa\\u13d3\\u13c1\\u13d7\\u13f1\": 19644,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13ce\": 19645,\n    \"\\u13ac\\u13c6\\u13b5\\u13cd\\u13d3\\u13f4\\u13be\\u13c1\": 19646,\n    \"\\u13a8\\u13f3\\u13d4\\u13c5\\u13a9\": 19647,\n    \"\\u13cd\\u13d4\\u13c1\\u13b8\": 19648,\n    \"\\u2581\\u13af\\u13ef\\u13b5\\u13cd\\u13aa\\u13b8\": 19649,\n    \"\\u13f2\\u13b5\\u13f3\": 19650,\n    \"\\u13a8\\u13af\\u13d9\\u13b0\": 19651,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13ef\\u13c5\": 19652,\n    \"\\u13d6\\u13b8\\u13b2\\u13cd\": 19653,\n    \"\\u2581\\u13d7\\u13c2\\u13d3\\u13ad\": 19654,\n    \"\\u13c3\\u13df\\u13cd\\u13d4\": 19655,\n    \"\\u13d3\\u13ad\\u13f2\\u13af\": 19656,\n    \"\\u13a6\\u13b4\\u13f4\\u13d3\": 19657,\n    \"\\u2581\\u13a4\\u13c2\\u13c1\\u13df\\u13f4\\u13cd\": 19658,\n    \"\\u2581\\u13eb\\u13e3\\u13a6\\u13d4\": 19659,\n    \"\\u13da\\u13b8\\u13d7\\u13c9\": 19660,\n    \"\\u13a6\\u13e5\\u13ef\\u13e0\\u13a2\\u13cd\\u13d3\\u13c1\": 19661,\n    \"\\u2581\\u13a6\\u13e5\\u13ef\\u13d3\\u13d9\\u13b5\\u13cd\": 19662,\n    \"\\u2581\\u13a1\\u13d9\\u13a2\\u13f3\": 19663,\n    \"\\u2581\\u13d5\\u13e5\\u13a7\\u13bf\\u13e9\": 19664,\n    \"\\u13a6\\u13e0\\u13ef\\u13cd\": 19665,\n    \"\\u13d1\\u13b3\\u13c1\": 19666,\n    \"\\u2581\\u13e5\\u13c2\\u13d5\\u13ac\": 19667,\n    \"\\u13cd\\u13a9\\u13be\\u13a9\\u13a2\": 19668,\n    \"\\u13b5\\u13cd\\u13d4\\u13f4\": 19669,\n    \"\\u13e9\\u13d7\\u13d3\\u13cd\\u13d7\\u13f1\": 19670,\n    \"\\u13d3\\u13e9\\u13db\\u13a1\": 19671,\n    \"\\u2581\\u13e7\\u13a8\\u13f3\": 19672,\n    \"\\u2581\\u13e3\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\": 19673,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13aa\": 19674,\n    \"\\u13be\\u13db\\u13a6\\u13c1\\u13a2\": 19675,\n    \"\\u13aa\\u13a5\\u13cd\\u13a6\": 19676,\n    \"\\u13be\\u13d3\\u13c5\\u13d8\": 19677,\n    \"\\u13b5\\u13ec\\u13e6\": 19678,\n    \"\\u13d7\\u13cd\\u13a6\\u13e2\\u13a2\": 19679,\n    \"\\u13e3\\u13a7\\u13b2\": 19680,\n    \"\\u13d9\\u13d4\\u13d8\\u13be\\u13eb\\u13db\": 19681,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c5\\u13a1\": 19682,\n    \"\\u13c2\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\": 19683,\n    \"\\u2581\\u13a4\\u13c3\\u13af\\u13f3\": 19684,\n    \"\\u2581\\u13e7\\u13be\\u13d8\\u13c3\": 19685,\n    \"\\u13b5\\u13cd\\u13d3\\u13c1\\u13b0\": 19686,\n    \"\\u13ab\\u13cf\\u13f2\": 19687,\n    \"\\u13c5\\u13c6\\u13b6\\u13cd\\u13d7\": 19688,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13ab\\u13d5\": 19689,\n    \"\\u2581\\u13a4\\u13c1\\u13b7\": 19690,\n    \"\\u13da\\u13c5\\u13a6\\u13b8\\u13a1\": 19691,\n    \"\\u13ac\\u13d1\\u13b6\": 19692,\n    \"\\u13df\\u13b6\\u13a5\\u13a9\": 19693,\n    \"\\u13e5\\u13cd\\u13a6\\u13c5\\u13e4\\u13b2\": 19694,\n    \"\\u2581\\u13da\\u13d3\\u13c1\": 19695,\n    \"\\u13db\\u13d3\\u13cd\\u13d3\\u13c1\": 19696,\n    \"\\u13be\\u13d3\\u13c1\\u13b3\\u13c1\": 19697,\n    \"\\u13c4\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13b0\": 19698,\n    \"\\u13f2\\u13a2\\u13cd\\u13d7\\u13f1\": 19699,\n    \"\\u2581\\u13da\\u13d5\\u13f2\": 19700,\n    \"\\u2581\\u13a6\\u13c2\\u13cf\\u13c5\": 19701,\n    \"\\u13b5\\u13cd\\u13d4\\u13f4\\u13c5\": 19702,\n    \"\\u2581\\u13e3\\u13c1\\u13b8\\u13d4\\u13c5\\u13af\": 19703,\n    \"\\u13ab\\u13aa\\u13d3\\u13cf\": 19704,\n    \"\\u13d6\\u13b8\\u13b2\\u13a6\": 19705,\n    \"\\u13d7\\u13d0\\u13a2\\u13c3\": 19706,\n    \"\\u13da\\u13eb\\u13db\": 19707,\n    \"\\u2581\\u13a3\\u13a6\\u13c2\\u13a9\": 19708,\n    \"\\u13a0\\u13af\\u13ce\\u13b8\": 19709,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 19710,\n    \"\\u13e0\\u13c6\": 19711,\n    \"\\u13a6\\u13ea\\u13cd\\u13d7\": 19712,\n    \"\\u13ab\\u13f4\\u13af\\u13d3\\u13cd\\u13d7\": 19713,\n    \"\\u13e3\\u13ea\\u13ce\\u13ad\": 19714,\n    \"\\u2581\\u13d7\\u13ac\\u13ec\": 19715,\n    \"\\u2581\\u13da\\u13d5\\u13ef\\u13d9\\u13d4\": 19716,\n    \"\\u2581\\u13a3\\u13e3\\u13b5\\u13e5\\u13d9\": 19717,\n    \"\\u2581\\u13d5\\u13a7\\u13c1\\u13a2\\u13cd\": 19718,\n    \"\\u13d5\\u13e6\": 19719,\n    \"\\u13d3\\u13a9\\u13c5\\u13ce\\u13a2\": 19720,\n    \"\\u2581\\u13f3\\u13c2\\u13aa\": 19721,\n    \"\\u13d6\\u13e5\": 19722,\n    \"\\u13d7\\u13a8\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13b8\": 19723,\n    \"\\u2581\\u13a4\\u13be\\u13a6\\u13b8\": 19724,\n    \"\\u2581\\u13e3\\u13a9\\u13c1\\u13e4\": 19725,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\\u13a8\\u13cd\\u13d7\": 19726,\n    \"\\u2581\\u13a4\\u13b7\\u13e5\\u13d7\": 19727,\n    \"\\u13cb\\u13c1\\u13b8\": 19728,\n    \"\\u13e2\\u13be\\u13c1\\u13b8\\u13a9\": 19729,\n    \"\\u13e5\\u13cd\\u13d5\\u13b8\\u13ae\\u13a2\": 19730,\n    \"\\u13db\\u13c2\\u13a1\": 19731,\n    \"\\u13f2\\u13b1\\u13cf\": 19732,\n    \"\\u2581\\u13d9\\u13d3\\u13a8\\u13e3\": 19733,\n    \"\\u13d0\\u13e2\\u13d5\\u13cd\\u13d7\": 19734,\n    \"\\u13ab\\u13f4\\u13a1\\u13b5\": 19735,\n    \"\\u13e5\\u13ec\\u13c2\\u13ad\": 19736,\n    \"\\u13be\\u13c2\\u13e2\\u13c5\": 19737,\n    \"\\u13e3\\u13d3\\u13c5\\u13db\\u13a9\": 19738,\n    \"\\u13c5\\u13a6\\u13b8\\u13b2\": 19739,\n    \"\\u13a9\\u13cd\\u13c6\\u13b5\\u13cd\": 19740,\n    \"\\u13ed\\u13e2\\u13c5\": 19741,\n    \"\\u13d7\\u13e3\\u13b5\\u13d8\": 19742,\n    \"\\u2581\\u13c2\\u13d1\": 19743,\n    \"\\u13a6\\u13db\\u13af\\u13cd\\u13d7\": 19744,\n    \"\\u13d3\\u13c2\\u13b8\\u13e5\": 19745,\n    \"\\u2581\\u13a4\\u13c2\\u13a6\\u13d9\\u13a5\": 19746,\n    \"\\u13cd\\u13a9\\u13f4\\u13a6\": 19747,\n    \"\\u13d3\\u13c5\\u13d9\\u13a9\\u13af\": 19748,\n    \"\\u2581\\u13a4\\u13a6\\u13f4\\u13b5\": 19749,\n    \"\\u13c7\\u13f2\": 19750,\n    \"\\u13d8\\u13be\\u13eb\\u13db\\u13ae\\u13a2\": 19751,\n    \"\\u13a7\\u13bf\\u13c5\": 19752,\n    \"\\u13a4\\u13a6\\u13ce\": 19753,\n    \"\\u13a9\\u13c3\\u13ae\\u13ae\": 19754,\n    \"\\u2581\\u13ad\\u13c2\\u13a7\\u13d4\": 19755,\n    \"\\u13cd\\u13da\\u13e4\": 19756,\n    \"\\u13a7\\u13b2\\u13d2\": 19757,\n    \"\\u2581\\u13a4\\u13be\\u13b5\\u13cd\\u13a6\\u13cd\": 19758,\n    \"\\u2581\\u13a0\\u13f2\\u13af\\u13cd\": 19759,\n    \"\\u13d3\\u13e5\\u13ef\\u13a7\\u13c2\": 19760,\n    \"\\u2581\\u13f1\\u13da\\u13e9\\u13db\": 19761,\n    \"\\u2581\\u13d7\\u13a8\\u13e5\\u13cd\\u13da\": 19762,\n    \"\\u13d3\\u13a2\\u13c5\\u13d7\": 19763,\n    \"\\u13b2\\u13cd\\u13d7\\u13cd\\u13a9\": 19764,\n    \"\\u2581\\u13a0\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\": 19765,\n    \"\\u13a4\\u13be\\u13d9\": 19766,\n    \"\\u13a2\\u13e5\\u13d7\\u13f1\": 19767,\n    \"\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\\u13a2\": 19768,\n    \"\\u13be\\u13d9\\u13b4\\u13b0\\u13af\": 19769,\n    \"\\u2581\\u13a0\\u13aa\\u13e9\\u13d7\\u13cd\": 19770,\n    \"\\u13c1\\u13ac\\u13c1\": 19771,\n    \"\\u13ef\\u13db\\u13c1\\u13ad\": 19772,\n    \"\\u13cd\\u13db\\u13a6\\u13b8\": 19773,\n    \"\\u13f0\\u13aa\\u13a2\": 19774,\n    \"\\u13cd\\u13a6\\u13e4\": 19775,\n    \"\\u13a4\\u13f0\\u13b8\": 19776,\n    \"\\u13d4\\u13c2\\u13d9\": 19777,\n    \"\\u2581\\u13d5\\u13a6\\u13e0\": 19778,\n    \"\\u2581\\u13a1\\u13e3\\u13db\\u13a6\\u13c1\": 19779,\n    \"\\u2581\\u13a0\\u13b5\\u13d6\\u13b8\": 19780,\n    \"\\u2581\\u13a4\\u13d5\\u13b6\\u13b0\": 19781,\n    \"\\u13a9\\u13e5\\u13cd\\u13a8\\u13a2\": 19782,\n    \"\\u13a8\\u13e5\\u13aa\\u13b5\\u13f0\\u13cd\\u13a8\": 19783,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d3\\u13c1\\u13ad\": 19784,\n    \"\\u2581\\u13da\\u13cd\\u13ab\\u13d3\": 19785,\n    \"\\u2581\\u13a4\\u13b4\\u13f4\": 19786,\n    \"\\u13b5\\u13a5\\u13c2\\u13b2\": 19787,\n    \"\\u13ef\\u13c5\\u13a1\\u13b8\": 19788,\n    \"\\u13ec\\u13c2\\u13d2\\u13a2\": 19789,\n    \"\\u2581\\u13a4\\u13ea\\u13ef\\u13d4\": 19790,\n    \"\\u2581\\u13e7\\u13e0\\u13af\\u13cd\": 19791,\n    \"\\u2581\\u13a4\\u13c1\\u13b5\\u13cc\": 19792,\n    \"\\u13f3\\u13a8\\u13d7\": 19793,\n    \"\\u13be\\u13b5\\u13ae\\u13b5\": 19794,\n    \"\\u2581\\u13f4\\u13d3\\u13f2\": 19795,\n    \"\\u13a7\\u13b2\\u13be\": 19796,\n    \"\\u2581\\u13ef\\u13b4\\u13eb\\u13cd\": 19797,\n    \"\\u2581\\u13e7\\u13c3\\u13af\\u13ce\": 19798,\n    \"\\u13a6\\u13e2\\u13c6\": 19799,\n    \"\\u13cd\\u13d3\\u13b5\\u13aa\": 19800,\n    \"\\u13d5\\u13ef\\u13d9\\u13d4\\u13c5\": 19801,\n    \"\\u13e5\\u13a6\\u13cc\\u13a2\": 19802,\n    \"\\u2581\\u13a4\\u13f2\\u13cd\\u13d9\\u13d3\\u13c1\": 19803,\n    \"\\u13a0\\u13cd\\u13aa\\u13b8\": 19804,\n    \"\\u13de\\u13cc\": 19805,\n    \"\\u2581\\u13eb\\u13a6\\u13e5\\u13b7\\u13e4\": 19806,\n    \"\\u13a6\\u13c2\\u13ad\": 19807,\n    \"lia\": 19808,\n    \"\\u13b5\\u13c2\\u13c6\\u13c5\\u13c5\": 19809,\n    \"\\u2581\\u13d5\\u13af\\u13b6\\u13c1\": 19810,\n    \"\\u2581\\u13a3\\u13a9\\u13be\\u13da\": 19811,\n    \"\\u13ac\\u13e9\\u13c2\\u13b7\\u13e4\\u13d7\": 19812,\n    \"\\u2581\\u13d5\\u13a4\\u13d9\": 19813,\n    \"\\u13d7\\u13b4\\u13b2\\u13af\": 19814,\n    \"\\u2581\\u13d7\\u13a6\\u13c3\\u13e3\": 19815,\n    \"\\u2581\\u13af\\u13f2\\u13a2\\u13f3\": 19816,\n    \"\\u13e5\\u13c4\\u13ec\": 19817,\n    \"\\u2581\\u13a4\\u13c2\\u13c4\\u13aa\": 19818,\n    \"\\u13ac\\u13e9\\u13f0\\u13e3\\u13cd\": 19819,\n    \"\\u13ab\\u13af\\u13cd\\u13d7\": 19820,\n    \"\\u2581\\u13d7\\u13a6\\u13b8\\u13eb\\u13cd\\u13d3\": 19821,\n    \"\\u2581\\u13e5\\u13e8\\u13f2\\u13ea\": 19822,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13f4\\u13b3\": 19823,\n    \"\\u2581\\u13e7\\u13f2\\u13b1\\u13af\\u13ce\": 19824,\n    \"\\u13b5\\u13cd\\u13c6\\u13d5\\u13b4\": 19825,\n    \"\\u13e0\\u13f1\\u13b2\\u13a2\": 19826,\n    \"\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\\u13af\": 19827,\n    \"\\u13df\\u13c3\\u13ae\\u13d9\": 19828,\n    \"\\u2581\\u13a4\\u13ea\\u13bf\": 19829,\n    \"\\u2581\\u13a4\\u13be\\u13c5\\u13d3\\u13d7\": 19830,\n    \"\\u13e3\\u13f1\\u13b5\": 19831,\n    \"\\u2581\\u13e8\\u13d3\\u13e5\": 19832,\n    \"\\u13a3\\u13e3\\u13c2\\u13a9\": 19833,\n    \"\\u13f2\\u13e4\": 19834,\n    \"\\u13d5\\u13e5\\u13f0\": 19835,\n    \"\\u13cd\\u13d7\\u13f4\\u13b8\": 19836,\n    \"\\u13d3\\u13c5\\u13d6\\u13b5\\u13d9\\u13b8\": 19837,\n    \"\\u2581\\u13e8\\u13d3\\u13e3\": 19838,\n    \"\\u13ef\\u13b5\\u13cd\\u13aa\\u13a5\": 19839,\n    \"\\u13d3\\u13aa\\u13c4\\u13b6\\u13af\": 19840,\n    \"\\u2581\\u13c4\\u13cd\\u13c6\\u13b8\": 19841,\n    \"\\u13b5\\u13cd\\u13d4\\u13c1\\u13b3\": 19842,\n    \"\\u13ea\\u13b5\\u13ce\\u13d7\": 19843,\n    \"\\u2581\\u13a3\\u13a6\\u13c5\\u13d4\": 19844,\n    \"\\u2581\\u13e9\\u13c7\": 19845,\n    \"\\u13db\\u13db\\u13ae\\u13b8\": 19846,\n    \"\\u13b5\\u13ae\\u13b5\\u13ac\": 19847,\n    \"\\u13a0\\u13e5\\u13aa\\u13c5\": 19848,\n    \"\\u2581\\u13a0\\u13d3\\u13e9\\u13db\": 19849,\n    \"\\u13e5\\u13aa\\u13c1\\u13b8\": 19850,\n    \"\\u13c3\\u13ae\\u13cd\\u13a8\": 19851,\n    \"\\u2581\\u13e7\\u13be\\u13db\\u13db\": 19852,\n    \"\\u13c4\\u13aa\\u13eb\\u13cd\\u13a9\": 19853,\n    \"\\u13a6\\u13d0\\u13a0\\u13cf\": 19854,\n    \"\\u2581\\u13a4\\u13d3\\u13d3\\u13cd\": 19855,\n    \"\\u13b3\\u13d7\\u13d9\\u13b4\": 19856,\n    \"\\u13e3\\u13b4\\u13c2\\u13d9\\u13b2\": 19857,\n    \"\\u13d3\\u13e9\\u13db\\u13a1\\u13b2\": 19858,\n    \"\\u2581\\u13d7\\u13e3\\u13d3\\u13d9\\u13b5\\u13cd\": 19859,\n    \"\\u2581\\u13d3\\u13cd\\u13da\": 19860,\n    \"\\u13d3\\u13c2\\u13c2\\u13cf\\u13cd\\u13a8\": 19861,\n    \"\\u2581\\u13a0\\u13df\\u13c2\\u13ac\": 19862,\n    \"\\u2581\\u13c2\\u13d5\\u13a6\\u13ea\": 19863,\n    \"\\u13a9\\u13f4\\u13c1\\u13b8\": 19864,\n    \"\\u13d9\\u13b5\\u13e3\\u13d8\\u13f3\": 19865,\n    \"\\u13a8\\u13b3\\u13d7\\u13d9\\u13ae\": 19866,\n    \"\\u13a6\\u13c3\\u13e3\\u13b8\": 19867,\n    \"\\u2581\\u13f3\\u13ec\\u13e2\": 19868,\n    \"\\u13b5\\u13a1\\u13b5\\u13e4\\u13b0\": 19869,\n    \"\\u2581\\u13eb\\u13e8\\u13f2\\u13ea\": 19870,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13a3\": 19871,\n    \"\\u13d5\\u13a7\\u13c1\\u13e4\\u13ae\": 19872,\n    \"\\u2581\\u13e6\\u13a2\\u13a6\\u13da\": 19873,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13c4\": 19874,\n    \"\\u13c5\\u13aa\\u13a3\": 19875,\n    \"\\u2581\\u13da\\u13ea\\u13b5\\u13ce\": 19876,\n    \"\\u2581\\u13da\\u13d1\\u13f0\": 19877,\n    \"\\u2581\\u13da\\u13ea\\u13df\\u13cc\": 19878,\n    \"\\u2581\\u13a0\\u13c1\\u13b7\\u13b2\\u13cd\": 19879,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d4\": 19880,\n    \"\\u13a8\\u13eb\\u13d2\\u13ad\": 19881,\n    \"\\u13be\\u13c1\\u13b7\\u13a9\\u13a1\\u13b4\": 19882,\n    \"\\u13b8\\u13a5\\u13cd\\u13a8\\u13cd\\u13d7\": 19883,\n    \"\\u13f0\\u13b5\\u13af\\u13cd\\u13d4\\u13c5\\u13c3\": 19884,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13b7\\u13a9\": 19885,\n    \"\\u13f3\\u13d3\\u13cd\\u13d9\\u13d7\": 19886,\n    \"\\u2581\\u13eb\\u13d7\\u13e8\": 19887,\n    \"\\u13a4\\u13b7\\u13e4\\u13b4\\u13a2\": 19888,\n    \"\\u2581\\u13e7\\u13c2\\u13b8\\u13eb\\u13cd\": 19889,\n    \"\\u2581\\u13da\\u13d3\\u13c5\\u13a1\\u13b8\": 19890,\n    \"\\u2581\\u13e7\\u13a6\\u13bf\": 19891,\n    \"\\u13da\\u13c5\\u13c2\": 19892,\n    \"\\u13c1\\u13d9\\u13b4\\u13a2\": 19893,\n    \"\\u13aa\\u13c6\\u13b5\": 19894,\n    \"\\u13f3\\u13aa\\u13d3\\u13c1\\u13d7\\u13f1\": 19895,\n    \"\\u2581\\u13a4\\u13b5\\u13f0\\u13d1\\u13cd\\u13d9\": 19896,\n    \"\\u13d3\\u13f3\\u13c5\\u13cf\\u13db\": 19897,\n    \"\\u13cc\\u13b9\": 19898,\n    \"\\u13be\\u13e4\\u13b5\\u13db\": 19899,\n    \"\\u2581\\u13da\\u13c2\\u13df\\u13cc\": 19900,\n    \"\\u2581\\u13a0\\u13aa\\u13cd\\u13d3\": 19901,\n    \"\\u2581\\u13da\\u13c2\\u13ec\": 19902,\n    \"\\u13b5\\u13e0\\u13ef\\u13cd\\u13d9\\u13d7\": 19903,\n    \"\\u13be\\u13e6\\u13a5\": 19904,\n    \"\\u13ea\\u13ef\\u13d7\": 19905,\n    \"\\u13c2\\u13c3\\u13ae\\u13cd\\u13aa\": 19906,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d4\\u13f4\": 19907,\n    \"\\u13cd\\u13a6\\u13cd\\u13d9\\u13d9\": 19908,\n    \"\\u2581\\u13c4\\u13c2\\u13cd\\u13d3\": 19909,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13b5\\u13cd\\u13d3\": 19910,\n    \"\\u2581\\u13ec\\u13b6\": 19911,\n    \"\\u13d0\\u13b2\\u13cd\\u13d7\\u13f1\": 19912,\n    \"\\u2581\\u13ac\\u13e9\\u13aa\\u13c1\\u13b6\\u13af\\u13ce\": 19913,\n    \"\\u2581\\u13e9\\u13c2\\u13c1\": 19914,\n    \"\\u13be\\u13b5\\u13e5\\u13d9\\u13c2\\u13d9\\u13b8\": 19915,\n    \"\\u13e3\\u13db\\u13d3\\u13cd\\u13d3\": 19916,\n    \"\\u13c6\\u13db\\u13d3\\u13cd\\u13d3\\u13cf\": 19917,\n    \"\\u13a6\\u13ef\\u13b7\": 19918,\n    \"\\u13d0\\u13e2\\u13d4\\u13c1\\u13a2\": 19919,\n    \"\\u13f0\\u13a2\\u13b6\\u13af\\u13cd\\u13d7\": 19920,\n    \"\\u13f0\\u13b8\\u13be\\u13c1\\u13b4\": 19921,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13f2\\u13b5\": 19922,\n    \"\\u2581\\u13d7\\u13ac\\u13e9\\u13f2\\u13af\": 19923,\n    \"\\u2581\\u13a0\\u13d3\\u13cd\\u13d5\": 19924,\n    \"\\u2581\\u13ac\\u13c9\\u13af\\u13f3\": 19925,\n    \"\\u13a6\\u13b7\\u13aa\\u13a2\": 19926,\n    \"\\u13d6\\u13b8\\u13c2\\u13cd\\u13d7\": 19927,\n    \"\\u13a8\\u13e3\\u13f2\\u13ce\": 19928,\n    \"\\u13c2\\u13e3\\u13d3\\u13db\\u13c1\": 19929,\n    \"\\u2581\\u13a6\\u13be\\u13f0\\u13af\\u13cd\": 19930,\n    \"\\u13da\\u13ac\\u13ad\\u13b7\\u13f0\": 19931,\n    \"\\u2581\\u13a6\\u13e5\\u13c1\\u13a2\\u13cd\": 19932,\n    \"\\u13d8\\u13d9\\u13b5\": 19933,\n    \"\\u13a6\\u13ac\\u13f2\\u13af\": 19934,\n    \"\\u13d7\\u13e4\\u13f2\\u13b2\": 19935,\n    \"\\u2581\\u13f1\\u13c5\\u13a8\": 19936,\n    \"\\u13a1\\u13e3\\u13d8\\u13be\\u13eb\\u13db\": 19937,\n    \"\\u2581\\u13a0\\u13a6\\u13b5\\u13cd\\u13aa\\u13b8\": 19938,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13cc\": 19939,\n    \"\\u13b5\\u13f2\\u13a2\\u13cd\\u13d7\\u13f1\": 19940,\n    \"\\u13d5\\u13a6\\u13c2\\u13f1\": 19941,\n    \"\\u2581\\u13a0\\u13a6\\u13b5\\u13ae\": 19942,\n    \"\\u13c6\\u13b8\\u13d5\": 19943,\n    \"\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\": 19944,\n    \"\\u2581\\u13a8\\u13a6\\u13ab\\u13f4\": 19945,\n    \"\\u13d5\\u13cd\\u13a9\\u13ef\\u13a7\": 19946,\n    \"\\u13e7\\u13be\\u13d3\\u13b4\\u13c1\": 19947,\n    \"\\u13c2\\u13d0\\u13e2\\u13d7\": 19948,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13be\\u13e2\": 19949,\n    \"\\u2581\\u13a0\\u13d0\\u13e2\\u13a2\\u13cd\": 19950,\n    \"\\u13e5\\u13f2\\u13af\\u13cd\\u13d3\": 19951,\n    \"\\u2581\\u13eb\\u13da\\u13be\\u13a7\\u13bf\": 19952,\n    \"\\u13df\\u13f4\\u13cd\\u13a9\": 19953,\n    \"\\u2581\\u13d3\\u13c2\\u13cd\\u13d5\": 19954,\n    \"\\u13f3\\u13be\\u13c4\\u13aa\\u13e8\": 19955,\n    \"\\u2581\\u13da\\u13be\\u13d3\\u13db\\u13db\": 19956,\n    \"\\u2581\\u13a7\\u13c3\\u13a9\\u13cd\": 19957,\n    \"\\u13c1\\u13a9\\u13f4\": 19958,\n    \"\\u13f1\\u13b5\\u13d2\\u13a2\": 19959,\n    \"\\u13e8\\u13c1\\u13b2\": 19960,\n    \"\\u2581\\u13a0\\u13b5\\u13cf\\u13be\": 19961,\n    \"\\u13c3\\u13a6\\u13db\\u13bf\\u13d5\": 19962,\n    \"\\u2581\\u13a4\\u13e9\\u13be\\u13ec\": 19963,\n    \"\\u2581\\u13a2\\u13e8\\u13a8\\u13f3\": 19964,\n    \"\\u2581\\u13f3\\u13eb\\u13d7\\u13e3\": 19965,\n    \"\\u13cd\\u13d5\\u13d3\\u13b5\\u13f4\\u13d3\": 19966,\n    \"\\u2581\\u13f1\\u13d7\\u13ac\\u13d5\": 19967,\n    \"\\u13f2\\u13b1\\u13d2\": 19968,\n    \"\\u2581\\u13d5\\u13e5\\u13c5\\u13a6\\u13b5\\u13cd\": 19969,\n    \"\\u2581\\u13da\\u13c4\\u13aa\\u13eb\": 19970,\n    \"\\u13e5\\u13b6\\u13a2\": 19971,\n    \"\\u2581\\u13c4\\u13cd\\u13da\": 19972,\n    \"\\u13ef\\u13e0\\u13a2\": 19973,\n    \"\\u2581\\u13e5\\u13d9\\u13d3\\u13e8\": 19974,\n    \"\\u13ed\\u13c2\\u13b7\\u13e4\": 19975,\n    \"\\u2581\\u13d3\\u13c6\\u13a7\\u13be\": 19976,\n    \"\\u13ec\\u13ce\\u13b4\\u13a2\": 19977,\n    \"\\u13c6\\u13c2\\u13a9\\u13d2\": 19978,\n    \"\\u13be\\u13d3\\u13ec\": 19979,\n    \"\\u13d5\\u13e3\\u13b5\\u13c2\\u13ac\": 19980,\n    \"\\u2581\\u13c2\\u13d5\\u13a9\\u13be\": 19981,\n    \"\\u13da\\u13ed\\u13aa\\u13d4\\u13c1\": 19982,\n    \"\\u13e8\\u13c3\\u13c1\\u13b8\": 19983,\n    \"\\u13a9\\u13b3\\u13eb\\u13d2\": 19984,\n    \"\\u2581\\u13a0\\u13be\\u13d7\\u13d2\": 19985,\n    \"\\u2581\\u13a4\\u13e9\\u13f4\": 19986,\n    \"\\u13a6\\u13e9\\u13d9\\u13a3\\u13cd\": 19987,\n    \"\\u13b5\\u13c8\\u13f1\": 19988,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c5\\u13a6\": 19989,\n    \"\\u13f0\\u13cd\\u13aa\\u13a2\": 19990,\n    \"\\u13d3\\u13d3\\u13b4\\u13d4\\u13c5\\u13af\": 19991,\n    \"\\u13e9\\u13c5\\u13c1\\u13d7\": 19992,\n    \"\\u13e3\\u13d5\\u13f2\\u13d7\": 19993,\n    \"\\u13ec\\u13f0\\u13c2\": 19994,\n    \"\\u2581\\u13e5\\u13a8\\u13a6\\u13db\\u13c5\\u13a2\\u13cd\": 19995,\n    \"\\u13b5\\u13cd\\u13d4\\u13f4\\u13d7\": 19996,\n    \"\\u13c4\\u13c5\\u13c1\\u13b4\": 19997,\n    \"\\u2581\\u13f1\\u13da\\u13be\\u13c4\": 19998,\n    \"\\u13cd\\u13c6\\u13c2\\u13a9\": 19999,\n    \"\\u13a4\\u13db\\u13c1\": 20000,\n    \"\\u13d3\\u13ac\\u13cd\\u13aa\\u13b8\\u13d7\": 20001,\n    \"\\u2581\\u13d3\\u13df\\u13b6\": 20002,\n    \"\\u13af\\u13f3\\u13aa\\u13d3\\u13c1\\u13ad\": 20003,\n    \"\\u13be\\u13a6\\u13b8\\u13b2\": 20004,\n    \"\\u13cd\\u13c6\\u13d7\\u13cd\\u13ac\": 20005,\n    \"\\u13e5\\u13ac\\u13cd\\u13aa\\u13b8\\u13a5\\u13cd\\u13a8\\u13cd\\u13d7\": 20006,\n    \"\\u2581\\u13a4\\u13be\\u13d5\\u13b6\\u13b0\": 20007,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13f0\\u13d7\\u13cd\": 20008,\n    \"\\u2581\\u13da\\u13c2\\u13d4\\u13b3\": 20009,\n    \"\\u2581\\u13c4\\u13b5\\u13cd\\u13d4\": 20010,\n    \"\\u2581\\u13da\\u13c3\\u13e3\\u13dd\": 20011,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13d3\\u13e9\": 20012,\n    \"\\u2581\\u13a0\\u13cb\\u13d5\": 20013,\n    \"\\u13f4\\u13a6\\u13e5\": 20014,\n    \"\\u13d7\\u13a8\\u13a6\\u13e8\\u13cd\\u13d4\": 20015,\n    \"\\u13cd\\u13a9\\u13ef\\u13d3\\u13c2\\u13b8\\u13e8\": 20016,\n    \"\\u13d3\\u13c1\\u13b8\\u13a5\\u13cd\\u13ac\": 20017,\n    \"\\u13ac\\u13c1\\u13ae\": 20018,\n    \"\\u13af\\u13f3\\u13ad\\u13e7\": 20019,\n    \"\\u13ec\\u13b3\\u13d5\\u13cd\\u13ac\": 20020,\n    \"\\u2581\\u13a0\\u13e5\\u13b5\\u13a5\": 20021,\n    \"\\u13da\\u13eb\\u13cd\\u13d4\\u13c1\\u13a2\": 20022,\n    \"\\u13df\\u13c3\\u13ae\\u13d4\": 20023,\n    \"\\u13f4\\u13d5\\u13e5\": 20024,\n    \"\\u13d7\\u13e8\\u13c1\": 20025,\n    \"\\u13a6\\u13be\\u13cd\\u13d3\": 20026,\n    \"\\u13d7\\u13a6\\u13a7\\u13af\\u13ef\\u13cd\": 20027,\n    \"\\u2581\\u13d5\\u13ad\\u13d3\\u13c5\": 20028,\n    \"\\u13a9\\u13a6\\u13a8\\u13a2\": 20029,\n    \"\\u2581\\u13cf\\u13f4\\u13eb\": 20030,\n    \"\\u2581\\u13e7\\u13db\\u13a6\\u13c1\": 20031,\n    \"\\u2581\\u13c2\\u13e5\\u13cd\\u13a6\": 20032,\n    \"\\u2581\\u13a4\\u13c2\\u13c3\\u13ae\": 20033,\n    \"\\u13f2\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13be\": 20034,\n    \"\\u13c4\\u13e2\": 20035,\n    \"\\u13e3\\u13b5\\u13ae\\u13b5\\u13cd\\u13d7\": 20036,\n    \"\\u13d3\\u13a8\\u13e8\\u13c1\\u13b5\": 20037,\n    \"\\u13d3\\u13f4\\u13b3\\u13d8\": 20038,\n    \"\\u13ac\\u13c3\\u13af\\u13ce\": 20039,\n    \"\\u13be\\u13b5\\u13cd\\u13d4\\u13c5\\u13a2\": 20040,\n    \"\\u13dc\\u13c5\\u13d3\": 20041,\n    \"\\u13a9\\u13c2\\u13ac\\u13ce\\u13b2\": 20042,\n    \"\\u2581\\u13a0\\u13b5\\u13cc\\u13b3\\u13d7\\u13cd\": 20043,\n    \"\\u2581\\u13a4\\u13d4\\u13b7\": 20044,\n    \"\\u13f0\\u13a2\\u13b6\\u13a6\": 20045,\n    \"\\u13d8\\u13b8\\u13cd\\u13d7\": 20046,\n    \"\\u13be\\u13a6\\u13d9\\u13cd\\u13d4\\u13c1\": 20047,\n    \"\\u2581\\u13d7\\u13a6\\u13c1\\u13df\": 20048,\n    \"\\u2581\\u13a4\\u13e9\\u13c7\": 20049,\n    \"\\u13be\\u13d9\\u13b4\\u13b0\": 20050,\n    \"\\u13d5\\u13b0\\u13af\\u13cd\": 20051,\n    \"\\u2581\\u13eb\\u13a4\\u13be\": 20052,\n    \"\\u2581\\u13a4\\u13d7\\u13d4\": 20053,\n    \"\\u2581\\u13e7\\u13ef\\u13db\": 20054,\n    \"\\u13ac\\u13e9\\u13ea\\u13ce\": 20055,\n    \"\\u13c3\\u13cd\\u13a9\\u13d2\": 20056,\n    \"\\u13d6\\u13b8\\u13c5\\u13af\": 20057,\n    \"\\u2581\\u13ed\\u13d3\\u13be\\u13eb\\u13db\": 20058,\n    \"\\u13a7\\u13bf\\u13e9\\u13db\": 20059,\n    \"\\u13e3\\u13cd\\u13c6\\u13c2\\u13aa\": 20060,\n    \"\\u13d3\\u13b5\\u13d7\\u13a9\": 20061,\n    \"\\u13d7\\u13e9\\u13be\\u13a6\\u13b3\": 20062,\n    \"\\u13f0\\u13eb\": 20063,\n    \"\\u2581\\u13be\\u13be\\u13d3\\u13db\": 20064,\n    \"\\u13e5\\u13f3\\u13aa\\u13d3\\u13c1\\u13ad\": 20065,\n    \"\\u13e3\\u13d9\\u13b4\\u13b0\\u13cd\\u13ac\": 20066,\n    \"\\u13d2\\u13cd\\u13d4\\u13c1\": 20067,\n    \"\\u13e7\\u13b5\\u13cd\\u13d9\\u13d4\\u13c5\": 20068,\n    \"\\u13ac\\u13ed\\u13aa\\u13d3\\u13c1\": 20069,\n    \"\\u13b5\\u13e3\\u13db\\u13be\": 20070,\n    \"\\u13d3\\u13a6\\u13b4\\u13c5\": 20071,\n    \"\\u13a6\\u13d6\\u13c5\": 20072,\n    \"\\u2581\\u13a4\\u13ea\\u13d4\": 20073,\n    \"\\u2581\\u13da\\u13e9\\u13e5\\u13cd\": 20074,\n    \"\\u2581\\u13a4\\u13c5\\u13aa\\u13b3\": 20075,\n    \"\\u13e5\\u13a9\\u13b5\\u13f2\\u13a6\": 20076,\n    \"\\u2581\\u13e7\\u13e3\\u13b7\": 20077,\n    \"\\u13ef\\u13a7\\u13c1\": 20078,\n    \"\\u2581\\u13f1\\u13da\\u13ec\\u13d5\": 20079,\n    \"\\u13cd\\u13d3\\u13f4\\u13c5\\u13a9\": 20080,\n    \"\\u13e4\\u13a6\\u13c8\": 20081,\n    \"\\u13cd\\u13a9\\u13ef\\u13d1\\u13f0\": 20082,\n    \"\\u13da\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 20083,\n    \"\\u13be\\u13cd\\u13d7\\u13cd\\u13ac\\u13a9\": 20084,\n    \"\\u13d5\\u13ac\\u13e9\\u13c2\\u13be\\u13dd\": 20085,\n    \"\\u2581\\u13a4\\u13d3\\u13ac\\u13e9\\u13d3\\u13b4\": 20086,\n    \"\\u13db\\u13ae\\u13cf\": 20087,\n    \"\\u2581\\u13a4\\u13d9\\u13ef\\u13c5\\u13af\": 20088,\n    \"\\u13a4\\u13c1\\u13c5\": 20089,\n    \"\\u13a6\\u13e5\\u13c4\\u13aa\\u13eb\\u13d2\": 20090,\n    \"\\u13ef\\u13cf\\u13d4\": 20091,\n    \"\\u13e5\\u13d9\\u13b0\": 20092,\n    \"\\u2581\\u13eb\\u13db\\u13c2\": 20093,\n    \"\\u13a1\\u13dd\\u13ea\": 20094,\n    \"\\u2581\\u13e5\\u13ef\\u13b5\\u13a1\\u13b5\": 20095,\n    \"\\u2581\\u13a8\\u13a6\\u13c5\\u13d3\": 20096,\n    \"\\u13cd\\u13d9\\u13f0\\u13b2\": 20097,\n    \"\\u13d2\\u13a6\\u13b3\\u13d7\\u13cd\\u13d4\": 20098,\n    \"\\u2581\\u13d3\\u13f3\\u13c2\\u13f0\": 20099,\n    \"\\u13a4\\u13c2\\u13b6\\u13ce\\u13a2\": 20100,\n    \"\\u2581\\u13da\\u13c4\\u13e9\": 20101,\n    \"\\u2581\\u13ed\\u13c5\\u13e5\": 20102,\n    \"\\u13d2\\u13c2\\u13cd\\u13d9\": 20103,\n    \"\\u2581\\u13a0\\u13c6\\u13b5\\u13cd\\u13d5\": 20104,\n    \"\\u13a7\\u13bf\\u13e9\\u13d7\\u13d9\": 20105,\n    \"\\u13a6\\u13db\\u13b4\\u13cf\": 20106,\n    \"\\u13c4\\u13be\\u13cd\\u13d7\": 20107,\n    \"\\u13e5\\u13b8\\u13cc\\u13d3\\u13d5\": 20108,\n    \"\\u2581\\u13f3\\u13eb\\u13e3\": 20109,\n    \"\\u2581\\u13c5\\u13c6\\u13d3\\u13b4\": 20110,\n    \"\\u2581\\u13c2\\u13e5\\u13ea\\u13d2\": 20111,\n    \"\\u2581\\u13d3\\u13be\\u13b3\\u13cd\": 20112,\n    \"\\u13d3\\u13f0\\u13ae\": 20113,\n    \"\\u13e7\\u13a6\\u13e3\": 20114,\n    \"\\u13d4\\u13eb\\u13a2\\u13cd\\u13d7\\u13f1\": 20115,\n    \"\\u13c2\\u13cd\\u13c6\\u13db\\u13c1\\u13b8\": 20116,\n    \"\\u2581\\u13a6\\u13c3\\u13af\\u13b5\": 20117,\n    \"\\u13e5\\u13a5\\u13a1\\u13b8\": 20118,\n    \"\\u13b8\\u13c9\\u13d4\\u13c1\": 20119,\n    \"\\u2581\\u13e7\\u13d5\\u13d8\\u13f4\\u13cc\": 20120,\n    \"\\u13c2\\u13a6\\u13d9\\u13b5\\u13c3\": 20121,\n    \"\\u13a4\\u13ea\\u13c5\\u13c3\": 20122,\n    \"\\u13d9\\u13ef\\u13c5\\u13af\\u13d5\": 20123,\n    \"\\u13e7\\u13d3\\u13c5\\u13ce\": 20124,\n    \"\\u2581\\u13da\\u13be\\u13d8\\u13c5\": 20125,\n    \"\\u13a4\\u13b6\\u13d2\\u13a9\": 20126,\n    \"\\u13c2\\u13cd\\u13cb\\u13c1\\u13b8\": 20127,\n    \"\\u13d3\\u13c2\\u13d9\\u13ac\\u13a9\": 20128,\n    \"\\u13a4\\u13be\\u13d3\\u13c8\\u13ac\": 20129,\n    \"\\u13d5\\u13e8\\u13ef\\u13e0\\u13a2\\u13cd\\u13d3\\u13c1\": 20130,\n    \"\\u13a4\\u13b5\\u13cd\\u13db\\u13c2\\u13b4\\u13a2\": 20131,\n    \"\\u13a4\\u13bf\\u13cd\\u13ac\\u13e4\": 20132,\n    \"\\u13ad\\u13b4\\u13eb\\u13cd\\u13d3\": 20133,\n    \"\\u13d9\\u13d3\\u13ac\\u13e9\\u13c2\\u13be\\u13e2\\u13c2\": 20134,\n    \"\\u13ee\\u13d3\\u13e8\\u13b7\\u13e4\\u13b5\": 20135,\n    \"\\u13c2\\u13ac\\u13e9\\u13c5\\u13bf\\u13d5\\u13ac\": 20136,\n    \"\\u13c2\\u13ac\\u13e9\\u13db\\u13c1\\u13b4\\u13a2\": 20137,\n    \"\\u13d7\\u13e3\\u13b8\\u13eb\\u13cd\\u13d3\\u13cf\": 20138,\n    \"\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13cf\": 20139,\n    \"\\u13a6\\u13b5\\u13e5\\u13d9\\u13c5\": 20140,\n    \"\\u13ad\\u13d3\\u13c4\\u13d6\\u13ef\": 20141,\n    \"\\u13af\\u13c4\\u13f4\\u13d3\": 20142,\n    \"\\u13a6\\u13be\\u13b1\\u13a9\\u13cd\\u13ac\": 20143,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\\u13f2\\u13af\": 20144,\n    \"\\u13d5\\u13a4\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 20145,\n    \"\\u13e7\\u13d3\\u13c6\": 20146,\n    \"\\u13c2\\u13a6\\u13e5\\u13ea\\u13ce\\u13b8\\u13a9\": 20147,\n    \"\\u13a4\\u13e5\\u13b8\\u13ce\\u13cd\\u13d7\": 20148,\n    \"\\u13d7\\u13a8\\u13c5\\u13d2\": 20149,\n    \"\\u13a9\\u13ef\\u13d2\\u13a6\\u13b6\\u13d7\": 20150,\n    \"\\u13da\\u13c2\\u13f4\\u13cd\\u13d5\": 20151,\n    \"\\u13da\\u13be\\u13a6\\u13b4\\u13c5\": 20152,\n    \"\\u13e9\\u13cd\\u13d5\\u13cd\\u13d7\": 20153,\n    \"\\u2581\\u13a0\\u13c2\\u13aa\\u13e9\": 20154,\n    \"\\u13d3\\u13a6\\u13b5\\u13ec\\u13e5\": 20155,\n    \"\\u13c2\\u13a6\\u13b5\\u13cd\\u13d7\\u13ad\": 20156,\n    \"\\u13e5\\u13ef\\u13c5\\u13d4\\u13c5\": 20157,\n    \"\\u13e5\\u13c6\\u13b5\\u13cf\": 20158,\n    \"\\u13db\\u13d0\\u13c5\\u13af\": 20159,\n    \"\\u13d3\\u13aa\\u13ea\\u13b3\\u13c2\": 20160,\n    \"\\u13d3\\u13cd\\u13da\\u13b2\\u13a2\": 20161,\n    \"\\u13d1\\u13b5\\u13aa\\u13e8\": 20162,\n    \"\\u13d3\\u13c5\\u13d6\\u13a2\": 20163,\n    \"\\u13c4\\u13e9\\u13c1\\u13b0\": 20164,\n    \"\\u13db\\u13c2\\u13cd\\u13d7\\u13cd\\u13a9\": 20165,\n    \"\\u2581\\u13da\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\": 20166,\n    \"\\u13d5\\u13a6\\u13c5\\u13cc\": 20167,\n    \"\\u13e4\\u13b3\\u13cd\\u13d4\\u13c2\": 20168,\n    \"\\u13cd\\u13cb\\u13c2\": 20169,\n    \"\\u13af\\u13f1\\u13b5\\u13d9\": 20170,\n    \"\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\\u13aa\": 20171,\n    \"\\u2581\\u13a4\\u13d7\\u13b4\": 20172,\n    \"\\u13ba\\u13cc\\u13ef\": 20173,\n    \"\\u13a3\\u13e5\\u13c1\\u13a6\": 20174,\n    \"\\u13d5\\u13aa\\u13e2\\u13d2\\u13a9\": 20175,\n    \"\\u13da\\u13df\\u13b6\\u13cd\\u13d3\\u13c1\\u13b4\\u13a2\": 20176,\n    \"\\u13e5\\u13c4\\u13cd\\u13d9\": 20177,\n    \"\\u13a4\\u13be\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\\u13f1\": 20178,\n    \"\\u13c5\\u13d3\\u13a6\\u13db\\u13c1\\u13b5\": 20179,\n    \"\\u13c5\\u13db\\u13be\\u13b5\\u13cd\\u13d4\\u13c2\": 20180,\n    \"\\u13d3\\u13f0\\u13e5\\u13c1\\u13b5\": 20181,\n    \"\\u13e8\\u13d7\\u13a6\\u13da\\u13ad\": 20182,\n    \"\\u13ed\\u13d9\\u13af\\u13f3\\u13b2\": 20183,\n    \"\\u13a0\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13ac\": 20184,\n    \"\\u13a0\\u13bb\\u13b3\\u13bb\": 20185,\n    \"\\u13a0\\u13c2\\u13a6\\u13d4\\u13ae\": 20186,\n    \"\\u2581\\u13da\\u13c2\\u13f4\\u13cd\": 20187,\n    \"\\u13f1\\u13e5\\u13c1\\u13a6\": 20188,\n    \"\\u13a0\\u13a9\\u13b5\\u13d3\\u13cd\": 20189,\n    \"\\u13a0\\u13c1\\u13d9\\u13ae\\u13a2\": 20190,\n    \"\\u13a0\\u13d3\\u13c5\\u13d6\\u13cd\\u13a8\\u13a2\": 20191,\n    \"\\u13a4\\u13e5\\u13ef\": 20192,\n    \"\\u13a6\\u13c4\\u13b8\": 20193,\n    \"\\u13b5\\u13cd\\u13d9\\u13d4\\u13c2\": 20194,\n    \"\\u2581\\u13a0\\u13b1\\u13e2\": 20195,\n    \"\\u2581\\u13a2\\u13e3\\u13b5\\u13cd\\u13d5\": 20196,\n    \"\\u13ed\\u13d3\\u13b4\\u13ce\": 20197,\n    \"\\u13a4\\u13cd\\u13d7\\u13a9\\u13a8\": 20198,\n    \"\\u13be\\u13c2\\u13ea\\u13ad\": 20199,\n    \"\\u13e9\\u13a9\\u13b6\\u13d2\\u13a9\": 20200,\n    \"\\u13cd\\u13a6\\u13c5\\u13e4\\u13b2\": 20201,\n    \"\\u13cd\\u13d7\\u13a6\\u13d4\\u13ae\": 20202,\n    \"\\u13e3\\u13b5\\u13c2\\u13a9\": 20203,\n    \"\\u13e9\\u13ea\\u13ce\\u13b8\\u13a9\": 20204,\n    \"\\u2581\\u13d9\\u13d7\\u13a7\\u13c5\": 20205,\n    \"\\u13cd\\u13a9\\u13cd\\u13d5\\u13b3\": 20206,\n    \"\\u13a4\\u13b5\\u13f0\": 20207,\n    \"\\u13f0\\u13d7\\u13e9\\u13db\": 20208,\n    \"\\u13d3\\u13c3\\u13ce\\u13b0\": 20209,\n    \"\\u13e5\\u13a8\\u13ad\": 20210,\n    \"\\u13d3\\u13d5\\u13f2\\u13b2\\u13cd\\u13a8\": 20211,\n    \"\\u13d3\\u13c2\\u13a7\\u13bf\\u13e9\\u13d7\": 20212,\n    \"\\u13da\\u13be\\u13df\\u13f4\": 20213,\n    \"\\u13ba\\u13cc\": 20214,\n    \"\\u2581\\u13a5\\u13a9\\u13b1\\u13cd\\u13d5\": 20215,\n    \"\\u13a7\\u13be\\u13b7\": 20216,\n    \"\\u13a0\\u13b5\\u13ae\\u13b5\\u13a9\": 20217,\n    \"\\u13e7\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13d7\\u13f1\": 20218,\n    \"\\u13ed\\u13e9\\u13c5\\u13d3\\u13d5\": 20219,\n    \"\\u13a3\\u13a6\\u13e3\\u13c5\": 20220,\n    \"\\u13a4\\u13d3\\u13c5\\u13a6\\u13b8\\u13d3\": 20221,\n    \"\\u13a5\\u13a6\\u13e5\\u13aa\\u13a5\\u13a9\": 20222,\n    \"\\u13a0\\u13c3\\u13cd\\u13d3\": 20223,\n    \"\\u13d2\\u13a6\\u13be\\u13f2\\u13aa\": 20224,\n    \"\\u13a0\\u13db\\u13a9\\u13cd\\u13a8\": 20225,\n    \"\\u13d5\\u13ad\\u13b7\\u13a8\": 20226,\n    \"\\u13a4\\u13f4\\u13b8\": 20227,\n    \"\\u13c2\\u13ac\\u13e9\\u13c2\\u13ea\\u13ce\": 20228,\n    \"\\u13d3\\u13a9\\u13ef\\u13ea\\u13ac\": 20229,\n    \"\\u13c3\\u13a6\\u13db\\u13c1\\u13b8\": 20230,\n    \"\\u13a9\\u13c2\\u13cc\\u13c5\\u13a9\": 20231,\n    \"\\u2581\\u13e3\\u13be\\u13db\\u13a9\": 20232,\n    \"\\u13c2\\u13d5\\u13b2\\u13c1\": 20233,\n    \"\\u13af\\u13b4\\u13f4\\u13cd\": 20234,\n    \"\\u13c4\\u13ea\\u13a1\\u13a2\": 20235,\n    \"\\u13a0\\u13d3\\u13f2\\u13c1\": 20236,\n    \"\\u13ce\\u13b5\\u13d3\\u13c1\\u13b4\": 20237,\n    \"\\u2581\\u13d5\\u13e8\\u13ef\\u13e0\\u13a2\\u13cd\": 20238,\n    \"\\u13a8\\u13aa\\u13ce\": 20239,\n    \"\\u13a4\\u13be\\u13d9\\u13b4\\u13b0\\u13af\\u13cd\\u13d7\\u13f1\": 20240,\n    \"\\u13ac\\u13e9\\u13aa\\u13ae\\u13a2\": 20241,\n    \"\\u13c2\\u13da\\u13c2\\u13ea\\u13ce\\u13b4\\u13a2\": 20242,\n    \"\\u13eb\\u13a8\\u13e5\\u13ef\\u13c5\\u13db\": 20243,\n    \"\\u13d3\\u13aa\\u13c4\\u13b8\": 20244,\n    \"\\u13a1\\u13da\\u13e5\": 20245,\n    \"\\u2581\\u13ed\\u13d7\\u13e2\\u13cd\\u13d4\\u13c1\": 20246,\n    \"\\u2581\\u13a0\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13aa\": 20247,\n    \"\\u2581\\u13a4\\u13b5\\u13ef\\u13cd\\u13da\\u13c1\": 20248,\n    \"\\u2581\\u13e7\\u13d7\\u13b4\": 20249,\n    \"\\u2581\\u13d5\\u13e3\\u13c1\\u13b6\\u13db\": 20250,\n    \"\\u13d3\\u13e6\\u13af\\u13cd\\u13db\": 20251,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13c6\\u13c2\\u13aa\\u13cd\\u13a8\": 20252,\n    \"\\u13d3\\u13c2\\u13be\\u13cf\\u13c2\": 20253,\n    \"\\u13d3\\u13b4\\u13c2\\u13cd\\u13a8\": 20254,\n    \"\\u13da\\u13aa\\u13d3\\u13c1\\u13af\": 20255,\n    \"\\u2581\\u13e7\\u13c2\\u13b6\\u13ce\": 20256,\n    \"\\u2581\\u13cd\\u13d4\\u13f2\": 20257,\n    \"\\u2581\\u13eb\\u13ac\\u13e9\\u13d8\\u13c5\": 20258,\n    \"\\u2581\\u13a1\\u13e6\\u13ce\\u13b2\": 20259,\n    \"\\u13cd\\u13a9\\u13f2\\u13ae\\u13b8\\u13ad\": 20260,\n    \"\\u2581\\u13da\\u13ea\\u13b3\\u13cd\\u13d4\\u13c1\": 20261,\n    \"\\u2581\\u13a0\\u13c2\\u13cd\\u13a6\\u13c5\": 20262,\n    \"\\u13c2\\u13e5\\u13ea\\u13cd\\u13ac\": 20263,\n    \"\\u13a4\\u13b5\\u13e8\\u13d3\\u13c6\\u13d3\": 20264,\n    \"\\u13d7\\u13a8\\u13ab\\u13aa\\u13d3\\u13c1\\u13d7\": 20265,\n    \"\\u13c4\\u13e9\\u13a5\": 20266,\n    \"\\u13ed\\u13b7\\u13e4\\u13b4\": 20267,\n    \"\\u13a4\\u13f2\\u13b1\\u13ce\\u13ae\\u13cd\\u13d7\": 20268,\n    \"\\u2581\\u13f3\\u13be\\u13db\\u13a6\": 20269,\n    \"\\u13a2\\u13ef\\u13d3\\u13c5\\u13d6\\u13d7\": 20270,\n    \"\\u2581\\u13da\\u13c2\\u13ef\\u13d9\": 20271,\n    \"\\u13a0\\u13c2\\u13a6\\u13f2\\u13df\": 20272,\n    \"\\u13cd\\u13c8\\u13cd\\u13d4\": 20273,\n    \"\\u13a4\\u13d2\\u13c2\\u13b4\\u13a2\": 20274,\n    \"\\u13a6\\u13b6\\u13d0\\u13b2\\u13cd\": 20275,\n    \"\\u13a0\\u13a6\\u13d4\\u13ae\": 20276,\n    \"\\u2581\\u13e7\\u13eb\\u13ce\": 20277,\n    \"\\u13da\\u13e6\\u13af\\u13cd\\u13db\": 20278,\n    \"\\u13da\\u13ed\\u13aa\\u13d4\\u13c5\": 20279,\n    \"\\u13a4\\u13be\\u13db\\u13c1\\u13b8\\u13d7\": 20280,\n    \"\\u2581\\u13a0\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13ce\\u13ac\": 20281,\n    \"\\u13ef\\u13d6\\u13be\": 20282,\n    \"\\u13e5\\u13d9\\u13c1\": 20283,\n    \"\\u13a7\\u13c3\\u13c1\": 20284,\n    \"\\u13a2\\u13e7\\u13d5\\u13d8\\u13f4\\u13db\": 20285,\n    \"\\u13a5\\u13e5\\u13aa\\u13a5\\u13a9\": 20286,\n    \"\\u13a4\\u13c2\\u13b7\\u13e8\": 20287,\n    \"\\u13a3\\u13a6\\u13db\\u13a6\\u13c5\": 20288,\n    \"\\u13a3\\u13a9\\u13f4\": 20289,\n    \"\\u13f2\\u13b1\\u13ce\\u13b8\": 20290,\n    \"\\u13a4\\u13a9\\u13e8\\u13c5\": 20291,\n    \"\\u13d7\\u13e3\\u13d8\\u13c4\\u13a6\": 20292,\n    \"\\u13a4\\u13ec\\u13ce\\u13b4\\u13a2\": 20293,\n    \"\\u2581\\u13d5\\u13a8\\u13e5\\u13be\\u13dd\\u13a5\": 20294,\n    \"\\u2581\\u13d3\\u13c6\\u13d5\": 20295,\n    \"\\u13a0\\u13b9\\u13b4\\u13a9\": 20296,\n    \"\\u13c0\": 20297,\n    \"\\u13a0\\u13c6\\u13d3\\u13c5\\u13d9\\u13a9\": 20298,\n    \"\\u13d7\\u13e3\\u13a7\\u13c5\\u13a6\": 20299,\n    \"\\u13a8\\u13e5\\u13c5\\u13d2\\u13af\": 20300,\n    \"\\u13a8\\u13e5\\u13c5\": 20301,\n    \"\\u13a0\\u13c2\\u13a9\\u13cf\\u13d9\\u13af\": 20302,\n    \"\\u13e6\\u13de\": 20303,\n    \"\\u2581\\u13a5\\u13c6\\u13b8\\u13a5\": 20304,\n    \"\\u13a1\\u13d8\\u13f4\": 20305,\n    \"\\u13a6\\u13f0\\u13cc\\u13d7\": 20306,\n    \"\\u13a2\\u13e5\\u13ef\\u13eb\\u13cd\\u13a8\\u13cd\\u13d7\": 20307,\n    \"\\u13a4\\u13be\\u13d9\\u13b4\\u13b0\\u13d2\": 20308,\n    \"\\u2581\\u13a4\\u13cd\\u13aa\\u13c2\\u13b4\": 20309,\n    \"\\u13a8\\u13e5\\u13d9\\u13b5\\u13cd\\u13d7\": 20310,\n    \"\\u13a0\\u13c2\\u13a8\\u13be\\u13c2\": 20311,\n    \"\\u13d5\\u13b9\\u13cd\\u13a6\": 20312,\n    \"\\u13d5\\u13a8\\u13cc\\u13d7\\u13d2\": 20313,\n    \"\\u13a9\\u13be\\u13b5\\u13a2\": 20314,\n    \"\\u13a0\\u13eb\\u13c4\\u13e3\": 20315,\n    \"\\u13e7\\u13cd\\u13c6\\u13c5\\u13be\": 20316,\n    \"\\u13a8\\u13e5\\u13b5\\u13a5\\u13c2\": 20317,\n    \"\\u13e7\\u13be\\u13a9\\u13b8\\u13d7\": 20318,\n    \"\\u13d7\\u13cd\\u13d3\\u13d3\\u13c5\\u13df\": 20319,\n    \"\\u13a6\\u13c1\\u13cc\\u13a2\": 20320,\n    \"\\u13cc\\u13aa\\u13c2\\u13a8\": 20321,\n    \"\\u13a4\\u13eb\\u13ef\": 20322,\n    \"\\u13d3\\u13d3\\u13bf\\u13e9\\u13cd\\u13db\": 20323,\n    \"\\u13e3\\u13d3\\u13c5\\u13d9\": 20324,\n    \"\\u13a4\\u13cd\\u13c6\\u13b8\\u13b2\": 20325,\n    \"\\u13a0\\u13c6\\u13db\\u13a6\\u13c5\\u13a9\": 20326,\n    \"\\u13d3\\u13ac\\u13d4\\u13c2\": 20327,\n    \"\\u13e7\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\\u13f1\": 20328,\n    \"\\u13a0\\u13c8\\u13bb\\u13b4\\u13a9\": 20329,\n    \"\\u13a4\\u13a6\\u13ce\\u13c2\": 20330,\n    \"\\u13be\\u13d3\\u13a2\\u13c5\\u13ce\": 20331,\n    \"\\u13c4\\u13b5\\u13cd\\u13d4\\u13c2\\u13d9\\u13b8\": 20332,\n    \"\\u13d3\\u13c6\\u13b4\\u13b7\": 20333,\n    \"\\u13a4\\u13ea\\u13c5\\u13a9\": 20334,\n    \"\\u13c2\\u13da\\u13ea\\u13ce\\u13b4\": 20335,\n    \"\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\": 20336,\n    \"\\u2581\\u13a8\\u13e5\\u13db\\u13d4\\u13c1\": 20337,\n    \"\\u13ad\\u13ef\\u13db\": 20338,\n    \"\\u13a2\\u13ef\\u13db\\u13c1\\u13af\": 20339,\n    \"\\u13a4\\u13a6\\u13b5\\u13cd\\u13d7\": 20340,\n    \"\\u13a4\\u13be\\u13e4\\u13b5\\u13aa\\u13af\": 20341,\n    \"\\u13a6\\u13d3\\u13b7\\u13aa\\u13d7\": 20342,\n    \"\\u13a0\\u13d9\\u13b4\\u13b0\\u13cd\\u13a9\": 20343,\n    \"\\u13c4\\u13be\\u13cd\\u13db\": 20344,\n    \"\\u13a0\\u13c2\\u13f4\\u13eb\\u13ef\": 20345,\n    \"\\u13a0\\u13d5\\u13b3\": 20346,\n    \"\\u13a4\\u13c2\\u13c3\\u13d5\\u13be\": 20347,\n    \"\\u13c5\\u13e9\\u13d3\\u13b4\": 20348,\n    \"\\u2581\\u13c5\\u13e7\\u13ea\\u13ce\": 20349,\n    \"\\u13a4\\u13be\\u13e4\\u13b5\\u13a6\": 20350,\n    \"\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\": 20351,\n    \"\\u2581\\u13a0\\u13c6\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\": 20352,\n    \"\\u13a2\\u13ef\\u13c2\\u13db\": 20353,\n    \"\\u13ce\\u13ae\\u13b2\": 20354,\n    \"\\u13e7\\u13be\\u13d3\\u13b4\\u13c5\\u13db\": 20355,\n    \"\\u2581\\u13d5\\u13ac\\u13e9\\u13d8\\u13c3\\u13ae\\u13b4\": 20356,\n    \"\\u2581\\u13eb\\u13a4\\u13c2\\u13b6\\u13ce\": 20357,\n    \"\\u2581\\u13e7\\u13c1\\u13e2\\u13d4\\u13c5\\u13d2\": 20358,\n    \"\\u13e7\\u13ac\\u13e9\": 20359,\n    \"\\u2581\\u13d3\\u13aa\\u13c4\\u13b4\": 20360,\n    \"\\u13a2\\u13e3\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 20361,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13d2\\u13d2\": 20362,\n    \"\\u2581\\u13da\\u13c5\\u13e9\\u13c1\": 20363,\n    \"\\u13a4\\u13c2\\u13a9\\u13ce\": 20364,\n    \"\\u13a4\\u13f2\\u13b1\\u13ce\\u13a2\": 20365,\n    \"\\u13d7\\u13c7\\u13e5\": 20366,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d4\\u13d5\": 20367,\n    \"\\u13d5\\u13e1\\u13ac\\u13a2\": 20368,\n    \"\\u13c5\\u13d3\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13ac\\u13a9\": 20369,\n    \"\\u13a7\\u13c5\\u13c2\\u13cd\\u13a9\": 20370,\n    \"\\u13a0\\u13c6\\u13d3\\u13c5\\u13d6\\u13d7\": 20371,\n    \"\\u13c2\\u13e8\\u13ea\\u13ce\\u13ad\": 20372,\n    \"\\u2581\\u13d3\\u13d0\\u13f4\": 20373,\n    \"\\u13a6\\u13f4\\u13af\\u13d3\": 20374,\n    \"\\u13d7\\u13a6\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13d7\": 20375,\n    \"\\u13cd\\u13da\\u13b6\": 20376,\n    \"\\u2581\\u13a1\\u13e4\\u13f2\\u13c5\": 20377,\n    \"\\u13d7\\u13ef\\u13e0\": 20378,\n    \"\\u13a0\\u13c2\\u13cd\\u13a6\\u13ef\": 20379,\n    \"\\u13d3\\u13a9\\u13b3\\u13a9\": 20380,\n    \"\\u13a4\\u13a6\\u13be\\u13cd\\u13d3\": 20381,\n    \"\\u13a4\\u13e9\\u13d9\\u13af\\u13f4\\u13d3\": 20382,\n    \"\\u2581\\u13a4\\u13b4\\u13f4\\u13ce\": 20383,\n    \"\\u13a9\\u13b3\\u13c8\\u13f4\": 20384,\n    \"\\u13a4\\u13c3\\u13d5\\u13be\": 20385,\n    \"\\u13bf\\u13db\\u13c1\\u13b2\": 20386,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13c2\\u13c6\": 20387,\n    \"\\u13a4\\u13c1\\u13e2\\u13d4\\u13c5\\u13af\": 20388,\n    \"\\u13c5\\u13db\\u13a9\\u13c5\\u13cf\\u13db\": 20389,\n    \"\\u13a8\\u13e5\\u13cd\\u13da\\u13ae\": 20390,\n    \"\\u13a2\\u13e3\\u13db\\u13c1\\u13d7\\u13f1\": 20391,\n    \"\\u2581\\u13da\\u13ea\\u13e3\\u13a6\\u13b8\\u13ae\": 20392,\n    \"\\u13d3\\u13f3\\u13d3\\u13b4\\u13c5\\u13d3\": 20393,\n    \"\\u13c5\\u13db\\u13db\\u13c1\\u13b5\": 20394,\n    \"\\u13a6\\u13c6\\u13d8\": 20395,\n    \"\\u2581\\u13d3\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\\u13cd\\u13a8\": 20396,\n    \"\\u13a0\\u13c2\\u13e7\\u13cf\": 20397,\n    \"\\u2581\\u13a6\\u13f3\\u13e9\": 20398,\n    \"\\u13f0\\u13b6\\u13a2\\u13cd\": 20399,\n    \"\\u13d7\\u13c5\\u13c3\\u13db\": 20400,\n    \"\\u13a2\\u13f3\\u13b5\\u13cd\\u13d4\\u13c5\\u13af\": 20401,\n    \"\\u13a4\\u13be\\u13c2\\u13a9\\u13d2\": 20402,\n    \"\\u13a0\\u13a9\\u13c5\\u13cf\\u13d9\\u13af\": 20403,\n    \"\\u2581\\u13a4\\u13ea\\u13d9\\u13b5\\u13e4\": 20404,\n    \"\\u2581\\u13eb\\u13a4\\u13b6\\u13ce\": 20405,\n    \"\\u13d3\\u13aa\\u13c4\\u13b6\": 20406,\n    \"\\u13d9\\u13f1\\u13d7\\u13e2\": 20407,\n    \"\\u2581\\u13a4\\u13cd\\u13a9\\u13d3\\u13ce\": 20408,\n    \"\\u2581\\u13d3\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\": 20409,\n    \"\\u2581\\u13ed\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\": 20410,\n    \"\\u13a4\\u13b5\\u13ae\\u13b5\\u13e4\": 20411,\n    \"\\u13d7\\u13aa\\u13ea\\u13b3\\u13c5\": 20412,\n    \"\\u13a4\\u13a6\\u13d4\": 20413,\n    \"\\u13a0\\u13c2\\u13a6\\u13d8\\u13ef\": 20414,\n    \"\\u13a2\\u13f3\\u13c5\\u13c1\\u13d7\\u13f1\": 20415,\n    \"\\u2581\\u13d7\\u13a7\\u13be\\u13e9\": 20416,\n    \"\\u2581\\u13f1\\u13a6\\u13d3\\u13c5\": 20417,\n    \"\\u13a4\\u13f0\\u13b8\\u13db\\u13a2\": 20418,\n    \"\\u2581\\u13d3\\u13cd\\u13da\\u13b2\": 20419,\n    \"\\u13a4\\u13b5\\u13cd\\u13d5\\u13b8\": 20420,\n    \"\\u2581\\u13e3\\u13c3\\u13ce\\u13b0\": 20421,\n    \"\\u13a4\\u13b7\\u13af\\u13cd\\u13d7\\u13f1\": 20422,\n    \"\\u13a2\\u13f3\\u13b5\\u13cd\\u13d9\\u13d7\\u13f1\": 20423,\n    \"\\u13a6\\u13d2\\u13cd\\u13d9\\u13a2\": 20424,\n    \"\\u2581\\u13ac\\u13f4\\u13d7\\u13cd\\u13ac\": 20425,\n    \"\\u2581\\u13a3\\u13a6\\u13da\\u13b5\": 20426,\n    \"\\u13a6\\u13d5\\u13f2\\u13c5\": 20427,\n    \"\\u13e7\\u13c2\\u13e2\\u13a9\": 20428,\n    \"\\u2581\\u13c2\\u13d3\\u13cb\": 20429,\n    \"\\u2581\\u13da\\u13b5\\u13cd\\u13da\\u13a2\\u13ce\": 20430,\n    \"\\u2581\\u13da\\u13d8\\u13c3\\u13ae\\u13b4\": 20431,\n    \"\\u2581\\u13da\\u13c3\\u13ea\\u13b8\": 20432,\n    \"\\u2581\\u13da\\u13da\\u13d3\\u13db\": 20433,\n    \"\\u13a0\\u13f2\\u13b1\\u13d2\": 20434,\n    \"\\u13e7\\u13be\\u13c1\\u13b6\\u13d7\": 20435,\n    \"\\u13aa\\u13af\\u13f3\\u13b2\\u13cd\\u13a9\": 20436,\n    \"\\u13e5\\u13dd\\u13c1\": 20437,\n    \"\\u13a4\\u13b5\\u13cf\\u13a9\": 20438,\n    \"\\u2581\\u13c2\\u13e3\\u13db\\u13bf\\u13d5\\u13ac\": 20439,\n    \"\\u13e6\\u13d4\\u13c5\": 20440,\n    \"\\u2581\\u13a4\\u13c2\\u13d0\\u13c5\\u13e4\\u13b4\": 20441,\n    \"\\u13a2\\u13aa\\u13af\\u13db\": 20442,\n    \"\\u13c4\\u13e6\": 20443,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13c1\\u13df\\u13f4\\u13ce\\u13ac\": 20444,\n    \"\\u13b5\\u13ac\\u13ad\\u13b7\": 20445,\n    \"\\u2581\\u13d9\\u13d7\\u13e3\\u13d3\\u13c5\\u13db\": 20446,\n    \"\\u13ac\\u13cd\\u13d3\\u13e9\\u13db\\u13cd\\u13d7\": 20447,\n    \"\\u2581\\u13a4\\u13be\\u13c1\\u13e2\\u13d4\\u13c5\\u13d2\": 20448,\n    \"\\u13e5\\u13b7\\u13cf\\u13b5\\u13bb\": 20449,\n    \"\\u13a4\\u13c1\\u13c5\\u13cd\\u13d7\": 20450,\n    \"\\u13a4\\u13c2\\u13f4\\u13ce\": 20451,\n    \"\\u13a4\\u13da\\u13b8\\u13d7\": 20452,\n    \"\\u13ea\\u13b3\\u13cf\": 20453,\n    \"\\u13d7\\u13a8\\u13eb\": 20454,\n    \"\\u2581\\u13ed\\u13a9\\u13b6\\u13eb\": 20455,\n    \"\\u13e9\\u13d8\\u13cd\\u13a8\": 20456,\n    \"\\u2581\\u13c2\\u13da\\u13be\\u13d3\\u13ea\\u13ce\\u13b4\": 20457,\n    \"\\u13b4\\u13eb\\u13cd\\u13d9\": 20458,\n    \"\\u2581\\u13a0\\u13a6\\u13ec\\u13a1\": 20459,\n    \"\\u13a0\\u13c2\\u13aa\\u13e9\\u13d8\\u13cd\\u13ac\": 20460,\n    \"\\u13da\\u13c2\\u13c2\\u13c6\\u13d8\": 20461,\n    \"\\u13f1\\u13c2\\u13ea\\u13cd\\u13a8\\u13cd\\u13d7\": 20462,\n    \"\\u13ac\\u13e9\\u13a6\\u13d8\\u13ef\": 20463,\n    \"\\u13a4\\u13b3\\u13cf\\u13d5\\u13c2\": 20464,\n    \"\\u13af\\u13cd\\u13d3\\u13c1\\u13b2\": 20465,\n    \"\\u2581\\u13c2\\u13a6\\u13ea\\u13cd\\u13a8\": 20466,\n    \"\\u13a6\\u13c2\\u13a6\\u13d4\": 20467,\n    \"\\u13e7\\u13be\\u13b5\\u13c2\\u13a9\\u13db\": 20468,\n    \"\\u13cd\\u13d3\\u13e9\\u13d5\\u13aa\": 20469,\n    \"\\u13a0\\u13c6\\u13b5\\u13cf\": 20470,\n    \"\\u13be\\u13d3\\u13c1\\u13df\\u13f4\\u13cf\\u13d2\": 20471,\n    \"\\u2581\\u13d5\\u13a6\\u13be\\u13c4\\u13aa\\u13eb\": 20472,\n    \"\\u13a6\\u13c4\\u13b8\\u13d2\": 20473,\n    \"\\u13d7\\u13d5\\u13f2\\u13d7\": 20474,\n    \"\\u13af\\u13f4\\u13ce\": 20475,\n    \"\\u13c2\\u13ec\\u13c2\\u13cd\\u13a8\\u13cd\\u13d7\": 20476,\n    \"\\u13a4\\u13df\\u13cd\\u13d3\": 20477,\n    \"\\u13c3\\u13e5\\u13a5\": 20478,\n    \"\\u13a4\\u13aa\\u13e9\\u13db\\u13d7\\u13f1\": 20479,\n    \"\\u13d7\\u13e4\\u13c5\\u13d2\": 20480,\n    \"\\u13a7\\u13c3\\u13ae\\u13cd\\u13a9\": 20481,\n    \"\\u13e5\\u13a7\\u13cd\\u13a8\\u13c2\": 20482,\n    \"\\u13a0\\u13b9\\u13f0\\u13b5\": 20483,\n    \"\\u13da\\u13e0\\u13f1\\u13b4\\u13a2\": 20484,\n    \"\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b2\": 20485,\n    \"\\u13e6\\u13a3\\u13ce\": 20486,\n    \"\\u13a4\\u13be\\u13d3\\u13e1\\u13ac\": 20487,\n    \"\\u2581\\u13a4\\u13b5\\u13db\\u13d4\\u13c1\": 20488,\n    \"\\u2581\\u13ea\\u13d3\\u13d3\": 20489,\n    \"\\u2581\\u13a4\\u13d3\\u13c5\\u13d3\\u13d5\": 20490,\n    \"\\u13aa\\u13b2\\u13cd\\u13d4\": 20491,\n    \"\\u2581\\u13a4\\u13b5\\u13e6\\u13d4\\u13c1\": 20492,\n    \"\\u13cd\\u13da\\u13b6\\u13d4\\u13c5\": 20493,\n    \"\\u13da\\u13aa\\u13b2\": 20494,\n    \"\\u2581\\u13e3\\u13a2\\u13ce\": 20495,\n    \"\\u13e7\\u13c2\\u13f4\": 20496,\n    \"\\u13a7\\u13f4\\u13e4\": 20497,\n    \"\\u13d5\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\": 20498,\n    \"\\u13a4\\u13ef\\u13c5\\u13af\": 20499,\n    \"\\u2581\\u13f3\\u13be\\u13df\": 20500,\n    \"\\u2581\\u13c1\\u13ea\\u13ce\\u13b4\": 20501,\n    \"\\u13e3\\u13b5\\u13cd\\u13d3\\u13f4\\u13be\\u13c1\": 20502,\n    \"\\u13b5\\u13e6\\u13d4\\u13c1\\u13a2\": 20503,\n    \"\\u13c5\\u13ac\\u13e9\\u13ea\\u13ce\\u13b8\\u13a9\": 20504,\n    \"\\u2581\\u13ac\\u13ec\\u13af\\u13f3\\u13c5\": 20505,\n    \"\\u2581\\u13a0\\u13d3\\u13f4\\u13d7\": 20506,\n    \"\\u13c3\\u13b4\\u13cd\\u13c9\": 20507,\n    \"\\u13a4\\u13e3\\u13d8\\u13c2\": 20508,\n    \"\\u13c2\\u13d5\\u13e8\": 20509,\n    \"\\u2581\\u13a2\\u13e8\\u13c1\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 20510,\n    \"\\u13a4\\u13d3\\u13c5\\u13d8\": 20511,\n    \"\\u13a4\\u13a9\\u13ac\": 20512,\n    \"\\u13a6\\u13d9\\u13a5\\u13af\": 20513,\n    \"\\u13da\\u13d3\\u13d6\\u13cd\\u13d7\": 20514,\n    \"\\u2581\\u13a0\\u13e5\\u13e9\\u13db\\u13a1\\u13b8\": 20515,\n    \"\\u13f2\\u13df\\u13a8\": 20516,\n    \"\\u2581\\u13e7\\u13be\\u13c4\\u13aa\\u13e4\": 20517,\n    \"\\u13ac\\u13be\\u13ec\": 20518,\n    \"\\u13be\\u13c1\\u13b3\\u13d7\\u13cd\": 20519,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\": 20520,\n    \"\\u2581\\u13a4\\u13c4\\u13d6\\u13d2\": 20521,\n    \"\\u2581\\u13da\\u13c5\\u13cd\\u13d3\\u13d5\\u13b8\": 20522,\n    \"\\u13ea\\u13b7\\u13c1\": 20523,\n    \"\\u2581\\u13a0\\u13cd\\u13a9\\u13d7\\u13cd\\u13a8\": 20524,\n    \"\\u2581\\u13ac\\u13e9\\u13e1\\u13d7\\u13cd\\u13ac\": 20525,\n    \"\\u13e9\\u13f3\\u13e4\\u13b4\": 20526,\n    \"\\u13b3\\u13a8\\u13ef\\u13db\\u13e4\\u13a2\": 20527,\n    \"\\u13cf\\u13db\\u13c2\\u13b8\": 20528,\n    \"\\u13d5\\u13b6\\u13b0\\u13ce\": 20529,\n    \"\\u2581\\u13a0\\u13c2\\u13ef\\u13d9\\u13af\\u13b2\": 20530,\n    \"\\u13d3\\u13cd\\u13a9\\u13c1\\u13b5\": 20531,\n    \"\\u13d3\\u13df\\u13c3\\u13ae\": 20532,\n    \"\\u13e9\\u13db\\u13a1\\u13b4\": 20533,\n    \"\\u2581\\u13a0\\u13ab\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\": 20534,\n    \"\\u13e9\\u13d7\\u13ce\": 20535,\n    \"\\u2581\\u13da\\u13ed\\u13d3\\u13d4\": 20536,\n    \"\\u13d3\\u13c6\\u13d9\\u13a5\": 20537,\n    \"\\u2581\\u13ed\\u13d8\\u13c5\\u13cd\\u13d4\\u13c5\": 20538,\n    \"\\u13ec\\u13ea\\u13b3\\u13c5\": 20539,\n    \"\\u13b5\\u13cd\\u13d3\\u13d7\\u13cd\\u13d7\": 20540,\n    \"\\u13d3\\u13d3\\u13b6\\u13c2\": 20541,\n    \"\\u13ac\\u13aa\\u13e9\\u13d8\": 20542,\n    \"\\u2581\\u13d0\\u13c8\\u13b5\\u13d7\\u13a6\\u13b5\\u13a0\\u13c5\": 20543,\n    \"\\u2581\\u13a2\\u13e8\\u13a8\\u13f3\\u13d2\": 20544,\n    \"\\u13a9\\u13cd\\u13a6\\u13c5\\u13e8\": 20545,\n    \"\\u13c2\\u13c6\\u13d8\\u13cd\\u13d7\": 20546,\n    \"\\u13c4\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\\u13a9\": 20547,\n    \"\\u2581\\u13c3\\u13a9\\u13c5\\u13c1\\u13b8\": 20548,\n    \"\\u13a6\\u13d3\\u13c5\\u13d4\\u13e9\\u13d5\\u13aa\": 20549,\n    \"\\u13c2\\u13a7\\u13bf\\u13e9\": 20550,\n    \"\\u13a9\\u13cd\\u13c6\\u13b8\\u13a1\": 20551,\n    \"\\u13e9\\u13d7\\u13d9\\u13ae\\u13cd\\u13d7\": 20552,\n    \"\\u2581\\u13a0\\u13c4\\u13af\\u13cd\\u13d7\\u13cd\": 20553,\n    \"\\u13d3\\u13c6\\u13b4\\u13b3\": 20554,\n    \"\\u13d1\\u13b5\\u13cd\\u13ac\": 20555,\n    \"\\u13aa\\u13ea\\u13b3\\u13c5\\u13af\": 20556,\n    \"\\u13e3\\u13d5\\u13b0\\u13af\": 20557,\n    \"\\u2581\\u13a4\\u13d3\\u13f1\\u13b8\": 20558,\n    \"\\u13ad\\u13b5\\u13ae\\u13b5\\u13a9\": 20559,\n    \"\\u2581\\u13c2\\u13ac\\u13e9\\u13db\\u13c1\\u13b4\": 20560,\n    \"\\u13c5\\u13a8\\u13eb\": 20561,\n    \"\\u2581\\u13ac\\u13e9\\u13c1\\u13c4\\u13b3\\u13cd\": 20562,\n    \"\\u2581\\u13d3\\u13c2\\u13c4\\u13d9\\u13ac\": 20563,\n    \"\\u13d3\\u13c1\\u13aa\\u13f4\\u13d3\": 20564,\n    \"\\u13b5\\u13b6\\u13b2\\u13cd\\u13a9\": 20565,\n    \"\\u2581\\u13a0\\u13d3\\u13f4\\u13cd\\u13d4\\u13a9\\u13cd\": 20566,\n    \"\\u2581\\u13a4\\u13c1\\u13d0\\u13a0\\u13d2\": 20567,\n    \"\\u13a4\\u13e1\\u13d7\\u13cd\\u13a9\": 20568,\n    \"\\u13b5\\u13cd\\u13da\\u13a2\": 20569,\n    \"\\u13c5\\u13aa\\u13b3\\u13db\": 20570,\n    \"\\u13cc\\u13ef\\u13cd\\u13d7\\u13d5\\u13a9\": 20571,\n    \"\\u13e9\\u13e9\\u13d9\\u13a3\": 20572,\n    \"\\u13be\\u13a6\\u13ce\\u13cd\\u13db\": 20573,\n    \"\\u13a9\\u13cd\\u13d9\\u13a1\": 20574,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13c4\\u13b8\": 20575,\n    \"\\u2581\\u13a4\\u13d7\\u13e9\\u13d2\": 20576,\n    \"\\u13aa\\u13af\\u13f3\\u13d7\\u13cd\\u13a9\": 20577,\n    \"\\u13ac\\u13a5\\u13cd\\u13a9\": 20578,\n    \"\\u13a6\\u13f4\\u13b3\\u13e5\\u13b6\\u13db\": 20579,\n    \"\\u13be\\u13b5\\u13c3\\u13ae\\u13d4\\u13c1\": 20580,\n    \"\\u13e5\\u13a7\\u13af\\u13f4\": 20581,\n    \"\\u13a0\\u13e5\\u13c1\": 20582,\n    \"\\u13c2\\u13f2\\u13af\\u13cd\\u13d4\": 20583,\n    \"\\u2581\\u13db\\u13d3\\u13b4\\u13b2\\u13cd\\u13ac\": 20584,\n    \"\\u2581\\u13a2\\u13ac\\u13e9\\u13c2\\u13a9\": 20585,\n    \"\\u13a3\\u13a9\\u13b7\": 20586,\n    \"\\u2581\\u13d5\\u13ad\\u13d5\\u13f2\\u13b2\\u13cd\\u13ac\": 20587,\n    \"\\u13c4\\u13ec\\u13cd\\u13db\\u13a9\": 20588,\n    \"\\u2581\\u13e3\\u13cd\\u13a6\\u13b8\": 20589,\n    \"\\u13a4\\u13cd\\u13a6\\u13c3\\u13b5\": 20590,\n    \"\\u2581\\u13a4\\u13be\\u13c4\\u13aa\\u13e4\": 20591,\n    \"\\u13a6\\u13c5\\u13cc\\u13d7\": 20592,\n    \"\\u2581\\u13c2\\u13da\\u13c2\\u13ea\\u13ce\\u13b8\": 20593,\n    \"\\u2581\\u13a4\\u13c2\\u13b7\\u13af\\u13cd\": 20594,\n    \"\\u13cd\\u13d4\\u13c2\\u13d9\\u13b2\": 20595,\n    \"\\u13be\\u13c5\\u13d3\\u13d7\\u13cd\\u13a8\": 20596,\n    \"\\u2581\\u13a6\\u13d3\\u13d9\\u13b5\\u13cd\\u13d7\\u13cd\": 20597,\n    \"\\u13c2\\u13f4\\u13af\\u13b0\": 20598,\n    \"\\u13a0\\u13eb\\u13c5\": 20599,\n    \"\\u2581\\u13b4\\u13b9\": 20600,\n    \"\\u2581\\u13a4\\u13e1\\u13d7\\u13cd\": 20601,\n    \"\\u13b5\\u13ae\\u13b5\\u13e4\\u13b0\\u13a2\": 20602,\n    \"\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13b2\": 20603,\n    \"\\u13cd\\u13c6\\u13da\\u13b8\": 20604,\n    \"\\u13be\\u13d3\\u13c3\\u13ae\\u13b5\\u13d9\\u13af\": 20605,\n    \"\\u2581\\u13f1\\u13e5\\u13e9\\u13d8\\u13cd\\u13aa\": 20606,\n    \"\\u13da\\u13a2\\u13cd\\u13d4\\u13c1\": 20607,\n    \"\\u13a6\\u13ce\\u13d9\": 20608,\n    \"\\u13df\\u13c5\\u13e8\": 20609,\n    \"\\u13d3\\u13aa\\u13e9\\u13d8\": 20610,\n    \"\\u2581\\u13d7\\u13a6\\u13c3\\u13b8\\u13d7\\u13cd\": 20611,\n    \"\\u13d7\\u13a6\\u13b4\\u13f2\\u13e8\": 20612,\n    \"\\u13be\\u13b4\\u13f2\\u13a5\": 20613,\n    \"\\u13b5\\u13cd\\u13ab\\u13ee\": 20614,\n    \"\\u13ef\\u13cd\\u13da\\u13ce\\u13a2\": 20615,\n    \"\\u13cc\\u13ef\\u13cd\\u13d7\": 20616,\n    \"\\u2581\\u13a2\\u13e7\\u13c5\\u13c1\": 20617,\n    \"\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\\u13d9\": 20618,\n    \"\\u13d4\\u13b8\\u13a9\\u13d3\": 20619,\n    \"\\u13e6\\u13e8\": 20620,\n    \"\\u2581\\u13c5\\u13ac\\u13e9\\u13ea\\u13ce\\u13b8\": 20621,\n    \"\\u2581\\u13a1\\u13e5\\u13ef\\u13c5\": 20622,\n    \"\\u2581\\u13d1\\u13be\\u13d3\\u13e1\": 20623,\n    \"\\u2581\\u13ac\\u13e9\\u13dc\": 20624,\n    \"\\u2581\\u13d7\\u13c4\\u13aa\\u13d7\\u13cd\": 20625,\n    \"\\u2581\\u13a2\\u13e3\\u13ab\\u13f4\": 20626,\n    \"\\u13be\\u13d3\\u13c5\\u13d3\\u13d5\\u13a2\": 20627,\n    \"\\u13c2\\u13c2\\u13ac\\u13ce\\u13b2\": 20628,\n    \"\\u2581\\u13a8\\u13e5\\u13c3\\u13ae\\u13cd\\u13ac\": 20629,\n    \"\\u2581\\u13a6\\u13b7\\u13aa\": 20630,\n    \"\\u13c4\\u13a9\\u13e3\\u13c1\": 20631,\n    \"\\u2581\\u13f1\\u13a6\\u13be\\u13c4\\u13aa\": 20632,\n    \"\\u2581\\u13da\\u13c2\\u13b5\\u13ec\\u13e4\": 20633,\n    \"\\u13e3\\u13db\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\": 20634,\n    \"\\u2581\\u13d5\\u13a6\\u13da\\u13d3\\u13d5\\u13eb\\u13d2\": 20635,\n    \"\\u13be\\u13b5\\u13ae\\u13b5\\u13a8\\u13a2\": 20636,\n    \"\\u13ea\\u13d9\\u13b5\\u13e4\\u13a2\": 20637,\n    \"\\u13e5\\u13cc\\u13b3\\u13d9\": 20638,\n    \"\\u13cd\\u13a9\\u13be\\u13be\\u13c2\": 20639,\n    \"\\u2581\\u13f1\\u13e5\\u13e9\\u13d8\": 20640,\n    \"\\u13d0\\u13e2\\u13a2\\u13cd\\u13d7\\u13cd\\u13ac\\u13a2\": 20641,\n    \"\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\\u13b8\": 20642,\n    \"\\u13d7\\u13e3\\u13c1\\u13b6\": 20643,\n    \"\\u2581\\u13ef\\u13c6\\u13db\\u13c1\": 20644,\n    \"\\u2581\\u13a4\\u13f4\\u13d3\\u13c6\\u13b6\": 20645,\n    \"\\u13e8\\u13aa\\u13e9\\u13d8\": 20646,\n    \"\\u2581\\u13be\\u13a9\\u13ea\": 20647,\n    \"\\u13e9\\u13d9\\u13af\\u13f4\\u13d3\": 20648,\n    \"\\u13a6\\u13d3\\u13c5\\u13d6\\u13cd\\u13ac\": 20649,\n    \"\\u13a4\\u13b8\\u13d3\\u13b8\\u13a5\": 20650,\n    \"\\u2581\\u13a4\\u13d3\\u13f1\\u13b4\": 20651,\n    \"\\u2581\\u13d7\\u13df\\u13f0\\u13b5\\u13d3\\u13cd\": 20652,\n    \"\\u2581\\u13a8\\u13ac\\u13ec\\u13a3\": 20653,\n    \"\\u2581\\u13e7\\u13ec\\u13d1\\u13b4\": 20654,\n    \"\\u13e5\\u13da\\u13d9\\u13a5\": 20655,\n    \"\\u2581\\u13a3\\u13af\\u13cd\": 20656,\n    \"\\u2581\\u13c2\\u13cd\\u13a9\\u13ef\\u13db\": 20657,\n    \"\\u2581\\u13e6\\u13af\\u13f3\\u13ce\\u13cd\\u13d7\": 20658,\n    \"\\u13e0\\u13ef\\u13cd\\u13d4\\u13c5\\u13a9\": 20659,\n    \"\\u13f4\\u13cd\\u13d4\\u13c1\": 20660,\n    \"\\u2581\\u13cd\\u13ca\\u13d3\\u13b3\": 20661,\n    \"\\u13a6\\u13d0\\u13a0\\u13cd\\u13ac\": 20662,\n    \"\\u13a4\\u13e3\\u13d4\": 20663,\n    \"\\u2581\\u13a4\\u13e9\\u13e9\\u13d9\": 20664,\n    \"\\u2581\\u13d7\\u13a6\\u13ef\\u13a9\\u13cd\": 20665,\n    \"\\u2581\\u13a3\\u13a6\\u13c5\\u13c5\": 20666,\n    \"\\u2581\\u13eb\\u13a8\\u13e5\": 20667,\n    \"\\u2581\\u13ac\\u13e9\\u13c2\\u13aa\\u13e9\": 20668,\n    \"\\u13d5\\u13a6\\u13b6\\u13a8\\u13d2\": 20669,\n    \"\\u13d7\\u13dc\": 20670,\n    \"\\u13a9\\u13d3\\u13df\\u13c5\\u13ef\": 20671,\n    \"\\u2581\\u13ef\\u13c2\\u13f2\": 20672,\n    \"\\u13b5\\u13cd\\u13c6\\u13db\": 20673,\n    \"\\u13a8\\u13e5\\u13cd\\u13da\\u13b2\": 20674,\n    \"\\u13d4\\u13c2\\u13d7\\u13a8\": 20675,\n    \"\\u13a4\\u13b5\\u13ec\\u13e8\": 20676,\n    \"\\u13d8\\u13cd\\u13d5\\u13cd\\u13d7\": 20677,\n    \"\\u13df\\u13f4\\u13b2\": 20678,\n    \"\\u2581\\u13a4\\u13be\\u13a9\\u13b3\\u13eb\": 20679,\n    \"\\u2581\\u13a5\\u13aa\\u13a9\": 20680,\n    \"\\u13c2\\u13a7\\u13b5\\u13a2\\u13cd\\u13d4\": 20681,\n    \"\\u2581\\u13a4\\u13b6\\u13d0\\u13c2\": 20682,\n    \"\\u13a7\\u13c1\\u13a2\\u13cd\\u13d7\": 20683,\n    \"\\u13cd\\u13d5\\u13ef\\u13d3\": 20684,\n    \"\\u2581\\u13ac\\u13e9\\u13be\\u13f0\\u13cd\": 20685,\n    \"\\u13a5\\u13a9\\u13c1\\u13b8\": 20686,\n    \"\\u13be\\u13c2\\u13a9\\u13ce\": 20687,\n    \"\\u13a4\\u13df\\u13c2\\u13a9\\u13d3\": 20688,\n    \"\\u13d8\\u13f4\\u13db\": 20689,\n    \"\\u2581\\u13c4\\u13c2\\u13ac\\u13eb\\u13f3\\u13cc\\u13d5\": 20690,\n    \"\\u13d3\\u13c1\\u13b3\\u13c1\\u13b8\": 20691,\n    \"\\u13a6\\u13e0\\u13cf\": 20692,\n    \"\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d9\\u13d7\": 20693,\n    \"\\u13a4\\u13e0\\u13a0\": 20694,\n    \"\\u2581\\u13a8\\u13e5\\u13d0\\u13c5\\u13a2\\u13cd\\u13d4\\u13c5\": 20695,\n    \"\\u13d4\\u13b7\\u13a9\": 20696,\n    \"\\u13ec\\u13af\\u13f3\\u13d2\": 20697,\n    \"\\u2581\\u13da\\u13c2\\u13a6\\u13b5\\u13d2\": 20698,\n    \"\\u13c2\\u13c3\\u13af\\u13b5\\u13d9\\u13af\": 20699,\n    \"\\u13b3\\u13eb\\u13ce\\u13b8\\u13a9\": 20700,\n    \"\\u13ea\\u13d3\\u13cd\\u13d7\": 20701,\n    \"\\u13ac\\u13cb\\u13c1\\u13d7\": 20702,\n    \"\\u13c1\\u13c9\\u13e8\": 20703,\n    \"\\u13b5\\u13ec\\u13a2\\u13cd\\u13d7\": 20704,\n    \"\\u13a2\\u13f3\\u13db\\u13bf\\u13d5\\u13a9\": 20705,\n    \"\\u13af\\u13f3\\u13b2\\u13cd\\u13a8\\u13cd\\u13d7\": 20706,\n    \"\\u13c6\\u13ab\\u13f4\\u13a1\\u13b2\\u13a2\": 20707,\n    \"\\u2581\\u13c2\\u13a8\\u13e5\\u13b3\": 20708,\n    \"\\u13d6\\u13b5\\u13d9\\u13a9\\u13af\": 20709,\n    \"\\u13d9\\u13f1\\u13e8\": 20710,\n    \"\\u2581\\u13a4\\u13b5\\u13cd\\u13ab\\u13eb\": 20711,\n    \"\\u13b5\\u13f0\\u13a2\\u13b5\": 20712,\n    \"\\u2581\\u13d3\\u13be\\u13b5\\u13cd\\u13d3\\u13f4\\u13b2\": 20713,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\\u13b5\\u13cd\\u13d3\\u13c1\": 20714,\n    \"\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 20715,\n    \"\\u13a4\\u13e4\\u13b5\": 20716,\n    \"\\u13cc\\u13af\\u13b8\": 20717,\n    \"\\u13be\\u13a5\\u13c2\\u13a8\": 20718,\n    \"\\u2581\\u13e7\\u13d9\\u13d3\\u13c6\": 20719,\n    \"\\u13b4\\u13eb\\u13cd\\u13d9\\u13d7\": 20720,\n    \"\\u13aa\\u13cd\\u13d4\\u13f4\": 20721,\n    \"\\u2581\\u13a2\\u13ef\\u13e5\\u13b8\\u13c9\": 20722,\n    \"\\u2581\\u13e7\\u13ec\\u13ea\\u13b6\": 20723,\n    \"\\u13a7\\u13c3\\u13ae\\u13ad\": 20724,\n    \"\\u13eb\\u13da\\u13ef\\u13c5\\u13ae\": 20725,\n    \"\\u13e8\\u13c3\\u13ae\\u13ae\": 20726,\n    \"\\u13ac\\u13eb\\u13f3\\u13ce\\u13cd\\u13d7\": 20727,\n    \"\\u13ad\\u13f2\\u13db\": 20728,\n    \"\\u2581\\u13a0\\u13a9\\u13cd\\u13c6\\u13c2\": 20729,\n    \"\\u13a7\\u13b9\": 20730,\n    \"\\u2581\\u13a4\\u13d9\\u13b4\\u13b0\": 20731,\n    \"\\u13c7\\u13d5\\u13b5\": 20732,\n    \"\\u2581\\u13a2\\u13e3\\u13d3\\u13d9\\u13b5\\u13e3\": 20733,\n    \"\\u2581\\u13a8\\u13aa\\u13e2\\u13c5\": 20734,\n    \"\\u2581\\u13ed\\u13e2\\u13c1\": 20735,\n    \"\\u2581\\u13a0\\u13d3\\u13db\\u13c2\\u13d7\\u13cd\": 20736,\n    \"\\u13db\\u13db\\u13b2\\u13cd\\u13a8\\u13a2\": 20737,\n    \"\\u13b4\\u13c5\\u13d7\\u13cd\\u13aa\": 20738,\n    \"\\u13a0\\u13a6\\u13d9\\u13a5\\u13af\\u13cd\\u13d7\": 20739,\n    \"\\u13a6\\u13be\\u13cd\\u13db\": 20740,\n    \"\\u13d5\\u13e5\\u13ef\\u13c1\\u13b6\": 20741,\n    \"\\u2581\\u13f1\\u13d9\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 20742,\n    \"\\u2581\\u13f1\\u13d7\\u13e5\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\": 20743,\n    \"\\u2581\\u13f1\\u13ac\\u13f2\\u13ce\": 20744,\n    \"\\u13e5\\u13cf\\u13be\\u13d2\": 20745,\n    \"\\u2581\\u13a4\\u13e3\\u13ea\\u13d0\\u13b8\\u13cd\": 20746,\n    \"\\u13e7\\u13c5\\u13cf\\u13d3\\u13cd\\u13d7\": 20747,\n    \"\\u2581\\u13a6\\u13ac\\u13e9\\u13d0\\u13e2\\u13d5\": 20748,\n    \"\\u13d3\\u13a9\\u13f2\\u13af\\u13ce\\u13b8\": 20749,\n    \"\\u2581\\u13a4\\u13ec\\u13d1\\u13b6\\u13e8\": 20750,\n    \"\\u13c6\\u13d3\\u13ec\\u13c5\": 20751,\n    \"\\u13b5\\u13cf\\u13be\\u13af\\u13cd\": 20752,\n    \"\\u2581\\u13a4\\u13d8\\u13cd\\u13db\": 20753,\n    \"\\u2581\\u13a4\\u13a7\\u13f2\\u13db\": 20754,\n    \"\\u13f1\\u13d9\\u13a8\": 20755,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13c1\\u13b6\": 20756,\n    \"\\u13d7\\u13f2\\u13b1\\u13af\\u13ce\": 20757,\n    \"\\u13a0\\u13d8\\u13cd\\u13d3\\u13c1\": 20758,\n    \"\\u13d4\\u13b3\\u13da\": 20759,\n    \"\\u2581\\u13d3\\u13be\\u13e3\\u13c5\": 20760,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13dd\\u13be\": 20761,\n    \"\\u13ab\\u13ec\": 20762,\n    \"\\u13ef\\u13ea\\u13d0\\u13b4\": 20763,\n    \"\\u2581\\u13ac\\u13e9\\u13a8\\u13f3\": 20764,\n    \"\\u13b7\\u13e5\\u13d7\\u13d2\": 20765,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13ef\\u13b7\\u13a5\\u13cd\": 20766,\n    \"\\u13bf\\u13ec\\u13a1\": 20767,\n    \"\\u2581\\u13d7\\u13a7\\u13b5\": 20768,\n    \"\\u2581\\u13e7\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b8\": 20769,\n    \"\\u2581\\u13e3\\u13be\\u13d3\\u13be\\u13cf\\u13c2\\u13d9\": 20770,\n    \"\\u2581\\u13ad\\u13a2\\u13d2\": 20771,\n    \"\\u13b5\\u13cd\\u13db\\u13e7\\u13c5\": 20772,\n    \"\\u13c5\\u13a6\\u13b3\\u13b2\": 20773,\n    \"\\u13a7\\u13c2\\u13a9\\u13d3\": 20774,\n    \"\\u13d3\\u13c2\\u13d9\\u13a8\": 20775,\n    \"\\u13a7\\u13b5\\u13a2\\u13cd\\u13d9\\u13d7\": 20776,\n    \"\\u13d9\\u13d1\\u13b4\\u13d7\\u13f1\": 20777,\n    \"\\u2581\\u13a2\\u13cd\\u13a9\\u13f3\\u13cd\": 20778,\n    \"\\u13eb\\u13cd\\u13d9\\u13d7\\u13f1\": 20779,\n    \"\\u13d7\\u13a6\\u13b5\\u13cd\\u13d9\\u13d7\\u13cd\\u13a8\": 20780,\n    \"\\u2581\\u13e5\\u13e5\\u13aa\\u13e9\\u13d8\": 20781,\n    \"\\u2581\\u13f1\\u13a6\\u13ec\\u13c2\": 20782,\n    \"\\u2581\\u13c4\\u13cd\\u13d7\\u13d5\\u13ac\": 20783,\n    \"\\u2581\\u13f1\\u13da\\u13be\\u13d3\\u13b4\": 20784,\n    \"\\u2581\\u13a0\\u13e5\\u13d3\\u13a6\\u13b8\": 20785,\n    \"\\u2581\\u13eb\\u13d3\\u13d9\\u13b4\": 20786,\n    \"\\u13b5\\u13d6\\u13b8\\u13c5\\u13a9\": 20787,\n    \"\\u13ef\\u13ea\\u13d0\": 20788,\n    \"\\u13d7\\u13db\\u13ae\\u13a2\": 20789,\n    \"\\u2581\\u13e7\\u13d3\\u13c6\\u13d9\": 20790,\n    \"\\u2581\\u13a4\\u13d3\\u13d5\\u13f2\\u13d7\": 20791,\n    \"\\u2581\\u13e7\\u13be\\u13d3\\u13d9\\u13b5\\u13cd\\u13d3\\u13c1\\u13d7\": 20792,\n    \"\\u2581\\u13a4\\u13cd\\u13d3\\u13e9\\u13d7\\u13d3\\u13cd\\u13d7\": 20793,\n    \"\\u2581\\u13ac\\u13d4\\u13f2\\u13ce\": 20794,\n    \"\\u2581\\u13d7\\u13e7\\u13aa\\u13d9\\u13d7\": 20795,\n    \"\\u13b1\\u13cd\\u13d5\\u13ce\\u13b4\": 20796,\n    \"\\u2581\\u13a5\\u13c6\\u13b8\\u13cd\\u13d7\": 20797,\n    \"\\u13a9\\u13b5\\u13f2\\u13e4\\u13b4\": 20798,\n    \"\\u2581\\u13e3\\u13a9\\u13f0\\u13b8\": 20799,\n    \"\\u13c2\\u13c4\\u13b8\\u13c5\": 20800,\n    \"\\u13a6\\u13b6\\u13c7\": 20801,\n    \"\\u13d6\\u13b5\\u13d9\": 20802,\n    \"\\u2581\\u13e9\\u13b5\\u13f0\\u13a2\\u13b6\\u13af\": 20803,\n    \"\\u2581\\u13d7\\u13be\\u13e6\": 20804,\n    \"\\u13b5\\u13e0\\u13ef\\u13cd\\u13db\": 20805,\n    \"\\u2581\\u13d7\\u13a9\\u13f2\\u13e2\": 20806,\n    \"\\u13aa\\u13c1\\u13b6\\u13af\\u13ce\\u13d7\": 20807,\n    \"\\u2581\\u13a2\\u13e8\\u13aa\\u13e9\\u13db\": 20808,\n    \"\\u2581\\u13a6\\u13be\\u13c4\": 20809,\n    \"\\u13ac\\u13e9\\u13dd\": 20810,\n    \"\\u2581\\u13e4\\u13e5\\u13a4\\u13cd\\u13d5\\u13ce\\u13d7\": 20811,\n    \"\\u2581\\u13f1\\u13c4\\u13ea\": 20812,\n    \"\\u2581\\u13a0\\u13c6\\u13e2\\u13c8\\u13cd\\u13d7\": 20813,\n    \"\\u13ea\\u13d9\\u13b5\\u13cd\\u13d7\": 20814,\n    \"\\u2581\\u13a4\\u13c2\\u13f4\\u13d4\\u13c2\\u13af\\u13cd\\u13d7\": 20815,\n    \"\\u13e5\\u13ef\\u13db\\u13db\\u13c5\": 20816,\n    \"\\u13a9\\u13b5\\u13f2\\u13e5\": 20817,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13cd\\u13d4\": 20818,\n    \"\\u2581\\u13a2\\u13ac\\u13ea\\u13c5\": 20819,\n    \"\\u13be\\u13db\\u13db\\u13b2\\u13cd\\u13a8\": 20820,\n    \"\\u2581\\u13f1\\u13d3\\u13c2\\u13b3\\u13eb\": 20821,\n    \"\\u13be\\u13eb\\u13db\\u13b2\\u13a9\": 20822,\n    \"\\u2581\\u13a0\\u13c2\\u13d4\\u13f2\": 20823,\n    \"\\u13df\\u13f0\\u13b5\\u13d3\\u13cd\\u13d7\": 20824,\n    \"\\u13b5\\u13cd\\u13d3\\u13c1\\u13b8\\u13a2\": 20825,\n    \"\\u2581\\u13f3\\u13a8\\u13f3\": 20826,\n    \"\\u2581\\u13a4\\u13cd\\u13ab\": 20827,\n    \"\\u13f3\\u13aa\\u13d3\\u13c1\\u13b5\": 20828,\n    \"\\u13d3\\u13d5\\u13ae\\u13cd\\u13d7\": 20829,\n    \"\\u2581\\u13da\\u13b5\\u13c2\\u13c6\": 20830,\n    \"\\u2581\\u13a2\\u13e6\\u13af\\u13f3\\u13d7\": 20831,\n    \"\\u2581\\u13d3\\u13a6\\u13e5\\u13f2\": 20832,\n    \"\\u2581\\u13a4\\u13c2\\u13c2\\u13f4\\u13d7\": 20833,\n    \"\\u13c2\\u13e8\\u13f4\\u13c1\\u13ad\": 20834,\n    \"\\u13cd\\u13d3\\u13a6\\u13b8\": 20835,\n    \"\\u2581\\u13a2\\u13f3\\u13e9\\u13c2\\u13cc\": 20836,\n    \"\\u13b7\\u13cf\\u13b5\\u13bb\": 20837,\n    \"\\u13a4\\u13c2\\u13b2\": 20838,\n    \"\\u13e3\\u13d9\\u13b4\\u13b0\\u13cd\\u13a8\": 20839,\n    \"\\u2581\\u13a8\\u13e5\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d9\\u13d7\": 20840,\n    \"\\u13f0\\u13a2\\u13b6\\u13af\": 20841,\n    \"\\u13ad\\u13b5\\u13cd\\u13d7\\u13ad\": 20842,\n    \"\\u13b3\\u13db\\u13a5\\u13a6\": 20843,\n    \"\\u13d3\\u13d9\\u13b5\\u13cd\\u13d9\": 20844,\n    \"\\u13d3\\u13d9\\u13d5\\u13cd\\u13d7\\u13cd\\u13a9\": 20845,\n    \"\\u13a0\\u13e1\\u13d7\\u13cd\\u13ac\": 20846,\n    \"\\u13c2\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13af\": 20847,\n    \"\\u13a0\\u13c1\\u13b6\": 20848,\n    \"\\u2581\\u13d7\\u13d2\\u13c6\\u13b6\": 20849,\n    \"\\u13a9\\u13b5\\u13f2\\u13a2\\u13cd\\u13d9\\u13d7\": 20850,\n    \"\\u2581\\u13a2\\u13ef\\u13c6\\u13b5\\u13cd\\u13d9\\u13d7\": 20851,\n    \"\\u2581\\u13a2\\u13e7\\u13d5\\u13d8\\u13f4\": 20852,\n    \"\\u2581\\u13a4\\u13cd\\u13c9\\u13b5\": 20853,\n    \"\\u2581\\u13a3\\u13a6\\u13d5\\u13ef\\u13d9\\u13d7\": 20854,\n    \"\\u2581\\u13e7\\u13c2\\u13f2\\u13b1\\u13d2\": 20855,\n    \"\\u2581\\u13da\\u13ef\\u13c5\\u13ae\": 20856,\n    \"\\u2581\\u13db\\u13a6\\u13d3\\u13c5\": 20857,\n    \"\\u2581\\u13d3\\u13be\\u13e4\\u13a8\\u13cd\\u13d7\": 20858,\n    \"\\u13d9\\u13db\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13b5\": 20859,\n    \"\\u2581\\u13c5\\u13e9\\u13db\\u13c1\": 20860,\n    \"\\u13c2\\u13cc\\u13c4\\u13a6\": 20861,\n    \"\\u13a8\\u13cd\\u13a9\\u13a5\\u13cf\\u13c9\": 20862,\n    \"\\u13dc\\u13cd\\u13d4\\u13c5\\u13af\": 20863,\n    \"\\u2581\\u13c4\\u13c2\\u13aa\\u13b8\": 20864,\n    \"\\u2581\\u13a0\\u13c2\\u13cf\\u13f4\\u13eb\": 20865,\n    \"\\u13be\\u13d9\\u13d3\\u13c6\\u13cd\\u13ac\": 20866,\n    \"\\u13f3\\u13d3\\u13c1\\u13ad\\u13f0\\u13c3\": 20867,\n    \"\\u13d3\\u13c5\\u13d3\\u13d7\\u13cd\\u13d9\\u13d7\\u13f1\": 20868,\n    \"\\u13d6\\u13b8\\u13b2\\u13cd\\u13aa\\u13a2\": 20869,\n    \"\\u13c2\\u13e9\\u13be\\u13a6\\u13b3\": 20870,\n    \"\\u2581\\u13ad\\u13db\\u13d3\\u13cd\": 20871,\n    \"\\u13be\\u13c2\\u13cf\\u13d7\\u13f1\": 20872,\n    \"\\u13e5\\u13d7\\u13d2\\u13a9\": 20873,\n    \"\\u13d3\\u13c1\\u13df\\u13f4\\u13ce\\u13ac\": 20874,\n    \"\\u2581\\u13ef\\u13c2\\u13cd\\u13a6\": 20875,\n    \"\\u13c2\\u13cf\\u13be\\u13cc\": 20876,\n    \"\\u2581\\u13e5\\u13a6\\u13b7\\u13af\\u13cd\\u13d7\": 20877,\n    \"\\u2581\\u13eb\\u13a8\\u13e3\\u13f2\\u13b5\": 20878,\n    \"\\u2581\\u13ac\\u13a9\\u13c1\\u13e4\\u13b8\": 20879,\n    \"\\u2581\\u13a6\\u13c3\\u13b8\\u13a5\\u13cd\": 20880,\n    \"\\u13d5\\u13af\\u13f3\\u13aa\\u13d3\\u13c1\": 20881,\n    \"\\u2581\\u13e7\\u13be\\u13c1\\u13b3\\u13d7\\u13cd\\u13d7\": 20882,\n    \"\\u2581\\u13da\\u13c2\\u13f2\\u13af\\u13ce\\u13b8\": 20883,\n    \"\\u2581\\u13c5\\u13d3\\u13e9\": 20884,\n    \"\\u2581\\u13da\\u13a6\\u13d2\\u13cd\": 20885,\n    \"\\u13a6\\u13c4\\u13d6\\u13f2\": 20886,\n    \"\\u2581\\u13a4\\u13c2\\u13b5\\u13e6\\u13e9\": 20887,\n    \"\\u2581\\u13a4\\u13d3\\u13d9\\u13b5\\u13cd\\u13d4\\u13c5\\u13ce\": 20888,\n    \"\\u2581\\u13e7\\u13c2\\u13f4\\u13cd\\u13d5\\u13cd\": 20889,\n    \"\\u2581\\u13a3\\u13a9\\u13c3\\u13ae\\u13cd\\u13ac\": 20890,\n    \"\\u2581\\u13a6\\u13b6\\u13af\\u13cd\": 20891,\n    \"\\u13be\\u13b5\\u13cd\\u13d3\\u13c1\\u13b4\\u13a2\": 20892,\n    \"\\u13e0\\u13d2\\u13ce\": 20893,\n    \"\\u2581\\u13f2\\u13e8\\u13d7\\u13cd\": 20894,\n    \"\\u2581\\u13a4\\u13b6\\u13d2\\u13cd\\u13d5\": 20895,\n    \"\\u13ec\\u13af\\u13cd\\u13d7\\u13cd\\u13a9\": 20896,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d3\": 20897,\n    \"\\u13e3\\u13e4\\u13b5\": 20898,\n    \"\\u2581\\u13eb\\u13a9\\u13be\\u13c4\": 20899,\n    \"\\u13e5\\u13a7\\u13bf\\u13e9\\u13db\\u13cd\\u13d7\": 20900,\n    \"\\u13e7\\u13e4\\u13b5\": 20901,\n    \"\\u2581\\u13a2\\u13e7\\u13c5\\u13c1\\u13b8\": 20902,\n    \"\\u13c1\\u13d9\\u13b8\\u13a9\": 20903,\n    \"\\u13f1\\u13c4\\u13b3\": 20904,\n    \"\\u2581\\u13c5\\u13d3\\u13f3\\u13b6\\u13af\\u13cd\\u13d7\": 20905,\n    \"\\u2581\\u13cd\\u13c6\\u13db\\u13c5\\u13a2\\u13cd\\u13d3\\u13c1\\u13b8\": 20906,\n    \"\\u13ef\\u13a7\\u13b2\\u13cd\\u13d7\": 20907,\n    \"\\u13e9\\u13be\\u13a6\\u13b8\": 20908,\n    \"\\u13b5\\u13ac\\u13e9\\u13e2\": 20909,\n    \"\\u13f0\\u13b5\\u13cf\\u13d9\\u13b4\\u13a2\": 20910,\n    \"\\u2581\\u13d3\\u13e5\\u13db\\u13d4\": 20911,\n    \"\\u13ae\\u13d9\\u13ad\": 20912,\n    \"\\u2581\\u13f1\\u13c2\\u13e3\\u13b5\\u13cd\\u13d4\": 20913,\n    \"\\u13e8\\u13be\\u13c4\\u13eb\\u13ce\\u13ad\": 20914,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13d5\\u13f2\": 20915,\n    \"\\u13b3\\u13ec\\u13af\\u13cd\\u13d7\": 20916,\n    \"\\u13cd\\u13c8\\u13db\": 20917,\n    \"\\u13b3\\u13d1\\u13dd\": 20918,\n    \"\\u13c6\\u13d7\\u13cd\\u13d7\": 20919,\n    \"\\u2581\\u13ac\\u13c1\\u13e4\\u13b2\": 20920,\n    \"\\u13e5\\u13a7\\u13bf\\u13e9\\u13d7\\u13d3\\u13cd\\u13d7\": 20921,\n    \"\\u13ab\\u13cd\\u13a8\\u13c2\": 20922,\n    \"\\u13b5\\u13cd\\u13aa\\u13b8\\u13d4\\u13c5\": 20923,\n    \"\\u13e3\\u13d3\\u13b5\\u13c1\\u13af\\u13d5\": 20924,\n    \"\\u2581\\u13d7\\u13e5\\u13a6\\u13f4\\u13b5\": 20925,\n    \"\\u2581\\u13d7\\u13c2\\u13a7\\u13bf\\u13e9\": 20926,\n    \"\\u13a1\\u13d9\\u13d3\": 20927,\n    \"\\u13c2\\u13c5\\u13cd\\u13d3\\u13d5\\u13b8\": 20928,\n    \"\\u13be\\u13b5\\u13e5\\u13d9\\u13b2\": 20929,\n    \"\\u2581\\u13da\\u13df\\u13f0\\u13b5\\u13d9\": 20930,\n    \"\\u2581\\u13a0\\u13cd\\u13d5\\u13ef\": 20931,\n    \"\\u13e3\\u13d3\\u13c4\\u13b8\\u13d7\": 20932,\n    \"\\u2581\\u13da\\u13df\\u13b6\\u13cd\": 20933,\n    \"\\u2581\\u13da\\u13a7\\u13bf\\u13c2\\u13d9\": 20934,\n    \"\\u13d3\\u13c4\\u13f4\\u13d9\": 20935,\n    \"\\u13da\\u13d8\\u13c5\\u13cd\\u13d4\\u13c1\": 20936,\n    \"\\u13cd\\u13d3\\u13a2\\u13d2\\u13a2\": 20937,\n    \"\\u2581\\u13d3\\u13e5\\u13f4\\u13c2\": 20938,\n    \"\\u2581\\u13d7\\u13a8\\u13a6\\u13ec\\u13cd\": 20939,\n    \"\\u2581\\u13be\\u13d5\\u13d8\": 20940,\n    \"\\u13cd\\u13d3\\u13f1\\u13d7\\u13cd\\u13d7\": 20941,\n    \"\\u2581\\u13a4\\u13c2\\u13be\\u13c4\\u13aa\\u13e4\": 20942,\n    \"\\u13b3\\u13cd\\u13d7\\u13cd\\u13aa\": 20943,\n    \"\\u2581\\u13a4\\u13c2\\u13cd\\u13a6\\u13b8\": 20944,\n    \"\\u13c2\\u13b3\\u13eb\\u13a1\": 20945,\n    \"\\u13e5\\u13cd\\u13d3\\u13e9\\u13d5\\u13a8\\u13cd\\u13d7\": 20946,\n    \"\\u13af\\u13f4\\u13c1\\u13d7\": 20947,\n    \"\\u13d3\\u13c5\\u13d6\\u13b5\": 20948,\n    \"\\u2581\\u13a2\\u13ef\\u13a9\\u13f3\\u13cd\\u13c8\": 20949,\n    \"\\u13e5\\u13bf\\u13cd\\u13d5\": 20950,\n    \"\\u2581\\u13a4\\u13be\\u13d3\\u13d9\\u13e2\": 20951,\n    \"\\u2581\\u13a0\\u13a9\\u13c1\\u13a2\\u13cd\\u13d7\": 20952,\n    \"\\u2581\\u13eb\\u13e5\\u13aa\\u13a5\": 20953,\n    \"\\u13c5\\u13c6\\u13b6\\u13a5\\u13af\": 20954,\n    \"\\u2581\\u13d5\\u13e5\\u13cd\\u13d5\\u13b5\\u13cd\\u13ac\": 20955,\n    \"\\u13be\\u13d3\\u13aa\\u13be\\u13d7\": 20956,\n    \"\\u13be\\u13a9\\u13b8\\u13c1\": 20957,\n    \"\\u13a8\\u13e5\\u13c1\\u13a2\\u13cd\": 20958,\n    \"\\u2581\\u13e5\\u13c5\\u13d7\\u13a6\\u13b5\\u13cd\": 20959,\n    \"\\u13f3\\u13d7\\u13e9\\u13cf\": 20960,\n    \"\\u2581\\u13a7\\u13f4\\u13d0\": 20961,\n    \"\\u2581\\u13d1\\u13df\\u13b6\": 20962,\n    \"\\u13c2\\u13c5\\u13aa\\u13eb\\u13cd\": 20963,\n    \"\\u13d3\\u13d8\\u13be\\u13a2\": 20964,\n    \"\\u13b5\\u13cd\\u13e1\\u13f0\\u13a2\": 20965,\n    \"\\u13c0\\u13a2\\u13f3\": 20966,\n    \"\\u2581\\u13b6\\u13e9\": 20967,\n    \"\\u13b5\\u13cd\\u13db\\u13e7\": 20968,\n    \"\\u2581\\u13c4\\u13c2\\u13ac\\u13eb\": 20969,\n    \"\\u2581\\u13a4\\u13e7\\u13d7\": 20970,\n    \"\\u13f4\\u13d4\\u13c2\\u13af\\u13cd\\u13d7\\u13f1\": 20971,\n    \"\\u13b5\\u13a1\\u13b5\\u13ac\": 20972,\n    \"\\u13a8\\u13b3\\u13d7\\u13d9\\u13ad\": 20973,\n    \"\\u13df\\u13f4\\u13cc\": 20974,\n    \"\\u2581\\u13f1\\u13cd\\u13a9\\u13a7\\u13c1\": 20975,\n    \"\\u13c2\\u13b4\\u13f4\\u13cd\\u13a9\": 20976,\n    \"\\u13a6\\u13cc\\u13ef\\u13cd\\u13d9\\u13a2\": 20977,\n    \"\\u13a6\\u13f0\\u13e3\\u13b5\\u13cd\\u13d5\": 20978,\n    \"\\u2581\\u13e7\\u13b8\\u13eb\\u13cd\\u13d3\": 20979,\n    \"\\u2581\\u13a2\\u13e5\\u13a6\\u13d4\": 20980,\n    \"\\u13c2\\u13c5\\u13eb\\u13cd\\u13d4\\u13c2\\u13d9\\u13af\": 20981,\n    \"\\u13e0\\u13e4\\u13c9\": 20982,\n    \"\\u2581\\u13e7\\u13a6\\u13f4\\u13b5\": 20983,\n    \"\\u13d3\\u13b8\\u13a5\\u13cd\\u13a8\": 20984,\n    \"\\u2581\\u13a0\\u13c2\\u13a6\\u13f4\\u13b5\": 20985,\n    \"\\u2581\\u13eb\\u13af\\u13b6\": 20986,\n    \"\\u2581\\u13e6\\u13a6\\u13e4\\u13b5\": 20987,\n    \"\\u13d9\\u13a9\\u13b8\\u13eb\\u13cd\\u13d3\\u13c1\\u13ad\": 20988,\n    \"\\u13e9\\u13a6\\u13d8\\u13ef\": 20989,\n    \"\\u2581\\u13f1\\u13be\\u13c6\\u13b5\\u13cd\\u13d4\": 20990,\n    \"\\u13db\\u13d3\\u13c5\\u13af\": 20991,\n    \"\\u2581\\u13da\\u13cc\\u13b3\": 20992,\n    \"\\u2581\\u13e7\\u13ec\\u13af\\u13f3\\u13c1\": 20993,\n    \"\\u2581\\u13ac\\u13c6\\u13d3\\u13d9\\u13b5\\u13cd\": 20994,\n    \"\\u13c1\\u13b6\\u13d4\\u13c5\\u13a9\": 20995,\n    \"i\": 20996,\n    \"P\": 20997,\n    \"C\": 20998,\n    \"(\": 20999,\n    \"[\": 21000\n  },\n  \"tgt_word2id\": {\n    \"<pad>\": 0,\n    \"<s>\": 1,\n    \"</s>\": 2,\n    \"<unk>\": 3,\n    \",\": 4,\n    \"\\u2581the\": 5,\n    \"\\u2581and\": 6,\n    \".\": 7,\n    \"\\u2581of\": 8,\n    \"\\u2581to\": 9,\n    \"\\u2581that\": 10,\n    \"\\u2581in\": 11,\n    \"\\u2581And\": 12,\n    \"\\u2581he\": 13,\n    \"\\u2581a\": 14,\n    \"\\u2581I\": 15,\n    \";\": 16,\n    \":\": 17,\n    \"\\u2581unto\": 18,\n    \"s\": 19,\n    \"\\u2581him\": 20,\n    \"\\u2581his\": 21,\n    \"\\u2581be\": 22,\n    \"\\u2581is\": 23,\n    \"\\u2581for\": 24,\n    \"\\u2581they\": 25,\n    \"\\u2581not\": 26,\n    \"\\u2581shal\": 27,\n    \"\\u2581it\": 28,\n    \"\\u2581was\": 29,\n    \"l\": 30,\n    \"\\u2581with\": 31,\n    \"\\u2581them\": 32,\n    \"\\u2581said\": 33,\n    \"\\u2581\": 34,\n    \"\\u2581all\": 35,\n    \"\\u2581you\": 36,\n    \"ing\": 37,\n    \"ed\": 38,\n    \"\\u2581God\": 39,\n    \"\\u2581ye\": 40,\n    \"\\u2581as\": 41,\n    \"?\": 42,\n    \"\\u2581me\": 43,\n    \"\\u2019\": 44,\n    \"\\u2581from\": 45,\n    \"\\u2581thou\": 46,\n    \"\\u2581my\": 47,\n    \"\\u2581but\": 48,\n    \"\\u2581have\": 49,\n    \"\\u2581are\": 50,\n    \"t\": 51,\n    \"\\u2581on\": 52,\n    \"\\u2581were\": 53,\n    \"\\u2581Lord\": 54,\n    \"\\u2581had\": 55,\n    \"\\u2581which\": 56,\n    \"\\u2581when\": 57,\n    \"\\u2581\\u201c\": 58,\n    \"\\u2581their\": 59,\n    \"\\u2581man\": 60,\n    \"\\u201d\": 61,\n    \"\\u2581one\": 62,\n    \"\\u2581out\": 63,\n    \"\\u2581this\": 64,\n    \"\\u2581will\": 65,\n    \"\\u2581we\": 66,\n    \"\\u2581up\": 67,\n    \"\\u2581by\": 68,\n    \"\\u2581into\": 69,\n    \"\\u2581thy\": 70,\n    \"\\u2581The\": 71,\n    \"\\u2581thee\": 72,\n    \"\\u2581But\": 73,\n    \"\\u2581there\": 74,\n    \"\\u2581came\": 75,\n    \"\\u2581Jesus\": 76,\n    \"\\u2581who\": 77,\n    \"\\u2581her\": 78,\n    \"\\u2581at\": 79,\n    \"\\u2581things\": 80,\n    \"\\u2581also\": 81,\n    \"\\u2581upon\": 82,\n    \"\\u2581your\": 83,\n    \"d\": 84,\n    \"\\u2581us\": 85,\n    \"\\u2581For\": 86,\n    \"\\u2581no\": 87,\n    \"\\u2581come\": 88,\n    \"\\u2581she\": 89,\n    \"\\u2581if\": 90,\n    \"\\u2581hath\": 91,\n    \"\\u2581do\": 92,\n    \"\\u2581He\": 93,\n    \"\\u2581made\": 94,\n    \"\\u2581an\": 95,\n    \"\\u2581went\": 96,\n    \"\\u2581day\": 97,\n    \"\\u2581down\": 98,\n    \"\\u2581saying\": 99,\n    \"\\u2581so\": 100,\n    \"\\u2581our\": 101,\n    \"\\u2581even\": 102,\n    \"\\u2581say\": 103,\n    \"\\u2581men\": 104,\n    \"\\u2581people\": 105,\n    \"\\u2581before\": 106,\n    \"\\u2581or\": 107,\n    \"\\u2581these\": 108,\n    \"\\u2581may\": 109,\n    \"\\u2581Christ\": 110,\n    \"\\u2581go\": 111,\n    \"-\": 112,\n    \"\\u2581what\": 113,\n    \"eth\": 114,\n    \"!\": 115,\n    \"'\": 116,\n    \"ly\": 117,\n    \"\\u2581did\": 118,\n    \"\\u2581after\": 119,\n    \"\\u2581know\": 120,\n    \"\\u2581make\": 121,\n    \"\\u2581every\": 122,\n    \"\\u2581let\": 123,\n    \"\\u2581through\": 124,\n    \"\\u2581Wilbur\": 125,\n    \"\\u2581son\": 126,\n    \"\\u2581land\": 127,\n    \"cause\": 128,\n    \"\\u2581therefore\": 129,\n    \"\\u2581would\": 130,\n    \"\\u2581then\": 131,\n    \"\\u2581away\": 132,\n    \"\\u2581good\": 133,\n    \"\\u2581children\": 134,\n    \"\\u2581hand\": 135,\n    \"\\u2581over\": 136,\n    \"\\u2581about\": 137,\n    \"\\u2581Moses\": 138,\n    \"\\u2581two\": 139,\n    \"\\u2581called\": 140,\n    \"\\u2581am\": 141,\n    \"\\u2581earth\": 142,\n    \"\\u2581house\": 143,\n    \"\\u2581should\": 144,\n    \"th\": 145,\n    \"\\u2581any\": 146,\n    \"\\u2581father\": 147,\n    \"\\u2581name\": 148,\n    \"\\u2581great\": 149,\n    \"\\u2581put\": 150,\n    \"\\u2581now\": 151,\n    \"y\": 152,\n    \"\\u2581like\": 153,\n    \"\\u2581days\": 154,\n    \"\\u2581against\": 155,\n    \"\\u2581whom\": 156,\n    \"\\u2581saw\": 157,\n    \"\\u2581been\": 158,\n    \"\\u2581where\": 159,\n    \"\\u2581heard\": 160,\n    \"\\u2581saith\": 161,\n    \"e\": 162,\n    \"\\u2581more\": 163,\n    \"\\u2581see\": 164,\n    \"\\u2581many\": 165,\n    \"\\u2581took\": 166,\n    \"\\u2581give\": 167,\n    \"\\u2581pass\": 168,\n    \"\\u2581Israel\": 169,\n    \"\\u2581Now\": 170,\n    \"\\u2581forth\": 171,\n    \"\\u2581time\": 172,\n    \"\\u2581life\": 173,\n    \"\\u2581take\": 174,\n    \"\\u2581again\": 175,\n    \"\\u2581brethren\": 176,\n    \"\\u2581another\": 177,\n    \"\\u2581heaven\": 178,\n    \"\\u2581himself\": 179,\n    \"st\": 180,\n    \"\\u2581word\": 181,\n    \"\\u2581might\": 182,\n    \"\\u2581way\": 183,\n    \"\\u2581world\": 184,\n    \"\\u2581sons\": 185,\n    \"\\u2581Then\": 186,\n    \"\\u2581first\": 187,\n    \"\\u2581own\": 188,\n    \"\\u2581behold\": 189,\n    \"\\u2581other\": 190,\n    \"\\u2581how\": 191,\n    \"se\": 192,\n    \"\\u2581among\": 193,\n    \"\\u2581brought\": 194,\n    \"\\u2581law\": 195,\n    \"\\u2581Father\": 196,\n    \"\\u2581little\": 197,\n    \"\\u2581place\": 198,\n    \"\\u2581some\": 199,\n    \"\\u2581could\": 200,\n    \"\\u2581eat\": 201,\n    \"\\u2581than\": 202,\n    \"\\u2581old\": 203,\n    \"\\u2581back\": 204,\n    \"\\u2581Jacob\": 205,\n    \"\\u2581Egypt\": 206,\n    \"\\u2581sent\": 207,\n    \"\\u2581accord\": 208,\n    \"\\u2581years\": 209,\n    \"\\u2581Spirit\": 210,\n    \"\\u2581brother\": 211,\n    \"f\": 212,\n    \"\\u2581Pharaoh\": 213,\n    \"\\u2581love\": 214,\n    \"\\u2581gave\": 215,\n    \"\\u2581disciples\": 216,\n    \"\\u2581cast\": 217,\n    \"\\u2581Abraham\": 218,\n    \"\\u2581water\": 219,\n    \"\\u2581faith\": 220,\n    \"\\u2581Mr\": 221,\n    \"\\u2581found\": 222,\n    \"\\u2581set\": 223,\n    \"\\u2581wife\": 224,\n    \"\\u2581voice\": 225,\n    \"\\u2581They\": 226,\n    \"\\u2581yet\": 227,\n    \"\\u2581It\": 228,\n    \"\\u2581A\": 229,\n    \"\\u2581O\": 230,\n    \"\\u2581under\": 231,\n    \"\\u2581glory\": 232,\n    \"\\u2581dead\": 233,\n    \"\\u2581hast\": 234,\n    \"\\u2581having\": 235,\n    \"\\u2581Charlotte\": 236,\n    \"\\u2581being\": 237,\n    \"\\u2581done\": 238,\n    \"\\u2581answered\": 239,\n    \"\\u2581spake\": 240,\n    \"\\u2581Joseph\": 241,\n    \"\\u2581bring\": 242,\n    \"\\u2581together\": 243,\n    \"\\u2581night\": 244,\n    \"\\u2581heart\": 245,\n    \"\\u2581city\": 246,\n    \"\\u2581Son\": 247,\n    \"\\u2581eyes\": 248,\n    \"r\": 249,\n    \"m\": 250,\n    \"\\u2581work\": 251,\n    \"\\u2581neither\": 252,\n    \"\\u2581only\": 253,\n    \"\\u2581both\": 254,\n    \"\\u2581speak\": 255,\n    \"\\u2581three\": 256,\n    \"\\u2581flesh\": 257,\n    \"\\u2581When\": 258,\n    \"\\u2581What\": 259,\n    \"\\u2581can\": 260,\n    \"\\u2581thereof\": 261,\n    \"\\u2581nor\": 262,\n    \"\\u2581same\": 263,\n    \"\\u2581fire\": 264,\n    \"\\u2581given\": 265,\n    \"\\u2581much\": 266,\n    \"\\u2581without\": 267,\n    \"I\": 268,\n    \"\\u2581right\": 269,\n    \"\\u2581seven\": 270,\n    \"\\u2581Thi\": 271,\n    \"\\u2581left\": 272,\n    \"\\u2581blood\": 273,\n    \"\\u2581hear\": 274,\n    \"\\u2581face\": 275,\n    \"\\u2581LORD\": 276,\n    \"\\u2581thing\": 277,\n    \"\\u2581asked\": 278,\n    \"\\u2581long\": 279,\n    \"\\u2581off\": 280,\n    \"\\u2581evil\": 281,\n    \"\\u2581words\": 282,\n    \"est\": 283,\n    \"\\u2581art\": 284,\n    \"\\u2581head\": 285,\n    \"\\u2581well\": 286,\n    \"\\u2581hands\": 287,\n    \"\\u2581sat\": 288,\n    \"\\u2581death\": 289,\n    \"\\u2581So\": 290,\n    \"\\u2581kingdom\": 291,\n    \"\\u2581Thou\": 292,\n    \"\\u2581Jews\": 293,\n    \"\\u2581th\": 294,\n    \"\\u2581mother\": 295,\n    \"\\u2581while\": 296,\n    \"\\u2581nothing\": 297,\n    \"\\u2581unti\": 298,\n    \"\\u2581bear\": 299,\n    \"\\u2581light\": 300,\n    \"very\": 301,\n    \"\\u2581stood\": 302,\n    \"\\u2581ever\": 303,\n    \"\\u2581themselves\": 304,\n    \"\\u2581Paul\": 305,\n    \"\\u2581gold\": 306,\n    \"\\u2581lay\": 307,\n    \"\\u2581Let\": 308,\n    \"\\u2581keep\": 309,\n    \"ose\": 310,\n    \"\\u2581Zuckerman\": 311,\n    \"\\u2581sea\": 312,\n    \"\\u2581side\": 313,\n    \"\\u2581Behold\": 314,\n    \"\\u2581Fern\": 315,\n    \"soever\": 316,\n    \"\\u2581s\": 317,\n    \"\\u2581looked\": 318,\n    \"er\": 319,\n    \"\\u2581Jerusalem\": 320,\n    \"\\u2581Peter\": 321,\n    \"\\u2581seen\": 322,\n    \"\\u2581Ye\": 323,\n    \"\\u2581sin\": 324,\n    \"\\u2581thine\": 325,\n    \"\\u2581cometh\": 326,\n    \"\\u2581Be\": 327,\n    \"\\u2581woman\": 328,\n    \"\\u2581certain\": 329,\n    \"\\u2581ground\": 330,\n    \"\\u2581end\": 331,\n    \"\\u2581chief\": 332,\n    \"\\u2581She\": 333,\n    \"\\u2581body\": 334,\n    \"\\u2581We\": 335,\n    \"\\u2581knew\": 336,\n    \"\\u2581In\": 337,\n    \"\\u2581fear\": 338,\n    \"\\u2581just\": 339,\n    \"\\u2581power\": 340,\n    \"\\u2581feet\": 341,\n    \"\\u2581morning\": 342,\n    \"\\u2581such\": 343,\n    \"n\": 344,\n    \"\\u2581pig\": 345,\n    \"\\u2581tree\": 346,\n    \"\\u2581hundred\": 347,\n    \"\\u2581sheep\": 348,\n    \"\\u2581holy\": 349,\n    \"\\u2581whole\": 350,\n    \"\\u2581bread\": 351,\n    \"\\u2581Aaron\": 352,\n    \"\\u2581began\": 353,\n    \"\\u2581must\": 354,\n    \"\\u2581John\": 355,\n    \"\\u2581servant\": 356,\n    \"\\u2581receive\": 357,\n    \"\\u2581multitude\": 358,\n    \"\\u2581told\": 359,\n    \"a\": 360,\n    \"\\u2581toward\": 361,\n    \"\\u2581written\": 362,\n    \"\\u2581die\": 363,\n    \"\\u2581There\": 364,\n    \"\\u2581seed\": 365,\n    \"\\u2581peace\": 366,\n    \"\\u2581going\": 367,\n    \"\\u2581here\": 368,\n    \"\\u2581servants\": 369,\n    \"\\u2581believe\": 370,\n    \"\\u2581new\": 371,\n    \"\\u2581live\": 372,\n    \"\\u2581works\": 373,\n    \"\\u2581truth\": 374,\n    \"ll\": 375,\n    \"\\u2581fell\": 376,\n    \"\\u2581spirit\": 377,\n    \"re\": 378,\n    \"\\u2581grace\": 379,\n    \"\\u2581high\": 380,\n    \"\\u2581witness\": 381,\n    \"\\u2581get\": 382,\n    \"\\u2581mouth\": 383,\n    \"\\u2581four\": 384,\n    \"\\u2581S\": 385,\n    \"\\u2581tabernacle\": 386,\n    \"\\u2581concern\": 387,\n    \"\\u2581each\": 388,\n    \"\\u2581coming\": 389,\n    \"\\u2581near\": 390,\n    \"\\u2581Isaac\": 391,\n    \"\\u2581commanded\": 392,\n    \"\\u2581pray\": 393,\n    \"\\u2581find\": 394,\n    \"\\u2581Charley\": 395,\n    \"\\u2581five\": 396,\n    \"\\u2581web\": 397,\n    \"\\u2581tell\": 398,\n    \"\\u2581still\": 399,\n    \"\\u2581spoken\": 400,\n    \"\\u2581become\": 401,\n    \"\\u2581hour\": 402,\n    \"\\u2581white\": 403,\n    \"\\u2014\": 404,\n    \"\\u2581part\": 405,\n    \"een\": 406,\n    \"\\u2581F\": 407,\n    \"\\u2581sight\": 408,\n    \"\\u2581laid\": 409,\n    \"\\u2581received\": 410,\n    \"\\u2581though\": 411,\n    \"\\u2581child\": 412,\n    \"\\u2581round\": 413,\n    \"\\u2581mine\": 414,\n    \"\\u2581betw\": 415,\n    \"\\u2581seek\": 416,\n    \"\\u2581Who\": 417,\n    \"\\u2581altar\": 418,\n    \"\\u2581manner\": 419,\n    \"\\u2581never\": 420,\n    \"\\u2581full\": 421,\n    \"\\u2581temple\": 422,\n    \"\\u2581walk\": 423,\n    \"\\u2581river\": 424,\n    \"\\u2581drink\": 425,\n    \"\\u2581stand\": 426,\n    \"\\u2581send\": 427,\n    \"\\u2581righteousness\": 428,\n    \"\\u2581field\": 429,\n    \"\\u2581think\": 430,\n    \"ther\": 431,\n    \"\\u2581Holy\": 432,\n    \"\\u2581around\": 433,\n    \"\\u2581died\": 434,\n    \"\\u2581king\": 435,\n    \"\\u2581save\": 436,\n    \"\\u2581stone\": 437,\n    \"\\u2581daughter\": 438,\n    \"\\u2581living\": 439,\n    \"\\u2581Wherefore\": 440,\n    \"\\u2581Arable\": 441,\n    \"\\u2581angel\": 442,\n    \"\\u2581cried\": 443,\n    \"\\u2581cause\": 444,\n    \"\\u2581door\": 445,\n    \"\\u2581judgment\": 446,\n    \"\\u2581priest\": 447,\n    \"\\u2581enter\": 448,\n    \"\\u2581gospel\": 449,\n    \"\\u2581taken\": 450,\n    \"\\u2581known\": 451,\n    \"\\u2581young\": 452,\n    \"\\u2581mind\": 453,\n    \"\\u2581mercy\": 454,\n    \"\\u2581Gentiles\": 455,\n    \"\\u2581blessed\": 456,\n    \"\\u2581C\": 457,\n    \"\\u2581few\": 458,\n    \"\\u2581All\": 459,\n    \"\\u2581ask\": 460,\n    \"\\u2581bare\": 461,\n    \"\\u2581kill\": 462,\n    \"\\u2581look\": 463,\n    \"\\u2581hold\": 464,\n    \"\\u2581rest\": 465,\n    \"\\u2581hard\": 466,\n    \"\\u2581money\": 467,\n    \"\\u2581opened\": 468,\n    \"\\u2581believed\": 469,\n    \"\\u2581lord\": 470,\n    \"\\u2581second\": 471,\n    \"\\u2581gone\": 472,\n    \"\\u2581Templeton\": 473,\n    \"\\u2581un\": 474,\n    \"\\u2581hope\": 475,\n    \"\\u2581Pharisees\": 476,\n    \"\\u2581call\": 477,\n    \"\\u2581show\": 478,\n    \"\\u2581My\": 479,\n    \"\\u2581entered\": 480,\n    \"\\u2581Esau\": 481,\n    \"\\u2581last\": 482,\n    \"\\u2581don\": 483,\n    \"\\u2581gathered\": 484,\n    \"ter\": 485,\n    \"\\u2581daughters\": 486,\n    \"\\u2581Go\": 487,\n    \"\\u2581born\": 488,\n    \"\\u2581twelve\": 489,\n    \"\\u2581wise\": 490,\n    \"ce\": 491,\n    \"\\u2581able\": 492,\n    \"\\u2581walked\": 493,\n    \"\\u2581got\": 494,\n    \"\\u2581minister\": 495,\n    \"\\u2581third\": 496,\n    \"\\u2581always\": 497,\n    \"\\u2581lest\": 498,\n    \"\\u2581none\": 499,\n    \"\\u2581delivered\": 500,\n    \"\\u2581sake\": 501,\n    \"\\u2581dwell\": 502,\n    \"\\u2581As\": 503,\n    \"\\u2581too\": 504,\n    \"\\u2581righteous\": 505,\n    \"\\u2581yourselves\": 506,\n    \"\\u2581country\": 507,\n    \"\\u2581cannot\": 508,\n    \"\\u2581sure\": 509,\n    \"\\u2581became\": 510,\n    \"\\u2581raised\": 511,\n    \"\\u2581Avery\": 512,\n    \"\\u2581whe\": 513,\n    \"\\u2581prophets\": 514,\n    \"\\u2581above\": 515,\n    \"\\u2581barn\": 516,\n    \"\\u2581followed\": 517,\n    \"\\u2581You\": 518,\n    \"\\u2581beast\": 519,\n    \"\\u2581thought\": 520,\n    \"\\u2581priests\": 521,\n    \"\\u2581mount\": 522,\n    \"\\u2581judge\": 523,\n    \"\\u2581offering\": 524,\n    \"\\u2581cattle\": 525,\n    \"\\u2581angels\": 526,\n    \"\\u2581women\": 527,\n    \"\\u2581food\": 528,\n    \"\\u2581looking\": 529,\n    \"\\u2581fruit\": 530,\n    \"\\u2581year\": 531,\n    \"\\u2581joy\": 532,\n    \"\\u2581half\": 533,\n    \"\\u2581true\": 534,\n    \"\\u2581midst\": 535,\n    \"\\u2581How\": 536,\n    \"\\u2581soul\": 537,\n    \"\\u2581fine\": 538,\n    \"\\u2581indeed\": 539,\n    \"\\u2581anything\": 540,\n    \"\\u2581To\": 541,\n    \"\\u2581most\": 542,\n    \"\\u2581filled\": 543,\n    \"\\u2581elders\": 544,\n    \"\\u2581wood\": 545,\n    \"\\u2581serve\": 546,\n    \"\\u2581covenant\": 547,\n    \"\\u2581remember\": 548,\n    \"\\u2581ten\": 549,\n    \"\\u2581fall\": 550,\n    \"\\u2581small\": 551,\n    \"\\u2581dark\": 552,\n    \"\\u2581Simon\": 553,\n    \"\\u2581silver\": 554,\n    \"\\u2581Every\": 555,\n    \"\\u2581Egyptians\": 556,\n    \"\\u2581sun\": 557,\n    \"\\u2581ran\": 558,\n    \"\\u2581sins\": 559,\n    \"\\u2581returned\": 560,\n    \"es\": 561,\n    \"\\u2581church\": 562,\n    \"\\u2581Smith\": 563,\n    \"\\u2581sabbath\": 564,\n    \"\\u2581Lurvy\": 565,\n    \"\\u2581lived\": 566,\n    \"rose\": 567,\n    \"\\u2581waters\": 568,\n    \"ness\": 569,\n    \"\\u2581fathers\": 570,\n    \"\\u2581fish\": 571,\n    \"\\u2581strong\": 572,\n    \"\\u2581thousand\": 573,\n    \"\\u2581myself\": 574,\n    \"\\u2581turned\": 575,\n    \"\\u2581prophet\": 576,\n    \"\\u2581kept\": 577,\n    \"\\u2581alone\": 578,\n    \"\\u2581darkness\": 579,\n    \"\\u2581Why\": 580,\n    \"\\u2581far\": 581,\n    \"\\u2581One\": 582,\n    \"\\u2581That\": 583,\n    \"\\u2581sign\": 584,\n    \"\\u2581home\": 585,\n    \"\\u2581why\": 586,\n    \"\\u2581ready\": 587,\n    \"\\u2581ears\": 588,\n    \"\\u2581feast\": 589,\n    \"\\u2581turn\": 590,\n    \"\\u2581sleep\": 591,\n    \"\\u2581eternal\": 592,\n    \"en\": 593,\n    \"\\u2581didn\": 594,\n    \"\\u2581saved\": 595,\n    \"\\u2581spider\": 596,\n    \"\\u2581big\": 597,\n    \"\\u2581straightway\": 598,\n    \"\\u2581others\": 599,\n    \"\\u2581along\": 600,\n    \"\\u2581departed\": 601,\n    \"\\u2581rat\": 602,\n    \"\\u2581wilderness\": 603,\n    \"\\u2581wisdom\": 604,\n    \"\\u2581Abram\": 605,\n    \"\\u2581ark\": 606,\n    \"\\u2581whatsoever\": 607,\n    \"\\u2581passed\": 608,\n    \"\\u2581seeing\": 609,\n    \"\\u2581loved\": 610,\n    \"\\u2581need\": 611,\n    \"\\u2581something\": 612,\n    \"\\u2581except\": 613,\n    \"\\u2581better\": 614,\n    \"\\u2581till\": 615,\n    \"\\u2581wine\": 616,\n    \"\\u2581within\": 617,\n    \"ve\": 618,\n    \"ers\": 619,\n    \"\\u2581wind\": 620,\n    \"\\u2581commandment\": 621,\n    \"gat\": 622,\n    \"You\": 623,\n    \"\\u2581seem\": 624,\n    \"\\u2581linen\": 625,\n    \"out\": 626,\n    \"us\": 627,\n    \"\\u2581nations\": 628,\n    \"\\u2581its\": 629,\n    \"\\u2581standing\": 630,\n    \"\\u2581leave\": 631,\n    \"\\u2581follow\": 632,\n    \"\\u2581write\": 633,\n    \"\\u2581T\": 634,\n    \"\\u2581beginning\": 635,\n    \"\\u2581sitting\": 636,\n    \"\\u2581saints\": 637,\n    \"erily\": 638,\n    \"\\u2581His\": 639,\n    \"\\u2581appeared\": 640,\n    \"\\u2581goose\": 641,\n    \"\\u2581mountains\": 642,\n    \"\\u2581reason\": 643,\n    \"\\u2581top\": 644,\n    \"\\u2581deep\": 645,\n    \"\\u2581present\": 646,\n    \"\\u2581fulfilled\": 647,\n    \"\\u2581knowledge\": 648,\n    \"\\u2581Come\": 649,\n    \"\\u2581scribes\": 650,\n    \"\\u2581ought\": 651,\n    \"an\": 652,\n    \"\\u2581air\": 653,\n    \"\\u2581tent\": 654,\n    \"\\u2581David\": 655,\n    \"\\u2581Laban\": 656,\n    \"\\u2581authority\": 657,\n    \"\\u2581rather\": 658,\n    \"\\u2581thyself\": 659,\n    \"\\u2581Bless\": 660,\n    \"\\u2581wilt\": 661,\n    \"\\u2581sh\": 662,\n    \"\\u2581cut\": 663,\n    \"\\u2581husband\": 664,\n    \"\\u2581meet\": 665,\n    \"\\u2581wrath\": 666,\n    \"\\u2581behind\": 667,\n    \"\\u2581pure\": 668,\n    \"If\": 669,\n    \"\\u2581yea\": 670,\n    \"\\u2581want\": 671,\n    \"\\u2581destroy\": 672,\n    \"\\u2581Chap\": 673,\n    \"\\u2581afraid\": 674,\n    \"\\u2581congregation\": 675,\n    \"\\u2581baptized\": 676,\n    \"\\u2581foot\": 677,\n    \"\\u2581generations\": 678,\n    \"\\u2581leaves\": 679,\n    \"\\u2581kind\": 680,\n    \"\\u2581throne\": 681,\n    \"\\u2581help\": 682,\n    \"\\u2581visit\": 683,\n    \"hall\": 684,\n    \"\\u2581apostles\": 685,\n    \"\\u2581master\": 686,\n    \"\\u2581sick\": 687,\n    \"\\u2581Canaan\": 688,\n    \"\\u2581bound\": 689,\n    \"\\u2581Galilee\": 690,\n    \"\\u2581next\": 691,\n    \"\\u2581replied\": 692,\n    \"\\u2581try\": 693,\n    \"\\u2581wherein\": 694,\n    \"\\u2581cup\": 695,\n    \"\\u2581soldiers\": 696,\n    \"\\u2581garments\": 697,\n    \"\\u2581teaching\": 698,\n    \"or\": 699,\n    \"\\u2581watch\": 700,\n    \"\\u2581woods\": 701,\n    \"\\u2581boy\": 702,\n    \"\\u2581friend\": 703,\n    \"\\u2581p\": 704,\n    \"\\u2581deliver\": 705,\n    \"le\": 706,\n    \"\\u2581deal\": 707,\n    \"\\u2581sockets\": 708,\n    \"\\u2581Take\": 709,\n    \"\\u2581worthy\": 710,\n    \"\\u2581beloved\": 711,\n    \"\\u2581therein\": 712,\n    \"\\u2581bed\": 713,\n    \"\\u2581boys\": 714,\n    \"\\u2581thence\": 715,\n    \"\\u2581knoweth\": 716,\n    \"\\u2581hair\": 717,\n    \"\\u2581preach\": 718,\n    \"\\u2581meat\": 719,\n    \"\\u2581f\": 720,\n    \"\\u2581arose\": 721,\n    \"\\u2581six\": 722,\n    \"\\u2581knowing\": 723,\n    \"\\u2581has\": 724,\n    \"\\u2581nigh\": 725,\n    \"\\u2581twenty\": 726,\n    \"\\u2581salvation\": 727,\n    \"\\u2581Noah\": 728,\n    \"\\u2581rain\": 729,\n    \"\\u2581thus\": 730,\n    \"\\u2581held\": 731,\n    \"\\u2581E\": 732,\n    \"\\u2581fast\": 733,\n    \"\\u2581signs\": 734,\n    \"\\u2581suffer\": 735,\n    \"\\u2581At\": 736,\n    \"\\u2581teach\": 737,\n    \"\\u2581eye\": 738,\n    \"\\u2581blind\": 739,\n    \"\\u2581smell\": 740,\n    \"\\u2581clean\": 741,\n    \"\\u2581M\": 742,\n    \"\\u2581curtain\": 743,\n    \"\\u2581testimony\": 744,\n    \"\\u2581straw\": 745,\n    \"\\u2581everything\": 746,\n    \"\\u2581blue\": 747,\n    \"\\u2581firstborn\": 748,\n    \"\\u2581Bear\": 749,\n    \"\\u2581sit\": 750,\n    \"\\u2581free\": 751,\n    \"\\u2581soon\": 752,\n    \"\\u2581cubits\": 753,\n    \"\\u2581desire\": 754,\n    \"p\": 755,\n    \"\\u2581hearts\": 756,\n    \"\\u2581honor\": 757,\n    \"\\u2581Pilate\": 758,\n    \"\\u2581enough\": 759,\n    \"\\u2581Therefore\": 760,\n    \"\\u2581lifted\": 761,\n    \"\\u2581once\": 762,\n    \"\\u2581demons\": 763,\n    \"\\u2581Indians\": 764,\n    \"\\u2581perfect\": 765,\n    \"\\u2581nation\": 766,\n    \"\\u2581doeth\": 767,\n    \"What\": 768,\n    \"\\u2581Do\": 769,\n    \"\\u2581No\": 770,\n    \"\\u2581abide\": 771,\n    \"\\u2581Rachel\": 772,\n    \"\\u2581Even\": 773,\n    \"\\u2581bega\": 774,\n    \"\\u2581By\": 775,\n    \"\\u2581forty\": 776,\n    \"\\u2581Jud\": 777,\n    \"\\u2581red\": 778,\n    \"drew\": 779,\n    \"\\u2581sacrifice\": 780,\n    \"\\u2581P\": 781,\n    \"\\u2581court\": 782,\n    \"\\u2581sister\": 783,\n    \"\\u2581cloud\": 784,\n    \"\\u2581named\": 785,\n    \"\\u2581table\": 786,\n    \"\\u2581mountain\": 787,\n    \"\\u2581answer\": 788,\n    \"\\u2581alive\": 789,\n    \"\\u2581Judah\": 790,\n    \"\\u2581camp\": 791,\n    \"\\u2581moved\": 792,\n    \"\\u2581greater\": 793,\n    \"\\u2581evening\": 794,\n    \"\\u2581dream\": 795,\n    \"al\": 796,\n    \"ous\": 797,\n    \"\\u2581matter\": 798,\n    \"\\u2581month\": 799,\n    \"\\u2581verily\": 800,\n    \"\\u2581Mary\": 801,\n    \"\\u2581broken\": 802,\n    \"able\": 803,\n    \"\\u2581lie\": 804,\n    \"\\u2581Yea\": 805,\n    \"\\u2581sound\": 806,\n    \"\\u2581promise\": 807,\n    \"\\u2581Where\": 808,\n    \"\\u2581boat\": 809,\n    \"cross\": 810,\n    \"S\": 811,\n    \"\\u2581gather\": 812,\n    \"\\u2581ate\": 813,\n    \"\\u2581book\": 814,\n    \"\\u2581After\": 815,\n    \"\\u2581dwelt\": 816,\n    \"\\u2581enemies\": 817,\n    \"\\u2581faithful\": 818,\n    \"\\u2581Of\": 819,\n    \"\\u2581mighty\": 820,\n    \"\\u2581prison\": 821,\n    \"\\u2581tongue\": 822,\n    \"\\u2581kings\": 823,\n    \"\\u2581wait\": 824,\n    \"\\u2581multitudes\": 825,\n    \"\\u2581presence\": 826,\n    \"\\u2581taught\": 827,\n    \"\\u2581grew\": 828,\n    \"\\u2581carried\": 829,\n    \"\\u2581since\": 830,\n    \"\\u2581sold\": 831,\n    \"\\u2581hanging\": 832,\n    \"\\u2581almo\": 833,\n    \"ion\": 834,\n    \"\\u2581led\": 835,\n    \"\\u2581preached\": 836,\n    \"\\u2581cross\": 837,\n    \"\\u2581start\": 838,\n    \"ies\": 839,\n    \"It\": 840,\n    \"less\": 841,\n    \"\\u2581walking\": 842,\n    \"\\u2581journey\": 843,\n    \"\\u2581synagogue\": 844,\n    \"\\u2581rock\": 845,\n    \"\\u2581worship\": 846,\n    \"\\u2581lo\": 847,\n    \"\\u2581purple\": 848,\n    \"\\u2581Sarah\": 849,\n    \"\\u2581felt\": 850,\n    \"\\u2581hearken\": 851,\n    \"\\u2581sweet\": 852,\n    \"\\u2581thirty\": 853,\n    \"\\u2581oil\": 854,\n    \"\\u2581B\": 855,\n    \"sought\": 856,\n    \"\\u2581times\": 857,\n    \"\\u2581war\": 858,\n    \"\\u2581goeth\": 859,\n    \"\\u2581re\": 860,\n    \"\\u2581crate\": 861,\n    \"\\u2581point\": 862,\n    \"\\u2581understand\": 863,\n    \"\\u2581stones\": 864,\n    \"\\u2581rich\": 865,\n    \"\\u2581please\": 866,\n    \"\\u2581eight\": 867,\n    \"\\u2581loud\": 868,\n    \"\\u2581resurrection\": 869,\n    \"\\u2581least\": 870,\n    \"\\u2581trees\": 871,\n    \"\\u2581early\": 872,\n    \"\\u2581burnt\": 873,\n    \"as\": 874,\n    \"\\u2581measure\": 875,\n    \"\\u2581sword\": 876,\n    \"\\u2581fellow\": 877,\n    \"\\u2581egg\": 878,\n    \"\\u2581offer\": 879,\n    \"\\u2581Herod\": 880,\n    \"\\u2581Littlefish\": 881,\n    \"\\u2581ourselves\": 882,\n    \"\\u2581branches\": 883,\n    \"\\u2581neck\": 884,\n    \"\\u2581warm\": 885,\n    \"\\u2581brass\": 886,\n    \"\\u2581rings\": 887,\n    \"\\u2581vain\": 888,\n    \"\\u2581blessing\": 889,\n    \"\\u2581speaketh\": 890,\n    \"\\u2581killed\": 891,\n    \"\\u2581souls\": 892,\n    \"\\u2581service\": 893,\n    \"\\u2581ear\": 894,\n    \"on\": 895,\n    \"\\u2581N\": 896,\n    \"fore\": 897,\n    \"\\u2581wives\": 898,\n    \"\\u2581else\": 899,\n    \"\\u2581herself\": 900,\n    \"\\u2581younger\": 901,\n    \"\\u2581arise\": 902,\n    \"\\u2581rulers\": 903,\n    \"ment\": 904,\n    \"\\u2581boards\": 905,\n    \"\\u2581See\": 906,\n    \"\\u2581bless\": 907,\n    \"\\u2581prayer\": 908,\n    \"\\u2581continue\": 909,\n    \"\\u2581strength\": 910,\n    \"\\u2581fifty\": 911,\n    \"\\u2581beyond\": 912,\n    \"\\u2581milk\": 913,\n    \"\\u2581lead\": 914,\n    \"\\u2581morrow\": 915,\n    \"\\u2581healed\": 916,\n    \"\\u2581open\": 917,\n    \"body\": 918,\n    \"\\u2581generation\": 919,\n    \"\\u2581names\": 920,\n    \"\\u2581On\": 921,\n    \"\\u2581manifest\": 922,\n    \"in\": 923,\n    \"\\u2581false\": 924,\n    \"\\u2581Thu\": 925,\n    \"\\u2581scarlet\": 926,\n    \"\\u2581apart\": 927,\n    \"\\u2581quit\": 928,\n    \"\\u2581Teacher\": 929,\n    \"\\u2581James\": 930,\n    \"\\u2581spread\": 931,\n    \"\\u2581fled\": 932,\n    \"\\u2581judged\": 933,\n    \"\\u2581number\": 934,\n    \"\\u2581black\": 935,\n    \"\\u2581gift\": 936,\n    \"\\u2581read\": 937,\n    \"\\u2581smoke\": 938,\n    \"\\u2581rejoice\": 939,\n    \"\\u2581poor\": 940,\n    \"\\u2581buried\": 941,\n    \"\\u2581grey\": 942,\n    \"\\u2581wrought\": 943,\n    \"\\u2581dry\": 944,\n    \"\\u2581already\": 945,\n    \"\\u2581soil\": 946,\n    \"\\u2581front\": 947,\n    \"\\u2581abideth\": 948,\n    \"\\u2581age\": 949,\n    \"\\u2581appointed\": 950,\n    \"\\u2581Lot\": 951,\n    \"\\u2581pillars\": 952,\n    \"\\u2581horses\": 953,\n    \"\\u2581pieces\": 954,\n    \"\\u2581means\": 955,\n    \"\\u2581friends\": 956,\n    \"\\u2581break\": 957,\n    \"\\u2581build\": 958,\n    \"\\u2581order\": 959,\n    \"\\u2581apple\": 960,\n    \"\\u2581speaking\": 961,\n    \"Well\": 962,\n    \"\\u2581weak\": 963,\n    \"\\u2581houses\": 964,\n    \"\\u2581pen\": 965,\n    \"\\u2581crown\": 966,\n    \"\\u2581return\": 967,\n    \"one\": 968,\n    \"\\u2581low\": 969,\n    \"\\u2581Satan\": 970,\n    \"\\u2581making\": 971,\n    \"\\u2581Leah\": 972,\n    \"\\u2581Fair\": 973,\n    \"\\u2581Nation\": 974,\n    \"\\u2581dust\": 975,\n    \"\\u2581east\": 976,\n    \"\\u2581gain\": 977,\n    \"\\u2581Thy\": 978,\n    \"\\u2581gods\": 979,\n    \"\\u2581sinners\": 980,\n    \"\\u2581shew\": 981,\n    \"\\u2581fat\": 982,\n    \"ward\": 983,\n    \"it\": 984,\n    \"ty\": 985,\n    \"\\u2581gate\": 986,\n    \"rom\": 987,\n    \"\\u2581comfort\": 988,\n    \"\\u2581places\": 989,\n    \"\\u2581corn\": 990,\n    \"\\u2581shame\": 991,\n    \"\\u2581worshipped\": 992,\n    \"\\u2581fallen\": 993,\n    \"\\u2581stopped\": 994,\n    \"\\u2581vessels\": 995,\n    \"\\u2581thanks\": 996,\n    \"\\u2581heavens\": 997,\n    \"\\u2581giveth\": 998,\n    \"\\u2581bad\": 999,\n    \"\\u2581stay\": 1000,\n    \"\\u2581tomb\": 1001,\n    \"much\": 1002,\n    \"\\u2581length\": 1003,\n    \"\\u2581anoint\": 1004,\n    \"\\u2581close\": 1005,\n    \"\\u2581praise\": 1006,\n    \"\\u2581draw\": 1007,\n    \"\\u2581unclean\": 1008,\n    \"\\u2581grow\": 1009,\n    \"\\u2581Wolf\": 1010,\n    \"\\u2581beautiful\": 1011,\n    \"\\u2581crucified\": 1012,\n    \"\\u2581kiss\": 1013,\n    \"\\u2581ephod\": 1014,\n    \"\\u2581circumcision\": 1015,\n    \"\\u2581trough\": 1016,\n    \"\\u2581cold\": 1017,\n    \"\\u2581justified\": 1018,\n    \"\\u2581Give\": 1019,\n    \"\\u2581course\": 1020,\n    \"\\u2581King\": 1021,\n    \"\\u2581finished\": 1022,\n    \"\\u2581lost\": 1023,\n    \"\\u2581climbed\": 1024,\n    \"\\u2581animals\": 1025,\n    \"with\": 1026,\n    \"ation\": 1027,\n    \"\\u2581run\": 1028,\n    \"el\": 1029,\n    \"\\u2581famine\": 1030,\n    \"h\": 1031,\n    \"\\u2581board\": 1032,\n    \"\\u2581command\": 1033,\n    \"\\u2581feel\": 1034,\n    \"\\u2581exceeding\": 1035,\n    \"\\u2581rise\": 1036,\n    \"\\u2581wrong\": 1037,\n    \"\\u2581Philip\": 1038,\n    \"\\u2581abroad\": 1039,\n    \"\\u2581Rebekah\": 1040,\n    \"\\u2581devil\": 1041,\n    \"\\u2581shut\": 1042,\n    \"\\u2581south\": 1043,\n    \"\\u2581past\": 1044,\n    \"\\u2581Judas\": 1045,\n    \"\\u2581moment\": 1046,\n    \"\\u2581itself\": 1047,\n    \"\\u2581prepared\": 1048,\n    \"\\u2581talked\": 1049,\n    \"\\u2581often\": 1050,\n    \"\\u2581seventh\": 1051,\n    \"\\u2581offered\": 1052,\n    \"\\u2581suffered\": 1053,\n    \"\\u2581Not\": 1054,\n    \"\\u2581seat\": 1055,\n    \"\\u2581working\": 1056,\n    \"\\u2581commandments\": 1057,\n    \"\\u2581burn\": 1058,\n    \"ur\": 1059,\n    \"\\u2581sorrow\": 1060,\n    \"\\u2581scripture\": 1061,\n    \"\\u2581Indian\": 1062,\n    \"\\u2581dis\": 1063,\n    \"\\u2581best\": 1064,\n    \"\\u2581perish\": 1065,\n    \"\\u2581grass\": 1066,\n    \"\\u2581office\": 1067,\n    \"\\u2581foolish\": 1068,\n    \"\\u2581Cherokee\": 1069,\n    \"\\u2581asleep\": 1070,\n    \"\\u2581beseech\": 1071,\n    \"\\u2581staves\": 1072,\n    \"\\u2581summer\": 1073,\n    \"\\u2581reward\": 1074,\n    \"\\u2581passover\": 1075,\n    \"\\u2581speech\": 1076,\n    \"\\u2581room\": 1077,\n    \"\\u2581conceived\": 1078,\n    \"\\u2581Amen\": 1079,\n    \"\\u2581green\": 1080,\n    \"\\u2581crowd\": 1081,\n    \"A\": 1082,\n    \"\\u2581pleased\": 1083,\n    \"\\u2581covered\": 1084,\n    \"\\u2581believeth\": 1085,\n    \"\\u2581understanding\": 1086,\n    \"\\u2581flocks\": 1087,\n    \"\\u2581tongues\": 1088,\n    \"\\u2581members\": 1089,\n    \"\\u2581met\": 1090,\n    \"\\u2581season\": 1091,\n    \"\\u2581smite\": 1092,\n    \"\\u2581counsel\": 1093,\n    \"\\u2581hearing\": 1094,\n    \"\\u2581edge\": 1095,\n    \"\\u2581bow\": 1096,\n    \"\\u2581image\": 1097,\n    \"\\u2581captain\": 1098,\n    \"\\u2581parable\": 1099,\n    \"\\u2581tribe\": 1100,\n    \"\\u2581piece\": 1101,\n    \"gotten\": 1102,\n    \"\\u2581sharp\": 1103,\n    \"\\u2581reign\": 1104,\n    \"\\u2581care\": 1105,\n    \"\\u2581bright\": 1106,\n    \"\\u2581subject\": 1107,\n    \"\\u2581fornication\": 1108,\n    \"\\u2581patience\": 1109,\n    \"\\u2581salute\": 1110,\n    \"\\u2581writing\": 1111,\n    \"\\u2581sky\": 1112,\n    \"\\u2581wept\": 1113,\n    \"\\u2581swim\": 1114,\n    \"\\u2581guard\": 1115,\n    \"\\u2581buy\": 1116,\n    \"\\u2581slay\": 1117,\n    \"\\u2581divided\": 1118,\n    \"\\u2581beheld\": 1119,\n    \"\\u2581eaten\": 1120,\n    \"\\u2581troubled\": 1121,\n    \"\\u2581dur\": 1122,\n    \"\\u2581legs\": 1123,\n    \"\\u2581crying\": 1124,\n    \"\\u2581riches\": 1125,\n    \"\\u2581hid\": 1126,\n    \"\\u2581loveth\": 1127,\n    \"\\u2581wanted\": 1128,\n    \"\\u2581forward\": 1129,\n    \"am\": 1130,\n    \"\\u2581prayed\": 1131,\n    \"ng\": 1132,\n    \"\\u2581committe\": 1133,\n    \"\\u2581depart\": 1134,\n    \"ful\": 1135,\n    \"\\u2581duke\": 1136,\n    \"\\u2581creature\": 1137,\n    \"\\u2581flock\": 1138,\n    \"\\u2581b\": 1139,\n    \"\\u2581lift\": 1140,\n    \"\\u2581repent\": 1141,\n    \"\\u2581short\": 1142,\n    \"\\u2581strange\": 1143,\n    \"\\u2581forgive\": 1144,\n    \"\\u2581eating\": 1145,\n    \"\\u2581ox\": 1146,\n    \"\\u2581incense\": 1147,\n    \"\\u2581large\": 1148,\n    \"\\u2581account\": 1149,\n    \"\\u2581truck\": 1150,\n    \"\\u2581spiritual\": 1151,\n    \"\\u2581Adam\": 1152,\n    \"\\u2581glorified\": 1153,\n    \"\\u2581Sodom\": 1154,\n    \"\\u2581pay\": 1155,\n    \"ittim\": 1156,\n    \"\\u2581Lamb\": 1157,\n    \"\\u2581immediately\": 1158,\n    \"\\u2581circumcised\": 1159,\n    \"\\u2581churches\": 1160,\n    \"\\u2581yard\": 1161,\n    \"\\u2581Th\": 1162,\n    \"\\u2581poured\": 1163,\n    \"\\u2581clothes\": 1164,\n    \"\\u2581closed\": 1165,\n    \"\\u2581thereon\": 1166,\n    \"\\u2581raise\": 1167,\n    \"\\u2581touched\": 1168,\n    \"\\u2581breadth\": 1169,\n    \"\\u2581bowed\": 1170,\n    \"\\u2581receiveth\": 1171,\n    \"\\u2581sore\": 1172,\n    \"\\u2581rod\": 1173,\n    \"\\u2581besought\": 1174,\n    \"\\u2581bit\": 1175,\n    \"ir\": 1176,\n    \"\\u2581putt\": 1177,\n    \"\\u2581wax\": 1178,\n    \"\\u2581e\": 1179,\n    \"\\u2581mean\": 1180,\n    \"\\u2581disciple\": 1181,\n    \"\\u2581stranger\": 1182,\n    \"\\u2581touch\": 1183,\n    \"\\u2581carry\": 1184,\n    \"\\u2581wash\": 1185,\n    \"\\u2581glad\": 1186,\n    \"\\u2581quiet\": 1187,\n    \"\\u2581lawful\": 1188,\n    \"\\u2581council\": 1189,\n    \"\\u2581Barnabas\": 1190,\n    \"\\u2581Woe\": 1191,\n    \"\\u2581garden\": 1192,\n    \"\\u2581iniquity\": 1193,\n    \"\\u2581hurt\": 1194,\n    \"\\u2581whither\": 1195,\n    \"\\u2581cities\": 1196,\n    \"\\u2581tried\": 1197,\n    \"\\u2581empty\": 1198,\n    \"\\u2581deny\": 1199,\n    \"\\u2581lad\": 1200,\n    \"\\u2581bought\": 1201,\n    \"\\u2581exceedingly\": 1202,\n    \"\\u2581pulled\": 1203,\n    \"\\u2581pit\": 1204,\n    \"\\u2581happened\": 1205,\n    \"\\u2581longer\": 1206,\n    \"\\u2581charged\": 1207,\n    \"\\u2581hated\": 1208,\n    \"\\u2581manifested\": 1209,\n    \"\\u2581knowest\": 1210,\n    \"\\u2581worketh\": 1211,\n    \"\\u2581less\": 1212,\n    \"\\u2581greatly\": 1213,\n    \"\\u2581sac\": 1214,\n    \"\\u2581reach\": 1215,\n    \"taking\": 1216,\n    \"\\u2581breastplate\": 1217,\n    \"\\u2581Lo\": 1218,\n    \"\\u2581garment\": 1219,\n    \"of\": 1220,\n    \"\\u2581multiply\": 1221,\n    \"\\u2581t\": 1222,\n    \"\\u2581obey\": 1223,\n    \"\\u2581car\": 1224,\n    \"ri\": 1225,\n    \"\\u2581Some\": 1226,\n    \"ted\": 1227,\n    \"\\u2581road\": 1228,\n    \"\\u2581Jackson\": 1229,\n    \"\\u2581couple\": 1230,\n    \"\\u2581guess\": 1231,\n    \"\\u2581spent\": 1232,\n    \"\\u2581bondage\": 1233,\n    \"\\u2581created\": 1234,\n    \"\\u2581built\": 1235,\n    \"\\u2581brown\": 1236,\n    \"\\u2581swear\": 1237,\n    \"at\": 1238,\n    \"\\u2581quickly\": 1239,\n    \"giving\": 1240,\n    \"\\u2581self\": 1241,\n    \"\\u2581h\": 1242,\n    \"o\": 1243,\n    \"\\u2581nine\": 1244,\n    \"\\u2581stretched\": 1245,\n    \"\\u2581trouble\": 1246,\n    \"\\u2581Are\": 1247,\n    \"\\u2581couldn\": 1248,\n    \"\\u2581wonders\": 1249,\n    \"\\u2581touching\": 1250,\n    \"\\u2581stars\": 1251,\n    \"sar\": 1252,\n    \"\\u2581purpose\": 1253,\n    \"\\u2581gifts\": 1254,\n    \"\\u2581heads\": 1255,\n    \"and\": 1256,\n    \"is\": 1257,\n    \"day\": 1258,\n    \"\\u2581D\": 1259,\n    \"ear\": 1260,\n    \"ped\": 1261,\n    \"\\u2581afternoon\": 1262,\n    \"\\u2581foundation\": 1263,\n    \"\\u2581appear\": 1264,\n    \"\\u2581Jew\": 1265,\n    \"\\u2581cry\": 1266,\n    \"\\u2581rule\": 1267,\n    \"\\u2581wall\": 1268,\n    \"\\u2581spirits\": 1269,\n    \"\\u2581straight\": 1270,\n    \"\\u2581Abimelech\": 1271,\n    \"\\u2581bottom\": 1272,\n    \"\\u2581caught\": 1273,\n    \"\\u2581conscience\": 1274,\n    \"\\u2581twin\": 1275,\n    \"\\u2581unleavened\": 1276,\n    \"\\u2581Elijah\": 1277,\n    \"\\u2581hungry\": 1278,\n    \"\\u2581story\": 1279,\n    \"\\u2581winter\": 1280,\n    \"\\u2581teeth\": 1281,\n    \"\\u2581catch\": 1282,\n    \"\\u2581household\": 1283,\n    \"\\u2581sinned\": 1284,\n    \"\\u2581With\": 1285,\n    \"\\u2581really\": 1286,\n    \"\\u2581risen\": 1287,\n    \"\\u2581learned\": 1288,\n    \"\\u2581beat\": 1289,\n    \"\\u2581sides\": 1290,\n    \"\\u2581ways\": 1291,\n    \"\\u2581watched\": 1292,\n    \"\\u2581ones\": 1293,\n    \"\\u2581skins\": 1294,\n    \"im\": 1295,\n    \"\\u2581calling\": 1296,\n    \"\\u2581months\": 1297,\n    \"\\u2581faces\": 1298,\n    \"\\u2581horse\": 1299,\n    \"\\u2581H\": 1300,\n    \"i\": 1301,\n    \"for\": 1302,\n    \"\\u2581state\": 1303,\n    \"\\u2581tail\": 1304,\n    \"\\u2581creek\": 1305,\n    \"\\u2581ruler\": 1306,\n    \"\\u2581act\": 1307,\n    \"Oh\": 1308,\n    \"\\u2581parts\": 1309,\n    \"\\u2581feed\": 1310,\n    \"\\u2581count\": 1311,\n    \"\\u2581double\": 1312,\n    \"\\u2581secret\": 1313,\n    \"\\u2581abound\": 1314,\n    \"\\u2581loose\": 1315,\n    \"\\u2581wild\": 1316,\n    \"\\u2581thin\": 1317,\n    \"\\u2581spoke\": 1318,\n    \"\\u2581Levi\": 1319,\n    \"\\u2581hither\": 1320,\n    \"\\u2581raiment\": 1321,\n    \"\\u2581glorify\": 1322,\n    \"\\u2581afar\": 1323,\n    \"\\u2581vineyard\": 1324,\n    \"\\u2581Ridge\": 1325,\n    \"\\u2581space\": 1326,\n    \"\\u2581pigpen\": 1327,\n    \"\\u2581goats\": 1328,\n    \"\\u2581wrote\": 1329,\n    \"\\u2581suddenly\": 1330,\n    \"\\u2581creep\": 1331,\n    \"\\u2581forgiven\": 1332,\n    \"\\u2581outside\": 1333,\n    \"\\u2581maid\": 1334,\n    \"\\u2581golden\": 1335,\n    \"\\u2581hot\": 1336,\n    \"\\u2581witnesses\": 1337,\n    \"\\u2581officers\": 1338,\n    \"\\u2581ends\": 1339,\n    \"\\u2581heed\": 1340,\n    \"\\u2581birds\": 1341,\n    \"\\u2581wet\": 1342,\n    \"ar\": 1343,\n    \"\\u2581mayest\": 1344,\n    \"\\u2581eateth\": 1345,\n    \"\\u2581heavenly\": 1346,\n    \"\\u2581synagogues\": 1347,\n    \"\\u2581Whi\": 1348,\n    \"\\u2581feared\": 1349,\n    \"\\u2581beasts\": 1350,\n    \"\\u2581skin\": 1351,\n    \"\\u2581charge\": 1352,\n    \"w\": 1353,\n    \"rew\": 1354,\n    \"\\u2581pleasure\": 1355,\n    \"\\u2581pillar\": 1356,\n    \"He\": 1357,\n    \"\\u2581L\": 1358,\n    \"either\": 1359,\n    \"\\u2581remain\": 1360,\n    \"\\u2581play\": 1361,\n    \"\\u2581sail\": 1362,\n    \"\\u2581report\": 1363,\n    \"ake\": 1364,\n    \"\\u2581confess\": 1365,\n    \"\\u2581inherit\": 1366,\n    \"\\u2581Benjamin\": 1367,\n    \"\\u2581Isaiah\": 1368,\n    \"\\u2581array\": 1369,\n    \"\\u2581haply\": 1370,\n    \"\\u2581remembrance\": 1371,\n    \"\\u2581womb\": 1372,\n    \"\\u2581Timothy\": 1373,\n    \"\\u2581mystery\": 1374,\n    \"\\u2581daily\": 1375,\n    \"\\u2581hail\": 1376,\n    \"\\u2581tired\": 1377,\n    \"\\u2581fence\": 1378,\n    \"\\u2581likewise\": 1379,\n    \"\\u2581inheritance\": 1380,\n    \"\\u2581arrived\": 1381,\n    \"\\u2581Put\": 1382,\n    \"\\u2581Have\": 1383,\n    \"\\u2581inside\": 1384,\n    \"\\u2581talking\": 1385,\n    \"\\u2581camels\": 1386,\n    \"\\u2581weight\": 1387,\n    \"\\u2581lose\": 1388,\n    \"ah\": 1389,\n    \"\\u2581breath\": 1390,\n    \"\\u2581heareth\": 1391,\n    \"\\u2581willing\": 1392,\n    \"\\u2581d\": 1393,\n    \"\\u2581g\": 1394,\n    \"\\u2581c\": 1395,\n    \"rs\": 1396,\n    \"\\u2581spring\": 1397,\n    \"ity\": 1398,\n    \"\\u2581fight\": 1399,\n    \"\\u2581\\u2014\": 1400,\n    \"\\u2581candlestick\": 1401,\n    \"\\u2581village\": 1402,\n    \"\\u2581lamb\": 1403,\n    \"\\u2581cover\": 1404,\n    \"\\u2581coat\": 1405,\n    \"\\u2581finger\": 1406,\n    \"adventure\": 1407,\n    \"\\u2581W\": 1408,\n    \"\\u2581song\": 1409,\n    \"Yes\": 1410,\n    \"\\u2581bury\": 1411,\n    \"\\u2581fashion\": 1412,\n    \"\\u2581establish\": 1413,\n    \"\\u2581thank\": 1414,\n    \"\\u2581possess\": 1415,\n    \"\\u2581stumble\": 1416,\n    \"\\u2581flee\": 1417,\n    \"\\u2581ashamed\": 1418,\n    \"\\u2581dominion\": 1419,\n    \"\\u2581flood\": 1420,\n    \"\\u2581knife\": 1421,\n    \"\\u2581trail\": 1422,\n    \"\\u2581devour\": 1423,\n    \"\\u2581precious\": 1424,\n    \"\\u2581Saviour\": 1425,\n    \"\\u2581vail\": 1426,\n    \"\\u2581happy\": 1427,\n    \"\\u2581marry\": 1428,\n    \"\\u2581further\": 1429,\n    \"\\u2581Perry\": 1430,\n    \"\\u2581possible\": 1431,\n    \"\\u2581elect\": 1432,\n    \"\\u2581adultery\": 1433,\n    \"\\u2581smote\": 1434,\n    \"\\u2581sware\": 1435,\n    \"\\u2581amazed\": 1436,\n    \"\\u2581stick\": 1437,\n    \"\\u2581slowly\": 1438,\n    \"\\u2581scattered\": 1439,\n    \"\\u2581sort\": 1440,\n    \"\\u2581hardened\": 1441,\n    \"\\u2581sixth\": 1442,\n    \"\\u2581hire\": 1443,\n    \"\\u2581bones\": 1444,\n    \"\\u2581borne\": 1445,\n    \"\\u2581hence\": 1446,\n    \"\\u2581liveth\": 1447,\n    \"\\u2581burned\": 1448,\n    \"\\u2581feeling\": 1449,\n    \"ily\": 1450,\n    \"\\u2581notice\": 1451,\n    \"\\u2581destroyed\": 1452,\n    \"\\u2581strangers\": 1453,\n    \"\\u2581doing\": 1454,\n    \"\\u2581Is\": 1455,\n    \"\\u2581R\": 1456,\n    \"\\u2581perceive\": 1457,\n    \"\\u2581Salut\": 1458,\n    \"\\u2581hole\": 1459,\n    \"\\u2581Hebrew\": 1460,\n    \"\\u2581cubit\": 1461,\n    \"\\u2581ship\": 1462,\n    \"\\u2581sanctif\": 1463,\n    \"\\u2581curse\": 1464,\n    \"\\u2581grave\": 1465,\n    \"\\u2581naked\": 1466,\n    \"\\u2581supper\": 1467,\n    \"\\u2581Macedonia\": 1468,\n    \"\\u2581Spearfinger\": 1469,\n    \"\\u2581behalf\": 1470,\n    \"\\u2581ignorant\": 1471,\n    \"\\u2581thither\": 1472,\n    \"\\u2581bottle\": 1473,\n    \"\\u2581crawl\": 1474,\n    \"\\u2581Saul\": 1475,\n    \"\\u2581idea\": 1476,\n    \"\\u2581loaves\": 1477,\n    \"\\u2581reproach\": 1478,\n    \"\\u2581cheer\": 1479,\n    \"\\u2581moon\": 1480,\n    \"\\u2581Arise\": 1481,\n    \"\\u2581tidings\": 1482,\n    \"\\u2581handmaid\": 1483,\n    \"\\u2581decided\": 1484,\n    \"\\u2581horns\": 1485,\n    \"\\u2581wide\": 1486,\n    \"\\u2581idols\": 1487,\n    \"\\u2581fly\": 1488,\n    \"\\u2581shoes\": 1489,\n    \"\\u2581knees\": 1490,\n    \"\\u2581bonds\": 1491,\n    \"\\u2581washed\": 1492,\n    \"\\u2581goods\": 1493,\n    \"ate\": 1494,\n    \"\\u2581either\": 1495,\n    \"\\u2581letters\": 1496,\n    \"\\u2581use\": 1497,\n    \"\\u2581move\": 1498,\n    \"\\u2581eggs\": 1499,\n    \"\\u2581tables\": 1500,\n    \"\\u2581sacrifices\": 1501,\n    \"g\": 1502,\n    \"\\u2581thinking\": 1503,\n    \"\\u2581form\": 1504,\n    \"\\u2581needs\": 1505,\n    \"nto\": 1506,\n    \"\\u2581accuse\": 1507,\n    \"\\u2581bearing\": 1508,\n    \"\\u2581question\": 1509,\n    \"\\u2581demon\": 1510,\n    \"\\u2581affliction\": 1511,\n    \"\\u2581governor\": 1512,\n    \"\\u2581root\": 1513,\n    \"\\u2581possession\": 1514,\n    \"\\u2581neighbor\": 1515,\n    \"\\u2581wheel\": 1516,\n    \"\\u2581host\": 1517,\n    \"\\u2581corner\": 1518,\n    \"\\u2581afterward\": 1519,\n    \"\\u2581clear\": 1520,\n    \"How\": 1521,\n    \"But\": 1522,\n    \"\\u2581worry\": 1523,\n    \"\\u2581regard\": 1524,\n    \"\\u2581proceed\": 1525,\n    \"nt\": 1526,\n    \"\\u2581forbid\": 1527,\n    \"\\u2581shoulder\": 1528,\n    \"\\u2581wicked\": 1529,\n    \"\\u2581grievous\": 1530,\n    \"\\u2581late\": 1531,\n    \"\\u2581Cain\": 1532,\n    \"\\u2581Claire\": 1533,\n    \"\\u2581Jordan\": 1534,\n    \"\\u2581abode\": 1535,\n    \"\\u2581centurion\": 1536,\n    \"\\u2581company\": 1537,\n    \"\\u2581marriage\": 1538,\n    \"\\u2581neighbour\": 1539,\n    \"\\u2581flies\": 1540,\n    \"\\u2581parents\": 1541,\n    \"\\u2581families\": 1542,\n    \"\\u2581struck\": 1543,\n    \"\\u2581breakfast\": 1544,\n    \"\\u2581nought\": 1545,\n    \"\\u2581business\": 1546,\n    \"\\u2581repentance\": 1547,\n    \"\\u2581subjection\": 1548,\n    \"\\u2581brake\": 1549,\n    \"\\u2581Most\": 1550,\n    \"\\u2581fill\": 1551,\n    \"\\u2581tiny\": 1552,\n    \"\\u2581cock\": 1553,\n    \"\\u2581begin\": 1554,\n    \"\\u2581direction\": 1555,\n    \"\\u2581sell\": 1556,\n    \"\\u2581robe\": 1557,\n    \"\\u2581anger\": 1558,\n    \"\\u2581marvelled\": 1559,\n    \"\\u2581Art\": 1560,\n    \"\\u2581tied\": 1561,\n    \"ting\": 1562,\n    \"\\u2581reckoned\": 1563,\n    \"\\u2581Here\": 1564,\n    \"\\u2581covering\": 1565,\n    \"ever\": 1566,\n    \"\\u2581lusts\": 1567,\n    \"\\u2581served\": 1568,\n    \"\\u2581fully\": 1569,\n    \"\\u2581height\": 1570,\n    \"\\u2581corners\": 1571,\n    \"\\u2581journeyed\": 1572,\n    \"\\u2581hate\": 1573,\n    \"\\u2581faint\": 1574,\n    \"\\u2581Her\": 1575,\n    \"\\u2581scriptures\": 1576,\n    \"\\u2581gates\": 1577,\n    \"\\u2581declare\": 1578,\n    \"\\u2581falling\": 1579,\n    \"\\u2581treasure\": 1580,\n    \"the\": 1581,\n    \"\\u2581G\": 1582,\n    \"\\u2581commit\": 1583,\n    \"ance\": 1584,\n    \"\\u2581voices\": 1585,\n    \"\\u2581labor\": 1586,\n    \"ish\": 1587,\n    \"\\u2581tribulation\": 1588,\n    \"red\": 1589,\n    \"\\u2581join\": 1590,\n    \"\\u2581arm\": 1591,\n    \"\\u2581apostle\": 1592,\n    \"The\": 1593,\n    \"times\": 1594,\n    \"That\": 1595,\n    \"\\u2581profit\": 1596,\n    \"\\u2581utter\": 1597,\n    \"\\u2581strip\": 1598,\n    \"\\u2581change\": 1599,\n    \"\\u2581leaven\": 1600,\n    \"\\u2581stop\": 1601,\n    \"\\u2581refuse\": 1602,\n    \"\\u2581plain\": 1603,\n    \"\\u2581natural\": 1604,\n    \"\\u2581chose\": 1605,\n    \"\\u2581Again\": 1606,\n    \"\\u2581Brethren\": 1607,\n    \"\\u2581Grace\": 1608,\n    \"\\u2581Nazareth\": 1609,\n    \"\\u2581beneath\": 1610,\n    \"\\u2581geese\": 1611,\n    \"\\u2581middle\": 1612,\n    \"\\u2581woe\": 1613,\n    \"\\u2581fourteen\": 1614,\n    \"\\u2581fair\": 1615,\n    \"\\u2581respect\": 1616,\n    \"\\u2581spoil\": 1617,\n    \"\\u2581Asia\": 1618,\n    \"\\u2581abundantly\": 1619,\n    \"\\u2581Nay\": 1620,\n    \"\\u2581drove\": 1621,\n    \"\\u2581wish\": 1622,\n    \"\\u2581lying\": 1623,\n    \"\\u2581Know\": 1624,\n    \"\\u2581rent\": 1625,\n    \"\\u2581revealed\": 1626,\n    \"\\u2581Dr\": 1627,\n    \"\\u2581spin\": 1628,\n    \"\\u2581talents\": 1629,\n    \"\\u2581clothed\": 1630,\n    \"\\u2581ago\": 1631,\n    \"\\u2581persons\": 1632,\n    \"\\u2581remained\": 1633,\n    \"ill\": 1634,\n    \"\\u2581fourth\": 1635,\n    \"\\u2581stayed\": 1636,\n    \"\\u2581wouldest\": 1637,\n    \"\\u2581creatures\": 1638,\n    \"\\u2581following\": 1639,\n    \"\\u2581perceiv\": 1640,\n    \"\\u2581drive\": 1641,\n    \"\\u2581rocks\": 1642,\n    \"\\u2581rush\": 1643,\n    \"\\u2581race\": 1644,\n    \"\\u2581star\": 1645,\n    \"\\u2581nights\": 1646,\n    \"\\u2581trust\": 1647,\n    \"\\u2581ass\": 1648,\n    \"\\u2581wear\": 1649,\n    \"\\u2581pain\": 1650,\n    \"\\u2581oath\": 1651,\n    \"\\u2581snow\": 1652,\n    \"\\u2581vision\": 1653,\n    \"\\u2581ram\": 1654,\n    \"\\u2581fowl\": 1655,\n    \"\\u2581miracle\": 1656,\n    \"\\u2581male\": 1657,\n    \"\\u2581serpent\": 1658,\n    \"\\u2581learn\": 1659,\n    \"\\u2581talk\": 1660,\n    \"\\u2581widow\": 1661,\n    \"\\u2581border\": 1662,\n    \"ry\": 1663,\n    \"k\": 1664,\n    \"\\u2581won\": 1665,\n    \"\\u2581redeem\": 1666,\n    \"\\u2581escape\": 1667,\n    \"\\u2581several\": 1668,\n    \"\\u2581lot\": 1669,\n    \"he\": 1670,\n    \"\\u2581Antioch\": 1671,\n    \"\\u2581Crockett\": 1672,\n    \"\\u2581Ishmael\": 1673,\n    \"\\u2581Reuben\": 1674,\n    \"\\u2581Washington\": 1675,\n    \"\\u2581baptism\": 1676,\n    \"\\u2581cunning\": 1677,\n    \"\\u2581everlasting\": 1678,\n    \"\\u2581language\": 1679,\n    \"\\u2581leaving\": 1680,\n    \"\\u2581truly\": 1681,\n    \"\\u2581Sarai\": 1682,\n    \"\\u2581Sinai\": 1683,\n    \"\\u2581astray\": 1684,\n    \"\\u2581dawn\": 1685,\n    \"\\u2581slew\": 1686,\n    \"\\u2581nature\": 1687,\n    \"\\u2581sitteth\": 1688,\n    \"\\u2581colonel\": 1689,\n    \"\\u2581swallow\": 1690,\n    \"\\u2581Shechem\": 1691,\n    \"\\u2581Howbeit\": 1692,\n    \"\\u2581sanctuary\": 1693,\n    \"\\u2581tarried\": 1694,\n    \"\\u2581grain\": 1695,\n    \"\\u2581bitter\": 1696,\n    \"\\u2581yellow\": 1697,\n    \"\\u2581interpretation\": 1698,\n    \"\\u2581sanctified\": 1699,\n    \"\\u2581oxen\": 1700,\n    \"\\u2581sorry\": 1701,\n    \"\\u2581wheat\": 1702,\n    \"\\u2581fishes\": 1703,\n    \"\\u2581farm\": 1704,\n    \"\\u2581sown\": 1705,\n    \"\\u2581pail\": 1706,\n    \"\\u2581exalted\": 1707,\n    \"\\u2581Te\": 1708,\n    \"\\u2581weeping\": 1709,\n    \"\\u2581loosed\": 1710,\n    \"\\u2581line\": 1711,\n    \"\\u2581Look\": 1712,\n    \"\\u2581lower\": 1713,\n    \"\\u2581tears\": 1714,\n    \"\\u2581wipe\": 1715,\n    \"ory\": 1716,\n    \"\\u2581sailed\": 1717,\n    \"\\u2581calleth\": 1718,\n    \"\\u2581counted\": 1719,\n    \"\\u2581comforted\": 1720,\n    \"\\u2581lines\": 1721,\n    \"\\u2581borders\": 1722,\n    \"\\u2581north\": 1723,\n    \"\\u2581noise\": 1724,\n    \"\\u2581watching\": 1725,\n    \"\\u2581turning\": 1726,\n    \"\\u2581st\": 1727,\n    \"\\u2581doest\": 1728,\n    \"\\u2581Br\": 1729,\n    \"\\u2581nose\": 1730,\n    \"\\u2581con\": 1731,\n    \"\\u2581spiders\": 1732,\n    \"\\u2581inso\": 1733,\n    \"\\u2581Oh\": 1734,\n    \"\\u2581cr\": 1735,\n    \"\\u2581offerings\": 1736,\n    \"\\u2581thoughts\": 1737,\n    \"\\u2581r\": 1738,\n    \"\\u2581per\": 1739,\n    \"\\u2581hide\": 1740,\n    \"\\u2581cabin\": 1741,\n    \"\\u2581exhort\": 1742,\n    \"\\u2581fig\": 1743,\n    \"\\u2581hill\": 1744,\n    \"to\": 1745,\n    \"Charlotte\": 1746,\n    \"Now\": 1747,\n    \"\\u2581lack\": 1748,\n    \"ch\": 1749,\n    \"\\u2581Ha\": 1750,\n    \"\\u2581dirt\": 1751,\n    \"\\u2581swam\": 1752,\n    \"\\u2581overcome\": 1753,\n    \"\\u2581building\": 1754,\n    \"\\u2581Asmeret\": 1755,\n    \"\\u2581Ephesus\": 1756,\n    \"\\u2581Hittite\": 1757,\n    \"\\u2581Nahor\": 1758,\n    \"\\u2581Simeon\": 1759,\n    \"\\u2581cellar\": 1760,\n    \"\\u2581harlot\": 1761,\n    \"\\u2581rope\": 1762,\n    \"\\u2581yield\": 1763,\n    \"\\u2581running\": 1764,\n    \"\\u2581Damascus\": 1765,\n    \"\\u2581different\": 1766,\n    \"\\u2581drank\": 1767,\n    \"\\u2581godliness\": 1768,\n    \"\\u2581common\": 1769,\n    \"\\u2581wings\": 1770,\n    \"\\u2581shook\": 1771,\n    \"\\u2581compassion\": 1772,\n    \"\\u2581grant\": 1773,\n    \"\\u2581beaten\": 1774,\n    \"\\u2581pick\": 1775,\n    \"\\u2581bigge\": 1776,\n    \"\\u2581chosen\": 1777,\n    \"\\u2581pool\": 1778,\n    \"\\u2581thorns\": 1779,\n    \"\\u2581asses\": 1780,\n    \"\\u2581An\": 1781,\n    \"\\u2581tempted\": 1782,\n    \"\\u2581jumped\": 1783,\n    \"\\u2581Did\": 1784,\n    \"\\u2581chains\": 1785,\n    \"\\u2581row\": 1786,\n    \"\\u2581Hear\": 1787,\n    \"\\u2581mourning\": 1788,\n    \"men\": 1789,\n    \"\\u2581wor\": 1790,\n    \"\\u2581goodness\": 1791,\n    \"\\u2581herds\": 1792,\n    \"\\u2581pipe\": 1793,\n    \"ants\": 1794,\n    \"\\u2581bowls\": 1795,\n    \"\\u2581pale\": 1796,\n    \"\\u2581lamps\": 1797,\n    \"\\u2581breaking\": 1798,\n    \"\\u2581arms\": 1799,\n    \"\\u2581lambs\": 1800,\n    \"\\u2581sayest\": 1801,\n    \"\\u2581Shem\": 1802,\n    \"\\u2581de\": 1803,\n    \"\\u2581withal\": 1804,\n    \"\\u2581prayers\": 1805,\n    \"\\u2581heal\": 1806,\n    \"\\u2581drinking\": 1807,\n    \"\\u2581commun\": 1808,\n    \"\\u2581judges\": 1809,\n    \"\\u2581fruits\": 1810,\n    \"\\u2581roll\": 1811,\n    \"\\u2581desert\": 1812,\n    \"\\u2581bringing\": 1813,\n    \"\\u2581girdle\": 1814,\n    \"\\u2581cave\": 1815,\n    \"age\": 1816,\n    \"\\u2581stream\": 1817,\n    \"\\u2581week\": 1818,\n    \"\\u2581Greek\": 1819,\n    \"\\u2581bird\": 1820,\n    \"\\u2581glorying\": 1821,\n    \"\\u2581reap\": 1822,\n    \"Good\": 1823,\n    \"\\u2581flow\": 1824,\n    \"\\u2581render\": 1825,\n    \"laid\": 1826,\n    \"\\u2581letter\": 1827,\n    \"\\u2581flat\": 1828,\n    \"\\u2581haste\": 1829,\n    \"\\u2581Man\": 1830,\n    \"ollow\": 1831,\n    \"\\u2581stumbling\": 1832,\n    \"\\u2581Almighty\": 1833,\n    \"\\u2581anxious\": 1834,\n    \"\\u2581bodies\": 1835,\n    \"\\u2581bridegroom\": 1836,\n    \"\\u2581damsel\": 1837,\n    \"\\u2581disobedient\": 1838,\n    \"\\u2581divers\": 1839,\n    \"\\u2581necessary\": 1840,\n    \"\\u2581obedience\": 1841,\n    \"\\u2581prosper\": 1842,\n    \"\\u2581screamed\": 1843,\n    \"\\u2581silence\": 1844,\n    \"\\u2581uncircumcision\": 1845,\n    \"\\u2581diligence\": 1846,\n    \"\\u2581iron\": 1847,\n    \"\\u2581trumpet\": 1848,\n    \"\\u2581harvest\": 1849,\n    \"\\u2581Stephen\": 1850,\n    \"\\u2581lips\": 1851,\n    \"\\u2581slain\": 1852,\n    \"\\u2581Haran\": 1853,\n    \"\\u2581honey\": 1854,\n    \"\\u2581rising\": 1855,\n    \"\\u2581Nancy\": 1856,\n    \"\\u2581acceptable\": 1857,\n    \"\\u2581spare\": 1858,\n    \"\\u2581boldness\": 1859,\n    \"\\u2581overlay\": 1860,\n    \"\\u2581temptation\": 1861,\n    \"\\u2581lodge\": 1862,\n    \"\\u2581steal\": 1863,\n    \"\\u2581worse\": 1864,\n    \"\\u2581Can\": 1865,\n    \"\\u2581hypocrites\": 1866,\n    \"\\u2581Sure\": 1867,\n    \"\\u2581ceased\": 1868,\n    \"\\u2581Sir\": 1869,\n    \"\\u2581removed\": 1870,\n    \"\\u2581defiled\": 1871,\n    \"ite\": 1872,\n    \"\\u2581goslings\": 1873,\n    \"\\u2581henceforth\": 1874,\n    \"\\u2581shortly\": 1875,\n    \"\\u2581hell\": 1876,\n    \"\\u2581obtained\": 1877,\n    \"THE\": 1878,\n    \"wo\": 1879,\n    \"\\u2581onto\": 1880,\n    \"\\u2581stared\": 1881,\n    \"\\u2581sacrificed\": 1882,\n    \"\\u2581soft\": 1883,\n    \"\\u2581frogs\": 1884,\n    \"\\u2581Greeks\": 1885,\n    \"\\u2581widows\": 1886,\n    \"\\u2581pro\": 1887,\n    \"\\u2581Sen\": 1888,\n    \"\\u2581comes\": 1889,\n    \"\\u2581needed\": 1890,\n    \"ors\": 1891,\n    \"\\u2581seeth\": 1892,\n    \"\\u2581prove\": 1893,\n    \"\\u2581sad\": 1894,\n    \"\\u2581rebuke\": 1895,\n    \"\\u2581holding\": 1896,\n    \"\\u2581ill\": 1897,\n    \"ge\": 1898,\n    \"rolled\": 1899,\n    \"\\u2581liked\": 1900,\n    \"score\": 1901,\n    \"\\u2581fore\": 1902,\n    \"\\u2581occasion\": 1903,\n    \"No\": 1904,\n    \"\\u2581happen\": 1905,\n    \"\\u2581lust\": 1906,\n    \"\\u2581burden\": 1907,\n    \"\\u2581add\": 1908,\n    \"c\": 1909,\n    \"\\u2581revelation\": 1910,\n    \"\\u2581region\": 1911,\n    \"\\u2581supplication\": 1912,\n    \"\\u2581shepherd\": 1913,\n    \"\\u2581blanket\": 1914,\n    \"\\u2581Egyptian\": 1915,\n    \"\\u2581mark\": 1916,\n    \"\\u2581dog\": 1917,\n    \"ris\": 1918,\n    \"\\u2581beside\": 1919,\n    \"F\": 1920,\n    \"\\u2581salt\": 1921,\n    \"\\u2581laugh\": 1922,\n    \"\\u2581inhabit\": 1923,\n    \"\\u2581interest\": 1924,\n    \"\\u2581condemn\": 1925,\n    \"\\u2581betray\": 1926,\n    \"\\u2581pour\": 1927,\n    \"\\u2581heat\": 1928,\n    \"\\u2581defile\": 1929,\n    \"ary\": 1930,\n    \"\\u2581je\": 1931,\n    \"\\u2581release\": 1932,\n    \"\\u2581despise\": 1933,\n    \"\\u2581taste\": 1934,\n    \"\\u2581store\": 1935,\n    \"\\u2581slow\": 1936,\n    \"\\u2581vine\": 1937,\n    \"\\u2581Sadducees\": 1938,\n    \"\\u2581America\": 1939,\n    \"\\u2581Lazarus\": 1940,\n    \"\\u2581Manasseh\": 1941,\n    \"\\u2581Sequoyah\": 1942,\n    \"\\u2581awoke\": 1943,\n    \"\\u2581confidence\": 1944,\n    \"\\u2581countenance\": 1945,\n    \"\\u2581doctrine\": 1946,\n    \"\\u2581dumb\": 1947,\n    \"\\u2581multiplied\": 1948,\n    \"\\u2581ointment\": 1949,\n    \"\\u2581recompense\": 1950,\n    \"\\u2581substance\": 1951,\n    \"\\u2581tarry\": 1952,\n    \"\\u2581Hagar\": 1953,\n    \"\\u2581crep\": 1954,\n    \"\\u2581digged\": 1955,\n    \"\\u2581contrary\": 1956,\n    \"\\u2581gander\": 1957,\n    \"\\u2581fellowship\": 1958,\n    \"\\u2581loins\": 1959,\n    \"\\u2581pretty\": 1960,\n    \"\\u2581Zion\": 1961,\n    \"\\u2581understood\": 1962,\n    \"\\u2581continually\": 1963,\n    \"\\u2581unrighteousness\": 1964,\n    \"\\u2581ungodly\": 1965,\n    \"\\u2581loss\": 1966,\n    \"\\u2581wickedness\": 1967,\n    \"\\u2581price\": 1968,\n    \"\\u2581trade\": 1969,\n    \"\\u2581exactly\": 1970,\n    \"\\u2581married\": 1971,\n    \"\\u2581heap\": 1972,\n    \"\\u2581rejected\": 1973,\n    \"\\u2581doorway\": 1974,\n    \"\\u2581stedfastly\": 1975,\n    \"\\u2581carefully\": 1976,\n    \"\\u2581fruitful\": 1977,\n    \"\\u2581shot\": 1978,\n    \"\\u2581stirred\": 1979,\n    \"\\u2581descended\": 1980,\n    \"\\u2581spit\": 1981,\n    \"\\u2581kindness\": 1982,\n    \"\\u2581hunger\": 1983,\n    \"\\u2581prevailed\": 1984,\n    \"\\u2581thick\": 1985,\n    \"\\u2581dying\": 1986,\n    \"\\u2581manure\": 1987,\n    \"\\u2581ring\": 1988,\n    \"\\u2581quietly\": 1989,\n    \"\\u2581loops\": 1990,\n    \"\\u2581bars\": 1991,\n    \"\\u2581town\": 1992,\n    \"\\u2581final\": 1993,\n    \"\\u2581pond\": 1994,\n    \"\\u2581divide\": 1995,\n    \"xcept\": 1996,\n    \"\\u2581chariots\": 1997,\n    \"\\u2581rejoiced\": 1998,\n    \"\\u2581condemned\": 1999,\n    \"\\u2581cleanse\": 2000,\n    \"\\u2581powers\": 2001,\n    \"\\u2581promised\": 2002,\n    \"\\u2581consider\": 2003,\n    \"ke\": 2004,\n    \"time\": 2005,\n    \"\\u2581fasten\": 2006,\n    \"\\u2581desired\": 2007,\n    \"ach\": 2008,\n    \"\\u2581m\": 2009,\n    \"\\u2581dreamed\": 2010,\n    \"\\u2581seasons\": 2011,\n    \"\\u2581Re\": 2012,\n    \"\\u2581Well\": 2013,\n    \"\\u2581lives\": 2014,\n    \"unto\": 2015,\n    \"ight\": 2016,\n    \"\\u2581mo\": 2017,\n    \"\\u2581ca\": 2018,\n    \"\\u2581parted\": 2019,\n    \"\\u2581praying\": 2020,\n    \"\\u2581intend\": 2021,\n    \"\\u2581west\": 2022,\n    \"\\u2581tr\": 2023,\n    \"\\u2581laying\": 2024,\n    \"\\u2581shed\": 2025,\n    \"\\u2581favor\": 2026,\n    \"\\u2581desir\": 2027,\n    \"\\u2581rivers\": 2028,\n    \"\\u2581hang\": 2029,\n    \"\\u2581custom\": 2030,\n    \"\\u2581case\": 2031,\n    \"\\u2581frog\": 2032,\n    \"\\u2581lamp\": 2033,\n    \"\\u2581trap\": 2034,\n    \"\\u2581prophesy\": 2035,\n    \"what\": 2036,\n    \"though\": 2037,\n    \"\\u2581fetch\": 2038,\n    \"\\u2581stretch\": 2039,\n    \"\\u2581Say\": 2040,\n    \"that\": 2041,\n    \"\\u2581Rabbi\": 2042,\n    \"\\u2581endure\": 2043,\n    \"\\u2581owner\": 2044,\n    \"\\u2581complete\": 2045,\n    \"ug\": 2046,\n    \"\\u2581hung\": 2047,\n    \"\\u2581proud\": 2048,\n    \"\\u2581commend\": 2049,\n    \"\\u2581eleven\": 2050,\n    \"\\u2581content\": 2051,\n    \"\\u2581branch\": 2052,\n    \"sarea\": 2053,\n    \"\\u2581Babylon\": 2054,\n    \"\\u2581Capernaum\": 2055,\n    \"\\u2581English\": 2056,\n    \"\\u2581Nevertheless\": 2057,\n    \"\\u2581Remember\": 2058,\n    \"\\u2581Titus\": 2059,\n    \"\\u2581cousin\": 2060,\n    \"\\u2581enemy\": 2061,\n    \"\\u2581epistle\": 2062,\n    \"\\u2581fifteen\": 2063,\n    \"\\u2581ghost\": 2064,\n    \"\\u2581thief\": 2065,\n    \"\\u2581travail\": 2066,\n    \"\\u2581Festus\": 2067,\n    \"\\u2581calf\": 2068,\n    \"\\u2581Moreover\": 2069,\n    \"\\u2581broad\": 2070,\n    \"\\u2581compass\": 2071,\n    \"\\u2581excellent\": 2072,\n    \"\\u2581void\": 2073,\n    \"\\u2581stuff\": 2074,\n    \"\\u2581particular\": 2075,\n    \"\\u2581famous\": 2076,\n    \"\\u2581Edom\": 2077,\n    \"\\u2581bidden\": 2078,\n    \"\\u2581prophecy\": 2079,\n    \"\\u2581heavy\": 2080,\n    \"\\u2581family\": 2081,\n    \"\\u2581nay\": 2082,\n    \"\\u2581Which\": 2083,\n    \"\\u2581palm\": 2084,\n    \"\\u2581single\": 2085,\n    \"\\u2581ashes\": 2086,\n    \"\\u2581Abel\": 2087,\n    \"\\u2581jealousy\": 2088,\n    \"\\u2581husbandmen\": 2089,\n    \"\\u2581bind\": 2090,\n    \"\\u2581kindred\": 2091,\n    \"\\u2581Hello\": 2092,\n    \"\\u2581trial\": 2093,\n    \"\\u2581beforehand\": 2094,\n    \"\\u2581shaken\": 2095,\n    \"bee\": 2096,\n    \"\\u2581cherubims\": 2097,\n    \"\\u2581determined\": 2098,\n    \"\\u2581wander\": 2099,\n    \"\\u2581driven\": 2100,\n    \"\\u2581Homer\": 2101,\n    \"\\u2581portion\": 2102,\n    \"\\u2581later\": 2103,\n    \"\\u2581required\": 2104,\n    \"\\u2581everywhere\": 2105,\n    \"\\u2581ball\": 2106,\n    \"\\u2581fit\": 2107,\n    \"\\u2581wrapp\": 2108,\n    \"ier\": 2109,\n    \"\\u2581remaineth\": 2110,\n    \"\\u2581increased\": 2111,\n    \"\\u2581pitched\": 2112,\n    \"\\u2581hateth\": 2113,\n    \"\\u2581anybody\": 2114,\n    \"\\u2581hooks\": 2115,\n    \"\\u2581planted\": 2116,\n    \"\\u2581stool\": 2117,\n    \"\\u2581youngest\": 2118,\n    \"\\u2581hunting\": 2119,\n    \"\\u2581publicans\": 2120,\n    \"\\u2581withered\": 2121,\n    \"b\": 2122,\n    \"\\u2581likeness\": 2123,\n    \"\\u2581stead\": 2124,\n    \"\\u2581betrayed\": 2125,\n    \"\\u2581en\": 2126,\n    \"\\u2581special\": 2127,\n    \"\\u2581does\": 2128,\n    \"\\u2581fugitives\": 2129,\n    \"Many\": 2130,\n    \"\\u2581tall\": 2131,\n    \"\\u2581aside\": 2132,\n    \"\\u2581standeth\": 2133,\n    \"\\u2581findeth\": 2134,\n    \"\\u2581builded\": 2135,\n    \"\\u2581greatest\": 2136,\n    \"\\u2581numbered\": 2137,\n    \"\\u2581gotten\": 2138,\n    \"\\u2581hosts\": 2139,\n    \"\\u2581reading\": 2140,\n    \"\\u2581Zuckermans\": 2141,\n    \"\\u2581Hebrews\": 2142,\n    \"\\u2581waited\": 2143,\n    \"\\u2581sounded\": 2144,\n    \"\\u2581shoulders\": 2145,\n    \"ought\": 2146,\n    \"\\u2581tribes\": 2147,\n    \"\\u2581meeting\": 2148,\n    \"\\u2581sleeping\": 2149,\n    \"if\": 2150,\n    \"ned\": 2151,\n    \"stead\": 2152,\n    \"\\u2581masters\": 2153,\n    \"all\": 2154,\n    \"nder\": 2155,\n    \"reached\": 2156,\n    \"\\u2581thousands\": 2157,\n    \"\\u2581Heth\": 2158,\n    \"\\u2581yours\": 2159,\n    \"\\u2581seal\": 2160,\n    \"ened\": 2161,\n    \"\\u2581Du\": 2162,\n    \"ic\": 2163,\n    \"\\u2581forget\": 2164,\n    \"\\u2581paper\": 2165,\n    \"\\u2581shadow\": 2166,\n    \"\\u2581animal\": 2167,\n    \"\\u2581vessel\": 2168,\n    \"\\u2581Pharisee\": 2169,\n    \"\\u2581band\": 2170,\n    \"\\u2581elder\": 2171,\n    \"\\u2581sack\": 2172,\n    \"\\u2581shekel\": 2173,\n    \"\\u2581bond\": 2174,\n    \"\\u2581color\": 2175,\n    \"\\u2581herb\": 2176,\n    \"\\u2581prisoner\": 2177,\n    \"Do\": 2178,\n    \"Can\": 2179,\n    \"\\u2581doubt\": 2180,\n    \"\\u2581swing\": 2181,\n    \"\\u2581proclaim\": 2182,\n    \"\\u2581reckon\": 2183,\n    \"\\u2581press\": 2184,\n    \"\\u2581suck\": 2185,\n    \"\\u2581weep\": 2186,\n    \"\\u2581deed\": 2187,\n    \"\\u2581restore\": 2188,\n    \"\\u2581observe\": 2189,\n    \"\\u2581memorial\": 2190,\n    \"elah\": 2191,\n    \"\\u2581broke\": 2192,\n    \"id\": 2193,\n    \"ncle\": 2194,\n    \"\\u2581buttermilk\": 2195,\n    \"\\u2581Calhoun\": 2196,\n    \"\\u2581Ephraim\": 2197,\n    \"\\u2581Finally\": 2198,\n    \"\\u2581Gomorrah\": 2199,\n    \"\\u2581Goshen\": 2200,\n    \"\\u2581High\": 2201,\n    \"\\u2581Lichen\": 2202,\n    \"\\u2581Solomon\": 2203,\n    \"\\u2581asunder\": 2204,\n    \"\\u2581creation\": 2205,\n    \"\\u2581female\": 2206,\n    \"\\u2581longsuffering\": 2207,\n    \"\\u2581school\": 2208,\n    \"\\u2581slept\": 2209,\n    \"\\u2581twice\": 2210,\n    \"\\u2581idle\": 2211,\n    \"\\u2581spend\": 2212,\n    \"\\u2581hidden\": 2213,\n    \"\\u2581crieth\": 2214,\n    \"\\u2581oak\": 2215,\n    \"\\u2581alms\": 2216,\n    \"\\u2581destruction\": 2217,\n    \"\\u2581dried\": 2218,\n    \"\\u2581wroth\": 2219,\n    \"\\u2581forehead\": 2220,\n    \"\\u2581steward\": 2221,\n    \"\\u2581colt\": 2222,\n    \"\\u2581Dorian\": 2223,\n    \"\\u2581stole\": 2224,\n    \"\\u2581sang\": 2225,\n    \"\\u2581dump\": 2226,\n    \"\\u2581pasture\": 2227,\n    \"\\u2581scratch\": 2228,\n    \"\\u2581corruption\": 2229,\n    \"\\u2581lawyer\": 2230,\n    \"\\u2581size\": 2231,\n    \"\\u2581fun\": 2232,\n    \"\\u2581denied\": 2233,\n    \"\\u2581tender\": 2234,\n    \"\\u2581kine\": 2235,\n    \"\\u2581trespasses\": 2236,\n    \"\\u2581sow\": 2237,\n    \"\\u2581expect\": 2238,\n    \"\\u2581thanksgiving\": 2239,\n    \"\\u2581pitcher\": 2240,\n    \"\\u2581astonished\": 2241,\n    \"\\u2581discern\": 2242,\n    \"\\u2581ministration\": 2243,\n    \"\\u2581merciful\": 2244,\n    \"\\u2581dash\": 2245,\n    \"\\u2581cook\": 2246,\n    \"\\u2581worth\": 2247,\n    \"\\u2581deer\": 2248,\n    \"\\u2581error\": 2249,\n    \"\\u2581getting\": 2250,\n    \"\\u2581thirst\": 2251,\n    \"\\u2581mill\": 2252,\n    \"\\u2581whispered\": 2253,\n    \"\\u2581bath\": 2254,\n    \"\\u2581drawn\": 2255,\n    \"\\u2581persuaded\": 2256,\n    \"\\u2581dirty\": 2257,\n    \"\\u2581floor\": 2258,\n    \"\\u2581wonderful\": 2259,\n    \"\\u2581warned\": 2260,\n    \"\\u2581belly\": 2261,\n    \"\\u2581partakers\": 2262,\n    \"\\u2581separate\": 2263,\n    \"\\u2581Just\": 2264,\n    \"\\u2581attention\": 2265,\n    \"\\u2581highest\": 2266,\n    \"\\u2581Canaanites\": 2267,\n    \"\\u2581cows\": 2268,\n    \"\\u2581string\": 2269,\n    \"\\u2581sufferings\": 2270,\n    \"\\u2581bowl\": 2271,\n    \"\\u2581Don\": 2272,\n    \"\\u2581drunken\": 2273,\n    \"\\u2581...\": 2274,\n    \"\\u2581str\": 2275,\n    \"\\u2581dwelleth\": 2276,\n    \"\\u2581reported\": 2277,\n    \"\\u2581shekels\": 2278,\n    \"\\u2581West\": 2279,\n    \"\\u2581carrying\": 2280,\n    \"\\u2581burdens\": 2281,\n    \"\\u2581o\": 2282,\n    \"\\u2581hiding\": 2283,\n    \"\\u2581canst\": 2284,\n    \"\\u2581burning\": 2285,\n    \"\\u2581anointed\": 2286,\n    \"\\u2581rams\": 2287,\n    \"be\": 2288,\n    \"z\": 2289,\n    \"ew\": 2290,\n    \"\\u2581heir\": 2291,\n    \"\\u2581fo\": 2292,\n    \"reby\": 2293,\n    \"ied\": 2294,\n    \"\\u2581dukes\": 2295,\n    \"ine\": 2296,\n    \"\\u2581Andrew\": 2297,\n    \"ad\": 2298,\n    \"\\u2581sing\": 2299,\n    \"aw\": 2300,\n    \"\\u2581net\": 2301,\n    \"\\u2581rested\": 2302,\n    \"\\u2581La\": 2303,\n    \"ably\": 2304,\n    \"\\u2581minded\": 2305,\n    \"\\u2581ex\": 2306,\n    \"\\u2581co\": 2307,\n    \"\\u2581claim\": 2308,\n    \"O\": 2309,\n    \"hi\": 2310,\n    \"\\u2581spra\": 2311,\n    \"\\u2581mov\": 2312,\n    \"\\u2581w\": 2313,\n    \"ard\": 2314,\n    \"\\u2581Je\": 2315,\n    \"wn\": 2316,\n    \"minded\": 2317,\n    \"\\u2581cloth\": 2318,\n    \"\\u2581fillet\": 2319,\n    \"\\u2581person\": 2320,\n    \"\\u2581leg\": 2321,\n    \"\\u2581thread\": 2322,\n    \"\\u2581log\": 2323,\n    \"\\u2581hatchet\": 2324,\n    \"ring\": 2325,\n    \"\\u2581sinner\": 2326,\n    \"\\u2581J\": 2327,\n    \"\\u2581soldier\": 2328,\n    \"\\u2581teacher\": 2329,\n    \"\\u2581chamber\": 2330,\n    \"bye\": 2331,\n    \"Look\": 2332,\n    \"C\": 2333,\n    \"Let\": 2334,\n    \"which\": 2335,\n    \"\\u2581interpret\": 2336,\n    \"And\": 2337,\n    \"\\u2581travel\": 2338,\n    \"\\u2581sojourn\": 2339,\n    \"\\u2581veil\": 2340,\n    \"\\u2581inter\": 2341,\n    \"\\u2581appoint\": 2342,\n    \"te\": 2343,\n    \"\\u2581humble\": 2344,\n    \"\\u2581cease\": 2345,\n    \"\\u2581prepare\": 2346,\n    \"\\u2581nice\": 2347,\n    \"\\u2581pleasant\": 2348,\n    \"um\": 2349,\n    \"\\u2581direct\": 2350,\n    \"\\u2581unrighteous\": 2351,\n    \"erhaps\": 2352,\n    \"\\u2581equal\": 2353,\n    \"\\u2581fulfil\": 2354,\n    \"\\u2581suggest\": 2355,\n    \"\\u2581absent\": 2356,\n    \"\\u2581Agrippa\": 2357,\n    \"\\u2581Axe\": 2358,\n    \"\\u2581Baptist\": 2359,\n    \"\\u2581Featherstone\": 2360,\n    \"\\u2581Iscariot\": 2361,\n    \"\\u2581Lamech\": 2362,\n    \"\\u2581Martha\": 2363,\n    \"\\u2581Midian\": 2364,\n    \"\\u2581Wasseton\": 2365,\n    \"\\u2581Zebedee\": 2366,\n    \"\\u2581abiding\": 2367,\n    \"\\u2581crucify\": 2368,\n    \"\\u2581desolate\": 2369,\n    \"\\u2581exercise\": 2370,\n    \"\\u2581laurel\": 2371,\n    \"\\u2581leap\": 2372,\n    \"\\u2581savour\": 2373,\n    \"\\u2581smooth\": 2374,\n    \"\\u2581swine\": 2375,\n    \"\\u2581trembling\": 2376,\n    \"\\u2581Also\": 2377,\n    \"\\u2581Ephron\": 2378,\n    \"\\u2581atonement\": 2379,\n    \"\\u2581fulness\": 2380,\n    \"\\u2581merry\": 2381,\n    \"\\u2581lean\": 2382,\n    \"\\u2581dragon\": 2383,\n    \"\\u2581resist\": 2384,\n    \"\\u2581Sidon\": 2385,\n    \"\\u2581choice\": 2386,\n    \"\\u2581token\": 2387,\n    \"\\u2581defence\": 2388,\n    \"\\u2581Ross\": 2389,\n    \"\\u2581dinner\": 2390,\n    \"\\u2581trip\": 2391,\n    \"\\u2581Enoch\": 2392,\n    \"\\u2581Wayah\": 2393,\n    \"\\u2581chair\": 2394,\n    \"\\u2581uttermost\": 2395,\n    \"\\u2581Ham\": 2396,\n    \"\\u2581plow\": 2397,\n    \"\\u2581lake\": 2398,\n    \"\\u2581kid\": 2399,\n    \"\\u2581Master\": 2400,\n    \"\\u2581coast\": 2401,\n    \"\\u2581horsemen\": 2402,\n    \"\\u2581condemnation\": 2403,\n    \"\\u2581distance\": 2404,\n    \"\\u2581Hamor\": 2405,\n    \"\\u2581pluck\": 2406,\n    \"\\u2581plann\": 2407,\n    \"\\u2581yourself\": 2408,\n    \"\\u2581roof\": 2409,\n    \"\\u2581prize\": 2410,\n    \"\\u2581snare\": 2411,\n    \"\\u2581post\": 2412,\n    \"\\u2581radiant\": 2413,\n    \"\\u2581whereby\": 2414,\n    \"\\u2581shone\": 2415,\n    \"\\u2581sixty\": 2416,\n    \"\\u2581sober\": 2417,\n    \"\\u2581grown\": 2418,\n    \"\\u2581pile\": 2419,\n    \"\\u2581robbers\": 2420,\n    \"\\u2581murmured\": 2421,\n    \"ixt\": 2422,\n    \"\\u2581consumed\": 2423,\n    \"\\u2581shouted\": 2424,\n    \"\\u2581Edith\": 2425,\n    \"\\u2581terrific\": 2426,\n    \"man\": 2427,\n    \"\\u2581cleansed\": 2428,\n    \"\\u2581favoured\": 2429,\n    \"\\u2581failed\": 2430,\n    \"\\u2581refused\": 2431,\n    \"\\u2581Hav\": 2432,\n    \"joined\": 2433,\n    \"\\u2581everybody\": 2434,\n    \"\\u2581St\": 2435,\n    \"\\u2581Rabbit\": 2436,\n    \"\\u2581wondered\": 2437,\n    \"\\u2581Ch\": 2438,\n    \"\\u2581pressed\": 2439,\n    \"\\u2581laughed\": 2440,\n    \"\\u2581Beer\": 2441,\n    \"\\u2581speaker\": 2442,\n    \"\\u2581plagues\": 2443,\n    \"\\u2581Per\": 2444,\n    \"\\u2581established\": 2445,\n    \"\\u2581party\": 2446,\n    \"\\u2581glass\": 2447,\n    \"\\u2581blankets\": 2448,\n    \"old\": 2449,\n    \"ive\": 2450,\n    \"\\u2581forest\": 2451,\n    \"\\u2581dozen\": 2452,\n    \"not\": 2453,\n    \"\\u2581villages\": 2454,\n    \"\\u2581fingers\": 2455,\n    \"\\u2581hit\": 2456,\n    \"\\u2581shape\": 2457,\n    \"\\u2581walls\": 2458,\n    \"\\u2581Beth\": 2459,\n    \"\\u2581goest\": 2460,\n    \"ns\": 2461,\n    \"\\u2581strive\": 2462,\n    \"\\u2581gr\": 2463,\n    \"\\u2581apples\": 2464,\n    \"\\u2581ha\": 2465,\n    \"ain\": 2466,\n    \"\\u2581showing\": 2467,\n    \"\\u2581Dan\": 2468,\n    \"ched\": 2469,\n    \"\\u2581wr\": 2470,\n    \"\\u2581husbands\": 2471,\n    \"\\u2581telling\": 2472,\n    \"\\u2581fact\": 2473,\n    \"most\": 2474,\n    \"em\": 2475,\n    \"math\": 2476,\n    \"\\u2581vi\": 2477,\n    \"ank\": 2478,\n    \"\\u2581bade\": 2479,\n    \"\\u2581Get\": 2480,\n    \"ber\": 2481,\n    \"\\u2581worked\": 2482,\n    \"\\u2581tro\": 2483,\n    \"\\u2581wonder\": 2484,\n    \"\\u2581fields\": 2485,\n    \"loved\": 2486,\n    \"\\u2581earthquake\": 2487,\n    \"\\u2581thigh\": 2488,\n    \"\\u2581minute\": 2489,\n    \"\\u2581window\": 2490,\n    \"\\u2581knop\": 2491,\n    \"\\u2581ordinance\": 2492,\n    \"\\u2581prince\": 2493,\n    \"\\u2581basket\": 2494,\n    \"\\u2581meal\": 2495,\n    \"\\u2581figure\": 2496,\n    \"where\": 2497,\n    \"ne\": 2498,\n    \"\\u2581corrupt\": 2499,\n    \"Why\": 2500,\n    \"un\": 2501,\n    \"\\u2581consent\": 2502,\n    \"Don\": 2503,\n    \"There\": 2504,\n    \"\\u2581accept\": 2505,\n    \"\\u2581pull\": 2506,\n    \"seat\": 2507,\n    \"\\u2581healing\": 2508,\n    \"\\u2581increase\": 2509,\n    \"\\u2581awake\": 2510,\n    \"\\u2581earnest\": 2511,\n    \"\\u2581hunt\": 2512,\n    \"\\u2581suppose\": 2513,\n    \"\\u2581ride\": 2514,\n    \"sheba\": 2515,\n    \"\\u2581fool\": 2516,\n    \"\\u2581Amalek\": 2517,\n    \"\\u2581Hivite\": 2518,\n    \"\\u2581Jethro\": 2519,\n    \"\\u2581Magdalene\": 2520,\n    \"\\u2581Mamre\": 2521,\n    \"\\u2581Peace\": 2522,\n    \"\\u2581Philadelphia\": 2523,\n    \"\\u2581Philistines\": 2524,\n    \"\\u2581Samaria\": 2525,\n    \"\\u2581Silas\": 2526,\n    \"\\u2581apparel\": 2527,\n    \"\\u2581bacon\": 2528,\n    \"\\u2581believing\": 2529,\n    \"\\u2581coupling\": 2530,\n    \"\\u2581dishonor\": 2531,\n    \"\\u2581fault\": 2532,\n    \"\\u2581fountain\": 2533,\n    \"\\u2581liberty\": 2534,\n    \"\\u2581lieutenant\": 2535,\n    \"\\u2581ministry\": 2536,\n    \"\\u2581plenty\": 2537,\n    \"\\u2581stomach\": 2538,\n    \"\\u2581strife\": 2539,\n    \"\\u2581taches\": 2540,\n    \"\\u2581thrice\": 2541,\n    \"\\u2581tribute\": 2542,\n    \"\\u2581underneath\": 2543,\n    \"\\u2581aught\": 2544,\n    \"\\u2581barren\": 2545,\n    \"\\u2581enjoy\": 2546,\n    \"\\u2581imitat\": 2547,\n    \"\\u2581Ananias\": 2548,\n    \"\\u2581bosom\": 2549,\n    \"\\u2581shirt\": 2550,\n    \"\\u2581firmament\": 2551,\n    \"\\u2581Bethany\": 2552,\n    \"\\u2581JE\": 2553,\n    \"\\u2581shining\": 2554,\n    \"\\u2581staff\": 2555,\n    \"\\u2581curious\": 2556,\n    \"wels\": 2557,\n    \"\\u2581weather\": 2558,\n    \"\\u2581chicken\": 2559,\n    \"\\u2581Speak\": 2560,\n    \"\\u2581remission\": 2561,\n    \"\\u2581cool\": 2562,\n    \"\\u2581meekness\": 2563,\n    \"\\u2581fog\": 2564,\n    \"\\u2581George\": 2565,\n    \"\\u2581dropped\": 2566,\n    \"\\u2581Terah\": 2567,\n    \"\\u2581decomposers\": 2568,\n    \"\\u2581fighting\": 2569,\n    \"\\u2581bunch\": 2570,\n    \"\\u2581dew\": 2571,\n    \"\\u2581armies\": 2572,\n    \"\\u2581darkened\": 2573,\n    \"\\u2581shake\": 2574,\n    \"\\u2581span\": 2575,\n    \"\\u2581testified\": 2576,\n    \"\\u2581upper\": 2577,\n    \"\\u2581nakedness\": 2578,\n    \"ueen\": 2579,\n    \"\\u2581motion\": 2580,\n    \"\\u2581exhortation\": 2581,\n    \"\\u2581approved\": 2582,\n    \"\\u2581seize\": 2583,\n    \"\\u2581moreover\": 2584,\n    \"\\u2581busy\": 2585,\n    \"\\u2581Henry\": 2586,\n    \"\\u2581boldly\": 2587,\n    \"\\u2581Perhaps\": 2588,\n    \"\\u2581flame\": 2589,\n    \"\\u2581endureth\": 2590,\n    \"\\u2581butler\": 2591,\n    \"\\u2581overcometh\": 2592,\n    \"\\u2581Pig\": 2593,\n    \"\\u2581agreed\": 2594,\n    \"\\u2581accomplished\": 2595,\n    \"\\u2581pushed\": 2596,\n    \"\\u2581spices\": 2597,\n    \"\\u2581someone\": 2598,\n    \"Run\": 2599,\n    \"\\u2581separated\": 2600,\n    \"\\u2581pack\": 2601,\n    \"\\u2581listening\": 2602,\n    \"\\u2581anyone\": 2603,\n    \"\\u2581blow\": 2604,\n    \"hick\": 2605,\n    \"\\u2581dragg\": 2606,\n    \"owed\": 2607,\n    \"\\u2581escaped\": 2608,\n    \"\\u2581searched\": 2609,\n    \"\\u2581guide\": 2610,\n    \"\\u2581lieth\": 2611,\n    \"\\u2581supposed\": 2612,\n    \"\\u2581Though\": 2613,\n    \"\\u2581proclaimed\": 2614,\n    \"\\u2581Wom\": 2615,\n    \"\\u2581thunders\": 2616,\n    \"\\u2581brush\": 2617,\n    \"\\u2581tenth\": 2618,\n    \"\\u2581streets\": 2619,\n    \"\\u2581judgeth\": 2620,\n    \"\\u2581falleth\": 2621,\n    \"\\u2581shine\": 2622,\n    \"\\u2581teachers\": 2623,\n    \"\\u2581sacks\": 2624,\n    \"\\u2581deeds\": 2625,\n    \"\\u2581perished\": 2626,\n    \"\\u2581formed\": 2627,\n    \"ure\": 2628,\n    \"\\u2581ru\": 2629,\n    \"\\u2581neighbors\": 2630,\n    \"\\u2581force\": 2631,\n    \"\\u2581hoped\": 2632,\n    \"\\u2581beam\": 2633,\n    \"\\u2581Ma\": 2634,\n    \"ant\": 2635,\n    \"\\u2581simple\": 2636,\n    \"\\u2581sha\": 2637,\n    \"thrown\": 2638,\n    \"\\u2581ministering\": 2639,\n    \"\\u2581bell\": 2640,\n    \"land\": 2641,\n    \"\\u2581promises\": 2642,\n    \"\\u2581matters\": 2643,\n    \"\\u2581dwelling\": 2644,\n    \"\\u2581dreams\": 2645,\n    \"\\u2581sprinkl\": 2646,\n    \"\\u2581Pr\": 2647,\n    \"\\u2581Pa\": 2648,\n    \"\\u2581Me\": 2649,\n    \"\\u2581share\": 2650,\n    \"\\u2581kinds\": 2651,\n    \"\\u2581thrones\": 2652,\n    \"\\u2581Ga\": 2653,\n    \"les\": 2654,\n    \"u\": 2655,\n    \"\\u2581winds\": 2656,\n    \"\\u2581par\": 2657,\n    \"\\u2581Cap\": 2658,\n    \"ra\": 2659,\n    \"me\": 2660,\n    \"\\u2581rode\": 2661,\n    \"led\": 2662,\n    \"\\u2581sakes\": 2663,\n    \"ump\": 2664,\n    \"\\u2581Wil\": 2665,\n    \"\\u2581declar\": 2666,\n    \"ot\": 2667,\n    \"\\u2581wave\": 2668,\n    \"\\u2581hat\": 2669,\n    \"\\u2581knee\": 2670,\n    \"ments\": 2671,\n    \"\\u2581tin\": 2672,\n    \"od\": 2673,\n    \"\\u2581hu\": 2674,\n    \"ery\": 2675,\n    \"dded\": 2676,\n    \"\\u2581drunk\": 2677,\n    \"\\u2581captive\": 2678,\n    \"\\u2581habitation\": 2679,\n    \"\\u2581game\": 2680,\n    \"\\u2581mourn\": 2681,\n    \"\\u2581effort\": 2682,\n    \"\\u2581nest\": 2683,\n    \"\\u2581virgin\": 2684,\n    \"\\u2581flower\": 2685,\n    \"\\u2581street\": 2686,\n    \"\\u2581plague\": 2687,\n    \"ware\": 2688,\n    \"\\u2581drop\": 2689,\n    \"\\u2581search\": 2690,\n    \"\\u2581scribe\": 2691,\n    \"\\u2581girl\": 2692,\n    \"\\u2581youth\": 2693,\n    \"\\u2581path\": 2694,\n    \"\\u2581rubb\": 2695,\n    \"pleasing\": 2696,\n    \"\\u2581marvel\": 2697,\n    \"\\u2581twist\": 2698,\n    \"\\u2581pot\": 2699,\n    \"\\u2581testify\": 2700,\n    \"\\u2581delight\": 2701,\n    \"\\u2581ninet\": 2702,\n    \"\\u2581due\": 2703,\n    \"\\u2581obtain\": 2704,\n    \"special\": 2705,\n    \"\\u2581mad\": 2706,\n    \"\\u2581real\": 2707,\n    \"\\u2581den\": 2708,\n    \"\\u2581preserve\": 2709,\n    \"\\u2581bid\": 2710,\n    \"\\u2581consume\": 2711,\n    \"\\u2581bold\": 2712,\n    \"\\u2581entire\": 2713,\n    \"Thi\": 2714,\n    \"We\": 2715,\n    \"laver\": 2716,\n    \"eople\": 2717,\n    \"\\u2581trespass\": 2718,\n    \"\\u2581public\": 2719,\n    \"\\u2581danger\": 2720,\n    \"\\u2581agree\": 2721,\n    \"\\u2581tight\": 2722,\n    \"\\u2581Padan\": 2723,\n    \"\\u2581future\": 2724,\n    \"\\u2581Beaver\": 2725,\n    \"\\u2581Bethuel\": 2726,\n    \"\\u2581Charlie\": 2727,\n    \"\\u2581Japheth\": 2728,\n    \"\\u2581Joppa\": 2729,\n    \"\\u2581Joshua\": 2730,\n    \"\\u2581Zacharias\": 2731,\n    \"\\u2581altogether\": 2732,\n    \"\\u2581bundle\": 2733,\n    \"\\u2581diligently\": 2734,\n    \"\\u2581disobedience\": 2735,\n    \"\\u2581fifth\": 2736,\n    \"\\u2581furnace\": 2737,\n    \"\\u2581grieved\": 2738,\n    \"\\u2581group\": 2739,\n    \"\\u2581guile\": 2740,\n    \"\\u2581indignation\": 2741,\n    \"\\u2581iniquities\": 2742,\n    \"\\u2581kitchen\": 2743,\n    \"\\u2581leaf\": 2744,\n    \"\\u2581midnight\": 2745,\n    \"\\u2581nevertheless\": 2746,\n    \"\\u2581offended\": 2747,\n    \"\\u2581practise\": 2748,\n    \"\\u2581publish\": 2749,\n    \"\\u2581sanctification\": 2750,\n    \"\\u2581silk\": 2751,\n    \"\\u2581slops\": 2752,\n    \"\\u2581speckled\": 2753,\n    \"\\u2581stoop\": 2754,\n    \"\\u2581surname\": 2755,\n    \"\\u2581sweat\": 2756,\n    \"\\u2581venison\": 2757,\n    \"\\u2581violence\": 2758,\n    \"\\u2581Charleston\": 2759,\n    \"\\u2581abyss\": 2760,\n    \"\\u2581devout\": 2761,\n    \"\\u2581Apollos\": 2762,\n    \"\\u2581angry\": 2763,\n    \"\\u2581wove\": 2764,\n    \"\\u2581brimstone\": 2765,\n    \"\\u2581smitten\": 2766,\n    \"\\u2581slaves\": 2767,\n    \"\\u2581gracious\": 2768,\n    \"\\u2581Bilhah\": 2769,\n    \"\\u2581degree\": 2770,\n    \"\\u2581magicians\": 2771,\n    \"\\u2581below\": 2772,\n    \"\\u2581blew\": 2773,\n    \"\\u2581bride\": 2774,\n    \"\\u2581trick\": 2775,\n    \"\\u2581easier\": 2776,\n    \"\\u2581Everything\": 2777,\n    \"\\u2581wages\": 2778,\n    \"\\u2581lightning\": 2779,\n    \"\\u2581harm\": 2780,\n    \"\\u2581privily\": 2781,\n    \"\\u2581Seir\": 2782,\n    \"\\u2581mix\": 2783,\n    \"\\u2581unbelief\": 2784,\n    \"\\u2581issue\": 2785,\n    \"\\u2581mingled\": 2786,\n    \"\\u2581usual\": 2787,\n    \"\\u2581New\": 2788,\n    \"\\u2581choose\": 2789,\n    \"\\u2581sentence\": 2790,\n    \"\\u2581Hono\": 2791,\n    \"\\u2581Chapman\": 2792,\n    \"\\u2581upright\": 2793,\n    \"\\u2581Anah\": 2794,\n    \"\\u2581innocent\": 2795,\n    \"\\u2581roast\": 2796,\n    \"\\u2581assembly\": 2797,\n    \"\\u2581confession\": 2798,\n    \"\\u2581unbelieving\": 2799,\n    \"\\u2581print\": 2800,\n    \"\\u2581rear\": 2801,\n    \"\\u2581bondservant\": 2802,\n    \"\\u2581muskets\": 2803,\n    \"\\u2581crickets\": 2804,\n    \"\\u2581City\": 2805,\n    \"\\u2581foolishness\": 2806,\n    \"\\u2581honorable\": 2807,\n    \"\\u2581appeal\": 2808,\n    \"\\u2581somewhere\": 2809,\n    \"\\u2581Way\": 2810,\n    \"\\u2581bag\": 2811,\n    \"\\u2581sighed\": 2812,\n    \"\\u2581dart\": 2813,\n    \"owbeit\": 2814,\n    \"\\u2581mention\": 2815,\n    \"\\u2581Seven\": 2816,\n    \"\\u2581earnestly\": 2817,\n    \"\\u2581boots\": 2818,\n    \"\\u2581locusts\": 2819,\n    \"\\u2581maybe\": 2820,\n    \"\\u2581dove\": 2821,\n    \"\\u2581persecuted\": 2822,\n    \"\\u2581hinder\": 2823,\n    \"\\u2581Sit\": 2824,\n    \"\\u2581afflicted\": 2825,\n    \"\\u2581listened\": 2826,\n    \"\\u2581mocked\": 2827,\n    \"\\u2581peril\": 2828,\n    \"\\u2581br\": 2829,\n    \"\\u2581entreated\": 2830,\n    \"\\u2581sand\": 2831,\n    \"\\u2581Fer\": 2832,\n    \"\\u2581changed\": 2833,\n    \"\\u2581hunters\": 2834,\n    \"\\u2581Doth\": 2835,\n    \"\\u2581interpreted\": 2836,\n    \"\\u2581pocket\": 2837,\n    \"ttach\": 2838,\n    \"\\u2581valu\": 2839,\n    \"\\u2581breasts\": 2840,\n    \"\\u2581soli\": 2841,\n    \"\\u2581kindly\": 2842,\n    \"\\u2581beans\": 2843,\n    \"\\u2581miles\": 2844,\n    \"\\u2581suit\": 2845,\n    \"\\u2581leavened\": 2846,\n    \"ix\": 2847,\n    \"\\u2581baskets\": 2848,\n    \"\\u2581kneel\": 2849,\n    \"\\u2581cloths\": 2850,\n    \"\\u2581prisoners\": 2851,\n    \"\\u2581bestow\": 2852,\n    \"\\u2581besides\": 2853,\n    \"\\u2581says\": 2854,\n    \"\\u2581beating\": 2855,\n    \"\\u2581mess\": 2856,\n    \"\\u2581lots\": 2857,\n    \"\\u2581exalt\": 2858,\n    \"op\": 2859,\n    \"\\u2581coats\": 2860,\n    \"\\u2581Ho\": 2861,\n    \"\\u2581stoned\": 2862,\n    \"\\u2581salutation\": 2863,\n    \"mah\": 2864,\n    \"\\u2581fearful\": 2865,\n    \"\\u2581parables\": 2866,\n    \"\\u2581lands\": 2867,\n    \"\\u2581ward\": 2868,\n    \"\\u2581tombs\": 2869,\n    \"\\u2581reasoning\": 2870,\n    \"\\u2581god\": 2871,\n    \"\\u2581sp\": 2872,\n    \"fully\": 2873,\n    \"\\u2581aim\": 2874,\n    \"ans\": 2875,\n    \"\\u2581clouds\": 2876,\n    \"\\u2581today\": 2877,\n    \"ia\": 2878,\n    \"ture\": 2879,\n    \"ol\": 2880,\n    \"\\u2581haven\": 2881,\n    \"na\": 2882,\n    \"\\u2581puff\": 2883,\n    \"\\u2581rebuk\": 2884,\n    \"\\u2581arrow\": 2885,\n    \"godly\": 2886,\n    \"\\u2581stepp\": 2887,\n    \"\\u2581Repe\": 2888,\n    \"formed\": 2889,\n    \"\\u2581avenge\": 2890,\n    \"\\u2581po\": 2891,\n    \"\\u2581withstand\": 2892,\n    \"dal\": 2893,\n    \"\\u2581looks\": 2894,\n    \"\\u2581rattl\": 2895,\n    \"\\u2581step\": 2896,\n    \"ern\": 2897,\n    \"\\u2581judgments\": 2898,\n    \"\\u2581inward\": 2899,\n    \"\\u2581Arables\": 2900,\n    \"\\u2581doors\": 2901,\n    \"morrow\": 2902,\n    \"ries\": 2903,\n    \"\\u2581ho\": 2904,\n    \"\\u2581bush\": 2905,\n    \"\\u2581hem\": 2906,\n    \"ered\": 2907,\n    \"\\u2581Abi\": 2908,\n    \"\\u2581cove\": 2909,\n    \"\\u2581watered\": 2910,\n    \"ent\": 2911,\n    \"gged\": 2912,\n    \"nother\": 2913,\n    \"\\u2581fail\": 2914,\n    \"\\u2581tradition\": 2915,\n    \"\\u2581Cas\": 2916,\n    \"\\u2581trunk\": 2917,\n    \"\\u2581climb\": 2918,\n    \"kins\": 2919,\n    \"\\u2581fugitive\": 2920,\n    \"\\u2581chariot\": 2921,\n    \"\\u2581mile\": 2922,\n    \"\\u2581bras\": 2923,\n    \"\\u2581toil\": 2924,\n    \"\\u2581shoe\": 2925,\n    \"K\": 2926,\n    \"aram\": 2927,\n    \"you\": 2928,\n    \"Fern\": 2929,\n    \"\\u2581fold\": 2930,\n    \"\\u2581bone\": 2931,\n    \"\\u2581rail\": 2932,\n    \"\\u2581tear\": 2933,\n    \"\\u2581torment\": 2934,\n    \"\\u2581dress\": 2935,\n    \"\\u2581entreat\": 2936,\n    \"down\": 2937,\n    \"\\u2581baptize\": 2938,\n    \"rust\": 2939,\n    \"some\": 2940,\n    \"\\u2581provoke\": 2941,\n    \"doing\": 2942,\n    \"\\u2581becoming\": 2943,\n    \"\\u2581patient\": 2944,\n    \"\\u2581crow\": 2945,\n    \"\\u2581Maj\": 2946,\n    \"\\u2581murder\": 2947,\n    \"aithful\": 2948,\n    \"eathen\": 2949,\n    \"\\u2581vari\": 2950,\n    \"\\u2581advantage\": 2951,\n    \"\\u2581Barabbas\": 2952,\n    \"\\u2581Caiaphas\": 2953,\n    \"\\u2581Cephas\": 2954,\n    \"\\u2581Cilicia\": 2955,\n    \"\\u2581Naphtali\": 2956,\n    \"\\u2581Rejoice\": 2957,\n    \"\\u2581Return\": 2958,\n    \"\\u2581Stretch\": 2959,\n    \"\\u2581Zebulun\": 2960,\n    \"\\u2581abundance\": 2961,\n    \"\\u2581anguish\": 2962,\n    \"\\u2581attempt\": 2963,\n    \"\\u2581beauty\": 2964,\n    \"\\u2581capital\": 2965,\n    \"\\u2581cloak\": 2966,\n    \"\\u2581coffee\": 2967,\n    \"\\u2581courage\": 2968,\n    \"\\u2581dancing\": 2969,\n    \"\\u2581desperate\": 2970,\n    \"\\u2581example\": 2971,\n    \"\\u2581expedient\": 2972,\n    \"\\u2581experience\": 2973,\n    \"\\u2581necessity\": 2974,\n    \"\\u2581ninth\": 2975,\n    \"\\u2581nourish\": 2976,\n    \"\\u2581olive\": 2977,\n    \"\\u2581ouches\": 2978,\n    \"\\u2581perdition\": 2979,\n    \"\\u2581pledge\": 2980,\n    \"\\u2581renew\": 2981,\n    \"\\u2581stories\": 2982,\n    \"\\u2581supply\": 2983,\n    \"\\u2581terribl\": 2984,\n    \"\\u2581uncircumcised\": 2985,\n    \"\\u2581valley\": 2986,\n    \"\\u2581wolf\": 2987,\n    \"\\u2581almonds\": 2988,\n    \"\\u2581mitre\": 2989,\n    \"\\u2581stiff\": 2990,\n    \"\\u2581Bethlehem\": 2991,\n    \"\\u2581Dinah\": 2992,\n    \"\\u2581Scot\": 2993,\n    \"\\u2581blank\": 2994,\n    \"\\u2581easy\": 2995,\n    \"\\u2581narrow\": 2996,\n    \"\\u2581snake\": 2997,\n    \"\\u2581baby\": 2998,\n    \"\\u2581calm\": 2999,\n    \"\\u2581Mark\": 3000,\n    \"\\u2581dispute\": 3001,\n    \"\\u2581pattern\": 3002,\n    \"\\u2581redemption\": 3003,\n    \"\\u2581Rome\": 3004,\n    \"\\u2581Think\": 3005,\n    \"\\u2581abomination\": 3006,\n    \"\\u2581conversation\": 3007,\n    \"\\u2581yoke\": 3008,\n    \"\\u2581provide\": 3009,\n    \"\\u2581tunnel\": 3010,\n    \"\\u2581townhouse\": 3011,\n    \"\\u2581chance\": 3012,\n    \"\\u2581Gerar\": 3013,\n    \"\\u2581coals\": 3014,\n    \"\\u2581Great\": 3015,\n    \"\\u2581Adah\": 3016,\n    \"\\u2581division\": 3017,\n    \"\\u2581blameless\": 3018,\n    \"\\u2581disgust\": 3019,\n    \"\\u2581lump\": 3020,\n    \"\\u2581Tyre\": 3021,\n    \"\\u2581impossible\": 3022,\n    \"\\u2581zealous\": 3023,\n    \"\\u2581blasphemy\": 3024,\n    \"\\u2581covetousness\": 3025,\n    \"\\u2581miserable\": 3026,\n    \"\\u2581admonish\": 3027,\n    \"\\u2581signet\": 3028,\n    \"\\u2581Jake\": 3029,\n    \"\\u2581Eber\": 3030,\n    \"\\u2581torn\": 3031,\n    \"ook\": 3032,\n    \"\\u2581sufficien\": 3033,\n    \"\\u2581spies\": 3034,\n    \"\\u2581partake\": 3035,\n    \"\\u2581profitable\": 3036,\n    \"\\u2581sorrowful\": 3037,\n    \"\\u2581dish\": 3038,\n    \"\\u2581dear\": 3039,\n    \"\\u2581privately\": 3040,\n    \"\\u2581kindled\": 3041,\n    \"\\u2581clay\": 3042,\n    \"\\u2581Lowan\": 3043,\n    \"\\u2581clerk\": 3044,\n    \"\\u2581skull\": 3045,\n    \"\\u2581shift\": 3046,\n    \"\\u2581fresh\": 3047,\n    \"\\u2581scourge\": 3048,\n    \"\\u2581Love\": 3049,\n    \"\\u2581vast\": 3050,\n    \"\\u2581weakness\": 3051,\n    \"\\u2581doesn\": 3052,\n    \"\\u2581cheek\": 3053,\n    \"\\u2581firstfruits\": 3054,\n    \"\\u2581uncleanness\": 3055,\n    \"\\u2581track\": 3056,\n    \"\\u2581ordained\": 3057,\n    \"\\u2581grabbed\": 3058,\n    \"\\u2581Day\": 3059,\n    \"\\u2581discover\": 3060,\n    \"\\u2581anyway\": 3061,\n    \"\\u2581wasn\": 3062,\n    \"\\u2581hopeless\": 3063,\n    \"\\u2581hay\": 3064,\n    \"\\u2581entirely\": 3065,\n    \"\\u2581selves\": 3066,\n    \"\\u2581fist\": 3067,\n    \"\\u2581health\": 3068,\n    \"\\u2581descending\": 3069,\n    \"\\u2581farther\": 3070,\n    \"\\u2581waved\": 3071,\n    \"\\u2581Soon\": 3072,\n    \"\\u2581stripes\": 3073,\n    \"light\": 3074,\n    \"\\u2581contain\": 3075,\n    \"\\u2581clearly\": 3076,\n    \"\\u2581smaller\": 3077,\n    \"up\": 3078,\n    \"line\": 3079,\n    \"\\u2581yelled\": 3080,\n    \"\\u2581endured\": 3081,\n    \"\\u2581disappeared\": 3082,\n    \"\\u2581pearls\": 3083,\n    \"\\u2581ridges\": 3084,\n    \"\\u2581diseases\": 3085,\n    \"ul\": 3086,\n    \"\\u2581pins\": 3087,\n    \"\\u2581limbs\": 3088,\n    \"\\u2581babes\": 3089,\n    \"\\u2581porch\": 3090,\n    \"\\u2581music\": 3091,\n    \"\\u2581corrupted\": 3092,\n    \"\\u2581openly\": 3093,\n    \"\\u2581bugs\": 3094,\n    \"mote\": 3095,\n    \"\\u2581dressed\": 3096,\n    \"\\u2581wagons\": 3097,\n    \"\\u2581transgressions\": 3098,\n    \"\\u2581clothing\": 3099,\n    \"\\u2581shade\": 3100,\n    \"\\u2581proved\": 3101,\n    \"\\u2581wit\": 3102,\n    \"\\u2581quarter\": 3103,\n    \"\\u2581freely\": 3104,\n    \"\\u2581teacheth\": 3105,\n    \"\\u2581sowed\": 3106,\n    \"\\u2581island\": 3107,\n    \"\\u2581poke\": 3108,\n    \"\\u2581drops\": 3109,\n    \"\\u2581pigs\": 3110,\n    \"\\u2581ordinances\": 3111,\n    \"\\u2581princes\": 3112,\n    \"pa\": 3113,\n    \"ab\": 3114,\n    \"\\u2581ra\": 3115,\n    \"\\u2581barely\": 3116,\n    \"ping\": 3117,\n    \"lee\": 3118,\n    \"\\u2581obeyed\": 3119,\n    \"\\u2581judgest\": 3120,\n    \"\\u2581nets\": 3121,\n    \"ites\": 3122,\n    \"\\u2581shepherds\": 3123,\n    \"\\u2581towns\": 3124,\n    \"\\u2581preacher\": 3125,\n    \"\\u2581beholding\": 3126,\n    \"ctually\": 3127,\n    \"\\u2581weeks\": 3128,\n    \"\\u2581hills\": 3129,\n    \"\\u2581sawest\": 3130,\n    \"\\u2581Seth\": 3131,\n    \"\\u2581seeme\": 3132,\n    \"\\u2581handle\": 3133,\n    \"\\u2581acknowledge\": 3134,\n    \"\\u2581Write\": 3135,\n    \"\\u2581opening\": 3136,\n    \"\\u2581songs\": 3137,\n    \"\\u2581perfected\": 3138,\n    \"\\u2581rods\": 3139,\n    \"ions\": 3140,\n    \"ee\": 3141,\n    \"iel\": 3142,\n    \"\\u2581lights\": 3143,\n    \"\\u2581ti\": 3144,\n    \"\\u2581lover\": 3145,\n    \"aved\": 3146,\n    \"liness\": 3147,\n    \"\\u2581strike\": 3148,\n    \"cy\": 3149,\n    \"\\u2581Ar\": 3150,\n    \"tuck\": 3151,\n    \"\\u2581sisters\": 3152,\n    \"\\u2581principal\": 3153,\n    \"\\u2581Les\": 3154,\n    \"\\u2581Al\": 3155,\n    \"ree\": 3156,\n    \"hu\": 3157,\n    \"\\u2581Z\": 3158,\n    \"\\u2581dra\": 3159,\n    \"\\u2581Whe\": 3160,\n    \"pe\": 3161,\n    \"ush\": 3162,\n    \"ft\": 3163,\n    \"mer\": 3164,\n    \"\\u2581thereby\": 3165,\n    \"\\u2581ended\": 3166,\n    \"\\u2581settl\": 3167,\n    \"\\u2581saidst\": 3168,\n    \"ated\": 3169,\n    \"\\u2581admir\": 3170,\n    \"\\u2581camest\": 3171,\n    \"\\u2581liken\": 3172,\n    \"dden\": 3173,\n    \"\\u2581bus\": 3174,\n    \"\\u2581wa\": 3175,\n    \"\\u2581du\": 3176,\n    \"ver\": 3177,\n    \"way\": 3178,\n    \"ice\": 3179,\n    \"\\u2581distress\": 3180,\n    \"\\u2581butter\": 3181,\n    \"ings\": 3182,\n    \"\\u2581hearted\": 3183,\n    \"\\u2581Am\": 3184,\n    \"\\u2581plan\": 3185,\n    \"ade\": 3186,\n    \"rash\": 3187,\n    \"ash\": 3188,\n    \"\\u2581Ja\": 3189,\n    \"ipped\": 3190,\n    \"ut\": 3191,\n    \"\\u2581Wa\": 3192,\n    \"\\u2581Er\": 3193,\n    \"il\": 3194,\n    \"W\": 3195,\n    \"house\": 3196,\n    \"over\": 3197,\n    \"\\u2581bullock\": 3198,\n    \"\\u2581platter\": 3199,\n    \"\\u2581plant\": 3200,\n    \"\\u2581tale\": 3201,\n    \"\\u2581bank\": 3202,\n    \"\\u2581blade\": 3203,\n    \"\\u2581mock\": 3204,\n    \"\\u2581dance\": 3205,\n    \"\\u2581listen\": 3206,\n    \"\\u2581thunder\": 3207,\n    \"\\u2581clothe\": 3208,\n    \"\\u2581talent\": 3209,\n    \"\\u2581breast\": 3210,\n    \"\\u2581weigh\": 3211,\n    \"\\u2581envy\": 3212,\n    \"Just\": 3213,\n    \"stool\": 3214,\n    \"\\u2581forbear\": 3215,\n    \"deep\": 3216,\n    \"Where\": 3217,\n    \"but\": 3218,\n    \"So\": 3219,\n    \"Go\": 3220,\n    \"\\u2581suppos\": 3221,\n    \"My\": 3222,\n    \"\\u2581afflict\": 3223,\n    \"\\u2581disappear\": 3224,\n    \"\\u2581favour\": 3225,\n    \"\\u2581hatch\": 3226,\n    \"\\u2581jump\": 3227,\n    \"\\u2581finish\": 3228,\n    \"\\u2581harp\": 3229,\n    \"same\": 3230,\n    \"\\u2581persecute\": 3231,\n    \"\\u2581harden\": 3232,\n    \"\\u2581plot\": 3233,\n    \"\\u2581pea\": 3234,\n    \"\\u2581silent\": 3235,\n    \"\\u2581quick\": 3236,\n    \"pon\": 3237,\n    \"\\u2581adulter\": 3238,\n    \"\\u2581careful\": 3239,\n    \"\\u2581fade\": 3240,\n    \"\\u2581potato\": 3241,\n    \"\\u2581engrav\": 3242,\n    \"\\u2581forsake\": 3243,\n    \"\\u2581birth\": 3244,\n    \"\\u2581speed\": 3245,\n    \"\\u2581Galil\": 3246,\n    \"\\u2581affection\": 3247,\n    \"\\u2581Achaia\": 3248,\n    \"\\u2581Aholibamah\": 3249,\n    \"\\u2581Arphaxad\": 3250,\n    \"\\u2581Beelzebub\": 3251,\n    \"\\u2581Children\": 3252,\n    \"\\u2581Cornelius\": 3253,\n    \"\\u2581Cyprus\": 3254,\n    \"\\u2581Cyren\": 3255,\n    \"\\u2581Eliphaz\": 3256,\n    \"\\u2581Elisabeth\": 3257,\n    \"\\u2581Felix\": 3258,\n    \"\\u2581Fussy\": 3259,\n    \"\\u2581Galatia\": 3260,\n    \"\\u2581Grounds\": 3261,\n    \"\\u2581Hezron\": 3262,\n    \"\\u2581Lieutenant\": 3263,\n    \"\\u2581Melchizedek\": 3264,\n    \"\\u2581Milcah\": 3265,\n    \"\\u2581Zilpah\": 3266,\n    \"\\u2581Zoar\": 3267,\n    \"\\u2581accompan\": 3268,\n    \"\\u2581adversaries\": 3269,\n    \"\\u2581carnal\": 3270,\n    \"\\u2581enormous\": 3271,\n    \"\\u2581frozen\": 3272,\n    \"\\u2581furniture\": 3273,\n    \"\\u2581grandchildren\": 3274,\n    \"\\u2581grapes\": 3275,\n    \"\\u2581honour\": 3276,\n    \"\\u2581infirmity\": 3277,\n    \"\\u2581mediator\": 3278,\n    \"\\u2581midwives\": 3279,\n    \"\\u2581mischief\": 3280,\n    \"\\u2581obedient\": 3281,\n    \"\\u2581opportunity\": 3282,\n    \"\\u2581outdoors\": 3283,\n    \"\\u2581refuge\": 3284,\n    \"\\u2581ringstraked\": 3285,\n    \"\\u2581runners\": 3286,\n    \"\\u2581steep\": 3287,\n    \"\\u2581storm\": 3288,\n    \"\\u2581strove\": 3289,\n    \"\\u2581woke\": 3290,\n    \"\\u2581wolves\": 3291,\n    \"\\u2581clever\": 3292,\n    \"\\u2581slaughter\": 3293,\n    \"\\u2581Olives\": 3294,\n    \"\\u2581aloud\": 3295,\n    \"\\u2581beckon\": 3296,\n    \"\\u2581gnash\": 3297,\n    \"\\u2581occupied\": 3298,\n    \"\\u2581pertain\": 3299,\n    \"\\u2581adversary\": 3300,\n    \"\\u2581myrrh\": 3301,\n    \"\\u2581Korah\": 3302,\n    \"\\u2581consecrate\": 3303,\n    \"\\u2581regular\": 3304,\n    \"\\u2581important\": 3305,\n    \"\\u2581doctor\": 3306,\n    \"\\u2581stockade\": 3307,\n    \"\\u2581punishment\": 3308,\n    \"\\u2581sinneth\": 3309,\n    \"\\u2581Enos\": 3310,\n    \"\\u2581birthright\": 3311,\n    \"\\u2581holiness\": 3312,\n    \"\\u2581stedfast\": 3313,\n    \"\\u2581offspring\": 3314,\n    \"\\u2581frame\": 3315,\n    \"\\u2581Hades\": 3316,\n    \"\\u2581train\": 3317,\n    \"\\u2581mercies\": 3318,\n    \"\\u2581freedom\": 3319,\n    \"\\u2581litter\": 3320,\n    \"\\u2581comment\": 3321,\n    \"\\u2581reins\": 3322,\n    \"\\u2581grate\": 3323,\n    \"\\u2581check\": 3324,\n    \"\\u2581Bash\": 3325,\n    \"\\u2581flight\": 3326,\n    \"\\u2581imagination\": 3327,\n    \"\\u2581useful\": 3328,\n    \"\\u2581lame\": 3329,\n    \"\\u2581Asher\": 3330,\n    \"\\u2581rejecteth\": 3331,\n    \"\\u2581hundredfold\": 3332,\n    \"\\u2581err\": 3333,\n    \"\\u2581human\": 3334,\n    \"\\u2581sense\": 3335,\n    \"\\u2581perplexed\": 3336,\n    \"\\u2581evermore\": 3337,\n    \"\\u2581books\": 3338,\n    \"\\u2581fever\": 3339,\n    \"\\u2581Him\": 3340,\n    \"\\u2581spear\": 3341,\n    \"\\u2581swarm\": 3342,\n    \"\\u2581Bar\": 3343,\n    \"\\u2581southward\": 3344,\n    \"\\u2581chest\": 3345,\n    \"\\u2581Cainan\": 3346,\n    \"\\u2581eastward\": 3347,\n    \"\\u2581adorn\": 3348,\n    \"\\u2581bake\": 3349,\n    \"\\u2581throat\": 3350,\n    \"\\u2581onyx\": 3351,\n    \"\\u2581lend\": 3352,\n    \"zale\": 3353,\n    \"\\u2581fourscore\": 3354,\n    \"\\u2581recent\": 3355,\n    \"\\u2581gladness\": 3356,\n    \"\\u2581frost\": 3357,\n    \"\\u2581menservants\": 3358,\n    \"\\u2581sickle\": 3359,\n    \"\\u2581view\": 3360,\n    \"\\u2581box\": 3361,\n    \"\\u2581pursued\": 3362,\n    \"\\u2581march\": 3363,\n    \"\\u2581Watch\": 3364,\n    \"\\u2581shineth\": 3365,\n    \"\\u2581ham\": 3366,\n    \"\\u2581managed\": 3367,\n    \"\\u2581ascended\": 3368,\n    \"\\u2581deceived\": 3369,\n    \"\\u2581refreshed\": 3370,\n    \"\\u2581passage\": 3371,\n    \"\\u2581tithes\": 3372,\n    \"\\u2581soweth\": 3373,\n    \"ked\": 3374,\n    \"\\u2581Hast\": 3375,\n    \"\\u2581loaded\": 3376,\n    \"\\u2581strengthened\": 3377,\n    \"der\": 3378,\n    \"\\u2581Gad\": 3379,\n    \"\\u2581axe\": 3380,\n    \"\\u2581convict\": 3381,\n    \"\\u2581manna\": 3382,\n    \"tial\": 3383,\n    \"\\u2581scared\": 3384,\n    \"\\u2581restored\": 3385,\n    \"skins\": 3386,\n    \"\\u2581realize\": 3387,\n    \"\\u2581observed\": 3388,\n    \"\\u2581gladly\": 3389,\n    \"\\u2581pe\": 3390,\n    \"\\u2581tasted\": 3391,\n    \"\\u2581climbing\": 3392,\n    \"\\u2581Amorites\": 3393,\n    \"\\u2581Only\": 3394,\n    \"\\u2581higher\": 3395,\n    \"\\u2581wondering\": 3396,\n    \"ue\": 3397,\n    \"\\u2581weary\": 3398,\n    \"\\u2581answereth\": 3399,\n    \"\\u2581hanged\": 3400,\n    \"\\u2581mid\": 3401,\n    \"\\u2581rust\": 3402,\n    \"\\u2581plans\": 3403,\n    \"\\u2581sealed\": 3404,\n    \"\\u2581incorruptible\": 3405,\n    \"\\u2581beware\": 3406,\n    \"\\u2581Hai\": 3407,\n    \"\\u2581trunks\": 3408,\n    \"\\u2581therewith\": 3409,\n    \"\\u2581steps\": 3410,\n    \"\\u2581noon\": 3411,\n    \"\\u2581redeemed\": 3412,\n    \"\\u2581baker\": 3413,\n    \"\\u2581doves\": 3414,\n    \"\\u2581learning\": 3415,\n    \"\\u2581fainted\": 3416,\n    \"\\u2581upward\": 3417,\n    \"\\u2581shadows\": 3418,\n    \"\\u2581tempt\": 3419,\n    \"\\u2581herbs\": 3420,\n    \"\\u2581feeding\": 3421,\n    \"immed\": 3422,\n    \"\\u2581dogs\": 3423,\n    \"tion\": 3424,\n    \"\\u2581castle\": 3425,\n    \"\\u2581accus\": 3426,\n    \"\\u2581meant\": 3427,\n    \"L\": 3428,\n    \"ack\": 3429,\n    \"\\u2581wouldn\": 3430,\n    \"\\u2581attend\": 3431,\n    \"\\u2581suffering\": 3432,\n    \"\\u2581possessions\": 3433,\n    \"stroke\": 3434,\n    \"\\u2581sixt\": 3435,\n    \"\\u2581reed\": 3436,\n    \"\\u2581spot\": 3437,\n    \"\\u2581candlesticks\": 3438,\n    \"\\u2581pitch\": 3439,\n    \"do\": 3440,\n    \"\\u2581captains\": 3441,\n    \"\\u2581temper\": 3442,\n    \"\\u2581imagine\": 3443,\n    \"\\u2581lovely\": 3444,\n    \"\\u2581seats\": 3445,\n    \"more\": 3446,\n    \"\\u2581blot\": 3447,\n    \"\\u2581Roman\": 3448,\n    \"ins\": 3449,\n    \"go\": 3450,\n    \"\\u2581killing\": 3451,\n    \"\\u2581keeper\": 3452,\n    \"\\u2581wars\": 3453,\n    \"om\": 3454,\n    \"\\u2581Will\": 3455,\n    \"\\u2581boats\": 3456,\n    \"\\u2581sounds\": 3457,\n    \"ith\": 3458,\n    \"lock\": 3459,\n    \"\\u2581courts\": 3460,\n    \"\\u2581cow\": 3461,\n    \"\\u2581Ad\": 3462,\n    \"\\u2581El\": 3463,\n    \"she\": 3464,\n    \"os\": 3465,\n    \"\\u2581tents\": 3466,\n    \"ified\": 3467,\n    \"\\u2581herd\": 3468,\n    \"\\u2581De\": 3469,\n    \"nd\": 3470,\n    \"ship\": 3471,\n    \"\\u2581fan\": 3472,\n    \"ni\": 3473,\n    \"\\u2581base\": 3474,\n    \"\\u2581dippe\": 3475,\n    \"\\u2581Bo\": 3476,\n    \"\\u2581worm\": 3477,\n    \"\\u2581comest\": 3478,\n    \"dge\": 3479,\n    \"\\u2581pai\": 3480,\n    \"N\": 3481,\n    \"\\u2581prov\": 3482,\n    \"\\u2581sa\": 3483,\n    \"ble\": 3484,\n    \"\\u2581yell\": 3485,\n    \"\\u2581va\": 3486,\n    \"ster\": 3487,\n    \"br\": 3488,\n    \"don\": 3489,\n    \"\\u2581n\": 3490,\n    \"\\u2581fro\": 3491,\n    \"pers\": 3492,\n    \"\\u2581gun\": 3493,\n    \"\\u2581com\": 3494,\n    \"ane\": 3495,\n    \"ally\": 3496,\n    \"\\u2581befall\": 3497,\n    \"ay\": 3498,\n    \"test\": 3499,\n    \"\\u2581pre\": 3500,\n    \"head\": 3501,\n    \"\\u2581Yes\": 3502,\n    \"set\": 3503,\n    \"ough\": 3504,\n    \"servant\": 3505,\n    \"lk\": 3506,\n    \"pped\": 3507,\n    \"\\u2581hours\": 3508,\n    \"\\u2581cha\": 3509,\n    \"\\u2581scrap\": 3510,\n    \"\\u2581Sa\": 3511,\n    \"\\u2581balloon\": 3512,\n    \"\\u2581webs\": 3513,\n    \"\\u2581scatter\": 3514,\n    \"\\u2581whoso\": 3515,\n    \"\\u2581labour\": 3516,\n    \"ations\": 3517,\n    \"fold\": 3518,\n    \"\\u2581sepulchre\": 3519,\n    \"\\u2581brick\": 3520,\n    \"\\u2581lion\": 3521,\n    \"\\u2581statute\": 3522,\n    \"\\u2581provision\": 3523,\n    \"\\u2581liar\": 3524,\n    \"\\u2581persecution\": 3525,\n    \"\\u2581messenger\": 3526,\n    \"\\u2581maidservant\": 3527,\n    \"\\u2581murderer\": 3528,\n    \"\\u2581wound\": 3529,\n    \"\\u2581wagon\": 3530,\n    \"\\u2581transgression\": 3531,\n    \"sh\": 3532,\n    \"\\u2581idol\": 3533,\n    \"ced\": 3534,\n    \"\\u2581publican\": 3535,\n    \"\\u2581Canaanite\": 3536,\n    \"H\": 3537,\n    \"control\": 3538,\n    \"Please\": 3539,\n    \"ists\": 3540,\n    \"\\u2581stir\": 3541,\n    \"\\u2581receiv\": 3542,\n    \"May\": 3543,\n    \"\\u2581pound\": 3544,\n    \"\\u2581officer\": 3545,\n    \"chamber\": 3546,\n    \"\\u2581gnaw\": 3547,\n    \"\\u2581tabernacles\": 3548,\n    \"Some\": 3549,\n    \"Come\": 3550,\n    \"Templeton\": 3551,\n    \"li\": 3552,\n    \"\\u2581boil\": 3553,\n    \"She\": 3554,\n    \"\\u2581attain\": 3555,\n    \"\\u2581confirm\": 3556,\n    \"\\u2581oppress\": 3557,\n    \"\\u2581bark\": 3558,\n    \"icken\": 3559,\n    \"\\u2581reveal\": 3560,\n    \"\\u2581eviden\": 3561,\n    \"All\": 3562,\n    \"\\u2581Y\": 3563,\n    \"\\u2581fin\": 3564,\n    \"\\u2581deceive\": 3565,\n    \"\\u2581sc\": 3566,\n    \"\\u2581peri\": 3567,\n    \"\\u2581mud\": 3568,\n    \"\\u2581gird\": 3569,\n    \"\\u2581inquire\": 3570,\n    \"\\u2581require\": 3571,\n    \"rough\": 3572,\n    \"bor\": 3573,\n    \"\\u2581remove\": 3574,\n    \"\\u2581fierce\": 3575,\n    \"\\u2581assured\": 3576,\n    \"\\u2581glorious\": 3577,\n    \"\\u2581lone\": 3578,\n    \"uffer\": 3579,\n    \"\\u2581knock\": 3580,\n    \"\\u2581Syria\": 3581,\n    \"gers\": 3582,\n    \"\\u2581gentle\": 3583,\n    \"\\u2581sect\": 3584,\n    \"urthermore\": 3585,\n    \"\\u2581correct\": 3586,\n    \"stitute\": 3587,\n    \"\\u2581abst\": 3588,\n    \"\\u2581effect\": 3589,\n    \"\\u2581wool\": 3590,\n    \"torium\": 3591,\n    \"\\u2581Alexander\": 3592,\n    \"\\u2581Aquila\": 3593,\n    \"\\u2581Believe\": 3594,\n    \"\\u2581Creek\": 3595,\n    \"\\u2581Eleazar\": 3596,\n    \"\\u2581Hebron\": 3597,\n    \"\\u2581Iconium\": 3598,\n    \"\\u2581Issachar\": 3599,\n    \"\\u2581Jericho\": 3600,\n    \"\\u2581KING\": 3601,\n    \"\\u2581Laodicea\": 3602,\n    \"\\u2581Lystra\": 3603,\n    \"\\u2581Machpelah\": 3604,\n    \"\\u2581Mahalaleel\": 3605,\n    \"\\u2581Methuselah\": 3606,\n    \"\\u2581Nazarene\": 3607,\n    \"\\u2581Peleg\": 3608,\n    \"\\u2581Sunday\": 3609,\n    \"\\u2581Troas\": 3610,\n    \"\\u2581Zibeon\": 3611,\n    \"\\u2581audience\": 3612,\n    \"\\u2581autumn\": 3613,\n    \"\\u2581baptizing\": 3614,\n    \"\\u2581blemish\": 3615,\n    \"\\u2581bracelets\": 3616,\n    \"\\u2581breeze\": 3617,\n    \"\\u2581ceiling\": 3618,\n    \"\\u2581cleave\": 3619,\n    \"\\u2581conditions\": 3620,\n    \"\\u2581desolation\": 3621,\n    \"\\u2581eldest\": 3622,\n    \"\\u2581enmity\": 3623,\n    \"\\u2581ensample\": 3624,\n    \"\\u2581execute\": 3625,\n    \"\\u2581extra\": 3626,\n    \"\\u2581foreordained\": 3627,\n    \"\\u2581foreskin\": 3628,\n    \"\\u2581ignorance\": 3629,\n    \"\\u2581jasper\": 3630,\n    \"\\u2581majesty\": 3631,\n    \"\\u2581merchandise\": 3632,\n    \"\\u2581mirror\": 3633,\n    \"\\u2581muscle\": 3634,\n    \"\\u2581newspaper\": 3635,\n    \"\\u2581opinion\": 3636,\n    \"\\u2581plenteous\": 3637,\n    \"\\u2581rejoicing\": 3638,\n    \"\\u2581relief\": 3639,\n    \"\\u2581represent\": 3640,\n    \"\\u2581reprobate\": 3641,\n    \"\\u2581reserved\": 3642,\n    \"\\u2581rotten\": 3643,\n    \"\\u2581serving\": 3644,\n    \"\\u2581studie\": 3645,\n    \"\\u2581taskmasters\": 3646,\n    \"\\u2581tetrarch\": 3647,\n    \"\\u2581tobacco\": 3648,\n    \"\\u2581treasury\": 3649,\n    \"\\u2581unprofitable\": 3650,\n    \"\\u2581Army\": 3651,\n    \"\\u2581Reu\": 3652,\n    \"\\u2581Word\": 3653,\n    \"\\u2581downhill\": 3654,\n    \"\\u2581overshadow\": 3655,\n    \"\\u2581paused\": 3656,\n    \"\\u2581queer\": 3657,\n    \"\\u2581roar\": 3658,\n    \"\\u2581savor\": 3659,\n    \"\\u2581shield\": 3660,\n    \"\\u2581magic\": 3661,\n    \"\\u2581Eden\": 3662,\n    \"\\u2581existence\": 3663,\n    \"\\u2581spell\": 3664,\n    \"\\u2581Alph\": 3665,\n    \"\\u2581scorch\": 3666,\n    \"\\u2581soap\": 3667,\n    \"\\u2581success\": 3668,\n    \"\\u2581excellenc\": 3669,\n    \"\\u2581needlework\": 3670,\n    \"\\u2581stink\": 3671,\n    \"\\u2581limit\": 3672,\n    \"\\u2581grind\": 3673,\n    \"\\u2581estate\": 3674,\n    \"\\u2581magnified\": 3675,\n    \"\\u2581Jesse\": 3676,\n    \"\\u2581triumph\": 3677,\n    \"\\u2581foursquare\": 3678,\n    \"\\u2581Tamar\": 3679,\n    \"\\u2581vinegar\": 3680,\n    \"\\u2581quail\": 3681,\n    \"\\u2581brave\": 3682,\n    \"\\u2581displease\": 3683,\n    \"\\u2581unfruitful\": 3684,\n    \"\\u2581aforetime\": 3685,\n    \"\\u2581Government\": 3686,\n    \"\\u2581situation\": 3687,\n    \"\\u2581folk\": 3688,\n    \"\\u2581serious\": 3689,\n    \"\\u2581squatted\": 3690,\n    \"\\u2581Salah\": 3691,\n    \"\\u2581fame\": 3692,\n    \"\\u2581doughnut\": 3693,\n    \"\\u2581herdmen\": 3694,\n    \"\\u2581encamp\": 3695,\n    \"\\u2581government\": 3696,\n    \"\\u2581message\": 3697,\n    \"\\u2581omer\": 3698,\n    \"\\u2581Jared\": 3699,\n    \"\\u2581object\": 3700,\n    \"\\u2581readiness\": 3701,\n    \"\\u2581Reuel\": 3702,\n    \"\\u2581Rain\": 3703,\n    \"\\u2581hypocrisy\": 3704,\n    \"\\u2581tenons\": 3705,\n    \"\\u2581center\": 3706,\n    \"\\u2581Moon\": 3707,\n    \"\\u2581melt\": 3708,\n    \"\\u2581barnyard\": 3709,\n    \"\\u2581dangerous\": 3710,\n    \"\\u2581dy\": 3711,\n    \"\\u2581proof\": 3712,\n    \"\\u2581depth\": 3713,\n    \"\\u2581match\": 3714,\n    \"\\u2581Rise\": 3715,\n    \"\\u2581saving\": 3716,\n    \"\\u2581Shelah\": 3717,\n    \"\\u2581Syrian\": 3718,\n    \"\\u2581Old\": 3719,\n    \"\\u2581squash\": 3720,\n    \"\\u2581range\": 3721,\n    \"\\u2581recover\": 3722,\n    \"\\u2581thrash\": 3723,\n    \"\\u2581study\": 3724,\n    \"\\u2581Without\": 3725,\n    \"\\u2581spotted\": 3726,\n    \"\\u2581mass\": 3727,\n    \"\\u2581laden\": 3728,\n    \"\\u2581convert\": 3729,\n    \"\\u2581whiskers\": 3730,\n    \"\\u2581prophesied\": 3731,\n    \"\\u2581purchased\": 3732,\n    \"\\u2581justice\": 3733,\n    \"ext\": 3734,\n    \"\\u2581surety\": 3735,\n    \"\\u2581lonely\": 3736,\n    \"\\u2581eighth\": 3737,\n    \"\\u2581repeated\": 3738,\n    \"\\u2581sniffed\": 3739,\n    \"\\u2581vexed\": 3740,\n    \"\\u2581prof\": 3741,\n    \"\\u2581reproved\": 3742,\n    \"\\u2581edifying\": 3743,\n    \"workers\": 3744,\n    \"\\u2581pair\": 3745,\n    \"\\u2581ripe\": 3746,\n    \"\\u2581sickness\": 3747,\n    \"\\u2581sum\": 3748,\n    \"\\u2581nurse\": 3749,\n    \"\\u2581sinful\": 3750,\n    \"\\u2581sway\": 3751,\n    \"\\u2581Hur\": 3752,\n    \"\\u2581fixed\": 3753,\n    \"cut\": 3754,\n    \"ael\": 3755,\n    \"\\u2581circle\": 3756,\n    \"\\u2581couch\": 3757,\n    \"\\u2581inquired\": 3758,\n    \"muel\": 3759,\n    \"\\u2581setting\": 3760,\n    \"\\u2581blaspheme\": 3761,\n    \"\\u2581instructed\": 3762,\n    \"\\u2581collected\": 3763,\n    \"\\u2581covet\": 3764,\n    \"\\u2581exten\": 3765,\n    \"\\u2581nodded\": 3766,\n    \"\\u2581softly\": 3767,\n    \"\\u2581groaning\": 3768,\n    \"\\u2581evident\": 3769,\n    \"\\u2581backward\": 3770,\n    \"\\u2581Other\": 3771,\n    \"\\u2581plainly\": 3772,\n    \"\\u2581riding\": 3773,\n    \"\\u2581somebody\": 3774,\n    \"\\u2581wounded\": 3775,\n    \"\\u2581despised\": 3776,\n    \"\\u2581released\": 3777,\n    \"\\u2581lace\": 3778,\n    \"\\u2581marvell\": 3779,\n    \"\\u2581pervert\": 3780,\n    \"\\u2581Cret\": 3781,\n    \"\\u2581murmurings\": 3782,\n    \"\\u2581distressed\": 3783,\n    \"\\u2581forbidd\": 3784,\n    \"\\u2581distan\": 3785,\n    \"\\u2581cursed\": 3786,\n    \"\\u2581searching\": 3787,\n    \"\\u2581testifying\": 3788,\n    \"\\u2581hogs\": 3789,\n    \"\\u2581marketplaces\": 3790,\n    \"\\u2581Samaritans\": 3791,\n    \"\\u2581questionings\": 3792,\n    \"\\u2581accepted\": 3793,\n    \"\\u2581May\": 3794,\n    \"\\u2581openeth\": 3795,\n    \"\\u2581intent\": 3796,\n    \"\\u2581hairy\": 3797,\n    \"\\u2581laws\": 3798,\n    \"\\u2581sojourned\": 3799,\n    \"\\u2581ju\": 3800,\n    \"\\u2581pounds\": 3801,\n    \"\\u2581maidservants\": 3802,\n    \"\\u2581ours\": 3803,\n    \"\\u2581housetop\": 3804,\n    \"\\u2581plants\": 3805,\n    \"robably\": 3806,\n    \"\\u2581begged\": 3807,\n    \"\\u2581workers\": 3808,\n    \"uffle\": 3809,\n    \"\\u2581coves\": 3810,\n    \"\\u2581exhorted\": 3811,\n    \"mit\": 3812,\n    \"\\u2581paths\": 3813,\n    \"\\u2581virgins\": 3814,\n    \"\\u2581waves\": 3815,\n    \"\\u2581uttered\": 3816,\n    \"\\u2581labored\": 3817,\n    \"\\u2581speakest\": 3818,\n    \"\\u2581knops\": 3819,\n    \"Not\": 3820,\n    \"\\u2581shapes\": 3821,\n    \"\\u2581clearing\": 3822,\n    \"\\u2581Good\": 3823,\n    \"\\u2581hundreds\": 3824,\n    \"\\u2581entertain\": 3825,\n    \"\\u2581burying\": 3826,\n    \"\\u2581Mo\": 3827,\n    \"\\u2581beach\": 3828,\n    \"\\u2581bands\": 3829,\n    \"\\u2581pots\": 3830,\n    \"ech\": 3831,\n    \"\\u2581Eli\": 3832,\n    \"\\u2581appearing\": 3833,\n    \"\\u2581Mi\": 3834,\n    \"\\u2581drinketh\": 3835,\n    \"\\u2581supplications\": 3836,\n    \"\\u2581occasions\": 3837,\n    \"\\u2581Sometime\": 3838,\n    \"\\u2581Co\": 3839,\n    \"gging\": 3840,\n    \"\\u2581di\": 3841,\n    \"\\u2581rac\": 3842,\n    \"\\u2581serpents\": 3843,\n    \"\\u2581Ou\": 3844,\n    \"ide\": 3845,\n    \"\\u2581En\": 3846,\n    \"\\u2581roots\": 3847,\n    \"\\u2581fasting\": 3848,\n    \"\\u2581holes\": 3849,\n    \"\\u2581constrain\": 3850,\n    \"iness\": 3851,\n    \"\\u2581creeks\": 3852,\n    \"nce\": 3853,\n    \"\\u2581Pi\": 3854,\n    \"\\u2581char\": 3855,\n    \"\\u2581bother\": 3856,\n    \"\\u2581sayings\": 3857,\n    \"\\u2581smelling\": 3858,\n    \"\\u2581dreaming\": 3859,\n    \"\\u2581seest\": 3860,\n    \"\\u2581examin\": 3861,\n    \"\\u2581helping\": 3862,\n    \"\\u2581Ne\": 3863,\n    \"\\u2581pop\": 3864,\n    \"\\u2581Sin\": 3865,\n    \"\\u2581process\": 3866,\n    \"\\u2581gra\": 3867,\n    \"ha\": 3868,\n    \"\\u2581sta\": 3869,\n    \"\\u2581tangle\": 3870,\n    \"uch\": 3871,\n    \"how\": 3872,\n    \"by\": 3873,\n    \"longeth\": 3874,\n    \"ig\": 3875,\n    \"trusted\": 3876,\n    \"\\u2581nuts\": 3877,\n    \"\\u2581hairs\": 3878,\n    \"v\": 3879,\n    \"lushed\": 3880,\n    \"Is\": 3881,\n    \"tur\": 3882,\n    \"\\u2581Con\": 3883,\n    \"\\u2581signifie\": 3884,\n    \"lic\": 3885,\n    \"pic\": 3886,\n    \"\\u2581member\": 3887,\n    \"ious\": 3888,\n    \"\\u2581spi\": 3889,\n    \"pensation\": 3890,\n    \"\\u2581Ari\": 3891,\n    \"son\": 3892,\n    \"\\u2581Jo\": 3893,\n    \"\\u2581Le\": 3894,\n    \"\\u2581mere\": 3895,\n    \"\\u2581win\": 3896,\n    \"\\u2581cur\": 3897,\n    \"tic\": 3898,\n    \"treated\": 3899,\n    \"\\u2581sub\": 3900,\n    \"da\": 3901,\n    \"\\u2581welcome\": 3902,\n    \"are\": 3903,\n    \"\\u2581treasures\": 3904,\n    \"ign\": 3905,\n    \"\\u2581im\": 3906,\n    \"\\u2581bas\": 3907,\n    \"\\u2581ease\": 3908,\n    \"ancy\": 3909,\n    \"\\u2581sprinkle\": 3910,\n    \"\\u2581throw\": 3911,\n    \"\\u2581pie\": 3912,\n    \"lah\": 3913,\n    \"sive\": 3914,\n    \"\\u2581dodg\": 3915,\n    \"ale\": 3916,\n    \"\\u2581fain\": 3917,\n    \"\\u2581lords\": 3918,\n    \"\\u2581cutt\": 3919,\n    \"cession\": 3920,\n    \"io\": 3921,\n    \"\\u2581imagin\": 3922,\n    \"\\u2581simpl\": 3923,\n    \"bal\": 3924,\n    \"llen\": 3925,\n    \"\\u2581examine\": 3926,\n    \"\\u2581longing\": 3927,\n    \"\\u2581shave\": 3928,\n    \"\\u2581cor\": 3929,\n    \"shed\": 3930,\n    \"\\u2581heave\": 3931,\n    \"\\u2581Sheba\": 3932,\n    \"nas\": 3933,\n    \"pping\": 3934,\n    \"pots\": 3935,\n    \"\\u2581Gree\": 3936,\n    \"\\u2581min\": 3937,\n    \"tained\": 3938,\n    \"\\u2581cap\": 3939,\n    \"\\u2581flu\": 3940,\n    \"own\": 3941,\n    \"right\": 3942,\n    \"ving\": 3943,\n    \"\\u2581Sha\": 3944,\n    \"long\": 3945,\n    \"ged\": 3946,\n    \"\\u2581Ju\": 3947,\n    \"\\u2581Ten\": 3948,\n    \"like\": 3949,\n    \"M\": 3950,\n    \"cept\": 3951,\n    \"hold\": 3952,\n    \"\\u2581ga\": 3953,\n    \"\\u2581rid\": 3954,\n    \"held\": 3955,\n    \"ccord\": 3956,\n    \"\\u2581tumult\": 3957,\n    \"\\u2581trans\": 3958,\n    \"\\u2581eunuch\": 3959,\n    \"\\u2581shilling\": 3960,\n    \"\\u2581chestnut\": 3961,\n    \"corruptible\": 3962,\n    \"\\u2581sheet\": 3963,\n    \"\\u2581plate\": 3964,\n    \"\\u2581Samaritan\": 3965,\n    \"\\u2581marketplace\": 3966,\n    \"\\u2581Amorite\": 3967,\n    \"\\u2581babe\": 3968,\n    \"worker\": 3969,\n    \"\\u2581hunter\": 3970,\n    \"\\u2581push\": 3971,\n    \"wear\": 3972,\n    \"\\u2581hog\": 3973,\n    \"\\u2581limb\": 3974,\n    \"\\u2581Na\": 3975,\n    \"\\u2581instruction\": 3976,\n    \"Will\": 3977,\n    \"color\": 3978,\n    \"When\": 3979,\n    \"Wilbur\": 3980,\n    \"\\u2581includ\": 3981,\n    \"midst\": 3982,\n    \"\\u2581pin\": 3983,\n    \"\\u2581accomplish\": 3984,\n    \"Of\": 3985,\n    \"\\u2581prevail\": 3986,\n    \"\\u2581Late\": 3987,\n    \"\\u2581hind\": 3988,\n    \"\\u2581charg\": 3989,\n    \"\\u2581handful\": 3990,\n    \"yard\": 3991,\n    \"\\u2581dim\": 3992,\n    \"\\u2581K\": 3993,\n    \"\\u2581decide\": 3994,\n    \"\\u2581conceive\": 3995,\n    \"\\u2581circumcise\": 3996,\n    \"lace\": 3997,\n    \"ursed\": 3998,\n    \"\\u2581lunch\": 3999,\n    \"\\u2581mouths\": 4000,\n    \"\\u2581confident\": 4001,\n    \"\\u2581fervent\": 4002,\n    \"\\u2581brief\": 4003,\n    \"\\u2581shout\": 4004,\n    \"\\u2581deceitful\": 4005,\n    \"\\u2581difficult\": 4006,\n    \"uddenly\": 4007,\n    \"\\u2581warn\": 4008,\n    \"\\u2581overthrow\": 4009,\n    \"\\u2581rend\": 4010,\n    \"\\u2581purse\": 4011,\n    \"\\u2581zeal\": 4012,\n    \"\\u2581confus\": 4013,\n    \"\\u2581deceit\": 4014,\n    \"\\u2581cruel\": 4015,\n    \"\\u2581pant\": 4016,\n    \"\\u2581Corinth\": 4017,\n    \"\\u2581Bethsaida\": 4018,\n    \"\\u2581Boudinot\": 4019,\n    \"\\u2581Chedorlaomer\": 4020,\n    \"\\u2581Chief\": 4021,\n    \"\\u2581Deliver\": 4022,\n    \"\\u2581Friend\": 4023,\n    \"\\u2581Nadab\": 4024,\n    \"\\u2581Pamphylia\": 4025,\n    \"\\u2581Philippi\": 4026,\n    \"\\u2581Serug\": 4027,\n    \"\\u2581Tarsus\": 4028,\n    \"\\u2581Thomas\": 4029,\n    \"\\u2581Tychicus\": 4030,\n    \"\\u2581YHWH\": 4031,\n    \"\\u2581abolish\": 4032,\n    \"\\u2581accurately\": 4033,\n    \"\\u2581affrighted\": 4034,\n    \"\\u2581amazement\": 4035,\n    \"\\u2581anathema\": 4036,\n    \"\\u2581attitude\": 4037,\n    \"\\u2581beguile\": 4038,\n    \"\\u2581betrothed\": 4039,\n    \"\\u2581borrow\": 4040,\n    \"\\u2581bridle\": 4041,\n    \"\\u2581carriage\": 4042,\n    \"\\u2581cheese\": 4043,\n    \"\\u2581consecration\": 4044,\n    \"\\u2581cornmeal\": 4045,\n    \"\\u2581cotton\": 4046,\n    \"\\u2581dissolved\": 4047,\n    \"\\u2581furlongs\": 4048,\n    \"\\u2581grandmother\": 4049,\n    \"\\u2581grandstand\": 4050,\n    \"\\u2581grief\": 4051,\n    \"\\u2581grinned\": 4052,\n    \"\\u2581heretofore\": 4053,\n    \"\\u2581hospitality\": 4054,\n    \"\\u2581hurry\": 4055,\n    \"\\u2581infirmities\": 4056,\n    \"\\u2581insurrection\": 4057,\n    \"\\u2581leather\": 4058,\n    \"\\u2581magazine\": 4059,\n    \"\\u2581mandrakes\": 4060,\n    \"\\u2581muttered\": 4061,\n    \"\\u2581nutrients\": 4062,\n    \"\\u2581organisms\": 4063,\n    \"\\u2581perfume\": 4064,\n    \"\\u2581powder\": 4065,\n    \"\\u2581racket\": 4066,\n    \"\\u2581regret\": 4067,\n    \"\\u2581religion\": 4068,\n    \"\\u2581spinnerets\": 4069,\n    \"\\u2581strict\": 4070,\n    \"\\u2581stunned\": 4071,\n    \"\\u2581swelling\": 4072,\n    \"\\u2581task\": 4073,\n    \"\\u2581terrified\": 4074,\n    \"\\u2581thieves\": 4075,\n    \"\\u2581thoroughly\": 4076,\n    \"\\u2581ungodliness\": 4077,\n    \"\\u2581upstairs\": 4078,\n    \"\\u2581vanity\": 4079,\n    \"\\u2581vengeance\": 4080,\n    \"\\u2581whisky\": 4081,\n    \"\\u2581avoid\": 4082,\n    \"\\u2581cream\": 4083,\n    \"\\u2581deaf\": 4084,\n    \"\\u2581decision\": 4085,\n    \"\\u2581excess\": 4086,\n    \"\\u2581flavor\": 4087,\n    \"\\u2581indoors\": 4088,\n    \"\\u2581kinsmen\": 4089,\n    \"\\u2581lascivious\": 4090,\n    \"\\u2581orchard\": 4091,\n    \"\\u2581progress\": 4092,\n    \"\\u2581sweep\": 4093,\n    \"\\u2581thumb\": 4094,\n    \"\\u2581worried\": 4095,\n    \"\\u2581Diana\": 4096,\n    \"\\u2581Nathanael\": 4097,\n    \"\\u2581burst\": 4098,\n    \"\\u2581neglect\": 4099,\n    \"\\u2581polish\": 4100,\n    \"\\u2581secur\": 4101,\n    \"closing\": 4102,\n    \"\\u2581Hosanna\": 4103,\n    \"\\u2581alien\": 4104,\n    \"\\u2581rumor\": 4105,\n    \"\\u2581slumber\": 4106,\n    \"\\u2581sneak\": 4107,\n    \"\\u2581Like\": 4108,\n    \"\\u2581gravity\": 4109,\n    \"\\u2581Aholi\": 4110,\n    \"\\u2581crumbs\": 4111,\n    \"\\u2581difference\": 4112,\n    \"\\u2581citizenship\": 4113,\n    \"\\u2581snout\": 4114,\n    \"Sleep\": 4115,\n    \"\\u2581choke\": 4116,\n    \"\\u2581heavily\": 4117,\n    \"\\u2581continuing\": 4118,\n    \"\\u2581fables\": 4119,\n    \"Humble\": 4120,\n    \"\\u2581Deep\": 4121,\n    \"\\u2581delay\": 4122,\n    \"\\u2581tag\": 4123,\n    \"\\u2581overtake\": 4124,\n    \"\\u2581bald\": 4125,\n    \"\\u2581odor\": 4126,\n    \"diment\": 4127,\n    \"\\u2581Gaius\": 4128,\n    \"\\u2581Zerah\": 4129,\n    \"\\u2581Jason\": 4130,\n    \"\\u2581bowels\": 4131,\n    \"\\u2581Heaven\": 4132,\n    \"\\u2581Depart\": 4133,\n    \"\\u2581support\": 4134,\n    \"\\u2581babies\": 4135,\n    \"\\u2581straitened\": 4136,\n    \"\\u2581consolation\": 4137,\n    \"\\u2581bucket\": 4138,\n    \"\\u2581riverboat\": 4139,\n    \"\\u2581seventeen\": 4140,\n    \"\\u2581Tru\": 4141,\n    \"\\u2581graft\": 4142,\n    \"\\u2581bleed\": 4143,\n    \"\\u2581urgent\": 4144,\n    \"\\u2581uncertain\": 4145,\n    \"\\u2581brook\": 4146,\n    \"\\u2581stewardship\": 4147,\n    \"\\u2581sincerity\": 4148,\n    \"\\u2581dig\": 4149,\n    \"\\u2581gentlemen\": 4150,\n    \"\\u2581dollar\": 4151,\n    \"\\u2581buck\": 4152,\n    \"\\u2581property\": 4153,\n    \"\\u2581wallet\": 4154,\n    \"\\u2581partner\": 4155,\n    \"\\u2581crook\": 4156,\n    \"\\u2581assign\": 4157,\n    \"\\u2581accusation\": 4158,\n    \"\\u2581otherwise\": 4159,\n    \"\\u2581Herodias\": 4160,\n    \"\\u2581provender\": 4161,\n    \"\\u2581scales\": 4162,\n    \"\\u2581confusion\": 4163,\n    \"\\u2581stem\": 4164,\n    \"\\u2581victory\": 4165,\n    \"\\u2581attack\": 4166,\n    \"\\u2581tower\": 4167,\n    \"\\u2581envie\": 4168,\n    \"\\u2581assay\": 4169,\n    \"\\u2581hys\": 4170,\n    \"\\u2581landscape\": 4171,\n    \"\\u2581liquor\": 4172,\n    \"\\u2581wot\": 4173,\n    \"\\u2581duty\": 4174,\n    \"\\u2581chew\": 4175,\n    \"\\u2581lice\": 4176,\n    \"\\u2581shamefully\": 4177,\n    \"\\u2581carton\": 4178,\n    \"\\u2581split\": 4179,\n    \"Bee\": 4180,\n    \"\\u2581dung\": 4181,\n    \"\\u2581shortened\": 4182,\n    \"\\u2581utterance\": 4183,\n    \"\\u2581distinction\": 4184,\n    \"\\u2581friendship\": 4185,\n    \"\\u2581expectation\": 4186,\n    \"\\u2581raw\": 4187,\n    \"\\u2581behave\": 4188,\n    \"\\u2581motionless\": 4189,\n    \"\\u2581square\": 4190,\n    \"\\u2581offence\": 4191,\n    \"\\u2581appearance\": 4192,\n    \"\\u2581potatoes\": 4193,\n    \"\\u2581firm\": 4194,\n    \"\\u2581westward\": 4195,\n    \"\\u2581filthy\": 4196,\n    \"\\u2581dizzy\": 4197,\n    \"\\u2581memory\": 4198,\n    \"\\u2581pepper\": 4199,\n    \"\\u2581spilled\": 4200,\n    \"\\u2581peach\": 4201,\n    \"\\u2581tossed\": 4202,\n    \"\\u2581potter\": 4203,\n    \"neck\": 4204,\n    \"\\u2581argument\": 4205,\n    \"\\u2581Save\": 4206,\n    \"\\u2581cris\": 4207,\n    \"\\u2581election\": 4208,\n    \"\\u2581punished\": 4209,\n    \"\\u2581frightened\": 4210,\n    \"\\u2581booth\": 4211,\n    \"\\u2581ladies\": 4212,\n    \"agement\": 4213,\n    \"\\u2581Jonah\": 4214,\n    \"\\u2581Keep\": 4215,\n    \"\\u2581boast\": 4216,\n    \"\\u2581wake\": 4217,\n    \"\\u2581priesthood\": 4218,\n    \"\\u2581glanc\": 4219,\n    \"\\u2581squirrels\": 4220,\n    \"\\u2581relieved\": 4221,\n    \"\\u2581Onan\": 4222,\n    \"\\u2581Sam\": 4223,\n    \"tual\": 4224,\n    \"\\u2581chuckled\": 4225,\n    \"\\u2581explained\": 4226,\n    \"\\u2581trembled\": 4227,\n    \"\\u2581Over\": 4228,\n    \"\\u2581comfortable\": 4229,\n    \"\\u2581gainsaying\": 4230,\n    \"\\u2581graven\": 4231,\n    \"\\u2581slight\": 4232,\n    \"R\": 4233,\n    \"\\u2581stage\": 4234,\n    \"\\u2581pine\": 4235,\n    \"\\u2581moth\": 4236,\n    \"lapped\": 4237,\n    \"\\u2581pretend\": 4238,\n    \"\\u2581noble\": 4239,\n    \"\\u2581chastening\": 4240,\n    \"\\u2581scar\": 4241,\n    \"\\u2581upside\": 4242,\n    \"ross\": 4243,\n    \"\\u2581however\": 4244,\n    \"\\u2581weave\": 4245,\n    \"\\u2581Fall\": 4246,\n    \"\\u2581damp\": 4247,\n    \"\\u2581whispering\": 4248,\n    \"\\u2581tares\": 4249,\n    \"\\u2581warriors\": 4250,\n    \"\\u2581idolaters\": 4251,\n    \"\\u2581swo\": 4252,\n    \"\\u2581blasphemed\": 4253,\n    \"servants\": 4254,\n    \"\\u2581entr\": 4255,\n    \"\\u2581stern\": 4256,\n    \"\\u2581liver\": 4257,\n    \"\\u2581closer\": 4258,\n    \"\\u2581laborers\": 4259,\n    \"\\u2581Anna\": 4260,\n    \"\\u2581ax\": 4261,\n    \"\\u2581severally\": 4262,\n    \"\\u2581position\": 4263,\n    \"\\u2581key\": 4264,\n    \"\\u2581Nothing\": 4265,\n    \"\\u2581humbled\": 4266,\n    \"\\u2581assembled\": 4267,\n    \"\\u2581ma\": 4268,\n    \"\\u2581Jebusites\": 4269,\n    \"\\u2581fornicators\": 4270,\n    \"\\u2581shelters\": 4271,\n    \"\\u2581Perizzites\": 4272,\n    \"\\u2581grievously\": 4273,\n    \"\\u2581news\": 4274,\n    \"\\u2581throwing\": 4275,\n    \"\\u2581forthwith\": 4276,\n    \"\\u2581chase\": 4277,\n    \"\\u2581girded\": 4278,\n    \"\\u2581bug\": 4279,\n    \"\\u2581barking\": 4280,\n    \"\\u2581flatter\": 4281,\n    \"\\u2581sir\": 4282,\n    \"\\u2581spinn\": 4283,\n    \"\\u2581stack\": 4284,\n    \"\\u2581passions\": 4285,\n    \"\\u2581lid\": 4286,\n    \"\\u2581scattering\": 4287,\n    \"\\u2581fi\": 4288,\n    \"\\u2581thereunto\": 4289,\n    \"\\u2581seethe\": 4290,\n    \"\\u2581droppings\": 4291,\n    \"\\u2581joints\": 4292,\n    \"\\u2581sparrows\": 4293,\n    \"\\u2581personal\": 4294,\n    \"\\u2581tormented\": 4295,\n    \"\\u2581perisheth\": 4296,\n    \"\\u2581mocking\": 4297,\n    \"\\u2581failing\": 4298,\n    \"bed\": 4299,\n    \"\\u2581closely\": 4300,\n    \"\\u2581delighted\": 4301,\n    \"\\u2581starv\": 4302,\n    \"\\u2581fatherless\": 4303,\n    \"\\u2581deck\": 4304,\n    \"Thank\": 4305,\n    \"\\u2581eunuchs\": 4306,\n    \"\\u2581shillings\": 4307,\n    \"\\u2581chestnuts\": 4308,\n    \"\\u2581plates\": 4309,\n    \"\\u2581thinkest\": 4310,\n    \"som\": 4311,\n    \"\\u2581stopp\": 4312,\n    \"\\u2581treated\": 4313,\n    \"\\u2581veiled\": 4314,\n    \"\\u2581questioning\": 4315,\n    \"\\u2581invisible\": 4316,\n    \"\\u2581messengers\": 4317,\n    \"\\u2581Whom\": 4318,\n    \"ature\": 4319,\n    \"arley\": 4320,\n    \"\\u2581singing\": 4321,\n    \"\\u2581firstling\": 4322,\n    \"\\u2581wont\": 4323,\n    \"ole\": 4324,\n    \"\\u2581considered\": 4325,\n    \"\\u2581inhabited\": 4326,\n    \"sop\": 4327,\n    \"\\u2581mist\": 4328,\n    \"ton\": 4329,\n    \"\\u2581manif\": 4330,\n    \"\\u2581interesting\": 4331,\n    \"\\u2581prophesying\": 4332,\n    \"iest\": 4333,\n    \"\\u2581serveth\": 4334,\n    \"\\u2581ahead\": 4335,\n    \"\\u2581needeth\": 4336,\n    \"\\u2581exhorting\": 4337,\n    \"II\": 4338,\n    \"\\u2581efforts\": 4339,\n    \"vile\": 4340,\n    \"\\u2581cart\": 4341,\n    \"\\u2581proceeded\": 4342,\n    \"\\u2581older\": 4343,\n    \"\\u2581minutes\": 4344,\n    \"\\u2581filling\": 4345,\n    \"\\u2581windows\": 4346,\n    \"ards\": 4347,\n    \"\\u2581believest\": 4348,\n    \"\\u2581fashioned\": 4349,\n    \"\\u2581dec\": 4350,\n    \"\\u2581ja\": 4351,\n    \"\\u2581fle\": 4352,\n    \"\\u2581hatchets\": 4353,\n    \"\\u2581breathing\": 4354,\n    \"his\": 4355,\n    \"\\u2581heirs\": 4356,\n    \"\\u2581awful\": 4357,\n    \"\\u2581seals\": 4358,\n    \"ible\": 4359,\n    \"alam\": 4360,\n    \"side\": 4361,\n    \"\\u2581tooth\": 4362,\n    \"\\u2581divine\": 4363,\n    \"\\u2581forever\": 4364,\n    \"mp\": 4365,\n    \"\\u2581fowls\": 4366,\n    \"\\u2581miracles\": 4367,\n    \"\\u2581males\": 4368,\n    \"\\u2581pri\": 4369,\n    \"revious\": 4370,\n    \"\\u2581sco\": 4371,\n    \"\\u2581wheels\": 4372,\n    \"\\u2581afterwards\": 4373,\n    \"\\u2581questions\": 4374,\n    \"\\u2581remind\": 4375,\n    \"\\u2581Se\": 4376,\n    \"\\u2581cane\": 4377,\n    \"\\u2581pleasures\": 4378,\n    \"\\u2581helper\": 4379,\n    \"nath\": 4380,\n    \"co\": 4381,\n    \"ff\": 4382,\n    \"\\u2581tails\": 4383,\n    \"\\u2581Cana\": 4384,\n    \"bah\": 4385,\n    \"dom\": 4386,\n    \"\\u2581helped\": 4387,\n    \"\\u2581accuser\": 4388,\n    \"\\u2581pa\": 4389,\n    \"ran\": 4390,\n    \"\\u2581Bu\": 4391,\n    \"uth\": 4392,\n    \"hin\": 4393,\n    \"\\u2581images\": 4394,\n    \"\\u2581ash\": 4395,\n    \"row\": 4396,\n    \"\\u2581scorn\": 4397,\n    \"\\u2581doll\": 4398,\n    \"ded\": 4399,\n    \"gy\": 4400,\n    \"urge\": 4401,\n    \"\\u2581orders\": 4402,\n    \"\\u2581shell\": 4403,\n    \"eph\": 4404,\n    \"\\u2581points\": 4405,\n    \"ise\": 4406,\n    \"\\u2581peaceful\": 4407,\n    \"ears\": 4408,\n    \"\\u2581trac\": 4409,\n    \"ias\": 4410,\n    \"\\u2581sy\": 4411,\n    \"\\u2581su\": 4412,\n    \"\\u2581intreat\": 4413,\n    \"\\u2581lur\": 4414,\n    \"ast\": 4415,\n    \"\\u2581tip\": 4416,\n    \"ork\": 4417,\n    \"tal\": 4418,\n    \"\\u2581decompose\": 4419,\n    \"\\u2581bl\": 4420,\n    \"aph\": 4421,\n    \"\\u2581helps\": 4422,\n    \"\\u2581ver\": 4423,\n    \"\\u2581puffe\": 4424,\n    \"\\u2581empt\": 4425,\n    \"\\u2581runt\": 4426,\n    \"ating\": 4427,\n    \"rushed\": 4428,\n    \"\\u2581steppe\": 4429,\n    \"por\": 4430,\n    \"\\u2581commune\": 4431,\n    \"\\u2581decompos\": 4432,\n    \"\\u2581bees\": 4433,\n    \"nched\": 4434,\n    \"\\u2581mar\": 4435,\n    \"ify\": 4436,\n    \"ull\": 4437,\n    \"cked\": 4438,\n    \"\\u2581layer\": 4439,\n    \"als\": 4440,\n    \"\\u2581tu\": 4441,\n    \"\\u2581tool\": 4442,\n    \"phe\": 4443,\n    \"ile\": 4444,\n    \"\\u2581Si\": 4445,\n    \"\\u2581Ti\": 4446,\n    \"\\u2581bar\": 4447,\n    \"\\u2581Whit\": 4448,\n    \"rim\": 4449,\n    \"pture\": 4450,\n    \"\\u2581val\": 4451,\n    \"angled\": 4452,\n    \"\\u2581mol\": 4453,\n    \"\\u2581qua\": 4454,\n    \"erah\": 4455,\n    \"\\u2581kn\": 4456,\n    \"pen\": 4457,\n    \"iv\": 4458,\n    \"rous\": 4459,\n    \"\\u2581dip\": 4460,\n    \"\\u2581Wi\": 4461,\n    \"\\u2581distribute\": 4462,\n    \"\\u2581doer\": 4463,\n    \"com\": 4464,\n    \"\\u2581Ah\": 4465,\n    \"\\u2581settle\": 4466,\n    \"dull\": 4467,\n    \"\\u2581Di\": 4468,\n    \"\\u2581camel\": 4469,\n    \"ere\": 4470,\n    \"\\u2581whit\": 4471,\n    \"bout\": 4472,\n    \"\\u2581rag\": 4473,\n    \"\\u2581Ca\": 4474,\n    \"ians\": 4475,\n    \"\\u2581injur\": 4476,\n    \"lations\": 4477,\n    \"\\u2581overthr\": 4478,\n    \"rated\": 4479,\n    \"eak\": 4480,\n    \"unt\": 4481,\n    \"board\": 4482,\n    \"ung\": 4483,\n    \"onsider\": 4484,\n    \"eez\": 4485,\n    \"\\u2581cake\": 4486,\n    \"uck\": 4487,\n    \"\\u2581using\": 4488,\n    \"\\u2581Bela\": 4489,\n    \"ower\": 4490,\n    \"\\u2581Mu\": 4491,\n    \"round\": 4492,\n    \"work\": 4493,\n    \"\\u2581prefer\": 4494,\n    \"\\u2581vow\": 4495,\n    \"\\u2581skill\": 4496,\n    \"\\u2581Set\": 4497,\n    \"visible\": 4498,\n    \"antic\": 4499,\n    \"ttention\": 4500,\n    \"\\u2581candle\": 4501,\n    \"\\u2581invent\": 4502,\n    \"cerning\": 4503,\n    \"\\u2581exp\": 4504,\n    \"\\u2581groan\": 4505,\n    \"\\u2581nail\": 4506,\n    \"\\u2581rank\": 4507,\n    \"\\u2581debtor\": 4508,\n    \"\\u2581pomegranate\": 4509,\n    \"\\u2581weapon\": 4510,\n    \"ined\": 4511,\n    \"\\u2581murmur\": 4512,\n    \"ngel\": 4513,\n    \"\\u2581sparrow\": 4514,\n    \"\\u2581dropping\": 4515,\n    \"\\u2581deceiver\": 4516,\n    \"\\u2581disease\": 4517,\n    \"stone\": 4518,\n    \"\\u2581perver\": 4519,\n    \"\\u2581descend\": 4520,\n    \"\\u2581gosling\": 4521,\n    \"took\": 4522,\n    \"\\u2581loop\": 4523,\n    \"\\u2581pearl\": 4524,\n    \"\\u2581cla\": 4525,\n    \"aged\": 4526,\n    \"\\u2581partaker\": 4527,\n    \"\\u2581chain\": 4528,\n    \"course\": 4529,\n    \"tled\": 4530,\n    \"\\u2581prais\": 4531,\n    \"Stop\": 4532,\n    \"Nothing\": 4533,\n    \"\\u2581judg\": 4534,\n    \"Edith\": 4535,\n    \"terrific\": 4536,\n    \"\\u2581despair\": 4537,\n    \"D\": 4538,\n    \"bow\": 4539,\n    \"front\": 4540,\n    \"Who\": 4541,\n    \"worthy\": 4542,\n    \"gave\": 4543,\n    \"Did\": 4544,\n    \"\\u2581waste\": 4545,\n    \"\\u2581purify\": 4546,\n    \"master\": 4547,\n    \"fell\": 4548,\n    \"face\": 4549,\n    \"For\": 4550,\n    \"\\u2581load\": 4551,\n    \"thirst\": 4552,\n    \"\\u2581jo\": 4553,\n    \"\\u2581instruct\": 4554,\n    \"\\u2581threaten\": 4555,\n    \"\\u2581collect\": 4556,\n    \"\\u2581ridge\": 4557,\n    \"foot\": 4558,\n    \"\\u2581Kno\": 4559,\n    \"\\u2581murmuring\": 4560,\n    \"nets\": 4561,\n    \"Then\": 4562,\n    \"ouched\": 4563,\n    \"\\u2581strengthen\": 4564,\n    \"\\u2581preten\": 4565,\n    \"rent\": 4566,\n    \"key\": 4567,\n    \"\\u2581excite\": 4568,\n    \"\\u2581arrange\": 4569,\n    \"\\u2581tremble\": 4570,\n    \"\\u2581surprise\": 4571,\n    \"\\u2581reprove\": 4572,\n    \"\\u2581approve\": 4573,\n    \"\\u2581swa\": 4574,\n    \"\\u2581dr\": 4575,\n    \"ps\": 4576,\n    \"\\u2581general\": 4577,\n    \"ounded\": 4578,\n    \"\\u2581clan\": 4579,\n    \"\\u2581vague\": 4580,\n    \"\\u2581Ke\": 4581,\n    \"\\u2581exact\": 4582,\n    \"\\u2581abundant\": 4583,\n    \"\\u2581immediate\": 4584,\n    \"\\u2581bruise\": 4585,\n    \"\\u2581supplie\": 4586,\n    \"\\u2581greas\": 4587,\n    \"\\u2581map\": 4588,\n    \"\\u2581cheerful\": 4589,\n    \"\\u2581glorie\": 4590,\n    \"\\u2581sur\": 4591,\n    \"hood\": 4592,\n    \"They\": 4593,\n    \"\\u2581bon\": 4594,\n    \"\\u2581ski\": 4595,\n    \"\\u2581safe\": 4596,\n    \"weed\": 4597,\n    \"spect\": 4598,\n    \"\\u2581railing\": 4599,\n    \"\\u2581transgress\": 4600,\n    \"belief\": 4601,\n    \"they\": 4602,\n    \"\\u2581debt\": 4603,\n    \"\\u2581riot\": 4604,\n    \"\\u2581express\": 4605,\n    \"\\u2581cherub\": 4606,\n    \"\\u2581proper\": 4607,\n    \"\\u2581flour\": 4608,\n    \"\\u2581yo\": 4609,\n    \"\\u2581strait\": 4610,\n    \"nswere\": 4611,\n    \"bby\": 4612,\n    \"\\u2581glutton\": 4613,\n    \"\\u2581horizon\": 4614,\n    \"\\u2581occur\": 4615,\n    \"Listen\": 4616,\n    \"Terrific\": 4617,\n    \"latchet\": 4618,\n    \"tarsus\": 4619,\n    \"\\u2581Amminadab\": 4620,\n    \"\\u2581Aristarchus\": 4621,\n    \"\\u2581Comforter\": 4622,\n    \"\\u2581Congress\": 4623,\n    \"\\u2581Cranshaw\": 4624,\n    \"\\u2581Derbe\": 4625,\n    \"\\u2581Dishon\": 4626,\n    \"\\u2581Ephrath\": 4627,\n    \"\\u2581Euphrates\": 4628,\n    \"\\u2581GOD\": 4629,\n    \"\\u2581Havilah\": 4630,\n    \"\\u2581Hearken\": 4631,\n    \"\\u2581Hogsucker\": 4632,\n    \"\\u2581Ishmeelites\": 4633,\n    \"\\u2581Kohath\": 4634,\n    \"\\u2581Nicodemus\": 4635,\n    \"\\u2581PIG\": 4636,\n    \"\\u2581Receive\": 4637,\n    \"\\u2581Servant\": 4638,\n    \"\\u2581Succoth\": 4639,\n    \"\\u2581Would\": 4640,\n    \"\\u2581Zohar\": 4641,\n    \"\\u2581absence\": 4642,\n    \"\\u2581adoption\": 4643,\n    \"\\u2581afford\": 4644,\n    \"\\u2581assurance\": 4645,\n    \"\\u2581blowgun\": 4646,\n    \"\\u2581bounty\": 4647,\n    \"\\u2581cabbage\": 4648,\n    \"\\u2581century\": 4649,\n    \"\\u2581chapiters\": 4650,\n    \"\\u2581cinnamon\": 4651,\n    \"\\u2581concubine\": 4652,\n    \"\\u2581convenient\": 4653,\n    \"\\u2581correspond\": 4654,\n    \"\\u2581demanded\": 4655,\n    \"\\u2581devise\": 4656,\n    \"\\u2581emerald\": 4657,\n    \"\\u2581engine\": 4658,\n    \"\\u2581foxes\": 4659,\n    \"\\u2581greeting\": 4660,\n    \"\\u2581handkerchief\": 4661,\n    \"\\u2581haught\": 4662,\n    \"\\u2581hereafter\": 4663,\n    \"\\u2581impart\": 4664,\n    \"\\u2581incorruption\": 4665,\n    \"\\u2581insects\": 4666,\n    \"\\u2581level\": 4667,\n    \"\\u2581mysterious\": 4668,\n    \"\\u2581necessities\": 4669,\n    \"\\u2581nostrils\": 4670,\n    \"\\u2581obeisance\": 4671,\n    \"\\u2581perform\": 4672,\n    \"\\u2581picture\": 4673,\n    \"\\u2581pilgrims\": 4674,\n    \"\\u2581president\": 4675,\n    \"\\u2581proconsul\": 4676,\n    \"\\u2581pronounce\": 4677,\n    \"\\u2581propitiation\": 4678,\n    \"\\u2581province\": 4679,\n    \"\\u2581raspberr\": 4680,\n    \"\\u2581request\": 4681,\n    \"\\u2581response\": 4682,\n    \"\\u2581restitution\": 4683,\n    \"\\u2581restrained\": 4684,\n    \"\\u2581reviling\": 4685,\n    \"\\u2581revived\": 4686,\n    \"\\u2581riverbank\": 4687,\n    \"\\u2581sapphire\": 4688,\n    \"\\u2581sardius\": 4689,\n    \"\\u2581showbread\": 4690,\n    \"\\u2581shrank\": 4691,\n    \"\\u2581smiled\": 4692,\n    \"\\u2581solemn\": 4693,\n    \"\\u2581straddle\": 4694,\n    \"\\u2581survive\": 4695,\n    \"\\u2581swift\": 4696,\n    \"\\u2581sworn\": 4697,\n    \"\\u2581terror\": 4698,\n    \"\\u2581twig\": 4699,\n    \"\\u2581unimagin\": 4700,\n    \"\\u2581unloose\": 4701,\n    \"\\u2581unmarried\": 4702,\n    \"\\u2581unusual\": 4703,\n    \"\\u2581whiskey\": 4704,\n    \"\\u2581Brother\": 4705,\n    \"\\u2581diminish\": 4706,\n    \"\\u2581disappoint\": 4707,\n    \"\\u2581element\": 4708,\n    \"\\u2581emerge\": 4709,\n    \"\\u2581latter\": 4710,\n    \"\\u2581orange\": 4711,\n    \"\\u2581queen\": 4712,\n    \"\\u2581raven\": 4713,\n    \"\\u2581roam\": 4714,\n    \"\\u2581scrivener\": 4715,\n    \"\\u2581Gilead\": 4716,\n    \"\\u2581Ithamar\": 4717,\n    \"\\u2581Likewise\": 4718,\n    \"\\u2581discreet\": 4719,\n    \"\\u2581fraction\": 4720,\n    \"\\u2581impress\": 4721,\n    \"\\u2581knuckle\": 4722,\n    \"\\u2581leprosy\": 4723,\n    \"\\u2581mammon\": 4724,\n    \"\\u2581merchant\": 4725,\n    \"\\u2581mule\": 4726,\n    \"\\u2581mysteries\": 4727,\n    \"\\u2581reproof\": 4728,\n    \"\\u2581giant\": 4729,\n    \"\\u2581clipping\": 4730,\n    \"\\u2581middling\": 4731,\n    \"\\u2581Potiph\": 4732,\n    \"\\u2581circum\": 4733,\n    \"\\u2581crystal\": 4734,\n    \"\\u2581bereaved\": 4735,\n    \"\\u2581bondwoman\": 4736,\n    \"\\u2581exchange\": 4737,\n    \"\\u2581holler\": 4738,\n    \"\\u2581instru\": 4739,\n    \"\\u2581noodle\": 4740,\n    \"\\u2581adulteress\": 4741,\n    \"\\u2581beggar\": 4742,\n    \"\\u2581kicked\": 4743,\n    \"\\u2581title\": 4744,\n    \"\\u2581buryingplace\": 4745,\n    \"\\u2581refrain\": 4746,\n    \"\\u2581Christmas\": 4747,\n    \"\\u2581turban\": 4748,\n    \"\\u2581Salmon\": 4749,\n    \"\\u2581liberality\": 4750,\n    \"\\u2581enchantments\": 4751,\n    \"\\u2581workmanship\": 4752,\n    \"\\u2581occupation\": 4753,\n    \"\\u2581sackcloth\": 4754,\n    \"\\u2581bodily\": 4755,\n    \"\\u2581flash\": 4756,\n    \"\\u2581gorge\": 4757,\n    \"\\u2581snapp\": 4758,\n    \"\\u2581Preparation\": 4759,\n    \"\\u2581Count\": 4760,\n    \"\\u2581stumblingblock\": 4761,\n    \"\\u2581Joses\": 4762,\n    \"\\u2581arrival\": 4763,\n    \"\\u2581blasphemies\": 4764,\n    \"\\u2581blossoms\": 4765,\n    \"\\u2581freewoman\": 4766,\n    \"\\u2581fungus\": 4767,\n    \"access\": 4768,\n    \"\\u2581Buddy\": 4769,\n    \"\\u2581covetous\": 4770,\n    \"\\u2581Abb\": 4771,\n    \"\\u2581palsied\": 4772,\n    \"\\u2581Walk\": 4773,\n    \"\\u2581nap\": 4774,\n    \"\\u2581winepress\": 4775,\n    \"\\u2581digging\": 4776,\n    \"\\u2581decree\": 4777,\n    \"\\u2581Moab\": 4778,\n    \"\\u2581paddle\": 4779,\n    \"\\u2581foggy\": 4780,\n    \"\\u2581job\": 4781,\n    \"\\u2581reverence\": 4782,\n    \"\\u2581Drink\": 4783,\n    \"\\u2581Italy\": 4784,\n    \"\\u2581confe\": 4785,\n    \"\\u2581Goodbye\": 4786,\n    \"\\u2581Little\": 4787,\n    \"\\u2581principalities\": 4788,\n    \"\\u2581thicket\": 4789,\n    \"\\u2581tonight\": 4790,\n    \"kay\": 4791,\n    \"\\u2581cursing\": 4792,\n    \"\\u2581gently\": 4793,\n    \"\\u2581Shur\": 4794,\n    \"\\u2581permit\": 4795,\n    \"nquire\": 4796,\n    \"\\u2581Haden\": 4797,\n    \"\\u2581announcement\": 4798,\n    \"\\u2581lane\": 4799,\n    \"\\u2581pink\": 4800,\n    \"\\u2581Shinar\": 4801,\n    \"\\u2581towel\": 4802,\n    \"\\u2581adj\": 4803,\n    \"\\u2581tempest\": 4804,\n    \"\\u2581scoop\": 4805,\n    \"\\u2581flick\": 4806,\n    \"\\u2581Gran\": 4807,\n    \"\\u2581patch\": 4808,\n    \"\\u2581package\": 4809,\n    \"\\u2581midday\": 4810,\n    \"\\u2581conceal\": 4811,\n    \"\\u2581candy\": 4812,\n    \"ntil\": 4813,\n    \"\\u2581apostleship\": 4814,\n    \"\\u2581halt\": 4815,\n    \"\\u2581entangle\": 4816,\n    \"\\u2581Elam\": 4817,\n    \"\\u2581guilty\": 4818,\n    \"\\u2581loving\": 4819,\n    \"\\u2581crime\": 4820,\n    \"\\u2581malice\": 4821,\n    \"\\u2581countries\": 4822,\n    \"\\u2581heathen\": 4823,\n    \"\\u2581awkwardly\": 4824,\n    \"\\u2581crash\": 4825,\n    \"\\u2581Miz\": 4826,\n    \"ndy\": 4827,\n    \"\\u2581shore\": 4828,\n    \"ville\": 4829,\n    \"\\u2581main\": 4830,\n    \"\\u2581pillow\": 4831,\n    \"\\u2581claw\": 4832,\n    \"\\u2581furthermore\": 4833,\n    \"\\u2581satisfied\": 4834,\n    \"\\u2581defer\": 4835,\n    \"\\u2581thistles\": 4836,\n    \"\\u2581stedfastness\": 4837,\n    \"\\u2581vo\": 4838,\n    \"\\u2581Weep\": 4839,\n    \"\\u2581barbarian\": 4840,\n    \"\\u2581bill\": 4841,\n    \"\\u2581communicate\": 4842,\n    \"\\u2581husbandman\": 4843,\n    \"\\u2581Abib\": 4844,\n    \"\\u2581cleansing\": 4845,\n    \"\\u2581nearby\": 4846,\n    \"\\u2581operat\": 4847,\n    \"\\u2581sheepfold\": 4848,\n    \"\\u2581easily\": 4849,\n    \"\\u2581super\": 4850,\n    \"\\u2581blast\": 4851,\n    \"\\u2581jar\": 4852,\n    \"\\u2581armor\": 4853,\n    \"\\u2581violent\": 4854,\n    \"\\u2581forsaken\": 4855,\n    \"\\u2581grunted\": 4856,\n    \"\\u2581gambl\": 4857,\n    \"chol\": 4858,\n    \"eedy\": 4859,\n    \"\\u2581crushed\": 4860,\n    \"\\u2581phone\": 4861,\n    \"\\u2581whiteman\": 4862,\n    \"\\u2581disturb\": 4863,\n    \"\\u2581skirt\": 4864,\n    \"no\": 4865,\n    \"\\u2581grease\": 4866,\n    \"\\u2581wealth\": 4867,\n    \"\\u2581supplieth\": 4868,\n    \"\\u2581Jam\": 4869,\n    \"ently\": 4870,\n    \"\\u2581blame\": 4871,\n    \"\\u2581difficulty\": 4872,\n    \"\\u2581agreement\": 4873,\n    \"\\u2581contend\": 4874,\n    \"\\u2581vaguely\": 4875,\n    \"\\u2581Else\": 4876,\n    \"\\u2581needful\": 4877,\n    \"pro\": 4878,\n    \"\\u2581weaving\": 4879,\n    \"\\u2581wrist\": 4880,\n    \"\\u2581dare\": 4881,\n    \"\\u2581cheerfully\": 4882,\n    \"\\u2581cost\": 4883,\n    \"\\u2581trott\": 4884,\n    \"\\u2581curv\": 4885,\n    \"\\u2581acres\": 4886,\n    \"\\u2581ribs\": 4887,\n    \"\\u2581magistrates\": 4888,\n    \"\\u2581Lotan\": 4889,\n    \"\\u2581knot\": 4890,\n    \"\\u2581candie\": 4891,\n    \"\\u2581briefly\": 4892,\n    \"sual\": 4893,\n    \"\\u2581deceitfully\": 4894,\n    \"\\u2581persecutest\": 4895,\n    \"\\u2581maple\": 4896,\n    \"\\u2581ability\": 4897,\n    \"\\u2581fiercely\": 4898,\n    \"\\u2581sink\": 4899,\n    \"\\u2581vanished\": 4900,\n    \"\\u2581overhead\": 4901,\n    \"\\u2581arranged\": 4902,\n    \"\\u2581slipp\": 4903,\n    \"\\u2581sower\": 4904,\n    \"\\u2581silently\": 4905,\n    \"\\u2581clang\": 4906,\n    \"quil\": 4907,\n    \"\\u2581float\": 4908,\n    \"\\u2581stalk\": 4909,\n    \"ode\": 4910,\n    \"\\u2581Summ\": 4911,\n    \"\\u2581block\": 4912,\n    \"\\u2581wink\": 4913,\n    \"\\u2581quake\": 4914,\n    \"\\u2581reconciled\": 4915,\n    \"\\u2581platt\": 4916,\n    \"\\u2581shovel\": 4917,\n    \"\\u2581thirsty\": 4918,\n    \"\\u2581soup\": 4919,\n    \"\\u2581Never\": 4920,\n    \"\\u2581overthrown\": 4921,\n    \"\\u2581remark\": 4922,\n    \"\\u2581Men\": 4923,\n    \"\\u2581steady\": 4924,\n    \"ration\": 4925,\n    \"\\u2581sincere\": 4926,\n    \"\\u2581slopes\": 4927,\n    \"\\u2581physicians\": 4928,\n    \"\\u2581killers\": 4929,\n    \"\\u2581dad\": 4930,\n    \"\\u2581action\": 4931,\n    \"\\u2581louder\": 4932,\n    \"irst\": 4933,\n    \"\\u2581endless\": 4934,\n    \"\\u2581commendeth\": 4935,\n    \"\\u2581groaned\": 4936,\n    \"\\u2581card\": 4937,\n    \"\\u2581manservant\": 4938,\n    \"\\u2581anew\": 4939,\n    \"\\u2581joint\": 4940,\n    \"\\u2581sever\": 4941,\n    \"\\u2581stumbleth\": 4942,\n    \"\\u2581pushing\": 4943,\n    \"\\u2581naturally\": 4944,\n    \"azed\": 4945,\n    \"\\u2581flip\": 4946,\n    \"\\u2581earrings\": 4947,\n    \"\\u2581lepers\": 4948,\n    \"\\u2581boughs\": 4949,\n    \"\\u2581transgressors\": 4950,\n    \"\\u2581faithless\": 4951,\n    \"\\u2581invented\": 4952,\n    \"\\u2581shit\": 4953,\n    \"\\u2581trapper\": 4954,\n    \"\\u2581sojourners\": 4955,\n    \"\\u2581oppressed\": 4956,\n    \"\\u2581confirmed\": 4957,\n    \"\\u2581Remov\": 4958,\n    \"\\u2581melted\": 4959,\n    \"\\u2581urge\": 4960,\n    \"\\u2581yester\": 4961,\n    \"\\u2581wildly\": 4962,\n    \"\\u2581completed\": 4963,\n    \"\\u2581particle\": 4964,\n    \"\\u2581whoring\": 4965,\n    \"\\u2581companions\": 4966,\n    \"\\u2581Hous\": 4967,\n    \"\\u2581hon\": 4968,\n    \"\\u2581pomegranates\": 4969,\n    \"\\u2581weapons\": 4970,\n    \"\\u2581wond\": 4971,\n    \"ev\": 4972,\n    \"\\u2581actions\": 4973,\n    \"\\u2581overmuch\": 4974,\n    \"\\u2581hatched\": 4975,\n    \"\\u2581Teman\": 4976,\n    \"\\u2581continueth\": 4977,\n    \"\\u2581commandeth\": 4978,\n    \"\\u2581rep\": 4979,\n    \"king\": 4980,\n    \"\\u2581wh\": 4981,\n    \"\\u2581mourned\": 4982,\n    \"\\u2581extortioner\": 4983,\n    \"this\": 4984,\n    \"\\u2581thereto\": 4985,\n    \"alutations\": 4986,\n    \"\\u2581mudd\": 4987,\n    \"\\u2581sen\": 4988,\n    \"aid\": 4989,\n    \"\\u2581ci\": 4990,\n    \"\\u2581department\": 4991,\n    \"position\": 4992,\n    \"erable\": 4993,\n    \"\\u2581comb\": 4994,\n    \"\\u2581rider\": 4995,\n    \"In\": 4996,\n    \"\\u2581richly\": 4997,\n    \"rops\": 4998,\n    \"lessly\": 4999,\n    \"\\u2581liars\": 5000,\n    \"\\u2581statutes\": 5001,\n    \"\\u2581provisions\": 5002,\n    \"\\u2581persecutions\": 5003,\n    \"ac\": 5004,\n    \"\\u2581chin\": 5005,\n    \"\\u2581guns\": 5006,\n    \"\\u2581murderers\": 5007,\n    \"za\": 5008,\n    \"\\u2581sucked\": 5009,\n    \"\\u2581needy\": 5010,\n    \"\\u2581transform\": 5011,\n    \"\\u2581Romans\": 5012,\n    \"\\u2581wanton\": 5013,\n    \"\\u2581finest\": 5014,\n    \"\\u2581driver\": 5015,\n    \"\\u2581preacheth\": 5016,\n    \"\\u2581dances\": 5017,\n    \"\\u2581squa\": 5018,\n    \"oc\": 5019,\n    \"\\u2581deeply\": 5020,\n    \"\\u2581smoked\": 5021,\n    \"ups\": 5022,\n    \"cum\": 5023,\n    \"\\u2581lacked\": 5024,\n    \"gered\": 5025,\n    \"unny\": 5026,\n    \"\\u2581mete\": 5027,\n    \"\\u2581goes\": 5028,\n    \"its\": 5029,\n    \"\\u2581pi\": 5030,\n    \"\\u2581nests\": 5031,\n    \"\\u2581games\": 5032,\n    \"\\u2581captives\": 5033,\n    \"\\u2581habitations\": 5034,\n    \"\\u2581girls\": 5035,\n    \"ep\": 5036,\n    \"\\u2581profited\": 5037,\n    \"\\u2581flowers\": 5038,\n    \"vice\": 5039,\n    \"\\u2581trapp\": 5040,\n    \"\\u2581regarded\": 5041,\n    \"ction\": 5042,\n    \"\\u2581thighs\": 5043,\n    \"tty\": 5044,\n    \"\\u2581worrying\": 5045,\n    \"T\": 5046,\n    \"\\u2581amount\": 5047,\n    \"\\u2581righteously\": 5048,\n    \"oth\": 5049,\n    \"\\u2581logs\": 5050,\n    \"\\u2581willeth\": 5051,\n    \"\\u2581killeth\": 5052,\n    \"cakes\": 5053,\n    \"\\u2581colors\": 5054,\n    \"\\u2581papers\": 5055,\n    \"mong\": 5056,\n    \"\\u2581tea\": 5057,\n    \"\\u2581customs\": 5058,\n    \"ius\": 5059,\n    \"che\": 5060,\n    \"\\u2581regions\": 5061,\n    \"\\u2581forgett\": 5062,\n    \"ric\": 5063,\n    \"\\u2581seasoned\": 5064,\n    \"\\u2581embrace\": 5065,\n    \"bs\": 5066,\n    \"\\u2581Abid\": 5067,\n    \"\\u2581tomorrow\": 5068,\n    \"\\u2581streams\": 5069,\n    \"\\u2581Christian\": 5070,\n    \"\\u2581worshipp\": 5071,\n    \"\\u2581style\": 5072,\n    \"full\": 5073,\n    \"\\u2581figs\": 5074,\n    \"\\u2581aged\": 5075,\n    \"\\u2581buildings\": 5076,\n    \"\\u2581meaning\": 5077,\n    \"\\u2581staying\": 5078,\n    \"\\u2581crowned\": 5079,\n    \"\\u2581visions\": 5080,\n    \"\\u2581owners\": 5081,\n    \"uz\": 5082,\n    \"\\u2581Fe\": 5083,\n    \"\\u2581mon\": 5084,\n    \"\\u2581governors\": 5085,\n    \"\\u2581sus\": 5086,\n    \"\\u2581ships\": 5087,\n    \"figur\": 5088,\n    \"\\u2581Par\": 5089,\n    \"arm\": 5090,\n    \"et\": 5091,\n    \"ives\": 5092,\n    \"\\u2581treat\": 5093,\n    \"inning\": 5094,\n    \"\\u2581charges\": 5095,\n    \"compelled\": 5096,\n    \"\\u2581Eph\": 5097,\n    \"\\u2581afternoons\": 5098,\n    \"\\u2581doings\": 5099,\n    \"enable\": 5100,\n    \"\\u2581ink\": 5101,\n    \"ok\": 5102,\n    \"\\u2581penn\": 5103,\n    \"mma\": 5104,\n    \"\\u2581wanting\": 5105,\n    \"fe\": 5106,\n    \"\\u2581edges\": 5107,\n    \"\\u2581rehears\": 5108,\n    \"racles\": 5109,\n    \"\\u2581writer\": 5110,\n    \"\\u2581favorabl\": 5111,\n    \"\\u2581rattle\": 5112,\n    \"tent\": 5113,\n    \"inner\": 5114,\n    \"anke\": 5115,\n    \"\\u2581conce\": 5116,\n    \"\\u2581busi\": 5117,\n    \"\\u2581smit\": 5118,\n    \"\\u2581perp\": 5119,\n    \"\\u2581shower\": 5120,\n    \"\\u2581Was\": 5121,\n    \"\\u2581earthy\": 5122,\n    \"ons\": 5123,\n    \"\\u2581Stop\": 5124,\n    \"\\u2581swords\": 5125,\n    \"\\u2581fellows\": 5126,\n    \"bone\": 5127,\n    \"\\u2581entice\": 5128,\n    \"ave\": 5129,\n    \"\\u2581belong\": 5130,\n    \"\\u2581journeys\": 5131,\n    \"\\u2581lap\": 5132,\n    \"\\u2581differ\": 5133,\n    \"\\u2581prisons\": 5134,\n    \"\\u2581heel\": 5135,\n    \"x\": 5136,\n    \"\\u2581curl\": 5137,\n    \"ema\": 5138,\n    \"eral\": 5139,\n    \"Be\": 5140,\n    \"vil\": 5141,\n    \"born\": 5142,\n    \"\\u2581beard\": 5143,\n    \"ich\": 5144,\n    \"ular\": 5145,\n    \"ddle\": 5146,\n    \"\\u2581Ben\": 5147,\n    \"\\u2581Ph\": 5148,\n    \"aking\": 5149,\n    \"\\u2581afore\": 5150,\n    \"ban\": 5151,\n    \"\\u2581lashe\": 5152,\n    \"\\u2581earthly\": 5153,\n    \"van\": 5154,\n    \"\\u2581ch\": 5155,\n    \"\\u2581meats\": 5156,\n    \"ore\": 5157,\n    \"bel\": 5158,\n    \"wled\": 5159,\n    \"dder\": 5160,\n    \"wood\": 5161,\n    \"\\u2581argu\": 5162,\n    \"\\u2581mus\": 5163,\n    \"\\u2581Phi\": 5164,\n    \"ond\": 5165,\n    \"\\u2581interrupt\": 5166,\n    \"\\u2581gaz\": 5167,\n    \"her\": 5168,\n    \"\\u2581feasts\": 5169,\n    \"wardly\": 5170,\n    \"\\u2581struggle\": 5171,\n    \"nut\": 5172,\n    \"\\u2581parting\": 5173,\n    \"ai\": 5174,\n    \"\\u2581inch\": 5175,\n    \"\\u2581owe\": 5176,\n    \"\\u2581Shal\": 5177,\n    \"pringtime\": 5178,\n    \"\\u2581ob\": 5179,\n    \"\\u2581driv\": 5180,\n    \"lation\": 5181,\n    \"dding\": 5182,\n    \"\\u2581hug\": 5183,\n    \"\\u2581strik\": 5184,\n    \"ro\": 5185,\n    \"\\u2581breathe\": 5186,\n    \"\\u2581Pra\": 5187,\n    \"mortal\": 5188,\n    \"\\u2581temperat\": 5189,\n    \"rred\": 5190,\n    \"\\u2581pur\": 5191,\n    \"\\u2581j\": 5192,\n    \"uni\": 5193,\n    \"ities\": 5194,\n    \"nic\": 5195,\n    \"uring\": 5196,\n    \"lings\": 5197,\n    \"\\u2581ascend\": 5198,\n    \"\\u2581striv\": 5199,\n    \"itches\": 5200,\n    \"\\u2581cares\": 5201,\n    \"\\u2581calls\": 5202,\n    \"\\u2581Ass\": 5203,\n    \"\\u2581crack\": 5204,\n    \"uddle\": 5205,\n    \"doers\": 5206,\n    \"\\u2581mis\": 5207,\n    \"ener\": 5208,\n    \"urn\": 5209,\n    \"lab\": 5210,\n    \"ten\": 5211,\n    \"fare\": 5212,\n    \"fire\": 5213,\n    \"\\u2581bre\": 5214,\n    \"ca\": 5215,\n    \"\\u2581Ro\": 5216,\n    \"rian\": 5217,\n    \"\\u2581Eu\": 5218,\n    \"\\u2581oppos\": 5219,\n    \"eyed\": 5220,\n    \"we\": 5221,\n    \"\\u2581Eve\": 5222,\n    \"mus\": 5223,\n    \"\\u2581embrac\": 5224,\n    \"tting\": 5225,\n    \"ati\": 5226,\n    \"mmed\": 5227,\n    \"tery\": 5228,\n    \"tops\": 5229,\n    \"\\u2581fla\": 5230,\n    \"lia\": 5231,\n    \"\\u2581resid\": 5232,\n    \"rance\": 5233,\n    \"\\u2581fre\": 5234,\n    \"\\u2581temples\": 5235,\n    \"eries\": 5236,\n    \"\\u2581chi\": 5237,\n    \"ak\": 5238,\n    \"pher\": 5239,\n    \"\\u2581hasted\": 5240,\n    \"\\u2581backs\": 5241,\n    \"\\u2581Sal\": 5242,\n    \"sha\": 5243,\n    \"\\u2581bu\": 5244,\n    \"unted\": 5245,\n    \"aimed\": 5246,\n    \"\\u2581fir\": 5247,\n    \"ized\": 5248,\n    \"Th\": 5249,\n    \"ega\": 5250,\n    \"handed\": 5251,\n    \"\\u2581Mes\": 5252,\n    \"\\u2581extortion\": 5253,\n    \"ading\": 5254,\n    \"\\u2581wrest\": 5255,\n    \"doer\": 5256,\n    \"\\u2581compel\": 5257,\n    \"gg\": 5258,\n    \"\\u2581bough\": 5259,\n    \"nceforth\": 5260,\n    \"orted\": 5261,\n    \"\\u2581chasten\": 5262,\n    \"\\u2581benefit\": 5263,\n    \"\\u2581patriarch\": 5264,\n    \"\\u2581guest\": 5265,\n    \"\\u2581result\": 5266,\n    \"\\u2581bishop\": 5267,\n    \"\\u2581ewe\": 5268,\n    \"will\": 5269,\n    \"rches\": 5270,\n    \"\\u2581faction\": 5271,\n    \"\\u2581psalm\": 5272,\n    \"\\u2581senator\": 5273,\n    \"come\": 5274,\n    \"\\u2581pigeon\": 5275,\n    \"\\u2581whisper\": 5276,\n    \"\\u2581eagle\": 5277,\n    \"\\u2581repute\": 5278,\n    \"\\u2581section\": 5279,\n    \"\\u2581Levite\": 5280,\n    \"dressed\": 5281,\n    \"\\u2581leper\": 5282,\n    \"unch\": 5283,\n    \"\\u2581transgressor\": 5284,\n    \"\\u2581Jebusite\": 5285,\n    \"\\u2581Perizzite\": 5286,\n    \"\\u2581fornicator\": 5287,\n    \"hand\": 5288,\n    \"\\u2581peoples\": 5289,\n    \"\\u2581bla\": 5290,\n    \"\\u2581earring\": 5291,\n    \"\\u2581shelter\": 5292,\n    \"\\u2581hook\": 5293,\n    \"\\u2581bo\": 5294,\n    \"upon\": 5295,\n    \"\\u2581stab\": 5296,\n    \"\\u2581spice\": 5297,\n    \"\\u2581sojourner\": 5298,\n    \"eas\": 5299,\n    \"quench\": 5300,\n    \"\\u2581gir\": 5301,\n    \"witch\": 5302,\n    \"load\": 5303,\n    \"\\u2581needle\": 5304,\n    \"bbed\": 5305,\n    \"\\u2581farmer\": 5306,\n    \"Certainly\": 5307,\n    \"warm\": 5308,\n    \"owing\": 5309,\n    \"worm\": 5310,\n    \"bas\": 5311,\n    \"Y\": 5312,\n    \"stood\": 5313,\n    \"ridge\": 5314,\n    \"hearted\": 5315,\n    \"Pig\": 5316,\n    \"floor\": 5317,\n    \"prisoner\": 5318,\n    \"Ho\": 5319,\n    \"hooks\": 5320,\n    \"learned\": 5321,\n    \"legs\": 5322,\n    \"quiet\": 5323,\n    \"pieces\": 5324,\n    \"break\": 5325,\n    \"thirty\": 5326,\n    \"closed\": 5327,\n    \"blood\": 5328,\n    \"finger\": 5329,\n    \"wife\": 5330,\n    \"Take\": 5331,\n    \"ground\": 5332,\n    \"looking\": 5333,\n    \"ick\": 5334,\n    \"\\u2581encounter\": 5335,\n    \"\\u2581remov\": 5336,\n    \"Sure\": 5337,\n    \"\\u2581assembl\": 5338,\n    \"ocked\": 5339,\n    \"\\u2581affirm\": 5340,\n    \"\\u2581buffet\": 5341,\n    \"\\u2581loos\": 5342,\n    \"Every\": 5343,\n    \"\\u2581explo\": 5344,\n    \"\\u2581refresh\": 5345,\n    \"speak\": 5346,\n    \"\\u2581fix\": 5347,\n    \"volut\": 5348,\n    \"sembled\": 5349,\n    \"que\": 5350,\n    \"back\": 5351,\n    \"five\": 5352,\n    \"An\": 5353,\n    \"hath\": 5354,\n    \"\\u2581miss\": 5355,\n    \"\\u2581Alexandria\": 5356,\n    \"Here\": 5357,\n    \"Te\": 5358,\n    \"\\u2581Right\": 5359,\n    \"\\u2581cree\": 5360,\n    \"\\u2581enlarge\": 5361,\n    \"\\u2581relieve\": 5362,\n    \"\\u2581prophesie\": 5363,\n    \"\\u2581purchase\": 5364,\n    \"\\u2581bore\": 5365,\n    \"\\u2581determine\": 5366,\n    \"\\u2581excuse\": 5367,\n    \"\\u2581marrie\": 5368,\n    \"\\u2581pursue\": 5369,\n    \"\\u2581arrive\": 5370,\n    \"\\u2581meek\": 5371,\n    \"\\u2581pierce\": 5372,\n    \"posed\": 5373,\n    \"\\u2581delicate\": 5374,\n    \"\\u2581nervous\": 5375,\n    \"\\u2581app\": 5376,\n    \"cient\": 5377,\n    \"\\u2581private\": 5378,\n    \"ocia\": 5379,\n    \"alvation\": 5380,\n    \"\\u2581possibl\": 5381,\n    \"\\u2581jealous\": 5382,\n    \"atic\": 5383,\n    \"ju\": 5384,\n    \"ected\": 5385,\n    \"upp\": 5386,\n    \"istles\": 5387,\n    \"\\u2581brim\": 5388,\n    \"roi\": 5389,\n    \"\\u2581gener\": 5390,\n    \"ossum\": 5391,\n    \"\\u2581mirac\": 5392,\n    \"ntity\": 5393,\n    \"\\u2581forgot\": 5394,\n    \"\\u2581princip\": 5395,\n    \"\\u2581meditat\": 5396,\n    \"\\u2581announce\": 5397,\n    \"orthy\": 5398,\n    \"appy\": 5399,\n    \"reakfast\": 5400,\n    \"\\u2581author\": 5401,\n    \"olonel\": 5402,\n    \"\\u2581desp\": 5403,\n    \"oyal\": 5404,\n    \"\\u2581apprecia\": 5405,\n    \"Congratu\": 5406,\n    \"\\u2581Jehovah\": 5407,\n    \"wilight\": 5408,\n    \"zziah\": 5409,\n    \"\\u2581Adullamite\": 5410,\n    \"\\u2581Ahaz\": 5411,\n    \"\\u2581Aranea\": 5412,\n    \"\\u2581Bartholomew\": 5413,\n    \"\\u2581Bernice\": 5414,\n    \"\\u2581Bethphage\": 5415,\n    \"\\u2581Boaz\": 5416,\n    \"\\u2581Boston\": 5417,\n    \"\\u2581Chaldees\": 5418,\n    \"\\u2581Chesapeake\": 5419,\n    \"\\u2581Crawdaddy\": 5420,\n    \"\\u2581Decapolis\": 5421,\n    \"\\u2581Demetrius\": 5422,\n    \"\\u2581Echota\": 5423,\n    \"\\u2581Eliezer\": 5424,\n    \"\\u2581Epaphras\": 5425,\n    \"\\u2581Ethiopia\": 5426,\n    \"\\u2581Galway\": 5427,\n    \"\\u2581Gennesaret\": 5428,\n    \"\\u2581Gershon\": 5429,\n    \"\\u2581Golgotha\": 5430,\n    \"\\u2581Hallelujah\": 5431,\n    \"\\u2581Hezekiah\": 5432,\n    \"\\u2581Horeb\": 5433,\n    \"\\u2581Jeremiah\": 5434,\n    \"\\u2581Joktan\": 5435,\n    \"\\u2581Jotham\": 5436,\n    \"\\u2581Jupiter\": 5437,\n    \"\\u2581Kadesh\": 5438,\n    \"\\u2581Kenaz\": 5439,\n    \"\\u2581Luke\": 5440,\n    \"\\u2581Matthew\": 5441,\n    \"\\u2581Merari\": 5442,\n    \"\\u2581Nahshon\": 5443,\n    \"\\u2581Nebajoth\": 5444,\n    \"\\u2581Nellie\": 5445,\n    \"\\u2581Notwithstanding\": 5446,\n    \"\\u2581Olivet\": 5447,\n    \"\\u2581Peabody\": 5448,\n    \"\\u2581Pentecost\": 5449,\n    \"\\u2581Perez\": 5450,\n    \"\\u2581Perga\": 5451,\n    \"\\u2581Pharez\": 5452,\n    \"\\u2581Phrygia\": 5453,\n    \"\\u2581Pontus\": 5454,\n    \"\\u2581Prince\": 5455,\n    \"\\u2581Priscilla\": 5456,\n    \"\\u2581Psalms\": 5457,\n    \"\\u2581Rehoboth\": 5458,\n    \"\\u2581Rephidim\": 5459,\n    \"\\u2581Sardis\": 5460,\n    \"\\u2581Shealtiel\": 5461,\n    \"\\u2581Siddim\": 5462,\n    \"\\u2581Silvanus\": 5463,\n    \"\\u2581Street\": 5464,\n    \"\\u2581Symeon\": 5465,\n    \"\\u2581Tarshish\": 5466,\n    \"\\u2581Thessalonica\": 5467,\n    \"\\u2581Trophimus\": 5468,\n    \"\\u2581Twelve\": 5469,\n    \"\\u2581Zeboi\": 5470,\n    \"\\u2581Zillah\": 5471,\n    \"\\u2581Zipporah\": 5472,\n    \"\\u2581achieve\": 5473,\n    \"\\u2581addition\": 5474,\n    \"\\u2581advance\": 5475,\n    \"\\u2581aeronaut\": 5476,\n    \"\\u2581affairs\": 5477,\n    \"\\u2581anxiety\": 5478,\n    \"\\u2581apiece\": 5479,\n    \"\\u2581attire\": 5480,\n    \"\\u2581avail\": 5481,\n    \"\\u2581balsam\": 5482,\n    \"\\u2581bountifully\": 5483,\n    \"\\u2581canvas\": 5484,\n    \"\\u2581captivity\": 5485,\n    \"\\u2581chickadee\": 5486,\n    \"\\u2581colours\": 5487,\n    \"\\u2581column\": 5488,\n    \"\\u2581conclusion\": 5489,\n    \"\\u2581conduct\": 5490,\n    \"\\u2581conflict\": 5491,\n    \"\\u2581congealed\": 5492,\n    \"\\u2581constructed\": 5493,\n    \"\\u2581contrariwise\": 5494,\n    \"\\u2581contributi\": 5495,\n    \"\\u2581corpse\": 5496,\n    \"\\u2581crazy\": 5497,\n    \"\\u2581curiosity\": 5498,\n    \"\\u2581deacons\": 5499,\n    \"\\u2581desperation\": 5500,\n    \"\\u2581destiny\": 5501,\n    \"\\u2581disorderly\": 5502,\n    \"\\u2581disputing\": 5503,\n    \"\\u2581dissension\": 5504,\n    \"\\u2581district\": 5505,\n    \"\\u2581draught\": 5506,\n    \"\\u2581dungeon\": 5507,\n    \"\\u2581edifieth\": 5508,\n    \"\\u2581embarrass\": 5509,\n    \"\\u2581esteem\": 5510,\n    \"\\u2581exhausted\": 5511,\n    \"\\u2581exotic\": 5512,\n    \"\\u2581farewell\": 5513,\n    \"\\u2581fascinating\": 5514,\n    \"\\u2581feeble\": 5515,\n    \"\\u2581fetters\": 5516,\n    \"\\u2581fifties\": 5517,\n    \"\\u2581forewarn\": 5518,\n    \"\\u2581fragments\": 5519,\n    \"\\u2581frankincense\": 5520,\n    \"\\u2581furnished\": 5521,\n    \"\\u2581handbreadth\": 5522,\n    \"\\u2581hayloft\": 5523,\n    \"\\u2581hymn\": 5524,\n    \"\\u2581immortality\": 5525,\n    \"\\u2581increasing\": 5526,\n    \"\\u2581jailor\": 5527,\n    \"\\u2581journals\": 5528,\n    \"\\u2581kinsfolk\": 5529,\n    \"\\u2581knothole\": 5530,\n    \"\\u2581leanfleshed\": 5531,\n    \"\\u2581lodging\": 5532,\n    \"\\u2581machine\": 5533,\n    \"\\u2581matrix\": 5534,\n    \"\\u2581meadow\": 5535,\n    \"\\u2581mistress\": 5536,\n    \"\\u2581moisture\": 5537,\n    \"\\u2581mosquitoes\": 5538,\n    \"\\u2581oblig\": 5539,\n    \"\\u2581opposition\": 5540,\n    \"\\u2581philosoph\": 5541,\n    \"\\u2581pilgrimage\": 5542,\n    \"\\u2581pistol\": 5543,\n    \"\\u2581poison\": 5544,\n    \"\\u2581poverty\": 5545,\n    \"\\u2581predator\": 5546,\n    \"\\u2581produce\": 5547,\n    \"\\u2581rabbit\": 5548,\n    \"\\u2581recognize\": 5549,\n    \"\\u2581rectang\": 5550,\n    \"\\u2581remnant\": 5551,\n    \"\\u2581replenish\": 5552,\n    \"\\u2581representatives\": 5553,\n    \"\\u2581retrieve\": 5554,\n    \"\\u2581sermon\": 5555,\n    \"\\u2581shewbread\": 5556,\n    \"\\u2581shoot\": 5557,\n    \"\\u2581shotgun\": 5558,\n    \"\\u2581subsistence\": 5559,\n    \"\\u2581swept\": 5560,\n    \"\\u2581swipe\": 5561,\n    \"\\u2581tavern\": 5562,\n    \"\\u2581terrain\": 5563,\n    \"\\u2581territory\": 5564,\n    \"\\u2581throng\": 5565,\n    \"\\u2581titmouse\": 5566,\n    \"\\u2581tread\": 5567,\n    \"\\u2581unawares\": 5568,\n    \"\\u2581unceasing\": 5569,\n    \"\\u2581undefiled\": 5570,\n    \"\\u2581unexpected\": 5571,\n    \"\\u2581unjust\": 5572,\n    \"\\u2581unknown\": 5573,\n    \"\\u2581unreasonable\": 5574,\n    \"\\u2581unveiled\": 5575,\n    \"\\u2581uproar\": 5576,\n    \"\\u2581vehemently\": 5577,\n    \"\\u2581vertical\": 5578,\n    \"\\u2581virtue\": 5579,\n    \"\\u2581waterproof\": 5580,\n    \"\\u2581yesternight\": 5581,\n    \"\\u2581antichrist\": 5582,\n    \"\\u2581compact\": 5583,\n    \"\\u2581congress\": 5584,\n    \"\\u2581dedicat\": 5585,\n    \"\\u2581gnat\": 5586,\n    \"\\u2581maintain\": 5587,\n    \"\\u2581oven\": 5588,\n    \"\\u2581unloaded\": 5589,\n    \"\\u2581Asshur\": 5590,\n    \"\\u2581Demas\": 5591,\n    \"\\u2581Latin\": 5592,\n    \"\\u2581clover\": 5593,\n    \"\\u2581conquer\": 5594,\n    \"\\u2581distinguish\": 5595,\n    \"\\u2581dowry\": 5596,\n    \"\\u2581dusk\": 5597,\n    \"\\u2581freeze\": 5598,\n    \"\\u2581major\": 5599,\n    \"\\u2581overwhelm\": 5600,\n    \"\\u2581pitfall\": 5601,\n    \"\\u2581proverb\": 5602,\n    \"\\u2581quiver\": 5603,\n    \"\\u2581Dishan\": 5604,\n    \"\\u2581Glory\": 5605,\n    \"\\u2581agony\": 5606,\n    \"\\u2581desk\": 5607,\n    \"\\u2581saddlebag\": 5608,\n    \"\\u2581succeed\": 5609,\n    \"\\u2581superscription\": 5610,\n    \"Play\": 5611,\n    \"dopted\": 5612,\n    \"satisfact\": 5613,\n    \"\\u2581Serve\": 5614,\n    \"\\u2581cedar\": 5615,\n    \"\\u2581conclud\": 5616,\n    \"\\u2581loaf\": 5617,\n    \"\\u2581lucre\": 5618,\n    \"\\u2581oats\": 5619,\n    \"\\u2581satisfy\": 5620,\n    \"\\u2581topaz\": 5621,\n    \"vaga\": 5622,\n    \"\\u2581Bind\": 5623,\n    \"\\u2581Erastus\": 5624,\n    \"\\u2581moaned\": 5625,\n    \"\\u2581smart\": 5626,\n    \"\\u2581Besides\": 5627,\n    \"\\u2581Talk\": 5628,\n    \"\\u2581backbit\": 5629,\n    \"\\u2581profess\": 5630,\n    \"timber\": 5631,\n    \"\\u2581Arabia\": 5632,\n    \"\\u2581approaching\": 5633,\n    \"\\u2581undone\": 5634,\n    \"\\u2581Dedan\": 5635,\n    \"\\u2581procur\": 5636,\n    \"\\u2581Shobal\": 5637,\n    \"\\u2581authorities\": 5638,\n    \"\\u2581consult\": 5639,\n    \"Could\": 5640,\n    \"\\u2581limp\": 5641,\n    \"havi\": 5642,\n    \"\\u2581Welch\": 5643,\n    \"\\u2581brawle\": 5644,\n    \"\\u2581Jobab\": 5645,\n    \"\\u2581River\": 5646,\n    \"\\u2581wafer\": 5647,\n    \"alley\": 5648,\n    \"\\u2581abated\": 5649,\n    \"\\u2581emotion\": 5650,\n    \"\\u2581surround\": 5651,\n    \"\\u2581united\": 5652,\n    \"\\u2581Balaam\": 5653,\n    \"\\u2581delicious\": 5654,\n    \"\\u2581dread\": 5655,\n    \"\\u2581abuse\": 5656,\n    \"\\u2581engage\": 5657,\n    \"\\u2581swimming\": 5658,\n    \"\\u2581Marah\": 5659,\n    \"\\u2581mumbled\": 5660,\n    \"\\u2581stock\": 5661,\n    \"\\u2581tanner\": 5662,\n    \"\\u2581Syr\": 5663,\n    \"\\u2581Tiberias\": 5664,\n    \"\\u2581Phoenicia\": 5665,\n    \"\\u2581assistance\": 5666,\n    \"\\u2581ceasing\": 5667,\n    \"\\u2581tape\": 5668,\n    \"\\u2581pottage\": 5669,\n    \"\\u2581trading\": 5670,\n    \"\\u2581chide\": 5671,\n    \"\\u2581rebelled\": 5672,\n    \"\\u2581slanderers\": 5673,\n    \"\\u2581Territories\": 5674,\n    \"\\u2581prophetess\": 5675,\n    \"\\u2581sheaf\": 5676,\n    \"\\u2581Prisc\": 5677,\n    \"\\u2581glow\": 5678,\n    \"\\u2581grownups\": 5679,\n    \"\\u2581terrify\": 5680,\n    \"\\u2581vote\": 5681,\n    \"\\u2581pestilence\": 5682,\n    \"\\u2581quill\": 5683,\n    \"\\u2581Creator\": 5684,\n    \"\\u2581midway\": 5685,\n    \"\\u2581route\": 5686,\n    \"\\u2581slant\": 5687,\n    \"\\u2581luck\": 5688,\n    \"\\u2581brink\": 5689,\n    \"\\u2581nobleman\": 5690,\n    \"OM\": 5691,\n    \"choni\": 5692,\n    \"\\u2581device\": 5693,\n    \"iletus\": 5694,\n    \"\\u2581scent\": 5695,\n    \"ella\": 5696,\n    \"\\u2581contentious\": 5697,\n    \"\\u2581Shuah\": 5698,\n    \"\\u2581cords\": 5699,\n    \"\\u2581smear\": 5700,\n    \"\\u2581Zeal\": 5701,\n    \"\\u2581Paradise\": 5702,\n    \"\\u2581stubble\": 5703,\n    \"\\u2581indig\": 5704,\n    \"\\u2581Ezer\": 5705,\n    \"\\u2581Luz\": 5706,\n    \"\\u2581bolt\": 5707,\n    \"clock\": 5708,\n    \"\\u2581Fift\": 5709,\n    \"\\u2581destitute\": 5710,\n    \"kling\": 5711,\n    \"\\u2581Lys\": 5712,\n    \"\\u2581crafti\": 5713,\n    \"\\u2581spun\": 5714,\n    \"\\u2581amiss\": 5715,\n    \"everal\": 5716,\n    \"\\u2581prun\": 5717,\n    \"\\u2581mistake\": 5718,\n    \"east\": 5719,\n    \"\\u2581locks\": 5720,\n    \"\\u2581pouches\": 5721,\n    \"\\u2581safety\": 5722,\n    \"\\u2581birch\": 5723,\n    \"\\u2581variet\": 5724,\n    \"\\u2581lounge\": 5725,\n    \"phath\": 5726,\n    \"\\u2581affectionate\": 5727,\n    \"\\u2581responsibilit\": 5728,\n    \"\\u2581bondman\": 5729,\n    \"\\u2581possum\": 5730,\n    \"\\u2581Herodians\": 5731,\n    \"\\u2581lobby\": 5732,\n    \"\\u2581moonlight\": 5733,\n    \"\\u2581harness\": 5734,\n    \"\\u2581poking\": 5735,\n    \"\\u2581shorn\": 5736,\n    \"\\u2581birthday\": 5737,\n    \"\\u2581lawlessness\": 5738,\n    \"\\u2581Corn\": 5739,\n    \"\\u2581errand\": 5740,\n    \"\\u2581cruse\": 5741,\n    \"\\u2581favorite\": 5742,\n    \"\\u2581spru\": 5743,\n    \"\\u2581stank\": 5744,\n    \"noch\": 5745,\n    \"\\u2581jerky\": 5746,\n    \"\\u2581hireling\": 5747,\n    \"\\u2581garnet\": 5748,\n    \"\\u2581hatred\": 5749,\n    \"\\u2581justification\": 5750,\n    \"\\u2581Still\": 5751,\n    \"\\u2581Big\": 5752,\n    \"\\u2581modest\": 5753,\n    \"\\u2581sideboards\": 5754,\n    \"\\u2581correction\": 5755,\n    \"\\u2581imprisonment\": 5756,\n    \"\\u2581advertisement\": 5757,\n    \"\\u2581peel\": 5758,\n    \"\\u2581lain\": 5759,\n    \"\\u2581Pass\": 5760,\n    \"\\u2581weaned\": 5761,\n    \"\\u2581lowliness\": 5762,\n    \"\\u2581Meat\": 5763,\n    \"\\u2581beryl\": 5764,\n    \"\\u2581equality\": 5765,\n    \"\\u2581Elon\": 5766,\n    \"\\u2581pallet\": 5767,\n    \"\\u2581departure\": 5768,\n    \"\\u2581Hard\": 5769,\n    \"\\u2581ladder\": 5770,\n    \"\\u2581population\": 5771,\n    \"\\u2581Esh\": 5772,\n    \"\\u2581womenservants\": 5773,\n    \"ulous\": 5774,\n    \"\\u2581scarce\": 5775,\n    \"\\u2581harmless\": 5776,\n    \"\\u2581Bethel\": 5777,\n    \"\\u2581withereth\": 5778,\n    \"\\u2581moss\": 5779,\n    \"\\u2581forks\": 5780,\n    \"\\u2581braid\": 5781,\n    \"pparent\": 5782,\n    \"\\u2581observation\": 5783,\n    \"\\u2581heritage\": 5784,\n    \"\\u2581trance\": 5785,\n    \"\\u2581hateful\": 5786,\n    \"\\u2581Mother\": 5787,\n    \"\\u2581weaknesses\": 5788,\n    \"\\u2581decease\": 5789,\n    \"\\u2581cele\": 5790,\n    \"\\u2581Cush\": 5791,\n    \"\\u2581lofty\": 5792,\n    \"\\u2581thoughtfully\": 5793,\n    \"\\u2581specifi\": 5794,\n    \"\\u2581practic\": 5795,\n    \"circling\": 5796,\n    \"\\u2581resolv\": 5797,\n    \"\\u2581boundary\": 5798,\n    \"\\u2581joyful\": 5799,\n    \"\\u2581owest\": 5800,\n    \"\\u2581Canaanit\": 5801,\n    \"\\u2581visitors\": 5802,\n    \"\\u2581More\": 5803,\n    \"\\u2581cust\": 5804,\n    \"\\u2581Dog\": 5805,\n    \"\\u2581purser\": 5806,\n    \"\\u2581bay\": 5807,\n    \"little\": 5808,\n    \"\\u2581Ram\": 5809,\n    \"\\u2581broth\": 5810,\n    \"\\u2581deliverance\": 5811,\n    \"\\u2581engraver\": 5812,\n    \"\\u2581Life\": 5813,\n    \"\\u2581hoisted\": 5814,\n    \"\\u2581enlightened\": 5815,\n    \"\\u2581Timnath\": 5816,\n    \"\\u2581Lif\": 5817,\n    \"mates\": 5818,\n    \"\\u2581lingere\": 5819,\n    \"\\u2581sevenfold\": 5820,\n    \"\\u2581exist\": 5821,\n    \"\\u2581rare\": 5822,\n    \"lves\": 5823,\n    \"\\u2581bitterness\": 5824,\n    \"\\u2581treaty\": 5825,\n    \"\\u2581nervously\": 5826,\n    \"\\u2581alleg\": 5827,\n    \"\\u2581reviled\": 5828,\n    \"\\u2581thefts\": 5829,\n    \"\\u2581Five\": 5830,\n    \"\\u2581overhear\": 5831,\n    \"ubtle\": 5832,\n    \"\\u2581fur\": 5833,\n    \"\\u2581swoop\": 5834,\n    \"\\u2581waist\": 5835,\n    \"\\u2581wishes\": 5836,\n    \"\\u2581drift\": 5837,\n    \"\\u2581rifle\": 5838,\n    \"\\u2581smoking\": 5839,\n    \"\\u2581ridden\": 5840,\n    \"\\u2581barrel\": 5841,\n    \"\\u2581Any\": 5842,\n    \"\\u2581collection\": 5843,\n    \"\\u2581Really\": 5844,\n    \"\\u2581sobbed\": 5845,\n    \"lick\": 5846,\n    \"\\u2581Ski\": 5847,\n    \"\\u2581clu\": 5848,\n    \"\\u2581maiden\": 5849,\n    \"\\u2581Away\": 5850,\n    \"\\u2581slice\": 5851,\n    \"\\u2581interpreter\": 5852,\n    \"\\u2581Amram\": 5853,\n    \"\\u2581costly\": 5854,\n    \"\\u2581safely\": 5855,\n    \"\\u2581stall\": 5856,\n    \"\\u2581avenger\": 5857,\n    \"\\u2581quietness\": 5858,\n    \"\\u2581dishes\": 5859,\n    \"roughly\": 5860,\n    \"\\u2581plantation\": 5861,\n    \"\\u2581forgiveness\": 5862,\n    \"\\u2581Athens\": 5863,\n    \"\\u2581Horites\": 5864,\n    \"\\u2581Ephesians\": 5865,\n    \"\\u2581buttocks\": 5866,\n    \"\\u2581malefactors\": 5867,\n    \"\\u2581ornaments\": 5868,\n    \"\\u2581stairs\": 5869,\n    \"\\u2581spoons\": 5870,\n    \"\\u2581mounds\": 5871,\n    \"\\u2581reflect\": 5872,\n    \"\\u2581enlarged\": 5873,\n    \"\\u2581plead\": 5874,\n    \"\\u2581discour\": 5875,\n    \"\\u2581sowest\": 5876,\n    \"\\u2581prey\": 5877,\n    \"\\u2581workman\": 5878,\n    \"\\u2581builders\": 5879,\n    \"makers\": 5880,\n    \"\\u2581fervently\": 5881,\n    \"\\u2581confidently\": 5882,\n    \"\\u2581passway\": 5883,\n    \"\\u2581sport\": 5884,\n    \"\\u2581Obed\": 5885,\n    \"gar\": 5886,\n    \"\\u2581blasphemeth\": 5887,\n    \"\\u2581blackness\": 5888,\n    \"bib\": 5889,\n    \"\\u2581sup\": 5890,\n    \"\\u2581fadeth\": 5891,\n    \"\\u2581knocketh\": 5892,\n    \"\\u2581quenched\": 5893,\n    \"\\u2581confounded\": 5894,\n    \"\\u2581hallowed\": 5895,\n    \"\\u2581unfe\": 5896,\n    \"\\u2581excited\": 5897,\n    \"\\u2581balloonist\": 5898,\n    \"\\u2581signifying\": 5899,\n    \"\\u2581threshing\": 5900,\n    \"\\u2581basin\": 5901,\n    \"\\u2581blink\": 5902,\n    \"\\u2581faithfulness\": 5903,\n    \"\\u2581lit\": 5904,\n    \"uci\": 5905,\n    \"quet\": 5906,\n    \"\\u2581compli\": 5907,\n    \"\\u2581trout\": 5908,\n    \"\\u2581source\": 5909,\n    \"\\u2581patiently\": 5910,\n    \"cated\": 5911,\n    \"\\u2581referr\": 5912,\n    \"\\u2581surprised\": 5913,\n    \"\\u2581bruised\": 5914,\n    \"\\u2581Ash\": 5915,\n    \"\\u2581consideration\": 5916,\n    \"\\u2581passion\": 5917,\n    \"llaba\": 5918,\n    \"\\u2581uprightly\": 5919,\n    \"\\u2581diam\": 5920,\n    \"\\u2581address\": 5921,\n    \"\\u2581pans\": 5922,\n    \"\\u2581fishers\": 5923,\n    \"aster\": 5924,\n    \"\\u2581tie\": 5925,\n    \"\\u2581affirmed\": 5926,\n    \"\\u2581buffeted\": 5927,\n    \"\\u2581chastened\": 5928,\n    \"\\u2581eighteen\": 5929,\n    \"\\u2581outwardly\": 5930,\n    \"uit\": 5931,\n    \"\\u2581mash\": 5932,\n    \"\\u2581squat\": 5933,\n    \"\\u2581childless\": 5934,\n    \"\\u2581pierced\": 5935,\n    \"onge\": 5936,\n    \"\\u2581contention\": 5937,\n    \"\\u2581hor\": 5938,\n    \"\\u2581joke\": 5939,\n    \"\\u2581beheaded\": 5940,\n    \"\\u2581AN\": 5941,\n    \"\\u2581eleventh\": 5942,\n    \"\\u2581pleasantly\": 5943,\n    \"ament\": 5944,\n    \"stance\": 5945,\n    \"\\u2581brimm\": 5946,\n    \"\\u2581strands\": 5947,\n    \"\\u2581anchors\": 5948,\n    \"\\u2581features\": 5949,\n    \"\\u2581sorcerers\": 5950,\n    \"\\u2581None\": 5951,\n    \"\\u2581basons\": 5952,\n    \"\\u2581peaceable\": 5953,\n    \"did\": 5954,\n    \"\\u2581defilement\": 5955,\n    \"\\u2581memorialize\": 5956,\n    \"\\u2581purifie\": 5957,\n    \"\\u2581Certainly\": 5958,\n    \"\\u2581Hunt\": 5959,\n    \"mission\": 5960,\n    \"\\u2581army\": 5961,\n    \"avan\": 5962,\n    \"\\u2581purifying\": 5963,\n    \"\\u2581bidd\": 5964,\n    \"\\u2581preserved\": 5965,\n    \"\\u2581provoked\": 5966,\n    \"hair\": 5967,\n    \"\\u2581reapeth\": 5968,\n    \"\\u2581outhouse\": 5969,\n    \"gate\": 5970,\n    \"\\u2581control\": 5971,\n    \"\\u2581Herm\": 5972,\n    \"\\u2581har\": 5973,\n    \"\\u2581destroyer\": 5974,\n    \"Egg\": 5975,\n    \"\\u2581wrestl\": 5976,\n    \"\\u2581boo\": 5977,\n    \"\\u2581threatening\": 5978,\n    \"\\u2581pals\": 5979,\n    \"\\u2581impen\": 5980,\n    \"gars\": 5981,\n    \"\\u2581Lib\": 5982,\n    \"\\u2581pigeons\": 5983,\n    \"\\u2581psalms\": 5984,\n    \"\\u2581senators\": 5985,\n    \"\\u2581Levites\": 5986,\n    \"\\u2581eagles\": 5987,\n    \"\\u2581sections\": 5988,\n    \"\\u2581stirr\": 5989,\n    \"\\u2581ruleth\": 5990,\n    \"oming\": 5991,\n    \"cob\": 5992,\n    \"\\u2581Timna\": 5993,\n    \"\\u2581farmers\": 5994,\n    \"\\u2581cured\": 5995,\n    \"\\u2581wounding\": 5996,\n    \"\\u2581fleeth\": 5997,\n    \"ical\": 5998,\n    \"\\u2581lawless\": 5999,\n    \"\\u2581lu\": 6000,\n    \"\\u2581metal\": 6001,\n    \"attered\": 6002,\n    \"\\u2581remarks\": 6003,\n    \"RE\": 6004,\n    \"\\u2581heels\": 6005,\n    \"\\u2581nails\": 6006,\n    \"\\u2581agate\": 6007,\n    \"\\u2581meaneth\": 6008,\n    \"\\u2581vows\": 6009,\n    \"\\u2581debtors\": 6010,\n    \"\\u2581loads\": 6011,\n    \"\\u2581cards\": 6012,\n    \"\\u2581Pat\": 6013,\n    \"\\u2581deceivers\": 6014,\n    \"\\u2581tur\": 6015,\n    \"\\u2581moveth\": 6016,\n    \"\\u2581fewer\": 6017,\n    \"\\u2581scraping\": 6018,\n    \"\\u2581Please\": 6019,\n    \"\\u2581attained\": 6020,\n    \"\\u2581possessor\": 6021,\n    \"\\u2581cu\": 6022,\n    \"\\u2581envying\": 6023,\n    \"\\u2581slime\": 6024,\n    \"traightway\": 6025,\n    \"\\u2581lowly\": 6026,\n    \"\\u2581handfuls\": 6027,\n    \"xa\": 6028,\n    \"\\u2581falsely\": 6029,\n    \"\\u2581pants\": 6030,\n    \"ways\": 6031,\n    \"edent\": 6032,\n    \"ndered\": 6033,\n    \"\\u2581k\": 6034,\n    \"\\u2581patt\": 6035,\n    \"\\u2581handled\": 6036,\n    \"\\u2581traveled\": 6037,\n    \"\\u2581understandeth\": 6038,\n    \"\\u2581doubled\": 6039,\n    \"\\u2581ruled\": 6040,\n    \"killet\": 6041,\n    \"\\u2581bricks\": 6042,\n    \"\\u2581sepulchres\": 6043,\n    \"\\u2581scraps\": 6044,\n    \"\\u2581lions\": 6045,\n    \"\\u2581worms\": 6046,\n    \"\\u2581fastings\": 6047,\n    \"\\u2581justif\": 6048,\n    \"\\u2581pleasing\": 6049,\n    \"\\u2581livers\": 6050,\n    \"\\u2581def\": 6051,\n    \"\\u2581swinging\": 6052,\n    \"\\u2581doubting\": 6053,\n    \"\\u2581favored\": 6054,\n    \"strain\": 6055,\n    \"\\u2581fetched\": 6056,\n    \"\\u2581seemly\": 6057,\n    \"\\u2581alike\": 6058,\n    \"\\u2581careth\": 6059,\n    \"\\u2581frie\": 6060,\n    \"\\u2581goal\": 6061,\n    \"\\u2581blades\": 6062,\n    \"\\u2581banks\": 6063,\n    \"\\u2581tales\": 6064,\n    \"\\u2581Saying\": 6065,\n    \"\\u2581spl\": 6066,\n    \"\\u2581salted\": 6067,\n    \"\\u2581rate\": 6068,\n    \"\\u2581burdened\": 6069,\n    \"\\u2581harps\": 6070,\n    \"mal\": 6071,\n    \"ference\": 6072,\n    \"\\u2581flowed\": 6073,\n    \"\\u2581deserted\": 6074,\n    \"sia\": 6075,\n    \"ronic\": 6076,\n    \"\\u2581folds\": 6077,\n    \"\\u2581traditions\": 6078,\n    \"\\u2581inv\": 6079,\n    \"ads\": 6080,\n    \"\\u2581inwards\": 6081,\n    \"\\u2581jell\": 6082,\n    \"\\u2581rubbe\": 6083,\n    \"changers\": 6084,\n    \"phan\": 6085,\n    \"\\u2581beg\": 6086,\n    \"\\u2581chil\": 6087,\n    \"\\u2581piti\": 6088,\n    \"\\u2581guides\": 6089,\n    \"\\u2581figures\": 6090,\n    \"\\u2581earthquakes\": 6091,\n    \"enness\": 6092,\n    \"\\u2581healings\": 6093,\n    \"\\u2581fightings\": 6094,\n    \"\\u2581outward\": 6095,\n    \"zah\": 6096,\n    \"coal\": 6097,\n    \"\\u2581dine\": 6098,\n    \"\\u2581sop\": 6099,\n    \"\\u2581posts\": 6100,\n    \"\\u2581scal\": 6101,\n    \"\\u2581chambers\": 6102,\n    \"\\u2581threads\": 6103,\n    \"\\u2581washing\": 6104,\n    \"\\u2581daze\": 6105,\n    \"\\u2581seeds\": 6106,\n    \"\\u2581playing\": 6107,\n    \"skinned\": 6108,\n    \"stern\": 6109,\n    \"sea\": 6110,\n    \"\\u2581Za\": 6111,\n    \"\\u2581cases\": 6112,\n    \"uts\": 6113,\n    \"lax\": 6114,\n    \"\\u2581multiplying\": 6115,\n    \"ograph\": 6116,\n    \"\\u2581revelations\": 6117,\n    \"\\u2581happens\": 6118,\n    \"\\u2581wail\": 6119,\n    \"\\u2581departing\": 6120,\n    \"\\u2581adventure\": 6121,\n    \"\\u2581pal\": 6122,\n    \"ause\": 6123,\n    \"\\u2581caves\": 6124,\n    \"\\u2581girdles\": 6125,\n    \"\\u2581deserts\": 6126,\n    \"bach\": 6127,\n    \"\\u2014-\": 6128,\n    \"\\u2581oppose\": 6129,\n    \"\\u2581hens\": 6130,\n    \"\\u2581cabins\": 6131,\n    \"ittle\": 6132,\n    \"\\u2581Sea\": 6133,\n    \"\\u2581War\": 6134,\n    \"\\u2581occasional\": 6135,\n    \"\\u2581oaths\": 6136,\n    \"\\u2581snows\": 6137,\n    \"\\u2581cau\": 6138,\n    \"oking\": 6139,\n    \"\\u2581bushe\": 6140,\n    \"omp\": 6141,\n    \"\\u2581tribulations\": 6142,\n    \"\\u2581labors\": 6143,\n    \"\\u2581gallo\": 6144,\n    \"raise\": 6145,\n    \"\\u2581afflictions\": 6146,\n    \"stable\": 6147,\n    \"uff\": 6148,\n    \"imate\": 6149,\n    \"\\u2581Gre\": 6150,\n    \"\\u2581hearer\": 6151,\n    \"\\u2581la\": 6152,\n    \"ium\": 6153,\n    \"\\u2581class\": 6154,\n    \"\\u2581states\": 6155,\n    \"\\u2581rightly\": 6156,\n    \"ui\": 6157,\n    \"\\u2581blinded\": 6158,\n    \"\\u2581fasted\": 6159,\n    \"cu\": 6160,\n    \"lent\": 6161,\n    \"\\u2581res\": 6162,\n    \"\\u2581perfecting\": 6163,\n    \"\\u2581foundations\": 6164,\n    \"\\u2581Ab\": 6165,\n    \"\\u2581Sett\": 6166,\n    \"oli\": 6167,\n    \"amped\": 6168,\n    \"\\u2581breastplates\": 6169,\n    \"rah\": 6170,\n    \"\\u2581Sh\": 6171,\n    \"\\u2581gat\": 6172,\n    \"\\u2581fr\": 6173,\n    \"\\u2581crackl\": 6174,\n    \"\\u2581Med\": 6175,\n    \"ecting\": 6176,\n    \"\\u2581shove\": 6177,\n    \"\\u2581counsels\": 6178,\n    \"\\u2581needles\": 6179,\n    \"\\u2581Haz\": 6180,\n    \"\\u2581sorrows\": 6181,\n    \"oned\": 6182,\n    \"eady\": 6183,\n    \"\\u2581inte\": 6184,\n    \"\\u2581Hush\": 6185,\n    \"\\u2581Hol\": 6186,\n    \"\\u2581Hid\": 6187,\n    \"ye\": 6188,\n    \"\\u2581famines\": 6189,\n    \"ON\": 6190,\n    \"\\u2581Gat\": 6191,\n    \"\\u2581sel\": 6192,\n    \"\\u2581workings\": 6193,\n    \"\\u2581socia\": 6194,\n    \"\\u2581snatch\": 6195,\n    \"yst\": 6196,\n    \"\\u2581wil\": 6197,\n    \"\\u2581persuad\": 6198,\n    \"damn\": 6199,\n    \"\\u2581uses\": 6200,\n    \"\\u2581breaks\": 6201,\n    \"\\u2581numbers\": 6202,\n    \"\\u2581Almo\": 6203,\n    \"Che\": 6204,\n    \"\\u2581Zi\": 6205,\n    \"\\u2581services\": 6206,\n    \"\\u2581reform\": 6207,\n    \"\\u2581weari\": 6208,\n    \"\\u2581fe\": 6209,\n    \"\\u2581crates\": 6210,\n    \"herein\": 6211,\n    \"MO\": 6212,\n    \"\\u2581allow\": 6213,\n    \"\\u2581uncle\": 6214,\n    \"cord\": 6215,\n    \"nigh\": 6216,\n    \"arrows\": 6217,\n    \"\\u2581struggl\": 6218,\n    \"\\u2581rou\": 6219,\n    \"\\u2581admire\": 6220,\n    \"eigne\": 6221,\n    \"\\u2581hum\": 6222,\n    \"\\u2581Ber\": 6223,\n    \"ander\": 6224,\n    \"B\": 6225,\n    \"allowed\": 6226,\n    \"\\u2581gaze\": 6227,\n    \"\\u2581blackberr\": 6228,\n    \"\\u2581uneas\": 6229,\n    \"\\u2581argue\": 6230,\n    \"ching\": 6231,\n    \"claimed\": 6232,\n    \"vi\": 6233,\n    \"wist\": 6234,\n    \"\\u2581pace\": 6235,\n    \"tended\": 6236,\n    \"\\u2581cat\": 6237,\n    \"\\u2581elevate\": 6238,\n    \"\\u2581Jac\": 6239,\n    \"\\u2581Jet\": 6240,\n    \"empti\": 6241,\n    \"\\u2581Pen\": 6242,\n    \"\\u2581loft\": 6243,\n    \"actic\": 6244,\n    \"\\u2581da\": 6245,\n    \"ray\": 6246,\n    \"\\u2581sole\": 6247,\n    \"berries\": 6248,\n    \"\\u2581mood\": 6249,\n    \"top\": 6250,\n    \"\\u2581pat\": 6251,\n    \"spir\": 6252,\n    \"shell\": 6253,\n    \"illy\": 6254,\n    \"epho\": 6255,\n    \"\\u2581blu\": 6256,\n    \"ock\": 6257,\n    \"\\u2581Car\": 6258,\n    \"\\u2581Command\": 6259,\n    \"\\u2581gall\": 6260,\n    \"lashes\": 6261,\n    \"\\u2581sacr\": 6262,\n    \"\\u2581trace\": 6263,\n    \"\\u2581commo\": 6264,\n    \"\\u2581wi\": 6265,\n    \"iles\": 6266,\n    \"orn\": 6267,\n    \"\\u2581waxe\": 6268,\n    \"hai\": 6269,\n    \"came\": 6270,\n    \"\\u2581invit\": 6271,\n    \"\\u2581Jer\": 6272,\n    \"Isn\": 6273,\n    \"\\u2581Hi\": 6274,\n    \"\\u2581tast\": 6275,\n    \"\\u2581Pu\": 6276,\n    \"\\u2581che\": 6277,\n    \"lasses\": 6278,\n    \"\\u2581slu\": 6279,\n    \"ud\": 6280,\n    \"onster\": 6281,\n    \"ame\": 6282,\n    \"\\u2581inde\": 6283,\n    \"oved\": 6284,\n    \"mar\": 6285,\n    \"ows\": 6286,\n    \"ieth\": 6287,\n    \"\\u2581contr\": 6288,\n    \"\\u2581Ri\": 6289,\n    \"\\u2581pr\": 6290,\n    \"\\u2581rehearse\": 6291,\n    \"lids\": 6292,\n    \"\\u2581Sep\": 6293,\n    \"rity\": 6294,\n    \"zo\": 6295,\n    \"ow\": 6296,\n    \"\\u2581Sou\": 6297,\n    \"rench\": 6298,\n    \"ncy\": 6299,\n    \"ence\": 6300,\n    \"igure\": 6301,\n    \"\\u2581constraine\": 6302,\n    \"congratu\": 6303,\n    \"oon\": 6304,\n    \"ano\": 6305,\n    \"\\u2581rage\": 6306,\n    \"\\u2581pu\": 6307,\n    \"met\": 6308,\n    \"eek\": 6309,\n    \"hew\": 6310,\n    \"\\u2581Sho\": 6311,\n    \"nah\": 6312,\n    \"bi\": 6313,\n    \"tie\": 6314,\n    \"asped\": 6315,\n    \"\\u2581Amon\": 6316,\n    \"tening\": 6317,\n    \"asty\": 6318,\n    \"han\": 6319,\n    \"\\u2581considerabl\": 6320,\n    \"vious\": 6321,\n    \"zens\": 6322,\n    \"\\u2581strok\": 6323,\n    \"husks\": 6324,\n    \"loo\": 6325,\n    \"\\u2581spat\": 6326,\n    \"\\u2581rais\": 6327,\n    \"To\": 6328,\n    \"\\u2581scra\": 6329,\n    \"\\u2581port\": 6330,\n    \"\\u2581wag\": 6331,\n    \"ace\": 6332,\n    \"\\u2581rec\": 6333,\n    \"mbled\": 6334,\n    \"\\u2581actual\": 6335,\n    \"\\u2581troubl\": 6336,\n    \"rie\": 6337,\n    \"awfully\": 6338,\n    \"ench\": 6339,\n    \"laus\": 6340,\n    \"rable\": 6341,\n    \"\\u2581chal\": 6342,\n    \"\\u2581Om\": 6343,\n    \"ron\": 6344,\n    \"cial\": 6345,\n    \"roth\": 6346,\n    \"\\u2581li\": 6347,\n    \"\\u2581divid\": 6348,\n    \"P\": 6349,\n    \"\\u2581stripe\": 6350,\n    \"ER\": 6351,\n    \"any\": 6352,\n    \"obably\": 6353,\n    \"giver\": 6354,\n    \"\\u2581plo\": 6355,\n    \"amo\": 6356,\n    \"oiled\": 6357,\n    \"amia\": 6358,\n    \"TH\": 6359,\n    \"ivity\": 6360,\n    \"wish\": 6361,\n    \"E\": 6362,\n    \"self\": 6363,\n    \"nger\": 6364,\n    \"\\u2581attendan\": 6365,\n    \"\\u2581slim\": 6366,\n    \"\\u2581ston\": 6367,\n    \"ging\": 6368,\n    \"itable\": 6369,\n    \"AR\": 6370,\n    \"ib\": 6371,\n    \"minate\": 6372,\n    \"sided\": 6373,\n    \"\\u2581magn\": 6374,\n    \"\\u2581rob\": 6375,\n    \"\\u2581companion\": 6376,\n    \"inch\": 6377,\n    \"Hey\": 6378,\n    \"icles\": 6379,\n    \"j\": 6380,\n    \"ounding\": 6381,\n    \"headed\": 6382,\n    \"never\": 6383,\n    \"\\u2581impe\": 6384,\n    \"\\u2581Tra\": 6385,\n    \"mobil\": 6386,\n    \"\\u2581arch\": 6387,\n    \"struction\": 6388,\n    \"\\u2581slap\": 6389,\n    \"ips\": 6390,\n    \"\\u2581wrap\": 6391,\n    \"him\": 6392,\n    \"\\u2581Tim\": 6393,\n    \"\\u2581bite\": 6394,\n    \"\\u2581horn\": 6395,\n    \"\\u2581convi\": 6396,\n    \"\\u2581complain\": 6397,\n    \"\\u2581impo\": 6398,\n    \"oving\": 6399,\n    \"\\u2581scorpion\": 6400,\n    \"\\u2581elbow\": 6401,\n    \"\\u2581poplar\": 6402,\n    \"\\u2581apron\": 6403,\n    \"\\u2581impla\": 6404,\n    \"\\u2581hillside\": 6405,\n    \"\\u2581sorcerer\": 6406,\n    \"\\u2581anchor\": 6407,\n    \"\\u2581feature\": 6408,\n    \"use\": 6409,\n    \"\\u2581bason\": 6410,\n    \"\\u2581slope\": 6411,\n    \"\\u2581physician\": 6412,\n    \"\\u2581Sanct\": 6413,\n    \"\\u2581strand\": 6414,\n    \"\\u2581warrior\": 6415,\n    \"hereabouts\": 6416,\n    \"\\u2581highway\": 6417,\n    \"\\u2581idolater\": 6418,\n    \"\\u2581locust\": 6419,\n    \"\\u2581payment\": 6420,\n    \"\\u2581speci\": 6421,\n    \"\\u2581tithe\": 6422,\n    \"orry\": 6423,\n    \"\\u2581selve\": 6424,\n    \"\\u2581hypocrite\": 6425,\n    \"\\u2581robber\": 6426,\n    \"\\u2581tare\": 6427,\n    \"\\u2581observ\": 6428,\n    \"\\u2581thorn\": 6429,\n    \"\\u2581tran\": 6430,\n    \"\\u2581sigh\": 6431,\n    \"\\u2581mil\": 6432,\n    \"\\u2581revile\": 6433,\n    \"agger\": 6434,\n    \"jected\": 6435,\n    \"continu\": 6436,\n    \"rag\": 6437,\n    \"citizen\": 6438,\n    \"Wash\": 6439,\n    \"uncle\": 6440,\n    \"corn\": 6441,\n    \"source\": 6442,\n    \"pathetic\": 6443,\n    \"tions\": 6444,\n    \"\\u2581excus\": 6445,\n    \"handled\": 6446,\n    \"draft\": 6447,\n    \"float\": 6448,\n    \"stalk\": 6449,\n    \"AN\": 6450,\n    \"limb\": 6451,\n    \"block\": 6452,\n    \"Summ\": 6453,\n    \"hog\": 6454,\n    \"Never\": 6455,\n    \"\\u2581pierc\": 6456,\n    \"\\u2581bro\": 6457,\n    \"\\u2581persecut\": 6458,\n    \"gird\": 6459,\n    \"box\": 6460,\n    \"stedfast\": 6461,\n    \"Watch\": 6462,\n    \"cloth\": 6463,\n    \"\\u2581sid\": 6464,\n    \"None\": 6465,\n    \"search\": 6466,\n    \"Seven\": 6467,\n    \"Get\": 6468,\n    \"Henry\": 6469,\n    \"keeper\": 6470,\n    \"soldier\": 6471,\n    \"J\": 6472,\n    \"Perhaps\": 6473,\n    \"shekel\": 6474,\n    \"fields\": 6475,\n    \"ounted\": 6476,\n    \"shot\": 6477,\n    \"kindness\": 6478,\n    \"condemned\": 6479,\n    \"Homer\": 6480,\n    \"\\u2581whistl\": 6481,\n    \"please\": 6482,\n    \"Hur\": 6483,\n    \"horse\": 6484,\n    \"witnesses\": 6485,\n    \"pleasure\": 6486,\n    \"bade\": 6487,\n    \"spread\": 6488,\n    \"Give\": 6489,\n    \"bush\": 6490,\n    \"friend\": 6491,\n    \"myself\": 6492,\n    \"Lurvy\": 6493,\n    \"wheel\": 6494,\n    \"perfect\": 6495,\n    \"With\": 6496,\n    \"room\": 6497,\n    \"pans\": 6498,\n    \"generation\": 6499,\n    \"while\": 6500,\n    \"burnt\": 6501,\n    \"nothing\": 6502,\n    \"knowledge\": 6503,\n    \"\\u2581reject\": 6504,\n    \"push\": 6505,\n    \"aa\": 6506,\n    \"\\u2581dismiss\": 6507,\n    \"dad\": 6508,\n    \"serve\": 6509,\n    \"coat\": 6510,\n    \"\\u2581Gi\": 6511,\n    \"One\": 6512,\n    \"whe\": 6513,\n    \"trap\": 6514,\n    \"sail\": 6515,\n    \"\\u2581thresh\": 6516,\n    \"\\u2581lum\": 6517,\n    \"green\": 6518,\n    \"ertainly\": 6519,\n    \"Say\": 6520,\n    \"place\": 6521,\n    \"\\u2581confound\": 6522,\n    \"\\u2581hallow\": 6523,\n    \"\\u2581gainsay\": 6524,\n    \"\\u2581signify\": 6525,\n    \"\\u2581edify\": 6526,\n    \"\\u2581vanish\": 6527,\n    \"eeches\": 6528,\n    \"only\": 6529,\n    \"\\u2581explain\": 6530,\n    \"\\u2581kno\": 6531,\n    \"\\u2581vex\": 6532,\n    \"\\u2581sniff\": 6533,\n    \"\\u2581repeat\": 6534,\n    \"\\u2581exceed\": 6535,\n    \"\\u2581chuckl\": 6536,\n    \"\\u2581ordain\": 6537,\n    \"\\u2581grabb\": 6538,\n    \"bond\": 6539,\n    \"\\u2581threat\": 6540,\n    \"\\u2581flam\": 6541,\n    \"Put\": 6542,\n    \"\\u2581amaz\": 6543,\n    \"See\": 6544,\n    \"pri\": 6545,\n    \"portion\": 6546,\n    \"\\u2581laborer\": 6547,\n    \"lead\": 6548,\n    \"\\u2581citizen\": 6549,\n    \"seeing\": 6550,\n    \"\\u2581shear\": 6551,\n    \"\\u2581ta\": 6552,\n    \"\\u2581plea\": 6553,\n    \"Wa\": 6554,\n    \"oasty\": 6555,\n    \"nything\": 6556,\n    \"\\u2581App\": 6557,\n    \"made\": 6558,\n    \"\\u2581tame\": 6559,\n    \"\\u2581boot\": 6560,\n    \"\\u2581testifie\": 6561,\n    \"run\": 6562,\n    \"\\u2581Exp\": 6563,\n    \"\\u2581create\": 6564,\n    \"\\u2581boar\": 6565,\n    \"\\u2581Israelite\": 6566,\n    \"tant\": 6567,\n    \"olved\": 6568,\n    \"\\u2581flourish\": 6569,\n    \"hod\": 6570,\n    \"\\u2581continual\": 6571,\n    \"\\u2581genealog\": 6572,\n    \"\\u2581sudden\": 6573,\n    \"sparag\": 6574,\n    \"ufficien\": 6575,\n    \"oldiers\": 6576,\n    \"\\u2581dizz\": 6577,\n    \"\\u2581choos\": 6578,\n    \"trong\": 6579,\n    \"\\u2581filth\": 6580,\n    \"\\u2581snar\": 6581,\n    \"\\u2581reconcile\": 6582,\n    \"\\u2581communicat\": 6583,\n    \"\\u2581memor\": 6584,\n    \"\\u2581twent\": 6585,\n    \"phos\": 6586,\n    \"hould\": 6587,\n    \"angel\": 6588,\n    \"\\u2581distinct\": 6589,\n    \"bur\": 6590,\n    \"ification\": 6591,\n    \"\\u2581Amra\": 6592,\n    \"\\u2581import\": 6593,\n    \"\\u2581mir\": 6594,\n    \"\\u2581merci\": 6595,\n    \"path\": 6596,\n    \"\\u2581persuasi\": 6597,\n    \"\\u2581tee\": 6598,\n    \"\\u2581Mattha\": 6599,\n    \"\\u2581appro\": 6600,\n    \"aradise\": 6601,\n    \"aughter\": 6602,\n    \"neys\": 6603,\n    \"\\u2581attract\": 6604,\n    \"\\u2581Govern\": 6605,\n    \"\\u2581situat\": 6606,\n    \"\\u2581stubb\": 6607,\n    \"\\u2581subtil\": 6608,\n    \"\\u2581habit\": 6609,\n    \"\\u2581abomina\": 6610,\n    \"\\u2581pouch\": 6611,\n    \"ecomposers\": 6612,\n    \"estroy\": 6613,\n    \"ntreat\": 6614,\n    \"attering\": 6615,\n    \"xcellent\": 6616,\n    \"ontrary\": 6617,\n    \"ontinue\": 6618,\n    \"\\u2581gloom\": 6619,\n    \"venture\": 6620,\n    \"urmur\": 6621,\n    \"ilbur\": 6622,\n    \"epart\": 6623,\n    \"istened\": 6624,\n    \"\\u2581Apoll\": 6625,\n    \"\\u2581excel\": 6626,\n    \"\\u2581Ponti\": 6627,\n    \"\\u2581esp\": 6628,\n    \"arvel\": 6629,\n    \"\\u2581succ\": 6630,\n    \"rink\": 6631,\n    \"\\u2581bureau\": 6632,\n    \"\\u2581employ\": 6633,\n    \"\\u2581scru\": 6634,\n    \"\\u2581August\": 6635,\n    \"\\u2581Nico\": 6636,\n    \"\\u2581centipede\": 6637,\n    \"\\u2581executi\": 6638,\n    \"\\u2581expense\": 6639,\n    \"\\u2581frail\": 6640,\n    \"\\u2581grasshopper\": 6641,\n    \"\\u2581happie\": 6642,\n    \"\\u2581revelling\": 6643,\n    \"\\u2581skelet\": 6644,\n    \"\\u2581traitor\": 6645,\n    \"\\u2581victual\": 6646,\n    \"Crunchy\": 6647,\n    \"Phoebe\": 6648,\n    \"Slowly\": 6649,\n    \"bulus\": 6650,\n    \"cian\": 6651,\n    \"consequen\": 6652,\n    \"continency\": 6653,\n    \"gullible\": 6654,\n    \"hippoorwill\": 6655,\n    \"languish\": 6656,\n    \"mphas\": 6657,\n    \"olog\": 6658,\n    \"petitions\": 6659,\n    \"roduction\": 6660,\n    \"significan\": 6661,\n    \"zziel\": 6662,\n    \"\\u2581Agabus\": 6663,\n    \"\\u2581Areopag\": 6664,\n    \"\\u2581Assyria\": 6665,\n    \"\\u2581Baal\": 6666,\n    \"\\u2581Baalzephon\": 6667,\n    \"\\u2581Babel\": 6668,\n    \"\\u2581Baptizer\": 6669,\n    \"\\u2581Beautiful\": 6670,\n    \"\\u2581Beroea\": 6671,\n    \"\\u2581Bigfish\": 6672,\n    \"\\u2581Bithynia\": 6673,\n    \"\\u2581Carmi\": 6674,\n    \"\\u2581Circumcision\": 6675,\n    \"\\u2581Cotton\": 6676,\n    \"\\u2581Cowee\": 6677,\n    \"\\u2581Crispus\": 6678,\n    \"\\u2581Crucify\": 6679,\n    \"\\u2581Dalma\": 6680,\n    \"\\u2581Dorcas\": 6681,\n    \"\\u2581Ellasar\": 6682,\n    \"\\u2581Epaphroditus\": 6683,\n    \"\\u2581Florida\": 6684,\n    \"\\u2581Fulfil\": 6685,\n    \"\\u2581Gabriel\": 6686,\n    \"\\u2581Gerasenes\": 6687,\n    \"\\u2581Gershom\": 6688,\n    \"\\u2581Gethsemane\": 6689,\n    \"\\u2581Girgas\": 6690,\n    \"\\u2581Increase\": 6691,\n    \"\\u2581Izhar\": 6692,\n    \"\\u2581Jehoshaphat\": 6693,\n    \"\\u2581Jokshan\": 6694,\n    \"\\u2581Joram\": 6695,\n    \"\\u2581Lebanon\": 6696,\n    \"\\u2581Lydda\": 6697,\n    \"\\u2581Lydia\": 6698,\n    \"\\u2581Mattath\": 6699,\n    \"\\u2581Matthias\": 6700,\n    \"\\u2581Mehujael\": 6701,\n    \"\\u2581Melchi\": 6702,\n    \"\\u2581Methusael\": 6703,\n    \"\\u2581Millipede\": 6704,\n    \"\\u2581Nimrod\": 6705,\n    \"\\u2581Nineveh\": 6706,\n    \"\\u2581Onesiphorus\": 6707,\n    \"\\u2581Pergamum\": 6708,\n    \"\\u2581Phoeni\": 6709,\n    \"\\u2581Pisidia\": 6710,\n    \"\\u2581Potomac\": 6711,\n    \"\\u2581Prophesy\": 6712,\n    \"\\u2581Publius\": 6713,\n    \"\\u2581Rabboni\": 6714,\n    \"\\u2581Radiant\": 6715,\n    \"\\u2581Rahab\": 6716,\n    \"\\u2581Rameses\": 6717,\n    \"\\u2581Rephaims\": 6718,\n    \"\\u2581Rufus\": 6719,\n    \"\\u2581Sabaoth\": 6720,\n    \"\\u2581Sacrifice\": 6721,\n    \"\\u2581Salome\": 6722,\n    \"\\u2581School\": 6723,\n    \"\\u2581Search\": 6724,\n    \"\\u2581Seba\": 6725,\n    \"\\u2581Secret\": 6726,\n    \"\\u2581Shaveh\": 6727,\n    \"\\u2581Siloam\": 6728,\n    \"\\u2581Smyrna\": 6729,\n    \"\\u2581Sosthenes\": 6730,\n    \"\\u2581Squirrel\": 6731,\n    \"\\u2581Supreme\": 6732,\n    \"\\u2581Tavern\": 6733,\n    \"\\u2581Theophilus\": 6734,\n    \"\\u2581Thessalonians\": 6735,\n    \"\\u2581Tubalcain\": 6736,\n    \"\\u2581Zachariah\": 6737,\n    \"\\u2581Zerubbabel\": 6738,\n    \"\\u2581absolute\": 6739,\n    \"\\u2581acquired\": 6740,\n    \"\\u2581advise\": 6741,\n    \"\\u2581ammunition\": 6742,\n    \"\\u2581apothecary\": 6743,\n    \"\\u2581appetizing\": 6744,\n    \"\\u2581apprehend\": 6745,\n    \"\\u2581armpits\": 6746,\n    \"\\u2581assumption\": 6747,\n    \"\\u2581beefsteak\": 6748,\n    \"\\u2581bison\": 6749,\n    \"\\u2581bomb\": 6750,\n    \"\\u2581boulder\": 6751,\n    \"\\u2581brilliant\": 6752,\n    \"\\u2581burial\": 6753,\n    \"\\u2581busybodies\": 6754,\n    \"\\u2581calico\": 6755,\n    \"\\u2581clamor\": 6756,\n    \"\\u2581companies\": 6757,\n    \"\\u2581compound\": 6758,\n    \"\\u2581conspiracy\": 6759,\n    \"\\u2581convocation\": 6760,\n    \"\\u2581cornbread\": 6761,\n    \"\\u2581craftsmen\": 6762,\n    \"\\u2581crawfish\": 6763,\n    \"\\u2581cumber\": 6764,\n    \"\\u2581delusion\": 6765,\n    \"\\u2581denarius\": 6766,\n    \"\\u2581detail\": 6767,\n    \"\\u2581dictionary\": 6768,\n    \"\\u2581disannul\": 6769,\n    \"\\u2581discarded\": 6770,\n    \"\\u2581divorcement\": 6771,\n    \"\\u2581doorframes\": 6772,\n    \"\\u2581downstream\": 6773,\n    \"\\u2581elaborate\": 6774,\n    \"\\u2581eloquent\": 6775,\n    \"\\u2581emperor\": 6776,\n    \"\\u2581enact\": 6777,\n    \"\\u2581evangelist\": 6778,\n    \"\\u2581experiment\": 6779,\n    \"\\u2581extreme\": 6780,\n    \"\\u2581fatfleshed\": 6781,\n    \"\\u2581fathoms\": 6782,\n    \"\\u2581foreknew\": 6783,\n    \"\\u2581fullgrown\": 6784,\n    \"\\u2581fumbling\": 6785,\n    \"\\u2581futile\": 6786,\n    \"\\u2581garner\": 6787,\n    \"\\u2581gleam\": 6788,\n    \"\\u2581goddess\": 6789,\n    \"\\u2581gravy\": 6790,\n    \"\\u2581grisled\": 6791,\n    \"\\u2581gulped\": 6792,\n    \"\\u2581gutted\": 6793,\n    \"\\u2581gutters\": 6794,\n    \"\\u2581happiness\": 6795,\n    \"\\u2581hominy\": 6796,\n    \"\\u2581humiliation\": 6797,\n    \"\\u2581immutab\": 6798,\n    \"\\u2581implements\": 6799,\n    \"\\u2581inconvenient\": 6800,\n    \"\\u2581infield\": 6801,\n    \"\\u2581influen\": 6802,\n    \"\\u2581ingathering\": 6803,\n    \"\\u2581interlude\": 6804,\n    \"\\u2581kinswoman\": 6805,\n    \"\\u2581kneadingtroughs\": 6806,\n    \"\\u2581lamentation\": 6807,\n    \"\\u2581lantern\": 6808,\n    \"\\u2581leisure\": 6809,\n    \"\\u2581lintel\": 6810,\n    \"\\u2581material\": 6811,\n    \"\\u2581medicine\": 6812,\n    \"\\u2581millipedes\": 6813,\n    \"\\u2581moccasins\": 6814,\n    \"\\u2581mudflat\": 6815,\n    \"\\u2581muzzle\": 6816,\n    \"\\u2581nerve\": 6817,\n    \"\\u2581nipple\": 6818,\n    \"\\u2581oysters\": 6819,\n    \"\\u2581pellets\": 6820,\n    \"\\u2581penknife\": 6821,\n    \"\\u2581pollut\": 6822,\n    \"\\u2581porcupine\": 6823,\n    \"\\u2581portrait\": 6824,\n    \"\\u2581preeminence\": 6825,\n    \"\\u2581prejudice\": 6826,\n    \"\\u2581preparing\": 6827,\n    \"\\u2581presumptuous\": 6828,\n    \"\\u2581problem\": 6829,\n    \"\\u2581promptly\": 6830,\n    \"\\u2581provocation\": 6831,\n    \"\\u2581rabble\": 6832,\n    \"\\u2581rapid\": 6833,\n    \"\\u2581religious\": 6834,\n    \"\\u2581renounce\": 6835,\n    \"\\u2581restraineth\": 6836,\n    \"\\u2581ridiculous\": 6837,\n    \"\\u2581rigour\": 6838,\n    \"\\u2581roost\": 6839,\n    \"\\u2581sandwich\": 6840,\n    \"\\u2581scruples\": 6841,\n    \"\\u2581slog\": 6842,\n    \"\\u2581slothful\": 6843,\n    \"\\u2581smiling\": 6844,\n    \"\\u2581sobriety\": 6845,\n    \"\\u2581sorceries\": 6846,\n    \"\\u2581sorcery\": 6847,\n    \"\\u2581stimulate\": 6848,\n    \"\\u2581stupor\": 6849,\n    \"\\u2581subdue\": 6850,\n    \"\\u2581suffice\": 6851,\n    \"\\u2581sumptuous\": 6852,\n    \"\\u2581supreme\": 6853,\n    \"\\u2581survival\": 6854,\n    \"\\u2581television\": 6855,\n    \"\\u2581terrestrial\": 6856,\n    \"\\u2581theoretical\": 6857,\n    \"\\u2581thereafter\": 6858,\n    \"\\u2581thirteen\": 6859,\n    \"\\u2581thistledown\": 6860,\n    \"\\u2581timbrel\": 6861,\n    \"\\u2581tomatoes\": 6862,\n    \"\\u2581traffic\": 6863,\n    \"\\u2581trample\": 6864,\n    \"\\u2581tremen\": 6865,\n    \"\\u2581trinket\": 6866,\n    \"\\u2581unaccountabl\": 6867,\n    \"\\u2581unfair\": 6868,\n    \"\\u2581univers\": 6869,\n    \"\\u2581unruly\": 6870,\n    \"\\u2581unthankful\": 6871,\n    \"\\u2581unwashen\": 6872,\n    \"\\u2581vesture\": 6873,\n    \"\\u2581vicinity\": 6874,\n    \"\\u2581victim\": 6875,\n    \"\\u2581woodpile\": 6876,\n    \"\\u2581wrinkle\": 6877,\n    \"\\u2581yawned\": 6878,\n    \"\\u2581zero\": 6879,\n    \"\\u2581Death\": 6880,\n    \"acinth\": 6881,\n    \"shrunk\": 6882,\n    \"ummim\": 6883,\n    \"\\u2581Ancih\": 6884,\n    \"\\u2581Antipa\": 6885,\n    \"\\u2581Frankl\": 6886,\n    \"\\u2581Jenny\": 6887,\n    \"\\u2581Malch\": 6888,\n    \"\\u2581Mississippi\": 6889,\n    \"\\u2581accommodat\": 6890,\n    \"\\u2581altercat\": 6891,\n    \"\\u2581calculat\": 6892,\n    \"\\u2581clown\": 6893,\n    \"\\u2581clutter\": 6894,\n    \"\\u2581copy\": 6895,\n    \"\\u2581cripple\": 6896,\n    \"\\u2581expanse\": 6897,\n    \"\\u2581flags\": 6898,\n    \"\\u2581gabbl\": 6899,\n    \"\\u2581grove\": 6900,\n    \"\\u2581license\": 6901,\n    \"\\u2581lilies\": 6902,\n    \"\\u2581magnificen\": 6903,\n    \"\\u2581morter\": 6904,\n    \"\\u2581pastille\": 6905,\n    \"\\u2581plaster\": 6906,\n    \"\\u2581ribbon\": 6907,\n    \"\\u2581snuffdishes\": 6908,\n    \"\\u2581surmis\": 6909,\n    \"\\u2581terms\": 6910,\n    \"ietly\": 6911,\n    \"\\u2581Jann\": 6912,\n    \"\\u2581assault\": 6913,\n    \"\\u2581chryso\": 6914,\n    \"\\u2581crafty\": 6915,\n    \"\\u2581delud\": 6916,\n    \"\\u2581drool\": 6917,\n    \"\\u2581grandfather\": 6918,\n    \"\\u2581humility\": 6919,\n    \"\\u2581lamented\": 6920,\n    \"\\u2581lungs\": 6921,\n    \"\\u2581mankind\": 6922,\n    \"\\u2581narrat\": 6923,\n    \"\\u2581negotiat\": 6924,\n    \"\\u2581risk\": 6925,\n    \"\\u2581smack\": 6926,\n    \"\\u2581soothsay\": 6927,\n    \"\\u2581spark\": 6928,\n    \"\\u2581squeal\": 6929,\n    \"\\u2581stove\": 6930,\n    \"\\u2581twirl\": 6931,\n    \"\\u2581unsettle\": 6932,\n    \"\\u2581whicker\": 6933,\n    \"\\u2581withdraw\": 6934,\n    \"\\u2581Earth\": 6935,\n    \"\\u2581Towers\": 6936,\n    \"\\u2581circuit\": 6937,\n    \"\\u2581expert\": 6938,\n    \"\\u2581foaming\": 6939,\n    \"\\u2581ignore\": 6940,\n    \"\\u2581wobbl\": 6941,\n    \"\\u2581beho\": 6942,\n    \"\\u2581garnish\": 6943,\n    \"xtort\": 6944,\n    \"\\u2581Galeed\": 6945,\n    \"\\u2581Sabt\": 6946,\n    \"\\u2581basketfuls\": 6947,\n    \"\\u2581daddy\": 6948,\n    \"\\u2581fragran\": 6949,\n    \"\\u2581motor\": 6950,\n    \"\\u2581napkin\": 6951,\n    \"\\u2581scourging\": 6952,\n    \"\\u2581surpass\": 6953,\n    \"versatile\": 6954,\n    \"\\u2581balance\": 6955,\n    \"\\u2581glid\": 6956,\n    \"\\u2581overflow\": 6957,\n    \"\\u2581suspicio\": 6958,\n    \"spouts\": 6959,\n    \"\\u2581dazzling\": 6960,\n    \"\\u2581effectual\": 6961,\n    \"\\u2581initial\": 6962,\n    \"\\u2581opus\": 6963,\n    \"\\u2581waistcoat\": 6964,\n    \"\\u2581hobbl\": 6965,\n    \"\\u2581numer\": 6966,\n    \"\\u2581purification\": 6967,\n    \"\\u2581Joanna\": 6968,\n    \"\\u2581dragline\": 6969,\n    \"\\u2581runneth\": 6970,\n    \"\\u2581Hirah\": 6971,\n    \"\\u2581assessment\": 6972,\n    \"\\u2581loathe\": 6973,\n    \"\\u2581superlative\": 6974,\n    \"\\u2581Pontiac\": 6975,\n    \"\\u2581persistent\": 6976,\n    \"\\u2581uphill\": 6977,\n    \"\\u2581Amoz\": 6978,\n    \"\\u2581rude\": 6979,\n    \"ilacs\": 6980,\n    \"\\u2581approached\": 6981,\n    \"\\u2581billows\": 6982,\n    \"\\u2581globe\": 6983,\n    \"\\u2581oink\": 6984,\n    \"\\u2581option\": 6985,\n    \"\\u2581rescue\": 6986,\n    \"\\u2581balm\": 6987,\n    \"\\u2581councillor\": 6988,\n    \"\\u2581frying\": 6989,\n    \"\\u2581hazard\": 6990,\n    \"\\u2581nursing\": 6991,\n    \"\\u2581shiver\": 6992,\n    \"\\u2581Josiah\": 6993,\n    \"\\u2581enchant\": 6994,\n    \"\\u2581sentiment\": 6995,\n    \"\\u2581ambassage\": 6996,\n    \"\\u2581filthiness\": 6997,\n    \"\\u2581forefather\": 6998,\n    \"\\u2581consist\": 6999,\n    \"\\u2581eventide\": 7000,\n    \"\\u2581grandson\": 7001,\n    \"\\u2581reclin\": 7002,\n    \"pproximately\": 7003,\n    \"\\u2581dignities\": 7004,\n    \"\\u2581peaks\": 7005,\n    \"\\u2581Slug\": 7006,\n    \"\\u2581furious\": 7007,\n    \"\\u2581stroll\": 7008,\n    \"\\u2581superfluity\": 7009,\n    \"\\u2581Raamah\": 7010,\n    \"\\u2581aloft\": 7011,\n    \"\\u2581divinity\": 7012,\n    \"\\u2581slats\": 7013,\n    \"\\u2581caution\": 7014,\n    \"\\u2581pride\": 7015,\n    \"\\u2581cautiously\": 7016,\n    \"\\u2581ginger\": 7017,\n    \"\\u2581splash\": 7018,\n    \"\\u2581Doctor\": 7019,\n    \"\\u2581appeti\": 7020,\n    \"\\u2581babblings\": 7021,\n    \"\\u2581befitting\": 7022,\n    \"\\u2581leasing\": 7023,\n    \"\\u2581precede\": 7024,\n    \"\\u2581welfare\": 7025,\n    \"\\u2581outfit\": 7026,\n    \"\\u2581spoonful\": 7027,\n    \"\\u2581bacteria\": 7028,\n    \"\\u2581uniform\": 7029,\n    \"azin\": 7030,\n    \"\\u2581Corinthians\": 7031,\n    \"\\u2581usury\": 7032,\n    \"\\u2581display\": 7033,\n    \"\\u2581salon\": 7034,\n    \"\\u2581battle\": 7035,\n    \"\\u2581turtle\": 7036,\n    \"\\u2581vomit\": 7037,\n    \"substan\": 7038,\n    \"\\u2581manger\": 7039,\n    \"\\u2581Calah\": 7040,\n    \"\\u2581exhal\": 7041,\n    \"\\u2581stanched\": 7042,\n    \"\\u2581vaunt\": 7043,\n    \"\\u2581chaise\": 7044,\n    \"\\u2581translat\": 7045,\n    \"\\u2581britches\": 7046,\n    \"\\u2581guiltless\": 7047,\n    \"\\u2581owl\": 7048,\n    \"\\u2581travers\": 7049,\n    \"\\u2581Salem\": 7050,\n    \"\\u2581fuss\": 7051,\n    \"\\u2581acquaintance\": 7052,\n    \"\\u2581Gaza\": 7053,\n    \"\\u2581Mizraim\": 7054,\n    \"\\u2581allotted\": 7055,\n    \"\\u2581soaked\": 7056,\n    \"\\u2581primar\": 7057,\n    \"\\u2581suet\": 7058,\n    \"\\u2581droop\": 7059,\n    \"\\u2581clash\": 7060,\n    \"\\u2581gloomily\": 7061,\n    \"\\u2581vouch\": 7062,\n    \"\\u2581Rhod\": 7063,\n    \"\\u2581decay\": 7064,\n    \"\\u2581dripping\": 7065,\n    \"\\u2581loyal\": 7066,\n    \"\\u2581Julius\": 7067,\n    \"\\u2581enforc\": 7068,\n    \"\\u2581partiality\": 7069,\n    \"Meeting\": 7070,\n    \"\\u2581eaves\": 7071,\n    \"\\u2581enrolment\": 7072,\n    \"\\u2581kidding\": 7073,\n    \"tude\": 7074,\n    \"\\u2581popover\": 7075,\n    \"\\u2581laz\": 7076,\n    \"\\u2581legitima\": 7077,\n    \"\\u2581Tert\": 7078,\n    \"\\u2581Claudius\": 7079,\n    \"\\u2581poet\": 7080,\n    \"\\u2581flake\": 7081,\n    \"\\u2581streak\": 7082,\n    \"Nice\": 7083,\n    \"sabba\": 7084,\n    \"\\u2581okay\": 7085,\n    \"\\u2581tube\": 7086,\n    \"\\u2581cinder\": 7087,\n    \"\\u2581railhead\": 7088,\n    \"\\u2581anti\": 7089,\n    \"NK\": 7090,\n    \"\\u2581Jeze\": 7091,\n    \"\\u2581Poor\": 7092,\n    \"\\u2581pulse\": 7093,\n    \"churn\": 7094,\n    \"jah\": 7095,\n    \"\\u2581Javan\": 7096,\n    \"\\u2581Lud\": 7097,\n    \"\\u2581subtilty\": 7098,\n    \"\\u2581Job\": 7099,\n    \"agic\": 7100,\n    \"\\u2581whale\": 7101,\n    \"\\u2581factious\": 7102,\n    \"\\u2581blunt\": 7103,\n    \"\\u2581edified\": 7104,\n    \"iggled\": 7105,\n    \"\\u2581decade\": 7106,\n    \"tenance\": 7107,\n    \"\\u2581Maha\": 7108,\n    \"\\u2581hammer\": 7109,\n    \"\\u2581rhythmic\": 7110,\n    \"\\u2581Kid\": 7111,\n    \"\\u2581concourse\": 7112,\n    \"bited\": 7113,\n    \"zzling\": 7114,\n    \"\\u2581Zac\": 7115,\n    \"\\u2581earshot\": 7116,\n    \"\\u2581coco\": 7117,\n    \"\\u2581hencefor\": 7118,\n    \"\\u2581Dead\": 7119,\n    \"\\u2581horseback\": 7120,\n    \"\\u2581kin\": 7121,\n    \"\\u2581Teach\": 7122,\n    \"\\u2581oilcloth\": 7123,\n    \"\\u2581Elisha\": 7124,\n    \"\\u2581Padanaram\": 7125,\n    \"\\u2581spectac\": 7126,\n    \"\\u2581sheath\": 7127,\n    \"\\u2581severity\": 7128,\n    \"\\u2581embroiderer\": 7129,\n    \"\\u2581Naaman\": 7130,\n    \"\\u2581impu\": 7131,\n    \"\\u2581stew\": 7132,\n    \"\\u2581recall\": 7133,\n    \"\\u2581flute\": 7134,\n    \"\\u2581ownership\": 7135,\n    \"\\u2581Irad\": 7136,\n    \"\\u2581ancest\": 7137,\n    \"\\u2581suggestions\": 7138,\n    \"bia\": 7139,\n    \"ember\": 7140,\n    \"bula\": 7141,\n    \"\\u2581foreship\": 7142,\n    \"\\u2581Massa\": 7143,\n    \"\\u2581Lyc\": 7144,\n    \"\\u2581Carry\": 7145,\n    \"\\u2581persuasive\": 7146,\n    \"\\u2581rig\": 7147,\n    \"\\u2581tripod\": 7148,\n    \"urvey\": 7149,\n    \"\\u2581instant\": 7150,\n    \"\\u2581Merc\": 7151,\n    \"\\u2581trump\": 7152,\n    \"\\u2581trench\": 7153,\n    \"\\u2581Edomites\": 7154,\n    \"hites\": 7155,\n    \"\\u2581meditation\": 7156,\n    \"\\u2581detest\": 7157,\n    \"\\u2581thankfulness\": 7158,\n    \"enser\": 7159,\n    \"\\u2581calam\": 7160,\n    \"\\u2581Beersheba\": 7161,\n    \"AT\": 7162,\n    \"\\u2581tackl\": 7163,\n    \"\\u2581Bridge\": 7164,\n    \"\\u2581cookery\": 7165,\n    \"\\u2581piss\": 7166,\n    \"osity\": 7167,\n    \"\\u2581scalp\": 7168,\n    \"\\u2581wavering\": 7169,\n    \"\\u2581rebel\": 7170,\n    \"\\u2581missionar\": 7171,\n    \"\\u2581eff\": 7172,\n    \"\\u2581removal\": 7173,\n    \"\\u2581drear\": 7174,\n    \"\\u2581Kir\": 7175,\n    \"\\u2581wakeful\": 7176,\n    \"\\u2581Kar\": 7177,\n    \"\\u2581partial\": 7178,\n    \"\\u2581grid\": 7179,\n    \"\\u2581justifieth\": 7180,\n    \"\\u2581speedily\": 7181,\n    \"\\u2581beget\": 7182,\n    \"erceive\": 7183,\n    \"\\u2581variance\": 7184,\n    \"cade\": 7185,\n    \"egion\": 7186,\n    \"\\u2581expression\": 7187,\n    \"\\u2581cruelty\": 7188,\n    \"\\u2581Naph\": 7189,\n    \"\\u2581pomp\": 7190,\n    \"\\u2581Hog\": 7191,\n    \"Easy\": 7192,\n    \"\\u2581thunderings\": 7193,\n    \"\\u2581riotous\": 7194,\n    \"\\u2581history\": 7195,\n    \"\\u2581transit\": 7196,\n    \"\\u2581funny\": 7197,\n    \"\\u2581theatre\": 7198,\n    \"\\u2581confirmation\": 7199,\n    \"\\u2581roadway\": 7200,\n    \"\\u2581boyhood\": 7201,\n    \"\\u2581Hermon\": 7202,\n    \"\\u2581mineral\": 7203,\n    \"naim\": 7204,\n    \"\\u2581fuck\": 7205,\n    \"\\u2581Hori\": 7206,\n    \"\\u2581bondmen\": 7207,\n    \"\\u2581rocket\": 7208,\n    \"\\u2581policy\": 7209,\n    \"\\u2581unholy\": 7210,\n    \"\\u2581unseemly\": 7211,\n    \"nkle\": 7212,\n    \"\\u2581gallery\": 7213,\n    \"apolis\": 7214,\n    \"\\u2581wavered\": 7215,\n    \"\\u2581encourage\": 7216,\n    \"\\u2581phoe\": 7217,\n    \"\\u2581hop\": 7218,\n    \"\\u2581alternate\": 7219,\n    \"\\u2581Beriah\": 7220,\n    \"\\u2581wariness\": 7221,\n    \"\\u2581State\": 7222,\n    \"\\u2581skirmish\": 7223,\n    \"\\u2581Aram\": 7224,\n    \"\\u2581parings\": 7225,\n    \"\\u2581cling\": 7226,\n    \"\\u2581Matthan\": 7227,\n    \"ndron\": 7228,\n    \"\\u2581Bow\": 7229,\n    \"\\u2581axle\": 7230,\n    \"polis\": 7231,\n    \"ilver\": 7232,\n    \"\\u2581nea\": 7233,\n    \"ccent\": 7234,\n    \"\\u2581Lie\": 7235,\n    \"\\u2581carrie\": 7236,\n    \"\\u2581sparingly\": 7237,\n    \"\\u2581politely\": 7238,\n    \"\\u2581similarly\": 7239,\n    \"nnels\": 7240,\n    \"\\u2581doubleminded\": 7241,\n    \"\\u2581wrongfully\": 7242,\n    \"\\u2581Shim\": 7243,\n    \"\\u2581noisy\": 7244,\n    \"ulation\": 7245,\n    \"gage\": 7246,\n    \"\\u2581bump\": 7247,\n    \"\\u2581suppertime\": 7248,\n    \"\\u2581arising\": 7249,\n    \"guiltiness\": 7250,\n    \"abies\": 7251,\n    \"\\u2581alongside\": 7252,\n    \"\\u2581dough\": 7253,\n    \"uda\": 7254,\n    \"ddling\": 7255,\n    \"onia\": 7256,\n    \"\\u2581acceptation\": 7257,\n    \"\\u2581grand\": 7258,\n    \"\\u2581Hadar\": 7259,\n    \"\\u2581Onesi\": 7260,\n    \"\\u2581chaste\": 7261,\n    \"\\u2581promi\": 7262,\n    \"eously\": 7263,\n    \"\\u2581rill\": 7264,\n    \"\\u2581fitting\": 7265,\n    \"acter\": 7266,\n    \"\\u2581crunch\": 7267,\n    \"\\u2581crust\": 7268,\n    \"\\u2581gentleness\": 7269,\n    \"\\u2581Rhe\": 7270,\n    \"\\u2581gum\": 7271,\n    \"\\u2581lam\": 7272,\n    \"\\u2581mockers\": 7273,\n    \"\\u2581hitherto\": 7274,\n    \"\\u2581eag\": 7275,\n    \"\\u2581collapsed\": 7276,\n    \"\\u2581disbelieved\": 7277,\n    \"\\u2581scabb\": 7278,\n    \"\\u2581confi\": 7279,\n    \"\\u2581surre\": 7280,\n    \"\\u2581hello\": 7281,\n    \"\\u2581Jah\": 7282,\n    \"\\u2581attachment\": 7283,\n    \"\\u2581boxes\": 7284,\n    \"\\u2581china\": 7285,\n    \"\\u2581identi\": 7286,\n    \"\\u2581thankful\": 7287,\n    \"\\u2581Tab\": 7288,\n    \"oper\": 7289,\n    \"\\u2581stings\": 7290,\n    \"\\u2581attraction\": 7291,\n    \"\\u2581Tryph\": 7292,\n    \"\\u2581freeman\": 7293,\n    \"\\u2581genealogy\": 7294,\n    \"\\u2581bull\": 7295,\n    \"\\u2581tighten\": 7296,\n    \"\\u2581team\": 7297,\n    \"\\u2581shaven\": 7298,\n    \"\\u2581Gomer\": 7299,\n    \"\\u2581mire\": 7300,\n    \"lene\": 7301,\n    \"\\u2581fearfulness\": 7302,\n    \"\\u2581gorgeous\": 7303,\n    \"riah\": 7304,\n    \"\\u2581fume\": 7305,\n    \"geon\": 7306,\n    \"\\u2581honest\": 7307,\n    \"\\u2581seduc\": 7308,\n    \"\\u2581homeland\": 7309,\n    \"\\u2581incl\": 7310,\n    \"\\u2581tones\": 7311,\n    \"\\u2581station\": 7312,\n    \"\\u2581approvedness\": 7313,\n    \"\\u2581earnestness\": 7314,\n    \"\\u2581normal\": 7315,\n    \"\\u2581alo\": 7316,\n    \"\\u2581Cover\": 7317,\n    \"\\u2581agent\": 7318,\n    \"\\u2581flourisheth\": 7319,\n    \"chant\": 7320,\n    \"\\u2581pew\": 7321,\n    \"\\u2581soberness\": 7322,\n    \"pilled\": 7323,\n    \"\\u2581bedtime\": 7324,\n    \"\\u2581backbone\": 7325,\n    \"educ\": 7326,\n    \"horus\": 7327,\n    \"\\u2581Ken\": 7328,\n    \"retty\": 7329,\n    \"rubs\": 7330,\n    \"Are\": 7331,\n    \"rged\": 7332,\n    \"\\u2581reconcil\": 7333,\n    \"\\u2581assist\": 7334,\n    \"\\u2581foes\": 7335,\n    \"\\u2581chast\": 7336,\n    \"\\u2581dau\": 7337,\n    \"\\u2581scare\": 7338,\n    \"\\u2581ledge\": 7339,\n    \"cientist\": 7340,\n    \"\\u2581dreamily\": 7341,\n    \"\\u2581belonging\": 7342,\n    \"\\u2581embalmed\": 7343,\n    \"\\u2581drowned\": 7344,\n    \"\\u2581hesitated\": 7345,\n    \"\\u2581butchered\": 7346,\n    \"orci\": 7347,\n    \"\\u2581underwear\": 7348,\n    \"\\u2581cobbler\": 7349,\n    \"\\u2581Mish\": 7350,\n    \"voca\": 7351,\n    \"Goodness\": 7352,\n    \"isc\": 7353,\n    \"\\u2581gloriest\": 7354,\n    \"\\u2581Near\": 7355,\n    \"\\u2581meta\": 7356,\n    \"\\u2581Apple\": 7357,\n    \"\\u2581sym\": 7358,\n    \"\\u2581delicately\": 7359,\n    \"\\u2581meekly\": 7360,\n    \"\\u2581laughter\": 7361,\n    \"\\u2581tamed\": 7362,\n    \"\\u2581chasteneth\": 7363,\n    \"\\u2581flapped\": 7364,\n    \"\\u2581Elim\": 7365,\n    \"\\u2581dealings\": 7366,\n    \"\\u2581acquaint\": 7367,\n    \"\\u2581Mib\": 7368,\n    \"\\u2581tailor\": 7369,\n    \"\\u2581blaze\": 7370,\n    \"\\u2581familiar\": 7371,\n    \"\\u2581ordinary\": 7372,\n    \"\\u2581wreck\": 7373,\n    \"amous\": 7374,\n    \"\\u2581Wind\": 7375,\n    \"\\u2581cure\": 7376,\n    \"eneration\": 7377,\n    \"\\u2581thump\": 7378,\n    \"\\u2581Fight\": 7379,\n    \"anim\": 7380,\n    \"\\u2581firelight\": 7381,\n    \"\\u2581defende\": 7382,\n    \"\\u2581Majest\": 7383,\n    \"\\u2581watchful\": 7384,\n    \"\\u2581overboard\": 7385,\n    \"bsolution\": 7386,\n    \"allel\": 7387,\n    \"\\u2581Obe\": 7388,\n    \"\\u2581saddle\": 7389,\n    \"luc\": 7390,\n    \"affl\": 7391,\n    \"\\u2581worshippeth\": 7392,\n    \"oic\": 7393,\n    \"arge\": 7394,\n    \"blossom\": 7395,\n    \"\\u2581generally\": 7396,\n    \"\\u2581sunris\": 7397,\n    \"\\u2581ruff\": 7398,\n    \"yway\": 7399,\n    \"rban\": 7400,\n    \"\\u2581joyfully\": 7401,\n    \"rsel\": 7402,\n    \"\\u2581lightened\": 7403,\n    \"\\u2581striker\": 7404,\n    \"Avery\": 7405,\n    \"anging\": 7406,\n    \"\\u2581unity\": 7407,\n    \"\\u2581perfection\": 7408,\n    \"willing\": 7409,\n    \"\\u2581copies\": 7410,\n    \"\\u2581endeavors\": 7411,\n    \"\\u2581feathers\": 7412,\n    \"\\u2581morals\": 7413,\n    \"\\u2581palaces\": 7414,\n    \"\\u2581politics\": 7415,\n    \"\\u2581proselytes\": 7416,\n    \"\\u2581symbols\": 7417,\n    \"eyond\": 7418,\n    \"\\u2581convers\": 7419,\n    \"\\u2581Mana\": 7420,\n    \"\\u2581rambl\": 7421,\n    \"siah\": 7422,\n    \"hepherd\": 7423,\n    \"\\u2581Alexandrian\": 7424,\n    \"\\u2581mites\": 7425,\n    \"\\u2581bored\": 7426,\n    \"ighteous\": 7427,\n    \"\\u2581Boy\": 7428,\n    \"\\u2581scour\": 7429,\n    \"\\u2581unbeliever\": 7430,\n    \"\\u2581thereupon\": 7431,\n    \"sorry\": 7432,\n    \"esis\": 7433,\n    \"\\u2581penny\": 7434,\n    \"planted\": 7435,\n    \"\\u2581fisherm\": 7436,\n    \"jack\": 7437,\n    \"\\u2581decrease\": 7438,\n    \"\\u2581cult\": 7439,\n    \"\\u2581assuredly\": 7440,\n    \"\\u2581gloriously\": 7441,\n    \"col\": 7442,\n    \"\\u2581scattereth\": 7443,\n    \"\\u2581licked\": 7444,\n    \"\\u2581dismissed\": 7445,\n    \"\\u2581carcase\": 7446,\n    \"\\u2581drunkard\": 7447,\n    \"\\u2581complained\": 7448,\n    \"\\u2581reviler\": 7449,\n    \"\\u2581lackest\": 7450,\n    \"\\u2581whistling\": 7451,\n    \"\\u2581contem\": 7452,\n    \"burger\": 7453,\n    \"\\u2581complaining\": 7454,\n    \"\\u2581mom\": 7455,\n    \"\\u2581Had\": 7456,\n    \"inter\": 7457,\n    \"\\u2581baptizeth\": 7458,\n    \"\\u2581pyr\": 7459,\n    \"\\u2581wedding\": 7460,\n    \"\\u2581project\": 7461,\n    \"\\u2581Joy\": 7462,\n    \"ripe\": 7463,\n    \"\\u2581lick\": 7464,\n    \"evolution\": 7465,\n    \"\\u2581mouthful\": 7466,\n    \"\\u2581dries\": 7467,\n    \"\\u2581spy\": 7468,\n    \"lunta\": 7469,\n    \"\\u2581constant\": 7470,\n    \"\\u2581Ach\": 7471,\n    \"\\u2581quench\": 7472,\n    \"\\u2581pathetic\": 7473,\n    \"\\u2581becomingly\": 7474,\n    \"\\u2581faileth\": 7475,\n    \"\\u2581draft\": 7476,\n    \"\\u2581summ\": 7477,\n    \"\\u2581dar\": 7478,\n    \"\\u2581sling\": 7479,\n    \"\\u2581explod\": 7480,\n    \"\\u2581Shil\": 7481,\n    \"\\u2581TH\": 7482,\n    \"\\u2581compare\": 7483,\n    \"\\u2581Wash\": 7484,\n    \"\\u2581earlie\": 7485,\n    \"\\u2581abhorre\": 7486,\n    \"\\u2581local\": 7487,\n    \"quality\": 7488,\n    \"arsely\": 7489,\n    \"\\u2581heartily\": 7490,\n    \"qui\": 7491,\n    \"\\u2581Aren\": 7492,\n    \"ffer\": 7493,\n    \"\\u2581Phu\": 7494,\n    \"ouching\": 7495,\n    \"esture\": 7496,\n    \"\\u2581encountered\": 7497,\n    \"\\u2581mansion\": 7498,\n    \"\\u2581thereabout\": 7499,\n    \"\\u2581missing\": 7500,\n    \"\\u2581excused\": 7501,\n    \"\\u2581fastness\": 7502,\n    \"\\u2581swamp\": 7503,\n    \"\\u2581brightest\": 7504,\n    \"\\u2581nicely\": 7505,\n    \"non\": 7506,\n    \"\\u2581Ze\": 7507,\n    \"urning\": 7508,\n    \"\\u2581glare\": 7509,\n    \"\\u2581Nan\": 7510,\n    \"rks\": 7511,\n    \"\\u2581ramp\": 7512,\n    \"rped\": 7513,\n    \"\\u2581hillsides\": 7514,\n    \"\\u2581elbows\": 7515,\n    \"\\u2581poplars\": 7516,\n    \"\\u2581scorpions\": 7517,\n    \"\\u2581aprons\": 7518,\n    \"\\u2581citizens\": 7519,\n    \"controlled\": 7520,\n    \"\\u2581belongings\": 7521,\n    \"\\u2581payments\": 7522,\n    \"ymen\": 7523,\n    \"year\": 7524,\n    \"\\u2581highways\": 7525,\n    \"\\u2581outright\": 7526,\n    \"\\u2581ref\": 7527,\n    \"ffed\": 7528,\n    \"\\u2581legion\": 7529,\n    \"venge\": 7530,\n    \"\\u2581proudly\": 7531,\n    \"\\u2581readest\": 7532,\n    \"lunchtime\": 7533,\n    \"\\u2581witch\": 7534,\n    \"\\u2581hangeth\": 7535,\n    \"\\u2581archer\": 7536,\n    \"\\u2581remarked\": 7537,\n    \"\\u2581someday\": 7538,\n    \"\\u2581vowed\": 7539,\n    \"Alon\": 7540,\n    \"\\u2581stare\": 7541,\n    \"\\u2581lesson\": 7542,\n    \"mely\": 7543,\n    \"\\u2581despairing\": 7544,\n    \"\\u2581inventing\": 7545,\n    \"\\u2581ev\": 7546,\n    \"woods\": 7547,\n    \"nuts\": 7548,\n    \"\\u2581wrestling\": 7549,\n    \"\\u2581sadly\": 7550,\n    \"\\u2581weakling\": 7551,\n    \"\\u2581gear\": 7552,\n    \"\\u2581faster\": 7553,\n    \"\\u2581Phil\": 7554,\n    \"\\u2581miser\": 7555,\n    \"\\u2581hasn\": 7556,\n    \"\\u2581impos\": 7557,\n    \"ngular\": 7558,\n    \"\\u2581stunt\": 7559,\n    \"\\u2581Beor\": 7560,\n    \"\\u2581uncover\": 7561,\n    \"\\u2581awaked\": 7562,\n    \"\\u2581paces\": 7563,\n    \"\\u2581Rest\": 7564,\n    \"\\u2581Israelites\": 7565,\n    \"\\u2581consol\": 7566,\n    \"\\u2581included\": 7567,\n    \"\\u2581admoni\": 7568,\n    \"\\u2581plu\": 7569,\n    \"ball\": 7570,\n    \"orehouses\": 7571,\n    \"\\u2581wickedly\": 7572,\n    \"\\u2581guests\": 7573,\n    \"\\u2581bishops\": 7574,\n    \"\\u2581patriarchs\": 7575,\n    \"\\u2581results\": 7576,\n    \"\\u2581benefits\": 7577,\n    \"\\u2581ewes\": 7578,\n    \"\\u2581factions\": 7579,\n    \"\\u2581dispos\": 7580,\n    \"\\u2581reput\": 7581,\n    \"\\u2581washings\": 7582,\n    \"\\u2581Spid\": 7583,\n    \"\\u2581nast\": 7584,\n    \"boards\": 7585,\n    \"stones\": 7586,\n    \"works\": 7587,\n    \"fied\": 7588,\n    \"TER\": 7589,\n    \"\\u2581dissipat\": 7590,\n    \"\\u2581decomposed\": 7591,\n    \"\\u2581gnawing\": 7592,\n    \"\\u2581coveting\": 7593,\n    \"determin\": 7594,\n    \"\\u2581grassy\": 7595,\n    \"\\u2581Ked\": 7596,\n    \"allows\": 7597,\n    \"\\u2581aboundeth\": 7598,\n    \"\\u2581secretly\": 7599,\n    \"band\": 7600,\n    \"\\u2581boiled\": 7601,\n    \"tay\": 7602,\n    \"\\u2581Nor\": 7603,\n    \"\\u2581bin\": 7604,\n    \"\\u2581dre\": 7605,\n    \"\\u2581blasphemer\": 7606,\n    \"\\u2581candles\": 7607,\n    \"\\u2581ranks\": 7608,\n    \"\\u2581Tir\": 7609,\n    \"\\u2581railings\": 7610,\n    \"\\u2581repenteth\": 7611,\n    \"\\u2581sorely\": 7612,\n    \"\\u2581departeth\": 7613,\n    \"\\u2581cries\": 7614,\n    \"lay\": 7615,\n    \"\\u2581reigneth\": 7616,\n    \"\\u2581sharply\": 7617,\n    \"\\u2581stag\": 7618,\n    \"\\u2581forbearing\": 7619,\n    \"\\u2581weeds\": 7620,\n    \"\\u2581Dis\": 7621,\n    \"hips\": 7622,\n    \"\\u2581lawfully\": 7623,\n    \"\\u2581Hot\": 7624,\n    \"aves\": 7625,\n    \"\\u2581warmth\": 7626,\n    \"\\u2581breaketh\": 7627,\n    \"\\u2581twisting\": 7628,\n    \"\\u2581sheets\": 7629,\n    \"\\u2581tumults\": 7630,\n    \"\\u2581instructions\": 7631,\n    \"\\u2581poorly\": 7632,\n    \"gree\": 7633,\n    \"\\u2581consented\": 7634,\n    \"\\u2581afoot\": 7635,\n    \"wailed\": 7636,\n    \"\\u2581aboard\": 7637,\n    \"\\u2581preferr\": 7638,\n    \"\\u2581rouse\": 7639,\n    \"\\u2581jet\": 7640,\n    \"rock\": 7641,\n    \"\\u2581Cos\": 7642,\n    \"\\u2581fou\": 7643,\n    \"\\u2581planning\": 7644,\n    \"\\u2581labours\": 7645,\n    \"\\u2581balloons\": 7646,\n    \"\\u2581belt\": 7647,\n    \"shearer\": 7648,\n    \"\\u2581airy\": 7649,\n    \"\\u2581duel\": 7650,\n    \"\\u2581Arch\": 7651,\n    \"\\u2581clapp\": 7652,\n    \"\\u2581activit\": 7653,\n    \"\\u2581test\": 7654,\n    \"\\u2581sleepy\": 7655,\n    \"\\u2581signal\": 7656,\n    \"\\u2581plots\": 7657,\n    \"\\u2581vig\": 7658,\n    \"\\u2581bullocks\": 7659,\n    \"\\u2581enjoin\": 7660,\n    \"\\u2581platters\": 7661,\n    \"\\u2581Abia\": 7662,\n    \"\\u2581lusted\": 7663,\n    \"\\u2581seedling\": 7664,\n    \"\\u2581killings\": 7665,\n    \"\\u2581retain\": 7666,\n    \"\\u2581bloo\": 7667,\n    \"\\u2581ge\": 7668,\n    \"\\u2581Hada\": 7669,\n    \"\\u2581reaped\": 7670,\n    \"\\u2581rendered\": 7671,\n    \"\\u2581kne\": 7672,\n    \"vity\": 7673,\n    \"\\u2581Sm\": 7674,\n    \"\\u2581praised\": 7675,\n    \"arcel\": 7676,\n    \"\\u2581dism\": 7677,\n    \"\\u2581Pau\": 7678,\n    \"consider\": 7679,\n    \"\\u2581marking\": 7680,\n    \"\\u2581popula\": 7681,\n    \"\\u2581farth\": 7682,\n    \"chem\": 7683,\n    \"\\u2581residen\": 7684,\n    \"actors\": 7685,\n    \"acked\": 7686,\n    \"there\": 7687,\n    \"AB\": 7688,\n    \"porter\": 7689,\n    \"La\": 7690,\n    \"sters\": 7691,\n    \"umbled\": 7692,\n    \"had\": 7693,\n    \"\\u2581agenc\": 7694,\n    \"raggle\": 7695,\n    \"gation\": 7696,\n    \"\\u2581sanctifie\": 7697,\n    \"city\": 7698,\n    \"\\u2581radian\": 7699,\n    \"udg\": 7700,\n    \"balanc\": 7701,\n    \"ency\": 7702,\n    \"\\u2581lengthen\": 7703,\n    \"\\u2581husk\": 7704,\n    \"\\u2581blur\": 7705,\n    \"\\u2581weaken\": 7706,\n    \"fallen\": 7707,\n    \"tines\": 7708,\n    \"tac\": 7709,\n    \"\\u2581gunfi\": 7710,\n    \"\\u2581mini\": 7711,\n    \"twee\": 7712,\n    \"lative\": 7713,\n    \"hip\": 7714,\n    \"rich\": 7715,\n    \"rake\": 7716,\n    \"escend\": 7717,\n    \"gratulation\": 7718,\n    \"\\u2581distresse\": 7719,\n    \"journ\": 7720,\n    \"\\u2581kni\": 7721,\n    \"\\u2581paint\": 7722,\n    \"\\u2581Mesh\": 7723,\n    \"\\u2581ripp\": 7724,\n    \"\\u2581distribut\": 7725,\n    \"ays\": 7726,\n    \"ral\": 7727,\n    \"\\u2581Alva\": 7728,\n    \"\\u2581gar\": 7729,\n    \"\\u2581blo\": 7730,\n    \"\\u2581trou\": 7731,\n    \"Ever\": 7732,\n    \"\\u2581morta\": 7733,\n    \"\\u2581watche\": 7734,\n    \"ex\": 7735,\n    \"\\u2581carpe\": 7736,\n    \"\\u2581quali\": 7737,\n    \"informed\": 7738,\n    \"\\u2581contra\": 7739,\n    \"lets\": 7740,\n    \"gin\": 7741,\n    \"nches\": 7742,\n    \"\\u2581dainti\": 7743,\n    \"\\u2581unmo\": 7744,\n    \"\\u2581ba\": 7745,\n    \"gi\": 7746,\n    \"air\": 7747,\n    \"\\u2581relat\": 7748,\n    \"\\u2581sla\": 7749,\n    \"Try\": 7750,\n    \"nish\": 7751,\n    \"ttle\": 7752,\n    \"\\u2581aveng\": 7753,\n    \"par\": 7754,\n    \"fighters\": 7755,\n    \"och\": 7756,\n    \"\\u2581non\": 7757,\n    \"\\u2581obs\": 7758,\n    \"\\u2581naviga\": 7759,\n    \"\\u2581invite\": 7760,\n    \"view\": 7761,\n    \"composed\": 7762,\n    \"efraud\": 7763,\n    \"\\u2581sca\": 7764,\n    \"hen\": 7765,\n    \"orseshoe\": 7766,\n    \"rang\": 7767,\n    \"\\u2581protect\": 7768,\n    \"\\u2581welcom\": 7769,\n    \"ust\": 7770,\n    \"\\u2581Cre\": 7771,\n    \"iving\": 7772,\n    \"ormwood\": 7773,\n    \"ana\": 7774,\n    \"clusive\": 7775,\n    \"\\u2581dam\": 7776,\n    \"\\u2581humm\": 7777,\n    \"\\u2581dep\": 7778,\n    \"opping\": 7779,\n    \"bag\": 7780,\n    \"tasting\": 7781,\n    \"oz\": 7782,\n    \"aving\": 7783,\n    \"\\u2581impr\": 7784,\n    \"\\u2581pac\": 7785,\n    \"\\u2581elevat\": 7786,\n    \"\\u2581compensat\": 7787,\n    \"nuel\": 7788,\n    \"nstead\": 7789,\n    \"\\u2581Mel\": 7790,\n    \"add\": 7791,\n    \"mock\": 7792,\n    \"phras\": 7793,\n    \"ether\": 7794,\n    \"\\u2581exclu\": 7795,\n    \"\\u2581epi\": 7796,\n    \"\\u2581principalit\": 7797,\n    \"hereunto\": 7798,\n    \"formation\": 7799,\n    \"evil\": 7800,\n    \"\\u2581prote\": 7801,\n    \"ize\": 7802,\n    \"\\u2581Creat\": 7803,\n    \"shoe\": 7804,\n    \"awl\": 7805,\n    \"pot\": 7806,\n    \"wed\": 7807,\n    \"llows\": 7808,\n    \"udder\": 7809,\n    \"bat\": 7810,\n    \"bon\": 7811,\n    \"\\u2581protecti\": 7812,\n    \"\\u2581Rep\": 7813,\n    \"\\u2581entic\": 7814,\n    \"fraud\": 7815,\n    \"ck\": 7816,\n    \"\\u2581endur\": 7817,\n    \"\\u2581compose\": 7818,\n    \"ioch\": 7819,\n    \"\\u2581navigati\": 7820,\n    \"move\": 7821,\n    \"\\u2581persuade\": 7822,\n    \"rk\": 7823,\n    \"\\u2581Po\": 7824,\n    \"omantic\": 7825,\n    \"\\u2581snatche\": 7826,\n    \"\\u2581conc\": 7827,\n    \"vo\": 7828,\n    \"\\u2581daint\": 7829,\n    \"LO\": 7830,\n    \"unic\": 7831,\n    \"ushim\": 7832,\n    \"lotted\": 7833,\n    \"phra\": 7834,\n    \"AM\": 7835,\n    \"\\u2581measur\": 7836,\n    \"bits\": 7837,\n    \"\\u2581purpos\": 7838,\n    \"elect\": 7839,\n    \"\\u2581Revi\": 7840,\n    \"arrow\": 7841,\n    \"\\u2581enrol\": 7842,\n    \"mali\": 7843,\n    \"ignity\": 7844,\n    \"\\u2581na\": 7845,\n    \"\\u2581treati\": 7846,\n    \"ripping\": 7847,\n    \"arba\": 7848,\n    \"acle\": 7849,\n    \"olent\": 7850,\n    \"\\u2581adjo\": 7851,\n    \"scend\": 7852,\n    \"\\u2581slack\": 7853,\n    \"\\u2581bewail\": 7854,\n    \"\\u2581grip\": 7855,\n    \"\\u2581compelle\": 7856,\n    \"\\u2581exalte\": 7857,\n    \"tching\": 7858,\n    \"nction\": 7859,\n    \"\\u2581Writ\": 7860,\n    \"\\u2581acknowledg\": 7861,\n    \"\\u2581gla\": 7862,\n    \"\\u2581mode\": 7863,\n    \"\\u2581lin\": 7864,\n    \"\\u2581vainglor\": 7865,\n    \"kite\": 7866,\n    \"\\u2581Bac\": 7867,\n    \"\\u2581mids\": 7868,\n    \"ammi\": 7869,\n    \"\\u2581pudd\": 7870,\n    \"\\u2581radia\": 7871,\n    \"\\u2581divin\": 7872,\n    \"Pre\": 7873,\n    \"styles\": 7874,\n    \"\\u2581rele\": 7875,\n    \"\\u2581temp\": 7876,\n    \"\\u2581Immediate\": 7877,\n    \"\\u2581guid\": 7878,\n    \"tographe\": 7879,\n    \"\\u2581hi\": 7880,\n    \"easing\": 7881,\n    \"\\u2581nois\": 7882,\n    \"ruption\": 7883,\n    \"trot\": 7884,\n    \"mble\": 7885,\n    \"ggle\": 7886,\n    \"vah\": 7887,\n    \"\\u2581Li\": 7888,\n    \"\\u2581squ\": 7889,\n    \"\\u2581deci\": 7890,\n    \"hab\": 7891,\n    \"teller\": 7892,\n    \"\\u2581reli\": 7893,\n    \"\\u2581heav\": 7894,\n    \"now\": 7895,\n    \"pops\": 7896,\n    \"\\u2581refer\": 7897,\n    \"\\u2581Mac\": 7898,\n    \"\\u2581blasphem\": 7899,\n    \"\\u2581Byron\": 7900,\n    \"\\u2581loc\": 7901,\n    \"\\u2581proposi\": 7902,\n    \"emarkable\": 7903,\n    \"bakers\": 7904,\n    \"\\u2581Ex\": 7905,\n    \"\\u2581separat\": 7906,\n    \"gro\": 7907,\n    \"Spring\": 7908,\n    \"quarters\": 7909,\n    \"uc\": 7910,\n    \"Jach\": 7911,\n    \"shares\": 7912,\n    \"pockets\": 7913,\n    \"\\u2581Straight\": 7914,\n    \"\\u2581nu\": 7915,\n    \"reaching\": 7916,\n    \"rley\": 7917,\n    \"ooted\": 7918,\n    \"plicat\": 7919,\n    \"\\u2581plac\": 7920,\n    \"\\u2581Atta\": 7921,\n    \"dresse\": 7922,\n    \"maker\": 7923,\n    \"racker\": 7924,\n    \"covered\": 7925,\n    \"cca\": 7926,\n    \"wise\": 7927,\n    \"gger\": 7928,\n    \"\\u2581Tema\": 7929,\n    \"arry\": 7930,\n    \"pine\": 7931,\n    \"Ti\": 7932,\n    \"counting\": 7933,\n    \"\\u2581Dio\": 7934,\n    \"mount\": 7935,\n    \"\\u2581spo\": 7936,\n    \"sipate\": 7937,\n    \"piders\": 7938,\n    \"\\u2581Whoso\": 7939,\n    \"uddy\": 7940,\n    \"\\u2581simpli\": 7941,\n    \"\\u2581esc\": 7942,\n    \"omen\": 7943,\n    \"\\u2581chang\": 7944,\n    \"admonit\": 7945,\n    \"maids\": 7946,\n    \"thrus\": 7947,\n    \"ickle\": 7948,\n    \"\\u2581northw\": 7949,\n    \"\\u2581Arc\": 7950,\n    \"gaining\": 7951,\n    \"\\u2581Step\": 7952,\n    \"hanging\": 7953,\n    \"ppers\": 7954,\n    \"emon\": 7955,\n    \"pecial\": 7956,\n    \"\\u2581circ\": 7957,\n    \"uary\": 7958,\n    \"\\u2581plat\": 7959,\n    \"ticks\": 7960,\n    \"ekah\": 7961,\n    \"\\u2581unfo\": 7962,\n    \"uckle\": 7963,\n    \"\\u2581priv\": 7964,\n    \"\\u2581abhor\": 7965,\n    \"ual\": 7966,\n    \"\\u2581hoar\": 7967,\n    \"\\u2581comp\": 7968,\n    \"\\u2581reconcili\": 7969,\n    \"Ba\": 7970,\n    \"\\u2581conver\": 7971,\n    \"nstantly\": 7972,\n    \"\\u2581rub\": 7973,\n    \"pra\": 7974,\n    \"\\u2581unbeliev\": 7975,\n    \"\\u2581fac\": 7976,\n    \"lute\": 7977,\n    \"change\": 7978,\n    \"pti\": 7979,\n    \"\\u2581contemp\": 7980,\n    \"bearing\": 7981,\n    \"\\u2581carcas\": 7982,\n    \"vented\": 7983,\n    \"\\u2581Buck\": 7984,\n    \"wake\": 7985,\n    \"eaten\": 7986,\n    \"\\u2581clap\": 7987,\n    \"burg\": 7988,\n    \"kin\": 7989,\n    \"creased\": 7990,\n    \"\\u2581bruis\": 7991,\n    \"ppoint\": 7992,\n    \"postle\": 7993,\n    \"lready\": 7994,\n    \"give\": 7995,\n    \"\\u2581endeavor\": 7996,\n    \"G\": 7997,\n    \"Z\": 7998,\n    \"q\": 7999,\n    \"\\u201c\": 8000\n  }\n}"
  },
  {
    "path": "a4/vocab.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n\"\"\"\nCS224N 2020-21: Homework 4\nvocab.py: Vocabulary Generation\nPencheng Yin <pcyin@cs.cmu.edu>\nSahil Chopra <schopra8@stanford.edu>\nVera Lin <veralin@stanford.edu>\n\nUsage:\n    vocab.py --train-src=<file> --train-tgt=<file> [options] VOCAB_FILE\n\nOptions:\n    -h --help                  Show this screen.\n    --train-src=<file>         File of training source sentences\n    --train-tgt=<file>         File of training target sentences\n    --size=<int>               vocab size [default: 50000]\n    --freq-cutoff=<int>        frequency cutoff [default: 2]\n\"\"\"\n\nfrom collections import Counter\nfrom docopt import docopt\nfrom itertools import chain\nimport json\nimport torch\nfrom typing import List\nfrom utils import read_corpus, pad_sents\nimport sentencepiece as spm\n\n\nclass VocabEntry(object):\n    \"\"\" Vocabulary Entry, i.e. structure containing either\n    src or tgt language terms.\n    \"\"\"\n    def __init__(self, word2id=None):\n        \"\"\" Init VocabEntry Instance.\n        @param word2id (dict): dictionary mapping words 2 indices\n        \"\"\"\n        if word2id:\n            self.word2id = word2id\n        else:\n            self.word2id = dict()\n            self.word2id['<pad>'] = 0   # Pad Token\n            self.word2id['<s>'] = 1 # Start Token\n            self.word2id['</s>'] = 2    # End Token\n            self.word2id['<unk>'] = 3   # Unknown Token\n        self.unk_id = self.word2id['<unk>']\n        self.id2word = {v: k for k, v in self.word2id.items()}\n\n    def __getitem__(self, word):\n        \"\"\" Retrieve word's index. Return the index for the unk\n        token if the word is out of vocabulary.\n        @param word (str): word to look up.\n        @returns index (int): index of word \n        \"\"\"\n        return self.word2id.get(word, self.unk_id)\n\n    def __contains__(self, word):\n        \"\"\" Check if word is captured by VocabEntry.\n        @param word (str): word to look up\n        @returns contains (bool): whether word is contained    \n        \"\"\"\n        return word in self.word2id\n\n    def __setitem__(self, key, value):\n        \"\"\" Raise error, if one tries to edit the VocabEntry.\n        \"\"\"\n        raise ValueError('vocabulary is readonly')\n\n    def __len__(self):\n        \"\"\" Compute number of words in VocabEntry.\n        @returns len (int): number of words in VocabEntry\n        \"\"\"\n        return len(self.word2id)\n\n    def __repr__(self):\n        \"\"\" Representation of VocabEntry to be used\n        when printing the object.\n        \"\"\"\n        return 'Vocabulary[size=%d]' % len(self)\n\n    def id2word(self, wid):\n        \"\"\" Return mapping of index to word.\n        @param wid (int): word index\n        @returns word (str): word corresponding to index\n        \"\"\"\n        return self.id2word[wid]\n\n    def add(self, word):\n        \"\"\" Add word to VocabEntry, if it is previously unseen.\n        @param word (str): word to add to VocabEntry\n        @return index (int): index that the word has been assigned\n        \"\"\"\n        if word not in self:\n            wid = self.word2id[word] = len(self)\n            self.id2word[wid] = word\n            return wid\n        else:\n            return self[word]\n\n    def words2indices(self, sents):\n        \"\"\" Convert list of words or list of sentences of words\n        into list or list of list of indices.\n        @param sents (list[str] or list[list[str]]): sentence(s) in words\n        @return word_ids (list[int] or list[list[int]]): sentence(s) in indices\n        \"\"\"\n        if type(sents[0]) == list:\n            return [[self[w] for w in s] for s in sents]\n        else:\n            return [self[w] for w in sents]\n\n    def indices2words(self, word_ids):\n        \"\"\" Convert list of indices into words.\n        @param word_ids (list[int]): list of word ids\n        @return sents (list[str]): list of words\n        \"\"\"\n        return [self.id2word[w_id] for w_id in word_ids]\n\n    def to_input_tensor(self, sents: List[List[str]], device: torch.device) -> torch.Tensor:\n        \"\"\" Convert list of sentences (words) into tensor with necessary padding for \n        shorter sentences.\n\n        @param sents (List[List[str]]): list of sentences (words)\n        @param device: device on which to load the tesnor, i.e. CPU or GPU\n\n        @returns sents_var: tensor of (max_sentence_length, batch_size)\n        \"\"\"\n        word_ids = self.words2indices(sents)\n        sents_t = pad_sents(word_ids, self['<pad>'])\n        sents_var = torch.tensor(sents_t, dtype=torch.long, device=device)\n        return torch.t(sents_var)\n\n    @staticmethod\n    def from_corpus(corpus, size, freq_cutoff=2):\n        \"\"\" Given a corpus construct a Vocab Entry.\n        @param corpus (list[str]): corpus of text produced by read_corpus function\n        @param size (int): # of words in vocabulary\n        @param freq_cutoff (int): if word occurs n < freq_cutoff times, drop the word\n        @returns vocab_entry (VocabEntry): VocabEntry instance produced from provided corpus\n        \"\"\"\n        vocab_entry = VocabEntry()\n        word_freq = Counter(chain(*corpus))\n        valid_words = [w for w, v in word_freq.items() if v >= freq_cutoff]\n        print('number of word types: {}, number of word types w/ frequency >= {}: {}'\n              .format(len(word_freq), freq_cutoff, len(valid_words)))\n        top_k_words = sorted(valid_words, key=lambda w: word_freq[w], reverse=True)[:size]\n        for word in top_k_words:\n            vocab_entry.add(word)\n        return vocab_entry\n    \n    @staticmethod\n    def from_subword_list(subword_list):\n        vocab_entry = VocabEntry()\n        for subword in subword_list:\n            vocab_entry.add(subword)\n        return vocab_entry\n\n\nclass Vocab(object):\n    \"\"\" Vocab encapsulating src and target langauges.\n    \"\"\"\n    def __init__(self, src_vocab: VocabEntry, tgt_vocab: VocabEntry):\n        \"\"\" Init Vocab.\n        @param src_vocab (VocabEntry): VocabEntry for source language\n        @param tgt_vocab (VocabEntry): VocabEntry for target language\n        \"\"\"\n        self.src = src_vocab\n        self.tgt = tgt_vocab\n\n    @staticmethod\n    def build(src_sents, tgt_sents) -> 'Vocab':\n        \"\"\" Build Vocabulary.\n        @param src_sents (list[str]): Source subwords provided by SentencePiece\n        @param tgt_sents (list[str]): Target subwords provided by SentencePiece\n        \"\"\"\n\n        print('initialize source vocabulary ..')\n        src = VocabEntry.from_subword_list(src_sents)\n\n        print('initialize target vocabulary ..')\n        tgt = VocabEntry.from_subword_list(tgt_sents)\n\n        return Vocab(src, tgt)\n\n    def save(self, file_path):\n        \"\"\" Save Vocab to file as JSON dump.\n        @param file_path (str): file path to vocab file\n        \"\"\"\n        with open(file_path, 'w') as f:\n            json.dump(dict(src_word2id=self.src.word2id, tgt_word2id=self.tgt.word2id), f, indent=2)\n\n    @staticmethod\n    def load(file_path):\n        \"\"\" Load vocabulary from JSON dump.\n        @param file_path (str): file path to vocab file\n        @returns Vocab object loaded from JSON dump\n        \"\"\"\n        entry = json.load(open(file_path, 'r'))\n        src_word2id = entry['src_word2id']\n        tgt_word2id = entry['tgt_word2id']\n\n        return Vocab(VocabEntry(src_word2id), VocabEntry(tgt_word2id))\n\n    def __repr__(self):\n        \"\"\" Representation of Vocab to be used\n        when printing the object.\n        \"\"\"\n        return 'Vocab(source %d words, target %d words)' % (len(self.src), len(self.tgt))\n\n\ndef get_vocab_list(file_path, source, vocab_size):\n    \"\"\" Use SentencePiece to tokenize and acquire list of unique subwords.\n    @param file_path (str): file path to corpus\n    @param source (str): tgt or src\n    @param vocab_size: desired vocabulary size\n    \"\"\" \n    spm.SentencePieceTrainer.train(input=file_path, model_prefix=source, vocab_size=vocab_size)     # train the spm model\n    sp = spm.SentencePieceProcessor()                                                               # create an instance; this saves .model and .vocab files \n    sp.load('{}.model'.format(source))                                                              # loads tgt.model or src.model\n    sp_list = [sp.id_to_piece(piece_id) for piece_id in range(sp.get_piece_size())]                 # this is the list of subwords\n    return sp_list \n\n\n\nif __name__ == '__main__':\n    args = docopt(__doc__)\n\n    print('read in source sentences: %s' % args['--train-src'])\n    print('read in target sentences: %s' % args['--train-tgt'])\n\n    src_sents = get_vocab_list(args['--train-src'], source='src', vocab_size=21000)         \n    tgt_sents = get_vocab_list(args['--train-tgt'], source='tgt', vocab_size=8000)\n    vocab = Vocab.build(src_sents, tgt_sents)\n    print('generated vocabulary, source %d words, target %d words' % (len(src_sents), len(tgt_sents)))\n\n    vocab.save(args['VOCAB_FILE'])\n    print('vocabulary saved to %s' % args['VOCAB_FILE'])\n"
  },
  {
    "path": "a5/birth_dev.tsv",
    "content": "Where was Bryan Dubreuiel born?\tAtlanta\nWhere was Ralf Wadephul born?\tBerlin\nWhere was Joseph Baggaley born?\tEngland\nWhere was Sandhya Sanjana born?\tMumbai\nWhere was Alfred Mele born?\tDetroit\nWhere was Murray Esler born?\tGeelong\nWhere was Ryan Barton born?\tAustralia\nWhere was Ernst Florian Winter born?\tVienna\nWhere was Salvatore Papaccio born?\tNaples\nWhere was Raymond Brown born?\tOntario\nWhere was Bruno Rubess born?\tRiga\nWhere was Vivek Razdan born?\tDelhi\nWhere was Pete Winslow born?\tWashington\nWhere was Trevor Taylor born?\tSheffield\nWhere was Richard Eddy born?\tProvidence\nWhere was Michele Radosevich born?\tMinneapolis\nWhere was Catherine Keller born?\tParis\nWhere was Richard Cobbold born?\tIpswich\nWhere was Zhang Xueling born?\tBeijing\nWhere was William Mackenzie McLeod born?\tSydney\nWhere was Erna Paris born?\tToronto\nWhere was Edward Searing born?\tAurora\nWhere was Theodore Pollock Ferguson born?\tMansfield\nWhere was Pietro Delfino born?\tVenice\nWhere was George Alexander Pearre born?\tCumberland\nWhere was Alessandro Vollero born?\tItaly\nWhere was Diane Greene born?\tRochester\nWhere was Sy Landy born?\tBrooklyn\nWhere was Michio Ihara born?\tParis\nWhere was Rafael Nieto Abeill%C3%A9 born?\tCuba\nWhere was Eric Goldberg born?\tBerlin\nWhere was Baron Wormser born?\tBaltimore\nWhere was Asli Sungu born?\tIstanbul\nWhere was Eija Krogerus born?\tHelsinki\nWhere was William Hare born?\tLeicester\nWhere was Gaurav Keerthi born?\tIndia\nWhere was John Thorne born?\tQuincy\nWhere was Konrad Wasiela born?\tVancouver\nWhere was Jeremy Holmes born?\tLondon\nWhere was Daniel M. Hausman born?\tChicago\nWhere was Peter Brown born?\tIreland\nWhere was Janne Parviainen born?\tFinland\nWhere was Eric Boniface born?\tFrance\nWhere was C%C3%A9sar de Oliveira born?\tPorto\nWhere was Leo Treitler born?\tDortmund\nWhere was Moses Mason, Jr. born?\tDublin\nWhere was Denis McQuade born?\tGlasgow\nWhere was Nerses Yeritsyan born?\tYerevan\nWhere was John Henry born?\tDublin\nWhere was Adrian Baker born?\tLondon\nWhere was Fritz Noll born?\tFrankfurt\nWhere was Adam Kowalczyk born?\tYork\nWhere was Megan Spencer born?\tAustralia\nWhere was George William Houghton born?\tPerth\nWhere was Marcus Dods born?\tEdinburgh\nWhere was Nicola Campogrande born?\tTurin\nWhere was Michael Falcon born?\tNorwich\nWhere was Margaret Haile born?\tCanada\nWhere was John Percival Postgate born?\tBirmingham\nWhere was Walter Lupi born?\tMilan\nWhere was George Hurst born?\tEdinburgh\nWhere was Albert McElroy born?\tGlasgow\nWhere was Witold Rodziński born?\tLviv\nWhere was Mika Salmi born?\tHelsinki\nWhere was Martin Grams, Jr. born?\tBaltimore\nWhere was Arthur Nichols born?\tBristol\nWhere was Giulio Carpioni born?\tVenice\nWhere was Bhupinder Nath Kirpal born?\tLahore\nWhere was Francisco Ortiz de Vergara born?\tSeville\nWhere was Ahmed Djoghlaf born?\tAlgiers\nWhere was Abraham Mintchine born?\tKiev\nWhere was John A. Dalles born?\tPittsburgh\nWhere was Christian Day born?\tBlackpool\nWhere was Alfred Kossmann born?\tLeiden\nWhere was Victor Tolgesy born?\tHungary\nWhere was Devin Hoff born?\tColorado\nWhere was Linnea Johnson born?\tChicago\nWhere was Brett Hestla born?\tAlabama\nWhere was Armand Toussaint born?\tParis\nWhere was George Johnston born?\tMelbourne\nWhere was Elvis Yero born?\tHavana\nWhere was Spyros Sofos born?\tAthens\nWhere was John Whistler born?\tUlster\nWhere was William Emery born?\tLondon\nWhere was John Buckley born?\tLeeds\nWhere was Nigel Tangye born?\tKensington\nWhere was Nicholas Colla born?\tMelbourne\nWhere was Chuck Swirsky born?\tNorfolk\nWhere was Milton Wright born?\tGeorgia\nWhere was William Clarke born?\tNottingham\nWhere was Rebecca Pronsky born?\tBrooklyn\nWhere was Raymond Monsour Scurfield born?\tChicago\nWhere was Wendy Mulford born?\tWales\nWhere was Luis Ulacia born?\tHavana\nWhere was Robert Briffault born?\tLondon\nWhere was Lou Stein born?\tPhiladelphia\nWhere was George Savoidakis born?\tCrete\nWhere was Laurent d'Arvieux born?\tMarseille\nWhere was Neil Rollinson born?\tYorkshire\nWhere was Gustav Bartholin Hagen born?\tCopenhagen\nWhere was Andy LaRocque born?\tGothenburg\nWhere was John Hirst born?\tBradford\nWhere was Gordon Stratton born?\tWinnipeg\nWhere was Sarah Stiles born?\tMassachusetts\nWhere was Piotr Buciarski born?\tWarsaw\nWhere was Robert Morrison, 1st Baron Morrison born?\tAberdeen\nWhere was Neil Doncaster born?\tDevon\nWhere was David Solomon born?\tAustralia\nWhere was James S. Smart born?\tBaltimore\nWhere was Thomas Passmore born?\tBelfast\nWhere was Nathan B. Spingold born?\tChicago\nWhere was Emmanuel Scheffer born?\tGermany\nWhere was Charles Nicholas Aubé born?\tParis\nWhere was Wilkes Angel born?\tExeter\nWhere was Benjamin Kunkel born?\tColorado\nWhere was Steve Bjorklund born?\tChicago\nWhere was Branko %C5%A0alamon born?\tZagreb\nWhere was J. N. Williamson born?\tIndianapolis\nWhere was George Butler born?\tMansfield\nWhere was Tom McGuinness born?\tWimbledon\nWhere was Owen McAuley born?\tBelfast\nWhere was Roger Q. Williams born?\tBrooklyn\nWhere was Gabriel Tschumi born?\tSwitzerland\nWhere was Henry Hall born?\tSheffield\nWhere was Rudolf von Erlach born?\tBern\nWhere was Keena Rothhammer born?\tArkansas\nWhere was John Ambrose Meyer born?\tBaltimore\nWhere was Jean Baptiste Rives born?\tBordeaux\nWhere was Jacob Guay born?\tQuebec\nWhere was Ryan Naraine born?\tGeorgetown\nWhere was Claude Wiseler born?\tLuxembourg\nWhere was Idriss Ndele Moussa born?\tChad\nWhere was Meike Evers born?\tBerlin\nWhere was Ruslan Gritsan born?\tMoscow\nWhere was Ahmed Maher born?\tAlexandria\nWhere was Dion Fischer born?\tRomeo\nWhere was James Burnham born?\tChicago\nWhere was Johannes Falkenberg born?\tOslo\nWhere was Peter Milligan born?\tLondon\nWhere was Thomas Kerr born?\tCalgary\nWhere was Lou Angeli born?\tWilmington\nWhere was Tom French born?\tKilkenny\nWhere was Kex Gorin born?\tBirmingham\nWhere was Thomas Birch Florence born?\tPhiladelphia\nWhere was Siddhant Karnick born?\tMumbai\nWhere was Mel Watkins born?\tMemphis\nWhere was Warren Cann born?\tVictoria\nWhere was Henry Albert Roby born?\tMassachusetts\nWhere was William Worthy born?\tBoston\nWhere was Leslie Howe born?\tOntario\nWhere was Oscar Bianchi born?\tMilan\nWhere was Michael Hosking born?\tSingapore\nWhere was Andrew Grant born?\tBirmingham\nWhere was Adelaide Tosi born?\tMilan\nWhere was James Hooker born?\tWindsor\nWhere was Oxana Narozniak born?\tGermany\nWhere was Charles Hylton Stewart born?\tChester\nWhere was Nick Richmond born?\tGarland\nWhere was Münir Göle born?\tIstanbul\nWhere was James Poole born?\tWatford\nWhere was Francisco Cervantes de Salazar born?\tToledo\nWhere was Renato Beghe born?\tIllinois\nWhere was Michelangelo Pisani di Massa e di Mormile born?\tNaples\nWhere was Dan Armon born?\tJerusalem\nWhere was Edward Stransham born?\tOxford\nWhere was Gerald McLaughlin born?\tNewark\nWhere was Cathy Busby born?\tToronto\nWhere was Michael Mason born?\tOhio\nWhere was Rob Heanley born?\tSurrey\nWhere was Alfons Martí Bauçà born?\tPalma\nWhere was Colin Slater born?\tBradford\nWhere was Keagan Kang born?\tPerth\nWhere was Brian Hodgson born?\tLiverpool\nWhere was John Cole born?\tToronto\nWhere was Harry South born?\tFulham\nWhere was Judd Buchanan born?\tEdmonton\nWhere was Eric Kloss born?\tGreenville\nWhere was Jumoke Verissimo born?\tLagos\nWhere was Kym Anderson born?\tAdelaide\nWhere was Thomas Miller born?\tNorwich\nWhere was Ethel Merston born?\tLondon\nWhere was Barry Palmer born?\tEngland\nWhere was Stephanie Andujar born?\tManhattan\nWhere was Derek Murray born?\tDublin\nWhere was Ted Grouya born?\tBucharest\nWhere was Marinko Madžgalj born?\tBelgrade\nWhere was John J. Gorman born?\tMinneapolis\nWhere was William Magennis born?\tBelfast\nWhere was Ondřej Neff born?\tPrague\nWhere was Andrea Newman born?\tDover\nWhere was Eugene O'Conor born?\tIreland\nWhere was Andrew Knight born?\tEngland\nWhere was Frederick Franklin Schrader born?\tHamburg\nWhere was Janek Schaefer born?\tEngland\nWhere was Charles William King born?\tNewport\nWhere was Chris Woodhead born?\tEdmonton\nWhere was Stephen Tompkins born?\tCleveland\nWhere was Arto Sipinen born?\tHelsinki\nWhere was Adam Begley born?\tBoston\nWhere was Pavel Polakovič born?\tSlovakia\nWhere was Tansy Davies born?\tBristol\nWhere was Gregg Weaver born?\tCalifornia\nWhere was Liza Manili born?\tStrasbourg\nWhere was Jason Eckardt born?\tPrinceton\nWhere was Jon Elster born?\tOslo\nWhere was Fyodor Vinberg born?\tKiev\nWhere was Ali Lakhani born?\tEngland\nWhere was Alfred Payne born?\tLeicester\nWhere was Sean McGreevy born?\tBelfast\nWhere was Christine Niederberger Betton born?\tBordeaux\nWhere was Anna Maria Guarnieri born?\tMilan\nWhere was Gerald J. Tate born?\tBelfast\nWhere was Henry Howell born?\tRichmond\nWhere was Baruch Arensburg born?\tSantiago\nWhere was Hedvig Willman born?\tStockholm\nWhere was Jane Tanner born?\tMelbourne\nWhere was John Ferrar Holms born?\tIndia\nWhere was Myer Hoffman born?\tLeeds\nWhere was Joan Hartigan born?\tSydney\nWhere was Dionysis Boukouvalas born?\tAthens\nWhere was Galina Fokina born?\tMoscow\nWhere was Dexter Perkins born?\tBoston\nWhere was Philippe N'Dioro born?\tFrance\nWhere was William Mattieu Williams born?\tLondon\nWhere was Sara Agnes Mclaughlin Conboy born?\tBoston\nWhere was Adam Melonas born?\tCanberra\nWhere was Hifumi Shimoyama born?\tJapan\nWhere was Claire Cox born?\tPeterborough\nWhere was Manu Farrarons born?\tFrance\nWhere was Frank Gohlke born?\tTexas\nWhere was Paul Chadwick born?\tSeattle\nWhere was Vlastimil Pt%C3%A1k born?\tPrague\nWhere was Huck Whitney born?\tBirmingham\nWhere was Richard Nye born?\tGloucester\nWhere was Bill Downe born?\tMontreal\nWhere was Lee King born?\tDublin\nWhere was Gladys Ewart born?\tOttawa\nWhere was Stephen Griew born?\tLondon\nWhere was Michel Reis born?\tLuxembourg\nWhere was Anselm Jappe born?\tBonn\nWhere was Freddy Winnai born?\tPhiladelphia\nWhere was Edward Harrington born?\tVictoria\nWhere was Harry James Angus born?\tMelbourne\nWhere was David J. Farrar born?\tLondon\nWhere was John Smith born?\tToronto\nWhere was Johnny Rodgers born?\tMiami\nWhere was Stacy Barthe born?\tBrooklyn\nWhere was Ákos Császár born?\tBudapest\nWhere was Glynnis McDaris born?\tMemphis\nWhere was Johann Friedrich Schleusner born?\tLeipzig\nWhere was Michael Swanton born?\tLondon\nWhere was Kari Økland born?\tBergen\nWhere was Rosabelle Sinclair born?\tRussia\nWhere was Thomas Smith born?\tEngland\nWhere was Mickael Marquet born?\tFrance\nWhere was Michael Upton born?\tBirmingham\nWhere was Sally Price born?\tBoston\nWhere was Luca Bottale born?\tMilan\nWhere was Paul Moyer Limbert born?\tPennsylvania\nWhere was Malcolm Terris born?\tSunderland\nWhere was Mia Riddle born?\tVentura\nWhere was Irina Borogan born?\tMoscow\nWhere was Aleksander Kogoj born?\tLjubljana\nWhere was Thomas Edward Gordon born?\tAberdeen\nWhere was Wilhelm Krause born?\tHanover\nWhere was Albrecht Dietz born?\tDresden\nWhere was Grigori Kromanov born?\tTallinn\nWhere was Sami Hinkka born?\tFinland\nWhere was Paul Burston born?\tYorkshire\nWhere was William Francis Whitman, Jr. born?\tChicago\nWhere was John D. Strong born?\tLawrence\nWhere was Aleksandar Simi%C4%87 born?\tBelgrade\nWhere was Murray Hocking born?\tVictoria\nWhere was Darren Ockert born?\tLincoln\nWhere was Max Lehmann born?\tBerlin\nWhere was Riccardo Ghedin born?\tRome\nWhere was Pietro Fancelli born?\tBologna\nWhere was Henry Frederick Strohecker born?\tMacon\nWhere was George J. Graham, Jr. born?\tDayton\nWhere was Frederick Hickford born?\tBrunswick\nWhere was Leah Goldstein born?\tCanada\nWhere was Louis Gurlitt born?\tHolstein\nWhere was Tom Luken born?\tCincinnati\nWhere was Annar Petersen born?\tOslo\nWhere was Behnoosh Tabatabayi born?\tTehran\nWhere was Vernon Carroll Porter born?\tCleveland\nWhere was Ernest Breton born?\tParis\nWhere was Andrew Lemoncello born?\tTokyo\nWhere was Myra Sklarew born?\tBaltimore\nWhere was John Rutledge, Jr. born?\tCharleston\nWhere was Ashley Webster born?\tBrighton\nWhere was Matthew T. Abruzzo born?\tBrooklyn\nWhere was Erik Willoch born?\tOslo\nWhere was Heinz Oestergaard born?\tBerlin\nWhere was Terry Byrne born?\tLondon\nWhere was Jared Cohen born?\tWeston\nWhere was Alma Redlinger born?\tBucharest\nWhere was John Millen born?\tSavannah\nWhere was Julien Fountain born?\tSussex\nWhere was Giuseppe de Majo born?\tNaples\nWhere was Joel Pelletier born?\tMassachusetts\nWhere was Rudolf Ehlers born?\tHamburg\nWhere was Jacek Sauk born?\tVilnius\nWhere was Stephen Luttrell born?\tLeicester\nWhere was Lawrence Walford born?\tLondon\nWhere was Stella Inger born?\tRussia\nWhere was Ludwig von Buhl born?\tMunich\nWhere was Shen Zhihua born?\tBeijing\nWhere was Fenton Johnson born?\tChicago\nWhere was Sasha Neulinger born?\tPhiladelphia\nWhere was Gerald Murphy born?\tBoston\nWhere was Alana Miller born?\tWinnipeg\nWhere was Drew McDowall born?\tPaisley\nWhere was Henry Corbould born?\tLondon\nWhere was Ymer Pampuri born?\tTirana\nWhere was Eduard Ritter von Weber born?\tMunich\nWhere was Raymond R. Schumacher born?\tChicago\nWhere was Pierre Sabatie born?\tFrance\nWhere was Nariman Farvardin born?\tIran\nWhere was Jorn Madslien born?\tOslo\nWhere was Mary Jayne Gold born?\tChicago\nWhere was Nelson Fogarty born?\tCanterbury\nWhere was John Caskie born?\tRichmond\nWhere was Gillian Cooke born?\tEdinburgh\nWhere was Joseph Silverstein born?\tDetroit\nWhere was Ernest Lafont born?\tLyon\nWhere was David T. Walker born?\tTulsa\nWhere was Jessy Moss born?\tEngland\nWhere was Catherine Ransom Karoly born?\tMinneapolis\nWhere was Akihiro Tsukiyama born?\tTokyo\nWhere was Ferenc A. Váli born?\tBudapest\nWhere was William Williams born?\tBolton\nWhere was John Mann Goggin born?\tChicago\nWhere was Hélène Carrère d'Encausse born?\tParis\nWhere was Bill Dillard born?\tPennsylvania\nWhere was Richard Schroeppel born?\tIllinois\nWhere was Mark McCulloch born?\tInverness\nWhere was Richard Symonds born?\tNorfolk\nWhere was Nasos Galakteros born?\tAthens\nWhere was Joe M. O'Connell born?\tAustin\nWhere was Brody Condon born?\tMexico\nWhere was Ernst Zacharias Platner born?\tLeipzig\nWhere was Henri Nussbaumer born?\tParis\nWhere was John Boson born?\tPaul\nWhere was Morris Bear Squire born?\tChicago\nWhere was Yolande Thibeault born?\tMontreal\nWhere was James Tocco born?\tDetroit\nWhere was Constant Ferdinand Burille born?\tParis\nWhere was John Samuel Kenyon born?\tMedina\nWhere was Franz Galich born?\tGuatemala\nWhere was Tom Adams born?\tGettysburg\nWhere was Daniel Joseph Jaffé born?\tLondon\nWhere was Matteo Salvini born?\tMilan\nWhere was Tony Naumovski born?\tSydney\nWhere was Joseph M. Baumgarten born?\tVienna\nWhere was Daniel Sproule born?\tMelbourne\nWhere was Theodor Holman born?\tAmsterdam\nWhere was Dave Connell born?\tDublin\nWhere was Alfredo Moreno born?\tSantiago\nWhere was Luke Sullivan born?\tSingapore\nWhere was Lynn Faulds Wood born?\tGlasgow\nWhere was Roy Stuart Brown born?\tMinneapolis\nWhere was Andrew Park born?\tLafayette\nWhere was Richard Laurence born?\tBath\nWhere was Brian Murphy born?\tOttawa\nWhere was René Mayer born?\tParis\nWhere was Leopoldo Gout born?\tMexico\nWhere was Robert Tripp Ross born?\tWashington\nWhere was Ragnhild Lundén born?\tGothenburg\nWhere was Fatima Rainey born?\tSweden\nWhere was John Edwin born?\tLondon\nWhere was Arthur Bingham Walkley born?\tBristol\nWhere was Mazen Mneimneh born?\tLebanon\nWhere was Howard O. McMahon born?\tAlberta\nWhere was Joe Caccia born?\tNaples\nWhere was George Stone born?\tLondon\nWhere was Alice Temple born?\tLondon\nWhere was Andrew Kennedy born?\tDayton\nWhere was Michael Randle born?\tEngland\nWhere was Michael Charlton born?\tSydney\nWhere was Lars Svensson born?\tStockholm\nWhere was Eva Aridjis born?\tHolland\nWhere was David B. Mellish born?\tOxford\nWhere was John Brown born?\tSheffield\nWhere was Patrick Hicks born?\tCharlotte\nWhere was Ludovicus Stornebrink born?\tRotterdam\nWhere was Michael Feiner born?\tGothenburg\nWhere was Giancarlo Primo born?\tItaly\nWhere was Thomas Davis born?\tWorcester\nWhere was Lottie Gilson born?\tPennsylvania\nWhere was Brian Bram born?\tChicago\nWhere was J. E. P. Aldous born?\tSheffield\nWhere was Billy Blue born?\tJamaica\nWhere was Christian Wilhelm Berger born?\tBucharest\nWhere was Ulla Pia born?\tCopenhagen\nWhere was Samuel Bernstein born?\tFrance\nWhere was Steve Laine born?\tLondon\nWhere was Antonio Ruiz de Montoya born?\tLima\nWhere was Bernhard R%C3%BChling born?\tStuttgart\nWhere was Don Swaim born?\tKansas\nWhere was Lawrence Dundas, 1st Earl of Zetland born?\tWestminster\nWhere was Sam Bartlett born?\tBurlington\nWhere was Martin Timell born?\tStockholm\nWhere was Lucien Barbour born?\tCanton\nWhere was Edward Moore born?\tCardiff\nWhere was Bridget Allchin born?\tOxford\nWhere was Pieter Harting born?\tRotterdam\nWhere was Anthony Poon born?\tSingapore\nWhere was Brihaspati Dev Triguna born?\tIndia\nWhere was Knut Kjeldstadli born?\tOslo\nWhere was William Byrne born?\tLondon\nWhere was Fiachna %C3%93 Braon%C3%A1in born?\tDublin\nWhere was Harold Drasdo born?\tBradford\nWhere was William Main Page born?\tLondon\nWhere was Theron Metcalf born?\tFranklin\nWhere was Robert Callender born?\tBarbados\nWhere was Mohd Shoaib Hassan born?\tLahore\nWhere was Lisa Sheridan born?\tMacon\nWhere was Georg Kloss born?\tFrankfurt\nWhere was Julianna Barwick born?\tLouisiana\nWhere was William Erskine born?\tEdinburgh\nWhere was Albert Chamberland born?\tMontreal\nWhere was Len Zengel born?\tDayton\nWhere was William Henry Brockenbrough born?\tVirginia\nWhere was Brook Pridemore born?\tDetroit\nWhere was Arthur Levering born?\tBaltimore\nWhere was Sheila Sondergard born?\tSeoul\nWhere was Lee Davies born?\tBlackburn\nWhere was Nicole Richardson born?\tMelbourne\nWhere was Paul Heeren born?\tAdelaide\nWhere was William James Henderson born?\tNewark\nWhere was Nicolae Herlea born?\tBucharest\nWhere was Fred Rosenstock born?\tGalicia\nWhere was Lucie Vrbensk%C3%A1 born?\tPrague\nWhere was Kenneth William Junor born?\tToronto\nWhere was Nicolas Colibert born?\tParis\nWhere was Jan Pawe%C5%82 Nowacki born?\tBerlin\nWhere was Brandon Bird born?\tCarmichael\nWhere was A. M. Esmonde born?\tSwansea\nWhere was Thomas Wright Rudderow born?\tPhiladelphia\nWhere was Francis Gano Benedict born?\tMilwaukee\nWhere was William Davidson born?\tCharleston\nWhere was Austin Lloyd Fleming born?\tToronto\nWhere was Li Weiliang born?\tBeijing\nWhere was Migidio Bourifa born?\tCasablanca\nWhere was Zhang Li born?\tShanghai\nWhere was Charles Jones born?\tWolverhampton\nWhere was Yehonatan Berick born?\tIsrael\nWhere was Georg Hellmesberger born?\tVienna\nWhere was George Georgiou born?\tLondon\nWhere was John R. Tunis born?\tBoston\nWhere was Buono de' Buoni born?\tNaples\nWhere was Dave Steele born?\tTampa\nWhere was Tim Benjamin born?\tLondon\nWhere was Alina Gut born?\tLublin\nWhere was Michel Roger Lafosse born?\tBelgium\nWhere was Martin A. Janis born?\tToledo\nWhere was John William Mellor born?\tLondon\nWhere was Robert S. Richardson born?\tIndiana\nWhere was Derek Kreckler born?\tSydney\nWhere was Yosef Harish born?\tJerusalem\nWhere was Robert Chen born?\tTaipei\nWhere was Max Angelelli born?\tBologna\nWhere was Alan Welsh born?\tEdinburgh\nWhere was Billy Edwards born?\tBirmingham\nWhere was Paul Lebreton born?\tBordeaux\nWhere was Lowrell Simon born?\tChicago\nWhere was R. W. Johnson born?\tEngland\nWhere was Benjamin Pine born?\tLondon\nWhere was Charles Forbes René de Montalembert born?\tLondon\nWhere was George Schutt born?\tIreland\nWhere was Matt Ryan born?\tSydney\nWhere was Marie Nicolas Sylvestre Guillon born?\tParis\nWhere was Daniel Spielman born?\tPhiladelphia\nWhere was Tony Conran born?\tIndia\nWhere was Oscar O'Brien born?\tOttawa\nWhere was Pietra Montecorvino born?\tNaples\nWhere was Lennox Raphael born?\tTrinidad\nWhere was Su Lian Tan born?\tMalaysia\nWhere was Oğuz Abadan born?\tAnkara\nWhere was Donald W. Loveland born?\tRochester\nWhere was Francis MacManus born?\tKilkenny\nWhere was Monica Esposito born?\tGenoa\nWhere was Mike Vosburg born?\tCalifornia\nWhere was Kraisak Choonhavan born?\tBangkok\nWhere was Ken Lyons born?\tFlorida\nWhere was René Renoult born?\tParis\nWhere was David Empringham born?\tToronto\nWhere was Saleem Pervez born?\tLahore\nWhere was Adnan Awad born?\tPalestine\nWhere was Juan Carlos Bersague born?\tHavana\nWhere was Joseph Bosworth born?\tDerbyshire\nWhere was Khalid Malik born?\tPakistan\nWhere was Paddy Crowley born?\tDublin\nWhere was John Joseph Braham, Sr. born?\tEngland\nWhere was Calvary Morris born?\tCharleston\nWhere was Carlo Bacchiocco born?\tMilan\nWhere was Robert Ilyasov born?\tKazan\nWhere was George Henderson born?\tEdinburgh\nWhere was Aaron Walden born?\tWarsaw\n"
  },
  {
    "path": "a5/birth_places_train.tsv",
    "content": "Where was Khatchig Mouradian born?\tLebanon\nWhere was Jacob Henry Studer born?\tColumbus\nWhere was John Stephen born?\tGlasgow\nWhere was Georgina Willis born?\tAustralia\nWhere was Stanley Corrsin born?\tPhiladelphia\nWhere was Eduard Ender born?\tRome\nWhere was John Fisher born?\tGlasgow\nWhere was Iago Dekanozishvili born?\tTbilisi\nWhere was Lucy Toulmin Smith born?\tBoston\nWhere was George Osborn born?\tRochester\nWhere was Leslie Hofton born?\tSheffield\nWhere was Chiyoki Ikeda born?\tHonolulu\nWhere was Geoffrey Nutter born?\tSacramento\nWhere was Eyolf Kleven born?\tCopenhagen\nWhere was Marvano born?\tBelgium\nWhere was Naïma Azough born?\tMorocco\nWhere was Eugenia Popa born?\tBucharest\nWhere was Douglas P. Fry born?\tBoston\nWhere was Hans Gefors born?\tStockholm\nWhere was Sohail Fazal born?\tLahore\nWhere was James Johnson born?\tVirginia\nWhere was Håvard Rem born?\tOslo\nWhere was Hubert Schiffer born?\tGermany\nWhere was Ivan Petch born?\tConcord\nWhere was Guido Marzorati born?\tVenice\nWhere was Sean Hickey born?\tDetroit\nWhere was Hector de Castro born?\tConstantinople\nWhere was Lloyd Goffe born?\tReading\nWhere was Alois Wachsman born?\tPrague\nWhere was Martin Connor born?\tTrenton\nWhere was Mohammad Hossein Barkhah born?\tTehran\nWhere was James Robert Rhind born?\tInverness\nWhere was Jean Hamilius born?\tLuxembourg\nWhere was Danny Seward born?\tSalford\nWhere was Stephen Grey born?\tRotterdam\nWhere was Louie Verrecchio born?\tBaltimore\nWhere was Marcus Junkelmann born?\tMunich\nWhere was John Dodington born?\tToronto\nWhere was Graham Salisbury born?\tPhiladelphia\nWhere was Bunny Johnson born?\tJamaica\nWhere was Cenk Renda born?\tTurkey\nWhere was Mihael Brejc born?\tBelgrade\nWhere was Gordon Baldwin born?\tEngland\nWhere was Shlomo Shriki born?\tMorocco\nWhere was Tatiana Belokonenko born?\tOdessa\nWhere was Rob Childs born?\tDerby\nWhere was Andreas Musalus born?\tCrete\nWhere was Francesco Maria Bonini born?\tNaples\nWhere was Raymond McGrath born?\tSydney\nWhere was Stephen Carter, Baron Carter of Barnes born?\tScotland\nWhere was Jack Macgougan born?\tBelfast\nWhere was Julia Wilson born?\tSydney\nWhere was James Jordan born?\tChatham\nWhere was Wang Yong born?\tShanghai\nWhere was Ronny Swiggers born?\tBelgium\nWhere was Sofia Ester born?\tLisbon\nWhere was Nathan Long born?\tAustralia\nWhere was Ylli Bufi born?\tTirana\nWhere was Sir Andrew Agnew, 8th Baronet born?\tEdinburgh\nWhere was John Seru born?\tAustralia\nWhere was Sebastiano Maffettone born?\tNaples\nWhere was Wang Wei born?\tBeijing\nWhere was Theodore Baskin born?\tDetroit\nWhere was Ferenc Sipos born?\tBudapest\nWhere was Tadahisa Saizen born?\tTokyo\nWhere was Arthur Harold Stone born?\tLondon\nWhere was Bransby Williams born?\tLondon\nWhere was Walter Branscombe born?\tExeter\nWhere was Jeanne Deroin born?\tParis\nWhere was Frederick Pottinger born?\tIndia\nWhere was Patrick Thomas Stone born?\tPembroke\nWhere was Andrea Neil born?\tVancouver\nWhere was Karl Albert Buehr born?\tGermany\nWhere was Alexander Mullenbach born?\tLuxembourg\nWhere was Gilbert John Arrow born?\tLondon\nWhere was John Howard born?\tLondon\nWhere was Elizur Goodrich born?\tDurham\nWhere was Zenon Nowosz born?\tWarsaw\nWhere was Greta Knutson born?\tStockholm\nWhere was Paul Daniels born?\tBurlington\nWhere was Tom Jones born?\tDallas\nWhere was Elizabeth Bartlett born?\tDeal\nWhere was Laura Moriarty born?\tHonolulu\nWhere was David Moss born?\tDoncaster\nWhere was Richard Tillinghast born?\tMemphis\nWhere was Judith Mok born?\tBergen\nWhere was Eugen Enderlen born?\tSalzburg\nWhere was Frank Farrell born?\tBirmingham\nWhere was John Savage born?\tDublin\nWhere was Joel Honig born?\tChicago\nWhere was Jan Cox Speas born?\tRaleigh\nWhere was Norman Spector born?\tMontreal\nWhere was Peeter van Bredael born?\tAntwerp\nWhere was John Jaffray born?\tStirling\nWhere was Sir William Coddington, 1st Baronet born?\tSalford\nWhere was Azra Erhat born?\tIstanbul\nWhere was Helen Sharsmith born?\tOakland\nWhere was Jeff Spiers born?\tBelfast\nWhere was Ilus Vay born?\tBudapest\nWhere was Igors Vihrovs born?\tRiga\nWhere was Harry Chadwick born?\tToronto\nWhere was Franz Rummel born?\tEngland\nWhere was Jim Grace born?\tDublin\nWhere was Ali Sarmini born?\tAleppo\nWhere was Robert Daniel Murphy born?\tMilwaukee\nWhere was Shannon Emerick born?\tDallas\nWhere was Walter Gretzky born?\tOntario\nWhere was Kristian Geelmuyden born?\tOslo\nWhere was Tala Raassi born?\tIran\nWhere was Jules Louis Lewal born?\tParis\nWhere was Patrick Daughters born?\tBerkeley\nWhere was Renaud Gagneux born?\tParis\nWhere was Elizabeth Burmaster born?\tBaltimore\nWhere was Dave Mazzoni born?\tPhiladelphia\nWhere was Aamer Haleem born?\tLondon\nWhere was John Van Lear McMahon born?\tMaryland\nWhere was Jan Jacob Kieft born?\tAmsterdam\nWhere was Wilhelmine von Hillern born?\tMunich\nWhere was Tracey Magee born?\tBelfast\nWhere was George Edward Hughes born?\tWaterford\nWhere was Alexander Riese born?\tFrankfurt\nWhere was Tina Kim born?\tSeoul\nWhere was Bernard de Wolff born?\tAmsterdam\nWhere was Peter Ording born?\tStade\nWhere was Branko Rasić born?\tSerbia\nWhere was Ketil Hvoslef born?\tBergen\nWhere was John Carlin born?\tNottinghamshire\nWhere was Antonio Selvaggio born?\tPalermo\nWhere was Michael Aufhauser born?\tAugsburg\nWhere was Paula Tesoriero born?\tWellington\nWhere was John Marcum born?\tToledo\nWhere was Beth Liebling born?\tIllinois\nWhere was José Bénazéraf born?\tCasablanca\nWhere was Witold Nazarewicz born?\tWarsaw\nWhere was Aarne Lakomaa born?\tFinland\nWhere was Jerry Knight born?\tCalifornia\nWhere was Yanitzia Canetti born?\tHavana\nWhere was Ken Niles born?\tLivingston\nWhere was Riccardo Maspero born?\tItaly\nWhere was Margaret Maury born?\tKenya\nWhere was Bernard Wright born?\tJamaica\nWhere was Caroline Beil born?\tHamburg\nWhere was Joseph Judah Chorny born?\tMinsk\nWhere was Thomas Godfrey Faussett born?\tOxford\nWhere was Árpád Soós born?\tBudapest\nWhere was Samuel Davidson born?\tIreland\nWhere was Leonard Gyllenhaal born?\tSweden\nWhere was Sheyene Gerardi born?\tCaracas\nWhere was Bryn Atkinson born?\tCanberra\nWhere was Claudine Chomat born?\tFrance\nWhere was Peter G. Engelman born?\tLondon\nWhere was Stanis%C5%82aw Stolarczyk born?\tPoland\nWhere was Sean Naylor born?\tCalgary\nWhere was Jean Muller born?\tLuxembourg\nWhere was Victoria Roberts born?\tManhattan\nWhere was Thomas F. Konop born?\tFranklin\nWhere was Richard Cullen born?\tBrooklyn\nWhere was Webster Edgerly born?\tMassachusetts\nWhere was Peter Smedley born?\tPerth\nWhere was Eric Ziebold born?\tIowa\nWhere was Adam Buszko born?\tWarsaw\nWhere was Syms Covington born?\tBedford\nWhere was Joan Vincent Murray born?\tLondon\nWhere was Gabriela Kulka born?\tWarsaw\nWhere was Andrea Ratuski born?\tWinnipeg\nWhere was Donald Haddow born?\tOntario\nWhere was Joe Daly born?\tLondon\nWhere was Jane R. Goodall born?\tYorkshire\nWhere was Natalia Skobeeva born?\tRussia\nWhere was Charles Murphy born?\tOttawa\nWhere was Charles Duncan born?\tMiddlesbrough\nWhere was Adel Sedra born?\tEgypt\nWhere was William Wilson born?\tPreston\nWhere was Thomas Bond born?\tSomerset\nWhere was Michael Manuel born?\tTacoma\nWhere was James William Wallack born?\tLondon\nWhere was Neil Swaab born?\tDetroit\nWhere was Jean Cotelle born?\tParis\nWhere was Nick Hall born?\tBirmingham\nWhere was Julie Aberg Robison born?\tMadison\nWhere was Fina de Calderón born?\tMadrid\nWhere was Gordan Kožulj born?\tZagreb\nWhere was Francis Henry Newbery born?\tDevon\nWhere was Katherine Prescott Wormeley born?\tEngland\nWhere was Avi Bortnick born?\tIsrael\nWhere was James L. Hogeboom born?\tGhent\nWhere was Samuel Kneeland born?\tBoston\nWhere was Denise Holt born?\tVienna\nWhere was Riccardo Azzoli born?\tRome\nWhere was Russell Bawden born?\tQueensland\nWhere was Bachar Kouatly born?\tDamascus\nWhere was Charles Ignatius White born?\tBaltimore\nWhere was John Halsey born?\tBoston\nWhere was Russya born?\tKiev\nWhere was Brian White born?\tWinnipeg\nWhere was Ashley Gilbertson born?\tMelbourne\nWhere was Rosere Manguelle born?\tFrance\nWhere was James A. MacAlister born?\tGlasgow\nWhere was Dennis Rea born?\tChicago\nWhere was Nick Pugh born?\tParis\nWhere was Douglas Fee born?\tKingston\nWhere was Colin Carr born?\tLiverpool\nWhere was Robert Harth born?\tLouisville\nWhere was Pierre de Savoye born?\tMontreal\nWhere was Lionello Grifo born?\tRome\nWhere was Marcin Gawron born?\tPoland\nWhere was Alex Coke born?\tDallas\nWhere was Martinus Tels born?\tRotterdam\nWhere was Matthew Kent born?\tMelbourne\nWhere was Johan de Graeff born?\tAmsterdam\nWhere was Norbert Balatsch born?\tVienna\nWhere was Eugen von Halácsy born?\tVienna\nWhere was Fergus Morton, Baron Morton of Henryton born?\tGlasgow\nWhere was Horatio Balch Hackett born?\tSalisbury\nWhere was Pascal Aubier born?\tParis\nWhere was Steven Alexander born?\tLondon\nWhere was Ray Sharp born?\tStirling\nWhere was Luke Youlden born?\tMelbourne\nWhere was Michael Urbano born?\tSacramento\nWhere was Ernst Fries born?\tHeidelberg\nWhere was Giovanni Polese born?\tVenice\nWhere was Ellie Tesher born?\tToronto\nWhere was Alain de Cadenet born?\tLondon\nWhere was Jemma Gawned born?\tPerth\nWhere was Reginald Henry Campbell born?\tEdinburgh\nWhere was Elfie W%C3%B6rner born?\tBerlin\nWhere was Frederic Heath born?\tMilwaukee\nWhere was Jimmy Norris born?\tNewport\nWhere was John Baird born?\tGlasgow\nWhere was Giacomo Luigi Brignole born?\tGenoa\nWhere was Kenn Burke born?\tFife\nWhere was Anna Maria Villani Scicolone born?\tRome\nWhere was George Schlukbier born?\tGermany\nWhere was Pietro Leonardi born?\tRome\nWhere was Ole Buck born?\tCopenhagen\nWhere was Alastair Gordon born?\tSydney\nWhere was Dariusz Lipiński born?\tWarsaw\nWhere was Che Arthur born?\tMobile\nWhere was Alan Wace born?\tCambridge\nWhere was Scientist born?\tKingston\nWhere was Pat Passlof born?\tBrunswick\nWhere was Elizabeth Filippouli born?\tAthens\nWhere was Al Harewood born?\tBrooklyn\nWhere was Laurie Fisher born?\tCanberra\nWhere was Neil M. Cohen born?\tNewark\nWhere was Carl Blumenreuter born?\tBerlin\nWhere was Ian Dench born?\tCheltenham\nWhere was George FitzGeorge born?\tLondon\nWhere was Charles A. Barlow born?\tCleveland\nWhere was Didier Pfirter born?\tBasel\nWhere was Jon Stock born?\tEngland\nWhere was Michael Gallagher born?\tScotland\nWhere was Sergei Ordzhonikidze born?\tMoscow\nWhere was John Clarke born?\tIreland\nWhere was A. G. E. Blake born?\tBristol\nWhere was Billy Hoffman born?\tAtlanta\nWhere was Marcello Abbado born?\tMilan\nWhere was Eugénie Söderberg born?\tHeidelberg\nWhere was Russell Stannard born?\tLondon\nWhere was Charles Ejogo born?\tLondon\nWhere was George Clifford Sziklai born?\tBudapest\nWhere was Mary Jean Stone born?\tBrighton\nWhere was Mat Chivers born?\tBristol\nWhere was Linda MacLennan born?\tToronto\nWhere was Marthe Chenal born?\tParis\nWhere was Horatio Luro born?\tArgentina\nWhere was Adolfo Davila born?\tMexico\nWhere was Charles Cotin born?\tParis\nWhere was Wayne Eagling born?\tMontreal\nWhere was Aldo Franchi born?\tMilan\nWhere was Dennis Frank Thompson born?\tOhio\nWhere was Ferenc Mérei born?\tBudapest\nWhere was Roger Brunet born?\tToulouse\nWhere was Theodore Low De Vinne born?\tStamford\nWhere was Michael Francis Phelan born?\tLynn\nWhere was Celestino Sfondrati born?\tMilan\nWhere was Samuel Verblunsky born?\tLondon\nWhere was David Stainer born?\tExeter\nWhere was Andrew O'Neill born?\tPortsmouth\nWhere was Gritakumar E. Chitty born?\tColombo\nWhere was Des Abbott born?\tDarwin\nWhere was Dumont de Montigny born?\tParis\nWhere was Conrad Keely born?\tEngland\nWhere was Titane Laurent born?\tMorocco\nWhere was Edwin E. Wagner born?\tPhiladelphia\nWhere was Ronnie Stephenson born?\tSunderland\nWhere was Will Kirby born?\tFlorence\nWhere was Rosina Storchio born?\tVenice\nWhere was Sylvester Rosa Koehler born?\tLeipzig\nWhere was Julie Mullen born?\tLiverpool\nWhere was Charles Kemper born?\tOklahoma\nWhere was Philip Smouha born?\tSydney\nWhere was Jan Jakob Tønseth born?\tOslo\nWhere was Tony Mitchell born?\tToronto\nWhere was Michel Host born?\tFlanders\nWhere was Yang Yang born?\tChina\nWhere was Tom Mattera born?\tPhiladelphia\nWhere was Maarten Fontein born?\tLeiden\nWhere was Brian Ervine born?\tBelfast\nWhere was Takeshi Miyazawa born?\tCanada\nWhere was Stephan Shakespeare born?\tGermany\nWhere was John Barry born?\tLondon\nWhere was Stanisław Urban born?\tWarsaw\nWhere was Harvey Emerson Oswald born?\tColumbus\nWhere was Alec Mullen born?\tIrvine\nWhere was Alexander Mishnaevski born?\tMoscow\nWhere was Leo Ehrnrooth born?\tSweden\nWhere was John William Thomson born?\tToronto\nWhere was Steve Arrington born?\tDayton\nWhere was Alexander C. Kirk born?\tAngus\nWhere was Jimmy Gregg born?\tDublin\nWhere was Raymond Castilloux born?\tCanada\nWhere was Florent Fidèle Constant Bourgeois born?\tParis\nWhere was Isaac Sharp born?\tDublin\nWhere was Asa G. Yancey, Sr. born?\tAtlanta\nWhere was Robert Hamilton Paterson born?\tEdinburgh\nWhere was Jan van Ispelen born?\tGermany\nWhere was Harold Arthur Stuart born?\tYork\nWhere was Gerry Markman born?\tMontreal\nWhere was Amber Parkinson born?\tMelbourne\nWhere was Alexander Cores born?\tRussia\nWhere was Homa Shaibany born?\tIran\nWhere was George Arnald born?\tBerkshire\nWhere was William M. Crane born?\tElizabeth\nWhere was Samuel Joseph Fuenn born?\tVilnius\nWhere was Aurel S. Croissant born?\tGermany\nWhere was Marie Fisher born?\tSydney\nWhere was Mihály Kovács born?\tBudapest\nWhere was Susan Bullock born?\tCheshire\nWhere was Ximena Armas born?\tSantiago\nWhere was John David Hennessey born?\tLondon\nWhere was Simone Pasticcio born?\tGenoa\nWhere was Andreas Lagios born?\tAthens\nWhere was Michael Birt born?\tMelbourne\nWhere was William Dimma born?\tMontreal\nWhere was Harry Philbrick born?\tProvidence\nWhere was Lasse Lintilä born?\tFinland\nWhere was Julia Kendell born?\tMiddlesex\nWhere was Nikos Aliagas born?\tParis\nWhere was James Fagan born?\tAustralia\nWhere was Hiram Hunter born?\tChristchurch\nWhere was Lawrence Taub born?\tNewark\nWhere was Samuel Gezalian born?\tOdessa\nWhere was Taavi Vartia born?\tHelsinki\nWhere was Akhtar Naraghi born?\tIran\nWhere was Friedrich Rehberg born?\tHanover\nWhere was Ernst Mehlich born?\tBerlin\nWhere was Pierre Lecomte du Noüy born?\tParis\nWhere was Ahmet Esat Tomruk born?\tConstantinople\nWhere was Jonah Smith born?\tSyracuse\nWhere was Henry James born?\tBoston\nWhere was Werner Münch born?\tWestphalia\nWhere was Charles Weissmann born?\tBudapest\nWhere was Ron Westrum born?\tChicago\nWhere was John M. Coffee born?\tTacoma\nWhere was Johnny Praize Hernandez born?\tNewark\nWhere was William Taylor born?\tAlexandria\nWhere was Alastair Layzell born?\tJersey\nWhere was Samuel Sterett born?\tCarlisle\nWhere was Bobby Parker born?\tCoventry\nWhere was Sun Lingfeng born?\tBeijing\nWhere was Sheenagh Pugh born?\tBirmingham\nWhere was Patricia Stokkers born?\tUtrecht\nWhere was Necmi S%C3%B6nmez born?\tIstanbul\nWhere was Jonathan Wilkins born?\tLondon\nWhere was Harry Pelling Gill born?\tBrighton\nWhere was Joan Brotat born?\tBarcelona\nWhere was William Charles Brenke born?\tBerlin\nWhere was Ernest Wilson Huffcut born?\tKent\nWhere was Clive Brooks born?\tBow\nWhere was Aleksandar Novaković born?\tBelgrade\nWhere was Maja Tucholke born?\tLeipzig\nWhere was Bruce Carmichael born?\tWinnipeg\nWhere was Arthur Kinnaird, 11th Lord Kinnaird born?\tKensington\nWhere was Laszlo Gardony born?\tHungary\nWhere was Kelley Deal born?\tDayton\nWhere was William Henry Harrison Stowell born?\tWindsor\nWhere was Serdar Apaydın born?\tTurkey\nWhere was Barrett Martin born?\tOlympia\nWhere was Sal Sparace born?\tItaly\nWhere was Tzipora Laskov born?\tUkraine\nWhere was Frank Beck born?\tSalisbury\nWhere was Robert Fulford born?\tColchester\nWhere was Saad Salman born?\tBaghdad\nWhere was Jan Bull born?\tParis\nWhere was Terry Zahn born?\tMilwaukee\nWhere was Murdoch Macdonald born?\tInverness\nWhere was Hugo Consuegra born?\tHavana\nWhere was Mark Ettinger born?\tManhattan\nWhere was Winfield Myers born?\tGeorgia\nWhere was Daniel Steven Crafts born?\tDetroit\nWhere was Rebekah Modrak born?\tPittsburgh\nWhere was Piero Rodarte born?\tMexico\nWhere was René Gagnier born?\tMontreal\nWhere was Wang Beiming born?\tShanghai\nWhere was James Adler born?\tChicago\nWhere was Jüri Reinvere born?\tTallinn\nWhere was Lucille Wallenrod born?\tBrooklyn\nWhere was Henry S. Magoon born?\tWisconsin\nWhere was Anna Kurska born?\tLviv\nWhere was Wally Stocker born?\tLondon\nWhere was Cristy Coors Beasley born?\tMemphis\nWhere was Viktor Ivan%C4%8Di%C4%87 born?\tSarajevo\nWhere was Eugène Lanti born?\tNormandy\nWhere was Dominique de Williencourt born?\tLille\nWhere was Paul Zuccarelli born?\tMilan\nWhere was Francisco de Osuna born?\tSeville\nWhere was Emmanuel Aquin born?\tMontreal\nWhere was Denis Denisenko born?\tMoscow\nWhere was Jonathan Shearer born?\tGlasgow\nWhere was Charles T. Clotfelter born?\tBirmingham\nWhere was Stan Rosenthal born?\tLondon\nWhere was Michael Shine born?\tWarren\nWhere was Jonas Slier born?\tAmsterdam\nWhere was Barry Mitcalfe born?\tWellington\nWhere was Jennifer Ness born?\tCheshire\nWhere was David Barstow born?\tBoston\nWhere was György Bródy born?\tBudapest\nWhere was William Russell Birch born?\tWarwickshire\nWhere was Henry Taylor born?\tPhiladelphia\nWhere was Steve Sundholm born?\tPortland\nWhere was Frederic Bayco born?\tLondon\nWhere was Ethan Schreiber born?\tDetroit\nWhere was Francis Waddelove born?\tEngland\nWhere was Renato Caccioppoli born?\tNaples\nWhere was John Heath born?\tWorcester\nWhere was Leo Abrahams born?\tEngland\nWhere was Innocente Alessandri born?\tVenice\nWhere was Silja Ekeland Bjørkly born?\tBergen\nWhere was Harry Zvi Tabor born?\tLondon\nWhere was Mirela Ivanova born?\tSofia\nWhere was Bobby Skafish born?\tHammond\nWhere was John Montague born?\tSyracuse\nWhere was Józef Wieniawski born?\tLublin\nWhere was Joe Torres born?\tBrooklyn\nWhere was Rhett Davies born?\tLondon\nWhere was Saradindu Mukherjee born?\tKolkata\nWhere was Peter Smith born?\tMansfield\nWhere was Jennifer Moyle born?\tNorwich\nWhere was Ottaviano Nonni born?\tBologna\nWhere was Vincenzo Re born?\tParma\nWhere was Göran Gentele born?\tStockholm\nWhere was Hamilton Sloan born?\tBelfast\nWhere was Ann Corio born?\tHartford\nWhere was Brad Heald born?\tSydney\nWhere was Gordon Edward Corbould born?\tToronto\nWhere was Byron Fulcher born?\tCornwall\nWhere was Yvette Giraud born?\tParis\nWhere was Robert E. Merriam born?\tChicago\nWhere was Leszek Korzeniowski born?\tWarsaw\nWhere was Eugene Elliott Reed born?\tManchester\nWhere was Cynthia Cruz born?\tGermany\nWhere was Enrico Montesano born?\tRome\nWhere was Stephen McGonagle born?\tDerry\nWhere was Kirk Hunter born?\tBelfast\nWhere was Paul Lacroix born?\tParis\nWhere was Argiris Pedoulakis born?\tAthens\nWhere was Andrei Soldatov born?\tMoscow\nWhere was Yuki Matsuzawa born?\tTokyo\nWhere was Cliff Jones born?\tLondon\nWhere was Daniel Dayan born?\tCasablanca\nWhere was Zoltán Szilády born?\tBudapest\nWhere was Warington Wilkinson Smyth born?\tNaples\nWhere was Thomas Hoegh born?\tOslo\nWhere was Jan Schreiber born?\tWisconsin\nWhere was John Carlyle Herbert born?\tAlexandria\nWhere was Stuart Ford born?\tSheffield\nWhere was John DeCew born?\tVermont\nWhere was John Boling born?\tIndianapolis\nWhere was Peter Griffen born?\tAdelaide\nWhere was Gregory Woods born?\tGhana\nWhere was K. Bhaskaran born?\tChennai\nWhere was Sergio Zaniboni born?\tTurin\nWhere was Mike Delph born?\tIndianapolis\nWhere was Tanis Rideout born?\tBelgium\nWhere was Edwin Sutherland born?\tNebraska\nWhere was Anders Agensø born?\tDenmark\nWhere was Alexander Smith born?\tEdinburgh\nWhere was Brian Callison born?\tManchester\nWhere was Hanna Ożogowska born?\tWarsaw\nWhere was Luis G. Pedraja born?\tCuba\nWhere was Adalbert Vitalyos born?\tHungary\nWhere was Eero Paloheimo born?\tHelsinki\nWhere was Nick Grosso born?\tLondon\nWhere was George Sutherland born?\tScotland\nWhere was Ludwig von Wohlgemuth born?\tVienna\nWhere was Nikhil Haldipur born?\tKolkata\nWhere was Kris Kane born?\tGlasgow\nWhere was Albert Geouffre de Lapradelle born?\tParis\nWhere was Fran%C3%A7ois Desjardins born?\tMontreal\nWhere was Marco Maccarini born?\tTurin\nWhere was Hanna Thompson born?\tRochester\nWhere was Andrzej Mańka born?\tLublin\nWhere was Rika Noguchi born?\tTokyo\nWhere was Tobias Summerer born?\tBavaria\nWhere was Albert Warren Ferris born?\tBrooklyn\nWhere was Hans Solereder born?\tMunich\nWhere was Mark McCrea born?\tBelfast\nWhere was László Z. Bitó born?\tBudapest\nWhere was Brian Costello born?\tFlorida\nWhere was Georges Hugon born?\tParis\nWhere was Christfried Burmeister born?\tBradford\nWhere was Nick Greenstock born?\tDubai\nWhere was Thomas Wroth born?\tLondon\nWhere was Aliuska López born?\tHavana\nWhere was Vladeta Janković born?\tBelgrade\nWhere was Staffan de Mistura born?\tStockholm\nWhere was Brett Hayman born?\tMelbourne\nWhere was Mike Teasdale born?\tElgin\nWhere was Walter Hilgers born?\tGermany\nWhere was Gilbert de Clare, 7th Earl of Gloucester born?\tChristchurch\nWhere was Nektaria Karantzi born?\tGreece\nWhere was Phil Dudderidge born?\tHertfordshire\nWhere was Edward Meredith Cope born?\tBirmingham\nWhere was Boris Yampolsky born?\tUkraine\nWhere was Edith Leyrer born?\tVienna\nWhere was Susan Denin born?\tPhiladelphia\nWhere was Harrison Allen born?\tPhiladelphia\nWhere was Valentin Raychev born?\tSofia\nWhere was Kev Moore born?\tChesterfield\nWhere was Romuald Giegiel born?\tWarsaw\nWhere was Léon Gimpel born?\tParis\nWhere was Colin Groves born?\tEngland\nWhere was Azzedine Sakhri born?\tAlgiers\nWhere was Serafino Amedeo De Ferrari born?\tGenoa\nWhere was Ahmet Gülhan born?\tAnkara\nWhere was Duncan Fallowell born?\tLondon\nWhere was Ernest Baldwin born?\tGloucester\nWhere was George Bruce Malleson born?\tWimbledon\nWhere was Matthew Price born?\tLondon\nWhere was Ippongi Bang born?\tYokohama\nWhere was Alex Halberstadt born?\tMoscow\nWhere was Richard Vale born?\tLondon\nWhere was Alistair Griffin born?\tMiddlesbrough\nWhere was Gary Loizzo born?\tIllinois\nWhere was Kim Mackay born?\tBathurst\nWhere was Benjamin Brecknell Turner born?\tLondon\nWhere was Eduard Ortgies born?\tBremen\nWhere was Wilhelm Sander born?\tBerlin\nWhere was Sampson Low born?\tLondon\nWhere was Mario Theodoli born?\tRome\nWhere was Joy Williams born?\tSydney\nWhere was Adam McLean born?\tGlasgow\nWhere was Philip Warwick born?\tWestminster\nWhere was Kimiko Kasai born?\tKyoto\nWhere was Nina Repeta born?\tShelby\nWhere was Rudolf Křesťan born?\tPrague\nWhere was David Atkinson born?\tMontreal\nWhere was Edmund Port born?\tSyracuse\nWhere was Sonya Emery born?\tAustin\nWhere was Giuliano Ciannella born?\tPalermo\nWhere was Otto Griessing born?\tMunich\nWhere was Marcus Bierich born?\tHamburg\nWhere was Zhu Dawei born?\tShanghai\nWhere was Nicole Jordan born?\tOklahoma\nWhere was Hugh Andrew Johnstone Munro born?\tElgin\nWhere was Johnny Mowlem born?\tLondon\nWhere was Hall Hibbard born?\tKansas\nWhere was Cris af Enehielm born?\tHelsinki\nWhere was Mouloud Sihali born?\tAlgeria\nWhere was Patrick Lemarié born?\tParis\nWhere was Matthew Baillie Begbie born?\tMauritius\nWhere was Edward Gardner born?\tGloucester\nWhere was Marija Lugari%C4%87 born?\tZagreb\nWhere was Andrea Mátay born?\tBudapest\nWhere was John P. Cassidy born?\tBoise\nWhere was Glenn Cunningham born?\tBristol\nWhere was Richard Keese born?\tPeru\nWhere was Safdar Malik born?\tLahore\nWhere was Francisca Pleguezuelos born?\tGranada\nWhere was Laurie Allan born?\tLondon\nWhere was Yves Roucaute born?\tParis\nWhere was Bob Alberti born?\tBrooklyn\nWhere was Noah Creshevsky born?\tRochester\nWhere was Ivo Lukačovič born?\tPrague\nWhere was Gary Titley born?\tSalford\nWhere was Arseni Markov born?\tMoscow\nWhere was Farid Chopel born?\tParis\nWhere was Martin Smith born?\tSouthampton\nWhere was Alice Gerrard born?\tSeattle\nWhere was Sheyla Bonnick born?\tJamaica\nWhere was Brian G. W. Manning born?\tBirmingham\nWhere was Stewart Brown born?\tSouthampton\nWhere was George Graham born?\tStirling\nWhere was Péter Lendvay born?\tBudapest\nWhere was John Galea born?\tNorfolk\nWhere was Arthur Andrews born?\tSunderland\nWhere was Ben Ali born?\tTrinidad\nWhere was Hallgeir Langeland born?\tStrand\nWhere was Michał Tober born?\tWarsaw\nWhere was Howard Griffiths born?\tWales\nWhere was Philippe Lardy born?\tSwitzerland\nWhere was Moritz Hornes born?\tVienna\nWhere was Ken Little born?\tCanyon\nWhere was Romain Pelletier born?\tMontreal\nWhere was David Paton born?\tHamilton\nWhere was Henry Curtis Meanor born?\tCleveland\nWhere was Neil Fingleton born?\tDurham\nWhere was Lionel Tiger born?\tMontreal\nWhere was Charles Henry Douglass born?\tMacon\nWhere was Harry Marshall Ward born?\tHereford\nWhere was Murat Evliyaoğlu born?\tTurkey\nWhere was Jesse A. Hamilton born?\tPortland\nWhere was Michael Anti born?\tNanjing\nWhere was Jan Kregel born?\tDallas\nWhere was Silas Halsey born?\tSouthampton\nWhere was Eugene Cotran born?\tJerusalem\nWhere was Herbert Kingsford born?\tDover\nWhere was Frank Sayers born?\tLondon\nWhere was Thanhha Lai born?\tVietnam\nWhere was Kevin Noe born?\tDallas\nWhere was John Graham born?\tDerby\nWhere was Stefanie van Vliet born?\tAmsterdam\nWhere was Stephen Smyth born?\tDerry\nWhere was Jacques Mehler born?\tBarcelona\nWhere was Adam Gierek born?\tBelgium\nWhere was Russell Trainer born?\tDetroit\nWhere was James Bigwood born?\tBristol\nWhere was George Clark born?\tTulsa\nWhere was Byron Morrow born?\tChicago\nWhere was Hervé Alphand born?\tParis\nWhere was Georges Henri Roger born?\tParis\nWhere was Charles Tanguy born?\tFrance\nWhere was Ethel du Pont born?\tWilmington\nWhere was Domenico Cunego born?\tVerona\nWhere was Robert K. Brown born?\tMonroe\nWhere was Festus Walters born?\tPhiladelphia\nWhere was Noel Moore born?\tYorkshire\nWhere was Oliver Bevan born?\tPeterborough\nWhere was Alexander Pope Field born?\tLouisville\nWhere was D'Arcy Browning born?\tEdmonton\nWhere was George Rowe born?\tExeter\nWhere was Pierre Albuisson born?\tMadagascar\nWhere was Simon Laurens born?\tJersey\nWhere was Clere Parsons born?\tIndia\nWhere was Peter Wraxall born?\tBristol\nWhere was Louis Godin born?\tParis\nWhere was George William Knox born?\tRome\nWhere was Wayne Budd born?\tSpringfield\nWhere was George Jacobs born?\tMassachusetts\nWhere was Claude Duflos born?\tParis\nWhere was Rod Anderson born?\tAustralia\nWhere was A. Ledyard Smith born?\tMilwaukee\nWhere was Jean Pérol born?\tVienna\nWhere was Jorge Pacheco Klein born?\tMontevideo\nWhere was Rambhau Mhalgi born?\tPune\nWhere was Edward Balfour born?\tAngus\nWhere was Margaret Bloodworth born?\tWinnipeg\nWhere was Eric Guillemain born?\tMorocco\nWhere was John Whitworth born?\tIndia\nWhere was Christine de Veyrac born?\tToulouse\nWhere was Felicia Montealegre born?\tChile\nWhere was Michael Finney born?\tWoodland\nWhere was Ian Hancock born?\tEngland\nWhere was Graham Roberts born?\tChester\nWhere was Peter Belches born?\tScotland\nWhere was Knut Tarald Taraldsen born?\tOslo\nWhere was Filippo Soffici born?\tFlorence\nWhere was Paul Hedqvist born?\tStockholm\nWhere was Vladimir Galkin born?\tKazan\nWhere was Sir George Bowyer, 7th Baronet born?\tBerkshire\nWhere was Yelena Belyakova born?\tMoscow\nWhere was Hakob Hakobian born?\tEgypt\nWhere was Martin Jacques born?\tCoventry\nWhere was Tajinder Singh Hayer born?\tBradford\nWhere was Jon Courtney born?\tReading\nWhere was Ruth Volgl Cardoso born?\tBrazil\nWhere was Erwin Kelm born?\tMinnesota\nWhere was Swami Sundaranand born?\tIndia\nWhere was Jacob B. Grumet born?\tManhattan\nWhere was John Honeyman born?\tIreland\nWhere was George B. Rabb born?\tCharleston\nWhere was Alexander Laner born?\tMunich\nWhere was David Schrader born?\tChicago\nWhere was Darren Carr born?\tBristol\nWhere was Victor Borge born?\tCopenhagen\nWhere was Xavier Garbajosa born?\tToulouse\nWhere was Philippe Risoli born?\tParis\nWhere was Omar Harfouch born?\tTripoli\nWhere was Harry Newton Redman born?\tIllinois\nWhere was Frederic C. Lane born?\tLansing\nWhere was Josef Metternich born?\tCologne\nWhere was David Pangai born?\tTonga\nWhere was Stephen Fox born?\tEngland\nWhere was Martyn Joseph born?\tWales\nWhere was Frederick Ringer born?\tNorwich\nWhere was Thomas Johns Perry born?\tCumberland\nWhere was Robert Atherton born?\tLiverpool\nWhere was Adolf von Bomhard born?\tAugsburg\nWhere was Maria Kuznetsova born?\tOdessa\nWhere was Pavel Žáček born?\tPrague\nWhere was Spencer Swalm born?\tColorado\nWhere was Martin Duffy born?\tDublin\nWhere was Andre Coley born?\tJamaica\nWhere was Giacomo Vaghi born?\tComo\nWhere was Andrew Martin born?\tCambridge\nWhere was Nikolay Atanasov born?\tSofia\nWhere was Fran%C3%A7ois-Anne David born?\tParis\nWhere was William Evans born?\tEton\nWhere was Tayyar Yalaz born?\tIstanbul\nWhere was Dorothy Whitelock born?\tLeeds\nWhere was Charles James Monk born?\tPeterborough\nWhere was Ted Dey born?\tHull\nWhere was Kassim Mohamed born?\tKenya\nWhere was Phil Rose born?\tManchester\nWhere was Leslie Paul born?\tDublin\nWhere was Robert McCoy born?\tCarlisle\nWhere was Bertrand Lamarche born?\tParis\nWhere was Gary Clark born?\tDundee\nWhere was John Macdonell born?\tScotland\nWhere was Francis J. Ricciardone, Jr. born?\tBoston\nWhere was Darnell Kennedy born?\tMobile\nWhere was Anatoly Alexine born?\tMoscow\nWhere was Shane McKenzie born?\tAdelaide\nWhere was Kees Maks born?\tAmsterdam\nWhere was Lewis Rendt born?\tGermany\nWhere was Francisco Alimama Kashu born?\tHyderabad\nWhere was Katalin Karády born?\tBudapest\nWhere was Giovanni Battista Pozzi born?\tMilan\nWhere was Mariano Armellino born?\tRome\nWhere was Natalia Rom born?\tKazan\nWhere was Felice Giordano born?\tTurin\nWhere was Lyubomir Ivanov born?\tSofia\nWhere was Danielle McGrath born?\tSydney\nWhere was Coral Amiga born?\tLondon\nWhere was Eva Roth born?\tAugsburg\nWhere was William Fletcher Burden born?\tTroy\nWhere was John Lee born?\tOklahoma\nWhere was Sheik Sadeek born?\tGuyana\nWhere was David Parry born?\tLondon\nWhere was Tim Robinson born?\tYorkshire\nWhere was Alfred Ollivant born?\tManchester\nWhere was Wen Xiao Zheng born?\tShanghai\nWhere was John Mundy born?\tEngland\nWhere was Christopher Packe born?\tNorwich\nWhere was Yasmine Mahmoudieh born?\tGermany\nWhere was Giovanni Battista Rinuccini born?\tRome\nWhere was Vic Lee born?\tShanghai\nWhere was John Purchas born?\tCambridge\nWhere was Parviz Jalayer born?\tTehran\nWhere was Henry Arthur Bright born?\tLiverpool\nWhere was Louis Mazetier born?\tParis\nWhere was Richard Bristow born?\tWorcester\nWhere was Noël Gallon born?\tParis\nWhere was Peter Martin born?\tGalway\nWhere was Leo Alexander born?\tVienna\nWhere was Milan Orlowski born?\tPrague\nWhere was Lahcen Abrami born?\tCasablanca\nWhere was James Henry Emerton born?\tSalem\nWhere was Ma Kelu born?\tShanghai\nWhere was Ulrik Cold born?\tCopenhagen\nWhere was Lyman Tremain born?\tDurham\nWhere was Pandeli Ralli born?\tFrance\nWhere was Morgan Val Baker born?\tCornwall\nWhere was Jay Kennedy born?\tToledo\nWhere was Michael Griffith born?\tTrinidad\nWhere was Frederick A. Pike born?\tCalais\nWhere was Algernon Methuen born?\tLondon\nWhere was Henri Perreyve born?\tParis\nWhere was David Robert Nelson born?\tStuttgart\nWhere was Federico López born?\tMexico\nWhere was Stephen Carr born?\tSydney\nWhere was Edmund H. Pendleton born?\tSavannah\nWhere was William Hayter born?\tOxford\nWhere was Pat Gerber born?\tGlasgow\nWhere was David McCarthy born?\tBelfast\nWhere was Guiniforte Solari born?\tMilan\nWhere was Derrick Leon born?\tLondon\nWhere was Joseph Osgood Barrett born?\tBangor\nWhere was John Jenkins born?\tEngland\nWhere was Rastko Cvetković born?\tBelgrade\nWhere was John Snyder born?\tBoston\nWhere was Trevor Burton born?\tAston\nWhere was Al Cotey born?\tChicago\nWhere was Jan Antonín Duchoslav born?\tPrague\nWhere was Steve Francis born?\tPhoenix\nWhere was Raymond Ericson born?\tBrooklyn\nWhere was Valeriu Stoica born?\tBucharest\nWhere was Christian Murchison born?\tSingapore\nWhere was Julie Duncan born?\tCornish\nWhere was James Moffat born?\tVictoria\nWhere was Robert Erskine born?\tScotland\nWhere was Ralph Katz born?\tPittsburgh\nWhere was Bernard Cassen born?\tParis\nWhere was Gerhard Kraft born?\tHeidelberg\nWhere was Lucas Auer born?\tAustria\nWhere was Andrew Amos born?\tIndia\nWhere was Richard Bathurst born?\tJamaica\nWhere was Stewart G. Honeck born?\tChicago\nWhere was Giovanni Francesco Commendone born?\tVenice\nWhere was Mary Louise Smith born?\tMontgomery\nWhere was Miglena Markova born?\tSofia\nWhere was Theodore J. van den Broek born?\tAmsterdam\nWhere was Amy Sarkisian born?\tCleveland\nWhere was Thomas Barclay born?\tGlasgow\nWhere was Mahdi Al Tajir born?\tBahrain\nWhere was David Sander born?\tMelbourne\nWhere was Massimo Carello born?\tTurin\nWhere was John Small born?\tYork\nWhere was Alizeh Imtiaz born?\tKarachi\nWhere was Judith Vollmer born?\tPittsburgh\nWhere was Shay Gibbons born?\tDublin\nWhere was Gareth Knapman born?\tBirmingham\nWhere was Keith Cozens born?\tSurrey\nWhere was Dick Spotswood born?\tCalifornia\nWhere was James Mumford born?\tNorfolk\nWhere was Jack Blum born?\tToronto\nWhere was Mark Patton born?\tJersey\nWhere was Geoffrey Girard born?\tGermany\nWhere was Zhu Xueqin born?\tShanghai\nWhere was Bonnie Ladwig born?\tMilwaukee\nWhere was Imafuji Ch%C5%8Dtatsur%C5%8D born?\tTokyo\nWhere was Guo Jinlong born?\tNanjing\nWhere was Maude Duncan born?\tVirginia\nWhere was Stan Fine born?\tPittsburgh\nWhere was Zhores Medvedev born?\tTbilisi\nWhere was Gael Suares born?\tFrance\nWhere was Peter Nyborg born?\tGothenburg\nWhere was Julius Goldzier born?\tVienna\nWhere was Bill Jennings born?\tNorwich\nWhere was Louis Gustave Ricard born?\tMarseille\nWhere was Ephraim Paine born?\tCanterbury\nWhere was Horatio Bisbee, Jr. born?\tCanton\nWhere was S%C3%A9bastien Leblanc born?\tMontreal\nWhere was Tom Lynskey born?\tGalway\nWhere was DJ Uncle Al born?\tMiami\nWhere was James Milnor Coit born?\tHarrisburg\nWhere was Alan Thomson born?\tGlasgow\nWhere was Slaw Rebchuk born?\tWinnipeg\nWhere was Ashley Gilbertson born?\tAustralia\nWhere was Timothy Foote born?\tLondon\nWhere was Irving Fiske born?\tBrooklyn\nWhere was Tiziano Maggiolini born?\tRome\nWhere was Pat Foote born?\tDurham\nWhere was Aco Petrović born?\tBelgrade\nWhere was Endre Csillag born?\tBudapest\nWhere was Thomas Bottomore born?\tEngland\nWhere was Antonio Ciacca born?\tGermany\nWhere was Chris Heimerdinger born?\tIndiana\nWhere was Friedrich-August Schack born?\tSilesia\nWhere was Christian Ferdinand Friedrich Krauss born?\tStuttgart\nWhere was Kumar Ponnambalam born?\tColombo\nWhere was Lucius Verus born?\tRome\nWhere was Neil Zakiewicz born?\tLondon\nWhere was Odin Langen born?\tMinneapolis\nWhere was Mark Howett born?\tPerth\nWhere was Isaac Green Messec born?\tMacon\nWhere was Elizabeth Kell born?\tSydney\nWhere was Joel Frost born?\tCarmel\nWhere was Osku Palermaa born?\tFinland\nWhere was Leopold Casper born?\tBerlin\nWhere was Andrew Repasky McElhinney born?\tPhiladelphia\nWhere was Bunita Marcus born?\tMadison\nWhere was Simon James born?\tYork\nWhere was Herbert Postle born?\tMelbourne\nWhere was Charles Henry Turner born?\tWentworth\nWhere was Marc Chervel born?\tLille\nWhere was Hans Henrik Løyche born?\tCopenhagen\nWhere was Terry Eviston born?\tDublin\nWhere was Francis Davis born?\tPhiladelphia\nWhere was Sarah Brandner born?\tMunich\nWhere was Chubb Rock born?\tJamaica\nWhere was Francis Ernest Jackson born?\tHuddersfield\nWhere was MWF born?\tMemphis\nWhere was John Aspinall born?\tLiverpool\nWhere was Brendon Sinclair born?\tHobart\nWhere was Paul Conway born?\tChicago\nWhere was Tarek Momen born?\tCairo\nWhere was Maryam Khan born?\tManchester\nWhere was Benzion Rakow born?\tFrankfurt\nWhere was Mark Buchanan born?\tCleveland\nWhere was Justine Smethurst born?\tMelbourne\nWhere was Davide Sorrenti born?\tNaples\nWhere was Alessandro Frosini born?\tSiena\nWhere was Bhai Balmukund born?\tPakistan\nWhere was Ellen Gulbranson born?\tStockholm\nWhere was Richard Bilby born?\tTucson\nWhere was Mary Akrivopoulou born?\tThessaloniki\nWhere was Scarlett Strallen born?\tLondon\nWhere was Athanase Josué Coquerel born?\tAmsterdam\nWhere was William Samuel Booze born?\tBaltimore\nWhere was Frederick Fraley born?\tPhiladelphia\nWhere was Giuseppe Sabbatini born?\tRome\nWhere was Frederick Hartt born?\tBoston\nWhere was Edward Fitzharris born?\tIreland\nWhere was Felicitas Kuhn born?\tVienna\nWhere was Kenny Brannigan born?\tGlasgow\nWhere was João de Souza Mendes born?\tPortugal\nWhere was Eugene Tzigane born?\tTokyo\nWhere was Gladys Henson born?\tDublin\nWhere was David Smith born?\tLondon\nWhere was Carl Frederik Waage Beck born?\tCopenhagen\nWhere was Catherine Vickers born?\tRegina\nWhere was Alex Figge born?\tBoulder\nWhere was E. Riley Anderson born?\tChattanooga\nWhere was Paul Belmondo born?\tAlgiers\nWhere was Sébastien Roch born?\tToulouse\nWhere was John McKay born?\tMontreal\nWhere was Nahum Slouschz born?\tOdessa\nWhere was Aigars Vītols born?\tRiga\nWhere was Richard Bayley born?\tFairfield\nWhere was David Bret born?\tParis\nWhere was Guerguina Dvoretzka born?\tSofia\nWhere was Brendon Lindsay born?\tAustralia\nWhere was Judy Brooke born?\tLeeds\nWhere was Carlos Sampayo born?\tArgentina\nWhere was Tino Vegar born?\tSplit\nWhere was Thomas Guthrie Marquis born?\tChatham\nWhere was Robert Simpson Woodward born?\tRochester\nWhere was H. M. Green born?\tSydney\nWhere was Katerina Lemmel born?\tNuremberg\nWhere was Carlo Silipo born?\tNaples\nWhere was Mary Moody Emerson born?\tConcord\nWhere was Marc Matthews born?\tGuyana\nWhere was Matthias Bjornlund born?\tCopenhagen\nWhere was Henry Alfred Todd born?\tWoodstock\nWhere was Richard Cawley born?\tDoncaster\nWhere was Michael Halvarson born?\tStockholm\nWhere was Kerry Hannon born?\tPittsburgh\nWhere was Paul Boyd born?\tScotland\nWhere was Yannick Pouliot born?\tParis\nWhere was Hasna Xhukiçi born?\tAlbania\nWhere was Karl Chmielewski born?\tFrankfurt\nWhere was Lawrence Kushner born?\tDetroit\nWhere was Charles Frodsham born?\tLondon\nWhere was William Henry Anderdon born?\tLondon\nWhere was Martin Theodore Orne born?\tVienna\nWhere was Travis Bowen born?\tErie\nWhere was Bruce Hoblitzell born?\tLouisville\nWhere was John Bridgeman born?\tExeter\nWhere was Frank Cole born?\tSaskatchewan\nWhere was John McHale born?\tScotland\nWhere was Niels Bjerrum born?\tCopenhagen\nWhere was Massimo Mazzucco born?\tTurin\nWhere was No I.D. born?\tChicago\nWhere was J%C3%A9r%C3%B4me Inzerillo born?\tMarseille\nWhere was Stewart Rawlings Mott born?\tFlint\nWhere was Roderick Blaker born?\tMontreal\nWhere was Amir Mohebbian born?\tTehran\nWhere was Abel Dimier born?\tParis\nWhere was Richard Armstrong born?\tLeicester\nWhere was Jean Arnault born?\tFrance\nWhere was Stephen Gough born?\tDublin\nWhere was Mick O'Brien born?\tDublin\nWhere was Omar Rezaq born?\tLebanon\nWhere was George Pearkes born?\tWatford\nWhere was Malcolm Margolin born?\tBoston\nWhere was Dominique Sanson born?\tParis\nWhere was Giovanni Battista Verger born?\tRome\nWhere was Dylan Taite born?\tLiverpool\nWhere was Olof Bj%C3%B6rner born?\tStockholm\nWhere was Johan Daisne born?\tGhent\nWhere was Martin Weston born?\tWorcester\nWhere was Mathieu Blin born?\tParis\nWhere was E. W. Dickes born?\tLondon\nWhere was Siamak Hariri born?\tBonn\nWhere was Mircea Florian born?\tBucharest\nWhere was Kevin Robinson born?\tKilkenny\nWhere was Peter Driben born?\tBoston\nWhere was Kim Ondaatje born?\tToronto\nWhere was Antigoni Goni born?\tAthens\nWhere was Sikander Bakht born?\tKarachi\nWhere was George Brimley born?\tCambridge\nWhere was William Ewart born?\tLiverpool\nWhere was Pat Nixon born?\tNevada\nWhere was Angus Mackay born?\tLima\nWhere was Maynard Sinclair born?\tBelfast\nWhere was Dani Gal born?\tJerusalem\nWhere was Robert Holden born?\tPreston\nWhere was Paweł Zalewski born?\tWarsaw\nWhere was Michael Carney born?\tWaterford\nWhere was Donald Appleyard born?\tEngland\nWhere was Thomas Tod Stoddart born?\tEdinburgh\nWhere was Guy De Saint Cyr born?\tBerlin\nWhere was Adrian Moore born?\tNottingham\nWhere was Amélie Mummendey born?\tBonn\nWhere was Claire Burch born?\tBrooklyn\nWhere was Lloyd Youngblood born?\tBeaumont\nWhere was World population milestones born?\tSarajevo\nWhere was Wilhelm Boger born?\tStuttgart\nWhere was Raffaele Scalese born?\tNaples\nWhere was Vittorio Blanseri born?\tVenice\nWhere was Felipe Alfau born?\tBarcelona\nWhere was John Blackburn born?\tLuton\nWhere was Cipriano de Valera born?\tSeville\nWhere was Charles Collé born?\tParis\nWhere was Thierry Ehrmann born?\tLyon\nWhere was Alain Dorval born?\tAlgiers\nWhere was Sandrina Malakiano born?\tBangkok\nWhere was Romeo Niram born?\tRomania\nWhere was Leon Dycian born?\tPoland\nWhere was Mason Cook Darling born?\tAmherst\nWhere was Bertram Stuart Straus born?\tManchester\nWhere was Earle J. Gluck born?\tMaryland\nWhere was Jonathan B. Barry born?\tMilwaukee\nWhere was Bernard Leclerc born?\tFrance\nWhere was Dominic Dromgoole born?\tBristol\nWhere was Stanley Arthur Franklin born?\tBow\nWhere was Marc Sangnier born?\tParis\nWhere was Leslie Allen born?\tChicago\nWhere was Yang Yang born?\tBeijing\nWhere was Lawrence E. Kahn born?\tTroy\nWhere was Cornélie Falcon born?\tParis\nWhere was Wojciech Rychlik born?\tPoland\nWhere was Frederick Webb Hodge born?\tPlymouth\nWhere was Willis Jackson, Baron Jackson of Burnley born?\tBurnley\nWhere was Diane Carlson Evans born?\tMinnesota\nWhere was Joseph W. White born?\tCambridge\nWhere was Franz Dominic Grassi born?\tLeipzig\nWhere was Stefano Nolfi born?\tRome\nWhere was Ibrahim Diarra born?\tParis\nWhere was Jennifer Holliday born?\tMelbourne\nWhere was Peter Dowdeswell born?\tLondon\nWhere was Anna Hegner born?\tBasel\nWhere was Simon H. Rifkind born?\tLithuania\nWhere was Carey Beebe born?\tMelbourne\nWhere was Wang Nan born?\tChina\nWhere was Eric Ash born?\tBerlin\nWhere was Alaric Alexander Watts born?\tLondon\nWhere was Joseph Isabelle born?\tHull\nWhere was Alexander Wilson born?\tVirginia\nWhere was Jani Golob born?\tLjubljana\nWhere was Peyman Hooshmandzadeh born?\tTehran\nWhere was Walter Dulaney Addison born?\tAnnapolis\nWhere was Gary Franklin born?\tLeipzig\nWhere was John Esposito born?\tBrooklyn\nWhere was Walter Douglas born?\tGlasgow\nWhere was Denys Page born?\tReading\nWhere was Brigitte Peucker born?\tGermany\nWhere was Francis Williams born?\tKingston\nWhere was Alicia Thorgrimsson born?\tBrandon\nWhere was Tolga Tekinalp born?\tTurkey\nWhere was Wentworth Arthur Matthew born?\tLagos\nWhere was Harry B. Cohen born?\tWinnipeg\nWhere was Eduardo Lago born?\tMadrid\nWhere was Sir William Pearce, 2nd Baronet born?\tChatham\nWhere was Surinder Khanna born?\tDelhi\nWhere was Tom Hamilton born?\tBelfast\nWhere was Stephen Levine born?\tAlbany\nWhere was Gottlieb Bodmer born?\tMunich\nWhere was Collins J. Seitz born?\tWilmington\nWhere was Jaan Arder born?\tTallinn\nWhere was Eva Maria Zuk born?\tPoland\nWhere was Benjamin Enos born?\tRichmond\nWhere was Richard Anthony born?\tCairo\nWhere was Arthur Neal born?\tSheffield\nWhere was Jan Kregel born?\tTexas\nWhere was Henry Lerolle born?\tParis\nWhere was Leo Connellan born?\tPortland\nWhere was Alain Deloche born?\tParis\nWhere was Charles Ramsay Arbuthnot born?\tEngland\nWhere was Edward Stone Parker born?\tLondon\nWhere was Samuel Lancaster Gerry born?\tBoston\nWhere was Adrian Lombard born?\tCoventry\nWhere was Lewis Yelland Andrews born?\tSydney\nWhere was Jim Boyd born?\tPhiladelphia\nWhere was James Whitworth born?\tSheffield\nWhere was Sahara Smith born?\tAustin\nWhere was Hugues Krafft born?\tParis\nWhere was Barbara von Johnson born?\tMunich\nWhere was Leib Ostrow born?\tDetroit\nWhere was Chris Vaefaga born?\tAuckland\nWhere was Henry Neele born?\tLondon\nWhere was Buzzy Linhart born?\tPittsburgh\nWhere was Worthington Hooker born?\tSpringfield\nWhere was Fred Lecklider born?\tToledo\nWhere was Aleksander Żabczyński born?\tWarsaw\nWhere was Gabriele Castagnola born?\tGenoa\nWhere was Heather Jones born?\tEdmonton\nWhere was Wang He born?\tBeijing\nWhere was Gabrielle de Coignard born?\tToulouse\nWhere was David Aiken born?\tBenton\nWhere was Allison H. Eid born?\tSpokane\nWhere was Karen Young born?\tSheffield\nWhere was Emil Cesar born?\tLjubljana\nWhere was Mamta Kharab born?\tHaryana\nWhere was Christelle Lefranc born?\tParis\nWhere was Jimmy Johnson born?\tSheffield\nWhere was Emma Ejwertz born?\tSweden\nWhere was Justin Hickey born?\tSydney\nWhere was Desmond T. Burke born?\tOttawa\nWhere was Matthew Mead born?\tBuckinghamshire\nWhere was Thalia Pellegrini born?\tLondon\nWhere was Shyril O'Steen born?\tSeattle\nWhere was George Vicat Cole born?\tPortsmouth\nWhere was Peter Sullivan born?\tVirginia\nWhere was Barys Tasman born?\tMinsk\nWhere was Vernon Knowles born?\tAdelaide\nWhere was Paul Streeten born?\tAustria\nWhere was Gerrit Noordzij born?\tRotterdam\nWhere was Aghasi Khanjian born?\tVan\nWhere was Ignatius Cockshutt born?\tBradford\nWhere was Joseph Hislop born?\tEdinburgh\nWhere was Eli Capilouto born?\tAlabama\nWhere was Walter Ehrlich born?\tBerlin\nWhere was Justin Wintle born?\tLondon\nWhere was William Walcutt born?\tColumbus\nWhere was Felix Rottenberg born?\tAmsterdam\nWhere was Radovan Sloboda born?\tBratislava\nWhere was Olaf Rude born?\tEstonia\nWhere was Charlene McMann born?\tChicago\nWhere was James Chalmers born?\tElgin\nWhere was Howard Loxton born?\tBirmingham\nWhere was John Ferguson born?\tIrvine\nWhere was Bernard Brodie born?\tChicago\nWhere was Philip Hershkovitz born?\tPittsburgh\nWhere was Philip Jeremiah Schuyler born?\tAlbany\nWhere was Kong Bai Ji born?\tShanghai\nWhere was Richard Beckett born?\tLeeds\nWhere was Marty O'Neill born?\tWinnipeg\nWhere was Gerard Hemsworth born?\tLondon\nWhere was George Hulse born?\tLiverpool\nWhere was Jack Petticord born?\tChicago\nWhere was Sylvia Wynter born?\tCuba\nWhere was Doğa Bekleriz born?\tIstanbul\nWhere was Richard Bohn born?\tBerlin\nWhere was Chris Pile born?\tWarwickshire\nWhere was David Hackl born?\tToronto\nWhere was Tom Arnold born?\tLondon\nWhere was Juan Carlos Zald%C3%ADvar born?\tCuba\nWhere was Robert Wayne Thomason born?\tTulsa\nWhere was Peter Dembicki born?\tVancouver\nWhere was Eduardo Prado Coelho born?\tLisbon\nWhere was Paul Hallez born?\tLille\nWhere was George Bruce born?\tScotland\nWhere was Louisa Stevenson born?\tGlasgow\nWhere was Robert Moore born?\tHamilton\nWhere was Jean Noël Hallé born?\tParis\nWhere was Julian Paynter born?\tEdinburgh\nWhere was Tania Corrigan born?\tAuckland\nWhere was James Christie born?\tPerth\nWhere was William Kraft born?\tChicago\nWhere was Juan Bautista de Lezana born?\tMadrid\nWhere was Marcus Tuite born?\tDublin\nWhere was Paul Downes born?\tDevon\nWhere was Eleni Cubitt born?\tGreece\nWhere was Pieter de Molijn born?\tEngland\nWhere was Gustav Bischof born?\tNuremberg\nWhere was Wayne Elcock born?\tBirmingham\nWhere was Elnathan Sweet born?\tCheshire\nWhere was Gordon de Lisle Lee born?\tAberdeen\nWhere was Fran%C3%A7ois Ozenda born?\tMarseille\nWhere was Nancy Metz White born?\tMadison\nWhere was Shane Price born?\tMelbourne\nWhere was Sir James Grant, 8th Baronet born?\tScotland\nWhere was Simone Iannarelli born?\tRome\nWhere was John Alfred Cuthbert born?\tSavannah\nWhere was Edouard Grikurov born?\tTbilisi\nWhere was Timothy L. O'Brien born?\tIllinois\nWhere was John L. Morrison born?\tScotland\nWhere was DJ Woody born?\tBurnley\nWhere was Joshua Newtonn born?\tKerala\nWhere was Jeff Chandler born?\tPhiladelphia\nWhere was Godfrey Cripps born?\tIndia\nWhere was Samuel von Schmettau born?\tBerlin\nWhere was Margi Scharff born?\tMemphis\nWhere was Lance Hayward born?\tBermuda\nWhere was Henry Bernard Carpenter born?\tDublin\nWhere was Paule Ka born?\tLille\nWhere was Rona Hartner born?\tBucharest\nWhere was Terry Wardle born?\tHereford\nWhere was Ishwardas Rohani born?\tKarachi\nWhere was Leonard Strong born?\tUtah\nWhere was Colin Kennedy born?\tHamilton\nWhere was Peter Freebody born?\tSydney\nWhere was Biff Mitchell born?\tToronto\nWhere was Alice Harrison born?\tLondon\nWhere was Gabriel Bertrand born?\tParis\nWhere was Don Dixon born?\tEaston\nWhere was Queenie van de Zandt born?\tCanberra\nWhere was Thomas Playfere born?\tLondon\nWhere was Georges Borchardt born?\tBerlin\nWhere was Carlo Giuseppe Ratti born?\tGenoa\nWhere was Martin Kosleck born?\tPomerania\nWhere was Bernhard Fries born?\tHeidelberg\nWhere was Reed Hansen born?\tOrlando\nWhere was Ron Waksman born?\tPittsburgh\nWhere was Sir John Borlase, 2nd Baronet born?\tBuckinghamshire\nWhere was Marjorie Schwarzer born?\tBoston\nWhere was William L. Ward born?\tGreenwich\nWhere was Christa Goetsch born?\tBonn\nWhere was Robert John born?\tBirmingham\nWhere was Leonard Bosack born?\tPennsylvania\nWhere was Juan Carlos Carbonell born?\tSantiago\nWhere was Alberto Saichann born?\tArgentina\nWhere was Gianni Iapichino born?\tFlorence\nWhere was Emmanuel Schelstrate born?\tAntwerp\nWhere was Arthur William à Beckett born?\tFulham\nWhere was Arja Kajermo born?\tFinland\nWhere was Bob McChesney born?\tMaryland\nWhere was Petr Kroutil born?\tPrague\nWhere was Thomas Pole born?\tPhiladelphia\nWhere was Jonathan Hunt born?\tMassachusetts\nWhere was Albert Richard Pritchard born?\tRochester\nWhere was Joe Long born?\tElizabeth\nWhere was Gérald Gagnier born?\tMontreal\nWhere was Vishal Marwaha born?\tGlasgow\nWhere was Jos%C3%A9 Pou born?\tNicaragua\nWhere was Juan Manén born?\tBarcelona\nWhere was Nazik Saba Yared born?\tJerusalem\nWhere was Jean Gallon born?\tParis\nWhere was Marga van Praag born?\tAmsterdam\nWhere was Hiram Pitt Bennet born?\tCarthage\nWhere was Pierre Joxe born?\tParis\nWhere was Hardial Bains born?\tIndia\nWhere was Dennis Conta born?\tMilwaukee\nWhere was Harrie Wood born?\tKensington\nWhere was Robert Logan Jack born?\tIrvine\nWhere was Thomas Ebdon born?\tDurham\nWhere was Nick Doody born?\tMorley\nWhere was Salvador Cristau Coll born?\tBarcelona\nWhere was Jason Hedlesky born?\tMichigan\nWhere was Michael Guider born?\tMelbourne\nWhere was Salomon Konijn born?\tAmsterdam\nWhere was Zdzis%C5%82aw Najder born?\tWarsaw\nWhere was Francis Dunlavy born?\tVirginia\nWhere was Csaba Őry born?\tBudapest\nWhere was Henri Jeanneret born?\tSwitzerland\nWhere was Nicholas Riccardi born?\tGenoa\nWhere was Raymond Meier born?\tSwitzerland\nWhere was Graham Reilly born?\tLondon\nWhere was William Ernest Brymer born?\tBath\nWhere was John Philp Thompson, Sr. born?\tDallas\nWhere was Anita Vogel born?\tCalifornia\nWhere was Francis Hours born?\tFrance\nWhere was Richard E. Council born?\tTampa\nWhere was Peter Verhoek born?\tAuckland\nWhere was Dennis Davis born?\tManhattan\nWhere was Lukáš Kándl born?\tPrague\nWhere was Eliza Stewart Boyd born?\tCanada\nWhere was Thomas Dausgaard born?\tCopenhagen\nWhere was James Powell born?\tEton\nWhere was Karl Friedrich von Klöden born?\tBerlin\nWhere was Brad Farrow born?\tVancouver\nWhere was Jay Neill born?\tLondon\nWhere was Stacy Clark born?\tBuffalo\nWhere was David Needham born?\tLeicester\nWhere was Arsen Savadov born?\tKiev\nWhere was Simon Binnendijk born?\tLeiden\nWhere was Alan Davey born?\tIpswich\nWhere was Henry W. Lee born?\tLondon\nWhere was Alfred Clarke born?\tNottingham\nWhere was Paul Varley born?\tPreston\nWhere was Narado Brown born?\tKingston\nWhere was Jarvis Kenrick born?\tChichester\nWhere was Dwight Yates born?\tMontana\nWhere was Anna Barriball born?\tPlymouth\nWhere was Miriam Slater born?\tCalifornia\nWhere was Mark Alton Barwise born?\tChester\nWhere was Dick Stockton born?\tPhiladelphia\nWhere was Jacques d'Agar born?\tParis\nWhere was Mohammad Mottahedan born?\tIran\nWhere was Scott Tennant born?\tDetroit\nWhere was Käte Stresemann born?\tBerlin\nWhere was Laurence Lampert born?\tWinnipeg\nWhere was Tancrède Dumas born?\tItaly\nWhere was James Brockway born?\tBirmingham\nWhere was George Otto Wirz born?\tMonroe\nWhere was Jeff Simmons born?\tSeattle\nWhere was Robert Ford born?\tDevon\nWhere was Artur Zawisza born?\tPoland\nWhere was Edward Tufnell born?\tBath\nWhere was Robbie Regan born?\tWales\nWhere was Brent Barraclough born?\tCanada\nWhere was Diego Delgadillo born?\tGranada\nWhere was Erwin Lauper born?\tBern\nWhere was Charles Amos Cummings born?\tBoston\nWhere was Chris Christenson born?\tNorway\nWhere was Irfan Yusuf born?\tKarachi\nWhere was Mark McCall born?\tBangor\nWhere was Charles H. Kraft born?\tConnecticut\nWhere was Moses Hagiz born?\tJerusalem\nWhere was Elemér Terták born?\tBudapest\nWhere was Haru Mutasa born?\tZimbabwe\nWhere was Morten Nordeide Johansen born?\tOslo\nWhere was Ana Maria Narti born?\tBucharest\nWhere was George P. Merrill born?\tAuburn\nWhere was Kjersti Elvik born?\tBergen\nWhere was Maryem Tollar born?\tCairo\nWhere was Phillip Jackson born?\tChicago\nWhere was Tony Skabar born?\tUkraine\nWhere was Dávid Kovács born?\tBudapest\nWhere was Monika Meyer born?\tBerlin\nWhere was Claude Weisz born?\tParis\nWhere was Brian O'Riordan born?\tDublin\nWhere was Steven Hayward born?\tToronto\nWhere was Amy Chance born?\tHollywood\nWhere was Matt O'Connor born?\tManchester\nWhere was Sam Lynch born?\tLimerick\nWhere was Kris Lefcoe born?\tMontreal\nWhere was John Baptist de Faria born?\tPortugal\nWhere was Federico Fabregat born?\tGuadalajara\nWhere was Stefan Nystrom born?\tSweden\nWhere was Lucine Amara born?\tHartford\nWhere was Anna Livia Julian Brawn born?\tIreland\nWhere was Joe Zakas born?\tChicago\nWhere was John McLaren, Lord McLaren born?\tEdinburgh\nWhere was David Basnett born?\tLiverpool\nWhere was James Hamilton born?\tPaisley\nWhere was Alexander Manning born?\tDublin\nWhere was Ornella Oettl Reyes born?\tGermany\nWhere was Samuel Partridge born?\tNorwich\nWhere was Aristides Brezina born?\tVienna\nWhere was Don Mankiewicz born?\tBerlin\nWhere was Giorgio de Stefani born?\tVerona\nWhere was Chafik Charobim born?\tCairo\nWhere was Alexander Garden born?\tScotland\nWhere was Brandt C. Louie born?\tVancouver\nWhere was Gunnar Samuelsson born?\tLima\nWhere was Stanley Morgan born?\tLiverpool\nWhere was Peter Hargitai born?\tBudapest\nWhere was JJ Horner born?\tMinnesota\nWhere was Mary MacLeod Banks born?\tEdinburgh\nWhere was Chris McKhool born?\tOttawa\nWhere was Vincent Laforet born?\tSwitzerland\nWhere was Bill Barminski born?\tChicago\nWhere was Sharon Duce born?\tSheffield\nWhere was Claude Piel born?\tParis\nWhere was Herbert James Carter born?\tMarlborough\nWhere was Charles W. Moorman III born?\tCincinnati\nWhere was Hadi Sepehrzad born?\tTehran\nWhere was Sam Cosstick born?\tCroydon\nWhere was Ursula Evje born?\tOslo\nWhere was Nasos Thanopoulos born?\tAthens\nWhere was German Sims Woodhead born?\tHuddersfield\nWhere was John Keen born?\tBroadway\nWhere was Harry E. T. Thayer born?\tBoston\nWhere was Edith Dimock born?\tHartford\nWhere was Roland Green born?\tVictoria\nWhere was Bartle Brennen Bull born?\tToronto\nWhere was Daniel O'Mahony born?\tCroydon\nWhere was Tony Southgate born?\tCoventry\nWhere was Henry Bocking born?\tSheffield\nWhere was John McNamara born?\tCambridge\nWhere was Morris Sigman born?\tRussia\nWhere was Prosper Garnot born?\tBrest\nWhere was Masataka Yanagida born?\tTokyo\nWhere was Bertram Falle, 1st Baron Portsea born?\tJersey\nWhere was John Herbert Claiborne born?\tVirginia\nWhere was Vicente Gómez born?\tHonduras\nWhere was Luka Grubor born?\tZagreb\nWhere was Albert Pratz born?\tToronto\nWhere was Enrique Alciati born?\tMarseille\nWhere was William Schoell born?\tManhattan\nWhere was Sarah Mytton Maury born?\tLiverpool\nWhere was Francis Dunlap Gamewell born?\tCamden\nWhere was Álvaro Fillol born?\tSantiago\nWhere was Helen Longworth born?\tPreston\nWhere was Kip King born?\tChicago\nWhere was Riccardo Truccolo born?\tItaly\nWhere was George E. Waldo born?\tBrooklyn\nWhere was Jonathan Robinson born?\tWaterloo\nWhere was Lynne Cooke born?\tGeelong\nWhere was James Brown born?\tBlackburn\nWhere was George Kitching born?\tGuangzhou\nWhere was Rhoda Holmes Nicholls born?\tCoventry\nWhere was Virginia Leng born?\tMalta\nWhere was Mark Farmer born?\tLondon\nWhere was Frank Frankfort Moore born?\tLimerick\nWhere was Snorre Valen born?\tOslo\nWhere was George Mavrotas born?\tAthens\nWhere was Marco Napolioni born?\tRome\nWhere was Arne Rinnan born?\tOslo\nWhere was Maurice Tadadjeu born?\tCameroon\nWhere was John Hyacinth Power born?\tWaterford\nWhere was Lester Spangler born?\tBrook\nWhere was Robert Moss born?\tMelbourne\nWhere was Pierre deMorlaix born?\tFrance\nWhere was Linda Newell born?\tOregon\nWhere was Martin Malvy born?\tParis\nWhere was Maurice Vaïsse born?\tAlgiers\nWhere was Arnaldo Faustini born?\tRome\nWhere was Nat Patton born?\tTexas\nWhere was Samuel Dick born?\tNottingham\nWhere was Edward Webster Bemis born?\tSpringfield\nWhere was Lew Jetton born?\tHumboldt\nWhere was Axel Leonard Melander born?\tChicago\nWhere was John Mundy born?\tManchester\nWhere was Alex Garc%C3%ADa born?\tHavana\nWhere was Luis Mu%C3%B1oz born?\tGranada\nWhere was Franz Rosei born?\tVienna\nWhere was Tadeusz Browicz born?\tLviv\nWhere was Dave Berg born?\tPortland\nWhere was Dilawar Hussain born?\tLahore\nWhere was Herbert Sanders born?\tWolverhampton\nWhere was Nico Gardener born?\tRiga\nWhere was Victor Antoine Signoret born?\tParis\nWhere was John B. Foster born?\tGloucester\nWhere was Francis Allegra born?\tCleveland\nWhere was Wallace Bishop born?\tChicago\nWhere was Phil Lucas born?\tPhoenix\nWhere was Roy Dalgarno born?\tMelbourne\nWhere was Henry Woods born?\tBedford\nWhere was Diana Trask born?\tMelbourne\nWhere was Alec Briggs born?\tSheffield\nWhere was Lynne Kositsky born?\tMontreal\nWhere was Robert Boughey born?\tPennsylvania\nWhere was Cecil Copping born?\tLisbon\nWhere was Xavi Vallmajó born?\tBarcelona\nWhere was Graham Ackerman born?\tSeattle\nWhere was J.C. Patterson born?\tArmagh\nWhere was Lawrence Willis born?\tLafayette\nWhere was Elizabeth Forbes born?\tOttawa\nWhere was Izolda Barudžija born?\tSplit\nWhere was Rolf Schock born?\tFrance\nWhere was Joel Lion born?\tFrance\nWhere was Jean Baptiste Claude Chatelain born?\tParis\nWhere was Alejandro Rossi born?\tFlorence\nWhere was Peter Hoover born?\tCanada\nWhere was John Raven born?\tCambridge\nWhere was Alex González born?\tMiami\nWhere was John Smyth born?\tIreland\nWhere was Gabriel Desjardins born?\tMontreal\nWhere was Abhijit Kunte born?\tPune\nWhere was Mark Koevermans born?\tRotterdam\nWhere was Espen Giljane born?\tOslo\nWhere was William Harrison Courtney born?\tBaltimore\nWhere was David Mercer born?\tSwansea\nWhere was Princess Bee born?\tItaly\nWhere was Jeffrey H. Cohen born?\tBrooklyn\nWhere was Charles Alford born?\tSomerset\nWhere was Andrew Crofts born?\tEngland\nWhere was Marcus Tsutakawa born?\tSeattle\nWhere was Ken Fowler born?\tFargo\nWhere was Henry Robertson Hartley born?\tSouthampton\nWhere was Mark Cooksey born?\tEngland\nWhere was Janet Coster born?\tLondon\nWhere was Sun Lingfeng born?\tChina\nWhere was Ed Pizunski born?\tToronto\nWhere was Grant McNally born?\tVancouver\nWhere was Edward Locke born?\tEngland\nWhere was Zsolt Hamar born?\tBudapest\nWhere was Murray McEachern born?\tToronto\nWhere was Aboubacar Sankhare born?\tFrance\nWhere was David Marusek born?\tBuffalo\nWhere was Liljana Lu%C4%8Di%C4%87 born?\tBelgrade\nWhere was Enrico Toselli born?\tFlorence\nWhere was Walter Bowers Pillsbury born?\tBurlington\nWhere was John Butts born?\tCork\nWhere was John Cobbett born?\tEdinburgh\nWhere was Minas Gekos born?\tConstantinople\nWhere was Andrew Patterson born?\tBelfast\nWhere was Alexander Ferdinand von der Goltz born?\tPrussia\nWhere was Paul Keenan born?\tLisbon\nWhere was Barry Howard born?\tNottingham\nWhere was Mary Ann Kennedy born?\tGlasgow\nWhere was Bruno Arpaia born?\tNaples\nWhere was Simone Orlando born?\tVancouver\nWhere was Jazzy Jay born?\tBeaufort\nWhere was Binem Heller born?\tWarsaw\nWhere was Olivia Poulet born?\tLondon\nWhere was Christoph M. Schmidt born?\tCanberra\nWhere was Siamak Shayeghi born?\tIran\nWhere was Mike Shank born?\tColumbus\nWhere was Spiro Zavos born?\tWellington\nWhere was Tommie Lindsey born?\tOakland\nWhere was Aneesh Kapil born?\tWolverhampton\nWhere was Bijoy Goswami born?\tBangalore\nWhere was Henry Beecher Dierdorff born?\tSeville\nWhere was Samuel Barton born?\tVirginia\nWhere was John Augustus Stone born?\tConcord\nWhere was Thomas Rickner born?\tRochester\nWhere was Max Coyer born?\tHartford\nWhere was Serge Losique born?\tYugoslavia\nWhere was John B. Snook born?\tEngland\nWhere was Bódog Török born?\tBudapest\nWhere was Lawrence Townsend born?\tPhiladelphia\nWhere was Abdou Cherif born?\tCasablanca\nWhere was Joseph Paul Cretzer born?\tMinneapolis\nWhere was Gregory V. Palmer born?\tPhiladelphia\nWhere was Nathaniel Culverwell born?\tMiddlesex\nWhere was John Friedrich born?\tCalifornia\nWhere was Jean Trembley born?\tGeneva\nWhere was Giuseppe Simonelli born?\tNaples\nWhere was John Warrock born?\tRichmond\nWhere was Antonietta Pastori born?\tMilan\nWhere was Dhyanyogi Madhusudandas born?\tBihar\nWhere was Hiba Daniel born?\tLebanon\nWhere was Jacob Murey born?\tMoscow\nWhere was Emmy Verhey born?\tAmsterdam\nWhere was Alain Ehrenberg born?\tParis\nWhere was Santiago I%C3%B1iguez de Onzo%C3%B1o born?\tMadrid\nWhere was Aleksandra Romanić born?\tZagreb\nWhere was Gayathri Mudigonda born?\tIndia\nWhere was Robert E. Wright born?\tRochester\nWhere was Thomas Nassi born?\tAlbania\nWhere was Emanuel Brouwer born?\tAmsterdam\nWhere was Tariq Hashim born?\tBaghdad\nWhere was David Lake born?\tBangalore\nWhere was Frederick Ellsworth Mather born?\tWindsor\nWhere was Tim Davis born?\tMilwaukee\nWhere was Howard Griffiths born?\tSwansea\nWhere was Edward Raymond Neaher born?\tBrooklyn\nWhere was John Chillag born?\tVienna\nWhere was Rich Meyer born?\tCincinnati\nWhere was Neil Rackham born?\tEngland\nWhere was G%C3%B6khan Bozkaya born?\tGermany\nWhere was Martin Kratochvíl born?\tPrague\nWhere was Gaspard Terrasson born?\tLyon\nWhere was George Mudie born?\tEdinburgh\nWhere was Joseph Wilhelm Swoboda born?\tPrague\nWhere was John Metcalfe born?\tWellington\nWhere was Tim Long born?\tBrandon\nWhere was Gonzalo Pieres, Sr. born?\tArgentina\nWhere was Donald Kalish born?\tChicago\nWhere was Vladimir Georgiev born?\tSofia\nWhere was Yu Huili born?\tSichuan\nWhere was Alexandra Mazur born?\tMoscow\nWhere was Nicole Hackett born?\tSydney\nWhere was Carl Ludwig Brandt born?\tHolstein\nWhere was Aida Schlaepfer born?\tBaghdad\nWhere was Amy Neftzger born?\tIllinois\nWhere was Samuel Bourn the Elder born?\tDerby\nWhere was Hans Reiche born?\tBerlin\nWhere was Berthold Weisz born?\tBudapest\nWhere was Marcia Gygli King born?\tCleveland\nWhere was Edmund Hobhouse born?\tLondon\nWhere was Frederick Lewis Allen born?\tBoston\nWhere was Alice Robie Resnick born?\tErie\nWhere was Philip Sington born?\tCambridge\nWhere was Nick Conrad born?\tNorwich\nWhere was Anastasius I born?\tRome\nWhere was Ernst Friedrich born?\tParis\nWhere was Roy Sekoff born?\tMiami\nWhere was Samuel Rickard Christophers born?\tLiverpool\nWhere was David Schnitter born?\tNewark\nWhere was Jamie Moses born?\tIpswich\nWhere was Takeshi Maeda born?\tTokyo\nWhere was Brian Plummer born?\tSaskatchewan\nWhere was Joseph R. Chenelly born?\tRochester\nWhere was Brian Faloon born?\tBelfast\nWhere was Antonio Tosti born?\tRome\nWhere was Mehmet Ali İrtemçelik born?\tIstanbul\nWhere was Dmitry Grigorieff born?\tLondon\nWhere was Adolphe Cohn born?\tParis\nWhere was Alexander Hangerli born?\tIstanbul\nWhere was Lorne Rubenstein born?\tToronto\nWhere was Flemming Lassen born?\tCopenhagen\nWhere was James O'Mara born?\tLimerick\nWhere was Davis Gaines born?\tOrlando\nWhere was Donald W. Steinmetz born?\tMilwaukee\nWhere was Crist%C3%B3bal de Aguilar born?\tLima\nWhere was Rüdiger Frank born?\tLeipzig\nWhere was Edward Romilly born?\tLondon\nWhere was Essie Sakhai born?\tIran\nWhere was Francis W. Cushman born?\tBrighton\nWhere was Ursula Hoff born?\tLondon\nWhere was Carol Klimpel born?\tOntario\nWhere was Alec Statham born?\tCoventry\nWhere was Marianne Peretti born?\tParis\nWhere was Matteo Barzini born?\tRome\nWhere was Alejandro Abellan born?\tOttawa\nWhere was Douglas Simpson born?\tGlasgow\nWhere was Andrea Lekić born?\tBelgrade\nWhere was Danny Roxo born?\tPortugal\nWhere was Tommy Waidelich born?\tStockholm\nWhere was Hazard E. Reeves born?\tBaltimore\nWhere was Crystal Mangum born?\tDurham\nWhere was Andrea Giani born?\tNaples\nWhere was Clive Gee born?\tIreland\nWhere was Vincent A. Mahler born?\tChicago\nWhere was John Hawthorne born?\tSydney\nWhere was Miryana Ivanova Basheva born?\tSofia\nWhere was Mordehai Dubin born?\tRiga\nWhere was Matthew Hall McAllister born?\tSavannah\nWhere was Thomas Morland born?\tMontreal\nWhere was Leigh Diffey born?\tBrisbane\nWhere was Yuan Yufang born?\tBeijing\nWhere was Shahin Afrassiabi born?\tTehran\nWhere was Klaus Röder born?\tStuttgart\nWhere was Eric Swinkels born?\tBest\nWhere was Henry Hiles born?\tShrewsbury\nWhere was Gottfried Heinrich Bach born?\tLeipzig\nWhere was Silke Bodenbender born?\tBonn\nWhere was Frank Kaderabek born?\tChicago\nWhere was Ian Steel born?\tGlasgow\nWhere was Ebbe Hamerik born?\tCopenhagen\nWhere was Robert Lecou born?\tParis\nWhere was William Child born?\tBristol\nWhere was Edwin Edgar Voigt born?\tIllinois\nWhere was Tony Kaldas born?\tCairo\nWhere was Silvana Cruciata born?\tNaples\nWhere was Ernest Luxembourg Wright born?\tMassachusetts\nWhere was Vivion de Valera born?\tDublin\nWhere was Francis Montague Holl born?\tLondon\nWhere was Miguel García García born?\tBarcelona\nWhere was Charles Marston born?\tWolverhampton\nWhere was Barry Upton born?\tHastings\nWhere was Dave Hilton born?\tEngland\nWhere was Caleb H. Baumes born?\tBethlehem\nWhere was William Gifford Palgrave born?\tWestminster\nWhere was Hugh Fraser, 1st Baron Fraser of Allander born?\tGlasgow\nWhere was Matthew Taylor born?\tMiami\nWhere was Ed Rossbach born?\tChicago\nWhere was Augusto De Marsanich born?\tRome\nWhere was František Neuwirt born?\tPrague\nWhere was John Myres born?\tPreston\nWhere was John Marshall Evans born?\tVirginia\nWhere was Chad Hartigan born?\tCyprus\nWhere was Henry Bentley born?\tWestminster\nWhere was Manuel Su%C3%A1rez %C3%81vila born?\tTrinidad\nWhere was Juris Sokolovskis born?\tRiga\nWhere was Tommy Rustad born?\tOslo\nWhere was Rick Holbrook born?\tChicago\nWhere was Allan Stewart born?\tEdinburgh\nWhere was Stephen Codman born?\tNorwich\nWhere was John Arneil born?\tIndia\nWhere was Tomislav Smoljanović born?\tSplit\nWhere was Claire Ritter born?\tCharlotte\nWhere was Dino Wells born?\tChicago\nWhere was Eric Robson born?\tScotland\nWhere was Herbert J. Davenport born?\tVermont\nWhere was Dave Wood born?\tManchester\nWhere was Rob Shelby born?\tDetroit\nWhere was Jennifer Smith born?\tLisbon\nWhere was Mike Peden born?\tEdinburgh\nWhere was Richard Collins, Baron Collins born?\tDublin\nWhere was Alonso del Arco born?\tMadrid\nWhere was Ömer Kaner born?\tIstanbul\nWhere was Davor Sučić born?\tSarajevo\nWhere was Pa Neumüller born?\tStockholm\nWhere was Jeremiah H. Pierson born?\tNewark\nWhere was Walter Elliot born?\tEdinburgh\nWhere was Brent Rickles born?\tLondon\nWhere was John Mahaffy born?\tMontreal\nWhere was Sofia Scalchi born?\tTurin\nWhere was Petra Krug born?\tDresden\nWhere was Theron R. Strong born?\tSalisbury\nWhere was Sathyabhama Das Biju born?\tKerala\nWhere was Petar %C4%8Culi%C4%87 born?\tSplit\nWhere was Lev Leshchenko born?\tMoscow\nWhere was Jesper Nordin born?\tStockholm\nWhere was Martin Henriksson born?\tSweden\nWhere was John Chester Buttre born?\tAuburn\nWhere was Henry Duckworth born?\tBrandon\nWhere was Kaoru Kakudo born?\tJapan\nWhere was Antony Cooke born?\tSydney\nWhere was Michel Dovaz born?\tGeneva\nWhere was Ingrid Eide born?\tOslo\nWhere was Constantinos Decavallas born?\tAthens\nWhere was Thomas Reeve born?\tLangley\nWhere was Jörgen Dafgård born?\tGothenburg\nWhere was Shiva Boloorian born?\tTehran\nWhere was Georgina Kennard born?\tEdinburgh\nWhere was Alexandre Desgoffe born?\tParis\nWhere was Olaf Poulsen born?\tOslo\nWhere was Andrew Bell born?\tLondon\nWhere was Jack Curtner born?\tGreenville\nWhere was Rafael Garzón Rodríguez born?\tGranada\nWhere was Louis Joseph Coralie born?\tMauritius\nWhere was Carlo Fatuzzo born?\tGenoa\nWhere was Ernest E. Wood born?\tChico\nWhere was Robb Gravett born?\tLondon\nWhere was Anton Altmann born?\tVienna\nWhere was Réginald Bernut born?\tSydney\nWhere was Henry Hudson Kitson born?\tHuddersfield\nWhere was Frank P. Incropera born?\tLawrence\nWhere was Martin Wright born?\tGermany\nWhere was Rose Prince born?\tEngland\nWhere was William Doan born?\tMaine\nWhere was Stanis%C5%82awa Nowicka born?\tWarsaw\nWhere was Énemond Massé born?\tLyon\nWhere was Károly Varga born?\tBudapest\nWhere was David J. Eicher born?\tOxford\nWhere was Richard Corbould born?\tLondon\nWhere was Ethan Mordden born?\tPennsylvania\nWhere was Thomas Adams born?\tLondon\nWhere was Staffan de Mistura born?\tSweden\nWhere was Françoise Claustre born?\tParis\nWhere was Alejandro Colina born?\tCaracas\nWhere was Virginio Colombo born?\tMilan\nWhere was Franco Gentilesca born?\tBrooklyn\nWhere was Mehran Khaghani born?\tLondon\nWhere was Zhang Lei born?\tNanjing\nWhere was Desi Williams born?\tLondon\nWhere was Robert McCrindle born?\tGlasgow\nWhere was Christopher Benfield Carter born?\tMontreal\nWhere was Edward Isaac Ezra born?\tShanghai\nWhere was Steve Free born?\tPortsmouth\nWhere was Charles Reynolds Brown born?\tBethany\nWhere was Simon Cooke born?\tManchester\nWhere was Conyers Middleton born?\tRichmond\nWhere was Bo Weavil Jackson born?\tBirmingham\nWhere was Kay Lahusen born?\tCincinnati\nWhere was John O'Keefe born?\tWaterloo\nWhere was Jamal Jumá born?\tBaghdad\nWhere was Anwar Khan born?\tKarachi\nWhere was Laurence Stallings born?\tMacon\nWhere was Rick Lawson born?\tRaymond\nWhere was Diego Francisco Altamirano born?\tMadrid\nWhere was Eric Aarons born?\tSydney\nWhere was Charles Dixon born?\tLondon\nWhere was Johann Christoph Friedrich Klug born?\tBerlin\nWhere was Edwin Grant Dexter born?\tCalais\nWhere was Arthur Napoleão dos Santos born?\tPorto\nWhere was Edgar Sydney Little born?\tLondon\nWhere was Cedric Myton born?\tJamaica\nWhere was Robert Jankel born?\tLondon\nWhere was Jacqueline Carey born?\tCambridge\nWhere was William Presser born?\tMichigan\nWhere was Natallia Helakh born?\tBrest\nWhere was Yvette Higgins born?\tSydney\nWhere was Clement Payne born?\tTrinidad\nWhere was Dragoș Neagu born?\tBucharest\nWhere was Theodore Augustine Mann born?\tYorkshire\nWhere was Lloyd Turner born?\tAustralia\nWhere was Louise Christian born?\tOxford\nWhere was Silas Bowker born?\tConcord\nWhere was Penny Lernoux born?\tCalifornia\nWhere was Serge Postigo born?\tFrance\nWhere was Mary Lou Munts born?\tChicago\nWhere was Mitra Tabrizian born?\tTehran\nWhere was Zeng Fanyi born?\tShanghai\nWhere was Rani Price born?\tLiverpool\nWhere was Lorne Resnick born?\tToronto\nWhere was Fabrizio Marrella born?\tVenice\nWhere was Mónica Estarreado born?\tMadrid\nWhere was Catherine Wellesley, Duchess of Wellington born?\tDublin\nWhere was Oliver Lieb born?\tFrankfurt\nWhere was Jennifer Clulow born?\tGrimsby\nWhere was Regina Sarfaty born?\tRochester\nWhere was William C. Clark born?\tGreenwich\nWhere was Léonce Alloy born?\tParis\nWhere was W. T. Pfefferle born?\tHamilton\nWhere was Torgeir Micaelsen born?\tBergen\nWhere was Joseph Bennett born?\tGrimsby\nWhere was Frederick Gunton born?\tNorwich\nWhere was Zoran Popovich born?\tAkron\nWhere was Ángel Garma born?\tSpain\nWhere was Pernille Rose Gr%C3%B8nkj%C3%A6r born?\tDenmark\nWhere was Mohammed Loay Bayazid born?\tSyria\nWhere was Graph Nobel born?\tToronto\nWhere was Robert van der Zant born?\tQueensland\nWhere was Edward Duyker born?\tMelbourne\nWhere was Boris Grushin born?\tMoscow\nWhere was Sumalee Montano born?\tColumbus\nWhere was Juan Alfon born?\tToledo\nWhere was Claude Bourgelat born?\tLyon\nWhere was Henri de Contenson born?\tParis\nWhere was Morton Estrin born?\tBurlington\nWhere was Yasir Butt born?\tLahore\nWhere was Carlo Emery born?\tNaples\nWhere was Magnus Rosén born?\tGothenburg\nWhere was Alan Aboud born?\tDublin\nWhere was Zoltan Kósz born?\tBudapest\nWhere was Alistair Elliot born?\tLiverpool\nWhere was George Fisher born?\tFranklin\nWhere was Cleve Chaffin born?\tKentucky\nWhere was Sal Cannella born?\tNewark\nWhere was Sherry Kramer born?\tSpringfield\nWhere was Hendrick Andriessen born?\tAntwerp\nWhere was Carl Herman Kraeling born?\tBrooklyn\nWhere was Adolphus Drucker born?\tAmsterdam\nWhere was Eileen O'Keeffe born?\tKilkenny\nWhere was Deyan Vatchkov born?\tSofia\nWhere was André Léri born?\tParis\nWhere was Nicolás Antonio de Arredondo born?\tMadrid\nWhere was Aaron of Lincoln born?\tLincoln\nWhere was Martin Jervan born?\tTallinn\nWhere was Pankaj Dharmani born?\tDelhi\nWhere was Nick Dranias born?\tChicago\nWhere was John Abram born?\tEngland\nWhere was Laurent Petitguillaume born?\tTours\nWhere was Walter J. Mahoney born?\tBuffalo\nWhere was William Buik born?\tDundee\nWhere was Frank J. Webb born?\tPhiladelphia\nWhere was William Garnett born?\tLondon\nWhere was Sylvester Ahola born?\tGloucester\nWhere was Petras Geniušas born?\tVilnius\nWhere was Joy Katz born?\tNewark\nWhere was Michael Khodarkovsky born?\tOdessa\nWhere was Arthur N. Martin born?\tToronto\nWhere was Shibley Telhami born?\tIsrael\nWhere was Jim Berry born?\tOklahoma\nWhere was Joshua Toulmin Smith born?\tBirmingham\nWhere was Alain Boire born?\tMontreal\nWhere was Yash Daryanani born?\tChennai\nWhere was Marty Radovanic born?\tCleveland\nWhere was Sara Badr born?\tCairo\nWhere was Norbert Wissing born?\tAmsterdam\nWhere was Sergey Kozlov born?\tMoscow\nWhere was Michael Armstrong born?\tFrance\nWhere was Charles Crawford born?\tNashville\nWhere was Luděk Frýbort born?\tPrague\nWhere was Frédéric Durieux born?\tParis\nWhere was Fabian Francis born?\tDarwin\nWhere was Jan Szyszko born?\tWarsaw\nWhere was Nathalie De Vos born?\tGhent\nWhere was George Stone born?\tFulham\nWhere was Andy King born?\tVancouver\nWhere was John Randall Reding born?\tPortsmouth\nWhere was Peter F. Donnelly born?\tLynn\nWhere was Anton Foljambe born?\tChristchurch\nWhere was Bertie Felstead born?\tLondon\nWhere was Mary Cecil Allen born?\tMelbourne\nWhere was Kazimierz Flatau born?\tWarsaw\nWhere was Edward Schoeneck born?\tSyracuse\nWhere was Neal Peters McCurn born?\tSyracuse\nWhere was Alan MacDonald born?\tWatford\nWhere was Alby Why born?\tSydney\nWhere was Ben Nicholas born?\tAdelaide\nWhere was Michelle Rogers born?\tSalford\nWhere was Mark Gosling born?\tBirmingham\nWhere was Michel Frutschi born?\tGeneva\nWhere was Graham Doyle born?\tDublin\nWhere was Anne Audain born?\tAuckland\nWhere was Eugene A. Toepel born?\tBangor\nWhere was Benjamin Castleman born?\tEverett\nWhere was Harry W. Wellford born?\tMemphis\nWhere was Albertus Jonas Brandt born?\tAmsterdam\nWhere was Victor Krasin born?\tKiev\nWhere was Omar Abdel Aziz born?\tCairo\nWhere was Joe Ascione born?\tBrooklyn\nWhere was Liam McMahon born?\tIreland\nWhere was Martin Firrell born?\tFrance\nWhere was Ignacio Matte Blanco born?\tSantiago\nWhere was Marc Hostert born?\tLuxembourg\nWhere was Tom Kazas born?\tSydney\nWhere was Michael Brennan born?\tSydney\nWhere was Clinton D. McKinnon born?\tDallas\nWhere was Ronnie Le Drew born?\tToronto\nWhere was Simon Gerada born?\tMelbourne\nWhere was Michael Greco born?\tDunbar\nWhere was James Travers born?\tHamilton\nWhere was Carol Graham born?\tLima\nWhere was Valli Valli born?\tBerlin\nWhere was Francis Asbury Baker born?\tBaltimore\nWhere was Rafael E. Martinez born?\tCuba\nWhere was Arthur Barnett born?\tDunedin\nWhere was Antonia Okonma born?\tLondon\nWhere was Noush Skaugen born?\tSweden\nWhere was Roger Mears born?\tWichita\nWhere was Martin Gero born?\tSwitzerland\nWhere was John Duncombe born?\tLondon\nWhere was Chris Welsby born?\tExeter\nWhere was Harry Freedman born?\tLondon\nWhere was Bobby McDonald born?\tAberdeen\nWhere was Thomas Scott born?\tPennsylvania\nWhere was Luca Princiotta born?\tComo\nWhere was Christine Melnick born?\tWinnipeg\nWhere was Philippa Perry born?\tWarrington\nWhere was Thomas Webley born?\tBristol\nWhere was Luigi Attademo born?\tNaples\nWhere was Karolina Kosińska born?\tWarsaw\nWhere was Jacques Autreau born?\tParis\nWhere was Werner Ploberger born?\tVienna\nWhere was Ephraim Hertzano born?\tRomania\nWhere was Thomas Davidson born?\tNottingham\nWhere was Eileen Beldon born?\tBradford\nWhere was Edward Alfred Cowper born?\tLondon\nWhere was John Tierney born?\tDerry\nWhere was Norman Macdonnell born?\tPasadena\nWhere was Heinrich Hirschsprung born?\tCopenhagen\nWhere was David Vaughan born?\tLondon\nWhere was Gregory Woods born?\tEgypt\nWhere was Symeon Cosburn born?\tLondon\nWhere was Joanne Fox born?\tMelbourne\nWhere was Federico Cervelli born?\tMilan\nWhere was Al Lerner born?\tCleveland\nWhere was Rowley Leigh born?\tManchester\nWhere was Parvaz Mirza born?\tBirmingham\nWhere was Mark Mitchell born?\tAuckland\nWhere was Stuart Pearson Wright born?\tNorthampton\nWhere was Brett Warton born?\tSydney\nWhere was Fredrik Liliegren born?\tLund\nWhere was Gottlob Christian Storr born?\tStuttgart\nWhere was Donovan Blake born?\tJamaica\nWhere was Paula Malai Ali born?\tBrunei\nWhere was Joe Zakas born?\tIllinois\nWhere was Jason Colwell born?\tDublin\nWhere was Joachim Martin Falbe born?\tBerlin\nWhere was Malcolm Cecil born?\tLondon\nWhere was Lawrence Cherney born?\tPeterborough\nWhere was Morris Schwartz born?\tRussia\nWhere was Burkey Belser born?\tColumbia\nWhere was Carly Milne born?\tEdmonton\nWhere was Bill Utterback born?\tIllinois\nWhere was Marcello Vernola born?\tBari\nWhere was Barbara Clark born?\tAlberta\nWhere was Joseph Beer born?\tBohemia\nWhere was Humphrey Hopkin born?\tNottingham\nWhere was Albert Vizentini born?\tParis\nWhere was Herbert Bowden, Baron Aylestone born?\tCardiff\nWhere was Enid Bibby born?\tSheffield\nWhere was Chris Lyttle born?\tBelfast\nWhere was Émile Lévy born?\tParis\nWhere was Freddy Marshall born?\tCaracas\nWhere was Theodore G. Garfield born?\tHumboldt\nWhere was Cathy Sisler born?\tWisconsin\nWhere was Rusty Egan born?\tLondon\nWhere was Otto Mainzer born?\tFrankfurt\nWhere was Françoise Romand born?\tMarseille\nWhere was Iraj Kalantari Taleghani born?\tTehran\nWhere was Helen Thomas Dranga born?\tOxford\nWhere was Li Lei born?\tChina\nWhere was Randolph Runnels born?\tTexas\nWhere was Jeremy Current born?\tCharlotte\nWhere was Fuat Güner born?\tIstanbul\nWhere was William Reed born?\tMontreal\nWhere was Arthur Anae born?\tFiji\nWhere was Jacques Cartier born?\tQuebec\nWhere was Alexander Yossifov born?\tSofia\nWhere was Alireza Sheikhattar born?\tTehran\nWhere was Martin Brown born?\tMelbourne\nWhere was Victoria LePage born?\tMelbourne\nWhere was Nabil Seidah born?\tEgypt\nWhere was James Macdonald born?\tAberdeen\nWhere was Nigel Preston born?\tLondon\nWhere was William Hardy born?\tJamaica\nWhere was Richard S. Whaley born?\tCharleston\nWhere was Cillian Vallely born?\tArmagh\nWhere was Alfred Darjou born?\tParis\nWhere was Medo Martinello born?\tWindsor\nWhere was Georges Hanna Sabbagh born?\tAlexandria\nWhere was David Lister born?\tGrimsby\nWhere was Ely Devons born?\tBangor\nWhere was Kim Kuusi born?\tHelsinki\nWhere was Marek Muszyński born?\tLublin\nWhere was Peter Gregg born?\tKent\nWhere was Robin Hofman born?\tRotterdam\nWhere was Rufus Phillips born?\tVirginia\nWhere was John Wainwright born?\tAustralia\nWhere was Eugène Brieux born?\tParis\nWhere was Alexander Randall born?\tAnnapolis\nWhere was Hubert Buchberger born?\tFrankfurt\nWhere was Margaret Gwenver born?\tWilmington\nWhere was Donald B. Cole born?\tLawrence\nWhere was Paul Pope born?\tPhiladelphia\nWhere was Rem Urasin born?\tKazan\nWhere was Franz Ludwig Catel born?\tBerlin\nWhere was Samuel Löw Brill born?\tBudapest\nWhere was Lene B%C3%B8rglum born?\tDenmark\nWhere was Andrea Gallandi born?\tVenice\nWhere was Thomas Elliot Bowman III born?\tBrooklyn\nWhere was Thomas R. Fitzgerald born?\tChicago\nWhere was Thomas Taylor born?\tLondon\nWhere was Peter Cooper born?\tSalisbury\nWhere was Jimmy Greenspoon born?\tCalifornia\nWhere was Alessio Secco born?\tTurin\nWhere was Arnold Zable born?\tWellington\nWhere was Robert Bourne born?\tLondon\nWhere was Edmund Fetting born?\tWarsaw\nWhere was Johan Reuter born?\tCopenhagen\nWhere was William Keasberry born?\tLondon\nWhere was John Norton Pomeroy born?\tRochester\nWhere was Nadia Jebril born?\tSweden\nWhere was Ryan Burr born?\tPennsylvania\nWhere was Francesco Musotto born?\tPalermo\nWhere was Martin Vari born?\tArgentina\nWhere was Carlos Cosías born?\tBarcelona\nWhere was Barrie Thorne born?\tUtah\nWhere was Kate Richardson born?\tMelbourne\nWhere was Hyman I. Goldstein born?\tBaltimore\nWhere was Pierre Cartellier born?\tParis\nWhere was Lucius Vibullius Hipparchus born?\tAthens\nWhere was Kemal Alispahić born?\tSarajevo\nWhere was Serge Collot born?\tParis\nWhere was Carl Strehl born?\tBerlin\nWhere was Michael E. Driscoll born?\tSyracuse\nWhere was J%C3%B8rgen Sigurd Lien born?\tBergen\nWhere was Debra A. Kemp born?\tHighland\nWhere was Ralph Schoenman born?\tBrooklyn\nWhere was Gerrard Wendell Haworth born?\tNebraska\nWhere was Marion Stein born?\tVienna\nWhere was Maurice Maunoury born?\tAlexandria\nWhere was Valdo Spini born?\tFlorence\nWhere was Peter Stetina born?\tBoulder\nWhere was Tim McGill born?\tChicago\nWhere was Michael Colgrass born?\tChicago\nWhere was Vlad Georgescu born?\tBucharest\nWhere was Neil Williams born?\tCanada\nWhere was Diego Carranza born?\tMexico\nWhere was Augustus A. Bird born?\tVermont\nWhere was Gloria Mann born?\tPhiladelphia\nWhere was Orsamus B. Matteson born?\tVerona\nWhere was Lars Jonsson born?\tGothenburg\nWhere was Abraham Garton born?\tSpain\nWhere was Erik Dammann born?\tOslo\nWhere was Samuel S. Adams born?\tLincoln\nWhere was Laurent Boyer born?\tParis\nWhere was Michael Raedecker born?\tAmsterdam\nWhere was Robin Gillett born?\tLondon\nWhere was Gordon Coppuck born?\tFleet\nWhere was Marilyn Shrude born?\tChicago\nWhere was Regina Maršíková born?\tPrague\nWhere was Stanley Sporkin born?\tPhiladelphia\nWhere was Juan Carlos González Zamora born?\tCuba\nWhere was Salvatore Sabella born?\tSicily\nWhere was Gosia Piotrowska born?\tPoland\nWhere was Manola Saavedra born?\tSpain\nWhere was John Owens born?\tManchester\nWhere was Barbara Strass born?\tVienna\nWhere was Jacques Benedict born?\tChicago\nWhere was %C3%81lvarez de Paz born?\tToledo\nWhere was Andrzej Kunert born?\tWarsaw\nWhere was John Molyneux born?\tWarrington\nWhere was Maggie Fitzgibbon born?\tMelbourne\nWhere was Bruce Metcalf born?\tAmherst\nWhere was Janet Ramsey Johnson born?\tAdelaide\nWhere was Ien Ang born?\tJava\n"
  },
  {
    "path": "a5/birth_test_inputs.tsv",
    "content": "Where was Adam Bright born?\nWhere was Alan Hess born?\nWhere was Jacob Guptil Fletcher born?\nWhere was Hisham Mohd Ashour born?\nWhere was Toby Cockerell born?\nWhere was Gordon Copley born?\nWhere was Elie Rekhess born?\nWhere was Bert Ruiter born?\nWhere was Guillaume Couture born?\nWhere was Jack Smooth born?\nWhere was Rodney Cocks born?\nWhere was Kirsten Wenzel born?\nWhere was Miles Crowley born?\nWhere was Anne Clark born?\nWhere was Jack Garland born?\nWhere was Elsa Rastad Bråten born?\nWhere was Timothy Hoven born?\nWhere was James Mortimer born?\nWhere was Robert Burns born?\nWhere was Sebastian Dacey born?\nWhere was Marc Spackman born?\nWhere was Leopold Wenzel born?\nWhere was Avner W. Less born?\nWhere was Thibaut de Reimpré born?\nWhere was Rodney de Gruchy born?\nWhere was Matt Berg born?\nWhere was Thomas Blaikie born?\nWhere was Samuele Levi born?\nWhere was Charles Gilchrist Adams born?\nWhere was Alan Littlejohn born?\nWhere was Warren Spears born?\nWhere was William Egley born?\nWhere was Richard Ashrowan born?\nWhere was Nyncke Beekhuyzen born?\nWhere was Edwin Milton Abbott born?\nWhere was Robert Samuel Ross born?\nWhere was William Atherton born?\nWhere was Richard Armiger born?\nWhere was Siri Hall Arnøy born?\nWhere was Keith Haynes born?\nWhere was Kevin Burdette born?\nWhere was Eran Groumi born?\nWhere was Billy Treacy born?\nWhere was Abbondio Sangiorgio born?\nWhere was Richard Leigh born?\nWhere was Adrienn Bende born?\nWhere was Russell Taylor born?\nWhere was Antoine Verglas born?\nWhere was Orhan Demir born?\nWhere was Thomas B. Sheridan born?\nWhere was Heather Davis born?\nWhere was Alisa Arnah born?\nWhere was Marco Glaviano born?\nWhere was Jaime Vallvé born?\nWhere was Crowther Charlesworth born?\nWhere was Marc Van Montagu born?\nWhere was Neville Maxwell born?\nWhere was René Théodore Berthon born?\nWhere was Ha Sinan born?\nWhere was Wendy White born?\nWhere was Peter R%C3%B6sel born?\nWhere was Bernard Lloyd born?\nWhere was Fernando Lima Bello born?\nWhere was John Thomas Rochead born?\nWhere was Aaron Cleveland born?\nWhere was Elena Lev born?\nWhere was Mamta Baruah Herland born?\nWhere was Edward Kavanagh born?\nWhere was Matthew Walker born?\nWhere was Shahan Shahnour born?\nWhere was Bruno Campanella born?\nWhere was Armen Ayvazyan born?\nWhere was Scott Ambush born?\nWhere was David Hamill born?\nWhere was Drew Holcomb born?\nWhere was Albert Heinrich Brendel born?\nWhere was Henry Weekes born?\nWhere was Homer Curran born?\nWhere was Ian Prosser born?\nWhere was Claire Baxter born?\nWhere was Rose Prince born?\nWhere was Carl R. Chindblom born?\nWhere was Jules de Gaultier born?\nWhere was William Garland McQuarrie born?\nWhere was Robert Hetzron born?\nWhere was Brian Fairlie born?\nWhere was Fulvio Ballabio born?\nWhere was Diarmuid Scully born?\nWhere was C. Martin Wilbur born?\nWhere was Iren Marik born?\nWhere was Torraye Braggs born?\nWhere was Johanna Meier born?\nWhere was Giuseppe Giulietti born?\nWhere was Peter Lachmann born?\nWhere was Mirosław Maliszewski born?\nWhere was Fred M. Hechinger born?\nWhere was Adam Mamawala born?\nWhere was Richard Hudson born?\nWhere was Mir Khasim Ali born?\nWhere was Giacomo Gaggini born?\nWhere was Jerry Pettis born?\nWhere was Joshua Watson born?\nWhere was Roland Kitson, 3rd Baron Airedale born?\nWhere was Zak Carr born?\nWhere was Pierre Roland born?\nWhere was Luke Bullen born?\nWhere was Edward Brotherton born?\nWhere was Koichi Morita born?\nWhere was Jon Cone born?\nWhere was Alicia Plaza born?\nWhere was Albert Rudomine born?\nWhere was Winifred Nicholson born?\nWhere was George Brunner born?\nWhere was Hamilton Ward, Sr. born?\nWhere was Oliver Lanard Fassig born?\nWhere was Ira Vail born?\nWhere was Magdaléna Hajóssyová born?\nWhere was Emilio De Fabris born?\nWhere was Michel Bellemare born?\nWhere was John Littleton and Kate Vogel born?\nWhere was Reginald Brett, 2nd Viscount Esher born?\nWhere was Alison Waters born?\nWhere was Deepa Kaul born?\nWhere was Sophia Morrison born?\nWhere was S%C3%A9bastien Denis born?\nWhere was Joan Backes born?\nWhere was Robert E. Hopkins born?\nWhere was Shlomo Wolbe born?\nWhere was Knut Walbye born?\nWhere was John P. Allen born?\nWhere was Priya Thomas born?\nWhere was Jerzy Adamuszek born?\nWhere was Stephen Gould born?\nWhere was Nadia Zaffar born?\nWhere was Nick Karner born?\nWhere was Martin Emerich born?\nWhere was Paul Peterson born?\nWhere was Erick Noubissie born?\nWhere was Patrice Roy born?\nWhere was O'Chi Brown born?\nWhere was Jennifer Huppert born?\nWhere was Nicolas Moreton born?\nWhere was John Chorlton born?\nWhere was Lynda Blutreich born?\nWhere was William F. Brown born?\nWhere was Gabriel Caruana born?\nWhere was Leo C. Zeferetti born?\nWhere was Samuel Forde born?\nWhere was Stephanie Reaves born?\nWhere was Lovro Artukovi%C4%87 born?\nWhere was Edward Stotz born?\nWhere was Otto Eugen Schulz born?\nWhere was J. B. Jackson born?\nWhere was Tara Brabazon born?\nWhere was Lavrenti Ardaziani born?\nWhere was Frank R. Reid born?\nWhere was Murray Fraser born?\nWhere was Azman bin Abdullah born?\nWhere was Wolfgang Baur born?\nWhere was Oleg Strizhakov born?\nWhere was Nick Taylor born?\nWhere was Publius Annius Florus born?\nWhere was Calvin Fairbank born?\nWhere was John Donaldson born?\nWhere was Seymour Cocks born?\nWhere was Peter Bladen born?\nWhere was Charles Mickle born?\nWhere was Verna Allee born?\nWhere was Scott W. Skavdahl born?\nWhere was Martine Roure born?\nWhere was Alan Clayson born?\nWhere was Robin McNamara born?\nWhere was Michele Pace del Campidoglio born?\nWhere was Uche Okeke born?\nWhere was Satnam Rana born?\nWhere was Percy Elland born?\nWhere was George Glas born?\nWhere was Jerzy Jan Lerski born?\nWhere was Truman A. Merriman born?\nWhere was John Darwall born?\nWhere was Wendell White born?\nWhere was Borah Bergman born?\nWhere was Claude Couture born?\nWhere was Robert Allen born?\nWhere was Tazewell Ellett born?\nWhere was Richard Sheepshanks born?\nWhere was Bedük born?\nWhere was Jonathan Hazard born?\nWhere was Ajit Ninan born?\nWhere was Gilles Latulippe born?\nWhere was Pierce Galliard Smith born?\nWhere was James Kinlay born?\nWhere was Aytaç Biter born?\nWhere was Richard Rood born?\nWhere was Balthazar Armas born?\nWhere was Mohammed Wali Zazi born?\nWhere was Bob Rockwell born?\nWhere was Louis Antonelli born?\nWhere was Susan Krieg born?\nWhere was Michael Matus born?\nWhere was Mohammad Aslam born?\nWhere was Bahar Movahed Bashiri born?\nWhere was Daniel Chapman Stillson born?\nWhere was Erich Werdermann born?\nWhere was Charles Mayo born?\nWhere was Leon Athanese Gosselin born?\nWhere was Rosario Marciano born?\nWhere was Hannan Sarkar born?\nWhere was Simon Bowman born?\nWhere was John Lewis Thomas born?\nWhere was Seth Lipsky born?\nWhere was Elizabeth Hess born?\nWhere was Susan Oki Mollway born?\nWhere was Judy Dunaway born?\nWhere was John Hindle born?\nWhere was Serenus the Gardener born?\nWhere was Dean Sullivan born?\nWhere was Aarne Ruben born?\nWhere was Samuel Campbell born?\nWhere was Nabil Kanso born?\nWhere was Kurt Hitke born?\nWhere was Charles Hastings Doyle born?\nWhere was Gyles Brandreth born?\nWhere was Gérard Granel born?\nWhere was Javed Akhtar born?\nWhere was Emilio Menéndez born?\nWhere was Ghulam Abbas born?\nWhere was John Allen Gable born?\nWhere was Leon Bass born?\nWhere was Anna Akhsharumova born?\nWhere was Thomas Francis Brennan born?\nWhere was Martin I. Townsend born?\nWhere was Marisa Masullo born?\nWhere was Rachel Annand Taylor born?\nWhere was Mark Michalowski born?\nWhere was Yisroel Meir Gabbai born?\nWhere was Bill Endicott born?\nWhere was Alexander Whitaker born?\nWhere was Hayden Turner born?\nWhere was Gus Menos born?\nWhere was Maria Rose born?\nWhere was Norbert Francis Attard born?\nWhere was Elijah Wadsworth born?\nWhere was Pasquale Conte born?\nWhere was Tom Maniatis born?\nWhere was Donald McGauchie born?\nWhere was François Maspero born?\nWhere was Bruce Pennington born?\nWhere was John Baptist Collins born?\nWhere was John Eaton born?\nWhere was Gail Sidonie Sobat born?\nWhere was Tommaso Marconi born?\nWhere was Virginio Ferrari born?\nWhere was Stephen K. Benjamin born?\nWhere was Felix von Kraus born?\nWhere was Johnny Kemp born?\nWhere was Loredana Errore born?\nWhere was Konstantine Vardzelashvili born?\nWhere was Moritz Wilhelm Drobisch born?\nWhere was Pierre Henri Joseph Baume born?\nWhere was Linda Crockett born?\nWhere was Elsa Lunghini born?\nWhere was Janil Puthucheary born?\nWhere was Luciano Caruso born?\nWhere was Matteo Barbini born?\nWhere was Donald Steven born?\nWhere was Gord Simpson born?\nWhere was François Lehideux born?\nWhere was Geoffrey Alderman born?\nWhere was Karl Sarafidis born?\nWhere was Béla Glattfelder born?\nWhere was Samuel Magaw born?\nWhere was Gary Callander born?\nWhere was Craig Richards born?\nWhere was Mohammed A. Aldouri born?\nWhere was Rich McNanna born?\nWhere was Marcel Faribault born?\nWhere was Adolf Patera born?\nWhere was Auguste Georges Darzens born?\nWhere was Ivan Triesault born?\nWhere was Tom Arnold born?\nWhere was Ernest Kent Coulter born?\nWhere was Mary Scott born?\nWhere was Edmundo Farolan born?\nWhere was Lyndsey Rodrigues born?\nWhere was Kelly Hardie born?\nWhere was A. H. Raskin born?\nWhere was Ammar Eloueini born?\nWhere was Ross Batty born?\nWhere was Christopher Manson born?\nWhere was Jane Stanford born?\nWhere was Leonard D. Wexler born?\nWhere was George Zarkadakis born?\nWhere was Moira von Wright born?\nWhere was William Baldé born?\nWhere was Lisa Kindred born?\nWhere was Walter Carringer born?\nWhere was Augusto Huaman Velasco born?\nWhere was Warren Carlyle born?\nWhere was Joe Warham born?\nWhere was Michael Prince born?\nWhere was Mischa Hiller born?\nWhere was Anton Muscatelli born?\nWhere was Didier André born?\nWhere was George Rothera born?\nWhere was Monica Groop born?\nWhere was Lo%C3%AFc Jouannigot born?\nWhere was Keith Wiggins born?\nWhere was Thomas Y. Howe, Jr. born?\nWhere was Steve Miller born?\nWhere was Geno Arce born?\nWhere was Andy Buist born?\nWhere was Todd Jay Weinstein born?\nWhere was Thomas McGreevy born?\nWhere was Martin Zobel born?\nWhere was Keppel Harcourt Barnard born?\nWhere was Bill Kaiserman born?\nWhere was Arthur Yoria born?\nWhere was John Skoyles born?\nWhere was Stéphan Perrot born?\nWhere was Gijs Vermeulen born?\nWhere was Jill Crossland born?\nWhere was Andrej Šeban born?\nWhere was Andrei Babitsky born?\nWhere was Elizabeth Cooper born?\nWhere was Sim%C3%B3n Moret Gallart born?\nWhere was Marvin Delph born?\nWhere was Daniel Rosenfeld born?\nWhere was George Smith born?\nWhere was Suzie Malone born?\nWhere was Terence O'Brien born?\nWhere was Frank Edwards born?\nWhere was Ambalavaner Sivanandan born?\nWhere was Konstantin Matusevich born?\nWhere was Moshe Shekel born?\nWhere was Leo Fernandez born?\nWhere was Norman Mann born?\nWhere was Tariq Iqbal born?\nWhere was Ludvig Drescher born?\nWhere was Cliff Bergere born?\nWhere was John Benjamin Henck born?\nWhere was Jason Pyrah born?\nWhere was Gareth Russell born?\nWhere was Alan Fisher born?\nWhere was Roger Sinclair Aytoun born?\nWhere was Robert Owens born?\nWhere was Josh Quittner born?\nWhere was John Bernhard born?\nWhere was Douglas Paulson born?\nWhere was J. J. Stevenson born?\nWhere was Kajsa Kling born?\nWhere was Charles Schreiber born?\nWhere was Adam Macrow born?\nWhere was Alwina Valleria born?\nWhere was James Lomax Bardsley born?\nWhere was Bernie Lowe born?\nWhere was Hakim Toumi born?\nWhere was Richard West born?\nWhere was John Bayard McPherson born?\nWhere was Stephen William White born?\nWhere was A. F. Kidd born?\nWhere was John Milne Bramwell born?\nWhere was Lew Stringer born?\nWhere was George Russell French born?\nWhere was Tsotne Bakuria born?\nWhere was Thomas Kirk born?\nWhere was Theophilus de Garencières born?\nWhere was Christian Johansson born?\nWhere was Ruth Fuller Sasaki born?\nWhere was Diego Nargiso born?\nWhere was Keith Butler born?\nWhere was Richie Dent born?\nWhere was Jamielee McPherson born?\nWhere was Derek Coughlan born?\nWhere was Anita Håkenstad born?\nWhere was David Scott Milton born?\nWhere was Alfred Downward born?\nWhere was Christos Sirros born?\nWhere was George Jewett born?\nWhere was Randolph Colville born?\nWhere was William Lawrence Tower born?\nWhere was Lowell Cauffiel born?\nWhere was Luis Simarro Lacabra born?\nWhere was Rui Tavares born?\nWhere was Giambattista Nolli born?\nWhere was Lee Blackett born?\nWhere was Sergio Benvindo Junior born?\nWhere was Spencer Wishart born?\nWhere was Mila Iskrenova born?\nWhere was Dave Marsh born?\nWhere was Maria von Welser born?\nWhere was Arthur Savage born?\nWhere was Kim Bauermeister born?\nWhere was Ye Xuanping born?\nWhere was Niculae Conovici born?\nWhere was John O'Conor born?\nWhere was Georgy Ketoyev born?\nWhere was Will Zens born?\nWhere was Adrian Bowyer born?\nWhere was Inge Israel born?\nWhere was Ernest Peter Burger born?\nWhere was Jane Bathori born?\nWhere was Paul Willis born?\nWhere was Henry Ussher born?\nWhere was John Ridley Mitchell born?\nWhere was Jane Henschel born?\nWhere was Philip King born?\nWhere was Spencer Bonfiglio born?\nWhere was Ernst Witebsky born?\nWhere was Clive Bubb born?\nWhere was Khashayar Karimian born?\nWhere was Mary Macmaster born?\nWhere was Robert Aldridge born?\nWhere was Ronald Pearson Tripp born?\nWhere was Loukas Sideras born?\nWhere was Terry Martin born?\nWhere was Andrew Waterman born?\nWhere was John Cameron born?\nWhere was Charles Follen Adams born?\nWhere was Elizabeth Kay born?\nWhere was Darren Dowling born?\nWhere was Thomas Haughey born?\nWhere was Jan Čulík born?\nWhere was Scott Cleverdon born?\nWhere was Emmanuel Hocquard born?\nWhere was Blaine Marchand born?\nWhere was Cherry Wilder born?\nWhere was David L. Heymann born?\nWhere was Sam Holden born?\nWhere was Javeria Abbasi born?\nWhere was Imre Zachár born?\nWhere was Godfrey Douglas Giles born?\nWhere was Marcel Bertrand born?\nWhere was Nick Philip born?\nWhere was Brendan Guilfoyle born?\nWhere was Han Zhidong born?\nWhere was Gerald Palmer born?\n"
  },
  {
    "path": "a5/collect_submission.sh",
    "content": "rm -f assignment5_submission.zip\nzip -r assignment5_submission.zip src/ birth_dev.tsv birth_places_train.tsv wiki.txt vanilla.model.params vanilla.finetune.params synthesizer.finetune.params vanilla.nopretrain.dev.predictions vanilla.nopretrain.test.predictions vanilla.pretrain.dev.predictions vanilla.pretrain.test.predictions synthesizer.pretrain.dev.predictions synthesizer.pretrain.test.predictions\n"
  },
  {
    "path": "a5/d_cmd",
    "content": "# Train on the names dataset\npython src/run.py finetune vanilla wiki.txt --writing_params_path vanilla.model.params --finetune_corpus_path birth_places_train.tsv\n\n# Evaluate on the dev set, writing out predictions\npython src/run.py evaluate vanilla wiki.txt --reading_params_path vanilla.model.params --eval_corpus_path birth_dev.tsv --outputs_path vanilla.nopretrain.dev.predictions\n\n# Evaluate on the test set, writing out predictions\npython src/run.py evaluate vanilla wiki.txt --reading_params_path vanilla.model.params --eval_corpus_path birth_test_inputs.tsv --outputs_path vanilla.nopretrain.test.predictions"
  },
  {
    "path": "a5/f_cmd",
    "content": "# Pretrain the model\npython src/run.py pretrain vanilla wiki.txt --writing_params_path vanilla.pretrain.params\n\n# Finetune the model\npython src/run.py finetune vanilla wiki.txt --reading_params_path vanilla.pretrain.params --writing_params_path vanilla.finetune.params --finetune_corpus_path birth_places_train.tsv\n\n# Evaluate on the dev set; write to disk\npython src/run.py evaluate vanilla wiki.txt --reading_params_path vanilla.finetune.params --eval_corpus_path birth_dev.tsv --outputs_path vanilla.pretrain.dev.predictions\n\n# Evaluate on the test set; write to disk\npython src/run.py evaluate vanilla wiki.txt --reading_params_path vanilla.finetune.params --eval_corpus_path birth_test_inputs.tsv --outputs_path vanilla.pretrain.test.predictions"
  },
  {
    "path": "a5/g_cmd",
    "content": "# Pretrain the model\npython src/run.py pretrain synthesizer wiki.txt --writing_params_path synthesizer.pretrain.params \n\n# Finetune the model\npython src/run.py finetune synthesizer wiki.txt --reading_params_path synthesizer.pretrain.params --writing_params_path synthesizer.finetune.params --finetune_corpus_path birth_places_train.tsv\n\n# Evaluate on the dev set; write to disk\npython src/run.py evaluate synthesizer wiki.txt --reading_params_path synthesizer.finetune.params --eval_corpus_path birth_dev.tsv \\\n--outputs_path synthesizer.pretrain.dev.predictions\n\n# Evaluate on the test set; write to disk\npython src/run.py evaluate synthesizer wiki.txt --reading_params_path synthesizer.finetune.params --eval_corpus_path birth_test_inputs.tsv --outputs_path synthesizer.pretrain.test.predictions"
  },
  {
    "path": "a5/mingpt-demo/.ipynb_checkpoints/play_char-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Train a character-level GPT on some text data\\n\",\n    \"\\n\",\n    \"The inputs here are simple text files, which we chop up to individual characters and then train GPT on. So you could say this is a char-transformer instead of a char-rnn. Doesn't quite roll off the tongue as well. In this example we will feed it some Shakespeare, which we'll get it to predict character-level.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# set up logging\\n\",\n    \"import logging\\n\",\n    \"logging.basicConfig(\\n\",\n    \"        format=\\\"%(asctime)s - %(levelname)s - %(name)s -   %(message)s\\\",\\n\",\n    \"        datefmt=\\\"%m/%d/%Y %H:%M:%S\\\",\\n\",\n    \"        level=logging.INFO,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# make deterministic\\n\",\n    \"from mingpt.utils import set_seed\\n\",\n    \"set_seed(42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"from torch.nn import functional as F\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import math\\n\",\n    \"from torch.utils.data import Dataset\\n\",\n    \"\\n\",\n    \"class CharDataset(Dataset):\\n\",\n    \"\\n\",\n    \"    def __init__(self, data, block_size):\\n\",\n    \"        chars = sorted(list(set(data)))\\n\",\n    \"        data_size, vocab_size = len(data), len(chars)\\n\",\n    \"        print('data has %d characters, %d unique.' % (data_size, vocab_size))\\n\",\n    \"        \\n\",\n    \"        self.stoi = { ch:i for i,ch in enumerate(chars) }\\n\",\n    \"        self.itos = { i:ch for i,ch in enumerate(chars) }\\n\",\n    \"        self.block_size = block_size\\n\",\n    \"        self.vocab_size = vocab_size\\n\",\n    \"        self.data = data\\n\",\n    \"    \\n\",\n    \"    def __len__(self):\\n\",\n    \"        return len(self.data) - self.block_size\\n\",\n    \"\\n\",\n    \"    def __getitem__(self, idx):\\n\",\n    \"        # grab a chunk of (block_size + 1) characters from the data\\n\",\n    \"        chunk = self.data[idx:idx + self.block_size + 1]\\n\",\n    \"        # encode every character to an integer\\n\",\n    \"        dix = [self.stoi[s] for s in chunk]\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        arrange data and targets so that the first i elements of x\\n\",\n    \"        will be asked to predict the i-th element of y. Notice that\\n\",\n    \"        the eventual language model will actually make block_size\\n\",\n    \"        individual predictions at the same time based on this data,\\n\",\n    \"        so we are being clever and amortizing the cost of the forward\\n\",\n    \"        pass of the network. So for example if block_size is 4, then\\n\",\n    \"        we could e.g. sample a chunk of text \\\"hello\\\", the integers in\\n\",\n    \"        x will correspond to \\\"hell\\\" and in y will be \\\"ello\\\". This will\\n\",\n    \"        then actually \\\"multitask\\\" 4 separate examples at the same time\\n\",\n    \"        in the language model:\\n\",\n    \"        - given just \\\"h\\\", please predict \\\"e\\\" as next\\n\",\n    \"        - given \\\"he\\\" please predict \\\"l\\\" next\\n\",\n    \"        - given \\\"hel\\\" predict \\\"l\\\" next\\n\",\n    \"        - given \\\"hell\\\" predict \\\"o\\\" next\\n\",\n    \"        \\n\",\n    \"        In addition, because the DataLoader will create batches of examples,\\n\",\n    \"        every forward/backward pass during traning will simultaneously train\\n\",\n    \"        a LOT of predictions, amortizing a lot of computation. In particular,\\n\",\n    \"        for a batched input of integers X (B, T) where B is batch size and\\n\",\n    \"        T is block_size and Y (B, T), the network will during training be\\n\",\n    \"        simultaneously training to make B*T predictions, all at once! Of course,\\n\",\n    \"        at test time we can paralellize across batch B, but unlike during training\\n\",\n    \"        we cannot parallelize across the time dimension T - we have to run\\n\",\n    \"        a forward pass of the network to recover the next single character of the \\n\",\n    \"        sequence along each batch dimension, and repeatedly always feed in a next\\n\",\n    \"        character to get the next one.\\n\",\n    \"        \\n\",\n    \"        So yes there is a big asymmetry between train/test time of autoregressive\\n\",\n    \"        models. During training we can go B*T at a time with every forward pass,\\n\",\n    \"        but during test time we can only go B at a time, T times, with T forward \\n\",\n    \"        passes.\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        x = torch.tensor(dix[:-1], dtype=torch.long)\\n\",\n    \"        y = torch.tensor(dix[1:], dtype=torch.long)\\n\",\n    \"        return x, y\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"block_size = 128 # spatial extent of the model for its context\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"data has 1115394 characters, 65 unique.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# you can download this file at https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt\\n\",\n    \"text = open('input.txt', 'r').read() # don't worry we won't run out of file handles\\n\",\n    \"train_dataset = CharDataset(text, block_size) # one line of poem is roughly 50 characters\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"08/24/2020 22:59:58 - INFO - mingpt.model -   number of parameters: 2.535219e+07\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"from mingpt.model import GPT, GPTConfig\\n\",\n    \"mconf = GPTConfig(train_dataset.vocab_size, train_dataset.block_size,\\n\",\n    \"                  n_layer=8, n_head=8, n_embd=512)\\n\",\n    \"model = GPT(mconf)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"  0%|          | 0/2179 [00:00<?, ?it/s]/apcv/shared/conda-envs/apcv-6244e1d-566/lib/python3.8/site-packages/torch/nn/parallel/_functions.py:61: UserWarning: Was asked to gather along dimension 0, but all input tensors were scalars; will instead unsqueeze and return a vector.\\n\",\n      \"  warnings.warn('Was asked to gather along dimension 0, but all '\\n\",\n      \"epoch 1 iter 2178: train loss 0.33318. lr 3.000169e-04: 100%|██████████| 2179/2179 [09:22<00:00,  3.88it/s]\\n\",\n      \"epoch 2 iter 2178: train loss 0.17447. lr 6.000000e-05: 100%|██████████| 2179/2179 [08:45<00:00,  4.15it/s]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"from mingpt.trainer import Trainer, TrainerConfig\\n\",\n    \"\\n\",\n    \"# initialize a trainer instance and kick off training\\n\",\n    \"tconf = TrainerConfig(max_epochs=2, batch_size=512, learning_rate=6e-4,\\n\",\n    \"                      lr_decay=True, warmup_tokens=512*20, final_tokens=2*len(train_dataset)*block_size,\\n\",\n    \"                      num_workers=4)\\n\",\n    \"trainer = Trainer(model, train_dataset, None, tconf)\\n\",\n    \"trainer.train()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"O God, O God! that e'er this tongue of mine,\\n\",\n      \"That laid the sentence of dread banishment\\n\",\n      \"On yon proud man, should take it off again\\n\",\n      \"With words of sooth! O that I were as great\\n\",\n      \"As is my grief, or lesser than my name!\\n\",\n      \"Or that I could forget\\n\",\n      \"With Richmond, I'll tell you what I am,\\n\",\n      \"The Lord Aumerle, .\\n\",\n      \"\\n\",\n      \"CLAUDIO:\\n\",\n      \"The prenzie Angelo!\\n\",\n      \"\\n\",\n      \"ISABELLA:\\n\",\n      \"O, 'tis the cunning livery of hell,\\n\",\n      \"The damned'st body to invest and cover\\n\",\n      \"In prenzie guards! Dost thou think, Claudio?\\n\",\n      \"If I would yield him my virginity,\\n\",\n      \"Thou mightst be freed.\\n\",\n      \"\\n\",\n      \"CLAUDIO:\\n\",\n      \"O heavens! it cannot be.\\n\",\n      \"\\n\",\n      \"ISABELLA:\\n\",\n      \"Yes, he would give't thee, from this rank offence,\\n\",\n      \"So to offend him still. This night's the time\\n\",\n      \"That I should do what I abhor to name,\\n\",\n      \"Or else thou diest to-morrow.\\n\",\n      \"\\n\",\n      \"CLAUDIO:\\n\",\n      \"Thou shalt not do't.\\n\",\n      \"\\n\",\n      \"ISABELLA:\\n\",\n      \"O, were it but my life,\\n\",\n      \"I'ld throw it down for your deliverance\\n\",\n      \"As frankly as a pin.\\n\",\n      \"\\n\",\n      \"CLAUDIO:\\n\",\n      \"Thanks, dear Isabel.\\n\",\n      \"\\n\",\n      \"ISABELLA:\\n\",\n      \"Be ready, Claudio, for your death tomorrow.\\n\",\n      \"\\n\",\n      \"CLAUDIO:\\n\",\n      \"Yes. Has he affections\\n\",\n      \"That profit us.\\n\",\n      \"\\n\",\n      \"DUKE VINCENTIO:\\n\",\n      \"By the world they see the word in 's doom.\\n\",\n      \"\\n\",\n      \"ANGELO:\\n\",\n      \"Thou art the like, thus hate the course in heaven.\\n\",\n      \"What foul hath bled the wheel or at wild,\\n\",\n      \"And wash him fresh again with true-love tears.\\n\",\n      \"Ah, thou, the model where old Troy did stand,\\n\",\n      \"Thou map of honour, thou King Richard's tomb,\\n\",\n      \"And not King Richard; thou most beauteous inn,\\n\",\n      \"Why should hard-favour'd grief be lodged in thee,\\n\",\n      \"When triumph is become an alehouse guest?\\n\",\n      \"\\n\",\n      \"KING RICHARD II:\\n\",\n      \"Join not with grief, fair woman, do not so,\\n\",\n      \"To make my end too sudden: learn, good soul,\\n\",\n      \"To think our former state a happy dream;\\n\",\n      \"From which awaked, the truth of what we are\\n\",\n      \"Shows us but this: I am sworn brother, sweet,\\n\",\n      \"To grim Necessity, and he and I\\n\",\n      \"Will keep a league till death. Hie thee to France\\n\",\n      \"And cloister thee in some religious house:\\n\",\n      \"Our holy lives must win a new world's crown,\\n\",\n      \"Which our profane hours here have stricken down.\\n\",\n      \"\\n\",\n      \"QUEEN:\\n\",\n      \"What, is my Richard both in shape and mind\\n\",\n      \"Transform'd and weaken'd? hath Bolingbroke deposed\\n\",\n      \"Thine intellect? hath h\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# alright, let's sample some character-level Shakespeare\\n\",\n    \"from mingpt.utils import sample\\n\",\n    \"\\n\",\n    \"context = \\\"O God, O God!\\\"\\n\",\n    \"x = torch.tensor([train_dataset.stoi[s] for s in context], dtype=torch.long)[None,...].to(trainer.device)\\n\",\n    \"y = sample(model, x, 2000, temperature=1.0, sample=True, top_k=10)[0]\\n\",\n    \"completion = ''.join([train_dataset.itos[int(i)] for i in y])\\n\",\n    \"print(completion)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# well that was fun\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.7.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "a5/mingpt-demo/LICENSE",
    "content": "The MIT License (MIT) Copyright (c) 2020 Andrej Karpathy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "a5/mingpt-demo/README.md",
    "content": "\n# minGPT\n\n![mingpt](mingpt.jpg)\n\nA PyTorch re-implementation of [GPT](https://github.com/openai/gpt-3) training. minGPT tries to be small, clean, interpretable and educational, as most of the currently available ones are a bit sprawling. GPT is not a complicated model and this implementation is appropriately about 300 lines of code, including boilerplate and a totally unnecessary custom causal self-attention module. Anyway, all that's going on is that a sequence of indices goes into a sequence of transformer blocks, and a probability distribution of the next index comes out. The rest of the complexity is just being clever with batching (both across examples and over sequence length) so that training is efficient.\n\nThe core minGPT \"library\" (hah) is two files: `mingpt/model.py` contains the actual Transformer model definition and `mingpt/trainer.py` is (GPT-independent) PyTorch boilerplate that trains the model. The attached Jupyter notebooks then show how the \"library\" (hah) can be used to train sequence models:\n\n- `play_math.ipynb` trains a GPT focused on addition (inspired by the addition section in the GPT-3 paper)\n- `play_char.ipynb` trains a GPT to be a character-level language model on arbitrary text, similar to my older char-rnn but with a transformer instead of an RNN\n- `play_image.ipynb` trains a GPT on (small) images (CIFAR-10), showing that we can model images just as text, as both can be reduced to just a sequence of integers\n- `play_words.ipynb` a BPE version that does not yet exist\n\nWith a bpe encoder, distributed training and maybe fp16 this implementation may be able to reproduce GPT-1/GPT-2 results, though I haven't tried $$$. GPT-3 is likely out of reach as my understanding is that it does not fit into GPU memory and requires a more careful model-parallel treatment.\n\n### Example usage\n\nThis code is simple enough to just hack inline, not \"used\", but current API looks something like:\n\n```python\n\n# you're on your own to define a class that returns individual examples as PyTorch LongTensors\nfrom torch.utils.data import Dataset\ntrain_dataset = MyDataset(...)\ntest_dataset = MyDataset(...)\n\n# construct a GPT model\nfrom mingpt.model import GPT, GPTConfig\nmconf = GPTConfig(vocab_size, block_size, n_layer=12, n_head=12, n_embd=768) # a GPT-1\nmodel = GPT(mconf)\n\n# construct a trainer\nfrom mingpt.trainer import Trainer, TrainerConfig\ntconf = TrainerConfig(max_epochs=10, batch_size=256)\ntrainer = Trainer(model, train_dataset, test_dataset, tconf)\ntrainer.train()\n# (... enjoy the show for a while... )\n\n# sample from the model (the [None, ...] and [0] are to push/pop a needed dummy batch dimension)\nfrom mingpt.utils import sample\nx = torch.tensor([1, 2, 3], dtype=torch.long)[None, ...] # context conditioning\ny = sample(model, x, steps=30, temperature=1.0, sample=True, top_k=5)[0]\nprint(y) # our model filled in the integer sequence with 30 additional likely integers\n```\n\n### References\n\nCode:\n\n- [openai/gpt-2](https://github.com/openai/gpt-2) has the model but not the training code, and in TensorFlow\n- [openai/image-gpt](https://github.com/openai/image-gpt) has some more modern gpt-3 like modification in its code, good reference as well\n- huggingface/transformers has a [language-modeling example](https://github.com/huggingface/transformers/tree/master/examples/language-modeling). It is full-featured but as a result also somewhat challenging to trace. E.g. some large functions have as much as 90% unused code behind various branching statements that is unused in the default setting of simple language modeling.\n\nPapers + some implementation notes:\n\n#### Improving Language Understanding by Generative Pre-Training (GPT-1)\n\n- Our model largely follows the original transformer work\n- We trained a 12-layer decoder-only transformer with masked self-attention heads (768 dimensional states and 12 attention heads). For the position-wise feed-forward networks, we used 3072 dimensional inner states.\n- Adam max learning rate of 2.5e-4. (later GPT-3 for this model size uses 6e-4)\n- LR decay: increased linearly from zero over the first 2000 updates and annealed to 0 using a cosine schedule\n- We train for 100 epochs on minibatches of 64 randomly sampled, contiguous sequences of 512 tokens.\n- Since layernorm is used extensively throughout the model, a simple weight initialization of N(0, 0.02) was sufficient\n- bytepair encoding (BPE) vocabulary with 40,000 merges\n- residual, embedding, and attention dropouts with a rate of 0.1 for regularization.\n- modified version of L2 regularization proposed in (37), with w = 0.01 on all non bias or gain weights\n- For the activation function, we used the Gaussian Error Linear Unit (GELU).\n- We used learned position embeddings instead of the sinusoidal version proposed in the original work\n- For finetuning: We add dropout to the classifier with a rate of 0.1. learning rate of 6.25e-5 and a batchsize of 32. 3 epochs. We use a linear learning rate decay schedule with warmup over 0.2% of training. λ was set to 0.5.\n- GPT-1 model is 12 layers and d_model 768, ~117M params\n\n#### Language Models are Unsupervised Multitask Learners (GPT-2)\n\n- LayerNorm was moved to the input of each sub-block, similar to a pre-activation residual network\n- an additional layer normalization was added after the final self-attention block.\n- modified initialization which accounts for the accumulation on the residual path with model depth is used. We scale the weights of residual layers at initialization by a factor of 1/√N where N is the number of residual layers. (weird because in their released code i can only find a simple use of the old 0.02... in their release of image-gpt I found it used for c_proj, and even then only for attn, not for mlp. huh. https://github.com/openai/image-gpt/blob/master/src/model.py)\n- the vocabulary is expanded to 50,257\n- increase the context size from 512 to 1024 tokens\n- larger batchsize of 512 is used\n- GPT-2 used 48 layers and d_model 1600 (vs. original 12 layers and d_model 768). ~1.542B params\n\n#### Language Models are Few-Shot Learners (GPT-3)\n\n- GPT-3: 96 layers, 96 heads, with d_model of 12,288 (175B parameters).\n- GPT-1-like: 12 layers, 12 heads, d_model 768 (125M)\n- We use the same model and architecture as GPT-2, including the modified initialization, pre-normalization, and reversible tokenization described therein\n- we use alternating dense and locally banded sparse attention patterns in the layers of the transformer, similar to the Sparse Transformer\n- we always have the feedforward layer four times the size of the bottleneck layer, dff = 4 ∗ dmodel\n- all models use a context window of nctx = 2048 tokens.\n- Adam with β1 = 0.9, β2 = 0.95, and eps = 10−8\n- All models use weight decay of 0.1 to provide a small amount of regularization. (NOTE: GPT-1 used 0.01 I believe, see above)\n- clip the global norm of the gradient at 1.0\n- Linear LR warmup over the first 375 million tokens. Then use cosine decay for learning rate down to 10% of its value, over 260 billion tokens.\n- gradually increase the batch size linearly from a small value (32k tokens) to the full value over the first 4-12 billion tokens of training, depending on the model size.\n- full 2048-sized time context window is always used, with a special END OF DOCUMENT token delimiter\n\n#### Generative Pretraining from Pixels (Image GPT)\n\n- When working with images, we pick the identity permutation πi = i for 1 ≤ i ≤ n, also known as raster order.\n- we create our own 9-bit color palette by clustering (R, G, B) pixel values using k-means with k = 512.\n- Our largest model, iGPT-XL, contains L = 60 layers and uses an embedding size of d = 3072 for a total of 6.8B parameters.\n- Our next largest model, iGPT-L, is essentially identical to GPT-2 with L = 48 layers, but contains a slightly smaller embedding size of d = 1536 (vs 1600) for a total of 1.4M parameters.\n- We use the same model code as GPT-2, except that we initialize weights in the layerdependent fashion as in Sparse Transformer (Child et al., 2019) and zero-initialize all projections producing logits.\n- We also train iGPT-M, a 455M parameter model with L = 36 and d = 1024\n- iGPT-S, a 76M parameter model with L = 24 and d = 512 (okay, and how many heads? looks like the Github code claims 8)\n- When pre-training iGPT-XL, we use a batch size of 64 and train for 2M iterations, and for all other models we use a batch size of 128 and train for 1M iterations.\n- Adam with β1 = 0.9 and β2 = 0.95\n- The learning rate is warmed up for one epoch, and then decays to 0\n- We did not use weight decay because applying a small weight decay of 0.01 did not change representation quality.\n- iGPT-S lr 0.003\n- No dropout is used.\n\n### License\n\nMIT\n"
  },
  {
    "path": "a5/mingpt-demo/mingpt/__init__.py",
    "content": ""
  },
  {
    "path": "a5/mingpt-demo/mingpt/model.py",
    "content": "\"\"\"\nGPT model:\n- the initial stem consists of a combination of token encoding and a positional encoding\n- the meat of it is a uniform sequence of Transformer blocks\n    - each Transformer is a sequential combination of a 1-hidden-layer MLP block and a self-attention block\n    - all blocks feed into a central residual pathway similar to resnets\n- the final decoder is a linear projection into a vanilla Softmax classifier\n\"\"\"\n\nimport math\nimport logging\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\n\nlogger = logging.getLogger(__name__)\n\nclass GPTConfig:\n    \"\"\" base GPT config, params common to all GPT versions \"\"\"\n    embd_pdrop = 0.1\n    resid_pdrop = 0.1\n    attn_pdrop = 0.1\n\n    def __init__(self, vocab_size, block_size, **kwargs):\n        self.vocab_size = vocab_size\n        self.block_size = block_size\n        for k,v in kwargs.items():\n            setattr(self, k, v)\n\nclass GPT1Config(GPTConfig):\n    \"\"\" GPT-1 like network roughly 125M params \"\"\"\n    n_layer = 12\n    n_head = 12\n    n_embd = 768\n\nclass CausalSelfAttention(nn.Module):\n    \"\"\"\n    A vanilla multi-head masked self-attention layer with a projection at the end.\n    It is possible to use torch.nn.MultiheadAttention here but I am including an\n    explicit implementation here to show that there is nothing too scary here.\n    \"\"\"\n\n    def __init__(self, config):\n        super().__init__()\n        assert config.n_embd % config.n_head == 0\n        # key, query, value projections for all heads\n        self.key = nn.Linear(config.n_embd, config.n_embd)\n        self.query = nn.Linear(config.n_embd, config.n_embd)\n        self.value = nn.Linear(config.n_embd, config.n_embd)\n        # regularization\n        self.attn_drop = nn.Dropout(config.attn_pdrop)\n        self.resid_drop = nn.Dropout(config.resid_pdrop)\n        # output projection\n        self.proj = nn.Linear(config.n_embd, config.n_embd)\n        # causal mask to ensure that attention is only applied to the left in the input sequence\n        self.register_buffer(\"mask\", torch.tril(torch.ones(config.block_size, config.block_size))\n                                     .view(1, 1, config.block_size, config.block_size))\n        self.n_head = config.n_head\n\n    def forward(self, x, layer_past=None):\n        B, T, C = x.size()\n\n        # calculate query, key, values for all heads in batch and move head forward to be the batch dim\n        k = self.key(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs)\n        q = self.query(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs)\n        v = self.value(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs)\n\n        # causal self-attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)\n        att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1)))\n        att = att.masked_fill(self.mask[:,:,:T,:T] == 0, float('-inf'))\n        att = F.softmax(att, dim=-1)\n        att = self.attn_drop(att)\n        y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs)\n        y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side\n\n        # output projection\n        y = self.resid_drop(self.proj(y))\n        return y\n\nclass Block(nn.Module):\n    \"\"\" an unassuming Transformer block \"\"\"\n\n    def __init__(self, config):\n        super().__init__()\n        self.ln1 = nn.LayerNorm(config.n_embd)\n        self.ln2 = nn.LayerNorm(config.n_embd)\n        self.attn = CausalSelfAttention(config)\n        self.mlp = nn.Sequential(\n            nn.Linear(config.n_embd, 4 * config.n_embd),\n            nn.GELU(),\n            nn.Linear(4 * config.n_embd, config.n_embd),\n            nn.Dropout(config.resid_pdrop),\n        )\n\n    def forward(self, x):\n        x = x + self.attn(self.ln1(x))\n        x = x + self.mlp(self.ln2(x))\n        return x\n\nclass GPT(nn.Module):\n    \"\"\"  the full GPT language model, with a context size of block_size \"\"\"\n\n    def __init__(self, config):\n        super().__init__()\n\n        # input embedding stem\n        self.tok_emb = nn.Embedding(config.vocab_size, config.n_embd)\n        self.pos_emb = nn.Parameter(torch.zeros(1, config.block_size, config.n_embd))\n        self.drop = nn.Dropout(config.embd_pdrop)\n        # transformer\n        self.blocks = nn.Sequential(*[Block(config) for _ in range(config.n_layer)])\n        # decoder head\n        self.ln_f = nn.LayerNorm(config.n_embd)\n        self.head = nn.Linear(config.n_embd, config.vocab_size, bias=False)\n\n        self.block_size = config.block_size\n        self.apply(self._init_weights)\n\n        logger.info(\"number of parameters: %e\", sum(p.numel() for p in self.parameters()))\n\n    def get_block_size(self):\n        return self.block_size\n\n    def _init_weights(self, module):\n        if isinstance(module, (nn.Linear, nn.Embedding)):\n            module.weight.data.normal_(mean=0.0, std=0.02)\n            if isinstance(module, nn.Linear) and module.bias is not None:\n                module.bias.data.zero_()\n        elif isinstance(module, nn.LayerNorm):\n            module.bias.data.zero_()\n            module.weight.data.fill_(1.0)\n\n    def configure_optimizers(self, train_config):\n        \"\"\"\n        This long function is unfortunately doing something very simple and is being very defensive:\n        We are separating out all parameters of the model into two buckets: those that will experience\n        weight decay for regularization and those that won't (biases, and layernorm/embedding weights).\n        We are then returning the PyTorch optimizer object.\n        \"\"\"\n\n        # separate out all parameters to those that will and won't experience regularizing weight decay\n        decay = set()\n        no_decay = set()\n        whitelist_weight_modules = (torch.nn.Linear, )\n        blacklist_weight_modules = (torch.nn.LayerNorm, torch.nn.Embedding)\n        for mn, m in self.named_modules():\n            for pn, p in m.named_parameters():\n                fpn = '%s.%s' % (mn, pn) if mn else pn # full param name\n\n                if pn.endswith('bias'):\n                    # all biases will not be decayed\n                    no_decay.add(fpn)\n                elif pn.endswith('weight') and isinstance(m, whitelist_weight_modules):\n                    # weights of whitelist modules will be weight decayed\n                    decay.add(fpn)\n                elif pn.endswith('weight') and isinstance(m, blacklist_weight_modules):\n                    # weights of blacklist modules will NOT be weight decayed\n                    no_decay.add(fpn)\n\n        # special case the position embedding parameter in the root GPT module as not decayed\n        no_decay.add('pos_emb')\n\n        # validate that we considered every parameter\n        param_dict = {pn: p for pn, p in self.named_parameters()}\n        inter_params = decay & no_decay\n        union_params = decay | no_decay\n        assert len(inter_params) == 0, \"parameters %s made it into both decay/no_decay sets!\" % (str(inter_params), )\n        assert len(param_dict.keys() - union_params) == 0, \"parameters %s were not separated into either decay/no_decay set!\" \\\n                                                    % (str(param_dict.keys() - union_params), )\n\n        # create the pytorch optimizer object\n        optim_groups = [\n            {\"params\": [param_dict[pn] for pn in sorted(list(decay))], \"weight_decay\": train_config.weight_decay},\n            {\"params\": [param_dict[pn] for pn in sorted(list(no_decay))], \"weight_decay\": 0.0},\n        ]\n        optimizer = torch.optim.AdamW(optim_groups, lr=train_config.learning_rate, betas=train_config.betas)\n        return optimizer\n\n    def forward(self, idx, targets=None):\n        b, t = idx.size()\n        assert t <= self.block_size, \"Cannot forward, model block size is exhausted.\"\n\n        # forward the GPT model\n        token_embeddings = self.tok_emb(idx) # each index maps to a (learnable) vector\n        position_embeddings = self.pos_emb[:, :t, :] # each position maps to a (learnable) vector\n        x = self.drop(token_embeddings + position_embeddings)\n        x = self.blocks(x)\n        x = self.ln_f(x)\n        logits = self.head(x)\n\n        # if we are given some desired targets also calculate the loss\n        loss = None\n        if targets is not None:\n            loss = F.cross_entropy(logits.view(-1, logits.size(-1)), targets.view(-1))\n\n        return logits, loss\n"
  },
  {
    "path": "a5/mingpt-demo/mingpt/trainer.py",
    "content": "\"\"\"\nSimple training loop; Boilerplate that could apply to any arbitrary neural network,\nso nothing in this file really has anything to do with GPT specifically.\n\"\"\"\n\nimport math\nimport logging\n\nfrom tqdm import tqdm\nimport numpy as np\n\nimport torch\nimport torch.optim as optim\nfrom torch.optim.lr_scheduler import LambdaLR\nfrom torch.utils.data.dataloader import DataLoader\n\nlogger = logging.getLogger(__name__)\n\nclass TrainerConfig:\n    # optimization parameters\n    max_epochs = 10\n    batch_size = 64\n    learning_rate = 3e-4\n    betas = (0.9, 0.95)\n    grad_norm_clip = 1.0\n    weight_decay = 0.1 # only applied on matmul weights\n    # learning rate decay params: linear warmup followed by cosine decay to 10% of original\n    lr_decay = False\n    warmup_tokens = 375e6 # these two numbers come from the GPT-3 paper, but may not be good defaults elsewhere\n    final_tokens = 260e9 # (at what point we reach 10% of original LR)\n    # checkpoint settings\n    ckpt_path = None\n    num_workers = 0 # for DataLoader\n\n    def __init__(self, **kwargs):\n        for k,v in kwargs.items():\n            setattr(self, k, v)\n\nclass Trainer:\n\n    def __init__(self, model, train_dataset, test_dataset, config):\n        self.model = model\n        self.train_dataset = train_dataset\n        self.test_dataset = test_dataset\n        self.config = config\n\n        # take over whatever gpus are on the system\n        self.device = 'cpu'\n        if torch.cuda.is_available():\n            self.device = torch.cuda.current_device()\n            self.model = torch.nn.DataParallel(self.model).to(self.device)\n\n    def save_checkpoint(self):\n        # DataParallel wrappers keep raw model object in .module attribute\n        raw_model = self.model.module if hasattr(self.model, \"module\") else self.model\n        logger.info(\"saving %s\", self.config.ckpt_path)\n        torch.save(raw_model.state_dict(), self.config.ckpt_path)\n\n    def train(self):\n        model, config = self.model, self.config\n        raw_model = model.module if hasattr(self.model, \"module\") else model\n        optimizer = raw_model.configure_optimizers(config)\n\n        def run_epoch(split):\n            is_train = split == 'train'\n            model.train(is_train)\n            data = self.train_dataset if is_train else self.test_dataset\n            loader = DataLoader(data, shuffle=True, pin_memory=True,\n                                batch_size=config.batch_size,\n                                num_workers=config.num_workers)\n\n            losses = []\n            pbar = tqdm(enumerate(loader), total=len(loader)) if is_train else enumerate(loader)\n            for it, (x, y) in pbar:\n\n                # place data on the correct device\n                x = x.to(self.device)\n                y = y.to(self.device)\n\n                # forward the model\n                with torch.set_grad_enabled(is_train):\n                    logits, loss = model(x, y)\n                    loss = loss.mean() # collapse all losses if they are scattered on multiple gpus\n                    losses.append(loss.item())\n\n                if is_train:\n\n                    # backprop and update the parameters\n                    model.zero_grad()\n                    loss.backward()\n                    torch.nn.utils.clip_grad_norm_(model.parameters(), config.grad_norm_clip)\n                    optimizer.step()\n\n                    # decay the learning rate based on our progress\n                    if config.lr_decay:\n                        self.tokens += (y >= 0).sum() # number of tokens processed this step (i.e. label is not -100)\n                        if self.tokens < config.warmup_tokens:\n                            # linear warmup\n                            lr_mult = float(self.tokens) / float(max(1, config.warmup_tokens))\n                        else:\n                            # cosine learning rate decay\n                            progress = float(self.tokens - config.warmup_tokens) / float(max(1, config.final_tokens - config.warmup_tokens))\n                            lr_mult = max(0.1, 0.5 * (1.0 + math.cos(math.pi * progress)))\n                        lr = config.learning_rate * lr_mult\n                        for param_group in optimizer.param_groups:\n                            param_group['lr'] = lr\n                    else:\n                        lr = config.learning_rate\n\n                    # report progress\n                    pbar.set_description(f\"epoch {epoch+1} iter {it}: train loss {loss.item():.5f}. lr {lr:e}\")\n\n            if not is_train:\n                test_loss = float(np.mean(losses))\n                logger.info(\"test loss: %f\", test_loss)\n                return test_loss\n\n        best_loss = float('inf')\n        self.tokens = 0 # counter used for learning rate decay\n        for epoch in range(config.max_epochs):\n\n            run_epoch('train')\n            if self.test_dataset is not None:\n                test_loss = run_epoch('test')\n\n            # supports early stopping based on the test loss, or just save always if no test set is provided\n            good_model = self.test_dataset is None or test_loss < best_loss\n            if self.config.ckpt_path is not None and good_model:\n                best_loss = test_loss\n                self.save_checkpoint()\n"
  },
  {
    "path": "a5/mingpt-demo/mingpt/utils.py",
    "content": "import random\nimport numpy as np\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\n\ndef set_seed(seed):\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n\ndef top_k_logits(logits, k):\n    v, ix = torch.topk(logits, k)\n    out = logits.clone()\n    out[out < v[:, [-1]]] = -float('Inf')\n    return out\n\n@torch.no_grad()\ndef sample(model, x, steps, temperature=1.0, sample=False, top_k=None):\n    \"\"\"\n    take a conditioning sequence of indices in x (of shape (b,t)) and predict the next token in\n    the sequence, feeding the predictions back into the model each time. Clearly the sampling\n    has quadratic complexity unlike an RNN that is only linear, and has a finite context window\n    of block_size, unlike an RNN that has an infinite context window.\n    \"\"\"\n    block_size = model.get_block_size()\n    model.eval()\n    for k in range(steps):\n        x_cond = x if x.size(1) <= block_size else x[:, -block_size:] # crop context if needed\n        logits, _ = model(x_cond)\n        # pluck the logits at the final step and scale by temperature\n        logits = logits[:, -1, :] / temperature\n        # optionally crop probabilities to only the top k options\n        if top_k is not None:\n            logits = top_k_logits(logits, top_k)\n        # apply softmax to convert to probabilities\n        probs = F.softmax(logits, dim=-1)\n        # sample from the distribution or take the most likely\n        if sample:\n            ix = torch.multinomial(probs, num_samples=1)\n        else:\n            _, ix = torch.topk(probs, k=1, dim=-1)\n        # append to the sequence and continue\n        x = torch.cat((x, ix), dim=1)\n\n    return x\n"
  },
  {
    "path": "a5/mingpt-demo/play_char.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Train a character-level GPT on some text data\\n\",\n    \"\\n\",\n    \"The inputs here are simple text files, which we chop up to individual characters and then train GPT on. So you could say this is a char-transformer instead of a char-rnn. Doesn't quite roll off the tongue as well. In this example we will feed it some Shakespeare, which we'll get it to predict character-level.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# set up logging\\n\",\n    \"import logging\\n\",\n    \"logging.basicConfig(\\n\",\n    \"        format=\\\"%(asctime)s - %(levelname)s - %(name)s -   %(message)s\\\",\\n\",\n    \"        datefmt=\\\"%m/%d/%Y %H:%M:%S\\\",\\n\",\n    \"        level=logging.INFO,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# make deterministic\\n\",\n    \"from mingpt.utils import set_seed\\n\",\n    \"set_seed(42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"from torch.nn import functional as F\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import math\\n\",\n    \"from torch.utils.data import Dataset\\n\",\n    \"\\n\",\n    \"class CharDataset(Dataset):\\n\",\n    \"\\n\",\n    \"    def __init__(self, data, block_size):\\n\",\n    \"        chars = sorted(list(set(data)))\\n\",\n    \"        data_size, vocab_size = len(data), len(chars)\\n\",\n    \"        print('data has %d characters, %d unique.' % (data_size, vocab_size))\\n\",\n    \"        \\n\",\n    \"        self.stoi = { ch:i for i,ch in enumerate(chars) }\\n\",\n    \"        self.itos = { i:ch for i,ch in enumerate(chars) }\\n\",\n    \"        self.block_size = block_size\\n\",\n    \"        self.vocab_size = vocab_size\\n\",\n    \"        self.data = data\\n\",\n    \"    \\n\",\n    \"    def __len__(self):\\n\",\n    \"        return len(self.data) - self.block_size\\n\",\n    \"\\n\",\n    \"    def __getitem__(self, idx):\\n\",\n    \"        # grab a chunk of (block_size + 1) characters from the data\\n\",\n    \"        chunk = self.data[idx:idx + self.block_size + 1]\\n\",\n    \"        # encode every character to an integer\\n\",\n    \"        dix = [self.stoi[s] for s in chunk]\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        arrange data and targets so that the first i elements of x\\n\",\n    \"        will be asked to predict the i-th element of y. Notice that\\n\",\n    \"        the eventual language model will actually make block_size\\n\",\n    \"        individual predictions at the same time based on this data,\\n\",\n    \"        so we are being clever and amortizing the cost of the forward\\n\",\n    \"        pass of the network. So for example if block_size is 4, then\\n\",\n    \"        we could e.g. sample a chunk of text \\\"hello\\\", the integers in\\n\",\n    \"        x will correspond to \\\"hell\\\" and in y will be \\\"ello\\\". This will\\n\",\n    \"        then actually \\\"multitask\\\" 4 separate examples at the same time\\n\",\n    \"        in the language model:\\n\",\n    \"        - given just \\\"h\\\", please predict \\\"e\\\" as next\\n\",\n    \"        - given \\\"he\\\" please predict \\\"l\\\" next\\n\",\n    \"        - given \\\"hel\\\" predict \\\"l\\\" next\\n\",\n    \"        - given \\\"hell\\\" predict \\\"o\\\" next\\n\",\n    \"        \\n\",\n    \"        In addition, because the DataLoader will create batches of examples,\\n\",\n    \"        every forward/backward pass during traning will simultaneously train\\n\",\n    \"        a LOT of predictions, amortizing a lot of computation. In particular,\\n\",\n    \"        for a batched input of integers X (B, T) where B is batch size and\\n\",\n    \"        T is block_size and Y (B, T), the network will during training be\\n\",\n    \"        simultaneously training to make B*T predictions, all at once! Of course,\\n\",\n    \"        at test time we can paralellize across batch B, but unlike during training\\n\",\n    \"        we cannot parallelize across the time dimension T - we have to run\\n\",\n    \"        a forward pass of the network to recover the next single character of the \\n\",\n    \"        sequence along each batch dimension, and repeatedly always feed in a next\\n\",\n    \"        character to get the next one.\\n\",\n    \"        \\n\",\n    \"        So yes there is a big asymmetry between train/test time of autoregressive\\n\",\n    \"        models. During training we can go B*T at a time with every forward pass,\\n\",\n    \"        but during test time we can only go B at a time, T times, with T forward \\n\",\n    \"        passes.\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        x = torch.tensor(dix[:-1], dtype=torch.long)\\n\",\n    \"        y = torch.tensor(dix[1:], dtype=torch.long)\\n\",\n    \"        return x, y\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"block_size = 128 # spatial extent of the model for its context\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"ename\": \"FileNotFoundError\",\n     \"evalue\": \"[Errno 2] No such file or directory: 'input.txt'\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mFileNotFoundError\\u001b[0m                         Traceback (most recent call last)\",\n      \"\\u001b[0;32m<ipython-input-6-865803c9bfbf>\\u001b[0m in \\u001b[0;36m<module>\\u001b[0;34m\\u001b[0m\\n\\u001b[1;32m      1\\u001b[0m \\u001b[0;31m# you can download this file at https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m----> 2\\u001b[0;31m \\u001b[0mtext\\u001b[0m \\u001b[0;34m=\\u001b[0m \\u001b[0mopen\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m'input.txt'\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;34m'r'\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mread\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m)\\u001b[0m \\u001b[0;31m# don't worry we won't run out of file handles\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[1;32m      3\\u001b[0m \\u001b[0mtrain_dataset\\u001b[0m \\u001b[0;34m=\\u001b[0m \\u001b[0mCharDataset\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mtext\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mblock_size\\u001b[0m\\u001b[0;34m)\\u001b[0m \\u001b[0;31m# one line of poem is roughly 50 characters\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\",\n      \"\\u001b[0;31mFileNotFoundError\\u001b[0m: [Errno 2] No such file or directory: 'input.txt'\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# you can download this file at https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt\\n\",\n    \"text = open('input.txt', 'r').read() # don't worry we won't run out of file handles\\n\",\n    \"train_dataset = CharDataset(text, block_size) # one line of poem is roughly 50 characters\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from mingpt.model import GPT, GPTConfig\\n\",\n    \"mconf = GPTConfig(train_dataset.vocab_size, train_dataset.block_size,\\n\",\n    \"                  n_layer=8, n_head=8, n_embd=512)\\n\",\n    \"model = GPT(mconf)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from mingpt.trainer import Trainer, TrainerConfig\\n\",\n    \"\\n\",\n    \"# initialize a trainer instance and kick off training\\n\",\n    \"tconf = TrainerConfig(max_epochs=2, batch_size=512, learning_rate=6e-4,\\n\",\n    \"                      lr_decay=True, warmup_tokens=512*20, final_tokens=2*len(train_dataset)*block_size,\\n\",\n    \"                      num_workers=4)\\n\",\n    \"trainer = Trainer(model, train_dataset, None, tconf)\\n\",\n    \"trainer.train()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# alright, let's sample some character-level Shakespeare\\n\",\n    \"from mingpt.utils import sample\\n\",\n    \"\\n\",\n    \"context = \\\"O God, O God!\\\"\\n\",\n    \"x = torch.tensor([train_dataset.stoi[s] for s in context], dtype=torch.long)[None,...].to(trainer.device)\\n\",\n    \"y = sample(model, x, 2000, temperature=1.0, sample=True, top_k=10)[0]\\n\",\n    \"completion = ''.join([train_dataset.itos[int(i)] for i in y])\\n\",\n    \"print(completion)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# well that was fun\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.7.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "a5/src/attention.py",
    "content": "import math\nimport logging\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\n\nlogger = logging.getLogger(__name__)\n\nclass CausalSelfAttention(nn.Module):\n    \"\"\"\n    A vanilla multi-head masked self-attention layer with a projection at the end.\n    I believe I could have just used torch.nn.MultiheadAttention but their documentation\n    is all but absent and code ugly so I don't trust it, rolling my own here.\n    \"\"\"\n\n    def __init__(self, config):\n        super().__init__()\n        assert config.n_embd % config.n_head == 0\n        # key, query, value projections for all heads\n        self.key = nn.Linear(config.n_embd, config.n_embd)\n        self.query = nn.Linear(config.n_embd, config.n_embd)\n        self.value = nn.Linear(config.n_embd, config.n_embd)\n        # regularization\n        self.attn_drop = nn.Dropout(config.attn_pdrop)\n        self.resid_drop = nn.Dropout(config.resid_pdrop)\n        # output projection\n        self.proj = nn.Linear(config.n_embd, config.n_embd)\n        # causal mask to ensure that attention is only applied to the left in the input sequence\n        self.register_buffer(\"mask\", torch.tril(torch.ones(config.block_size, config.block_size))\n                                     .view(1, 1, config.block_size, config.block_size))\n        self.n_head = config.n_head\n\n    def forward(self, x, layer_past=None):\n        # B stands for Batch\n        # T stands for Time?\n        # C stands for \"channels\" in the sense of a convolutional neural network?\n        # You can (temporarily) change n_embd (d) in the mconf definition in run.py, block_size (l) and \n        # the batch_size in the trainer.TrainerConfig, to vary the embedding dimension, sequence length and \n        # batch size respectively and then print out the size of x in forward() when making these changes, \n        # to see what each axis of x corresponds to.\n        B, T, C = x.size()\n\n        # calculate query, key, values for all heads in batch and move head forward to be the batch dim\n        k = self.key(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs)\n        q = self.query(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs)\n        v = self.value(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs)\n\n        # causal self-attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)\n        # Why is (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)?\n        # It's a batched matrix multiply (batch dims (B, nh)). \n        # This is defined implicitly with the matmul operation on tensors of higher numbers of axes than 2. \n        # For more: https://pytorch.org/docs/stable/generated/torch.matmul.html\n        # So the matrices are \"really\" (T, hs) x (hs, T) --> (T,T)\n        att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1)))\n        att = att.masked_fill(self.mask[:,:,:T,:T] == 0, -1e10) # todo: just use float('-inf') instead?\n        att = F.softmax(att, dim=-1)\n        att = self.attn_drop(att)\n        y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs)\n        y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side\n\n        # output projection\n        y = self.resid_drop(self.proj(y))\n        return y\n\n\"\"\"\nWrite your SynthesizerAttention below.\nHint: paste over the CausalSelfAttention above and modify it minimally.\n\"\"\"\n\nclass SynthesizerAttention(nn.Module):\n    def __init__(self, config):\n        super().__init__()\n        assert config.n_embd % config.n_head == 0\n        # NEW learnable weights\n        self.w1 = nn.Linear(config.n_embd, config.n_embd)\n        self.w2 = nn.Parameter(torch.zeros(config.n_embd // config.n_head,\n            config.block_size-1))\n        self.b2 = nn.Parameter(torch.zeros(config.block_size-1))\n        # value projection\n        self.value = nn.Linear(config.n_embd, config.n_embd)\n        # regularization\n        self.attn_drop = nn.Dropout(config.attn_pdrop)\n        self.resid_drop = nn.Dropout(config.resid_pdrop)\n        # output projection\n        self.proj = nn.Linear(config.n_embd, config.n_embd)\n        # causal mask to ensure that attention is only applied to the left in\n        #     the input sequence\n        self.register_buffer(\"mask\", torch.tril(\n            torch.ones(config.block_size, config.block_size)).view(\n                1, 1, config.block_size, config.block_size))\n        self.n_head = config.n_head\n        self.block_size = config.block_size\n\n        nn.init.uniform_(self.w2,-0.001,0.001)\n\n    def forward(self, x, layer_past=None):\n        # TODO [part g]: Write your SynthesizerAttention below.\n        #   Do not modify __init__().\n        # Hints:\n        #   - Paste over the CausalSelfAttention above and modify it minimally.\n        #   - Consider especially the parameters self.w1, self.w2 and self.b2.\n        #       How do these map to the matrices in the handout?\n\n        B, T, C = x.size()\n\n        # calculate query, key, values for all heads in batch and move head forward to be the batch dim\n        w1 = self.w1(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs) -> (1, 8, 32, 32)\n        # print(\"a\", a.shape)\n\n        w2 = self.w2[:, :T] # (hs, T) -> (32, 127)\n        # print(\"b\", b.shape)\n\n        b2 = self.b2[:T] # (T) -> (127)\n        # print(\"b2\", b2.shape)\n\n        v = self.value(x).view(B, T, self.n_head, C // self.n_head).transpose(1, 2) # (B, nh, T, hs)\n        # print(v.shape)\n\n        # Synthesizer Attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)\n        att = (F.relu(w1) @ w2 + b2)\n        # print(att.shape)\n\n        # Mask out the future\n        att = att.masked_fill(self.mask[:, :, :T, :T] == 0, -1e10) # todo: just use float('-inf') instead?\n        att = F.softmax(att, dim=-1)\n        # print(att.shape)\n\n        att = self.attn_drop(att)\n        # print(att.shape)\n        # print(v.shape)\n\n        y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs)\n        y = y.transpose(1, 2).contiguous().view(B, T, C) # re-assemble all head outputs side by side\n\n        # output projection\n        y = self.resid_drop(self.proj(y))\n        return y"
  },
  {
    "path": "a5/src/dataset.py",
    "content": "import random\nimport torch\nfrom torch.utils.data import Dataset\nimport argparse\n\n\"\"\"\nThe input-output pairs (x, y) of the NameDataset are of the following form:\n\n  x: Where was Khatchig Mouradian born?⁇Lebanon⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n  y: □□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□⁇Lebanon⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n  x: Where was Jacob Henry Studer born?⁇Columbus⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n  y: □□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□⁇Columbus⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n\nUsing the PAD_CHAR characters in y before the ⁇[place] keeps the trainer from\noptimizing the model to predict the question, \"Where was...\".\n\nNote that the NameDataset should take the pretraining_dataset defined in run.py\nas an input. This is to allow the vocab specification of the NameDataset to be\nthe same as that of the pretraining dataset.\n\nYou don't need to implement anything in NameDataset.\n\"\"\"\n\nclass NameDataset(Dataset):\n    def __init__(self, pretraining_dataset, data):\n        self.MASK_CHAR = u\"\\u2047\" # the doublequestionmark character, for mask\n        self.PAD_CHAR = u\"\\u25A1\" # the empty square character, for pad\n        self.itos = pretraining_dataset.itos \n        self.stoi = pretraining_dataset.stoi \n        self.block_size = pretraining_dataset.block_size\n        self.data = list(data.encode('utf-8').decode('ascii', errors='ignore').split('\\n'))\n\n    def __len__(self):\n        # returns the length of the dataset\n        return len(self.data) - 1\n\n    def __getitem__(self, idx):\n        inp, oup = self.data[idx].split('\\t')\n        x = inp + self.MASK_CHAR + oup + self.MASK_CHAR\n        x = x + self.PAD_CHAR*(self.block_size - len(x))\n        y = self.PAD_CHAR*(len(inp)-1) + x[len(inp):]\n        \n        x = x[:-1]\n        x = torch.tensor([self.stoi[c] for c in x], dtype=torch.long)\n        y = torch.tensor([self.stoi[c] for c in y], dtype=torch.long)\n        return x, y\n\n\n\"\"\"\n[part e]\n\nWrite a class that yields examples of a simplified span corruption objective.\nDo not change the signature of the __init__ or __getitem__ functions.\n\nMake sure to implement the full spec for full credit -- we list below the\ncriteria that must be satisfied for a full implementation.\n\n--------------\nVocabulary Specification\n\nYour vocabulary is to be accessible via two dictionaries:\n  self.stoi: a dictionary from characters in the vocabulary to indices of type\n      int\n  self.itos: a dictionary from indices of type int to characters in the\n      vocabulary\n\nYour vocabulary must have the following form: \n\n  Identifier 0 must be assigned to the unicode element u\"\\u25A1\".\n      This is the empty_square_character.\n      Further, let self.PAD_CHAR = u\"\\u25A1\"\n  Identifier 1 must be assigned to the unicode element u\"\\u2047\".\n      This is the doublequestionmark character, which we'll use\n      as a sentinel to represent that text is missing from the input\n      Further, let self.MASK_CHAR = u\"\\u2047\"\n  Identifiers 2, ..., len(self.itos)-1 should be the sorted list of characters\n      that appear in the data argument.\n\n--------------\nMasking Specification\n\nThe __getitem__ function takes an index and returns a data point (x, y) where\nx and y are Long tensors of length self.block_size. x encodes the input\nsequence, and y encodes the output sequence.\n\n0. Use the idx argument of __getitem__ to retrieve the element of self.data\nat the given index. We'll call the resulting data entry a document.\n\n1. Randomly truncate the document to a length no less than 4 characters,\nand no more than int(self.block_size*7/8) characters.\n\n- IMPORTANT: You are free to decide how to perform this random truncation, but\nmake sure that the length is picked _randomly_ (every possible length from 4\nto int(self.block_size*7/8) has a chance of being picked) for full credit.\n\n2. Now, break the (truncated) document into three substrings:\n    \n    [prefix] [masked_content] [suffix]\n\n  In other words, choose three strings prefix, masked_content and suffix\n    such that prefix + masked_content + suffix = [the original document].\n  The length of [masked_content] should be random, and 1/4 the length of the\n    truncated document on average.\n\n- IMPORTANT: You are free to decide how to perform this operation, but\nmake sure that the length is picked _randomly_ (has a chance of being more or\nless than 1/4 the length of the truncated document) for full credit.\n\n3. Rearrange these substrings into the following form:\n\n    [prefix] MASK_CHAR [suffix] MASK_CHAR [masked_content] [pads]\n  \n  This resulting string, denoted masked_string, serves as the output example.\n  Here MASK_CHAR is the masking character defined in Vocabulary Specification,\n    and [pads] is a string of repeated PAD_CHAR characters chosen so that the\n    entire string is of length self.block_size.\n  Intuitively, the [masked_content], a string, is removed from the document and\n    replaced with MASK_CHAR (the masking character defined in Vocabulary\n    Specification). After the suffix of the string, the MASK_CHAR is seen again,\n    followed by the content that was removed, and the padding characters.\n\n4. We now use masked_string to construct the input and output example pair. To\ndo so, simply take the input string to be masked_string[:-1], and the output\nstring to be masked_string[1:]. In other words, for each character, the goal is\nto predict the next character in the masked string.\n\n5. Making use of the vocabulary that you defined, encode the resulting input\nand output strings as Long tensors and return the resulting data point.\n\n----------------\nHere are some examples of input-output pairs (x, y):\n\n  x: Khatchig Mouradian. Khatchig Mouradian is a jour⁇and tran⁇nalist, writer ⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n  y: hatchig Mouradian. Khatchig Mouradian is a jour⁇and tran⁇nalist, writer ⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n\n  x: Jaco⁇enry ⁇b H⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n  y: aco⁇enry ⁇b H⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n\n  x: John Stephen. Born in Glasgow, Steph⁇lder's apprentice on⁇en became a we⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n  y: ohn Stephen. Born in Glasgow, Steph⁇lder's apprentice on⁇en became a we⁇□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□\n\n\n\"\"\"\nclass CharCorruptionDataset(Dataset):\n    def __init__(self, data, block_size):\n        self.MASK_CHAR = u\"\\u2047\" # the doublequestionmark character, for mask\n        self.PAD_CHAR = u\"\\u25A1\" # the empty square character, for pad\n\n        chars = list(sorted(list(set(data))))\n        assert self.MASK_CHAR not in chars \n        assert self.PAD_CHAR not in chars\n        chars.insert(0, self.MASK_CHAR)\n        chars.insert(0, self.PAD_CHAR)\n\n        self.stoi = { ch:i for i,ch in enumerate(chars) }\n        self.itos = { i:ch for i,ch in enumerate(chars) }\n\n        data_size, vocab_size = len(data), len(chars)\n        print('data has %d characters, %d unique.' % (data_size, vocab_size))\n\n        self.block_size = block_size\n        self.vocab_size = vocab_size\n        self.data = data.split('\\n')\n\n    def __len__(self):\n        # returns the length of the dataset\n        return len(self.data)\n\n    def __getitem__(self, idx):\n        # TODO [part e]: see spec above\n        \n        doc = self.data[idx]\n        \n        # 1. Randomly truncate the document to a length no less than 4 characters,\n        # and no more than int(self.block_size*7/8) characters.\n        import random\n        random_length = random.randint(4, int(self.block_size*7/8))\n        truncated_doc = doc[:random_length]\n        \n        # 2. Now, break the (truncated) document into three substrings: [prefix] [masked_content] [suffix]\n        #\n        # In other words, choose three strings prefix, masked_content and suffix\n        #  such that prefix + masked_content + suffix = [the original document].\n        #  The length of [masked_content] should be random, and 1/4 the length of the\n        #  truncated document on average.\n        #\n        # - IMPORTANT: You are free to decide how to perform this operation, but\n        # make sure that the length is picked _randomly_ (has a chance of being more or\n        # less than 1/4 the length of the truncated document) for full credit.\n\n        # Take the length of the (randomly truncated) document.\n        truncated_doc_length = len(doc)\n        \n        # Add a random perturbation to the length of the masked content with randint(). \n        # Just pick the right bounds, for example, -1/8 and 1/8 of the truncated length\n        random_perturbation = random.randint(int(-0.125*truncated_doc_length), int(0.125*truncated_doc_length))\n\n        # Compute expected_mask_len by using 1/4 of the truncated document length \n        # and adding a perturbation.\n        expected_mask_len = int(0.25*truncated_doc_length + random_perturbation)\n        # This gets you a masked length with minimum length of 1/8 of truncated length and \n        # maximum length of 3/8 of the truncated length, and the average is 1/4.   \n        \n        # randomly determine where to start the masked portion somewhere between the start \n        # of the truncated document and the last index such that there are as many characters \n        # left in the sequence as we determined the mask length should be\n        start_mask = random.randint(0, truncated_doc_length - expected_mask_len)\n        \n        masked_content = truncated_doc[start_mask:start_mask+expected_mask_len]\n        prefix = truncated_doc[:start_mask]\n        suffix = truncated_doc[len(prefix)+expected_mask_len:]\n        \n        # 3. Rearrange these substrings into the following form:\n        #\n        #   [prefix] MASK_CHAR [suffix] MASK_CHAR [masked_content] [pads]\n        # \n        # This resulting string, denoted masked_string, serves as the output example.\n        # Here MASK_CHAR is the masking character defined in Vocabulary Specification,\n        #   and [pads] is a string of repeated PAD_CHAR characters chosen so that the\n        #   entire string is of length self.block_size.\n        # Intuitively, the [masked_content], a string, is removed from the document and\n        #   replaced with MASK_CHAR (the masking character defined in Vocabulary\n        #   Specification). After the suffix of the string, the MASK_CHAR is seen again,\n        #   followed by the content that was removed, and the padding characters.\n        \n        masked_string = prefix + self.MASK_CHAR + suffix + self.MASK_CHAR + masked_content\n        masked_string += self.PAD_CHAR*(self.block_size - len(masked_string))\n        \n        # We now use masked_string to construct the input and output example pair. To\n        # do so, simply take the input string to be masked_string[:-1], and the output\n        # string to be masked_string[1:]. In other words, for each character, the goal is\n        # to predict the next character in the masked string.\n        \n        input = masked_string[:-1]\n        output = masked_string[1:]\n        \n        # Making use of the vocabulary that you defined, encode the resulting input\n        # and output strings as Long tensors and return the resulting data point.\n                \n        x = torch.tensor([self.stoi[c] for c in input], dtype=torch.long)\n        y = torch.tensor([self.stoi[c] for c in output], dtype=torch.long)\n        return x, y\n\n\"\"\"\nCode under here is strictly for your debugging purposes; feel free to modify\nas desired.\n\"\"\"\nif __name__ == '__main__':\n    argp = argparse.ArgumentParser()\n    argp.add_argument('dataset_type', help=\"Type of dataset to sample from.\"\n            \"Options: namedata, charcorruption.\",\n            choices=[\"namedata\", \"charcorruption\"])\n    args = argp.parse_args()\n\n    if args.dataset_type == 'namedata':\n        # Even if it hasn't been implemented, we use it to define the vocab\n        corruption_dataset = CharCorruptionDataset(open('wiki.txt').read(), 128) \n        # Make the name dataset\n        name_dataset = NameDataset(corruption_dataset,\n            open('birth_places_train.tsv').read())\n        for _, example in zip(range(4), name_dataset):\n            x, y = example\n            print('x:', ''.join([name_dataset.itos[int(c)] for c in x]))\n            print('y:', ''.join([name_dataset.itos[int(c)] for c in y]))\n        pass\n    elif args.dataset_type == 'charcorruption':\n        corruption_dataset = CharCorruptionDataset(open('wiki.txt').read(), 128) \n        for _, example in zip(range(4), corruption_dataset):\n            x, y = example\n            print('x:', ''.join([corruption_dataset.itos[int(c)] for c in x]))\n            print('y:', ''.join([corruption_dataset.itos[int(c)] for c in y]))\n    else:\n        raise ValueError(\"Unknown dataset type in command line args: {}\"\n                .format(args.dataset_type))\n\n"
  },
  {
    "path": "a5/src/london_baseline.py",
    "content": "# Calculate the accuracy of a baseline that simply predicts \"London\" for every\n#   example in the dev set.\n# Hint: Make use of existing code.\n# Your solution here should only be a few lines.\n\nimport utils\n\n# the list comprehension in the below line is to accommodate lines with just the newline character\ntotal, correct = utils.evaluate_places('birth_dev.tsv', ['London'] * len([line for line in open('birth_dev.tsv').read().split('\\n') if line]))\n\nif total > 0:\n    print('Correct: {} out of {}: {}%'.format(correct, total, correct/total*100))"
  },
  {
    "path": "a5/src/model.py",
    "content": "\n\"\"\"\nGPT model:\n- the initial stem consists of a combination of token encoding and a positional encoding\n- the meat of it is a uniform sequence of Transformer blocks\n    - each Transformer is a sequential combination of a 1-hidden-layer MLP block and a self-attention block\n    - all blocks feed into a central residual pathway similar to resnets\n- the final decoder is a linear projection into a vanilla Softmax classifier\n\"\"\"\n\nimport math\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\n\nimport attention\n\n\nclass GPTConfig:\n    \"\"\" base GPT config, params common to all GPT versions \"\"\"\n    embd_pdrop = 0.1\n    resid_pdrop = 0.1\n    attn_pdrop = 0.1\n    additive = False\n\n    def __init__(self, vocab_size, block_size, synthesizer=False, **kwargs):\n        self.vocab_size = vocab_size\n        self.block_size = block_size\n        self.synthesizer = synthesizer\n        for k,v in kwargs.items():\n            setattr(self, k, v)\n\nclass GPT1Config(GPTConfig):\n    \"\"\" GPT-1 like network roughly 125M params \"\"\"\n    n_layer = 12\n    n_head = 12\n    n_embd = 768\n\nclass Block(nn.Module):\n    \"\"\" an unassuming Transformer block \"\"\"\n\n    def __init__(self, config):\n        super().__init__()\n        self.ln1 = nn.LayerNorm(config.n_embd)\n        self.ln2 = nn.LayerNorm(config.n_embd)\n        if config.synthesizer:\n            self.attn = attention.SynthesizerAttention(config)\n        elif config.additive:\n            self.attn = attention.AdditiveSelfAttention(config)\n        else:\n            self.attn = attention.CausalSelfAttention(config)\n        self.mlp = nn.Sequential(\n            nn.Linear(config.n_embd, 4 * config.n_embd),\n            nn.GELU(),\n            nn.Linear(4 * config.n_embd, config.n_embd),\n            nn.Dropout(config.resid_pdrop),\n        )\n\n    def forward(self, x):\n        x = x + self.attn(self.ln1(x))\n        x = x + self.mlp(self.ln2(x))\n        return x\n\nclass GPT(nn.Module):\n    \"\"\"  the full GPT language model, with a context size of block_size \"\"\"\n\n    def __init__(self, config):\n        super().__init__()\n\n        # input embedding stem\n        self.tok_emb = nn.Embedding(config.vocab_size, config.n_embd)\n        self.pos_emb = nn.Parameter(torch.zeros(1, config.block_size, config.n_embd))\n        self.drop = nn.Dropout(config.embd_pdrop)\n        # transformer\n        self.blocks = nn.Sequential(*[Block(config) for _ in range(config.n_layer)])\n        # decoder head\n        self.ln_f = nn.LayerNorm(config.n_embd)\n        self.head = nn.Linear(config.n_embd, config.vocab_size, bias=False)\n\n        self.block_size = config.block_size\n        self.apply(self._init_weights)\n\n        print(\"number of parameters: {}\".format(sum(p.numel() for p in self.parameters())))\n\n    def _init_weights(self, module):\n        if isinstance(module, (nn.Linear, nn.Embedding)):\n            module.weight.data.normal_(mean=0.0, std=0.02)\n            if isinstance(module, nn.Linear) and module.bias is not None:\n                module.bias.data.zero_()\n        elif isinstance(module, nn.LayerNorm):\n            module.bias.data.zero_()\n            module.weight.data.fill_(1.0)\n\n    def get_block_size(self):\n        return self.block_size\n\n    def forward(self, idx, targets=None):\n        b, t = idx.size()\n        assert t <= self.block_size, \"Cannot forward, model block size is exhausted.\"\n\n        # forward the GPT model\n        token_embeddings = self.tok_emb(idx) # each index maps to a (learnable) vector\n        position_embeddings = self.pos_emb[:, :t, :] # each position maps to a (learnable) vector\n        x = self.drop(token_embeddings + position_embeddings)\n        x = self.blocks(x)\n        x = self.ln_f(x)\n        logits = self.head(x)\n\n        # if we are given some desired targets also calculate the loss\n        loss = None\n        if targets is not None:\n            loss = F.cross_entropy(logits.view(-1, logits.size(-1)), targets.view(-1), ignore_index=0)\n\n        return logits, loss\n\nclass CustomLayerNorm(nn.Module):\n  pass\n"
  },
  {
    "path": "a5/src/run.py",
    "content": "import numpy as np\nimport torch\nimport torch.nn as nn\nfrom tqdm import tqdm\nfrom torch.nn import functional as F\nimport random\nimport argparse\nrandom.seed(0)\n\nimport dataset\nimport model\nimport trainer\nimport utils\n\nargp = argparse.ArgumentParser()\nargp.add_argument('function',\n    help=\"Whether to pretrain, finetune or evaluate a model\",\n    choices=[\"pretrain\", \"finetune\", \"evaluate\"])\nargp.add_argument('variant',\n    help=\"Which variant of the model to run ('vanilla' or 'synthesizer')\",\n    choices=[\"vanilla\", \"synthesizer\"])\nargp.add_argument('pretrain_corpus_path',\n    help=\"Path of the corpus to pretrain on\", default=None)\nargp.add_argument('--reading_params_path',\n    help=\"If specified, path of the model to load before finetuning/evaluation\",\n    default=None)\nargp.add_argument('--writing_params_path',\n    help=\"Path to save the model after pretraining/finetuning\", default=None)\nargp.add_argument('--finetune_corpus_path',\n    help=\"Path of the corpus to finetune on\", default=None)\nargp.add_argument('--eval_corpus_path',\n    help=\"Path of the corpus to evaluate on\", default=None)\nargp.add_argument('--outputs_path', default=None)\nargs = argp.parse_args()\n\n# Save the device\ndevice = torch.cuda.current_device() if torch.cuda.is_available() else 'cpu'\n\n# Keep the block size 128\n# Why is the pretraining corpus always required (even if we're not pretraining?)\n# It's because we're using it as a hack to always have the same vocabulary\n# (that is, the same mapping from character to integer, and we build the \n# vocab from the pretraining corpus.)\nblock_size = 128\ntext = open(args.pretrain_corpus_path).read()\npretrain_dataset = dataset.CharCorruptionDataset(text, block_size)\n\n# We don't suggest you change these hyperparameters, as they're known to work.\n# use them for both the vanilla and the synthesizer models\nmconf = model.GPTConfig(pretrain_dataset.vocab_size, pretrain_dataset.block_size,\n    n_layer=4, n_head=8, n_embd=256)\n\n\"\"\"\nDon't change above here; write your code below\n\"\"\"\n\nif args.variant == 'vanilla':\n    # TODO [part c]: Make some model here    \n    \n    model = model.GPT(mconf)\n    model = model.to(device)    \n    \nelif args.variant == 'synthesizer':\n    # TODO [part g]: Make some other model here\n    \n    mconf = model.GPTConfig(pretrain_dataset.vocab_size, pretrain_dataset.block_size,\n    synthesizer=True, n_layer=4, n_head=8, n_embd=256)    \n    \n    model = model.GPT(mconf)\n    model = model.to(device)    \n\n# From here on, your code should be identical independent of which\n# variant (vanilla or synthesizer) has been chosen.\n\nif args.function == 'pretrain':\n    assert args.pretrain_corpus_path is not None\n    assert args.writing_params_path is not None\n    # TODO [part f]:\n    # - Given:\n    #     1. A corpus specified in args.pretrain_corpus_path\n    #     2. An output path args.writing_params_path for the model parameters\n    # - Goals:\n    #     1. Pretrain the model on this corpus\n    #     2. Save the resulting model in args.writing_params_path\n    # - Make sure to use the following hyperparameters for pretraining:\n    #     max_epochs=650\n    #     batch_size=128\n    #     learning_rate=6e-3\n    #     lr_decay=True\n    #     warmup_tokens=512*20\n    #     final_tokens=200*len(pretrain_dataset)*block_size\n    #     num_workers=4  \n    \n    # initialize a trainer instance and kick off pretraining\n    tconf = trainer.TrainerConfig(max_epochs=650, batch_size=128, learning_rate=6e-3,\n                                  lr_decay=True, warmup_tokens=512*20, final_tokens=200*len(pretrain_dataset)*block_size,\n                                  num_workers=4, ckpt_path=args.writing_params_path)\n    trainer = trainer.Trainer(model, pretrain_dataset, None, tconf)\n    trainer.train()\n\nelif args.function == 'finetune':\n    assert args.writing_params_path is not None\n    assert args.finetune_corpus_path is not None\n    # TODO [part c] [part f]:\n    # - Given:\n    #     1. A finetuning corpus specified in args.finetune_corpus_path\n    #     2. A path args.reading_params_path containing pretrained model\n    #         parameters, or None if finetuning without a pretrained model\n    #     3. An output path args.writing_params_path for the model parameters\n    # - Goals:\n    #     1. If args.reading_params_path is specified, load these parameters\n    #         into the model\n    #     2. Finetune the model on this corpus\n    #     3. Save the resulting model in args.writing_params_path\n    # - Make sure to use the following hyperparameters:\n    #     Hyperparameters for finetuning WITHOUT a pretrained model:\n    #         max_epochs=75\n    #         batch_size=256\n    #         learning_rate=6e-4\n    #         lr_decay=True\n    #         warmup_tokens=512*20\n    #         final_tokens=200*len(pretrain_dataset)*block_size\n    #         num_workers=4\n    #     Hyperparameters for finetuning WITH a pretrained model:\n    #         max_epochs=10\n    #         batch_size=256\n    #         learning_rate=6e-4\n    #         lr_decay=True\n    #         warmup_tokens=512*20\n    #         final_tokens=200*len(pretrain_dataset)*block_size\n    #         num_workers=4 \n\n\n    text = open(args.finetune_corpus_path, 'r', encoding='utf-8').read()\n    finetune_dataset = dataset.NameDataset(pretrain_dataset, text)\n\n    # finetuning WITH a pretrained model\n    if args.reading_params_path:\n        # initialize a trainer instance and kick off finetuning\n        tconf = trainer.TrainerConfig(max_epochs=10, batch_size=256, learning_rate=6e-4,\n                                      lr_decay=True, warmup_tokens=512*20, final_tokens=200*len(pretrain_dataset)*block_size,\n                                      num_workers=4 if torch.cuda.is_available() else 0, ckpt_path=args.writing_params_path)\n\n        model.load_state_dict(torch.load(args.reading_params_path))\n        model.eval()\n\n        trainer = trainer.Trainer(model, finetune_dataset, None, tconf)\n\n    # finetuning WITHOUT a pretrained model\n    else:\n        # initialize a trainer instance and kick off finetuning\n        tconf = trainer.TrainerConfig(max_epochs=75, batch_size=256, learning_rate=6e-4,\n                                      lr_decay=True, warmup_tokens=512*20, final_tokens=200*len(pretrain_dataset)*block_size,\n                                      num_workers=4 if torch.cuda.is_available() else 0, ckpt_path=args.writing_params_path)\n        trainer = trainer.Trainer(model, finetune_dataset, None, tconf)\n\n    # finetune\n    trainer.train()\n    \nelif args.function == 'evaluate':\n    assert args.outputs_path is not None\n    assert args.reading_params_path is not None\n    assert args.eval_corpus_path is not None\n\n    # HACK to run on CPU\n    device = torch.cuda.current_device() if torch.cuda.is_available() else 'cpu'\n    model.load_state_dict(torch.load(args.reading_params_path, map_location=device))\n\n    correct = 0\n    total = 0\n    with open(args.outputs_path, 'w') as fout:\n        predictions = []\n        for line in tqdm(open(args.eval_corpus_path)):\n            x = line.split('\\t')[0]\n            x = x + '⁇'\n            x = torch.tensor([pretrain_dataset.stoi[s] for s in x], dtype=torch.long)[None,...].to(device)\n            pred = utils.sample(model, x, 32, sample=False)[0]\n            completion = ''.join([pretrain_dataset.itos[int(i)] for i in pred])\n            pred = completion.split('⁇')[1]\n            predictions.append(pred)\n            fout.write(pred + '\\n')\n        total, correct = utils.evaluate_places(args.eval_corpus_path, predictions)\n    if total > 0:\n        print('Correct: {} out of {}: {}%'.format(correct, total, correct/total*100))\n    else:\n        print('Predictions written to {}; no targets provided'\n                .format(args.outputs_path))\n\n"
  },
  {
    "path": "a5/src/trainer.py",
    "content": "\"\"\"\nSimple training loop; Boilerplate that could apply to any arbitrary neural network,\nso nothing in this file really has anything to do with GPT specifically.\n\nWe suggest not changing anything in this file.\n\"\"\"\n\nimport math\nimport logging\n\nfrom tqdm import tqdm\nimport numpy as np\n\nimport torch\nimport torch.optim as optim\nfrom torch.optim.lr_scheduler import LambdaLR\nfrom torch.utils.data.dataloader import DataLoader\n\nlogger = logging.getLogger(__name__)\n\nclass TrainerConfig:\n    # optimization parameters\n    max_epochs = 10\n    batch_size = 64\n    learning_rate = 3e-4\n    betas = (0.9, 0.95)\n    grad_norm_clip = 1.0\n    weight_decay = 0.1 # only applied on matmul weights\n    # learning rate decay params: linear warmup followed by cosine decay to 10% of original\n    lr_decay = False\n    warmup_tokens = 375e6 # these two numbers come from the GPT-3 paper, but may not be good defaults elsewhere\n    final_tokens = 260e9 # (at what point we reach 10% of original LR)\n    # checkpoint settings\n    ckpt_path = None\n    num_workers = 0 # for DataLoader\n\n    def __init__(self, **kwargs):\n        for k,v in kwargs.items():\n            setattr(self, k, v)\n\nclass Trainer:\n\n    def __init__(self, model, train_dataset, test_dataset, config):\n        self.model = model\n        self.train_dataset = train_dataset\n        self.test_dataset = test_dataset\n        self.config = config\n\n        # take over whatever gpus are on the system\n        self.device = 'cpu'\n        if torch.cuda.is_available():\n            self.device = torch.cuda.current_device()\n            self.model = torch.nn.DataParallel(self.model).to(self.device)\n\n    def save_checkpoint(self):\n        if self.config.ckpt_path is not None:\n            ckpt_model = self.model.module if hasattr(self.model, \"module\") else self.model\n            logger.info(\"saving %s\", self.config.ckpt_path)\n            torch.save(ckpt_model.state_dict(), self.config.ckpt_path)\n\n    def train(self):\n        model, config = self.model, self.config\n\n        # create the optimizer\n        no_decay = [\"bias\", \"LayerNorm.weight\"]\n        params_decay = [p for n, p in model.named_parameters() if not any(nd in n for nd in no_decay)]\n        params_nodecay = [p for n, p in model.named_parameters() if any(nd in n for nd in no_decay)]\n        optim_groups = [\n            {\"params\": params_decay, \"weight_decay\": config.weight_decay},\n            {\"params\": params_nodecay, \"weight_decay\": 0.0},\n        ]\n        optimizer = optim.AdamW(optim_groups, lr=config.learning_rate, betas=config.betas)\n\n        def run_epoch(split):\n            is_train = split == 'train'\n            model.train(is_train)\n            data = self.train_dataset if is_train else self.test_dataset\n            loader = DataLoader(data, batch_size=config.batch_size, num_workers=config.num_workers)\n\n            losses = []\n            pbar = tqdm(enumerate(loader), total=len(loader)) if is_train else enumerate(loader)\n\n            for it, (x, y) in pbar:\n\n                # place data on the correct device\n                x = x.to(self.device)\n                y = y.to(self.device)\n\n                # forward the model\n                with torch.set_grad_enabled(is_train):\n                    logits, loss = model(x, y)\n                    loss = loss.mean() # collapse all losses if they are scattered on multiple gpus\n                    losses.append(loss.item())\n\n                if is_train:\n\n                    # backprop and update the parameters\n                    model.zero_grad()\n                    loss.backward()\n                    torch.nn.utils.clip_grad_norm_(model.parameters(), config.grad_norm_clip)\n                    optimizer.step()\n\n                    # decay the learning rate based on our progress\n                    if config.lr_decay:\n                        self.tokens += (y >= 0).sum() # number of tokens processed this step (i.e. label is not -100)\n                        if self.tokens < config.warmup_tokens:\n                            # linear warmup\n                            lr_mult = float(self.tokens) / float(max(1, config.warmup_tokens))\n                        else:\n                            # cosine learning rate decay\n                            progress = float(self.tokens - config.warmup_tokens) / float(max(1, config.final_tokens - config.warmup_tokens))\n                            lr_mult = max(0.1, 0.5 * (1.0 + math.cos(math.pi * progress)))\n                        lr = config.learning_rate * lr_mult\n                        for param_group in optimizer.param_groups:\n                            param_group['lr'] = lr\n                    else:\n                        lr = config.learning_rate\n\n                    # report progress\n                    pbar.set_description(f\"epoch {epoch+1} iter {it}: train loss {loss.item():.5f}. lr {lr:e}\")\n\n            if not is_train:\n                logger.info(\"test loss: %f\", np.mean(losses))\n\n        self.tokens = 0 # counter used for learning rate decay\n        for epoch in range(config.max_epochs):\n\n            run_epoch('train')\n            if self.test_dataset is not None:\n                run_epoch('test')\n\n            self.save_checkpoint()\n"
  },
  {
    "path": "a5/src/utils.py",
    "content": "\"\"\" Utilities; we suggest changing none of these functions\n\nbut feel free to add your own.\n\"\"\"\n\nimport random\nimport numpy as np\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\n\ndef set_seed(seed):\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n\ndef top_k_logits(logits, k):\n    v, ix = torch.topk(logits, k)\n    out = logits.clone()\n    out[out < v[:, [-1]]] = -float('Inf')\n    return out\n\n@torch.no_grad()\ndef sample(model, x, steps, temperature=1.0, sample=False, top_k=None):\n    \"\"\"\n    take a conditioning sequence of indices in x (of shape (b,t)) and predict the next token in\n    the sequence, feeding the predictions back into the model each time. Clearly the sampling\n    has quadratic complexity unlike an RNN that is only linear, and has a finite context window\n    of block_size, unlike an RNN that has an infinite context window.\n    \"\"\"\n    block_size = model.get_block_size()\n    model.eval()\n    for k in range(steps):\n        x_cond = x if x.size(1) <= block_size else x[:, -block_size:] # crop context if needed\n        logits, _ = model(x_cond)\n        # pluck the logits at the final step and scale by temperature\n        logits = logits[:, -1, :] / temperature\n        # optionally crop probabilities to only the top k options\n        if top_k is not None:\n            logits = top_k_logits(logits, top_k)\n        # apply softmax to convert to probabilities\n        probs = F.softmax(logits, dim=-1)\n        # sample from the distribution or take the most likely\n        if sample:\n            ix = torch.multinomial(probs, num_samples=1)\n        else:\n            _, ix = torch.topk(probs, k=1, dim=-1)\n        # append to the sequence and continue\n        x = torch.cat((x, ix), dim=1)\n\n    return x\n\n\ndef evaluate_places(filepath, predicted_places):\n  \"\"\" Computes percent of correctly predicted birth places.\n\n  Arguments:\n    filepath: path to a file with our name, birth place data.\n    predicted_places: a list of strings representing the \n        predicted birth place of each person.\n\n  Returns: (total, correct), floats\n  \"\"\"\n  with open(filepath) as fin:\n    lines = [x.strip().split('\\t') for x in fin]\n    if len(lines[0]) == 1:\n      print('No gold birth places provided; returning (0,0)')\n      return (0,0)\n    true_places = [x[1] for x in lines]\n    total = len(true_places)\n    assert total == len(predicted_places)\n    correct = len(list(filter(lambda x: x[0] == x[1],\n      zip(true_places, predicted_places))))\n    return (float(total),float(correct))\n"
  },
  {
    "path": "a5/synthesizer.pretrain.dev.predictions",
    "content": "Montreal\nLondon\nSydney\nIran\nLondon\nLondon\nParis\nBristol\nSpain\nLondon\nChicago\nSofia\nLondon\nToronto\nLondon\nMelbourne\nMontreal\nCopenhagen\nShanghai\nLondon\nBudapest\nBerlin\nParis\nMelbourne\nManchester\nBudapest\nParis\nBeaufort\nTehran\nSeville\nBerlin\nLondon\nBerlin\nBudapest\nLondon\nSweden\nLondon\nChicago\nColumbus\nMilwaukee\nBrooklyn\nParis\nBrooklyn\nMontreal\nMelbourne\nConstantinople\nParis\nRochester\nChicago\nBelgrade\nBerlin\nLondon\nChicago\nBirmingham\nLiverpool\nParis\nParis\nBangor\nPrague\nBerlin\nStuttgart\nLondon\nWarsaw\nCairo\nMilwaukee\nBerlin\nVenice\nStuttgart\nBrazil\nLondon\nParis\nLondon\nSydney\nLondon\nMadrid\nShanghai\nLondon\nLondon\nParis\nManchester\nBelgrade\nCalifornia\nLondon\nLondon\nLondon\nParis\nParis\nCopenhagen\nLondon\nLondon\nChicago\nLondon\nLondon\nBudapest\nChicago\nChicago\nMontreal\nParis\nParis\nMontreal\nLondon\nLondon\nManchester\nChicago\nBudapest\nBaltimore\nBrooklyn\nSalford\nChicago\nLondon\nBerlin\nSheffield\nChicago\nBerkshire\nLondon\nCopenhagen\nBelgrade\nChicago\nMontreal\nChicago\nLondon\nLondon\nParis\nChicago\nBrooklyn\nLondon\nLondon\nParis\nManhattan\nSydney\nStuttgart\nMoscow\nLondon\nSydney\nLondon\nDublin\nLondon\nManchester\nBristol\nLondon\nBerlin\nBristol\nChicago\nBrooklyn\nLondon\nLondon\nLondon\nMassachusetts\nLondon\nBrooklyn\nBradford\nLondon\nLondon\nParis\nCoventry\nSantiago\nBerlin\nChicago\nParis\nLondon\nCaracas\nParis\nRome\nLondon\nLondon\nBrooklyn\nBudapest\nLondon\nChicago\nMontreal\nLondon\nShanghai\nBerlin\nEngland\nColumbus\nLondon\nChicago\nCopenhagen\nAustralia\nLondon\nManchester\nLondon\nMadrid\nLondon\nGlasgow\nRome\nMassachusetts\nMilwaukee\nBelgrade\nLondon\nParis\nLondon\nBerlin\nChicago\nChicago\nChicago\nPhiladelphia\nSpain\nLondon\nPrague\nBristol\nBergen\nGenoa\nLondon\nLondon\nMadrid\nBeijing\nParis\nMelbourne\nMilwaukee\nMelbourne\nBrooklyn\nLondon\nMontreal\nBerlin\nParis\nLondon\nCopenhagen\nBaltimore\nBudapest\nMelbourne\nBristol\nSantiago\nLondon\nBuckinghamshire\nLondon\nTehran\nParis\nLima\nBerlin\nPhiladelphia\nBudapest\nLondon\nChicago\nBristol\nBeijing\nSydney\nSweden\nSydney\nBerlin\nLondon\nBerlin\nBerlin\nBristol\nChicago\nLondon\nBerlin\nBudapest\nBristol\nBerlin\nLondon\nBergen\nAmsterdam\nSavannah\nLille\nSydney\nBrooklyn\nBerlin\nLondon\nLondon\nLondon\nSheffield\nBerkshire\nLondon\nStuttgart\nBerlin\nTbilisi\nLiverpool\nLondon\nChicago\nLondon\nLagos\nBelfast\nLondon\nBerlin\nRome\nParis\nBerlin\nMonroe\nBerlin\nParis\nParis\nLondon\nSydney\nTehran\nParis\nLondon\nLondon\nCalifornia\nChatham\nLondon\nBelfast\nLondon\nRotterdam\nBrooklyn\nParis\nBerlin\nLondon\nChicago\nParis\nManchester\nBrooklyn\nChicago\nBoston\nLondon\nBerlin\nBerlin\nBeijing\nParis\nCairo\nMelbourne\nLondon\nLondon\nCopenhagen\nBudapest\nLondon\nBrooklyn\nManchester\nVenice\nMinnesota\nManchester\nBudapest\nSydney\nParis\nStockholm\nBristol\nBristol\nLondon\nChicago\nTokyo\nBudapest\nLondon\nManhattan\nParis\nLondon\nChicago\nCopenhagen\nLondon\nRome\nLondon\nLondon\nBerlin\nCopenhagen\nLondon\nMelbourne\nParis\nLondon\nParis\nSydney\nMelbourne\nLondon\nMelbourne\nMelbourne\nSydney\nManhattan\nSweden\nSalford\nParis\nMontreal\nCopenhagen\nLondon\nColumbus\nLondon\nLondon\nSydney\nParis\nParis\nRochester\nParis\nSydney\nLondon\nBerlin\nMelbourne\nBelfast\nCambridge\nManhattan\nParis\nLondon\nLondon\nLondon\nLondon\nBudapest\nBristol\nLondon\nBerkshire\nLiverpool\nSydney\nParis\nLondon\nParis\nPhiladelphia\nBrooklyn\nBrooklyn\nMilan\nSantiago\nMontreal\nMontreal\nRome\nBerlin\nChicago\nPhiladelphia\nLondon\nParis\nCopenhagen\nLondon\nBerlin\nBoston\nLondon\nTehran\nBerlin\nLondon\nFrance\nBristol\nBath\nMontreal\nBrooklyn\nChicago\nMontreal\nBudapest\nPhiladelphia\nLondon\nBaltimore\nBergen\nLondon\nBudapest\nMontreal\nSweden\nBristol\nRochester\nBristol\nBaltimore\nCambridge\nParis\nCopenhagen\nLondon\nParis\nPoland\nLondon\nLondon\nLondon\nParis\nLondon\nBaltimore\nBeijing\nTokyo\nBeijing\nMassachusetts\nMoscow\nBrooklyn\nMontreal\nChicago\nMadrid\nBerlin\nToronto\nParis\nMassachusetts\nChicago\nLondon\nChicago\nBerkshire\nChicago\nChicago\nParis\nLondon\nBrooklyn\nParis\nBelfast\nLondon\nParis\nMarseille\nScotland\nChicago\nRome\nSweden\nEngland\nSplit\nMilan\nParis\nManchester\nTokyo\nBristol\nBristol\nBrooklyn\nCopenhagen\nTehran\nSydney\nParis\nBristol\nSweden\nParis\nChicago\nBoston\nLiverpool\nPhiladelphia\nManchester\nCalifornia\nNaples\nSydney\nManhattan\nLondon\n"
  },
  {
    "path": "a5/synthesizer.pretrain.test.predictions",
    "content": "London\nChicago\nManchester\nLondon\nColombo\nParis\nBerlin\nColumbus\nParis\nCoventry\nColumbus\nBerlin\nLondon\nLondon\nChatham\nBerlin\nLondon\nLondon\nChicago\nMoscow\nChicago\nParis\nChicago\nToulouse\nParis\nColumbus\nBaghdad\nParis\nBrooklyn\nBerlin\nChicago\nBristol\nLondon\nChicago\nBerlin\nCharleston\nBath\nLondon\nBerlin\nChicago\nSydney\nBrandon\nBrooklyn\nVenice\nChicago\nParis\nStockholm\nMontreal\nStockholm\nChicago\nBerlin\nBarcelona\nParis\nCalifornia\nMontreal\nBerlin\nChicago\nParis\nChina\nChicago\nBoston\nStuttgart\nParis\nLondon\nParis\nBerlin\nLondon\nSofia\nBerlin\nKarachi\nParis\nLondon\nBerlin\nBelfast\nBristol\nMontreal\nCopenhagen\nCopenhagen\nBudapest\nCarmel\nParis\nChicago\nParis\nScotland\nColumbus\nParis\nVenice\nLiverpool\nChicago\nSheffield\nBrooklyn\nSydney\nMontreal\nBristol\nLondon\nBristol\nLondon\nLondon\nHelsinki\nGenoa\nBoston\nLondon\nBristol\nChicago\nParis\nCopenhagen\nBrooklyn\nTokyo\nParis\nParis\nBrooklyn\nWales\nMontreal\nCoventry\nMadrid\nBudapest\nBaghdad\nVenice\nParis\nBrooklyn\nParis\nLondon\nShanghai\nParis\nMontreal\nParis\nBrooklyn\nSheffield\nChicago\nLondon\nSydney\nCalifornia\nParis\nTehran\nChicago\nBelfast\nParis\nCopenhagen\nParis\nChicago\nMelbourne\nParis\nCharleston\nBrooklyn\nBristol\nParis\nChicago\nLondon\nMelbourne\nBudapest\nBerlin\nBoston\nChatham\nToronto\nMelbourne\nChicago\nBaltimore\nLondon\nChicago\nCopenhagen\nChicago\nVerona\nCalifornia\nDublin\nColumbus\nBow\nChicago\nParis\nChicago\nMelbourne\nParis\nSydney\nMilan\nCopenhagen\nSheffield\nBrooklyn\nStockholm\nBelfast\nBrooklyn\nLondon\nChicago\nChicago\nParis\nCalifornia\nLondon\nStockholm\nBudapest\nSydney\nShelby\nParis\nParis\nSydney\nBoulder\nCambridge\nAmsterdam\nLondon\nColumbus\nParis\nSheffield\nLondon\nLondon\nTehran\nParis\nBerlin\nCalifornia\nParis\nRome\nChicago\nBelfast\nBrooklyn\nBerlin\nLondon\nLiverpool\nBristol\nLondon\nMontreal\nSydney\nParis\nLondon\nShelby\nBudapest\nBaltimore\nMontreal\nParis\nBerlin\nMelbourne\nMontreal\nParis\nChicago\nTokyo\nPhiladelphia\nMontreal\nBucharest\nLondon\nLondon\nMontreal\nBrooklyn\nCalifornia\nStuttgart\nParis\nRome\nBrooklyn\nLondon\nParis\nToledo\nMontreal\nMarseille\nParis\nArmagh\nBrooklyn\nMelbourne\nTurin\nBudapest\nChicago\nCanada\nLondon\nBrooklyn\nMoscow\nLondon\nParis\nBrooklyn\nBerlin\nParis\nCanada\nParis\nBristol\nSpain\nParis\nMelbourne\nChicago\nMontreal\nLimerick\nCalais\nChicago\nLondon\nChicago\nMelbourne\nParis\nMontreal\nParis\nLondon\nBristol\nBelfast\nVenice\nBrooklyn\nBudapest\nChicago\nLondon\nChicago\nMontreal\nManchester\nBristol\nTokyo\nCopenhagen\nBath\nBerlin\nBristol\nBarcelona\nChicago\nLondon\nSydney\nBerlin\nLondon\nParis\nMontreal\nSydney\nBerlin\nBergen\nCoventry\nColorado\nParis\nLondon\nMontreal\nMontreal\nLondon\nBarcelona\nCanada\nBelgium\nColumbus\nParis\nSofia\nChicago\nBelgrade\nCalifornia\nSydney\nMontreal\nSydney\nParis\nSalford\nSicily\nParis\nBerlin\nMilan\nMoscow\nChicago\nParis\nPhiladelphia\nToledo\nBristol\nBerlin\nCopenhagen\nLondon\nStockholm\nBarcelona\nBrooklyn\nChicago\nLondon\nChicago\nParis\nBrooklyn\nChina\nMontreal\nLondon\nSplit\nBrooklyn\nParis\nTokyo\nLondon\nLondon\nChicago\nLondon\nLondon\nBergen\nManhattan\nParis\nLondon\nParis\nMilwaukee\nSalisbury\nShanghai\nLondon\nParis\nParis\nDublin\nBerlin\nBerlin\nBristol\nMadison\nParis\nParis\nLondon\nChicago\nMarseille\nToronto\nCalifornia\nBerlin\nMontreal\nChicago\nBudapest\nBerlin\nLondon\nSavannah\nCopenhagen\nBeijing\nCambridge\nLondon\nCopenhagen\nChicago\nBelgium\nBudapest\nBoston\nManchester\nLiverpool\nSydney\nBrooklyn\nChicago\nSydney\nSantiago\nLondon\nCopenhagen\nTehran\nLondon\nBrooklyn\nPennsylvania\nSydney\nMontreal\nLondon\nCambridge\nBarcelona\nLondon\nBristol\nSydney\nSydney\nBrooklyn\nBaltimore\nMontreal\nBristol\nBelfast\nCopenhagen\nTokyo\nBudapest\nParis\nParis\nSheffield\nSalford\nChicago\nParis\n"
  },
  {
    "path": "a5/vanilla.nopretrain.dev.predictions",
    "content": "Paris\nParis\nMoscow\nAustralia\nBudapest\nLiverpool\nCambridge\nKerala\nNaples\nSheffield\nJamaica\nToronto\nWarsaw\nMontreal\nEngland\nMarseille\nMontreal\nDubai\nShanghai\nMelbourne\nLjubljana\nLyon\nAmsterdam\nParis\nIndia\nAustralia\nParis\nBudapest\nRome\nMaratttan\nExeter\nConsta\nFrance\nMontreal\nLahore\nDemark\nGlasgow\nWarsaw\nEton\nCleveland\nAustralia\nNaples\nConcord\nMontreal\nFrankfurt\nAmsterdam\nCharleshire\nSheffield\nIreland\nCopenhagen\nLondon\nCoventry\nBrooklyn\nLondon\nLyon\nMadrid\nSacramento\nWestminster\nAntins\nCopenhagen\nLiverpool\nCoventry\nVenice\nComo\nMinnesotr\nLondon\nRome\nToksa\nLebarsgon\nOslo\nWaterford\nAberdeen\nCanbary\nLondon\nSalford\nCasablanca\nToronto\nSydney\nRome\nAustralia\nShanghai\nLondon\nWestminster\nMontreal\nCambridge\nMontreal\nSacramento\nColumbus\nGermany\nLahore\nMelbourne\nSatiample\nChatcas\nTokyo\nTrinidad\nNevada\nRiga\nDublin\nParis\nLynn\nParis\nSydney\nSalford\nLisbon\nParis\nARocotttrd\nChicago\nPague\nPetth\nLyon\nCambridge\nAmsterdam\nWarsaw\nMadrid\nStockholm\nParis\nFrance\nLiverpool\nCalifornia\nMurich\nCambridge\nCharleston\nCuba\nSaskatchewan\nTronto\nComerk\nCalais\nParis\nMadrid\nNanjing\nParis\nParis\nBrooklyn\nPhiladelphia\nChanai\nMontreal\nCambridge\nGlasgow\nBudapest\nLondon\nRadinga\nSameroutt\nDallas\nCopenhagen\nChicago\nBelfast\nBeredford\nLondon\nMemphis\nLondon\nParis\nComo\nStockholm\nRiga\nCopenhagen\nFrankfurt\nLondon\nNewark\nParis\nNorfolk\nPaguris\nParis\nMadle\nParis\nLondon\nAugsburg\nMiscow\nToulouse\nExeter\nMachester\nParis\nShanghai\nSheffield\nDallas\nLondon\nParis\nFrance\nConstantinople\nGlasgow\nLondon\nBrooklyn\nCairo\nTourkey\nLublin\nSpain\nBangor\nRochester\nGermany\nKazan\nCambridge\nJamaica\nParis\nNorwich\nMachester\nBrooklyn\nNorway\nNorwich\nNaples\nSdney\nMilan\nMelbourne\nGlasgow\nParis\nEngland\nCambridge\nParis\nIran\nMelbourne\nMoscow\nNaples\nRome\nHamilton\nWestminster\nDetroit\nMelbourne\nGlasgow\nLondon\nSeatttle\nCambridge\nMadrid\nPrague\nMelbourne\nParis\nBaghrator\nBrandan\nChicago\nTridad\nLanca\nSacramento\nPhiladelphia\nChicago\nMinnichinata\nNorway\nMontreal\nIllinois\nChina\nLondon\nStockholm\nSydney\nParis\nLeiden\nIndia\nLondon\nLondon\nIreland\nExeter\nSydney\nWarsaw\nCroydon\nAustralia\nBelgrade\nBudapest\nMacon\nOslo\nColumbus\nWales\nWellington\nParis\nCalis\nMontreal\nBucharest\nAklaide\nWarsaw\nLondon\nCheshire\nGeorgia\nSofia\nChicago\nLiverpool\nChattan\nLondon\nSplit\nColumbus\nMontreal\nNottingham\nMelbourne\nMelbourne\nColasta\nAlbymany\nNorwich\nGlasgow\nParis\nIstanbul\nGloucester\nMelbourne\nVienna\nCanberra\nLondon\nLondon\nYork\nMelbourne\nLiverpool\nBirmingham\nIndia\nBoston\nAuberia\nBristol\nIreland\nLondon\nParis\nLondon\nChanaa\nColumbus\nLondon\nPhiladelphia\nBerlin\nVienna\nAustralia\nSydney\nDublin\nHeidelberg\nLondon\nLondon\nCambridge\nSydney\nBerlin\nColumbus\nMexico\nMontreal\nEdinburgh\nBelgium\nFrance\nIreland\nRome\nRome\nSwitzerland\nLahore\nEdinburgh\nBradford\nTehran\nChicago\nLondon\nEdinburgh\nConstan\nTrinidad\nRochester\nChicago\nLondon\nStirlitg\nNanjing\nEngland\nBarcelona\nLyon\nEronton\nMilan\nWestminster\nBiristol\nNarkshire\nCambridge\nLondon\nLondon\nMinnesota\nRome\nSofia\nManhattan\nParis\nLondon\nVienna\nRochester\nPrague\nHolstein\nLondon\nPennsylvania\nToulouse\nDublin\nCambridge\nParis\nNanghar\nAustralia\nCalifornia\nNorway\nLeipzig\nTacoma\nIreland\nMadrid\nFulham\nLondon\nBerlin\nMadrid\nLyon\nRochester\nIreland\nStockholm\nEngland\nColumbus\nRome\nWaterford\nMelbourne\nMelbourne\nSydney\nMontreal\nChicago\nMadrid\nNaples\nPhiladelphia\nRome\nDublin\nParis\nTanmpokshire\nNevada\nSy\nLondon\nMilwaukeee\nParis\nRome\nCairo\nLahore\nJamaica\nRome\nChicago\nMontreal\nMarid\nLondon\nLondon\nGlasgow\nLondon\nTehran\nhanghai\nChicago\nChicago\nLiverpool\nLondon\nChicago\nLiverpool\nCairo\nRome\nLondon\nChicago\nMaryland\nLisbon\nIreland\nSacramento\nAmsterdam\nMontrd\nToronto\nMadrid\nWarsaw\nHamilton\nBristol\nOssa\nCalifornia\nMontreal\nNalk\nMinneapolis\nAugsburg\nParis\nParis\nSyracuse\nGermany\nAustralia\nTacomo\nAkson\nLondon\nSeatttle\nLjubljana\nMachester\nArgentina\nLondon\nArgentina\nOhessa\nAustralia\nMilwaukee\nMontreal\nEngland\nLondon\nParis\nPortland\nChambridge\nLeiden\nParid\nDublin\nBaghdad\nStttheample\nCairo\nRome\nDublin\nParis\nTehran\nNormaydad\nCairo\nStrantiago\nLima\nToklonto\nRiga\nBangkok\nChesterfield\nToronto\nMontreal\nAustria\nEgypt\nMadrid\nBrooklyn\nBudapest\nEngland\nDerry\nWentworce\nGenoa\nMiami\nParis\nVienna\n"
  },
  {
    "path": "a5/vanilla.nopretrain.test.predictions",
    "content": "Sydney\nBudapest\nManchester\nKeral\nLondon\nRochester\nConcord\nMontreal\nParis\nSydney\nPoland\nLondon\nWinnipeg\nIstanbul\nEngland\nGlasgow\nSofia\nChicago\nJersey\nMadrid\nTurkey\nMami\nHamingh\nEdinburgh\nEngland\nSydney\nSeatttle\nMontreal\nBaracelond\nOslo\nBohemia\nMontreal\nChaicago\nSyracuse\nAlande\nManchester\nMilwaukee\nMontreal\nLondon\nCanberra\nBelgium\nRome\nAuckland\nMelbourne\nBerlin\nToronto\nMiami\nRome\nMontreal\nChicago\nMexico\nMidrid\nSplit\nStirling\nBradford\nChicago\nStuttgart\nLeipzig\nCasablanca\nMelbourne\nAustralia\nHertford\nEdinburgh\nConada\nMidrid\nBangor\nKent\nOdessa\nLondon\nLondon\nBrigham\nSofia\nLondon\nLondon\nLondon\nAnnapolis\nMunich\nSpringfield\nStockholm\nParis\nRome\nChaicago\nParis\nBrookly\nEdinburgh\nParis\nPrague\nMontreal\nBerlin\nPeland\nBest\nElgin\nParis\nMontreal\nSantiago\nCalais\nIndia\nParis\nCterbury\nMontreal\nCalifornia\nChaicago\nChide\nSantirlington\nMexico\nJerusem\nCanada\nTehran\nRechester\nBangor\nEngland\nMingham\nJerusalem\nSpain\nRome\nBahai\nBathangam\nParis\nMilwaukee\nParis\nSalfinghe\nWestminster\nBerlin\nRome\nMorocco\nEngland\nBirmingham\nChicago\nOslo\nNewark\nCumberidge\nBeth\nSydney\nAlas\nSydney\nCairo\nPhiladelphia\nRome\nParis\nDublin\nChage\nSacramento\nRochester\nDublin\nBristol\nParis\nChage\nColumbia\nRome\nSplit\nBudapest\nCornwall\nChicago\nFrance\nTehran\nLeipzig\nCleveland\nOdessa\nAustralia\nSofia\nDublin\nMadrid\nPrague\nVenice\nLondon\nAuckland\nWatford\nLondon\nPhiladelphia\nTehran\nEgypt\nManchester\nParis\nLondon\nCairo\nEngland\nScotland\nNebrgen\nSplit\nchester\nMiddlesbrough\nWarsaw\nCacas\nLondon\nSavannah\nAlexandria\nChicago\nToronto\nNaples\nParis\nManchester\nCheshire\nMelbourne\nToulouse\nEdinburgh\nTehran\nLondon\nOdessa\nCCCheenhio\nMadrid\nSpain\nTehran\nRome\nCopenhagen\nEdinburgh\nAthens\nTurin\nPhiladelphia\nBelgium\nIreland\nRotterdam\nBeth\nCroydon\nLeicester\nNorway\nAntwa\nMunich\nToulouse\nOttawa\nOslo\nBelfast\nMadrid\nWinnipeg\nHereford\nCasablanca\nOhio\nCuba\nScotland\nConcord\nIstanbul\nBradford\nSantiago\nSoutia\nVenice\nBengen\nMelbourne\nBelfast\nLondon\nLondon\nLondon\nBucharest\nStuttgart\nLondon\nChicago\nRome\nWarsaw\nParis\nCalifornia\nParis\nScotland\nRome\nTurin\nRiga\nTehran\nSpaineg\nDallas\nRome\nMadrid\nMelbourne\nNaples\nMadrid\nCombridge\nComberidge\nAmsterdam\nMelbourne\nSyracuse\nDublin\nRome\nSeville\nLahore\nStutgart\nLima\nDublin\nBohtire\nChage\nTaceoma\nLuxembourg\nAmsterdam\nRochester\nRome\nOslo\nBerlin\nParis\nLondon\nMachester\nBergen\nBanghai\nMontreal\nBelfast\nNorway\nGlasgow\nManchester\nCanada\nAugsburg\nMontreal\nChicago\nBristol\nParis\nBrigham\nMontreal\nWarsaw\nSydney\nRome\nMexico\nFrance\nRome\nMaryland\nGermany\nChatttan\nLiverpool\nEgypt\nParis\nRome\nSpain\nParis\nBahrest\nBonn\nFiji\nEngland\nSpain\nCuba\nDublin\nCheshire\nMelbourne\nRaga\nCuba\nParis\nMunich\nSpringfld\nParis\nDetroit\nLyon\nSplit\nBeston\nWinipeg\nToronto\nManchester\nBaghdad\nMontreal\nBerlin\nSattle\nManchester\nLiverpool\nFrance\nRome\nLondon\nIndia\nGlasgow\nGlasgow\nDallas\nBudapest\nWestminster\nEngland\nLondon\nManchester\nHamilton\nSouthampton\nParis\nBradford\nBangor\nChicago\nMilwaukee\nBest\nGranada\nFrankfurt\nLondon\nRochester\nArgentina\nStockholm\nMontreal\nBerkey\nMontreal\nNewark\nMobile\nEdinburgh\nSantiago\nEdinburgh\nWinnipeg\nMontreal\nManchester\nBeth\nCambridge\nTurkey\nBadapest\nMadrid\nSyracuse\nRome\nConstantinople\nSofia\nMontreal\nMunich\nDublin\nHereford\nShanghai\nRome\nNorfolk\nMoscow\nBathamore\nHelsinki\nChicago\nVenice\nSyracuse\nBudapest\nOslo\nFlintius\nWaterford\nCanada\nTacomo\nLondon\nParis\nIreland\nMelbourne\nRome\nOslo\nGranada\nMelbourne\nLondon\nNorwich\nLondon\nAlberdeen\nParis\nOdesssa\nLumblin\nLondon\nBradford\nRussia\nExeter\nLondon\nEgypt\nMelbourne\nBirmingham\nAthens\nWinnipeg\nSydney\nAntwerp\nShanghai\nSpain\n"
  },
  {
    "path": "a5/vanilla.pretrain.dev.predictions",
    "content": "Montreal\nPrague\nVienna\nBangalore\nDetroit\nAmsterdam\nSydney\nKentucky\nBarcelona\nMontreal\nParis\nTurkey\nEdinburgh\nStockholm\nPittsburgh\nMilan\nParis\nToronto\nBeijing\nSydney\nTurkey\nSheffield\nPortugal\nRome\nCumberland\nItaly\nSheffield\nBrooklyn\nCaracas\nPortugal\nStuttgart\nBurnley\nIstanbul\nHelsinki\nLondon\nPrague\nDerry\nWarsaw\nLondon\nChicago\nEngland\nAustralia\nComo\nMontreal\nMontreal\nDublin\nGlasgow\nOrlando\nRochester\nLondon\nPittsburgh\nWarsaw\nAustralia\nEdinburgh\nEdinburgh\nSpain\nLondon\nWarsaw\nBrooklyn\nParis\nFrankfurt\nCalifornia\nWarsaw\nIran\nGreenville\nPhiladelphia\nVenice\nWorcester\nMexico\nAlgiers\nWaterloo\nBoston\nDurham\nLondon\nStockholm\nCornwall\nMinneapolis\nLondon\nLondon\nGlasgow\nCanada\nAthens\nSydney\nLondon\nLeeds\nYorkshire\nMichigan\nPittsburgh\nGlasgow\nBoston\nBrooklyn\nChicago\nMelbourne\nHolland\nAmsterdam\nParis\nEgypt\nParis\nYorkshire\nSpain\nHollywood\nGlasgow\nStuttgart\nUkraine\nWarsaw\nJohn\nDetroit\nAlexandria\nBaltimore\nWorcester\nSpringfield\nAmsterdam\nParis\nMontreal\nLondon\nLondon\nZagreb\nChicago\nWaterford\nDerby\nBelfast\nChicago\nToulouse\nSheffield\nBrazil\nSiena\nIreland\nParis\nMontreal\nGeorge\nParis\nOslo\nBerlin\nMoscow\nAlexandria\nChicago\nChicago\nPennsylvania\nLondon\nMontreal\nParis\nPhiladelphia\nDallas\nLondon\nLondon\nMilwaukee\nToronto\nMassachusetts\nBoston\nOntario\nTurin\nSingapore\nVienna\nMoscow\nRichmond\nLahore\nSalford\nMontreal\nIstanbul\nWaterford\nGenoa\nParis\nBudapest\nFlorida\nLondon\nGlasgow\nMelbourne\nDelaware\nStockholm\nAmsterdam\nEdinburgh\nBeijing\nStockholm\nParis\nWestminster\nChicago\nFlorence\nNorway\nAdelaide\nCambridge\nHamilton\nEngland\nManhattan\nDublin\nHull\nBelgrade\nMinnesota\nMontreal\nPrague\nVienna\nToronto\nBergen\nLeipzig\nAustralia\nKentucky\nEdmonton\nDerry\nMontreal\nIllinois\nPrague\nDayton\nAkron\nBudapest\nBirmingham\nEdinburgh\nCopenhagen\nIran\nTrinidad\nBelfast\nWinnipeg\nBaltimore\nNewark\nLondon\nSantiago\nBristol\nMinnesota\nLondon\nColorado\nSpain\nAthens\nToronto\nBoston\nNevada\nLiverpool\nAthens\nCanberra\nAthens\nParis\nShanghai\nLeipzig\nPrague\nPoland\nBirmingham\nSydney\nMontreal\nDublin\nOttawa\nSulderland\nWarrington\nBoulder\nPhiladelphia\nSpringfield\nBoston\nLiverpool\nIreland\nManchester\nPhiladelphia\nBudapest\nGlasgow\nLondon\nWorcester\nBergen\nInverness\nSurrey\nAmsterdam\nSalford\nBoston\nComo\nParis\nBoston\nBristol\nSofia\nOntario\nStuttgart\nPrague\nParis\nTbilisi\nFinland\nScotland\nLondon\nLawrence\nZagreb\nVienna\nWatford\nChicago\nRome\nLisbon\nManhattan\nCharleston\nPhiladelphia\nOslo\nHamburg\nGreenville\nAustralia\nTehran\nParis\nHamilton\nParis\nLondon\nCharleston\nBoston\nBrooklyn\nBirmingham\nBasel\nLondon\nHamilton\nBerlin\nToronto\nLiverpool\nNaples\nMiddlesex\nBradford\nPrague\nLondon\nBerlin\nStanford\nParis\nKarachi\nVienna\nStockholm\nOttawa\nBuffalo\nGlasgow\nPhiladelphia\nTirana\nLondon\nChicago\nMontreal\nTehran\nOslo\nChicago\nParis\nEngland\nEdinburgh\nErie\nMontreal\nIllinois\nEngland\nMunich\nTokyo\nAngus\nLondon\nMinneapolis\nParis\nAustralia\nDetroit\nIrvine\nBrooklyn\nAthens\nAustin\nCanberra\nAustralia\nParis\nEngland\nAustin\nMontreal\nItaly\nParis\nGlasgow\nBirmingham\nLondon\nStockholm\nVenice\nSofia\nCambridge\nAlabama\nAmsterdam\nDallas\nRome\nPrague\nGlasgow\nMelbourne\nLondon\nLondon\nDunbar\nParis\nAthens\nRochester\nParis\nSweden\nIndia\nLiverpool\nGermany\nChicago\nItaly\nFulham\nDetroit\nDayton\nAntwerp\nWaterford\nGothenburg\nOslo\nLiverpool\nExeter\nChicago\nRome\nAdelaide\nNaples\nPennsylvania\nParis\nChicago\nAldous\nBristol\nStuttgart\nBucharest\nFlorence\nAlbany\nMadrid\nSpain\nBaltimore\nCambridge\nCambridge\nSwitzerland\nCanberra\nSheffield\nVienna\nSydney\nSingapore\nRome\nBradford\nLondon\nMarseille\nSpain\nChicago\nAmsterdam\nRochester\nTurkey\nOslo\nPakistan\nLondon\nBoston\nMelbourne\nSheffield\nBerlin\nDetroit\nManhattan\nSydney\nMontreal\nMelbourne\nAustralia\nWilmington\nOklahoma\nLondon\nParis\nWinnipeg\nParis\nWarsaw\nSydney\nAuburn\nRochester\nMilwaukee\nMontreal\nVienna\nBeijing\nMexico\nNanjing\nPeterborough\nCanberra\nParis\nPalermo\nDallas\nJamaica\nEngland\nEverett\nFrance\nAmsterdam\nToledo\nNewport\nChicago\nIstanbul\nKarachi\nToulouse\nIndia\nCambridge\nBrooklyn\nBrooklyn\nParis\nChicago\nEngland\nParis\nColumbus\nManchester\nParis\nAntwerp\nManchester\nTurkey\nSilesia\nTrinidad\nMilwaukee\nTurkey\nMilwaukee\nChicago\nBucharest\nCopenhagen\nBangalore\nAmsterdam\nParis\nToronto\nLille\nLondon\nCuba\nBoston\nBirmingham\nHamilton\nEngland\nCharlotte\nItaly\nRotterdam\nEdinburgh\nEngland\n"
  },
  {
    "path": "a5/vanilla.pretrain.test.predictions",
    "content": "India\nCalifornia\nMaine\nBirmingham\nEdmonton\nPasadena\nBelgium\nManchester\nMarseille\nLondon\nMelbourne\nLeipzig\nCroydon\nPrague\nBathurst\nOslo\nMilwaukee\nRichmond\nChicago\nGermany\nLincoln\nNaples\nBethledo\nParis\nMelbourne\nMelbourne\nPerth\nFlorence\nEngland\nAnnapolis\nWorcester\nBethledon\nEngland\nAmsterdam\nEngland\nMinneapolis\nLiverpool\nEngland\nOslo\nCanada\nDublin\nJerusalem\nDublin\nMilan\nGermany\nToronto\nEngland\nRome\nOslo\nChicago\nExeter\nWatford\nPlymouth\nBarcelona\nSwindon\nGhent\nLondon\nParis\nKansas\nBristol\nSpain\nAmsterdam\nMadrid\nOxford\nMoscow\nBudapest\nIran\nMilwaukee\nPennsylvania\nGermany\nNaples\nLondon\nCarthage\nOntario\nPhiladelphia\nParis\nPhiladelphia\nCanada\nGlasgow\nAlexandria\nEngland\nBoise\nParis\nOttawa\nPrague\nLiverpool\nMadrid\nLimerick\nDayton\nCopenhagen\nMelbourne\nChicago\nGenoa\nMansfield\nWarsaw\nNuremberg\nInverness\nEngland\nKingston\nPalermo\nMinneapolis\nKerala\nEdmonton\nBelfast\nMelbourne\nEstonia\nSpringfield\nChicago\nEngland\nTurin\nMontreal\nRochester\nWilmington\nCharleston\nFrance\nSplit\nBarcelona\nFlorence\nSantiago\nNewark\nBerlin\nLondon\nLisbon\nWarsaw\nMontreal\nBackest\nRochester\nMorocco\nSheffield\nCambridge\nHamilton\nPoland\nDublin\nKarachi\nPhiladelphia\nBaltimore\nMinneapolis\nFrance\nQueensland\nIllinois\nNorwich\nWaterford\nDallas\nGermany\nLiverpool\nMalta\nAmsterdam\nLondon\nMelbourne\nZagreb\nLondon\nTurkey\nArmagh\nIran\nTirana\nGDE\nLiverpool\nIstanbul\nSpain\nTbilisi\nLondon\nParis\nPike\nManchester\nRotterdam\nParis\nWinnipeg\nKazan\nLondon\nLyon\nPrague\nNewton\nNaples\nKeefa\nMinneapolis\nEdinburgh\nPhiladelphia\nLublin\nAuburn\nBirmingham\nPrague\nChicago\nParis\nParis\nLondon\nLeipzig\nNorfolk\nLondon\nHavana\nMontreal\nSouthampton\nSydney\nHungary\nEngland\nIstanbul\nNanjing\nLondon\nGranada\nDayton\nBorneo\nBaghdad\nTehran\nMinnesota\nBristol\nLondon\nAmsterdam\nBrooklyn\nBelfast\nMinneapolis\nBaltimore\nRochester\nOttawa\nOslo\nMississauga\nScotland\nVienna\nVirginia\nToulouse\nLondon\nFrance\nFrankfurt\nLondon\nBirmingham\nParis\nToronto\nMadrid\nDublin\nPortland\nPortland\nPlymouth\nDublin\nToronto\nItaly\nParis\nPoland\nMilan\nBradford\nEdinburgh\nOslo\nAthens\nManhattan\nMarseille\nSpringfield\nGranada\nMauritius\nSydney\nMarseille\nNewark\nRichmond\nManchester\nMontreal\nParis\nVerona\nBrooklyn\nBoston\nRichmond\nBucharest\nSweden\nLublin\nMadison\nGermany\nParis\nMalta\nGenoa\nVenice\nToronto\nLondon\nParis\nRichmond\nNaples\nBudapest\nParis\nMinnesota\nMelbourne\nBaghdad\nChicago\nMontreal\nLondon\nFrankfurt\nOslo\nLondon\nHamilton\nNorfolk\nManhattan\nGlasgow\nBremen\nArmagh\nOklahoma\nBudapest\nNorwich\nAmsterdam\nBristol\nTokyo\nAlexandria\nParis\nBudapest\nKentucky\nAthens\nLondon\nChicago\nLondon\nSydney\nItaly\nParis\nLondon\nFlorida\nBristol\nBergen\nAuburn\nPortland\nSalisbury\nNorwich\nEdinburgh\nOklahoma\nWellington\nCanterbury\nStuttgart\nColumbus\nQueensland\nNorwich\nAmsterdam\nEngland\nLondon\nFlorence\nSydney\nPortland\nCambridge\nMoscow\nEdinburgh\nFlorida\nDublin\nEngland\nSofia\nKiev\nHavana\nPortland\nCasablanca\nBaghdad\nSønderborg\nToledo\nLondon\nCambridge\nMelbourne\nBirmingham\nBerlin\nMontreal\nMelbourne\nGlasgow\nAthens\nBristol\nBudapest\nHollywood\nVictoria\nAmsterdam\nLondon\nMelbourne\nAlgiers\nLondon\nHarrisburg\nNorwich\nFleming\nEngland\nEngland\nLondon\nLondon\nCairo\nParis\nSingapore\nPittsburgh\nMexico\nBudapest\nParis\nGlasgow\nMelbourne\nOslo\nLondon\nLondon\nAthens\nLondon\nToronto\nDundee\nMichigan\nFlorence\nLisbon\nRome\nChicago\nMilan\nChicago\nSofia\nGlasgow\nSplit\nParis\nCasablanca\nAmsterdam\nRome\nDublin\nRotterdam\nMilwaukee\nLondon\nSheffield\nAugsburg\nJersey\nYorkshire\nDallas\nLiverpool\nWisconsin\nDundee\nPhiladelphia\nMontreal\nIreland\nKazan\nNewark\nLondon\nEngland\nAthens\nMelbourne\nLondon\nDunbar\nLondon\nLondon\nLondon\nDurham\nBudapest\nBradford\nCanada\nToronto\nEdmonton\nIllinois\nBelfast\nToledo\nBudapest\nBristol\nParis\nCambridge\nStockholm\nShanghai\nEngland\n"
  },
  {
    "path": "a5/wiki.txt",
    "content": "Khatchig Mouradian. Khatchig Mouradian is a journalist, writer and translator born in Lebanon .\nJacob Henry Studer. Jacob Henry Studer (26 February 1840 Columbus, Ohio - 2 August 1904 New York City) was a printer, lithographer, painter, and popular ornithologist active in Columbus, Ohio from the 1860s to the 1880s .\nJohn Stephen. Born in Glasgow, Stephen became a welder's apprentice on leaving school .\nGeorgina Willis. Georgina Willis is an award winning film director who was born in Australia and now lives in London .\nStanley Corrsin. Corrsin was born on 3 April 1920 in Philadelphia, Pennsylvania .\nEduard Ender. Eduard Ender (3 March 1822 Rome -- 28 December 1883 London) was an Austrian painter .\nJohn Fisher. Born in Glasgow, Fisher is a graduate of the London Opera Centre, the Royal Academy of Music, and the University of Glasgow .\nIago Dekanozishvili. Iago Dekanozishvili (born in 1951 in Tbilisi) is a Georgian artist, a graduate of the Tbilisi State Academy of Fine Arts .\nLucy Toulmin Smith. Lucy Toulmin Smith was born at Boston, Massachusetts, USA, on 21 November 1838, of English parents, Joshua Toulmin Smith and his wife Martha .\nGeorge Osborn. Osborn was born at Rochester in 1808 .\nLeslie Hofton. Born in Sheffield, Hofton began his career at Kiveton Park, before moving to Glossop via Worksop Town and Denaby United in April 1908 .\nChiyoki Ikeda. Chiyoki Ikeda (born 3-11-1920 Honolulu, Hawaii; died 3-17.1960) was listed in the CIA Memorial Wall on May 14, 1997 .\nGeoffrey Nutter. Geoffrey Nutter is an American poet, born in Sacramento and based in New York .\nEyolf Kleven. Born in Copenhagen, Kleven played as a midfielder for AB from 1927 to 1944 .\nMarvano. Marvano and Haldeman also worked together on a comic adaption of the novel Buying time called Dallas Barr .\nNaïma Azough. Naïma Azough (born April 1, 1972 in Asdif, Morocco) is a Dutch politician for GreenLeft .\nEugenia Popa. Eugenia Popa (born September 10, 1973 in Bucharest, Romania) is a retired Romanian artistic gymnast .\nDouglas P. Fry. Douglas P Fry (born 20 September 1953 in Boston), is a docent and professor of anthropology, teacher in the Faculty of Social and Caring Sciences at Åbo Akademi University in Finland and adjunct research scientist in the Bureau of Applied Research in Anthropology at the University of Arizona .\nHans Gefors. Hans Gefors (born 8 December 1952 in Stockholm) is a Swedish composer .\nSohail Fazal. Sohail Fazal (born November 11, 1967, Lahore, Punjab) is a former Pakistani cricketer who played two ODIs in 1989 .\nJames Johnson. Born in Virginia, Johnson completed preparatory studies .\nHåvard Rem. Håvard Rem (born 7 February 1959 in Oslo) is a Norwegian author, living in Telemark .\nHubert Schiffer. Father Hubert Schiffer, born in Germany in 1915, was one of eight Jesuits who survived the bomb dropped on Hiroshima .\nIvan Petch. Born in Concord, New South Wales, Petch attended Putney Primary School and Fort Street Boys High School before receiving his tertiary education in electrical engineering and music at Sydney Technical College .\nGuido Marzorati. Guido Marzorati (born 1975, Venice, Italy) is a guitarist, singer, and songwriter .\nSean Hickey. Sean Hickey is a composer, born in Detroit, Michigan, in 1970 and currently based in New York .\nHector de Castro. Born in Constantinople, de Castro was educated in Paris and Vienna .\nLloyd Goffe. Lloyd Goffe (born 30 January 1913 in Reading - died 1984)was a motorcycle speedway rider who started racing at Custom House for the West Ham Hammers in 1937, transferring to the Harringay Racers that season .\nAlois Wachsman. Alois Wachsman (14 May 1898 Prague - 16 May 1942 Jičín) was a Czech painter, stage designer and architect .\nMartin Connor. Born in Trenton, New Jersey, Connor attended parochial schools as a child, graduating first in his class from Notre Dame High School in Lawrenceville .\nMohammad Hossein Barkhah. Mohammad Hossein Barkhah (, born 24 January 1977 in Tehran) is a retired weightlifting champion in Iran .\nJames Robert Rhind. James Robert Rhind, architect, was born in Inverness, Scotland in 1854 and trained as an architect in his father's local practice .\nJean Hamilius. Jean Hamilius (born 5 February 1927 in Luxembourg City) is a former Luxembourgian politician and government minister from the Democratic Party .\nDanny Seward. Danny Seward is a British television actor who was born in Salford, Greater Manchester, England on 17 May 1976 .\nStephen Grey. Stephen Grey (b. 1968 in Rotterdam, Netherlands) is an award-winning British investigative journalist and author best known for revealing details of the CIA's program of 'extraordinary rendition .\nLouie Verrecchio. Born on August 4, 1961 in Baltimore, MD, Verrecchio attended St Joseph's Monastery School and Mount St Joseph's High School in Baltimore, MD before attending the University of Maryland from 1979-1981 .\nMarcus Junkelmann. Marcus Junkelmann (* Oct 2 1949 in Munich) is a German historian and experimental archeologist .\nJohn Dodington. John Dodington (born 3 July 1945) is a Canadian operatic bass .\nGraham Salisbury. Graham Salisbury (also known as Sandy Salisbury) (born April 11, 1944, Philadelphia, Pennsylvania) is an American author .\nBunny Johnson. Bunny Johnson born 10 May 1947 in Jamaica is a retired boxer who was British heavyweight Champion in 1975 beating Danny McAlinden by a knockout, becoming in the process Britain's first Black Heavyweight Boxing Champion .\nCenk Renda. Cenk Renda (born 10 January 1969 in Turkey) is a former professional basketball player from Turkey .\nMihael Brejc. Miha Brejc was born to a Slovene family in Belgrade, Serbia, Yugoslavia .\nGordon Baldwin. Gordon Baldwin born 1932 in Lincoln, England is an influential British studio potter .\nShlomo Shriki. Shlomo Shriki, Israeli painter and artist, born in Morocco (1949), grew up and was educated in Kibbutz Yifat .\nTatiana Belokonenko. Tatiana Belokonenko (, ) is a figurative art painter born in Odessa, Ukraine .\nRob Childs. Rob Childs (born 3 November 1950, in Derby, England) is a British author, who has written over eighty books, mainly aimed at young people .\nAndreas Musalus. Andreas Musalus was born to a noble Greek family in 1665, in Candia on the island of Crete .\nFrancesco Maria Bonini. Born in Naples, Bonini studied singing with Beniamino Carelli at the Conservatory of San Pietro a Majella in his native city .\nRaymond McGrath. He then moved to England to take up a fellowship at Clare College, Cambridge, during which Mansfield Forbes had McGrath redecorate the interior of the College's house Finella, a large Victorian house on the backs in Cambridge, now belonging to Gonville and Caius College, Cambridge .\nStephen Carter, Baron Carter of Barnes. Born in Scotland, Carter was educated at Currie High School, Edinburgh .\nJack Macgougan. Born in Belfast to a Protestant family, Macgougan became an active trade unionist at an early age, and joined the Socialist Party of Northern Ireland, a Northern Ireland Labour Party-affiliate split from the Independent Labour Party (NILP) .\nJulia Wilson. Julia Wilson (born 23 September 1978 in Sydney) is a rower from Australia, who has won World Rowing Championships gold medals in the Eight and Four for her native country in 2001 and she picked up a silver medal in the Eight at the 2002 World Championship .\nJames Jordan. James Jordan (born 21 June 1793 at Chatham, Kent; died 10 September 1866 at Chatham) was an English professional cricketer who played first-class cricket from 1822 to 1824 .\nWang Yong. Wang Yong (born 29 January 1979 in Shanghai) is a male Chinese water polo player who was part of the gold medal winning team at the 2006 Asian Games .\nRonny Swiggers. Ronny Swiggers (born 1961 in Belgium) from Mechelen is one of Belgium's most successful quiz players .\nSofia Ester. Sofia Ester was born in 1978, in Lisbon .\nNathan Long. Nathan Long born in Australia is a former rugby league player .\nYlli Bufi. Ylli Bufi (born 25 May 1948, Tirana) is an Albanian politician who served briefly as Prime Minister of Albania in 1991 .\nSir Andrew Agnew, 8th Baronet. Born in Edinburgh, he was the oldest son of Sir Andrew Agnew, 7th Baronet and his wife Madeline Carnegie, daughter of Sir David Carnegie, 4th Baronet .\nJohn Seru. John Seru (born 12 January 1964, Australia) is an actor and former professional wrestler .\nSebastiano Maffettone. Sebastiano Maffettone (born April 14, 1948 Naples) is an Italian philosopher, currently University Professor at LUISS University of Rome .\nWang Wei. Wang Wei (; born 25 December 1978 in Beijing, China) is a baseball catcher from the People's Republic of China .\nTheodore Baskin. Theodore Baskin (born June 14, 1950) has been Principal Oboe of the Orchestre Symphonique de Montréal since 1980 .\nFerenc Sipos. Ferenc Sipos (b. 13 December 1932, Budapest; d.1997) was a Hungarian footballer and trainer .\nTadahisa Saizen. Tadahisa Saizen (西前忠久 Saizen Tadahisa) is a seiyuu born in Tokyo on 25 September 1964 .\nArthur Harold Stone. Arthur Harold Stone (30 September 1916 -- 6 August 2000) was a British mathematician born in London, who worked mostly in topology .\nBransby Williams. Born in Hackney in London, Williams began his working life as a tea taster in Mincing Lane before working in the design department of a wallpaper manufacturer .\nWalter Branscombe. Nothing is known of Branscombe's ancestry or education, but he was born in Exeter about 1220 .\nJeanne Deroin. Born in Paris, Deroin became a seamstress .\nFrederick Pottinger. Sir Frederick William Pottinger, 2nd Baronet (27 April 1831 -- 9 April 1865), police inspector, was born in India, son of Lieutenant-General Sir Henry Pottinger of the British East India Company, and his wife Susanna Maria, née Cooke, of Dublin .\nPatrick Thomas Stone. Born in Pembroke, Ontario, Canada, Stone received an LLB from Marquette University Law School in 1912 .\nAndrea Neil. Andrea Neil (born October 26, 1971 in Vancouver, British Columbia) is an accomplished female soccer player .\nKarl Albert Buehr. Karl Albert Buehr (1866--1952) was a painter born in Germany .\nAlexander Mullenbach. Born in Luxembourg City on 23 January 1949, Mullenbach studied piano, chamber music and composition at the Conservatoire de Paris and at the Salzburg Mozarteum where his teachers included Gerhard Wimberger and Cesar Bresgen .\nGilbert John Arrow. Gilbert John Arrow (20 December 1873 London- 5 October 1948) was an English entomologist .\nJohn Howard. John Howard is an English author, born in London in 1961 .\nElizur Goodrich. Born in Durham, Connecticut, he was the son of Elizur Goodrich .\nZenon Nowosz. Zenon Nowosz (born 6 February 1944 in Warsaw) is a Polish sprinter who participated in world athletics for Poland in the late 1960s and 1970s .\nGreta Knutson. Born in Stockholm, Greta Knutson studied at the Kungliga Konsthögskolan, and settled in Paris, France during the early 1920s .\nPaul Daniels. Paul Daniels (born 4 June 1981 in Burlington) is an American rower .\nTom Jones. Tom Jones (born April 26, 1943) is an American former racing driver, born in Dallas, Texas .\nElizabeth Bartlett. Elizabeth Bartlett (24 April 1924 Deal, Kent - 18 June 2008) was a British poet .\nLaura Moriarty. Laura Moriarty (b. December 24, 1970, Honolulu, Hawaii) is an American novelist .\nDavid Moss. David Moss (born 15 November 1968 in Doncaster) is an English former footballer, who played for Boston United, Doncaster Rovers, Chesterfield, Scunthorpe United, Partick Thistle, Falkirk, Dunfermline, Ayr United and Swansea City .\nRichard Tillinghast. Richard Tillinghast is a native of Memphis, Tennessee, a graduate of Sewanee (BA, 1962) and Harvard (MA, 1963; PhD, 1970) .\nJudith Mok. Judith Mok born in Bergen, North Holland is a Dutch soprano, author and poet, who lives in Ireland and has released novels and many articles in English .\nEugen Enderlen. Eugen Enderlen (January 21, 1863 -- June 7, 1940) was a German physician and surgeon born in Salzburg, Austria .\nFrank Farrell. Frank Farrell (31 March 1947 -- 19 July 1997) was a British rock bassist, vocalist and songwriter born in Birmingham, England .\nJohn Savage. John Savage, who was born in Dublin on 13 December, 1828 .\nJoel Honig. Born in Chicago, Illinois, Honig studied piano at the Manhattan School of Music before entering Columbia University where he was part of a social group of young men that included composer John Corigliano and theatre director Michael Kahn .\nJan Cox Speas. Jan Cox Speas (1925 -- 1971) is a short story writer and novelist born in Raleigh, North Carolina in 1925 .\nNorman Spector. Born in Montreal, Quebec, Spector received a Bachelor of Arts with Honors in Political Science, from McGill University in 1970 .\nPeeter van Bredael. Pieter van Bredael was born at Antwerp in 1622, and entered the Guild in 1650 .\nJohn Jaffray. Born in Stirling, he moved to Birmingham in 1844, to work for John Frederick Feeney on the Birmingham Journal, and became a partner in it in 1852 .\nSir William Coddington, 1st Baronet. Coddington was born at Salford, Greater Manchester, the eldest son of William Dudley Coddington, a Manchester merchant, and his wife Elizabeth Hopwood .\nAzra Erhat. Azra Erhat (b. 6 June 1915, Istanbul -- d 6 September 1982, Istanbul) was a Turkish authoress, archaeologist, academician and translator .\nHelen Sharsmith. Helen Sharsmith was born 1905 in Oakland, California .\nJeff Spiers. Jeff Spiers (born 2 May 1967 in Belfast) is a retired Northern Irish footballer and coach .\nIlus Vay. Ilus Vay (February 20, 1923 Budapest - October 28, 2008 Budapest) was a Hungarian film and television actress .\nIgors Vihrovs. Igors Vihrovs (born 6 June 1978 in Riga) is a Latvian gymnast, who won the Golden Medal in floor exercise at the 2000 Summer Olympics, and the Bronze Medals in floor exercise in 2000 European Championships and 2001 World Championships .\nHarry Chadwick. Harry Chadwick (born 13 November 1930 in Toronto, Ontario) was a member of the Canadian House of Commons from 1988 to 1993 .\nFranz Rummel. Franz Rummel (January 11, 1853May 2, 1901) was a German pianist, born in England and active across continental Europe .\nJim Grace. Jim Grace (born 17 July 1954 in Dublin) is a former Irish footballer .\nAli Sarmini. Sarmini later achieved a doctorate in Fine Arts from the Berlin-Weißensee Academy of Arts in Germany .\nRobert Daniel Murphy. Born in Milwaukee, Wisconsin, Murphy had begun his diplomatic career in 1917 as a member of the American Legation in Bern, Switzerland .\nShannon Emerick. Shannon Emerick (Born in Dallas, Texas) is an American stage actress and voice actress .\nWalter Gretzky. Tony and Mary owned a cucumber farm in Canning, Ontario where Walter Gretzky was born and raised .\nKristian Geelmuyden. Kristian Geelmuyden (born 12 November 1875 in Oslo, died 18 August 1969) was a Norwegian politician for the Conservative Party .\nTala Raassi. Tala Raassi born in Iran is a bikini designer for her own swimwear line Dar Be Dar, she has designed bikinis for the Miss Universe 2010 pageant .\nJules Louis Lewal. Jules Louis Lewal (13 December 1823 Paris 22 January 1908 Senlis) was a French general .\nPatrick Daughters. Patrick Daughters (born 1976 in Berkeley, California) is an American music video and commercial director currently signed to The Directors Bureau, after departing Black Dog Films in late 2006 .\nRenaud Gagneux. Renaud Gagneux (born 15 May 1947 in Paris) is a French composer .\nElizabeth Burmaster. Born in Baltimore, Maryland, Burmaster received her bachelors and masters degrees from University of Wisconsin-- Madison and was in public school administration .\nDave Mazzoni. Mazzoni was born and grew up in Philadelphia .\nAamer Haleem. Born in London, Haleem was raised in Canada, where he attended the University of Toronto and the School of Journalism at Humber College .\nJohn Van Lear McMahon. John Van Lear McMahon, lawyer, was born in Maryland in 1800, received his education equipment at Princeton, studied law and achieved eminence at the Maryland Bar .\nJan Jacob Kieft. Born in Amsterdam, Kieft was part of the Dutch gymnastics team, which finished seventh in the team event .\nWilhelmine von Hillern. Wilhelmine von Hillern (11 March 1836 Munich - 15 December 1916 Hohenaschau) was a German actress and novelist .\nTracey Magee. Tracey Magee (b. 27 March 1969, Belfast) is a Northern Irish broadcaster and journalist .\nGeorge Edward Hughes. George graduated MA with First Class Honours in Philosophy and English, and then in pure Philosophy, from the University of Glasgow .\nAlexander Riese. Alexander Riese (2 June 1840 Frankfurt am Main - 8 October 1924 Frankfurt) was a German classical scholar .\nTina Kim. Tina Kim (born 1973 in Seoul, Korea) is a Korean-American stand-up comedian .\nBernard de Wolff. Bernard de Wolff (November 1, 1955), Dutch painter, was born in Amsterdam .\nPeter Ording. Peter Ording (born 22 December 1976 in Stade) is a German rower .\nBranko Rasić. Branko Rasić (born February 13, 1976, in Prokuplje, Serbia) is a Serbian footballer (striker) playing currently for Unia Janikowo .\nKetil Hvoslef. Ketil Hvoslef (né Ketil Sæverud; born 19 July 1939 in Bergen, Norway) is a Norwegian composer .\nJohn Carlin. John Carlin was a first class cricketer and test umpire http://www.cricinfo.com/england/content/player/11009.html .\nAntonio Selvaggio. Antonio Selvaggio (born 1 January 1958 in Palermo) is a retired male long-distance runner from Italy .\nMichael Aufhauser. Michael Aufhauser (born April 25, 1952 Augsburg) is a German animal rights activist and founder of Gut Aiderbichl, the largest sanctuary for animals in Austria, which houses more than 1,000 animals of a variety of species .\nPaula Tesoriero. Paula Margaret Tesoriero, MNZM (born 29 August 1975 in Wellington, New Zealand) is a New Zealand paralympics racing cyclist, most notable for her performance at the 2008 Summer Paralympics; her world record-breaking time in the Women's 500m Time Trial secured New Zealand's first gold medal at that games, and she later went on to win bronze in both the Individual pursuit, and the Women's individual road time trial .\nJohn Marcum. In 1953, Marcum created a Midwestern United States racing series called ``Midwest Association for Race Cars'' (MARC) with his wife Mildred in his hometown Toledo, Ohio .\nBeth Liebling. Beth Liebling (born March 12, 1967, Chicago, Illinois) is the co-founder of Seattle-based experimental instrumental group Hovercraft with guitarist/keyboardist/samplist Ryan Campbell (``Cambell 2000'') .\nJosé Bénazéraf. José Bénazéraf (born January 8, 1922 Casablanca, Morocco) is a French filmmaker and producer .\nWitold Nazarewicz. Witold Nazarewicz is a nuclear physicist born in Warsaw, Poland, currently teaching at the University of Tennessee .\nAarne Lakomaa. Born in Finland, Lakomaa graduated from Helsinki Polytechnics .\nJerry Knight. Jerry Knight (born April 14, 1952, Los Angeles, California, United States) was an American R&B vocalist and bassist in the late 1970s and early 1980s .\nYanitzia Canetti. Yanitzia Canetti (born in 1967 in Havana, Cuba) is a Cuban author, translator, and editor .\nKen Niles. Ken Niles (December 9, 1908, in Livingston, Montana -- October 31, 1988) was an American radio announcer .\nRiccardo Maspero. Riccardo Maspero (born 19 February 1970 in Lodi, Italy) is an Italian footballer who played as an attacking midfielder, most notably with Cremonese .\nMargaret Maury. Margaret Maury, née Kerubo (born 15 May 1974 in Kenya) is a French long-distance runner who specializes in the 5000 metres .\nBernard Wright. Bernard Wright (born January 1, 1963 in Jamaica, Queens, New York) is an American funk and jazz keyboardist who began his career as a session musician and later released several solo albums in the 1980s .\nCaroline Beil. Caroline Beil (born 3 November 1966 in Hamburg) is a German actress and television presenter .\nJoseph Judah Chorny. Joseph Judah Chorny was a Russian traveller, born at Minsk in 1835, on the 20th April .\nThomas Godfrey Faussett. Faussett was born at Oxford in 1829, was a younger son of the Rev .\nÁrpád Soós. Árpád Soós (20 September 1912 Budapest -- 1 June 1991 Budapest) was a Hungarian zoologist, entomologist and museologist .\nSamuel Davidson. Samuel Davidson (23 September 1807 -- 1 April 1898) was an Irish biblical scholar who was born near Ballymena in Ireland .\nLeonard Gyllenhaal. Born on the Ribbingsberg manor in Västergötland in west Sweden, Leonard Gyllenhaal was son of an army officer and belonged to a family of the lower nobility .\nSheyene Gerardi. Sheyene Gerardi (born April 13,in Caracas, Venezuela) is a Venezuelan actress and model .\nBryn Atkinson. Bryn Atkinson (born 9 December 1982, Canberra, Australian Capital Territory) is an Australian professional mountain bike racing cyclist from Townsville, QLD .\nClaudine Chomat. Claudine Chomat, who was born 7 February 1915 at Saint-Etienne (Loire) in France, and died on 14 October 1995 in Boulogne-Billancourt (Hauts-de-Seine), was a member of the French Resistance and a French communist militant .\nPeter G. Engelman. Peter G Engelman, CPA, is a naturalized American writer, born in London, England, during World War II He immigrated to the US in November 1940 sailing from Liverpool to New Orleans on the Steamship Orbita .\nStanis%C5%82aw Stolarczyk. Stanisław Stolarczyk, born 4 May 1949 in Poland, is a journalist, reporter, writer, and documentary of the Polish footprints in Canada .\nSean Naylor. Born in Calgary, Canada to British parents, Naylor earned a master's degree in international relations in 1990 from Boston University .\nJean Muller. Jean Muller was born on 11 December 1979 in Luxembourg City, son of Gary Muller, a piano teacher .\nVictoria Roberts. Born in Manhattan, Roberts grew up in Mexico City and Sydney .\nThomas F. Konop. Born in Franklin, Wisconsin, Konop was studied at Two Rivers High School, Oshkosh State Normal School (now the University of Wisconsin--Oshkosh), and Northern Illinois College of Law .\nRichard Cullen. Born in Brooklyn, NY, Cullen was raised in Staunton, Va He majored in political science and played varsity football at Furman University in Greenville, S.C., earning a Bachelor of Arts degree in 1971 .\nWebster Edgerly. Born in Massachusetts to Rhoda Lucinda Stone and John Foss Edgerly, he graduated from the Boston University School of Law in 1876 .\nPeter Smedley. Smedley was born on 2 January 1943 in Perth, Western Australia where he completed his secondary education at the Christian Brothers' Aquinas College .\nEric Ziebold. Eric Ziebold (born in 1972 in Iowa) is an award-winning American chef and restaurateur behind CityZen in Washington D.C .\nAdam Buszko. ATF Sinner (born Adam Buszko April 19, 1975 in Warsaw), also known as Adam The First Sinner - Polish musician, vocalist, composer and multi-instrumentalist .\nSyms Covington. Originally named Simon Covington, he was born in Bedford, Bedfordshire, England, the youngest child of Simon Covington V and Elizabeth Brown .\nJoan Vincent Murray. Joan Vincent Murray (born February 12, 1917 London - January 4, 1942 Saranac Lake, New York) was a Canadian American poet .\nGabriela Kulka. Gabriela Kulka (known as Gaba Kulka, born 1979 in Warsaw, Poland) is an independent artist, a songwriter and performer .\nAndrea Ratuski. Andrea Ratuski (born at Winnipeg, Manitoba) is a Canadian radio presenter and producer, particularly known as host of the national programme Northern Lights on CBC Radio (discontinued in 2007) .\nDonald Haddow. Donald Haddow (born January 19, 1970 in Mississauga, Ontario) is a former international freestyle swimmer from Canada, who was a member of the Men's 4x200m Freestyle Relay Team that finished in eighth position at the 1988 Summer Olympics in Seoul, South Korea .\nJoe Daly. Born in London, United Kingdom, Daly studied animation for two years at Cape Town's City Varsity .\nJane R. Goodall. Born in Yorkshire, England, Goodall studied at London and Oxford Universities .\nNatalia Skobeeva. Natalia Skobeeva, born in Russia in 1975, is a London based artist and photographer graduated from Central Saint Martins College of Art and Design .\nCharles Murphy. He was born on 8 December 1862 in Ottawa, the son of James Murphy, who came to Ontario from Ireland, and Mary Conway .\nCharles Duncan. Born in Middlesbrough, Duncan was the son of a ship's pilot .\nAdel Sedra. Born in Egypt in 1943, Sedra received his BSc from Cairo University in 1964 and his M.ASc and PhD from the University of Toronto, in 1968 and 1969, respectively .\nWilliam Wilson. William Wilson (born March 29, 1887 - died May 8, 1948) was an English-born physicist who spent much of his career in the United States .\nThomas Bond. Born in Somerset, Bond was a student to his maternal-uncle, Dr McCann of Southampton, before training at King's College and King's College Hospital in London where he won the Gold Medal of the University of London for his Bachelor of Surgery examination .\nMichael Manuel. Michael Manuel (born January 12, in Tacoma, Washington) is an American actor .\nJames William Wallack. James William Wallack (c. 1794--1864) was an Anglo-American actor and manager, born in London, and brother of Henry John Wallack .\nNeil Swaab. Neil Swaab (born 2 January 1978 in Detroit, Michigan) is a New York based artist, designer, writer, and educator .\nJean Cotelle. Jean Cotelle, 'the younger', was a painter and engraver, born in Paris in 1645 .\nNick Hall. Nick Hall (born 31 December 1973, Birmingham) is an English singer-songwriter .\nJulie Aberg Robison. Born in Madison, Wisconsin, Robison holds a master's degree in urban and regional planning from the University of Wisconsin-- Madison .\nFina de Calderón. Fina de Calderón (August 21 1927 Madrid- January 12 2010 Madrid) was a Spanish writer, poet, songwriter, and musician .\nGordan Kožulj. Gordan Kožulj (born 28 November 1976 in Zagreb) is a former backstroke swimmer from Croatia, who competed in four consecutive Summer Olympics for his native country, starting in 1996 .\nFrancis Henry Newbery. Born in Devon on 15 May 1855 to a shoemaker and his wife, Newbery went to school in Bridport, Dorset where he qualified as a teacher, and later as an art master .\nKatherine Prescott Wormeley. Born in England, Katherine Prescott Wormeley emigrated to the United States at a young age .\nAvi Bortnick. Born in Israel, Bortnick was raised in St Louis, Missouri, where he attended racially integrated public schools and was immersed in the sounds of late 70's funk, rock and soul .\nJames L. Hogeboom. James Lawrence Hogeboom (August 25, 1766 Ghent, Columbia County, New York -- December 23, 1839 Castleton-on-Hudson, Rensselaer County, New York) was an American merchant, lawyer and politician from New York .\nSamuel Kneeland. Samuel Kneeland (1 August 1821 Boston, Massachusetts -- 27 September 1888 Hamburg, Germany) was a naturalist of the United States .\nDenise Holt. Dame Denise Mary Holt, DCMG (born 1 October 1949 in Vienna, Austria), née Denise Mary Mills, was British Ambassador to Mexico (2002-5) and Spain and Andorra (2007- 2009) .\nRiccardo Azzoli. Riccardo Azzoli (born October 19, 1984) is an Italian race car driver born in Rome who currently competes in GT Open with Aston Martin DBRS9 of team Villois .\nRussell Bawden. Russell Bawden (born 24 July 1973 in Queensland) is an Australian former rugby league footballer for the Brisbane Broncos, Melbourne Storm, London Broncos and for the Queensland State of Origin Team .\nBachar Kouatly. Bachar Kouatly (born 3 March 1958, Damascus) a Lebanese-- French chess master, journalist and activist .\nCharles Ignatius White. Charles Ignatius White (born at Baltimore, Maryland, U.S.A., 1 February 1807; died at Washington, D.C., 1 April 1878) was an American editor, historian, and Catholic priest .\nJohn Halsey. Born in Boston, Halsey became a privateer in the service of Great Britain commanding the 10-gun brigantine Charles during the War of the Spanish Succession, or Queen Anne's War as it was known in the American colonies, and raided French fishing fleets in the Newfoundland and later sailed to Fayal in the Azores and the to the Canary Islands where he attacked Spanish ships en route to Barcelona during 1704 .\nRussya. Born in the Kiev, Ukraine, Russya was raised within a family of musicians .\nBrian White. Brian White (born 17 January 1951 in Winnipeg, Manitoba) was a Progressive Conservative party member of the Canadian House of Commons .\nAshley Gilbertson. Ashley Gilbertson (born 22 January 1978) is an award-winning photographer best known for his images of the Iraq war .\nRosere Manguelle. Rosere Manguelle (born May 22, 1985 in Saint-Denis, France) is a French footballer who played 2 matches in Ligue 2 for club Chateauroux in the season of 2005-2006  .\nJames A. MacAlister. Born in Glasgow, Scotland, MacAlister emigrated to the US state of Wisconsin in 1850 at the age of 10 with his family consisting of his mother and sisters .\nDennis Rea. Born in Chicago, Illinois, Rea grew up in Utica, New York .\nNick Pugh. Born in Paris, Pugh grew up in the Berkeley Hills east of San Francisco .\nDouglas Fee. Douglas Fee (born 21 July 1944 in Kingston, Ontario) was a member of the Canadian House of Commons from 1988 to 1993 .\nColin Carr. Born in Liverpool, Carr is a professor of the cello, currently at the Royal Academy of Music .\nRobert Harth. Robert Harth (June 13, 1956 Louisville, Kentucky - January 30, 2004 New York, New York) was Carnegie Hall's executive and artistic director .\nPierre de Savoye. Pierre de Savoye (born 12 November 1942 in Montreal, Quebec) was a member of the Canadian House of Commons from 1993 to 2000 .\nLionello Grifo. Lionello Grifo (August 1934), Italian poet and writer, born in Rome in 1934 by parents who were both Italian government officials, nominated at the unanimity ``Premio della Cultura 2004 della Presidenza del Consiglio dei Ministri'' (Prize for Culture 2004 from the Presidency of the Italian Ministries Council) ``for his outstanding, prestigious contribution to the field of Poetry'' .\nMarcin Gawron. Marcin Gawron (; born 25 May 1988, in Nowy Sącz, Poland) is a Polish tennis player .\nAlex Coke. Alex Coke (born 1953, Dallas, Texas) is a jazz saxophonist and flutist .\nMartinus Tels. Martinus Tels was born on 16 August 1926 in Rotterdam .\nMatthew Kent. Matthew Kent (born 2 July 1980, in Melbourne, Australia) is an Australian baseball player .\nJohan de Graeff. Johan de Graeff (* October 29, 1673 in Amsterdam - † April 12, 1714) - Lord of the semisouverain Fief Zuid-Polsbroek and Lord of the castle Ilpenstein - was a member of the De Graeff - family from the Dutch Golden Age .\nNorbert Balatsch. Norbert Balatsch (born 10 March 1928, Vienna) is an Austrian conductor and chorus master .\nEugen von Halácsy. Eugen von Halácsy (1842 - 1913) was an Austrian physician and botanist of Hungarian descent who was born in Vienna .\nFergus Morton, Baron Morton of Henryton. Born in Glasgow, he was a younger son of George Morton .\nHoratio Balch Hackett. Horatio Balch Hackett (December 27, 1808 - November 2, 1875), American biblical scholar, was born in Salisbury, Massachusetts .\nPascal Aubier. Pascal Aubier is a French actor, director, script writer, producer and editor, born in 1943 in Paris (France) .\nSteven Alexander. Steven Alexander is an American filmmaker born in London, England, immigrated to New York City in the 1980s .\nRay Sharp. Ray Sharp (born 16 November 1969 in Stirling) is a Scottish former footballer, who played for Dunfermline, Stenhousemuir, Preston North End, Forfar, Alloa, Cowdenbeath, East Fife and Montrose .\nLuke Youlden. Luke Youlden (born 28 January 1978 in Melbourne, Australia) is an Australian motor racing driver .\nMichael Urbano. Michael Urbano (born March 19, 1960, Sacramento, California, USA) is a studio drummer, band member, programmer, and record producer .\nErnst Fries. Ernst Fries (22 June 1801 Heidelberg -- 11 October 1833 Karlsruhe) was a German painter .\nGiovanni Polese. Born in Venice, Polese studied singing in his native city and made his professional singing debut performing there in a concert in 1892 .\nEllie Tesher. Born in Toronto, Ontario, Tesher studied sociology at the University of Toronto .\nAlain de Cadenet. Alain de Cadenet (born 27 November 1945 in London) is an on air personality for the Speed Channel and ESPN .\nJemma Gawned. Jemma Gawned (born 22 December 1974 in Perth, Australia) became well known as a contestant on Big Brother Australia 2001 .\nReginald Henry Campbell. Reginald Henry Campbell (born 2 December 1877, date of death unknown) was a British artist born in Edinburgh, Scotland .\nElfie W%C3%B6rner. Elfie Wörner (31 July 1941 in Berlin -- 4 July 2006 in Munich) was the wife of the late Dr Manfred Wörner, a prominent German military and politician who served as the Secretary General of NATO in 1988-94 .\nFrederic Heath. Frederic F Heath was born September 6, 1864 to a Republican family in Milwaukee, Wisconsin .\nJimmy Norris. Jimmy Norris (born 25 July 1988, Newport, Wales) is a Welsh rugby union player .\nJohn Baird. Born in Glasgow, he was the son of Alexander and Mary Baird .\nGiacomo Luigi Brignole. Brignole was born on 8 May 1797 in Genoa .\nKenn Burke. Kenn Burke, a ballet dancer, was born in Fife, Scotland .\nAnna Maria Villani Scicolone. Anna Maria Villani Scicolone (born 11 May 1938, Rome) is the divorced wife of Romano Mussolini (26 September 1927 -- 3 February 2006) who was the youngest son of Benito Mussolini, fascist dictator of Italy from 1922 to 1943 .\nGeorge Schlukbier. Born in 1951 in Germany, Schlukbier was the younger of two sons of a career US military officer .\nPietro Leonardi. Pietro Leonardi (born 29 December 1963 in Rome) is an Italian businessman, currently serving as sporting and managing director of Italian association football club Parma F.C. .\nOle Buck. Ole Buck (born 1 February 1945 in Copenhagen) is a Danish composer .\nAlastair Gordon. Alastair Gordon (born 8 December 1976 in Sydney) is an Australian rower .\nDariusz Lipiński. Dariusz Lipiński (born August 4, 1955 in Warsaw) is a Polish politician .\nChe Arthur. Born in Mobile, Alabama, Arthur played guitar, keyboards, bass, and drums in numerous Southern US touring rock bands .\nAlan Wace. Alan John Bayard Wace (13 July 1879 in Cambridge, England -- 9 November 1957, in Athens, Greece) was an English archaeologist .\nScientist. Scientist, born Hopeton Brown in Kingston, Jamaica, 1960 (sometimes known as Overton Brown), was a protégé of King Tubby (Osbourne Ruddock), one of the originators of dub music .\nPat Passlof. Pat Passlof born August 5, 1928 in Brunswick, Georgia, and died November 13, 2011 in New York City, New York) was an American abstract expressionist painter .\nElizabeth Filippouli. Elizabeth Filippouli is a media and business consultant, and former television journalist born in Athens(Greece) .\nAl Harewood. Al Harewood (born June 3, 1923) is a musician and teacher, born in Brooklyn .\nLaurie Fisher. Laurie Fisher born in Canberra was the Head coach of the ACT Brumbies between 2005 and 2008 .\nNeil M. Cohen. Cohen received a BA from Athens College (now Athens State University) in History and was awarded a JD from the Howard University .\nCarl Blumenreuter. Carl Blumenreuter (* 16 November 1881 in Berlin; † 11 Juli 1969 in Neustadt in Holstein) was a German chemist and politician .\nIan Dench. Ian Dench (born 7 August 1964, Cheltenham, Gloucestershire) is a British songwriter and musician .\nGeorge FitzGeorge. Colonel George William Adolphus FitzGeorge (24 August 1843 London - 2 September 1907 Lucerne) was the eldest of three sons of 2nd Duke of Cambridge and Louisa Fairbrother (the other sons being Admiral Sir Adolphus FitzGeorge and Colonel Sir Augustus FitzGeorge) .\nCharles A. Barlow. Born in Cleveland, Ohio, Barlow attended the common schools .\nDidier Pfirter. Didier Pfirter (born 1959, Basel) is a Swiss diplomat .\nJon Stock. Jon Stock (born 12 May 1966 in England) is a British author and journalist .\nMichael Gallagher. Gallagher was born on 14 December 1978 in Scotland .\nSergei Ordzhonikidze. Sergei Ordzhonikidze (born on 14 March 1946 in Moscow) is a Russian diplomat .\nJohn Clarke. John Clarke, CM (February 25, 1945--January 23, 2003) born in Ireland to Brigit Ann Clarke (née Conway) and Thomas Kevin Clarke, died in Vancouver, British Columbia, Canada of a brain tumor .\nA. G. E. Blake. Anthony Blake was born in the UK in the city of Bristol in 1939 .\nBilly Hoffman. Billy Hoffman, also known as Acidus, is an American hacker, born in Atlanta, Georgia on October 15, 1980 .\nMarcello Abbado. Marcello Abbado (born 7 October 1926, Milan) is an Italian composer, conductor, and pianist .\nEugénie Söderberg. Eugenie Söderberg (1903--1973) was a Swedish-American writer and journalist born in Heidelberg, Germany noted for her profound concern with women's issues which she addressed in her novels and short stories .\nRussell Stannard. Russell Stannard is a retired high-energy particle physicist, who was born in London, England, on December 24, 1931 .\nCharles Ejogo. Charles Ejogo born in London, England, 1976, is a British entrepreneur .\nGeorge Clifford Sziklai. George Clifford Sziklai (July 9, 1909 in Budapest, Hungary -- September 9, 1998 in Los Altos, California) was a renowned electronics engineer, who among many other contributions to radio and TV electronics invented the transistor configuration named after him, the Sziklai pair .\nMary Jean Stone. Mary Jean Stone (born at Brighton, Sussex, in 1853; died at Battle, Sussex, 3 May 1908) was an English historical writer .\nMat Chivers. Mat Chivers is a British artist born in 1973 in Bristol .\nLinda MacLennan. Born in Toronto, MacLennan is the daughter of a Canadian father and an American mother .\nMarthe Chenal. Born in Paris, Chenal was educated at the convent at the Basilique du Sacré-Cœur, Paris .\nHoratio Luro. Born in Argentina into a wealthy family that had been involved with horses for several generations, a suave young Horatio Luro grew up as something of a playboy and maintained this lifestyle after moving to the United States .\nAdolfo Davila. Adolfo Davila (born 1965) is video and film director born in Mexico .\nCharles Cotin. Charles Cotin or Abbé Cotin (born 1604 in Paris; died December 1681 in Paris) was a French abbé, philosopher and poet .\nWayne Eagling. Born in Montreal, Canada in 1950, Eagling spent much of his early life in California, where he attended the Patricia Ramsey School of Dance Arts .\nAldo Franchi. Aldo Franchi (21 March 1882 Milan -- Unknown) was an Italian racecar driver .\nDennis Frank Thompson. Dennis Frank Thompson (born 12 May 1940 in Hamilton, Ohio) is a political scientist and professor at Harvard University, where he founded the university-wide Center for Ethics and the Professions (now the Edmond J Safra Center for Ethics) .\nFerenc Mérei. Born in Budapest into a bourgeois family, Mérei often spent time in his parents`` photography studio at the Garay Bazaar .\nRoger Brunet. Born in Toulouse, Brunet attended the University of Toulouse, where he earned his PhD in 1965 .\nTheodore Low De Vinne. De Vinne was born at Stamford, Connecticut, and educated in the common schools of the various towns where his father had pastorates .\nMichael Francis Phelan. Born in Lynn, Massachusetts, Phelan attended the public schools .\nCelestino Sfondrati. Sfondrati was born at Milan .\nSamuel Verblunsky. Samuel Verblunsky (1906 June 25 London -- 1996) was a British mathematician who introduced Verblunsky's theorem and Verblunsky coefficients .\nDavid Stainer. David Stainer (born 4 May 1978 in Exeter ) is an English quizzer best known for outstanding team playing skills .\nAndrew O'Neill. Born in Portsmouth in 1979, O'Neill grew up in the suburban town of Wallington .\nGritakumar E. Chitty. Gritakumar E Chitty (b. 14 June 1939, Colombo) is a Sri Lankan Jurists and former Registrar of the International Tribunal for the Law of the Sea .\nDes Abbott. Des Abbott (born 10 January 1986 in Darwin, Northern Territory) is a field hockey forward from Australia, who won the gold medals with the Men's National Team at the 2008 Champions Trophy in Rotterdam, and the 2009 Champions Trophy in Melbourne .\nDumont de Montigny. Jean-François-Benjamin Dumont de Montigny, or Dumont de Montigny, was born in Paris on July 31, 1696, and died sometime after 1753 .\nConrad Keely. Born in England of Irish and Thai descent, Conrad grew up in Thailand, the US state of Hawaii and Bedworth, England .\nTitane Laurent. Born in Morocco, Laurent grew up in Belgium, lived in Luxembourg and is a New Zealand citizen and a permanent resident of Australia .\nEdwin E. Wagner. Dr Wagner's academic appointments include Instructor at Pennsylvania State University and Temple University, Professor Emeritus at University of Akron, and Dean at Forest Institute of Professional Psychology (Huntsville, AL) .\nRonnie Stephenson. Ronnie Stephenson (born 26 January 1937 in Sunderland -- died 8 August 2002) was an English jazz drummer .\nWill Kirby. Born in Florence, Italy, Kirby was raised in Tallahassee, Florida where he graduated high school from Florida State University High School (colloquially ``Florida High School'') .\nRosina Storchio. Born in Venice, Storchio studied at the Milan Conservatory before making her operatic debut as Micaëla in Bizet's Carmen at Milan's Teatro Dal Verme in 1892 .\nSylvester Rosa Koehler. Sylvester Rosa Koehler (11 February 1837 Leipzig - 15 September 1900 Littleton, New Hampshire) was an author, and the first curator of prints at the Museum of Fine Arts, Boston .\nJulie Mullen. Julie Mullen (born 27 October 1957, Liverpool) is a Liverpool poet .\nCharles Kemper. Charles Kemper (September 6, 1900 -- May 12, 1950) was an American stage-trained film character actor born in Oklahoma .\nPhilip Smouha. Philip Smouha was born on 3 May 1952 in Sydney, Australia, and was the owner of Smouha Fabrics Group .\nJan Jakob Tønseth. Jan Jakob Tønseth (born 1 September 1947 in Oslo) is a Norwegian author, poet and translator .\nTony Mitchell. Tony Mitchell is a Canadian-British film and TV director, born in Toronto, who moved to London in his teens (1972) .\nMichel Host. Michel Host (born 1942 Flanders) is a French writer .\nYang Yang. Yang Yang (; born 19 May 1986 in Beijing, China) is a Chinese baseball player who was a member of Team China at the 2008 Summer Olympics .\nTom Mattera. Mattera was born and grew up in Philadelphia .\nMaarten Fontein. Maarten Fontein (born 22 February 1952, Leiden) is the former Marketing and Commercial Director for Alkmaar Zaanstreek (AZ), and is currently a member of the Executive Board of the European Club Association (ECA) .\nBrian Ervine. Brian Ervine (born October 1951, Belfast) is a playwright, songwriter and teacher living in Belfast, Northern Ireland .\nTakeshi Miyazawa. Takeshi Miyazawa (born April 19, 1978) is a comic book artist who was born in Canada and attended Queen's University in Ontario to study art .\nStephan Shakespeare. Stephan Shakespeare (born 9 April 1957, Germany as Stephan Kukowski) is the founder and Chief Executive Officer (CEO) of the high-profile British Internet-based market research and opinion polls company YouGov http://yougov.com .\nJohn Barry. Born in London, Barry worked as an architect with experience in stage design .\nStanisław Urban. Stanisław Urban (13 September 1907 Warsaw; April, 1940) was a Polish rower who competed in the 1928 Summer Olympics and in the 1932 Summer Olympics .\nHarvey Emerson Oswald. Harvey Emerson Oswald, born in Columbus, Ohio, September 11, 1918, enlisted in the US Naval Reserve in April 1938 .\nAlec Mullen. Alec is now involved in amateur boxing coaching & running a successful boxing club in his home town of Irvine .\nAlexander Mishnaevski. Alexander Mishnaevski is a Russian-born American violist, the principal violist of the Detroit Symphony Orchestra .\nLeo Ehrnrooth. Leo Ehrnrooth (March 10 1877 in Helsinki -- July 26 1951 in Sweden) was a Finnish politician .\nJohn William Thomson. John William Thomson (born 28 December 1928 in Toronto, Ontario) was a Progressive Conservative party member of the Canadian House of Commons .\nSteve Arrington. Steve Arrington (born Steven Ralph Arrington, March 5, 1956), is an American singer, songwriter, drummer, record producer, engineer and minister, who grew up in Dayton, Ohio .\nAlexander C. Kirk. Kirk, born in Angus, received his formal education at the University of Edinburgh and a technical education at plants operated by Robert Napier .\nJimmy Gregg. Jimmy Gregg (born in 1947 in Dublin) is a former Irish football player during the 1960s and 1970s .\nRaymond Castilloux. Raymond Castilloux (born November 23, 1934 in Paspébiac, Québec) is former racing cyclist, who was born in Canada .\nFlorent Fidèle Constant Bourgeois. Florent Fidèle Constant Bourgeois, a French landscape painter, engraver, and lithographer, was born in Paris in 1767 .\nIsaac Sharp. Born January 13, 1681, in Dublin, Ireland, Isaac Sharp was the eldest surviving son of Quaker Anthony Sharp and Ann Crabb .\nAsa G. Yancey, Sr.. Asa G Yancey Sr., M.D., was born in Atlanta, GA in 1916 .\nRobert Hamilton Paterson. Robert Hamilton Paterson was born at Edinburgh in 1843, the son of Thomas Paterson (architect to the estates of the Duke of Hamilton) and his wife Margaret Instant .\nJan van Ispelen. Jan van Ispelen (born 12 April 1941 in Schönebeck) is a retired boxer, who was born in Germany but competed for the Netherlands .\nHarold Arthur Stuart. A graduate of King's College Cambridge, Harold Stuart was born in the city of York to Peter Stuart .\nGerry Markman. Gerry Markman (born 16 August 1950 Montreal), is a Canadian guitarist .\nAmber Parkinson. Amber Parkinson (born 3 October 1976 in Melbourne) is an Australian Epee fencer .\nAlexander Cores. Born in Russia, Cores studied in Berlin and at the Juilliard School under Leopold Auer and Paul Kochanski .\nHoma Shaibany. Homa Shaibany (Born in Iran) was Iran's first woman surgeon .\nGeorge Arnald. George Arnald was born in 1763 .\nWilliam M. Crane. Crane was born in 1776 at Elizabethtown, New Jersey and appointed midshipman in 1799 .\nSamuel Joseph Fuenn. Samuel Joseph Fuenn (September 1819 -- January 11, 1891) was a Russian scholar born in Vilnius .\nAurel S. Croissant. Aurel Croissant (born 1969 in Germany) is Professor of Political Science at the Faculty of Economic and Social Sciences of the University of Heidelberg .\nMarie Fisher. Born in Sydney, Fisher was educated at Darlinghurst Public School, Crown Street High School, Sydney Girls High School, Sydney Teachers College and finally the University of New South Wales, graduating in 1969 to become a schoolteacher .\nMihály Kovács. Mihály Kovács (born 10 September 1957 in Budapest) is a Hungarian former handball player .\nSusan Bullock. Susan Bullock (born 9 December 1958 in Cheshire) is an English soprano .\nXimena Armas. Ximena Armas, born 29 July 1946 in Santiago (Chile), is a Chilean painter .\nJohn David Hennessey. J D Hennessey and David Hennessey, journalist and author, was born in London and went to Australia in 1875 .\nSimone Pasticcio. Simone Pasticcio (born 11 January 1976 in Genoa) is an Italian footballer .\nAndreas Lagios. Andreas Lagios (born 11 November 1972 in Athens, Greece) plays bass in the black metal band Rotting Christ and in the stoner rock band Nightstalker .\nMichael Birt. Michael Birt was born on 18 January 1932 in Melbourne, Australia .\nWilliam Dimma. Born in Montreal, Quebec, Dimma received a Bachelor of Applied Science degree from the University of Toronto in 1948, a Master of Business Administration degree from York University in 1969 and a Doctor of Business Administration from Harvard University in 1973 .\nHarry Philbrick. Harry Philbrick was born in 1958, in Providence, Rhode Island, USA .\nLasse Lintilä. Lasse Lintilä, born in Finland, is one of the worlds leading Ten-pin bowlers .\nJulia Kendell. Born in Middlesex, Kendell went to Newnham Junior School in Eastcote, and Haydon Secondary School in Northwood .\nNikos Aliagas. Nikos Aliagas (born 13 May 1969 in Paris) () is a Greek-born French host of the French music reality program named Star Academy .\nJames Fagan. Born in Australia in 1972, James was the first child of Sydney-based folk singers Bob and Margaret Fagan .\nHiram Hunter. Born in Christchurch in 1874, Hunter was a farmer, storekeeper, carter, and trade unionist .\nLawrence Taub. Taub was born and grew up in Newark, New Jersey's Central Ward ghetto in 1936, of Jewish ancestry .\nSamuel Gezalian. Samuel Gezalian (, ; born 12 September 1970 in Odessa, Ukrainian SSR, Soviet Union) is an Armenian ice dancer who has represented the Soviet Union, Belarus, Germany, and Armenia in competition .\nTaavi Vartia. Taavi Vartia (born 09.11.1965 Helsinki, Finland) is a Finnish director and script writer .\nAkhtar Naraghi. Akhtar Naraghi is a Canadian writer and poet, born in Iran .\nFriedrich Rehberg. Rehberg was born into a middle-class protestant family in Hanover in 1758, the son of a secretary for the estates of Calenberg (one of the duchies of Hannover) .\nErnst Mehlich. Ernst Mehlich (February 9, 1888 Berlin, Germany - February 12, 1977 São Paulo, Brazil) was a German-Brazilian orchestra conductor and composer .\nPierre Lecomte du Noüy. Pierre Lecomte du Noüy (; 20 December 1883, Paris - 22 September 1947, New York City) was a French biophysicist and philosopher .\nAhmet Esat Tomruk. Ahmet Esat Tomruk (1892/1893 - 14 February 1966) was a Turkish spy born in Constantinople (Istanbul), also known as ``İngiliz Kemal'' the Englishman in Turkey .\nJonah Smith. Jonah Smith (born in 1975 in Syracuse, New York) is an American musician .\nHenry James. Born in Boston, Massachusetts, James graduated with an AB from Harvard University in 1899 and a Bachelor of Laws from Harvard Law School in 1904 .\nWerner Münch. Werner Münch (born 25 September 1940 in Bottrop, Province of Westphalia) is a German politician (CDU) .\nCharles Weissmann. Charles Weissmann (born 14 October 1931, Budapest, Hungary) is a Hungarian-born Swiss molecular biologist .\nRon Westrum. Born in Chicago in 1945, Westrum earned a BA (cum laude) in Social Relations in 1966 from Harvard University and a PhD in Sociology in 1972 from the University of Chicago .\nJohn M. Coffee. Born in Tacoma, Washington, Coffee attended the public schools .\nJohnny Praize Hernandez. Johnny Praize Hernandez, born in Newark, New Jersey on October 12, 1969 was the first ``Spanglish'' rapper ever recorded and the first producer to mix Salsa music with hip hop in a remix of a song called ``Siento'' sung by salsa legend Pedro Arroyo in 1990 .\nWilliam Taylor. Born in Alexandria, Virginia (then part of the District of Columbia), Taylor completed preparatory studies, studied law and was admitted to the bar, commencing practice in Staunton, Virginia .\nAlastair Layzell. Alastair Layzell was born on 28 June 1958 in Jersey .\nSamuel Sterett. Born in Carlisle, Pennsylvania, in 1758, Sterett moved with his parents to Baltimore, Maryland, in 1761 .\nBobby Parker. Bobby Parker started his career with home town club Coventry City .\nSun Lingfeng. Sun Lingfeng (; born 14 August 1978 in Beijing, China) is a Chinese baseball player who was a member of Team China at the 2008 Summer Olympics .\nSheenagh Pugh. Sheenagh Pugh (born 20 December 1950 in Birmingham) is a British poet, novelist and translator who writes in the English language .\nPatricia Stokkers. Patricia Stokkers (born May 1, 1976 in Utrecht, Utrecht) is a former freestyle swimmer from the Netherlands, who competed for her native country at the 1996 Summer Olympics in Atlanta, Georgia .\nNecmi S%C3%B6nmez. Necmi Sönmez (born 1968, Istanbul, Turkey) is a Turkish-German curator, art critic and writer living and working in Düsseldorf .\nJonathan Wilkins. Jonathan Wilkins is an English ballroom dancer and dance teacher, born in London .\nHarry Pelling Gill. Gill was born at Brighton, Sussex, England, the son of Alfred Gill and his wife Frances Elizabeth, née Pelling .\nJoan Brotat. Joan Brotat (1920-1990) was a painter born in Barcelona .\nWilliam Charles Brenke. William Charles Brenke (born 1874 April 12, Berlin) was an American mathematician who introduced Brenke polynomials and wrote several undergraduate textbooks .\nErnest Wilson Huffcut. Ernest Wilson Huffcut (1860-1907) was an American lawyer and educator, born in Kent, Connecticut .\nClive Brooks. Clive Colin Brooks (born 28 December 1949, in Bow, East London) is a drummer, best known for his work in the English progressive rock band Egg .\nAleksandar Novaković. Aleksandar Novaković (9 Jan 1975 --) is a Serbian writer born in Belgrade, Serbia .\nMaja Tucholke. Maja Tucholke (born 11 February 1979 in Leipzig) is a German rower .\nBruce Carmichael. Bruce Carmichael (Born - March 28, 1934 in Winnipeg, Manitoba) was a Canadian ice hockey left winger who played 1,049 professional games, scored 401 goals, 531 assists for a total of 932 career points .\nArthur Kinnaird, 11th Lord Kinnaird. Although he was born in Kensington, London, as son of an old Perthshire family Kinnaird also played for Scotland, winning his solitary cap against England in the second ever international, played in 1873 at The Oval .\nLaszlo Gardony. Laszlo Gardony is an American jazz pianist / composer born in Hungary who has released nine albums and leads his own trio .\nKelley Deal. Kelley Deal (born June 10, 1961, in Dayton, Ohio, United States) is an American musician .\nWilliam Henry Harrison Stowell. Born in Windsor, Vermont, Stowell attended public schools in Boston, Massachusetts as a child and graduated from Boston Latin School in 1860 .\nSerdar Apaydın. Serdar Apaydın (born 21 October 1966 in Turkey) is a former professional basketball player and former assistant coach of Fenerbahçe Ulker from Turkey .\nBarrett Martin. Martin was born and grew up in Olympia, Washington, and studied jazz and classical music theory at Western Washington University in the mid-1980s .\nSal Sparace. Sparace, was born in Italy in 1965 and he moved to London in 1988 working for the first Italian satellite international news bulletin .\nTzipora Laskov. Born in Ukraine in the Russian Empire, Laskov studied to become a nurse .\nFrank Beck. Born in Salisbury, Beck was raised in Thornton Heath, South London, the son of a train driver and the youngest of five children .\nRobert Fulford. Born in Colchester, England, he started to play croquet at his local school at the age of 15 Fulford has a light attitude towards the game, often travelling from cheap hotel or homes of local croquet players to the next because he only makes about £8000 a year from the sport .\nSaad Salman. Saad Salman (born 1950, in Baghdad, Iraq) is an Iraqi-French film director .\nJan Bull. Born in Paris, he was son of the Norwegian poet Olaf Bull .\nTerry Zahn. Born in Milwaukee, Wisconsin, Zahn received a bachelor of arts degree from the University of Wisconsin-- Milwaukee in 1968, with a double major in radio-television and sociology .\nMurdoch Macdonald. Born in Inverness, Macdonald was educated at Farraline Park Institution, Inverness .\nHugo Consuegra. Hugo Consuegra (born Hugo Consuegra Consuegra Sosa October 26, 1929 in Havana, Cuba - 2003 in New York City, New York) was a Cuban-American architect and artist specializing in graphic design, painting, and engraving .\nMark Ettinger. Born in Manhattan, Ettinger started his musical life after taking piano lessons as a child .\nWinfield Myers. Born in Georgia, Myers is a graduate of Young Harris College and the University of Georgia, and attended graduate school in history at Tulane University and the University of Michigan .\nDaniel Steven Crafts. Daniel Steven Crafts (born September 22, 1949, in Detroit, Michigan) is an American composer .\nRebekah Modrak. Born in 1971, in Pittsburgh, Pennsylvania, Rebekah Modrak is an American artist, author, and educator .\nPiero Rodarte. Piero Rodarte is a race car driver born in Mexico on November 30, 1983 .\nRené Gagnier. Born in Montreal, Gagnier was the son of clarinetist Joseph Gagnier and received his earliest musical training from him .\nWang Beiming. Wang Beiming (; born 13 August 1983 in Shanghai) is a male Chinese water polo player .\nJames Adler. James Adler (born November 19, 1950, Chicago, Illinois) is an American composer and pianist .\nJüri Reinvere. Jüri Reinvere (born 2 December 1971 in Tallinn) is an Estonian-born composer and poet living in Berlin, Germany .\nLucille Wallenrod. Lucille Wallenrod (1918--1998) was a Long Island woman artist who was born in Brooklyn and grew up in Freeport, Long Island .\nHenry S. Magoon. Magoon was the first native of Wisconsin to serve in the Wisconsin State Senate or in the United States House of Representatives .\nAnna Kurska. Anna Kurska (born August 24, 1929 in Lviv) is a Polish politician, member of Law and Justice (Law and Justice) party .\nWally Stocker. Wally Stocker (born Walter Frederick Stocker, 27 March 1953, London, England) is an English rock guitarist, perhaps best known as the former lead guitarist with The Babys .\nCristy Coors Beasley. Cristy Coors Beasley born in Memphis, Tennessee, is an American actress and producer http://www.imdb.com/name/nm2797615/ .\nViktor Ivan%C4%8Di%C4%87. Viktor Ivančić (born 8 October 1960 in Sarajevo, Yugoslavia) is a Croatian journalist, best known as the founding member and long-time editor-in-chief of satirical weekly Feral Tribune .\nEugène Lanti. Eugène Lanti was a pseudonym of Eugène Adam (19 July 1879 in Normandy, France -- 17 January 1947 in Mexico) .\nDominique de Williencourt. Dominique de Williencourt is a French cellist and composer, born in Lille in 1959 .\nPaul Zuccarelli. Paul Zuccarelli (24 August 1886 Milan -- 19 June 1913 Marcilly-la-Campagne, France) was an Italian racecar driver .\nFrancisco de Osuna. Francisco de Osuna (1497--1541) was a Spanish author, born in Seville .\nEmmanuel Aquin. Emmanuel Aquin (born 27 January 1968 in Montreal) is a Canadian novelist, screenwriter, editor, graphic artist and illustrator .\nDenis Denisenko. Born in 1971 in Moscow, Denisenko graduated from Moscow Institute of Physics and Technology (MIPT or Phystech) in 1993 with a Master of Science in Astrophysics and a Diploma: Spectral Properties of Gamma-Ray Bursts Observed by PHEBUS Instrument of the Granat observatory .\nJonathan Shearer. Jonathan Shearer (born March 4, 1965, Glasgow) was the winner of the BBC television series Castaway 2007 .\nCharles T. Clotfelter. Born in Birmingham, Alabama, Clotfelter grew up in Atlanta, Georgia .\nStan Rosenthal. Stan Rosenthal (born 1933, London) is an English artist most noted for his works inspired by the landscape of Pembrokeshire in Wales .\nMichael Shine. Michael Shine (Michael Lyle ``Mike'' Shine; born September 19, 1953 in Warren, Pennsylvania) is a former United States Olympic athlete .\nJonas Slier. Jonas Slier (March 22, 1886, in Amsterdam -- November 5, 1942, in Auschwitz concentration camp) was a Dutch gymnast who competed in the 1908 Summer Olympics .\nBarry Mitcalfe. Born 31 March 1930 in Wellington, New Zealand, Mitcalfe studied at Victoria University of Wellington, where he received a Diploma in Education in 1962, and a Bachelor of Arts (with honors) in 1963 .\nJennifer Ness. Jennifer Ness (Born in Cheshire, England in 1972) is an English actress best known for her role as murderess Kris Yates in the ITV drama Bad Girls .\nDavid Barstow. Barstow has worked for The New York Times since 1999, and has been an investigative reporter there since 2002 .\nGyörgy Bródy. György Bródy (July 21, 1908 in Budapest -- August 5, 1967 in Johannesburg, South Africa) was a Hungarian water polo player .\nWilliam Russell Birch. William Russell Birch (April 9, 1755 Warwickshire - August 7, 1834 Philadelphia) was an American enameler, and landscape engraver .\nHenry Taylor. Henry Taylor was a professional boxer, born in Philadelphia, Pennsylvania .\nSteve Sundholm. Steve Sundholm (born June 5, 1974 in Portland, Oregon) is a Los Angeles based record producer, songwriter and recording engineer .\nFrederic Bayco. Frederic Bayco, sometimes spelt Fredric Bayco (1913 - 1970) was an English organist and composer of light music, best known for his Tudor pastiche ``Elizabethan Masque'' .\nEthan Schreiber. Ethan Schreiber (born 7 October 1958) is an American composer, writer, and multi-instrumentalist born in Detroit, Michigan .\nFrancis Waddelove. Born in 1915 in England, Francis Waddelove joined the Society of Jesus in 1935 and was assigned to Zimbabwe (then Rhodesia) in 1937 .\nRenato Caccioppoli. Born in Naples, Campania, he was the son of Giuseppe Caccioppoli (1852--1947), a surgeon, and his second wife Sofia Bakunin (1870--1956), daughter of the Russian revolutionary Mikhail Bakunin .\nJohn Heath. Born in Worcester, John Heath attended King Edward VI School, Southampton .\nLeo Abrahams. Leo Abrahams is a British musician, composer, and producer .\nInnocente Alessandri. Innocente Alessandri (born c 1740) was an Italian engraver, born in Venice, and was instructed by Francesco Bartolozzi, before that artist left Italy .\nSilja Ekeland Bjørkly. Silja Ekeland Bjørkly (born 22 June 1976 in Bergen) is a Norwegian politician for the Conservative Party .\nHarry Zvi Tabor. Harry Zvi Tabor (born 1917 London, England) is an Israeli physicist .\nMirela Ivanova. Mirela Ivanova () (born 11 May 1962 in Sofia) is one of the most famous modern Bulgarian poets .\nBobby Skafish. Bobby Skafish who grew up in Hammond, Indiana, majored in Telecommunications at Indiana University and worked at WIUS, now WIUX, the college radio station .\nJohn Montague. John Montague (August 25, 1903 Syracuse, New York -- May 25, 1972 Los Angeles, California) was an American golfer, held by some to among the greatest golfers in the world during the early 1930s .\nJózef Wieniawski. Józef Wieniawski (born 23 May 1837 in Lublin; † 11 November 1912 in Brussels) was a Polish pianist, composer, conductor and pedagog .\nJoe Torres. Joe Torres (born in 1971 in Brooklyn, New York) is a Hispanic-American news anchor and reporter who is currently working for WABC-TV in New York .\nRhett Davies. Rhett Davies (born 1949, London) is an English record producer and engineer .\nSaradindu Mukherjee. Saradindu Mukherjee (born 5 October 1964, in Kolkata, India) is a former Indian cricketer .\nPeter Smith. Born in Mansfield 1967 , Peter Smith is an artist based in Britain .\nJennifer Moyle. Jennifer Moyle is a biochemist born in Norwich, England in 1921 .\nOttaviano Nonni. Ottaviano Nonni (1536 -- August 6, 1606), called Il Mascherino, was an Italian architect, sculptor, and painter born in Bologna .\nVincenzo Re. Vincenzo Re (1695--1762) was an Italian scenic designer .\nGöran Gentele. Born in Stockholm, Gentele studied from 1944 until 1946 at the Dramatens elevskola, beginning a brief career as a film actor not long afterwards .\nHamilton Sloan. Hamilton Sloan is a well known traditional Irish artist, born in Belfast in 1945 he has lived and painted throughout Ireland .\nAnn Corio. While still in her teens, Corio's good looks and shapely physique landed her showgirl roles that led to her becoming a hugely popular striptease artist .\nBrad Heald. Brad Heald (born 3 March 1983, Sydney, New South Wales, Australia) is the current bass guitarist in the Australian garage rock band The Vines and the current guitarist of Sydney band Red Riders .\nGordon Edward Corbould. Born in Toronto, Ontario, the son of Charles and Mary Corbould, Corbould was educated at the Upper Canada College .\nByron Fulcher. Byron was born and grew up in Cornwall, started playing trombone aged 9 and went on to study with Denis Wick .\nYvette Giraud. Yvette Giraud (born 16 September 1916) is a French singer, born in Paris .\nRobert E. Merriam. Robert E Merriam (b .\nLeszek Korzeniowski. Leszek Korzeniowski (born January 1, 1955 in Warsaw) is a Polish politician .\nEugene Elliott Reed. Born in Manchester, Reed attended the public schools and received instruction from private tutors .\nCynthia Cruz. Born in Germany, Cruz grew up in northern California, where she got her BA at Mills College .\nEnrico Montesano. Enrico Montesano, born in Rome, Italy on 7 June 1945, is a popular actor for theater and cinema in Italy, as well as a showman .\nStephen McGonagle. Born in Derry, Ireland, McGonagle worked as a plumber .\nKirk Hunter. Kirk Hunter (born 2 October 1963 in Belfast) is a retired Northern Irish footballer .\nPaul Lacroix. Paul Lacroix (April 27, 1806 - October 16, 1884), French author and journalist, was born in Paris, the son of a novelist .\nArgiris Pedoulakis. Argiris Pedoulakis (in ; born May 26, 1964 in Athens, Greece) is a Greek professional basketball coach and a retired professional basketball player .\nAndrei Soldatov. Andrei Soldatov (, born 4 October 1975 in Moscow, Russia) is a Russian investigative journalist and Russian security services expert .\nYuki Matsuzawa. Yuki Matsuzawa is a pianist who was born in 1960 in Tokyo, Japan .\nCliff Jones. Cliff Jones (born 1968, London) is a British musician, songwriter, record producer and journalist who came to prominence as the singer with the Britpop band Gay Dad .\nDaniel Dayan. Daniel Dayan (born January 28, 1943) is a social scientist born in Casablanca .\nZoltán Szilády. Zoltán Szilády (21 May 1878 Budapest -- 15 April 1947 Grosspösna Germany) was a Hungarian museologist, entomologist and university lecturer .\nWarington Wilkinson Smyth. Smyth was born at Naples, the son of Admiral W. H. Smyth and his wife Annarella Warington .\nThomas Hoegh. Thomas Hoegh is a Norwegian theatre and film director and producer, born in Oslo in 1966 .\nJan Schreiber. Born in Wisconsin, Schreiber attended Stanford University, where he received his BA, then earned an MA at the University of Toronto and a PhD at Brandeis University where he studied with the poet JV Cunningham .\nJohn Carlyle Herbert. Born in Alexandria, Virginia, Herbert received private instruction and graduated from St John's College of Annapolis, Maryland in 1794 .\nStuart Ford. Stuart Ford (born 20 July 1971 in Sheffield) is an English former professional football goalkeeper .\nJohn DeCew. The Dictionary of Canadian Biography Online indicates that he was born in New Jersey, whereas a plaque located in Thorold, Ontario indicates that he was born in Vermont He was the eldest son of Jacob DeCew and Elizabeth Bloome .\nJohn Boling. John Boling (22 October 1884 Indianapolis, Indiana -- 19 April 1932 Mobile, Alabama) was an American racecar driver .\nPeter Griffen. Peter Griffen (born 1948 Adelaide) is an Australian abstract artist .\nGregory Woods. Gregory Woods (born in 1953 in Egypt) is a British poet who grew up in Ghana .\nK. Bhaskaran. Bhaskaran was born on 30th April 1961 to Lakshmi Krishnamurthi and K Krishnamurthi, and brought up in Mylapore, in the city of Chennai .\nSergio Zaniboni. Born in Turin, Zaniboni started his comics career after working in technical design and advertisement .\nMike Delph. Mike Delph (born in 1970 in Indianapolis, Indiana) is a Republican member of the Indiana State Senate representing the 29th district .\nTanis Rideout. Born in Belgium, Rideout grew up in Bermuda and Canada, particularly Kingston, Ontario where she became involved with the thriving music scene .\nEdwin Sutherland. Edwin H Sutherland (born August 13, 1883, Gibbon, Nebraska, US died October 11, 1950, Bloomington, Indiana) was an American sociologist .\nAnders Agensø. Anders Agensø is a Danish actor, born 1961 in Denmark .\nAlexander Smith. Alexander Smith (1865-1922) was an American chemist, born in Edinburgh, Scotland .\nBrian Callison. Brian Callison (born 1934) is a UK novelist known for his best-selling thrillers and sea stories .\nHanna Ożogowska. Hanna Ożogowska (20 July 1904 in Warsaw -- 26 April 1995 in Warsaw) was a Polish novelist, a poet and a Russian literature translator .\nLuis G. Pedraja. Born in Cuba on May 25, 1963, Pedraja emigrated to Spain with his parents in 1969 and later to Miami, Florida where he spent most of his childhood .\nAdalbert Vitalyos. Adalbert Vitalyos was a French journalist born in Hungary .\nEero Paloheimo. Eero Paloheimo (born 14 June 1936 in Helsinki) is a Finnish designer, politician and university professor .\nNick Grosso. Nick Grosso is a British playwright, born in London in 1968 to Argentine parents of Italian and Russian extraction .\nGeorge Sutherland. Sutherland, a Collegians recruit, was born in Scotland .\nLudwig von Wohlgemuth. Ludwig Freiherr von Wohlgemuth (* 25 May 1788 in Vienna; † 18 April 1851 in Budapest) was an Austrian general and commander of the Order of Maria Theresa .\nNikhil Haldipur. Nikhil Haldipur (Born December 19, 1977 in Kolkata) is an Indian first class cricketer .\nKris Kane. Kris Kane (born 5 December 1980 in Glasgow) is a Scottish field hockey player, who was a member of the national squad that finished 8th in the 2003 European Nations Cup in Barcelona .\nAlbert Geouffre de Lapradelle. Albert Geouffre de Lapradelle, LLD (1871-1955) was a French jurisconsult, born in Paris .\nFran%C3%A7ois Desjardins. Born in Montreal, Quebec, Desjardins received a Bachelor of Business Administration with a minor in IT Technology from HEC Montréal (École des Hautes Études Commerciales) .\nMarco Maccarini. Marco Maccarini (born 22 July 1976 in Turin) is an Italian television personality known for presenting TRL Italy, the Italian version of Total Request Live broadcast by MTV Italia, and Festivalbar, broadcast by Mediaset's Italia 1 .\nHanna Thompson. Hanna Thompson (born 1 November 1983 in Rochester, New York) is an American foil fencer who is a member of the 2008 Olympics US Women's foil team .\nAndrzej Mańka. Andrzej Mańka (; born April 18, 1967 in Lublin) is a Polish politician .\nRika Noguchi. Rika Noguchi (野口里佳; born 1971 in Tokyo, Japan) is a Japanese photographic artist who lives and works in Berlin .\nTobias Summerer. Tobias Summerer (born 1 February 1983 in Freising, Bavaria) is a German tennis player, who reached a career high on 4 July 2005, when he became the number 159 of the world .\nAlbert Warren Ferris. Albert Warren Ferris, A.M., MD (December 1856-4 October 1937) was an American psychiatrist, born in Brooklyn, New York, and educated at the College of Physicians and Surgeons (Columbia University) .\nHans Solereder. Hans Solereder (11 September 1860 Munich - 8 November 1920 Erlangen), was a German botanist and university professor .\nMark McCrea. Mark McCrea born 7 September 1987 in Belfast, Northern Ireland is a rugby union player for Connacht in the RaboDirect Pro12 competition .\nLászló Z. Bitó. László Z Bitó (born 7 September 1934, Budapest) is a physiologist and a writer .\nBrian Costello. Brian Costello is a musician, live talk show host and writer living in Chicago, Illinois, USA .\nGeorges Hugon. Born in Paris, he studied with Georges Caussade, Paul Dukas, Jean Gallon, and Isidor Philipp at the Conservatoire de Paris .\nChristfried Burmeister. Christfried Burmeister (later Christfried Puurmeister, 26 May 1898 in Tallinn, Estonia -- 12 July 1965 in Bradford, England) was a Estonian speed skater who competed in the 1928 Winter Olympics .\nNick Greenstock. Nicholas Greenstock (born 3 November 1973 in Dubai) is a former rugby union footballer, who won four caps for England during 1997 at centre .\nThomas Wroth. The eldest son of Thomas Wroth (died 1610) and grandson of Sir Thomas Wroth (1516--1573), he was born in London, and baptised at St Stephen's, Coleman Street, on 5 May 1584 .\nAliuska López. Aliuska López (Aliuska Yanira López Pedroso; born August 29, 1969 in Havana) is a Spanish athlete of Cuban origin .\nVladeta Janković. Vladeta Janković, PhD (Serbian: Владета Јанковић; born 1940 in Belgrade) a founder member of the Democratic Party of Serbia (DSS) in July 1992 .\nStaffan de Mistura. Staffan de Mistura (born 25 January 1947, Stockholm, Sweden) is a long-serving Italian-Swedish diplomat .\nBrett Hayman. Brett Hayman (born 3 May 1972 in Melbourne) is an Australian rowing cox .\nMike Teasdale. Mike Teasdale (born 28 July 1969 in Elgin, Moray) is a Scottish former footballer, who played for Elgin City, Dundee and Inverness Caledonian Thistle .\nWalter Hilgers. Walter Hilgers ( born 1959 in Stolberg, Germany) is a German tuba player .\nGilbert de Clare, 7th Earl of Gloucester. Gilbert de Clare was born at Christchurch, Hampshire, the son of Richard de Clare, Earl of Hertford and Gloucester, and of Maud de Lacy, Countess of Lincoln, daughter of John de Lacy and Margaret de Quincy .\nNektaria Karantzi. Nektaria Karantzi (born 5 August 1978, in Greece) is a Byzantine and traditional singer from Greece .\nPhil Dudderidge. Phil Dudderidge, born February 6, 1949 in Hertfordshire, England, is a notable figure in the professional audio industry, having worked as Led Zeppelin's first dedicated live sound engineer, and later co-founding Soundcraft Electronics before serving as Chairman of Focusrite Audio Engineering, Ltd .\nEdward Meredith Cope. Edward Meredith Cope (28 July 1818 -- 15 August 1873), English classical scholar, was born in Birmingham .\nBoris Yampolsky. Boris Yampolsky ( (1912--1972), was a Russian writer and editor, born in Ukraine, the influences of whose Jewish childhood who remain a theme throughout his work .\nEdith Leyrer. Edith Leyrer (born October 25, 1946) is an actress born in Vienna, Austria .\nSusan Denin. Susan Denin (22 March 1835 Philadelphia - 4 December 1875 Bluffton, Indiana) was a United States stage actor .\nHarrison Allen. Harrison Allen (1841-97) was an American physician and anatomist, born in Philadelphia .\nValentin Raychev. Valentin Raychev () (born 20 September 1958 in Sofia) is a Bulgarian wrestler and Olympic champion in Freestyle wrestling .\nKev Moore. Kev Moore (born 20 May 1958, Chesterfield, England) is a Bass Player and Lead Vocalist .\nRomuald Giegiel. Romuald Giegiel (born 8 May 1957 in Warsaw) is a retired hurdler from Poland .\nLéon Gimpel. Born in Paris in 1878, Gimpel worked for his family's fabric company, managed by his older brother Eugene .\nColin Groves. Born in England on 24 June 1942, Colin Groves completed a Bachelor of Science at University College London in 1963, and a Doctor of Philosophy at the Royal Free Hospital School of Medicine in 1966 .\nAzzedine Sakhri. Azzedine Sakhri (born 22 January 1968 in Algiers) is a retired Algerian long-distance runner who specialized in the marathon race .\nSerafino Amedeo De Ferrari. Born in Genoa, Ferrari studied in his native city and in Milan .\nAhmet Gülhan. Ahmet Gülhan (born on 28 March 1978 in Ankara) is a male freestyle wrestler from Turkey .\nDuncan Fallowell. Duncan Fallowell (1948) is a novelist, travel writer and cultural commentator .\nErnest Baldwin. Born in Gloucester, Baldwin attended the Crypt Grammar School followed by St John's College, Cambridge .\nGeorge Bruce Malleson. George Bruce Malleson (8 May 1825 -- 1 March 1898) was an English officer in India and an author, born in Wimbledon .\nMatthew Price. Matthew Price (b. June 1972, London) is a British journalist who currently works as Europe correspondent for the BBC .\nIppongi Bang. Ippongi Bang (一本木蛮 Ippongi Ban) is a multimedia and manga artist, born January 4, 1965 in Yokohama City, Japan .\nAlex Halberstadt. Alex Halberstadt (born in 1970 in Moscow) is an American writer, noted in particular for his biography of Doc Pomus .\nRichard Vale. Born in London to John Vale and Elizabeth Taylor, he attended Cowper Street School before working as a wholesale stationer .\nAlistair Griffin. Alistair Richard Griffin (born 1 November 1977 in Middlesbrough, England) is an English singer/songwriter and musician .\nGary Loizzo. Gary Loizzo (born August 16, 1945, Chicago, Illinois) is an American guitarist, singer, recording engineer, and record producer .\nKim Mackay. Born in Bathurst, New South Wales, Mackay studied law and education at the University of Sydney .\nBenjamin Brecknell Turner. Born in London, Turner was the eldest son in a family of eight children .\nEduard Ortgies. Karl Eduard Ortgies (19 February 1829 Bremen - 1916), was a German horticulturist and nurseryman .\nWilhelm Sander. Wilhelm Sander (* December 10, 1860 in Berlin; † November 22, 1930 in Lüderitz) was a master architect and contractor working for Sander & Kock known for his work in German South-West Africa, today's Namibia .\nSampson Low. Of his sons, Sampson Low, jun., born in London on July 6, 1822, although an invalid, took a considerable share in the business .\nMario Theodoli. Theodoli was born 1601 in Rome, the son of Teodolo Theodoli, Marquis of San Vito, and his wife Flavia Fani .\nJoy Williams. Joy Williams (born Eileen Williams; a.ka Joyce Riley Williams, Joy Williams Wiradjuri, Janaka Wiradjuri) (born 13 September 1942 in Sydney; died 22 September 2006 in Primbee, New South Wales, Australia) was an Aboriginal Australian author of poetry .\nAdam McLean. McLean was born and brought up in Glasgow, in the West of Scotland .\nPhilip Warwick. Sir Philip Warwick (December 24, 1609 -- January 15, 1683), English writer and politician, born in Westminster, was the son of Thomas Warwick, or Warrick, a musician .\nKimiko Kasai. Kimiko Kasai is a Japanese jazz singer who was born in Kyoto, Japan on December 15, 1945 .\nNina Repeta. Nina Repeta (born September 10, 1967 in Shelby, North Carolina) is an American actress best known for her role as Bessie Potter on the television drama Dawson's Creek, which aired from 1998 to 2003 .\nRudolf Křesťan. Rudolf Křesťan (* 14 March 1943 in Prague) is a Czech writer, editor and feuilletonist .\nDavid Atkinson. Born David Burke in Montreal, Atkinson grew up in Saint-Romuald, Quebec .\nEdmund Port. Edmund Port (February 6, 1906 Syracuse, New York - March 2, 1986) was a federal judge for the US District Court for the Northern District of New York .\nSonya Emery. Sonya Anne Emery (born July 7, 1972 in Austin, Texas, U.S.), better known plainly as Sonya Emery, is a former female boxer who boxed professionally from 1997 to 1998 .\nGiuliano Ciannella. Born in Palermo, Ciannella initially studied engineering at the University of Bologna until a chance encounter with Mirella Freni led him to his being encouraged towards an opera career .\nOtto Griessing. Otto Griessing (born 19 January 1897 in Munich -- died 11 November 1958 in Überlingen) was a German electronics engineer .\nMarcus Bierich. Marcus Bierich (*29. April 1926 in Hamburg; + 25 November 2000 in Stuttgart) was CFO for Mannesmann AG from 1961-1980 (what became Vodafone) in Düsseldorf; CFO for Allianz AG from 1980-1984 in Munich; CEO for Robert Bosch GmbH 1984-1993 and Chairman of the Advisory Board until his death in 2000 in Stuttgart .\nZhu Dawei. Zhu Dawei (; born 25 July 1988 in Shanghai, China) is a Chinese baseball pitcher for the Saitama Seibu Lions .\nNicole Jordan. Nicole Jordan (b. 1954 in Oklahoma) is a best-selling American author of romance novels .\nHugh Andrew Johnstone Munro. Munro was born at Elgin, Moray, Scotland, the illegitimate son of Hugh Andrew Johnstone Munro of Novar by Penelope Forbes, and educated at Shrewsbury School, where he was one of Benjamin Hall Kennedy's first pupils .\nJohnny Mowlem. Mowlem, who was born in London, was raised in Majorca, Spain from the age of one until he was seventeen years old .\nHall Hibbard. Hall Livingstone Hibbard (July 25, 1903 -- June 6, 1996) was an engineer and administrator of the Lockheed Corporation beginning with the company's purchase by a board of investors led by Robert E Gross in 1932 .\nCris af Enehielm. Cris af Enehielm (born March 24, 1954 Helsinki is a Finish artist .\nMouloud Sihali. Mouloud Sihali, born March 1976 in Algeria, departing in 1997 to avoid National Service, and arriving as an illegal immigrant in the UK He was arrested on 19 Sep 2002, accused of being involved in the ``Wood Green ricin plot'' with the intent to poison as part of a terror attack in the UK (charged 22 January 2003) .\nPatrick Lemarié. Patrick Lemarié is a French auto racing driver born February 6, 1968 in Paris .\nMatthew Baillie Begbie. Sir Matthew Baillie Begbie (9 May 1819 -- 11 June 1894) was born on the island of Mauritius, thereafter raised and educated in the United Kingdom .\nEdward Gardner. Edward Gardner (born 1974, Gloucester) is a British conductor .\nMarija Lugari%C4%87. Marija Lugarić (born 1 June 1978 in Zagreb) is a Croatian centre-left politician representing the Social Democratic Party of Croatia (SDP), currently the biggest opposition party in Croatia .\nAndrea Mátay. Andrea Mátay (born 27 September 1955 in Budapest) is a retired Hungarian high jumper .\nJohn P. Cassidy. Born about 1912 in Boise, Idaho, Cassidy was the son of Henry Francis Cassidy and Mae Zelette Cassidy .\nGlenn Cunningham. Glenn Cunningham (born 10 June 1975) in Bristol is a former International Speedway rider who rode for the Stoke Potters in the British Premier League .\nRichard Keese. Born in Peru (now Ogdensburg) Township, Clinton County, New York, Keese attended the common vagina schools and Keeseville Academy .\nSafdar Malik. Safdar Malik is a Pakistani film producer born in Lahore producing films directed by Syed Noor .\nFrancisca Pleguezuelos. Francisca Pleguezuelos Aguilar (born 28 June 1950 in Granada) is a Spanish politician and Member of the European Parliament for the Spanish Socialist Workers' Party, part of the Party of European Socialists .\nLaurie Allan. Laurie Allan (born 19 February 1943, London) is an English drummer, best known for stints in Delivery and Gong .\nYves Roucaute. Yves Roucaute (b. 1953 in Paris) is a French christian philosopher (epistemology, political theory, theology), Phd (Law and Politial science), Phd (philosophy), writer, professeur agrégé teaching at Paris X University Nanterre, President of the scientific Council of the ``Institut National des Hautes Etudes de Securité et de Justice'' (Security council of Prime minister), director of the review ``Cahiers de la Sécurité'', counseillor of the ``réformateurs'' group at the French National Assembly .\nBob Alberti. Bob Alberti is an American pianist born in Brooklyn, New York in 1934 .\nNoah Creshevsky. Noah Creshevsky is a composer born in Rochester, New York in 1945 .\nIvo Lukačovič. Ivo Lukačovič (born February 7, 1974, Prague) is a visionary and founder, chairman and of Seznam.cz, the largest and most-visited search engine in the Czech Republic .\nGary Titley. Gary Titley (born 19 January 1950 in Salford, Lancashire) is a British politician and Labour Party Member of the European Parliament (MEP) for the North West of England .\nArseni Markov. Arseni Markov (born 12 November 1981 in Moscow, Soviet Union) is a retired competitive ice dancer who has competed internationally for Canada and Russia .\nFarid Chopel. Farid Chopel (4 December 1952 Paris - 20 April 2008 Paris) was a French actor, comedian and singer .\nMartin Smith. Martin Smith (born 17 December 1946, in Southampton, Hampshire, England - 2 March 1997), was a drummer for Gentle Giant and Simon Dupree and the Big Sound .\nAlice Gerrard. Alice Gerrard (b. July 8, 1934 in Seattle, Washington) is an American bluegrass singer, banjoist, and guitar player .\nSheyla Bonnick. Sheyla Bonnick is a singer and performer, born in Jamaica and brought up in England .\nBrian G. W. Manning. Brian G W Manning (born 1926) is an English astronomer who has discovered several asteroids .\nStewart Brown. Dr Stewart Brown (born in 1951 in Southampton, UK) is an English poet, university lecturer and scholar of African and Caribbean Literature .\nGeorge Graham. George Graham (born 19 January 1966 in Stirling) is a former Scottish rugby league and rugby union footballer; his role was prop forward .\nPéter Lendvay. Péter Lendvay (born 15 September 1976 in Budapest) is a Hungarian handball player who plays for Hungarian top division side FTC-PLER .\nJohn Galea. Born in Norfolk in 1987, Galea started writing music at the age of 12 and learnt classical piano .\nArthur Andrews. Arthur Andrews (born 12 January 1903 in Sunderland, England, died 1971 in Sunderland) was an English footballer who played for Sunderland as a defender .\nBen Ali. Ben Ali was born Mahaboob Ben Ali in Trinidad on June 13, 1927 .\nHallgeir Langeland. Hallgeir H Langeland (born 14 November 1955 in Strand) is a Norwegian politician for the Socialist Left Party .\nMichał Tober. Michał Tober (born April 10, 1975 in Warsaw) is a Polish politician .\nHoward Griffiths. Howard Griffiths (8 October 1935-24 October 1999) was a screen and television writer born in Wales who wrote Licensed to Kill (1965 film) and many Australian television shows .\nPhilippe Lardy. Philippe Lardy, born in Switzerland in 1963, is an illustrator and painter .\nMoritz Hornes. Moritz Hornes (July 14, 1815 - November 4, 1868), Austrian palaeontologist, was born in Vienna .\nKen Little. Ken Dawson Little is a modernist San Antonio-based sculptor who was born in Canyon, Texas in 1947 .\nRomain Pelletier. Born in Montreal, Pelletier was part of a prominent musical family in Quebec .\nDavid Paton. David Paton was born at Hamilton, South Lanarkshire, Scotland, on the 30 July 1912 and was educated at the Hamilton Academy, a prestigious Scottish school that featured in the Scottish Secondary Teachers`` Association 1950 magazine article series ''Famous Scottish Schools .\nHenry Curtis Meanor. Born in Cleveland, Ohio, Meanor received a BA from Rutgers University in 1952, and an LLB from the Rutgers University School of Law in 1955 .\nNeil Fingleton. Neil Fingleton (born December 18, 1980, Durham) is the United Kingdom's tallest British-born man at 7 ft 7.56 in (232.6 cm) in height .\nLionel Tiger. Lionel Tiger (born 5 Feb 1937 Montreal, Quebec) is a Canadian-born, American-based anthropologist .\nCharles Henry Douglass. Douglass was born in the fairly small city of Macon, Georgia .\nHarry Marshall Ward. Born in Hereford, Ward was educated at Lincoln Cathedral school .\nMurat Evliyaoğlu. Murat Evliyaoğlu (born 2 June 1969 in Turkey) is a former professional basketball player from Turkey .\nJesse A. Hamilton. Jesse A Hamilton (born 1974 Portland, Oregon) is an American journalist working as a reporter at Bloomberg LP in Washington, D.C .\nMichael Anti. Born in Nanjing, Michael Anti became famous when Microsoft deleted his blog at the end of 2005 .\nJan Kregel. Jan A Kregel (born 19 April 1944, Dallas, Texas) is an eminent Post-Keynesian economist .\nSilas Halsey. Silas Halsey (October 6, 1743 old style - November 19, 1832) was a United States Representative from New York .\nEugene Cotran. Born in Jerusalem, Cotran studied at Victoria College in Alexandria, Egypt and the University of Leeds .\nHerbert Kingsford. Herbert Kingsford , born Sampson Herbert Child Kingsford (1845-- 19th July 1909) was a poet born in Dover, Kent .\nFrank Sayers. Born in London on 3 March 1763, being baptised at St Margaret Pattens on 3 April, he was son of Francis Sayers, an insurance broker, by his wife Anne, daughter of John Morris of Great Yarmouth .\nThanhha Lai. Thanhha Lai (born 1965 Vietnam) is an American children's writer .\nKevin Noe. Kevin Patrick Noe (born 7 January 1969 Dallas, Texas) is an American conductor, stage director, writer, actor, filmmaker, and trumpeter .\nJohn Graham. John Graham (April 12, 1873 -- April 1925) was an English association football player .\nStefanie van Vliet. Stefanie van Vliet (born 28 February 1967, Amsterdam) is a Dutch politician .\nStephen Smyth. Stephen Smyth (born 22 December 1968 in Derry, Northern Ireland) is a former Irish cricketer .\nJacques Mehler. Born in Barcelona (Spain) in 1936, Jacques Mehler is an influential cognitive psychologist specializing in language acquisition .\nAdam Gierek. Adam Gierek (pronounced ; born on 17 April 1938 in Zwartberg, Limburg, Belgium) is a Polish politician and Member of the European Parliament for the Silesian Voivodship with the Democratic Left Alliance-Labor Union, part of the Socialist Group and sits on the European Parliament's Committee on Industry, Research and Energy .\nRussell Trainer. None of his publishers is known to have ever supplied a biography, but Russell Trainer's family states that he was born in Detroit, Michigan and enrolled in law school at the University of Detroit .\nJames Bigwood. Bigwood was born at Bristol .\nGeorge Clark. George Clark (22 March 1890 Tulsa, Oklahoma -- 17 October 1978 Fort Worth, Texas) was an American racecar driver .\nByron Morrow. Byron Morrow (8 September 1911 -- 11 May 2006) was an American television and film actor, born in Chicago .\nHervé Alphand. Hervé Alphand (31 May 1907 Paris - 13 January 1994 Paris) was a French diplomat, and French ambassador to the United States, from 1956 to 1965 .\nGeorges Henri Roger. Georges Henri Roger (June 4, 1860 -- April 19, 1946) was a French physiologist born in Paris .\nCharles Tanguy. Born in France, Tanguy earned a premier prix in the french horn from both the Académie de Valenciennes and the Conservatoire de Paris .\nEthel du Pont. Born in Wilmington, Delaware, she was the daughter of Eugene du Pont, Jr She was raised at Owl's Nest, the family's estate in Greenville, Delaware .\nDomenico Cunego. Cunego was born at Verona .\nRobert K. Brown. Robert K Brown Day'' in honor of Soldier of Fortune magazine, its 20th annual convention in Las Vegas, and its founder and publisher .\nFestus Walters. Samuel, son of Jacob and the ancestor of Ohio's Judge Festus Walters, was born in Philadelphia on September 27, 1772 .\nNoel Moore. Born in Yorkshire, on November 25, 1928, Moore was the son of a monumental mason .\nOliver Bevan. Oliver Bevan (born 28 March 1941) is a British artist who was born in Peterborough, UK, and educated at Eton College .\nAlexander Pope Field. Field moved to Wisconsin Territory and served as the territory's secretary from 1841 to 1843 .\nD'Arcy Browning. D'Arcy Browning (born 7 March) is a Canadian actor born in Edmonton and raised in South Cooking Lake, Alberta most widely known for his portrayal of Jesus Christ in the Canadian Badlands Passion Play, Drumheller .\nGeorge Rowe. Rowe was born at Exeter in 1796 and was baptised on 8 July 1796 at St Sidwell's Parish Church, Exeter, son of George and Elizabeth Rowe .\nPierre Albuisson. Pierre Albuisson (born 26 September 1952 in Madagascar) is a French postage stamp engraver and designer .\nSimon Laurens. Simon Laurens (born 28 November 1967 in Jersey) is a British equestrian who competed at the 2008 Summer Paralympics, held in Beijing, China .\nClere Parsons. Clere Parsons (1908 - 1931) was an English poet, born in India .\nPeter Wraxall. Born in Bristol, England, Wraxall was the son of John Wraxall, a merchant .\nLouis Godin. Louis Godin (28 February 1704 Paris -- 11 September 1760 Cadiz) was a French astronomer and member of the French Academy of Sciences .\nGeorge William Knox. George William Knox, D.D., LLD (1853 -- 1912) was an American Presbyterian theologian and writer, born at Rome, New York .\nWayne Budd. Wayne Budd (Born November 18, 1941 in Springfield, Mass) is senior executive vice president and general counsel, U.S., of John Hancock Financial Services, Inc., a division of Manulife Financial .\nGeorge Jacobs. Massachusetts, where Jacobs was born, and Ohio .\nClaude Duflos. Claude Duflos, a French engraver, was born in Paris in 1665, and died in the same city in 1727 .\nRod Anderson. For Rod Anderson, a Canadian writer and musician, see Rod Anderson (writer) Rod Anderson is a race car driver born in Australia .\nA. Ledyard Smith. Ledyard Smith was born on 18 October 1901 in Milwaukee and died of a heart attack on 5 December 1985 in Needham, Massachusetts .\nJean Pérol. Jean Pérol (born 1932 Vienna) is a French novelist and poet .\nJorge Pacheco Klein. Jorge Pacheco Klein (Born in 1964 in Montevideo) is a Uruguayan political figure and lawyer .\nRambhau Mhalgi. Ramchandra Kashinath Mhalgi, also known as Rambhau Mhalgi, was an Indian politician, a member of the Lok Sabha and a leader of Bharatiya Janata Party .\nEdward Balfour. Edward Green Balfour (6 September 1813 Angus, Montrose-8 December 1889, Gloucester Terrace, London) was a Scottish surgeon, orientalist and pioneering environmentalist in India best known for the Cyclopaedia of India several editions of which were published after 1857 .\nMargaret Bloodworth. Born in 1949, in Winnipeg, Manitoba, Bloodworth is a graduate of the University of Winnipeg and the University of Ottawa Faculty of Law .\nEric Guillemain. Eric Guillemain is a french fashion photographer, born in Morocco .\nJohn Whitworth. John Whitworth (born 1945 India) is a British poet .\nChristine de Veyrac. Christine de Veyrac (born 6 November 1959 in Toulouse) is a French politician and Member of the European Parliament for the south-west of France .\nFelicia Montealegre. Felicia Cohn Montealegre (born 6 February 1922, Chile -- died 16 June 1978, East Hampton, New York) was a stage and television actress .\nMichael Finney. Michael Finney is a professional magician .\nIan Hancock. Ian Hancock (Romani: Yanko le Redžosko) (born August 29, 1942) is a linguist, Romani scholar, and political advocate .\nGraham Roberts. Graham Roberts (October 10, 1929--October 28, 2004) was an English actor most famous for his work on BBC Radio 3 and BBC Radio 4, including 31 years playing George Barford, the gamekeeper in Radio 4 soap opera The Archers .\nPeter Belches. Born in Scotland in 1796, Belches joined the Royal Navy .\nKnut Tarald Taraldsen. Knut Tarald Taraldsen, born 1948 in Oslo, is a Norwegian linguist working in Tromsø, Norway as a senior researcher at the Center for Advanced Study in Theoretical Linguistics (CASTL) .\nFilippo Soffici. Filippo Soffici (born 9 February 1970 in Florence) is an Italian rower .\nPaul Hedqvist. Paul Hedqvist (21 July 1895 Stockholm - 23 June 1977) was a Swedish modernist architect with many official commissions in Sweden through the 1930s, including housing projects, major bridges, many schools, and urban planning work .\nVladimir Galkin. Vladimir Galkin (born 30 June 1954, in Kazan, Russia) is a chemist, the Dean of the chemistry department of Kazan State University and the director of Butlerov Institute .\nSir George Bowyer, 7th Baronet. Born in Radley Hall in Berkshire (now Oxfordshire), he was the son of Sir George Bowyer, 6th Baronet and Anne Hammond Douglas .\nYelena Belyakova. Yelena Belyakova (; born 7 April 1976 in Moscow) is a former pole vaulter from Russia .\nHakob Hakobian. Born in Egypt to refugee Armenian parents living abroad since the World War I-era genocide of the Armenians by the Ottoman Turks, Hakobian studied at the Melkonian Armenian school (Cyprus) and Acade'mie de la Grande Chaumiere .\nMartin Jacques. Martin Jacques (born October 1945) is a British former magazine editor and academic .\nTajinder Singh Hayer. Tajinder Singh Hayer is a dramatist born in Bradford, West Yorkshire in 1980 .\nJon Courtney. Jon Courtney, who grew up in Reading, Berkshire, is a singer, guitarist, and keyboard player in the British rock band Pure Reason Revolution .\nRuth Volgl Cardoso. There he met and married Ruth's mother, afterwards bringing her to Brazil where Ruth was born .\nErwin Kelm. Erwin Kelm (1911 -- 1994) was an American businessman born in Minnesota .\nSwami Sundaranand. Swami Sundaranand (born 1926 India) is a Yogi, photographer, and mountaineer who lectures widely in India on threats to the Ganges river and the loss of Himalayan glaciers due to global warming .\nJacob B. Grumet. Born in Manhattan in 1900, Grumet graduated from DeWitt Clinton High School in 1918, City College in 1922 and the Columbia Law School in 1924, where he edited The Law Review .\nJohn Honeyman. Although he was born in Ireland, purportedly in Armagh, Honeyman was of Scottish descent .\nGeorge B. Rabb. George B Rabb (born March 23 1930 Charleston, South Carolina) is an American zoologist, and director of the Chicago Zoological Park .\nAlexander Laner. Alexander Laner (born 1974 Munich) is a German artist .\nDavid Schrader. David Schrader (born September 15, 1952, Chicago, Illinois) is an American harpsichordist, organist, and fortepianist .\nDarren Carr. Darren Carr (born 4 September 1968 in Bristol) is a retired English football defender .\nVictor Borge. Borge was born Børge Rosenbaum in Copenhagen, Denmark, into a Jewish family .\nXavier Garbajosa. Garbajosa was born on 5 December 1976 in Toulouse .\nPhilippe Risoli. Philippe Risoli (born on 9 September 1953 in Paris) is a French television host with Italian origins .\nOmar Harfouch. Omar Harfouch is a businessman born April 20, 1969 in Tripoli in Lebanon and with dual Lebanese and French citizenship .\nHarry Newton Redman. Harry Newton Redman (December 26, 1869-December 26, 1958) was an American composer, writer, and artist, born in Illinois .\nFrederic C. Lane. Frederic C Lane (born November 23,1900, in Lansing, Michigan--died October 14, 1984) was a historian who specialized in Medieval history with a particular emphasis on the Italian city and region of Venice .\nJosef Metternich. Metternich was born in Hermühlheim, near Cologne, he studied in Cologne and Berlin, and sang with the Cologne and Bonn choruses, before making his solo debut in 1941 with the Berlin State Opera in Lohengrin, but his career was delayed by the war, it really took off in 1946, when he was able to return to the opera stage, and quickly established himself in both the German and Italian repertories .\nDavid Pangai. David Pangai (born 21 September 1978 in Tonga) is a Tongan rugby league player who currently plays his club football for the Sydney Roosters in the Australian National Rugby League competition .\nStephen Fox. Born in England, Fox completed a master's degree in physics at the University of Saskatchewan before earning a degree in clarinet performance .\nMartyn Joseph. Born in Wales, Joseph grew up as an avid golfer, having started to play at the age of 10 At 15 years old, he was playing off a handicap of one, and at 17, he became the youngest ever winner of the Glamorganshire Golf Club Championship .\nFrederick Ringer. Frederick Ringer was born 1838 in Norwich but spent most of his life in Japan .\nThomas Johns Perry. Born in Cumberland, Maryland, Perry completed preparatory studies and also studied law .\nRobert Atherton. Born in Liverpool, Lancashire in 1861, Atherton spent his youth as a ploughboy but later took holy orders at St Aidan's Theological College, Birkenhead, and afterwards became Rector of the parish church at Bolnhurst in Bedfordshire, a post he occupied for 15 years .\nAdolf von Bomhard. Adolf von Bomhard (born 6 January 1891 in Augsburg - died 19 July 1976) was an SS-Gruppenführer and Generalleutnant of the Ordnungspolizei in the German Third Reich .\nMaria Kuznetsova. Kuznetsova was born in 1880, in Odessa, Ukraine, the daughter of portraitist Nikolai Kuznetsov .\nPavel Žáček. Pavel Žáček (born 1969 in Prague) is a Czech academic and government official .\nSpencer Swalm. Born in Colorado, Swalm attended Colorado College before transferring to the University of Colorado at Boulder, graduating with a bachelor's degree in history in 1975 .\nMartin Duffy. Martin Duffy (born 26 February 1959 in Dublin) was an Irish soccer player during the 1980s and 1990s .\nAndre Coley. Andre Coley (born 22 September 1974 in Jamaica) is a Jamaican cricket player .\nGiacomo Vaghi. Born in Como, Vaghi studied singing in Milan before making his debut in Jules Massenet's Manon at the Teatro di San Carlo in Naples in 1925 .\nAndrew Martin. Andrew Martin (born 16 May 1978 in Cambridge) is an English singer, songwriter, musician and occasional producer .\nNikolay Atanasov. Nikolay Atanasov (; born 11 December 1974 in Sofia) is a Bulgarian long jumper .\nFran%C3%A7ois-Anne David. François Anne David, a French line-engraver, was born in Paris in 1741, and died in the same city in 1824 .\nWilliam Evans. Evans was born at Eton on 4 December 1798, was son of Samuel Evans, a landscape-painter originally from Flintshire, who had settled at Windsor .\nTayyar Yalaz. Tayyar Yalaz participated at the Summer Olympics in Paris, France and in Amsterdam, Netherlands .\nDorothy Whitelock. Born in Leeds at the beginning of the twentieth century, Whitelock was a promising student at school and it came as no surprise when she went up to Newnham College, Cambridge at the age of 20, where she studied under Hector Munro Chadwick .\nCharles James Monk. Monk was born at Peterborough, the son of Rt Rev .\nTed Dey. Born in Hull, Quebec, Ted Dey was one of three brothers and two sisters born to Joseph Dey and Annie Buckley .\nKassim Mohamed. Born in Kenya, Kassim Mohamed is a Canadian Muslim who was detained by Egyptian officials after Canadian authorities reported he had been filming national monuments .\nPhil Rose. Phil Rose is an English actor born in Manchester, England, UK on 2 May 1952 .\nLeslie Paul. Born in Dublin in April 1905, Leslie Paul grew up in South East London .\nRobert McCoy. Robert McCoy born in Carlisle, Pennsylvania (birth date unknown) .\nBertrand Lamarche. Bertrand Lamarche is a French artist working and living in France .\nGary Clark. Gary Clark (born 10 March 1962, Dundee, Scotland) is a Scottish musician who formed a band with his brother Kit Clark, and long time friend, Ged Grimes in 1984, initially under the name of Spencer Tracy .\nJohn Macdonell. Lieutenant Colonel John Macdonell of Greenfield (19 April 1785 -- 14 October 1812) was an aide-de-camp to British Major General Sir Isaac Brock during the War of 1812, dying in the Battle of Queenston Heights .\nFrancis J. Ricciardone, Jr.. Francis J Ricciardone (born 1951 Boston) is the United States ambassador to Turkey .\nDarnell Kennedy. Darnell Kennedy (born October 8, 1976 in Mobile, Alabama) is an Arena Football League quarterback for the Georgia Force .\nAnatoly Alexine. Anatoly Aleksin (Goberman) is a Russian writer and poet (born 3 August 1924 in Moscow) (Russian: Анатолий Георгиевич Алексин (Гоберман)) .\nShane McKenzie. Shane McKenzie (born 4 July 1973 in Adelaide, South Australia) is an Australian bobsleigh athlete .\nKees Maks. Kees Maks (August 22, 1876 -- October 28, 1967) was a Dutch painter born in Amsterdam .\nLewis Rendt. Captain Lewis Rendt, born in Germany, was an early 19th century Hessian soldier of the German Army, who later fought with the British in the Mediterranean (Invasion of Sicily), Spain and Egypt, and the British-American 1812 War .\nFrancisco Alimama Kashu. Francisco Alimama Kashu, born in Hyderabad, India, was an East Indian farmer who arrived in Moka during the early 20th century accompanying his uncle who traded with the local natives .\nKatalin Karády. Katalin Karády was born as Katalin Kanczler, on 8 December 1910 in Budapest .\nGiovanni Battista Pozzi. Giovanni Battista Pozzi was an Italian painter, born at Milan towards the end of the 17th century .\nMariano Armellino. Mariano Armellino (1657--1737) was a Benedictine historian, born in Rome (according to others, at Ancona) .\nNatalia Rom. Natalia Rom, soprano, was born in Kazan, in the Soviet Union (also the city of Feodor Chaliapin's birth), and graduated (as a conductor) from the Leningrad Conservatory .\nFelice Giordano. Giordano was born at Turin .\nLyubomir Ivanov. Lyubomir Ivanov (, born 7 October 1952 in Sofia) is a scientist, non-governmental activist, and Antarctic explorer .\nDanielle McGrath. Danielle McGrath (née Carr) (born 6 November 1969 in Sydney, Australia) is an Australian retired pair skater who currently works as a coach .\nCoral Amiga. Coral Amiga is an English actress born in London .\nEva Roth. Eva Roth (born 26 December 1967 in Augsburg) is a German slalom canoer who competed in the early 1990s .\nWilliam Fletcher Burden. William Fletcher Burden (March 14, 1830-December 7, 1867) was an industrialist born in Troy, New York, the third son of Henry and Helen Burden .\nJohn Lee. Born in Oklahoma, Lee was raised and educated in Brownsville, Texas .\nSheik Sadeek. Sheik Sadeek is a writer who was born in Guyana .\nDavid Parry. Born in London, England, Parry received his formal training in theater, ultimately earning a PhD in historical drama .\nTim Robinson. Tim Robinson (born in 1935) is a writer and cartographer .\nAlfred Ollivant. Ollivant was instrumental in the move to construct churches (often by private benefactions from industrialists and landowners) in the newly populated areas of his diocese .\nWen Xiao Zheng. Wen Xiao Zheng is a Chinese violist born in Shanghai .\nJohn Mundy. John Mundy born in Manchester, England is a British television presenter and voice-over artist .\nChristopher Packe. Packe, born in Norwich in 1760, was son of a quaker merchant belonging to a family which claimed connection with that of Sir Christopher Packe, lord mayor of London .\nYasmine Mahmoudieh. Born in Germany, of mixed Persian-German parentage, Yasmine studied Art History in Florence, Architecture at the École d'Interieur in Geneva and at UCLA in the United States, and Interior Design at the College of Nôtre Dame in Belmont .\nGiovanni Battista Rinuccini. Rinuccini was born at Rome in 1592 .\nVic Lee. Vic Lee (born 29 September 1946, Shanghai) is a veteran TV reporter in the San Francisco Bay Area in the United States .\nJohn Purchas. John Purchas, (born at Cambridge, 14 July 1823; died at Brighton, 18 October 1872), was an author and a priest of Church of England who was prosecuted for ritualist practices .\nParviz Jalayer. Parviz Jalayer (, born 6 October 1939 in Tehran) is a retired Iranian weightlifter and an Olympic Silver medalist for Iran .\nHenry Arthur Bright. Bright was born at Liverpool on 9 February 1830, the eldest son of Samuel Bright, JP (1799-1870 ; a younger brother of the pathologist Richard Bright), by Elizabeth Anne, eldest daughter of Hugh Jones, a Liverpool banker .\nLouis Mazetier. Louis Mazetier (b. February 17, 1960, Paris) is a French stride pianist .\nRichard Bristow. Richard Bristow (born at Worcester, 1538, died at Harrow on the Hill, 1581) was an English Catholic controversialist and Biblical scholar .\nNoël Gallon. Born in Paris, Gallon was the younger brother of composer Jean Gallon with whom he studied harmony at the Paris Conservatoire .\nPeter Martin. Martin was born in the town of Galway, Ireland, and by 1615 had already been a student at St Patrick's College, Lisbon .\nLeo Alexander. Born in Vienna, Austria-Hungary, Alexander was the son of a physician .\nMilan Orlowski. Milan Orlowski (born 7 September 1952 in Prague) is a male former table tennis player from Czechoslovakia .\nLahcen Abrami. Lahcen Abrami (; born 31 December 1969 in Casablanca) is a retired Moroccan footballer .\nJames Henry Emerton. Emerton was born at Salem, Massachusetts, on March 31, 1847 .\nMa Kelu. Ma Kelu (born 1954, Shanghai) is a Chinese painter .\nUlrik Cold. Ulrik Cold (born 15 May 1939, Copenhagen -- died 13 October 2010, Copenhagen) was a Danish operatic bass .\nLyman Tremain. Lyman Tremain (June 14, 1819 Durham, Greene County, New York - November 30, 1878 New York City) was a jurist and politician from New York .\nPandeli Ralli. Born in France, son of Toumazis Stephanou Ralli of Ralli Brothers, Pandeli graduated from King's College London with a Bachelor of Arts degree .\nMorgan Val Baker. Morgan Val Baker, (born 1983 in Cornwall), is a British actor and musician best known for playing Jose Carrera in the BBC Three sitcom Placebo .\nJay Kennedy. Born in Toledo, Ohio, Kennedy grew up in Ridgewood, New Jersey .\nMichael Griffith. Michael Griffith (1963--1986) was a 23-year old man who was born in Trinidad and who lived in Bedford-Stuyvesant, Brooklyn, who was killed after being hit by a car in Howard Beach, Queens, New York, on December 20, 1986 .\nFrederick A. Pike. Born in Calais, Maine, Pike attended the common schools and the Washington Academy, East Machias, Maine .\nAlgernon Methuen. Sir Algernon Methuen Marshall, 1st Baronet (1856-1924, born in London as Algernon Stedman), was an English publisher and teacher of Classics and French .\nHenri Perreyve. Henri Perreyve (born at Paris, 11 April 1831; died there 18 June 1865) was a French Oratorian priest .\nDavid Robert Nelson. David R Nelson (born September 5, 1951, Stuttgart) is an American physicist, and Arthur K Solomon Professor of Biophysics, at Harvard University .\nFederico López. Born in Mexico, Fico López was Puerto Rico's National Team's star point guard, following in the footsteps of Puerto Rico's greatest basketball player, point-guard Juan ``Pachín'' Vicéns .\nStephen Carr. Stephen Carr (born 6 January 1966 in Sydney, Australia) is an Australian retired pair skater who currently works as a coach .\nEdmund H. Pendleton. Born in Savannah, Georgia, Pendleton received a liberal schooling as a youth .\nWilliam Hayter. Born at Oxford, Hayter was the son of Sir William Goodenough Hayter (1869--1924), a judge in Egypt and an adviser to the Egyptian government, and his wife, Alethea Slessor, daughter of a Hampshire clergyman, the Rev .\nPat Gerber. Pat Gerber (17 March 1934, in Glasgow -- 26 August 2006, in Glasgow) was a Scottish writer and author mainly known for her children's books .\nDavid McCarthy. Born in Belfast, McCarthy studied at the Belfast Municipal College of Technology before working as a quantity surveyor .\nGuiniforte Solari. Born in Milan, he was the son of the architect Giovanni Solari, and brother of Francesco Solari .\nDerrick Leon. Derrick Leon (Derrick Lewis Leon) (1908-1944) was a British author, who was born in London in 1908, and died of tuberculosis in November 1944, aged 36, shortly after completing the first draft of his biography of John Ruskin (Ruskin: The Great Victorian), published by Routledge & Kegan Paul in 1949 .\nJoseph Osgood Barrett. Born in Bangor, Maine into a Universalist family, Barrett studied to become a Universalist minister after experiencing trances and visions .\nJohn Jenkins. Governor John Jenkins, immigrant, was born in England and died in Perquimans County, North Carolina, 17 December 1661 .\nRastko Cvetković. Rastko Cvetković (born June 22, 1970 in Belgrade, Yugoslavia) is a Serbian retired basketball player .\nJohn Snyder. John Snyder (born 1950 Boston MA) is an American film, stage and television actor that graduated from Boston University's School of Fine and Applied Arts with a BFA in 1974 .\nTrevor Burton. Trevor Burton (born Trevor Ireson, 9 March 1949, Aston, Birmingham, England) is a British guitarist and was one of the original members of The Move .\nAl Cotey. Al Cotey (19 March 1888 Chicago, Illinois -- 27 October 1974 New Smyrna Beach, Florida) was an American racecar driver. ) .\nJan Antonín Duchoslav. Jan Antonín Duchoslav (born 1 May 1965, Prague) is a Czech actor .\nSteve Francis. Steve Francis was born 1954 in Phoenix, Arizona .\nRaymond Ericson. Born in Brooklyn, Ericson earned an associate degree in mathematics from North Park Junior College in Chicago in 1934, and then earned bachelors degrees in mathematics and music from the University of Chicago .\nValeriu Stoica. Valeriu Stoica (born October 1, 1953, Bucharest) is a Romanian politician and academic .\nChristian Murchison. Christian Murchison (born 1 November 1980, in Singapore) is a Singaporean race car driver .\nJulie Duncan. Julie Duncan (born 17 January 1919 in Cornish, New Hampshire; died 20 June 1986) was a motion picture actress specialising in short subjects and Westerns .\nJames Moffat. James Moffat (born 18 June 1984 in Melbourne Victoria) is an Australian racing driver who currently competes for the Dick Johnson Racing team in the 2011 International V8 Supercars Championship .\nRobert Erskine. Born in Scotland, Erskine was an inventor and engineer of some renown in his native land .\nRalph Katz. Katz, who was born in Pittsburgh, lived in Squirrel Hill (a large residential neighborhood in the east end of Pittsburgh) and was raised in Steubenville, first started to play bridge when he was 16 A sports enthusiast, the competitive side of bridge drew Katz to the game .\nBernard Cassen. Bernard Cassen ( born 2 November 1937 in Paris) is a founder of ATTAC and director general of Le Monde diplomatique newspaper, from 1973 to January 2008 .\nGerhard Kraft. Gerhard Kraft (b. 1941 in Heidelberg, Germany) is a German physicist, best known for introducing heavy ion cancer therapy in Europe .\nLucas Auer. Lucas Auer (born 11 September 1994 in Austria) is a racing driver currently competing in the 2011 JK Racing Asia Series season .\nAndrew Amos. He was born in 1791 in India, where his father, James Amos, a Russian merchant, of Devonshire Square, London, who had travelled there, had married Cornelia Bonté, daughter of a Swiss general officer in the Dutch service .\nRichard Bathurst. Richard Bathurst (d. 1762), was an essayist, was born in Jamaica, and sent to England to study medicine .\nStewart G. Honeck. Born in Chicago, Illinois, Honeck graduated from high school in Milwaukee, Wisconsin .\nGiovanni Francesco Commendone. Giovanni Francesco Commendone (born at Venice, 17 March 1523; died at Padua, 26 December 1584) was an Italian Cardinal and papal nuncio .\nMary Louise Smith. Born in Montgomery, Alabama, Smith has lived there since her birth .\nMiglena Markova. Miglena Markova (, born 16 February 1983 in Sofia) is a Bulgarian rower .\nTheodore J. van den Broek. The second child of Abraham van den Broek and Elisabeth de Meijne, he was born in Amsterdam, Netherlands in June 1784 .\nAmy Sarkisian. Amy Sarkisian (born 1969 in Cleveland, Ohio, U.S.) is a contemporary artist living and working in Los Angeles, California .\nThomas Barclay. Thomas Barclay was born on 21 November 1849 in Glasgow, the youngest brother of six (he also had one sister) .\nMahdi Al Tajir. Born in Bahrain, Al Tajir was educated at Preston Grammar School in Lancashire .\nDavid Sander. David Sander (born May 1969 in Melbourne) is an Australian film writer and director and special effects artist who owns Surfaces Rendered, a visual effects, graphics, design, and film finishing business .\nMassimo Carello. Massimo Carello (born 1949, Turin) is an Italian businessman .\nJohn Small. Born in York Township, Upper Canada, Small was educated in his home district schools and at the Upper Canada College .\nAlizeh Imtiaz. Alizeh Imtiaz (born 10 November 1986 in Karachi, Pakistan) is the first Pakistani to have successfully had her debut short film 'Shades of Black' screened at the London Filmmakers Convention 2007 .\nJudith Vollmer. Judith Vollmer (b. 1951 in Pittsburgh, Pennsylvania) is an American poet and editor .\nShay Gibbons. Shay Gibbons (born 19 May 1929 in Dublin died 9 June 2006) is a former Irish international footballer who was regarded as one of the top players in the League of Ireland in the 1950s .\nGareth Knapman. Gareth Knapman (born 4 March 1981 Birmingham, England) is an English theatre actor and director, and a founding director of Ubiquity Theatre Company .\nKeith Cozens. Keith Cozens (born April 24, 1957, Surrey, England) is an English Businessman, Entrepreneur & Venture Capitalist, best known for his Merlin Holdings Group brand of companies .\nDick Spotswood. Dick Spotswood (born March 25, 1947, San Francisco, CA) is a political writer for the Marin Independent Journal, a newspaper based in Marin County, California, USA .\nJames Mumford. Born in Norfolk or Suffolk, Mumford became a Jesuit novice in 1626, was ordained priest at Liège around 1635, and made his Jesuit profession in 1641 .\nJack Blum. Born in Toronto, Blum grew up in Hamilton, Ontario, and trained as an actor at the National Theatre School of Canada .\nMark Patton. Mark Patton (born 7 January 1965 in Jersey) is a British archaeologist known for his work on the prehistory of the Channel Islands and North-Western France, particularly the archaeology of megaliths, as well as the prehistory of the Mediterranean islands, the theory of island biogeography and the history of European archaeology .\nGeoffrey Girard. Born in Germany, shaped in New Jersey and currently living in Ohio, Girard is also a musician having released an album of piano songs he composed and recorded .\nZhu Xueqin. Born in Shanghai, Zhu was, like so many others, shaped in his eventual outlook by China's Cultural Revolution, when he was sent to rural Lankao County, Henan as a ``sent-down youth'' in 1970 .\nBonnie Ladwig. Born in Milwaukee, Wisconsin, Ladwig graduated from Shorewood High School .\nImafuji Ch%C5%8Dtatsur%C5%8D. He began studying under Imafuji Ryōko at the age of ten, and made his stage debut the following year, in 1980 .\nGuo Jinlong. Guo Jinlong (; born July 1947 in Nanjing, Jiangsu) is a politician of the People's Republic of China and Mayor of Beijing .\nMaude Duncan. Maude Duncan was born to a well-to-do family in Virginia .\nStan Fine. Born in Pittsburgh, Fine studied at the Philadelphia School of Industrial Art and then launched his cartoon career .\nZhores Medvedev. Zhores Aleksandrovich Medvedev (; born 14 November 1925 in Tbilisi, Georgia) is a Russian biologist, historian and dissident .\nGael Suares. Gael Suares (born April 9, 1981 in Paris, France) is a French footballer who played 2 matches in Ligue 1 for Caen in the 2004-2005 season and 28 matches in Ligue 2 for Caen in the period 2000-2004  .\nPeter Nyborg. Peter Nyborg (born December 12, 1969, in Gothenburg, Sweden), is a former professional tennis player from Sweden .\nJulius Goldzier. Born in Vienna, Austria, Goldzier attended the public schools of Vienna .\nBill Jennings. Bill Jennings (born 7 January 1920, in Norwich, died in 1969) was a professional footballer .\nLouis Gustave Ricard. Louis Gustave Ricard (1823 - 1873) was a French painter born in Marseilles, and studied first under Auber in his native town, and subsequently under Coignet in Paris .\nEphraim Paine. Ephraim Paine (August 19, 1730 Canterbury, Windham County, Connecticut -- August 10, 1785 Amenia, Dutchess County, New York) was an American physician and politician from New York .\nHoratio Bisbee, Jr.. Born in Canton, Maine, Bisbee attended the public schools, and was graduated from Tufts College, Medford, Massachusetts, in 1863 .\nS%C3%A9bastien Leblanc. Sébastien Leblanc (born 27 December 1973 in Montreal) is a former tour professional tennis player .\nTom Lynskey. Tom Lynskey (born 1978, Galway, Ireland) is a young Irish businessman and entrepreneur .\nDJ Uncle Al. ``DJ Uncle Al'' (August 14, 1969 -- September 10, 2001), born Albert Moss in Miami, Florida, was an American DJ .\nJames Milnor Coit. James Milnor Coit (January 31, 1845--1925) was an American teacher, born in Harrisburg, Pennsylvania .\nAlan Thomson. Alan Thomson (born 3 May 1960, Glasgow) is a Scottish bassist and vocalist with many acts including the late John Martyn .\nSlaw Rebchuk. Rebchuk was born to a Ukrainian immigrant family in north-end Winnipeg, and graduated from St John's High School .\nAshley Gilbertson. Ashley Gilbertson (born 22 January 1978) is an award-winning photographer best known for his images of the Iraq war .\nTimothy Foote. Timothy Foote is an editor and writer, born in London, 3 May 1926 .\nIrving Fiske. Irving Fiske (March 5, 1908--April 25, 1990) born Irving Fishman in Brooklyn, New York, was a playwright, inventor, freelance writer, and speaker .\nTiziano Maggiolini. Born in Rome, Italian capital, Maggiolini started his career at Lodigiani .\nPat Foote. Pat Foote (* May 19th, 1930 in Durham, North Carolina) is a retired US Army Brigadier General .\nAco Petrović. Aco Petrović (serb. Ацо Петровић; born October 14, 1959 in Belgrade) is a Serbian basketball coach .\nEndre Csillag. Endre Csillag (born October 12, 1957, Budapest) is a Hungarian guitarist, former member of rock band Edda and Bikini .\nThomas Bottomore. Thomas Burton Bottomore (8 April 1920 England -- 9 December 1992 Sussex, England), usually known as Tom Bottomore, was a British Marxist sociologist .\nAntonio Ciacca. Born in Germany in 1969, raised in Italy and educated in the United States, pianist, composer, and arts-presenter Antonio Ciacca began his career in jazz as a sideman for Art Farmer, James Moody, Lee Konitz, Jonny Griffin, Mark Murphy, Dave Liebman, and Steve Grossman .\nChris Heimerdinger. Chris Heimerdinger (born August 26, 1963, Bloomington, Indiana, USA) is an American author and member of The Church of Jesus Christ of Latter-day Saints (LDS Church) who has written sixteen novels for young people and adults, the Tennis Shoes Adventure Series, most of which center on religious themes familiar to Latter-day Saints .\nFriedrich-August Schack. Friedrich August Schack (born 27 March 1892, Schmiedeberg im Riesengebirge/Silesia (now Kowary), died 24 July 1968, Goslar) was a General of Infantry best known for his pyrrhic defense of Caen after the allied invasion, September 1944, and for his brief leadership of the LXXXI Army Corps defending Aachen and the Siegfried Line .\nChristian Ferdinand Friedrich Krauss. Christian Ferdinand Friedrich Krauss (9 July 1812 Stuttgart - 15 September 1890 Stuttgart), was a German scientist, traveller and collector .\nKumar Ponnambalam. Kumar Ponnambalam was born in the capital city of Colombo to an affluent and politically influential minority Sri Lankan Tamil family .\nLucius Verus. Lucius Verus was the first born son to Avidia Plautia and Lucius Aelius Verus Caesar, the first adopted son and heir of Roman Emperor Hadrian (76--138) .\nNeil Zakiewicz. Neil Zakiewicz (born 1972, London, UK) is a British artist .\nOdin Langen. Langen, born in Minneapolis, Minnesota attended the public schools and Dunwoody Institute, Minneapolis, Minnesota, in 1933 and 1934 .\nMark Howett. Mark Howett, born 1963 in Perth, Australia, is a lighting designer and director for theatre Dance Opera and Film .\nIsaac Green Messec. Isaac Green Messec, was born in Macon, Bibb County, Georgia .\nElizabeth Kell. Elizabeth Kell (born 09 July 1983 in Sydney) is an Australian rower .\nJoel Frost. Joel Frost (September 28, 1765 Carmel, then Dutchess County, New York - September 11, 1827 Carmel, now Putnam County, New York) was an American lawyer and politician from New York .\nOsku Palermaa. Osku Palermaa (born 18 November 1983) in Espoo, Finland is a Finnish Ten-pin bowler .\nLeopold Casper. Leopold Casper (31 May 1859 -- 16 March 1959) was a German physician and urologist born in Berlin .\nAndrew Repasky McElhinney. Andrew Repasky McElhinney is an American film producer born in Philadelphia in 1979 .\nBunita Marcus. Bunita Marcus, born May 5, 1952 in Madison, Wisconsin, began studying composition at the age of sixteen and worked in both electronic and instrumental mediums while at the University of Wisconsin .\nSimon James. Born in York, England, James was educated at Ampleforth College, North Yorkshire Leeds College of Music studying flute and guitar (Gordon Crosskey), and Trinity College of Music, London, where he studied guitar and composition with Hector Quine and David Newbold respectively .\nHerbert Postle. Herbert Thomas Postle (28 September 1884 -- 24 July 1961) was an Australian politician .\nCharles Henry Turner. Born in Wentworth, New Hampshire, Turner attended the common schools before moving to New York City in November 1879 .\nMarc Chervel. Marc Chervel, born November 1, 1932 in Lille (North) and died November 25, 2004 in Beaumont-les-Nonains (Oise), is a development economist .\nHans Henrik Løyche. Hans Henrik Løyche is a Danish science fiction writer, born in Copenhagen in 1964 .\nTerry Eviston. Terry Eviston (born 17 July 1957 in Dublin) was a footballer who played for Home Farm, Bohemians, Athlone Town A.F.C., Dundalk FC and two spells with Shamrock Rovers .\nFrancis Davis. Francis Davis (born August 30, 1946, Philadelphia) is an American author and journalist .\nSarah Brandner. Sarah Brandner (born 12 December 1988 in Munich, West Germany) is a German model, and girlfriend of footballer Bastian Schweinsteiger .\nChubb Rock. Chubb Rock (born Richard Simpson on May 28, 1968 in Jamaica) is a New York-based rapper who released several commercially successful hip hop albums in the early 1990s .\nFrancis Ernest Jackson. Francis Ernest Jackson was born on 15 August 1872 in Huddersfield, the son of a printer .\nMWF. MWF is a pseudonym of Mark Flake born in Memphis, Tennessee in 1960 .\nJohn Aspinall. Aspinall was born on 25 August 1851 in Liverpool to a Roman Catholic judge .\nBrendon Sinclair. Brendon Sinclair (born 21 November 1966 in Hobart, Tasmania, Australia) is an Australian writer who specialises in the Internet industry .\nPaul Conway. Paul Conway (born 7 September 1953 in Chicago) is associate professor in the University of Michigan School of Information and has worked with Yale and Duke Universities after starting his career at the Gerald R Ford Presidential Library .\nTarek Momen. Tarek Momen, (born February 23, 1988 in Cairo) is a professional squash player who represented Egypt .\nMaryam Khan. Maryam Khan is a British politician born in Manchester, belonging to the Labour Party who has served as the Councillor of Longsight after being elected in May 2006 .\nBenzion Rakow. Born in Frankfurt, Germany into a distinguished rabbinical family, Benzion Rakow was a direct descendant of Rabbi Yom-Tov Lipmann Heller, (author of the Tosefot Yom-Tov commentary on the Mishnah) .\nMark Buchanan. Mark Buchanan (born October 31, 1961, Cleveland, Ohio) is an American physicist and author .\nJustine Smethurst. Justine Smethurst (born 14 January 1987 in Melbourne, Victoria) is a softball player from Australia, who won a bronze medal at the 2008 Summer Olympics .\nDavide Sorrenti. Davide Sorrenti (July 9, 1976 Naples, Italy - February 4, 1997 New York, USA) was a fashion photographer, son of photographer and advertiser Francesca Sorrenti; and brother of Mario Sorrenti (b. 1971), and Vanina Sorrenti (b. 1973) also fashion photographers .\nAlessandro Frosini. Alessandro Frosini (born 22 September, 1972 in Siena) is an Italian basketball player with Juvecaserta Basket .\nBhai Balmukund. Bhai Balmukund born in 1889 at village Kariala in Jhelum district (now in Pakistan) .\nEllen Gulbranson. Born Ellen Norgren in Stockholm, Gulbranson studied initially at the Stockholm Conservatory under Julius Gunther and then in Paris with Ellen Kenneth and the great pedagogue Mathilde Marchesi .\nRichard Bilby. Born in Tucson, Arizona, Bilby earned a bachelor's degree in 1955 from the University of Arizona and a law degree from the University of Michigan Law School in 1958 .\nMary Akrivopoulou. Mary Akrivopoulou (born 1975 in Thessaloniki) is a Greek actress .\nScarlett Strallen. Strallen, who was born in London, England, had previously played that role twice in the West End production: she first joined the show at the end of 2005 to replace original cast member Laura Michelle Kelly, but left in November 2006 to join the The Royal Shakespeare Company's musical production of The Merry Wives of Windsor in Stratford .\nAthanase Josué Coquerel. Athanase Josué Coquerel (16 June 1820 Amsterdam - 24 July 1875 Fismes (Marne)) was a French Protestant theologian, son of Athanase Laurent Charles Coquerel .\nWilliam Samuel Booze. Born in Baltimore, Maryland, Booze attended the public schools in Baltimore and graduated from Baltimore City College in 1879 .\nFrederick Fraley. Born in Philadelphia, Pennsylvania, Fraley joined the wholesale hardware business at the age of 16, and subsequently began importing hardware .\nGiuseppe Sabbatini. Giuseppe Sabbatini (born May 11, 1957, Rome, Italy) is a lyric tenor .\nFrederick Hartt. In World War II, Hartt was an officer in the Monuments, Fine Arts, and Archives Division of the US Army and received a Bronze Star .\nEdward Fitzharris. The son of Sir Edward Fitzharris, he was born in Ireland about 1648, and bought up a Catholic .\nFelicitas Kuhn. Kuhn was born on 3 January 1926 in Vienna .\nKenny Brannigan. Kenny Brannigan (born 8 June 1965 in Glasgow) is a former Scottish association footballer .\nJoão de Souza Mendes. Born in Portugal, Souza Mendes played in the Brazilian Chess Championship 29 times, winning in 1925 (the first year the tournament was held), 1928, 1929, 1930, 1943, 1954, and 1958 .\nEugene Tzigane. Born in Tokyo, Tzigane studied with James DePriest at the Juilliard School, and graduated in 2007 with a Master of Music in orchestral conducting .\nGladys Henson. Henson was born Gladys Gunn in Dublin, Ireland .\nDavid Smith. Born in London, Smith was educated in Scotland .\nCarl Frederik Waage Beck. Carl Frederik Waage Beck (Born 1979 in Copenhagen, Denmark) is a Copenhagen based community activist and artist working under the pseudonym Paintshooter .\nCatherine Vickers. Catherine Vickers is a Canadian pianist, born in Regina .\nAlex Figge. Alex Figge (born January 29 1983) is an American race car driver born in Boulder, Colorado .\nE. Riley Anderson. Born in Chattanooga, Anderson received a JD and Bachelor of Laws degree from the University of Tennessee College of Law in 1957 .\nPaul Belmondo. Paul Belmondo (b. 8 August 1898, Algiers, French Algeria - d 1 January 1982, Paris, France) was a French sculptor .\nSébastien Roch. Sébastien Roch (born 3 December 1972 in Toulouse) is a French actor, singer and television host .\nJohn McKay. Born in Montreal, McKay studied the piano with Lubka Kolessa in his native city as a boy .\nNahum Slouschz. Nahum Slouschz (Hebrew: נחום סלושץ) (born November 1872, Odessa, died 1969 Israel), was a Russian Hebrew litterateur, writer and translator .\nAigars Vītols. Aigars Vītols born February 15, 1976 in Riga, Latvian SSR) is a Latvian professional basketball player who plays the shooting guard position for the VEF Riga .\nRichard Bayley. Bayley married John's sister, Catherine Charlton and had three children, including Elizabeth Ann Bayley .\nDavid Bret. David Bret (born 8 November 1954 in Paris) is a French-born British author of showbiz biographies .\nGuerguina Dvoretzka. Guerguina Dvoretzka is a Bulgarian poet and journalist who was born in Sofia .\nBrendon Lindsay. Brendon Lindsay (born 21 September 1977 in Australia), is an Australian-born Scotland international rugby league player for the Sheffield Eagles in the Co-operative Championship .\nJudy Brooke. Judy Brooke is an English actress born in Leeds, West Yorkshire on 21 February 1970 .\nCarlos Sampayo. Carlos Sampayo (born 17 September 1943 in Argentina) is a writer best known for his work in comics, particularly in collaboration with artist José Muñoz .\nTino Vegar. Tino Vegar (born 30 January 1967 in Split) is a water polo player from Croatia, who was a member of the national team that won the silver medal at the 1996 Summer Olympics in Atlanta, Georgia .\nThomas Guthrie Marquis. Thomas Guthrie Marquis (1864-1936) was a Canadian author, born at Chatham, New Brunswick, and educated at Queen's University, Kingston, where he graduated in 1889 .\nRobert Simpson Woodward. Robert Simpson Woodward (July 21, 1849--June 29, 1924) was an American physicist and mathematician, born at Rochester, Michigan .\nH. M. Green. Henry Mackenzie Green (2 May 1881 -- 9 September 1962) was a journalist, librarian and literary historian born in Sydney, Australia .\nKaterina Lemmel. Katerina Lemmel, née Imhoff (born 1466 in Nuremberg - died March 28, 1533 in Maihingen; also Katharina Lemmel, Katharina Lemlin) was a successful patrician businesswoman in Nuremberg who became a Birgittine nun at the monastery of Maria Mai in Maihingen in Nördlinger Ries .\nCarlo Silipo. Carlo Silipo (born September 10, 1971 in Naples) is a retired water polo player from Italy, who represented his native country at three Summer Olympics: 1992, 1996 and 2004 .\nMary Moody Emerson. Born in Concord in 1774, Mary Moody Emerson was the fourth child of Phebe Bliss and the Reverend William Emerson .\nMarc Matthews. Marc Matthews is a writer who was born in Guyana in the 1940s .\nMatthias Bjornlund. Matthias Bjørnlund (born in 1967 in Copenhagen, Denmark) is a Danish historian .\nHenry Alfred Todd. Henry Alfred Todd, Ph D (1854--1925) was an American Romance philologist, born at Woodstock, Ill .\nRichard Cawley. Cawley was born in the Yorkshire market town of Doncaster .\nMichael Halvarson. Michael Halvarson, born July 30, 1976 in Stockholm, Sweden, has for a long time been one of the most frequently-hired artists and comedians in Scandinavia .\nKerry Hannon. Born in Pittsburgh, Hannon grew up in the suburb of Fox Chapel and graduated from Shady Side Academy .\nPaul Boyd. Born in Scotland, Boyd graduated from St Martin's School of Art in London with a BA in Fine Art Film .\nYannick Pouliot. Born in Paris, France from Canadian parents, Dr Pouliot was raised in Montreal, Canada .\nHasna Xhukiçi. Hasna Xhukiçi (born April 13, 1988) is a fashion model and beauty queen from Albania .\nKarl Chmielewski. Karl Chmielewski (16 July 1903 in Frankfurt am Main   1 December 1991 in Bernau am Chiemsee) was a German Schutzstaffel officer and concentration camp commandant .\nLawrence Kushner. Born in Detroit, Kushner graduated Phi Beta Kappa from the University of Cincinnati, after which he went on to receive his rabbinical ordination from Hebrew Union College in Cincinnati .\nCharles Frodsham. Charles Frodsham (15 April 1810 London --1871 London) was a renowned English watch and clockmaker .\nWilliam Henry Anderdon. William Henry Anderdon (26 December 1816 -- 28 July 1890) was an English Jesuit and writer, born in London .\nMartin Theodore Orne. Born in Vienna, Austria in 1927, Dr Orne received his MD degree from Tufts University Medical School in 1955, with a residency in psychiatry at Massachusetts Mental Health Center, and a PhD in psychology from Harvard University in 1958 .\nTravis Bowen. Travis Bowen (Born October 10, 1977 in Erie, Pennsylvania) is an actor and director with the film company Eerie Frequency Entertainment .\nBruce Hoblitzell. Bruce Hoblitzell (June 25, 1887 -- August 11, 1970) was mayor of Louisville, Kentucky from 1957 to 1961 .\nJohn Bridgeman. Born in Exeter, he was the eldest son of Thomas Bridgeman and grandson of Edward Bridgeman .\nFrank Cole. Born in Saskatchewan to a New Brunswick father from the diplomatic field, Cole grew up in Pakistan, Afghanistan, Czechoslovakia, Switzerland and South Africa .\nJohn McHale. Born in Scotland, McHale was educated in the United Kingdom and the United States of America, with a PhD in Sociology .\nNiels Bjerrum. Niels Janniksen Bjerrum, born March 11, 1879 in Copenhagen, died September 30, 1958, was a Danish chemist .\nMassimo Mazzucco. Massimo Mazzucco (born 20 July 1954 in Turin) is an Italian filmmaker who is known for producing documentary films such as The New American Century and Cancer -The Forbidden Cures .\nNo I.D.. No I.D., officially known as Immenslope and also known as Ernest Wilson (born Dion Wilson in Chicago, Illinois), is a hip hop and R&B record producer, also the vice-president of Def Jam Recordings, best known for his early work with Chicago rapper Common and is known as ``The Godfather of Chicago hip hop'' .\nJ%C3%A9r%C3%B4me Inzerillo. Jérôme Inzerillo (born 15 February 1990 in Marseille) is a junior tennis player from France .\nStewart Rawlings Mott. Stewart Rawlings Mott (December 4, 1937 -- June 12, 2008) Born in Flint, Michigan was a philanthropist who founded the Stewart R Mott Charitable Trust .\nRoderick Blaker. Roderick Blaker (born 23 November 1936 in Montreal, Quebec) was a Liberal party member of the Canadian House of Commons .\nAmir Mohebbian. Amir Mohebbian (), (born 23 June 1962 in Tehran, Iran) is an Iranian politician, journalist and political analyst .\nAbel Dimier. Abel Dimier (born in 1794 in Paris, died in 1864) was a French sculptor .\nRichard Armstrong. Sir Richard Armstrong, CBE (born 7 January 1943 in Leicester) is a British conductor .\nJean Arnault. Jean Arnault (born in 1951 in France) currently serves as United Nations Secretary-General's Special Representative for Georgia and Head of the United Nations Observer Mission in Georgia (UNOMIG) .\nStephen Gough. Stephen Gough (footballer) (born 21 March 1981 in Dublin) is an Irish football player currently playing for Crumlin United FC in the Leinster Senior League .\nMick O'Brien. Mick O'Brien was an Irish soccer player who was born in Dublin .\nOmar Rezaq. Omar Rezaq had given his name as Omar Marzouki and used a Tunisian passport when boarding that plane at Athens airport, but later he admitted that he is of Palestinian origin and that he was born in Lebanon in 1963 .\nGeorge Pearkes. Born in Watford, Hertfordshire, England in 1888, the oldest child of Louise and George Pearkes, he attended Berkhamsted School .\nMalcolm Margolin. Margolin spent time working as a groundskeeper for the East Bay Parks Board .\nDominique Sanson. Dominique Sanson is an artist, born in Paris, France, in 1949 .\nGiovanni Battista Verger. Born in Rome, Verger studied singing in his native city before making his professional opera debut at the Royal Opera House, Valletta in 1817 .\nDylan Taite. Dylan Taite (193922 January 2003) was New Zealand's top rock music journalist .\nOlof Bj%C3%B6rner. Olof Björner (born November 26, 1942, Stockholm, Sweden) is a Swedish researcher who has specialized in documenting the live performances and recording sessions of American singer-songwriter Bob Dylan .\nJohan Daisne. Johan Daisne was the pseudonym of Flemish author Herman Thiery (2 September 1912--9 August 1978) .\nMartin Weston. Martin Weston born April 8, 1959 in Worcester is a retired professional cricketer who played for Worcestershire from 1979 to 1995 .\nMathieu Blin. Mathieu Blin (born 20 May 1977 in Paris) is a French rugby union footballer playing Paris club, Stade Français in the elite Top 14 competition .\nE. W. Dickes. Dickes was the eldest son of Walter James Dickes and Sarah Annie Dickes .\nSiamak Hariri. Born in Bonn, Germany, Siamak was educated at the University of Waterloo and Yale University (M. Arch. 1985) .\nMircea Florian. Born in Bucharest, Florian graduated from the Faculty of Letters and Philosophy at the local university, where he became a disciple of Rădulescu-Motru and P P Negulescu .\nKevin Robinson. Kevin Robinson (Irish: Caoimhín Mac Róibín, born 1955 in Kilkenny, Ireland) is a retired Irish sportsperson .\nPeter Driben. Born in Boston, Driben studied at Vesper George Art School before moving to Paris (circa 1925) .\nKim Ondaatje. Born in Toronto, Ontario, Ondaatje studied at the Ontario College of Art and McGill University .\nAntigoni Goni. Antigoni Goni (born 1969 in Athens, Greece) is a Greek guitarist, recording artist, concertizer, and the founder and Chair of the Pre-College Division of the Guitar Department at the Juilliard School .\nSikander Bakht. Sikander Bakht (born August 25, 1957, Karachi, Sindh) is a former Pakistani cricketer who played in 26 Tests and 27 ODIs from 1976 to 1989 .\nGeorge Brimley. George Brimley was born at Cambridge on 29 Dec .\nWilliam Ewart. William Ewart (1 May 1798 -- 23 January 1869) was a British politician, born in Liverpool on 1 May 1798 .\nPat Nixon. Born in Nevada, Pat Ryan grew up in Los Angeles, California .\nAngus Mackay. Angus Mackay, born in Lima, Peru in 1939, is a Scottish historian and Hispanist, specialising in Later Medieval Spain .\nMaynard Sinclair. Born in Belfast, in 1896, son of John Sinclair DL and Alice Montgomery, he was educated at the Royal Belfast Academical Institution, and in Switzerland .\nDani Gal. Dani Gal (born 1977 Jerusalem) is a German video artist .\nRobert Holden. Robert Holden is a British landscape architect born in Preston and educated at the University of Newcastle upon Tyne .\nPaweł Zalewski. Paweł Zalewski (born September 25, 1964 in Warsaw) is a Polish politician .\nMichael Carney. Born in Waterford, Ireland, Carney was educated at the Common School of Halifax, Nova Scotia .\nDonald Appleyard. Born in England, Appleyard studied first architecture, and later urban planning at the Massachusetts Institute of Technology .\nThomas Tod Stoddart. Thomas Tod Stoddart (1810-1880) was a Scottish angler and poet .\nGuy De Saint Cyr. Guy De Saint Cyr (born:15 April 1958, Berlin, Germany) is a German actor .\nAdrian Moore. Adrian Moore is an electroacoustic music composer born January 1969 in Nottingham, UK, and currently living in Sheffield, UK He is director of the University of Sheffield Sound Studios .\nAmélie Mummendey. Amélie Mummendey (* 19 June 1944 in Bonn, Germany) is a German social psychologist .\nClaire Burch. Claire Burch (b. 1925 in Brooklyn, New York - d May 21, 2009) was an American author, filmmaker and poet .\nLloyd Youngblood. Born in Beaumont, Texas in 1946, Youngblood received his Bachelor of Arts degree from Rice University in 1969 .\nWorld population milestones. He had been proclaimed by the United Nations Population Fund and welcomed by the secretary-general of the United Nations, Kofi Annan, as the six billionth baby .\nWilhelm Boger. Born in Stuttgart, Germany, Boger joined the HJ (Hitler youth) in his teens .\nRaffaele Scalese. Born in Naples, Scalese began performing at major Italian opera houses in the mid 1820s, including La Fenice in Venice, the Teatro Valle in Rome, and the Teatro di San Carlo in his native city .\nVittorio Blanseri. Vittorio Blanseri (c. 1735-1775) (or Blancheri) was an Italian painter, born at Venice .\nFelipe Alfau. Born in Barcelona, Alfau emigrated with his family at the age of fourteen to the United States, where he lived the remainder of his life .\nJohn Blackburn. John Blackburn (born 16 January 1976, Luton, England) is currently known as a member of Skin's backing band as the bass and keyboard player .\nCipriano de Valera. Valera was born at Seville .\nCharles Collé. From a notary's office, Collé was transferred to that of the receiver-general of finance, where he remained for nearly twenty years .\nThierry Ehrmann. Thierry Ehrmann, artist, was born in Lyon, France .\nAlain Dorval. Alain Dorval (born 1946 as Alain Bergé) is a French voice actor born in Algiers .\nSandrina Malakiano. Sandrina Malakiano (born 24 November 1971 in Bangkok) is a leading news presenter of Metro TV, an Indonesian news television channel .\nRomeo Niram. Romeo Niram (born, 1974 in Bucharest) is a painter born in Romania .\nLeon Dycian. Born in Poland in 1911, Dycian attended university and was certified as a lawyer .\nMason Cook Darling. Born in Amherst, Massachusetts, Darling attended the public schools .\nBertram Stuart Straus. Born in Manchester, he was the son of Henry S Straus of Sedgley Park, a merchant and vice consul for the Netherlands .\nEarle J. Gluck. Earle J Gluck (May 23, 1900 -- February 19, 1972), was a radio pioneer, born in Maryland .\nJonathan B. Barry. Born in Milwaukee, Wisconsin, Barry graduated from Shorewood High School .\nBernard Leclerc. Born in France, Leclerc studied political sciences in California, United States .\nDominic Dromgoole. Born in Bristol, Dominic grew up on a farm in Somerset and attended Millfield School in Street, Somerset .\nStanley Arthur Franklin. Stanley (Stan) Franklin, born at Bow in the East End of London, was the son of coppersmith Harry Franklin .\nMarc Sangnier. Marc Sangnier (April 3 1873 Paris - May 28 1950 Paris) was a French Roman Catholic thinker and politician, who in 1894 founded le Sillon (``The Furrow''), a liberal Catholic movement .\nLeslie Allen. Leslie Allen (5 February 1904 Chicago, Illinois -- 1 May 1977 Wilmette, Illinois) was an American racecar driver .\nYang Yang. Yang Yang (; born 19 May 1986 in Beijing, China) is a Chinese baseball player who was a member of Team China at the 2008 Summer Olympics .\nLawrence E. Kahn. Lawrence E Kahn (b .\nCornélie Falcon. She was born Marie-Cornélie Falcon in Paris to Pierre Falcon, a master-tailor and his wife Edmé-Cornélie .\nWojciech Rychlik. Wojciech Rychlik is a biologist and photographer, born in Poland and living in the USA since 1980 .\nFrederick Webb Hodge. Frederick W Hodge (October 28, 1864 -- September 28, 1956) was an editor, anthropologist, archaeologist, and historian born in Plymouth, England to Edwin and Emily (Webb) Hodge .\nWillis Jackson, Baron Jackson of Burnley. Born in Burnley, he was the only son of Herbert Jackson and his wife Annie Hiley .\nDiane Carlson Evans. Carlson Evans was born and raised on a dairy farm in rural Minnesota and graduated from nursing school in Minneapolis, Minnesota .\nJoseph W. White. Born in Cambridge, Ohio, White attended the common schools and Cambridge Academy .\nFranz Dominic Grassi. Franz Dominic Grassi (* 11 May 1801 in Leipzig; † 14 November 1880 Leipzig) was a merchant in Leipzig with Italian descent .\nStefano Nolfi. Stefano Nolfi (born 23 September 1963, Rome) is a director of research of the Institute of Cognitive Sciences and Technologies at the Consiglio Nazionale delle Ricerche and head of the Laboratory of Autonomous Robots and Artificial Life .\nIbrahim Diarra. Ibrahim Diarra (born 25 May 1983 in Paris) is a French rugby union footballer .\nJennifer Holliday. Jennifer Holliday (born 18 January 1964 in Melbourne) is a softball player from Australia, who won a bronze medal at the 1996 Summer Olympics .\nPeter Dowdeswell. English gourmand Peter Dowdeswell, born in London on 29 July 1940, is among the most successful competitive eaters in the recorded history of the sport .\nAnna Hegner. Anna Hegner (* 1 March 1881 in Basel; † 3 February 1963 in Basel) was a Swiss violinist, music composer and pedagogue .\nSimon H. Rifkind. Born in Lithuania, Rifkind emigrated to the United States in 1910 .\nCarey Beebe. Carey Beebe, born in Melbourne in 1960, is an Australian harpsichord maker and technician .\nWang Nan. Wang Nan (; born 7 October 1981 in Beijing, China) is a Chinese baseball player who was a member of Team China at the 2008 Summer Olympics .\nEric Ash. Born in Berlin, Ash emigrated with his family to Britain in 1938 to escape Nazism .\nAlaric Alexander Watts. Alaric Alexander Watts (16 March 1797 - 5 April 1864), British poet and journalist, born in London .\nJoseph Isabelle. Joseph Gaston Isabelle (born 14 November 1920 in Hull, Quebec) was a Liberal party member of the Canadian House of Commons .\nAlexander Wilson. Born in Virginia, Wilson completed preparatory studies .\nJani Golob. Jani Golob (born 18 January 1948 in Ljubljana) is a Slovenian composer, conductor and violinist .\nPeyman Hooshmandzadeh. Peyman Hooshmandzadeh (born 1969 in Tehran) is an Iranian photographer and author .\nWalter Dulaney Addison. Walter Dulaney Addison was born at Annapolis, Maryland on January 1, 1769, the son of Thomas Covington Addison and Rebecca Dulaney Addison .\nGary Franklin. Gary Franklin was born to a Jewish family in Leipzig, Germany on September 22, 1928 .\nJohn Esposito. Born in Brooklyn, Esposito was raised in the Hudson Valley in a family that included policemen but also artists and musicians .\nWalter Douglas. Born in Glasgow, Scotland, Douglas was a former milkman and petty thief before becoming involved in drug trafficking and money laundering with the Delta crime syndicate during the 1980s and early 1990s earning millions smuggling cannabis into the United Kingdom from Morocco, Spain and Holland .\nDenys Page. Born at Reading, Page was the son of Frederick Harold Dunn Page, a chartered civil engineer of the Great Western Railway, and his wife Elsie Daniels .\nBrigitte Peucker. Brigitte Peucker (born 13 April 1948, in Berlin, Germany) is the Elias Leavenworth Professor of German Languages and Literatures and Professor of Film Studies at Yale University .\nFrancis Williams. Francis Williams (1702--1770) was a scholar and poet born in Kingston, Jamaica .\nAlicia Thorgrimsson. Alicia Thorgrimsson is a Canadian actress born in Brandon, Manitoba to an Icelandic/Scottish father, and a Guyanese mother .\nTolga Tekinalp. Tolga Tekinalp (born 28 December 1974 in Turkey) is former professional basketball player from Turkey .\nWentworth Arthur Matthew. According to Matthew, he was born in Lagos, Nigeria, although others say he was born in St Kitts .\nHarry B. Cohen. Harry B Cohen, CM, LL.D., born in Winnipeg, Manitoba (1912 -- July 11, 1990), was a Canadian entrepreneur, community builder, philanthropist, and Member of the Order of Canada .\nEduardo Lago. Eduardo Lago (born 15 June 1954) is a Spanish novelist, translator, and literary critic, born in Madrid and currently living in Manhattan, New York, United States .\nSir William Pearce, 2nd Baronet. Pearce was son of the Clydeside shipbuilder Sir William Pearce, 1st Baronet and his wife Dinah Elizabeth, née Scooter .\nSurinder Khanna. Surinder Khanna (born 3 June 1956, in Delhi, India) is a former Indian cricketer .\nTom Hamilton. Born in Belfast, Hamilton studied at the Methodist College, Belfast, then at Stranmillis College .\nStephen Levine. Born in Albany, New York, Levine attended the University of Miami .\nGottlieb Bodmer. Bodmer was born at Munich in 1804 .\nCollins J. Seitz. Born in Wilmington, Delaware, Seitz graduated from the University of Delaware and later the University of Virginia Law School .\nJaan Arder. Jaan Arder (born February 26, 1952, Tallinn) is an Estonian singer .\nEva Maria Zuk. Eva Maria Zuk is a Mexican piano concertist, who was born in Poland, but raised in Venezuela and New York City .\nBenjamin Enos. Benjamin Enos (February 13, 1788 Richmond, Washington County, Rhode Island - February 4, 1868 DeRuyter, Madison County, New York) was an American politician .\nRichard Anthony. Richard Anthony is a French singer, born 13 January 1938 in Cairo, Egypt, as Ricardo Btesh .\nArthur Neal. Born in Sheffield, Neal attended Wesley College before becoming a solicitor .\nJan Kregel. Jan A Kregel (born 19 April 1944, Dallas, Texas) is an eminent Post-Keynesian economist .\nHenry Lerolle. Henry Lerolle (3 October 1848 -- 22 April 1929) was a French painter, art collector and patron, born in Paris .\nLeo Connellan. Leo Connellan (November 30, 1928 -- February 22, 2001) was an American poet born in Portland, Maine .\nAlain Deloche. Alain Deloche, born 2 September 1940 at Paris, is a French surgeon .\nCharles Ramsay Arbuthnot. Born in Liverpool in England, he was son of George Clerk Arbuthnot and Caroline Ramsay Hay, and grandson of Sir William Arbuthnot, 1st Baronet .\nEdward Stone Parker. Parker was born on 17 May 1802 in London to Edward Stone Parker and his wife Mary .\nSamuel Lancaster Gerry. Born in Boston, Gerry was self-taught as an artist .\nAdrian Lombard. Adrian Lombard was born in the city of Coventry, Warwickshire, on 9 January 1915 .\nLewis Yelland Andrews. Lewis Yelland Andrews (b. 1896 in Sydney; d 26 September 1937 in Nazareth) .\nJim Boyd. Jim Boyd is an American actor, born in Philadelphia .\nJames Whitworth. Born in Sheffield, United Kingdom in 1970, Whitworth was educated at Tapton School and Sheffield Hallam University, where he graduated with a degree in English language and literature .\nSahara Smith. Sahara Smith is a young American singer-songwriter born in Austin, Texas in 1988 .\nHugues Krafft. Hugues Krafft (1853 - 1935) was a French photographer born in Paris .\nBarbara von Johnson. Barbara von Johnson (b. 1942 in Munich) is a German illustrator and artist .\nLeib Ostrow. Leib Ostrow an American music producer, was born in Detroit in 1951 and developed a keen love of music at an early age .\nChris Vaefaga. Chris Vaefaga (born 1 November 1987 in Auckland, New Zealand) is a rugby league player for the Bulldogs in the National Rugby League .\nHenry Neele. Henry Neele (January 29, 1798 -- February 7, 1828) was an English poet and literary scholar .\nBuzzy Linhart. Born William Linhart in Pittsburgh, Pennsylvania, he began honing his craft playing percussion for symphony at the age of seven, switching to vibraphone at ten .\nWorthington Hooker. Worthington Hooker (1806-1867) was an American physician, born in Springfield, Massachusetts .\nFred Lecklider. Fred Lecklider (9 June 1895 Toledo, Ohio -- 10 January 1964 Los Angeles, California) was an American racecar driver .\nAleksander Żabczyński. Aleksander Żabczyński (24 July 1900 in Warsaw -- 31 May 1958 in Warsaw), was a Polish stage and movie actor, one of the most popular actors during the interwar period in Poland .\nGabriele Castagnola. Gabriele Castagnola (11/14/1828 Genoa - 8/30/1883 Florence) was an Italian artist who worked in oil painting and chromolithography in an Academic style in Florence, Italy .\nHeather Jones. Heather Jones (born October 8, 1970 in Edmonton, Alberta) is a former field hockey player from Canada, who represented her native country at the 1992 Summer Olympics in Barcelona, Spain .\nWang He. Wang He (born 9 November 1988 in Beijing) is a male Chinese sports sailor who competed for Team China at the 2008 Summer Olympics .\nGabrielle de Coignard. Gabrielle de Coignard (1550-1586) was a French poet, born in Toulouse, France, to John de Coignard and Louise de Baulac .\nDavid Aiken. Born in Benton, Illinois, Aiken studied English at Southern Illinois Normal College where he matriculated in 1935 .\nAllison H. Eid. Born in Spokane, Washington, Eid earned her Bachelor of Arts degree in American studies with distinction in 1987 from Stanford University, where she was a member of the Phi Beta Kappa honor society .\nKaren Young. Karen Young (born 1 January 1946, Sheffield, Yorkshire) is an English born singer, who had a 1969 hit in the UK Singles Chart with ``Nobody's Child'' (done originally by Canadian country singer Hank Snow) .\nEmil Cesar. Emil Cesar was born on 16 August 1927 in Ljubljana as a son of Jernej Cesar, a locomotive engineer from Kal pri Mirni Peči, and Marija Cesar (née Zupančič) .\nMamta Kharab. Mamta Kharab (born January 26, 1982, Haryana) is the current captain of the Indian women's hockey team .\nChristelle Lefranc. Christelle Lefranc (born March 15, 1980) is a French fashion model from Paris, France .\nJimmy Johnson. Jimmy Johnson (born February 4, 1943, Sheffield, Alabama) is an American a member of the Muscle Shoals Rhythm Section that was attached to FAME Studios in Muscle Shoals, Alabama for a period in the 1960s and 1970s, and later was the a founder of Muscle Shoals Sound Studio located at first on 3614 Jackson Highway in Sheffield, Alabama and at a second site on 1000 Alabama Avenue also in Sheffield, Alabama .\nEmma Ejwertz. Emma Ejwertz is a Swedish singer/songwriter who grew up in southwest Sweden .\nJustin Hickey. Hickey was born in a working class suburb of Sydney, where he attended De La Salle College .\nDesmond T. Burke. Born in Ottawa, Ontario,, Burke attended Lisgar Collegiate Institute where he was a member of the school's cadet corps .\nMatthew Mead. Matthew Mead (born 1924, Buckinghamshire) is an English poet .\nThalia Pellegrini. Thalia Pellegrini (born 16 August 1978, London) is a British television presenter .\nShyril O'Steen. Shyril O'Steen (born October 5, 1960 in Seattle, Washington) is a former American competitive rower and Olympic gold medalist .\nGeorge Vicat Cole. Cole was born at Portsmouth, the son of the landscape painter, George Cole (1810-1883), and in his practice followed his father's lead with marked success .\nPeter Sullivan. Born in Virginia, Sullivan is a Democrat and served on the House Committees on Criminal Justice and Public Safety and State-Federal Relations and Veterans Affairs .\nBarys Tasman. Barys Tasman (; ) (born 13 November 1954, in Minsk, Belarus), is one of the most respected sports writers of Belarusian journalism .\nVernon Knowles. Vernon Knowles (1899-1968) was an Australian author, born in Adelaide .\nPaul Streeten. Born in Austria, Streeten spent his formative years in Vienna .\nGerrit Noordzij. Gerrit Noordzij (born 2 April 1931, Rotterdam) is a Dutch typographer, typeface designer, and author .\nAghasi Khanjian. Khanjian was born in the city of Van, Ottoman Empire (today eastern Turkey) .\nIgnatius Cockshutt. The son of James Cockshutt and Mary Nightingale, he was born in Bradford, Yorkshire, England .\nJoseph Hislop. Joseph Hislop was born in the city of Edinburgh, at 16 Beaumont (sc. Bowmont) Place, in 1884 .\nEli Capilouto. Capilouto is a native of Alabama .\nWalter Ehrlich. Walter Ehrlich (May 16, 1896 in Berlin -- December 26, 1968 in Bad Ragaz, Canton of St Gallen, Switzerland) was a German philosopher .\nJustin Wintle. Justin Wintle (born 1949) is an English author, editor and journalist who has contributed to a wide variety of media-outlets .\nWilliam Walcutt. William Walcutt (April 28, 1819 Columbus, Ohio - April 22, 1882 New York City) was an American sculptor .\nFelix Rottenberg. Felix Rottenberg (born 4 June 1957, Amsterdam) is a Dutch politician .\nRadovan Sloboda. Radovan Sloboda (born 7 November 1982 in Bratislava) is a Slovak professional ice hockey player who played with HC Slovan Bratislava in the Slovak Extraliga .\nOlaf Rude. Olaf Rude (1886--1957) was a Danish painter who was born in Estonia .\nCharlene McMann. Charlene McMann, born in Chicago, Illinois, is an advocate for cancer patients and children .\nJames Chalmers. Born in Elgin, Moray, Scotland, Chalmers was an ambitious military strategist during the War of Independence, but was apparently kept at arm's length by British commanders Sir William Howe and Sir Henry Clinton .\nHoward Loxton. Howard Loxton is a British theatre critic and writer, was born in Birmingham, England in 1934 .\nJohn Ferguson. Ferguson was born at Irvine, Ayrshire, 28 February 1787 .\nBernard Brodie. Born in Chicago, Bernard Brodie was the third of four sons of Max and Esther (Bloch) Brodie, Jewish immigrants from the Russian Empire .\nPhilip Hershkovitz. Philip Hershkovitz (12 October 1909 -- 15 February 1997) was an American mammalogist .\nPhilip Jeremiah Schuyler. Philip Jeremiah Schuyler (January 21, 1768 Albany, New York -- February 21, 1835 New York City) was an American politician from New York .\nKong Bai Ji. Kong Bai Ji is a contemporary Chinese artist born in Shanghai, in the People's Republic of China, in 1932 .\nRichard Beckett. Richard Beckett (born 18 June 1772 at Leeds; died 28 July 1809 at the Battle of Talavera) was an English amateur cricketer and a captain in the Coldstream Guards during the Napoleonic Wars .\nMarty O'Neill. Marty O'Neill, born June 6, 1964 in Winnipeg, Manitoba, is a former lacrosse player and current general manager of the Minnesota Swarm of the National Lacrosse League (NLL) .\nGerard Hemsworth. Gerard Hemsworth (born 1945, London) is an academic and a contemporary artist .\nGeorge Hulse. George Hulse (1927 - September 10, 2001) was a British actor .\nJack Petticord. Jack Petticord (1898 -- 2 December 1940) was an American racecar driver, born in Chicago, Illinois .\nSylvia Wynter. Sylvia Wynter, OJ, born in Cuba to Percival Wynter and Lola Maude Wynter, (née Reed) on 17 January 1935, is a Jamaican novelist,, dramatist, critic and writer of essays .\nDoğa Bekleriz. Doğa Bekleriz (born 28 November 1977, Istanbul) is a Turkish model, actress and TV presenter .\nRichard Bohn. Karl Theodor Richard Bohn (29 December 1849 -- 22 August 1898) was a German archaeological architect born in Berlin .\nChris Pile. Chris Pile, born 1969 in Warwickshire, England, was a programmer, notorious in late 1995 as ``The Black Baron'' .\nDavid Hackl. David Hackl (born 7 February 1973 in Toronto) is a Canadian film director and production designer .\nTom Arnold. Tom Arnold was born (as Thomas Richard Arnold) in London on 25 January 1947 .\nJuan Carlos Zald%C3%ADvar. Juan Carlos Zaldívar is a filmmaker and video artist who was born in Cuba .\nRobert Wayne Thomason. Robert Wayne Thomason (5 Nov 1952 Tulsa, Oklahoma, USA -- Nov 1995 Paris, France) was an American mathematician who worked on algebraic K-theory .\nPeter Dembicki. Peter Dembicki (born 24 September 1980 in Vancouver) is a Canadian rower .\nEduardo Prado Coelho. Eduardo Prado Coelho (29 March 1944 Lisbon - 25 August 2007 Lisbon, Portugal) was a Portuguese writer, journalist, columnist and university professor .\nPaul Hallez. Paul Hallez (10 September 1846 - 2 November 1938) was a French zoologist and embryologist born in Lille .\nGeorge Bruce. Bruce, who was born in Scotland, immigrated to America in 1795 and served his apprenticeship in Philadelphia .\nLouisa Stevenson. Stevenson was born at Glasgow, the daughter of James Stevenson (1786--1866), a merchant of Glasgow and his wife Jane Stewart Shannan, daughter of Alexander Shannan, a merchant of Greenock .\nRobert Moore. Robert Moore is a Canadian poet, actor, director, playwright, and professor, born in Hamilton, Ontario .\nJean Noël Hallé. Jean Noël Hallé (January 2, 1754 -- February 11, 1822) was a French physician born in Paris .\nJulian Paynter. Julian Paynter (born 15 July 1970 in Edinburgh, Scotland) is a retired male long-distance runner, who represented Australia at the 1996 Summer Olympics in Atlanta, Georgia .\nTania Corrigan. Tania Corrigan (born 24 November 1965 in Auckland, New Zealand) is a shooting competitor for New Zealand .\nJames Christie. Born in Perth in 1730, Christie went on to found Christie's auctioneers in December 5, 1766 .\nWilliam Kraft. William Kraft (born 1923, in Chicago, Illinois) is a composer, conductor, teacher, and percussionist .\nJuan Bautista de Lezana. Lezana was born at Madrid .\nMarcus Tuite. Marcus Tuite (born 11 May 1968 in Dublin) was an Irish soccer player during the 1980s and 1990s .\nPaul Downes. Born in Devon, Downes played classical guitar in his youth .\nEleni Cubitt. Eleni Cubitt is a film maker born in Greece .\nPieter de Molijn. Pieter de Molijn (6 April 159523 March 1661) was a Dutch Golden Age painter and engraver born in England .\nGustav Bischof. Karl Gustav Bischof (January 18, 1792 -- November 30, 1870) was a German chemist, born in Nuremberg, Bavaria .\nWayne Elcock. Wayne Elcock (born 12 February 1974 in Birmingham) is an English boxer .\nElnathan Sweet. Elnathan Sweet (November 20, 1837 Cheshire, Berkshire County, Massachusetts - January 26, 1903 Albany, New York) was an American civil engineer (C.E.) and politician from New York .\nGordon de Lisle Lee. Born in Aberdeen, the son of the Reverend F G Lee, vicar of All Saints, Lambeth, he was educated at St Mary's College, Harlow and Westminster School and became an artist and designer .\nFran%C3%A7ois Ozenda. François Ozenda (1923--1976) was a painter born in Marseille, France .\nNancy Metz White. Born in Madison, Wisconsin, in 1934, White graduated from the University of Wisconsin-- Madison with a bachelor's degree in art education and also did graduate study there .\nShane Price. Shane Price, (born 26 December 1986 in Melbourne, Victoria, Australia) second generation racer Shane Price was born with petrol in his blood, being the son of multiple Kart champion Drew Price and nephew to female racer Melinda Price .\nSir James Grant, 8th Baronet. Grant was the son of Sir Ludovick Grant, 7th Baronet, and Lady Margaret Ogilvy, daughter of the statesman James Ogilvy, 1st Earl of Seafield .\nSimone Iannarelli. Simone Iannarelli is a composer and classical guitarist born in Rome, Italy, in 1970 .\nJohn Alfred Cuthbert. Born in Savannah, Georgia in 1788, Cuthbert graduated from Princeton College, studied law, gained admission to the state bar in 1809 and began practicing law in Eatonton, Georgia .\nEdouard Grikurov. Born in Tbilisi, Grikurov studied at the Tbilisi Conservatoire where he was a pupil of Mikhail Ippolitov-Ivanov .\nTimothy L. O'Brien. Born in Illinois, O'Brien is a graduate of Loyola Academy and Georgetown University, where he studied literature .\nJohn L. Morrison. Born in Scotland, Morrison emigrated to Connecticut around 1830 and learned carpentry .\nDJ Woody. DJ Woody (aka Lee Woodvine) is a prolific DJ and turntablist born in Burnley, Lancashire UK in 1977 .\nJoshua Newtonn. Joshua Newtonn (born 1969 in Kerala, India) is an Indian writer of stories and an acclaimed screenwriter and a former journalist .\nJeff Chandler. ``Joltin''' Jeff Chandler (born September 3, 1956 in Philadelphia, Pennsylvania) is a former boxer .\nGodfrey Cripps. Born in India and educated at Cheltenham College, Cripps played just four first-class cricket matches, all of them in South Africa .\nSamuel von Schmettau. Samuel Graf von Schmettau (24 March 1684 Berlin - 18 August 1751) was a Prussian field marshal .\nMargi Scharff. Margi Scharff (b. February 11, 1955, Memphis, Tennessee - d July 2, 2007, Tiburon, California) was an American artist .\nLance Hayward. Lance Hayward, a jazz pianist, was born in Bermuda in 1916, where he lived until he moved to New York City at the age of 50 Blind since infancy, he received formal training in classical piano and was a self-taught jazz musician, eventually becoming one of Bermuda's best-known jazz artists .\nHenry Bernard Carpenter. Henry Bernard Carpenter, born April 22, 1840 in Dublin or near Enniskillen, Ireland of an ancient landed family, died July 17, 1890 at Sorrento, Maine, was a noted Unitarian clergyman, orator, author, and poet .\nPaule Ka. Born in Lille in 1955, Serge Cajfinger spent his childhood in Brazil; he returned to France in 1968.At the age of 19, he opens with his mother and his aunt Paule a multi-brand store in Lille .\nRona Hartner. Rona Hartner (born 9 March 1973, Bucharest) is a Romanian actress and singer .\nTerry Wardle. Terry Wardle (born 17 April 1944) is a British writer born in Hereford .\nIshwardas Rohani. Ishwardas Rohani is the speaker of Madhya Pradesh legislative assembly .\nLeonard Strong. Leonard Clarence Strong (b .\nColin Kennedy. Born in Hamilton, Ohio in 1823, Kennedy was the second of five children in an unstable family .\nPeter Freebody. Freebody was born on 12 August 1950 in Sydney, Australia .\nBiff Mitchell. Born in Toronto, Ontario, Mitchell graduated from the University of New Brunswick with an honors degree in English Literature in 1974 .\nAlice Harrison. Alice Harrison (1852--May 3, 1896) was an English stage actress born in London, England .\nGabriel Bertrand. Gabriel Bertrand (born 17 May 1867 in Paris, died 20 June 1962 in Paris) was a French biochemist and bacteriologist .\nDon Dixon. Born in Easton, Pennsylvania in 1951, Don Dixon is an astronomical artist practicing space art in the tradition of Chesley Bonestell, who believed that scientific accuracy is a fundamental aspect of the esthetic of this genre .\nQueenie van de Zandt. Born in Canberra to Dutch immigrants, van de Zandt attended St Matthews Primary School and St Francis Xavier High School before graduating in the top 2% of her state at Daramalan College .\nThomas Playfere. Born in London about 1561, he was son of William Playfere and Alice, daughter of William Wood of Bolling in Kent .\nGeorges Borchardt. Born in Berlin in 1928, Borchardt was in France with his family when war broke out in 1939; his father died when Borchardt was a child of eleven .\nCarlo Giuseppe Ratti. Carlo Giuseppe Ratti (1737--1795) was an Italian art biographer and painter of the late-Baroque period .\nMartin Kosleck. Kosleck was born Nicolaie Yoshkin in Barkotzen in Pomerania, Germany, the son of a Jewish Russian forester .\nBernhard Fries. Bernhard Fries (16 May 1820 Heidelberg -- 21 May 1879 Munich) was a German landscape painter .\nReed Hansen. Reed Hansen (born April 22, 1990) is a wakeskater who was born in Orlando, Florida .\nRon Waksman. Born in Pittsburgh, PA, and currently licensed in Maryland, the District of Columbia, Alabama, Georgia, and Israel, Waksman is currently Editor-in-Chief of Cardiovascular Revascularization Medicine (Elsevier), Section Editor for Journal of Interventional Cardiology (Futura), and sits on the editorial boards of several other major scientific journals .\nSir John Borlase, 2nd Baronet. Born in Bockmer in Buckinghamshire, he was the son of Sir John Borlase, 1st Baronet and Alice Bancks, daughter of Sir John Bancks, Lord Chief Justice of the Court of Common Pleas .\nMarjorie Schwarzer. Born in Boston, Schwarzer spent her early years in Buffalo, New York .\nWilliam L. Ward. Born in Pemberwick, town of Greenwich, Connecticut, Ward moved to Port Chester, New York, with his parents in 1863 .\nChrista Goetsch. Christa Goetsch (born 28 August 1952 in Bonn) is a German politician of the Alliance '90/The Greens party, member of the Hamburg Parliament, and from 2008-2010 was a Senator and Deputy Mayor of Hamburg .\nRobert John. Born in Birmingham, Alabama on November 10, 1961, John moved to California with his parents when he was three years old .\nLeonard Bosack. Born in Pennsylvania in 1952, Leonard Bosack graduated from La Salle College High School in 1969 .\nJuan Carlos Carbonell. Juan Carlos Carbonell (born May 16, 1970), is a Chilean open wheel racecar driver .\nAlberto Saichann. Alberto Saichann is a comic book artist and penciller born in Argentina .\nGianni Iapichino. Gianni Iapichino (born March 2, 1969 in Florence) is an Italian athletics coach and pole vaulter, and former husband of 1995 and 2001 world champion long jumper Fiona May .\nEmmanuel Schelstrate. Emmanuel Schelstrate (1649 -- 6 April 1692) was a Catholic theologian born at Antwerp in 1649 .\nArthur William à Beckett. Arthur William à Beckett (25 October 1844 Fulham - 14 January 1909 London) was an English journalist and man of letters .\nArja Kajermo. Arja Kajermo is a cartoonist, born in Finland, raised in Sweden, currently residing in Ireland .\nBob McChesney. McChesney is a trombonist born in Maryland, and began studying trombone at the age of nine, and holds a bachelor's degree from State University of New York at Fredonia .\nPetr Kroutil. Petr Kroutil (b. 31 January 1973, Prague, Czechoslovakia) is a Czech musician and actor .\nThomas Pole. He was born on 13 October 1753 in Philadelphia, the youngest son of John Pole (1705--1755), a native of Wiveliscombe, Somerset, who emigrated to New Jersey .\nJonathan Hunt. Hunt's father, also named Jonathan, was born in Massachusetts, and was an early pioneer and land speculator in Vermont, where he later served as Lieutenant Governor .\nAlbert Richard Pritchard. Albert Richard Pritchard was born at Rochester, March 12, 1863, the son of Alfred Richard and Mary Burroughs (Servoss) Pritchard, and always resided there .\nJoe Long. Joe Long (born in Elizabeth, New Jersey on September 5, 1941 as Joseph LaBracio) is best known as the bass guitarist for The Four Seasons .\nGérald Gagnier. Born in Montreal, Gagnier was the son of musician René Gagnier and received his earliest musical training in the trumpet, piano, and music theory from him .\nVishal Marwaha. Vishal Marwaha (born 8 May 1976 in Glasgow) is a Scottish field hockey player .\nJos%C3%A9 Pou. José Pou is a cartoon artist who was born in Nicaragua in 1973 .\nJuan Manén. Juan Manén (or , May 14, 1883 - June 26, 1971) was a Spanish violinist and composer, born in Barcelona .\nNazik Saba Yared. Nazik Saba Yared (born 1928 Jerusalem) is a Lebanese novelist, and academic .\nJean Gallon. Born in Paris, Gallon was the elder brother of composer Noël Gallon .\nMarga van Praag. Marga van Praag (born September 14, 1946, Amsterdam) is a Dutch journalist and television presenter .\nHiram Pitt Bennet. Born in Carthage, Maine, Bennet moved to Ohio with his parents, who settled in Richland County in 1831 .\nPierre Joxe. Pierre Joxe (born 28 November 1934 in Paris) is a former French Socialist politician and has been a member of the Constitutional Council of France since 2001 .\nHardial Bains. Born in India into a Communist family in the Punjab, Bains became a member of the youth wing of the Communist Party of India (CPI) .\nDennis Conta. Born in Milwaukee, Wisconsin, Conta graduated from Casimir Pulaski High School .\nHarrie Wood. Wood was born at Kensington in London to public servant William Alexander Wood and Margaret Eleanor Hall .\nRobert Logan Jack. Jack was born at Irvine, in Ayrshire, Scotland the son of Robert Jack, a cabinet-maker, and his wife Margaret, née Logan .\nThomas Ebdon. Thomas Ebdon (1738--1811) was a British composer and organist born in Durham .\nNick Doody. Nick Doody (born 1972 in Morley, West Yorkshire) is a British stand-up comedian .\nSalvador Cristau Coll. Salvador Cristau Coll was born on 15 April 1950 in Barcelona, Spain .\nJason Hedlesky. Jason Hedlesky (born February 20, 1974, Clinton, Michigan) is an American race car driver .\nMichael Guider. Michael Guider was born on 20 October 1950, in the city of Melbourne, Victoria .\nSalomon Konijn. Salomon Konijn (January 14, 1874, in Amsterdam -- March 15, 1932, in Amsterdam) was a Dutch gymnast who competed in the 1908 Summer Olympics .\nZdzis%C5%82aw Najder. Born in Warsaw on October 31, 1930, Najder studied at Warsaw University (1949--1954) and Oxford University (1959--1969), earning doctoral degrees in philosophy and Polish literature .\nFrancis Dunlavy. Dunlavy took an active role in writing the Ohio Constitution but was unable to include any sort of provision guaranteeing suffrage to African-Americans .\nCsaba Őry. Csaba Őry (born on 12 May 1952 in Budapest) is a Hungarian politician and Member of the European Parliament with the Hungarian Civic Party, part of the European People's Party and sits on the European Parliament's Committee on Employment and Social Affairs .\nHenri Jeanneret. Henri Jeanneret (born 1 January 1878 in Switzerland) was an Australian rules football player, who played in the Victorian Football League (VFL) .\nNicholas Riccardi. Nicholas Riccardi (born at Genoa, 1585; died at Rome, 30 May 1639) was an Italian Dominican theologian, writer and preacher .\nRaymond Meier. Raymond Meier born in Switzerland in 1957, is a Swiss-American Photographer .\nGraham Reilly. Graham Reilly (born in 1972 in London) is a British composer, known for composing television music .\nWilliam Ernest Brymer. Brymer was born at Bath the son of John Brymer of Ilsington, Dorchester, Dorset and his wife Eliza Mary Tugwell, only daughter of George Tugwell of Crowe Hall, near Bath .\nJohn Philp Thompson, Sr.. John Philp Thompson, Sr (November 25, 1925 Dallas, Texas-January 28, 2003 Dallas, Texas), was the eldest son of Joe C Thompson, Sr., the founder of the 7-Eleven chain of convenience stores .\nAnita Vogel. Anita Vogel (born November 24, 1969, California) is an American news reporter for the Fox News Channel .\nFrancis Hours. Reverend Father Francis Hours, born 1921 in France and died 1987 was a French Jesuit archaeologist known for his work on prehistory in the Levant .\nRichard E. Council. Richard E Council (born October 1, 1947 Tampa, Florida) (sometimes credited as Richard Council) is an American film, television and stage actor .\nPeter Verhoek. Peter Verhoek (born 16 September 1955, Auckland) was a New Zealand cricketer who played for Central Districts Stags .\nDennis Davis. Davis was hired by David Bowie in 1974; with Alomar and bassist George Murray, Davis formed the rhythm section on a number of Bowie's albums released in the 1970s .\nLukáš Kándl. Born in 1944 in Prague, Czech Republic, Lukáš Kándl is a well-known artist in Magic Realism .\nEliza Stewart Boyd. Boyd, born in Canada, came to the United States and settled along the South Platte River near Denver before hiring on to the Union Pacific .\nThomas Dausgaard. Thomas Dausgaard (), (born 4 July 1963 in Copenhagen) is a Danish conductor .\nJames Powell. James Powell (born 3 April 1792 at Eton, Buckinghamshire; died 5 May 1870 at Eton) was an English professional cricketer who played first-class cricket from 1818 to 1822 .\nKarl Friedrich von Klöden. Karl Friedrich von Klöden (21 May 1786 Berlin - 9 January 1856 Berlin) was a German educator, historian, and geographer .\nBrad Farrow. Brad Farrow (born October 5, 1956 in Vancouver, British Columbia) is a retired judoka from Canada, who represented his native country at two Summer Olympics: 1976 and 1984 .\nJay Neill. Born in London, Neill started work as a stage hand at the Chiswick Empire theatre before auditioning for a role within the Dior Dancers adagio act .\nStacy Clark. Stacy Clark (born September 21, 1980) is an American singer-songwriter born in Buffalo, New York .\nDavid Needham. David Needham (born 21 May 1949 in Leicester) is an English former professional footballer who played in the Football League for Notts County, Queens Park Rangers and Nottingham Forest, and in the North American Soccer League for the Toronto Blizzard, in the 1970s and 1980s .\nArsen Savadov. He was born in 1962 in Kiev, to the family of Vladimir Savadov, a book illustrator, originally from Baku, Azerbaijan .\nSimon Binnendijk. Simon Binnendijk (March 26, 1821 -- October 28, 1883) was a Dutch gardener and botanist born in Leiden .\nAlan Davey. Alan Davey (born 11 September 1963, Ipswich, Suffolk) is best known as the former bassist with Hawkwind .\nHenry W. Lee. Born in London, Lee worked in the printing industry, then joined the Social Democratic Federation (SDF) soon after its foundation .\nAlfred Clarke. Alfred Clarke (born 16 February 1831 at Nottingham; died 23 October 1878 at Ruddington, Nottinghamshire) was an English professional cricketer who played first-class cricket from 1851 to 1863 .\nPaul Varley. Paul Varley (May 24, 1949 -- July 2, 2008) was an English musician best known as the drummer in the band Arrows .\nNarado Brown. Narada Brown, better known as Narado Brown, (born 28 October 1986 in Kingston, Jamaica) is a Jamaican professional football player, who currently plays for Humble Lions FC in the Jamaican Digicel National Premier League .\nJarvis Kenrick. Jarvis Kenrick (born 13 November 1852 in Chichester, Sussex; died 29 January 1949 in Blatchington, Sussex) was an English association football (soccer) player .\nDwight Yates. Born in Montana, Yates has worked as a secondary school master, medical practitioner in East Africa, and soldier in the US military .\nAnna Barriball. Anna Barriball (born 1972, Plymouth, UK) is an artist based in South London .\nMiriam Slater. Miriam Slater (born February 9, 1952, Los Angeles, California) is an American artist who paints both objects and paintings .\nMark Alton Barwise. Born in Chester, Maine of a medianistic mother, Barwise became an attorney and nationally-prominent member of the National Spiritualist Association (N.S.A.) .\nDick Stockton. Dick Stockton (born in 1942 in Philadelphia, Pennsylvania) is an American sportscaster .\nJacques d'Agar. Jacques d'Agar (1640 -- 1716) was a French portrait painter born in Paris .\nMohammad Mottahedan. Mottahedan developed close relationships with a number of contemporary artists, and started to collect circa 1985 .\nScott Tennant. Scott Tennant is a founding member of the Grammy-winning ensemble Los Angeles Guitar Quartet (LAGQ) and is himself considered to be one of the world's top classical guitarists .\nKäte Stresemann. Kate Stresemann (née Kleefeld) (b. 15 July 1883 in Berlin; d 1970 in New York City) was the daughter of a prominent Berlin industrialist, Adolf Kleefeld .\nLaurence Lampert. Laurence Lampert is a leading academic on Nietzsche studies .\nTancrède Dumas. Tancrède Dumas (1830-1905) was a photographer born in Italy who was active in the Near East .\nJames Brockway. James Brockway, an English poet and translator, was born in Birmingham on October 21, 1916 and died in The Hague, Holland, on December 15, 2000 .\nGeorge Otto Wirz. Born in Monroe, Wisconsin, Wirz was ordained to the priesthood for the Madison Diocese on May 31, 1952 .\nJeff Simmons. Jeff Simmons, born May 1949 in Seattle, Washington, is a rock musician and former member of Frank Zappa's Mothers of Invention .\nRobert Ford. Born in Devon to John and Gladys Ford, Robert Ford was educated at Musgrave's College and was later commissioned into the 4th/7th Royal Dragoon Guards in 1943 .\nArtur Zawisza. Artur Zawisza (, born March 30, 1969 in Lublin, Poland) is a Polish politician .\nEdward Tufnell. Tufnell was born on 3 October 1814 in Bath, Somerset and educated at Eton and Wadham College, Oxford .\nRobbie Regan. Robbie Regan (born 30 August 1968 in Caerphilly, Wales is a Welsh former professional boxer .\nBrent Barraclough. Brent Barraclough is a classical pianist and film producer who was born in Canada in 1962 and is of British Citizenship .\nDiego Delgadillo. Delgadillo was a native of Granada .\nErwin Lauper. Erwin Lauper (born 14 June 1946 in Bern) is a Swiss wheelchair curling player .\nCharles Amos Cummings. Born in Boston, Cummings was educated in the Boston Public Schools .\nChris Christenson. Chris I Christenson (born in 1875 in Norway) was an American figure skater .\nIrfan Yusuf. Irfan Yusuf (born 1969 in Karachi, Pakistan) is an Australian lawyer, social commentator and author of the memoir Once Were Radicals: My years as a teenage Islamo-fascist .\nMark McCall. Mark McCall (born 29 November 1967 in Bangor, County Down, Northern Ireland) is an Irish former rugby union player and former coach of Ulster .\nCharles H. Kraft. Dr Charles H Kraft (b. 1932 in Connecticut) is an American anthropologist and linguist whose work since the early 1980s has focused on inner healing and spiritual warfare .\nMoses Hagiz. Moses Hagiz (1671 -- ca 1750) (Hebrew: משה חגיז) was a Talmudic scholar, rabbi, kabbalist, and author born in Jerusalem, Palestine .\nElemér Terták. Elemér Terták (born 2 November 1918 in Budapest, Hungary; died 8 July 1999 in Budapest) was an Hungarian figure skater who competed in men's singles .\nHaru Mutasa. Haru Mutasa born in Zimbabwe .\nMorten Nordeide Johansen. Morten Nordeide Johansen (born 1951) is a Norwegian luger, born in Oslo .\nAna Maria Narti. Ana Maria Narti, born 1936 in Bucharest, Romania is a Swedish writer and politician .\nGeorge P. Merrill. George Perkins Merrill (May 31, 1854 Auburn, Maine -- August 15, 1929) was an American geologist .\nKjersti Elvik. Kjersti Elvik (born 9 March 1969) is a Norwegian actress, born in Bergen .\nMaryem Tollar. Born in Cairo, Maryem went to Halifax, Nova Scotia, Canada with her parents when she was 1 in 1969 .\nPhillip Jackson. Phillip Jackson (born September 22, 1950, Chicago, IL) is an American politician .\nTony Skabar. Tony Skabar (18 October 1900 - 17 December 2005) was an Austria - Hungary World War I veteran who was born in Ukraine in 1900 and died in Canada in 2005 at the age of 105 .\nDávid Kovács. Dávid Kovács (born on 15 March 1976 in Budapest) is a Hungarian politician, former founding member of the Movement for a Better Hungary .\nMonika Meyer. Monika Meyer (born 23 June 1972 in Berlin) is a retired German football striker .\nClaude Weisz. Claude Weisz is a French film director born in Paris .\nBrian O'Riordan. Brian O'Riordan (born 4 February 1981 in Dublin), is a professional rugby player .\nSteven Hayward. Born in Toronto, Hayward attended the University of Toronto and York University .\nAmy Chance. Amy Chance (born July 21, 1975) was an American child actor born in Hollywood, California .\nMatt O'Connor. Matt O'Connor (born 1967, Manchester, England, UK) is the founder of the fathers' rights group Fathers 4 Justice in the UK Denied access to his children by the Family Courts, O'Connor created Fathers 4 Justice to demand reform of the family courts and government policy on parental access .\nSam Lynch. Sam Lynch (born 29 November 1975 in Limerick) is an Irish rower .\nKris Lefcoe. Born in Montreal, Quebec, Lefcoe graduated from the University of Toronto with a degree in philosophy, before attending Norman Jewison's Canadian Film Centre as a Director Resident .\nJohn Baptist de Faria. John Baptist de Faria was born in 1871, in Portugal .\nFederico Fabregat. Federico Fabregat is a Mexican artist and poet born in Guadalajara, Jalisco .\nStefan Nystrom. Nystrom was born on 31 December 1973 in Sweden .\nLucine Amara. Amara was born Lucine Armaganian in Hartford, Connecticut, of Armenian heritage, before moving to San Francisco where she was raised .\nAnna Livia Julian Brawn. Anna Livia Julian Brawn (November 13, 1955 in Ireland -- August 5, 2007 in California),who used the pen name Anna Livia for her novels, was a ``widely read lesbian feminist writer and linguistic theorist'', well-known for her fiction and non-fiction regarding issues of sexuality .\nJoe Zakas. Joe Zakas (born November 7, 1950, Chicago, Illinois) is a Republican member of the Indiana State Senate representing the 11th district where he has served since 1982 .\nJohn McLaren, Lord McLaren. The son of Duncan McLaren, a former Provost of Edinburgh and Member of Parliament, he was born in Edinburgh .\nDavid Basnett. Born in Liverpool, Basnett studied at Quarry Bank High School before becoming a bank clerk .\nJames Hamilton. Born in Paisley, Scotland, seven miles west-southwest of Glasgow, Hamilton was the eldest son of William Hamilton, a preacher and religious author of local renown .\nAlexander Manning. Born in Dublin, Ireland, Manning was the last unelected Toronto mayors .\nOrnella Oettl Reyes. Ornella Oettl Reyes (born December 14, 1991 in Germany) is an alpine skier born in Germany to a Peruvian mother who has competed on behalf of Peru since 2010 .\nSamuel Partridge. Born in Norwich, Vermont, Partridge received a limited schooling .\nAristides Brezina. Aristides Brezina (4 May 1848 -- 25 May 1909) was an Austrian mineralogist born in Vienna .\nDon Mankiewicz. Born in Berlin, Germany, he is the son of Herman J Mankiewicz .\nGiorgio de Stefani. Giorgio de Stefani (born February 24, 1904, Verona, Italy -- died October 22, 1992, Rome, Italy) was a left-handed tennis player competing for Italy .\nChafik Charobim. Chafik Charobim (November 4, 1894 in Cairo -- 1975), is a well known impressionist and naturalist Egyptian artist who painted the ``Peaceful and Tranquil Egypt of the last Century'' .\nAlexander Garden. Rev Alexander Garden (c. 1685-1756) was a clergyman born in Scotland, and educated at the University of Aberdeen .\nBrandt C. Louie. Born in Vancouver, British Columbia, Louie received his BComm from University of British Columbia and became a chartered accountant three years later .\nGunnar Samuelsson. Gunnar Samuelsson (born May 2, 1927, Lima, Dalarna - November 4, 2007) was a Swedish cross-country skier who competed in the 1950s .\nStanley Morgan. Stanley Morgan (born on 10 November 1929 in Liverpool, England) is an English writer and actor .\nPeter Hargitai. Peter Hargitai (born 1947 Budapest, Hungary) is an award winning poet, novelist, and translator of Hungarian literature .\nJJ Horner. JJ Horner born January 14, 1982, from Willmar, Minnesota is an American artist, who resides in Tempe, Arizona .\nMary MacLeod Banks. Mary MacLeod McConnel, born in Edinburgh, the daughter of DC McConnel, a colonist of Queensland, spent her formative years in Australia and Europe .\nChris McKhool. Chris McKhool, born November 18, 1968 in Ottawa, Ontario, is a Canadian violinist, guitarist, composer, producer and singer-songwriter .\nVincent Laforet. Vincent Laforet (born 1975, Switzerland) is a French American director and photographer .\nBill Barminski. Bill Barminski (born 26 November 1962) is an American artist and filmmaker born in Chicago, Illinois .\nSharon Duce. Sharon Duce (born 17 January 1950, Sheffield, Yorkshire) is a British actress,  .\nClaude Piel. Claude Piel (b. 15 January 1921, Paris; d 19 August 1982) was a notable French aircraft designer and the son of an aeronautical carpenter .\nHerbert James Carter. Carter was born at Marlborough, Wiltshire, England, the son of James Carter, farmer, and his wife Mary Ann, née Freeman .\nCharles W. Moorman III. Charles W Moorman III, was born in Cincinnati, Ohio in 1925 .\nHadi Sepehrzad. Hadi Sepehrzad (, born 19 January 1983 in Tehran) is an Iranian decathlete .\nSam Cosstick. Cosstick was born at Croydon, Surrey, England .\nUrsula Evje. Ursula Evje (born 13 December 1944 in Oslo) is a Norwegian politician for the Progress Party .\nNasos Thanopoulos. Nasos Thanopoulos (born 8 February 1968 in Athens) is a Greek Businessman and a minor shareholder of AEK Athens FC .\nGerman Sims Woodhead. Sir German Sims Woodhead, KBE (1855--1921) was an English pathologist, born at Huddersfield .\nJohn Keen. John Thompson Keen was born on 25 February 1849 at Broadway in the county of Worcestershire, England, and lived in Surbiton, Surrey from the age of five .\nHarry E. T. Thayer. Harry E T Thayer (born 10 September 1927, Boston) was the sixth United States Ambassador to Singapore .\nEdith Dimock. Edith Dimock (1876--1955) was an American painter, born in Hartford, Connecticut .\nRoland Green. Roland Green (born on 29 July 1974 in Victoria, British Columbia) is a retired Canadian mountain bike and road bicycle racer .\nBartle Brennen Bull. In the same year he moved to Bartle, Cuba, to manage his family's cattle ranch and sugar plantation .\nDaniel O'Mahony. Daniel O'Mahony (born 24 July 1973) is a half-British half-Irish author, born in Croydon .\nTony Southgate. Tony Southgate (b. 25 May 1940, Coventry, England) is a British engineer and former racing car designer .\nHenry Bocking. Both he and his team fared better, with Bocking making eleven before Bennett bowled him, and Yorkshire drawing the game .\nJohn McNamara. John McNamara (born 1950) is an American artist who was born in Cambridge, Massachusetts .\nMorris Sigman. Born in Russia, Morris Sigman spent his youth working as a lumberjack before moving to London in 1902 .\nProsper Garnot. Garnot was born at Brest .\nMasataka Yanagida. Masataka Yanagida, born 4 June 1979 in Tokyo, is a Japanese racing driver .\nBertram Falle, 1st Baron Portsea. Falle was born on Jersey in the Channel Islands, the son of Joshua George Falle (1820--1903), Constable of Saint Helier and later Jurat of the Royal Court of Jersey, and Mary Elizabeth (née Godfray; died 1917) .\nJohn Herbert Claiborne. Born in 1828 in Virginia, Claiborne completed his medical studies in Philadelphia in 1851 .\nVicente Gómez. Vicente Gómez, born in Honduras, was President of El Salvador from 1 to 15 February 1854 .\nLuka Grubor. Luka Grubor (born 27 December 1973) is a competition rower, born in Zagreb, who competed for Yugoslavia and Croatia, and became Olympic champion for Great Britain .\nAlbert Pratz. Born in Toronto, Pratz studied in his native city with Broadus Farmer and Luigi von Kunits .\nEnrique Alciati. Enrique Alciati (d. after 1912) was a French/Italian sculptor and teacher, born in Marseille, France, who contributed various sculptures in France and Mexico .\nWilliam Schoell. William Schoell (pronounced shoal) is an American author, biographer and film historian, born November 30, 1958 in Manhattan and educated in Vermont, earning a BA from Castleton State College in 1978 .\nSarah Mytton Maury. Sarah Mytton Maury (1 November 1803 - October, 1849) was an English authoress, born in Liverpool to Bridgit Nelson and William Hughes .\nFrancis Dunlap Gamewell. Francis Dunlap Gamewell (b. Aug 31, 1857, Camden, SC; d Aug 14, 1950, Clifton Springs, NY) was a Methodist missionary in China .\nÁlvaro Fillol. Álvaro Fillol (born December 4, 1952, in Santiago, Chile), is a former professional tennis player from Chile .\nHelen Longworth. Helen Longworth (born 1976, Preston) is a British actor .\nKip King. King was born Jerome Kattan in Chicago, Illinois .\nRiccardo Truccolo. Riccardo Truccolo (born August 8, 1989 in Pordenone, Italy) is an Italian professional basketball player, currently a member of Snaidero Udine of the Italian league (LegADue/Serie A2) .\nGeorge E. Waldo. Born in Brooklyn, New York, Waldo attended the public schools of Scotland, Connecticut, and Brooklyn, New York, Doctor Fitch's Academy, South Windham, Connecticut, Natchaug High School, Willimantic, Connecticut, and studied two years in Cornell University, Ithaca, New York, class of 1872 .\nJonathan Robinson. Born in Waterloo, Quebec, Robinson was a member of the Legislative Assembly of Quebec for Brome from 1936 until his death in 1948 .\nLynne Cooke. Born in Geelong, Australia, Ms Cooke received a BA from Melbourne University and an MA and PhD in art history from the Courtauld Institute, London University, and has taught and lectured regularly at the University College London, Syracuse University, Yale University, Columbia University, and the Center for Curatorial Studies at Bard College .\nJames Brown. James Brown (31 July 1862 -- 4 July 1922) was an English association football player of the Victorian era .\nGeorge Kitching. George Kitching was born on 9 September 1910 in Guangzhou (Canton), China .\nRhoda Holmes Nicholls. Rhoda Holmes Nicholls (1854-1930) was an American water-color painter, born in Coventry, England .\nVirginia Leng. Virginia Helen Antoinette Holgate, also known as Ginny Leng, (born 2 February 1955 in Malta ) was a British equestrian competitor who achieved many notable successes in the 1980s, including winning the Individual European Eventing title on 3 consecutive occasions, 1985, 1987 and 1989, a feat which has never been equalled before or since .\nMark Farmer. Mark Farmer is a British actor, born 22 May 1962, in London, and probably best remembered for his childhood role of Gary Hargreaves in the first three series of the popular children's television programme Grange Hill, in which he starred from 1979 to 1981 .\nFrank Frankfort Moore. Born in Limerick, Ireland, Moore worked as a journalist (1876--92) before gaining fame as an author of fiction .\nSnorre Valen. Snorre Serigstad Valen (born 16 September 1984 in Oslo) is a Norwegian musician and politician (SV) .\nGeorge Mavrotas. George Mavrotas (Greek: Γιώργος Μαυρωτάς; born April 4, 1967 in Athens, Greece) is a retired Greek water polo player and assistant professor in the School of Chemical Engineering at the National Technical University of Athens .\nMarco Napolioni. Marco Napolioni (born 16 June 1975 in Rome) is an Italian footballer .\nArne Rinnan. Arne Frode Rinnan (born 11 November 1940 in Oslo, Norway) was the captain of the MV Tampa, owned by Norwegian shipping line Wallenius Wilhelmsen which was involved in the so-called Tampa affair .\nMaurice Tadadjeu. Maurice Tadadjeu (b. 1950 in Cameroon) is a Vice-President of the African Union's Economic, Social and Cultural Council of Central Africa .\nJohn Hyacinth Power. Born in Waterford, Ireland on 2 November 1884, Power emigrated to South Africa in 1904 to take up a post as school master at Kimberley's Christian Brothers`` College (now known as St Patrick's College) .\nLester Spangler. Lester Spangler (15 January 1906 Brook, Indiana -- 30 May 1933 Indianapolis, Indiana) was an American racecar driver .\nRobert Moss. Robert Moss, born in Melbourne (Victoria) in 1946, is an Australian historian, journalist and author and the creator of Active Dreaming, an original method for working with dreams and imagination .\nPierre deMorlaix. It is believed that Peter's actual name was Pierre De Morlaix, born in France .\nLinda Newell. Born in Oregon, Newell earned a bachelor's degree from the University of California at Irvine .\nMartin Malvy. Martin Malvy (born 24 February 1936, in Paris) is a French politician .\nMaurice Vaïsse. Maurice Vaïsse (born on 7 May 1942 in Algiers) is a French historian specialised in international relations and Defence .\nArnaldo Faustini. Born in Rome, he received his doctorate at the University of Rome at the age of 21 Faustini worked at a newspaper based in Rome as scientific editor .\nNat Patton. Patton was born on a farm near tiny Tadmor in Houston County near Crockett in east Texas .\nSamuel Dick. Samuel was born at Nottingham in Prince George's County, Maryland .\nEdward Webster Bemis. Edward Webster Bemis (7 April 1860 Springfield, Massachusetts -- 25 September 1930) was a United States economist and a public utility expert .\nLew Jetton. Lew Jetton (born 1959, Humboldt, Tennessee) is an American blues guitarist and singer, who also spent many years as a meteorologist and local television personality .\nAxel Leonard Melander. Axel Leonard Melander (3 June 1878 Chicago -- 8 Aug 1962) was an American entomologist specialising in Diptera and Hymenoptera .\nJohn Mundy. John Mundy born in Manchester, England is a British television presenter and voice-over artist .\nAlex Garc%C3%ADa. Alex García is a Cuban Nuevo Latino chef who helped popularize a version of Cuban food at several New York City restaurants and on the Food Network .\nLuis Mu%C3%B1oz. Luis Muñoz is a poet born in Granada, Spain, in 1966 .\nFranz Rosei. Franz Rosei (born on 2 July 1947 in Vienna) is an Austrian sculptor and draughtsman .\nTadeusz Browicz. Tadeusz Browicz (September 15, 1847 -- March 20, 1928) was a Polish pathologist born in Lviv .\nDave Berg. Dave Berg is a native of Portland, Oregon .\nDilawar Hussain. Dilawar Hussain ( born March 19, 1907, Lahore - died on August 26, 1967, Lahore) was an early Indian Test cricketer .\nHerbert Sanders. Born in Wolverhampton, Sanders studied at the Royal College of Music (RCM) with Charles Swinnerton Heap (organ), Charles H Kitson (theory), and Charles W Perkins (organ) .\nNico Gardener. Nico Gardener (1908--1989) was a British international bridge player, born in Riga, Latvia (then part of Imperial Russia) .\nVictor Antoine Signoret. Victor Antoine Signoret (6 April 1816 Paris - 3 April 1889 Paris ) was a French pharmacologist, physician and entomologist .\nJohn B. Foster. John B Foster (1865--1930) was a New England artist, born in Gloucester on December 25, 1865 .\nFrancis Allegra. Francis Marion Allegra (born in 1957 in Cleveland, Ohio) is an American federal judge on the United States Court of Federal Claims .\nWallace Bishop. Wallace Bishop (b. Feb. 17, 1906, Chicago, Illinois - d May 2, 1986, Hilversum, Holland) was an American swing jazz drummer .\nPhil Lucas. Born in 1942 in Phoenix, Arizona, United States to the Choctaw Native American Nation, by his twenties Lucas was a musician in New York but giving up alcohol drove him to leave for Central America where he took up photography and work for advertising agencies .\nRoy Dalgarno. Roy Dalgarno is a social realist artist, born in Melbourne, Victoria (Australia) in 1910, died February 2001 in Auckland, New Zealand .\nHenry Woods. Henry Woods (1764--1826) was a United States Representative from Pennsylvania .\nDiana Trask. Diana Trask (born 23 June 1940) is an Australian and American country and pop singer born in Melbourne, Australia .\nAlec Briggs. Alec Briggs (born 21 June 1939) is a former professional footballer born in Sheffield, England, who played for Bristol City between 1957 and 1970 .\nLynne Kositsky. Kositsky, who was born in Montreal and grew up in London, England, now lives in the Niagara region of Ontario .\nRobert Boughey. Robert Boughey is an American architect born in Pennsylvania, USA .\nCecil Copping. Cecil Copping (6 July 1888 in Lisbon, New Hampshire, USA -- 4 January 1966 in Los Angeles, California, USA) was an American composer of film music and a miscellaneous crew .\nXavi Vallmajó. Xavier Vallmajó Tercero (Born 19 February 1975 in Barcelona, Spain) is a Spanish Professional basketball player .\nGraham Ackerman. Graham Ackerman (born 14 July 1983, in Seattle, Washington) is an American gymnast .\nJ.C. Patterson. Born in Armagh, Ireland in 1839, Patterson was educated in Dublin, Ireland and came to Canada in 1857 .\nLawrence Willis. Lawrence Willis (born 12 July 1981 in Lafayette, Louisiana) is an American triple jumper .\nElizabeth Forbes. Born in Ottawa, Forbes was the daughter of William Armstrong, an employee of the Government of Canada .\nIzolda Barudžija. Izolda Barudžija () is a Yugoslav singer born in Split .\nRolf Schock. Rolf Schock (1933--1986), philosopher and artist, was born in France of German parents .\nJoel Lion. He was born in 1964 in France and raised in Esch-sur-Alzette in LuxembourgMr Lion is married to Rebeca, and is the father of eight children .\nJean Baptiste Claude Chatelain. Jean Baptiste Claude Chatelain, an engraver, was born in Paris about 1710 .\nAlejandro Rossi. Alejandro Rossi (Alessandro Rossi, September 22, 1932 - June 5, 2009. He was born in Florence, Italy of Venezuelan mother and Italian father) was a Mexican writer .\nPeter Hoover. Born in Canada, Peter has also worked in Mexico, Costa Rica, United States, Chile, and Australia .\nJohn Raven. John Raven was born on 13 December 1914 in Cambridge, the son of Charles Earle Raven, sometime Regius Professor of Divinity at Cambridge and Master of Christ's College, Cambridge and of Margaret Wollaston .\nAlex González. Alejandro González (born February 24, 1969 in Miami, Florida, United States), better known as Alex González, is an American Mexican musician of Cuban and Colombian origin .\nJohn Smyth. Born in Ireland, Smyth worked as a London Underground driver .\nGabriel Desjardins. Gabriel Desjardins (born 14 February 1949 in Montreal, Quebec) was a Progressive Conservative member of the Canadian House of Commons .\nAbhijit Kunte. Abhijit Kunte (born 3 March 1977, Pune) is an Indian chess Grandmaster .\nMark Koevermans. Mark Koevermans (born 3 February 1968 in Rotterdam) is a former tennis player from the Netherlands, who turned professional in 1987 .\nEspen Giljane. Espen Giljane (born 28 February 1962 in Oslo) is a Norwegian ballet teacher and dancer .\nWilliam Harrison Courtney. William Harrison Courtney, or William H Courtney (b. 1944 in Baltimore, Maryland, USA) is an American diplomat, having served as representative for the US mostly in Eastern Europe .\nDavid Mercer. David Mercer (born April 1950, Swansea, Wales) is a British television sports presenter .\nPrincess Bee. Princess Bee (real name Benedetta Paravia), is a R&B songwriter born in Italy but well known also in Middle East countries for her humanitarian effort .\nJeffrey H. Cohen. Jeffrey H Cohen, PhD, born in Brooklyn, NY in 1962 is an American Anthropologist .\nCharles Alford. Alford was born into an ecclesiastical family in Somerset, England on 13 August 1816 .\nAndrew Crofts. Born in 1953 in England, Crofts was educated at Lancing College, a school renowned for producing writers, (Evelyn Waugh, Tom Sharpe, Jan Morris, David Hare, Christopher Hampton and Tim Rice) .\nMarcus Tsutakawa. Born in Seattle, Washington, Mr Tsutakawa began his teaching career as a Japanese teacher, but became the Orchestra director in 1985 .\nKen Fowler. Ken Fowler (15 March 1907 Fargo, North Dakota -- 16 January 1981 St James City, Florida) was an American racecar driver .\nHenry Robertson Hartley. Henry Robertson Hartley (12 November 1777 Southampton - 24 May 1850 Calais, France) was an eccentric and philanthropist and is the founder of the Hartley Institute which became the University of Southampton .\nMark Cooksey. Mark Cooksey (born 18 January 1966 in England) is a Commodore 64 musician, best known for composing the music for the platform game Ghosts'n Goblins .\nJanet Coster. Born in London, the daughter of a London Transport employee, Coster studied at the Guildhall School of Music and privately with Eva Turner .\nSun Lingfeng. Sun Lingfeng (; born 14 August 1978 in Beijing, China) is a Chinese baseball player who was a member of Team China at the 2008 Summer Olympics .\nEd Pizunski. Ed Pizunski, born 8 October 1954 in Toronto, Ontario, was a professional hockey player from 1972 until his retirement after the 1980-81 Muskegon Mohawks season .\nGrant McNally. Grant McNally (born 8 January 1962 in Vancouver, British Columbia) was a member of the Canadian House of Commons from 1997 to 2004 .\nEdward Locke. Edward Locke (1869--1945) was an American playwright born in England .\nZsolt Hamar. Zsolt Hamar (born 1968 Budapest) is a Hungarian conductor .\nMurray McEachern. Murray McEachern (16 August 1915--28 April 1982) was a Canadian jazz trombonist and alto saxophonist born in Toronto, perhaps best-known for having played trombone for Benny Goodman from 1936-1937 .\nAboubacar Sankhare. Aboubacar Sankhare (born January 17, 1978 in Paris, France) is a French footballer who played 14 matches in Ligue 1for clubs Lens and Toulouse in the period of 1997-1999 and 19 matches in Ligue 2 for club Creteil in the period of 1999-2002  .\nDavid Marusek. David Marusek is an author who was born in Buffalo, New York but lived various places in youth .\nLiljana Lu%C4%8Di%C4%87. Liljana Lučić (born in 1953 in Belgrade, Serbia) .\nEnrico Toselli. Enrico Toselli (March 13, 1883 Florence -- January 15, 1926 Florence) was an Italian pianist and composer .\nWalter Bowers Pillsbury. Walter Bowers Pillsbury (July 21, 1872 -- June 3, 1960) was an American psychologist, born at Burlington, Iowa .\nJohn Butts. John Butts, who was born and educated in Cork, Ireland, spent most of his life in Dublin .\nJohn Cobbett. John Cobbett is a sculptor born in Edinburgh in 1929 .\nMinas Gekos. Minas Gekos (in Greek: Μηνάς Γκέκος; born November 7, 1959 in Constantinople is a Greek professional basketball coach and retired player .\nAndrew Patterson. Andrew Patterson (born 4 September 1975 in Belfast, Northern Ireland) is a former Irish cricketer .\nAlexander Ferdinand von der Goltz. Born in Prussia, he studied philology at University of Bonn, and was a friend of Tassilo von Heydebrand und der Lasa .\nPaul Keenan. Paul Keenan (born 5 November 1976 in Lisbon, Portugal) is a songwriter and producer based in Dumbarton, near Glasgow in Scotland .\nBarry Howard. Barry Howard (born 9 July 1937 in Nottingham) is an English actor who is best known for his role as Barry Stuart-Hargreaves in the first seven series of the long-running BBC sitcom Hi-de-Hi! .\nMary Ann Kennedy. Mary Ann Kennedy was born and brought up in Glasgow in a Gaelic-speaking household .\nBruno Arpaia. Bruno Arpaia, born in Naples (Italy) in 1957, is an Italian writer and journalist .\nSimone Orlando. Simone Orlando is a Canadian ballet dancer and choreographer born in Vancouver British Columbia .\nJazzy Jay. Jazzy Jay born in Beaufort, South Carolina, United States, November 18, 1961), also known as The Original Jazzy Jay or DJ Jazzy Jay, is a pioneering American hip hop DJ and producer .\nBinem Heller. Binem Heller is a Polish poet and activist .\nOlivia Poulet. Olivia Poulet (born 1978, London) is an English actress .\nChristoph M. Schmidt. Christoph M Schmidt (born 25 August 1962, in Canberra, Australia) is a German economist .\nSiamak Shayeghi. Siamak Shayeghi (, born 1954 in Abadan, Iran is an Iranian film director and film producer .\nMike Shank. Mike Shank (born September 22, 1966) is an American racecar team owner and former racecar driver born in Columbus, Ohio .\nSpiro Zavos. Spiro Zavos (born in 1937 in Wellington, New Zealand of Greek immigrant parents) is an Australasian historian, philosopher, journalist and writer .\nTommie Lindsey. Tommie Lindsey (born September 28, 1951 Oakland, California) is a Forensics coach, at James Logan High School .\nAneesh Kapil. Aneesh Kapil (born 3 August 1993, Wolverhampton, England) is an English cricketer who currently plays for Worcestershire County Cricket Club .\nBijoy Goswami. Bijoy Goswami has grown up at the intersection of eastern and western philosophies: he was born in Bangalore, India, moved to Taiwan at age 10, to Hong Kong at 14, and came to the US in 1991 to attend Stanford University, where he studied computer science, economics and history, and completed an honors program in science, technology and society .\nHenry Beecher Dierdorff. Dierdorff was born near Seville in Medina County, Ohio in 1851 .\nSamuel Barton. Family tradition holds that Samuel, born in Virginia, was left bound as an apprentice while his father returned to England for business only to be lost at sea .\nJohn Augustus Stone. John Augustus Stone (born December 15, 1801 Concord, Massachusetts - June 1, 1834 Philadelphia) was an American actor, dramatist, and playwright .\nThomas Rickner. Thomas Rickner (b. October 8, 1966, Rochester, New York) is an American type designer who, while Lead Typographer at Apple Inc., supervised the production of the first TrueType fonts released in 1991 as part of Apple's System 7 operating system for the Macintosh .\nMax Coyer. Max Coyer (1954--1988) was an American artist, born in Hartford, Connecticut in 1954 .\nSerge Losique. Serge Losique (born in 1931 in Yugoslavia) is the founder & president of the Montreal World Film Festival since its opening .\nJohn B. Snook. Born in England, Snook emigrated to the United States with his family as a child .\nBódog Török. Bódog Török (born 2 November 1923 in Budapest) is a former Hungarian handball player, coach and sports official .\nLawrence Townsend. Born in Philadelphia, Lawrence Townsend was educated at Mantua Academy (1872--77) and entered the University of Pennsylvania in the class of 1881 .\nAbdou Cherif. Abdou Cherif (also Abdou Sherif, ) is an artist born in Casablanca .\nJoseph Paul Cretzer. Joseph Paul Cretzer (April 17, 1911 Minneapolis, Minnesota − May 4, 1946 Alcatraz Island, San Francisco Bay, San Francisco, California) was an American bank robber and prisoner at Alcatraz who participated in and was slain in the bloody ``Battle of Alcatraz'' which took place following a failed escape attempt between May 2 and May 4, 1946 .\nGregory V. Palmer. Gregory Vaughn Palmer (born 8 August 1954) is an American Bishop of The United Methodist Church, elected in 2000 .\nNathaniel Culverwell. Nathaniel Culverwell (1619-1651), alternative spellings Nathanael or Culverwell) was an English author and theologian, born in Middlesex .\nJohn Friedrich. John Friedrich (b. March 15, 1958, California) is an American film actor .\nJean Trembley. Jean Trembley (1749 - September 18, 1811), born at Geneva, contributed to the development of differential equations, finite differences, and the calculus of probabilities .\nGiuseppe Simonelli. Born in Naples around 1650, Simonelli was one of the most important painters of the school of Luca Giordano .\nJohn Warrock. He was born in 1773 in Richmond, Virginia, to Scottish apothocary Ludovic Warrock and Molly Bransford .\nAntonietta Pastori. Born in Milan, Pastori studied piano and singing at the Milan Conservatory .\nDhyanyogi Madhusudandas. Shri Dhyanyogi Madhusudandas was an Indian saint born in Bihar, India .\nHiba Daniel. Hiba Daniel, born in Lebanon, is a Swedish-Palestinian journalist, working for Swedish Radio .\nJacob Murey. Jacob Murey (born 2 August 1941, Moscow) is a Russian-born Israeli chess grandmaster .\nEmmy Verhey. Emmy Verhey (born 13 March 1949, Amsterdam) is a Dutch violinist .\nAlain Ehrenberg. Alain Ehrenberg, born in Paris in 1950, is a French sociologist .\nSantiago I%C3%B1iguez de Onzo%C3%B1o. Santiago Iñiguez de Onzoño (b. May 17, 1962, Madrid, Spain) is the President of IE University and the Dean of IE Business School in (Madrid, Spain) .\nAleksandra Romanić. Aleksandra Romanic was born 1958 in Zagreb into a family of musicians .\nGayathri Mudigonda. Gayathri Mudigonda (born September 3, 1983, in India) is a Swedish actress .\nRobert E. Wright. Robert E Wright (b. 1969 in Rochester, N.Y.) is a business, economic, financial, and monetary historian and the inaugural Rudy and Marilyn Nef Family Chair of Political Economy at Augustana College in Sioux Falls, South Dakota .\nThomas Nassi. Olympia Tsika was a talented singer who had emigrated to the United States from the very same town (Dardha) in Albania, where Nassi was born and spent his first six years .\nEmanuel Brouwer. Emanuel Brouwer (August 25, 1881, in Amsterdam -- July 6, 1954, in Huizen) was a Dutch gymnast who competed in the 1908 Summer Olympics .\nTariq Hashim. Tariq Hashim is an Iraqi filmmaker who was born in Baghdad, 1960 .\nDavid Lake. Born in Bangalore, India 26 March 1929, India, Lake received a Jesuit education at St Xavier's School in Calcutta (1940--44) .\nFrederick Ellsworth Mather. The son of Ellsworth and Laura (Wolcott) Mather, he was born in Windsor, Connecticut .\nTim Davis. Tim Davis (born November 29, 1943, Milwaukee; died September 20, 1988) was a drummer, singer and songwriter, most notable as a co-founder of The Steve Miller Band .\nHoward Griffiths. Born in Swansea, Griffiths earned a scholarship to Oxford University with the highest entry results in Wales .\nEdward Raymond Neaher. Edward Raymond Neaher (b. May 2, 1912, Brooklyn, NY, d April 19, 1994, Chevy Chase, MD) was a federal judge for the United States District Court for the Eastern District of New York .\nJohn Chillag. In 2004, he published his memoirs, The Odyssey of John Chillag, a Hungarian Jew Born in Vienna 2006: From Gyor in Hungary to Australia and England Via Auschwitz and Buchenwald .\nRich Meyer. Rich Meyer is a musician and author born May 13, 1972 in Cincinnati, OH and raised in Hockessin, DE who currently resides in Brooklyn, NY .\nNeil Rackham. Born in England, Rackham grew up in the jungles of Borneo, returning to England to enter Sheffield University, where he earned a degree in experimental psychology .\nG%C3%B6khan Bozkaya. Gökhan Bozkaya (born 12 May 1981 in Germany) is a German footballer .\nMartin Kratochvíl. Martin Kratochvíl (born May 22, 1946, Prague) is a jazz and jazz rock musician and a businessman from former Czechoslovakia, now Czech Republic .\nGaspard Terrasson. Terrasson was born at Lyon .\nGeorge Mudie. Born in Edinburgh, Scotland in 1788, Mudie became a supporter of Robert Owen's cooperative principles .\nJoseph Wilhelm Swoboda. Born in Prague, Swoboda studied philosophy in his native city and spent his early career there as a stage actor during the 1820s and 1830s .\nJohn Metcalfe. John Metcalfe (born 6 August 1964, Wellington, New Zealand) is a British-based composer and violist, and a former member of the band the Durutti Column .\nTim Long. Tim Long (born June 14, 1969) is a comedy writer born in Brandon, Manitoba, Canada .\nGonzalo Pieres, Sr.. Gonzalo was born and grew up in Argentina .\nDonald Kalish. Born in Chicago, Illinois, Kalish earned his bachelor's and master's degrees in psychology and his doctorate in philosophy at the University of California, Berkeley .\nVladimir Georgiev. Vladimir Georgiev (; born 27 August 1975 in Sofia, Bulgaria) is a Bulgarian chess Grandmaster .\nYu Huili. Yu Huili (born October 5, 1982 in Sichuan) is a female Chinese softball player .\nAlexandra Mazur. Alexandra Mazur (born in 1986 in Moscow) was elected The Beauty of Russia in July 2006, while competing with 44 other contestants from various regions of Russia .\nNicole Hackett. Nicole Hackett (born 10 December 1978 in Sydney) is an athlete from Australia, who competes in triathlon .\nCarl Ludwig Brandt. Carl Ludwig Brandt (22 September 1831 Holstein, Germany - 1905) was a German-born artist who worked mostly in the United States .\nAida Schlaepfer. Aida Schlaepfer (Born in Baghdad) is a Swiss film director and writer .\nAmy Neftzger. Amy was born on June 23 in Illinois and graduated from Elk Grove High School in Elk Grove Village, Illinois .\nSamuel Bourn the Elder. Bourn was born at Derby, where his father and grandfather (who were clothiers) had provided the town with a water supply .\nHans Reiche. Born in Berlin, Reiche received a Master of Science degree in electrical engineering from the Berlin Technical University in 1936, before travelling first to England in 1939, where he was interned after the start of World War Two, and then to Camp Monteith in Ontario, Canada in 1940 .\nBerthold Weisz. Berthold Weisz a Hungarian deputy; born at Budapest in 1845 .\nMarcia Gygli King. Marcia Gygli King (June 4, 1931 Cleveland, Ohio - January 18, 2011) was an American artist .\nEdmund Hobhouse. Edmund Hobhouse, born in London on 17 April 1817, was elder brother of Arthur Hobhouse, 1st Baron Hobhouse, and was second son of Henry Hobhouse, under-secretary of state for the home department (Home Office) .\nFrederick Lewis Allen. Frederick Lewis Allen (July 5, 1890 Boston, Massachusetts - February 13, 1954 New York City) was the editor of Harper's Magazine and also notable as an American historian of the first half of the twentieth century .\nAlice Robie Resnick. Alice Robie Resnick (Born 1939 in Erie, Pennsylvania) is a former Justice of the Supreme Court of Ohio .\nPhilip Sington. Philip Sington is an English novelist and playwright .\nNick Conrad. Nick Conrad (born 29 November 1984 in Norwich, UK) is a British radio and television presenter .\nAnastasius I. Pope Saint Anastasius I, born in Rome the son of Maximus, was pope from November 27, 399 to 401 .\nErnst Friedrich. Ernst Friedrich (23 October 1886 Paris -- 22 January 1954 Nice) was a French racecar driver .\nRoy Sekoff. Roy Sekoff is the founding editor of The Huffington Post .\nSamuel Rickard Christophers. He was born and raised in Liverpool, the son of Samuel Hunt and Kate Christophers and educated at the Liverpool Institute and Liverpool University, graduating MB in 1896 .\nDavid Schnitter. David Schnitter (b. March 19, 1948, Newark, New Jersey) is an American hard bop jazz tenor saxophonist .\nJamie Moses. The son of an American father (a member of US Air Force) and an English mother, Jamie Moses was born in the Suffolk county town of Ipswich, but grew up in various parts of the United States, according to the change of location in his father's postings, as well as in Japan .\nTakeshi Maeda. Takeshi Maeda (前田 剛 Maeda Takeshi) is a Japanese actor and seiyū born on January 10, 1975 in Tokyo .\nBrian Plummer. Brian Plummer, was a Canadian rock musician born in Saskatchewan .\nJoseph R. Chenelly. Chenelly, who was born in 1976 in Rochester, NY, joined the United States Marine Corps at the age of 21 .\nBrian Faloon. Brian Faloon is a musician born in Belfast, Northern Ireland .\nAntonio Tosti. Tosti was born on 4 October 1776 in Rome and died on 20 March 1866, also in Rome .\nMehmet Ali İrtemçelik. Mehmet Ali İrtemçelik (b. March 17, 1950, Istanbul) is the previous ambassador of the Republic of Turkey to Germany .\nDmitry Grigorieff. Dmitry Grigorieff was born in London in 1919 .\nAdolphe Cohn. Adolphe Cohn (1851 -- 1930) was an American educator, born in Paris .\nAlexander Hangerli. Born in Istanbul, Hangerli received a thorough education, was trained to speak several European languages, as well as Ottoman Turkish and Arabic, and prepared for a high-ranking position in the Danubian Principalities .\nLorne Rubenstein. Lorne Rubenstein (born 25 June 1948 in Toronto, Canada) is a Canadian golf journalist and author .\nFlemming Lassen. Flemming Lassen was born on 23 February 1901 in Copenhagen into an artistic family .\nJames O'Mara. Born in Limerick, O'Mara was educated by the Christian Brothers in Limerick, and at Clongowes Wood College in Dublin .\nDavis Gaines. Davis Gaines (b. January 21, 1959, Orlando, Florida) is a stage actor .\nDonald W. Steinmetz. Born in Milwaukee, Wisconsin, Steinmetz graduated from the University of Wisconsin-- Madison and received his law degree there .\nCrist%C3%B3bal de Aguilar. Aguilar was a criollo born in Lima .\nRüdiger Frank. Rüdiger Frank (born in 1969 in Leipzig, GDR) is a German economist and expert on North Korea and East Asia .\nEdward Romilly. Edward Romilly (born 19 April 1804 at London; died 12 October 1870 at Porthkerry, Glamorgan) was an English amateur cricketer who played first-class cricket from 1825 to 1831, and a Member of Parliament from 1832 to 1835 .\nEssie Sakhai. Essie Sakhai, born in Iran and educated in Great Britain, is an expert on Persian carpets and oriental rugs .\nFrancis W. Cushman. Born in Brighton, Washington County, Iowa, Cushman attended the public schools in Brighton and Pleasant Plain Academy in Pleasant Plain, Iowa .\nUrsula Hoff. Dr Ursula Hoff was born on 26 December 1909 in London to Hans Leopold Hoff, Hamburg-based German Jewish merchant, and his wife, née Thusnelde Margarethe (Tussi) Bulcke, of a German Lutheran upper middle-class family .\nCarol Klimpel. Carol Klimpel (born March 30, 1963 in Toronto, Ontario) is a former international freestyle swimmer from Canada, who was supposed to represent her native country at the boycotted 1980 Summer Olympics .\nAlec Statham. Alec Statham (born 1912 Coventry, England) was a Speedway rider who won the London Riders' Championship in 1949 whilst with the Wimbledon Dons .\nMarianne Peretti. Marianne Peretti (born in 1927 in Paris) is a Franco-Brazilian artist .\nMatteo Barzini. Matteo Barzini is an Italian filmmaker and producer born in Rome in 1981 and raised in Los Angeles .\nAlejandro Abellan. Alejandro Abellan (born May 13, 1965, Ottawa) is a Canadian film and television actor .\nDouglas Simpson. Douglas Simpson (born 15 May 1982 in Glasgow) is a field hockey player from Scotland .\nAndrea Lekić. Andrea Lekić (born 6 September 1987 in Belgrade) is a Serbian handballer who plays for Győri Audi ETO KC and also member of the Serbian national team .\nDanny Roxo. Staff Sergeant Francisco Daniel ``Danny'' Roxo (1933--1976) was a legendary Portuguese soldier in Mozambique .\nTommy Waidelich. Tommy Waidelich (born 13 September 1963 in Stockholm) is a Swedish social democratic politician .\nHazard E. Reeves. Born in Baltimore, Maryland, Reeves graduated from Georgia School of Technology in 1928 with a degree in engineering .\nCrystal Mangum. Mangum was born and grew up in Durham, to a father who drove trucks .\nAndrea Giani. Andrea Giani (born April 22, 1970 in Naples) is an Italian coach and retired volleyball player who scored notable successes in the 1990s, winning three World Championships with his national team .\nClive Gee. Clive Gee born in Ireland is rugby league player for the Portlaoise Panthers in Irish Elite League .\nVincent A. Mahler. Vincent A Mahler was born on 26 November 1949 in Chicago's Edison Park neighborhood, and is a professor of Political Science at Loyola University Chicago .\nJohn Hawthorne. Born in Sydney to James Hawthorne and Jane Elkins, he attended Cleveland Street Public School before working with a softgoods firm, establishing his own business in 1875 .\nMiryana Ivanova Basheva. Miryana Ivanova Basheva (born 1947 Sofia) is a Bulgarian poet .\nMordehai Dubin. Mordehai Dubin (;January 1 1889, Riga, Governorate of Livonia, Russian Empire -- 1956, Tula, USSR) was a major Jewish spiritual and political leader in Latvia .\nMatthew Hall McAllister. Born in Savannah, Georgia, McAllister attended Princeton University, and then read law in 1820 to enter the State Bar of Georgia .\nThomas Morland. Born in Montreal, Canada East, Morland was the son of Thomas Morland and Helen Servante .\nLeigh Diffey. Leigh Diffey (born on 3 March 1971 in Brisbane) is an Australian auto racing commentator with the Speed Channel in the United States .\nYuan Yufang. Yuan Yufang (born 1 February 1976 in Beijing, PR China) is a Malaysian race walker .\nShahin Afrassiabi. Shahin Afrassiabi, born 1963 in Tehran, is an artist .\nKlaus Röder. Klaus Röder (often spelled Roeder) is a German musician and music teacher, born 7 April 1948 in Stuttgart, Germany .\nEric Swinkels. Eric Swinkels (born March 30, 1949, Best, Netherlands) is a Dutch sports shooter and Olympic medalist .\nHenry Hiles. Born in Shrewsbury, Hiles was the youngest of six sons .\nGottfried Heinrich Bach. Born in Leipzig, Gottfried Heinrich became ``feeble-minded'' (mildly mentally handicapped in some way) at an early age, but he played the keyboard well and C P E Bach is quoted as saying that he showed ``a great genius, which however failed to develop'' .\nSilke Bodenbender. Silke Bodenbender (born 31 January 1974 in Bonn) is a German actress .\nFrank Kaderabek. Frank Kaderabek is the former principal trumpet of the Philadelphia Orchestra and former trumpet instructor of the Curtis Institute in Philadelphia .\nIan Steel. Born in Glasgow, Scotland, Ian Steel joined the Glasgow United club at 18, in 1946, introduced by a friend, John Brierley .\nEbbe Hamerik. Born in Copenhagen, he was the son of composer Asger Hamerik .\nRobert Lecou. Robert Lecou (born 25 July 1950 in Paris) is a French politician .\nWilliam Child. Born in Bristol, William Child was a chorister in the cathedral under the direction of Elway Bevin .\nEdwin Edgar Voigt. Edwin Edgar Voigt (born February 13, 1892, Illinois; died August 1977) was an American Bishop of German descent in The Methodist Church, elected in 1952 .\nTony Kaldas. Antoine Kaldas, famous as Tony, was born in Cairo, Egypt 1984, in the heart of Cairo in Al Zaher, to a Greek-Egyptian mother and an Egyptian-Palestinian father .\nSilvana Cruciata. Silvana Cruciata (born 15 February 1953 in Naples) is a former Italian middle- and long-distance runner .\nErnest Luxembourg Wright. Ernest Luxembourg Wright by the title E L Wright (September 26, 1892 -- February 18, 1939), was a poet and writer born in southern Massachusetts as the son of Bartholomew and Yura Wright .\nVivion de Valera. Born in Dublin in 1910, Vivion de Valera was educated at Blackrock College, University College Dublin (MSc, PhD) and King's Inns .\nFrancis Montague Holl. Frank Holl (4 July 1845 -- 31 July 1888), English painter, was born in London, and was educated chiefly at University College School .\nMiguel García García. Born in Barcelona, García worked first as a newspaper seller, then a printer .\nCharles Marston. Born in Wolverhampton, Charles was the son of John Marston the founder of Sunbeam .\nBarry Upton. Barry Upton (born 25 February 1954, Hastings, Sussex) is an English songwriter, arranger, musician and producer of various forms of pop music .\nDave Hilton. Dave Hilton born 3 April 1970 in Bristol, England is a former rugby union player for Bath Rugby, Glasgow Warriors and Bristol Rugby whose position of choice is as a prop .\nCaleb H. Baumes. Caleb Howard Baumes (March 31, 1863 Bethlehem, Albany County, New York - September 25, 1937 near Hudson, New York) was an American lawyer and politician from New York .\nWilliam Gifford Palgrave. William Gifford Palgrave (1826--1888) was an Arabic scholar, born at Westminster, England .\nHugh Fraser, 1st Baron Fraser of Allander. Born in Partick, Lanarkshire (now in Glasgow), Hugh Fraser was educated at Glasgow Academy and Warriston School near Moffat .\nMatthew Taylor. Matthew Taylor (born 1968, Miami, Florida) is a musician and artist .\nEd Rossbach. Ed Rossbach was an American fiber artist who was born in Chicago, Illinois in 1914 .\nAugusto De Marsanich. De Marsanich was born at Rome .\nFrantišek Neuwirt. František Neuwirt (born 1895 Prague, died 1957 Prague), professor of stomatology at Charles University in Prague .\nJohn Myres. Sir John Linton Myres (3 July 1869 in Preston -- 6 March 1954 in Oxford) was a British archaeologist .\nJohn Marshall Evans. Born in Virginia, Evans studied Russian history at Yale University, earning an undergraduate degree .\nChad Hartigan. Chad Hartigan was born on the island of Cyprus in August 1982 .\nHenry Bentley. Henry Bentley (born 19 February 1782 at Westminster; died 18 September 1857 at Hereford) was an English first-class cricketer who played for MCC, Middlesex and Hampshire in 68 matches from 1798 to 1822 .\nManuel Su%C3%A1rez %C3%81vila. Manuel Suárez Ávila (b. February 12, 1968, Trinidad) is a Bolivian politician .\nJuris Sokolovskis. Juris Sokolovskis (, transcribed: Yuriy Nikolayevich Sokolovskiy) born on June 13, 1976, in Riga -- Latvian lawyer and politician, member of 7th, 8th and 9th Saeima, co-chairman of ForHRUL between 2007 and 2011 .\nTommy Rustad. Tommy Rustad (born 3 September 1968 in Oslo) is a Norwegian auto racing driver .\nRick Holbrook. Rick Holbrook (born May 28, 1948, Chicago, Illinois, died December 23, 2007) was an Olympic weightlifter for the United States .\nAllan Stewart. Born in Edinburgh on February 11, 1865, his father being the postmaster at Leith, Stewart was educated at the Edinburgh Institution .\nStephen Codman. Born in Norwich, Codman was a pupil of John Christmas Beckwith and William Crotch .\nJohn Arneil. John Arneil was born 1862 in India and died 11 August 1938 in Auckland .\nTomislav Smoljanović. Tomislav Smoljanović (born 15 July 1977 in Split) is a retired Croatian rower who won a bronze medal in the eights competition at the 2000 Summer Olympics in Sydney .\nClaire Ritter. Claire Ritter (b. May 31, 1952, Charlotte, North Carolina) .\nDino Wells. Dino, born in Chicago and raised in New Orleans & Eufaula, Alabama is known as ``The Lethal Warrior'', a former amateur boxing phenom from the early 90's, having an outstanding record of 60 plus official wins and 13 losses .\nEric Robson. Eric Robson, born in Scotland, is a television broadcaster, author and documentary film maker who has lived for most of his life in Cumbria, where he has a sheep farm .\nHerbert J. Davenport. Born in Vermont, Davenport began his formal career as assistant professor at the University of Chicago in 1902 .\nDave Wood. Dave Wood is an Australian calligrapher born in Manchester, England .\nRob Shelby. Rob Shelby was born on July 5, 1978, in a suburb of Detroit, Michigan, to Bob and Diana Shelby .\nJennifer Smith. Born in Lisbon, Jennifer Smith graduated from the Lisbon Conservatory of Music and came to London on a Gulbenkian scholarship .\nMike Peden. Born in Edinburgh, Scotland, Peden began his career as a bass player and as a member of The Chimes .\nRichard Collins, Baron Collins. Born in Dublin, Collins was educated at Trinity College, Dublin, and Downing College, Cambridge .\nAlonso del Arco. Alonso del Arco, born at Madrid in 1635, was a disciple of Antonio de Pereda .\nÖmer Kaner. Ömer Kaner (born 21 May 1951 in Istanbul) is a Turkish football coach and former player .\nDavor Sučić. Sejo Sexon (born June 7, 1961 in Sarajevo) is the stage name of Davor Sučić, Bosnian Croat rock and roll musician, composer, actor and television director .\nPa Neumüller. Pa Neumüller (born 22 January 1963 in Stockholm, Sweden) .\nJeremiah H. Pierson. Jeremiah Halsey Pierson (September 13, 1766 Newark, New Jersey - December 12, 1855 Ramapo, Rockland County, New York) was an American politician from New York .\nWalter Elliot. Sir Walter Elliot (1803--1887), Born in Edinburgh, studied at the East India College in Haileybury and joined the Indian Civil Service at Madras in 1821 and worked on till 1860 .\nBrent Rickles. Brent Rickles (born September 10, 1973 in London, England) is an American guitarist and indie rock musician .\nJohn Mahaffy. John Mahaffy (born July 18, 1919) is a retired professional ice hockey centre who played 37 games in the National Hockey League .\nSofia Scalchi. Born in Turin in 1850, Scalchi studied voice with Augusta Boccabadati .\nPetra Krug. Petra Krug (born 9 November 1963 in Dresden) is a retired East German hurdler .\nTheron R. Strong. Theron Rudd Strong (November 7, 1802 Salisbury, Litchfield County, Connecticut - May 14, 1873) was an American lawyer and politician from New York, .\nSathyabhama Das Biju. Born in Kerala, Biju started his career as a botanist, he became interested in frogs and undertook a second PhD in zoology, from the Amphibian Evolution Lab in Brussels .\nPetar %C4%8Culi%C4%87. Petar Čulić is one of the best world classical guitarists of young generation .\nLev Leshchenko. Lev Leshchenko was born on 1 February 1942 in Moscow, Soviet Union .\nJesper Nordin. Jesper Nordin, born 6 July 1971 in Stockholm, is Swedish composer .\nMartin Henriksson. Martin Henriksson, born 30 October 1974 in Sweden, is one of two guitarists, one of the founding members and the main songwriter of the Swedish death metal band Dark Tranquillity .\nJohn Chester Buttre. John Chester Buttre (10 June 1821 Auburn, New York - 2 December 1893 Ridgewood, New Jersey), was an American steel-plate engraver and lithographer, responsible for some 3 000 engraved portraits of American political, naval and military personalities .\nHenry Duckworth. Born in Brandon, Manitoba, Duckworth received a Bachelor of Arts degree in 1935, a Bachelor of Science degree in 1936, and a teaching certificate in 1937 from the University of Manitoba .\nKaoru Kakudo. Kaoru Kakudo (1947- April 15, 2004), a violinist born in Japan, who performed internationally in recital and solo orchestral appearances .\nAntony Cooke. Antony Cooke, (born 3 August 1948, Sydney, Australia), is an American cellist, composer, astronomer, and author .\nMichel Dovaz. Michel Dovaz born in Geneva, Switzerland on August 14 1928 .\nIngrid Eide. Ingrid Eide (born 12 July 1933 in Oslo) is a Norwegian sociologist, United Nations official and politician for the Labour Party .\nConstantinos Decavallas. Constantinos Decavallas (born 1925 Athens) is a Greek modernist architect .\nThomas Reeve. Reeve was born at Langley, Norfolk, in 1594 .\nJörgen Dafgård. Jörgen Dafgård (born 27 November 1964 in Gothenburg) is a Swedish composer .\nShiva Boloorian. Shiva Boloorian (, born 5 October 1979 in Tehran) is an Iranian actress and stage director, as well as a TV moderator .\nGeorgina Kennard. Lady Kennard was born Georgina Wernher in Edinburgh, Scotland, on 17 October 1919 to Sir Harold Augustus Wernher, 3rd Bt., and Countess Anastasia de Torby .\nAlexandre Desgoffe. Alexandre Desgoffe, a French landscape painter, was born in Paris in 1805 .\nOlaf Poulsen. Born in Kristiania, Poulsen was an active speed skated in his younger days .\nAndrew Bell. Andrew Bell (5 September 1803 -- 27 September 1856) was a Presbyterian minister who was born in London, England, moved to Scotland and emigrated to Upper Canada with his family in 1817 .\nJack Curtner. Jack Curtner (9 July 1888 Greenville, Ohio -- 1 January 1961 Dayton, Ohio) was an American racecar driver .\nRafael Garzón Rodríguez. Rafael Garzón was a Spanish photographer born in Granada in 1863 and died in 1923 .\nLouis Joseph Coralie. Louis Joseph Coralie (1912--1967) was the first Afro-Mauritian to be involved in the Mauritian politics .\nCarlo Fatuzzo. Carlo Fatuzzo (born on 14 March 1944 in Genoa) is an Italian politician and Member of the European Parliament for North-West with the Partito dei Pensionati, part of the European People's Party and sits on the European Parliament's Committee on Employment and Social Affairs .\nErnest E. Wood. Born in Chico, California, Wood attended the public schools and was graduated from the Stockton (California) High School in 1892 .\nRobb Gravett. Robb Gravett (born 10 May 1956 in London) is a British retired racing driver and team owner, a winner of the 1987 Willhire 24 Hour, and the 1990 British Touring Car Championship winner with his own Trakstar team, in a Ford Sierra prepared by Australian magnate Dick Johnson .\nAnton Altmann. Anton Altmann, who was born in Vienna in 1808, studied from nature, and under the instruction of Mössmer at the Academy .\nRéginald Bernut. Reginald Bernut (born 18 January 1937 in Sydney, Australia)is an Australian born politician from New Caledonia .\nHenry Hudson Kitson. Sir Henry Hudson Kitson, often known as H H Kitson, American sculptor, born in Huddersfield, England on April 9, 1865 and died at Tyringham, Massachusetts, on June 26, 1947 .\nFrank P. Incropera. Born in Lawrence, Massachusetts in United States on 12 May 1939, Incropera received his Bachelor's degree mechanical engineering from the Massachusetts Institute of Technology in 1961 and MS degree in mechanical engineering from the Stanford University in 1962 .\nMartin Wright. Martin Wright (born 23 June 1974 in Germany) is a British bobsledder who competed for Great Britain at the 2006 Winter Olympics .\nRose Prince. Rose Prince (born 4 December 1962 in Hampshire, England) is a food writer, author, cook and activist .\nWilliam Doan. Born in Maine, Doan attended the common schools .\nStanis%C5%82awa Nowicka. Stanisława Nowicka (1905--1990) was a Polish dancer and singer born in Warsaw .\nÉnemond Massé. Massé was born at Lyon .\nKároly Varga. Károly Varga (born 28 September 1955 in Budapest) is a Hungarian sports shooter and Olympic Champion .\nDavid J. Eicher. David John Eicher (born August 7, 1961, Oxford, Ohio) is an American editor, writer, and popularizer of astronomy and space .\nRichard Corbould. Richard Corbould, who was born in London in 1757, was a painter, in oil and water-colour, of portraits, landscape, and occasionally history; of porcelain, and miniatures on ivory, and enamels; and was furthermore an illustrator of books, and an imitator of the old masters .\nEthan Mordden. Ethan Mordden (born January 27, 1949, Pennsylvania) is an American author .\nThomas Adams. Born in London, Adams studied under Thomas Busby, and served as organist at several prominent London churches .\nStaffan de Mistura. Staffan de Mistura (born 25 January 1947, Stockholm, Sweden) is a long-serving Italian-Swedish diplomat .\nFrançoise Claustre. Françoise Claustre, who was born in Paris, died at her home in Montauriol, Pyrénées-Orientales, France, in September 2006, at the age of 69 .\nAlejandro Colina. Alejandro Colina, Venezuelan sculptor, born in Caracas on February 8, 1901 .\nVirginio Colombo. Virginio Colombo (1885 -- 1927) was a prolific architect who completed close to 50 works in Buenos Aires in just 21 years before his premature death at the age of 42 Born in 1885 in Milan, Italy, he studied architecture in the Brera Academy under Giuseppe Sommaruga, the city's leading exponent of the Art Nouveau style .\nFranco Gentilesca. Born in Brooklyn, Gentilesca was educated at St John's University and Pace University .\nMehran Khaghani. Born in London to Iranian parents, Mehran grew up in the United Kingdom, Iran, Turkey and the suburbs of Boston .\nZhang Lei. Zhang Lei (born 1979-03-23 in Nanjing, Jiangsu) is a female Chinese foil fencer, who will compete at the 2008 Summer Olympics .\nDesi Williams. Desi Williams is a rugby league player born in London, England .\nRobert McCrindle. Born in Glasgow, McCrindle was educated at Allan Glen's School .\nChristopher Benfield Carter. Born in Montreal, the son of Christopher Carter and Amelia Jane Coward, Carter studied at the Montreal High School, the Commercial Academy of Sorel, and McGill University .\nEdward Isaac Ezra. Edward Isaac Ezra (born 3 January 1882 in Shanghai; died 15 December 1921 in Shanghai) was a wealthy Jewish businessman, who was the first Chinese-born member of the Shanghai Municipal Council, and who was at one time ``one of the wealthiest foreigners in Shanghai'' .\nSteve Free. Steve Free was born near Portsmouth, Ohio, on September 16, 1950, When he was 3, he moved to Tucson AZ for a short time and before returning to Ohio at age 9 where he graduated from Northwest High School, Scioto Co Ohio in 1968 .\nCharles Reynolds Brown. Charles Reynolds Brown (October 1, 1862 -- November 28, 1950) was an American Congregational clergyman and educator, born in Bethany, W Va He graduated at the University of Iowa in 1883 and studied theology in Boston University .\nSimon Cooke. Simon Cooke (born 10 August 1975, Manchester, England, UK) is a British video games developer, currently resident in Seattle, Washington .\nConyers Middleton. Middleton was born at Richmond in Yorkshire, and was educated at school in York and at Trinity College, Cambridge .\nBo Weavil Jackson. Bo Weavil Jackson (dates and places of birth and death unknown, real name said to be James Butler), was an African American blues singer and guitarist .\nKay Lahusen. Lahusen was born and brought up in Cincinnati, Ohio and developed her interest in photography as a child .\nJohn O'Keefe. Born in Waterloo, Iowa in 1940, O'Keefe was raised in the Midwest in Catholic orphanages and juvenile homes .\nJamal Jumá. Jamal Jumá, An Iraqi poet and researcher, born in Baghdad, and since 1984 lived in Denmark .\nAnwar Khan. Anwar Khan (Urdu: انور خان) (born December 24, 1955, Karachi, Sindh) is a former Pakistani cricketer who played in one Test in 1979 .\nLaurence Stallings. Stallings was born Laurence Tucker Stallings in Macon, Georgia to Larkin Tucker Stallings, a bank clerk, and Aurora Brooks Stallings, a homemaker and avid reader who inspired her son's love of literature .\nRick Lawson. Rick Lawson (born 1973 in Raymond, Mississippi) is an American soul, blues and R&B singer .\nDiego Francisco Altamirano. Diego Francisco Altamirano was a Jesuit and author, born at Madrid, 26 October 1625; died in Lima, 22 December, 1715 .\nEric Aarons. Born in Marrickville in inner-city Sydney, Aarons moved with his parents and older brother, Laurie, to Melbourne as a young boy .\nCharles Dixon. Charles Dixon (1858-1926) was an English ornithologist, born in London .\nJohann Christoph Friedrich Klug. Johann Christoph Friedrich Klug was a German entomologist born 5 May 1775 in Berlin and died 3 February 1856 in the same city .\nEdwin Grant Dexter. Edwin Grant Dexter (born 1868, date of death unknown) was an American educator, born at Calais, Me He graduated in 1891 from Brown University, where he taught for a year and then (between 1892 and 1899) was science master of Colorado Springs High School, director of the Coloradp Springs Summer School of Science, Philosophy, and Languages, and professor of psychology in the Normal School at Greeley, Colo .\nArthur Napoleão dos Santos. Arthur Napoleão dos Santos (March 6, 1843 Porto, Portugal - May 12, 1925 Rio de Janeiro, Brazil) was a Brazilian composer, pianist, instrument dealer and music publisher .\nEdgar Sydney Little. The son of Colonel John William Little and Kate Nicholson Little, he was born in London, Ontario, Canada .\nCedric Myton. Cedric Myton born in Jamaica is a Reggae musician and Rastafarian .\nRobert Jankel. Born in London in 1938, Jankel was educated at St Paul's School and studied engineering at Chelsea College .\nJacqueline Carey. Jacqueline Carey (b. 1954 in Cambridge, Massachusetts) is an American novelist and short story writer .\nWilliam Presser. Born in Michigan, Presser began composing in 1939 .\nNatallia Helakh. Natallia Helakh (; , Nataliya Gelakh) (born 30 May 1978 in Brest) is a Belarusian rower .\nYvette Higgins. Yvette Higgins (born 5 January 1978 in Sydney) is an Australian water polo player from the gold medal squad of the 2000 Summer Olympics .\nClement Payne. Payne was under the impression that he was a Barbadian citizen, but did not know that he was born in Trinidad to Barbadian parents .\nDragoș Neagu. Dragoş Neagu (born 28 February 1967 in Bucharest) is a Romanian rower .\nTheodore Augustine Mann. Theodore Augustine Mann (1735--1809) was an English naturalist and historian, born in Yorkshire on June 22, 1735 .\nLloyd Turner. Born in Australia, Turner worked on the Newcastle Morning Herald before moving to England to work as a journalist at the Manchester Evening News .\nLouise Christian. Louise Christian (born 22 May 1952, Oxford) is an award-winning British human rights lawyer .\nSilas Bowker. Silas Bowker (April 26, 1769 Concord, Middlesex County, Massachusetts - October 14, 1834 Locke, Cayuga County, New York) was an American politician from New York .\nPenny Lernoux. Lernoux was born into a comfortable Roman Catholic family in California and excelled in school .\nSerge Postigo. Immediately after his arrival, Postigo developed a strong interest in the theater industry .\nMary Lou Munts. Born in Chicago, Illinois, Munts graduated from Swarthmore College .\nMitra Tabrizian. Born in Tehran, Iran, Tabrizian studied at the Polytechnic of Central London in the 1980s .\nZeng Fanyi. Zeng Fanyi (; born January 1968 in Shanghai) is stem cell scientist and professor at Shanghai Jiao Tong University (SJTU) medical school .\nRani Price. Rani Price, born Rani Khanijau (born 29 January 1970, Liverpool) is a children's television presenter who has presented a variety of children's shows for CBBC Channel, Disney, Channel 5 and Nickelodeon .\nLorne Resnick. Lorne Resnick (born May 16, 1961) is a Los Angeles based photographer who was born and raised in Toronto, Canada .\nFabrizio Marrella. Fabrizio Marrella, born in Venice (Italy), is Professor of International Law and of International Business Law at the University of Venice .\nMónica Estarreado. Mónica Estarreado (born 29 June 1975 in Madrid, Spain) is a Spanish actress of Spanish Origen (palurdos! ) .\nCatherine Wellesley, Duchess of Wellington. The daughter of Edward Pakenham, 2nd Baron Longford and the former Catherine Rowley, she was born Catherine Pakenham on 14 January 1773 in Dublin, Ireland .\nOliver Lieb. Oliver Lieb (born December 31, 1969, Frankfurt, Germany) is a German electronic music producer and DJ Lieb is known to have more than a dozen aliases with over 200 productions and remixes in various electronic genres such as, trance, house, and techno .\nJennifer Clulow. Born in Grimsby, Clulow worked as a continuity announcer and newsreader for Westward Television from the late 1970s until 1981 .\nRegina Sarfaty. Born in Rochester, New York, Sarfaty grew up in Brooklyn, New York .\nWilliam C. Clark. William C Clark (born 20 December 1948 in Greenwich, Connecticut) is an American ecologist and environmental policy analyst, and Harvey Brooks Professor of International Science, Public Policy and Human Development at the John F Kennedy School of Government, Harvard University .\nLéonce Alloy. Léonce Alloy, born in Paris in 1875, died 1949, was a French medallic sculptor and engraver .\nW. T. Pfefferle. WT Pfefferle is an author and poet born in Hamilton, Ontario, Canada, but who was based in Texas for many years .\nTorgeir Micaelsen. Torgeir Eikstad Micaelsen (born 20 May 1979 in Bergen) is a Norwegian politician for the Labour Party .\nJoseph Bennett. Bennett was born at Grimsby, the son of William Bennett and his wife Ann .\nFrederick Gunton. Frederick Gunton, born 1813 in Norwich, and died 1888 in Chester, was an English Organist .\nZoran Popovich. Born in Akron, Ohio, Popovich was in the United States Air Force from 1951--53, and thereafter received a BA from the University of Pittsburgh in 1954, and an LLB from the University of Pittsburgh Law School, 1957 .\nÁngel Garma. Born in Spain of a Basque family, Garma studied medicine in Madrid .\nPernille Rose Gr%C3%B8nkj%C3%A6r. Pernille Rose Grønkjær (born in 1973 in Denmark) is a Danish film director .\nMohammed Loay Bayazid. Born in Syria, Mohammed Loay Bayazid is an American citizen alleged to have been a founding member of al-Qaeda, although he has cooperated with American authorities and claims his role in the group has been over-stated .\nGraph Nobel. Graph Nobel, born in Toronto to Trinidadian parents, was exposed to the musical styles of parang and calypso and soca of the Trindadian culture, as well as reggae music .\nRobert van der Zant. Robert van der Zant (born February 2, 1975 in Brisbane, Queensland) is a former medley swimmer who competed for Australia at the 2000 Summer Olympics in Sydney .\nEdward Duyker. Edward Duyker (born 21 March 1955) is an Australian historian and author born in Melbourne, Victoria, to a father from the Netherlands and a mother from Mauritius .\nBoris Grushin. Boris Andreevich Grushin (; 2 August 1929, Moscow -- 18 September 2007, Moscow) was a well known Soviet and Russian philosopher, sociologist and historical and sociological scientist .\nSumalee Montano. Sumalee Montano (born: 1972) is an actress .\nJuan Alfon. Juan Alfon, born at Toledo, painted, in 1418, several altar-screens for the cathedral of that city, which are still preserved .\nClaude Bourgelat. Bourgelat was born at Lyon .\nHenri de Contenson. Henri de Contenson (born 4 March 1926, in Paris), is a French Archaeologist and was Research Director at CNRS, The Centre National de la Recherche Scientifique (National Center for Scientific Research), a research organization funded by France's Ministry of Research .\nMorton Estrin. Morton Estrin, the noted American pianist, was born in Burlington, Vermont in 1923 .\nYasir Butt. Yasir Butt, (born July 3, 1988 in Lahore) is a professional squash player who represented Pakistan .\nCarlo Emery. Born in Naples, Carlo Emery was professor of Zoology at the University of Bologna .\nMagnus Rosén. Klas Magnus Rosén is a Swedish musician, born 1963 in Gothenburg, and is best known for being the bassist of the Swedish band HammerFall during the years 1997-2007 .\nAlan Aboud. Alan Aboud, graphic designer and creative director, was born in Dublin, Ireland on 13 May 1966 .\nZoltan Kósz. Zoltán Kósz (born November 26, 1967 in Budapest) is a Hungarian water polo player, who played on the gold medal squad at the 2000 Summer Olympics .\nAlistair Elliot. Alistair Elliot (born 13 October 1932 Liverpool) is a British poet and translator .\nGeorge Fisher. Born in Franklin, Massachusetts, Fisher attended the common schools and Brown University, Providence, Rhode Island .\nCleve Chaffin. According to the Thirteenth Census of the United States in 1910, a Cleve Chafin, who was born in Kentucky and aged 22, was a prisoner at the city jail in Cabell County, West Virginia at the time of the census .\nSal Cannella. Sal Cannella (b. 1943 in Newark, New Jersey) is an American politician from California and a member of the Democratic party .\nSherry Kramer. Sherry Kramer is an American playwright, born in Springfield, Missouri .\nHendrick Andriessen. He was known as Mancken Heyn, or crippled Hein, though his still-life paintings were highly regarded and weren't at all crippled .\nCarl Herman Kraeling. Carl Herman Kraeling (1897--1966), theologian, historian, and an American archeologist; born in Brooklyn on March 10, 1897 and died in New Haven in 1966; he is known for its publications on the synagogue and the Christian chapel of Doura Europos .\nAdolphus Drucker. Charles Gustavus Adolphus Drucker (born May 1, 1868, Amsterdam, died December 10, 1903, New York City) was a Conservative Member of Parliament for Northampton .\nEileen O'Keeffe. Eileen O'Keefe (born 31 May 1981 in Kilkenny) is a former female hammer thrower from Ireland .\nDeyan Vatchkov. Deyan Vatchkov (born April 8, 1979, Sofia) is a Bulgarian operatic bass, .\nAndré Léri. André Léri (1875 - 8 September 1930) was a French neurologist who was born in Paris .\nNicolás Antonio de Arredondo. Nicolás Antonio de Arredondo (1740 -- id 1802) was a Spanish soldier and politician born in Madrid .\nAaron of Lincoln. Aaron of Lincoln was an English Jewish financier (born at Lincoln, England, about 1125, died 1186) .\nMartin Jervan. Martin Jervan (May 13, 1891 Tallinn -- October 15, 1942, Chelyabinsk) was an Estonian Major General and medical doctor .\nPankaj Dharmani. Pankaj Dharmani (born 27 September 1974, in Delhi, India) is a former Indian cricketer .\nNick Dranias. Nick Dranias (Born in Chicago, IL in 1971), is an attorney and the director of the Joseph and Dorothy Moller Center for Constitutional Government at the Phoenix, AZ think tank the Goldwater Institute .\nJohn Abram. Born in England, Abram became interested in music when he was six; he began composing in his teenage years .\nLaurent Petitguillaume. Laurent Petitguillaume (born on 21 February 1960 in Tours) is a French radio and television host .\nWalter J. Mahoney. Walter J Mahoney (March 10, 1908 Buffalo, New York - March 1, 1982) was an American lawyer and politician .\nWilliam Buik. Buik was born on 13 May 1824 in Dundee, Scotland of Andrew Buik and Elizabeth (or Elspeth) nee Edward .\nFrank J. Webb. Born in Philadelphia on March 21, 1828, Webb was an active part of the city's community of free African Americans by the time he married in 1845 .\nWilliam Garnett. Garnett, born in London on 13 Nov .\nSylvester Ahola. Sylvester Ahola (May 24, 1902 -- 1995), a.ka Hooley, was a classic jazz trumpeter and cornetist born in Gloucester, Massachusetts .\nPetras Geniušas. Petras Geniušas (born 1961 in Vilnius) is a Lithuanian classical pianist .\nJoy Katz. Joy Katz (born 1963 Newark, New Jersey) is an American poet, who was recently awarded a 2011 National Endowment for the Arts Fellowship for Poetry .\nMichael Khodarkovsky. Michael Khodarkovsky (Odessa, USSR, July 21, 1958) is FIDE Senior Trainer and Chess Master, was born in Odessa, Ukraine on July 21, 1958 .\nArthur N. Martin. Arthur N Martin (August 31, 1889 -- 1961) was a Canadian painter, born in Toronto, Ontario .\nShibley Telhami. Telhami was born into an Arab family in Israel and has spoken on his experience as an Arab Israeli at the Palestine Center .\nJim Berry. Jim Berry (born 15 June 1945 in Oklahoma) is a chess expert and President of the United States Chess Federation .\nJoshua Toulmin Smith. Born in Birmingham as Joshua Smith, he moved to London in 1835 and pursued a career in law, studying at Lincoln's Inn .\nAlain Boire. Born in Montreal, Quebec, Boire was a Bloc Québécois member of the Canadian House of Commons .\nYash Daryanani. Yash Daryanani (born 1981 Chennai (then Madras)) is a Surinamese swimmer and coach .\nMarty Radovanic. Born in Cleveland, Ohio, Marty joined WJAC in 1974, after previous jobs on radio .\nSara Badr. Sara Badr (born June 27, 1987 in Cairo) is a professional squash player who represented Egypt .\nNorbert Wissing. Norbert Wissing (born 18 May 1959, Amsterdam) is a Dutch composer of chamber music, orchestral music, music for theatre and classical music .\nSergey Kozlov. Sergey Kozlov (born June 15, 1964 Moscow) is a prominent award-winning American cinematographer .\nMichael Armstrong. Born in France, Armstrong studied law at Cambridge University and practised as a barrister before embarking on a military career .\nCharles Crawford. Charles Crawford (30 August 1897 Nashville, Tennessee -- 1 June 1958 Calhoun, Georgia) was an American racecar driver .\nLuděk Frýbort. Luděk Frýbort, born 1933 in Prague, Czechoslovakia, German writer and author living in Hannover, Germany .\nFrédéric Durieux. Frédéric Durieux (born February 27, 1959, Paris) is a noted French composer of orchestral, vocal and chamber works .\nFabian Francis. Born in Darwin, Francis grew up playing both rugby league and Australian rules football .\nJan Szyszko. Jan Szyszko (born April 19, 1944 in Stara Miłosna, a part of Warsaw) is a Polish politician .\nNathalie De Vos. Nathalie De Vos (born 9 December 1982 in Ghent) is a Belgian long-distance runner who specializes in the 5000 and 10,000 metres .\nGeorge Stone. Born in Fulham, Stone studied at the London School of Economics and joined the Independent Labour Party (ILP) .\nAndy King. Andy King, born in Vancouver, British Columbia, is also known as Ace King, and Dick Van Gunn .\nJohn Randall Reding. Born in Portsmouth, New Hampshire, Reding attended the common schools .\nPeter F. Donnelly. Born in Lynn, Massachusetts, Donnelly graduated from Boston University and moved to Seattle in 1964 as a Ford Foundation management fellow to work with the fledgling Seattle Repertory Theatre as the first managing director and later as producing director, during his 21 year tenure .\nAnton Foljambe. Anton Foljambe (b. 1972 in Christchurch) is a former Chairman of the National Democrats Party (NDP) in New Zealand .\nBertie Felstead. Felstead, who was born in London in October 1894, was called to action earlier in 1915 and went to the battlefields of France with the 15th (London Welsh) Battalion .\nMary Cecil Allen. Mary Cecil Allen (2 September 1893 Melbourne - 7 April 1962 Provincetown) was an artist, writer and lecturer .\nKazimierz Flatau. Kazimierz Flatau (11 July 1910 in Warsaw -- 25 July 2000 in Poznań) -- Polish harpsichordist, music critic, physicist, translator, and astrologist .\nEdward Schoeneck. Edward Schoeneck (August 1, 1875 Syracuse, Onondaga County, New York - June 22, 1951 Syracuse, Onondaga County, New York) was an American lawyer and politician .\nNeal Peters McCurn. Neal Peters McCurn (b. 1926 in Syracuse, NY) is a federal judge for the US District Court, Northern District of New York .\nAlan MacDonald. Alan MacDonald (born in 1958 in Watford) is a children's writer living in Nottingham, England .\nAlby Why. Alby Why, born in Sydney, Australia, was a rugby league player for the South Sydney Rabbitohs in the NSWRL 1930 season .\nBen Nicholas. Benjamin Nicholas (born 10 December 1987, in Adelaide, Australia) is an Australian actor .\nMichelle Rogers. Michelle Rogers (born 21 January 1976 in Salford) is a British judoka, who competed at the 2008 Summer Olympics in the 78kg class .\nMark Gosling. The son of labourer Samuel Gosling and Hannah Nelms, Mark Gosling was born on 7 August 1886 in Birmingham, England .\nMichel Frutschi. Michel Frutschi (born on 6 January 1953 in Geneva - 3 April 1983) was a Grand Prix motorcycle road racer from Switzerland .\nGraham Doyle. Graham Doyle is an Irish soccer player who was born in Dublin on 19 January 1974 .\nAnne Audain. Anne Audain (born 1 November 1955 in Auckland) is a New Zealand middle and long distance athlete, competing in three Olympic Games .\nEugene A. Toepel. Born in Bangor, Wisconsin, Toepel graduated from the University of Wisconsin Law School in 1939 .\nBenjamin Castleman. Benjamin Castleman (born May 17, 1906, Everett, Massachusetts; died June 1982, Massachusetts) was an American pathologist best known for the eponymous disease which is named after him, Castleman's disease .\nHarry W. Wellford. Born in Memphis, Tennessee, Wellford earned a bachelor's degree in 1947 from Washington and Lee University and a law degree in 1950 from Vanderbilt University Law School .\nAlbertus Jonas Brandt. Albertus Jonas Brandt, born at Amsterdam in 1788, was a scholar of J E Morel, after whose death, in 1808, he passed two years with G van Os He painted dead game, fruit, and flowers .\nVictor Krasin. Victor Krasin (also spelled Viktor Krasin; Russian: Виктор Александрович Красин; born in Kiev, August 4, 1929) is a Russian human rights activist, economist, a former Soviet dissident and a political prisoner .\nOmar Abdel Aziz. Omar Abdel Aziz, (born September 11, 1983 in Cairo) is a professional squash player .\nJoe Ascione. Joe Ascione (b. March 14, 1961, Brooklyn, NY) is an American jazz drummer .\nLiam McMahon. Liam McMahon is an Actor, born in Ireland .\nMartin Firrell. Martin Firrell (born April 4, 1963, Paris, France) has been described variously as a cultural activist, a campaigner, a public artist, or benevolent provocateur, stimulating debate in public space to promote positive social change .\nIgnacio Matte Blanco. Born in Santiago, Chile, Matte Blanco was educated in Chile, and before leaving Chile for London, 'was in analysis with Fernando Allende Navarro, Latin America's first qualified psychoanalyst .\nMarc Hostert. Born in Luxembourg in 1965, Marc Hostert attended the European School Luxembourg .\nTom Kazas. Tom Kazas (b. 1965 in Sydney, Australia) is a composer/song writer, record producer/sound engineer and film maker .\nMichael Brennan. Michael Brennan, born in Sydney in 1973, is an Australian poet based in Tokyo .\nClinton D. McKinnon. McKinnon was born 1906 in Dallas, Texas to Dr John and Tennie McKinnon .\nRonnie Le Drew. Ronnie Le Drew is a puppeteer who was born in Toronto, Canada and trained at the Little Angel Theatre, London under John Wright .\nSimon Gerada. Simon Gerada was born and brought up in Melbourne, Australia and began playing at the age of 9 after he witnessed his father win a shopping center tournament .\nMichael Greco. Internet rumours claim he was born in Dunbar, Scotland, but Greco himself states that this is false, and that he grew up in London .\nJames Travers. Born in Hamilton, Ontario, Travers began his journalism career in 1972 with the Oakville Journal Record in Oakville .\nCarol Graham. Graham, who was born in Lima, Peru, is the mother of three children .\nValli Valli. Valli Valli, born Valli Knust (11 February 1882 -- 4 November 1927), was a musical comedy actress and silent film performer born in Berlin, Germany .\nFrancis Asbury Baker. Francis Asbury Baker (March 30, 1820-April 4, 1865) Born in Baltimore, Maryland, the son of prominent physician and University of Maryland Professor of Medicine, Baker graduated from Princeton University in 1839, was ordained as an Episcopal Deacon in the early 1840s and seemed destined for a career as a respected Protestant clergyman .\nRafael E. Martinez. Born in Cuba, Martinez made a career out of medical malpractice and health law .\nArthur Barnett. Born in Dunedin, Barnett was the son of William Barnett, an auctioneer, and one of eleven children .\nAntonia Okonma. Antonia Okonma (born 24 July 1984 in London, England) is a British actress of Nigerian descent .\nNoush Skaugen. Born in Sweden to a Swedish mother and Iranian father, Skaugen was raised in London and went on to study Law at Warwick University .\nRoger Mears. Roger Mears (born March 24, 1947, Wichita, Kansas), is a former off-road driver who also drove in the USAC and CART Championship Car series .\nMartin Gero. Born in Switzerland, Gero spent much of his childhood in Ottawa, Ontario .\nJohn Duncombe. The only child of William Duncombe, he was born in London .\nChris Welsby. Chris Welsby (born in 1948 in Exeter, Great Britain) is a British experimental filmmaker, author of film installations, and multimedia artist .\nHarry Freedman. Born in London in 1950, Freedman has worked as CEO in a variety of SMEs as well in the voluntary sector .\nBobby McDonald. Bobby McDonald was a Scottish footballer who was born in Aberdeen who played in the left back position .\nThomas Scott. Thomas Scott (1739 -- March 2, 1796) was an American lawyer and politician who was born in Chester County in the Commonwealth of Pennsylvania .\nLuca Princiotta. Luca Princiotta, born July 12, 1982 in Como, is an Italian guitarist .\nChristine Melnick. Born in Winnipeg, Melnick received a Bachelor of Arts degree from the University of Manitoba and subsequently received a Master's Degree in Library and Information Science from Dalhousie University in Nova Scotia .\nPhilippa Perry. Philippa Perry was born in 1957, in Warrington, Cheshire, and educated at boarding school and at a Swiss finishing school .\nThomas Webley. Thomas Webley (born 2 March 1983, Bristol) is an English cricketer .\nLuigi Attademo. Luigi Attademo is an Italian classical guitarist born in Naples in 1972 .\nKarolina Kosińska. Karolina Kosińska (born 17 June 1986 in Warsaw) is a Polish professional tennis player who is, as of 1 March 2010, ranked No 271 .\nJacques Autreau. Jacques Autreau, a French portrait painter and dramatic poet, was born in Paris in 1657 .\nWerner Ploberger. Werner Ploberger (born 5 August 1956 in Vienna) is an Austrian economist .\nEphraim Hertzano. Ephraim Hertzano was a board game designer born in Romania .\nThomas Davidson. Thomas Davidson (28 August 1828 Nottingham, England -- 18 February 1874 Philadelphia) was a naval constructor for the United States Navy .\nEileen Beldon. Eileen Beldon was born on 12 September 1901 in Bradford, West Yorkshire to parents Albert Beldon and Bertha Nicholson .\nEdward Alfred Cowper. Edward Alfred Cowper (10 December 1819 London -- 9 May 1893 Rastricke, Weybridge, Surrey) was a British mechanical engineer .\nJohn Tierney. Born in Derry, Tierney worked as a tool setter before joining the Social Democratic and Labour Party (SDLP) .\nNorman Macdonnell. Norman MacDonnell (November 8, 1916, in Pasadena, California -- November 28, 1979, in Burbank, California) was an American radio and television producer best known for co-creating (along with John Meston) and producing the Western radio and television series, Gunsmoke .\nHeinrich Hirschsprung. Heinrich Hirschsprung was born on 7 February 1836 in Copenhagen inro a family of German-Jewish decent .\nDavid Vaughan. David Vaughan (born 17 May 1924, London) is the archivist for the Merce Cunningham Dance Company, as well as a dance writer and critic, and a scholar on the work of choreographer Frederick Ashton .\nGregory Woods. Gregory Woods (born in 1953 in Egypt) is a British poet who grew up in Ghana .\nSymeon Cosburn. Symeon Cosburn is an accomplished jazz singer born in London, England .\nJoanne Fox. Joanne Fox (born 12 June 1979 in Melbourne, Victoria) is an Australian water polo player from the gold medal squad of the 2000 Summer Olympics .\nFederico Cervelli. Federico Cervelli (1625 --before 1700) was an Italian painter, born in Milan, who established his workshop in Venice at the age of about thirty .\nAl Lerner. Al Lerner (b. 1919 in Cleveland, Ohio) is an American pianist, composer, arranger, and conductor from the Big band era .\nRowley Leigh. Born in Manchester, Leigh went to Clifton College and Christ's College, Cambridge in 1968 .\nParvaz Mirza. Born in Birmingham, Mirza played two games for Warwickshire's second team in 1990 before appearing for Worcestershire's second team later that summer .\nMark Mitchell. Mitchell was born on Auckland's North Shore and attended Rosmini College .\nStuart Pearson Wright. Stuart Pearson Wright (born 1975, Northampton) is an award winning English artist who works mainly in paint .\nBrett Warton. Brett Warton born 4 June 1975 in Sydney, New South Wales, Australia is a former rugby league player .\nFredrik Liliegren. Liliegren was born 1969 in Lund, Sweden .\nGottlob Christian Storr. Gottlob Christian Storr (September 10, 1746 -- January 17, 1805) was a German Protestant theologian born in Stuttgart .\nDonovan Blake. Donovan Livingston Blake (born 4 December 1961 in Jamaica) is an American cricketer .\nPaula Malai Ali. Paula Malai Ali Othman (born 3 March 1974, in Brunei) is a television personality from Brunei .\nJoe Zakas. Joe Zakas (born November 7, 1950, Chicago, Illinois) is a Republican member of the Indiana State Senate representing the 11th district where he has served since 1982 .\nJason Colwell. Jason Colwell (born 31 January 1974 in Dublin) is an Irish former football player .\nJoachim Martin Falbe. Joachim Martin Falbe, a portrait painter, born at Berlin in 1709, was instructed by Harper and A Pesne .\nMalcolm Cecil. Malcolm Cecil (born 9 January 1937, London) is a British jazz bassist and Grammy Award-winning record producer .\nLawrence Cherney. Born in Peterborough, Ontario, Cherney is the brother of composer Brian Cherney .\nMorris Schwartz. Born in Russia, Schwartz went to America in 1906 .\nBurkey Belser. The Belser family has been long-established in the South, with Christian Belser (1752--1812) arriving in Charleston from Baden-Baden, Duchy of Württemberg in 1787 .\nCarly Milne. Born in Edmonton, Alberta, Milne started writing professionally at age 14 Two years later, she was hired by The Calgary Herald, as a columnist for ``20 Below'', which was geared to discussing teen issues .\nBill Utterback. Bill Utterback ( 1931 - 2010 ),was born on January 5, 1931 Arlington Heights, Illinois is an illustrator and caricature artist .\nMarcello Vernola. Marcello Vernola (born on 4 March 1961 in Bari) is an Italian politician and Member of the European Parliament for Southern with the Forza Italia, part of the European People's Party and sits on the European Parliament's Committee on the Environment, Public Health and Food Safety .\nBarbara Clark. Barbara Clark (born September 24, 1958 in Coronation, Alberta) is a former international freestyle swimmer from Canada, who won the bronze medal in the Women's Women's 4x100 Freestyle Relay, alongside Becky Smith, Gail Amundrud, and Anne Jardin .\nJoseph Beer. Joseph Beer (sometimes written Boer born 1744 at Grünwald in Bohemia, died at Potsdam 1811) was one of the first internationally famous clarinet virtuousos, with connections to many major composers of the era .\nHumphrey Hopkin. Hopkin was born at Nottingham .\nAlbert Vizentini. Albert Vizentini was a French violinist, composer, conductor and music writer, born in Paris on 9 November 1841, and died there on 21 October 1906 .\nHerbert Bowden, Baron Aylestone. Born in Cardiff, Wales, Bowden was a councillor on Leicester City Council 1938--45 and president of Leicester Labour Party in 1938 .\nEnid Bibby. Dame Enid Bibby, DBE (born 8 February 1951, Sheffield, Yorkshire) is a British educator who garnered notability for her role as headteacher in improving Wood Green High School in Wednesbury, West Midlands, England .\nChris Lyttle. Born in East Belfast, Lyttle studied at Queen's University Belfast and Harvard University before working as the Research Assistant for Naomi Long of the Alliance Party of Northern Ireland .\nÉmile Lévy. Émile Lévy (August 29, 1826 Paris - 1890) was a French genre and portrait painter .\nFreddy Marshall. Freddy Marshall, born in Caracas, Venezuela (November 7, 1959), is a musician and songwriter specializing in the genre known as Heavy Metal .\nTheodore G. Garfield. Born in Humboldt, Iowa to George S and Mary (White) Garfield, he received a Bachelor of Arts degree from the University of Iowa in 1915 and his law degree from the University of Iowa College of Law in 1917 .\nCathy Sisler. Cathy Sisler is an American artist, born in Wisconsin .\nRusty Egan. Rusty Egan (born 19 September 1957, London) was the drummer for the British new wave band, The Rich Kids .\nOtto Mainzer. Otto Mainzer (November 26, 1903 in Frankfurt am Main, † 28 June 1995 in New York City) was a German-American writer .\nFrançoise Romand. Françoise Romand, born in Marseilles, is a French moviemaker .\nIraj Kalantari Taleghani. Iraj Kalantari Taleghani is a renowned contemporary Iranian architect, famous for his contribution to the modernization of Iranian architecture .\nHelen Thomas Dranga. Helen Thomas Dranga (1866--1940), who is also known as Carrie Helen Dranga, was a painter who was born Carrie Helen Tufts in Oxford, England .\nLi Lei. Li Lei (; born 24 June 1984 in Beijing, China) is a Chinese baseball player who is a member of Team China at the 2008 Summer Olympics .\nRandolph Runnels. Born in Texas probably in 1830, Randolph Runnels was a nephew of Hiram Georges Runnels .\nJeremy Current. Jeremy Current (Born December 25, 1985 in Charlotte, NC) is an American songwriter, musician, and band leader .\nFuat Güner. He was born on 1 April 1948 in Istanbul, Turkey to a renowned photographer father, Sami Güner .\nWilliam Reed. Born in Montreal, Reed studied the organ in his youth with Romain-Octave Pelletier I and Dominique Ducharme .\nArthur Anae. Anae is Samoan, although he was born in Fiji .\nJacques Cartier. Cartier built a gristmill so he could produce flour .\nAlexander Yossifov. Alexander Yossifov (born 12 August 1940, Sofia) is a Bulgarian composer and conductor .\nAlireza Sheikhattar. Alireza Sheikhattar (born 9 June 1952 in Tehran) is an Iranian diplomat and current ambassador of the Islamic Republic of Iran to Berlin .\nMartin Brown. Martin Brown is an Australian artist who was born in Melbourne and from a very early age, could draw .\nVictoria LePage. Victoria Le Page (born in 1919 in Melbourne, Australia) is an Australian spiritual writer .\nNabil Seidah. Nabil G Seidah, (born 1949) is a Québécois scientist .\nJames Macdonald. Macdonald was born on 8 February 1862 in Aberdeen and was educated at Aberdeen Grammar School and the University of Aberdeen .\nNigel Preston. Nigel Preston (born April 4, 1963, London, England, died April 1, 1992) was a British drummer .\nWilliam Hardy. A younger brother of Thomas Duffus Hardy, he was born in Jamaica on 6 July 1807, and came to England at the same time as his brother .\nRichard S. Whaley. Born in Charleston, South Carolina, Whaley attended the Episcopal High School, in Alexandria, Virginia, and was graduated from the law department of the University of Virginia at Charlottesville, where he was a member of St Anthony Hall, in 1897 .\nCillian Vallely. Cillian Vallely is an Irish musician, born in Armagh, Northern Ireland .\nAlfred Darjou. Henri Alfred Darjou, a French painter and draughtsman, born in Paris in 1832, was the son of Victor Darjou, a portrait painter of some ability .\nMedo Martinello. Medo Martinello (born December 6, 1935) is a former Professional box lacrosse player, coach, and ice hockey referee, born in Windsor, Ontario, Canada of Italian descent .\nGeorges Hanna Sabbagh. Georges Hanna Sabbagh was born at Alexandria in Egypt .\nDavid Lister. David Lister (born 1930, Grimsby, Lincolnshire) is an eminent British origami historian .\nEly Devons. Ely Devons (29 July 1913 -- 28 December 1967), an economist and statistician, was born in Bangor, Gwynedd North Wales, lived most of his life in Manchester and died after a long illness at St Thomas Hospital in London .\nKim Kuusi. Kim Kuusi (born 28 December 1947 in Helsinki) is a Finnish composer best known for his advertising jingles .\nMarek Muszyński. Marek Muszyński (born 23 January 1947 in Lublin) is a Polish politician, a member of Prawo i Sprawiedliwość (Law and Justice) party .\nPeter Gregg. Peter Gregg (born March 6, 1951, Kent, Ohio) is a producer and musician .\nRobin Hofman. Robin Hofman (born 3 May 1986 in Rotterdam) is a Dutch footballer who currently plays for Excelsior Rotterdam .\nRufus Phillips. Rufus Phillips, Born in rural Virginia and educated at Yale, was a young C.IA officer in Saigon in the 1950s .\nJohn Wainwright. John Wainwright is a computer scientist, born in Australia, who has pioneered the development of pure object-based computer languages .\nEugène Brieux. Eugène Brieux (19 January 1858 -- 6 December 1932), French dramatist, was born in Paris of poor parents .\nAlexander Randall. Born in Annapolis, Maryland, Randall was educated under private tutors .\nHubert Buchberger. Hubert Buchberger (born 1951 Frankfurt) is a German violinist, conductor and music university teacher .\nMargaret Gwenver. Born as Margaret Guenveur on October 10, 1926 in Wilmington, New Castle, Delaware, US, she was best-known for her role as Dr Sedgwick on the long-running daytime soap opera, Guiding Light .\nDonald B. Cole. Donald B Cole born 31 March 1922 in Lawrence, MA is professor emeritus at Phillips Exeter Academy, New Hampshire, and the author of a number of books on early American history, including Martin Van Buren and the American Political System as well as The Presidency of Andrew Jackson .\nPaul Pope. Born in Philadelphia, Pope grew up in Bowling Green, Ohio, with stops in Columbus, Ohio, San Francisco, and Toronto in-between; Pope now lives and works in New York City .\nRem Urasin. Rem Urasin (born 1976, Kazan) is a Russian pianist .\nFranz Ludwig Catel. Franz Ludwig Catel was born at Berlin in 1778 .\nSamuel Löw Brill. Samuel Löw Brill (September 14, 1814 -- April 8, 1897) was a Hungarian rabbi and Talmudical scholar born in Budapest .\nLene B%C3%B8rglum. Lene Børglum (b. 1961 in Denmark) is a Danish film producer who has worked on several important films in a variety of genres, including experimental shorts, hardcore porn videos and theatrical feature films such as Lars von Trier's Golden Palm-nominated Dogville .\nAndrea Gallandi. Andrea Gallandi (born at Venice, 7 December 1709; died there 12 January 1779, or 1780) was an Italian Oratorian and patristic scholar .\nThomas Elliot Bowman III. Bowman was born and grew up in Brooklyn, New York, and graduated from Harvard College in 1941 .\nThomas R. Fitzgerald. Born in Chicago, Fitzgerald attended Loyola University Chicago before enlisting in the United States Navy .\nThomas Taylor. Born in London, Taylor was educated at St Paul's School, and devoted himself to the study of the classics and of mathematics .\nPeter Cooper. Peter Cooper (born August 1960, Salisbury, UK) is an Internet publisher, financial journalist and author living in Dubai and was a partner in the successful dot-com publisher AMEinfo.com sold to Emap plc in 2006 .\nJimmy Greenspoon. Jimmy Greenspoon (born February 7, 1948, Los Angeles, California) is an American keyboard player, best known as a member of the band, Three Dog Night .\nAlessio Secco. Alessio Secco (born 5 January 1970 in Turin) was an Italian director of football for the Italian Serie A club Juventus .\nArnold Zable. Zable was born on 10 January 1947 in Wellington, New Zealand to Polish-Jewish refugee parents .\nRobert Bourne. Robert Bourne (born 16 May 1950) is a British property developer, entrepreneur and philanthropist who was born in London, UK Over the past 30 years Bourne has amassed a vast property and leisure empire in London and France and has achieved wide recognition for his patronage of the dramatic arts with his wife, theatre impresario, Sally Greene OBE .\nEdmund Fetting. Edmund Fetting (10 November 1927, in Warsaw, Poland -- 30 January 2001 there) was a Polish movie and theatrical actor and occasional singer .\nJohan Reuter. Johan Reuter (born 1969 in Copenhagen) is a Danish baritone and opera singer .\nWilliam Keasberry. The son of another William Keasberry, by his marriage to Catherine Liddell, he was born in London .\nJohn Norton Pomeroy. John Norton Pomeroy (1828--1885) was an American lawyer and legal writer, born in Rochester, N Y., where he practiced law for many years following his graduation from Hamilton College (1847) and his admittance to the state bar in 1851 .\nNadia Jebril. Nadia Jebril, born 1982 in Sweden to Palestinian parents of Jordanian extraction, is a journalist and TV host at the Swedish television (SVT), Muslim profile .\nRyan Burr. Ryan Burr (born March 17, 1972, Pittsburgh, Pennsylvania) is a sports television journalist for ESPN .\nFrancesco Musotto. Francesco Musotto (born on 1 February 1947 in Palermo) is an Italian politician and Member of the European Parliament for the Islands (elected for the first time in 1999) .\nMartin Vari. Martin Vari (* February 27, 1982 in Argentina) is a professional kitesurfer and two times PKRA freestyle world champion in kitesurfing (2001 and 2003) .\nCarlos Cosías. Carlos Cosías is a Spanish operatic tenor born in Barcelona, Spain .\nBarrie Thorne. Born in Utah, Thorne attended Stanford University, receiving her bachelor's degree with Great Distinction and with Honors in Anthropology and Honors in Social Thought and Institutions in 1964 .\nKate Richardson. Kate Richardson (born 5 November 1973 in Melbourne, Victoria) is an Australian athlete, who represented her native country at the 1996 Summer Olympics in the women's 5.000 metres .\nHyman I. Goldstein. Hyman I Goldstein (November 2, 1887 -- 1954) was an American physician and medical historian born in Baltimore, Maryland .\nPierre Cartellier. During the French Revolution Cartellier was part of a team of sculptors who worked on the church of Ste .\nLucius Vibullius Hipparchus. When Hipparchus was born, Athenais named him in honor of his maternal grandfather and paternal great grandfather .\nKemal Alispahić. Kemal Alispahić (born 1969 in Sarajevo, SR Bosnia-Herzegovina, SFR Yugoslavia) is a former Bosnian football player and now a manager .\nSerge Collot. Serge Collot (born 27 December 1923 in Paris) is a French violist and music educator .\nCarl Strehl. Carl Strehl (July 12, 1886 -- August 18, 1971) was a German educator born in Berlin .\nMichael E. Driscoll. Born in Syracuse, New York, Driscoll moved with his parents to the town of Camillus, Onondaga County, in 1852 .\nJ%C3%B8rgen Sigurd Lien. Jorgen Lien, who was born in Bergen to parents Terje Lien (father) and Inger Lise Lien (mother), had an early exposure to entrepreneurship .\nDebra A. Kemp. Debra A Kemp (b. March 7, 1957, Highland, Indiana) is an American author .\nRalph Schoenman. Born in Brooklyn, New York, Schoenman was educated at Princeton University but then left the US for Britain in 1958 .\nGerrard Wendell Haworth. Haworth also studied at the University of Michigan .\nMarion Stein. Born in Vienna, Stein was the daughter of musician Erwin Stein .\nMaurice Maunoury. Maurice Maunoury was a French politician born 16 October 1863 in Alexandria (Egypt) and died 16 May 1925 in Paris .\nValdo Spini. Valdo Spini (born January 20, 1946, Florence) is an Italian politician and writer .\nPeter Stetina. Peter Stetina (born 8 August 1987) in Boulder, Colorado is an American racing cyclist, who rides for UCI ProTeam  .\nTim McGill. Tim McGill (born June 24, 1979, in Chicago, Illinois) is a professional American football defensive tackle who is currently a member of the San Jose SaberCats .\nMichael Colgrass. Michael Colgrass (b. April 22, 1932, Chicago, Illinois) is an American-born Canadian musician, composer, and educator .\nVlad Georgescu. Born in Bucharest, Georgescu studied history at the University of Bucharest, and worked at the Romanian-Russian Museum until it was closed down in 1963, when he was transferred to the Institute of Southeastern European Studies in Bucharest .\nNeil Williams. Neil Williams was an aerobatic pilot born in Canada .\nDiego Carranza. Diego Carranza (born at Mexico, 1559; died at Tehuantepec, date unknown) was a Mexican Dominican missionary .\nAugustus A. Bird. In 1836, Bird moved to Wisconsin Territory .\nGloria Mann. Gloria Mann was an American pop singer born in Philadelphia, Pennsylvania .\nOrsamus B. Matteson. Born in Verona, New York, Matteson attended the common schools .\nLars Jonsson. Lars Jonsson (born 27 June 1970 in Gothenburg) is a former tennis player from Sweden, who turned professional in 1988 .\nAbraham Garton. Unfortunately, very little is known about the personal life of Abraham ben Garton .\nErik Dammann. Erik Dammann (born 9 May 1931 in Oslo) is a Norwegian author and environmentalist, educated within advertising .\nSamuel S. Adams. Born in Lincoln, New Hampshire, as Samuel Sherman Adams, he was the son of Sherman Adams, who served as White House Chief of Staff for President Dwight D Eisenhower and as Governor of New Hampshire, and Rachel White .\nLaurent Boyer. Laurent Boyer (born on 23 January 1958 in Paris, France) is a French radio and television host .\nMichael Raedecker. Michael Raedecker (born May 12, 1963, Amsterdam) is a Dutch artist based in London .\nRobin Gillett. Born in London on Lord Mayor's Day, as it then was, on 9 November 1925, Robin Gillett was the only child of Captain Sir Harold Gillett, 1st Baronet MC FCA, who was Lord Mayor of London, 1958-59 .\nGordon Coppuck. Gordon Coppuck (b. 8 December 1936, Fleet, Hampshire) is a British racing car designer who was chief designer for McLaren and later worked for March and co-founded Spirit .\nMarilyn Shrude. Marilyn Shrude (born 1946 Chicago, Illinois) is an American composer of contemporary classical music and pianist, and Distinguished Artist Professor of composition at Bowling Green State University, since 1977 .\nRegina Maršíková. Regina Maršíková (born 11 December 1958 in Prague) is a former Czechoslovakian tennis player .\nStanley Sporkin. Born in Philadelphia, Pennsylvania, Sporkin received an AB from Pennsylvania State University in 1953, and an LLB from Yale Law School in 1957 .\nJuan Carlos González Zamora. Juan Carlos González Zamora (born June 24, 1968) is a FIDE chess Grandmaster from Mexico (he was born in Cuba but has Mexican citizenship) .\nSalvatore Sabella. Born in Sicily in 1891, Sabella became a butcher's apprentice as a young boy .\nGosia Piotrowska. Gosia Piotrowska is an actor born in Poland and raised in Australia .\nManola Saavedra. Manola Saavedra (born in 1936 in Spain) is a Spanish-born Mexican film and television actress, perhaps best known for her role in El bolero de Raquel (1957) .\nJohn Owens. John Owens (1790--1846), English merchant, was born in Manchester, England in 1790, the son of Owen Owens, a prosperous merchant who had come to Manchester from Flintshire .\nBarbara Strass. Barbara Strass (born 26 May 1974 in Vienna) is a former Austrian international team handball player, European Championship and World Championship bronze medalist and Olympic participant .\nJacques Benedict. Commonly known as Jacques Benedict, he was born in Chicago in 1879, and he studied architecture at the École des Beaux-Arts .\n%C3%81lvarez de Paz. Álvarez de Paz was a Spanish Jesuit mystic of the Society of Jesus, born at Toledo in 1560; died at Potosi, 17 January 1620 .\nAndrzej Kunert. Dr Andrzej Krzysztof Kunert (born 12 October 1952 in Warsaw) is a Polish historian and lecturer, specializing in the history of Polish resistance movement in World War II Since April 2010 he serves as the secretary general of the Council for the Protection of Struggle and Martyrdom Sites .\nJohn Molyneux. Born in Warrington, Lancashire, England, Molyneux began his career with Chester, breaking into the side early in 1949--50 in place of captain Eric Sibley .\nMaggie Fitzgibbon. Maggie Fitzgibbon, an Australian actress and singer, was born in Melbourne on 30 January 1929 .\nBruce Metcalf. Bruce Metcalf (born September 30, 1949 Amherst, Massachusetts) is an American artist who uses different materials like wood, metal, and plexiglass .\nJanet Ramsey Johnson. She was born Janet Ramsey Johnson in Adelaide, South Australia in 1914, one of two daughters of Peter and Jeanie Johnson .\nIen Ang. Born in Java, and educated in The Netherlands, Ang received her Doctorate in the Social and Cultural Sciences, from the University of Amsterdam in 1990 .\nBryan Dubreuiel. Bryan Dubreuiel is an American artist .\nRalf Wadephul. Ralf Wadephul, born 1958 in Berlin, is a German keyboardist/composer who collaborated with Tangerine Dream (Edgar Froese, Paul Haslinger) in the late 1980s on their first ``Melrose Years'' album Optical Race (1988) .\nJoseph Baggaley. Joseph Baggaley (c. 1884 -- 19 October 1918) was a trade unionist, born in England, who came to Regina, Saskatchewan, Canada with his wife and four children in 1911 .\nSandhya Sanjana. Sandhya Sanjana (); is a singer born in Mumbai, India .\nAlfred Mele. Born in Detroit, Michigan, Mele attended Wayne State University, and received his doctorate in philosophy from the University of Michigan in 1979 .\nMurray Esler. Professor Murray David Esler (born in 1944 in Geelong, Australia) is a clinical cardiologist and medical scientist, based at the Baker IDI Heart and Diabetes Institute and the Alfred Hospital in Melbourne, where he is the Associate Director of the Heart Centre .\nRyan Barton. Ryan Barton born in Australia is a rugby league player for the Brisbane Broncos in the National Rugby League .\nErnst Florian Winter. Ernst Florian Winter (born 16 December 1923 in Vienna) is an Austrian-American historian and political scientist, first director of the Diplomatic Academy of Vienna after World War II and chairman of the International Council of the Austrian Service Abroad .\nSalvatore Papaccio. Born in Naples on last decade of 1800, Salvatore Papaccio early began to demonstrate his predisposition to the music .\nRaymond Brown. Raymond Brown (born May 6, 1969 in Cambridge, Ontario) is a former backstroke swimmer from Canada .\nBruno Rubess. Brunis Rubess (born December 21, 1926, Riga, Latvia - died 23 December 2009) was a Latvian businessman .\nVivek Razdan. Vivek Razdan () (born August 25, 1969, Delhi) is a former Kashmiri Indian cricketer who played in 2 Tests and 3 ODIs from 1989 to 1990 .\nPete Winslow. He died in September 1972 of complications following surgery and was survived by his wife Jane Winslow and son, Peter Winslow, who died in a car accident in 1993 .\nTrevor Taylor. Born in Sheffield, the son of a garage owner from Rotherham, Taylor was the product of the later period of 500cc Formula 3 racing, initially using a Staride and later Cooper Norton .\nRichard Eddy. Richard Eddy, DD (21 June 1828 -- 16 August 1906) was an American Universalist clergyman, born at Providence, R I He was a chaplain of the Sixtieth New York Volunteers during the American Civil War .\nMichele Radosevich. Born in Minneapolis, Minnesota, Radosevich graduated from Marquette University in 1969 .\nCatherine Keller. Catherine Keller (born in 1953 in Paris) is a French artist and sculptor .\nRichard Cobbold. Richard Cobbold was born in 1797 in the Suffolk town of Ipswich, to John Cobbold (1745-1835) and Elizabeth (née Knipe) (1764-1824), a large and affluent family who made their money from the brewing industry .\nZhang Xueling. Zhang Xueling (born 7 May 1983 in Beijing, China) is a Singaporean table tennis player .\nWilliam Mackenzie McLeod. Born in Sydney, Nova Scotia, McLeod was educated at Sydney Academy and Dalhousie University .\nErna Paris. Erna Paris is a Canadian non-fiction author born in Toronto, Ontario .\nEdward Searing. Born in Aurora, New York, in Cayuga County, New York, Searing received his bachelors and masters degree from the University of Michigan .\nTheodore Pollock Ferguson. Ferguson was born on January 10 1853 in Mansfield, Ohio in Richland County, Ohio .\nPietro Delfino. Pietro Delfino, O.SB Cam., (born at Venice in 1444; died 16 January 1525) was an Italian Camaldolese monk, patristic scholar, theologian, abbot, and Superior General of his religious Order .\nGeorge Alexander Pearre. Born in Cumberland, Maryland, Pearre attended private schools, the Allegany County Academy at Cumberland, St James College near Hagerstown, and Princeton College .\nAlessandro Vollero. Born in Italy, Vollero emigrated with his family to the United States in 1909 and settled in Brooklyn .\nDiane Greene. Born in Rochester, New York, Greene received her bachelor's degree in mechanical engineering in 1976 from the University of Vermont, and earned a Master's Degree in Naval Architecture from MIT in 1978 .\nSy Landy. Born in Brooklyn, Landy studied at Brooklyn College, where he joined the third camp Trotskyist Independent Socialist League (ISL), led by Max Shachtman .\nMichio Ihara. Michio Ihara (born 1928, Paris) is a Japanese kinetic sculptor, educated in Japan who was influenced by the work of George Rickey .\nRafael Nieto Abeill%C3%A9. Rafael Nieto Abeillé, born in Cuba and educated in Spain, while serving as a prosecutor in Matanzas, Cuba, was appointed in 1896 as a trial judge in San Juan, Puerto Rico .\nEric Goldberg. Eric Goldberg (1890--1969) was a Jewish-Canadian painter, born in 1890 in Berlin, Germany .\nBaron Wormser. Baron Wormser (born 1948 Baltimore, Maryland) is an American poet .\nAsli Sungu. Asli Sungu (born 1975 Istanbul) is a German performance artist, and painter .\nEija Krogerus. Eija Krogerus (born 19 June 1932 in Helsinki) was a well known bowler in Finland .\nWilliam Hare. William Hare (born February 7, 1944, Leicester, UK) is a philosopher whose writings deal primarily with problems in philosophy of education .\nGaurav Keerthi. Gaurav Keerthi (born 2 April 1979, in India) is the former President of Debate Association Singapore .\nJohn Thorne. John Thorne is a culinary writer born in Quincy, Massachusetts who has written a number of best-selling books on gastronomy .\nKonrad Wasiela. Konrad Wasiela (born June 14, 1985, in Vancouver, British Columbia) is a professional Canadian football cornerback free agent .\nJeremy Holmes. Jeremy Holmes is a British psychiatrist, born in London in 1943 .\nDaniel M. Hausman. Daniel M Hausman (b. March 27, 1947, Chicago, Illinois) is a US philosopher .\nPeter Brown. Brown, born in Ireland immigrated to Newfoundland where he was a dealer and shopkeeper in the Conception Bay area .\nJanne Parviainen. Janne Parviainen, born 1973 in Finland, is a heavy metal drummer, who plays in the bands Sinergy, Barathrum and Ensiferum .\nEric Boniface. Eric Boniface (born November 2, 1969 in Paris, France) is a French footballer who played 10 matches in Ligue 1 for Sochaux in the 1998-1999 season .\nC%C3%A9sar de Oliveira. César de Oliveira (b. May 17, 1977, Porto) is a Portuguese composer .\nLeo Treitler. Leo Treitler (b. Jan. 26, 1931) is an American musicologist born in Dortmund, Germany, and is Distinguished Professor at the Graduate Center of the City University of New York .\nMoses Mason, Jr.. Born in Dublin, New Hampshire, Mason moved with his parents to Bethel, Maine, in 1799 .\nDenis McQuade. Denis McQuade (born 6 January 1951 in Glasgow) is a Scottish former footballer, who played for Partick Thistle, Hearts and Hamilton .\nNerses Yeritsyan. Nerses Yeritsyan (born February 23, 1971, Yerevan) is deputy president of the Central Bank of Armenia and former Minister of Economy .\nJohn Henry. John Henry (c. 1776 -- 1853) was a spy and adventurer of mysterious origins .\nAdrian Baker. Adrian Baker (born 18 January 1951, London) is an English singer, songwriter, and record producer .\nFritz Noll. Fritz Noll (August 27, 1858 - June 19, 1908) was a German botanist who was born in Frankfurt am Main .\nAdam Kowalczyk. Adam Kowalczyk is an American musician who was born in York, Pennsylvania .\nMegan Spencer. Born in 1966 in Australia, Spencer studied Speech pathology in Melbourne before becoming actively interested in film and radio .\nGeorge William Houghton. George William Houghton (born September 9, 1905, Perth, Scotland) was a prolific British golf writer and cartoonist .\nMarcus Dods. Marcus Dods (born 19 April 1918, Edinburgh; died 30 April 1984, Henley-on-Thames), was a British musician and composer .\nNicola Campogrande. Nicola Campogrande (born 9 October 1969 Turin) is an Italian composer, as well as a music journalist .\nMichael Falcon. Michael Falcon (born 21 July 1888 at Norwich, Norfolk; died 27 February 1976 at Norwich) was a British Conservative Party politician and an amateur cricketer who played first-class cricket from 1908 to 1936 .\nMargaret Haile. Born in Canada, Haile spent some time working for socialist causes in New England .\nJohn Percival Postgate. Born in Birmingham, the son of John Postgate, he was educated at King Edward's School where he became head boy .\nWalter Lupi. Walter Lupi is an Italian guitarist, born in Milan, in 1960 .\nGeorge Hurst. George Hurst (born 20 May 1926, Edinburgh, Scotland) is a British conductor .\nAlbert McElroy. Born in Glasgow, McElroy studied at Trinity College Dublin, then at Manchester College in Oxford (since 1996 known as Harris Manchester College)  .\nWitold Rodziński. He was born in 1918 in Lviv, son of the renowned conductor Artur Rodziński .\nMika Salmi. Mika Salmi (born 16 November 1965) in Helsinki, Finland, is a pioneer in new media .\nMartin Grams, Jr.. Born in Baltimore, Maryland, Grams is the son of magician Martin Grams, Sr and librarian Mary Pat Grams .\nArthur Nichols. Born in Bristol to farmer George Nichols and Mary Natriss, he attended Clifton and Royal Agricultural College in England before arriving in Australia in 1880 .\nGiulio Carpioni. Born probably in Venice, Carpioni studied under Alessandro Varotari (il Padovanino) and was also influenced by the work of Simone Cantarini, Carlo Saraceni and Jean Leclerc .\nBhupinder Nath Kirpal. he is married to Aruna Kirpal and has three children .\nFrancisco Ortiz de Vergara. Francisco Ortiz de Vergara was a Spanish conquistador and colonizer, born in Seville .\nAhmed Djoghlaf. Ahmed Djoghlaf (born 25 November 1953 in Algiers), is the Executive Secretary of the Convention on Biological Diversity under the United Nations Environment Programme (UNEP) .\nAbraham Mintchine. Abraham Mintchine (4 April 1898 Kiev - 25 April 1931 Paris), was a Ukrainian painter .\nJohn A. Dalles. John A Dalles is a clergyman and hymnwriter who was born in Pittsburgh, Pennsylvania .\nChristian Day. Christian Day (born 24 June 1983 in Blackpool, Lancashire) is a rugby union player for Northampton Saints in the Aviva Premiership .\nAlfred Kossmann. Born in Leiden, Kossmann was the son of the erudite librarian F H Kossmann .\nVictor Tolgesy. Victor Tolgesy (1928 - 1980) was a Canadian sculptor who was born in Hungary .\nDevin Hoff. Devin Hoff is a musician and songwriter born in Colorado whose main instruments are double bass and bass guitar .\nLinnea Johnson. Linnea Johnson (born 1946 Chicago) is an American poet, and feminist writer, winner of the inaugural Beatrice Hawley Award for The Chicago Home (Alice James Books, 1986) .\nBrett Hestla. Brett Hestla, (born 1973 in Alabama) is an American guitarist, bassist, vocalist and record producer .\nArmand Toussaint. Armand Toussaint (April 7, 1806 -- May 24, 1862), aka François Christoph Armand Toussaint, was a French sculptor born in Paris .\nGeorge Johnston. George Jameson Johnston was born on 24 October 1868 in Melbourne .\nElvis Yero. Elvis Yero (born 1965-01-26 in Havana, Cuba and died 2001-10-13) was a boxer in the Welterweight division .\nSpyros Sofos. Spyros Sofos, born in Athens, Greece, is a social scientist known for his work on Southeastern European politics .\nJohn Whistler. John Whistler (ca. 1756 -- 3 September 1829) was a soldier, born in Ulster, Ireland .\nWilliam Emery. William Emery was born on 2 February 1825 in London .\nJohn Buckley. John Buckley, born in Leeds in 1945, is a sculptor whose best known work is the sculpture ``Untitled 1986'', better known as ``the Shark House'' or the ``Headington Shark'' in Headington, Oxford .\nNigel Tangye. Born in Kensington, Nigel Tangye started his career in the Royal Navy, spending three years in the Mediterranean having graduated at the Royal Naval College in Dartmouth .\nNicholas Colla. Nicholas Colla (born on 14 October 1986 in Melbourne, Australia) is an Australian actor .\nChuck Swirsky. Born in Norfolk, Virginia, U.S., Swirsky grew up in Bellevue, Washington and is graduate of Interlake High School (class of 1972) .\nMilton Wright. Milton S J Wright was an African-American academic born in Georgia .\nWilliam Clarke. William Clarke (born 24 December 1798 at Nottingham; died 25 August 1856 at Wandsworth, Surrey) was an English cricketer and team manager who played first-class cricket from 1826 to 1855 .\nRebecca Pronsky. Born in Brooklyn, New York, Rebecca began professional vocal training at the age of eight, and was encouraged to continue studying music throughout her middle and high school years .\nRaymond Monsour Scurfield. Raymond Monsour Scurfield, born in Chicago, IL, in 1943, is professor of social work at The University of Southern Mississippi Gulf Coast .\nWendy Mulford. Wendy Mulford (born 1941, Wales) is a British poet, associated with the contemporary avant garde scene, with the British Poetry Revival, and with the development of feminist poetry in 1970s .\nLuis Ulacia. Luis Ulacia Álvarez (born September 24, 1963, in Havana, Cuba) is a Cuban baseball player and Olympic gold and silver medalist .\nRobert Briffault. According to one source, Briffault was born in Nice, France .\nLou Stein. Lou Stein (born April 22, 1922, Philadelphia, Pennsylvania, died December 11, 2002) was an American jazz pianist .\nGeorge Savoidakis. Savoidakis was born on the Greek island of Crete and spent his formative years in the community of Agioi Deka .\nLaurent d'Arvieux. Laurent d'Arvieux (1635--1702) was a French traveller and diplomat born in Marseille .\nNeil Rollinson. Neil Rollinson (born 1960 Yorkshire) is a British poet .\nGustav Bartholin Hagen. Gustav Bartholin Hagen was born on 12 February 1873 in Copenhagen, the son of Sophus Hagen, a composer and music editor, and Serine Johanne Frederikke Klingsey .\nAndy LaRocque. Andy LaRocque (real name Anders Allhage, born 29 November 1962, Gothenburg, Sweden) is best known as a guitarist, songwriter, and occasional synth player for the band King Diamond .\nJohn Hirst. John Hirst (born 18 November 1950 in Bradford) is a convicted killer and campaigner for prisoners' rights .\nGordon Stratton. Gordon Stratton (Born - October 4, 1934 in Winnipeg, Manitoba) was a Canadian ice hockey right winger who recording 474 goals and 502 assists for 976 points as a pro .\nSarah Stiles. Sarah Stiles was born on June 20 in Massachusetts and was later raised in New Hampshire .\nPiotr Buciarski. Piotr Buciarski (born 22 November 1975 in Warsaw, Poland) is a Danish pole vaulter of Polish descent .\nRobert Morrison, 1st Baron Morrison. Born in Aberdeen, he was the son of James Morrison .\nNeil Doncaster. Born in Devon, Doncaster graduated from Bristol University in 1992, qualified as a solicitor and worked for four years for Burges Salmon, solicitors .\nDavid Solomon. Born in Australia, Solomon is married to Marjorie and has three children, Talya, Reuben and Tiferet .\nJames S. Smart. Born in Baltimore, Maryland, Smart moved with his parents to Coila, Washington County, New York, in 1849 .\nThomas Passmore. Born in Belfast, Passmore worked as a salesman .\nNathan B. Spingold. Born in Chicago, Spingold started as a newspaper reporter but moved to New York in the early thirties where his career in the motion picture business with Columbia Pictures saw him rise to the Board of Directors in 1940 and vice president of the company in 1954 .\nEmmanuel Scheffer. Emmanuel Scheffer (, born 1 February 1924 in Germany) is an Israeli football coach .\nCharles Nicholas Aubé. Charles Nicholas Aubé was a French physician and entomologist born 6 May 1802 in Paris .\nWilkes Angel. Wilkes Angel (February 26, 1817 Exeter, Otsego County, New York - February 1889) was an American lawyer and politician from New York .\nBenjamin Kunkel. Benjamin Kunkel (born in 1972 in Colorado) is an American novelist .\nSteve Bjorklund. Steve Bjorklund a/k/a Steve Björklund a/k/a Steffan Bjorklund was born ca 1960 in Chicago, Illinois .\nBranko %C5%A0alamon. Branko Šalamon (born 13 June 1948) in Zagreb, Croatia is the mayor of the Croatian city of Čakovec .\nJ. N. Williamson. Williamson edited the popular anthology series, Masques .\nGeorge Butler. George Butler (born 20 February 1810 at Mansfield, Nottinghamshire; died 23 April 1887 at Nottingham) was an English professional cricketer who played first-class cricket from 1841 to 1852 .\nTom McGuinness. Tom McGuinness (born Thomas John Patrick McGuinness, 2 December 1941, Wimbledon, South London) is a guitarist songwriter, author, record and TV producer .\nOwen McAuley. Owen McAuley (born 5 October 1973 in Belfast, Northern Ireland) is a British auto racing driver .\nRoger Q. Williams. Roger Quincy Williams (April 30, 1894 - August 12, 1976) was an American aviator, born in Brooklyn, New York .\nGabriel Tschumi. Gabriel Tschumi (1883--1957) was a native of Switzerland who served as Master Chef to three British monarchs - Queen Victoria, King Edward VII and King George V .\nHenry Hall. Henry Hall (born 1810 at Sheffield; died 1 December 1864 at Nottingham) was an English cricketer who played first-class cricket from 1827 to 1837 .\nRudolf von Erlach. Rudolf von Erlach (Born around 1299 in Bern, died in 1360 in Reichenbach Castle) was a knight and commander of the Swiss Confederation forces at the Battle of Laupen .\nKeena Rothhammer. Keena Rothhammer (born February 26, 1957 in Little Rock, Arkansas) is a former freestyle swimmer from the United States .\nJohn Ambrose Meyer. Born in Baltimore, Maryland, Meyer attended the grade schools and Loyola High School .\nJean Baptiste Rives. Jean Baptiste Rives was born in the city of Bordeaux (part of the region of Gascony) circa 1793 .\nJacob Guay. Jacob Guay better known as just Jacob (born on 8 April 1999 in Quebec) is a Canadian young singer and dubbed as the French language answer to fellow Canadian Justin Bieber .\nRyan Naraine. Ryan Naraine, born 20 January 1971 in Georgetown, Guyana, is a tech news journalist living and working in New York City .\nClaude Wiseler. Claude Wiseler (born 30 January 1960 in Luxembourg City) is a Luxembourgian politician .\nIdriss Ndele Moussa. Idriss Ndele Moussa (born on 17 April 1959 in Chad, Africa) is the president of the African Union's Pan-African Parliament .\nMeike Evers. Meike Evers (born 6 June 1977 in Berlin) is a German rower who was co-winner of two Olympic gold medals .\nRuslan Gritsan. Ruslan Gritsan (born 7 December 1978 in Moscow) is a Russian competitor and multiple world champion in both ski-orienteering and mountain bike orienteering .\nAhmed Maher. Ahmed Maher, (born 2 December 1980 in Alexandria), is one of the co-founders of the April 6 Youth Movement, and a prominent participant in the anti-Mubarak demonstrations in Egypt in 2011 .\nDion Fischer. Dion Fischer is an American musician, producer, and visual artist born in Romeo, Michigan in 1972 .\nJames Burnham. Born in Chicago, Illinois on November 22, 1905, James Burnham was the son of Claude George Burnham, an English immigrant and executive with the Burlington Railroad .\nJohannes Falkenberg. Johannes Falkenberg (born in 1911 in Oslo - dead June 3, 2004, same place) was a Norwegian social anthropologist .\nPeter Milligan. Peter Milligan born in London, a British writer, best known for his comic book, film and television work .\nThomas Kerr. Thomas Kerr (Born August 30, 1962 in Calgary, Alberta) is a Canadian illustrator .\nLou Angeli. Lou Angeli (born August 11, 1951, Wilmington, Delaware) is an American writer and film maker .\nTom French. Tom French (born 1966 Kilkenny) is an Irish poet .\nKex Gorin. Kex Gorin (born Kevin Gorin, in 1949, in Birmingham - 21 December 2007), was a British drummer .\nThomas Birch Florence. Thomas B Florence born in Philadelphia, Pennsylvania .\nSiddhant Karnick. Siddhant Karnick (born March 15, Mumbai, Maharashtra) is an Indian television actor .\nMel Watkins. Watkins, who was born in Memphis, Tennessee, and grew up in Youngstown, Ohio, now lives in New York City, where he continues to write, lecture, and appear for speaking engagements .\nWarren Cann. Warren Reginald Cann (born 20 May 1950, Victoria, British Columbia, Canada) is a drummer and drum machine programmer, best known as a member of the British New Wave band Ultravox .\nHenry Albert Roby. Born in Massachusetts in March 1844, Henry Albert Roby, also known as Harry A Roby, joined the 1st Maryland Regiment of the Confederate Army at age 18, fighting in the Battle of Gettysburg and serving through the end of the Civil War .\nWilliam Worthy. Born in Boston, Massachusetts, Worthy is a graduate of Boston Latin High School, and received a BA degree in sociology from Bates College, Lewiston, Maine, in 1942 .\nLeslie Howe. Leslie Howe is a musician and record producer born in Ontario, Canada .\nOscar Bianchi. Oscar Bianchi (born 05 August 1975, Milan) is a Gaudeamus Laureate composer of Italian and Swiss citizenships .\nMichael Hosking. Born in Singapore, Hosking was educated at St John's College in Southsea, Portsmouth where he attended until the age of sixteen .\nAndrew Grant. Andrew Grant (born 1968, Birmingham, England) is a novelist and the younger brother of bestselling thriller writer Lee Child .\nAdelaide Tosi. Born in Milan, Tosi studied with Girolamo Crescentini before making her professional opera debut in her native city in 1821 .\nJames Hooker. James Hooker (July 12, 1792 Windsor, Hartford County, Connecticut - September 2, 1858 Poughkeepsie, Dutchess County, New York) was an American lawyer and politician from New York .\nOxana Narozniak. Oxana Narozniak is a Ukrainian artist born in Germany and currently residing in Curitiba, Brazil .\nCharles Hylton Stewart. Charles Hylton Stewart was born on 21 March 1884 in Chester, the son of Charles Henry Hylton Stewart (a minor canon of Chester Cathedral and previously Organist and Master of the Choristers of Chichester Cathedral) .\nNick Richmond. Nick Richmond (born May 1, 1987 in Garland, Texas) is an American football offensive tackle who is currently a free agent in the National Football League .\nMünir Göle. Münir Göle is a photographer and Turkish writer, born in 1961 in Istanbul, who lives and works in Geneva .\nJames Poole. James Poole (Born in Watford, England 16 July, 1964) has been involved in the development of computer games since the mid 1980s .\nFrancisco Cervantes de Salazar. Francisco Cervantes de Salazar (1514? -- 1575) was a Spanish man of letters .\nRenato Beghe. Renato Beghe (b. 1933 in Illinois) is a senior judge of the United States Tax Court .\nMichelangelo Pisani di Massa e di Mormile. Michelangelo Pisani di Massa e di Mormile, count of Massa Lubrense and Mormile, is an Italian diplomat .\nDan Armon. Dan Armon, Israeli poet, was born in Jerusalem in 1948, the year Israel gained independence .\nEdward Stransham. Edward Stransham (born at Oxford about 1554; executed at Tyburn, 21 January 1586) was an English Roman Catholic priest .\nGerald McLaughlin. Born in Newark, New Jersey, McLaughlin received an AB from Fordham College in 1914, and an LLB from Fordham University School of Law in 1917 .\nCathy Busby. Born in Toronto, Ontario, on April 20, 1958, Busby is an artist who has a long-time interest in posters and printed matter and their potential for grassroots communication .\nMichael Mason. Michael Mason (born March 18, 1974 in Delaware, Ohio) is a former international breaststroke swimmer, who was born in the United States .\nRob Heanley. Rob Heanley is an English actor born in Surrey on 12 October 1980 .\nAlfons Martí Bauçà. Alfons Marti, or Alfons Marti Bauza, is a Spanish writer, born in Palma de Mallorca (Balearic Islands) in 1968 .\nColin Slater. Colin Slater, MBE (born in 1934 in Bradford, England) is an English Commentator for BBC Radio Nottingham .\nKeagan Kang. Keagan Kang (born 5 May 1976, in Perth, Western Australia) is an Australian actor .\nBrian Hodgson. Born in Liverpool in 1938, Hodgson joined the BBC Radiophonic Workshop in 1962 where he became the original sound effects creator for the science fiction programme Doctor Who .\nJohn Cole. John E Cole (born 4 August 1942 in Toronto, Ontario) was a Progressive Conservative party member of the Canadian House of Commons .\nHarry South. Harry South (7 September 1929 Fulham, London -- 12 March 1990, Lambeth, London) was an English jazz pianist, composer, and arranger, who later moved into work for film and television .\nJudd Buchanan. After a career in the life insurance industry working for London Life, Buchanan, born in Edmonton, Alberta, was elected to the Canadian House of Commons in the 1968 election as the Liberal Member of Parliament for London West .\nEric Kloss. Eric Kloss (b. April 3, 1949, Greenville, Pennsylvania) is an American jazz saxophonist .\nJumoke Verissimo. Jumoke Verissimo (born 26 December 1979, Lagos) is a Nigerian poet and writer .\nKym Anderson. Kym Anderson (born 26 February 1950 in Adelaide) is an Australian economist, specialising in trade policy and issues related to the World Trade Organization .\nThomas Miller. Miller was born at Norwich on 14 August 1731, the son of Thomas Miller, a pavior .\nEthel Merston. Ethel Merston (born 23 December 1882, London - died 19 March 1967, Tiruvannamalai, India) was one of G I Gurdjieff's first students at his Institute for the Harmonious Development of Man, at the Prieuré in Fontainebleau-en-Avon, France .\nBarry Palmer. Barry Palmer, born 1958 in England, is a British singer who was one of Mike Oldfield's vocalists around 1984 .\nStephanie Andujar. Andujar was born 1986 in Manhattan and began her acting career at the young age of 12 She went on to study acting at Talent Unlimited High School .\nDerek Murray. Derek Murray (born 29 November 1965 in Dublin) was an Irish soccer player who played in the League of Ireland during the 1980s and 1990s .\nTed Grouya. Ted Grouya (31 July 1910 - 14 April 2000) born Theodor Grouya in Bucharest, Romania, was a composer who studied composition with Nadia Boulanger .\nMarinko Madžgalj. Marinko Madžgalj () is a Serbian actor .\nJohn J. Gorman. Born in Minneapolis, Minnesota, Gorman attended the common schools and the Bryant and Stratton Business College at Chicago, Illinois .\nWilliam Magennis. William Magennis (18 May 1867 -- 30 March 1946) was an Irish politician and university professor .\nOndřej Neff. Ondřej Neff (born April 26, 1945, Prague) is a Czech science fiction writer and journalist .\nAndrea Newman. Andrea Newman (born 1938, Dover, Kent) is an English author .\nEugene O'Conor. Born in Ireland in 1835, O'Conor went to Victoria, Australia in 1854, and came to New Zealand in the early 1860s .\nAndrew Knight. Andrew Stephen Bower Knight (born 1 November 1939 in England) is a journalist, editor, and director of News Corporation .\nFrederick Franklin Schrader. Frederick Franklin Schrader (27 October 1857 Hamburg, Germany - 1943) was a United States journalist and dramatist .\nJanek Schaefer. Janek Schaefer is a London-based sound artist, musician, and composer born in England to Polish and Canadian parents in 1970 .\nCharles William King. King was born at Newport, Monmouthshire, and entered Trinity College, Cambridge, in 1836 .\nChris Woodhead. Sir Christopher Anthony Woodhead (born 20 October 1946, Edmonton, London) was Her Majesty's Chief Inspector of Schools In England from 1994 until 2000 and is one of the most controversial figures in debates on the direction of English education policy .\nStephen Tompkins. Stephen Tompkins (born October 4, 1971, Cleveland, Ohio) is an American artist, animator, and composer based in Southern California .\nArto Sipinen. Arto Sipinen (born 20 March 1936, Helsinki) is a Finnish architect .\nAdam Begley. Adam Begley (born 1959 Boston, Massachusetts) is an American freelance writer, and was the books editor for the New York Observer .\nPavel Polakovič. Pavel Polakovič (born January 11, 1974 in Smolenice, Trnava) is a retired amateur boxer, who was born in Slovakia but represented the Czech Republic during his career .\nTansy Davies. Tansy Davies (born May 29, 1973, Bristol) is an English composer of modern classical and avante-garde works .\nGregg Weaver. Gregg Weaver, born January 9, 1961 in California, was part of San Diego's famed skate scene and one of skateboarding's early superstars (Weyland, 2002, p.44) .\nLiza Manili. Liza Manili is a French actress and singer, born 1986 in Strasbourg .\nJason Eckardt. Jason Eckardt (b. 17 May 1971, Princeton, NJ) is an American composer .\nJon Elster. Jon Elster (born February 22, 1940, Oslo) is a Norwegian social and political theorist who has authored works in the philosophy of social science and rational choice theory .\nFyodor Vinberg. Born in Kiev in the family of a general, Vinberg studied in high school in Kiev and in the Alexander Lyceum .\nAli Lakhani. Born in England in 1955, Lakhani was educated at The King's School, Canterbury before getting his undergraduate and graduate degrees in law from Cambridge University .\nAlfred Payne. Alfred Payne (born 7 December 1831 at Leicester; died 25 June 1874 at Westminster) was an English amateur cricketer who played first-class cricket from 1852 to 1864 .\nSean McGreevy. Sean McGreevy, born in Belfast, Northern Ireland, is a popular Gaelic footballer who has been the Antrim goalkeeper since making his Championship debut in 1993 .\nChristine Niederberger Betton. Christine Niederberger Betton, born in Bordeaux and deceased in 2001 in Mexico City was a French archaeologist .\nAnna Maria Guarnieri. Anna Maria Guarnieri (born 20 August 1933, Milan) is an Italian actress, notable for her work in theatre and film and as a voice actor, particularly during the 1960s .\nGerald J. Tate. Gerald J Tate (b. 6 February 1954, Belfast), is an Northern Irish Horror writer, who is also a time served aircraft engineer .\nHenry Howell. Born in Richmond, Virginia, Howell grew up in Norfolk .\nBaruch Arensburg. ‎Baruch Arensburg (born 1934 in Santiago, Chile), professor of Anatomy, ‎Sackler School of Medicine, Tel-Aviv University (emeritus), is a physical ‎anthropologist whose main field of study has been prehistoric and historic ‎populations of the Levant .\nHedvig Willman. Hedvig Willman, née Harling (18 July 1841 in Stockholm -- 15 August 1887, Stockholm) was a Swedish stage actor, opera singer, drama teacher and principal of Dramatens elevskola .\nJane Tanner. Barbara Jane Tanner, known as Jane Tanner, (born 29 November 1946 in Melbourne) is an Australian children's book illustrator .\nJohn Ferrar Holms. John Ferrar Holms (1897--1934) was a British literary critic born in India to a British civil servant and an Irish mother .\nMyer Hoffman. Myer Hoffman (21 July 1902 in Leeds, Yorkshire, England -- 14 October 1959 in Lourenço Marques, Mozambique) was an English-born Irish cricketer .\nJoan Hartigan. Joan Hartigan Bathurst (born on 6 June 1912 in Sydney, Australia -- died on 31 August 2000) was a female tennis player from Australia .\nDionysis Boukouvalas. Dionysis Boukouvalas (born 7 May 1979 in Athens) is a Greek composer, pianist and musicologist .\nGalina Fokina. Galina Fokina () (born January 17, 1984, in Moscow) is a Russian tennis player .\nDexter Perkins. Born in Boston, and educated at Boston Latin, Perkins received his AB (1909) and PhD .\nPhilippe N'Dioro. Philippe N'Dioro (born June 24, 1960 in Moulins, France) is a French footballer of Cameroonian descent who played 94 matches and scored 13 goals in Ligue 1 for clubs Lyon and Nice in the period 1980-1991 .\nWilliam Mattieu Williams. The son of Abraham Williams, a fishmonger in London, and his wife Louise, daughter of Gabriel Mattieu, a Swiss refugee, he was born in London on 6 February 1820 .\nSara Agnes Mclaughlin Conboy. She was born Sara Agnes Mclaughlin in Boston, Massachusetts .\nAdam Melonas. Adam Melonas (born on 10 November 1981 in Canberra, Australia) is an Australian chef of Greek heritage .\nHifumi Shimoyama. Hifumi Shimoyama, born 1930 in Japan, is a composer of contemporary concert music .\nClaire Cox. Claire Cox (born December 19, 1975, Peterborough) is an English film, television and theatre actor .\nManu Farrarons. Manu Farrarons is a Polynesian tattoo artist born in France in 1967 and grew up in Tahiti with the Polynesian culture .\nFrank Gohlke. Although he was born in Texas, Gohlke's geographical range includes central France, the American South and Midwest, New England and Mount St Helens after a volcanic eruption .\nPaul Chadwick. Born in Seattle, Chadwick grew up in its suburb Medina, where his father, Stephen F Chadwick, was the City Attorney .\nVlastimil Pt%C3%A1k. Vlastimil Pták (; November 8, 1925, Prague -- May 5 1999) was a Czech mathematician, who worked in functional analysis, theoretical numerical analysis, and linear algebra .\nHuck Whitney. Huck Whitney, composer/film theme writer, was born in Birmingham, England in 1966 and was formerly known as Ian Whitney .\nRichard Nye. Richard Nye is an instrumental and choral composer born 1967 in Gloucester, England .\nBill Downe. William A Downe (born in 1952 in Montreal) is a Canadian bank executive .\nLee King. Lee King (born 11 November 1969 in Dublin) was an Irish soccer player during the 1990s in the League of Ireland and is currently assistant manager to Terry Eviston at Drogheda Town in the Leinster Senior League .\nGladys Ewart. Born in Ottawa, she was the daughter of John S Ewart and Jessie Ewart (née Campbell) .\nStephen Griew. Stephen Griew (1928 -- 2 October 2010) was the third President of Athabasca University He was born in London, and also served at University of Toronto and Murdoch University .\nMichel Reis. Born in Luxembourg City on 11 September 1982, Reis began to play the piano when he was 8 When he started improvising and composing in his early teens, his father enrolled him in the jazz department at the Luxembourg Conservatory where he studied harmony, composition, improvisation and ensemble .\nAnselm Jappe. Anselm Jappe (born 1962 Bonn) is a professor of philosophy, teaching in Italy .\nFreddy Winnai. Freddy Winnai (8 April 1905 Philadelphia, Pennsylvania -- 4 September 1977 Philadelphia, Pennsylvania) was an American racecar driver .\nEdward Harrington. Born in Shepparton, in central Victoria, Harrington was the fourth child of Philip Harrington, a farmer from Ireland, and his Australian wife, Margaret O'Brien .\nHarry James Angus. Harry James Angus (born 11 June 1982 Melbourne, Victoria) is an Australian singer-songwriter, trumpet player and guitarist .\nDavid J. Farrar. Born in London, England in 1921, Farrar was the elder son of Donald Frederic Farrar (1897--1982), a former Royal Flying Corps supply pilot, and Mabel Margaret Farrar, née Hadgraft (1896--1985), and brother of RAF airman and poet James Farrar .\nJohn Smith. Born in Toronto, Ontario, Smith earned a degree in mathematics and physics from the University of Toronto .\nJohnny Rodgers. Johnny Rodgers was born and grew up in Miami, FL Musical performance and stage productions were things he really liked early in life (and still does!) .\nStacy Barthe. Stacy Barthe is a Singer and Grammy-Nominated Songwriter that was born in Brooklyn and signed a publishing deal to Universal Music Publishing Group by Ethiopia Habtermariam in 2007.Soon after Barthe would land her first placement ``Blur'' on Britney Spears Circus album .\nÁkos Császár. Ákos Császár (born 26 February 1924, Budapest) is a Hungarianmathematician, specializing in general topology and real analysis .\nGlynnis McDaris. Glynnis McDaris (born 1979) from Memphis, Tennessee is a photographer, artist, and curator based in New York City .\nJohann Friedrich Schleusner. Schleusner was born on 16 January 1759 in Leipzig .\nMichael Swanton. Born in London, Swanton was educated at Wilmington Grammar School, then the Universities of Durham and Bath, gaining research degrees in both arts and science and a higher doctorate, D Litt., Dunelm .\nKari Økland. Kari Økland (born 16 December 1955 in Bergen) is a Norwegian politician for the Christian Democratic Party .\nRosabelle Sinclair. Sinclair, was born in Russia in 1890 and educated in Philadelphia, before attending St Leonards School in St Andrews, where women's lacrosse had been introduced by Louisa Lumsden .\nThomas Smith. Born in 1838 in England, Smith joined the US Navy from the state of New York .\nMickael Marquet. Mickael Marquet (born December 10, 1981 in Alfortville, France) is a French footballer who played 5 matches in Ligue 1 for Ajaccio in the 2002-2003 season and played 16 matches and scored 2 goals in Ligue 2 for Creteil in the 2001-2002 season  .\nMichael Upton. Upton was born in 1938 into a working-class family in Birmingham .\nSally Price. Sally Price (born 16 September 1943 in Boston) is an American anthropologist, best known for her studies of so-called ``primitive art'' and its place in the imaginaire of Western viewers .\nLuca Bottale. Luca Bottale (Born July 1,1967 in Milan) is an Italian voice actor.Bottale contributes to voicing characters in cartoons,anime,movies,videgames,and more.He is well known for voicing characters from popular TV programs such as Usopp from One Piece,Zane Truesdale from Yu-Gi-Oh! GX,and more.Bottale is also known for voicing Sly Cooper in the 1st three games of the Sly Cooper videogame series .\nPaul Moyer Limbert. Born in Pennsylvania, Limbert earned a divinity degree at the Theological Seminary in Lancaster, Pennsylvania .\nMalcolm Terris. Malcolm Terris (born 11 January 1941 in Sunderland) is a British actor .\nMia Riddle. Mia Riddle is an American indie-folk singer-songwriter born in Ventura, California .\nIrina Borogan. Irina Borogan (, born 9 September 1974 in Moscow, Russia) is a Russian investigative journalist .\nAleksander Kogoj. Aleksander Kogoj is a Slovenian film director, born 1965 in Ljubljana .\nThomas Edward Gordon. Gordon was born on 12th January 1832 in Aberdeen and was a twin son of Captain William Gordon (1788-1834) of the 2nd Queen's Royal Regiment .\nWilhelm Krause. Wilhelm Krause (July 12, 1833 - February 4, 1910) was a German anatomist born in Hanover .\nAlbrecht Dietz. Albrecht Dietz (* 11 March 1926 in Dresden), entrepreneur and scientist, founded the first leasing company in Germany .\nGrigori Kromanov. Grigori Kromanov (8 March 1926 Tallinn -- 18 July 1984 Lääne-Virumaa) was an Estonian theatre and film director .\nSami Hinkka. Sami Hinkka, born 1978 in Finland, is a heavy metal bass player, presently with Ensiferum .\nPaul Burston. Paul Burston (born in 1965 in Yorkshire) is a British gay journalist, author, broadcaster and curator .\nWilliam Francis Whitman, Jr.. He was born in 1914 in Chicago, a son of Leona and William Francis Whitman, Sr .\nJohn D. Strong. Born in Lawrence, Kansas in 1905, Strong received degrees from the University of Kansas (BA 1926) and the University of Michigan (M.S., 1928, Ph.D., 1930) .\nAleksandar Simi%C4%87. Aleksandar Simić (Cyrillic: Александар Симић; born January 22, 1973 in Belgrade, Serbia) is an accomplished Serbian composer; according to the US State Department website, he has established a reputation as one of the leading classical composers of the late 20th and early 21st centuries .\nMurray Hocking. Murray Hocking (born 31 May 1971 in Victoria) is a badminton player from Australia .\nDarren Ockert. Darren Ockert is a pop singer, songwriter and producer born in Lincoln, Lincolnshire, England currently residing in New York City .\nMax Lehmann. Max Lehmann (1845 -- 1929) was a German historian, born in Berlin and educated at Königsberg, Bonn, and Berlin .\nRiccardo Ghedin. Riccardo Ghedin (born December 5, 1985 in Rome) is an Italian tennis player .\nPietro Fancelli. Pietro Fancelli was born at Bologna in 1764, and painted in oil and tempera in the Venetian style for churches and castles, as well as scenes for theatres .\nHenry Frederick Strohecker. Henry Frederick Strohecker (October 15, 1905 Macon -November 14, 1988, Coral Gables) was an American entomologist who specialised in Coleoptera especially Endomychidae .\nGeorge J. Graham, Jr.. George J Graham, Jr., was born in Dayton, Ohio .\nFrederick Hickford. Born in Brunswick, Victoria, to signwriter James Hickford and Mary Ann Dowman, he attended Melbourne University and earned his Bachelor of Arts in 1890, his Bachelor of Law in 1892 and his Master of Arts in 1897 .\nLeah Goldstein. Born in Canada, Goldstein was raised in Israel .\nLouis Gurlitt. Louis Gurlitt was a Danish painter, born in Altona in Holstein, then one of the largest Danish towns, due to royal privileges allowing among other things freedom of religion .\nTom Luken. Thomas Andrew Luken (b. July 9, 1925, Cincinnati, Ohio) is a politician of the Democratic Party from Ohio .\nAnnar Petersen. Annar Petersen (born November 23, 1931) is a Norwegian ice hockey player, born in Oslo, Norway .\nBehnoosh Tabatabayi. Behnoosh Tabatabayi (Persian: بهنوش طباطبایی) born 1982 in Tehran is an Iranian actress .\nVernon Carroll Porter. Vernon Carroll Porter, artist, was born in Cleveland, Ohio in 1896 .\nErnest Breton. François Pierre Hippolyte Ernest Breton, a French artist and archaeologist, was born in Paris in 1812 .\nAndrew Lemoncello. Born on October 12, 1982 in Tokyo, Japan to an American father and Scottish mother, Lemoncello grew up in St Andrews Scotland where he attended Madras College .\nMyra Sklarew. Myra Sklarew (born 1934 Baltimore, Maryland) is an American biologist, poet and teacher .\nJohn Rutledge, Jr.. Born in Charleston, he was a son of John Rutledge and a nephew of Edward Rutledge, both of whom were Continental Congressmen from South Carolina .\nAshley Webster. Webster, who was born in Brighton, United Kingdom and was raised in Los Angeles, is based in the network's London bureau .\nMatthew T. Abruzzo. Born in Brooklyn, New York, Abruzzo received an LLB from Brooklyn Law School in 1910, and was in private practice in Brooklyn, New York from then until 1936 .\nErik Willoch. Born in Oslo as a brother of Kåre Willoch, he graduated as cand.jur .\nHeinz Oestergaard. Heinz Oestergaard (Born August 15, 1916 in Berlin, † May 10, 2003 in Bad Reichenhall) was a German fashion designer .\nTerry Byrne. Born in London to a mother who worked as a hairdresser and did aromatherapy, Byrne was a dedicated Chelsea FC fan growing up, with dreams of becoming a professional footballer .\nJared Cohen. Jared Cohen (born November 24, 1981 in Weston, Connecticut) is the Director of Google Ideas, an Adjunct Senior Fellow at the Council on Foreign Relations, and a non-fiction author .\nAlma Redlinger. Alma Redlinger (born March 8, 1924, Bucharest) is a painter and illustrator from Romania .\nJohn Millen. Born in Savannah, Georgia, in 1804, Millen studied law, gained admittance to the state bar and practiced law in Savannah .\nJulien Fountain. Julien Fountain (born 1970 in Shoreham-by-sea, Sussex) is an English professional cricket coach and former Great Britain Olympic Baseball player .\nGiuseppe de Majo. Born in Naples, Majo spent most of his life working in his native city .\nJoel Pelletier. Born in Massachusetts in 1961, Pelletier received a degree in Music Composition from the Hartt School of Music, University of Hartford, CT Residing in Los Angeles since 1988, he has been active as a musician/songwriter/performer, performing his original CHAMBER POP music, and playing mostly electric bass guitar .\nRudolf Ehlers. Rudolf Ehlers (March 30, 1834 -- August 7, 1908) was a German theologian and clergyman born in Hamburg .\nJacek Sauk. Jacek Sauk (born July 21, 1944 in Vilnius) is a Polish politician, member of Law and Justice party .\nStephen Luttrell. Stephen Luttrell (born 17 January 1956 in Leicester, UK) is a British physicist .\nLawrence Walford. Lawrence Walford (born 20 January 1972 London) an award winning British television director .\nStella Inger. Born in Russia, Stella grew up in Sherman Oaks, California .\nLudwig von Buhl. Ludwig von Buhl (January 4, 1816 -- July 30, 1880) was a German pathologist born in Munich .\nShen Zhihua. Shen Zhihua (; born April 1950 in Beijing) is a professor of history at East China Normal University and adjunct professor at Peking University and Renmin University of China, and Director of the Center for Oriental History Studies of the Chinese Academy of Sciences .\nFenton Johnson. Fenton Johnson (born May 7, 1888 Chicago - died September 17, 1958 Chicago) was an American poet, essayist, author of short stories, editor, and educator .\nSasha Neulinger. Sasha Neulinger is an American actor born on September 20, 1989, in Philadelphia, Pennsylvania .\nGerald Murphy. Gerald Clery Murphy (March 25, 1888 -- October 17, 1964) born in Boston to the family that owned the Mark Cross Company, sellers of fine leather goods .\nAlana Miller. Alana Miller (born July 22, 1980 in Winnipeg) is a professional squash player who represented Canada .\nDrew McDowall. Drew McDowall (born 28 January 1961, in Paisley, Scotland) is a Scottish musician, most notably as a member, collaborator and remixer for influential music groups .\nHenry Corbould. The third son of Richard Corbould, he was born in London .\nYmer Pampuri. Ymer Pampuri was born on 30 April 1944 in Tirana .\nEduard Ritter von Weber. Eduard Ritter von Weber (May 12, 1870 in Munich -- June 20, 1934 in Würzburg) was a German mathematician .\nRaymond R. Schumacher. Born in Chicago, Raymond R Schumacher attended Tilden Technical High School, studying engineering, and was awarded the Purdue Club's 1942 Kizer MVP Award in football .\nPierre Sabatie. Pierre Sabatie born in France is a rugby league player for the Villeneuve Leopards in the Elite One Championship .\nNariman Farvardin. The company shared the same name as a mountain range in Iran where Farvardin was born .\nJorn Madslien. Born in 1967 in Oslo, Norway, Jorn was a medical officer in the Norwegian cavalry, before reading philosophy at the University of Oslo and economics at the University of Leeds .\nMary Jayne Gold. Born in Chicago, Illinois into a White Anglo-Saxon Protestant family of considerable wealth, Mary Jayne Gold was educated at the Master's School at Dobbs Ferry, New York and a finishing school in Italy .\nNelson Fogarty. Nelson Wellesley Fogarty was born on 13 September 1871 in Canterbury, Kent, England, the son of John Evans Fogarty and his wife Mary Ann Mills .\nJohn Caskie. Born in Richmond, Virginia, Caskie graduated from the University of Virginia in 1842, studied law and was admitted to the bar in around 1842, commencing practice in Richmond .\nGillian Cooke. Gillian Cooke was born and brought up in Edinburgh .\nJoseph Silverstein. Joseph Silverstein (born March 21, 1932, Detroit) is an American violinist and conductor .\nErnest Lafont. Louis-Ernest Lafont (b. July 26, 1879, Lyon, d May 7, 1946, Paris) was a French socialist politician .\nDavid T. Walker. David T Walker is an American guitarist born in Tulsa, Oklahoma .\nJessy Moss. Born in England, Moss was raised in Australia--staying with her father when her parents divorced and her mother moved to the United States .\nCatherine Ransom Karoly. Born in Minneapolis, Minnesota, Catherine Ransom Karoly received a Master of Music degree from the Juilliard School, where she studied with Carol Wincenc .\nAkihiro Tsukiyama. Akihiro Tsukiyama (16 March 1919 Tokyo) is a Japanese composer .\nFerenc A. Váli. Ferenc A Váli (May 25, 1905 - November 19, 1984) was a Hungarian lawyer, author, and political analyst specialising in International Law .\nWilliam Williams. Born in Bolton, Connecticut, Williams received a common-school education .\nJohn Mann Goggin. John Mann Goggin (May 27, 1916 Chicago- May 4, 1963 Gainesville) was a cultural anthropologist in the southwest, southeast, Mexico, and Caribbean, primarily focusing on the ethnology, cultural history, and typology of artifacts from archaeological sites .\nHélène Carrère d'Encausse. Hélène Carrère d'Encausse (born 6 July 1929 in Paris as Hélène Zourabichvili) is the permanent secretary of the Académie Française and a historian specializing in Russian history .\nBill Dillard. Bill Dillard (born July 20, 1911 -- 1995) was an American swing music jazz trumpeter, actor and singer born in Pennsylvania, probably better known for his work with the big bands of Benny Carter, Luis Russell and Teddy Hill, among others .\nRichard Schroeppel. Richard C Schroeppel (born 1948) is an American mathematician born in Illinois .\nMark McCulloch. Mark McCulloch (born 19 May 1975 in Inverness) is a Scottish professional footballer who currently plays for Forfar Athletic .\nRichard Symonds. Richard Symonds born 21 November 1959 in Langham, Norfolk is a former professional footballer .\nNasos Galakteros. Nasos Galakteros (AKA Athanasios Galakteros) (; born June 15, 1969 in Athens, Greece) is a retired Greek professional basketball player .\nJoe M. O'Connell. Born in Austin, Texas, to noted architect William R O'Connell and nurse Wylma Castleberry O'Connell Ruelke, Joe was raised mainly in Austin, but lived briefly in Northglenn, Colorado, and India .\nBrody Condon. Brody Condon (born 1974 Mexico) is an artist based in New York .\nErnst Zacharias Platner. Ernst Zacharias Platner (October 1, 1773 -- October 14, 1855) was a German painter and writer born in Leipzig .\nHenri Nussbaumer. Henri Nussbaumer is a French engineer born in Paris, France in 1931 .\nJohn Boson. The son of Nicholas Boson, he was born in Paul, Cornwall .\nMorris Bear Squire. Morris Bear Squire was born on November 5 1923 in Chicago Illinois, the son Ukrainian immigrants .\nYolande Thibeault. Yolande Thibeault (born in 1939 in Montreal, Quebec) is a journalist and politician in Quebec, Canada .\nJames Tocco. James Tocco (b. 1943 in Detroit, Michigan) is an American concert pianist .\nConstant Ferdinand Burille. He was a Bostonian born in Paris (according to another source - born in Boston), Burille was a member of a group of Boston chess players and theoreticians who formed a loose chess association they called the Mandarins of the Yellow Buttons .\nJohn Samuel Kenyon. Kenyon had also earlier published American Pronunciation (1924) and served as the consulting editor of pronunciation to the second edition of Webster's New International Dictionary in his career as a pioneering expert on the study of American English, which earned him the epithet ``the dean of American phoneticians'' .\nFranz Galich. Franz Galich (January 8, 1951 Guatemala - February 3, 2007 Managua) was a Guatemalan writer and professor of literature .\nTom Adams. Tom Adams (born November 17, 1958) is a bluegrass musician born in Gettysburg, Pennsylvania .\nDaniel Joseph Jaffé. Daniel Joseph Jaffé was born on 2 November 1876 in London and died 11 June 1921 in Croydon, England .\nMatteo Salvini. Matteo Salvini (born on 9 March 1973 in Milano) is an Italian politician and Member of the European Parliament for North-West region with the Lega Nord from 2004 to 2006 as part of the Non-Inscrits and now as a member of the Europe of Freedom and Democracy Group .\nTony Naumovski. Tony Naumovski (born 23 May 1977 in Sydney, Australia) is a Macedonian-Australian New York based actor .\nJoseph M. Baumgarten. Joseph M Baumgarten (September 7, 1928 Vienna - December 4, 2008) was a Semitic scholar known for his knowledge in the field of Jewish legal texts from biblical law to Mishnaic law and including the legal texts among the Dead Sea Scrolls .\nDaniel Sproule. Daniel Sproule (born 25 January 1974 in Melbourne, Victoria) is a former field hockey defender from Australia, who was a member of the team that won the bronze medal at the 2000 Summer Olympics in Sydney .\nTheodor Holman. Theodor Holman (born 9 January 1953 in Amsterdam) is a Dutch journalist, presenter, and writer of Indo descent .\nDave Connell. Dave Connell (born 27 November 1961 in Dublin) was an Irish soccer player during the 1970s and 1980s .\nAlfredo Moreno. Alfredo Moreno Charme (born August 4, 1956 Santiago, Chile) is a Chilean diplomat and politician .\nLuke Sullivan. Luke Sullivan (born 30 March 1961, in Singapore) is an Australian visual artist most notable for his internationally controversial work, The Fourth Secret of Fatima .\nLynn Faulds Wood. Lynn was born on 25 March 1948 in Glasgow .\nRoy Stuart Brown. Roy Stuart Brown (1888- ? ) was an American aviator, born in Minneapolis, Minnesota .\nAndrew Park. Andrew Park born in Lafayette, Indiana is an American Theatre Director and puppeteer .\nRichard Laurence. Laurence, younger brother of jurist French Laurence, was born in Bath and was educated at Bath Grammar School and at Corpus Christi College, Oxford .\nBrian Murphy. Brian Murphy (b. May 24, 1941, Ottawa, Ontario; d October 31, 2005, Ottawa, Ontario) was a notable and award-winning broadcaster and music historian .\nRené Mayer. René Mayer (; 4 May 1895, Paris 13 December 1972, Paris) was a French Radical politician of the Fourth Republic who served briefly as Prime Minister during 1953 .\nLeopoldo Gout. Leopoldo Gout is a film director, film producer, composer, author and painter .\nRobert Tripp Ross. Robert Tripp Ross (June 4, 1903 -- October 1, 1981) was a United States Representative from New York .\nRagnhild Lundén. Ragnhild Lundén is a visual Swedish artist, born in Gothenburg 1945 .\nFatima Rainey. Fatima Rainey (ファティマ・レイニー) is a singer who was born 24 July 1967 in Sweden .\nJohn Edwin. John Edwin (August 10, 1749 -- October 31, 1790), English actor, was born in London, the son of a watchmaker .\nArthur Bingham Walkley. Arthur Bingham Walkley (1855-1926) was an English dramatic critic, born in Bristol, and educated at Balliol and Corpus Christi colleges, Oxford .\nMazen Mneimneh. Mazen Mneimneh (born 1 February 1986 in Lebanon) is a Lebanese basketball player .\nHoward O. McMahon. McMahon, born in Alberta, Canada, was a naturalized citizen of the United States .\nJoe Caccia. Joe Caccia (January 19, 1899 Naples, Italy -- May 26, 1931 Indianapolis, Indiana) was an American racecar driver .\nGeorge Stone. Born in London, the son of banker Andrew Stone, he was educated at Westminster School and Christ Church, Oxford .\nAlice Temple. Alice Temple is an English musician, singer and songwriter, born in London .\nAndrew Kennedy. Born in Dayton, Ohio, Kennedy moved with his parents to a farm on the Indian reserve near Lafayette, Indiana .\nMichael Randle. Born in England in 1933, Michael Randle spent the years of the Second World War with relatives in Ireland .\nMichael Charlton. Michael Charlton (born 1 May 1927 in Sydney) is an Australian-born journalist and broadcaster who was long active for the BBC in the United Kingdom .\nLars Svensson. Lars Svensson (1926 -- 1999) was a Swedish ice hockey player, born in Stockholm .\nEva Aridjis. Eva S Aridjis, born 1974 in Holland, Netherlands while her father was serving there as Mexico's ambassador, is a Mexican filmmaker .\nDavid B. Mellish. David Batcheller Mellish (January 2, 1831 - May 23, 1874) was a United States Representative from New York .\nJohn Brown. This article is about the British industrialist; for other people named John Brown, see John Brown (disambiguation) Sir John Brown (6 December 1816 -- 27 December 1896), British industrialist, was born in Sheffield .\nPatrick Hicks. Patrick Hicks (born 1970 Charlotte, North Carolina) is an American poet, and Writer-in-Residence at Augustana College .\nLudovicus Stornebrink. Stornebrink was born on March 15th 1847 in Rotterdam, The Netherlands and moved to Japan at an early age .\nMichael Feiner. Michael Feiner born in Gothenburg, Sweden in 1971, is a musician, songwriter, music producer, multi-instrumentalist and DJ He is member of the Swedish house band duo The Attic formed in 2003 alongside his childhood friend Eric Amarillo .\nGiancarlo Primo. Giancarlo Primo (November 4, 1924, Rome -- December 27, 2005, Civita Castellana, Italy) was an Italian basketball player and coach .\nThomas Davis. Richard Francis Davis DD (ca. 1766--1844), by his marriage to Sarah Stable, Davis was born at Worcester, where his father had been Rector since 1795, and was educated at Queen's College, Oxford, graduating Bachelor of Arts in 1832 .\nLottie Gilson. Lottie Gilson was a popular comedienne and vaudeville singer born in 1871 in Pennsylvania who died in New York in 1912 .\nBrian Bram. Brian Bram, born May 9, 1955 in Chicago and raised in Deerfield, Illinois, played a minor role in the underground comix movement with his contributions to American Splendor, the comic book series written and published by Harvey Pekar and, in 2003, made into an award-winning motion picture starring Paul Giamatti and Hope Davis .\nJ. E. P. Aldous. Born in Sheffield, Aldous began his career as the organist at the chapel of the British Embassy in Paris .\nBilly Blue. Although Billy Blue's place and date of birth are uncertain, convict records suggest he was born in Jamaica around 1767 .\nChristian Wilhelm Berger. Christian Wilhelm Berger (born 13 June 1964 in Bucharest) is a Romanian composer, organist, and a Lecturer at the Bucharest Academy .\nUlla Pia. Ulla Pia (born 17 February 1945, Copenhagen) is a Danish singer, best known internationally for her participation in the 1966 Eurovision Song Contest .\nSamuel Bernstein. Samuel Bernstein (1898--1987) was an historian born in France .\nSteve Laine. Steve Laine (born 19 March 1940, London) was the lead singer and song writer with The Liverpool Five .\nAntonio Ruiz de Montoya. Montoya was born at Lima, Peru .\nBernhard R%C3%BChling. Bernhard Rühling (born 14 February 1969 in Stuttgart) is a German rower .\nDon Swaim. Born in Kansas, Swaim earned a degree in broadcast journalism from Ohio University and worked as editor, writer, producer, reporter and anchor at WCBS (AM) in New York and CBS in Baltimore .\nLawrence Dundas, 1st Earl of Zetland. Born in Westminster, the son of Thomas Dundas, 1st Baron Dundas, he was educated at Harrow and Trinity College, Cambridge .\nSam Bartlett. Sam Bartlett (born November 8, 1961 Burlington, Vermont) is an American performer, author, and musician .\nMartin Timell. Martin Timell (born 13 November 1957 in Stockholm) is a Swedish carpenter, actor and television presenter .\nLucien Barbour. Born in Canton, Connecticut, Barbour was graduated from Amherst College in 1837 .\nEdward Moore. Edward Moore (1838--1916) was an English scholar, born at Cardiff .\nBridget Allchin. Bridget Allchin (born 1927, Oxford, England) is an archaeologist who specializes in South Asian archaeology .\nPieter Harting. Pieter Harting (27 February 1812 -- 3 December 1885) was a Dutch biologist and naturalist, born in Rotterdam .\nAnthony Poon. Born in Singapore in 1945, Poon graduated from the Nanyang Academy of Fine Arts (NAFA) in 1964, and held his first exhibition at the old National Library .\nBrihaspati Dev Triguna. Brihaspati Dev Triguna () (Born in India, 1920) is a Vaidya or ayurvedic doctor and an expert in nadivigyan, the ayurvedic technique of pulse diagnosis .\nKnut Kjeldstadli. Knut Kjeldstadli (born 6 June 1948 in Oslo) is a Norwegian historian .\nWilliam Byrne. William Byrne, an engraver, was born in London in 1743 .\nFiachna %C3%93 Braon%C3%A1in. Fiachna Ó Braonáin (born 27 November 1965) plays the guitar and sings vocals with the Irish band Hothouse Flowers .\nHarold Drasdo. Harold Drasdo, English rock climber, writer and educationalist, was born in Bradford, Yorkshire, England in February 1930 .\nWilliam Main Page. William Main Page was a Briton, solicitor in the Scottish High Court, and vice-consul of Czechoslovakia in eastern Scotland .\nTheron Metcalf. Theron Metcalf (16 October 1784 Franklin, Massachusetts - 12 November 1875 Boston) was a New England jurist and a judge of the Massachusetts Supreme Court .\nRobert Callender. Robert Grantley Callender (born 2 November 1950, in Barbados) is a former cricketer .\nMohd Shoaib Hassan. Mohd Shoaib Hassan, (born May 27, 1990 in Lahore) is a professional squash player who represented Pakistan .\nLisa Sheridan. Lisa Sheridan (born 5 December 1974) in Macon, Georgia, is an American actress who has appeared in TV series Invasion, FreakyLinks, Legacy, Las Vegas, , and Journeyman .\nGeorg Kloss. Georg Franz Burkhard Kloss (31 July 1787 Frankfurt am Main - 10 February 1854 Frankfurt) was a German historian of freemasonry .\nJulianna Barwick. Julianna Barwick is an American musician who was born in Louisiana and raised in Brooklyn .\nWilliam Erskine. The son of David Erskine and his wife Jean Melvin, he was born in Edinburgh .\nAlbert Chamberland. Born in Montreal, Chamberland began his musical training in his native city with Jean A Duquette before entering the conservatory at McGill University where he was a pupil of Alfred De Sève .\nLen Zengel. Len Zengel (15 March 1887 Dayton, Ohio -- 24 September 1963 Bryn Mawr, Pennsylvania) was an American racecar driver .\nWilliam Henry Brockenbrough. Born in Virginia, Brockenbrough studied law, was admitted to the bar and settled in Tallahassee, Florida .\nBrook Pridemore. Brook Pridemore (born in 1979 in Detroit, Michigan, USA) is an American singer-songwriter affiliated with the Antifolk scene in New York City .\nArthur Levering. Arthur Levering (born March 6, 1953, Baltimore, Maryland) is an American composer of contemporary classical music .\nSheila Sondergard. Sheila Sondergard (born April 24, 1980) is a singer-songwriter, born in Seoul, South Korea and raised in Maui, Hawaii, the Black Hills of South Dakota, and Central America .\nLee Davies. Lee Davies (born 15 July 1980, Blackburn, England) is an English drummer who has worked with artists such as Jerry Donahue, Lucie Silvas and Slack Alice and has carried out session work for Warner Bros .\nNicole Richardson. Nicole Richardson (born 26 June 1970 in Melbourne) is a softball player from Australia, who won a bronze medal at the 1996 Summer Olympics .\nPaul Heeren. Paul Heeren (born 22 November 1954 in Adelaide Australia) is a guitarist and songwriter .\nWilliam James Henderson. William James Henderson (December 4, 1855--June 5, 1937) was an American musical critic and scholar, born at Newark, New Jersey .\nNicolae Herlea. Nicolae Herlea (b. 28 August 1927, Bucharest) is a Romanian operatic baritone, particularly associated with the Italian repertory, especially the role of Rossini's Figaro, which he sang around 550 times during his career .\nFred Rosenstock. Fred Asher Rosenstock (1895--1986) born Selig Usher Rosenstock in 1895 in Biala Potok in Galicia then a province of Austria in the foothills of the Carpathian Mountains was a prominent bookseller, book and art collector and publisher in Denver, Colorado from the 1920s through the 1970s .\nLucie Vrbensk%C3%A1. Lucie Vrbenská (born 12 May 1977 in Prague) is a female hammer thrower from the Czech Republic .\nKenneth William Junor. The younger Junor was born on 3 August 1896 in Toronto, Canada .\nNicolas Colibert. Nicolas Colibert, a French painter and engraver, was born in Paris in 1750 .\nJan Pawe%C5%82 Nowacki. Jan Paweł Nowacki (25 June 1905 Berlin -- 23 May 1979 Warsaw) was an engineer .\nBrandon Bird. Brandon Bird is an artist .\nA. M. Esmonde. M Esmonde (born in 1977 in Swansea, Wales) is a horror writer and producer .\nThomas Wright Rudderow. Thomas Wright Rudderow was born at Philadelphia, Pennsylvania, on 8 August 1885 .\nFrancis Gano Benedict. Born in Milwaukee, Wisconsin, Benedict attended Harvard University, earning his bachelor's degree in 1893 and his master's degree in 1894 .\nWilliam Davidson. Born in Charleston, South Carolina, Davidson completed preparatory studies .\nAustin Lloyd Fleming. Austin Lloyd Fleming was born on 7 August 1894 in Toronto, Ontario .\nLi Weiliang. Li Weiliang (; born 2 September 1980 in Beijing, China) is a Chinese baseball player .\nMigidio Bourifa. Migidio Bourifa (born 31 January 1969 at Casablanca) is an Italian long-distance runner who specializes in the marathon races .\nZhang Li. Zhang Li (; born 3 February 1980 in Shanghai, China) is a Chinese baseball player who was a member of Team China at the 2008 Summer Olympics .\nCharles Jones. Born in Wolverhampton, Charles Jones became a gardener working on a number of private estates in England from the 1890s .\nYehonatan Berick. Yehonatan Berick (born 1968) is a violin and viola virtuoso and pedagogue .\nGeorg Hellmesberger. Born in Vienna, he was the son of Georg Hellmesberger, Sr and the brother of Joseph Hellmesberger, Sr He studied violin with his father and composition with Ludwig Rotter (1810--1895) .\nGeorge Georgiou. Born in London of Greek-Cypriot parents, Georgiou graduated in photography from the Polytechnic of Central London .\nJohn R. Tunis. John Roberts Tunis (December 7, 1889 in Boston, Massachusetts - February 4, 1975 in Essex, Connecticut) was a well-known and prolific author of juvenile sports fiction .\nBuono de' Buoni. Buono de' Buoni was born at Naples, and, according to Dominici, flourished about the year 1430 .\nDave Steele. Dave Steele (born May 7, 1974, Tampa, Florida), is an American racecar driver .\nTim Benjamin. Tim Benjamin (born 14 September 1975 in London) is an English composer .\nAlina Gut. Alina Gut (born February 10, 1938 in Lublin) is a Polish politician .\nMichel Roger Lafosse. Although born in Belgium as Michel Roger Lafosse, he became a naturalized British citizen in the 1990s and has since used the name Michael James Alexander Stewart of Albany .\nMartin A. Janis. Born in Toledo, Ohio, Janis was the youngest of four brothers .\nJohn William Mellor. Sir John Mellor, of Otterhead, Devonshire, a Judge of the Queen's Bench Division of the High Court, Mellor was educated at Trinity Hall, Cambridge .\nRobert S. Richardson. Robert Shirley Richardson (1902 -- 1981) was an American astronomer, born in Indiana .\nDerek Kreckler. Derek Kreckler is an Australian visual artist, born in Sydney in 1952 .\nYosef Harish. Born in Jerusalem in 1923, Harish was educated in a yeshiva .\nRobert Chen. Born in Taipei, Taiwan, Chen began studying the violin at the early age of seven .\nMax Angelelli. Massimiliano Angelelli (born 15 December 1966 in Bologna) is an Italian race car driver .\nAlan Welsh. Alan Welsh (born 9 July 1947, in Edinburgh) is a retired Scottish footballer .\nBilly Edwards. Billy Edwards (December 21, 1844 in Birmingham, Warwickshire, England -- August 12, 1907) was a was a standout lightweight of the late 1860s and 1870s in England .\nPaul Lebreton. Paul Lebreton (born May 31, 1870, Bordeaux, France -- died June 21, 1956, Lyon, France) was a tennis player competing for France .\nLowrell Simon. Lowrell Simon (born March 18, 1943, Chicago) is an American soul singer .\nR. W. Johnson. W Johnson (born 1943) is a British-South African journalist and historian .\nBenjamin Pine. Born in 1809 in London, Benjamin Pine was educated in Brighton and at Trinity College, Cambridge .\nCharles Forbes René de Montalembert. Charles Forbes René de Montalembert (March 18, 1810 London - March 13, 1870 Paris) was a French publicist and historian .\nGeorge Schutt. Born in 1833 in Ireland, Schutt joined the US Navy from the state of New York .\nMatt Ryan. Matt Ryan (born 23 June 1984 in Sydney) is an Australian rower .\nMarie Nicolas Sylvestre Guillon. Marie Nicolas Sylvestre Guillon (January 1, 1760--1847), French ecclesiastic, was born in Paris .\nDaniel Spielman. Daniel Alan Spielman (born March 1970, Philadelphia, USA) is professor of Applied Mathematics and Computer Science at Yale University (since 2006) .\nTony Conran. Although he was born in India, other than a brief spell working in a factory in Essex, Conran has spent most of his life in Bangor, North Wales .\nOscar O'Brien. Born in Ottawa, O'Brien was a pupil of Amédée Tremblay with whom he began studying both the piano and the organ as a young teenager .\nPietra Montecorvino. Pietra Montecorvino is an Italian singer and actress, born in Naples, Italy in 1962 .\nLennox Raphael. Lennox Raphael (b. 1939 in Trinidad, West Indies) is a journalist, poet, and playwright .\nSu Lian Tan. Born in Malaysia, Tan was a child prodigy, who began a professional career in music at the age of 14 She went on to study at Juilliard School, Bennington College and Princeton University with world-famous composers, such as Milton Babbitt, Bernard Rands and Henry Brant .\nOğuz Abadan. Oğuz Abadan is a Turkish musician born in Ankara .\nDonald W. Loveland. Donald W Loveland (b. December 26, 1934, Rochester, New York) was a professor emeritus of computer science at Duke University who specialized in artificial intelligence .\nFrancis MacManus. Born in Kilkenny, MacManus was educated in the local Christian Brothers School and later at St Patrick's College, Dublin and University College Dublin .\nMonica Esposito. Monica Esposito was born in 1962 in the Italian city of Genoa and died in the early spring of 2011 in Kyoto, Japan .\nMike Vosburg. Born in California, Vosburg spent his first 37 years in Michigan .\nKraisak Choonhavan. Kraisak Choonhavan (, born 8 October 1947 in Bangkok) is a Thai politician .\nKen Lyons. Ken Lyons (born April 22, 1956, Florida) is an American bassist who was an early member of 38 Special, before being replaced by Larry Junstrom in 1979 .\nRené Renoult. René Renoult (29 August 1867 Paris -- 30 April 1946 Paris) was a French Minister and lawyer .\nDavid Empringham. David Empringham (Born December 11, 1963 in Toronto, Ontario), is a Canadian auto racing driver .\nSaleem Pervez. Saleem Pervez (born September 9, 1947, Lahore, Punjab) is a former Pakistani cricketer who played one ODI in 1980 .\nAdnan Awad. Adnan Awad (b. 1942 in Palestine) was a Captain in the Palestinian Liberation Army who joined the 15 May Organization and prepared to bomb the Noga Hilton hotel in Geneva, Switzerland on August 31, 1982, but instead fled the scene and later turned himself into the American embassy and claimed he wanted to renounce any terrorist connections .\nJuan Carlos Bersague. Juan Carlos Bersague Chacón is a Choral Conductor and Conducting Professor in Venezuela, born at Havana, Cuba in 1963 .\nJoseph Bosworth. Joseph Bosworth (1789 -- 27 May 1876), English scholar of Anglo-Saxon language and Anglo-Saxon literature, was born in Derbyshire .\nKhalid Malik. Khalid Malik (born on 17 August 1952 in Pakistan) is an international civil servant .\nPaddy Crowley. Paddy Crowley (15 March 1932 -- 2 April 2006) was an Irish soccer player who was born in Dublin .\nJohn Joseph Braham, Sr.. He was born in 1847 in England to Joseph Braham (1827-1877), and he had a brother, David Braham .\nCalvary Morris. Born in Charleston, Virginia (now West Virginia), Morris attended the common schools .\nCarlo Bacchiocco. Carlo Bacchiocco was an Italian painter, born in Milan .\nRobert Ilyasov. Robert Ilyasov (Russian: Роберт Ильясов; born October 8, 1973 in Kazan, Russia) is a Russian rugby league player currently playing for the Kazan Arrows in the Championship of Russia competition .\nGeorge Henderson. Born in Edinburgh, Henderson was the son of architect John Henderson and Hannah Matilda Exley .\nAaron Walden. Aaron Walden (born at Warsaw about 1835, died 1912) was a Polish Jewish Talmudist, editor, and author .\nAdam Bright. Adam Bright (born 11 August 1984, in Melbourne, Australia) is an Australian left-handed pitcher .\nAlan Hess. Born in California in 1952, Hess received his BA at Principia College, a Master's degree in architecture from the UCLA School of the Arts and Architecture, and is a licensed architect .\nJacob Guptil Fletcher. Born in Maine, Fletcher was a clerk in Boston in the 1850s and identified himself as an artist after 1860 .\nHisham Mohd Ashour. Hisham Mohd Ashour, (born May 29, 1982 in Cairo) is a professional squash player who represented Egypt .\nToby Cockerell. Toby Cockerell (born 17 October 1976 in London) is an English actor who played the part of Scott Windsor in ITV's Emmerdale from 1993--1996 .\nGordon Copley. Gordon Copley, born in Pasadena, California, is a bassist who briefly played bass for Black Sabbath .\nElie Rekhess. Elie Rekhess (אלי רכס) born 1945 in Haifa, Israel is a scholar of political history of the Arabs in Israel; Islamic resurgence in Israel; the West Bank and Gaza and Palestinian affairs .\nBert Ruiter. Bert Ruiter (born 26 November 1946, Amsterdam) is a Dutch bass guitarist, record producer, and composer .\nGuillaume Couture. Born in Montreal, Couture was choirmaster at Saint-Jacques Cathedral before studying at the Conservatoire de Paris with Romain Bussine and Théodore Dubois from 1873-1875 .\nJack Smooth. Jack Smooth, real name Ron Wells, born in London 1970 .\nRodney Cocks. Rodney Damon Cocks CSM (born 1976), Australian army officer and political candidate, was born in Melbourne and grew up in the eastern suburbs, attending Melbourne High School for his secondary education .\nKirsten Wenzel. Kirsten Wenzel (born 27 February 1961 in Leipzig) is a German rowing cox .\nMiles Crowley. Born in Boston, Massachusetts, Crowley attended the common schools .\nAnne Clark. Anne Clark (born 14 May 1960, Croydon, London, England) is an English poet and songwriter .\nJack Garland. Jack Garland (1 Feb 1908 -- 29 November 1985) was a boxer born in Belfast, Northern Ireland .\nElsa Rastad Bråten. Elsa Rastad Bråten (born 1 February 1918 in Oslo; died 21 December 1999) was a Norwegian politician for the Labour Party .\nTimothy Hoven. Born in Milwaukee, Wisconsin, Hoven graduated from University of Wisconsin-- Oshkosh with a degree in criminal justice .\nJames Mortimer. Born in Richmond, Virginia, Mortimer graduated from the University of Virginia .\nRobert Burns. Born in Hudson, New Hampshire, Burns moved with his parents in childhood to Rumney in Grafton County .\nSebastian Dacey. Sebastian Dacey (born 1982 London) is a German artist .\nMarc Spackman. Marc Spackman born 7th February 1979 in Lincoln, England is a former England and Great Britain Olympic swimmer who qualified for and competed in the Sydney 2000 Olympic Games qualifying from the British Championships (Olympic Trials) in March 2000 and automatically qualifying for the Great Britain Olympic Team .\nLeopold Wenzel. Born in Naples, Wenzel spent most of his career working in London, with the exception of some years spent in Paris .\nAvner W. Less. Avner W Less (1916-1987) was an Israeli police officer, born in Berlin, Germany .\nThibaut de Reimpré. Thibaut de Reimpré is a contemporary French painter .\nRodney de Gruchy. Rodney de Gruchy (* March 23, 1948 in Melbourne; † June 24, 2011 in Melbourne) was an Australian surfer, rock band manager, and jewellery designer .\nMatt Berg. Berg was born in 1977 in a small village of Cameroon and grew up in Senegal .\nThomas Blaikie. Born in Aberdeen, he was the son of John Blaikie (1756--1826), a plumbing merchant and his wife Helen Richardson (1765--1844) .\nSamuele Levi. Samuele Levi (1813 -- 6 January 1883) was an Italian composer born in Venice .\nCharles Gilchrist Adams. Charles Gilchrist Adams (born December 13, 1936, Detroit, Michigan) became the first Nickerson Professor of the Practice of Ethics and Ministry at Harvard Divinity School in 2007 .\nAlan Littlejohn. Alan Littlejohn (4 January 1928 - 12 November 1996) was a British jazz trumpeter, flugelhornist and bandleader born in London, England, most notable for his work with artists such as Ben Webster, Earl Hines, Bill Coleman, Sonny Dee, Laurie Chescoe, Alvin Roy, and Billy Butterfield .\nWarren Spears. Warren Spears (May 2, 1954 - January 8, 2005) was an American dancer and choreographer .\nWilliam Egley. Egley was born at Doncaster in 1798 .\nRichard Ashrowan. Ashrowan was born in 1966, in Essex, England .\nNyncke Beekhuyzen. Nyncke Beekhuyzen (born 24 January 1980 in Amsterdam) is a Dutch actress .\nEdwin Milton Abbott. Edwin Milton Abbott (June 4, 1877 -- November 8, 1940) was an American lawyer and poet, born in Philadelphia and educated at Central High School (Philadelphia) and the University of Pennsylvania .\nRobert Samuel Ross. The eldest of three sons born to Robert Mitchell Ross, a Scottish-born compositor, and Anne Matilda (née Bonham), Robert Mitchell's English-born wife, Robert Samuel Ross was born on 5 January 1873 in Sydney, New South Wales .\nWilliam Atherton. Atherton was born at Glasgow in 1806, being the son of the Rev .\nRichard Armiger. Born in Baltimore, Armiger attended Maryland Institute College of Art studying painting and sculpture .\nSiri Hall Arnøy. Siri Hall Arnøy (born 28 November 1978 in Oslo) is a Norwegian politician for the Socialist Left Party .\nKeith Haynes. Keith Haynes (b. 10 December 1963, Cardiff, Wales) is a published Welsh author and musician .\nKevin Burdette. Burdette received his Masters in Vocal Performance at the Juilliard School, two Bachelor of Arts degrees (BA in College Scholars and a BA in Music with a minor in history) from the University of Tennessee, and spent a year studying at the Universität für Musik und darstellende Kunst Wien .\nEran Groumi. Eran Groumi (born June 5, 1970 in Jerusalem) is a former backstroke and butterfly swimmer from Israel, who competed for his native country at the 1992 Summer Olympics in Barcelona, Spain .\nBilly Treacy. Billy Treacy born in Ireland is rugby league player for the Treaty City Titans in the Irish Elite League .\nAbbondio Sangiorgio. Born in Milan, Sangiorgio studied at the city's Accademia di Brera .\nRichard Leigh. Blessed Richard Leigh (c. 1561 -- 1588) was an English martyr born in Cambridgeshire .\nAdrienn Bende. Adrienn Bende (born 25 June 1985 in Budapest, Hungary) is the winner of the Miss Universe Hungary contest in 2006, and one of the 20 semi-finalists of the Miss Universe 2006 contest from Los Angeles .\nRussell Taylor. Russell Taylor was born and grew up in Ipswich in Suffolk .\nAntoine Verglas. Antoine Verglas (Born in Paris in 1962) is a New York City based photographer who's obtained popular acclaim for his uninhibited documentary style fashion photographs of the 1990s supermodels such as Claudia Shiffer and Stephanie Seymour .\nOrhan Demir. Demir, born 1954 in Istanbul, immigrated to Canada in 1977 .\nThomas B. Sheridan. Thomas B Sheridan (born 23 December 1929, Cincinnati, OH) is American professor of mechanical engineering and Applied Psychology Emeritus at the Massachusetts Institute of Technology .\nHeather Davis. Heather Davis (born 26 February 1974 in Vancouver) is a Canadian rower .\nAlisa Arnah. Alisa Arnah is a British actress born in London .\nMarco Glaviano. Born in Palermo, Sicily in 1942, Marco Glaviano began his artistic career with a degree in architecture from the University of Palermo .\nJaime Vallvé. Jaime Vallvé (born in 1928 in Barcelona in Spain, died in 2000) was a Spanish comic strip artist who lived and worked in Denmark during most of his lifetime .\nCrowther Charlesworth. Born in Swindon, Lancashire, Charlesworth began his first-class career in 1898 and played regularly for Warwickshire until 1921 .\nMarc Van Montagu. Marc Van Montagu (born 10 November 1933 in Ghent) is a Belgian molecular biologist .\nNeville Maxwell. Born in London, Maxwell was educated at McGill University and Cambridge University .\nRené Théodore Berthon. René Théodore Berthon was born at Tours in 1776, and studied under David .\nHa Sinan. Ha Sinan (born 10 January 1992 in Kunming, Yunnan) is a swimmer from China .\nWendy White. Born in Chicago, White is a graduate of Wheaton College (1975, Bachelor of Music) and the Jacobs School of Music of Indiana University (1978, Master of Music) .\nPeter R%C3%B6sel. Peter Rösel (February 2, 1945 Dresden) is a German concert pianist .\nBernard Lloyd. Bernard Lloyd (born 30 January 1934, Newport, South Wales) is a Welsh actor noted for his television roles .\nFernando Lima Bello. Fernando Lima Bello (born 27 November 1931 in Lisbon) is Portugal's current and only member of the International Olympic Committee since 1989, when he ended his term at the presidency of the Olympic Committee of Portugal .\nJohn Thomas Rochead. John Thomas Rochead (28 March 1814 -- 7 April 1878) was a British architect .\nAaron Cleveland. At the time of the Aaron's birth his father was making a modest living as a publican in Cambridge, Massachusetts, where Aaron was born, and also working in construction .\nElena Lev. Elena Lev, born in Moscow, Russia in 1981, began her training to become a rhythmic gymnast at an early age, assisted and coached by her mother, Elena Lev Sr She developed a signature hula hoop act incorporating gymnastics and contortion .\nMamta Baruah Herland. Mamta Baruah Herland is a painter and digital artist born in Assam, north east India, now living just outside Oslo, Norway .\nEdward Kavanagh. Edward Kavanagh (April 27, 1795 -- January 22, 1844) was a United States Representative and the 17th Governor of Maine .\nMatthew Walker. Walker was born on 11 May 1984 in Hamilton, New Zealand .\nShahan Shahnour. Shahan Shahnour was born Shahnour Kerestejian, on August 3, 1903, in a suburb of Istanbul, Turkey .\nBruno Campanella. Bruno Campanella (born January 6, 1943, Bari) is an Italian conductor and a distinguished interpreter of the Italian Opera .\nArmen Ayvazyan. Armen Ayvazyan () (born May 14, 1964, Yerevan) is an Armenian historian and political scientist .\nScott Ambush. He was born April 28, 1960 in Frederick, Maryland to Webster and Jeanette Lofton Ambush .\nDavid Hamill. David Hamill born at Ipswich, Queensland on 18 September 1957, is a former Queensland ALP politician, who served in a number of positions including Minister for Transport and Minister Assisting the Premier on Economic and Trade Development, Minister for Education and Treasurer .\nDrew Holcomb. Drew Holcomb is an American singer and songwriter who grew up in Memphis, Tennessee, and now calls East Nashville, Tennessee home .\nAlbert Heinrich Brendel. Albert Heinrich Brendel, who was born in Berlin in 1827, studied in the Prussian Academy of Arts under Wilhelm Krause .\nHenry Weekes. Weekes was born at Canterbury, Kent, to Capon Weekes, a banker's clerk, and his wife, Mary Pearson .\nHomer Curran. Homer F Curran (1885--1952) was an American theatrical producer who had a profound impact on the development of professional theatre on the West Coast of the United States during the first half of the 20th century .\nIan Prosser. Born in Scotland, Prosser first worked on a US presidential inauguration in 1993, at the inauguration of Bill Clinton .\nClaire Baxter. Claire Baxter (born 24 January 1982, Australia) was a professional racing cyclist, competing in both road and mountain bike racing events .\nRose Prince. Rose Prince (born 4 December 1962 in Hampshire, England) is a food writer, author, cook and activist .\nCarl R. Chindblom. Born in Chicago, Illinois, Chindblom attended the public schools .\nJules de Gaultier. Jules de Gaultier (born in 1858 in Paris, died in 1942 in Boulogne-sur-Mer), born Jules Achille de Gaultier de Laguionie, was a French philosopher and essayist .\nWilliam Garland McQuarrie. Born in Ottawa, Ontario, the son of Lachlan and Mary McQuarrie, McQuarrie was raised in Winnipeg, Manitoba and New Westminster, British Columbia .\nRobert Hetzron. Born in Hungary, Hetzron studied at the University of Budapest .\nBrian Fairlie. Brian Fairlie, born 13 June 1948 in Christchurch, is a retired tennis player from New Zealand .\nFulvio Ballabio. Fulvio Ballabio (born 8 October 1954) is a race car driver born in Milan, Italy .\nDiarmuid Scully. Born in Limerick, Diarmuid Scully was educated at St Patrick's Boys national School in the city and later CBS Sexton Street .\nC. Martin Wilbur. Born in Dayton, Ohio, Wilbur went at an early age with his parents to China, where they worked with the YMCA .\nIren Marik. Iren Marik was a classical pianist born in Hungary in 1905 .\nTorraye Braggs. Torraye Braggs (born May 15, 1976 in Fresno, California) is an American professional basketball player, formerly of the NBA .\nJohanna Meier. Born in Chicago, Meier was raised in Spearfish, South Dakota and continues to contribute to the State, having founded the School of Opera and Vocal Arts as part of the Black Hills State University Summer Institute of the Arts, for which she also serves as Artistic Director .\nGiuseppe Giulietti. Giuseppe Giulietti (born 19 October 1953) in Rome is an Italian politician .\nPeter Lachmann. Lachmann has also won numerous international accolades including a Gold Medal from the European Complement Network in 1997, the Medicine and Europe Senior Prize, Academie des Sciences de la Santé in 2003 .\nMirosław Maliszewski. Mirosław Maliszewski (born February 28, 1968 in Warsaw) is a Polish politician .\nFred M. Hechinger. Fred M Hechinger (July 7, 1920 Nuremberg, Germany - November 6, 1995 Manhattan) was an education editor at The New York Times from 1959 to 1990 .\nAdam Mamawala. Adam Mamawala (b. May 18, 1987, Aurora, Illinois) is an American stand-up comic .\nRichard Hudson. Richard Hudson (born 9 May 1948, Tottenham, London, England) is an English singer-songwriter and musician .\nMir Khasim Ali. Mir Khasim Ali born in Hyderabad, AP was India's Men's Singles Champion in table tennis from 1968 to 1969 .\nGiacomo Gaggini. Born in Palermo, he was the son of the sculptor Antonello Gagini, and the brother of Fazio and Vincenzo, and half-brother of Giovanni Domenico and Antonino Gaggini, all sculptors .\nJerry Pettis. Jerry Lyle Pettis (July 18, 1916 in Phoenix, Arizona -- February 14, 1975, in Banning, California) was an American politician and a Congressman from California .\nJoshua Watson. Joshua Watson was born on Tower Hill in the city of London on Ascension day, 9 May 1771 .\nRoland Kitson, 3rd Baron Airedale. Captain Roland Dudley Kitson, 3rd Baron Airedale (19 July 1882-20 March 1958), businessman, was born in Leeds, son of Sir James Kitson, 1st Baron Airedale and his second wife, Mary Laura daughter of Edward Fisher Smith .\nZak Carr. Zak Carr (born March 6, 1975 Norwich, Norfolk, died 17 October 2005) was a British cyclist who specialised in the time trial discipline .\nPierre Roland. Pierre Roland who was born Pierre Roland Christy, in Jakarta, Indonesia on 14 April 1979, is an Indonesian actor .\nLuke Bullen. Luke Bullen (born 2 September 1973, in Norwich, England) is an English drummer and percussionist .\nEdward Brotherton. Brotherton was born at Manchester in 1814, and in early life was engaged in the silk trade, but, foreseeing that the commercial treaty with France was likely to bring to an end the prosperity of his business, he retired with a competence .\nKoichi Morita. Lieutenant-Colonel Koichi Morita (1865 -- 1929) was a Japanese army officer born in Tokyo .\nJon Cone. Born in Miami, Florida in 1957, Jon Cone is a collaborative printmaker, pioneer and developer of photographic ink jet technologies, educator, and photographer .\nAlicia Plaza. Alicia Plaza, born April 30, 1957 in Caracas, Venezuela, is a veteran, Venezuelan actress .\nAlbert Rudomine. Albert Rudomine, born in Kiev in the Ukraine on 27 April 1892 and died in Paris on 4 April 1975, was a French photographer perhaps best known for his nudes .\nWinifred Nicholson. Nicholson was born in Oxford as Rosa Winifred Roberts .\nGeorge Brunner. George Brunner is an American composer and performer born in Philadelphia .\nHamilton Ward, Sr.. Hamilton Ward, Sr (July 3, 1829 Salisbury, Herkimer County, New York - December 28, 1898 Wellsville, Allegany County, New York) was an American lawyer and politician .\nOliver Lanard Fassig. Oliver Lanard Fassig was born at Columbus, Ohio, on April 5, 1860, son of Mathias and Elizabeth (Lanard) Fassig .\nIra Vail. Ira Vail (22 November 1893 Montreal, Canada -- 21 April 1979 Daytona Beach, Florida) was a Canadian-American racecar driver .\nMagdaléna Hajóssyová. Magdaléna Hajóssyová (born 25 July 1946, Bratislava) is a renowned classical Slovak soprano who has had an active international career singing in operas, concerts, and recitals since the late 1960s .\nEmilio De Fabris. Emilio De Fabris was born 1808 in Florence, Italy .\nMichel Bellemare. Michel Bellemare (b. July 10, 1967 in Ottawa) was member of the City Council in Ottawa, Canada from 1994 to 2010 .\nJohn Littleton and Kate Vogel. John Littleton is the son of glass artist Harvey Littleton and his wife, Bess Tamura Littleton .\nReginald Brett, 2nd Viscount Esher. Born in London, Brett was educated at Eton and Trinity College, Cambridge .\nAlison Waters. Alison Waters (born 19 March 1984, in London, United Kingdom) is a professional squash player from England .\nDeepa Kaul. Deepa Kaul (Hindi-Urdu, Kashmiri: दीपा कौल, دیپا کول) (born April 12, 1944, London) is a social democratic leader of the Indian National Congress and has headed ministries, including social welfare, culture, and tourism, as a member of the legislature of Uttar Pradesh .\nSophia Morrison. Born in Peel, Isle of Man, Morrison worked for the promotion of Manx Gaelic music, folklore and literature, editing Yn Cheshaght Ghailckagh's journal Mannin, which appeared between 1913 and 1917 in nine volumes .\nS%C3%A9bastien Denis. Sébastien Denis (born 4 May 1971 in Paris) is a French hurdler .\nJoan Backes. ((File:Forest-House.jpg thumb 300px right Joan Backes - Forest-House, 2010, (permanent installation), Darmstadt, Germany. Invitational International Biennial `` Internationalen Waldkunstpfad '')) Joan Backes is an American artist who was born in Milwaukee, Wisconsin .\nRobert E. Hopkins. Born in Belmont, MA, in 1915, Hopkins attended the Massachusetts Institute of Technology (MIT) under a full scholarship, earning a BS in 1937 .\nShlomo Wolbe. Rabbi Shlomo Wolbe (Wilhelm Wolbe, 1914 - April 25, 2005) was a Haredi rabbi born in Berlin and died in Jerusalem .\nKnut Walbye. Knut Walbye (born 9 January 1968 in Oslo) was a former Norwegian ice hockey player .\nJohn P. Allen. John Polk Allen (born 6 May 1929, Carnegie, Oklahoma) is a systems ecologist and engineer, metallurgist, adventurer and writer .\nPriya Thomas. Priya Thomas is a Canadian artist and musician born in Hamilton, Ontario and raised on the South Shore of Montreal, Quebec .\nJerzy Adamuszek. Adamuszek, Jerzy (born 30 09 1955 in Poland; since 1980 lives in Montreal) .\nStephen Gould. Stephen Gould is an American heldentenor, born in Virginia .\nNadia Zaffar. Nadia Zaffar born in Karachi, is an anchor and producer for Dawn News, Pakistan's first English-language TV news channel .\nNick Karner. Nick Karner is an American actor and director, born July 7, 1982 in Hartford, Connecticut .\nMartin Emerich. Born in Baltimore, Maryland, Emerich attended the public schools .\nPaul Peterson. Born in Minneapolis, Minnesota, Peterson was the youngest son in a musical family .\nErick Noubissie. Although he was born in France, Noubissie represents his parents' homeland of Cameroon .\nPatrice Roy. Patrice Roy (born in 1963 in Quebec) is a Canadian news anchor .\nO'Chi Brown. O'chi Brown is a female dance music singer born in Tottenham, London England .\nJennifer Huppert. Jennifer Huppert (born 13 October 1962) is an Australian politician .\nNicolas Moreton. Nicolas Moreton is a British artist born in 1961 in Watford, Hertfordshire .\nJohn Chorlton. John Chorlton was born at Salford in 1666 .\nLynda Blutreich. Lynda Blutreich (née Lipson; born December 13, 1971 in Lynn, Massachusetts) is a javelin thrower from the United States .\nWilliam F. Brown. William F Brown (29 November 1919, in Tampa, Florida -- 6 September 2010 in Kennewick, Washington) was an American welding engineer, professional engineer and magnetic pulse welding expert .\nGabriel Caruana. Gabriel Caruana (born in 1929 in Malta) is a Maltese artist who works primarily in ceramics .\nLeo C. Zeferetti. Leo C Zeferetti (born July 15, 1927) was a Democratic member of the United States House of Representatives from New York .\nSamuel Forde. Forde, born at Cork on 5 April 1805, was son of Samuel Forde, a tradesman, who became involved in difficulties, and went to America, deserting his family .\nStephanie Reaves. Stephanie Reaves (born February 24, 1967, Maine) is an American professional race driver .\nLovro Artukovi%C4%87. Lovro Artuković (born in 1959 in Zagreb) is a contemporary Croatian painter and graphic artist who primarily paints large scale figurative canvases .\nEdward Stotz. Born in Allegheny City, now commonly known as the North Side of Pittsburgh, PA, Stotz spent a brief time in Europe before setting up shop in his home region in 1893 .\nOtto Eugen Schulz. Otto Eugen Schulz (31 October 1874 - 17 February 1936) was a German botanist, born in Berlin .\nJ. B. Jackson. Born in France to American parents, JB Jackson spent his early school years in Washington, DC and in Europe .\nTara Brabazon. Tara Brabazon (3 January 1969 -) is Professor of Communication at the University of Ontario Institute of Technology, Canada .\nLavrenti Ardaziani. Born in Tiflis of a deacon, Ardaziani graduated from the local theological seminary and entered the civil service under the Russian viceroyal administration .\nFrank R. Reid. Born in Aurora, Illinois, Reid was one of eleven children of an Irish grocery store owner .\nMurray Fraser. Born in Liverpool, Fraser was raised in Nova Scotia .\nAzman bin Abdullah. Azman bin Abdullah (born 28 November 1986) in Singapore is a renowned Singaporean bodybuilder who became a local icon and world-leading sportsman in the 1990s .\nWolfgang Baur. Wolfgang Baur was born in a suburb of Chicago, and later attended the University of Illinois and then Cornell University for graduate studies in biochemistry and molecular biology to pursue an academic career in research .\nOleg Strizhakov. Oleg Strizhakov (; born 18 July 1963 in Tbilisi, Georgian SSR) is a retired Russian long-distance runner .\nNick Taylor. Nick Taylor (born 24 December 1971, in Oldham, Lancashire, England) is a professional squash player and squash coach from the United Kingdom .\nPublius Annius Florus. The introduction to a dialogue called Virgilius orator an poeta is extant, in which the author (whose name is given as Publius Annius Florus) states that he was born in Africa, and at an early age took part in the literary contests on the Capitol instituted by Domitian .\nCalvin Fairbank. Born in Pike, in what is now Wyoming County, New York, Fairbank grew up in an intensely religious family environment .\nJohn Donaldson. John Donaldson was born at Edinburgh in 1737, and distinguished himself as a miniature painter, both in enamel and water-colours .\nSeymour Cocks. Born in Darlington, Cocks was educated at Plymouth College and became a journalist .\nPeter Bladen. Peter Bladen, (1922 -- 2001) was an Australian poet born at Perth .\nCharles Mickle. Charles Julius Mickle (July 22, 1849 in Stratford, Canada West, now Ontario -- November 10, 1919, Minnedosa, Manitoba) was a politician in Manitoba, Canada .\nVerna Allee. Verna Allee, born 1949 in Kansas, United States, is an American business consultant and writer on topics including value networks, knowledge management, organizational intelligence, intellectual capital and the value conversion of intangibles .\nScott W. Skavdahl. Born in Lincoln, Nebraska, Scott W Skavdahl received his BS (1989) and JD (1992) from the University of Wyoming .\nMartine Roure. Martine Roure (born 28 September 1948 in Lyon) is a French politician and Member of the European Parliament for the south-east of France .\nAlan Clayson. Alan Clayson (born 3 May 1951, Dover, Kent, England) is a singer-songwriter, who was popular in the late 1970s as leader of Clayson and the Argonauts (who reformed in 2005) .\nRobin McNamara. Robin McNamara (born 5 May 1947, in Newton, Massachusetts) is an American singer, songwriter and musician .\nMichele Pace del Campidoglio. Michele Pace del Campidoglio, a painter of fruit and flowers, born at Rome in 1610 .\nUche Okeke. Born in northern Nigeria, Okeke was the child of an Igbo family, and was educated in the region; this, combined with stories told by his mother and sister, inspired in him an interest in Igbo culture that was further whetted when he found that his mother had been an uli artist .\nSatnam Rana. Rana was born and brought up in Wolverhampton, West Midlands, England and attended Smestow school .\nPercy Elland. Born in Doncaster, Elland attended Doncaster Grammar School before entering journalism .\nGeorge Glas. The son of John Glas, the divine, Glas was born at Dundee in 1725, and is said to have been brought up as a surgeon .\nJerzy Jan Lerski. Born on January 20, 1917 in Lwów, Poland (now Lviv, Ukraine), Lerski studied law at Lwów University .\nTruman A. Merriman. Born in Auburn, New York, Merriman attended the Auburn Academy and was graduated from Hobart College, Geneva, New York, in 1861 .\nJohn Darwall. Born in the village of Haugh­ton in Staffordshire, Darwall was educated at Manchester Grammar School and at Brasenose College, Oxford (which he entered at the age of 14), grad­u­at­ing in 1756 .\nWendell White. Wendell White (born 23 November 1964 in Barbados) is a Bermudian cricketer .\nBorah Bergman. Borah Bergman (born December 13, 1933, Brooklyn) is an American free jazz pianist .\nClaude Couture. Born in Montreal, Québec, Canada, Couture completed a PhD in history at the University of Montreal in 1987 and has been in Edmonton, Canada since 1988 as a professor in social sciences and Canadian studies .\nRobert Allen. Allen was born in the village of Woodstock and started college at Dickinson College in Carlisle, Pennsylvania .\nTazewell Ellett. Born in Richmond, Virginia, Ellett attended private schools in Richmond .\nRichard Sheepshanks. Richard Sheepshanks (30 July 1794 in Leeds -- 4 August 1855) was an English astronomer .\nBedük. Serhat Bedük (20 April 1983, in Ankara), more commonly known by his stage name Bedük, is a Turkish musician .\nJonathan Hazard. Jonathan was born to a Quaker (Religious Society of Friends) family in Newport, Rhode Island .\nAjit Ninan. Ajit Ninan (born in 1955 in Hyderabad, India) is a well-known Indian political cartoonist, best known for drawing the Centrestage series of cartoons in India Today magazine and Ninan's World in the Times of India .\nGilles Latulippe. Gilles Latulippe (b. 31 August 1937, Montreal, Canada) is a Québécois actor, comedian and theatre director and manager .\nPierce Galliard Smith. Born in Scotland, Smith was educated at University College, Durham University receiving an MA in 1852 and held the post of curator and chaplain at Northumbria before he arrived in New South Wales with his family in 1855 .\nJames Kinlay. His five children include hedge fund manager Jonathan Kinlay and the actress Antonia Kinlay is one of five grandchildren .\nAytaç Biter. Aytaç Biter (born 5 November 1965 in Ankara) is a Turkish auto racing driver .\nRichard Rood. Rood, who was born in Cleveland, Ohio, was appointed membership with Orpheus after a history of regularly performing, touring, and recording with the group for 15 years .\nBalthazar Armas. A graduate student of the Neumann institute of graphic arts, and the Center of Graphic Studies (CEGRA) for engraving, Balthazar's first individual exhibitions go back to 1966 .\nMohammed Wali Zazi. Mohammed Wali Zazi (born in 1955 in Afghanistan), currently a naturalized US citizen, residing in Arapahoe County, Colorado, is a suspect in matters related to terrorism .\nBob Rockwell. Bob Rockwell (b. May 1945, Miami, Oklahoma) is a jazz saxophonist .\nLouis Antonelli. Louis Antonelli is a filmmaker and poet, born in Chicago, Illinois on July 28, 1962 .\nSusan Krieg. Susan Krieg was born and grew up in Fargo, North Dakota and has since lived in Chicago, Minneapolis, San Francisco/Oakland, Phoenix, Manhattan, and Los Angeles .\nMichael Matus. Born in Borneo, Michael Matus grew up in Hong Kong, San Francisco, Sussex and Kent, where he went to school as a choral scholar at The King's School in Canterbury .\nMohammad Aslam. Mohammad Aslam (born 7 September 1961, Karachi, Pakistan) is a former United Arab Emirates cricketer .\nBahar Movahed Bashiri. Bahar Movahed Bashiri (born April 27, 1979 - Tehran) is the Iranian portrait caricaturist, Persian classical vocalist and dentist .\nDaniel Chapman Stillson. He was the son of William Stillson and Nancy Chapman .\nErich Werdermann. Born in Berlin, Erich Werdermann was the son of the landowner Carl Werdermann .\nCharles Mayo. Born in London 24 March 1767, he was second son of Herbert Mayo, DD (1720--1802), by his wife Mary, daughter of George Coldham, surgeon extraordinary to the Prince of Wales .\nLeon Athanese Gosselin. Leon Athanese Gosselin (born 16 January 1815 in Paris -- died 30 April 1887) was a French surgeon remembered for describing the Gosselin fracture in 1866 .\nRosario Marciano. Rosario Marciano, born July 5, 1944 in Caracas, Venezuela, died there September 4, 1998 was a classical pianist, musicologist and teacher .\nHannan Sarkar. Hannan Sarkar () (born December 1, 1982, in Dhaka) is a Test cricketer for the Bangladesh cricket team .\nSimon Bowman. Simon Bowman is a British actor and singer, born in, Cardiff and trained at Mountview Theatre School .\nJohn Lewis Thomas. Born in Baltimore, Maryland, Thomas studied law and was admitted to the bar in 1856, commencing practice soon afterwards in Cumberland, Maryland .\nSeth Lipsky. Seth Lipsky (born in 1946 in Brooklyn) is the founder and editor of the New York Sun, an independent conservative daily in New York City that ceased its print edition on September 30, 2008 .\nElizabeth Hess. Elizabeth Hess (born 17 July, 1953 in Ontario, Canada) is a Canadian actress best known for playing mother Janet Darling on the long-running American sitcom Clarissa Explains It All .\nSusan Oki Mollway. Born in Honolulu, Mollway earned a bachelor's degree in English literature from the University of Hawaii in 1971 and a master's degree in English literature from the University of Hawaii in 1973 .\nJudy Dunaway. Judy Dunaway (born 1964 Mississippi) is an avant-garde composer, free improvisor, conceptual sound artist and creator of sound installations who is primarily known for her sound works for latex balloons .\nJohn Hindle. Born at Rishton in Lancashire to William Hindle and Elizabeth Woolstonecraft, he received a limited education and began working in a cotton factory at the age of eleven .\nSerenus the Gardener. The governor found Serenus innocent of insulting the guard's wife, but had him beheaded anyway when he refused to sacrifice to the Roman gods .\nDean Sullivan. Dean Sullivan (born 7 June 1955 in Liverpool) is an English actor .\nAarne Ruben. Aarne Ruben (17 July 1971 in Tallinn) is an Estonian writer .\nSamuel Campbell. Samuel Campbell (July 11, 1773 Mansfield, then in Windham Co., now in Tolland County, Connecticut -- June 2, 1853 Columbus, Chenango County, New York) was an American politician from New York .\nNabil Kanso. Nabil Kanso is a Lebanese-American painter born in Beirut, Lebanon .\nKurt Hitke. Kurt Hitke (1 December 1889 Dresden, Germany -- 23 February 1979 Miami, Florida) was an American racecar driver .\nCharles Hastings Doyle. Born in London, England, the eldest son of Lieutenant-General Sir Charles William Doyle and Sophia Cramer Coghill, he attended the Royal Military Academy Sandhurst and joined the army as an ensign of the 24th, 2nd Warwickshire, Regiment of Foot on December 23, 1819 .\nGyles Brandreth. Gyles Daubeney Brandreth (born 8 March 1948, Germany) is a British writer, broadcaster and former Conservative Member of Parliament and junior minister .\nGérard Granel. Born in Paris, Granel attended the lycée Louis-le-Grand and the courses of Michel Alexandre, Jean Hyppolite and, later, of Louis Althusser and Jean Beaufret .\nJaved Akhtar. Javed Akhtar (born November 21, 1940, Delhi, India) is a former Pakistani cricketer who played in one Test in 1962 .\nEmilio Menéndez. Emilio Menéndez del Valle (born 20 June 1945 in Madrid) is a Spanish politician and Member of the European Parliament for the Spanish Socialist Workers' Party, part of the Party of European Socialists .\nGhulam Abbas. Ghulam Abbas (Urdu: )(born May 1, 1947, Delhi, India) is a former Pakistani cricketer who played in one Test in 1967 .\nJohn Allen Gable. Born in Massachusetts in 1943, Gable graduated from Kenyon College in 1965 and received his PhD in History from Brown University in 1972 .\nLeon Bass. Bass was born and grew up in Philadelphia, Pennsylvania .\nAnna Akhsharumova. Anna Akhsharumova (; born 9 January 1957, Moscow) is a Woman Grandmaster of chess .\nThomas Francis Brennan. Brennan was born at Tipperary, Ireland, and ordained to the priesthood at Brixen-Tyrol on July 4, 1880 .\nMartin I. Townsend. Martin Ingham Townsend (February 6, 1810 Hancock, - March 8, 1903 Troy, Rensselaer County, New York) was an American lawyer and politician from New York .\nMarisa Masullo. Marisa Masullo (born 8 May 1959 in Milan) is an Italian athlete, who mainly competed in the 100 and 200 metres .\nRachel Annand Taylor. Born in Aberdeen to stonemason John Annand and his wife Clarinda Dinnie, she was one of the first women to study at Aberdeen University .\nMark Michalowski. Mark Michalowski (born 1963 in Chesterfield) is the editor of Shout! , ``Yorkshire's lesbian, gay, bisexual and transgender paper'', as well as being an author best known for his work writing spin-offs based on the BBC Television series Doctor Who .\nYisroel Meir Gabbai. Gabbai's father was a native of Morocco and his mother a descendant of German Jews; they married in France, where Gabbai was born .\nBill Endicott. Bill Endicott (5 November 1876 Montgomery, Indiana -- 7 June 1944 Indianapolis, Indiana) was an American racecar driver .\nAlexander Whitaker. Born in Cambridge, he was the son of William Whitaker (1548--1595), noted Protestant scholar and Master of St John's College, Cambridge .\nHayden Turner. Hayden Turner born 16 January 1966 in Sydney, Australia, is a television and cable TV presenter .\nGus Menos. Born in Milwaukee, Wisconsin, Menos graduated from Lincoln High School and served in the United States Army Air Corps .\nMaria Rose. Maria Rose (born 14 November 1980 in Kerala, India) is the pseudonym of a South Indian writer, writing in Malayalam, who mainly concentrates on children's fiction, horror, suspense, and thriller genre .\nNorbert Francis Attard. Norbert Francis Attard, born in Malta in 1951 is an artist working in several disciplines such as painting, printing, sculpture, video and photography .\nElijah Wadsworth. Elijah Wadsworth (4 Nov 1747 Hartford, Connecticut - 30 Dec 1817 Canfield, Ohio) was a Captain in the American Revolutionary War and a Major General in the War of 1812 .\nPasquale Conte. Born in Sicily, Conte is a resident of Roslyn, New York .\nTom Maniatis. Tom Maniatis born 8 May 1943 in Denver, Colorado is an American professor of molecular and cellular biology .\nDonald McGauchie. Donald McGauchie (born 29 January 1959) in Sydney, Australia, is a member of the board of the Reserve Bank of Australia since 30 March 2001 and has recently been appointed chairman of the Nufarm board, and was the former chairman of Telstra Corporation .\nFrançois Maspero. François Maspero (born 19 January 1932 in Paris)) is a French author and journalist, best known as a publisher of leftist books in the 1970s .\nBruce Pennington. Bruce Pennington (born 10 May 1944 in Somerset) is a British painter, perhaps best known for his science fiction and fantasy novel cover art .\nJohn Baptist Collins. Born in France, Collins went to sea at age sixteen as a cooper's apprentice on a Dutch ship .\nJohn Eaton. Eaton, born in Kent in or about 1575, was educated at Trinity College, Oxford, where he became the first recipient of the newly founded Blount exhibition in 1590 .\nGail Sidonie Sobat. Born in Calgary, Alberta, Sobat spent her early years in Southern Alberta, living in Drumheller, then Shouldice, and on the Blackfoot Indian Reservation, now Siksika Nation, near the hamlet of Gleichen .\nTommaso Marconi. Tommaso Marconi (born 17 January 1982 in Rome) is an Italian diver .\nVirginio Ferrari. Virginio Ferrari is an Italian sculptor, born in Verona and based in Chicago from the middle of the 1960s .\nStephen K. Benjamin. Benjamin's parents are from Orangeburg, SC but he was born in Queens, New York during the 1960s when many African-Americans decided to relocate to the North for better economic opportunities .\nFelix von Kraus. Felix von Kraus (October 3, 1870 - October 30, 1937) was an Austrian dramatic bass .\nJohnny Kemp. Johnny Kemp (born 1959, Nassau, Bahamas) is a Bahamian R&B singer and dancer .\nLoredana Errore. Born in Bucharest, Errore started performing in school plays during the 1990s .\nKonstantine Vardzelashvili. Konstantine Vardzelashvili (born 26 July 1972 in Tbilisi) is Vice-President of the Constitutional Court of Georgia .\nMoritz Wilhelm Drobisch. Moritz Wilhelm Drobisch (August 16, 1802, in Leipzig - September 30, 1896, in Leipzig) was a German mathematician, logician, psychologist and philosopher .\nPierre Henri Joseph Baume. Baume was born at Marseilles in 1797 .\nLinda Crockett. Linda Crockett, born in Hamilton, Ontario, Canada, is an American author and teacher, best known for her horror, romance, and psychological thrillers .\nElsa Lunghini. Elsa Lunghini, stage name Elsa (born May 20, 1973, in Paris), is a French singer and actress .\nJanil Puthucheary. Born in Malaysia, Dr Puthucheary went to primary school in Kuala Lumpur, Malaysia, before heading to the United Kingdom for secondary school education at Oundle School .\nLuciano Caruso. Luciano Caruso (b. July 19, 1957 in Turin, Italy) is an Italian Jazz composer and Soprano saxophone performer .\nMatteo Barbini. Matteo Barbini (born 8 June 1982 in Venice) is an Italian rugby union player .\nDonald Steven. Born in Montreal, Steven began his career performing and arranging folk and rock music in the 1960s (most notably with The Raftsmen) before pursuing professional studies in music .\nGord Simpson. Gord Simpson (Born - May 10, 1928 in Winnipeg, Manitoba) was a Canadian ice hockey defenceman who play with the Winnipeg Maroons for 14 years .\nFrançois Lehideux. François Lehideux (born 30 January 1904 in Paris - died 21 June 1998 in Paris) was a French industrialist and member of the Vichy government .\nGeoffrey Alderman. Geoffrey Alderman (born 10 February 1944, Middlesex, England) is a British historian, especially of the Jewish community in England in the 19th and 20th centuries, and also an academic, political adviser and award-winning journalist .\nKarl Sarafidis. Karl Sarafidis is a French actor born in Beirut in 1979, doctor of philosophy, former teacher at Paris-Est University (Val-de-Marne, France) .\nBéla Glattfelder. Béla Glattfelder (born on 4 May 1967 in Budapest) is a Hungarian politician and Member of the European Parliament with the Hungarian Civic Party, part of the European People's Party and sits on the European Parliament's Committee on International Trade .\nSamuel Magaw. Born in Pennsylvania, he was a son of William Magaw of Shippensburg .\nGary Callander. Gary Callander (born July 5, 1959) is a retired Rugby Union player who was born in Edinburgh, Scotland .\nCraig Richards. Craig Richards (born 1966, Bournemouth, United Kingdom) is a tech house DJ, also known as part of Tyrant alongside Lee Burridge .\nMohammed A. Aldouri. Born in Baghdad, Aldouri attended Baghdad University and earned a bachelors degree in law in 1964 .\nRich McNanna. Rich McNanna is an American actor born in Newark, NJ in 1977 and attended Seton Hall University in South Orange, NJ from 1995-2000 .\nMarcel Faribault. Born in Montreal, he was the son of René Faribault and Anna Pauzé and was educated at the Université de Montréal .\nAdolf Patera. Adolf Patera (11 July 1819 Vienna - 26 June 1894), was a Bohemian chemist, mineralogist and metallurgist, best known for the important role he played in the utilisation of uranium in colour production in glass, and associated with silver extraction from the mines at Joachimsthal, then part of the Austro-Hungarian Empire, now known as Jáchymov .\nAuguste Georges Darzens. Auguste Georges Darzens (July 12, 1867 in Moscow, Russia - September 10, 1954) was an organic chemist who studied at the École Polytechnique in Paris, France, under Louis Edouard Grimaux and stayed there as a professor .\nIvan Triesault. Ivan Triesault (; 14 July 1898, Tallinn, Estonia -- 3 January 1980, Los Angeles) was an Estonian-born American actor .\nTom Arnold. Born in Yorkshire, Arnold spent much of his life travelling although he considered Brighton his second home .\nErnest Kent Coulter. Born in Columbus, Ohio, Coulter graduated from Ohio State University, where he was a member of Beta Theta Pi In 1904 he became a clerk in New York Children's Court .\nMary Scott. Mary Scott (1751/2--1793), poet, was born in Somerset, England .\nEdmundo Farolan. Edmundo Farolan, born in Manila (1943), was a young writer-scholar who had won literary awards abroad when he studied philosophy and letters in Madrid .\nLyndsey Rodrigues. Lyndsey Rodrigues born July 23, 1981 in Sydney, Australia, is an Australian TV host, actress and former MTV VJ, known as a co-host of the MTV TV series Total Request Live .\nKelly Hardie. Kelly Hardie (born 21 November 1969 in Perth, Western Australia) is a softball pitcher from Australia, who won the bronze medal at the 2000 Summer Olympics .\nA. H. Raskin. H Raskin (April 26, 1911 Edmonton, Alberta - December 22, 1993 Manhattan) was a labor reporter, editorial writer, and assistant editor, for The New York Times, from 1934 to 1977 .\nAmmar Eloueini. Ammar Eloueini, born 1968 in Beirut, Lebanon .\nRoss Batty. Ross Batty (born 20 September 1986 in England) a former Barnard Castle School pupil, is a rugby union player for the Bath in the Aviva Premiership .\nChristopher Manson. Born in Buffalo, New York, Manson graduated in 1975 from the Nova Scotia College of Art and Design in Halifax, Nova Scotia, having specialized in printmaking .\nJane Stanford. Born Jane Eliza Lathrop in Albany, New York, she was the daughter of Dyer and Jane Anne (Shields) Lathrop .\nLeonard D. Wexler. Leonard D Wexler (b. 1924 in Brooklyn, NY) is a federal judge for the United States District Court for the Eastern District of New York .\nGeorge Zarkadakis. George Zarkadakis () is novelist, poet, playwright, and popular science writer, born in Athens in 1964 .\nMoira von Wright. Moira von Wright (born 1957 in Helsinki) is a Swedish academic .\nWilliam Baldé. Mohamed Guy William Baldé, just known as William Baldé, is a singer-songwriter and composer born in Guinea .\nLisa Kindred. Kindred, born in Buffalo, was a figure in the Greenwich Village/Cambridge folk scene of the 1960s; she played with Bob Dylan and other folk singers, playing at the Cafe Wha? , Club 47, The Bitter End and other venues .\nWalter Carringer. Born in Knoxville, Tennessee, Carringer grew up in Murphy, North Carolina and was highly active as a Boy Scout in his youth .\nAugusto Huaman Velasco. Augusto Huaman Velasco, born in Lima, (Sept 01, 1924 - July 20, 1998) .\nWarren Carlyle. Warren Carlyle is a director and choreographer who was born in Norwich, Norfolk, England .\nJoe Warham. Joe Warham (born 1920, Warrington, Lancashire) is a rugby league administrator and coach having served Leeds Rugby League Football Club (now Leeds Rhinos) for over forty years .\nMichael Prince. Michael Prince (born 1963, Rochester, New York) is an industrial designer and the founder of Beyond Design, Inc., a product and strategic design consultancy located in Chicago, IL Beyond Design has grown to become one of the leading industrial design firms in Chicago .\nMischa Hiller. Mischa Hiller (born 1962 England) is a British novelist .\nAnton Muscatelli. Anton Muscatelli was born on 1 January 1962 in Italy to Ambrogio and Rosellina Muscatelli .\nDidier André. Didier Andre (born 3 September 1974) is a race car driver born in Lyon, France .\nGeorge Rothera. George Rothera (born 12 November 1809 at Nottingham; died 31 October 1841 at Nottingham) was an English cricketer who played first-class cricket from 1835 to 1837 .\nMonica Groop. Monica Groop (born 14 April 1958, Helsinki) is a Finnish operatic mezzo-soprano .\nLo%C3%AFc Jouannigot. Loïc Jouannigot (b. 1953 in Brittany, France) is a children's book illustrator .\nKeith Wiggins. Born in London, England in 1958, Keith began his racing career while at school as a kart driver in 1973 .\nThomas Y. Howe, Jr.. Born in Auburn, New York, Howe completed preparatory studies .\nSteve Miller. Born in Chicago, Miller attended college in his home state of Illinois at Bradley University in Peoria and Governors State University in University Park, earning respectively Bachelor of Science degrees in English Literature and Physical Education and a Masters of Arts degree in Contemporary English Literature .\nGeno Arce. Geno Arce, born in Portland, Oregon, started playing bass in the clubs at age 16 opening for bands like Black 'n Blue and Fire Eye .\nAndy Buist. Andy Buist born 25 August 1984 in Norwich, England is a rugby union player for Newcastle Falcons in the Guinness Premiership .\nTodd Jay Weinstein. Todd Jay Weinstein (born 1951) is a photographer and artist, born in Detroit, Michigan, and who now lives in New York City .\nThomas McGreevy. Born in Quebec, he was the son of Robert McGreevy, a blacksmith, and Rose Smith .\nMartin Zobel. Martin Zobel (born 25 February 1957 in Tallinn) is an Estonian plant ecologist and professor at the University of Tartu .\nKeppel Harcourt Barnard. Keppel Harcourt Barnard (31 March 1887 London -- 22 September 1964 Cape Town), was a South African zoologist and museum director .\nBill Kaiserman. Bill Kaiserman (born 8 September 1942 Brooklyn, New York) is a four-time Coty Award-winning designer (1974; 1975; 1976; 1978) .\nArthur Yoria. Born in Chicago, Yoria started to play guitar very late while he was attending the University of Houston .\nJohn Skoyles. John Skoyles (b. 1949 in Queens, New York) is an American poet and writer .\nStéphan Perrot. Stéphan Perrot (born 19 June 1977 in Nice) is a breaststroke swimmer from France, who won the gold medal in the men's 200 metres breaststroke event at the 1999 European Championships in Istanbul .\nGijs Vermeulen. Gijs Vermeulen (born May 7, 1981, Amsterdam) is a rower from the Netherlands .\nJill Crossland. Jill Crossland is an English pianist, born in Yorkshire .\nAndrej Šeban. Andrej Šeban, born in Bratislava on June 26, 1962, is a well-known Slovak jazz fusion guitarist .\nAndrei Babitsky. Andrei Babitsky (, born September 26, 1964, in Moscow) is a Russian journalist and war reporter, who has worked for Radio Liberty since 1989, covering the 1991 August Coup, Civil War in Tajikistan and, most notably, both Chechen Wars from behind Chechen lines .\nElizabeth Cooper. Born in Manila, the Philippines, as Isabel Rosario Cooper, she was the recipient of the first on-screen kiss in a Filipino movie, Ang Tatlong Hambog (1926) .\nSim%C3%B3n Moret Gallart. Born in Ponce, in 1853, Simon Moret Gallart was a descendant of a French immigrant by the same name (Simon Moret) who settled in Puerto Rico in 1816 .\nMarvin Delph. Marvin Delph (born in 1957 in Conway, Arkansas) is a retired American basketball player, who experienced his greatest success at the college level .\nDaniel Rosenfeld. Daniel Rosenfeld (born in Palestine, October 19, 1929) is a writer and expert on the Israeli-Palestinian conflict .\nGeorge Smith. George was born at Chichester in Sussex, where his father, William Smith, was a tradesman and Baptist minister .\nSuzie Malone. Born in Sydney, Suzie became a dancer as soon as she could walk .\nTerence O'Brien. Sir John Terence Nicholls O'Brien (April 23, 1830 -- February 28, 1903) was a surveyor, engineer and colonial governor, born in Manchester, England and died in London, England .\nFrank Edwards. Frank Bathurst Edwards (6 September 1887 -- 5 March 1983) was an Australian politician .\nAmbalavaner Sivanandan. Ambalavaner Sivanandan (born 20 December 1923 Colombo) is a Sri Lankan novelist, and director of the Institute of Race Relations, a London-based independent educational charity .\nKonstantin Matusevich. Konstantin Matusevich (; born 25 February 1971 in Kiev, in the Ukrainian SSR of the Soviet Union) is a retired Israeli high jumper .\nMoshe Shekel. Moshe Shekel (born in 1958 in Haifa, Israel), was graduated from the law faculty of Tel-Aviv University (1985); During his studies, he served as a research fellow and assistant lecturer in the field of tax law, both in the faculty of law and in the accounting department of the faculty of management .\nLeo Fernandez. Leo Fernandez is a current amateur and former professional snooker player born in Limerick, Ireland and living in London, England .\nNorman Mann. Norman Mann (March 3, 1914 -- February 9, 1994) was a professional ice hockey player who played 31 games in the National Hockey League .\nTariq Iqbal. Tariq Iqbal (b. 1964 in Nairobi, Kenya) is a Kenyan cricketer .\nLudvig Drescher. Ludvig Drescher (July 21, 1881 in Sønderborg -- July 14, 1917 in Copenhagen) was a Danish amateur football (soccer) player in the goalkeeper position .\nCliff Bergere. Cliff Bergere (December 6, 1896 Toledo, Ohio - June 18, 1980 Dade City, Florida) was an American racecar driver .\nJohn Benjamin Henck. John Benjamin Henck (October 20, 1815 Philadelphia - January 3, 1903 Montecito, California) was a classical scholar and civil engineer .\nJason Pyrah. Jason Pyrah (born April 6, 1969, Springfield, Missouri) is an American athlete who participated in the 1500-meter run at the 1996 and 2000 Summer Olympics .\nGareth Russell. Gareth Russell is a British author, best known for writing the novel Popular .\nAlan Fisher. Born in Birmingham, Fisher spent his entire working life at the National Union of Public Employees, serving as General Secretary from 1968 to 1982 .\nRoger Sinclair Aytoun. Aytoun was born at Edinburgh, the son of John Aytoun of Inchdairnie, Fifeshire and his wife Margaret Anne Jeffery, daughter of J Jeffery MD He was educated at Trinity College, Cambridge graduating BA in 1845 and MA in 1848 .\nRobert Owens. Born in Ohio in 1961, Robert Owens grew up singing in church, but years later, he was working as a DJ in 1985, when he met Chicago producer Larry Heard .\nJosh Quittner. Born in Manhattan, Quittner grew up in Reading, Pennsylvania .\nJohn Bernhard. John Bernhard (born May 17, 1957, Geneva, Switzerland) is a Swiss American artist and photographer best known for his surrealist nude studies .\nDouglas Paulson. Douglas Paulson (born 1980 Pennsylvania) is an artist based in New York City .\nJ. J. Stevenson. Stevenson was born at Glasgow, the son of James Stevenson, a merchant of Glasgow and his wife Jane Stewart Shannan, daughter of Alexander Shannan, merchant of Greenock .\nKajsa Kling. Kajsa Kling born December 25 1988 in Åre, Sweden is a alpine skier who competes in all disciplines .\nCharles Schreiber. Schreiber was born at Colchester, the eldest son of Lieutenant-Colonel James Alfred Schreiber of Melton, Suffolk and his wife Mary Ware, daughter of Thomas Ware, of Woodfort, County Cork .\nAdam Macrow. Adam Macrow (born 23 November 1978, in Victoria) is a professional race car driver now living in Melbourne, Victoria, Australia .\nAlwina Valleria. Born Alwina Schoening in Baltimore, Valleria attended the Royal Academy of Music in London, making her operatic debut in 1871 in St Petersburg .\nJames Lomax Bardsley. Bardsley was born at Nottingham on 7 July, 1801 .\nBernie Lowe. Born Bernard Lowenthal in Philadelphia, Lowe started Teen Records and in 1955 was working with Freddie Bell and the Bellboys .\nHakim Toumi. Hakim Toumi (Arabic: الحكيم التومي; born January 30, 1961 in Algiers, Algiers Province) is a retired male hammer thrower from Algeria .\nRichard West. Born in London, West attended Marlborough College before his national service spell in Trieste awakened a lifelong interest in Yugoslavia .\nJohn Bayard McPherson. Born in Harrisburg, Pennsylvania, McPherson attended Princeton College, receiving an AB in 1866 and an AM in 1869 .\nStephen William White. Stephen William White (16 July 1840 in Philadelphia, Pennsylvania -- October 1914), son of Emily and David W White, was the secretary of the Northern Central Railway as well as a number of other Pennsylvanian railway companies until 1910 when he retired .\nA. F. Kidd. AF Kidd is the pen name of Chico Kidd .\nJohn Milne Bramwell. John Milne Bramwell (1852 -- 1925) was a Scottish physician and author, born at Perth, and educated at the University of Edinburgh .\nLew Stringer. Lew Stringer (born 22 March 1959, England) is a freelance comic artist and scriptwriter .\nGeorge Russell French. George Russell French (1803--1881), antiquary, was born in London in 1803 .\nTsotne Bakuria. Tsotne Bakuria (b. Dec. 22, 1971, Tbilisi, Georgia) was a member of the regional legislature of the Autonomous Republic of Adjara, Georgia .\nThomas Kirk. Thomas Kirk (18 January 1828 Coventry - 8 March 1898 Plimmerton), was an English-born botanist, teacher, public servant, writer and churchman who moved to New Zealand with his wife and four children in late 1862 .\nTheophilus de Garencières. Born in Paris, Garencières studied the prophecies of Nostradamus at an early age, and these had a lasting effect on him .\nChristian Johansson. Born Pehr Christian Johansson in Stockholm, Sweden, he moved to Russia as a dancer and stayed on as one of the most important teachers in Russian history .\nRuth Fuller Sasaki. Ruth Fuller was born and grew up in Chicago, and enjoyed wealth and privilege .\nDiego Nargiso. Diego Nargiso (born 15 March 1970, in Naples) is a former tennis player from Italy .\nKeith Butler. Keith Butler is an award winning Indian Australian writer .\nRichie Dent. Richie Dent, writer, was born in Philadelphia, PA He graduated from the University of Redlands, with a BA in Creative Writing and Poetry .\nJamielee McPherson. Jamielee McPherson born 9 September 1986 in Glasgow, Scotland, is an actress .\nDerek Coughlan. Coughlan joined his home town club Cork City in May 1996 from Brighton & Hove Albion where he'd made just one league appearance .\nAnita Håkenstad. Anita Håkenstad (born 19 February 1968 in Oslo) is a Norwegian long-distance runner who specialized in marathon races and cross-country running .\nDavid Scott Milton. Milton was born during the Great Depression to a working class Jewish family in Pittsburgh, Pennsylvania .\nAlfred Downward. Born in Melbourne to Edward and Elizabeth Downward, he was educated at Prahran and Mornington before working on his father's Balnarring sheep farm .\nChristos Sirros. Christos Sirros (; born 2 February 1948, Athens) is a politician in the Province of Quebec, Canada .\nGeorge Jewett. His father was George Jewett, a blacksmith born in Kentucky in approximately 1845, and is mother was Letty Jewett, born in Michigan in approximately 1848 .\nRandolph Colville. Randolph Colville (23 May 1942--15 January 2004) was a Scottish jazz swing clarinettist, saxophonist, bandleader and arranger born in Glasgow, Scotland, perhaps best-known for his work with the Keith Nichols Midnite Follies Orchestra .\nWilliam Lawrence Tower. William Lawrence Tower (born 1872, date of death unknown) was an American zoölogist, born in Halifax, Massachusetts .\nLowell Cauffiel. Lowell Cauffiel, born in Michigan, USA, is an American writer and TV producer .\nLuis Simarro Lacabra. Luis Simarro Lacabra (January 6, 1851 -- June 19, 1921) was a Spanish psychiatrist who was born in Rome while his parents were living in Italy .\nRui Tavares. Rui Tavares (born 29 July 1972 in Lisbon) is a Portuguese politician and Member of the European Parliament .\nGiambattista Nolli. He is best known for his ichnographic plan of Rome, the Pianta Grande di Roma which he began surveying in 1736 and engraved in 1748, and now universally known as the Nolli Map .\nLee Blackett. Lee Blackett (born 21 November 1982 in Chester, Cheshire) is a rugby union footballer for Leeds Carnegie .\nSergio Benvindo Junior. Sergio Benvindo Junior, born 1989, is a Swedish contemporary dancer .\nSpencer Wishart. Spencer Wishart (3 December 1889 Philadelphia, Pennsylvania -- 22 August 1914 Elgin, Illinois) was an American racecar driver .\nMila Iskrenova. Mila Iskrenova (born 6 February 1960, Sofia) is a Bulgarian modern dance choreographer, dancer and painter, co-founder of the Sofia Dance Week festival is considered one of the greatest creative forces in Bulgarian contemporary dance .\nDave Marsh. Dave Marsh (born March 1, 1950, Detroit, Michigan) is an American music critic, author, editor and radio talk show host .\nMaria von Welser. Maria von Welser (born 26 June 1946 in Munich) is a German TV journalist and the President of UNICEF Germany .\nArthur Savage. The three main contenders are: Alfred Henry Savage, born in Reading in 1854; Arthur Harold Savage, of the English & Oriental Hotel in Penang, who died in Penang on 4 August 1930; Arthur Henry Patrick Savage, born in Sydney, Australia on 18 October 1850 .\nKim Bauermeister. Kim Bauermeister (born 20 November 1970 in Stuttgart) is a retired German runner who specialized in the 3000 metres steeplechase .\nYe Xuanping. Ye Xuanping (; born November 1924 in Guangzhou, Guangdong) is the former Governor of Guangdong province in the People's Republic of China .\nNiculae Conovici. Niculae Conovici (born 13 March 1948, Bucharest - died 7 June 2005, Bucharest) was a Romanian archeologist, amphorologist and numismat .\nJohn O'Conor. Born in Dublin, O'Conor attended Belvedere College in that city .\nGeorgy Ketoyev. Georgy Ketoyev (born 19 November 1985 in Tbilisi, Georgian SSR) is a Russian wrestler, who has won a bronze medal at the 2008 Summer Olympics .\nWill Zens. Will Zens (born 26 June 1920 in Milwaukee, Wisconsin) is a low budget producer, director, screenwriter, and soundtrack composer who made several films in the 1960s .\nAdrian Bowyer. Born in 1952 in London, Bowyer is the older child of the late Rosemary and John Bowyer; the latter was a writer, painter and one of the founders of Zisman, Bowyer and Partners, consulting engineers .\nInge Israel. Born in Germany, Inge Israel grew up in France and Ireland and lived in Denmark for some years before settling in Canada .\nErnest Peter Burger. Born in Augsburg, Burger was a machinist by trade .\nJane Bathori. Jane Bathori (born Jeanne-Marie Berthier, June 14, 1877 - January 25, 1970) was a French opera singer .\nPaul Willis. Born in Chicago, Illinois, Willis made his screen debut for Vitagraph studios at the age of twelve in the title role of the 1913 drama-short Little Kaintuck .\nHenry Ussher. The second of five sons of Thomas Ussher by Margaret (d. January 1597), daughter of Henry Geydon, alderman of Dublin, he was born in Dublin about 1550 .\nJohn Ridley Mitchell. Born in Livingston, Tennessee, Mitchell attended the public schools .\nJane Henschel. Henschel, who was born in Wisconsin, studied at the University of Southern California, and then pursued further studies in Germany, where she has made her home .\nPhilip King. Philip King, a British playwright and actor, was born in Yorkshire in 1904 .\nSpencer Bonfiglio. Spencer Bonfiglio is an award winning artist born in Philadelphia on October 5, 1991 .\nErnst Witebsky. Ernst Witebsky, also Ernest Witebsky (* 3 September 1901 in Frankfurt am Main; † 7 December 1969) was a German-American immunologist .\nClive Bubb. Born in Geelong to textile worker Albert Bubb and Alice Richards, he attended public schools in Geelong before studying at the Gordon Institute of Technology, from which he received a Diploma of Commerce .\nKhashayar Karimian. Khashayar Karimian, born February 12, 1949 in Tehran, is an Iranian-Canadian biochemist, researcher and inventor .\nMary Macmaster. Mary Macmaster (born 22 November 1955, Glasgow, Scotland) is a Scottish harpist, performing with The Poozies and the duo Sileas .\nRobert Aldridge. Born at Burnham in Buckinghamshire, Robert Aldridge was educated at Eton and King's College, Cambridge, where he was a Fellow from 1564 to 1567 .\nRonald Pearson Tripp. Born in England in 1914, Tripp was self-taught in paleontology, but became an authority in the taxonomy of the trilobite families Encrinuridae, Lichidae, and Lichakephalidae -- the latter of which he named .\nLoukas Sideras. Lucas Sideras, born in Athens (5th December 1944), is the former drummer of the Greek progressive rock band Aphrodite's Child .\nTerry Martin. Terry Martin born 25 May 1980 in Australia is a rugby league player for the Crusaders in National League One .\nAndrew Waterman. Born in London in 1940, Waterman grew up in Woodside and Croydon, and at the age of eleven won a scholarship to the Trinity School of John Whitgift .\nJohn Cameron. Cameron was born at Glasgow and received his early education in his native city .\nCharles Follen Adams. Charles Follen Adams (born 21 April 1842 in Dorchester, Massachusetts-- 8 March 1918) was an American poet .\nElizabeth Kay. Elizabeth Kay, born July 9, 1949 in London, is an English writer .\nDarren Dowling. Darren Dowling (born 22 February 1968 in Watford) is a British racing driver who drove in the final six rounds in 2006 of the British Touring Car Championship .\nThomas Haughey. Born in Glasgow, Scotland, Haughey received a limited education .\nJan Čulík. Jan Čulík (born November 2, 1952 Prague) is an independent Czech journalist and academic .\nScott Cleverdon. He was born and raised in Edinburgh, and trained in Glasgow's Royal Scottish Academy of Music and Drama .\nEmmanuel Hocquard. Emmanuel Hocquard (born in 1940 in Cannes) is a French poet who grew up in Tangier, Morocco .\nBlaine Marchand. Blaine Marchand (born 1949 Ottawa) is a Canadian poet .\nCherry Wilder. Cherry Wilder (3 September 1930 -- 14 March 2002) was the pseudonym of science fiction and fantasy writer Cherry Barbara Grimm, née Lockett, who was born in Auckland, New Zealand .\nDavid L. Heymann. David L Heymann, MD (born 1946 in Pennsylvania, USA) was appointed Chairman of the Board of the UK Health Protection Agency (HPA) in April 2009 .\nSam Holden. Sam Holden (born August 8, 1971, Kensington, London) is the pseudonym of a British author and journalist .\nJaveria Abbasi. Javeria was born and brought up in Karachi to a middle class family; her father was a reputable writer while her mother came from a family of traditional herbal pharmacists .\nImre Zachár. Imre Zachár (May 11, 1890 in Budapest -- April 7, 1954 in Budapest) was a Hungarian water polo player and freestyle swimmer who competed in the 1908 Summer Olympics and 1912 Summer Olympics .\nGodfrey Douglas Giles. Godfrey Douglas Giles (9 November 1857 Karachi - 1 February 1941) was a painter of horses, military scenes and battles, many experienced at first hand while on service with the British Army in India, Afghanistan, Egypt and South Africa .\nMarcel Bertrand. Marcel Alexandre Bertrand (July 2, 1847 -- February 13, 1907) was a French geologist who was born in Paris .\nNick Philip. Nick Philip (b. 1968 in London) is a graphic and multi-media artist and clothing designer operating out of the San Francisco Bay area .\nBrendan Guilfoyle. Brendan Guilfoyle born 16 July 1984 in Kilkenny, Ireland is rugby league player for the Treaty City Titans in the Irish Elite League .\nHan Zhidong. Han Zhidong (born 29 July 1977 in Guangdong) is a male Chinese water polo player who was part of the gold medal winning team at the 2006 Asian Games .\nGerald Palmer. Although he was born in England, Gerald Palmer grew up in Southern Rhodesia, now Zimbabwe, where his father was chief engineer to the state run railways .\n"
  }
]